From 374ccebfed676905be7bf735538011a2ef5f62e3 Mon Sep 17 00:00:00 2001 From: blindFS Date: Thu, 7 Nov 2024 20:50:41 +0800 Subject: [PATCH] Fix assignment with pipeline as rhs --- grammar.js | 52 +- src/grammar.json | 348 +- src/node-types.json | 70 +- src/parser.c | 848819 ++++++++++++++---------------- test/corpus/stmt/assignment.nu | 73 +- 5 files changed, 403648 insertions(+), 445714 deletions(-) diff --git a/grammar.js b/grammar.js index 8abd2a0..b865225 100644 --- a/grammar.js +++ b/grammar.js @@ -683,28 +683,6 @@ module.exports = grammar({ BRACK().close_brack, ), - /// Assignment Statement - - assignment: ($) => { - const opr = [ - PUNC().eq, - OPR().assign_add, - OPR().assign_sub, - OPR().assign_mul, - OPR().assign_div, - OPR().assign_append, - ]; - - return prec.left( - PREC().assignment, - seq( - field("lhs", $.val_variable), - field("opr", choice(...opr)), - field("rhs", $._expression), - ), - ); - }, - /// Block block: ($) => @@ -1433,7 +1411,7 @@ function _block_body_rules(suffix) { ["stmt_let" + suffix]: (/** @type {{ [x: string]: RuleOrLiteral; }} */ $) => prec.right( - 1, + PREC().assignment, seq( choice(KEYWORD().let, KEYWORD().let_env), $["_assignment_pattern" + suffix], @@ -1447,7 +1425,7 @@ function _block_body_rules(suffix) { /** @type {{ [x: string]: RuleOrLiteral; }} */ $, ) => prec.right( - 1, + PREC().assignment, seq( optional(MODIFIER().visibility), KEYWORD().const, @@ -1455,6 +1433,11 @@ function _block_body_rules(suffix) { ), ), + ["assignment" + suffix]: ( + /** @type {{ [x: string]: RuleOrLiteral; }} */ $, + ) => + prec.right(PREC().assignment, $["_mutable_assignment_pattern" + suffix]), + ["_assignment_pattern" + suffix]: ( /** @type {{ [x: string]: string; _variable_name?: any; param_type?: any; }} */ $, ) => @@ -1465,6 +1448,25 @@ function _block_body_rules(suffix) { field("value", alias_for_suffix($, "pipeline", suffix)), ), + ["_mutable_assignment_pattern" + suffix]: ( + /** @type {{ [x: string]: string; _variable_name?: any; param_type?: any; }} */ $, + ) => + seq( + field("lhs", $.val_variable), + field( + "opr", + choice( + PUNC().eq, + OPR().assign_add, + OPR().assign_sub, + OPR().assign_mul, + OPR().assign_div, + OPR().assign_append, + ), + ), + field("rhs", alias_for_suffix($, "pipeline", suffix)), + ), + /// Statements ["_statement" + suffix]: ( @@ -1476,7 +1478,7 @@ function _block_body_rules(suffix) { $._stmt_overlay, $.stmt_register, $.stmt_source, - $.assignment, + alias_for_suffix($, "assignment", suffix), alias_for_suffix($, "stmt_let", suffix), alias_for_suffix($, "stmt_mut", suffix), alias_for_suffix($, "stmt_const", suffix), diff --git a/src/grammar.json b/src/grammar.json index 407aa24..1e24fb4 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -199,6 +199,14 @@ ] } }, + "assignment": { + "type": "PREC_RIGHT", + "value": 1, + "content": { + "type": "SYMBOL", + "name": "_mutable_assignment_pattern" + } + }, "_assignment_pattern": { "type": "SEQ", "members": [ @@ -240,6 +248,60 @@ } ] }, + "_mutable_assignment_pattern": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "lhs", + "content": { + "type": "SYMBOL", + "name": "val_variable" + } + }, + { + "type": "FIELD", + "name": "opr", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "STRING", + "value": "+=" + }, + { + "type": "STRING", + "value": "-=" + }, + { + "type": "STRING", + "value": "*=" + }, + { + "type": "STRING", + "value": "/=" + }, + { + "type": "STRING", + "value": "++=" + } + ] + } + }, + { + "type": "FIELD", + "name": "rhs", + "content": { + "type": "SYMBOL", + "name": "pipeline" + } + } + ] + }, "_statement": { "type": "CHOICE", "members": [ @@ -479,6 +541,14 @@ ] } }, + "assignment_last": { + "type": "PREC_RIGHT", + "value": 1, + "content": { + "type": "SYMBOL", + "name": "_mutable_assignment_pattern_last" + } + }, "_assignment_pattern_last": { "type": "SEQ", "members": [ @@ -525,6 +595,65 @@ } ] }, + "_mutable_assignment_pattern_last": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "lhs", + "content": { + "type": "SYMBOL", + "name": "val_variable" + } + }, + { + "type": "FIELD", + "name": "opr", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "STRING", + "value": "+=" + }, + { + "type": "STRING", + "value": "-=" + }, + { + "type": "STRING", + "value": "*=" + }, + { + "type": "STRING", + "value": "/=" + }, + { + "type": "STRING", + "value": "++=" + } + ] + } + }, + { + "type": "FIELD", + "name": "rhs", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "pipeline_last" + }, + "named": true, + "value": "pipeline" + } + } + ] + }, "_statement_last": { "type": "CHOICE", "members": [ @@ -549,8 +678,13 @@ "name": "stmt_source" }, { - "type": "SYMBOL", - "name": "assignment" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "assignment_last" + }, + "named": true, + "value": "assignment" }, { "type": "ALIAS", @@ -792,6 +926,14 @@ ] } }, + "assignment_parenthesized": { + "type": "PREC_RIGHT", + "value": 1, + "content": { + "type": "SYMBOL", + "name": "_mutable_assignment_pattern_parenthesized" + } + }, "_assignment_pattern_parenthesized": { "type": "SEQ", "members": [ @@ -838,6 +980,65 @@ } ] }, + "_mutable_assignment_pattern_parenthesized": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "lhs", + "content": { + "type": "SYMBOL", + "name": "val_variable" + } + }, + { + "type": "FIELD", + "name": "opr", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "STRING", + "value": "+=" + }, + { + "type": "STRING", + "value": "-=" + }, + { + "type": "STRING", + "value": "*=" + }, + { + "type": "STRING", + "value": "/=" + }, + { + "type": "STRING", + "value": "++=" + } + ] + } + }, + { + "type": "FIELD", + "name": "rhs", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "pipeline_parenthesized" + }, + "named": true, + "value": "pipeline" + } + } + ] + }, "_statement_parenthesized": { "type": "CHOICE", "members": [ @@ -862,8 +1063,13 @@ "name": "stmt_source" }, { - "type": "SYMBOL", - "name": "assignment" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "assignment_parenthesized" + }, + "named": true, + "value": "assignment" }, { "type": "ALIAS", @@ -1102,6 +1308,14 @@ ] } }, + "assignment_parenthesized_last": { + "type": "PREC_RIGHT", + "value": 1, + "content": { + "type": "SYMBOL", + "name": "_mutable_assignment_pattern_parenthesized_last" + } + }, "_assignment_pattern_parenthesized_last": { "type": "SEQ", "members": [ @@ -1148,6 +1362,65 @@ } ] }, + "_mutable_assignment_pattern_parenthesized_last": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "lhs", + "content": { + "type": "SYMBOL", + "name": "val_variable" + } + }, + { + "type": "FIELD", + "name": "opr", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "STRING", + "value": "+=" + }, + { + "type": "STRING", + "value": "-=" + }, + { + "type": "STRING", + "value": "*=" + }, + { + "type": "STRING", + "value": "/=" + }, + { + "type": "STRING", + "value": "++=" + } + ] + } + }, + { + "type": "FIELD", + "name": "rhs", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "pipeline_parenthesized_last" + }, + "named": true, + "value": "pipeline" + } + } + ] + }, "_statement_parenthesized_last": { "type": "CHOICE", "members": [ @@ -1172,8 +1445,13 @@ "name": "stmt_source" }, { - "type": "SYMBOL", - "name": "assignment" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "assignment_parenthesized_last" + }, + "named": true, + "value": "assignment" }, { "type": "ALIAS", @@ -4338,64 +4616,6 @@ } ] }, - "assignment": { - "type": "PREC_LEFT", - "value": 1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "lhs", - "content": { - "type": "SYMBOL", - "name": "val_variable" - } - }, - { - "type": "FIELD", - "name": "opr", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "=" - }, - { - "type": "STRING", - "value": "+=" - }, - { - "type": "STRING", - "value": "-=" - }, - { - "type": "STRING", - "value": "*=" - }, - { - "type": "STRING", - "value": "/=" - }, - { - "type": "STRING", - "value": "++=" - } - ] - } - }, - { - "type": "FIELD", - "name": "rhs", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } - }, "block": { "type": "SEQ", "members": [ diff --git a/src/node-types.json b/src/node-types.json index a2265fd..35166ee 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -58,75 +58,7 @@ "required": true, "types": [ { - "type": "expr_binary", - "named": true - }, - { - "type": "expr_parenthesized", - "named": true - }, - { - "type": "expr_unary", - "named": true - }, - { - "type": "val_binary", - "named": true - }, - { - "type": "val_bool", - "named": true - }, - { - "type": "val_closure", - "named": true - }, - { - "type": "val_date", - "named": true - }, - { - "type": "val_duration", - "named": true - }, - { - "type": "val_filesize", - "named": true - }, - { - "type": "val_interpolated", - "named": true - }, - { - "type": "val_list", - "named": true - }, - { - "type": "val_nothing", - "named": true - }, - { - "type": "val_number", - "named": true - }, - { - "type": "val_range", - "named": true - }, - { - "type": "val_record", - "named": true - }, - { - "type": "val_string", - "named": true - }, - { - "type": "val_table", - "named": true - }, - { - "type": "val_variable", + "type": "pipeline", "named": true } ] diff --git a/src/parser.c b/src/parser.c index 6f91a8a..6970da0 100644 --- a/src/parser.c +++ b/src/parser.c @@ -13,15 +13,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 11427 -#define LARGE_STATE_COUNT 3139 -#define SYMBOL_COUNT 414 +#define STATE_COUNT 10911 +#define LARGE_STATE_COUNT 2714 +#define SYMBOL_COUNT 421 #define ALIAS_COUNT 3 #define TOKEN_COUNT 213 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 69 #define MAX_ALIAS_SEQUENCE_LENGTH 15 -#define PRODUCTION_ID_COUNT 206 +#define PRODUCTION_ID_COUNT 207 enum ts_symbol_identifiers { sym_identifier = 1, @@ -34,100 +34,100 @@ enum ts_symbol_identifiers { anon_sym_let_DASHenv = 8, anon_sym_mut = 9, anon_sym_const = 10, - anon_sym_SEMI = 11, - sym_cmd_identifier = 12, - sym_long_flag_identifier = 13, - anon_sym_LF = 14, - anon_sym_def = 15, - anon_sym_export_DASHenv = 16, - anon_sym_extern = 17, - anon_sym_module = 18, - anon_sym_use = 19, - anon_sym_COLON = 20, - anon_sym_DASH_GT = 21, - anon_sym_LBRACK = 22, - anon_sym_COMMA = 23, - anon_sym_RBRACK = 24, - anon_sym_LPAREN = 25, - anon_sym_RPAREN = 26, - anon_sym_PIPE = 27, - anon_sym_DOLLAR = 28, - anon_sym_any = 29, - anon_sym_binary = 30, - anon_sym_block = 31, - anon_sym_bool = 32, - anon_sym_cell_DASHpath = 33, - anon_sym_closure = 34, - anon_sym_cond = 35, - anon_sym_datetime = 36, - anon_sym_directory = 37, - anon_sym_duration = 38, - anon_sym_error = 39, - anon_sym_expr = 40, - anon_sym_float = 41, - anon_sym_decimal = 42, - anon_sym_filesize = 43, - anon_sym_full_DASHcell_DASHpath = 44, - anon_sym_glob = 45, - anon_sym_int = 46, - anon_sym_import_DASHpattern = 47, - anon_sym_keyword = 48, - anon_sym_math = 49, - anon_sym_nothing = 50, - anon_sym_number = 51, - anon_sym_one_DASHof = 52, - anon_sym_operator = 53, - anon_sym_path = 54, - anon_sym_range = 55, - anon_sym_signature = 56, - anon_sym_string = 57, - anon_sym_table = 58, - anon_sym_variable = 59, - anon_sym_var_DASHwith_DASHopt_DASHtype = 60, - anon_sym_record = 61, - anon_sym_list = 62, - anon_sym_LT = 63, - anon_sym_GT = 64, - anon_sym_AT = 65, - anon_sym_DOT_DOT_DOT = 66, - anon_sym_QMARK = 67, - anon_sym_DASH_DASH = 68, - anon_sym_DASH = 69, - sym_param_short_flag_identifier = 70, - anon_sym_break = 71, - anon_sym_continue = 72, - anon_sym_for = 73, - anon_sym_in = 74, - anon_sym_loop = 75, - anon_sym_make = 76, - anon_sym_while = 77, - anon_sym_do = 78, - anon_sym_if = 79, - anon_sym_else = 80, - anon_sym_match = 81, - anon_sym_LBRACE = 82, - anon_sym_RBRACE = 83, - anon_sym_EQ_GT = 84, - anon_sym__ = 85, - anon_sym_DOT_DOT = 86, - anon_sym_DOLLAR2 = 87, - anon_sym_try = 88, - anon_sym_catch = 89, - anon_sym_return = 90, - anon_sym_source = 91, - anon_sym_source_DASHenv = 92, - anon_sym_register = 93, - anon_sym_hide = 94, - anon_sym_hide_DASHenv = 95, - anon_sym_overlay = 96, - anon_sym_new = 97, - anon_sym_as = 98, - anon_sym_STAR = 99, - anon_sym_PLUS_EQ = 100, - anon_sym_DASH_EQ = 101, - anon_sym_STAR_EQ = 102, - anon_sym_SLASH_EQ = 103, - anon_sym_PLUS_PLUS_EQ = 104, + anon_sym_PLUS_EQ = 11, + anon_sym_DASH_EQ = 12, + anon_sym_STAR_EQ = 13, + anon_sym_SLASH_EQ = 14, + anon_sym_PLUS_PLUS_EQ = 15, + anon_sym_SEMI = 16, + sym_cmd_identifier = 17, + sym_long_flag_identifier = 18, + anon_sym_LF = 19, + anon_sym_def = 20, + anon_sym_export_DASHenv = 21, + anon_sym_extern = 22, + anon_sym_module = 23, + anon_sym_use = 24, + anon_sym_COLON = 25, + anon_sym_DASH_GT = 26, + anon_sym_LBRACK = 27, + anon_sym_COMMA = 28, + anon_sym_RBRACK = 29, + anon_sym_LPAREN = 30, + anon_sym_RPAREN = 31, + anon_sym_PIPE = 32, + anon_sym_DOLLAR = 33, + anon_sym_any = 34, + anon_sym_binary = 35, + anon_sym_block = 36, + anon_sym_bool = 37, + anon_sym_cell_DASHpath = 38, + anon_sym_closure = 39, + anon_sym_cond = 40, + anon_sym_datetime = 41, + anon_sym_directory = 42, + anon_sym_duration = 43, + anon_sym_error = 44, + anon_sym_expr = 45, + anon_sym_float = 46, + anon_sym_decimal = 47, + anon_sym_filesize = 48, + anon_sym_full_DASHcell_DASHpath = 49, + anon_sym_glob = 50, + anon_sym_int = 51, + anon_sym_import_DASHpattern = 52, + anon_sym_keyword = 53, + anon_sym_math = 54, + anon_sym_nothing = 55, + anon_sym_number = 56, + anon_sym_one_DASHof = 57, + anon_sym_operator = 58, + anon_sym_path = 59, + anon_sym_range = 60, + anon_sym_signature = 61, + anon_sym_string = 62, + anon_sym_table = 63, + anon_sym_variable = 64, + anon_sym_var_DASHwith_DASHopt_DASHtype = 65, + anon_sym_record = 66, + anon_sym_list = 67, + anon_sym_LT = 68, + anon_sym_GT = 69, + anon_sym_AT = 70, + anon_sym_DOT_DOT_DOT = 71, + anon_sym_QMARK = 72, + anon_sym_DASH_DASH = 73, + anon_sym_DASH = 74, + sym_param_short_flag_identifier = 75, + anon_sym_break = 76, + anon_sym_continue = 77, + anon_sym_for = 78, + anon_sym_in = 79, + anon_sym_loop = 80, + anon_sym_make = 81, + anon_sym_while = 82, + anon_sym_do = 83, + anon_sym_if = 84, + anon_sym_else = 85, + anon_sym_match = 86, + anon_sym_LBRACE = 87, + anon_sym_RBRACE = 88, + anon_sym_EQ_GT = 89, + anon_sym__ = 90, + anon_sym_DOT_DOT = 91, + anon_sym_DOLLAR2 = 92, + anon_sym_try = 93, + anon_sym_catch = 94, + anon_sym_return = 95, + anon_sym_source = 96, + anon_sym_source_DASHenv = 97, + anon_sym_register = 98, + anon_sym_hide = 99, + anon_sym_hide_DASHenv = 100, + anon_sym_overlay = 101, + anon_sym_new = 102, + anon_sym_as = 103, + anon_sym_STAR = 104, anon_sym_where = 105, anon_sym_QMARK2 = 106, anon_sym_STAR_STAR = 107, @@ -244,202 +244,209 @@ enum ts_symbol_identifiers { sym_stmt_let = 218, sym_stmt_mut = 219, sym_stmt_const = 220, - sym__assignment_pattern = 221, - sym__statement = 222, - sym_pipeline = 223, - sym__block_body_statement_last = 224, - sym__declaration_last = 225, - sym_decl_alias_last = 226, - sym_stmt_let_last = 227, - sym_stmt_mut_last = 228, - sym_stmt_const_last = 229, - sym__assignment_pattern_last = 230, - sym__statement_last = 231, - sym_pipeline_last = 232, - sym__block_body_statement_parenthesized = 233, - sym__declaration_parenthesized = 234, - sym_decl_alias_parenthesized = 235, - sym_stmt_let_parenthesized = 236, - sym_stmt_mut_parenthesized = 237, - sym_stmt_const_parenthesized = 238, - sym__assignment_pattern_parenthesized = 239, - sym__statement_parenthesized = 240, - sym_pipeline_parenthesized = 241, - sym__block_body_statement_parenthesized_last = 242, - sym__declaration_parenthesized_last = 243, - sym_decl_alias_parenthesized_last = 244, - sym_stmt_let_parenthesized_last = 245, - sym_stmt_mut_parenthesized_last = 246, - sym_stmt_const_parenthesized_last = 247, - sym__assignment_pattern_parenthesized_last = 248, - sym__statement_parenthesized_last = 249, - sym_pipeline_parenthesized_last = 250, - sym__block_body = 251, - sym__command_name = 252, - sym__variable_name = 253, - sym__terminator = 254, - sym_decl_def = 255, - sym_decl_export = 256, - sym_decl_extern = 257, - sym_decl_module = 258, - sym_decl_use = 259, - sym_returns = 260, - sym__one_type = 261, - sym__multiple_types = 262, - sym_parameter_parens = 263, - sym_parameter_bracks = 264, - sym_parameter_pipes = 265, - sym_parameter = 266, - sym__param_name = 267, - sym_param_type = 268, - sym_param_value = 269, - sym__type_annotation = 270, - sym__all_type = 271, - sym_flat_type = 272, - sym_collection_type = 273, - sym_list_type = 274, - sym_param_cmd = 275, - sym_param_rest = 276, - sym_param_opt = 277, - sym_param_long_flag = 278, - sym_flag_capsule = 279, - sym_param_short_flag = 280, - sym__ctrl_statement = 281, - sym__ctrl_expression = 282, - sym__ctrl_expression_parenthesized = 283, - sym_ctrl_for = 284, - sym_ctrl_loop = 285, - sym_ctrl_error = 286, - sym_ctrl_while = 287, - sym_ctrl_do = 288, - sym_ctrl_if = 289, - sym_ctrl_if_parenthesized = 290, - sym_ctrl_match = 291, - sym_match_arm = 292, - sym_default_arm = 293, - sym__match_expression = 294, - sym_match_pattern = 295, - sym__match_pattern = 296, - sym_match_guard = 297, - sym__match_pattern_expression = 298, - sym__match_pattern_value = 299, - sym__match_pattern_list = 300, - sym__match_pattern_rest = 301, - sym__match_pattern_record = 302, - sym__match_pattern_record_variable = 303, - sym_ctrl_try = 304, - sym_ctrl_try_parenthesized = 305, - sym_ctrl_return = 306, - sym_pipe_element = 307, - sym_pipe_element_parenthesized = 308, - sym_pipe_element_last = 309, - sym_pipe_element_parenthesized_last = 310, - sym_stmt_source = 311, - sym_stmt_register = 312, - sym__stmt_hide = 313, - sym_hide_mod = 314, - sym_hide_env = 315, - sym__stmt_overlay = 316, - sym_overlay_list = 317, - sym_overlay_hide = 318, - sym_overlay_new = 319, - sym_overlay_use = 320, - sym_scope_pattern = 321, - sym_wild_card = 322, - sym_command_list = 323, - sym_assignment = 324, - sym_block = 325, - sym__blosure = 326, - sym_where_command = 327, - sym__where_predicate = 328, - sym__expression = 329, - sym_expr_unary = 330, - sym__expr_unary_minus = 331, - sym_expr_binary = 332, - sym__expr_binary_expression = 333, - sym_expr_parenthesized = 334, - sym__expr_parenthesized_immediate = 335, - sym__parenthesized_body = 336, - sym_val_range = 337, - sym__val_range = 338, - sym__val_range_with_end = 339, - sym__immediate_decimal = 340, - sym__value = 341, - sym_val_nothing = 342, - sym_val_bool = 343, - sym_val_variable = 344, - sym__var = 345, - sym_val_number = 346, - sym__val_number_decimal = 347, - sym__val_number = 348, - sym_val_duration = 349, - sym_val_filesize = 350, - sym_val_binary = 351, - sym_val_string = 352, - sym__str_double_quotes = 353, - sym_val_interpolated = 354, - sym__inter_single_quotes = 355, - sym__inter_double_quotes = 356, - sym_expr_interpolated = 357, - sym_val_list = 358, - sym_list_body = 359, - sym_val_entry = 360, - sym__list_item_expression = 361, - sym__list_item_starts_with_sign = 362, - sym_val_record = 363, - sym_record_body = 364, - sym_record_entry = 365, - sym__record_key = 366, - sym_val_table = 367, - sym_val_closure = 368, - sym_cell_path = 369, - sym_path = 370, - sym_command = 371, - sym__command_parenthesized_body = 372, - sym__cmd_arg = 373, - sym_redirection = 374, - sym__flag = 375, - sym_short_flag = 376, - sym_long_flag = 377, - sym_long_flag_equals_value = 378, - sym_long_flag_value = 379, - sym_unquoted = 380, - sym__unquoted_in_list = 381, - sym__unquoted_with_expr = 382, - sym__unquoted_in_list_with_expr = 383, - sym__unquoted_anonymous_prefix = 384, - sym_comment = 385, - aux_sym_pipeline_repeat1 = 386, - aux_sym_pipeline_parenthesized_repeat1 = 387, - aux_sym__block_body_repeat1 = 388, - aux_sym__block_body_repeat2 = 389, - aux_sym_decl_def_repeat1 = 390, - aux_sym__multiple_types_repeat1 = 391, - aux_sym_parameter_parens_repeat1 = 392, - aux_sym_collection_type_repeat1 = 393, - aux_sym_ctrl_match_repeat1 = 394, - aux_sym_match_pattern_repeat1 = 395, - aux_sym__match_pattern_list_repeat1 = 396, - aux_sym__match_pattern_record_repeat1 = 397, - aux_sym_pipe_element_repeat1 = 398, - aux_sym_overlay_use_repeat1 = 399, - aux_sym_command_list_repeat1 = 400, - aux_sym__parenthesized_body_repeat1 = 401, - aux_sym_val_binary_repeat1 = 402, - aux_sym__str_double_quotes_repeat1 = 403, - aux_sym__inter_single_quotes_repeat1 = 404, - aux_sym__inter_double_quotes_repeat1 = 405, - aux_sym_list_body_repeat1 = 406, - aux_sym_record_body_repeat1 = 407, - aux_sym_val_table_repeat1 = 408, - aux_sym_cell_path_repeat1 = 409, - aux_sym_command_repeat1 = 410, - aux_sym__command_parenthesized_body_repeat1 = 411, - aux_sym__unquoted_with_expr_repeat1 = 412, - aux_sym__unquoted_in_list_with_expr_repeat1 = 413, - anon_alias_sym__head = 414, - anon_alias_sym__prefix = 415, - anon_alias_sym__unit = 416, + sym_assignment = 221, + sym__assignment_pattern = 222, + sym__mutable_assignment_pattern = 223, + sym__statement = 224, + sym_pipeline = 225, + sym__block_body_statement_last = 226, + sym__declaration_last = 227, + sym_decl_alias_last = 228, + sym_stmt_let_last = 229, + sym_stmt_mut_last = 230, + sym_stmt_const_last = 231, + sym_assignment_last = 232, + sym__assignment_pattern_last = 233, + sym__mutable_assignment_pattern_last = 234, + sym__statement_last = 235, + sym_pipeline_last = 236, + sym__block_body_statement_parenthesized = 237, + sym__declaration_parenthesized = 238, + sym_decl_alias_parenthesized = 239, + sym_stmt_let_parenthesized = 240, + sym_stmt_mut_parenthesized = 241, + sym_stmt_const_parenthesized = 242, + sym_assignment_parenthesized = 243, + sym__assignment_pattern_parenthesized = 244, + sym__mutable_assignment_pattern_parenthesized = 245, + sym__statement_parenthesized = 246, + sym_pipeline_parenthesized = 247, + sym__block_body_statement_parenthesized_last = 248, + sym__declaration_parenthesized_last = 249, + sym_decl_alias_parenthesized_last = 250, + sym_stmt_let_parenthesized_last = 251, + sym_stmt_mut_parenthesized_last = 252, + sym_stmt_const_parenthesized_last = 253, + sym_assignment_parenthesized_last = 254, + sym__assignment_pattern_parenthesized_last = 255, + sym__mutable_assignment_pattern_parenthesized_last = 256, + sym__statement_parenthesized_last = 257, + sym_pipeline_parenthesized_last = 258, + sym__block_body = 259, + sym__command_name = 260, + sym__variable_name = 261, + sym__terminator = 262, + sym_decl_def = 263, + sym_decl_export = 264, + sym_decl_extern = 265, + sym_decl_module = 266, + sym_decl_use = 267, + sym_returns = 268, + sym__one_type = 269, + sym__multiple_types = 270, + sym_parameter_parens = 271, + sym_parameter_bracks = 272, + sym_parameter_pipes = 273, + sym_parameter = 274, + sym__param_name = 275, + sym_param_type = 276, + sym_param_value = 277, + sym__type_annotation = 278, + sym__all_type = 279, + sym_flat_type = 280, + sym_collection_type = 281, + sym_list_type = 282, + sym_param_cmd = 283, + sym_param_rest = 284, + sym_param_opt = 285, + sym_param_long_flag = 286, + sym_flag_capsule = 287, + sym_param_short_flag = 288, + sym__ctrl_statement = 289, + sym__ctrl_expression = 290, + sym__ctrl_expression_parenthesized = 291, + sym_ctrl_for = 292, + sym_ctrl_loop = 293, + sym_ctrl_error = 294, + sym_ctrl_while = 295, + sym_ctrl_do = 296, + sym_ctrl_if = 297, + sym_ctrl_if_parenthesized = 298, + sym_ctrl_match = 299, + sym_match_arm = 300, + sym_default_arm = 301, + sym__match_expression = 302, + sym_match_pattern = 303, + sym__match_pattern = 304, + sym_match_guard = 305, + sym__match_pattern_expression = 306, + sym__match_pattern_value = 307, + sym__match_pattern_list = 308, + sym__match_pattern_rest = 309, + sym__match_pattern_record = 310, + sym__match_pattern_record_variable = 311, + sym_ctrl_try = 312, + sym_ctrl_try_parenthesized = 313, + sym_ctrl_return = 314, + sym_pipe_element = 315, + sym_pipe_element_parenthesized = 316, + sym_pipe_element_last = 317, + sym_pipe_element_parenthesized_last = 318, + sym_stmt_source = 319, + sym_stmt_register = 320, + sym__stmt_hide = 321, + sym_hide_mod = 322, + sym_hide_env = 323, + sym__stmt_overlay = 324, + sym_overlay_list = 325, + sym_overlay_hide = 326, + sym_overlay_new = 327, + sym_overlay_use = 328, + sym_scope_pattern = 329, + sym_wild_card = 330, + sym_command_list = 331, + sym_block = 332, + sym__blosure = 333, + sym_where_command = 334, + sym__where_predicate = 335, + sym__expression = 336, + sym_expr_unary = 337, + sym__expr_unary_minus = 338, + sym_expr_binary = 339, + sym__expr_binary_expression = 340, + sym_expr_parenthesized = 341, + sym__expr_parenthesized_immediate = 342, + sym__parenthesized_body = 343, + sym_val_range = 344, + sym__val_range = 345, + sym__val_range_with_end = 346, + sym__immediate_decimal = 347, + sym__value = 348, + sym_val_nothing = 349, + sym_val_bool = 350, + sym_val_variable = 351, + sym__var = 352, + sym_val_number = 353, + sym__val_number_decimal = 354, + sym__val_number = 355, + sym_val_duration = 356, + sym_val_filesize = 357, + sym_val_binary = 358, + sym_val_string = 359, + sym__str_double_quotes = 360, + sym_val_interpolated = 361, + sym__inter_single_quotes = 362, + sym__inter_double_quotes = 363, + sym_expr_interpolated = 364, + sym_val_list = 365, + sym_list_body = 366, + sym_val_entry = 367, + sym__list_item_expression = 368, + sym__list_item_starts_with_sign = 369, + sym_val_record = 370, + sym_record_body = 371, + sym_record_entry = 372, + sym__record_key = 373, + sym_val_table = 374, + sym_val_closure = 375, + sym_cell_path = 376, + sym_path = 377, + sym_command = 378, + sym__command_parenthesized_body = 379, + sym__cmd_arg = 380, + sym_redirection = 381, + sym__flag = 382, + sym_short_flag = 383, + sym_long_flag = 384, + sym_long_flag_equals_value = 385, + sym_long_flag_value = 386, + sym_unquoted = 387, + sym__unquoted_in_list = 388, + sym__unquoted_with_expr = 389, + sym__unquoted_in_list_with_expr = 390, + sym__unquoted_anonymous_prefix = 391, + sym_comment = 392, + aux_sym_pipeline_repeat1 = 393, + aux_sym_pipeline_parenthesized_repeat1 = 394, + aux_sym__block_body_repeat1 = 395, + aux_sym__block_body_repeat2 = 396, + aux_sym_decl_def_repeat1 = 397, + aux_sym__multiple_types_repeat1 = 398, + aux_sym_parameter_parens_repeat1 = 399, + aux_sym_collection_type_repeat1 = 400, + aux_sym_ctrl_match_repeat1 = 401, + aux_sym_match_pattern_repeat1 = 402, + aux_sym__match_pattern_list_repeat1 = 403, + aux_sym__match_pattern_record_repeat1 = 404, + aux_sym_pipe_element_repeat1 = 405, + aux_sym_overlay_use_repeat1 = 406, + aux_sym_command_list_repeat1 = 407, + aux_sym__parenthesized_body_repeat1 = 408, + aux_sym_val_binary_repeat1 = 409, + aux_sym__str_double_quotes_repeat1 = 410, + aux_sym__inter_single_quotes_repeat1 = 411, + aux_sym__inter_double_quotes_repeat1 = 412, + aux_sym_list_body_repeat1 = 413, + aux_sym_record_body_repeat1 = 414, + aux_sym_val_table_repeat1 = 415, + aux_sym_cell_path_repeat1 = 416, + aux_sym_command_repeat1 = 417, + aux_sym__command_parenthesized_body_repeat1 = 418, + aux_sym__unquoted_with_expr_repeat1 = 419, + aux_sym__unquoted_in_list_with_expr_repeat1 = 420, + anon_alias_sym__head = 421, + anon_alias_sym__prefix = 422, + anon_alias_sym__unit = 423, }; static const char * const ts_symbol_names[] = { @@ -454,6 +461,11 @@ static const char * const ts_symbol_names[] = { [anon_sym_let_DASHenv] = "let-env", [anon_sym_mut] = "mut", [anon_sym_const] = "const", + [anon_sym_PLUS_EQ] = "+=", + [anon_sym_DASH_EQ] = "-=", + [anon_sym_STAR_EQ] = "*=", + [anon_sym_SLASH_EQ] = "/=", + [anon_sym_PLUS_PLUS_EQ] = "++=", [anon_sym_SEMI] = ";", [sym_cmd_identifier] = "cmd_identifier", [sym_long_flag_identifier] = "long_flag_identifier", @@ -543,11 +555,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_new] = "new", [anon_sym_as] = "as", [anon_sym_STAR] = "*", - [anon_sym_PLUS_EQ] = "+=", - [anon_sym_DASH_EQ] = "-=", - [anon_sym_STAR_EQ] = "*=", - [anon_sym_SLASH_EQ] = "/=", - [anon_sym_PLUS_PLUS_EQ] = "++=", [anon_sym_where] = "where", [anon_sym_QMARK2] = "\?", [anon_sym_STAR_STAR] = "**", @@ -664,7 +671,9 @@ static const char * const ts_symbol_names[] = { [sym_stmt_let] = "stmt_let", [sym_stmt_mut] = "stmt_mut", [sym_stmt_const] = "stmt_const", + [sym_assignment] = "assignment", [sym__assignment_pattern] = "_assignment_pattern", + [sym__mutable_assignment_pattern] = "_mutable_assignment_pattern", [sym__statement] = "_statement", [sym_pipeline] = "pipeline", [sym__block_body_statement_last] = "_block_body_statement_last", @@ -673,7 +682,9 @@ static const char * const ts_symbol_names[] = { [sym_stmt_let_last] = "stmt_let", [sym_stmt_mut_last] = "stmt_mut", [sym_stmt_const_last] = "stmt_const", + [sym_assignment_last] = "assignment", [sym__assignment_pattern_last] = "_assignment_pattern_last", + [sym__mutable_assignment_pattern_last] = "_mutable_assignment_pattern_last", [sym__statement_last] = "_statement_last", [sym_pipeline_last] = "pipeline", [sym__block_body_statement_parenthesized] = "_block_body_statement_parenthesized", @@ -682,7 +693,9 @@ static const char * const ts_symbol_names[] = { [sym_stmt_let_parenthesized] = "stmt_let", [sym_stmt_mut_parenthesized] = "stmt_mut", [sym_stmt_const_parenthesized] = "stmt_const", + [sym_assignment_parenthesized] = "assignment", [sym__assignment_pattern_parenthesized] = "_assignment_pattern_parenthesized", + [sym__mutable_assignment_pattern_parenthesized] = "_mutable_assignment_pattern_parenthesized", [sym__statement_parenthesized] = "_statement_parenthesized", [sym_pipeline_parenthesized] = "pipeline", [sym__block_body_statement_parenthesized_last] = "_block_body_statement_parenthesized_last", @@ -691,7 +704,9 @@ static const char * const ts_symbol_names[] = { [sym_stmt_let_parenthesized_last] = "stmt_let", [sym_stmt_mut_parenthesized_last] = "stmt_mut", [sym_stmt_const_parenthesized_last] = "stmt_const", + [sym_assignment_parenthesized_last] = "assignment", [sym__assignment_pattern_parenthesized_last] = "_assignment_pattern_parenthesized_last", + [sym__mutable_assignment_pattern_parenthesized_last] = "_mutable_assignment_pattern_parenthesized_last", [sym__statement_parenthesized_last] = "_statement_parenthesized_last", [sym_pipeline_parenthesized_last] = "pipeline", [sym__block_body] = "_block_body", @@ -767,7 +782,6 @@ static const char * const ts_symbol_names[] = { [sym_scope_pattern] = "scope_pattern", [sym_wild_card] = "wild_card", [sym_command_list] = "command_list", - [sym_assignment] = "assignment", [sym_block] = "block", [sym__blosure] = "_blosure", [sym_where_command] = "where_command", @@ -874,6 +888,11 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_let_DASHenv] = anon_sym_let_DASHenv, [anon_sym_mut] = anon_sym_mut, [anon_sym_const] = anon_sym_const, + [anon_sym_PLUS_EQ] = anon_sym_PLUS_EQ, + [anon_sym_DASH_EQ] = anon_sym_DASH_EQ, + [anon_sym_STAR_EQ] = anon_sym_STAR_EQ, + [anon_sym_SLASH_EQ] = anon_sym_SLASH_EQ, + [anon_sym_PLUS_PLUS_EQ] = anon_sym_PLUS_PLUS_EQ, [anon_sym_SEMI] = anon_sym_SEMI, [sym_cmd_identifier] = sym_cmd_identifier, [sym_long_flag_identifier] = sym_long_flag_identifier, @@ -963,11 +982,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_new] = anon_sym_new, [anon_sym_as] = anon_sym_as, [anon_sym_STAR] = anon_sym_STAR, - [anon_sym_PLUS_EQ] = anon_sym_PLUS_EQ, - [anon_sym_DASH_EQ] = anon_sym_DASH_EQ, - [anon_sym_STAR_EQ] = anon_sym_STAR_EQ, - [anon_sym_SLASH_EQ] = anon_sym_SLASH_EQ, - [anon_sym_PLUS_PLUS_EQ] = anon_sym_PLUS_PLUS_EQ, [anon_sym_where] = anon_sym_where, [anon_sym_QMARK2] = anon_sym_QMARK, [anon_sym_STAR_STAR] = anon_sym_STAR_STAR, @@ -1084,7 +1098,9 @@ static const TSSymbol ts_symbol_map[] = { [sym_stmt_let] = sym_stmt_let, [sym_stmt_mut] = sym_stmt_mut, [sym_stmt_const] = sym_stmt_const, + [sym_assignment] = sym_assignment, [sym__assignment_pattern] = sym__assignment_pattern, + [sym__mutable_assignment_pattern] = sym__mutable_assignment_pattern, [sym__statement] = sym__statement, [sym_pipeline] = sym_pipeline, [sym__block_body_statement_last] = sym__block_body_statement_last, @@ -1093,7 +1109,9 @@ static const TSSymbol ts_symbol_map[] = { [sym_stmt_let_last] = sym_stmt_let, [sym_stmt_mut_last] = sym_stmt_mut, [sym_stmt_const_last] = sym_stmt_const, + [sym_assignment_last] = sym_assignment, [sym__assignment_pattern_last] = sym__assignment_pattern_last, + [sym__mutable_assignment_pattern_last] = sym__mutable_assignment_pattern_last, [sym__statement_last] = sym__statement_last, [sym_pipeline_last] = sym_pipeline, [sym__block_body_statement_parenthesized] = sym__block_body_statement_parenthesized, @@ -1102,7 +1120,9 @@ static const TSSymbol ts_symbol_map[] = { [sym_stmt_let_parenthesized] = sym_stmt_let, [sym_stmt_mut_parenthesized] = sym_stmt_mut, [sym_stmt_const_parenthesized] = sym_stmt_const, + [sym_assignment_parenthesized] = sym_assignment, [sym__assignment_pattern_parenthesized] = sym__assignment_pattern_parenthesized, + [sym__mutable_assignment_pattern_parenthesized] = sym__mutable_assignment_pattern_parenthesized, [sym__statement_parenthesized] = sym__statement_parenthesized, [sym_pipeline_parenthesized] = sym_pipeline, [sym__block_body_statement_parenthesized_last] = sym__block_body_statement_parenthesized_last, @@ -1111,7 +1131,9 @@ static const TSSymbol ts_symbol_map[] = { [sym_stmt_let_parenthesized_last] = sym_stmt_let, [sym_stmt_mut_parenthesized_last] = sym_stmt_mut, [sym_stmt_const_parenthesized_last] = sym_stmt_const, + [sym_assignment_parenthesized_last] = sym_assignment, [sym__assignment_pattern_parenthesized_last] = sym__assignment_pattern_parenthesized_last, + [sym__mutable_assignment_pattern_parenthesized_last] = sym__mutable_assignment_pattern_parenthesized_last, [sym__statement_parenthesized_last] = sym__statement_parenthesized_last, [sym_pipeline_parenthesized_last] = sym_pipeline, [sym__block_body] = sym__block_body, @@ -1187,7 +1209,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_scope_pattern] = sym_scope_pattern, [sym_wild_card] = sym_wild_card, [sym_command_list] = sym_command_list, - [sym_assignment] = sym_assignment, [sym_block] = sym_block, [sym__blosure] = sym__blosure, [sym_where_command] = sym_where_command, @@ -1327,6 +1348,26 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_PLUS_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_PLUS_PLUS_EQ] = { + .visible = true, + .named = false, + }, [anon_sym_SEMI] = { .visible = true, .named = false, @@ -1683,26 +1724,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_PLUS_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_DASH_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_STAR_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_SLASH_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_PLUS_PLUS_EQ] = { - .visible = true, - .named = false, - }, [anon_sym_where] = { .visible = true, .named = false, @@ -2167,10 +2188,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_assignment] = { + .visible = true, + .named = true, + }, [sym__assignment_pattern] = { .visible = false, .named = true, }, + [sym__mutable_assignment_pattern] = { + .visible = false, + .named = true, + }, [sym__statement] = { .visible = false, .named = true, @@ -2203,10 +2232,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_assignment_last] = { + .visible = true, + .named = true, + }, [sym__assignment_pattern_last] = { .visible = false, .named = true, }, + [sym__mutable_assignment_pattern_last] = { + .visible = false, + .named = true, + }, [sym__statement_last] = { .visible = false, .named = true, @@ -2239,10 +2276,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_assignment_parenthesized] = { + .visible = true, + .named = true, + }, [sym__assignment_pattern_parenthesized] = { .visible = false, .named = true, }, + [sym__mutable_assignment_pattern_parenthesized] = { + .visible = false, + .named = true, + }, [sym__statement_parenthesized] = { .visible = false, .named = true, @@ -2275,10 +2320,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_assignment_parenthesized_last] = { + .visible = true, + .named = true, + }, [sym__assignment_pattern_parenthesized_last] = { .visible = false, .named = true, }, + [sym__mutable_assignment_pattern_parenthesized_last] = { + .visible = false, + .named = true, + }, [sym__statement_parenthesized_last] = { .visible = false, .named = true, @@ -2579,10 +2632,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_assignment] = { - .visible = true, - .named = true, - }, [sym_block] = { .visible = true, .named = true, @@ -3102,202 +3151,203 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [1] = {.index = 0, .length = 1}, [2] = {.index = 1, .length = 1}, [3] = {.index = 2, .length = 1}, - [4] = {.index = 3, .length = 2}, - [5] = {.index = 5, .length = 1}, - [6] = {.index = 6, .length = 1}, - [7] = {.index = 7, .length = 1}, - [8] = {.index = 8, .length = 1}, - [9] = {.index = 9, .length = 1}, - [10] = {.index = 10, .length = 5}, - [11] = {.index = 15, .length = 1}, - [12] = {.index = 16, .length = 5}, - [13] = {.index = 21, .length = 1}, - [14] = {.index = 22, .length = 3}, - [16] = {.index = 25, .length = 1}, - [18] = {.index = 26, .length = 1}, - [19] = {.index = 27, .length = 1}, - [20] = {.index = 27, .length = 1}, - [21] = {.index = 28, .length = 5}, - [22] = {.index = 33, .length = 1}, - [23] = {.index = 34, .length = 1}, - [24] = {.index = 34, .length = 1}, - [25] = {.index = 35, .length = 1}, - [26] = {.index = 36, .length = 1}, - [27] = {.index = 36, .length = 1}, - [28] = {.index = 37, .length = 1}, - [29] = {.index = 37, .length = 1}, - [30] = {.index = 38, .length = 3}, + [4] = {.index = 3, .length = 3}, + [5] = {.index = 6, .length = 2}, + [6] = {.index = 8, .length = 1}, + [7] = {.index = 9, .length = 1}, + [8] = {.index = 10, .length = 1}, + [9] = {.index = 11, .length = 1}, + [10] = {.index = 12, .length = 1}, + [11] = {.index = 13, .length = 5}, + [12] = {.index = 18, .length = 1}, + [13] = {.index = 19, .length = 5}, + [14] = {.index = 24, .length = 1}, + [15] = {.index = 25, .length = 3}, + [17] = {.index = 28, .length = 1}, + [19] = {.index = 29, .length = 1}, + [20] = {.index = 30, .length = 1}, + [21] = {.index = 30, .length = 1}, + [22] = {.index = 31, .length = 5}, + [23] = {.index = 36, .length = 1}, + [24] = {.index = 37, .length = 1}, + [25] = {.index = 37, .length = 1}, + [26] = {.index = 38, .length = 1}, + [27] = {.index = 39, .length = 1}, + [28] = {.index = 39, .length = 1}, + [29] = {.index = 40, .length = 1}, + [30] = {.index = 40, .length = 1}, [31] = {.index = 41, .length = 3}, - [32] = {.index = 44, .length = 1}, - [34] = {.index = 45, .length = 3}, - [35] = {.index = 44, .length = 1}, - [36] = {.index = 48, .length = 1}, - [37] = {.index = 49, .length = 2}, - [38] = {.index = 51, .length = 1}, - [39] = {.index = 51, .length = 1}, - [40] = {.index = 52, .length = 2}, - [41] = {.index = 54, .length = 5}, - [42] = {.index = 59, .length = 3}, - [43] = {.index = 62, .length = 1}, - [44] = {.index = 63, .length = 1}, - [45] = {.index = 64, .length = 4}, - [46] = {.index = 68, .length = 1}, - [47] = {.index = 69, .length = 1}, - [48] = {.index = 70, .length = 1}, - [49] = {.index = 71, .length = 8}, - [50] = {.index = 79, .length = 4}, - [51] = {.index = 83, .length = 4}, - [52] = {.index = 87, .length = 3}, - [53] = {.index = 90, .length = 2}, - [54] = {.index = 92, .length = 1}, - [55] = {.index = 93, .length = 1}, - [57] = {.index = 94, .length = 2}, - [58] = {.index = 96, .length = 2}, - [59] = {.index = 98, .length = 1}, - [60] = {.index = 99, .length = 2}, - [61] = {.index = 101, .length = 2}, - [62] = {.index = 103, .length = 1}, - [63] = {.index = 104, .length = 4}, - [64] = {.index = 108, .length = 1}, - [65] = {.index = 109, .length = 1}, - [66] = {.index = 110, .length = 1}, - [67] = {.index = 111, .length = 1}, - [68] = {.index = 112, .length = 2}, - [69] = {.index = 112, .length = 2}, - [70] = {.index = 114, .length = 1}, - [71] = {.index = 115, .length = 3}, - [72] = {.index = 118, .length = 2}, - [73] = {.index = 120, .length = 2}, - [74] = {.index = 120, .length = 2}, - [75] = {.index = 122, .length = 1}, - [76] = {.index = 123, .length = 1}, - [77] = {.index = 124, .length = 2}, - [78] = {.index = 126, .length = 6}, - [79] = {.index = 132, .length = 3}, - [80] = {.index = 132, .length = 3}, - [81] = {.index = 135, .length = 2}, - [82] = {.index = 135, .length = 2}, - [83] = {.index = 137, .length = 1}, - [84] = {.index = 135, .length = 2}, - [85] = {.index = 135, .length = 2}, - [86] = {.index = 138, .length = 4}, - [87] = {.index = 142, .length = 4}, - [88] = {.index = 146, .length = 2}, - [89] = {.index = 148, .length = 4}, - [90] = {.index = 152, .length = 4}, - [91] = {.index = 156, .length = 1}, - [92] = {.index = 157, .length = 1}, - [93] = {.index = 158, .length = 1}, - [94] = {.index = 159, .length = 5}, - [95] = {.index = 164, .length = 5}, - [96] = {.index = 169, .length = 3}, - [97] = {.index = 172, .length = 2}, - [98] = {.index = 174, .length = 1}, - [100] = {.index = 175, .length = 1}, - [101] = {.index = 176, .length = 1}, - [102] = {.index = 177, .length = 2}, - [103] = {.index = 179, .length = 1}, - [105] = {.index = 176, .length = 1}, - [106] = {.index = 180, .length = 2}, - [107] = {.index = 180, .length = 2}, - [108] = {.index = 182, .length = 1}, - [109] = {.index = 183, .length = 2}, - [110] = {.index = 185, .length = 2}, - [111] = {.index = 187, .length = 1}, - [112] = {.index = 180, .length = 2}, - [113] = {.index = 180, .length = 2}, - [114] = {.index = 188, .length = 2}, - [115] = {.index = 188, .length = 2}, - [116] = {.index = 188, .length = 2}, - [117] = {.index = 188, .length = 2}, - [118] = {.index = 190, .length = 2}, - [119] = {.index = 192, .length = 1}, - [120] = {.index = 193, .length = 6}, - [121] = {.index = 132, .length = 3}, - [122] = {.index = 199, .length = 3}, - [123] = {.index = 193, .length = 6}, - [124] = {.index = 199, .length = 3}, - [125] = {.index = 202, .length = 2}, - [126] = {.index = 204, .length = 1}, - [127] = {.index = 205, .length = 2}, - [128] = {.index = 207, .length = 2}, - [129] = {.index = 207, .length = 2}, - [130] = {.index = 209, .length = 2}, - [131] = {.index = 207, .length = 2}, - [132] = {.index = 207, .length = 2}, - [133] = {.index = 211, .length = 4}, - [134] = {.index = 215, .length = 5}, - [135] = {.index = 220, .length = 5}, - [136] = {.index = 225, .length = 2}, - [137] = {.index = 227, .length = 5}, - [138] = {.index = 232, .length = 1}, - [139] = {.index = 232, .length = 1}, - [140] = {.index = 233, .length = 4}, - [141] = {.index = 237, .length = 6}, - [142] = {.index = 243, .length = 3}, - [143] = {.index = 246, .length = 6}, - [144] = {.index = 252, .length = 3}, - [145] = {.index = 255, .length = 2}, - [146] = {.index = 257, .length = 5}, - [147] = {.index = 262, .length = 3}, + [32] = {.index = 44, .length = 3}, + [33] = {.index = 47, .length = 1}, + [35] = {.index = 48, .length = 3}, + [36] = {.index = 47, .length = 1}, + [37] = {.index = 51, .length = 1}, + [38] = {.index = 52, .length = 2}, + [39] = {.index = 54, .length = 1}, + [40] = {.index = 54, .length = 1}, + [41] = {.index = 55, .length = 2}, + [42] = {.index = 57, .length = 5}, + [43] = {.index = 62, .length = 3}, + [44] = {.index = 65, .length = 1}, + [45] = {.index = 66, .length = 1}, + [46] = {.index = 67, .length = 4}, + [47] = {.index = 71, .length = 1}, + [48] = {.index = 72, .length = 1}, + [49] = {.index = 73, .length = 1}, + [50] = {.index = 74, .length = 8}, + [51] = {.index = 82, .length = 4}, + [52] = {.index = 86, .length = 4}, + [53] = {.index = 90, .length = 3}, + [54] = {.index = 93, .length = 2}, + [55] = {.index = 95, .length = 1}, + [56] = {.index = 96, .length = 1}, + [58] = {.index = 97, .length = 2}, + [59] = {.index = 99, .length = 2}, + [60] = {.index = 101, .length = 1}, + [61] = {.index = 102, .length = 2}, + [62] = {.index = 104, .length = 2}, + [63] = {.index = 106, .length = 1}, + [64] = {.index = 107, .length = 4}, + [65] = {.index = 111, .length = 1}, + [66] = {.index = 112, .length = 1}, + [67] = {.index = 113, .length = 1}, + [68] = {.index = 114, .length = 1}, + [69] = {.index = 115, .length = 2}, + [70] = {.index = 115, .length = 2}, + [71] = {.index = 117, .length = 1}, + [72] = {.index = 118, .length = 3}, + [73] = {.index = 121, .length = 2}, + [74] = {.index = 123, .length = 2}, + [75] = {.index = 123, .length = 2}, + [76] = {.index = 125, .length = 1}, + [77] = {.index = 126, .length = 1}, + [78] = {.index = 127, .length = 2}, + [79] = {.index = 129, .length = 6}, + [80] = {.index = 135, .length = 3}, + [81] = {.index = 135, .length = 3}, + [82] = {.index = 138, .length = 2}, + [83] = {.index = 138, .length = 2}, + [84] = {.index = 140, .length = 1}, + [85] = {.index = 138, .length = 2}, + [86] = {.index = 138, .length = 2}, + [87] = {.index = 141, .length = 4}, + [88] = {.index = 145, .length = 4}, + [89] = {.index = 149, .length = 2}, + [90] = {.index = 151, .length = 4}, + [91] = {.index = 155, .length = 4}, + [92] = {.index = 159, .length = 1}, + [93] = {.index = 160, .length = 1}, + [94] = {.index = 161, .length = 1}, + [95] = {.index = 162, .length = 5}, + [96] = {.index = 167, .length = 5}, + [97] = {.index = 172, .length = 3}, + [98] = {.index = 175, .length = 2}, + [99] = {.index = 177, .length = 1}, + [101] = {.index = 178, .length = 1}, + [102] = {.index = 179, .length = 1}, + [103] = {.index = 180, .length = 2}, + [104] = {.index = 182, .length = 1}, + [106] = {.index = 179, .length = 1}, + [107] = {.index = 183, .length = 2}, + [108] = {.index = 183, .length = 2}, + [109] = {.index = 185, .length = 1}, + [110] = {.index = 186, .length = 2}, + [111] = {.index = 188, .length = 2}, + [112] = {.index = 190, .length = 1}, + [113] = {.index = 183, .length = 2}, + [114] = {.index = 183, .length = 2}, + [115] = {.index = 191, .length = 2}, + [116] = {.index = 191, .length = 2}, + [117] = {.index = 191, .length = 2}, + [118] = {.index = 191, .length = 2}, + [119] = {.index = 193, .length = 2}, + [120] = {.index = 195, .length = 1}, + [121] = {.index = 196, .length = 6}, + [122] = {.index = 135, .length = 3}, + [123] = {.index = 202, .length = 3}, + [124] = {.index = 196, .length = 6}, + [125] = {.index = 202, .length = 3}, + [126] = {.index = 205, .length = 2}, + [127] = {.index = 207, .length = 1}, + [128] = {.index = 208, .length = 2}, + [129] = {.index = 210, .length = 2}, + [130] = {.index = 210, .length = 2}, + [131] = {.index = 212, .length = 2}, + [132] = {.index = 210, .length = 2}, + [133] = {.index = 210, .length = 2}, + [134] = {.index = 214, .length = 4}, + [135] = {.index = 218, .length = 5}, + [136] = {.index = 223, .length = 5}, + [137] = {.index = 228, .length = 2}, + [138] = {.index = 230, .length = 5}, + [139] = {.index = 235, .length = 1}, + [140] = {.index = 235, .length = 1}, + [141] = {.index = 236, .length = 4}, + [142] = {.index = 240, .length = 6}, + [143] = {.index = 246, .length = 3}, + [144] = {.index = 249, .length = 6}, + [145] = {.index = 255, .length = 3}, + [146] = {.index = 258, .length = 2}, + [147] = {.index = 260, .length = 5}, [148] = {.index = 265, .length = 3}, - [149] = {.index = 268, .length = 1}, - [150] = {.index = 269, .length = 4}, - [151] = {.index = 273, .length = 7}, - [152] = {.index = 280, .length = 4}, - [153] = {.index = 273, .length = 7}, - [154] = {.index = 280, .length = 4}, - [155] = {.index = 284, .length = 3}, - [156] = {.index = 284, .length = 3}, - [157] = {.index = 284, .length = 3}, - [158] = {.index = 284, .length = 3}, - [159] = {.index = 284, .length = 3}, - [160] = {.index = 284, .length = 3}, - [161] = {.index = 284, .length = 3}, - [162] = {.index = 284, .length = 3}, - [163] = {.index = 287, .length = 6}, - [164] = {.index = 293, .length = 5}, - [165] = {.index = 298, .length = 1}, - [166] = {.index = 298, .length = 1}, - [167] = {.index = 299, .length = 1}, - [168] = {.index = 300, .length = 2}, - [169] = {.index = 302, .length = 5}, - [170] = {.index = 307, .length = 5}, - [171] = {.index = 312, .length = 5}, - [172] = {.index = 317, .length = 1}, - [173] = {.index = 318, .length = 2}, - [174] = {.index = 318, .length = 2}, - [175] = {.index = 320, .length = 1}, - [176] = {.index = 321, .length = 2}, - [177] = {.index = 323, .length = 1}, - [178] = {.index = 324, .length = 2}, - [179] = {.index = 326, .length = 2}, - [180] = {.index = 328, .length = 4}, - [181] = {.index = 332, .length = 4}, - [182] = {.index = 336, .length = 8}, - [183] = {.index = 344, .length = 5}, - [184] = {.index = 336, .length = 8}, - [185] = {.index = 344, .length = 5}, - [186] = {.index = 349, .length = 6}, - [187] = {.index = 355, .length = 2}, - [188] = {.index = 357, .length = 4}, - [189] = {.index = 361, .length = 2}, - [190] = {.index = 363, .length = 2}, - [191] = {.index = 365, .length = 2}, - [192] = {.index = 367, .length = 3}, + [149] = {.index = 268, .length = 3}, + [150] = {.index = 271, .length = 1}, + [151] = {.index = 272, .length = 4}, + [152] = {.index = 276, .length = 7}, + [153] = {.index = 283, .length = 4}, + [154] = {.index = 276, .length = 7}, + [155] = {.index = 283, .length = 4}, + [156] = {.index = 287, .length = 3}, + [157] = {.index = 287, .length = 3}, + [158] = {.index = 287, .length = 3}, + [159] = {.index = 287, .length = 3}, + [160] = {.index = 287, .length = 3}, + [161] = {.index = 287, .length = 3}, + [162] = {.index = 287, .length = 3}, + [163] = {.index = 287, .length = 3}, + [164] = {.index = 290, .length = 6}, + [165] = {.index = 296, .length = 5}, + [166] = {.index = 301, .length = 1}, + [167] = {.index = 301, .length = 1}, + [168] = {.index = 302, .length = 1}, + [169] = {.index = 303, .length = 2}, + [170] = {.index = 305, .length = 5}, + [171] = {.index = 310, .length = 5}, + [172] = {.index = 315, .length = 5}, + [173] = {.index = 320, .length = 1}, + [174] = {.index = 321, .length = 2}, + [175] = {.index = 321, .length = 2}, + [176] = {.index = 323, .length = 1}, + [177] = {.index = 324, .length = 2}, + [178] = {.index = 326, .length = 1}, + [179] = {.index = 327, .length = 2}, + [180] = {.index = 329, .length = 2}, + [181] = {.index = 331, .length = 4}, + [182] = {.index = 335, .length = 4}, + [183] = {.index = 339, .length = 8}, + [184] = {.index = 347, .length = 5}, + [185] = {.index = 339, .length = 8}, + [186] = {.index = 347, .length = 5}, + [187] = {.index = 352, .length = 6}, + [188] = {.index = 358, .length = 2}, + [189] = {.index = 360, .length = 4}, + [190] = {.index = 364, .length = 2}, + [191] = {.index = 366, .length = 2}, + [192] = {.index = 368, .length = 2}, [193] = {.index = 370, .length = 3}, - [194] = {.index = 373, .length = 5}, - [195] = {.index = 378, .length = 5}, - [196] = {.index = 383, .length = 5}, - [197] = {.index = 388, .length = 5}, - [198] = {.index = 393, .length = 2}, - [199] = {.index = 395, .length = 4}, - [200] = {.index = 399, .length = 2}, - [201] = {.index = 399, .length = 2}, - [202] = {.index = 401, .length = 5}, - [203] = {.index = 406, .length = 5}, - [204] = {.index = 411, .length = 5}, - [205] = {.index = 416, .length = 5}, + [194] = {.index = 373, .length = 3}, + [195] = {.index = 376, .length = 5}, + [196] = {.index = 381, .length = 5}, + [197] = {.index = 386, .length = 5}, + [198] = {.index = 391, .length = 5}, + [199] = {.index = 396, .length = 2}, + [200] = {.index = 398, .length = 4}, + [201] = {.index = 402, .length = 2}, + [202] = {.index = 402, .length = 2}, + [203] = {.index = 404, .length = 5}, + [204] = {.index = 409, .length = 5}, + [205] = {.index = 414, .length = 5}, + [206] = {.index = 419, .length = 5}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3308,110 +3358,114 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [2] = {field_ctrl_continue, 0}, [3] = + {field_lhs, 0, .inherited = true}, + {field_opr, 0, .inherited = true}, + {field_rhs, 0, .inherited = true}, + [6] = {field_ctrl_break, 0, .inherited = true}, {field_ctrl_continue, 0, .inherited = true}, - [5] = + [8] = {field_name, 0, .inherited = true}, - [6] = + [9] = {field_expr, 0, .inherited = true}, - [7] = + [10] = {field_unquoted_name, 0}, - [8] = + [11] = {field_quoted_name, 0}, - [9] = + [12] = {field_var_name, 0}, - [10] = + [13] = {field_dollar_name, 1, .inherited = true}, {field_name, 1, .inherited = true}, {field_type, 1, .inherited = true}, {field_value, 1, .inherited = true}, {field_var_name, 1, .inherited = true}, - [15] = + [18] = {field_dollar_name, 0}, - [16] = + [19] = {field_arg, 1, .inherited = true}, {field_arg_str, 1, .inherited = true}, {field_flag, 1, .inherited = true}, {field_head, 0}, {field_redir, 1, .inherited = true}, - [21] = + [24] = {field_body, 1}, - [22] = + [25] = {field_name, 1}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [25] = + [28] = {field_module, 1}, - [26] = + [29] = {field_entry, 0}, - [27] = + [30] = {field_item, 0}, - [28] = + [31] = {field_arg, 0, .inherited = true}, {field_arg_str, 0, .inherited = true}, {field_flag, 0, .inherited = true}, {field_head, 0, .inherited = true}, {field_redir, 0, .inherited = true}, - [33] = + [36] = {field_name, 1}, - [34] = + [37] = {field_end, 1}, - [35] = + [38] = {field_try_branch, 1}, - [36] = + [39] = {field_file, 1}, - [37] = + [40] = {field_plugin, 1}, - [38] = + [41] = {field_module, 1}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [41] = + [44] = {field_dollar_name, 1, .inherited = true}, {field_var_name, 1, .inherited = true}, {field_variable, 1}, - [44] = + [47] = {field_lhs, 0}, - [45] = + [48] = {field_lhs, 1, .inherited = true}, {field_opr, 1, .inherited = true}, {field_rhs, 1, .inherited = true}, - [48] = + [51] = {field_expr, 0}, - [49] = + [52] = {field_head, 0}, {field_head, 1}, - [51] = + [54] = {field_start, 0}, - [52] = + [55] = {field_unit, 1}, {field_value, 0}, - [54] = + [57] = {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}, - [59] = + [62] = {field_name, 2}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [62] = + [65] = {field_module, 2}, - [63] = + [66] = {field_arg, 0}, - [64] = + [67] = {field_arg, 1, .inherited = true}, {field_arg_str, 1, .inherited = true}, {field_flag, 1, .inherited = true}, {field_redir, 1, .inherited = true}, - [68] = + [71] = {field_redir, 0}, - [69] = + [72] = {field_flag, 0}, - [70] = + [73] = {field_arg_str, 0}, - [71] = + [74] = {field_arg, 0, .inherited = true}, {field_arg, 1, .inherited = true}, {field_arg_str, 0, .inherited = true}, @@ -3420,279 +3474,279 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_flag, 1, .inherited = true}, {field_redir, 0, .inherited = true}, {field_redir, 1, .inherited = true}, - [79] = + [82] = {field_name, 1}, {field_quoted_name, 1, .inherited = true}, {field_signature, 2}, {field_unquoted_name, 1, .inherited = true}, - [83] = + [86] = {field_body, 2}, {field_name, 1}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [87] = + [90] = {field_command, 0}, {field_quoted_name, 0, .inherited = true}, {field_unquoted_name, 0, .inherited = true}, - [90] = + [93] = {field_import_pattern, 2}, {field_module, 1}, - [92] = + [95] = {field_wildcard, 0}, - [93] = + [96] = {field_command_list, 0}, - [94] = + [97] = {field_entry, 0, .inherited = true}, {field_entry, 1}, - [96] = + [99] = {field_entry, 0, .inherited = true}, {field_entry, 1, .inherited = true}, - [98] = + [101] = {field_error_record, 2}, - [99] = + [102] = {field_body, 2}, {field_condition, 1}, - [101] = + [104] = {field_condition, 1}, {field_then_branch, 2}, - [103] = + [106] = {field_param_name, 0}, - [104] = + [107] = {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}, - [108] = + [111] = {field_param_rest, 0}, - [109] = + [112] = {field_param_optional, 0}, - [110] = + [113] = {field_param_long_flag, 0}, - [111] = + [114] = {field_param_short_flag, 0}, - [112] = + [115] = {field_plugin, 1}, {field_signature, 2}, - [114] = + [117] = {field_overlay, 2}, - [115] = + [118] = {field_overlay, 2}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [118] = + [121] = {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [120] = + [123] = {field_lhs, 0}, {field_lhs, 1}, - [122] = + [125] = {field_digit, 0}, - [123] = + [126] = {field_expr, 1, .inherited = true}, - [124] = + [127] = {field_expr, 0, .inherited = true}, {field_expr, 1, .inherited = true}, - [126] = + [129] = {field_arg, 2, .inherited = true}, {field_arg_str, 2, .inherited = true}, {field_flag, 2, .inherited = true}, {field_head, 0}, {field_head, 1}, {field_redir, 2, .inherited = true}, - [132] = + [135] = {field_lhs, 0}, {field_opr, 1}, {field_rhs, 2}, - [135] = + [138] = {field_end, 2}, {field_start, 0}, - [137] = + [140] = {field_raw_path, 1}, - [138] = + [141] = {field_name, 2}, {field_quoted_name, 2, .inherited = true}, {field_signature, 3}, {field_unquoted_name, 2, .inherited = true}, - [142] = + [145] = {field_body, 3}, {field_name, 2}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [146] = + [149] = {field_import_pattern, 3}, {field_module, 2}, - [148] = + [151] = {field_name, 1}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, {field_value, 3}, - [152] = + [155] = {field_dollar_name, 0, .inherited = true}, {field_name, 0}, {field_value, 2}, {field_var_name, 0, .inherited = true}, - [156] = + [159] = {field_flat_type, 0}, - [157] = + [160] = {field_type, 1, .inherited = true}, - [158] = + [161] = {field_type, 0}, - [159] = + [162] = {field_body, 3}, {field_name, 1}, {field_parameters, 2}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [164] = + [167] = {field_body, 3}, {field_name, 1}, {field_quoted_name, 1, .inherited = true}, {field_signature, 2}, {field_unquoted_name, 1, .inherited = true}, - [169] = + [172] = {field_cmd, 0}, {field_quoted_name, 0, .inherited = true}, {field_unquoted_name, 0, .inherited = true}, - [172] = + [175] = {field_head, 1}, {field_head, 2}, - [174] = + [177] = {field_row, 0}, - [175] = + [178] = {field_error_record, 3}, - [176] = + [179] = {field_scrutinee, 1}, - [177] = + [180] = {field_item, 0, .inherited = true}, {field_rest, 0, .inherited = true}, - [179] = + [182] = {field_entry, 0, .inherited = true}, - [180] = + [183] = {field_key, 0}, {field_value, 2}, - [182] = + [185] = {field_name, 0}, - [183] = + [186] = {field_param_name, 0}, {field_param_name, 1}, - [185] = + [188] = {field_flag_capsule, 1}, {field_param_long_flag, 0}, - [187] = + [190] = {field_parameters, 1}, - [188] = + [191] = {field_end, 3}, {field_step, 1}, - [190] = + [193] = {field_catch_branch, 3}, {field_try_branch, 1}, - [192] = + [195] = {field_overlay, 3}, - [193] = + [196] = {field_lhs, 0}, {field_lhs, 2, .inherited = true}, {field_opr, 1}, {field_opr, 2, .inherited = true}, {field_rhs, 2}, {field_rhs, 2, .inherited = true}, - [199] = + [202] = {field_lhs, 0}, {field_lhs, 1}, {field_lhs, 2}, - [202] = + [205] = {field_digit, 0}, {field_digit, 1}, - [204] = + [207] = {field_digit, 2, .inherited = true}, - [205] = + [208] = {field_digit, 0, .inherited = true}, {field_digit, 1, .inherited = true}, - [207] = + [210] = {field_start, 0}, {field_step, 2}, - [209] = + [212] = {field_protected_path, 1}, {field_protected_path, 2}, - [211] = + [214] = {field_name, 2}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, {field_value, 4}, - [215] = + [218] = {field_body, 4}, {field_name, 2}, {field_parameters, 3}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [220] = + [223] = {field_body, 4}, {field_name, 2}, {field_quoted_name, 2, .inherited = true}, {field_signature, 3}, {field_unquoted_name, 2, .inherited = true}, - [225] = + [228] = {field_completion, 2}, {field_type, 1, .inherited = true}, - [227] = + [230] = {field_dollar_name, 0, .inherited = true}, {field_name, 0}, {field_type, 1}, {field_value, 3}, {field_var_name, 0, .inherited = true}, - [232] = + [235] = {field_file_path, 2}, - [233] = + [236] = {field_arg, 0, .inherited = true}, {field_arg_str, 0, .inherited = true}, {field_flag, 0, .inherited = true}, {field_redir, 0, .inherited = true}, - [237] = + [240] = {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}, - [243] = + [246] = {field_cmd, 1, .inherited = true}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [246] = + [249] = {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}, - [252] = + [255] = {field_head, 1}, {field_head, 2}, {field_row, 3, .inherited = true}, - [255] = + [258] = {field_row, 0, .inherited = true}, {field_row, 1, .inherited = true}, - [257] = + [260] = {field_body, 4}, {field_dollar_name, 1, .inherited = true}, {field_iterable, 3}, {field_looping_var, 1}, {field_var_name, 1, .inherited = true}, - [262] = + [265] = {field_condition, 1}, {field_else_branch, 4}, {field_then_branch, 2}, - [265] = + [268] = {field_condition, 1}, {field_else_block, 4}, {field_then_branch, 2}, - [268] = + [271] = {field_param_value, 1}, - [269] = + [272] = {field_overlay, 2}, {field_quoted_name, 4, .inherited = true}, {field_rename, 4}, {field_unquoted_name, 4, .inherited = true}, - [273] = + [276] = {field_lhs, 0}, {field_lhs, 1}, {field_lhs, 3, .inherited = true}, @@ -3700,82 +3754,82 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_opr, 3, .inherited = true}, {field_rhs, 3}, {field_rhs, 3, .inherited = true}, - [280] = + [283] = {field_lhs, 0}, {field_lhs, 1}, {field_opr, 2}, {field_rhs, 3}, - [284] = + [287] = {field_end, 4}, {field_start, 0}, {field_step, 2}, - [287] = + [290] = {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}, - [293] = + [296] = {field_body, 5}, {field_name, 3}, {field_parameters, 4}, {field_quoted_name, 3, .inherited = true}, {field_unquoted_name, 3, .inherited = true}, - [298] = + [301] = {field_key, 0}, - [299] = + [302] = {field_type, 0, .inherited = true}, - [300] = + [303] = {field_catch_branch, 4}, {field_try_branch, 1}, - [302] = + [305] = {field_body, 5}, {field_dollar_name, 1, .inherited = true}, {field_iterable, 3}, {field_looping_var, 1}, {field_var_name, 1, .inherited = true}, - [307] = + [310] = {field_body, 5}, {field_dollar_name, 1, .inherited = true}, {field_iterable, 4}, {field_looping_var, 1}, {field_var_name, 1, .inherited = true}, - [312] = + [315] = {field_body, 5}, {field_dollar_name, 2, .inherited = true}, {field_iterable, 4}, {field_looping_var, 2}, {field_var_name, 2, .inherited = true}, - [317] = + [320] = {field_rest, 1}, - [318] = + [321] = {field_item, 0}, {field_item, 1}, - [320] = + [323] = {field_item, 1, .inherited = true}, - [321] = + [324] = {field_item, 0, .inherited = true}, {field_item, 1, .inherited = true}, - [323] = + [326] = {field_entry, 1, .inherited = true}, - [324] = + [327] = {field_default_pattern, 0}, {field_expression, 2}, - [326] = + [329] = {field_expression, 2}, {field_pattern, 0}, - [328] = + [331] = {field_overlay, 2}, {field_quoted_name, 5, .inherited = true}, {field_rename, 5}, {field_unquoted_name, 5, .inherited = true}, - [332] = + [335] = {field_overlay, 3}, {field_quoted_name, 5, .inherited = true}, {field_rename, 5}, {field_unquoted_name, 5, .inherited = true}, - [336] = + [339] = {field_lhs, 0}, {field_lhs, 1}, {field_lhs, 2}, @@ -3784,98 +3838,98 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_opr, 4, .inherited = true}, {field_rhs, 4}, {field_rhs, 4, .inherited = true}, - [344] = + [347] = {field_lhs, 0}, {field_lhs, 1}, {field_lhs, 2}, {field_opr, 3}, {field_rhs, 4}, - [349] = + [352] = {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}, - [355] = + [358] = {field_key, 2, .inherited = true}, {field_type, 2, .inherited = true}, - [357] = + [360] = {field_key, 0, .inherited = true}, {field_key, 1, .inherited = true}, {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [361] = + [364] = {field_inner, 2}, {field_type, 2, .inherited = true}, - [363] = + [366] = {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [365] = + [368] = {field_type, 0, .inherited = true}, {field_type, 2, .inherited = true}, - [367] = + [370] = {field_condition, 1}, {field_else_branch, 5}, {field_then_branch, 2}, - [370] = + [373] = {field_condition, 1}, {field_else_block, 5}, {field_then_branch, 2}, - [373] = + [376] = {field_body, 6}, {field_dollar_name, 1, .inherited = true}, {field_iterable, 4}, {field_looping_var, 1}, {field_var_name, 1, .inherited = true}, - [378] = + [381] = {field_body, 6}, {field_dollar_name, 1, .inherited = true}, {field_iterable, 5}, {field_looping_var, 1}, {field_var_name, 1, .inherited = true}, - [383] = + [386] = {field_body, 6}, {field_dollar_name, 2, .inherited = true}, {field_iterable, 4}, {field_looping_var, 2}, {field_var_name, 2, .inherited = true}, - [388] = + [391] = {field_body, 6}, {field_dollar_name, 2, .inherited = true}, {field_iterable, 5}, {field_looping_var, 2}, {field_var_name, 2, .inherited = true}, - [393] = + [396] = {field_item, 1, .inherited = true}, {field_rest, 2}, - [395] = + [398] = {field_overlay, 3}, {field_quoted_name, 6, .inherited = true}, {field_rename, 6}, {field_unquoted_name, 6, .inherited = true}, - [399] = + [402] = {field_key, 0}, {field_type, 2, .inherited = true}, - [401] = + [404] = {field_body, 7}, {field_dollar_name, 1, .inherited = true}, {field_iterable, 5}, {field_looping_var, 1}, {field_var_name, 1, .inherited = true}, - [406] = + [409] = {field_body, 7}, {field_dollar_name, 2, .inherited = true}, {field_iterable, 5}, {field_looping_var, 2}, {field_var_name, 2, .inherited = true}, - [411] = + [414] = {field_body, 7}, {field_dollar_name, 2, .inherited = true}, {field_iterable, 6}, {field_looping_var, 2}, {field_var_name, 2, .inherited = true}, - [416] = + [419] = {field_body, 8}, {field_dollar_name, 2, .inherited = true}, {field_iterable, 6}, @@ -3885,157 +3939,157 @@ static const TSFieldMapEntry ts_field_map_entries[] = { static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { [0] = {0}, - [15] = { + [16] = { [0] = anon_alias_sym__prefix, }, - [17] = { + [18] = { [0] = sym_expr_unary, }, - [20] = { + [21] = { [0] = sym_val_string, }, - [24] = { + [25] = { [1] = sym_val_number, }, - [27] = { + [28] = { [1] = sym_val_string, }, - [29] = { + [30] = { [1] = sym_val_string, }, - [32] = { + [33] = { [0] = sym_val_string, }, - [33] = { + [34] = { [1] = sym_val_closure, }, - [39] = { + [40] = { [0] = sym_val_number, }, - [40] = { + [41] = { [0] = sym_val_number, }, - [48] = { + [49] = { [0] = sym_val_string, }, - [56] = { + [57] = { [1] = anon_alias_sym__unit, }, - [69] = { + [70] = { [1] = sym_val_string, }, - [73] = { + [74] = { [0] = sym_val_string, }, - [80] = { + [81] = { [2] = sym_val_string, }, - [82] = { + [83] = { [2] = sym_val_number, }, - [84] = { + [85] = { [0] = sym_val_number, }, - [85] = { + [86] = { [0] = sym_val_number, [2] = sym_val_number, }, - [99] = { + [100] = { [0] = anon_alias_sym__head, }, - [104] = { + [105] = { [0] = sym_val_string, }, - [105] = { + [106] = { [1] = sym_val_string, }, - [106] = { + [107] = { [0] = sym_identifier, [2] = sym_val_string, }, - [107] = { + [108] = { [0] = sym_identifier, }, - [112] = { + [113] = { [2] = sym_val_string, }, - [115] = { + [116] = { [3] = sym_val_number, }, - [116] = { + [117] = { [1] = sym_val_number, }, - [117] = { + [118] = { [1] = sym_val_number, [3] = sym_val_number, }, - [120] = { - [0] = sym_val_string, - }, [121] = { [0] = sym_val_string, }, [122] = { [0] = sym_val_string, }, - [129] = { + [123] = { + [0] = sym_val_string, + }, + [130] = { [2] = sym_val_number, }, - [131] = { + [132] = { [0] = sym_val_number, }, - [132] = { + [133] = { [0] = sym_val_number, [2] = sym_val_number, }, - [139] = { + [140] = { [2] = sym_val_string, }, - [151] = { + [152] = { [0] = sym_val_string, }, - [152] = { + [153] = { [0] = sym_val_string, }, - [156] = { + [157] = { [4] = sym_val_number, }, - [157] = { + [158] = { [2] = sym_val_number, }, - [158] = { + [159] = { [2] = sym_val_number, [4] = sym_val_number, }, - [159] = { + [160] = { [0] = sym_val_number, }, - [160] = { + [161] = { [0] = sym_val_number, [4] = sym_val_number, }, - [161] = { + [162] = { [0] = sym_val_number, [2] = sym_val_number, }, - [162] = { + [163] = { [0] = sym_val_number, [2] = sym_val_number, [4] = sym_val_number, }, - [166] = { + [167] = { [0] = sym_identifier, }, - [174] = { + [175] = { [0] = sym_val_string, }, - [182] = { + [183] = { [0] = sym_val_string, }, - [183] = { + [184] = { [0] = sym_val_string, }, - [201] = { + [202] = { [0] = sym_identifier, }, }; @@ -4080,13 +4134,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 3, - [4] = 3, + [4] = 4, [5] = 3, - [6] = 6, + [6] = 4, [7] = 3, - [8] = 6, + [8] = 4, [9] = 3, - [10] = 6, + [10] = 4, [11] = 3, [12] = 3, [13] = 3, @@ -4096,7 +4150,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [17] = 3, [18] = 3, [19] = 3, - [20] = 6, + [20] = 3, [21] = 3, [22] = 3, [23] = 3, @@ -4119,2735 +4173,2735 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [40] = 3, [41] = 3, [42] = 3, - [43] = 3, - [44] = 3, - [45] = 45, - [46] = 45, - [47] = 45, - [48] = 45, - [49] = 49, - [50] = 49, - [51] = 49, - [52] = 52, - [53] = 49, - [54] = 52, - [55] = 52, - [56] = 49, - [57] = 49, - [58] = 52, - [59] = 49, - [60] = 49, - [61] = 52, - [62] = 49, - [63] = 63, - [64] = 52, - [65] = 49, - [66] = 52, - [67] = 52, - [68] = 49, - [69] = 49, - [70] = 52, - [71] = 49, - [72] = 63, - [73] = 52, - [74] = 49, - [75] = 52, - [76] = 52, - [77] = 49, - [78] = 49, - [79] = 52, - [80] = 49, - [81] = 63, - [82] = 52, - [83] = 52, - [84] = 49, - [85] = 52, - [86] = 52, - [87] = 49, - [88] = 49, - [89] = 52, - [90] = 49, - [91] = 52, - [92] = 52, - [93] = 49, - [94] = 52, - [95] = 52, - [96] = 49, - [97] = 49, - [98] = 52, - [99] = 49, - [100] = 49, - [101] = 52, - [102] = 49, - [103] = 52, - [104] = 52, - [105] = 49, - [106] = 49, - [107] = 52, - [108] = 49, - [109] = 49, - [110] = 52, - [111] = 49, - [112] = 52, - [113] = 52, - [114] = 49, - [115] = 49, - [116] = 52, - [117] = 52, - [118] = 52, - [119] = 52, - [120] = 49, - [121] = 63, - [122] = 49, - [123] = 49, - [124] = 49, - [125] = 49, - [126] = 49, - [127] = 49, - [128] = 49, - [129] = 49, - [130] = 49, - [131] = 49, - [132] = 49, - [133] = 49, - [134] = 49, - [135] = 49, - [136] = 49, - [137] = 137, - [138] = 49, - [139] = 49, - [140] = 49, - [141] = 49, - [142] = 49, - [143] = 49, - [144] = 49, - [145] = 49, - [146] = 49, - [147] = 49, - [148] = 49, - [149] = 49, - [150] = 49, - [151] = 52, - [152] = 152, - [153] = 152, - [154] = 154, - [155] = 155, - [156] = 152, - [157] = 157, - [158] = 152, - [159] = 154, - [160] = 157, - [161] = 155, - [162] = 154, - [163] = 155, - [164] = 152, - [165] = 154, - [166] = 155, - [167] = 152, - [168] = 154, - [169] = 155, - [170] = 152, - [171] = 154, - [172] = 155, - [173] = 152, - [174] = 154, - [175] = 155, - [176] = 152, - [177] = 154, - [178] = 155, - [179] = 152, - [180] = 154, - [181] = 155, - [182] = 152, - [183] = 154, - [184] = 155, - [185] = 152, - [186] = 154, - [187] = 155, - [188] = 154, - [189] = 155, - [190] = 152, - [191] = 154, - [192] = 155, - [193] = 152, - [194] = 154, - [195] = 155, - [196] = 152, - [197] = 154, - [198] = 155, - [199] = 152, - [200] = 154, - [201] = 155, - [202] = 152, - [203] = 154, - [204] = 155, - [205] = 152, - [206] = 154, - [207] = 155, - [208] = 152, - [209] = 154, - [210] = 155, - [211] = 152, - [212] = 154, - [213] = 155, - [214] = 152, - [215] = 154, - [216] = 155, - [217] = 152, - [218] = 154, - [219] = 155, - [220] = 152, - [221] = 154, - [222] = 155, - [223] = 154, - [224] = 155, - [225] = 152, - [226] = 154, - [227] = 155, - [228] = 152, - [229] = 154, - [230] = 155, - [231] = 152, - [232] = 154, - [233] = 155, - [234] = 152, - [235] = 154, - [236] = 152, - [237] = 154, - [238] = 152, - [239] = 152, - [240] = 152, - [241] = 152, - [242] = 152, - [243] = 152, - [244] = 244, + [43] = 43, + [44] = 43, + [45] = 43, + [46] = 43, + [47] = 47, + [48] = 47, + [49] = 47, + [50] = 47, + [51] = 51, + [52] = 47, + [53] = 53, + [54] = 51, + [55] = 51, + [56] = 56, + [57] = 47, + [58] = 53, + [59] = 51, + [60] = 47, + [61] = 53, + [62] = 51, + [63] = 47, + [64] = 51, + [65] = 47, + [66] = 51, + [67] = 47, + [68] = 51, + [69] = 47, + [70] = 51, + [71] = 47, + [72] = 51, + [73] = 47, + [74] = 51, + [75] = 47, + [76] = 51, + [77] = 47, + [78] = 51, + [79] = 47, + [80] = 51, + [81] = 47, + [82] = 51, + [83] = 47, + [84] = 51, + [85] = 47, + [86] = 51, + [87] = 47, + [88] = 51, + [89] = 47, + [90] = 51, + [91] = 47, + [92] = 51, + [93] = 47, + [94] = 51, + [95] = 47, + [96] = 51, + [97] = 47, + [98] = 51, + [99] = 47, + [100] = 51, + [101] = 47, + [102] = 51, + [103] = 47, + [104] = 51, + [105] = 47, + [106] = 51, + [107] = 47, + [108] = 51, + [109] = 47, + [110] = 51, + [111] = 47, + [112] = 51, + [113] = 47, + [114] = 51, + [115] = 47, + [116] = 47, + [117] = 47, + [118] = 47, + [119] = 47, + [120] = 47, + [121] = 47, + [122] = 47, + [123] = 47, + [124] = 47, + [125] = 47, + [126] = 47, + [127] = 47, + [128] = 47, + [129] = 47, + [130] = 47, + [131] = 47, + [132] = 47, + [133] = 47, + [134] = 47, + [135] = 47, + [136] = 47, + [137] = 47, + [138] = 47, + [139] = 47, + [140] = 47, + [141] = 53, + [142] = 142, + [143] = 143, + [144] = 142, + [145] = 145, + [146] = 143, + [147] = 147, + [148] = 147, + [149] = 145, + [150] = 142, + [151] = 142, + [152] = 145, + [153] = 143, + [154] = 143, + [155] = 142, + [156] = 145, + [157] = 143, + [158] = 142, + [159] = 145, + [160] = 143, + [161] = 142, + [162] = 145, + [163] = 143, + [164] = 142, + [165] = 145, + [166] = 143, + [167] = 142, + [168] = 145, + [169] = 143, + [170] = 142, + [171] = 145, + [172] = 143, + [173] = 143, + [174] = 142, + [175] = 145, + [176] = 143, + [177] = 142, + [178] = 145, + [179] = 143, + [180] = 142, + [181] = 145, + [182] = 143, + [183] = 142, + [184] = 145, + [185] = 143, + [186] = 142, + [187] = 145, + [188] = 143, + [189] = 142, + [190] = 145, + [191] = 143, + [192] = 142, + [193] = 145, + [194] = 143, + [195] = 142, + [196] = 145, + [197] = 143, + [198] = 142, + [199] = 145, + [200] = 143, + [201] = 142, + [202] = 145, + [203] = 143, + [204] = 142, + [205] = 145, + [206] = 143, + [207] = 142, + [208] = 145, + [209] = 143, + [210] = 142, + [211] = 145, + [212] = 143, + [213] = 142, + [214] = 145, + [215] = 143, + [216] = 142, + [217] = 145, + [218] = 143, + [219] = 142, + [220] = 143, + [221] = 142, + [222] = 143, + [223] = 143, + [224] = 143, + [225] = 143, + [226] = 143, + [227] = 145, + [228] = 228, + [229] = 229, + [230] = 228, + [231] = 231, + [232] = 232, + [233] = 233, + [234] = 234, + [235] = 235, + [236] = 233, + [237] = 237, + [238] = 238, + [239] = 239, + [240] = 240, + [241] = 241, + [242] = 242, + [243] = 234, + [244] = 238, [245] = 245, - [246] = 245, - [247] = 247, + [246] = 235, + [247] = 237, [248] = 248, [249] = 249, - [250] = 250, + [250] = 242, [251] = 251, [252] = 252, - [253] = 253, - [254] = 249, - [255] = 251, + [253] = 248, + [254] = 245, + [255] = 255, [256] = 256, [257] = 257, - [258] = 258, - [259] = 259, - [260] = 252, - [261] = 253, - [262] = 262, - [263] = 249, + [258] = 241, + [259] = 240, + [260] = 239, + [261] = 255, + [262] = 257, + [263] = 252, [264] = 264, - [265] = 250, + [265] = 256, [266] = 266, - [267] = 250, - [268] = 268, + [267] = 249, + [268] = 251, [269] = 269, [270] = 270, [271] = 271, - [272] = 262, - [273] = 264, - [274] = 252, - [275] = 249, - [276] = 256, - [277] = 259, - [278] = 258, - [279] = 251, - [280] = 253, - [281] = 257, - [282] = 282, - [283] = 266, - [284] = 259, - [285] = 282, - [286] = 268, - [287] = 264, + [272] = 272, + [273] = 269, + [274] = 264, + [275] = 270, + [276] = 266, + [277] = 277, + [278] = 278, + [279] = 279, + [280] = 252, + [281] = 277, + [282] = 271, + [283] = 272, + [284] = 284, + [285] = 255, + [286] = 256, + [287] = 251, [288] = 288, [289] = 289, - [290] = 271, - [291] = 270, - [292] = 269, + [290] = 290, + [291] = 291, + [292] = 292, [293] = 293, [294] = 294, - [295] = 253, - [296] = 257, - [297] = 249, - [298] = 253, - [299] = 252, - [300] = 251, - [301] = 250, - [302] = 258, - [303] = 256, - [304] = 249, - [305] = 264, - [306] = 288, - [307] = 289, - [308] = 293, - [309] = 294, - [310] = 310, - [311] = 311, + [295] = 257, + [296] = 252, + [297] = 251, + [298] = 256, + [299] = 255, + [300] = 270, + [301] = 266, + [302] = 257, + [303] = 284, + [304] = 269, + [305] = 289, + [306] = 264, + [307] = 290, + [308] = 291, + [309] = 292, + [310] = 293, + [311] = 294, [312] = 312, - [313] = 257, - [314] = 252, - [315] = 282, - [316] = 251, - [317] = 250, - [318] = 253, - [319] = 268, - [320] = 258, - [321] = 256, - [322] = 259, - [323] = 271, - [324] = 266, - [325] = 270, - [326] = 269, - [327] = 294, - [328] = 250, - [329] = 311, - [330] = 282, - [331] = 331, - [332] = 312, + [313] = 251, + [314] = 288, + [315] = 255, + [316] = 257, + [317] = 279, + [318] = 278, + [319] = 256, + [320] = 270, + [321] = 270, + [322] = 266, + [323] = 323, + [324] = 324, + [325] = 277, + [326] = 266, + [327] = 271, + [328] = 272, + [329] = 264, + [330] = 330, + [331] = 269, + [332] = 264, [333] = 333, - [334] = 258, + [334] = 334, [335] = 335, - [336] = 310, - [337] = 256, - [338] = 259, + [336] = 312, + [337] = 333, + [338] = 269, [339] = 339, - [340] = 268, + [340] = 340, [341] = 341, - [342] = 271, + [342] = 342, [343] = 343, - [344] = 270, - [345] = 269, + [344] = 344, + [345] = 345, [346] = 346, - [347] = 268, - [348] = 271, - [349] = 266, - [350] = 270, - [351] = 269, - [352] = 293, + [347] = 347, + [348] = 348, + [349] = 349, + [350] = 350, + [351] = 351, + [352] = 352, [353] = 353, - [354] = 252, + [354] = 354, [355] = 355, - [356] = 251, + [356] = 356, [357] = 357, - [358] = 288, + [358] = 284, [359] = 359, - [360] = 289, - [361] = 266, - [362] = 258, - [363] = 271, + [360] = 360, + [361] = 361, + [362] = 362, + [363] = 363, [364] = 364, - [365] = 256, - [366] = 259, - [367] = 355, - [368] = 333, - [369] = 346, - [370] = 341, - [371] = 266, + [365] = 365, + [366] = 366, + [367] = 367, + [368] = 368, + [369] = 369, + [370] = 370, + [371] = 371, [372] = 335, - [373] = 270, - [374] = 269, - [375] = 288, - [376] = 293, - [377] = 294, - [378] = 268, - [379] = 289, - [380] = 331, - [381] = 359, - [382] = 271, - [383] = 357, - [384] = 266, - [385] = 310, - [386] = 288, - [387] = 289, - [388] = 270, - [389] = 311, - [390] = 269, - [391] = 312, - [392] = 339, - [393] = 353, - [394] = 293, - [395] = 294, - [396] = 343, - [397] = 311, - [398] = 310, - [399] = 339, - [400] = 355, - [401] = 333, - [402] = 346, + [373] = 373, + [374] = 374, + [375] = 375, + [376] = 376, + [377] = 334, + [378] = 333, + [379] = 272, + [380] = 380, + [381] = 381, + [382] = 382, + [383] = 383, + [384] = 384, + [385] = 385, + [386] = 386, + [387] = 387, + [388] = 388, + [389] = 389, + [390] = 390, + [391] = 391, + [392] = 392, + [393] = 393, + [394] = 269, + [395] = 264, + [396] = 271, + [397] = 277, + [398] = 333, + [399] = 399, + [400] = 400, + [401] = 330, + [402] = 339, [403] = 403, - [404] = 312, - [405] = 405, + [404] = 404, + [405] = 339, [406] = 406, - [407] = 266, - [408] = 270, - [409] = 288, - [410] = 271, - [411] = 406, - [412] = 412, - [413] = 312, - [414] = 289, + [407] = 407, + [408] = 271, + [409] = 340, + [410] = 410, + [411] = 323, + [412] = 288, + [413] = 324, + [414] = 277, [415] = 415, - [416] = 293, - [417] = 294, - [418] = 293, - [419] = 364, - [420] = 294, - [421] = 359, - [422] = 353, - [423] = 288, - [424] = 343, - [425] = 425, - [426] = 310, - [427] = 289, - [428] = 269, - [429] = 341, - [430] = 268, - [431] = 431, - [432] = 311, - [433] = 335, - [434] = 357, - [435] = 435, - [436] = 289, - [437] = 312, - [438] = 438, - [439] = 310, - [440] = 406, - [441] = 403, - [442] = 442, - [443] = 443, - [444] = 444, - [445] = 445, - [446] = 446, - [447] = 311, - [448] = 448, - [449] = 431, - [450] = 333, - [451] = 346, - [452] = 312, - [453] = 359, - [454] = 288, - [455] = 405, - [456] = 353, - [457] = 412, - [458] = 425, - [459] = 459, - [460] = 460, - [461] = 461, - [462] = 462, - [463] = 288, - [464] = 289, - [465] = 355, - [466] = 466, - [467] = 343, - [468] = 341, - [469] = 357, - [470] = 341, - [471] = 364, - [472] = 472, - [473] = 473, - [474] = 293, - [475] = 294, - [476] = 476, - [477] = 477, - [478] = 268, - [479] = 406, - [480] = 480, - [481] = 481, - [482] = 482, - [483] = 483, - [484] = 435, - [485] = 485, - [486] = 486, - [487] = 487, - [488] = 488, - [489] = 489, - [490] = 490, - [491] = 491, - [492] = 492, - [493] = 493, - [494] = 494, - [495] = 495, - [496] = 496, - [497] = 497, - [498] = 498, - [499] = 499, - [500] = 339, - [501] = 501, - [502] = 431, - [503] = 503, - [504] = 504, - [505] = 505, - [506] = 506, - [507] = 507, - [508] = 508, - [509] = 509, - [510] = 510, - [511] = 511, - [512] = 512, - [513] = 513, - [514] = 514, - [515] = 515, - [516] = 516, + [416] = 272, + [417] = 352, + [418] = 264, + [419] = 339, + [420] = 415, + [421] = 381, + [422] = 342, + [423] = 343, + [424] = 344, + [425] = 345, + [426] = 346, + [427] = 347, + [428] = 348, + [429] = 349, + [430] = 350, + [431] = 351, + [432] = 432, + [433] = 353, + [434] = 354, + [435] = 355, + [436] = 356, + [437] = 357, + [438] = 359, + [439] = 284, + [440] = 360, + [441] = 361, + [442] = 362, + [443] = 363, + [444] = 364, + [445] = 365, + [446] = 366, + [447] = 367, + [448] = 368, + [449] = 369, + [450] = 370, + [451] = 373, + [452] = 374, + [453] = 375, + [454] = 376, + [455] = 380, + [456] = 382, + [457] = 383, + [458] = 384, + [459] = 385, + [460] = 386, + [461] = 387, + [462] = 388, + [463] = 389, + [464] = 390, + [465] = 391, + [466] = 392, + [467] = 393, + [468] = 284, + [469] = 399, + [470] = 400, + [471] = 288, + [472] = 403, + [473] = 404, + [474] = 269, + [475] = 406, + [476] = 407, + [477] = 341, + [478] = 410, + [479] = 371, + [480] = 233, + [481] = 238, + [482] = 235, + [483] = 237, + [484] = 234, + [485] = 233, + [486] = 245, + [487] = 233, + [488] = 235, + [489] = 248, + [490] = 241, + [491] = 240, + [492] = 238, + [493] = 238, + [494] = 237, + [495] = 234, + [496] = 239, + [497] = 237, + [498] = 251, + [499] = 239, + [500] = 252, + [501] = 234, + [502] = 241, + [503] = 240, + [504] = 235, + [505] = 249, + [506] = 255, + [507] = 257, + [508] = 248, + [509] = 238, + [510] = 256, + [511] = 245, + [512] = 233, + [513] = 249, + [514] = 270, + [515] = 241, + [516] = 240, [517] = 517, - [518] = 518, - [519] = 343, - [520] = 310, - [521] = 311, - [522] = 522, - [523] = 523, - [524] = 524, - [525] = 525, + [518] = 269, + [519] = 264, + [520] = 257, + [521] = 245, + [522] = 256, + [523] = 251, + [524] = 255, + [525] = 237, [526] = 266, - [527] = 270, - [528] = 269, - [529] = 415, - [530] = 271, - [531] = 335, - [532] = 524, - [533] = 364, - [534] = 483, - [535] = 405, - [536] = 412, - [537] = 425, - [538] = 289, - [539] = 480, - [540] = 415, - [541] = 311, - [542] = 481, - [543] = 482, - [544] = 403, - [545] = 431, - [546] = 485, - [547] = 486, - [548] = 487, - [549] = 488, - [550] = 489, - [551] = 490, - [552] = 491, - [553] = 492, - [554] = 493, - [555] = 494, - [556] = 495, - [557] = 496, - [558] = 497, - [559] = 498, - [560] = 499, - [561] = 312, - [562] = 501, - [563] = 431, - [564] = 443, - [565] = 504, - [566] = 505, - [567] = 506, - [568] = 507, - [569] = 508, - [570] = 509, - [571] = 510, - [572] = 406, - [573] = 512, - [574] = 288, - [575] = 513, - [576] = 514, - [577] = 515, - [578] = 516, - [579] = 310, - [580] = 444, - [581] = 473, - [582] = 341, - [583] = 459, - [584] = 460, - [585] = 343, - [586] = 466, - [587] = 472, - [588] = 522, - [589] = 523, - [590] = 525, - [591] = 288, - [592] = 592, - [593] = 289, - [594] = 293, - [595] = 294, - [596] = 448, - [597] = 503, - [598] = 517, - [599] = 341, - [600] = 518, - [601] = 438, - [602] = 442, - [603] = 445, - [604] = 446, - [605] = 435, - [606] = 461, - [607] = 462, - [608] = 476, - [609] = 477, - [610] = 511, - [611] = 466, - [612] = 488, - [613] = 443, - [614] = 482, - [615] = 444, - [616] = 498, - [617] = 341, - [618] = 507, - [619] = 511, - [620] = 459, - [621] = 460, - [622] = 446, - [623] = 489, - [624] = 472, - [625] = 473, - [626] = 462, - [627] = 480, - [628] = 508, - [629] = 522, - [630] = 523, - [631] = 524, - [632] = 490, - [633] = 633, - [634] = 525, - [635] = 493, - [636] = 403, - [637] = 637, - [638] = 448, - [639] = 431, - [640] = 512, - [641] = 641, - [642] = 461, - [643] = 415, - [644] = 494, - [645] = 517, - [646] = 501, - [647] = 435, - [648] = 343, - [649] = 476, - [650] = 481, - [651] = 515, - [652] = 477, - [653] = 406, - [654] = 491, - [655] = 431, - [656] = 288, - [657] = 509, - [658] = 289, - [659] = 405, - [660] = 514, - [661] = 503, - [662] = 483, - [663] = 518, - [664] = 496, - [665] = 311, - [666] = 497, - [667] = 312, - [668] = 412, - [669] = 513, - [670] = 425, - [671] = 485, - [672] = 438, - [673] = 504, - [674] = 510, - [675] = 516, - [676] = 310, - [677] = 442, - [678] = 486, - [679] = 495, - [680] = 505, - [681] = 492, - [682] = 487, - [683] = 445, - [684] = 506, - [685] = 499, - [686] = 506, - [687] = 462, - [688] = 522, - [689] = 431, - [690] = 501, - [691] = 523, - [692] = 481, - [693] = 524, - [694] = 525, - [695] = 517, - [696] = 482, - [697] = 288, - [698] = 633, - [699] = 637, - [700] = 485, - [701] = 289, - [702] = 504, - [703] = 486, - [704] = 505, - [705] = 487, - [706] = 488, - [707] = 507, - [708] = 489, - [709] = 508, - [710] = 490, - [711] = 509, - [712] = 491, - [713] = 510, - [714] = 492, - [715] = 511, - [716] = 493, - [717] = 343, - [718] = 512, - [719] = 494, - [720] = 513, - [721] = 495, - [722] = 514, - [723] = 496, - [724] = 515, - [725] = 497, - [726] = 516, - [727] = 498, - [728] = 499, - [729] = 341, - [730] = 448, - [731] = 503, - [732] = 518, - [733] = 438, - [734] = 442, - [735] = 445, - [736] = 446, - [737] = 461, - [738] = 476, - [739] = 477, - [740] = 483, - [741] = 466, - [742] = 480, - [743] = 443, - [744] = 444, - [745] = 459, - [746] = 460, - [747] = 472, - [748] = 473, - [749] = 641, - [750] = 249, - [751] = 252, - [752] = 249, - [753] = 251, - [754] = 250, - [755] = 253, - [756] = 249, - [757] = 252, - [758] = 250, - [759] = 251, - [760] = 258, - [761] = 256, - [762] = 259, - [763] = 253, - [764] = 253, - [765] = 264, - [766] = 257, - [767] = 266, - [768] = 259, - [769] = 268, - [770] = 251, - [771] = 250, - [772] = 258, - [773] = 271, - [774] = 257, - [775] = 270, - [776] = 269, - [777] = 282, - [778] = 264, - [779] = 253, - [780] = 249, - [781] = 252, - [782] = 256, - [783] = 258, - [784] = 282, - [785] = 288, - [786] = 289, - [787] = 331, - [788] = 256, - [789] = 268, - [790] = 251, - [791] = 259, - [792] = 293, - [793] = 270, - [794] = 294, - [795] = 252, - [796] = 269, - [797] = 271, - [798] = 266, - [799] = 250, - [800] = 259, - [801] = 256, - [802] = 331, - [803] = 288, - [804] = 310, - [805] = 258, - [806] = 294, - [807] = 289, - [808] = 293, - [809] = 311, - [810] = 312, - [811] = 357, - [812] = 343, - [813] = 310, - [814] = 311, - [815] = 312, - [816] = 335, - [817] = 339, - [818] = 355, - [819] = 333, - [820] = 346, - [821] = 268, - [822] = 359, - [823] = 353, - [824] = 341, - [825] = 271, - [826] = 266, - [827] = 270, - [828] = 269, - [829] = 829, - [830] = 829, - [831] = 346, - [832] = 266, - [833] = 270, - [834] = 269, - [835] = 271, - [836] = 364, - [837] = 343, - [838] = 293, - [839] = 294, - [840] = 288, - [841] = 289, - [842] = 335, - [843] = 339, - [844] = 355, - [845] = 268, - [846] = 359, - [847] = 341, - [848] = 353, - [849] = 333, - [850] = 357, - [851] = 311, - [852] = 405, - [853] = 312, - [854] = 412, - [855] = 293, - [856] = 406, - [857] = 425, - [858] = 403, - [859] = 431, - [860] = 415, - [861] = 288, - [862] = 310, - [863] = 289, - [864] = 294, - [865] = 435, - [866] = 364, - [867] = 459, - [868] = 517, - [869] = 443, - [870] = 444, - [871] = 311, - [872] = 633, - [873] = 312, - [874] = 499, - [875] = 310, - [876] = 403, - [877] = 637, - [878] = 460, - [879] = 462, - [880] = 431, - [881] = 431, - [882] = 466, - [883] = 472, - [884] = 448, - [885] = 473, - [886] = 341, - [887] = 480, - [888] = 476, - [889] = 477, - [890] = 288, - [891] = 289, - [892] = 343, - [893] = 481, - [894] = 482, - [895] = 485, - [896] = 486, - [897] = 487, - [898] = 488, - [899] = 489, - [900] = 490, - [901] = 491, - [902] = 492, - [903] = 493, - [904] = 494, - [905] = 495, - [906] = 496, - [907] = 497, - [908] = 498, - [909] = 501, - [910] = 446, - [911] = 461, - [912] = 504, - [913] = 505, - [914] = 914, - [915] = 506, - [916] = 507, - [917] = 508, - [918] = 509, - [919] = 510, - [920] = 503, - [921] = 511, - [922] = 512, - [923] = 513, - [924] = 514, - [925] = 515, - [926] = 926, - [927] = 516, - [928] = 928, - [929] = 415, - [930] = 930, - [931] = 931, - [932] = 932, + [527] = 234, + [528] = 235, + [529] = 252, + [530] = 269, + [531] = 240, + [532] = 264, + [533] = 270, + [534] = 277, + [535] = 271, + [536] = 266, + [537] = 272, + [538] = 517, + [539] = 245, + [540] = 241, + [541] = 284, + [542] = 279, + [543] = 277, + [544] = 255, + [545] = 271, + [546] = 257, + [547] = 278, + [548] = 289, + [549] = 272, + [550] = 256, + [551] = 251, + [552] = 252, + [553] = 553, + [554] = 288, + [555] = 290, + [556] = 291, + [557] = 292, + [558] = 293, + [559] = 294, + [560] = 553, + [561] = 270, + [562] = 256, + [563] = 251, + [564] = 255, + [565] = 290, + [566] = 266, + [567] = 293, + [568] = 279, + [569] = 294, + [570] = 269, + [571] = 312, + [572] = 284, + [573] = 288, + [574] = 252, + [575] = 292, + [576] = 289, + [577] = 291, + [578] = 264, + [579] = 278, + [580] = 257, + [581] = 266, + [582] = 277, + [583] = 334, + [584] = 324, + [585] = 264, + [586] = 269, + [587] = 335, + [588] = 270, + [589] = 330, + [590] = 323, + [591] = 271, + [592] = 333, + [593] = 312, + [594] = 339, + [595] = 340, + [596] = 272, + [597] = 341, + [598] = 598, + [599] = 330, + [600] = 415, + [601] = 334, + [602] = 602, + [603] = 360, + [604] = 604, + [605] = 605, + [606] = 381, + [607] = 335, + [608] = 356, + [609] = 342, + [610] = 277, + [611] = 602, + [612] = 612, + [613] = 361, + [614] = 353, + [615] = 333, + [616] = 362, + [617] = 617, + [618] = 363, + [619] = 288, + [620] = 620, + [621] = 620, + [622] = 343, + [623] = 598, + [624] = 364, + [625] = 344, + [626] = 339, + [627] = 271, + [628] = 628, + [629] = 345, + [630] = 630, + [631] = 631, + [632] = 340, + [633] = 365, + [634] = 339, + [635] = 346, + [636] = 272, + [637] = 284, + [638] = 347, + [639] = 323, + [640] = 324, + [641] = 380, + [642] = 366, + [643] = 382, + [644] = 384, + [645] = 357, + [646] = 646, + [647] = 385, + [648] = 348, + [649] = 386, + [650] = 387, + [651] = 349, + [652] = 388, + [653] = 389, + [654] = 390, + [655] = 391, + [656] = 392, + [657] = 393, + [658] = 658, + [659] = 350, + [660] = 351, + [661] = 383, + [662] = 399, + [663] = 400, + [664] = 373, + [665] = 367, + [666] = 403, + [667] = 404, + [668] = 269, + [669] = 406, + [670] = 407, + [671] = 368, + [672] = 264, + [673] = 410, + [674] = 631, + [675] = 369, + [676] = 374, + [677] = 370, + [678] = 354, + [679] = 375, + [680] = 371, + [681] = 352, + [682] = 376, + [683] = 683, + [684] = 355, + [685] = 359, + [686] = 612, + [687] = 375, + [688] = 356, + [689] = 386, + [690] = 389, + [691] = 390, + [692] = 380, + [693] = 383, + [694] = 694, + [695] = 384, + [696] = 385, + [697] = 388, + [698] = 698, + [699] = 699, + [700] = 700, + [701] = 701, + [702] = 702, + [703] = 703, + [704] = 704, + [705] = 705, + [706] = 706, + [707] = 391, + [708] = 392, + [709] = 393, + [710] = 399, + [711] = 400, + [712] = 403, + [713] = 404, + [714] = 406, + [715] = 407, + [716] = 341, + [717] = 410, + [718] = 269, + [719] = 264, + [720] = 288, + [721] = 373, + [722] = 374, + [723] = 376, + [724] = 284, + [725] = 387, + [726] = 683, + [727] = 617, + [728] = 630, + [729] = 357, + [730] = 415, + [731] = 381, + [732] = 342, + [733] = 343, + [734] = 344, + [735] = 345, + [736] = 346, + [737] = 347, + [738] = 348, + [739] = 349, + [740] = 350, + [741] = 351, + [742] = 352, + [743] = 353, + [744] = 354, + [745] = 355, + [746] = 359, + [747] = 360, + [748] = 361, + [749] = 362, + [750] = 363, + [751] = 364, + [752] = 365, + [753] = 366, + [754] = 367, + [755] = 368, + [756] = 369, + [757] = 382, + [758] = 370, + [759] = 371, + [760] = 339, + [761] = 761, + [762] = 762, + [763] = 763, + [764] = 764, + [765] = 765, + [766] = 764, + [767] = 767, + [768] = 768, + [769] = 769, + [770] = 770, + [771] = 770, + [772] = 770, + [773] = 770, + [774] = 770, + [775] = 770, + [776] = 770, + [777] = 770, + [778] = 770, + [779] = 770, + [780] = 770, + [781] = 770, + [782] = 765, + [783] = 770, + [784] = 770, + [785] = 770, + [786] = 786, + [787] = 768, + [788] = 770, + [789] = 770, + [790] = 770, + [791] = 791, + [792] = 770, + [793] = 770, + [794] = 770, + [795] = 795, + [796] = 233, + [797] = 770, + [798] = 770, + [799] = 770, + [800] = 770, + [801] = 770, + [802] = 770, + [803] = 770, + [804] = 804, + [805] = 770, + [806] = 770, + [807] = 770, + [808] = 770, + [809] = 770, + [810] = 810, + [811] = 769, + [812] = 812, + [813] = 770, + [814] = 814, + [815] = 815, + [816] = 816, + [817] = 770, + [818] = 818, + [819] = 819, + [820] = 770, + [821] = 821, + [822] = 822, + [823] = 238, + [824] = 812, + [825] = 233, + [826] = 237, + [827] = 827, + [828] = 828, + [829] = 234, + [830] = 814, + [831] = 235, + [832] = 832, + [833] = 815, + [834] = 816, + [835] = 819, + [836] = 786, + [837] = 791, + [838] = 795, + [839] = 233, + [840] = 840, + [841] = 832, + [842] = 233, + [843] = 234, + [844] = 237, + [845] = 235, + [846] = 846, + [847] = 238, + [848] = 848, + [849] = 237, + [850] = 245, + [851] = 851, + [852] = 234, + [853] = 828, + [854] = 827, + [855] = 235, + [856] = 240, + [857] = 233, + [858] = 241, + [859] = 840, + [860] = 821, + [861] = 822, + [862] = 238, + [863] = 245, + [864] = 235, + [865] = 237, + [866] = 234, + [867] = 846, + [868] = 235, + [869] = 238, + [870] = 241, + [871] = 240, + [872] = 872, + [873] = 873, + [874] = 874, + [875] = 238, + [876] = 846, + [877] = 877, + [878] = 248, + [879] = 239, + [880] = 245, + [881] = 241, + [882] = 240, + [883] = 242, + [884] = 237, + [885] = 234, + [886] = 874, + [887] = 872, + [888] = 888, + [889] = 889, + [890] = 245, + [891] = 257, + [892] = 233, + [893] = 873, + [894] = 889, + [895] = 889, + [896] = 256, + [897] = 255, + [898] = 257, + [899] = 256, + [900] = 251, + [901] = 889, + [902] = 877, + [903] = 846, + [904] = 872, + [905] = 873, + [906] = 251, + [907] = 889, + [908] = 241, + [909] = 889, + [910] = 877, + [911] = 889, + [912] = 889, + [913] = 889, + [914] = 889, + [915] = 889, + [916] = 889, + [917] = 889, + [918] = 248, + [919] = 874, + [920] = 249, + [921] = 238, + [922] = 239, + [923] = 240, + [924] = 889, + [925] = 889, + [926] = 889, + [927] = 252, + [928] = 889, + [929] = 252, + [930] = 242, + [931] = 889, + [932] = 889, [933] = 933, - [934] = 435, - [935] = 518, - [936] = 438, - [937] = 937, - [938] = 442, - [939] = 914, - [940] = 445, - [941] = 406, - [942] = 483, - [943] = 405, - [944] = 641, - [945] = 412, - [946] = 425, - [947] = 926, - [948] = 522, - [949] = 928, - [950] = 523, - [951] = 524, - [952] = 525, - [953] = 937, - [954] = 490, - [955] = 489, - [956] = 288, - [957] = 445, - [958] = 641, - [959] = 343, - [960] = 289, - [961] = 637, - [962] = 504, - [963] = 503, - [964] = 505, - [965] = 506, - [966] = 501, - [967] = 442, - [968] = 491, - [969] = 507, - [970] = 508, - [971] = 509, - [972] = 510, - [973] = 511, - [974] = 512, - [975] = 513, - [976] = 341, - [977] = 514, - [978] = 515, - [979] = 522, - [980] = 516, - [981] = 499, - [982] = 487, - [983] = 461, - [984] = 462, - [985] = 448, - [986] = 517, - [987] = 492, - [988] = 518, - [989] = 438, - [990] = 488, - [991] = 523, - [992] = 524, - [993] = 446, - [994] = 494, - [995] = 525, - [996] = 996, - [997] = 997, - [998] = 998, - [999] = 999, - [1000] = 1000, - [1001] = 1001, - [1002] = 1002, - [1003] = 1003, - [1004] = 431, - [1005] = 633, - [1006] = 476, - [1007] = 477, - [1008] = 483, - [1009] = 443, - [1010] = 444, - [1011] = 459, - [1012] = 460, - [1013] = 466, - [1014] = 495, - [1015] = 472, - [1016] = 473, - [1017] = 498, - [1018] = 482, - [1019] = 481, - [1020] = 496, - [1021] = 480, - [1022] = 497, - [1023] = 485, - [1024] = 486, - [1025] = 493, - [1026] = 1026, - [1027] = 1027, - [1028] = 1028, - [1029] = 1029, - [1030] = 1030, - [1031] = 1031, - [1032] = 1032, - [1033] = 1031, - [1034] = 1034, - [1035] = 1035, - [1036] = 1036, - [1037] = 1036, - [1038] = 1026, - [1039] = 1036, - [1040] = 1036, - [1041] = 1036, - [1042] = 1036, - [1043] = 1043, - [1044] = 1044, - [1045] = 1036, - [1046] = 1046, - [1047] = 1036, - [1048] = 1036, + [934] = 245, + [935] = 255, + [936] = 936, + [937] = 889, + [938] = 241, + [939] = 239, + [940] = 240, + [941] = 889, + [942] = 239, + [943] = 943, + [944] = 889, + [945] = 945, + [946] = 248, + [947] = 249, + [948] = 948, + [949] = 255, + [950] = 257, + [951] = 256, + [952] = 251, + [953] = 270, + [954] = 266, + [955] = 256, + [956] = 956, + [957] = 846, + [958] = 251, + [959] = 269, + [960] = 933, + [961] = 264, + [962] = 936, + [963] = 888, + [964] = 872, + [965] = 873, + [966] = 874, + [967] = 255, + [968] = 968, + [969] = 877, + [970] = 877, + [971] = 933, + [972] = 972, + [973] = 239, + [974] = 237, + [975] = 235, + [976] = 976, + [977] = 252, + [978] = 266, + [979] = 979, + [980] = 980, + [981] = 249, + [982] = 982, + [983] = 936, + [984] = 255, + [985] = 234, + [986] = 239, + [987] = 257, + [988] = 256, + [989] = 251, + [990] = 252, + [991] = 991, + [992] = 992, + [993] = 888, + [994] = 252, + [995] = 943, + [996] = 945, + [997] = 846, + [998] = 249, + [999] = 233, + [1000] = 257, + [1001] = 269, + [1002] = 264, + [1003] = 270, + [1004] = 982, + [1005] = 277, + [1006] = 846, + [1007] = 877, + [1008] = 846, + [1009] = 270, + [1010] = 266, + [1011] = 240, + [1012] = 956, + [1013] = 271, + [1014] = 272, + [1015] = 872, + [1016] = 873, + [1017] = 968, + [1018] = 271, + [1019] = 874, + [1020] = 272, + [1021] = 269, + [1022] = 264, + [1023] = 270, + [1024] = 933, + [1025] = 517, + [1026] = 270, + [1027] = 266, + [1028] = 936, + [1029] = 888, + [1030] = 979, + [1031] = 980, + [1032] = 976, + [1033] = 238, + [1034] = 846, + [1035] = 233, + [1036] = 249, + [1037] = 239, + [1038] = 241, + [1039] = 872, + [1040] = 873, + [1041] = 992, + [1042] = 874, + [1043] = 991, + [1044] = 269, + [1045] = 264, + [1046] = 269, + [1047] = 264, + [1048] = 237, [1049] = 249, - [1050] = 1036, - [1051] = 1036, - [1052] = 1036, - [1053] = 1036, - [1054] = 1036, - [1055] = 1036, - [1056] = 1056, - [1057] = 1036, - [1058] = 1036, - [1059] = 1036, - [1060] = 1036, - [1061] = 1036, - [1062] = 1036, - [1063] = 1063, - [1064] = 1036, - [1065] = 1036, - [1066] = 1036, - [1067] = 1036, - [1068] = 1034, - [1069] = 1069, - [1070] = 1070, - [1071] = 1036, - [1072] = 1036, - [1073] = 1036, - [1074] = 1074, - [1075] = 1036, - [1076] = 1076, - [1077] = 1036, - [1078] = 1036, - [1079] = 1036, - [1080] = 1036, - [1081] = 1036, - [1082] = 1082, - [1083] = 1036, - [1084] = 1036, - [1085] = 1036, - [1086] = 1036, - [1087] = 1027, - [1088] = 1063, - [1089] = 253, - [1090] = 1090, - [1091] = 1091, - [1092] = 249, - [1093] = 1076, - [1094] = 1043, - [1095] = 1082, - [1096] = 1096, + [1050] = 234, + [1051] = 972, + [1052] = 948, + [1053] = 1053, + [1054] = 245, + [1055] = 266, + [1056] = 235, + [1057] = 277, + [1058] = 877, + [1059] = 1059, + [1060] = 288, + [1061] = 933, + [1062] = 251, + [1063] = 277, + [1064] = 242, + [1065] = 238, + [1066] = 290, + [1067] = 872, + [1068] = 291, + [1069] = 936, + [1070] = 293, + [1071] = 873, + [1072] = 294, + [1073] = 271, + [1074] = 239, + [1075] = 888, + [1076] = 272, + [1077] = 271, + [1078] = 1078, + [1079] = 1079, + [1080] = 877, + [1081] = 292, + [1082] = 872, + [1083] = 271, + [1084] = 1084, + [1085] = 1085, + [1086] = 873, + [1087] = 272, + [1088] = 277, + [1089] = 279, + [1090] = 874, + [1091] = 237, + [1092] = 255, + [1093] = 1093, + [1094] = 1094, + [1095] = 1084, + [1096] = 1059, [1097] = 1097, - [1098] = 1098, - [1099] = 1099, - [1100] = 1069, - [1101] = 251, - [1102] = 1046, - [1103] = 250, - [1104] = 1035, - [1105] = 1044, - [1106] = 249, - [1107] = 252, - [1108] = 252, - [1109] = 1098, - [1110] = 256, - [1111] = 250, - [1112] = 1099, - [1113] = 1113, - [1114] = 250, + [1098] = 284, + [1099] = 234, + [1100] = 235, + [1101] = 288, + [1102] = 1102, + [1103] = 284, + [1104] = 1104, + [1105] = 255, + [1106] = 289, + [1107] = 257, + [1108] = 257, + [1109] = 874, + [1110] = 1053, + [1111] = 933, + [1112] = 936, + [1113] = 256, + [1114] = 248, [1115] = 1115, - [1116] = 253, - [1117] = 249, + [1116] = 877, + [1117] = 872, [1118] = 249, - [1119] = 253, - [1120] = 1097, - [1121] = 1121, - [1122] = 1090, - [1123] = 259, - [1124] = 1091, - [1125] = 258, - [1126] = 252, - [1127] = 1096, - [1128] = 251, - [1129] = 251, - [1130] = 1130, - [1131] = 250, - [1132] = 1132, - [1133] = 258, - [1134] = 1134, - [1135] = 256, - [1136] = 259, - [1137] = 257, + [1119] = 251, + [1120] = 272, + [1121] = 290, + [1122] = 1122, + [1123] = 291, + [1124] = 240, + [1125] = 278, + [1126] = 292, + [1127] = 1127, + [1128] = 256, + [1129] = 888, + [1130] = 245, + [1131] = 293, + [1132] = 294, + [1133] = 277, + [1134] = 874, + [1135] = 846, + [1136] = 1136, + [1137] = 279, [1138] = 1138, - [1139] = 1139, - [1140] = 253, - [1141] = 258, - [1142] = 256, - [1143] = 259, - [1144] = 1144, - [1145] = 1113, - [1146] = 1146, - [1147] = 252, - [1148] = 251, - [1149] = 250, - [1150] = 262, - [1151] = 264, - [1152] = 1097, - [1153] = 1098, - [1154] = 253, - [1155] = 1090, - [1156] = 1091, - [1157] = 1096, - [1158] = 252, - [1159] = 251, - [1160] = 1113, - [1161] = 258, - [1162] = 269, - [1163] = 1098, - [1164] = 1146, - [1165] = 268, - [1166] = 1166, - [1167] = 1113, - [1168] = 1138, - [1169] = 1139, - [1170] = 1166, - [1171] = 1130, - [1172] = 1166, - [1173] = 1146, - [1174] = 1166, - [1175] = 1166, - [1176] = 1176, - [1177] = 1166, - [1178] = 257, - [1179] = 262, - [1180] = 1166, - [1181] = 1166, - [1182] = 259, - [1183] = 1166, - [1184] = 1090, - [1185] = 1091, - [1186] = 257, - [1187] = 1166, - [1188] = 256, - [1189] = 1166, - [1190] = 259, - [1191] = 1166, - [1192] = 1096, - [1193] = 264, - [1194] = 1166, - [1195] = 264, - [1196] = 1166, - [1197] = 268, - [1198] = 249, - [1199] = 1199, - [1200] = 1166, - [1201] = 1166, - [1202] = 1166, - [1203] = 1144, - [1204] = 1204, - [1205] = 1166, - [1206] = 271, - [1207] = 266, - [1208] = 1166, - [1209] = 1132, - [1210] = 1134, - [1211] = 270, - [1212] = 1212, - [1213] = 253, - [1214] = 1097, - [1215] = 269, - [1216] = 1216, - [1217] = 282, - [1218] = 1138, - [1219] = 1166, - [1220] = 258, - [1221] = 271, - [1222] = 1139, - [1223] = 266, - [1224] = 1166, - [1225] = 270, - [1226] = 256, - [1227] = 257, - [1228] = 1130, - [1229] = 1166, - [1230] = 1230, - [1231] = 270, - [1232] = 269, - [1233] = 252, - [1234] = 1204, - [1235] = 1235, - [1236] = 1199, - [1237] = 1212, - [1238] = 1138, - [1239] = 1139, - [1240] = 1130, - [1241] = 288, - [1242] = 289, - [1243] = 1146, - [1244] = 1146, - [1245] = 1176, - [1246] = 282, + [1139] = 278, + [1140] = 252, + [1141] = 241, + [1142] = 1142, + [1143] = 312, + [1144] = 873, + [1145] = 255, + [1146] = 335, + [1147] = 279, + [1148] = 278, + [1149] = 284, + [1150] = 1150, + [1151] = 1151, + [1152] = 279, + [1153] = 1085, + [1154] = 252, + [1155] = 1155, + [1156] = 248, + [1157] = 340, + [1158] = 323, + [1159] = 324, + [1160] = 1160, + [1161] = 288, + [1162] = 245, + [1163] = 241, + [1164] = 240, + [1165] = 330, + [1166] = 252, + [1167] = 290, + [1168] = 291, + [1169] = 257, + [1170] = 256, + [1171] = 251, + [1172] = 255, + [1173] = 1155, + [1174] = 1174, + [1175] = 339, + [1176] = 284, + [1177] = 1177, + [1178] = 1155, + [1179] = 278, + [1180] = 933, + [1181] = 936, + [1182] = 1155, + [1183] = 888, + [1184] = 269, + [1185] = 264, + [1186] = 312, + [1187] = 293, + [1188] = 294, + [1189] = 252, + [1190] = 289, + [1191] = 255, + [1192] = 257, + [1193] = 256, + [1194] = 284, + [1195] = 251, + [1196] = 255, + [1197] = 257, + [1198] = 1136, + [1199] = 256, + [1200] = 251, + [1201] = 292, + [1202] = 270, + [1203] = 266, + [1204] = 252, + [1205] = 933, + [1206] = 936, + [1207] = 888, + [1208] = 1102, + [1209] = 289, + [1210] = 242, + [1211] = 312, + [1212] = 257, + [1213] = 256, + [1214] = 251, + [1215] = 239, + [1216] = 270, + [1217] = 266, + [1218] = 1174, + [1219] = 846, + [1220] = 1160, + [1221] = 288, + [1222] = 249, + [1223] = 269, + [1224] = 933, + [1225] = 264, + [1226] = 936, + [1227] = 888, + [1228] = 872, + [1229] = 873, + [1230] = 874, + [1231] = 877, + [1232] = 877, + [1233] = 1155, + [1234] = 1160, + [1235] = 1155, + [1236] = 1155, + [1237] = 1122, + [1238] = 1155, + [1239] = 1155, + [1240] = 1155, + [1241] = 1241, + [1242] = 1155, + [1243] = 1155, + [1244] = 1155, + [1245] = 1245, + [1246] = 1155, [1247] = 1247, - [1248] = 1248, - [1249] = 271, - [1250] = 266, - [1251] = 270, - [1252] = 249, - [1253] = 257, - [1254] = 269, - [1255] = 251, - [1256] = 250, - [1257] = 268, - [1258] = 282, - [1259] = 288, - [1260] = 289, - [1261] = 257, - [1262] = 271, - [1263] = 266, - [1264] = 1204, - [1265] = 270, - [1266] = 1199, - [1267] = 269, - [1268] = 1212, - [1269] = 282, - [1270] = 268, - [1271] = 1271, - [1272] = 1272, - [1273] = 268, - [1274] = 293, - [1275] = 294, - [1276] = 271, - [1277] = 1277, - [1278] = 266, - [1279] = 1113, + [1248] = 1155, + [1249] = 1249, + [1250] = 1250, + [1251] = 1155, + [1252] = 1155, + [1253] = 1155, + [1254] = 290, + [1255] = 291, + [1256] = 1155, + [1257] = 1155, + [1258] = 1104, + [1259] = 1155, + [1260] = 292, + [1261] = 1093, + [1262] = 1094, + [1263] = 1097, + [1264] = 1155, + [1265] = 257, + [1266] = 1266, + [1267] = 312, + [1268] = 290, + [1269] = 291, + [1270] = 256, + [1271] = 251, + [1272] = 1115, + [1273] = 292, + [1274] = 1127, + [1275] = 278, + [1276] = 1276, + [1277] = 1138, + [1278] = 293, + [1279] = 1142, [1280] = 293, [1281] = 294, - [1282] = 1282, - [1283] = 1283, - [1284] = 1284, - [1285] = 1113, - [1286] = 1216, - [1287] = 270, - [1288] = 1288, - [1289] = 1247, - [1290] = 288, - [1291] = 289, - [1292] = 1212, - [1293] = 331, - [1294] = 1113, - [1295] = 271, - [1296] = 288, - [1297] = 293, - [1298] = 294, - [1299] = 252, - [1300] = 251, - [1301] = 293, - [1302] = 1271, - [1303] = 250, - [1304] = 282, - [1305] = 1230, - [1306] = 258, - [1307] = 289, - [1308] = 294, - [1309] = 256, - [1310] = 1272, - [1311] = 288, - [1312] = 289, - [1313] = 266, - [1314] = 1277, - [1315] = 259, - [1316] = 249, - [1317] = 1204, - [1318] = 282, - [1319] = 293, - [1320] = 294, - [1321] = 1282, - [1322] = 1283, - [1323] = 1284, - [1324] = 257, - [1325] = 310, - [1326] = 1248, - [1327] = 253, - [1328] = 1113, - [1329] = 311, - [1330] = 1113, - [1331] = 312, - [1332] = 1146, - [1333] = 1138, - [1334] = 310, - [1335] = 1138, - [1336] = 1139, - [1337] = 1139, - [1338] = 1146, - [1339] = 311, - [1340] = 1235, - [1341] = 1199, - [1342] = 1130, - [1343] = 312, - [1344] = 1130, - [1345] = 269, - [1346] = 1139, - [1347] = 357, - [1348] = 311, - [1349] = 289, - [1350] = 1204, - [1351] = 1212, - [1352] = 253, - [1353] = 293, - [1354] = 294, - [1355] = 1138, - [1356] = 333, + [1282] = 1079, + [1283] = 294, + [1284] = 1078, + [1285] = 288, + [1286] = 279, + [1287] = 1287, + [1288] = 264, + [1289] = 323, + [1290] = 270, + [1291] = 270, + [1292] = 877, + [1293] = 266, + [1294] = 266, + [1295] = 269, + [1296] = 277, + [1297] = 1245, + [1298] = 1287, + [1299] = 1247, + [1300] = 312, + [1301] = 1249, + [1302] = 1250, + [1303] = 257, + [1304] = 333, + [1305] = 269, + [1306] = 271, + [1307] = 272, + [1308] = 264, + [1309] = 278, + [1310] = 1310, + [1311] = 330, + [1312] = 256, + [1313] = 251, + [1314] = 269, + [1315] = 252, + [1316] = 264, + [1317] = 255, + [1318] = 252, + [1319] = 257, + [1320] = 264, + [1321] = 256, + [1322] = 255, + [1323] = 1323, + [1324] = 312, + [1325] = 373, + [1326] = 249, + [1327] = 251, + [1328] = 846, + [1329] = 312, + [1330] = 269, + [1331] = 279, + [1332] = 374, + [1333] = 270, + [1334] = 266, + [1335] = 323, + [1336] = 324, + [1337] = 375, + [1338] = 335, + [1339] = 376, + [1340] = 277, + [1341] = 330, + [1342] = 324, + [1343] = 333, + [1344] = 271, + [1345] = 270, + [1346] = 339, + [1347] = 266, + [1348] = 272, + [1349] = 333, + [1350] = 872, + [1351] = 873, + [1352] = 340, + [1353] = 874, + [1354] = 334, + [1355] = 339, + [1356] = 1241, [1357] = 270, - [1358] = 252, - [1359] = 271, - [1360] = 1212, - [1361] = 266, - [1362] = 310, - [1363] = 257, - [1364] = 1364, - [1365] = 1365, - [1366] = 1366, - [1367] = 1367, - [1368] = 311, - [1369] = 343, - [1370] = 1146, - [1371] = 269, - [1372] = 1199, - [1373] = 271, - [1374] = 258, - [1375] = 311, - [1376] = 1113, - [1377] = 270, + [1358] = 933, + [1359] = 936, + [1360] = 888, + [1361] = 330, + [1362] = 1276, + [1363] = 266, + [1364] = 335, + [1365] = 1266, + [1366] = 1150, + [1367] = 1151, + [1368] = 334, + [1369] = 269, + [1370] = 264, + [1371] = 1371, + [1372] = 312, + [1373] = 340, + [1374] = 1374, + [1375] = 407, + [1376] = 1376, + [1377] = 1377, [1378] = 1378, - [1379] = 312, - [1380] = 359, - [1381] = 269, + [1379] = 1379, + [1380] = 1380, + [1381] = 341, [1382] = 1382, - [1383] = 1204, - [1384] = 335, - [1385] = 339, - [1386] = 1386, - [1387] = 341, - [1388] = 355, - [1389] = 1389, - [1390] = 333, - [1391] = 1199, - [1392] = 282, - [1393] = 262, - [1394] = 1366, - [1395] = 353, - [1396] = 353, - [1397] = 364, - [1398] = 1398, - [1399] = 1138, - [1400] = 346, - [1401] = 346, - [1402] = 269, - [1403] = 335, - [1404] = 339, - [1405] = 312, - [1406] = 341, - [1407] = 355, - [1408] = 1146, - [1409] = 1139, - [1410] = 256, - [1411] = 312, - [1412] = 1412, - [1413] = 1130, - [1414] = 1414, - [1415] = 1130, - [1416] = 1416, - [1417] = 268, - [1418] = 310, - [1419] = 259, - [1420] = 1138, - [1421] = 1139, - [1422] = 1422, - [1423] = 266, - [1424] = 251, - [1425] = 1367, - [1426] = 271, - [1427] = 1427, - [1428] = 359, - [1429] = 266, - [1430] = 343, - [1431] = 1288, - [1432] = 1130, - [1433] = 1146, - [1434] = 270, - [1435] = 250, - [1436] = 1113, - [1437] = 310, - [1438] = 1438, - [1439] = 264, - [1440] = 288, - [1441] = 1441, - [1442] = 1212, + [1383] = 1374, + [1384] = 374, + [1385] = 410, + [1386] = 388, + [1387] = 333, + [1388] = 375, + [1389] = 376, + [1390] = 1390, + [1391] = 1391, + [1392] = 1392, + [1393] = 1393, + [1394] = 342, + [1395] = 343, + [1396] = 344, + [1397] = 1397, + [1398] = 345, + [1399] = 1399, + [1400] = 1376, + [1401] = 1377, + [1402] = 1378, + [1403] = 1379, + [1404] = 1380, + [1405] = 1382, + [1406] = 346, + [1407] = 1374, + [1408] = 330, + [1409] = 340, + [1410] = 323, + [1411] = 324, + [1412] = 347, + [1413] = 312, + [1414] = 348, + [1415] = 349, + [1416] = 279, + [1417] = 350, + [1418] = 351, + [1419] = 386, + [1420] = 270, + [1421] = 266, + [1422] = 352, + [1423] = 334, + [1424] = 353, + [1425] = 284, + [1426] = 354, + [1427] = 355, + [1428] = 278, + [1429] = 339, + [1430] = 391, + [1431] = 392, + [1432] = 1432, + [1433] = 393, + [1434] = 357, + [1435] = 399, + [1436] = 400, + [1437] = 277, + [1438] = 255, + [1439] = 403, + [1440] = 1440, + [1441] = 271, + [1442] = 404, [1443] = 1443, - [1444] = 1427, + [1444] = 272, [1445] = 1445, - [1446] = 1446, - [1447] = 288, - [1448] = 266, - [1449] = 262, - [1450] = 1446, - [1451] = 1365, - [1452] = 1414, - [1453] = 1446, - [1454] = 282, - [1455] = 271, - [1456] = 1446, - [1457] = 266, - [1458] = 268, - [1459] = 1446, - [1460] = 1460, - [1461] = 1113, - [1462] = 1446, - [1463] = 1463, - [1464] = 1446, - [1465] = 270, - [1466] = 1466, - [1467] = 1446, - [1468] = 270, - [1469] = 1446, - [1470] = 269, - [1471] = 1446, - [1472] = 269, - [1473] = 1446, - [1474] = 1474, - [1475] = 1412, - [1476] = 1476, - [1477] = 1446, - [1478] = 359, - [1479] = 293, - [1480] = 1446, - [1481] = 294, - [1482] = 1138, - [1483] = 335, - [1484] = 339, - [1485] = 289, - [1486] = 1438, - [1487] = 1204, - [1488] = 288, - [1489] = 341, - [1490] = 1146, - [1491] = 1199, - [1492] = 1212, - [1493] = 1139, - [1494] = 335, - [1495] = 339, - [1496] = 405, - [1497] = 266, - [1498] = 271, - [1499] = 412, - [1500] = 364, - [1501] = 270, - [1502] = 269, - [1503] = 289, - [1504] = 271, - [1505] = 355, - [1506] = 425, - [1507] = 293, - [1508] = 294, - [1509] = 1416, - [1510] = 431, - [1511] = 1422, - [1512] = 311, - [1513] = 1382, - [1514] = 333, - [1515] = 1446, - [1516] = 357, - [1517] = 266, - [1518] = 1518, - [1519] = 341, - [1520] = 312, - [1521] = 1446, - [1522] = 343, - [1523] = 355, - [1524] = 346, - [1525] = 270, - [1526] = 310, - [1527] = 335, - [1528] = 339, - [1529] = 1204, - [1530] = 1446, - [1531] = 343, - [1532] = 1199, - [1533] = 269, - [1534] = 1534, - [1535] = 1212, - [1536] = 1138, - [1537] = 355, - [1538] = 1139, - [1539] = 1130, - [1540] = 257, - [1541] = 271, - [1542] = 364, - [1543] = 1389, - [1544] = 1386, - [1545] = 266, - [1546] = 341, - [1547] = 1441, - [1548] = 1204, - [1549] = 1534, - [1550] = 1130, - [1551] = 1199, - [1552] = 1552, - [1553] = 288, - [1554] = 289, - [1555] = 258, - [1556] = 270, - [1557] = 343, - [1558] = 269, - [1559] = 1146, - [1560] = 403, - [1561] = 1146, - [1562] = 1398, - [1563] = 359, - [1564] = 353, - [1565] = 1446, - [1566] = 1534, - [1567] = 264, - [1568] = 256, - [1569] = 293, - [1570] = 364, - [1571] = 333, - [1572] = 294, - [1573] = 259, - [1574] = 346, - [1575] = 268, - [1576] = 1364, - [1577] = 1446, - [1578] = 435, - [1579] = 359, - [1580] = 1378, - [1581] = 1446, - [1582] = 1582, - [1583] = 1446, - [1584] = 353, - [1585] = 353, - [1586] = 1446, - [1587] = 333, - [1588] = 1113, - [1589] = 268, - [1590] = 346, - [1591] = 357, - [1592] = 1592, - [1593] = 1446, - [1594] = 1552, - [1595] = 268, - [1596] = 406, - [1597] = 364, - [1598] = 1113, + [1446] = 406, + [1447] = 277, + [1448] = 335, + [1449] = 1449, + [1450] = 271, + [1451] = 407, + [1452] = 272, + [1453] = 341, + [1454] = 359, + [1455] = 1455, + [1456] = 360, + [1457] = 361, + [1458] = 362, + [1459] = 363, + [1460] = 364, + [1461] = 330, + [1462] = 1462, + [1463] = 365, + [1464] = 366, + [1465] = 1465, + [1466] = 270, + [1467] = 266, + [1468] = 367, + [1469] = 333, + [1470] = 368, + [1471] = 382, + [1472] = 369, + [1473] = 370, + [1474] = 371, + [1475] = 1390, + [1476] = 387, + [1477] = 1477, + [1478] = 410, + [1479] = 1479, + [1480] = 1480, + [1481] = 1391, + [1482] = 1392, + [1483] = 1393, + [1484] = 872, + [1485] = 873, + [1486] = 874, + [1487] = 383, + [1488] = 933, + [1489] = 356, + [1490] = 936, + [1491] = 888, + [1492] = 339, + [1493] = 277, + [1494] = 399, + [1495] = 400, + [1496] = 271, + [1497] = 272, + [1498] = 340, + [1499] = 373, + [1500] = 284, + [1501] = 323, + [1502] = 324, + [1503] = 374, + [1504] = 1504, + [1505] = 1310, + [1506] = 330, + [1507] = 375, + [1508] = 339, + [1509] = 376, + [1510] = 269, + [1511] = 264, + [1512] = 1512, + [1513] = 1513, + [1514] = 1390, + [1515] = 1391, + [1516] = 1516, + [1517] = 1392, + [1518] = 1393, + [1519] = 288, + [1520] = 1520, + [1521] = 1397, + [1522] = 1522, + [1523] = 389, + [1524] = 1524, + [1525] = 1525, + [1526] = 1136, + [1527] = 1527, + [1528] = 1399, + [1529] = 1376, + [1530] = 1377, + [1531] = 1378, + [1532] = 1102, + [1533] = 1379, + [1534] = 1380, + [1535] = 1382, + [1536] = 1536, + [1537] = 1374, + [1538] = 1538, + [1539] = 1539, + [1540] = 1540, + [1541] = 390, + [1542] = 1390, + [1543] = 1391, + [1544] = 1392, + [1545] = 1393, + [1546] = 1397, + [1547] = 1399, + [1548] = 1376, + [1549] = 1377, + [1550] = 1378, + [1551] = 1379, + [1552] = 1380, + [1553] = 1382, + [1554] = 1374, + [1555] = 1390, + [1556] = 1391, + [1557] = 1392, + [1558] = 1393, + [1559] = 1397, + [1560] = 1399, + [1561] = 1376, + [1562] = 1377, + [1563] = 1378, + [1564] = 1379, + [1565] = 1380, + [1566] = 1382, + [1567] = 1374, + [1568] = 1568, + [1569] = 1569, + [1570] = 1570, + [1571] = 1390, + [1572] = 1391, + [1573] = 1392, + [1574] = 1393, + [1575] = 1397, + [1576] = 1399, + [1577] = 1376, + [1578] = 1377, + [1579] = 1378, + [1580] = 1379, + [1581] = 1380, + [1582] = 1382, + [1583] = 1374, + [1584] = 1390, + [1585] = 1391, + [1586] = 1392, + [1587] = 1393, + [1588] = 1397, + [1589] = 1399, + [1590] = 1376, + [1591] = 1377, + [1592] = 1378, + [1593] = 1379, + [1594] = 1380, + [1595] = 1382, + [1596] = 393, + [1597] = 1597, + [1598] = 1598, [1599] = 1599, - [1600] = 310, - [1601] = 1460, - [1602] = 293, - [1603] = 311, - [1604] = 289, - [1605] = 1582, - [1606] = 435, - [1607] = 312, - [1608] = 1130, - [1609] = 312, - [1610] = 1199, - [1611] = 403, - [1612] = 522, - [1613] = 523, - [1614] = 1474, - [1615] = 294, - [1616] = 293, - [1617] = 1476, - [1618] = 364, - [1619] = 1204, - [1620] = 1364, - [1621] = 1199, - [1622] = 431, - [1623] = 1212, - [1624] = 294, - [1625] = 1625, - [1626] = 364, - [1627] = 1146, - [1628] = 288, - [1629] = 1130, - [1630] = 405, - [1631] = 1412, - [1632] = 1139, - [1633] = 270, - [1634] = 1378, - [1635] = 1212, - [1636] = 405, - [1637] = 406, - [1638] = 1138, - [1639] = 1386, - [1640] = 288, - [1641] = 1441, - [1642] = 310, - [1643] = 412, - [1644] = 311, - [1645] = 1592, - [1646] = 425, - [1647] = 1443, - [1648] = 288, - [1649] = 1445, - [1650] = 282, - [1651] = 364, - [1652] = 271, - [1653] = 341, - [1654] = 1599, - [1655] = 403, - [1656] = 289, - [1657] = 1463, - [1658] = 403, - [1659] = 268, - [1660] = 406, - [1661] = 288, - [1662] = 311, - [1663] = 266, - [1664] = 293, - [1665] = 293, - [1666] = 1666, - [1667] = 270, - [1668] = 294, - [1669] = 268, - [1670] = 289, - [1671] = 1466, - [1672] = 269, - [1673] = 1139, - [1674] = 289, - [1675] = 415, - [1676] = 1676, - [1677] = 312, - [1678] = 269, - [1679] = 266, - [1680] = 310, - [1681] = 1382, - [1682] = 294, - [1683] = 435, - [1684] = 524, - [1685] = 1138, - [1686] = 412, - [1687] = 359, - [1688] = 1204, - [1689] = 415, - [1690] = 271, - [1691] = 1691, - [1692] = 425, - [1693] = 289, - [1694] = 431, - [1695] = 293, - [1696] = 294, - [1697] = 353, - [1698] = 525, - [1699] = 288, - [1700] = 1700, - [1701] = 477, - [1702] = 364, - [1703] = 522, - [1704] = 1666, - [1705] = 1705, - [1706] = 1706, - [1707] = 1707, - [1708] = 1708, - [1709] = 1709, - [1710] = 1710, - [1711] = 1711, - [1712] = 1712, - [1713] = 1713, + [1600] = 1600, + [1601] = 1390, + [1602] = 1391, + [1603] = 1392, + [1604] = 1390, + [1605] = 1391, + [1606] = 1392, + [1607] = 1393, + [1608] = 1397, + [1609] = 1399, + [1610] = 1376, + [1611] = 1377, + [1612] = 1378, + [1613] = 1379, + [1614] = 1380, + [1615] = 1382, + [1616] = 1374, + [1617] = 1323, + [1618] = 1393, + [1619] = 1390, + [1620] = 1391, + [1621] = 1392, + [1622] = 1393, + [1623] = 1397, + [1624] = 1399, + [1625] = 1376, + [1626] = 1377, + [1627] = 1378, + [1628] = 1379, + [1629] = 1380, + [1630] = 1382, + [1631] = 1374, + [1632] = 1632, + [1633] = 373, + [1634] = 1397, + [1635] = 1390, + [1636] = 1391, + [1637] = 1392, + [1638] = 1393, + [1639] = 1397, + [1640] = 1399, + [1641] = 1376, + [1642] = 1377, + [1643] = 1378, + [1644] = 1379, + [1645] = 1380, + [1646] = 1382, + [1647] = 1374, + [1648] = 1648, + [1649] = 1649, + [1650] = 1650, + [1651] = 1399, + [1652] = 1390, + [1653] = 1391, + [1654] = 1392, + [1655] = 1393, + [1656] = 1397, + [1657] = 1399, + [1658] = 1376, + [1659] = 1377, + [1660] = 1378, + [1661] = 1379, + [1662] = 1380, + [1663] = 1382, + [1664] = 1374, + [1665] = 1665, + [1666] = 1376, + [1667] = 1667, + [1668] = 1377, + [1669] = 1390, + [1670] = 1391, + [1671] = 1392, + [1672] = 1393, + [1673] = 1397, + [1674] = 1399, + [1675] = 1376, + [1676] = 1377, + [1677] = 1378, + [1678] = 1379, + [1679] = 1380, + [1680] = 1382, + [1681] = 1374, + [1682] = 1378, + [1683] = 374, + [1684] = 1684, + [1685] = 1379, + [1686] = 1390, + [1687] = 1391, + [1688] = 1392, + [1689] = 1393, + [1690] = 1397, + [1691] = 1399, + [1692] = 1376, + [1693] = 1377, + [1694] = 1378, + [1695] = 1379, + [1696] = 1380, + [1697] = 1382, + [1698] = 1374, + [1699] = 375, + [1700] = 1380, + [1701] = 1390, + [1702] = 1391, + [1703] = 1392, + [1704] = 1393, + [1705] = 1397, + [1706] = 1399, + [1707] = 1376, + [1708] = 1377, + [1709] = 1378, + [1710] = 1379, + [1711] = 1380, + [1712] = 1382, + [1713] = 1374, [1714] = 1714, [1715] = 1715, - [1716] = 1716, - [1717] = 1717, - [1718] = 523, - [1719] = 1676, - [1720] = 524, - [1721] = 525, - [1722] = 1705, - [1723] = 1706, - [1724] = 1707, - [1725] = 1708, - [1726] = 1709, - [1727] = 1710, - [1728] = 1711, - [1729] = 1712, - [1730] = 1713, - [1731] = 1714, - [1732] = 1715, - [1733] = 1716, - [1734] = 1717, - [1735] = 403, - [1736] = 364, - [1737] = 359, - [1738] = 1364, - [1739] = 353, - [1740] = 1378, - [1741] = 1386, - [1742] = 1441, - [1743] = 271, - [1744] = 1412, - [1745] = 1705, - [1746] = 1706, - [1747] = 1707, - [1748] = 1708, - [1749] = 1709, - [1750] = 1710, - [1751] = 1711, - [1752] = 1712, - [1753] = 1382, - [1754] = 1713, - [1755] = 1714, - [1756] = 1715, - [1757] = 1716, - [1758] = 1717, - [1759] = 293, - [1760] = 294, - [1761] = 1204, - [1762] = 1199, - [1763] = 1212, - [1764] = 1625, - [1765] = 1765, - [1766] = 1691, - [1767] = 1767, - [1768] = 1768, - [1769] = 1769, - [1770] = 1770, - [1771] = 1771, - [1772] = 1772, - [1773] = 1773, - [1774] = 1774, - [1775] = 1775, - [1776] = 1776, - [1777] = 1777, - [1778] = 1778, - [1779] = 1779, - [1780] = 1780, - [1781] = 1781, - [1782] = 1782, - [1783] = 1783, - [1784] = 1784, - [1785] = 1785, - [1786] = 1786, - [1787] = 1787, - [1788] = 1788, - [1789] = 1789, - [1790] = 1790, - [1791] = 1791, - [1792] = 522, - [1793] = 523, - [1794] = 1113, - [1795] = 311, - [1796] = 524, - [1797] = 312, - [1798] = 525, - [1799] = 1799, - [1800] = 415, - [1801] = 288, - [1802] = 289, - [1803] = 341, - [1804] = 1700, - [1805] = 522, - [1806] = 523, - [1807] = 524, - [1808] = 525, - [1809] = 445, - [1810] = 415, - [1811] = 503, - [1812] = 1146, - [1813] = 442, - [1814] = 461, - [1815] = 462, - [1816] = 448, - [1817] = 517, - [1818] = 481, - [1819] = 518, - [1820] = 438, - [1821] = 482, - [1822] = 446, - [1823] = 485, - [1824] = 486, - [1825] = 487, - [1826] = 488, - [1827] = 489, - [1828] = 490, - [1829] = 491, - [1830] = 492, - [1831] = 493, - [1832] = 494, - [1833] = 495, - [1834] = 496, - [1835] = 497, - [1836] = 498, - [1837] = 476, - [1838] = 483, - [1839] = 501, - [1840] = 443, - [1841] = 444, - [1842] = 459, - [1843] = 460, - [1844] = 466, - [1845] = 472, - [1846] = 473, - [1847] = 504, - [1848] = 505, - [1849] = 506, - [1850] = 507, - [1851] = 508, - [1852] = 509, - [1853] = 510, - [1854] = 511, - [1855] = 512, - [1856] = 513, - [1857] = 514, - [1858] = 515, - [1859] = 516, - [1860] = 480, - [1861] = 499, - [1862] = 522, - [1863] = 523, - [1864] = 524, - [1865] = 525, - [1866] = 415, - [1867] = 1867, - [1868] = 1412, - [1869] = 1382, - [1870] = 406, - [1871] = 448, - [1872] = 503, - [1873] = 518, - [1874] = 438, - [1875] = 442, - [1876] = 445, - [1877] = 446, - [1878] = 461, - [1879] = 462, - [1880] = 476, - [1881] = 477, - [1882] = 483, - [1883] = 517, - [1884] = 443, - [1885] = 444, - [1886] = 459, - [1887] = 460, - [1888] = 466, - [1889] = 472, - [1890] = 473, - [1891] = 480, - [1892] = 288, - [1893] = 289, - [1894] = 435, - [1895] = 406, - [1896] = 1896, - [1897] = 405, - [1898] = 412, - [1899] = 425, - [1900] = 1705, - [1901] = 1706, - [1902] = 1707, - [1903] = 1708, - [1904] = 1709, - [1905] = 341, - [1906] = 1710, - [1907] = 1711, - [1908] = 343, - [1909] = 1712, - [1910] = 1713, - [1911] = 1714, - [1912] = 1715, - [1913] = 1716, - [1914] = 1717, - [1915] = 403, - [1916] = 435, - [1917] = 311, - [1918] = 312, - [1919] = 1919, - [1920] = 1920, - [1921] = 310, - [1922] = 406, - [1923] = 405, - [1924] = 288, - [1925] = 412, - [1926] = 425, - [1927] = 289, - [1928] = 431, - [1929] = 293, - [1930] = 294, - [1931] = 341, - [1932] = 1932, - [1933] = 1933, + [1716] = 1390, + [1717] = 1391, + [1718] = 1399, + [1719] = 1393, + [1720] = 1397, + [1721] = 1399, + [1722] = 1376, + [1723] = 1377, + [1724] = 1378, + [1725] = 1379, + [1726] = 1380, + [1727] = 1382, + [1728] = 1374, + [1729] = 1382, + [1730] = 1730, + [1731] = 1731, + [1732] = 1374, + [1733] = 1390, + [1734] = 1391, + [1735] = 1392, + [1736] = 1393, + [1737] = 1397, + [1738] = 1399, + [1739] = 1376, + [1740] = 1377, + [1741] = 1378, + [1742] = 1379, + [1743] = 1380, + [1744] = 1382, + [1745] = 1374, + [1746] = 376, + [1747] = 380, + [1748] = 1390, + [1749] = 1391, + [1750] = 1392, + [1751] = 1393, + [1752] = 1397, + [1753] = 1399, + [1754] = 1376, + [1755] = 1377, + [1756] = 1378, + [1757] = 1379, + [1758] = 1380, + [1759] = 1382, + [1760] = 1374, + [1761] = 334, + [1762] = 403, + [1763] = 1390, + [1764] = 1391, + [1765] = 1392, + [1766] = 1393, + [1767] = 1397, + [1768] = 1399, + [1769] = 1376, + [1770] = 1377, + [1771] = 1378, + [1772] = 1379, + [1773] = 1380, + [1774] = 1382, + [1775] = 1374, + [1776] = 1397, + [1777] = 404, + [1778] = 1390, + [1779] = 1391, + [1780] = 1392, + [1781] = 1393, + [1782] = 1397, + [1783] = 1399, + [1784] = 1376, + [1785] = 1377, + [1786] = 1378, + [1787] = 1379, + [1788] = 1380, + [1789] = 1382, + [1790] = 1374, + [1791] = 383, + [1792] = 415, + [1793] = 1390, + [1794] = 1391, + [1795] = 1392, + [1796] = 1393, + [1797] = 1397, + [1798] = 1399, + [1799] = 1376, + [1800] = 1377, + [1801] = 1378, + [1802] = 1379, + [1803] = 1380, + [1804] = 1382, + [1805] = 1374, + [1806] = 1806, + [1807] = 1807, + [1808] = 1390, + [1809] = 1391, + [1810] = 1392, + [1811] = 1393, + [1812] = 1397, + [1813] = 1399, + [1814] = 1376, + [1815] = 1377, + [1816] = 1378, + [1817] = 1379, + [1818] = 1380, + [1819] = 1382, + [1820] = 1374, + [1821] = 271, + [1822] = 1390, + [1823] = 1391, + [1824] = 1392, + [1825] = 1393, + [1826] = 1397, + [1827] = 1399, + [1828] = 1376, + [1829] = 1377, + [1830] = 1378, + [1831] = 1379, + [1832] = 1380, + [1833] = 1382, + [1834] = 1374, + [1835] = 1390, + [1836] = 1391, + [1837] = 1392, + [1838] = 1393, + [1839] = 1397, + [1840] = 1399, + [1841] = 1376, + [1842] = 1377, + [1843] = 1378, + [1844] = 1379, + [1845] = 1380, + [1846] = 1382, + [1847] = 1374, + [1848] = 272, + [1849] = 1849, + [1850] = 1390, + [1851] = 1391, + [1852] = 1392, + [1853] = 1393, + [1854] = 1397, + [1855] = 1399, + [1856] = 1376, + [1857] = 1377, + [1858] = 1378, + [1859] = 1379, + [1860] = 1380, + [1861] = 1382, + [1862] = 1374, + [1863] = 1390, + [1864] = 1391, + [1865] = 1392, + [1866] = 1393, + [1867] = 1397, + [1868] = 1399, + [1869] = 1376, + [1870] = 1377, + [1871] = 1378, + [1872] = 1379, + [1873] = 1380, + [1874] = 1382, + [1875] = 1374, + [1876] = 1390, + [1877] = 1391, + [1878] = 1392, + [1879] = 1393, + [1880] = 1397, + [1881] = 1399, + [1882] = 1376, + [1883] = 1377, + [1884] = 1378, + [1885] = 1379, + [1886] = 1380, + [1887] = 1382, + [1888] = 1374, + [1889] = 1390, + [1890] = 1391, + [1891] = 1392, + [1892] = 1393, + [1893] = 1397, + [1894] = 1399, + [1895] = 1376, + [1896] = 1377, + [1897] = 1378, + [1898] = 1379, + [1899] = 1380, + [1900] = 1382, + [1901] = 1374, + [1902] = 1390, + [1903] = 1391, + [1904] = 1392, + [1905] = 1393, + [1906] = 1397, + [1907] = 1399, + [1908] = 1376, + [1909] = 1377, + [1910] = 1378, + [1911] = 1379, + [1912] = 1380, + [1913] = 1382, + [1914] = 1374, + [1915] = 406, + [1916] = 1390, + [1917] = 1391, + [1918] = 1392, + [1919] = 1393, + [1920] = 1397, + [1921] = 1399, + [1922] = 1376, + [1923] = 1377, + [1924] = 1378, + [1925] = 1379, + [1926] = 1380, + [1927] = 1382, + [1928] = 1374, + [1929] = 277, + [1930] = 1930, + [1931] = 334, + [1932] = 1399, + [1933] = 269, [1934] = 1934, - [1935] = 310, - [1936] = 403, - [1937] = 311, - [1938] = 312, - [1939] = 310, - [1940] = 311, - [1941] = 312, - [1942] = 1138, - [1943] = 1139, - [1944] = 1130, - [1945] = 1204, - [1946] = 1199, - [1947] = 1212, - [1948] = 431, - [1949] = 310, - [1950] = 311, - [1951] = 312, + [1935] = 1935, + [1936] = 1936, + [1937] = 264, + [1938] = 384, + [1939] = 271, + [1940] = 330, + [1941] = 333, + [1942] = 333, + [1943] = 269, + [1944] = 272, + [1945] = 269, + [1946] = 264, + [1947] = 264, + [1948] = 335, + [1949] = 1376, + [1950] = 385, + [1951] = 1951, [1952] = 1952, - [1953] = 1953, - [1954] = 1954, + [1953] = 1371, + [1954] = 373, [1955] = 1955, - [1956] = 403, - [1957] = 431, - [1958] = 288, - [1959] = 289, - [1960] = 1705, - [1961] = 1706, - [1962] = 1707, - [1963] = 1708, - [1964] = 1709, - [1965] = 1710, - [1966] = 1711, - [1967] = 1712, - [1968] = 1713, - [1969] = 1714, - [1970] = 1715, - [1971] = 1716, - [1972] = 1717, - [1973] = 1705, - [1974] = 1706, - [1975] = 1707, - [1976] = 1708, - [1977] = 1709, - [1978] = 1710, - [1979] = 1711, - [1980] = 1712, - [1981] = 1713, - [1982] = 1714, - [1983] = 1715, - [1984] = 1716, - [1985] = 1717, - [1986] = 1705, - [1987] = 1706, - [1988] = 1707, - [1989] = 1708, - [1990] = 1709, - [1991] = 1710, - [1992] = 1711, - [1993] = 1712, - [1994] = 1713, - [1995] = 1714, - [1996] = 1715, - [1997] = 1716, - [1998] = 1717, - [1999] = 1705, - [2000] = 1706, - [2001] = 1707, - [2002] = 1708, - [2003] = 1709, - [2004] = 1710, - [2005] = 1711, - [2006] = 1712, - [2007] = 1713, - [2008] = 1714, - [2009] = 1715, - [2010] = 1716, - [2011] = 1717, - [2012] = 1705, - [2013] = 1706, - [2014] = 1707, - [2015] = 1708, - [2016] = 1709, - [2017] = 1710, - [2018] = 1711, - [2019] = 1712, - [2020] = 1713, - [2021] = 1714, - [2022] = 1715, - [2023] = 1716, - [2024] = 1717, - [2025] = 1705, - [2026] = 1706, - [2027] = 1707, - [2028] = 1708, - [2029] = 1709, - [2030] = 1710, - [2031] = 1711, - [2032] = 1712, - [2033] = 1713, - [2034] = 1714, - [2035] = 1715, - [2036] = 1716, - [2037] = 1717, - [2038] = 1705, - [2039] = 1706, - [2040] = 1707, - [2041] = 1708, - [2042] = 1709, - [2043] = 1710, - [2044] = 1711, - [2045] = 1712, - [2046] = 1713, - [2047] = 1714, - [2048] = 1715, - [2049] = 1716, - [2050] = 1717, - [2051] = 1705, - [2052] = 1706, - [2053] = 1707, - [2054] = 1708, - [2055] = 1709, - [2056] = 1710, - [2057] = 1711, - [2058] = 1712, - [2059] = 1713, - [2060] = 1714, - [2061] = 1715, - [2062] = 1716, - [2063] = 1717, - [2064] = 2064, - [2065] = 2065, - [2066] = 2066, - [2067] = 2067, - [2068] = 1705, - [2069] = 2069, - [2070] = 1707, - [2071] = 1708, - [2072] = 1709, - [2073] = 1710, - [2074] = 1711, - [2075] = 1712, - [2076] = 1713, - [2077] = 1714, - [2078] = 1715, - [2079] = 1716, - [2080] = 1717, - [2081] = 2081, - [2082] = 1705, - [2083] = 1706, - [2084] = 1707, - [2085] = 1708, - [2086] = 1709, - [2087] = 1710, - [2088] = 1711, - [2089] = 1712, - [2090] = 1713, - [2091] = 1714, - [2092] = 1715, - [2093] = 1716, - [2094] = 1717, - [2095] = 1705, - [2096] = 1706, - [2097] = 1707, - [2098] = 1708, - [2099] = 1709, - [2100] = 1710, - [2101] = 1711, - [2102] = 1712, - [2103] = 1713, - [2104] = 1714, - [2105] = 1715, - [2106] = 1716, - [2107] = 1717, - [2108] = 1705, - [2109] = 1706, - [2110] = 1707, - [2111] = 1708, - [2112] = 1709, - [2113] = 1710, - [2114] = 1711, - [2115] = 1712, - [2116] = 1713, - [2117] = 1714, - [2118] = 1715, - [2119] = 1716, - [2120] = 1717, - [2121] = 1705, - [2122] = 1706, - [2123] = 1707, - [2124] = 1708, - [2125] = 1709, - [2126] = 1710, - [2127] = 1711, - [2128] = 1712, - [2129] = 1713, - [2130] = 1714, - [2131] = 1715, - [2132] = 1716, - [2133] = 1717, - [2134] = 1705, - [2135] = 1706, - [2136] = 1707, - [2137] = 1708, - [2138] = 1709, - [2139] = 1710, - [2140] = 1711, - [2141] = 1712, - [2142] = 1713, - [2143] = 1714, - [2144] = 1715, - [2145] = 1716, - [2146] = 1717, - [2147] = 1705, - [2148] = 1706, - [2149] = 1707, - [2150] = 1708, - [2151] = 1709, - [2152] = 1710, - [2153] = 1711, - [2154] = 1712, - [2155] = 1713, - [2156] = 1714, - [2157] = 1715, - [2158] = 1716, - [2159] = 1717, - [2160] = 1705, - [2161] = 1706, - [2162] = 1707, - [2163] = 1708, - [2164] = 1709, - [2165] = 1710, - [2166] = 1711, - [2167] = 1712, - [2168] = 1713, - [2169] = 1714, - [2170] = 1715, - [2171] = 1716, - [2172] = 1717, - [2173] = 1705, - [2174] = 1706, - [2175] = 1707, - [2176] = 1708, - [2177] = 1709, - [2178] = 1710, - [2179] = 1711, - [2180] = 1712, - [2181] = 1713, - [2182] = 1714, - [2183] = 1715, - [2184] = 1716, - [2185] = 1717, - [2186] = 1705, - [2187] = 1706, - [2188] = 1707, - [2189] = 1708, - [2190] = 1709, - [2191] = 1710, - [2192] = 1711, - [2193] = 1712, - [2194] = 1713, - [2195] = 1714, - [2196] = 1715, - [2197] = 1716, - [2198] = 1717, - [2199] = 1705, - [2200] = 1706, - [2201] = 1707, - [2202] = 1708, - [2203] = 1709, - [2204] = 1710, - [2205] = 1711, - [2206] = 1712, - [2207] = 1713, - [2208] = 1714, - [2209] = 1715, - [2210] = 1716, - [2211] = 1717, - [2212] = 1705, - [2213] = 1706, - [2214] = 1707, - [2215] = 1708, - [2216] = 1709, - [2217] = 1710, - [2218] = 1711, - [2219] = 1712, - [2220] = 1713, - [2221] = 1714, - [2222] = 1715, - [2223] = 1716, - [2224] = 1717, - [2225] = 1705, - [2226] = 1706, - [2227] = 1707, - [2228] = 1708, - [2229] = 1709, - [2230] = 1710, - [2231] = 1711, - [2232] = 1712, - [2233] = 1713, - [2234] = 1714, - [2235] = 1715, - [2236] = 1716, - [2237] = 1717, - [2238] = 1705, - [2239] = 1706, - [2240] = 1707, - [2241] = 1708, - [2242] = 1709, - [2243] = 1710, - [2244] = 1711, - [2245] = 1712, - [2246] = 1713, - [2247] = 1714, - [2248] = 1715, - [2249] = 1716, - [2250] = 1717, - [2251] = 1705, - [2252] = 1706, - [2253] = 1707, - [2254] = 1708, - [2255] = 1709, - [2256] = 1710, - [2257] = 1711, - [2258] = 1712, - [2259] = 1713, - [2260] = 1714, - [2261] = 1715, - [2262] = 1716, - [2263] = 1717, - [2264] = 1705, - [2265] = 1706, - [2266] = 1707, - [2267] = 1708, - [2268] = 1709, - [2269] = 1710, - [2270] = 1711, - [2271] = 1712, - [2272] = 1713, - [2273] = 1714, - [2274] = 1715, - [2275] = 1716, - [2276] = 1717, - [2277] = 1705, - [2278] = 1706, - [2279] = 1707, - [2280] = 1708, - [2281] = 1709, - [2282] = 1710, - [2283] = 1711, - [2284] = 1712, - [2285] = 1713, - [2286] = 1714, - [2287] = 1715, - [2288] = 1716, - [2289] = 1717, + [1956] = 1390, + [1957] = 1391, + [1958] = 1392, + [1959] = 1377, + [1960] = 373, + [1961] = 380, + [1962] = 1393, + [1963] = 1378, + [1964] = 1397, + [1965] = 382, + [1966] = 384, + [1967] = 374, + [1968] = 1968, + [1969] = 385, + [1970] = 381, + [1971] = 1379, + [1972] = 1380, + [1973] = 1382, + [1974] = 1374, + [1975] = 312, + [1976] = 386, + [1977] = 1977, + [1978] = 387, + [1979] = 375, + [1980] = 388, + [1981] = 389, + [1982] = 390, + [1983] = 391, + [1984] = 376, + [1985] = 392, + [1986] = 1392, + [1987] = 404, + [1988] = 376, + [1989] = 366, + [1990] = 367, + [1991] = 368, + [1992] = 369, + [1993] = 288, + [1994] = 370, + [1995] = 371, + [1996] = 1996, + [1997] = 683, + [1998] = 1480, + [1999] = 392, + [2000] = 355, + [2001] = 277, + [2002] = 1513, + [2003] = 375, + [2004] = 362, + [2005] = 365, + [2006] = 1455, + [2007] = 344, + [2008] = 2008, + [2009] = 366, + [2010] = 382, + [2011] = 393, + [2012] = 1516, + [2013] = 284, + [2014] = 387, + [2015] = 386, + [2016] = 345, + [2017] = 293, + [2018] = 376, + [2019] = 2019, + [2020] = 407, + [2021] = 380, + [2022] = 382, + [2023] = 1520, + [2024] = 382, + [2025] = 367, + [2026] = 294, + [2027] = 341, + [2028] = 356, + [2029] = 346, + [2030] = 1806, + [2031] = 2031, + [2032] = 2032, + [2033] = 2033, + [2034] = 1807, + [2035] = 1440, + [2036] = 1443, + [2037] = 356, + [2038] = 383, + [2039] = 368, + [2040] = 2040, + [2041] = 1522, + [2042] = 1714, + [2043] = 1715, + [2044] = 2008, + [2045] = 2045, + [2046] = 2046, + [2047] = 1996, + [2048] = 2019, + [2049] = 2049, + [2050] = 1462, + [2051] = 384, + [2052] = 2052, + [2053] = 357, + [2054] = 1504, + [2055] = 347, + [2056] = 264, + [2057] = 271, + [2058] = 617, + [2059] = 284, + [2060] = 1525, + [2061] = 348, + [2062] = 406, + [2063] = 374, + [2064] = 369, + [2065] = 1445, + [2066] = 277, + [2067] = 630, + [2068] = 272, + [2069] = 359, + [2070] = 387, + [2071] = 1524, + [2072] = 1527, + [2073] = 279, + [2074] = 312, + [2075] = 1730, + [2076] = 385, + [2077] = 1731, + [2078] = 370, + [2079] = 349, + [2080] = 271, + [2081] = 1536, + [2082] = 330, + [2083] = 1538, + [2084] = 1539, + [2085] = 1540, + [2086] = 386, + [2087] = 272, + [2088] = 373, + [2089] = 1568, + [2090] = 1569, + [2091] = 1570, + [2092] = 255, + [2093] = 1597, + [2094] = 388, + [2095] = 257, + [2096] = 350, + [2097] = 256, + [2098] = 386, + [2099] = 251, + [2100] = 1930, + [2101] = 1598, + [2102] = 1599, + [2103] = 1600, + [2104] = 375, + [2105] = 1465, + [2106] = 1648, + [2107] = 371, + [2108] = 357, + [2109] = 387, + [2110] = 388, + [2111] = 933, + [2112] = 936, + [2113] = 888, + [2114] = 415, + [2115] = 2115, + [2116] = 1934, + [2117] = 399, + [2118] = 1477, + [2119] = 374, + [2120] = 2120, + [2121] = 389, + [2122] = 2122, + [2123] = 2123, + [2124] = 1935, + [2125] = 1936, + [2126] = 1951, + [2127] = 351, + [2128] = 400, + [2129] = 403, + [2130] = 2130, + [2131] = 375, + [2132] = 390, + [2133] = 391, + [2134] = 392, + [2135] = 381, + [2136] = 410, + [2137] = 404, + [2138] = 278, + [2139] = 1952, + [2140] = 1684, + [2141] = 342, + [2142] = 1955, + [2143] = 343, + [2144] = 344, + [2145] = 407, + [2146] = 345, + [2147] = 393, + [2148] = 2148, + [2149] = 2149, + [2150] = 341, + [2151] = 1968, + [2152] = 346, + [2153] = 347, + [2154] = 348, + [2155] = 349, + [2156] = 2156, + [2157] = 360, + [2158] = 350, + [2159] = 351, + [2160] = 352, + [2161] = 415, + [2162] = 1136, + [2163] = 376, + [2164] = 385, + [2165] = 2052, + [2166] = 288, + [2167] = 374, + [2168] = 288, + [2169] = 1102, + [2170] = 1479, + [2171] = 342, + [2172] = 389, + [2173] = 363, + [2174] = 233, + [2175] = 380, + [2176] = 384, + [2177] = 385, + [2178] = 269, + [2179] = 1512, + [2180] = 388, + [2181] = 2049, + [2182] = 264, + [2183] = 2045, + [2184] = 284, + [2185] = 384, + [2186] = 361, + [2187] = 2046, + [2188] = 1432, + [2189] = 399, + [2190] = 400, + [2191] = 383, + [2192] = 269, + [2193] = 2193, + [2194] = 353, + [2195] = 373, + [2196] = 383, + [2197] = 390, + [2198] = 391, + [2199] = 392, + [2200] = 393, + [2201] = 383, + [2202] = 399, + [2203] = 400, + [2204] = 403, + [2205] = 404, + [2206] = 252, + [2207] = 354, + [2208] = 403, + [2209] = 404, + [2210] = 264, + [2211] = 406, + [2212] = 399, + [2213] = 406, + [2214] = 290, + [2215] = 407, + [2216] = 341, + [2217] = 407, + [2218] = 341, + [2219] = 400, + [2220] = 291, + [2221] = 410, + [2222] = 288, + [2223] = 373, + [2224] = 381, + [2225] = 374, + [2226] = 410, + [2227] = 364, + [2228] = 269, + [2229] = 375, + [2230] = 292, + [2231] = 376, + [2232] = 355, + [2233] = 339, + [2234] = 352, + [2235] = 289, + [2236] = 353, + [2237] = 1632, + [2238] = 354, + [2239] = 264, + [2240] = 389, + [2241] = 1449, + [2242] = 390, + [2243] = 1649, + [2244] = 1650, + [2245] = 1665, + [2246] = 1667, + [2247] = 343, + [2248] = 284, + [2249] = 359, + [2250] = 360, + [2251] = 373, + [2252] = 361, + [2253] = 269, + [2254] = 362, + [2255] = 339, + [2256] = 363, + [2257] = 330, + [2258] = 403, + [2259] = 364, + [2260] = 365, + [2261] = 380, + [2262] = 1996, + [2263] = 2052, + [2264] = 391, + [2265] = 2265, + [2266] = 410, + [2267] = 2267, + [2268] = 288, + [2269] = 330, + [2270] = 2270, + [2271] = 252, + [2272] = 2272, + [2273] = 269, + [2274] = 2274, + [2275] = 235, + [2276] = 2193, + [2277] = 2156, + [2278] = 2278, + [2279] = 2279, + [2280] = 2280, + [2281] = 2149, + [2282] = 264, + [2283] = 2283, + [2284] = 2284, + [2285] = 2285, + [2286] = 2286, + [2287] = 2287, + [2288] = 284, + [2289] = 294, [2290] = 2290, - [2291] = 1705, - [2292] = 1706, - [2293] = 1707, - [2294] = 1708, - [2295] = 1709, - [2296] = 1710, - [2297] = 1711, - [2298] = 1712, - [2299] = 1713, - [2300] = 1714, - [2301] = 1715, - [2302] = 1716, - [2303] = 1717, + [2291] = 2291, + [2292] = 2292, + [2293] = 2293, + [2294] = 383, + [2295] = 238, + [2296] = 2296, + [2297] = 2297, + [2298] = 2298, + [2299] = 2299, + [2300] = 2300, + [2301] = 289, + [2302] = 2302, + [2303] = 2303, [2304] = 2304, - [2305] = 2305, - [2306] = 2306, - [2307] = 1705, - [2308] = 1706, - [2309] = 1707, - [2310] = 1708, - [2311] = 1709, - [2312] = 1710, - [2313] = 1711, - [2314] = 1712, - [2315] = 1713, - [2316] = 1714, - [2317] = 1715, - [2318] = 1716, - [2319] = 1717, - [2320] = 1705, - [2321] = 1706, - [2322] = 1707, - [2323] = 1708, - [2324] = 1709, - [2325] = 1710, - [2326] = 1711, - [2327] = 1712, - [2328] = 1713, - [2329] = 1714, - [2330] = 1715, - [2331] = 1716, - [2332] = 1717, + [2305] = 2148, + [2306] = 270, + [2307] = 266, + [2308] = 255, + [2309] = 264, + [2310] = 2310, + [2311] = 257, + [2312] = 404, + [2313] = 2313, + [2314] = 2314, + [2315] = 2315, + [2316] = 2316, + [2317] = 2317, + [2318] = 256, + [2319] = 2319, + [2320] = 251, + [2321] = 406, + [2322] = 2130, + [2323] = 2323, + [2324] = 2324, + [2325] = 2325, + [2326] = 2031, + [2327] = 2327, + [2328] = 2328, + [2329] = 290, + [2330] = 2330, + [2331] = 2331, + [2332] = 291, [2333] = 2333, [2334] = 2334, [2335] = 2335, [2336] = 2336, [2337] = 2337, [2338] = 2338, - [2339] = 406, - [2340] = 1705, - [2341] = 1706, - [2342] = 1707, - [2343] = 1708, - [2344] = 1709, - [2345] = 1710, - [2346] = 1711, - [2347] = 1712, - [2348] = 1713, - [2349] = 1714, - [2350] = 1715, - [2351] = 1716, - [2352] = 1717, - [2353] = 1706, - [2354] = 312, - [2355] = 503, - [2356] = 442, - [2357] = 461, - [2358] = 462, - [2359] = 448, - [2360] = 517, - [2361] = 481, - [2362] = 518, - [2363] = 525, - [2364] = 438, - [2365] = 482, - [2366] = 446, - [2367] = 485, - [2368] = 486, - [2369] = 487, - [2370] = 488, - [2371] = 489, - [2372] = 490, - [2373] = 491, - [2374] = 492, - [2375] = 493, - [2376] = 494, - [2377] = 495, - [2378] = 1952, - [2379] = 496, - [2380] = 1953, - [2381] = 497, - [2382] = 1954, - [2383] = 498, - [2384] = 1955, - [2385] = 499, - [2386] = 288, - [2387] = 476, - [2388] = 477, - [2389] = 483, - [2390] = 501, - [2391] = 443, - [2392] = 444, - [2393] = 2393, - [2394] = 289, - [2395] = 459, - [2396] = 460, - [2397] = 466, - [2398] = 1700, - [2399] = 472, - [2400] = 473, - [2401] = 504, - [2402] = 522, - [2403] = 505, - [2404] = 506, - [2405] = 507, - [2406] = 508, - [2407] = 509, - [2408] = 510, - [2409] = 511, - [2410] = 512, - [2411] = 513, - [2412] = 514, - [2413] = 515, - [2414] = 516, - [2415] = 480, - [2416] = 445, - [2417] = 311, - [2418] = 2393, - [2419] = 288, - [2420] = 289, - [2421] = 335, - [2422] = 339, - [2423] = 355, - [2424] = 1765, - [2425] = 1768, - [2426] = 1412, - [2427] = 333, - [2428] = 343, - [2429] = 1382, - [2430] = 346, - [2431] = 359, - [2432] = 2064, - [2433] = 353, - [2434] = 2065, - [2435] = 2066, - [2436] = 2067, - [2437] = 2081, - [2438] = 448, - [2439] = 503, - [2440] = 517, - [2441] = 518, - [2442] = 438, - [2443] = 442, - [2444] = 1769, - [2445] = 445, - [2446] = 446, - [2447] = 2447, - [2448] = 461, - [2449] = 462, - [2450] = 476, - [2451] = 477, - [2452] = 483, - [2453] = 443, - [2454] = 444, - [2455] = 2290, - [2456] = 2304, - [2457] = 2305, - [2458] = 2306, - [2459] = 459, - [2460] = 460, - [2461] = 466, - [2462] = 472, - [2463] = 473, - [2464] = 2333, + [2339] = 2339, + [2340] = 2340, + [2341] = 2341, + [2342] = 277, + [2343] = 278, + [2344] = 2344, + [2345] = 2345, + [2346] = 2346, + [2347] = 279, + [2348] = 2348, + [2349] = 237, + [2350] = 2350, + [2351] = 2351, + [2352] = 2352, + [2353] = 2353, + [2354] = 2354, + [2355] = 2355, + [2356] = 2356, + [2357] = 2357, + [2358] = 2358, + [2359] = 2359, + [2360] = 288, + [2361] = 2361, + [2362] = 293, + [2363] = 284, + [2364] = 2033, + [2365] = 2365, + [2366] = 2366, + [2367] = 2367, + [2368] = 2368, + [2369] = 400, + [2370] = 399, + [2371] = 2371, + [2372] = 2372, + [2373] = 2373, + [2374] = 2374, + [2375] = 2375, + [2376] = 2032, + [2377] = 2377, + [2378] = 269, + [2379] = 2379, + [2380] = 2040, + [2381] = 2120, + [2382] = 2123, + [2383] = 2383, + [2384] = 234, + [2385] = 2385, + [2386] = 2386, + [2387] = 2387, + [2388] = 292, + [2389] = 407, + [2390] = 341, + [2391] = 2391, + [2392] = 2392, + [2393] = 403, + [2394] = 2394, + [2395] = 312, + [2396] = 2396, + [2397] = 2397, + [2398] = 2398, + [2399] = 2399, + [2400] = 2314, + [2401] = 2279, + [2402] = 2280, + [2403] = 2285, + [2404] = 2292, + [2405] = 2310, + [2406] = 2313, + [2407] = 2316, + [2408] = 2333, + [2409] = 2399, + [2410] = 242, + [2411] = 2373, + [2412] = 2396, + [2413] = 2367, + [2414] = 2366, + [2415] = 2340, + [2416] = 2304, + [2417] = 2379, + [2418] = 2338, + [2419] = 2374, + [2420] = 2286, + [2421] = 2296, + [2422] = 2422, + [2423] = 2387, + [2424] = 2278, + [2425] = 2385, + [2426] = 2328, + [2427] = 2394, + [2428] = 2339, + [2429] = 2383, + [2430] = 2365, + [2431] = 2283, + [2432] = 2392, + [2433] = 2344, + [2434] = 2377, + [2435] = 2272, + [2436] = 2290, + [2437] = 2327, + [2438] = 2335, + [2439] = 2348, + [2440] = 2358, + [2441] = 2284, + [2442] = 2323, + [2443] = 2287, + [2444] = 2346, + [2445] = 2303, + [2446] = 2353, + [2447] = 2356, + [2448] = 2324, + [2449] = 2299, + [2450] = 2300, + [2451] = 2315, + [2452] = 828, + [2453] = 827, + [2454] = 2352, + [2455] = 2302, + [2456] = 2265, + [2457] = 2317, + [2458] = 2359, + [2459] = 2361, + [2460] = 2460, + [2461] = 840, + [2462] = 821, + [2463] = 822, + [2464] = 2464, [2465] = 2334, - [2466] = 2335, - [2467] = 480, - [2468] = 1775, - [2469] = 2336, - [2470] = 2337, - [2471] = 1776, - [2472] = 2338, - [2473] = 1777, - [2474] = 1778, - [2475] = 1779, - [2476] = 1780, - [2477] = 1785, - [2478] = 522, - [2479] = 523, - [2480] = 524, - [2481] = 343, - [2482] = 525, - [2483] = 431, - [2484] = 1786, - [2485] = 1787, - [2486] = 1788, - [2487] = 1789, - [2488] = 1790, - [2489] = 1791, - [2490] = 641, - [2491] = 288, - [2492] = 341, - [2493] = 289, - [2494] = 2494, - [2495] = 522, - [2496] = 523, - [2497] = 523, - [2498] = 524, - [2499] = 525, + [2466] = 2291, + [2467] = 2297, + [2468] = 2298, + [2469] = 334, + [2470] = 248, + [2471] = 2330, + [2472] = 2331, + [2473] = 2473, + [2474] = 2351, + [2475] = 2355, + [2476] = 2274, + [2477] = 2350, + [2478] = 2357, + [2479] = 239, + [2480] = 335, + [2481] = 333, + [2482] = 340, + [2483] = 323, + [2484] = 324, + [2485] = 2293, + [2486] = 2345, + [2487] = 2371, + [2488] = 245, + [2489] = 241, + [2490] = 240, + [2491] = 2491, + [2492] = 312, + [2493] = 269, + [2494] = 264, + [2495] = 2397, + [2496] = 2398, + [2497] = 2319, + [2498] = 2336, + [2499] = 2337, [2500] = 2500, - [2501] = 2501, - [2502] = 403, - [2503] = 341, - [2504] = 341, - [2505] = 633, - [2506] = 343, - [2507] = 637, - [2508] = 1774, - [2509] = 2509, - [2510] = 2510, - [2511] = 249, + [2501] = 2267, + [2502] = 339, + [2503] = 333, + [2504] = 270, + [2505] = 266, + [2506] = 277, + [2507] = 271, + [2508] = 272, + [2509] = 330, + [2510] = 406, + [2511] = 410, [2512] = 2512, - [2513] = 268, - [2514] = 2069, - [2515] = 288, - [2516] = 289, - [2517] = 310, - [2518] = 341, - [2519] = 2519, - [2520] = 2520, - [2521] = 1767, - [2522] = 311, - [2523] = 312, - [2524] = 2524, - [2525] = 1770, - [2526] = 1771, - [2527] = 271, - [2528] = 266, - [2529] = 1204, - [2530] = 270, - [2531] = 1199, - [2532] = 269, - [2533] = 1212, - [2534] = 1772, - [2535] = 1773, - [2536] = 1113, - [2537] = 431, + [2513] = 2270, + [2514] = 284, + [2515] = 2375, + [2516] = 2516, + [2517] = 2517, + [2518] = 2391, + [2519] = 277, + [2520] = 367, + [2521] = 368, + [2522] = 369, + [2523] = 370, + [2524] = 371, + [2525] = 356, + [2526] = 840, + [2527] = 821, + [2528] = 822, + [2529] = 2529, + [2530] = 2530, + [2531] = 2531, + [2532] = 2532, + [2533] = 2533, + [2534] = 2534, + [2535] = 373, + [2536] = 2536, + [2537] = 374, [2538] = 2538, [2539] = 2539, - [2540] = 2540, - [2541] = 2524, + [2540] = 415, + [2541] = 375, [2542] = 2542, [2543] = 2543, - [2544] = 2393, - [2545] = 1781, - [2546] = 1782, - [2547] = 1783, - [2548] = 1784, - [2549] = 501, - [2550] = 481, - [2551] = 2538, - [2552] = 1896, - [2553] = 482, - [2554] = 1919, - [2555] = 1920, - [2556] = 485, - [2557] = 486, - [2558] = 487, - [2559] = 488, - [2560] = 489, - [2561] = 490, - [2562] = 491, - [2563] = 492, - [2564] = 493, - [2565] = 494, - [2566] = 495, - [2567] = 496, - [2568] = 497, - [2569] = 498, - [2570] = 2539, - [2571] = 2540, - [2572] = 2572, - [2573] = 504, - [2574] = 505, - [2575] = 506, - [2576] = 507, - [2577] = 508, - [2578] = 509, - [2579] = 510, - [2580] = 511, - [2581] = 512, - [2582] = 513, - [2583] = 514, - [2584] = 515, - [2585] = 516, - [2586] = 403, - [2587] = 499, - [2588] = 2588, - [2589] = 443, - [2590] = 444, - [2591] = 310, - [2592] = 1138, - [2593] = 459, - [2594] = 1139, - [2595] = 460, - [2596] = 472, - [2597] = 473, - [2598] = 1130, - [2599] = 503, - [2600] = 442, - [2601] = 461, - [2602] = 448, - [2603] = 518, - [2604] = 438, - [2605] = 1146, - [2606] = 446, - [2607] = 462, - [2608] = 476, - [2609] = 477, - [2610] = 483, - [2611] = 517, - [2612] = 443, - [2613] = 444, - [2614] = 459, - [2615] = 460, - [2616] = 466, - [2617] = 472, - [2618] = 473, - [2619] = 480, - [2620] = 522, - [2621] = 523, - [2622] = 524, - [2623] = 524, - [2624] = 525, - [2625] = 357, - [2626] = 343, - [2627] = 517, - [2628] = 1932, - [2629] = 1933, - [2630] = 1934, - [2631] = 2524, - [2632] = 2632, - [2633] = 2633, - [2634] = 364, - [2635] = 2542, - [2636] = 2543, - [2637] = 445, - [2638] = 2638, - [2639] = 1138, - [2640] = 2512, + [2544] = 376, + [2545] = 2545, + [2546] = 2546, + [2547] = 2547, + [2548] = 2548, + [2549] = 2549, + [2550] = 381, + [2551] = 2551, + [2552] = 2552, + [2553] = 2553, + [2554] = 334, + [2555] = 380, + [2556] = 382, + [2557] = 383, + [2558] = 384, + [2559] = 385, + [2560] = 386, + [2561] = 387, + [2562] = 388, + [2563] = 2563, + [2564] = 389, + [2565] = 390, + [2566] = 2566, + [2567] = 391, + [2568] = 392, + [2569] = 393, + [2570] = 399, + [2571] = 400, + [2572] = 403, + [2573] = 404, + [2574] = 406, + [2575] = 407, + [2576] = 341, + [2577] = 410, + [2578] = 249, + [2579] = 2579, + [2580] = 342, + [2581] = 343, + [2582] = 344, + [2583] = 366, + [2584] = 333, + [2585] = 288, + [2586] = 269, + [2587] = 264, + [2588] = 340, + [2589] = 323, + [2590] = 324, + [2591] = 345, + [2592] = 252, + [2593] = 284, + [2594] = 346, + [2595] = 2595, + [2596] = 347, + [2597] = 2597, + [2598] = 2598, + [2599] = 348, + [2600] = 2600, + [2601] = 2601, + [2602] = 349, + [2603] = 339, + [2604] = 2604, + [2605] = 2605, + [2606] = 350, + [2607] = 351, + [2608] = 352, + [2609] = 353, + [2610] = 354, + [2611] = 355, + [2612] = 255, + [2613] = 257, + [2614] = 256, + [2615] = 251, + [2616] = 357, + [2617] = 271, + [2618] = 272, + [2619] = 330, + [2620] = 828, + [2621] = 827, + [2622] = 339, + [2623] = 2623, + [2624] = 2624, + [2625] = 2625, + [2626] = 2626, + [2627] = 359, + [2628] = 360, + [2629] = 361, + [2630] = 2516, + [2631] = 2517, + [2632] = 2460, + [2633] = 362, + [2634] = 2553, + [2635] = 363, + [2636] = 364, + [2637] = 365, + [2638] = 333, + [2639] = 335, + [2640] = 345, [2641] = 2641, - [2642] = 333, - [2643] = 341, - [2644] = 2644, - [2645] = 2645, - [2646] = 2646, - [2647] = 346, - [2648] = 2648, - [2649] = 2649, - [2650] = 459, - [2651] = 460, - [2652] = 2652, - [2653] = 2509, - [2654] = 268, - [2655] = 252, - [2656] = 251, - [2657] = 2657, - [2658] = 2658, - [2659] = 250, - [2660] = 2660, - [2661] = 2661, - [2662] = 2662, - [2663] = 2663, - [2664] = 2664, - [2665] = 2665, - [2666] = 2666, - [2667] = 2667, - [2668] = 2668, - [2669] = 2669, - [2670] = 2670, - [2671] = 472, - [2672] = 473, - [2673] = 2673, - [2674] = 2674, - [2675] = 2675, - [2676] = 2676, - [2677] = 2677, - [2678] = 364, - [2679] = 2679, - [2680] = 2680, - [2681] = 2681, - [2682] = 2682, - [2683] = 2683, - [2684] = 343, - [2685] = 2685, - [2686] = 1769, - [2687] = 341, - [2688] = 253, - [2689] = 2689, - [2690] = 288, - [2691] = 289, - [2692] = 271, - [2693] = 266, - [2694] = 270, - [2695] = 269, - [2696] = 2696, - [2697] = 293, - [2698] = 294, - [2699] = 2699, + [2642] = 388, + [2643] = 391, + [2644] = 288, + [2645] = 393, + [2646] = 375, + [2647] = 415, + [2648] = 357, + [2649] = 361, + [2650] = 351, + [2651] = 284, + [2652] = 348, + [2653] = 362, + [2654] = 399, + [2655] = 400, + [2656] = 363, + [2657] = 349, + [2658] = 403, + [2659] = 404, + [2660] = 2641, + [2661] = 364, + [2662] = 406, + [2663] = 350, + [2664] = 365, + [2665] = 347, + [2666] = 407, + [2667] = 366, + [2668] = 341, + [2669] = 376, + [2670] = 269, + [2671] = 264, + [2672] = 367, + [2673] = 352, + [2674] = 368, + [2675] = 410, + [2676] = 369, + [2677] = 387, + [2678] = 370, + [2679] = 373, + [2680] = 371, + [2681] = 382, + [2682] = 342, + [2683] = 386, + [2684] = 381, + [2685] = 270, + [2686] = 266, + [2687] = 374, + [2688] = 2688, + [2689] = 339, + [2690] = 356, + [2691] = 343, + [2692] = 353, + [2693] = 354, + [2694] = 344, + [2695] = 355, + [2696] = 389, + [2697] = 390, + [2698] = 346, + [2699] = 380, [2700] = 2700, - [2701] = 2701, + [2701] = 383, [2702] = 2702, [2703] = 2703, - [2704] = 2704, - [2705] = 2705, - [2706] = 1412, - [2707] = 2707, - [2708] = 2708, - [2709] = 1139, - [2710] = 2710, - [2711] = 2711, - [2712] = 1775, - [2713] = 1776, - [2714] = 1777, - [2715] = 2715, - [2716] = 335, - [2717] = 339, - [2718] = 2718, - [2719] = 1382, - [2720] = 1130, - [2721] = 1778, - [2722] = 1779, - [2723] = 1780, - [2724] = 355, - [2725] = 1785, - [2726] = 1786, - [2727] = 2638, - [2728] = 1788, - [2729] = 1789, - [2730] = 1790, - [2731] = 1791, - [2732] = 343, - [2733] = 2733, - [2734] = 2734, - [2735] = 2735, - [2736] = 2736, - [2737] = 2737, - [2738] = 2572, + [2704] = 359, + [2705] = 384, + [2706] = 360, + [2707] = 385, + [2708] = 269, + [2709] = 264, + [2710] = 2688, + [2711] = 2702, + [2712] = 2703, + [2713] = 392, + [2714] = 2714, + [2715] = 271, + [2716] = 272, + [2717] = 255, + [2718] = 257, + [2719] = 256, + [2720] = 251, + [2721] = 277, + [2722] = 2722, + [2723] = 278, + [2724] = 251, + [2725] = 846, + [2726] = 284, + [2727] = 269, + [2728] = 264, + [2729] = 877, + [2730] = 293, + [2731] = 2731, + [2732] = 256, + [2733] = 251, + [2734] = 290, + [2735] = 252, + [2736] = 294, + [2737] = 291, + [2738] = 266, [2739] = 2739, - [2740] = 2740, - [2741] = 2741, - [2742] = 2742, - [2743] = 2743, - [2744] = 2744, - [2745] = 1700, - [2746] = 2746, - [2747] = 2747, - [2748] = 2748, - [2749] = 2749, - [2750] = 2750, + [2740] = 289, + [2741] = 279, + [2742] = 257, + [2743] = 292, + [2744] = 270, + [2745] = 2731, + [2746] = 255, + [2747] = 255, + [2748] = 257, + [2749] = 256, + [2750] = 288, [2751] = 2751, [2752] = 2752, - [2753] = 1204, - [2754] = 466, - [2755] = 359, - [2756] = 1199, + [2753] = 2753, + [2754] = 2754, + [2755] = 2755, + [2756] = 2756, [2757] = 2757, - [2758] = 1212, + [2758] = 2758, [2759] = 2759, - [2760] = 310, - [2761] = 2500, - [2762] = 480, - [2763] = 2763, + [2760] = 2760, + [2761] = 2753, + [2762] = 2754, + [2763] = 2755, [2764] = 2764, - [2765] = 357, - [2766] = 2501, - [2767] = 2519, - [2768] = 2520, - [2769] = 2769, - [2770] = 2494, - [2771] = 2771, + [2765] = 2756, + [2766] = 2757, + [2767] = 2759, + [2768] = 2760, + [2769] = 2764, + [2770] = 2770, + [2771] = 2770, [2772] = 2772, [2773] = 2773, [2774] = 2774, @@ -6858,8651 +6912,8135 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2779] = 2779, [2780] = 2780, [2781] = 2781, - [2782] = 2782, + [2782] = 2772, [2783] = 2783, [2784] = 2784, [2785] = 2785, - [2786] = 1765, - [2787] = 2510, + [2786] = 2786, + [2787] = 2787, [2788] = 2788, - [2789] = 2789, - [2790] = 2790, - [2791] = 2791, - [2792] = 443, - [2793] = 517, - [2794] = 353, + [2789] = 2773, + [2790] = 2774, + [2791] = 2775, + [2792] = 2776, + [2793] = 2777, + [2794] = 2778, [2795] = 2795, [2796] = 2796, - [2797] = 444, - [2798] = 288, - [2799] = 2632, - [2800] = 2633, - [2801] = 403, - [2802] = 289, - [2803] = 1787, - [2804] = 262, - [2805] = 259, - [2806] = 2746, - [2807] = 1204, - [2808] = 1132, - [2809] = 1144, + [2797] = 2797, + [2798] = 2798, + [2799] = 2799, + [2800] = 2800, + [2801] = 2801, + [2802] = 2802, + [2803] = 2803, + [2804] = 2804, + [2805] = 2805, + [2806] = 2806, + [2807] = 2807, + [2808] = 2808, + [2809] = 2809, [2810] = 2810, - [2811] = 1134, - [2812] = 2747, + [2811] = 2811, + [2812] = 2812, [2813] = 2813, - [2814] = 2734, - [2815] = 2783, - [2816] = 406, - [2817] = 2701, - [2818] = 2796, - [2819] = 1199, - [2820] = 2735, - [2821] = 2736, - [2822] = 2739, - [2823] = 2702, - [2824] = 2710, - [2825] = 1212, - [2826] = 364, - [2827] = 2699, - [2828] = 257, - [2829] = 2644, - [2830] = 2664, - [2831] = 1097, - [2832] = 1098, - [2833] = 2665, - [2834] = 1775, - [2835] = 2703, - [2836] = 1776, - [2837] = 1090, - [2838] = 1091, - [2839] = 1777, - [2840] = 1096, - [2841] = 2757, - [2842] = 2759, - [2843] = 2773, - [2844] = 2774, - [2845] = 2776, - [2846] = 2700, - [2847] = 2777, - [2848] = 341, - [2849] = 2778, - [2850] = 2779, - [2851] = 2775, - [2852] = 2748, - [2853] = 2749, - [2854] = 2750, - [2855] = 2737, - [2856] = 2780, - [2857] = 2781, - [2858] = 2704, - [2859] = 2705, - [2860] = 2658, - [2861] = 1778, - [2862] = 1769, - [2863] = 2751, - [2864] = 2752, - [2865] = 405, - [2866] = 1779, - [2867] = 2784, - [2868] = 2785, - [2869] = 2652, - [2870] = 412, - [2871] = 2788, - [2872] = 2789, - [2873] = 466, - [2874] = 425, - [2875] = 2660, - [2876] = 2661, - [2877] = 2744, - [2878] = 2662, - [2879] = 1780, - [2880] = 264, - [2881] = 2740, - [2882] = 2707, - [2883] = 2790, - [2884] = 2663, + [2814] = 2814, + [2815] = 2815, + [2816] = 2816, + [2817] = 2817, + [2818] = 2818, + [2819] = 2819, + [2820] = 255, + [2821] = 2821, + [2822] = 257, + [2823] = 256, + [2824] = 251, + [2825] = 2779, + [2826] = 2780, + [2827] = 2781, + [2828] = 2783, + [2829] = 2784, + [2830] = 2785, + [2831] = 2786, + [2832] = 2751, + [2833] = 1136, + [2834] = 2788, + [2835] = 2835, + [2836] = 2795, + [2837] = 2796, + [2838] = 2797, + [2839] = 2798, + [2840] = 2799, + [2841] = 2800, + [2842] = 2801, + [2843] = 2802, + [2844] = 2803, + [2845] = 2804, + [2846] = 2846, + [2847] = 2805, + [2848] = 2806, + [2849] = 2807, + [2850] = 2808, + [2851] = 2809, + [2852] = 269, + [2853] = 2758, + [2854] = 264, + [2855] = 2811, + [2856] = 2812, + [2857] = 846, + [2858] = 2813, + [2859] = 2814, + [2860] = 2815, + [2861] = 2816, + [2862] = 2817, + [2863] = 2818, + [2864] = 2819, + [2865] = 2821, + [2866] = 270, + [2867] = 266, + [2868] = 2868, + [2869] = 2869, + [2870] = 2870, + [2871] = 2871, + [2872] = 269, + [2873] = 264, + [2874] = 2874, + [2875] = 1102, + [2876] = 2876, + [2877] = 2877, + [2878] = 312, + [2879] = 2879, + [2880] = 2880, + [2881] = 2881, + [2882] = 2882, + [2883] = 2883, + [2884] = 2884, [2885] = 2885, - [2886] = 2666, - [2887] = 2667, - [2888] = 2668, - [2889] = 2669, - [2890] = 2670, - [2891] = 2715, - [2892] = 2791, - [2893] = 431, - [2894] = 1785, - [2895] = 288, - [2896] = 2896, - [2897] = 2645, - [2898] = 289, - [2899] = 1786, - [2900] = 1787, - [2901] = 2646, - [2902] = 1788, - [2903] = 1789, - [2904] = 1790, - [2905] = 1791, - [2906] = 2673, - [2907] = 2674, - [2908] = 1412, - [2909] = 2782, - [2910] = 1382, - [2911] = 2708, - [2912] = 415, - [2913] = 2676, - [2914] = 2677, - [2915] = 293, - [2916] = 294, - [2917] = 2679, - [2918] = 2680, - [2919] = 2743, - [2920] = 2681, - [2921] = 2682, - [2922] = 2648, - [2923] = 2733, - [2924] = 2683, - [2925] = 258, - [2926] = 310, - [2927] = 403, - [2928] = 2649, - [2929] = 2769, - [2930] = 2930, - [2931] = 2772, - [2932] = 311, - [2933] = 2685, - [2934] = 1765, - [2935] = 312, - [2936] = 2741, - [2937] = 406, - [2938] = 2742, - [2939] = 2939, - [2940] = 2657, - [2941] = 2641, - [2942] = 256, - [2943] = 2675, - [2944] = 2689, - [2945] = 2795, - [2946] = 435, - [2947] = 480, - [2948] = 406, - [2949] = 266, - [2950] = 481, - [2951] = 2951, - [2952] = 523, - [2953] = 2953, - [2954] = 482, - [2955] = 270, - [2956] = 448, - [2957] = 525, - [2958] = 269, - [2959] = 476, - [2960] = 460, - [2961] = 466, - [2962] = 2962, - [2963] = 2963, - [2964] = 503, - [2965] = 517, - [2966] = 310, - [2967] = 485, - [2968] = 486, - [2969] = 487, - [2970] = 488, - [2971] = 489, - [2972] = 490, - [2973] = 491, - [2974] = 492, - [2975] = 2975, - [2976] = 493, - [2977] = 494, - [2978] = 495, - [2979] = 496, - [2980] = 497, - [2981] = 498, - [2982] = 2982, - [2983] = 2983, - [2984] = 444, - [2985] = 2985, - [2986] = 501, - [2987] = 524, - [2988] = 415, - [2989] = 2989, - [2990] = 435, - [2991] = 288, - [2992] = 343, - [2993] = 1097, - [2994] = 1098, - [2995] = 2995, - [2996] = 311, - [2997] = 2997, - [2998] = 312, - [2999] = 518, - [3000] = 522, - [3001] = 504, - [3002] = 505, - [3003] = 506, - [3004] = 507, - [3005] = 508, - [3006] = 268, - [3007] = 431, - [3008] = 3008, - [3009] = 3009, - [3010] = 509, - [3011] = 510, - [3012] = 511, - [3013] = 512, - [3014] = 513, - [3015] = 514, - [3016] = 3016, - [3017] = 289, - [3018] = 515, - [3019] = 516, - [3020] = 472, - [3021] = 438, - [3022] = 499, - [3023] = 1090, - [3024] = 1091, - [3025] = 1096, - [3026] = 480, - [3027] = 3027, - [3028] = 443, + [2886] = 2886, + [2887] = 2887, + [2888] = 2888, + [2889] = 2889, + [2890] = 2890, + [2891] = 270, + [2892] = 266, + [2893] = 2752, + [2894] = 2894, + [2895] = 2787, + [2896] = 2870, + [2897] = 2897, + [2898] = 877, + [2899] = 2899, + [2900] = 277, + [2901] = 2901, + [2902] = 2835, + [2903] = 2846, + [2904] = 271, + [2905] = 272, + [2906] = 2868, + [2907] = 872, + [2908] = 873, + [2909] = 874, + [2910] = 2869, + [2911] = 2894, + [2912] = 2871, + [2913] = 2897, + [2914] = 2877, + [2915] = 2915, + [2916] = 2916, + [2917] = 2899, + [2918] = 2901, + [2919] = 2876, + [2920] = 2879, + [2921] = 2880, + [2922] = 2881, + [2923] = 2882, + [2924] = 2874, + [2925] = 2883, + [2926] = 2884, + [2927] = 2885, + [2928] = 2886, + [2929] = 2887, + [2930] = 2888, + [2931] = 2889, + [2932] = 2890, + [2933] = 2810, + [2934] = 2934, + [2935] = 340, + [2936] = 284, + [2937] = 323, + [2938] = 933, + [2939] = 255, + [2940] = 936, + [2941] = 257, + [2942] = 888, + [2943] = 256, + [2944] = 324, + [2945] = 251, + [2946] = 2946, + [2947] = 271, + [2948] = 333, + [2949] = 272, + [2950] = 2950, + [2951] = 2934, + [2952] = 1093, + [2953] = 1094, + [2954] = 1097, + [2955] = 2955, + [2956] = 2950, + [2957] = 334, + [2958] = 266, + [2959] = 277, + [2960] = 872, + [2961] = 2950, + [2962] = 264, + [2963] = 271, + [2964] = 339, + [2965] = 272, + [2966] = 2966, + [2967] = 873, + [2968] = 2968, + [2969] = 2966, + [2970] = 2934, + [2971] = 1115, + [2972] = 2972, + [2973] = 333, + [2974] = 330, + [2975] = 874, + [2976] = 2968, + [2977] = 933, + [2978] = 936, + [2979] = 888, + [2980] = 270, + [2981] = 335, + [2982] = 277, + [2983] = 269, + [2984] = 2984, + [2985] = 284, + [2986] = 387, + [2987] = 388, + [2988] = 271, + [2989] = 389, + [2990] = 272, + [2991] = 399, + [2992] = 1097, + [2993] = 339, + [2994] = 1093, + [2995] = 400, + [2996] = 415, + [2997] = 390, + [2998] = 1094, + [2999] = 352, + [3000] = 381, + [3001] = 284, + [3002] = 288, + [3003] = 1136, + [3004] = 269, + [3005] = 371, + [3006] = 270, + [3007] = 266, + [3008] = 391, + [3009] = 264, + [3010] = 343, + [3011] = 846, + [3012] = 373, + [3013] = 374, + [3014] = 353, + [3015] = 375, + [3016] = 269, + [3017] = 264, + [3018] = 376, + [3019] = 877, + [3020] = 354, + [3021] = 3021, + [3022] = 392, + [3023] = 344, + [3024] = 355, + [3025] = 403, + [3026] = 345, + [3027] = 1102, + [3028] = 346, [3029] = 3029, - [3030] = 3030, - [3031] = 473, - [3032] = 442, + [3030] = 404, + [3031] = 347, + [3032] = 2955, [3033] = 3033, - [3034] = 3034, - [3035] = 341, - [3036] = 462, - [3037] = 3037, - [3038] = 1132, - [3039] = 3039, - [3040] = 3040, - [3041] = 3041, - [3042] = 3042, - [3043] = 282, - [3044] = 425, - [3045] = 2989, - [3046] = 3046, - [3047] = 3047, + [3034] = 342, + [3035] = 393, + [3036] = 2972, + [3037] = 1115, + [3038] = 277, + [3039] = 380, + [3040] = 357, + [3041] = 359, + [3042] = 360, + [3043] = 3043, + [3044] = 3044, + [3045] = 361, + [3046] = 362, + [3047] = 349, [3048] = 406, - [3049] = 403, - [3050] = 271, - [3051] = 445, - [3052] = 3052, - [3053] = 431, - [3054] = 477, - [3055] = 459, - [3056] = 412, - [3057] = 1134, - [3058] = 446, - [3059] = 461, - [3060] = 1144, - [3061] = 3061, - [3062] = 483, - [3063] = 3063, - [3064] = 405, - [3065] = 511, - [3066] = 476, - [3067] = 477, - [3068] = 483, - [3069] = 443, - [3070] = 288, - [3071] = 444, - [3072] = 289, - [3073] = 431, - [3074] = 445, - [3075] = 459, - [3076] = 293, - [3077] = 294, - [3078] = 460, - [3079] = 466, - [3080] = 442, - [3081] = 472, - [3082] = 473, - [3083] = 480, - [3084] = 525, - [3085] = 343, - [3086] = 3086, + [3049] = 356, + [3050] = 350, + [3051] = 3051, + [3052] = 407, + [3053] = 351, + [3054] = 363, + [3055] = 3033, + [3056] = 364, + [3057] = 365, + [3058] = 3044, + [3059] = 2984, + [3060] = 3029, + [3061] = 366, + [3062] = 3043, + [3063] = 341, + [3064] = 369, + [3065] = 367, + [3066] = 368, + [3067] = 3044, + [3068] = 3044, + [3069] = 410, + [3070] = 382, + [3071] = 383, + [3072] = 384, + [3073] = 3051, + [3074] = 370, + [3075] = 385, + [3076] = 386, + [3077] = 348, + [3078] = 1480, + [3079] = 272, + [3080] = 872, + [3081] = 873, + [3082] = 874, + [3083] = 1371, + [3084] = 277, + [3085] = 284, + [3086] = 271, [3087] = 3087, [3088] = 3088, - [3089] = 288, - [3090] = 289, - [3091] = 461, - [3092] = 462, - [3093] = 481, - [3094] = 448, - [3095] = 482, - [3096] = 485, - [3097] = 486, - [3098] = 487, - [3099] = 488, - [3100] = 489, - [3101] = 490, - [3102] = 491, - [3103] = 492, - [3104] = 493, - [3105] = 494, - [3106] = 495, - [3107] = 496, - [3108] = 497, - [3109] = 498, - [3110] = 517, - [3111] = 501, - [3112] = 341, - [3113] = 518, - [3114] = 438, - [3115] = 504, - [3116] = 505, - [3117] = 506, - [3118] = 507, - [3119] = 508, - [3120] = 509, - [3121] = 510, - [3122] = 512, - [3123] = 513, - [3124] = 514, - [3125] = 503, - [3126] = 515, - [3127] = 516, - [3128] = 499, - [3129] = 446, - [3130] = 3130, - [3131] = 3131, - [3132] = 3087, - [3133] = 3130, - [3134] = 3131, - [3135] = 3088, - [3136] = 522, - [3137] = 523, - [3138] = 524, - [3139] = 3139, - [3140] = 310, + [3089] = 877, + [3090] = 846, + [3091] = 1597, + [3092] = 888, + [3093] = 3093, + [3094] = 3087, + [3095] = 874, + [3096] = 1504, + [3097] = 872, + [3098] = 3098, + [3099] = 3099, + [3100] = 873, + [3101] = 1524, + [3102] = 1527, + [3103] = 3103, + [3104] = 1536, + [3105] = 3105, + [3106] = 1538, + [3107] = 933, + [3108] = 1540, + [3109] = 1568, + [3110] = 1569, + [3111] = 1570, + [3112] = 3112, + [3113] = 1598, + [3114] = 1599, + [3115] = 1600, + [3116] = 1102, + [3117] = 1371, + [3118] = 1136, + [3119] = 936, + [3120] = 3120, + [3121] = 284, + [3122] = 3122, + [3123] = 3123, + [3124] = 1539, + [3125] = 3098, + [3126] = 1136, + [3127] = 1102, + [3128] = 3103, + [3129] = 3105, + [3130] = 3120, + [3131] = 3122, + [3132] = 1504, + [3133] = 3133, + [3134] = 1480, + [3135] = 1524, + [3136] = 1527, + [3137] = 1536, + [3138] = 3138, + [3139] = 1539, + [3140] = 1540, [3141] = 3141, - [3142] = 311, - [3143] = 271, - [3144] = 266, - [3145] = 270, - [3146] = 269, - [3147] = 312, - [3148] = 288, - [3149] = 341, - [3150] = 271, - [3151] = 271, - [3152] = 333, - [3153] = 266, - [3154] = 270, - [3155] = 269, - [3156] = 270, + [3142] = 1568, + [3143] = 1569, + [3144] = 1570, + [3145] = 1597, + [3146] = 1598, + [3147] = 1599, + [3148] = 1600, + [3149] = 933, + [3150] = 936, + [3151] = 888, + [3152] = 3152, + [3153] = 3099, + [3154] = 3093, + [3155] = 3112, + [3156] = 1538, [3157] = 3157, - [3158] = 269, - [3159] = 1113, - [3160] = 293, - [3161] = 346, - [3162] = 294, - [3163] = 268, - [3164] = 359, - [3165] = 266, - [3166] = 335, - [3167] = 339, - [3168] = 289, - [3169] = 1146, - [3170] = 3157, - [3171] = 357, - [3172] = 355, - [3173] = 353, - [3174] = 343, - [3175] = 3175, - [3176] = 3176, - [3177] = 1138, - [3178] = 3178, - [3179] = 1139, - [3180] = 3180, - [3181] = 3181, - [3182] = 3182, - [3183] = 311, - [3184] = 3184, - [3185] = 1130, - [3186] = 312, - [3187] = 3187, - [3188] = 3188, - [3189] = 3189, - [3190] = 3190, - [3191] = 3180, - [3192] = 3192, - [3193] = 3193, - [3194] = 3181, - [3195] = 3195, + [3158] = 3158, + [3159] = 3159, + [3160] = 768, + [3161] = 3161, + [3162] = 3159, + [3163] = 3161, + [3164] = 769, + [3165] = 791, + [3166] = 814, + [3167] = 3167, + [3168] = 233, + [3169] = 233, + [3170] = 795, + [3171] = 768, + [3172] = 815, + [3173] = 819, + [3174] = 769, + [3175] = 786, + [3176] = 812, + [3177] = 3177, + [3178] = 815, + [3179] = 816, + [3180] = 819, + [3181] = 816, + [3182] = 238, + [3183] = 238, + [3184] = 234, + [3185] = 812, + [3186] = 235, + [3187] = 786, + [3188] = 791, + [3189] = 814, + [3190] = 237, + [3191] = 234, + [3192] = 832, + [3193] = 840, + [3194] = 235, + [3195] = 237, [3196] = 3196, - [3197] = 3197, - [3198] = 3178, - [3199] = 3199, - [3200] = 3200, - [3201] = 3195, - [3202] = 3202, - [3203] = 293, + [3197] = 795, + [3198] = 821, + [3199] = 822, + [3200] = 233, + [3201] = 828, + [3202] = 827, + [3203] = 795, [3204] = 3204, - [3205] = 294, - [3206] = 3206, - [3207] = 3207, - [3208] = 3208, - [3209] = 3209, - [3210] = 3210, - [3211] = 3211, - [3212] = 3212, - [3213] = 3213, - [3214] = 271, - [3215] = 3210, - [3216] = 266, - [3217] = 3217, - [3218] = 270, - [3219] = 3219, - [3220] = 269, - [3221] = 3211, - [3222] = 3199, - [3223] = 3223, - [3224] = 3224, - [3225] = 3225, - [3226] = 3226, - [3227] = 3212, - [3228] = 3213, - [3229] = 3217, - [3230] = 3224, - [3231] = 3225, - [3232] = 3226, - [3233] = 3233, - [3234] = 3234, - [3235] = 3234, - [3236] = 3236, - [3237] = 3237, - [3238] = 3236, - [3239] = 3239, - [3240] = 3189, - [3241] = 3241, - [3242] = 3242, - [3243] = 3243, - [3244] = 3176, - [3245] = 3245, - [3246] = 3246, - [3247] = 3247, - [3248] = 3248, - [3249] = 3249, - [3250] = 3250, - [3251] = 3251, - [3252] = 3252, - [3253] = 3253, - [3254] = 3254, - [3255] = 3255, - [3256] = 3239, - [3257] = 3257, - [3258] = 3241, - [3259] = 3259, - [3260] = 3260, - [3261] = 3261, - [3262] = 3262, - [3263] = 3263, - [3264] = 3264, - [3265] = 3265, - [3266] = 3266, - [3267] = 3267, - [3268] = 3268, - [3269] = 3269, - [3270] = 3270, - [3271] = 3271, - [3272] = 3272, - [3273] = 3273, + [3205] = 815, + [3206] = 816, + [3207] = 786, + [3208] = 791, + [3209] = 819, + [3210] = 827, + [3211] = 828, + [3212] = 241, + [3213] = 240, + [3214] = 238, + [3215] = 233, + [3216] = 245, + [3217] = 840, + [3218] = 821, + [3219] = 832, + [3220] = 822, + [3221] = 846, + [3222] = 237, + [3223] = 234, + [3224] = 235, + [3225] = 241, + [3226] = 240, + [3227] = 245, + [3228] = 846, + [3229] = 822, + [3230] = 873, + [3231] = 821, + [3232] = 874, + [3233] = 827, + [3234] = 872, + [3235] = 873, + [3236] = 234, + [3237] = 846, + [3238] = 874, + [3239] = 877, + [3240] = 828, + [3241] = 2516, + [3242] = 2517, + [3243] = 2460, + [3244] = 245, + [3245] = 237, + [3246] = 877, + [3247] = 241, + [3248] = 240, + [3249] = 235, + [3250] = 840, + [3251] = 238, + [3252] = 846, + [3253] = 872, + [3254] = 888, + [3255] = 255, + [3256] = 846, + [3257] = 257, + [3258] = 945, + [3259] = 241, + [3260] = 256, + [3261] = 846, + [3262] = 872, + [3263] = 873, + [3264] = 252, + [3265] = 874, + [3266] = 877, + [3267] = 872, + [3268] = 873, + [3269] = 877, + [3270] = 874, + [3271] = 943, + [3272] = 945, + [3273] = 874, [3274] = 3274, - [3275] = 3242, - [3276] = 3276, - [3277] = 3252, - [3278] = 288, - [3279] = 310, - [3280] = 3253, - [3281] = 289, - [3282] = 3254, - [3283] = 3276, - [3284] = 3284, - [3285] = 3285, - [3286] = 364, - [3287] = 3287, - [3288] = 3200, - [3289] = 3289, - [3290] = 3290, - [3291] = 3192, - [3292] = 3190, - [3293] = 3193, - [3294] = 293, - [3295] = 294, - [3296] = 3296, - [3297] = 3196, - [3298] = 3298, - [3299] = 3299, - [3300] = 3300, - [3301] = 3204, - [3302] = 3296, - [3303] = 3298, - [3304] = 3299, - [3305] = 3300, - [3306] = 3306, - [3307] = 3307, - [3308] = 3184, - [3309] = 3219, - [3310] = 3182, - [3311] = 3237, - [3312] = 3285, - [3313] = 3287, - [3314] = 3289, - [3315] = 3290, - [3316] = 1412, - [3317] = 3306, - [3318] = 3307, - [3319] = 3188, - [3320] = 3223, - [3321] = 289, - [3322] = 3245, - [3323] = 3246, - [3324] = 3247, - [3325] = 3248, - [3326] = 3249, - [3327] = 3250, - [3328] = 3251, - [3329] = 3255, - [3330] = 3257, - [3331] = 3259, - [3332] = 3260, - [3333] = 3261, - [3334] = 3262, - [3335] = 3263, - [3336] = 3264, - [3337] = 3265, - [3338] = 3266, - [3339] = 3206, - [3340] = 3207, - [3341] = 3267, - [3342] = 3268, - [3343] = 3269, - [3344] = 3270, - [3345] = 3271, - [3346] = 3272, - [3347] = 3243, - [3348] = 3233, - [3349] = 3197, - [3350] = 1146, - [3351] = 3208, - [3352] = 3273, - [3353] = 3274, - [3354] = 1113, - [3355] = 3209, - [3356] = 1382, - [3357] = 288, - [3358] = 3284, + [3275] = 933, + [3276] = 936, + [3277] = 888, + [3278] = 240, + [3279] = 245, + [3280] = 872, + [3281] = 769, + [3282] = 873, + [3283] = 933, + [3284] = 936, + [3285] = 768, + [3286] = 943, + [3287] = 251, + [3288] = 933, + [3289] = 877, + [3290] = 252, + [3291] = 846, + [3292] = 992, + [3293] = 814, + [3294] = 815, + [3295] = 795, + [3296] = 991, + [3297] = 816, + [3298] = 786, + [3299] = 933, + [3300] = 933, + [3301] = 936, + [3302] = 888, + [3303] = 255, + [3304] = 877, + [3305] = 233, + [3306] = 269, + [3307] = 264, + [3308] = 846, + [3309] = 846, + [3310] = 256, + [3311] = 251, + [3312] = 872, + [3313] = 873, + [3314] = 812, + [3315] = 936, + [3316] = 874, + [3317] = 888, + [3318] = 791, + [3319] = 936, + [3320] = 877, + [3321] = 769, + [3322] = 888, + [3323] = 819, + [3324] = 270, + [3325] = 943, + [3326] = 266, + [3327] = 768, + [3328] = 945, + [3329] = 257, + [3330] = 846, + [3331] = 992, + [3332] = 872, + [3333] = 873, + [3334] = 874, + [3335] = 840, + [3336] = 821, + [3337] = 991, + [3338] = 877, + [3339] = 822, + [3340] = 877, + [3341] = 819, + [3342] = 257, + [3343] = 238, + [3344] = 1053, + [3345] = 1053, + [3346] = 992, + [3347] = 256, + [3348] = 251, + [3349] = 3349, + [3350] = 237, + [3351] = 832, + [3352] = 269, + [3353] = 234, + [3354] = 235, + [3355] = 872, + [3356] = 873, + [3357] = 795, + [3358] = 233, [3359] = 270, - [3360] = 412, - [3361] = 425, - [3362] = 403, - [3363] = 1378, - [3364] = 1386, - [3365] = 1441, - [3366] = 311, - [3367] = 406, - [3368] = 271, - [3369] = 312, - [3370] = 311, - [3371] = 431, - [3372] = 266, - [3373] = 312, - [3374] = 3374, - [3375] = 269, - [3376] = 341, - [3377] = 3374, - [3378] = 3378, - [3379] = 288, - [3380] = 3380, - [3381] = 1676, - [3382] = 415, - [3383] = 294, - [3384] = 310, - [3385] = 1138, - [3386] = 3380, - [3387] = 3387, - [3388] = 3387, - [3389] = 293, - [3390] = 435, - [3391] = 1204, - [3392] = 405, - [3393] = 1364, - [3394] = 1666, - [3395] = 1199, - [3396] = 1212, - [3397] = 406, - [3398] = 1204, - [3399] = 1139, - [3400] = 3374, - [3401] = 3401, - [3402] = 1130, - [3403] = 1199, - [3404] = 1212, - [3405] = 3378, - [3406] = 3378, - [3407] = 310, - [3408] = 289, - [3409] = 3409, - [3410] = 461, - [3411] = 462, - [3412] = 522, - [3413] = 3413, - [3414] = 524, - [3415] = 343, - [3416] = 525, - [3417] = 476, - [3418] = 477, - [3419] = 483, - [3420] = 341, - [3421] = 3421, - [3422] = 288, - [3423] = 431, - [3424] = 289, - [3425] = 1113, - [3426] = 293, - [3427] = 294, - [3428] = 1676, - [3429] = 1382, - [3430] = 1364, - [3431] = 288, - [3432] = 289, - [3433] = 1146, + [3360] = 266, + [3361] = 933, + [3362] = 786, + [3363] = 936, + [3364] = 888, + [3365] = 791, + [3366] = 255, + [3367] = 255, + [3368] = 257, + [3369] = 846, + [3370] = 828, + [3371] = 877, + [3372] = 827, + [3373] = 277, + [3374] = 256, + [3375] = 814, + [3376] = 815, + [3377] = 251, + [3378] = 264, + [3379] = 271, + [3380] = 816, + [3381] = 812, + [3382] = 272, + [3383] = 991, + [3384] = 872, + [3385] = 873, + [3386] = 846, + [3387] = 874, + [3388] = 874, + [3389] = 272, + [3390] = 284, + [3391] = 269, + [3392] = 277, + [3393] = 279, + [3394] = 1079, + [3395] = 933, + [3396] = 936, + [3397] = 888, + [3398] = 245, + [3399] = 3349, + [3400] = 264, + [3401] = 1094, + [3402] = 1079, + [3403] = 278, + [3404] = 1102, + [3405] = 241, + [3406] = 294, + [3407] = 293, + [3408] = 288, + [3409] = 292, + [3410] = 840, + [3411] = 873, + [3412] = 271, + [3413] = 1104, + [3414] = 257, + [3415] = 240, + [3416] = 872, + [3417] = 846, + [3418] = 877, + [3419] = 235, + [3420] = 1078, + [3421] = 821, + [3422] = 822, + [3423] = 256, + [3424] = 251, + [3425] = 1138, + [3426] = 255, + [3427] = 846, + [3428] = 237, + [3429] = 312, + [3430] = 846, + [3431] = 238, + [3432] = 290, + [3433] = 874, [3434] = 3434, - [3435] = 443, - [3436] = 444, - [3437] = 459, - [3438] = 460, - [3439] = 466, - [3440] = 3409, - [3441] = 472, - [3442] = 473, - [3443] = 1378, - [3444] = 1386, - [3445] = 1441, - [3446] = 480, - [3447] = 481, - [3448] = 3448, - [3449] = 1666, - [3450] = 341, - [3451] = 482, - [3452] = 485, - [3453] = 486, - [3454] = 310, - [3455] = 487, - [3456] = 488, - [3457] = 489, - [3458] = 448, - [3459] = 490, - [3460] = 491, - [3461] = 492, - [3462] = 503, - [3463] = 493, - [3464] = 494, - [3465] = 495, - [3466] = 496, - [3467] = 497, - [3468] = 311, - [3469] = 498, - [3470] = 517, - [3471] = 518, - [3472] = 501, - [3473] = 312, - [3474] = 1412, - [3475] = 504, - [3476] = 505, - [3477] = 506, - [3478] = 507, - [3479] = 508, - [3480] = 509, - [3481] = 510, - [3482] = 511, - [3483] = 512, - [3484] = 513, - [3485] = 442, - [3486] = 514, - [3487] = 515, - [3488] = 516, + [3435] = 872, + [3436] = 873, + [3437] = 1142, + [3438] = 874, + [3439] = 1136, + [3440] = 877, + [3441] = 291, + [3442] = 933, + [3443] = 1127, + [3444] = 270, + [3445] = 936, + [3446] = 877, + [3447] = 888, + [3448] = 264, + [3449] = 270, + [3450] = 266, + [3451] = 3451, + [3452] = 1138, + [3453] = 266, + [3454] = 1097, + [3455] = 936, + [3456] = 1127, + [3457] = 1093, + [3458] = 888, + [3459] = 234, + [3460] = 233, + [3461] = 846, + [3462] = 1142, + [3463] = 1122, + [3464] = 3464, + [3465] = 832, + [3466] = 828, + [3467] = 1115, + [3468] = 1053, + [3469] = 3469, + [3470] = 827, + [3471] = 874, + [3472] = 872, + [3473] = 873, + [3474] = 269, + [3475] = 933, + [3476] = 3476, + [3477] = 3477, + [3478] = 3478, + [3479] = 1150, + [3480] = 1151, + [3481] = 3481, + [3482] = 290, + [3483] = 291, + [3484] = 339, + [3485] = 293, + [3486] = 846, + [3487] = 3487, + [3488] = 292, [3489] = 3489, - [3490] = 3490, - [3491] = 499, - [3492] = 3492, - [3493] = 438, - [3494] = 3490, - [3495] = 3489, - [3496] = 445, - [3497] = 3413, - [3498] = 3448, - [3499] = 3492, - [3500] = 3434, - [3501] = 446, - [3502] = 3413, - [3503] = 3413, - [3504] = 523, - [3505] = 311, - [3506] = 312, - [3507] = 1765, - [3508] = 341, - [3509] = 1130, - [3510] = 1700, - [3511] = 310, - [3512] = 1138, - [3513] = 3513, - [3514] = 1146, - [3515] = 1139, - [3516] = 2572, - [3517] = 1113, - [3518] = 1199, - [3519] = 1130, - [3520] = 1775, - [3521] = 1776, - [3522] = 1777, - [3523] = 2748, - [3524] = 1778, - [3525] = 1769, - [3526] = 1412, - [3527] = 1700, - [3528] = 1779, - [3529] = 1780, - [3530] = 2750, - [3531] = 1785, - [3532] = 3532, - [3533] = 2572, - [3534] = 1786, - [3535] = 1204, - [3536] = 1787, - [3537] = 341, - [3538] = 1788, - [3539] = 1789, - [3540] = 1212, - [3541] = 1790, - [3542] = 1382, - [3543] = 2744, - [3544] = 1791, - [3545] = 3545, - [3546] = 3546, - [3547] = 1138, - [3548] = 3548, + [3490] = 933, + [3491] = 3491, + [3492] = 936, + [3493] = 888, + [3494] = 255, + [3495] = 233, + [3496] = 257, + [3497] = 256, + [3498] = 251, + [3499] = 237, + [3500] = 288, + [3501] = 234, + [3502] = 235, + [3503] = 877, + [3504] = 872, + [3505] = 873, + [3506] = 294, + [3507] = 874, + [3508] = 312, + [3509] = 335, + [3510] = 872, + [3511] = 873, + [3512] = 270, + [3513] = 266, + [3514] = 874, + [3515] = 233, + [3516] = 277, + [3517] = 277, + [3518] = 256, + [3519] = 284, + [3520] = 238, + [3521] = 340, + [3522] = 323, + [3523] = 324, + [3524] = 279, + [3525] = 271, + [3526] = 272, + [3527] = 1078, + [3528] = 846, + [3529] = 340, + [3530] = 323, + [3531] = 1078, + [3532] = 324, + [3533] = 1122, + [3534] = 3534, + [3535] = 330, + [3536] = 1079, + [3537] = 872, + [3538] = 1104, + [3539] = 339, + [3540] = 312, + [3541] = 877, + [3542] = 278, + [3543] = 873, + [3544] = 271, + [3545] = 933, + [3546] = 936, + [3547] = 888, + [3548] = 272, [3549] = 3549, - [3550] = 1139, - [3551] = 2749, - [3552] = 3552, - [3553] = 3532, - [3554] = 2748, - [3555] = 3555, - [3556] = 1769, - [3557] = 1775, - [3558] = 1776, - [3559] = 1777, - [3560] = 3549, - [3561] = 1778, - [3562] = 1204, - [3563] = 1765, - [3564] = 1199, - [3565] = 3548, - [3566] = 3546, - [3567] = 1779, - [3568] = 1780, - [3569] = 1382, - [3570] = 1785, - [3571] = 1786, - [3572] = 1787, - [3573] = 3573, - [3574] = 1788, - [3575] = 1789, - [3576] = 1790, - [3577] = 1791, - [3578] = 2744, - [3579] = 2750, - [3580] = 3580, - [3581] = 1412, - [3582] = 2749, - [3583] = 1212, - [3584] = 3584, - [3585] = 3585, - [3586] = 1026, - [3587] = 1027, - [3588] = 3588, - [3589] = 3589, - [3590] = 3588, - [3591] = 3589, - [3592] = 1026, - [3593] = 249, - [3594] = 1043, - [3595] = 249, - [3596] = 1044, - [3597] = 1043, - [3598] = 1076, - [3599] = 1046, - [3600] = 1035, - [3601] = 1082, - [3602] = 3602, - [3603] = 1046, - [3604] = 1035, - [3605] = 1027, - [3606] = 1063, - [3607] = 1069, - [3608] = 3608, - [3609] = 252, - [3610] = 1099, - [3611] = 1076, - [3612] = 1046, - [3613] = 1035, - [3614] = 1063, - [3615] = 1069, - [3616] = 1097, - [3617] = 1098, - [3618] = 1069, - [3619] = 253, - [3620] = 1043, - [3621] = 1076, - [3622] = 1044, - [3623] = 3623, - [3624] = 1090, - [3625] = 1091, - [3626] = 252, - [3627] = 1096, - [3628] = 250, - [3629] = 3629, - [3630] = 251, - [3631] = 250, - [3632] = 253, - [3633] = 249, - [3634] = 1063, - [3635] = 1082, - [3636] = 251, - [3637] = 256, - [3638] = 249, - [3639] = 253, - [3640] = 1097, - [3641] = 1098, - [3642] = 1090, - [3643] = 250, - [3644] = 1113, - [3645] = 251, - [3646] = 1091, - [3647] = 258, - [3648] = 1096, - [3649] = 252, - [3650] = 259, - [3651] = 258, - [3652] = 1113, - [3653] = 259, - [3654] = 1099, - [3655] = 256, - [3656] = 258, - [3657] = 1098, - [3658] = 1090, - [3659] = 1130, - [3660] = 1138, - [3661] = 256, - [3662] = 1113, - [3663] = 1134, - [3664] = 259, - [3665] = 1139, - [3666] = 1132, - [3667] = 1146, - [3668] = 1113, - [3669] = 1130, - [3670] = 1091, - [3671] = 252, - [3672] = 1144, - [3673] = 1138, - [3674] = 1139, - [3675] = 1096, - [3676] = 1097, - [3677] = 1146, - [3678] = 250, - [3679] = 251, - [3680] = 253, - [3681] = 1146, - [3682] = 1130, - [3683] = 268, - [3684] = 1139, - [3685] = 1113, - [3686] = 1113, - [3687] = 1216, - [3688] = 270, - [3689] = 1139, - [3690] = 1204, - [3691] = 1199, - [3692] = 1176, - [3693] = 1199, - [3694] = 259, - [3695] = 1026, - [3696] = 1212, - [3697] = 256, - [3698] = 1138, - [3699] = 1204, - [3700] = 1130, - [3701] = 271, - [3702] = 1027, - [3703] = 266, - [3704] = 1216, - [3705] = 3705, - [3706] = 258, - [3707] = 1139, - [3708] = 1176, - [3709] = 1212, - [3710] = 1130, - [3711] = 1146, - [3712] = 269, - [3713] = 1138, - [3714] = 1138, - [3715] = 1199, - [3716] = 1248, - [3717] = 1046, - [3718] = 1204, - [3719] = 1113, - [3720] = 1216, - [3721] = 1146, - [3722] = 1146, - [3723] = 269, - [3724] = 1247, - [3725] = 293, - [3726] = 294, - [3727] = 288, - [3728] = 1176, - [3729] = 1204, - [3730] = 266, - [3731] = 249, - [3732] = 289, - [3733] = 1043, - [3734] = 1139, - [3735] = 268, - [3736] = 1113, - [3737] = 1204, - [3738] = 1199, - [3739] = 1082, - [3740] = 1044, - [3741] = 271, - [3742] = 1130, - [3743] = 1212, - [3744] = 1113, - [3745] = 1027, - [3746] = 1212, - [3747] = 1063, - [3748] = 1146, - [3749] = 1069, - [3750] = 270, - [3751] = 1212, - [3752] = 1035, - [3753] = 1076, - [3754] = 1199, - [3755] = 1026, - [3756] = 1138, - [3757] = 1138, - [3758] = 1099, - [3759] = 253, - [3760] = 266, - [3761] = 1035, - [3762] = 1212, - [3763] = 1138, - [3764] = 1076, - [3765] = 271, - [3766] = 251, - [3767] = 293, - [3768] = 1248, - [3769] = 1139, - [3770] = 1248, - [3771] = 310, - [3772] = 1097, - [3773] = 294, - [3774] = 1113, - [3775] = 3775, - [3776] = 1098, - [3777] = 1043, - [3778] = 1090, - [3779] = 250, - [3780] = 270, - [3781] = 1063, - [3782] = 1069, - [3783] = 271, - [3784] = 270, - [3785] = 1130, - [3786] = 1130, - [3787] = 1146, - [3788] = 1139, - [3789] = 1091, - [3790] = 269, - [3791] = 1096, - [3792] = 1204, - [3793] = 288, - [3794] = 1113, - [3795] = 1082, - [3796] = 1130, - [3797] = 1199, - [3798] = 1146, - [3799] = 1288, - [3800] = 312, - [3801] = 269, - [3802] = 249, - [3803] = 1044, - [3804] = 1046, - [3805] = 289, - [3806] = 1247, - [3807] = 1288, - [3808] = 266, - [3809] = 1113, - [3810] = 1139, - [3811] = 1247, - [3812] = 311, - [3813] = 1146, - [3814] = 1138, - [3815] = 252, - [3816] = 253, + [3550] = 1245, + [3551] = 1247, + [3552] = 874, + [3553] = 1249, + [3554] = 1250, + [3555] = 846, + [3556] = 238, + [3557] = 877, + [3558] = 3558, + [3559] = 245, + [3560] = 3560, + [3561] = 255, + [3562] = 269, + [3563] = 264, + [3564] = 3564, + [3565] = 233, + [3566] = 1276, + [3567] = 3567, + [3568] = 3568, + [3569] = 241, + [3570] = 872, + [3571] = 873, + [3572] = 933, + [3573] = 936, + [3574] = 874, + [3575] = 888, + [3576] = 257, + [3577] = 877, + [3578] = 1093, + [3579] = 1094, + [3580] = 1097, + [3581] = 1115, + [3582] = 1127, + [3583] = 1266, + [3584] = 1136, + [3585] = 3534, + [3586] = 251, + [3587] = 1102, + [3588] = 240, + [3589] = 1138, + [3590] = 1142, + [3591] = 1241, + [3592] = 1150, + [3593] = 1093, + [3594] = 1249, + [3595] = 1250, + [3596] = 1094, + [3597] = 1097, + [3598] = 255, + [3599] = 933, + [3600] = 257, + [3601] = 1266, + [3602] = 256, + [3603] = 251, + [3604] = 1276, + [3605] = 239, + [3606] = 877, + [3607] = 872, + [3608] = 873, + [3609] = 936, + [3610] = 874, + [3611] = 3611, + [3612] = 1323, + [3613] = 888, + [3614] = 256, + [3615] = 1266, + [3616] = 339, + [3617] = 1538, + [3618] = 1151, + [3619] = 1150, + [3620] = 245, + [3621] = 1151, + [3622] = 877, + [3623] = 874, + [3624] = 943, + [3625] = 3625, + [3626] = 238, + [3627] = 312, + [3628] = 846, + [3629] = 251, + [3630] = 241, + [3631] = 240, + [3632] = 252, + [3633] = 1539, + [3634] = 3634, + [3635] = 846, + [3636] = 1540, + [3637] = 284, + [3638] = 1241, + [3639] = 1524, + [3640] = 933, + [3641] = 269, + [3642] = 1102, + [3643] = 340, + [3644] = 323, + [3645] = 324, + [3646] = 3646, + [3647] = 945, + [3648] = 255, + [3649] = 373, + [3650] = 257, + [3651] = 936, + [3652] = 374, + [3653] = 933, + [3654] = 256, + [3655] = 872, + [3656] = 888, + [3657] = 873, + [3658] = 375, + [3659] = 874, + [3660] = 330, + [3661] = 1527, + [3662] = 936, + [3663] = 251, + [3664] = 376, + [3665] = 888, + [3666] = 1245, + [3667] = 1276, + [3668] = 1115, + [3669] = 233, + [3670] = 237, + [3671] = 1536, + [3672] = 264, + [3673] = 233, + [3674] = 1247, + [3675] = 872, + [3676] = 234, + [3677] = 2955, + [3678] = 334, + [3679] = 257, + [3680] = 3434, + [3681] = 235, + [3682] = 933, + [3683] = 936, + [3684] = 888, + [3685] = 271, + [3686] = 237, + [3687] = 272, + [3688] = 277, + [3689] = 238, + [3690] = 237, + [3691] = 333, + [3692] = 252, + [3693] = 877, + [3694] = 264, + [3695] = 3695, + [3696] = 234, + [3697] = 330, + [3698] = 1504, + [3699] = 3699, + [3700] = 2972, + [3701] = 1310, + [3702] = 3699, + [3703] = 235, + [3704] = 270, + [3705] = 335, + [3706] = 1568, + [3707] = 233, + [3708] = 3708, + [3709] = 233, + [3710] = 1569, + [3711] = 233, + [3712] = 1570, + [3713] = 266, + [3714] = 1597, + [3715] = 1598, + [3716] = 234, + [3717] = 1599, + [3718] = 873, + [3719] = 1600, + [3720] = 235, + [3721] = 3721, + [3722] = 248, + [3723] = 270, + [3724] = 266, + [3725] = 1136, + [3726] = 269, + [3727] = 284, + [3728] = 1371, + [3729] = 255, + [3730] = 1684, + [3731] = 386, + [3732] = 1667, + [3733] = 1136, + [3734] = 245, + [3735] = 234, + [3736] = 403, + [3737] = 769, + [3738] = 404, + [3739] = 235, + [3740] = 872, + [3741] = 873, + [3742] = 387, + [3743] = 874, + [3744] = 241, + [3745] = 374, + [3746] = 3746, + [3747] = 933, + [3748] = 271, + [3749] = 237, + [3750] = 3750, + [3751] = 406, + [3752] = 1480, + [3753] = 846, + [3754] = 240, + [3755] = 272, + [3756] = 330, + [3757] = 945, + [3758] = 943, + [3759] = 3759, + [3760] = 1714, + [3761] = 1715, + [3762] = 245, + [3763] = 239, + [3764] = 388, + [3765] = 284, + [3766] = 933, + [3767] = 241, + [3768] = 936, + [3769] = 407, + [3770] = 888, + [3771] = 3771, + [3772] = 240, + [3773] = 341, + [3774] = 238, + [3775] = 270, + [3776] = 234, + [3777] = 333, + [3778] = 3778, + [3779] = 271, + [3780] = 266, + [3781] = 237, + [3782] = 872, + [3783] = 269, + [3784] = 389, + [3785] = 264, + [3786] = 375, + [3787] = 269, + [3788] = 873, + [3789] = 248, + [3790] = 3790, + [3791] = 410, + [3792] = 234, + [3793] = 1632, + [3794] = 390, + [3795] = 264, + [3796] = 334, + [3797] = 991, + [3798] = 252, + [3799] = 874, + [3800] = 936, + [3801] = 245, + [3802] = 391, + [3803] = 235, + [3804] = 376, + [3805] = 373, + [3806] = 382, + [3807] = 877, + [3808] = 933, + [3809] = 3809, + [3810] = 3634, + [3811] = 392, + [3812] = 241, + [3813] = 3813, + [3814] = 270, + [3815] = 266, + [3816] = 888, [3817] = 3817, - [3818] = 1288, - [3819] = 1416, - [3820] = 1427, - [3821] = 343, - [3822] = 1365, - [3823] = 1414, - [3824] = 1398, - [3825] = 1099, - [3826] = 252, - [3827] = 251, - [3828] = 250, - [3829] = 341, - [3830] = 335, - [3831] = 339, - [3832] = 355, - [3833] = 1113, - [3834] = 3775, - [3835] = 3835, - [3836] = 3836, - [3837] = 359, - [3838] = 353, - [3839] = 1416, - [3840] = 3840, - [3841] = 258, - [3842] = 256, - [3843] = 259, - [3844] = 293, - [3845] = 294, - [3846] = 1427, - [3847] = 310, - [3848] = 311, - [3849] = 312, - [3850] = 1365, - [3851] = 1204, - [3852] = 1199, - [3853] = 1212, - [3854] = 1414, - [3855] = 1138, - [3856] = 1139, - [3857] = 1130, - [3858] = 249, - [3859] = 1113, - [3860] = 1386, - [3861] = 1441, - [3862] = 1113, - [3863] = 288, - [3864] = 266, - [3865] = 289, - [3866] = 270, - [3867] = 269, - [3868] = 271, - [3869] = 1364, - [3870] = 1204, - [3871] = 1199, - [3872] = 1212, - [3873] = 364, - [3874] = 293, - [3875] = 294, - [3876] = 1146, - [3877] = 1097, - [3878] = 1098, - [3879] = 1138, - [3880] = 1139, - [3881] = 1130, - [3882] = 1090, - [3883] = 1091, - [3884] = 1096, - [3885] = 1204, - [3886] = 1199, - [3887] = 1212, - [3888] = 288, - [3889] = 289, - [3890] = 1113, - [3891] = 1138, - [3892] = 1139, - [3893] = 1130, - [3894] = 1146, - [3895] = 1146, - [3896] = 1422, - [3897] = 333, - [3898] = 346, - [3899] = 1412, - [3900] = 1382, - [3901] = 1438, - [3902] = 1378, - [3903] = 259, - [3904] = 431, - [3905] = 1443, - [3906] = 1445, - [3907] = 405, - [3908] = 1398, - [3909] = 3909, - [3910] = 311, - [3911] = 310, - [3912] = 1113, - [3913] = 3913, - [3914] = 341, - [3915] = 412, - [3916] = 425, - [3917] = 312, - [3918] = 3918, - [3919] = 3919, - [3920] = 1204, - [3921] = 1199, - [3922] = 1463, - [3923] = 1212, - [3924] = 1466, - [3925] = 249, - [3926] = 364, - [3927] = 1474, - [3928] = 1476, - [3929] = 249, - [3930] = 1378, - [3931] = 252, - [3932] = 271, - [3933] = 1386, - [3934] = 251, - [3935] = 266, - [3936] = 250, - [3937] = 270, - [3938] = 269, - [3939] = 1146, - [3940] = 1138, - [3941] = 1139, - [3942] = 1130, - [3943] = 335, - [3944] = 435, - [3945] = 339, - [3946] = 1138, - [3947] = 1139, - [3948] = 355, - [3949] = 1130, - [3950] = 405, - [3951] = 249, - [3952] = 1441, - [3953] = 412, - [3954] = 425, - [3955] = 293, - [3956] = 294, - [3957] = 359, - [3958] = 258, - [3959] = 253, - [3960] = 256, - [3961] = 1364, - [3962] = 269, - [3963] = 1592, - [3964] = 1412, - [3965] = 353, - [3966] = 311, - [3967] = 312, - [3968] = 1113, - [3969] = 1416, - [3970] = 1382, - [3971] = 403, - [3972] = 253, - [3973] = 3973, - [3974] = 3974, - [3975] = 364, - [3976] = 431, - [3977] = 1146, - [3978] = 1204, - [3979] = 1199, - [3980] = 1212, - [3981] = 333, - [3982] = 266, - [3983] = 1138, - [3984] = 1460, - [3985] = 1427, - [3986] = 1139, - [3987] = 346, - [3988] = 1113, - [3989] = 1146, - [3990] = 1398, - [3991] = 3991, - [3992] = 271, - [3993] = 1422, - [3994] = 288, - [3995] = 289, - [3996] = 1138, - [3997] = 1139, - [3998] = 1130, - [3999] = 1204, - [4000] = 1199, - [4001] = 1130, - [4002] = 1212, - [4003] = 4003, - [4004] = 1365, - [4005] = 1146, - [4006] = 4006, - [4007] = 4007, - [4008] = 4008, - [4009] = 4009, - [4010] = 270, - [4011] = 1438, - [4012] = 1414, - [4013] = 4013, - [4014] = 343, - [4015] = 4015, - [4016] = 1582, - [4017] = 4008, - [4018] = 310, - [4019] = 1130, - [4020] = 258, - [4021] = 310, - [4022] = 435, - [4023] = 249, - [4024] = 1412, - [4025] = 1666, - [4026] = 341, - [4027] = 412, - [4028] = 425, - [4029] = 1113, - [4030] = 1216, - [4031] = 269, - [4032] = 1582, - [4033] = 256, - [4034] = 293, - [4035] = 294, - [4036] = 271, - [4037] = 1146, - [4038] = 266, - [4039] = 270, - [4040] = 269, - [4041] = 1138, - [4042] = 1378, - [4043] = 1386, - [4044] = 1139, - [4045] = 252, - [4046] = 1441, - [4047] = 259, - [4048] = 1176, - [4049] = 252, - [4050] = 431, - [4051] = 1775, - [4052] = 1776, - [4053] = 364, - [4054] = 1146, - [4055] = 1777, - [4056] = 1139, - [4057] = 253, - [4058] = 1138, - [4059] = 1364, - [4060] = 4060, - [4061] = 250, - [4062] = 288, - [4063] = 1460, - [4064] = 289, - [4065] = 251, - [4066] = 1778, - [4067] = 1779, - [4068] = 1780, - [4069] = 1443, - [4070] = 1113, - [4071] = 289, - [4072] = 1700, - [4073] = 250, - [4074] = 522, - [4075] = 523, - [4076] = 524, - [4077] = 525, - [4078] = 4078, - [4079] = 4079, - [4080] = 1769, - [4081] = 268, - [4082] = 1204, - [4083] = 1463, - [4084] = 1466, - [4085] = 403, - [4086] = 1199, - [4087] = 1138, - [4088] = 1139, - [4089] = 1212, - [4090] = 1130, - [4091] = 1474, - [4092] = 1476, - [4093] = 257, - [4094] = 1592, - [4095] = 270, - [4096] = 1204, - [4097] = 249, - [4098] = 271, - [4099] = 266, - [4100] = 270, - [4101] = 1199, - [4102] = 269, - [4103] = 406, - [4104] = 1204, - [4105] = 1199, - [4106] = 1212, - [4107] = 288, - [4108] = 249, - [4109] = 403, - [4110] = 271, - [4111] = 1130, - [4112] = 1204, - [4113] = 253, - [4114] = 252, - [4115] = 1212, - [4116] = 1592, - [4117] = 3817, - [4118] = 1146, - [4119] = 1199, - [4120] = 251, - [4121] = 4121, - [4122] = 1691, - [4123] = 1625, - [4124] = 4121, - [4125] = 1785, - [4126] = 1786, - [4127] = 1787, - [4128] = 1788, - [4129] = 1789, - [4130] = 249, - [4131] = 1790, - [4132] = 1791, - [4133] = 4133, - [4134] = 266, - [4135] = 341, - [4136] = 1445, - [4137] = 1212, - [4138] = 293, - [4139] = 294, - [4140] = 249, - [4141] = 415, - [4142] = 1443, - [4143] = 1582, - [4144] = 250, - [4145] = 4145, - [4146] = 4146, - [4147] = 268, - [4148] = 405, - [4149] = 311, - [4150] = 1445, - [4151] = 251, - [4152] = 312, - [4153] = 1676, - [4154] = 264, - [4155] = 4155, - [4156] = 1382, - [4157] = 524, - [4158] = 288, - [4159] = 4155, - [4160] = 1027, - [4161] = 258, - [4162] = 253, - [4163] = 289, - [4164] = 1216, - [4165] = 310, - [4166] = 1138, - [4167] = 252, - [4168] = 1139, - [4169] = 312, - [4170] = 264, - [4171] = 311, - [4172] = 1130, - [4173] = 312, - [4174] = 1176, - [4175] = 4175, - [4176] = 1774, - [4177] = 1113, - [4178] = 1770, - [4179] = 1771, - [4180] = 1700, - [4181] = 288, - [4182] = 1772, - [4183] = 289, - [4184] = 1773, - [4185] = 252, - [4186] = 293, - [4187] = 294, - [4188] = 257, - [4189] = 252, - [4190] = 522, - [4191] = 251, - [4192] = 4192, - [4193] = 250, - [4194] = 1113, - [4195] = 4195, - [4196] = 253, - [4197] = 252, - [4198] = 258, - [4199] = 4199, - [4200] = 251, + [3818] = 1665, + [3819] = 3819, + [3820] = 936, + [3821] = 1323, + [3822] = 255, + [3823] = 888, + [3824] = 257, + [3825] = 376, + [3826] = 235, + [3827] = 256, + [3828] = 877, + [3829] = 238, + [3830] = 1102, + [3831] = 323, + [3832] = 324, + [3833] = 239, + [3834] = 393, + [3835] = 249, + [3836] = 1730, + [3837] = 1731, + [3838] = 251, + [3839] = 846, + [3840] = 1310, + [3841] = 3841, + [3842] = 992, + [3843] = 233, + [3844] = 233, + [3845] = 384, + [3846] = 240, + [3847] = 1648, + [3848] = 3848, + [3849] = 237, + [3850] = 356, + [3851] = 768, + [3852] = 517, + [3853] = 385, + [3854] = 270, + [3855] = 233, + [3856] = 277, + [3857] = 237, + [3858] = 266, + [3859] = 383, + [3860] = 1371, + [3861] = 340, + [3862] = 234, + [3863] = 234, + [3864] = 269, + [3865] = 235, + [3866] = 248, + [3867] = 339, + [3868] = 399, + [3869] = 400, + [3870] = 373, + [3871] = 375, + [3872] = 238, + [3873] = 846, + [3874] = 3874, + [3875] = 235, + [3876] = 272, + [3877] = 264, + [3878] = 374, + [3879] = 380, + [3880] = 3880, + [3881] = 3491, + [3882] = 238, + [3883] = 269, + [3884] = 264, + [3885] = 237, + [3886] = 877, + [3887] = 1649, + [3888] = 233, + [3889] = 1650, + [3890] = 277, + [3891] = 3891, + [3892] = 3892, + [3893] = 3893, + [3894] = 1600, + [3895] = 393, + [3896] = 238, + [3897] = 237, + [3898] = 248, + [3899] = 3899, + [3900] = 846, + [3901] = 1650, + [3902] = 3902, + [3903] = 249, + [3904] = 277, + [3905] = 3905, + [3906] = 242, + [3907] = 1665, + [3908] = 1538, + [3909] = 271, + [3910] = 388, + [3911] = 812, + [3912] = 272, + [3913] = 383, + [3914] = 933, + [3915] = 3915, + [3916] = 241, + [3917] = 1539, + [3918] = 936, + [3919] = 888, + [3920] = 1540, + [3921] = 1524, + [3922] = 234, + [3923] = 1527, + [3924] = 391, + [3925] = 240, + [3926] = 3926, + [3927] = 1536, + [3928] = 3928, + [3929] = 255, + [3930] = 786, + [3931] = 872, + [3932] = 873, + [3933] = 874, + [3934] = 385, + [3935] = 3935, + [3936] = 791, + [3937] = 3937, + [3938] = 239, + [3939] = 3939, + [3940] = 399, + [3941] = 389, + [3942] = 400, + [3943] = 233, + [3944] = 237, + [3945] = 234, + [3946] = 234, + [3947] = 1504, + [3948] = 277, + [3949] = 235, + [3950] = 252, + [3951] = 933, + [3952] = 936, + [3953] = 248, + [3954] = 888, + [3955] = 3611, + [3956] = 403, + [3957] = 404, + [3958] = 233, + [3959] = 406, + [3960] = 235, + [3961] = 1371, + [3962] = 373, + [3963] = 3963, + [3964] = 248, + [3965] = 877, + [3966] = 374, + [3967] = 392, + [3968] = 390, + [3969] = 407, + [3970] = 341, + [3971] = 1053, + [3972] = 375, + [3973] = 410, + [3974] = 376, + [3975] = 238, + [3976] = 872, + [3977] = 1102, + [3978] = 382, + [3979] = 873, + [3980] = 874, + [3981] = 877, + [3982] = 517, + [3983] = 242, + [3984] = 3984, + [3985] = 257, + [3986] = 846, + [3987] = 3987, + [3988] = 1667, + [3989] = 277, + [3990] = 3771, + [3991] = 271, + [3992] = 238, + [3993] = 237, + [3994] = 245, + [3995] = 1136, + [3996] = 239, + [3997] = 284, + [3998] = 272, + [3999] = 271, + [4000] = 380, + [4001] = 1684, + [4002] = 4002, + [4003] = 269, + [4004] = 256, + [4005] = 239, + [4006] = 991, + [4007] = 241, + [4008] = 384, + [4009] = 1714, + [4010] = 238, + [4011] = 1715, + [4012] = 4012, + [4013] = 233, + [4014] = 264, + [4015] = 3695, + [4016] = 251, + [4017] = 387, + [4018] = 992, + [4019] = 272, + [4020] = 814, + [4021] = 240, + [4022] = 4022, + [4023] = 4023, + [4024] = 245, + [4025] = 1649, + [4026] = 1730, + [4027] = 1731, + [4028] = 241, + [4029] = 4029, + [4030] = 1632, + [4031] = 815, + [4032] = 816, + [4033] = 269, + [4034] = 237, + [4035] = 240, + [4036] = 284, + [4037] = 238, + [4038] = 3625, + [4039] = 819, + [4040] = 249, + [4041] = 846, + [4042] = 872, + [4043] = 234, + [4044] = 873, + [4045] = 386, + [4046] = 235, + [4047] = 3087, + [4048] = 1568, + [4049] = 795, + [4050] = 874, + [4051] = 238, + [4052] = 264, + [4053] = 239, + [4054] = 270, + [4055] = 245, + [4056] = 266, + [4057] = 245, + [4058] = 4058, + [4059] = 241, + [4060] = 356, + [4061] = 240, + [4062] = 1569, + [4063] = 1570, + [4064] = 248, + [4065] = 4065, + [4066] = 4066, + [4067] = 3926, + [4068] = 241, + [4069] = 4069, + [4070] = 1648, + [4071] = 1597, + [4072] = 3880, + [4073] = 3721, + [4074] = 242, + [4075] = 238, + [4076] = 245, + [4077] = 1598, + [4078] = 1599, + [4079] = 240, + [4080] = 1480, + [4081] = 4081, + [4082] = 235, + [4083] = 936, + [4084] = 248, + [4085] = 284, + [4086] = 256, + [4087] = 252, + [4088] = 278, + [4089] = 1136, + [4090] = 241, + [4091] = 936, + [4092] = 256, + [4093] = 1524, + [4094] = 1527, + [4095] = 234, + [4096] = 233, + [4097] = 251, + [4098] = 888, + [4099] = 255, + [4100] = 846, + [4101] = 832, + [4102] = 3093, + [4103] = 256, + [4104] = 3098, + [4105] = 877, + [4106] = 874, + [4107] = 1536, + [4108] = 256, + [4109] = 1094, + [4110] = 1053, + [4111] = 249, + [4112] = 1138, + [4113] = 257, + [4114] = 278, + [4115] = 4115, + [4116] = 840, + [4117] = 3112, + [4118] = 242, + [4119] = 821, + [4120] = 293, + [4121] = 1115, + [4122] = 239, + [4123] = 1504, + [4124] = 822, + [4125] = 293, + [4126] = 269, + [4127] = 872, + [4128] = 873, + [4129] = 257, + [4130] = 874, + [4131] = 1102, + [4132] = 828, + [4133] = 264, + [4134] = 251, + [4135] = 245, + [4136] = 235, + [4137] = 1104, + [4138] = 292, + [4139] = 312, + [4140] = 252, + [4141] = 294, + [4142] = 292, + [4143] = 933, + [4144] = 936, + [4145] = 1538, + [4146] = 1539, + [4147] = 1540, + [4148] = 249, + [4149] = 888, + [4150] = 240, + [4151] = 1097, + [4152] = 257, + [4153] = 241, + [4154] = 827, + [4155] = 238, + [4156] = 270, + [4157] = 256, + [4158] = 266, + [4159] = 251, + [4160] = 4160, + [4161] = 284, + [4162] = 255, + [4163] = 252, + [4164] = 933, + [4165] = 238, + [4166] = 291, + [4167] = 888, + [4168] = 248, + [4169] = 1480, + [4170] = 234, + [4171] = 873, + [4172] = 3099, + [4173] = 4173, + [4174] = 257, + [4175] = 240, + [4176] = 237, + [4177] = 1078, + [4178] = 288, + [4179] = 4179, + [4180] = 242, + [4181] = 277, + [4182] = 872, + [4183] = 238, + [4184] = 1127, + [4185] = 877, + [4186] = 284, + [4187] = 4187, + [4188] = 255, + [4189] = 872, + [4190] = 237, + [4191] = 252, + [4192] = 4160, + [4193] = 255, + [4194] = 4187, + [4195] = 873, + [4196] = 251, + [4197] = 242, + [4198] = 4198, + [4199] = 245, + [4200] = 239, [4201] = 4201, - [4202] = 256, - [4203] = 256, - [4204] = 251, - [4205] = 268, - [4206] = 1768, - [4207] = 259, - [4208] = 250, - [4209] = 4209, - [4210] = 288, - [4211] = 289, - [4212] = 251, - [4213] = 253, - [4214] = 448, - [4215] = 523, - [4216] = 503, - [4217] = 3919, - [4218] = 1204, - [4219] = 1199, - [4220] = 518, - [4221] = 1212, - [4222] = 438, - [4223] = 442, - [4224] = 445, - [4225] = 4225, - [4226] = 446, - [4227] = 293, - [4228] = 294, - [4229] = 461, - [4230] = 462, - [4231] = 476, - [4232] = 477, - [4233] = 483, - [4234] = 250, - [4235] = 249, - [4236] = 310, - [4237] = 253, - [4238] = 415, - [4239] = 1113, - [4240] = 257, - [4241] = 405, - [4242] = 4242, - [4243] = 1026, - [4244] = 517, - [4245] = 1382, - [4246] = 444, - [4247] = 522, - [4248] = 4248, - [4249] = 1146, - [4250] = 249, - [4251] = 459, - [4252] = 460, - [4253] = 1625, - [4254] = 523, - [4255] = 412, - [4256] = 425, - [4257] = 1247, - [4258] = 466, - [4259] = 1204, - [4260] = 252, - [4261] = 1138, - [4262] = 1139, - [4263] = 472, - [4264] = 1130, - [4265] = 473, - [4266] = 524, - [4267] = 403, - [4268] = 480, - [4269] = 1199, - [4270] = 331, - [4271] = 525, - [4272] = 1248, - [4273] = 1212, - [4274] = 1204, - [4275] = 1199, - [4276] = 341, - [4277] = 1212, - [4278] = 525, - [4279] = 431, - [4280] = 4280, - [4281] = 1783, - [4282] = 1784, - [4283] = 1691, - [4284] = 282, - [4285] = 251, - [4286] = 249, - [4287] = 250, - [4288] = 288, - [4289] = 289, - [4290] = 1146, - [4291] = 499, - [4292] = 4292, - [4293] = 4293, - [4294] = 1146, - [4295] = 1781, - [4296] = 259, - [4297] = 293, - [4298] = 294, - [4299] = 1782, - [4300] = 249, - [4301] = 271, - [4302] = 4302, - [4303] = 406, - [4304] = 4304, + [4202] = 249, + [4203] = 1142, + [4204] = 241, + [4205] = 255, + [4206] = 240, + [4207] = 1136, + [4208] = 239, + [4209] = 239, + [4210] = 248, + [4211] = 242, + [4212] = 248, + [4213] = 245, + [4214] = 289, + [4215] = 237, + [4216] = 249, + [4217] = 271, + [4218] = 234, + [4219] = 235, + [4220] = 294, + [4221] = 1568, + [4222] = 257, + [4223] = 1569, + [4224] = 1570, + [4225] = 279, + [4226] = 252, + [4227] = 279, + [4228] = 238, + [4229] = 257, + [4230] = 1122, + [4231] = 245, + [4232] = 874, + [4233] = 272, + [4234] = 1597, + [4235] = 251, + [4236] = 933, + [4237] = 1598, + [4238] = 1599, + [4239] = 1600, + [4240] = 235, + [4241] = 1079, + [4242] = 290, + [4243] = 241, + [4244] = 256, + [4245] = 240, + [4246] = 288, + [4247] = 233, + [4248] = 251, + [4249] = 4249, + [4250] = 4250, + [4251] = 4251, + [4252] = 291, + [4253] = 1093, + [4254] = 290, + [4255] = 1102, + [4256] = 234, + [4257] = 233, + [4258] = 257, + [4259] = 271, + [4260] = 269, + [4261] = 936, + [4262] = 252, + [4263] = 1079, + [4264] = 237, + [4265] = 238, + [4266] = 517, + [4267] = 877, + [4268] = 239, + [4269] = 272, + [4270] = 933, + [4271] = 245, + [4272] = 238, + [4273] = 269, + [4274] = 264, + [4275] = 240, + [4276] = 277, + [4277] = 1138, + [4278] = 256, + [4279] = 888, + [4280] = 269, + [4281] = 330, + [4282] = 264, + [4283] = 245, + [4284] = 877, + [4285] = 237, + [4286] = 269, + [4287] = 264, + [4288] = 238, + [4289] = 1127, + [4290] = 1142, + [4291] = 269, + [4292] = 264, + [4293] = 270, + [4294] = 340, + [4295] = 933, + [4296] = 1136, + [4297] = 936, + [4298] = 255, + [4299] = 888, + [4300] = 234, + [4301] = 278, + [4302] = 266, + [4303] = 249, + [4304] = 233, [4305] = 4305, - [4306] = 258, - [4307] = 4307, - [4308] = 311, - [4309] = 266, - [4310] = 1767, - [4311] = 256, - [4312] = 250, - [4313] = 270, - [4314] = 259, - [4315] = 1765, - [4316] = 1412, - [4317] = 264, - [4318] = 269, - [4319] = 443, - [4320] = 294, - [4321] = 1130, - [4322] = 289, - [4323] = 1082, - [4324] = 310, - [4325] = 4325, - [4326] = 443, - [4327] = 311, - [4328] = 312, - [4329] = 444, - [4330] = 4330, - [4331] = 252, - [4332] = 288, - [4333] = 256, - [4334] = 1288, - [4335] = 2572, - [4336] = 264, - [4337] = 251, - [4338] = 4338, - [4339] = 253, - [4340] = 250, - [4341] = 1138, - [4342] = 253, - [4343] = 448, - [4344] = 1139, - [4345] = 518, - [4346] = 1130, - [4347] = 1767, - [4348] = 282, - [4349] = 438, - [4350] = 1248, - [4351] = 1768, - [4352] = 1044, - [4353] = 4078, - [4354] = 249, - [4355] = 310, - [4356] = 1769, - [4357] = 524, - [4358] = 459, - [4359] = 252, - [4360] = 1247, - [4361] = 311, - [4362] = 4362, - [4363] = 251, - [4364] = 1770, - [4365] = 4365, - [4366] = 1771, - [4367] = 4367, - [4368] = 4368, - [4369] = 250, - [4370] = 1772, - [4371] = 4371, - [4372] = 312, - [4373] = 1773, - [4374] = 460, - [4375] = 282, - [4376] = 1774, - [4377] = 1204, - [4378] = 1199, - [4379] = 1212, - [4380] = 1046, - [4381] = 1035, - [4382] = 258, - [4383] = 341, - [4384] = 1412, - [4385] = 446, - [4386] = 4145, - [4387] = 289, - [4388] = 256, - [4389] = 259, - [4390] = 1138, - [4391] = 1146, - [4392] = 1775, - [4393] = 1776, - [4394] = 1139, - [4395] = 466, - [4396] = 1130, - [4397] = 1777, - [4398] = 258, - [4399] = 253, - [4400] = 1382, - [4401] = 1778, - [4402] = 1779, - [4403] = 525, - [4404] = 1780, - [4405] = 472, - [4406] = 473, - [4407] = 476, - [4408] = 4408, - [4409] = 1781, - [4410] = 1782, - [4411] = 259, - [4412] = 257, - [4413] = 1783, - [4414] = 1146, - [4415] = 1784, - [4416] = 1043, - [4417] = 477, - [4418] = 249, - [4419] = 1785, - [4420] = 523, - [4421] = 1786, - [4422] = 1787, - [4423] = 1788, - [4424] = 1789, - [4425] = 1790, - [4426] = 1791, - [4427] = 4427, - [4428] = 259, - [4429] = 483, - [4430] = 1113, - [4431] = 253, - [4432] = 252, - [4433] = 480, - [4434] = 517, - [4435] = 258, - [4436] = 4079, - [4437] = 258, - [4438] = 262, - [4439] = 4439, - [4440] = 4440, - [4441] = 251, - [4442] = 445, + [4306] = 270, + [4307] = 846, + [4308] = 233, + [4309] = 235, + [4310] = 255, + [4311] = 266, + [4312] = 249, + [4313] = 264, + [4314] = 257, + [4315] = 255, + [4316] = 323, + [4317] = 324, + [4318] = 1276, + [4319] = 257, + [4320] = 4305, + [4321] = 256, + [4322] = 933, + [4323] = 251, + [4324] = 294, + [4325] = 249, + [4326] = 249, + [4327] = 312, + [4328] = 252, + [4329] = 872, + [4330] = 936, + [4331] = 888, + [4332] = 1266, + [4333] = 270, + [4334] = 256, + [4335] = 251, + [4336] = 248, + [4337] = 873, + [4338] = 1150, + [4339] = 266, + [4340] = 2040, + [4341] = 245, + [4342] = 4342, + [4343] = 1122, + [4344] = 1241, + [4345] = 293, + [4346] = 4346, + [4347] = 284, + [4348] = 241, + [4349] = 291, + [4350] = 240, + [4351] = 241, + [4352] = 874, + [4353] = 1245, + [4354] = 1247, + [4355] = 241, + [4356] = 1249, + [4357] = 1250, + [4358] = 251, + [4359] = 1078, + [4360] = 279, + [4361] = 233, + [4362] = 264, + [4363] = 846, + [4364] = 1104, + [4365] = 251, + [4366] = 1151, + [4367] = 266, + [4368] = 252, + [4369] = 256, + [4370] = 312, + [4371] = 517, + [4372] = 270, + [4373] = 270, + [4374] = 4305, + [4375] = 269, + [4376] = 1102, + [4377] = 1093, + [4378] = 270, + [4379] = 1094, + [4380] = 266, + [4381] = 288, + [4382] = 1097, + [4383] = 290, + [4384] = 242, + [4385] = 266, + [4386] = 255, + [4387] = 288, + [4388] = 240, + [4389] = 335, + [4390] = 292, + [4391] = 233, + [4392] = 255, + [4393] = 235, + [4394] = 1115, + [4395] = 257, + [4396] = 339, + [4397] = 888, + [4398] = 874, + [4399] = 340, + [4400] = 1241, + [4401] = 1310, + [4402] = 375, + [4403] = 277, + [4404] = 334, + [4405] = 284, + [4406] = 256, + [4407] = 277, + [4408] = 517, + [4409] = 272, + [4410] = 251, + [4411] = 4411, + [4412] = 1245, + [4413] = 1247, + [4414] = 1249, + [4415] = 1250, + [4416] = 238, + [4417] = 264, + [4418] = 293, + [4419] = 245, + [4420] = 1323, + [4421] = 238, + [4422] = 272, + [4423] = 846, + [4424] = 872, + [4425] = 872, + [4426] = 271, + [4427] = 256, + [4428] = 255, + [4429] = 234, + [4430] = 1151, + [4431] = 237, + [4432] = 269, + [4433] = 1150, + [4434] = 933, + [4435] = 241, + [4436] = 1266, + [4437] = 277, + [4438] = 846, + [4439] = 237, + [4440] = 264, + [4441] = 272, + [4442] = 266, [4443] = 270, - [4444] = 341, - [4445] = 1063, - [4446] = 1069, - [4447] = 250, - [4448] = 4448, - [4449] = 256, - [4450] = 1700, - [4451] = 1113, - [4452] = 269, - [4453] = 256, - [4454] = 503, - [4455] = 253, - [4456] = 499, - [4457] = 310, - [4458] = 331, - [4459] = 264, - [4460] = 262, - [4461] = 252, - [4462] = 1076, - [4463] = 4463, - [4464] = 1765, - [4465] = 311, - [4466] = 257, - [4467] = 442, - [4468] = 262, - [4469] = 268, - [4470] = 257, - [4471] = 312, - [4472] = 259, - [4473] = 461, - [4474] = 258, + [4444] = 4444, + [4445] = 235, + [4446] = 333, + [4447] = 294, + [4448] = 376, + [4449] = 873, + [4450] = 239, + [4451] = 877, + [4452] = 235, + [4453] = 237, + [4454] = 4454, + [4455] = 873, + [4456] = 242, + [4457] = 323, + [4458] = 235, + [4459] = 234, + [4460] = 269, + [4461] = 324, + [4462] = 269, + [4463] = 234, + [4464] = 312, + [4465] = 241, + [4466] = 234, + [4467] = 237, + [4468] = 234, + [4469] = 257, + [4470] = 255, + [4471] = 235, + [4472] = 877, + [4473] = 874, + [4474] = 1371, [4475] = 264, - [4476] = 462, - [4477] = 251, - [4478] = 1113, - [4479] = 259, - [4480] = 4480, - [4481] = 4481, - [4482] = 4482, - [4483] = 250, - [4484] = 264, - [4485] = 253, - [4486] = 271, - [4487] = 4175, + [4476] = 1276, + [4477] = 277, + [4478] = 264, + [4479] = 2040, + [4480] = 233, + [4481] = 266, + [4482] = 330, + [4483] = 312, + [4484] = 238, + [4485] = 271, + [4486] = 257, + [4487] = 277, [4488] = 249, - [4489] = 288, - [4490] = 1204, - [4491] = 253, - [4492] = 1138, - [4493] = 293, - [4494] = 4060, - [4495] = 256, - [4496] = 257, - [4497] = 1199, - [4498] = 4498, - [4499] = 4499, + [4489] = 248, + [4490] = 251, + [4491] = 334, + [4492] = 335, + [4493] = 936, + [4494] = 4444, + [4495] = 248, + [4496] = 271, + [4497] = 270, + [4498] = 266, + [4499] = 252, [4500] = 4500, - [4501] = 4501, - [4502] = 4292, - [4503] = 1139, - [4504] = 4463, - [4505] = 266, - [4506] = 1212, - [4507] = 522, - [4508] = 4508, - [4509] = 264, - [4510] = 268, - [4511] = 1412, - [4512] = 1212, - [4513] = 1427, - [4514] = 1412, - [4515] = 4515, - [4516] = 250, - [4517] = 1212, - [4518] = 270, - [4519] = 1422, - [4520] = 258, - [4521] = 293, - [4522] = 294, - [4523] = 1364, - [4524] = 1769, - [4525] = 249, - [4526] = 4526, - [4527] = 258, - [4528] = 269, - [4529] = 262, - [4530] = 353, - [4531] = 259, - [4532] = 268, - [4533] = 1113, - [4534] = 1288, - [4535] = 252, - [4536] = 266, - [4537] = 1378, - [4538] = 256, - [4539] = 1138, - [4540] = 1386, - [4541] = 268, - [4542] = 264, - [4543] = 266, - [4544] = 1775, - [4545] = 1776, - [4546] = 1139, - [4547] = 251, - [4548] = 343, - [4549] = 1777, - [4550] = 1765, - [4551] = 1365, - [4552] = 333, - [4553] = 1130, - [4554] = 270, - [4555] = 264, - [4556] = 250, - [4557] = 4557, - [4558] = 1441, - [4559] = 269, - [4560] = 1204, - [4561] = 1199, - [4562] = 1382, - [4563] = 4563, - [4564] = 269, - [4565] = 1146, - [4566] = 1778, - [4567] = 1779, - [4568] = 1780, - [4569] = 259, - [4570] = 341, - [4571] = 1138, - [4572] = 4572, - [4573] = 1398, - [4574] = 253, - [4575] = 4515, - [4576] = 266, - [4577] = 346, - [4578] = 1212, - [4579] = 1146, - [4580] = 1785, - [4581] = 1786, - [4582] = 1787, - [4583] = 1788, - [4584] = 1789, - [4585] = 1790, - [4586] = 1791, - [4587] = 1382, - [4588] = 289, - [4589] = 346, - [4590] = 282, - [4591] = 257, - [4592] = 258, - [4593] = 359, - [4594] = 271, - [4595] = 1199, - [4596] = 270, - [4597] = 256, - [4598] = 282, - [4599] = 1414, - [4600] = 262, - [4601] = 270, - [4602] = 2744, - [4603] = 252, - [4604] = 258, - [4605] = 250, - [4606] = 268, - [4607] = 353, - [4608] = 269, - [4609] = 4609, - [4610] = 253, - [4611] = 270, - [4612] = 310, - [4613] = 1139, - [4614] = 262, - [4615] = 364, - [4616] = 271, - [4617] = 1099, - [4618] = 271, - [4619] = 256, - [4620] = 269, - [4621] = 249, - [4622] = 253, - [4623] = 256, - [4624] = 282, - [4625] = 341, - [4626] = 268, - [4627] = 282, - [4628] = 341, - [4629] = 1130, - [4630] = 253, - [4631] = 251, - [4632] = 259, - [4633] = 2748, - [4634] = 251, - [4635] = 270, - [4636] = 2749, - [4637] = 259, - [4638] = 2750, - [4639] = 335, - [4640] = 339, - [4641] = 266, - [4642] = 1097, - [4643] = 1098, - [4644] = 257, - [4645] = 355, - [4646] = 257, - [4647] = 269, - [4648] = 357, - [4649] = 1204, - [4650] = 4572, - [4651] = 1416, - [4652] = 311, - [4653] = 4653, - [4654] = 266, - [4655] = 335, - [4656] = 266, - [4657] = 1090, - [4658] = 1091, - [4659] = 1096, - [4660] = 1199, - [4661] = 264, - [4662] = 288, - [4663] = 359, - [4664] = 339, - [4665] = 312, - [4666] = 4666, - [4667] = 1204, - [4668] = 1138, - [4669] = 1139, - [4670] = 333, - [4671] = 1130, - [4672] = 355, - [4673] = 343, - [4674] = 271, - [4675] = 1438, - [4676] = 271, - [4677] = 262, - [4678] = 257, - [4679] = 252, - [4680] = 293, - [4681] = 1438, - [4682] = 259, - [4683] = 253, - [4684] = 1364, - [4685] = 4685, - [4686] = 293, - [4687] = 1113, - [4688] = 294, - [4689] = 343, - [4690] = 258, - [4691] = 435, - [4692] = 256, - [4693] = 259, - [4694] = 268, - [4695] = 249, - [4696] = 293, - [4697] = 294, - [4698] = 331, - [4699] = 1422, - [4700] = 249, - [4701] = 271, - [4702] = 1582, - [4703] = 249, - [4704] = 252, - [4705] = 431, - [4706] = 251, - [4707] = 257, - [4708] = 250, - [4709] = 1138, - [4710] = 1139, - [4711] = 1130, - [4712] = 293, - [4713] = 294, - [4714] = 341, - [4715] = 271, - [4716] = 293, - [4717] = 294, - [4718] = 331, - [4719] = 4719, - [4720] = 1460, - [4721] = 1592, - [4722] = 282, - [4723] = 293, - [4724] = 294, - [4725] = 1204, - [4726] = 271, - [4727] = 1199, - [4728] = 1212, - [4729] = 266, - [4730] = 266, - [4731] = 1398, - [4732] = 1443, - [4733] = 270, - [4734] = 310, - [4735] = 269, - [4736] = 4736, - [4737] = 253, - [4738] = 1445, - [4739] = 403, - [4740] = 1416, - [4741] = 335, - [4742] = 1463, - [4743] = 339, - [4744] = 364, - [4745] = 1466, - [4746] = 262, - [4747] = 311, - [4748] = 355, - [4749] = 249, - [4750] = 1146, - [4751] = 252, - [4752] = 249, - [4753] = 1378, - [4754] = 312, - [4755] = 271, - [4756] = 1414, - [4757] = 1204, - [4758] = 1199, - [4759] = 268, - [4760] = 288, - [4761] = 289, - [4762] = 1146, - [4763] = 1212, - [4764] = 1204, - [4765] = 288, - [4766] = 289, - [4767] = 288, - [4768] = 289, - [4769] = 288, - [4770] = 289, - [4771] = 1199, - [4772] = 1212, - [4773] = 1474, - [4774] = 1441, - [4775] = 1476, - [4776] = 1113, - [4777] = 258, - [4778] = 4685, - [4779] = 282, - [4780] = 256, - [4781] = 253, - [4782] = 4685, - [4783] = 259, - [4784] = 343, - [4785] = 256, - [4786] = 1412, - [4787] = 251, - [4788] = 288, - [4789] = 264, - [4790] = 333, - [4791] = 1382, - [4792] = 346, - [4793] = 266, - [4794] = 270, - [4795] = 359, - [4796] = 353, - [4797] = 2510, - [4798] = 1427, - [4799] = 270, - [4800] = 258, - [4801] = 282, - [4802] = 250, - [4803] = 269, - [4804] = 271, - [4805] = 364, - [4806] = 289, - [4807] = 266, - [4808] = 269, - [4809] = 1365, - [4810] = 282, - [4811] = 270, - [4812] = 405, - [4813] = 268, - [4814] = 269, - [4815] = 412, - [4816] = 294, - [4817] = 288, - [4818] = 425, - [4819] = 289, - [4820] = 1386, - [4821] = 1445, - [4822] = 522, - [4823] = 282, - [4824] = 1138, - [4825] = 249, - [4826] = 311, - [4827] = 253, - [4828] = 311, - [4829] = 312, - [4830] = 253, - [4831] = 1139, - [4832] = 524, - [4833] = 310, - [4834] = 269, - [4835] = 1146, - [4836] = 250, - [4837] = 253, - [4838] = 311, - [4839] = 312, - [4840] = 1130, - [4841] = 431, - [4842] = 311, - [4843] = 257, - [4844] = 525, - [4845] = 333, - [4846] = 1146, - [4847] = 293, - [4848] = 294, - [4849] = 312, - [4850] = 1592, - [4851] = 249, - [4852] = 415, - [4853] = 312, - [4854] = 1113, - [4855] = 403, - [4856] = 310, - [4857] = 1443, - [4858] = 264, - [4859] = 253, - [4860] = 252, - [4861] = 252, - [4862] = 1691, - [4863] = 251, - [4864] = 251, - [4865] = 251, - [4866] = 312, - [4867] = 346, - [4868] = 250, - [4869] = 310, - [4870] = 311, - [4871] = 1582, - [4872] = 523, - [4873] = 288, - [4874] = 289, - [4875] = 250, - [4876] = 4876, - [4877] = 249, - [4878] = 1138, - [4879] = 1466, - [4880] = 4880, - [4881] = 1139, - [4882] = 4882, - [4883] = 252, - [4884] = 1130, - [4885] = 435, - [4886] = 271, - [4887] = 253, - [4888] = 2510, - [4889] = 251, - [4890] = 1204, - [4891] = 268, - [4892] = 250, - [4893] = 252, - [4894] = 293, - [4895] = 294, - [4896] = 4896, - [4897] = 1700, - [4898] = 289, - [4899] = 310, - [4900] = 1199, - [4901] = 271, - [4902] = 1212, - [4903] = 252, - [4904] = 288, - [4905] = 266, - [4906] = 289, - [4907] = 1113, - [4908] = 1474, - [4909] = 251, - [4910] = 270, - [4911] = 4896, - [4912] = 293, - [4913] = 294, - [4914] = 250, - [4915] = 269, - [4916] = 256, - [4917] = 257, - [4918] = 364, - [4919] = 406, - [4920] = 405, - [4921] = 264, - [4922] = 258, - [4923] = 331, - [4924] = 341, - [4925] = 310, - [4926] = 1476, - [4927] = 4882, - [4928] = 266, - [4929] = 1460, - [4930] = 1625, - [4931] = 293, - [4932] = 294, - [4933] = 262, - [4934] = 288, - [4935] = 1463, - [4936] = 412, - [4937] = 415, - [4938] = 256, - [4939] = 364, - [4940] = 311, - [4941] = 259, - [4942] = 425, - [4943] = 253, - [4944] = 288, - [4945] = 270, - [4946] = 259, - [4947] = 403, - [4948] = 312, - [4949] = 289, - [4950] = 258, - [4951] = 495, + [4501] = 269, + [4502] = 270, + [4503] = 233, + [4504] = 272, + [4505] = 4500, + [4506] = 238, + [4507] = 245, + [4508] = 272, + [4509] = 374, + [4510] = 237, + [4511] = 233, + [4512] = 235, + [4513] = 240, + [4514] = 330, + [4515] = 271, + [4516] = 266, + [4517] = 271, + [4518] = 339, + [4519] = 239, + [4520] = 373, + [4521] = 272, + [4522] = 271, + [4523] = 238, + [4524] = 238, + [4525] = 240, + [4526] = 270, + [4527] = 933, + [4528] = 270, + [4529] = 266, + [4530] = 248, + [4531] = 391, + [4532] = 373, + [4533] = 312, + [4534] = 392, + [4535] = 393, + [4536] = 383, + [4537] = 399, + [4538] = 400, + [4539] = 277, + [4540] = 333, + [4541] = 242, + [4542] = 373, + [4543] = 335, + [4544] = 403, + [4545] = 404, + [4546] = 245, + [4547] = 374, + [4548] = 403, + [4549] = 404, + [4550] = 241, + [4551] = 375, + [4552] = 240, + [4553] = 376, + [4554] = 284, + [4555] = 406, + [4556] = 255, + [4557] = 333, + [4558] = 407, + [4559] = 341, + [4560] = 242, + [4561] = 248, + [4562] = 279, + [4563] = 284, + [4564] = 386, + [4565] = 943, + [4566] = 271, + [4567] = 239, + [4568] = 387, + [4569] = 406, + [4570] = 410, + [4571] = 272, + [4572] = 407, + [4573] = 341, + [4574] = 252, + [4575] = 255, + [4576] = 252, + [4577] = 340, + [4578] = 323, + [4579] = 324, + [4580] = 248, + [4581] = 257, + [4582] = 1136, + [4583] = 4583, + [4584] = 4584, + [4585] = 4585, + [4586] = 4586, + [4587] = 256, + [4588] = 330, + [4589] = 4589, + [4590] = 1102, + [4591] = 4591, + [4592] = 277, + [4593] = 271, + [4594] = 945, + [4595] = 272, + [4596] = 2115, + [4597] = 251, + [4598] = 390, + [4599] = 410, + [4600] = 255, + [4601] = 257, + [4602] = 256, + [4603] = 936, + [4604] = 251, + [4605] = 888, + [4606] = 330, + [4607] = 252, + [4608] = 245, + [4609] = 241, + [4610] = 240, + [4611] = 312, + [4612] = 1524, + [4613] = 1527, + [4614] = 238, + [4615] = 389, + [4616] = 374, + [4617] = 271, + [4618] = 339, + [4619] = 257, + [4620] = 872, + [4621] = 1536, + [4622] = 873, + [4623] = 284, + [4624] = 874, + [4625] = 278, + [4626] = 387, + [4627] = 256, + [4628] = 288, + [4629] = 238, + [4630] = 251, + [4631] = 933, + [4632] = 936, + [4633] = 888, + [4634] = 237, + [4635] = 289, + [4636] = 288, + [4637] = 380, + [4638] = 234, + [4639] = 255, + [4640] = 239, + [4641] = 384, + [4642] = 257, + [4643] = 237, + [4644] = 234, + [4645] = 235, + [4646] = 235, + [4647] = 385, + [4648] = 277, + [4649] = 245, + [4650] = 241, + [4651] = 248, + [4652] = 240, + [4653] = 245, + [4654] = 241, + [4655] = 240, + [4656] = 256, + [4657] = 1371, + [4658] = 251, + [4659] = 237, + [4660] = 1538, + [4661] = 234, + [4662] = 235, + [4663] = 339, + [4664] = 1539, + [4665] = 269, + [4666] = 264, + [4667] = 1540, + [4668] = 382, + [4669] = 255, + [4670] = 239, + [4671] = 373, + [4672] = 238, + [4673] = 277, + [4674] = 1648, + [4675] = 400, + [4676] = 252, + [4677] = 257, + [4678] = 1310, + [4679] = 872, + [4680] = 873, + [4681] = 374, + [4682] = 386, + [4683] = 874, + [4684] = 4684, + [4685] = 248, + [4686] = 272, + [4687] = 252, + [4688] = 388, + [4689] = 252, + [4690] = 269, + [4691] = 264, + [4692] = 269, + [4693] = 264, + [4694] = 256, + [4695] = 375, + [4696] = 389, + [4697] = 877, + [4698] = 1323, + [4699] = 290, + [4700] = 291, + [4701] = 251, + [4702] = 376, + [4703] = 1684, + [4704] = 292, + [4705] = 238, + [4706] = 380, + [4707] = 271, + [4708] = 293, + [4709] = 390, + [4710] = 272, + [4711] = 294, + [4712] = 683, + [4713] = 255, + [4714] = 1632, + [4715] = 384, + [4716] = 290, + [4717] = 291, + [4718] = 242, + [4719] = 279, + [4720] = 239, + [4721] = 617, + [4722] = 630, + [4723] = 292, + [4724] = 391, + [4725] = 278, + [4726] = 270, + [4727] = 266, + [4728] = 293, + [4729] = 288, + [4730] = 1568, + [4731] = 1730, + [4732] = 1731, + [4733] = 294, + [4734] = 385, + [4735] = 257, + [4736] = 357, + [4737] = 415, + [4738] = 242, + [4739] = 1569, + [4740] = 381, + [4741] = 1570, + [4742] = 376, + [4743] = 1597, + [4744] = 1649, + [4745] = 1650, + [4746] = 1665, + [4747] = 1667, + [4748] = 342, + [4749] = 343, + [4750] = 344, + [4751] = 345, + [4752] = 346, + [4753] = 347, + [4754] = 348, + [4755] = 349, + [4756] = 350, + [4757] = 351, + [4758] = 352, + [4759] = 353, + [4760] = 354, + [4761] = 355, + [4762] = 256, + [4763] = 1598, + [4764] = 1714, + [4765] = 1715, + [4766] = 1599, + [4767] = 251, + [4768] = 399, + [4769] = 289, + [4770] = 1480, + [4771] = 239, + [4772] = 249, + [4773] = 290, + [4774] = 291, + [4775] = 279, + [4776] = 245, + [4777] = 284, + [4778] = 292, + [4779] = 278, + [4780] = 241, + [4781] = 388, + [4782] = 392, + [4783] = 1600, + [4784] = 293, + [4785] = 288, + [4786] = 356, + [4787] = 382, + [4788] = 240, + [4789] = 294, + [4790] = 393, + [4791] = 334, + [4792] = 383, + [4793] = 249, + [4794] = 277, + [4795] = 1504, + [4796] = 289, + [4797] = 375, + [4798] = 4585, + [4799] = 384, + [4800] = 312, + [4801] = 248, + [4802] = 238, + [4803] = 290, + [4804] = 291, + [4805] = 288, + [4806] = 279, + [4807] = 382, + [4808] = 245, + [4809] = 4809, + [4810] = 269, + [4811] = 340, + [4812] = 279, + [4813] = 249, + [4814] = 255, + [4815] = 257, + [4816] = 266, + [4817] = 256, + [4818] = 251, + [4819] = 339, + [4820] = 323, + [4821] = 1684, + [4822] = 375, + [4823] = 292, + [4824] = 245, + [4825] = 278, + [4826] = 293, + [4827] = 324, + [4828] = 241, + [4829] = 241, + [4830] = 264, + [4831] = 240, + [4832] = 252, + [4833] = 384, + [4834] = 991, + [4835] = 846, + [4836] = 410, + [4837] = 335, + [4838] = 375, + [4839] = 255, + [4840] = 257, + [4841] = 270, + [4842] = 266, + [4843] = 245, + [4844] = 242, + [4845] = 376, + [4846] = 241, + [4847] = 388, + [4848] = 240, + [4849] = 264, + [4850] = 284, + [4851] = 256, + [4852] = 293, + [4853] = 251, + [4854] = 269, + [4855] = 390, + [4856] = 312, + [4857] = 240, + [4858] = 255, + [4859] = 333, + [4860] = 386, + [4861] = 249, + [4862] = 257, + [4863] = 294, + [4864] = 252, + [4865] = 1632, + [4866] = 290, + [4867] = 291, + [4868] = 294, + [4869] = 270, + [4870] = 266, + [4871] = 279, + [4872] = 269, + [4873] = 264, + [4874] = 284, + [4875] = 387, + [4876] = 933, + [4877] = 936, + [4878] = 385, + [4879] = 293, + [4880] = 888, + [4881] = 292, + [4882] = 256, + [4883] = 1136, + [4884] = 292, + [4885] = 4885, + [4886] = 4886, + [4887] = 312, + [4888] = 391, + [4889] = 4889, + [4890] = 335, + [4891] = 4891, + [4892] = 251, + [4893] = 4893, + [4894] = 392, + [4895] = 284, + [4896] = 293, + [4897] = 288, + [4898] = 1730, + [4899] = 1731, + [4900] = 294, + [4901] = 340, + [4902] = 877, + [4903] = 270, + [4904] = 266, + [4905] = 271, + [4906] = 269, + [4907] = 264, + [4908] = 256, + [4909] = 249, + [4910] = 376, + [4911] = 380, + [4912] = 334, + [4913] = 239, + [4914] = 249, + [4915] = 323, + [4916] = 324, + [4917] = 277, + [4918] = 279, + [4919] = 289, + [4920] = 4586, + [4921] = 389, + [4922] = 384, + [4923] = 252, + [4924] = 339, + [4925] = 278, + [4926] = 374, + [4927] = 1102, + [4928] = 257, + [4929] = 393, + [4930] = 278, + [4931] = 933, + [4932] = 289, + [4933] = 1480, + [4934] = 290, + [4935] = 291, + [4936] = 936, + [4937] = 2115, + [4938] = 888, + [4939] = 1648, + [4940] = 1504, + [4941] = 264, + [4942] = 279, + [4943] = 1649, + [4944] = 1650, + [4945] = 1665, + [4946] = 1667, + [4947] = 383, + [4948] = 255, + [4949] = 1524, + [4950] = 1527, + [4951] = 846, [4952] = 271, - [4953] = 446, - [4954] = 1791, - [4955] = 443, - [4956] = 524, - [4957] = 258, - [4958] = 482, - [4959] = 269, - [4960] = 258, - [4961] = 473, - [4962] = 266, - [4963] = 357, - [4964] = 341, - [4965] = 343, - [4966] = 251, - [4967] = 485, - [4968] = 252, - [4969] = 288, - [4970] = 525, - [4971] = 256, - [4972] = 270, - [4973] = 637, - [4974] = 310, - [4975] = 259, - [4976] = 269, - [4977] = 333, - [4978] = 1776, - [4979] = 262, - [4980] = 288, - [4981] = 289, - [4982] = 339, - [4983] = 266, - [4984] = 252, - [4985] = 310, - [4986] = 266, - [4987] = 1781, - [4988] = 355, - [4989] = 256, - [4990] = 251, - [4991] = 442, - [4992] = 288, - [4993] = 459, - [4994] = 403, - [4995] = 250, - [4996] = 1146, - [4997] = 259, - [4998] = 1216, - [4999] = 364, - [5000] = 250, - [5001] = 476, - [5002] = 486, - [5003] = 1770, - [5004] = 641, + [4953] = 1536, + [4954] = 312, + [4955] = 269, + [4956] = 294, + [4957] = 1538, + [4958] = 1539, + [4959] = 1540, + [4960] = 272, + [4961] = 399, + [4962] = 1714, + [4963] = 1715, + [4964] = 400, + [4965] = 239, + [4966] = 1568, + [4967] = 1569, + [4968] = 1570, + [4969] = 1597, + [4970] = 1598, + [4971] = 1599, + [4972] = 1600, + [4973] = 373, + [4974] = 277, + [4975] = 290, + [4976] = 291, + [4977] = 373, + [4978] = 290, + [4979] = 269, + [4980] = 284, + [4981] = 4583, + [4982] = 248, + [4983] = 4983, + [4984] = 380, + [4985] = 403, + [4986] = 404, + [4987] = 4584, + [4988] = 264, + [4989] = 252, + [4990] = 270, + [4991] = 330, + [4992] = 4992, + [4993] = 269, + [4994] = 386, + [4995] = 292, + [4996] = 278, + [4997] = 374, + [4998] = 264, + [4999] = 255, + [5000] = 266, + [5001] = 288, + [5002] = 292, + [5003] = 257, + [5004] = 992, [5005] = 289, - [5006] = 1771, - [5007] = 487, - [5008] = 333, - [5009] = 477, - [5010] = 488, - [5011] = 489, - [5012] = 1212, - [5013] = 1777, - [5014] = 346, - [5015] = 343, - [5016] = 1176, - [5017] = 499, - [5018] = 262, - [5019] = 490, - [5020] = 491, - [5021] = 483, - [5022] = 501, - [5023] = 415, - [5024] = 523, - [5025] = 517, - [5026] = 492, - [5027] = 271, - [5028] = 443, - [5029] = 444, - [5030] = 481, - [5031] = 270, - [5032] = 522, - [5033] = 493, - [5034] = 1691, - [5035] = 461, - [5036] = 494, - [5037] = 1204, - [5038] = 2588, - [5039] = 310, - [5040] = 459, - [5041] = 460, - [5042] = 310, - [5043] = 357, - [5044] = 1768, - [5045] = 525, - [5046] = 341, - [5047] = 266, - [5048] = 258, - [5049] = 311, - [5050] = 259, - [5051] = 359, - [5052] = 496, - [5053] = 5053, - [5054] = 497, - [5055] = 1784, - [5056] = 480, - [5057] = 257, - [5058] = 466, - [5059] = 359, - [5060] = 406, - [5061] = 472, - [5062] = 473, - [5063] = 312, - [5064] = 256, - [5065] = 503, - [5066] = 405, - [5067] = 498, - [5068] = 406, - [5069] = 466, - [5070] = 289, - [5071] = 431, - [5072] = 252, - [5073] = 364, - [5074] = 270, - [5075] = 1782, - [5076] = 462, - [5077] = 480, - [5078] = 431, - [5079] = 311, - [5080] = 266, - [5081] = 269, - [5082] = 259, - [5083] = 253, - [5084] = 5084, - [5085] = 412, - [5086] = 341, - [5087] = 425, - [5088] = 1138, - [5089] = 1778, - [5090] = 1779, - [5091] = 1774, - [5092] = 355, - [5093] = 250, - [5094] = 353, - [5095] = 1139, - [5096] = 1204, - [5097] = 445, - [5098] = 271, - [5099] = 435, - [5100] = 253, - [5101] = 346, - [5102] = 258, - [5103] = 448, - [5104] = 523, - [5105] = 5105, - [5106] = 1130, - [5107] = 335, - [5108] = 293, - [5109] = 294, - [5110] = 1773, - [5111] = 282, - [5112] = 1382, - [5113] = 251, - [5114] = 518, - [5115] = 311, - [5116] = 445, - [5117] = 1625, - [5118] = 1199, - [5119] = 268, - [5120] = 268, - [5121] = 353, - [5122] = 462, - [5123] = 256, - [5124] = 259, - [5125] = 312, - [5126] = 5126, - [5127] = 503, - [5128] = 1199, - [5129] = 1212, - [5130] = 257, - [5131] = 522, - [5132] = 5132, - [5133] = 264, - [5134] = 310, - [5135] = 262, - [5136] = 5136, - [5137] = 1772, - [5138] = 270, - [5139] = 257, - [5140] = 312, - [5141] = 523, - [5142] = 442, - [5143] = 1767, - [5144] = 460, - [5145] = 268, - [5146] = 268, - [5147] = 1138, - [5148] = 1783, - [5149] = 335, - [5150] = 339, - [5151] = 343, - [5152] = 262, - [5153] = 1139, - [5154] = 269, - [5155] = 335, - [5156] = 438, - [5157] = 268, - [5158] = 1130, - [5159] = 353, - [5160] = 444, - [5161] = 1412, - [5162] = 311, - [5163] = 264, - [5164] = 355, - [5165] = 524, - [5166] = 472, - [5167] = 1769, - [5168] = 461, - [5169] = 359, - [5170] = 339, - [5171] = 271, - [5172] = 1700, - [5173] = 5173, - [5174] = 312, - [5175] = 270, - [5176] = 357, - [5177] = 525, - [5178] = 1785, - [5179] = 253, - [5180] = 448, - [5181] = 1786, - [5182] = 1787, - [5183] = 517, - [5184] = 271, - [5185] = 518, - [5186] = 438, - [5187] = 264, - [5188] = 346, - [5189] = 264, - [5190] = 1765, - [5191] = 266, - [5192] = 522, - [5193] = 257, - [5194] = 256, - [5195] = 524, - [5196] = 446, - [5197] = 257, - [5198] = 282, - [5199] = 403, - [5200] = 341, - [5201] = 293, - [5202] = 294, - [5203] = 1788, - [5204] = 269, - [5205] = 271, - [5206] = 270, - [5207] = 633, - [5208] = 333, - [5209] = 1789, - [5210] = 264, - [5211] = 258, - [5212] = 1790, - [5213] = 1775, - [5214] = 476, - [5215] = 343, - [5216] = 269, - [5217] = 477, - [5218] = 483, - [5219] = 253, - [5220] = 268, - [5221] = 1780, - [5222] = 1790, - [5223] = 269, - [5224] = 341, - [5225] = 293, - [5226] = 294, - [5227] = 1785, - [5228] = 1786, - [5229] = 1787, - [5230] = 1788, - [5231] = 431, - [5232] = 1789, - [5233] = 1791, - [5234] = 2588, - [5235] = 1204, - [5236] = 357, - [5237] = 1199, - [5238] = 435, - [5239] = 1212, - [5240] = 271, - [5241] = 1113, - [5242] = 343, - [5243] = 341, - [5244] = 523, - [5245] = 1774, - [5246] = 355, - [5247] = 293, - [5248] = 294, - [5249] = 341, - [5250] = 5250, - [5251] = 341, - [5252] = 1765, - [5253] = 282, - [5254] = 406, - [5255] = 353, - [5256] = 264, - [5257] = 288, - [5258] = 355, - [5259] = 5259, - [5260] = 266, - [5261] = 403, - [5262] = 256, - [5263] = 1518, - [5264] = 5264, - [5265] = 289, - [5266] = 271, - [5267] = 5267, - [5268] = 266, - [5269] = 270, - [5270] = 269, - [5271] = 335, - [5272] = 268, - [5273] = 357, - [5274] = 268, - [5275] = 339, - [5276] = 524, - [5277] = 364, - [5278] = 431, - [5279] = 293, - [5280] = 294, - [5281] = 271, - [5282] = 258, - [5283] = 266, - [5284] = 256, - [5285] = 270, - [5286] = 259, - [5287] = 269, - [5288] = 405, - [5289] = 289, - [5290] = 1113, - [5291] = 412, - [5292] = 425, - [5293] = 271, - [5294] = 5084, - [5295] = 312, - [5296] = 5126, - [5297] = 258, - [5298] = 256, - [5299] = 259, + [5006] = 255, + [5007] = 256, + [5008] = 406, + [5009] = 251, + [5010] = 251, + [5011] = 270, + [5012] = 264, + [5013] = 257, + [5014] = 252, + [5015] = 266, + [5016] = 252, + [5017] = 5017, + [5018] = 278, + [5019] = 4891, + [5020] = 1177, + [5021] = 359, + [5022] = 360, + [5023] = 361, + [5024] = 362, + [5025] = 363, + [5026] = 364, + [5027] = 365, + [5028] = 366, + [5029] = 367, + [5030] = 368, + [5031] = 369, + [5032] = 370, + [5033] = 371, + [5034] = 389, + [5035] = 256, + [5036] = 407, + [5037] = 252, + [5038] = 341, + [5039] = 251, + [5040] = 333, + [5041] = 380, + [5042] = 5042, + [5043] = 330, + [5044] = 289, + [5045] = 270, + [5046] = 269, + [5047] = 284, + [5048] = 272, + [5049] = 272, + [5050] = 312, + [5051] = 323, + [5052] = 324, + [5053] = 375, + [5054] = 375, + [5055] = 324, + [5056] = 339, + [5057] = 288, + [5058] = 279, + [5059] = 340, + [5060] = 376, + [5061] = 277, + [5062] = 312, + [5063] = 874, + [5064] = 877, + [5065] = 376, + [5066] = 339, + [5067] = 383, + [5068] = 277, + [5069] = 517, + [5070] = 269, + [5071] = 264, + [5072] = 271, + [5073] = 266, + [5074] = 249, + [5075] = 339, + [5076] = 376, + [5077] = 271, + [5078] = 340, + [5079] = 255, + [5080] = 312, + [5081] = 294, + [5082] = 374, + [5083] = 373, + [5084] = 330, + [5085] = 269, + [5086] = 264, + [5087] = 251, + [5088] = 278, + [5089] = 290, + [5090] = 335, + [5091] = 334, + [5092] = 293, + [5093] = 269, + [5094] = 5017, + [5095] = 517, + [5096] = 256, + [5097] = 359, + [5098] = 242, + [5099] = 335, + [5100] = 360, + [5101] = 333, + [5102] = 361, + [5103] = 291, + [5104] = 362, + [5105] = 270, + [5106] = 363, + [5107] = 872, + [5108] = 364, + [5109] = 272, + [5110] = 365, + [5111] = 272, + [5112] = 366, + [5113] = 330, + [5114] = 367, + [5115] = 272, + [5116] = 368, + [5117] = 4992, + [5118] = 369, + [5119] = 388, + [5120] = 370, + [5121] = 271, + [5122] = 371, + [5123] = 270, + [5124] = 290, + [5125] = 271, + [5126] = 323, + [5127] = 264, + [5128] = 324, + [5129] = 269, + [5130] = 251, + [5131] = 330, + [5132] = 271, + [5133] = 393, + [5134] = 334, + [5135] = 266, + [5136] = 270, + [5137] = 266, + [5138] = 277, + [5139] = 873, + [5140] = 335, + [5141] = 374, + [5142] = 277, + [5143] = 1053, + [5144] = 257, + [5145] = 264, + [5146] = 333, + [5147] = 252, + [5148] = 339, + [5149] = 5149, + [5150] = 271, + [5151] = 270, + [5152] = 5042, + [5153] = 266, + [5154] = 289, + [5155] = 269, + [5156] = 334, + [5157] = 272, + [5158] = 266, + [5159] = 1177, + [5160] = 874, + [5161] = 340, + [5162] = 373, + [5163] = 292, + [5164] = 385, + [5165] = 277, + [5166] = 330, + [5167] = 335, + [5168] = 333, + [5169] = 257, + [5170] = 517, + [5171] = 270, + [5172] = 266, + [5173] = 359, + [5174] = 360, + [5175] = 361, + [5176] = 362, + [5177] = 363, + [5178] = 364, + [5179] = 365, + [5180] = 366, + [5181] = 367, + [5182] = 368, + [5183] = 369, + [5184] = 370, + [5185] = 371, + [5186] = 846, + [5187] = 872, + [5188] = 256, + [5189] = 356, + [5190] = 264, + [5191] = 323, + [5192] = 324, + [5193] = 375, + [5194] = 333, + [5195] = 374, + [5196] = 323, + [5197] = 292, + [5198] = 270, + [5199] = 391, + [5200] = 373, + [5201] = 272, + [5202] = 277, + [5203] = 312, + [5204] = 340, + [5205] = 392, + [5206] = 873, + [5207] = 284, + [5208] = 415, + [5209] = 400, + [5210] = 330, + [5211] = 252, + [5212] = 368, + [5213] = 271, + [5214] = 272, + [5215] = 342, + [5216] = 359, + [5217] = 1078, + [5218] = 343, + [5219] = 360, + [5220] = 376, + [5221] = 350, + [5222] = 351, + [5223] = 344, + [5224] = 291, + [5225] = 361, + [5226] = 345, + [5227] = 293, + [5228] = 362, + [5229] = 346, + [5230] = 363, + [5231] = 347, + [5232] = 364, + [5233] = 348, + [5234] = 365, + [5235] = 349, + [5236] = 366, + [5237] = 350, + [5238] = 352, + [5239] = 367, + [5240] = 351, + [5241] = 368, + [5242] = 352, + [5243] = 369, + [5244] = 353, + [5245] = 370, + [5246] = 354, + [5247] = 371, + [5248] = 355, + [5249] = 288, + [5250] = 353, + [5251] = 354, + [5252] = 264, + [5253] = 355, + [5254] = 284, + [5255] = 369, + [5256] = 370, + [5257] = 933, + [5258] = 371, + [5259] = 339, + [5260] = 936, + [5261] = 334, + [5262] = 888, + [5263] = 270, + [5264] = 266, + [5265] = 339, + [5266] = 277, + [5267] = 333, + [5268] = 1142, + [5269] = 256, + [5270] = 271, + [5271] = 374, + [5272] = 334, + [5273] = 289, + [5274] = 278, + [5275] = 1136, + [5276] = 340, + [5277] = 335, + [5278] = 292, + [5279] = 323, + [5280] = 324, + [5281] = 278, + [5282] = 334, + [5283] = 284, + [5284] = 1079, + [5285] = 384, + [5286] = 269, + [5287] = 323, + [5288] = 324, + [5289] = 269, + [5290] = 264, + [5291] = 271, + [5292] = 279, + [5293] = 359, + [5294] = 872, + [5295] = 333, + [5296] = 873, + [5297] = 335, + [5298] = 874, + [5299] = 272, [5300] = 288, - [5301] = 266, - [5302] = 270, - [5303] = 1768, - [5304] = 5304, - [5305] = 333, - [5306] = 289, - [5307] = 253, - [5308] = 357, - [5309] = 269, - [5310] = 268, - [5311] = 462, - [5312] = 359, - [5313] = 259, - [5314] = 5314, - [5315] = 270, - [5316] = 262, - [5317] = 1204, - [5318] = 1199, - [5319] = 1212, - [5320] = 269, - [5321] = 503, - [5322] = 271, - [5323] = 525, - [5324] = 264, - [5325] = 288, - [5326] = 289, - [5327] = 403, - [5328] = 442, - [5329] = 333, - [5330] = 346, - [5331] = 1247, - [5332] = 445, - [5333] = 343, - [5334] = 5334, - [5335] = 1146, - [5336] = 1783, - [5337] = 461, - [5338] = 522, - [5339] = 1248, - [5340] = 335, - [5341] = 1784, - [5342] = 339, - [5343] = 266, - [5344] = 288, - [5345] = 289, - [5346] = 288, - [5347] = 346, - [5348] = 333, - [5349] = 341, - [5350] = 359, - [5351] = 258, - [5352] = 448, - [5353] = 288, - [5354] = 518, - [5355] = 282, - [5356] = 1775, - [5357] = 257, - [5358] = 353, - [5359] = 282, - [5360] = 288, - [5361] = 310, - [5362] = 359, - [5363] = 289, - [5364] = 268, - [5365] = 1776, - [5366] = 446, - [5367] = 289, - [5368] = 461, - [5369] = 293, - [5370] = 294, - [5371] = 435, - [5372] = 476, - [5373] = 477, - [5374] = 483, - [5375] = 517, - [5376] = 443, - [5377] = 444, - [5378] = 257, - [5379] = 522, - [5380] = 335, - [5381] = 339, - [5382] = 310, - [5383] = 268, - [5384] = 353, - [5385] = 459, - [5386] = 460, - [5387] = 293, - [5388] = 523, - [5389] = 355, - [5390] = 466, - [5391] = 1412, - [5392] = 1777, - [5393] = 472, - [5394] = 473, - [5395] = 5395, - [5396] = 364, - [5397] = 442, - [5398] = 355, - [5399] = 5105, - [5400] = 1767, - [5401] = 5173, - [5402] = 311, - [5403] = 524, - [5404] = 5404, - [5405] = 480, - [5406] = 1382, - [5407] = 364, - [5408] = 312, - [5409] = 525, - [5410] = 294, - [5411] = 406, - [5412] = 282, - [5413] = 364, - [5414] = 448, - [5415] = 415, - [5416] = 359, - [5417] = 270, - [5418] = 343, - [5419] = 353, - [5420] = 289, - [5421] = 1770, - [5422] = 1771, - [5423] = 1772, - [5424] = 1773, - [5425] = 1778, - [5426] = 1779, - [5427] = 5427, - [5428] = 1780, - [5429] = 405, - [5430] = 1781, - [5431] = 412, - [5432] = 425, - [5433] = 268, - [5434] = 357, - [5435] = 335, - [5436] = 1782, - [5437] = 269, - [5438] = 271, - [5439] = 268, - [5440] = 353, - [5441] = 346, - [5442] = 5395, - [5443] = 448, - [5444] = 311, - [5445] = 339, - [5446] = 266, - [5447] = 504, - [5448] = 505, - [5449] = 506, - [5450] = 507, - [5451] = 508, - [5452] = 509, - [5453] = 510, - [5454] = 511, - [5455] = 512, - [5456] = 513, - [5457] = 514, - [5458] = 515, - [5459] = 516, - [5460] = 293, - [5461] = 294, - [5462] = 518, - [5463] = 518, - [5464] = 333, - [5465] = 1769, - [5466] = 288, - [5467] = 335, - [5468] = 359, - [5469] = 346, - [5470] = 270, - [5471] = 355, - [5472] = 438, - [5473] = 435, - [5474] = 312, - [5475] = 1138, - [5476] = 312, - [5477] = 1139, - [5478] = 311, - [5479] = 1130, - [5480] = 438, - [5481] = 270, - [5482] = 524, - [5483] = 403, - [5484] = 293, - [5485] = 294, - [5486] = 415, - [5487] = 435, - [5488] = 312, - [5489] = 355, - [5490] = 1288, - [5491] = 269, - [5492] = 483, - [5493] = 1146, - [5494] = 476, - [5495] = 364, - [5496] = 525, - [5497] = 271, - [5498] = 293, - [5499] = 331, - [5500] = 294, - [5501] = 266, - [5502] = 335, - [5503] = 523, - [5504] = 431, - [5505] = 406, - [5506] = 1113, - [5507] = 364, - [5508] = 405, - [5509] = 524, - [5510] = 5259, - [5511] = 412, - [5512] = 355, - [5513] = 425, - [5514] = 335, - [5515] = 268, - [5516] = 525, - [5517] = 288, - [5518] = 289, - [5519] = 288, - [5520] = 289, - [5521] = 310, - [5522] = 435, - [5523] = 262, - [5524] = 415, - [5525] = 312, - [5526] = 5526, - [5527] = 364, - [5528] = 1518, - [5529] = 405, - [5530] = 310, - [5531] = 477, - [5532] = 359, - [5533] = 522, - [5534] = 343, - [5535] = 403, - [5536] = 5267, - [5537] = 403, - [5538] = 412, - [5539] = 425, - [5540] = 504, - [5541] = 517, - [5542] = 505, - [5543] = 311, - [5544] = 310, - [5545] = 406, - [5546] = 288, - [5547] = 506, - [5548] = 312, - [5549] = 341, - [5550] = 293, - [5551] = 507, - [5552] = 294, - [5553] = 1138, - [5554] = 282, - [5555] = 508, - [5556] = 405, - [5557] = 294, - [5558] = 499, - [5559] = 523, - [5560] = 510, - [5561] = 511, - [5562] = 412, - [5563] = 425, - [5564] = 289, - [5565] = 512, - [5566] = 1139, - [5567] = 5404, - [5568] = 513, - [5569] = 270, - [5570] = 431, - [5571] = 288, - [5572] = 289, - [5573] = 357, - [5574] = 514, - [5575] = 405, - [5576] = 1130, - [5577] = 431, - [5578] = 525, - [5579] = 515, - [5580] = 412, - [5581] = 425, - [5582] = 516, - [5583] = 311, - [5584] = 435, + [5301] = 517, + [5302] = 293, + [5303] = 252, + [5304] = 380, + [5305] = 356, + [5306] = 1102, + [5307] = 356, + [5308] = 339, + [5309] = 1093, + [5310] = 1094, + [5311] = 390, + [5312] = 410, + [5313] = 277, + [5314] = 278, + [5315] = 294, + [5316] = 339, + [5317] = 1097, + [5318] = 380, + [5319] = 360, + [5320] = 382, + [5321] = 877, + [5322] = 289, + [5323] = 361, + [5324] = 384, + [5325] = 294, + [5326] = 1115, + [5327] = 339, + [5328] = 312, + [5329] = 373, + [5330] = 385, + [5331] = 279, + [5332] = 362, + [5333] = 517, + [5334] = 374, + [5335] = 386, + [5336] = 290, + [5337] = 387, + [5338] = 277, + [5339] = 291, + [5340] = 388, + [5341] = 363, + [5342] = 375, + [5343] = 389, + [5344] = 391, + [5345] = 376, + [5346] = 392, + [5347] = 393, + [5348] = 406, + [5349] = 380, + [5350] = 382, + [5351] = 384, + [5352] = 1104, + [5353] = 381, + [5354] = 271, + [5355] = 335, + [5356] = 385, + [5357] = 272, + [5358] = 333, + [5359] = 272, + [5360] = 340, + [5361] = 386, + [5362] = 406, + [5363] = 387, + [5364] = 388, + [5365] = 389, + [5366] = 410, + [5367] = 251, + [5368] = 391, + [5369] = 270, + [5370] = 266, + [5371] = 330, + [5372] = 392, + [5373] = 1127, + [5374] = 364, + [5375] = 393, + [5376] = 383, + [5377] = 373, + [5378] = 323, + [5379] = 324, + [5380] = 367, + [5381] = 399, + [5382] = 400, + [5383] = 290, + [5384] = 340, + [5385] = 291, + [5386] = 257, + [5387] = 403, + [5388] = 404, + [5389] = 256, + [5390] = 251, + [5391] = 330, + [5392] = 323, + [5393] = 324, + [5394] = 292, + [5395] = 407, + [5396] = 341, + [5397] = 407, + [5398] = 403, + [5399] = 341, + [5400] = 375, + [5401] = 404, + [5402] = 342, + [5403] = 1122, + [5404] = 683, + [5405] = 343, + [5406] = 255, + [5407] = 334, + [5408] = 383, + [5409] = 357, + [5410] = 415, + [5411] = 293, + [5412] = 390, + [5413] = 294, + [5414] = 344, + [5415] = 380, + [5416] = 382, + [5417] = 357, + [5418] = 288, + [5419] = 384, + [5420] = 399, + [5421] = 400, + [5422] = 373, + [5423] = 333, + [5424] = 345, + [5425] = 385, + [5426] = 277, + [5427] = 330, + [5428] = 381, + [5429] = 381, + [5430] = 403, + [5431] = 404, + [5432] = 346, + [5433] = 374, + [5434] = 386, + [5435] = 257, + [5436] = 406, + [5437] = 387, + [5438] = 356, + [5439] = 312, + [5440] = 388, + [5441] = 407, + [5442] = 341, + [5443] = 399, + [5444] = 1138, + [5445] = 333, + [5446] = 365, + [5447] = 333, + [5448] = 342, + [5449] = 359, + [5450] = 343, + [5451] = 360, + [5452] = 344, + [5453] = 361, + [5454] = 345, + [5455] = 362, + [5456] = 346, + [5457] = 363, + [5458] = 347, + [5459] = 364, + [5460] = 348, + [5461] = 365, + [5462] = 349, + [5463] = 366, + [5464] = 350, + [5465] = 367, + [5466] = 351, + [5467] = 368, + [5468] = 352, + [5469] = 369, + [5470] = 353, + [5471] = 370, + [5472] = 354, + [5473] = 371, + [5474] = 355, + [5475] = 359, + [5476] = 360, + [5477] = 361, + [5478] = 362, + [5479] = 363, + [5480] = 364, + [5481] = 365, + [5482] = 366, + [5483] = 367, + [5484] = 368, + [5485] = 369, + [5486] = 370, + [5487] = 371, + [5488] = 339, + [5489] = 335, + [5490] = 277, + [5491] = 347, + [5492] = 269, + [5493] = 617, + [5494] = 933, + [5495] = 271, + [5496] = 375, + [5497] = 264, + [5498] = 389, + [5499] = 366, + [5500] = 390, + [5501] = 410, + [5502] = 383, + [5503] = 271, + [5504] = 391, + [5505] = 272, + [5506] = 936, + [5507] = 376, + [5508] = 392, + [5509] = 272, + [5510] = 888, + [5511] = 393, + [5512] = 339, + [5513] = 383, + [5514] = 630, + [5515] = 348, + [5516] = 284, + [5517] = 255, + [5518] = 279, + [5519] = 357, + [5520] = 349, + [5521] = 277, + [5522] = 415, + [5523] = 340, + [5524] = 255, + [5525] = 354, + [5526] = 356, + [5527] = 390, + [5528] = 341, + [5529] = 272, + [5530] = 345, + [5531] = 410, + [5532] = 355, + [5533] = 683, + [5534] = 350, + [5535] = 339, + [5536] = 391, + [5537] = 391, + [5538] = 1151, + [5539] = 312, + [5540] = 323, + [5541] = 324, + [5542] = 380, + [5543] = 272, + [5544] = 406, + [5545] = 387, + [5546] = 346, + [5547] = 386, + [5548] = 386, + [5549] = 392, + [5550] = 846, + [5551] = 333, + [5552] = 293, + [5553] = 407, + [5554] = 330, + [5555] = 341, + [5556] = 266, + [5557] = 342, + [5558] = 406, + [5559] = 406, + [5560] = 393, + [5561] = 389, + [5562] = 291, + [5563] = 359, + [5564] = 356, + [5565] = 384, + [5566] = 381, + [5567] = 289, + [5568] = 294, + [5569] = 343, + [5570] = 383, + [5571] = 360, + [5572] = 352, + [5573] = 271, + [5574] = 347, + [5575] = 410, + [5576] = 289, + [5577] = 344, + [5578] = 376, + [5579] = 361, + [5580] = 339, + [5581] = 374, + [5582] = 683, + [5583] = 392, + [5584] = 357, [5585] = 415, - [5586] = 364, - [5587] = 311, - [5588] = 293, - [5589] = 294, - [5590] = 269, - [5591] = 331, - [5592] = 522, - [5593] = 446, - [5594] = 523, - [5595] = 406, - [5596] = 522, - [5597] = 310, - [5598] = 406, + [5586] = 1276, + [5587] = 345, + [5588] = 362, + [5589] = 330, + [5590] = 399, + [5591] = 400, + [5592] = 387, + [5593] = 393, + [5594] = 346, + [5595] = 399, + [5596] = 381, + [5597] = 403, + [5598] = 404, [5599] = 353, - [5600] = 431, - [5601] = 288, - [5602] = 289, - [5603] = 311, - [5604] = 311, - [5605] = 331, - [5606] = 403, - [5607] = 524, - [5608] = 310, - [5609] = 346, - [5610] = 339, - [5611] = 310, - [5612] = 504, - [5613] = 505, - [5614] = 506, - [5615] = 507, - [5616] = 508, - [5617] = 509, - [5618] = 510, - [5619] = 511, - [5620] = 512, - [5621] = 513, - [5622] = 514, - [5623] = 515, - [5624] = 516, - [5625] = 293, - [5626] = 312, - [5627] = 294, - [5628] = 293, - [5629] = 333, - [5630] = 266, - [5631] = 509, - [5632] = 1412, - [5633] = 511, - [5634] = 492, - [5635] = 460, - [5636] = 493, - [5637] = 477, - [5638] = 357, - [5639] = 512, - [5640] = 513, - [5641] = 641, - [5642] = 494, - [5643] = 495, - [5644] = 514, - [5645] = 310, - [5646] = 335, - [5647] = 1146, - [5648] = 1438, - [5649] = 459, - [5650] = 343, - [5651] = 431, - [5652] = 496, - [5653] = 460, - [5654] = 448, - [5655] = 497, - [5656] = 515, - [5657] = 406, - [5658] = 516, - [5659] = 498, - [5660] = 1422, - [5661] = 517, - [5662] = 406, - [5663] = 312, - [5664] = 355, - [5665] = 343, - [5666] = 310, - [5667] = 466, - [5668] = 403, - [5669] = 341, - [5670] = 485, - [5671] = 311, - [5672] = 461, - [5673] = 331, - [5674] = 503, - [5675] = 501, - [5676] = 431, - [5677] = 504, - [5678] = 364, - [5679] = 522, - [5680] = 1364, - [5681] = 501, - [5682] = 415, - [5683] = 1212, - [5684] = 266, - [5685] = 1416, - [5686] = 431, - [5687] = 353, - [5688] = 442, - [5689] = 343, - [5690] = 472, - [5691] = 497, - [5692] = 460, - [5693] = 1427, - [5694] = 633, - [5695] = 516, - [5696] = 443, - [5697] = 359, - [5698] = 462, - [5699] = 310, - [5700] = 480, - [5701] = 473, - [5702] = 333, - [5703] = 289, - [5704] = 499, - [5705] = 503, - [5706] = 486, - [5707] = 359, - [5708] = 476, - [5709] = 505, - [5710] = 487, - [5711] = 498, - [5712] = 446, - [5713] = 481, - [5714] = 524, - [5715] = 501, - [5716] = 431, - [5717] = 462, - [5718] = 637, - [5719] = 496, - [5720] = 506, - [5721] = 515, - [5722] = 522, - [5723] = 481, - [5724] = 288, - [5725] = 523, - [5726] = 311, - [5727] = 312, - [5728] = 488, - [5729] = 270, - [5730] = 412, - [5731] = 507, - [5732] = 489, - [5733] = 425, - [5734] = 312, - [5735] = 355, - [5736] = 477, - [5737] = 271, - [5738] = 508, - [5739] = 1365, - [5740] = 466, - [5741] = 490, - [5742] = 509, - [5743] = 442, - [5744] = 289, - [5745] = 405, - [5746] = 293, - [5747] = 403, - [5748] = 293, - [5749] = 311, - [5750] = 491, - [5751] = 510, - [5752] = 492, - [5753] = 353, - [5754] = 412, - [5755] = 511, - [5756] = 294, - [5757] = 269, - [5758] = 312, - [5759] = 525, - [5760] = 271, - [5761] = 493, - [5762] = 266, - [5763] = 415, - [5764] = 270, - [5765] = 1414, - [5766] = 269, - [5767] = 448, - [5768] = 525, - [5769] = 518, - [5770] = 523, - [5771] = 445, - [5772] = 346, - [5773] = 472, - [5774] = 517, - [5775] = 294, - [5776] = 312, - [5777] = 524, - [5778] = 443, - [5779] = 512, - [5780] = 473, - [5781] = 288, - [5782] = 483, - [5783] = 485, - [5784] = 499, - [5785] = 431, - [5786] = 482, - [5787] = 438, - [5788] = 517, - [5789] = 339, - [5790] = 525, - [5791] = 431, - [5792] = 415, - [5793] = 483, - [5794] = 364, - [5795] = 448, - [5796] = 431, - [5797] = 425, - [5798] = 472, - [5799] = 405, - [5800] = 446, - [5801] = 346, - [5802] = 339, - [5803] = 271, - [5804] = 482, - [5805] = 486, - [5806] = 504, - [5807] = 341, - [5808] = 357, - [5809] = 518, - [5810] = 310, - [5811] = 311, - [5812] = 498, - [5813] = 517, - [5814] = 518, - [5815] = 485, - [5816] = 461, - [5817] = 504, - [5818] = 1138, - [5819] = 435, - [5820] = 480, - [5821] = 438, - [5822] = 406, - [5823] = 499, - [5824] = 494, - [5825] = 412, - [5826] = 425, - [5827] = 1139, - [5828] = 473, - [5829] = 268, - [5830] = 486, - [5831] = 505, - [5832] = 405, - [5833] = 487, - [5834] = 505, - [5835] = 442, - [5836] = 506, - [5837] = 333, - [5838] = 333, - [5839] = 466, - [5840] = 1130, - [5841] = 488, - [5842] = 507, - [5843] = 445, - [5844] = 462, - [5845] = 489, - [5846] = 508, - [5847] = 490, - [5848] = 480, - [5849] = 506, - [5850] = 476, - [5851] = 1204, - [5852] = 509, - [5853] = 446, - [5854] = 312, - [5855] = 476, - [5856] = 491, - [5857] = 444, - [5858] = 487, - [5859] = 510, - [5860] = 405, - [5861] = 1199, - [5862] = 513, - [5863] = 435, - [5864] = 310, - [5865] = 459, - [5866] = 288, - [5867] = 1212, - [5868] = 444, - [5869] = 346, - [5870] = 492, - [5871] = 495, - [5872] = 514, - [5873] = 406, - [5874] = 511, - [5875] = 518, - [5876] = 493, - [5877] = 512, - [5878] = 494, - [5879] = 403, - [5880] = 513, - [5881] = 438, - [5882] = 495, - [5883] = 403, - [5884] = 289, - [5885] = 445, - [5886] = 514, - [5887] = 406, - [5888] = 496, - [5889] = 415, - [5890] = 482, - [5891] = 488, - [5892] = 412, - [5893] = 483, - [5894] = 331, - [5895] = 310, - [5896] = 489, - [5897] = 425, - [5898] = 515, - [5899] = 443, - [5900] = 497, - [5901] = 522, - [5902] = 1382, - [5903] = 444, - [5904] = 507, - [5905] = 435, - [5906] = 1204, - [5907] = 504, - [5908] = 505, - [5909] = 506, - [5910] = 507, - [5911] = 508, - [5912] = 509, - [5913] = 510, - [5914] = 511, - [5915] = 512, - [5916] = 513, - [5917] = 514, - [5918] = 515, - [5919] = 516, - [5920] = 481, - [5921] = 1378, - [5922] = 1386, - [5923] = 490, - [5924] = 335, - [5925] = 508, - [5926] = 509, - [5927] = 524, - [5928] = 406, - [5929] = 1441, - [5930] = 448, - [5931] = 491, - [5932] = 359, - [5933] = 268, - [5934] = 461, - [5935] = 339, - [5936] = 435, - [5937] = 459, - [5938] = 311, - [5939] = 516, - [5940] = 510, - [5941] = 353, - [5942] = 341, - [5943] = 477, - [5944] = 523, - [5945] = 1398, - [5946] = 1199, - [5947] = 311, - [5948] = 503, - [5949] = 510, - [5950] = 493, - [5951] = 477, - [5952] = 335, - [5953] = 504, - [5954] = 490, - [5955] = 491, - [5956] = 460, - [5957] = 461, - [5958] = 494, - [5959] = 446, - [5960] = 1582, - [5961] = 339, - [5962] = 492, - [5963] = 462, - [5964] = 486, - [5965] = 504, - [5966] = 505, - [5967] = 505, - [5968] = 506, - [5969] = 507, - [5970] = 482, - [5971] = 508, - [5972] = 509, - [5973] = 511, - [5974] = 512, - [5975] = 513, - [5976] = 514, - [5977] = 515, - [5978] = 364, - [5979] = 516, - [5980] = 633, - [5981] = 493, - [5982] = 487, - [5983] = 472, - [5984] = 482, - [5985] = 506, - [5986] = 476, - [5987] = 459, - [5988] = 488, - [5989] = 355, - [5990] = 1146, - [5991] = 637, - [5992] = 460, - [5993] = 507, - [5994] = 523, - [5995] = 489, - [5996] = 522, - [5997] = 499, - [5998] = 473, - [5999] = 5999, - [6000] = 1592, - [6001] = 483, - [6002] = 508, - [6003] = 495, - [6004] = 490, - [6005] = 509, - [6006] = 491, - [6007] = 510, - [6008] = 288, - [6009] = 289, - [6010] = 438, - [6011] = 513, - [6012] = 446, - [6013] = 492, - [6014] = 511, - [6015] = 477, - [6016] = 472, - [6017] = 438, - [6018] = 473, - [6019] = 483, - [6020] = 493, - [6021] = 1443, - [6022] = 496, - [6023] = 641, - [6024] = 482, - [6025] = 431, - [6026] = 343, - [6027] = 1445, - [6028] = 517, - [6029] = 415, - [6030] = 461, - [6031] = 444, - [6032] = 499, - [6033] = 477, - [6034] = 512, - [6035] = 431, - [6036] = 494, - [6037] = 406, - [6038] = 435, - [6039] = 448, - [6040] = 6040, - [6041] = 443, - [6042] = 459, - [6043] = 460, - [6044] = 431, - [6045] = 513, - [6046] = 466, - [6047] = 339, - [6048] = 495, - [6049] = 494, - [6050] = 405, - [6051] = 514, - [6052] = 357, - [6053] = 496, - [6054] = 445, - [6055] = 498, - [6056] = 515, - [6057] = 346, - [6058] = 485, - [6059] = 503, - [6060] = 504, - [6061] = 497, - [6062] = 515, - [6063] = 516, - [6064] = 641, - [6065] = 364, - [6066] = 486, - [6067] = 505, - [6068] = 498, - [6069] = 497, - [6070] = 487, - [6071] = 516, - [6072] = 293, - [6073] = 294, - [6074] = 506, - [6075] = 503, - [6076] = 1113, - [6077] = 488, - [6078] = 462, - [6079] = 498, - [6080] = 403, - [6081] = 507, - [6082] = 489, - [6083] = 508, - [6084] = 485, - [6085] = 466, - [6086] = 490, - [6087] = 311, - [6088] = 333, - [6089] = 488, - [6090] = 509, - [6091] = 486, - [6092] = 487, - [6093] = 442, - [6094] = 488, - [6095] = 491, - [6096] = 510, - [6097] = 518, - [6098] = 489, - [6099] = 490, - [6100] = 514, - [6101] = 462, - [6102] = 491, - [6103] = 633, - [6104] = 522, - [6105] = 6105, - [6106] = 637, - [6107] = 443, - [6108] = 480, - [6109] = 492, - [6110] = 412, - [6111] = 425, - [6112] = 271, - [6113] = 444, - [6114] = 492, - [6115] = 511, - [6116] = 483, - [6117] = 493, - [6118] = 346, - [6119] = 494, - [6120] = 493, - [6121] = 268, - [6122] = 461, - [6123] = 495, - [6124] = 512, - [6125] = 496, - [6126] = 494, - [6127] = 513, - [6128] = 482, - [6129] = 431, - [6130] = 497, - [6131] = 495, - [6132] = 498, - [6133] = 266, - [6134] = 514, - [6135] = 476, - [6136] = 496, - [6137] = 515, - [6138] = 480, - [6139] = 497, - [6140] = 516, - [6141] = 523, - [6142] = 403, - [6143] = 448, - [6144] = 517, - [6145] = 310, - [6146] = 518, - [6147] = 431, - [6148] = 498, - [6149] = 6149, - [6150] = 445, - [6151] = 438, - [6152] = 271, - [6153] = 266, - [6154] = 270, - [6155] = 269, - [6156] = 312, - [6157] = 501, - [6158] = 443, - [6159] = 444, - [6160] = 359, - [6161] = 341, - [6162] = 524, - [6163] = 270, - [6164] = 446, - [6165] = 512, - [6166] = 466, - [6167] = 269, - [6168] = 524, - [6169] = 445, - [6170] = 268, - [6171] = 312, - [6172] = 442, - [6173] = 459, - [6174] = 460, - [6175] = 503, - [6176] = 472, - [6177] = 495, - [6178] = 461, - [6179] = 525, - [6180] = 353, - [6181] = 499, - [6182] = 2588, - [6183] = 481, - [6184] = 431, - [6185] = 501, - [6186] = 499, - [6187] = 473, - [6188] = 442, - [6189] = 462, - [6190] = 476, - [6191] = 293, - [6192] = 294, - [6193] = 485, - [6194] = 477, - [6195] = 483, - [6196] = 501, - [6197] = 448, - [6198] = 517, - [6199] = 504, - [6200] = 481, - [6201] = 357, - [6202] = 481, - [6203] = 496, - [6204] = 443, - [6205] = 444, - [6206] = 486, - [6207] = 472, - [6208] = 473, - [6209] = 335, - [6210] = 339, - [6211] = 1463, - [6212] = 459, - [6213] = 460, - [6214] = 1460, - [6215] = 480, - [6216] = 355, - [6217] = 466, - [6218] = 497, - [6219] = 472, - [6220] = 473, - [6221] = 505, - [6222] = 476, - [6223] = 6105, - [6224] = 333, - [6225] = 487, - [6226] = 506, - [6227] = 488, - [6228] = 507, - [6229] = 1466, - [6230] = 489, - [6231] = 508, - [6232] = 343, - [6233] = 405, - [6234] = 311, - [6235] = 341, - [6236] = 6236, - [6237] = 503, - [6238] = 490, - [6239] = 509, - [6240] = 501, - [6241] = 503, - [6242] = 481, - [6243] = 501, - [6244] = 357, - [6245] = 481, - [6246] = 359, - [6247] = 1204, - [6248] = 1199, - [6249] = 438, - [6250] = 1212, - [6251] = 357, - [6252] = 435, - [6253] = 518, - [6254] = 1474, - [6255] = 339, - [6256] = 406, - [6257] = 1476, - [6258] = 443, - [6259] = 412, - [6260] = 489, - [6261] = 480, - [6262] = 459, - [6263] = 482, - [6264] = 480, - [6265] = 425, - [6266] = 525, - [6267] = 491, - [6268] = 462, - [6269] = 364, - [6270] = 288, - [6271] = 485, - [6272] = 289, - [6273] = 442, - [6274] = 353, - [6275] = 466, - [6276] = 445, - [6277] = 444, - [6278] = 431, - [6279] = 1518, - [6280] = 446, - [6281] = 492, - [6282] = 485, - [6283] = 445, - [6284] = 486, - [6285] = 487, - [6286] = 511, - [6287] = 510, - [6288] = 1691, - [6289] = 311, - [6290] = 1139, - [6291] = 289, - [6292] = 6292, - [6293] = 1130, - [6294] = 415, - [6295] = 637, - [6296] = 492, - [6297] = 312, - [6298] = 511, - [6299] = 405, - [6300] = 493, - [6301] = 310, - [6302] = 6236, - [6303] = 522, - [6304] = 364, - [6305] = 512, - [6306] = 494, - [6307] = 513, - [6308] = 495, - [6309] = 514, - [6310] = 466, - [6311] = 476, - [6312] = 496, - [6313] = 515, - [6314] = 497, - [6315] = 516, - [6316] = 339, - [6317] = 498, - [6318] = 462, - [6319] = 641, - [6320] = 445, - [6321] = 1700, - [6322] = 525, - [6323] = 482, - [6324] = 524, - [6325] = 1625, - [6326] = 435, - [6327] = 5999, - [6328] = 403, - [6329] = 357, - [6330] = 364, - [6331] = 525, - [6332] = 523, - [6333] = 480, - [6334] = 415, - [6335] = 438, - [6336] = 459, - [6337] = 412, - [6338] = 460, - [6339] = 425, - [6340] = 499, - [6341] = 293, - [6342] = 431, - [6343] = 435, - [6344] = 293, - [6345] = 294, - [6346] = 406, - [6347] = 481, - [6348] = 294, - [6349] = 6149, - [6350] = 405, - [6351] = 288, - [6352] = 510, - [6353] = 364, - [6354] = 2588, - [6355] = 310, - [6356] = 406, - [6357] = 442, - [6358] = 6040, - [6359] = 310, - [6360] = 461, - [6361] = 403, - [6362] = 483, - [6363] = 443, - [6364] = 311, - [6365] = 444, - [6366] = 524, - [6367] = 446, - [6368] = 312, - [6369] = 364, - [6370] = 461, - [6371] = 403, - [6372] = 431, - [6373] = 641, - [6374] = 503, - [6375] = 6292, - [6376] = 472, - [6377] = 473, - [6378] = 431, - [6379] = 501, - [6380] = 364, - [6381] = 406, - [6382] = 485, - [6383] = 504, - [6384] = 339, + [5600] = 400, + [5601] = 354, + [5602] = 363, + [5603] = 347, + [5604] = 355, + [5605] = 364, + [5606] = 380, + [5607] = 348, + [5608] = 365, + [5609] = 349, + [5610] = 366, + [5611] = 340, + [5612] = 382, + [5613] = 350, + [5614] = 385, + [5615] = 407, + [5616] = 341, + [5617] = 342, + [5618] = 359, + [5619] = 343, + [5620] = 360, + [5621] = 344, + [5622] = 361, + [5623] = 345, + [5624] = 362, + [5625] = 346, + [5626] = 363, + [5627] = 347, + [5628] = 364, + [5629] = 348, + [5630] = 365, + [5631] = 349, + [5632] = 366, + [5633] = 350, + [5634] = 367, + [5635] = 351, + [5636] = 368, + [5637] = 352, + [5638] = 369, + [5639] = 353, + [5640] = 370, + [5641] = 354, + [5642] = 371, + [5643] = 355, + [5644] = 367, + [5645] = 351, + [5646] = 368, + [5647] = 352, + [5648] = 369, + [5649] = 353, + [5650] = 279, + [5651] = 370, + [5652] = 351, + [5653] = 371, + [5654] = 355, + [5655] = 386, + [5656] = 293, + [5657] = 356, + [5658] = 390, + [5659] = 382, + [5660] = 323, + [5661] = 384, + [5662] = 5662, + [5663] = 290, + [5664] = 255, + [5665] = 291, + [5666] = 399, + [5667] = 257, + [5668] = 400, + [5669] = 375, + [5670] = 271, + [5671] = 2115, + [5672] = 348, + [5673] = 256, + [5674] = 284, + [5675] = 339, + [5676] = 251, + [5677] = 357, + [5678] = 1266, + [5679] = 415, + [5680] = 385, + [5681] = 324, + [5682] = 376, + [5683] = 390, + [5684] = 399, + [5685] = 277, + [5686] = 410, + [5687] = 278, + [5688] = 270, + [5689] = 5689, + [5690] = 270, + [5691] = 266, + [5692] = 403, + [5693] = 342, + [5694] = 404, + [5695] = 400, + [5696] = 387, + [5697] = 269, + [5698] = 359, + [5699] = 343, + [5700] = 360, + [5701] = 344, + [5702] = 361, + [5703] = 284, + [5704] = 264, + [5705] = 334, + [5706] = 386, + [5707] = 252, + [5708] = 339, + [5709] = 357, + [5710] = 380, + [5711] = 382, + [5712] = 382, + [5713] = 406, + [5714] = 933, + [5715] = 345, + [5716] = 5716, + [5717] = 279, + [5718] = 362, + [5719] = 288, + [5720] = 387, + [5721] = 384, + [5722] = 936, + [5723] = 403, + [5724] = 404, + [5725] = 399, + [5726] = 400, + [5727] = 346, + [5728] = 888, + [5729] = 363, + [5730] = 373, + [5731] = 388, + [5732] = 389, + [5733] = 383, + [5734] = 255, + [5735] = 347, + [5736] = 340, + [5737] = 385, + [5738] = 364, + [5739] = 335, + [5740] = 392, + [5741] = 407, + [5742] = 356, + [5743] = 357, + [5744] = 387, + [5745] = 415, + [5746] = 341, + [5747] = 5747, + [5748] = 415, + [5749] = 342, + [5750] = 382, + [5751] = 385, + [5752] = 388, + [5753] = 292, + [5754] = 348, + [5755] = 1241, + [5756] = 365, + [5757] = 257, + [5758] = 381, + [5759] = 381, + [5760] = 406, + [5761] = 349, + [5762] = 339, + [5763] = 373, + [5764] = 407, + [5765] = 5747, + [5766] = 1177, + [5767] = 388, + [5768] = 339, + [5769] = 407, + [5770] = 403, + [5771] = 404, + [5772] = 289, + [5773] = 366, + [5774] = 350, + [5775] = 367, + [5776] = 351, + [5777] = 368, + [5778] = 352, + [5779] = 369, + [5780] = 359, + [5781] = 341, + [5782] = 353, + [5783] = 388, + [5784] = 5784, + [5785] = 403, + [5786] = 290, + [5787] = 289, + [5788] = 370, + [5789] = 404, + [5790] = 291, + [5791] = 360, + [5792] = 361, + [5793] = 362, + [5794] = 342, + [5795] = 363, + [5796] = 343, + [5797] = 292, + [5798] = 256, + [5799] = 1150, + [5800] = 389, + [5801] = 339, + [5802] = 617, + [5803] = 364, + [5804] = 390, + [5805] = 391, + [5806] = 365, + [5807] = 393, + [5808] = 251, + [5809] = 344, + [5810] = 366, + [5811] = 392, + [5812] = 345, + [5813] = 346, + [5814] = 367, + [5815] = 368, + [5816] = 393, + [5817] = 369, + [5818] = 630, + [5819] = 347, + [5820] = 291, + [5821] = 370, + [5822] = 312, + [5823] = 354, + [5824] = 371, + [5825] = 371, + [5826] = 390, + [5827] = 355, + [5828] = 877, + [5829] = 294, + [5830] = 352, + [5831] = 410, + [5832] = 353, + [5833] = 410, + [5834] = 349, + [5835] = 252, + [5836] = 381, + [5837] = 278, + [5838] = 375, + [5839] = 288, + [5840] = 312, + [5841] = 1245, + [5842] = 1247, + [5843] = 343, + [5844] = 269, + [5845] = 264, + [5846] = 333, + [5847] = 1249, + [5848] = 1250, + [5849] = 391, + [5850] = 617, + [5851] = 357, + [5852] = 348, + [5853] = 415, + [5854] = 350, + [5855] = 630, + [5856] = 349, + [5857] = 389, + [5858] = 335, + [5859] = 354, + [5860] = 383, + [5861] = 344, + [5862] = 374, + [5863] = 351, + [5864] = 1323, + [5865] = 386, + [5866] = 355, + [5867] = 323, + [5868] = 386, + [5869] = 330, + [5870] = 361, + [5871] = 340, + [5872] = 324, + [5873] = 363, + [5874] = 345, + [5875] = 343, + [5876] = 404, + [5877] = 333, + [5878] = 415, + [5879] = 342, + [5880] = 381, + [5881] = 341, + [5882] = 270, + [5883] = 266, + [5884] = 291, + [5885] = 389, + [5886] = 5784, + [5887] = 683, + [5888] = 383, + [5889] = 374, + [5890] = 357, + [5891] = 270, + [5892] = 375, + [5893] = 333, + [5894] = 334, + [5895] = 266, + [5896] = 277, + [5897] = 349, + [5898] = 373, + [5899] = 391, + [5900] = 390, + [5901] = 360, + [5902] = 5902, + [5903] = 291, + [5904] = 334, + [5905] = 312, + [5906] = 376, + [5907] = 2115, + [5908] = 410, + [5909] = 324, + [5910] = 323, + [5911] = 334, + [5912] = 373, + [5913] = 347, + [5914] = 407, + [5915] = 312, + [5916] = 393, + [5917] = 392, + [5918] = 630, + [5919] = 277, + [5920] = 375, + [5921] = 359, + [5922] = 277, + [5923] = 364, + [5924] = 351, + [5925] = 5689, + [5926] = 340, + [5927] = 312, + [5928] = 335, + [5929] = 330, + [5930] = 366, + [5931] = 382, + [5932] = 312, + [5933] = 872, + [5934] = 346, + [5935] = 399, + [5936] = 271, + [5937] = 376, + [5938] = 333, + [5939] = 388, + [5940] = 400, + [5941] = 617, + [5942] = 406, + [5943] = 271, + [5944] = 272, + [5945] = 389, + [5946] = 370, + [5947] = 387, + [5948] = 354, + [5949] = 1310, + [5950] = 374, + [5951] = 339, + [5952] = 385, + [5953] = 683, + [5954] = 403, + [5955] = 348, + [5956] = 365, + [5957] = 289, + [5958] = 335, + [5959] = 330, + [5960] = 289, + [5961] = 617, + [5962] = 368, + [5963] = 350, + [5964] = 339, + [5965] = 371, + [5966] = 272, + [5967] = 5662, + [5968] = 333, + [5969] = 352, + [5970] = 630, + [5971] = 269, + [5972] = 312, + [5973] = 5902, + [5974] = 264, + [5975] = 369, + [5976] = 1371, + [5977] = 874, + [5978] = 5716, + [5979] = 362, + [5980] = 873, + [5981] = 353, + [5982] = 367, + [5983] = 356, + [5984] = 339, + [5985] = 344, + [5986] = 324, + [5987] = 390, + [5988] = 410, + [5989] = 373, + [5990] = 330, + [5991] = 407, + [5992] = 289, + [5993] = 269, + [5994] = 407, + [5995] = 374, + [5996] = 341, + [5997] = 264, + [5998] = 357, + [5999] = 415, + [6000] = 406, + [6001] = 410, + [6002] = 387, + [6003] = 375, + [6004] = 323, + [6005] = 324, + [6006] = 339, + [6007] = 381, + [6008] = 399, + [6009] = 330, + [6010] = 376, + [6011] = 341, + [6012] = 335, + [6013] = 335, + [6014] = 334, + [6015] = 400, + [6016] = 342, + [6017] = 343, + [6018] = 382, + [6019] = 344, + [6020] = 345, + [6021] = 346, + [6022] = 347, + [6023] = 330, + [6024] = 388, + [6025] = 348, + [6026] = 349, + [6027] = 350, + [6028] = 391, + [6029] = 351, + [6030] = 352, + [6031] = 353, + [6032] = 354, + [6033] = 355, + [6034] = 335, + [6035] = 385, + [6036] = 1524, + [6037] = 333, + [6038] = 1527, + [6039] = 376, + [6040] = 380, + [6041] = 382, + [6042] = 1136, + [6043] = 333, + [6044] = 357, + [6045] = 415, + [6046] = 392, + [6047] = 6047, + [6048] = 333, + [6049] = 1648, + [6050] = 291, + [6051] = 340, + [6052] = 381, + [6053] = 277, + [6054] = 323, + [6055] = 324, + [6056] = 1536, + [6057] = 271, + [6058] = 272, + [6059] = 342, + [6060] = 359, + [6061] = 343, + [6062] = 360, + [6063] = 344, + [6064] = 361, + [6065] = 345, + [6066] = 362, + [6067] = 346, + [6068] = 363, + [6069] = 347, + [6070] = 364, + [6071] = 348, + [6072] = 365, + [6073] = 349, + [6074] = 366, + [6075] = 350, + [6076] = 351, + [6077] = 368, + [6078] = 352, + [6079] = 369, + [6080] = 353, + [6081] = 370, + [6082] = 354, + [6083] = 371, + [6084] = 355, + [6085] = 356, + [6086] = 1504, + [6087] = 383, + [6088] = 388, + [6089] = 339, + [6090] = 312, + [6091] = 335, + [6092] = 1684, + [6093] = 339, + [6094] = 389, + [6095] = 391, + [6096] = 330, + [6097] = 403, + [6098] = 404, + [6099] = 340, + [6100] = 390, + [6101] = 1102, + [6102] = 392, + [6103] = 323, + [6104] = 335, + [6105] = 324, + [6106] = 393, + [6107] = 380, + [6108] = 382, + [6109] = 384, + [6110] = 384, + [6111] = 1480, + [6112] = 1632, + [6113] = 333, + [6114] = 333, + [6115] = 385, + [6116] = 374, + [6117] = 399, + [6118] = 400, + [6119] = 339, + [6120] = 386, + [6121] = 387, + [6122] = 388, + [6123] = 390, + [6124] = 1538, + [6125] = 323, + [6126] = 375, + [6127] = 410, + [6128] = 1539, + [6129] = 330, + [6130] = 389, + [6131] = 933, + [6132] = 391, + [6133] = 1540, + [6134] = 936, + [6135] = 1730, + [6136] = 1731, + [6137] = 392, + [6138] = 888, + [6139] = 393, + [6140] = 284, + [6141] = 312, + [6142] = 1649, + [6143] = 1650, + [6144] = 1665, + [6145] = 1667, + [6146] = 340, + [6147] = 380, + [6148] = 386, + [6149] = 387, + [6150] = 403, + [6151] = 404, + [6152] = 323, + [6153] = 359, + [6154] = 360, + [6155] = 361, + [6156] = 362, + [6157] = 363, + [6158] = 364, + [6159] = 365, + [6160] = 366, + [6161] = 367, + [6162] = 368, + [6163] = 369, + [6164] = 370, + [6165] = 371, + [6166] = 324, + [6167] = 384, + [6168] = 333, + [6169] = 333, + [6170] = 356, + [6171] = 6047, + [6172] = 406, + [6173] = 340, + [6174] = 385, + [6175] = 1568, + [6176] = 1569, + [6177] = 1570, + [6178] = 383, + [6179] = 277, + [6180] = 1597, + [6181] = 407, + [6182] = 341, + [6183] = 373, + [6184] = 271, + [6185] = 1598, + [6186] = 339, + [6187] = 272, + [6188] = 1599, + [6189] = 340, + [6190] = 406, + [6191] = 1600, + [6192] = 1714, + [6193] = 1715, + [6194] = 339, + [6195] = 383, + [6196] = 339, + [6197] = 399, + [6198] = 400, + [6199] = 403, + [6200] = 404, + [6201] = 393, + [6202] = 367, + [6203] = 330, + [6204] = 404, + [6205] = 344, + [6206] = 345, + [6207] = 346, + [6208] = 347, + [6209] = 410, + [6210] = 340, + [6211] = 339, + [6212] = 348, + [6213] = 323, + [6214] = 324, + [6215] = 349, + [6216] = 339, + [6217] = 384, + [6218] = 389, + [6219] = 350, + [6220] = 351, + [6221] = 352, + [6222] = 683, + [6223] = 353, + [6224] = 354, + [6225] = 355, + [6226] = 380, + [6227] = 357, + [6228] = 356, + [6229] = 391, + [6230] = 415, + [6231] = 333, + [6232] = 370, + [6233] = 406, + [6234] = 335, + [6235] = 339, + [6236] = 335, + [6237] = 368, + [6238] = 359, + [6239] = 371, + [6240] = 367, + [6241] = 392, + [6242] = 385, + [6243] = 360, + [6244] = 390, + [6245] = 361, + [6246] = 324, + [6247] = 617, + [6248] = 630, + [6249] = 393, + [6250] = 362, + [6251] = 386, + [6252] = 359, + [6253] = 360, + [6254] = 361, + [6255] = 362, + [6256] = 343, + [6257] = 364, + [6258] = 365, + [6259] = 359, + [6260] = 366, + [6261] = 383, + [6262] = 367, + [6263] = 368, + [6264] = 369, + [6265] = 333, + [6266] = 370, + [6267] = 371, + [6268] = 330, + [6269] = 363, + [6270] = 376, + [6271] = 364, + [6272] = 387, + [6273] = 342, + [6274] = 360, + [6275] = 365, + [6276] = 399, + [6277] = 366, + [6278] = 400, + [6279] = 388, + [6280] = 361, + [6281] = 367, + [6282] = 373, + [6283] = 362, + [6284] = 368, + [6285] = 381, + [6286] = 617, + [6287] = 359, + [6288] = 360, + [6289] = 361, + [6290] = 362, + [6291] = 363, + [6292] = 363, + [6293] = 364, + [6294] = 365, + [6295] = 374, + [6296] = 366, + [6297] = 367, + [6298] = 368, + [6299] = 369, + [6300] = 359, + [6301] = 360, + [6302] = 361, + [6303] = 362, + [6304] = 363, + [6305] = 364, + [6306] = 365, + [6307] = 366, + [6308] = 367, + [6309] = 368, + [6310] = 369, + [6311] = 370, + [6312] = 371, + [6313] = 370, + [6314] = 371, + [6315] = 369, + [6316] = 366, + [6317] = 369, + [6318] = 370, + [6319] = 630, + [6320] = 371, + [6321] = 364, + [6322] = 683, + [6323] = 365, + [6324] = 407, + [6325] = 2115, + [6326] = 403, + [6327] = 375, + [6328] = 340, + [6329] = 341, + [6330] = 323, + [6331] = 382, + [6332] = 363, + [6333] = 369, + [6334] = 368, + [6335] = 367, + [6336] = 361, + [6337] = 364, + [6338] = 370, + [6339] = 370, + [6340] = 371, + [6341] = 371, + [6342] = 364, + [6343] = 362, + [6344] = 360, + [6345] = 368, + [6346] = 369, + [6347] = 360, + [6348] = 363, + [6349] = 361, + [6350] = 365, + [6351] = 363, + [6352] = 366, + [6353] = 366, + [6354] = 359, + [6355] = 365, + [6356] = 362, + [6357] = 367, + [6358] = 359, + [6359] = 6359, + [6360] = 6359, + [6361] = 6359, + [6362] = 6359, + [6363] = 6359, + [6364] = 6359, + [6365] = 6359, + [6366] = 6359, + [6367] = 6359, + [6368] = 6359, + [6369] = 6359, + [6370] = 6359, + [6371] = 6359, + [6372] = 6359, + [6373] = 6359, + [6374] = 6359, + [6375] = 6359, + [6376] = 6359, + [6377] = 6359, + [6378] = 6359, + [6379] = 6359, + [6380] = 6359, + [6381] = 6359, + [6382] = 6359, + [6383] = 6359, + [6384] = 6359, [6385] = 357, - [6386] = 517, - [6387] = 486, - [6388] = 442, - [6389] = 412, - [6390] = 425, - [6391] = 477, - [6392] = 505, - [6393] = 523, - [6394] = 487, - [6395] = 506, - [6396] = 488, - [6397] = 415, - [6398] = 507, - [6399] = 489, - [6400] = 633, - [6401] = 508, - [6402] = 406, - [6403] = 1138, - [6404] = 633, - [6405] = 637, - [6406] = 490, - [6407] = 509, - [6408] = 491, - [6409] = 522, - [6410] = 480, - [6411] = 443, - [6412] = 444, - [6413] = 431, - [6414] = 459, - [6415] = 460, - [6416] = 406, - [6417] = 406, - [6418] = 1770, - [6419] = 444, - [6420] = 1769, - [6421] = 476, - [6422] = 310, - [6423] = 438, - [6424] = 403, - [6425] = 435, - [6426] = 501, - [6427] = 405, - [6428] = 311, - [6429] = 1212, - [6430] = 481, - [6431] = 312, - [6432] = 1412, - [6433] = 311, - [6434] = 412, - [6435] = 425, - [6436] = 524, - [6437] = 499, - [6438] = 312, - [6439] = 448, - [6440] = 482, - [6441] = 466, - [6442] = 431, - [6443] = 461, - [6444] = 438, - [6445] = 405, - [6446] = 466, - [6447] = 1771, - [6448] = 435, - [6449] = 517, - [6450] = 445, - [6451] = 435, - [6452] = 1768, - [6453] = 446, - [6454] = 462, - [6455] = 1774, - [6456] = 6456, - [6457] = 523, - [6458] = 1772, - [6459] = 461, - [6460] = 472, - [6461] = 493, - [6462] = 462, - [6463] = 442, - [6464] = 443, - [6465] = 480, - [6466] = 514, - [6467] = 509, - [6468] = 466, - [6469] = 496, - [6470] = 431, - [6471] = 486, - [6472] = 431, - [6473] = 412, - [6474] = 512, - [6475] = 494, - [6476] = 490, - [6477] = 501, - [6478] = 495, - [6479] = 473, - [6480] = 1781, - [6481] = 406, - [6482] = 1782, - [6483] = 435, - [6484] = 515, - [6485] = 485, - [6486] = 406, - [6487] = 425, - [6488] = 476, - [6489] = 486, - [6490] = 522, - [6491] = 412, - [6492] = 487, - [6493] = 488, - [6494] = 489, - [6495] = 490, - [6496] = 482, - [6497] = 431, - [6498] = 1773, - [6499] = 491, - [6500] = 445, - [6501] = 406, - [6502] = 431, - [6503] = 485, - [6504] = 492, - [6505] = 339, - [6506] = 493, - [6507] = 494, - [6508] = 495, - [6509] = 496, - [6510] = 497, - [6511] = 425, - [6512] = 498, - [6513] = 364, - [6514] = 412, - [6515] = 310, - [6516] = 425, - [6517] = 477, - [6518] = 1791, - [6519] = 518, - [6520] = 481, - [6521] = 505, - [6522] = 504, - [6523] = 505, - [6524] = 506, - [6525] = 507, - [6526] = 508, - [6527] = 509, - [6528] = 510, - [6529] = 511, - [6530] = 512, - [6531] = 513, - [6532] = 514, - [6533] = 515, - [6534] = 516, - [6535] = 442, - [6536] = 522, - [6537] = 517, - [6538] = 487, - [6539] = 518, - [6540] = 517, - [6541] = 476, - [6542] = 1382, - [6543] = 406, - [6544] = 497, - [6545] = 1784, - [6546] = 406, - [6547] = 472, - [6548] = 516, - [6549] = 523, - [6550] = 518, - [6551] = 498, - [6552] = 462, - [6553] = 405, - [6554] = 403, - [6555] = 6456, - [6556] = 288, - [6557] = 443, - [6558] = 444, - [6559] = 1775, - [6560] = 289, - [6561] = 506, - [6562] = 445, - [6563] = 405, - [6564] = 1776, - [6565] = 438, - [6566] = 1783, - [6567] = 510, - [6568] = 491, - [6569] = 1765, - [6570] = 473, - [6571] = 483, - [6572] = 364, - [6573] = 488, - [6574] = 341, - [6575] = 483, - [6576] = 477, - [6577] = 524, - [6578] = 507, - [6579] = 1777, - [6580] = 492, - [6581] = 1767, - [6582] = 483, - [6583] = 405, - [6584] = 448, - [6585] = 403, - [6586] = 525, - [6587] = 1204, - [6588] = 1199, - [6589] = 525, - [6590] = 503, - [6591] = 511, - [6592] = 403, - [6593] = 459, - [6594] = 499, - [6595] = 459, - [6596] = 460, - [6597] = 504, - [6598] = 513, - [6599] = 435, - [6600] = 460, - [6601] = 431, - [6602] = 1778, - [6603] = 1779, - [6604] = 1780, - [6605] = 489, - [6606] = 508, - [6607] = 477, - [6608] = 415, - [6609] = 448, - [6610] = 503, - [6611] = 412, - [6612] = 425, - [6613] = 357, - [6614] = 503, - [6615] = 403, - [6616] = 446, - [6617] = 480, - [6618] = 472, - [6619] = 473, - [6620] = 1785, - [6621] = 1786, - [6622] = 1787, - [6623] = 1788, - [6624] = 1789, - [6625] = 1790, - [6626] = 446, - [6627] = 505, - [6628] = 489, - [6629] = 480, - [6630] = 641, - [6631] = 514, - [6632] = 515, - [6633] = 477, - [6634] = 522, - [6635] = 505, - [6636] = 504, - [6637] = 510, - [6638] = 511, - [6639] = 403, - [6640] = 515, - [6641] = 431, - [6642] = 516, - [6643] = 506, - [6644] = 493, - [6645] = 512, - [6646] = 496, - [6647] = 507, - [6648] = 412, - [6649] = 513, - [6650] = 406, - [6651] = 508, - [6652] = 444, - [6653] = 487, - [6654] = 492, - [6655] = 442, - [6656] = 514, - [6657] = 2588, - [6658] = 461, - [6659] = 509, - [6660] = 516, - [6661] = 515, - [6662] = 637, - [6663] = 524, - [6664] = 501, - [6665] = 481, - [6666] = 505, - [6667] = 476, - [6668] = 497, - [6669] = 516, - [6670] = 506, - [6671] = 472, - [6672] = 518, - [6673] = 510, - [6674] = 425, - [6675] = 633, - [6676] = 511, - [6677] = 507, - [6678] = 512, - [6679] = 473, - [6680] = 460, - [6681] = 490, - [6682] = 513, - [6683] = 486, - [6684] = 466, - [6685] = 514, - [6686] = 462, - [6687] = 406, - [6688] = 459, - [6689] = 515, - [6690] = 523, - [6691] = 516, - [6692] = 412, - [6693] = 425, - [6694] = 495, - [6695] = 508, - [6696] = 446, - [6697] = 494, - [6698] = 504, - [6699] = 438, - [6700] = 506, - [6701] = 504, - [6702] = 505, - [6703] = 506, - [6704] = 507, - [6705] = 508, - [6706] = 509, - [6707] = 510, - [6708] = 511, - [6709] = 512, - [6710] = 513, - [6711] = 514, - [6712] = 515, - [6713] = 516, - [6714] = 499, - [6715] = 507, - [6716] = 405, - [6717] = 508, - [6718] = 641, - [6719] = 435, - [6720] = 509, - [6721] = 509, - [6722] = 525, - [6723] = 510, - [6724] = 503, - [6725] = 517, - [6726] = 510, - [6727] = 485, - [6728] = 403, - [6729] = 448, - [6730] = 491, - [6731] = 511, - [6732] = 431, - [6733] = 633, - [6734] = 637, - [6735] = 511, - [6736] = 512, - [6737] = 504, - [6738] = 443, - [6739] = 482, - [6740] = 431, - [6741] = 483, - [6742] = 498, - [6743] = 445, - [6744] = 504, - [6745] = 505, - [6746] = 506, - [6747] = 507, - [6748] = 513, - [6749] = 508, - [6750] = 509, - [6751] = 405, - [6752] = 435, - [6753] = 512, - [6754] = 514, - [6755] = 513, - [6756] = 488, - [6757] = 510, - [6758] = 511, - [6759] = 515, - [6760] = 508, - [6761] = 516, - [6762] = 512, - [6763] = 507, - [6764] = 504, - [6765] = 505, - [6766] = 506, - [6767] = 507, - [6768] = 508, - [6769] = 509, - [6770] = 510, - [6771] = 511, - [6772] = 512, - [6773] = 513, - [6774] = 514, - [6775] = 515, - [6776] = 516, - [6777] = 506, - [6778] = 513, - [6779] = 509, - [6780] = 514, - [6781] = 504, - [6782] = 505, - [6783] = 6783, - [6784] = 6783, - [6785] = 6783, - [6786] = 6783, - [6787] = 6783, - [6788] = 6783, - [6789] = 6783, - [6790] = 6783, - [6791] = 6783, - [6792] = 6783, - [6793] = 6783, - [6794] = 6783, - [6795] = 6783, - [6796] = 6783, - [6797] = 6783, - [6798] = 6783, - [6799] = 501, - [6800] = 6783, - [6801] = 6783, - [6802] = 6783, - [6803] = 6783, - [6804] = 6783, - [6805] = 6783, - [6806] = 6783, - [6807] = 6783, - [6808] = 6783, - [6809] = 6783, - [6810] = 6783, - [6811] = 6783, - [6812] = 6783, - [6813] = 6783, - [6814] = 6783, - [6815] = 6783, - [6816] = 6783, - [6817] = 1027, - [6818] = 1090, - [6819] = 1144, - [6820] = 1026, - [6821] = 1091, - [6822] = 1096, - [6823] = 1132, - [6824] = 1097, - [6825] = 1134, - [6826] = 1098, - [6827] = 288, - [6828] = 1027, - [6829] = 1026, - [6830] = 1027, - [6831] = 1076, - [6832] = 1043, - [6833] = 1046, - [6834] = 1026, - [6835] = 1035, - [6836] = 1026, - [6837] = 1082, - [6838] = 1044, - [6839] = 289, - [6840] = 1063, - [6841] = 1069, - [6842] = 1027, - [6843] = 1063, - [6844] = 249, - [6845] = 1046, - [6846] = 1035, - [6847] = 1082, - [6848] = 1097, - [6849] = 1027, - [6850] = 1044, - [6851] = 1098, - [6852] = 1043, - [6853] = 1090, - [6854] = 1027, - [6855] = 1044, - [6856] = 1091, - [6857] = 1026, - [6858] = 1063, - [6859] = 1027, - [6860] = 1082, - [6861] = 1063, - [6862] = 1076, - [6863] = 1046, - [6864] = 1035, - [6865] = 1043, - [6866] = 1069, - [6867] = 1076, - [6868] = 1132, - [6869] = 1134, - [6870] = 1076, - [6871] = 1044, - [6872] = 1026, - [6873] = 1144, - [6874] = 1082, - [6875] = 1069, - [6876] = 1046, - [6877] = 1035, - [6878] = 1043, - [6879] = 1026, - [6880] = 1069, - [6881] = 1096, - [6882] = 1090, - [6883] = 1097, - [6884] = 1098, - [6885] = 249, - [6886] = 1082, - [6887] = 1097, - [6888] = 1098, - [6889] = 288, - [6890] = 289, - [6891] = 1043, - [6892] = 1046, - [6893] = 1090, - [6894] = 1097, - [6895] = 1098, - [6896] = 1132, - [6897] = 1134, - [6898] = 1091, - [6899] = 1090, - [6900] = 1091, - [6901] = 1096, - [6902] = 1144, - [6903] = 1096, - [6904] = 1035, - [6905] = 1091, - [6906] = 1096, - [6907] = 1027, - [6908] = 1082, - [6909] = 249, - [6910] = 1076, - [6911] = 1043, - [6912] = 1026, - [6913] = 1082, - [6914] = 1076, - [6915] = 1043, - [6916] = 1063, - [6917] = 252, - [6918] = 1069, - [6919] = 251, - [6920] = 250, - [6921] = 271, - [6922] = 1044, - [6923] = 1076, - [6924] = 1099, - [6925] = 266, - [6926] = 270, - [6927] = 269, - [6928] = 1044, - [6929] = 1044, - [6930] = 253, - [6931] = 1046, - [6932] = 1063, - [6933] = 1069, - [6934] = 1046, - [6935] = 1035, - [6936] = 1035, - [6937] = 1063, - [6938] = 1069, - [6939] = 249, - [6940] = 1113, - [6941] = 252, - [6942] = 250, - [6943] = 289, - [6944] = 1027, - [6945] = 253, - [6946] = 1144, - [6947] = 1099, - [6948] = 251, - [6949] = 1090, - [6950] = 252, - [6951] = 1091, - [6952] = 1134, - [6953] = 1096, - [6954] = 251, - [6955] = 250, - [6956] = 250, - [6957] = 1097, - [6958] = 1090, - [6959] = 1097, - [6960] = 1098, - [6961] = 1044, - [6962] = 1027, - [6963] = 1091, - [6964] = 1098, - [6965] = 1099, - [6966] = 1026, - [6967] = 253, - [6968] = 252, - [6969] = 517, - [6970] = 258, - [6971] = 249, - [6972] = 256, - [6973] = 1026, - [6974] = 259, - [6975] = 249, - [6976] = 1090, - [6977] = 1046, - [6978] = 1035, - [6979] = 293, - [6980] = 294, - [6981] = 249, - [6982] = 1091, - [6983] = 1063, - [6984] = 1069, - [6985] = 1096, - [6986] = 1146, - [6987] = 1026, - [6988] = 253, - [6989] = 1043, - [6990] = 1076, - [6991] = 1096, - [6992] = 1097, - [6993] = 1098, - [6994] = 1099, - [6995] = 251, - [6996] = 1113, - [6997] = 288, - [6998] = 1132, - [6999] = 1082, - [7000] = 1134, - [7001] = 1076, - [7002] = 269, - [7003] = 249, - [7004] = 252, - [7005] = 7005, - [7006] = 256, - [7007] = 1099, - [7008] = 1043, - [7009] = 251, - [7010] = 253, - [7011] = 1026, - [7012] = 258, - [7013] = 293, - [7014] = 1044, - [7015] = 294, - [7016] = 1138, - [7017] = 1146, - [7018] = 310, - [7019] = 517, - [7020] = 270, - [7021] = 250, - [7022] = 251, - [7023] = 1113, - [7024] = 1130, - [7025] = 1027, - [7026] = 1046, - [7027] = 266, - [7028] = 1130, - [7029] = 1063, - [7030] = 249, - [7031] = 1043, - [7032] = 1035, - [7033] = 258, - [7034] = 1099, - [7035] = 311, - [7036] = 253, - [7037] = 1113, - [7038] = 312, - [7039] = 258, - [7040] = 256, - [7041] = 1082, - [7042] = 251, - [7043] = 1063, - [7044] = 1069, - [7045] = 1097, - [7046] = 1099, - [7047] = 7005, - [7048] = 1090, - [7049] = 1091, - [7050] = 1096, - [7051] = 1144, - [7052] = 1076, - [7053] = 1098, - [7054] = 253, - [7055] = 252, - [7056] = 1044, - [7057] = 1026, - [7058] = 256, - [7059] = 1063, - [7060] = 1082, - [7061] = 1139, - [7062] = 1069, - [7063] = 250, - [7064] = 1044, - [7065] = 259, - [7066] = 1069, - [7067] = 259, - [7068] = 1138, - [7069] = 7069, - [7070] = 252, - [7071] = 1139, - [7072] = 1113, - [7073] = 1046, - [7074] = 1035, - [7075] = 1076, - [7076] = 1132, - [7077] = 259, + [6386] = 6359, + [6387] = 6359, + [6388] = 6359, + [6389] = 6359, + [6390] = 6359, + [6391] = 768, + [6392] = 828, + [6393] = 821, + [6394] = 2460, + [6395] = 840, + [6396] = 827, + [6397] = 822, + [6398] = 2516, + [6399] = 2517, + [6400] = 769, + [6401] = 769, + [6402] = 791, + [6403] = 264, + [6404] = 769, + [6405] = 814, + [6406] = 819, + [6407] = 269, + [6408] = 795, + [6409] = 768, + [6410] = 815, + [6411] = 769, + [6412] = 768, + [6413] = 768, + [6414] = 812, + [6415] = 786, + [6416] = 816, + [6417] = 828, + [6418] = 819, + [6419] = 786, + [6420] = 791, + [6421] = 769, + [6422] = 233, + [6423] = 812, + [6424] = 816, + [6425] = 768, + [6426] = 786, + [6427] = 795, + [6428] = 791, + [6429] = 2516, + [6430] = 2517, + [6431] = 2460, + [6432] = 815, + [6433] = 819, + [6434] = 840, + [6435] = 821, + [6436] = 822, + [6437] = 795, + [6438] = 814, + [6439] = 815, + [6440] = 816, + [6441] = 815, + [6442] = 816, + [6443] = 768, + [6444] = 814, + [6445] = 786, + [6446] = 791, + [6447] = 814, + [6448] = 819, + [6449] = 812, + [6450] = 795, + [6451] = 769, + [6452] = 812, + [6453] = 769, + [6454] = 768, + [6455] = 827, + [6456] = 2516, + [6457] = 234, + [6458] = 257, + [6459] = 840, + [6460] = 821, + [6461] = 822, + [6462] = 769, + [6463] = 795, + [6464] = 235, + [6465] = 812, + [6466] = 819, + [6467] = 256, + [6468] = 251, + [6469] = 814, + [6470] = 819, + [6471] = 828, + [6472] = 827, + [6473] = 2517, + [6474] = 840, + [6475] = 815, + [6476] = 816, + [6477] = 840, + [6478] = 821, + [6479] = 822, + [6480] = 795, + [6481] = 269, + [6482] = 821, + [6483] = 2460, + [6484] = 812, + [6485] = 819, + [6486] = 264, + [6487] = 822, + [6488] = 795, + [6489] = 237, + [6490] = 814, + [6491] = 233, + [6492] = 828, + [6493] = 827, + [6494] = 828, + [6495] = 827, + [6496] = 768, + [6497] = 786, + [6498] = 816, + [6499] = 786, + [6500] = 812, + [6501] = 233, + [6502] = 815, + [6503] = 791, + [6504] = 255, + [6505] = 791, + [6506] = 786, + [6507] = 791, + [6508] = 238, + [6509] = 233, + [6510] = 832, + [6511] = 815, + [6512] = 816, + [6513] = 814, + [6514] = 269, + [6515] = 821, + [6516] = 264, + [6517] = 233, + [6518] = 2516, + [6519] = 828, + [6520] = 877, + [6521] = 815, + [6522] = 840, + [6523] = 821, + [6524] = 827, + [6525] = 822, + [6526] = 822, + [6527] = 816, + [6528] = 233, + [6529] = 234, + [6530] = 237, + [6531] = 245, + [6532] = 769, + [6533] = 832, + [6534] = 241, + [6535] = 786, + [6536] = 270, + [6537] = 238, + [6538] = 791, + [6539] = 266, + [6540] = 2517, + [6541] = 233, + [6542] = 235, + [6543] = 846, + [6544] = 234, + [6545] = 768, + [6546] = 814, + [6547] = 240, + [6548] = 769, + [6549] = 812, + [6550] = 235, + [6551] = 828, + [6552] = 846, + [6553] = 827, + [6554] = 840, + [6555] = 828, + [6556] = 832, + [6557] = 768, + [6558] = 238, + [6559] = 383, + [6560] = 238, + [6561] = 237, + [6562] = 237, + [6563] = 819, + [6564] = 235, + [6565] = 795, + [6566] = 827, + [6567] = 769, + [6568] = 234, + [6569] = 832, + [6570] = 821, + [6571] = 822, + [6572] = 840, + [6573] = 2460, + [6574] = 872, + [6575] = 846, + [6576] = 271, + [6577] = 6577, + [6578] = 795, + [6579] = 6579, + [6580] = 821, + [6581] = 768, + [6582] = 814, + [6583] = 241, + [6584] = 828, + [6585] = 769, + [6586] = 827, + [6587] = 872, + [6588] = 234, + [6589] = 245, + [6590] = 874, + [6591] = 277, + [6592] = 383, + [6593] = 812, + [6594] = 769, + [6595] = 819, + [6596] = 235, + [6597] = 266, + [6598] = 256, + [6599] = 877, + [6600] = 795, + [6601] = 840, + [6602] = 6579, + [6603] = 2460, + [6604] = 822, + [6605] = 786, + [6606] = 240, + [6607] = 272, + [6608] = 786, + [6609] = 238, + [6610] = 245, + [6611] = 240, + [6612] = 873, + [6613] = 791, + [6614] = 815, + [6615] = 791, + [6616] = 786, + [6617] = 241, + [6618] = 816, + [6619] = 816, + [6620] = 795, + [6621] = 819, + [6622] = 245, + [6623] = 832, + [6624] = 235, + [6625] = 815, + [6626] = 814, + [6627] = 2517, + [6628] = 238, + [6629] = 233, + [6630] = 812, + [6631] = 846, + [6632] = 846, + [6633] = 233, + [6634] = 241, + [6635] = 257, + [6636] = 874, + [6637] = 234, + [6638] = 237, + [6639] = 235, + [6640] = 237, + [6641] = 2516, + [6642] = 251, + [6643] = 234, + [6644] = 237, + [6645] = 240, + [6646] = 873, + [6647] = 791, + [6648] = 814, + [6649] = 832, + [6650] = 6650, + [6651] = 6651, + [6652] = 832, + [6653] = 238, + [6654] = 270, + [6655] = 3112, + [6656] = 240, + [6657] = 1093, + [6658] = 6658, + [6659] = 1094, + [6660] = 6660, + [6661] = 1097, + [6662] = 6662, + [6663] = 6651, + [6664] = 872, + [6665] = 240, + [6666] = 936, + [6667] = 6667, + [6668] = 6668, + [6669] = 795, + [6670] = 874, + [6671] = 6671, + [6672] = 769, + [6673] = 768, + [6674] = 6674, + [6675] = 846, + [6676] = 933, + [6677] = 814, + [6678] = 2516, + [6679] = 888, + [6680] = 814, + [6681] = 1136, + [6682] = 936, + [6683] = 819, + [6684] = 3098, + [6685] = 1115, + [6686] = 2460, + [6687] = 873, + [6688] = 943, + [6689] = 873, + [6690] = 828, + [6691] = 827, + [6692] = 6692, + [6693] = 245, + [6694] = 840, + [6695] = 245, + [6696] = 768, + [6697] = 6658, + [6698] = 6660, + [6699] = 821, + [6700] = 6667, + [6701] = 828, + [6702] = 6668, + [6703] = 827, + [6704] = 828, + [6705] = 827, + [6706] = 6674, + [6707] = 3099, + [6708] = 233, + [6709] = 1102, + [6710] = 846, + [6711] = 235, + [6712] = 3177, + [6713] = 234, + [6714] = 6714, + [6715] = 6650, + [6716] = 822, + [6717] = 769, + [6718] = 832, + [6719] = 257, + [6720] = 1136, + [6721] = 874, + [6722] = 6722, + [6723] = 6662, + [6724] = 828, + [6725] = 827, + [6726] = 832, + [6727] = 271, + [6728] = 1480, + [6729] = 840, + [6730] = 241, + [6731] = 821, + [6732] = 822, + [6733] = 795, + [6734] = 888, + [6735] = 251, + [6736] = 2517, + [6737] = 877, + [6738] = 933, + [6739] = 874, + [6740] = 768, + [6741] = 2972, + [6742] = 240, + [6743] = 815, + [6744] = 840, + [6745] = 816, + [6746] = 819, + [6747] = 945, + [6748] = 768, + [6749] = 6658, + [6750] = 6660, + [6751] = 235, + [6752] = 6722, + [6753] = 786, + [6754] = 6667, + [6755] = 6668, + [6756] = 237, + [6757] = 791, + [6758] = 846, + [6759] = 877, + [6760] = 872, + [6761] = 815, + [6762] = 816, + [6763] = 873, + [6764] = 245, + [6765] = 2955, + [6766] = 840, + [6767] = 821, + [6768] = 6671, + [6769] = 822, + [6770] = 234, + [6771] = 769, + [6772] = 284, + [6773] = 877, + [6774] = 786, + [6775] = 238, + [6776] = 821, + [6777] = 272, + [6778] = 255, + [6779] = 238, + [6780] = 791, + [6781] = 769, + [6782] = 872, + [6783] = 1102, + [6784] = 237, + [6785] = 822, + [6786] = 241, + [6787] = 256, + [6788] = 3093, + [6789] = 812, + [6790] = 241, + [6791] = 791, + [6792] = 240, + [6793] = 233, + [6794] = 815, + [6795] = 795, + [6796] = 874, + [6797] = 936, + [6798] = 846, + [6799] = 6799, + [6800] = 6799, + [6801] = 815, + [6802] = 233, + [6803] = 816, + [6804] = 6799, + [6805] = 237, + [6806] = 6799, + [6807] = 943, + [6808] = 245, + [6809] = 6799, + [6810] = 6799, + [6811] = 6811, + [6812] = 6812, + [6813] = 933, + [6814] = 269, + [6815] = 786, + [6816] = 819, + [6817] = 828, + [6818] = 264, + [6819] = 991, + [6820] = 821, + [6821] = 936, + [6822] = 888, + [6823] = 6799, + [6824] = 6824, + [6825] = 235, + [6826] = 822, + [6827] = 872, + [6828] = 2516, + [6829] = 2517, + [6830] = 873, + [6831] = 812, + [6832] = 812, + [6833] = 795, + [6834] = 945, + [6835] = 936, + [6836] = 877, + [6837] = 6799, + [6838] = 816, + [6839] = 6799, + [6840] = 872, + [6841] = 6799, + [6842] = 270, + [6843] = 6799, + [6844] = 815, + [6845] = 819, + [6846] = 6799, + [6847] = 816, + [6848] = 786, + [6849] = 6799, + [6850] = 815, + [6851] = 816, + [6852] = 933, + [6853] = 846, + [6854] = 786, + [6855] = 812, + [6856] = 791, + [6857] = 877, + [6858] = 6799, + [6859] = 791, + [6860] = 873, + [6861] = 6824, + [6862] = 6799, + [6863] = 241, + [6864] = 6864, + [6865] = 943, + [6866] = 832, + [6867] = 814, + [6868] = 812, + [6869] = 992, + [6870] = 827, + [6871] = 2516, + [6872] = 888, + [6873] = 245, + [6874] = 2517, + [6875] = 6799, + [6876] = 6799, + [6877] = 2460, + [6878] = 4589, + [6879] = 4591, + [6880] = 872, + [6881] = 945, + [6882] = 6882, + [6883] = 234, + [6884] = 814, + [6885] = 6864, + [6886] = 819, + [6887] = 873, + [6888] = 795, + [6889] = 284, + [6890] = 233, + [6891] = 846, + [6892] = 266, + [6893] = 6893, + [6894] = 874, + [6895] = 241, + [6896] = 814, + [6897] = 233, + [6898] = 840, + [6899] = 6799, + [6900] = 791, + [6901] = 6799, + [6902] = 2460, + [6903] = 6799, + [6904] = 6799, + [6905] = 814, + [6906] = 877, + [6907] = 6799, + [6908] = 945, + [6909] = 240, + [6910] = 888, + [6911] = 233, + [6912] = 795, + [6913] = 933, + [6914] = 238, + [6915] = 819, + [6916] = 877, + [6917] = 6917, + [6918] = 6799, + [6919] = 943, + [6920] = 827, + [6921] = 840, + [6922] = 821, + [6923] = 822, + [6924] = 877, + [6925] = 786, + [6926] = 828, + [6927] = 874, + [6928] = 6799, + [6929] = 6929, + [6930] = 277, + [6931] = 6931, + [6932] = 271, + [6933] = 827, + [6934] = 6934, + [6935] = 846, + [6936] = 872, + [6937] = 828, + [6938] = 991, + [6939] = 6939, + [6940] = 6940, + [6941] = 936, + [6942] = 945, + [6943] = 4591, + [6944] = 873, + [6945] = 6945, + [6946] = 2460, + [6947] = 6947, + [6948] = 874, + [6949] = 828, + [6950] = 832, + [6951] = 6951, + [6952] = 888, + [6953] = 238, + [6954] = 6954, + [6955] = 235, + [6956] = 272, + [6957] = 832, + [6958] = 6958, + [6959] = 6959, + [6960] = 6960, + [6961] = 6961, + [6962] = 6962, + [6963] = 6963, + [6964] = 6964, + [6965] = 6965, + [6966] = 6893, + [6967] = 256, + [6968] = 1053, + [6969] = 6969, + [6970] = 6970, + [6971] = 943, + [6972] = 6972, + [6973] = 2516, + [6974] = 2517, + [6975] = 252, + [6976] = 840, + [6977] = 821, + [6978] = 6978, + [6979] = 6979, + [6980] = 6980, + [6981] = 933, + [6982] = 2460, + [6983] = 832, + [6984] = 888, + [6985] = 2516, + [6986] = 992, + [6987] = 255, + [6988] = 6988, + [6989] = 6989, + [6990] = 2517, + [6991] = 6991, + [6992] = 822, + [6993] = 936, + [6994] = 888, + [6995] = 6995, + [6996] = 6996, + [6997] = 6997, + [6998] = 3087, + [6999] = 872, + [7000] = 255, + [7001] = 7001, + [7002] = 255, + [7003] = 872, + [7004] = 873, + [7005] = 237, + [7006] = 874, + [7007] = 1371, + [7008] = 7008, + [7009] = 4809, + [7010] = 245, + [7011] = 874, + [7012] = 4115, + [7013] = 238, + [7014] = 846, + [7015] = 933, + [7016] = 233, + [7017] = 936, + [7018] = 877, + [7019] = 7019, + [7020] = 992, + [7021] = 234, + [7022] = 7022, + [7023] = 4893, + [7024] = 234, + [7025] = 7025, + [7026] = 7026, + [7027] = 7027, + [7028] = 7028, + [7029] = 945, + [7030] = 7030, + [7031] = 7031, + [7032] = 237, + [7033] = 846, + [7034] = 235, + [7035] = 3196, + [7036] = 7036, + [7037] = 233, + [7038] = 7038, + [7039] = 7039, + [7040] = 7040, + [7041] = 4889, + [7042] = 4589, + [7043] = 991, + [7044] = 7044, + [7045] = 877, + [7046] = 7046, + [7047] = 235, + [7048] = 877, + [7049] = 238, + [7050] = 234, + [7051] = 237, + [7052] = 241, + [7053] = 933, + [7054] = 234, + [7055] = 233, + [7056] = 846, + [7057] = 877, + [7058] = 251, + [7059] = 992, + [7060] = 873, + [7061] = 7061, + [7062] = 235, + [7063] = 257, + [7064] = 7064, + [7065] = 7065, + [7066] = 7066, + [7067] = 6931, + [7068] = 828, + [7069] = 238, + [7070] = 827, + [7071] = 840, + [7072] = 821, + [7073] = 822, + [7074] = 238, + [7075] = 240, + [7076] = 877, + [7077] = 945, [7078] = 7078, - [7079] = 7079, - [7080] = 250, - [7081] = 256, - [7082] = 1212, - [7083] = 1063, - [7084] = 7079, - [7085] = 1130, - [7086] = 1069, - [7087] = 1097, - [7088] = 1098, - [7089] = 1138, - [7090] = 1090, - [7091] = 1091, - [7092] = 1096, - [7093] = 7093, - [7094] = 1412, - [7095] = 7095, - [7096] = 1043, - [7097] = 7097, - [7098] = 7098, - [7099] = 1027, - [7100] = 7100, - [7101] = 1378, - [7102] = 7102, - [7103] = 7078, - [7104] = 1386, - [7105] = 258, - [7106] = 252, - [7107] = 256, - [7108] = 1097, - [7109] = 253, - [7110] = 1146, - [7111] = 7111, - [7112] = 1026, - [7113] = 249, - [7114] = 1091, - [7115] = 1441, - [7116] = 1204, - [7117] = 311, - [7118] = 1099, + [7079] = 237, + [7080] = 252, + [7081] = 7081, + [7082] = 846, + [7083] = 4885, + [7084] = 4886, + [7085] = 235, + [7086] = 991, + [7087] = 7087, + [7088] = 943, + [7089] = 237, + [7090] = 7090, + [7091] = 877, + [7092] = 234, + [7093] = 6989, + [7094] = 7094, + [7095] = 7087, + [7096] = 7065, + [7097] = 7019, + [7098] = 943, + [7099] = 255, + [7100] = 257, + [7101] = 256, + [7102] = 251, + [7103] = 7094, + [7104] = 6917, + [7105] = 1093, + [7106] = 7106, + [7107] = 235, + [7108] = 1245, + [7109] = 1538, + [7110] = 7110, + [7111] = 7110, + [7112] = 7112, + [7113] = 6964, + [7114] = 1247, + [7115] = 7115, + [7116] = 7106, + [7117] = 7039, + [7118] = 7044, [7119] = 7119, - [7120] = 259, - [7121] = 258, - [7122] = 256, - [7123] = 1138, - [7124] = 1216, - [7125] = 1138, - [7126] = 259, - [7127] = 1132, - [7128] = 1134, - [7129] = 1146, - [7130] = 251, - [7131] = 1098, - [7132] = 1076, - [7133] = 1139, - [7134] = 341, - [7135] = 7097, - [7136] = 250, - [7137] = 1676, - [7138] = 1139, - [7139] = 1113, - [7140] = 1113, - [7141] = 1382, - [7142] = 7098, - [7143] = 3602, - [7144] = 7119, - [7145] = 1027, - [7146] = 259, - [7147] = 258, - [7148] = 1090, - [7149] = 1027, - [7150] = 7095, - [7151] = 271, - [7152] = 1082, - [7153] = 253, - [7154] = 1139, - [7155] = 1212, - [7156] = 1176, - [7157] = 1026, - [7158] = 1091, - [7159] = 266, - [7160] = 270, - [7161] = 269, - [7162] = 1412, - [7163] = 312, - [7164] = 7164, - [7165] = 1130, - [7166] = 1090, - [7167] = 1026, - [7168] = 1765, - [7169] = 1046, - [7170] = 1035, - [7171] = 252, - [7172] = 1096, - [7173] = 1044, - [7174] = 7100, - [7175] = 7097, - [7176] = 1044, - [7177] = 1046, - [7178] = 1063, - [7179] = 1069, - [7180] = 7098, - [7181] = 1666, - [7182] = 1035, - [7183] = 7183, - [7184] = 2744, - [7185] = 1096, - [7186] = 7100, - [7187] = 1204, + [7120] = 7110, + [7121] = 7119, + [7122] = 1138, + [7123] = 832, + [7124] = 241, + [7125] = 1127, + [7126] = 238, + [7127] = 7127, + [7128] = 252, + [7129] = 7115, + [7130] = 1504, + [7131] = 7119, + [7132] = 7064, + [7133] = 7112, + [7134] = 7106, + [7135] = 255, + [7136] = 872, + [7137] = 7127, + [7138] = 1568, + [7139] = 1569, + [7140] = 6969, + [7141] = 877, + [7142] = 6988, + [7143] = 943, + [7144] = 312, + [7145] = 7046, + [7146] = 6995, + [7147] = 1570, + [7148] = 1597, + [7149] = 933, + [7150] = 992, + [7151] = 1600, + [7152] = 7112, + [7153] = 7110, + [7154] = 7119, + [7155] = 1598, + [7156] = 1599, + [7157] = 6939, + [7158] = 6996, + [7159] = 7127, + [7160] = 7115, + [7161] = 245, + [7162] = 6970, + [7163] = 6978, + [7164] = 7115, + [7165] = 7106, + [7166] = 936, + [7167] = 846, + [7168] = 1536, + [7169] = 7112, + [7170] = 7106, + [7171] = 7171, + [7172] = 1600, + [7173] = 7040, + [7174] = 873, + [7175] = 1504, + [7176] = 1249, + [7177] = 1250, + [7178] = 7112, + [7179] = 7110, + [7180] = 257, + [7181] = 7119, + [7182] = 256, + [7183] = 1539, + [7184] = 873, + [7185] = 7106, + [7186] = 7112, + [7187] = 1053, [7188] = 251, - [7189] = 1097, - [7190] = 1043, - [7191] = 1382, - [7192] = 7102, - [7193] = 7164, - [7194] = 1364, - [7195] = 1130, - [7196] = 2748, - [7197] = 250, - [7198] = 2750, - [7199] = 2749, - [7200] = 1090, - [7201] = 1099, - [7202] = 7102, - [7203] = 1199, - [7204] = 1199, - [7205] = 1091, - [7206] = 7183, - [7207] = 1097, - [7208] = 1146, - [7209] = 1026, - [7210] = 1096, - [7211] = 1098, - [7212] = 1144, - [7213] = 1098, - [7214] = 1113, - [7215] = 1027, - [7216] = 1076, - [7217] = 7217, - [7218] = 7218, - [7219] = 1138, - [7220] = 7220, - [7221] = 252, - [7222] = 7217, - [7223] = 7218, - [7224] = 7218, - [7225] = 1076, - [7226] = 1082, - [7227] = 7218, - [7228] = 251, - [7229] = 1204, - [7230] = 7218, - [7231] = 7218, - [7232] = 1044, - [7233] = 1146, - [7234] = 7218, - [7235] = 250, - [7236] = 7218, - [7237] = 1044, - [7238] = 1176, - [7239] = 258, - [7240] = 1046, - [7241] = 7218, - [7242] = 1035, - [7243] = 1138, - [7244] = 1063, - [7245] = 1069, - [7246] = 1099, - [7247] = 7218, - [7248] = 1046, - [7249] = 1035, - [7250] = 1043, - [7251] = 1113, - [7252] = 7218, - [7253] = 1082, - [7254] = 1204, - [7255] = 7218, - [7256] = 1199, - [7257] = 256, - [7258] = 1139, - [7259] = 1176, - [7260] = 1082, - [7261] = 7218, - [7262] = 7262, - [7263] = 7218, - [7264] = 1199, - [7265] = 7218, - [7266] = 1132, - [7267] = 7218, - [7268] = 1113, - [7269] = 253, - [7270] = 1138, - [7271] = 1130, - [7272] = 7218, - [7273] = 1139, - [7274] = 1216, - [7275] = 1130, - [7276] = 1130, - [7277] = 288, - [7278] = 289, - [7279] = 1134, - [7280] = 7218, - [7281] = 1146, - [7282] = 249, - [7283] = 7218, - [7284] = 7218, - [7285] = 1044, - [7286] = 1212, - [7287] = 1247, - [7288] = 7218, - [7289] = 1063, - [7290] = 1069, - [7291] = 7218, - [7292] = 7292, - [7293] = 1096, - [7294] = 1035, - [7295] = 1199, - [7296] = 7218, - [7297] = 1063, - [7298] = 1069, - [7299] = 1216, - [7300] = 1076, - [7301] = 259, - [7302] = 5132, - [7303] = 1144, - [7304] = 5136, - [7305] = 1043, - [7306] = 1139, - [7307] = 258, - [7308] = 7308, - [7309] = 1212, - [7310] = 1082, - [7311] = 7308, - [7312] = 1097, - [7313] = 249, - [7314] = 1146, - [7315] = 7315, - [7316] = 293, - [7317] = 294, - [7318] = 1204, - [7319] = 7218, - [7320] = 1248, - [7321] = 341, - [7322] = 1043, - [7323] = 256, - [7324] = 1113, - [7325] = 1063, - [7326] = 259, - [7327] = 1132, - [7328] = 1134, - [7329] = 1144, - [7330] = 1146, - [7331] = 1176, - [7332] = 249, - [7333] = 1046, - [7334] = 1035, - [7335] = 7218, - [7336] = 1043, - [7337] = 1076, - [7338] = 1216, - [7339] = 1097, - [7340] = 1098, - [7341] = 1090, - [7342] = 1091, - [7343] = 1096, - [7344] = 7218, - [7345] = 1044, - [7346] = 1212, - [7347] = 1076, - [7348] = 1069, - [7349] = 249, - [7350] = 7350, - [7351] = 1146, - [7352] = 249, - [7353] = 1098, - [7354] = 1090, - [7355] = 1091, - [7356] = 1046, - [7357] = 5264, - [7358] = 7358, - [7359] = 7359, - [7360] = 266, - [7361] = 256, - [7362] = 1176, - [7363] = 7363, - [7364] = 7364, - [7365] = 7365, - [7366] = 252, - [7367] = 250, - [7368] = 1216, - [7369] = 5314, - [7370] = 1204, - [7371] = 1146, - [7372] = 7350, - [7373] = 7373, - [7374] = 7374, - [7375] = 7375, - [7376] = 250, - [7377] = 270, - [7378] = 1248, - [7379] = 1247, - [7380] = 7380, - [7381] = 7381, - [7382] = 7382, - [7383] = 7383, - [7384] = 1248, - [7385] = 7385, - [7386] = 7386, - [7387] = 269, - [7388] = 7315, - [7389] = 1096, - [7390] = 4653, - [7391] = 268, - [7392] = 253, - [7393] = 1204, - [7394] = 1204, - [7395] = 7395, + [7189] = 257, + [7190] = 1539, + [7191] = 7110, + [7192] = 7119, + [7193] = 7106, + [7194] = 2972, + [7195] = 2955, + [7196] = 1115, + [7197] = 7119, + [7198] = 1094, + [7199] = 1097, + [7200] = 1540, + [7201] = 241, + [7202] = 7127, + [7203] = 255, + [7204] = 7115, + [7205] = 6945, + [7206] = 7112, + [7207] = 6951, + [7208] = 7112, + [7209] = 7106, + [7210] = 7106, + [7211] = 7127, + [7212] = 1241, + [7213] = 245, + [7214] = 242, + [7215] = 7115, + [7216] = 7090, + [7217] = 7112, + [7218] = 6980, + [7219] = 7078, + [7220] = 846, + [7221] = 7106, + [7222] = 235, + [7223] = 6962, + [7224] = 933, + [7225] = 1136, + [7226] = 877, + [7227] = 7110, + [7228] = 992, + [7229] = 1053, + [7230] = 846, + [7231] = 7127, + [7232] = 7127, + [7233] = 873, + [7234] = 7115, + [7235] = 7127, + [7236] = 933, + [7237] = 237, + [7238] = 7115, + [7239] = 7112, + [7240] = 7110, + [7241] = 7106, + [7242] = 241, + [7243] = 7110, + [7244] = 1078, + [7245] = 936, + [7246] = 1599, + [7247] = 7119, + [7248] = 270, + [7249] = 6997, + [7250] = 238, + [7251] = 266, + [7252] = 7110, + [7253] = 991, + [7254] = 7112, + [7255] = 234, + [7256] = 7106, + [7257] = 7027, + [7258] = 240, + [7259] = 943, + [7260] = 992, + [7261] = 877, + [7262] = 7112, + [7263] = 888, + [7264] = 7001, + [7265] = 7106, + [7266] = 846, + [7267] = 945, + [7268] = 877, + [7269] = 945, + [7270] = 7025, + [7271] = 234, + [7272] = 7119, + [7273] = 269, + [7274] = 7110, + [7275] = 936, + [7276] = 888, + [7277] = 7127, + [7278] = 991, + [7279] = 7127, + [7280] = 7110, + [7281] = 7115, + [7282] = 873, + [7283] = 7115, + [7284] = 6947, + [7285] = 4809, + [7286] = 245, + [7287] = 7112, + [7288] = 1569, + [7289] = 7106, + [7290] = 7110, + [7291] = 991, + [7292] = 7112, + [7293] = 7110, + [7294] = 7022, + [7295] = 7106, + [7296] = 7119, + [7297] = 234, + [7298] = 7031, + [7299] = 237, + [7300] = 235, + [7301] = 1570, + [7302] = 7110, + [7303] = 7119, + [7304] = 7110, + [7305] = 6954, + [7306] = 874, + [7307] = 1104, + [7308] = 874, + [7309] = 1079, + [7310] = 7310, + [7311] = 7112, + [7312] = 7112, + [7313] = 7106, + [7314] = 1540, + [7315] = 1538, + [7316] = 241, + [7317] = 4889, + [7318] = 256, + [7319] = 7112, + [7320] = 7106, + [7321] = 7106, + [7322] = 7127, + [7323] = 846, + [7324] = 1524, + [7325] = 277, + [7326] = 7036, + [7327] = 7115, + [7328] = 2031, + [7329] = 888, + [7330] = 7110, + [7331] = 4885, + [7332] = 240, + [7333] = 240, + [7334] = 1597, + [7335] = 238, + [7336] = 1102, + [7337] = 846, + [7338] = 7112, + [7339] = 877, + [7340] = 7112, + [7341] = 7106, + [7342] = 7106, + [7343] = 846, + [7344] = 872, + [7345] = 7110, + [7346] = 1598, + [7347] = 7110, + [7348] = 7119, + [7349] = 6979, + [7350] = 251, + [7351] = 4893, + [7352] = 2033, + [7353] = 6929, + [7354] = 7110, + [7355] = 1122, + [7356] = 7110, + [7357] = 7026, + [7358] = 7119, + [7359] = 7127, + [7360] = 1524, + [7361] = 873, + [7362] = 7028, + [7363] = 846, + [7364] = 7115, + [7365] = 237, + [7366] = 7110, + [7367] = 7112, + [7368] = 1527, + [7369] = 241, + [7370] = 7106, + [7371] = 877, + [7372] = 252, + [7373] = 264, + [7374] = 7061, + [7375] = 1142, + [7376] = 240, + [7377] = 7112, + [7378] = 7106, + [7379] = 874, + [7380] = 872, + [7381] = 1527, + [7382] = 245, + [7383] = 7110, + [7384] = 7127, + [7385] = 872, + [7386] = 872, + [7387] = 832, + [7388] = 7115, + [7389] = 1053, + [7390] = 255, + [7391] = 874, + [7392] = 7110, + [7393] = 7112, + [7394] = 240, + [7395] = 7106, [7396] = 7396, [7397] = 7397, - [7398] = 1176, + [7398] = 7112, [7399] = 7399, - [7400] = 1199, - [7401] = 268, - [7402] = 252, - [7403] = 271, - [7404] = 249, - [7405] = 7405, - [7406] = 7406, - [7407] = 1146, - [7408] = 7408, - [7409] = 7409, - [7410] = 1132, - [7411] = 1134, - [7412] = 1144, - [7413] = 7413, - [7414] = 7414, - [7415] = 7415, - [7416] = 5132, - [7417] = 7417, - [7418] = 1212, - [7419] = 7419, - [7420] = 7420, - [7421] = 7421, - [7422] = 7422, - [7423] = 7423, - [7424] = 7424, - [7425] = 7425, - [7426] = 7426, - [7427] = 7427, - [7428] = 310, - [7429] = 252, - [7430] = 7430, - [7431] = 1098, - [7432] = 1146, - [7433] = 1139, - [7434] = 5136, - [7435] = 1199, - [7436] = 253, - [7437] = 251, - [7438] = 252, - [7439] = 1138, - [7440] = 271, - [7441] = 250, - [7442] = 1139, - [7443] = 1248, - [7444] = 311, - [7445] = 1130, - [7446] = 312, - [7447] = 1700, - [7448] = 250, - [7449] = 1097, - [7450] = 1130, - [7451] = 259, - [7452] = 7452, - [7453] = 7453, - [7454] = 7454, - [7455] = 249, - [7456] = 1113, - [7457] = 2572, - [7458] = 1138, - [7459] = 7459, - [7460] = 1199, - [7461] = 1099, - [7462] = 1146, - [7463] = 258, - [7464] = 1212, - [7465] = 1139, + [7400] = 7038, + [7401] = 1568, + [7402] = 874, + [7403] = 1536, + [7404] = 245, + [7405] = 7106, + [7406] = 7110, + [7407] = 7407, + [7408] = 7110, + [7409] = 4886, + [7410] = 7008, + [7411] = 7112, + [7412] = 7106, + [7413] = 7110, + [7414] = 6991, + [7415] = 2031, + [7416] = 240, + [7417] = 888, + [7418] = 846, + [7419] = 877, + [7420] = 1241, + [7421] = 241, + [7422] = 943, + [7423] = 1053, + [7424] = 1078, + [7425] = 945, + [7426] = 992, + [7427] = 846, + [7428] = 1245, + [7429] = 1247, + [7430] = 1053, + [7431] = 1249, + [7432] = 1250, + [7433] = 991, + [7434] = 1115, + [7435] = 1053, + [7436] = 872, + [7437] = 7437, + [7438] = 1104, + [7439] = 872, + [7440] = 873, + [7441] = 873, + [7442] = 874, + [7443] = 277, + [7444] = 1093, + [7445] = 1094, + [7446] = 245, + [7447] = 1097, + [7448] = 241, + [7449] = 271, + [7450] = 874, + [7451] = 240, + [7452] = 272, + [7453] = 373, + [7454] = 374, + [7455] = 1136, + [7456] = 375, + [7457] = 376, + [7458] = 240, + [7459] = 877, + [7460] = 872, + [7461] = 873, + [7462] = 270, + [7463] = 266, + [7464] = 874, + [7465] = 7465, [7466] = 7466, [7467] = 7467, - [7468] = 251, - [7469] = 7469, - [7470] = 1113, - [7471] = 7471, - [7472] = 1099, - [7473] = 1176, - [7474] = 7474, - [7475] = 1097, - [7476] = 1097, - [7477] = 253, - [7478] = 7478, - [7479] = 1098, - [7480] = 1113, - [7481] = 251, - [7482] = 1090, - [7483] = 1091, - [7484] = 1096, - [7485] = 1130, - [7486] = 1288, - [7487] = 1146, - [7488] = 5304, - [7489] = 253, - [7490] = 1138, - [7491] = 1132, - [7492] = 1134, - [7493] = 1090, - [7494] = 5250, - [7495] = 1247, - [7496] = 251, - [7497] = 1113, - [7498] = 1212, - [7499] = 7499, - [7500] = 1146, - [7501] = 7471, - [7502] = 1216, - [7503] = 7503, - [7504] = 253, - [7505] = 7505, - [7506] = 251, - [7507] = 5334, - [7508] = 250, - [7509] = 252, - [7510] = 1091, - [7511] = 7511, - [7512] = 1247, - [7513] = 7513, - [7514] = 1216, - [7515] = 7505, - [7516] = 271, - [7517] = 7474, - [7518] = 7381, - [7519] = 7359, - [7520] = 7520, - [7521] = 7521, - [7522] = 3623, - [7523] = 271, - [7524] = 266, - [7525] = 270, - [7526] = 269, - [7527] = 1113, - [7528] = 1144, - [7529] = 7529, - [7530] = 249, - [7531] = 7499, - [7532] = 1099, - [7533] = 1212, - [7534] = 1138, - [7535] = 1398, - [7536] = 288, - [7537] = 252, - [7538] = 289, - [7539] = 259, - [7540] = 1422, - [7541] = 1199, - [7542] = 1146, - [7543] = 251, - [7544] = 7521, - [7545] = 250, - [7546] = 1288, - [7547] = 268, - [7548] = 1139, - [7549] = 1113, - [7550] = 1113, - [7551] = 5304, - [7552] = 5334, - [7553] = 250, - [7554] = 7529, - [7555] = 1382, - [7556] = 1769, - [7557] = 7375, - [7558] = 7358, - [7559] = 7363, - [7560] = 7364, - [7561] = 7365, - [7562] = 1130, - [7563] = 1778, - [7564] = 1779, - [7565] = 1780, - [7566] = 7395, - [7567] = 7396, - [7568] = 7397, - [7569] = 7399, - [7570] = 1113, - [7571] = 1204, - [7572] = 1199, - [7573] = 1212, - [7574] = 7405, - [7575] = 7406, - [7576] = 7408, - [7577] = 253, - [7578] = 7409, - [7579] = 271, - [7580] = 1775, - [7581] = 1776, - [7582] = 1130, - [7583] = 7413, - [7584] = 7414, - [7585] = 7415, - [7586] = 1777, - [7587] = 7417, - [7588] = 7588, - [7589] = 266, - [7590] = 7590, - [7591] = 7590, - [7592] = 1775, - [7593] = 7419, - [7594] = 258, - [7595] = 268, - [7596] = 258, + [7468] = 7399, + [7469] = 312, + [7470] = 877, + [7471] = 1093, + [7472] = 1094, + [7473] = 846, + [7474] = 1097, + [7475] = 1078, + [7476] = 846, + [7477] = 872, + [7478] = 873, + [7479] = 874, + [7480] = 846, + [7481] = 877, + [7482] = 933, + [7483] = 936, + [7484] = 1127, + [7485] = 888, + [7486] = 312, + [7487] = 877, + [7488] = 872, + [7489] = 1115, + [7490] = 877, + [7491] = 7491, + [7492] = 1136, + [7493] = 1138, + [7494] = 873, + [7495] = 7495, + [7496] = 335, + [7497] = 1142, + [7498] = 1079, + [7499] = 1102, + [7500] = 874, + [7501] = 933, + [7502] = 1078, + [7503] = 936, + [7504] = 888, + [7505] = 1136, + [7506] = 340, + [7507] = 323, + [7508] = 324, + [7509] = 1122, + [7510] = 1127, + [7511] = 1102, + [7512] = 7512, + [7513] = 1138, + [7514] = 872, + [7515] = 846, + [7516] = 1276, + [7517] = 330, + [7518] = 873, + [7519] = 1142, + [7520] = 1079, + [7521] = 1266, + [7522] = 874, + [7523] = 1150, + [7524] = 1151, + [7525] = 7495, + [7526] = 872, + [7527] = 873, + [7528] = 1127, + [7529] = 992, + [7530] = 933, + [7531] = 877, + [7532] = 874, + [7533] = 933, + [7534] = 936, + [7535] = 888, + [7536] = 7491, + [7537] = 877, + [7538] = 991, + [7539] = 1115, + [7540] = 2972, + [7541] = 1093, + [7542] = 1094, + [7543] = 1097, + [7544] = 2955, + [7545] = 1138, + [7546] = 339, + [7547] = 936, + [7548] = 1142, + [7549] = 312, + [7550] = 888, + [7551] = 877, + [7552] = 245, + [7553] = 1079, + [7554] = 1122, + [7555] = 7396, + [7556] = 7397, + [7557] = 872, + [7558] = 245, + [7559] = 933, + [7560] = 242, + [7561] = 1102, + [7562] = 877, + [7563] = 873, + [7564] = 1122, + [7565] = 241, + [7566] = 936, + [7567] = 2033, + [7568] = 312, + [7569] = 874, + [7570] = 877, + [7571] = 936, + [7572] = 888, + [7573] = 877, + [7574] = 1136, + [7575] = 873, + [7576] = 1266, + [7577] = 7577, + [7578] = 1151, + [7579] = 7579, + [7580] = 933, + [7581] = 936, + [7582] = 888, + [7583] = 1102, + [7584] = 874, + [7585] = 943, + [7586] = 7586, + [7587] = 1136, + [7588] = 991, + [7589] = 992, + [7590] = 340, + [7591] = 1078, + [7592] = 874, + [7593] = 7593, + [7594] = 1249, + [7595] = 877, + [7596] = 1250, [7597] = 7597, - [7598] = 7598, + [7598] = 1079, [7599] = 7599, - [7600] = 1138, - [7601] = 7597, - [7602] = 7602, - [7603] = 1778, - [7604] = 270, - [7605] = 1779, - [7606] = 7420, - [7607] = 1780, - [7608] = 269, - [7609] = 7421, - [7610] = 7598, - [7611] = 7599, - [7612] = 7422, - [7613] = 1204, - [7614] = 7423, - [7615] = 7424, - [7616] = 7503, - [7617] = 7425, - [7618] = 364, - [7619] = 1785, - [7620] = 7426, - [7621] = 1786, - [7622] = 7427, - [7623] = 7430, - [7624] = 1787, - [7625] = 1199, - [7626] = 1788, - [7627] = 1416, - [7628] = 259, - [7629] = 1212, - [7630] = 1789, - [7631] = 1790, - [7632] = 1791, - [7633] = 271, - [7634] = 253, - [7635] = 7588, - [7636] = 7590, - [7637] = 1776, - [7638] = 252, - [7639] = 7597, - [7640] = 7602, - [7641] = 7598, - [7642] = 7599, - [7643] = 1138, - [7644] = 1113, - [7645] = 1769, - [7646] = 7646, - [7647] = 256, - [7648] = 1247, - [7649] = 7588, - [7650] = 7590, - [7651] = 7597, - [7652] = 7602, - [7653] = 1139, - [7654] = 7598, - [7655] = 7599, - [7656] = 7588, - [7657] = 7590, - [7658] = 7597, - [7659] = 7602, - [7660] = 7598, - [7661] = 7599, - [7662] = 7588, - [7663] = 7590, - [7664] = 7597, - [7665] = 7602, - [7666] = 256, - [7667] = 7598, - [7668] = 7599, - [7669] = 7588, - [7670] = 7590, - [7671] = 1777, - [7672] = 7597, - [7673] = 7602, - [7674] = 1463, - [7675] = 1466, - [7676] = 7598, - [7677] = 7599, - [7678] = 7588, - [7679] = 7590, - [7680] = 1138, - [7681] = 7597, - [7682] = 7602, - [7683] = 7452, - [7684] = 7453, - [7685] = 7598, - [7686] = 7599, - [7687] = 7588, - [7688] = 7590, - [7689] = 7597, - [7690] = 7602, - [7691] = 1130, - [7692] = 7598, - [7693] = 7598, - [7694] = 7599, - [7695] = 7588, - [7696] = 7590, - [7697] = 7599, - [7698] = 7597, - [7699] = 7602, - [7700] = 1204, - [7701] = 253, - [7702] = 7598, - [7703] = 7599, - [7704] = 1427, - [7705] = 2633, - [7706] = 7590, - [7707] = 7597, - [7708] = 7602, - [7709] = 7602, - [7710] = 7598, - [7711] = 7599, - [7712] = 7588, - [7713] = 7590, - [7714] = 7597, - [7715] = 7602, - [7716] = 1139, - [7717] = 7598, - [7718] = 7599, - [7719] = 7588, - [7720] = 7590, - [7721] = 7597, - [7722] = 7602, - [7723] = 1146, - [7724] = 7598, - [7725] = 7588, - [7726] = 7590, - [7727] = 7597, - [7728] = 7602, - [7729] = 259, - [7730] = 7598, - [7731] = 7588, - [7732] = 7590, - [7733] = 7597, - [7734] = 7602, - [7735] = 1785, - [7736] = 1786, - [7737] = 1787, - [7738] = 1130, - [7739] = 7598, - [7740] = 1365, - [7741] = 7597, - [7742] = 7602, - [7743] = 1788, - [7744] = 1789, - [7745] = 7598, - [7746] = 7597, - [7747] = 7602, - [7748] = 1790, - [7749] = 1099, - [7750] = 7598, - [7751] = 7597, - [7752] = 7602, - [7753] = 1791, - [7754] = 1460, - [7755] = 1474, - [7756] = 7598, - [7757] = 7597, - [7758] = 7602, - [7759] = 1476, - [7760] = 1216, - [7761] = 7598, - [7762] = 7597, - [7763] = 7602, - [7764] = 1247, - [7765] = 1414, - [7766] = 1288, - [7767] = 7598, - [7768] = 7598, - [7769] = 7597, - [7770] = 7602, - [7771] = 310, - [7772] = 7599, - [7773] = 1113, - [7774] = 7598, - [7775] = 7597, - [7776] = 7602, - [7777] = 5250, - [7778] = 7598, - [7779] = 5264, - [7780] = 7597, - [7781] = 7602, - [7782] = 262, - [7783] = 1146, - [7784] = 7598, - [7785] = 7597, - [7786] = 7602, - [7787] = 1248, - [7788] = 7598, - [7789] = 7789, - [7790] = 7602, - [7791] = 7598, - [7792] = 1438, - [7793] = 1216, - [7794] = 1146, - [7795] = 258, - [7796] = 259, - [7797] = 252, - [7798] = 7467, - [7799] = 7588, - [7800] = 1099, - [7801] = 7478, - [7802] = 258, - [7803] = 1146, - [7804] = 266, - [7805] = 1113, - [7806] = 270, - [7807] = 269, - [7808] = 256, - [7809] = 251, - [7810] = 1666, - [7811] = 1676, - [7812] = 1364, - [7813] = 1378, - [7814] = 1386, - [7815] = 1441, - [7816] = 5314, - [7817] = 259, - [7818] = 7513, - [7819] = 1113, - [7820] = 1138, - [7821] = 7373, - [7822] = 1139, - [7823] = 1412, - [7824] = 7824, - [7825] = 1130, - [7826] = 256, - [7827] = 251, - [7828] = 1139, - [7829] = 1176, - [7830] = 1176, - [7831] = 1248, - [7832] = 1288, - [7833] = 250, - [7834] = 258, - [7835] = 1248, - [7836] = 293, - [7837] = 294, - [7838] = 1113, - [7839] = 1146, - [7840] = 1247, - [7841] = 7598, - [7842] = 7599, - [7843] = 256, - [7844] = 2632, - [7845] = 271, - [7846] = 7846, - [7847] = 7847, - [7848] = 7848, - [7849] = 7598, - [7850] = 7588, - [7851] = 364, - [7852] = 1412, - [7853] = 1398, - [7854] = 1427, - [7855] = 431, - [7856] = 1146, - [7857] = 1146, - [7858] = 1412, - [7859] = 7859, - [7860] = 1204, - [7861] = 1199, - [7862] = 1212, - [7863] = 1199, - [7864] = 405, - [7865] = 1139, - [7866] = 256, - [7867] = 7867, - [7868] = 1199, - [7869] = 412, - [7870] = 425, - [7871] = 1146, - [7872] = 435, - [7873] = 1414, - [7874] = 1130, - [7875] = 1212, - [7876] = 7876, - [7877] = 259, - [7878] = 1146, - [7879] = 1146, - [7880] = 1138, - [7881] = 7881, - [7882] = 1146, - [7883] = 1138, - [7884] = 7884, - [7885] = 1365, - [7886] = 1138, - [7887] = 1130, - [7888] = 7881, - [7889] = 1113, - [7890] = 1592, - [7891] = 1113, - [7892] = 1204, - [7893] = 1139, - [7894] = 7848, - [7895] = 1139, - [7896] = 7876, - [7897] = 1212, - [7898] = 1212, - [7899] = 2632, - [7900] = 2633, - [7901] = 1247, - [7902] = 1146, - [7903] = 1248, - [7904] = 293, - [7905] = 294, - [7906] = 7846, - [7907] = 7847, - [7908] = 1364, - [7909] = 1113, - [7910] = 1382, - [7911] = 1398, - [7912] = 1414, - [7913] = 259, - [7914] = 1438, - [7915] = 256, - [7916] = 1130, - [7917] = 1378, - [7918] = 1365, - [7919] = 1139, - [7920] = 522, - [7921] = 1416, - [7922] = 1146, - [7923] = 1176, - [7924] = 1364, - [7925] = 1443, - [7926] = 1412, - [7927] = 1199, - [7928] = 523, - [7929] = 1378, - [7930] = 1386, - [7931] = 1146, - [7932] = 403, - [7933] = 1382, - [7934] = 1248, - [7935] = 1288, - [7936] = 1288, - [7937] = 1288, - [7938] = 1113, - [7939] = 1416, - [7940] = 1386, - [7941] = 524, - [7942] = 1427, - [7943] = 1463, - [7944] = 525, - [7945] = 1466, - [7946] = 1204, - [7947] = 1422, - [7948] = 364, - [7949] = 1212, - [7950] = 1582, - [7951] = 310, - [7952] = 1364, - [7953] = 1666, - [7954] = 1139, - [7955] = 1113, - [7956] = 1378, - [7957] = 1386, - [7958] = 1441, - [7959] = 1676, - [7960] = 258, - [7961] = 1138, - [7962] = 1441, - [7963] = 1460, - [7964] = 1382, - [7965] = 7965, - [7966] = 1130, - [7967] = 1139, - [7968] = 1139, - [7969] = 1113, - [7970] = 258, - [7971] = 1130, - [7972] = 1398, - [7973] = 1138, - [7974] = 1422, - [7975] = 1216, - [7976] = 1130, - [7977] = 1474, - [7978] = 262, - [7979] = 1204, - [7980] = 1476, - [7981] = 364, - [7982] = 1130, - [7983] = 1445, - [7984] = 1138, - [7985] = 1427, - [7986] = 256, - [7987] = 7987, - [7988] = 1146, - [7989] = 1138, - [7990] = 1146, - [7991] = 1139, - [7992] = 311, - [7993] = 1422, - [7994] = 258, - [7995] = 1199, - [7996] = 1416, - [7997] = 1441, - [7998] = 364, - [7999] = 259, - [8000] = 312, - [8001] = 1365, - [8002] = 1247, - [8003] = 1414, - [8004] = 1204, - [8005] = 1130, - [8006] = 1138, - [8007] = 1438, - [8008] = 403, + [7600] = 330, + [7601] = 7601, + [7602] = 323, + [7603] = 324, + [7604] = 1142, + [7605] = 933, + [7606] = 7606, + [7607] = 7607, + [7608] = 7608, + [7609] = 933, + [7610] = 1150, + [7611] = 7611, + [7612] = 7612, + [7613] = 7613, + [7614] = 7614, + [7615] = 7615, + [7616] = 340, + [7617] = 7617, + [7618] = 7618, + [7619] = 7619, + [7620] = 7620, + [7621] = 872, + [7622] = 7622, + [7623] = 1079, + [7624] = 877, + [7625] = 323, + [7626] = 324, + [7627] = 1151, + [7628] = 292, + [7629] = 1053, + [7630] = 1078, + [7631] = 7613, + [7632] = 936, + [7633] = 7614, + [7634] = 312, + [7635] = 312, + [7636] = 1122, + [7637] = 255, + [7638] = 333, + [7639] = 888, + [7640] = 888, + [7641] = 1276, + [7642] = 7612, + [7643] = 7617, + [7644] = 1097, + [7645] = 7617, + [7646] = 945, + [7647] = 1266, + [7648] = 288, + [7649] = 7618, + [7650] = 7619, + [7651] = 7620, + [7652] = 1150, + [7653] = 991, + [7654] = 1151, + [7655] = 877, + [7656] = 1115, + [7657] = 1127, + [7658] = 1102, + [7659] = 877, + [7660] = 330, + [7661] = 936, + [7662] = 877, + [7663] = 1104, + [7664] = 312, + [7665] = 1241, + [7666] = 3087, + [7667] = 7667, + [7668] = 7668, + [7669] = 888, + [7670] = 7670, + [7671] = 7671, + [7672] = 873, + [7673] = 1093, + [7674] = 1094, + [7675] = 1097, + [7676] = 339, + [7677] = 877, + [7678] = 1371, + [7679] = 1093, + [7680] = 1094, + [7681] = 1097, + [7682] = 1310, + [7683] = 872, + [7684] = 1078, + [7685] = 7685, + [7686] = 7615, + [7687] = 873, + [7688] = 2955, + [7689] = 1115, + [7690] = 874, + [7691] = 279, + [7692] = 1632, + [7693] = 1245, + [7694] = 1247, + [7695] = 335, + [7696] = 933, + [7697] = 284, + [7698] = 7622, + [7699] = 1249, + [7700] = 877, + [7701] = 1250, + [7702] = 312, + [7703] = 1150, + [7704] = 7606, + [7705] = 7705, + [7706] = 873, + [7707] = 255, + [7708] = 312, + [7709] = 1122, + [7710] = 846, + [7711] = 335, + [7712] = 888, + [7713] = 257, + [7714] = 277, + [7715] = 1245, + [7716] = 945, + [7717] = 290, + [7718] = 943, + [7719] = 291, + [7720] = 256, + [7721] = 933, + [7722] = 1104, + [7723] = 1122, + [7724] = 1649, + [7725] = 1650, + [7726] = 1665, + [7727] = 1667, + [7728] = 1241, + [7729] = 7612, + [7730] = 292, + [7731] = 1093, + [7732] = 945, + [7733] = 251, + [7734] = 936, + [7735] = 1247, + [7736] = 1138, + [7737] = 7737, + [7738] = 943, + [7739] = 888, + [7740] = 1138, + [7741] = 1053, + [7742] = 7611, + [7743] = 271, + [7744] = 1142, + [7745] = 7745, + [7746] = 7579, + [7747] = 7586, + [7748] = 7593, + [7749] = 7597, + [7750] = 7608, + [7751] = 293, + [7752] = 1276, + [7753] = 7599, + [7754] = 7607, + [7755] = 1094, + [7756] = 272, + [7757] = 7757, + [7758] = 278, + [7759] = 7759, + [7760] = 874, + [7761] = 877, + [7762] = 7762, + [7763] = 1245, + [7764] = 1104, + [7765] = 1247, + [7766] = 294, + [7767] = 877, + [7768] = 1142, + [7769] = 7769, + [7770] = 872, + [7771] = 2972, + [7772] = 1249, + [7773] = 1250, + [7774] = 1714, + [7775] = 1715, + [7776] = 1730, + [7777] = 1731, + [7778] = 312, + [7779] = 330, + [7780] = 872, + [7781] = 1079, + [7782] = 933, + [7783] = 943, + [7784] = 873, + [7785] = 7785, + [7786] = 7745, + [7787] = 7787, + [7788] = 330, + [7789] = 1323, + [7790] = 7601, + [7791] = 945, + [7792] = 340, + [7793] = 874, + [7794] = 335, + [7795] = 936, + [7796] = 1266, + [7797] = 339, + [7798] = 1115, + [7799] = 872, + [7800] = 1104, + [7801] = 933, + [7802] = 873, + [7803] = 1138, + [7804] = 1241, + [7805] = 968, + [7806] = 1127, + [7807] = 933, + [7808] = 936, + [7809] = 874, + [7810] = 1276, + [7811] = 1127, + [7812] = 936, + [7813] = 888, + [7814] = 872, + [7815] = 992, + [7816] = 323, + [7817] = 324, + [7818] = 339, + [7819] = 340, + [7820] = 1127, + [7821] = 1104, + [7822] = 933, + [7823] = 1276, + [7824] = 1102, + [7825] = 846, + [7826] = 991, + [7827] = 288, + [7828] = 3093, + [7829] = 1714, + [7830] = 7830, + [7831] = 1715, + [7832] = 7832, + [7833] = 7833, + [7834] = 7834, + [7835] = 7835, + [7836] = 7836, + [7837] = 1730, + [7838] = 7838, + [7839] = 312, + [7840] = 1731, + [7841] = 7841, + [7842] = 330, + [7843] = 312, + [7844] = 290, + [7845] = 1122, + [7846] = 1093, + [7847] = 1094, + [7848] = 1097, + [7849] = 1138, + [7850] = 1266, + [7851] = 255, + [7852] = 290, + [7853] = 292, + [7854] = 293, + [7855] = 294, + [7856] = 279, + [7857] = 278, + [7858] = 7858, + [7859] = 1122, + [7860] = 312, + [7861] = 330, + [7862] = 339, + [7863] = 933, + [7864] = 1142, + [7865] = 1150, + [7866] = 7866, + [7867] = 1138, + [7868] = 1079, + [7869] = 1151, + [7870] = 7870, + [7871] = 7871, + [7872] = 1249, + [7873] = 1250, + [7874] = 335, + [7875] = 7833, + [7876] = 340, + [7877] = 846, + [7878] = 335, + [7879] = 333, + [7880] = 1115, + [7881] = 943, + [7882] = 339, + [7883] = 7883, + [7884] = 1078, + [7885] = 992, + [7886] = 339, + [7887] = 7887, + [7888] = 1504, + [7889] = 294, + [7890] = 7890, + [7891] = 7891, + [7892] = 7892, + [7893] = 1371, + [7894] = 1093, + [7895] = 1094, + [7896] = 7866, + [7897] = 877, + [7898] = 3087, + [7899] = 1097, + [7900] = 2955, + [7901] = 1245, + [7902] = 270, + [7903] = 945, + [7904] = 266, + [7905] = 323, + [7906] = 324, + [7907] = 991, + [7908] = 936, + [7909] = 1632, + [7910] = 1276, + [7911] = 1247, + [7912] = 7912, + [7913] = 7838, + [7914] = 933, + [7915] = 255, + [7916] = 936, + [7917] = 888, + [7918] = 1104, + [7919] = 257, + [7920] = 1524, + [7921] = 1527, + [7922] = 340, + [7923] = 256, + [7924] = 1536, + [7925] = 251, + [7926] = 1310, + [7927] = 1115, + [7928] = 1266, + [7929] = 1310, + [7930] = 846, + [7931] = 2972, + [7932] = 933, + [7933] = 1538, + [7934] = 943, + [7935] = 1539, + [7936] = 1540, + [7937] = 323, + [7938] = 324, + [7939] = 992, + [7940] = 330, + [7941] = 7941, + [7942] = 330, + [7943] = 888, + [7944] = 1649, + [7945] = 1142, + [7946] = 936, + [7947] = 7947, + [7948] = 7948, + [7949] = 1150, + [7950] = 1568, + [7951] = 1569, + [7952] = 1570, + [7953] = 1597, + [7954] = 1598, + [7955] = 1599, + [7956] = 1600, + [7957] = 7957, + [7958] = 1079, + [7959] = 888, + [7960] = 7960, + [7961] = 1151, + [7962] = 1093, + [7963] = 1094, + [7964] = 1097, + [7965] = 945, + [7966] = 1650, + [7967] = 991, + [7968] = 7968, + [7969] = 312, + [7970] = 1665, + [7971] = 1104, + [7972] = 877, + [7973] = 872, + [7974] = 1122, + [7975] = 888, + [7976] = 873, + [7977] = 279, + [7978] = 333, + [7979] = 874, + [7980] = 333, + [7981] = 7981, + [7982] = 1115, + [7983] = 1241, + [7984] = 1323, + [7985] = 7985, + [7986] = 7986, + [7987] = 1667, + [7988] = 7835, + [7989] = 330, + [7990] = 877, + [7991] = 7836, + [7992] = 1310, + [7993] = 1276, + [7994] = 992, + [7995] = 933, + [7996] = 7996, + [7997] = 936, + [7998] = 888, + [7999] = 7999, + [8000] = 1480, + [8001] = 330, + [8002] = 8002, + [8003] = 8003, + [8004] = 7858, + [8005] = 7832, + [8006] = 1053, + [8007] = 8007, + [8008] = 8008, [8009] = 8009, - [8010] = 1463, - [8011] = 8011, - [8012] = 8012, - [8013] = 8013, - [8014] = 8014, - [8015] = 8015, - [8016] = 364, - [8017] = 364, - [8018] = 8018, - [8019] = 405, - [8020] = 1416, - [8021] = 1382, - [8022] = 1204, - [8023] = 403, - [8024] = 1773, - [8025] = 1130, - [8026] = 1700, - [8027] = 412, - [8028] = 425, - [8029] = 312, - [8030] = 1199, - [8031] = 1386, - [8032] = 8032, - [8033] = 310, - [8034] = 1235, - [8035] = 405, - [8036] = 1199, - [8037] = 1422, - [8038] = 1176, - [8039] = 1441, - [8040] = 2572, - [8041] = 1199, - [8042] = 8018, - [8043] = 1204, - [8044] = 1138, - [8045] = 1138, - [8046] = 355, - [8047] = 1204, - [8048] = 1441, - [8049] = 1212, - [8050] = 1466, - [8051] = 333, - [8052] = 1592, - [8053] = 425, - [8054] = 1130, - [8055] = 1216, - [8056] = 8011, - [8057] = 8057, - [8058] = 1146, + [8010] = 7834, + [8011] = 936, + [8012] = 284, + [8013] = 7947, + [8014] = 1266, + [8015] = 312, + [8016] = 1078, + [8017] = 8007, + [8018] = 2319, + [8019] = 278, + [8020] = 992, + [8021] = 8021, + [8022] = 1127, + [8023] = 1684, + [8024] = 846, + [8025] = 3098, + [8026] = 1150, + [8027] = 1648, + [8028] = 1151, + [8029] = 933, + [8030] = 936, + [8031] = 1323, + [8032] = 888, + [8033] = 1323, + [8034] = 290, + [8035] = 291, + [8036] = 335, + [8037] = 991, + [8038] = 3099, + [8039] = 846, + [8040] = 8040, + [8041] = 8041, + [8042] = 8042, + [8043] = 846, + [8044] = 1371, + [8045] = 292, + [8046] = 8008, + [8047] = 8047, + [8048] = 8048, + [8049] = 3112, + [8050] = 8050, + [8051] = 8051, + [8052] = 8009, + [8053] = 8053, + [8054] = 877, + [8055] = 7941, + [8056] = 7948, + [8057] = 7968, + [8058] = 7986, [8059] = 8059, - [8060] = 1212, - [8061] = 1781, - [8062] = 1782, - [8063] = 1176, - [8064] = 1146, + [8060] = 7830, + [8061] = 293, + [8062] = 7957, + [8063] = 8021, + [8064] = 7960, [8065] = 8065, - [8066] = 1146, - [8067] = 406, - [8068] = 1582, - [8069] = 1138, - [8070] = 1666, - [8071] = 1398, - [8072] = 1138, - [8073] = 341, - [8074] = 1767, - [8075] = 271, - [8076] = 1676, - [8077] = 1582, - [8078] = 8078, - [8079] = 1204, - [8080] = 364, - [8081] = 1247, - [8082] = 335, - [8083] = 8083, - [8084] = 1441, - [8085] = 1445, - [8086] = 1199, - [8087] = 431, - [8088] = 1212, - [8089] = 1138, - [8090] = 1365, - [8091] = 8091, - [8092] = 1139, - [8093] = 412, - [8094] = 8094, - [8095] = 1382, - [8096] = 1130, - [8097] = 425, - [8098] = 1212, - [8099] = 364, - [8100] = 8100, - [8101] = 8094, - [8102] = 8102, - [8103] = 1248, - [8104] = 1476, - [8105] = 1770, - [8106] = 1438, - [8107] = 1427, - [8108] = 8012, - [8109] = 8014, - [8110] = 8015, - [8111] = 266, - [8112] = 346, - [8113] = 8113, - [8114] = 1365, - [8115] = 1414, - [8116] = 8059, - [8117] = 8083, - [8118] = 8118, - [8119] = 8119, - [8120] = 8120, - [8121] = 8121, - [8122] = 8091, - [8123] = 435, - [8124] = 1146, - [8125] = 1422, - [8126] = 8126, - [8127] = 271, - [8128] = 1416, - [8129] = 8120, - [8130] = 8130, - [8131] = 1138, - [8132] = 270, - [8133] = 1199, - [8134] = 8118, - [8135] = 1139, - [8136] = 269, - [8137] = 1592, - [8138] = 1438, - [8139] = 1427, - [8140] = 364, - [8141] = 1139, - [8142] = 1204, - [8143] = 8143, - [8144] = 1199, - [8145] = 1445, - [8146] = 1130, - [8147] = 1463, - [8148] = 1212, - [8149] = 8149, - [8150] = 339, - [8151] = 8151, - [8152] = 8011, - [8153] = 1438, - [8154] = 1412, - [8155] = 1139, - [8156] = 1443, - [8157] = 1443, - [8158] = 1625, - [8159] = 1466, - [8160] = 1422, - [8161] = 8130, - [8162] = 1463, - [8163] = 1216, - [8164] = 1212, - [8165] = 8119, - [8166] = 1146, - [8167] = 1139, - [8168] = 405, - [8169] = 1364, - [8170] = 435, - [8171] = 1460, - [8172] = 1204, - [8173] = 1216, - [8174] = 8151, + [8066] = 1136, + [8067] = 8042, + [8068] = 8047, + [8069] = 8048, + [8070] = 8050, + [8071] = 8071, + [8072] = 323, + [8073] = 324, + [8074] = 1371, + [8075] = 1569, + [8076] = 8076, + [8077] = 1480, + [8078] = 1539, + [8079] = 1568, + [8080] = 8080, + [8081] = 1569, + [8082] = 1597, + [8083] = 8076, + [8084] = 1151, + [8085] = 8080, + [8086] = 1570, + [8087] = 277, + [8088] = 330, + [8089] = 1597, + [8090] = 8080, + [8091] = 8076, + [8092] = 1598, + [8093] = 1524, + [8094] = 1527, + [8095] = 1053, + [8096] = 1266, + [8097] = 8080, + [8098] = 1079, + [8099] = 8076, + [8100] = 1714, + [8101] = 8080, + [8102] = 8076, + [8103] = 8076, + [8104] = 1598, + [8105] = 1599, + [8106] = 1536, + [8107] = 8107, + [8108] = 8108, + [8109] = 3477, + [8110] = 1241, + [8111] = 3093, + [8112] = 1600, + [8113] = 8080, + [8114] = 8076, + [8115] = 1715, + [8116] = 873, + [8117] = 312, + [8118] = 1649, + [8119] = 1730, + [8120] = 1731, + [8121] = 1371, + [8122] = 8080, + [8123] = 2972, + [8124] = 8076, + [8125] = 8125, + [8126] = 330, + [8127] = 334, + [8128] = 1650, + [8129] = 1665, + [8130] = 872, + [8131] = 8080, + [8132] = 8076, + [8133] = 1053, + [8134] = 8134, + [8135] = 1667, + [8136] = 1632, + [8137] = 8059, + [8138] = 1524, + [8139] = 1684, + [8140] = 877, + [8141] = 8080, + [8142] = 8076, + [8143] = 1310, + [8144] = 874, + [8145] = 1527, + [8146] = 8080, + [8147] = 8147, + [8148] = 1536, + [8149] = 8076, + [8150] = 1053, + [8151] = 3112, + [8152] = 8080, + [8153] = 1632, + [8154] = 1310, + [8155] = 8076, + [8156] = 1371, + [8157] = 1104, + [8158] = 1649, + [8159] = 1078, + [8160] = 1650, + [8161] = 1665, + [8162] = 8162, + [8163] = 1667, + [8164] = 1599, + [8165] = 271, + [8166] = 8080, + [8167] = 8167, + [8168] = 8076, + [8169] = 7841, + [8170] = 8170, + [8171] = 1600, + [8172] = 1276, + [8173] = 1053, + [8174] = 8003, [8175] = 8175, - [8176] = 1146, - [8177] = 1466, - [8178] = 1176, - [8179] = 8179, - [8180] = 431, - [8181] = 1474, - [8182] = 8182, - [8183] = 1476, - [8184] = 8032, - [8185] = 1288, - [8186] = 1146, - [8187] = 1783, - [8188] = 1130, - [8189] = 1784, - [8190] = 1216, - [8191] = 1113, - [8192] = 1288, - [8193] = 1443, - [8194] = 1199, - [8195] = 1771, - [8196] = 1146, - [8197] = 1398, - [8198] = 403, - [8199] = 1398, - [8200] = 1772, - [8201] = 1212, - [8202] = 1247, - [8203] = 1364, - [8204] = 1248, - [8205] = 1412, - [8206] = 1427, - [8207] = 8102, - [8208] = 1199, - [8209] = 1414, - [8210] = 1204, - [8211] = 1378, - [8212] = 1386, - [8213] = 1146, - [8214] = 412, - [8215] = 8215, - [8216] = 343, - [8217] = 359, - [8218] = 1176, - [8219] = 1414, - [8220] = 1364, - [8221] = 8151, - [8222] = 355, - [8223] = 1139, - [8224] = 431, - [8225] = 1474, - [8226] = 1146, - [8227] = 1460, - [8228] = 8121, - [8229] = 1378, - [8230] = 8100, - [8231] = 8175, - [8232] = 1582, - [8233] = 8078, - [8234] = 1386, - [8235] = 403, - [8236] = 1416, - [8237] = 1378, - [8238] = 311, - [8239] = 1474, - [8240] = 1476, - [8241] = 1130, - [8242] = 1592, - [8243] = 8243, - [8244] = 353, - [8245] = 435, - [8246] = 1691, - [8247] = 1212, - [8248] = 8248, - [8249] = 1365, - [8250] = 8250, - [8251] = 1445, - [8252] = 364, - [8253] = 1460, - [8254] = 1204, + [8176] = 8176, + [8177] = 8080, + [8178] = 8076, + [8179] = 8080, + [8180] = 1249, + [8181] = 1538, + [8182] = 1539, + [8183] = 8183, + [8184] = 272, + [8185] = 8076, + [8186] = 1540, + [8187] = 8080, + [8188] = 1078, + [8189] = 8076, + [8190] = 340, + [8191] = 8080, + [8192] = 8076, + [8193] = 339, + [8194] = 8194, + [8195] = 8080, + [8196] = 8196, + [8197] = 8076, + [8198] = 330, + [8199] = 1250, + [8200] = 8080, + [8201] = 8076, + [8202] = 8202, + [8203] = 872, + [8204] = 8080, + [8205] = 335, + [8206] = 8206, + [8207] = 8076, + [8208] = 8208, + [8209] = 877, + [8210] = 8080, + [8211] = 7985, + [8212] = 8076, + [8213] = 8080, + [8214] = 8076, + [8215] = 1323, + [8216] = 8080, + [8217] = 8076, + [8218] = 8080, + [8219] = 8076, + [8220] = 8175, + [8221] = 846, + [8222] = 1504, + [8223] = 1730, + [8224] = 874, + [8225] = 8080, + [8226] = 8076, + [8227] = 872, + [8228] = 3558, + [8229] = 8076, + [8230] = 1093, + [8231] = 1094, + [8232] = 1731, + [8233] = 877, + [8234] = 1097, + [8235] = 1138, + [8236] = 8080, + [8237] = 8076, + [8238] = 8080, + [8239] = 1632, + [8240] = 1568, + [8241] = 1266, + [8242] = 8080, + [8243] = 312, + [8244] = 8244, + [8245] = 8245, + [8246] = 8041, + [8247] = 1570, + [8248] = 1597, + [8249] = 1598, + [8250] = 1599, + [8251] = 1093, + [8252] = 1600, + [8253] = 270, + [8254] = 330, [8255] = 8255, - [8256] = 1247, - [8257] = 8257, - [8258] = 1786, - [8259] = 1364, - [8260] = 431, - [8261] = 1787, - [8262] = 1788, - [8263] = 1789, - [8264] = 1700, - [8265] = 431, - [8266] = 1378, - [8267] = 1790, - [8268] = 1386, - [8269] = 8269, - [8270] = 1666, - [8271] = 412, - [8272] = 8272, - [8273] = 425, - [8274] = 1445, - [8275] = 8275, - [8276] = 1113, - [8277] = 8277, - [8278] = 1765, - [8279] = 1216, - [8280] = 1176, - [8281] = 403, - [8282] = 1767, - [8283] = 333, - [8284] = 1445, - [8285] = 1378, - [8286] = 1386, - [8287] = 8287, - [8288] = 1791, + [8256] = 8256, + [8257] = 266, + [8258] = 255, + [8259] = 1310, + [8260] = 1714, + [8261] = 257, + [8262] = 256, + [8263] = 1715, + [8264] = 251, + [8265] = 1094, + [8266] = 1536, + [8267] = 8267, + [8268] = 1730, + [8269] = 873, + [8270] = 1648, + [8271] = 1731, + [8272] = 333, + [8273] = 8080, + [8274] = 1150, + [8275] = 992, + [8276] = 877, + [8277] = 8076, + [8278] = 8278, + [8279] = 1115, + [8280] = 1115, + [8281] = 877, + [8282] = 8282, + [8283] = 877, + [8284] = 8284, + [8285] = 1151, + [8286] = 872, + [8287] = 1323, + [8288] = 333, [8289] = 8289, - [8290] = 1691, - [8291] = 355, - [8292] = 1441, - [8293] = 431, - [8294] = 1204, - [8295] = 1691, - [8296] = 1199, - [8297] = 1212, - [8298] = 1248, - [8299] = 1248, - [8300] = 364, - [8301] = 2572, - [8302] = 1441, + [8290] = 8080, + [8291] = 8076, + [8292] = 335, + [8293] = 877, + [8294] = 873, + [8295] = 1480, + [8296] = 8080, + [8297] = 3478, + [8298] = 3481, + [8299] = 874, + [8300] = 8076, + [8301] = 873, + [8302] = 877, [8303] = 8303, - [8304] = 1113, - [8305] = 8305, + [8304] = 991, + [8305] = 1568, [8306] = 8306, - [8307] = 405, - [8308] = 8308, - [8309] = 293, - [8310] = 343, - [8311] = 1676, - [8312] = 1443, - [8313] = 294, - [8314] = 1700, - [8315] = 406, - [8316] = 8316, - [8317] = 8317, - [8318] = 341, - [8319] = 339, - [8320] = 1247, - [8321] = 271, - [8322] = 1364, - [8323] = 8323, - [8324] = 8324, - [8325] = 8325, - [8326] = 8326, - [8327] = 8327, - [8328] = 1204, - [8329] = 1768, - [8330] = 266, - [8331] = 1364, - [8332] = 8272, - [8333] = 1625, - [8334] = 8334, - [8335] = 1398, - [8336] = 8336, - [8337] = 1625, - [8338] = 8338, - [8339] = 8316, - [8340] = 8336, - [8341] = 270, - [8342] = 8342, - [8343] = 8305, - [8344] = 8308, - [8345] = 1248, - [8346] = 1204, - [8347] = 1199, - [8348] = 269, - [8349] = 1438, - [8350] = 8350, - [8351] = 8351, - [8352] = 435, - [8353] = 1212, - [8354] = 2743, - [8355] = 1212, - [8356] = 1146, - [8357] = 1443, - [8358] = 8358, - [8359] = 1416, - [8360] = 1775, - [8361] = 435, - [8362] = 1582, - [8363] = 8358, - [8364] = 1204, - [8365] = 8365, - [8366] = 1776, - [8367] = 403, - [8368] = 1438, + [8307] = 872, + [8308] = 874, + [8309] = 874, + [8310] = 873, + [8311] = 340, + [8312] = 873, + [8313] = 874, + [8314] = 8244, + [8315] = 1648, + [8316] = 323, + [8317] = 324, + [8318] = 933, + [8319] = 1569, + [8320] = 1323, + [8321] = 877, + [8322] = 312, + [8323] = 992, + [8324] = 1127, + [8325] = 8076, + [8326] = 1684, + [8327] = 2955, + [8328] = 8080, + [8329] = 1540, + [8330] = 333, + [8331] = 8331, + [8332] = 1648, + [8333] = 8076, + [8334] = 269, + [8335] = 1276, + [8336] = 1480, + [8337] = 872, + [8338] = 1524, + [8339] = 936, + [8340] = 1527, + [8341] = 2319, + [8342] = 1684, + [8343] = 1538, + [8344] = 888, + [8345] = 1649, + [8346] = 1538, + [8347] = 8347, + [8348] = 1650, + [8349] = 1665, + [8350] = 1142, + [8351] = 1667, + [8352] = 264, + [8353] = 1539, + [8354] = 1540, + [8355] = 3098, + [8356] = 8080, + [8357] = 1504, + [8358] = 3099, + [8359] = 8080, + [8360] = 991, + [8361] = 8076, + [8362] = 8076, + [8363] = 1714, + [8364] = 8080, + [8365] = 1150, + [8366] = 1715, + [8367] = 1504, + [8368] = 1245, [8369] = 8369, - [8370] = 8370, - [8371] = 1216, - [8372] = 1288, - [8373] = 1414, - [8374] = 8369, - [8375] = 8277, - [8376] = 1204, - [8377] = 1199, - [8378] = 8378, - [8379] = 1199, + [8370] = 846, + [8371] = 1097, + [8372] = 323, + [8373] = 324, + [8374] = 846, + [8375] = 8375, + [8376] = 1570, + [8377] = 1247, + [8378] = 339, + [8379] = 330, [8380] = 8380, - [8381] = 8323, - [8382] = 1199, - [8383] = 8287, - [8384] = 2749, - [8385] = 412, - [8386] = 1212, - [8387] = 425, - [8388] = 364, - [8389] = 403, - [8390] = 8370, - [8391] = 335, - [8392] = 346, - [8393] = 8324, - [8394] = 1247, - [8395] = 359, - [8396] = 1592, - [8397] = 1398, + [8381] = 8381, + [8382] = 8382, + [8383] = 8383, + [8384] = 8384, + [8385] = 8385, + [8386] = 8386, + [8387] = 8387, + [8388] = 8388, + [8389] = 8389, + [8390] = 8390, + [8391] = 8391, + [8392] = 8392, + [8393] = 8393, + [8394] = 1266, + [8395] = 1536, + [8396] = 8396, + [8397] = 8397, [8398] = 8398, - [8399] = 1212, - [8400] = 406, - [8401] = 8325, - [8402] = 1474, - [8403] = 1778, - [8404] = 1365, - [8405] = 1779, - [8406] = 1476, - [8407] = 403, - [8408] = 1416, - [8409] = 364, - [8410] = 335, - [8411] = 1146, - [8412] = 1422, - [8413] = 1378, - [8414] = 1386, - [8415] = 1441, - [8416] = 1438, - [8417] = 1781, - [8418] = 1782, - [8419] = 1783, - [8420] = 1784, - [8421] = 1625, + [8399] = 8399, + [8400] = 8400, + [8401] = 8401, + [8402] = 8402, + [8403] = 8403, + [8404] = 8404, + [8405] = 8405, + [8406] = 8406, + [8407] = 8407, + [8408] = 8408, + [8409] = 8409, + [8410] = 8410, + [8411] = 8411, + [8412] = 8412, + [8413] = 8413, + [8414] = 8414, + [8415] = 8415, + [8416] = 8416, + [8417] = 8417, + [8418] = 8418, + [8419] = 8419, + [8420] = 8420, + [8421] = 8421, [8422] = 8422, [8423] = 8423, [8424] = 8424, - [8425] = 8306, - [8426] = 8334, + [8425] = 8425, + [8426] = 8426, [8427] = 8427, - [8428] = 8255, - [8429] = 8398, - [8430] = 405, + [8428] = 8428, + [8429] = 279, + [8430] = 8430, [8431] = 8431, - [8432] = 406, - [8433] = 1146, - [8434] = 271, - [8435] = 1443, + [8432] = 8432, + [8433] = 8433, + [8434] = 278, + [8435] = 8435, [8436] = 8436, - [8437] = 335, - [8438] = 355, - [8439] = 333, - [8440] = 346, - [8441] = 1422, - [8442] = 1113, - [8443] = 364, - [8444] = 359, - [8445] = 353, - [8446] = 1700, - [8447] = 2748, - [8448] = 8326, - [8449] = 8424, + [8437] = 8437, + [8438] = 293, + [8439] = 8439, + [8440] = 294, + [8441] = 8441, + [8442] = 8442, + [8443] = 8443, + [8444] = 8444, + [8445] = 1310, + [8446] = 8446, + [8447] = 8447, + [8448] = 1150, + [8449] = 1142, [8450] = 8450, - [8451] = 2744, - [8452] = 1412, - [8453] = 353, - [8454] = 8431, - [8455] = 1422, - [8456] = 1204, + [8451] = 8451, + [8452] = 8452, + [8453] = 1504, + [8454] = 8454, + [8455] = 3434, + [8456] = 8456, [8457] = 8457, - [8458] = 1176, - [8459] = 1780, - [8460] = 1113, - [8461] = 1460, - [8462] = 8450, - [8463] = 1146, - [8464] = 1770, - [8465] = 1463, - [8466] = 1466, - [8467] = 1199, - [8468] = 1771, - [8469] = 1212, - [8470] = 8423, - [8471] = 1445, - [8472] = 1772, - [8473] = 1138, - [8474] = 405, - [8475] = 1427, - [8476] = 435, + [8458] = 312, + [8459] = 1151, + [8460] = 877, + [8461] = 8461, + [8462] = 8380, + [8463] = 8463, + [8464] = 1079, + [8465] = 8465, + [8466] = 8466, + [8467] = 8467, + [8468] = 8468, + [8469] = 8469, + [8470] = 8470, + [8471] = 8471, + [8472] = 8472, + [8473] = 8473, + [8474] = 8474, + [8475] = 8475, + [8476] = 8476, [8477] = 8477, - [8478] = 1139, - [8479] = 1248, - [8480] = 1773, - [8481] = 1427, - [8482] = 1382, - [8483] = 1247, - [8484] = 1130, - [8485] = 1365, - [8486] = 403, - [8487] = 1592, - [8488] = 1691, - [8489] = 1113, - [8490] = 1414, - [8491] = 1785, - [8492] = 1769, - [8493] = 1113, - [8494] = 1592, - [8495] = 364, - [8496] = 8496, - [8497] = 1777, - [8498] = 412, - [8499] = 425, - [8500] = 8500, - [8501] = 1582, - [8502] = 8502, - [8503] = 1774, + [8478] = 8478, + [8479] = 8479, + [8480] = 8480, + [8481] = 8481, + [8482] = 8467, + [8483] = 312, + [8484] = 8484, + [8485] = 8485, + [8486] = 8486, + [8487] = 8487, + [8488] = 1122, + [8489] = 8489, + [8490] = 8490, + [8491] = 8491, + [8492] = 8492, + [8493] = 8170, + [8494] = 8494, + [8495] = 8306, + [8496] = 877, + [8497] = 1714, + [8498] = 1079, + [8499] = 1524, + [8500] = 1527, + [8501] = 1536, + [8502] = 8380, + [8503] = 8467, [8504] = 8504, - [8505] = 2750, - [8506] = 403, - [8507] = 8436, - [8508] = 8338, - [8509] = 1582, - [8510] = 8510, - [8511] = 8511, - [8512] = 2748, - [8513] = 8513, - [8514] = 1466, - [8515] = 1146, - [8516] = 415, - [8517] = 312, - [8518] = 1775, - [8519] = 431, - [8520] = 1476, - [8521] = 8521, - [8522] = 1443, - [8523] = 8513, - [8524] = 1288, - [8525] = 8525, - [8526] = 1776, - [8527] = 3973, - [8528] = 1438, - [8529] = 8521, - [8530] = 1770, - [8531] = 1700, - [8532] = 3974, - [8533] = 8521, - [8534] = 8513, - [8535] = 8513, - [8536] = 288, - [8537] = 1771, - [8538] = 1248, - [8539] = 1772, - [8540] = 8513, - [8541] = 403, - [8542] = 1398, - [8543] = 1773, - [8544] = 1774, - [8545] = 8521, - [8546] = 8513, - [8547] = 8521, - [8548] = 1139, - [8549] = 412, - [8550] = 289, - [8551] = 293, - [8552] = 294, - [8553] = 1582, - [8554] = 8521, - [8555] = 1785, - [8556] = 8513, - [8557] = 1777, - [8558] = 8558, - [8559] = 8559, - [8560] = 8513, - [8561] = 8521, - [8562] = 1786, - [8563] = 8563, - [8564] = 8521, - [8565] = 1787, - [8566] = 8513, - [8567] = 1378, - [8568] = 1773, - [8569] = 8569, - [8570] = 1788, - [8571] = 1789, - [8572] = 8521, - [8573] = 8513, - [8574] = 403, - [8575] = 8575, - [8576] = 1765, - [8577] = 405, - [8578] = 4009, - [8579] = 1386, - [8580] = 1778, - [8581] = 1779, - [8582] = 1780, - [8583] = 2749, - [8584] = 1769, - [8585] = 8521, - [8586] = 8513, - [8587] = 8521, - [8588] = 8588, - [8589] = 1130, - [8590] = 1288, - [8591] = 1625, - [8592] = 1790, - [8593] = 1765, - [8594] = 1791, - [8595] = 8521, - [8596] = 2750, - [8597] = 8513, - [8598] = 1139, - [8599] = 8513, - [8600] = 364, - [8601] = 2743, - [8602] = 1784, - [8603] = 1138, - [8604] = 8521, - [8605] = 8513, + [8505] = 8468, + [8506] = 1715, + [8507] = 1538, + [8508] = 1539, + [8509] = 1540, + [8510] = 2955, + [8511] = 399, + [8512] = 400, + [8513] = 1568, + [8514] = 1569, + [8515] = 8380, + [8516] = 1570, + [8517] = 1597, + [8518] = 8467, + [8519] = 8468, + [8520] = 1598, + [8521] = 1599, + [8522] = 1600, + [8523] = 330, + [8524] = 8183, + [8525] = 872, + [8526] = 1093, + [8527] = 1094, + [8528] = 1097, + [8529] = 1323, + [8530] = 8380, + [8531] = 373, + [8532] = 8467, + [8533] = 1977, + [8534] = 8468, + [8535] = 406, + [8536] = 339, + [8537] = 8468, + [8538] = 8380, + [8539] = 8467, + [8540] = 8468, + [8541] = 933, + [8542] = 936, + [8543] = 1538, + [8544] = 1104, + [8545] = 407, + [8546] = 277, + [8547] = 936, + [8548] = 8380, + [8549] = 8467, + [8550] = 8468, + [8551] = 1684, + [8552] = 374, + [8553] = 1053, + [8554] = 330, + [8555] = 271, + [8556] = 1078, + [8557] = 8267, + [8558] = 272, + [8559] = 341, + [8560] = 8380, + [8561] = 8467, + [8562] = 1539, + [8563] = 8468, + [8564] = 312, + [8565] = 933, + [8566] = 873, + [8567] = 1540, + [8568] = 312, + [8569] = 330, + [8570] = 8380, + [8571] = 8467, + [8572] = 8468, + [8573] = 1127, + [8574] = 8282, + [8575] = 8380, + [8576] = 8467, + [8577] = 8468, + [8578] = 1104, + [8579] = 375, + [8580] = 8580, + [8581] = 8380, + [8582] = 8467, + [8583] = 8468, + [8584] = 376, + [8585] = 8380, + [8586] = 877, + [8587] = 8467, + [8588] = 8468, + [8589] = 8589, + [8590] = 8590, + [8591] = 933, + [8592] = 8331, + [8593] = 8593, + [8594] = 8594, + [8595] = 1150, + [8596] = 8596, + [8597] = 874, + [8598] = 8598, + [8599] = 8599, + [8600] = 8380, + [8601] = 8467, + [8602] = 8468, + [8603] = 8603, + [8604] = 8604, + [8605] = 8605, [8606] = 8606, [8607] = 8607, - [8608] = 3991, - [8609] = 1774, - [8610] = 1427, - [8611] = 8521, - [8612] = 8513, - [8613] = 1700, - [8614] = 1247, - [8615] = 1776, - [8616] = 1786, - [8617] = 1130, - [8618] = 431, + [8608] = 8608, + [8609] = 888, + [8610] = 8610, + [8611] = 936, + [8612] = 872, + [8613] = 8380, + [8614] = 8467, + [8615] = 8615, + [8616] = 8468, + [8617] = 8617, + [8618] = 8618, [8619] = 8619, - [8620] = 1398, - [8621] = 1463, - [8622] = 1691, - [8623] = 406, - [8624] = 8521, - [8625] = 1787, - [8626] = 406, - [8627] = 8513, - [8628] = 1146, - [8629] = 1691, - [8630] = 8521, - [8631] = 1666, - [8632] = 8521, - [8633] = 1247, - [8634] = 8634, - [8635] = 8635, - [8636] = 8521, - [8637] = 8513, - [8638] = 8638, - [8639] = 8513, - [8640] = 1783, - [8641] = 1769, - [8642] = 1364, - [8643] = 1784, - [8644] = 1769, - [8645] = 1146, + [8620] = 8620, + [8621] = 8621, + [8622] = 873, + [8623] = 8623, + [8624] = 8624, + [8625] = 8625, + [8626] = 8626, + [8627] = 8627, + [8628] = 8380, + [8629] = 8629, + [8630] = 874, + [8631] = 8631, + [8632] = 8467, + [8633] = 8633, + [8634] = 8468, + [8635] = 1371, + [8636] = 1127, + [8637] = 888, + [8638] = 936, + [8639] = 8639, + [8640] = 8640, + [8641] = 8641, + [8642] = 8642, + [8643] = 8643, + [8644] = 1371, + [8645] = 2299, [8646] = 8646, - [8647] = 8647, - [8648] = 1777, - [8649] = 8351, - [8650] = 8521, - [8651] = 8651, + [8647] = 8467, + [8648] = 8648, + [8649] = 8468, + [8650] = 1142, + [8651] = 1053, [8652] = 8652, - [8653] = 8513, - [8654] = 1768, - [8655] = 8655, - [8656] = 435, - [8657] = 1592, - [8658] = 1691, - [8659] = 1288, - [8660] = 8513, - [8661] = 2744, - [8662] = 8521, - [8663] = 1767, - [8664] = 8513, - [8665] = 1676, - [8666] = 1130, - [8667] = 1146, - [8668] = 1441, - [8669] = 8521, - [8670] = 1138, - [8671] = 8513, - [8672] = 1785, - [8673] = 1204, - [8674] = 1592, - [8675] = 8675, - [8676] = 1199, - [8677] = 403, - [8678] = 1212, - [8679] = 8521, - [8680] = 1778, - [8681] = 8513, - [8682] = 8521, - [8683] = 405, - [8684] = 8513, - [8685] = 1779, - [8686] = 1248, - [8687] = 8521, - [8688] = 8513, - [8689] = 1765, - [8690] = 8521, - [8691] = 8521, - [8692] = 8513, - [8693] = 425, - [8694] = 8521, - [8695] = 1138, - [8696] = 8513, - [8697] = 364, - [8698] = 8521, - [8699] = 1365, - [8700] = 8513, - [8701] = 1780, - [8702] = 8521, - [8703] = 8513, - [8704] = 8521, - [8705] = 8513, - [8706] = 8521, - [8707] = 8513, - [8708] = 1146, - [8709] = 8513, - [8710] = 1783, - [8711] = 8607, - [8712] = 1782, - [8713] = 1445, - [8714] = 1625, - [8715] = 1138, - [8716] = 1788, - [8717] = 1789, - [8718] = 8718, - [8719] = 1781, - [8720] = 310, - [8721] = 8327, - [8722] = 1139, - [8723] = 1778, - [8724] = 1130, - [8725] = 1146, - [8726] = 1113, - [8727] = 1782, - [8728] = 8728, - [8729] = 271, - [8730] = 266, - [8731] = 270, - [8732] = 269, - [8733] = 1790, - [8734] = 8521, - [8735] = 364, - [8736] = 1779, - [8737] = 1775, - [8738] = 8513, - [8739] = 1783, - [8740] = 1784, - [8741] = 1781, - [8742] = 1364, - [8743] = 1460, - [8744] = 8521, - [8745] = 1782, - [8746] = 1443, - [8747] = 1113, + [8653] = 1078, + [8654] = 8380, + [8655] = 8467, + [8656] = 1138, + [8657] = 8468, + [8658] = 8176, + [8659] = 1323, + [8660] = 1632, + [8661] = 1649, + [8662] = 8380, + [8663] = 8467, + [8664] = 888, + [8665] = 8468, + [8666] = 339, + [8667] = 8667, + [8668] = 8347, + [8669] = 1650, + [8670] = 8670, + [8671] = 877, + [8672] = 1665, + [8673] = 8380, + [8674] = 8674, + [8675] = 8467, + [8676] = 8676, + [8677] = 8468, + [8678] = 8678, + [8679] = 8679, + [8680] = 8680, + [8681] = 8681, + [8682] = 8682, + [8683] = 380, + [8684] = 8684, + [8685] = 8685, + [8686] = 382, + [8687] = 8687, + [8688] = 8380, + [8689] = 1667, + [8690] = 8467, + [8691] = 8468, + [8692] = 384, + [8693] = 1266, + [8694] = 1138, + [8695] = 312, + [8696] = 8696, + [8697] = 1127, + [8698] = 335, + [8699] = 385, + [8700] = 8380, + [8701] = 1648, + [8702] = 8467, + [8703] = 8468, + [8704] = 8704, + [8705] = 1480, + [8706] = 1142, + [8707] = 8707, + [8708] = 8708, + [8709] = 8709, + [8710] = 8710, + [8711] = 8711, + [8712] = 8380, + [8713] = 1276, + [8714] = 8714, + [8715] = 8715, + [8716] = 8467, + [8717] = 8468, + [8718] = 2300, + [8719] = 888, + [8720] = 8720, + [8721] = 1568, + [8722] = 386, + [8723] = 8380, + [8724] = 8724, + [8725] = 8467, + [8726] = 8468, + [8727] = 1570, + [8728] = 1597, + [8729] = 1598, + [8730] = 1079, + [8731] = 1138, + [8732] = 387, + [8733] = 8733, + [8734] = 8734, + [8735] = 8380, + [8736] = 8736, + [8737] = 8737, + [8738] = 8738, + [8739] = 8467, + [8740] = 8740, + [8741] = 8468, + [8742] = 388, + [8743] = 8743, + [8744] = 8744, + [8745] = 8745, + [8746] = 8746, + [8747] = 8747, [8748] = 8748, - [8749] = 1139, - [8750] = 1774, - [8751] = 8513, - [8752] = 1770, - [8753] = 1767, + [8749] = 8749, + [8750] = 1142, + [8751] = 8380, + [8752] = 8752, + [8753] = 1599, [8754] = 8754, - [8755] = 1791, - [8756] = 1780, - [8757] = 403, - [8758] = 1445, - [8759] = 1768, - [8760] = 1625, - [8761] = 8521, - [8762] = 8762, - [8763] = 412, - [8764] = 1146, - [8765] = 1138, - [8766] = 8513, - [8767] = 1474, - [8768] = 1139, - [8769] = 8513, - [8770] = 1785, - [8771] = 1776, - [8772] = 1768, - [8773] = 1378, - [8774] = 1386, - [8775] = 1441, - [8776] = 435, - [8777] = 1139, - [8778] = 425, - [8779] = 1775, - [8780] = 1414, + [8755] = 8467, + [8756] = 8756, + [8757] = 8468, + [8758] = 1079, + [8759] = 8380, + [8760] = 8760, + [8761] = 8467, + [8762] = 1600, + [8763] = 8468, + [8764] = 8764, + [8765] = 8380, + [8766] = 8766, + [8767] = 8467, + [8768] = 8468, + [8769] = 8380, + [8770] = 8770, + [8771] = 8771, + [8772] = 8467, + [8773] = 8468, + [8774] = 8774, + [8775] = 8380, + [8776] = 8776, + [8777] = 8467, + [8778] = 8468, + [8779] = 8779, + [8780] = 8380, [8781] = 8781, - [8782] = 1130, - [8783] = 8783, - [8784] = 406, - [8785] = 1288, + [8782] = 8467, + [8783] = 8468, + [8784] = 8380, + [8785] = 8467, [8786] = 8786, - [8787] = 1138, - [8788] = 1786, + [8787] = 8468, + [8788] = 8788, [8789] = 8789, - [8790] = 1771, - [8791] = 1770, - [8792] = 8718, - [8793] = 1771, - [8794] = 1772, - [8795] = 1773, - [8796] = 1146, - [8797] = 403, - [8798] = 1787, - [8799] = 8799, - [8800] = 8477, - [8801] = 1781, - [8802] = 8802, - [8803] = 1113, - [8804] = 1130, - [8805] = 1416, - [8806] = 1788, - [8807] = 1582, - [8808] = 1767, - [8809] = 1789, - [8810] = 1777, - [8811] = 8427, - [8812] = 8317, - [8813] = 8521, - [8814] = 1772, - [8815] = 311, - [8816] = 1790, - [8817] = 1791, - [8818] = 1146, - [8819] = 8521, - [8820] = 8820, - [8821] = 425, - [8822] = 8822, - [8823] = 311, - [8824] = 8824, - [8825] = 1146, - [8826] = 8826, - [8827] = 8827, - [8828] = 8828, - [8829] = 8820, - [8830] = 8830, - [8831] = 8831, - [8832] = 1427, - [8833] = 8822, - [8834] = 1775, - [8835] = 8835, - [8836] = 1778, - [8837] = 8822, - [8838] = 8838, - [8839] = 412, - [8840] = 8822, - [8841] = 8841, - [8842] = 8842, - [8843] = 8843, - [8844] = 8827, - [8845] = 1365, - [8846] = 8846, - [8847] = 8827, - [8848] = 8848, - [8849] = 8820, - [8850] = 8822, - [8851] = 8851, - [8852] = 8822, - [8853] = 425, - [8854] = 8827, - [8855] = 1776, - [8856] = 8820, - [8857] = 403, - [8858] = 462, - [8859] = 8859, - [8860] = 8860, - [8861] = 1592, - [8862] = 8820, - [8863] = 8863, - [8864] = 8864, - [8865] = 8588, - [8866] = 480, - [8867] = 8827, - [8868] = 8827, - [8869] = 1700, - [8870] = 1365, + [8790] = 8380, + [8791] = 8467, + [8792] = 8468, + [8793] = 8380, + [8794] = 8467, + [8795] = 8468, + [8796] = 8796, + [8797] = 8468, + [8798] = 8380, + [8799] = 8468, + [8800] = 8468, + [8801] = 8468, + [8802] = 8468, + [8803] = 8468, + [8804] = 8468, + [8805] = 8468, + [8806] = 8468, + [8807] = 8468, + [8808] = 8468, + [8809] = 8468, + [8810] = 8468, + [8811] = 8468, + [8812] = 8468, + [8813] = 8468, + [8814] = 8468, + [8815] = 8468, + [8816] = 8468, + [8817] = 8468, + [8818] = 8468, + [8819] = 8468, + [8820] = 8468, + [8821] = 8468, + [8822] = 8468, + [8823] = 8468, + [8824] = 8468, + [8825] = 8468, + [8826] = 8468, + [8827] = 8468, + [8828] = 8468, + [8829] = 8468, + [8830] = 8468, + [8831] = 8468, + [8832] = 8468, + [8833] = 8468, + [8834] = 8468, + [8835] = 8468, + [8836] = 8468, + [8837] = 8468, + [8838] = 8468, + [8839] = 8468, + [8840] = 8468, + [8841] = 8468, + [8842] = 8468, + [8843] = 8468, + [8844] = 8468, + [8845] = 8845, + [8846] = 933, + [8847] = 8463, + [8848] = 8466, + [8849] = 389, + [8850] = 2955, + [8851] = 872, + [8852] = 8852, + [8853] = 8369, + [8854] = 340, + [8855] = 8852, + [8856] = 8468, + [8857] = 8857, + [8858] = 8858, + [8859] = 1648, + [8860] = 391, + [8861] = 8857, + [8862] = 1524, + [8863] = 1527, + [8864] = 403, + [8865] = 8652, + [8866] = 933, + [8867] = 392, + [8868] = 8380, + [8869] = 404, + [8870] = 873, [8871] = 8871, [8872] = 8872, - [8873] = 8873, - [8874] = 1767, - [8875] = 1443, + [8873] = 333, + [8874] = 877, + [8875] = 393, [8876] = 8876, - [8877] = 8822, - [8878] = 8754, - [8879] = 431, - [8880] = 1146, - [8881] = 8827, + [8877] = 334, + [8878] = 8878, + [8879] = 8879, + [8880] = 1730, + [8881] = 1731, [8882] = 8882, - [8883] = 8820, - [8884] = 8884, - [8885] = 1199, - [8886] = 1765, - [8887] = 8887, - [8888] = 8820, - [8889] = 8889, - [8890] = 8890, - [8891] = 8822, - [8892] = 8892, - [8893] = 8893, - [8894] = 8827, + [8883] = 8468, + [8884] = 8468, + [8885] = 340, + [8886] = 1078, + [8887] = 8468, + [8888] = 936, + [8889] = 333, + [8890] = 8857, + [8891] = 2972, + [8892] = 1648, + [8893] = 888, + [8894] = 8894, [8895] = 8895, - [8896] = 8896, - [8897] = 8897, - [8898] = 8898, - [8899] = 1130, - [8900] = 8900, - [8901] = 8827, - [8902] = 8820, - [8903] = 8822, - [8904] = 8904, - [8905] = 8820, - [8906] = 8906, - [8907] = 8827, - [8908] = 8908, - [8909] = 8820, - [8910] = 8910, + [8896] = 1127, + [8897] = 8857, + [8898] = 1115, + [8899] = 8858, + [8900] = 8467, + [8901] = 8901, + [8902] = 1480, + [8903] = 323, + [8904] = 1684, + [8905] = 335, + [8906] = 8468, + [8907] = 8857, + [8908] = 323, + [8909] = 324, + [8910] = 324, [8911] = 8911, - [8912] = 1398, - [8913] = 8913, - [8914] = 1146, - [8915] = 1414, - [8916] = 405, - [8917] = 312, - [8918] = 8918, - [8919] = 8820, - [8920] = 8920, - [8921] = 2796, + [8912] = 1310, + [8913] = 8857, + [8914] = 8857, + [8915] = 8857, + [8916] = 8916, + [8917] = 8857, + [8918] = 8857, + [8919] = 8857, + [8920] = 390, + [8921] = 8857, [8922] = 8922, - [8923] = 364, - [8924] = 8924, - [8925] = 8925, - [8926] = 8822, - [8927] = 8927, - [8928] = 1676, - [8929] = 8929, - [8930] = 8827, + [8923] = 8857, + [8924] = 1151, + [8925] = 2972, + [8926] = 8857, + [8927] = 1504, + [8928] = 8857, + [8929] = 1138, + [8930] = 8857, [8931] = 8931, - [8932] = 8820, - [8933] = 8933, - [8934] = 8827, - [8935] = 8935, - [8936] = 359, - [8937] = 1212, - [8938] = 1398, - [8939] = 1625, - [8940] = 1769, - [8941] = 1790, - [8942] = 1414, - [8943] = 8943, - [8944] = 8944, - [8945] = 8945, - [8946] = 353, - [8947] = 8947, - [8948] = 8948, - [8949] = 8822, - [8950] = 446, - [8951] = 8951, - [8952] = 8952, - [8953] = 8827, - [8954] = 8954, - [8955] = 8820, - [8956] = 8956, - [8957] = 1204, - [8958] = 476, - [8959] = 8822, - [8960] = 8960, - [8961] = 8961, - [8962] = 1582, - [8963] = 8827, - [8964] = 8822, - [8965] = 8820, - [8966] = 8822, + [8932] = 8932, + [8933] = 874, + [8934] = 8857, + [8935] = 8857, + [8936] = 8936, + [8937] = 8857, + [8938] = 8938, + [8939] = 8939, + [8940] = 8857, + [8941] = 8941, + [8942] = 8857, + [8943] = 8857, + [8944] = 8857, + [8945] = 1684, + [8946] = 8857, + [8947] = 8857, + [8948] = 1104, + [8949] = 8857, + [8950] = 1122, + [8951] = 8857, + [8952] = 8857, + [8953] = 8857, + [8954] = 8857, + [8955] = 8857, + [8956] = 8857, + [8957] = 8857, + [8958] = 8857, + [8959] = 8857, + [8960] = 8857, + [8961] = 8857, + [8962] = 8857, + [8963] = 8857, + [8964] = 8857, + [8965] = 8857, + [8966] = 8966, [8967] = 8967, [8968] = 8968, - [8969] = 8822, - [8970] = 1666, - [8971] = 8822, - [8972] = 1199, - [8973] = 8827, + [8969] = 3558, + [8970] = 1078, + [8971] = 3477, + [8972] = 293, + [8973] = 294, [8974] = 8974, - [8975] = 8820, - [8976] = 8976, - [8977] = 8827, - [8978] = 1700, - [8979] = 8822, - [8980] = 8820, - [8981] = 333, - [8982] = 346, - [8983] = 8827, - [8984] = 8984, - [8985] = 8820, - [8986] = 1212, - [8987] = 8987, - [8988] = 8988, - [8989] = 8822, + [8975] = 255, + [8976] = 257, + [8977] = 256, + [8978] = 251, + [8979] = 410, + [8980] = 8980, + [8981] = 1093, + [8982] = 1094, + [8983] = 1097, + [8984] = 1115, + [8985] = 8872, + [8986] = 1276, + [8987] = 3478, + [8988] = 3481, + [8989] = 8989, [8990] = 8990, - [8991] = 8991, + [8991] = 1569, [8992] = 8992, - [8993] = 8827, + [8993] = 8993, [8994] = 8994, - [8995] = 8820, - [8996] = 8827, - [8997] = 466, - [8998] = 8998, - [8999] = 8822, - [9000] = 9000, - [9001] = 8820, - [9002] = 9002, - [9003] = 8827, - [9004] = 9004, - [9005] = 8820, - [9006] = 1770, - [9007] = 9007, - [9008] = 9008, - [9009] = 8822, - [9010] = 1414, - [9011] = 9011, - [9012] = 8827, - [9013] = 8822, - [9014] = 8820, - [9015] = 9015, + [8995] = 8428, + [8996] = 1266, + [8997] = 8997, + [8998] = 8993, + [8999] = 8994, + [9000] = 1151, + [9001] = 933, + [9002] = 8936, + [9003] = 8938, + [9004] = 8968, + [9005] = 8980, + [9006] = 8989, + [9007] = 8990, + [9008] = 8771, + [9009] = 1142, + [9010] = 8724, + [9011] = 8381, + [9012] = 9012, + [9013] = 8382, + [9014] = 1150, + [9015] = 8383, [9016] = 9016, - [9017] = 8822, - [9018] = 9018, - [9019] = 9019, - [9020] = 8827, - [9021] = 9021, - [9022] = 8820, - [9023] = 477, - [9024] = 406, - [9025] = 8822, - [9026] = 8820, - [9027] = 8827, - [9028] = 1777, - [9029] = 8820, - [9030] = 8827, - [9031] = 9031, - [9032] = 8820, - [9033] = 1777, - [9034] = 9034, - [9035] = 9035, - [9036] = 8820, - [9037] = 8820, - [9038] = 8820, - [9039] = 8820, - [9040] = 8820, - [9041] = 8820, - [9042] = 8820, - [9043] = 8820, - [9044] = 8820, - [9045] = 8820, - [9046] = 8820, - [9047] = 8820, - [9048] = 8820, - [9049] = 8820, - [9050] = 8820, - [9051] = 8820, - [9052] = 8820, - [9053] = 8820, - [9054] = 8820, - [9055] = 8820, - [9056] = 8820, - [9057] = 8820, - [9058] = 8820, - [9059] = 8820, - [9060] = 8820, - [9061] = 8820, - [9062] = 8820, - [9063] = 8820, - [9064] = 8820, - [9065] = 8820, - [9066] = 8820, - [9067] = 8820, - [9068] = 8820, - [9069] = 8820, - [9070] = 8820, - [9071] = 8820, - [9072] = 8820, - [9073] = 8820, - [9074] = 8820, - [9075] = 8820, - [9076] = 8820, - [9077] = 8820, - [9078] = 8820, - [9079] = 8820, - [9080] = 8820, - [9081] = 8820, - [9082] = 8820, - [9083] = 8820, - [9084] = 8820, - [9085] = 9085, - [9086] = 8820, - [9087] = 1785, - [9088] = 9088, - [9089] = 9089, - [9090] = 522, - [9091] = 9091, - [9092] = 1691, - [9093] = 1443, - [9094] = 1592, - [9095] = 9095, - [9096] = 8822, - [9097] = 9097, - [9098] = 1138, - [9099] = 8822, - [9100] = 9100, - [9101] = 1778, - [9102] = 445, - [9103] = 1625, - [9104] = 9104, - [9105] = 435, - [9106] = 8931, - [9107] = 9107, - [9108] = 1416, - [9109] = 1138, - [9110] = 9110, - [9111] = 8827, + [9017] = 8384, + [9018] = 8385, + [9019] = 8994, + [9020] = 8997, + [9021] = 8596, + [9022] = 8386, + [9023] = 8993, + [9024] = 8388, + [9025] = 8390, + [9026] = 8391, + [9027] = 8392, + [9028] = 8393, + [9029] = 8398, + [9030] = 1079, + [9031] = 8399, + [9032] = 1151, + [9033] = 8400, + [9034] = 8401, + [9035] = 8402, + [9036] = 8403, + [9037] = 8404, + [9038] = 8405, + [9039] = 9012, + [9040] = 8406, + [9041] = 8407, + [9042] = 8871, + [9043] = 8408, + [9044] = 9016, + [9045] = 8477, + [9046] = 8409, + [9047] = 8410, + [9048] = 8994, + [9049] = 8997, + [9050] = 8997, + [9051] = 8411, + [9052] = 8412, + [9053] = 8993, + [9054] = 8413, + [9055] = 8414, + [9056] = 8416, + [9057] = 8418, + [9058] = 324, + [9059] = 335, + [9060] = 8419, + [9061] = 8420, + [9062] = 8421, + [9063] = 8423, + [9064] = 9012, + [9065] = 933, + [9066] = 9016, + [9067] = 2955, + [9068] = 1649, + [9069] = 8994, + [9070] = 9070, + [9071] = 8997, + [9072] = 339, + [9073] = 8993, + [9074] = 8424, + [9075] = 8425, + [9076] = 8426, + [9077] = 8430, + [9078] = 936, + [9079] = 8431, + [9080] = 8437, + [9081] = 8439, + [9082] = 8441, + [9083] = 8442, + [9084] = 888, + [9085] = 8443, + [9086] = 8599, + [9087] = 1650, + [9088] = 1665, + [9089] = 9012, + [9090] = 312, + [9091] = 8916, + [9092] = 9016, + [9093] = 8994, + [9094] = 8997, + [9095] = 8993, + [9096] = 8901, + [9097] = 8480, + [9098] = 8993, + [9099] = 1667, + [9100] = 936, + [9101] = 9012, + [9102] = 312, + [9103] = 9016, + [9104] = 1127, + [9105] = 8994, + [9106] = 8997, + [9107] = 8993, + [9108] = 1714, + [9109] = 9109, + [9110] = 8387, + [9111] = 1276, [9112] = 9112, [9113] = 9113, - [9114] = 8827, - [9115] = 1438, + [9114] = 9114, + [9115] = 9115, [9116] = 9116, - [9117] = 8822, - [9118] = 9118, - [9119] = 1212, - [9120] = 8820, - [9121] = 8820, - [9122] = 1288, - [9123] = 8525, + [9117] = 9012, + [9118] = 335, + [9119] = 9016, + [9120] = 8481, + [9121] = 403, + [9122] = 8994, + [9123] = 9123, [9124] = 9124, - [9125] = 8820, - [9126] = 1427, - [9127] = 8843, - [9128] = 9128, - [9129] = 9129, - [9130] = 9130, - [9131] = 1212, - [9132] = 9132, - [9133] = 1445, - [9134] = 1386, - [9135] = 9107, - [9136] = 1139, - [9137] = 8647, - [9138] = 1146, - [9139] = 9139, - [9140] = 8786, - [9141] = 9141, - [9142] = 9142, - [9143] = 1414, - [9144] = 1785, - [9145] = 8827, - [9146] = 1427, + [9125] = 8997, + [9126] = 1715, + [9127] = 8993, + [9128] = 2955, + [9129] = 290, + [9130] = 279, + [9131] = 8432, + [9132] = 404, + [9133] = 1730, + [9134] = 292, + [9135] = 1731, + [9136] = 278, + [9137] = 9137, + [9138] = 9012, + [9139] = 9016, + [9140] = 293, + [9141] = 8994, + [9142] = 294, + [9143] = 8997, + [9144] = 888, + [9145] = 8993, + [9146] = 8457, [9147] = 9147, - [9148] = 9148, - [9149] = 9149, - [9150] = 1771, - [9151] = 9151, - [9152] = 8822, - [9153] = 1779, - [9154] = 1288, - [9155] = 8762, - [9156] = 3817, - [9157] = 9157, - [9158] = 9158, - [9159] = 9159, - [9160] = 364, - [9161] = 1130, - [9162] = 9162, - [9163] = 8827, - [9164] = 1139, - [9165] = 9165, - [9166] = 8820, - [9167] = 9167, - [9168] = 9168, - [9169] = 9169, - [9170] = 459, - [9171] = 1204, - [9172] = 9172, - [9173] = 9173, - [9174] = 9174, - [9175] = 523, - [9176] = 8822, - [9177] = 8827, + [9148] = 933, + [9149] = 8746, + [9150] = 8454, + [9151] = 8747, + [9152] = 9012, + [9153] = 8738, + [9154] = 9016, + [9155] = 333, + [9156] = 8748, + [9157] = 8994, + [9158] = 339, + [9159] = 8997, + [9160] = 8993, + [9161] = 8894, + [9162] = 1138, + [9163] = 9012, + [9164] = 8749, + [9165] = 9016, + [9166] = 8461, + [9167] = 1266, + [9168] = 8994, + [9169] = 8752, + [9170] = 8997, + [9171] = 9171, + [9172] = 8993, + [9173] = 936, + [9174] = 8603, + [9175] = 1276, + [9176] = 8604, + [9177] = 8756, [9178] = 9178, - [9179] = 8820, - [9180] = 403, - [9181] = 9181, - [9182] = 1779, - [9183] = 412, - [9184] = 9184, - [9185] = 472, - [9186] = 473, - [9187] = 460, - [9188] = 1772, - [9189] = 1204, - [9190] = 1786, - [9191] = 8820, - [9192] = 8827, - [9193] = 1774, - [9194] = 1416, - [9195] = 1787, - [9196] = 8820, - [9197] = 9197, - [9198] = 1582, - [9199] = 1781, - [9200] = 1768, - [9201] = 1782, - [9202] = 1780, - [9203] = 1365, - [9204] = 8820, - [9205] = 431, - [9206] = 8820, - [9207] = 403, - [9208] = 8822, - [9209] = 8827, - [9210] = 1788, - [9211] = 9211, - [9212] = 9212, - [9213] = 9213, - [9214] = 9214, - [9215] = 8820, - [9216] = 1789, - [9217] = 448, - [9218] = 9218, - [9219] = 9219, - [9220] = 1199, - [9221] = 9221, + [9179] = 8605, + [9180] = 9012, + [9181] = 9016, + [9182] = 8606, + [9183] = 8469, + [9184] = 8994, + [9185] = 8997, + [9186] = 888, + [9187] = 8993, + [9188] = 9188, + [9189] = 9189, + [9190] = 8607, + [9191] = 8608, + [9192] = 8465, + [9193] = 9012, + [9194] = 1142, + [9195] = 1150, + [9196] = 9196, + [9197] = 9012, + [9198] = 9198, + [9199] = 9016, + [9200] = 9016, + [9201] = 8610, + [9202] = 1115, + [9203] = 8994, + [9204] = 340, + [9205] = 9205, + [9206] = 8997, + [9207] = 8993, + [9208] = 8478, + [9209] = 1079, + [9210] = 1151, + [9211] = 9012, + [9212] = 9012, + [9213] = 8484, + [9214] = 9016, + [9215] = 8994, + [9216] = 9216, + [9217] = 8994, + [9218] = 1371, + [9219] = 8997, + [9220] = 8993, + [9221] = 8487, [9222] = 9222, - [9223] = 9223, - [9224] = 9224, + [9223] = 340, + [9224] = 8997, [9225] = 9225, - [9226] = 1416, - [9227] = 518, - [9228] = 9228, - [9229] = 1786, - [9230] = 8843, - [9231] = 1445, - [9232] = 1666, - [9233] = 1146, - [9234] = 1398, + [9226] = 9012, + [9227] = 8489, + [9228] = 9016, + [9229] = 8470, + [9230] = 8994, + [9231] = 8997, + [9232] = 330, + [9233] = 8993, + [9234] = 8993, [9235] = 9235, - [9236] = 1438, - [9237] = 8822, - [9238] = 9238, - [9239] = 1398, - [9240] = 1780, + [9236] = 8490, + [9237] = 9237, + [9238] = 8491, + [9239] = 9239, + [9240] = 8492, [9241] = 9241, - [9242] = 8827, - [9243] = 9243, - [9244] = 1416, - [9245] = 8827, - [9246] = 9246, - [9247] = 9247, - [9248] = 1438, - [9249] = 9249, - [9250] = 1787, - [9251] = 1138, - [9252] = 8843, - [9253] = 1130, - [9254] = 1364, - [9255] = 9128, - [9256] = 9256, - [9257] = 8820, - [9258] = 9258, - [9259] = 8822, - [9260] = 9260, + [9242] = 9012, + [9243] = 8993, + [9244] = 9016, + [9245] = 8760, + [9246] = 1632, + [9247] = 8994, + [9248] = 8911, + [9249] = 8997, + [9250] = 8993, + [9251] = 8931, + [9252] = 8593, + [9253] = 9016, + [9254] = 1104, + [9255] = 406, + [9256] = 8396, + [9257] = 9178, + [9258] = 330, + [9259] = 9259, + [9260] = 9012, [9261] = 9261, [9262] = 9262, - [9263] = 364, - [9264] = 9264, - [9265] = 438, - [9266] = 9266, - [9267] = 8827, - [9268] = 9268, - [9269] = 8827, - [9270] = 8799, + [9263] = 9016, + [9264] = 8994, + [9265] = 8594, + [9266] = 8997, + [9267] = 323, + [9268] = 8993, + [9269] = 324, + [9270] = 9259, [9271] = 9271, - [9272] = 8843, - [9273] = 1422, - [9274] = 8820, - [9275] = 1441, - [9276] = 1422, - [9277] = 1773, - [9278] = 405, - [9279] = 1799, - [9280] = 9280, - [9281] = 8820, - [9282] = 9282, - [9283] = 443, + [9272] = 9272, + [9273] = 9273, + [9274] = 1093, + [9275] = 1094, + [9276] = 1097, + [9277] = 9277, + [9278] = 9278, + [9279] = 8486, + [9280] = 9012, + [9281] = 9016, + [9282] = 8433, + [9283] = 8994, [9284] = 9284, - [9285] = 1776, - [9286] = 9286, - [9287] = 9287, - [9288] = 9288, - [9289] = 8843, - [9290] = 9290, + [9285] = 9012, + [9286] = 8997, + [9287] = 8993, + [9288] = 877, + [9289] = 8397, + [9290] = 8764, [9291] = 9291, - [9292] = 444, - [9293] = 8843, - [9294] = 483, - [9295] = 9295, - [9296] = 9296, - [9297] = 8843, - [9298] = 435, - [9299] = 1365, - [9300] = 1774, - [9301] = 8843, - [9302] = 1768, - [9303] = 1783, - [9304] = 406, - [9305] = 8843, - [9306] = 8606, - [9307] = 1204, - [9308] = 9308, - [9309] = 8843, - [9310] = 8783, - [9311] = 9311, - [9312] = 1791, - [9313] = 8843, - [9314] = 1204, - [9315] = 9315, - [9316] = 9316, - [9317] = 8843, - [9318] = 9318, - [9319] = 1790, - [9320] = 1769, - [9321] = 8843, - [9322] = 9322, - [9323] = 524, - [9324] = 9324, - [9325] = 8843, - [9326] = 1788, - [9327] = 9327, - [9328] = 9328, - [9329] = 8843, - [9330] = 8822, - [9331] = 8822, - [9332] = 9332, - [9333] = 8843, - [9334] = 9334, - [9335] = 415, - [9336] = 1784, - [9337] = 8843, - [9338] = 461, - [9339] = 8827, - [9340] = 1774, - [9341] = 8843, - [9342] = 9342, - [9343] = 8820, - [9344] = 1768, - [9345] = 8843, - [9346] = 9346, - [9347] = 364, - [9348] = 1791, - [9349] = 8843, - [9350] = 1427, - [9351] = 8820, - [9352] = 1199, - [9353] = 8843, - [9354] = 9354, - [9355] = 503, - [9356] = 442, - [9357] = 8843, - [9358] = 9358, - [9359] = 9359, + [9292] = 9292, + [9293] = 9016, + [9294] = 9294, + [9295] = 8967, + [9296] = 9012, + [9297] = 9016, + [9298] = 8994, + [9299] = 8997, + [9300] = 8993, + [9301] = 407, + [9302] = 9012, + [9303] = 9016, + [9304] = 8994, + [9305] = 8994, + [9306] = 1150, + [9307] = 8389, + [9308] = 8997, + [9309] = 8993, + [9310] = 8471, + [9311] = 9012, + [9312] = 9016, + [9313] = 8615, + [9314] = 341, + [9315] = 8994, + [9316] = 8997, + [9317] = 8617, + [9318] = 8997, + [9319] = 8993, + [9320] = 9320, + [9321] = 9321, + [9322] = 9012, + [9323] = 8472, + [9324] = 9016, + [9325] = 9325, + [9326] = 8994, + [9327] = 8618, + [9328] = 8997, + [9329] = 8993, + [9330] = 8619, + [9331] = 9012, + [9332] = 9016, + [9333] = 8620, + [9334] = 330, + [9335] = 8994, + [9336] = 8621, + [9337] = 8997, + [9338] = 8993, + [9339] = 8993, + [9340] = 8623, + [9341] = 9012, + [9342] = 9016, + [9343] = 340, + [9344] = 8994, + [9345] = 8939, + [9346] = 1127, + [9347] = 8997, + [9348] = 8993, + [9349] = 9012, + [9350] = 9016, + [9351] = 8624, + [9352] = 8994, + [9353] = 9353, + [9354] = 8435, + [9355] = 8997, + [9356] = 8993, + [9357] = 9012, + [9358] = 8994, + [9359] = 9016, [9360] = 9360, - [9361] = 8843, - [9362] = 9362, - [9363] = 1139, - [9364] = 8820, - [9365] = 8843, - [9366] = 9366, - [9367] = 9367, - [9368] = 9368, - [9369] = 8843, - [9370] = 1775, - [9371] = 9371, - [9372] = 9372, - [9373] = 8843, - [9374] = 9374, - [9375] = 9375, - [9376] = 8843, - [9377] = 9377, - [9378] = 310, - [9379] = 8843, - [9380] = 9380, - [9381] = 8843, - [9382] = 9382, - [9383] = 8843, - [9384] = 9384, - [9385] = 8843, - [9386] = 525, - [9387] = 8843, - [9388] = 9388, - [9389] = 8843, - [9390] = 8843, - [9391] = 8843, - [9392] = 8843, - [9393] = 8843, - [9394] = 8843, - [9395] = 8843, - [9396] = 8843, - [9397] = 8843, - [9398] = 8843, - [9399] = 9399, - [9400] = 2795, - [9401] = 9401, - [9402] = 9402, - [9403] = 9403, - [9404] = 9404, - [9405] = 1378, - [9406] = 9118, - [9407] = 9407, - [9408] = 1676, - [9409] = 9409, - [9410] = 9410, - [9411] = 1789, - [9412] = 9412, - [9413] = 3991, - [9414] = 8822, - [9415] = 4009, - [9416] = 9416, - [9417] = 333, - [9418] = 346, - [9419] = 9419, - [9420] = 9420, - [9421] = 9421, - [9422] = 271, - [9423] = 266, - [9424] = 270, - [9425] = 269, - [9426] = 364, - [9427] = 9427, - [9428] = 9428, - [9429] = 9167, - [9430] = 1378, - [9431] = 1386, - [9432] = 1441, - [9433] = 1199, - [9434] = 1364, - [9435] = 8822, - [9436] = 9219, - [9437] = 1212, - [9438] = 3973, - [9439] = 3974, - [9440] = 1691, - [9441] = 9441, - [9442] = 1765, - [9443] = 8822, - [9444] = 9444, - [9445] = 9445, - [9446] = 9088, - [9447] = 9095, - [9448] = 364, - [9449] = 2572, - [9450] = 431, - [9451] = 9451, - [9452] = 1364, - [9453] = 9453, - [9454] = 9454, - [9455] = 9455, - [9456] = 9456, - [9457] = 9444, - [9458] = 9445, - [9459] = 443, - [9460] = 9460, - [9461] = 444, - [9462] = 9462, - [9463] = 1398, - [9464] = 1592, - [9465] = 1204, - [9466] = 9466, - [9467] = 9467, - [9468] = 9468, - [9469] = 9451, - [9470] = 1199, - [9471] = 9471, - [9472] = 9453, - [9473] = 9473, - [9474] = 1212, - [9475] = 9444, - [9476] = 9453, - [9477] = 9477, - [9478] = 9445, - [9479] = 9479, - [9480] = 459, - [9481] = 9460, - [9482] = 1146, - [9483] = 460, - [9484] = 1781, - [9485] = 1782, - [9486] = 1427, - [9487] = 9487, - [9488] = 9488, - [9489] = 9489, - [9490] = 403, - [9491] = 9460, - [9492] = 9451, - [9493] = 1443, - [9494] = 9453, - [9495] = 9444, - [9496] = 466, - [9497] = 9445, - [9498] = 9498, - [9499] = 9460, - [9500] = 9500, - [9501] = 9501, - [9502] = 1445, - [9503] = 472, - [9504] = 473, - [9505] = 1365, - [9506] = 9223, - [9507] = 9286, - [9508] = 9451, - [9509] = 9168, - [9510] = 1443, - [9511] = 9453, - [9512] = 9512, - [9513] = 9444, - [9514] = 9445, - [9515] = 9362, - [9516] = 9460, - [9517] = 9517, - [9518] = 1414, - [9519] = 1445, - [9520] = 9460, - [9521] = 1113, - [9522] = 9522, - [9523] = 9523, - [9524] = 8898, - [9525] = 8968, - [9526] = 405, - [9527] = 9451, - [9528] = 9453, - [9529] = 9529, - [9530] = 9444, - [9531] = 8871, - [9532] = 9445, - [9533] = 9533, - [9534] = 406, - [9535] = 9460, - [9536] = 9368, - [9537] = 435, - [9538] = 9538, - [9539] = 8947, - [9540] = 462, - [9541] = 480, - [9542] = 9542, - [9543] = 9451, - [9544] = 9453, - [9545] = 9451, - [9546] = 9444, - [9547] = 1378, - [9548] = 1386, - [9549] = 9445, - [9550] = 9460, - [9551] = 8951, - [9552] = 9451, - [9553] = 9523, - [9554] = 9554, - [9555] = 1422, - [9556] = 9453, - [9557] = 403, - [9558] = 9451, - [9559] = 9453, - [9560] = 1441, - [9561] = 9473, - [9562] = 9444, - [9563] = 9445, - [9564] = 9460, - [9565] = 9565, - [9566] = 9566, - [9567] = 1204, - [9568] = 412, - [9569] = 425, - [9570] = 9444, - [9571] = 9451, - [9572] = 9453, - [9573] = 9139, - [9574] = 9444, - [9575] = 1416, - [9576] = 9148, - [9577] = 9445, - [9578] = 9466, - [9579] = 9151, - [9580] = 9460, - [9581] = 9581, - [9582] = 9157, - [9583] = 9181, - [9584] = 9554, - [9585] = 9565, - [9586] = 1199, - [9587] = 9445, - [9588] = 9211, - [9589] = 1582, - [9590] = 9451, - [9591] = 9453, - [9592] = 9218, - [9593] = 9261, - [9594] = 9444, - [9595] = 9284, - [9596] = 9358, - [9597] = 431, - [9598] = 9445, - [9599] = 8831, - [9600] = 9460, - [9601] = 1212, - [9602] = 8859, - [9603] = 9517, - [9604] = 9604, - [9605] = 9605, - [9606] = 8864, - [9607] = 8872, - [9608] = 9451, - [9609] = 8897, - [9610] = 9453, - [9611] = 9467, - [9612] = 9468, - [9613] = 8913, - [9614] = 9444, - [9615] = 8944, - [9616] = 9445, - [9617] = 9460, - [9618] = 9460, - [9619] = 8945, - [9620] = 8987, - [9621] = 8998, - [9622] = 9002, - [9623] = 364, - [9624] = 9011, - [9625] = 9015, - [9626] = 9016, - [9627] = 9089, - [9628] = 9628, - [9629] = 9451, - [9630] = 9630, - [9631] = 9097, - [9632] = 9453, - [9633] = 9444, - [9634] = 9445, - [9635] = 9460, - [9636] = 8920, - [9637] = 8922, - [9638] = 8935, - [9639] = 9141, - [9640] = 405, - [9641] = 9451, - [9642] = 9453, - [9643] = 9256, - [9644] = 9280, - [9645] = 9287, - [9646] = 9444, - [9647] = 9311, - [9648] = 9315, - [9649] = 9445, - [9650] = 9460, - [9651] = 9316, - [9652] = 364, - [9653] = 9324, - [9654] = 9332, - [9655] = 9354, - [9656] = 9404, - [9657] = 8911, - [9658] = 9334, - [9659] = 9377, - [9660] = 8929, - [9661] = 9147, - [9662] = 9451, - [9663] = 9174, - [9664] = 9453, - [9665] = 9224, - [9666] = 9262, - [9667] = 1582, - [9668] = 9359, - [9669] = 9366, - [9670] = 1427, - [9671] = 9445, - [9672] = 8863, - [9673] = 9460, - [9674] = 8873, - [9675] = 8876, - [9676] = 8967, - [9677] = 8933, - [9678] = 1592, - [9679] = 8948, - [9680] = 9225, - [9681] = 9451, - [9682] = 448, - [9683] = 4248, - [9684] = 9453, - [9685] = 503, - [9686] = 9444, - [9687] = 435, - [9688] = 9445, - [9689] = 518, - [9690] = 9460, - [9691] = 1365, - [9692] = 1443, - [9693] = 438, - [9694] = 9451, - [9695] = 1398, - [9696] = 9453, - [9697] = 1700, - [9698] = 9444, - [9699] = 8927, - [9700] = 9445, - [9701] = 9460, - [9702] = 1414, - [9703] = 1445, - [9704] = 9704, - [9705] = 268, - [9706] = 1592, - [9707] = 9444, - [9708] = 3919, - [9709] = 9451, - [9710] = 9453, - [9711] = 9444, - [9712] = 364, - [9713] = 431, - [9714] = 364, - [9715] = 9445, - [9716] = 9460, - [9717] = 412, - [9718] = 425, - [9719] = 364, - [9720] = 442, - [9721] = 9451, - [9722] = 1443, - [9723] = 9445, - [9724] = 9724, - [9725] = 405, - [9726] = 9453, - [9727] = 9451, - [9728] = 1445, - [9729] = 9453, - [9730] = 9444, - [9731] = 9445, - [9732] = 9460, - [9733] = 9733, - [9734] = 9444, - [9735] = 9451, - [9736] = 9453, - [9737] = 9445, - [9738] = 9444, - [9739] = 445, - [9740] = 9445, - [9741] = 9460, - [9742] = 9451, - [9743] = 9453, - [9744] = 9444, - [9745] = 9745, - [9746] = 9746, - [9747] = 9445, - [9748] = 9460, - [9749] = 9460, - [9750] = 9451, - [9751] = 1767, - [9752] = 9453, + [9361] = 8994, + [9362] = 8941, + [9363] = 8895, + [9364] = 8997, + [9365] = 8993, + [9366] = 9012, + [9367] = 1093, + [9368] = 9016, + [9369] = 8625, + [9370] = 8994, + [9371] = 1276, + [9372] = 393, + [9373] = 8997, + [9374] = 8993, + [9375] = 1094, + [9376] = 9012, + [9377] = 9016, + [9378] = 8994, + [9379] = 2972, + [9380] = 8997, + [9381] = 8993, + [9382] = 9012, + [9383] = 9016, + [9384] = 8994, + [9385] = 8997, + [9386] = 8993, + [9387] = 9012, + [9388] = 9016, + [9389] = 8994, + [9390] = 9012, + [9391] = 9016, + [9392] = 8994, + [9393] = 9393, + [9394] = 9012, + [9395] = 9016, + [9396] = 8994, + [9397] = 9012, + [9398] = 9016, + [9399] = 8994, + [9400] = 8436, + [9401] = 9012, + [9402] = 9016, + [9403] = 8994, + [9404] = 9012, + [9405] = 9012, + [9406] = 9016, + [9407] = 8994, + [9408] = 9012, + [9409] = 9016, + [9410] = 8994, + [9411] = 9411, + [9412] = 9012, + [9413] = 9016, + [9414] = 8994, + [9415] = 9012, + [9416] = 9016, + [9417] = 8994, + [9418] = 9012, + [9419] = 9016, + [9420] = 8994, + [9421] = 9012, + [9422] = 9016, + [9423] = 8994, + [9424] = 9016, + [9425] = 9012, + [9426] = 9016, + [9427] = 8994, + [9428] = 390, + [9429] = 9012, + [9430] = 9016, + [9431] = 8994, + [9432] = 9012, + [9433] = 9016, + [9434] = 8994, + [9435] = 9012, + [9436] = 9016, + [9437] = 8994, + [9438] = 9012, + [9439] = 9016, + [9440] = 8994, + [9441] = 9012, + [9442] = 9016, + [9443] = 8994, + [9444] = 9012, + [9445] = 9016, + [9446] = 8994, + [9447] = 9012, + [9448] = 9016, + [9449] = 8994, + [9450] = 9012, + [9451] = 9016, + [9452] = 8994, + [9453] = 9012, + [9454] = 9016, + [9455] = 8994, + [9456] = 9012, + [9457] = 9016, + [9458] = 8994, + [9459] = 9012, + [9460] = 9016, + [9461] = 8994, + [9462] = 9012, + [9463] = 9016, + [9464] = 8994, + [9465] = 8994, + [9466] = 9012, + [9467] = 9016, + [9468] = 8994, + [9469] = 252, + [9470] = 9012, + [9471] = 9016, + [9472] = 8994, + [9473] = 8415, + [9474] = 9012, + [9475] = 9016, + [9476] = 8994, + [9477] = 8417, + [9478] = 9012, + [9479] = 9016, + [9480] = 8994, + [9481] = 9012, + [9482] = 9016, + [9483] = 8994, + [9484] = 9012, + [9485] = 9016, + [9486] = 8994, + [9487] = 9012, + [9488] = 9016, + [9489] = 8994, + [9490] = 8997, + [9491] = 9012, + [9492] = 9016, + [9493] = 8994, + [9494] = 9012, + [9495] = 9016, + [9496] = 8994, + [9497] = 9012, + [9498] = 9016, + [9499] = 8994, + [9500] = 9012, + [9501] = 9016, + [9502] = 8994, + [9503] = 9012, + [9504] = 9016, + [9505] = 8994, + [9506] = 9012, + [9507] = 9016, + [9508] = 8994, + [9509] = 312, + [9510] = 9012, + [9511] = 9016, + [9512] = 8994, + [9513] = 9012, + [9514] = 9016, + [9515] = 8994, + [9516] = 9012, + [9517] = 9016, + [9518] = 8994, + [9519] = 9012, + [9520] = 9016, + [9521] = 8994, + [9522] = 8485, + [9523] = 9012, + [9524] = 9016, + [9525] = 8994, + [9526] = 8993, + [9527] = 9012, + [9528] = 9016, + [9529] = 8994, + [9530] = 9012, + [9531] = 9016, + [9532] = 8994, + [9533] = 9016, + [9534] = 8994, + [9535] = 9016, + [9536] = 8994, + [9537] = 9016, + [9538] = 8994, + [9539] = 9016, + [9540] = 8994, + [9541] = 9016, + [9542] = 8994, + [9543] = 9016, + [9544] = 8994, + [9545] = 9016, + [9546] = 8994, + [9547] = 9016, + [9548] = 8994, + [9549] = 9016, + [9550] = 8994, + [9551] = 9016, + [9552] = 8994, + [9553] = 9016, + [9554] = 8994, + [9555] = 9016, + [9556] = 8994, + [9557] = 9016, + [9558] = 8994, + [9559] = 9016, + [9560] = 8994, + [9561] = 9016, + [9562] = 8994, + [9563] = 9016, + [9564] = 8994, + [9565] = 9016, + [9566] = 8994, + [9567] = 9016, + [9568] = 8994, + [9569] = 8626, + [9570] = 9570, + [9571] = 846, + [9572] = 8627, + [9573] = 8629, + [9574] = 8631, + [9575] = 8633, + [9576] = 9235, + [9577] = 9577, + [9578] = 8640, + [9579] = 8641, + [9580] = 8642, + [9581] = 8646, + [9582] = 8648, + [9583] = 9583, + [9584] = 3087, + [9585] = 8422, + [9586] = 1097, + [9587] = 8444, + [9588] = 312, + [9589] = 339, + [9590] = 330, + [9591] = 8878, + [9592] = 8879, + [9593] = 8882, + [9594] = 392, + [9595] = 8667, + [9596] = 9596, + [9597] = 8446, + [9598] = 8754, + [9599] = 9599, + [9600] = 9137, + [9601] = 9294, + [9602] = 8788, + [9603] = 9603, + [9604] = 1371, + [9605] = 9114, + [9606] = 8966, + [9607] = 8708, + [9608] = 9012, + [9609] = 1276, + [9610] = 8447, + [9611] = 8474, + [9612] = 9012, + [9613] = 8737, + [9614] = 8674, + [9615] = 8676, + [9616] = 1310, + [9617] = 1104, + [9618] = 1122, + [9619] = 2972, + [9620] = 8450, + [9621] = 9603, + [9622] = 8639, + [9623] = 8680, + [9624] = 8681, + [9625] = 8684, + [9626] = 3848, + [9627] = 9016, + [9628] = 9016, + [9629] = 8427, + [9630] = 8451, + [9631] = 8475, + [9632] = 380, + [9633] = 382, + [9634] = 8685, + [9635] = 9360, + [9636] = 8711, + [9637] = 384, + [9638] = 8994, + [9639] = 312, + [9640] = 385, + [9641] = 8687, + [9642] = 1266, + [9643] = 8704, + [9644] = 8997, + [9645] = 8707, + [9646] = 8709, + [9647] = 8476, + [9648] = 255, + [9649] = 257, + [9650] = 256, + [9651] = 251, + [9652] = 1115, + [9653] = 1078, + [9654] = 8710, + [9655] = 8696, + [9656] = 1150, + [9657] = 9657, + [9658] = 1151, + [9659] = 8714, + [9660] = 3491, + [9661] = 8993, + [9662] = 8994, + [9663] = 8715, + [9664] = 312, + [9665] = 410, + [9666] = 386, + [9667] = 8452, + [9668] = 330, + [9669] = 8733, + [9670] = 9012, + [9671] = 8740, + [9672] = 323, + [9673] = 324, + [9674] = 9147, + [9675] = 8997, + [9676] = 387, + [9677] = 8743, + [9678] = 9261, + [9679] = 9262, + [9680] = 388, + [9681] = 9681, + [9682] = 9012, + [9683] = 8997, + [9684] = 1122, + [9685] = 9016, + [9686] = 8744, + [9687] = 8745, + [9688] = 8994, + [9689] = 9016, + [9690] = 9241, + [9691] = 8736, + [9692] = 8770, + [9693] = 8774, + [9694] = 8776, + [9695] = 8779, + [9696] = 8997, + [9697] = 8781, + [9698] = 8786, + [9699] = 8789, + [9700] = 8845, + [9701] = 9109, + [9702] = 389, + [9703] = 8993, + [9704] = 1078, + [9705] = 8922, + [9706] = 333, + [9707] = 1138, + [9708] = 9112, + [9709] = 8932, + [9710] = 399, + [9711] = 9711, + [9712] = 400, + [9713] = 391, + [9714] = 8456, + [9715] = 1323, + [9716] = 1266, + [9717] = 9188, + [9718] = 9012, + [9719] = 9189, + [9720] = 8479, + [9721] = 9016, + [9722] = 8997, + [9723] = 8993, + [9724] = 323, + [9725] = 9725, + [9726] = 9726, + [9727] = 9726, + [9728] = 9728, + [9729] = 9726, + [9730] = 9726, + [9731] = 9272, + [9732] = 333, + [9733] = 9728, + [9734] = 9726, + [9735] = 9735, + [9736] = 9736, + [9737] = 330, + [9738] = 9681, + [9739] = 9739, + [9740] = 1323, + [9741] = 9070, + [9742] = 9728, + [9743] = 9728, + [9744] = 9123, + [9745] = 9726, + [9746] = 3087, + [9747] = 9747, + [9748] = 339, + [9749] = 9749, + [9750] = 9728, + [9751] = 323, + [9752] = 335, [9753] = 9753, - [9754] = 446, - [9755] = 9444, - [9756] = 9445, - [9757] = 9460, - [9758] = 9451, - [9759] = 9453, - [9760] = 9444, - [9761] = 1700, - [9762] = 9445, - [9763] = 9460, - [9764] = 9451, - [9765] = 9453, - [9766] = 1676, - [9767] = 9444, - [9768] = 335, - [9769] = 359, - [9770] = 9445, - [9771] = 9460, - [9772] = 355, - [9773] = 353, - [9774] = 9451, - [9775] = 9775, - [9776] = 9453, - [9777] = 8835, - [9778] = 333, - [9779] = 346, - [9780] = 9444, - [9781] = 9142, - [9782] = 1666, - [9783] = 9445, - [9784] = 9460, - [9785] = 8889, - [9786] = 9451, - [9787] = 403, - [9788] = 9453, - [9789] = 8890, - [9790] = 8893, - [9791] = 9444, - [9792] = 1438, - [9793] = 1422, - [9794] = 8900, - [9795] = 9445, - [9796] = 9460, - [9797] = 9451, - [9798] = 8906, - [9799] = 9453, - [9800] = 412, - [9801] = 425, - [9802] = 9444, - [9803] = 8910, - [9804] = 8918, - [9805] = 9445, - [9806] = 9460, - [9807] = 8925, - [9808] = 9451, - [9809] = 9453, - [9810] = 9810, - [9811] = 9811, - [9812] = 9444, - [9813] = 9445, - [9814] = 9460, - [9815] = 9451, - [9816] = 9453, - [9817] = 9444, - [9818] = 9445, - [9819] = 9460, - [9820] = 9820, - [9821] = 9451, - [9822] = 9453, - [9823] = 9444, - [9824] = 9445, - [9825] = 9460, - [9826] = 9451, - [9827] = 9453, - [9828] = 9444, - [9829] = 461, - [9830] = 9451, - [9831] = 9453, - [9832] = 9444, - [9833] = 9451, - [9834] = 9453, - [9835] = 9444, - [9836] = 9451, - [9837] = 9453, - [9838] = 9444, - [9839] = 9451, - [9840] = 9453, - [9841] = 9444, - [9842] = 9451, - [9843] = 9453, - [9844] = 9444, - [9845] = 9451, - [9846] = 9451, - [9847] = 9453, - [9848] = 9444, - [9849] = 9451, - [9850] = 9453, - [9851] = 9444, - [9852] = 9451, - [9853] = 9453, - [9854] = 9444, - [9855] = 9451, - [9856] = 9453, - [9857] = 9444, - [9858] = 9451, - [9859] = 9453, - [9860] = 9444, - [9861] = 9451, - [9862] = 9453, - [9863] = 9444, - [9864] = 9453, - [9865] = 9451, - [9866] = 9453, - [9867] = 9444, - [9868] = 9451, - [9869] = 9453, - [9870] = 9444, - [9871] = 403, - [9872] = 9451, - [9873] = 9453, - [9874] = 9444, - [9875] = 9212, - [9876] = 9451, - [9877] = 9453, - [9878] = 9444, - [9879] = 9451, - [9880] = 9453, - [9881] = 9444, - [9882] = 9451, - [9883] = 9453, - [9884] = 9444, - [9885] = 9451, - [9886] = 9453, - [9887] = 9444, - [9888] = 9451, - [9889] = 9453, - [9890] = 9444, - [9891] = 9451, - [9892] = 9453, - [9893] = 9444, - [9894] = 9451, - [9895] = 9453, - [9896] = 9444, - [9897] = 9451, - [9898] = 9453, - [9899] = 9444, - [9900] = 9451, - [9901] = 9453, - [9902] = 9444, - [9903] = 9214, - [9904] = 9451, - [9905] = 9453, - [9906] = 9444, - [9907] = 9451, - [9908] = 9453, - [9909] = 9444, - [9910] = 9228, - [9911] = 9451, - [9912] = 9453, - [9913] = 9444, - [9914] = 9451, - [9915] = 9453, - [9916] = 9444, - [9917] = 9444, - [9918] = 9451, - [9919] = 9453, - [9920] = 9444, - [9921] = 476, - [9922] = 9451, - [9923] = 9453, - [9924] = 9444, - [9925] = 9235, - [9926] = 9451, - [9927] = 9453, - [9928] = 9444, - [9929] = 9451, - [9930] = 9453, - [9931] = 9444, - [9932] = 9451, - [9933] = 9453, - [9934] = 9444, - [9935] = 9451, - [9936] = 9453, - [9937] = 9444, - [9938] = 9451, - [9939] = 9453, - [9940] = 9444, - [9941] = 9451, - [9942] = 9453, - [9943] = 9444, - [9944] = 9451, - [9945] = 9453, - [9946] = 9444, - [9947] = 9445, - [9948] = 9451, - [9949] = 9453, - [9950] = 9444, - [9951] = 9451, - [9952] = 9453, - [9953] = 9444, - [9954] = 9451, - [9955] = 9453, - [9956] = 9444, - [9957] = 9451, - [9958] = 9453, - [9959] = 9444, - [9960] = 9451, - [9961] = 9453, - [9962] = 9444, - [9963] = 9451, - [9964] = 9453, - [9965] = 9444, - [9966] = 9451, - [9967] = 9453, - [9968] = 9444, - [9969] = 9451, - [9970] = 9453, - [9971] = 9444, - [9972] = 9451, - [9973] = 9453, - [9974] = 9444, - [9975] = 9451, - [9976] = 9453, - [9977] = 9444, - [9978] = 9451, - [9979] = 9453, - [9980] = 9444, - [9981] = 9132, - [9982] = 9453, - [9983] = 9444, - [9984] = 9460, - [9985] = 9453, - [9986] = 9444, - [9987] = 9453, - [9988] = 9444, - [9989] = 9453, - [9990] = 9444, - [9991] = 9453, - [9992] = 9444, - [9993] = 9453, - [9994] = 9444, - [9995] = 9453, - [9996] = 9444, - [9997] = 9453, - [9998] = 9444, - [9999] = 9453, - [10000] = 9444, - [10001] = 9453, - [10002] = 9444, - [10003] = 9453, - [10004] = 9444, - [10005] = 9453, - [10006] = 9444, - [10007] = 9453, - [10008] = 9444, - [10009] = 9453, - [10010] = 9444, - [10011] = 9453, - [10012] = 9444, - [10013] = 9453, - [10014] = 9444, - [10015] = 9453, - [10016] = 9444, - [10017] = 9453, - [10018] = 9444, - [10019] = 9453, - [10020] = 9444, - [10021] = 9453, - [10022] = 9444, - [10023] = 9159, - [10024] = 9249, - [10025] = 9266, + [9754] = 9739, + [9755] = 9755, + [9756] = 877, + [9757] = 9726, + [9758] = 9739, + [9759] = 9726, + [9760] = 9760, + [9761] = 340, + [9762] = 1249, + [9763] = 9728, + [9764] = 330, + [9765] = 9728, + [9766] = 9726, + [9767] = 9596, + [9768] = 9768, + [9769] = 1150, + [9770] = 324, + [9771] = 9726, + [9772] = 1250, + [9773] = 9739, + [9774] = 9774, + [9775] = 9726, + [9776] = 877, + [9777] = 1150, + [9778] = 6811, + [9779] = 1371, + [9780] = 9780, + [9781] = 9728, + [9782] = 9728, + [9783] = 9271, + [9784] = 9726, + [9785] = 339, + [9786] = 340, + [9787] = 9739, + [9788] = 9726, + [9789] = 9789, + [9790] = 9790, + [9791] = 9726, + [9792] = 3987, + [9793] = 9793, + [9794] = 9794, + [9795] = 9728, + [9796] = 4022, + [9797] = 9726, + [9798] = 340, + [9799] = 335, + [9800] = 4023, + [9801] = 9728, + [9802] = 9802, + [9803] = 9803, + [9804] = 9728, + [9805] = 3893, + [9806] = 3848, + [9807] = 9320, + [9808] = 9726, + [9809] = 9739, + [9810] = 1276, + [9811] = 9739, + [9812] = 9812, + [9813] = 233, + [9814] = 9728, + [9815] = 9728, + [9816] = 9726, + [9817] = 9735, + [9818] = 9739, + [9819] = 9819, + [9820] = 9726, + [9821] = 9728, + [9822] = 9822, + [9823] = 9823, + [9824] = 312, + [9825] = 9728, + [9826] = 9753, + [9827] = 9726, + [9828] = 9828, + [9829] = 9829, + [9830] = 9830, + [9831] = 9726, + [9832] = 333, + [9833] = 333, + [9834] = 1323, + [9835] = 330, + [9836] = 9657, + [9837] = 9739, + [9838] = 9728, + [9839] = 9839, + [9840] = 1151, + [9841] = 9728, + [9842] = 877, + [9843] = 9726, + [9844] = 9325, + [9845] = 9823, + [9846] = 330, + [9847] = 9284, + [9848] = 9728, + [9849] = 9728, + [9850] = 4058, + [9851] = 9739, + [9852] = 9852, + [9853] = 9726, + [9854] = 9728, + [9855] = 312, + [9856] = 9856, + [9857] = 9857, + [9858] = 9747, + [9859] = 9859, + [9860] = 1241, + [9861] = 9828, + [9862] = 4065, + [9863] = 3899, + [9864] = 4002, + [9865] = 9739, + [9866] = 9728, + [9867] = 9839, + [9868] = 9868, + [9869] = 4029, + [9870] = 9726, + [9871] = 9739, + [9872] = 9726, + [9873] = 9726, + [9874] = 9874, + [9875] = 3928, + [9876] = 330, + [9877] = 9735, + [9878] = 9878, + [9879] = 9728, + [9880] = 1323, + [9881] = 9881, + [9882] = 9726, + [9883] = 1266, + [9884] = 2372, + [9885] = 9735, + [9886] = 9728, + [9887] = 4066, + [9888] = 9728, + [9889] = 9739, + [9890] = 4069, + [9891] = 1930, + [9892] = 9735, + [9893] = 9728, + [9894] = 9728, + [9895] = 9726, + [9896] = 3634, + [9897] = 1276, + [9898] = 9739, + [9899] = 9735, + [9900] = 8992, + [9901] = 9901, + [9902] = 9735, + [9903] = 9393, + [9904] = 9735, + [9905] = 877, + [9906] = 9906, + [9907] = 9726, + [9908] = 9735, + [9909] = 330, + [9910] = 9273, + [9911] = 9735, + [9912] = 323, + [9913] = 9735, + [9914] = 9726, + [9915] = 324, + [9916] = 9735, + [9917] = 9735, + [9918] = 323, + [9919] = 9735, + [9920] = 9735, + [9921] = 1310, + [9922] = 9735, + [9923] = 9735, + [9924] = 9924, + [9925] = 9735, + [9926] = 9926, + [9927] = 9735, + [9928] = 9728, + [9929] = 1310, + [9930] = 9735, + [9931] = 9931, + [9932] = 9277, + [9933] = 324, + [9934] = 9735, + [9935] = 238, + [9936] = 9739, + [9937] = 9735, + [9938] = 9938, + [9939] = 9726, + [9940] = 9735, + [9941] = 333, + [9942] = 9735, + [9943] = 9735, + [9944] = 9728, + [9945] = 9735, + [9946] = 9726, + [9947] = 9735, + [9948] = 846, + [9949] = 9735, + [9950] = 9735, + [9951] = 9728, + [9952] = 9735, + [9953] = 9953, + [9954] = 9954, + [9955] = 9735, + [9956] = 9728, + [9957] = 9735, + [9958] = 9735, + [9959] = 9735, + [9960] = 9735, + [9961] = 9735, + [9962] = 1151, + [9963] = 9739, + [9964] = 1266, + [9965] = 9965, + [9966] = 9966, + [9967] = 9726, + [9968] = 9839, + [9969] = 3087, + [9970] = 1245, + [9971] = 339, + [9972] = 9739, + [9973] = 1247, + [9974] = 9739, + [9975] = 846, + [9976] = 1310, + [9977] = 9739, + [9978] = 9728, + [9979] = 9979, + [9980] = 9980, + [9981] = 9981, + [9982] = 9982, + [9983] = 9982, + [9984] = 9982, + [9985] = 1371, + [9986] = 9982, + [9987] = 9987, + [9988] = 9988, + [9989] = 9989, + [9990] = 9990, + [9991] = 9979, + [9992] = 9992, + [9993] = 9982, + [9994] = 9994, + [9995] = 9982, + [9996] = 9996, + [9997] = 9989, + [9998] = 9998, + [9999] = 9996, + [10000] = 10000, + [10001] = 10001, + [10002] = 9982, + [10003] = 9982, + [10004] = 10004, + [10005] = 9998, + [10006] = 9982, + [10007] = 10007, + [10008] = 9998, + [10009] = 9996, + [10010] = 9989, + [10011] = 9996, + [10012] = 9982, + [10013] = 10013, + [10014] = 9989, + [10015] = 9982, + [10016] = 10016, + [10017] = 9982, + [10018] = 2291, + [10019] = 10019, + [10020] = 9982, + [10021] = 10021, + [10022] = 9998, + [10023] = 9996, + [10024] = 3087, + [10025] = 9982, [10026] = 10026, - [10027] = 9271, - [10028] = 9288, - [10029] = 9296, - [10030] = 9318, - [10031] = 477, - [10032] = 9342, - [10033] = 9371, - [10034] = 9375, - [10035] = 9221, - [10036] = 9222, - [10037] = 1378, - [10038] = 1386, - [10039] = 1441, - [10040] = 9243, - [10041] = 9258, - [10042] = 9374, - [10043] = 9402, - [10044] = 9403, - [10045] = 9110, - [10046] = 9441, - [10047] = 9451, - [10048] = 9008, - [10049] = 483, - [10050] = 9018, - [10051] = 9453, - [10052] = 1204, - [10053] = 9021, - [10054] = 9149, - [10055] = 9462, - [10056] = 9566, - [10057] = 9372, - [10058] = 9444, - [10059] = 10059, - [10060] = 8895, - [10061] = 8904, - [10062] = 8924, - [10063] = 9445, - [10064] = 8988, - [10065] = 9004, - [10066] = 9460, - [10067] = 1625, - [10068] = 9169, - [10069] = 9172, - [10070] = 1666, - [10071] = 9178, - [10072] = 9260, - [10073] = 9295, - [10074] = 8824, - [10075] = 8826, - [10076] = 8828, - [10077] = 8842, - [10078] = 8851, - [10079] = 8882, - [10080] = 8884, - [10081] = 8887, - [10082] = 8896, - [10083] = 8908, - [10084] = 8954, - [10085] = 8960, - [10086] = 8961, - [10087] = 8974, - [10088] = 8984, - [10089] = 9451, - [10090] = 9034, - [10091] = 9035, - [10092] = 9085, - [10093] = 9113, - [10094] = 9453, - [10095] = 9158, - [10096] = 9162, - [10097] = 9165, - [10098] = 9173, - [10099] = 9444, - [10100] = 9241, - [10101] = 9246, - [10102] = 9247, - [10103] = 9445, - [10104] = 9264, - [10105] = 9322, - [10106] = 9460, - [10107] = 9380, - [10108] = 9382, - [10109] = 9384, - [10110] = 9399, - [10111] = 9401, - [10112] = 9409, - [10113] = 9412, - [10114] = 1676, - [10115] = 9416, - [10116] = 9419, - [10117] = 9420, - [10118] = 9427, - [10119] = 271, - [10120] = 266, - [10121] = 270, - [10122] = 269, - [10123] = 1364, - [10124] = 9428, - [10125] = 403, - [10126] = 9451, - [10127] = 9000, - [10128] = 8830, - [10129] = 10129, - [10130] = 9453, - [10131] = 10131, - [10132] = 9100, - [10133] = 8956, - [10134] = 9444, - [10135] = 8846, - [10136] = 9197, - [10137] = 406, - [10138] = 9445, - [10139] = 9410, - [10140] = 9460, - [10141] = 8943, - [10142] = 8990, - [10143] = 9290, - [10144] = 9104, - [10145] = 8848, - [10146] = 1199, - [10147] = 9116, - [10148] = 9268, - [10149] = 9367, - [10150] = 9184, - [10151] = 8994, - [10152] = 9308, - [10153] = 9451, - [10154] = 9124, - [10155] = 9130, - [10156] = 9453, - [10157] = 9444, - [10158] = 1770, - [10159] = 9445, - [10160] = 1771, - [10161] = 1772, - [10162] = 9460, - [10163] = 1773, - [10164] = 1783, - [10165] = 1784, - [10166] = 10166, - [10167] = 1212, - [10168] = 1582, - [10169] = 9451, - [10170] = 8952, - [10171] = 10171, + [10027] = 9998, + [10028] = 1323, + [10029] = 10029, + [10030] = 10029, + [10031] = 10000, + [10032] = 9982, + [10033] = 9982, + [10034] = 10000, + [10035] = 9982, + [10036] = 10036, + [10037] = 235, + [10038] = 1371, + [10039] = 2297, + [10040] = 9989, + [10041] = 10000, + [10042] = 10000, + [10043] = 2330, + [10044] = 9998, + [10045] = 9994, + [10046] = 333, + [10047] = 10047, + [10048] = 9996, + [10049] = 10049, + [10050] = 10026, + [10051] = 9982, + [10052] = 9982, + [10053] = 10029, + [10054] = 9989, + [10055] = 10055, + [10056] = 9989, + [10057] = 10057, + [10058] = 10016, + [10059] = 9982, + [10060] = 9989, + [10061] = 10000, + [10062] = 10062, + [10063] = 10000, + [10064] = 10064, + [10065] = 10065, + [10066] = 9982, + [10067] = 9982, + [10068] = 9982, + [10069] = 10026, + [10070] = 10070, + [10071] = 2331, + [10072] = 10055, + [10073] = 10029, + [10074] = 10074, + [10075] = 10075, + [10076] = 9982, + [10077] = 10077, + [10078] = 10078, + [10079] = 9998, + [10080] = 10080, + [10081] = 10081, + [10082] = 10082, + [10083] = 10000, + [10084] = 10026, + [10085] = 9982, + [10086] = 10007, + [10087] = 10087, + [10088] = 10029, + [10089] = 9981, + [10090] = 9982, + [10091] = 10026, + [10092] = 9998, + [10093] = 9996, + [10094] = 10094, + [10095] = 10029, + [10096] = 10096, + [10097] = 10026, + [10098] = 10098, + [10099] = 10099, + [10100] = 9982, + [10101] = 10029, + [10102] = 9982, + [10103] = 10103, + [10104] = 10026, + [10105] = 10026, + [10106] = 10106, + [10107] = 10029, + [10108] = 10001, + [10109] = 10026, + [10110] = 333, + [10111] = 9982, + [10112] = 9982, + [10113] = 10029, + [10114] = 10114, + [10115] = 9998, + [10116] = 10026, + [10117] = 9982, + [10118] = 10029, + [10119] = 9982, + [10120] = 10120, + [10121] = 10026, + [10122] = 10120, + [10123] = 10047, + [10124] = 10029, + [10125] = 10026, + [10126] = 9982, + [10127] = 873, + [10128] = 10078, + [10129] = 10029, + [10130] = 234, + [10131] = 10026, + [10132] = 9996, + [10133] = 9996, + [10134] = 10134, + [10135] = 9982, + [10136] = 10026, + [10137] = 10120, + [10138] = 10029, + [10139] = 9989, + [10140] = 10026, + [10141] = 10141, + [10142] = 10120, + [10143] = 10026, + [10144] = 9988, + [10145] = 10145, + [10146] = 10026, + [10147] = 872, + [10148] = 9982, + [10149] = 10149, + [10150] = 10026, + [10151] = 10000, + [10152] = 9998, + [10153] = 10141, + [10154] = 10026, + [10155] = 10026, + [10156] = 237, + [10157] = 1310, + [10158] = 9982, + [10159] = 9982, + [10160] = 10026, + [10161] = 9982, + [10162] = 9989, + [10163] = 10106, + [10164] = 9996, + [10165] = 330, + [10166] = 10026, + [10167] = 9982, + [10168] = 10168, + [10169] = 3087, + [10170] = 9982, + [10171] = 9989, [10172] = 10026, - [10173] = 10173, - [10174] = 9453, - [10175] = 10175, - [10176] = 9444, - [10177] = 9445, - [10178] = 10178, - [10179] = 9460, - [10180] = 1438, - [10181] = 9604, - [10182] = 8976, - [10183] = 9605, - [10184] = 10059, - [10185] = 8992, - [10186] = 1416, - [10187] = 9091, - [10188] = 9007, - [10189] = 9451, - [10190] = 9628, - [10191] = 9630, - [10192] = 9453, - [10193] = 1582, - [10194] = 9019, - [10195] = 1691, - [10196] = 9444, - [10197] = 9031, - [10198] = 9445, - [10199] = 9460, - [10200] = 1592, - [10201] = 1476, - [10202] = 253, - [10203] = 1474, - [10204] = 1113, - [10205] = 405, - [10206] = 10206, - [10207] = 10207, - [10208] = 9477, - [10209] = 10209, - [10210] = 1146, - [10211] = 10207, - [10212] = 10212, - [10213] = 10213, - [10214] = 10213, - [10215] = 10215, - [10216] = 10207, - [10217] = 10217, - [10218] = 10213, - [10219] = 10207, - [10220] = 10220, - [10221] = 403, - [10222] = 406, - [10223] = 10212, + [10173] = 874, + [10174] = 9982, + [10175] = 9982, + [10176] = 10176, + [10177] = 10026, + [10178] = 10134, + [10179] = 10047, + [10180] = 9982, + [10181] = 872, + [10182] = 10026, + [10183] = 9998, + [10184] = 9989, + [10185] = 10120, + [10186] = 10026, + [10187] = 9982, + [10188] = 10029, + [10189] = 10189, + [10190] = 10026, + [10191] = 9996, + [10192] = 9982, + [10193] = 9998, + [10194] = 10026, + [10195] = 10000, + [10196] = 9982, + [10197] = 9996, + [10198] = 10026, + [10199] = 10064, + [10200] = 9998, + [10201] = 10026, + [10202] = 9982, + [10203] = 10203, + [10204] = 330, + [10205] = 10026, + [10206] = 9989, + [10207] = 10021, + [10208] = 9998, + [10209] = 10026, + [10210] = 10210, + [10211] = 10000, + [10212] = 10019, + [10213] = 10026, + [10214] = 9996, + [10215] = 9989, + [10216] = 10026, + [10217] = 9982, + [10218] = 10000, + [10219] = 10026, + [10220] = 10168, + [10221] = 9982, + [10222] = 10026, + [10223] = 10223, [10224] = 10224, - [10225] = 10207, - [10226] = 10207, - [10227] = 10212, - [10228] = 10213, - [10229] = 10229, - [10230] = 406, - [10231] = 2696, - [10232] = 10213, - [10233] = 10207, - [10234] = 412, - [10235] = 425, - [10236] = 10213, - [10237] = 1691, - [10238] = 1146, - [10239] = 10207, - [10240] = 10213, - [10241] = 10212, - [10242] = 10242, - [10243] = 10243, - [10244] = 435, - [10245] = 406, - [10246] = 10207, - [10247] = 10207, - [10248] = 10213, - [10249] = 10249, - [10250] = 10212, - [10251] = 10207, - [10252] = 10252, - [10253] = 10213, - [10254] = 10213, - [10255] = 10207, - [10256] = 10213, - [10257] = 10213, - [10258] = 403, - [10259] = 10259, - [10260] = 431, - [10261] = 10207, - [10262] = 1460, - [10263] = 10213, - [10264] = 364, - [10265] = 10215, - [10266] = 2572, + [10225] = 10026, + [10226] = 10074, + [10227] = 10026, + [10228] = 10228, + [10229] = 10026, + [10230] = 10228, + [10231] = 10026, + [10232] = 10026, + [10233] = 9982, + [10234] = 10000, + [10235] = 10235, + [10236] = 9982, + [10237] = 9982, + [10238] = 10070, + [10239] = 10239, + [10240] = 873, + [10241] = 1310, + [10242] = 9998, + [10243] = 9982, + [10244] = 9996, + [10245] = 10245, + [10246] = 10246, + [10247] = 10247, + [10248] = 10077, + [10249] = 10239, + [10250] = 10223, + [10251] = 9982, + [10252] = 10247, + [10253] = 9989, + [10254] = 9982, + [10255] = 874, + [10256] = 10000, + [10257] = 1323, + [10258] = 9982, + [10259] = 10235, + [10260] = 10000, + [10261] = 9996, + [10262] = 9982, + [10263] = 10029, + [10264] = 10264, + [10265] = 10265, + [10266] = 10266, [10267] = 10267, - [10268] = 10207, - [10269] = 10207, + [10268] = 10268, + [10269] = 10269, [10270] = 10270, - [10271] = 10212, + [10271] = 10268, [10272] = 10272, - [10273] = 10213, - [10274] = 4480, - [10275] = 10275, - [10276] = 10276, - [10277] = 10212, - [10278] = 10278, - [10279] = 10279, - [10280] = 4481, - [10281] = 10207, - [10282] = 405, - [10283] = 431, - [10284] = 1691, - [10285] = 4482, - [10286] = 10207, - [10287] = 1443, - [10288] = 431, - [10289] = 10212, - [10290] = 9487, - [10291] = 10213, - [10292] = 10292, - [10293] = 10212, + [10273] = 10265, + [10274] = 10269, + [10275] = 1648, + [10276] = 10269, + [10277] = 10277, + [10278] = 10269, + [10279] = 10269, + [10280] = 9987, + [10281] = 10267, + [10282] = 10267, + [10283] = 10270, + [10284] = 10264, + [10285] = 10285, + [10286] = 10286, + [10287] = 10287, + [10288] = 10277, + [10289] = 10289, + [10290] = 10285, + [10291] = 10268, + [10292] = 10264, + [10293] = 10264, [10294] = 10294, - [10295] = 364, - [10296] = 10207, + [10295] = 10286, + [10296] = 10287, [10297] = 10297, - [10298] = 10207, - [10299] = 10212, - [10300] = 10213, - [10301] = 10207, - [10302] = 10213, - [10303] = 9581, - [10304] = 10212, - [10305] = 1113, - [10306] = 10213, - [10307] = 10212, - [10308] = 1625, - [10309] = 10213, - [10310] = 1445, - [10311] = 10207, - [10312] = 10213, - [10313] = 10213, + [10298] = 10298, + [10299] = 10277, + [10300] = 10300, + [10301] = 10286, + [10302] = 10272, + [10303] = 10285, + [10304] = 10265, + [10305] = 10305, + [10306] = 10269, + [10307] = 10269, + [10308] = 10308, + [10309] = 10287, + [10310] = 1102, + [10311] = 10311, + [10312] = 10270, + [10313] = 10277, [10314] = 10314, - [10315] = 1625, - [10316] = 10316, - [10317] = 403, - [10318] = 405, - [10319] = 10207, - [10320] = 412, - [10321] = 425, - [10322] = 10213, - [10323] = 10323, - [10324] = 10267, - [10325] = 1625, - [10326] = 1445, - [10327] = 10270, - [10328] = 406, - [10329] = 10272, - [10330] = 1592, + [10315] = 10315, + [10316] = 10267, + [10317] = 10270, + [10318] = 10268, + [10319] = 10267, + [10320] = 10270, + [10321] = 10268, + [10322] = 10272, + [10323] = 10265, + [10324] = 10294, + [10325] = 10269, + [10326] = 10285, + [10327] = 10268, + [10328] = 10272, + [10329] = 10265, + [10330] = 10330, [10331] = 10331, - [10332] = 1700, - [10333] = 10207, - [10334] = 10334, - [10335] = 10213, - [10336] = 10207, - [10337] = 10212, - [10338] = 10213, - [10339] = 10207, - [10340] = 10340, - [10341] = 10212, - [10342] = 412, - [10343] = 425, - [10344] = 10213, - [10345] = 10345, - [10346] = 249, - [10347] = 10207, - [10348] = 10207, - [10349] = 10213, - [10350] = 10212, - [10351] = 10213, - [10352] = 403, - [10353] = 10270, - [10354] = 4155, - [10355] = 10355, - [10356] = 7292, - [10357] = 1691, - [10358] = 1146, - [10359] = 10207, - [10360] = 403, - [10361] = 10270, - [10362] = 10207, - [10363] = 10207, - [10364] = 1146, - [10365] = 10212, - [10366] = 1443, - [10367] = 10213, - [10368] = 435, - [10369] = 10270, - [10370] = 10370, - [10371] = 4362, - [10372] = 4248, - [10373] = 10175, - [10374] = 10270, - [10375] = 10213, - [10376] = 4439, + [10332] = 10264, + [10333] = 10285, + [10334] = 1102, + [10335] = 10287, + [10336] = 10277, + [10337] = 10287, + [10338] = 10285, + [10339] = 10339, + [10340] = 10268, + [10341] = 10277, + [10342] = 1730, + [10343] = 10269, + [10344] = 1480, + [10345] = 10267, + [10346] = 10270, + [10347] = 888, + [10348] = 10267, + [10349] = 10270, + [10350] = 10268, + [10351] = 10272, + [10352] = 10265, + [10353] = 10268, + [10354] = 10269, + [10355] = 10272, + [10356] = 10297, + [10357] = 10265, + [10358] = 10265, + [10359] = 10359, + [10360] = 10269, + [10361] = 10264, + [10362] = 10294, + [10363] = 10287, + [10364] = 10277, + [10365] = 10267, + [10366] = 10285, + [10367] = 10270, + [10368] = 10268, + [10369] = 10272, + [10370] = 10265, + [10371] = 10371, + [10372] = 10269, + [10373] = 10272, + [10374] = 10264, + [10375] = 10264, + [10376] = 10267, [10377] = 10270, - [10378] = 4365, - [10379] = 1463, - [10380] = 10270, - [10381] = 1466, - [10382] = 10270, - [10383] = 4367, - [10384] = 4499, - [10385] = 10270, - [10386] = 10270, - [10387] = 4500, - [10388] = 10270, - [10389] = 10207, - [10390] = 4368, - [10391] = 10270, - [10392] = 4501, - [10393] = 10212, - [10394] = 10270, - [10395] = 10395, - [10396] = 10270, - [10397] = 10213, - [10398] = 4371, - [10399] = 10270, - [10400] = 10270, - [10401] = 9488, - [10402] = 10270, - [10403] = 10403, - [10404] = 10331, - [10405] = 10270, - [10406] = 10270, - [10407] = 10407, - [10408] = 10408, - [10409] = 9454, - [10410] = 9455, - [10411] = 10270, - [10412] = 10412, - [10413] = 10413, - [10414] = 10270, - [10415] = 10213, - [10416] = 403, - [10417] = 10270, - [10418] = 10334, - [10419] = 10270, - [10420] = 10420, - [10421] = 10270, - [10422] = 10270, - [10423] = 10207, - [10424] = 10166, - [10425] = 10270, - [10426] = 1582, - [10427] = 10427, - [10428] = 10212, - [10429] = 10270, - [10430] = 10270, - [10431] = 10270, - [10432] = 10213, - [10433] = 10270, - [10434] = 10270, - [10435] = 1582, - [10436] = 10270, - [10437] = 1592, - [10438] = 10270, - [10439] = 10270, - [10440] = 9456, - [10441] = 10270, - [10442] = 10270, - [10443] = 10207, - [10444] = 10270, - [10445] = 10445, - [10446] = 10446, - [10447] = 10171, - [10448] = 10267, - [10449] = 2069, - [10450] = 10213, - [10451] = 9810, - [10452] = 10207, - [10453] = 9811, - [10454] = 10212, - [10455] = 10213, - [10456] = 2572, + [10378] = 10268, + [10379] = 10272, + [10380] = 10265, + [10381] = 10381, + [10382] = 10269, + [10383] = 10265, + [10384] = 10384, + [10385] = 10286, + [10386] = 10264, + [10387] = 10286, + [10388] = 10264, + [10389] = 10264, + [10390] = 10390, + [10391] = 10391, + [10392] = 10286, + [10393] = 10287, + [10394] = 10394, + [10395] = 10277, + [10396] = 10287, + [10397] = 10285, + [10398] = 10277, + [10399] = 10399, + [10400] = 10287, + [10401] = 10285, + [10402] = 10267, + [10403] = 10286, + [10404] = 10268, + [10405] = 10405, + [10406] = 10406, + [10407] = 10270, + [10408] = 10305, + [10409] = 10268, + [10410] = 10287, + [10411] = 10267, + [10412] = 10270, + [10413] = 10268, + [10414] = 10272, + [10415] = 10265, + [10416] = 10416, + [10417] = 10287, + [10418] = 10269, + [10419] = 10419, + [10420] = 10294, + [10421] = 10277, + [10422] = 10277, + [10423] = 10277, + [10424] = 10285, + [10425] = 10285, + [10426] = 10264, + [10427] = 10285, + [10428] = 10287, + [10429] = 10277, + [10430] = 10264, + [10431] = 10285, + [10432] = 10359, + [10433] = 10419, + [10434] = 10434, + [10435] = 10272, + [10436] = 10265, + [10437] = 1731, + [10438] = 10391, + [10439] = 10267, + [10440] = 10269, + [10441] = 10286, + [10442] = 10267, + [10443] = 10270, + [10444] = 10268, + [10445] = 10272, + [10446] = 10265, + [10447] = 10447, + [10448] = 10269, + [10449] = 10269, + [10450] = 10450, + [10451] = 10294, + [10452] = 10272, + [10453] = 10285, + [10454] = 10267, + [10455] = 1714, + [10456] = 10270, [10457] = 10457, - [10458] = 10458, - [10459] = 10459, - [10460] = 10460, - [10461] = 10461, + [10458] = 10264, + [10459] = 10267, + [10460] = 10287, + [10461] = 10277, [10462] = 10462, - [10463] = 10458, + [10463] = 10270, [10464] = 10464, - [10465] = 10461, - [10466] = 10462, - [10467] = 10467, - [10468] = 10457, - [10469] = 10469, - [10470] = 403, - [10471] = 10471, - [10472] = 10472, - [10473] = 10473, + [10465] = 10285, + [10466] = 10268, + [10467] = 10272, + [10468] = 10265, + [10469] = 10268, + [10470] = 10470, + [10471] = 10269, + [10472] = 10294, + [10473] = 10272, [10474] = 10474, - [10475] = 10457, - [10476] = 1625, - [10477] = 10477, - [10478] = 10478, - [10479] = 10479, - [10480] = 10480, - [10481] = 10457, - [10482] = 10482, - [10483] = 10483, + [10475] = 10267, + [10476] = 10270, + [10477] = 10268, + [10478] = 10405, + [10479] = 10272, + [10480] = 10265, + [10481] = 10265, + [10482] = 10269, + [10483] = 1715, [10484] = 10484, - [10485] = 10457, - [10486] = 10486, - [10487] = 10457, - [10488] = 10457, - [10489] = 10489, - [10490] = 10490, - [10491] = 10491, - [10492] = 10457, - [10493] = 10493, + [10485] = 10286, + [10486] = 10264, + [10487] = 10297, + [10488] = 10488, + [10489] = 10286, + [10490] = 10264, + [10491] = 10297, + [10492] = 10287, + [10493] = 10287, [10494] = 10494, - [10495] = 10495, - [10496] = 10496, - [10497] = 10469, - [10498] = 10457, + [10495] = 10277, + [10496] = 10277, + [10497] = 10285, + [10498] = 10269, [10499] = 10499, - [10500] = 10461, - [10501] = 10501, - [10502] = 10502, - [10503] = 10458, - [10504] = 10462, - [10505] = 10472, - [10506] = 10457, - [10507] = 10461, - [10508] = 10462, - [10509] = 1691, - [10510] = 10510, - [10511] = 10457, - [10512] = 10499, - [10513] = 252, - [10514] = 10457, - [10515] = 10477, - [10516] = 10457, - [10517] = 10502, - [10518] = 10473, - [10519] = 10457, - [10520] = 10458, - [10521] = 251, - [10522] = 10522, - [10523] = 10457, + [10500] = 10267, + [10501] = 10270, + [10502] = 10268, + [10503] = 10285, + [10504] = 10504, + [10505] = 10505, + [10506] = 10294, + [10507] = 10507, + [10508] = 10508, + [10509] = 10272, + [10510] = 10285, + [10511] = 10264, + [10512] = 10265, + [10513] = 10513, + [10514] = 10305, + [10515] = 10287, + [10516] = 10267, + [10517] = 10270, + [10518] = 10268, + [10519] = 10272, + [10520] = 10265, + [10521] = 10269, + [10522] = 10269, + [10523] = 10267, [10524] = 10524, - [10525] = 10457, - [10526] = 10457, - [10527] = 10457, - [10528] = 10457, - [10529] = 10483, - [10530] = 10461, - [10531] = 10502, - [10532] = 10458, - [10533] = 10457, - [10534] = 10462, - [10535] = 10535, - [10536] = 10461, - [10537] = 10462, - [10538] = 10538, - [10539] = 250, - [10540] = 2675, - [10541] = 2572, - [10542] = 2689, - [10543] = 10543, - [10544] = 10473, - [10545] = 10457, - [10546] = 1691, - [10547] = 10490, - [10548] = 1130, - [10549] = 10549, - [10550] = 10490, - [10551] = 10457, - [10552] = 10552, - [10553] = 10457, - [10554] = 10554, - [10555] = 10555, - [10556] = 10457, - [10557] = 10457, - [10558] = 10478, - [10559] = 10473, - [10560] = 10457, - [10561] = 10490, - [10562] = 406, - [10563] = 10563, - [10564] = 10457, - [10565] = 10457, - [10566] = 10457, - [10567] = 10474, - [10568] = 10457, - [10569] = 10480, - [10570] = 10502, - [10571] = 10458, - [10572] = 10473, - [10573] = 10457, - [10574] = 10457, - [10575] = 10490, - [10576] = 10576, - [10577] = 10491, - [10578] = 10461, - [10579] = 10462, - [10580] = 10457, - [10581] = 10462, - [10582] = 406, - [10583] = 10493, - [10584] = 10457, - [10585] = 10494, - [10586] = 10473, - [10587] = 1625, - [10588] = 10457, - [10589] = 10490, - [10590] = 10457, - [10591] = 10473, + [10525] = 10525, + [10526] = 10399, + [10527] = 10330, + [10528] = 10528, + [10529] = 10277, + [10530] = 10286, + [10531] = 10270, + [10532] = 10264, + [10533] = 10268, + [10534] = 10311, + [10535] = 10287, + [10536] = 10294, + [10537] = 10264, + [10538] = 10264, + [10539] = 10285, + [10540] = 10287, + [10541] = 10267, + [10542] = 10264, + [10543] = 10270, + [10544] = 10268, + [10545] = 10272, + [10546] = 10265, + [10547] = 10267, + [10548] = 10286, + [10549] = 10394, + [10550] = 10270, + [10551] = 10268, + [10552] = 10265, + [10553] = 10269, + [10554] = 10419, + [10555] = 10272, + [10556] = 10286, + [10557] = 10287, + [10558] = 10265, + [10559] = 10406, + [10560] = 10286, + [10561] = 10269, + [10562] = 10305, + [10563] = 10264, + [10564] = 10277, + [10565] = 10287, + [10566] = 10285, + [10567] = 10277, + [10568] = 10267, + [10569] = 10270, + [10570] = 10269, + [10571] = 10268, + [10572] = 10272, + [10573] = 10484, + [10574] = 10265, + [10575] = 10267, + [10576] = 10270, + [10577] = 10268, + [10578] = 10289, + [10579] = 10265, + [10580] = 10580, + [10581] = 10269, + [10582] = 10394, + [10583] = 10583, + [10584] = 10269, + [10585] = 10585, + [10586] = 10285, + [10587] = 10505, + [10588] = 10285, + [10589] = 10264, + [10590] = 10287, + [10591] = 10285, [10592] = 10592, - [10593] = 10457, - [10594] = 10490, + [10593] = 10277, + [10594] = 10277, [10595] = 10595, - [10596] = 10473, - [10597] = 1130, - [10598] = 10457, + [10596] = 10264, + [10597] = 10285, + [10598] = 10598, [10599] = 10599, - [10600] = 10490, - [10601] = 10473, - [10602] = 10457, - [10603] = 10457, - [10604] = 10604, - [10605] = 10490, - [10606] = 10457, - [10607] = 10473, - [10608] = 10457, - [10609] = 10490, - [10610] = 10473, - [10611] = 10489, - [10612] = 10490, - [10613] = 10457, - [10614] = 10473, - [10615] = 10615, - [10616] = 1700, - [10617] = 10461, - [10618] = 10490, - [10619] = 10473, - [10620] = 10599, - [10621] = 10621, - [10622] = 10457, - [10623] = 10490, - [10624] = 10457, - [10625] = 10473, - [10626] = 10499, - [10627] = 10457, - [10628] = 10490, - [10629] = 10473, - [10630] = 10543, - [10631] = 10631, - [10632] = 10632, - [10633] = 10490, - [10634] = 10502, - [10635] = 10458, - [10636] = 10473, - [10637] = 10457, - [10638] = 10489, - [10639] = 10473, - [10640] = 10502, - [10641] = 10461, - [10642] = 10462, - [10643] = 10643, - [10644] = 10473, - [10645] = 10457, - [10646] = 2572, - [10647] = 10502, - [10648] = 10458, - [10649] = 10473, - [10650] = 1139, - [10651] = 10499, - [10652] = 10552, - [10653] = 1138, - [10654] = 10473, - [10655] = 10457, - [10656] = 10458, - [10657] = 10657, + [10600] = 10270, + [10601] = 10268, + [10602] = 10265, + [10603] = 10269, + [10604] = 10286, + [10605] = 10287, + [10606] = 10394, + [10607] = 10277, + [10608] = 10264, + [10609] = 10264, + [10610] = 10285, + [10611] = 10285, + [10612] = 10311, + [10613] = 10286, + [10614] = 10287, + [10615] = 10277, + [10616] = 10270, + [10617] = 10268, + [10618] = 10618, + [10619] = 10265, + [10620] = 10620, + [10621] = 10269, + [10622] = 10269, + [10623] = 10623, + [10624] = 10297, + [10625] = 10599, + [10626] = 10285, + [10627] = 10627, + [10628] = 1632, + [10629] = 10265, + [10630] = 10264, + [10631] = 10285, + [10632] = 10528, + [10633] = 10286, + [10634] = 10287, + [10635] = 10394, + [10636] = 10268, + [10637] = 10265, + [10638] = 10269, + [10639] = 10623, + [10640] = 10277, + [10641] = 10641, + [10642] = 10359, + [10643] = 10394, + [10644] = 10264, + [10645] = 10285, + [10646] = 10286, + [10647] = 10394, + [10648] = 10268, + [10649] = 10265, + [10650] = 10269, + [10651] = 10394, + [10652] = 10652, + [10653] = 10285, + [10654] = 888, + [10655] = 10264, + [10656] = 10269, + [10657] = 10285, [10658] = 10658, - [10659] = 10659, - [10660] = 10473, - [10661] = 10502, - [10662] = 10662, - [10663] = 10496, - [10664] = 10502, - [10665] = 10473, - [10666] = 10458, - [10667] = 10457, - [10668] = 10524, - [10669] = 10473, - [10670] = 10457, - [10671] = 10671, + [10659] = 10394, + [10660] = 10311, + [10661] = 10308, + [10662] = 10268, + [10663] = 10269, + [10664] = 10305, + [10665] = 10464, + [10666] = 10297, + [10667] = 10394, + [10668] = 10264, + [10669] = 10285, + [10670] = 10670, + [10671] = 10264, [10672] = 10672, - [10673] = 10473, - [10674] = 10535, - [10675] = 10502, - [10676] = 10473, - [10677] = 10458, - [10678] = 10473, - [10679] = 10457, - [10680] = 10458, - [10681] = 10499, - [10682] = 10473, - [10683] = 10457, - [10684] = 10461, - [10685] = 2751, - [10686] = 10461, - [10687] = 10457, - [10688] = 10473, - [10689] = 10604, - [10690] = 10473, - [10691] = 10462, - [10692] = 10473, - [10693] = 10502, - [10694] = 10501, - [10695] = 10473, - [10696] = 10502, - [10697] = 10502, - [10698] = 10458, - [10699] = 10473, - [10700] = 10700, - [10701] = 10502, - [10702] = 10473, - [10703] = 10458, - [10704] = 10461, - [10705] = 10473, - [10706] = 10462, - [10707] = 10461, - [10708] = 10462, - [10709] = 10473, - [10710] = 1138, - [10711] = 10461, - [10712] = 10473, - [10713] = 403, - [10714] = 10473, - [10715] = 10462, - [10716] = 10716, - [10717] = 10473, - [10718] = 10718, - [10719] = 10719, - [10720] = 10473, - [10721] = 10473, - [10722] = 10722, - [10723] = 10473, - [10724] = 10473, - [10725] = 10462, - [10726] = 10473, - [10727] = 2752, - [10728] = 10728, - [10729] = 10716, - [10730] = 10461, - [10731] = 10457, - [10732] = 10462, - [10733] = 10718, - [10734] = 1700, - [10735] = 10457, - [10736] = 10728, - [10737] = 10459, - [10738] = 10479, - [10739] = 10457, - [10740] = 10471, - [10741] = 10457, - [10742] = 1139, - [10743] = 10502, - [10744] = 10458, - [10745] = 10457, - [10746] = 10746, - [10747] = 10747, - [10748] = 10748, - [10749] = 10747, - [10750] = 10750, - [10751] = 10751, + [10673] = 1136, + [10674] = 10268, + [10675] = 10394, + [10676] = 10269, + [10677] = 10277, + [10678] = 10267, + [10679] = 10679, + [10680] = 10270, + [10681] = 10264, + [10682] = 10682, + [10683] = 10394, + [10684] = 10580, + [10685] = 10285, + [10686] = 10268, + [10687] = 10272, + [10688] = 10268, + [10689] = 10269, + [10690] = 10265, + [10691] = 10394, + [10692] = 10297, + [10693] = 10693, + [10694] = 10269, + [10695] = 10264, + [10696] = 10285, + [10697] = 10266, + [10698] = 10297, + [10699] = 10394, + [10700] = 1649, + [10701] = 10264, + [10702] = 10268, + [10703] = 10703, + [10704] = 10286, + [10705] = 10269, + [10706] = 10270, + [10707] = 10394, + [10708] = 10305, + [10709] = 10297, + [10710] = 10297, + [10711] = 10285, + [10712] = 10267, + [10713] = 10270, + [10714] = 10394, + [10715] = 10268, + [10716] = 10264, + [10717] = 10268, + [10718] = 10294, + [10719] = 10272, + [10720] = 10265, + [10721] = 10394, + [10722] = 10269, + [10723] = 10264, + [10724] = 10286, + [10725] = 10287, + [10726] = 10287, + [10727] = 10277, + [10728] = 10394, + [10729] = 10269, + [10730] = 1136, + [10731] = 10268, + [10732] = 10494, + [10733] = 10277, + [10734] = 10269, + [10735] = 10394, + [10736] = 10285, + [10737] = 10737, + [10738] = 10267, + [10739] = 10739, + [10740] = 10270, + [10741] = 10268, + [10742] = 10394, + [10743] = 10269, + [10744] = 10268, + [10745] = 933, + [10746] = 10272, + [10747] = 1684, + [10748] = 10265, + [10749] = 10394, + [10750] = 10268, + [10751] = 10269, [10752] = 10752, - [10753] = 10753, - [10754] = 10748, - [10755] = 10747, - [10756] = 10753, - [10757] = 10757, - [10758] = 10758, - [10759] = 10759, - [10760] = 10747, - [10761] = 10761, - [10762] = 10759, - [10763] = 10750, - [10764] = 10764, - [10765] = 10747, - [10766] = 10766, - [10767] = 10759, - [10768] = 10761, - [10769] = 10769, - [10770] = 10761, - [10771] = 10771, - [10772] = 10750, - [10773] = 10758, - [10774] = 10747, - [10775] = 1768, - [10776] = 10753, - [10777] = 10777, - [10778] = 10753, - [10779] = 10771, - [10780] = 10780, - [10781] = 1204, - [10782] = 10758, - [10783] = 10759, + [10753] = 10297, + [10754] = 10269, + [10755] = 10267, + [10756] = 10394, + [10757] = 10270, + [10758] = 10268, + [10759] = 10269, + [10760] = 10268, + [10761] = 10294, + [10762] = 10264, + [10763] = 10394, + [10764] = 10267, + [10765] = 10270, + [10766] = 10268, + [10767] = 10268, + [10768] = 10269, + [10769] = 10286, + [10770] = 10394, + [10771] = 10264, + [10772] = 10294, + [10773] = 10286, + [10774] = 10287, + [10775] = 10595, + [10776] = 10287, + [10777] = 10394, + [10778] = 10277, + [10779] = 10268, + [10780] = 10269, + [10781] = 10277, + [10782] = 10272, + [10783] = 10394, [10784] = 10784, - [10785] = 10761, - [10786] = 10759, + [10785] = 10265, + [10786] = 10285, [10787] = 10787, - [10788] = 10761, - [10789] = 10789, - [10790] = 10790, - [10791] = 10748, - [10792] = 10757, - [10793] = 10771, - [10794] = 10777, - [10795] = 10753, - [10796] = 10747, - [10797] = 10789, - [10798] = 10790, - [10799] = 10748, - [10800] = 10757, - [10801] = 10771, - [10802] = 10750, - [10803] = 10758, - [10804] = 10747, - [10805] = 10750, - [10806] = 10753, - [10807] = 10807, - [10808] = 10750, - [10809] = 10750, - [10810] = 10810, - [10811] = 10753, - [10812] = 10758, - [10813] = 10753, - [10814] = 10789, - [10815] = 10759, - [10816] = 10758, - [10817] = 10759, - [10818] = 10761, - [10819] = 10761, - [10820] = 10820, - [10821] = 10750, - [10822] = 10753, - [10823] = 10758, - [10824] = 10759, - [10825] = 1774, - [10826] = 10761, - [10827] = 10789, - [10828] = 10750, - [10829] = 10750, - [10830] = 10759, - [10831] = 10761, - [10832] = 10832, - [10833] = 10833, - [10834] = 10834, - [10835] = 10787, - [10836] = 10748, - [10837] = 10750, - [10838] = 10838, - [10839] = 10750, - [10840] = 10759, - [10841] = 10841, - [10842] = 10761, - [10843] = 10789, - [10844] = 10790, - [10845] = 10761, - [10846] = 10846, - [10847] = 10748, - [10848] = 10757, - [10849] = 10771, - [10850] = 10753, - [10851] = 10851, - [10852] = 10747, - [10853] = 10789, - [10854] = 10790, - [10855] = 10748, - [10856] = 10757, - [10857] = 10771, - [10858] = 10858, - [10859] = 10747, - [10860] = 10747, - [10861] = 10861, - [10862] = 10753, - [10863] = 10757, - [10864] = 10758, - [10865] = 10759, - [10866] = 10753, - [10867] = 10753, - [10868] = 10758, - [10869] = 10759, - [10870] = 10761, - [10871] = 10789, - [10872] = 10750, - [10873] = 10873, - [10874] = 10759, - [10875] = 10761, - [10876] = 10790, - [10877] = 10877, - [10878] = 10750, - [10879] = 10748, - [10880] = 10880, - [10881] = 10881, - [10882] = 10882, - [10883] = 10883, - [10884] = 10884, - [10885] = 1770, - [10886] = 10886, - [10887] = 10750, - [10888] = 10757, - [10889] = 10889, - [10890] = 10771, - [10891] = 10851, - [10892] = 10892, - [10893] = 10758, - [10894] = 10789, - [10895] = 10790, - [10896] = 10748, - [10897] = 10897, - [10898] = 10757, - [10899] = 10886, - [10900] = 10771, - [10901] = 1771, - [10902] = 10748, - [10903] = 10903, - [10904] = 10820, - [10905] = 10751, - [10906] = 10906, - [10907] = 10747, - [10908] = 10747, - [10909] = 1772, - [10910] = 1212, - [10911] = 10761, - [10912] = 1773, - [10913] = 10771, - [10914] = 10789, - [10915] = 10789, - [10916] = 10790, - [10917] = 10753, - [10918] = 10918, - [10919] = 10748, - [10920] = 10757, - [10921] = 10771, - [10922] = 10807, - [10923] = 10759, - [10924] = 10789, - [10925] = 10747, - [10926] = 10761, - [10927] = 10790, - [10928] = 10790, - [10929] = 10748, - [10930] = 10930, - [10931] = 1412, - [10932] = 10780, - [10933] = 10750, - [10934] = 10753, - [10935] = 10886, - [10936] = 10757, - [10937] = 10758, - [10938] = 10759, - [10939] = 10761, - [10940] = 10789, - [10941] = 10790, - [10942] = 10873, - [10943] = 10943, - [10944] = 10750, - [10945] = 10748, - [10946] = 10780, - [10947] = 10757, - [10948] = 10771, - [10949] = 10748, - [10950] = 10747, - [10951] = 10747, - [10952] = 10771, - [10953] = 10753, - [10954] = 10790, - [10955] = 10759, - [10956] = 10789, - [10957] = 10790, - [10958] = 10748, - [10959] = 10753, - [10960] = 10747, - [10961] = 10758, - [10962] = 10807, - [10963] = 10963, - [10964] = 10771, - [10965] = 10759, - [10966] = 10761, - [10967] = 10789, - [10968] = 10747, - [10969] = 10789, - [10970] = 10790, - [10971] = 10750, - [10972] = 10748, - [10973] = 10761, - [10974] = 10757, - [10975] = 10747, - [10976] = 10753, - [10977] = 10757, - [10978] = 10761, - [10979] = 10810, - [10980] = 10750, - [10981] = 10771, - [10982] = 10753, - [10983] = 1783, - [10984] = 1784, - [10985] = 10750, - [10986] = 10747, - [10987] = 10758, - [10988] = 10886, - [10989] = 10759, - [10990] = 10761, - [10991] = 10771, - [10992] = 10759, - [10993] = 10884, - [10994] = 10789, - [10995] = 10790, - [10996] = 10748, - [10997] = 10757, - [10998] = 10771, - [10999] = 10789, - [11000] = 10747, - [11001] = 10790, - [11002] = 10748, - [11003] = 10771, - [11004] = 10750, - [11005] = 10886, - [11006] = 10747, - [11007] = 10790, - [11008] = 10753, - [11009] = 10750, - [11010] = 10789, - [11011] = 10790, - [11012] = 10748, - [11013] = 10780, - [11014] = 10757, - [11015] = 10771, - [11016] = 10758, - [11017] = 10747, - [11018] = 10790, - [11019] = 10759, - [11020] = 10761, - [11021] = 10886, - [11022] = 10750, - [11023] = 10761, - [11024] = 10753, - [11025] = 10753, - [11026] = 11026, - [11027] = 10758, - [11028] = 10807, - [11029] = 10759, - [11030] = 10761, - [11031] = 10748, - [11032] = 10750, - [11033] = 10748, - [11034] = 10903, - [11035] = 10750, - [11036] = 10780, - [11037] = 10757, - [11038] = 10753, - [11039] = 10790, - [11040] = 10748, - [11041] = 10771, - [11042] = 10747, - [11043] = 10757, - [11044] = 1767, - [11045] = 11045, - [11046] = 10789, - [11047] = 1382, - [11048] = 10790, - [11049] = 10892, - [11050] = 10753, - [11051] = 10758, - [11052] = 10750, - [11053] = 10759, - [11054] = 10918, - [11055] = 1199, - [11056] = 10761, - [11057] = 10748, - [11058] = 10757, - [11059] = 11059, - [11060] = 10771, - [11061] = 10790, - [11062] = 10748, - [11063] = 10771, - [11064] = 10747, - [11065] = 10750, - [11066] = 11066, - [11067] = 1765, - [11068] = 11068, - [11069] = 10886, - [11070] = 11070, - [11071] = 10747, - [11072] = 10832, - [11073] = 10789, - [11074] = 10886, - [11075] = 10790, - [11076] = 10748, - [11077] = 10757, - [11078] = 10753, - [11079] = 10789, - [11080] = 10790, - [11081] = 10748, - [11082] = 10892, - [11083] = 10780, - [11084] = 10780, - [11085] = 10750, - [11086] = 10757, - [11087] = 10771, - [11088] = 11088, - [11089] = 10771, - [11090] = 10747, - [11091] = 10747, - [11092] = 11092, - [11093] = 10747, - [11094] = 11094, - [11095] = 10748, - [11096] = 10771, - [11097] = 10747, - [11098] = 10753, - [11099] = 10747, - [11100] = 10758, - [11101] = 10759, - [11102] = 10761, - [11103] = 10883, - [11104] = 11104, - [11105] = 10753, - [11106] = 10892, - [11107] = 10750, - [11108] = 11108, - [11109] = 10858, - [11110] = 10750, - [11111] = 10748, - [11112] = 10771, - [11113] = 10747, - [11114] = 10789, - [11115] = 10750, - [11116] = 10789, - [11117] = 10753, - [11118] = 10753, - [11119] = 10750, - [11120] = 10757, - [11121] = 10771, - [11122] = 10748, - [11123] = 10747, - [11124] = 10758, - [11125] = 10759, - [11126] = 1382, - [11127] = 10892, - [11128] = 10761, - [11129] = 10757, - [11130] = 10753, - [11131] = 10790, - [11132] = 10750, - [11133] = 10753, - [11134] = 11134, - [11135] = 10892, - [11136] = 10750, - [11137] = 10747, - [11138] = 10759, - [11139] = 10748, - [11140] = 1781, - [11141] = 10747, - [11142] = 1782, - [11143] = 10892, - [11144] = 10787, - [11145] = 10761, - [11146] = 10790, - [11147] = 10753, - [11148] = 10750, - [11149] = 10750, - [11150] = 10758, - [11151] = 10892, - [11152] = 10886, - [11153] = 10771, - [11154] = 10748, - [11155] = 10747, - [11156] = 10748, - [11157] = 10757, - [11158] = 11158, - [11159] = 10892, - [11160] = 10771, - [11161] = 10753, - [11162] = 10750, - [11163] = 10789, - [11164] = 10790, - [11165] = 10748, - [11166] = 10748, - [11167] = 10892, - [11168] = 10780, - [11169] = 10790, - [11170] = 10748, - [11171] = 10757, - [11172] = 10771, - [11173] = 10747, - [11174] = 10746, - [11175] = 10892, - [11176] = 10747, - [11177] = 11177, - [11178] = 10897, - [11179] = 10747, - [11180] = 10789, - [11181] = 10748, - [11182] = 11182, - [11183] = 10892, - [11184] = 10886, - [11185] = 10747, - [11186] = 10780, - [11187] = 10930, - [11188] = 10789, - [11189] = 11189, - [11190] = 10789, - [11191] = 10892, - [11192] = 10753, - [11193] = 10748, - [11194] = 10747, - [11195] = 10790, - [11196] = 10758, - [11197] = 10918, - [11198] = 10759, - [11199] = 10892, - [11200] = 10761, - [11201] = 10789, - [11202] = 10748, - [11203] = 10757, - [11204] = 10748, - [11205] = 10747, - [11206] = 10771, - [11207] = 10892, - [11208] = 10790, - [11209] = 10748, - [11210] = 10769, - [11211] = 10750, - [11212] = 10747, - [11213] = 11213, - [11214] = 10892, - [11215] = 11215, - [11216] = 10748, - [11217] = 10747, - [11218] = 10757, - [11219] = 10771, - [11220] = 10615, - [11221] = 10892, - [11222] = 10759, - [11223] = 10747, - [11224] = 10753, - [11225] = 10748, - [11226] = 10747, - [11227] = 10748, - [11228] = 10892, - [11229] = 10807, - [11230] = 10886, - [11231] = 10790, - [11232] = 11045, - [11233] = 11233, - [11234] = 10748, - [11235] = 10892, - [11236] = 1212, - [11237] = 10747, - [11238] = 10903, - [11239] = 10753, - [11240] = 11240, - [11241] = 10780, - [11242] = 10892, - [11243] = 10758, - [11244] = 10748, - [11245] = 10747, - [11246] = 10759, - [11247] = 10753, - [11248] = 10748, - [11249] = 10892, - [11250] = 10880, - [11251] = 10761, - [11252] = 10759, - [11253] = 11253, - [11254] = 10886, - [11255] = 10748, - [11256] = 10892, - [11257] = 10747, - [11258] = 10761, - [11259] = 10750, - [11260] = 10886, - [11261] = 11261, - [11262] = 11262, - [11263] = 10892, - [11264] = 10758, - [11265] = 10750, - [11266] = 10748, - [11267] = 10747, - [11268] = 10789, - [11269] = 10790, - [11270] = 10892, - [11271] = 10748, - [11272] = 10766, - [11273] = 1199, - [11274] = 10780, - [11275] = 10757, - [11276] = 10771, - [11277] = 10892, - [11278] = 10789, - [11279] = 10757, - [11280] = 11280, - [11281] = 10747, - [11282] = 1412, - [11283] = 10790, - [11284] = 10892, - [11285] = 10748, - [11286] = 10747, - [11287] = 11287, - [11288] = 11288, - [11289] = 10771, - [11290] = 10759, - [11291] = 10892, - [11292] = 10886, - [11293] = 10748, - [11294] = 10747, - [11295] = 10753, - [11296] = 10748, - [11297] = 10892, - [11298] = 10758, - [11299] = 10761, - [11300] = 10789, - [11301] = 10759, - [11302] = 10761, - [11303] = 10892, - [11304] = 11304, - [11305] = 10787, - [11306] = 10771, - [11307] = 10757, - [11308] = 10892, - [11309] = 10748, - [11310] = 10747, - [11311] = 10753, - [11312] = 10790, - [11313] = 10892, - [11314] = 10753, - [11315] = 10753, - [11316] = 10750, - [11317] = 10758, - [11318] = 10892, - [11319] = 10748, - [11320] = 10747, - [11321] = 10771, - [11322] = 11322, - [11323] = 10892, - [11324] = 10748, - [11325] = 10789, - [11326] = 10790, - [11327] = 10748, - [11328] = 10748, - [11329] = 10747, - [11330] = 10789, - [11331] = 10780, - [11332] = 10757, - [11333] = 10747, - [11334] = 10790, - [11335] = 10771, - [11336] = 10748, - [11337] = 10747, - [11338] = 10758, - [11339] = 10759, - [11340] = 10747, - [11341] = 11341, - [11342] = 10748, - [11343] = 10807, - [11344] = 10748, - [11345] = 11345, - [11346] = 10747, - [11347] = 10761, - [11348] = 10757, - [11349] = 11349, - [11350] = 10963, - [11351] = 10780, - [11352] = 10746, - [11353] = 11353, - [11354] = 10789, - [11355] = 10834, - [11356] = 10748, - [11357] = 10747, - [11358] = 10790, - [11359] = 10753, - [11360] = 11182, - [11361] = 10771, - [11362] = 10748, - [11363] = 10892, - [11364] = 10877, - [11365] = 10758, - [11366] = 10759, - [11367] = 10886, - [11368] = 10761, - [11369] = 10757, - [11370] = 10750, - [11371] = 10789, - [11372] = 10748, - [11373] = 10789, - [11374] = 10790, - [11375] = 10748, - [11376] = 10780, - [11377] = 10757, - [11378] = 10771, - [11379] = 11379, - [11380] = 10747, - [11381] = 10747, - [11382] = 11322, - [11383] = 10771, - [11384] = 10790, - [11385] = 11385, - [11386] = 10757, - [11387] = 10747, - [11388] = 10753, - [11389] = 10747, - [11390] = 10748, - [11391] = 10780, - [11392] = 10758, - [11393] = 10746, - [11394] = 10746, - [11395] = 10746, - [11396] = 10746, - [11397] = 10746, - [11398] = 10746, - [11399] = 10746, - [11400] = 10746, - [11401] = 10746, - [11402] = 10746, - [11403] = 10746, - [11404] = 10746, - [11405] = 10746, - [11406] = 10746, - [11407] = 10746, - [11408] = 10746, - [11409] = 10746, - [11410] = 10746, - [11411] = 1204, - [11412] = 10746, - [11413] = 10746, - [11414] = 10746, - [11415] = 10746, - [11416] = 10759, - [11417] = 10761, - [11418] = 10748, - [11419] = 10747, - [11420] = 10771, - [11421] = 10963, - [11422] = 10747, - [11423] = 10750, - [11424] = 11424, - [11425] = 10889, - [11426] = 11426, + [10788] = 10268, + [10789] = 10394, + [10790] = 10269, + [10791] = 10267, + [10792] = 10270, + [10793] = 10268, + [10794] = 10394, + [10795] = 10272, + [10796] = 10265, + [10797] = 10268, + [10798] = 10285, + [10799] = 10394, + [10800] = 10269, + [10801] = 933, + [10802] = 10267, + [10803] = 10269, + [10804] = 10394, + [10805] = 10269, + [10806] = 10272, + [10807] = 10268, + [10808] = 10269, + [10809] = 10394, + [10810] = 10265, + [10811] = 10270, + [10812] = 936, + [10813] = 10269, + [10814] = 10269, + [10815] = 10268, + [10816] = 10269, + [10817] = 10264, + [10818] = 10268, + [10819] = 10267, + [10820] = 10286, + [10821] = 10287, + [10822] = 10268, + [10823] = 10269, + [10824] = 10277, + [10825] = 10294, + [10826] = 10270, + [10827] = 10285, + [10828] = 10828, + [10829] = 10268, + [10830] = 10269, + [10831] = 10264, + [10832] = 10272, + [10833] = 10267, + [10834] = 10268, + [10835] = 10286, + [10836] = 10287, + [10837] = 10268, + [10838] = 10457, + [10839] = 10269, + [10840] = 10504, + [10841] = 10287, + [10842] = 10265, + [10843] = 10277, + [10844] = 10294, + [10845] = 10845, + [10846] = 10488, + [10847] = 10268, + [10848] = 10269, + [10849] = 10620, + [10850] = 10390, + [10851] = 10297, + [10852] = 10272, + [10853] = 10285, + [10854] = 10270, + [10855] = 10268, + [10856] = 10264, + [10857] = 10268, + [10858] = 10269, + [10859] = 10265, + [10860] = 1650, + [10861] = 10294, + [10862] = 10269, + [10863] = 10863, + [10864] = 1665, + [10865] = 10286, + [10866] = 936, + [10867] = 10268, + [10868] = 10269, + [10869] = 10287, + [10870] = 10285, + [10871] = 10272, + [10872] = 10297, + [10873] = 10267, + [10874] = 10265, + [10875] = 10270, + [10876] = 10268, + [10877] = 10525, + [10878] = 10268, + [10879] = 10457, + [10880] = 10457, + [10881] = 10457, + [10882] = 10457, + [10883] = 10457, + [10884] = 10457, + [10885] = 10457, + [10886] = 10457, + [10887] = 10457, + [10888] = 10457, + [10889] = 10457, + [10890] = 10457, + [10891] = 10457, + [10892] = 10457, + [10893] = 10457, + [10894] = 10457, + [10895] = 10457, + [10896] = 10457, + [10897] = 10457, + [10898] = 10457, + [10899] = 10457, + [10900] = 10269, + [10901] = 1667, + [10902] = 10267, + [10903] = 10270, + [10904] = 10268, + [10905] = 10464, + [10906] = 10272, + [10907] = 10294, + [10908] = 10272, + [10909] = 10394, + [10910] = 10910, }; static TSCharacterRange sym_cmd_identifier_character_set_1[] = { @@ -15944,286 +15482,286 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(1284); + if (eof) ADVANCE(1254); ADVANCE_MAP( - '!', 3451, - '"', 2554, - '#', 4941, - '$', 2018, - '\'', 2566, - '(', 2360, - ')', 1840, - '*', 2085, - '+', 2149, - ',', 1835, - '-', 1891, - '.', 2364, - '/', 2121, - ':', 1830, - ';', 1328, - '<', 1870, - '=', 1302, - '>', 1874, - '?', 1883, - '@', 1879, - '[', 2535, - ']', 1838, - '^', 3246, - '_', 2009, + '!', 3411, + '"', 2516, + '#', 4896, + '$', 1985, + '\'', 2528, + '(', 2322, + ')', 1807, + '*', 2052, + '+', 2111, + ',', 1802, + '-', 1858, + '.', 2326, + '/', 2083, + ':', 1797, + ';', 1303, + '<', 1837, + '=', 1272, + '>', 1841, + '?', 1850, + '@', 1846, + '[', 2497, + ']', 1805, + '^', 3206, + '_', 1976, '`', 834, - '{', 2000, - '|', 1841, - '}', 2001, + '{', 1967, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1280); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1915); + lookahead == ' ') SKIP(1250); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1882); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1916); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3564); - if (lookahead != 0) ADVANCE(3437); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1883); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3523); + if (lookahead != 0) ADVANCE(3397); END_STATE(); case 1: ADVANCE_MAP( - '\n', 1795, - '!', 3221, - '"', 2554, - '#', 4941, - '$', 1844, + '\n', 1762, + '!', 3181, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2085, - '+', 2150, - ',', 1835, - '-', 1905, - '.', 2364, - '/', 2121, - '0', 2462, - ':', 1830, - ';', 1328, - '<', 2213, - '=', 1302, - '>', 1874, - '?', 2102, - 'I', 1556, - 'N', 1550, - '_', 1350, + '(', 1806, + '*', 2052, + '+', 2112, + ',', 1802, + '-', 1872, + '.', 2326, + '/', 2083, + '0', 2424, + ':', 1797, + ';', 1303, + '<', 2175, + '=', 1272, + '>', 1841, + '?', 2064, + 'I', 1523, + 'N', 1517, + '_', 1320, '`', 834, - 'a', 1438, - 'b', 1429, - 'c', 1366, - 'd', 1379, - 'e', 1447, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1356, - 'n', 1394, - 'o', 1487, - 'r', 1382, - 's', 1467, - 't', 1496, - 'u', 1508, - 'w', 1421, - 'x', 1478, - '|', 1841, - '}', 2001, + 'a', 1407, + 'b', 1398, + 'c', 1336, + 'd', 1349, + 'e', 1415, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1326, + 'n', 1364, + 'o', 1454, + 'r', 1352, + 's', 1435, + 't', 1463, + 'u', 1475, + 'w', 1390, + 'x', 1445, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(2); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || '?' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '}' < lookahead)) ADVANCE(3204); END_STATE(); case 2: ADVANCE_MAP( - '\n', 1795, - '!', 3221, - '"', 2554, - '#', 4941, - '$', 1844, + '\n', 1762, + '!', 3181, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2085, - '+', 2150, - ',', 1835, - '-', 1905, - '.', 2477, - '/', 2121, - '0', 2462, - ':', 1830, - ';', 1328, - '<', 2213, - '=', 1302, - '>', 1874, - '?', 2102, - 'I', 1556, - 'N', 1550, - '_', 1350, + '(', 1806, + '*', 2052, + '+', 2112, + ',', 1802, + '-', 1872, + '.', 2439, + '/', 2083, + '0', 2424, + ':', 1797, + ';', 1303, + '<', 2175, + '=', 1272, + '>', 1841, + '?', 2064, + 'I', 1523, + 'N', 1517, + '_', 1320, '`', 834, - 'a', 1438, - 'b', 1429, - 'c', 1366, - 'd', 1379, - 'e', 1447, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1356, - 'n', 1394, - 'o', 1487, - 'r', 1382, - 's', 1467, - 't', 1496, - 'u', 1508, - 'w', 1421, - 'x', 1478, - '|', 1841, - '}', 2001, + 'a', 1407, + 'b', 1398, + 'c', 1336, + 'd', 1349, + 'e', 1415, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1326, + 'n', 1364, + 'o', 1454, + 'r', 1352, + 's', 1435, + 't', 1463, + 'u', 1475, + 'w', 1390, + 'x', 1445, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(2); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || '?' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '}' < lookahead)) ADVANCE(3204); END_STATE(); case 3: ADVANCE_MAP( - '\n', 1795, - '!', 3221, - '"', 2554, - '#', 4941, - '$', 1844, + '\n', 1762, + '!', 3181, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2085, - '+', 2150, - ',', 1835, - '-', 1905, - '.', 2477, - '/', 2121, - '0', 2462, - ':', 1830, - ';', 1328, - '<', 2213, - '=', 1302, - '>', 1874, - 'I', 1556, - 'N', 1550, - '_', 1350, + '(', 1806, + '*', 2052, + '+', 2112, + ',', 1802, + '-', 1872, + '.', 2439, + '/', 2083, + '0', 2424, + ':', 1797, + ';', 1303, + '<', 2175, + '=', 1272, + '>', 1841, + 'I', 1523, + 'N', 1517, + '_', 1320, '`', 834, - 'a', 1438, - 'b', 1429, - 'c', 1366, - 'd', 1379, - 'e', 1447, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1356, - 'n', 1394, - 'o', 1487, - 'r', 1382, - 's', 1467, - 't', 1496, - 'u', 1508, - 'w', 1421, - 'x', 1478, - '|', 1841, - '}', 2001, + 'a', 1407, + 'b', 1398, + 'c', 1336, + 'd', 1349, + 'e', 1415, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1326, + 'n', 1364, + 'o', 1454, + 'r', 1352, + 's', 1435, + 't', 1463, + 'u', 1475, + 'w', 1390, + 'x', 1445, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(3); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '}' < lookahead)) ADVANCE(3204); END_STATE(); case 4: ADVANCE_MAP( - '\n', 1795, - '!', 3221, - '"', 2554, - '#', 4941, - '$', 1844, + '\n', 1762, + '!', 3181, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2085, - '+', 2150, - ',', 1835, - '-', 1905, - '.', 2480, - '/', 2121, - '0', 2462, - ':', 1830, - ';', 1328, - '<', 2213, - '=', 1302, - '>', 1874, - 'I', 1556, - 'N', 1550, - '_', 1350, + '(', 1806, + '*', 2052, + '+', 2112, + ',', 1802, + '-', 1872, + '.', 2442, + '/', 2083, + '0', 2424, + ':', 1797, + ';', 1303, + '<', 2175, + '=', 1272, + '>', 1841, + 'I', 1523, + 'N', 1517, + '_', 1320, '`', 834, - 'a', 1438, - 'b', 1429, - 'c', 1366, - 'd', 1379, - 'e', 1447, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1356, - 'n', 1394, - 'o', 1487, - 'r', 1382, - 's', 1467, - 't', 1496, - 'u', 1508, - 'w', 1421, - 'x', 1478, - '|', 1841, - '}', 2001, + 'a', 1407, + 'b', 1398, + 'c', 1336, + 'd', 1349, + 'e', 1415, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1326, + 'n', 1364, + 'o', 1454, + 'r', 1352, + 's', 1435, + 't', 1463, + 'u', 1475, + 'w', 1390, + 'x', 1445, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(3); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '}' < lookahead)) ADVANCE(3204); END_STATE(); case 5: ADVANCE_MAP( - '\n', 1795, + '\n', 1762, '!', 813, - '#', 4941, - '$', 1844, - ')', 1840, - '*', 2084, - '+', 2158, - '-', 1908, - '/', 2120, - ';', 1328, - '<', 2213, + '#', 4896, + '$', 1811, + ')', 1807, + '*', 2051, + '+', 2120, + '-', 1875, + '/', 2082, + ';', 1303, + '<', 2175, '=', 815, - '>', 1874, + '>', 1841, 'a', 906, 'b', 884, 'e', 910, @@ -16233,26 +15771,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'o', 932, 's', 950, 'x', 913, - '|', 1841, + '|', 1808, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(5); END_STATE(); case 6: ADVANCE_MAP( - '\n', 1795, + '\n', 1762, '!', 813, - '#', 4941, - ')', 1840, - '*', 2084, - '+', 2152, - '-', 1889, - '/', 2120, - ';', 1328, - '<', 2213, + '#', 4896, + ')', 1807, + '*', 2051, + '+', 2114, + '-', 1856, + '/', 2082, + ';', 1303, + '<', 2175, '=', 815, - '>', 1874, - '?', 2102, + '>', 1841, + '?', 2064, 'a', 906, 'b', 884, 'e', 910, @@ -16262,25 +15800,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'o', 932, 's', 950, 'x', 913, - '|', 1841, + '|', 1808, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(6); END_STATE(); case 7: ADVANCE_MAP( - '\n', 1795, + '\n', 1762, '!', 813, - '#', 4941, - ')', 1840, - '*', 2084, - '+', 2152, - '-', 1889, - '/', 2120, - ';', 1328, - '<', 2213, + '#', 4896, + ')', 1807, + '*', 2051, + '+', 2114, + '-', 1856, + '/', 2082, + ';', 1303, + '<', 2175, '=', 815, - '>', 1874, + '>', 1841, 'a', 906, 'b', 884, 'e', 910, @@ -16290,25 +15828,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'o', 932, 's', 950, 'x', 913, - '|', 1841, + '|', 1808, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(7); END_STATE(); case 8: ADVANCE_MAP( - '\n', 1795, + '\n', 1762, '!', 813, - '#', 4941, - ')', 1840, - '*', 2084, - '+', 2158, - '-', 1908, - '/', 2120, - ';', 1328, - '<', 2213, + '#', 4896, + ')', 1807, + '*', 2051, + '+', 2120, + '-', 1875, + '/', 2082, + ';', 1303, + '<', 2175, '=', 815, - '>', 1874, + '>', 1841, 'a', 906, 'b', 884, 'e', 910, @@ -16318,90 +15856,90 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'o', 932, 's', 950, 'x', 913, - '|', 1841, + '|', 1808, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(8); END_STATE(); case 9: ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '+', 3322, - '-', 1892, - '.', 2481, - '0', 2461, - ';', 1328, - 'N', 3413, - '[', 1834, - '_', 3339, + '(', 1806, + ')', 1807, + '+', 3282, + '-', 1859, + '.', 2443, + '0', 2423, + ';', 1303, + 'N', 3373, + '[', 1801, + '_', 3299, '`', 834, - 'e', 3310, - 'f', 3346, - 'n', 3407, - 'o', 3312, - 't', 3385, - '{', 2000, - '|', 1841, - 'I', 3418, - 'i', 3418, + 'e', 3270, + 'f', 3306, + 'n', 3367, + 'o', 3272, + 't', 3345, + '{', 1967, + '|', 1808, + 'I', 3378, + 'i', 3378, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(9); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2474); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2436); if (lookahead != 0 && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3436); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3396); END_STATE(); case 10: ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, + '(', 1806, '+', 805, - '-', 1902, - '.', 2481, - '0', 2458, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1350, + '-', 1869, + '.', 2443, + '0', 2420, + 'I', 1523, + 'N', 1517, + '[', 1801, + '^', 3206, + '_', 1320, '`', 834, - 'b', 1492, - 'c', 1477, - 'd', 1466, - 'f', 1358, - 'i', 1410, - 'm', 1362, - 'n', 1471, - 'r', 1407, - 't', 1483, - 'w', 1422, - '{', 2000, - '|', 1841, + 'b', 1459, + 'c', 1444, + 'd', 1434, + 'f', 1328, + 'i', 1380, + 'm', 1332, + 'n', 1439, + 'r', 1377, + 't', 1450, + 'w', 1391, + '{', 1967, + '|', 1808, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(10); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); case 11: ADVANCE_MAP( - '\n', 1795, - '#', 4941, - '$', 1844, - ')', 1840, - ';', 1328, - '|', 1841, + '\n', 1762, + '#', 4896, + '$', 1811, + ')', 1807, + ';', 1303, + '|', 1808, '+', 809, '-', 809, ); @@ -16409,162 +15947,162 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(11); END_STATE(); case 12: - if (lookahead == '\n') ADVANCE(1795); - if (lookahead == '#') ADVANCE(4941); - if (lookahead == ')') ADVANCE(1840); - if (lookahead == ';') ADVANCE(1328); - if (lookahead == '=') ADVANCE(1301); - if (lookahead == '|') ADVANCE(1841); + if (lookahead == '\n') ADVANCE(1762); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == ')') ADVANCE(1807); + if (lookahead == ';') ADVANCE(1303); + if (lookahead == '=') ADVANCE(1271); + if (lookahead == '|') ADVANCE(1808); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(12); END_STATE(); case 13: - if (lookahead == '\n') ADVANCE(1795); - if (lookahead == '#') ADVANCE(4941); - if (lookahead == ')') ADVANCE(1840); - if (lookahead == ';') ADVANCE(1328); - if (lookahead == '|') ADVANCE(1841); + if (lookahead == '\n') ADVANCE(1762); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == ')') ADVANCE(1807); + if (lookahead == ';') ADVANCE(1303); + if (lookahead == '|') ADVANCE(1808); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(13); END_STATE(); case 14: ADVANCE_MAP( - '\n', 3250, - '!', 3451, - '#', 4941, - ')', 1840, - '*', 2084, - '+', 2152, - '-', 1889, - '.', 2363, - '/', 2120, - ';', 1328, - '<', 2213, - '=', 3453, - '>', 1874, - '_', 3466, - 'a', 3504, - 'b', 3491, - 'e', 3509, - 'i', 3505, - 'm', 3522, - 'n', 3536, - 'o', 3542, - 's', 3549, - 'x', 3517, - '|', 1841, - '\t', 3249, - ' ', 3249, + '\n', 3210, + '!', 3411, + '#', 4896, + ')', 1807, + '*', 2051, + '+', 2114, + '-', 1856, + '.', 2325, + '/', 2082, + ';', 1303, + '<', 2175, + '=', 3413, + '>', 1841, + '_', 3426, + 'a', 3463, + 'b', 3451, + 'e', 3468, + 'i', 3464, + 'm', 3481, + 'n', 3495, + 'o', 3501, + 's', 3508, + 'x', 3476, + '|', 1808, + '\t', 3209, + ' ', 3209, ); if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(7); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); if (lookahead != 0 && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && (lookahead < '_' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3437); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3397); END_STATE(); case 15: ADVANCE_MAP( - '\n', 3250, - '!', 3814, - '#', 4941, - '(', 2360, - ')', 1840, - '*', 2084, - '+', 2152, - '-', 1889, - '.', 2364, - '/', 2120, - ';', 1328, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2507, - 'E', 3844, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - '[', 2535, - '_', 3867, - 'a', 3932, - 'b', 2508, - 'd', 3883, - 'e', 3842, - 'g', 3847, - 'h', 3980, - 'i', 3933, - 'k', 3847, - 'm', 3849, - 'n', 3973, - 'o', 3981, - 'p', 3847, - 's', 3902, - 't', 3847, - 'u', 3990, - 'w', 3924, - 'x', 3945, - '|', 1841, - 0xb5, 3990, - '\t', 3249, - ' ', 3249, + '\n', 3210, + '!', 3771, + '#', 4896, + '(', 2322, + ')', 1807, + '*', 2051, + '+', 2114, + '-', 1856, + '.', 2326, + '/', 2082, + ';', 1303, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2469, + 'E', 3801, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + '[', 2497, + '_', 3824, + 'a', 3888, + 'b', 2470, + 'd', 3840, + 'e', 3799, + 'g', 3804, + 'h', 3936, + 'i', 3889, + 'k', 3804, + 'm', 3806, + 'n', 3929, + 'o', 3937, + 'p', 3804, + 's', 3859, + 't', 3804, + 'u', 3946, + 'w', 3881, + 'x', 3901, + '|', 1808, + 0xb5, 3946, + '\t', 3209, + ' ', 3209, ); if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(7); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); if (lookahead != 0 && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != ']' && (lookahead < '_' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3791); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3748); END_STATE(); case 16: ADVANCE_MAP( - '\n', 3250, - '!', 3814, - '#', 4941, - ')', 1840, - '*', 2084, - '+', 2152, - '-', 1889, - '.', 2364, - '/', 2120, - ';', 1328, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2507, - 'E', 3844, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - 'a', 3932, - 'b', 2508, - 'd', 3883, - 'e', 3842, - 'g', 3847, - 'h', 3980, - 'i', 3933, - 'k', 3847, - 'm', 3849, - 'n', 3973, - 'o', 3981, - 'p', 3847, - 's', 3902, - 't', 3847, - 'u', 3990, - 'w', 3924, - 'x', 3945, - '|', 1841, - 0xb5, 3990, - '\t', 3249, - ' ', 3249, + '\n', 3210, + '!', 3771, + '#', 4896, + ')', 1807, + '*', 2051, + '+', 2114, + '-', 1856, + '.', 2326, + '/', 2082, + ';', 1303, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2469, + 'E', 3801, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + 'a', 3888, + 'b', 2470, + 'd', 3840, + 'e', 3799, + 'g', 3804, + 'h', 3936, + 'i', 3889, + 'k', 3804, + 'm', 3806, + 'n', 3929, + 'o', 3937, + 'p', 3804, + 's', 3859, + 't', 3804, + 'u', 3946, + 'w', 3881, + 'x', 3901, + '|', 1808, + 0xb5, 3946, + '\t', 3209, + ' ', 3209, ); if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(7); if (lookahead != 0 && @@ -16573,51 +16111,51 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && (lookahead < '`' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3791); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3748); END_STATE(); case 17: ADVANCE_MAP( - '\n', 3250, - '!', 3814, - '#', 4941, - ')', 1840, - '*', 2084, - '+', 2152, - '-', 1889, - '.', 2364, - '/', 2120, - ';', 1328, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2507, - 'E', 3848, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - 'a', 3932, - 'b', 2508, - 'd', 3883, - 'e', 3845, - 'g', 3847, - 'h', 3980, - 'i', 3933, - 'k', 3847, - 'm', 3849, - 'n', 3973, - 'o', 3981, - 'p', 3847, - 's', 3902, - 't', 3847, - 'u', 3990, - 'w', 3924, - 'x', 3945, - '|', 1841, - 0xb5, 3990, - '\t', 3249, - ' ', 3249, + '\n', 3210, + '!', 3771, + '#', 4896, + ')', 1807, + '*', 2051, + '+', 2114, + '-', 1856, + '.', 2326, + '/', 2082, + ';', 1303, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2469, + 'E', 3805, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + 'a', 3888, + 'b', 2470, + 'd', 3840, + 'e', 3802, + 'g', 3804, + 'h', 3936, + 'i', 3889, + 'k', 3804, + 'm', 3806, + 'n', 3929, + 'o', 3937, + 'p', 3804, + 's', 3859, + 't', 3804, + 'u', 3946, + 'w', 3881, + 'x', 3901, + '|', 1808, + 0xb5, 3946, + '\t', 3209, + ' ', 3209, ); if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(7); if (lookahead != 0 && @@ -16626,34 +16164,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && (lookahead < '`' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3791); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3748); END_STATE(); case 18: ADVANCE_MAP( - '\n', 3250, - '!', 3814, - '#', 4941, - ')', 1840, - '*', 2084, - '+', 2152, - '-', 1889, - '/', 2120, - ';', 1328, - '<', 2213, - '=', 3816, - '>', 1874, - 'a', 3932, - 'b', 3917, - 'e', 3937, - 'i', 3933, - 'm', 3951, - 'n', 3972, - 'o', 3981, - 's', 3994, - 'x', 3945, - '|', 1841, - '\t', 3249, - ' ', 3249, + '\n', 3210, + '!', 3771, + '#', 4896, + ')', 1807, + '*', 2051, + '+', 2114, + '-', 1856, + '/', 2082, + ';', 1303, + '<', 2175, + '=', 3773, + '>', 1841, + 'a', 3888, + 'b', 3874, + 'e', 3893, + 'i', 3889, + 'm', 3907, + 'n', 3928, + 'o', 3937, + 's', 3950, + 'x', 3901, + '|', 1808, + '\t', 3209, + ' ', 3209, ); if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(7); if (lookahead != 0 && @@ -16662,24 +16200,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && (lookahead < '`' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3791); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3748); END_STATE(); case 19: ADVANCE_MAP( - '\n', 3250, + '\n', 3210, '!', 813, - '#', 4941, - ')', 1840, - '*', 2084, - '+', 2152, - '-', 1889, - '.', 2364, - '/', 2120, - ';', 1328, - '<', 2213, + '#', 4896, + ')', 1807, + '*', 2051, + '+', 2114, + '-', 1856, + '.', 2326, + '/', 2082, + ';', 1303, + '<', 2175, '=', 815, - '>', 1874, - '?', 2102, + '>', 1841, + '?', 2064, 'a', 906, 'b', 884, 'e', 910, @@ -16689,28 +16227,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'o', 932, 's', 950, 'x', 913, - '|', 1841, - '\t', 3249, - ' ', 3249, + '|', 1808, + '\t', 3209, + ' ', 3209, ); if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(6); END_STATE(); case 20: ADVANCE_MAP( - '\n', 3250, + '\n', 3210, '!', 813, - '#', 4941, - ')', 1840, - '*', 2084, - '+', 2152, - '-', 1889, - '.', 2363, - '/', 2120, - ';', 1328, - '<', 2213, + '#', 4896, + ')', 1807, + '*', 2051, + '+', 2114, + '-', 1856, + '.', 2325, + '/', 2082, + ';', 1303, + '<', 2175, '=', 815, - '>', 1874, - '?', 2102, + '>', 1841, + '?', 2064, 'E', 829, 'a', 906, 'b', 884, @@ -16721,118 +16259,118 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'o', 932, 's', 950, 'x', 913, - '|', 1841, - '\t', 3249, - ' ', 3249, + '|', 1808, + '\t', 3209, + ' ', 3209, ); if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(6); END_STATE(); case 21: ADVANCE_MAP( - '\n', 3250, - '!', 3575, - '#', 4941, - ')', 1840, - '*', 2084, - '+', 2158, - '-', 1908, - '.', 2363, - '/', 2120, - ';', 1328, - '<', 2213, - '=', 3816, - '>', 1874, - '_', 3582, - 'a', 3615, - 'b', 3602, - 'e', 3620, - 'i', 3616, - 'm', 3633, - 'n', 3647, - 'o', 3653, - 's', 3660, - 'x', 3628, - '|', 1841, - '\t', 3249, - ' ', 3249, + '\n', 3210, + '!', 3534, + '#', 4896, + ')', 1807, + '*', 2051, + '+', 2120, + '-', 1875, + '.', 2325, + '/', 2082, + ';', 1303, + '<', 2175, + '=', 3773, + '>', 1841, + '_', 3541, + 'a', 3573, + 'b', 3561, + 'e', 3578, + 'i', 3574, + 'm', 3591, + 'n', 3605, + 'o', 3611, + 's', 3618, + 'x', 3586, + '|', 1808, + '\t', 3209, + ' ', 3209, ); if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(8); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); if (lookahead != 0 && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && (lookahead < '_' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3566); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3525); END_STATE(); case 22: ADVANCE_MAP( - '\n', 3250, - '!', 3686, - '#', 4941, - '$', 1844, - '(', 2360, - ')', 1840, - '*', 2084, - '+', 2158, - '-', 1908, - '.', 2363, - '/', 2120, - ';', 1328, - '<', 2213, - '=', 3688, - '>', 1874, - '_', 3696, - 'a', 3729, - 'b', 3716, - 'e', 3734, - 'i', 3730, - 'm', 3747, - 'n', 3761, - 'o', 3767, - 's', 3774, - 'x', 3742, - '|', 1841, - '\t', 3249, - ' ', 3249, + '\n', 3210, + '!', 3644, + '#', 4896, + '$', 1811, + '(', 2322, + ')', 1807, + '*', 2051, + '+', 2120, + '-', 1875, + '.', 2325, + '/', 2082, + ';', 1303, + '<', 2175, + '=', 3646, + '>', 1841, + '_', 3654, + 'a', 3686, + 'b', 3674, + 'e', 3691, + 'i', 3687, + 'm', 3704, + 'n', 3718, + 'o', 3724, + 's', 3731, + 'x', 3699, + '|', 1808, + '\t', 3209, + ' ', 3209, ); if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(5); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && (lookahead < '_' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3677); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3635); END_STATE(); case 23: ADVANCE_MAP( - '\n', 3250, - '!', 4160, - '#', 4952, - ')', 1840, - '*', 2089, - '+', 2166, - '-', 1913, - '/', 2124, - ';', 1328, - '<', 2216, - '=', 4162, - '>', 1877, - 'a', 4343, - 'b', 4296, - 'e', 4358, - 'i', 4347, - 'm', 4380, - 'n', 4378, - 'o', 4411, - 's', 4490, - 'x', 4379, - '|', 1843, - '\t', 3249, - ' ', 3249, + '\n', 3210, + '!', 4114, + '#', 4906, + ')', 1807, + '*', 2053, + '+', 2124, + '-', 1879, + '/', 2084, + ';', 1303, + '<', 2176, + '=', 4116, + '>', 1842, + 'a', 4301, + 'b', 4252, + 'e', 4313, + 'i', 4305, + 'm', 4335, + 'n', 4333, + 'o', 4374, + 's', 4445, + 'x', 4334, + '|', 1809, + '\t', 3209, + ' ', 3209, ); if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(7); if (lookahead != 0 && @@ -16841,64 +16379,64 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && (lookahead < '`' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4597); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4552); END_STATE(); case 24: ADVANCE_MAP( - '\n', 3250, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 3210, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '+', 3322, - '-', 1892, - '.', 2481, - '0', 2461, - ';', 1328, - 'N', 3413, - '[', 1834, - '_', 3339, + '(', 1806, + ')', 1807, + '+', 3282, + '-', 1859, + '.', 2443, + '0', 2423, + ';', 1303, + 'N', 3373, + '[', 1801, + '_', 3299, '`', 834, - 'e', 3310, - 'f', 3346, - 'n', 3407, - 'o', 3312, - 't', 3385, - '{', 2000, - '|', 1841, - '\t', 3249, - ' ', 3249, - 'I', 3418, - 'i', 3418, + 'e', 3270, + 'f', 3306, + 'n', 3367, + 'o', 3272, + 't', 3345, + '{', 1967, + '|', 1808, + '\t', 3209, + ' ', 3209, + 'I', 3378, + 'i', 3378, ); if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(9); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2474); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2436); if (lookahead != 0 && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3436); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3396); END_STATE(); case 25: ADVANCE_MAP( - '\n', 3250, - '#', 4941, - '$', 1844, - '(', 2360, - ')', 1840, - '.', 2363, - ';', 1328, - '_', 3582, - '|', 1841, - '\t', 3249, - ' ', 3249, - '+', 3574, - '-', 3574, - '<', 3791, - '=', 3791, + '\n', 3210, + '#', 4896, + '$', 1811, + '(', 2322, + ')', 1807, + '.', 2325, + ';', 1303, + '_', 3541, + '|', 1808, + '\t', 3209, + ' ', 3209, + '+', 3533, + '-', 3533, + '<', 3748, + '=', 3748, ); if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(11); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -16906,26 +16444,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3566); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3525); END_STATE(); case 26: ADVANCE_MAP( - '\n', 3250, - '#', 4941, - '$', 1844, - '(', 2360, - ')', 1840, - '.', 2363, - ';', 1328, - '_', 3696, - '|', 1841, - '\t', 3249, - ' ', 3249, - '+', 3685, - '-', 3685, + '\n', 3210, + '#', 4896, + '$', 1811, + '(', 2322, + ')', 1807, + '.', 2325, + ';', 1303, + '_', 3654, + '|', 1808, + '\t', 3209, + ' ', 3209, + '+', 3643, + '-', 3643, ); if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(11); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -16933,26 +16471,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3677); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3635); END_STATE(); case 27: ADVANCE_MAP( - '\n', 3250, - '#', 4941, - '$', 1844, - '(', 2360, - ')', 1840, - '.', 2363, - ';', 1328, - '_', 3466, - '|', 1841, - '\t', 3249, - ' ', 3249, - '+', 3450, - '-', 3450, + '\n', 3210, + '#', 4896, + '$', 1811, + '(', 2322, + ')', 1807, + '.', 2325, + ';', 1303, + '_', 3426, + '|', 1808, + '\t', 3209, + ' ', 3209, + '+', 3410, + '-', 3410, ); if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(11); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -16960,44 +16498,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3437); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3397); END_STATE(); case 28: ADVANCE_MAP( - '\n', 3250, - '#', 4941, - '(', 2360, - ')', 1840, - '.', 2364, - ';', 1328, - 'E', 3844, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - '_', 3867, - 'd', 3883, - 'e', 3843, - 'g', 3847, - 'h', 3980, - 'k', 3847, - 'm', 3850, - 'n', 3990, - 'p', 3847, - 's', 3901, - 't', 3847, - 'u', 3990, - 'w', 3924, - '|', 1841, - 0xb5, 3990, - '\t', 3249, - ' ', 3249, - 'B', 2507, - 'b', 2507, + '\n', 3210, + '#', 4896, + '(', 2322, + ')', 1807, + '.', 2326, + ';', 1303, + 'E', 3801, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + '_', 3824, + 'd', 3840, + 'e', 3800, + 'g', 3804, + 'h', 3936, + 'k', 3804, + 'm', 3807, + 'n', 3946, + 'p', 3804, + 's', 3858, + 't', 3804, + 'u', 3946, + 'w', 3881, + '|', 1808, + 0xb5, 3946, + '\t', 3209, + ' ', 3209, + 'B', 2469, + 'b', 2469, ); if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(13); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17006,40 +16544,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3791); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3748); END_STATE(); case 29: ADVANCE_MAP( - '\n', 3250, - '#', 4941, - '(', 2360, - ')', 1840, - '.', 2364, - ';', 1328, - 'E', 3844, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - 'd', 3883, - 'e', 3843, - 'g', 3847, - 'h', 3980, - 'k', 3847, - 'm', 3850, - 'n', 3990, - 'p', 3847, - 's', 3901, - 't', 3847, - 'u', 3990, - 'w', 3924, - '|', 1841, - 0xb5, 3990, - '\t', 3249, - ' ', 3249, - 'B', 2507, - 'b', 2507, + '\n', 3210, + '#', 4896, + '(', 2322, + ')', 1807, + '.', 2326, + ';', 1303, + 'E', 3801, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + 'd', 3840, + 'e', 3800, + 'g', 3804, + 'h', 3936, + 'k', 3804, + 'm', 3807, + 'n', 3946, + 'p', 3804, + 's', 3858, + 't', 3804, + 'u', 3946, + 'w', 3881, + '|', 1808, + 0xb5, 3946, + '\t', 3209, + ' ', 3209, + 'B', 2469, + 'b', 2469, ); if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(13); if (lookahead != 0 && @@ -17049,40 +16587,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3791); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3748); END_STATE(); case 30: ADVANCE_MAP( - '\n', 3250, - '#', 4941, - '(', 2360, - ')', 1840, - '.', 2364, - ';', 1328, - 'E', 3848, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - 'd', 3883, - 'e', 3847, - 'g', 3847, - 'h', 3980, - 'k', 3847, - 'm', 3850, - 'n', 3990, - 'p', 3847, - 's', 3901, - 't', 3847, - 'u', 3990, - 'w', 3924, - '|', 1841, - 0xb5, 3990, - '\t', 3249, - ' ', 3249, - 'B', 2507, - 'b', 2507, + '\n', 3210, + '#', 4896, + '(', 2322, + ')', 1807, + '.', 2326, + ';', 1303, + 'E', 3805, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + 'd', 3840, + 'e', 3804, + 'g', 3804, + 'h', 3936, + 'k', 3804, + 'm', 3807, + 'n', 3946, + 'p', 3804, + 's', 3858, + 't', 3804, + 'u', 3946, + 'w', 3881, + '|', 1808, + 0xb5, 3946, + '\t', 3209, + ' ', 3209, + 'B', 2469, + 'b', 2469, ); if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(13); if (lookahead != 0 && @@ -17092,25 +16630,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3791); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3748); END_STATE(); case 31: ADVANCE_MAP( - '\n', 3250, - '#', 4941, - '(', 2360, - ')', 1840, - '.', 2364, - ';', 1328, - '_', 3466, - '|', 1841, - '\t', 3249, - ' ', 3249, - 'E', 3461, - 'e', 3461, + '\n', 3210, + '#', 4896, + '(', 2322, + ')', 1807, + '.', 2326, + ';', 1303, + '_', 3426, + '|', 1808, + '\t', 3209, + ' ', 3209, + 'E', 3421, + 'e', 3421, ); if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(13); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17119,21 +16657,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3437); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3397); END_STATE(); case 32: ADVANCE_MAP( - '\n', 3250, - '#', 4941, - '(', 2360, - ')', 1840, - '.', 2364, - ';', 1328, - '|', 1841, - '\t', 3249, - ' ', 3249, - 'E', 3461, - 'e', 3461, + '\n', 3210, + '#', 4896, + '(', 2322, + ')', 1807, + '.', 2326, + ';', 1303, + '|', 1808, + '\t', 3209, + ' ', 3209, + 'E', 3421, + 'e', 3421, ); if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(13); if (lookahead != 0 && @@ -17143,19 +16681,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3437); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3397); END_STATE(); case 33: ADVANCE_MAP( - '\n', 3250, - '#', 4941, - '(', 2360, - ')', 1840, - '.', 2364, - ';', 1328, - '|', 1841, - '\t', 3249, - ' ', 3249, + '\n', 3210, + '#', 4896, + '(', 2322, + ')', 1807, + '.', 2326, + ';', 1303, + '|', 1808, + '\t', 3209, + ' ', 3209, ); if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(13); if (lookahead != 0 && @@ -17165,25 +16703,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3437); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3397); END_STATE(); case 34: ADVANCE_MAP( - '\n', 3250, - '#', 4941, - '(', 2360, - ')', 1840, - '.', 2363, - ';', 1328, - '_', 3466, - '|', 1841, - '\t', 3249, - ' ', 3249, - 'E', 3461, - 'e', 3461, + '\n', 3210, + '#', 4896, + '(', 2322, + ')', 1807, + '.', 2325, + ';', 1303, + '_', 3426, + '|', 1808, + '\t', 3209, + ' ', 3209, + 'E', 3421, + 'e', 3421, ); if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(13); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17192,23 +16730,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3437); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3397); END_STATE(); case 35: ADVANCE_MAP( - '\n', 3250, - '#', 4941, - '(', 2360, - ')', 1840, - '.', 2363, - ';', 1328, - '_', 3466, - '|', 1841, - '\t', 3249, - ' ', 3249, + '\n', 3210, + '#', 4896, + '(', 2322, + ')', 1807, + '.', 2325, + ';', 1303, + '_', 3426, + '|', 1808, + '\t', 3209, + ' ', 3209, ); if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(13); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17217,21 +16755,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3437); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3397); END_STATE(); case 36: ADVANCE_MAP( - '\n', 3250, - '#', 4941, - '(', 2360, - ')', 1840, - '.', 2363, - ';', 1328, - '|', 1841, - '\t', 3249, - ' ', 3249, - 'E', 3461, - 'e', 3461, + '\n', 3210, + '#', 4896, + '(', 2322, + ')', 1807, + '.', 2325, + ';', 1303, + '|', 1808, + '\t', 3209, + ' ', 3209, + 'E', 3421, + 'e', 3421, ); if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(13); if (lookahead != 0 && @@ -17241,19 +16779,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3437); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3397); END_STATE(); case 37: ADVANCE_MAP( - '\n', 3250, - '#', 4941, - '(', 2360, - ')', 1840, - '.', 2363, - ';', 1328, - '|', 1841, - '\t', 3249, - ' ', 3249, + '\n', 3210, + '#', 4896, + '(', 2322, + ')', 1807, + '.', 2325, + ';', 1303, + '|', 1808, + '\t', 3209, + ' ', 3209, ); if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(13); if (lookahead != 0 && @@ -17263,30 +16801,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3437); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3397); END_STATE(); case 38: ADVANCE_MAP( - '\n', 3250, - '#', 4941, - ')', 1840, - ';', 1328, - '=', 1301, - '|', 1841, - '\t', 3249, - ' ', 3249, + '\n', 3210, + '#', 4896, + ')', 1807, + ';', 1303, + '=', 1271, + '|', 1808, + '\t', 3209, + ' ', 3209, ); if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(12); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1794); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1761); END_STATE(); case 39: - if (lookahead == '\n') ADVANCE(3250); - if (lookahead == '#') ADVANCE(4941); - if (lookahead == ')') ADVANCE(1840); - if (lookahead == ';') ADVANCE(1328); - if (lookahead == '|') ADVANCE(1841); + if (lookahead == '\n') ADVANCE(3210); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == ')') ADVANCE(1807); + if (lookahead == ';') ADVANCE(1303); + if (lookahead == '|') ADVANCE(1808); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3249); + lookahead == ' ') ADVANCE(3209); if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(13); if (lookahead != 0 && lookahead != '"' && @@ -17295,18 +16833,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3791); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3748); END_STATE(); case 40: ADVANCE_MAP( - '\n', 3250, - '#', 4952, - '(', 2360, - ')', 1840, - ';', 1328, - '|', 1843, - '\t', 3249, - ' ', 3249, + '\n', 3210, + '#', 4906, + '(', 2322, + ')', 1807, + ';', 1303, + '|', 1809, + '\t', 3209, + ' ', 3209, ); if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(13); if (lookahead != 0 && @@ -17316,6097 +16854,6097 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4597); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4552); END_STATE(); case 41: - if (lookahead == '\n') ADVANCE(1287); - if (lookahead == '#') ADVANCE(4942); + if (lookahead == '\n') ADVANCE(1257); + if (lookahead == '#') ADVANCE(4897); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(41); if (lookahead != 0) ADVANCE(42); END_STATE(); case 42: - if (lookahead == '\n') ADVANCE(1286); + if (lookahead == '\n') ADVANCE(1256); if (lookahead != 0) ADVANCE(42); END_STATE(); case 43: ADVANCE_MAP( - '!', 3451, - '"', 2554, - '#', 4941, - '$', 1845, + '!', 3411, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2154, - '-', 1902, - '.', 2481, - '/', 2120, - '0', 2393, - '<', 2213, - '=', 3453, - '>', 1874, - 'I', 3563, - 'N', 3559, - '[', 1834, - '_', 3466, + '(', 1806, + '*', 2051, + '+', 2116, + '-', 1869, + '.', 2443, + '/', 2082, + '0', 2355, + '<', 2175, + '=', 3413, + '>', 1841, + 'I', 3522, + 'N', 3518, + '[', 1801, + '_', 3426, '`', 834, - 'a', 3504, - 'b', 3491, - 'e', 3509, - 'f', 3476, - 'i', 3458, - 'm', 3522, - 'n', 3518, - 'o', 3542, - 's', 3549, - 't', 3543, - 'x', 3517, - '{', 2000, + 'a', 3463, + 'b', 3451, + 'e', 3468, + 'f', 3436, + 'i', 3418, + 'm', 3481, + 'n', 3477, + 'o', 3501, + 's', 3508, + 't', 3502, + 'x', 3476, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(174); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); if (lookahead != 0 && (lookahead < '\'' || '+' < lookahead) && (lookahead < ';' || '>' < lookahead) && lookahead != ']' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 44: ADVANCE_MAP( - '!', 3451, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3411, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2155, - ',', 3211, - '-', 1906, - '.', 2477, - '/', 2120, - '0', 2396, - ':', 3437, - '<', 2213, - '=', 3453, - '>', 1874, - 'I', 3560, - 'N', 3556, - '_', 3463, + '(', 1806, + '*', 2051, + '+', 2117, + ',', 3171, + '-', 1873, + '.', 2439, + '/', 2082, + '0', 2358, + ':', 3397, + '<', 2175, + '=', 3413, + '>', 1841, + 'I', 3519, + 'N', 3515, + '_', 3423, '`', 834, - 'a', 3497, - 'b', 3495, - 'c', 3480, - 'd', 3481, - 'e', 3501, - 'f', 3525, - 'h', 3490, - 'i', 3455, - 'l', 3482, - 'm', 3473, - 'n', 3485, - 'o', 3538, - 'r', 3484, - 's', 3515, - 't', 3547, - 'u', 3548, - 'w', 3489, - 'x', 3534, - '}', 2001, + 'a', 3457, + 'b', 3455, + 'c', 3440, + 'd', 3441, + 'e', 3460, + 'f', 3484, + 'h', 3450, + 'i', 3415, + 'l', 3442, + 'm', 3433, + 'n', 3445, + 'o', 3497, + 'r', 3444, + 's', 3474, + 't', 3506, + 'u', 3507, + 'w', 3449, + 'x', 3493, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3565); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3524); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3437); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3397); END_STATE(); case 45: ADVANCE_MAP( - '!', 3451, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3411, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2155, - '-', 1906, - '.', 2477, - '/', 2120, - '0', 2396, - '<', 2213, - '=', 3453, - '>', 1874, - 'I', 3560, - 'N', 3556, - '_', 3463, + '(', 1806, + '*', 2051, + '+', 2117, + '-', 1873, + '.', 2439, + '/', 2082, + '0', 2358, + '<', 2175, + '=', 3413, + '>', 1841, + 'I', 3519, + 'N', 3515, + '_', 3423, '`', 834, - 'a', 3497, - 'b', 3495, - 'c', 3480, - 'd', 3481, - 'e', 3501, - 'f', 3525, - 'h', 3490, - 'i', 3455, - 'l', 3482, - 'm', 3473, - 'n', 3485, - 'o', 3538, - 'r', 3484, - 's', 3515, - 't', 3547, - 'u', 3548, - 'w', 3489, - 'x', 3534, - '}', 2001, - ',', 3437, - ':', 3437, + 'a', 3457, + 'b', 3455, + 'c', 3440, + 'd', 3441, + 'e', 3460, + 'f', 3484, + 'h', 3450, + 'i', 3415, + 'l', 3442, + 'm', 3433, + 'n', 3445, + 'o', 3497, + 'r', 3444, + 's', 3474, + 't', 3506, + 'u', 3507, + 'w', 3449, + 'x', 3493, + '}', 1968, + ',', 3397, + ':', 3397, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(81); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3565); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3524); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3437); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3397); END_STATE(); case 46: ADVANCE_MAP( - '!', 3451, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3411, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2156, - ',', 1835, - '-', 1892, - '.', 2481, - '/', 2120, - '0', 2394, - '<', 2213, - '=', 3453, - '>', 1874, - 'I', 3561, - 'N', 3557, - '[', 1834, - ']', 1838, - '_', 3467, + '(', 1806, + '*', 2051, + '+', 2118, + ',', 1802, + '-', 1859, + '.', 2443, + '/', 2082, + '0', 2356, + '<', 2175, + '=', 3413, + '>', 1841, + 'I', 3520, + 'N', 3516, + '[', 1801, + ']', 1805, + '_', 3427, '`', 834, - 'a', 3502, - 'b', 3493, - 'e', 3438, - 'f', 3474, - 'i', 3456, - 'm', 3520, - 'n', 3527, - 'o', 3440, - 's', 3550, - 't', 3540, - 'x', 3529, - '{', 2000, + 'a', 3461, + 'b', 3453, + 'e', 3398, + 'f', 3434, + 'i', 3416, + 'm', 3479, + 'n', 3486, + 'o', 3400, + 's', 3509, + 't', 3499, + 'x', 3488, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(309); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 47: ADVANCE_MAP( - '!', 3451, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3411, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2156, - ',', 3211, - '-', 1892, - '.', 2481, - '/', 2120, - '0', 2394, - '<', 2213, - '=', 3453, - '>', 1874, - 'I', 3561, - 'N', 3557, - '[', 1834, - ']', 1838, - '_', 3467, + '(', 1806, + '*', 2051, + '+', 2118, + ',', 3171, + '-', 1859, + '.', 2443, + '/', 2082, + '0', 2356, + '<', 2175, + '=', 3413, + '>', 1841, + 'I', 3520, + 'N', 3516, + '[', 1801, + ']', 1805, + '_', 3427, '`', 834, - 'a', 3502, - 'b', 3493, - 'e', 3438, - 'f', 3474, - 'i', 3456, - 'm', 3520, - 'n', 3527, - 'o', 3440, - 's', 3550, - 't', 3540, - 'x', 3529, - '{', 2000, + 'a', 3461, + 'b', 3453, + 'e', 3398, + 'f', 3434, + 'i', 3416, + 'm', 3479, + 'n', 3486, + 'o', 3400, + 's', 3509, + 't', 3499, + 'x', 3488, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 48: ADVANCE_MAP( - '!', 3451, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3411, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2157, - ',', 1835, - '-', 1902, - '.', 2481, - '/', 2120, - '0', 2395, - '<', 2213, - '=', 3453, - '>', 1874, - 'I', 3562, - 'N', 3558, - '[', 1834, - '_', 2006, + '(', 1806, + '*', 2051, + '+', 2119, + ',', 1802, + '-', 1869, + '.', 2443, + '/', 2082, + '0', 2357, + '<', 2175, + '=', 3413, + '>', 1841, + 'I', 3521, + 'N', 3517, + '[', 1801, + '_', 1973, '`', 834, - 'a', 3503, - 'b', 3494, - 'e', 3442, - 'f', 3475, - 'i', 3457, - 'm', 3521, - 'n', 3528, - 'o', 3443, - 's', 3551, - 't', 3541, - 'x', 3530, - '{', 2000, - '}', 2001, + 'a', 3462, + 'b', 3454, + 'e', 3402, + 'f', 3435, + 'i', 3417, + 'm', 3480, + 'n', 3487, + 'o', 3403, + 's', 3510, + 't', 3500, + 'x', 3489, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(297); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2405); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2367); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != ']') ADVANCE(3437); + lookahead != ']') ADVANCE(3397); END_STATE(); case 49: ADVANCE_MAP( - '!', 3451, - '"', 2554, - '#', 4941, + '!', 3411, + '"', 2516, + '#', 4896, '\'', 791, - '*', 2084, - '+', 2152, - '-', 1890, - '/', 2120, - '<', 2213, - '=', 3453, - '>', 1874, - '_', 3463, + '*', 2051, + '+', 2114, + '-', 1857, + '/', 2082, + '<', 2175, + '=', 3413, + '>', 1841, + '_', 3423, '`', 834, - 'a', 3511, - 'b', 3496, - 'e', 3513, - 'i', 3508, - 'm', 3531, - 'n', 3535, - 'o', 3539, - 's', 3553, - 'x', 3534, + 'a', 3470, + 'b', 3456, + 'e', 3472, + 'i', 3467, + 'm', 3490, + 'n', 3494, + 'o', 3498, + 's', 3512, + 'x', 3493, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(183); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3565); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3524); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 50: ADVANCE_MAP( - '!', 3451, - '#', 4941, - '$', 1844, - ')', 1840, - '*', 2084, - '+', 2152, - ',', 1835, - '-', 1890, + '!', 3411, + '#', 4896, + '$', 1811, + ')', 1807, + '*', 2051, + '+', 2114, + ',', 1802, + '-', 1857, '.', 808, - '/', 2120, - ':', 1830, - '<', 2213, - '=', 3453, - '>', 1874, - ']', 1838, - '_', 3465, - 'a', 3506, - 'b', 3492, - 'e', 3510, - 'i', 3507, - 'm', 3524, - 'n', 3523, - 'o', 3544, - 's', 3552, - 'x', 3519, + '/', 2082, + ':', 1797, + '<', 2175, + '=', 3413, + '>', 1841, + ']', 1805, + '_', 3425, + 'a', 3465, + 'b', 3452, + 'e', 3469, + 'i', 3466, + 'm', 3483, + 'n', 3482, + 'o', 3503, + 's', 3511, + 'x', 3478, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(189); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3564); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3523); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 51: ADVANCE_MAP( - '!', 3451, - '#', 4941, - '$', 1844, - ')', 1840, - '*', 2084, - '+', 2152, - ',', 1835, - '-', 1890, + '!', 3411, + '#', 4896, + '$', 1811, + ')', 1807, + '*', 2051, + '+', 2114, + ',', 1802, + '-', 1857, '.', 808, - '/', 2120, - '<', 2213, - '=', 3453, - '>', 1874, - ']', 1838, - '_', 3465, - 'a', 3506, - 'b', 3492, - 'e', 3510, - 'i', 3507, - 'm', 3524, - 'n', 3523, - 'o', 3544, - 's', 3552, - 'x', 3519, + '/', 2082, + '<', 2175, + '=', 3413, + '>', 1841, + ']', 1805, + '_', 3425, + 'a', 3465, + 'b', 3452, + 'e', 3469, + 'i', 3466, + 'm', 3483, + 'n', 3482, + 'o', 3503, + 's', 3511, + 'x', 3478, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(190); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3564); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3523); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 52: ADVANCE_MAP( - '!', 3451, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2152, - ',', 1835, - '-', 1890, + '!', 3411, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2114, + ',', 1802, + '-', 1857, '.', 808, - '/', 2120, - ':', 1830, - '<', 2213, - '=', 3453, - '>', 1874, - '_', 3465, - 'a', 3506, - 'b', 3492, - 'e', 3510, - 'i', 3507, - 'm', 3524, - 'n', 3523, - 'o', 3544, - 's', 3552, - 'x', 3519, - '|', 1841, + '/', 2082, + ':', 1797, + '<', 2175, + '=', 3413, + '>', 1841, + '_', 3425, + 'a', 3465, + 'b', 3452, + 'e', 3469, + 'i', 3466, + 'm', 3483, + 'n', 3482, + 'o', 3503, + 's', 3511, + 'x', 3478, + '|', 1808, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(199); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3564); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3523); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(3437); + (lookahead < '_' || '}' < lookahead)) ADVANCE(3397); END_STATE(); case 53: ADVANCE_MAP( - '!', 3451, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2152, - ',', 1835, - '-', 1890, + '!', 3411, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2114, + ',', 1802, + '-', 1857, '.', 808, - '/', 2120, - '<', 2213, - '=', 3453, - '>', 1874, - '_', 3465, - 'a', 3506, - 'b', 3492, - 'e', 3510, - 'i', 3507, - 'm', 3524, - 'n', 3523, - 'o', 3544, - 's', 3552, - 'x', 3519, - '|', 1841, + '/', 2082, + '<', 2175, + '=', 3413, + '>', 1841, + '_', 3425, + 'a', 3465, + 'b', 3452, + 'e', 3469, + 'i', 3466, + 'm', 3483, + 'n', 3482, + 'o', 3503, + 's', 3511, + 'x', 3478, + '|', 1808, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(200); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3564); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3523); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(3437); + (lookahead < '_' || '}' < lookahead)) ADVANCE(3397); END_STATE(); case 54: ADVANCE_MAP( - '!', 3451, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2152, - '-', 1890, - '.', 2363, - '/', 2120, - '<', 2213, - '=', 3453, - '>', 1874, - '_', 3466, - 'a', 3504, - 'b', 3491, - 'e', 3509, - 'i', 3505, - 'm', 3522, - 'n', 3536, - 'o', 3542, - 's', 3549, - 'x', 3517, - '{', 2000, + '!', 3411, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2114, + '-', 1857, + '.', 2325, + '/', 2082, + '<', 2175, + '=', 3413, + '>', 1841, + '_', 3426, + 'a', 3463, + 'b', 3451, + 'e', 3468, + 'i', 3464, + 'm', 3481, + 'n', 3495, + 'o', 3501, + 's', 3508, + 'x', 3476, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(207); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 55: ADVANCE_MAP( - '!', 3451, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2152, - '-', 1889, - '/', 2120, - '<', 2213, - '=', 3453, - '>', 1874, - '_', 3465, - 'a', 3506, - 'b', 3492, - 'e', 3510, - 'i', 3507, - 'm', 3524, - 'n', 3523, - 'o', 3544, - 's', 3552, - 'x', 3519, + '!', 3411, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2114, + '-', 1856, + '/', 2082, + '<', 2175, + '=', 3413, + '>', 1841, + '_', 3425, + 'a', 3465, + 'b', 3452, + 'e', 3469, + 'i', 3466, + 'm', 3483, + 'n', 3482, + 'o', 3503, + 's', 3511, + 'x', 3478, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(212); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3564); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3523); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 56: ADVANCE_MAP( - '!', 3451, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2152, - '-', 1889, - '/', 2120, - '<', 2213, - '=', 3453, - '>', 1874, - '_', 3466, - 'a', 3504, - 'b', 3491, - 'e', 3509, - 'i', 3505, - 'm', 3522, - 'n', 3536, - 'o', 3542, - 's', 3549, - 'x', 3517, - '{', 2000, + '!', 3411, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2114, + '-', 1856, + '/', 2082, + '<', 2175, + '=', 3413, + '>', 1841, + '_', 3426, + 'a', 3463, + 'b', 3451, + 'e', 3468, + 'i', 3464, + 'm', 3481, + 'n', 3495, + 'o', 3501, + 's', 3508, + 'x', 3476, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(211); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 57: ADVANCE_MAP( - '!', 3451, - '#', 4941, - '*', 2084, - '+', 2152, - ',', 1835, - '-', 1889, - '/', 2120, - '<', 2213, - '=', 3453, - '>', 1874, - '_', 3466, - 'a', 3504, - 'b', 3491, - 'e', 3509, - 'i', 3505, - 'm', 3522, - 'n', 3536, - 'o', 3542, - 's', 3549, - 'x', 3517, - '}', 2001, + '!', 3411, + '#', 4896, + '*', 2051, + '+', 2114, + ',', 1802, + '-', 1856, + '/', 2082, + '<', 2175, + '=', 3413, + '>', 1841, + '_', 3426, + 'a', 3463, + 'b', 3451, + 'e', 3468, + 'i', 3464, + 'm', 3481, + 'n', 3495, + 'o', 3501, + 's', 3508, + 'x', 3476, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(220); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3397); END_STATE(); case 58: ADVANCE_MAP( - '!', 3451, - '#', 4941, - '*', 2084, - '+', 2152, - ',', 3211, - '-', 1889, - '/', 2120, - '<', 2213, - '=', 3453, - '>', 1874, - ']', 1838, - '_', 3466, - 'a', 3504, - 'b', 3491, - 'e', 3509, - 'i', 3505, - 'm', 3522, - 'n', 3536, - 'o', 3542, - 's', 3549, - 'x', 3517, - '}', 2001, + '!', 3411, + '#', 4896, + '*', 2051, + '+', 2114, + ',', 3171, + '-', 1856, + '/', 2082, + '<', 2175, + '=', 3413, + '>', 1841, + ']', 1805, + '_', 3426, + 'a', 3463, + 'b', 3451, + 'e', 3468, + 'i', 3464, + 'm', 3481, + 'n', 3495, + 'o', 3501, + 's', 3508, + 'x', 3476, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + lookahead == ' ') ADVANCE(3173); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); if (lookahead != 0 && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && lookahead != '[' && (lookahead < '_' || 'b' < lookahead) && - lookahead != '{') ADVANCE(3437); + lookahead != '{') ADVANCE(3397); END_STATE(); case 59: ADVANCE_MAP( - '!', 3451, - '#', 4941, - '*', 2084, - '+', 2152, - '-', 1890, - '/', 2120, - '<', 2213, - '=', 3453, - '>', 1874, - '_', 3465, - 'a', 3506, - 'b', 3492, - 'e', 3510, - 'i', 3507, - 'm', 3524, - 'n', 3523, - 'o', 3544, - 's', 3552, - 'x', 3519, + '!', 3411, + '#', 4896, + '*', 2051, + '+', 2114, + '-', 1857, + '/', 2082, + '<', 2175, + '=', 3413, + '>', 1841, + '_', 3425, + 'a', 3465, + 'b', 3452, + 'e', 3469, + 'i', 3466, + 'm', 3483, + 'n', 3482, + 'o', 3503, + 's', 3511, + 'x', 3478, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(228); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3564); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3523); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 60: ADVANCE_MAP( - '!', 3451, - '#', 4941, - '*', 2084, - '+', 2152, - '-', 1890, - '/', 2120, - '<', 2213, - '=', 3453, - '>', 1874, - '_', 3466, - 'a', 3504, - 'b', 3491, - 'e', 3509, - 'i', 3505, - 'm', 3522, - 'n', 3536, - 'o', 3542, - 's', 3549, - 'x', 3517, - '{', 2000, + '!', 3411, + '#', 4896, + '*', 2051, + '+', 2114, + '-', 1857, + '/', 2082, + '<', 2175, + '=', 3413, + '>', 1841, + '_', 3426, + 'a', 3463, + 'b', 3451, + 'e', 3468, + 'i', 3464, + 'm', 3481, + 'n', 3495, + 'o', 3501, + 's', 3508, + 'x', 3476, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(227); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 61: ADVANCE_MAP( - '!', 3451, - '#', 4941, - '*', 2084, - '+', 2152, - '-', 1889, - '/', 2120, - '<', 2213, - '=', 3452, - '>', 1874, - '_', 3466, - 'a', 3504, - 'b', 3491, - 'e', 3509, - 'i', 3505, - 'm', 3522, - 'n', 3536, - 'o', 3542, - 's', 3549, - 'x', 3517, + '!', 3411, + '#', 4896, + '*', 2051, + '+', 2114, + '-', 1856, + '/', 2082, + '<', 2175, + '=', 3412, + '>', 1841, + '_', 3426, + 'a', 3463, + 'b', 3451, + 'e', 3468, + 'i', 3464, + 'm', 3481, + 'n', 3495, + 'o', 3501, + 's', 3508, + 'x', 3476, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(229); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 62: ADVANCE_MAP( - '!', 3451, - '#', 4941, - '*', 2084, - '+', 2152, - '-', 1889, - '/', 2120, - '<', 2213, - '=', 3453, - '>', 1874, - '_', 3466, - 'a', 3504, - 'b', 3491, - 'e', 3509, - 'i', 3505, - 'm', 3522, - 'n', 3536, - 'o', 3542, - 's', 3549, - 'x', 3517, - '{', 2000, + '!', 3411, + '#', 4896, + '*', 2051, + '+', 2114, + '-', 1856, + '/', 2082, + '<', 2175, + '=', 3413, + '>', 1841, + '_', 3426, + 'a', 3463, + 'b', 3451, + 'e', 3468, + 'i', 3464, + 'm', 3481, + 'n', 3495, + 'o', 3501, + 's', 3508, + 'x', 3476, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(230); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 63: ADVANCE_MAP( - '!', 3221, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3181, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2155, - ',', 1835, - '-', 1906, - '.', 2364, - '/', 2120, - '0', 2462, - '<', 2213, - '=', 3222, - '>', 1874, - 'B', 2516, - 'E', 1334, - 'G', 1348, - 'I', 1556, - 'K', 1348, - 'M', 1348, - 'N', 1550, - 'P', 1348, - 'T', 1348, - '_', 1350, + '(', 1806, + '*', 2051, + '+', 2117, + ',', 1802, + '-', 1873, + '.', 2326, + '/', 2082, + '0', 2424, + '<', 2175, + '=', 3182, + '>', 1841, + 'B', 2478, + 'E', 1307, + 'G', 1318, + 'I', 1523, + 'K', 1318, + 'M', 1318, + 'N', 1517, + 'P', 1318, + 'T', 1318, + '_', 1320, '`', 834, - 'a', 1438, - 'b', 2512, - 'c', 1366, - 'd', 1363, - 'e', 1333, - 'f', 1470, - 'g', 1347, - 'h', 1423, - 'i', 1349, - 'k', 1347, - 'l', 1380, - 'm', 1341, - 'n', 1393, - 'o', 1487, - 'p', 1347, - 'r', 1382, - 's', 1399, - 't', 1346, - 'u', 1506, - 'w', 1420, - 'x', 1478, - '}', 2001, - 0xb5, 1505, + 'a', 1407, + 'b', 2474, + 'c', 1336, + 'd', 1333, + 'e', 1306, + 'f', 1438, + 'g', 1317, + 'h', 1392, + 'i', 1319, + 'k', 1317, + 'l', 1350, + 'm', 1314, + 'n', 1363, + 'o', 1454, + 'p', 1317, + 'r', 1352, + 's', 1369, + 't', 1316, + 'u', 1473, + 'w', 1389, + 'x', 1445, + '}', 1968, + 0xb5, 1472, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(64); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 64: ADVANCE_MAP( - '!', 3221, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3181, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2155, - ',', 1835, - '-', 1906, - '.', 2477, - '/', 2120, - '0', 2462, - '<', 2213, - '=', 3222, - '>', 1874, - 'I', 1556, - 'N', 1550, - '_', 1350, + '(', 1806, + '*', 2051, + '+', 2117, + ',', 1802, + '-', 1873, + '.', 2439, + '/', 2082, + '0', 2424, + '<', 2175, + '=', 3182, + '>', 1841, + 'I', 1523, + 'N', 1517, + '_', 1320, '`', 834, - 'a', 1438, - 'b', 1429, - 'c', 1366, - 'd', 1379, - 'e', 1447, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1356, - 'n', 1394, - 'o', 1487, - 'r', 1382, - 's', 1467, - 't', 1496, - 'u', 1508, - 'w', 1421, - 'x', 1478, - '}', 2001, + 'a', 1407, + 'b', 1398, + 'c', 1336, + 'd', 1349, + 'e', 1415, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1326, + 'n', 1364, + 'o', 1454, + 'r', 1352, + 's', 1435, + 't', 1463, + 'u', 1475, + 'w', 1390, + 'x', 1445, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(64); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 65: ADVANCE_MAP( - '!', 3221, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3181, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2155, - ',', 3211, - '-', 1906, - '.', 2364, - '/', 2120, - '0', 2462, - '<', 2213, - '=', 3222, - '>', 1874, - '?', 2102, - 'I', 1556, - 'N', 1550, - '_', 1350, + '(', 1806, + '*', 2051, + '+', 2117, + ',', 3171, + '-', 1873, + '.', 2326, + '/', 2082, + '0', 2424, + '<', 2175, + '=', 3182, + '>', 1841, + '?', 2064, + 'I', 1523, + 'N', 1517, + '_', 1320, '`', 834, - 'a', 1438, - 'b', 1429, - 'c', 1366, - 'd', 1379, - 'e', 1447, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1356, - 'n', 1394, - 'o', 1487, - 'r', 1382, - 's', 1467, - 't', 1496, - 'u', 1508, - 'w', 1421, - 'x', 1478, - '}', 2001, + 'a', 1407, + 'b', 1398, + 'c', 1336, + 'd', 1349, + 'e', 1415, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1326, + 'n', 1364, + 'o', 1454, + 'r', 1352, + 's', 1435, + 't', 1463, + 'u', 1475, + 'w', 1390, + 'x', 1445, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || '?' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 66: ADVANCE_MAP( - '!', 3221, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3181, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2155, - ',', 3211, - '-', 1906, - '.', 2364, - '/', 2120, - '0', 2462, - '<', 2213, - '=', 3222, - '>', 1874, - 'B', 2516, - 'E', 1334, - 'G', 1348, - 'I', 1556, - 'K', 1348, - 'M', 1348, - 'N', 1550, - 'P', 1348, - 'T', 1348, - '_', 1350, + '(', 1806, + '*', 2051, + '+', 2117, + ',', 3171, + '-', 1873, + '.', 2326, + '/', 2082, + '0', 2424, + '<', 2175, + '=', 3182, + '>', 1841, + 'B', 2478, + 'E', 1307, + 'G', 1318, + 'I', 1523, + 'K', 1318, + 'M', 1318, + 'N', 1517, + 'P', 1318, + 'T', 1318, + '_', 1320, '`', 834, - 'a', 1438, - 'b', 2512, - 'c', 1366, - 'd', 1363, - 'e', 1333, - 'f', 1470, - 'g', 1347, - 'h', 1423, - 'i', 1349, - 'k', 1347, - 'l', 1380, - 'm', 1341, - 'n', 1393, - 'o', 1487, - 'p', 1347, - 'r', 1382, - 's', 1399, - 't', 1346, - 'u', 1506, - 'w', 1420, - 'x', 1478, - '}', 2001, - 0xb5, 1505, + 'a', 1407, + 'b', 2474, + 'c', 1336, + 'd', 1333, + 'e', 1306, + 'f', 1438, + 'g', 1317, + 'h', 1392, + 'i', 1319, + 'k', 1317, + 'l', 1350, + 'm', 1314, + 'n', 1363, + 'o', 1454, + 'p', 1317, + 'r', 1352, + 's', 1369, + 't', 1316, + 'u', 1473, + 'w', 1389, + 'x', 1445, + '}', 1968, + 0xb5, 1472, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 67: ADVANCE_MAP( - '!', 3221, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3181, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2155, - ',', 3211, - '-', 1906, - '.', 2364, - '/', 2120, - '0', 2462, - '<', 2213, - '=', 3222, - '>', 1874, - 'I', 1556, - 'N', 1550, - '_', 1350, + '(', 1806, + '*', 2051, + '+', 2117, + ',', 3171, + '-', 1873, + '.', 2326, + '/', 2082, + '0', 2424, + '<', 2175, + '=', 3182, + '>', 1841, + 'I', 1523, + 'N', 1517, + '_', 1320, '`', 834, - 'a', 1438, - 'b', 1429, - 'c', 1366, - 'd', 1379, - 'e', 1447, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1356, - 'n', 1394, - 'o', 1487, - 'r', 1382, - 's', 1467, - 't', 1496, - 'u', 1508, - 'w', 1421, - 'x', 1478, - '}', 2001, + 'a', 1407, + 'b', 1398, + 'c', 1336, + 'd', 1349, + 'e', 1415, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1326, + 'n', 1364, + 'o', 1454, + 'r', 1352, + 's', 1435, + 't', 1463, + 'u', 1475, + 'w', 1390, + 'x', 1445, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 68: ADVANCE_MAP( - '!', 3221, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3181, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2155, - ',', 3211, - '-', 1906, - '.', 2477, - '/', 2120, - '0', 2462, - '<', 2213, - '=', 3222, - '>', 1874, - 'I', 1556, - 'N', 1550, - '[', 2535, - '_', 1350, + '(', 1806, + '*', 2051, + '+', 2117, + ',', 3171, + '-', 1873, + '.', 2439, + '/', 2082, + '0', 2424, + '<', 2175, + '=', 3182, + '>', 1841, + 'I', 1523, + 'N', 1517, + '[', 2497, + '_', 1320, '`', 834, - 'a', 1438, - 'b', 1429, - 'c', 1366, - 'd', 1379, - 'e', 1447, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1356, - 'n', 1394, - 'o', 1487, - 'r', 1382, - 's', 1467, - 't', 1496, - 'u', 1508, - 'w', 1421, - 'x', 1478, - '}', 2001, + 'a', 1407, + 'b', 1398, + 'c', 1336, + 'd', 1349, + 'e', 1415, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1326, + 'n', 1364, + 'o', 1454, + 'r', 1352, + 's', 1435, + 't', 1463, + 'u', 1475, + 'w', 1390, + 'x', 1445, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 69: ADVANCE_MAP( - '!', 3221, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3181, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2155, - ',', 3211, - '-', 1906, - '.', 2363, - '/', 2120, - '0', 2462, - '<', 2213, - '=', 3222, - '>', 1874, - '?', 2102, - 'I', 1556, - 'N', 1550, - '_', 1350, + '(', 1806, + '*', 2051, + '+', 2117, + ',', 3171, + '-', 1873, + '.', 2325, + '/', 2082, + '0', 2424, + '<', 2175, + '=', 3182, + '>', 1841, + '?', 2064, + 'I', 1523, + 'N', 1517, + '_', 1320, '`', 834, - 'a', 1438, - 'b', 1429, - 'c', 1366, - 'd', 1379, - 'e', 1447, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1356, - 'n', 1394, - 'o', 1487, - 'r', 1382, - 's', 1467, - 't', 1496, - 'u', 1508, - 'w', 1421, - 'x', 1478, - '}', 2001, + 'a', 1407, + 'b', 1398, + 'c', 1336, + 'd', 1349, + 'e', 1415, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1326, + 'n', 1364, + 'o', 1454, + 'r', 1352, + 's', 1435, + 't', 1463, + 'u', 1475, + 'w', 1390, + 'x', 1445, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || '?' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 70: ADVANCE_MAP( - '!', 3221, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3181, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2155, - ',', 3211, - '-', 1906, - '.', 2363, - '/', 2120, - '0', 2462, - '<', 2213, - '=', 3222, - '>', 1874, - 'I', 1556, - 'N', 1550, - '_', 1350, + '(', 1806, + '*', 2051, + '+', 2117, + ',', 3171, + '-', 1873, + '.', 2325, + '/', 2082, + '0', 2424, + '<', 2175, + '=', 3182, + '>', 1841, + 'I', 1523, + 'N', 1517, + '_', 1320, '`', 834, - 'a', 1438, - 'b', 1429, - 'c', 1366, - 'd', 1379, - 'e', 1447, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1356, - 'n', 1394, - 'o', 1487, - 'r', 1382, - 's', 1467, - 't', 1496, - 'u', 1508, - 'w', 1421, - 'x', 1478, - '}', 2001, + 'a', 1407, + 'b', 1398, + 'c', 1336, + 'd', 1349, + 'e', 1415, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1326, + 'n', 1364, + 'o', 1454, + 'r', 1352, + 's', 1435, + 't', 1463, + 'u', 1475, + 'w', 1390, + 'x', 1445, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 71: ADVANCE_MAP( - '!', 3221, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3181, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2155, - ',', 3211, - '-', 1906, - '.', 2480, - '/', 2120, - '0', 2462, - '<', 2213, - '=', 3222, - '>', 1874, - 'B', 2516, - 'E', 1348, - 'G', 1348, - 'I', 1556, - 'K', 1348, - 'M', 1348, - 'N', 1550, - 'P', 1348, - 'T', 1348, - '_', 1350, + '(', 1806, + '*', 2051, + '+', 2117, + ',', 3171, + '-', 1873, + '.', 2442, + '/', 2082, + '0', 2424, + '<', 2175, + '=', 3182, + '>', 1841, + 'B', 2478, + 'E', 1307, + 'G', 1318, + 'I', 1523, + 'K', 1318, + 'M', 1318, + 'N', 1517, + 'P', 1318, + 'T', 1318, + '_', 1320, '`', 834, - 'a', 1438, - 'b', 2512, - 'c', 1366, - 'd', 1363, - 'e', 1343, - 'f', 1470, - 'g', 1347, - 'h', 1423, - 'i', 1349, - 'k', 1347, - 'l', 1380, - 'm', 1341, - 'n', 1393, - 'o', 1487, - 'p', 1347, - 'r', 1382, - 's', 1399, - 't', 1346, - 'u', 1506, - 'w', 1420, - 'x', 1478, - '}', 2001, - 0xb5, 1505, + 'a', 1407, + 'b', 2474, + 'c', 1336, + 'd', 1333, + 'e', 1306, + 'f', 1438, + 'g', 1317, + 'h', 1392, + 'i', 1319, + 'k', 1317, + 'l', 1350, + 'm', 1314, + 'n', 1363, + 'o', 1454, + 'p', 1317, + 'r', 1352, + 's', 1369, + 't', 1316, + 'u', 1473, + 'w', 1389, + 'x', 1445, + '}', 1968, + 0xb5, 1472, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 72: ADVANCE_MAP( - '!', 3221, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3181, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2155, - ',', 3211, - '-', 1906, - '.', 2480, - '/', 2120, - '0', 2462, - '<', 2213, - '=', 3222, - '>', 1874, - 'B', 2516, - 'E', 1334, - 'G', 1348, - 'I', 1556, - 'K', 1348, - 'M', 1348, - 'N', 1550, - 'P', 1348, - 'T', 1348, - '_', 1350, + '(', 1806, + '*', 2051, + '+', 2117, + ',', 3171, + '-', 1873, + '.', 2442, + '/', 2082, + '0', 2424, + '<', 2175, + '=', 3182, + '>', 1841, + 'B', 2478, + 'E', 1318, + 'G', 1318, + 'I', 1523, + 'K', 1318, + 'M', 1318, + 'N', 1517, + 'P', 1318, + 'T', 1318, + '_', 1320, '`', 834, - 'a', 1438, - 'b', 2512, - 'c', 1366, - 'd', 1363, - 'e', 1333, - 'f', 1470, - 'g', 1347, - 'h', 1423, - 'i', 1349, - 'k', 1347, - 'l', 1380, - 'm', 1341, - 'n', 1393, - 'o', 1487, - 'p', 1347, - 'r', 1382, - 's', 1399, - 't', 1346, - 'u', 1506, - 'w', 1420, - 'x', 1478, - '}', 2001, - 0xb5, 1505, + 'a', 1407, + 'b', 2474, + 'c', 1336, + 'd', 1333, + 'e', 1315, + 'f', 1438, + 'g', 1317, + 'h', 1392, + 'i', 1319, + 'k', 1317, + 'l', 1350, + 'm', 1314, + 'n', 1363, + 'o', 1454, + 'p', 1317, + 'r', 1352, + 's', 1369, + 't', 1316, + 'u', 1473, + 'w', 1389, + 'x', 1445, + '}', 1968, + 0xb5, 1472, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 73: ADVANCE_MAP( - '!', 3221, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3181, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2155, - ',', 3211, - '-', 1906, - '.', 2480, - '/', 2120, - '0', 2462, - '<', 2213, - '=', 3222, - '>', 1874, - 'I', 1556, - 'N', 1550, - '_', 1350, + '(', 1806, + '*', 2051, + '+', 2117, + ',', 3171, + '-', 1873, + '.', 2442, + '/', 2082, + '0', 2424, + '<', 2175, + '=', 3182, + '>', 1841, + 'I', 1523, + 'N', 1517, + '_', 1320, '`', 834, - 'a', 1438, - 'b', 1429, - 'c', 1366, - 'd', 1379, - 'e', 1447, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1356, - 'n', 1394, - 'o', 1487, - 'r', 1382, - 's', 1467, - 't', 1496, - 'u', 1508, - 'w', 1421, - 'x', 1478, - '}', 2001, + 'a', 1407, + 'b', 1398, + 'c', 1336, + 'd', 1349, + 'e', 1415, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1326, + 'n', 1364, + 'o', 1454, + 'r', 1352, + 's', 1435, + 't', 1463, + 'u', 1475, + 'w', 1390, + 'x', 1445, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 74: ADVANCE_MAP( - '!', 3221, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3181, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2155, - ',', 3211, - '-', 1906, - '.', 2480, - '/', 2120, - '0', 2396, - '<', 2213, - '=', 3222, - '>', 1874, - 'B', 2516, - 'E', 1334, - 'G', 1348, - 'I', 1556, - 'K', 1348, - 'M', 1348, - 'N', 1550, - 'P', 1348, - 'T', 1348, - '_', 1352, + '(', 1806, + '*', 2051, + '+', 2117, + ',', 3171, + '-', 1873, + '.', 2442, + '/', 2082, + '0', 2358, + '<', 2175, + '=', 3182, + '>', 1841, + 'B', 2478, + 'E', 1307, + 'G', 1318, + 'I', 1523, + 'K', 1318, + 'M', 1318, + 'N', 1517, + 'P', 1318, + 'T', 1318, + '_', 1322, '`', 834, - 'a', 1438, - 'b', 2512, - 'c', 1366, - 'd', 1363, - 'e', 1333, - 'f', 1470, - 'g', 1347, - 'h', 1423, - 'i', 1349, - 'k', 1347, - 'l', 1380, - 'm', 1341, - 'n', 1393, - 'o', 1487, - 'p', 1347, - 'r', 1382, - 's', 1399, - 't', 1346, - 'u', 1506, - 'w', 1420, - 'x', 1478, - '}', 2001, - 0xb5, 1505, + 'a', 1407, + 'b', 2474, + 'c', 1336, + 'd', 1333, + 'e', 1306, + 'f', 1438, + 'g', 1317, + 'h', 1392, + 'i', 1319, + 'k', 1317, + 'l', 1350, + 'm', 1314, + 'n', 1363, + 'o', 1454, + 'p', 1317, + 'r', 1352, + 's', 1369, + 't', 1316, + 'u', 1473, + 'w', 1389, + 'x', 1445, + '}', 1968, + 0xb5, 1472, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 75: ADVANCE_MAP( - '!', 3221, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3181, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2155, - '-', 1906, - '.', 2364, - '/', 2120, - '0', 2462, - '<', 2213, - '=', 3222, - '>', 1874, - '?', 2102, - 'I', 1556, - 'N', 1550, - '_', 1350, + '(', 1806, + '*', 2051, + '+', 2117, + '-', 1873, + '.', 2326, + '/', 2082, + '0', 2424, + '<', 2175, + '=', 3182, + '>', 1841, + '?', 2064, + 'I', 1523, + 'N', 1517, + '_', 1320, '`', 834, - 'a', 1438, - 'b', 1429, - 'c', 1366, - 'd', 1379, - 'e', 1447, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1356, - 'n', 1394, - 'o', 1487, - 'r', 1382, - 's', 1467, - 't', 1496, - 'u', 1508, - 'w', 1421, - 'x', 1478, - '}', 2001, + 'a', 1407, + 'b', 1398, + 'c', 1336, + 'd', 1349, + 'e', 1415, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1326, + 'n', 1364, + 'o', 1454, + 'r', 1352, + 's', 1435, + 't', 1463, + 'u', 1475, + 'w', 1390, + 'x', 1445, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(78); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || '?' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 76: ADVANCE_MAP( - '!', 3221, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3181, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2155, - '-', 1906, - '.', 2364, - '/', 2120, - '0', 2462, - '<', 2213, - '=', 3222, - '>', 1874, - 'I', 1556, - 'N', 1550, - '_', 1350, + '(', 1806, + '*', 2051, + '+', 2117, + '-', 1873, + '.', 2326, + '/', 2082, + '0', 2424, + '<', 2175, + '=', 3182, + '>', 1841, + 'I', 1523, + 'N', 1517, + '_', 1320, '`', 834, - 'a', 1438, - 'b', 1429, - 'c', 1366, - 'd', 1379, - 'e', 1447, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1356, - 'n', 1394, - 'o', 1487, - 'r', 1382, - 's', 1467, - 't', 1496, - 'u', 1508, - 'w', 1421, - 'x', 1478, - '}', 2001, + 'a', 1407, + 'b', 1398, + 'c', 1336, + 'd', 1349, + 'e', 1415, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1326, + 'n', 1364, + 'o', 1454, + 'r', 1352, + 's', 1435, + 't', 1463, + 'u', 1475, + 'w', 1390, + 'x', 1445, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(81); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 77: ADVANCE_MAP( - '!', 3221, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3181, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2155, - '-', 1906, - '.', 2477, - '/', 2120, - '0', 2462, - ':', 1830, - '<', 2213, - '=', 3222, - '>', 1874, - 'I', 1556, - 'N', 1550, - '_', 1350, + '(', 1806, + '*', 2051, + '+', 2117, + '-', 1873, + '.', 2439, + '/', 2082, + '0', 2424, + ':', 1797, + '<', 2175, + '=', 3182, + '>', 1841, + 'I', 1523, + 'N', 1517, + '_', 1320, '`', 834, - 'a', 1438, - 'b', 1429, - 'c', 1366, - 'd', 1379, - 'e', 1447, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1356, - 'n', 1394, - 'o', 1487, - 'r', 1382, - 's', 1467, - 't', 1496, - 'u', 1508, - 'w', 1421, - 'x', 1478, - '}', 2001, + 'a', 1407, + 'b', 1398, + 'c', 1336, + 'd', 1349, + 'e', 1415, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1326, + 'n', 1364, + 'o', 1454, + 'r', 1352, + 's', 1435, + 't', 1463, + 'u', 1475, + 'w', 1390, + 'x', 1445, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(77); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 78: ADVANCE_MAP( - '!', 3221, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3181, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2155, - '-', 1906, - '.', 2477, - '/', 2120, - '0', 2462, - '<', 2213, - '=', 3222, - '>', 1874, - '?', 2102, - 'I', 1556, - 'N', 1550, - '_', 1350, + '(', 1806, + '*', 2051, + '+', 2117, + '-', 1873, + '.', 2439, + '/', 2082, + '0', 2424, + '<', 2175, + '=', 3182, + '>', 1841, + '?', 2064, + 'I', 1523, + 'N', 1517, + '_', 1320, '`', 834, - 'a', 1438, - 'b', 1429, - 'c', 1366, - 'd', 1379, - 'e', 1447, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1356, - 'n', 1394, - 'o', 1487, - 'r', 1382, - 's', 1467, - 't', 1496, - 'u', 1508, - 'w', 1421, - 'x', 1478, - '}', 2001, + 'a', 1407, + 'b', 1398, + 'c', 1336, + 'd', 1349, + 'e', 1415, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1326, + 'n', 1364, + 'o', 1454, + 'r', 1352, + 's', 1435, + 't', 1463, + 'u', 1475, + 'w', 1390, + 'x', 1445, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(78); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || '?' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 79: ADVANCE_MAP( - '!', 3221, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3181, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2155, - '-', 1906, - '.', 2477, - '/', 2120, - '0', 2462, - '<', 2213, - '=', 3222, - '>', 1874, - 'I', 1556, - 'N', 1550, - '[', 2535, - '_', 1350, + '(', 1806, + '*', 2051, + '+', 2117, + '-', 1873, + '.', 2439, + '/', 2082, + '0', 2424, + '<', 2175, + '=', 3182, + '>', 1841, + 'I', 1523, + 'N', 1517, + '[', 2497, + '_', 1320, '`', 834, - 'a', 1438, - 'b', 1429, - 'c', 1366, - 'd', 1379, - 'e', 1447, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1356, - 'n', 1394, - 'o', 1487, - 'r', 1382, - 's', 1467, - 't', 1496, - 'u', 1508, - 'w', 1421, - 'x', 1478, - '}', 2001, + 'a', 1407, + 'b', 1398, + 'c', 1336, + 'd', 1349, + 'e', 1415, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1326, + 'n', 1364, + 'o', 1454, + 'r', 1352, + 's', 1435, + 't', 1463, + 'u', 1475, + 'w', 1390, + 'x', 1445, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(81); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 80: ADVANCE_MAP( - '!', 3221, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3181, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2155, - '-', 1906, - '.', 2477, - '/', 2120, - '0', 2462, - '<', 2213, - '=', 3222, - '>', 1874, - 'I', 1556, - 'N', 1550, - '_', 1350, + '(', 1806, + '*', 2051, + '+', 2117, + '-', 1873, + '.', 2439, + '/', 2082, + '0', 2424, + '<', 2175, + '=', 3182, + '>', 1841, + 'I', 1523, + 'N', 1517, + '_', 1320, '`', 834, - 'a', 1438, - 'b', 1429, - 'c', 1366, - 'd', 1379, - 'e', 1447, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1356, - 'n', 1394, - 'o', 1487, - 'r', 1382, - 's', 1467, - 't', 1496, - 'u', 1508, - 'w', 1421, - 'x', 1478, - '{', 2000, - '}', 2001, + 'a', 1407, + 'b', 1398, + 'c', 1336, + 'd', 1349, + 'e', 1415, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1326, + 'n', 1364, + 'o', 1454, + 'r', 1352, + 's', 1435, + 't', 1463, + 'u', 1475, + 'w', 1390, + 'x', 1445, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(80); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && - lookahead != ']') ADVANCE(3244); + lookahead != ']') ADVANCE(3204); END_STATE(); case 81: ADVANCE_MAP( - '!', 3221, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3181, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2155, - '-', 1906, - '.', 2477, - '/', 2120, - '0', 2462, - '<', 2213, - '=', 3222, - '>', 1874, - 'I', 1556, - 'N', 1550, - '_', 1350, + '(', 1806, + '*', 2051, + '+', 2117, + '-', 1873, + '.', 2439, + '/', 2082, + '0', 2424, + '<', 2175, + '=', 3182, + '>', 1841, + 'I', 1523, + 'N', 1517, + '_', 1320, '`', 834, - 'a', 1438, - 'b', 1429, - 'c', 1366, - 'd', 1379, - 'e', 1447, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1356, - 'n', 1394, - 'o', 1487, - 'r', 1382, - 's', 1467, - 't', 1496, - 'u', 1508, - 'w', 1421, - 'x', 1478, - '}', 2001, + 'a', 1407, + 'b', 1398, + 'c', 1336, + 'd', 1349, + 'e', 1415, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1326, + 'n', 1364, + 'o', 1454, + 'r', 1352, + 's', 1435, + 't', 1463, + 'u', 1475, + 'w', 1390, + 'x', 1445, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(81); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 82: ADVANCE_MAP( - '!', 3221, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3181, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2155, - '-', 1906, - '.', 2363, - '/', 2120, - '0', 2462, - ':', 1830, - '<', 2213, - '=', 3222, - '>', 1874, - 'I', 1556, - 'N', 1550, - '_', 1350, + '(', 1806, + '*', 2051, + '+', 2117, + '-', 1873, + '.', 2325, + '/', 2082, + '0', 2424, + ':', 1797, + '<', 2175, + '=', 3182, + '>', 1841, + 'I', 1523, + 'N', 1517, + '_', 1320, '`', 834, - 'a', 1438, - 'b', 1429, - 'c', 1366, - 'd', 1379, - 'e', 1447, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1356, - 'n', 1394, - 'o', 1487, - 'r', 1382, - 's', 1467, - 't', 1496, - 'u', 1508, - 'w', 1421, - 'x', 1478, - '}', 2001, + 'a', 1407, + 'b', 1398, + 'c', 1336, + 'd', 1349, + 'e', 1415, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1326, + 'n', 1364, + 'o', 1454, + 'r', 1352, + 's', 1435, + 't', 1463, + 'u', 1475, + 'w', 1390, + 'x', 1445, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(77); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 83: ADVANCE_MAP( - '!', 3221, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3181, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2155, - '-', 1906, - '.', 2363, - '/', 2120, - '0', 2462, - '<', 2213, - '=', 3222, - '>', 1874, - '?', 2102, - 'I', 1556, - 'N', 1550, - '_', 1350, + '(', 1806, + '*', 2051, + '+', 2117, + '-', 1873, + '.', 2325, + '/', 2082, + '0', 2424, + '<', 2175, + '=', 3182, + '>', 1841, + '?', 2064, + 'I', 1523, + 'N', 1517, + '_', 1320, '`', 834, - 'a', 1438, - 'b', 1429, - 'c', 1366, - 'd', 1379, - 'e', 1447, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1356, - 'n', 1394, - 'o', 1487, - 'r', 1382, - 's', 1467, - 't', 1496, - 'u', 1508, - 'w', 1421, - 'x', 1478, - '}', 2001, + 'a', 1407, + 'b', 1398, + 'c', 1336, + 'd', 1349, + 'e', 1415, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1326, + 'n', 1364, + 'o', 1454, + 'r', 1352, + 's', 1435, + 't', 1463, + 'u', 1475, + 'w', 1390, + 'x', 1445, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(78); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || '?' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 84: ADVANCE_MAP( - '!', 3221, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3181, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2155, - '-', 1906, - '.', 2480, - '/', 2120, - '0', 2462, - '<', 2213, - '=', 3222, - '>', 1874, - 'B', 2516, - 'E', 1348, - 'G', 1348, - 'I', 1556, - 'K', 1348, - 'M', 1348, - 'N', 1550, - 'P', 1348, - 'T', 1348, - '_', 1350, + '(', 1806, + '*', 2051, + '+', 2117, + '-', 1873, + '.', 2442, + '/', 2082, + '0', 2424, + '<', 2175, + '=', 3182, + '>', 1841, + 'B', 2478, + 'E', 1307, + 'G', 1318, + 'I', 1523, + 'K', 1318, + 'M', 1318, + 'N', 1517, + 'P', 1318, + 'T', 1318, + '_', 1320, '`', 834, - 'a', 1438, - 'b', 2512, - 'c', 1366, - 'd', 1363, - 'e', 1343, - 'f', 1470, - 'g', 1347, - 'h', 1423, - 'i', 1349, - 'k', 1347, - 'l', 1380, - 'm', 1341, - 'n', 1393, - 'o', 1487, - 'p', 1347, - 'r', 1382, - 's', 1399, - 't', 1346, - 'u', 1506, - 'w', 1420, - 'x', 1478, - '}', 2001, - 0xb5, 1505, + 'a', 1407, + 'b', 2474, + 'c', 1336, + 'd', 1333, + 'e', 1306, + 'f', 1438, + 'g', 1317, + 'h', 1392, + 'i', 1319, + 'k', 1317, + 'l', 1350, + 'm', 1314, + 'n', 1363, + 'o', 1454, + 'p', 1317, + 'r', 1352, + 's', 1369, + 't', 1316, + 'u', 1473, + 'w', 1389, + 'x', 1445, + '}', 1968, + 0xb5, 1472, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(81); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 85: ADVANCE_MAP( - '!', 3221, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3181, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2155, - '-', 1906, - '.', 2480, - '/', 2120, - '0', 2462, - '<', 2213, - '=', 3222, - '>', 1874, - 'B', 2516, - 'E', 1334, - 'G', 1348, - 'I', 1556, - 'K', 1348, - 'M', 1348, - 'N', 1550, - 'P', 1348, - 'T', 1348, - '_', 1350, + '(', 1806, + '*', 2051, + '+', 2117, + '-', 1873, + '.', 2442, + '/', 2082, + '0', 2424, + '<', 2175, + '=', 3182, + '>', 1841, + 'B', 2478, + 'E', 1318, + 'G', 1318, + 'I', 1523, + 'K', 1318, + 'M', 1318, + 'N', 1517, + 'P', 1318, + 'T', 1318, + '_', 1320, '`', 834, - 'a', 1438, - 'b', 2512, - 'c', 1366, - 'd', 1363, - 'e', 1333, - 'f', 1470, - 'g', 1347, - 'h', 1423, - 'i', 1349, - 'k', 1347, - 'l', 1380, - 'm', 1341, - 'n', 1393, - 'o', 1487, - 'p', 1347, - 'r', 1382, - 's', 1399, - 't', 1346, - 'u', 1506, - 'w', 1420, - 'x', 1478, - '}', 2001, - 0xb5, 1505, + 'a', 1407, + 'b', 2474, + 'c', 1336, + 'd', 1333, + 'e', 1315, + 'f', 1438, + 'g', 1317, + 'h', 1392, + 'i', 1319, + 'k', 1317, + 'l', 1350, + 'm', 1314, + 'n', 1363, + 'o', 1454, + 'p', 1317, + 'r', 1352, + 's', 1369, + 't', 1316, + 'u', 1473, + 'w', 1389, + 'x', 1445, + '}', 1968, + 0xb5, 1472, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(81); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 86: ADVANCE_MAP( - '!', 3221, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3181, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2155, - '-', 1906, - '.', 2480, - '/', 2120, - '0', 2462, - '<', 2213, - '=', 3222, - '>', 1874, - 'I', 1556, - 'N', 1550, - '_', 1350, + '(', 1806, + '*', 2051, + '+', 2117, + '-', 1873, + '.', 2442, + '/', 2082, + '0', 2424, + '<', 2175, + '=', 3182, + '>', 1841, + 'I', 1523, + 'N', 1517, + '_', 1320, '`', 834, - 'a', 1438, - 'b', 1429, - 'c', 1366, - 'd', 1379, - 'e', 1447, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1356, - 'n', 1394, - 'o', 1487, - 'r', 1382, - 's', 1467, - 't', 1496, - 'u', 1508, - 'w', 1421, - 'x', 1478, - '}', 2001, + 'a', 1407, + 'b', 1398, + 'c', 1336, + 'd', 1349, + 'e', 1415, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1326, + 'n', 1364, + 'o', 1454, + 'r', 1352, + 's', 1435, + 't', 1463, + 'u', 1475, + 'w', 1390, + 'x', 1445, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(81); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 87: ADVANCE_MAP( - '!', 3221, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3181, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2155, - '-', 1906, - '.', 2480, - '/', 2120, - '0', 2396, - '<', 2213, - '=', 3222, - '>', 1874, - 'B', 2516, - 'E', 1334, - 'G', 1348, - 'I', 1556, - 'K', 1348, - 'M', 1348, - 'N', 1550, - 'P', 1348, - 'T', 1348, - '_', 1352, + '(', 1806, + '*', 2051, + '+', 2117, + '-', 1873, + '.', 2442, + '/', 2082, + '0', 2358, + '<', 2175, + '=', 3182, + '>', 1841, + 'B', 2478, + 'E', 1307, + 'G', 1318, + 'I', 1523, + 'K', 1318, + 'M', 1318, + 'N', 1517, + 'P', 1318, + 'T', 1318, + '_', 1322, '`', 834, - 'a', 1438, - 'b', 2512, - 'c', 1366, - 'd', 1363, - 'e', 1333, - 'f', 1470, - 'g', 1347, - 'h', 1423, - 'i', 1349, - 'k', 1347, - 'l', 1380, - 'm', 1341, - 'n', 1393, - 'o', 1487, - 'p', 1347, - 'r', 1382, - 's', 1399, - 't', 1346, - 'u', 1506, - 'w', 1420, - 'x', 1478, - '}', 2001, - 0xb5, 1505, + 'a', 1407, + 'b', 2474, + 'c', 1336, + 'd', 1333, + 'e', 1306, + 'f', 1438, + 'g', 1317, + 'h', 1392, + 'i', 1319, + 'k', 1317, + 'l', 1350, + 'm', 1314, + 'n', 1363, + 'o', 1454, + 'p', 1317, + 'r', 1352, + 's', 1369, + 't', 1316, + 'u', 1473, + 'w', 1389, + 'x', 1445, + '}', 1968, + 0xb5, 1472, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(81); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 88: ADVANCE_MAP( - '!', 3221, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3181, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2153, - '-', 1901, - '.', 2477, - '/', 2120, - '0', 2462, - ';', 1328, - '<', 2213, - '=', 3222, - '>', 1874, - 'I', 1556, - 'N', 1550, - '[', 1834, - ']', 1838, - '_', 1350, + '(', 1806, + '*', 2051, + '+', 2115, + '-', 1868, + '.', 2439, + '/', 2082, + '0', 2424, + ';', 1303, + '<', 2175, + '=', 3182, + '>', 1841, + 'I', 1523, + 'N', 1517, + '[', 1801, + ']', 1805, + '_', 1320, '`', 834, - 'a', 1438, - 'b', 1429, - 'c', 1366, - 'd', 1379, - 'e', 1447, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1356, - 'n', 1394, - 'o', 1487, - 'r', 1382, - 's', 1467, - 't', 1496, - 'u', 1508, - 'w', 1421, - 'x', 1478, - '{', 2000, - '}', 2001, + 'a', 1407, + 'b', 1398, + 'c', 1336, + 'd', 1349, + 'e', 1415, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1326, + 'n', 1364, + 'o', 1454, + 'r', 1352, + 's', 1435, + 't', 1463, + 'u', 1475, + 'w', 1390, + 'x', 1445, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(88); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && - (lookahead < '\'' || '>' < lookahead)) ADVANCE(3244); + (lookahead < '\'' || '>' < lookahead)) ADVANCE(3204); END_STATE(); case 89: ADVANCE_MAP( - '!', 3221, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3181, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2153, - '-', 1901, - '.', 2477, - '/', 2120, - '0', 2462, - '<', 2213, - '=', 3222, - '>', 1874, - 'I', 1556, - 'N', 1550, - '_', 1350, + '(', 1806, + '*', 2051, + '+', 2115, + '-', 1868, + '.', 2439, + '/', 2082, + '0', 2424, + '<', 2175, + '=', 3182, + '>', 1841, + 'I', 1523, + 'N', 1517, + '_', 1320, '`', 834, - 'a', 1438, - 'b', 1429, - 'c', 1366, - 'd', 1379, - 'e', 1447, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1356, - 'n', 1394, - 'o', 1487, - 'r', 1382, - 's', 1467, - 't', 1496, - 'u', 1508, - 'w', 1421, - 'x', 1478, - '}', 2001, + 'a', 1407, + 'b', 1398, + 'c', 1336, + 'd', 1349, + 'e', 1415, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1326, + 'n', 1364, + 'o', 1454, + 'r', 1352, + 's', 1435, + 't', 1463, + 'u', 1475, + 'w', 1390, + 'x', 1445, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(89); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 90: ADVANCE_MAP( - '!', 3814, - '"', 2554, - '#', 4941, - '$', 1845, + '!', 3771, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2154, - '-', 1902, - '.', 2364, - '/', 2120, - '0', 2393, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2507, - 'E', 3844, - 'G', 3848, - 'I', 4008, - 'K', 3848, - 'M', 3848, - 'N', 4004, - 'P', 3848, - 'T', 3848, - '[', 1834, - '_', 3867, + '(', 1806, + '*', 2051, + '+', 2116, + '-', 1869, + '.', 2326, + '/', 2082, + '0', 2355, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2469, + 'E', 3801, + 'G', 3805, + 'I', 3964, + 'K', 3805, + 'M', 3805, + 'N', 3960, + 'P', 3805, + 'T', 3805, + '[', 1801, + '_', 3824, '`', 834, - 'a', 3932, - 'b', 2508, - 'd', 3883, - 'e', 3842, - 'f', 3884, - 'g', 3847, - 'h', 3980, - 'i', 3862, - 'k', 3847, - 'm', 3849, - 'n', 3946, - 'o', 3981, - 'p', 3847, - 's', 3902, - 't', 3846, - 'u', 3990, - 'w', 3924, - 'x', 3945, - '{', 2000, - 0xb5, 3990, + 'a', 3888, + 'b', 2470, + 'd', 3840, + 'e', 3799, + 'f', 3841, + 'g', 3804, + 'h', 3936, + 'i', 3819, + 'k', 3804, + 'm', 3806, + 'n', 3902, + 'o', 3937, + 'p', 3804, + 's', 3859, + 't', 3803, + 'u', 3946, + 'w', 3881, + 'x', 3901, + '{', 1967, + 0xb5, 3946, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(174); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); if (lookahead != 0 && (lookahead < '\'' || '+' < lookahead) && (lookahead < ';' || '>' < lookahead) && lookahead != ']' && - lookahead != '}') ADVANCE(3791); + lookahead != '}') ADVANCE(3748); END_STATE(); case 91: ADVANCE_MAP( - '!', 3814, - '"', 2554, - '#', 4941, - '$', 1845, + '!', 3771, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2154, - '-', 1902, - '.', 2364, - '/', 2120, - '0', 3870, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2507, - 'E', 3844, - 'G', 3848, - 'I', 4008, - 'K', 3848, - 'M', 3848, - 'N', 4004, - 'P', 3848, - 'T', 3848, - '[', 1834, - '_', 3869, + '(', 1806, + '*', 2051, + '+', 2116, + '-', 1869, + '.', 2326, + '/', 2082, + '0', 3827, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2469, + 'E', 3801, + 'G', 3805, + 'I', 3964, + 'K', 3805, + 'M', 3805, + 'N', 3960, + 'P', 3805, + 'T', 3805, + '[', 1801, + '_', 3826, '`', 834, - 'a', 3932, - 'b', 2508, - 'd', 3883, - 'e', 3842, - 'f', 3884, - 'g', 3847, - 'h', 3980, - 'i', 3862, - 'k', 3847, - 'm', 3849, - 'n', 3946, - 'o', 3981, - 'p', 3847, - 's', 3902, - 't', 3846, - 'u', 3990, - 'w', 3924, - 'x', 3945, - '{', 2000, - 0xb5, 3990, + 'a', 3888, + 'b', 2470, + 'd', 3840, + 'e', 3799, + 'f', 3841, + 'g', 3804, + 'h', 3936, + 'i', 3819, + 'k', 3804, + 'm', 3806, + 'n', 3902, + 'o', 3937, + 'p', 3804, + 's', 3859, + 't', 3803, + 'u', 3946, + 'w', 3881, + 'x', 3901, + '{', 1967, + 0xb5, 3946, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(174); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3874); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3831); if (lookahead != 0 && (lookahead < '\'' || '+' < lookahead) && (lookahead < ';' || '>' < lookahead) && lookahead != ']' && - lookahead != '}') ADVANCE(3791); + lookahead != '}') ADVANCE(3748); END_STATE(); case 92: ADVANCE_MAP( - '!', 3814, - '"', 2554, - '#', 4941, - '$', 1845, + '!', 3771, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2154, - '-', 1902, - '.', 2364, - '/', 2120, - '0', 3870, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2507, - 'E', 3848, - 'G', 3848, - 'I', 4008, - 'K', 3848, - 'M', 3848, - 'N', 4004, - 'P', 3848, - 'T', 3848, - '[', 1834, - '_', 3869, + '(', 1806, + '*', 2051, + '+', 2116, + '-', 1869, + '.', 2326, + '/', 2082, + '0', 3827, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2469, + 'E', 3805, + 'G', 3805, + 'I', 3964, + 'K', 3805, + 'M', 3805, + 'N', 3960, + 'P', 3805, + 'T', 3805, + '[', 1801, + '_', 3826, '`', 834, - 'a', 3932, - 'b', 2508, - 'd', 3883, - 'e', 3845, - 'f', 3884, - 'g', 3847, - 'h', 3980, - 'i', 3862, - 'k', 3847, - 'm', 3849, - 'n', 3946, - 'o', 3981, - 'p', 3847, - 's', 3902, - 't', 3846, - 'u', 3990, - 'w', 3924, - 'x', 3945, - '{', 2000, - 0xb5, 3990, + 'a', 3888, + 'b', 2470, + 'd', 3840, + 'e', 3802, + 'f', 3841, + 'g', 3804, + 'h', 3936, + 'i', 3819, + 'k', 3804, + 'm', 3806, + 'n', 3902, + 'o', 3937, + 'p', 3804, + 's', 3859, + 't', 3803, + 'u', 3946, + 'w', 3881, + 'x', 3901, + '{', 1967, + 0xb5, 3946, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(174); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3874); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3831); if (lookahead != 0 && (lookahead < '\'' || '+' < lookahead) && (lookahead < ';' || '>' < lookahead) && lookahead != ']' && - lookahead != '}') ADVANCE(3791); + lookahead != '}') ADVANCE(3748); END_STATE(); case 93: ADVANCE_MAP( - '!', 3814, - '"', 2554, - '#', 4941, - '$', 1845, + '!', 3771, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2154, - '-', 1902, - '.', 2481, - '/', 2120, - '0', 3870, - '<', 2213, - '=', 3816, - '>', 1874, - 'I', 4008, - 'N', 4004, - '[', 1834, - '_', 3869, + '(', 1806, + '*', 2051, + '+', 2116, + '-', 1869, + '.', 2443, + '/', 2082, + '0', 3827, + '<', 2175, + '=', 3773, + '>', 1841, + 'I', 3964, + 'N', 3960, + '[', 1801, + '_', 3826, '`', 834, - 'a', 3932, - 'b', 3917, - 'e', 3937, - 'f', 3884, - 'i', 3862, - 'm', 3951, - 'n', 3947, - 'o', 3981, - 's', 3994, - 't', 3982, - 'x', 3945, - '{', 2000, + 'a', 3888, + 'b', 3874, + 'e', 3893, + 'f', 3841, + 'i', 3819, + 'm', 3907, + 'n', 3903, + 'o', 3937, + 's', 3950, + 't', 3938, + 'x', 3901, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(174); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3874); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3831); if (lookahead != 0 && (lookahead < '\'' || '+' < lookahead) && (lookahead < ';' || '>' < lookahead) && lookahead != ']' && - lookahead != '}') ADVANCE(3791); + lookahead != '}') ADVANCE(3748); END_STATE(); case 94: ADVANCE_MAP( - '!', 3814, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3771, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2155, - ',', 3211, - '-', 1906, - '.', 2364, - '/', 2120, - '0', 2396, - ':', 3791, - ';', 1328, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2516, - 'E', 3810, - 'G', 3828, - 'I', 4005, - 'K', 3828, - 'M', 3828, - 'N', 4001, - 'P', 3828, - 'T', 3828, - ']', 1838, - '_', 3865, + '(', 1806, + '*', 2051, + '+', 2117, + ',', 3171, + '-', 1873, + '.', 2326, + '/', 2082, + '0', 2358, + ':', 3748, + ';', 1303, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2478, + 'E', 3767, + 'G', 3785, + 'I', 3961, + 'K', 3785, + 'M', 3785, + 'N', 3957, + 'P', 3785, + 'T', 3785, + ']', 1805, + '_', 3822, '`', 834, - 'a', 3926, - 'b', 2512, - 'c', 3891, - 'd', 3889, - 'e', 3809, - 'f', 3955, - 'g', 3827, - 'h', 3915, - 'i', 3859, - 'k', 3827, - 'l', 3893, - 'm', 3818, - 'n', 3896, - 'o', 3976, - 'p', 3827, - 'r', 3895, - 's', 3905, - 't', 3826, - 'u', 3989, - 'w', 3913, - 'x', 3969, - '}', 2001, - 0xb5, 3988, + 'a', 3883, + 'b', 2474, + 'c', 3848, + 'd', 3846, + 'e', 3766, + 'f', 3911, + 'g', 3784, + 'h', 3872, + 'i', 3816, + 'k', 3784, + 'l', 3850, + 'm', 3775, + 'n', 3853, + 'o', 3932, + 'p', 3784, + 'r', 3852, + 's', 3862, + 't', 3783, + 'u', 3945, + 'w', 3870, + 'x', 3925, + '}', 1968, + 0xb5, 3944, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4010); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3966); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3791); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3748); END_STATE(); case 95: ADVANCE_MAP( - '!', 3814, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3771, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2155, - ',', 3211, - '-', 1906, - '.', 2364, - '/', 2120, - '0', 3873, - ':', 3791, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2516, - 'E', 3828, - 'G', 3828, - 'I', 4005, - 'K', 3828, - 'M', 3828, - 'N', 4001, - 'P', 3828, - 'T', 3828, - '_', 3863, + '(', 1806, + '*', 2051, + '+', 2117, + ',', 3171, + '-', 1873, + '.', 2326, + '/', 2082, + '0', 3830, + ':', 3748, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2478, + 'E', 3785, + 'G', 3785, + 'I', 3961, + 'K', 3785, + 'M', 3785, + 'N', 3957, + 'P', 3785, + 'T', 3785, + '_', 3820, '`', 834, - 'a', 3926, - 'b', 2512, - 'c', 3891, - 'd', 3889, - 'e', 3821, - 'f', 3955, - 'g', 3827, - 'h', 3915, - 'i', 3859, - 'k', 3827, - 'l', 3893, - 'm', 3818, - 'n', 3896, - 'o', 3976, - 'p', 3827, - 'r', 3895, - 's', 3905, - 't', 3826, - 'u', 3989, - 'w', 3913, - 'x', 3969, - '}', 2001, - 0xb5, 3988, + 'a', 3883, + 'b', 2474, + 'c', 3848, + 'd', 3846, + 'e', 3778, + 'f', 3911, + 'g', 3784, + 'h', 3872, + 'i', 3816, + 'k', 3784, + 'l', 3850, + 'm', 3775, + 'n', 3853, + 'o', 3932, + 'p', 3784, + 'r', 3852, + 's', 3862, + 't', 3783, + 'u', 3945, + 'w', 3870, + 'x', 3925, + '}', 1968, + 0xb5, 3944, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3877); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4010); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3834); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3966); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3791); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3748); END_STATE(); case 96: ADVANCE_MAP( - '!', 3814, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3771, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2155, - ',', 3211, - '-', 1906, - '.', 2364, - '/', 2120, - '0', 3873, - ':', 3791, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2516, - 'E', 3810, - 'G', 3828, - 'I', 4005, - 'K', 3828, - 'M', 3828, - 'N', 4001, - 'P', 3828, - 'T', 3828, - '_', 3863, + '(', 1806, + '*', 2051, + '+', 2117, + ',', 3171, + '-', 1873, + '.', 2326, + '/', 2082, + '0', 3830, + ':', 3748, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2478, + 'E', 3767, + 'G', 3785, + 'I', 3961, + 'K', 3785, + 'M', 3785, + 'N', 3957, + 'P', 3785, + 'T', 3785, + '_', 3820, '`', 834, - 'a', 3926, - 'b', 2512, - 'c', 3891, - 'd', 3889, - 'e', 3809, - 'f', 3955, - 'g', 3827, - 'h', 3915, - 'i', 3859, - 'k', 3827, - 'l', 3893, - 'm', 3818, - 'n', 3896, - 'o', 3976, - 'p', 3827, - 'r', 3895, - 's', 3905, - 't', 3826, - 'u', 3989, - 'w', 3913, - 'x', 3969, - '}', 2001, - 0xb5, 3988, + 'a', 3883, + 'b', 2474, + 'c', 3848, + 'd', 3846, + 'e', 3766, + 'f', 3911, + 'g', 3784, + 'h', 3872, + 'i', 3816, + 'k', 3784, + 'l', 3850, + 'm', 3775, + 'n', 3853, + 'o', 3932, + 'p', 3784, + 'r', 3852, + 's', 3862, + 't', 3783, + 'u', 3945, + 'w', 3870, + 'x', 3925, + '}', 1968, + 0xb5, 3944, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3877); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4010); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3834); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3966); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3791); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3748); END_STATE(); case 97: ADVANCE_MAP( - '!', 3814, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3771, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2155, - ',', 3211, - '-', 1906, - '.', 2477, - '/', 2120, - '0', 3873, - ':', 3791, - '<', 2213, - '=', 3816, - '>', 1874, - 'I', 4005, - 'N', 4001, - '_', 3863, + '(', 1806, + '*', 2051, + '+', 2117, + ',', 3171, + '-', 1873, + '.', 2439, + '/', 2082, + '0', 3830, + ':', 3748, + '<', 2175, + '=', 3773, + '>', 1841, + 'I', 3961, + 'N', 3957, + '_', 3820, '`', 834, - 'a', 3926, - 'b', 3921, - 'c', 3891, - 'd', 3892, - 'e', 3929, - 'f', 3955, - 'h', 3916, - 'i', 3859, - 'l', 3893, - 'm', 3878, - 'n', 3897, - 'o', 3976, - 'r', 3895, - 's', 3943, - 't', 3987, - 'u', 3993, - 'w', 3914, - 'x', 3969, - '}', 2001, + 'a', 3883, + 'b', 3878, + 'c', 3848, + 'd', 3849, + 'e', 3885, + 'f', 3911, + 'h', 3873, + 'i', 3816, + 'l', 3850, + 'm', 3835, + 'n', 3854, + 'o', 3932, + 'r', 3852, + 's', 3899, + 't', 3943, + 'u', 3949, + 'w', 3871, + 'x', 3925, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3877); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4010); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3834); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3966); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3791); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3748); END_STATE(); case 98: ADVANCE_MAP( - '!', 3814, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3771, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2155, - '-', 1906, - '.', 2364, - '/', 2120, - '0', 2396, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2516, - 'E', 3810, - 'G', 3828, - 'I', 4005, - 'K', 3828, - 'M', 3828, - 'N', 4001, - 'P', 3828, - 'T', 3828, - '_', 3865, + '(', 1806, + '*', 2051, + '+', 2117, + '-', 1873, + '.', 2326, + '/', 2082, + '0', 2358, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2478, + 'E', 3767, + 'G', 3785, + 'I', 3961, + 'K', 3785, + 'M', 3785, + 'N', 3957, + 'P', 3785, + 'T', 3785, + '_', 3822, '`', 834, - 'a', 3926, - 'b', 2512, - 'c', 3891, - 'd', 3889, - 'e', 3809, - 'f', 3955, - 'g', 3827, - 'h', 3915, - 'i', 3859, - 'k', 3827, - 'l', 3893, - 'm', 3818, - 'n', 3896, - 'o', 3976, - 'p', 3827, - 'r', 3895, - 's', 3905, - 't', 3826, - 'u', 3989, - 'w', 3913, - 'x', 3969, - '{', 2000, - '}', 2001, - 0xb5, 3988, - ',', 3791, - ':', 3791, + 'a', 3883, + 'b', 2474, + 'c', 3848, + 'd', 3846, + 'e', 3766, + 'f', 3911, + 'g', 3784, + 'h', 3872, + 'i', 3816, + 'k', 3784, + 'l', 3850, + 'm', 3775, + 'n', 3853, + 'o', 3932, + 'p', 3784, + 'r', 3852, + 's', 3862, + 't', 3783, + 'u', 3945, + 'w', 3870, + 'x', 3925, + '{', 1967, + '}', 1968, + 0xb5, 3944, + ',', 3748, + ':', 3748, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(80); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4010); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3966); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && - lookahead != ']') ADVANCE(3791); + lookahead != ']') ADVANCE(3748); END_STATE(); case 99: ADVANCE_MAP( - '!', 3814, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3771, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2155, - '-', 1906, - '.', 2364, - '/', 2120, - '0', 3873, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2516, - 'E', 3828, - 'G', 3828, - 'I', 4005, - 'K', 3828, - 'M', 3828, - 'N', 4001, - 'P', 3828, - 'T', 3828, - '_', 3863, + '(', 1806, + '*', 2051, + '+', 2117, + '-', 1873, + '.', 2326, + '/', 2082, + '0', 3830, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2478, + 'E', 3785, + 'G', 3785, + 'I', 3961, + 'K', 3785, + 'M', 3785, + 'N', 3957, + 'P', 3785, + 'T', 3785, + '_', 3820, '`', 834, - 'a', 3926, - 'b', 2512, - 'c', 3891, - 'd', 3889, - 'e', 3821, - 'f', 3955, - 'g', 3827, - 'h', 3915, - 'i', 3859, - 'k', 3827, - 'l', 3893, - 'm', 3818, - 'n', 3896, - 'o', 3976, - 'p', 3827, - 'r', 3895, - 's', 3905, - 't', 3826, - 'u', 3989, - 'w', 3913, - 'x', 3969, - '}', 2001, - 0xb5, 3988, - ',', 3791, - ':', 3791, + 'a', 3883, + 'b', 2474, + 'c', 3848, + 'd', 3846, + 'e', 3778, + 'f', 3911, + 'g', 3784, + 'h', 3872, + 'i', 3816, + 'k', 3784, + 'l', 3850, + 'm', 3775, + 'n', 3853, + 'o', 3932, + 'p', 3784, + 'r', 3852, + 's', 3862, + 't', 3783, + 'u', 3945, + 'w', 3870, + 'x', 3925, + '}', 1968, + 0xb5, 3944, + ',', 3748, + ':', 3748, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(81); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3877); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4010); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3834); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3966); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3791); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3748); END_STATE(); case 100: ADVANCE_MAP( - '!', 3814, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3771, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2155, - '-', 1906, - '.', 2364, - '/', 2120, - '0', 3873, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2516, - 'E', 3810, - 'G', 3828, - 'I', 4005, - 'K', 3828, - 'M', 3828, - 'N', 4001, - 'P', 3828, - 'T', 3828, - '_', 3863, + '(', 1806, + '*', 2051, + '+', 2117, + '-', 1873, + '.', 2326, + '/', 2082, + '0', 3830, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2478, + 'E', 3767, + 'G', 3785, + 'I', 3961, + 'K', 3785, + 'M', 3785, + 'N', 3957, + 'P', 3785, + 'T', 3785, + '_', 3820, '`', 834, - 'a', 3926, - 'b', 2512, - 'c', 3891, - 'd', 3889, - 'e', 3809, - 'f', 3955, - 'g', 3827, - 'h', 3915, - 'i', 3859, - 'k', 3827, - 'l', 3893, - 'm', 3818, - 'n', 3896, - 'o', 3976, - 'p', 3827, - 'r', 3895, - 's', 3905, - 't', 3826, - 'u', 3989, - 'w', 3913, - 'x', 3969, - '}', 2001, - 0xb5, 3988, - ',', 3791, - ':', 3791, + 'a', 3883, + 'b', 2474, + 'c', 3848, + 'd', 3846, + 'e', 3766, + 'f', 3911, + 'g', 3784, + 'h', 3872, + 'i', 3816, + 'k', 3784, + 'l', 3850, + 'm', 3775, + 'n', 3853, + 'o', 3932, + 'p', 3784, + 'r', 3852, + 's', 3862, + 't', 3783, + 'u', 3945, + 'w', 3870, + 'x', 3925, + '}', 1968, + 0xb5, 3944, + ',', 3748, + ':', 3748, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(81); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3877); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4010); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3834); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3966); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3791); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3748); END_STATE(); case 101: ADVANCE_MAP( - '!', 3814, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3771, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2155, - '-', 1906, - '.', 2477, - '/', 2120, - '0', 3873, - '<', 2213, - '=', 3816, - '>', 1874, - 'I', 4005, - 'N', 4001, - '_', 3863, + '(', 1806, + '*', 2051, + '+', 2117, + '-', 1873, + '.', 2439, + '/', 2082, + '0', 3830, + '<', 2175, + '=', 3773, + '>', 1841, + 'I', 3961, + 'N', 3957, + '_', 3820, '`', 834, - 'a', 3926, - 'b', 3921, - 'c', 3891, - 'd', 3892, - 'e', 3929, - 'f', 3955, - 'h', 3916, - 'i', 3859, - 'l', 3893, - 'm', 3878, - 'n', 3897, - 'o', 3976, - 'r', 3895, - 's', 3943, - 't', 3987, - 'u', 3993, - 'w', 3914, - 'x', 3969, - '}', 2001, - ',', 3791, - ':', 3791, + 'a', 3883, + 'b', 3878, + 'c', 3848, + 'd', 3849, + 'e', 3885, + 'f', 3911, + 'h', 3873, + 'i', 3816, + 'l', 3850, + 'm', 3835, + 'n', 3854, + 'o', 3932, + 'r', 3852, + 's', 3899, + 't', 3943, + 'u', 3949, + 'w', 3871, + 'x', 3925, + '}', 1968, + ',', 3748, + ':', 3748, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(81); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3877); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4010); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3834); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3966); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3791); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3748); END_STATE(); case 102: ADVANCE_MAP( - '!', 3814, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3771, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2156, - ',', 1835, - '-', 1892, - '.', 2364, - '/', 2120, - '0', 2394, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2507, - 'E', 3831, - 'G', 3834, - 'I', 4006, - 'K', 3834, - 'M', 3834, - 'N', 4002, - 'P', 3834, - 'T', 3834, - '[', 1834, - ']', 1838, - '_', 3868, + '(', 1806, + '*', 2051, + '+', 2118, + ',', 1802, + '-', 1859, + '.', 2326, + '/', 2082, + '0', 2356, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2469, + 'E', 3788, + 'G', 3791, + 'I', 3962, + 'K', 3791, + 'M', 3791, + 'N', 3958, + 'P', 3791, + 'T', 3791, + '[', 1801, + ']', 1805, + '_', 3825, '`', 834, - 'a', 3930, - 'b', 2510, - 'd', 3881, - 'e', 3801, - 'f', 3879, - 'g', 3833, - 'h', 3980, - 'i', 3860, - 'k', 3833, - 'm', 3835, - 'n', 3958, - 'o', 3796, - 'p', 3833, - 's', 3899, - 't', 3832, - 'u', 3990, - 'w', 3924, - 'x', 3962, - '{', 2000, - 0xb5, 3990, + 'a', 3886, + 'b', 2472, + 'd', 3838, + 'e', 3758, + 'f', 3836, + 'g', 3790, + 'h', 3936, + 'i', 3817, + 'k', 3790, + 'm', 3792, + 'n', 3914, + 'o', 3753, + 'p', 3790, + 's', 3856, + 't', 3789, + 'u', 3946, + 'w', 3881, + 'x', 3918, + '{', 1967, + 0xb5, 3946, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(309); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != '}') ADVANCE(3791); + lookahead != '}') ADVANCE(3748); END_STATE(); case 103: ADVANCE_MAP( - '!', 3814, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3771, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2156, - ',', 1835, - '-', 1892, - '.', 2364, - '/', 2120, - '0', 3871, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2507, - 'E', 3831, - 'G', 3834, - 'I', 4006, - 'K', 3834, - 'M', 3834, - 'N', 4002, - 'P', 3834, - 'T', 3834, - '[', 1834, - ']', 1838, - '_', 3864, + '(', 1806, + '*', 2051, + '+', 2118, + ',', 1802, + '-', 1859, + '.', 2326, + '/', 2082, + '0', 3828, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2469, + 'E', 3788, + 'G', 3791, + 'I', 3962, + 'K', 3791, + 'M', 3791, + 'N', 3958, + 'P', 3791, + 'T', 3791, + '[', 1801, + ']', 1805, + '_', 3821, '`', 834, - 'a', 3930, - 'b', 2510, - 'd', 3881, - 'e', 3801, - 'f', 3879, - 'g', 3833, - 'h', 3980, - 'i', 3860, - 'k', 3833, - 'm', 3835, - 'n', 3958, - 'o', 3796, - 'p', 3833, - 's', 3899, - 't', 3832, - 'u', 3990, - 'w', 3924, - 'x', 3962, - '{', 2000, - 0xb5, 3990, + 'a', 3886, + 'b', 2472, + 'd', 3838, + 'e', 3758, + 'f', 3836, + 'g', 3790, + 'h', 3936, + 'i', 3817, + 'k', 3790, + 'm', 3792, + 'n', 3914, + 'o', 3753, + 'p', 3790, + 's', 3856, + 't', 3789, + 'u', 3946, + 'w', 3881, + 'x', 3918, + '{', 1967, + 0xb5, 3946, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(309); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3875); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3832); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != '}') ADVANCE(3791); + lookahead != '}') ADVANCE(3748); END_STATE(); case 104: ADVANCE_MAP( - '!', 3814, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3771, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2156, - ',', 1835, - '-', 1892, - '.', 2364, - '/', 2120, - '0', 3871, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2507, - 'E', 3834, - 'G', 3834, - 'I', 4006, - 'K', 3834, - 'M', 3834, - 'N', 4002, - 'P', 3834, - 'T', 3834, - '[', 1834, - ']', 1838, - '_', 3864, + '(', 1806, + '*', 2051, + '+', 2118, + ',', 1802, + '-', 1859, + '.', 2326, + '/', 2082, + '0', 3828, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2469, + 'E', 3791, + 'G', 3791, + 'I', 3962, + 'K', 3791, + 'M', 3791, + 'N', 3958, + 'P', 3791, + 'T', 3791, + '[', 1801, + ']', 1805, + '_', 3821, '`', 834, - 'a', 3930, - 'b', 2510, - 'd', 3881, - 'e', 3792, - 'f', 3879, - 'g', 3833, - 'h', 3980, - 'i', 3860, - 'k', 3833, - 'm', 3835, - 'n', 3958, - 'o', 3796, - 'p', 3833, - 's', 3899, - 't', 3832, - 'u', 3990, - 'w', 3924, - 'x', 3962, - '{', 2000, - 0xb5, 3990, + 'a', 3886, + 'b', 2472, + 'd', 3838, + 'e', 3749, + 'f', 3836, + 'g', 3790, + 'h', 3936, + 'i', 3817, + 'k', 3790, + 'm', 3792, + 'n', 3914, + 'o', 3753, + 'p', 3790, + 's', 3856, + 't', 3789, + 'u', 3946, + 'w', 3881, + 'x', 3918, + '{', 1967, + 0xb5, 3946, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(309); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3875); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3832); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != '}') ADVANCE(3791); + lookahead != '}') ADVANCE(3748); END_STATE(); case 105: ADVANCE_MAP( - '!', 3814, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3771, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2156, - ',', 1835, - '-', 1892, - '.', 2481, - '/', 2120, - '0', 3871, - '<', 2213, - '=', 3816, - '>', 1874, - 'I', 4006, - 'N', 4002, - '[', 1834, - ']', 1838, - '_', 3864, + '(', 1806, + '*', 2051, + '+', 2118, + ',', 1802, + '-', 1859, + '.', 2443, + '/', 2082, + '0', 3828, + '<', 2175, + '=', 3773, + '>', 1841, + 'I', 3962, + 'N', 3958, + '[', 1801, + ']', 1805, + '_', 3821, '`', 834, - 'a', 3930, - 'b', 3919, - 'e', 3794, - 'f', 3879, - 'i', 3860, - 'm', 3949, - 'n', 3959, - 'o', 3796, - 's', 3995, - 't', 3978, - 'x', 3962, - '{', 2000, + 'a', 3886, + 'b', 3876, + 'e', 3751, + 'f', 3836, + 'i', 3817, + 'm', 3905, + 'n', 3915, + 'o', 3753, + 's', 3951, + 't', 3934, + 'x', 3918, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(309); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3875); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3832); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != '}') ADVANCE(3791); + lookahead != '}') ADVANCE(3748); END_STATE(); case 106: ADVANCE_MAP( - '!', 3814, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3771, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2156, - ',', 3211, - '-', 1892, - '.', 2364, - '/', 2120, - '0', 2394, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2507, - 'E', 3831, - 'G', 3834, - 'I', 4006, - 'K', 3834, - 'M', 3834, - 'N', 4002, - 'P', 3834, - 'T', 3834, - '[', 1834, - ']', 1838, - '_', 3868, + '(', 1806, + '*', 2051, + '+', 2118, + ',', 3171, + '-', 1859, + '.', 2326, + '/', 2082, + '0', 2356, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2469, + 'E', 3788, + 'G', 3791, + 'I', 3962, + 'K', 3791, + 'M', 3791, + 'N', 3958, + 'P', 3791, + 'T', 3791, + '[', 1801, + ']', 1805, + '_', 3825, '`', 834, - 'a', 3930, - 'b', 2510, - 'd', 3881, - 'e', 3801, - 'f', 3879, - 'g', 3833, - 'h', 3980, - 'i', 3860, - 'k', 3833, - 'm', 3835, - 'n', 3958, - 'o', 3796, - 'p', 3833, - 's', 3899, - 't', 3832, - 'u', 3990, - 'w', 3924, - 'x', 3962, - '{', 2000, - 0xb5, 3990, + 'a', 3886, + 'b', 2472, + 'd', 3838, + 'e', 3758, + 'f', 3836, + 'g', 3790, + 'h', 3936, + 'i', 3817, + 'k', 3790, + 'm', 3792, + 'n', 3914, + 'o', 3753, + 'p', 3790, + 's', 3856, + 't', 3789, + 'u', 3946, + 'w', 3881, + 'x', 3918, + '{', 1967, + 0xb5, 3946, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != '}') ADVANCE(3791); + lookahead != '}') ADVANCE(3748); END_STATE(); case 107: ADVANCE_MAP( - '!', 3814, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3771, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2156, - ',', 3211, - '-', 1892, - '.', 2364, - '/', 2120, - '0', 3871, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2507, - 'E', 3831, - 'G', 3834, - 'I', 4006, - 'K', 3834, - 'M', 3834, - 'N', 4002, - 'P', 3834, - 'T', 3834, - '[', 1834, - ']', 1838, - '_', 3864, + '(', 1806, + '*', 2051, + '+', 2118, + ',', 3171, + '-', 1859, + '.', 2326, + '/', 2082, + '0', 3828, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2469, + 'E', 3788, + 'G', 3791, + 'I', 3962, + 'K', 3791, + 'M', 3791, + 'N', 3958, + 'P', 3791, + 'T', 3791, + '[', 1801, + ']', 1805, + '_', 3821, '`', 834, - 'a', 3930, - 'b', 2510, - 'd', 3881, - 'e', 3801, - 'f', 3879, - 'g', 3833, - 'h', 3980, - 'i', 3860, - 'k', 3833, - 'm', 3835, - 'n', 3958, - 'o', 3796, - 'p', 3833, - 's', 3899, - 't', 3832, - 'u', 3990, - 'w', 3924, - 'x', 3962, - '{', 2000, - 0xb5, 3990, + 'a', 3886, + 'b', 2472, + 'd', 3838, + 'e', 3758, + 'f', 3836, + 'g', 3790, + 'h', 3936, + 'i', 3817, + 'k', 3790, + 'm', 3792, + 'n', 3914, + 'o', 3753, + 'p', 3790, + 's', 3856, + 't', 3789, + 'u', 3946, + 'w', 3881, + 'x', 3918, + '{', 1967, + 0xb5, 3946, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3875); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3832); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != '}') ADVANCE(3791); + lookahead != '}') ADVANCE(3748); END_STATE(); case 108: ADVANCE_MAP( - '!', 3814, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3771, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2156, - ',', 3211, - '-', 1892, - '.', 2364, - '/', 2120, - '0', 3871, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2507, - 'E', 3834, - 'G', 3834, - 'I', 4006, - 'K', 3834, - 'M', 3834, - 'N', 4002, - 'P', 3834, - 'T', 3834, - '[', 1834, - ']', 1838, - '_', 3864, + '(', 1806, + '*', 2051, + '+', 2118, + ',', 3171, + '-', 1859, + '.', 2326, + '/', 2082, + '0', 3828, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2469, + 'E', 3791, + 'G', 3791, + 'I', 3962, + 'K', 3791, + 'M', 3791, + 'N', 3958, + 'P', 3791, + 'T', 3791, + '[', 1801, + ']', 1805, + '_', 3821, '`', 834, - 'a', 3930, - 'b', 2510, - 'd', 3881, - 'e', 3792, - 'f', 3879, - 'g', 3833, - 'h', 3980, - 'i', 3860, - 'k', 3833, - 'm', 3835, - 'n', 3958, - 'o', 3796, - 'p', 3833, - 's', 3899, - 't', 3832, - 'u', 3990, - 'w', 3924, - 'x', 3962, - '{', 2000, - 0xb5, 3990, + 'a', 3886, + 'b', 2472, + 'd', 3838, + 'e', 3749, + 'f', 3836, + 'g', 3790, + 'h', 3936, + 'i', 3817, + 'k', 3790, + 'm', 3792, + 'n', 3914, + 'o', 3753, + 'p', 3790, + 's', 3856, + 't', 3789, + 'u', 3946, + 'w', 3881, + 'x', 3918, + '{', 1967, + 0xb5, 3946, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3875); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3832); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != '}') ADVANCE(3791); + lookahead != '}') ADVANCE(3748); END_STATE(); case 109: ADVANCE_MAP( - '!', 3814, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3771, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2156, - ',', 3211, - '-', 1892, - '.', 2481, - '/', 2120, - '0', 3871, - '<', 2213, - '=', 3816, - '>', 1874, - 'I', 4006, - 'N', 4002, - '[', 1834, - ']', 1838, - '_', 3864, + '(', 1806, + '*', 2051, + '+', 2118, + ',', 3171, + '-', 1859, + '.', 2443, + '/', 2082, + '0', 3828, + '<', 2175, + '=', 3773, + '>', 1841, + 'I', 3962, + 'N', 3958, + '[', 1801, + ']', 1805, + '_', 3821, '`', 834, - 'a', 3930, - 'b', 3919, - 'e', 3794, - 'f', 3879, - 'i', 3860, - 'm', 3949, - 'n', 3959, - 'o', 3796, - 's', 3995, - 't', 3978, - 'x', 3962, - '{', 2000, + 'a', 3886, + 'b', 3876, + 'e', 3751, + 'f', 3836, + 'i', 3817, + 'm', 3905, + 'n', 3915, + 'o', 3753, + 's', 3951, + 't', 3934, + 'x', 3918, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3875); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3832); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != '}') ADVANCE(3791); + lookahead != '}') ADVANCE(3748); END_STATE(); case 110: ADVANCE_MAP( - '!', 3814, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3771, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2157, - ',', 1835, - '-', 1902, - '.', 2364, - '/', 2120, - '0', 2395, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2507, - 'E', 3837, - 'G', 3840, - 'I', 4007, - 'K', 3840, - 'M', 3840, - 'N', 4003, - 'P', 3840, - 'T', 3840, - '[', 1834, - '_', 2006, + '(', 1806, + '*', 2051, + '+', 2119, + ',', 1802, + '-', 1869, + '.', 2326, + '/', 2082, + '0', 2357, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2469, + 'E', 3794, + 'G', 3797, + 'I', 3963, + 'K', 3797, + 'M', 3797, + 'N', 3959, + 'P', 3797, + 'T', 3797, + '[', 1801, + '_', 1973, '`', 834, - 'a', 3931, - 'b', 2511, - 'd', 3882, - 'e', 3803, - 'f', 3880, - 'g', 3839, - 'h', 3980, - 'i', 3861, - 'k', 3839, - 'm', 3841, - 'n', 3960, - 'o', 3800, - 'p', 3839, - 's', 3900, - 't', 3838, - 'u', 3990, - 'w', 3924, - 'x', 3963, - '{', 2000, - '}', 2001, - 0xb5, 3990, + 'a', 3887, + 'b', 2473, + 'd', 3839, + 'e', 3760, + 'f', 3837, + 'g', 3796, + 'h', 3936, + 'i', 3818, + 'k', 3796, + 'm', 3798, + 'n', 3916, + 'o', 3757, + 'p', 3796, + 's', 3857, + 't', 3795, + 'u', 3946, + 'w', 3881, + 'x', 3919, + '{', 1967, + '}', 1968, + 0xb5, 3946, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(297); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2405); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2367); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != ']') ADVANCE(3791); + lookahead != ']') ADVANCE(3748); END_STATE(); case 111: ADVANCE_MAP( - '!', 3814, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3771, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2157, - ',', 1835, - '-', 1902, - '.', 2364, - '/', 2120, - '0', 3872, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2507, - 'E', 3837, - 'G', 3840, - 'I', 4007, - 'K', 3840, - 'M', 3840, - 'N', 4003, - 'P', 3840, - 'T', 3840, - '[', 1834, - '_', 2005, + '(', 1806, + '*', 2051, + '+', 2119, + ',', 1802, + '-', 1869, + '.', 2326, + '/', 2082, + '0', 3829, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2469, + 'E', 3794, + 'G', 3797, + 'I', 3963, + 'K', 3797, + 'M', 3797, + 'N', 3959, + 'P', 3797, + 'T', 3797, + '[', 1801, + '_', 1972, '`', 834, - 'a', 3931, - 'b', 2511, - 'd', 3882, - 'e', 3803, - 'f', 3880, - 'g', 3839, - 'h', 3980, - 'i', 3861, - 'k', 3839, - 'm', 3841, - 'n', 3960, - 'o', 3800, - 'p', 3839, - 's', 3900, - 't', 3838, - 'u', 3990, - 'w', 3924, - 'x', 3963, - '{', 2000, - '}', 2001, - 0xb5, 3990, + 'a', 3887, + 'b', 2473, + 'd', 3839, + 'e', 3760, + 'f', 3837, + 'g', 3796, + 'h', 3936, + 'i', 3818, + 'k', 3796, + 'm', 3798, + 'n', 3916, + 'o', 3757, + 'p', 3796, + 's', 3857, + 't', 3795, + 'u', 3946, + 'w', 3881, + 'x', 3919, + '{', 1967, + '}', 1968, + 0xb5, 3946, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(297); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3876); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3833); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != ']') ADVANCE(3791); + lookahead != ']') ADVANCE(3748); END_STATE(); case 112: ADVANCE_MAP( - '!', 3814, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3771, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2157, - ',', 1835, - '-', 1902, - '.', 2364, - '/', 2120, - '0', 3872, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2507, - 'E', 3840, - 'G', 3840, - 'I', 4007, - 'K', 3840, - 'M', 3840, - 'N', 4003, - 'P', 3840, - 'T', 3840, - '[', 1834, - '_', 2005, + '(', 1806, + '*', 2051, + '+', 2119, + ',', 1802, + '-', 1869, + '.', 2326, + '/', 2082, + '0', 3829, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2469, + 'E', 3797, + 'G', 3797, + 'I', 3963, + 'K', 3797, + 'M', 3797, + 'N', 3959, + 'P', 3797, + 'T', 3797, + '[', 1801, + '_', 1972, '`', 834, - 'a', 3931, - 'b', 2511, - 'd', 3882, - 'e', 3798, - 'f', 3880, - 'g', 3839, - 'h', 3980, - 'i', 3861, - 'k', 3839, - 'm', 3841, - 'n', 3960, - 'o', 3800, - 'p', 3839, - 's', 3900, - 't', 3838, - 'u', 3990, - 'w', 3924, - 'x', 3963, - '{', 2000, - '}', 2001, - 0xb5, 3990, + 'a', 3887, + 'b', 2473, + 'd', 3839, + 'e', 3755, + 'f', 3837, + 'g', 3796, + 'h', 3936, + 'i', 3818, + 'k', 3796, + 'm', 3798, + 'n', 3916, + 'o', 3757, + 'p', 3796, + 's', 3857, + 't', 3795, + 'u', 3946, + 'w', 3881, + 'x', 3919, + '{', 1967, + '}', 1968, + 0xb5, 3946, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(297); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3876); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3833); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != ']') ADVANCE(3791); + lookahead != ']') ADVANCE(3748); END_STATE(); case 113: ADVANCE_MAP( - '!', 3814, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3771, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2157, - ',', 1835, - '-', 1902, - '.', 2481, - '/', 2120, - '0', 3872, - '<', 2213, - '=', 3816, - '>', 1874, - 'I', 4007, - 'N', 4003, - '[', 1834, - '_', 2005, + '(', 1806, + '*', 2051, + '+', 2119, + ',', 1802, + '-', 1869, + '.', 2443, + '/', 2082, + '0', 3829, + '<', 2175, + '=', 3773, + '>', 1841, + 'I', 3963, + 'N', 3959, + '[', 1801, + '_', 1972, '`', 834, - 'a', 3931, - 'b', 3920, - 'e', 3799, - 'f', 3880, - 'i', 3861, - 'm', 3950, - 'n', 3961, - 'o', 3800, - 's', 3996, - 't', 3979, - 'x', 3963, - '{', 2000, - '}', 2001, + 'a', 3887, + 'b', 3877, + 'e', 3756, + 'f', 3837, + 'i', 3818, + 'm', 3906, + 'n', 3917, + 'o', 3757, + 's', 3952, + 't', 3935, + 'x', 3919, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(297); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3876); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3833); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != ']') ADVANCE(3791); + lookahead != ']') ADVANCE(3748); END_STATE(); case 114: ADVANCE_MAP( - '!', 3814, - '"', 2554, - '#', 4941, + '!', 3771, + '"', 2516, + '#', 4896, '\'', 791, - '*', 2084, - '+', 2152, - '-', 1890, - '.', 2364, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2516, - 'E', 3808, - 'G', 3828, - 'K', 3828, - 'M', 3828, - 'P', 3828, - 'T', 3828, - '_', 3865, + '*', 2051, + '+', 2114, + '-', 1857, + '.', 2326, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2478, + 'E', 3765, + 'G', 3785, + 'K', 3785, + 'M', 3785, + 'P', 3785, + 'T', 3785, + '_', 3822, '`', 834, - 'a', 3939, - 'b', 2513, - 'd', 3890, - 'e', 3805, - 'g', 3827, - 'h', 3975, - 'i', 3936, - 'k', 3827, - 'm', 3829, - 'n', 3970, - 'o', 3977, - 'p', 3827, - 's', 3907, - 't', 3827, - 'u', 3988, - 'w', 3923, - 'x', 3969, - '{', 2000, - 0xb5, 3988, + 'a', 3895, + 'b', 2475, + 'd', 3847, + 'e', 3762, + 'g', 3784, + 'h', 3931, + 'i', 3892, + 'k', 3784, + 'm', 3786, + 'n', 3926, + 'o', 3933, + 'p', 3784, + 's', 3864, + 't', 3784, + 'u', 3944, + 'w', 3880, + 'x', 3925, + '{', 1967, + 0xb5, 3944, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(182); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4010); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3966); if (lookahead != 0 && (lookahead < '\'' || '+' < lookahead) && (lookahead < ';' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - lookahead != '}') ADVANCE(3791); + lookahead != '}') ADVANCE(3748); END_STATE(); case 115: ADVANCE_MAP( - '!', 3814, - '"', 2554, - '#', 4941, + '!', 3771, + '"', 2516, + '#', 4896, '\'', 791, - '*', 2084, - '+', 2152, - '-', 1890, - '.', 2364, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2516, - 'E', 3808, - 'G', 3828, - 'K', 3828, - 'M', 3828, - 'P', 3828, - 'T', 3828, + '*', 2051, + '+', 2114, + '-', 1857, + '.', 2326, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2478, + 'E', 3765, + 'G', 3785, + 'K', 3785, + 'M', 3785, + 'P', 3785, + 'T', 3785, '`', 834, - 'a', 3939, - 'b', 2513, - 'd', 3890, - 'e', 3805, - 'g', 3827, - 'h', 3975, - 'i', 3936, - 'k', 3827, - 'm', 3829, - 'n', 3970, - 'o', 3977, - 'p', 3827, - 's', 3907, - 't', 3827, - 'u', 3988, - 'w', 3923, - 'x', 3969, - 0xb5, 3988, + 'a', 3895, + 'b', 2475, + 'd', 3847, + 'e', 3762, + 'g', 3784, + 'h', 3931, + 'i', 3892, + 'k', 3784, + 'm', 3786, + 'n', 3926, + 'o', 3933, + 'p', 3784, + 's', 3864, + 't', 3784, + 'u', 3944, + 'w', 3880, + 'x', 3925, + 0xb5, 3944, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(183); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4010); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3966); if (lookahead != 0 && (lookahead < '\'' || '+' < lookahead) && (lookahead < ';' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3791); + lookahead != '}') ADVANCE(3748); END_STATE(); case 116: ADVANCE_MAP( - '!', 3814, - '"', 2554, - '#', 4941, + '!', 3771, + '"', 2516, + '#', 4896, '\'', 791, - '*', 2084, - '+', 2152, - '-', 1890, - '.', 2364, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2516, - 'E', 3828, - 'G', 3828, - 'K', 3828, - 'M', 3828, - 'P', 3828, - 'T', 3828, + '*', 2051, + '+', 2114, + '-', 1857, + '.', 2326, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2478, + 'E', 3785, + 'G', 3785, + 'K', 3785, + 'M', 3785, + 'P', 3785, + 'T', 3785, '`', 834, - 'a', 3939, - 'b', 2513, - 'd', 3890, - 'e', 3823, - 'g', 3827, - 'h', 3975, - 'i', 3936, - 'k', 3827, - 'm', 3829, - 'n', 3970, - 'o', 3977, - 'p', 3827, - 's', 3907, - 't', 3827, - 'u', 3988, - 'w', 3923, - 'x', 3969, - 0xb5, 3988, + 'a', 3895, + 'b', 2475, + 'd', 3847, + 'e', 3780, + 'g', 3784, + 'h', 3931, + 'i', 3892, + 'k', 3784, + 'm', 3786, + 'n', 3926, + 'o', 3933, + 'p', 3784, + 's', 3864, + 't', 3784, + 'u', 3944, + 'w', 3880, + 'x', 3925, + 0xb5, 3944, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(183); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4010); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3966); if (lookahead != 0 && (lookahead < '\'' || '+' < lookahead) && (lookahead < ';' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3791); + lookahead != '}') ADVANCE(3748); END_STATE(); case 117: ADVANCE_MAP( - '!', 3814, - '"', 2554, - '#', 4941, + '!', 3771, + '"', 2516, + '#', 4896, '\'', 791, - '*', 2084, - '+', 2152, - '-', 1890, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, + '*', 2051, + '+', 2114, + '-', 1857, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, '`', 834, - 'a', 3939, - 'b', 3922, - 'e', 3941, - 'i', 3936, - 'm', 3964, - 'n', 3971, - 'o', 3977, - 's', 3998, - 'x', 3969, + 'a', 3895, + 'b', 3879, + 'e', 3897, + 'i', 3892, + 'm', 3920, + 'n', 3927, + 'o', 3933, + 's', 3954, + 'x', 3925, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(183); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4010); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3966); if (lookahead != 0 && (lookahead < '\'' || '+' < lookahead) && (lookahead < ';' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3791); + lookahead != '}') ADVANCE(3748); END_STATE(); case 118: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '$', 1844, - ')', 1840, - '*', 2084, - '+', 2152, - ',', 1835, - '-', 1890, - '.', 3813, - '/', 2120, - ':', 1830, - '<', 2213, - '=', 3816, - '>', 1874, - ']', 1838, - 'a', 3934, - 'b', 3918, - 'e', 3938, - 'i', 3935, - 'm', 3954, - 'n', 3953, - 'o', 3984, - 's', 3997, - 'x', 3948, + '!', 3771, + '#', 4896, + '$', 1811, + ')', 1807, + '*', 2051, + '+', 2114, + ',', 1802, + '-', 1857, + '.', 3770, + '/', 2082, + ':', 1797, + '<', 2175, + '=', 3773, + '>', 1841, + ']', 1805, + 'a', 3890, + 'b', 3875, + 'e', 3894, + 'i', 3891, + 'm', 3910, + 'n', 3909, + 'o', 3940, + 's', 3953, + 'x', 3904, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(189); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4009); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3965); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '/' < lookahead) && (lookahead < ':' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3791); + lookahead != '}') ADVANCE(3748); END_STATE(); case 119: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '$', 1844, - ')', 1840, - '*', 2084, - '+', 2152, - ',', 1835, - '-', 1890, - '.', 3813, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - ']', 1838, - 'a', 3934, - 'b', 3918, - 'e', 3938, - 'i', 3935, - 'm', 3954, - 'n', 3953, - 'o', 3984, - 's', 3997, - 'x', 3948, + '!', 3771, + '#', 4896, + '$', 1811, + ')', 1807, + '*', 2051, + '+', 2114, + ',', 1802, + '-', 1857, + '.', 3770, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + ']', 1805, + 'a', 3890, + 'b', 3875, + 'e', 3894, + 'i', 3891, + 'm', 3910, + 'n', 3909, + 'o', 3940, + 's', 3953, + 'x', 3904, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(190); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4009); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3965); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '/' < lookahead) && (lookahead < ';' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3791); + lookahead != '}') ADVANCE(3748); END_STATE(); case 120: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '$', 1844, - ')', 1840, - '*', 2084, - '+', 2152, - ',', 1835, - '-', 1890, - '.', 2366, - '/', 2120, - ':', 1830, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2515, - 'E', 3853, - 'G', 3856, - 'K', 3856, - 'M', 3856, - 'P', 3856, - 'T', 3856, - ']', 1838, - '_', 3866, - 'a', 3934, - 'b', 2509, - 'd', 3885, - 'e', 3851, - 'g', 3855, - 'h', 3983, - 'i', 3935, - 'k', 3855, - 'm', 3857, - 'n', 3952, - 'o', 3984, - 'p', 3855, - 's', 3903, - 't', 3855, - 'u', 3992, - 'w', 3925, - 'x', 3948, - '{', 2000, - 0xb5, 3992, + '!', 3771, + '#', 4896, + '$', 1811, + ')', 1807, + '*', 2051, + '+', 2114, + ',', 1802, + '-', 1857, + '.', 2328, + '/', 2082, + ':', 1797, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2477, + 'E', 3810, + 'G', 3813, + 'K', 3813, + 'M', 3813, + 'P', 3813, + 'T', 3813, + ']', 1805, + '_', 3823, + 'a', 3890, + 'b', 2471, + 'd', 3842, + 'e', 3808, + 'g', 3812, + 'h', 3939, + 'i', 3891, + 'k', 3812, + 'm', 3814, + 'n', 3908, + 'o', 3940, + 'p', 3812, + 's', 3860, + 't', 3812, + 'u', 3948, + 'w', 3882, + 'x', 3904, + '{', 1967, + 0xb5, 3948, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(187); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4009); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3965); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3791); + lookahead != '}') ADVANCE(3748); END_STATE(); case 121: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '$', 1844, - ')', 1840, - '*', 2084, - '+', 2152, - ',', 1835, - '-', 1890, - '.', 2366, - '/', 2120, - ':', 1830, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2515, - 'E', 3853, - 'G', 3856, - 'K', 3856, - 'M', 3856, - 'P', 3856, - 'T', 3856, - ']', 1838, - 'a', 3934, - 'b', 2509, - 'd', 3885, - 'e', 3851, - 'g', 3855, - 'h', 3983, - 'i', 3935, - 'k', 3855, - 'm', 3857, - 'n', 3952, - 'o', 3984, - 'p', 3855, - 's', 3903, - 't', 3855, - 'u', 3992, - 'w', 3925, - 'x', 3948, - 0xb5, 3992, + '!', 3771, + '#', 4896, + '$', 1811, + ')', 1807, + '*', 2051, + '+', 2114, + ',', 1802, + '-', 1857, + '.', 2328, + '/', 2082, + ':', 1797, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2477, + 'E', 3810, + 'G', 3813, + 'K', 3813, + 'M', 3813, + 'P', 3813, + 'T', 3813, + ']', 1805, + 'a', 3890, + 'b', 2471, + 'd', 3842, + 'e', 3808, + 'g', 3812, + 'h', 3939, + 'i', 3891, + 'k', 3812, + 'm', 3814, + 'n', 3908, + 'o', 3940, + 'p', 3812, + 's', 3860, + 't', 3812, + 'u', 3948, + 'w', 3882, + 'x', 3904, + 0xb5, 3948, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(189); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4009); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3965); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '/' < lookahead) && (lookahead < ':' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3791); + lookahead != '}') ADVANCE(3748); END_STATE(); case 122: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '$', 1844, - ')', 1840, - '*', 2084, - '+', 2152, - ',', 1835, - '-', 1890, - '.', 2366, - '/', 2120, - ':', 1830, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2515, - 'E', 3856, - 'G', 3856, - 'K', 3856, - 'M', 3856, - 'P', 3856, - 'T', 3856, - ']', 1838, - 'a', 3934, - 'b', 2509, - 'd', 3885, - 'e', 3854, - 'g', 3855, - 'h', 3983, - 'i', 3935, - 'k', 3855, - 'm', 3857, - 'n', 3952, - 'o', 3984, - 'p', 3855, - 's', 3903, - 't', 3855, - 'u', 3992, - 'w', 3925, - 'x', 3948, - 0xb5, 3992, + '!', 3771, + '#', 4896, + '$', 1811, + ')', 1807, + '*', 2051, + '+', 2114, + ',', 1802, + '-', 1857, + '.', 2328, + '/', 2082, + ':', 1797, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2477, + 'E', 3813, + 'G', 3813, + 'K', 3813, + 'M', 3813, + 'P', 3813, + 'T', 3813, + ']', 1805, + 'a', 3890, + 'b', 2471, + 'd', 3842, + 'e', 3811, + 'g', 3812, + 'h', 3939, + 'i', 3891, + 'k', 3812, + 'm', 3814, + 'n', 3908, + 'o', 3940, + 'p', 3812, + 's', 3860, + 't', 3812, + 'u', 3948, + 'w', 3882, + 'x', 3904, + 0xb5, 3948, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(189); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4009); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3965); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '/' < lookahead) && (lookahead < ':' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3791); + lookahead != '}') ADVANCE(3748); END_STATE(); case 123: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '$', 1844, - ')', 1840, - '*', 2084, - '+', 2152, - ',', 1835, - '-', 1890, - '.', 2366, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2515, - 'E', 3853, - 'G', 3856, - 'K', 3856, - 'M', 3856, - 'P', 3856, - 'T', 3856, - ']', 1838, - '_', 3866, - 'a', 3934, - 'b', 2509, - 'd', 3885, - 'e', 3851, - 'g', 3855, - 'h', 3983, - 'i', 3935, - 'k', 3855, - 'm', 3857, - 'n', 3952, - 'o', 3984, - 'p', 3855, - 's', 3903, - 't', 3855, - 'u', 3992, - 'w', 3925, - 'x', 3948, - 0xb5, 3992, + '!', 3771, + '#', 4896, + '$', 1811, + ')', 1807, + '*', 2051, + '+', 2114, + ',', 1802, + '-', 1857, + '.', 2328, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2477, + 'E', 3810, + 'G', 3813, + 'K', 3813, + 'M', 3813, + 'P', 3813, + 'T', 3813, + ']', 1805, + '_', 3823, + 'a', 3890, + 'b', 2471, + 'd', 3842, + 'e', 3808, + 'g', 3812, + 'h', 3939, + 'i', 3891, + 'k', 3812, + 'm', 3814, + 'n', 3908, + 'o', 3940, + 'p', 3812, + 's', 3860, + 't', 3812, + 'u', 3948, + 'w', 3882, + 'x', 3904, + 0xb5, 3948, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(190); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4009); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3965); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3791); + lookahead != '}') ADVANCE(3748); END_STATE(); case 124: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '$', 1844, - ')', 1840, - '*', 2084, - '+', 2152, - ',', 1835, - '-', 1890, - '.', 2366, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2515, - 'E', 3853, - 'G', 3856, - 'K', 3856, - 'M', 3856, - 'P', 3856, - 'T', 3856, - ']', 1838, - 'a', 3934, - 'b', 2509, - 'd', 3885, - 'e', 3851, - 'g', 3855, - 'h', 3983, - 'i', 3935, - 'k', 3855, - 'm', 3857, - 'n', 3952, - 'o', 3984, - 'p', 3855, - 's', 3903, - 't', 3855, - 'u', 3992, - 'w', 3925, - 'x', 3948, - 0xb5, 3992, + '!', 3771, + '#', 4896, + '$', 1811, + ')', 1807, + '*', 2051, + '+', 2114, + ',', 1802, + '-', 1857, + '.', 2328, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2477, + 'E', 3810, + 'G', 3813, + 'K', 3813, + 'M', 3813, + 'P', 3813, + 'T', 3813, + ']', 1805, + 'a', 3890, + 'b', 2471, + 'd', 3842, + 'e', 3808, + 'g', 3812, + 'h', 3939, + 'i', 3891, + 'k', 3812, + 'm', 3814, + 'n', 3908, + 'o', 3940, + 'p', 3812, + 's', 3860, + 't', 3812, + 'u', 3948, + 'w', 3882, + 'x', 3904, + 0xb5, 3948, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(190); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4009); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3965); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '/' < lookahead) && (lookahead < ';' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3791); + lookahead != '}') ADVANCE(3748); END_STATE(); case 125: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '$', 1844, - ')', 1840, - '*', 2084, - '+', 2152, - ',', 1835, - '-', 1890, - '.', 2366, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2515, - 'E', 3856, - 'G', 3856, - 'K', 3856, - 'M', 3856, - 'P', 3856, - 'T', 3856, - ']', 1838, - 'a', 3934, - 'b', 2509, - 'd', 3885, - 'e', 3854, - 'g', 3855, - 'h', 3983, - 'i', 3935, - 'k', 3855, - 'm', 3857, - 'n', 3952, - 'o', 3984, - 'p', 3855, - 's', 3903, - 't', 3855, - 'u', 3992, - 'w', 3925, - 'x', 3948, - 0xb5, 3992, + '!', 3771, + '#', 4896, + '$', 1811, + ')', 1807, + '*', 2051, + '+', 2114, + ',', 1802, + '-', 1857, + '.', 2328, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2477, + 'E', 3813, + 'G', 3813, + 'K', 3813, + 'M', 3813, + 'P', 3813, + 'T', 3813, + ']', 1805, + 'a', 3890, + 'b', 2471, + 'd', 3842, + 'e', 3811, + 'g', 3812, + 'h', 3939, + 'i', 3891, + 'k', 3812, + 'm', 3814, + 'n', 3908, + 'o', 3940, + 'p', 3812, + 's', 3860, + 't', 3812, + 'u', 3948, + 'w', 3882, + 'x', 3904, + 0xb5, 3948, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(190); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4009); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3965); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '/' < lookahead) && (lookahead < ';' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3791); + lookahead != '}') ADVANCE(3748); END_STATE(); case 126: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2152, - ',', 1835, - '-', 1890, - '.', 3813, - '/', 2120, - ':', 1830, - '<', 2213, - '=', 3816, - '>', 1874, - 'a', 3934, - 'b', 3918, - 'e', 3938, - 'i', 3935, - 'm', 3954, - 'n', 3953, - 'o', 3984, - 's', 3997, - 'x', 3948, - '|', 1841, + '!', 3771, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2114, + ',', 1802, + '-', 1857, + '.', 3770, + '/', 2082, + ':', 1797, + '<', 2175, + '=', 3773, + '>', 1841, + 'a', 3890, + 'b', 3875, + 'e', 3894, + 'i', 3891, + 'm', 3910, + 'n', 3909, + 'o', 3940, + 's', 3953, + 'x', 3904, + '|', 1808, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(199); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4009); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3965); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '/' < lookahead) && (lookahead < ':' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(3791); + (lookahead < '_' || '}' < lookahead)) ADVANCE(3748); END_STATE(); case 127: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2152, - ',', 1835, - '-', 1890, - '.', 3813, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - 'a', 3934, - 'b', 3918, - 'e', 3938, - 'i', 3935, - 'm', 3954, - 'n', 3953, - 'o', 3984, - 's', 3997, - 'x', 3948, - '|', 1841, + '!', 3771, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2114, + ',', 1802, + '-', 1857, + '.', 3770, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + 'a', 3890, + 'b', 3875, + 'e', 3894, + 'i', 3891, + 'm', 3910, + 'n', 3909, + 'o', 3940, + 's', 3953, + 'x', 3904, + '|', 1808, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(200); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4009); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3965); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '/' < lookahead) && (lookahead < ';' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(3791); + (lookahead < '_' || '}' < lookahead)) ADVANCE(3748); END_STATE(); case 128: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2152, - ',', 1835, - '-', 1890, - '.', 2366, - '/', 2120, - ':', 1830, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2515, - 'E', 3853, - 'G', 3856, - 'K', 3856, - 'M', 3856, - 'P', 3856, - 'T', 3856, - '_', 3866, - 'a', 3934, - 'b', 2509, - 'd', 3885, - 'e', 3851, - 'g', 3855, - 'h', 3983, - 'i', 3935, - 'k', 3855, - 'm', 3857, - 'n', 3952, - 'o', 3984, - 'p', 3855, - 's', 3903, - 't', 3855, - 'u', 3992, - 'w', 3925, - 'x', 3948, - '|', 1841, - 0xb5, 3992, + '!', 3771, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2114, + ',', 1802, + '-', 1857, + '.', 2328, + '/', 2082, + ':', 1797, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2477, + 'E', 3810, + 'G', 3813, + 'K', 3813, + 'M', 3813, + 'P', 3813, + 'T', 3813, + '_', 3823, + 'a', 3890, + 'b', 2471, + 'd', 3842, + 'e', 3808, + 'g', 3812, + 'h', 3939, + 'i', 3891, + 'k', 3812, + 'm', 3814, + 'n', 3908, + 'o', 3940, + 'p', 3812, + 's', 3860, + 't', 3812, + 'u', 3948, + 'w', 3882, + 'x', 3904, + '|', 1808, + 0xb5, 3948, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(199); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4009); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3965); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(3791); + (lookahead < '_' || '}' < lookahead)) ADVANCE(3748); END_STATE(); case 129: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2152, - ',', 1835, - '-', 1890, - '.', 2366, - '/', 2120, - ':', 1830, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2515, - 'E', 3853, - 'G', 3856, - 'K', 3856, - 'M', 3856, - 'P', 3856, - 'T', 3856, - 'a', 3934, - 'b', 2509, - 'd', 3885, - 'e', 3851, - 'g', 3855, - 'h', 3983, - 'i', 3935, - 'k', 3855, - 'm', 3857, - 'n', 3952, - 'o', 3984, - 'p', 3855, - 's', 3903, - 't', 3855, - 'u', 3992, - 'w', 3925, - 'x', 3948, - '|', 1841, - 0xb5, 3992, + '!', 3771, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2114, + ',', 1802, + '-', 1857, + '.', 2328, + '/', 2082, + ':', 1797, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2477, + 'E', 3810, + 'G', 3813, + 'K', 3813, + 'M', 3813, + 'P', 3813, + 'T', 3813, + 'a', 3890, + 'b', 2471, + 'd', 3842, + 'e', 3808, + 'g', 3812, + 'h', 3939, + 'i', 3891, + 'k', 3812, + 'm', 3814, + 'n', 3908, + 'o', 3940, + 'p', 3812, + 's', 3860, + 't', 3812, + 'u', 3948, + 'w', 3882, + 'x', 3904, + '|', 1808, + 0xb5, 3948, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(199); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4009); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3965); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '/' < lookahead) && (lookahead < ':' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(3791); + (lookahead < '_' || '}' < lookahead)) ADVANCE(3748); END_STATE(); case 130: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2152, - ',', 1835, - '-', 1890, - '.', 2366, - '/', 2120, - ':', 1830, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2515, - 'E', 3856, - 'G', 3856, - 'K', 3856, - 'M', 3856, - 'P', 3856, - 'T', 3856, - 'a', 3934, - 'b', 2509, - 'd', 3885, - 'e', 3854, - 'g', 3855, - 'h', 3983, - 'i', 3935, - 'k', 3855, - 'm', 3857, - 'n', 3952, - 'o', 3984, - 'p', 3855, - 's', 3903, - 't', 3855, - 'u', 3992, - 'w', 3925, - 'x', 3948, - '|', 1841, - 0xb5, 3992, + '!', 3771, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2114, + ',', 1802, + '-', 1857, + '.', 2328, + '/', 2082, + ':', 1797, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2477, + 'E', 3813, + 'G', 3813, + 'K', 3813, + 'M', 3813, + 'P', 3813, + 'T', 3813, + 'a', 3890, + 'b', 2471, + 'd', 3842, + 'e', 3811, + 'g', 3812, + 'h', 3939, + 'i', 3891, + 'k', 3812, + 'm', 3814, + 'n', 3908, + 'o', 3940, + 'p', 3812, + 's', 3860, + 't', 3812, + 'u', 3948, + 'w', 3882, + 'x', 3904, + '|', 1808, + 0xb5, 3948, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(199); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4009); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3965); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '/' < lookahead) && (lookahead < ':' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(3791); + (lookahead < '_' || '}' < lookahead)) ADVANCE(3748); END_STATE(); case 131: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2152, - ',', 1835, - '-', 1890, - '.', 2366, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2515, - 'E', 3853, - 'G', 3856, - 'K', 3856, - 'M', 3856, - 'P', 3856, - 'T', 3856, - '_', 3866, - 'a', 3934, - 'b', 2509, - 'd', 3885, - 'e', 3851, - 'g', 3855, - 'h', 3983, - 'i', 3935, - 'k', 3855, - 'm', 3857, - 'n', 3952, - 'o', 3984, - 'p', 3855, - 's', 3903, - 't', 3855, - 'u', 3992, - 'w', 3925, - 'x', 3948, - '|', 1841, - 0xb5, 3992, + '!', 3771, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2114, + ',', 1802, + '-', 1857, + '.', 2328, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2477, + 'E', 3810, + 'G', 3813, + 'K', 3813, + 'M', 3813, + 'P', 3813, + 'T', 3813, + '_', 3823, + 'a', 3890, + 'b', 2471, + 'd', 3842, + 'e', 3808, + 'g', 3812, + 'h', 3939, + 'i', 3891, + 'k', 3812, + 'm', 3814, + 'n', 3908, + 'o', 3940, + 'p', 3812, + 's', 3860, + 't', 3812, + 'u', 3948, + 'w', 3882, + 'x', 3904, + '|', 1808, + 0xb5, 3948, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(200); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4009); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3965); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(3791); + (lookahead < '_' || '}' < lookahead)) ADVANCE(3748); END_STATE(); case 132: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2152, - ',', 1835, - '-', 1890, - '.', 2366, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2515, - 'E', 3853, - 'G', 3856, - 'K', 3856, - 'M', 3856, - 'P', 3856, - 'T', 3856, - 'a', 3934, - 'b', 2509, - 'd', 3885, - 'e', 3851, - 'g', 3855, - 'h', 3983, - 'i', 3935, - 'k', 3855, - 'm', 3857, - 'n', 3952, - 'o', 3984, - 'p', 3855, - 's', 3903, - 't', 3855, - 'u', 3992, - 'w', 3925, - 'x', 3948, - '|', 1841, - 0xb5, 3992, + '!', 3771, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2114, + ',', 1802, + '-', 1857, + '.', 2328, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2477, + 'E', 3810, + 'G', 3813, + 'K', 3813, + 'M', 3813, + 'P', 3813, + 'T', 3813, + 'a', 3890, + 'b', 2471, + 'd', 3842, + 'e', 3808, + 'g', 3812, + 'h', 3939, + 'i', 3891, + 'k', 3812, + 'm', 3814, + 'n', 3908, + 'o', 3940, + 'p', 3812, + 's', 3860, + 't', 3812, + 'u', 3948, + 'w', 3882, + 'x', 3904, + '|', 1808, + 0xb5, 3948, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(200); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4009); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3965); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '/' < lookahead) && (lookahead < ';' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(3791); + (lookahead < '_' || '}' < lookahead)) ADVANCE(3748); END_STATE(); case 133: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2152, - ',', 1835, - '-', 1890, - '.', 2366, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2515, - 'E', 3856, - 'G', 3856, - 'K', 3856, - 'M', 3856, - 'P', 3856, - 'T', 3856, - 'a', 3934, - 'b', 2509, - 'd', 3885, - 'e', 3854, - 'g', 3855, - 'h', 3983, - 'i', 3935, - 'k', 3855, - 'm', 3857, - 'n', 3952, - 'o', 3984, - 'p', 3855, - 's', 3903, - 't', 3855, - 'u', 3992, - 'w', 3925, - 'x', 3948, - '|', 1841, - 0xb5, 3992, + '!', 3771, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2114, + ',', 1802, + '-', 1857, + '.', 2328, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2477, + 'E', 3813, + 'G', 3813, + 'K', 3813, + 'M', 3813, + 'P', 3813, + 'T', 3813, + 'a', 3890, + 'b', 2471, + 'd', 3842, + 'e', 3811, + 'g', 3812, + 'h', 3939, + 'i', 3891, + 'k', 3812, + 'm', 3814, + 'n', 3908, + 'o', 3940, + 'p', 3812, + 's', 3860, + 't', 3812, + 'u', 3948, + 'w', 3882, + 'x', 3904, + '|', 1808, + 0xb5, 3948, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(200); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4009); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3965); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '/' < lookahead) && (lookahead < ';' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(3791); + (lookahead < '_' || '}' < lookahead)) ADVANCE(3748); END_STATE(); case 134: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2152, - '-', 1890, - '.', 2364, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2507, - 'E', 3844, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - '[', 2535, - '_', 3867, - 'a', 3932, - 'b', 2508, - 'd', 3883, - 'e', 3842, - 'g', 3847, - 'h', 3980, - 'i', 3933, - 'k', 3847, - 'm', 3849, - 'n', 3973, - 'o', 3981, - 'p', 3847, - 's', 3902, - 't', 3847, - 'u', 3990, - 'w', 3924, - 'x', 3945, - '{', 2000, - 0xb5, 3990, + '!', 3771, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2114, + '-', 1857, + '.', 2326, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2469, + 'E', 3801, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + '[', 2497, + '_', 3824, + 'a', 3888, + 'b', 2470, + 'd', 3840, + 'e', 3799, + 'g', 3804, + 'h', 3936, + 'i', 3889, + 'k', 3804, + 'm', 3806, + 'n', 3929, + 'o', 3937, + 'p', 3804, + 's', 3859, + 't', 3804, + 'u', 3946, + 'w', 3881, + 'x', 3901, + '{', 1967, + 0xb5, 3946, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(207); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '+' < lookahead) && (lookahead < ';' || '>' < lookahead) && lookahead != ']' && (lookahead < '_' || 'b' < lookahead) && - lookahead != '}') ADVANCE(3791); + lookahead != '}') ADVANCE(3748); END_STATE(); case 135: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2152, - '-', 1890, - '.', 2364, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2507, - 'E', 3844, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - 'a', 3932, - 'b', 2508, - 'd', 3883, - 'e', 3842, - 'g', 3847, - 'h', 3980, - 'i', 3933, - 'k', 3847, - 'm', 3849, - 'n', 3973, - 'o', 3981, - 'p', 3847, - 's', 3902, - 't', 3847, - 'u', 3990, - 'w', 3924, - 'x', 3945, - '{', 2000, - 0xb5, 3990, + '!', 3771, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2114, + '-', 1857, + '.', 2326, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2469, + 'E', 3801, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + 'a', 3888, + 'b', 2470, + 'd', 3840, + 'e', 3799, + 'g', 3804, + 'h', 3936, + 'i', 3889, + 'k', 3804, + 'm', 3806, + 'n', 3929, + 'o', 3937, + 'p', 3804, + 's', 3859, + 't', 3804, + 'u', 3946, + 'w', 3881, + 'x', 3901, + '{', 1967, + 0xb5, 3946, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(207); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3748); END_STATE(); case 136: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2152, - '-', 1890, - '.', 2364, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2507, - 'E', 3848, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - 'a', 3932, - 'b', 2508, - 'd', 3883, - 'e', 3845, - 'g', 3847, - 'h', 3980, - 'i', 3933, - 'k', 3847, - 'm', 3849, - 'n', 3973, - 'o', 3981, - 'p', 3847, - 's', 3902, - 't', 3847, - 'u', 3990, - 'w', 3924, - 'x', 3945, - '{', 2000, - 0xb5, 3990, + '!', 3771, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2114, + '-', 1857, + '.', 2326, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2469, + 'E', 3805, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + 'a', 3888, + 'b', 2470, + 'd', 3840, + 'e', 3802, + 'g', 3804, + 'h', 3936, + 'i', 3889, + 'k', 3804, + 'm', 3806, + 'n', 3929, + 'o', 3937, + 'p', 3804, + 's', 3859, + 't', 3804, + 'u', 3946, + 'w', 3881, + 'x', 3901, + '{', 1967, + 0xb5, 3946, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(207); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3748); END_STATE(); case 137: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2152, - '-', 1890, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - 'a', 3932, - 'b', 3917, - 'e', 3937, - 'i', 3933, - 'm', 3951, - 'n', 3972, - 'o', 3981, - 's', 3994, - 'x', 3945, - '{', 2000, + '!', 3771, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2114, + '-', 1857, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + 'a', 3888, + 'b', 3874, + 'e', 3893, + 'i', 3889, + 'm', 3907, + 'n', 3928, + 'o', 3937, + 's', 3950, + 'x', 3901, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(207); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3748); END_STATE(); case 138: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2152, - '-', 1889, - '.', 2364, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2507, - 'E', 3844, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - '_', 3867, - 'a', 3932, - 'b', 2508, - 'd', 3883, - 'e', 3842, - 'g', 3847, - 'h', 3980, - 'i', 3933, - 'k', 3847, - 'm', 3849, - 'n', 3973, - 'o', 3981, - 'p', 3847, - 's', 3902, - 't', 3847, - 'u', 3990, - 'w', 3924, - 'x', 3945, - '{', 2000, - 0xb5, 3990, + '!', 3771, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2114, + '-', 1856, + '.', 2326, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2469, + 'E', 3801, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + '_', 3824, + 'a', 3888, + 'b', 2470, + 'd', 3840, + 'e', 3799, + 'g', 3804, + 'h', 3936, + 'i', 3889, + 'k', 3804, + 'm', 3806, + 'n', 3929, + 'o', 3937, + 'p', 3804, + 's', 3859, + 't', 3804, + 'u', 3946, + 'w', 3881, + 'x', 3901, + '{', 1967, + 0xb5, 3946, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(211); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3791); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3748); END_STATE(); case 139: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2152, - '-', 1889, - '.', 2364, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2507, - 'E', 3844, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - 'a', 3932, - 'b', 2508, - 'd', 3883, - 'e', 3842, - 'g', 3847, - 'h', 3980, - 'i', 3933, - 'k', 3847, - 'm', 3849, - 'n', 3973, - 'o', 3981, - 'p', 3847, - 's', 3902, - 't', 3847, - 'u', 3990, - 'w', 3924, - 'x', 3945, - '{', 2000, - 0xb5, 3990, + '!', 3771, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2114, + '-', 1856, + '.', 2326, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2469, + 'E', 3801, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + 'a', 3888, + 'b', 2470, + 'd', 3840, + 'e', 3799, + 'g', 3804, + 'h', 3936, + 'i', 3889, + 'k', 3804, + 'm', 3806, + 'n', 3929, + 'o', 3937, + 'p', 3804, + 's', 3859, + 't', 3804, + 'u', 3946, + 'w', 3881, + 'x', 3901, + '{', 1967, + 0xb5, 3946, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(211); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3748); END_STATE(); case 140: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2152, - '-', 1889, - '.', 2364, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2507, - 'E', 3848, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - 'a', 3932, - 'b', 2508, - 'd', 3883, - 'e', 3845, - 'g', 3847, - 'h', 3980, - 'i', 3933, - 'k', 3847, - 'm', 3849, - 'n', 3973, - 'o', 3981, - 'p', 3847, - 's', 3902, - 't', 3847, - 'u', 3990, - 'w', 3924, - 'x', 3945, - '{', 2000, - 0xb5, 3990, + '!', 3771, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2114, + '-', 1856, + '.', 2326, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2469, + 'E', 3805, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + 'a', 3888, + 'b', 2470, + 'd', 3840, + 'e', 3802, + 'g', 3804, + 'h', 3936, + 'i', 3889, + 'k', 3804, + 'm', 3806, + 'n', 3929, + 'o', 3937, + 'p', 3804, + 's', 3859, + 't', 3804, + 'u', 3946, + 'w', 3881, + 'x', 3901, + '{', 1967, + 0xb5, 3946, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(211); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3748); END_STATE(); case 141: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2152, - '-', 1889, - '.', 2364, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2515, - 'E', 3853, - 'G', 3856, - 'K', 3856, - 'M', 3856, - 'P', 3856, - 'T', 3856, - '_', 3866, - 'a', 3934, - 'b', 2509, - 'd', 3885, - 'e', 3851, - 'g', 3855, - 'h', 3983, - 'i', 3935, - 'k', 3855, - 'm', 3857, - 'n', 3952, - 'o', 3984, - 'p', 3855, - 's', 3903, - 't', 3855, - 'u', 3992, - 'w', 3925, - 'x', 3948, - 0xb5, 3992, + '!', 3771, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2114, + '-', 1856, + '.', 2326, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2477, + 'E', 3810, + 'G', 3813, + 'K', 3813, + 'M', 3813, + 'P', 3813, + 'T', 3813, + '_', 3823, + 'a', 3890, + 'b', 2471, + 'd', 3842, + 'e', 3808, + 'g', 3812, + 'h', 3939, + 'i', 3891, + 'k', 3812, + 'm', 3814, + 'n', 3908, + 'o', 3940, + 'p', 3812, + 's', 3860, + 't', 3812, + 'u', 3948, + 'w', 3882, + 'x', 3904, + 0xb5, 3948, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(212); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4009); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3791); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3965); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3748); END_STATE(); case 142: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2152, - '-', 1889, - '.', 2364, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2515, - 'E', 3853, - 'G', 3856, - 'K', 3856, - 'M', 3856, - 'P', 3856, - 'T', 3856, - 'a', 3934, - 'b', 2509, - 'd', 3885, - 'e', 3851, - 'g', 3855, - 'h', 3983, - 'i', 3935, - 'k', 3855, - 'm', 3857, - 'n', 3952, - 'o', 3984, - 'p', 3855, - 's', 3903, - 't', 3855, - 'u', 3992, - 'w', 3925, - 'x', 3948, - 0xb5, 3992, + '!', 3771, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2114, + '-', 1856, + '.', 2326, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2477, + 'E', 3810, + 'G', 3813, + 'K', 3813, + 'M', 3813, + 'P', 3813, + 'T', 3813, + 'a', 3890, + 'b', 2471, + 'd', 3842, + 'e', 3808, + 'g', 3812, + 'h', 3939, + 'i', 3891, + 'k', 3812, + 'm', 3814, + 'n', 3908, + 'o', 3940, + 'p', 3812, + 's', 3860, + 't', 3812, + 'u', 3948, + 'w', 3882, + 'x', 3904, + 0xb5, 3948, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(212); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4009); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3791); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3965); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3748); END_STATE(); case 143: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2152, - '-', 1889, - '.', 2364, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2515, - 'E', 3856, - 'G', 3856, - 'K', 3856, - 'M', 3856, - 'P', 3856, - 'T', 3856, - 'a', 3934, - 'b', 2509, - 'd', 3885, - 'e', 3854, - 'g', 3855, - 'h', 3983, - 'i', 3935, - 'k', 3855, - 'm', 3857, - 'n', 3952, - 'o', 3984, - 'p', 3855, - 's', 3903, - 't', 3855, - 'u', 3992, - 'w', 3925, - 'x', 3948, - 0xb5, 3992, + '!', 3771, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2114, + '-', 1856, + '.', 2326, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2477, + 'E', 3813, + 'G', 3813, + 'K', 3813, + 'M', 3813, + 'P', 3813, + 'T', 3813, + 'a', 3890, + 'b', 2471, + 'd', 3842, + 'e', 3811, + 'g', 3812, + 'h', 3939, + 'i', 3891, + 'k', 3812, + 'm', 3814, + 'n', 3908, + 'o', 3940, + 'p', 3812, + 's', 3860, + 't', 3812, + 'u', 3948, + 'w', 3882, + 'x', 3904, + 0xb5, 3948, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(212); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4009); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3791); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3965); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3748); END_STATE(); case 144: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2152, - '-', 1889, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - 'a', 3934, - 'b', 3918, - 'e', 3938, - 'i', 3935, - 'm', 3954, - 'n', 3953, - 'o', 3984, - 's', 3997, - 'x', 3948, + '!', 3771, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2114, + '-', 1856, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + 'a', 3890, + 'b', 3875, + 'e', 3894, + 'i', 3891, + 'm', 3910, + 'n', 3909, + 'o', 3940, + 's', 3953, + 'x', 3904, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(212); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4009); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3791); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3965); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3748); END_STATE(); case 145: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2152, - '-', 1889, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - 'a', 3932, - 'b', 3917, - 'e', 3937, - 'i', 3933, - 'm', 3951, - 'n', 3972, - 'o', 3981, - 's', 3994, - 'x', 3945, - '{', 2000, + '!', 3771, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2114, + '-', 1856, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + 'a', 3888, + 'b', 3874, + 'e', 3893, + 'i', 3889, + 'm', 3907, + 'n', 3928, + 'o', 3937, + 's', 3950, + 'x', 3901, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(211); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3748); END_STATE(); case 146: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '(', 2360, - '*', 2084, - '+', 2152, - ',', 3211, - '-', 1889, - '.', 2364, - '/', 2120, - ';', 1328, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2507, - 'E', 3844, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - '[', 2535, - ']', 1838, - '_', 3867, - 'a', 3932, - 'b', 2508, - 'd', 3883, - 'e', 3842, - 'g', 3847, - 'h', 3980, - 'i', 3933, - 'k', 3847, - 'm', 3849, - 'n', 3973, - 'o', 3981, - 'p', 3847, - 's', 3902, - 't', 3847, - 'u', 3990, - 'w', 3924, - 'x', 3945, - '}', 2001, - 0xb5, 3990, + '!', 3771, + '#', 4896, + '(', 2322, + '*', 2051, + '+', 2114, + ',', 3171, + '-', 1856, + '.', 2326, + '/', 2082, + ';', 1303, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2469, + 'E', 3801, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + '[', 2497, + ']', 1805, + '_', 3824, + 'a', 3888, + 'b', 2470, + 'd', 3840, + 'e', 3799, + 'g', 3804, + 'h', 3936, + 'i', 3889, + 'k', 3804, + 'm', 3806, + 'n', 3929, + 'o', 3937, + 'p', 3804, + 's', 3859, + 't', 3804, + 'u', 3946, + 'w', 3881, + 'x', 3901, + '}', 1968, + 0xb5, 3946, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + lookahead == ' ') ADVANCE(3173); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); if (lookahead != 0 && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '9' < lookahead) && (lookahead < '_' || 'b' < lookahead) && - lookahead != '{') ADVANCE(3791); + lookahead != '{') ADVANCE(3748); END_STATE(); case 147: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '*', 2084, - '+', 2152, - ',', 1835, - '-', 1889, - '.', 2364, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2507, - 'E', 3844, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - '_', 3867, - 'a', 3932, - 'b', 2508, - 'd', 3883, - 'e', 3842, - 'g', 3847, - 'h', 3980, - 'i', 3933, - 'k', 3847, - 'm', 3849, - 'n', 3973, - 'o', 3981, - 'p', 3847, - 's', 3902, - 't', 3847, - 'u', 3990, - 'w', 3924, - 'x', 3945, - '}', 2001, - 0xb5, 3990, + '!', 3771, + '#', 4896, + '*', 2051, + '+', 2114, + ',', 1802, + '-', 1856, + '.', 2326, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2469, + 'E', 3801, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + '_', 3824, + 'a', 3888, + 'b', 2470, + 'd', 3840, + 'e', 3799, + 'g', 3804, + 'h', 3936, + 'i', 3889, + 'k', 3804, + 'm', 3806, + 'n', 3929, + 'o', 3937, + 'p', 3804, + 's', 3859, + 't', 3804, + 'u', 3946, + 'w', 3881, + 'x', 3901, + '}', 1968, + 0xb5, 3946, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(220); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token4_character_set_1, 12, lookahead))) ADVANCE(3791); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token4_character_set_1, 12, lookahead))) ADVANCE(3748); END_STATE(); case 148: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '*', 2084, - '+', 2152, - ',', 1835, - '-', 1889, - '.', 2364, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2507, - 'E', 3844, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - 'a', 3932, - 'b', 2508, - 'd', 3883, - 'e', 3842, - 'g', 3847, - 'h', 3980, - 'i', 3933, - 'k', 3847, - 'm', 3849, - 'n', 3973, - 'o', 3981, - 'p', 3847, - 's', 3902, - 't', 3847, - 'u', 3990, - 'w', 3924, - 'x', 3945, - '}', 2001, - 0xb5, 3990, + '!', 3771, + '#', 4896, + '*', 2051, + '+', 2114, + ',', 1802, + '-', 1856, + '.', 2326, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2469, + 'E', 3801, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + 'a', 3888, + 'b', 2470, + 'd', 3840, + 'e', 3799, + 'g', 3804, + 'h', 3936, + 'i', 3889, + 'k', 3804, + 'm', 3806, + 'n', 3929, + 'o', 3937, + 'p', 3804, + 's', 3859, + 't', 3804, + 'u', 3946, + 'w', 3881, + 'x', 3901, + '}', 1968, + 0xb5, 3946, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(220); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token4_character_set_1, 12, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token4_character_set_1, 12, lookahead))) ADVANCE(3748); END_STATE(); case 149: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '*', 2084, - '+', 2152, - ',', 1835, - '-', 1889, - '.', 2364, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2507, - 'E', 3848, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - 'a', 3932, - 'b', 2508, - 'd', 3883, - 'e', 3845, - 'g', 3847, - 'h', 3980, - 'i', 3933, - 'k', 3847, - 'm', 3849, - 'n', 3973, - 'o', 3981, - 'p', 3847, - 's', 3902, - 't', 3847, - 'u', 3990, - 'w', 3924, - 'x', 3945, - '}', 2001, - 0xb5, 3990, + '!', 3771, + '#', 4896, + '*', 2051, + '+', 2114, + ',', 1802, + '-', 1856, + '.', 2326, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2469, + 'E', 3805, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + 'a', 3888, + 'b', 2470, + 'd', 3840, + 'e', 3802, + 'g', 3804, + 'h', 3936, + 'i', 3889, + 'k', 3804, + 'm', 3806, + 'n', 3929, + 'o', 3937, + 'p', 3804, + 's', 3859, + 't', 3804, + 'u', 3946, + 'w', 3881, + 'x', 3901, + '}', 1968, + 0xb5, 3946, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(220); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token4_character_set_1, 12, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token4_character_set_1, 12, lookahead))) ADVANCE(3748); END_STATE(); case 150: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '*', 2084, - '+', 2152, - ',', 1835, - '-', 1889, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - 'a', 3932, - 'b', 3917, - 'e', 3937, - 'i', 3933, - 'm', 3951, - 'n', 3972, - 'o', 3981, - 's', 3994, - 'x', 3945, - '}', 2001, + '!', 3771, + '#', 4896, + '*', 2051, + '+', 2114, + ',', 1802, + '-', 1856, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + 'a', 3888, + 'b', 3874, + 'e', 3893, + 'i', 3889, + 'm', 3907, + 'n', 3928, + 'o', 3937, + 's', 3950, + 'x', 3901, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(220); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token4_character_set_1, 12, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token4_character_set_1, 12, lookahead))) ADVANCE(3748); END_STATE(); case 151: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '*', 2084, - '+', 2152, - ',', 3211, - '-', 1889, - '.', 2364, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2507, - 'E', 3844, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - ']', 1838, - 'a', 3932, - 'b', 2508, - 'd', 3883, - 'e', 3842, - 'g', 3847, - 'h', 3980, - 'i', 3933, - 'k', 3847, - 'm', 3849, - 'n', 3973, - 'o', 3981, - 'p', 3847, - 's', 3902, - 't', 3847, - 'u', 3990, - 'w', 3924, - 'x', 3945, - '}', 2001, - 0xb5, 3990, + '!', 3771, + '#', 4896, + '*', 2051, + '+', 2114, + ',', 3171, + '-', 1856, + '.', 2326, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2469, + 'E', 3801, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + ']', 1805, + 'a', 3888, + 'b', 2470, + 'd', 3840, + 'e', 3799, + 'g', 3804, + 'h', 3936, + 'i', 3889, + 'k', 3804, + 'm', 3806, + 'n', 3929, + 'o', 3937, + 'p', 3804, + 's', 3859, + 't', 3804, + 'u', 3946, + 'w', 3881, + 'x', 3901, + '}', 1968, + 0xb5, 3946, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); + lookahead == ' ') ADVANCE(3173); if (lookahead != 0 && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '/' < lookahead) && (lookahead < ';' || '>' < lookahead) && lookahead != '[' && (lookahead < '`' || 'b' < lookahead) && - lookahead != '{') ADVANCE(3791); + lookahead != '{') ADVANCE(3748); END_STATE(); case 152: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '*', 2084, - '+', 2152, - ',', 3211, - '-', 1889, - '.', 2364, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2507, - 'E', 3848, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - ']', 1838, - 'a', 3932, - 'b', 2508, - 'd', 3883, - 'e', 3845, - 'g', 3847, - 'h', 3980, - 'i', 3933, - 'k', 3847, - 'm', 3849, - 'n', 3973, - 'o', 3981, - 'p', 3847, - 's', 3902, - 't', 3847, - 'u', 3990, - 'w', 3924, - 'x', 3945, - '}', 2001, - 0xb5, 3990, + '!', 3771, + '#', 4896, + '*', 2051, + '+', 2114, + ',', 3171, + '-', 1856, + '.', 2326, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2469, + 'E', 3805, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + ']', 1805, + 'a', 3888, + 'b', 2470, + 'd', 3840, + 'e', 3802, + 'g', 3804, + 'h', 3936, + 'i', 3889, + 'k', 3804, + 'm', 3806, + 'n', 3929, + 'o', 3937, + 'p', 3804, + 's', 3859, + 't', 3804, + 'u', 3946, + 'w', 3881, + 'x', 3901, + '}', 1968, + 0xb5, 3946, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); + lookahead == ' ') ADVANCE(3173); if (lookahead != 0 && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '/' < lookahead) && (lookahead < ';' || '>' < lookahead) && lookahead != '[' && (lookahead < '`' || 'b' < lookahead) && - lookahead != '{') ADVANCE(3791); + lookahead != '{') ADVANCE(3748); END_STATE(); case 153: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '*', 2084, - '+', 2152, - ',', 3211, - '-', 1889, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - ']', 1838, - 'a', 3932, - 'b', 3917, - 'e', 3937, - 'i', 3933, - 'm', 3951, - 'n', 3972, - 'o', 3981, - 's', 3994, - 'x', 3945, - '}', 2001, + '!', 3771, + '#', 4896, + '*', 2051, + '+', 2114, + ',', 3171, + '-', 1856, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + ']', 1805, + 'a', 3888, + 'b', 3874, + 'e', 3893, + 'i', 3889, + 'm', 3907, + 'n', 3928, + 'o', 3937, + 's', 3950, + 'x', 3901, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); + lookahead == ' ') ADVANCE(3173); if (lookahead != 0 && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '-' < lookahead) && (lookahead < ';' || '>' < lookahead) && lookahead != '[' && (lookahead < '`' || 'b' < lookahead) && - lookahead != '{') ADVANCE(3791); + lookahead != '{') ADVANCE(3748); END_STATE(); case 154: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '*', 2084, - '+', 2152, - '-', 1890, - '.', 2364, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2507, - 'E', 3844, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - '_', 3867, - 'a', 3932, - 'b', 2508, - 'd', 3883, - 'e', 3842, - 'g', 3847, - 'h', 3980, - 'i', 3933, - 'k', 3847, - 'm', 3849, - 'n', 3973, - 'o', 3981, - 'p', 3847, - 's', 3902, - 't', 3847, - 'u', 3990, - 'w', 3924, - 'x', 3945, - '{', 2000, - 0xb5, 3990, + '!', 3771, + '#', 4896, + '*', 2051, + '+', 2114, + '-', 1857, + '.', 2326, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2469, + 'E', 3801, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + '_', 3824, + 'a', 3888, + 'b', 2470, + 'd', 3840, + 'e', 3799, + 'g', 3804, + 'h', 3936, + 'i', 3889, + 'k', 3804, + 'm', 3806, + 'n', 3929, + 'o', 3937, + 'p', 3804, + 's', 3859, + 't', 3804, + 'u', 3946, + 'w', 3881, + 'x', 3901, + '{', 1967, + 0xb5, 3946, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(227); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3791); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3748); END_STATE(); case 155: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '*', 2084, - '+', 2152, - '-', 1890, - '.', 2364, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2507, - 'E', 3844, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - 'a', 3932, - 'b', 2508, - 'd', 3883, - 'e', 3842, - 'g', 3847, - 'h', 3980, - 'i', 3933, - 'k', 3847, - 'm', 3849, - 'n', 3973, - 'o', 3981, - 'p', 3847, - 's', 3902, - 't', 3847, - 'u', 3990, - 'w', 3924, - 'x', 3945, - '{', 2000, - 0xb5, 3990, + '!', 3771, + '#', 4896, + '*', 2051, + '+', 2114, + '-', 1857, + '.', 2326, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2469, + 'E', 3801, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + 'a', 3888, + 'b', 2470, + 'd', 3840, + 'e', 3799, + 'g', 3804, + 'h', 3936, + 'i', 3889, + 'k', 3804, + 'm', 3806, + 'n', 3929, + 'o', 3937, + 'p', 3804, + 's', 3859, + 't', 3804, + 'u', 3946, + 'w', 3881, + 'x', 3901, + '{', 1967, + 0xb5, 3946, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(227); - if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3748); END_STATE(); case 156: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '*', 2084, - '+', 2152, - '-', 1890, - '.', 2364, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2507, - 'E', 3848, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - 'a', 3932, - 'b', 2508, - 'd', 3883, - 'e', 3845, - 'g', 3847, - 'h', 3980, - 'i', 3933, - 'k', 3847, - 'm', 3849, - 'n', 3973, - 'o', 3981, - 'p', 3847, - 's', 3902, - 't', 3847, - 'u', 3990, - 'w', 3924, - 'x', 3945, - '{', 2000, - 0xb5, 3990, + '!', 3771, + '#', 4896, + '*', 2051, + '+', 2114, + '-', 1857, + '.', 2326, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2469, + 'E', 3805, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + 'a', 3888, + 'b', 2470, + 'd', 3840, + 'e', 3802, + 'g', 3804, + 'h', 3936, + 'i', 3889, + 'k', 3804, + 'm', 3806, + 'n', 3929, + 'o', 3937, + 'p', 3804, + 's', 3859, + 't', 3804, + 'u', 3946, + 'w', 3881, + 'x', 3901, + '{', 1967, + 0xb5, 3946, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(227); - if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3748); END_STATE(); case 157: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '*', 2084, - '+', 2152, - '-', 1890, - '.', 2364, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2515, - 'E', 3853, - 'G', 3856, - 'K', 3856, - 'M', 3856, - 'P', 3856, - 'T', 3856, - '_', 3866, - 'a', 3934, - 'b', 2509, - 'd', 3885, - 'e', 3851, - 'g', 3855, - 'h', 3983, - 'i', 3935, - 'k', 3855, - 'm', 3857, - 'n', 3952, - 'o', 3984, - 'p', 3855, - 's', 3903, - 't', 3855, - 'u', 3992, - 'w', 3925, - 'x', 3948, - 0xb5, 3992, + '!', 3771, + '#', 4896, + '*', 2051, + '+', 2114, + '-', 1857, + '.', 2326, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2477, + 'E', 3810, + 'G', 3813, + 'K', 3813, + 'M', 3813, + 'P', 3813, + 'T', 3813, + '_', 3823, + 'a', 3890, + 'b', 2471, + 'd', 3842, + 'e', 3808, + 'g', 3812, + 'h', 3939, + 'i', 3891, + 'k', 3812, + 'm', 3814, + 'n', 3908, + 'o', 3940, + 'p', 3812, + 's', 3860, + 't', 3812, + 'u', 3948, + 'w', 3882, + 'x', 3904, + 0xb5, 3948, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(228); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4009); - if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3791); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3965); + if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3748); END_STATE(); case 158: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '*', 2084, - '+', 2152, - '-', 1890, - '.', 2364, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2515, - 'E', 3853, - 'G', 3856, - 'K', 3856, - 'M', 3856, - 'P', 3856, - 'T', 3856, - 'a', 3934, - 'b', 2509, - 'd', 3885, - 'e', 3851, - 'g', 3855, - 'h', 3983, - 'i', 3935, - 'k', 3855, - 'm', 3857, - 'n', 3952, - 'o', 3984, - 'p', 3855, - 's', 3903, - 't', 3855, - 'u', 3992, - 'w', 3925, - 'x', 3948, - 0xb5, 3992, + '!', 3771, + '#', 4896, + '*', 2051, + '+', 2114, + '-', 1857, + '.', 2326, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2477, + 'E', 3810, + 'G', 3813, + 'K', 3813, + 'M', 3813, + 'P', 3813, + 'T', 3813, + 'a', 3890, + 'b', 2471, + 'd', 3842, + 'e', 3808, + 'g', 3812, + 'h', 3939, + 'i', 3891, + 'k', 3812, + 'm', 3814, + 'n', 3908, + 'o', 3940, + 'p', 3812, + 's', 3860, + 't', 3812, + 'u', 3948, + 'w', 3882, + 'x', 3904, + 0xb5, 3948, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(228); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4009); - if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3791); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3965); + if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3748); END_STATE(); case 159: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '*', 2084, - '+', 2152, - '-', 1890, - '.', 2364, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2515, - 'E', 3856, - 'G', 3856, - 'K', 3856, - 'M', 3856, - 'P', 3856, - 'T', 3856, - 'a', 3934, - 'b', 2509, - 'd', 3885, - 'e', 3854, - 'g', 3855, - 'h', 3983, - 'i', 3935, - 'k', 3855, - 'm', 3857, - 'n', 3952, - 'o', 3984, - 'p', 3855, - 's', 3903, - 't', 3855, - 'u', 3992, - 'w', 3925, - 'x', 3948, - 0xb5, 3992, + '!', 3771, + '#', 4896, + '*', 2051, + '+', 2114, + '-', 1857, + '.', 2326, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2477, + 'E', 3813, + 'G', 3813, + 'K', 3813, + 'M', 3813, + 'P', 3813, + 'T', 3813, + 'a', 3890, + 'b', 2471, + 'd', 3842, + 'e', 3811, + 'g', 3812, + 'h', 3939, + 'i', 3891, + 'k', 3812, + 'm', 3814, + 'n', 3908, + 'o', 3940, + 'p', 3812, + 's', 3860, + 't', 3812, + 'u', 3948, + 'w', 3882, + 'x', 3904, + 0xb5, 3948, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(228); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4009); - if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3791); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3965); + if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3748); END_STATE(); case 160: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '*', 2084, - '+', 2152, - '-', 1890, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - 'a', 3934, - 'b', 3918, - 'e', 3938, - 'i', 3935, - 'm', 3954, - 'n', 3953, - 'o', 3984, - 's', 3997, - 'x', 3948, + '!', 3771, + '#', 4896, + '*', 2051, + '+', 2114, + '-', 1857, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + 'a', 3890, + 'b', 3875, + 'e', 3894, + 'i', 3891, + 'm', 3910, + 'n', 3909, + 'o', 3940, + 's', 3953, + 'x', 3904, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(228); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4009); - if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3791); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3965); + if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3748); END_STATE(); case 161: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '*', 2084, - '+', 2152, - '-', 1890, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - 'a', 3932, - 'b', 3917, - 'e', 3937, - 'i', 3933, - 'm', 3951, - 'n', 3972, - 'o', 3981, - 's', 3994, - 'x', 3945, - '{', 2000, + '!', 3771, + '#', 4896, + '*', 2051, + '+', 2114, + '-', 1857, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + 'a', 3888, + 'b', 3874, + 'e', 3893, + 'i', 3889, + 'm', 3907, + 'n', 3928, + 'o', 3937, + 's', 3950, + 'x', 3901, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(227); - if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3748); END_STATE(); case 162: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '*', 2084, - '+', 2152, - '-', 1889, - '.', 2364, - '/', 2120, - '<', 2213, - '=', 3815, - '>', 1874, - 'B', 2507, - 'E', 3844, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - '_', 3867, - 'a', 3932, - 'b', 2508, - 'd', 3883, - 'e', 3842, - 'g', 3847, - 'h', 3980, - 'i', 3933, - 'k', 3847, - 'm', 3849, - 'n', 3973, - 'o', 3981, - 'p', 3847, - 's', 3902, - 't', 3847, - 'u', 3990, - 'w', 3924, - 'x', 3945, - 0xb5, 3990, + '!', 3771, + '#', 4896, + '*', 2051, + '+', 2114, + '-', 1856, + '.', 2326, + '/', 2082, + '<', 2175, + '=', 3772, + '>', 1841, + 'B', 2469, + 'E', 3801, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + '_', 3824, + 'a', 3888, + 'b', 2470, + 'd', 3840, + 'e', 3799, + 'g', 3804, + 'h', 3936, + 'i', 3889, + 'k', 3804, + 'm', 3806, + 'n', 3929, + 'o', 3937, + 'p', 3804, + 's', 3859, + 't', 3804, + 'u', 3946, + 'w', 3881, + 'x', 3901, + 0xb5, 3946, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(229); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3791); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3748); END_STATE(); case 163: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '*', 2084, - '+', 2152, - '-', 1889, - '.', 2364, - '/', 2120, - '<', 2213, - '=', 3815, - '>', 1874, - 'B', 2507, - 'E', 3844, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - 'a', 3932, - 'b', 2508, - 'd', 3883, - 'e', 3842, - 'g', 3847, - 'h', 3980, - 'i', 3933, - 'k', 3847, - 'm', 3849, - 'n', 3973, - 'o', 3981, - 'p', 3847, - 's', 3902, - 't', 3847, - 'u', 3990, - 'w', 3924, - 'x', 3945, - 0xb5, 3990, + '!', 3771, + '#', 4896, + '*', 2051, + '+', 2114, + '-', 1856, + '.', 2326, + '/', 2082, + '<', 2175, + '=', 3772, + '>', 1841, + 'B', 2469, + 'E', 3801, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + 'a', 3888, + 'b', 2470, + 'd', 3840, + 'e', 3799, + 'g', 3804, + 'h', 3936, + 'i', 3889, + 'k', 3804, + 'm', 3806, + 'n', 3929, + 'o', 3937, + 'p', 3804, + 's', 3859, + 't', 3804, + 'u', 3946, + 'w', 3881, + 'x', 3901, + 0xb5, 3946, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(229); - if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3748); END_STATE(); case 164: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '*', 2084, - '+', 2152, - '-', 1889, - '.', 2364, - '/', 2120, - '<', 2213, - '=', 3815, - '>', 1874, - 'B', 2507, - 'E', 3848, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - 'a', 3932, - 'b', 2508, - 'd', 3883, - 'e', 3845, - 'g', 3847, - 'h', 3980, - 'i', 3933, - 'k', 3847, - 'm', 3849, - 'n', 3973, - 'o', 3981, - 'p', 3847, - 's', 3902, - 't', 3847, - 'u', 3990, - 'w', 3924, - 'x', 3945, - 0xb5, 3990, + '!', 3771, + '#', 4896, + '*', 2051, + '+', 2114, + '-', 1856, + '.', 2326, + '/', 2082, + '<', 2175, + '=', 3772, + '>', 1841, + 'B', 2469, + 'E', 3805, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + 'a', 3888, + 'b', 2470, + 'd', 3840, + 'e', 3802, + 'g', 3804, + 'h', 3936, + 'i', 3889, + 'k', 3804, + 'm', 3806, + 'n', 3929, + 'o', 3937, + 'p', 3804, + 's', 3859, + 't', 3804, + 'u', 3946, + 'w', 3881, + 'x', 3901, + 0xb5, 3946, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(229); - if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3748); END_STATE(); case 165: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '*', 2084, - '+', 2152, - '-', 1889, - '.', 2364, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2507, - 'E', 3844, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - '_', 3867, - 'a', 3932, - 'b', 2508, - 'd', 3883, - 'e', 3842, - 'g', 3847, - 'h', 3980, - 'i', 3933, - 'k', 3847, - 'm', 3849, - 'n', 3973, - 'o', 3981, - 'p', 3847, - 's', 3902, - 't', 3847, - 'u', 3990, - 'w', 3924, - 'x', 3945, - '{', 2000, - 0xb5, 3990, + '!', 3771, + '#', 4896, + '*', 2051, + '+', 2114, + '-', 1856, + '.', 2326, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2469, + 'E', 3801, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + '_', 3824, + 'a', 3888, + 'b', 2470, + 'd', 3840, + 'e', 3799, + 'g', 3804, + 'h', 3936, + 'i', 3889, + 'k', 3804, + 'm', 3806, + 'n', 3929, + 'o', 3937, + 'p', 3804, + 's', 3859, + 't', 3804, + 'u', 3946, + 'w', 3881, + 'x', 3901, + '{', 1967, + 0xb5, 3946, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(230); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3791); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3748); END_STATE(); case 166: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '*', 2084, - '+', 2152, - '-', 1889, - '.', 2364, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2507, - 'E', 3844, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - 'a', 3932, - 'b', 2508, - 'd', 3883, - 'e', 3842, - 'g', 3847, - 'h', 3980, - 'i', 3933, - 'k', 3847, - 'm', 3849, - 'n', 3973, - 'o', 3981, - 'p', 3847, - 's', 3902, - 't', 3847, - 'u', 3990, - 'w', 3924, - 'x', 3945, - '{', 2000, - 0xb5, 3990, + '!', 3771, + '#', 4896, + '*', 2051, + '+', 2114, + '-', 1856, + '.', 2326, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2469, + 'E', 3801, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + 'a', 3888, + 'b', 2470, + 'd', 3840, + 'e', 3799, + 'g', 3804, + 'h', 3936, + 'i', 3889, + 'k', 3804, + 'm', 3806, + 'n', 3929, + 'o', 3937, + 'p', 3804, + 's', 3859, + 't', 3804, + 'u', 3946, + 'w', 3881, + 'x', 3901, + '{', 1967, + 0xb5, 3946, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(230); - if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3748); END_STATE(); case 167: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '*', 2084, - '+', 2152, - '-', 1889, - '.', 2364, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2507, - 'E', 3848, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - 'a', 3932, - 'b', 2508, - 'd', 3883, - 'e', 3845, - 'g', 3847, - 'h', 3980, - 'i', 3933, - 'k', 3847, - 'm', 3849, - 'n', 3973, - 'o', 3981, - 'p', 3847, - 's', 3902, - 't', 3847, - 'u', 3990, - 'w', 3924, - 'x', 3945, - '{', 2000, - 0xb5, 3990, + '!', 3771, + '#', 4896, + '*', 2051, + '+', 2114, + '-', 1856, + '.', 2326, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2469, + 'E', 3805, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + 'a', 3888, + 'b', 2470, + 'd', 3840, + 'e', 3802, + 'g', 3804, + 'h', 3936, + 'i', 3889, + 'k', 3804, + 'm', 3806, + 'n', 3929, + 'o', 3937, + 'p', 3804, + 's', 3859, + 't', 3804, + 'u', 3946, + 'w', 3881, + 'x', 3901, + '{', 1967, + 0xb5, 3946, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(230); - if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3748); END_STATE(); case 168: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '*', 2084, - '+', 2152, - '-', 1889, - '/', 2120, - '<', 2213, - '=', 3815, - '>', 1874, - 'a', 3932, - 'b', 3917, - 'e', 3937, - 'i', 3933, - 'm', 3951, - 'n', 3972, - 'o', 3981, - 's', 3994, - 'x', 3945, + '!', 3771, + '#', 4896, + '*', 2051, + '+', 2114, + '-', 1856, + '/', 2082, + '<', 2175, + '=', 3772, + '>', 1841, + 'a', 3888, + 'b', 3874, + 'e', 3893, + 'i', 3889, + 'm', 3907, + 'n', 3928, + 'o', 3937, + 's', 3950, + 'x', 3901, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(229); - if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3748); END_STATE(); case 169: ADVANCE_MAP( - '!', 3814, - '#', 4941, - '*', 2084, - '+', 2152, - '-', 1889, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - 'a', 3932, - 'b', 3917, - 'e', 3937, - 'i', 3933, - 'm', 3951, - 'n', 3972, - 'o', 3981, - 's', 3994, - 'x', 3945, - '{', 2000, + '!', 3771, + '#', 4896, + '*', 2051, + '+', 2114, + '-', 1856, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + 'a', 3888, + 'b', 3874, + 'e', 3893, + 'i', 3889, + 'm', 3907, + 'n', 3928, + 'o', 3937, + 's', 3950, + 'x', 3901, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(230); - if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3748); END_STATE(); case 170: ADVANCE_MAP( '!', 813, - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2154, - '-', 1902, - '.', 2364, - '/', 2120, - '0', 2458, - ':', 1830, - '<', 2213, + '(', 1806, + '*', 2051, + '+', 2116, + '-', 1869, + '.', 2326, + '/', 2082, + '0', 2420, + ':', 1797, + '<', 2175, '=', 814, - '>', 1874, - '?', 2102, + '>', 1841, + '?', 2064, 'E', 829, 'I', 995, 'N', 986, - '[', 1834, + '[', 1801, '_', 833, '`', 834, 'a', 906, @@ -23423,35 +22961,35 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 936, 'u', 946, 'x', 913, - '{', 2000, - '|', 1841, + '{', 1967, + '|', 1808, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(171); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); END_STATE(); case 171: ADVANCE_MAP( '!', 813, - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2154, - '-', 1902, - '.', 2481, - '/', 2120, - '0', 2458, - ':', 1830, - '<', 2213, + '(', 1806, + '*', 2051, + '+', 2116, + '-', 1869, + '.', 2443, + '/', 2082, + '0', 2420, + ':', 1797, + '<', 2175, '=', 814, - '>', 1874, - '?', 2102, + '>', 1841, + '?', 2064, 'I', 995, 'N', 986, - '[', 1834, + '[', 1801, '_', 833, '`', 834, 'a', 906, @@ -23468,34 +23006,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 936, 'u', 946, 'x', 913, - '{', 2000, - '|', 1841, + '{', 1967, + '|', 1808, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(171); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); END_STATE(); case 172: ADVANCE_MAP( '!', 813, - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2154, - '-', 1902, - '.', 2481, - '/', 2120, - '0', 2458, - '<', 2213, + '(', 1806, + '*', 2051, + '+', 2116, + '-', 1869, + '.', 2443, + '/', 2082, + '0', 2420, + '<', 2175, '=', 815, - '>', 1874, - '?', 2102, + '>', 1841, + '?', 2064, 'I', 995, 'N', 986, - '[', 1834, + '[', 1801, '_', 833, '`', 834, 'a', 906, @@ -23509,32 +23047,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 's', 950, 't', 936, 'x', 913, - '{', 2000, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(172); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); END_STATE(); case 173: ADVANCE_MAP( '!', 813, - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2154, - '-', 1902, - '.', 2481, - '/', 2120, - '0', 2458, - '<', 2213, + '(', 1806, + '*', 2051, + '+', 2116, + '-', 1869, + '.', 2443, + '/', 2082, + '0', 2420, + '<', 2175, '=', 815, - '>', 1874, + '>', 1841, 'I', 995, 'N', 986, - '[', 2535, + '[', 2497, '_', 833, '`', 834, 'a', 906, @@ -23548,32 +23086,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 's', 950, 't', 936, 'x', 913, - '{', 2000, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(174); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); END_STATE(); case 174: ADVANCE_MAP( '!', 813, - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2154, - '-', 1902, - '.', 2481, - '/', 2120, - '0', 2458, - '<', 2213, + '(', 1806, + '*', 2051, + '+', 2116, + '-', 1869, + '.', 2443, + '/', 2082, + '0', 2420, + '<', 2175, '=', 815, - '>', 1874, + '>', 1841, 'I', 995, 'N', 986, - '[', 1834, + '[', 1801, '_', 833, '`', 834, 'a', 906, @@ -23587,33 +23125,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 's', 950, 't', 936, 'x', 913, - '{', 2000, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(174); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); END_STATE(); case 175: ADVANCE_MAP( '!', 813, - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2154, - '-', 1902, - '.', 2365, - '/', 2120, - '0', 2458, - '<', 2213, + '(', 1806, + '*', 2051, + '+', 2116, + '-', 1869, + '.', 2327, + '/', 2082, + '0', 2420, + '<', 2175, '=', 815, - '>', 1874, - '?', 2102, + '>', 1841, + '?', 2064, 'I', 995, 'N', 986, - '[', 1834, + '[', 1801, '_', 833, '`', 834, 'a', 906, @@ -23627,32 +23165,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 's', 950, 't', 936, 'x', 913, - '{', 2000, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(172); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); END_STATE(); case 176: ADVANCE_MAP( '!', 813, - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2154, - '-', 1902, - '.', 2480, - '/', 2120, - '0', 2458, - '<', 2213, + '(', 1806, + '*', 2051, + '+', 2116, + '-', 1869, + '.', 2442, + '/', 2082, + '0', 2420, + '<', 2175, '=', 815, - '>', 1874, + '>', 1841, 'I', 995, 'N', 986, - '[', 1834, + '[', 1801, '_', 833, '`', 834, 'a', 906, @@ -23666,32 +23204,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 's', 950, 't', 936, 'x', 913, - '{', 2000, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(174); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); END_STATE(); case 177: ADVANCE_MAP( '!', 813, - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2158, - '-', 1907, - '.', 2481, - '/', 2120, - '0', 2458, - '<', 2213, + '(', 1806, + '*', 2051, + '+', 2120, + '-', 1874, + '.', 2443, + '/', 2082, + '0', 2420, + '<', 2175, '=', 815, - '>', 1874, + '>', 1841, 'I', 995, 'N', 986, - '[', 1834, + '[', 1801, '_', 833, '`', 834, 'a', 906, @@ -23705,250 +23243,248 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 's', 950, 't', 936, 'x', 913, - '{', 2000, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(177); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); END_STATE(); case 178: ADVANCE_MAP( '!', 813, - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '*', 2084, - '+', 2152, - '-', 1890, - '.', 2363, - '/', 2120, - '<', 2213, + '*', 2051, + '+', 2114, + '-', 1857, + '.', 2325, + '/', 2082, + '<', 2175, '=', 815, - '>', 1874, - '?', 2102, + '>', 1841, + '?', 2064, '`', 834, - 'a', 1457, - 'b', 1430, - 'e', 1461, - 'i', 1454, - 'm', 1473, - 'n', 1479, - 'o', 1488, - 's', 1526, - 'x', 1478, - '{', 2000, + 'a', 1425, + 'b', 1399, + 'e', 1429, + 'i', 1422, + 'm', 1441, + 'n', 1446, + 'o', 1455, + 's', 1493, + 'x', 1445, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(179); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); case 179: ADVANCE_MAP( '!', 813, - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '*', 2084, - '+', 2152, - '-', 1890, - '/', 2120, - '<', 2213, + '*', 2051, + '+', 2114, + '-', 1857, + '/', 2082, + '<', 2175, '=', 815, - '>', 1874, - '?', 2102, + '>', 1841, + '?', 2064, '`', 834, - 'a', 1457, - 'b', 1430, - 'e', 1461, - 'i', 1454, - 'm', 1473, - 'n', 1479, - 'o', 1488, - 's', 1526, - 'x', 1478, - '{', 2000, + 'a', 1425, + 'b', 1399, + 'e', 1429, + 'i', 1422, + 'm', 1441, + 'n', 1446, + 'o', 1455, + 's', 1493, + 'x', 1445, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(179); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); case 180: ADVANCE_MAP( '!', 813, - '"', 2554, - '#', 4941, + '"', 2516, + '#', 4896, '\'', 791, - '*', 2084, - '+', 2152, - '-', 1890, - '.', 2364, - '/', 2120, - '<', 2213, + '*', 2051, + '+', 2114, + '-', 1857, + '.', 2326, + '/', 2082, + '<', 2175, '=', 815, - '>', 1874, - '?', 2102, - '[', 2535, + '>', 1841, + '?', 2064, + '[', 2497, '`', 834, - 'a', 1457, - 'b', 1430, - 'e', 1461, - 'i', 1454, - 'm', 1473, - 'n', 1479, - 'o', 1488, - 's', 1526, - 'x', 1478, + 'a', 1425, + 'b', 1399, + 'e', 1429, + 'i', 1422, + 'm', 1441, + 'n', 1446, + 'o', 1455, + 's', 1493, + 'x', 1445, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(181); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); case 181: ADVANCE_MAP( '!', 813, - '"', 2554, - '#', 4941, + '"', 2516, + '#', 4896, '\'', 791, - '*', 2084, - '+', 2152, - '-', 1890, - '/', 2120, - '<', 2213, + '*', 2051, + '+', 2114, + '-', 1857, + '/', 2082, + '<', 2175, '=', 815, - '>', 1874, - '?', 2102, + '>', 1841, + '?', 2064, '`', 834, - 'a', 1457, - 'b', 1430, - 'e', 1461, - 'i', 1454, - 'm', 1473, - 'n', 1479, - 'o', 1488, - 's', 1526, - 'x', 1478, + 'a', 1425, + 'b', 1399, + 'e', 1429, + 'i', 1422, + 'm', 1441, + 'n', 1446, + 'o', 1455, + 's', 1493, + 'x', 1445, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(181); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); case 182: ADVANCE_MAP( '!', 813, - '"', 2554, - '#', 4941, + '"', 2516, + '#', 4896, '\'', 791, - '*', 2084, - '+', 2152, - '-', 1890, - '/', 2120, - '<', 2213, + '*', 2051, + '+', 2114, + '-', 1857, + '/', 2082, + '<', 2175, '=', 815, - '>', 1874, + '>', 1841, '`', 834, - 'a', 1457, - 'b', 1430, - 'e', 1461, - 'i', 1454, - 'm', 1473, - 'n', 1479, - 'o', 1488, - 's', 1526, - 'x', 1478, - '{', 2000, + 'a', 1425, + 'b', 1399, + 'e', 1429, + 'i', 1422, + 'm', 1441, + 'n', 1446, + 'o', 1455, + 's', 1493, + 'x', 1445, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(182); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); case 183: ADVANCE_MAP( '!', 813, - '"', 2554, - '#', 4941, + '"', 2516, + '#', 4896, '\'', 791, - '*', 2084, - '+', 2152, - '-', 1890, - '/', 2120, - '<', 2213, + '*', 2051, + '+', 2114, + '-', 1857, + '/', 2082, + '<', 2175, '=', 815, - '>', 1874, + '>', 1841, '`', 834, - 'a', 1457, - 'b', 1430, - 'e', 1461, - 'i', 1454, - 'm', 1473, - 'n', 1479, - 'o', 1488, - 's', 1526, - 'x', 1478, + 'a', 1425, + 'b', 1399, + 'e', 1429, + 'i', 1422, + 'm', 1441, + 'n', 1446, + 'o', 1455, + 's', 1493, + 'x', 1445, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(183); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); case 184: ADVANCE_MAP( '!', 813, - '"', 2554, - '#', 4941, + '"', 2516, + '#', 4896, '\'', 791, - '*', 2084, - '+', 2158, - '-', 1894, - '/', 2120, - '<', 2213, + '*', 2051, + '+', 2120, + '-', 1861, + '/', 2082, + '<', 2175, '=', 815, - '>', 1874, + '>', 1841, '`', 834, - 'a', 1457, - 'b', 1430, - 'e', 1461, - 'i', 1454, - 'm', 1473, - 'n', 1479, - 'o', 1488, - 's', 1526, - 'x', 1478, + 'a', 1425, + 'b', 1399, + 'e', 1429, + 'i', 1422, + 'm', 1441, + 'n', 1446, + 'o', 1455, + 's', 1493, + 'x', 1445, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(184); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); case 185: ADVANCE_MAP( '!', 813, - '#', 4941, - '$', 1844, - '(', 2360, - '*', 2084, - '+', 2152, - ',', 1835, - '-', 1889, - '.', 2364, - '/', 2120, - ':', 1830, - ';', 1328, - '<', 2213, + '#', 4896, + '$', 1811, + '(', 2322, + '*', 2051, + '+', 2114, + ',', 1802, + '-', 1856, + '.', 2326, + '/', 2082, + ':', 1797, + '<', 2175, '=', 814, - '>', 1874, - '?', 2102, - 'B', 2507, + '>', 1841, + '?', 2064, + 'B', 2469, 'E', 819, 'G', 821, 'K', 821, 'M', 821, 'P', 821, 'T', 821, - '[', 1834, - ']', 1838, + '[', 2497, '_', 832, 'a', 906, - 'b', 2508, + 'b', 2470, 'd', 835, 'e', 818, 'g', 820, @@ -23964,462 +23500,462 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'u', 941, 'w', 892, 'x', 913, - '{', 2000, - '|', 1841, - '}', 2001, + '{', 1967, + '|', 1808, + '}', 1968, 0xb5, 941, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(203); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + lookahead == ' ') SKIP(204); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); END_STATE(); case 186: ADVANCE_MAP( '!', 813, - '#', 4941, - '$', 1844, - ')', 1840, - '*', 2084, - '+', 2152, - ',', 1835, - '-', 1890, + '#', 4896, + '$', 1811, + ')', 1807, + '*', 2051, + '+', 2114, + ',', 1802, + '-', 1857, '.', 808, - '/', 2120, - ':', 1830, - '<', 2213, + '/', 2082, + ':', 1797, + '<', 2175, '=', 815, - '>', 1874, - '?', 2102, - ']', 1838, - 'a', 1605, - 'b', 1594, - 'e', 1608, - 'i', 1607, - 'm', 1614, - 'n', 1613, - 'o', 1620, - 's', 1636, - 'x', 1611, - '|', 1841, + '>', 1841, + '?', 2064, + ']', 1805, + 'a', 1572, + 'b', 1561, + 'e', 1575, + 'i', 1574, + 'm', 1581, + 'n', 1580, + 'o', 1587, + 's', 1603, + 'x', 1578, + '|', 1808, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(186); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 187: ADVANCE_MAP( '!', 813, - '#', 4941, - '$', 1844, - ')', 1840, - '*', 2084, - '+', 2152, - ',', 1835, - '-', 1890, + '#', 4896, + '$', 1811, + ')', 1807, + '*', 2051, + '+', 2114, + ',', 1802, + '-', 1857, '.', 808, - '/', 2120, - ':', 1830, - '<', 2213, + '/', 2082, + ':', 1797, + '<', 2175, '=', 815, - '>', 1874, - ']', 1838, - 'a', 1605, - 'b', 1594, - 'e', 1608, - 'i', 1607, - 'm', 1614, - 'n', 1613, - 'o', 1620, - 's', 1636, - 'x', 1611, - '{', 2000, + '>', 1841, + ']', 1805, + 'a', 1572, + 'b', 1561, + 'e', 1575, + 'i', 1574, + 'm', 1581, + 'n', 1580, + 'o', 1587, + 's', 1603, + 'x', 1578, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(187); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 188: ADVANCE_MAP( '!', 813, - '#', 4941, - '$', 1844, - ')', 1840, - '*', 2084, - '+', 2152, - ',', 1835, - '-', 1890, + '#', 4896, + '$', 1811, + ')', 1807, + '*', 2051, + '+', 2114, + ',', 1802, + '-', 1857, '.', 808, - '/', 2120, - ':', 1830, - '<', 2213, + '/', 2082, + ':', 1797, + '<', 2175, '=', 815, - '>', 1874, - ']', 1838, - 'a', 1605, - 'b', 1594, - 'e', 1608, - 'i', 1607, - 'm', 1614, - 'n', 1613, - 'o', 1620, - 's', 1636, - 'x', 1611, - '|', 1841, + '>', 1841, + ']', 1805, + 'a', 1572, + 'b', 1561, + 'e', 1575, + 'i', 1574, + 'm', 1581, + 'n', 1580, + 'o', 1587, + 's', 1603, + 'x', 1578, + '|', 1808, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(188); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 189: ADVANCE_MAP( '!', 813, - '#', 4941, - '$', 1844, - ')', 1840, - '*', 2084, - '+', 2152, - ',', 1835, - '-', 1890, + '#', 4896, + '$', 1811, + ')', 1807, + '*', 2051, + '+', 2114, + ',', 1802, + '-', 1857, '.', 808, - '/', 2120, - ':', 1830, - '<', 2213, + '/', 2082, + ':', 1797, + '<', 2175, '=', 815, - '>', 1874, - ']', 1838, - 'a', 1605, - 'b', 1594, - 'e', 1608, - 'i', 1607, - 'm', 1614, - 'n', 1613, - 'o', 1620, - 's', 1636, - 'x', 1611, + '>', 1841, + ']', 1805, + 'a', 1572, + 'b', 1561, + 'e', 1575, + 'i', 1574, + 'm', 1581, + 'n', 1580, + 'o', 1587, + 's', 1603, + 'x', 1578, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(189); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 190: ADVANCE_MAP( '!', 813, - '#', 4941, - '$', 1844, - ')', 1840, - '*', 2084, - '+', 2152, - ',', 1835, - '-', 1890, + '#', 4896, + '$', 1811, + ')', 1807, + '*', 2051, + '+', 2114, + ',', 1802, + '-', 1857, '.', 808, - '/', 2120, - '<', 2213, + '/', 2082, + '<', 2175, '=', 815, - '>', 1874, - ']', 1838, - 'a', 1605, - 'b', 1594, - 'e', 1608, - 'i', 1607, - 'm', 1614, - 'n', 1613, - 'o', 1620, - 's', 1636, - 'x', 1611, + '>', 1841, + ']', 1805, + 'a', 1572, + 'b', 1561, + 'e', 1575, + 'i', 1574, + 'm', 1581, + 'n', 1580, + 'o', 1587, + 's', 1603, + 'x', 1578, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(190); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 191: ADVANCE_MAP( '!', 813, - '#', 4941, - '$', 1844, - ')', 1840, - '*', 2084, - '+', 2152, - ',', 1835, - '-', 1890, - '.', 2366, - '/', 2120, - ':', 1830, - '<', 2213, + '#', 4896, + '$', 1811, + ')', 1807, + '*', 2051, + '+', 2114, + ',', 1802, + '-', 1857, + '.', 2328, + '/', 2082, + ':', 1797, + '<', 2175, '=', 815, - '>', 1874, - '?', 2102, - '[', 2535, - ']', 1838, - 'a', 1605, - 'b', 1594, - 'e', 1608, - 'i', 1607, - 'm', 1614, - 'n', 1613, - 'o', 1620, - 's', 1636, - 'x', 1611, - '|', 1841, + '>', 1841, + '?', 2064, + '[', 2497, + ']', 1805, + 'a', 1572, + 'b', 1561, + 'e', 1575, + 'i', 1574, + 'm', 1581, + 'n', 1580, + 'o', 1587, + 's', 1603, + 'x', 1578, + '|', 1808, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(186); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 192: ADVANCE_MAP( '!', 813, - '#', 4941, - '$', 1844, - ')', 1840, - '*', 2084, - '+', 2152, - ',', 1835, - '-', 1890, - '.', 2366, - '/', 2120, - ':', 1830, - '<', 2213, + '#', 4896, + '$', 1811, + ')', 1807, + '*', 2051, + '+', 2114, + ',', 1802, + '-', 1857, + '.', 2328, + '/', 2082, + ':', 1797, + '<', 2175, '=', 815, - '>', 1874, - 'B', 2515, - 'E', 1571, - 'G', 1574, - 'K', 1574, - 'M', 1574, - 'P', 1574, - 'T', 1574, - ']', 1838, - 'a', 1605, - 'b', 2509, - 'd', 1581, - 'e', 1570, - 'g', 1573, - 'h', 1619, - 'i', 1607, - 'k', 1573, - 'm', 1575, - 'n', 1612, - 'o', 1620, - 'p', 1573, - 's', 1591, - 't', 1573, - 'u', 1628, - 'w', 1596, - 'x', 1611, - '|', 1841, - 0xb5, 1628, + '>', 1841, + 'B', 2477, + 'E', 1538, + 'G', 1541, + 'K', 1541, + 'M', 1541, + 'P', 1541, + 'T', 1541, + ']', 1805, + 'a', 1572, + 'b', 2471, + 'd', 1548, + 'e', 1537, + 'g', 1540, + 'h', 1586, + 'i', 1574, + 'k', 1540, + 'm', 1542, + 'n', 1579, + 'o', 1587, + 'p', 1540, + 's', 1558, + 't', 1540, + 'u', 1595, + 'w', 1563, + 'x', 1578, + '|', 1808, + 0xb5, 1595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(188); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 193: ADVANCE_MAP( '!', 813, - '#', 4941, - '$', 1844, - ')', 1840, - '*', 2084, - '+', 2152, - ',', 1835, - '-', 1890, + '#', 4896, + '$', 1811, + ')', 1807, + '*', 2051, + '+', 2114, + ',', 1802, + '-', 1857, '.', 806, - '/', 2120, - ':', 1830, - '<', 2213, + '/', 2082, + ':', 1797, + '<', 2175, '=', 815, - '>', 1874, - 'B', 2515, - 'E', 1571, - 'G', 1574, - 'K', 1574, - 'M', 1574, - 'P', 1574, - 'T', 1574, - ']', 1838, - '_', 1579, - 'a', 1605, - 'b', 2509, - 'd', 1581, - 'e', 1570, - 'g', 1573, - 'h', 1619, - 'i', 1607, - 'k', 1573, - 'm', 1575, - 'n', 1612, - 'o', 1620, - 'p', 1573, - 's', 1591, - 't', 1573, - 'u', 1628, - 'w', 1596, - 'x', 1611, - '|', 1841, - 0xb5, 1628, + '>', 1841, + 'B', 2477, + 'E', 1538, + 'G', 1541, + 'K', 1541, + 'M', 1541, + 'P', 1541, + 'T', 1541, + ']', 1805, + '_', 1546, + 'a', 1572, + 'b', 2471, + 'd', 1548, + 'e', 1537, + 'g', 1540, + 'h', 1586, + 'i', 1574, + 'k', 1540, + 'm', 1542, + 'n', 1579, + 'o', 1587, + 'p', 1540, + 's', 1558, + 't', 1540, + 'u', 1595, + 'w', 1563, + 'x', 1578, + '|', 1808, + 0xb5, 1595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(188); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 194: ADVANCE_MAP( '!', 813, - '#', 4941, - '$', 1844, - ')', 1840, - '*', 2084, - '+', 2152, - ',', 1835, - '-', 1890, + '#', 4896, + '$', 1811, + ')', 1807, + '*', 2051, + '+', 2114, + ',', 1802, + '-', 1857, '.', 806, - '/', 2120, - ':', 1830, - '<', 2213, + '/', 2082, + ':', 1797, + '<', 2175, '=', 815, - '>', 1874, - 'B', 2515, - 'E', 1574, - 'G', 1574, - 'K', 1574, - 'M', 1574, - 'P', 1574, - 'T', 1574, - ']', 1838, - 'a', 1605, - 'b', 2509, - 'd', 1581, - 'e', 1572, - 'g', 1573, - 'h', 1619, - 'i', 1607, - 'k', 1573, - 'm', 1575, - 'n', 1612, - 'o', 1620, - 'p', 1573, - 's', 1591, - 't', 1573, - 'u', 1628, - 'w', 1596, - 'x', 1611, - '|', 1841, - 0xb5, 1628, + '>', 1841, + 'B', 2477, + 'E', 1541, + 'G', 1541, + 'K', 1541, + 'M', 1541, + 'P', 1541, + 'T', 1541, + ']', 1805, + 'a', 1572, + 'b', 2471, + 'd', 1548, + 'e', 1539, + 'g', 1540, + 'h', 1586, + 'i', 1574, + 'k', 1540, + 'm', 1542, + 'n', 1579, + 'o', 1587, + 'p', 1540, + 's', 1558, + 't', 1540, + 'u', 1595, + 'w', 1563, + 'x', 1578, + '|', 1808, + 0xb5, 1595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(188); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 195: ADVANCE_MAP( '!', 813, - '#', 4941, - '$', 1844, - ')', 1840, - '*', 2084, - '+', 2152, - ',', 1835, - '-', 1890, - '.', 2367, - '/', 2120, - ':', 1830, - '<', 2213, + '#', 4896, + '$', 1811, + ')', 1807, + '*', 2051, + '+', 2114, + ',', 1802, + '-', 1857, + '.', 2329, + '/', 2082, + ':', 1797, + '<', 2175, '=', 815, - '>', 1874, - '?', 2102, - ']', 1838, - 'a', 1605, - 'b', 1594, - 'e', 1608, - 'i', 1607, - 'm', 1614, - 'n', 1613, - 'o', 1620, - 's', 1636, - 'x', 1611, - '|', 1841, + '>', 1841, + '?', 2064, + ']', 1805, + 'a', 1572, + 'b', 1561, + 'e', 1575, + 'i', 1574, + 'm', 1581, + 'n', 1580, + 'o', 1587, + 's', 1603, + 'x', 1578, + '|', 1808, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(186); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 196: ADVANCE_MAP( '!', 813, - '#', 4941, - '$', 1844, - ')', 1840, - '*', 2084, - '+', 2158, - ',', 1835, - '-', 1894, + '#', 4896, + '$', 1811, + ')', 1807, + '*', 2051, + '+', 2120, + ',', 1802, + '-', 1861, '.', 808, - '/', 2120, - ':', 1830, - '<', 2213, + '/', 2082, + ':', 1797, + '<', 2175, '=', 815, - '>', 1874, - ']', 1838, - 'a', 1605, - 'b', 1594, - 'e', 1608, - 'i', 1607, - 'm', 1614, - 'n', 1613, - 'o', 1620, - 's', 1636, - 'x', 1611, + '>', 1841, + ']', 1805, + 'a', 1572, + 'b', 1561, + 'e', 1575, + 'i', 1574, + 'm', 1581, + 'n', 1580, + 'o', 1587, + 's', 1603, + 'x', 1578, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(196); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 197: ADVANCE_MAP( '!', 813, - '#', 4941, - '$', 1844, - ')', 1840, - '*', 2084, - '+', 2158, - ',', 1835, - '-', 1894, + '#', 4896, + '$', 1811, + ')', 1807, + '*', 2051, + '+', 2120, + ',', 1802, + '-', 1861, '.', 808, - '/', 2120, - '<', 2213, + '/', 2082, + '<', 2175, '=', 815, - '>', 1874, - ']', 1838, - 'a', 1605, - 'b', 1594, - 'e', 1608, - 'i', 1607, - 'm', 1614, - 'n', 1613, - 'o', 1620, - 's', 1636, - 'x', 1611, + '>', 1841, + ']', 1805, + 'a', 1572, + 'b', 1561, + 'e', 1575, + 'i', 1574, + 'm', 1581, + 'n', 1580, + 'o', 1587, + 's', 1603, + 'x', 1578, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(197); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 198: ADVANCE_MAP( '!', 813, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2152, - ',', 1835, - '-', 1890, - '.', 2364, - '/', 2120, - '<', 2213, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2114, + ',', 1802, + '-', 1857, + '.', 2326, + '/', 2082, + '<', 2175, '=', 814, - '>', 1874, - '?', 2102, + '>', 1841, + '?', 2064, 'a', 906, 'b', 884, 'e', 910, @@ -24429,9 +23965,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'o', 932, 's', 950, 'x', 913, - '{', 2000, - '|', 1841, - '}', 2001, + '{', 1967, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(201); @@ -24439,76 +23975,76 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 199: ADVANCE_MAP( '!', 813, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2152, - ',', 1835, - '-', 1890, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2114, + ',', 1802, + '-', 1857, '.', 808, - '/', 2120, - ':', 1830, - '<', 2213, + '/', 2082, + ':', 1797, + '<', 2175, '=', 815, - '>', 1874, - 'a', 1605, - 'b', 1594, - 'e', 1608, - 'i', 1607, - 'm', 1614, - 'n', 1613, - 'o', 1620, - 's', 1636, - 'x', 1611, - '|', 1841, + '>', 1841, + 'a', 1572, + 'b', 1561, + 'e', 1575, + 'i', 1574, + 'm', 1581, + 'n', 1580, + 'o', 1587, + 's', 1603, + 'x', 1578, + '|', 1808, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(199); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 200: ADVANCE_MAP( '!', 813, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2152, - ',', 1835, - '-', 1890, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2114, + ',', 1802, + '-', 1857, '.', 808, - '/', 2120, - '<', 2213, + '/', 2082, + '<', 2175, '=', 815, - '>', 1874, - 'a', 1605, - 'b', 1594, - 'e', 1608, - 'i', 1607, - 'm', 1614, - 'n', 1613, - 'o', 1620, - 's', 1636, - 'x', 1611, - '|', 1841, + '>', 1841, + 'a', 1572, + 'b', 1561, + 'e', 1575, + 'i', 1574, + 'm', 1581, + 'n', 1580, + 'o', 1587, + 's', 1603, + 'x', 1578, + '|', 1808, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(200); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 201: ADVANCE_MAP( '!', 813, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2152, - ',', 1835, - '-', 1890, - '/', 2120, - '<', 2213, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2114, + ',', 1802, + '-', 1857, + '/', 2082, + '<', 2175, '=', 814, - '>', 1874, - '?', 2102, + '>', 1841, + '?', 2064, 'a', 906, 'b', 884, 'e', 910, @@ -24518,9 +24054,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'o', 932, 's', 950, 'x', 913, - '{', 2000, - '|', 1841, - '}', 2001, + '{', 1967, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(201); @@ -24528,21 +24064,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 202: ADVANCE_MAP( '!', 813, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2152, - ',', 1835, - '-', 1889, - '.', 2363, - '/', 2120, - ':', 1830, - '<', 2213, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2114, + ',', 1802, + '-', 1856, + '.', 2325, + '/', 2082, + ':', 1797, + ';', 1303, + '<', 2175, '=', 814, - '>', 1874, - '?', 2102, + '>', 1841, + '?', 2064, 'E', 829, - '[', 2535, + '[', 1801, + ']', 1805, 'a', 906, 'b', 884, 'e', 828, @@ -24552,31 +24090,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'o', 932, 's', 950, 'x', 913, - '{', 2000, - '|', 1841, - '}', 2001, + '{', 1967, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(204); + lookahead == ' ') SKIP(203); END_STATE(); case 203: ADVANCE_MAP( '!', 813, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2152, - ',', 1835, - '-', 1889, - '/', 2120, - ':', 1830, - ';', 1328, - '<', 2213, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2114, + ',', 1802, + '-', 1856, + '/', 2082, + ':', 1797, + ';', 1303, + '<', 2175, '=', 814, - '>', 1874, - '?', 2102, - '[', 1834, - ']', 1838, + '>', 1841, + '?', 2064, + '[', 1801, + ']', 1805, 'a', 906, 'b', 884, 'e', 910, @@ -24586,9 +24124,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'o', 932, 's', 950, 'x', 913, - '{', 2000, - '|', 1841, - '}', 2001, + '{', 1967, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(203); @@ -24596,18 +24134,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 204: ADVANCE_MAP( '!', 813, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2152, - ',', 1835, - '-', 1889, - '/', 2120, - ':', 1830, - '<', 2213, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2114, + ',', 1802, + '-', 1856, + '/', 2082, + ':', 1797, + '<', 2175, '=', 814, - '>', 1874, - '?', 2102, + '>', 1841, + '?', 2064, 'a', 906, 'b', 884, 'e', 910, @@ -24617,9 +24155,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'o', 932, 's', 950, 'x', 913, - '{', 2000, - '|', 1841, - '}', 2001, + '{', 1967, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(204); @@ -24627,17 +24165,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 205: ADVANCE_MAP( '!', 813, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2152, - '-', 1890, - '.', 2363, - '/', 2120, - '<', 2213, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2114, + '-', 1857, + '.', 2325, + '/', 2082, + '<', 2175, '=', 815, - '>', 1874, - '?', 2102, + '>', 1841, + '?', 2064, 'E', 829, 'a', 906, 'b', 884, @@ -24648,7 +24186,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'o', 932, 's', 950, 'x', 913, - '{', 2000, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(206); @@ -24656,16 +24194,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 206: ADVANCE_MAP( '!', 813, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2152, - '-', 1890, - '/', 2120, - '<', 2213, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2114, + '-', 1857, + '/', 2082, + '<', 2175, '=', 815, - '>', 1874, - '?', 2102, + '>', 1841, + '?', 2064, 'a', 906, 'b', 884, 'e', 910, @@ -24675,7 +24213,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'o', 932, 's', 950, 'x', 913, - '{', 2000, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(206); @@ -24683,15 +24221,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 207: ADVANCE_MAP( '!', 813, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2152, - '-', 1890, - '/', 2120, - '<', 2213, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2114, + '-', 1857, + '/', 2082, + '<', 2175, '=', 815, - '>', 1874, + '>', 1841, 'a', 906, 'b', 884, 'e', 910, @@ -24701,7 +24239,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'o', 932, 's', 950, 'x', 913, - '{', 2000, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(207); @@ -24709,99 +24247,99 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 208: ADVANCE_MAP( '!', 813, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2152, - '-', 1889, - '.', 2364, - '/', 2120, - '<', 2213, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2114, + '-', 1856, + '.', 2326, + '/', 2082, + '<', 2175, '=', 815, - '>', 1874, - '?', 2102, - '[', 2535, - 'a', 1605, - 'b', 1594, - 'e', 1608, - 'i', 1607, - 'm', 1614, - 'n', 1613, - 'o', 1620, - 's', 1636, - 'x', 1611, + '>', 1841, + '?', 2064, + '[', 2497, + 'a', 1572, + 'b', 1561, + 'e', 1575, + 'i', 1574, + 'm', 1581, + 'n', 1580, + 'o', 1587, + 's', 1603, + 'x', 1578, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(210); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 209: ADVANCE_MAP( '!', 813, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2152, - '-', 1889, - '.', 2363, - '/', 2120, - '<', 2213, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2114, + '-', 1856, + '.', 2325, + '/', 2082, + '<', 2175, '=', 815, - '>', 1874, - '?', 2102, - 'a', 1605, - 'b', 1594, - 'e', 1608, - 'i', 1607, - 'm', 1614, - 'n', 1613, - 'o', 1620, - 's', 1636, - 'x', 1611, + '>', 1841, + '?', 2064, + 'a', 1572, + 'b', 1561, + 'e', 1575, + 'i', 1574, + 'm', 1581, + 'n', 1580, + 'o', 1587, + 's', 1603, + 'x', 1578, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(210); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 210: ADVANCE_MAP( '!', 813, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2152, - '-', 1889, - '/', 2120, - '<', 2213, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2114, + '-', 1856, + '/', 2082, + '<', 2175, '=', 815, - '>', 1874, - '?', 2102, - 'a', 1605, - 'b', 1594, - 'e', 1608, - 'i', 1607, - 'm', 1614, - 'n', 1613, - 'o', 1620, - 's', 1636, - 'x', 1611, + '>', 1841, + '?', 2064, + 'a', 1572, + 'b', 1561, + 'e', 1575, + 'i', 1574, + 'm', 1581, + 'n', 1580, + 'o', 1587, + 's', 1603, + 'x', 1578, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(210); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 211: ADVANCE_MAP( '!', 813, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2152, - '-', 1889, - '/', 2120, - '<', 2213, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2114, + '-', 1856, + '/', 2082, + '<', 2175, '=', 815, - '>', 1874, + '>', 1841, 'a', 906, 'b', 884, 'e', 910, @@ -24811,7 +24349,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'o', 932, 's', 950, 'x', 913, - '{', 2000, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(211); @@ -24819,101 +24357,101 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 212: ADVANCE_MAP( '!', 813, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2152, - '-', 1889, - '/', 2120, - '<', 2213, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2114, + '-', 1856, + '/', 2082, + '<', 2175, '=', 815, - '>', 1874, - 'a', 1605, - 'b', 1594, - 'e', 1608, - 'i', 1607, - 'm', 1614, - 'n', 1613, - 'o', 1620, - 's', 1636, - 'x', 1611, + '>', 1841, + 'a', 1572, + 'b', 1561, + 'e', 1575, + 'i', 1574, + 'm', 1581, + 'n', 1580, + 'o', 1587, + 's', 1603, + 'x', 1578, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(212); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 213: ADVANCE_MAP( '!', 813, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2158, - ',', 1835, - '-', 1894, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2120, + ',', 1802, + '-', 1861, '.', 808, - '/', 2120, - ':', 1830, - '<', 2213, + '/', 2082, + ':', 1797, + '<', 2175, '=', 815, - '>', 1874, - 'a', 1605, - 'b', 1594, - 'e', 1608, - 'i', 1607, - 'm', 1614, - 'n', 1613, - 'o', 1620, - 's', 1636, - 'x', 1611, - '|', 1841, + '>', 1841, + 'a', 1572, + 'b', 1561, + 'e', 1575, + 'i', 1574, + 'm', 1581, + 'n', 1580, + 'o', 1587, + 's', 1603, + 'x', 1578, + '|', 1808, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(213); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 214: ADVANCE_MAP( '!', 813, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2158, - ',', 1835, - '-', 1894, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2120, + ',', 1802, + '-', 1861, '.', 808, - '/', 2120, - '<', 2213, + '/', 2082, + '<', 2175, '=', 815, - '>', 1874, - 'a', 1605, - 'b', 1594, - 'e', 1608, - 'i', 1607, - 'm', 1614, - 'n', 1613, - 'o', 1620, - 's', 1636, - 'x', 1611, - '|', 1841, + '>', 1841, + 'a', 1572, + 'b', 1561, + 'e', 1575, + 'i', 1574, + 'm', 1581, + 'n', 1580, + 'o', 1587, + 's', 1603, + 'x', 1578, + '|', 1808, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(214); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 215: ADVANCE_MAP( '!', 813, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2158, - ',', 1835, - '-', 1908, - '/', 2120, - '<', 2213, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2120, + ',', 1802, + '-', 1875, + '/', 2082, + '<', 2175, '=', 815, - '>', 1874, + '>', 1841, 'a', 906, 'b', 884, 'e', 910, @@ -24923,7 +24461,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'o', 932, 's', 950, 'x', 913, - '}', 2001, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(215); @@ -24931,15 +24469,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 216: ADVANCE_MAP( '!', 813, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2158, - '-', 1894, - '/', 2120, - '<', 2213, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2120, + '-', 1861, + '/', 2082, + '<', 2175, '=', 815, - '>', 1874, + '>', 1841, 'a', 906, 'b', 884, 'e', 910, @@ -24949,7 +24487,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'o', 932, 's', 950, 'x', 913, - '{', 2000, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(216); @@ -24957,15 +24495,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 217: ADVANCE_MAP( '!', 813, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2158, - '-', 1908, - '/', 2120, - '<', 2213, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2120, + '-', 1875, + '/', 2082, + '<', 2175, '=', 814, - '>', 1874, + '>', 1841, 'a', 906, 'b', 884, 'e', 910, @@ -24982,15 +24520,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 218: ADVANCE_MAP( '!', 813, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2158, - '-', 1908, - '/', 2120, - '<', 2213, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2120, + '-', 1875, + '/', 2082, + '<', 2175, '=', 815, - '>', 1874, + '>', 1841, 'a', 906, 'b', 884, 'e', 910, @@ -25000,7 +24538,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'o', 932, 's', 950, 'x', 913, - '{', 2000, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(218); @@ -25008,41 +24546,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 219: ADVANCE_MAP( '!', 813, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2158, - '-', 1908, - '/', 2120, - '<', 2213, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2120, + '-', 1875, + '/', 2082, + '<', 2175, '=', 815, - '>', 1874, - 'a', 1605, - 'b', 1594, - 'e', 1608, - 'i', 1607, - 'm', 1614, - 'n', 1613, - 'o', 1620, - 's', 1636, - 'x', 1611, + '>', 1841, + 'a', 1572, + 'b', 1561, + 'e', 1575, + 'i', 1574, + 'm', 1581, + 'n', 1580, + 'o', 1587, + 's', 1603, + 'x', 1578, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(219); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 220: ADVANCE_MAP( '!', 813, - '#', 4941, - '*', 2084, - '+', 2152, - ',', 1835, - '-', 1889, - '/', 2120, - '<', 2213, + '#', 4896, + '*', 2051, + '+', 2114, + ',', 1802, + '-', 1856, + '/', 2082, + '<', 2175, '=', 815, - '>', 1874, + '>', 1841, 'a', 906, 'b', 884, 'e', 910, @@ -25052,7 +24590,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'o', 932, 's', 950, 'x', 913, - '}', 2001, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(220); @@ -25060,18 +24598,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 221: ADVANCE_MAP( '!', 813, - '#', 4941, - '*', 2084, - '+', 2152, - ',', 3211, - '-', 1889, - '.', 2364, - '/', 2120, - '<', 2213, + '#', 4896, + '*', 2051, + '+', 2114, + ',', 3171, + '-', 1856, + '.', 2326, + '/', 2082, + '<', 2175, '=', 815, - '>', 1874, - '?', 2102, - ']', 1838, + '>', 1841, + '?', 2064, + ']', 1805, 'a', 906, 'b', 884, 'e', 910, @@ -25081,28 +24619,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'o', 932, 's', 950, 'x', 913, - '}', 2001, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); + lookahead == ' ') ADVANCE(3173); END_STATE(); case 222: ADVANCE_MAP( '!', 813, - '#', 4941, - '*', 2084, - '+', 2152, - ',', 3211, - '-', 1889, - '.', 2363, - '/', 2120, - ';', 1328, - '<', 2213, + '#', 4896, + '*', 2051, + '+', 2114, + ',', 3171, + '-', 1856, + '.', 2325, + '/', 2082, + ';', 1303, + '<', 2175, '=', 815, - '>', 1874, - '?', 2102, + '>', 1841, + '?', 2064, 'E', 829, - ']', 1838, + ']', 1805, 'a', 906, 'b', 884, 'e', 828, @@ -25112,130 +24650,130 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'o', 932, 's', 950, 'x', 913, - '}', 2001, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); + lookahead == ' ') ADVANCE(3173); END_STATE(); case 223: ADVANCE_MAP( '!', 813, - '#', 4941, - '*', 2084, - '+', 2152, - '-', 1890, - '.', 2364, - '/', 2120, - '<', 2213, + '#', 4896, + '*', 2051, + '+', 2114, + '-', 1857, + '.', 2326, + '/', 2082, + '<', 2175, '=', 815, - '>', 1874, - '?', 2102, - 'a', 1605, - 'b', 1594, - 'e', 1608, - 'i', 1607, - 'm', 1614, - 'n', 1613, - 'o', 1620, - 's', 1636, - 'x', 1611, + '>', 1841, + '?', 2064, + 'a', 1572, + 'b', 1561, + 'e', 1575, + 'i', 1574, + 'm', 1581, + 'n', 1580, + 'o', 1587, + 's', 1603, + 'x', 1578, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(226); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 224: ADVANCE_MAP( '!', 813, - '#', 4941, - '*', 2084, - '+', 2152, - '-', 1890, - '.', 2363, - '/', 2120, - '<', 2213, + '#', 4896, + '*', 2051, + '+', 2114, + '-', 1857, + '.', 2325, + '/', 2082, + '<', 2175, '=', 814, - '>', 1874, - '?', 2102, - 'a', 1605, - 'b', 1594, - 'e', 1608, - 'i', 1607, - 'm', 1614, - 'n', 1613, - 'o', 1620, - 's', 1636, - 'x', 1611, - '|', 1841, + '>', 1841, + '?', 2064, + 'a', 1572, + 'b', 1561, + 'e', 1575, + 'i', 1574, + 'm', 1581, + 'n', 1580, + 'o', 1587, + 's', 1603, + 'x', 1578, + '|', 1808, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(225); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 225: ADVANCE_MAP( '!', 813, - '#', 4941, - '*', 2084, - '+', 2152, - '-', 1890, - '/', 2120, - '<', 2213, + '#', 4896, + '*', 2051, + '+', 2114, + '-', 1857, + '/', 2082, + '<', 2175, '=', 814, - '>', 1874, - '?', 2102, - 'a', 1605, - 'b', 1594, - 'e', 1608, - 'i', 1607, - 'm', 1614, - 'n', 1613, - 'o', 1620, - 's', 1636, - 'x', 1611, - '|', 1841, + '>', 1841, + '?', 2064, + 'a', 1572, + 'b', 1561, + 'e', 1575, + 'i', 1574, + 'm', 1581, + 'n', 1580, + 'o', 1587, + 's', 1603, + 'x', 1578, + '|', 1808, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(225); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 226: ADVANCE_MAP( '!', 813, - '#', 4941, - '*', 2084, - '+', 2152, - '-', 1890, - '/', 2120, - '<', 2213, + '#', 4896, + '*', 2051, + '+', 2114, + '-', 1857, + '/', 2082, + '<', 2175, '=', 815, - '>', 1874, - '?', 2102, - 'a', 1605, - 'b', 1594, - 'e', 1608, - 'i', 1607, - 'm', 1614, - 'n', 1613, - 'o', 1620, - 's', 1636, - 'x', 1611, + '>', 1841, + '?', 2064, + 'a', 1572, + 'b', 1561, + 'e', 1575, + 'i', 1574, + 'm', 1581, + 'n', 1580, + 'o', 1587, + 's', 1603, + 'x', 1578, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(226); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 227: ADVANCE_MAP( '!', 813, - '#', 4941, - '*', 2084, - '+', 2152, - '-', 1890, - '/', 2120, - '<', 2213, + '#', 4896, + '*', 2051, + '+', 2114, + '-', 1857, + '/', 2082, + '<', 2175, '=', 815, - '>', 1874, + '>', 1841, 'a', 906, 'b', 884, 'e', 910, @@ -25245,7 +24783,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'o', 932, 's', 950, 'x', 913, - '{', 2000, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(227); @@ -25253,39 +24791,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 228: ADVANCE_MAP( '!', 813, - '#', 4941, - '*', 2084, - '+', 2152, - '-', 1890, - '/', 2120, - '<', 2213, + '#', 4896, + '*', 2051, + '+', 2114, + '-', 1857, + '/', 2082, + '<', 2175, '=', 815, - '>', 1874, - 'a', 1605, - 'b', 1594, - 'e', 1608, - 'i', 1607, - 'm', 1614, - 'n', 1613, - 'o', 1620, - 's', 1636, - 'x', 1611, + '>', 1841, + 'a', 1572, + 'b', 1561, + 'e', 1575, + 'i', 1574, + 'm', 1581, + 'n', 1580, + 'o', 1587, + 's', 1603, + 'x', 1578, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(228); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 229: ADVANCE_MAP( '!', 813, - '#', 4941, - '*', 2084, - '+', 2152, - '-', 1889, - '/', 2120, - '<', 2213, + '#', 4896, + '*', 2051, + '+', 2114, + '-', 1856, + '/', 2082, + '<', 2175, '=', 814, - '>', 1874, + '>', 1841, 'a', 906, 'b', 884, 'e', 910, @@ -25302,14 +24840,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 230: ADVANCE_MAP( '!', 813, - '#', 4941, - '*', 2084, - '+', 2152, - '-', 1889, - '/', 2120, - '<', 2213, + '#', 4896, + '*', 2051, + '+', 2114, + '-', 1856, + '/', 2082, + '<', 2175, '=', 815, - '>', 1874, + '>', 1841, 'a', 906, 'b', 884, 'e', 910, @@ -25319,7 +24857,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'o', 932, 's', 950, 'x', 913, - '{', 2000, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(230); @@ -25327,15 +24865,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 231: ADVANCE_MAP( '!', 813, - '#', 4941, - '*', 2084, - '+', 2158, - ',', 1835, - '-', 1908, - '/', 2120, - '<', 2213, + '#', 4896, + '*', 2051, + '+', 2120, + ',', 1802, + '-', 1875, + '/', 2082, + '<', 2175, '=', 815, - '>', 1874, + '>', 1841, 'a', 906, 'b', 884, 'e', 910, @@ -25345,7 +24883,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'o', 932, 's', 950, 'x', 913, - '}', 2001, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(231); @@ -25353,14 +24891,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 232: ADVANCE_MAP( '!', 813, - '#', 4941, - '*', 2084, - '+', 2158, - '-', 1894, - '/', 2120, - '<', 2213, + '#', 4896, + '*', 2051, + '+', 2120, + '-', 1861, + '/', 2082, + '<', 2175, '=', 815, - '>', 1874, + '>', 1841, 'a', 906, 'b', 884, 'e', 910, @@ -25370,7 +24908,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'o', 932, 's', 950, 'x', 913, - '{', 2000, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(232); @@ -25378,39 +24916,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 233: ADVANCE_MAP( '!', 813, - '#', 4941, - '*', 2084, - '+', 2158, - '-', 1894, - '/', 2120, - '<', 2213, + '#', 4896, + '*', 2051, + '+', 2120, + '-', 1861, + '/', 2082, + '<', 2175, '=', 815, - '>', 1874, - 'a', 1605, - 'b', 1594, - 'e', 1608, - 'i', 1607, - 'm', 1614, - 'n', 1613, - 'o', 1620, - 's', 1636, - 'x', 1611, + '>', 1841, + 'a', 1572, + 'b', 1561, + 'e', 1575, + 'i', 1574, + 'm', 1581, + 'n', 1580, + 'o', 1587, + 's', 1603, + 'x', 1578, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(233); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 234: ADVANCE_MAP( '!', 813, - '#', 4941, - '*', 2084, - '+', 2158, - '-', 1908, - '/', 2120, - '<', 2213, + '#', 4896, + '*', 2051, + '+', 2120, + '-', 1875, + '/', 2082, + '<', 2175, '=', 814, - '>', 1874, + '>', 1841, 'a', 906, 'b', 884, 'e', 910, @@ -25427,14 +24965,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 235: ADVANCE_MAP( '!', 813, - '#', 4941, - '*', 2084, - '+', 2158, - '-', 1908, - '/', 2120, - '<', 2213, + '#', 4896, + '*', 2051, + '+', 2120, + '-', 1875, + '/', 2082, + '<', 2175, '=', 815, - '>', 1874, + '>', 1841, 'a', 906, 'b', 884, 'e', 910, @@ -25444,4156 +24982,4156 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'o', 932, 's', 950, 'x', 913, - '{', 2000, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(235); END_STATE(); case 236: ADVANCE_MAP( - '!', 3575, - '"', 2554, - '#', 4941, - '$', 1845, + '!', 3534, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2158, - '-', 1907, - '.', 2365, - '/', 2120, - '0', 2393, - '<', 2213, - '=', 3816, - '>', 1874, - 'I', 3674, - 'N', 3670, - '[', 1834, - '_', 3582, + '(', 1806, + '*', 2051, + '+', 2120, + '-', 1874, + '.', 2327, + '/', 2082, + '0', 2355, + '<', 2175, + '=', 3773, + '>', 1841, + 'I', 3632, + 'N', 3628, + '[', 1801, + '_', 3541, '`', 834, - 'a', 3615, - 'b', 3602, - 'e', 3620, - 'f', 3587, - 'i', 3579, - 'm', 3633, - 'n', 3629, - 'o', 3653, - 's', 3660, - 't', 3654, - 'x', 3628, - '{', 2000, + 'a', 3573, + 'b', 3561, + 'e', 3578, + 'f', 3546, + 'i', 3538, + 'm', 3591, + 'n', 3587, + 'o', 3611, + 's', 3618, + 't', 3612, + 'x', 3586, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(177); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); if (lookahead != 0 && (lookahead < '\'' || '+' < lookahead) && (lookahead < ';' || '>' < lookahead) && lookahead != ']' && - lookahead != '}') ADVANCE(3566); + lookahead != '}') ADVANCE(3525); END_STATE(); case 237: ADVANCE_MAP( - '!', 3575, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3534, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2153, - ',', 3211, - '-', 1901, - '.', 2363, - '/', 2120, - '0', 2396, - ':', 3566, - '<', 2213, - '=', 3816, - '>', 1874, - 'I', 3671, - 'N', 3667, - '_', 3580, + '(', 1806, + '*', 2051, + '+', 2115, + ',', 3171, + '-', 1868, + '.', 2325, + '/', 2082, + '0', 2358, + ':', 3525, + '<', 2175, + '=', 3773, + '>', 1841, + 'I', 3629, + 'N', 3625, + '_', 3539, '`', 834, - 'a', 3608, - 'b', 3606, - 'c', 3591, - 'd', 3592, - 'e', 3612, - 'f', 3636, - 'h', 3601, - 'i', 3576, - 'l', 3593, - 'm', 3584, - 'n', 3596, - 'o', 3649, - 'r', 3595, - 's', 3626, - 't', 3658, - 'u', 3659, - 'w', 3600, - 'x', 3645, - '}', 2001, + 'a', 3567, + 'b', 3565, + 'c', 3550, + 'd', 3551, + 'e', 3570, + 'f', 3594, + 'h', 3560, + 'i', 3535, + 'l', 3552, + 'm', 3543, + 'n', 3555, + 'o', 3607, + 'r', 3554, + 's', 3584, + 't', 3616, + 'u', 3617, + 'w', 3559, + 'x', 3603, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3676); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3634); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3566); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3525); END_STATE(); case 238: ADVANCE_MAP( - '!', 3575, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3534, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2153, - '-', 1901, - '.', 2363, - '/', 2120, - '0', 2396, - ';', 1328, - '<', 2213, - '=', 3816, - '>', 1874, - 'I', 3671, - 'N', 3667, - '[', 1834, - ']', 1838, - '_', 3580, + '(', 1806, + '*', 2051, + '+', 2115, + '-', 1868, + '.', 2325, + '/', 2082, + '0', 2358, + ';', 1303, + '<', 2175, + '=', 3773, + '>', 1841, + 'I', 3629, + 'N', 3625, + '[', 1801, + ']', 1805, + '_', 3539, '`', 834, - 'a', 3608, - 'b', 3606, - 'c', 3591, - 'd', 3592, - 'e', 3612, - 'f', 3636, - 'h', 3601, - 'i', 3576, - 'l', 3593, - 'm', 3584, - 'n', 3596, - 'o', 3649, - 'r', 3595, - 's', 3626, - 't', 3658, - 'u', 3659, - 'w', 3600, - 'x', 3645, - '{', 2000, - '}', 2001, - ',', 3566, - ':', 3566, + 'a', 3567, + 'b', 3565, + 'c', 3550, + 'd', 3551, + 'e', 3570, + 'f', 3594, + 'h', 3560, + 'i', 3535, + 'l', 3552, + 'm', 3543, + 'n', 3555, + 'o', 3607, + 'r', 3554, + 's', 3584, + 't', 3616, + 'u', 3617, + 'w', 3559, + 'x', 3603, + '{', 1967, + '}', 1968, + ',', 3525, + ':', 3525, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(88); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3676); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3634); if (lookahead != 0 && - (lookahead < '\'' || '>' < lookahead)) ADVANCE(3566); + (lookahead < '\'' || '>' < lookahead)) ADVANCE(3525); END_STATE(); case 239: ADVANCE_MAP( - '!', 3575, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3534, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2159, - ',', 1835, - '-', 1893, - '.', 2365, - '/', 2120, - '0', 2394, - '<', 2213, - '=', 3816, - '>', 1874, - 'I', 3672, - 'N', 3668, - '[', 1834, - ']', 1838, - '_', 3583, + '(', 1806, + '*', 2051, + '+', 2121, + ',', 1802, + '-', 1860, + '.', 2327, + '/', 2082, + '0', 2356, + '<', 2175, + '=', 3773, + '>', 1841, + 'I', 3630, + 'N', 3626, + '[', 1801, + ']', 1805, + '_', 3542, '`', 834, - 'a', 3613, - 'b', 3604, - 'e', 3567, - 'f', 3585, - 'i', 3577, - 'm', 3631, - 'n', 3638, - 'o', 3569, - 's', 3661, - 't', 3651, - 'x', 3640, - '{', 2000, + 'a', 3571, + 'b', 3563, + 'e', 3526, + 'f', 3544, + 'i', 3536, + 'm', 3589, + 'n', 3596, + 'o', 3528, + 's', 3619, + 't', 3609, + 'x', 3598, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(320); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != '}') ADVANCE(3566); + lookahead != '}') ADVANCE(3525); END_STATE(); case 240: ADVANCE_MAP( - '!', 3575, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3534, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2159, - ',', 3211, - '-', 1893, - '.', 2365, - '/', 2120, - '0', 2394, - '<', 2213, - '=', 3816, - '>', 1874, - 'I', 3672, - 'N', 3668, - '[', 1834, - ']', 1838, - '_', 3583, + '(', 1806, + '*', 2051, + '+', 2121, + ',', 3171, + '-', 1860, + '.', 2327, + '/', 2082, + '0', 2356, + '<', 2175, + '=', 3773, + '>', 1841, + 'I', 3630, + 'N', 3626, + '[', 1801, + ']', 1805, + '_', 3542, '`', 834, - 'a', 3613, - 'b', 3604, - 'e', 3567, - 'f', 3585, - 'i', 3577, - 'm', 3631, - 'n', 3638, - 'o', 3569, - 's', 3661, - 't', 3651, - 'x', 3640, - '{', 2000, + 'a', 3571, + 'b', 3563, + 'e', 3526, + 'f', 3544, + 'i', 3536, + 'm', 3589, + 'n', 3596, + 'o', 3528, + 's', 3619, + 't', 3609, + 'x', 3598, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != '}') ADVANCE(3566); + lookahead != '}') ADVANCE(3525); END_STATE(); case 241: ADVANCE_MAP( - '!', 3575, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3534, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2160, - ',', 1835, - '-', 1907, - '.', 2365, - '/', 2120, - '0', 2395, - '<', 2213, - '=', 3816, - '>', 1874, - 'I', 3673, - 'N', 3669, - '[', 1834, - '_', 2006, + '(', 1806, + '*', 2051, + '+', 2122, + ',', 1802, + '-', 1874, + '.', 2327, + '/', 2082, + '0', 2357, + '<', 2175, + '=', 3773, + '>', 1841, + 'I', 3631, + 'N', 3627, + '[', 1801, + '_', 1973, '`', 834, - 'a', 3614, - 'b', 3605, - 'e', 3571, - 'f', 3586, - 'i', 3578, - 'm', 3632, - 'n', 3639, - 'o', 3572, - 's', 3662, - 't', 3652, - 'x', 3641, - '{', 2000, - '}', 2001, + 'a', 3572, + 'b', 3564, + 'e', 3530, + 'f', 3545, + 'i', 3537, + 'm', 3590, + 'n', 3597, + 'o', 3531, + 's', 3620, + 't', 3610, + 'x', 3599, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(304); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2405); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2367); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != ']') ADVANCE(3566); + lookahead != ']') ADVANCE(3525); END_STATE(); case 242: ADVANCE_MAP( - '!', 3575, - '"', 2554, - '#', 4941, + '!', 3534, + '"', 2516, + '#', 4896, '\'', 791, - '*', 2084, - '+', 2158, - '-', 1894, - '.', 2363, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - '_', 3580, + '*', 2051, + '+', 2120, + '-', 1861, + '.', 2325, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + '_', 3539, '`', 834, - 'a', 3622, - 'b', 3607, - 'e', 3624, - 'i', 3619, - 'm', 3642, - 'n', 3646, - 'o', 3650, - 's', 3664, - 'x', 3645, + 'a', 3580, + 'b', 3566, + 'e', 3582, + 'i', 3577, + 'm', 3600, + 'n', 3604, + 'o', 3608, + 's', 3622, + 'x', 3603, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(184); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3676); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3634); if (lookahead != 0 && (lookahead < '\'' || '+' < lookahead) && (lookahead < ';' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3566); + lookahead != '}') ADVANCE(3525); END_STATE(); case 243: ADVANCE_MAP( - '!', 3575, - '#', 4941, - '$', 1844, - '(', 2360, - '*', 2084, - '+', 2158, - '-', 1894, - '.', 2363, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - '_', 3582, - 'a', 3615, - 'b', 3602, - 'e', 3620, - 'i', 3616, - 'm', 3633, - 'n', 3647, - 'o', 3653, - 's', 3660, - 'x', 3628, - '{', 2000, + '!', 3534, + '#', 4896, + '$', 1811, + '(', 2322, + '*', 2051, + '+', 2120, + '-', 1861, + '.', 2325, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + '_', 3541, + 'a', 3573, + 'b', 3561, + 'e', 3578, + 'i', 3574, + 'm', 3591, + 'n', 3605, + 'o', 3611, + 's', 3618, + 'x', 3586, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(216); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3566); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3525); END_STATE(); case 244: ADVANCE_MAP( - '!', 3575, - '#', 4941, - '$', 1844, - ')', 1840, - '*', 2084, - '+', 2158, - ',', 1835, - '-', 1894, - '.', 2367, - '/', 2120, - ':', 1830, - '<', 2213, - '=', 3816, - '>', 1874, - ']', 1838, - '_', 3581, - 'a', 3617, - 'b', 3603, - 'e', 3621, - 'i', 3618, - 'm', 3635, - 'n', 3634, - 'o', 3655, - 's', 3663, - 'x', 3630, + '!', 3534, + '#', 4896, + '$', 1811, + ')', 1807, + '*', 2051, + '+', 2120, + ',', 1802, + '-', 1861, + '.', 2329, + '/', 2082, + ':', 1797, + '<', 2175, + '=', 3773, + '>', 1841, + ']', 1805, + '_', 3540, + 'a', 3575, + 'b', 3562, + 'e', 3579, + 'i', 3576, + 'm', 3593, + 'n', 3592, + 'o', 3613, + 's', 3621, + 'x', 3588, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(196); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3675); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3633); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3566); + lookahead != '}') ADVANCE(3525); END_STATE(); case 245: ADVANCE_MAP( - '!', 3575, - '#', 4941, - '$', 1844, - ')', 1840, - '*', 2084, - '+', 2158, - ',', 1835, - '-', 1894, - '.', 2367, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - ']', 1838, - '_', 3581, - 'a', 3617, - 'b', 3603, - 'e', 3621, - 'i', 3618, - 'm', 3635, - 'n', 3634, - 'o', 3655, - 's', 3663, - 'x', 3630, + '!', 3534, + '#', 4896, + '$', 1811, + ')', 1807, + '*', 2051, + '+', 2120, + ',', 1802, + '-', 1861, + '.', 2329, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + ']', 1805, + '_', 3540, + 'a', 3575, + 'b', 3562, + 'e', 3579, + 'i', 3576, + 'm', 3593, + 'n', 3592, + 'o', 3613, + 's', 3621, + 'x', 3588, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(197); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3675); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3633); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3566); + lookahead != '}') ADVANCE(3525); END_STATE(); case 246: ADVANCE_MAP( - '!', 3575, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2158, - ',', 1835, - '-', 1894, - '.', 2367, - '/', 2120, - ':', 1830, - '<', 2213, - '=', 3816, - '>', 1874, - '_', 3581, - 'a', 3617, - 'b', 3603, - 'e', 3621, - 'i', 3618, - 'm', 3635, - 'n', 3634, - 'o', 3655, - 's', 3663, - 'x', 3630, - '|', 1841, + '!', 3534, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2120, + ',', 1802, + '-', 1861, + '.', 2329, + '/', 2082, + ':', 1797, + '<', 2175, + '=', 3773, + '>', 1841, + '_', 3540, + 'a', 3575, + 'b', 3562, + 'e', 3579, + 'i', 3576, + 'm', 3593, + 'n', 3592, + 'o', 3613, + 's', 3621, + 'x', 3588, + '|', 1808, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(213); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3675); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3633); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(3566); + (lookahead < '_' || '}' < lookahead)) ADVANCE(3525); END_STATE(); case 247: ADVANCE_MAP( - '!', 3575, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2158, - ',', 1835, - '-', 1894, - '.', 2367, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - '_', 3581, - 'a', 3617, - 'b', 3603, - 'e', 3621, - 'i', 3618, - 'm', 3635, - 'n', 3634, - 'o', 3655, - 's', 3663, - 'x', 3630, - '|', 1841, + '!', 3534, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2120, + ',', 1802, + '-', 1861, + '.', 2329, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + '_', 3540, + 'a', 3575, + 'b', 3562, + 'e', 3579, + 'i', 3576, + 'm', 3593, + 'n', 3592, + 'o', 3613, + 's', 3621, + 'x', 3588, + '|', 1808, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(214); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3675); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3633); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(3566); + (lookahead < '_' || '}' < lookahead)) ADVANCE(3525); END_STATE(); case 248: ADVANCE_MAP( - '!', 3575, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2158, - '-', 1908, - '.', 2363, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - '_', 3581, - 'a', 3617, - 'b', 3603, - 'e', 3621, - 'i', 3618, - 'm', 3635, - 'n', 3634, - 'o', 3655, - 's', 3663, - 'x', 3630, + '!', 3534, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2120, + '-', 1875, + '.', 2325, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + '_', 3540, + 'a', 3575, + 'b', 3562, + 'e', 3579, + 'i', 3576, + 'm', 3593, + 'n', 3592, + 'o', 3613, + 's', 3621, + 'x', 3588, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(219); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3675); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3566); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3525); END_STATE(); case 249: ADVANCE_MAP( - '!', 3575, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2158, - '-', 1908, - '.', 2363, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - '_', 3582, - 'a', 3615, - 'b', 3602, - 'e', 3620, - 'i', 3616, - 'm', 3633, - 'n', 3647, - 'o', 3653, - 's', 3660, - 'x', 3628, - '{', 2000, + '!', 3534, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2120, + '-', 1875, + '.', 2325, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + '_', 3541, + 'a', 3573, + 'b', 3561, + 'e', 3578, + 'i', 3574, + 'm', 3591, + 'n', 3605, + 'o', 3611, + 's', 3618, + 'x', 3586, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(218); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3566); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3525); END_STATE(); case 250: ADVANCE_MAP( - '!', 3575, - '#', 4941, - '*', 2084, - '+', 2158, - ',', 1835, - '-', 1908, - '.', 2363, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - '_', 3582, - 'a', 3615, - 'b', 3602, - 'e', 3620, - 'i', 3616, - 'm', 3633, - 'n', 3647, - 'o', 3653, - 's', 3660, - 'x', 3628, - '}', 2001, + '!', 3534, + '#', 4896, + '*', 2051, + '+', 2120, + ',', 1802, + '-', 1875, + '.', 2325, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + '_', 3541, + 'a', 3573, + 'b', 3561, + 'e', 3578, + 'i', 3574, + 'm', 3591, + 'n', 3605, + 'o', 3611, + 's', 3618, + 'x', 3586, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(231); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token4_character_set_1, 12, lookahead))) ADVANCE(3566); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token4_character_set_1, 12, lookahead))) ADVANCE(3525); END_STATE(); case 251: ADVANCE_MAP( - '!', 3575, - '#', 4941, - '*', 2084, - '+', 2158, - ',', 3211, - '-', 1908, - '.', 2363, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - ']', 1838, - '_', 3582, - 'a', 3615, - 'b', 3602, - 'e', 3620, - 'i', 3616, - 'm', 3633, - 'n', 3647, - 'o', 3653, - 's', 3660, - 'x', 3628, - '}', 2001, + '!', 3534, + '#', 4896, + '*', 2051, + '+', 2120, + ',', 3171, + '-', 1875, + '.', 2325, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + ']', 1805, + '_', 3541, + 'a', 3573, + 'b', 3561, + 'e', 3578, + 'i', 3574, + 'm', 3591, + 'n', 3605, + 'o', 3611, + 's', 3618, + 'x', 3586, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + lookahead == ' ') ADVANCE(3173); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); if (lookahead != 0 && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && lookahead != '[' && (lookahead < '_' || 'b' < lookahead) && - lookahead != '{') ADVANCE(3566); + lookahead != '{') ADVANCE(3525); END_STATE(); case 252: ADVANCE_MAP( - '!', 3575, - '#', 4941, - '*', 2084, - '+', 2158, - '-', 1894, - '.', 2363, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - '_', 3581, - 'a', 3617, - 'b', 3603, - 'e', 3621, - 'i', 3618, - 'm', 3635, - 'n', 3634, - 'o', 3655, - 's', 3663, - 'x', 3630, + '!', 3534, + '#', 4896, + '*', 2051, + '+', 2120, + '-', 1861, + '.', 2325, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + '_', 3540, + 'a', 3575, + 'b', 3562, + 'e', 3579, + 'i', 3576, + 'm', 3593, + 'n', 3592, + 'o', 3613, + 's', 3621, + 'x', 3588, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(233); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3675); - if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3566); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3525); END_STATE(); case 253: ADVANCE_MAP( - '!', 3575, - '#', 4941, - '*', 2084, - '+', 2158, - '-', 1894, - '.', 2363, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - '_', 3582, - 'a', 3615, - 'b', 3602, - 'e', 3620, - 'i', 3616, - 'm', 3633, - 'n', 3647, - 'o', 3653, - 's', 3660, - 'x', 3628, - '{', 2000, + '!', 3534, + '#', 4896, + '*', 2051, + '+', 2120, + '-', 1861, + '.', 2325, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + '_', 3541, + 'a', 3573, + 'b', 3561, + 'e', 3578, + 'i', 3574, + 'm', 3591, + 'n', 3605, + 'o', 3611, + 's', 3618, + 'x', 3586, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(232); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3566); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3525); END_STATE(); case 254: ADVANCE_MAP( - '!', 3575, - '#', 4941, - '*', 2084, - '+', 2158, - '-', 1908, - '.', 2363, - '/', 2120, - '<', 2213, - '=', 3815, - '>', 1874, - '_', 3582, - 'a', 3615, - 'b', 3602, - 'e', 3620, - 'i', 3616, - 'm', 3633, - 'n', 3647, - 'o', 3653, - 's', 3660, - 'x', 3628, + '!', 3534, + '#', 4896, + '*', 2051, + '+', 2120, + '-', 1875, + '.', 2325, + '/', 2082, + '<', 2175, + '=', 3772, + '>', 1841, + '_', 3541, + 'a', 3573, + 'b', 3561, + 'e', 3578, + 'i', 3574, + 'm', 3591, + 'n', 3605, + 'o', 3611, + 's', 3618, + 'x', 3586, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(234); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3566); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3525); END_STATE(); case 255: ADVANCE_MAP( - '!', 3575, - '#', 4941, - '*', 2084, - '+', 2158, - '-', 1908, - '.', 2363, - '/', 2120, - '<', 2213, - '=', 3816, - '>', 1874, - '_', 3582, - 'a', 3615, - 'b', 3602, - 'e', 3620, - 'i', 3616, - 'm', 3633, - 'n', 3647, - 'o', 3653, - 's', 3660, - 'x', 3628, - '{', 2000, + '!', 3534, + '#', 4896, + '*', 2051, + '+', 2120, + '-', 1875, + '.', 2325, + '/', 2082, + '<', 2175, + '=', 3773, + '>', 1841, + '_', 3541, + 'a', 3573, + 'b', 3561, + 'e', 3578, + 'i', 3574, + 'm', 3591, + 'n', 3605, + 'o', 3611, + 's', 3618, + 'x', 3586, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(235); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3566); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3525); END_STATE(); case 256: ADVANCE_MAP( - '!', 3686, - '"', 2554, - '#', 4941, - '$', 1845, + '!', 3644, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2158, - '-', 1907, - '.', 2365, - '/', 2120, - '0', 2393, - '<', 2213, - '=', 3688, - '>', 1874, - 'I', 3788, - 'N', 3784, - '[', 1834, - '_', 3696, + '(', 1806, + '*', 2051, + '+', 2120, + '-', 1874, + '.', 2327, + '/', 2082, + '0', 2355, + '<', 2175, + '=', 3646, + '>', 1841, + 'I', 3745, + 'N', 3741, + '[', 1801, + '_', 3654, '`', 834, - 'a', 3729, - 'b', 3716, - 'e', 3734, - 'f', 3701, - 'i', 3693, - 'm', 3747, - 'n', 3743, - 'o', 3767, - 's', 3774, - 't', 3768, - 'x', 3742, - '{', 2000, + 'a', 3686, + 'b', 3674, + 'e', 3691, + 'f', 3659, + 'i', 3651, + 'm', 3704, + 'n', 3700, + 'o', 3724, + 's', 3731, + 't', 3725, + 'x', 3699, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(177); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); if (lookahead != 0 && (lookahead < '\'' || '+' < lookahead) && (lookahead < ';' || '>' < lookahead) && lookahead != ']' && - lookahead != '}') ADVANCE(3677); + lookahead != '}') ADVANCE(3635); END_STATE(); case 257: ADVANCE_MAP( - '!', 3686, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3644, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2153, - ',', 3211, - '-', 1901, - '.', 2363, - '/', 2120, - '0', 2396, - ':', 3677, - '<', 2213, - '=', 3688, - '>', 1874, - 'I', 3785, - 'N', 3781, - '_', 3694, + '(', 1806, + '*', 2051, + '+', 2115, + ',', 3171, + '-', 1868, + '.', 2325, + '/', 2082, + '0', 2358, + ':', 3635, + '<', 2175, + '=', 3646, + '>', 1841, + 'I', 3742, + 'N', 3738, + '_', 3652, '`', 834, - 'a', 3722, - 'b', 3720, - 'c', 3705, - 'd', 3706, - 'e', 3726, - 'f', 3750, - 'h', 3715, - 'i', 3690, - 'l', 3707, - 'm', 3698, - 'n', 3710, - 'o', 3763, - 'r', 3709, - 's', 3740, - 't', 3772, - 'u', 3773, - 'w', 3714, - 'x', 3759, - '}', 2001, + 'a', 3680, + 'b', 3678, + 'c', 3663, + 'd', 3664, + 'e', 3683, + 'f', 3707, + 'h', 3673, + 'i', 3648, + 'l', 3665, + 'm', 3656, + 'n', 3668, + 'o', 3720, + 'r', 3667, + 's', 3697, + 't', 3729, + 'u', 3730, + 'w', 3672, + 'x', 3716, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3790); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3747); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3677); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3635); END_STATE(); case 258: ADVANCE_MAP( - '!', 3686, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3644, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2153, - '-', 1901, - '.', 2363, - '/', 2120, - '0', 2396, - '<', 2213, - '=', 3688, - '>', 1874, - 'I', 3785, - 'N', 3781, - '_', 3694, + '(', 1806, + '*', 2051, + '+', 2115, + '-', 1868, + '.', 2325, + '/', 2082, + '0', 2358, + '<', 2175, + '=', 3646, + '>', 1841, + 'I', 3742, + 'N', 3738, + '_', 3652, '`', 834, - 'a', 3722, - 'b', 3720, - 'c', 3705, - 'd', 3706, - 'e', 3726, - 'f', 3750, - 'h', 3715, - 'i', 3690, - 'l', 3707, - 'm', 3698, - 'n', 3710, - 'o', 3763, - 'r', 3709, - 's', 3740, - 't', 3772, - 'u', 3773, - 'w', 3714, - 'x', 3759, - '}', 2001, - ',', 3677, - ':', 3677, + 'a', 3680, + 'b', 3678, + 'c', 3663, + 'd', 3664, + 'e', 3683, + 'f', 3707, + 'h', 3673, + 'i', 3648, + 'l', 3665, + 'm', 3656, + 'n', 3668, + 'o', 3720, + 'r', 3667, + 's', 3697, + 't', 3729, + 'u', 3730, + 'w', 3672, + 'x', 3716, + '}', 1968, + ',', 3635, + ':', 3635, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(89); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3790); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3747); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3677); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3635); END_STATE(); case 259: ADVANCE_MAP( - '!', 3686, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3644, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2159, - ',', 1835, - '-', 1893, - '.', 2365, - '/', 2120, - '0', 2394, - '<', 2213, - '=', 3688, - '>', 1874, - 'I', 3786, - 'N', 3782, - '[', 1834, - ']', 1838, - '_', 3697, + '(', 1806, + '*', 2051, + '+', 2121, + ',', 1802, + '-', 1860, + '.', 2327, + '/', 2082, + '0', 2356, + '<', 2175, + '=', 3646, + '>', 1841, + 'I', 3743, + 'N', 3739, + '[', 1801, + ']', 1805, + '_', 3655, '`', 834, - 'a', 3727, - 'b', 3718, - 'e', 3678, - 'f', 3699, - 'i', 3691, - 'm', 3745, - 'n', 3752, - 'o', 3680, - 's', 3775, - 't', 3765, - 'x', 3754, - '{', 2000, + 'a', 3684, + 'b', 3676, + 'e', 3636, + 'f', 3657, + 'i', 3649, + 'm', 3702, + 'n', 3709, + 'o', 3638, + 's', 3732, + 't', 3722, + 'x', 3711, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(320); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != '}') ADVANCE(3677); + lookahead != '}') ADVANCE(3635); END_STATE(); case 260: ADVANCE_MAP( - '!', 3686, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3644, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2159, - ',', 3211, - '-', 1893, - '.', 2365, - '/', 2120, - '0', 2394, - '<', 2213, - '=', 3688, - '>', 1874, - 'I', 3786, - 'N', 3782, - '[', 1834, - ']', 1838, - '_', 3697, + '(', 1806, + '*', 2051, + '+', 2121, + ',', 3171, + '-', 1860, + '.', 2327, + '/', 2082, + '0', 2356, + '<', 2175, + '=', 3646, + '>', 1841, + 'I', 3743, + 'N', 3739, + '[', 1801, + ']', 1805, + '_', 3655, '`', 834, - 'a', 3727, - 'b', 3718, - 'e', 3678, - 'f', 3699, - 'i', 3691, - 'm', 3745, - 'n', 3752, - 'o', 3680, - 's', 3775, - 't', 3765, - 'x', 3754, - '{', 2000, + 'a', 3684, + 'b', 3676, + 'e', 3636, + 'f', 3657, + 'i', 3649, + 'm', 3702, + 'n', 3709, + 'o', 3638, + 's', 3732, + 't', 3722, + 'x', 3711, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != '}') ADVANCE(3677); + lookahead != '}') ADVANCE(3635); END_STATE(); case 261: ADVANCE_MAP( - '!', 3686, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3644, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2160, - ',', 1835, - '-', 1907, - '.', 2365, - '/', 2120, - '0', 2395, - '<', 2213, - '=', 3688, - '>', 1874, - 'I', 3787, - 'N', 3783, - '[', 1834, - '_', 2006, + '(', 1806, + '*', 2051, + '+', 2122, + ',', 1802, + '-', 1874, + '.', 2327, + '/', 2082, + '0', 2357, + '<', 2175, + '=', 3646, + '>', 1841, + 'I', 3744, + 'N', 3740, + '[', 1801, + '_', 1973, '`', 834, - 'a', 3728, - 'b', 3719, - 'e', 3682, - 'f', 3700, - 'i', 3692, - 'm', 3746, - 'n', 3753, - 'o', 3683, - 's', 3776, - 't', 3766, - 'x', 3755, - '{', 2000, - '}', 2001, + 'a', 3685, + 'b', 3677, + 'e', 3640, + 'f', 3658, + 'i', 3650, + 'm', 3703, + 'n', 3710, + 'o', 3641, + 's', 3733, + 't', 3723, + 'x', 3712, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(304); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2405); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2367); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != ']') ADVANCE(3677); + lookahead != ']') ADVANCE(3635); END_STATE(); case 262: ADVANCE_MAP( - '!', 3686, - '"', 2554, - '#', 4941, + '!', 3644, + '"', 2516, + '#', 4896, '\'', 791, - '*', 2084, - '+', 2158, - '-', 1894, - '.', 2363, - '/', 2120, - '<', 2213, - '=', 3688, - '>', 1874, - '_', 3694, + '*', 2051, + '+', 2120, + '-', 1861, + '.', 2325, + '/', 2082, + '<', 2175, + '=', 3646, + '>', 1841, + '_', 3652, '`', 834, - 'a', 3736, - 'b', 3721, - 'e', 3738, - 'i', 3733, - 'm', 3756, - 'n', 3760, - 'o', 3764, - 's', 3778, - 'x', 3759, + 'a', 3693, + 'b', 3679, + 'e', 3695, + 'i', 3690, + 'm', 3713, + 'n', 3717, + 'o', 3721, + 's', 3735, + 'x', 3716, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(184); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3790); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3677); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3747); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3635); END_STATE(); case 263: ADVANCE_MAP( - '!', 3686, - '#', 4941, - '$', 1844, - '(', 2360, - '*', 2084, - '+', 2158, - ',', 1835, - '-', 1908, - '.', 2363, - '/', 2120, - '<', 2213, - '=', 3688, - '>', 1874, - '_', 3696, - 'a', 3729, - 'b', 3716, - 'e', 3734, - 'i', 3730, - 'm', 3747, - 'n', 3761, - 'o', 3767, - 's', 3774, - 'x', 3742, - '}', 2001, + '!', 3644, + '#', 4896, + '$', 1811, + '(', 2322, + '*', 2051, + '+', 2120, + ',', 1802, + '-', 1875, + '.', 2325, + '/', 2082, + '<', 2175, + '=', 3646, + '>', 1841, + '_', 3654, + 'a', 3686, + 'b', 3674, + 'e', 3691, + 'i', 3687, + 'm', 3704, + 'n', 3718, + 'o', 3724, + 's', 3731, + 'x', 3699, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(215); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token5_character_set_1, 13, lookahead))) ADVANCE(3677); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token5_character_set_1, 13, lookahead))) ADVANCE(3635); END_STATE(); case 264: ADVANCE_MAP( - '!', 3686, - '#', 4941, - '$', 1844, - '(', 2360, - '*', 2084, - '+', 2158, - ',', 3211, - '-', 1908, - '.', 2363, - '/', 2120, - '<', 2213, - '=', 3688, - '>', 1874, - ']', 1838, - '_', 3696, - 'a', 3729, - 'b', 3716, - 'e', 3734, - 'i', 3730, - 'm', 3747, - 'n', 3761, - 'o', 3767, - 's', 3774, - 'x', 3742, - '}', 2001, + '!', 3644, + '#', 4896, + '$', 1811, + '(', 2322, + '*', 2051, + '+', 2120, + ',', 3171, + '-', 1875, + '.', 2325, + '/', 2082, + '<', 2175, + '=', 3646, + '>', 1841, + ']', 1805, + '_', 3654, + 'a', 3686, + 'b', 3674, + 'e', 3691, + 'i', 3687, + 'm', 3704, + 'n', 3718, + 'o', 3724, + 's', 3731, + 'x', 3699, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + lookahead == ' ') ADVANCE(3173); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && lookahead != '[' && (lookahead < '_' || 'b' < lookahead) && - lookahead != '{') ADVANCE(3677); + lookahead != '{') ADVANCE(3635); END_STATE(); case 265: ADVANCE_MAP( - '!', 3686, - '#', 4941, - '$', 1844, - '(', 2360, - '*', 2084, - '+', 2158, - '-', 1908, - '.', 2363, - '/', 2120, - '<', 2213, - '=', 3687, - '>', 1874, - '_', 3696, - 'a', 3729, - 'b', 3716, - 'e', 3734, - 'i', 3730, - 'm', 3747, - 'n', 3761, - 'o', 3767, - 's', 3774, - 'x', 3742, + '!', 3644, + '#', 4896, + '$', 1811, + '(', 2322, + '*', 2051, + '+', 2120, + '-', 1875, + '.', 2325, + '/', 2082, + '<', 2175, + '=', 3645, + '>', 1841, + '_', 3654, + 'a', 3686, + 'b', 3674, + 'e', 3691, + 'i', 3687, + 'm', 3704, + 'n', 3718, + 'o', 3724, + 's', 3731, + 'x', 3699, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(217); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3677); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3635); END_STATE(); case 266: ADVANCE_MAP( - '!', 3686, - '#', 4941, - '$', 1844, - ')', 1840, - '*', 2084, - '+', 2158, - ',', 1835, - '-', 1894, - '.', 2367, - '/', 2120, - ':', 1830, - '<', 2213, - '=', 3688, - '>', 1874, - ']', 1838, - '_', 3695, - 'a', 3731, - 'b', 3717, - 'e', 3735, - 'i', 3732, - 'm', 3749, - 'n', 3748, - 'o', 3769, - 's', 3777, - 'x', 3744, + '!', 3644, + '#', 4896, + '$', 1811, + ')', 1807, + '*', 2051, + '+', 2120, + ',', 1802, + '-', 1861, + '.', 2329, + '/', 2082, + ':', 1797, + '<', 2175, + '=', 3646, + '>', 1841, + ']', 1805, + '_', 3653, + 'a', 3688, + 'b', 3675, + 'e', 3692, + 'i', 3689, + 'm', 3706, + 'n', 3705, + 'o', 3726, + 's', 3734, + 'x', 3701, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(196); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3789); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3746); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3677); + lookahead != '}') ADVANCE(3635); END_STATE(); case 267: ADVANCE_MAP( - '!', 3686, - '#', 4941, - '$', 1844, - ')', 1840, - '*', 2084, - '+', 2158, - ',', 1835, - '-', 1894, - '.', 2367, - '/', 2120, - '<', 2213, - '=', 3688, - '>', 1874, - ']', 1838, - '_', 3695, - 'a', 3731, - 'b', 3717, - 'e', 3735, - 'i', 3732, - 'm', 3749, - 'n', 3748, - 'o', 3769, - 's', 3777, - 'x', 3744, + '!', 3644, + '#', 4896, + '$', 1811, + ')', 1807, + '*', 2051, + '+', 2120, + ',', 1802, + '-', 1861, + '.', 2329, + '/', 2082, + '<', 2175, + '=', 3646, + '>', 1841, + ']', 1805, + '_', 3653, + 'a', 3688, + 'b', 3675, + 'e', 3692, + 'i', 3689, + 'm', 3706, + 'n', 3705, + 'o', 3726, + 's', 3734, + 'x', 3701, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(197); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3789); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3746); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3677); + lookahead != '}') ADVANCE(3635); END_STATE(); case 268: ADVANCE_MAP( - '!', 3686, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2158, - ',', 1835, - '-', 1894, - '.', 2367, - '/', 2120, - ':', 1830, - '<', 2213, - '=', 3688, - '>', 1874, - '_', 3695, - 'a', 3731, - 'b', 3717, - 'e', 3735, - 'i', 3732, - 'm', 3749, - 'n', 3748, - 'o', 3769, - 's', 3777, - 'x', 3744, - '|', 1841, + '!', 3644, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2120, + ',', 1802, + '-', 1861, + '.', 2329, + '/', 2082, + ':', 1797, + '<', 2175, + '=', 3646, + '>', 1841, + '_', 3653, + 'a', 3688, + 'b', 3675, + 'e', 3692, + 'i', 3689, + 'm', 3706, + 'n', 3705, + 'o', 3726, + 's', 3734, + 'x', 3701, + '|', 1808, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(213); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3789); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3746); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(3677); + (lookahead < '_' || '}' < lookahead)) ADVANCE(3635); END_STATE(); case 269: ADVANCE_MAP( - '!', 3686, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2158, - ',', 1835, - '-', 1894, - '.', 2367, - '/', 2120, - '<', 2213, - '=', 3688, - '>', 1874, - '_', 3695, - 'a', 3731, - 'b', 3717, - 'e', 3735, - 'i', 3732, - 'm', 3749, - 'n', 3748, - 'o', 3769, - 's', 3777, - 'x', 3744, - '|', 1841, + '!', 3644, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2120, + ',', 1802, + '-', 1861, + '.', 2329, + '/', 2082, + '<', 2175, + '=', 3646, + '>', 1841, + '_', 3653, + 'a', 3688, + 'b', 3675, + 'e', 3692, + 'i', 3689, + 'm', 3706, + 'n', 3705, + 'o', 3726, + 's', 3734, + 'x', 3701, + '|', 1808, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(214); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3789); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3746); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(3677); + (lookahead < '_' || '}' < lookahead)) ADVANCE(3635); END_STATE(); case 270: ADVANCE_MAP( - '!', 3686, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2158, - '-', 1894, - '.', 2363, - '/', 2120, - '<', 2213, - '=', 3688, - '>', 1874, - '_', 3696, - 'a', 3729, - 'b', 3716, - 'e', 3734, - 'i', 3730, - 'm', 3747, - 'n', 3761, - 'o', 3767, - 's', 3774, - 'x', 3742, - '{', 2000, + '!', 3644, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2120, + '-', 1861, + '.', 2325, + '/', 2082, + '<', 2175, + '=', 3646, + '>', 1841, + '_', 3654, + 'a', 3686, + 'b', 3674, + 'e', 3691, + 'i', 3687, + 'm', 3704, + 'n', 3718, + 'o', 3724, + 's', 3731, + 'x', 3699, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(216); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3677); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3635); END_STATE(); case 271: ADVANCE_MAP( - '!', 3686, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2158, - '-', 1908, - '.', 2363, - '/', 2120, - '<', 2213, - '=', 3688, - '>', 1874, - '_', 3695, - 'a', 3731, - 'b', 3717, - 'e', 3735, - 'i', 3732, - 'm', 3749, - 'n', 3748, - 'o', 3769, - 's', 3777, - 'x', 3744, + '!', 3644, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2120, + '-', 1875, + '.', 2325, + '/', 2082, + '<', 2175, + '=', 3646, + '>', 1841, + '_', 3653, + 'a', 3688, + 'b', 3675, + 'e', 3692, + 'i', 3689, + 'm', 3706, + 'n', 3705, + 'o', 3726, + 's', 3734, + 'x', 3701, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(219); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3789); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3677); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3746); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3635); END_STATE(); case 272: ADVANCE_MAP( - '!', 3686, - '#', 4941, - '$', 1844, - '*', 2084, - '+', 2158, - '-', 1908, - '.', 2363, - '/', 2120, - '<', 2213, - '=', 3688, - '>', 1874, - '_', 3696, - 'a', 3729, - 'b', 3716, - 'e', 3734, - 'i', 3730, - 'm', 3747, - 'n', 3761, - 'o', 3767, - 's', 3774, - 'x', 3742, - '{', 2000, + '!', 3644, + '#', 4896, + '$', 1811, + '*', 2051, + '+', 2120, + '-', 1875, + '.', 2325, + '/', 2082, + '<', 2175, + '=', 3646, + '>', 1841, + '_', 3654, + 'a', 3686, + 'b', 3674, + 'e', 3691, + 'i', 3687, + 'm', 3704, + 'n', 3718, + 'o', 3724, + 's', 3731, + 'x', 3699, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(218); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3677); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3635); END_STATE(); case 273: ADVANCE_MAP( - '!', 3686, - '#', 4941, - '*', 2084, - '+', 2158, - '-', 1894, - '.', 2363, - '/', 2120, - '<', 2213, - '=', 3688, - '>', 1874, - '_', 3695, - 'a', 3731, - 'b', 3717, - 'e', 3735, - 'i', 3732, - 'm', 3749, - 'n', 3748, - 'o', 3769, - 's', 3777, - 'x', 3744, + '!', 3644, + '#', 4896, + '*', 2051, + '+', 2120, + '-', 1861, + '.', 2325, + '/', 2082, + '<', 2175, + '=', 3646, + '>', 1841, + '_', 3653, + 'a', 3688, + 'b', 3675, + 'e', 3692, + 'i', 3689, + 'm', 3706, + 'n', 3705, + 'o', 3726, + 's', 3734, + 'x', 3701, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(233); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3789); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3677); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3746); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3635); END_STATE(); case 274: ADVANCE_MAP( - '!', 4160, - '"', 2554, - '#', 4952, - '$', 1851, + '!', 4114, + '"', 2516, + '#', 4906, + '$', 1813, '\'', 791, - '(', 1839, - '*', 2089, - '+', 2165, - ',', 1837, - '-', 1910, - '.', 2484, - '/', 2124, - '0', 4176, - '<', 2216, - '=', 4162, - '>', 1877, - 'I', 4570, - 'N', 4560, - '[', 1834, - '_', 2008, + '(', 1806, + '*', 2053, + '+', 2123, + '-', 1876, + '.', 2444, + '/', 2084, + '0', 4132, + '<', 2176, + '=', 4116, + '>', 1842, + 'I', 4525, + 'N', 4515, + '[', 1801, + '_', 4136, '`', 834, - 'a', 4343, - 'b', 4296, - 'e', 4016, - 'f', 4186, - 'i', 4169, - 'm', 4380, - 'n', 4377, - 'o', 4013, - 's', 4490, - 't', 4412, - 'x', 4379, - '{', 2000, - '}', 2001, + 'a', 4301, + 'b', 4252, + 'e', 4313, + 'f', 4142, + 'i', 4125, + 'm', 4335, + 'n', 4345, + 'o', 4374, + 's', 4445, + 't', 4375, + 'x', 4334, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(297); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4179); + lookahead == ' ') SKIP(174); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4135); if (lookahead != 0 && - (lookahead < '\'' || '9' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != ']') ADVANCE(4597); + lookahead != ']' && + lookahead != '}') ADVANCE(4552); END_STATE(); case 275: ADVANCE_MAP( - '!', 4160, - '"', 2554, - '#', 4952, - '$', 1847, + '!', 4114, + '"', 2516, + '#', 4906, + '$', 1817, '\'', 791, - '(', 1839, - '*', 2089, - '+', 2165, - '-', 1910, - '.', 2484, - '/', 2124, - '0', 4176, - '<', 2216, - '=', 4162, - '>', 1877, - 'I', 4570, - 'N', 4560, - '[', 1834, - '_', 4180, + '(', 1806, + '*', 2053, + '+', 2123, + ',', 1803, + '-', 1876, + '.', 2444, + '/', 2084, + '0', 4132, + '<', 2176, + '=', 4116, + '>', 1842, + 'I', 4525, + 'N', 4515, + '[', 1801, + '_', 1974, '`', 834, - 'a', 4343, - 'b', 4296, - 'e', 4358, - 'f', 4186, - 'i', 4169, - 'm', 4380, - 'n', 4390, - 'o', 4411, - 's', 4490, - 't', 4412, - 'x', 4379, - '{', 2000, + 'a', 4301, + 'b', 4252, + 'e', 3972, + 'f', 4142, + 'i', 4125, + 'm', 4335, + 'n', 4332, + 'o', 3969, + 's', 4445, + 't', 4375, + 'x', 4334, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(174); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4179); + lookahead == ' ') SKIP(297); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4135); if (lookahead != 0 && - (lookahead < '\'' || '+' < lookahead) && + (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != ']' && - lookahead != '}') ADVANCE(4597); + lookahead != ']') ADVANCE(4552); END_STATE(); case 276: ADVANCE_MAP( - '!', 4160, - '"', 2554, - '#', 4952, + '!', 4114, + '"', 2516, + '#', 4906, '\'', 791, - '*', 2089, - '+', 2166, - '-', 1899, - '/', 2124, - '<', 2216, - '=', 4162, - '>', 1877, + '*', 2053, + '+', 2124, + '-', 1863, + '/', 2084, + '<', 2176, + '=', 4116, + '>', 1842, '`', 834, - 'a', 4335, - 'b', 4290, - 'e', 4353, - 'i', 4348, - 'm', 4386, - 'n', 4395, - 'o', 4420, - 's', 4468, - 'x', 4383, + 'a', 4290, + 'b', 4246, + 'e', 4308, + 'i', 4306, + 'm', 4341, + 'n', 4350, + 'o', 4358, + 's', 4423, + 'x', 4338, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(183); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4596); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4551); if (lookahead != 0 && (lookahead < '\'' || '+' < lookahead) && (lookahead < ';' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(4597); + lookahead != '}') ADVANCE(4552); END_STATE(); case 277: ADVANCE_MAP( - '!', 4160, - '#', 4952, - '$', 1851, - ')', 1840, - '*', 2089, - '+', 2166, - ',', 1837, - '-', 1899, - '.', 4151, - '/', 2124, - ':', 1832, - '<', 2216, - '=', 4162, - '>', 1877, - ']', 1838, - 'a', 4345, - 'b', 4297, - 'e', 4359, - 'i', 4346, - 'm', 4382, - 'n', 4381, - 'o', 4417, - 's', 4481, - 'x', 4375, + '!', 4114, + '#', 4906, + '$', 1817, + ')', 1807, + '*', 2053, + '+', 2124, + ',', 1803, + '-', 1863, + '.', 4107, + '/', 2084, + ':', 1798, + '<', 2176, + '=', 4116, + '>', 1842, + ']', 1805, + 'a', 4303, + 'b', 4253, + 'e', 4314, + 'i', 4304, + 'm', 4337, + 'n', 4336, + 'o', 4380, + 's', 4441, + 'x', 4330, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(189); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4595); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4550); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '/' < lookahead) && (lookahead < ':' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(4597); + lookahead != '}') ADVANCE(4552); END_STATE(); case 278: ADVANCE_MAP( - '!', 4160, - '#', 4952, - '$', 1851, - ')', 1840, - '*', 2089, - '+', 2166, - ',', 1837, - '-', 1899, - '.', 4151, - '/', 2124, - '<', 2216, - '=', 4162, - '>', 1877, - ']', 1838, - 'a', 4345, - 'b', 4297, - 'e', 4359, - 'i', 4346, - 'm', 4382, - 'n', 4381, - 'o', 4417, - 's', 4481, - 'x', 4375, + '!', 4114, + '#', 4906, + '$', 1817, + ')', 1807, + '*', 2053, + '+', 2124, + ',', 1803, + '-', 1863, + '.', 4107, + '/', 2084, + '<', 2176, + '=', 4116, + '>', 1842, + ']', 1805, + 'a', 4303, + 'b', 4253, + 'e', 4314, + 'i', 4304, + 'm', 4337, + 'n', 4336, + 'o', 4380, + 's', 4441, + 'x', 4330, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(190); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4595); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4550); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '/' < lookahead) && (lookahead < ';' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(4597); + lookahead != '}') ADVANCE(4552); END_STATE(); case 279: ADVANCE_MAP( - '!', 4160, - '#', 4952, - '$', 1851, - '*', 2089, - '+', 2166, - ',', 1837, - '-', 1899, - '.', 4151, - '/', 2124, - ':', 1832, - '<', 2216, - '=', 4162, - '>', 1877, - 'a', 4345, - 'b', 4297, - 'e', 4359, - 'i', 4346, - 'm', 4382, - 'n', 4381, - 'o', 4417, - 's', 4481, - 'x', 4375, - '|', 1843, + '!', 4114, + '#', 4906, + '$', 1817, + '*', 2053, + '+', 2124, + ',', 1803, + '-', 1863, + '.', 4107, + '/', 2084, + ':', 1798, + '<', 2176, + '=', 4116, + '>', 1842, + 'a', 4303, + 'b', 4253, + 'e', 4314, + 'i', 4304, + 'm', 4337, + 'n', 4336, + 'o', 4380, + 's', 4441, + 'x', 4330, + '|', 1809, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(199); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4595); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4550); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '/' < lookahead) && (lookahead < ':' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(4597); + (lookahead < '_' || '}' < lookahead)) ADVANCE(4552); END_STATE(); case 280: ADVANCE_MAP( - '!', 4160, - '#', 4952, - '$', 1851, - '*', 2089, - '+', 2166, - ',', 1837, - '-', 1899, - '.', 4151, - '/', 2124, - '<', 2216, - '=', 4162, - '>', 1877, - 'a', 4345, - 'b', 4297, - 'e', 4359, - 'i', 4346, - 'm', 4382, - 'n', 4381, - 'o', 4417, - 's', 4481, - 'x', 4375, - '|', 1843, + '!', 4114, + '#', 4906, + '$', 1817, + '*', 2053, + '+', 2124, + ',', 1803, + '-', 1863, + '.', 4107, + '/', 2084, + '<', 2176, + '=', 4116, + '>', 1842, + 'a', 4303, + 'b', 4253, + 'e', 4314, + 'i', 4304, + 'm', 4337, + 'n', 4336, + 'o', 4380, + 's', 4441, + 'x', 4330, + '|', 1809, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(200); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4595); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4550); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '/' < lookahead) && (lookahead < ';' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(4597); + (lookahead < '_' || '}' < lookahead)) ADVANCE(4552); END_STATE(); case 281: ADVANCE_MAP( - '!', 4160, - '#', 4952, - '$', 1851, - '*', 2089, - '+', 2166, - '-', 1899, - '/', 2124, - '<', 2216, - '=', 4162, - '>', 1877, - 'a', 4343, - 'b', 4296, - 'e', 4358, - 'i', 4347, - 'm', 4380, - 'n', 4378, - 'o', 4411, - 's', 4490, - 'x', 4379, - '{', 2000, + '!', 4114, + '#', 4906, + '$', 1817, + '*', 2053, + '+', 2124, + '-', 1863, + '/', 2084, + '<', 2176, + '=', 4116, + '>', 1842, + 'a', 4301, + 'b', 4252, + 'e', 4313, + 'i', 4305, + 'm', 4335, + 'n', 4333, + 'o', 4374, + 's', 4445, + 'x', 4334, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(207); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 282: ADVANCE_MAP( - '!', 4160, - '#', 4952, - '$', 1851, - '*', 2089, - '+', 2166, - '-', 1913, - '/', 2124, - '<', 2216, - '=', 4162, - '>', 1877, - 'a', 4343, - 'b', 4296, - 'e', 4358, - 'i', 4347, - 'm', 4380, - 'n', 4378, - 'o', 4411, - 's', 4490, - 'x', 4379, - '{', 2000, + '!', 4114, + '#', 4906, + '$', 1817, + '*', 2053, + '+', 2124, + '-', 1879, + '/', 2084, + '<', 2176, + '=', 4116, + '>', 1842, + 'a', 4301, + 'b', 4252, + 'e', 4313, + 'i', 4305, + 'm', 4335, + 'n', 4333, + 'o', 4374, + 's', 4445, + 'x', 4334, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(211); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 283: ADVANCE_MAP( - '!', 4160, - '#', 4952, - '$', 1851, - '*', 2089, - '+', 2166, - '-', 1913, - '/', 2124, - '<', 2216, - '=', 4162, - '>', 1877, - 'a', 4345, - 'b', 4297, - 'e', 4359, - 'i', 4346, - 'm', 4382, - 'n', 4381, - 'o', 4417, - 's', 4481, - 'x', 4375, + '!', 4114, + '#', 4906, + '$', 1817, + '*', 2053, + '+', 2124, + '-', 1879, + '/', 2084, + '<', 2176, + '=', 4116, + '>', 1842, + 'a', 4303, + 'b', 4253, + 'e', 4314, + 'i', 4304, + 'm', 4337, + 'n', 4336, + 'o', 4380, + 's', 4441, + 'x', 4330, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(212); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4595); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(4597); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4550); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 284: ADVANCE_MAP( - '!', 4160, - '#', 4952, - '*', 2089, - '+', 2166, - ',', 3211, - '-', 1913, - '/', 2124, - '<', 2216, - '=', 4162, - '>', 1877, - ']', 1838, - 'a', 4343, - 'b', 4296, - 'e', 4358, - 'i', 4347, - 'm', 4380, - 'n', 4378, - 'o', 4411, - 's', 4490, - 'x', 4379, - '}', 2001, + '!', 4114, + '#', 4906, + '*', 2053, + '+', 2124, + ',', 3171, + '-', 1879, + '/', 2084, + '<', 2176, + '=', 4116, + '>', 1842, + ']', 1805, + 'a', 4301, + 'b', 4252, + 'e', 4313, + 'i', 4305, + 'm', 4335, + 'n', 4333, + 'o', 4374, + 's', 4445, + 'x', 4334, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); + lookahead == ' ') ADVANCE(3173); if (lookahead != 0 && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '-' < lookahead) && (lookahead < ';' || '>' < lookahead) && lookahead != '[' && (lookahead < '`' || 'b' < lookahead) && - lookahead != '{') ADVANCE(4597); + lookahead != '{') ADVANCE(4552); END_STATE(); case 285: ADVANCE_MAP( - '!', 4160, - '#', 4952, - '*', 2089, - '+', 2166, - ',', 1837, - '-', 1913, - '/', 2124, - '<', 2216, - '=', 4162, - '>', 1877, - 'a', 4343, - 'b', 4296, - 'e', 4358, - 'i', 4347, - 'm', 4380, - 'n', 4378, - 'o', 4411, - 's', 4490, - 'x', 4379, - '}', 2001, + '!', 4114, + '#', 4906, + '*', 2053, + '+', 2124, + ',', 1803, + '-', 1879, + '/', 2084, + '<', 2176, + '=', 4116, + '>', 1842, + 'a', 4301, + 'b', 4252, + 'e', 4313, + 'i', 4305, + 'm', 4335, + 'n', 4333, + 'o', 4374, + 's', 4445, + 'x', 4334, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(220); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token4_character_set_1, 12, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token4_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 286: ADVANCE_MAP( - '!', 4160, - '#', 4952, - '*', 2089, - '+', 2166, - '-', 1899, - '/', 2124, - '<', 2216, - '=', 4162, - '>', 1877, - 'a', 4343, - 'b', 4296, - 'e', 4358, - 'i', 4347, - 'm', 4380, - 'n', 4378, - 'o', 4411, - 's', 4490, - 'x', 4379, - '{', 2000, + '!', 4114, + '#', 4906, + '*', 2053, + '+', 2124, + '-', 1863, + '/', 2084, + '<', 2176, + '=', 4116, + '>', 1842, + 'a', 4301, + 'b', 4252, + 'e', 4313, + 'i', 4305, + 'm', 4335, + 'n', 4333, + 'o', 4374, + 's', 4445, + 'x', 4334, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(227); - if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 287: ADVANCE_MAP( - '!', 4160, - '#', 4952, - '*', 2089, - '+', 2166, - '-', 1899, - '/', 2124, - '<', 2216, - '=', 4162, - '>', 1877, - 'a', 4345, - 'b', 4297, - 'e', 4359, - 'i', 4346, - 'm', 4382, - 'n', 4381, - 'o', 4417, - 's', 4481, - 'x', 4375, + '!', 4114, + '#', 4906, + '*', 2053, + '+', 2124, + '-', 1863, + '/', 2084, + '<', 2176, + '=', 4116, + '>', 1842, + 'a', 4303, + 'b', 4253, + 'e', 4314, + 'i', 4304, + 'm', 4337, + 'n', 4336, + 'o', 4380, + 's', 4441, + 'x', 4330, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(228); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4595); - if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(4597); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4550); + if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 288: ADVANCE_MAP( - '!', 4160, - '#', 4952, - '*', 2089, - '+', 2166, - '-', 1913, - '/', 2124, - '<', 2216, - '=', 4161, - '>', 1877, - 'a', 4343, - 'b', 4296, - 'e', 4358, - 'i', 4347, - 'm', 4380, - 'n', 4378, - 'o', 4411, - 's', 4490, - 'x', 4379, + '!', 4114, + '#', 4906, + '*', 2053, + '+', 2124, + '-', 1879, + '/', 2084, + '<', 2176, + '=', 4115, + '>', 1842, + 'a', 4301, + 'b', 4252, + 'e', 4313, + 'i', 4305, + 'm', 4335, + 'n', 4333, + 'o', 4374, + 's', 4445, + 'x', 4334, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(229); - if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 289: ADVANCE_MAP( - '!', 4160, - '#', 4952, - '*', 2089, - '+', 2166, - '-', 1913, - '/', 2124, - '<', 2216, - '=', 4162, - '>', 1877, - 'a', 4343, - 'b', 4296, - 'e', 4358, - 'i', 4347, - 'm', 4380, - 'n', 4378, - 'o', 4411, - 's', 4490, - 'x', 4379, - '{', 2000, + '!', 4114, + '#', 4906, + '*', 2053, + '+', 2124, + '-', 1879, + '/', 2084, + '<', 2176, + '=', 4116, + '>', 1842, + 'a', 4301, + 'b', 4252, + 'e', 4313, + 'i', 4305, + 'm', 4335, + 'n', 4333, + 'o', 4374, + 's', 4445, + 'x', 4334, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(230); - if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 290: ADVANCE_MAP( - '!', 4158, - '"', 2554, - '#', 4947, - '$', 1851, + '!', 4117, + '"', 2516, + '#', 4901, + '$', 1817, '\'', 791, - '(', 1839, - '*', 2087, - '+', 2163, - ',', 3211, - '-', 1903, - '.', 2487, - '/', 2123, - '0', 4174, - ':', 4597, - '<', 2215, - '=', 4159, - '>', 1876, - 'I', 4546, - 'N', 4538, - '_', 4173, + '(', 1806, + '*', 2054, + '+', 2125, + ',', 3171, + '-', 1870, + '.', 2448, + '/', 2085, + '0', 4130, + ':', 4552, + '<', 2177, + '=', 4118, + '>', 1843, + 'I', 4501, + 'N', 4493, + '_', 4129, '`', 834, - 'a', 4323, - 'b', 4291, - 'c', 4188, - 'd', 4226, - 'e', 4334, - 'f', 4376, - 'h', 4300, - 'i', 4170, - 'l', 4251, - 'm', 4184, - 'n', 4227, - 'o', 4403, - 'r', 4228, - 's', 4371, - 't', 4404, - 'u', 4456, - 'w', 4288, - 'x', 4384, - '}', 2001, + 'a', 4278, + 'b', 4247, + 'c', 4144, + 'd', 4191, + 'e', 4289, + 'f', 4331, + 'h', 4256, + 'i', 4126, + 'l', 4207, + 'm', 4140, + 'n', 4192, + 'o', 4366, + 'r', 4193, + 's', 4326, + 't', 4367, + 'u', 4411, + 'w', 4244, + 'x', 4339, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4175); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4557); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4131); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4512); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(4558); + (lookahead < '_' || '{' < lookahead)) ADVANCE(4513); END_STATE(); case 291: ADVANCE_MAP( - '!', 4158, - '"', 2554, - '#', 4947, - '$', 1851, + '!', 4117, + '"', 2516, + '#', 4901, + '$', 1817, '\'', 791, - '(', 1839, - '*', 2087, - '+', 2163, - '-', 1903, - '.', 2487, - '/', 2123, - '0', 4174, - '<', 2215, - '=', 4159, - '>', 1876, - 'I', 4546, - 'N', 4538, - '_', 4173, + '(', 1806, + '*', 2054, + '+', 2125, + '-', 1870, + '.', 2448, + '/', 2085, + '0', 4130, + '<', 2177, + '=', 4118, + '>', 1843, + 'I', 4501, + 'N', 4493, + '_', 4129, '`', 834, - 'a', 4323, - 'b', 4291, - 'c', 4188, - 'd', 4226, - 'e', 4334, - 'f', 4376, - 'h', 4300, - 'i', 4170, - 'l', 4251, - 'm', 4184, - 'n', 4227, - 'o', 4403, - 'r', 4228, - 's', 4371, - 't', 4404, - 'u', 4456, - 'w', 4288, - 'x', 4384, - '}', 2001, - ',', 4597, - ':', 4597, + 'a', 4278, + 'b', 4247, + 'c', 4144, + 'd', 4191, + 'e', 4289, + 'f', 4331, + 'h', 4256, + 'i', 4126, + 'l', 4207, + 'm', 4140, + 'n', 4192, + 'o', 4366, + 'r', 4193, + 's', 4326, + 't', 4367, + 'u', 4411, + 'w', 4244, + 'x', 4339, + '}', 1968, + ',', 4552, + ':', 4552, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(81); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4175); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4557); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4131); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4512); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(4558); + (lookahead < '_' || '{' < lookahead)) ADVANCE(4513); END_STATE(); case 292: ADVANCE_MAP( - '!', 3327, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3287, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2157, - ',', 1835, - '-', 1902, - '.', 2364, - '/', 2120, - '0', 2461, - '<', 2213, - '=', 3328, - '>', 1874, - '?', 2102, - 'I', 3418, - 'N', 3413, - '[', 1834, - '_', 2005, + '(', 1806, + '*', 2051, + '+', 2119, + ',', 1802, + '-', 1869, + '.', 2326, + '/', 2082, + '0', 2423, + '<', 2175, + '=', 3288, + '>', 1841, + '?', 2064, + 'I', 3378, + 'N', 3373, + '[', 1801, + '_', 1972, '`', 834, - 'a', 3375, - 'b', 3364, - 'e', 3309, - 'f', 3346, - 'i', 3338, - 'm', 3379, - 'n', 3381, - 'o', 3311, - 's', 3399, - 't', 3385, - 'x', 3382, - '{', 2000, - '}', 2001, + 'a', 3335, + 'b', 3324, + 'e', 3269, + 'f', 3306, + 'i', 3298, + 'm', 3339, + 'n', 3341, + 'o', 3271, + 's', 3359, + 't', 3345, + 'x', 3342, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(295); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2474); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2436); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '?' < lookahead) && - lookahead != ']') ADVANCE(3436); + lookahead != ']') ADVANCE(3396); END_STATE(); case 293: ADVANCE_MAP( - '!', 3327, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3287, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2157, - ',', 1835, - '-', 1902, - '.', 2364, - '/', 2120, - '0', 2461, - '<', 2213, - '=', 3328, - '>', 1874, - 'B', 2507, - 'E', 3333, - 'G', 3336, - 'I', 3418, - 'K', 3336, - 'M', 3336, - 'N', 3413, - 'P', 3336, - 'T', 3336, - '[', 1834, - '_', 2005, + '(', 1806, + '*', 2051, + '+', 2119, + ',', 1802, + '-', 1869, + '.', 2326, + '/', 2082, + '0', 2423, + '<', 2175, + '=', 3288, + '>', 1841, + 'B', 2469, + 'E', 3293, + 'G', 3296, + 'I', 3378, + 'K', 3296, + 'M', 3296, + 'N', 3373, + 'P', 3296, + 'T', 3296, + '[', 1801, + '_', 1972, '`', 834, - 'a', 3375, - 'b', 2511, - 'd', 3347, - 'e', 3313, - 'f', 3346, - 'g', 3335, - 'h', 3387, - 'i', 3338, - 'k', 3335, - 'm', 3337, - 'n', 3380, - 'o', 3311, - 'p', 3335, - 's', 3358, - 't', 3334, - 'u', 3394, - 'w', 3368, - 'x', 3382, - '{', 2000, - '}', 2001, - 0xb5, 3394, + 'a', 3335, + 'b', 2473, + 'd', 3307, + 'e', 3273, + 'f', 3306, + 'g', 3295, + 'h', 3347, + 'i', 3298, + 'k', 3295, + 'm', 3297, + 'n', 3340, + 'o', 3271, + 'p', 3295, + 's', 3318, + 't', 3294, + 'u', 3354, + 'w', 3328, + 'x', 3342, + '{', 1967, + '}', 1968, + 0xb5, 3354, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(297); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2474); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2436); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != ']') ADVANCE(3436); + lookahead != ']') ADVANCE(3396); END_STATE(); case 294: ADVANCE_MAP( - '!', 3327, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3287, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2157, - ',', 1835, - '-', 1902, - '.', 2364, - '/', 2120, - '0', 2461, - '<', 2213, - '=', 3328, - '>', 1874, - 'I', 3418, - 'N', 3413, - '[', 1834, - '_', 2005, + '(', 1806, + '*', 2051, + '+', 2119, + ',', 1802, + '-', 1869, + '.', 2326, + '/', 2082, + '0', 2423, + '<', 2175, + '=', 3288, + '>', 1841, + 'I', 3378, + 'N', 3373, + '[', 1801, + '_', 1972, '`', 834, - 'a', 3375, - 'b', 3364, - 'e', 3309, - 'f', 3346, - 'i', 3338, - 'm', 3379, - 'n', 3381, - 'o', 3311, - 's', 3399, - 't', 3385, - 'x', 3382, - '{', 2000, - '}', 2001, + 'a', 3335, + 'b', 3324, + 'e', 3269, + 'f', 3306, + 'i', 3298, + 'm', 3339, + 'n', 3341, + 'o', 3271, + 's', 3359, + 't', 3345, + 'x', 3342, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(297); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2474); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2436); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != ']') ADVANCE(3436); + lookahead != ']') ADVANCE(3396); END_STATE(); case 295: ADVANCE_MAP( - '!', 3327, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3287, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2157, - ',', 1835, - '-', 1902, - '.', 2481, - '/', 2120, - '0', 2461, - '<', 2213, - '=', 3328, - '>', 1874, - '?', 2102, - 'I', 3418, - 'N', 3413, - '[', 1834, - '_', 2005, + '(', 1806, + '*', 2051, + '+', 2119, + ',', 1802, + '-', 1869, + '.', 2443, + '/', 2082, + '0', 2423, + '<', 2175, + '=', 3288, + '>', 1841, + '?', 2064, + 'I', 3378, + 'N', 3373, + '[', 1801, + '_', 1972, '`', 834, - 'a', 3375, - 'b', 3364, - 'e', 3309, - 'f', 3346, - 'i', 3338, - 'm', 3379, - 'n', 3381, - 'o', 3311, - 's', 3399, - 't', 3385, - 'x', 3382, - '{', 2000, - '}', 2001, + 'a', 3335, + 'b', 3324, + 'e', 3269, + 'f', 3306, + 'i', 3298, + 'm', 3339, + 'n', 3341, + 'o', 3271, + 's', 3359, + 't', 3345, + 'x', 3342, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(295); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2474); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2436); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '?' < lookahead) && - lookahead != ']') ADVANCE(3436); + lookahead != ']') ADVANCE(3396); END_STATE(); case 296: ADVANCE_MAP( - '!', 3327, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3287, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2157, - ',', 1835, - '-', 1902, - '.', 2481, - '/', 2120, - '0', 2461, - '<', 2213, - '=', 3328, - '>', 1874, - 'I', 3418, - 'N', 3413, - '[', 2535, - '_', 2005, + '(', 1806, + '*', 2051, + '+', 2119, + ',', 1802, + '-', 1869, + '.', 2443, + '/', 2082, + '0', 2423, + '<', 2175, + '=', 3288, + '>', 1841, + 'I', 3378, + 'N', 3373, + '[', 2497, + '_', 1972, '`', 834, - 'a', 3375, - 'b', 3364, - 'e', 3309, - 'f', 3346, - 'i', 3338, - 'm', 3379, - 'n', 3381, - 'o', 3311, - 's', 3399, - 't', 3385, - 'x', 3382, - '{', 2000, - '}', 2001, + 'a', 3335, + 'b', 3324, + 'e', 3269, + 'f', 3306, + 'i', 3298, + 'm', 3339, + 'n', 3341, + 'o', 3271, + 's', 3359, + 't', 3345, + 'x', 3342, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(297); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2474); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2436); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != ']') ADVANCE(3436); + lookahead != ']') ADVANCE(3396); END_STATE(); case 297: ADVANCE_MAP( - '!', 3327, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3287, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2157, - ',', 1835, - '-', 1902, - '.', 2481, - '/', 2120, - '0', 2461, - '<', 2213, - '=', 3328, - '>', 1874, - 'I', 3418, - 'N', 3413, - '[', 1834, - '_', 2005, + '(', 1806, + '*', 2051, + '+', 2119, + ',', 1802, + '-', 1869, + '.', 2443, + '/', 2082, + '0', 2423, + '<', 2175, + '=', 3288, + '>', 1841, + 'I', 3378, + 'N', 3373, + '[', 1801, + '_', 1972, '`', 834, - 'a', 3375, - 'b', 3364, - 'e', 3309, - 'f', 3346, - 'i', 3338, - 'm', 3379, - 'n', 3381, - 'o', 3311, - 's', 3399, - 't', 3385, - 'x', 3382, - '{', 2000, - '}', 2001, + 'a', 3335, + 'b', 3324, + 'e', 3269, + 'f', 3306, + 'i', 3298, + 'm', 3339, + 'n', 3341, + 'o', 3271, + 's', 3359, + 't', 3345, + 'x', 3342, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(297); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2474); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2436); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != ']') ADVANCE(3436); + lookahead != ']') ADVANCE(3396); END_STATE(); case 298: ADVANCE_MAP( - '!', 3327, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3287, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2157, - ',', 1835, - '-', 1902, - '.', 2365, - '/', 2120, - '0', 2461, - '<', 2213, - '=', 3328, - '>', 1874, - '?', 2102, - 'I', 3418, - 'N', 3413, - '[', 1834, - '_', 2005, + '(', 1806, + '*', 2051, + '+', 2119, + ',', 1802, + '-', 1869, + '.', 2327, + '/', 2082, + '0', 2423, + '<', 2175, + '=', 3288, + '>', 1841, + '?', 2064, + 'I', 3378, + 'N', 3373, + '[', 1801, + '_', 1972, '`', 834, - 'a', 3375, - 'b', 3364, - 'e', 3309, - 'f', 3346, - 'i', 3338, - 'm', 3379, - 'n', 3381, - 'o', 3311, - 's', 3399, - 't', 3385, - 'x', 3382, - '{', 2000, - '}', 2001, + 'a', 3335, + 'b', 3324, + 'e', 3269, + 'f', 3306, + 'i', 3298, + 'm', 3339, + 'n', 3341, + 'o', 3271, + 's', 3359, + 't', 3345, + 'x', 3342, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(295); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2474); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2436); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '?' < lookahead) && - lookahead != ']') ADVANCE(3436); + lookahead != ']') ADVANCE(3396); END_STATE(); case 299: ADVANCE_MAP( - '!', 3327, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3287, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2157, - ',', 1835, - '-', 1902, - '.', 2365, - '/', 2120, - '0', 2461, - '<', 2213, - '=', 3328, - '>', 1874, - 'I', 3418, - 'N', 3413, - '[', 1834, - '_', 2005, + '(', 1806, + '*', 2051, + '+', 2119, + ',', 1802, + '-', 1869, + '.', 2327, + '/', 2082, + '0', 2423, + '<', 2175, + '=', 3288, + '>', 1841, + 'I', 3378, + 'N', 3373, + '[', 1801, + '_', 1972, '`', 834, - 'a', 3375, - 'b', 3364, - 'e', 3309, - 'f', 3346, - 'i', 3338, - 'm', 3379, - 'n', 3381, - 'o', 3311, - 's', 3399, - 't', 3385, - 'x', 3382, - '{', 2000, - '}', 2001, + 'a', 3335, + 'b', 3324, + 'e', 3269, + 'f', 3306, + 'i', 3298, + 'm', 3339, + 'n', 3341, + 'o', 3271, + 's', 3359, + 't', 3345, + 'x', 3342, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(297); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2474); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2436); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != ']') ADVANCE(3436); + lookahead != ']') ADVANCE(3396); END_STATE(); case 300: ADVANCE_MAP( - '!', 3327, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3287, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2157, - ',', 1835, - '-', 1902, - '.', 2480, - '/', 2120, - '0', 2395, - '<', 2213, - '=', 3328, - '>', 1874, - 'B', 2507, - 'E', 3333, - 'G', 3336, - 'I', 3418, - 'K', 3336, - 'M', 3336, - 'N', 3413, - 'P', 3336, - 'T', 3336, - '[', 1834, - '_', 2006, + '(', 1806, + '*', 2051, + '+', 2119, + ',', 1802, + '-', 1869, + '.', 2442, + '/', 2082, + '0', 2357, + '<', 2175, + '=', 3288, + '>', 1841, + 'B', 2469, + 'E', 3293, + 'G', 3296, + 'I', 3378, + 'K', 3296, + 'M', 3296, + 'N', 3373, + 'P', 3296, + 'T', 3296, + '[', 1801, + '_', 1973, '`', 834, - 'a', 3375, - 'b', 2511, - 'd', 3347, - 'e', 3313, - 'f', 3346, - 'g', 3335, - 'h', 3387, - 'i', 3338, - 'k', 3335, - 'm', 3337, - 'n', 3380, - 'o', 3311, - 'p', 3335, - 's', 3358, - 't', 3334, - 'u', 3394, - 'w', 3368, - 'x', 3382, - '{', 2000, - '}', 2001, - 0xb5, 3394, + 'a', 3335, + 'b', 2473, + 'd', 3307, + 'e', 3273, + 'f', 3306, + 'g', 3295, + 'h', 3347, + 'i', 3298, + 'k', 3295, + 'm', 3297, + 'n', 3340, + 'o', 3271, + 'p', 3295, + 's', 3318, + 't', 3294, + 'u', 3354, + 'w', 3328, + 'x', 3342, + '{', 1967, + '}', 1968, + 0xb5, 3354, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(297); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2405); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2367); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != ']') ADVANCE(3436); + lookahead != ']') ADVANCE(3396); END_STATE(); case 301: ADVANCE_MAP( - '!', 3327, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3287, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2157, - ',', 1835, - '-', 1902, - '.', 2480, - '/', 2120, - '0', 2461, - '<', 2213, - '=', 3328, - '>', 1874, - 'B', 2507, - 'E', 3333, - 'G', 3336, - 'I', 3418, - 'K', 3336, - 'M', 3336, - 'N', 3413, - 'P', 3336, - 'T', 3336, - '[', 1834, - '_', 2005, + '(', 1806, + '*', 2051, + '+', 2119, + ',', 1802, + '-', 1869, + '.', 2442, + '/', 2082, + '0', 2423, + '<', 2175, + '=', 3288, + '>', 1841, + 'B', 2469, + 'E', 3293, + 'G', 3296, + 'I', 3378, + 'K', 3296, + 'M', 3296, + 'N', 3373, + 'P', 3296, + 'T', 3296, + '[', 1801, + '_', 1972, '`', 834, - 'a', 3375, - 'b', 2511, - 'd', 3347, - 'e', 3313, - 'f', 3346, - 'g', 3335, - 'h', 3387, - 'i', 3338, - 'k', 3335, - 'm', 3337, - 'n', 3380, - 'o', 3311, - 'p', 3335, - 's', 3358, - 't', 3334, - 'u', 3394, - 'w', 3368, - 'x', 3382, - '{', 2000, - '}', 2001, - 0xb5, 3394, + 'a', 3335, + 'b', 2473, + 'd', 3307, + 'e', 3273, + 'f', 3306, + 'g', 3295, + 'h', 3347, + 'i', 3298, + 'k', 3295, + 'm', 3297, + 'n', 3340, + 'o', 3271, + 'p', 3295, + 's', 3318, + 't', 3294, + 'u', 3354, + 'w', 3328, + 'x', 3342, + '{', 1967, + '}', 1968, + 0xb5, 3354, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(297); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2474); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2436); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != ']') ADVANCE(3436); + lookahead != ']') ADVANCE(3396); END_STATE(); case 302: ADVANCE_MAP( - '!', 3327, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3287, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2157, - ',', 1835, - '-', 1902, - '.', 2480, - '/', 2120, - '0', 2461, - '<', 2213, - '=', 3328, - '>', 1874, - 'B', 2507, - 'E', 3336, - 'G', 3336, - 'I', 3418, - 'K', 3336, - 'M', 3336, - 'N', 3413, - 'P', 3336, - 'T', 3336, - '[', 1834, - '_', 2005, + '(', 1806, + '*', 2051, + '+', 2119, + ',', 1802, + '-', 1869, + '.', 2442, + '/', 2082, + '0', 2423, + '<', 2175, + '=', 3288, + '>', 1841, + 'B', 2469, + 'E', 3296, + 'G', 3296, + 'I', 3378, + 'K', 3296, + 'M', 3296, + 'N', 3373, + 'P', 3296, + 'T', 3296, + '[', 1801, + '_', 1972, '`', 834, - 'a', 3375, - 'b', 2511, - 'd', 3347, - 'e', 3308, - 'f', 3346, - 'g', 3335, - 'h', 3387, - 'i', 3338, - 'k', 3335, - 'm', 3337, - 'n', 3380, - 'o', 3311, - 'p', 3335, - 's', 3358, - 't', 3334, - 'u', 3394, - 'w', 3368, - 'x', 3382, - '{', 2000, - '}', 2001, - 0xb5, 3394, + 'a', 3335, + 'b', 2473, + 'd', 3307, + 'e', 3268, + 'f', 3306, + 'g', 3295, + 'h', 3347, + 'i', 3298, + 'k', 3295, + 'm', 3297, + 'n', 3340, + 'o', 3271, + 'p', 3295, + 's', 3318, + 't', 3294, + 'u', 3354, + 'w', 3328, + 'x', 3342, + '{', 1967, + '}', 1968, + 0xb5, 3354, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(297); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2474); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2436); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != ']') ADVANCE(3436); + lookahead != ']') ADVANCE(3396); END_STATE(); case 303: ADVANCE_MAP( - '!', 3327, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3287, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2157, - ',', 1835, - '-', 1902, - '.', 2480, - '/', 2120, - '0', 2461, - '<', 2213, - '=', 3328, - '>', 1874, - 'I', 3418, - 'N', 3413, - '[', 1834, - '_', 2005, + '(', 1806, + '*', 2051, + '+', 2119, + ',', 1802, + '-', 1869, + '.', 2442, + '/', 2082, + '0', 2423, + '<', 2175, + '=', 3288, + '>', 1841, + 'I', 3378, + 'N', 3373, + '[', 1801, + '_', 1972, '`', 834, - 'a', 3375, - 'b', 3364, - 'e', 3309, - 'f', 3346, - 'i', 3338, - 'm', 3379, - 'n', 3381, - 'o', 3311, - 's', 3399, - 't', 3385, - 'x', 3382, - '{', 2000, - '}', 2001, + 'a', 3335, + 'b', 3324, + 'e', 3269, + 'f', 3306, + 'i', 3298, + 'm', 3339, + 'n', 3341, + 'o', 3271, + 's', 3359, + 't', 3345, + 'x', 3342, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(297); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2474); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2436); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != ']') ADVANCE(3436); + lookahead != ']') ADVANCE(3396); END_STATE(); case 304: ADVANCE_MAP( - '!', 3327, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 3287, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2160, - ',', 1835, - '-', 1907, - '.', 2481, - '/', 2120, - '0', 2461, - '<', 2213, - '=', 3328, - '>', 1874, - 'I', 3418, - 'N', 3413, - '[', 1834, - '_', 2005, + '(', 1806, + '*', 2051, + '+', 2122, + ',', 1802, + '-', 1874, + '.', 2443, + '/', 2082, + '0', 2423, + '<', 2175, + '=', 3288, + '>', 1841, + 'I', 3378, + 'N', 3373, + '[', 1801, + '_', 1972, '`', 834, - 'a', 3375, - 'b', 3364, - 'e', 3309, - 'f', 3346, - 'i', 3338, - 'm', 3379, - 'n', 3381, - 'o', 3311, - 's', 3399, - 't', 3385, - 'x', 3382, - '{', 2000, - '}', 2001, + 'a', 3335, + 'b', 3324, + 'e', 3269, + 'f', 3306, + 'i', 3298, + 'm', 3339, + 'n', 3341, + 'o', 3271, + 's', 3359, + 't', 3345, + 'x', 3342, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(304); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2474); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2436); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != ']') ADVANCE(3436); + lookahead != ']') ADVANCE(3396); END_STATE(); case 305: ADVANCE_MAP( - '!', 4615, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 4570, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2156, - ',', 1835, - '-', 1892, - '.', 2364, - '/', 2120, - '0', 2460, - '<', 2213, - '=', 4616, - '>', 1874, - '?', 2102, - 'I', 4692, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4622, + '(', 1806, + '*', 2051, + '+', 2118, + ',', 1802, + '-', 1859, + '.', 2326, + '/', 2082, + '0', 2422, + '<', 2175, + '=', 4571, + '>', 1841, + '?', 2064, + 'I', 4647, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4577, '`', 834, - 'a', 4653, - 'b', 4646, - 'e', 4598, - 'f', 4629, - 'i', 4621, - 'm', 4659, - 'n', 4660, - 'o', 4600, - 's', 4674, - 't', 4663, - 'x', 4661, - '{', 2000, + 'a', 4608, + 'b', 4601, + 'e', 4553, + 'f', 4584, + 'i', 4576, + 'm', 4614, + 'n', 4615, + 'o', 4555, + 's', 4629, + 't', 4618, + 'x', 4616, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(307); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2473); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2435); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '?' < lookahead) && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 306: ADVANCE_MAP( - '!', 4615, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 4570, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2156, - ',', 1835, - '-', 1892, - '.', 2364, - '/', 2120, - '0', 2460, - '<', 2213, - '=', 4616, - '>', 1874, - 'I', 4692, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4622, + '(', 1806, + '*', 2051, + '+', 2118, + ',', 1802, + '-', 1859, + '.', 2326, + '/', 2082, + '0', 2422, + '<', 2175, + '=', 4571, + '>', 1841, + 'I', 4647, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4577, '`', 834, - 'a', 4653, - 'b', 4646, - 'e', 4598, - 'f', 4629, - 'i', 4621, - 'm', 4659, - 'n', 4660, - 'o', 4600, - 's', 4674, - 't', 4663, - 'x', 4661, - '{', 2000, + 'a', 4608, + 'b', 4601, + 'e', 4553, + 'f', 4584, + 'i', 4576, + 'm', 4614, + 'n', 4615, + 'o', 4555, + 's', 4629, + 't', 4618, + 'x', 4616, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(309); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2473); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2435); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 307: ADVANCE_MAP( - '!', 4615, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 4570, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2156, - ',', 1835, - '-', 1892, - '.', 2481, - '/', 2120, - '0', 2460, - '<', 2213, - '=', 4616, - '>', 1874, - '?', 2102, - 'I', 4692, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4622, + '(', 1806, + '*', 2051, + '+', 2118, + ',', 1802, + '-', 1859, + '.', 2443, + '/', 2082, + '0', 2422, + '<', 2175, + '=', 4571, + '>', 1841, + '?', 2064, + 'I', 4647, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4577, '`', 834, - 'a', 4653, - 'b', 4646, - 'e', 4598, - 'f', 4629, - 'i', 4621, - 'm', 4659, - 'n', 4660, - 'o', 4600, - 's', 4674, - 't', 4663, - 'x', 4661, - '{', 2000, + 'a', 4608, + 'b', 4601, + 'e', 4553, + 'f', 4584, + 'i', 4576, + 'm', 4614, + 'n', 4615, + 'o', 4555, + 's', 4629, + 't', 4618, + 'x', 4616, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(307); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2473); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2435); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '?' < lookahead) && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 308: ADVANCE_MAP( - '!', 4615, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 4570, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2156, - ',', 1835, - '-', 1892, - '.', 2481, - '/', 2120, - '0', 2460, - '<', 2213, - '=', 4616, - '>', 1874, - 'I', 4692, - 'N', 4688, - '[', 2535, - ']', 1838, - '_', 4622, + '(', 1806, + '*', 2051, + '+', 2118, + ',', 1802, + '-', 1859, + '.', 2443, + '/', 2082, + '0', 2422, + '<', 2175, + '=', 4571, + '>', 1841, + 'I', 4647, + 'N', 4643, + '[', 2497, + ']', 1805, + '_', 4577, '`', 834, - 'a', 4653, - 'b', 4646, - 'e', 4598, - 'f', 4629, - 'i', 4621, - 'm', 4659, - 'n', 4660, - 'o', 4600, - 's', 4674, - 't', 4663, - 'x', 4661, - '{', 2000, + 'a', 4608, + 'b', 4601, + 'e', 4553, + 'f', 4584, + 'i', 4576, + 'm', 4614, + 'n', 4615, + 'o', 4555, + 's', 4629, + 't', 4618, + 'x', 4616, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(309); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2473); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2435); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 309: ADVANCE_MAP( - '!', 4615, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 4570, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2156, - ',', 1835, - '-', 1892, - '.', 2481, - '/', 2120, - '0', 2460, - '<', 2213, - '=', 4616, - '>', 1874, - 'I', 4692, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4622, + '(', 1806, + '*', 2051, + '+', 2118, + ',', 1802, + '-', 1859, + '.', 2443, + '/', 2082, + '0', 2422, + '<', 2175, + '=', 4571, + '>', 1841, + 'I', 4647, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4577, '`', 834, - 'a', 4653, - 'b', 4646, - 'e', 4598, - 'f', 4629, - 'i', 4621, - 'm', 4659, - 'n', 4660, - 'o', 4600, - 's', 4674, - 't', 4663, - 'x', 4661, - '{', 2000, + 'a', 4608, + 'b', 4601, + 'e', 4553, + 'f', 4584, + 'i', 4576, + 'm', 4614, + 'n', 4615, + 'o', 4555, + 's', 4629, + 't', 4618, + 'x', 4616, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(309); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2473); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2435); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 310: ADVANCE_MAP( - '!', 4615, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 4570, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2156, - ',', 1835, - '-', 1892, - '.', 2365, - '/', 2120, - '0', 2460, - '<', 2213, - '=', 4616, - '>', 1874, - '?', 2102, - 'I', 4692, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4622, + '(', 1806, + '*', 2051, + '+', 2118, + ',', 1802, + '-', 1859, + '.', 2327, + '/', 2082, + '0', 2422, + '<', 2175, + '=', 4571, + '>', 1841, + '?', 2064, + 'I', 4647, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4577, '`', 834, - 'a', 4653, - 'b', 4646, - 'e', 4598, - 'f', 4629, - 'i', 4621, - 'm', 4659, - 'n', 4660, - 'o', 4600, - 's', 4674, - 't', 4663, - 'x', 4661, - '{', 2000, + 'a', 4608, + 'b', 4601, + 'e', 4553, + 'f', 4584, + 'i', 4576, + 'm', 4614, + 'n', 4615, + 'o', 4555, + 's', 4629, + 't', 4618, + 'x', 4616, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(307); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2473); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2435); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '?' < lookahead) && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 311: ADVANCE_MAP( - '!', 4615, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 4570, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2156, - ',', 1835, - '-', 1892, - '.', 2365, - '/', 2120, - '0', 2460, - '<', 2213, - '=', 4616, - '>', 1874, - 'I', 4692, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4622, + '(', 1806, + '*', 2051, + '+', 2118, + ',', 1802, + '-', 1859, + '.', 2327, + '/', 2082, + '0', 2422, + '<', 2175, + '=', 4571, + '>', 1841, + 'I', 4647, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4577, '`', 834, - 'a', 4653, - 'b', 4646, - 'e', 4598, - 'f', 4629, - 'i', 4621, - 'm', 4659, - 'n', 4660, - 'o', 4600, - 's', 4674, - 't', 4663, - 'x', 4661, - '{', 2000, + 'a', 4608, + 'b', 4601, + 'e', 4553, + 'f', 4584, + 'i', 4576, + 'm', 4614, + 'n', 4615, + 'o', 4555, + 's', 4629, + 't', 4618, + 'x', 4616, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(309); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2473); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2435); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 312: ADVANCE_MAP( - '!', 4615, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 4570, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2156, - ',', 1835, - '-', 1892, - '.', 2480, - '/', 2120, - '0', 2460, - '<', 2213, - '=', 4616, - '>', 1874, - 'I', 4692, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4622, + '(', 1806, + '*', 2051, + '+', 2118, + ',', 1802, + '-', 1859, + '.', 2442, + '/', 2082, + '0', 2422, + '<', 2175, + '=', 4571, + '>', 1841, + 'I', 4647, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4577, '`', 834, - 'a', 4653, - 'b', 4646, - 'e', 4598, - 'f', 4629, - 'i', 4621, - 'm', 4659, - 'n', 4660, - 'o', 4600, - 's', 4674, - 't', 4663, - 'x', 4661, - '{', 2000, + 'a', 4608, + 'b', 4601, + 'e', 4553, + 'f', 4584, + 'i', 4576, + 'm', 4614, + 'n', 4615, + 'o', 4555, + 's', 4629, + 't', 4618, + 'x', 4616, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(309); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2473); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2435); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 313: ADVANCE_MAP( - '!', 4615, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 4570, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2156, - ',', 3211, - '-', 1892, - '.', 2364, - '/', 2120, - '0', 2460, - '<', 2213, - '=', 4616, - '>', 1874, - '?', 2102, - 'I', 4692, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4622, + '(', 1806, + '*', 2051, + '+', 2118, + ',', 3171, + '-', 1859, + '.', 2326, + '/', 2082, + '0', 2422, + '<', 2175, + '=', 4571, + '>', 1841, + '?', 2064, + 'I', 4647, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4577, '`', 834, - 'a', 4653, - 'b', 4646, - 'e', 4598, - 'f', 4629, - 'i', 4621, - 'm', 4659, - 'n', 4660, - 'o', 4600, - 's', 4674, - 't', 4663, - 'x', 4661, - '{', 2000, + 'a', 4608, + 'b', 4601, + 'e', 4553, + 'f', 4584, + 'i', 4576, + 'm', 4614, + 'n', 4615, + 'o', 4555, + 's', 4629, + 't', 4618, + 'x', 4616, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2473); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2435); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '?' < lookahead) && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 314: ADVANCE_MAP( - '!', 4615, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 4570, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2156, - ',', 3211, - '-', 1892, - '.', 2364, - '/', 2120, - '0', 2460, - '<', 2213, - '=', 4616, - '>', 1874, - 'I', 4692, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4622, + '(', 1806, + '*', 2051, + '+', 2118, + ',', 3171, + '-', 1859, + '.', 2326, + '/', 2082, + '0', 2422, + '<', 2175, + '=', 4571, + '>', 1841, + 'I', 4647, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4577, '`', 834, - 'a', 4653, - 'b', 4646, - 'e', 4598, - 'f', 4629, - 'i', 4621, - 'm', 4659, - 'n', 4660, - 'o', 4600, - 's', 4674, - 't', 4663, - 'x', 4661, - '{', 2000, + 'a', 4608, + 'b', 4601, + 'e', 4553, + 'f', 4584, + 'i', 4576, + 'm', 4614, + 'n', 4615, + 'o', 4555, + 's', 4629, + 't', 4618, + 'x', 4616, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2473); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2435); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 315: ADVANCE_MAP( - '!', 4615, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 4570, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2156, - ',', 3211, - '-', 1892, - '.', 2481, - '/', 2120, - '0', 2460, - '<', 2213, - '=', 4616, - '>', 1874, - 'I', 4692, - 'N', 4688, - '[', 2535, - ']', 1838, - '_', 4622, + '(', 1806, + '*', 2051, + '+', 2118, + ',', 3171, + '-', 1859, + '.', 2443, + '/', 2082, + '0', 2422, + '<', 2175, + '=', 4571, + '>', 1841, + 'I', 4647, + 'N', 4643, + '[', 2497, + ']', 1805, + '_', 4577, '`', 834, - 'a', 4653, - 'b', 4646, - 'e', 4598, - 'f', 4629, - 'i', 4621, - 'm', 4659, - 'n', 4660, - 'o', 4600, - 's', 4674, - 't', 4663, - 'x', 4661, - '{', 2000, + 'a', 4608, + 'b', 4601, + 'e', 4553, + 'f', 4584, + 'i', 4576, + 'm', 4614, + 'n', 4615, + 'o', 4555, + 's', 4629, + 't', 4618, + 'x', 4616, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2473); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2435); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 316: ADVANCE_MAP( - '!', 4615, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 4570, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2156, - ',', 3211, - '-', 1892, - '.', 2481, - '/', 2120, - '0', 2460, - '<', 2213, - '=', 4616, - '>', 1874, - 'I', 4692, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4622, + '(', 1806, + '*', 2051, + '+', 2118, + ',', 3171, + '-', 1859, + '.', 2443, + '/', 2082, + '0', 2422, + '<', 2175, + '=', 4571, + '>', 1841, + 'I', 4647, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4577, '`', 834, - 'a', 4653, - 'b', 4646, - 'e', 4598, - 'f', 4629, - 'i', 4621, - 'm', 4659, - 'n', 4660, - 'o', 4600, - 's', 4674, - 't', 4663, - 'x', 4661, - '{', 2000, + 'a', 4608, + 'b', 4601, + 'e', 4553, + 'f', 4584, + 'i', 4576, + 'm', 4614, + 'n', 4615, + 'o', 4555, + 's', 4629, + 't', 4618, + 'x', 4616, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2473); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2435); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 317: ADVANCE_MAP( - '!', 4615, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 4570, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2156, - ',', 3211, - '-', 1892, - '.', 2365, - '/', 2120, - '0', 2460, - '<', 2213, - '=', 4616, - '>', 1874, - '?', 2102, - 'I', 4692, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4622, + '(', 1806, + '*', 2051, + '+', 2118, + ',', 3171, + '-', 1859, + '.', 2327, + '/', 2082, + '0', 2422, + '<', 2175, + '=', 4571, + '>', 1841, + '?', 2064, + 'I', 4647, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4577, '`', 834, - 'a', 4653, - 'b', 4646, - 'e', 4598, - 'f', 4629, - 'i', 4621, - 'm', 4659, - 'n', 4660, - 'o', 4600, - 's', 4674, - 't', 4663, - 'x', 4661, - '{', 2000, + 'a', 4608, + 'b', 4601, + 'e', 4553, + 'f', 4584, + 'i', 4576, + 'm', 4614, + 'n', 4615, + 'o', 4555, + 's', 4629, + 't', 4618, + 'x', 4616, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2473); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2435); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '?' < lookahead) && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 318: ADVANCE_MAP( - '!', 4615, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 4570, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2156, - ',', 3211, - '-', 1892, - '.', 2365, - '/', 2120, - '0', 2460, - '<', 2213, - '=', 4616, - '>', 1874, - 'I', 4692, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4622, + '(', 1806, + '*', 2051, + '+', 2118, + ',', 3171, + '-', 1859, + '.', 2327, + '/', 2082, + '0', 2422, + '<', 2175, + '=', 4571, + '>', 1841, + 'I', 4647, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4577, '`', 834, - 'a', 4653, - 'b', 4646, - 'e', 4598, - 'f', 4629, - 'i', 4621, - 'm', 4659, - 'n', 4660, - 'o', 4600, - 's', 4674, - 't', 4663, - 'x', 4661, - '{', 2000, + 'a', 4608, + 'b', 4601, + 'e', 4553, + 'f', 4584, + 'i', 4576, + 'm', 4614, + 'n', 4615, + 'o', 4555, + 's', 4629, + 't', 4618, + 'x', 4616, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2473); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2435); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 319: ADVANCE_MAP( - '!', 4615, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 4570, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2156, - ',', 3211, - '-', 1892, - '.', 2480, - '/', 2120, - '0', 2460, - '<', 2213, - '=', 4616, - '>', 1874, - 'I', 4692, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4622, + '(', 1806, + '*', 2051, + '+', 2118, + ',', 3171, + '-', 1859, + '.', 2442, + '/', 2082, + '0', 2422, + '<', 2175, + '=', 4571, + '>', 1841, + 'I', 4647, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4577, '`', 834, - 'a', 4653, - 'b', 4646, - 'e', 4598, - 'f', 4629, - 'i', 4621, - 'm', 4659, - 'n', 4660, - 'o', 4600, - 's', 4674, - 't', 4663, - 'x', 4661, - '{', 2000, + 'a', 4608, + 'b', 4601, + 'e', 4553, + 'f', 4584, + 'i', 4576, + 'm', 4614, + 'n', 4615, + 'o', 4555, + 's', 4629, + 't', 4618, + 'x', 4616, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2473); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2435); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 320: ADVANCE_MAP( - '!', 4615, - '"', 2554, - '#', 4941, - '$', 1844, + '!', 4570, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '*', 2084, - '+', 2159, - ',', 1835, - '-', 1893, - '.', 2481, - '/', 2120, - '0', 2460, - '<', 2213, - '=', 4616, - '>', 1874, - 'I', 4692, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4622, + '(', 1806, + '*', 2051, + '+', 2121, + ',', 1802, + '-', 1860, + '.', 2443, + '/', 2082, + '0', 2422, + '<', 2175, + '=', 4571, + '>', 1841, + 'I', 4647, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4577, '`', 834, - 'a', 4653, - 'b', 4646, - 'e', 4598, - 'f', 4629, - 'i', 4621, - 'm', 4659, - 'n', 4660, - 'o', 4600, - 's', 4674, - 't', 4663, - 'x', 4661, - '{', 2000, + 'a', 4608, + 'b', 4601, + 'e', 4553, + 'f', 4584, + 'i', 4576, + 'm', 4614, + 'n', 4615, + 'o', 4555, + 's', 4629, + 't', 4618, + 'x', 4616, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(320); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2473); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2435); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 321: ADVANCE_MAP( - '!', 4033, - '"', 2554, - '#', 4945, - '$', 1851, + '!', 3989, + '"', 2516, + '#', 4899, + '$', 1817, '\'', 791, - '(', 1839, - '*', 2088, - '+', 2164, - ',', 3211, - '-', 1898, - '.', 2479, - '/', 2119, - '0', 4041, - '<', 2212, - '=', 4034, - '>', 1873, - 'I', 4107, - 'N', 4102, - '[', 1834, - ']', 1838, - '_', 4042, + '(', 1806, + '*', 2055, + '+', 2126, + ',', 3171, + '-', 1862, + '.', 2440, + '/', 2080, + '0', 3997, + '<', 2173, + '=', 3990, + '>', 1839, + 'I', 4063, + 'N', 4058, + '[', 1801, + ']', 1805, + '_', 3998, '`', 834, - 'a', 4068, - 'b', 4061, - 'e', 4014, - 'f', 4046, - 'i', 4039, - 'm', 4075, - 'n', 4073, - 'o', 4011, - 's', 4089, - 't', 4077, - 'x', 4074, - '{', 2000, + 'a', 4024, + 'b', 4017, + 'e', 3970, + 'f', 4002, + 'i', 3995, + 'm', 4031, + 'n', 4029, + 'o', 3967, + 's', 4045, + 't', 4033, + 'x', 4030, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4045); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4001); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != '}') ADVANCE(4129); + lookahead != '}') ADVANCE(4085); END_STATE(); case 322: ADVANCE_MAP( - '!', 4033, - '"', 2554, - '#', 4945, - '$', 1851, + '!', 3989, + '"', 2516, + '#', 4899, + '$', 1817, '\'', 791, - '(', 1839, - '*', 2088, - '+', 2164, - ',', 1837, - '-', 1898, - '.', 2479, - '/', 2119, - '0', 4041, - '<', 2212, - '=', 4034, - '>', 1873, - 'I', 4107, - 'N', 4102, - '[', 1834, - ']', 1838, - '_', 4042, + '(', 1806, + '*', 2055, + '+', 2126, + ',', 1803, + '-', 1862, + '.', 2440, + '/', 2080, + '0', 3997, + '<', 2173, + '=', 3990, + '>', 1839, + 'I', 4063, + 'N', 4058, + '[', 1801, + ']', 1805, + '_', 3998, '`', 834, - 'a', 4068, - 'b', 4061, - 'e', 4014, - 'f', 4046, - 'i', 4039, - 'm', 4075, - 'n', 4073, - 'o', 4011, - 's', 4089, - 't', 4077, - 'x', 4074, - '{', 2000, + 'a', 4024, + 'b', 4017, + 'e', 3970, + 'f', 4002, + 'i', 3995, + 'm', 4031, + 'n', 4029, + 'o', 3967, + 's', 4045, + 't', 4033, + 'x', 4030, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(309); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4045); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4001); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != '}') ADVANCE(4129); + lookahead != '}') ADVANCE(4085); END_STATE(); case 323: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 2360, + '(', 2322, '+', 805, - '-', 1902, - '.', 2481, - '0', 2458, + '-', 1869, + '.', 2443, + '0', 2420, 'N', 986, - '[', 1834, + '[', 1801, '_', 833, '`', 834, 'f', 836, 'n', 923, 't', 936, - '{', 2000, + '{', 1967, 'I', 995, 'i', 995, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(349); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); END_STATE(); case 324: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 2360, - '+', 3574, - '-', 1907, - '.', 2365, - '0', 2393, - 'N', 3670, - '[', 1834, - '_', 3582, + '(', 2322, + '+', 3533, + '-', 1874, + '.', 2327, + '0', 2355, + 'N', 3628, + '[', 1801, + '_', 3541, '`', 834, - 'f', 3587, - 'n', 3643, - 't', 3654, - '{', 2000, - 'I', 3674, - 'i', 3674, - '<', 3791, - '=', 3791, + 'f', 3546, + 'n', 3601, + 't', 3612, + '{', 1967, + 'I', 3632, + 'i', 3632, + '<', 3748, + '=', 3748, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(363); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < ';' || '=' < lookahead) && lookahead != ']' && - lookahead != '}') ADVANCE(3566); + lookahead != '}') ADVANCE(3525); END_STATE(); case 325: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 2360, - '+', 3450, - '-', 1907, - '.', 2365, - '0', 2393, - 'N', 3559, - '[', 1834, - '_', 3466, + '(', 2322, + '+', 3410, + '-', 1874, + '.', 2327, + '0', 2355, + 'N', 3518, + '[', 1801, + '_', 3426, '`', 834, - 'f', 3476, - 'n', 3532, - 't', 3543, - '{', 2000, - 'I', 3563, - 'i', 3563, + 'f', 3436, + 'n', 3491, + 't', 3502, + '{', 1967, + 'I', 3522, + 'i', 3522, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(363); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 326: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 2360, - '+', 3685, - '-', 1907, - '.', 2365, - '0', 2393, - 'N', 3784, - '[', 1834, - '_', 3696, + '(', 2322, + '+', 3769, + '-', 1869, + '.', 2326, + '0', 2355, + 'E', 3801, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'N', 3960, + 'P', 3805, + 'T', 3805, + '[', 1801, + '_', 3824, '`', 834, - 'f', 3701, - 'n', 3757, - 't', 3768, - '{', 2000, - 'I', 3788, - 'i', 3788, + 'd', 3840, + 'e', 3800, + 'f', 3841, + 'g', 3804, + 'h', 3936, + 'k', 3804, + 'm', 3807, + 'n', 3921, + 'p', 3804, + 's', 3858, + 't', 3803, + 'u', 3946, + 'w', 3881, + '{', 1967, + 0xb5, 3946, + 'B', 2469, + 'b', 2469, + 'I', 3964, + 'i', 3964, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(363); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); + lookahead == ' ') SKIP(349); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - lookahead != '}') ADVANCE(3677); + lookahead != '}') ADVANCE(3748); END_STATE(); case 327: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 2360, - '+', 3812, - '-', 1902, - '.', 2364, - '0', 2393, - 'E', 3844, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'N', 4004, - 'P', 3848, - 'T', 3848, - '[', 1834, - '_', 3867, + '(', 2322, + '+', 3769, + '-', 1869, + '.', 2326, + '0', 3827, + 'E', 3801, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'N', 3960, + 'P', 3805, + 'T', 3805, + '[', 1801, + '_', 3826, '`', 834, - 'd', 3883, - 'e', 3843, - 'f', 3884, - 'g', 3847, - 'h', 3980, - 'k', 3847, - 'm', 3850, - 'n', 3965, - 'p', 3847, - 's', 3901, - 't', 3846, - 'u', 3990, - 'w', 3924, - '{', 2000, - 0xb5, 3990, - 'B', 2507, - 'b', 2507, - 'I', 4008, - 'i', 4008, + 'd', 3840, + 'e', 3800, + 'f', 3841, + 'g', 3804, + 'h', 3936, + 'k', 3804, + 'm', 3807, + 'n', 3921, + 'p', 3804, + 's', 3858, + 't', 3803, + 'u', 3946, + 'w', 3881, + '{', 1967, + 0xb5, 3946, + 'B', 2469, + 'b', 2469, + 'I', 3964, + 'i', 3964, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(349); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3831); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - lookahead != '}') ADVANCE(3791); + lookahead != '}') ADVANCE(3748); END_STATE(); case 328: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 2360, - '+', 3812, - '-', 1902, - '.', 2364, - '0', 3870, - 'E', 3844, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'N', 4004, - 'P', 3848, - 'T', 3848, - '[', 1834, - '_', 3869, + '(', 2322, + '+', 3769, + '-', 1869, + '.', 2326, + '0', 3827, + 'E', 3805, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'N', 3960, + 'P', 3805, + 'T', 3805, + '[', 1801, + '_', 3826, '`', 834, - 'd', 3883, - 'e', 3843, - 'f', 3884, - 'g', 3847, - 'h', 3980, - 'k', 3847, - 'm', 3850, - 'n', 3965, - 'p', 3847, - 's', 3901, - 't', 3846, - 'u', 3990, - 'w', 3924, - '{', 2000, - 0xb5, 3990, - 'B', 2507, - 'b', 2507, - 'I', 4008, - 'i', 4008, + 'd', 3840, + 'e', 3804, + 'f', 3841, + 'g', 3804, + 'h', 3936, + 'k', 3804, + 'm', 3807, + 'n', 3921, + 'p', 3804, + 's', 3858, + 't', 3803, + 'u', 3946, + 'w', 3881, + '{', 1967, + 0xb5, 3946, + 'B', 2469, + 'b', 2469, + 'I', 3964, + 'i', 3964, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(349); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3874); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3831); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - lookahead != '}') ADVANCE(3791); + lookahead != '}') ADVANCE(3748); END_STATE(); case 329: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 2360, - '+', 3812, - '-', 1902, - '.', 2364, - '0', 3870, - 'E', 3848, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'N', 4004, - 'P', 3848, - 'T', 3848, - '[', 1834, - '_', 3869, + '(', 2322, + '+', 3643, + '-', 1874, + '.', 2327, + '0', 2355, + 'N', 3741, + '[', 1801, + '_', 3654, '`', 834, - 'd', 3883, - 'e', 3847, - 'f', 3884, - 'g', 3847, - 'h', 3980, - 'k', 3847, - 'm', 3850, - 'n', 3965, - 'p', 3847, - 's', 3901, - 't', 3846, - 'u', 3990, - 'w', 3924, - '{', 2000, - 0xb5, 3990, - 'B', 2507, - 'b', 2507, - 'I', 4008, - 'i', 4008, + 'f', 3659, + 'n', 3714, + 't', 3725, + '{', 1967, + 'I', 3745, + 'i', 3745, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(349); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3874); + lookahead == ' ') SKIP(363); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - lookahead != '}') ADVANCE(3791); + lookahead != '}') ADVANCE(3635); END_STATE(); case 330: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 2360, + '(', 2322, '+', 809, - '-', 1907, - '.', 2365, - '0', 2393, + '-', 1874, + '.', 2327, + '0', 2355, 'N', 986, - '[', 1834, + '[', 1801, '_', 832, '`', 834, 'f', 836, 'n', 923, 't', 936, - '{', 2000, + '{', 1967, 'I', 995, 'i', 995, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(363); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); END_STATE(); case 331: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 2360, - '+', 3449, - '-', 1902, - '.', 2364, - '0', 2393, - 'N', 3559, - '[', 1834, - '_', 3466, + '(', 2322, + '+', 3409, + '-', 1869, + '.', 2326, + '0', 2355, + 'N', 3518, + '[', 1801, + '_', 3426, '`', 834, - 'f', 3476, - 'n', 3532, - 't', 3543, - '{', 2000, - 'E', 3461, - 'e', 3461, - 'I', 3563, - 'i', 3563, + 'f', 3436, + 'n', 3491, + 't', 3502, + '{', 1967, + 'E', 3421, + 'e', 3421, + 'I', 3522, + 'i', 3522, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(349); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 332: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 2360, - '+', 3449, - '-', 1902, - '.', 2364, - '0', 3469, - 'N', 3559, - '[', 1834, - '_', 3468, + '(', 2322, + '+', 3409, + '-', 1869, + '.', 2326, + '0', 3429, + 'N', 3518, + '[', 1801, + '_', 3428, '`', 834, - 'f', 3476, - 'n', 3532, - 't', 3543, - '{', 2000, - 'E', 3461, - 'e', 3461, - 'I', 3563, - 'i', 3563, + 'f', 3436, + 'n', 3491, + 't', 3502, + '{', 1967, + 'E', 3421, + 'e', 3421, + 'I', 3522, + 'i', 3522, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(349); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3471); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3431); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 333: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 2360, - '+', 3449, - '-', 1902, - '.', 2364, - '0', 3469, - 'N', 3559, - '[', 1834, - '_', 3468, + '(', 2322, + '+', 3409, + '-', 1869, + '.', 2326, + '0', 3429, + 'N', 3518, + '[', 1801, + '_', 3428, '`', 834, - 'f', 3476, - 'n', 3532, - 't', 3543, - '{', 2000, - 'I', 3563, - 'i', 3563, + 'f', 3436, + 'n', 3491, + 't', 3502, + '{', 1967, + 'I', 3522, + 'i', 3522, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(349); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3471); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3431); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 334: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 2360, - '+', 3449, - '-', 1902, - '.', 2481, - '0', 2393, - 'N', 3559, - '[', 1834, - '_', 3466, + '(', 2322, + '+', 3409, + '-', 1869, + '.', 2443, + '0', 2355, + 'N', 3518, + '[', 1801, + '_', 3426, '`', 834, - 'f', 3476, - 'n', 3532, - 't', 3543, - '{', 2000, - 'I', 3563, - 'i', 3563, + 'f', 3436, + 'n', 3491, + 't', 3502, + '{', 1967, + 'I', 3522, + 'i', 3522, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(349); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 335: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 2360, - '+', 3449, - '-', 1902, - '.', 2365, - '0', 2393, - 'N', 3559, - '[', 1834, - '_', 3466, + '(', 2322, + '+', 3409, + '-', 1869, + '.', 2327, + '0', 2355, + 'N', 3518, + '[', 1801, + '_', 3426, '`', 834, - 'f', 3476, - 'n', 3532, - 't', 3543, - '{', 2000, - 'E', 3461, - 'e', 3461, - 'I', 3563, - 'i', 3563, + 'f', 3436, + 'n', 3491, + 't', 3502, + '{', 1967, + 'E', 3421, + 'e', 3421, + 'I', 3522, + 'i', 3522, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(349); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 336: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 2360, - '+', 3449, - '-', 1902, - '.', 2365, - '0', 2393, - 'N', 3559, - '[', 1834, - '_', 3466, + '(', 2322, + '+', 3409, + '-', 1869, + '.', 2327, + '0', 2355, + 'N', 3518, + '[', 1801, + '_', 3426, '`', 834, - 'f', 3476, - 'n', 3532, - 't', 3543, - '{', 2000, - 'I', 3563, - 'i', 3563, + 'f', 3436, + 'n', 3491, + 't', 3502, + '{', 1967, + 'I', 3522, + 'i', 3522, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(349); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 337: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 2360, - '+', 3449, - '-', 1902, - '.', 2365, - '0', 3469, - 'N', 3559, - '[', 1834, - '_', 3468, + '(', 2322, + '+', 3409, + '-', 1869, + '.', 2327, + '0', 3429, + 'N', 3518, + '[', 1801, + '_', 3428, '`', 834, - 'f', 3476, - 'n', 3532, - 't', 3543, - '{', 2000, - 'E', 3461, - 'e', 3461, - 'I', 3563, - 'i', 3563, + 'f', 3436, + 'n', 3491, + 't', 3502, + '{', 1967, + 'E', 3421, + 'e', 3421, + 'I', 3522, + 'i', 3522, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(349); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3471); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3431); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 338: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 2360, - '+', 3449, - '-', 1902, - '.', 2365, - '0', 3469, - 'N', 3559, - '[', 1834, - '_', 3468, + '(', 2322, + '+', 3409, + '-', 1869, + '.', 2327, + '0', 3429, + 'N', 3518, + '[', 1801, + '_', 3428, '`', 834, - 'f', 3476, - 'n', 3532, - 't', 3543, - '{', 2000, - 'I', 3563, - 'i', 3563, + 'f', 3436, + 'n', 3491, + 't', 3502, + '{', 1967, + 'I', 3522, + 'i', 3522, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(349); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3471); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3431); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 339: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, + '(', 1806, + ')', 1807, '+', 805, - '-', 1902, - '.', 2481, - '0', 2458, + '-', 1869, + '.', 2443, + '0', 2420, '=', 816, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1350, + 'I', 1523, + 'N', 1517, + '[', 1801, + '^', 3206, + '_', 1320, '`', 834, - 'a', 1441, - 'b', 1492, - 'c', 1465, - 'd', 1379, - 'e', 1494, - 'f', 1357, - 'h', 1424, - 'i', 1410, - 'l', 1381, - 'm', 1360, - 'n', 1471, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1483, - 'u', 1508, - 'w', 1414, - '{', 2000, - '|', 1841, + 'a', 1409, + 'b', 1459, + 'c', 1433, + 'd', 1349, + 'e', 1461, + 'f', 1327, + 'h', 1393, + 'i', 1380, + 'l', 1351, + 'm', 1330, + 'n', 1439, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1450, + 'u', 1475, + 'w', 1383, + '{', 1967, + '|', 1808, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(339); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); case 340: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, + '(', 1806, '+', 805, - '-', 1902, - '.', 2364, - '0', 2458, - '?', 2102, + '-', 1869, + '.', 2326, + '0', 2420, + '?', 2064, 'N', 986, - '[', 1834, + '[', 1801, '_', 833, '`', 834, 'f', 836, 'n', 923, 't', 936, - '{', 2000, + '{', 1967, 'E', 829, 'e', 829, 'I', 995, @@ -29601,56 +29139,56 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(344); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); END_STATE(); case 341: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, + '(', 1806, '+', 805, - '-', 1902, - '.', 2481, - '0', 2458, - ':', 1830, - 'N', 1643, - '[', 1834, - '_', 1576, + '-', 1869, + '.', 2443, + '0', 2420, + ':', 1797, + 'N', 1610, + '[', 1801, + '_', 1543, '`', 834, - 'f', 1580, - 'n', 1610, - 't', 1618, - '{', 2000, - 'I', 1649, - 'i', 1649, + 'f', 1547, + 'n', 1577, + 't', 1585, + '{', 1967, + 'I', 1616, + 'i', 1616, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(341); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 342: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, + '(', 1806, '+', 805, - '-', 1902, - '.', 2481, - '0', 2458, - '=', 1301, + '-', 1869, + '.', 2443, + '0', 2420, + '=', 1271, 'N', 986, - '[', 1834, + '[', 1801, '_', 833, '`', 834, 'f', 836, 'n', 923, 't', 936, - '{', 2000, + '{', 1967, 'E', 829, 'e', 829, 'I', 995, @@ -29658,250 +29196,250 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(343); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); END_STATE(); case 343: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, + '(', 1806, '+', 805, - '-', 1902, - '.', 2481, - '0', 2458, - '=', 1301, + '-', 1869, + '.', 2443, + '0', 2420, + '=', 1271, 'N', 986, - '[', 1834, + '[', 1801, '_', 833, '`', 834, 'f', 836, 'n', 923, 't', 936, - '{', 2000, + '{', 1967, 'I', 995, 'i', 995, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(343); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); END_STATE(); case 344: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, + '(', 1806, '+', 805, - '-', 1902, - '.', 2481, - '0', 2458, - '?', 2102, + '-', 1869, + '.', 2443, + '0', 2420, + '?', 2064, 'N', 986, - '[', 1834, + '[', 1801, '_', 833, '`', 834, 'f', 836, 'n', 923, 't', 936, - '{', 2000, + '{', 1967, 'I', 995, 'i', 995, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(344); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); END_STATE(); case 345: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, + '(', 1806, '+', 805, - '-', 1902, - '.', 2481, - '0', 2458, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1350, + '-', 1869, + '.', 2443, + '0', 2420, + 'I', 1523, + 'N', 1517, + '[', 1801, + '^', 3206, + '_', 1320, '`', 834, - 'b', 1492, - 'c', 1477, - 'd', 1466, - 'f', 1358, - 'i', 1410, - 'm', 1362, - 'n', 1471, - 'r', 1407, - 't', 1483, - 'w', 1422, - '{', 2000, - '|', 1841, + 'b', 1459, + 'c', 1444, + 'd', 1434, + 'f', 1328, + 'i', 1380, + 'm', 1332, + 'n', 1439, + 'r', 1377, + 't', 1450, + 'w', 1391, + '{', 1967, + '|', 1808, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(345); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); case 346: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, + '(', 1806, '+', 805, - '-', 1902, - '.', 2481, - '0', 2458, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1350, + '-', 1869, + '.', 2443, + '0', 2420, + 'I', 1523, + 'N', 1517, + '[', 1801, + '^', 3206, + '_', 1320, '`', 834, - 'f', 1358, - 'i', 1410, - 'n', 1471, - 't', 1503, - '{', 2000, + 'f', 1328, + 'i', 1380, + 'n', 1439, + 't', 1470, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(346); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); case 347: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, + '(', 1806, '+', 805, - '-', 1902, - '.', 2481, - '0', 2458, - 'N', 1550, - '[', 1834, - '_', 1350, + '-', 1869, + '.', 2443, + '0', 2420, + 'N', 1517, + '[', 1801, + '_', 1320, '`', 834, - 'f', 1358, - 'n', 1471, - 't', 1503, - '{', 2000, - 'I', 1556, - 'i', 1556, + 'f', 1328, + 'n', 1439, + 't', 1470, + '{', 1967, + 'I', 1523, + 'i', 1523, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(347); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); case 348: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, + '(', 1806, '+', 805, - '-', 1902, - '.', 2481, - '0', 2458, + '-', 1869, + '.', 2443, + '0', 2420, 'N', 986, - '[', 2535, + '[', 2497, '_', 833, '`', 834, 'f', 836, 'n', 923, 't', 936, - '{', 2000, + '{', 1967, 'I', 995, 'i', 995, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(349); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); END_STATE(); case 349: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, + '(', 1806, '+', 805, - '-', 1902, - '.', 2481, - '0', 2458, + '-', 1869, + '.', 2443, + '0', 2420, 'N', 986, - '[', 1834, + '[', 1801, '_', 833, '`', 834, 'f', 836, 'n', 923, 't', 936, - '{', 2000, + '{', 1967, 'I', 995, 'i', 995, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(349); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); END_STATE(); case 350: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, + '(', 1806, '+', 805, - '-', 1902, - '.', 2481, - '0', 2458, - 'N', 1776, - '[', 1834, - '_', 1660, + '-', 1869, + '.', 2443, + '0', 2420, + 'N', 1743, + '[', 1801, + '_', 1627, '`', 834, - 'f', 1664, - 'n', 1726, - 't', 1736, - '{', 2000, - 'I', 1786, - 'i', 1786, + 'f', 1631, + 'n', 1693, + 't', 1703, + '{', 1967, + 'I', 1753, + 'i', 1753, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(349); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1794); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1761); END_STATE(); case 351: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, + '(', 1806, '+', 805, - '-', 1902, - '.', 2481, - '0', 2393, + '-', 1869, + '.', 2443, + '0', 2355, 'N', 986, - '[', 1834, + '[', 1801, '_', 832, '`', 834, 'f', 836, 'n', 923, 't', 936, - '{', 2000, + '{', 1967, 'E', 829, 'e', 829, 'I', 995, @@ -29909,28 +29447,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(349); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); END_STATE(); case 352: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, + '(', 1806, '+', 805, - '-', 1902, - '.', 2365, - '0', 2458, - '?', 2102, + '-', 1869, + '.', 2327, + '0', 2420, + '?', 2064, 'N', 986, - '[', 1834, + '[', 1801, '_', 833, '`', 834, 'f', 836, 'n', 923, 't', 936, - '{', 2000, + '{', 1967, 'E', 829, 'e', 829, 'I', 995, @@ -29938,27 +29476,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(344); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); END_STATE(); case 353: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, + '(', 1806, '+', 805, - '-', 1902, - '.', 2480, - '0', 2458, + '-', 1869, + '.', 2442, + '0', 2420, 'N', 986, - '[', 1834, + '[', 1801, '_', 833, '`', 834, 'f', 836, 'n', 923, 't', 936, - '{', 2000, + '{', 1967, 'E', 829, 'e', 829, 'I', 995, @@ -29966,27 +29504,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(349); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); END_STATE(); case 354: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, + '(', 1806, '+', 805, - '-', 1902, - '.', 2480, - '0', 2393, + '-', 1869, + '.', 2442, + '0', 2355, 'N', 986, - '[', 1834, + '[', 1801, '_', 832, '`', 834, 'f', 836, 'n', 923, 't', 936, - '{', 2000, + '{', 1967, 'E', 829, 'e', 829, 'I', 995, @@ -29994,22 +29532,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(349); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); END_STATE(); case 355: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, + '(', 1806, '+', 805, - '-', 1892, - '.', 2481, - '0', 2458, - ':', 1830, + '-', 1859, + '.', 2443, + '0', 2420, + ':', 1797, 'N', 986, - '[', 1834, + '[', 1801, '_', 833, '`', 834, 'a', 900, @@ -30021,7664 +29559,7664 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'n', 923, 't', 936, 'u', 946, - '{', 2000, + '{', 1967, 'I', 995, 'i', 995, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(355); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); END_STATE(); case 356: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - '+', 2174, - '-', 1906, - '.', 2481, - '0', 2459, - 'I', 1556, - 'N', 1550, - '[', 1834, - ']', 1838, - '^', 3246, - '_', 1350, + '(', 1806, + '+', 2136, + '-', 1873, + '.', 2443, + '0', 2421, + 'I', 1523, + 'N', 1517, + '[', 1801, + ']', 1805, + '^', 3206, + '_', 1320, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1366, - 'd', 1379, - 'e', 1448, - 'f', 1357, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1355, - 'n', 1392, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1483, - 'u', 1508, - 'w', 1414, - '{', 2000, - '|', 1841, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1336, + 'd', 1349, + 'e', 1416, + 'f', 1327, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1325, + 'n', 1362, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1450, + 'u', 1475, + 'w', 1383, + '{', 1967, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(356); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2472); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2434); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || ';' < lookahead)) ADVANCE(3244); + (lookahead < '0' || ';' < lookahead)) ADVANCE(3204); END_STATE(); case 357: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - '+', 3322, - '-', 1902, - '.', 2481, - '0', 2461, - ':', 1830, - 'N', 3413, - '[', 1834, - '_', 3339, + '(', 1806, + '+', 3282, + '-', 1869, + '.', 2443, + '0', 2423, + ':', 1797, + 'N', 3373, + '[', 1801, + '_', 3299, '`', 834, - 'e', 3310, - 'f', 3346, - 'n', 3384, - 'o', 3312, - 't', 3385, - '{', 2000, - 'I', 3418, - 'i', 3418, + 'e', 3270, + 'f', 3306, + 'n', 3344, + 'o', 3272, + 't', 3345, + '{', 1967, + 'I', 3378, + 'i', 3378, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(357); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2474); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2436); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && lookahead != ']' && - lookahead != '}') ADVANCE(3436); + lookahead != '}') ADVANCE(3396); END_STATE(); case 358: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - '+', 3322, - '-', 1902, - '.', 2481, - '0', 2461, - 'N', 3413, - '[', 1834, - '_', 3339, + '(', 1806, + '+', 3282, + '-', 1869, + '.', 2443, + '0', 2423, + 'N', 3373, + '[', 1801, + '_', 3299, '`', 834, - 'e', 3310, - 'f', 3346, - 'n', 3384, - 'o', 3312, - 't', 3385, - '{', 2000, - 'I', 3418, - 'i', 3418, + 'e', 3270, + 'f', 3306, + 'n', 3344, + 'o', 3272, + 't', 3345, + '{', 1967, + 'I', 3378, + 'i', 3378, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(358); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2474); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2436); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - lookahead != '}') ADVANCE(3436); + lookahead != '}') ADVANCE(3396); END_STATE(); case 359: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - '+', 3322, - '-', 1892, - '.', 2481, - '0', 2461, - 'N', 3413, - '[', 1834, - '_', 3339, + '(', 1806, + '+', 3282, + '-', 1859, + '.', 2443, + '0', 2423, + 'N', 3373, + '[', 1801, + '_', 3299, '`', 834, - 'e', 3310, - 'f', 3346, - 'n', 3407, - 'o', 3312, - 't', 3385, - '{', 2000, - 'I', 3418, - 'i', 3418, + 'e', 3270, + 'f', 3306, + 'n', 3367, + 'o', 3272, + 't', 3345, + '{', 1967, + 'I', 3378, + 'i', 3378, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(359); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2474); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2436); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - lookahead != '}') ADVANCE(3436); + lookahead != '}') ADVANCE(3396); END_STATE(); case 360: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - '+', 3322, + '(', 1806, + '+', 3282, '-', 803, - '.', 2481, - ':', 1830, - 'N', 3413, - '_', 3339, + '.', 2443, + ':', 1797, + 'N', 3373, + '_', 3299, '`', 834, - 'e', 3310, - 'f', 3346, - 'n', 3407, - 'o', 3312, - 't', 3385, - 'I', 3418, - 'i', 3418, + 'e', 3270, + 'f', 3306, + 'n', 3367, + 'o', 3272, + 't', 3345, + 'I', 3378, + 'i', 3378, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(360); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2474); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2436); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && lookahead != '[' && lookahead != ']' && lookahead != '{' && - lookahead != '}') ADVANCE(3436); + lookahead != '}') ADVANCE(3396); END_STATE(); case 361: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - '+', 3322, + '(', 1806, + '+', 3282, '-', 804, - '.', 2481, - 'N', 3413, - '_', 3339, + '.', 2443, + 'N', 3373, + '_', 3299, '`', 834, - 'e', 3310, - 'f', 3346, - 'n', 3407, - 'o', 3312, - 't', 3385, - 'I', 3418, - 'i', 3418, + 'e', 3270, + 'f', 3306, + 'n', 3367, + 'o', 3272, + 't', 3345, + 'I', 3378, + 'i', 3378, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(361); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2474); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2436); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '[' && lookahead != ']' && lookahead != '{' && - lookahead != '}') ADVANCE(3436); + lookahead != '}') ADVANCE(3396); END_STATE(); case 362: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - '+', 3812, - '-', 1902, - '.', 2481, - '0', 3870, - 'N', 4004, - '[', 1834, - '_', 3869, + '(', 1806, + '+', 3769, + '-', 1869, + '.', 2443, + '0', 3827, + 'N', 3960, + '[', 1801, + '_', 3826, '`', 834, - 'f', 3884, - 'n', 3966, - 't', 3982, - '{', 2000, - 'I', 4008, - 'i', 4008, + 'f', 3841, + 'n', 3922, + 't', 3938, + '{', 1967, + 'I', 3964, + 'i', 3964, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(349); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3874); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3831); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - lookahead != '}') ADVANCE(3791); + lookahead != '}') ADVANCE(3748); END_STATE(); case 363: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, + '(', 1806, '+', 809, - '-', 1907, - '.', 2481, - '0', 2458, + '-', 1874, + '.', 2443, + '0', 2420, 'N', 986, - '[', 1834, + '[', 1801, '_', 833, '`', 834, 'f', 836, 'n', 923, 't', 936, - '{', 2000, + '{', 1967, 'I', 995, 'i', 995, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(363); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); END_STATE(); case 364: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2481, - '0', 2460, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4622, + '(', 1806, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2443, + '0', 2422, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4577, '`', 834, - 'e', 4599, - 'f', 4629, - 'n', 4682, - 'o', 4601, - 't', 4663, - '{', 2000, - 'I', 4692, - 'i', 4692, + 'e', 4554, + 'f', 4584, + 'n', 4637, + 'o', 4556, + 't', 4618, + '{', 1967, + 'I', 4647, + 'i', 4647, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(364); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2473); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2435); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 365: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - '+', 3449, - '-', 1902, - '.', 2364, - '0', 2393, - 'N', 3559, - '[', 1834, - '_', 3466, + '(', 1806, + '+', 3409, + '-', 1869, + '.', 2326, + '0', 2355, + 'N', 3518, + '[', 1801, + '_', 3426, '`', 834, - 'f', 3476, - 'n', 3532, - 't', 3543, - '{', 2000, - 'E', 3461, - 'e', 3461, - 'I', 3563, - 'i', 3563, + 'f', 3436, + 'n', 3491, + 't', 3502, + '{', 1967, + 'E', 3421, + 'e', 3421, + 'I', 3522, + 'i', 3522, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(349); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 366: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - '+', 3449, - '-', 1902, - '.', 2364, - '0', 3469, - 'N', 3559, - '[', 1834, - '_', 3468, + '(', 1806, + '+', 3409, + '-', 1869, + '.', 2326, + '0', 3429, + 'N', 3518, + '[', 1801, + '_', 3428, '`', 834, - 'f', 3476, - 'n', 3532, - 't', 3543, - '{', 2000, - 'E', 3461, - 'e', 3461, - 'I', 3563, - 'i', 3563, + 'f', 3436, + 'n', 3491, + 't', 3502, + '{', 1967, + 'E', 3421, + 'e', 3421, + 'I', 3522, + 'i', 3522, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(349); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3471); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3431); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 367: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - '+', 3449, - '-', 1902, - '.', 2364, - '0', 3469, - 'N', 3559, - '[', 1834, - '_', 3468, + '(', 1806, + '+', 3409, + '-', 1869, + '.', 2326, + '0', 3429, + 'N', 3518, + '[', 1801, + '_', 3428, '`', 834, - 'f', 3476, - 'n', 3532, - 't', 3543, - '{', 2000, - 'I', 3563, - 'i', 3563, + 'f', 3436, + 'n', 3491, + 't', 3502, + '{', 1967, + 'I', 3522, + 'i', 3522, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(349); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3471); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3431); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 368: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - '+', 3449, - '-', 1902, - '.', 2481, - '0', 2393, - 'N', 3559, - '[', 1834, - '_', 3466, + '(', 1806, + '+', 3409, + '-', 1869, + '.', 2443, + '0', 2355, + 'N', 3518, + '[', 1801, + '_', 3426, '`', 834, - 'f', 3476, - 'n', 3532, - 't', 3543, - '{', 2000, - 'I', 3563, - 'i', 3563, + 'f', 3436, + 'n', 3491, + 't', 3502, + '{', 1967, + 'I', 3522, + 'i', 3522, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(349); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 369: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - '+', 3449, - '-', 1902, - '.', 2365, - '0', 2393, - 'N', 3559, - '[', 1834, - '_', 3466, + '(', 1806, + '+', 3409, + '-', 1869, + '.', 2327, + '0', 2355, + 'N', 3518, + '[', 1801, + '_', 3426, '`', 834, - 'f', 3476, - 'n', 3532, - 't', 3543, - '{', 2000, - 'E', 3461, - 'e', 3461, - 'I', 3563, - 'i', 3563, + 'f', 3436, + 'n', 3491, + 't', 3502, + '{', 1967, + 'E', 3421, + 'e', 3421, + 'I', 3522, + 'i', 3522, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(349); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 370: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - '+', 3449, - '-', 1902, - '.', 2365, - '0', 2393, - 'N', 3559, - '[', 1834, - '_', 3466, + '(', 1806, + '+', 3409, + '-', 1869, + '.', 2327, + '0', 2355, + 'N', 3518, + '[', 1801, + '_', 3426, '`', 834, - 'f', 3476, - 'n', 3532, - 't', 3543, - '{', 2000, - 'I', 3563, - 'i', 3563, + 'f', 3436, + 'n', 3491, + 't', 3502, + '{', 1967, + 'I', 3522, + 'i', 3522, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(349); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 371: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - '+', 3449, - '-', 1902, - '.', 2365, - '0', 3469, - 'N', 3559, - '[', 1834, - '_', 3468, + '(', 1806, + '+', 3409, + '-', 1869, + '.', 2327, + '0', 3429, + 'N', 3518, + '[', 1801, + '_', 3428, '`', 834, - 'f', 3476, - 'n', 3532, - 't', 3543, - '{', 2000, - 'E', 3461, - 'e', 3461, - 'I', 3563, - 'i', 3563, + 'f', 3436, + 'n', 3491, + 't', 3502, + '{', 1967, + 'E', 3421, + 'e', 3421, + 'I', 3522, + 'i', 3522, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(349); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3471); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3431); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 372: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - '+', 3449, - '-', 1902, - '.', 2365, - '0', 3469, - 'N', 3559, - '[', 1834, - '_', 3468, + '(', 1806, + '+', 3409, + '-', 1869, + '.', 2327, + '0', 3429, + 'N', 3518, + '[', 1801, + '_', 3428, '`', 834, - 'f', 3476, - 'n', 3532, - 't', 3543, - '{', 2000, - 'I', 3563, - 'i', 3563, + 'f', 3436, + 'n', 3491, + 't', 3502, + '{', 1967, + 'I', 3522, + 'i', 3522, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(349); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3471); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3431); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 373: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 3574, - '-', 3573, - '.', 2363, - '_', 3580, + '(', 2322, + '+', 3533, + '-', 3532, + '.', 2325, + '_', 3539, '`', 834, - '<', 3791, - '=', 3791, + '<', 3748, + '=', 3748, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(549); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3676); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3634); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < ';' || '=' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3566); + lookahead != '}') ADVANCE(3525); END_STATE(); case 374: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 3450, - '-', 3448, - '.', 2363, - '_', 3463, + '(', 2322, + '+', 3410, + '-', 3408, + '.', 2325, + '_', 3423, '`', 834, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(549); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3565); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3524); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 375: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 3685, - '-', 3684, - '.', 2363, - '_', 3694, + '(', 2322, + '+', 3643, + '-', 3642, + '.', 2325, + '_', 3652, '`', 834, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(549); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3790); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3747); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3677); + lookahead != '}') ADVANCE(3635); END_STATE(); case 376: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, + '(', 2322, '+', 809, '-', 793, - '.', 2363, - '_', 1352, + '.', 2325, + '_', 1322, '`', 834, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(549); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); case 377: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2364, - '0', 2394, - 'E', 3831, - 'G', 3834, - 'K', 3834, - 'M', 3834, - 'N', 4002, - 'P', 3834, - 'T', 3834, - '[', 1834, - ']', 1838, - '_', 3868, + '(', 2322, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2326, + '0', 2356, + 'E', 3788, + 'G', 3791, + 'K', 3791, + 'M', 3791, + 'N', 3958, + 'P', 3791, + 'T', 3791, + '[', 1801, + ']', 1805, + '_', 3825, '`', 834, - 'd', 3881, - 'e', 3802, - 'f', 3879, - 'g', 3833, - 'h', 3980, - 'k', 3833, - 'm', 3836, - 'n', 3991, - 'o', 3797, - 'p', 3833, - 's', 3898, - 't', 3832, - 'u', 3990, - 'w', 3924, - '{', 2000, - 0xb5, 3990, - 'B', 2507, - 'b', 2507, - 'I', 4006, - 'i', 4006, + 'd', 3838, + 'e', 3759, + 'f', 3836, + 'g', 3790, + 'h', 3936, + 'k', 3790, + 'm', 3793, + 'n', 3947, + 'o', 3754, + 'p', 3790, + 's', 3855, + 't', 3789, + 'u', 3946, + 'w', 3881, + '{', 1967, + 0xb5, 3946, + 'B', 2469, + 'b', 2469, + 'I', 3962, + 'i', 3962, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(502); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3791); + lookahead != '}') ADVANCE(3748); END_STATE(); case 378: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2364, - '0', 2394, - 'E', 3464, - 'N', 3557, - '[', 1834, - ']', 1838, - '_', 3467, + '(', 2322, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2326, + '0', 2356, + 'E', 3424, + 'N', 3516, + '[', 1801, + ']', 1805, + '_', 3427, '`', 834, - 'e', 3444, - 'f', 3474, - 'n', 3554, - 'o', 3441, - 't', 3540, - '{', 2000, - 'I', 3561, - 'i', 3561, + 'e', 3404, + 'f', 3434, + 'n', 3513, + 'o', 3401, + 't', 3499, + '{', 1967, + 'I', 3520, + 'i', 3520, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(502); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 379: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2364, - '0', 3871, - 'E', 3831, - 'G', 3834, - 'K', 3834, - 'M', 3834, - 'N', 4002, - 'P', 3834, - 'T', 3834, - '[', 1834, - ']', 1838, - '_', 3864, + '(', 2322, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2326, + '0', 3828, + 'E', 3788, + 'G', 3791, + 'K', 3791, + 'M', 3791, + 'N', 3958, + 'P', 3791, + 'T', 3791, + '[', 1801, + ']', 1805, + '_', 3821, '`', 834, - 'd', 3881, - 'e', 3802, - 'f', 3879, - 'g', 3833, - 'h', 3980, - 'k', 3833, - 'm', 3836, - 'n', 3991, - 'o', 3797, - 'p', 3833, - 's', 3898, - 't', 3832, - 'u', 3990, - 'w', 3924, - '{', 2000, - 0xb5, 3990, - 'B', 2507, - 'b', 2507, - 'I', 4006, - 'i', 4006, + 'd', 3838, + 'e', 3759, + 'f', 3836, + 'g', 3790, + 'h', 3936, + 'k', 3790, + 'm', 3793, + 'n', 3947, + 'o', 3754, + 'p', 3790, + 's', 3855, + 't', 3789, + 'u', 3946, + 'w', 3881, + '{', 1967, + 0xb5, 3946, + 'B', 2469, + 'b', 2469, + 'I', 3962, + 'i', 3962, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(502); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3875); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3832); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3791); + lookahead != '}') ADVANCE(3748); END_STATE(); case 380: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2364, - '0', 3871, - 'E', 3834, - 'G', 3834, - 'K', 3834, - 'M', 3834, - 'N', 4002, - 'P', 3834, - 'T', 3834, - '[', 1834, - ']', 1838, - '_', 3864, + '(', 2322, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2326, + '0', 3828, + 'E', 3791, + 'G', 3791, + 'K', 3791, + 'M', 3791, + 'N', 3958, + 'P', 3791, + 'T', 3791, + '[', 1801, + ']', 1805, + '_', 3821, '`', 834, - 'd', 3881, - 'e', 3793, - 'f', 3879, - 'g', 3833, - 'h', 3980, - 'k', 3833, - 'm', 3836, - 'n', 3991, - 'o', 3797, - 'p', 3833, - 's', 3898, - 't', 3832, - 'u', 3990, - 'w', 3924, - '{', 2000, - 0xb5, 3990, - 'B', 2507, - 'b', 2507, - 'I', 4006, - 'i', 4006, + 'd', 3838, + 'e', 3750, + 'f', 3836, + 'g', 3790, + 'h', 3936, + 'k', 3790, + 'm', 3793, + 'n', 3947, + 'o', 3754, + 'p', 3790, + 's', 3855, + 't', 3789, + 'u', 3946, + 'w', 3881, + '{', 1967, + 0xb5, 3946, + 'B', 2469, + 'b', 2469, + 'I', 3962, + 'i', 3962, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(502); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3875); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3832); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3791); + lookahead != '}') ADVANCE(3748); END_STATE(); case 381: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2364, - '0', 3470, - 'E', 3464, - 'N', 3557, - '[', 1834, - ']', 1838, - '_', 3460, + '(', 2322, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2326, + '0', 3430, + 'E', 3424, + 'N', 3516, + '[', 1801, + ']', 1805, + '_', 3420, '`', 834, - 'e', 3444, - 'f', 3474, - 'n', 3554, - 'o', 3441, - 't', 3540, - '{', 2000, - 'I', 3561, - 'i', 3561, + 'e', 3404, + 'f', 3434, + 'n', 3513, + 'o', 3401, + 't', 3499, + '{', 1967, + 'I', 3520, + 'i', 3520, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(502); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3472); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3432); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 382: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2364, - '0', 3470, - 'N', 3557, - '[', 1834, - ']', 1838, - '_', 3460, + '(', 2322, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2326, + '0', 3430, + 'N', 3516, + '[', 1801, + ']', 1805, + '_', 3420, '`', 834, - 'e', 3439, - 'f', 3474, - 'n', 3554, - 'o', 3441, - 't', 3540, - '{', 2000, - 'I', 3561, - 'i', 3561, + 'e', 3399, + 'f', 3434, + 'n', 3513, + 'o', 3401, + 't', 3499, + '{', 1967, + 'I', 3520, + 'i', 3520, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(502); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3472); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3432); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 383: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2481, - '0', 2394, - 'N', 3557, - '[', 1834, - ']', 1838, - '_', 3467, + '(', 2322, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2443, + '0', 2356, + 'N', 3516, + '[', 1801, + ']', 1805, + '_', 3427, '`', 834, - 'e', 3439, - 'f', 3474, - 'n', 3554, - 'o', 3441, - 't', 3540, - '{', 2000, - 'I', 3561, - 'i', 3561, + 'e', 3399, + 'f', 3434, + 'n', 3513, + 'o', 3401, + 't', 3499, + '{', 1967, + 'I', 3520, + 'i', 3520, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(502); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 384: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2481, - '0', 2460, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4622, + '(', 2322, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2443, + '0', 2422, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4577, '`', 834, - 'e', 4599, - 'f', 4629, - 'n', 4682, - 'o', 4601, - 't', 4663, - '{', 2000, - 'I', 4692, - 'i', 4692, + 'e', 4554, + 'f', 4584, + 'n', 4637, + 'o', 4556, + 't', 4618, + '{', 1967, + 'I', 4647, + 'i', 4647, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(502); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2473); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2435); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 385: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2365, - '0', 2394, - 'E', 3464, - 'N', 3557, - '[', 1834, - ']', 1838, - '_', 3467, + '(', 2322, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2327, + '0', 2356, + 'E', 3424, + 'N', 3516, + '[', 1801, + ']', 1805, + '_', 3427, '`', 834, - 'e', 3444, - 'f', 3474, - 'n', 3554, - 'o', 3441, - 't', 3540, - '{', 2000, - 'I', 3561, - 'i', 3561, + 'e', 3404, + 'f', 3434, + 'n', 3513, + 'o', 3401, + 't', 3499, + '{', 1967, + 'I', 3520, + 'i', 3520, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(502); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 386: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2365, - '0', 2394, - 'N', 3557, - '[', 1834, - ']', 1838, - '_', 3467, + '(', 2322, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2327, + '0', 2356, + 'N', 3516, + '[', 1801, + ']', 1805, + '_', 3427, '`', 834, - 'e', 3439, - 'f', 3474, - 'n', 3554, - 'o', 3441, - 't', 3540, - '{', 2000, - 'I', 3561, - 'i', 3561, + 'e', 3399, + 'f', 3434, + 'n', 3513, + 'o', 3401, + 't', 3499, + '{', 1967, + 'I', 3520, + 'i', 3520, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(502); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 387: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2365, - '0', 3470, - 'E', 3464, - 'N', 3557, - '[', 1834, - ']', 1838, - '_', 3460, + '(', 2322, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2327, + '0', 3430, + 'E', 3424, + 'N', 3516, + '[', 1801, + ']', 1805, + '_', 3420, '`', 834, - 'e', 3444, - 'f', 3474, - 'n', 3554, - 'o', 3441, - 't', 3540, - '{', 2000, - 'I', 3561, - 'i', 3561, + 'e', 3404, + 'f', 3434, + 'n', 3513, + 'o', 3401, + 't', 3499, + '{', 1967, + 'I', 3520, + 'i', 3520, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(502); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3472); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3432); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 388: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2365, - '0', 3470, - 'N', 3557, - '[', 1834, - ']', 1838, - '_', 3460, + '(', 2322, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2327, + '0', 3430, + 'N', 3516, + '[', 1801, + ']', 1805, + '_', 3420, '`', 834, - 'e', 3439, - 'f', 3474, - 'n', 3554, - 'o', 3441, - 't', 3540, - '{', 2000, - 'I', 3561, - 'i', 3561, + 'e', 3399, + 'f', 3434, + 'n', 3513, + 'o', 3401, + 't', 3499, + '{', 1967, + 'I', 3520, + 'i', 3520, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(502); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3472); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3432); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 389: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 2175, - ',', 3211, - '-', 1892, - '.', 2364, - '0', 4851, - 'E', 4838, - 'G', 4841, - 'K', 4841, - 'M', 4841, - 'N', 4864, - 'P', 4841, - 'T', 4841, - '[', 1834, - ']', 1838, - '_', 4848, + '(', 2322, + '+', 2137, + ',', 3171, + '-', 1859, + '.', 2326, + '0', 4806, + 'E', 4793, + 'G', 4796, + 'K', 4796, + 'M', 4796, + 'N', 4819, + 'P', 4796, + 'T', 4796, + '[', 1801, + ']', 1805, + '_', 4803, '`', 834, - 'd', 4854, - 'e', 4837, - 'f', 4853, - 'g', 4840, - 'h', 4860, - 'k', 4840, - 'm', 4842, - 'n', 4862, - 'o', 4836, - 'p', 4840, - 's', 4856, - 't', 4839, - 'u', 4861, - 'w', 4858, - '{', 2000, - 0xb5, 4861, - 'B', 2507, - 'b', 2507, - 'I', 4865, - 'i', 4865, + 'd', 4809, + 'e', 4792, + 'f', 4808, + 'g', 4795, + 'h', 4815, + 'k', 4795, + 'm', 4797, + 'n', 4817, + 'o', 4791, + 'p', 4795, + 's', 4811, + 't', 4794, + 'u', 4816, + 'w', 4813, + '{', 1967, + 0xb5, 4816, + 'B', 2469, + 'b', 2469, + 'I', 4820, + 'i', 4820, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4852); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4807); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4833); + lookahead != '}') ADVANCE(4788); END_STATE(); case 390: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 2175, - ',', 3211, - '-', 1892, - '.', 2364, - '0', 4851, - 'E', 4841, - 'G', 4841, - 'K', 4841, - 'M', 4841, - 'N', 4864, - 'P', 4841, - 'T', 4841, - '[', 1834, - ']', 1838, - '_', 4848, + '(', 2322, + '+', 2137, + ',', 3171, + '-', 1859, + '.', 2326, + '0', 4806, + 'E', 4796, + 'G', 4796, + 'K', 4796, + 'M', 4796, + 'N', 4819, + 'P', 4796, + 'T', 4796, + '[', 1801, + ']', 1805, + '_', 4803, '`', 834, - 'd', 4854, - 'e', 4834, - 'f', 4853, - 'g', 4840, - 'h', 4860, - 'k', 4840, - 'm', 4842, - 'n', 4862, - 'o', 4836, - 'p', 4840, - 's', 4856, - 't', 4839, - 'u', 4861, - 'w', 4858, - '{', 2000, - 0xb5, 4861, - 'B', 2507, - 'b', 2507, - 'I', 4865, - 'i', 4865, + 'd', 4809, + 'e', 4789, + 'f', 4808, + 'g', 4795, + 'h', 4815, + 'k', 4795, + 'm', 4797, + 'n', 4817, + 'o', 4791, + 'p', 4795, + 's', 4811, + 't', 4794, + 'u', 4816, + 'w', 4813, + '{', 1967, + 0xb5, 4816, + 'B', 2469, + 'b', 2469, + 'I', 4820, + 'i', 4820, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4852); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4807); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4833); + lookahead != '}') ADVANCE(4788); END_STATE(); case 391: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 2175, - ',', 3211, - '-', 1892, - '.', 2364, - '0', 4722, - 'E', 4719, - 'N', 4727, - '[', 1834, - ']', 1838, - '_', 4717, + '(', 2322, + '+', 2137, + ',', 3171, + '-', 1859, + '.', 2326, + '0', 4677, + 'E', 4674, + 'N', 4682, + '[', 1801, + ']', 1805, + '_', 4672, '`', 834, - 'e', 4715, - 'f', 4724, - 'n', 4726, - 'o', 4714, - 't', 4725, - '{', 2000, - 'I', 4728, - 'i', 4728, + 'e', 4670, + 'f', 4679, + 'n', 4681, + 'o', 4669, + 't', 4680, + '{', 1967, + 'I', 4683, + 'i', 4683, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4723); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4678); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4712); + lookahead != '}') ADVANCE(4667); END_STATE(); case 392: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 2175, - ',', 3211, - '-', 1892, - '.', 2364, - '0', 4722, - 'N', 4727, - '[', 1834, - ']', 1838, - '_', 4717, + '(', 2322, + '+', 2137, + ',', 3171, + '-', 1859, + '.', 2326, + '0', 4677, + 'N', 4682, + '[', 1801, + ']', 1805, + '_', 4672, '`', 834, - 'e', 4713, - 'f', 4724, - 'n', 4726, - 'o', 4714, - 't', 4725, - '{', 2000, - 'I', 4728, - 'i', 4728, + 'e', 4668, + 'f', 4679, + 'n', 4681, + 'o', 4669, + 't', 4680, + '{', 1967, + 'I', 4683, + 'i', 4683, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4723); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4678); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4712); + lookahead != '}') ADVANCE(4667); END_STATE(); case 393: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 2175, - ',', 3211, - '-', 1892, - '.', 2364, - '0', 2394, - 'E', 3831, - 'G', 3834, - 'K', 3834, - 'M', 3834, - 'N', 4002, - 'P', 3834, - 'T', 3834, - '[', 1834, - ']', 1838, - '_', 3868, + '(', 2322, + '+', 2137, + ',', 3171, + '-', 1859, + '.', 2326, + '0', 2356, + 'E', 3788, + 'G', 3791, + 'K', 3791, + 'M', 3791, + 'N', 3958, + 'P', 3791, + 'T', 3791, + '[', 1801, + ']', 1805, + '_', 3825, '`', 834, - 'd', 3881, - 'e', 3802, - 'f', 3879, - 'g', 3833, - 'h', 3980, - 'k', 3833, - 'm', 3836, - 'n', 3991, - 'o', 3797, - 'p', 3833, - 's', 3898, - 't', 3832, - 'u', 3990, - 'w', 3924, - '{', 2000, - 0xb5, 3990, - 'B', 2507, - 'b', 2507, - 'I', 4006, - 'i', 4006, + 'd', 3838, + 'e', 3759, + 'f', 3836, + 'g', 3790, + 'h', 3936, + 'k', 3790, + 'm', 3793, + 'n', 3947, + 'o', 3754, + 'p', 3790, + 's', 3855, + 't', 3789, + 'u', 3946, + 'w', 3881, + '{', 1967, + 0xb5, 3946, + 'B', 2469, + 'b', 2469, + 'I', 3962, + 'i', 3962, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3791); + lookahead != '}') ADVANCE(3748); END_STATE(); case 394: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 2175, - ',', 3211, - '-', 1892, - '.', 2364, - '0', 2394, - 'E', 4838, - 'G', 4841, - 'K', 4841, - 'M', 4841, - 'N', 4864, - 'P', 4841, - 'T', 4841, - '[', 1834, - ']', 1838, - '_', 4850, + '(', 2322, + '+', 2137, + ',', 3171, + '-', 1859, + '.', 2326, + '0', 2356, + 'E', 4793, + 'G', 4796, + 'K', 4796, + 'M', 4796, + 'N', 4819, + 'P', 4796, + 'T', 4796, + '[', 1801, + ']', 1805, + '_', 4805, '`', 834, - 'd', 4854, - 'e', 4837, - 'f', 4853, - 'g', 4840, - 'h', 4860, - 'k', 4840, - 'm', 4842, - 'n', 4862, - 'o', 4836, - 'p', 4840, - 's', 4856, - 't', 4839, - 'u', 4861, - 'w', 4858, - '{', 2000, - 0xb5, 4861, - 'B', 2507, - 'b', 2507, - 'I', 4865, - 'i', 4865, + 'd', 4809, + 'e', 4792, + 'f', 4808, + 'g', 4795, + 'h', 4815, + 'k', 4795, + 'm', 4797, + 'n', 4817, + 'o', 4791, + 'p', 4795, + 's', 4811, + 't', 4794, + 'u', 4816, + 'w', 4813, + '{', 1967, + 0xb5, 4816, + 'B', 2469, + 'b', 2469, + 'I', 4820, + 'i', 4820, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4833); + lookahead != '}') ADVANCE(4788); END_STATE(); case 395: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 2175, - ',', 3211, - '-', 1892, - '.', 2364, - '0', 2394, - 'E', 3464, - 'N', 3557, - '[', 1834, - ']', 1838, - '_', 3467, + '(', 2322, + '+', 2137, + ',', 3171, + '-', 1859, + '.', 2326, + '0', 2356, + 'E', 4674, + 'N', 4682, + '[', 1801, + ']', 1805, + '_', 4676, '`', 834, - 'e', 3444, - 'f', 3474, - 'n', 3554, - 'o', 3441, - 't', 3540, - '{', 2000, - 'I', 3561, - 'i', 3561, + 'e', 4670, + 'f', 4679, + 'n', 4681, + 'o', 4669, + 't', 4680, + '{', 1967, + 'I', 4683, + 'i', 4683, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(4667); END_STATE(); case 396: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 2175, - ',', 3211, - '-', 1892, - '.', 2364, - '0', 2394, - 'E', 4719, - 'N', 4727, - '[', 1834, - ']', 1838, - '_', 4721, + '(', 2322, + '+', 2137, + ',', 3171, + '-', 1859, + '.', 2326, + '0', 2356, + 'E', 3424, + 'N', 3516, + '[', 1801, + ']', 1805, + '_', 3427, '`', 834, - 'e', 4715, - 'f', 4724, - 'n', 4726, - 'o', 4714, - 't', 4725, - '{', 2000, - 'I', 4728, - 'i', 4728, + 'e', 3404, + 'f', 3434, + 'n', 3513, + 'o', 3401, + 't', 3499, + '{', 1967, + 'I', 3520, + 'i', 3520, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4712); + lookahead != '}') ADVANCE(3397); END_STATE(); case 397: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 2175, - ',', 3211, - '-', 1892, - '.', 2364, - '0', 3871, - 'E', 3831, - 'G', 3834, - 'K', 3834, - 'M', 3834, - 'N', 4002, - 'P', 3834, - 'T', 3834, - '[', 1834, - ']', 1838, - '_', 3864, + '(', 2322, + '+', 2137, + ',', 3171, + '-', 1859, + '.', 2326, + '0', 3828, + 'E', 3788, + 'G', 3791, + 'K', 3791, + 'M', 3791, + 'N', 3958, + 'P', 3791, + 'T', 3791, + '[', 1801, + ']', 1805, + '_', 3821, '`', 834, - 'd', 3881, - 'e', 3802, - 'f', 3879, - 'g', 3833, - 'h', 3980, - 'k', 3833, - 'm', 3836, - 'n', 3991, - 'o', 3797, - 'p', 3833, - 's', 3898, - 't', 3832, - 'u', 3990, - 'w', 3924, - '{', 2000, - 0xb5, 3990, - 'B', 2507, - 'b', 2507, - 'I', 4006, - 'i', 4006, + 'd', 3838, + 'e', 3759, + 'f', 3836, + 'g', 3790, + 'h', 3936, + 'k', 3790, + 'm', 3793, + 'n', 3947, + 'o', 3754, + 'p', 3790, + 's', 3855, + 't', 3789, + 'u', 3946, + 'w', 3881, + '{', 1967, + 0xb5, 3946, + 'B', 2469, + 'b', 2469, + 'I', 3962, + 'i', 3962, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3875); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3832); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3791); + lookahead != '}') ADVANCE(3748); END_STATE(); case 398: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 2175, - ',', 3211, - '-', 1892, - '.', 2364, - '0', 3871, - 'E', 3834, - 'G', 3834, - 'K', 3834, - 'M', 3834, - 'N', 4002, - 'P', 3834, - 'T', 3834, - '[', 1834, - ']', 1838, - '_', 3864, + '(', 2322, + '+', 2137, + ',', 3171, + '-', 1859, + '.', 2326, + '0', 3828, + 'E', 3791, + 'G', 3791, + 'K', 3791, + 'M', 3791, + 'N', 3958, + 'P', 3791, + 'T', 3791, + '[', 1801, + ']', 1805, + '_', 3821, '`', 834, - 'd', 3881, - 'e', 3793, - 'f', 3879, - 'g', 3833, - 'h', 3980, - 'k', 3833, - 'm', 3836, - 'n', 3991, - 'o', 3797, - 'p', 3833, - 's', 3898, - 't', 3832, - 'u', 3990, - 'w', 3924, - '{', 2000, - 0xb5, 3990, - 'B', 2507, - 'b', 2507, - 'I', 4006, - 'i', 4006, + 'd', 3838, + 'e', 3750, + 'f', 3836, + 'g', 3790, + 'h', 3936, + 'k', 3790, + 'm', 3793, + 'n', 3947, + 'o', 3754, + 'p', 3790, + 's', 3855, + 't', 3789, + 'u', 3946, + 'w', 3881, + '{', 1967, + 0xb5, 3946, + 'B', 2469, + 'b', 2469, + 'I', 3962, + 'i', 3962, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3875); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3832); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3791); + lookahead != '}') ADVANCE(3748); END_STATE(); case 399: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 2175, - ',', 3211, - '-', 1892, - '.', 2364, - '0', 3470, - 'E', 3464, - 'N', 3557, - '[', 1834, - ']', 1838, - '_', 3460, + '(', 2322, + '+', 2137, + ',', 3171, + '-', 1859, + '.', 2326, + '0', 3430, + 'E', 3424, + 'N', 3516, + '[', 1801, + ']', 1805, + '_', 3420, '`', 834, - 'e', 3444, - 'f', 3474, - 'n', 3554, - 'o', 3441, - 't', 3540, - '{', 2000, - 'I', 3561, - 'i', 3561, + 'e', 3404, + 'f', 3434, + 'n', 3513, + 'o', 3401, + 't', 3499, + '{', 1967, + 'I', 3520, + 'i', 3520, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3472); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3432); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 400: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 2175, - ',', 3211, - '-', 1892, - '.', 2364, - '0', 3470, - 'N', 3557, - '[', 1834, - ']', 1838, - '_', 3460, + '(', 2322, + '+', 2137, + ',', 3171, + '-', 1859, + '.', 2326, + '0', 3430, + 'N', 3516, + '[', 1801, + ']', 1805, + '_', 3420, '`', 834, - 'e', 3439, - 'f', 3474, - 'n', 3554, - 'o', 3441, - 't', 3540, - '{', 2000, - 'I', 3561, - 'i', 3561, + 'e', 3399, + 'f', 3434, + 'n', 3513, + 'o', 3401, + 't', 3499, + '{', 1967, + 'I', 3520, + 'i', 3520, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3472); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3432); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 401: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 2175, - ',', 3211, - '-', 1892, - '.', 2481, - '0', 2394, - 'N', 3557, - '[', 1834, - ']', 1838, - '_', 3467, + '(', 2322, + '+', 2137, + ',', 3171, + '-', 1859, + '.', 2443, + '0', 2356, + 'N', 3516, + '[', 1801, + ']', 1805, + '_', 3427, '`', 834, - 'e', 3439, - 'f', 3474, - 'n', 3554, - 'o', 3441, - 't', 3540, - '{', 2000, - 'I', 3561, - 'i', 3561, + 'e', 3399, + 'f', 3434, + 'n', 3513, + 'o', 3401, + 't', 3499, + '{', 1967, + 'I', 3520, + 'i', 3520, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 402: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 2175, - ',', 3211, - '-', 1892, - '.', 2481, - '0', 2394, - 'N', 4727, - '[', 1834, - ']', 1838, - '_', 4721, + '(', 2322, + '+', 2137, + ',', 3171, + '-', 1859, + '.', 2443, + '0', 2356, + 'N', 4682, + '[', 1801, + ']', 1805, + '_', 4676, '`', 834, - 'e', 4713, - 'f', 4724, - 'n', 4726, - 'o', 4714, - 't', 4725, - '{', 2000, - 'I', 4728, - 'i', 4728, + 'e', 4668, + 'f', 4679, + 'n', 4681, + 'o', 4669, + 't', 4680, + '{', 1967, + 'I', 4683, + 'i', 4683, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4712); + lookahead != '}') ADVANCE(4667); END_STATE(); case 403: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 2175, - ',', 3211, - '-', 1892, - '.', 2481, - '0', 2460, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4622, + '(', 2322, + '+', 2137, + ',', 3171, + '-', 1859, + '.', 2443, + '0', 2422, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4577, '`', 834, - 'e', 4599, - 'f', 4629, - 'n', 4682, - 'o', 4601, - 't', 4663, - '{', 2000, - 'I', 4692, - 'i', 4692, + 'e', 4554, + 'f', 4584, + 'n', 4637, + 'o', 4556, + 't', 4618, + '{', 1967, + 'I', 4647, + 'i', 4647, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2473); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2435); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 404: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 2175, - ',', 3211, - '-', 1892, - '.', 2365, - '0', 4722, - 'E', 4719, - 'N', 4727, - '[', 1834, - ']', 1838, - '_', 4717, + '(', 2322, + '+', 2137, + ',', 3171, + '-', 1859, + '.', 2327, + '0', 4677, + 'E', 4674, + 'N', 4682, + '[', 1801, + ']', 1805, + '_', 4672, '`', 834, - 'e', 4715, - 'f', 4724, - 'n', 4726, - 'o', 4714, - 't', 4725, - '{', 2000, - 'I', 4728, - 'i', 4728, + 'e', 4670, + 'f', 4679, + 'n', 4681, + 'o', 4669, + 't', 4680, + '{', 1967, + 'I', 4683, + 'i', 4683, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4723); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4678); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4712); + lookahead != '}') ADVANCE(4667); END_STATE(); case 405: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 2175, - ',', 3211, - '-', 1892, - '.', 2365, - '0', 4722, - 'N', 4727, - '[', 1834, - ']', 1838, - '_', 4717, + '(', 2322, + '+', 2137, + ',', 3171, + '-', 1859, + '.', 2327, + '0', 4677, + 'N', 4682, + '[', 1801, + ']', 1805, + '_', 4672, '`', 834, - 'e', 4713, - 'f', 4724, - 'n', 4726, - 'o', 4714, - 't', 4725, - '{', 2000, - 'I', 4728, - 'i', 4728, + 'e', 4668, + 'f', 4679, + 'n', 4681, + 'o', 4669, + 't', 4680, + '{', 1967, + 'I', 4683, + 'i', 4683, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4723); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4678); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4712); + lookahead != '}') ADVANCE(4667); END_STATE(); case 406: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 2175, - ',', 3211, - '-', 1892, - '.', 2365, - '0', 2394, - 'E', 3464, - 'N', 3557, - '[', 1834, - ']', 1838, - '_', 3467, + '(', 2322, + '+', 2137, + ',', 3171, + '-', 1859, + '.', 2327, + '0', 2356, + 'E', 4674, + 'N', 4682, + '[', 1801, + ']', 1805, + '_', 4676, '`', 834, - 'e', 3444, - 'f', 3474, - 'n', 3554, - 'o', 3441, - 't', 3540, - '{', 2000, - 'I', 3561, - 'i', 3561, + 'e', 4670, + 'f', 4679, + 'n', 4681, + 'o', 4669, + 't', 4680, + '{', 1967, + 'I', 4683, + 'i', 4683, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(4667); END_STATE(); case 407: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 2175, - ',', 3211, - '-', 1892, - '.', 2365, - '0', 2394, - 'E', 4719, - 'N', 4727, - '[', 1834, - ']', 1838, - '_', 4721, + '(', 2322, + '+', 2137, + ',', 3171, + '-', 1859, + '.', 2327, + '0', 2356, + 'E', 3424, + 'N', 3516, + '[', 1801, + ']', 1805, + '_', 3427, '`', 834, - 'e', 4715, - 'f', 4724, - 'n', 4726, - 'o', 4714, - 't', 4725, - '{', 2000, - 'I', 4728, - 'i', 4728, + 'e', 3404, + 'f', 3434, + 'n', 3513, + 'o', 3401, + 't', 3499, + '{', 1967, + 'I', 3520, + 'i', 3520, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4712); + lookahead != '}') ADVANCE(3397); END_STATE(); case 408: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 2175, - ',', 3211, - '-', 1892, - '.', 2365, - '0', 2394, - 'N', 3557, - '[', 1834, - ']', 1838, - '_', 3467, + '(', 2322, + '+', 2137, + ',', 3171, + '-', 1859, + '.', 2327, + '0', 2356, + 'N', 3516, + '[', 1801, + ']', 1805, + '_', 3427, '`', 834, - 'e', 3439, - 'f', 3474, - 'n', 3554, - 'o', 3441, - 't', 3540, - '{', 2000, - 'I', 3561, - 'i', 3561, + 'e', 3399, + 'f', 3434, + 'n', 3513, + 'o', 3401, + 't', 3499, + '{', 1967, + 'I', 3520, + 'i', 3520, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 409: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 2175, - ',', 3211, - '-', 1892, - '.', 2365, - '0', 2394, - 'N', 4727, - '[', 1834, - ']', 1838, - '_', 4721, + '(', 2322, + '+', 2137, + ',', 3171, + '-', 1859, + '.', 2327, + '0', 2356, + 'N', 4682, + '[', 1801, + ']', 1805, + '_', 4676, '`', 834, - 'e', 4713, - 'f', 4724, - 'n', 4726, - 'o', 4714, - 't', 4725, - '{', 2000, - 'I', 4728, - 'i', 4728, + 'e', 4668, + 'f', 4679, + 'n', 4681, + 'o', 4669, + 't', 4680, + '{', 1967, + 'I', 4683, + 'i', 4683, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4712); + lookahead != '}') ADVANCE(4667); END_STATE(); case 410: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 2175, - ',', 3211, - '-', 1892, - '.', 2365, - '0', 3470, - 'E', 3464, - 'N', 3557, - '[', 1834, - ']', 1838, - '_', 3460, + '(', 2322, + '+', 2137, + ',', 3171, + '-', 1859, + '.', 2327, + '0', 3430, + 'E', 3424, + 'N', 3516, + '[', 1801, + ']', 1805, + '_', 3420, '`', 834, - 'e', 3444, - 'f', 3474, - 'n', 3554, - 'o', 3441, - 't', 3540, - '{', 2000, - 'I', 3561, - 'i', 3561, + 'e', 3404, + 'f', 3434, + 'n', 3513, + 'o', 3401, + 't', 3499, + '{', 1967, + 'I', 3520, + 'i', 3520, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3472); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3432); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 411: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 2175, - ',', 3211, - '-', 1892, - '.', 2365, - '0', 3470, - 'N', 3557, - '[', 1834, - ']', 1838, - '_', 3460, + '(', 2322, + '+', 2137, + ',', 3171, + '-', 1859, + '.', 2327, + '0', 3430, + 'N', 3516, + '[', 1801, + ']', 1805, + '_', 3420, '`', 834, - 'e', 3439, - 'f', 3474, - 'n', 3554, - 'o', 3441, - 't', 3540, - '{', 2000, - 'I', 3561, - 'i', 3561, + 'e', 3399, + 'f', 3434, + 'n', 3513, + 'o', 3401, + 't', 3499, + '{', 1967, + 'I', 3520, + 'i', 3520, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3472); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3432); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 412: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 3323, - ',', 1835, - '-', 1907, - '.', 2365, - '0', 2395, - 'N', 3413, - '[', 1834, - '_', 2006, + '(', 2322, + '+', 3283, + ',', 1802, + '-', 1874, + '.', 2327, + '0', 2357, + 'N', 3373, + '[', 1801, + '_', 1973, '`', 834, - 'e', 3310, - 'f', 3346, - 'n', 3407, - 'o', 3312, - 't', 3385, - '{', 2000, - '}', 2001, - 'I', 3418, - 'i', 3418, + 'e', 3270, + 'f', 3306, + 'n', 3367, + 'o', 3272, + 't', 3345, + '{', 1967, + '}', 1968, + 'I', 3378, + 'i', 3378, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(544); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2405); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2367); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != ']') ADVANCE(3436); + lookahead != ']') ADVANCE(3396); END_STATE(); case 413: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 2171, - ',', 3211, - '-', 1901, - '.', 2363, - '0', 2396, - 'I', 1556, - 'N', 1550, - ']', 1838, - '_', 1352, + '(', 2322, + '+', 2133, + ',', 3171, + '-', 1868, + '.', 2325, + '0', 2358, + 'I', 1523, + 'N', 1517, + ']', 1805, + '_', 1322, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1366, - 'd', 1379, - 'e', 1448, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1355, - 'n', 1395, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1496, - 'u', 1508, - 'w', 1421, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1336, + 'd', 1349, + 'e', 1416, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1325, + 'n', 1365, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1463, + 'u', 1475, + 'w', 1390, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && (lookahead < 'A' || '[' < lookahead) && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 414: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 2171, - '-', 1901, - '.', 2363, - '0', 2396, - 'I', 1556, - 'N', 1550, - '_', 1352, + '(', 2322, + '+', 2133, + '-', 1868, + '.', 2325, + '0', 2358, + 'I', 1523, + 'N', 1517, + '_', 1322, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1366, - 'd', 1379, - 'e', 1448, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1355, - 'n', 1395, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1496, - 'u', 1508, - 'w', 1421, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1336, + 'd', 1349, + 'e', 1416, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1325, + 'n', 1365, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1463, + 'u', 1475, + 'w', 1390, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(545); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || ';' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 415: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 2176, - ',', 1835, - '-', 1893, - '.', 2365, - '0', 2394, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4627, + '(', 2322, + '+', 2138, + ',', 1802, + '-', 1860, + '.', 2327, + '0', 2356, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4582, '`', 834, - 'e', 4599, - 'f', 4629, - 'n', 4682, - 'o', 4601, - 't', 4663, - '{', 2000, - 'I', 4692, - 'i', 4692, + 'e', 4554, + 'f', 4584, + 'n', 4637, + 'o', 4556, + 't', 4618, + '{', 1967, + 'I', 4647, + 'i', 4647, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(546); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 416: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 2176, - ',', 1835, - '-', 1893, - '.', 2365, - '0', 2394, - 'N', 3668, - '[', 1834, - ']', 1838, - '_', 3583, + '(', 2322, + '+', 2138, + ',', 1802, + '-', 1860, + '.', 2327, + '0', 2356, + 'N', 3626, + '[', 1801, + ']', 1805, + '_', 3542, '`', 834, - 'e', 3568, - 'f', 3585, - 'n', 3665, - 'o', 3570, - 't', 3651, - '{', 2000, - 'I', 3672, - 'i', 3672, - '<', 3791, - '=', 3791, + 'e', 3527, + 'f', 3544, + 'n', 3623, + 'o', 3529, + 't', 3609, + '{', 1967, + 'I', 3630, + 'i', 3630, + '<', 3748, + '=', 3748, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(546); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < ';' || '=' < lookahead) && - lookahead != '}') ADVANCE(3566); + lookahead != '}') ADVANCE(3525); END_STATE(); case 417: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 2176, - ',', 1835, - '-', 1893, - '.', 2365, - '0', 2394, - 'N', 3782, - '[', 1834, - ']', 1838, - '_', 3697, + '(', 2322, + '+', 2138, + ',', 1802, + '-', 1860, + '.', 2327, + '0', 2356, + 'N', 3739, + '[', 1801, + ']', 1805, + '_', 3655, '`', 834, - 'e', 3679, - 'f', 3699, - 'n', 3779, - 'o', 3681, - 't', 3765, - '{', 2000, - 'I', 3786, - 'i', 3786, + 'e', 3637, + 'f', 3657, + 'n', 3736, + 'o', 3639, + 't', 3722, + '{', 1967, + 'I', 3743, + 'i', 3743, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(546); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3677); + lookahead != '}') ADVANCE(3635); END_STATE(); case 418: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 2176, - ',', 1835, - '-', 1893, - '.', 2365, - '0', 2394, - 'N', 3557, - '[', 1834, - ']', 1838, - '_', 3467, + '(', 2322, + '+', 2138, + ',', 1802, + '-', 1860, + '.', 2327, + '0', 2356, + 'N', 3516, + '[', 1801, + ']', 1805, + '_', 3427, '`', 834, - 'e', 3439, - 'f', 3474, - 'n', 3554, - 'o', 3441, - 't', 3540, - '{', 2000, - 'I', 3561, - 'i', 3561, + 'e', 3399, + 'f', 3434, + 'n', 3513, + 'o', 3401, + 't', 3499, + '{', 1967, + 'I', 3520, + 'i', 3520, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(546); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 419: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 2176, - ',', 1835, - '-', 1893, - '.', 2365, - '0', 2394, - 'N', 4820, - '[', 1834, - ']', 1838, - '_', 4816, + '(', 2322, + '+', 2138, + ',', 1802, + '-', 1860, + '.', 2327, + '0', 2356, + 'N', 4775, + '[', 1801, + ']', 1805, + '_', 4771, '`', 834, - 'e', 4812, - 'f', 4817, - 'n', 4819, - 'o', 4813, - 't', 4818, - '{', 2000, - 'I', 4821, - 'i', 4821, - '<', 4833, - '=', 4833, + 'e', 4767, + 'f', 4772, + 'n', 4774, + 'o', 4768, + 't', 4773, + '{', 1967, + 'I', 4776, + 'i', 4776, + '<', 4788, + '=', 4788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(546); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < ';' || '=' < lookahead) && - lookahead != '}') ADVANCE(4811); + lookahead != '}') ADVANCE(4766); END_STATE(); case 420: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 2176, - ',', 1835, - '-', 1893, - '.', 2365, - '0', 2394, - 'N', 4727, - '[', 1834, - ']', 1838, - '_', 4721, + '(', 2322, + '+', 2138, + ',', 1802, + '-', 1860, + '.', 2327, + '0', 2356, + 'N', 4682, + '[', 1801, + ']', 1805, + '_', 4676, '`', 834, - 'e', 4713, - 'f', 4724, - 'n', 4726, - 'o', 4714, - 't', 4725, - '{', 2000, - 'I', 4728, - 'i', 4728, + 'e', 4668, + 'f', 4679, + 'n', 4681, + 'o', 4669, + 't', 4680, + '{', 1967, + 'I', 4683, + 'i', 4683, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(546); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4712); + lookahead != '}') ADVANCE(4667); END_STATE(); case 421: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 2176, - ',', 1835, - '-', 1893, - '.', 2365, - '0', 2394, - 'N', 4831, - '[', 1834, - ']', 1838, - '_', 4827, + '(', 2322, + '+', 2138, + ',', 1802, + '-', 1860, + '.', 2327, + '0', 2356, + 'N', 4786, + '[', 1801, + ']', 1805, + '_', 4782, '`', 834, - 'e', 4823, - 'f', 4828, - 'n', 4830, - 'o', 4824, - 't', 4829, - '{', 2000, - 'I', 4832, - 'i', 4832, + 'e', 4778, + 'f', 4783, + 'n', 4785, + 'o', 4779, + 't', 4784, + '{', 1967, + 'I', 4787, + 'i', 4787, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(546); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4822); + lookahead != '}') ADVANCE(4777); END_STATE(); case 422: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 2176, - ',', 3211, - '-', 1893, - '.', 2365, - '0', 2394, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4627, + '(', 2322, + '+', 2138, + ',', 3171, + '-', 1860, + '.', 2327, + '0', 2356, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4582, '`', 834, - 'e', 4599, - 'f', 4629, - 'n', 4682, - 'o', 4601, - 't', 4663, - '{', 2000, - 'I', 4692, - 'i', 4692, + 'e', 4554, + 'f', 4584, + 'n', 4637, + 'o', 4556, + 't', 4618, + '{', 1967, + 'I', 4647, + 'i', 4647, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 423: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 2176, - ',', 3211, - '-', 1893, - '.', 2365, - '0', 2394, - 'N', 3668, - '[', 1834, - ']', 1838, - '_', 3583, + '(', 2322, + '+', 2138, + ',', 3171, + '-', 1860, + '.', 2327, + '0', 2356, + 'N', 3626, + '[', 1801, + ']', 1805, + '_', 3542, '`', 834, - 'e', 3568, - 'f', 3585, - 'n', 3665, - 'o', 3570, - 't', 3651, - '{', 2000, - 'I', 3672, - 'i', 3672, - '<', 3791, - '=', 3791, + 'e', 3527, + 'f', 3544, + 'n', 3623, + 'o', 3529, + 't', 3609, + '{', 1967, + 'I', 3630, + 'i', 3630, + '<', 3748, + '=', 3748, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < ';' || '=' < lookahead) && - lookahead != '}') ADVANCE(3566); + lookahead != '}') ADVANCE(3525); END_STATE(); case 424: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 2176, - ',', 3211, - '-', 1893, - '.', 2365, - '0', 2394, - 'N', 3782, - '[', 1834, - ']', 1838, - '_', 3697, + '(', 2322, + '+', 2138, + ',', 3171, + '-', 1860, + '.', 2327, + '0', 2356, + 'N', 3739, + '[', 1801, + ']', 1805, + '_', 3655, '`', 834, - 'e', 3679, - 'f', 3699, - 'n', 3779, - 'o', 3681, - 't', 3765, - '{', 2000, - 'I', 3786, - 'i', 3786, + 'e', 3637, + 'f', 3657, + 'n', 3736, + 'o', 3639, + 't', 3722, + '{', 1967, + 'I', 3743, + 'i', 3743, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3677); + lookahead != '}') ADVANCE(3635); END_STATE(); case 425: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 2176, - ',', 3211, - '-', 1893, - '.', 2365, - '0', 2394, - 'N', 3557, - '[', 1834, - ']', 1838, - '_', 3467, + '(', 2322, + '+', 2138, + ',', 3171, + '-', 1860, + '.', 2327, + '0', 2356, + 'N', 3516, + '[', 1801, + ']', 1805, + '_', 3427, '`', 834, - 'e', 3439, - 'f', 3474, - 'n', 3554, - 'o', 3441, - 't', 3540, - '{', 2000, - 'I', 3561, - 'i', 3561, + 'e', 3399, + 'f', 3434, + 'n', 3513, + 'o', 3401, + 't', 3499, + '{', 1967, + 'I', 3520, + 'i', 3520, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 426: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 2176, - ',', 3211, - '-', 1893, - '.', 2365, - '0', 2394, - 'N', 4727, - '[', 1834, - ']', 1838, - '_', 4721, + '(', 2322, + '+', 2138, + ',', 3171, + '-', 1860, + '.', 2327, + '0', 2356, + 'N', 4682, + '[', 1801, + ']', 1805, + '_', 4676, '`', 834, - 'e', 4713, - 'f', 4724, - 'n', 4726, - 'o', 4714, - 't', 4725, - '{', 2000, - 'I', 4728, - 'i', 4728, + 'e', 4668, + 'f', 4679, + 'n', 4681, + 'o', 4669, + 't', 4680, + '{', 1967, + 'I', 4683, + 'i', 4683, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4712); + lookahead != '}') ADVANCE(4667); END_STATE(); case 427: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '+', 2176, - ',', 3211, - '-', 1893, - '.', 2365, - '0', 2394, - 'N', 4831, - '[', 1834, - ']', 1838, - '_', 4827, + '(', 2322, + '+', 2138, + ',', 3171, + '-', 1860, + '.', 2327, + '0', 2356, + 'N', 4786, + '[', 1801, + ']', 1805, + '_', 4782, '`', 834, - 'e', 4823, - 'f', 4828, - 'n', 4830, - 'o', 4824, - 't', 4829, - '{', 2000, - 'I', 4832, - 'i', 4832, + 'e', 4778, + 'f', 4783, + 'n', 4785, + 'o', 4779, + 't', 4784, + '{', 1967, + 'I', 4787, + 'i', 4787, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4822); + lookahead != '}') ADVANCE(4777); END_STATE(); case 428: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - ',', 1835, - '-', 1890, - '.', 2364, - ':', 1830, - '>', 1871, - '?', 2102, + '(', 2322, + ',', 1802, + '-', 1857, + '.', 2326, + ':', 1797, + '>', 1838, + '?', 2064, '`', 834, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(550); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 429: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 2360, - '-', 1890, - '.', 2364, - '?', 2102, - '[', 2535, + '(', 2322, + '-', 1857, + '.', 2326, + '?', 2064, + '[', 2497, '`', 834, - '{', 2000, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(551); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); case 430: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - ')', 1840, - ',', 1835, - '-', 1890, + '(', 1806, + ')', 1807, + ',', 1802, + '-', 1857, '.', 808, - ':', 1830, - '=', 1301, - '>', 1871, - '?', 2102, - '@', 1879, - ']', 1838, + ':', 1797, + '=', 1271, + '>', 1838, + '?', 2064, + '@', 1846, + ']', 1805, '`', 834, - '{', 2000, - '|', 1841, + '{', 1967, + '|', 1808, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(430); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 431: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - ')', 1840, - ',', 1835, - '-', 1890, - '.', 2366, - ':', 1830, - '<', 1869, - '=', 1301, - '>', 1871, - '?', 2102, - '@', 1879, - '[', 2535, - ']', 1838, + '(', 1806, + ')', 1807, + ',', 1802, + '-', 1857, + '.', 2328, + ':', 1797, + '<', 1836, + '=', 1271, + '>', 1838, + '?', 2064, + '@', 1846, + '[', 2497, + ']', 1805, '`', 834, - '{', 2000, - '|', 1841, + '{', 1967, + '|', 1808, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(430); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 432: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2174, - ',', 1835, - '-', 1906, - '.', 2477, - '0', 2462, - ':', 1830, - '?', 2102, - 'I', 1556, - 'N', 1550, - '_', 1350, + '(', 1806, + '+', 2136, + ',', 1802, + '-', 1873, + '.', 2439, + '0', 2424, + ':', 1797, + '?', 2064, + 'I', 1523, + 'N', 1517, + '_', 1320, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1366, - 'd', 1379, - 'e', 1448, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1355, - 'n', 1395, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1496, - 'u', 1508, - 'w', 1421, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1336, + 'd', 1349, + 'e', 1416, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1325, + 'n', 1365, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1463, + 'u', 1475, + 'w', 1390, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(432); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 433: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2174, - ',', 1835, - '-', 1906, - '.', 2477, - '0', 2462, - ':', 1830, - 'I', 1556, - 'N', 1550, - '_', 1350, + '(', 1806, + '+', 2136, + ',', 1802, + '-', 1873, + '.', 2439, + '0', 2424, + ':', 1797, + 'I', 1523, + 'N', 1517, + '_', 1320, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1366, - 'd', 1379, - 'e', 1448, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1355, - 'n', 1395, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1496, - 'u', 1508, - 'w', 1421, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1336, + 'd', 1349, + 'e', 1416, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1325, + 'n', 1365, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1463, + 'u', 1475, + 'w', 1390, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(433); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 434: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2174, - ',', 1835, - '-', 1906, - '.', 2477, - '0', 2462, - 'I', 1556, - 'N', 1550, - '_', 1350, + '(', 1806, + '+', 2136, + ',', 1802, + '-', 1873, + '.', 2439, + '0', 2424, + 'I', 1523, + 'N', 1517, + '_', 1320, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1366, - 'd', 1379, - 'e', 1448, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1355, - 'n', 1395, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1496, - 'u', 1508, - 'w', 1421, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1336, + 'd', 1349, + 'e', 1416, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1325, + 'n', 1365, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1463, + 'u', 1475, + 'w', 1390, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(434); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 435: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2174, - ',', 1835, - '-', 1906, - '.', 2363, - '0', 2462, - ':', 1830, - '?', 2102, - 'I', 1556, - 'N', 1550, - '_', 1350, + '(', 1806, + '+', 2136, + ',', 1802, + '-', 1873, + '.', 2325, + '0', 2424, + ':', 1797, + '?', 2064, + 'I', 1523, + 'N', 1517, + '_', 1320, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1366, - 'd', 1379, - 'e', 1448, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1355, - 'n', 1395, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1496, - 'u', 1508, - 'w', 1421, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1336, + 'd', 1349, + 'e', 1416, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1325, + 'n', 1365, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1463, + 'u', 1475, + 'w', 1390, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(432); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 436: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2174, - ',', 1835, - '-', 1906, - '.', 2363, - '0', 2462, - ':', 1830, - 'I', 1556, - 'N', 1550, - '_', 1350, + '(', 1806, + '+', 2136, + ',', 1802, + '-', 1873, + '.', 2325, + '0', 2424, + ':', 1797, + 'I', 1523, + 'N', 1517, + '_', 1320, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1366, - 'd', 1379, - 'e', 1448, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1355, - 'n', 1395, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1496, - 'u', 1508, - 'w', 1421, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1336, + 'd', 1349, + 'e', 1416, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1325, + 'n', 1365, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1463, + 'u', 1475, + 'w', 1390, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(433); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 437: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2174, - ',', 1835, - '-', 1906, - '.', 2480, - '0', 2462, - 'I', 1556, - 'N', 1550, - '_', 1350, + '(', 1806, + '+', 2136, + ',', 1802, + '-', 1873, + '.', 2442, + '0', 2424, + 'I', 1523, + 'N', 1517, + '_', 1320, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1366, - 'd', 1379, - 'e', 1448, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1355, - 'n', 1395, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1496, - 'u', 1508, - 'w', 1421, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1336, + 'd', 1349, + 'e', 1416, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1325, + 'n', 1365, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1463, + 'u', 1475, + 'w', 1390, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(434); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 438: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2174, - ',', 3211, - '-', 1906, - '.', 2364, - '0', 2462, - '?', 2102, - 'I', 1556, - 'N', 1550, - '_', 1350, + '(', 1806, + '+', 2136, + ',', 3171, + '-', 1873, + '.', 2326, + '0', 2424, + '?', 2064, + 'I', 1523, + 'N', 1517, + '_', 1320, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1366, - 'd', 1379, - 'e', 1448, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1355, - 'n', 1395, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1496, - 'u', 1508, - 'w', 1421, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1336, + 'd', 1349, + 'e', 1416, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1325, + 'n', 1365, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1463, + 'u', 1475, + 'w', 1390, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 439: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2174, - ',', 3211, - '-', 1906, - '.', 2364, - '0', 2462, - 'E', 1336, - 'I', 1556, - 'N', 1550, - '_', 1350, + '(', 1806, + '+', 2136, + ',', 3171, + '-', 1873, + '.', 2326, + '0', 2424, + 'E', 1309, + 'I', 1523, + 'N', 1517, + '_', 1320, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1366, - 'd', 1379, - 'e', 1335, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1355, - 'n', 1395, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1496, - 'u', 1508, - 'w', 1421, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1336, + 'd', 1349, + 'e', 1308, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1325, + 'n', 1365, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1463, + 'u', 1475, + 'w', 1390, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 440: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2174, - ',', 3211, - '-', 1906, - '.', 2364, - '0', 2462, - 'I', 1556, - 'N', 1550, - '_', 1350, + '(', 1806, + '+', 2136, + ',', 3171, + '-', 1873, + '.', 2326, + '0', 2424, + 'I', 1523, + 'N', 1517, + '_', 1320, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1366, - 'd', 1379, - 'e', 1448, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1355, - 'n', 1395, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1496, - 'u', 1508, - 'w', 1421, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1336, + 'd', 1349, + 'e', 1416, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1325, + 'n', 1365, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1463, + 'u', 1475, + 'w', 1390, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 441: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2174, - ',', 3211, - '-', 1906, - '.', 2477, - '0', 2462, - 'E', 1336, - 'I', 1556, - 'N', 1550, - '_', 1350, + '(', 1806, + '+', 2136, + ',', 3171, + '-', 1873, + '.', 2439, + '0', 2424, + 'E', 1309, + 'I', 1523, + 'N', 1517, + '_', 1320, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1366, - 'd', 1379, - 'e', 1335, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1355, - 'n', 1395, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1496, - 'u', 1508, - 'w', 1421, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1336, + 'd', 1349, + 'e', 1308, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1325, + 'n', 1365, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1463, + 'u', 1475, + 'w', 1390, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 442: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2174, - ',', 3211, - '-', 1906, - '.', 2477, - '0', 2462, - 'I', 1556, - 'N', 1550, - ']', 1838, - '_', 1350, + '(', 1806, + '+', 2136, + ',', 3171, + '-', 1873, + '.', 2439, + '0', 2424, + 'I', 1523, + 'N', 1517, + ']', 1805, + '_', 1320, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1366, - 'd', 1379, - 'e', 1448, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1355, - 'n', 1395, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1496, - 'u', 1508, - 'w', 1421, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1336, + 'd', 1349, + 'e', 1416, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1325, + 'n', 1365, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1463, + 'u', 1475, + 'w', 1390, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && (lookahead < 'A' || '[' < lookahead) && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 443: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2174, - ',', 3211, - '-', 1906, - '.', 2477, - '0', 2396, - 'E', 1336, - 'I', 1556, - 'N', 1550, - '_', 1352, + '(', 1806, + '+', 2136, + ',', 3171, + '-', 1873, + '.', 2439, + '0', 2358, + 'E', 1309, + 'I', 1523, + 'N', 1517, + '_', 1322, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1366, - 'd', 1379, - 'e', 1335, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1355, - 'n', 1395, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1496, - 'u', 1508, - 'w', 1421, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1336, + 'd', 1349, + 'e', 1308, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1325, + 'n', 1365, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1463, + 'u', 1475, + 'w', 1390, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 444: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2174, - ',', 3211, - '-', 1906, - '.', 2477, - '0', 2396, - 'I', 1556, - 'N', 1550, - '_', 1352, + '(', 1806, + '+', 2136, + ',', 3171, + '-', 1873, + '.', 2439, + '0', 2358, + 'I', 1523, + 'N', 1517, + '_', 1322, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1366, - 'd', 1379, - 'e', 1448, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1355, - 'n', 1395, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1496, - 'u', 1508, - 'w', 1421, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1336, + 'd', 1349, + 'e', 1416, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1325, + 'n', 1365, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1463, + 'u', 1475, + 'w', 1390, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 445: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2174, - ',', 3211, - '-', 1906, - '.', 2363, - '0', 2462, - '?', 2102, - 'I', 1556, - 'N', 1550, - '_', 1350, + '(', 1806, + '+', 2136, + ',', 3171, + '-', 1873, + '.', 2325, + '0', 2424, + '?', 2064, + 'I', 1523, + 'N', 1517, + '_', 1320, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1366, - 'd', 1379, - 'e', 1448, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1355, - 'n', 1395, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1496, - 'u', 1508, - 'w', 1421, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1336, + 'd', 1349, + 'e', 1416, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1325, + 'n', 1365, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1463, + 'u', 1475, + 'w', 1390, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 446: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2174, - ',', 3211, - '-', 1906, - '.', 2363, - '0', 2462, - 'E', 1336, - 'I', 1556, - 'N', 1550, - '_', 1350, + '(', 1806, + '+', 2136, + ',', 3171, + '-', 1873, + '.', 2325, + '0', 2424, + 'E', 1309, + 'I', 1523, + 'N', 1517, + '_', 1320, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1366, - 'd', 1379, - 'e', 1335, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1355, - 'n', 1395, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1496, - 'u', 1508, - 'w', 1421, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1336, + 'd', 1349, + 'e', 1308, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1325, + 'n', 1365, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1463, + 'u', 1475, + 'w', 1390, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 447: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2174, - ',', 3211, - '-', 1906, - '.', 2363, - '0', 2462, - 'I', 1556, - 'N', 1550, - '_', 1350, + '(', 1806, + '+', 2136, + ',', 3171, + '-', 1873, + '.', 2325, + '0', 2424, + 'I', 1523, + 'N', 1517, + '_', 1320, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1366, - 'd', 1379, - 'e', 1448, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1355, - 'n', 1395, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1496, - 'u', 1508, - 'w', 1421, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1336, + 'd', 1349, + 'e', 1416, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1325, + 'n', 1365, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1463, + 'u', 1475, + 'w', 1390, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 448: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2174, - ',', 3211, - '-', 1906, - '.', 2480, - '0', 2462, - 'E', 1336, - 'I', 1556, - 'N', 1550, - '_', 1350, + '(', 1806, + '+', 2136, + ',', 3171, + '-', 1873, + '.', 2442, + '0', 2424, + 'E', 1309, + 'I', 1523, + 'N', 1517, + '_', 1320, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1366, - 'd', 1379, - 'e', 1335, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1355, - 'n', 1395, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1496, - 'u', 1508, - 'w', 1421, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1336, + 'd', 1349, + 'e', 1308, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1325, + 'n', 1365, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1463, + 'u', 1475, + 'w', 1390, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 449: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2174, - ',', 3211, - '-', 1906, - '.', 2480, - '0', 2462, - 'I', 1556, - 'N', 1550, - ']', 1838, - '_', 1350, + '(', 1806, + '+', 2136, + ',', 3171, + '-', 1873, + '.', 2442, + '0', 2424, + 'I', 1523, + 'N', 1517, + ']', 1805, + '_', 1320, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1366, - 'd', 1379, - 'e', 1448, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1355, - 'n', 1395, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1496, - 'u', 1508, - 'w', 1421, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1336, + 'd', 1349, + 'e', 1416, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1325, + 'n', 1365, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1463, + 'u', 1475, + 'w', 1390, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && (lookahead < 'A' || '[' < lookahead) && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 450: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2174, - ',', 3211, - '-', 1906, - '.', 2480, - '0', 2396, - 'E', 1336, - 'I', 1556, - 'N', 1550, - '_', 1352, + '(', 1806, + '+', 2136, + ',', 3171, + '-', 1873, + '.', 2442, + '0', 2358, + 'E', 1309, + 'I', 1523, + 'N', 1517, + '_', 1322, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1366, - 'd', 1379, - 'e', 1335, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1355, - 'n', 1395, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1496, - 'u', 1508, - 'w', 1421, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1336, + 'd', 1349, + 'e', 1308, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1325, + 'n', 1365, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1463, + 'u', 1475, + 'w', 1390, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 451: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2174, - '-', 1906, - '.', 2364, - '0', 2462, - '?', 2102, - 'I', 1556, - 'N', 1550, - '_', 1350, + '(', 1806, + '+', 2136, + '-', 1873, + '.', 2326, + '0', 2424, + '?', 2064, + 'I', 1523, + 'N', 1517, + '_', 1320, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1366, - 'd', 1379, - 'e', 1448, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1355, - 'n', 1395, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1496, - 'u', 1508, - 'w', 1421, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1336, + 'd', 1349, + 'e', 1416, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1325, + 'n', 1365, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1463, + 'u', 1475, + 'w', 1390, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(454); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || ';' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 452: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2174, - '-', 1906, - '.', 2364, - '0', 2462, - 'E', 1336, - 'I', 1556, - 'N', 1550, - '_', 1350, + '(', 1806, + '+', 2136, + '-', 1873, + '.', 2326, + '0', 2424, + 'E', 1309, + 'I', 1523, + 'N', 1517, + '_', 1320, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1366, - 'd', 1379, - 'e', 1335, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1355, - 'n', 1395, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1496, - 'u', 1508, - 'w', 1421, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1336, + 'd', 1349, + 'e', 1308, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1325, + 'n', 1365, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1463, + 'u', 1475, + 'w', 1390, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(456); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || ';' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 453: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2174, - '-', 1906, - '.', 2364, - '0', 2462, - 'I', 1556, - 'N', 1550, - '_', 1350, + '(', 1806, + '+', 2136, + '-', 1873, + '.', 2326, + '0', 2424, + 'I', 1523, + 'N', 1517, + '_', 1320, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1366, - 'd', 1379, - 'e', 1448, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1355, - 'n', 1395, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1496, - 'u', 1508, - 'w', 1421, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1336, + 'd', 1349, + 'e', 1416, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1325, + 'n', 1365, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1463, + 'u', 1475, + 'w', 1390, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(456); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || ';' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 454: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2174, - '-', 1906, - '.', 2477, - '0', 2462, - '?', 2102, - 'I', 1556, - 'N', 1550, - '_', 1350, + '(', 1806, + '+', 2136, + '-', 1873, + '.', 2439, + '0', 2424, + '?', 2064, + 'I', 1523, + 'N', 1517, + '_', 1320, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1366, - 'd', 1379, - 'e', 1448, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1355, - 'n', 1395, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1496, - 'u', 1508, - 'w', 1421, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1336, + 'd', 1349, + 'e', 1416, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1325, + 'n', 1365, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1463, + 'u', 1475, + 'w', 1390, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(454); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || ';' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 455: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2174, - '-', 1906, - '.', 2477, - '0', 2462, - 'E', 1336, - 'I', 1556, - 'N', 1550, - '_', 1350, + '(', 1806, + '+', 2136, + '-', 1873, + '.', 2439, + '0', 2424, + 'E', 1309, + 'I', 1523, + 'N', 1517, + '_', 1320, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1366, - 'd', 1379, - 'e', 1335, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1355, - 'n', 1395, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1496, - 'u', 1508, - 'w', 1421, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1336, + 'd', 1349, + 'e', 1308, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1325, + 'n', 1365, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1463, + 'u', 1475, + 'w', 1390, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(456); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || ';' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 456: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2174, - '-', 1906, - '.', 2477, - '0', 2462, - 'I', 1556, - 'N', 1550, - '_', 1350, + '(', 1806, + '+', 2136, + '-', 1873, + '.', 2439, + '0', 2424, + 'I', 1523, + 'N', 1517, + '_', 1320, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1366, - 'd', 1379, - 'e', 1448, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1355, - 'n', 1395, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1496, - 'u', 1508, - 'w', 1421, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1336, + 'd', 1349, + 'e', 1416, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1325, + 'n', 1365, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1463, + 'u', 1475, + 'w', 1390, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(456); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || ';' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 457: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2174, - '-', 1906, - '.', 2477, - '0', 2396, - 'E', 1336, - 'I', 1556, - 'N', 1550, - '_', 1352, + '(', 1806, + '+', 2136, + '-', 1873, + '.', 2439, + '0', 2358, + 'E', 1309, + 'I', 1523, + 'N', 1517, + '_', 1322, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1366, - 'd', 1379, - 'e', 1335, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1355, - 'n', 1395, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1496, - 'u', 1508, - 'w', 1421, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1336, + 'd', 1349, + 'e', 1308, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1325, + 'n', 1365, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1463, + 'u', 1475, + 'w', 1390, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(456); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || ';' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 458: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2174, - '-', 1906, - '.', 2477, - '0', 2396, - 'I', 1556, - 'N', 1550, - '_', 1352, + '(', 1806, + '+', 2136, + '-', 1873, + '.', 2439, + '0', 2358, + 'I', 1523, + 'N', 1517, + '_', 1322, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1366, - 'd', 1379, - 'e', 1448, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1355, - 'n', 1395, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1496, - 'u', 1508, - 'w', 1421, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1336, + 'd', 1349, + 'e', 1416, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1325, + 'n', 1365, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1463, + 'u', 1475, + 'w', 1390, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(456); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || ';' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 459: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2174, - '-', 1906, - '.', 2363, - '0', 2462, - 'E', 1336, - 'I', 1556, - 'N', 1550, - '_', 1350, + '(', 1806, + '+', 2136, + '-', 1873, + '.', 2325, + '0', 2424, + 'E', 1309, + 'I', 1523, + 'N', 1517, + '_', 1320, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1366, - 'd', 1379, - 'e', 1335, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1355, - 'n', 1395, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1496, - 'u', 1508, - 'w', 1421, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1336, + 'd', 1349, + 'e', 1308, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1325, + 'n', 1365, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1463, + 'u', 1475, + 'w', 1390, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(456); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || ';' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 460: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2174, - '-', 1906, - '.', 2480, - '0', 2462, - 'E', 1336, - 'I', 1556, - 'N', 1550, - '_', 1350, + '(', 1806, + '+', 2136, + '-', 1873, + '.', 2442, + '0', 2424, + 'E', 1309, + 'I', 1523, + 'N', 1517, + '_', 1320, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1366, - 'd', 1379, - 'e', 1335, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1355, - 'n', 1395, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1496, - 'u', 1508, - 'w', 1421, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1336, + 'd', 1349, + 'e', 1308, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1325, + 'n', 1365, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1463, + 'u', 1475, + 'w', 1390, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(456); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || ';' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 461: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2174, - '-', 1906, - '.', 2480, - '0', 2396, - 'E', 1336, - 'I', 1556, - 'N', 1550, - '_', 1352, + '(', 1806, + '+', 2136, + '-', 1873, + '.', 2442, + '0', 2358, + 'E', 1309, + 'I', 1523, + 'N', 1517, + '_', 1322, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1366, - 'd', 1379, - 'e', 1335, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1355, - 'n', 1395, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1496, - 'u', 1508, - 'w', 1421, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1336, + 'd', 1349, + 'e', 1308, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1325, + 'n', 1365, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1463, + 'u', 1475, + 'w', 1390, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(456); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || ';' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 462: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 3322, - ',', 1835, - '-', 1902, - '.', 2364, - '0', 2461, - '?', 2102, - 'N', 3413, - '[', 1834, - '_', 2005, + '(', 1806, + '+', 3282, + ',', 1802, + '-', 1869, + '.', 2326, + '0', 2423, + '?', 2064, + 'N', 3373, + '[', 1801, + '_', 1972, '`', 834, - 'e', 3310, - 'f', 3346, - 'n', 3407, - 'o', 3312, - 't', 3385, - '{', 2000, - '}', 2001, - 'I', 3418, - 'i', 3418, + 'e', 3270, + 'f', 3306, + 'n', 3367, + 'o', 3272, + 't', 3345, + '{', 1967, + '}', 1968, + 'I', 3378, + 'i', 3378, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(467); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2474); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2436); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != ']') ADVANCE(3436); + lookahead != ']') ADVANCE(3396); END_STATE(); case 463: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 3322, - ',', 1835, - '-', 1902, - '.', 2364, - '0', 2461, - 'E', 3342, - 'N', 3413, - '[', 1834, - '_', 2005, + '(', 1806, + '+', 3282, + ',', 1802, + '-', 1869, + '.', 2326, + '0', 2423, + 'E', 3302, + 'N', 3373, + '[', 1801, + '_', 1972, '`', 834, - 'e', 3314, - 'f', 3346, - 'n', 3407, - 'o', 3312, - 't', 3385, - '{', 2000, - '}', 2001, - 'I', 3418, - 'i', 3418, + 'e', 3274, + 'f', 3306, + 'n', 3367, + 'o', 3272, + 't', 3345, + '{', 1967, + '}', 1968, + 'I', 3378, + 'i', 3378, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(469); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2474); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2436); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != ']') ADVANCE(3436); + lookahead != ']') ADVANCE(3396); END_STATE(); case 464: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 3322, - ',', 1835, - '-', 1902, - '.', 2364, - '0', 2461, - 'N', 3413, - '[', 1834, - '_', 2005, + '(', 1806, + '+', 3282, + ',', 1802, + '-', 1869, + '.', 2326, + '0', 2423, + 'N', 3373, + '[', 1801, + '_', 1972, '`', 834, - 'e', 3310, - 'f', 3346, - 'n', 3407, - 'o', 3312, - 't', 3385, - '{', 2000, - '}', 2001, - 'I', 3418, - 'i', 3418, + 'e', 3270, + 'f', 3306, + 'n', 3367, + 'o', 3272, + 't', 3345, + '{', 1967, + '}', 1968, + 'I', 3378, + 'i', 3378, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(469); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2474); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2436); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != ']') ADVANCE(3436); + lookahead != ']') ADVANCE(3396); END_STATE(); case 465: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 3322, - ',', 1835, - '-', 1902, - '.', 2481, - '0', 2395, - 'E', 3342, - 'N', 3413, - '[', 1834, - '_', 2006, + '(', 1806, + '+', 3282, + ',', 1802, + '-', 1869, + '.', 2443, + '0', 2357, + 'E', 3302, + 'N', 3373, + '[', 1801, + '_', 1973, '`', 834, - 'e', 3314, - 'f', 3346, - 'n', 3407, - 'o', 3312, - 't', 3385, - '{', 2000, - '}', 2001, - 'I', 3418, - 'i', 3418, + 'e', 3274, + 'f', 3306, + 'n', 3367, + 'o', 3272, + 't', 3345, + '{', 1967, + '}', 1968, + 'I', 3378, + 'i', 3378, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(469); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2405); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2367); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != ']') ADVANCE(3436); + lookahead != ']') ADVANCE(3396); END_STATE(); case 466: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 3322, - ',', 1835, - '-', 1902, - '.', 2481, - '0', 2395, - 'N', 3413, - '[', 1834, - '_', 2006, + '(', 1806, + '+', 3282, + ',', 1802, + '-', 1869, + '.', 2443, + '0', 2357, + 'N', 3373, + '[', 1801, + '_', 1973, '`', 834, - 'e', 3310, - 'f', 3346, - 'n', 3407, - 'o', 3312, - 't', 3385, - '{', 2000, - '}', 2001, - 'I', 3418, - 'i', 3418, + 'e', 3270, + 'f', 3306, + 'n', 3367, + 'o', 3272, + 't', 3345, + '{', 1967, + '}', 1968, + 'I', 3378, + 'i', 3378, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(469); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2405); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2367); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != ']') ADVANCE(3436); + lookahead != ']') ADVANCE(3396); END_STATE(); case 467: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 3322, - ',', 1835, - '-', 1902, - '.', 2481, - '0', 2461, - '?', 2102, - 'N', 3413, - '[', 1834, - '_', 2005, + '(', 1806, + '+', 3282, + ',', 1802, + '-', 1869, + '.', 2443, + '0', 2423, + '?', 2064, + 'N', 3373, + '[', 1801, + '_', 1972, '`', 834, - 'e', 3310, - 'f', 3346, - 'n', 3407, - 'o', 3312, - 't', 3385, - '{', 2000, - '}', 2001, - 'I', 3418, - 'i', 3418, + 'e', 3270, + 'f', 3306, + 'n', 3367, + 'o', 3272, + 't', 3345, + '{', 1967, + '}', 1968, + 'I', 3378, + 'i', 3378, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(467); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2474); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2436); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != ']') ADVANCE(3436); + lookahead != ']') ADVANCE(3396); END_STATE(); case 468: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 3322, - ',', 1835, - '-', 1902, - '.', 2481, - '0', 2461, - 'E', 3342, - 'N', 3413, - '[', 1834, - '_', 2005, + '(', 1806, + '+', 3282, + ',', 1802, + '-', 1869, + '.', 2443, + '0', 2423, + 'E', 3302, + 'N', 3373, + '[', 1801, + '_', 1972, '`', 834, - 'e', 3314, - 'f', 3346, - 'n', 3407, - 'o', 3312, - 't', 3385, - '{', 2000, - '}', 2001, - 'I', 3418, - 'i', 3418, + 'e', 3274, + 'f', 3306, + 'n', 3367, + 'o', 3272, + 't', 3345, + '{', 1967, + '}', 1968, + 'I', 3378, + 'i', 3378, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(469); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2474); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2436); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != ']') ADVANCE(3436); + lookahead != ']') ADVANCE(3396); END_STATE(); case 469: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 3322, - ',', 1835, - '-', 1902, - '.', 2481, - '0', 2461, - 'N', 3413, - '[', 1834, - '_', 2005, + '(', 1806, + '+', 3282, + ',', 1802, + '-', 1869, + '.', 2443, + '0', 2423, + 'N', 3373, + '[', 1801, + '_', 1972, '`', 834, - 'e', 3310, - 'f', 3346, - 'n', 3407, - 'o', 3312, - 't', 3385, - '{', 2000, - '}', 2001, - 'I', 3418, - 'i', 3418, + 'e', 3270, + 'f', 3306, + 'n', 3367, + 'o', 3272, + 't', 3345, + '{', 1967, + '}', 1968, + 'I', 3378, + 'i', 3378, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(469); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2474); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2436); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != ']') ADVANCE(3436); + lookahead != ']') ADVANCE(3396); END_STATE(); case 470: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 3322, - ',', 1835, - '-', 1902, - '.', 2365, - '0', 2461, - '?', 2102, - 'N', 3413, - '[', 1834, - '_', 2005, + '(', 1806, + '+', 3282, + ',', 1802, + '-', 1869, + '.', 2327, + '0', 2423, + '?', 2064, + 'N', 3373, + '[', 1801, + '_', 1972, '`', 834, - 'e', 3310, - 'f', 3346, - 'n', 3407, - 'o', 3312, - 't', 3385, - '{', 2000, - '}', 2001, - 'I', 3418, - 'i', 3418, + 'e', 3270, + 'f', 3306, + 'n', 3367, + 'o', 3272, + 't', 3345, + '{', 1967, + '}', 1968, + 'I', 3378, + 'i', 3378, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(467); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2474); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2436); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != ']') ADVANCE(3436); + lookahead != ']') ADVANCE(3396); END_STATE(); case 471: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 3322, - ',', 1835, - '-', 1902, - '.', 2365, - '0', 2461, - 'E', 3342, - 'N', 3413, - '[', 1834, - '_', 2005, + '(', 1806, + '+', 3282, + ',', 1802, + '-', 1869, + '.', 2327, + '0', 2423, + 'E', 3302, + 'N', 3373, + '[', 1801, + '_', 1972, '`', 834, - 'e', 3314, - 'f', 3346, - 'n', 3407, - 'o', 3312, - 't', 3385, - '{', 2000, - '}', 2001, - 'I', 3418, - 'i', 3418, + 'e', 3274, + 'f', 3306, + 'n', 3367, + 'o', 3272, + 't', 3345, + '{', 1967, + '}', 1968, + 'I', 3378, + 'i', 3378, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(469); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2474); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2436); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != ']') ADVANCE(3436); + lookahead != ']') ADVANCE(3396); END_STATE(); case 472: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 3322, - ',', 1835, - '-', 1902, - '.', 2365, - '0', 2461, - 'N', 3413, - '[', 1834, - '_', 2005, + '(', 1806, + '+', 3282, + ',', 1802, + '-', 1869, + '.', 2327, + '0', 2423, + 'N', 3373, + '[', 1801, + '_', 1972, '`', 834, - 'e', 3310, - 'f', 3346, - 'n', 3407, - 'o', 3312, - 't', 3385, - '{', 2000, - '}', 2001, - 'I', 3418, - 'i', 3418, + 'e', 3270, + 'f', 3306, + 'n', 3367, + 'o', 3272, + 't', 3345, + '{', 1967, + '}', 1968, + 'I', 3378, + 'i', 3378, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(469); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2474); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2436); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != ']') ADVANCE(3436); + lookahead != ']') ADVANCE(3396); END_STATE(); case 473: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 3322, - ',', 1835, - '-', 1902, - '.', 2480, - '0', 2395, - 'E', 3342, - 'N', 3413, - '[', 1834, - '_', 2006, + '(', 1806, + '+', 3282, + ',', 1802, + '-', 1869, + '.', 2442, + '0', 2357, + 'E', 3302, + 'N', 3373, + '[', 1801, + '_', 1973, '`', 834, - 'e', 3314, - 'f', 3346, - 'n', 3407, - 'o', 3312, - 't', 3385, - '{', 2000, - '}', 2001, - 'I', 3418, - 'i', 3418, + 'e', 3274, + 'f', 3306, + 'n', 3367, + 'o', 3272, + 't', 3345, + '{', 1967, + '}', 1968, + 'I', 3378, + 'i', 3378, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(469); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2405); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2367); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != ']') ADVANCE(3436); + lookahead != ']') ADVANCE(3396); END_STATE(); case 474: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 3322, - ',', 1835, - '-', 1902, - '.', 2480, - '0', 2461, - 'E', 3342, - 'N', 3413, - '[', 1834, - '_', 2005, + '(', 1806, + '+', 3282, + ',', 1802, + '-', 1869, + '.', 2442, + '0', 2423, + 'E', 3302, + 'N', 3373, + '[', 1801, + '_', 1972, '`', 834, - 'e', 3314, - 'f', 3346, - 'n', 3407, - 'o', 3312, - 't', 3385, - '{', 2000, - '}', 2001, - 'I', 3418, - 'i', 3418, + 'e', 3274, + 'f', 3306, + 'n', 3367, + 'o', 3272, + 't', 3345, + '{', 1967, + '}', 1968, + 'I', 3378, + 'i', 3378, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(469); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2474); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2436); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != ']') ADVANCE(3436); + lookahead != ']') ADVANCE(3396); END_STATE(); case 475: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 3322, - ',', 1835, - '-', 1902, - '.', 2480, - '0', 2461, - 'N', 3413, - '[', 1834, - '_', 2005, + '(', 1806, + '+', 3282, + ',', 1802, + '-', 1869, + '.', 2442, + '0', 2423, + 'N', 3373, + '[', 1801, + '_', 1972, '`', 834, - 'e', 3310, - 'f', 3346, - 'n', 3407, - 'o', 3312, - 't', 3385, - '{', 2000, - '}', 2001, - 'I', 3418, - 'i', 3418, + 'e', 3270, + 'f', 3306, + 'n', 3367, + 'o', 3272, + 't', 3345, + '{', 1967, + '}', 1968, + 'I', 3378, + 'i', 3378, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(469); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2474); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2436); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != ']') ADVANCE(3436); + lookahead != ']') ADVANCE(3396); END_STATE(); case 476: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 3322, - '-', 1902, - '.', 2481, - '0', 2461, - 'N', 3413, - '[', 1834, - '_', 3339, + '(', 1806, + '+', 3282, + '-', 1869, + '.', 2443, + '0', 2423, + 'N', 3373, + '[', 1801, + '_', 3299, '`', 834, - 'e', 3310, - 'f', 3346, - 'n', 3407, - 'o', 3312, - 't', 3385, - '{', 2000, - 'I', 3418, - 'i', 3418, + 'e', 3270, + 'f', 3306, + 'n', 3367, + 'o', 3272, + 't', 3345, + '{', 1967, + 'I', 3378, + 'i', 3378, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(476); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2474); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2436); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - lookahead != '}') ADVANCE(3436); + lookahead != '}') ADVANCE(3396); END_STATE(); case 477: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 3322, - '-', 1902, - '.', 2481, - '0', 2461, - 'N', 3413, - '[', 1834, - '_', 2005, + '(', 1806, + '+', 3282, + '-', 1869, + '.', 2443, + '0', 2423, + 'N', 3373, + '[', 1801, + '_', 1972, '`', 834, - 'e', 3310, - 'f', 3346, - 'n', 3407, - 'o', 3312, - 't', 3385, - '{', 2000, - '}', 2001, - 'I', 3418, - 'i', 3418, + 'e', 3270, + 'f', 3306, + 'n', 3367, + 'o', 3272, + 't', 3345, + '{', 1967, + '}', 1968, + 'I', 3378, + 'i', 3378, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(477); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2474); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2436); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != ']') ADVANCE(3436); + lookahead != ']') ADVANCE(3396); END_STATE(); case 478: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2364, - '0', 4851, - 'E', 4838, - 'G', 4841, - 'K', 4841, - 'M', 4841, - 'N', 4864, - 'P', 4841, - 'T', 4841, - '[', 1834, - ']', 1838, - '_', 4848, + '(', 1806, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2326, + '0', 4806, + 'E', 4793, + 'G', 4796, + 'K', 4796, + 'M', 4796, + 'N', 4819, + 'P', 4796, + 'T', 4796, + '[', 1801, + ']', 1805, + '_', 4803, '`', 834, - 'd', 4854, - 'e', 4837, - 'f', 4853, - 'g', 4840, - 'h', 4860, - 'k', 4840, - 'm', 4842, - 'n', 4862, - 'o', 4836, - 'p', 4840, - 's', 4856, - 't', 4839, - 'u', 4861, - 'w', 4858, - '{', 2000, - 0xb5, 4861, - 'B', 2507, - 'b', 2507, - 'I', 4865, - 'i', 4865, + 'd', 4809, + 'e', 4792, + 'f', 4808, + 'g', 4795, + 'h', 4815, + 'k', 4795, + 'm', 4797, + 'n', 4817, + 'o', 4791, + 'p', 4795, + 's', 4811, + 't', 4794, + 'u', 4816, + 'w', 4813, + '{', 1967, + 0xb5, 4816, + 'B', 2469, + 'b', 2469, + 'I', 4820, + 'i', 4820, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(502); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4852); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4807); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4833); + lookahead != '}') ADVANCE(4788); END_STATE(); case 479: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2364, - '0', 4851, - 'E', 4841, - 'G', 4841, - 'K', 4841, - 'M', 4841, - 'N', 4864, - 'P', 4841, - 'T', 4841, - '[', 1834, - ']', 1838, - '_', 4848, + '(', 1806, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2326, + '0', 4806, + 'E', 4796, + 'G', 4796, + 'K', 4796, + 'M', 4796, + 'N', 4819, + 'P', 4796, + 'T', 4796, + '[', 1801, + ']', 1805, + '_', 4803, '`', 834, - 'd', 4854, - 'e', 4834, - 'f', 4853, - 'g', 4840, - 'h', 4860, - 'k', 4840, - 'm', 4842, - 'n', 4862, - 'o', 4836, - 'p', 4840, - 's', 4856, - 't', 4839, - 'u', 4861, - 'w', 4858, - '{', 2000, - 0xb5, 4861, - 'B', 2507, - 'b', 2507, - 'I', 4865, - 'i', 4865, + 'd', 4809, + 'e', 4789, + 'f', 4808, + 'g', 4795, + 'h', 4815, + 'k', 4795, + 'm', 4797, + 'n', 4817, + 'o', 4791, + 'p', 4795, + 's', 4811, + 't', 4794, + 'u', 4816, + 'w', 4813, + '{', 1967, + 0xb5, 4816, + 'B', 2469, + 'b', 2469, + 'I', 4820, + 'i', 4820, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(502); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4852); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4807); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4833); + lookahead != '}') ADVANCE(4788); END_STATE(); case 480: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2364, - '0', 4722, - 'E', 4719, - 'N', 4727, - '[', 1834, - ']', 1838, - '_', 4717, + '(', 1806, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2326, + '0', 4677, + 'E', 4674, + 'N', 4682, + '[', 1801, + ']', 1805, + '_', 4672, '`', 834, - 'e', 4715, - 'f', 4724, - 'n', 4726, - 'o', 4714, - 't', 4725, - '{', 2000, - '}', 2001, - 'I', 4728, - 'i', 4728, + 'e', 4670, + 'f', 4679, + 'n', 4681, + 'o', 4669, + 't', 4680, + '{', 1967, + '}', 1968, + 'I', 4683, + 'i', 4683, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(501); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4723); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4678); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';') ADVANCE(4712); + lookahead != ';') ADVANCE(4667); END_STATE(); case 481: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2364, - '0', 4722, - 'N', 4727, - '[', 1834, - ']', 1838, - '_', 4717, + '(', 1806, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2326, + '0', 4677, + 'N', 4682, + '[', 1801, + ']', 1805, + '_', 4672, '`', 834, - 'e', 4713, - 'f', 4724, - 'n', 4726, - 'o', 4714, - 't', 4725, - '{', 2000, - '}', 2001, - 'I', 4728, - 'i', 4728, + 'e', 4668, + 'f', 4679, + 'n', 4681, + 'o', 4669, + 't', 4680, + '{', 1967, + '}', 1968, + 'I', 4683, + 'i', 4683, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(501); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4723); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4678); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';') ADVANCE(4712); + lookahead != ';') ADVANCE(4667); END_STATE(); case 482: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2364, - '0', 2394, - 'E', 4838, - 'G', 4841, - 'K', 4841, - 'M', 4841, - 'N', 4864, - 'P', 4841, - 'T', 4841, - '[', 1834, - ']', 1838, - '_', 4850, + '(', 1806, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2326, + '0', 2356, + 'E', 4793, + 'G', 4796, + 'K', 4796, + 'M', 4796, + 'N', 4819, + 'P', 4796, + 'T', 4796, + '[', 1801, + ']', 1805, + '_', 4805, '`', 834, - 'd', 4854, - 'e', 4837, - 'f', 4853, - 'g', 4840, - 'h', 4860, - 'k', 4840, - 'm', 4842, - 'n', 4862, - 'o', 4836, - 'p', 4840, - 's', 4856, - 't', 4839, - 'u', 4861, - 'w', 4858, - '{', 2000, - 0xb5, 4861, - 'B', 2507, - 'b', 2507, - 'I', 4865, - 'i', 4865, + 'd', 4809, + 'e', 4792, + 'f', 4808, + 'g', 4795, + 'h', 4815, + 'k', 4795, + 'm', 4797, + 'n', 4817, + 'o', 4791, + 'p', 4795, + 's', 4811, + 't', 4794, + 'u', 4816, + 'w', 4813, + '{', 1967, + 0xb5, 4816, + 'B', 2469, + 'b', 2469, + 'I', 4820, + 'i', 4820, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(502); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4833); + lookahead != '}') ADVANCE(4788); END_STATE(); case 483: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2364, - '0', 2394, - 'E', 3464, - 'N', 3557, - '[', 1834, - ']', 1838, - '_', 3467, + '(', 1806, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2326, + '0', 2356, + 'E', 4674, + 'N', 4682, + '[', 1801, + ']', 1805, + '_', 4676, '`', 834, - 'e', 3444, - 'f', 3474, - 'n', 3554, - 'o', 3441, - 't', 3540, - '{', 2000, - 'I', 3561, - 'i', 3561, + 'e', 4670, + 'f', 4679, + 'n', 4681, + 'o', 4669, + 't', 4680, + '{', 1967, + 'I', 4683, + 'i', 4683, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(502); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(4667); END_STATE(); case 484: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2364, - '0', 2394, - 'E', 4719, - 'N', 4727, - '[', 1834, - ']', 1838, - '_', 4721, + '(', 1806, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2326, + '0', 2356, + 'E', 3424, + 'N', 3516, + '[', 1801, + ']', 1805, + '_', 3427, '`', 834, - 'e', 4715, - 'f', 4724, - 'n', 4726, - 'o', 4714, - 't', 4725, - '{', 2000, - 'I', 4728, - 'i', 4728, + 'e', 3404, + 'f', 3434, + 'n', 3513, + 'o', 3401, + 't', 3499, + '{', 1967, + 'I', 3520, + 'i', 3520, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(502); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4712); + lookahead != '}') ADVANCE(3397); END_STATE(); case 485: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2364, - '0', 3470, - 'E', 3464, - 'N', 3557, - '[', 1834, - ']', 1838, - '_', 3460, + '(', 1806, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2326, + '0', 3430, + 'E', 3424, + 'N', 3516, + '[', 1801, + ']', 1805, + '_', 3420, '`', 834, - 'e', 3444, - 'f', 3474, - 'n', 3554, - 'o', 3441, - 't', 3540, - '{', 2000, - 'I', 3561, - 'i', 3561, + 'e', 3404, + 'f', 3434, + 'n', 3513, + 'o', 3401, + 't', 3499, + '{', 1967, + 'I', 3520, + 'i', 3520, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(502); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3472); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3432); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 486: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2364, - '0', 3470, - 'N', 3557, - '[', 1834, - ']', 1838, - '_', 3460, + '(', 1806, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2326, + '0', 3430, + 'N', 3516, + '[', 1801, + ']', 1805, + '_', 3420, '`', 834, - 'e', 3439, - 'f', 3474, - 'n', 3554, - 'o', 3441, - 't', 3540, - '{', 2000, - 'I', 3561, - 'i', 3561, + 'e', 3399, + 'f', 3434, + 'n', 3513, + 'o', 3401, + 't', 3499, + '{', 1967, + 'I', 3520, + 'i', 3520, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(502); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3472); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3432); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 487: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2364, - '0', 2460, - '?', 2102, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4622, + '(', 1806, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2326, + '0', 2422, + '?', 2064, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4577, '`', 834, - 'e', 4599, - 'f', 4629, - 'n', 4682, - 'o', 4601, - 't', 4663, - '{', 2000, - 'I', 4692, - 'i', 4692, + 'e', 4554, + 'f', 4584, + 'n', 4637, + 'o', 4556, + 't', 4618, + '{', 1967, + 'I', 4647, + 'i', 4647, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(498); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2473); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2435); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 488: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2364, - '0', 2460, - 'E', 4625, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4622, + '(', 1806, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2326, + '0', 2422, + 'E', 4580, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4577, '`', 834, - 'e', 4602, - 'f', 4629, - 'n', 4682, - 'o', 4601, - 't', 4663, - '{', 2000, - 'I', 4692, - 'i', 4692, + 'e', 4557, + 'f', 4584, + 'n', 4637, + 'o', 4556, + 't', 4618, + '{', 1967, + 'I', 4647, + 'i', 4647, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(502); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2473); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2435); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 489: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2364, - '0', 2460, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4622, + '(', 1806, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2326, + '0', 2422, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4577, '`', 834, - 'e', 4599, - 'f', 4629, - 'n', 4682, - 'o', 4601, - 't', 4663, - '{', 2000, - 'I', 4692, - 'i', 4692, + 'e', 4554, + 'f', 4584, + 'n', 4637, + 'o', 4556, + 't', 4618, + '{', 1967, + 'I', 4647, + 'i', 4647, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(502); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2473); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2435); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 490: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2481, - '0', 4851, - 'N', 4864, - '[', 1834, - ']', 1838, - '_', 4848, + '(', 1806, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2443, + '0', 4806, + 'N', 4819, + '[', 1801, + ']', 1805, + '_', 4803, '`', 834, - 'e', 4835, - 'f', 4853, - 'n', 4863, - 'o', 4836, - 't', 4859, - '{', 2000, - 'I', 4865, - 'i', 4865, + 'e', 4790, + 'f', 4808, + 'n', 4818, + 'o', 4791, + 't', 4814, + '{', 1967, + 'I', 4820, + 'i', 4820, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(502); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4852); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4807); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4833); + lookahead != '}') ADVANCE(4788); END_STATE(); case 491: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2481, - '0', 2394, - 'E', 4625, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4627, + '(', 1806, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2443, + '0', 2356, + 'E', 4580, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4582, '`', 834, - 'e', 4602, - 'f', 4629, - 'n', 4682, - 'o', 4601, - 't', 4663, - '{', 2000, - 'I', 4692, - 'i', 4692, + 'e', 4557, + 'f', 4584, + 'n', 4637, + 'o', 4556, + 't', 4618, + '{', 1967, + 'I', 4647, + 'i', 4647, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(502); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 492: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2481, - '0', 2394, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4627, + '(', 1806, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2443, + '0', 2356, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4582, '`', 834, - 'e', 4599, - 'f', 4629, - 'n', 4682, - 'o', 4601, - 't', 4663, - '{', 2000, - 'I', 4692, - 'i', 4692, + 'e', 4554, + 'f', 4584, + 'n', 4637, + 'o', 4556, + 't', 4618, + '{', 1967, + 'I', 4647, + 'i', 4647, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(502); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 493: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2481, - '0', 2394, - 'N', 3557, - '[', 1834, - ']', 1838, - '_', 3467, + '(', 1806, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2443, + '0', 2356, + 'N', 3516, + '[', 1801, + ']', 1805, + '_', 3427, '`', 834, - 'e', 3439, - 'f', 3474, - 'n', 3554, - 'o', 3441, - 't', 3540, - '{', 2000, - 'I', 3561, - 'i', 3561, + 'e', 3399, + 'f', 3434, + 'n', 3513, + 'o', 3401, + 't', 3499, + '{', 1967, + 'I', 3520, + 'i', 3520, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(502); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 494: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2481, - '0', 2394, - 'N', 4727, - '[', 1834, - ']', 1838, - '_', 4721, + '(', 1806, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2443, + '0', 2356, + 'N', 4682, + '[', 1801, + ']', 1805, + '_', 4676, '`', 834, - 'e', 4713, - 'f', 4724, - 'n', 4726, - 'o', 4714, - 't', 4725, - '{', 2000, - 'I', 4728, - 'i', 4728, + 'e', 4668, + 'f', 4679, + 'n', 4681, + 'o', 4669, + 't', 4680, + '{', 1967, + 'I', 4683, + 'i', 4683, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(502); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4712); + lookahead != '}') ADVANCE(4667); END_STATE(); case 495: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2481, - '0', 3871, - 'N', 4002, - '[', 1834, - ']', 1838, - '_', 3864, + '(', 1806, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2443, + '0', 3828, + 'N', 3958, + '[', 1801, + ']', 1805, + '_', 3821, '`', 834, - 'e', 3795, - 'f', 3879, - 'n', 3999, - 'o', 3797, - 't', 3978, - '{', 2000, - 'I', 4006, - 'i', 4006, + 'e', 3752, + 'f', 3836, + 'n', 3955, + 'o', 3754, + 't', 3934, + '{', 1967, + 'I', 3962, + 'i', 3962, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(502); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3875); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3832); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3791); + lookahead != '}') ADVANCE(3748); END_STATE(); case 496: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2481, - '0', 2460, - ';', 1328, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4622, + '(', 1806, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2443, + '0', 2422, + ';', 1303, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4577, '`', 834, - 'e', 4599, - 'f', 4629, - 'n', 4682, - 'o', 4601, - 't', 4663, - '{', 2000, - 'I', 4692, - 'i', 4692, + 'e', 4554, + 'f', 4584, + 'n', 4637, + 'o', 4556, + 't', 4618, + '{', 1967, + 'I', 4647, + 'i', 4647, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(496); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2473); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2435); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 497: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2481, - '0', 2460, - '=', 1301, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4622, + '(', 1806, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2443, + '0', 2422, + '=', 1271, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4577, '`', 834, - 'e', 4599, - 'f', 4629, - 'n', 4682, - 'o', 4601, - 't', 4663, - '{', 2000, - 'I', 4692, - 'i', 4692, + 'e', 4554, + 'f', 4584, + 'n', 4637, + 'o', 4556, + 't', 4618, + '{', 1967, + 'I', 4647, + 'i', 4647, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(497); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2473); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2435); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 498: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2481, - '0', 2460, - '?', 2102, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4622, + '(', 1806, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2443, + '0', 2422, + '?', 2064, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4577, '`', 834, - 'e', 4599, - 'f', 4629, - 'n', 4682, - 'o', 4601, - 't', 4663, - '{', 2000, - 'I', 4692, - 'i', 4692, + 'e', 4554, + 'f', 4584, + 'n', 4637, + 'o', 4556, + 't', 4618, + '{', 1967, + 'I', 4647, + 'i', 4647, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(498); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2473); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2435); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 499: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2481, - '0', 2460, - 'E', 4625, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4622, + '(', 1806, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2443, + '0', 2422, + 'E', 4580, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4577, '`', 834, - 'e', 4602, - 'f', 4629, - 'n', 4682, - 'o', 4601, - 't', 4663, - '{', 2000, - 'I', 4692, - 'i', 4692, + 'e', 4557, + 'f', 4584, + 'n', 4637, + 'o', 4556, + 't', 4618, + '{', 1967, + 'I', 4647, + 'i', 4647, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(502); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2473); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2435); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 500: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2481, - '0', 2460, - 'N', 4688, - '[', 2535, - ']', 1838, - '_', 4622, + '(', 1806, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2443, + '0', 2422, + 'N', 4643, + '[', 2497, + ']', 1805, + '_', 4577, '`', 834, - 'e', 4599, - 'f', 4629, - 'n', 4682, - 'o', 4601, - 't', 4663, - '{', 2000, - 'I', 4692, - 'i', 4692, + 'e', 4554, + 'f', 4584, + 'n', 4637, + 'o', 4556, + 't', 4618, + '{', 1967, + 'I', 4647, + 'i', 4647, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(502); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2473); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2435); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 501: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2481, - '0', 2460, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4622, + '(', 1806, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2443, + '0', 2422, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4577, '`', 834, - 'e', 4599, - 'f', 4629, - 'n', 4682, - 'o', 4601, - 't', 4663, - '{', 2000, - '}', 2001, - 'I', 4692, - 'i', 4692, + 'e', 4554, + 'f', 4584, + 'n', 4637, + 'o', 4556, + 't', 4618, + '{', 1967, + '}', 1968, + 'I', 4647, + 'i', 4647, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(501); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2473); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2435); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';') ADVANCE(4711); + lookahead != ';') ADVANCE(4666); END_STATE(); case 502: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2481, - '0', 2460, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4622, + '(', 1806, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2443, + '0', 2422, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4577, '`', 834, - 'e', 4599, - 'f', 4629, - 'n', 4682, - 'o', 4601, - 't', 4663, - '{', 2000, - 'I', 4692, - 'i', 4692, + 'e', 4554, + 'f', 4584, + 'n', 4637, + 'o', 4556, + 't', 4618, + '{', 1967, + 'I', 4647, + 'i', 4647, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(502); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2473); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2435); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 503: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2481, - '0', 2460, - 'N', 1776, - '[', 1834, - ']', 1838, - '_', 1660, + '(', 1806, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2443, + '0', 2422, + 'N', 1743, + '[', 1801, + ']', 1805, + '_', 1627, '`', 834, - 'e', 1654, - 'f', 1664, - 'n', 1763, - 'o', 1655, - 't', 1736, - '{', 2000, - 'I', 1786, - 'i', 1786, + 'e', 1621, + 'f', 1631, + 'n', 1730, + 'o', 1622, + 't', 1703, + '{', 1967, + 'I', 1753, + 'i', 1753, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(502); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2473); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1794); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2435); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1761); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 504: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2365, - '0', 4722, - 'E', 4719, - 'N', 4727, - '[', 1834, - ']', 1838, - '_', 4717, + '(', 1806, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2327, + '0', 4677, + 'E', 4674, + 'N', 4682, + '[', 1801, + ']', 1805, + '_', 4672, '`', 834, - 'e', 4715, - 'f', 4724, - 'n', 4726, - 'o', 4714, - 't', 4725, - '{', 2000, - 'I', 4728, - 'i', 4728, + 'e', 4670, + 'f', 4679, + 'n', 4681, + 'o', 4669, + 't', 4680, + '{', 1967, + 'I', 4683, + 'i', 4683, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(502); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4723); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4678); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4712); + lookahead != '}') ADVANCE(4667); END_STATE(); case 505: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2365, - '0', 4722, - 'N', 4727, - '[', 1834, - ']', 1838, - '_', 4717, + '(', 1806, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2327, + '0', 4677, + 'N', 4682, + '[', 1801, + ']', 1805, + '_', 4672, '`', 834, - 'e', 4713, - 'f', 4724, - 'n', 4726, - 'o', 4714, - 't', 4725, - '{', 2000, - 'I', 4728, - 'i', 4728, + 'e', 4668, + 'f', 4679, + 'n', 4681, + 'o', 4669, + 't', 4680, + '{', 1967, + 'I', 4683, + 'i', 4683, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(502); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4723); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4678); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4712); + lookahead != '}') ADVANCE(4667); END_STATE(); case 506: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2365, - '0', 2394, - 'E', 3464, - 'N', 3557, - '[', 1834, - ']', 1838, - '_', 3467, + '(', 1806, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2327, + '0', 2356, + 'E', 4674, + 'N', 4682, + '[', 1801, + ']', 1805, + '_', 4676, '`', 834, - 'e', 3444, - 'f', 3474, - 'n', 3554, - 'o', 3441, - 't', 3540, - '{', 2000, - 'I', 3561, - 'i', 3561, + 'e', 4670, + 'f', 4679, + 'n', 4681, + 'o', 4669, + 't', 4680, + '{', 1967, + 'I', 4683, + 'i', 4683, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(502); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(4667); END_STATE(); case 507: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2365, - '0', 2394, - 'E', 4719, - 'N', 4727, - '[', 1834, - ']', 1838, - '_', 4721, + '(', 1806, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2327, + '0', 2356, + 'E', 3424, + 'N', 3516, + '[', 1801, + ']', 1805, + '_', 3427, '`', 834, - 'e', 4715, - 'f', 4724, - 'n', 4726, - 'o', 4714, - 't', 4725, - '{', 2000, - 'I', 4728, - 'i', 4728, + 'e', 3404, + 'f', 3434, + 'n', 3513, + 'o', 3401, + 't', 3499, + '{', 1967, + 'I', 3520, + 'i', 3520, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(502); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4712); + lookahead != '}') ADVANCE(3397); END_STATE(); case 508: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2365, - '0', 2394, - 'N', 3557, - '[', 1834, - ']', 1838, - '_', 3467, + '(', 1806, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2327, + '0', 2356, + 'N', 3516, + '[', 1801, + ']', 1805, + '_', 3427, '`', 834, - 'e', 3439, - 'f', 3474, - 'n', 3554, - 'o', 3441, - 't', 3540, - '{', 2000, - 'I', 3561, - 'i', 3561, + 'e', 3399, + 'f', 3434, + 'n', 3513, + 'o', 3401, + 't', 3499, + '{', 1967, + 'I', 3520, + 'i', 3520, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(502); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 509: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2365, - '0', 2394, - 'N', 4727, - '[', 1834, - ']', 1838, - '_', 4721, + '(', 1806, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2327, + '0', 2356, + 'N', 4682, + '[', 1801, + ']', 1805, + '_', 4676, '`', 834, - 'e', 4713, - 'f', 4724, - 'n', 4726, - 'o', 4714, - 't', 4725, - '{', 2000, - 'I', 4728, - 'i', 4728, + 'e', 4668, + 'f', 4679, + 'n', 4681, + 'o', 4669, + 't', 4680, + '{', 1967, + 'I', 4683, + 'i', 4683, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(502); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4712); + lookahead != '}') ADVANCE(4667); END_STATE(); case 510: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2365, - '0', 3470, - 'E', 3464, - 'N', 3557, - '[', 1834, - ']', 1838, - '_', 3460, + '(', 1806, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2327, + '0', 3430, + 'E', 3424, + 'N', 3516, + '[', 1801, + ']', 1805, + '_', 3420, '`', 834, - 'e', 3444, - 'f', 3474, - 'n', 3554, - 'o', 3441, - 't', 3540, - '{', 2000, - 'I', 3561, - 'i', 3561, + 'e', 3404, + 'f', 3434, + 'n', 3513, + 'o', 3401, + 't', 3499, + '{', 1967, + 'I', 3520, + 'i', 3520, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(502); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3472); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3432); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 511: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2365, - '0', 3470, - 'N', 3557, - '[', 1834, - ']', 1838, - '_', 3460, + '(', 1806, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2327, + '0', 3430, + 'N', 3516, + '[', 1801, + ']', 1805, + '_', 3420, '`', 834, - 'e', 3439, - 'f', 3474, - 'n', 3554, - 'o', 3441, - 't', 3540, - '{', 2000, - 'I', 3561, - 'i', 3561, + 'e', 3399, + 'f', 3434, + 'n', 3513, + 'o', 3401, + 't', 3499, + '{', 1967, + 'I', 3520, + 'i', 3520, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(502); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3472); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3432); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 512: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2365, - '0', 2460, - ';', 1328, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4622, + '(', 1806, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2327, + '0', 2422, + ';', 1303, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4577, '`', 834, - 'e', 4599, - 'f', 4629, - 'n', 4682, - 'o', 4601, - 't', 4663, - '{', 2000, - 'I', 4692, - 'i', 4692, + 'e', 4554, + 'f', 4584, + 'n', 4637, + 'o', 4556, + 't', 4618, + '{', 1967, + 'I', 4647, + 'i', 4647, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(496); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2473); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2435); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 513: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2365, - '0', 2460, - '?', 2102, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4622, + '(', 1806, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2327, + '0', 2422, + '?', 2064, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4577, '`', 834, - 'e', 4599, - 'f', 4629, - 'n', 4682, - 'o', 4601, - 't', 4663, - '{', 2000, - 'I', 4692, - 'i', 4692, + 'e', 4554, + 'f', 4584, + 'n', 4637, + 'o', 4556, + 't', 4618, + '{', 1967, + 'I', 4647, + 'i', 4647, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(498); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2473); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2435); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 514: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2365, - '0', 2460, - 'E', 4625, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4622, + '(', 1806, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2327, + '0', 2422, + 'E', 4580, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4577, '`', 834, - 'e', 4602, - 'f', 4629, - 'n', 4682, - 'o', 4601, - 't', 4663, - '{', 2000, - 'I', 4692, - 'i', 4692, + 'e', 4557, + 'f', 4584, + 'n', 4637, + 'o', 4556, + 't', 4618, + '{', 1967, + 'I', 4647, + 'i', 4647, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(502); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2473); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2435); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 515: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2480, - '0', 2394, - 'E', 4625, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4627, + '(', 1806, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2442, + '0', 2356, + 'E', 4580, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4582, '`', 834, - 'e', 4602, - 'f', 4629, - 'n', 4682, - 'o', 4601, - 't', 4663, - '{', 2000, - 'I', 4692, - 'i', 4692, + 'e', 4557, + 'f', 4584, + 'n', 4637, + 'o', 4556, + 't', 4618, + '{', 1967, + 'I', 4647, + 'i', 4647, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(502); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 516: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2480, - '0', 2460, - 'E', 4625, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4622, + '(', 1806, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2442, + '0', 2422, + 'E', 4580, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4577, '`', 834, - 'e', 4602, - 'f', 4629, - 'n', 4682, - 'o', 4601, - 't', 4663, - '{', 2000, - 'I', 4692, - 'i', 4692, + 'e', 4557, + 'f', 4584, + 'n', 4637, + 'o', 4556, + 't', 4618, + '{', 1967, + 'I', 4647, + 'i', 4647, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(502); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2473); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2435); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 517: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 1835, - '-', 1892, - '.', 2480, - '0', 2460, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4622, + '(', 1806, + '+', 2137, + ',', 1802, + '-', 1859, + '.', 2442, + '0', 2422, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4577, '`', 834, - 'e', 4599, - 'f', 4629, - 'n', 4682, - 'o', 4601, - 't', 4663, - '{', 2000, - 'I', 4692, - 'i', 4692, + 'e', 4554, + 'f', 4584, + 'n', 4637, + 'o', 4556, + 't', 4618, + '{', 1967, + 'I', 4647, + 'i', 4647, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(502); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2473); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2435); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 518: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 3211, - '-', 1892, - '.', 2364, - '0', 2394, - 'E', 3464, - 'N', 3557, - '[', 1834, - ']', 1838, - '_', 3467, + '(', 1806, + '+', 2137, + ',', 3171, + '-', 1859, + '.', 2326, + '0', 2356, + 'E', 3424, + 'N', 3516, + '[', 1801, + ']', 1805, + '_', 3427, '`', 834, - 'e', 3444, - 'f', 3474, - 'n', 3554, - 'o', 3441, - 't', 3540, - '{', 2000, - 'I', 3561, - 'i', 3561, + 'e', 3404, + 'f', 3434, + 'n', 3513, + 'o', 3401, + 't', 3499, + '{', 1967, + 'I', 3520, + 'i', 3520, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 519: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 3211, - '-', 1892, - '.', 2364, - '0', 3470, - 'E', 3464, - 'N', 3557, - '[', 1834, - ']', 1838, - '_', 3460, + '(', 1806, + '+', 2137, + ',', 3171, + '-', 1859, + '.', 2326, + '0', 3430, + 'E', 3424, + 'N', 3516, + '[', 1801, + ']', 1805, + '_', 3420, '`', 834, - 'e', 3444, - 'f', 3474, - 'n', 3554, - 'o', 3441, - 't', 3540, - '{', 2000, - 'I', 3561, - 'i', 3561, + 'e', 3404, + 'f', 3434, + 'n', 3513, + 'o', 3401, + 't', 3499, + '{', 1967, + 'I', 3520, + 'i', 3520, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3472); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3432); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 520: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 3211, - '-', 1892, - '.', 2364, - '0', 3470, - 'N', 3557, - '[', 1834, - ']', 1838, - '_', 3460, + '(', 1806, + '+', 2137, + ',', 3171, + '-', 1859, + '.', 2326, + '0', 3430, + 'N', 3516, + '[', 1801, + ']', 1805, + '_', 3420, '`', 834, - 'e', 3439, - 'f', 3474, - 'n', 3554, - 'o', 3441, - 't', 3540, - '{', 2000, - 'I', 3561, - 'i', 3561, + 'e', 3399, + 'f', 3434, + 'n', 3513, + 'o', 3401, + 't', 3499, + '{', 1967, + 'I', 3520, + 'i', 3520, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3472); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3432); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 521: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 3211, - '-', 1892, - '.', 2364, - '0', 2460, - '?', 2102, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4622, + '(', 1806, + '+', 2137, + ',', 3171, + '-', 1859, + '.', 2326, + '0', 2422, + '?', 2064, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4577, '`', 834, - 'e', 4599, - 'f', 4629, - 'n', 4682, - 'o', 4601, - 't', 4663, - '{', 2000, - 'I', 4692, - 'i', 4692, + 'e', 4554, + 'f', 4584, + 'n', 4637, + 'o', 4556, + 't', 4618, + '{', 1967, + 'I', 4647, + 'i', 4647, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2473); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2435); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 522: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 3211, - '-', 1892, - '.', 2364, - '0', 2460, - 'E', 4625, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4622, + '(', 1806, + '+', 2137, + ',', 3171, + '-', 1859, + '.', 2326, + '0', 2422, + 'E', 4580, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4577, '`', 834, - 'e', 4602, - 'f', 4629, - 'n', 4682, - 'o', 4601, - 't', 4663, - '{', 2000, - 'I', 4692, - 'i', 4692, + 'e', 4557, + 'f', 4584, + 'n', 4637, + 'o', 4556, + 't', 4618, + '{', 1967, + 'I', 4647, + 'i', 4647, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2473); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2435); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 523: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 3211, - '-', 1892, - '.', 2364, - '0', 2460, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4622, + '(', 1806, + '+', 2137, + ',', 3171, + '-', 1859, + '.', 2326, + '0', 2422, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4577, '`', 834, - 'e', 4599, - 'f', 4629, - 'n', 4682, - 'o', 4601, - 't', 4663, - '{', 2000, - 'I', 4692, - 'i', 4692, + 'e', 4554, + 'f', 4584, + 'n', 4637, + 'o', 4556, + 't', 4618, + '{', 1967, + 'I', 4647, + 'i', 4647, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2473); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2435); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 524: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 3211, - '-', 1892, - '.', 2481, - '0', 4851, - 'N', 4864, - '[', 1834, - ']', 1838, - '_', 4848, + '(', 1806, + '+', 2137, + ',', 3171, + '-', 1859, + '.', 2443, + '0', 4806, + 'N', 4819, + '[', 1801, + ']', 1805, + '_', 4803, '`', 834, - 'e', 4835, - 'f', 4853, - 'n', 4863, - 'o', 4836, - 't', 4859, - '{', 2000, - 'I', 4865, - 'i', 4865, + 'e', 4790, + 'f', 4808, + 'n', 4818, + 'o', 4791, + 't', 4814, + '{', 1967, + 'I', 4820, + 'i', 4820, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4852); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4807); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4833); + lookahead != '}') ADVANCE(4788); END_STATE(); case 525: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 3211, - '-', 1892, - '.', 2481, - '0', 2394, - 'E', 4625, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4627, + '(', 1806, + '+', 2137, + ',', 3171, + '-', 1859, + '.', 2443, + '0', 2356, + 'E', 4580, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4582, '`', 834, - 'e', 4602, - 'f', 4629, - 'n', 4682, - 'o', 4601, - 't', 4663, - '{', 2000, - 'I', 4692, - 'i', 4692, + 'e', 4557, + 'f', 4584, + 'n', 4637, + 'o', 4556, + 't', 4618, + '{', 1967, + 'I', 4647, + 'i', 4647, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 526: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 3211, - '-', 1892, - '.', 2481, - '0', 2394, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4627, + '(', 1806, + '+', 2137, + ',', 3171, + '-', 1859, + '.', 2443, + '0', 2356, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4582, '`', 834, - 'e', 4599, - 'f', 4629, - 'n', 4682, - 'o', 4601, - 't', 4663, - '{', 2000, - 'I', 4692, - 'i', 4692, + 'e', 4554, + 'f', 4584, + 'n', 4637, + 'o', 4556, + 't', 4618, + '{', 1967, + 'I', 4647, + 'i', 4647, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 527: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 3211, - '-', 1892, - '.', 2481, - '0', 2394, - 'N', 3557, - '[', 1834, - ']', 1838, - '_', 3467, + '(', 1806, + '+', 2137, + ',', 3171, + '-', 1859, + '.', 2443, + '0', 2356, + 'N', 3516, + '[', 1801, + ']', 1805, + '_', 3427, '`', 834, - 'e', 3439, - 'f', 3474, - 'n', 3554, - 'o', 3441, - 't', 3540, - '{', 2000, - 'I', 3561, - 'i', 3561, + 'e', 3399, + 'f', 3434, + 'n', 3513, + 'o', 3401, + 't', 3499, + '{', 1967, + 'I', 3520, + 'i', 3520, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 528: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 3211, - '-', 1892, - '.', 2481, - '0', 3871, - 'N', 4002, - '[', 1834, - ']', 1838, - '_', 3864, + '(', 1806, + '+', 2137, + ',', 3171, + '-', 1859, + '.', 2443, + '0', 3828, + 'N', 3958, + '[', 1801, + ']', 1805, + '_', 3821, '`', 834, - 'e', 3795, - 'f', 3879, - 'n', 3999, - 'o', 3797, - 't', 3978, - '{', 2000, - 'I', 4006, - 'i', 4006, + 'e', 3752, + 'f', 3836, + 'n', 3955, + 'o', 3754, + 't', 3934, + '{', 1967, + 'I', 3962, + 'i', 3962, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3875); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3832); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3791); + lookahead != '}') ADVANCE(3748); END_STATE(); case 529: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 3211, - '-', 1892, - '.', 2481, - '0', 2460, - '=', 1301, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4622, + '(', 1806, + '+', 2137, + ',', 3171, + '-', 1859, + '.', 2443, + '0', 2422, + '=', 1271, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4577, '`', 834, - 'e', 4599, - 'f', 4629, - 'n', 4682, - 'o', 4601, - 't', 4663, - '{', 2000, - 'I', 4692, - 'i', 4692, + 'e', 4554, + 'f', 4584, + 'n', 4637, + 'o', 4556, + 't', 4618, + '{', 1967, + 'I', 4647, + 'i', 4647, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2473); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2435); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 530: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 3211, - '-', 1892, - '.', 2481, - '0', 2460, - 'E', 4625, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4622, + '(', 1806, + '+', 2137, + ',', 3171, + '-', 1859, + '.', 2443, + '0', 2422, + 'E', 4580, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4577, '`', 834, - 'e', 4602, - 'f', 4629, - 'n', 4682, - 'o', 4601, - 't', 4663, - '{', 2000, - 'I', 4692, - 'i', 4692, + 'e', 4557, + 'f', 4584, + 'n', 4637, + 'o', 4556, + 't', 4618, + '{', 1967, + 'I', 4647, + 'i', 4647, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2473); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2435); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 531: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 3211, - '-', 1892, - '.', 2481, - '0', 2460, - 'N', 4688, - '[', 2535, - ']', 1838, - '_', 4622, + '(', 1806, + '+', 2137, + ',', 3171, + '-', 1859, + '.', 2443, + '0', 2422, + 'N', 4643, + '[', 2497, + ']', 1805, + '_', 4577, '`', 834, - 'e', 4599, - 'f', 4629, - 'n', 4682, - 'o', 4601, - 't', 4663, - '{', 2000, - 'I', 4692, - 'i', 4692, + 'e', 4554, + 'f', 4584, + 'n', 4637, + 'o', 4556, + 't', 4618, + '{', 1967, + 'I', 4647, + 'i', 4647, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2473); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2435); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 532: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 3211, - '-', 1892, - '.', 2481, - '0', 2460, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4622, + '(', 1806, + '+', 2137, + ',', 3171, + '-', 1859, + '.', 2443, + '0', 2422, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4577, '`', 834, - 'e', 4599, - 'f', 4629, - 'n', 4682, - 'o', 4601, - 't', 4663, - '{', 2000, - '}', 2001, - 'I', 4692, - 'i', 4692, + 'e', 4554, + 'f', 4584, + 'n', 4637, + 'o', 4556, + 't', 4618, + '{', 1967, + '}', 1968, + 'I', 4647, + 'i', 4647, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2473); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2435); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';') ADVANCE(4711); + lookahead != ';') ADVANCE(4666); END_STATE(); case 533: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 3211, - '-', 1892, - '.', 2481, - '0', 2460, - 'N', 1776, - '[', 1834, - ']', 1838, - '_', 1660, + '(', 1806, + '+', 2137, + ',', 3171, + '-', 1859, + '.', 2443, + '0', 2422, + 'N', 1743, + '[', 1801, + ']', 1805, + '_', 1627, '`', 834, - 'e', 1654, - 'f', 1664, - 'n', 1763, - 'o', 1655, - 't', 1736, - '{', 2000, - 'I', 1786, - 'i', 1786, + 'e', 1621, + 'f', 1631, + 'n', 1730, + 'o', 1622, + 't', 1703, + '{', 1967, + 'I', 1753, + 'i', 1753, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2473); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1794); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2435); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1761); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 534: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 3211, - '-', 1892, - '.', 2365, - '0', 2394, - 'E', 3464, - 'N', 3557, - '[', 1834, - ']', 1838, - '_', 3467, + '(', 1806, + '+', 2137, + ',', 3171, + '-', 1859, + '.', 2327, + '0', 2356, + 'E', 3424, + 'N', 3516, + '[', 1801, + ']', 1805, + '_', 3427, '`', 834, - 'e', 3444, - 'f', 3474, - 'n', 3554, - 'o', 3441, - 't', 3540, - '{', 2000, - 'I', 3561, - 'i', 3561, + 'e', 3404, + 'f', 3434, + 'n', 3513, + 'o', 3401, + 't', 3499, + '{', 1967, + 'I', 3520, + 'i', 3520, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 535: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 3211, - '-', 1892, - '.', 2365, - '0', 2394, - 'N', 3557, - '[', 1834, - ']', 1838, - '_', 3467, + '(', 1806, + '+', 2137, + ',', 3171, + '-', 1859, + '.', 2327, + '0', 2356, + 'N', 3516, + '[', 1801, + ']', 1805, + '_', 3427, '`', 834, - 'e', 3439, - 'f', 3474, - 'n', 3554, - 'o', 3441, - 't', 3540, - '{', 2000, - 'I', 3561, - 'i', 3561, + 'e', 3399, + 'f', 3434, + 'n', 3513, + 'o', 3401, + 't', 3499, + '{', 1967, + 'I', 3520, + 'i', 3520, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 536: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 3211, - '-', 1892, - '.', 2365, - '0', 3470, - 'E', 3464, - 'N', 3557, - '[', 1834, - ']', 1838, - '_', 3460, + '(', 1806, + '+', 2137, + ',', 3171, + '-', 1859, + '.', 2327, + '0', 3430, + 'E', 3424, + 'N', 3516, + '[', 1801, + ']', 1805, + '_', 3420, '`', 834, - 'e', 3444, - 'f', 3474, - 'n', 3554, - 'o', 3441, - 't', 3540, - '{', 2000, - 'I', 3561, - 'i', 3561, + 'e', 3404, + 'f', 3434, + 'n', 3513, + 'o', 3401, + 't', 3499, + '{', 1967, + 'I', 3520, + 'i', 3520, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3472); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3432); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 537: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 3211, - '-', 1892, - '.', 2365, - '0', 3470, - 'N', 3557, - '[', 1834, - ']', 1838, - '_', 3460, + '(', 1806, + '+', 2137, + ',', 3171, + '-', 1859, + '.', 2327, + '0', 3430, + 'N', 3516, + '[', 1801, + ']', 1805, + '_', 3420, '`', 834, - 'e', 3439, - 'f', 3474, - 'n', 3554, - 'o', 3441, - 't', 3540, - '{', 2000, - 'I', 3561, - 'i', 3561, + 'e', 3399, + 'f', 3434, + 'n', 3513, + 'o', 3401, + 't', 3499, + '{', 1967, + 'I', 3520, + 'i', 3520, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3472); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3432); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 538: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 3211, - '-', 1892, - '.', 2365, - '0', 2460, - ';', 1328, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4622, + '(', 1806, + '+', 2137, + ',', 3171, + '-', 1859, + '.', 2327, + '0', 2422, + ';', 1303, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4577, '`', 834, - 'e', 4599, - 'f', 4629, - 'n', 4682, - 'o', 4601, - 't', 4663, - '{', 2000, - 'I', 4692, - 'i', 4692, + 'e', 4554, + 'f', 4584, + 'n', 4637, + 'o', 4556, + 't', 4618, + '{', 1967, + 'I', 4647, + 'i', 4647, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2473); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2435); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 539: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 3211, - '-', 1892, - '.', 2365, - '0', 2460, - '?', 2102, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4622, + '(', 1806, + '+', 2137, + ',', 3171, + '-', 1859, + '.', 2327, + '0', 2422, + '?', 2064, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4577, '`', 834, - 'e', 4599, - 'f', 4629, - 'n', 4682, - 'o', 4601, - 't', 4663, - '{', 2000, - 'I', 4692, - 'i', 4692, + 'e', 4554, + 'f', 4584, + 'n', 4637, + 'o', 4556, + 't', 4618, + '{', 1967, + 'I', 4647, + 'i', 4647, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2473); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2435); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 540: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 3211, - '-', 1892, - '.', 2365, - '0', 2460, - 'E', 4625, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4622, + '(', 1806, + '+', 2137, + ',', 3171, + '-', 1859, + '.', 2327, + '0', 2422, + 'E', 4580, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4577, '`', 834, - 'e', 4602, - 'f', 4629, - 'n', 4682, - 'o', 4601, - 't', 4663, - '{', 2000, - 'I', 4692, - 'i', 4692, + 'e', 4557, + 'f', 4584, + 'n', 4637, + 'o', 4556, + 't', 4618, + '{', 1967, + 'I', 4647, + 'i', 4647, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2473); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2435); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 541: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 3211, - '-', 1892, - '.', 2480, - '0', 2394, - 'E', 4625, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4627, + '(', 1806, + '+', 2137, + ',', 3171, + '-', 1859, + '.', 2442, + '0', 2356, + 'E', 4580, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4582, '`', 834, - 'e', 4602, - 'f', 4629, - 'n', 4682, - 'o', 4601, - 't', 4663, - '{', 2000, - 'I', 4692, - 'i', 4692, + 'e', 4557, + 'f', 4584, + 'n', 4637, + 'o', 4556, + 't', 4618, + '{', 1967, + 'I', 4647, + 'i', 4647, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 542: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 3211, - '-', 1892, - '.', 2480, - '0', 2460, - 'E', 4625, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4622, + '(', 1806, + '+', 2137, + ',', 3171, + '-', 1859, + '.', 2442, + '0', 2422, + 'E', 4580, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4577, '`', 834, - 'e', 4602, - 'f', 4629, - 'n', 4682, - 'o', 4601, - 't', 4663, - '{', 2000, - 'I', 4692, - 'i', 4692, + 'e', 4557, + 'f', 4584, + 'n', 4637, + 'o', 4556, + 't', 4618, + '{', 1967, + 'I', 4647, + 'i', 4647, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2473); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2435); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 543: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2175, - ',', 3211, - '-', 1892, - '.', 2480, - '0', 2460, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4622, + '(', 1806, + '+', 2137, + ',', 3171, + '-', 1859, + '.', 2442, + '0', 2422, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4577, '`', 834, - 'e', 4599, - 'f', 4629, - 'n', 4682, - 'o', 4601, - 't', 4663, - '{', 2000, - 'I', 4692, - 'i', 4692, + 'e', 4554, + 'f', 4584, + 'n', 4637, + 'o', 4556, + 't', 4618, + '{', 1967, + 'I', 4647, + 'i', 4647, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2473); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2435); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 544: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 3323, - ',', 1835, - '-', 1907, - '.', 2481, - '0', 2461, - 'N', 3413, - '[', 1834, - '_', 2005, + '(', 1806, + '+', 3283, + ',', 1802, + '-', 1874, + '.', 2443, + '0', 2423, + 'N', 3373, + '[', 1801, + '_', 1972, '`', 834, - 'e', 3310, - 'f', 3346, - 'n', 3407, - 'o', 3312, - 't', 3385, - '{', 2000, - '}', 2001, - 'I', 3418, - 'i', 3418, + 'e', 3270, + 'f', 3306, + 'n', 3367, + 'o', 3272, + 't', 3345, + '{', 1967, + '}', 1968, + 'I', 3378, + 'i', 3378, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(544); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2474); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2436); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != ']') ADVANCE(3436); + lookahead != ']') ADVANCE(3396); END_STATE(); case 545: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2171, - '-', 1901, - '.', 2477, - '0', 2462, - 'I', 1556, - 'N', 1550, - '_', 1350, + '(', 1806, + '+', 2133, + '-', 1868, + '.', 2439, + '0', 2424, + 'I', 1523, + 'N', 1517, + '_', 1320, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1366, - 'd', 1379, - 'e', 1448, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1355, - 'n', 1395, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1496, - 'u', 1508, - 'w', 1421, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1336, + 'd', 1349, + 'e', 1416, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1325, + 'n', 1365, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1463, + 'u', 1475, + 'w', 1390, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(545); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || ';' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3204); END_STATE(); case 546: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - '+', 2176, - ',', 1835, - '-', 1893, - '.', 2481, - '0', 2460, - 'N', 4688, - '[', 1834, - ']', 1838, - '_', 4622, + '(', 1806, + '+', 2138, + ',', 1802, + '-', 1860, + '.', 2443, + '0', 2422, + 'N', 4643, + '[', 1801, + ']', 1805, + '_', 4577, '`', 834, - 'e', 4599, - 'f', 4629, - 'n', 4682, - 'o', 4601, - 't', 4663, - '{', 2000, - 'I', 4692, - 'i', 4692, + 'e', 4554, + 'f', 4584, + 'n', 4637, + 'o', 4556, + 't', 4618, + '{', 1967, + 'I', 4647, + 'i', 4647, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(546); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2473); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2435); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4711); + lookahead != '}') ADVANCE(4666); END_STATE(); case 547: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - ',', 1835, - '-', 1890, - '.', 2363, - ':', 1830, - ';', 1328, - '=', 1301, - '?', 2102, - '[', 1834, - ']', 1838, + '(', 1806, + ',', 1802, + '-', 1857, + '.', 2325, + ':', 1797, + ';', 1303, + '=', 1271, + '?', 2064, + '[', 1801, + ']', 1805, '`', 834, - '{', 2000, - '}', 2001, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(548); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); case 548: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - ',', 1835, - '-', 1890, - ':', 1830, - ';', 1328, - '=', 1301, - '?', 2102, - '[', 1834, - ']', 1838, + '(', 1806, + ',', 1802, + '-', 1857, + ':', 1797, + ';', 1303, + '=', 1271, + '?', 2064, + '[', 1801, + ']', 1805, '`', 834, - '{', 2000, - '}', 2001, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(548); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); case 549: - if (lookahead == '"') ADVANCE(2554); - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '$') ADVANCE(1844); + if (lookahead == '"') ADVANCE(2516); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '$') ADVANCE(1811); if (lookahead == '\'') ADVANCE(791); if (lookahead == '+') ADVANCE(809); if (lookahead == '-') ADVANCE(793); if (lookahead == '`') ADVANCE(834); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(549); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); case 550: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - ',', 1835, - '-', 1890, - ':', 1830, - '>', 1871, - '?', 2102, + ',', 1802, + '-', 1857, + ':', 1797, + '>', 1838, + '?', 2064, '`', 834, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(550); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 551: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1844, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '-', 1890, - '?', 2102, + '-', 1857, + '?', 2064, '`', 834, - '{', 2000, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(551); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); case 552: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 2017, + '"', 2516, + '#', 4896, + '$', 1984, '\'', 791, - '(', 2360, - '+', 2176, - ',', 1835, - '-', 1893, - '.', 2365, - '0', 2394, - 'N', 4820, - '[', 1834, - ']', 1838, - '_', 4816, + '(', 2322, + '+', 2138, + ',', 1802, + '-', 1860, + '.', 2327, + '0', 2356, + 'N', 4775, + '[', 1801, + ']', 1805, + '_', 4771, '`', 834, - 'e', 4812, - 'f', 4817, - 'n', 4819, - 'o', 4813, - 't', 4818, - '{', 2000, - 'I', 4821, - 'i', 4821, - '<', 4833, - '=', 4833, + 'e', 4767, + 'f', 4772, + 'n', 4774, + 'o', 4768, + 't', 4773, + '{', 1967, + 'I', 4776, + 'i', 4776, + '<', 4788, + '=', 4788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(546); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < ';' || '=' < lookahead) && - lookahead != '}') ADVANCE(4811); + lookahead != '}') ADVANCE(4766); END_STATE(); case 553: ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 2017, + '"', 2516, + '#', 4896, + '$', 1984, '\'', 791, - '(', 2360, - '+', 2176, - ',', 3211, - '-', 1893, - '.', 2365, - '0', 2394, - 'N', 4820, - '[', 1834, - ']', 1838, - '_', 4816, + '(', 2322, + '+', 2138, + ',', 3171, + '-', 1860, + '.', 2327, + '0', 2356, + 'N', 4775, + '[', 1801, + ']', 1805, + '_', 4771, '`', 834, - 'e', 4812, - 'f', 4817, - 'n', 4819, - 'o', 4813, - 't', 4818, - '{', 2000, - 'I', 4821, - 'i', 4821, - '<', 4833, - '=', 4833, + 'e', 4767, + 'f', 4772, + 'n', 4774, + 'o', 4768, + 't', 4773, + '{', 1967, + 'I', 4776, + 'i', 4776, + '<', 4788, + '=', 4788, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2404); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2366); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < ';' || '=' < lookahead) && - lookahead != '}') ADVANCE(4811); + lookahead != '}') ADVANCE(4766); END_STATE(); case 554: ADVANCE_MAP( - '"', 2554, - '#', 4941, + '"', 2516, + '#', 4896, '\'', 791, - '(', 2360, - '-', 3811, - '.', 2364, - 'E', 3808, - 'G', 3828, - 'K', 3828, - 'M', 3828, - 'P', 3828, - 'T', 3828, - '_', 3865, + '(', 2322, + '-', 3768, + '.', 2326, + 'E', 3765, + 'G', 3785, + 'K', 3785, + 'M', 3785, + 'P', 3785, + 'T', 3785, + '_', 3822, '`', 834, - 'd', 3890, - 'e', 3807, - 'g', 3827, - 'h', 3975, - 'k', 3827, - 'm', 3830, - 'n', 3988, - 'p', 3827, - 's', 3908, - 't', 3827, - 'u', 3988, - 'w', 3923, - 0xb5, 3988, - 'B', 2516, - 'b', 2516, + 'd', 3847, + 'e', 3764, + 'g', 3784, + 'h', 3931, + 'k', 3784, + 'm', 3787, + 'n', 3944, + 'p', 3784, + 's', 3865, + 't', 3784, + 'u', 3944, + 'w', 3880, + 0xb5, 3944, + 'B', 2478, + 'b', 2478, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(570); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4010); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3966); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3791); + lookahead != '}') ADVANCE(3748); END_STATE(); case 555: ADVANCE_MAP( - '"', 2554, - '#', 4941, + '"', 2516, + '#', 4896, '\'', 791, - '(', 2360, - '-', 3811, - '.', 2364, - 'E', 3808, - 'G', 3828, - 'K', 3828, - 'M', 3828, - 'P', 3828, - 'T', 3828, + '(', 2322, + '-', 3768, + '.', 2326, + 'E', 3765, + 'G', 3785, + 'K', 3785, + 'M', 3785, + 'P', 3785, + 'T', 3785, '`', 834, - 'd', 3890, - 'e', 3807, - 'g', 3827, - 'h', 3975, - 'k', 3827, - 'm', 3830, - 'n', 3988, - 'p', 3827, - 's', 3908, - 't', 3827, - 'u', 3988, - 'w', 3923, - 0xb5, 3988, - 'B', 2516, - 'b', 2516, + 'd', 3847, + 'e', 3764, + 'g', 3784, + 'h', 3931, + 'k', 3784, + 'm', 3787, + 'n', 3944, + 'p', 3784, + 's', 3865, + 't', 3784, + 'u', 3944, + 'w', 3880, + 0xb5, 3944, + 'B', 2478, + 'b', 2478, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(570); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4010); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3966); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3791); + lookahead != '}') ADVANCE(3748); END_STATE(); case 556: ADVANCE_MAP( - '"', 2554, - '#', 4941, + '"', 2516, + '#', 4896, '\'', 791, - '(', 2360, - '-', 3811, - '.', 2364, - 'E', 3828, - 'G', 3828, - 'K', 3828, - 'M', 3828, - 'P', 3828, - 'T', 3828, + '(', 2322, + '-', 3768, + '.', 2326, + 'E', 3785, + 'G', 3785, + 'K', 3785, + 'M', 3785, + 'P', 3785, + 'T', 3785, '`', 834, - 'd', 3890, - 'e', 3827, - 'g', 3827, - 'h', 3975, - 'k', 3827, - 'm', 3830, - 'n', 3988, - 'p', 3827, - 's', 3908, - 't', 3827, - 'u', 3988, - 'w', 3923, - 0xb5, 3988, - 'B', 2516, - 'b', 2516, + 'd', 3847, + 'e', 3784, + 'g', 3784, + 'h', 3931, + 'k', 3784, + 'm', 3787, + 'n', 3944, + 'p', 3784, + 's', 3865, + 't', 3784, + 'u', 3944, + 'w', 3880, + 0xb5, 3944, + 'B', 2478, + 'b', 2478, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(570); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4010); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3966); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3791); + lookahead != '}') ADVANCE(3748); END_STATE(); case 557: ADVANCE_MAP( - '"', 2554, - '#', 4941, + '"', 2516, + '#', 4896, '\'', 791, - '(', 2360, - '-', 3447, - '.', 2364, - '_', 3463, + '(', 2322, + '-', 3407, + '.', 2326, + '_', 3423, '`', 834, - 'E', 3446, - 'e', 3446, + 'E', 3406, + 'e', 3406, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(570); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3565); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3524); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 558: ADVANCE_MAP( - '"', 2554, - '#', 4941, + '"', 2516, + '#', 4896, '\'', 791, - '(', 2360, - '-', 3447, - '.', 2364, + '(', 2322, + '-', 3407, + '.', 2326, '`', 834, - 'E', 3446, - 'e', 3446, + 'E', 3406, + 'e', 3406, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(570); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3565); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3524); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 559: - if (lookahead == '"') ADVANCE(2554); - if (lookahead == '#') ADVANCE(4941); + if (lookahead == '"') ADVANCE(2516); + if (lookahead == '#') ADVANCE(4896); if (lookahead == '\'') ADVANCE(791); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '-') ADVANCE(3447); - if (lookahead == '.') ADVANCE(2364); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '-') ADVANCE(3407); + if (lookahead == '.') ADVANCE(2326); if (lookahead == '`') ADVANCE(834); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(570); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3565); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3524); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 560: ADVANCE_MAP( - '"', 2554, - '#', 4941, + '"', 2516, + '#', 4896, '\'', 791, - '(', 2360, - '-', 3447, - '.', 2363, - '_', 3463, + '(', 2322, + '-', 3407, + '.', 2325, + '_', 3423, '`', 834, - 'E', 3446, - 'e', 3446, + 'E', 3406, + 'e', 3406, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(570); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3565); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3524); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 561: ADVANCE_MAP( - '"', 2554, - '#', 4941, + '"', 2516, + '#', 4896, '\'', 791, - '(', 2360, - '-', 3447, - '.', 2363, - '_', 3463, + '(', 2322, + '-', 3407, + '.', 2325, + '_', 3423, '`', 834, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(570); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3565); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3524); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 562: ADVANCE_MAP( - '"', 2554, - '#', 4941, + '"', 2516, + '#', 4896, '\'', 791, - '(', 2360, - '-', 3447, - '.', 2363, + '(', 2322, + '-', 3407, + '.', 2325, '`', 834, - 'E', 3446, - 'e', 3446, + 'E', 3406, + 'e', 3406, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(570); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3565); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3524); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 563: - if (lookahead == '"') ADVANCE(2554); - if (lookahead == '#') ADVANCE(4941); + if (lookahead == '"') ADVANCE(2516); + if (lookahead == '#') ADVANCE(4896); if (lookahead == '\'') ADVANCE(791); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '-') ADVANCE(3447); - if (lookahead == '.') ADVANCE(2363); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '-') ADVANCE(3407); + if (lookahead == '.') ADVANCE(2325); if (lookahead == '`') ADVANCE(834); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(570); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3565); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3524); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3437); + lookahead != '}') ADVANCE(3397); END_STATE(); case 564: ADVANCE_MAP( - '"', 2554, - '#', 4941, + '"', 2516, + '#', 4896, '\'', 791, - ',', 1835, + ',', 1802, '-', 817, - '<', 1869, - '=', 1301, - '>', 1871, - '@', 1879, + '<', 1836, + '=', 1271, + '>', 1838, + '@', 1846, '`', 834, - '{', 2000, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(565); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 565: ADVANCE_MAP( - '"', 2554, - '#', 4941, + '"', 2516, + '#', 4896, '\'', 791, - ',', 1835, + ',', 1802, '-', 817, - '=', 1301, - '>', 1871, - '@', 1879, + '=', 1271, + '>', 1838, + '@', 1846, '`', 834, - '{', 2000, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(565); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 566: - if (lookahead == '"') ADVANCE(2554); - if (lookahead == '#') ADVANCE(4941); + if (lookahead == '"') ADVANCE(2516); + if (lookahead == '#') ADVANCE(4896); if (lookahead == '\'') ADVANCE(791); - if (lookahead == '-') ADVANCE(3811); + if (lookahead == '-') ADVANCE(3768); if (lookahead == '`') ADVANCE(834); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(570); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4010); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3966); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3791); + lookahead != '}') ADVANCE(3748); END_STATE(); case 567: ADVANCE_MAP( - '"', 2554, - '#', 4941, + '"', 2516, + '#', 4896, '\'', 791, '-', 792, - '.', 2364, + '.', 2326, '`', 834, - 'E', 1332, - 'e', 1332, + 'E', 1305, + 'e', 1305, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(570); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); case 568: ADVANCE_MAP( - '"', 2554, - '#', 4941, + '"', 2516, + '#', 4896, '\'', 791, '-', 792, - '.', 2363, + '.', 2325, '`', 834, - 'E', 1332, - 'e', 1332, + 'E', 1305, + 'e', 1305, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(570); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); case 569: ADVANCE_MAP( - '"', 2554, - '#', 4941, + '"', 2516, + '#', 4896, '\'', 791, '-', 792, '.', 802, - '_', 1352, + '_', 1322, '`', 834, - 'E', 1332, - 'e', 1332, + 'E', 1305, + 'e', 1305, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(570); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); case 570: - if (lookahead == '"') ADVANCE(2554); - if (lookahead == '#') ADVANCE(4941); + if (lookahead == '"') ADVANCE(2516); + if (lookahead == '#') ADVANCE(4896); if (lookahead == '\'') ADVANCE(791); if (lookahead == '-') ADVANCE(792); if (lookahead == '`') ADVANCE(834); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(570); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); case 571: - if (lookahead == '"') ADVANCE(2554); - if (lookahead == '#') ADVANCE(4941); + if (lookahead == '"') ADVANCE(2516); + if (lookahead == '#') ADVANCE(4896); if (lookahead == '\'') ADVANCE(791); if (lookahead == '-') ADVANCE(792); if (lookahead == '`') ADVANCE(834); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(570); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1793); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1760); END_STATE(); case 572: - if (lookahead == '"') ADVANCE(2554); - if (lookahead == '#') ADVANCE(4941); + if (lookahead == '"') ADVANCE(2516); + if (lookahead == '#') ADVANCE(4896); if (lookahead == '\'') ADVANCE(791); if (lookahead == '`') ADVANCE(834); if (('\t' <= lookahead && lookahead <= '\r') || @@ -37686,1403 +37224,1403 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(3245); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(3205); END_STATE(); case 573: ADVANCE_MAP( - '"', 2554, - '#', 4945, - '$', 1851, + '"', 2516, + '#', 4906, + '$', 1813, '\'', 791, - '(', 2360, - '+', 2170, - ',', 3211, - '-', 1898, - '.', 2479, - '0', 4041, - 'N', 4102, - '[', 1834, - ']', 1838, - '_', 4042, + '(', 2322, + '+', 4109, + '-', 1876, + '.', 2444, + '0', 4132, + 'N', 4515, + '[', 1801, + '_', 4136, '`', 834, - 'e', 4015, - 'f', 4046, - 'n', 4096, - 'o', 4012, - 't', 4077, - '{', 2000, - '\t', 3212, - ' ', 3212, - 'I', 4107, - 'i', 4107, + 'f', 4142, + 'n', 4346, + 't', 4375, + '{', 1967, + '\t', 3209, + ' ', 3209, + 'I', 4525, + 'i', 4525, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4045); + if (('\n' <= lookahead && lookahead <= '\r')) SKIP(349); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4135); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4129); + lookahead != ']' && + lookahead != '}') ADVANCE(4552); END_STATE(); case 574: ADVANCE_MAP( - '"', 2554, - '#', 4945, - '$', 1851, + '"', 2516, + '#', 4906, + '$', 1813, '\'', 791, - '(', 2360, - '+', 2170, - ',', 3211, - '-', 1898, - '.', 2479, - '0', 4041, - 'N', 4102, - '[', 1834, - ']', 1838, - '_', 4042, + '(', 2322, + '+', 4109, + '-', 1876, + '.', 2444, + '0', 4132, + 'N', 4515, + '[', 1801, + '_', 4136, '`', 834, - 'e', 4015, - 'f', 4046, - 'n', 4096, - 'o', 4012, - 't', 4077, - '{', 2000, - 'I', 4107, - 'i', 4107, + 'f', 4142, + 'n', 4346, + 't', 4375, + '{', 1967, + 'I', 4525, + 'i', 4525, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4045); + lookahead == ' ') SKIP(349); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4135); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4129); + lookahead != ']' && + lookahead != '}') ADVANCE(4552); END_STATE(); case 575: ADVANCE_MAP( - '"', 2554, - '#', 4945, - '$', 1851, + '"', 2516, + '#', 4906, '\'', 791, - '(', 2360, - '+', 2170, - ',', 1837, - '-', 1898, - '.', 2479, - '0', 4041, - 'N', 4102, - '[', 1834, - ']', 1838, - '_', 4042, + '(', 2322, + '-', 4086, '`', 834, - 'e', 4015, - 'f', 4046, - 'n', 4096, - 'o', 4012, - 't', 4077, - '{', 2000, - '\t', 3249, - ' ', 3249, - 'I', 4107, - 'i', 4107, + '\t', 3209, + ' ', 3209, ); - if (('\n' <= lookahead && lookahead <= '\r')) SKIP(502); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4045); + if (('\n' <= lookahead && lookahead <= '\r')) SKIP(570); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4551); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4129); + (lookahead < 'A' || '[' < lookahead) && + lookahead != ']' && + (lookahead < '_' || '{' < lookahead) && + lookahead != '}') ADVANCE(4552); END_STATE(); case 576: - ADVANCE_MAP( - '"', 2554, - '#', 4945, - '$', 1851, - '\'', 791, - '(', 2360, - '+', 2170, - ',', 1837, - '-', 1898, - '.', 2479, - '0', 4041, - 'N', 4102, - '[', 1834, - ']', 1838, - '_', 4042, - '`', 834, - 'e', 4015, - 'f', 4046, - 'n', 4096, - 'o', 4012, - 't', 4077, - '{', 2000, - 'I', 4107, - 'i', 4107, - ); + if (lookahead == '"') ADVANCE(2516); + if (lookahead == '#') ADVANCE(4906); + if (lookahead == '\'') ADVANCE(791); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '-') ADVANCE(4086); + if (lookahead == '`') ADVANCE(834); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(502); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4045); + lookahead == ' ') SKIP(570); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4551); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4129); + (lookahead < 'A' || '[' < lookahead) && + lookahead != ']' && + (lookahead < '_' || '{' < lookahead) && + lookahead != '}') ADVANCE(4552); END_STATE(); case 577: ADVANCE_MAP( - '"', 2554, - '#', 4949, - '$', 1848, + '"', 2516, + '#', 4899, + '$', 1817, '\'', 791, - '(', 2360, - '+', 2172, - ',', 3211, - '-', 1897, - '.', 2483, - '0', 4883, - 'N', 4909, - '[', 1834, - ']', 1838, - '_', 4884, + '(', 2322, + '+', 2131, + ',', 3171, + '-', 1862, + '.', 2440, + '0', 3997, + 'N', 4058, + '[', 1801, + ']', 1805, + '_', 3998, '`', 834, - 'e', 4866, - 'f', 4888, - 'n', 4905, - 'o', 4867, - 't', 4898, - '{', 2000, - 'I', 4914, - 'i', 4914, + 'e', 3971, + 'f', 4002, + 'n', 4052, + 'o', 3968, + 't', 4033, + '{', 1967, + '\t', 3172, + ' ', 3172, + 'I', 4063, + 'i', 4063, ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4887); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4001); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4936); + lookahead != '}') ADVANCE(4085); END_STATE(); case 578: ADVANCE_MAP( - '"', 2554, - '#', 4949, - '$', 1848, + '"', 2516, + '#', 4899, + '$', 1817, '\'', 791, - '(', 1839, - '+', 2172, - ',', 1835, - '-', 1897, - '.', 2483, - '0', 4883, - 'N', 4909, - '[', 1834, - ']', 1838, - '_', 4884, + '(', 2322, + '+', 2131, + ',', 3171, + '-', 1862, + '.', 2440, + '0', 3997, + 'N', 4058, + '[', 1801, + ']', 1805, + '_', 3998, '`', 834, - 'e', 4866, - 'f', 4888, - 'n', 4905, - 'o', 4867, - 't', 4898, - '{', 2000, - 'I', 4914, - 'i', 4914, + 'e', 3971, + 'f', 4002, + 'n', 4052, + 'o', 3968, + 't', 4033, + '{', 1967, + 'I', 4063, + 'i', 4063, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(502); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4887); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4001); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(4936); + lookahead != '}') ADVANCE(4085); END_STATE(); case 579: - if (lookahead == '"') ADVANCE(2554); - if (lookahead == '#') ADVANCE(2556); - if (lookahead == '\\') ADVANCE(974); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2555); - if (lookahead != 0) ADVANCE(2556); + ADVANCE_MAP( + '"', 2516, + '#', 4899, + '$', 1817, + '\'', 791, + '(', 2322, + '+', 2131, + ',', 1803, + '-', 1862, + '.', 2440, + '0', 3997, + 'N', 4058, + '[', 1801, + ']', 1805, + '_', 3998, + '`', 834, + 'e', 3971, + 'f', 4002, + 'n', 4052, + 'o', 3968, + 't', 4033, + '{', 1967, + '\t', 3209, + ' ', 3209, + 'I', 4063, + 'i', 4063, + ); + if (('\n' <= lookahead && lookahead <= '\r')) SKIP(502); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4001); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '}') ADVANCE(4085); END_STATE(); case 580: ADVANCE_MAP( - '"', 2554, - '#', 4952, - '$', 1847, + '"', 2516, + '#', 4899, + '$', 1817, '\'', 791, - '(', 2360, - '+', 4153, - '-', 1910, - '.', 2484, - '0', 4176, - 'N', 4560, - '[', 1834, - '_', 4180, + '(', 2322, + '+', 2131, + ',', 1803, + '-', 1862, + '.', 2440, + '0', 3997, + 'N', 4058, + '[', 1801, + ']', 1805, + '_', 3998, '`', 834, - 'f', 4186, - 'n', 4391, - 't', 4412, - '{', 2000, - '\t', 3249, - ' ', 3249, - 'I', 4570, - 'i', 4570, + 'e', 3971, + 'f', 4002, + 'n', 4052, + 'o', 3968, + 't', 4033, + '{', 1967, + 'I', 4063, + 'i', 4063, ); - if (('\n' <= lookahead && lookahead <= '\r')) SKIP(349); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4179); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(502); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4001); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != ']' && - lookahead != '}') ADVANCE(4597); + lookahead != '}') ADVANCE(4085); END_STATE(); case 581: ADVANCE_MAP( - '"', 2554, - '#', 4952, - '$', 1847, + '"', 2516, + '#', 4904, + '$', 1815, '\'', 791, - '(', 2360, - '+', 4153, - '-', 1910, - '.', 2484, - '0', 4176, - 'N', 4560, - '[', 1834, - '_', 4180, + '(', 2322, + '+', 2134, + ',', 3171, + '-', 1864, + '.', 2445, + '0', 4838, + 'N', 4864, + '[', 1801, + ']', 1805, + '_', 4839, '`', 834, - 'f', 4186, - 'n', 4391, - 't', 4412, - '{', 2000, - 'I', 4570, - 'i', 4570, + 'e', 4821, + 'f', 4843, + 'n', 4860, + 'o', 4822, + 't', 4853, + '{', 1967, + 'I', 4869, + 'i', 4869, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(349); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4179); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4842); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != ']' && - lookahead != '}') ADVANCE(4597); + lookahead != '}') ADVANCE(4891); END_STATE(); case 582: ADVANCE_MAP( - '"', 2554, - '#', 4952, + '"', 2516, + '#', 4904, + '$', 1815, '\'', 791, - '(', 2360, - '-', 4138, + '(', 1806, + '+', 2134, + ',', 1802, + '-', 1864, + '.', 2445, + '0', 4838, + 'N', 4864, + '[', 1801, + ']', 1805, + '_', 4839, '`', 834, - '\t', 3249, - ' ', 3249, + 'e', 4821, + 'f', 4843, + 'n', 4860, + 'o', 4822, + 't', 4853, + '{', 1967, + 'I', 4869, + 'i', 4869, ); - if (('\n' <= lookahead && lookahead <= '\r')) SKIP(570); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4596); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(502); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4842); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < 'A' || '[' < lookahead) && - lookahead != ']' && - (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(4597); + lookahead != '}') ADVANCE(4891); END_STATE(); case 583: - if (lookahead == '"') ADVANCE(2554); - if (lookahead == '#') ADVANCE(4952); - if (lookahead == '\'') ADVANCE(791); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '-') ADVANCE(4138); - if (lookahead == '`') ADVANCE(834); + if (lookahead == '"') ADVANCE(2516); + if (lookahead == '#') ADVANCE(2518); + if (lookahead == '\\') ADVANCE(974); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(570); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4596); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < 'A' || '[' < lookahead) && - lookahead != ']' && - (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(4597); + lookahead == ' ') ADVANCE(2517); + if (lookahead != 0) ADVANCE(2518); END_STATE(); case 584: - if (lookahead == '"') ADVANCE(2568); - if (lookahead == '#') ADVANCE(2561); - if (lookahead == '(') ADVANCE(1839); + if (lookahead == '"') ADVANCE(2530); + if (lookahead == '#') ADVANCE(2523); + if (lookahead == '(') ADVANCE(1806); if (lookahead == '\\') ADVANCE(972); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2560); - if (lookahead != 0) ADVANCE(2561); + lookahead == ' ') ADVANCE(2522); + if (lookahead != 0) ADVANCE(2523); END_STATE(); case 585: ADVANCE_MAP( - '#', 4941, - '$', 1844, - '(', 2360, - ')', 1840, + '#', 4896, + '$', 1811, + '(', 2322, + ')', 1807, '+', 809, - ',', 1835, - '-', 1894, - '.', 2367, - ':', 1830, - ']', 1838, - '_', 1579, - '|', 1841, + ',', 1802, + '-', 1861, + '.', 2329, + ':', 1797, + ']', 1805, + '_', 1546, + '|', 1808, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(645); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 586: ADVANCE_MAP( - '#', 4941, - '$', 1844, - '(', 2360, - '+', 3574, - '-', 1894, - '.', 2363, - '_', 3581, - '<', 3791, - '=', 3791, + '#', 4896, + '$', 1811, + '(', 2322, + '+', 3533, + '-', 1861, + '.', 2325, + '_', 3540, + '<', 3748, + '=', 3748, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(656); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3675); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3566); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3525); END_STATE(); case 587: ADVANCE_MAP( - '#', 4941, - '$', 1844, - '(', 2360, - '+', 3574, - '-', 1894, - '.', 2363, - '_', 3582, - '{', 2000, - '<', 3791, - '=', 3791, + '#', 4896, + '$', 1811, + '(', 2322, + '+', 3533, + '-', 1861, + '.', 2325, + '_', 3541, + '{', 1967, + '<', 3748, + '=', 3748, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(655); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3566); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3525); END_STATE(); case 588: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '$') ADVANCE(1844); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '+') ADVANCE(3450); - if (lookahead == '-') ADVANCE(1894); - if (lookahead == '.') ADVANCE(2363); - if (lookahead == '_') ADVANCE(3465); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '$') ADVANCE(1811); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '+') ADVANCE(3410); + if (lookahead == '-') ADVANCE(1861); + if (lookahead == '.') ADVANCE(2325); + if (lookahead == '_') ADVANCE(3425); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(656); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3564); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3523); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 589: ADVANCE_MAP( - '#', 4941, - '$', 1844, - '(', 2360, - '+', 3450, - '-', 1894, - '.', 2363, - '_', 3466, - '{', 2000, + '#', 4896, + '$', 1811, + '(', 2322, + '+', 3410, + '-', 1861, + '.', 2325, + '_', 3426, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(655); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 590: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '$') ADVANCE(1844); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '+') ADVANCE(3685); - if (lookahead == '-') ADVANCE(1894); - if (lookahead == '.') ADVANCE(2363); - if (lookahead == '_') ADVANCE(3695); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '$') ADVANCE(1811); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '+') ADVANCE(3643); + if (lookahead == '-') ADVANCE(1861); + if (lookahead == '.') ADVANCE(2325); + if (lookahead == '_') ADVANCE(3653); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(656); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3789); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3677); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3746); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3635); END_STATE(); case 591: ADVANCE_MAP( - '#', 4941, - '$', 1844, - '(', 2360, - '+', 3685, - '-', 1894, - '.', 2363, - '_', 3696, - '{', 2000, + '#', 4896, + '$', 1811, + '(', 2322, + '+', 3643, + '-', 1861, + '.', 2325, + '_', 3654, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(655); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3677); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3635); END_STATE(); case 592: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '$') ADVANCE(1844); - if (lookahead == '(') ADVANCE(2360); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '$') ADVANCE(1811); + if (lookahead == '(') ADVANCE(2322); if (lookahead == '+') ADVANCE(809); - if (lookahead == '-') ADVANCE(1894); - if (lookahead == '.') ADVANCE(2363); - if (lookahead == '_') ADVANCE(1579); + if (lookahead == '-') ADVANCE(1861); + if (lookahead == '.') ADVANCE(2325); + if (lookahead == '_') ADVANCE(1546); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(656); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 593: ADVANCE_MAP( - '#', 4941, - '$', 1844, - '(', 2360, - ',', 3211, - '.', 2363, - ']', 1838, - '_', 3582, - '+', 3574, - '-', 3574, - '<', 3791, - '=', 3791, + '#', 4896, + '$', 1811, + '(', 2322, + ',', 3171, + '.', 2325, + ']', 1805, + '_', 3541, + '+', 3533, + '-', 3533, + '<', 3748, + '=', 3748, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token5_character_set_1, 13, lookahead))) ADVANCE(3566); + lookahead == ' ') ADVANCE(3173); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token5_character_set_1, 13, lookahead))) ADVANCE(3525); END_STATE(); case 594: ADVANCE_MAP( - '#', 4941, - '$', 1844, - '(', 2360, - ',', 3211, - '.', 2363, - ']', 1838, - '_', 3696, - '+', 3685, - '-', 3685, + '#', 4896, + '$', 1811, + '(', 2322, + ',', 3171, + '.', 2325, + ']', 1805, + '_', 3654, + '+', 3643, + '-', 3643, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token5_character_set_1, 13, lookahead))) ADVANCE(3677); + lookahead == ' ') ADVANCE(3173); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token5_character_set_1, 13, lookahead))) ADVANCE(3635); END_STATE(); case 595: ADVANCE_MAP( - '#', 4941, - '$', 1844, - '(', 2360, - ',', 3211, - '.', 2363, - ']', 1838, - '_', 4815, - '+', 4814, - '-', 4814, - '<', 4833, - '=', 4833, + '#', 4896, + '$', 1811, + '(', 2322, + ',', 3171, + '.', 2325, + ']', 1805, + '_', 4770, + '+', 4769, + '-', 4769, + '<', 4788, + '=', 4788, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token5_character_set_1, 13, lookahead))) ADVANCE(4811); + lookahead == ' ') ADVANCE(3173); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token5_character_set_1, 13, lookahead))) ADVANCE(4766); END_STATE(); case 596: ADVANCE_MAP( - '#', 4941, - '$', 1844, - '(', 2360, - ',', 3211, - '.', 2363, - ']', 1838, - '_', 4826, - '+', 4825, - '-', 4825, + '#', 4896, + '$', 1811, + '(', 2322, + ',', 3171, + '.', 2325, + ']', 1805, + '_', 4781, + '+', 4780, + '-', 4780, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token5_character_set_1, 13, lookahead))) ADVANCE(4822); + lookahead == ' ') ADVANCE(3173); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token5_character_set_1, 13, lookahead))) ADVANCE(4777); END_STATE(); case 597: ADVANCE_MAP( - '#', 4941, - '$', 1844, - '(', 2360, - ',', 3211, - '.', 2363, - ']', 1838, - '_', 3466, - '+', 3450, - '-', 3450, + '#', 4896, + '$', 1811, + '(', 2322, + ',', 3171, + '.', 2325, + ']', 1805, + '_', 3426, + '+', 3410, + '-', 3410, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token5_character_set_1, 13, lookahead))) ADVANCE(3437); + lookahead == ' ') ADVANCE(3173); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token5_character_set_1, 13, lookahead))) ADVANCE(3397); END_STATE(); case 598: ADVANCE_MAP( - '#', 4941, - '$', 1844, - '(', 2360, - ',', 3211, - '.', 2363, - ']', 1838, - '_', 4720, - '+', 4716, - '-', 4716, + '#', 4896, + '$', 1811, + '(', 2322, + ',', 3171, + '.', 2325, + ']', 1805, + '_', 4675, + '+', 4671, + '-', 4671, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token5_character_set_1, 13, lookahead))) ADVANCE(4712); + lookahead == ' ') ADVANCE(3173); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token5_character_set_1, 13, lookahead))) ADVANCE(4667); END_STATE(); case 599: ADVANCE_MAP( - '#', 4941, - '$', 1844, - '(', 2360, - '-', 1890, - '.', 2364, - 'E', 3844, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - '_', 3867, - 'd', 3883, - 'e', 3843, - 'g', 3847, - 'h', 3980, - 'k', 3847, - 'm', 3850, - 'n', 3990, - 'p', 3847, - 's', 3901, - 't', 3847, - 'u', 3990, - 'w', 3924, - '{', 2000, - 0xb5, 3990, - 'B', 2507, - 'b', 2507, + '#', 4896, + '$', 1811, + '(', 2322, + '-', 1857, + '.', 2326, + 'E', 3801, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + '_', 3824, + 'd', 3840, + 'e', 3800, + 'g', 3804, + 'h', 3936, + 'k', 3804, + 'm', 3807, + 'n', 3946, + 'p', 3804, + 's', 3858, + 't', 3804, + 'u', 3946, + 'w', 3881, + '{', 1967, + 0xb5, 3946, + 'B', 2469, + 'b', 2469, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(666); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3791); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3748); END_STATE(); case 600: ADVANCE_MAP( - '#', 4941, - '$', 1844, - '(', 2360, - '-', 1890, - '.', 2364, - 'E', 3844, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - 'd', 3883, - 'e', 3843, - 'g', 3847, - 'h', 3980, - 'k', 3847, - 'm', 3850, - 'n', 3990, - 'p', 3847, - 's', 3901, - 't', 3847, - 'u', 3990, - 'w', 3924, - '{', 2000, - 0xb5, 3990, - 'B', 2507, - 'b', 2507, + '#', 4896, + '$', 1811, + '(', 2322, + '-', 1857, + '.', 2326, + 'E', 3801, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + 'd', 3840, + 'e', 3800, + 'g', 3804, + 'h', 3936, + 'k', 3804, + 'm', 3807, + 'n', 3946, + 'p', 3804, + 's', 3858, + 't', 3804, + 'u', 3946, + 'w', 3881, + '{', 1967, + 0xb5, 3946, + 'B', 2469, + 'b', 2469, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(666); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3748); END_STATE(); case 601: ADVANCE_MAP( - '#', 4941, - '$', 1844, - '(', 2360, - '-', 1890, - '.', 2364, - 'E', 3848, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - 'd', 3883, - 'e', 3847, - 'g', 3847, - 'h', 3980, - 'k', 3847, - 'm', 3850, - 'n', 3990, - 'p', 3847, - 's', 3901, - 't', 3847, - 'u', 3990, - 'w', 3924, - '{', 2000, - 0xb5, 3990, - 'B', 2507, - 'b', 2507, + '#', 4896, + '$', 1811, + '(', 2322, + '-', 1857, + '.', 2326, + 'E', 3805, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + 'd', 3840, + 'e', 3804, + 'g', 3804, + 'h', 3936, + 'k', 3804, + 'm', 3807, + 'n', 3946, + 'p', 3804, + 's', 3858, + 't', 3804, + 'u', 3946, + 'w', 3881, + '{', 1967, + 0xb5, 3946, + 'B', 2469, + 'b', 2469, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(666); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3748); END_STATE(); case 602: ADVANCE_MAP( - '#', 4941, - '$', 1844, - '(', 2360, - '-', 1890, - '.', 2364, - '_', 3466, - '{', 2000, - 'E', 3461, - 'e', 3461, + '#', 4896, + '$', 1811, + '(', 2322, + '-', 1857, + '.', 2326, + '_', 3426, + '{', 1967, + 'E', 3421, + 'e', 3421, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(666); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 603: ADVANCE_MAP( - '#', 4941, - '$', 1844, - '(', 2360, - '-', 1890, - '.', 2364, - '{', 2000, - 'E', 3461, - 'e', 3461, + '#', 4896, + '$', 1811, + '(', 2322, + '-', 1857, + '.', 2326, + '{', 1967, + 'E', 3421, + 'e', 3421, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(666); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3437); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 604: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '$') ADVANCE(1844); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '-') ADVANCE(1890); - if (lookahead == '.') ADVANCE(2364); - if (lookahead == '{') ADVANCE(2000); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '$') ADVANCE(1811); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '-') ADVANCE(1857); + if (lookahead == '.') ADVANCE(2326); + if (lookahead == '{') ADVANCE(1967); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(666); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3437); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 605: ADVANCE_MAP( - '#', 4941, - '$', 1844, - '(', 2360, - '-', 1890, - '.', 2363, - '_', 3466, - '{', 2000, - 'E', 3461, - 'e', 3461, + '#', 4896, + '$', 1811, + '(', 2322, + '-', 1857, + '.', 2325, + '_', 3426, + '{', 1967, + 'E', 3421, + 'e', 3421, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(666); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 606: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '$') ADVANCE(1844); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '-') ADVANCE(1890); - if (lookahead == '.') ADVANCE(2363); - if (lookahead == '_') ADVANCE(3466); - if (lookahead == '{') ADVANCE(2000); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '$') ADVANCE(1811); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '-') ADVANCE(1857); + if (lookahead == '.') ADVANCE(2325); + if (lookahead == '_') ADVANCE(3426); + if (lookahead == '{') ADVANCE(1967); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(666); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 607: ADVANCE_MAP( - '#', 4941, - '$', 1844, - '(', 2360, - '-', 1890, - '.', 2363, - '{', 2000, - 'E', 3461, - 'e', 3461, + '#', 4896, + '$', 1811, + '(', 2322, + '-', 1857, + '.', 2325, + '{', 1967, + 'E', 3421, + 'e', 3421, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(666); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3437); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 608: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '$') ADVANCE(1844); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '-') ADVANCE(1890); - if (lookahead == '.') ADVANCE(2363); - if (lookahead == '{') ADVANCE(2000); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '$') ADVANCE(1811); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '-') ADVANCE(1857); + if (lookahead == '.') ADVANCE(2325); + if (lookahead == '{') ADVANCE(1967); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(666); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3437); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 609: ADVANCE_MAP( - '#', 4941, - '$', 1844, - '(', 2360, - '.', 2364, - 'E', 3853, - 'G', 3856, - 'K', 3856, - 'M', 3856, - 'P', 3856, - 'T', 3856, - '_', 3866, - 'd', 3885, - 'e', 3852, - 'g', 3855, - 'h', 3983, - 'k', 3855, - 'm', 3858, - 'n', 3992, - 'p', 3855, - 's', 3904, - 't', 3855, - 'u', 3992, - 'w', 3925, - 0xb5, 3992, - 'B', 2515, - 'b', 2515, + '#', 4896, + '$', 1811, + '(', 2322, + '.', 2326, + 'E', 3810, + 'G', 3813, + 'K', 3813, + 'M', 3813, + 'P', 3813, + 'T', 3813, + '_', 3823, + 'd', 3842, + 'e', 3809, + 'g', 3812, + 'h', 3939, + 'k', 3812, + 'm', 3815, + 'n', 3948, + 'p', 3812, + 's', 3861, + 't', 3812, + 'u', 3948, + 'w', 3882, + 0xb5, 3948, + 'B', 2477, + 'b', 2477, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(679); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4009); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3791); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3965); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3748); END_STATE(); case 610: ADVANCE_MAP( - '#', 4941, - '$', 1844, - '(', 2360, - '.', 2364, - 'E', 3853, - 'G', 3856, - 'K', 3856, - 'M', 3856, - 'P', 3856, - 'T', 3856, - 'd', 3885, - 'e', 3852, - 'g', 3855, - 'h', 3983, - 'k', 3855, - 'm', 3858, - 'n', 3992, - 'p', 3855, - 's', 3904, - 't', 3855, - 'u', 3992, - 'w', 3925, - 0xb5, 3992, - 'B', 2515, - 'b', 2515, + '#', 4896, + '$', 1811, + '(', 2322, + '.', 2326, + 'E', 3810, + 'G', 3813, + 'K', 3813, + 'M', 3813, + 'P', 3813, + 'T', 3813, + 'd', 3842, + 'e', 3809, + 'g', 3812, + 'h', 3939, + 'k', 3812, + 'm', 3815, + 'n', 3948, + 'p', 3812, + 's', 3861, + 't', 3812, + 'u', 3948, + 'w', 3882, + 0xb5, 3948, + 'B', 2477, + 'b', 2477, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(679); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4009); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3791); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3965); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3748); END_STATE(); case 611: ADVANCE_MAP( - '#', 4941, - '$', 1844, - '(', 2360, - '.', 2364, - 'E', 3856, - 'G', 3856, - 'K', 3856, - 'M', 3856, - 'P', 3856, - 'T', 3856, - 'd', 3885, - 'e', 3855, - 'g', 3855, - 'h', 3983, - 'k', 3855, - 'm', 3858, - 'n', 3992, - 'p', 3855, - 's', 3904, - 't', 3855, - 'u', 3992, - 'w', 3925, - 0xb5, 3992, - 'B', 2515, - 'b', 2515, + '#', 4896, + '$', 1811, + '(', 2322, + '.', 2326, + 'E', 3813, + 'G', 3813, + 'K', 3813, + 'M', 3813, + 'P', 3813, + 'T', 3813, + 'd', 3842, + 'e', 3812, + 'g', 3812, + 'h', 3939, + 'k', 3812, + 'm', 3815, + 'n', 3948, + 'p', 3812, + 's', 3861, + 't', 3812, + 'u', 3948, + 'w', 3882, + 0xb5, 3948, + 'B', 2477, + 'b', 2477, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(679); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4009); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3791); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3965); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3748); END_STATE(); case 612: ADVANCE_MAP( - '#', 4941, - '$', 1844, - '(', 2360, - '.', 2364, - 'E', 3844, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - '_', 3867, - 'd', 3883, - 'e', 3843, - 'g', 3847, - 'h', 3980, - 'k', 3847, - 'm', 3850, - 'n', 3990, - 'p', 3847, - 's', 3901, - 't', 3847, - 'u', 3990, - 'w', 3924, - '{', 2000, - 0xb5, 3990, - 'B', 2507, - 'b', 2507, + '#', 4896, + '$', 1811, + '(', 2322, + '.', 2326, + 'E', 3801, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + '_', 3824, + 'd', 3840, + 'e', 3800, + 'g', 3804, + 'h', 3936, + 'k', 3804, + 'm', 3807, + 'n', 3946, + 'p', 3804, + 's', 3858, + 't', 3804, + 'u', 3946, + 'w', 3881, + '{', 1967, + 0xb5, 3946, + 'B', 2469, + 'b', 2469, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(675); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3791); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3748); END_STATE(); case 613: ADVANCE_MAP( - '#', 4941, - '$', 1844, - '(', 2360, - '.', 2364, - 'E', 3844, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - 'd', 3883, - 'e', 3843, - 'g', 3847, - 'h', 3980, - 'k', 3847, - 'm', 3850, - 'n', 3990, - 'p', 3847, - 's', 3901, - 't', 3847, - 'u', 3990, - 'w', 3924, - '{', 2000, - 0xb5, 3990, - 'B', 2507, - 'b', 2507, + '#', 4896, + '$', 1811, + '(', 2322, + '.', 2326, + 'E', 3801, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + 'd', 3840, + 'e', 3800, + 'g', 3804, + 'h', 3936, + 'k', 3804, + 'm', 3807, + 'n', 3946, + 'p', 3804, + 's', 3858, + 't', 3804, + 'u', 3946, + 'w', 3881, + '{', 1967, + 0xb5, 3946, + 'B', 2469, + 'b', 2469, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(675); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3748); END_STATE(); case 614: ADVANCE_MAP( - '#', 4941, - '$', 1844, - '(', 2360, - '.', 2364, - 'E', 3848, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - 'd', 3883, - 'e', 3847, - 'g', 3847, - 'h', 3980, - 'k', 3847, - 'm', 3850, - 'n', 3990, - 'p', 3847, - 's', 3901, - 't', 3847, - 'u', 3990, - 'w', 3924, - '{', 2000, - 0xb5, 3990, - 'B', 2507, - 'b', 2507, + '#', 4896, + '$', 1811, + '(', 2322, + '.', 2326, + 'E', 3805, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + 'd', 3840, + 'e', 3804, + 'g', 3804, + 'h', 3936, + 'k', 3804, + 'm', 3807, + 'n', 3946, + 'p', 3804, + 's', 3858, + 't', 3804, + 'u', 3946, + 'w', 3881, + '{', 1967, + 0xb5, 3946, + 'B', 2469, + 'b', 2469, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(675); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3748); END_STATE(); case 615: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '$') ADVANCE(1844); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '.') ADVANCE(2364); - if (lookahead == '_') ADVANCE(3465); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '$') ADVANCE(1811); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '.') ADVANCE(2326); + if (lookahead == '_') ADVANCE(3425); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3462); + lookahead == 'e') ADVANCE(3422); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(679); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3564); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3523); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 616: ADVANCE_MAP( - '#', 4941, - '$', 1844, - '(', 2360, - '.', 2364, - '_', 3466, - '{', 2000, - 'E', 3461, - 'e', 3461, + '#', 4896, + '$', 1811, + '(', 2322, + '.', 2326, + '_', 3426, + '{', 1967, + 'E', 3421, + 'e', 3421, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(675); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 617: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '$') ADVANCE(1844); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '.') ADVANCE(2364); - if (lookahead == '{') ADVANCE(2000); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '$') ADVANCE(1811); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '.') ADVANCE(2326); + if (lookahead == '{') ADVANCE(1967); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3461); + lookahead == 'e') ADVANCE(3421); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(675); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3437); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 618: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '$') ADVANCE(1844); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '.') ADVANCE(2364); - if (lookahead == '{') ADVANCE(2000); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '$') ADVANCE(1811); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '.') ADVANCE(2326); + if (lookahead == '{') ADVANCE(1967); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(675); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3437); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 619: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '$') ADVANCE(1844); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '.') ADVANCE(2364); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '$') ADVANCE(1811); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '.') ADVANCE(2326); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3462); + lookahead == 'e') ADVANCE(3422); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(679); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3564); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3523); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 620: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '$') ADVANCE(1844); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '.') ADVANCE(2364); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '$') ADVANCE(1811); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '.') ADVANCE(2326); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(679); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3564); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3523); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 621: ADVANCE_MAP( - '#', 4941, - '$', 1844, - '(', 2360, - '.', 2363, - '<', 3791, - '=', 3817, - '_', 3582, - 'i', 3598, - '|', 1841, - '+', 3574, - '-', 3574, + '#', 4896, + '$', 1811, + '(', 2322, + '.', 2325, + '<', 3748, + '=', 3774, + '_', 3541, + 'i', 3557, + '|', 1808, + '+', 3533, + '-', 3533, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3566); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3525); END_STATE(); case 622: ADVANCE_MAP( - '#', 4941, - '$', 1844, - '(', 2360, - '.', 2363, - '<', 3791, - '=', 3817, - '_', 3582, - '|', 1841, - '+', 3574, - '-', 3574, + '#', 4896, + '$', 1811, + '(', 2322, + '.', 2325, + '<', 3748, + '=', 3774, + '_', 3541, + '|', 1808, + '+', 3533, + '-', 3533, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(672); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3566); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3525); END_STATE(); case 623: ADVANCE_MAP( - '#', 4941, - '$', 1844, - '(', 2360, - '.', 2363, - '=', 3454, - '_', 3466, - 'i', 3487, - '|', 1841, - '+', 3450, - '-', 3450, + '#', 4896, + '$', 1811, + '(', 2322, + '.', 2325, + '=', 3414, + '_', 3426, + 'i', 3447, + '|', 1808, + '+', 3410, + '-', 3410, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 624: ADVANCE_MAP( - '#', 4941, - '$', 1844, - '(', 2360, - '.', 2363, - '=', 3454, - '_', 3466, - '|', 1841, - '+', 3450, - '-', 3450, + '#', 4896, + '$', 1811, + '(', 2322, + '.', 2325, + '=', 3414, + '_', 3426, + '|', 1808, + '+', 3410, + '-', 3410, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(672); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 625: ADVANCE_MAP( - '#', 4941, - '$', 1844, - '(', 2360, - '.', 2363, - '=', 3689, - '_', 3696, - 'i', 3712, - '|', 1841, - '+', 3685, - '-', 3685, + '#', 4896, + '$', 1811, + '(', 2322, + '.', 2325, + '=', 3647, + '_', 3654, + 'i', 3670, + '|', 1808, + '+', 3643, + '-', 3643, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3677); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3635); END_STATE(); case 626: ADVANCE_MAP( - '#', 4941, - '$', 1844, - '(', 2360, - '.', 2363, - '=', 3689, - '_', 3696, - '|', 1841, - '+', 3685, - '-', 3685, + '#', 4896, + '$', 1811, + '(', 2322, + '.', 2325, + '=', 3647, + '_', 3654, + '|', 1808, + '+', 3643, + '-', 3643, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(672); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3677); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3635); END_STATE(); case 627: ADVANCE_MAP( - '#', 4941, - '$', 1844, - '(', 2360, - '.', 2363, - '_', 3581, - '+', 3574, - '-', 3574, - '<', 3791, - '=', 3791, + '#', 4896, + '$', 1811, + '(', 2322, + '.', 2325, + '_', 3540, + '+', 3533, + '-', 3533, + '<', 3748, + '=', 3748, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(678); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3675); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3566); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3525); END_STATE(); case 628: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '$') ADVANCE(1844); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '.') ADVANCE(2363); - if (lookahead == '_') ADVANCE(3695); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '$') ADVANCE(1811); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '.') ADVANCE(2325); + if (lookahead == '_') ADVANCE(3653); if (lookahead == '+' || - lookahead == '-') ADVANCE(3685); + lookahead == '-') ADVANCE(3643); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(678); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3789); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3677); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3746); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3635); END_STATE(); case 629: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '$') ADVANCE(1844); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '.') ADVANCE(2363); - if (lookahead == '_') ADVANCE(3465); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '$') ADVANCE(1811); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '.') ADVANCE(2325); + if (lookahead == '_') ADVANCE(3425); if (lookahead == '+' || - lookahead == '-') ADVANCE(3450); + lookahead == '-') ADVANCE(3410); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(678); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3564); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3523); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 630: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '$') ADVANCE(1844); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '.') ADVANCE(2363); - if (lookahead == '_') ADVANCE(3465); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '$') ADVANCE(1811); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '.') ADVANCE(2325); + if (lookahead == '_') ADVANCE(3425); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3462); + lookahead == 'e') ADVANCE(3422); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(679); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3564); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3523); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 631: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '$') ADVANCE(1844); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '.') ADVANCE(2363); - if (lookahead == '_') ADVANCE(3465); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '$') ADVANCE(1811); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '.') ADVANCE(2325); + if (lookahead == '_') ADVANCE(3425); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(679); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3564); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3523); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 632: ADVANCE_MAP( - '#', 4941, - '$', 1844, - '(', 2360, - '.', 2363, - '_', 3582, - 'i', 3616, - '+', 3574, - '-', 3574, - '<', 3791, - '=', 3791, + '#', 4896, + '$', 1811, + '(', 2322, + '.', 2325, + '_', 3541, + 'i', 3574, + '+', 3533, + '-', 3533, + '<', 3748, + '=', 3748, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(673); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3566); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3525); END_STATE(); case 633: ADVANCE_MAP( - '#', 4941, - '$', 1844, - '(', 2360, - '.', 2363, - '_', 3582, - '{', 2000, - '+', 3574, - '-', 3574, - '<', 3791, - '=', 3791, + '#', 4896, + '$', 1811, + '(', 2322, + '.', 2325, + '_', 3541, + '{', 1967, + '+', 3533, + '-', 3533, + '<', 3748, + '=', 3748, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(674); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3566); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3525); END_STATE(); case 634: ADVANCE_MAP( - '#', 4941, - '$', 1844, - '(', 2360, - '.', 2363, - '_', 3696, - 'i', 3730, - '+', 3685, - '-', 3685, + '#', 4896, + '$', 1811, + '(', 2322, + '.', 2325, + '_', 3654, + 'i', 3687, + '+', 3643, + '-', 3643, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(673); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3677); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3635); END_STATE(); case 635: ADVANCE_MAP( - '#', 4941, - '$', 1844, - '(', 2360, - '.', 2363, - '_', 3696, - '{', 2000, - '+', 3685, - '-', 3685, + '#', 4896, + '$', 1811, + '(', 2322, + '.', 2325, + '_', 3654, + '{', 1967, + '+', 3643, + '-', 3643, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(674); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3677); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3635); END_STATE(); case 636: ADVANCE_MAP( - '#', 4941, - '$', 1844, - '(', 2360, - '.', 2363, - '_', 3466, - 'i', 3505, - '+', 3450, - '-', 3450, + '#', 4896, + '$', 1811, + '(', 2322, + '.', 2325, + '_', 3426, + 'i', 3464, + '+', 3410, + '-', 3410, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(673); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 637: ADVANCE_MAP( - '#', 4941, - '$', 1844, - '(', 2360, - '.', 2363, - '_', 3466, - '{', 2000, - '+', 3450, - '-', 3450, + '#', 4896, + '$', 1811, + '(', 2322, + '.', 2325, + '_', 3426, + '{', 1967, + '+', 3410, + '-', 3410, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(674); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 638: ADVANCE_MAP( - '#', 4941, - '$', 1844, - '(', 2360, - '.', 2363, - '_', 3466, - '{', 2000, - 'E', 3461, - 'e', 3461, + '#', 4896, + '$', 1811, + '(', 2322, + '.', 2325, + '_', 3426, + '{', 1967, + 'E', 3421, + 'e', 3421, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(675); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 639: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '$') ADVANCE(1844); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '.') ADVANCE(2363); - if (lookahead == '_') ADVANCE(3466); - if (lookahead == '{') ADVANCE(2000); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '$') ADVANCE(1811); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '.') ADVANCE(2325); + if (lookahead == '_') ADVANCE(3426); + if (lookahead == '{') ADVANCE(1967); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(675); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 640: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '$') ADVANCE(1844); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '.') ADVANCE(2363); - if (lookahead == '{') ADVANCE(2000); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '$') ADVANCE(1811); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '.') ADVANCE(2325); + if (lookahead == '{') ADVANCE(1967); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3461); + lookahead == 'e') ADVANCE(3421); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(675); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3437); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 641: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '$') ADVANCE(1844); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '.') ADVANCE(2363); - if (lookahead == '{') ADVANCE(2000); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '$') ADVANCE(1811); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '.') ADVANCE(2325); + if (lookahead == '{') ADVANCE(1967); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(675); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3437); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 642: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '$') ADVANCE(1844); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '.') ADVANCE(2363); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '$') ADVANCE(1811); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '.') ADVANCE(2325); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3462); + lookahead == 'e') ADVANCE(3422); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(679); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3564); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3523); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 643: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '$') ADVANCE(1844); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '.') ADVANCE(2363); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '$') ADVANCE(1811); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '.') ADVANCE(2325); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(679); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3564); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3523); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 644: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '$') ADVANCE(1844); - if (lookahead == '(') ADVANCE(1839); - if (lookahead == '-') ADVANCE(1889); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '$') ADVANCE(1811); + if (lookahead == '(') ADVANCE(1806); + if (lookahead == '-') ADVANCE(1856); if (lookahead == 'f') ADVANCE(836); if (lookahead == 'n') ADVANCE(922); if (lookahead == 't') ADVANCE(936); @@ -39091,401 +38629,401 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 645: ADVANCE_MAP( - '#', 4941, - '$', 1844, - ')', 1840, + '#', 4896, + '$', 1811, + ')', 1807, '+', 809, - ',', 1835, - '-', 1894, + ',', 1802, + '-', 1861, '.', 808, - ':', 1830, - ']', 1838, - '|', 1841, + ':', 1797, + ']', 1805, + '|', 1808, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(645); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 646: ADVANCE_MAP( - '#', 4941, - '$', 1844, - ')', 1840, - ',', 1835, - '-', 1890, + '#', 4896, + '$', 1811, + ')', 1807, + ',', 1802, + '-', 1857, '.', 808, - ':', 1830, - '=', 1301, - '?', 1883, - ']', 1838, - '|', 1841, + ':', 1797, + '=', 1271, + '?', 1850, + ']', 1805, + '|', 1808, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(647); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 647: ADVANCE_MAP( - '#', 4941, - '$', 1844, - ')', 1840, - ',', 1835, - '-', 1890, + '#', 4896, + '$', 1811, + ')', 1807, + ',', 1802, + '-', 1857, '.', 808, - ':', 1830, - '=', 1301, - ']', 1838, - '|', 1841, + ':', 1797, + '=', 1271, + ']', 1805, + '|', 1808, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(647); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 648: ADVANCE_MAP( - '#', 4941, - '$', 1844, - ')', 1840, - ',', 1835, - '-', 1890, + '#', 4896, + '$', 1811, + ')', 1807, + ',', 1802, + '-', 1857, '.', 808, - ':', 1830, + ':', 1797, '=', 816, - '?', 2102, - ']', 1838, - '{', 2000, - '|', 1841, - '}', 2001, + '?', 2064, + ']', 1805, + '{', 1967, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(648); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 649: ADVANCE_MAP( - '#', 4941, - '$', 1844, - ')', 1840, - ',', 1835, - '-', 1890, + '#', 4896, + '$', 1811, + ')', 1807, + ',', 1802, + '-', 1857, '.', 808, - ':', 1830, - ']', 1838, - '_', 1579, - '|', 1841, + ':', 1797, + ']', 1805, + '_', 1546, + '|', 1808, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(650); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 650: ADVANCE_MAP( - '#', 4941, - '$', 1844, - ')', 1840, - ',', 1835, - '-', 1890, + '#', 4896, + '$', 1811, + ')', 1807, + ',', 1802, + '-', 1857, '.', 808, - ':', 1830, - ']', 1838, - '|', 1841, + ':', 1797, + ']', 1805, + '|', 1808, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(650); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 651: ADVANCE_MAP( - '#', 4941, - '$', 1844, - ')', 1840, - ',', 1835, - '-', 1890, - '.', 2366, - ':', 1830, - ']', 1838, - '|', 1841, - 'E', 1577, - 'e', 1577, + '#', 4896, + '$', 1811, + ')', 1807, + ',', 1802, + '-', 1857, + '.', 2328, + ':', 1797, + ']', 1805, + '|', 1808, + 'E', 1544, + 'e', 1544, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(650); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 652: ADVANCE_MAP( - '#', 4941, - '$', 1844, - ')', 1840, - ',', 1835, - '-', 1890, + '#', 4896, + '$', 1811, + ')', 1807, + ',', 1802, + '-', 1857, '.', 806, - ':', 1830, - ']', 1838, - '_', 1579, - '|', 1841, - 'E', 1577, - 'e', 1577, + ':', 1797, + ']', 1805, + '_', 1546, + '|', 1808, + 'E', 1544, + 'e', 1544, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(650); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 653: ADVANCE_MAP( - '#', 4941, - '$', 1844, - ')', 1840, - ',', 1835, - '-', 1890, - '.', 2367, - ':', 1830, + '#', 4896, + '$', 1811, + ')', 1807, + ',', 1802, + '-', 1857, + '.', 2329, + ':', 1797, '=', 816, - '?', 2102, - ']', 1838, - '{', 2000, - '|', 1841, - '}', 2001, + '?', 2064, + ']', 1805, + '{', 1967, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(648); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 654: ADVANCE_MAP( - '#', 4941, - '$', 1844, - ')', 1840, - ',', 1835, - '-', 1890, - '.', 2367, - ':', 1830, - ']', 1838, - '|', 1841, - 'E', 1577, - 'e', 1577, + '#', 4896, + '$', 1811, + ')', 1807, + ',', 1802, + '-', 1857, + '.', 2329, + ':', 1797, + ']', 1805, + '|', 1808, + 'E', 1544, + 'e', 1544, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(650); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 655: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '$') ADVANCE(1844); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '$') ADVANCE(1811); if (lookahead == '+') ADVANCE(809); - if (lookahead == '-') ADVANCE(1894); - if (lookahead == '{') ADVANCE(2000); + if (lookahead == '-') ADVANCE(1861); + if (lookahead == '{') ADVANCE(1967); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(655); END_STATE(); case 656: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '$') ADVANCE(1844); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '$') ADVANCE(1811); if (lookahead == '+') ADVANCE(809); - if (lookahead == '-') ADVANCE(1894); + if (lookahead == '-') ADVANCE(1861); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(656); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 657: ADVANCE_MAP( - '#', 4941, - '$', 1844, - ',', 1835, - '-', 1890, - '.', 2363, - ':', 1830, - ';', 1328, - '=', 1301, - '?', 2102, - '[', 1834, - ']', 1838, + '#', 4896, + '$', 1811, + ',', 1802, + '-', 1857, + '.', 2325, + ':', 1797, + ';', 1303, + '=', 1271, + '?', 2064, + '[', 1801, + ']', 1805, 'i', 908, - '{', 2000, - '}', 2001, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(659); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2536); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2498); END_STATE(); case 658: ADVANCE_MAP( - '#', 4941, - '$', 1844, - ',', 1835, - '-', 1890, + '#', 4896, + '$', 1811, + ',', 1802, + '-', 1857, '.', 802, - ':', 1830, - '=', 1301, + ':', 1797, + '=', 1271, 'i', 908, - '{', 2000, - '}', 2001, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(660); END_STATE(); case 659: ADVANCE_MAP( - '#', 4941, - '$', 1844, - ',', 1835, - '-', 1890, - ':', 1830, - ';', 1328, - '=', 1301, - '?', 2102, - '[', 1834, - ']', 1838, + '#', 4896, + '$', 1811, + ',', 1802, + '-', 1857, + ':', 1797, + ';', 1303, + '=', 1271, + '?', 2064, + '[', 1801, + ']', 1805, 'i', 908, - '{', 2000, - '}', 2001, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(659); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2536); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2498); END_STATE(); case 660: ADVANCE_MAP( - '#', 4941, - '$', 1844, - ',', 1835, - '-', 1890, - ':', 1830, - '=', 1301, + '#', 4896, + '$', 1811, + ',', 1802, + '-', 1857, + ':', 1797, + '=', 1271, 'i', 908, - '{', 2000, - '}', 2001, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(660); END_STATE(); case 661: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '$') ADVANCE(1844); - if (lookahead == '-') ADVANCE(1890); - if (lookahead == '.') ADVANCE(2364); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '$') ADVANCE(1811); + if (lookahead == '-') ADVANCE(1857); + if (lookahead == '.') ADVANCE(2326); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1577); + lookahead == 'e') ADVANCE(1544); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(670); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 662: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '$') ADVANCE(1844); - if (lookahead == '-') ADVANCE(1890); - if (lookahead == '.') ADVANCE(2363); - if (lookahead == '?') ADVANCE(2102); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '$') ADVANCE(1811); + if (lookahead == '-') ADVANCE(1857); + if (lookahead == '.') ADVANCE(2325); + if (lookahead == '?') ADVANCE(2064); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(665); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 663: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '$') ADVANCE(1844); - if (lookahead == '-') ADVANCE(1890); - if (lookahead == '.') ADVANCE(2363); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '$') ADVANCE(1811); + if (lookahead == '-') ADVANCE(1857); + if (lookahead == '.') ADVANCE(2325); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1577); + lookahead == 'e') ADVANCE(1544); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(670); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 664: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '$') ADVANCE(1844); - if (lookahead == '-') ADVANCE(1890); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '$') ADVANCE(1811); + if (lookahead == '-') ADVANCE(1857); if (lookahead == '.') ADVANCE(802); - if (lookahead == '_') ADVANCE(1579); + if (lookahead == '_') ADVANCE(1546); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1577); + lookahead == 'e') ADVANCE(1544); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(670); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 665: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '$') ADVANCE(1844); - if (lookahead == '-') ADVANCE(1890); - if (lookahead == '?') ADVANCE(2102); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '$') ADVANCE(1811); + if (lookahead == '-') ADVANCE(1857); + if (lookahead == '?') ADVANCE(2064); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(665); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 666: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '$') ADVANCE(1844); - if (lookahead == '-') ADVANCE(1890); - if (lookahead == '{') ADVANCE(2000); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '$') ADVANCE(1811); + if (lookahead == '-') ADVANCE(1857); + if (lookahead == '{') ADVANCE(1967); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(666); END_STATE(); case 667: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '$') ADVANCE(1844); - if (lookahead == '-') ADVANCE(1890); - if (lookahead == '{') ADVANCE(2000); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '$') ADVANCE(1811); + if (lookahead == '-') ADVANCE(1857); + if (lookahead == '{') ADVANCE(1967); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(666); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3748); END_STATE(); case 668: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '$') ADVANCE(1844); - if (lookahead == '-') ADVANCE(1890); - if (lookahead == '{') ADVANCE(2000); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '$') ADVANCE(1811); + if (lookahead == '-') ADVANCE(1857); + if (lookahead == '{') ADVANCE(1967); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(668); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 669: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '$') ADVANCE(1844); - if (lookahead == '-') ADVANCE(1890); - if (lookahead == '{') ADVANCE(2000); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '$') ADVANCE(1811); + if (lookahead == '-') ADVANCE(1857); + if (lookahead == '{') ADVANCE(1967); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(668); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1658); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1625); END_STATE(); case 670: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '$') ADVANCE(1844); - if (lookahead == '-') ADVANCE(1890); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '$') ADVANCE(1811); + if (lookahead == '-') ADVANCE(1857); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(670); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 671: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '$') ADVANCE(1844); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '$') ADVANCE(1811); if (lookahead == '=') ADVANCE(816); if (lookahead == 'i') ADVANCE(871); - if (lookahead == '|') ADVANCE(1841); + if (lookahead == '|') ADVANCE(1808); if (lookahead == '+' || lookahead == '-') ADVANCE(809); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(671); END_STATE(); case 672: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '$') ADVANCE(1844); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '$') ADVANCE(1811); if (lookahead == '=') ADVANCE(816); - if (lookahead == '|') ADVANCE(1841); + if (lookahead == '|') ADVANCE(1808); if (lookahead == '+' || lookahead == '-') ADVANCE(809); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(672); END_STATE(); case 673: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '$') ADVANCE(1844); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '$') ADVANCE(1811); if (lookahead == 'i') ADVANCE(908); if (lookahead == '+' || lookahead == '-') ADVANCE(809); @@ -39493,294 +39031,294 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(673); END_STATE(); case 674: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '$') ADVANCE(1844); - if (lookahead == '{') ADVANCE(2000); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '$') ADVANCE(1811); + if (lookahead == '{') ADVANCE(1967); if (lookahead == '+' || lookahead == '-') ADVANCE(809); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(674); END_STATE(); case 675: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '$') ADVANCE(1844); - if (lookahead == '{') ADVANCE(2000); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '$') ADVANCE(1811); + if (lookahead == '{') ADVANCE(1967); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(675); END_STATE(); case 676: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '$') ADVANCE(1844); - if (lookahead == '{') ADVANCE(2000); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '$') ADVANCE(1811); + if (lookahead == '{') ADVANCE(1967); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(675); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3748); END_STATE(); case 677: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '$') ADVANCE(1844); - if (lookahead == '{') ADVANCE(2000); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '$') ADVANCE(1811); + if (lookahead == '{') ADVANCE(1967); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(677); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 678: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '$') ADVANCE(1844); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '$') ADVANCE(1811); if (lookahead == '+' || lookahead == '-') ADVANCE(809); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(678); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 679: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '$') ADVANCE(1844); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '$') ADVANCE(1811); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(679); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 680: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '$') ADVANCE(1844); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '$') ADVANCE(1811); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(679); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4009); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3791); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3965); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3748); END_STATE(); case 681: ADVANCE_MAP( - '#', 4941, - '(', 2360, - ',', 3211, - '.', 2364, - 'E', 4844, - 'G', 4846, - 'K', 4846, - 'M', 4846, - 'P', 4846, - 'T', 4846, - ']', 1838, - '_', 4849, - 'd', 4855, - 'e', 4843, - 'g', 4845, - 'h', 4860, - 'k', 4845, - 'm', 4847, - 'n', 4861, - 'p', 4845, - 's', 4857, - 't', 4845, - 'u', 4861, - 'w', 4858, - 0xb5, 4861, - 'B', 2507, - 'b', 2507, + '#', 4896, + '(', 2322, + ',', 3171, + '.', 2326, + 'E', 4799, + 'G', 4801, + 'K', 4801, + 'M', 4801, + 'P', 4801, + 'T', 4801, + ']', 1805, + '_', 4804, + 'd', 4810, + 'e', 4798, + 'g', 4800, + 'h', 4815, + 'k', 4800, + 'm', 4802, + 'n', 4816, + 'p', 4800, + 's', 4812, + 't', 4800, + 'u', 4816, + 'w', 4813, + 0xb5, 4816, + 'B', 2469, + 'b', 2469, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4833); + lookahead == ' ') ADVANCE(3173); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4788); END_STATE(); case 682: ADVANCE_MAP( - '#', 4941, - '(', 2360, - ',', 3211, - '.', 2364, - 'E', 4844, - 'G', 4846, - 'K', 4846, - 'M', 4846, - 'P', 4846, - 'T', 4846, - ']', 1838, - 'd', 4855, - 'e', 4843, - 'g', 4845, - 'h', 4860, - 'k', 4845, - 'm', 4847, - 'n', 4861, - 'p', 4845, - 's', 4857, - 't', 4845, - 'u', 4861, - 'w', 4858, - 0xb5, 4861, - 'B', 2507, - 'b', 2507, + '#', 4896, + '(', 2322, + ',', 3171, + '.', 2326, + 'E', 4799, + 'G', 4801, + 'K', 4801, + 'M', 4801, + 'P', 4801, + 'T', 4801, + ']', 1805, + 'd', 4810, + 'e', 4798, + 'g', 4800, + 'h', 4815, + 'k', 4800, + 'm', 4802, + 'n', 4816, + 'p', 4800, + 's', 4812, + 't', 4800, + 'u', 4816, + 'w', 4813, + 0xb5, 4816, + 'B', 2469, + 'b', 2469, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4833); + lookahead == ' ') ADVANCE(3173); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4788); END_STATE(); case 683: ADVANCE_MAP( - '#', 4941, - '(', 2360, - ',', 3211, - '.', 2364, - 'E', 3844, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - ']', 1838, - '_', 3867, - 'd', 3883, - 'e', 3843, - 'g', 3847, - 'h', 3980, - 'k', 3847, - 'm', 3850, - 'n', 3990, - 'p', 3847, - 's', 3901, - 't', 3847, - 'u', 3990, - 'w', 3924, - 0xb5, 3990, - 'B', 2507, - 'b', 2507, + '#', 4896, + '(', 2322, + ',', 3171, + '.', 2326, + 'E', 3801, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + ']', 1805, + '_', 3824, + 'd', 3840, + 'e', 3800, + 'g', 3804, + 'h', 3936, + 'k', 3804, + 'm', 3807, + 'n', 3946, + 'p', 3804, + 's', 3858, + 't', 3804, + 'u', 3946, + 'w', 3881, + 0xb5, 3946, + 'B', 2469, + 'b', 2469, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3791); + lookahead == ' ') ADVANCE(3173); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3748); END_STATE(); case 684: ADVANCE_MAP( - '#', 4941, - '(', 2360, - ',', 3211, - '.', 2364, - 'E', 3844, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - ']', 1838, - 'd', 3883, - 'e', 3843, - 'g', 3847, - 'h', 3980, - 'k', 3847, - 'm', 3850, - 'n', 3990, - 'p', 3847, - 's', 3901, - 't', 3847, - 'u', 3990, - 'w', 3924, - 0xb5, 3990, - 'B', 2507, - 'b', 2507, + '#', 4896, + '(', 2322, + ',', 3171, + '.', 2326, + 'E', 3801, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + ']', 1805, + 'd', 3840, + 'e', 3800, + 'g', 3804, + 'h', 3936, + 'k', 3804, + 'm', 3807, + 'n', 3946, + 'p', 3804, + 's', 3858, + 't', 3804, + 'u', 3946, + 'w', 3881, + 0xb5, 3946, + 'B', 2469, + 'b', 2469, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3791); + lookahead == ' ') ADVANCE(3173); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3748); END_STATE(); case 685: ADVANCE_MAP( - '#', 4941, - '(', 2360, - ',', 3211, - '.', 2364, - 'E', 4846, - 'G', 4846, - 'K', 4846, - 'M', 4846, - 'P', 4846, - 'T', 4846, - ']', 1838, - 'd', 4855, - 'e', 4845, - 'g', 4845, - 'h', 4860, - 'k', 4845, - 'm', 4847, - 'n', 4861, - 'p', 4845, - 's', 4857, - 't', 4845, - 'u', 4861, - 'w', 4858, - 0xb5, 4861, - 'B', 2507, - 'b', 2507, + '#', 4896, + '(', 2322, + ',', 3171, + '.', 2326, + 'E', 4801, + 'G', 4801, + 'K', 4801, + 'M', 4801, + 'P', 4801, + 'T', 4801, + ']', 1805, + 'd', 4810, + 'e', 4800, + 'g', 4800, + 'h', 4815, + 'k', 4800, + 'm', 4802, + 'n', 4816, + 'p', 4800, + 's', 4812, + 't', 4800, + 'u', 4816, + 'w', 4813, + 0xb5, 4816, + 'B', 2469, + 'b', 2469, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4833); + lookahead == ' ') ADVANCE(3173); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4788); END_STATE(); case 686: ADVANCE_MAP( - '#', 4941, - '(', 2360, - ',', 3211, - '.', 2364, - 'E', 3848, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - ']', 1838, - 'd', 3883, - 'e', 3847, - 'g', 3847, - 'h', 3980, - 'k', 3847, - 'm', 3850, - 'n', 3990, - 'p', 3847, - 's', 3901, - 't', 3847, - 'u', 3990, - 'w', 3924, - 0xb5, 3990, - 'B', 2507, - 'b', 2507, + '#', 4896, + '(', 2322, + ',', 3171, + '.', 2326, + 'E', 3805, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + ']', 1805, + 'd', 3840, + 'e', 3804, + 'g', 3804, + 'h', 3936, + 'k', 3804, + 'm', 3807, + 'n', 3946, + 'p', 3804, + 's', 3858, + 't', 3804, + 'u', 3946, + 'w', 3881, + 0xb5, 3946, + 'B', 2469, + 'b', 2469, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3791); + lookahead == ' ') ADVANCE(3173); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3748); END_STATE(); case 687: ADVANCE_MAP( - '#', 4941, - '(', 2360, - ',', 3211, - '.', 2364, - ']', 1838, - '_', 3466, - 'E', 3461, - 'e', 3461, + '#', 4896, + '(', 2322, + ',', 3171, + '.', 2326, + ']', 1805, + '_', 3426, + 'E', 3421, + 'e', 3421, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3437); + lookahead == ' ') ADVANCE(3173); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3397); END_STATE(); case 688: ADVANCE_MAP( - '#', 4941, - '(', 2360, - ',', 3211, - '.', 2364, - ']', 1838, - '_', 4720, - '}', 2001, - 'E', 4718, - 'e', 4718, + '#', 4896, + '(', 2322, + ',', 3171, + '.', 2326, + ']', 1805, + '_', 4675, + '}', 1968, + 'E', 4673, + 'e', 4673, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + lookahead == ' ') ADVANCE(3173); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -39789,21 +39327,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - lookahead != '{') ADVANCE(4712); + lookahead != '{') ADVANCE(4667); END_STATE(); case 689: ADVANCE_MAP( - '#', 4941, - '(', 2360, - ',', 3211, - '.', 2364, - ']', 1838, - '}', 2001, - 'E', 4718, - 'e', 4718, + '#', 4896, + '(', 2322, + ',', 3171, + '.', 2326, + ']', 1805, + '}', 1968, + 'E', 4673, + 'e', 4673, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); + lookahead == ' ') ADVANCE(3173); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -39811,17 +39349,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - lookahead != '{') ADVANCE(4712); + lookahead != '{') ADVANCE(4667); END_STATE(); case 690: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == ',') ADVANCE(3211); - if (lookahead == '.') ADVANCE(2364); - if (lookahead == ']') ADVANCE(1838); - if (lookahead == '}') ADVANCE(2001); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == ',') ADVANCE(3171); + if (lookahead == '.') ADVANCE(2326); + if (lookahead == ']') ADVANCE(1805); + if (lookahead == '}') ADVANCE(1968); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); + lookahead == ' ') ADVANCE(3173); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -39829,1399 +39367,1399 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - lookahead != '{') ADVANCE(4712); + lookahead != '{') ADVANCE(4667); END_STATE(); case 691: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == ',') ADVANCE(3211); - if (lookahead == '.') ADVANCE(2364); - if (lookahead == ']') ADVANCE(1838); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == ',') ADVANCE(3171); + if (lookahead == '.') ADVANCE(2326); + if (lookahead == ']') ADVANCE(1805); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3461); + lookahead == 'e') ADVANCE(3421); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3437); + lookahead == ' ') ADVANCE(3173); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3397); END_STATE(); case 692: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == ',') ADVANCE(3211); - if (lookahead == '.') ADVANCE(2364); - if (lookahead == ']') ADVANCE(1838); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == ',') ADVANCE(3171); + if (lookahead == '.') ADVANCE(2326); + if (lookahead == ']') ADVANCE(1805); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3437); + lookahead == ' ') ADVANCE(3173); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3397); END_STATE(); case 693: ADVANCE_MAP( - '#', 4941, - '(', 2360, - ',', 3211, - '.', 2363, - ']', 1838, - '_', 3466, - 'E', 3461, - 'e', 3461, + '#', 4896, + '(', 2322, + ',', 3171, + '.', 2325, + ']', 1805, + '_', 3426, + 'E', 3421, + 'e', 3421, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3437); + lookahead == ' ') ADVANCE(3173); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3397); END_STATE(); case 694: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == ',') ADVANCE(3211); - if (lookahead == '.') ADVANCE(2363); - if (lookahead == ']') ADVANCE(1838); - if (lookahead == '_') ADVANCE(3466); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == ',') ADVANCE(3171); + if (lookahead == '.') ADVANCE(2325); + if (lookahead == ']') ADVANCE(1805); + if (lookahead == '_') ADVANCE(3426); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3437); + lookahead == ' ') ADVANCE(3173); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3397); END_STATE(); case 695: ADVANCE_MAP( - '#', 4941, - '(', 2360, - ',', 3211, - '.', 2363, - ']', 1838, - '_', 4720, - 'E', 4718, - 'e', 4718, + '#', 4896, + '(', 2322, + ',', 3171, + '.', 2325, + ']', 1805, + '_', 4675, + 'E', 4673, + 'e', 4673, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4712); + lookahead == ' ') ADVANCE(3173); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4667); END_STATE(); case 696: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == ',') ADVANCE(3211); - if (lookahead == '.') ADVANCE(2363); - if (lookahead == ']') ADVANCE(1838); - if (lookahead == '_') ADVANCE(4720); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == ',') ADVANCE(3171); + if (lookahead == '.') ADVANCE(2325); + if (lookahead == ']') ADVANCE(1805); + if (lookahead == '_') ADVANCE(4675); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4712); + lookahead == ' ') ADVANCE(3173); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4667); END_STATE(); case 697: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == ',') ADVANCE(3211); - if (lookahead == '.') ADVANCE(2363); - if (lookahead == ']') ADVANCE(1838); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == ',') ADVANCE(3171); + if (lookahead == '.') ADVANCE(2325); + if (lookahead == ']') ADVANCE(1805); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3461); + lookahead == 'e') ADVANCE(4673); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3437); + lookahead == ' ') ADVANCE(3173); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4667); END_STATE(); case 698: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == ',') ADVANCE(3211); - if (lookahead == '.') ADVANCE(2363); - if (lookahead == ']') ADVANCE(1838); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == ',') ADVANCE(3171); + if (lookahead == '.') ADVANCE(2325); + if (lookahead == ']') ADVANCE(1805); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4718); + lookahead == 'e') ADVANCE(3421); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4712); + lookahead == ' ') ADVANCE(3173); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3397); END_STATE(); case 699: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == ',') ADVANCE(3211); - if (lookahead == '.') ADVANCE(2363); - if (lookahead == ']') ADVANCE(1838); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == ',') ADVANCE(3171); + if (lookahead == '.') ADVANCE(2325); + if (lookahead == ']') ADVANCE(1805); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3437); + lookahead == ' ') ADVANCE(3173); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3397); END_STATE(); case 700: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == ',') ADVANCE(3211); - if (lookahead == '.') ADVANCE(2363); - if (lookahead == ']') ADVANCE(1838); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == ',') ADVANCE(3171); + if (lookahead == '.') ADVANCE(2325); + if (lookahead == ']') ADVANCE(1805); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4712); + lookahead == ' ') ADVANCE(3173); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4667); END_STATE(); case 701: ADVANCE_MAP( - '#', 4941, - '(', 2360, - '-', 1890, - '.', 2364, - 'E', 3853, - 'G', 3856, - 'K', 3856, - 'M', 3856, - 'P', 3856, - 'T', 3856, - '_', 3866, - 'd', 3885, - 'e', 3852, - 'g', 3855, - 'h', 3983, - 'k', 3855, - 'm', 3858, - 'n', 3992, - 'p', 3855, - 's', 3904, - 't', 3855, - 'u', 3992, - 'w', 3925, - 0xb5, 3992, - 'B', 2515, - 'b', 2515, + '#', 4896, + '(', 2322, + '-', 1857, + '.', 2326, + 'E', 3810, + 'G', 3813, + 'K', 3813, + 'M', 3813, + 'P', 3813, + 'T', 3813, + '_', 3823, + 'd', 3842, + 'e', 3809, + 'g', 3812, + 'h', 3939, + 'k', 3812, + 'm', 3815, + 'n', 3948, + 'p', 3812, + 's', 3861, + 't', 3812, + 'u', 3948, + 'w', 3882, + 0xb5, 3948, + 'B', 2477, + 'b', 2477, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(737); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4009); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3791); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3965); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3748); END_STATE(); case 702: ADVANCE_MAP( - '#', 4941, - '(', 2360, - '-', 1890, - '.', 2364, - 'E', 3853, - 'G', 3856, - 'K', 3856, - 'M', 3856, - 'P', 3856, - 'T', 3856, - 'd', 3885, - 'e', 3852, - 'g', 3855, - 'h', 3983, - 'k', 3855, - 'm', 3858, - 'n', 3992, - 'p', 3855, - 's', 3904, - 't', 3855, - 'u', 3992, - 'w', 3925, - 0xb5, 3992, - 'B', 2515, - 'b', 2515, + '#', 4896, + '(', 2322, + '-', 1857, + '.', 2326, + 'E', 3810, + 'G', 3813, + 'K', 3813, + 'M', 3813, + 'P', 3813, + 'T', 3813, + 'd', 3842, + 'e', 3809, + 'g', 3812, + 'h', 3939, + 'k', 3812, + 'm', 3815, + 'n', 3948, + 'p', 3812, + 's', 3861, + 't', 3812, + 'u', 3948, + 'w', 3882, + 0xb5, 3948, + 'B', 2477, + 'b', 2477, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(737); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4009); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3791); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3965); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3748); END_STATE(); case 703: ADVANCE_MAP( - '#', 4941, - '(', 2360, - '-', 1890, - '.', 2364, - 'E', 3856, - 'G', 3856, - 'K', 3856, - 'M', 3856, - 'P', 3856, - 'T', 3856, - 'd', 3885, - 'e', 3855, - 'g', 3855, - 'h', 3983, - 'k', 3855, - 'm', 3858, - 'n', 3992, - 'p', 3855, - 's', 3904, - 't', 3855, - 'u', 3992, - 'w', 3925, - 0xb5, 3992, - 'B', 2515, - 'b', 2515, + '#', 4896, + '(', 2322, + '-', 1857, + '.', 2326, + 'E', 3813, + 'G', 3813, + 'K', 3813, + 'M', 3813, + 'P', 3813, + 'T', 3813, + 'd', 3842, + 'e', 3812, + 'g', 3812, + 'h', 3939, + 'k', 3812, + 'm', 3815, + 'n', 3948, + 'p', 3812, + 's', 3861, + 't', 3812, + 'u', 3948, + 'w', 3882, + 0xb5, 3948, + 'B', 2477, + 'b', 2477, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(737); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4009); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3791); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3965); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3748); END_STATE(); case 704: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '-') ADVANCE(1890); - if (lookahead == '.') ADVANCE(2364); - if (lookahead == '_') ADVANCE(3465); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '-') ADVANCE(1857); + if (lookahead == '.') ADVANCE(2326); + if (lookahead == '_') ADVANCE(3425); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3462); + lookahead == 'e') ADVANCE(3422); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(737); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3564); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3523); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 705: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '-') ADVANCE(1890); - if (lookahead == '.') ADVANCE(2364); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '-') ADVANCE(1857); + if (lookahead == '.') ADVANCE(2326); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3462); + lookahead == 'e') ADVANCE(3422); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(737); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3564); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3523); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 706: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '-') ADVANCE(1890); - if (lookahead == '.') ADVANCE(2364); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '-') ADVANCE(1857); + if (lookahead == '.') ADVANCE(2326); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(737); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3564); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3523); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 707: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '-') ADVANCE(1890); - if (lookahead == '.') ADVANCE(2363); - if (lookahead == '_') ADVANCE(3465); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '-') ADVANCE(1857); + if (lookahead == '.') ADVANCE(2325); + if (lookahead == '_') ADVANCE(3425); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3462); + lookahead == 'e') ADVANCE(3422); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(737); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3564); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3523); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 708: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '-') ADVANCE(1890); - if (lookahead == '.') ADVANCE(2363); - if (lookahead == '_') ADVANCE(3465); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '-') ADVANCE(1857); + if (lookahead == '.') ADVANCE(2325); + if (lookahead == '_') ADVANCE(3425); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(737); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3564); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3523); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 709: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '-') ADVANCE(1890); - if (lookahead == '.') ADVANCE(2363); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '-') ADVANCE(1857); + if (lookahead == '.') ADVANCE(2325); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3462); + lookahead == 'e') ADVANCE(3422); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(737); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3564); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3523); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 710: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '-') ADVANCE(1890); - if (lookahead == '.') ADVANCE(2363); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '-') ADVANCE(1857); + if (lookahead == '.') ADVANCE(2325); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(737); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3564); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3523); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 711: ADVANCE_MAP( - '#', 4941, - '(', 2360, - '.', 2364, - 'E', 3844, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - '_', 3867, - 'd', 3883, - 'e', 3843, - 'g', 3847, - 'h', 3980, - 'i', 3933, - 'k', 3847, - 'm', 3850, - 'n', 3990, - 'p', 3847, - 's', 3901, - 't', 3847, - 'u', 3990, - 'w', 3924, - 0xb5, 3990, - 'B', 2507, - 'b', 2507, + '#', 4896, + '(', 2322, + '.', 2326, + 'E', 3801, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + '_', 3824, + 'd', 3840, + 'e', 3800, + 'g', 3804, + 'h', 3936, + 'i', 3889, + 'k', 3804, + 'm', 3807, + 'n', 3946, + 'p', 3804, + 's', 3858, + 't', 3804, + 'u', 3946, + 'w', 3881, + 0xb5, 3946, + 'B', 2469, + 'b', 2469, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(768); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3791); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3748); END_STATE(); case 712: ADVANCE_MAP( - '#', 4941, - '(', 2360, - '.', 2364, - 'E', 3844, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - '_', 3867, - 'd', 3883, - 'e', 3843, - 'g', 3847, - 'h', 3980, - 'k', 3847, - 'm', 3850, - 'n', 3990, - 'p', 3847, - 's', 3901, - 't', 3847, - 'u', 3990, - 'w', 3924, - '{', 2000, - 0xb5, 3990, - 'B', 2507, - 'b', 2507, + '#', 4896, + '(', 2322, + '.', 2326, + 'E', 3801, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + '_', 3824, + 'd', 3840, + 'e', 3800, + 'g', 3804, + 'h', 3936, + 'k', 3804, + 'm', 3807, + 'n', 3946, + 'p', 3804, + 's', 3858, + 't', 3804, + 'u', 3946, + 'w', 3881, + '{', 1967, + 0xb5, 3946, + 'B', 2469, + 'b', 2469, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(769); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3791); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3748); END_STATE(); case 713: ADVANCE_MAP( - '#', 4941, - '(', 2360, - '.', 2364, - 'E', 3844, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - 'd', 3883, - 'e', 3843, - 'g', 3847, - 'h', 3980, - 'i', 3933, - 'k', 3847, - 'm', 3850, - 'n', 3990, - 'p', 3847, - 's', 3901, - 't', 3847, - 'u', 3990, - 'w', 3924, - 0xb5, 3990, - 'B', 2507, - 'b', 2507, + '#', 4896, + '(', 2322, + '.', 2326, + 'E', 3801, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + 'd', 3840, + 'e', 3800, + 'g', 3804, + 'h', 3936, + 'i', 3889, + 'k', 3804, + 'm', 3807, + 'n', 3946, + 'p', 3804, + 's', 3858, + 't', 3804, + 'u', 3946, + 'w', 3881, + 0xb5, 3946, + 'B', 2469, + 'b', 2469, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(768); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3748); END_STATE(); case 714: ADVANCE_MAP( - '#', 4941, - '(', 2360, - '.', 2364, - 'E', 3844, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - 'd', 3883, - 'e', 3843, - 'g', 3847, - 'h', 3980, - 'k', 3847, - 'm', 3850, - 'n', 3990, - 'p', 3847, - 's', 3901, - 't', 3847, - 'u', 3990, - 'w', 3924, - '{', 2000, - 0xb5, 3990, - 'B', 2507, - 'b', 2507, + '#', 4896, + '(', 2322, + '.', 2326, + 'E', 3801, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + 'd', 3840, + 'e', 3800, + 'g', 3804, + 'h', 3936, + 'k', 3804, + 'm', 3807, + 'n', 3946, + 'p', 3804, + 's', 3858, + 't', 3804, + 'u', 3946, + 'w', 3881, + '{', 1967, + 0xb5, 3946, + 'B', 2469, + 'b', 2469, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(769); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3748); END_STATE(); case 715: ADVANCE_MAP( - '#', 4941, - '(', 2360, - '.', 2364, - 'E', 3848, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - 'd', 3883, - 'e', 3847, - 'g', 3847, - 'h', 3980, - 'i', 3933, - 'k', 3847, - 'm', 3850, - 'n', 3990, - 'p', 3847, - 's', 3901, - 't', 3847, - 'u', 3990, - 'w', 3924, - 0xb5, 3990, - 'B', 2507, - 'b', 2507, + '#', 4896, + '(', 2322, + '.', 2326, + 'E', 3805, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + 'd', 3840, + 'e', 3804, + 'g', 3804, + 'h', 3936, + 'i', 3889, + 'k', 3804, + 'm', 3807, + 'n', 3946, + 'p', 3804, + 's', 3858, + 't', 3804, + 'u', 3946, + 'w', 3881, + 0xb5, 3946, + 'B', 2469, + 'b', 2469, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(768); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3748); END_STATE(); case 716: ADVANCE_MAP( - '#', 4941, - '(', 2360, - '.', 2364, - 'E', 3848, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - 'd', 3883, - 'e', 3847, - 'g', 3847, - 'h', 3980, - 'k', 3847, - 'm', 3850, - 'n', 3990, - 'p', 3847, - 's', 3901, - 't', 3847, - 'u', 3990, - 'w', 3924, - '{', 2000, - 0xb5, 3990, - 'B', 2507, - 'b', 2507, + '#', 4896, + '(', 2322, + '.', 2326, + 'E', 3805, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + 'd', 3840, + 'e', 3804, + 'g', 3804, + 'h', 3936, + 'k', 3804, + 'm', 3807, + 'n', 3946, + 'p', 3804, + 's', 3858, + 't', 3804, + 'u', 3946, + 'w', 3881, + '{', 1967, + 0xb5, 3946, + 'B', 2469, + 'b', 2469, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(769); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3748); END_STATE(); case 717: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '.') ADVANCE(2364); - if (lookahead == '_') ADVANCE(3466); - if (lookahead == 'i') ADVANCE(3505); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '.') ADVANCE(2326); + if (lookahead == '_') ADVANCE(3426); + if (lookahead == 'i') ADVANCE(3464); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3461); + lookahead == 'e') ADVANCE(3421); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(768); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 718: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '.') ADVANCE(2364); - if (lookahead == '_') ADVANCE(3466); - if (lookahead == '{') ADVANCE(2000); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '.') ADVANCE(2326); + if (lookahead == '_') ADVANCE(3426); + if (lookahead == '{') ADVANCE(1967); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3461); + lookahead == 'e') ADVANCE(3421); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(769); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 719: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '.') ADVANCE(2364); - if (lookahead == 'i') ADVANCE(3505); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '.') ADVANCE(2326); + if (lookahead == 'i') ADVANCE(3464); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3461); + lookahead == 'e') ADVANCE(3421); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(768); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3437); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 720: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '.') ADVANCE(2364); - if (lookahead == 'i') ADVANCE(3505); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '.') ADVANCE(2326); + if (lookahead == 'i') ADVANCE(3464); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(768); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3437); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 721: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '.') ADVANCE(2364); - if (lookahead == '{') ADVANCE(2000); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '.') ADVANCE(2326); + if (lookahead == '{') ADVANCE(1967); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3461); + lookahead == 'e') ADVANCE(3421); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(769); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3437); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 722: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '.') ADVANCE(2364); - if (lookahead == '{') ADVANCE(2000); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '.') ADVANCE(2326); + if (lookahead == '{') ADVANCE(1967); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(769); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3437); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 723: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '.') ADVANCE(2363); - if (lookahead == '_') ADVANCE(3466); - if (lookahead == 'i') ADVANCE(3505); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '.') ADVANCE(2325); + if (lookahead == '_') ADVANCE(3426); + if (lookahead == 'i') ADVANCE(3464); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3461); + lookahead == 'e') ADVANCE(3421); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(768); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 724: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '.') ADVANCE(2363); - if (lookahead == '_') ADVANCE(3466); - if (lookahead == 'i') ADVANCE(3505); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '.') ADVANCE(2325); + if (lookahead == '_') ADVANCE(3426); + if (lookahead == 'i') ADVANCE(3464); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(768); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 725: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '.') ADVANCE(2363); - if (lookahead == '_') ADVANCE(3466); - if (lookahead == '{') ADVANCE(2000); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '.') ADVANCE(2325); + if (lookahead == '_') ADVANCE(3426); + if (lookahead == '{') ADVANCE(1967); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3461); + lookahead == 'e') ADVANCE(3421); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(769); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 726: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '.') ADVANCE(2363); - if (lookahead == '_') ADVANCE(3466); - if (lookahead == '{') ADVANCE(2000); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '.') ADVANCE(2325); + if (lookahead == '_') ADVANCE(3426); + if (lookahead == '{') ADVANCE(1967); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(769); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 727: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '.') ADVANCE(2363); - if (lookahead == 'i') ADVANCE(3505); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '.') ADVANCE(2325); + if (lookahead == 'i') ADVANCE(3464); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3461); + lookahead == 'e') ADVANCE(3421); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(768); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3437); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 728: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '.') ADVANCE(2363); - if (lookahead == 'i') ADVANCE(3505); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '.') ADVANCE(2325); + if (lookahead == 'i') ADVANCE(3464); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(768); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3437); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 729: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '.') ADVANCE(2363); - if (lookahead == '{') ADVANCE(2000); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '.') ADVANCE(2325); + if (lookahead == '{') ADVANCE(1967); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3461); + lookahead == 'e') ADVANCE(3421); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(769); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3437); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 730: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '.') ADVANCE(2363); - if (lookahead == '{') ADVANCE(2000); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '.') ADVANCE(2325); + if (lookahead == '{') ADVANCE(1967); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(769); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3437); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 731: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '(') ADVANCE(2360); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '(') ADVANCE(2322); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(772); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3307); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3267); END_STATE(); case 732: ADVANCE_MAP( - '#', 4941, - ',', 1835, + '#', 4896, + ',', 1802, '-', 817, - '<', 1869, - '=', 1301, - '>', 1871, - '@', 1879, - '[', 1834, - ']', 1838, - 'c', 1593, - 'e', 1625, - 'f', 1641, - 'i', 1604, - 'l', 1595, - 'o', 1609, - 'v', 1583, - '{', 2000, + '<', 1836, + '=', 1271, + '>', 1838, + '@', 1846, + '[', 1801, + ']', 1805, + 'c', 1560, + 'e', 1592, + 'f', 1608, + 'i', 1571, + 'l', 1562, + 'o', 1576, + 'v', 1550, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(733); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 733: ADVANCE_MAP( - '#', 4941, - ',', 1835, + '#', 4896, + ',', 1802, '-', 817, - '=', 1301, - '>', 1871, - '@', 1879, - '[', 1834, - ']', 1838, - 'c', 1593, - 'e', 1625, - 'f', 1641, - 'i', 1604, - 'l', 1595, - 'o', 1609, - 'v', 1583, - '{', 2000, + '=', 1271, + '>', 1838, + '@', 1846, + '[', 1801, + ']', 1805, + 'c', 1560, + 'e', 1592, + 'f', 1608, + 'i', 1571, + 'l', 1562, + 'o', 1576, + 'v', 1550, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(733); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 734: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == ',') ADVANCE(3211); - if (lookahead == ']') ADVANCE(1838); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == ',') ADVANCE(3171); + if (lookahead == ']') ADVANCE(1805); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1794); + lookahead == ' ') ADVANCE(3173); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1761); END_STATE(); case 735: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == ',') ADVANCE(3211); - if (lookahead == ']') ADVANCE(1838); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == ',') ADVANCE(3171); + if (lookahead == ']') ADVANCE(1805); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3791); + lookahead == ' ') ADVANCE(3173); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3748); END_STATE(); case 736: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == ',') ADVANCE(3211); - if (lookahead == ']') ADVANCE(1838); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == ',') ADVANCE(3171); + if (lookahead == ']') ADVANCE(1805); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4833); + lookahead == ' ') ADVANCE(3173); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4788); END_STATE(); case 737: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '-') ADVANCE(1890); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '-') ADVANCE(1857); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(737); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 738: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '-') ADVANCE(1890); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '-') ADVANCE(1857); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(737); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4009); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3791); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3965); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3748); END_STATE(); case 739: ADVANCE_MAP( - '#', 4941, - '.', 2364, - '=', 3817, - 'E', 3844, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - '_', 3867, - 'd', 3883, - 'e', 3843, - 'g', 3847, - 'h', 3980, - 'i', 3910, - 'k', 3847, - 'm', 3850, - 'n', 3990, - 'p', 3847, - 's', 3901, - 't', 3847, - 'u', 3990, - 'w', 3924, - '|', 1841, - 0xb5, 3990, - 'B', 2507, - 'b', 2507, + '#', 4896, + '.', 2326, + '=', 3774, + 'E', 3801, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + '_', 3824, + 'd', 3840, + 'e', 3800, + 'g', 3804, + 'h', 3936, + 'i', 3867, + 'k', 3804, + 'm', 3807, + 'n', 3946, + 'p', 3804, + 's', 3858, + 't', 3804, + 'u', 3946, + 'w', 3881, + '|', 1808, + 0xb5, 3946, + 'B', 2469, + 'b', 2469, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(761); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3791); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3748); END_STATE(); case 740: ADVANCE_MAP( - '#', 4941, - '.', 2364, - '=', 3817, - 'E', 3844, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - '_', 3867, - 'd', 3883, - 'e', 3843, - 'g', 3847, - 'h', 3980, - 'k', 3847, - 'm', 3850, - 'n', 3990, - 'p', 3847, - 's', 3901, - 't', 3847, - 'u', 3990, - 'w', 3924, - '|', 1841, - 0xb5, 3990, - 'B', 2507, - 'b', 2507, + '#', 4896, + '.', 2326, + '=', 3774, + 'E', 3801, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + '_', 3824, + 'd', 3840, + 'e', 3800, + 'g', 3804, + 'h', 3936, + 'k', 3804, + 'm', 3807, + 'n', 3946, + 'p', 3804, + 's', 3858, + 't', 3804, + 'u', 3946, + 'w', 3881, + '|', 1808, + 0xb5, 3946, + 'B', 2469, + 'b', 2469, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(762); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3791); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3748); END_STATE(); case 741: ADVANCE_MAP( - '#', 4941, - '.', 2364, - '=', 3817, - 'E', 3844, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - 'd', 3883, - 'e', 3843, - 'g', 3847, - 'h', 3980, - 'i', 3910, - 'k', 3847, - 'm', 3850, - 'n', 3990, - 'p', 3847, - 's', 3901, - 't', 3847, - 'u', 3990, - 'w', 3924, - '|', 1841, - 0xb5, 3990, - 'B', 2507, - 'b', 2507, + '#', 4896, + '.', 2326, + '=', 3774, + 'E', 3801, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + 'd', 3840, + 'e', 3800, + 'g', 3804, + 'h', 3936, + 'i', 3867, + 'k', 3804, + 'm', 3807, + 'n', 3946, + 'p', 3804, + 's', 3858, + 't', 3804, + 'u', 3946, + 'w', 3881, + '|', 1808, + 0xb5, 3946, + 'B', 2469, + 'b', 2469, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(761); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3748); END_STATE(); case 742: ADVANCE_MAP( - '#', 4941, - '.', 2364, - '=', 3817, - 'E', 3844, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - 'd', 3883, - 'e', 3843, - 'g', 3847, - 'h', 3980, - 'k', 3847, - 'm', 3850, - 'n', 3990, - 'p', 3847, - 's', 3901, - 't', 3847, - 'u', 3990, - 'w', 3924, - '|', 1841, - 0xb5, 3990, - 'B', 2507, - 'b', 2507, + '#', 4896, + '.', 2326, + '=', 3774, + 'E', 3801, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + 'd', 3840, + 'e', 3800, + 'g', 3804, + 'h', 3936, + 'k', 3804, + 'm', 3807, + 'n', 3946, + 'p', 3804, + 's', 3858, + 't', 3804, + 'u', 3946, + 'w', 3881, + '|', 1808, + 0xb5, 3946, + 'B', 2469, + 'b', 2469, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(762); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3748); END_STATE(); case 743: ADVANCE_MAP( - '#', 4941, - '.', 2364, - '=', 3817, - 'E', 3848, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - 'd', 3883, - 'e', 3847, - 'g', 3847, - 'h', 3980, - 'i', 3910, - 'k', 3847, - 'm', 3850, - 'n', 3990, - 'p', 3847, - 's', 3901, - 't', 3847, - 'u', 3990, - 'w', 3924, - '|', 1841, - 0xb5, 3990, - 'B', 2507, - 'b', 2507, + '#', 4896, + '.', 2326, + '=', 3774, + 'E', 3805, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + 'd', 3840, + 'e', 3804, + 'g', 3804, + 'h', 3936, + 'i', 3867, + 'k', 3804, + 'm', 3807, + 'n', 3946, + 'p', 3804, + 's', 3858, + 't', 3804, + 'u', 3946, + 'w', 3881, + '|', 1808, + 0xb5, 3946, + 'B', 2469, + 'b', 2469, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(761); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3748); END_STATE(); case 744: ADVANCE_MAP( - '#', 4941, - '.', 2364, - '=', 3817, - 'E', 3848, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - 'd', 3883, - 'e', 3847, - 'g', 3847, - 'h', 3980, - 'k', 3847, - 'm', 3850, - 'n', 3990, - 'p', 3847, - 's', 3901, - 't', 3847, - 'u', 3990, - 'w', 3924, - '|', 1841, - 0xb5, 3990, - 'B', 2507, - 'b', 2507, + '#', 4896, + '.', 2326, + '=', 3774, + 'E', 3805, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + 'd', 3840, + 'e', 3804, + 'g', 3804, + 'h', 3936, + 'k', 3804, + 'm', 3807, + 'n', 3946, + 'p', 3804, + 's', 3858, + 't', 3804, + 'u', 3946, + 'w', 3881, + '|', 1808, + 0xb5, 3946, + 'B', 2469, + 'b', 2469, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(762); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3748); END_STATE(); case 745: ADVANCE_MAP( - '#', 4941, - '.', 2364, - '=', 3454, - '_', 3466, - 'i', 3487, - '|', 1841, - 'E', 3461, - 'e', 3461, + '#', 4896, + '.', 2326, + '=', 3414, + '_', 3426, + 'i', 3447, + '|', 1808, + 'E', 3421, + 'e', 3421, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(761); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 746: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '.') ADVANCE(2364); - if (lookahead == '=') ADVANCE(3454); - if (lookahead == '_') ADVANCE(3466); - if (lookahead == '|') ADVANCE(1841); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '.') ADVANCE(2326); + if (lookahead == '=') ADVANCE(3414); + if (lookahead == '_') ADVANCE(3426); + if (lookahead == '|') ADVANCE(1808); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3461); + lookahead == 'e') ADVANCE(3421); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(762); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 747: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '.') ADVANCE(2364); - if (lookahead == '=') ADVANCE(3454); - if (lookahead == 'i') ADVANCE(3487); - if (lookahead == '|') ADVANCE(1841); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '.') ADVANCE(2326); + if (lookahead == '=') ADVANCE(3414); + if (lookahead == 'i') ADVANCE(3447); + if (lookahead == '|') ADVANCE(1808); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3461); + lookahead == 'e') ADVANCE(3421); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(761); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3437); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 748: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '.') ADVANCE(2364); - if (lookahead == '=') ADVANCE(3454); - if (lookahead == 'i') ADVANCE(3487); - if (lookahead == '|') ADVANCE(1841); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '.') ADVANCE(2326); + if (lookahead == '=') ADVANCE(3414); + if (lookahead == 'i') ADVANCE(3447); + if (lookahead == '|') ADVANCE(1808); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(761); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3437); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 749: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '.') ADVANCE(2364); - if (lookahead == '=') ADVANCE(3454); - if (lookahead == '|') ADVANCE(1841); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '.') ADVANCE(2326); + if (lookahead == '=') ADVANCE(3414); + if (lookahead == '|') ADVANCE(1808); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3461); + lookahead == 'e') ADVANCE(3421); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(762); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3437); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 750: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '.') ADVANCE(2364); - if (lookahead == '=') ADVANCE(3454); - if (lookahead == '|') ADVANCE(1841); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '.') ADVANCE(2326); + if (lookahead == '=') ADVANCE(3414); + if (lookahead == '|') ADVANCE(1808); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(762); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3437); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 751: ADVANCE_MAP( - '#', 4941, - '.', 2363, - '=', 3454, - '_', 3466, - 'i', 3487, - '|', 1841, - 'E', 3461, - 'e', 3461, + '#', 4896, + '.', 2325, + '=', 3414, + '_', 3426, + 'i', 3447, + '|', 1808, + 'E', 3421, + 'e', 3421, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(761); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 752: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '.') ADVANCE(2363); - if (lookahead == '=') ADVANCE(3454); - if (lookahead == '_') ADVANCE(3466); - if (lookahead == 'i') ADVANCE(3487); - if (lookahead == '|') ADVANCE(1841); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '.') ADVANCE(2325); + if (lookahead == '=') ADVANCE(3414); + if (lookahead == '_') ADVANCE(3426); + if (lookahead == 'i') ADVANCE(3447); + if (lookahead == '|') ADVANCE(1808); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(761); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 753: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '.') ADVANCE(2363); - if (lookahead == '=') ADVANCE(3454); - if (lookahead == '_') ADVANCE(3466); - if (lookahead == '|') ADVANCE(1841); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '.') ADVANCE(2325); + if (lookahead == '=') ADVANCE(3414); + if (lookahead == '_') ADVANCE(3426); + if (lookahead == '|') ADVANCE(1808); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3461); + lookahead == 'e') ADVANCE(3421); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(762); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 754: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '.') ADVANCE(2363); - if (lookahead == '=') ADVANCE(3454); - if (lookahead == '_') ADVANCE(3466); - if (lookahead == '|') ADVANCE(1841); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '.') ADVANCE(2325); + if (lookahead == '=') ADVANCE(3414); + if (lookahead == '_') ADVANCE(3426); + if (lookahead == '|') ADVANCE(1808); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(762); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 755: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '.') ADVANCE(2363); - if (lookahead == '=') ADVANCE(3454); - if (lookahead == 'i') ADVANCE(3487); - if (lookahead == '|') ADVANCE(1841); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '.') ADVANCE(2325); + if (lookahead == '=') ADVANCE(3414); + if (lookahead == 'i') ADVANCE(3447); + if (lookahead == '|') ADVANCE(1808); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3461); + lookahead == 'e') ADVANCE(3421); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(761); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3437); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 756: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '.') ADVANCE(2363); - if (lookahead == '=') ADVANCE(3454); - if (lookahead == 'i') ADVANCE(3487); - if (lookahead == '|') ADVANCE(1841); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '.') ADVANCE(2325); + if (lookahead == '=') ADVANCE(3414); + if (lookahead == 'i') ADVANCE(3447); + if (lookahead == '|') ADVANCE(1808); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(761); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3437); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 757: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '.') ADVANCE(2363); - if (lookahead == '=') ADVANCE(3454); - if (lookahead == '|') ADVANCE(1841); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '.') ADVANCE(2325); + if (lookahead == '=') ADVANCE(3414); + if (lookahead == '|') ADVANCE(1808); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3461); + lookahead == 'e') ADVANCE(3421); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(762); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3437); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 758: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '.') ADVANCE(2363); - if (lookahead == '=') ADVANCE(3454); - if (lookahead == '|') ADVANCE(1841); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '.') ADVANCE(2325); + if (lookahead == '=') ADVANCE(3414); + if (lookahead == '|') ADVANCE(1808); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(762); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3437); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 759: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '.') ADVANCE(2363); - if (lookahead == '_') ADVANCE(3466); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '.') ADVANCE(2325); + if (lookahead == '_') ADVANCE(3426); if (lookahead == '+' || - lookahead == '-') ADVANCE(3450); + lookahead == '-') ADVANCE(3410); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(771); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 760: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '.') ADVANCE(2363); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '.') ADVANCE(2325); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(772); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4712); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4667); END_STATE(); case 761: - if (lookahead == '#') ADVANCE(4941); + if (lookahead == '#') ADVANCE(4896); if (lookahead == '=') ADVANCE(816); if (lookahead == 'i') ADVANCE(871); - if (lookahead == '|') ADVANCE(1841); + if (lookahead == '|') ADVANCE(1808); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(761); END_STATE(); case 762: - if (lookahead == '#') ADVANCE(4941); + if (lookahead == '#') ADVANCE(4896); if (lookahead == '=') ADVANCE(816); - if (lookahead == '|') ADVANCE(1841); + if (lookahead == '|') ADVANCE(1808); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(762); END_STATE(); case 763: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '=') ADVANCE(3817); - if (lookahead == 'i') ADVANCE(3910); - if (lookahead == '|') ADVANCE(1841); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '=') ADVANCE(3774); + if (lookahead == 'i') ADVANCE(3867); + if (lookahead == '|') ADVANCE(1808); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(761); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3748); END_STATE(); case 764: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '=') ADVANCE(3817); - if (lookahead == '|') ADVANCE(1841); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '=') ADVANCE(3774); + if (lookahead == '|') ADVANCE(1808); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(762); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3748); END_STATE(); case 765: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == 'i') ADVANCE(1717); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == 'i') ADVANCE(1684); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(768); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1794); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1761); END_STATE(); case 766: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == 'i') ADVANCE(1607); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == 'i') ADVANCE(1574); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(766); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); END_STATE(); case 767: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == 'i') ADVANCE(3933); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == 'i') ADVANCE(3889); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(768); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3748); END_STATE(); case 768: - if (lookahead == '#') ADVANCE(4941); + if (lookahead == '#') ADVANCE(4896); if (lookahead == 'i') ADVANCE(908); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(768); END_STATE(); case 769: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '{') ADVANCE(2000); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '{') ADVANCE(1967); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(769); END_STATE(); case 770: - if (lookahead == '#') ADVANCE(4941); - if (lookahead == '{') ADVANCE(2000); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == '{') ADVANCE(1967); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(769); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3748); END_STATE(); case 771: - if (lookahead == '#') ADVANCE(4941); + if (lookahead == '#') ADVANCE(4896); if (lookahead == '+' || lookahead == '-') ADVANCE(809); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(771); END_STATE(); case 772: - if (lookahead == '#') ADVANCE(4941); + if (lookahead == '#') ADVANCE(4896); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(772); END_STATE(); case 773: - if (lookahead == '#') ADVANCE(4941); + if (lookahead == '#') ADVANCE(4896); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(772); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1914); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1881); END_STATE(); case 774: - if (lookahead == '#') ADVANCE(4949); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == ',') ADVANCE(3211); - if (lookahead == ']') ADVANCE(1838); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); - END_STATE(); - case 775: - if (lookahead == '#') ADVANCE(4949); - if (lookahead == '(') ADVANCE(2360); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(772); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); - END_STATE(); - case 776: - if (lookahead == '#') ADVANCE(2563); - if (lookahead == '\'') ADVANCE(2565); - if (lookahead == '(') ADVANCE(1839); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2562); - if (lookahead != 0) ADVANCE(2563); - END_STATE(); - case 777: - if (lookahead == '#') ADVANCE(4952); - if (lookahead == '$') ADVANCE(1851); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '-') ADVANCE(1899); - if (lookahead == '{') ADVANCE(2000); + if (lookahead == '#') ADVANCE(4906); + if (lookahead == '$') ADVANCE(1817); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '-') ADVANCE(1863); + if (lookahead == '{') ADVANCE(1967); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3249); + lookahead == ' ') ADVANCE(3209); if (('\n' <= lookahead && lookahead <= '\r')) SKIP(666); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 778: - if (lookahead == '#') ADVANCE(4952); - if (lookahead == '$') ADVANCE(1851); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '-') ADVANCE(1899); - if (lookahead == '{') ADVANCE(2000); + case 775: + if (lookahead == '#') ADVANCE(4906); + if (lookahead == '$') ADVANCE(1817); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '-') ADVANCE(1863); + if (lookahead == '{') ADVANCE(1967); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(666); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 779: - if (lookahead == '#') ADVANCE(4952); - if (lookahead == '$') ADVANCE(1851); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '{') ADVANCE(2000); + case 776: + if (lookahead == '#') ADVANCE(4906); + if (lookahead == '$') ADVANCE(1817); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '{') ADVANCE(1967); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3249); + lookahead == ' ') ADVANCE(3209); if (('\n' <= lookahead && lookahead <= '\r')) SKIP(677); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4595); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(4597); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4550); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 780: - if (lookahead == '#') ADVANCE(4952); - if (lookahead == '$') ADVANCE(1851); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '{') ADVANCE(2000); + case 777: + if (lookahead == '#') ADVANCE(4906); + if (lookahead == '$') ADVANCE(1817); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '{') ADVANCE(1967); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(677); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4595); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(4597); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4550); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 781: - if (lookahead == '#') ADVANCE(4952); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == ',') ADVANCE(3211); - if (lookahead == ']') ADVANCE(1838); + case 778: + if (lookahead == '#') ADVANCE(4906); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == ',') ADVANCE(3171); + if (lookahead == ']') ADVANCE(1805); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3212); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3213); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4597); + lookahead == ' ') ADVANCE(3172); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3173); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 782: - if (lookahead == '#') ADVANCE(4952); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == ',') ADVANCE(3211); - if (lookahead == ']') ADVANCE(1838); + case 779: + if (lookahead == '#') ADVANCE(4906); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == ',') ADVANCE(3171); + if (lookahead == ']') ADVANCE(1805); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4597); + lookahead == ' ') ADVANCE(3173); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 783: - if (lookahead == '#') ADVANCE(4952); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '-') ADVANCE(1899); + case 780: + if (lookahead == '#') ADVANCE(4906); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '-') ADVANCE(1863); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3249); + lookahead == ' ') ADVANCE(3209); if (('\n' <= lookahead && lookahead <= '\r')) SKIP(737); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4595); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4550); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 784: - if (lookahead == '#') ADVANCE(4952); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '-') ADVANCE(1899); + case 781: + if (lookahead == '#') ADVANCE(4906); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '-') ADVANCE(1863); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(737); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4595); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4550); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 785: - if (lookahead == '#') ADVANCE(4952); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == 'i') ADVANCE(4347); + case 782: + if (lookahead == '#') ADVANCE(4906); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == 'i') ADVANCE(4305); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3249); + lookahead == ' ') ADVANCE(3209); if (('\n' <= lookahead && lookahead <= '\r')) SKIP(768); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 786: - if (lookahead == '#') ADVANCE(4952); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == 'i') ADVANCE(4347); + case 783: + if (lookahead == '#') ADVANCE(4906); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == 'i') ADVANCE(4305); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(768); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 787: - if (lookahead == '#') ADVANCE(4952); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '{') ADVANCE(2000); + case 784: + if (lookahead == '#') ADVANCE(4906); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '{') ADVANCE(1967); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3249); + lookahead == ' ') ADVANCE(3209); if (('\n' <= lookahead && lookahead <= '\r')) SKIP(769); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 788: - if (lookahead == '#') ADVANCE(4952); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == '{') ADVANCE(2000); + case 785: + if (lookahead == '#') ADVANCE(4906); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == '{') ADVANCE(1967); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(769); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 789: - if (lookahead == '#') ADVANCE(4952); - if (lookahead == '=') ADVANCE(4167); - if (lookahead == 'i') ADVANCE(4270); - if (lookahead == '|') ADVANCE(1843); + case 786: + if (lookahead == '#') ADVANCE(4906); + if (lookahead == '=') ADVANCE(4123); + if (lookahead == 'i') ADVANCE(4228); + if (lookahead == '|') ADVANCE(1809); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(761); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 790: - if (lookahead == '#') ADVANCE(4952); - if (lookahead == '=') ADVANCE(4167); - if (lookahead == '|') ADVANCE(1843); + case 787: + if (lookahead == '#') ADVANCE(4906); + if (lookahead == '=') ADVANCE(4123); + if (lookahead == '|') ADVANCE(1809); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(762); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); + END_STATE(); + case 788: + if (lookahead == '#') ADVANCE(4904); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == ',') ADVANCE(3171); + if (lookahead == ']') ADVANCE(1805); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3173); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); + END_STATE(); + case 789: + if (lookahead == '#') ADVANCE(4904); + if (lookahead == '(') ADVANCE(2322); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(772); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); + END_STATE(); + case 790: + if (lookahead == '#') ADVANCE(2525); + if (lookahead == '\'') ADVANCE(2527); + if (lookahead == '(') ADVANCE(1806); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(2524); + if (lookahead != 0) ADVANCE(2525); END_STATE(); case 791: - if (lookahead == '\'') ADVANCE(2557); + if (lookahead == '\'') ADVANCE(2519); if (lookahead != 0) ADVANCE(791); END_STATE(); case 792: - if (lookahead == '-') ADVANCE(1884); + if (lookahead == '-') ADVANCE(1851); END_STATE(); case 793: - if (lookahead == '-') ADVANCE(1884); + if (lookahead == '-') ADVANCE(1851); if (lookahead == '.') ADVANCE(831); if (lookahead == '_') ADVANCE(809); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2412); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2374); END_STATE(); case 794: if (lookahead == '-') ADVANCE(838); @@ -41248,33 +40786,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(930); END_STATE(); case 802: - if (lookahead == '.') ADVANCE(2362); + if (lookahead == '.') ADVANCE(2324); END_STATE(); case 803: if (lookahead == '.') ADVANCE(825); - if (lookahead == '>') ADVANCE(1833); + if (lookahead == '>') ADVANCE(1800); if (lookahead == '_') ADVANCE(805); if (lookahead == 'I' || lookahead == 'i') ADVANCE(992); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2476); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2438); END_STATE(); case 804: if (lookahead == '.') ADVANCE(825); if (lookahead == '_') ADVANCE(805); if (lookahead == 'I' || lookahead == 'i') ADVANCE(992); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2476); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2438); END_STATE(); case 805: if (lookahead == '.') ADVANCE(825); if (lookahead == '_') ADVANCE(805); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2476); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2438); END_STATE(); case 806: - if (lookahead == '.') ADVANCE(2361); + if (lookahead == '.') ADVANCE(2323); END_STATE(); case 807: - if (lookahead == '.') ADVANCE(1880); + if (lookahead == '.') ADVANCE(1847); END_STATE(); case 808: if (lookahead == '.') ADVANCE(807); @@ -41282,7 +40820,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 809: if (lookahead == '.') ADVANCE(831); if (lookahead == '_') ADVANCE(809); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2412); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2374); END_STATE(); case 810: if (lookahead == '2') ADVANCE(1001); @@ -41296,23 +40834,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ':') ADVANCE(1010); END_STATE(); case 813: - if (lookahead == '=') ADVANCE(2204); - if (lookahead == '~') ADVANCE(2269); + if (lookahead == '=') ADVANCE(2166); + if (lookahead == '~') ADVANCE(2231); END_STATE(); case 814: - if (lookahead == '=') ADVANCE(2197); - if (lookahead == '>') ADVANCE(2002); - if (lookahead == '~') ADVANCE(2262); + if (lookahead == '=') ADVANCE(2159); + if (lookahead == '>') ADVANCE(1969); + if (lookahead == '~') ADVANCE(2224); END_STATE(); case 815: - if (lookahead == '=') ADVANCE(2197); - if (lookahead == '~') ADVANCE(2262); + if (lookahead == '=') ADVANCE(2159); + if (lookahead == '~') ADVANCE(2224); END_STATE(); case 816: - if (lookahead == '>') ADVANCE(2002); + if (lookahead == '>') ADVANCE(1969); END_STATE(); case 817: - if (lookahead == '>') ADVANCE(1833); + if (lookahead == '>') ADVANCE(1800); END_STATE(); case 818: ADVANCE_MAP( @@ -41322,10 +40860,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'n', 854, '+', 830, '-', 830, - 'B', 2507, - 'b', 2507, + 'B', 2469, + 'b', 2469, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2408); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2370); END_STATE(); case 819: if (lookahead == 'I') ADVANCE(987); @@ -41334,41 +40872,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '+' || lookahead == '-') ADVANCE(830); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2507); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2408); + lookahead == 'b') ADVANCE(2469); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2370); END_STATE(); case 820: if (lookahead == 'I') ADVANCE(987); if (lookahead == 'i') ADVANCE(987); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2507); + lookahead == 'b') ADVANCE(2469); END_STATE(); case 821: if (lookahead == 'I') ADVANCE(987); if (lookahead == 'i') ADVANCE(846); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2507); + lookahead == 'b') ADVANCE(2469); END_STATE(); case 822: if (lookahead == 'I') ADVANCE(987); if (lookahead == 'i') ADVANCE(904); if (lookahead == 'o') ADVANCE(852); - if (lookahead == 's') ADVANCE(2517); + if (lookahead == 's') ADVANCE(2479); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2507); + lookahead == 'b') ADVANCE(2469); END_STATE(); case 823: if (lookahead == 'N') ADVANCE(989); - if (lookahead == 'f') ADVANCE(1980); - if (lookahead == 'n') ADVANCE(1947); + if (lookahead == 'f') ADVANCE(1947); + if (lookahead == 'n') ADVANCE(1914); END_STATE(); case 824: if (lookahead == 'N') ADVANCE(989); - if (lookahead == 'n') ADVANCE(1947); + if (lookahead == 'n') ADVANCE(1914); END_STATE(); case 825: if (lookahead == '_') ADVANCE(825); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2488); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2450); END_STATE(); case 826: if (lookahead == '_') ADVANCE(830); @@ -41376,46 +40914,46 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'n') ADVANCE(854); if (lookahead == '+' || lookahead == '-') ADVANCE(830); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2408); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2370); END_STATE(); case 827: if (lookahead == '_') ADVANCE(830); if (lookahead == 'l') ADVANCE(945); if (lookahead == '+' || lookahead == '-') ADVANCE(830); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2408); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2370); END_STATE(); case 828: if (lookahead == '_') ADVANCE(830); if (lookahead == 'n') ADVANCE(854); if (lookahead == '+' || lookahead == '-') ADVANCE(830); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2408); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2370); END_STATE(); case 829: if (lookahead == '_') ADVANCE(830); if (lookahead == '+' || lookahead == '-') ADVANCE(830); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2408); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2370); END_STATE(); case 830: if (lookahead == '_') ADVANCE(830); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2408); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2370); END_STATE(); case 831: if (lookahead == '_') ADVANCE(831); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2413); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2375); END_STATE(); case 832: if (lookahead == '_') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); END_STATE(); case 833: if (lookahead == '_') ADVANCE(833); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2475); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2437); END_STATE(); case 834: - if (lookahead == '`') ADVANCE(2558); + if (lookahead == '`') ADVANCE(2520); if (lookahead != 0) ADVANCE(834); END_STATE(); case 835: @@ -41456,10 +40994,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'a') ADVANCE(968); END_STATE(); case 846: - if (lookahead == 'b') ADVANCE(2507); + if (lookahead == 'b') ADVANCE(2469); END_STATE(); case 847: - if (lookahead == 'c') ADVANCE(2517); + if (lookahead == 'c') ADVANCE(2479); END_STATE(); case 848: if (lookahead == 'c') ADVANCE(879); @@ -41471,13 +41009,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'c') ADVANCE(870); END_STATE(); case 851: - if (lookahead == 'd') ADVANCE(2306); + if (lookahead == 'd') ADVANCE(2268); END_STATE(); case 852: - if (lookahead == 'd') ADVANCE(2126); + if (lookahead == 'd') ADVANCE(2088); END_STATE(); case 853: - if (lookahead == 'd') ADVANCE(2276); + if (lookahead == 'd') ADVANCE(2238); END_STATE(); case 854: if (lookahead == 'd') ADVANCE(944); @@ -41489,35 +41027,35 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'd') ADVANCE(862); END_STATE(); case 857: - if (lookahead == 'e') ADVANCE(2428); + if (lookahead == 'e') ADVANCE(2390); END_STATE(); case 858: - if (lookahead == 'e') ADVANCE(2441); + if (lookahead == 'e') ADVANCE(2403); END_STATE(); case 859: if (lookahead == 'e') ADVANCE(847); if (lookahead == 't') ADVANCE(839); END_STATE(); case 860: - if (lookahead == 'e') ADVANCE(1989); + if (lookahead == 'e') ADVANCE(1956); END_STATE(); case 861: - if (lookahead == 'e') ADVANCE(1823); + if (lookahead == 'e') ADVANCE(1790); END_STATE(); case 862: - if (lookahead == 'e') ADVANCE(2054); + if (lookahead == 'e') ADVANCE(2021); END_STATE(); case 863: - if (lookahead == 'e') ADVANCE(1963); + if (lookahead == 'e') ADVANCE(1930); END_STATE(); case 864: if (lookahead == 'e') ADVANCE(874); END_STATE(); case 865: - if (lookahead == 'e') ADVANCE(1816); + if (lookahead == 'e') ADVANCE(1783); END_STATE(); case 866: - if (lookahead == 'e') ADVANCE(1863); + if (lookahead == 'e') ADVANCE(1830); END_STATE(); case 867: if (lookahead == 'e') ADVANCE(975); @@ -41536,43 +41074,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'e') ADVANCE(899); END_STATE(); case 871: - if (lookahead == 'f') ADVANCE(1980); + if (lookahead == 'f') ADVANCE(1947); END_STATE(); case 872: - if (lookahead == 'f') ADVANCE(1980); - if (lookahead == 'n') ADVANCE(1935); + if (lookahead == 'f') ADVANCE(1947); + if (lookahead == 'n') ADVANCE(1902); END_STATE(); case 873: - if (lookahead == 'f') ADVANCE(1980); + if (lookahead == 'f') ADVANCE(1947); if (lookahead == 'N' || lookahead == 'n') ADVANCE(989); END_STATE(); case 874: - if (lookahead == 'f') ADVANCE(1796); + if (lookahead == 'f') ADVANCE(1763); END_STATE(); case 875: - if (lookahead == 'f') ADVANCE(1862); + if (lookahead == 'f') ADVANCE(1829); END_STATE(); case 876: - if (lookahead == 'h') ADVANCE(2252); + if (lookahead == 'h') ADVANCE(2214); END_STATE(); case 877: - if (lookahead == 'h') ADVANCE(2242); + if (lookahead == 'h') ADVANCE(2204); END_STATE(); case 878: if (lookahead == 'h') ADVANCE(895); END_STATE(); case 879: - if (lookahead == 'h') ADVANCE(2026); + if (lookahead == 'h') ADVANCE(1993); END_STATE(); case 880: - if (lookahead == 'h') ADVANCE(1993); + if (lookahead == 'h') ADVANCE(1960); END_STATE(); case 881: - if (lookahead == 'h') ADVANCE(1852); + if (lookahead == 'h') ADVANCE(1819); END_STATE(); case 882: - if (lookahead == 'h') ADVANCE(1860); + if (lookahead == 'h') ADVANCE(1827); END_STATE(); case 883: if (lookahead == 'h') ADVANCE(797); @@ -41602,17 +41140,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'i') ADVANCE(961); END_STATE(); case 892: - if (lookahead == 'k') ADVANCE(2517); + if (lookahead == 'k') ADVANCE(2479); END_STATE(); case 893: if (lookahead == 'k') ADVANCE(863); END_STATE(); case 894: - if (lookahead == 'l') ADVANCE(2414); + if (lookahead == 'l') ADVANCE(2376); END_STATE(); case 895: - if (lookahead == 'l') ADVANCE(2177); - if (lookahead == 'r') ADVANCE(2187); + if (lookahead == 'l') ADVANCE(2139); + if (lookahead == 'r') ADVANCE(2149); END_STATE(); case 896: if (lookahead == 'l') ADVANCE(943); @@ -41640,24 +41178,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'n') ADVANCE(854); END_STATE(); case 904: - if (lookahead == 'n') ADVANCE(2517); + if (lookahead == 'n') ADVANCE(2479); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2507); + lookahead == 'b') ADVANCE(2469); END_STATE(); case 905: - if (lookahead == 'n') ADVANCE(2232); + if (lookahead == 'n') ADVANCE(2194); END_STATE(); case 906: if (lookahead == 'n') ADVANCE(851); END_STATE(); case 907: - if (lookahead == 'n') ADVANCE(1809); + if (lookahead == 'n') ADVANCE(1776); END_STATE(); case 908: - if (lookahead == 'n') ADVANCE(1935); + if (lookahead == 'n') ADVANCE(1902); END_STATE(); case 909: - if (lookahead == 'n') ADVANCE(1861); + if (lookahead == 'n') ADVANCE(1828); END_STATE(); case 910: if (lookahead == 'n') ADVANCE(854); @@ -41672,7 +41210,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'o') ADVANCE(933); END_STATE(); case 914: - if (lookahead == 'o') ADVANCE(1973); + if (lookahead == 'o') ADVANCE(1940); END_STATE(); case 915: if (lookahead == 'o') ADVANCE(951); @@ -41712,7 +41250,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 925: if (lookahead == 'o') ADVANCE(960); - if (lookahead == 's') ADVANCE(2517); + if (lookahead == 's') ADVANCE(2479); END_STATE(); case 926: if (lookahead == 'p') ADVANCE(866); @@ -41730,19 +41268,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'p') ADVANCE(844); END_STATE(); case 931: - if (lookahead == 'r') ADVANCE(2517); + if (lookahead == 'r') ADVANCE(2479); END_STATE(); case 932: - if (lookahead == 'r') ADVANCE(2332); + if (lookahead == 'r') ADVANCE(2294); END_STATE(); case 933: - if (lookahead == 'r') ADVANCE(2319); + if (lookahead == 'r') ADVANCE(2281); END_STATE(); case 934: - if (lookahead == 'r') ADVANCE(2296); + if (lookahead == 'r') ADVANCE(2258); END_STATE(); case 935: - if (lookahead == 'r') ADVANCE(2286); + if (lookahead == 'r') ADVANCE(2248); END_STATE(); case 936: if (lookahead == 'r') ADVANCE(970); @@ -41760,10 +41298,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'r') ADVANCE(909); END_STATE(); case 941: - if (lookahead == 's') ADVANCE(2517); + if (lookahead == 's') ADVANCE(2479); END_STATE(); case 942: - if (lookahead == 's') ADVANCE(1294); + if (lookahead == 's') ADVANCE(1264); END_STATE(); case 943: if (lookahead == 's') ADVANCE(858); @@ -41790,16 +41328,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 't') ADVANCE(839); END_STATE(); case 951: - if (lookahead == 't') ADVANCE(2346); + if (lookahead == 't') ADVANCE(2308); END_STATE(); case 952: - if (lookahead == 't') ADVANCE(2345); + if (lookahead == 't') ADVANCE(2307); END_STATE(); case 953: - if (lookahead == 't') ADVANCE(1864); + if (lookahead == 't') ADVANCE(1831); END_STATE(); case 954: - if (lookahead == 't') ADVANCE(1321); + if (lookahead == 't') ADVANCE(1291); END_STATE(); case 955: if (lookahead == 't') ADVANCE(794); @@ -41851,12 +41389,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 971: if (lookahead == 'u') ADVANCE(857); - if (lookahead == 'y') ADVANCE(2019); + if (lookahead == 'y') ADVANCE(1986); END_STATE(); case 972: if (lookahead == 'u') ADVANCE(982); if (lookahead == 'x') ADVANCE(1020); - if (lookahead != 0) ADVANCE(2569); + if (lookahead != 0) ADVANCE(2531); END_STATE(); case 973: if (lookahead == 'u') ADVANCE(901); @@ -41864,10 +41402,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 974: if (lookahead == 'u') ADVANCE(983); if (lookahead == 'x') ADVANCE(1021); - if (lookahead != 0) ADVANCE(2559); + if (lookahead != 0) ADVANCE(2521); END_STATE(); case 975: - if (lookahead == 'w') ADVANCE(2073); + if (lookahead == 'w') ADVANCE(2040); END_STATE(); case 976: if (lookahead == 'w') ADVANCE(889); @@ -41882,7 +41420,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'x') ADVANCE(964); END_STATE(); case 980: - if (lookahead == 'y') ADVANCE(2517); + if (lookahead == 'y') ADVANCE(2479); END_STATE(); case 981: if (lookahead == 'y') ADVANCE(926); @@ -41900,13 +41438,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1022); END_STATE(); case 984: - if (lookahead == '}') ADVANCE(2569); + if (lookahead == '}') ADVANCE(2531); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(984); END_STATE(); case 985: - if (lookahead == '}') ADVANCE(2559); + if (lookahead == '}') ADVANCE(2521); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(985); @@ -41917,15 +41455,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 987: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2507); + lookahead == 'b') ADVANCE(2469); END_STATE(); case 988: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2498); + lookahead == 'f') ADVANCE(2460); END_STATE(); case 989: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2495); + lookahead == 'f') ADVANCE(2457); END_STATE(); case 990: if (lookahead == 'I' || @@ -41945,7 +41483,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 994: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2499); + lookahead == 'n') ADVANCE(2461); END_STATE(); case 995: if (lookahead == 'N' || @@ -41965,35 +41503,35 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 999: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2496); + lookahead == 'y') ADVANCE(2458); END_STATE(); case 1000: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2492); + lookahead == 'y') ADVANCE(2454); END_STATE(); case 1001: - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(2541); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(2503); END_STATE(); case 1002: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(812); END_STATE(); case 1003: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2538); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2500); END_STATE(); case 1004: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2537); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2499); END_STATE(); case 1005: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2548); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2510); END_STATE(); case 1006: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2541); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2503); END_STATE(); case 1007: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(799); END_STATE(); case 1008: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2547); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2509); END_STATE(); case 1009: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1002); @@ -42021,7 +41559,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1016: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2569); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2531); END_STATE(); case 1017: if (('0' <= lookahead && lookahead <= '9') || @@ -42031,7 +41569,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1018: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2559); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2521); END_STATE(); case 1019: if (('0' <= lookahead && lookahead <= '9') || @@ -42054,2689 +41592,1804 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1021); END_STATE(); case 1023: - if (eof) ADVANCE(1284); + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '!', 3451, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '!', 3411, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '*', 2084, - '+', 2154, - '-', 1902, - '.', 2481, - '/', 2120, - '0', 2393, - ';', 1328, - '<', 2213, - '=', 3453, - '>', 1874, - 'I', 3560, - 'N', 3556, - '[', 1834, - '^', 3246, - '_', 3463, + '(', 1806, + ')', 1807, + '*', 2051, + '+', 2116, + '-', 1859, + '.', 2443, + '/', 2082, + '0', 2355, + ';', 1303, + '<', 2175, + '=', 3413, + '>', 1841, + 'I', 3519, + 'N', 3515, + '[', 1801, + '^', 3206, + '_', 3423, '`', 834, - 'a', 3498, - 'b', 3495, - 'c', 3514, - 'd', 3481, - 'e', 3512, - 'f', 3477, - 'h', 3490, - 'i', 3455, - 'l', 3483, - 'm', 3479, - 'n', 3533, - 'o', 3538, - 'r', 3484, - 's', 3515, - 't', 3537, - 'u', 3548, - 'w', 3488, - 'x', 3534, - '{', 2000, - '}', 2001, + 'a', 3457, + 'b', 3455, + 'c', 3473, + 'd', 3441, + 'e', 3471, + 'f', 3437, + 'h', 3450, + 'i', 3415, + 'l', 3443, + 'm', 3439, + 'n', 3492, + 'o', 3497, + 'r', 3444, + 's', 3474, + 't', 3496, + 'u', 3507, + 'w', 3448, + 'x', 3493, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1059); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3565); + lookahead == ' ') SKIP(1056); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3524); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3437); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3397); END_STATE(); case 1024: - if (eof) ADVANCE(1284); + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '!', 3451, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '!', 3411, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '*', 2084, - '+', 2154, - '-', 1892, - '.', 2481, - '/', 2120, - '0', 2393, - ';', 1328, - '<', 2213, - '=', 3453, - '>', 1874, - 'I', 3560, - 'N', 3556, - '[', 1834, - '^', 3246, - '_', 3463, + '(', 1806, + ')', 1807, + '*', 2051, + '+', 2116, + '-', 1859, + '.', 2443, + '/', 2082, + '0', 2355, + ';', 1303, + '<', 2175, + '=', 3413, + '>', 1841, + 'I', 3522, + 'N', 3518, + '[', 1801, + '_', 3426, '`', 834, - 'a', 3497, - 'b', 3495, - 'c', 3514, - 'd', 3481, - 'e', 3512, - 'f', 3477, - 'h', 3490, - 'i', 3455, - 'l', 3483, - 'm', 3479, - 'n', 3533, - 'o', 3538, - 'r', 3484, - 's', 3515, - 't', 3537, - 'u', 3548, - 'w', 3488, - 'x', 3534, - '{', 2000, - '}', 2001, + 'a', 3463, + 'b', 3451, + 'e', 3468, + 'f', 3436, + 'i', 3418, + 'm', 3481, + 'n', 3477, + 'o', 3501, + 's', 3508, + 't', 3502, + 'x', 3476, + '{', 1967, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1071); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3565); + lookahead == ' ') SKIP(1058); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3437); + lookahead != ']') ADVANCE(3397); END_STATE(); case 1025: - if (eof) ADVANCE(1284); + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '!', 3451, - '"', 2554, - '#', 4941, - '$', 1845, - '\'', 791, - '(', 1839, - ')', 1840, - '*', 2084, - '+', 2154, - '-', 1892, - '.', 2481, - '/', 2120, - '0', 2393, - ';', 1328, - '<', 2213, - '=', 3453, - '>', 1874, - 'I', 3563, - 'N', 3559, - '[', 1834, - '_', 3466, - '`', 834, - 'a', 3504, - 'b', 3491, - 'e', 3509, - 'f', 3476, - 'i', 3458, - 'm', 3522, - 'n', 3518, - 'o', 3542, - 's', 3549, - 't', 3543, - 'x', 3517, - '{', 2000, - '|', 1841, - '}', 2001, + '\n', 1762, + '!', 3411, + '#', 4896, + ')', 1807, + '*', 2051, + '+', 2114, + '-', 1857, + '/', 2082, + ';', 1303, + '<', 2175, + '=', 3413, + '>', 1841, + '_', 3426, + 'a', 3463, + 'b', 3451, + 'e', 3468, + 'i', 3464, + 'm', 3481, + 'n', 3495, + 'o', 3501, + 's', 3508, + 'x', 3476, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(1073); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); - if (lookahead != 0 && - lookahead != ']') ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 1026: - if (eof) ADVANCE(1284); + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '!', 3451, - '#', 4941, - ')', 1840, - '*', 2084, - '+', 2152, - '-', 1890, - '/', 2120, - ';', 1328, - '<', 2213, - '=', 3453, - '>', 1874, - '_', 3466, - 'a', 3504, - 'b', 3491, - 'e', 3509, - 'i', 3505, - 'm', 3522, - 'n', 3536, - 'o', 3542, - 's', 3549, - 'x', 3517, - '|', 1841, - '}', 2001, + '\n', 1762, + '!', 3411, + '#', 4896, + ')', 1807, + '*', 2051, + '+', 2114, + '-', 1856, + '/', 2082, + ';', 1303, + '<', 2175, + '=', 3413, + '>', 1841, + '_', 3426, + 'a', 3463, + 'b', 3451, + 'e', 3468, + 'i', 3464, + 'm', 3481, + 'n', 3495, + 'o', 3501, + 's', 3508, + 'x', 3476, + '|', 1808, + '}', 1968, + '\t', 3209, + ' ', 3209, ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1089); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3437); + if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1079); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 1027: - if (eof) ADVANCE(1284); + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '!', 3451, - '#', 4941, - ')', 1840, - '*', 2084, - '+', 2152, - '-', 1889, - '/', 2120, - ';', 1328, - '<', 2213, - '=', 3453, - '>', 1874, - '_', 3466, - 'a', 3504, - 'b', 3491, - 'e', 3509, - 'i', 3505, - 'm', 3522, - 'n', 3536, - 'o', 3542, - 's', 3549, - 'x', 3517, - '|', 1841, - '}', 2001, - '\t', 3249, - ' ', 3249, + '\n', 1762, + '!', 3411, + '#', 4896, + ')', 1807, + '*', 2051, + '+', 2114, + '-', 1856, + '/', 2082, + ';', 1303, + '<', 2175, + '=', 3413, + '>', 1841, + '_', 3426, + 'a', 3463, + 'b', 3451, + 'e', 3468, + 'i', 3464, + 'm', 3481, + 'n', 3495, + 'o', 3501, + 's', 3508, + 'x', 3476, + '|', 1808, + '}', 1968, ); - if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1095); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3437); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(1079); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3397); END_STATE(); case 1028: - if (eof) ADVANCE(1284); + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '!', 3451, - '#', 4941, - ')', 1840, - '*', 2084, - '+', 2152, - '-', 1889, - '/', 2120, - ';', 1328, - '<', 2213, - '=', 3453, - '>', 1874, - '_', 3466, - 'a', 3504, - 'b', 3491, - 'e', 3509, - 'i', 3505, - 'm', 3522, - 'n', 3536, - 'o', 3542, - 's', 3549, - 'x', 3517, - '|', 1841, - '}', 2001, + '\n', 1762, + '!', 3181, + '"', 2516, + '#', 4896, + '$', 1811, + '\'', 791, + '(', 1806, + ')', 1807, + '*', 2052, + '+', 2112, + ',', 1802, + '-', 1872, + '.', 2326, + '/', 2083, + '0', 2424, + ':', 1797, + ';', 1303, + '<', 2175, + '=', 1272, + '>', 1841, + 'I', 1523, + 'N', 1517, + '_', 1320, + '`', 834, + 'a', 1407, + 'b', 1398, + 'c', 1336, + 'd', 1349, + 'e', 1415, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1326, + 'n', 1364, + 'o', 1454, + 'r', 1352, + 's', 1435, + 't', 1463, + 'u', 1475, + 'w', 1390, + 'x', 1445, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1095); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3437); + lookahead == ' ') SKIP(1029); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); + if (lookahead != 0 && + (lookahead < 'A' || '[' < lookahead) && + lookahead != ']' && + (lookahead < '_' || '}' < lookahead)) ADVANCE(3204); END_STATE(); case 1029: - if (eof) ADVANCE(1284); + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '!', 3221, - '"', 2554, - '#', 4941, - '$', 1844, + '\n', 1762, + '!', 3181, + '"', 2516, + '#', 4896, + '$', 1811, '\'', 791, - '(', 1839, - ')', 1840, - '*', 2085, - '+', 2150, - ',', 1835, - '-', 1905, - '.', 2364, - '/', 2121, - '0', 2462, - ':', 1830, - ';', 1328, - '<', 2213, - '=', 1302, - '>', 1874, - 'I', 1556, - 'N', 1550, - '_', 1350, + '(', 1806, + ')', 1807, + '*', 2052, + '+', 2112, + ',', 1802, + '-', 1872, + '.', 2439, + '/', 2083, + '0', 2424, + ':', 1797, + ';', 1303, + '<', 2175, + '=', 1272, + '>', 1841, + 'I', 1523, + 'N', 1517, + '_', 1320, '`', 834, - 'a', 1438, - 'b', 1429, - 'c', 1366, - 'd', 1379, - 'e', 1447, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1356, - 'n', 1394, - 'o', 1487, - 'r', 1382, - 's', 1467, - 't', 1496, - 'u', 1508, - 'w', 1421, - 'x', 1478, - '|', 1841, - '}', 2001, + 'a', 1407, + 'b', 1398, + 'c', 1336, + 'd', 1349, + 'e', 1415, + 'f', 1438, + 'h', 1393, + 'i', 1319, + 'l', 1350, + 'm', 1326, + 'n', 1364, + 'o', 1454, + 'r', 1352, + 's', 1435, + 't', 1463, + 'u', 1475, + 'w', 1390, + 'x', 1445, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') SKIP(1029); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); if (lookahead != 0 && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(3244); + (lookahead < '_' || '}' < lookahead)) ADVANCE(3204); END_STATE(); case 1030: - if (eof) ADVANCE(1284); + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '!', 3221, - '"', 2554, - '#', 4941, - '$', 1844, + '\n', 1762, + '!', 3771, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '*', 2085, - '+', 2150, - ',', 1835, - '-', 1905, - '.', 2477, - '/', 2121, - '0', 2462, - ':', 1830, - ';', 1328, - '<', 2213, - '=', 1302, - '>', 1874, - 'I', 1556, - 'N', 1550, - '_', 1350, + '(', 1806, + ')', 1807, + '*', 2051, + '+', 2116, + '-', 1859, + '.', 2326, + '/', 2082, + '0', 2355, + ';', 1303, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2478, + 'E', 3765, + 'G', 3785, + 'I', 3961, + 'K', 3785, + 'M', 3785, + 'N', 3957, + 'P', 3785, + 'T', 3785, + '[', 1801, + '^', 3206, + '_', 3822, '`', 834, - 'a', 1438, - 'b', 1429, - 'c', 1366, - 'd', 1379, - 'e', 1447, - 'f', 1470, - 'h', 1424, - 'i', 1349, - 'l', 1380, - 'm', 1356, - 'n', 1394, - 'o', 1487, - 'r', 1382, - 's', 1467, - 't', 1496, - 'u', 1508, - 'w', 1421, - 'x', 1478, - '|', 1841, - '}', 2001, + 'a', 3883, + 'b', 2474, + 'c', 3898, + 'd', 3846, + 'e', 3761, + 'f', 3843, + 'g', 3784, + 'h', 3872, + 'i', 3816, + 'k', 3784, + 'l', 3851, + 'm', 3777, + 'n', 3923, + 'o', 3932, + 'p', 3784, + 'r', 3852, + 's', 3862, + 't', 3781, + 'u', 3945, + 'w', 3868, + 'x', 3925, + '{', 1967, + '}', 1968, + 0xb5, 3944, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') SKIP(1056); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3966); if (lookahead != 0 && - (lookahead < 'A' || '[' < lookahead) && - lookahead != ']' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(3244); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3748); END_STATE(); case 1031: - if (eof) ADVANCE(1284); + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '!', 3814, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '!', 3771, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '*', 2084, - '+', 2154, - '-', 1902, - '.', 2364, - '/', 2120, - '0', 2393, - ';', 1328, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2516, - 'E', 3808, - 'G', 3828, - 'I', 4005, - 'K', 3828, - 'M', 3828, - 'N', 4001, - 'P', 3828, - 'T', 3828, - '[', 1834, - '^', 3246, - '_', 3865, + '(', 1806, + ')', 1807, + '*', 2051, + '+', 2116, + '-', 1859, + '.', 2326, + '/', 2082, + '0', 2355, + ';', 1303, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2469, + 'E', 3801, + 'G', 3805, + 'I', 3964, + 'K', 3805, + 'M', 3805, + 'N', 3960, + 'P', 3805, + 'T', 3805, + '[', 1801, + '_', 3824, '`', 834, - 'a', 3927, - 'b', 2512, - 'c', 3942, - 'd', 3889, - 'e', 3804, - 'f', 3886, - 'g', 3827, - 'h', 3915, - 'i', 3859, - 'k', 3827, - 'l', 3894, - 'm', 3820, - 'n', 3967, - 'o', 3976, - 'p', 3827, - 'r', 3895, - 's', 3905, - 't', 3824, - 'u', 3989, - 'w', 3911, - 'x', 3969, - '{', 2000, - '}', 2001, - 0xb5, 3988, + 'a', 3888, + 'b', 2470, + 'd', 3840, + 'e', 3799, + 'f', 3841, + 'g', 3804, + 'h', 3936, + 'i', 3819, + 'k', 3804, + 'm', 3806, + 'n', 3902, + 'o', 3937, + 'p', 3804, + 's', 3859, + 't', 3803, + 'u', 3946, + 'w', 3881, + 'x', 3901, + '{', 1967, + '|', 1808, + '}', 1968, + 0xb5, 3946, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1059); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4010); + lookahead == ' ') SKIP(1058); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3791); + lookahead != ']') ADVANCE(3748); END_STATE(); case 1032: - if (eof) ADVANCE(1284); + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '!', 3814, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '!', 3771, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '*', 2084, - '+', 2154, - '-', 1902, - '.', 2364, - '/', 2120, - '0', 3870, - ';', 1328, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2516, - 'E', 3808, - 'G', 3828, - 'I', 4005, - 'K', 3828, - 'M', 3828, - 'N', 4001, - 'P', 3828, - 'T', 3828, - '[', 1834, - '^', 3246, - '_', 3863, + '(', 1806, + ')', 1807, + '*', 2051, + '+', 2116, + '-', 1859, + '.', 2326, + '/', 2082, + '0', 3827, + ';', 1303, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2478, + 'E', 3765, + 'G', 3785, + 'I', 3961, + 'K', 3785, + 'M', 3785, + 'N', 3957, + 'P', 3785, + 'T', 3785, + '[', 1801, + '^', 3206, + '_', 3820, '`', 834, - 'a', 3927, - 'b', 2512, - 'c', 3942, - 'd', 3889, - 'e', 3804, - 'f', 3886, - 'g', 3827, - 'h', 3915, - 'i', 3859, - 'k', 3827, - 'l', 3894, - 'm', 3820, - 'n', 3967, - 'o', 3976, - 'p', 3827, - 'r', 3895, - 's', 3905, - 't', 3824, - 'u', 3989, - 'w', 3911, - 'x', 3969, - '{', 2000, - '}', 2001, - 0xb5, 3988, + 'a', 3883, + 'b', 2474, + 'c', 3898, + 'd', 3846, + 'e', 3761, + 'f', 3843, + 'g', 3784, + 'h', 3872, + 'i', 3816, + 'k', 3784, + 'l', 3851, + 'm', 3777, + 'n', 3923, + 'o', 3932, + 'p', 3784, + 'r', 3852, + 's', 3862, + 't', 3781, + 'u', 3945, + 'w', 3868, + 'x', 3925, + '{', 1967, + '}', 1968, + 0xb5, 3944, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1059); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3874); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4010); + lookahead == ' ') SKIP(1056); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3831); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3966); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3791); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3748); END_STATE(); case 1033: - if (eof) ADVANCE(1284); + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '!', 3814, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '!', 3771, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '*', 2084, - '+', 2154, - '-', 1902, - '.', 2364, - '/', 2120, - '0', 3870, - ';', 1328, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2516, - 'E', 3828, - 'G', 3828, - 'I', 4005, - 'K', 3828, - 'M', 3828, - 'N', 4001, - 'P', 3828, - 'T', 3828, - '[', 1834, - '^', 3246, - '_', 3863, + '(', 1806, + ')', 1807, + '*', 2051, + '+', 2116, + '-', 1859, + '.', 2326, + '/', 2082, + '0', 3827, + ';', 1303, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2478, + 'E', 3785, + 'G', 3785, + 'I', 3961, + 'K', 3785, + 'M', 3785, + 'N', 3957, + 'P', 3785, + 'T', 3785, + '[', 1801, + '^', 3206, + '_', 3820, '`', 834, - 'a', 3927, - 'b', 2512, - 'c', 3942, - 'd', 3889, - 'e', 3822, - 'f', 3886, - 'g', 3827, - 'h', 3915, - 'i', 3859, - 'k', 3827, - 'l', 3894, - 'm', 3820, - 'n', 3967, - 'o', 3976, - 'p', 3827, - 'r', 3895, - 's', 3905, - 't', 3824, - 'u', 3989, - 'w', 3911, - 'x', 3969, - '{', 2000, - '}', 2001, - 0xb5, 3988, + 'a', 3883, + 'b', 2474, + 'c', 3898, + 'd', 3846, + 'e', 3779, + 'f', 3843, + 'g', 3784, + 'h', 3872, + 'i', 3816, + 'k', 3784, + 'l', 3851, + 'm', 3777, + 'n', 3923, + 'o', 3932, + 'p', 3784, + 'r', 3852, + 's', 3862, + 't', 3781, + 'u', 3945, + 'w', 3868, + 'x', 3925, + '{', 1967, + '}', 1968, + 0xb5, 3944, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1059); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3874); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4010); + lookahead == ' ') SKIP(1056); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3831); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3966); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3791); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3748); END_STATE(); case 1034: - if (eof) ADVANCE(1284); + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '!', 3814, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '!', 3771, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '*', 2084, - '+', 2154, - '-', 1902, - '.', 2481, - '/', 2120, - '0', 3870, - ';', 1328, - '<', 2213, - '=', 3816, - '>', 1874, - 'I', 4005, - 'N', 4001, - '[', 1834, - '^', 3246, - '_', 3863, + '(', 1806, + ')', 1807, + '*', 2051, + '+', 2116, + '-', 1859, + '.', 2326, + '/', 2082, + '0', 3827, + ';', 1303, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2469, + 'E', 3801, + 'G', 3805, + 'I', 3964, + 'K', 3805, + 'M', 3805, + 'N', 3960, + 'P', 3805, + 'T', 3805, + '[', 1801, + '_', 3826, '`', 834, - 'a', 3927, - 'b', 3921, - 'c', 3942, - 'd', 3892, - 'e', 3940, - 'f', 3886, - 'h', 3916, - 'i', 3859, - 'l', 3894, - 'm', 3888, - 'n', 3968, - 'o', 3976, - 'r', 3895, - 's', 3943, - 't', 3974, - 'u', 3993, - 'w', 3912, - 'x', 3969, - '{', 2000, - '}', 2001, + 'a', 3888, + 'b', 2470, + 'd', 3840, + 'e', 3799, + 'f', 3841, + 'g', 3804, + 'h', 3936, + 'i', 3819, + 'k', 3804, + 'm', 3806, + 'n', 3902, + 'o', 3937, + 'p', 3804, + 's', 3859, + 't', 3803, + 'u', 3946, + 'w', 3881, + 'x', 3901, + '{', 1967, + '|', 1808, + '}', 1968, + 0xb5, 3946, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1059); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3874); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4010); + lookahead == ' ') SKIP(1058); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3831); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3791); + lookahead != ']') ADVANCE(3748); END_STATE(); case 1035: - if (eof) ADVANCE(1284); + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '!', 3814, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '!', 3771, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '*', 2084, - '+', 2154, - '-', 1892, - '.', 2364, - '/', 2120, - '0', 2393, - ';', 1328, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2516, - 'E', 3808, - 'G', 3828, - 'I', 4005, - 'K', 3828, - 'M', 3828, - 'N', 4001, - 'P', 3828, - 'T', 3828, - '[', 1834, - '^', 3246, - '_', 3865, + '(', 1806, + ')', 1807, + '*', 2051, + '+', 2116, + '-', 1859, + '.', 2326, + '/', 2082, + '0', 3827, + ';', 1303, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2469, + 'E', 3805, + 'G', 3805, + 'I', 3964, + 'K', 3805, + 'M', 3805, + 'N', 3960, + 'P', 3805, + 'T', 3805, + '[', 1801, + '_', 3826, '`', 834, - 'a', 3926, - 'b', 2512, - 'c', 3942, - 'd', 3889, - 'e', 3804, - 'f', 3886, - 'g', 3827, - 'h', 3915, - 'i', 3859, - 'k', 3827, - 'l', 3894, - 'm', 3820, - 'n', 3967, - 'o', 3976, - 'p', 3827, - 'r', 3895, - 's', 3905, - 't', 3824, - 'u', 3989, - 'w', 3911, - 'x', 3969, - '{', 2000, - '}', 2001, - 0xb5, 3988, + 'a', 3888, + 'b', 2470, + 'd', 3840, + 'e', 3802, + 'f', 3841, + 'g', 3804, + 'h', 3936, + 'i', 3819, + 'k', 3804, + 'm', 3806, + 'n', 3902, + 'o', 3937, + 'p', 3804, + 's', 3859, + 't', 3803, + 'u', 3946, + 'w', 3881, + 'x', 3901, + '{', 1967, + '|', 1808, + '}', 1968, + 0xb5, 3946, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1071); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4010); + lookahead == ' ') SKIP(1058); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3831); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3791); + lookahead != ']') ADVANCE(3748); END_STATE(); case 1036: - if (eof) ADVANCE(1284); + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '!', 3814, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '!', 3771, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '*', 2084, - '+', 2154, - '-', 1892, - '.', 2364, - '/', 2120, - '0', 2393, - ';', 1328, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2507, - 'E', 3844, - 'G', 3848, - 'I', 4008, - 'K', 3848, - 'M', 3848, - 'N', 4004, - 'P', 3848, - 'T', 3848, - '[', 1834, - '_', 3867, + '(', 1806, + ')', 1807, + '*', 2051, + '+', 2116, + '-', 1859, + '.', 2443, + '/', 2082, + '0', 3827, + ';', 1303, + '<', 2175, + '=', 3773, + '>', 1841, + 'I', 3961, + 'N', 3957, + '[', 1801, + '^', 3206, + '_', 3820, '`', 834, - 'a', 3932, - 'b', 2508, - 'd', 3883, - 'e', 3842, - 'f', 3884, - 'g', 3847, - 'h', 3980, - 'i', 3862, - 'k', 3847, - 'm', 3849, - 'n', 3946, - 'o', 3981, - 'p', 3847, - 's', 3902, - 't', 3846, - 'u', 3990, - 'w', 3924, - 'x', 3945, - '{', 2000, - '|', 1841, - '}', 2001, - 0xb5, 3990, + 'a', 3883, + 'b', 3878, + 'c', 3898, + 'd', 3849, + 'e', 3896, + 'f', 3843, + 'h', 3873, + 'i', 3816, + 'l', 3851, + 'm', 3845, + 'n', 3924, + 'o', 3932, + 'r', 3852, + 's', 3899, + 't', 3930, + 'u', 3949, + 'w', 3869, + 'x', 3925, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1073); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); + lookahead == ' ') SKIP(1056); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3831); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3966); if (lookahead != 0 && - lookahead != ']') ADVANCE(3791); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3748); END_STATE(); case 1037: - if (eof) ADVANCE(1284); + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '!', 3814, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '!', 3771, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '*', 2084, - '+', 2154, - '-', 1892, - '.', 2364, - '/', 2120, - '0', 3870, - ';', 1328, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2516, - 'E', 3808, - 'G', 3828, - 'I', 4005, - 'K', 3828, - 'M', 3828, - 'N', 4001, - 'P', 3828, - 'T', 3828, - '[', 1834, - '^', 3246, - '_', 3863, + '(', 1806, + ')', 1807, + '*', 2051, + '+', 2116, + '-', 1859, + '.', 2443, + '/', 2082, + '0', 3827, + ';', 1303, + '<', 2175, + '=', 3773, + '>', 1841, + 'I', 3964, + 'N', 3960, + '[', 1801, + '_', 3826, '`', 834, - 'a', 3926, - 'b', 2512, - 'c', 3942, - 'd', 3889, - 'e', 3804, - 'f', 3886, - 'g', 3827, - 'h', 3915, - 'i', 3859, - 'k', 3827, - 'l', 3894, - 'm', 3820, - 'n', 3967, - 'o', 3976, - 'p', 3827, - 'r', 3895, - 's', 3905, - 't', 3824, - 'u', 3989, - 'w', 3911, - 'x', 3969, - '{', 2000, - '}', 2001, - 0xb5, 3988, + 'a', 3888, + 'b', 3874, + 'e', 3893, + 'f', 3841, + 'i', 3819, + 'm', 3907, + 'n', 3903, + 'o', 3937, + 's', 3950, + 't', 3938, + 'x', 3901, + '{', 1967, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1071); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3874); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4010); + lookahead == ' ') SKIP(1058); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3831); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3791); + lookahead != ']') ADVANCE(3748); END_STATE(); case 1038: - if (eof) ADVANCE(1284); + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '!', 3814, - '"', 2554, - '#', 4941, - '$', 1845, - '\'', 791, - '(', 1839, - ')', 1840, - '*', 2084, - '+', 2154, - '-', 1892, - '.', 2364, - '/', 2120, - '0', 3870, - ';', 1328, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2516, - 'E', 3828, - 'G', 3828, - 'I', 4005, - 'K', 3828, - 'M', 3828, - 'N', 4001, - 'P', 3828, - 'T', 3828, - '[', 1834, - '^', 3246, - '_', 3863, - '`', 834, - 'a', 3926, - 'b', 2512, - 'c', 3942, - 'd', 3889, - 'e', 3822, - 'f', 3886, - 'g', 3827, - 'h', 3915, - 'i', 3859, - 'k', 3827, - 'l', 3894, - 'm', 3820, - 'n', 3967, - 'o', 3976, - 'p', 3827, - 'r', 3895, - 's', 3905, - 't', 3824, - 'u', 3989, - 'w', 3911, - 'x', 3969, - '{', 2000, - '}', 2001, - 0xb5, 3988, + '\n', 1762, + '!', 3771, + '#', 4896, + '(', 2322, + ')', 1807, + '*', 2051, + '+', 2114, + '-', 1857, + '.', 2326, + '/', 2082, + ';', 1303, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2469, + 'E', 3801, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + '[', 2497, + '_', 3824, + 'a', 3888, + 'b', 2470, + 'd', 3840, + 'e', 3799, + 'g', 3804, + 'h', 3936, + 'i', 3889, + 'k', 3804, + 'm', 3806, + 'n', 3929, + 'o', 3937, + 'p', 3804, + 's', 3859, + 't', 3804, + 'u', 3946, + 'w', 3881, + 'x', 3901, + '|', 1808, + '}', 1968, + 0xb5, 3946, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1071); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3874); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4010); + lookahead == ' ') SKIP(1073); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3791); + (lookahead < ' ' || '#' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && + lookahead != ']' && + (lookahead < '_' || 'b' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3748); END_STATE(); case 1039: - if (eof) ADVANCE(1284); + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '!', 3814, - '"', 2554, - '#', 4941, - '$', 1845, - '\'', 791, - '(', 1839, - ')', 1840, - '*', 2084, - '+', 2154, - '-', 1892, - '.', 2364, - '/', 2120, - '0', 3870, - ';', 1328, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2507, - 'E', 3844, - 'G', 3848, - 'I', 4008, - 'K', 3848, - 'M', 3848, - 'N', 4004, - 'P', 3848, - 'T', 3848, - '[', 1834, - '_', 3869, - '`', 834, - 'a', 3932, - 'b', 2508, - 'd', 3883, - 'e', 3842, - 'f', 3884, - 'g', 3847, - 'h', 3980, - 'i', 3862, - 'k', 3847, - 'm', 3849, - 'n', 3946, - 'o', 3981, - 'p', 3847, - 's', 3902, - 't', 3846, - 'u', 3990, - 'w', 3924, - 'x', 3945, - '{', 2000, - '|', 1841, - '}', 2001, - 0xb5, 3990, + '\n', 1762, + '!', 3771, + '#', 4896, + '(', 2322, + ')', 1807, + '*', 2051, + '+', 2114, + '-', 1856, + '.', 2326, + '/', 2082, + ';', 1303, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2469, + 'E', 3801, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + '[', 2497, + '_', 3824, + 'a', 3888, + 'b', 2470, + 'd', 3840, + 'e', 3799, + 'g', 3804, + 'h', 3936, + 'i', 3889, + 'k', 3804, + 'm', 3806, + 'n', 3929, + 'o', 3937, + 'p', 3804, + 's', 3859, + 't', 3804, + 'u', 3946, + 'w', 3881, + 'x', 3901, + '|', 1808, + '}', 1968, + 0xb5, 3946, + '\t', 3209, + ' ', 3209, ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1073); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3874); + if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1079); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); if (lookahead != 0 && - lookahead != ']') ADVANCE(3791); + (lookahead < ' ' || '#' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && + lookahead != ']' && + (lookahead < '_' || 'b' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3748); END_STATE(); case 1040: - if (eof) ADVANCE(1284); + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '!', 3814, - '"', 2554, - '#', 4941, - '$', 1845, - '\'', 791, - '(', 1839, - ')', 1840, - '*', 2084, - '+', 2154, - '-', 1892, - '.', 2364, - '/', 2120, - '0', 3870, - ';', 1328, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2507, - 'E', 3848, - 'G', 3848, - 'I', 4008, - 'K', 3848, - 'M', 3848, - 'N', 4004, - 'P', 3848, - 'T', 3848, - '[', 1834, - '_', 3869, - '`', 834, - 'a', 3932, - 'b', 2508, - 'd', 3883, - 'e', 3845, - 'f', 3884, - 'g', 3847, - 'h', 3980, - 'i', 3862, - 'k', 3847, - 'm', 3849, - 'n', 3946, - 'o', 3981, - 'p', 3847, - 's', 3902, - 't', 3846, - 'u', 3990, - 'w', 3924, - 'x', 3945, - '{', 2000, - '|', 1841, - '}', 2001, - 0xb5, 3990, + '\n', 1762, + '!', 3771, + '#', 4896, + ')', 1807, + '*', 2051, + '+', 2114, + '-', 1857, + '.', 2326, + '/', 2082, + ';', 1303, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2469, + 'E', 3801, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + 'a', 3888, + 'b', 2470, + 'd', 3840, + 'e', 3799, + 'g', 3804, + 'h', 3936, + 'i', 3889, + 'k', 3804, + 'm', 3806, + 'n', 3929, + 'o', 3937, + 'p', 3804, + 's', 3859, + 't', 3804, + 'u', 3946, + 'w', 3881, + 'x', 3901, + '|', 1808, + '}', 1968, + 0xb5, 3946, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(1073); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3874); if (lookahead != 0 && - lookahead != ']') ADVANCE(3791); + (lookahead < ' ' || '#' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && + lookahead != '[' && + lookahead != ']' && + (lookahead < '`' || 'b' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3748); END_STATE(); case 1041: - if (eof) ADVANCE(1284); + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '!', 3814, - '"', 2554, - '#', 4941, - '$', 1845, - '\'', 791, - '(', 1839, - ')', 1840, - '*', 2084, - '+', 2154, - '-', 1892, - '.', 2481, - '/', 2120, - '0', 3870, - ';', 1328, - '<', 2213, - '=', 3816, - '>', 1874, - 'I', 4005, - 'N', 4001, - '[', 1834, - '^', 3246, - '_', 3863, - '`', 834, - 'a', 3926, - 'b', 3921, - 'c', 3942, - 'd', 3892, - 'e', 3940, - 'f', 3886, - 'h', 3916, - 'i', 3859, - 'l', 3894, - 'm', 3888, - 'n', 3968, - 'o', 3976, - 'r', 3895, - 's', 3943, - 't', 3974, - 'u', 3993, - 'w', 3912, - 'x', 3969, - '{', 2000, - '}', 2001, + '\n', 1762, + '!', 3771, + '#', 4896, + ')', 1807, + '*', 2051, + '+', 2114, + '-', 1857, + '.', 2326, + '/', 2082, + ';', 1303, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2469, + 'E', 3805, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + 'a', 3888, + 'b', 2470, + 'd', 3840, + 'e', 3802, + 'g', 3804, + 'h', 3936, + 'i', 3889, + 'k', 3804, + 'm', 3806, + 'n', 3929, + 'o', 3937, + 'p', 3804, + 's', 3859, + 't', 3804, + 'u', 3946, + 'w', 3881, + 'x', 3901, + '|', 1808, + '}', 1968, + 0xb5, 3946, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1071); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3874); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4010); + lookahead == ' ') SKIP(1073); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3791); + (lookahead < ' ' || '#' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && + lookahead != '[' && + lookahead != ']' && + (lookahead < '`' || 'b' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3748); END_STATE(); case 1042: - if (eof) ADVANCE(1284); + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '!', 3814, - '"', 2554, - '#', 4941, - '$', 1845, - '\'', 791, - '(', 1839, - ')', 1840, - '*', 2084, - '+', 2154, - '-', 1892, - '.', 2481, - '/', 2120, - '0', 3870, - ';', 1328, - '<', 2213, - '=', 3816, - '>', 1874, - 'I', 4008, - 'N', 4004, - '[', 1834, - '_', 3869, - '`', 834, - 'a', 3932, - 'b', 3917, - 'e', 3937, - 'f', 3884, - 'i', 3862, - 'm', 3951, - 'n', 3947, - 'o', 3981, - 's', 3994, - 't', 3982, - 'x', 3945, - '{', 2000, - '|', 1841, - '}', 2001, + '\n', 1762, + '!', 3771, + '#', 4896, + ')', 1807, + '*', 2051, + '+', 2114, + '-', 1857, + '/', 2082, + ';', 1303, + '<', 2175, + '=', 3773, + '>', 1841, + 'a', 3888, + 'b', 3874, + 'e', 3893, + 'i', 3889, + 'm', 3907, + 'n', 3928, + 'o', 3937, + 's', 3950, + 'x', 3901, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(1073); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3874); if (lookahead != 0 && - lookahead != ']') ADVANCE(3791); + (lookahead < ' ' || '#' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && + lookahead != '[' && + lookahead != ']' && + (lookahead < '`' || 'b' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3748); END_STATE(); case 1043: - if (eof) ADVANCE(1284); + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '!', 3814, - '#', 4941, - '(', 2360, - ')', 1840, - '*', 2084, - '+', 2152, - '-', 1890, - '.', 2364, - '/', 2120, - ';', 1328, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2507, - 'E', 3844, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - '[', 2535, - '_', 3867, - 'a', 3932, - 'b', 2508, - 'd', 3883, - 'e', 3842, - 'g', 3847, - 'h', 3980, - 'i', 3933, - 'k', 3847, - 'm', 3849, - 'n', 3973, - 'o', 3981, - 'p', 3847, - 's', 3902, - 't', 3847, - 'u', 3990, - 'w', 3924, - 'x', 3945, - '|', 1841, - '}', 2001, - 0xb5, 3990, + '\n', 1762, + '!', 3771, + '#', 4896, + ')', 1807, + '*', 2051, + '+', 2114, + '-', 1856, + '.', 2326, + '/', 2082, + ';', 1303, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2469, + 'E', 3801, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + '_', 3824, + 'a', 3888, + 'b', 2470, + 'd', 3840, + 'e', 3799, + 'g', 3804, + 'h', 3936, + 'i', 3889, + 'k', 3804, + 'm', 3806, + 'n', 3929, + 'o', 3937, + 'p', 3804, + 's', 3859, + 't', 3804, + 'u', 3946, + 'w', 3881, + 'x', 3901, + '|', 1808, + '}', 1968, + 0xb5, 3946, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1089); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + lookahead == ' ') SKIP(1079); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); if (lookahead != 0 && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && + lookahead != '[' && lookahead != ']' && (lookahead < '_' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3791); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3748); END_STATE(); case 1044: - if (eof) ADVANCE(1284); + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '!', 3814, - '#', 4941, - '(', 2360, - ')', 1840, - '*', 2084, - '+', 2152, - '-', 1889, - '.', 2364, - '/', 2120, - ';', 1328, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2507, - 'E', 3844, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - '[', 2535, - '_', 3867, - 'a', 3932, - 'b', 2508, - 'd', 3883, - 'e', 3842, - 'g', 3847, - 'h', 3980, - 'i', 3933, - 'k', 3847, - 'm', 3849, - 'n', 3973, - 'o', 3981, - 'p', 3847, - 's', 3902, - 't', 3847, - 'u', 3990, - 'w', 3924, - 'x', 3945, - '|', 1841, - '}', 2001, - 0xb5, 3990, - '\t', 3249, - ' ', 3249, + '\n', 1762, + '!', 3771, + '#', 4896, + ')', 1807, + '*', 2051, + '+', 2114, + '-', 1856, + '.', 2326, + '/', 2082, + ';', 1303, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2469, + 'E', 3801, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + 'a', 3888, + 'b', 2470, + 'd', 3840, + 'e', 3799, + 'g', 3804, + 'h', 3936, + 'i', 3889, + 'k', 3804, + 'm', 3806, + 'n', 3929, + 'o', 3937, + 'p', 3804, + 's', 3859, + 't', 3804, + 'u', 3946, + 'w', 3881, + 'x', 3901, + '|', 1808, + '}', 1968, + 0xb5, 3946, + '\t', 3209, + ' ', 3209, ); - if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1095); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1079); if (lookahead != 0 && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && + lookahead != '[' && lookahead != ']' && - (lookahead < '_' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3791); + (lookahead < '`' || 'b' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3748); END_STATE(); case 1045: - if (eof) ADVANCE(1284); + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '!', 3814, - '#', 4941, - ')', 1840, - '*', 2084, - '+', 2152, - '-', 1890, - '.', 2364, - '/', 2120, - ';', 1328, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2507, - 'E', 3844, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - 'a', 3932, - 'b', 2508, - 'd', 3883, - 'e', 3842, - 'g', 3847, - 'h', 3980, - 'i', 3933, - 'k', 3847, - 'm', 3849, - 'n', 3973, - 'o', 3981, - 'p', 3847, - 's', 3902, - 't', 3847, - 'u', 3990, - 'w', 3924, - 'x', 3945, - '|', 1841, - '}', 2001, - 0xb5, 3990, + '\n', 1762, + '!', 3771, + '#', 4896, + ')', 1807, + '*', 2051, + '+', 2114, + '-', 1856, + '.', 2326, + '/', 2082, + ';', 1303, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2469, + 'E', 3801, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + 'a', 3888, + 'b', 2470, + 'd', 3840, + 'e', 3799, + 'g', 3804, + 'h', 3936, + 'i', 3889, + 'k', 3804, + 'm', 3806, + 'n', 3929, + 'o', 3937, + 'p', 3804, + 's', 3859, + 't', 3804, + 'u', 3946, + 'w', 3881, + 'x', 3901, + '|', 1808, + '}', 1968, + 0xb5, 3946, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1089); + lookahead == ' ') SKIP(1079); if (lookahead != 0 && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && (lookahead < '`' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3791); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3748); END_STATE(); case 1046: - if (eof) ADVANCE(1284); + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '!', 3814, - '#', 4941, - ')', 1840, - '*', 2084, - '+', 2152, - '-', 1890, - '.', 2364, - '/', 2120, - ';', 1328, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2507, - 'E', 3848, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - 'a', 3932, - 'b', 2508, - 'd', 3883, - 'e', 3845, - 'g', 3847, - 'h', 3980, - 'i', 3933, - 'k', 3847, - 'm', 3849, - 'n', 3973, - 'o', 3981, - 'p', 3847, - 's', 3902, - 't', 3847, - 'u', 3990, - 'w', 3924, - 'x', 3945, - '|', 1841, - '}', 2001, - 0xb5, 3990, + '\n', 1762, + '!', 3771, + '#', 4896, + ')', 1807, + '*', 2051, + '+', 2114, + '-', 1856, + '.', 2326, + '/', 2082, + ';', 1303, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2469, + 'E', 3805, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + 'a', 3888, + 'b', 2470, + 'd', 3840, + 'e', 3802, + 'g', 3804, + 'h', 3936, + 'i', 3889, + 'k', 3804, + 'm', 3806, + 'n', 3929, + 'o', 3937, + 'p', 3804, + 's', 3859, + 't', 3804, + 'u', 3946, + 'w', 3881, + 'x', 3901, + '|', 1808, + '}', 1968, + 0xb5, 3946, + '\t', 3209, + ' ', 3209, ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1089); + if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1079); if (lookahead != 0 && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && (lookahead < '`' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3791); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3748); END_STATE(); case 1047: - if (eof) ADVANCE(1284); + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '!', 3814, - '#', 4941, - ')', 1840, - '*', 2084, - '+', 2152, - '-', 1890, - '/', 2120, - ';', 1328, - '<', 2213, - '=', 3816, - '>', 1874, - 'a', 3932, - 'b', 3917, - 'e', 3937, - 'i', 3933, - 'm', 3951, - 'n', 3972, - 'o', 3981, - 's', 3994, - 'x', 3945, - '|', 1841, - '}', 2001, + '\n', 1762, + '!', 3771, + '#', 4896, + ')', 1807, + '*', 2051, + '+', 2114, + '-', 1856, + '.', 2326, + '/', 2082, + ';', 1303, + '<', 2175, + '=', 3773, + '>', 1841, + 'B', 2469, + 'E', 3805, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + 'a', 3888, + 'b', 2470, + 'd', 3840, + 'e', 3802, + 'g', 3804, + 'h', 3936, + 'i', 3889, + 'k', 3804, + 'm', 3806, + 'n', 3929, + 'o', 3937, + 'p', 3804, + 's', 3859, + 't', 3804, + 'u', 3946, + 'w', 3881, + 'x', 3901, + '|', 1808, + '}', 1968, + 0xb5, 3946, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1089); + lookahead == ' ') SKIP(1079); if (lookahead != 0 && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && (lookahead < '`' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3791); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3748); END_STATE(); case 1048: - if (eof) ADVANCE(1284); + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '!', 3814, - '#', 4941, - ')', 1840, - '*', 2084, - '+', 2152, - '-', 1889, - '.', 2364, - '/', 2120, - ';', 1328, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2507, - 'E', 3844, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - '_', 3867, - 'a', 3932, - 'b', 2508, - 'd', 3883, - 'e', 3842, - 'g', 3847, - 'h', 3980, - 'i', 3933, - 'k', 3847, - 'm', 3849, - 'n', 3973, - 'o', 3981, - 'p', 3847, - 's', 3902, - 't', 3847, - 'u', 3990, - 'w', 3924, - 'x', 3945, - '|', 1841, - '}', 2001, - 0xb5, 3990, + '\n', 1762, + '!', 3771, + '#', 4896, + ')', 1807, + '*', 2051, + '+', 2114, + '-', 1856, + '/', 2082, + ';', 1303, + '<', 2175, + '=', 3773, + '>', 1841, + 'a', 3888, + 'b', 3874, + 'e', 3893, + 'i', 3889, + 'm', 3907, + 'n', 3928, + 'o', 3937, + 's', 3950, + 'x', 3901, + '|', 1808, + '}', 1968, + '\t', 3209, + ' ', 3209, ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1095); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1079); if (lookahead != 0 && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '_' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3791); + (lookahead < '`' || 'b' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3748); END_STATE(); case 1049: - if (eof) ADVANCE(1284); + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '!', 3814, - '#', 4941, - ')', 1840, - '*', 2084, - '+', 2152, - '-', 1889, - '.', 2364, - '/', 2120, - ';', 1328, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2507, - 'E', 3844, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - 'a', 3932, - 'b', 2508, - 'd', 3883, - 'e', 3842, - 'g', 3847, - 'h', 3980, - 'i', 3933, - 'k', 3847, - 'm', 3849, - 'n', 3973, - 'o', 3981, - 'p', 3847, - 's', 3902, - 't', 3847, - 'u', 3990, - 'w', 3924, - 'x', 3945, - '|', 1841, - '}', 2001, - 0xb5, 3990, - '\t', 3249, - ' ', 3249, + '\n', 1762, + '!', 3771, + '#', 4896, + ')', 1807, + '*', 2051, + '+', 2114, + '-', 1856, + '/', 2082, + ';', 1303, + '<', 2175, + '=', 3773, + '>', 1841, + 'a', 3888, + 'b', 3874, + 'e', 3893, + 'i', 3889, + 'm', 3907, + 'n', 3928, + 'o', 3937, + 's', 3950, + 'x', 3901, + '|', 1808, + '}', 1968, ); - if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1095); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(1079); if (lookahead != 0 && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && (lookahead < '`' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3791); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3748); END_STATE(); case 1050: - if (eof) ADVANCE(1284); + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '!', 3814, - '#', 4941, - ')', 1840, - '*', 2084, - '+', 2152, - '-', 1889, - '.', 2364, - '/', 2120, - ';', 1328, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2507, - 'E', 3844, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - 'a', 3932, - 'b', 2508, - 'd', 3883, - 'e', 3842, - 'g', 3847, - 'h', 3980, - 'i', 3933, - 'k', 3847, - 'm', 3849, - 'n', 3973, - 'o', 3981, - 'p', 3847, - 's', 3902, - 't', 3847, - 'u', 3990, - 'w', 3924, - 'x', 3945, - '|', 1841, - '}', 2001, - 0xb5, 3990, + '\n', 1762, + '!', 813, + '"', 2516, + '#', 4896, + '$', 1812, + '\'', 791, + '(', 1806, + ')', 1807, + '*', 2051, + '+', 2116, + '-', 1859, + '.', 2326, + '/', 2082, + '0', 2420, + ':', 1797, + ';', 1303, + '<', 2175, + '=', 815, + '>', 1841, + '?', 2064, + 'I', 1523, + 'N', 1517, + '[', 1801, + '^', 3206, + '_', 1320, + '`', 834, + 'a', 1407, + 'b', 1398, + 'c', 1433, + 'd', 1349, + 'e', 1428, + 'f', 1327, + 'h', 1393, + 'i', 1319, + 'l', 1351, + 'm', 1331, + 'n', 1443, + 'o', 1454, + 'r', 1352, + 's', 1435, + 't', 1450, + 'u', 1475, + 'w', 1383, + 'x', 1445, + '{', 1967, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1095); - if (lookahead != 0 && - (lookahead < ' ' || '#' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '`' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3791); + lookahead == ' ') SKIP(1052); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); case 1051: - if (eof) ADVANCE(1284); + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '!', 3814, - '#', 4941, - ')', 1840, - '*', 2084, - '+', 2152, - '-', 1889, - '.', 2364, - '/', 2120, - ';', 1328, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2507, - 'E', 3848, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - 'a', 3932, - 'b', 2508, - 'd', 3883, - 'e', 3845, - 'g', 3847, - 'h', 3980, - 'i', 3933, - 'k', 3847, - 'm', 3849, - 'n', 3973, - 'o', 3981, - 'p', 3847, - 's', 3902, - 't', 3847, - 'u', 3990, - 'w', 3924, - 'x', 3945, - '|', 1841, - '}', 2001, - 0xb5, 3990, - '\t', 3249, - ' ', 3249, + '\n', 1762, + '!', 813, + '"', 2516, + '#', 4896, + '$', 1812, + '\'', 791, + '(', 1806, + ')', 1807, + '*', 2051, + '+', 2116, + '-', 1859, + '.', 2326, + '/', 2082, + '0', 2420, + ';', 1303, + '<', 2175, + '=', 815, + '>', 1841, + '?', 2064, + 'I', 995, + 'N', 986, + '[', 1801, + '_', 833, + '`', 834, + 'a', 906, + 'b', 884, + 'e', 910, + 'f', 836, + 'i', 824, + 'm', 918, + 'n', 915, + 'o', 932, + 's', 950, + 't', 936, + 'x', 913, + '{', 1967, + '|', 1808, + '}', 1968, ); - if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1095); - if (lookahead != 0 && - (lookahead < ' ' || '#' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '`' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3791); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(1054); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); END_STATE(); case 1052: - if (eof) ADVANCE(1284); + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '!', 3814, - '#', 4941, - ')', 1840, - '*', 2084, - '+', 2152, - '-', 1889, - '.', 2364, - '/', 2120, - ';', 1328, - '<', 2213, - '=', 3816, - '>', 1874, - 'B', 2507, - 'E', 3848, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - 'a', 3932, - 'b', 2508, - 'd', 3883, - 'e', 3845, - 'g', 3847, - 'h', 3980, - 'i', 3933, - 'k', 3847, - 'm', 3849, - 'n', 3973, - 'o', 3981, - 'p', 3847, - 's', 3902, - 't', 3847, - 'u', 3990, - 'w', 3924, - 'x', 3945, - '|', 1841, - '}', 2001, - 0xb5, 3990, + '\n', 1762, + '!', 813, + '"', 2516, + '#', 4896, + '$', 1812, + '\'', 791, + '(', 1806, + ')', 1807, + '*', 2051, + '+', 2116, + '-', 1859, + '.', 2443, + '/', 2082, + '0', 2420, + ':', 1797, + ';', 1303, + '<', 2175, + '=', 815, + '>', 1841, + '?', 2064, + 'I', 1523, + 'N', 1517, + '[', 1801, + '^', 3206, + '_', 1320, + '`', 834, + 'a', 1407, + 'b', 1398, + 'c', 1433, + 'd', 1349, + 'e', 1428, + 'f', 1327, + 'h', 1393, + 'i', 1319, + 'l', 1351, + 'm', 1331, + 'n', 1443, + 'o', 1454, + 'r', 1352, + 's', 1435, + 't', 1450, + 'u', 1475, + 'w', 1383, + 'x', 1445, + '{', 1967, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1095); - if (lookahead != 0 && - (lookahead < ' ' || '#' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '`' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3791); + lookahead == ' ') SKIP(1052); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); case 1053: - if (eof) ADVANCE(1284); + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '!', 3814, - '#', 4941, - ')', 1840, - '*', 2084, - '+', 2152, - '-', 1889, - '/', 2120, - ';', 1328, - '<', 2213, - '=', 3816, - '>', 1874, - 'a', 3932, - 'b', 3917, - 'e', 3937, - 'i', 3933, - 'm', 3951, - 'n', 3972, - 'o', 3981, - 's', 3994, - 'x', 3945, - '|', 1841, - '}', 2001, - '\t', 3249, - ' ', 3249, + '\n', 1762, + '!', 813, + '"', 2516, + '#', 4896, + '$', 1812, + '\'', 791, + '(', 1806, + ')', 1807, + '*', 2051, + '+', 2116, + '-', 1859, + '.', 2443, + '/', 2082, + '0', 2420, + ';', 1303, + '<', 2175, + '=', 815, + '>', 1841, + '?', 2064, + 'I', 1523, + 'N', 1517, + '[', 1801, + '^', 3206, + '_', 1320, + '`', 834, + 'a', 1407, + 'b', 1398, + 'c', 1433, + 'd', 1349, + 'e', 1428, + 'f', 1327, + 'h', 1393, + 'i', 1319, + 'l', 1351, + 'm', 1331, + 'n', 1443, + 'o', 1454, + 'r', 1352, + 's', 1435, + 't', 1450, + 'u', 1475, + 'w', 1383, + 'x', 1445, + '{', 1967, + '}', 1968, ); - if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1095); - if (lookahead != 0 && - (lookahead < ' ' || '#' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '`' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3791); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(1053); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); case 1054: - if (eof) ADVANCE(1284); + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '!', 3814, - '#', 4941, - ')', 1840, - '*', 2084, - '+', 2152, - '-', 1889, - '/', 2120, - ';', 1328, - '<', 2213, - '=', 3816, - '>', 1874, - 'a', 3932, - 'b', 3917, - 'e', 3937, - 'i', 3933, - 'm', 3951, - 'n', 3972, - 'o', 3981, - 's', 3994, - 'x', 3945, - '|', 1841, - '}', 2001, + '\n', 1762, + '!', 813, + '"', 2516, + '#', 4896, + '$', 1812, + '\'', 791, + '(', 1806, + ')', 1807, + '*', 2051, + '+', 2116, + '-', 1859, + '.', 2443, + '/', 2082, + '0', 2420, + ';', 1303, + '<', 2175, + '=', 815, + '>', 1841, + '?', 2064, + 'I', 995, + 'N', 986, + '[', 1801, + '_', 833, + '`', 834, + 'a', 906, + 'b', 884, + 'e', 910, + 'f', 836, + 'i', 824, + 'm', 918, + 'n', 915, + 'o', 932, + 's', 950, + 't', 936, + 'x', 913, + '{', 1967, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1095); - if (lookahead != 0 && - (lookahead < ' ' || '#' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '`' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3791); + lookahead == ' ') SKIP(1054); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); END_STATE(); case 1055: - if (eof) ADVANCE(1284); + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, + '\n', 1762, '!', 813, - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '*', 2084, - '+', 2154, - '-', 1902, - '.', 2364, - '/', 2120, - '0', 2458, - ';', 1328, - '<', 2213, + '(', 1806, + ')', 1807, + '*', 2051, + '+', 2116, + '-', 1859, + '.', 2443, + '/', 2082, + '0', 2420, + ';', 1303, + '<', 2175, '=', 815, - '>', 1874, - '?', 2102, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1350, + '>', 1841, + 'I', 1523, + 'N', 1517, + '[', 2497, + '^', 3206, + '_', 1320, '`', 834, - 'a', 1439, - 'b', 1429, - 'c', 1465, - 'd', 1379, - 'e', 1460, - 'f', 1357, - 'h', 1424, - 'i', 1349, - 'l', 1381, - 'm', 1361, - 'n', 1476, - 'o', 1487, - 'r', 1382, - 's', 1467, - 't', 1483, - 'u', 1508, - 'w', 1414, - 'x', 1478, - '{', 2000, - '}', 2001, + 'a', 1407, + 'b', 1398, + 'c', 1433, + 'd', 1349, + 'e', 1428, + 'f', 1327, + 'h', 1393, + 'i', 1319, + 'l', 1351, + 'm', 1331, + 'n', 1443, + 'o', 1454, + 'r', 1352, + 's', 1435, + 't', 1450, + 'u', 1475, + 'w', 1383, + 'x', 1445, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1057); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') SKIP(1056); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); case 1056: - if (eof) ADVANCE(1284); + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, + '\n', 1762, '!', 813, - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '*', 2084, - '+', 2154, - '-', 1902, - '.', 2364, - '/', 2120, - '0', 2458, - ';', 1328, - '<', 2213, + '(', 1806, + ')', 1807, + '*', 2051, + '+', 2116, + '-', 1859, + '.', 2443, + '/', 2082, + '0', 2420, + ';', 1303, + '<', 2175, '=', 815, - '>', 1874, - 'B', 2516, - 'E', 1330, - 'G', 1348, - 'I', 1556, - 'K', 1348, - 'M', 1348, - 'N', 1550, - 'P', 1348, - 'T', 1348, - '[', 1834, - '^', 3246, - '_', 1350, + '>', 1841, + 'I', 1523, + 'N', 1517, + '[', 1801, + '^', 3206, + '_', 1320, '`', 834, - 'a', 1439, - 'b', 2512, - 'c', 1465, - 'd', 1363, - 'e', 1329, - 'f', 1357, - 'g', 1347, - 'h', 1423, - 'i', 1349, - 'k', 1347, - 'l', 1381, - 'm', 1342, - 'n', 1475, - 'o', 1487, - 'p', 1347, - 'r', 1382, - 's', 1399, - 't', 1345, - 'u', 1506, - 'w', 1413, - 'x', 1478, - '{', 2000, - '}', 2001, - 0xb5, 1505, + 'a', 1407, + 'b', 1398, + 'c', 1433, + 'd', 1349, + 'e', 1428, + 'f', 1327, + 'h', 1393, + 'i', 1319, + 'l', 1351, + 'm', 1331, + 'n', 1443, + 'o', 1454, + 'r', 1352, + 's', 1435, + 't', 1450, + 'u', 1475, + 'w', 1383, + 'x', 1445, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1059); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') SKIP(1056); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); case 1057: - if (eof) ADVANCE(1284); + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, + '\n', 1762, '!', 813, - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '*', 2084, - '+', 2154, - '-', 1902, - '.', 2481, - '/', 2120, - '0', 2458, - ';', 1328, - '<', 2213, + '(', 1806, + ')', 1807, + '*', 2051, + '+', 2116, + '-', 1859, + '.', 2443, + '/', 2082, + '0', 2420, + ';', 1303, + '<', 2175, '=', 815, - '>', 1874, - '?', 2102, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1350, - '`', 834, - 'a', 1439, - 'b', 1429, - 'c', 1465, - 'd', 1379, - 'e', 1460, - 'f', 1357, - 'h', 1424, - 'i', 1349, - 'l', 1381, - 'm', 1361, - 'n', 1476, - 'o', 1487, - 'r', 1382, - 's', 1467, - 't', 1483, - 'u', 1508, - 'w', 1414, - 'x', 1478, - '{', 2000, - '}', 2001, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1057); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); - END_STATE(); - case 1058: - if (eof) ADVANCE(1284); - ADVANCE_MAP( - '\n', 1795, - '!', 813, - '"', 2554, - '#', 4941, - '$', 1845, - '\'', 791, - '(', 1839, - ')', 1840, - '*', 2084, - '+', 2154, - '-', 1902, - '.', 2481, - '/', 2120, - '0', 2458, - ';', 1328, - '<', 2213, - '=', 815, - '>', 1874, - 'I', 1556, - 'N', 1550, - '[', 2535, - '^', 3246, - '_', 1350, - '`', 834, - 'a', 1439, - 'b', 1429, - 'c', 1465, - 'd', 1379, - 'e', 1460, - 'f', 1357, - 'h', 1424, - 'i', 1349, - 'l', 1381, - 'm', 1361, - 'n', 1476, - 'o', 1487, - 'r', 1382, - 's', 1467, - 't', 1483, - 'u', 1508, - 'w', 1414, - 'x', 1478, - '{', 2000, - '}', 2001, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1059); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); - END_STATE(); - case 1059: - if (eof) ADVANCE(1284); - ADVANCE_MAP( - '\n', 1795, - '!', 813, - '"', 2554, - '#', 4941, - '$', 1845, - '\'', 791, - '(', 1839, - ')', 1840, - '*', 2084, - '+', 2154, - '-', 1902, - '.', 2481, - '/', 2120, - '0', 2458, - ';', 1328, - '<', 2213, - '=', 815, - '>', 1874, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1350, - '`', 834, - 'a', 1439, - 'b', 1429, - 'c', 1465, - 'd', 1379, - 'e', 1460, - 'f', 1357, - 'h', 1424, - 'i', 1349, - 'l', 1381, - 'm', 1361, - 'n', 1476, - 'o', 1487, - 'r', 1382, - 's', 1467, - 't', 1483, - 'u', 1508, - 'w', 1414, - 'x', 1478, - '{', 2000, - '}', 2001, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1059); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); - END_STATE(); - case 1060: - if (eof) ADVANCE(1284); - ADVANCE_MAP( - '\n', 1795, - '!', 813, - '"', 2554, - '#', 4941, - '$', 1845, - '\'', 791, - '(', 1839, - ')', 1840, - '*', 2084, - '+', 2154, - '-', 1902, - '.', 2365, - '/', 2120, - '0', 2458, - ';', 1328, - '<', 2213, - '=', 815, - '>', 1874, - '?', 2102, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1350, - '`', 834, - 'a', 1439, - 'b', 1429, - 'c', 1465, - 'd', 1379, - 'e', 1460, - 'f', 1357, - 'h', 1424, - 'i', 1349, - 'l', 1381, - 'm', 1361, - 'n', 1476, - 'o', 1487, - 'r', 1382, - 's', 1467, - 't', 1483, - 'u', 1508, - 'w', 1414, - 'x', 1478, - '{', 2000, - '}', 2001, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1057); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); - END_STATE(); - case 1061: - if (eof) ADVANCE(1284); - ADVANCE_MAP( - '\n', 1795, - '!', 813, - '"', 2554, - '#', 4941, - '$', 1845, - '\'', 791, - '(', 1839, - ')', 1840, - '*', 2084, - '+', 2154, - '-', 1902, - '.', 2480, - '/', 2120, - '0', 2458, - ';', 1328, - '<', 2213, - '=', 815, - '>', 1874, - 'B', 2516, - 'E', 1330, - 'G', 1348, - 'I', 1556, - 'K', 1348, - 'M', 1348, - 'N', 1550, - 'P', 1348, - 'T', 1348, - '[', 1834, - '^', 3246, - '_', 1350, - '`', 834, - 'a', 1439, - 'b', 2512, - 'c', 1465, - 'd', 1363, - 'e', 1329, - 'f', 1357, - 'g', 1347, - 'h', 1423, - 'i', 1349, - 'k', 1347, - 'l', 1381, - 'm', 1342, - 'n', 1475, - 'o', 1487, - 'p', 1347, - 'r', 1382, - 's', 1399, - 't', 1345, - 'u', 1506, - 'w', 1413, - 'x', 1478, - '{', 2000, - '}', 2001, - 0xb5, 1505, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1059); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); - END_STATE(); - case 1062: - if (eof) ADVANCE(1284); - ADVANCE_MAP( - '\n', 1795, - '!', 813, - '"', 2554, - '#', 4941, - '$', 1845, - '\'', 791, - '(', 1839, - ')', 1840, - '*', 2084, - '+', 2154, - '-', 1902, - '.', 2480, - '/', 2120, - '0', 2458, - ';', 1328, - '<', 2213, - '=', 815, - '>', 1874, - 'B', 2516, - 'E', 1348, - 'G', 1348, - 'I', 1556, - 'K', 1348, - 'M', 1348, - 'N', 1550, - 'P', 1348, - 'T', 1348, - '[', 1834, - '^', 3246, - '_', 1350, - '`', 834, - 'a', 1439, - 'b', 2512, - 'c', 1465, - 'd', 1363, - 'e', 1344, - 'f', 1357, - 'g', 1347, - 'h', 1423, - 'i', 1349, - 'k', 1347, - 'l', 1381, - 'm', 1342, - 'n', 1475, - 'o', 1487, - 'p', 1347, - 'r', 1382, - 's', 1399, - 't', 1345, - 'u', 1506, - 'w', 1413, - 'x', 1478, - '{', 2000, - '}', 2001, - 0xb5, 1505, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1059); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); - END_STATE(); - case 1063: - if (eof) ADVANCE(1284); - ADVANCE_MAP( - '\n', 1795, - '!', 813, - '"', 2554, - '#', 4941, - '$', 1845, - '\'', 791, - '(', 1839, - ')', 1840, - '*', 2084, - '+', 2154, - '-', 1902, - '.', 2480, - '/', 2120, - '0', 2458, - ';', 1328, - '<', 2213, - '=', 815, - '>', 1874, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1350, - '`', 834, - 'a', 1439, - 'b', 1429, - 'c', 1465, - 'd', 1379, - 'e', 1460, - 'f', 1357, - 'h', 1424, - 'i', 1349, - 'l', 1381, - 'm', 1361, - 'n', 1476, - 'o', 1487, - 'r', 1382, - 's', 1467, - 't', 1483, - 'u', 1508, - 'w', 1414, - 'x', 1478, - '{', 2000, - '}', 2001, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1059); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); - END_STATE(); - case 1064: - if (eof) ADVANCE(1284); - ADVANCE_MAP( - '\n', 1795, - '!', 813, - '"', 2554, - '#', 4941, - '$', 1845, - '\'', 791, - '(', 1839, - ')', 1840, - '*', 2084, - '+', 2154, - '-', 1902, - '.', 2480, - '/', 2120, - '0', 2393, - ';', 1328, - '<', 2213, - '=', 815, - '>', 1874, - 'B', 2516, - 'E', 1330, - 'G', 1348, - 'I', 1556, - 'K', 1348, - 'M', 1348, - 'N', 1550, - 'P', 1348, - 'T', 1348, - '[', 1834, - '^', 3246, - '_', 1352, - '`', 834, - 'a', 1439, - 'b', 2512, - 'c', 1465, - 'd', 1363, - 'e', 1329, - 'f', 1357, - 'g', 1347, - 'h', 1423, - 'i', 1349, - 'k', 1347, - 'l', 1381, - 'm', 1342, - 'n', 1475, - 'o', 1487, - 'p', 1347, - 'r', 1382, - 's', 1399, - 't', 1345, - 'u', 1506, - 'w', 1413, - 'x', 1478, - '{', 2000, - '}', 2001, - 0xb5, 1505, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1059); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); - END_STATE(); - case 1065: - if (eof) ADVANCE(1284); - ADVANCE_MAP( - '\n', 1795, - '!', 813, - '"', 2554, - '#', 4941, - '$', 1845, - '\'', 791, - '(', 1839, - ')', 1840, - '*', 2084, - '+', 2154, - '-', 1892, - '.', 2364, - '/', 2120, - '0', 2458, - ':', 1830, - ';', 1328, - '<', 2213, - '=', 815, - '>', 1874, - '?', 2102, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1350, - '`', 834, - 'a', 1438, - 'b', 1429, - 'c', 1465, - 'd', 1379, - 'e', 1460, - 'f', 1357, - 'h', 1424, - 'i', 1349, - 'l', 1381, - 'm', 1361, - 'n', 1476, - 'o', 1487, - 'r', 1382, - 's', 1467, - 't', 1483, - 'u', 1508, - 'w', 1414, - 'x', 1478, - '{', 2000, - '|', 1841, - '}', 2001, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1067); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); - END_STATE(); - case 1066: - if (eof) ADVANCE(1284); - ADVANCE_MAP( - '\n', 1795, - '!', 813, - '"', 2554, - '#', 4941, - '$', 1845, - '\'', 791, - '(', 1839, - ')', 1840, - '*', 2084, - '+', 2154, - '-', 1892, - '.', 2364, - '/', 2120, - '0', 2458, - ';', 1328, - '<', 2213, - '=', 815, - '>', 1874, - '?', 2102, - 'I', 995, - 'N', 986, - '[', 1834, - '_', 833, - '`', 834, - 'a', 906, - 'b', 884, - 'e', 910, - 'f', 836, - 'i', 824, - 'm', 918, - 'n', 915, - 'o', 932, - 's', 950, - 't', 936, - 'x', 913, - '{', 2000, - '|', 1841, - '}', 2001, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1069); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - END_STATE(); - case 1067: - if (eof) ADVANCE(1284); - ADVANCE_MAP( - '\n', 1795, - '!', 813, - '"', 2554, - '#', 4941, - '$', 1845, - '\'', 791, - '(', 1839, - ')', 1840, - '*', 2084, - '+', 2154, - '-', 1892, - '.', 2481, - '/', 2120, - '0', 2458, - ':', 1830, - ';', 1328, - '<', 2213, - '=', 815, - '>', 1874, - '?', 2102, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1350, - '`', 834, - 'a', 1438, - 'b', 1429, - 'c', 1465, - 'd', 1379, - 'e', 1460, - 'f', 1357, - 'h', 1424, - 'i', 1349, - 'l', 1381, - 'm', 1361, - 'n', 1476, - 'o', 1487, - 'r', 1382, - 's', 1467, - 't', 1483, - 'u', 1508, - 'w', 1414, - 'x', 1478, - '{', 2000, - '|', 1841, - '}', 2001, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1067); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); - END_STATE(); - case 1068: - if (eof) ADVANCE(1284); - ADVANCE_MAP( - '\n', 1795, - '!', 813, - '"', 2554, - '#', 4941, - '$', 1845, - '\'', 791, - '(', 1839, - ')', 1840, - '*', 2084, - '+', 2154, - '-', 1892, - '.', 2481, - '/', 2120, - '0', 2458, - ';', 1328, - '<', 2213, - '=', 815, - '>', 1874, - '?', 2102, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1350, - '`', 834, - 'a', 1438, - 'b', 1429, - 'c', 1465, - 'd', 1379, - 'e', 1460, - 'f', 1357, - 'h', 1424, - 'i', 1349, - 'l', 1381, - 'm', 1361, - 'n', 1476, - 'o', 1487, - 'r', 1382, - 's', 1467, - 't', 1483, - 'u', 1508, - 'w', 1414, - 'x', 1478, - '{', 2000, - '}', 2001, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1068); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); - END_STATE(); - case 1069: - if (eof) ADVANCE(1284); - ADVANCE_MAP( - '\n', 1795, - '!', 813, - '"', 2554, - '#', 4941, - '$', 1845, - '\'', 791, - '(', 1839, - ')', 1840, - '*', 2084, - '+', 2154, - '-', 1892, - '.', 2481, - '/', 2120, - '0', 2458, - ';', 1328, - '<', 2213, - '=', 815, - '>', 1874, - '?', 2102, - 'I', 995, - 'N', 986, - '[', 1834, - '_', 833, - '`', 834, - 'a', 906, - 'b', 884, - 'e', 910, - 'f', 836, - 'i', 824, - 'm', 918, - 'n', 915, - 'o', 932, - 's', 950, - 't', 936, - 'x', 913, - '{', 2000, - '|', 1841, - '}', 2001, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1069); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - END_STATE(); - case 1070: - if (eof) ADVANCE(1284); - ADVANCE_MAP( - '\n', 1795, - '!', 813, - '"', 2554, - '#', 4941, - '$', 1845, - '\'', 791, - '(', 1839, - ')', 1840, - '*', 2084, - '+', 2154, - '-', 1892, - '.', 2481, - '/', 2120, - '0', 2458, - ';', 1328, - '<', 2213, - '=', 815, - '>', 1874, - 'I', 1556, - 'N', 1550, - '[', 2535, - '^', 3246, - '_', 1350, - '`', 834, - 'a', 1438, - 'b', 1429, - 'c', 1465, - 'd', 1379, - 'e', 1460, - 'f', 1357, - 'h', 1424, - 'i', 1349, - 'l', 1381, - 'm', 1361, - 'n', 1476, - 'o', 1487, - 'r', 1382, - 's', 1467, - 't', 1483, - 'u', 1508, - 'w', 1414, - 'x', 1478, - '{', 2000, - '}', 2001, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1071); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); - END_STATE(); - case 1071: - if (eof) ADVANCE(1284); - ADVANCE_MAP( - '\n', 1795, - '!', 813, - '"', 2554, - '#', 4941, - '$', 1845, - '\'', 791, - '(', 1839, - ')', 1840, - '*', 2084, - '+', 2154, - '-', 1892, - '.', 2481, - '/', 2120, - '0', 2458, - ';', 1328, - '<', 2213, - '=', 815, - '>', 1874, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1350, - '`', 834, - 'a', 1438, - 'b', 1429, - 'c', 1465, - 'd', 1379, - 'e', 1460, - 'f', 1357, - 'h', 1424, - 'i', 1349, - 'l', 1381, - 'm', 1361, - 'n', 1476, - 'o', 1487, - 'r', 1382, - 's', 1467, - 't', 1483, - 'u', 1508, - 'w', 1414, - 'x', 1478, - '{', 2000, - '}', 2001, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1071); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); - END_STATE(); - case 1072: - if (eof) ADVANCE(1284); - ADVANCE_MAP( - '\n', 1795, - '!', 813, - '"', 2554, - '#', 4941, - '$', 1845, - '\'', 791, - '(', 1839, - ')', 1840, - '*', 2084, - '+', 2154, - '-', 1892, - '.', 2481, - '/', 2120, - '0', 2458, - ';', 1328, - '<', 2213, - '=', 815, - '>', 1874, + '>', 1841, 'I', 995, 'N', 986, - '[', 2535, + '[', 2497, '_', 833, '`', 834, 'a', 906, @@ -44750,38 +43403,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 's', 950, 't', 936, 'x', 913, - '{', 2000, - '|', 1841, - '}', 2001, + '{', 1967, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1073); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); + lookahead == ' ') SKIP(1058); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); END_STATE(); - case 1073: - if (eof) ADVANCE(1284); + case 1058: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, + '\n', 1762, '!', 813, - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '*', 2084, - '+', 2154, - '-', 1892, - '.', 2481, - '/', 2120, - '0', 2458, - ';', 1328, - '<', 2213, + '(', 1806, + ')', 1807, + '*', 2051, + '+', 2116, + '-', 1859, + '.', 2443, + '/', 2082, + '0', 2420, + ';', 1303, + '<', 2175, '=', 815, - '>', 1874, + '>', 1841, 'I', 995, 'N', 986, - '[', 1834, + '[', 1801, '_', 833, '`', 834, 'a', 906, @@ -44795,93 +43448,93 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 's', 950, 't', 936, 'x', 913, - '{', 2000, - '|', 1841, - '}', 2001, + '{', 1967, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1073); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); + lookahead == ' ') SKIP(1058); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); END_STATE(); - case 1074: - if (eof) ADVANCE(1284); + case 1059: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, + '\n', 1762, '!', 813, - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '*', 2084, - '+', 2154, - '-', 1892, - '.', 2365, - '/', 2120, - '0', 2458, - ';', 1328, - '<', 2213, + '(', 1806, + ')', 1807, + '*', 2051, + '+', 2116, + '-', 1859, + '.', 2327, + '/', 2082, + '0', 2420, + ';', 1303, + '<', 2175, '=', 815, - '>', 1874, - '?', 2102, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1350, + '>', 1841, + '?', 2064, + 'I', 1523, + 'N', 1517, + '[', 1801, + '^', 3206, + '_', 1320, '`', 834, - 'a', 1438, - 'b', 1429, - 'c', 1465, - 'd', 1379, - 'e', 1460, - 'f', 1357, - 'h', 1424, - 'i', 1349, - 'l', 1381, - 'm', 1361, - 'n', 1476, - 'o', 1487, - 'r', 1382, - 's', 1467, - 't', 1483, - 'u', 1508, - 'w', 1414, - 'x', 1478, - '{', 2000, - '}', 2001, + 'a', 1407, + 'b', 1398, + 'c', 1433, + 'd', 1349, + 'e', 1428, + 'f', 1327, + 'h', 1393, + 'i', 1319, + 'l', 1351, + 'm', 1331, + 'n', 1443, + 'o', 1454, + 'r', 1352, + 's', 1435, + 't', 1450, + 'u', 1475, + 'w', 1383, + 'x', 1445, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1068); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') SKIP(1053); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); - case 1075: - if (eof) ADVANCE(1284); + case 1060: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, + '\n', 1762, '!', 813, - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '*', 2084, - '+', 2154, - '-', 1892, - '.', 2365, - '/', 2120, - '0', 2458, - ';', 1328, - '<', 2213, + '(', 1806, + ')', 1807, + '*', 2051, + '+', 2116, + '-', 1859, + '.', 2327, + '/', 2082, + '0', 2420, + ';', 1303, + '<', 2175, '=', 815, - '>', 1874, - '?', 2102, + '>', 1841, + '?', 2064, 'I', 995, 'N', 986, - '[', 1834, + '[', 1801, '_', 833, '`', 834, 'a', 906, @@ -44895,91 +43548,91 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 's', 950, 't', 936, 'x', 913, - '{', 2000, - '|', 1841, - '}', 2001, + '{', 1967, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1069); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); + lookahead == ' ') SKIP(1054); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); END_STATE(); - case 1076: - if (eof) ADVANCE(1284); + case 1061: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, + '\n', 1762, '!', 813, - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '*', 2084, - '+', 2154, - '-', 1892, - '.', 2480, - '/', 2120, - '0', 2458, - ';', 1328, - '<', 2213, + '(', 1806, + ')', 1807, + '*', 2051, + '+', 2116, + '-', 1859, + '.', 2442, + '/', 2082, + '0', 2420, + ';', 1303, + '<', 2175, '=', 815, - '>', 1874, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1350, + '>', 1841, + 'I', 1523, + 'N', 1517, + '[', 1801, + '^', 3206, + '_', 1320, '`', 834, - 'a', 1438, - 'b', 1429, - 'c', 1465, - 'd', 1379, - 'e', 1460, - 'f', 1357, - 'h', 1424, - 'i', 1349, - 'l', 1381, - 'm', 1361, - 'n', 1476, - 'o', 1487, - 'r', 1382, - 's', 1467, - 't', 1483, - 'u', 1508, - 'w', 1414, - 'x', 1478, - '{', 2000, - '}', 2001, + 'a', 1407, + 'b', 1398, + 'c', 1433, + 'd', 1349, + 'e', 1428, + 'f', 1327, + 'h', 1393, + 'i', 1319, + 'l', 1351, + 'm', 1331, + 'n', 1443, + 'o', 1454, + 'r', 1352, + 's', 1435, + 't', 1450, + 'u', 1475, + 'w', 1383, + 'x', 1445, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1071); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') SKIP(1056); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); - case 1077: - if (eof) ADVANCE(1284); + case 1062: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, + '\n', 1762, '!', 813, - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '*', 2084, - '+', 2154, - '-', 1892, - '.', 2480, - '/', 2120, - '0', 2458, - ';', 1328, - '<', 2213, + '(', 1806, + ')', 1807, + '*', 2051, + '+', 2116, + '-', 1859, + '.', 2442, + '/', 2082, + '0', 2420, + ';', 1303, + '<', 2175, '=', 815, - '>', 1874, + '>', 1841, 'I', 995, 'N', 986, - '[', 1834, + '[', 1801, '_', 833, '`', 834, 'a', 906, @@ -44993,91 +43646,91 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 's', 950, 't', 936, 'x', 913, - '{', 2000, - '|', 1841, - '}', 2001, + '{', 1967, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1073); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); + lookahead == ' ') SKIP(1058); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); END_STATE(); - case 1078: - if (eof) ADVANCE(1284); + case 1063: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, + '\n', 1762, '!', 813, - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '*', 2084, - '+', 2158, - '-', 1893, - '.', 2481, - '/', 2120, - '0', 2458, - ';', 1328, - '<', 2213, + '(', 1806, + ')', 1807, + '*', 2051, + '+', 2120, + '-', 1860, + '.', 2443, + '/', 2082, + '0', 2420, + ';', 1303, + '<', 2175, '=', 815, - '>', 1874, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1350, + '>', 1841, + 'I', 1523, + 'N', 1517, + '[', 1801, + '^', 3206, + '_', 1320, '`', 834, - 'a', 1438, - 'b', 1429, - 'c', 1465, - 'd', 1379, - 'e', 1460, - 'f', 1357, - 'h', 1424, - 'i', 1349, - 'l', 1381, - 'm', 1361, - 'n', 1476, - 'o', 1487, - 'r', 1382, - 's', 1467, - 't', 1483, - 'u', 1508, - 'w', 1414, - 'x', 1478, - '{', 2000, - '}', 2001, + 'a', 1407, + 'b', 1398, + 'c', 1433, + 'd', 1349, + 'e', 1428, + 'f', 1327, + 'h', 1393, + 'i', 1319, + 'l', 1351, + 'm', 1331, + 'n', 1443, + 'o', 1454, + 'r', 1352, + 's', 1435, + 't', 1450, + 'u', 1475, + 'w', 1383, + 'x', 1445, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1078); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') SKIP(1063); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); - case 1079: - if (eof) ADVANCE(1284); + case 1064: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, + '\n', 1762, '!', 813, - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '*', 2084, - '+', 2158, - '-', 1893, - '.', 2481, - '/', 2120, - '0', 2458, - ';', 1328, - '<', 2213, + '(', 1806, + ')', 1807, + '*', 2051, + '+', 2120, + '-', 1860, + '.', 2443, + '/', 2082, + '0', 2420, + ';', 1303, + '<', 2175, '=', 815, - '>', 1874, + '>', 1841, 'I', 995, 'N', 986, - '[', 1834, + '[', 1801, '_', 833, '`', 834, 'a', 906, @@ -45091,83 +43744,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 's', 950, 't', 936, 'x', 913, - '{', 2000, - '|', 1841, - '}', 2001, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1079); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - END_STATE(); - case 1080: - if (eof) ADVANCE(1284); - ADVANCE_MAP( - '\n', 1795, - '!', 813, - '"', 2554, - '#', 4941, - '$', 1845, - '\'', 791, - '(', 1839, - ')', 1840, - '*', 2084, - '+', 2158, - '-', 1907, - '.', 2481, - '/', 2120, - '0', 2458, - ';', 1328, - '<', 2213, - '=', 815, - '>', 1874, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1350, - '`', 834, - 'a', 1439, - 'b', 1429, - 'c', 1465, - 'd', 1379, - 'e', 1460, - 'f', 1357, - 'h', 1424, - 'i', 1349, - 'l', 1381, - 'm', 1361, - 'n', 1476, - 'o', 1487, - 'r', 1382, - 's', 1467, - 't', 1483, - 'u', 1508, - 'w', 1414, - 'x', 1478, - '{', 2000, - '}', 2001, + '{', 1967, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1080); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') SKIP(1064); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); END_STATE(); - case 1081: - if (eof) ADVANCE(1284); + case 1065: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, + '\n', 1762, '!', 813, - '#', 4941, - '$', 1844, - ')', 1840, - '*', 2084, - '+', 2158, - '-', 1894, - '/', 2120, - ';', 1328, - '<', 2213, + '#', 4896, + '$', 1811, + ')', 1807, + '*', 2051, + '+', 2120, + '-', 1861, + '/', 2082, + ';', 1303, + '<', 2175, '=', 815, - '>', 1874, + '>', 1841, 'a', 906, 'b', 884, 'e', 910, @@ -45177,28 +43777,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'o', 932, 's', 950, 'x', 913, - '|', 1841, - '}', 2001, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1081); + lookahead == ' ') SKIP(1065); END_STATE(); - case 1082: - if (eof) ADVANCE(1284); + case 1066: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, + '\n', 1762, '!', 813, - '#', 4941, - '$', 1844, - ')', 1840, - '*', 2084, - '+', 2158, - '-', 1908, - '/', 2120, - ';', 1328, - '<', 2213, + '#', 4896, + '$', 1811, + ')', 1807, + '*', 2051, + '+', 2120, + '-', 1875, + '/', 2082, + ';', 1303, + '<', 2175, '=', 815, - '>', 1874, + '>', 1841, 'a', 906, 'b', 884, 'e', 910, @@ -45208,42 +43808,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'o', 932, 's', 950, 'x', 913, - '|', 1841, - '}', 2001, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1082); + lookahead == ' ') SKIP(1066); END_STATE(); - case 1083: - if (eof) ADVANCE(1284); + case 1067: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, + '\n', 1762, '!', 813, - '#', 4941, - '(', 2360, - ')', 1840, - '*', 2084, - '+', 2152, - '-', 1889, - '.', 2364, - '/', 2120, - ':', 1830, - ';', 1328, - '<', 2213, + '#', 4896, + '(', 2322, + ')', 1807, + '*', 2051, + '+', 2114, + '-', 1856, + '.', 2326, + '/', 2082, + ':', 1797, + ';', 1303, + '<', 2175, '=', 815, - '>', 1874, - '?', 2102, - 'B', 2507, + '>', 1841, + '?', 2064, + 'B', 2469, 'E', 819, 'G', 821, 'K', 821, 'M', 821, 'P', 821, 'T', 821, - '[', 2535, + '[', 2497, '_', 832, 'a', 906, - 'b', 2508, + 'b', 2470, 'd', 835, 'e', 818, 'g', 820, @@ -45259,32 +43859,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'u', 941, 'w', 892, 'x', 913, - '|', 1841, - '}', 2001, + '|', 1808, + '}', 1968, 0xb5, 941, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1093); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + lookahead == ' ') SKIP(1077); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); END_STATE(); - case 1084: - if (eof) ADVANCE(1284); + case 1068: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, + '\n', 1762, '!', 813, - '#', 4941, - ')', 1840, - '*', 2085, - '+', 2151, - '-', 1911, - '.', 2364, - '/', 2121, - ':', 1830, - ';', 1328, - '<', 2213, - '=', 1302, - '>', 1874, - '?', 2102, + '#', 4896, + ')', 1807, + '*', 2052, + '+', 2113, + '-', 1878, + '.', 2326, + '/', 2083, + ':', 1797, + ';', 1303, + '<', 2175, + '=', 1272, + '>', 1841, + '?', 2064, 'a', 906, 'b', 884, 'e', 910, @@ -45294,29 +43894,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'o', 932, 's', 950, 'x', 913, - '|', 1841, - '}', 2001, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1085); + lookahead == ' ') SKIP(1069); END_STATE(); - case 1085: - if (eof) ADVANCE(1284); + case 1069: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, + '\n', 1762, '!', 813, - '#', 4941, - ')', 1840, - '*', 2085, - '+', 2151, - '-', 1911, - '/', 2121, - ':', 1830, - ';', 1328, - '<', 2213, - '=', 1302, - '>', 1874, - '?', 2102, + '#', 4896, + ')', 1807, + '*', 2052, + '+', 2113, + '-', 1878, + '/', 2083, + ':', 1797, + ';', 1303, + '<', 2175, + '=', 1272, + '>', 1841, + '?', 2064, 'a', 906, 'b', 884, 'e', 910, @@ -45326,29 +43926,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'o', 932, 's', 950, 'x', 913, - '|', 1841, - '}', 2001, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1085); + lookahead == ' ') SKIP(1069); END_STATE(); - case 1086: - if (eof) ADVANCE(1284); + case 1070: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, + '\n', 1762, '!', 813, - '#', 4941, - ')', 1840, - '*', 2084, - '+', 2152, - '-', 1890, - '.', 2364, - '/', 2120, - ';', 1328, - '<', 2213, + '#', 4896, + ')', 1807, + '*', 2051, + '+', 2114, + '-', 1857, + '.', 2326, + '/', 2082, + ';', 1303, + '<', 2175, '=', 815, - '>', 1874, - '?', 2102, + '>', 1841, + '?', 2064, 'a', 906, 'b', 884, 'e', 910, @@ -45358,29 +43958,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'o', 932, 's', 950, 'x', 913, - '|', 1841, - '}', 2001, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1088); + lookahead == ' ') SKIP(1072); END_STATE(); - case 1087: - if (eof) ADVANCE(1284); + case 1071: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, + '\n', 1762, '!', 813, - '#', 4941, - ')', 1840, - '*', 2084, - '+', 2152, - '-', 1890, - '.', 2363, - '/', 2120, - ';', 1328, - '<', 2213, + '#', 4896, + ')', 1807, + '*', 2051, + '+', 2114, + '-', 1857, + '.', 2325, + '/', 2082, + ';', 1303, + '<', 2175, '=', 815, - '>', 1874, - '?', 2102, + '>', 1841, + '?', 2064, 'E', 829, 'a', 906, 'b', 884, @@ -45391,28 +43991,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'o', 932, 's', 950, 'x', 913, - '|', 1841, - '}', 2001, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1088); + lookahead == ' ') SKIP(1072); END_STATE(); - case 1088: - if (eof) ADVANCE(1284); + case 1072: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, + '\n', 1762, '!', 813, - '#', 4941, - ')', 1840, - '*', 2084, - '+', 2152, - '-', 1890, - '/', 2120, - ';', 1328, - '<', 2213, + '#', 4896, + ')', 1807, + '*', 2051, + '+', 2114, + '-', 1857, + '/', 2082, + ';', 1303, + '<', 2175, '=', 815, - '>', 1874, - '?', 2102, + '>', 1841, + '?', 2064, 'a', 906, 'b', 884, 'e', 910, @@ -45422,27 +44022,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'o', 932, 's', 950, 'x', 913, - '|', 1841, - '}', 2001, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1088); + lookahead == ' ') SKIP(1072); END_STATE(); - case 1089: - if (eof) ADVANCE(1284); + case 1073: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, + '\n', 1762, '!', 813, - '#', 4941, - ')', 1840, - '*', 2084, - '+', 2152, - '-', 1890, - '/', 2120, - ';', 1328, - '<', 2213, + '#', 4896, + ')', 1807, + '*', 2051, + '+', 2114, + '-', 1857, + '/', 2082, + ';', 1303, + '<', 2175, '=', 815, - '>', 1874, + '>', 1841, 'a', 906, 'b', 884, 'e', 910, @@ -45452,30 +44052,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'o', 932, 's', 950, 'x', 913, - '|', 1841, - '}', 2001, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1089); + lookahead == ' ') SKIP(1073); END_STATE(); - case 1090: - if (eof) ADVANCE(1284); + case 1074: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, + '\n', 1762, '!', 813, - '#', 4941, - ')', 1840, - '*', 2084, - '+', 2152, - '-', 1889, - '.', 2364, - '/', 2120, - ':', 1830, - ';', 1328, - '<', 2213, + '#', 4896, + ')', 1807, + '*', 2051, + '+', 2114, + '-', 1856, + '.', 2326, + '/', 2082, + ':', 1797, + ';', 1303, + '<', 2175, '=', 815, - '>', 1874, - '?', 2102, + '>', 1841, + '?', 2064, 'a', 906, 'b', 884, 'e', 910, @@ -45485,31 +44085,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'o', 932, 's', 950, 'x', 913, - '|', 1841, - '}', 2001, - '\t', 3249, - ' ', 3249, + '|', 1808, + '}', 1968, + '\t', 3209, + ' ', 3209, ); - if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1093); + if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1077); END_STATE(); - case 1091: - if (eof) ADVANCE(1284); + case 1075: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, + '\n', 1762, '!', 813, - '#', 4941, - ')', 1840, - '*', 2084, - '+', 2152, - '-', 1889, - '.', 2363, - '/', 2120, - ':', 1830, - ';', 1328, - '<', 2213, + '#', 4896, + ')', 1807, + '*', 2051, + '+', 2114, + '-', 1856, + '.', 2325, + '/', 2082, + ':', 1797, + ';', 1303, + '<', 2175, '=', 815, - '>', 1874, - '?', 2102, + '>', 1841, + '?', 2064, 'a', 906, 'b', 884, 'e', 910, @@ -45519,29 +44119,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'o', 932, 's', 950, 'x', 913, - '|', 1841, - '}', 2001, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1093); + lookahead == ' ') SKIP(1077); END_STATE(); - case 1092: - if (eof) ADVANCE(1284); + case 1076: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, + '\n', 1762, '!', 813, - '#', 4941, - ')', 1840, - '*', 2084, - '+', 2152, - '-', 1889, - '.', 2363, - '/', 2120, - ';', 1328, - '<', 2213, + '#', 4896, + ')', 1807, + '*', 2051, + '+', 2114, + '-', 1856, + '.', 2325, + '/', 2082, + ';', 1303, + '<', 2175, '=', 815, - '>', 1874, - '?', 2102, + '>', 1841, + '?', 2064, 'E', 829, 'a', 906, 'b', 884, @@ -45552,30 +44152,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'o', 932, 's', 950, 'x', 913, - '|', 1841, - '}', 2001, - '\t', 3249, - ' ', 3249, + '|', 1808, + '}', 1968, + '\t', 3209, + ' ', 3209, ); - if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1094); + if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1078); END_STATE(); - case 1093: - if (eof) ADVANCE(1284); + case 1077: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, + '\n', 1762, '!', 813, - '#', 4941, - ')', 1840, - '*', 2084, - '+', 2152, - '-', 1889, - '/', 2120, - ':', 1830, - ';', 1328, - '<', 2213, + '#', 4896, + ')', 1807, + '*', 2051, + '+', 2114, + '-', 1856, + '/', 2082, + ':', 1797, + ';', 1303, + '<', 2175, '=', 815, - '>', 1874, - '?', 2102, + '>', 1841, + '?', 2064, 'a', 906, 'b', 884, 'e', 910, @@ -45585,28 +44185,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'o', 932, 's', 950, 'x', 913, - '|', 1841, - '}', 2001, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1093); + lookahead == ' ') SKIP(1077); END_STATE(); - case 1094: - if (eof) ADVANCE(1284); + case 1078: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, + '\n', 1762, '!', 813, - '#', 4941, - ')', 1840, - '*', 2084, - '+', 2152, - '-', 1889, - '/', 2120, - ';', 1328, - '<', 2213, + '#', 4896, + ')', 1807, + '*', 2051, + '+', 2114, + '-', 1856, + '/', 2082, + ';', 1303, + '<', 2175, '=', 815, - '>', 1874, - '?', 2102, + '>', 1841, + '?', 2064, 'a', 906, 'b', 884, 'e', 910, @@ -45616,27 +44216,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'o', 932, 's', 950, 'x', 913, - '|', 1841, - '}', 2001, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1094); + lookahead == ' ') SKIP(1078); END_STATE(); - case 1095: - if (eof) ADVANCE(1284); + case 1079: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, + '\n', 1762, '!', 813, - '#', 4941, - ')', 1840, - '*', 2084, - '+', 2152, - '-', 1889, - '/', 2120, - ';', 1328, - '<', 2213, + '#', 4896, + ')', 1807, + '*', 2051, + '+', 2114, + '-', 1856, + '/', 2082, + ';', 1303, + '<', 2175, '=', 815, - '>', 1874, + '>', 1841, 'a', 906, 'b', 884, 'e', 910, @@ -45646,27 +44246,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'o', 932, 's', 950, 'x', 913, - '|', 1841, - '}', 2001, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1095); + lookahead == ' ') SKIP(1079); END_STATE(); - case 1096: - if (eof) ADVANCE(1284); + case 1080: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, + '\n', 1762, '!', 813, - '#', 4941, - ')', 1840, - '*', 2084, - '+', 2158, - '-', 1894, - '/', 2120, - ';', 1328, - '<', 2213, + '#', 4896, + ')', 1807, + '*', 2051, + '+', 2120, + '-', 1861, + '/', 2082, + ';', 1303, + '<', 2175, '=', 815, - '>', 1874, + '>', 1841, 'a', 906, 'b', 884, 'e', 910, @@ -45676,27 +44276,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'o', 932, 's', 950, 'x', 913, - '|', 1841, - '}', 2001, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1096); + lookahead == ' ') SKIP(1080); END_STATE(); - case 1097: - if (eof) ADVANCE(1284); + case 1081: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, + '\n', 1762, '!', 813, - '#', 4941, - ')', 1840, - '*', 2084, - '+', 2158, - '-', 1908, - '/', 2120, - ';', 1328, - '<', 2213, + '#', 4896, + ')', 1807, + '*', 2051, + '+', 2120, + '-', 1875, + '/', 2082, + ';', 1303, + '<', 2175, '=', 815, - '>', 1874, + '>', 1841, 'a', 906, 'b', 884, 'e', 910, @@ -45706,2799 +44306,2494 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'o', 932, 's', 950, 'x', 913, - '|', 1841, - '}', 2001, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1097); + lookahead == ' ') SKIP(1081); END_STATE(); - case 1098: - if (eof) ADVANCE(1284); + case 1082: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '!', 3575, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '!', 3534, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '*', 2084, - '+', 2158, - '-', 1893, - '.', 2365, - '/', 2120, - '0', 2393, - ';', 1328, - '<', 2213, - '=', 3816, - '>', 1874, - 'I', 3671, - 'N', 3667, - '[', 1834, - '^', 3246, - '_', 3580, + '(', 1806, + ')', 1807, + '*', 2051, + '+', 2120, + '-', 1860, + '.', 2327, + '/', 2082, + '0', 2355, + ';', 1303, + '<', 2175, + '=', 3773, + '>', 1841, + 'I', 3629, + 'N', 3625, + '[', 1801, + '^', 3206, + '_', 3539, '`', 834, - 'a', 3608, - 'b', 3606, - 'c', 3625, - 'd', 3592, - 'e', 3623, - 'f', 3588, - 'h', 3601, - 'i', 3576, - 'l', 3594, - 'm', 3590, - 'n', 3644, - 'o', 3649, - 'r', 3595, - 's', 3626, - 't', 3648, - 'u', 3659, - 'w', 3599, - 'x', 3645, - '{', 2000, - '}', 2001, + 'a', 3567, + 'b', 3565, + 'c', 3583, + 'd', 3551, + 'e', 3581, + 'f', 3547, + 'h', 3560, + 'i', 3535, + 'l', 3553, + 'm', 3549, + 'n', 3602, + 'o', 3607, + 'r', 3554, + 's', 3584, + 't', 3606, + 'u', 3617, + 'w', 3558, + 'x', 3603, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1078); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3676); + lookahead == ' ') SKIP(1063); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3634); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3566); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3525); END_STATE(); - case 1099: - if (eof) ADVANCE(1284); + case 1083: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '!', 3575, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '!', 3534, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '*', 2084, - '+', 2158, - '-', 1893, - '.', 2365, - '/', 2120, - '0', 2393, - ';', 1328, - '<', 2213, - '=', 3816, - '>', 1874, - 'I', 3674, - 'N', 3670, - '[', 1834, - '_', 3582, + '(', 1806, + ')', 1807, + '*', 2051, + '+', 2120, + '-', 1860, + '.', 2327, + '/', 2082, + '0', 2355, + ';', 1303, + '<', 2175, + '=', 3773, + '>', 1841, + 'I', 3632, + 'N', 3628, + '[', 1801, + '_', 3541, '`', 834, - 'a', 3615, - 'b', 3602, - 'e', 3620, - 'f', 3587, - 'i', 3579, - 'm', 3633, - 'n', 3629, - 'o', 3653, - 's', 3660, - 't', 3654, - 'x', 3628, - '{', 2000, - '|', 1841, - '}', 2001, + 'a', 3573, + 'b', 3561, + 'e', 3578, + 'f', 3546, + 'i', 3538, + 'm', 3591, + 'n', 3587, + 'o', 3611, + 's', 3618, + 't', 3612, + 'x', 3586, + '{', 1967, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1079); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); + lookahead == ' ') SKIP(1064); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); if (lookahead != 0 && - lookahead != ']') ADVANCE(3566); + lookahead != ']') ADVANCE(3525); END_STATE(); - case 1100: - if (eof) ADVANCE(1284); + case 1084: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '!', 3575, - '"', 2554, - '#', 4941, - '$', 1845, - '\'', 791, - '(', 1839, - ')', 1840, - '*', 2084, - '+', 2158, - '-', 1907, - '.', 2365, - '/', 2120, - '0', 2393, - ';', 1328, - '<', 2213, - '=', 3816, - '>', 1874, - 'I', 3671, - 'N', 3667, - '[', 1834, - '^', 3246, - '_', 3580, - '`', 834, - 'a', 3609, - 'b', 3606, - 'c', 3625, - 'd', 3592, - 'e', 3623, - 'f', 3588, - 'h', 3601, - 'i', 3576, - 'l', 3594, - 'm', 3590, - 'n', 3644, - 'o', 3649, - 'r', 3595, - 's', 3626, - 't', 3648, - 'u', 3659, - 'w', 3599, - 'x', 3645, - '{', 2000, - '}', 2001, + '\n', 1762, + '!', 3534, + '#', 4896, + ')', 1807, + '*', 2051, + '+', 2120, + '-', 1861, + '.', 2325, + '/', 2082, + ';', 1303, + '<', 2175, + '=', 3773, + '>', 1841, + '_', 3541, + 'a', 3573, + 'b', 3561, + 'e', 3578, + 'i', 3574, + 'm', 3591, + 'n', 3605, + 'o', 3611, + 's', 3618, + 'x', 3586, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(1080); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3676); - if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3566); - END_STATE(); - case 1101: - if (eof) ADVANCE(1284); - ADVANCE_MAP( - '\n', 1795, - '!', 3575, - '#', 4941, - ')', 1840, - '*', 2084, - '+', 2158, - '-', 1894, - '.', 2363, - '/', 2120, - ';', 1328, - '<', 2213, - '=', 3816, - '>', 1874, - '_', 3582, - 'a', 3615, - 'b', 3602, - 'e', 3620, - 'i', 3616, - 'm', 3633, - 'n', 3647, - 'o', 3653, - 's', 3660, - 'x', 3628, - '|', 1841, - '}', 2001, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1096); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); if (lookahead != 0 && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && (lookahead < '_' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3566); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3525); END_STATE(); - case 1102: - if (eof) ADVANCE(1284); + case 1085: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '!', 3575, - '#', 4941, - ')', 1840, - '*', 2084, - '+', 2158, - '-', 1908, - '.', 2363, - '/', 2120, - ';', 1328, - '<', 2213, - '=', 3816, - '>', 1874, - '_', 3582, - 'a', 3615, - 'b', 3602, - 'e', 3620, - 'i', 3616, - 'm', 3633, - 'n', 3647, - 'o', 3653, - 's', 3660, - 'x', 3628, - '|', 1841, - '}', 2001, - '\t', 3249, - ' ', 3249, + '\n', 1762, + '!', 3534, + '#', 4896, + ')', 1807, + '*', 2051, + '+', 2120, + '-', 1875, + '.', 2325, + '/', 2082, + ';', 1303, + '<', 2175, + '=', 3773, + '>', 1841, + '_', 3541, + 'a', 3573, + 'b', 3561, + 'e', 3578, + 'i', 3574, + 'm', 3591, + 'n', 3605, + 'o', 3611, + 's', 3618, + 'x', 3586, + '|', 1808, + '}', 1968, + '\t', 3209, + ' ', 3209, ); - if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1097); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1081); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); if (lookahead != 0 && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && (lookahead < '_' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3566); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3525); END_STATE(); - case 1103: - if (eof) ADVANCE(1284); + case 1086: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '!', 3575, - '#', 4941, - ')', 1840, - '*', 2084, - '+', 2158, - '-', 1908, - '.', 2363, - '/', 2120, - ';', 1328, - '<', 2213, - '=', 3816, - '>', 1874, - '_', 3582, - 'a', 3615, - 'b', 3602, - 'e', 3620, - 'i', 3616, - 'm', 3633, - 'n', 3647, - 'o', 3653, - 's', 3660, - 'x', 3628, - '|', 1841, - '}', 2001, + '\n', 1762, + '!', 3534, + '#', 4896, + ')', 1807, + '*', 2051, + '+', 2120, + '-', 1875, + '.', 2325, + '/', 2082, + ';', 1303, + '<', 2175, + '=', 3773, + '>', 1841, + '_', 3541, + 'a', 3573, + 'b', 3561, + 'e', 3578, + 'i', 3574, + 'm', 3591, + 'n', 3605, + 'o', 3611, + 's', 3618, + 'x', 3586, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1097); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + lookahead == ' ') SKIP(1081); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); if (lookahead != 0 && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && (lookahead < '_' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3566); - END_STATE(); - case 1104: - if (eof) ADVANCE(1284); - ADVANCE_MAP( - '\n', 1795, - '!', 3686, - '"', 2554, - '#', 4941, - '$', 1845, - '\'', 791, - '(', 1839, - ')', 1840, - '*', 2084, - '+', 2158, - '-', 1893, - '.', 2365, - '/', 2120, - '0', 2393, - ';', 1328, - '<', 2213, - '=', 3688, - '>', 1874, - 'I', 3785, - 'N', 3781, - '[', 1834, - '^', 3246, - '_', 3694, - '`', 834, - 'a', 3722, - 'b', 3720, - 'c', 3739, - 'd', 3706, - 'e', 3737, - 'f', 3702, - 'h', 3715, - 'i', 3690, - 'l', 3708, - 'm', 3704, - 'n', 3758, - 'o', 3763, - 'r', 3709, - 's', 3740, - 't', 3762, - 'u', 3773, - 'w', 3713, - 'x', 3759, - '{', 2000, - '}', 2001, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1078); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3790); - if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3677); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3525); END_STATE(); - case 1105: - if (eof) ADVANCE(1284); + case 1087: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '!', 3686, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '!', 3644, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '*', 2084, - '+', 2158, - '-', 1893, - '.', 2365, - '/', 2120, - '0', 2393, - ';', 1328, - '<', 2213, - '=', 3688, - '>', 1874, - 'I', 3788, - 'N', 3784, - '[', 1834, - '_', 3696, + '(', 1806, + ')', 1807, + '*', 2051, + '+', 2120, + '-', 1860, + '.', 2327, + '/', 2082, + '0', 2355, + ';', 1303, + '<', 2175, + '=', 3646, + '>', 1841, + 'I', 3742, + 'N', 3738, + '[', 1801, + '^', 3206, + '_', 3652, '`', 834, - 'a', 3729, - 'b', 3716, - 'e', 3734, - 'f', 3701, - 'i', 3693, - 'm', 3747, - 'n', 3743, - 'o', 3767, - 's', 3774, - 't', 3768, - 'x', 3742, - '{', 2000, - '|', 1841, - '}', 2001, + 'a', 3680, + 'b', 3678, + 'c', 3696, + 'd', 3664, + 'e', 3694, + 'f', 3660, + 'h', 3673, + 'i', 3648, + 'l', 3666, + 'm', 3662, + 'n', 3715, + 'o', 3720, + 'r', 3667, + 's', 3697, + 't', 3719, + 'u', 3730, + 'w', 3671, + 'x', 3716, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1079); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); + lookahead == ' ') SKIP(1063); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3747); if (lookahead != 0 && - lookahead != ']') ADVANCE(3677); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3635); END_STATE(); - case 1106: - if (eof) ADVANCE(1284); + case 1088: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '!', 3686, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '!', 3644, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '*', 2084, - '+', 2158, - '-', 1907, - '.', 2365, - '/', 2120, - '0', 2393, - ';', 1328, - '<', 2213, - '=', 3688, - '>', 1874, - 'I', 3785, - 'N', 3781, - '[', 1834, - '^', 3246, - '_', 3694, + '(', 1806, + ')', 1807, + '*', 2051, + '+', 2120, + '-', 1860, + '.', 2327, + '/', 2082, + '0', 2355, + ';', 1303, + '<', 2175, + '=', 3646, + '>', 1841, + 'I', 3745, + 'N', 3741, + '[', 1801, + '_', 3654, '`', 834, - 'a', 3723, - 'b', 3720, - 'c', 3739, - 'd', 3706, - 'e', 3737, - 'f', 3702, - 'h', 3715, - 'i', 3690, - 'l', 3708, + 'a', 3686, + 'b', 3674, + 'e', 3691, + 'f', 3659, + 'i', 3651, 'm', 3704, - 'n', 3758, - 'o', 3763, - 'r', 3709, - 's', 3740, - 't', 3762, - 'u', 3773, - 'w', 3713, - 'x', 3759, - '{', 2000, - '}', 2001, + 'n', 3700, + 'o', 3724, + 's', 3731, + 't', 3725, + 'x', 3699, + '{', 1967, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1080); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3790); + lookahead == ' ') SKIP(1064); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3677); + lookahead != ']') ADVANCE(3635); END_STATE(); - case 1107: - if (eof) ADVANCE(1284); + case 1089: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '!', 3686, - '#', 4941, - '$', 1844, - '(', 2360, - ')', 1840, - '*', 2084, - '+', 2158, - '-', 1894, - '.', 2363, - '/', 2120, - ';', 1328, - '<', 2213, - '=', 3688, - '>', 1874, - '_', 3696, - 'a', 3729, - 'b', 3716, - 'e', 3734, - 'i', 3730, - 'm', 3747, - 'n', 3761, - 'o', 3767, - 's', 3774, - 'x', 3742, - '|', 1841, - '}', 2001, + '\n', 1762, + '!', 3644, + '#', 4896, + '$', 1811, + '(', 2322, + ')', 1807, + '*', 2051, + '+', 2120, + '-', 1861, + '.', 2325, + '/', 2082, + ';', 1303, + '<', 2175, + '=', 3646, + '>', 1841, + '_', 3654, + 'a', 3686, + 'b', 3674, + 'e', 3691, + 'i', 3687, + 'm', 3704, + 'n', 3718, + 'o', 3724, + 's', 3731, + 'x', 3699, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1081); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + lookahead == ' ') SKIP(1065); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && (lookahead < '_' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3677); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3635); END_STATE(); - case 1108: - if (eof) ADVANCE(1284); + case 1090: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '!', 3686, - '#', 4941, - '$', 1844, - '(', 2360, - ')', 1840, - '*', 2084, - '+', 2158, - '-', 1908, - '.', 2363, - '/', 2120, - ';', 1328, - '<', 2213, - '=', 3688, - '>', 1874, - '_', 3696, - 'a', 3729, - 'b', 3716, - 'e', 3734, - 'i', 3730, - 'm', 3747, - 'n', 3761, - 'o', 3767, - 's', 3774, - 'x', 3742, - '|', 1841, - '}', 2001, - '\t', 3249, - ' ', 3249, + '\n', 1762, + '!', 3644, + '#', 4896, + '$', 1811, + '(', 2322, + ')', 1807, + '*', 2051, + '+', 2120, + '-', 1875, + '.', 2325, + '/', 2082, + ';', 1303, + '<', 2175, + '=', 3646, + '>', 1841, + '_', 3654, + 'a', 3686, + 'b', 3674, + 'e', 3691, + 'i', 3687, + 'm', 3704, + 'n', 3718, + 'o', 3724, + 's', 3731, + 'x', 3699, + '|', 1808, + '}', 1968, + '\t', 3209, + ' ', 3209, ); - if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1082); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1066); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && (lookahead < '_' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3677); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3635); END_STATE(); - case 1109: - if (eof) ADVANCE(1284); + case 1091: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '!', 3686, - '#', 4941, - ')', 1840, - '*', 2084, - '+', 2158, - '-', 1908, - '.', 2363, - '/', 2120, - ';', 1328, - '<', 2213, - '=', 3688, - '>', 1874, - '_', 3696, - 'a', 3729, - 'b', 3716, - 'e', 3734, - 'i', 3730, - 'm', 3747, - 'n', 3761, - 'o', 3767, - 's', 3774, - 'x', 3742, - '|', 1841, - '}', 2001, + '\n', 1762, + '!', 3644, + '#', 4896, + ')', 1807, + '*', 2051, + '+', 2120, + '-', 1875, + '.', 2325, + '/', 2082, + ';', 1303, + '<', 2175, + '=', 3646, + '>', 1841, + '_', 3654, + 'a', 3686, + 'b', 3674, + 'e', 3691, + 'i', 3687, + 'm', 3704, + 'n', 3718, + 'o', 3724, + 's', 3731, + 'x', 3699, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1097); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + lookahead == ' ') SKIP(1081); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && (lookahead < '_' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3677); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3635); END_STATE(); - case 1110: - if (eof) ADVANCE(1284); + case 1092: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '!', 4160, - '"', 2554, - '#', 4952, - '$', 1847, + '\n', 1762, + '!', 4114, + '"', 2516, + '#', 4906, + '$', 1813, '\'', 791, - '(', 1839, - ')', 1840, - '*', 2089, - '+', 2165, - '-', 1910, - '.', 2484, - '/', 2124, - '0', 4176, - ';', 1328, - '<', 2216, - '=', 4162, - '>', 1877, - 'I', 4569, - 'N', 4559, - '[', 1834, - '^', 3248, - '_', 4172, + '(', 1806, + ')', 1807, + '*', 2053, + '+', 2123, + '-', 1862, + '.', 2444, + '/', 2084, + '0', 4132, + ';', 1303, + '<', 2176, + '=', 4116, + '>', 1842, + 'I', 4524, + 'N', 4514, + '[', 1801, + '^', 3207, + '_', 4128, '`', 834, - 'a', 4321, - 'b', 4289, - 'c', 4367, - 'd', 4224, - 'e', 4352, - 'f', 4181, - 'h', 4298, - 'i', 4168, - 'l', 4248, - 'm', 4192, - 'n', 4385, - 'o', 4419, - 'r', 4225, - 's', 4368, - 't', 4402, - 'u', 4454, - 'w', 4275, - 'x', 4383, - '{', 2000, - '}', 2001, + 'a', 4276, + 'b', 4245, + 'c', 4322, + 'd', 4180, + 'e', 4307, + 'f', 4137, + 'h', 4254, + 'i', 4124, + 'l', 4204, + 'm', 4148, + 'n', 4340, + 'o', 4357, + 'r', 4181, + 's', 4323, + 't', 4359, + 'u', 4409, + 'w', 4231, + 'x', 4338, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1059); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4179); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4596); + lookahead == ' ') SKIP(1056); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4135); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4551); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(4597); + (lookahead < ']' || '{' < lookahead)) ADVANCE(4552); END_STATE(); - case 1111: - if (eof) ADVANCE(1284); + case 1093: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '!', 4160, - '"', 2554, - '#', 4952, - '$', 1847, + '\n', 1762, + '!', 4114, + '"', 2516, + '#', 4906, + '$', 1813, '\'', 791, - '(', 1839, - ')', 1840, - '*', 2089, - '+', 2165, - '-', 1898, - '.', 2484, - '/', 2124, - '0', 4176, - ';', 1328, - '<', 2216, - '=', 4162, - '>', 1877, - 'I', 4569, - 'N', 4559, - '[', 1834, - '^', 3248, - '_', 4172, + '(', 1806, + ')', 1807, + '*', 2053, + '+', 2123, + '-', 1862, + '.', 2444, + '/', 2084, + '0', 4132, + ';', 1303, + '<', 2176, + '=', 4116, + '>', 1842, + 'I', 4525, + 'N', 4515, + '[', 1801, + '_', 4136, '`', 834, - 'a', 4320, - 'b', 4289, - 'c', 4367, - 'd', 4224, - 'e', 4352, - 'f', 4181, - 'h', 4298, - 'i', 4168, - 'l', 4248, - 'm', 4192, - 'n', 4385, - 'o', 4419, - 'r', 4225, - 's', 4368, - 't', 4402, - 'u', 4454, - 'w', 4275, - 'x', 4383, - '{', 2000, - '}', 2001, + 'a', 4301, + 'b', 4252, + 'e', 4313, + 'f', 4142, + 'i', 4125, + 'm', 4335, + 'n', 4345, + 'o', 4374, + 's', 4445, + 't', 4375, + 'x', 4334, + '{', 1967, + '|', 1809, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1071); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4179); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4596); + lookahead == ' ') SKIP(1058); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4135); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(4597); + lookahead != ']') ADVANCE(4552); END_STATE(); - case 1112: - if (eof) ADVANCE(1284); + case 1094: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '!', 4160, - '"', 2554, - '#', 4952, - '$', 1847, - '\'', 791, - '(', 1839, - ')', 1840, - '*', 2089, - '+', 2165, - '-', 1898, - '.', 2484, - '/', 2124, - '0', 4176, - ';', 1328, - '<', 2216, - '=', 4162, - '>', 1877, - 'I', 4570, - 'N', 4560, - '[', 1834, - '_', 4180, - '`', 834, - 'a', 4343, - 'b', 4296, - 'e', 4358, - 'f', 4186, - 'i', 4169, - 'm', 4380, - 'n', 4390, - 'o', 4411, - 's', 4490, - 't', 4412, - 'x', 4379, - '{', 2000, - '|', 1843, - '}', 2001, + '\n', 1762, + '!', 4114, + '#', 4906, + ')', 1807, + '*', 2053, + '+', 2124, + '-', 1863, + '/', 2084, + ';', 1303, + '<', 2176, + '=', 4116, + '>', 1842, + 'a', 4301, + 'b', 4252, + 'e', 4313, + 'i', 4305, + 'm', 4335, + 'n', 4333, + 'o', 4374, + 's', 4445, + 'x', 4334, + '|', 1809, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(1073); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4179); - if (lookahead != 0 && - lookahead != ']') ADVANCE(4597); - END_STATE(); - case 1113: - if (eof) ADVANCE(1284); - ADVANCE_MAP( - '\n', 1795, - '!', 4160, - '#', 4952, - ')', 1840, - '*', 2089, - '+', 2166, - '-', 1899, - '/', 2124, - ';', 1328, - '<', 2216, - '=', 4162, - '>', 1877, - 'a', 4343, - 'b', 4296, - 'e', 4358, - 'i', 4347, - 'm', 4380, - 'n', 4378, - 'o', 4411, - 's', 4490, - 'x', 4379, - '|', 1843, - '}', 2001, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1089); if (lookahead != 0 && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && (lookahead < '`' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4597); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4552); END_STATE(); - case 1114: - if (eof) ADVANCE(1284); + case 1095: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '!', 4160, - '#', 4952, - ')', 1840, - '*', 2089, - '+', 2166, - '-', 1913, - '/', 2124, - ';', 1328, - '<', 2216, - '=', 4162, - '>', 1877, - 'a', 4343, - 'b', 4296, - 'e', 4358, - 'i', 4347, - 'm', 4380, - 'n', 4378, - 'o', 4411, - 's', 4490, - 'x', 4379, - '|', 1843, - '}', 2001, - '\t', 3249, - ' ', 3249, + '\n', 1762, + '!', 4114, + '#', 4906, + ')', 1807, + '*', 2053, + '+', 2124, + '-', 1879, + '/', 2084, + ';', 1303, + '<', 2176, + '=', 4116, + '>', 1842, + 'a', 4301, + 'b', 4252, + 'e', 4313, + 'i', 4305, + 'm', 4335, + 'n', 4333, + 'o', 4374, + 's', 4445, + 'x', 4334, + '|', 1809, + '}', 1968, + '\t', 3209, + ' ', 3209, ); - if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1095); + if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1079); if (lookahead != 0 && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && (lookahead < '`' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4597); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4552); END_STATE(); - case 1115: - if (eof) ADVANCE(1284); + case 1096: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '!', 4160, - '#', 4952, - ')', 1840, - '*', 2089, - '+', 2166, - '-', 1913, - '/', 2124, - ';', 1328, - '<', 2216, - '=', 4162, - '>', 1877, - 'a', 4343, - 'b', 4296, - 'e', 4358, - 'i', 4347, - 'm', 4380, - 'n', 4378, - 'o', 4411, - 's', 4490, - 'x', 4379, - '|', 1843, - '}', 2001, + '\n', 1762, + '!', 4114, + '#', 4906, + ')', 1807, + '*', 2053, + '+', 2124, + '-', 1879, + '/', 2084, + ';', 1303, + '<', 2176, + '=', 4116, + '>', 1842, + 'a', 4301, + 'b', 4252, + 'e', 4313, + 'i', 4305, + 'm', 4335, + 'n', 4333, + 'o', 4374, + 's', 4445, + 'x', 4334, + '|', 1809, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1095); + lookahead == ' ') SKIP(1079); if (lookahead != 0 && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && (lookahead < '`' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4597); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4552); END_STATE(); - case 1116: - if (eof) ADVANCE(1284); + case 1097: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 2360, - ')', 1840, + '(', 2322, + ')', 1807, '+', 805, - '-', 1892, - '.', 2481, - '0', 2458, - ';', 1328, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1350, + '-', 1859, + '.', 2443, + '0', 2420, + ';', 1303, + 'I', 1523, + 'N', 1517, + '[', 1801, + '^', 3206, + '_', 1320, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1465, - 'd', 1379, - 'e', 1494, - 'f', 1357, - 'h', 1424, - 'i', 1410, - 'l', 1381, - 'm', 1360, - 'n', 1471, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1483, - 'u', 1508, - 'w', 1414, - '{', 2000, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1433, + 'd', 1349, + 'e', 1461, + 'f', 1327, + 'h', 1393, + 'i', 1380, + 'l', 1351, + 'm', 1330, + 'n', 1439, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1450, + 'u', 1475, + 'w', 1383, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1179); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') SKIP(1149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); - case 1117: - if (eof) ADVANCE(1284); + case 1098: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 2360, - ')', 1840, + '(', 2322, + ')', 1807, '+', 805, - '-', 1892, - '.', 2481, - '0', 2458, - ';', 1328, + '-', 1859, + '.', 2443, + '0', 2420, + ';', 1303, 'N', 986, - '[', 1834, + '[', 1801, '_', 833, '`', 834, 'f', 836, 'n', 923, 't', 936, - '{', 2000, - '|', 1841, - '}', 2001, + '{', 1967, + '|', 1808, + '}', 1968, 'I', 995, 'i', 995, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1182); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); + lookahead == ' ') SKIP(1152); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); END_STATE(); - case 1118: - if (eof) ADVANCE(1284); + case 1099: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 2360, - ')', 1840, - '+', 3574, - '-', 1893, - '.', 2365, - '0', 2393, - ';', 1328, - 'I', 3671, - 'N', 3667, - '[', 1834, - '^', 3246, - '_', 3580, + '(', 2322, + ')', 1807, + '+', 3533, + '-', 1860, + '.', 2327, + '0', 2355, + ';', 1303, + 'I', 3629, + 'N', 3625, + '[', 1801, + '^', 3206, + '_', 3539, '`', 834, - 'a', 3610, - 'b', 3656, - 'c', 3625, - 'd', 3592, - 'e', 3657, - 'f', 3588, - 'h', 3601, - 'i', 3597, - 'l', 3594, - 'm', 3589, - 'n', 3637, - 'o', 3666, - 'r', 3595, - 's', 3627, - 't', 3648, - 'u', 3659, - 'w', 3599, - '{', 2000, - '}', 2001, - '<', 3791, - '=', 3791, + 'a', 3568, + 'b', 3614, + 'c', 3583, + 'd', 3551, + 'e', 3615, + 'f', 3547, + 'h', 3560, + 'i', 3556, + 'l', 3553, + 'm', 3548, + 'n', 3595, + 'o', 3624, + 'r', 3554, + 's', 3585, + 't', 3606, + 'u', 3617, + 'w', 3558, + '{', 1967, + '}', 1968, + '<', 3748, + '=', 3748, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1202); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3676); + lookahead == ' ') SKIP(1172); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3634); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3566); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3525); END_STATE(); - case 1119: - if (eof) ADVANCE(1284); + case 1100: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 2360, - ')', 1840, - '+', 3574, - '-', 1893, - '.', 2365, - '0', 2393, - ';', 1328, - 'N', 3670, - '[', 1834, - '_', 3582, + '(', 2322, + ')', 1807, + '+', 3533, + '-', 1860, + '.', 2327, + '0', 2355, + ';', 1303, + 'N', 3628, + '[', 1801, + '_', 3541, '`', 834, - 'f', 3587, - 'n', 3643, - 't', 3654, - '{', 2000, - '|', 1841, - '}', 2001, - 'I', 3674, - 'i', 3674, - '<', 3791, - '=', 3791, + 'f', 3546, + 'n', 3601, + 't', 3612, + '{', 1967, + '|', 1808, + '}', 1968, + 'I', 3632, + 'i', 3632, + '<', 3748, + '=', 3748, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1203); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); + lookahead == ' ') SKIP(1173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); if (lookahead != 0 && - lookahead != ']') ADVANCE(3566); + lookahead != ']') ADVANCE(3525); END_STATE(); - case 1120: - if (eof) ADVANCE(1284); + case 1101: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 2360, - ')', 1840, - '+', 3450, - '-', 1893, - '.', 2365, - '0', 2393, - ';', 1328, - 'I', 3560, - 'N', 3556, - '[', 1834, - '^', 3246, - '_', 3463, + '(', 2322, + ')', 1807, + '+', 3410, + '-', 1860, + '.', 2327, + '0', 2355, + ';', 1303, + 'I', 3519, + 'N', 3515, + '[', 1801, + '^', 3206, + '_', 3423, '`', 834, - 'a', 3499, - 'b', 3545, - 'c', 3514, - 'd', 3481, - 'e', 3546, - 'f', 3477, - 'h', 3490, - 'i', 3486, - 'l', 3483, - 'm', 3478, - 'n', 3526, - 'o', 3555, - 'r', 3484, - 's', 3516, - 't', 3537, - 'u', 3548, - 'w', 3488, - '{', 2000, - '}', 2001, + 'a', 3458, + 'b', 3504, + 'c', 3473, + 'd', 3441, + 'e', 3505, + 'f', 3437, + 'h', 3450, + 'i', 3446, + 'l', 3443, + 'm', 3438, + 'n', 3485, + 'o', 3514, + 'r', 3444, + 's', 3475, + 't', 3496, + 'u', 3507, + 'w', 3448, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1202); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3565); + lookahead == ' ') SKIP(1172); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3524); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3437); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3397); END_STATE(); - case 1121: - if (eof) ADVANCE(1284); + case 1102: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 2360, - ')', 1840, - '+', 3450, - '-', 1893, - '.', 2365, - '0', 2393, - ';', 1328, - 'N', 3559, - '[', 1834, - '_', 3466, + '(', 2322, + ')', 1807, + '+', 3410, + '-', 1860, + '.', 2327, + '0', 2355, + ';', 1303, + 'N', 3518, + '[', 1801, + '_', 3426, '`', 834, - 'f', 3476, - 'n', 3532, - 't', 3543, - '{', 2000, - '|', 1841, - '}', 2001, - 'I', 3563, - 'i', 3563, + 'f', 3436, + 'n', 3491, + 't', 3502, + '{', 1967, + '|', 1808, + '}', 1968, + 'I', 3522, + 'i', 3522, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1203); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); + lookahead == ' ') SKIP(1173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); if (lookahead != 0 && - lookahead != ']') ADVANCE(3437); + lookahead != ']') ADVANCE(3397); END_STATE(); - case 1122: - if (eof) ADVANCE(1284); + case 1103: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 2360, - ')', 1840, - '+', 3685, - '-', 1893, - '.', 2365, - '0', 2393, - ';', 1328, - 'I', 3785, - 'N', 3781, - '[', 1834, - '^', 3246, - '_', 3694, + '(', 2322, + ')', 1807, + '+', 3769, + '-', 1859, + '.', 2326, + '0', 2355, + ';', 1303, + 'B', 2478, + 'E', 3765, + 'G', 3785, + 'I', 3961, + 'K', 3785, + 'M', 3785, + 'N', 3957, + 'P', 3785, + 'T', 3785, + '[', 1801, + '^', 3206, + '_', 3822, '`', 834, - 'a', 3724, - 'b', 3770, - 'c', 3739, - 'd', 3706, - 'e', 3771, - 'f', 3702, - 'h', 3715, - 'i', 3711, - 'l', 3708, - 'm', 3703, - 'n', 3751, - 'o', 3780, - 'r', 3709, - 's', 3741, - 't', 3762, - 'u', 3773, - 'w', 3713, - '{', 2000, - '}', 2001, + 'a', 3884, + 'b', 2476, + 'c', 3898, + 'd', 3846, + 'e', 3763, + 'f', 3843, + 'g', 3784, + 'h', 3872, + 'i', 3866, + 'k', 3784, + 'l', 3851, + 'm', 3776, + 'n', 3912, + 'o', 3956, + 'p', 3784, + 'r', 3852, + 's', 3863, + 't', 3781, + 'u', 3945, + 'w', 3868, + '{', 1967, + '}', 1968, + 0xb5, 3944, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1202); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3790); + lookahead == ' ') SKIP(1149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3966); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3677); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3748); END_STATE(); - case 1123: - if (eof) ADVANCE(1284); + case 1104: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 2360, - ')', 1840, - '+', 3685, - '-', 1893, - '.', 2365, - '0', 2393, - ';', 1328, - 'N', 3784, - '[', 1834, - '_', 3696, + '(', 2322, + ')', 1807, + '+', 3769, + '-', 1859, + '.', 2326, + '0', 2355, + ';', 1303, + 'E', 3801, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'N', 3960, + 'P', 3805, + 'T', 3805, + '[', 1801, + '_', 3824, '`', 834, - 'f', 3701, - 'n', 3757, - 't', 3768, - '{', 2000, - '|', 1841, - '}', 2001, - 'I', 3788, - 'i', 3788, + 'd', 3840, + 'e', 3800, + 'f', 3841, + 'g', 3804, + 'h', 3936, + 'k', 3804, + 'm', 3807, + 'n', 3921, + 'p', 3804, + 's', 3858, + 't', 3803, + 'u', 3946, + 'w', 3881, + '{', 1967, + '|', 1808, + '}', 1968, + 0xb5, 3946, + 'B', 2469, + 'b', 2469, + 'I', 3964, + 'i', 3964, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1203); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); + lookahead == ' ') SKIP(1152); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); if (lookahead != 0 && - lookahead != ']') ADVANCE(3677); + lookahead != ']') ADVANCE(3748); END_STATE(); - case 1124: - if (eof) ADVANCE(1284); + case 1105: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 2360, - ')', 1840, - '+', 3812, - '-', 1892, - '.', 2364, - '0', 2393, - ';', 1328, - 'B', 2516, - 'E', 3808, - 'G', 3828, - 'I', 4005, - 'K', 3828, - 'M', 3828, - 'N', 4001, - 'P', 3828, - 'T', 3828, - '[', 1834, - '^', 3246, - '_', 3865, + '(', 2322, + ')', 1807, + '+', 3769, + '-', 1859, + '.', 2326, + '0', 3827, + ';', 1303, + 'B', 2478, + 'E', 3765, + 'G', 3785, + 'I', 3961, + 'K', 3785, + 'M', 3785, + 'N', 3957, + 'P', 3785, + 'T', 3785, + '[', 1801, + '^', 3206, + '_', 3820, '`', 834, - 'a', 3928, - 'b', 2514, - 'c', 3942, - 'd', 3889, - 'e', 3806, - 'f', 3886, - 'g', 3827, - 'h', 3915, - 'i', 3909, - 'k', 3827, - 'l', 3894, - 'm', 3819, - 'n', 3956, - 'o', 4000, - 'p', 3827, - 'r', 3895, - 's', 3906, - 't', 3824, - 'u', 3989, - 'w', 3911, - '{', 2000, - '}', 2001, - 0xb5, 3988, + 'a', 3884, + 'b', 2476, + 'c', 3898, + 'd', 3846, + 'e', 3763, + 'f', 3843, + 'g', 3784, + 'h', 3872, + 'i', 3866, + 'k', 3784, + 'l', 3851, + 'm', 3776, + 'n', 3912, + 'o', 3956, + 'p', 3784, + 'r', 3852, + 's', 3863, + 't', 3781, + 'u', 3945, + 'w', 3868, + '{', 1967, + '}', 1968, + 0xb5, 3944, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1179); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4010); + lookahead == ' ') SKIP(1149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3831); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3966); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3791); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3748); END_STATE(); - case 1125: - if (eof) ADVANCE(1284); + case 1106: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 2360, - ')', 1840, - '+', 3812, - '-', 1892, - '.', 2364, - '0', 2393, - ';', 1328, - 'E', 3844, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'N', 4004, - 'P', 3848, - 'T', 3848, - '[', 1834, - '_', 3867, + '(', 2322, + ')', 1807, + '+', 3769, + '-', 1859, + '.', 2326, + '0', 3827, + ';', 1303, + 'B', 2478, + 'E', 3785, + 'G', 3785, + 'I', 3961, + 'K', 3785, + 'M', 3785, + 'N', 3957, + 'P', 3785, + 'T', 3785, + '[', 1801, + '^', 3206, + '_', 3820, '`', 834, - 'd', 3883, - 'e', 3843, - 'f', 3884, - 'g', 3847, - 'h', 3980, - 'k', 3847, - 'm', 3850, - 'n', 3965, - 'p', 3847, - 's', 3901, - 't', 3846, - 'u', 3990, - 'w', 3924, - '{', 2000, - '|', 1841, - '}', 2001, - 0xb5, 3990, - 'B', 2507, - 'b', 2507, - 'I', 4008, - 'i', 4008, + 'a', 3884, + 'b', 2476, + 'c', 3898, + 'd', 3846, + 'e', 3782, + 'f', 3843, + 'g', 3784, + 'h', 3872, + 'i', 3866, + 'k', 3784, + 'l', 3851, + 'm', 3776, + 'n', 3912, + 'o', 3956, + 'p', 3784, + 'r', 3852, + 's', 3863, + 't', 3781, + 'u', 3945, + 'w', 3868, + '{', 1967, + '}', 1968, + 0xb5, 3944, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1182); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); + lookahead == ' ') SKIP(1149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3831); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3966); if (lookahead != 0 && - lookahead != ']') ADVANCE(3791); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3748); END_STATE(); - case 1126: - if (eof) ADVANCE(1284); + case 1107: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 2360, - ')', 1840, - '+', 3812, - '-', 1892, - '.', 2364, - '0', 3870, - ';', 1328, - 'B', 2516, - 'E', 3808, - 'G', 3828, - 'I', 4005, - 'K', 3828, - 'M', 3828, - 'N', 4001, - 'P', 3828, - 'T', 3828, - '[', 1834, - '^', 3246, - '_', 3863, + '(', 2322, + ')', 1807, + '+', 3769, + '-', 1859, + '.', 2326, + '0', 3827, + ';', 1303, + 'E', 3801, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'N', 3960, + 'P', 3805, + 'T', 3805, + '[', 1801, + '_', 3826, '`', 834, - 'a', 3928, - 'b', 2514, - 'c', 3942, - 'd', 3889, - 'e', 3806, - 'f', 3886, - 'g', 3827, - 'h', 3915, - 'i', 3909, - 'k', 3827, - 'l', 3894, - 'm', 3819, - 'n', 3956, - 'o', 4000, - 'p', 3827, - 'r', 3895, - 's', 3906, - 't', 3824, - 'u', 3989, - 'w', 3911, - '{', 2000, - '}', 2001, - 0xb5, 3988, + 'd', 3840, + 'e', 3800, + 'f', 3841, + 'g', 3804, + 'h', 3936, + 'k', 3804, + 'm', 3807, + 'n', 3921, + 'p', 3804, + 's', 3858, + 't', 3803, + 'u', 3946, + 'w', 3881, + '{', 1967, + '|', 1808, + '}', 1968, + 0xb5, 3946, + 'B', 2469, + 'b', 2469, + 'I', 3964, + 'i', 3964, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1179); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3874); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4010); + lookahead == ' ') SKIP(1152); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3831); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3791); + lookahead != ']') ADVANCE(3748); END_STATE(); - case 1127: - if (eof) ADVANCE(1284); + case 1108: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 2360, - ')', 1840, - '+', 3812, - '-', 1892, - '.', 2364, - '0', 3870, - ';', 1328, - 'B', 2516, - 'E', 3828, - 'G', 3828, - 'I', 4005, - 'K', 3828, - 'M', 3828, - 'N', 4001, - 'P', 3828, - 'T', 3828, - '[', 1834, - '^', 3246, - '_', 3863, + '(', 2322, + ')', 1807, + '+', 3769, + '-', 1859, + '.', 2326, + '0', 3827, + ';', 1303, + 'E', 3805, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'N', 3960, + 'P', 3805, + 'T', 3805, + '[', 1801, + '_', 3826, '`', 834, - 'a', 3928, - 'b', 2514, - 'c', 3942, - 'd', 3889, - 'e', 3825, - 'f', 3886, - 'g', 3827, - 'h', 3915, - 'i', 3909, - 'k', 3827, - 'l', 3894, - 'm', 3819, - 'n', 3956, - 'o', 4000, - 'p', 3827, - 'r', 3895, - 's', 3906, - 't', 3824, - 'u', 3989, - 'w', 3911, - '{', 2000, - '}', 2001, - 0xb5, 3988, + 'd', 3840, + 'e', 3804, + 'f', 3841, + 'g', 3804, + 'h', 3936, + 'k', 3804, + 'm', 3807, + 'n', 3921, + 'p', 3804, + 's', 3858, + 't', 3803, + 'u', 3946, + 'w', 3881, + '{', 1967, + '|', 1808, + '}', 1968, + 0xb5, 3946, + 'B', 2469, + 'b', 2469, + 'I', 3964, + 'i', 3964, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1179); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3874); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4010); + lookahead == ' ') SKIP(1152); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3831); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3791); + lookahead != ']') ADVANCE(3748); END_STATE(); - case 1128: - if (eof) ADVANCE(1284); + case 1109: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 2360, - ')', 1840, - '+', 3812, - '-', 1892, - '.', 2364, - '0', 3870, - ';', 1328, - 'E', 3844, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'N', 4004, - 'P', 3848, - 'T', 3848, - '[', 1834, - '_', 3869, + '(', 2322, + ')', 1807, + '+', 3643, + '-', 1860, + '.', 2327, + '0', 2355, + ';', 1303, + 'I', 3742, + 'N', 3738, + '[', 1801, + '^', 3206, + '_', 3652, '`', 834, - 'd', 3883, - 'e', 3843, - 'f', 3884, - 'g', 3847, - 'h', 3980, - 'k', 3847, - 'm', 3850, - 'n', 3965, - 'p', 3847, - 's', 3901, - 't', 3846, - 'u', 3990, - 'w', 3924, - '{', 2000, - '|', 1841, - '}', 2001, - 0xb5, 3990, - 'B', 2507, - 'b', 2507, - 'I', 4008, - 'i', 4008, + 'a', 3681, + 'b', 3727, + 'c', 3696, + 'd', 3664, + 'e', 3728, + 'f', 3660, + 'h', 3673, + 'i', 3669, + 'l', 3666, + 'm', 3661, + 'n', 3708, + 'o', 3737, + 'r', 3667, + 's', 3698, + 't', 3719, + 'u', 3730, + 'w', 3671, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1182); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3874); + lookahead == ' ') SKIP(1172); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3747); if (lookahead != 0 && - lookahead != ']') ADVANCE(3791); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3635); END_STATE(); - case 1129: - if (eof) ADVANCE(1284); + case 1110: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 2360, - ')', 1840, - '+', 3812, - '-', 1892, - '.', 2364, - '0', 3870, - ';', 1328, - 'E', 3848, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'N', 4004, - 'P', 3848, - 'T', 3848, - '[', 1834, - '_', 3869, + '(', 2322, + ')', 1807, + '+', 3643, + '-', 1860, + '.', 2327, + '0', 2355, + ';', 1303, + 'N', 3741, + '[', 1801, + '_', 3654, '`', 834, - 'd', 3883, - 'e', 3847, - 'f', 3884, - 'g', 3847, - 'h', 3980, - 'k', 3847, - 'm', 3850, - 'n', 3965, - 'p', 3847, - 's', 3901, - 't', 3846, - 'u', 3990, - 'w', 3924, - '{', 2000, - '|', 1841, - '}', 2001, - 0xb5, 3990, - 'B', 2507, - 'b', 2507, - 'I', 4008, - 'i', 4008, + 'f', 3659, + 'n', 3714, + 't', 3725, + '{', 1967, + '|', 1808, + '}', 1968, + 'I', 3745, + 'i', 3745, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1182); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3874); + lookahead == ' ') SKIP(1173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); if (lookahead != 0 && - lookahead != ']') ADVANCE(3791); + lookahead != ']') ADVANCE(3635); END_STATE(); - case 1130: - if (eof) ADVANCE(1284); + case 1111: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 2360, - ')', 1840, + '(', 2322, + ')', 1807, '+', 809, - '-', 1893, - '.', 2365, - '0', 2393, - ';', 1328, - '=', 1301, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1352, + '-', 1860, + '.', 2327, + '0', 2355, + ';', 1303, + '=', 1271, + 'I', 1523, + 'N', 1517, + '[', 1801, + '^', 3206, + '_', 1322, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1465, - 'd', 1379, - 'e', 1494, - 'f', 1357, - 'h', 1424, - 'i', 1410, - 'l', 1381, - 'm', 1360, - 'n', 1471, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1483, - 'u', 1508, - 'w', 1414, - '{', 2000, - '|', 1841, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1433, + 'd', 1349, + 'e', 1461, + 'f', 1327, + 'h', 1393, + 'i', 1380, + 'l', 1351, + 'm', 1330, + 'n', 1439, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1450, + 'u', 1475, + 'w', 1383, + '{', 1967, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1201); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') SKIP(1171); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); - case 1131: - if (eof) ADVANCE(1284); + case 1112: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 2360, - ')', 1840, + '(', 2322, + ')', 1807, '+', 809, - '-', 1893, - '.', 2365, - '0', 2393, - ';', 1328, + '-', 1860, + '.', 2327, + '0', 2355, + ';', 1303, 'N', 986, - '[', 1834, + '[', 1801, '_', 832, '`', 834, 'f', 836, 'n', 923, 't', 936, - '{', 2000, - '|', 1841, - '}', 2001, + '{', 1967, + '|', 1808, + '}', 1968, 'I', 995, 'i', 995, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1203); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); - END_STATE(); - case 1132: - if (eof) ADVANCE(1284); - ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, - '\'', 791, - '(', 2360, - ')', 1840, - '+', 809, - '-', 1907, - '.', 2365, - '0', 2393, - ';', 1328, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1352, - '`', 834, - 'a', 1441, - 'b', 1492, - 'c', 1465, - 'd', 1379, - 'e', 1494, - 'f', 1357, - 'h', 1424, - 'i', 1410, - 'l', 1381, - 'm', 1360, - 'n', 1471, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1483, - 'u', 1508, - 'w', 1414, - '{', 2000, - '}', 2001, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1204); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') SKIP(1173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); END_STATE(); - case 1133: - if (eof) ADVANCE(1284); + case 1113: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 2360, - ')', 1840, - '+', 3449, - '-', 1892, - '.', 2364, - '0', 2393, - ';', 1328, - 'E', 3446, - 'I', 3560, - 'N', 3556, - '[', 1834, - '^', 3246, - '_', 3463, + '(', 2322, + ')', 1807, + '+', 3409, + '-', 1859, + '.', 2326, + '0', 2355, + ';', 1303, + 'E', 3406, + 'I', 3519, + 'N', 3515, + '[', 1801, + '^', 3206, + '_', 3423, '`', 834, - 'a', 3499, - 'b', 3545, - 'c', 3514, - 'd', 3481, - 'e', 3445, - 'f', 3477, - 'h', 3490, - 'i', 3486, - 'l', 3483, - 'm', 3478, - 'n', 3526, - 'o', 3555, - 'r', 3484, - 's', 3516, - 't', 3537, - 'u', 3548, - 'w', 3488, - '{', 2000, - '}', 2001, + 'a', 3458, + 'b', 3504, + 'c', 3473, + 'd', 3441, + 'e', 3405, + 'f', 3437, + 'h', 3450, + 'i', 3446, + 'l', 3443, + 'm', 3438, + 'n', 3485, + 'o', 3514, + 'r', 3444, + 's', 3475, + 't', 3496, + 'u', 3507, + 'w', 3448, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1179); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3565); + lookahead == ' ') SKIP(1149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3524); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3437); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3397); END_STATE(); - case 1134: - if (eof) ADVANCE(1284); + case 1114: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 2360, - ')', 1840, - '+', 3449, - '-', 1892, - '.', 2364, - '0', 2393, - ';', 1328, - 'N', 3559, - '[', 1834, - '_', 3466, + '(', 2322, + ')', 1807, + '+', 3409, + '-', 1859, + '.', 2326, + '0', 2355, + ';', 1303, + 'N', 3518, + '[', 1801, + '_', 3426, '`', 834, - 'f', 3476, - 'n', 3532, - 't', 3543, - '{', 2000, - '|', 1841, - '}', 2001, - 'E', 3461, - 'e', 3461, - 'I', 3563, - 'i', 3563, + 'f', 3436, + 'n', 3491, + 't', 3502, + '{', 1967, + '|', 1808, + '}', 1968, + 'E', 3421, + 'e', 3421, + 'I', 3522, + 'i', 3522, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1182); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); + lookahead == ' ') SKIP(1152); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); if (lookahead != 0 && - lookahead != ']') ADVANCE(3437); + lookahead != ']') ADVANCE(3397); END_STATE(); - case 1135: - if (eof) ADVANCE(1284); + case 1115: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 2360, - ')', 1840, - '+', 3449, - '-', 1892, - '.', 2364, - '0', 3469, - ';', 1328, - 'E', 3446, - 'I', 3560, - 'N', 3556, - '[', 1834, - '^', 3246, - '_', 3459, + '(', 2322, + ')', 1807, + '+', 3409, + '-', 1859, + '.', 2326, + '0', 3429, + ';', 1303, + 'E', 3406, + 'I', 3519, + 'N', 3515, + '[', 1801, + '^', 3206, + '_', 3419, '`', 834, - 'a', 3499, - 'b', 3545, - 'c', 3514, - 'd', 3481, - 'e', 3445, - 'f', 3477, - 'h', 3490, - 'i', 3486, - 'l', 3483, - 'm', 3478, - 'n', 3526, - 'o', 3555, - 'r', 3484, - 's', 3516, - 't', 3537, - 'u', 3548, - 'w', 3488, - '{', 2000, - '}', 2001, + 'a', 3458, + 'b', 3504, + 'c', 3473, + 'd', 3441, + 'e', 3405, + 'f', 3437, + 'h', 3450, + 'i', 3446, + 'l', 3443, + 'm', 3438, + 'n', 3485, + 'o', 3514, + 'r', 3444, + 's', 3475, + 't', 3496, + 'u', 3507, + 'w', 3448, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1179); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3565); + lookahead == ' ') SKIP(1149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3431); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3524); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3437); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3397); END_STATE(); - case 1136: - if (eof) ADVANCE(1284); + case 1116: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 2360, - ')', 1840, - '+', 3449, - '-', 1892, - '.', 2364, - '0', 3469, - ';', 1328, - 'I', 3560, - 'N', 3556, - '[', 1834, - '^', 3246, - '_', 3459, + '(', 2322, + ')', 1807, + '+', 3409, + '-', 1859, + '.', 2326, + '0', 3429, + ';', 1303, + 'I', 3519, + 'N', 3515, + '[', 1801, + '^', 3206, + '_', 3419, '`', 834, - 'a', 3499, - 'b', 3545, - 'c', 3514, - 'd', 3481, - 'e', 3546, - 'f', 3477, - 'h', 3490, - 'i', 3486, - 'l', 3483, - 'm', 3478, - 'n', 3526, - 'o', 3555, - 'r', 3484, - 's', 3516, - 't', 3537, - 'u', 3548, - 'w', 3488, - '{', 2000, - '}', 2001, + 'a', 3458, + 'b', 3504, + 'c', 3473, + 'd', 3441, + 'e', 3505, + 'f', 3437, + 'h', 3450, + 'i', 3446, + 'l', 3443, + 'm', 3438, + 'n', 3485, + 'o', 3514, + 'r', 3444, + 's', 3475, + 't', 3496, + 'u', 3507, + 'w', 3448, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1179); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3565); + lookahead == ' ') SKIP(1149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3431); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3524); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3437); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3397); END_STATE(); - case 1137: - if (eof) ADVANCE(1284); + case 1117: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 2360, - ')', 1840, - '+', 3449, - '-', 1892, - '.', 2364, - '0', 3469, - ';', 1328, - 'N', 3559, - '[', 1834, - '_', 3468, + '(', 2322, + ')', 1807, + '+', 3409, + '-', 1859, + '.', 2326, + '0', 3429, + ';', 1303, + 'N', 3518, + '[', 1801, + '_', 3428, '`', 834, - 'f', 3476, - 'n', 3532, - 't', 3543, - '{', 2000, - '|', 1841, - '}', 2001, - 'E', 3461, - 'e', 3461, - 'I', 3563, - 'i', 3563, + 'f', 3436, + 'n', 3491, + 't', 3502, + '{', 1967, + '|', 1808, + '}', 1968, + 'E', 3421, + 'e', 3421, + 'I', 3522, + 'i', 3522, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1182); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3471); + lookahead == ' ') SKIP(1152); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3431); if (lookahead != 0 && - lookahead != ']') ADVANCE(3437); + lookahead != ']') ADVANCE(3397); END_STATE(); - case 1138: - if (eof) ADVANCE(1284); + case 1118: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 2360, - ')', 1840, - '+', 3449, - '-', 1892, - '.', 2364, - '0', 3469, - ';', 1328, - 'N', 3559, - '[', 1834, - '_', 3468, + '(', 2322, + ')', 1807, + '+', 3409, + '-', 1859, + '.', 2326, + '0', 3429, + ';', 1303, + 'N', 3518, + '[', 1801, + '_', 3428, '`', 834, - 'f', 3476, - 'n', 3532, - 't', 3543, - '{', 2000, - '|', 1841, - '}', 2001, - 'I', 3563, - 'i', 3563, + 'f', 3436, + 'n', 3491, + 't', 3502, + '{', 1967, + '|', 1808, + '}', 1968, + 'I', 3522, + 'i', 3522, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1182); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3471); + lookahead == ' ') SKIP(1152); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3431); if (lookahead != 0 && - lookahead != ']') ADVANCE(3437); + lookahead != ']') ADVANCE(3397); END_STATE(); - case 1139: - if (eof) ADVANCE(1284); + case 1119: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 2360, - ')', 1840, - '+', 3449, - '-', 1892, - '.', 2481, - '0', 2393, - ';', 1328, - 'I', 3560, - 'N', 3556, - '[', 1834, - '^', 3246, - '_', 3463, + '(', 2322, + ')', 1807, + '+', 3409, + '-', 1859, + '.', 2443, + '0', 2355, + ';', 1303, + 'I', 3519, + 'N', 3515, + '[', 1801, + '^', 3206, + '_', 3423, '`', 834, - 'a', 3499, - 'b', 3545, - 'c', 3514, - 'd', 3481, - 'e', 3546, - 'f', 3477, - 'h', 3490, - 'i', 3486, - 'l', 3483, - 'm', 3478, - 'n', 3526, - 'o', 3555, - 'r', 3484, - 's', 3516, - 't', 3537, - 'u', 3548, - 'w', 3488, - '{', 2000, - '}', 2001, + 'a', 3458, + 'b', 3504, + 'c', 3473, + 'd', 3441, + 'e', 3505, + 'f', 3437, + 'h', 3450, + 'i', 3446, + 'l', 3443, + 'm', 3438, + 'n', 3485, + 'o', 3514, + 'r', 3444, + 's', 3475, + 't', 3496, + 'u', 3507, + 'w', 3448, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1179); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3565); + lookahead == ' ') SKIP(1149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3524); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3437); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3397); END_STATE(); - case 1140: - if (eof) ADVANCE(1284); + case 1120: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 2360, - ')', 1840, - '+', 3449, - '-', 1892, - '.', 2481, - '0', 2393, - ';', 1328, - 'N', 3559, - '[', 1834, - '_', 3466, + '(', 2322, + ')', 1807, + '+', 3409, + '-', 1859, + '.', 2443, + '0', 2355, + ';', 1303, + 'N', 3518, + '[', 1801, + '_', 3426, '`', 834, - 'f', 3476, - 'n', 3532, - 't', 3543, - '{', 2000, - '|', 1841, - '}', 2001, - 'I', 3563, - 'i', 3563, + 'f', 3436, + 'n', 3491, + 't', 3502, + '{', 1967, + '|', 1808, + '}', 1968, + 'I', 3522, + 'i', 3522, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1182); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); + lookahead == ' ') SKIP(1152); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); if (lookahead != 0 && - lookahead != ']') ADVANCE(3437); + lookahead != ']') ADVANCE(3397); END_STATE(); - case 1141: - if (eof) ADVANCE(1284); + case 1121: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 2360, - ')', 1840, - '+', 3449, - '-', 1892, - '.', 2365, - '0', 2393, - ';', 1328, - 'E', 3446, - 'I', 3560, - 'N', 3556, - '[', 1834, - '^', 3246, - '_', 3463, + '(', 2322, + ')', 1807, + '+', 3409, + '-', 1859, + '.', 2327, + '0', 2355, + ';', 1303, + 'E', 3406, + 'I', 3519, + 'N', 3515, + '[', 1801, + '^', 3206, + '_', 3423, '`', 834, - 'a', 3499, - 'b', 3545, - 'c', 3514, - 'd', 3481, - 'e', 3445, - 'f', 3477, - 'h', 3490, - 'i', 3486, - 'l', 3483, - 'm', 3478, - 'n', 3526, - 'o', 3555, - 'r', 3484, - 's', 3516, - 't', 3537, - 'u', 3548, - 'w', 3488, - '{', 2000, - '}', 2001, + 'a', 3458, + 'b', 3504, + 'c', 3473, + 'd', 3441, + 'e', 3405, + 'f', 3437, + 'h', 3450, + 'i', 3446, + 'l', 3443, + 'm', 3438, + 'n', 3485, + 'o', 3514, + 'r', 3444, + 's', 3475, + 't', 3496, + 'u', 3507, + 'w', 3448, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1179); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3565); + lookahead == ' ') SKIP(1149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3524); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3437); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3397); END_STATE(); - case 1142: - if (eof) ADVANCE(1284); + case 1122: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 2360, - ')', 1840, - '+', 3449, - '-', 1892, - '.', 2365, - '0', 2393, - ';', 1328, - 'I', 3560, - 'N', 3556, - '[', 1834, - '^', 3246, - '_', 3463, + '(', 2322, + ')', 1807, + '+', 3409, + '-', 1859, + '.', 2327, + '0', 2355, + ';', 1303, + 'I', 3519, + 'N', 3515, + '[', 1801, + '^', 3206, + '_', 3423, '`', 834, - 'a', 3499, - 'b', 3545, - 'c', 3514, - 'd', 3481, - 'e', 3546, - 'f', 3477, - 'h', 3490, - 'i', 3486, - 'l', 3483, - 'm', 3478, - 'n', 3526, - 'o', 3555, - 'r', 3484, - 's', 3516, - 't', 3537, - 'u', 3548, - 'w', 3488, - '{', 2000, - '}', 2001, + 'a', 3458, + 'b', 3504, + 'c', 3473, + 'd', 3441, + 'e', 3505, + 'f', 3437, + 'h', 3450, + 'i', 3446, + 'l', 3443, + 'm', 3438, + 'n', 3485, + 'o', 3514, + 'r', 3444, + 's', 3475, + 't', 3496, + 'u', 3507, + 'w', 3448, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1179); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3565); + lookahead == ' ') SKIP(1149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3524); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3437); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3397); END_STATE(); - case 1143: - if (eof) ADVANCE(1284); + case 1123: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 2360, - ')', 1840, - '+', 3449, - '-', 1892, - '.', 2365, - '0', 2393, - ';', 1328, - 'N', 3559, - '[', 1834, - '_', 3466, + '(', 2322, + ')', 1807, + '+', 3409, + '-', 1859, + '.', 2327, + '0', 2355, + ';', 1303, + 'N', 3518, + '[', 1801, + '_', 3426, '`', 834, - 'f', 3476, - 'n', 3532, - 't', 3543, - '{', 2000, - '|', 1841, - '}', 2001, - 'E', 3461, - 'e', 3461, - 'I', 3563, - 'i', 3563, + 'f', 3436, + 'n', 3491, + 't', 3502, + '{', 1967, + '|', 1808, + '}', 1968, + 'E', 3421, + 'e', 3421, + 'I', 3522, + 'i', 3522, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1182); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); + lookahead == ' ') SKIP(1152); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); if (lookahead != 0 && - lookahead != ']') ADVANCE(3437); + lookahead != ']') ADVANCE(3397); END_STATE(); - case 1144: - if (eof) ADVANCE(1284); + case 1124: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 2360, - ')', 1840, - '+', 3449, - '-', 1892, - '.', 2365, - '0', 2393, - ';', 1328, - 'N', 3559, - '[', 1834, - '_', 3466, + '(', 2322, + ')', 1807, + '+', 3409, + '-', 1859, + '.', 2327, + '0', 2355, + ';', 1303, + 'N', 3518, + '[', 1801, + '_', 3426, '`', 834, - 'f', 3476, - 'n', 3532, - 't', 3543, - '{', 2000, - '|', 1841, - '}', 2001, - 'I', 3563, - 'i', 3563, + 'f', 3436, + 'n', 3491, + 't', 3502, + '{', 1967, + '|', 1808, + '}', 1968, + 'I', 3522, + 'i', 3522, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1182); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); + lookahead == ' ') SKIP(1152); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); if (lookahead != 0 && - lookahead != ']') ADVANCE(3437); + lookahead != ']') ADVANCE(3397); END_STATE(); - case 1145: - if (eof) ADVANCE(1284); + case 1125: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 2360, - ')', 1840, - '+', 3449, - '-', 1892, - '.', 2365, - '0', 3469, - ';', 1328, - 'E', 3446, - 'I', 3560, - 'N', 3556, - '[', 1834, - '^', 3246, - '_', 3459, + '(', 2322, + ')', 1807, + '+', 3409, + '-', 1859, + '.', 2327, + '0', 3429, + ';', 1303, + 'E', 3406, + 'I', 3519, + 'N', 3515, + '[', 1801, + '^', 3206, + '_', 3419, '`', 834, - 'a', 3499, - 'b', 3545, - 'c', 3514, - 'd', 3481, - 'e', 3445, - 'f', 3477, - 'h', 3490, - 'i', 3486, - 'l', 3483, - 'm', 3478, - 'n', 3526, - 'o', 3555, - 'r', 3484, - 's', 3516, - 't', 3537, - 'u', 3548, - 'w', 3488, - '{', 2000, - '}', 2001, + 'a', 3458, + 'b', 3504, + 'c', 3473, + 'd', 3441, + 'e', 3405, + 'f', 3437, + 'h', 3450, + 'i', 3446, + 'l', 3443, + 'm', 3438, + 'n', 3485, + 'o', 3514, + 'r', 3444, + 's', 3475, + 't', 3496, + 'u', 3507, + 'w', 3448, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1179); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3565); + lookahead == ' ') SKIP(1149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3431); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3524); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3437); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3397); END_STATE(); - case 1146: - if (eof) ADVANCE(1284); + case 1126: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 2360, - ')', 1840, - '+', 3449, - '-', 1892, - '.', 2365, - '0', 3469, - ';', 1328, - 'I', 3560, - 'N', 3556, - '[', 1834, - '^', 3246, - '_', 3459, + '(', 2322, + ')', 1807, + '+', 3409, + '-', 1859, + '.', 2327, + '0', 3429, + ';', 1303, + 'I', 3519, + 'N', 3515, + '[', 1801, + '^', 3206, + '_', 3419, '`', 834, - 'a', 3499, - 'b', 3545, - 'c', 3514, - 'd', 3481, - 'e', 3546, - 'f', 3477, - 'h', 3490, - 'i', 3486, - 'l', 3483, - 'm', 3478, - 'n', 3526, - 'o', 3555, - 'r', 3484, - 's', 3516, - 't', 3537, - 'u', 3548, - 'w', 3488, - '{', 2000, - '}', 2001, + 'a', 3458, + 'b', 3504, + 'c', 3473, + 'd', 3441, + 'e', 3505, + 'f', 3437, + 'h', 3450, + 'i', 3446, + 'l', 3443, + 'm', 3438, + 'n', 3485, + 'o', 3514, + 'r', 3444, + 's', 3475, + 't', 3496, + 'u', 3507, + 'w', 3448, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1179); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3565); + lookahead == ' ') SKIP(1149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3431); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3524); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3437); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3397); END_STATE(); - case 1147: - if (eof) ADVANCE(1284); + case 1127: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 2360, - ')', 1840, - '+', 3449, - '-', 1892, - '.', 2365, - '0', 3469, - ';', 1328, - 'N', 3559, - '[', 1834, - '_', 3468, + '(', 2322, + ')', 1807, + '+', 3409, + '-', 1859, + '.', 2327, + '0', 3429, + ';', 1303, + 'N', 3518, + '[', 1801, + '_', 3428, '`', 834, - 'f', 3476, - 'n', 3532, - 't', 3543, - '{', 2000, - '|', 1841, - '}', 2001, - 'E', 3461, - 'e', 3461, - 'I', 3563, - 'i', 3563, + 'f', 3436, + 'n', 3491, + 't', 3502, + '{', 1967, + '|', 1808, + '}', 1968, + 'E', 3421, + 'e', 3421, + 'I', 3522, + 'i', 3522, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1182); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3471); + lookahead == ' ') SKIP(1152); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3431); if (lookahead != 0 && - lookahead != ']') ADVANCE(3437); + lookahead != ']') ADVANCE(3397); END_STATE(); - case 1148: - if (eof) ADVANCE(1284); + case 1128: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 2360, - ')', 1840, - '+', 3449, - '-', 1892, - '.', 2365, - '0', 3469, - ';', 1328, - 'N', 3559, - '[', 1834, - '_', 3468, + '(', 2322, + ')', 1807, + '+', 3409, + '-', 1859, + '.', 2327, + '0', 3429, + ';', 1303, + 'N', 3518, + '[', 1801, + '_', 3428, '`', 834, - 'f', 3476, - 'n', 3532, - 't', 3543, - '{', 2000, - '|', 1841, - '}', 2001, - 'I', 3563, - 'i', 3563, + 'f', 3436, + 'n', 3491, + 't', 3502, + '{', 1967, + '|', 1808, + '}', 1968, + 'I', 3522, + 'i', 3522, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1182); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3471); + lookahead == ' ') SKIP(1152); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3431); if (lookahead != 0 && - lookahead != ']') ADVANCE(3437); + lookahead != ']') ADVANCE(3397); END_STATE(); - case 1149: - if (eof) ADVANCE(1284); + case 1129: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '*', 2083, + '(', 1806, + ')', 1807, + '*', 2050, '+', 805, - '-', 1902, - '.', 2481, - '0', 2458, - ';', 1328, - '?', 2102, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1350, + '-', 1869, + '.', 2443, + '0', 2420, + ';', 1303, + '?', 2064, + 'I', 1523, + 'N', 1517, + '[', 1801, + '^', 3206, + '_', 1320, '`', 834, - 'a', 1441, - 'b', 1492, - 'c', 1465, - 'd', 1379, - 'e', 1494, - 'f', 1357, - 'h', 1424, - 'i', 1410, - 'l', 1381, - 'm', 1360, - 'n', 1471, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1483, - 'u', 1508, - 'w', 1414, - '{', 2000, - '}', 2001, + 'a', 1409, + 'b', 1459, + 'c', 1433, + 'd', 1349, + 'e', 1461, + 'f', 1327, + 'h', 1393, + 'i', 1380, + 'l', 1351, + 'm', 1330, + 'n', 1439, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1450, + 'u', 1475, + 'w', 1383, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1149); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') SKIP(1129); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); - case 1150: - if (eof) ADVANCE(1284); + case 1130: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '*', 2083, + '(', 1806, + ')', 1807, + '*', 2050, '+', 805, - '-', 1902, - '.', 2481, - '0', 2458, - ';', 1328, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1350, + '-', 1869, + '.', 2443, + '0', 2420, + ';', 1303, + 'I', 1523, + 'N', 1517, + '[', 1801, + '^', 3206, + '_', 1320, '`', 834, - 'a', 1441, - 'b', 1492, - 'c', 1465, - 'd', 1379, - 'e', 1494, - 'f', 1357, - 'h', 1424, - 'i', 1410, - 'l', 1381, - 'm', 1360, - 'n', 1471, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1483, - 'u', 1508, - 'w', 1414, - '{', 2000, - '|', 1841, - '}', 2001, + 'a', 1409, + 'b', 1459, + 'c', 1433, + 'd', 1349, + 'e', 1461, + 'f', 1327, + 'h', 1393, + 'i', 1380, + 'l', 1351, + 'm', 1330, + 'n', 1439, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1450, + 'u', 1475, + 'w', 1383, + '{', 1967, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1150); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') SKIP(1130); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); - case 1151: - if (eof) ADVANCE(1284); + case 1131: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '*', 2083, + '(', 1806, + ')', 1807, + '*', 2050, '+', 805, - '-', 1902, - '.', 2481, - '0', 2458, - ';', 1328, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1350, + '-', 1869, + '.', 2443, + '0', 2420, + ';', 1303, + 'I', 1523, + 'N', 1517, + '[', 1801, + '^', 3206, + '_', 1320, '`', 834, - 'a', 1441, - 'b', 1492, - 'c', 1465, - 'd', 1379, - 'e', 1494, - 'f', 1357, - 'h', 1424, - 'i', 1410, - 'l', 1381, - 'm', 1360, - 'n', 1471, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1483, - 'u', 1508, - 'w', 1414, - '{', 2000, - '}', 2001, + 'a', 1409, + 'b', 1459, + 'c', 1433, + 'd', 1349, + 'e', 1461, + 'f', 1327, + 'h', 1393, + 'i', 1380, + 'l', 1351, + 'm', 1330, + 'n', 1439, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1450, + 'u', 1475, + 'w', 1383, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1151); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') SKIP(1131); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); - case 1152: - if (eof) ADVANCE(1284); + case 1132: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '*', 2083, + '(', 1806, + ')', 1807, + '*', 2050, '+', 805, - '-', 1902, - '.', 2365, - '0', 2458, - ';', 1328, - '?', 2102, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1350, + '-', 1869, + '.', 2327, + '0', 2420, + ';', 1303, + '?', 2064, + 'I', 1523, + 'N', 1517, + '[', 1801, + '^', 3206, + '_', 1320, '`', 834, - 'a', 1441, - 'b', 1492, - 'c', 1465, - 'd', 1379, - 'e', 1494, - 'f', 1357, - 'h', 1424, - 'i', 1410, - 'l', 1381, - 'm', 1360, - 'n', 1471, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1483, - 'u', 1508, - 'w', 1414, - '{', 2000, - '}', 2001, + 'a', 1409, + 'b', 1459, + 'c', 1433, + 'd', 1349, + 'e', 1461, + 'f', 1327, + 'h', 1393, + 'i', 1380, + 'l', 1351, + 'm', 1330, + 'n', 1439, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1450, + 'u', 1475, + 'w', 1383, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1149); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') SKIP(1129); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); - case 1153: - if (eof) ADVANCE(1284); + case 1133: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '*', 2083, - '+', 3574, - '-', 1907, - '.', 2365, - '0', 2393, - ';', 1328, - 'I', 3671, - 'N', 3667, - '[', 1834, - '^', 3246, - '_', 3580, + '(', 1806, + ')', 1807, + '*', 2050, + '+', 3533, + '-', 1874, + '.', 2327, + '0', 2355, + ';', 1303, + 'I', 3629, + 'N', 3625, + '[', 1801, + '^', 3206, + '_', 3539, '`', 834, - 'a', 3611, - 'b', 3656, - 'c', 3625, - 'd', 3592, - 'e', 3657, - 'f', 3588, - 'h', 3601, - 'i', 3597, - 'l', 3594, - 'm', 3589, - 'n', 3637, - 'o', 3666, - 'r', 3595, - 's', 3627, - 't', 3648, - 'u', 3659, - 'w', 3599, - '{', 2000, - '}', 2001, - '<', 3791, - '=', 3791, + 'a', 3569, + 'b', 3614, + 'c', 3583, + 'd', 3551, + 'e', 3615, + 'f', 3547, + 'h', 3560, + 'i', 3556, + 'l', 3553, + 'm', 3548, + 'n', 3595, + 'o', 3624, + 'r', 3554, + 's', 3585, + 't', 3606, + 'u', 3617, + 'w', 3558, + '{', 1967, + '}', 1968, + '<', 3748, + '=', 3748, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1155); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3676); + lookahead == ' ') SKIP(1135); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3634); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3566); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3525); END_STATE(); - case 1154: - if (eof) ADVANCE(1284); + case 1134: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '*', 2083, - '+', 3685, - '-', 1907, - '.', 2365, - '0', 2393, - ';', 1328, - 'I', 3785, - 'N', 3781, - '[', 1834, - '^', 3246, - '_', 3694, + '(', 1806, + ')', 1807, + '*', 2050, + '+', 3643, + '-', 1874, + '.', 2327, + '0', 2355, + ';', 1303, + 'I', 3742, + 'N', 3738, + '[', 1801, + '^', 3206, + '_', 3652, '`', 834, - 'a', 3725, - 'b', 3770, - 'c', 3739, - 'd', 3706, - 'e', 3771, - 'f', 3702, - 'h', 3715, - 'i', 3711, - 'l', 3708, - 'm', 3703, - 'n', 3751, - 'o', 3780, - 'r', 3709, - 's', 3741, - 't', 3762, - 'u', 3773, - 'w', 3713, - '{', 2000, - '}', 2001, + 'a', 3682, + 'b', 3727, + 'c', 3696, + 'd', 3664, + 'e', 3728, + 'f', 3660, + 'h', 3673, + 'i', 3669, + 'l', 3666, + 'm', 3661, + 'n', 3708, + 'o', 3737, + 'r', 3667, + 's', 3698, + 't', 3719, + 'u', 3730, + 'w', 3671, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1155); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3790); + lookahead == ' ') SKIP(1135); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3747); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3677); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3635); END_STATE(); - case 1155: - if (eof) ADVANCE(1284); + case 1135: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '*', 2083, + '(', 1806, + ')', 1807, + '*', 2050, '+', 809, - '-', 1907, - '.', 2481, - '0', 2458, - ';', 1328, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1350, + '-', 1874, + '.', 2443, + '0', 2420, + ';', 1303, + 'I', 1523, + 'N', 1517, + '[', 1801, + '^', 3206, + '_', 1320, '`', 834, - 'a', 1441, - 'b', 1492, - 'c', 1465, - 'd', 1379, - 'e', 1494, - 'f', 1357, - 'h', 1424, - 'i', 1410, - 'l', 1381, - 'm', 1360, - 'n', 1471, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1483, - 'u', 1508, - 'w', 1414, - '{', 2000, - '}', 2001, + 'a', 1409, + 'b', 1459, + 'c', 1433, + 'd', 1349, + 'e', 1461, + 'f', 1327, + 'h', 1393, + 'i', 1380, + 'l', 1351, + 'm', 1330, + 'n', 1439, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1450, + 'u', 1475, + 'w', 1383, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1155); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') SKIP(1135); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); - case 1156: - if (eof) ADVANCE(1284); + case 1136: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '*', 2083, - '+', 3449, - '-', 1902, - '.', 2481, - '0', 2393, - ';', 1328, - 'I', 3560, - 'N', 3556, - '[', 1834, - '^', 3246, - '_', 3463, + '(', 1806, + ')', 1807, + '*', 2050, + '+', 3409, + '-', 1869, + '.', 2443, + '0', 2355, + ';', 1303, + 'I', 3519, + 'N', 3515, + '[', 1801, + '^', 3206, + '_', 3423, '`', 834, - 'a', 3500, - 'b', 3545, - 'c', 3514, - 'd', 3481, - 'e', 3546, - 'f', 3477, - 'h', 3490, - 'i', 3486, - 'l', 3483, - 'm', 3478, - 'n', 3526, - 'o', 3555, - 'r', 3484, - 's', 3516, - 't', 3537, - 'u', 3548, - 'w', 3488, - '{', 2000, - '}', 2001, + 'a', 3459, + 'b', 3504, + 'c', 3473, + 'd', 3441, + 'e', 3505, + 'f', 3437, + 'h', 3450, + 'i', 3446, + 'l', 3443, + 'm', 3438, + 'n', 3485, + 'o', 3514, + 'r', 3444, + 's', 3475, + 't', 3496, + 'u', 3507, + 'w', 3448, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1151); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3565); + lookahead == ' ') SKIP(1131); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3524); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3437); - END_STATE(); - case 1157: - if (eof) ADVANCE(1284); - ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, - '\'', 791, - '(', 1839, - ')', 1840, - '+', 805, - '-', 1902, - '.', 2364, - '0', 2458, - ';', 1328, - '?', 2102, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1350, - '`', 834, - 'a', 1441, - 'b', 1492, - 'c', 1465, - 'd', 1379, - 'e', 1494, - 'f', 1357, - 'h', 1424, - 'i', 1410, - 'l', 1381, - 'm', 1360, - 'n', 1471, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1483, - 'u', 1508, - 'w', 1414, - '{', 2000, - '}', 2001, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1160); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); - END_STATE(); - case 1158: - if (eof) ADVANCE(1284); - ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, - '\'', 791, - '(', 1839, - ')', 1840, - '+', 805, - '-', 1902, - '.', 2364, - '0', 2458, - ';', 1328, - 'E', 1332, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1350, - '`', 834, - 'a', 1441, - 'b', 1492, - 'c', 1465, - 'd', 1379, - 'e', 1331, - 'f', 1357, - 'h', 1424, - 'i', 1410, - 'l', 1381, - 'm', 1360, - 'n', 1471, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1483, - 'u', 1508, - 'w', 1414, - '{', 2000, - '}', 2001, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1162); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3397); END_STATE(); - case 1159: - if (eof) ADVANCE(1284); + case 1137: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, + '(', 1806, + ')', 1807, '+', 805, - '-', 1902, - '.', 2481, - '0', 2458, - ':', 1830, - ';', 1328, + '-', 1869, + '.', 2443, + '0', 2420, + ':', 1797, + ';', 1303, 'I', 995, 'N', 986, - '[', 1834, + '[', 1801, '_', 833, '`', 834, 'c', 841, @@ -48509,582 +46804,208 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'm', 845, 'n', 923, 't', 937, - '{', 2000, - '|', 1841, - '}', 2001, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1159); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - END_STATE(); - case 1160: - if (eof) ADVANCE(1284); - ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, - '\'', 791, - '(', 1839, - ')', 1840, - '+', 805, - '-', 1902, - '.', 2481, - '0', 2458, - ';', 1328, - '?', 2102, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1350, - '`', 834, - 'a', 1441, - 'b', 1492, - 'c', 1465, - 'd', 1379, - 'e', 1494, - 'f', 1357, - 'h', 1424, - 'i', 1410, - 'l', 1381, - 'm', 1360, - 'n', 1471, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1483, - 'u', 1508, - 'w', 1414, - '{', 2000, - '}', 2001, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1160); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); - END_STATE(); - case 1161: - if (eof) ADVANCE(1284); - ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, - '\'', 791, - '(', 1839, - ')', 1840, - '+', 805, - '-', 1902, - '.', 2481, - '0', 2458, - ';', 1328, - 'E', 1332, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1350, - '`', 834, - 'a', 1441, - 'b', 1492, - 'c', 1465, - 'd', 1379, - 'e', 1331, - 'f', 1357, - 'h', 1424, - 'i', 1410, - 'l', 1381, - 'm', 1360, - 'n', 1471, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1483, - 'u', 1508, - 'w', 1414, - '{', 2000, - '}', 2001, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1162); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); - END_STATE(); - case 1162: - if (eof) ADVANCE(1284); - ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, - '\'', 791, - '(', 1839, - ')', 1840, - '+', 805, - '-', 1902, - '.', 2481, - '0', 2458, - ';', 1328, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1350, - '`', 834, - 'a', 1441, - 'b', 1492, - 'c', 1465, - 'd', 1379, - 'e', 1494, - 'f', 1357, - 'h', 1424, - 'i', 1410, - 'l', 1381, - 'm', 1360, - 'n', 1471, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1483, - 'u', 1508, - 'w', 1414, - '{', 2000, - '}', 2001, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1162); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); - END_STATE(); - case 1163: - if (eof) ADVANCE(1284); - ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, - '\'', 791, - '(', 1839, - ')', 1840, - '+', 805, - '-', 1902, - '.', 2481, - '0', 2393, - ';', 1328, - 'E', 1332, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1352, - '`', 834, - 'a', 1441, - 'b', 1492, - 'c', 1465, - 'd', 1379, - 'e', 1331, - 'f', 1357, - 'h', 1424, - 'i', 1410, - 'l', 1381, - 'm', 1360, - 'n', 1471, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1483, - 'u', 1508, - 'w', 1414, - '{', 2000, - '}', 2001, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1162); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); - END_STATE(); - case 1164: - if (eof) ADVANCE(1284); - ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, - '\'', 791, - '(', 1839, - ')', 1840, - '+', 805, - '-', 1902, - '.', 2481, - '0', 2393, - ';', 1328, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1352, - '`', 834, - 'a', 1441, - 'b', 1492, - 'c', 1465, - 'd', 1379, - 'e', 1494, - 'f', 1357, - 'h', 1424, - 'i', 1410, - 'l', 1381, - 'm', 1360, - 'n', 1471, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1483, - 'u', 1508, - 'w', 1414, - '{', 2000, - '}', 2001, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1162); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); - END_STATE(); - case 1165: - if (eof) ADVANCE(1284); - ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, - '\'', 791, - '(', 1839, - ')', 1840, - '+', 805, - '-', 1902, - '.', 2365, - '0', 2458, - ';', 1328, - 'E', 1332, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1350, - '`', 834, - 'a', 1441, - 'b', 1492, - 'c', 1465, - 'd', 1379, - 'e', 1331, - 'f', 1357, - 'h', 1424, - 'i', 1410, - 'l', 1381, - 'm', 1360, - 'n', 1471, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1483, - 'u', 1508, - 'w', 1414, - '{', 2000, - '}', 2001, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1162); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); - END_STATE(); - case 1166: - if (eof) ADVANCE(1284); - ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, - '\'', 791, - '(', 1839, - ')', 1840, - '+', 805, - '-', 1902, - '.', 2480, - '0', 2458, - ';', 1328, - 'E', 1332, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1350, - '`', 834, - 'a', 1441, - 'b', 1492, - 'c', 1465, - 'd', 1379, - 'e', 1331, - 'f', 1357, - 'h', 1424, - 'i', 1410, - 'l', 1381, - 'm', 1360, - 'n', 1471, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1483, - 'u', 1508, - 'w', 1414, - '{', 2000, - '}', 2001, + '{', 1967, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1162); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') SKIP(1137); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); END_STATE(); - case 1167: - if (eof) ADVANCE(1284); - ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, - '\'', 791, - '(', 1839, - ')', 1840, - '+', 805, - '-', 1902, - '.', 2480, - '0', 2458, - ';', 1328, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1350, - '`', 834, - 'a', 1441, - 'b', 1492, - 'c', 1465, - 'd', 1379, - 'e', 1494, - 'f', 1357, - 'h', 1424, - 'i', 1410, - 'l', 1381, - 'm', 1360, - 'n', 1471, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1483, - 'u', 1508, - 'w', 1414, - '{', 2000, - '}', 2001, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1162); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); - END_STATE(); - case 1168: - if (eof) ADVANCE(1284); + case 1138: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, + '(', 1806, + ')', 1807, '+', 805, - '-', 1902, - '.', 2480, - '0', 2393, - ';', 1328, - 'E', 1332, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1352, + '-', 1869, + '.', 2443, + '0', 2420, + ';', 1303, + 'I', 1523, + 'N', 1517, + '[', 1801, + '^', 3206, + '_', 1320, '`', 834, - 'a', 1441, - 'b', 1492, - 'c', 1465, - 'd', 1379, - 'e', 1331, - 'f', 1357, - 'h', 1424, - 'i', 1410, - 'l', 1381, - 'm', 1360, - 'n', 1471, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1483, - 'u', 1508, - 'w', 1414, - '{', 2000, - '}', 2001, + 'a', 1409, + 'b', 1459, + 'c', 1433, + 'd', 1349, + 'e', 1461, + 'f', 1327, + 'h', 1393, + 'i', 1380, + 'l', 1351, + 'm', 1330, + 'n', 1439, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1450, + 'u', 1475, + 'w', 1383, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1162); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') SKIP(1138); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); - case 1169: - if (eof) ADVANCE(1284); + case 1139: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, + '(', 1806, + ')', 1807, '+', 805, - '-', 1892, - '.', 2364, - '0', 2458, - ';', 1328, - '?', 2102, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1350, + '-', 1859, + '.', 2326, + '0', 2420, + ';', 1303, + '?', 2064, + 'I', 1523, + 'N', 1517, + '[', 1801, + '^', 3206, + '_', 1320, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1465, - 'd', 1379, - 'e', 1494, - 'f', 1357, - 'h', 1424, - 'i', 1410, - 'l', 1381, - 'm', 1360, - 'n', 1471, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1483, - 'u', 1508, - 'w', 1414, - '{', 2000, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1433, + 'd', 1349, + 'e', 1461, + 'f', 1327, + 'h', 1393, + 'i', 1380, + 'l', 1351, + 'm', 1330, + 'n', 1439, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1450, + 'u', 1475, + 'w', 1383, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1175); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') SKIP(1145); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); - case 1170: - if (eof) ADVANCE(1284); + case 1140: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, + '(', 1806, + ')', 1807, '+', 805, - '-', 1892, - '.', 2364, - '0', 2458, - ';', 1328, - '?', 2102, + '-', 1859, + '.', 2326, + '0', 2420, + ';', 1303, + '?', 2064, 'N', 986, - '[', 1834, + '[', 1801, '_', 833, '`', 834, 'f', 836, 'n', 923, 't', 936, - '{', 2000, - '|', 1841, - '}', 2001, + '{', 1967, + '|', 1808, + '}', 1968, 'E', 829, 'e', 829, 'I', 995, 'i', 995, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1176); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); + lookahead == ' ') SKIP(1146); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); END_STATE(); - case 1171: - if (eof) ADVANCE(1284); + case 1141: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, + '(', 1806, + ')', 1807, '+', 805, - '-', 1892, - '.', 2364, - '0', 2458, - ';', 1328, - 'E', 1332, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1350, + '-', 1859, + '.', 2326, + '0', 2420, + ';', 1303, + 'E', 1305, + 'I', 1523, + 'N', 1517, + '[', 1801, + '^', 3206, + '_', 1320, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1465, - 'd', 1379, - 'e', 1331, - 'f', 1357, - 'h', 1424, - 'i', 1410, - 'l', 1381, - 'm', 1360, - 'n', 1471, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1483, - 'u', 1508, - 'w', 1414, - '{', 2000, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1433, + 'd', 1349, + 'e', 1304, + 'f', 1327, + 'h', 1393, + 'i', 1380, + 'l', 1351, + 'm', 1330, + 'n', 1439, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1450, + 'u', 1475, + 'w', 1383, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1179); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') SKIP(1149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); - case 1172: - if (eof) ADVANCE(1284); + case 1142: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, + '(', 1806, + ')', 1807, '+', 805, - '-', 1892, - '.', 2481, - '0', 2458, - ';', 1328, - '=', 1301, + '-', 1859, + '.', 2443, + '0', 2420, + ';', 1303, + '=', 1271, 'E', 829, 'N', 986, - '[', 1834, + '[', 1801, '_', 833, '`', 834, 'c', 841, @@ -49092,81 +47013,81 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'f', 836, 'n', 923, 't', 936, - '{', 2000, - '|', 1841, - '}', 2001, + '{', 1967, + '|', 1808, + '}', 1968, 'I', 995, 'i', 995, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1174); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); + lookahead == ' ') SKIP(1144); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); END_STATE(); - case 1173: - if (eof) ADVANCE(1284); + case 1143: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, + '(', 1806, + ')', 1807, '+', 805, - '-', 1892, - '.', 2481, - '0', 2458, - ';', 1328, - '=', 1301, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1350, + '-', 1859, + '.', 2443, + '0', 2420, + ';', 1303, + '=', 1271, + 'I', 1523, + 'N', 1517, + '[', 1801, + '^', 3206, + '_', 1320, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1465, - 'd', 1379, - 'e', 1494, - 'f', 1357, - 'h', 1424, - 'i', 1410, - 'l', 1381, - 'm', 1360, - 'n', 1471, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1483, - 'u', 1508, - 'w', 1414, - '{', 2000, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1433, + 'd', 1349, + 'e', 1461, + 'f', 1327, + 'h', 1393, + 'i', 1380, + 'l', 1351, + 'm', 1330, + 'n', 1439, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1450, + 'u', 1475, + 'w', 1383, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1173); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') SKIP(1143); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); - case 1174: - if (eof) ADVANCE(1284); + case 1144: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, + '(', 1806, + ')', 1807, '+', 805, - '-', 1892, - '.', 2481, - '0', 2458, - ';', 1328, - '=', 1301, + '-', 1859, + '.', 2443, + '0', 2420, + ';', 1303, + '=', 1271, 'N', 986, - '[', 1834, + '[', 1801, '_', 833, '`', 834, 'c', 841, @@ -49174,2170 +47095,2170 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'f', 836, 'n', 923, 't', 936, - '{', 2000, - '|', 1841, - '}', 2001, + '{', 1967, + '|', 1808, + '}', 1968, 'I', 995, 'i', 995, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1174); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); + lookahead == ' ') SKIP(1144); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); END_STATE(); - case 1175: - if (eof) ADVANCE(1284); + case 1145: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, + '(', 1806, + ')', 1807, '+', 805, - '-', 1892, - '.', 2481, - '0', 2458, - ';', 1328, - '?', 2102, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1350, + '-', 1859, + '.', 2443, + '0', 2420, + ';', 1303, + '?', 2064, + 'I', 1523, + 'N', 1517, + '[', 1801, + '^', 3206, + '_', 1320, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1465, - 'd', 1379, - 'e', 1494, - 'f', 1357, - 'h', 1424, - 'i', 1410, - 'l', 1381, - 'm', 1360, - 'n', 1471, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1483, - 'u', 1508, - 'w', 1414, - '{', 2000, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1433, + 'd', 1349, + 'e', 1461, + 'f', 1327, + 'h', 1393, + 'i', 1380, + 'l', 1351, + 'm', 1330, + 'n', 1439, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1450, + 'u', 1475, + 'w', 1383, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1175); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') SKIP(1145); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); - case 1176: - if (eof) ADVANCE(1284); + case 1146: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, + '(', 1806, + ')', 1807, '+', 805, - '-', 1892, - '.', 2481, - '0', 2458, - ';', 1328, - '?', 2102, + '-', 1859, + '.', 2443, + '0', 2420, + ';', 1303, + '?', 2064, 'N', 986, - '[', 1834, + '[', 1801, '_', 833, '`', 834, 'f', 836, 'n', 923, 't', 936, - '{', 2000, - '|', 1841, - '}', 2001, + '{', 1967, + '|', 1808, + '}', 1968, 'I', 995, 'i', 995, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1176); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); + lookahead == ' ') SKIP(1146); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); END_STATE(); - case 1177: - if (eof) ADVANCE(1284); + case 1147: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, + '(', 1806, + ')', 1807, '+', 805, - '-', 1892, - '.', 2481, - '0', 2458, - ';', 1328, - 'E', 1332, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1350, + '-', 1859, + '.', 2443, + '0', 2420, + ';', 1303, + 'E', 1305, + 'I', 1523, + 'N', 1517, + '[', 1801, + '^', 3206, + '_', 1320, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1465, - 'd', 1379, - 'e', 1331, - 'f', 1357, - 'h', 1424, - 'i', 1410, - 'l', 1381, - 'm', 1360, - 'n', 1471, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1483, - 'u', 1508, - 'w', 1414, - '{', 2000, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1433, + 'd', 1349, + 'e', 1304, + 'f', 1327, + 'h', 1393, + 'i', 1380, + 'l', 1351, + 'm', 1330, + 'n', 1439, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1450, + 'u', 1475, + 'w', 1383, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1179); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') SKIP(1149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); - case 1178: - if (eof) ADVANCE(1284); + case 1148: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, + '(', 1806, + ')', 1807, '+', 805, - '-', 1892, - '.', 2481, - '0', 2458, - ';', 1328, - 'I', 1556, - 'N', 1550, - '[', 2535, - '^', 3246, - '_', 1350, + '-', 1859, + '.', 2443, + '0', 2420, + ';', 1303, + 'I', 1523, + 'N', 1517, + '[', 2497, + '^', 3206, + '_', 1320, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1465, - 'd', 1379, - 'e', 1494, - 'f', 1357, - 'h', 1424, - 'i', 1410, - 'l', 1381, - 'm', 1360, - 'n', 1471, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1483, - 'u', 1508, - 'w', 1414, - '{', 2000, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1433, + 'd', 1349, + 'e', 1461, + 'f', 1327, + 'h', 1393, + 'i', 1380, + 'l', 1351, + 'm', 1330, + 'n', 1439, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1450, + 'u', 1475, + 'w', 1383, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1179); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') SKIP(1149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); - case 1179: - if (eof) ADVANCE(1284); + case 1149: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, + '(', 1806, + ')', 1807, '+', 805, - '-', 1892, - '.', 2481, - '0', 2458, - ';', 1328, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1350, + '-', 1859, + '.', 2443, + '0', 2420, + ';', 1303, + 'I', 1523, + 'N', 1517, + '[', 1801, + '^', 3206, + '_', 1320, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1465, - 'd', 1379, - 'e', 1494, - 'f', 1357, - 'h', 1424, - 'i', 1410, - 'l', 1381, - 'm', 1360, - 'n', 1471, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1483, - 'u', 1508, - 'w', 1414, - '{', 2000, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1433, + 'd', 1349, + 'e', 1461, + 'f', 1327, + 'h', 1393, + 'i', 1380, + 'l', 1351, + 'm', 1330, + 'n', 1439, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1450, + 'u', 1475, + 'w', 1383, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1179); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') SKIP(1149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); - case 1180: - if (eof) ADVANCE(1284); + case 1150: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, + '(', 1806, + ')', 1807, '+', 805, - '-', 1892, - '.', 2481, - '0', 2458, - ';', 1328, - 'I', 1784, - 'N', 1775, - '[', 1834, - '^', 3246, - '_', 1659, + '-', 1859, + '.', 2443, + '0', 2420, + ';', 1303, + 'I', 1751, + 'N', 1742, + '[', 1801, + '^', 3206, + '_', 1626, '`', 834, - 'a', 1707, - 'b', 1738, - 'c', 1723, - 'd', 1671, - 'e', 1740, - 'f', 1661, - 'h', 1699, - 'i', 1694, - 'l', 1672, - 'm', 1666, - 'n', 1727, - 'o', 1773, - 'r', 1673, - 's', 1724, - 't', 1732, - 'u', 1749, - 'w', 1697, - '{', 2000, - '}', 2001, + 'a', 1674, + 'b', 1705, + 'c', 1690, + 'd', 1638, + 'e', 1707, + 'f', 1628, + 'h', 1666, + 'i', 1661, + 'l', 1639, + 'm', 1633, + 'n', 1694, + 'o', 1740, + 'r', 1640, + 's', 1691, + 't', 1699, + 'u', 1716, + 'w', 1664, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1179); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1793); + lookahead == ' ') SKIP(1149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1760); END_STATE(); - case 1181: - if (eof) ADVANCE(1284); + case 1151: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, + '(', 1806, + ')', 1807, '+', 805, - '-', 1892, - '.', 2481, - '0', 2458, - ';', 1328, + '-', 1859, + '.', 2443, + '0', 2420, + ';', 1303, 'N', 986, - '[', 2535, + '[', 2497, '_', 833, '`', 834, 'f', 836, 'n', 923, 't', 936, - '{', 2000, - '|', 1841, - '}', 2001, + '{', 1967, + '|', 1808, + '}', 1968, 'I', 995, 'i', 995, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1182); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); + lookahead == ' ') SKIP(1152); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); END_STATE(); - case 1182: - if (eof) ADVANCE(1284); + case 1152: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, + '(', 1806, + ')', 1807, '+', 805, - '-', 1892, - '.', 2481, - '0', 2458, - ';', 1328, + '-', 1859, + '.', 2443, + '0', 2420, + ';', 1303, 'N', 986, - '[', 1834, + '[', 1801, '_', 833, '`', 834, 'f', 836, 'n', 923, 't', 936, - '{', 2000, - '|', 1841, - '}', 2001, + '{', 1967, + '|', 1808, + '}', 1968, 'I', 995, 'i', 995, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1182); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); + lookahead == ' ') SKIP(1152); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); END_STATE(); - case 1183: - if (eof) ADVANCE(1284); + case 1153: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, + '(', 1806, + ')', 1807, '+', 805, - '-', 1892, - '.', 2481, - '0', 2458, - ';', 1328, - 'N', 1776, - '[', 1834, - '_', 1660, + '-', 1859, + '.', 2443, + '0', 2420, + ';', 1303, + 'N', 1743, + '[', 1801, + '_', 1627, '`', 834, - 'f', 1664, - 'n', 1726, - 't', 1736, - '{', 2000, - '|', 1841, - '}', 2001, - 'I', 1786, - 'i', 1786, + 'f', 1631, + 'n', 1693, + 't', 1703, + '{', 1967, + '|', 1808, + '}', 1968, + 'I', 1753, + 'i', 1753, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1182); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1794); + lookahead == ' ') SKIP(1152); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1761); END_STATE(); - case 1184: - if (eof) ADVANCE(1284); + case 1154: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, + '(', 1806, + ')', 1807, '+', 805, - '-', 1892, - '.', 2481, - '0', 2393, - ';', 1328, - 'E', 1332, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1352, + '-', 1859, + '.', 2443, + '0', 2355, + ';', 1303, + 'E', 1305, + 'I', 1523, + 'N', 1517, + '[', 1801, + '^', 3206, + '_', 1322, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1465, - 'd', 1379, - 'e', 1331, - 'f', 1357, - 'h', 1424, - 'i', 1410, - 'l', 1381, - 'm', 1360, - 'n', 1471, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1483, - 'u', 1508, - 'w', 1414, - '{', 2000, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1433, + 'd', 1349, + 'e', 1304, + 'f', 1327, + 'h', 1393, + 'i', 1380, + 'l', 1351, + 'm', 1330, + 'n', 1439, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1450, + 'u', 1475, + 'w', 1383, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1179); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') SKIP(1149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); - case 1185: - if (eof) ADVANCE(1284); + case 1155: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, + '(', 1806, + ')', 1807, '+', 805, - '-', 1892, - '.', 2481, - '0', 2393, - ';', 1328, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1352, + '-', 1859, + '.', 2443, + '0', 2355, + ';', 1303, + 'I', 1523, + 'N', 1517, + '[', 1801, + '^', 3206, + '_', 1322, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1465, - 'd', 1379, - 'e', 1494, - 'f', 1357, - 'h', 1424, - 'i', 1410, - 'l', 1381, - 'm', 1360, - 'n', 1471, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1483, - 'u', 1508, - 'w', 1414, - '{', 2000, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1433, + 'd', 1349, + 'e', 1461, + 'f', 1327, + 'h', 1393, + 'i', 1380, + 'l', 1351, + 'm', 1330, + 'n', 1439, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1450, + 'u', 1475, + 'w', 1383, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1179); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') SKIP(1149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); - case 1186: - if (eof) ADVANCE(1284); + case 1156: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, + '(', 1806, + ')', 1807, '+', 805, - '-', 1892, - '.', 2481, - '0', 2393, - ';', 1328, + '-', 1859, + '.', 2443, + '0', 2355, + ';', 1303, 'N', 986, - '[', 1834, + '[', 1801, '_', 832, '`', 834, 'f', 836, 'n', 923, 't', 936, - '{', 2000, - '|', 1841, - '}', 2001, + '{', 1967, + '|', 1808, + '}', 1968, 'E', 829, 'e', 829, 'I', 995, 'i', 995, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1182); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); + lookahead == ' ') SKIP(1152); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); END_STATE(); - case 1187: - if (eof) ADVANCE(1284); + case 1157: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, + '(', 1806, + ')', 1807, '+', 805, - '-', 1892, - '.', 2365, - '0', 2458, - ';', 1328, - '?', 2102, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1350, + '-', 1859, + '.', 2327, + '0', 2420, + ';', 1303, + '?', 2064, + 'I', 1523, + 'N', 1517, + '[', 1801, + '^', 3206, + '_', 1320, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1465, - 'd', 1379, - 'e', 1494, - 'f', 1357, - 'h', 1424, - 'i', 1410, - 'l', 1381, - 'm', 1360, - 'n', 1471, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1483, - 'u', 1508, - 'w', 1414, - '{', 2000, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1433, + 'd', 1349, + 'e', 1461, + 'f', 1327, + 'h', 1393, + 'i', 1380, + 'l', 1351, + 'm', 1330, + 'n', 1439, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1450, + 'u', 1475, + 'w', 1383, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1175); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') SKIP(1145); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); - case 1188: - if (eof) ADVANCE(1284); + case 1158: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, + '(', 1806, + ')', 1807, '+', 805, - '-', 1892, - '.', 2365, - '0', 2458, - ';', 1328, - '?', 2102, + '-', 1859, + '.', 2327, + '0', 2420, + ';', 1303, + '?', 2064, 'N', 986, - '[', 1834, + '[', 1801, '_', 833, '`', 834, 'f', 836, 'n', 923, 't', 936, - '{', 2000, - '|', 1841, - '}', 2001, + '{', 1967, + '|', 1808, + '}', 1968, 'E', 829, 'e', 829, 'I', 995, 'i', 995, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1176); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); + lookahead == ' ') SKIP(1146); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); END_STATE(); - case 1189: - if (eof) ADVANCE(1284); + case 1159: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, + '(', 1806, + ')', 1807, '+', 805, - '-', 1892, - '.', 2365, - '0', 2458, - ';', 1328, - 'E', 1332, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1350, + '-', 1859, + '.', 2327, + '0', 2420, + ';', 1303, + 'E', 1305, + 'I', 1523, + 'N', 1517, + '[', 1801, + '^', 3206, + '_', 1320, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1465, - 'd', 1379, - 'e', 1331, - 'f', 1357, - 'h', 1424, - 'i', 1410, - 'l', 1381, - 'm', 1360, - 'n', 1471, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1483, - 'u', 1508, - 'w', 1414, - '{', 2000, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1433, + 'd', 1349, + 'e', 1304, + 'f', 1327, + 'h', 1393, + 'i', 1380, + 'l', 1351, + 'm', 1330, + 'n', 1439, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1450, + 'u', 1475, + 'w', 1383, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1179); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') SKIP(1149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); - case 1190: - if (eof) ADVANCE(1284); + case 1160: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, + '(', 1806, + ')', 1807, '+', 805, - '-', 1892, - '.', 2480, - '0', 2458, - ';', 1328, - 'E', 1332, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1350, + '-', 1859, + '.', 2442, + '0', 2420, + ';', 1303, + 'E', 1305, + 'I', 1523, + 'N', 1517, + '[', 1801, + '^', 3206, + '_', 1320, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1465, - 'd', 1379, - 'e', 1331, - 'f', 1357, - 'h', 1424, - 'i', 1410, - 'l', 1381, - 'm', 1360, - 'n', 1471, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1483, - 'u', 1508, - 'w', 1414, - '{', 2000, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1433, + 'd', 1349, + 'e', 1304, + 'f', 1327, + 'h', 1393, + 'i', 1380, + 'l', 1351, + 'm', 1330, + 'n', 1439, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1450, + 'u', 1475, + 'w', 1383, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1179); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') SKIP(1149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); - case 1191: - if (eof) ADVANCE(1284); + case 1161: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, + '(', 1806, + ')', 1807, '+', 805, - '-', 1892, - '.', 2480, - '0', 2458, - ';', 1328, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1350, + '-', 1859, + '.', 2442, + '0', 2420, + ';', 1303, + 'I', 1523, + 'N', 1517, + '[', 1801, + '^', 3206, + '_', 1320, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1465, - 'd', 1379, - 'e', 1494, - 'f', 1357, - 'h', 1424, - 'i', 1410, - 'l', 1381, - 'm', 1360, - 'n', 1471, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1483, - 'u', 1508, - 'w', 1414, - '{', 2000, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1433, + 'd', 1349, + 'e', 1461, + 'f', 1327, + 'h', 1393, + 'i', 1380, + 'l', 1351, + 'm', 1330, + 'n', 1439, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1450, + 'u', 1475, + 'w', 1383, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1179); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') SKIP(1149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); - case 1192: - if (eof) ADVANCE(1284); + case 1162: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, + '(', 1806, + ')', 1807, '+', 805, - '-', 1892, - '.', 2480, - '0', 2458, - ';', 1328, + '-', 1859, + '.', 2442, + '0', 2420, + ';', 1303, 'N', 986, - '[', 1834, + '[', 1801, '_', 833, '`', 834, 'f', 836, 'n', 923, 't', 936, - '{', 2000, - '|', 1841, - '}', 2001, + '{', 1967, + '|', 1808, + '}', 1968, 'E', 829, 'e', 829, 'I', 995, 'i', 995, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1182); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); + lookahead == ' ') SKIP(1152); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); END_STATE(); - case 1193: - if (eof) ADVANCE(1284); + case 1163: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, + '(', 1806, + ')', 1807, '+', 805, - '-', 1892, - '.', 2480, - '0', 2393, - ';', 1328, - 'E', 1332, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1352, + '-', 1859, + '.', 2442, + '0', 2355, + ';', 1303, + 'E', 1305, + 'I', 1523, + 'N', 1517, + '[', 1801, + '^', 3206, + '_', 1322, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1465, - 'd', 1379, - 'e', 1331, - 'f', 1357, - 'h', 1424, - 'i', 1410, - 'l', 1381, - 'm', 1360, - 'n', 1471, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1483, - 'u', 1508, - 'w', 1414, - '{', 2000, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1433, + 'd', 1349, + 'e', 1304, + 'f', 1327, + 'h', 1393, + 'i', 1380, + 'l', 1351, + 'm', 1330, + 'n', 1439, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1450, + 'u', 1475, + 'w', 1383, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1179); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') SKIP(1149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); - case 1194: - if (eof) ADVANCE(1284); + case 1164: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, + '(', 1806, + ')', 1807, '+', 805, - '-', 1892, - '.', 2480, - '0', 2393, - ';', 1328, + '-', 1859, + '.', 2442, + '0', 2355, + ';', 1303, 'N', 986, - '[', 1834, + '[', 1801, '_', 832, '`', 834, 'f', 836, 'n', 923, 't', 936, - '{', 2000, - '|', 1841, - '}', 2001, + '{', 1967, + '|', 1808, + '}', 1968, 'E', 829, 'e', 829, 'I', 995, 'i', 995, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1182); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); + lookahead == ' ') SKIP(1152); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); END_STATE(); - case 1195: - if (eof) ADVANCE(1284); + case 1165: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '+', 3574, - '-', 1907, - '.', 2365, - '0', 2393, - ';', 1328, - 'I', 3671, - 'N', 3667, - '[', 1834, - '^', 3246, - '_', 3580, + '(', 1806, + ')', 1807, + '+', 3282, + '-', 1859, + '.', 2443, + '0', 2423, + ';', 1303, + 'N', 3373, + '[', 1801, + '_', 3299, '`', 834, - 'a', 3611, - 'b', 3656, - 'c', 3625, - 'd', 3592, - 'e', 3657, - 'f', 3588, - 'h', 3601, - 'i', 3597, - 'l', 3594, - 'm', 3589, - 'n', 3637, - 'o', 3666, - 'r', 3595, - 's', 3627, - 't', 3648, - 'u', 3659, - 'w', 3599, - '{', 2000, - '}', 2001, - '<', 3791, - '=', 3791, + 'e', 3270, + 'f', 3306, + 'n', 3367, + 'o', 3272, + 't', 3345, + '{', 1967, + '|', 1808, + '}', 1968, + '\t', 3209, + ' ', 3209, + 'I', 3378, + 'i', 3378, ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1204); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3676); + if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2436); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3566); + lookahead != ']') ADVANCE(3396); END_STATE(); - case 1196: - if (eof) ADVANCE(1284); + case 1166: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '+', 3322, - '-', 1892, - '.', 2481, - '0', 2461, - ';', 1328, - 'N', 3413, - '[', 1834, - '_', 3339, + '(', 1806, + ')', 1807, + '+', 3282, + '-', 1859, + '.', 2443, + '0', 2423, + ';', 1303, + 'N', 3373, + '[', 1801, + '_', 3299, '`', 834, - 'e', 3310, - 'f', 3346, - 'n', 3407, - 'o', 3312, - 't', 3385, - '{', 2000, - '|', 1841, - '}', 2001, - '\t', 3249, - ' ', 3249, - 'I', 3418, - 'i', 3418, + 'e', 3270, + 'f', 3306, + 'n', 3367, + 'o', 3272, + 't', 3345, + '{', 1967, + '|', 1808, + '}', 1968, + 'I', 3378, + 'i', 3378, ); - if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1197); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2474); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(1166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2436); if (lookahead != 0 && - lookahead != ']') ADVANCE(3436); + lookahead != ']') ADVANCE(3396); END_STATE(); - case 1197: - if (eof) ADVANCE(1284); + case 1167: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '+', 3322, - '-', 1892, - '.', 2481, - '0', 2461, - ';', 1328, - 'N', 3413, - '[', 1834, - '_', 3339, + '(', 1806, + ')', 1807, + '+', 3533, + '-', 1874, + '.', 2327, + '0', 2355, + ';', 1303, + 'I', 3629, + 'N', 3625, + '[', 1801, + '^', 3206, + '_', 3539, '`', 834, - 'e', 3310, - 'f', 3346, - 'n', 3407, - 'o', 3312, - 't', 3385, - '{', 2000, - '|', 1841, - '}', 2001, - 'I', 3418, - 'i', 3418, + 'a', 3569, + 'b', 3614, + 'c', 3583, + 'd', 3551, + 'e', 3615, + 'f', 3547, + 'h', 3560, + 'i', 3556, + 'l', 3553, + 'm', 3548, + 'n', 3595, + 'o', 3624, + 'r', 3554, + 's', 3585, + 't', 3606, + 'u', 3617, + 'w', 3558, + '{', 1967, + '}', 1968, + '<', 3748, + '=', 3748, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1197); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2474); + lookahead == ' ') SKIP(1174); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3634); if (lookahead != 0 && - lookahead != ']') ADVANCE(3436); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3525); END_STATE(); - case 1198: - if (eof) ADVANCE(1284); + case 1168: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '+', 3685, - '-', 1907, - '.', 2365, - '0', 2393, - ';', 1328, - 'I', 3785, - 'N', 3781, - '[', 1834, - '^', 3246, - '_', 3694, + '(', 1806, + ')', 1807, + '+', 3769, + '-', 1859, + '.', 2443, + '0', 3827, + ';', 1303, + 'I', 3961, + 'N', 3957, + '[', 1801, + '^', 3206, + '_', 3820, '`', 834, - 'a', 3725, - 'b', 3770, - 'c', 3739, - 'd', 3706, - 'e', 3771, - 'f', 3702, - 'h', 3715, - 'i', 3711, - 'l', 3708, - 'm', 3703, - 'n', 3751, - 'o', 3780, - 'r', 3709, - 's', 3741, - 't', 3762, - 'u', 3773, - 'w', 3713, - '{', 2000, - '}', 2001, + 'a', 3884, + 'b', 3941, + 'c', 3898, + 'd', 3849, + 'e', 3942, + 'f', 3843, + 'h', 3873, + 'i', 3866, + 'l', 3851, + 'm', 3844, + 'n', 3913, + 'o', 3956, + 'r', 3852, + 's', 3900, + 't', 3930, + 'u', 3949, + 'w', 3869, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1204); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3790); + lookahead == ' ') SKIP(1149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3831); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3966); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3677); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3748); END_STATE(); - case 1199: - if (eof) ADVANCE(1284); + case 1169: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '+', 3812, - '-', 1892, - '.', 2481, - '0', 3870, - ';', 1328, - 'I', 4005, - 'N', 4001, - '[', 1834, - '^', 3246, - '_', 3863, + '(', 1806, + ')', 1807, + '+', 3769, + '-', 1859, + '.', 2443, + '0', 3827, + ';', 1303, + 'N', 3960, + '[', 1801, + '_', 3826, '`', 834, - 'a', 3928, - 'b', 3985, - 'c', 3942, - 'd', 3892, - 'e', 3986, - 'f', 3886, - 'h', 3916, - 'i', 3909, - 'l', 3894, - 'm', 3887, - 'n', 3957, - 'o', 4000, - 'r', 3895, - 's', 3944, - 't', 3974, - 'u', 3993, - 'w', 3912, - '{', 2000, - '}', 2001, + 'f', 3841, + 'n', 3922, + 't', 3938, + '{', 1967, + '|', 1808, + '}', 1968, + 'I', 3964, + 'i', 3964, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1179); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3874); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4010); + lookahead == ' ') SKIP(1152); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3831); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3791); + lookahead != ']') ADVANCE(3748); END_STATE(); - case 1200: - if (eof) ADVANCE(1284); + case 1170: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '+', 3812, - '-', 1892, - '.', 2481, - '0', 3870, - ';', 1328, - 'N', 4004, - '[', 1834, - '_', 3869, + '(', 1806, + ')', 1807, + '+', 3643, + '-', 1874, + '.', 2327, + '0', 2355, + ';', 1303, + 'I', 3742, + 'N', 3738, + '[', 1801, + '^', 3206, + '_', 3652, '`', 834, - 'f', 3884, - 'n', 3966, - 't', 3982, - '{', 2000, - '|', 1841, - '}', 2001, - 'I', 4008, - 'i', 4008, + 'a', 3682, + 'b', 3727, + 'c', 3696, + 'd', 3664, + 'e', 3728, + 'f', 3660, + 'h', 3673, + 'i', 3669, + 'l', 3666, + 'm', 3661, + 'n', 3708, + 'o', 3737, + 'r', 3667, + 's', 3698, + 't', 3719, + 'u', 3730, + 'w', 3671, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1182); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3874); + lookahead == ' ') SKIP(1174); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3747); if (lookahead != 0 && - lookahead != ']') ADVANCE(3791); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3635); END_STATE(); - case 1201: - if (eof) ADVANCE(1284); + case 1171: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, + '(', 1806, + ')', 1807, '+', 809, - '-', 1893, - '.', 2481, - '0', 2458, - ';', 1328, - '=', 1301, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1350, + '-', 1860, + '.', 2443, + '0', 2420, + ';', 1303, + '=', 1271, + 'I', 1523, + 'N', 1517, + '[', 1801, + '^', 3206, + '_', 1320, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1465, - 'd', 1379, - 'e', 1494, - 'f', 1357, - 'h', 1424, - 'i', 1410, - 'l', 1381, - 'm', 1360, - 'n', 1471, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1483, - 'u', 1508, - 'w', 1414, - '{', 2000, - '|', 1841, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1433, + 'd', 1349, + 'e', 1461, + 'f', 1327, + 'h', 1393, + 'i', 1380, + 'l', 1351, + 'm', 1330, + 'n', 1439, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1450, + 'u', 1475, + 'w', 1383, + '{', 1967, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1201); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') SKIP(1171); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); - case 1202: - if (eof) ADVANCE(1284); + case 1172: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, + '(', 1806, + ')', 1807, '+', 809, - '-', 1893, - '.', 2481, - '0', 2458, - ';', 1328, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1350, + '-', 1860, + '.', 2443, + '0', 2420, + ';', 1303, + 'I', 1523, + 'N', 1517, + '[', 1801, + '^', 3206, + '_', 1320, '`', 834, - 'a', 1440, - 'b', 1492, - 'c', 1465, - 'd', 1379, - 'e', 1494, - 'f', 1357, - 'h', 1424, - 'i', 1410, - 'l', 1381, - 'm', 1360, - 'n', 1471, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1483, - 'u', 1508, - 'w', 1414, - '{', 2000, - '}', 2001, + 'a', 1408, + 'b', 1459, + 'c', 1433, + 'd', 1349, + 'e', 1461, + 'f', 1327, + 'h', 1393, + 'i', 1380, + 'l', 1351, + 'm', 1330, + 'n', 1439, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1450, + 'u', 1475, + 'w', 1383, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1202); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') SKIP(1172); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); - case 1203: - if (eof) ADVANCE(1284); + case 1173: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, + '(', 1806, + ')', 1807, '+', 809, - '-', 1893, - '.', 2481, - '0', 2458, - ';', 1328, + '-', 1860, + '.', 2443, + '0', 2420, + ';', 1303, 'N', 986, - '[', 1834, + '[', 1801, '_', 833, '`', 834, 'f', 836, 'n', 923, 't', 936, - '{', 2000, - '|', 1841, - '}', 2001, + '{', 1967, + '|', 1808, + '}', 1968, 'I', 995, 'i', 995, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1203); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); + lookahead == ' ') SKIP(1173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); END_STATE(); - case 1204: - if (eof) ADVANCE(1284); + case 1174: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, + '(', 1806, + ')', 1807, '+', 809, - '-', 1907, - '.', 2481, - '0', 2458, - ';', 1328, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1350, + '-', 1874, + '.', 2443, + '0', 2420, + ';', 1303, + 'I', 1523, + 'N', 1517, + '[', 1801, + '^', 3206, + '_', 1320, '`', 834, - 'a', 1441, - 'b', 1492, - 'c', 1465, - 'd', 1379, - 'e', 1494, - 'f', 1357, - 'h', 1424, - 'i', 1410, - 'l', 1381, - 'm', 1360, - 'n', 1471, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1483, - 'u', 1508, - 'w', 1414, - '{', 2000, - '}', 2001, + 'a', 1409, + 'b', 1459, + 'c', 1433, + 'd', 1349, + 'e', 1461, + 'f', 1327, + 'h', 1393, + 'i', 1380, + 'l', 1351, + 'm', 1330, + 'n', 1439, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1450, + 'u', 1475, + 'w', 1383, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1204); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') SKIP(1174); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); - case 1205: - if (eof) ADVANCE(1284); + case 1175: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '+', 3449, - '-', 1902, - '.', 2481, - '0', 2393, - ';', 1328, - 'I', 3560, - 'N', 3556, - '[', 1834, - '^', 3246, - '_', 3463, + '(', 1806, + ')', 1807, + '+', 3409, + '-', 1869, + '.', 2443, + '0', 2355, + ';', 1303, + 'I', 3519, + 'N', 3515, + '[', 1801, + '^', 3206, + '_', 3423, '`', 834, - 'a', 3500, - 'b', 3545, - 'c', 3514, - 'd', 3481, - 'e', 3546, - 'f', 3477, - 'h', 3490, - 'i', 3486, - 'l', 3483, - 'm', 3478, - 'n', 3526, - 'o', 3555, - 'r', 3484, - 's', 3516, - 't', 3537, - 'u', 3548, - 'w', 3488, - '{', 2000, - '}', 2001, + 'a', 3459, + 'b', 3504, + 'c', 3473, + 'd', 3441, + 'e', 3505, + 'f', 3437, + 'h', 3450, + 'i', 3446, + 'l', 3443, + 'm', 3438, + 'n', 3485, + 'o', 3514, + 'r', 3444, + 's', 3475, + 't', 3496, + 'u', 3507, + 'w', 3448, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1162); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3565); + lookahead == ' ') SKIP(1138); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3524); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3437); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3397); END_STATE(); - case 1206: - if (eof) ADVANCE(1284); + case 1176: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '+', 3449, - '-', 1892, - '.', 2364, - '0', 2393, - ';', 1328, - 'E', 3446, - 'I', 3560, - 'N', 3556, - '[', 1834, - '^', 3246, - '_', 3463, + '(', 1806, + ')', 1807, + '+', 3409, + '-', 1859, + '.', 2326, + '0', 2355, + ';', 1303, + 'E', 3406, + 'I', 3519, + 'N', 3515, + '[', 1801, + '^', 3206, + '_', 3423, '`', 834, - 'a', 3499, - 'b', 3545, - 'c', 3514, - 'd', 3481, - 'e', 3445, - 'f', 3477, - 'h', 3490, - 'i', 3486, - 'l', 3483, - 'm', 3478, - 'n', 3526, - 'o', 3555, - 'r', 3484, - 's', 3516, - 't', 3537, - 'u', 3548, - 'w', 3488, - '{', 2000, - '}', 2001, + 'a', 3458, + 'b', 3504, + 'c', 3473, + 'd', 3441, + 'e', 3405, + 'f', 3437, + 'h', 3450, + 'i', 3446, + 'l', 3443, + 'm', 3438, + 'n', 3485, + 'o', 3514, + 'r', 3444, + 's', 3475, + 't', 3496, + 'u', 3507, + 'w', 3448, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1179); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3565); + lookahead == ' ') SKIP(1149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3524); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3437); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3397); END_STATE(); - case 1207: - if (eof) ADVANCE(1284); + case 1177: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '+', 3449, - '-', 1892, - '.', 2364, - '0', 2393, - ';', 1328, - 'N', 3559, - '[', 1834, - '_', 3466, + '(', 1806, + ')', 1807, + '+', 3409, + '-', 1859, + '.', 2326, + '0', 2355, + ';', 1303, + 'N', 3518, + '[', 1801, + '_', 3426, '`', 834, - 'f', 3476, - 'n', 3532, - 't', 3543, - '{', 2000, - '|', 1841, - '}', 2001, - 'E', 3461, - 'e', 3461, - 'I', 3563, - 'i', 3563, + 'f', 3436, + 'n', 3491, + 't', 3502, + '{', 1967, + '|', 1808, + '}', 1968, + 'E', 3421, + 'e', 3421, + 'I', 3522, + 'i', 3522, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1182); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); + lookahead == ' ') SKIP(1152); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); if (lookahead != 0 && - lookahead != ']') ADVANCE(3437); + lookahead != ']') ADVANCE(3397); END_STATE(); - case 1208: - if (eof) ADVANCE(1284); + case 1178: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '+', 3449, - '-', 1892, - '.', 2364, - '0', 3469, - ';', 1328, - 'E', 3446, - 'I', 3560, - 'N', 3556, - '[', 1834, - '^', 3246, - '_', 3459, + '(', 1806, + ')', 1807, + '+', 3409, + '-', 1859, + '.', 2326, + '0', 3429, + ';', 1303, + 'E', 3406, + 'I', 3519, + 'N', 3515, + '[', 1801, + '^', 3206, + '_', 3419, '`', 834, - 'a', 3499, - 'b', 3545, - 'c', 3514, - 'd', 3481, - 'e', 3445, - 'f', 3477, - 'h', 3490, - 'i', 3486, - 'l', 3483, - 'm', 3478, - 'n', 3526, - 'o', 3555, - 'r', 3484, - 's', 3516, - 't', 3537, - 'u', 3548, - 'w', 3488, - '{', 2000, - '}', 2001, + 'a', 3458, + 'b', 3504, + 'c', 3473, + 'd', 3441, + 'e', 3405, + 'f', 3437, + 'h', 3450, + 'i', 3446, + 'l', 3443, + 'm', 3438, + 'n', 3485, + 'o', 3514, + 'r', 3444, + 's', 3475, + 't', 3496, + 'u', 3507, + 'w', 3448, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1179); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3565); + lookahead == ' ') SKIP(1149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3431); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3524); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3437); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3397); END_STATE(); - case 1209: - if (eof) ADVANCE(1284); + case 1179: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '+', 3449, - '-', 1892, - '.', 2364, - '0', 3469, - ';', 1328, - 'I', 3560, - 'N', 3556, - '[', 1834, - '^', 3246, - '_', 3459, + '(', 1806, + ')', 1807, + '+', 3409, + '-', 1859, + '.', 2326, + '0', 3429, + ';', 1303, + 'I', 3519, + 'N', 3515, + '[', 1801, + '^', 3206, + '_', 3419, '`', 834, - 'a', 3499, - 'b', 3545, - 'c', 3514, - 'd', 3481, - 'e', 3546, - 'f', 3477, - 'h', 3490, - 'i', 3486, - 'l', 3483, - 'm', 3478, - 'n', 3526, - 'o', 3555, - 'r', 3484, - 's', 3516, - 't', 3537, - 'u', 3548, - 'w', 3488, - '{', 2000, - '}', 2001, + 'a', 3458, + 'b', 3504, + 'c', 3473, + 'd', 3441, + 'e', 3505, + 'f', 3437, + 'h', 3450, + 'i', 3446, + 'l', 3443, + 'm', 3438, + 'n', 3485, + 'o', 3514, + 'r', 3444, + 's', 3475, + 't', 3496, + 'u', 3507, + 'w', 3448, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1179); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3565); + lookahead == ' ') SKIP(1149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3431); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3524); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3437); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3397); END_STATE(); - case 1210: - if (eof) ADVANCE(1284); + case 1180: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '+', 3449, - '-', 1892, - '.', 2364, - '0', 3469, - ';', 1328, - 'N', 3559, - '[', 1834, - '_', 3468, + '(', 1806, + ')', 1807, + '+', 3409, + '-', 1859, + '.', 2326, + '0', 3429, + ';', 1303, + 'N', 3518, + '[', 1801, + '_', 3428, '`', 834, - 'f', 3476, - 'n', 3532, - 't', 3543, - '{', 2000, - '|', 1841, - '}', 2001, - 'E', 3461, - 'e', 3461, - 'I', 3563, - 'i', 3563, + 'f', 3436, + 'n', 3491, + 't', 3502, + '{', 1967, + '|', 1808, + '}', 1968, + 'E', 3421, + 'e', 3421, + 'I', 3522, + 'i', 3522, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1182); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3471); + lookahead == ' ') SKIP(1152); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3431); if (lookahead != 0 && - lookahead != ']') ADVANCE(3437); + lookahead != ']') ADVANCE(3397); END_STATE(); - case 1211: - if (eof) ADVANCE(1284); + case 1181: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '+', 3449, - '-', 1892, - '.', 2364, - '0', 3469, - ';', 1328, - 'N', 3559, - '[', 1834, - '_', 3468, + '(', 1806, + ')', 1807, + '+', 3409, + '-', 1859, + '.', 2326, + '0', 3429, + ';', 1303, + 'N', 3518, + '[', 1801, + '_', 3428, '`', 834, - 'f', 3476, - 'n', 3532, - 't', 3543, - '{', 2000, - '|', 1841, - '}', 2001, - 'I', 3563, - 'i', 3563, + 'f', 3436, + 'n', 3491, + 't', 3502, + '{', 1967, + '|', 1808, + '}', 1968, + 'I', 3522, + 'i', 3522, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1182); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3471); + lookahead == ' ') SKIP(1152); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3431); if (lookahead != 0 && - lookahead != ']') ADVANCE(3437); + lookahead != ']') ADVANCE(3397); END_STATE(); - case 1212: - if (eof) ADVANCE(1284); + case 1182: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '+', 3449, - '-', 1892, - '.', 2481, - '0', 2393, - ';', 1328, - 'I', 3560, - 'N', 3556, - '[', 1834, - '^', 3246, - '_', 3463, + '(', 1806, + ')', 1807, + '+', 3409, + '-', 1859, + '.', 2443, + '0', 2355, + ';', 1303, + 'I', 3519, + 'N', 3515, + '[', 1801, + '^', 3206, + '_', 3423, '`', 834, - 'a', 3499, - 'b', 3545, - 'c', 3514, - 'd', 3481, - 'e', 3546, - 'f', 3477, - 'h', 3490, - 'i', 3486, - 'l', 3483, - 'm', 3478, - 'n', 3526, - 'o', 3555, - 'r', 3484, - 's', 3516, - 't', 3537, - 'u', 3548, - 'w', 3488, - '{', 2000, - '}', 2001, + 'a', 3458, + 'b', 3504, + 'c', 3473, + 'd', 3441, + 'e', 3505, + 'f', 3437, + 'h', 3450, + 'i', 3446, + 'l', 3443, + 'm', 3438, + 'n', 3485, + 'o', 3514, + 'r', 3444, + 's', 3475, + 't', 3496, + 'u', 3507, + 'w', 3448, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1179); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3565); + lookahead == ' ') SKIP(1149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3524); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3437); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3397); END_STATE(); - case 1213: - if (eof) ADVANCE(1284); + case 1183: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '+', 3449, - '-', 1892, - '.', 2481, - '0', 2393, - ';', 1328, - 'N', 3559, - '[', 1834, - '_', 3466, + '(', 1806, + ')', 1807, + '+', 3409, + '-', 1859, + '.', 2443, + '0', 2355, + ';', 1303, + 'N', 3518, + '[', 1801, + '_', 3426, '`', 834, - 'f', 3476, - 'n', 3532, - 't', 3543, - '{', 2000, - '|', 1841, - '}', 2001, - 'I', 3563, - 'i', 3563, + 'f', 3436, + 'n', 3491, + 't', 3502, + '{', 1967, + '|', 1808, + '}', 1968, + 'I', 3522, + 'i', 3522, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1182); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); + lookahead == ' ') SKIP(1152); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); if (lookahead != 0 && - lookahead != ']') ADVANCE(3437); + lookahead != ']') ADVANCE(3397); END_STATE(); - case 1214: - if (eof) ADVANCE(1284); + case 1184: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '+', 3449, - '-', 1892, - '.', 2365, - '0', 2393, - ';', 1328, - 'E', 3446, - 'I', 3560, - 'N', 3556, - '[', 1834, - '^', 3246, - '_', 3463, + '(', 1806, + ')', 1807, + '+', 3409, + '-', 1859, + '.', 2327, + '0', 2355, + ';', 1303, + 'E', 3406, + 'I', 3519, + 'N', 3515, + '[', 1801, + '^', 3206, + '_', 3423, '`', 834, - 'a', 3499, - 'b', 3545, - 'c', 3514, - 'd', 3481, - 'e', 3445, - 'f', 3477, - 'h', 3490, - 'i', 3486, - 'l', 3483, - 'm', 3478, - 'n', 3526, - 'o', 3555, - 'r', 3484, - 's', 3516, - 't', 3537, - 'u', 3548, - 'w', 3488, - '{', 2000, - '}', 2001, + 'a', 3458, + 'b', 3504, + 'c', 3473, + 'd', 3441, + 'e', 3405, + 'f', 3437, + 'h', 3450, + 'i', 3446, + 'l', 3443, + 'm', 3438, + 'n', 3485, + 'o', 3514, + 'r', 3444, + 's', 3475, + 't', 3496, + 'u', 3507, + 'w', 3448, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1179); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3565); + lookahead == ' ') SKIP(1149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3524); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3437); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3397); END_STATE(); - case 1215: - if (eof) ADVANCE(1284); + case 1185: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '+', 3449, - '-', 1892, - '.', 2365, - '0', 2393, - ';', 1328, - 'I', 3560, - 'N', 3556, - '[', 1834, - '^', 3246, - '_', 3463, + '(', 1806, + ')', 1807, + '+', 3409, + '-', 1859, + '.', 2327, + '0', 2355, + ';', 1303, + 'I', 3519, + 'N', 3515, + '[', 1801, + '^', 3206, + '_', 3423, '`', 834, - 'a', 3499, - 'b', 3545, - 'c', 3514, - 'd', 3481, - 'e', 3546, - 'f', 3477, - 'h', 3490, - 'i', 3486, - 'l', 3483, - 'm', 3478, - 'n', 3526, - 'o', 3555, - 'r', 3484, - 's', 3516, - 't', 3537, - 'u', 3548, - 'w', 3488, - '{', 2000, - '}', 2001, + 'a', 3458, + 'b', 3504, + 'c', 3473, + 'd', 3441, + 'e', 3505, + 'f', 3437, + 'h', 3450, + 'i', 3446, + 'l', 3443, + 'm', 3438, + 'n', 3485, + 'o', 3514, + 'r', 3444, + 's', 3475, + 't', 3496, + 'u', 3507, + 'w', 3448, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1179); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3565); + lookahead == ' ') SKIP(1149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3524); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3437); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3397); END_STATE(); - case 1216: - if (eof) ADVANCE(1284); + case 1186: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '+', 3449, - '-', 1892, - '.', 2365, - '0', 2393, - ';', 1328, - 'N', 3559, - '[', 1834, - '_', 3466, + '(', 1806, + ')', 1807, + '+', 3409, + '-', 1859, + '.', 2327, + '0', 2355, + ';', 1303, + 'N', 3518, + '[', 1801, + '_', 3426, '`', 834, - 'f', 3476, - 'n', 3532, - 't', 3543, - '{', 2000, - '|', 1841, - '}', 2001, - 'E', 3461, - 'e', 3461, - 'I', 3563, - 'i', 3563, + 'f', 3436, + 'n', 3491, + 't', 3502, + '{', 1967, + '|', 1808, + '}', 1968, + 'E', 3421, + 'e', 3421, + 'I', 3522, + 'i', 3522, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1182); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); + lookahead == ' ') SKIP(1152); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); if (lookahead != 0 && - lookahead != ']') ADVANCE(3437); + lookahead != ']') ADVANCE(3397); END_STATE(); - case 1217: - if (eof) ADVANCE(1284); + case 1187: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '+', 3449, - '-', 1892, - '.', 2365, - '0', 2393, - ';', 1328, - 'N', 3559, - '[', 1834, - '_', 3466, + '(', 1806, + ')', 1807, + '+', 3409, + '-', 1859, + '.', 2327, + '0', 2355, + ';', 1303, + 'N', 3518, + '[', 1801, + '_', 3426, '`', 834, - 'f', 3476, - 'n', 3532, - 't', 3543, - '{', 2000, - '|', 1841, - '}', 2001, - 'I', 3563, - 'i', 3563, + 'f', 3436, + 'n', 3491, + 't', 3502, + '{', 1967, + '|', 1808, + '}', 1968, + 'I', 3522, + 'i', 3522, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1182); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2403); + lookahead == ' ') SKIP(1152); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2365); if (lookahead != 0 && - lookahead != ']') ADVANCE(3437); + lookahead != ']') ADVANCE(3397); END_STATE(); - case 1218: - if (eof) ADVANCE(1284); + case 1188: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '+', 3449, - '-', 1892, - '.', 2365, - '0', 3469, - ';', 1328, - 'E', 3446, - 'I', 3560, - 'N', 3556, - '[', 1834, - '^', 3246, - '_', 3459, + '(', 1806, + ')', 1807, + '+', 3409, + '-', 1859, + '.', 2327, + '0', 3429, + ';', 1303, + 'E', 3406, + 'I', 3519, + 'N', 3515, + '[', 1801, + '^', 3206, + '_', 3419, '`', 834, - 'a', 3499, - 'b', 3545, - 'c', 3514, - 'd', 3481, - 'e', 3445, - 'f', 3477, - 'h', 3490, - 'i', 3486, - 'l', 3483, - 'm', 3478, - 'n', 3526, - 'o', 3555, - 'r', 3484, - 's', 3516, - 't', 3537, - 'u', 3548, - 'w', 3488, - '{', 2000, - '}', 2001, + 'a', 3458, + 'b', 3504, + 'c', 3473, + 'd', 3441, + 'e', 3405, + 'f', 3437, + 'h', 3450, + 'i', 3446, + 'l', 3443, + 'm', 3438, + 'n', 3485, + 'o', 3514, + 'r', 3444, + 's', 3475, + 't', 3496, + 'u', 3507, + 'w', 3448, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1179); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3565); + lookahead == ' ') SKIP(1149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3431); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3524); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3437); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3397); END_STATE(); - case 1219: - if (eof) ADVANCE(1284); + case 1189: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '+', 3449, - '-', 1892, - '.', 2365, - '0', 3469, - ';', 1328, - 'I', 3560, - 'N', 3556, - '[', 1834, - '^', 3246, - '_', 3459, + '(', 1806, + ')', 1807, + '+', 3409, + '-', 1859, + '.', 2327, + '0', 3429, + ';', 1303, + 'I', 3519, + 'N', 3515, + '[', 1801, + '^', 3206, + '_', 3419, '`', 834, - 'a', 3499, - 'b', 3545, - 'c', 3514, - 'd', 3481, - 'e', 3546, - 'f', 3477, - 'h', 3490, - 'i', 3486, - 'l', 3483, - 'm', 3478, - 'n', 3526, - 'o', 3555, - 'r', 3484, - 's', 3516, - 't', 3537, - 'u', 3548, - 'w', 3488, - '{', 2000, - '}', 2001, + 'a', 3458, + 'b', 3504, + 'c', 3473, + 'd', 3441, + 'e', 3505, + 'f', 3437, + 'h', 3450, + 'i', 3446, + 'l', 3443, + 'm', 3438, + 'n', 3485, + 'o', 3514, + 'r', 3444, + 's', 3475, + 't', 3496, + 'u', 3507, + 'w', 3448, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1179); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3565); + lookahead == ' ') SKIP(1149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3431); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3524); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3437); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3397); END_STATE(); - case 1220: - if (eof) ADVANCE(1284); + case 1190: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '+', 3449, - '-', 1892, - '.', 2365, - '0', 3469, - ';', 1328, - 'N', 3559, - '[', 1834, - '_', 3468, + '(', 1806, + ')', 1807, + '+', 3409, + '-', 1859, + '.', 2327, + '0', 3429, + ';', 1303, + 'N', 3518, + '[', 1801, + '_', 3428, '`', 834, - 'f', 3476, - 'n', 3532, - 't', 3543, - '{', 2000, - '|', 1841, - '}', 2001, - 'E', 3461, - 'e', 3461, - 'I', 3563, - 'i', 3563, + 'f', 3436, + 'n', 3491, + 't', 3502, + '{', 1967, + '|', 1808, + '}', 1968, + 'E', 3421, + 'e', 3421, + 'I', 3522, + 'i', 3522, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1182); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3471); + lookahead == ' ') SKIP(1152); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3431); if (lookahead != 0 && - lookahead != ']') ADVANCE(3437); + lookahead != ']') ADVANCE(3397); END_STATE(); - case 1221: - if (eof) ADVANCE(1284); + case 1191: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4941, - '$', 1845, + '\n', 1762, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '+', 3449, - '-', 1892, - '.', 2365, - '0', 3469, - ';', 1328, - 'N', 3559, - '[', 1834, - '_', 3468, + '(', 1806, + ')', 1807, + '+', 3409, + '-', 1859, + '.', 2327, + '0', 3429, + ';', 1303, + 'N', 3518, + '[', 1801, + '_', 3428, '`', 834, - 'f', 3476, - 'n', 3532, - 't', 3543, - '{', 2000, - '|', 1841, - '}', 2001, - 'I', 3563, - 'i', 3563, + 'f', 3436, + 'n', 3491, + 't', 3502, + '{', 1967, + '|', 1808, + '}', 1968, + 'I', 3522, + 'i', 3522, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1182); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3471); + lookahead == ' ') SKIP(1152); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3431); if (lookahead != 0 && - lookahead != ']') ADVANCE(3437); + lookahead != ']') ADVANCE(3397); END_STATE(); - case 1222: - if (eof) ADVANCE(1284); + case 1192: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4952, - '$', 1847, + '\n', 1762, + '"', 2516, + '#', 4906, + '$', 1813, '\'', 791, - '(', 2360, - ')', 1840, - '+', 4153, - '-', 1898, - '.', 2484, - '0', 4176, - ';', 1328, - 'I', 4569, - 'N', 4559, - '[', 1834, - '^', 3248, - '_', 4172, + '(', 2322, + ')', 1807, + '+', 4109, + '-', 1862, + '.', 2444, + '0', 4132, + ';', 1303, + 'I', 4524, + 'N', 4514, + '[', 1801, + '^', 3207, + '_', 4128, '`', 834, - 'a', 4322, - 'b', 4427, - 'c', 4367, - 'd', 4224, - 'e', 4428, - 'f', 4181, - 'h', 4298, - 'i', 4271, - 'l', 4248, - 'm', 4193, - 'n', 4392, - 'o', 4526, - 'r', 4225, - 's', 4369, - 't', 4402, - 'u', 4454, - 'w', 4275, - '{', 2000, - '}', 2001, - '\t', 3249, - ' ', 3249, + 'a', 4277, + 'b', 4382, + 'c', 4322, + 'd', 4180, + 'e', 4383, + 'f', 4137, + 'h', 4254, + 'i', 4225, + 'l', 4204, + 'm', 4149, + 'n', 4347, + 'o', 4481, + 'r', 4181, + 's', 4324, + 't', 4359, + 'u', 4409, + 'w', 4231, + '{', 1967, + '}', 1968, + '\t', 3209, + ' ', 3209, ); - if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1179); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4179); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4596); + if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4135); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4551); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(4597); + (lookahead < ']' || '{' < lookahead)) ADVANCE(4552); END_STATE(); - case 1223: - if (eof) ADVANCE(1284); + case 1193: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4952, - '$', 1847, + '\n', 1762, + '"', 2516, + '#', 4906, + '$', 1813, '\'', 791, - '(', 2360, - ')', 1840, - '+', 4153, - '-', 1898, - '.', 2484, - '0', 4176, - ';', 1328, - 'I', 4569, - 'N', 4559, - '[', 1834, - '^', 3248, - '_', 4172, + '(', 2322, + ')', 1807, + '+', 4109, + '-', 1862, + '.', 2444, + '0', 4132, + ';', 1303, + 'I', 4524, + 'N', 4514, + '[', 1801, + '^', 3207, + '_', 4128, '`', 834, - 'a', 4322, - 'b', 4427, - 'c', 4367, - 'd', 4224, - 'e', 4428, - 'f', 4181, - 'h', 4298, - 'i', 4271, - 'l', 4248, - 'm', 4193, - 'n', 4392, - 'o', 4526, - 'r', 4225, - 's', 4369, - 't', 4402, - 'u', 4454, - 'w', 4275, - '{', 2000, - '}', 2001, + 'a', 4277, + 'b', 4382, + 'c', 4322, + 'd', 4180, + 'e', 4383, + 'f', 4137, + 'h', 4254, + 'i', 4225, + 'l', 4204, + 'm', 4149, + 'n', 4347, + 'o', 4481, + 'r', 4181, + 's', 4324, + 't', 4359, + 'u', 4409, + 'w', 4231, + '{', 1967, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1179); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4179); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4596); + lookahead == ' ') SKIP(1149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4135); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(4551); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(4597); + (lookahead < ']' || '{' < lookahead)) ADVANCE(4552); END_STATE(); - case 1224: - if (eof) ADVANCE(1284); + case 1194: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4952, - '$', 1847, + '\n', 1762, + '"', 2516, + '#', 4906, + '$', 1813, '\'', 791, - '(', 2360, - ')', 1840, - '+', 4153, - '-', 1898, - '.', 2484, - '0', 4176, - ';', 1328, - 'N', 4560, - '[', 1834, - '_', 4180, + '(', 2322, + ')', 1807, + '+', 4109, + '-', 1862, + '.', 2444, + '0', 4132, + ';', 1303, + 'N', 4515, + '[', 1801, + '_', 4136, '`', 834, - 'f', 4186, - 'n', 4391, - 't', 4412, - '{', 2000, - '|', 1843, - '}', 2001, - '\t', 3249, - ' ', 3249, - 'I', 4570, - 'i', 4570, + 'f', 4142, + 'n', 4346, + 't', 4375, + '{', 1967, + '|', 1809, + '}', 1968, + '\t', 3209, + ' ', 3209, + 'I', 4525, + 'i', 4525, ); - if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1182); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4179); + if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1152); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4135); if (lookahead != 0 && - lookahead != ']') ADVANCE(4597); + lookahead != ']') ADVANCE(4552); END_STATE(); - case 1225: - if (eof) ADVANCE(1284); + case 1195: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '"', 2554, - '#', 4952, - '$', 1847, + '\n', 1762, + '"', 2516, + '#', 4906, + '$', 1813, '\'', 791, - '(', 2360, - ')', 1840, - '+', 4153, - '-', 1898, - '.', 2484, - '0', 4176, - ';', 1328, - 'N', 4560, - '[', 1834, - '_', 4180, + '(', 2322, + ')', 1807, + '+', 4109, + '-', 1862, + '.', 2444, + '0', 4132, + ';', 1303, + 'N', 4515, + '[', 1801, + '_', 4136, '`', 834, - 'f', 4186, - 'n', 4391, - 't', 4412, - '{', 2000, - '|', 1843, - '}', 2001, - 'I', 4570, - 'i', 4570, + 'f', 4142, + 'n', 4346, + 't', 4375, + '{', 1967, + '|', 1809, + '}', 1968, + 'I', 4525, + 'i', 4525, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1182); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4179); + lookahead == ' ') SKIP(1152); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4135); if (lookahead != 0 && - lookahead != ']') ADVANCE(4597); + lookahead != ']') ADVANCE(4552); END_STATE(); - case 1226: - if (eof) ADVANCE(1284); + case 1196: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '#', 4941, - '$', 1844, - '(', 2360, - ')', 1840, - '+', 3574, - '-', 1894, - '.', 2363, - ';', 1328, - '_', 3582, - '|', 1841, - '}', 2001, - '<', 3791, - '=', 3791, + '\n', 1762, + '#', 4896, + '$', 1811, + '(', 2322, + ')', 1807, + '+', 3533, + '-', 1861, + '.', 2325, + ';', 1303, + '_', 3541, + '|', 1808, + '}', 1968, + '<', 3748, + '=', 3748, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1235); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + lookahead == ' ') SKIP(1205); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -51345,27 +49266,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3566); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3525); END_STATE(); - case 1227: - if (eof) ADVANCE(1284); + case 1197: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '#', 4941, - '$', 1844, - '(', 2360, - ')', 1840, - '+', 3450, - '-', 1894, - '.', 2363, - ';', 1328, - '_', 3466, - '|', 1841, - '}', 2001, + '\n', 1762, + '#', 4896, + '$', 1811, + '(', 2322, + ')', 1807, + '+', 3410, + '-', 1861, + '.', 2325, + ';', 1303, + '_', 3426, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1235); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + lookahead == ' ') SKIP(1205); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -51373,27 +49294,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3437); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3397); END_STATE(); - case 1228: - if (eof) ADVANCE(1284); + case 1198: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '#', 4941, - '$', 1844, - '(', 2360, - ')', 1840, - '+', 3685, - '-', 1894, - '.', 2363, - ';', 1328, - '_', 3696, - '|', 1841, - '}', 2001, + '\n', 1762, + '#', 4896, + '$', 1811, + '(', 2322, + ')', 1807, + '+', 3643, + '-', 1861, + '.', 2325, + ';', 1303, + '_', 3654, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1235); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + lookahead == ' ') SKIP(1205); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -51401,30 +49322,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3677); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3635); END_STATE(); - case 1229: - if (eof) ADVANCE(1284); + case 1199: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '#', 4941, - '$', 1844, - '(', 2360, - ')', 1840, - '.', 2363, - ';', 1328, - '_', 3582, - '|', 1841, - '}', 2001, - '\t', 3249, - ' ', 3249, - '+', 3574, - '-', 3574, - '<', 3791, - '=', 3791, + '\n', 1762, + '#', 4896, + '$', 1811, + '(', 2322, + ')', 1807, + '.', 2325, + ';', 1303, + '_', 3541, + '|', 1808, + '}', 1968, + '\t', 3209, + ' ', 3209, + '+', 3533, + '-', 3533, + '<', 3748, + '=', 3748, ); - if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1236); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1206); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -51432,29 +49353,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3566); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3525); END_STATE(); - case 1230: - if (eof) ADVANCE(1284); + case 1200: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '#', 4941, - '$', 1844, - '(', 2360, - ')', 1840, - '.', 2363, - ';', 1328, - '_', 3582, - '|', 1841, - '}', 2001, - '+', 3574, - '-', 3574, - '<', 3791, - '=', 3791, + '\n', 1762, + '#', 4896, + '$', 1811, + '(', 2322, + ')', 1807, + '.', 2325, + ';', 1303, + '_', 3541, + '|', 1808, + '}', 1968, + '+', 3533, + '-', 3533, + '<', 3748, + '=', 3748, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1236); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + lookahead == ' ') SKIP(1206); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -51462,28 +49383,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3566); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3525); END_STATE(); - case 1231: - if (eof) ADVANCE(1284); + case 1201: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '#', 4941, - '$', 1844, - '(', 2360, - ')', 1840, - '.', 2363, - ';', 1328, - '_', 3696, - '|', 1841, - '}', 2001, - '\t', 3249, - ' ', 3249, - '+', 3685, - '-', 3685, + '\n', 1762, + '#', 4896, + '$', 1811, + '(', 2322, + ')', 1807, + '.', 2325, + ';', 1303, + '_', 3654, + '|', 1808, + '}', 1968, + '\t', 3209, + ' ', 3209, + '+', 3643, + '-', 3643, ); - if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1236); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1206); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -51491,27 +49412,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3677); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3635); END_STATE(); - case 1232: - if (eof) ADVANCE(1284); + case 1202: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '#', 4941, - '$', 1844, - '(', 2360, - ')', 1840, - '.', 2363, - ';', 1328, - '_', 3696, - '|', 1841, - '}', 2001, - '+', 3685, - '-', 3685, + '\n', 1762, + '#', 4896, + '$', 1811, + '(', 2322, + ')', 1807, + '.', 2325, + ';', 1303, + '_', 3654, + '|', 1808, + '}', 1968, + '+', 3643, + '-', 3643, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1236); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + lookahead == ' ') SKIP(1206); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -51519,28 +49440,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3677); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3635); END_STATE(); - case 1233: - if (eof) ADVANCE(1284); + case 1203: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '#', 4941, - '$', 1844, - '(', 2360, - ')', 1840, - '.', 2363, - ';', 1328, - '_', 3466, - '|', 1841, - '}', 2001, - '\t', 3249, - ' ', 3249, - '+', 3450, - '-', 3450, + '\n', 1762, + '#', 4896, + '$', 1811, + '(', 2322, + ')', 1807, + '.', 2325, + ';', 1303, + '_', 3426, + '|', 1808, + '}', 1968, + '\t', 3209, + ' ', 3209, + '+', 3410, + '-', 3410, ); - if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1236); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1206); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -51548,27 +49469,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3437); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3397); END_STATE(); - case 1234: - if (eof) ADVANCE(1284); + case 1204: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '#', 4941, - '$', 1844, - '(', 2360, - ')', 1840, - '.', 2363, - ';', 1328, - '_', 3466, - '|', 1841, - '}', 2001, - '+', 3450, - '-', 3450, + '\n', 1762, + '#', 4896, + '$', 1811, + '(', 2322, + ')', 1807, + '.', 2325, + ';', 1303, + '_', 3426, + '|', 1808, + '}', 1968, + '+', 3410, + '-', 3410, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1236); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + lookahead == ' ') SKIP(1206); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -51576,78 +49497,78 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3437); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3397); END_STATE(); - case 1235: - if (eof) ADVANCE(1284); + case 1205: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '#', 4941, - '$', 1844, - ')', 1840, + '\n', 1762, + '#', 4896, + '$', 1811, + ')', 1807, '+', 809, - '-', 1894, - ';', 1328, - '|', 1841, - '}', 2001, + '-', 1861, + ';', 1303, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1235); + lookahead == ' ') SKIP(1205); END_STATE(); - case 1236: - if (eof) ADVANCE(1284); + case 1206: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '#', 4941, - '$', 1844, - ')', 1840, - ';', 1328, - '|', 1841, - '}', 2001, + '\n', 1762, + '#', 4896, + '$', 1811, + ')', 1807, + ';', 1303, + '|', 1808, + '}', 1968, '+', 809, '-', 809, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1236); + lookahead == ' ') SKIP(1206); END_STATE(); - case 1237: - if (eof) ADVANCE(1284); + case 1207: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '#', 4941, - '(', 2360, - ')', 1840, - '-', 1890, - '.', 2364, - ';', 1328, - 'E', 3844, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - '_', 3867, - 'd', 3883, - 'e', 3843, - 'g', 3847, - 'h', 3980, - 'k', 3847, - 'm', 3850, - 'n', 3990, - 'p', 3847, - 's', 3901, - 't', 3847, - 'u', 3990, - 'w', 3924, - '|', 1841, - '}', 2001, - 0xb5, 3990, - 'B', 2507, - 'b', 2507, + '\n', 1762, + '#', 4896, + '(', 2322, + ')', 1807, + '-', 1857, + '.', 2326, + ';', 1303, + 'E', 3801, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + '_', 3824, + 'd', 3840, + 'e', 3800, + 'g', 3804, + 'h', 3936, + 'k', 3804, + 'm', 3807, + 'n', 3946, + 'p', 3804, + 's', 3858, + 't', 3804, + 'u', 3946, + 'w', 3881, + '|', 1808, + '}', 1968, + 0xb5, 3946, + 'B', 2469, + 'b', 2469, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1269); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + lookahead == ' ') SKIP(1239); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -51656,44 +49577,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3791); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3748); END_STATE(); - case 1238: - if (eof) ADVANCE(1284); + case 1208: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '#', 4941, - '(', 2360, - ')', 1840, - '-', 1890, - '.', 2364, - ';', 1328, - 'E', 3844, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - 'd', 3883, - 'e', 3843, - 'g', 3847, - 'h', 3980, - 'k', 3847, - 'm', 3850, - 'n', 3990, - 'p', 3847, - 's', 3901, - 't', 3847, - 'u', 3990, - 'w', 3924, - '|', 1841, - '}', 2001, - 0xb5, 3990, - 'B', 2507, - 'b', 2507, + '\n', 1762, + '#', 4896, + '(', 2322, + ')', 1807, + '-', 1857, + '.', 2326, + ';', 1303, + 'E', 3801, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + 'd', 3840, + 'e', 3800, + 'g', 3804, + 'h', 3936, + 'k', 3804, + 'm', 3807, + 'n', 3946, + 'p', 3804, + 's', 3858, + 't', 3804, + 'u', 3946, + 'w', 3881, + '|', 1808, + '}', 1968, + 0xb5, 3946, + 'B', 2469, + 'b', 2469, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1269); + lookahead == ' ') SKIP(1239); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -51701,44 +49622,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3791); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3748); END_STATE(); - case 1239: - if (eof) ADVANCE(1284); + case 1209: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '#', 4941, - '(', 2360, - ')', 1840, - '-', 1890, - '.', 2364, - ';', 1328, - 'E', 3848, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - 'd', 3883, - 'e', 3847, - 'g', 3847, - 'h', 3980, - 'k', 3847, - 'm', 3850, - 'n', 3990, - 'p', 3847, - 's', 3901, - 't', 3847, - 'u', 3990, - 'w', 3924, - '|', 1841, - '}', 2001, - 0xb5, 3990, - 'B', 2507, - 'b', 2507, + '\n', 1762, + '#', 4896, + '(', 2322, + ')', 1807, + '-', 1857, + '.', 2326, + ';', 1303, + 'E', 3805, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + 'd', 3840, + 'e', 3804, + 'g', 3804, + 'h', 3936, + 'k', 3804, + 'm', 3807, + 'n', 3946, + 'p', 3804, + 's', 3858, + 't', 3804, + 'u', 3946, + 'w', 3881, + '|', 1808, + '}', 1968, + 0xb5, 3946, + 'B', 2469, + 'b', 2469, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1269); + lookahead == ' ') SKIP(1239); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -51746,27 +49667,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3791); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3748); END_STATE(); - case 1240: - if (eof) ADVANCE(1284); + case 1210: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '#', 4941, - '(', 2360, - ')', 1840, - '-', 1890, - '.', 2364, - ';', 1328, - '_', 3466, - '|', 1841, - '}', 2001, - 'E', 3461, - 'e', 3461, + '\n', 1762, + '#', 4896, + '(', 2322, + ')', 1807, + '-', 1857, + '.', 2326, + ';', 1303, + '_', 3426, + '|', 1808, + '}', 1968, + 'E', 3421, + 'e', 3421, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1269); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + lookahead == ' ') SKIP(1239); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -51775,25 +49696,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3437); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3397); END_STATE(); - case 1241: - if (eof) ADVANCE(1284); + case 1211: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '#', 4941, - '(', 2360, - ')', 1840, - '-', 1890, - '.', 2364, - ';', 1328, - '|', 1841, - '}', 2001, - 'E', 3461, - 'e', 3461, + '\n', 1762, + '#', 4896, + '(', 2322, + ')', 1807, + '-', 1857, + '.', 2326, + ';', 1303, + '|', 1808, + '}', 1968, + 'E', 3421, + 'e', 3421, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1269); + lookahead == ' ') SKIP(1239); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -51801,23 +49722,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3437); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3397); END_STATE(); - case 1242: - if (eof) ADVANCE(1284); + case 1212: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '#', 4941, - '(', 2360, - ')', 1840, - '-', 1890, - '.', 2364, - ';', 1328, - '|', 1841, - '}', 2001, + '\n', 1762, + '#', 4896, + '(', 2322, + ')', 1807, + '-', 1857, + '.', 2326, + ';', 1303, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1269); + lookahead == ' ') SKIP(1239); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -51825,27 +49746,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3437); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3397); END_STATE(); - case 1243: - if (eof) ADVANCE(1284); + case 1213: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '#', 4941, - '(', 2360, - ')', 1840, - '-', 1890, - '.', 2363, - ';', 1328, - '_', 3466, - '|', 1841, - '}', 2001, - 'E', 3461, - 'e', 3461, + '\n', 1762, + '#', 4896, + '(', 2322, + ')', 1807, + '-', 1857, + '.', 2325, + ';', 1303, + '_', 3426, + '|', 1808, + '}', 1968, + 'E', 3421, + 'e', 3421, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1269); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + lookahead == ' ') SKIP(1239); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -51854,25 +49775,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3437); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3397); END_STATE(); - case 1244: - if (eof) ADVANCE(1284); + case 1214: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '#', 4941, - '(', 2360, - ')', 1840, - '-', 1890, - '.', 2363, - ';', 1328, - '_', 3466, - '|', 1841, - '}', 2001, + '\n', 1762, + '#', 4896, + '(', 2322, + ')', 1807, + '-', 1857, + '.', 2325, + ';', 1303, + '_', 3426, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1269); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + lookahead == ' ') SKIP(1239); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -51881,25 +49802,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3437); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3397); END_STATE(); - case 1245: - if (eof) ADVANCE(1284); + case 1215: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '#', 4941, - '(', 2360, - ')', 1840, - '-', 1890, - '.', 2363, - ';', 1328, - '|', 1841, - '}', 2001, - 'E', 3461, - 'e', 3461, + '\n', 1762, + '#', 4896, + '(', 2322, + ')', 1807, + '-', 1857, + '.', 2325, + ';', 1303, + '|', 1808, + '}', 1968, + 'E', 3421, + 'e', 3421, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1269); + lookahead == ' ') SKIP(1239); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -51907,23 +49828,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3437); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3397); END_STATE(); - case 1246: - if (eof) ADVANCE(1284); + case 1216: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '#', 4941, - '(', 2360, - ')', 1840, - '-', 1890, - '.', 2363, - ';', 1328, - '|', 1841, - '}', 2001, + '\n', 1762, + '#', 4896, + '(', 2322, + ')', 1807, + '-', 1857, + '.', 2325, + ';', 1303, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1269); + lookahead == ' ') SKIP(1239); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -51931,46 +49852,46 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3437); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3397); END_STATE(); - case 1247: - if (eof) ADVANCE(1284); + case 1217: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '#', 4941, - '(', 2360, - ')', 1840, - '.', 2364, - ';', 1328, - 'E', 3844, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - '_', 3867, - 'd', 3883, - 'e', 3843, - 'g', 3847, - 'h', 3980, - 'k', 3847, - 'm', 3850, - 'n', 3990, - 'p', 3847, - 's', 3901, - 't', 3847, - 'u', 3990, - 'w', 3924, - '|', 1841, - '}', 2001, - 0xb5, 3990, - '\t', 3249, - ' ', 3249, - 'B', 2507, - 'b', 2507, + '\n', 1762, + '#', 4896, + '(', 2322, + ')', 1807, + '.', 2326, + ';', 1303, + 'E', 3801, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + '_', 3824, + 'd', 3840, + 'e', 3800, + 'g', 3804, + 'h', 3936, + 'k', 3804, + 'm', 3807, + 'n', 3946, + 'p', 3804, + 's', 3858, + 't', 3804, + 'u', 3946, + 'w', 3881, + '|', 1808, + '}', 1968, + 0xb5, 3946, + '\t', 3209, + ' ', 3209, + 'B', 2469, + 'b', 2469, ); - if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1274); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1244); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -51979,45 +49900,45 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3791); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3748); END_STATE(); - case 1248: - if (eof) ADVANCE(1284); + case 1218: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '#', 4941, - '(', 2360, - ')', 1840, - '.', 2364, - ';', 1328, - 'E', 3844, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - '_', 3867, - 'd', 3883, - 'e', 3843, - 'g', 3847, - 'h', 3980, - 'k', 3847, - 'm', 3850, - 'n', 3990, - 'p', 3847, - 's', 3901, - 't', 3847, - 'u', 3990, - 'w', 3924, - '|', 1841, - '}', 2001, - 0xb5, 3990, - 'B', 2507, - 'b', 2507, + '\n', 1762, + '#', 4896, + '(', 2322, + ')', 1807, + '.', 2326, + ';', 1303, + 'E', 3801, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + '_', 3824, + 'd', 3840, + 'e', 3800, + 'g', 3804, + 'h', 3936, + 'k', 3804, + 'm', 3807, + 'n', 3946, + 'p', 3804, + 's', 3858, + 't', 3804, + 'u', 3946, + 'w', 3881, + '|', 1808, + '}', 1968, + 0xb5, 3946, + 'B', 2469, + 'b', 2469, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1274); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + lookahead == ' ') SKIP(1244); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -52026,44 +49947,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3791); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3748); END_STATE(); - case 1249: - if (eof) ADVANCE(1284); + case 1219: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '#', 4941, - '(', 2360, - ')', 1840, - '.', 2364, - ';', 1328, - 'E', 3844, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - 'd', 3883, - 'e', 3843, - 'g', 3847, - 'h', 3980, - 'k', 3847, - 'm', 3850, - 'n', 3990, - 'p', 3847, - 's', 3901, - 't', 3847, - 'u', 3990, - 'w', 3924, - '|', 1841, - '}', 2001, - 0xb5, 3990, - '\t', 3249, - ' ', 3249, - 'B', 2507, - 'b', 2507, + '\n', 1762, + '#', 4896, + '(', 2322, + ')', 1807, + '.', 2326, + ';', 1303, + 'E', 3801, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + 'd', 3840, + 'e', 3800, + 'g', 3804, + 'h', 3936, + 'k', 3804, + 'm', 3807, + 'n', 3946, + 'p', 3804, + 's', 3858, + 't', 3804, + 'u', 3946, + 'w', 3881, + '|', 1808, + '}', 1968, + 0xb5, 3946, + '\t', 3209, + ' ', 3209, + 'B', 2469, + 'b', 2469, ); - if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1274); + if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1244); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -52071,43 +49992,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3791); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3748); END_STATE(); - case 1250: - if (eof) ADVANCE(1284); + case 1220: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '#', 4941, - '(', 2360, - ')', 1840, - '.', 2364, - ';', 1328, - 'E', 3844, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - 'd', 3883, - 'e', 3843, - 'g', 3847, - 'h', 3980, - 'k', 3847, - 'm', 3850, - 'n', 3990, - 'p', 3847, - 's', 3901, - 't', 3847, - 'u', 3990, - 'w', 3924, - '|', 1841, - '}', 2001, - 0xb5, 3990, - 'B', 2507, - 'b', 2507, + '\n', 1762, + '#', 4896, + '(', 2322, + ')', 1807, + '.', 2326, + ';', 1303, + 'E', 3801, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + 'd', 3840, + 'e', 3800, + 'g', 3804, + 'h', 3936, + 'k', 3804, + 'm', 3807, + 'n', 3946, + 'p', 3804, + 's', 3858, + 't', 3804, + 'u', 3946, + 'w', 3881, + '|', 1808, + '}', 1968, + 0xb5, 3946, + 'B', 2469, + 'b', 2469, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1274); + lookahead == ' ') SKIP(1244); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -52115,44 +50036,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3791); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3748); END_STATE(); - case 1251: - if (eof) ADVANCE(1284); + case 1221: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '#', 4941, - '(', 2360, - ')', 1840, - '.', 2364, - ';', 1328, - 'E', 3848, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - 'd', 3883, - 'e', 3847, - 'g', 3847, - 'h', 3980, - 'k', 3847, - 'm', 3850, - 'n', 3990, - 'p', 3847, - 's', 3901, - 't', 3847, - 'u', 3990, - 'w', 3924, - '|', 1841, - '}', 2001, - 0xb5, 3990, - '\t', 3249, - ' ', 3249, - 'B', 2507, - 'b', 2507, + '\n', 1762, + '#', 4896, + '(', 2322, + ')', 1807, + '.', 2326, + ';', 1303, + 'E', 3805, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + 'd', 3840, + 'e', 3804, + 'g', 3804, + 'h', 3936, + 'k', 3804, + 'm', 3807, + 'n', 3946, + 'p', 3804, + 's', 3858, + 't', 3804, + 'u', 3946, + 'w', 3881, + '|', 1808, + '}', 1968, + 0xb5, 3946, + '\t', 3209, + ' ', 3209, + 'B', 2469, + 'b', 2469, ); - if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1274); + if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1244); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -52160,43 +50081,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3791); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3748); END_STATE(); - case 1252: - if (eof) ADVANCE(1284); + case 1222: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '#', 4941, - '(', 2360, - ')', 1840, - '.', 2364, - ';', 1328, - 'E', 3848, - 'G', 3848, - 'K', 3848, - 'M', 3848, - 'P', 3848, - 'T', 3848, - 'd', 3883, - 'e', 3847, - 'g', 3847, - 'h', 3980, - 'k', 3847, - 'm', 3850, - 'n', 3990, - 'p', 3847, - 's', 3901, - 't', 3847, - 'u', 3990, - 'w', 3924, - '|', 1841, - '}', 2001, - 0xb5, 3990, - 'B', 2507, - 'b', 2507, + '\n', 1762, + '#', 4896, + '(', 2322, + ')', 1807, + '.', 2326, + ';', 1303, + 'E', 3805, + 'G', 3805, + 'K', 3805, + 'M', 3805, + 'P', 3805, + 'T', 3805, + 'd', 3840, + 'e', 3804, + 'g', 3804, + 'h', 3936, + 'k', 3804, + 'm', 3807, + 'n', 3946, + 'p', 3804, + 's', 3858, + 't', 3804, + 'u', 3946, + 'w', 3881, + '|', 1808, + '}', 1968, + 0xb5, 3946, + 'B', 2469, + 'b', 2469, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1274); + lookahead == ' ') SKIP(1244); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -52204,27 +50125,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3791); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3748); END_STATE(); - case 1253: - if (eof) ADVANCE(1284); + case 1223: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '#', 4941, - '(', 2360, - ')', 1840, - '.', 2364, - ';', 1328, - '_', 3466, - '|', 1841, - '}', 2001, - '\t', 3249, - ' ', 3249, - 'E', 3461, - 'e', 3461, + '\n', 1762, + '#', 4896, + '(', 2322, + ')', 1807, + '.', 2326, + ';', 1303, + '_', 3426, + '|', 1808, + '}', 1968, + '\t', 3209, + ' ', 3209, + 'E', 3421, + 'e', 3421, ); - if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1274); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1244); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -52233,26 +50154,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3437); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3397); END_STATE(); - case 1254: - if (eof) ADVANCE(1284); + case 1224: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '#', 4941, - '(', 2360, - ')', 1840, - '.', 2364, - ';', 1328, - '_', 3466, - '|', 1841, - '}', 2001, - 'E', 3461, - 'e', 3461, + '\n', 1762, + '#', 4896, + '(', 2322, + ')', 1807, + '.', 2326, + ';', 1303, + '_', 3426, + '|', 1808, + '}', 1968, + 'E', 3421, + 'e', 3421, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1274); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + lookahead == ' ') SKIP(1244); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -52261,25 +50182,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3437); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3397); END_STATE(); - case 1255: - if (eof) ADVANCE(1284); + case 1225: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '#', 4941, - '(', 2360, - ')', 1840, - '.', 2364, - ';', 1328, - '|', 1841, - '}', 2001, - '\t', 3249, - ' ', 3249, - 'E', 3461, - 'e', 3461, + '\n', 1762, + '#', 4896, + '(', 2322, + ')', 1807, + '.', 2326, + ';', 1303, + '|', 1808, + '}', 1968, + '\t', 3209, + ' ', 3209, + 'E', 3421, + 'e', 3421, ); - if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1274); + if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1244); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -52287,23 +50208,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3437); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3397); END_STATE(); - case 1256: - if (eof) ADVANCE(1284); + case 1226: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '#', 4941, - '(', 2360, - ')', 1840, - '.', 2364, - ';', 1328, - '|', 1841, - '}', 2001, - '\t', 3249, - ' ', 3249, + '\n', 1762, + '#', 4896, + '(', 2322, + ')', 1807, + '.', 2326, + ';', 1303, + '|', 1808, + '}', 1968, + '\t', 3209, + ' ', 3209, ); - if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1274); + if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1244); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -52311,24 +50232,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3437); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3397); END_STATE(); - case 1257: - if (eof) ADVANCE(1284); + case 1227: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '#', 4941, - '(', 2360, - ')', 1840, - '.', 2364, - ';', 1328, - '|', 1841, - '}', 2001, - 'E', 3461, - 'e', 3461, + '\n', 1762, + '#', 4896, + '(', 2322, + ')', 1807, + '.', 2326, + ';', 1303, + '|', 1808, + '}', 1968, + 'E', 3421, + 'e', 3421, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1274); + lookahead == ' ') SKIP(1244); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -52336,22 +50257,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3437); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3397); END_STATE(); - case 1258: - if (eof) ADVANCE(1284); + case 1228: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '#', 4941, - '(', 2360, - ')', 1840, - '.', 2364, - ';', 1328, - '|', 1841, - '}', 2001, + '\n', 1762, + '#', 4896, + '(', 2322, + ')', 1807, + '.', 2326, + ';', 1303, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1274); + lookahead == ' ') SKIP(1244); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -52359,27 +50280,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3437); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3397); END_STATE(); - case 1259: - if (eof) ADVANCE(1284); + case 1229: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '#', 4941, - '(', 2360, - ')', 1840, - '.', 2363, - ';', 1328, - '_', 3466, - '|', 1841, - '}', 2001, - '\t', 3249, - ' ', 3249, - 'E', 3461, - 'e', 3461, + '\n', 1762, + '#', 4896, + '(', 2322, + ')', 1807, + '.', 2325, + ';', 1303, + '_', 3426, + '|', 1808, + '}', 1968, + '\t', 3209, + ' ', 3209, + 'E', 3421, + 'e', 3421, ); - if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1274); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1244); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -52388,25 +50309,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3437); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3397); END_STATE(); - case 1260: - if (eof) ADVANCE(1284); + case 1230: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '#', 4941, - '(', 2360, - ')', 1840, - '.', 2363, - ';', 1328, - '_', 3466, - '|', 1841, - '}', 2001, - '\t', 3249, - ' ', 3249, + '\n', 1762, + '#', 4896, + '(', 2322, + ')', 1807, + '.', 2325, + ';', 1303, + '_', 3426, + '|', 1808, + '}', 1968, + '\t', 3209, + ' ', 3209, ); - if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1274); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1244); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -52415,26 +50336,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3437); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3397); END_STATE(); - case 1261: - if (eof) ADVANCE(1284); + case 1231: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '#', 4941, - '(', 2360, - ')', 1840, - '.', 2363, - ';', 1328, - '_', 3466, - '|', 1841, - '}', 2001, - 'E', 3461, - 'e', 3461, + '\n', 1762, + '#', 4896, + '(', 2322, + ')', 1807, + '.', 2325, + ';', 1303, + '_', 3426, + '|', 1808, + '}', 1968, + 'E', 3421, + 'e', 3421, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1274); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + lookahead == ' ') SKIP(1244); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -52443,24 +50364,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3437); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3397); END_STATE(); - case 1262: - if (eof) ADVANCE(1284); + case 1232: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '#', 4941, - '(', 2360, - ')', 1840, - '.', 2363, - ';', 1328, - '_', 3466, - '|', 1841, - '}', 2001, + '\n', 1762, + '#', 4896, + '(', 2322, + ')', 1807, + '.', 2325, + ';', 1303, + '_', 3426, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1274); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + lookahead == ' ') SKIP(1244); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -52469,25 +50390,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3437); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3397); END_STATE(); - case 1263: - if (eof) ADVANCE(1284); + case 1233: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '#', 4941, - '(', 2360, - ')', 1840, - '.', 2363, - ';', 1328, - '|', 1841, - '}', 2001, - '\t', 3249, - ' ', 3249, - 'E', 3461, - 'e', 3461, + '\n', 1762, + '#', 4896, + '(', 2322, + ')', 1807, + '.', 2325, + ';', 1303, + '|', 1808, + '}', 1968, + '\t', 3209, + ' ', 3209, + 'E', 3421, + 'e', 3421, ); - if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1274); + if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1244); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -52495,23 +50416,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3437); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3397); END_STATE(); - case 1264: - if (eof) ADVANCE(1284); + case 1234: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '#', 4941, - '(', 2360, - ')', 1840, - '.', 2363, - ';', 1328, - '|', 1841, - '}', 2001, - '\t', 3249, - ' ', 3249, + '\n', 1762, + '#', 4896, + '(', 2322, + ')', 1807, + '.', 2325, + ';', 1303, + '|', 1808, + '}', 1968, + '\t', 3209, + ' ', 3209, ); - if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1274); + if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1244); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -52519,24 +50440,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3437); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3397); END_STATE(); - case 1265: - if (eof) ADVANCE(1284); + case 1235: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '#', 4941, - '(', 2360, - ')', 1840, - '.', 2363, - ';', 1328, - '|', 1841, - '}', 2001, - 'E', 3461, - 'e', 3461, + '\n', 1762, + '#', 4896, + '(', 2322, + ')', 1807, + '.', 2325, + ';', 1303, + '|', 1808, + '}', 1968, + 'E', 3421, + 'e', 3421, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1274); + lookahead == ' ') SKIP(1244); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -52544,22 +50465,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3437); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3397); END_STATE(); - case 1266: - if (eof) ADVANCE(1284); + case 1236: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '#', 4941, - '(', 2360, - ')', 1840, - '.', 2363, - ';', 1328, - '|', 1841, - '}', 2001, + '\n', 1762, + '#', 4896, + '(', 2322, + ')', 1807, + '.', 2325, + ';', 1303, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1274); + lookahead == ' ') SKIP(1244); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -52567,62 +50488,62 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3437); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3397); END_STATE(); - case 1267: - if (eof) ADVANCE(1284); + case 1237: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '#', 4941, - ')', 1840, - '-', 1890, - ';', 1328, - '=', 1301, - '|', 1841, - '}', 2001, + '\n', 1762, + '#', 4896, + ')', 1807, + '-', 1857, + ';', 1303, + '=', 1271, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1267); + lookahead == ' ') SKIP(1237); END_STATE(); - case 1268: - if (eof) ADVANCE(1284); + case 1238: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '#', 4941, - ')', 1840, - '-', 1890, - ';', 1328, - '=', 1301, - '|', 1841, - '}', 2001, + '\n', 1762, + '#', 4896, + ')', 1807, + '-', 1857, + ';', 1303, + '=', 1271, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1267); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1794); + lookahead == ' ') SKIP(1237); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1761); END_STATE(); - case 1269: - if (eof) ADVANCE(1284); - if (lookahead == '\n') ADVANCE(1795); - if (lookahead == '#') ADVANCE(4941); - if (lookahead == ')') ADVANCE(1840); - if (lookahead == '-') ADVANCE(1890); - if (lookahead == ';') ADVANCE(1328); - if (lookahead == '|') ADVANCE(1841); - if (lookahead == '}') ADVANCE(2001); + case 1239: + if (eof) ADVANCE(1254); + if (lookahead == '\n') ADVANCE(1762); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == ')') ADVANCE(1807); + if (lookahead == '-') ADVANCE(1857); + if (lookahead == ';') ADVANCE(1303); + if (lookahead == '|') ADVANCE(1808); + if (lookahead == '}') ADVANCE(1968); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1269); + lookahead == ' ') SKIP(1239); END_STATE(); - case 1270: - if (eof) ADVANCE(1284); - if (lookahead == '\n') ADVANCE(1795); - if (lookahead == '#') ADVANCE(4941); - if (lookahead == ')') ADVANCE(1840); - if (lookahead == '-') ADVANCE(1890); - if (lookahead == ';') ADVANCE(1328); - if (lookahead == '|') ADVANCE(1841); - if (lookahead == '}') ADVANCE(2001); + case 1240: + if (eof) ADVANCE(1254); + if (lookahead == '\n') ADVANCE(1762); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == ')') ADVANCE(1807); + if (lookahead == '-') ADVANCE(1857); + if (lookahead == ';') ADVANCE(1303); + if (lookahead == '|') ADVANCE(1808); + if (lookahead == '}') ADVANCE(1968); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1269); + lookahead == ' ') SKIP(1239); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -52630,49 +50551,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3791); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3748); END_STATE(); - case 1271: - if (eof) ADVANCE(1284); + case 1241: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '#', 4941, - ')', 1840, - ';', 1328, - '=', 1301, - '|', 1841, - '}', 2001, - '\t', 3249, - ' ', 3249, + '\n', 1762, + '#', 4896, + ')', 1807, + ';', 1303, + '=', 1271, + '|', 1808, + '}', 1968, + '\t', 3209, + ' ', 3209, ); - if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1272); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1794); + if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1242); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1761); END_STATE(); - case 1272: - if (eof) ADVANCE(1284); - if (lookahead == '\n') ADVANCE(1795); - if (lookahead == '#') ADVANCE(4941); - if (lookahead == ')') ADVANCE(1840); - if (lookahead == ';') ADVANCE(1328); - if (lookahead == '=') ADVANCE(1301); - if (lookahead == '|') ADVANCE(1841); - if (lookahead == '}') ADVANCE(2001); + case 1242: + if (eof) ADVANCE(1254); + if (lookahead == '\n') ADVANCE(1762); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == ')') ADVANCE(1807); + if (lookahead == ';') ADVANCE(1303); + if (lookahead == '=') ADVANCE(1271); + if (lookahead == '|') ADVANCE(1808); + if (lookahead == '}') ADVANCE(1968); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1272); + lookahead == ' ') SKIP(1242); END_STATE(); - case 1273: - if (eof) ADVANCE(1284); + case 1243: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '#', 4941, - ')', 1840, - ';', 1328, - '|', 1841, - '}', 2001, - '\t', 3249, - ' ', 3249, + '\n', 1762, + '#', 4896, + ')', 1807, + ';', 1303, + '|', 1808, + '}', 1968, + '\t', 3209, + ' ', 3209, ); - if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1274); + if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1244); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -52680,29 +50601,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3791); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3748); END_STATE(); - case 1274: - if (eof) ADVANCE(1284); - if (lookahead == '\n') ADVANCE(1795); - if (lookahead == '#') ADVANCE(4941); - if (lookahead == ')') ADVANCE(1840); - if (lookahead == ';') ADVANCE(1328); - if (lookahead == '|') ADVANCE(1841); - if (lookahead == '}') ADVANCE(2001); + case 1244: + if (eof) ADVANCE(1254); + if (lookahead == '\n') ADVANCE(1762); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == ')') ADVANCE(1807); + if (lookahead == ';') ADVANCE(1303); + if (lookahead == '|') ADVANCE(1808); + if (lookahead == '}') ADVANCE(1968); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1274); + lookahead == ' ') SKIP(1244); END_STATE(); - case 1275: - if (eof) ADVANCE(1284); - if (lookahead == '\n') ADVANCE(1795); - if (lookahead == '#') ADVANCE(4941); - if (lookahead == ')') ADVANCE(1840); - if (lookahead == ';') ADVANCE(1328); - if (lookahead == '|') ADVANCE(1841); - if (lookahead == '}') ADVANCE(2001); + case 1245: + if (eof) ADVANCE(1254); + if (lookahead == '\n') ADVANCE(1762); + if (lookahead == '#') ADVANCE(4896); + if (lookahead == ')') ADVANCE(1807); + if (lookahead == ';') ADVANCE(1303); + if (lookahead == '|') ADVANCE(1808); + if (lookahead == '}') ADVANCE(1968); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1274); + lookahead == ' ') SKIP(1244); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -52710,23 +50631,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3791); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3748); END_STATE(); - case 1276: - if (eof) ADVANCE(1284); + case 1246: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '#', 4952, - '(', 2360, - ')', 1840, - '-', 1899, - ';', 1328, - '|', 1843, - '}', 2001, - '\t', 3249, - ' ', 3249, + '\n', 1762, + '#', 4906, + '(', 2322, + ')', 1807, + '-', 1863, + ';', 1303, + '|', 1809, + '}', 1968, + '\t', 3209, + ' ', 3209, ); - if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1269); + if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1239); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -52734,22 +50655,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4597); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4552); END_STATE(); - case 1277: - if (eof) ADVANCE(1284); + case 1247: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '#', 4952, - '(', 2360, - ')', 1840, - '-', 1899, - ';', 1328, - '|', 1843, - '}', 2001, + '\n', 1762, + '#', 4906, + '(', 2322, + ')', 1807, + '-', 1863, + ';', 1303, + '|', 1809, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1269); + lookahead == ' ') SKIP(1239); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -52757,22 +50678,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4597); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4552); END_STATE(); - case 1278: - if (eof) ADVANCE(1284); + case 1248: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '\n', 1795, - '#', 4952, - '(', 2360, - ')', 1840, - ';', 1328, - '|', 1843, - '}', 2001, - '\t', 3249, - ' ', 3249, + '\n', 1762, + '#', 4906, + '(', 2322, + ')', 1807, + ';', 1303, + '|', 1809, + '}', 1968, + '\t', 3209, + ' ', 3209, ); - if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1274); + if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(1244); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -52780,19 +50701,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4597); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4552); END_STATE(); - case 1279: - if (eof) ADVANCE(1284); - if (lookahead == '\n') ADVANCE(1795); - if (lookahead == '#') ADVANCE(4952); - if (lookahead == '(') ADVANCE(2360); - if (lookahead == ')') ADVANCE(1840); - if (lookahead == ';') ADVANCE(1328); - if (lookahead == '|') ADVANCE(1843); - if (lookahead == '}') ADVANCE(2001); + case 1249: + if (eof) ADVANCE(1254); + if (lookahead == '\n') ADVANCE(1762); + if (lookahead == '#') ADVANCE(4906); + if (lookahead == '(') ADVANCE(2322); + if (lookahead == ')') ADVANCE(1807); + if (lookahead == ';') ADVANCE(1303); + if (lookahead == '|') ADVANCE(1809); + if (lookahead == '}') ADVANCE(1968); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1274); + lookahead == ' ') SKIP(1244); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -52800,22447 +50721,22282 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4597); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4552); END_STATE(); - case 1280: - if (eof) ADVANCE(1284); + case 1250: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '!', 3221, - '"', 2554, - '#', 4941, - '$', 1845, + '!', 3181, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 1840, - '*', 2085, - '+', 2149, - ',', 1835, - '-', 1891, - '.', 2481, - '/', 2121, - ':', 1830, - ';', 1328, - '<', 2213, - '=', 1302, - '>', 1874, - '?', 2102, - '@', 1879, - '[', 1834, - ']', 1838, - '^', 3246, - '_', 2009, + '(', 1806, + ')', 1807, + '*', 2052, + '+', 2111, + ',', 1802, + '-', 1858, + '.', 2443, + '/', 2083, + ':', 1797, + ';', 1303, + '<', 2175, + '=', 1272, + '>', 1841, + '?', 2064, + '@', 1846, + '[', 1801, + ']', 1805, + '^', 3206, + '_', 1976, '`', 834, - '{', 2000, - '|', 1841, - '}', 2001, + '{', 1967, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1280); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3240); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1653); - if (lookahead != 0) ADVANCE(3244); + lookahead == ' ') SKIP(1250); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3200); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1620); + if (lookahead != 0) ADVANCE(3204); END_STATE(); - case 1281: - if (eof) ADVANCE(1284); + case 1251: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, - ')', 2427, + '(', 1806, + ')', 2389, '+', 805, - '-', 1902, - '.', 2481, - '0', 2458, - ':', 1830, - '=', 1301, - '>', 1871, - '@', 1879, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1350, + '-', 1869, + '.', 2443, + '0', 2420, + ':', 1797, + '=', 1271, + '>', 1838, + '@', 1846, + 'I', 1523, + 'N', 1517, + '[', 1801, + '^', 3206, + '_', 1320, '`', 834, - 'a', 1441, - 'b', 1492, - 'c', 1465, - 'd', 1379, - 'e', 1494, - 'f', 1357, - 'h', 1424, - 'i', 1410, - 'l', 1381, - 'm', 1360, - 'n', 1471, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1483, - 'u', 1508, - 'w', 1414, - '{', 2000, - '|', 1841, - '}', 2001, + 'a', 1409, + 'b', 1459, + 'c', 1433, + 'd', 1349, + 'e', 1461, + 'f', 1327, + 'h', 1393, + 'i', 1380, + 'l', 1351, + 'm', 1330, + 'n', 1439, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1450, + 'u', 1475, + 'w', 1383, + '{', 1967, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1282); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') SKIP(1252); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); - case 1282: - if (eof) ADVANCE(1284); + case 1252: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '"', 2554, - '#', 4941, - '$', 1845, + '"', 2516, + '#', 4896, + '$', 1812, '\'', 791, - '(', 1839, + '(', 1806, '+', 805, - '-', 1902, - '.', 2481, - '0', 2458, - ':', 1830, - '=', 1301, - '>', 1871, - '@', 1879, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1350, + '-', 1869, + '.', 2443, + '0', 2420, + ':', 1797, + '=', 1271, + '>', 1838, + '@', 1846, + 'I', 1523, + 'N', 1517, + '[', 1801, + '^', 3206, + '_', 1320, '`', 834, - 'a', 1441, - 'b', 1492, - 'c', 1465, - 'd', 1379, - 'e', 1494, - 'f', 1357, - 'h', 1424, - 'i', 1410, - 'l', 1381, - 'm', 1360, - 'n', 1471, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1483, - 'u', 1508, - 'w', 1414, - '{', 2000, - '|', 1841, - '}', 2001, + 'a', 1409, + 'b', 1459, + 'c', 1433, + 'd', 1349, + 'e', 1461, + 'f', 1327, + 'h', 1393, + 'i', 1380, + 'l', 1351, + 'm', 1330, + 'n', 1439, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1450, + 'u', 1475, + 'w', 1383, + '{', 1967, + '|', 1808, + '}', 1968, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1282); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') SKIP(1252); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); - case 1283: - if (eof) ADVANCE(1284); + case 1253: + if (eof) ADVANCE(1254); ADVANCE_MAP( - '"', 2554, - '#', 4943, - '$', 1845, + '"', 2516, + '#', 4898, + '$', 1812, '\'', 791, - '(', 1839, + '(', 1806, '+', 805, - '-', 1902, - '.', 2481, - '0', 2458, - 'I', 1556, - 'N', 1550, - '[', 1834, - '^', 3246, - '_', 1350, + '-', 1869, + '.', 2443, + '0', 2420, + 'I', 1523, + 'N', 1517, + '[', 1801, + '^', 3206, + '_', 1320, '`', 834, - 'a', 1441, - 'b', 1492, - 'c', 1465, - 'd', 1379, - 'e', 1494, - 'f', 1357, - 'h', 1424, - 'i', 1410, - 'l', 1381, - 'm', 1360, - 'n', 1471, - 'o', 1543, - 'r', 1382, - 's', 1468, - 't', 1483, - 'u', 1508, - 'w', 1414, - '{', 2000, + 'a', 1409, + 'b', 1459, + 'c', 1433, + 'd', 1349, + 'e', 1461, + 'f', 1327, + 'h', 1393, + 'i', 1380, + 'l', 1351, + 'm', 1330, + 'n', 1439, + 'o', 1510, + 'r', 1352, + 's', 1436, + 't', 1450, + 'u', 1475, + 'w', 1383, + '{', 1967, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1283); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2471); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1560); + lookahead == ' ') SKIP(1253); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2433); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1527); END_STATE(); - case 1284: + case 1254: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 1285: + case 1255: ACCEPT_TOKEN(anon_sym_POUND_BANG); END_STATE(); - case 1286: + case 1256: ACCEPT_TOKEN(aux_sym_shebang_token1); END_STATE(); - case 1287: + case 1257: ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(1287); - if (lookahead == '#') ADVANCE(4942); + if (lookahead == '\n') ADVANCE(1257); + if (lookahead == '#') ADVANCE(4897); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(41); if (lookahead != 0) ADVANCE(42); END_STATE(); - case 1288: + case 1258: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(4263); + if (lookahead == '-') ADVANCE(4219); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); - case 1289: + case 1259: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(2864); + if (lookahead == '-') ADVANCE(2826); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); - case 1290: + case 1260: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(1403); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == '-') ADVANCE(1373); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1291: + case 1261: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(2862); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == '-') ADVANCE(4217); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 1292: + case 1262: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(4261); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == '-') ADVANCE(2824); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 1293: + case 1263: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(1689); + if (lookahead == '-') ADVANCE(1656); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); - case 1294: + case 1264: ACCEPT_TOKEN(anon_sym_alias); END_STATE(); - case 1295: + case 1265: ACCEPT_TOKEN(anon_sym_alias); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); - case 1296: + case 1266: ACCEPT_TOKEN(anon_sym_alias); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); - case 1297: + case 1267: ACCEPT_TOKEN(anon_sym_alias); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); - case 1298: + case 1268: ACCEPT_TOKEN(anon_sym_alias); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1299: + case 1269: ACCEPT_TOKEN(anon_sym_alias); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 1300: + case 1270: ACCEPT_TOKEN(anon_sym_alias); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 1301: + case 1271: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 1302: + case 1272: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(2197); - if (lookahead == '~') ADVANCE(2262); + if (lookahead == '=') ADVANCE(2159); + if (lookahead == '~') ADVANCE(2224); END_STATE(); - case 1303: + case 1273: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == '-') ADVANCE(1400); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == '-') ADVANCE(1370); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1304: + case 1274: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == '-') ADVANCE(2855); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == '-') ADVANCE(4210); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 1305: + case 1275: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == '-') ADVANCE(4254); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == '-') ADVANCE(2817); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 1306: + case 1276: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == '-') ADVANCE(4256); + if (lookahead == '-') ADVANCE(4212); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); - case 1307: + case 1277: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == '-') ADVANCE(2857); + if (lookahead == '-') ADVANCE(2819); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); - case 1308: + case 1278: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == '-') ADVANCE(1686); + if (lookahead == '-') ADVANCE(1653); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); - case 1309: + case 1279: ACCEPT_TOKEN(anon_sym_let_DASHenv); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); - case 1310: + case 1280: ACCEPT_TOKEN(anon_sym_let_DASHenv); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); - case 1311: + case 1281: ACCEPT_TOKEN(anon_sym_let_DASHenv); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); - case 1312: + case 1282: ACCEPT_TOKEN(anon_sym_let_DASHenv); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1313: + case 1283: ACCEPT_TOKEN(anon_sym_let_DASHenv); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 1314: + case 1284: ACCEPT_TOKEN(anon_sym_let_DASHenv); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 1315: + case 1285: ACCEPT_TOKEN(anon_sym_mut); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); - case 1316: + case 1286: ACCEPT_TOKEN(anon_sym_mut); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); - case 1317: + case 1287: ACCEPT_TOKEN(anon_sym_mut); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); - case 1318: + case 1288: ACCEPT_TOKEN(anon_sym_mut); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1319: + case 1289: ACCEPT_TOKEN(anon_sym_mut); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 1320: + case 1290: ACCEPT_TOKEN(anon_sym_mut); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 1321: + case 1291: ACCEPT_TOKEN(anon_sym_const); END_STATE(); - case 1322: + case 1292: ACCEPT_TOKEN(anon_sym_const); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); - case 1323: + case 1293: ACCEPT_TOKEN(anon_sym_const); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); - case 1324: + case 1294: ACCEPT_TOKEN(anon_sym_const); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); - case 1325: + case 1295: ACCEPT_TOKEN(anon_sym_const); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1326: + case 1296: ACCEPT_TOKEN(anon_sym_const); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 1327: + case 1297: ACCEPT_TOKEN(anon_sym_const); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 1328: - ACCEPT_TOKEN(anon_sym_SEMI); + case 1298: + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 1329: - ACCEPT_TOKEN(sym_cmd_identifier); - ADVANCE_MAP( - '+', 830, - '-', 1351, - 'I', 1551, - '_', 1351, - 'i', 1551, - 'n', 1377, - 'r', 1497, - 'x', 1482, - 'B', 2516, - 'b', 2516, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2407); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + case 1299: + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 1330: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '+') ADVANCE(830); - if (lookahead == '-') ADVANCE(1351); - if (lookahead == 'I') ADVANCE(1551); - if (lookahead == '_') ADVANCE(1351); - if (lookahead == 'i') ADVANCE(1367); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2516); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2407); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + case 1300: + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 1331: + case 1301: + ACCEPT_TOKEN(anon_sym_SLASH_EQ); + END_STATE(); + case 1302: + ACCEPT_TOKEN(anon_sym_PLUS_PLUS_EQ); + END_STATE(); + case 1303: + ACCEPT_TOKEN(anon_sym_SEMI); + END_STATE(); + case 1304: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == '+') ADVANCE(830); - if (lookahead == '-') ADVANCE(1351); - if (lookahead == '_') ADVANCE(1351); - if (lookahead == 'r') ADVANCE(1497); - if (lookahead == 'x') ADVANCE(1482); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2407); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == '-') ADVANCE(1321); + if (lookahead == '_') ADVANCE(1321); + if (lookahead == 'r') ADVANCE(1464); + if (lookahead == 'x') ADVANCE(1449); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2369); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1332: + case 1305: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == '+') ADVANCE(830); - if (lookahead == '-') ADVANCE(1351); - if (lookahead == '_') ADVANCE(1351); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2407); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == '-') ADVANCE(1321); + if (lookahead == '_') ADVANCE(1321); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2369); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1333: + case 1306: ACCEPT_TOKEN(sym_cmd_identifier); ADVANCE_MAP( - '+', 3225, - '-', 1351, - 'I', 1551, - '_', 1351, - 'i', 1551, - 'l', 1513, - 'n', 1377, - 'r', 1497, - 'x', 1482, - 'B', 2516, - 'b', 2516, + '+', 3185, + '-', 1321, + 'I', 1518, + '_', 1321, + 'i', 1518, + 'l', 1480, + 'n', 1347, + 'r', 1464, + 'x', 1449, + 'B', 2478, + 'b', 2478, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2407); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2369); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1334: + case 1307: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '+') ADVANCE(3225); - if (lookahead == '-') ADVANCE(1351); - if (lookahead == 'I') ADVANCE(1551); - if (lookahead == '_') ADVANCE(1351); - if (lookahead == 'i') ADVANCE(1367); + if (lookahead == '+') ADVANCE(3185); + if (lookahead == '-') ADVANCE(1321); + if (lookahead == 'I') ADVANCE(1518); + if (lookahead == '_') ADVANCE(1321); + if (lookahead == 'i') ADVANCE(1337); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2516); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2407); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); - END_STATE(); - case 1335: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '+') ADVANCE(3225); - if (lookahead == '-') ADVANCE(1351); - if (lookahead == '_') ADVANCE(1351); - if (lookahead == 'l') ADVANCE(1513); - if (lookahead == 'r') ADVANCE(1497); - if (lookahead == 'x') ADVANCE(1482); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2407); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + lookahead == 'b') ADVANCE(2478); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2369); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1336: + case 1308: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '+') ADVANCE(3225); - if (lookahead == '-') ADVANCE(1351); - if (lookahead == '_') ADVANCE(1351); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2407); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == '+') ADVANCE(3185); + if (lookahead == '-') ADVANCE(1321); + if (lookahead == '_') ADVANCE(1321); + if (lookahead == 'l') ADVANCE(1480); + if (lookahead == 'r') ADVANCE(1464); + if (lookahead == 'x') ADVANCE(1449); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2369); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1337: + case 1309: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(1364); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == '+') ADVANCE(3185); + if (lookahead == '-') ADVANCE(1321); + if (lookahead == '_') ADVANCE(1321); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2369); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1338: + case 1310: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(1545); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == '-') ADVANCE(1334); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1339: + case 1311: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(1431); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == '-') ADVANCE(1512); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1340: + case 1312: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(1546); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == '-') ADVANCE(1400); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1341: + case 1313: ACCEPT_TOKEN(sym_cmd_identifier); - ADVANCE_MAP( - 'I', 1551, - 'a', 1435, - 'i', 1452, - 'o', 1373, - 's', 2520, - 'u', 1517, - 'B', 2516, - 'b', 2516, - ); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == '-') ADVANCE(1513); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1342: + case 1314: ACCEPT_TOKEN(sym_cmd_identifier); ADVANCE_MAP( - 'I', 1551, - 'a', 1516, - 'i', 1452, - 'o', 1373, - 's', 2520, - 'u', 1517, - 'B', 2516, - 'b', 2516, + 'I', 1518, + 'a', 1404, + 'i', 1420, + 'o', 1343, + 's', 2482, + 'u', 1484, + 'B', 2478, + 'b', 2478, ); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1343: + case 1315: ACCEPT_TOKEN(sym_cmd_identifier); ADVANCE_MAP( - 'I', 1551, - 'i', 1551, - 'l', 1513, - 'n', 1377, - 'r', 1497, - 'x', 1482, - 'B', 2516, - 'b', 2516, + 'I', 1518, + 'i', 1518, + 'l', 1480, + 'n', 1347, + 'r', 1464, + 'x', 1449, + 'B', 2478, + 'b', 2478, ); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1344: + case 1316: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'I') ADVANCE(1551); - if (lookahead == 'i') ADVANCE(1551); - if (lookahead == 'n') ADVANCE(1377); - if (lookahead == 'r') ADVANCE(1497); - if (lookahead == 'x') ADVANCE(1482); + if (lookahead == 'I') ADVANCE(1518); + if (lookahead == 'i') ADVANCE(1518); + if (lookahead == 'r') ADVANCE(1514); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2516); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + lookahead == 'b') ADVANCE(2478); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1345: + case 1317: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'I') ADVANCE(1551); - if (lookahead == 'i') ADVANCE(1551); - if (lookahead == 'r') ADVANCE(1534); + if (lookahead == 'I') ADVANCE(1518); + if (lookahead == 'i') ADVANCE(1518); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2516); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + lookahead == 'b') ADVANCE(2478); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1346: + case 1318: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'I') ADVANCE(1551); - if (lookahead == 'i') ADVANCE(1551); - if (lookahead == 'r') ADVANCE(1547); + if (lookahead == 'I') ADVANCE(1518); + if (lookahead == 'i') ADVANCE(1337); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2516); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + lookahead == 'b') ADVANCE(2478); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1347: + case 1319: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'I') ADVANCE(1551); - if (lookahead == 'i') ADVANCE(1551); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2516); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'N') ADVANCE(1519); + if (lookahead == 'f') ADVANCE(1951); + if (lookahead == 'n') ADVANCE(1907); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1348: + case 1320: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'I') ADVANCE(1551); - if (lookahead == 'i') ADVANCE(1367); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2516); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == '_') ADVANCE(1320); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1320); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1349: + case 1321: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'N') ADVANCE(1552); - if (lookahead == 'f') ADVANCE(1984); - if (lookahead == 'n') ADVANCE(1940); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == '_') ADVANCE(1321); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2369); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1350: + case 1322: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '_') ADVANCE(1350); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1350); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == '_') ADVANCE(1322); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2351); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1351: + case 1323: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '_') ADVANCE(1351); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2407); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'a') ADVANCE(1403); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1352: + case 1324: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '_') ADVANCE(1352); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2389); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'a') ADVANCE(1515); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1353: + case 1325: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(1434); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'a') ADVANCE(1404); + if (lookahead == 'o') ADVANCE(1346); + if (lookahead == 'u') ADVANCE(1484); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1354: + case 1326: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(1548); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'a') ADVANCE(1404); + if (lookahead == 'o') ADVANCE(1343); + if (lookahead == 'u') ADVANCE(1484); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1355: + case 1327: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(1435); - if (lookahead == 'o') ADVANCE(1376); - if (lookahead == 'u') ADVANCE(1517); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'a') ADVANCE(1414); + if (lookahead == 'o') ADVANCE(1451); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1356: + case 1328: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(1435); - if (lookahead == 'o') ADVANCE(1373); - if (lookahead == 'u') ADVANCE(1517); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'a') ADVANCE(1414); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1357: + case 1329: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(1446); - if (lookahead == 'o') ADVANCE(1484); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'a') ADVANCE(1471); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1358: + case 1330: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(1446); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'a') ADVANCE(1483); + if (lookahead == 'o') ADVANCE(1346); + if (lookahead == 'u') ADVANCE(1484); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1359: + case 1331: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(1504); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'a') ADVANCE(1483); + if (lookahead == 'o') ADVANCE(1343); + if (lookahead == 'u') ADVANCE(1484); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1360: + case 1332: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(1516); - if (lookahead == 'o') ADVANCE(1376); - if (lookahead == 'u') ADVANCE(1517); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'a') ADVANCE(1483); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1361: + case 1333: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == 'a') ADVANCE(1516); - if (lookahead == 'o') ADVANCE(1373); - if (lookahead == 'u') ADVANCE(1517); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'e') ADVANCE(1381); + if (lookahead == 'o') ADVANCE(1944); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); + END_STATE(); + case 1334: + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'a') ADVANCE(1431); + if (lookahead == 'o') ADVANCE(1457); + if (lookahead == 's') ADVANCE(1386); + if (lookahead == 'x') ADVANCE(1447); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); + END_STATE(); + case 1335: + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'a') ADVANCE(1469); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); + END_STATE(); + case 1336: + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'a') ADVANCE(1497); + if (lookahead == 'o') ADVANCE(1417); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); + END_STATE(); + case 1337: + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'b') ADVANCE(2478); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); + END_STATE(); + case 1338: + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'c') ADVANCE(2482); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); + END_STATE(); + case 1339: + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'c') ADVANCE(1384); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); + END_STATE(); + case 1340: + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'c') ADVANCE(1385); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); + END_STATE(); + case 1341: + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'c') ADVANCE(1360); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); + END_STATE(); + case 1342: + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'd') ADVANCE(2276); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); + END_STATE(); + case 1343: + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'd') ADVANCE(2095); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); + END_STATE(); + case 1344: + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'd') ADVANCE(2243); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); + END_STATE(); + case 1345: + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'd') ADVANCE(2099); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); + END_STATE(); + case 1346: + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'd') ADVANCE(1505); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); + END_STATE(); + case 1347: + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'd') ADVANCE(1474); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); + END_STATE(); + case 1348: + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'd') ADVANCE(1354); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); + END_STATE(); + case 1349: + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'e') ADVANCE(1381); + if (lookahead == 'o') ADVANCE(1944); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); + END_STATE(); + case 1350: + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'e') ADVANCE(1482); + if (lookahead == 'i') ADVANCE(1479); + if (lookahead == 'o') ADVANCE(1437); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); + END_STATE(); + case 1351: + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'e') ADVANCE(1482); + if (lookahead == 'o') ADVANCE(1437); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); + END_STATE(); + case 1352: + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'e') ADVANCE(1382); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); + END_STATE(); + case 1353: + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'e') ADVANCE(1794); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); + END_STATE(); + case 1354: + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'e') ADVANCE(2024); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); + END_STATE(); + case 1355: + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'e') ADVANCE(2396); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); + END_STATE(); + case 1356: + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'e') ADVANCE(2409); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); + END_STATE(); + case 1357: + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'e') ADVANCE(2061); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); + END_STATE(); + case 1358: + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'e') ADVANCE(1937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); + END_STATE(); + case 1359: + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'e') ADVANCE(1787); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); + END_STATE(); + case 1360: + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'e') ADVANCE(2005); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); + END_STATE(); + case 1361: + ACCEPT_TOKEN(sym_cmd_identifier); + if (lookahead == 'e') ADVANCE(1893); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1362: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(1516); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'e') ADVANCE(1511); + if (lookahead == 'o') ADVANCE(1485); + if (lookahead == 'u') ADVANCE(1411); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1522); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1363: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(1549); - if (lookahead == 'e') ADVANCE(1411); - if (lookahead == 'o') ADVANCE(1977); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'e') ADVANCE(1511); + if (lookahead == 'o') ADVANCE(1491); + if (lookahead == 's') ADVANCE(2482); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1522); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1364: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(1463); - if (lookahead == 'o') ADVANCE(1490); - if (lookahead == 's') ADVANCE(1417); - if (lookahead == 'x') ADVANCE(1480); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'e') ADVANCE(1511); + if (lookahead == 'o') ADVANCE(1491); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1522); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1365: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(1502); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'e') ADVANCE(1511); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1522); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1366: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(1530); - if (lookahead == 'o') ADVANCE(1449); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'e') ADVANCE(1959); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1367: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'b') ADVANCE(2516); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'e') ADVANCE(1933); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1368: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'c') ADVANCE(2520); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'e') ADVANCE(1323); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1369: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'c') ADVANCE(1415); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'e') ADVANCE(1338); + if (lookahead == 'o') ADVANCE(1500); + if (lookahead == 't') ADVANCE(1335); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1370: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'c') ADVANCE(1416); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'e') ADVANCE(1423); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1371: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'c') ADVANCE(1390); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'e') ADVANCE(1466); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1372: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'd') ADVANCE(2314); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'e') ADVANCE(1424); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1373: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'd') ADVANCE(2133); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'e') ADVANCE(1427); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1374: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'd') ADVANCE(2281); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'e') ADVANCE(1430); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1375: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'd') ADVANCE(2137); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'e') ADVANCE(1462); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1376: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'd') ADVANCE(1538); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'e') ADVANCE(1453); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1377: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'd') ADVANCE(1507); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'e') ADVANCE(1496); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1378: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'd') ADVANCE(1384); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'e') ADVANCE(1468); + if (lookahead == 'i') ADVANCE(1412); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1379: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1411); - if (lookahead == 'o') ADVANCE(1977); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'e') ADVANCE(1468); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1380: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1515); - if (lookahead == 'i') ADVANCE(1512); - if (lookahead == 'o') ADVANCE(1469); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'f') ADVANCE(1951); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1519); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1381: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1515); - if (lookahead == 'o') ADVANCE(1469); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'f') ADVANCE(1767); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1382: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1412); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'g') ADVANCE(1396); + if (lookahead == 't') ADVANCE(1503); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1383: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1827); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'h') ADVANCE(1378); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1384: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(2057); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'h') ADVANCE(1964); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1385: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(2434); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'h') ADVANCE(1996); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1386: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(2447); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'h') ADVANCE(1406); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1387: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(2099); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'h') ADVANCE(2219); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1388: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1970); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'h') ADVANCE(2209); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1389: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1820); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'h') ADVANCE(1397); + if (lookahead == 'k') ADVANCE(2482); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1390: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(2038); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'h') ADVANCE(1397); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1391: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1926); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'h') ADVANCE(1379); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1392: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1544); - if (lookahead == 'o') ADVANCE(1518); - if (lookahead == 'u') ADVANCE(1443); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1555); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'i') ADVANCE(1348); + if (lookahead == 'r') ADVANCE(2482); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1393: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1544); - if (lookahead == 'o') ADVANCE(1524); - if (lookahead == 's') ADVANCE(2520); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1555); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'i') ADVANCE(1348); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1394: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1544); - if (lookahead == 'o') ADVANCE(1524); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1555); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'i') ADVANCE(1329); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1395: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1544); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1555); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'i') ADVANCE(1426); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1396: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1992); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'i') ADVANCE(1478); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1397: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1966); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'i') ADVANCE(1412); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1398: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1353); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'i') ADVANCE(1489); + if (lookahead == 'r') ADVANCE(1368); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1399: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1368); - if (lookahead == 'o') ADVANCE(1533); - if (lookahead == 't') ADVANCE(1365); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'i') ADVANCE(1489); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1400: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1455); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'i') ADVANCE(1421); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1401: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1499); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'i') ADVANCE(1494); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1402: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1456); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'i') ADVANCE(1495); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1403: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1459); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'k') ADVANCE(1887); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1404: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1462); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'k') ADVANCE(1367); + if (lookahead == 't') ADVANCE(1339); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1405: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1495); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'l') ADVANCE(2382); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1406: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1486); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'l') ADVANCE(2144); + if (lookahead == 'r') ADVANCE(2154); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1407: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1529); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'l') ADVANCE(1394); + if (lookahead == 'n') ADVANCE(1342); + if (lookahead == 's') ADVANCE(2047); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1408: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1501); - if (lookahead == 'i') ADVANCE(1444); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'l') ADVANCE(1394); + if (lookahead == 's') ADVANCE(2047); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1409: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1501); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'l') ADVANCE(1394); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1410: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'f') ADVANCE(1984); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1552); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'l') ADVANCE(1324); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1411: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'f') ADVANCE(1800); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'l') ADVANCE(1405); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1412: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'g') ADVANCE(1427); - if (lookahead == 't') ADVANCE(1536); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'l') ADVANCE(1358); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1413: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'h') ADVANCE(1408); - if (lookahead == 'k') ADVANCE(2520); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'l') ADVANCE(1359); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1414: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'h') ADVANCE(1408); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'l') ADVANCE(1477); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1415: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'h') ADVANCE(1997); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'l') ADVANCE(1480); + if (lookahead == 'n') ADVANCE(1347); + if (lookahead == 'r') ADVANCE(1464); + if (lookahead == 'x') ADVANCE(1449); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1416: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'h') ADVANCE(2029); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'l') ADVANCE(1480); + if (lookahead == 'r') ADVANCE(1464); + if (lookahead == 'x') ADVANCE(1449); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1417: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'h') ADVANCE(1437); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'n') ADVANCE(1476); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1418: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'h') ADVANCE(2257); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'n') ADVANCE(1780); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1419: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'h') ADVANCE(2247); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'n') ADVANCE(2000); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1420: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'h') ADVANCE(1428); - if (lookahead == 'k') ADVANCE(2520); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'n') ADVANCE(2482); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2478); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1421: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'h') ADVANCE(1428); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'n') ADVANCE(2199); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1422: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'h') ADVANCE(1409); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'n') ADVANCE(1919); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1423: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'i') ADVANCE(1378); - if (lookahead == 'r') ADVANCE(2520); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'n') ADVANCE(1506); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1424: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'i') ADVANCE(1378); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'n') ADVANCE(1507); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1425: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'i') ADVANCE(1359); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'n') ADVANCE(1342); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1426: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'i') ADVANCE(1458); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'n') ADVANCE(1504); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1427: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'i') ADVANCE(1511); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'n') ADVANCE(1508); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1428: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'i') ADVANCE(1444); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'n') ADVANCE(1347); + if (lookahead == 'r') ADVANCE(1464); + if (lookahead == 'x') ADVANCE(1449); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1429: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'i') ADVANCE(1522); - if (lookahead == 'r') ADVANCE(1398); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'n') ADVANCE(1347); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1430: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'i') ADVANCE(1522); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'n') ADVANCE(1509); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1431: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'i') ADVANCE(1453); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'n') ADVANCE(1344); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1432: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'i') ADVANCE(1527); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'n') ADVANCE(1492); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1433: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'i') ADVANCE(1528); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(1417); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1434: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'k') ADVANCE(1920); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(1944); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1435: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'k') ADVANCE(1397); - if (lookahead == 't') ADVANCE(1369); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(1500); + if (lookahead == 't') ADVANCE(1335); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1436: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'l') ADVANCE(2420); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(1500); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1437: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'l') ADVANCE(2182); - if (lookahead == 'r') ADVANCE(2192); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(1448); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1438: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'l') ADVANCE(1425); - if (lookahead == 'n') ADVANCE(1372); - if (lookahead == 's') ADVANCE(2080); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(1451); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1439: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'l') ADVANCE(1425); - if (lookahead == 'n') ADVANCE(1372); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(1485); + if (lookahead == 'u') ADVANCE(1411); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1522); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1440: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'l') ADVANCE(1425); - if (lookahead == 's') ADVANCE(2080); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(1452); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1441: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'l') ADVANCE(1425); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(1345); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1442: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'l') ADVANCE(1354); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(1467); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1443: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'l') ADVANCE(1436); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(1490); + if (lookahead == 'u') ADVANCE(1411); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1522); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1444: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'l') ADVANCE(1388); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(1432); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1445: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'l') ADVANCE(1389); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(1456); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1446: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'l') ADVANCE(1510); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(1491); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1447: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'l') ADVANCE(1513); - if (lookahead == 'n') ADVANCE(1377); - if (lookahead == 'r') ADVANCE(1497); - if (lookahead == 'x') ADVANCE(1482); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(1458); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1448: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'l') ADVANCE(1513); - if (lookahead == 'r') ADVANCE(1497); - if (lookahead == 'x') ADVANCE(1482); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'p') ADVANCE(1927); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1449: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(1509); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'p') ADVANCE(1442); + if (lookahead == 't') ADVANCE(1375); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1450: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(1813); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(1501); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1451: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(2033); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(1899); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1452: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(2520); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2516); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(1824); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1453: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(2237); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(2018); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1454: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(1952); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(2302); + if (lookahead == 'v') ADVANCE(1371); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1455: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(1539); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(2302); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1456: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(1540); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(2289); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1457: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(1372); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(2263); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1458: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(1537); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(2253); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1459: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(1541); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(1368); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1460: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(1377); - if (lookahead == 'r') ADVANCE(1497); - if (lookahead == 'x') ADVANCE(1482); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(1341); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1461: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(1377); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(1464); + if (lookahead == 'x') ADVANCE(1449); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1462: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(1542); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(1418); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1463: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(1374); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(1514); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1464: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(1525); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(1440); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1465: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(1449); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(1419); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1466: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(1977); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(1410); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1467: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(1533); - if (lookahead == 't') ADVANCE(1365); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(1487); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1468: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(1533); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(1357); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1469: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(1481); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(1499); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1470: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(1484); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(1502); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1471: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(1518); - if (lookahead == 'u') ADVANCE(1443); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1555); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 's') ADVANCE(1268); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1472: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(1485); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 's') ADVANCE(2482); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1473: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(1375); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 's') ADVANCE(2480); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1474: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(1500); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 's') ADVANCE(1311); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1475: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(1523); - if (lookahead == 's') ADVANCE(2520); - if (lookahead == 'u') ADVANCE(1443); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1555); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 's') ADVANCE(1353); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1476: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(1523); - if (lookahead == 'u') ADVANCE(1443); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1555); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 's') ADVANCE(1486); + if (lookahead == 't') ADVANCE(1395); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1477: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(1464); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 's') ADVANCE(1356); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1478: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(1489); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 's') ADVANCE(1498); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1479: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(1524); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 's') ADVANCE(1488); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1480: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(1491); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 's') ADVANCE(1366); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1481: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'p') ADVANCE(1960); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 's') ADVANCE(1313); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1482: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'p') ADVANCE(1474); - if (lookahead == 't') ADVANCE(1405); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 't') ADVANCE(1273); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1483: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(1534); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 't') ADVANCE(1339); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1484: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(1932); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 't') ADVANCE(1288); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1485: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(1857); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 't') ADVANCE(2317); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1486: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(2051); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 't') ADVANCE(1295); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1487: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(2340); - if (lookahead == 'v') ADVANCE(1401); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 't') ADVANCE(1260); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1488: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(2340); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 't') ADVANCE(1835); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1489: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(2327); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 't') ADVANCE(1310); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1490: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(2301); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 't') ADVANCE(2311); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1491: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(2291); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 't') ADVANCE(1312); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1492: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(1398); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 't') ADVANCE(1395); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1493: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(1371); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 't') ADVANCE(1335); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1494: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(1497); - if (lookahead == 'x') ADVANCE(1482); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 't') ADVANCE(1387); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1495: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(1450); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 't') ADVANCE(1388); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1496: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(1547); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 't') ADVANCE(1503); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1497: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(1472); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 't') ADVANCE(1340); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1498: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(1451); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 't') ADVANCE(1376); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1499: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(1442); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 't') ADVANCE(1481); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1500: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(1520); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'u') ADVANCE(1460); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1501: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(1387); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'u') ADVANCE(1355); + if (lookahead == 'y') ADVANCE(1990); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1502: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(1532); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'u') ADVANCE(1355); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1503: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(1535); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'u') ADVANCE(1465); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1504: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 's') ADVANCE(1298); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'u') ADVANCE(1361); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1505: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 's') ADVANCE(2520); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'u') ADVANCE(1413); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1506: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 's') ADVANCE(2518); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'v') ADVANCE(1282); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1507: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 's') ADVANCE(1338); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'v') ADVANCE(2031); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1508: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 's') ADVANCE(1383); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'v') ADVANCE(1773); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1509: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 's') ADVANCE(1519); - if (lookahead == 't') ADVANCE(1426); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'v') ADVANCE(2012); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1510: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 's') ADVANCE(1386); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'v') ADVANCE(1371); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1511: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 's') ADVANCE(1531); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'w') ADVANCE(2043); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1512: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 's') ADVANCE(1521); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'w') ADVANCE(1401); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1513: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 's') ADVANCE(1396); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'w') ADVANCE(1402); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1514: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 's') ADVANCE(1340); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'y') ADVANCE(1990); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1515: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(1303); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'y') ADVANCE(2037); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1516: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(1369); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'y') ADVANCE(2482); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1517: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(1318); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1522); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1518: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(2355); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2478); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1519: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(1325); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1521); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1520: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(1290); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1525); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1521: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(1868); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1524); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1522: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(1337); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1527); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1523: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(2349); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1519); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1524: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(1339); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1520); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1525: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(1426); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1526); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1526: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(1365); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1527); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1527: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(1418); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 1528: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(1419); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(838); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1620); END_STATE(); case 1529: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(1536); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(976); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1620); END_STATE(); case 1530: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(1370); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(927); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1620); END_STATE(); case 1531: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(1406); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(887); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1620); END_STATE(); case 1532: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(1514); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(850); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1620); END_STATE(); case 1533: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'u') ADVANCE(1493); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(916); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1620); END_STATE(); case 1534: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'u') ADVANCE(1385); - if (lookahead == 'y') ADVANCE(2023); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(977); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1620); END_STATE(); case 1535: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'u') ADVANCE(1385); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(929); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1620); END_STATE(); case 1536: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'u') ADVANCE(1498); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(978); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1620); END_STATE(); case 1537: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'u') ADVANCE(1391); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(sym_identifier); + ADVANCE_MAP( + 'I', 1611, + '_', 1545, + 'i', 1611, + 'n', 1555, + '+', 830, + '-', 830, + 'B', 2477, + 'b', 2477, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2371); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1620); END_STATE(); case 1538: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'u') ADVANCE(1445); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'I') ADVANCE(1611); + if (lookahead == '_') ADVANCE(1545); + if (lookahead == 'i') ADVANCE(1551); + if (lookahead == '+' || + lookahead == '-') ADVANCE(830); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2477); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2371); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1620); END_STATE(); case 1539: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'v') ADVANCE(1312); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'I') ADVANCE(1611); + if (lookahead == 'i') ADVANCE(1611); + if (lookahead == 'n') ADVANCE(1555); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2477); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1540: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'v') ADVANCE(2064); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'I') ADVANCE(1611); + if (lookahead == 'i') ADVANCE(1611); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2477); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1541: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'v') ADVANCE(1806); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'I') ADVANCE(1611); + if (lookahead == 'i') ADVANCE(1551); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2477); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1542: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'v') ADVANCE(2045); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'I') ADVANCE(1611); + if (lookahead == 'i') ADVANCE(1573); + if (lookahead == 'o') ADVANCE(1554); + if (lookahead == 's') ADVANCE(2481); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2477); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1543: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'v') ADVANCE(1401); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '_') ADVANCE(1543); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1543); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1544: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'w') ADVANCE(2076); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '_') ADVANCE(1545); + if (lookahead == '+' || + lookahead == '-') ADVANCE(830); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2371); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1620); END_STATE(); case 1545: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'w') ADVANCE(1432); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '_') ADVANCE(1545); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2371); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1546: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'w') ADVANCE(1433); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '_') ADVANCE(1546); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2352); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1547: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'y') ADVANCE(2023); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(1564); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1548: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'y') ADVANCE(2070); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(1609); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1549: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'y') ADVANCE(2520); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(1591); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1550: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1555); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(1594); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1551: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2516); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'b') ADVANCE(2477); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1552: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1554); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'c') ADVANCE(2481); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1553: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1558); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'd') ADVANCE(2273); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1554: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1557); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'd') ADVANCE(2096); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1555: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1560); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'd') ADVANCE(1597); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1556: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1552); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(2394); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1557: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1553); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(2407); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1558: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1559); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(1552); + if (lookahead == 't') ADVANCE(1549); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1559: - ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1560); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(1533); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1560: - ACCEPT_TOKEN(sym_cmd_identifier); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(1567); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1561: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(838); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1653); + if (lookahead == 'i') ADVANCE(1601); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1562: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(976); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1653); + if (lookahead == 'i') ADVANCE(1598); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1563: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(927); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1653); + if (lookahead == 'k') ADVANCE(2481); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1564: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(887); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1653); + if (lookahead == 'l') ADVANCE(1596); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1565: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(850); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1653); + if (lookahead == 'l') ADVANCE(2380); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1566: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(916); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1653); + if (lookahead == 'l') ADVANCE(1565); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1567: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(977); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1653); + if (lookahead == 'l') ADVANCE(1568); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1568: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(929); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1653); + if (lookahead == 'l') ADVANCE(1530); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1569: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(978); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1653); + if (lookahead == 'l') ADVANCE(1532); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1570: ACCEPT_TOKEN(sym_identifier); - ADVANCE_MAP( - 'I', 1644, - '_', 1578, - 'i', 1644, - 'n', 1588, - '+', 830, - '-', 830, - 'B', 2515, - 'b', 2515, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2409); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1653); + if (lookahead == 'l') ADVANCE(1569); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1571: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(1644); - if (lookahead == '_') ADVANCE(1578); - if (lookahead == 'i') ADVANCE(1584); - if (lookahead == '+' || - lookahead == '-') ADVANCE(830); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2515); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2409); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1653); + if (lookahead == 'm') ADVANCE(1584); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1572: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(1644); - if (lookahead == 'i') ADVANCE(1644); - if (lookahead == 'n') ADVANCE(1588); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2515); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'n') ADVANCE(1553); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1573: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(1644); - if (lookahead == 'i') ADVANCE(1644); + if (lookahead == 'n') ADVANCE(2481); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2515); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + lookahead == 'b') ADVANCE(2477); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1574: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(1644); - if (lookahead == 'i') ADVANCE(1584); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2515); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'n') ADVANCE(1915); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1575: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(1644); - if (lookahead == 'i') ADVANCE(1606); - if (lookahead == 'o') ADVANCE(1587); - if (lookahead == 's') ADVANCE(2519); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2515); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'n') ADVANCE(1555); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1576: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(1576); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1576); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'n') ADVANCE(1559); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1577: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(1578); - if (lookahead == '+' || - lookahead == '-') ADVANCE(830); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2409); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1653); + if (lookahead == 'o') ADVANCE(1600); + if (lookahead == 'u') ADVANCE(1566); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1615); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1578: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(1578); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2409); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'o') ADVANCE(1588); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1579: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(1579); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2390); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'o') ADVANCE(1604); + if (lookahead == 's') ADVANCE(2481); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1580: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(1597); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'o') ADVANCE(1604); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1581: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(1642); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'o') ADVANCE(1554); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1582: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(1624); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'o') ADVANCE(1589); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1583: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(1627); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'o') ADVANCE(1593); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1584: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'b') ADVANCE(2515); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'p') ADVANCE(1583); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1585: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(2519); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'r') ADVANCE(1607); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1586: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(2311); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'r') ADVANCE(2481); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1587: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(2134); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'r') ADVANCE(2299); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1588: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(1630); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'r') ADVANCE(2286); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1589: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2432); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'r') ADVANCE(1823); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1590: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2445); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'r') ADVANCE(1582); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1591: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1585); - if (lookahead == 't') ADVANCE(1582); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'r') ADVANCE(1606); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1592: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1566); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'r') ADVANCE(1590); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1593: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1600); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'r') ADVANCE(1605); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1594: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(1634); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'r') ADVANCE(1536); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1595: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(1631); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 's') ADVANCE(2481); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1596: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'k') ADVANCE(2519); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 's') ADVANCE(1557); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1597: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1629); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 's') ADVANCE(1529); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1598: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2418); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 's') ADVANCE(1602); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1599: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1598); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 's') ADVANCE(1534); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1600: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1601); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 't') ADVANCE(2315); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1601: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1563); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 't') ADVANCE(1528); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1602: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1565); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 't') ADVANCE(1834); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1603: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1602); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 't') ADVANCE(1549); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1604: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'm') ADVANCE(1617); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 't') ADVANCE(1531); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1605: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(1586); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 't') ADVANCE(1535); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1606: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(2519); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2515); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 't') ADVANCE(1599); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1607: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(1948); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'u') ADVANCE(1556); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1608: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(1588); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'u') ADVANCE(1570); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1609: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(1592); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'y') ADVANCE(2481); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1610: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(1633); - if (lookahead == 'u') ADVANCE(1599); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1648); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + lookahead == 'a') ADVANCE(1615); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1611: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(1621); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2477); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1612: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(1637); - if (lookahead == 's') ADVANCE(2519); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1614); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1613: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(1637); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1618); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1614: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(1587); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1617); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1615: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(1622); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1620); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1616: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(1626); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1612); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1617: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(1616); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1613); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1618: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1640); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1619); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1619: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2519); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1620); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1620: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2337); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 1621: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2324); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(4612); + if (lookahead == '>') ADVANCE(3225); + if (lookahead == 'r') ADVANCE(1704); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1761); END_STATE(); case 1622: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1856); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(4595); + if (lookahead == '>') ADVANCE(3232); + if (lookahead == 'u') ADVANCE(1727); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1761); END_STATE(); case 1623: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1615); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(4613); + if (lookahead == '>') ADVANCE(3211); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1761); END_STATE(); case 1624: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1639); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(4596); + if (lookahead == '>') ADVANCE(3218); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1761); END_STATE(); case 1625: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1623); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '-') ADVANCE(1761); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1625); END_STATE(); case 1626: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1638); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '_') ADVANCE(1626); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1527); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1626); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1627: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1569); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '_') ADVANCE(1627); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1627); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1761); END_STATE(); case 1628: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2519); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'a') ADVANCE(1680); + if (lookahead == 'o') ADVANCE(1700); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1629: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(1590); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'a') ADVANCE(1670); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1630: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(1562); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'a') ADVANCE(1741); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1631: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(1635); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'a') ADVANCE(1672); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1761); END_STATE(); case 1632: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(1567); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'a') ADVANCE(1714); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1633: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2353); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'a') ADVANCE(1721); + if (lookahead == 'o') ADVANCE(1636); + if (lookahead == 'u') ADVANCE(1722); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1634: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1561); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'c') ADVANCE(1665); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1635: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1867); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'c') ADVANCE(1648); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1636: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1582); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'd') ADVANCE(1735); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1637: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1564); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'd') ADVANCE(1642); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1638: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1568); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(1662); + if (lookahead == 'o') ADVANCE(1943); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1639: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1632); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(1720); + if (lookahead == 'o') ADVANCE(1692); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1640: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(1589); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(1663); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1641: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(1603); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(1793); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1642: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(2519); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2027); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1643: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1648); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2393); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1644: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2515); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2406); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1645: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1647); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2060); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1646: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1651); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(1936); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1647: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1650); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(1786); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1648: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1653); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2008); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1649: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1645); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(1892); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1650: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1646); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2395); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1761); END_STATE(); case 1651: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1652); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2408); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1761); END_STATE(); case 1652: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1653); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(1629); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1653: - ACCEPT_TOKEN(sym_identifier); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(1685); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1654: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(4657); - if (lookahead == '>') ADVANCE(3265); - if (lookahead == 'r') ADVANCE(1737); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1794); + if (lookahead == 'e') ADVANCE(1711); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1655: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(4640); - if (lookahead == '>') ADVANCE(3272); - if (lookahead == 'u') ADVANCE(1760); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1794); + if (lookahead == 'e') ADVANCE(1686); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1656: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(4658); - if (lookahead == '>') ADVANCE(3251); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1794); + if (lookahead == 'e') ADVANCE(1688); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1657: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(4641); - if (lookahead == '>') ADVANCE(3258); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1794); + if (lookahead == 'e') ADVANCE(1689); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1658: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(1794); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1658); + if (lookahead == 'e') ADVANCE(1708); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1659: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(1659); + if (lookahead == 'e') ADVANCE(1702); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1659); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1660: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(1660); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1660); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1794); + if (lookahead == 'e') ADVANCE(1713); + if (lookahead == 'i') ADVANCE(1678); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1661: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1713); - if (lookahead == 'o') ADVANCE(1733); + if (lookahead == 'f') ADVANCE(1950); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1744); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1662: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1703); + if (lookahead == 'f') ADVANCE(1766); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1663: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1774); + if (lookahead == 'g') ADVANCE(1669); + if (lookahead == 't') ADVANCE(1733); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1664: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1705); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1794); + if (lookahead == 'h') ADVANCE(1660); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1665: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1747); + if (lookahead == 'h') ADVANCE(1963); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1666: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1754); - if (lookahead == 'o') ADVANCE(1669); - if (lookahead == 'u') ADVANCE(1755); + if (lookahead == 'i') ADVANCE(1637); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1667: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(1698); + if (lookahead == 'i') ADVANCE(1632); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1668: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(1681); + if (lookahead == 'i') ADVANCE(1687); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1669: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'd') ADVANCE(1768); + if (lookahead == 'i') ADVANCE(1719); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1670: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'd') ADVANCE(1675); + if (lookahead == 'k') ADVANCE(1886); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1671: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1695); - if (lookahead == 'o') ADVANCE(1976); + if (lookahead == 'l') ADVANCE(2379); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1672: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1753); - if (lookahead == 'o') ADVANCE(1725); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + if (lookahead == 'l') ADVANCE(1715); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1761); END_STATE(); case 1673: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1696); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + if (lookahead == 'l') ADVANCE(2381); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1761); END_STATE(); case 1674: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1826); + if (lookahead == 'l') ADVANCE(1667); + if (lookahead == 's') ADVANCE(2046); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1675: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2060); + if (lookahead == 'l') ADVANCE(1671); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1676: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2431); + if (lookahead == 'l') ADVANCE(1630); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1677: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2444); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + if (lookahead == 'l') ADVANCE(1673); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1761); END_STATE(); case 1678: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2098); + if (lookahead == 'l') ADVANCE(1646); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1679: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1969); + if (lookahead == 'l') ADVANCE(1647); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1680: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1819); + if (lookahead == 'l') ADVANCE(1718); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1681: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2041); + if (lookahead == 'n') ADVANCE(1717); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1682: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1925); + if (lookahead == 'n') ADVANCE(1779); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1683: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2433); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1794); + if (lookahead == 'n') ADVANCE(1999); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1684: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2446); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1794); + if (lookahead == 'n') ADVANCE(1918); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1761); END_STATE(); case 1685: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1662); + if (lookahead == 'n') ADVANCE(1736); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1686: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1718); + if (lookahead == 'n') ADVANCE(1737); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1687: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1744); + if (lookahead == 'n') ADVANCE(1734); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1688: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1719); + if (lookahead == 'n') ADVANCE(1738); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1689: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1721); + if (lookahead == 'n') ADVANCE(1739); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1690: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1722); + if (lookahead == 'o') ADVANCE(1681); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1691: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1741); + if (lookahead == 'o') ADVANCE(1731); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1692: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1735); + if (lookahead == 'o') ADVANCE(1697); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1693: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1746); - if (lookahead == 'i') ADVANCE(1711); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + if (lookahead == 'o') ADVANCE(1726); + if (lookahead == 'u') ADVANCE(1677); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1752); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1761); END_STATE(); case 1694: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'f') ADVANCE(1983); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1777); + if (lookahead == 'o') ADVANCE(1723); + if (lookahead == 'u') ADVANCE(1675); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1750); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1695: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'f') ADVANCE(1799); + if (lookahead == 'o') ADVANCE(1701); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1696: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'g') ADVANCE(1702); - if (lookahead == 't') ADVANCE(1766); + if (lookahead == 'o') ADVANCE(1712); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1697: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(1693); + if (lookahead == 'p') ADVANCE(1926); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1698: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(1996); + if (lookahead == 'p') ADVANCE(1696); + if (lookahead == 't') ADVANCE(1658); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1699: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(1670); + if (lookahead == 'r') ADVANCE(1732); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1700: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(1665); + if (lookahead == 'r') ADVANCE(1898); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1701: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(1720); + if (lookahead == 'r') ADVANCE(1822); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1702: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(1752); + if (lookahead == 'r') ADVANCE(2017); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1703: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'k') ADVANCE(1919); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + if (lookahead == 'r') ADVANCE(1729); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1761); END_STATE(); case 1704: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2417); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + if (lookahead == 'r') ADVANCE(1623); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1761); END_STATE(); case 1705: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1748); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1794); + if (lookahead == 'r') ADVANCE(1652); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1706: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2419); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1794); + if (lookahead == 'r') ADVANCE(1635); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1707: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1700); - if (lookahead == 's') ADVANCE(2079); + if (lookahead == 'r') ADVANCE(1709); + if (lookahead == 'x') ADVANCE(1698); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1708: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1704); + if (lookahead == 'r') ADVANCE(1682); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1709: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1663); + if (lookahead == 'r') ADVANCE(1695); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1710: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1706); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1794); + if (lookahead == 'r') ADVANCE(1683); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1711: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1679); + if (lookahead == 'r') ADVANCE(1676); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1712: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1680); + if (lookahead == 'r') ADVANCE(1725); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1713: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1751); + if (lookahead == 'r') ADVANCE(1645); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1714: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1750); + if (lookahead == 's') ADVANCE(1267); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1715: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1812); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + if (lookahead == 's') ADVANCE(1651); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1761); END_STATE(); case 1716: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(2032); + if (lookahead == 's') ADVANCE(1641); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1717: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1951); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1794); + if (lookahead == 's') ADVANCE(1724); + if (lookahead == 't') ADVANCE(1668); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1718: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1769); + if (lookahead == 's') ADVANCE(1644); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1719: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1770); + if (lookahead == 's') ADVANCE(1728); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1720: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1767); + if (lookahead == 't') ADVANCE(1278); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1721: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1771); + if (lookahead == 't') ADVANCE(1634); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1722: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1772); + if (lookahead == 't') ADVANCE(1287); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1723: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(1714); + if (lookahead == 't') ADVANCE(2314); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1724: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(1764); + if (lookahead == 't') ADVANCE(1294); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1725: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(1730); + if (lookahead == 't') ADVANCE(1263); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1726: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(1759); - if (lookahead == 'u') ADVANCE(1710); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1785); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1794); + if (lookahead == 't') ADVANCE(2316); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1761); END_STATE(); case 1727: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(1756); - if (lookahead == 'u') ADVANCE(1708); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1783); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + if (lookahead == 't') ADVANCE(1624); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1761); END_STATE(); case 1728: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(1734); + if (lookahead == 't') ADVANCE(1659); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1729: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(1745); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + if (lookahead == 'u') ADVANCE(1650); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1761); END_STATE(); case 1730: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'p') ADVANCE(1959); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + if (lookahead == 'u') ADVANCE(1677); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1752); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1761); END_STATE(); case 1731: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'p') ADVANCE(1729); - if (lookahead == 't') ADVANCE(1691); + if (lookahead == 'u') ADVANCE(1706); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1732: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1765); + if (lookahead == 'u') ADVANCE(1643); + if (lookahead == 'y') ADVANCE(1989); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1733: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1931); + if (lookahead == 'u') ADVANCE(1710); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1734: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1855); + if (lookahead == 'u') ADVANCE(1649); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1735: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2050); + if (lookahead == 'u') ADVANCE(1679); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1736: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1762); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1794); + if (lookahead == 'v') ADVANCE(1281); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1737: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1656); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1794); + if (lookahead == 'v') ADVANCE(2030); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1738: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1685); + if (lookahead == 'v') ADVANCE(1772); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1739: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1668); + if (lookahead == 'v') ADVANCE(2011); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1740: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1742); - if (lookahead == 'x') ADVANCE(1731); + if (lookahead == 'v') ADVANCE(1654); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1741: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1715); + if (lookahead == 'y') ADVANCE(2036); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); case 1742: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1728); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); - END_STATE(); - case 1743: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1716); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); - END_STATE(); - case 1744: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1709); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); - END_STATE(); - case 1745: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1758); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); - END_STATE(); - case 1746: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1678); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); - END_STATE(); - case 1747: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1297); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); - END_STATE(); - case 1748: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1684); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1794); - END_STATE(); - case 1749: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1674); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); - END_STATE(); - case 1750: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1757); - if (lookahead == 't') ADVANCE(1701); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); - END_STATE(); - case 1751: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1677); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); - END_STATE(); - case 1752: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1761); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); - END_STATE(); - case 1753: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1308); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); - END_STATE(); - case 1754: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1667); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); - END_STATE(); - case 1755: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1317); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); - END_STATE(); - case 1756: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2352); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); - END_STATE(); - case 1757: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1324); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); - END_STATE(); - case 1758: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1293); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); - END_STATE(); - case 1759: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2354); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1794); - END_STATE(); - case 1760: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1657); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1794); - END_STATE(); - case 1761: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1692); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); - END_STATE(); - case 1762: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1683); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1794); - END_STATE(); - case 1763: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1710); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1785); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1794); - END_STATE(); - case 1764: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1739); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); - END_STATE(); - case 1765: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1676); - if (lookahead == 'y') ADVANCE(2022); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); - END_STATE(); - case 1766: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1743); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); - END_STATE(); - case 1767: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1682); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); - END_STATE(); - case 1768: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1712); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); - END_STATE(); - case 1769: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(1311); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); - END_STATE(); - case 1770: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(2063); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); - END_STATE(); - case 1771: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(1805); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); - END_STATE(); - case 1772: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(2044); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); - END_STATE(); - case 1773: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(1687); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); - END_STATE(); - case 1774: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'y') ADVANCE(2069); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); - END_STATE(); - case 1775: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1783); + lookahead == 'a') ADVANCE(1750); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); - case 1776: + case 1743: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1785); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1794); + lookahead == 'a') ADVANCE(1752); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1761); END_STATE(); - case 1777: + case 1744: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1781); + lookahead == 'f') ADVANCE(1748); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); - case 1778: + case 1745: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1782); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1794); + lookahead == 'f') ADVANCE(1749); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1761); END_STATE(); - case 1779: + case 1746: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1789); + lookahead == 'i') ADVANCE(1756); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); - case 1780: + case 1747: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1790); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1794); + lookahead == 'i') ADVANCE(1757); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1761); END_STATE(); - case 1781: + case 1748: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1787); + lookahead == 'i') ADVANCE(1754); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); - case 1782: + case 1749: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1788); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1794); + lookahead == 'i') ADVANCE(1755); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1761); END_STATE(); - case 1783: + case 1750: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1793); + lookahead == 'n') ADVANCE(1760); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); - case 1784: + case 1751: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1777); + lookahead == 'n') ADVANCE(1744); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); - case 1785: + case 1752: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1794); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1794); + lookahead == 'n') ADVANCE(1761); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1761); END_STATE(); - case 1786: + case 1753: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1778); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1794); + lookahead == 'n') ADVANCE(1745); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1761); END_STATE(); - case 1787: + case 1754: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1779); + lookahead == 'n') ADVANCE(1746); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); - case 1788: + case 1755: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1780); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1794); + lookahead == 'n') ADVANCE(1747); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1761); END_STATE(); - case 1789: + case 1756: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1791); + lookahead == 't') ADVANCE(1758); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); - case 1790: + case 1757: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1792); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1794); + lookahead == 't') ADVANCE(1759); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1761); END_STATE(); - case 1791: + case 1758: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1793); + lookahead == 'y') ADVANCE(1760); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); - case 1792: + case 1759: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1794); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1794); + lookahead == 'y') ADVANCE(1761); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1761); END_STATE(); - case 1793: + case 1760: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); - case 1794: + case 1761: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1794); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1761); END_STATE(); - case 1795: + case 1762: ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(1795); + if (lookahead == '\n') ADVANCE(1762); END_STATE(); - case 1796: + case 1763: ACCEPT_TOKEN(anon_sym_def); END_STATE(); - case 1797: + case 1764: ACCEPT_TOKEN(anon_sym_def); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); - case 1798: + case 1765: ACCEPT_TOKEN(anon_sym_def); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); - case 1799: + case 1766: ACCEPT_TOKEN(anon_sym_def); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); - case 1800: + case 1767: ACCEPT_TOKEN(anon_sym_def); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1801: + case 1768: ACCEPT_TOKEN(anon_sym_def); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 1802: + case 1769: ACCEPT_TOKEN(anon_sym_def); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 1803: + case 1770: ACCEPT_TOKEN(anon_sym_export_DASHenv); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); - case 1804: + case 1771: ACCEPT_TOKEN(anon_sym_export_DASHenv); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); - case 1805: + case 1772: ACCEPT_TOKEN(anon_sym_export_DASHenv); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); - case 1806: + case 1773: ACCEPT_TOKEN(anon_sym_export_DASHenv); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1807: + case 1774: ACCEPT_TOKEN(anon_sym_export_DASHenv); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 1808: + case 1775: ACCEPT_TOKEN(anon_sym_export_DASHenv); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 1809: + case 1776: ACCEPT_TOKEN(anon_sym_extern); END_STATE(); - case 1810: + case 1777: ACCEPT_TOKEN(anon_sym_extern); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); - case 1811: + case 1778: ACCEPT_TOKEN(anon_sym_extern); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); - case 1812: + case 1779: ACCEPT_TOKEN(anon_sym_extern); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); - case 1813: + case 1780: ACCEPT_TOKEN(anon_sym_extern); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1814: + case 1781: ACCEPT_TOKEN(anon_sym_extern); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 1815: + case 1782: ACCEPT_TOKEN(anon_sym_extern); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 1816: + case 1783: ACCEPT_TOKEN(anon_sym_module); END_STATE(); - case 1817: + case 1784: ACCEPT_TOKEN(anon_sym_module); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); - case 1818: + case 1785: ACCEPT_TOKEN(anon_sym_module); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); - case 1819: + case 1786: ACCEPT_TOKEN(anon_sym_module); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); - case 1820: + case 1787: ACCEPT_TOKEN(anon_sym_module); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1821: + case 1788: ACCEPT_TOKEN(anon_sym_module); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 1822: + case 1789: ACCEPT_TOKEN(anon_sym_module); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 1823: + case 1790: ACCEPT_TOKEN(anon_sym_use); END_STATE(); - case 1824: + case 1791: ACCEPT_TOKEN(anon_sym_use); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); - case 1825: + case 1792: ACCEPT_TOKEN(anon_sym_use); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); - case 1826: + case 1793: ACCEPT_TOKEN(anon_sym_use); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); - case 1827: + case 1794: ACCEPT_TOKEN(anon_sym_use); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1828: + case 1795: ACCEPT_TOKEN(anon_sym_use); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 1829: + case 1796: ACCEPT_TOKEN(anon_sym_use); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 1830: + case 1797: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 1831: + case 1798: ACCEPT_TOKEN(anon_sym_COLON); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 1832: + case 1799: ACCEPT_TOKEN(anon_sym_COLON); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 1833: + case 1800: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 1834: + case 1801: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 1835: + case 1802: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 1836: + case 1803: ACCEPT_TOKEN(anon_sym_COMMA); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 1837: + case 1804: ACCEPT_TOKEN(anon_sym_COMMA); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 1838: + case 1805: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 1839: + case 1806: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 1840: + case 1807: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 1841: + case 1808: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 1842: + case 1809: ACCEPT_TOKEN(anon_sym_PIPE); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 1843: + case 1810: ACCEPT_TOKEN(anon_sym_PIPE); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 1844: + case 1811: ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); - case 1845: + case 1812: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(2567); - if (lookahead == '\'') ADVANCE(2564); + if (lookahead == '"') ADVANCE(2529); + if (lookahead == '\'') ADVANCE(2526); END_STATE(); - case 1846: + case 1813: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(2567); - if (lookahead == '\'') ADVANCE(2564); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == '"') ADVANCE(2529); + if (lookahead == '\'') ADVANCE(2526); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 1847: + case 1814: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(2567); - if (lookahead == '\'') ADVANCE(2564); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == '"') ADVANCE(2529); + if (lookahead == '\'') ADVANCE(2526); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 1848: + case 1815: ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 1849: + case 1816: ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 1850: + case 1817: ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 1851: + case 1818: ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 1852: + case 1819: ACCEPT_TOKEN(anon_sym_cell_DASHpath); END_STATE(); - case 1853: + case 1820: ACCEPT_TOKEN(anon_sym_error); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); - case 1854: + case 1821: ACCEPT_TOKEN(anon_sym_error); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); - case 1855: + case 1822: ACCEPT_TOKEN(anon_sym_error); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); - case 1856: + case 1823: ACCEPT_TOKEN(anon_sym_error); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); - case 1857: + case 1824: ACCEPT_TOKEN(anon_sym_error); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1858: + case 1825: ACCEPT_TOKEN(anon_sym_error); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 1859: + case 1826: ACCEPT_TOKEN(anon_sym_error); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 1860: + case 1827: ACCEPT_TOKEN(anon_sym_full_DASHcell_DASHpath); END_STATE(); - case 1861: + case 1828: ACCEPT_TOKEN(anon_sym_import_DASHpattern); END_STATE(); - case 1862: + case 1829: ACCEPT_TOKEN(anon_sym_one_DASHof); END_STATE(); - case 1863: + case 1830: ACCEPT_TOKEN(anon_sym_var_DASHwith_DASHopt_DASHtype); END_STATE(); - case 1864: + case 1831: ACCEPT_TOKEN(anon_sym_list); END_STATE(); - case 1865: + case 1832: ACCEPT_TOKEN(anon_sym_list); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); - case 1866: + case 1833: ACCEPT_TOKEN(anon_sym_list); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); - case 1867: + case 1834: ACCEPT_TOKEN(anon_sym_list); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); - case 1868: + case 1835: ACCEPT_TOKEN(anon_sym_list); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1869: + case 1836: ACCEPT_TOKEN(anon_sym_LT); END_STATE(); - case 1870: + case 1837: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(2218); + if (lookahead == '=') ADVANCE(2180); END_STATE(); - case 1871: + case 1838: ACCEPT_TOKEN(anon_sym_GT); END_STATE(); - case 1872: + case 1839: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == '=') ADVANCE(2226); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == '=') ADVANCE(2188); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); - case 1873: + case 1840: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == '=') ADVANCE(2227); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == '=') ADVANCE(2189); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); - case 1874: + case 1841: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(2225); + if (lookahead == '=') ADVANCE(2187); END_STATE(); - case 1875: + case 1842: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(2230); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == '=') ADVANCE(2192); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 1876: + case 1843: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(2229); + if (lookahead == '=') ADVANCE(2190); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4513); END_STATE(); - case 1877: + case 1844: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(2231); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == '=') ADVANCE(2193); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 1878: + case 1845: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(2228); + if (lookahead == '=') ADVANCE(2191); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3121); END_STATE(); - case 1879: + case 1846: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 1880: + case 1847: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); - case 1881: + case 1848: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 1882: + case 1849: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 1883: + case 1850: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 1884: + case 1851: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 1885: + case 1852: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 1886: + case 1853: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 1887: + case 1854: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 1888: + case 1855: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 1889: + case 1856: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 1890: + case 1857: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(1884); + if (lookahead == '-') ADVANCE(1851); END_STATE(); - case 1891: + case 1858: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(1884); - if (lookahead == '.') ADVANCE(3223); - if (lookahead == '=') ADVANCE(2094); - if (lookahead == '_') ADVANCE(3218); + if (lookahead == '-') ADVANCE(1851); + if (lookahead == '.') ADVANCE(3183); + if (lookahead == '=') ADVANCE(1299); + if (lookahead == '_') ADVANCE(3178); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3228); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2412); + lookahead == 'i') ADVANCE(3188); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2374); END_STATE(); - case 1892: + case 1859: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(1884); + if (lookahead == '-') ADVANCE(1851); if (lookahead == '.') ADVANCE(825); if (lookahead == '_') ADVANCE(805); if (lookahead == 'I' || lookahead == 'i') ADVANCE(992); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2476); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2438); END_STATE(); - case 1893: + case 1860: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(1884); + if (lookahead == '-') ADVANCE(1851); if (lookahead == '.') ADVANCE(831); if (lookahead == '_') ADVANCE(809); if (lookahead == 'I' || lookahead == 'i') ADVANCE(992); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2412); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2374); END_STATE(); - case 1894: + case 1861: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(1884); + if (lookahead == '-') ADVANCE(1851); if (lookahead == '.') ADVANCE(831); if (lookahead == '_') ADVANCE(809); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2412); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2374); END_STATE(); - case 1895: + case 1862: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(1887); - if (lookahead == '.') ADVANCE(2781); - if (lookahead == '_') ADVANCE(2751); + if (lookahead == '-') ADVANCE(1854); + if (lookahead == '.') ADVANCE(4136); + if (lookahead == '_') ADVANCE(4109); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3172); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2781); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + lookahead == 'i') ADVANCE(4525); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4136); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 1896: + case 1863: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(1887); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == '-') ADVANCE(1854); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 1897: + case 1864: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(1885); - if (lookahead == '.') ADVANCE(4884); - if (lookahead == '_') ADVANCE(4872); + if (lookahead == '-') ADVANCE(1852); + if (lookahead == '.') ADVANCE(4839); + if (lookahead == '_') ADVANCE(4827); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4914); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4884); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4936); + lookahead == 'i') ADVANCE(4869); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4839); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4891); END_STATE(); - case 1898: + case 1865: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(1888); - if (lookahead == '.') ADVANCE(4180); - if (lookahead == '_') ADVANCE(4153); + if (lookahead == '-') ADVANCE(1855); + if (lookahead == '.') ADVANCE(2743); + if (lookahead == '_') ADVANCE(2713); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4570); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4180); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + lookahead == 'i') ADVANCE(3133); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2743); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 1899: + case 1866: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(1888); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == '-') ADVANCE(1855); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 1900: + case 1867: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(1886); - if (lookahead == '.') ADVANCE(4755); - if (lookahead == '_') ADVANCE(4743); + if (lookahead == '-') ADVANCE(1853); + if (lookahead == '.') ADVANCE(4710); + if (lookahead == '_') ADVANCE(4698); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4788); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4755); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4810); + lookahead == 'i') ADVANCE(4743); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4710); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4765); END_STATE(); - case 1901: + case 1868: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(3223); - if (lookahead == '_') ADVANCE(3218); + if (lookahead == '.') ADVANCE(3183); + if (lookahead == '_') ADVANCE(3178); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3228); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2412); + lookahead == 'i') ADVANCE(3188); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2374); END_STATE(); - case 1902: + case 1869: ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == '.') ADVANCE(825); if (lookahead == '_') ADVANCE(805); if (lookahead == 'I' || lookahead == 'i') ADVANCE(992); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2476); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2438); END_STATE(); - case 1903: + case 1870: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(4175); - if (lookahead == '_') ADVANCE(4149); + if (lookahead == '.') ADVANCE(4131); + if (lookahead == '_') ADVANCE(4105); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); + lookahead == ':') ADVANCE(4552); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4547); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4175); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == 'i') ADVANCE(4502); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4131); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); - case 1904: + case 1871: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(2773); - if (lookahead == '_') ADVANCE(2747); + if (lookahead == '.') ADVANCE(2735); + if (lookahead == '_') ADVANCE(2709); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + lookahead == ':') ADVANCE(3160); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3149); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2773); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == 'i') ADVANCE(3110); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2735); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); - case 1905: + case 1872: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(3224); - if (lookahead == '=') ADVANCE(2094); - if (lookahead == '_') ADVANCE(3219); + if (lookahead == '.') ADVANCE(3184); + if (lookahead == '=') ADVANCE(1299); + if (lookahead == '_') ADVANCE(3179); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3228); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2476); + lookahead == 'i') ADVANCE(3188); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2438); END_STATE(); - case 1906: + case 1873: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(3224); - if (lookahead == '_') ADVANCE(3219); + if (lookahead == '.') ADVANCE(3184); + if (lookahead == '_') ADVANCE(3179); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3228); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2476); + lookahead == 'i') ADVANCE(3188); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2438); END_STATE(); - case 1907: + case 1874: ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == '.') ADVANCE(831); if (lookahead == '_') ADVANCE(809); if (lookahead == 'I' || lookahead == 'i') ADVANCE(992); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2412); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2374); END_STATE(); - case 1908: + case 1875: ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == '.') ADVANCE(831); if (lookahead == '_') ADVANCE(809); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2412); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2374); END_STATE(); - case 1909: + case 1876: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(2781); - if (lookahead == '_') ADVANCE(2751); + if (lookahead == '.') ADVANCE(4136); + if (lookahead == '_') ADVANCE(4109); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3172); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2781); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + lookahead == 'i') ADVANCE(4525); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4136); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 1910: + case 1877: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(4180); - if (lookahead == '_') ADVANCE(4153); + if (lookahead == '.') ADVANCE(2743); + if (lookahead == '_') ADVANCE(2713); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4570); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4180); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + lookahead == 'i') ADVANCE(3133); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2743); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 1911: + case 1878: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(2094); + if (lookahead == '=') ADVANCE(1299); END_STATE(); - case 1912: + case 1879: ACCEPT_TOKEN(anon_sym_DASH); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 1913: + case 1880: ACCEPT_TOKEN(anon_sym_DASH); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 1914: + case 1881: ACCEPT_TOKEN(sym_param_short_flag_identifier); END_STATE(); - case 1915: + case 1882: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3237); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3197); END_STATE(); - case 1916: + case 1883: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); - case 1917: + case 1884: ACCEPT_TOKEN(anon_sym_break); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); - case 1918: + case 1885: ACCEPT_TOKEN(anon_sym_break); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); - case 1919: + case 1886: ACCEPT_TOKEN(anon_sym_break); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); - case 1920: + case 1887: ACCEPT_TOKEN(anon_sym_break); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1921: + case 1888: ACCEPT_TOKEN(anon_sym_break); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 1922: + case 1889: ACCEPT_TOKEN(anon_sym_break); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 1923: + case 1890: ACCEPT_TOKEN(anon_sym_continue); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); - case 1924: + case 1891: ACCEPT_TOKEN(anon_sym_continue); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); - case 1925: + case 1892: ACCEPT_TOKEN(anon_sym_continue); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); - case 1926: + case 1893: ACCEPT_TOKEN(anon_sym_continue); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1927: + case 1894: ACCEPT_TOKEN(anon_sym_continue); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 1928: + case 1895: ACCEPT_TOKEN(anon_sym_continue); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 1929: + case 1896: ACCEPT_TOKEN(anon_sym_for); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); - case 1930: + case 1897: ACCEPT_TOKEN(anon_sym_for); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); - case 1931: + case 1898: ACCEPT_TOKEN(anon_sym_for); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); - case 1932: + case 1899: ACCEPT_TOKEN(anon_sym_for); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1933: + case 1900: ACCEPT_TOKEN(anon_sym_for); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 1934: + case 1901: ACCEPT_TOKEN(anon_sym_for); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 1935: + case 1902: ACCEPT_TOKEN(anon_sym_in); END_STATE(); - case 1936: + case 1903: ACCEPT_TOKEN(anon_sym_in); - if (lookahead == ',') ADVANCE(3199); + if (lookahead == ',') ADVANCE(4552); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2703); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + lookahead == 'f') ADVANCE(4061); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); - case 1937: + case 1904: ACCEPT_TOKEN(anon_sym_in); - if (lookahead == ',') ADVANCE(4597); + if (lookahead == ',') ADVANCE(3160); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4105); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + lookahead == 'f') ADVANCE(2665); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); - case 1938: + case 1905: ACCEPT_TOKEN(anon_sym_in); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + lookahead == ':') ADVANCE(4552); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3146); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == 'f') ADVANCE(4499); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); - case 1939: + case 1906: ACCEPT_TOKEN(anon_sym_in); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); + lookahead == ':') ADVANCE(3160); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4544); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == 'f') ADVANCE(3107); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); - case 1940: + case 1907: ACCEPT_TOKEN(anon_sym_in); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1554); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + lookahead == 'f') ADVANCE(1521); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1941: + case 1908: ACCEPT_TOKEN(anon_sym_in); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3168); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + lookahead == 'f') ADVANCE(4521); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 1942: + case 1909: ACCEPT_TOKEN(anon_sym_in); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3167); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + lookahead == 'f') ADVANCE(4520); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 1943: + case 1910: ACCEPT_TOKEN(anon_sym_in); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4566); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + lookahead == 'f') ADVANCE(3129); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 1944: + case 1911: ACCEPT_TOKEN(anon_sym_in); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4565); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + lookahead == 'f') ADVANCE(3128); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 1945: + case 1912: ACCEPT_TOKEN(anon_sym_in); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2493); + lookahead == 'f') ADVANCE(2455); END_STATE(); - case 1946: + case 1913: ACCEPT_TOKEN(anon_sym_in); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2494); + lookahead == 'f') ADVANCE(2456); END_STATE(); - case 1947: + case 1914: ACCEPT_TOKEN(anon_sym_in); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2495); + lookahead == 'f') ADVANCE(2457); END_STATE(); - case 1948: + case 1915: ACCEPT_TOKEN(anon_sym_in); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); - case 1949: + case 1916: ACCEPT_TOKEN(anon_sym_in); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4595); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4550); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 1950: + case 1917: ACCEPT_TOKEN(anon_sym_in); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3197); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3158); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 1951: + case 1918: ACCEPT_TOKEN(anon_sym_in); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1794); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1761); END_STATE(); - case 1952: + case 1919: ACCEPT_TOKEN(anon_sym_in); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1953: + case 1920: ACCEPT_TOKEN(anon_sym_in); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 1954: + case 1921: ACCEPT_TOKEN(anon_sym_in); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 1955: + case 1922: ACCEPT_TOKEN(anon_sym_in); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 1956: + case 1923: ACCEPT_TOKEN(anon_sym_in); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 1957: + case 1924: ACCEPT_TOKEN(anon_sym_loop); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); - case 1958: + case 1925: ACCEPT_TOKEN(anon_sym_loop); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); - case 1959: + case 1926: ACCEPT_TOKEN(anon_sym_loop); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); - case 1960: + case 1927: ACCEPT_TOKEN(anon_sym_loop); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1961: + case 1928: ACCEPT_TOKEN(anon_sym_loop); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 1962: + case 1929: ACCEPT_TOKEN(anon_sym_loop); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 1963: + case 1930: ACCEPT_TOKEN(anon_sym_make); END_STATE(); - case 1964: + case 1931: ACCEPT_TOKEN(anon_sym_make); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); - case 1965: + case 1932: ACCEPT_TOKEN(anon_sym_make); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); - case 1966: + case 1933: ACCEPT_TOKEN(anon_sym_make); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1967: + case 1934: ACCEPT_TOKEN(anon_sym_while); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); - case 1968: + case 1935: ACCEPT_TOKEN(anon_sym_while); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); - case 1969: + case 1936: ACCEPT_TOKEN(anon_sym_while); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); - case 1970: + case 1937: ACCEPT_TOKEN(anon_sym_while); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1971: + case 1938: ACCEPT_TOKEN(anon_sym_while); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 1972: + case 1939: ACCEPT_TOKEN(anon_sym_while); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 1973: + case 1940: ACCEPT_TOKEN(anon_sym_do); END_STATE(); - case 1974: + case 1941: ACCEPT_TOKEN(anon_sym_do); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); - case 1975: + case 1942: ACCEPT_TOKEN(anon_sym_do); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); - case 1976: + case 1943: ACCEPT_TOKEN(anon_sym_do); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); - case 1977: + case 1944: ACCEPT_TOKEN(anon_sym_do); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1978: + case 1945: ACCEPT_TOKEN(anon_sym_do); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 1979: + case 1946: ACCEPT_TOKEN(anon_sym_do); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 1980: + case 1947: ACCEPT_TOKEN(anon_sym_if); END_STATE(); - case 1981: + case 1948: ACCEPT_TOKEN(anon_sym_if); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); - case 1982: + case 1949: ACCEPT_TOKEN(anon_sym_if); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); - case 1983: + case 1950: ACCEPT_TOKEN(anon_sym_if); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); - case 1984: + case 1951: ACCEPT_TOKEN(anon_sym_if); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1985: + case 1952: ACCEPT_TOKEN(anon_sym_if); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 1986: + case 1953: ACCEPT_TOKEN(anon_sym_if); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 1987: + case 1954: ACCEPT_TOKEN(anon_sym_if); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 1988: + case 1955: ACCEPT_TOKEN(anon_sym_if); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 1989: + case 1956: ACCEPT_TOKEN(anon_sym_else); END_STATE(); - case 1990: + case 1957: ACCEPT_TOKEN(anon_sym_else); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); - case 1991: + case 1958: ACCEPT_TOKEN(anon_sym_else); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); - case 1992: + case 1959: ACCEPT_TOKEN(anon_sym_else); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1993: + case 1960: ACCEPT_TOKEN(anon_sym_match); END_STATE(); - case 1994: + case 1961: ACCEPT_TOKEN(anon_sym_match); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); - case 1995: + case 1962: ACCEPT_TOKEN(anon_sym_match); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); - case 1996: + case 1963: ACCEPT_TOKEN(anon_sym_match); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); - case 1997: + case 1964: ACCEPT_TOKEN(anon_sym_match); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 1998: + case 1965: ACCEPT_TOKEN(anon_sym_match); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 1999: + case 1966: ACCEPT_TOKEN(anon_sym_match); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 2000: + case 1967: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 2001: + case 1968: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 2002: + case 1969: ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); - case 2003: + case 1970: ACCEPT_TOKEN(anon_sym_EQ_GT); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 2004: + case 1971: ACCEPT_TOKEN(anon_sym_EQ_GT); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2005: + case 1972: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(3339); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2475); + if (lookahead == '_') ADVANCE(3299); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2437); END_STATE(); - case 2006: + case 1973: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(3344); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + if (lookahead == '_') ADVANCE(3304); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); END_STATE(); - case 2007: + case 1974: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(2781); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2781); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == '_') ADVANCE(4136); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4136); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 2008: + case 1975: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(4180); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4180); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == '_') ADVANCE(2743); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2743); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2009: + case 1976: ACCEPT_TOKEN(anon_sym__); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); - case 2010: + case 1977: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == '<') ADVANCE(2378); - if (lookahead == '=') ADVANCE(2371); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token4_character_set_1, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == '<') ADVANCE(2340); + if (lookahead == '=') ADVANCE(2333); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token4_character_set_1, 12, lookahead))) ADVANCE(4085); END_STATE(); - case 2011: + case 1978: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == '<') ADVANCE(2379); - if (lookahead == '=') ADVANCE(2372); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token4_character_set_1, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == '<') ADVANCE(2341); + if (lookahead == '=') ADVANCE(2334); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token4_character_set_1, 12, lookahead))) ADVANCE(2689); END_STATE(); - case 2012: + case 1979: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(2377); - if (lookahead == '=') ADVANCE(2370); + if (lookahead == '<') ADVANCE(2339); + if (lookahead == '=') ADVANCE(2332); END_STATE(); - case 2013: + case 1980: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(2382); - if (lookahead == '=') ADVANCE(2375); - if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == '<') ADVANCE(2344); + if (lookahead == '=') ADVANCE(2337); + if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 2014: + case 1981: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(2380); - if (lookahead == '=') ADVANCE(2373); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token4_character_set_1, 12, lookahead))) ADVANCE(4936); + if (lookahead == '<') ADVANCE(2342); + if (lookahead == '=') ADVANCE(2335); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token4_character_set_1, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 2015: + case 1982: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(2383); - if (lookahead == '=') ADVANCE(2376); - if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == '<') ADVANCE(2345); + if (lookahead == '=') ADVANCE(2338); + if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2016: + case 1983: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(2381); - if (lookahead == '=') ADVANCE(2374); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token4_character_set_1, 12, lookahead))) ADVANCE(4810); + if (lookahead == '<') ADVANCE(2343); + if (lookahead == '=') ADVANCE(2336); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token4_character_set_1, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 2017: + case 1984: ACCEPT_TOKEN(anon_sym_DOLLAR2); END_STATE(); - case 2018: + case 1985: ACCEPT_TOKEN(anon_sym_DOLLAR2); - if (lookahead == '"') ADVANCE(2567); - if (lookahead == '\'') ADVANCE(2564); + if (lookahead == '"') ADVANCE(2529); + if (lookahead == '\'') ADVANCE(2526); END_STATE(); - case 2019: + case 1986: ACCEPT_TOKEN(anon_sym_try); END_STATE(); - case 2020: + case 1987: ACCEPT_TOKEN(anon_sym_try); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); - case 2021: + case 1988: ACCEPT_TOKEN(anon_sym_try); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); - case 2022: + case 1989: ACCEPT_TOKEN(anon_sym_try); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); - case 2023: + case 1990: ACCEPT_TOKEN(anon_sym_try); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 2024: + case 1991: ACCEPT_TOKEN(anon_sym_try); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 2025: + case 1992: ACCEPT_TOKEN(anon_sym_try); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 2026: + case 1993: ACCEPT_TOKEN(anon_sym_catch); END_STATE(); - case 2027: + case 1994: ACCEPT_TOKEN(anon_sym_catch); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); - case 2028: + case 1995: ACCEPT_TOKEN(anon_sym_catch); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); - case 2029: + case 1996: ACCEPT_TOKEN(anon_sym_catch); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 2030: + case 1997: ACCEPT_TOKEN(anon_sym_return); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); - case 2031: + case 1998: ACCEPT_TOKEN(anon_sym_return); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); - case 2032: + case 1999: ACCEPT_TOKEN(anon_sym_return); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); - case 2033: + case 2000: ACCEPT_TOKEN(anon_sym_return); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 2034: + case 2001: ACCEPT_TOKEN(anon_sym_return); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 2035: + case 2002: ACCEPT_TOKEN(anon_sym_return); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 2036: + case 2003: ACCEPT_TOKEN(anon_sym_source); - if (lookahead == '-') ADVANCE(4266); + if (lookahead == '-') ADVANCE(4222); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); - case 2037: + case 2004: ACCEPT_TOKEN(anon_sym_source); - if (lookahead == '-') ADVANCE(2867); + if (lookahead == '-') ADVANCE(2829); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); - case 2038: + case 2005: ACCEPT_TOKEN(anon_sym_source); - if (lookahead == '-') ADVANCE(1404); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == '-') ADVANCE(1374); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 2039: + case 2006: ACCEPT_TOKEN(anon_sym_source); - if (lookahead == '-') ADVANCE(2866); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == '-') ADVANCE(4221); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 2040: + case 2007: ACCEPT_TOKEN(anon_sym_source); - if (lookahead == '-') ADVANCE(4265); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == '-') ADVANCE(2828); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 2041: + case 2008: ACCEPT_TOKEN(anon_sym_source); - if (lookahead == '-') ADVANCE(1690); + if (lookahead == '-') ADVANCE(1657); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); - case 2042: + case 2009: ACCEPT_TOKEN(anon_sym_source_DASHenv); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); - case 2043: + case 2010: ACCEPT_TOKEN(anon_sym_source_DASHenv); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); - case 2044: + case 2011: ACCEPT_TOKEN(anon_sym_source_DASHenv); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); - case 2045: + case 2012: ACCEPT_TOKEN(anon_sym_source_DASHenv); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 2046: + case 2013: ACCEPT_TOKEN(anon_sym_source_DASHenv); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 2047: + case 2014: ACCEPT_TOKEN(anon_sym_source_DASHenv); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 2048: + case 2015: ACCEPT_TOKEN(anon_sym_register); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); - case 2049: + case 2016: ACCEPT_TOKEN(anon_sym_register); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); - case 2050: + case 2017: ACCEPT_TOKEN(anon_sym_register); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); - case 2051: + case 2018: ACCEPT_TOKEN(anon_sym_register); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 2052: + case 2019: ACCEPT_TOKEN(anon_sym_register); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 2053: + case 2020: ACCEPT_TOKEN(anon_sym_register); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 2054: + case 2021: ACCEPT_TOKEN(anon_sym_hide); END_STATE(); - case 2055: + case 2022: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == '-') ADVANCE(4260); + if (lookahead == '-') ADVANCE(4216); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); - case 2056: + case 2023: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == '-') ADVANCE(2861); + if (lookahead == '-') ADVANCE(2823); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); - case 2057: + case 2024: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == '-') ADVANCE(1402); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == '-') ADVANCE(1372); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 2058: + case 2025: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == '-') ADVANCE(2860); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == '-') ADVANCE(4215); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 2059: + case 2026: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == '-') ADVANCE(4259); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == '-') ADVANCE(2822); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 2060: + case 2027: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == '-') ADVANCE(1688); + if (lookahead == '-') ADVANCE(1655); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); - case 2061: + case 2028: ACCEPT_TOKEN(anon_sym_hide_DASHenv); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); - case 2062: + case 2029: ACCEPT_TOKEN(anon_sym_hide_DASHenv); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); - case 2063: + case 2030: ACCEPT_TOKEN(anon_sym_hide_DASHenv); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); - case 2064: + case 2031: ACCEPT_TOKEN(anon_sym_hide_DASHenv); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 2065: + case 2032: ACCEPT_TOKEN(anon_sym_hide_DASHenv); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 2066: + case 2033: ACCEPT_TOKEN(anon_sym_hide_DASHenv); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 2067: + case 2034: ACCEPT_TOKEN(anon_sym_overlay); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); - case 2068: + case 2035: ACCEPT_TOKEN(anon_sym_overlay); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); - case 2069: + case 2036: ACCEPT_TOKEN(anon_sym_overlay); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); - case 2070: + case 2037: ACCEPT_TOKEN(anon_sym_overlay); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 2071: + case 2038: ACCEPT_TOKEN(anon_sym_overlay); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 2072: + case 2039: ACCEPT_TOKEN(anon_sym_overlay); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 2073: + case 2040: ACCEPT_TOKEN(anon_sym_new); END_STATE(); - case 2074: + case 2041: ACCEPT_TOKEN(anon_sym_new); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); - case 2075: + case 2042: ACCEPT_TOKEN(anon_sym_new); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); - case 2076: + case 2043: ACCEPT_TOKEN(anon_sym_new); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 2077: + case 2044: ACCEPT_TOKEN(anon_sym_as); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); - case 2078: + case 2045: ACCEPT_TOKEN(anon_sym_as); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); - case 2079: + case 2046: ACCEPT_TOKEN(anon_sym_as); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); - case 2080: + case 2047: ACCEPT_TOKEN(anon_sym_as); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 2081: + case 2048: ACCEPT_TOKEN(anon_sym_as); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 2082: + case 2049: ACCEPT_TOKEN(anon_sym_as); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 2083: + case 2050: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 2084: + case 2051: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(2103); + if (lookahead == '*') ADVANCE(2065); END_STATE(); - case 2085: + case 2052: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(2103); - if (lookahead == '=') ADVANCE(2095); + if (lookahead == '*') ADVANCE(2065); + if (lookahead == '=') ADVANCE(1300); END_STATE(); - case 2086: + case 2053: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(2108); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == '*') ADVANCE(2070); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 2087: + case 2054: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(2107); + if (lookahead == '*') ADVANCE(2068); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4513); END_STATE(); - case 2088: + case 2055: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(2105); - if (lookahead == ',') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == '*') ADVANCE(2066); + if (lookahead == ',') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); - case 2089: + case 2056: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(2109); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == '*') ADVANCE(2071); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2090: + case 2057: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(2106); + if (lookahead == '*') ADVANCE(2069); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3121); END_STATE(); - case 2091: + case 2058: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(2104); - if (lookahead == ',') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == '*') ADVANCE(2067); + if (lookahead == ',') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); - case 2092: + case 2059: ACCEPT_TOKEN(anon_sym_STAR); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); - END_STATE(); - case 2093: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); - END_STATE(); - case 2094: - ACCEPT_TOKEN(anon_sym_DASH_EQ); - END_STATE(); - case 2095: - ACCEPT_TOKEN(anon_sym_STAR_EQ); - END_STATE(); - case 2096: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2097: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS_EQ); - END_STATE(); - case 2098: + case 2060: ACCEPT_TOKEN(anon_sym_where); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); - case 2099: + case 2061: ACCEPT_TOKEN(anon_sym_where); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 2100: + case 2062: ACCEPT_TOKEN(anon_sym_where); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 2101: + case 2063: ACCEPT_TOKEN(anon_sym_where); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 2102: + case 2064: ACCEPT_TOKEN(anon_sym_QMARK2); END_STATE(); - case 2103: + case 2065: ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); - case 2104: + case 2066: ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == ',') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); - case 2105: + case 2067: ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == ',') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); - case 2106: + case 2068: ACCEPT_TOKEN(anon_sym_STAR_STAR); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4513); END_STATE(); - case 2107: + case 2069: ACCEPT_TOKEN(anon_sym_STAR_STAR); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3121); END_STATE(); - case 2108: + case 2070: ACCEPT_TOKEN(anon_sym_STAR_STAR); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 2109: + case 2071: ACCEPT_TOKEN(anon_sym_STAR_STAR); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2110: + case 2072: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 2111: + case 2073: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); - if (lookahead == ',') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); - case 2112: + case 2074: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); - if (lookahead == ',') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); - case 2113: + case 2075: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); - if (lookahead == '=') ADVANCE(2097); + if (lookahead == '=') ADVANCE(1302); END_STATE(); - case 2114: + case 2076: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4513); END_STATE(); - case 2115: + case 2077: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3121); END_STATE(); - case 2116: + case 2078: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 2117: + case 2079: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2118: + case 2080: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == '/') ADVANCE(2143); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == '/') ADVANCE(2105); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); - case 2119: + case 2081: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == '/') ADVANCE(2144); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == '/') ADVANCE(2106); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); - case 2120: + case 2082: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(2142); + if (lookahead == '/') ADVANCE(2104); END_STATE(); - case 2121: + case 2083: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(2142); - if (lookahead == '=') ADVANCE(2096); + if (lookahead == '/') ADVANCE(2104); + if (lookahead == '=') ADVANCE(1301); END_STATE(); - case 2122: + case 2084: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(2147); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == '/') ADVANCE(2109); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 2123: + case 2085: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(2146); + if (lookahead == '/') ADVANCE(2107); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4513); END_STATE(); - case 2124: + case 2086: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(2148); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == '/') ADVANCE(2110); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2125: + case 2087: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(2145); + if (lookahead == '/') ADVANCE(2108); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3121); END_STATE(); - case 2126: + case 2088: ACCEPT_TOKEN(anon_sym_mod); END_STATE(); - case 2127: + case 2089: ACCEPT_TOKEN(anon_sym_mod); - if (lookahead == ',') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); - case 2128: + case 2090: ACCEPT_TOKEN(anon_sym_mod); - if (lookahead == ',') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); - case 2129: + case 2091: ACCEPT_TOKEN(anon_sym_mod); - if (lookahead == 'u') ADVANCE(4331); + if (lookahead == 'u') ADVANCE(4286); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); - case 2130: + case 2092: ACCEPT_TOKEN(anon_sym_mod); - if (lookahead == 'u') ADVANCE(2933); + if (lookahead == 'u') ADVANCE(2894); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); - case 2131: + case 2093: ACCEPT_TOKEN(anon_sym_mod); - if (lookahead == 'u') ADVANCE(2934); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'u') ADVANCE(4287); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 2132: + case 2094: ACCEPT_TOKEN(anon_sym_mod); - if (lookahead == 'u') ADVANCE(4332); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'u') ADVANCE(2895); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 2133: + case 2095: ACCEPT_TOKEN(anon_sym_mod); - if (lookahead == 'u') ADVANCE(1445); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'u') ADVANCE(1413); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 2134: + case 2096: ACCEPT_TOKEN(anon_sym_mod); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); - case 2135: + case 2097: ACCEPT_TOKEN(anon_sym_mod); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4595); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4550); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 2136: + case 2098: ACCEPT_TOKEN(anon_sym_mod); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3197); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3158); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2137: + case 2099: ACCEPT_TOKEN(anon_sym_mod); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 2138: + case 2100: ACCEPT_TOKEN(anon_sym_mod); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 2139: + case 2101: ACCEPT_TOKEN(anon_sym_mod); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 2140: + case 2102: ACCEPT_TOKEN(anon_sym_mod); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 2141: + case 2103: ACCEPT_TOKEN(anon_sym_mod); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2142: + case 2104: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); END_STATE(); - case 2143: + case 2105: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - if (lookahead == ',') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); - case 2144: + case 2106: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - if (lookahead == ',') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); - case 2145: + case 2107: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4513); END_STATE(); - case 2146: + case 2108: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3121); END_STATE(); - case 2147: + case 2109: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 2148: + case 2110: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2149: + case 2111: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(2113); - if (lookahead == '.') ADVANCE(3223); - if (lookahead == '=') ADVANCE(2093); - if (lookahead == '_') ADVANCE(3218); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2412); + if (lookahead == '+') ADVANCE(2075); + if (lookahead == '.') ADVANCE(3183); + if (lookahead == '=') ADVANCE(1298); + if (lookahead == '_') ADVANCE(3178); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2374); END_STATE(); - case 2150: + case 2112: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(2113); - if (lookahead == '.') ADVANCE(3224); - if (lookahead == '=') ADVANCE(2093); - if (lookahead == '_') ADVANCE(3219); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2476); + if (lookahead == '+') ADVANCE(2075); + if (lookahead == '.') ADVANCE(3184); + if (lookahead == '=') ADVANCE(1298); + if (lookahead == '_') ADVANCE(3179); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2438); END_STATE(); - case 2151: + case 2113: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(2113); - if (lookahead == '=') ADVANCE(2093); + if (lookahead == '+') ADVANCE(2075); + if (lookahead == '=') ADVANCE(1298); END_STATE(); - case 2152: + case 2114: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(2110); + if (lookahead == '+') ADVANCE(2072); END_STATE(); - case 2153: + case 2115: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(2110); - if (lookahead == '.') ADVANCE(3223); - if (lookahead == '_') ADVANCE(3218); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2412); + if (lookahead == '+') ADVANCE(2072); + if (lookahead == '.') ADVANCE(3183); + if (lookahead == '_') ADVANCE(3178); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2374); END_STATE(); - case 2154: + case 2116: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(2110); + if (lookahead == '+') ADVANCE(2072); if (lookahead == '.') ADVANCE(825); if (lookahead == '_') ADVANCE(805); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2476); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2438); END_STATE(); - case 2155: + case 2117: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(2110); - if (lookahead == '.') ADVANCE(3224); - if (lookahead == '_') ADVANCE(3219); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2476); + if (lookahead == '+') ADVANCE(2072); + if (lookahead == '.') ADVANCE(3184); + if (lookahead == '_') ADVANCE(3179); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2438); END_STATE(); - case 2156: + case 2118: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(2110); - if (lookahead == '.') ADVANCE(4623); - if (lookahead == '_') ADVANCE(4610); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2476); + if (lookahead == '+') ADVANCE(2072); + if (lookahead == '.') ADVANCE(4578); + if (lookahead == '_') ADVANCE(4565); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2438); END_STATE(); - case 2157: + case 2119: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(2110); - if (lookahead == '.') ADVANCE(3340); - if (lookahead == '_') ADVANCE(3322); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2476); + if (lookahead == '+') ADVANCE(2072); + if (lookahead == '.') ADVANCE(3300); + if (lookahead == '_') ADVANCE(3282); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2438); END_STATE(); - case 2158: + case 2120: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(2110); + if (lookahead == '+') ADVANCE(2072); if (lookahead == '.') ADVANCE(831); if (lookahead == '_') ADVANCE(809); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2412); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2374); END_STATE(); - case 2159: + case 2121: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(2110); - if (lookahead == '.') ADVANCE(4628); - if (lookahead == '_') ADVANCE(4611); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2412); + if (lookahead == '+') ADVANCE(2072); + if (lookahead == '.') ADVANCE(4583); + if (lookahead == '_') ADVANCE(4566); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2374); END_STATE(); - case 2160: + case 2122: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(2110); - if (lookahead == '.') ADVANCE(3345); - if (lookahead == '_') ADVANCE(3323); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2412); + if (lookahead == '+') ADVANCE(2072); + if (lookahead == '.') ADVANCE(3305); + if (lookahead == '_') ADVANCE(3283); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2374); END_STATE(); - case 2161: + case 2123: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(2116); - if (lookahead == '.') ADVANCE(2781); - if (lookahead == '_') ADVANCE(2751); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2781); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == '+') ADVANCE(2078); + if (lookahead == '.') ADVANCE(4136); + if (lookahead == '_') ADVANCE(4109); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4136); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 2162: + case 2124: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(2116); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == '+') ADVANCE(2078); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 2163: + case 2125: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(2115); - if (lookahead == '.') ADVANCE(4175); - if (lookahead == '_') ADVANCE(4149); + if (lookahead == '+') ADVANCE(2076); + if (lookahead == '.') ADVANCE(4131); + if (lookahead == '_') ADVANCE(4105); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4175); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(4552); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4131); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); - case 2164: + case 2126: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(2112); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == '.') ADVANCE(4042); - if (lookahead == '_') ADVANCE(4027); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4042); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4129); + if (lookahead == '+') ADVANCE(2073); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == '.') ADVANCE(3998); + if (lookahead == '_') ADVANCE(3983); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4085); END_STATE(); - case 2165: + case 2127: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(2117); - if (lookahead == '.') ADVANCE(4180); - if (lookahead == '_') ADVANCE(4153); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4180); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == '+') ADVANCE(2079); + if (lookahead == '.') ADVANCE(2743); + if (lookahead == '_') ADVANCE(2713); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2743); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 2166: + case 2128: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(2117); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == '+') ADVANCE(2079); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2167: + case 2129: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(2114); - if (lookahead == '.') ADVANCE(2773); - if (lookahead == '_') ADVANCE(2747); + if (lookahead == '+') ADVANCE(2077); + if (lookahead == '.') ADVANCE(2735); + if (lookahead == '_') ADVANCE(2709); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2773); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2735); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); - case 2168: + case 2130: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(2111); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == '.') ADVANCE(2640); - if (lookahead == '_') ADVANCE(2625); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2640); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2727); + if (lookahead == '+') ADVANCE(2074); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == '.') ADVANCE(2602); + if (lookahead == '_') ADVANCE(2587); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2602); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2689); END_STATE(); - case 2169: + case 2131: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == '.') ADVANCE(2640); - if (lookahead == '_') ADVANCE(2625); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2640); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == '.') ADVANCE(3998); + if (lookahead == '_') ADVANCE(3983); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4085); END_STATE(); - case 2170: + case 2132: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == '.') ADVANCE(4042); - if (lookahead == '_') ADVANCE(4027); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4042); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == '.') ADVANCE(2602); + if (lookahead == '_') ADVANCE(2587); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2602); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2689); END_STATE(); - case 2171: + case 2133: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(3223); - if (lookahead == '_') ADVANCE(3218); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2412); + if (lookahead == '.') ADVANCE(3183); + if (lookahead == '_') ADVANCE(3178); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2374); END_STATE(); - case 2172: + case 2134: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(4884); - if (lookahead == '_') ADVANCE(4872); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4884); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4936); + if (lookahead == '.') ADVANCE(4839); + if (lookahead == '_') ADVANCE(4827); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4839); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4891); END_STATE(); - case 2173: + case 2135: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(4755); - if (lookahead == '_') ADVANCE(4743); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4755); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4810); + if (lookahead == '.') ADVANCE(4710); + if (lookahead == '_') ADVANCE(4698); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4710); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4765); END_STATE(); - case 2174: + case 2136: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(3224); - if (lookahead == '_') ADVANCE(3219); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2476); + if (lookahead == '.') ADVANCE(3184); + if (lookahead == '_') ADVANCE(3179); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2438); END_STATE(); - case 2175: + case 2137: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(4623); - if (lookahead == '_') ADVANCE(4610); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2476); + if (lookahead == '.') ADVANCE(4578); + if (lookahead == '_') ADVANCE(4565); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2438); END_STATE(); - case 2176: + case 2138: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(4628); - if (lookahead == '_') ADVANCE(4611); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2412); + if (lookahead == '.') ADVANCE(4583); + if (lookahead == '_') ADVANCE(4566); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2374); END_STATE(); - case 2177: + case 2139: ACCEPT_TOKEN(anon_sym_bit_DASHshl); END_STATE(); - case 2178: + case 2140: ACCEPT_TOKEN(anon_sym_bit_DASHshl); - if (lookahead == ',') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); - case 2179: + case 2141: ACCEPT_TOKEN(anon_sym_bit_DASHshl); - if (lookahead == ',') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); - case 2180: + case 2142: ACCEPT_TOKEN(anon_sym_bit_DASHshl); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); - case 2181: + case 2143: ACCEPT_TOKEN(anon_sym_bit_DASHshl); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); - case 2182: + case 2144: ACCEPT_TOKEN(anon_sym_bit_DASHshl); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 2183: + case 2145: ACCEPT_TOKEN(anon_sym_bit_DASHshl); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 2184: + case 2146: ACCEPT_TOKEN(anon_sym_bit_DASHshl); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 2185: + case 2147: ACCEPT_TOKEN(anon_sym_bit_DASHshl); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 2186: + case 2148: ACCEPT_TOKEN(anon_sym_bit_DASHshl); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2187: + case 2149: ACCEPT_TOKEN(anon_sym_bit_DASHshr); END_STATE(); - case 2188: + case 2150: ACCEPT_TOKEN(anon_sym_bit_DASHshr); - if (lookahead == ',') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); - case 2189: + case 2151: ACCEPT_TOKEN(anon_sym_bit_DASHshr); - if (lookahead == ',') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); - case 2190: + case 2152: ACCEPT_TOKEN(anon_sym_bit_DASHshr); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); - case 2191: + case 2153: ACCEPT_TOKEN(anon_sym_bit_DASHshr); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); - case 2192: + case 2154: ACCEPT_TOKEN(anon_sym_bit_DASHshr); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 2193: + case 2155: ACCEPT_TOKEN(anon_sym_bit_DASHshr); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 2194: + case 2156: ACCEPT_TOKEN(anon_sym_bit_DASHshr); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 2195: + case 2157: ACCEPT_TOKEN(anon_sym_bit_DASHshr); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 2196: + case 2158: ACCEPT_TOKEN(anon_sym_bit_DASHshr); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2197: + case 2159: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 2198: + case 2160: ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == ',') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); - case 2199: + case 2161: ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == ',') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); - case 2200: + case 2162: ACCEPT_TOKEN(anon_sym_EQ_EQ); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4513); END_STATE(); - case 2201: + case 2163: ACCEPT_TOKEN(anon_sym_EQ_EQ); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3121); END_STATE(); - case 2202: + case 2164: ACCEPT_TOKEN(anon_sym_EQ_EQ); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 2203: + case 2165: ACCEPT_TOKEN(anon_sym_EQ_EQ); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2204: + case 2166: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 2205: + case 2167: ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == ',') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); - case 2206: + case 2168: ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == ',') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); - case 2207: + case 2169: ACCEPT_TOKEN(anon_sym_BANG_EQ); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4513); END_STATE(); - case 2208: + case 2170: ACCEPT_TOKEN(anon_sym_BANG_EQ); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3121); END_STATE(); - case 2209: + case 2171: ACCEPT_TOKEN(anon_sym_BANG_EQ); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 2210: + case 2172: ACCEPT_TOKEN(anon_sym_BANG_EQ); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2211: + case 2173: ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == '=') ADVANCE(2219); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == '=') ADVANCE(2181); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); - case 2212: + case 2174: ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == '=') ADVANCE(2220); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == '=') ADVANCE(2182); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); - case 2213: + case 2175: ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '=') ADVANCE(2218); + if (lookahead == '=') ADVANCE(2180); END_STATE(); - case 2214: + case 2176: ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '=') ADVANCE(2223); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == '=') ADVANCE(2185); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 2215: + case 2177: ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '=') ADVANCE(2222); + if (lookahead == '=') ADVANCE(2183); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4513); END_STATE(); - case 2216: + case 2178: ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '=') ADVANCE(2224); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == '=') ADVANCE(2186); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2217: + case 2179: ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '=') ADVANCE(2221); + if (lookahead == '=') ADVANCE(2184); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3121); END_STATE(); - case 2218: + case 2180: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 2219: + case 2181: ACCEPT_TOKEN(anon_sym_LT_EQ); - if (lookahead == ',') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); - case 2220: + case 2182: ACCEPT_TOKEN(anon_sym_LT_EQ); - if (lookahead == ',') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); - case 2221: + case 2183: ACCEPT_TOKEN(anon_sym_LT_EQ); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4513); END_STATE(); - case 2222: + case 2184: ACCEPT_TOKEN(anon_sym_LT_EQ); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3121); END_STATE(); - case 2223: + case 2185: ACCEPT_TOKEN(anon_sym_LT_EQ); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 2224: + case 2186: ACCEPT_TOKEN(anon_sym_LT_EQ); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2225: + case 2187: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 2226: + case 2188: ACCEPT_TOKEN(anon_sym_GT_EQ); - if (lookahead == ',') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); - case 2227: + case 2189: ACCEPT_TOKEN(anon_sym_GT_EQ); - if (lookahead == ',') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); - case 2228: + case 2190: ACCEPT_TOKEN(anon_sym_GT_EQ); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4513); END_STATE(); - case 2229: + case 2191: ACCEPT_TOKEN(anon_sym_GT_EQ); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3121); END_STATE(); - case 2230: + case 2192: ACCEPT_TOKEN(anon_sym_GT_EQ); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 2231: + case 2193: ACCEPT_TOKEN(anon_sym_GT_EQ); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2232: + case 2194: ACCEPT_TOKEN(anon_sym_not_DASHin); END_STATE(); - case 2233: + case 2195: ACCEPT_TOKEN(anon_sym_not_DASHin); - if (lookahead == ',') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); - case 2234: + case 2196: ACCEPT_TOKEN(anon_sym_not_DASHin); - if (lookahead == ',') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); - case 2235: + case 2197: ACCEPT_TOKEN(anon_sym_not_DASHin); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); - case 2236: + case 2198: ACCEPT_TOKEN(anon_sym_not_DASHin); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); - case 2237: + case 2199: ACCEPT_TOKEN(anon_sym_not_DASHin); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 2238: + case 2200: ACCEPT_TOKEN(anon_sym_not_DASHin); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 2239: + case 2201: ACCEPT_TOKEN(anon_sym_not_DASHin); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 2240: + case 2202: ACCEPT_TOKEN(anon_sym_not_DASHin); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 2241: + case 2203: ACCEPT_TOKEN(anon_sym_not_DASHin); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2242: + case 2204: ACCEPT_TOKEN(anon_sym_starts_DASHwith); END_STATE(); - case 2243: + case 2205: ACCEPT_TOKEN(anon_sym_starts_DASHwith); - if (lookahead == ',') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); - case 2244: + case 2206: ACCEPT_TOKEN(anon_sym_starts_DASHwith); - if (lookahead == ',') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); - case 2245: + case 2207: ACCEPT_TOKEN(anon_sym_starts_DASHwith); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); - case 2246: + case 2208: ACCEPT_TOKEN(anon_sym_starts_DASHwith); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); - case 2247: + case 2209: ACCEPT_TOKEN(anon_sym_starts_DASHwith); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 2248: + case 2210: ACCEPT_TOKEN(anon_sym_starts_DASHwith); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 2249: + case 2211: ACCEPT_TOKEN(anon_sym_starts_DASHwith); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 2250: + case 2212: ACCEPT_TOKEN(anon_sym_starts_DASHwith); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 2251: + case 2213: ACCEPT_TOKEN(anon_sym_starts_DASHwith); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2252: + case 2214: ACCEPT_TOKEN(anon_sym_ends_DASHwith); END_STATE(); - case 2253: + case 2215: ACCEPT_TOKEN(anon_sym_ends_DASHwith); - if (lookahead == ',') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); - case 2254: + case 2216: ACCEPT_TOKEN(anon_sym_ends_DASHwith); - if (lookahead == ',') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); - case 2255: + case 2217: ACCEPT_TOKEN(anon_sym_ends_DASHwith); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); - case 2256: + case 2218: ACCEPT_TOKEN(anon_sym_ends_DASHwith); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); - case 2257: + case 2219: ACCEPT_TOKEN(anon_sym_ends_DASHwith); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 2258: + case 2220: ACCEPT_TOKEN(anon_sym_ends_DASHwith); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 2259: + case 2221: ACCEPT_TOKEN(anon_sym_ends_DASHwith); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 2260: + case 2222: ACCEPT_TOKEN(anon_sym_ends_DASHwith); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 2261: + case 2223: ACCEPT_TOKEN(anon_sym_ends_DASHwith); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2262: + case 2224: ACCEPT_TOKEN(anon_sym_EQ_TILDE); END_STATE(); - case 2263: + case 2225: ACCEPT_TOKEN(anon_sym_EQ_TILDE); - if (lookahead == ',') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); - case 2264: + case 2226: ACCEPT_TOKEN(anon_sym_EQ_TILDE); - if (lookahead == ',') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); - case 2265: + case 2227: ACCEPT_TOKEN(anon_sym_EQ_TILDE); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4513); END_STATE(); - case 2266: + case 2228: ACCEPT_TOKEN(anon_sym_EQ_TILDE); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3121); END_STATE(); - case 2267: + case 2229: ACCEPT_TOKEN(anon_sym_EQ_TILDE); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 2268: + case 2230: ACCEPT_TOKEN(anon_sym_EQ_TILDE); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2269: + case 2231: ACCEPT_TOKEN(anon_sym_BANG_TILDE); END_STATE(); - case 2270: + case 2232: ACCEPT_TOKEN(anon_sym_BANG_TILDE); - if (lookahead == ',') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); - case 2271: + case 2233: ACCEPT_TOKEN(anon_sym_BANG_TILDE); - if (lookahead == ',') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); - case 2272: + case 2234: ACCEPT_TOKEN(anon_sym_BANG_TILDE); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4513); END_STATE(); - case 2273: + case 2235: ACCEPT_TOKEN(anon_sym_BANG_TILDE); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3121); END_STATE(); - case 2274: + case 2236: ACCEPT_TOKEN(anon_sym_BANG_TILDE); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 2275: + case 2237: ACCEPT_TOKEN(anon_sym_BANG_TILDE); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2276: + case 2238: ACCEPT_TOKEN(anon_sym_bit_DASHand); END_STATE(); - case 2277: + case 2239: ACCEPT_TOKEN(anon_sym_bit_DASHand); - if (lookahead == ',') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); - case 2278: + case 2240: ACCEPT_TOKEN(anon_sym_bit_DASHand); - if (lookahead == ',') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); - case 2279: + case 2241: ACCEPT_TOKEN(anon_sym_bit_DASHand); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); - case 2280: + case 2242: ACCEPT_TOKEN(anon_sym_bit_DASHand); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); - case 2281: + case 2243: ACCEPT_TOKEN(anon_sym_bit_DASHand); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 2282: + case 2244: ACCEPT_TOKEN(anon_sym_bit_DASHand); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 2283: + case 2245: ACCEPT_TOKEN(anon_sym_bit_DASHand); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 2284: + case 2246: ACCEPT_TOKEN(anon_sym_bit_DASHand); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 2285: + case 2247: ACCEPT_TOKEN(anon_sym_bit_DASHand); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2286: + case 2248: ACCEPT_TOKEN(anon_sym_bit_DASHxor); END_STATE(); - case 2287: + case 2249: ACCEPT_TOKEN(anon_sym_bit_DASHxor); - if (lookahead == ',') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); - case 2288: + case 2250: ACCEPT_TOKEN(anon_sym_bit_DASHxor); - if (lookahead == ',') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); - case 2289: + case 2251: ACCEPT_TOKEN(anon_sym_bit_DASHxor); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); - case 2290: + case 2252: ACCEPT_TOKEN(anon_sym_bit_DASHxor); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); - case 2291: + case 2253: ACCEPT_TOKEN(anon_sym_bit_DASHxor); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 2292: + case 2254: ACCEPT_TOKEN(anon_sym_bit_DASHxor); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 2293: + case 2255: ACCEPT_TOKEN(anon_sym_bit_DASHxor); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 2294: + case 2256: ACCEPT_TOKEN(anon_sym_bit_DASHxor); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 2295: + case 2257: ACCEPT_TOKEN(anon_sym_bit_DASHxor); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2296: + case 2258: ACCEPT_TOKEN(anon_sym_bit_DASHor); END_STATE(); - case 2297: + case 2259: ACCEPT_TOKEN(anon_sym_bit_DASHor); - if (lookahead == ',') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); - case 2298: + case 2260: ACCEPT_TOKEN(anon_sym_bit_DASHor); - if (lookahead == ',') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); - case 2299: + case 2261: ACCEPT_TOKEN(anon_sym_bit_DASHor); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); - case 2300: + case 2262: ACCEPT_TOKEN(anon_sym_bit_DASHor); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); - case 2301: + case 2263: ACCEPT_TOKEN(anon_sym_bit_DASHor); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 2302: + case 2264: ACCEPT_TOKEN(anon_sym_bit_DASHor); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 2303: + case 2265: ACCEPT_TOKEN(anon_sym_bit_DASHor); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 2304: + case 2266: ACCEPT_TOKEN(anon_sym_bit_DASHor); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 2305: + case 2267: ACCEPT_TOKEN(anon_sym_bit_DASHor); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2306: + case 2268: ACCEPT_TOKEN(anon_sym_and); END_STATE(); - case 2307: + case 2269: ACCEPT_TOKEN(anon_sym_and); - if (lookahead == ',') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); - case 2308: + case 2270: ACCEPT_TOKEN(anon_sym_and); - if (lookahead == ',') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); - case 2309: + case 2271: ACCEPT_TOKEN(anon_sym_and); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); - case 2310: + case 2272: ACCEPT_TOKEN(anon_sym_and); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); - case 2311: + case 2273: ACCEPT_TOKEN(anon_sym_and); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); - case 2312: + case 2274: ACCEPT_TOKEN(anon_sym_and); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4595); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4550); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 2313: + case 2275: ACCEPT_TOKEN(anon_sym_and); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3197); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3158); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2314: + case 2276: ACCEPT_TOKEN(anon_sym_and); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 2315: + case 2277: ACCEPT_TOKEN(anon_sym_and); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 2316: + case 2278: ACCEPT_TOKEN(anon_sym_and); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 2317: + case 2279: ACCEPT_TOKEN(anon_sym_and); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 2318: + case 2280: ACCEPT_TOKEN(anon_sym_and); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2319: + case 2281: ACCEPT_TOKEN(anon_sym_xor); END_STATE(); - case 2320: + case 2282: ACCEPT_TOKEN(anon_sym_xor); - if (lookahead == ',') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); - case 2321: + case 2283: ACCEPT_TOKEN(anon_sym_xor); - if (lookahead == ',') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); - case 2322: + case 2284: ACCEPT_TOKEN(anon_sym_xor); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); - case 2323: + case 2285: ACCEPT_TOKEN(anon_sym_xor); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); - case 2324: + case 2286: ACCEPT_TOKEN(anon_sym_xor); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); - case 2325: + case 2287: ACCEPT_TOKEN(anon_sym_xor); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4595); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4550); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 2326: + case 2288: ACCEPT_TOKEN(anon_sym_xor); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3197); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3158); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2327: + case 2289: ACCEPT_TOKEN(anon_sym_xor); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 2328: + case 2290: ACCEPT_TOKEN(anon_sym_xor); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 2329: + case 2291: ACCEPT_TOKEN(anon_sym_xor); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 2330: + case 2292: ACCEPT_TOKEN(anon_sym_xor); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 2331: + case 2293: ACCEPT_TOKEN(anon_sym_xor); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2332: + case 2294: ACCEPT_TOKEN(anon_sym_or); END_STATE(); - case 2333: + case 2295: ACCEPT_TOKEN(anon_sym_or); - if (lookahead == ',') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); - case 2334: + case 2296: ACCEPT_TOKEN(anon_sym_or); - if (lookahead == ',') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); - case 2335: + case 2297: ACCEPT_TOKEN(anon_sym_or); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); - case 2336: + case 2298: ACCEPT_TOKEN(anon_sym_or); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); - case 2337: + case 2299: ACCEPT_TOKEN(anon_sym_or); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); - case 2338: + case 2300: ACCEPT_TOKEN(anon_sym_or); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4595); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4550); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 2339: + case 2301: ACCEPT_TOKEN(anon_sym_or); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3197); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3158); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2340: + case 2302: ACCEPT_TOKEN(anon_sym_or); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 2341: + case 2303: ACCEPT_TOKEN(anon_sym_or); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 2342: + case 2304: ACCEPT_TOKEN(anon_sym_or); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 2343: + case 2305: ACCEPT_TOKEN(anon_sym_or); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 2344: + case 2306: ACCEPT_TOKEN(anon_sym_or); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2345: + case 2307: ACCEPT_TOKEN(anon_sym_not); END_STATE(); - case 2346: + case 2308: ACCEPT_TOKEN(anon_sym_not); if (lookahead == '-') ADVANCE(887); END_STATE(); - case 2347: + case 2309: ACCEPT_TOKEN(anon_sym_not); - if (lookahead == '-') ADVANCE(4295); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == '-') ADVANCE(4251); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 2348: + case 2310: ACCEPT_TOKEN(anon_sym_not); - if (lookahead == '-') ADVANCE(2896); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == '-') ADVANCE(2858); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2349: + case 2311: ACCEPT_TOKEN(anon_sym_not); - if (lookahead == '-') ADVANCE(1431); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == '-') ADVANCE(1400); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 2350: + case 2312: ACCEPT_TOKEN(anon_sym_not); - if (lookahead == '-') ADVANCE(2904); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == '-') ADVANCE(4259); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 2351: + case 2313: ACCEPT_TOKEN(anon_sym_not); - if (lookahead == '-') ADVANCE(4303); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == '-') ADVANCE(2866); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 2352: + case 2314: ACCEPT_TOKEN(anon_sym_not); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); - case 2353: + case 2315: ACCEPT_TOKEN(anon_sym_not); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); - case 2354: + case 2316: ACCEPT_TOKEN(anon_sym_not); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1794); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1761); END_STATE(); - case 2355: + case 2317: ACCEPT_TOKEN(anon_sym_not); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 2356: + case 2318: ACCEPT_TOKEN(anon_sym_not); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 2357: + case 2319: ACCEPT_TOKEN(anon_sym_not); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 2358: + case 2320: ACCEPT_TOKEN(anon_sym_not); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 2359: + case 2321: ACCEPT_TOKEN(anon_sym_not); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2360: + case 2322: ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); - case 2361: + case 2323: ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '.') ADVANCE(1880); - if (lookahead == '<') ADVANCE(2385); - if (lookahead == '=') ADVANCE(2384); + if (lookahead == '.') ADVANCE(1847); + if (lookahead == '<') ADVANCE(2347); + if (lookahead == '=') ADVANCE(2346); END_STATE(); - case 2362: + case 2324: ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '<') ADVANCE(2385); - if (lookahead == '=') ADVANCE(2384); + if (lookahead == '<') ADVANCE(2347); + if (lookahead == '=') ADVANCE(2346); END_STATE(); - case 2363: + case 2325: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 2364: + case 2326: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(2362); + if (lookahead == '.') ADVANCE(2324); END_STATE(); - case 2365: + case 2327: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(2012); + if (lookahead == '.') ADVANCE(1979); END_STATE(); - case 2366: + case 2328: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(2361); + if (lookahead == '.') ADVANCE(2323); END_STATE(); - case 2367: + case 2329: ACCEPT_TOKEN(anon_sym_DOT); if (lookahead == '.') ADVANCE(807); END_STATE(); - case 2368: + case 2330: ACCEPT_TOKEN(anon_sym_DOT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 2369: + case 2331: ACCEPT_TOKEN(anon_sym_DOT); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2370: + case 2332: ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); END_STATE(); - case 2371: + case 2333: ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); - if (lookahead == ',') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); - case 2372: + case 2334: ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); - if (lookahead == ',') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); - case 2373: + case 2335: ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 2374: + case 2336: ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 2375: + case 2337: ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 2376: + case 2338: ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2377: + case 2339: ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); END_STATE(); - case 2378: + case 2340: ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); - if (lookahead == ',') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); - case 2379: + case 2341: ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); - if (lookahead == ',') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); - case 2380: + case 2342: ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 2381: + case 2343: ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 2382: + case 2344: ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 2383: + case 2345: ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2384: + case 2346: ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ2); END_STATE(); - case 2385: + case 2347: ACCEPT_TOKEN(anon_sym_DOT_DOT_LT2); END_STATE(); - case 2386: + case 2348: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(4704); - if (lookahead == '_') ADVANCE(2406); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + if (lookahead == '-') ADVANCE(4659); + if (lookahead == '_') ADVANCE(2368); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); END_STATE(); - case 2387: + case 2349: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(3426); - if (lookahead == '_') ADVANCE(2406); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + if (lookahead == '-') ADVANCE(3386); + if (lookahead == '_') ADVANCE(2368); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); END_STATE(); - case 2388: + case 2350: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); if (lookahead == '-') ADVANCE(1011); - if (lookahead == '_') ADVANCE(2406); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + if (lookahead == '_') ADVANCE(2368); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); END_STATE(); - case 2389: + case 2351: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2389); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2389); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == '_') ADVANCE(2351); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2351); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 2390: + case 2352: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2390); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2390); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == '_') ADVANCE(2352); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2352); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); - case 2391: + case 2353: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2391); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2391); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == '_') ADVANCE(2353); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2353); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 2392: + case 2354: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2392); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2392); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (lookahead == '_') ADVANCE(2354); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2354); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2393: + case 2355: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2406); - if (lookahead == 'b') ADVANCE(2502); - if (lookahead == 'o') ADVANCE(2523); - if (lookahead == 'x') ADVANCE(2530); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2398); + if (lookahead == '_') ADVANCE(2368); + if (lookahead == 'b') ADVANCE(2464); + if (lookahead == 'o') ADVANCE(2485); + if (lookahead == 'x') ADVANCE(2492); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2360); END_STATE(); - case 2394: + case 2356: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2406); - if (lookahead == 'b') ADVANCE(2502); - if (lookahead == 'o') ADVANCE(2523); - if (lookahead == 'x') ADVANCE(2530); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2400); + if (lookahead == '_') ADVANCE(2368); + if (lookahead == 'b') ADVANCE(2464); + if (lookahead == 'o') ADVANCE(2485); + if (lookahead == 'x') ADVANCE(2492); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2362); END_STATE(); - case 2395: + case 2357: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2406); - if (lookahead == 'b') ADVANCE(2502); - if (lookahead == 'o') ADVANCE(2523); - if (lookahead == 'x') ADVANCE(2530); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2402); + if (lookahead == '_') ADVANCE(2368); + if (lookahead == 'b') ADVANCE(2464); + if (lookahead == 'o') ADVANCE(2485); + if (lookahead == 'x') ADVANCE(2492); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2364); END_STATE(); - case 2396: + case 2358: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2406); - if (lookahead == 'b') ADVANCE(3232); - if (lookahead == 'o') ADVANCE(3233); - if (lookahead == 'x') ADVANCE(3243); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + if (lookahead == '_') ADVANCE(2368); + if (lookahead == 'b') ADVANCE(3192); + if (lookahead == 'o') ADVANCE(3193); + if (lookahead == 'x') ADVANCE(3203); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); END_STATE(); - case 2397: + case 2359: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2406); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2388); + if (lookahead == '_') ADVANCE(2368); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2350); END_STATE(); - case 2398: + case 2360: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2406); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2397); + if (lookahead == '_') ADVANCE(2368); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2359); END_STATE(); - case 2399: + case 2361: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2406); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2386); + if (lookahead == '_') ADVANCE(2368); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2348); END_STATE(); - case 2400: + case 2362: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2406); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2399); + if (lookahead == '_') ADVANCE(2368); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2361); END_STATE(); - case 2401: + case 2363: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2406); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2387); + if (lookahead == '_') ADVANCE(2368); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2349); END_STATE(); - case 2402: + case 2364: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2406); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2401); + if (lookahead == '_') ADVANCE(2368); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2363); END_STATE(); - case 2403: + case 2365: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2406); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2398); + if (lookahead == '_') ADVANCE(2368); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2360); END_STATE(); - case 2404: + case 2366: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2406); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2400); + if (lookahead == '_') ADVANCE(2368); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2362); END_STATE(); - case 2405: + case 2367: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2406); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2402); + if (lookahead == '_') ADVANCE(2368); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2364); END_STATE(); - case 2406: + case 2368: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2406); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + if (lookahead == '_') ADVANCE(2368); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); END_STATE(); - case 2407: + case 2369: ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); - if (lookahead == '_') ADVANCE(2407); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2407); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == '_') ADVANCE(2369); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2369); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 2408: + case 2370: ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); - if (lookahead == '_') ADVANCE(2408); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2408); + if (lookahead == '_') ADVANCE(2370); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2370); END_STATE(); - case 2409: + case 2371: ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); - if (lookahead == '_') ADVANCE(2409); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2409); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == '_') ADVANCE(2371); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2371); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); - case 2410: + case 2372: ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); - if (lookahead == '_') ADVANCE(2410); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2410); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == '_') ADVANCE(2372); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2372); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2411: + case 2373: ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); - if (lookahead == '_') ADVANCE(2411); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2411); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (lookahead == '_') ADVANCE(2373); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2373); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 2412: + case 2374: ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); - if (lookahead == '_') ADVANCE(2412); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2412); + if (lookahead == '_') ADVANCE(2374); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2374); END_STATE(); - case 2413: + case 2375: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(2413); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2413); + if (lookahead == '_') ADVANCE(2375); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2375); END_STATE(); - case 2414: + case 2376: ACCEPT_TOKEN(anon_sym_null); END_STATE(); - case 2415: + case 2377: ACCEPT_TOKEN(anon_sym_null); - if (lookahead == ',') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); - case 2416: + case 2378: ACCEPT_TOKEN(anon_sym_null); - if (lookahead == ',') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); - case 2417: + case 2379: ACCEPT_TOKEN(anon_sym_null); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); - case 2418: + case 2380: ACCEPT_TOKEN(anon_sym_null); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); - case 2419: + case 2381: ACCEPT_TOKEN(anon_sym_null); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1794); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1761); END_STATE(); - case 2420: + case 2382: ACCEPT_TOKEN(anon_sym_null); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 2421: + case 2383: ACCEPT_TOKEN(anon_sym_null); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 2422: + case 2384: ACCEPT_TOKEN(anon_sym_null); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 2423: + case 2385: ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 2424: + case 2386: ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 2425: + case 2387: ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 2426: + case 2388: ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2427: + case 2389: ACCEPT_TOKEN(anon_sym_RPAREN2); END_STATE(); - case 2428: + case 2390: ACCEPT_TOKEN(anon_sym_true); END_STATE(); - case 2429: + case 2391: ACCEPT_TOKEN(anon_sym_true); - if (lookahead == ',') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); - case 2430: + case 2392: ACCEPT_TOKEN(anon_sym_true); - if (lookahead == ',') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); - case 2431: + case 2393: ACCEPT_TOKEN(anon_sym_true); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); - case 2432: + case 2394: ACCEPT_TOKEN(anon_sym_true); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); - case 2433: + case 2395: ACCEPT_TOKEN(anon_sym_true); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1794); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1761); END_STATE(); - case 2434: + case 2396: ACCEPT_TOKEN(anon_sym_true); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 2435: + case 2397: ACCEPT_TOKEN(anon_sym_true); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 2436: + case 2398: ACCEPT_TOKEN(anon_sym_true); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 2437: + case 2399: ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 2438: + case 2400: ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 2439: + case 2401: ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 2440: + case 2402: ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2441: + case 2403: ACCEPT_TOKEN(anon_sym_false); END_STATE(); - case 2442: + case 2404: ACCEPT_TOKEN(anon_sym_false); - if (lookahead == ',') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); - case 2443: + case 2405: ACCEPT_TOKEN(anon_sym_false); - if (lookahead == ',') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); - case 2444: + case 2406: ACCEPT_TOKEN(anon_sym_false); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1560); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1793); + lookahead == '?') ADVANCE(1527); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1760); END_STATE(); - case 2445: + case 2407: ACCEPT_TOKEN(anon_sym_false); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); - case 2446: + case 2408: ACCEPT_TOKEN(anon_sym_false); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1794); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1761); END_STATE(); - case 2447: + case 2409: ACCEPT_TOKEN(anon_sym_false); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 2448: + case 2410: ACCEPT_TOKEN(anon_sym_false); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 2449: + case 2411: ACCEPT_TOKEN(anon_sym_false); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 2450: + case 2412: ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 2451: + case 2413: ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 2452: + case 2414: ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 2453: + case 2415: ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2454: + case 2416: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(4704); - if (lookahead == '_') ADVANCE(2475); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2475); + if (lookahead == '-') ADVANCE(4659); + if (lookahead == '_') ADVANCE(2437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2437); END_STATE(); - case 2455: + case 2417: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(3426); - if (lookahead == '_') ADVANCE(2475); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2475); + if (lookahead == '-') ADVANCE(3386); + if (lookahead == '_') ADVANCE(2437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2437); END_STATE(); - case 2456: + case 2418: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); if (lookahead == '-') ADVANCE(1011); - if (lookahead == '_') ADVANCE(2475); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2475); + if (lookahead == '_') ADVANCE(2437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2437); END_STATE(); - case 2457: + case 2419: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(3242); - if (lookahead == '_') ADVANCE(2475); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2475); + if (lookahead == '-') ADVANCE(3202); + if (lookahead == '_') ADVANCE(2437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2437); END_STATE(); - case 2458: + case 2420: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2475); - if (lookahead == 'b') ADVANCE(2502); - if (lookahead == 'o') ADVANCE(2523); - if (lookahead == 'x') ADVANCE(2530); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); + if (lookahead == '_') ADVANCE(2437); + if (lookahead == 'b') ADVANCE(2464); + if (lookahead == 'o') ADVANCE(2485); + if (lookahead == 'x') ADVANCE(2492); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2426); END_STATE(); - case 2459: + case 2421: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2475); - if (lookahead == 'b') ADVANCE(2502); - if (lookahead == 'o') ADVANCE(2523); - if (lookahead == 'x') ADVANCE(2530); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2466); + if (lookahead == '_') ADVANCE(2437); + if (lookahead == 'b') ADVANCE(2464); + if (lookahead == 'o') ADVANCE(2485); + if (lookahead == 'x') ADVANCE(2492); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2428); END_STATE(); - case 2460: + case 2422: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2475); - if (lookahead == 'b') ADVANCE(2502); - if (lookahead == 'o') ADVANCE(2523); - if (lookahead == 'x') ADVANCE(2530); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2468); + if (lookahead == '_') ADVANCE(2437); + if (lookahead == 'b') ADVANCE(2464); + if (lookahead == 'o') ADVANCE(2485); + if (lookahead == 'x') ADVANCE(2492); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2430); END_STATE(); - case 2461: + case 2423: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2475); - if (lookahead == 'b') ADVANCE(2502); - if (lookahead == 'o') ADVANCE(2523); - if (lookahead == 'x') ADVANCE(2530); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2470); + if (lookahead == '_') ADVANCE(2437); + if (lookahead == 'b') ADVANCE(2464); + if (lookahead == 'o') ADVANCE(2485); + if (lookahead == 'x') ADVANCE(2492); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2432); END_STATE(); - case 2462: + case 2424: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2475); - if (lookahead == 'b') ADVANCE(3232); - if (lookahead == 'o') ADVANCE(3233); - if (lookahead == 'x') ADVANCE(3243); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2475); + if (lookahead == '_') ADVANCE(2437); + if (lookahead == 'b') ADVANCE(3192); + if (lookahead == 'o') ADVANCE(3193); + if (lookahead == 'x') ADVANCE(3203); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2437); END_STATE(); - case 2463: + case 2425: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2475); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2456); + if (lookahead == '_') ADVANCE(2437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2418); END_STATE(); - case 2464: + case 2426: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2475); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2463); + if (lookahead == '_') ADVANCE(2437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2425); END_STATE(); - case 2465: + case 2427: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2475); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2457); + if (lookahead == '_') ADVANCE(2437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2419); END_STATE(); - case 2466: + case 2428: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2475); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2465); + if (lookahead == '_') ADVANCE(2437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2427); END_STATE(); - case 2467: + case 2429: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2475); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2454); + if (lookahead == '_') ADVANCE(2437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2416); END_STATE(); - case 2468: + case 2430: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2475); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2467); + if (lookahead == '_') ADVANCE(2437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2429); END_STATE(); - case 2469: + case 2431: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2475); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2455); + if (lookahead == '_') ADVANCE(2437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2417); END_STATE(); - case 2470: + case 2432: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2475); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2469); + if (lookahead == '_') ADVANCE(2437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2431); END_STATE(); - case 2471: + case 2433: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2475); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); + if (lookahead == '_') ADVANCE(2437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2426); END_STATE(); - case 2472: + case 2434: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2475); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2466); + if (lookahead == '_') ADVANCE(2437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2428); END_STATE(); - case 2473: + case 2435: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2475); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2468); + if (lookahead == '_') ADVANCE(2437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2430); END_STATE(); - case 2474: + case 2436: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2475); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2470); + if (lookahead == '_') ADVANCE(2437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2432); END_STATE(); - case 2475: + case 2437: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2475); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2475); + if (lookahead == '_') ADVANCE(2437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2437); END_STATE(); - case 2476: + case 2438: ACCEPT_TOKEN(aux_sym__val_number_decimal_token2); - if (lookahead == '_') ADVANCE(2476); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2476); + if (lookahead == '_') ADVANCE(2438); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2438); END_STATE(); - case 2477: + case 2439: ACCEPT_TOKEN(anon_sym_DOT2); END_STATE(); - case 2478: + case 2440: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == '.') ADVANCE(2010); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == '.') ADVANCE(1977); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4085); END_STATE(); - case 2479: + case 2441: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == '.') ADVANCE(2011); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == '.') ADVANCE(1978); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2689); END_STATE(); - case 2480: + case 2442: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(2362); + if (lookahead == '.') ADVANCE(2324); END_STATE(); - case 2481: + case 2443: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(2012); + if (lookahead == '.') ADVANCE(1979); END_STATE(); - case 2482: + case 2444: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(2013); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == '.') ADVANCE(1980); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); - case 2483: + case 2445: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(2014); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4936); + if (lookahead == '.') ADVANCE(1981); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4891); END_STATE(); - case 2484: + case 2446: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(2015); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == '.') ADVANCE(1982); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 2485: + case 2447: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(2016); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4810); + if (lookahead == '.') ADVANCE(1983); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4765); END_STATE(); - case 2486: + case 2448: ACCEPT_TOKEN(anon_sym_DOT2); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4513); END_STATE(); - case 2487: + case 2449: ACCEPT_TOKEN(anon_sym_DOT2); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3121); END_STATE(); - case 2488: + case 2450: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(2488); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2488); + if (lookahead == '_') ADVANCE(2450); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2450); END_STATE(); - case 2489: + case 2451: ACCEPT_TOKEN(aux_sym__val_number_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2489); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2451); END_STATE(); - case 2490: + case 2452: ACCEPT_TOKEN(aux_sym__val_number_token2); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(2490); + lookahead == '_') ADVANCE(2452); END_STATE(); - case 2491: + case 2453: ACCEPT_TOKEN(aux_sym__val_number_token3); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(2491); + lookahead == '_') ADVANCE(2453); END_STATE(); - case 2492: + case 2454: ACCEPT_TOKEN(aux_sym__val_number_token4); END_STATE(); - case 2493: + case 2455: ACCEPT_TOKEN(aux_sym__val_number_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4694); + lookahead == 'i') ADVANCE(4649); END_STATE(); - case 2494: + case 2456: ACCEPT_TOKEN(aux_sym__val_number_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3419); + lookahead == 'i') ADVANCE(3379); END_STATE(); - case 2495: + case 2457: ACCEPT_TOKEN(aux_sym__val_number_token4); if (lookahead == 'I' || lookahead == 'i') ADVANCE(996); END_STATE(); - case 2496: + case 2458: ACCEPT_TOKEN(aux_sym__val_number_token5); END_STATE(); - case 2497: + case 2459: ACCEPT_TOKEN(aux_sym__val_number_token5); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3229); + lookahead == 'i') ADVANCE(3189); END_STATE(); - case 2498: + case 2460: ACCEPT_TOKEN(aux_sym__val_number_token5); if (lookahead == 'I' || lookahead == 'i') ADVANCE(993); END_STATE(); - case 2499: + case 2461: ACCEPT_TOKEN(aux_sym__val_number_token6); END_STATE(); - case 2500: + case 2462: ACCEPT_TOKEN(anon_sym_0b); - if (lookahead == ',') ADVANCE(3199); + if (lookahead == ',') ADVANCE(4552); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(2709); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + lookahead == '_') ADVANCE(4067); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); - case 2501: + case 2463: ACCEPT_TOKEN(anon_sym_0b); - if (lookahead == ',') ADVANCE(4597); + if (lookahead == ',') ADVANCE(3160); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(4111); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + lookahead == '_') ADVANCE(2671); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); - case 2502: + case 2464: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(2490); + lookahead == '_') ADVANCE(2452); END_STATE(); - case 2503: + case 2465: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(3179); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + lookahead == '_') ADVANCE(4532); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 2504: + case 2466: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(4577); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + lookahead == '_') ADVANCE(3140); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2505: + case 2467: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(4918); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + lookahead == '_') ADVANCE(4873); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 2506: + case 2468: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(4792); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + lookahead == '_') ADVANCE(4747); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 2507: + case 2469: ACCEPT_TOKEN(sym_filesize_unit); END_STATE(); - case 2508: + case 2470: ACCEPT_TOKEN(sym_filesize_unit); if (lookahead == 'i') ADVANCE(955); END_STATE(); - case 2509: + case 2471: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(1634); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'i') ADVANCE(1601); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); - case 2510: + case 2472: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(4676); + if (lookahead == 'i') ADVANCE(4631); END_STATE(); - case 2511: + case 2473: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(3401); + if (lookahead == 'i') ADVANCE(3361); END_STATE(); - case 2512: + case 2474: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(1522); - if (lookahead == 'r') ADVANCE(1398); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'i') ADVANCE(1489); + if (lookahead == 'r') ADVANCE(1368); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 2513: + case 2475: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(1522); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'i') ADVANCE(1489); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 2514: + case 2476: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'r') ADVANCE(1398); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(1368); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 2515: + case 2477: ACCEPT_TOKEN(sym_filesize_unit); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); - case 2516: + case 2478: ACCEPT_TOKEN(sym_filesize_unit); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 2517: + case 2479: ACCEPT_TOKEN(sym_duration_unit); END_STATE(); - case 2518: + case 2480: ACCEPT_TOKEN(sym_duration_unit); - if (lookahead == 'e') ADVANCE(1827); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'e') ADVANCE(1794); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 2519: + case 2481: ACCEPT_TOKEN(sym_duration_unit); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); - case 2520: + case 2482: ACCEPT_TOKEN(sym_duration_unit); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); - case 2521: + case 2483: ACCEPT_TOKEN(anon_sym_0o); - if (lookahead == ',') ADVANCE(3199); + if (lookahead == ',') ADVANCE(4552); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(2712); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + lookahead == '_') ADVANCE(4070); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); - case 2522: + case 2484: ACCEPT_TOKEN(anon_sym_0o); - if (lookahead == ',') ADVANCE(4597); + if (lookahead == ',') ADVANCE(3160); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4114); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + lookahead == '_') ADVANCE(2674); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); - case 2523: + case 2485: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(2491); + lookahead == '_') ADVANCE(2453); END_STATE(); - case 2524: + case 2486: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3182); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + lookahead == '_') ADVANCE(4535); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 2525: + case 2487: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4580); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + lookahead == '_') ADVANCE(3143); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2526: + case 2488: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4921); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + lookahead == '_') ADVANCE(4876); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 2527: + case 2489: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4795); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + lookahead == '_') ADVANCE(4750); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 2528: + case 2490: ACCEPT_TOKEN(anon_sym_0x); - if (lookahead == ',') ADVANCE(3199); + if (lookahead == ',') ADVANCE(4552); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2726); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4084); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); - case 2529: + case 2491: ACCEPT_TOKEN(anon_sym_0x); - if (lookahead == ',') ADVANCE(4597); + if (lookahead == ',') ADVANCE(3160); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4128); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2688); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); - case 2530: + case 2492: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2489); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2451); END_STATE(); - case 2531: + case 2493: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3196); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4549); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 2532: + case 2494: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4594); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3157); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2533: + case 2495: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4935); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4890); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 2534: + case 2496: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4809); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4764); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 2535: + case 2497: ACCEPT_TOKEN(anon_sym_LBRACK2); END_STATE(); - case 2536: + case 2498: ACCEPT_TOKEN(sym_hex_digit); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2536); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2498); END_STATE(); - case 2537: + case 2499: ACCEPT_TOKEN(sym_val_date); END_STATE(); - case 2538: + case 2500: ACCEPT_TOKEN(sym_val_date); if (lookahead == '.') ADVANCE(1005); if (lookahead == '+' || lookahead == '-') ADVANCE(810); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(2537); + lookahead == 'z') ADVANCE(2499); END_STATE(); - case 2539: + case 2501: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(4702); + if (lookahead == '.') ADVANCE(4657); if (lookahead == '+' || - lookahead == '-') ADVANCE(4612); + lookahead == '-') ADVANCE(4567); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(2537); + lookahead == 'z') ADVANCE(2499); END_STATE(); - case 2540: + case 2502: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(3428); + if (lookahead == '.') ADVANCE(3388); if (lookahead == '+' || - lookahead == '-') ADVANCE(3324); + lookahead == '-') ADVANCE(3284); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(2537); + lookahead == 'z') ADVANCE(2499); END_STATE(); - case 2541: + case 2503: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(2551); + if (lookahead == ':') ADVANCE(2513); if (('0' <= lookahead && lookahead <= '5')) ADVANCE(1004); END_STATE(); - case 2542: + case 2504: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(2552); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4698); + if (lookahead == ':') ADVANCE(2514); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4653); END_STATE(); - case 2543: + case 2505: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(2553); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3423); + if (lookahead == ':') ADVANCE(2515); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3383); END_STATE(); - case 2544: + case 2506: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(4707); + if (lookahead == 'T') ADVANCE(4662); END_STATE(); - case 2545: + case 2507: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(3432); + if (lookahead == 'T') ADVANCE(3392); END_STATE(); - case 2546: + case 2508: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(3239); + if (lookahead == 'T') ADVANCE(3199); END_STATE(); - case 2547: + case 2509: ACCEPT_TOKEN(sym_val_date); if (lookahead == 'T') ADVANCE(1014); END_STATE(); - case 2548: + case 2510: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || lookahead == '-') ADVANCE(810); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(2537); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2548); + lookahead == 'z') ADVANCE(2499); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2510); END_STATE(); - case 2549: + case 2511: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(4612); + lookahead == '-') ADVANCE(4567); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(2537); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2549); + lookahead == 'z') ADVANCE(2499); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2511); END_STATE(); - case 2550: + case 2512: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(3324); + lookahead == '-') ADVANCE(3284); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(2537); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2550); + lookahead == 'z') ADVANCE(2499); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2512); END_STATE(); - case 2551: + case 2513: ACCEPT_TOKEN(sym_val_date); if (('0' <= lookahead && lookahead <= '5')) ADVANCE(1004); END_STATE(); - case 2552: + case 2514: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4698); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4653); END_STATE(); - case 2553: + case 2515: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3423); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3383); END_STATE(); - case 2554: + case 2516: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 2555: + case 2517: ACCEPT_TOKEN(sym__escaped_str_content); - if (lookahead == '#') ADVANCE(2556); + if (lookahead == '#') ADVANCE(2518); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2555); + lookahead == ' ') ADVANCE(2517); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && - lookahead != '\\') ADVANCE(2556); + lookahead != '\\') ADVANCE(2518); END_STATE(); - case 2556: + case 2518: ACCEPT_TOKEN(sym__escaped_str_content); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(2556); + lookahead != '\\') ADVANCE(2518); END_STATE(); - case 2557: + case 2519: ACCEPT_TOKEN(sym__str_single_quotes); END_STATE(); - case 2558: + case 2520: ACCEPT_TOKEN(sym__str_back_ticks); END_STATE(); - case 2559: + case 2521: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 2560: + case 2522: ACCEPT_TOKEN(sym_escaped_interpolated_content); - if (lookahead == '#') ADVANCE(2561); + if (lookahead == '#') ADVANCE(2523); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2560); + lookahead == ' ') ADVANCE(2522); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && lookahead != '(' && - lookahead != '\\') ADVANCE(2561); + lookahead != '\\') ADVANCE(2523); END_STATE(); - case 2561: + case 2523: ACCEPT_TOKEN(sym_escaped_interpolated_content); if (lookahead != 0 && lookahead != '"' && lookahead != '(' && - lookahead != '\\') ADVANCE(2561); + lookahead != '\\') ADVANCE(2523); END_STATE(); - case 2562: + case 2524: ACCEPT_TOKEN(sym_unescaped_interpolated_content); - if (lookahead == '#') ADVANCE(2563); + if (lookahead == '#') ADVANCE(2525); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2562); + lookahead == ' ') ADVANCE(2524); if (lookahead != 0 && lookahead != '\'' && - lookahead != '(') ADVANCE(2563); + lookahead != '(') ADVANCE(2525); END_STATE(); - case 2563: + case 2525: ACCEPT_TOKEN(sym_unescaped_interpolated_content); if (lookahead != 0 && lookahead != '\'' && - lookahead != '(') ADVANCE(2563); + lookahead != '(') ADVANCE(2525); END_STATE(); - case 2564: + case 2526: ACCEPT_TOKEN(anon_sym_DOLLAR_SQUOTE); END_STATE(); - case 2565: + case 2527: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 2566: + case 2528: ACCEPT_TOKEN(anon_sym_SQUOTE); - if (lookahead == '\'') ADVANCE(2557); + if (lookahead == '\'') ADVANCE(2519); if (lookahead != 0) ADVANCE(791); END_STATE(); - case 2567: + case 2529: ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE); END_STATE(); - case 2568: + case 2530: ACCEPT_TOKEN(anon_sym_DQUOTE2); END_STATE(); - case 2569: + case 2531: ACCEPT_TOKEN(sym_inter_escape_sequence); END_STATE(); - case 2570: + case 2532: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); ADVANCE_MAP( - '!', 2756, - '#', 4951, - '$', 1846, - '*', 2086, - '+', 2161, - '-', 1909, - '.', 2482, - '/', 2122, - '0', 2777, - '<', 2214, - '=', 2758, - '>', 1875, - 'I', 3172, - 'N', 3162, - '_', 2781, - 'a', 2945, - 'b', 2897, - 'e', 2957, - 'f', 2787, - 'i', 2767, - 'm', 2982, - 'n', 2992, - 'o', 3028, - 's', 3090, - 't', 3014, - 'x', 2981, + '!', 2718, + '#', 4907, + '$', 1814, + '*', 2056, + '+', 2127, + '-', 1877, + '.', 2446, + '/', 2086, + '0', 2739, + '<', 2178, + '=', 2720, + '>', 1844, + 'I', 3133, + 'N', 3123, + '_', 2743, + 'a', 2903, + 'b', 2859, + 'e', 2918, + 'f', 2749, + 'i', 2729, + 'm', 2943, + 'n', 2953, + 'o', 2989, + 's', 3051, + 't', 2967, + 'x', 2942, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2780); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3199); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2742); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 2571: + case 2533: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); ADVANCE_MAP( - '!', 2756, - '#', 4951, - '$', 1850, - '*', 2086, - '+', 2161, - ',', 1836, - '-', 1909, - '.', 2482, - '/', 2122, - '0', 2777, - '<', 2214, - '=', 2758, - '>', 1875, - 'I', 3172, - 'N', 3162, - '_', 2007, - 'a', 2945, - 'b', 2897, - 'e', 2614, - 'f', 2787, - 'i', 2767, - 'm', 2982, - 'n', 2979, - 'o', 2611, - 's', 3090, - 't', 3014, - 'x', 2981, + '!', 2718, + '#', 4907, + '$', 1818, + '*', 2056, + '+', 2127, + ',', 1804, + '-', 1877, + '.', 2446, + '/', 2086, + '0', 2739, + '<', 2178, + '=', 2720, + '>', 1844, + 'I', 3133, + 'N', 3123, + '_', 1975, + 'a', 2903, + 'b', 2859, + 'e', 2576, + 'f', 2749, + 'i', 2729, + 'm', 2943, + 'n', 2940, + 'o', 2573, + 's', 3051, + 't', 2967, + 'x', 2942, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2780); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token5_character_set_1, 13, lookahead))) ADVANCE(3199); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2742); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token5_character_set_1, 13, lookahead))) ADVANCE(3160); END_STATE(); - case 2572: + case 2534: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); ADVANCE_MAP( - '!', 2756, - '#', 4951, - '$', 1850, - '*', 2086, - '+', 2162, - ',', 1836, - '-', 1896, - '.', 2749, - '/', 2122, - ':', 1831, - '<', 2214, - '=', 2758, - '>', 1875, - 'a', 2946, - 'b', 2898, - 'e', 2959, - 'i', 2958, - 'm', 2984, - 'n', 2983, - 'o', 3032, - 's', 3080, - 'x', 2977, - '|', 1842, + '!', 2718, + '#', 4907, + '$', 1818, + '*', 2056, + '+', 2128, + ',', 1804, + '-', 1866, + '.', 2711, + '/', 2086, + ':', 1799, + '<', 2178, + '=', 2720, + '>', 1844, + 'a', 2904, + 'b', 2860, + 'e', 2920, + 'i', 2919, + 'm', 2945, + 'n', 2944, + 'o', 2993, + 's', 3036, + 'x', 2938, + '|', 1810, ); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3197); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token5_character_set_1, 13, lookahead))) ADVANCE(3199); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3158); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token5_character_set_1, 13, lookahead))) ADVANCE(3160); END_STATE(); - case 2573: + case 2535: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); ADVANCE_MAP( - '!', 2756, - '#', 4951, - '$', 1850, - '*', 2086, - '+', 2162, - ',', 1836, - '-', 1896, - '.', 2749, - '/', 2122, - ':', 1831, - '<', 2214, - '=', 2758, - '>', 1875, - 'a', 2946, - 'b', 2898, - 'e', 2959, - 'i', 2958, - 'm', 2984, - 'n', 2983, - 'o', 3032, - 's', 3080, - 'x', 2977, + '!', 2718, + '#', 4907, + '$', 1818, + '*', 2056, + '+', 2128, + ',', 1804, + '-', 1866, + '.', 2711, + '/', 2086, + ':', 1799, + '<', 2178, + '=', 2720, + '>', 1844, + 'a', 2904, + 'b', 2860, + 'e', 2920, + 'i', 2919, + 'm', 2945, + 'n', 2944, + 'o', 2993, + 's', 3036, + 'x', 2938, ); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3197); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token5_character_set_1, 13, lookahead))) ADVANCE(3199); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3158); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token5_character_set_1, 13, lookahead))) ADVANCE(3160); END_STATE(); - case 2574: + case 2536: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); ADVANCE_MAP( - '!', 2756, - '#', 4951, - '$', 1850, - '*', 2086, - '+', 2162, - ',', 1836, - '-', 1896, - '.', 2749, - '/', 2122, - '<', 2214, - '=', 2758, - '>', 1875, - 'a', 2946, - 'b', 2898, - 'e', 2959, - 'i', 2958, - 'm', 2984, - 'n', 2983, - 'o', 3032, - 's', 3080, - 'x', 2977, - '|', 1842, + '!', 2718, + '#', 4907, + '$', 1818, + '*', 2056, + '+', 2128, + ',', 1804, + '-', 1866, + '.', 2711, + '/', 2086, + '<', 2178, + '=', 2720, + '>', 1844, + 'a', 2904, + 'b', 2860, + 'e', 2920, + 'i', 2919, + 'm', 2945, + 'n', 2944, + 'o', 2993, + 's', 3036, + 'x', 2938, + '|', 1810, ); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3197); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token5_character_set_1, 13, lookahead))) ADVANCE(3199); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3158); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token5_character_set_1, 13, lookahead))) ADVANCE(3160); END_STATE(); - case 2575: + case 2537: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); ADVANCE_MAP( - '!', 2756, - '#', 4951, - '$', 1850, - '*', 2086, - '+', 2162, - ',', 1836, - '-', 1896, - '.', 2749, - '/', 2122, - '<', 2214, - '=', 2758, - '>', 1875, - 'a', 2946, - 'b', 2898, - 'e', 2959, - 'i', 2958, - 'm', 2984, - 'n', 2983, - 'o', 3032, - 's', 3080, - 'x', 2977, + '!', 2718, + '#', 4907, + '$', 1818, + '*', 2056, + '+', 2128, + ',', 1804, + '-', 1866, + '.', 2711, + '/', 2086, + '<', 2178, + '=', 2720, + '>', 1844, + 'a', 2904, + 'b', 2860, + 'e', 2920, + 'i', 2919, + 'm', 2945, + 'n', 2944, + 'o', 2993, + 's', 3036, + 'x', 2938, ); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3197); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token5_character_set_1, 13, lookahead))) ADVANCE(3199); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3158); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token5_character_set_1, 13, lookahead))) ADVANCE(3160); END_STATE(); - case 2576: + case 2538: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); ADVANCE_MAP( - '!', 2756, - '#', 4951, - '$', 1850, - '*', 2086, - '+', 2162, - '-', 1896, - '/', 2122, - '<', 2214, - '=', 2758, - '>', 1875, - 'a', 2945, - 'b', 2897, - 'e', 2957, - 'i', 2960, - 'm', 2982, - 'n', 2980, - 'o', 3028, - 's', 3090, - 'x', 2981, + '!', 2718, + '#', 4907, + '$', 1818, + '*', 2056, + '+', 2128, + '-', 1866, + '/', 2086, + '<', 2178, + '=', 2720, + '>', 1844, + 'a', 2903, + 'b', 2859, + 'e', 2918, + 'i', 2921, + 'm', 2943, + 'n', 2941, + 'o', 2989, + 's', 3051, + 'x', 2942, ); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3199); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 2577: + case 2539: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); ADVANCE_MAP( - '!', 2756, - '#', 4951, - '$', 1850, - '*', 2086, - '+', 2162, - '-', 1912, - '/', 2122, - '<', 2214, - '=', 2758, - '>', 1875, - 'a', 2945, - 'b', 2897, - 'e', 2957, - 'i', 2960, - 'm', 2982, - 'n', 2980, - 'o', 3028, - 's', 3090, - 'x', 2981, + '!', 2718, + '#', 4907, + '$', 1818, + '*', 2056, + '+', 2128, + '-', 1880, + '/', 2086, + '<', 2178, + '=', 2720, + '>', 1844, + 'a', 2903, + 'b', 2859, + 'e', 2918, + 'i', 2921, + 'm', 2943, + 'n', 2941, + 'o', 2989, + 's', 3051, + 'x', 2942, ); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3199); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 2578: + case 2540: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); ADVANCE_MAP( - '!', 2756, - '#', 4951, - '$', 1850, - '*', 2086, - '+', 2162, - '-', 1912, - '/', 2122, - '<', 2214, - '=', 2758, - '>', 1875, - 'a', 2946, - 'b', 2898, - 'e', 2959, - 'i', 2958, - 'm', 2984, - 'n', 2983, - 'o', 3032, - 's', 3080, - 'x', 2977, + '!', 2718, + '#', 4907, + '$', 1818, + '*', 2056, + '+', 2128, + '-', 1880, + '/', 2086, + '<', 2178, + '=', 2720, + '>', 1844, + 'a', 2904, + 'b', 2860, + 'e', 2920, + 'i', 2919, + 'm', 2945, + 'n', 2944, + 'o', 2993, + 's', 3036, + 'x', 2938, ); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3197); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3199); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3158); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 2579: + case 2541: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); ADVANCE_MAP( - '!', 2756, - '#', 4951, - '*', 2086, - '+', 2162, - ',', 3211, - '-', 1912, - '/', 2122, - '<', 2214, - '=', 2758, - '>', 1875, - 'a', 2945, - 'b', 2897, - 'e', 2957, - 'i', 2960, - 'm', 2982, - 'n', 2980, - 'o', 3028, - 's', 3090, - 'x', 2981, + '!', 2718, + '#', 4907, + '*', 2056, + '+', 2128, + ',', 3171, + '-', 1880, + '/', 2086, + '<', 2178, + '=', 2720, + '>', 1844, + 'a', 2903, + 'b', 2859, + 'e', 2918, + 'i', 2921, + 'm', 2943, + 'n', 2941, + 'o', 2989, + 's', 3051, + 'x', 2942, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token4_character_set_1, 12, lookahead))) ADVANCE(3199); + lookahead == ' ') ADVANCE(3173); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token4_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 2580: + case 2542: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); ADVANCE_MAP( - '!', 2756, - '#', 4951, - '*', 2086, - '+', 2162, - ',', 1836, - '-', 1912, - '/', 2122, - '<', 2214, - '=', 2758, - '>', 1875, - 'a', 2945, - 'b', 2897, - 'e', 2957, - 'i', 2960, - 'm', 2982, - 'n', 2980, - 'o', 3028, - 's', 3090, - 'x', 2981, + '!', 2718, + '#', 4907, + '*', 2056, + '+', 2128, + ',', 1804, + '-', 1880, + '/', 2086, + '<', 2178, + '=', 2720, + '>', 1844, + 'a', 2903, + 'b', 2859, + 'e', 2918, + 'i', 2921, + 'm', 2943, + 'n', 2941, + 'o', 2989, + 's', 3051, + 'x', 2942, ); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token4_character_set_1, 12, lookahead))) ADVANCE(3199); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token4_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); - case 2581: + case 2543: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); ADVANCE_MAP( - '!', 2756, - '#', 4951, - '*', 2086, - '+', 2162, - '-', 1896, - '/', 2122, - '<', 2214, - '=', 2758, - '>', 1875, - 'a', 2945, - 'b', 2897, - 'e', 2957, - 'i', 2960, - 'm', 2982, - 'n', 2980, - 'o', 3028, - 's', 3090, - 'x', 2981, + '!', 2718, + '#', 4907, + '*', 2056, + '+', 2128, + '-', 1866, + '/', 2086, + '<', 2178, + '=', 2720, + '>', 1844, + 'a', 2903, + 'b', 2859, + 'e', 2918, + 'i', 2921, + 'm', 2943, + 'n', 2941, + 'o', 2989, + 's', 3051, + 'x', 2942, ); - if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3199); + if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2582: + case 2544: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); ADVANCE_MAP( - '!', 2756, - '#', 4951, - '*', 2086, - '+', 2162, - '-', 1896, - '/', 2122, - '<', 2214, - '=', 2758, - '>', 1875, - 'a', 2946, - 'b', 2898, - 'e', 2959, - 'i', 2958, - 'm', 2984, - 'n', 2983, - 'o', 3032, - 's', 3080, - 'x', 2977, + '!', 2718, + '#', 4907, + '*', 2056, + '+', 2128, + '-', 1866, + '/', 2086, + '<', 2178, + '=', 2720, + '>', 1844, + 'a', 2904, + 'b', 2860, + 'e', 2920, + 'i', 2919, + 'm', 2945, + 'n', 2944, + 'o', 2993, + 's', 3036, + 'x', 2938, ); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3197); - if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3199); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3158); + if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2583: + case 2545: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); ADVANCE_MAP( - '!', 2756, - '#', 4951, - '*', 2086, - '+', 2162, - '-', 1896, - '/', 2122, - '<', 2214, - '=', 2758, - '>', 1875, - 'a', 2937, - 'b', 2891, - 'e', 2948, - 'i', 2961, - 'm', 2988, - 'n', 2997, - 'o', 3005, - 's', 3070, - 'x', 2985, + '!', 2718, + '#', 4907, + '*', 2056, + '+', 2128, + '-', 1866, + '/', 2086, + '<', 2178, + '=', 2720, + '>', 1844, + 'a', 2898, + 'b', 2853, + 'e', 2909, + 'i', 2922, + 'm', 2949, + 'n', 2958, + 'o', 2970, + 's', 3031, + 'x', 2946, ); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3199); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2584: + case 2546: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); ADVANCE_MAP( - '!', 2756, - '#', 4951, - '*', 2086, - '+', 2162, - '-', 1912, - '/', 2122, - '<', 2214, - '=', 2757, - '>', 1875, - 'a', 2945, - 'b', 2897, - 'e', 2957, - 'i', 2960, - 'm', 2982, - 'n', 2980, - 'o', 3028, - 's', 3090, - 'x', 2981, + '!', 2718, + '#', 4907, + '*', 2056, + '+', 2128, + '-', 1880, + '/', 2086, + '<', 2178, + '=', 2719, + '>', 1844, + 'a', 2903, + 'b', 2859, + 'e', 2918, + 'i', 2921, + 'm', 2943, + 'n', 2941, + 'o', 2989, + 's', 3051, + 'x', 2942, ); - if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3199); + if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2585: + case 2547: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); ADVANCE_MAP( - '!', 2756, - '#', 4951, - '*', 2086, - '+', 2162, - '-', 1912, - '/', 2122, - '<', 2214, - '=', 2758, - '>', 1875, - 'a', 2945, - 'b', 2897, - 'e', 2957, - 'i', 2960, - 'm', 2982, - 'n', 2980, - 'o', 3028, - 's', 3090, - 'x', 2981, - '|', 1842, + '!', 2718, + '#', 4907, + '*', 2056, + '+', 2128, + '-', 1880, + '/', 2086, + '<', 2178, + '=', 2720, + '>', 1844, + 'a', 2903, + 'b', 2859, + 'e', 2918, + 'i', 2921, + 'm', 2943, + 'n', 2941, + 'o', 2989, + 's', 3051, + 'x', 2942, + '|', 1810, ); - if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3199); + if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2586: + case 2548: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); ADVANCE_MAP( - '!', 2756, - '#', 4951, - '*', 2086, - '+', 2162, - '-', 1912, - '/', 2122, - '<', 2214, - '=', 2758, - '>', 1875, - 'a', 2945, - 'b', 2897, - 'e', 2957, - 'i', 2960, - 'm', 2982, - 'n', 2980, - 'o', 3028, - 's', 3090, - 'x', 2981, + '!', 2718, + '#', 4907, + '*', 2056, + '+', 2128, + '-', 1880, + '/', 2086, + '<', 2178, + '=', 2720, + '>', 1844, + 'a', 2903, + 'b', 2859, + 'e', 2918, + 'i', 2921, + 'm', 2943, + 'n', 2941, + 'o', 2989, + 's', 3051, + 'x', 2942, ); - if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3199); + if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 2587: + case 2549: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); ADVANCE_MAP( - '!', 2759, - '#', 4946, - '$', 1850, - '*', 2090, - '+', 2167, - ',', 3211, - '-', 1904, - '.', 2486, - '/', 2125, - '0', 2772, - ':', 3199, - '<', 2217, - '=', 2760, - '>', 1878, - 'I', 3148, - 'N', 3140, - '_', 2771, - 'a', 2923, - 'b', 2892, - 'c', 2789, - 'd', 2836, - 'e', 2936, - 'f', 2978, - 'h', 2901, - 'i', 2768, - 'l', 2852, - 'm', 2785, - 'n', 2837, - 'o', 3019, - 'r', 2838, - 's', 2973, - 't', 3013, - 'u', 3058, - 'w', 2889, - 'x', 2986, + '!', 2721, + '#', 4902, + '$', 1818, + '*', 2057, + '+', 2129, + ',', 3171, + '-', 1871, + '.', 2449, + '/', 2087, + '0', 2734, + ':', 3160, + '<', 2179, + '=', 2722, + '>', 1845, + 'I', 3109, + 'N', 3101, + '_', 2733, + 'a', 2884, + 'b', 2854, + 'c', 2751, + 'd', 2789, + 'e', 2897, + 'f', 2939, + 'h', 2863, + 'i', 2730, + 'l', 2814, + 'm', 2747, + 'n', 2790, + 'o', 2980, + 'r', 2791, + 's', 2934, + 't', 2966, + 'u', 3019, + 'w', 2851, + 'x', 2947, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2773); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3159); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2735); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3120); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3160); + lookahead != '}') ADVANCE(3121); END_STATE(); - case 2588: + case 2550: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); ADVANCE_MAP( - '!', 2759, - '#', 4946, - '$', 1850, - '*', 2090, - '+', 2167, - '-', 1904, - '.', 2486, - '/', 2125, - '0', 2772, - '<', 2217, - '=', 2760, - '>', 1878, - 'I', 3148, - 'N', 3140, - '_', 2771, - 'a', 2923, - 'b', 2892, - 'c', 2789, - 'd', 2836, - 'e', 2936, - 'f', 2978, - 'h', 2901, - 'i', 2768, - 'l', 2852, - 'm', 2785, - 'n', 2837, - 'o', 3019, - 'r', 2838, - 's', 2973, - 't', 3013, - 'u', 3058, - 'w', 2889, - 'x', 2986, - ',', 3199, - ':', 3199, + '!', 2721, + '#', 4902, + '$', 1818, + '*', 2057, + '+', 2129, + '-', 1871, + '.', 2449, + '/', 2087, + '0', 2734, + '<', 2179, + '=', 2722, + '>', 1845, + 'I', 3109, + 'N', 3101, + '_', 2733, + 'a', 2884, + 'b', 2854, + 'c', 2751, + 'd', 2789, + 'e', 2897, + 'f', 2939, + 'h', 2863, + 'i', 2730, + 'l', 2814, + 'm', 2747, + 'n', 2790, + 'o', 2980, + 'r', 2791, + 's', 2934, + 't', 2966, + 'u', 3019, + 'w', 2851, + 'x', 2947, + ',', 3160, + ':', 3160, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2773); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token5_character_set_1, 13, lookahead))) ADVANCE(3160); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2735); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token5_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); - case 2589: + case 2551: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); ADVANCE_MAP( - '!', 2631, - '#', 4944, - '$', 1850, - '*', 2091, - '+', 2168, - ',', 3211, - '-', 1895, - '.', 2478, - '/', 2118, - '0', 2639, - '<', 2211, - '=', 2632, - '>', 1872, - 'I', 2705, - 'N', 2700, - '_', 2640, - 'a', 2666, - 'b', 2659, - 'e', 2612, - 'f', 2644, - 'i', 2637, - 'm', 2673, - 'n', 2671, - 'o', 2609, - 's', 2687, - 't', 2675, - 'x', 2672, + '!', 2593, + '#', 4900, + '$', 1818, + '*', 2058, + '+', 2130, + ',', 3171, + '-', 1865, + '.', 2441, + '/', 2081, + '0', 2601, + '<', 2174, + '=', 2594, + '>', 1840, + 'I', 2667, + 'N', 2662, + '_', 2602, + 'a', 2628, + 'b', 2621, + 'e', 2574, + 'f', 2606, + 'i', 2599, + 'm', 2635, + 'n', 2633, + 'o', 2571, + 's', 2649, + 't', 2637, + 'x', 2634, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2643); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token5_character_set_1, 13, lookahead))) ADVANCE(2727); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2605); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token5_character_set_1, 13, lookahead))) ADVANCE(2689); END_STATE(); - case 2590: + case 2552: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); ADVANCE_MAP( - '!', 2631, - '#', 4944, - '$', 1850, - '*', 2091, - '+', 2168, - ',', 1836, - '-', 1895, - '.', 2478, - '/', 2118, - '0', 2639, - '<', 2211, - '=', 2632, - '>', 1872, - 'I', 2705, - 'N', 2700, - '_', 2640, - 'a', 2666, - 'b', 2659, - 'e', 2612, - 'f', 2644, - 'i', 2637, - 'm', 2673, - 'n', 2671, - 'o', 2609, - 's', 2687, - 't', 2675, - 'x', 2672, + '!', 2593, + '#', 4900, + '$', 1818, + '*', 2058, + '+', 2130, + ',', 1804, + '-', 1865, + '.', 2441, + '/', 2081, + '0', 2601, + '<', 2174, + '=', 2594, + '>', 1840, + 'I', 2667, + 'N', 2662, + '_', 2602, + 'a', 2628, + 'b', 2621, + 'e', 2574, + 'f', 2606, + 'i', 2599, + 'm', 2635, + 'n', 2633, + 'o', 2571, + 's', 2649, + 't', 2637, + 'x', 2634, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2643); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token5_character_set_1, 13, lookahead))) ADVANCE(2727); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2605); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token5_character_set_1, 13, lookahead))) ADVANCE(2689); END_STATE(); - case 2591: + case 2553: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); ADVANCE_MAP( - '#', 4951, - '$', 1846, - '+', 2751, - '-', 1909, - '.', 2482, - '0', 2777, - 'N', 3162, - '_', 2781, - 'f', 2787, - 'n', 2993, - 't', 3014, - 'I', 3172, - 'i', 3172, + '#', 4907, + '$', 1814, + '+', 2713, + '-', 1877, + '.', 2446, + '0', 2739, + 'N', 3123, + '_', 2743, + 'f', 2749, + 'n', 2954, + 't', 2967, + 'I', 3133, + 'i', 3133, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2780); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3199); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2742); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3160); + END_STATE(); + case 2554: + ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); + if (lookahead == '#') ADVANCE(4907); + if (lookahead == '$') ADVANCE(1818); + if (lookahead == '-') ADVANCE(1866); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3160); + END_STATE(); + case 2555: + ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); + if (lookahead == '#') ADVANCE(4907); + if (lookahead == '$') ADVANCE(1818); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3158); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3160); + END_STATE(); + case 2556: + ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); + if (lookahead == '#') ADVANCE(4907); + if (lookahead == ',') ADVANCE(3171); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3173); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3160); + END_STATE(); + case 2557: + ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); + if (lookahead == '#') ADVANCE(4907); + if (lookahead == '-') ADVANCE(1866); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3158); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); + END_STATE(); + case 2558: + ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); + if (lookahead == '#') ADVANCE(4907); + if (lookahead == '-') ADVANCE(2698); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); + END_STATE(); + case 2559: + ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); + if (lookahead == '#') ADVANCE(4907); + if (lookahead == '.') ADVANCE(2331); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2736); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); + END_STATE(); + case 2560: + ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); + if (lookahead == '#') ADVANCE(4907); + if (lookahead == '=') ADVANCE(2727); + if (lookahead == 'i') ADVANCE(2835); + if (lookahead == '|') ADVANCE(1810); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); + END_STATE(); + case 2561: + ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); + if (lookahead == '#') ADVANCE(4907); + if (lookahead == '=') ADVANCE(2727); + if (lookahead == '|') ADVANCE(1810); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); + END_STATE(); + case 2562: + ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); + if (lookahead == '#') ADVANCE(4907); + if (lookahead == '_') ADVANCE(2738); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2736); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2354); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); + END_STATE(); + case 2563: + ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); + if (lookahead == '#') ADVANCE(4907); + if (lookahead == '_') ADVANCE(2738); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2354); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); + END_STATE(); + case 2564: + ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); + if (lookahead == '#') ADVANCE(4907); + if (lookahead == 'i') ADVANCE(2921); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); + END_STATE(); + case 2565: + ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); + if (lookahead == '#') ADVANCE(4907); + if (lookahead == '|') ADVANCE(1810); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); + END_STATE(); + case 2566: + ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); + if (lookahead == '#') ADVANCE(4907); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2736); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); + END_STATE(); + case 2567: + ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); + if (lookahead == '#') ADVANCE(4907); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3158); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); + END_STATE(); + case 2568: + ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); + if (lookahead == '#') ADVANCE(4907); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); + END_STATE(); + case 2569: + ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); + ADVANCE_MAP( + '#', 4900, + '$', 1818, + '+', 2132, + ',', 3171, + '-', 1865, + '.', 2441, + '0', 2601, + 'N', 2662, + '_', 2602, + 'e', 2575, + 'f', 2606, + 'n', 2656, + 'o', 2572, + 't', 2637, + 'I', 2667, + 'i', 2667, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2605); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token5_character_set_1, 13, lookahead))) ADVANCE(2689); + END_STATE(); + case 2570: + ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); + ADVANCE_MAP( + '#', 4900, + '$', 1818, + '+', 2132, + ',', 1804, + '-', 1865, + '.', 2441, + '0', 2601, + 'N', 2662, + '_', 2602, + 'e', 2575, + 'f', 2606, + 'n', 2656, + 'o', 2572, + 't', 2637, + 'I', 2667, + 'i', 2667, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2605); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token5_character_set_1, 13, lookahead))) ADVANCE(2689); + END_STATE(); + case 2571: + ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); + if (lookahead == '+') ADVANCE(2615); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == '>') ADVANCE(3234); + if (lookahead == 'r') ADVANCE(2296); + if (lookahead == 'u') ADVANCE(2651); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); + END_STATE(); + case 2572: + ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); + if (lookahead == '+') ADVANCE(2615); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == '>') ADVANCE(3234); + if (lookahead == 'u') ADVANCE(2651); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); + END_STATE(); + case 2573: + ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); + if (lookahead == '+') ADVANCE(2812); + if (lookahead == '>') ADVANCE(3238); + if (lookahead == 'r') ADVANCE(2306); + if (lookahead == 'u') ADVANCE(3052); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); + END_STATE(); + case 2574: + ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); + if (lookahead == '+') ADVANCE(2631); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == '>') ADVANCE(3227); + if (lookahead == 'n') ADVANCE(2609); + if (lookahead == 'r') ADVANCE(2638); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); + END_STATE(); + case 2575: + ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); + if (lookahead == '+') ADVANCE(2631); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == '>') ADVANCE(3227); + if (lookahead == 'r') ADVANCE(2638); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); + END_STATE(); + case 2576: + ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); + if (lookahead == '+') ADVANCE(2936); + if (lookahead == '>') ADVANCE(3231); + if (lookahead == 'n') ADVANCE(2768); + if (lookahead == 'r') ADVANCE(2968); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); + END_STATE(); + case 2577: + ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); + if (lookahead == '+') ADVANCE(2632); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == '>') ADVANCE(3213); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); + END_STATE(); + case 2578: + ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); + if (lookahead == '+') ADVANCE(2616); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == '>') ADVANCE(3220); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); + END_STATE(); + case 2579: + ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); + if (lookahead == '+') ADVANCE(2937); + if (lookahead == '>') ADVANCE(3217); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); + END_STATE(); + case 2580: + ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); + if (lookahead == '+') ADVANCE(2820); + if (lookahead == '>') ADVANCE(3224); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); + END_STATE(); + case 2581: + ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == '-') ADVANCE(2608); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); + END_STATE(); + case 2582: + ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == '-') ADVANCE(2681); + if (lookahead == '_') ADVANCE(2602); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2602); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); + END_STATE(); + case 2583: + ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == '-') ADVANCE(2659); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); + END_STATE(); + case 2584: + ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == '-') ADVANCE(2620); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); + END_STATE(); + case 2585: + ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == '-') ADVANCE(2682); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); + END_STATE(); + case 2586: + ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == '-') ADVANCE(2660); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); + END_STATE(); + case 2587: + ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == '.') ADVANCE(2602); + if (lookahead == '_') ADVANCE(2587); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2602); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2689); + END_STATE(); + case 2588: + ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == '.') ADVANCE(2679); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(2589); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(2689); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2689); + END_STATE(); + case 2589: + ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == '2') ADVANCE(2672); + if (lookahead == '0' || + lookahead == '1') ADVANCE(2680); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); + END_STATE(); + case 2590: + ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == ':') ADVANCE(2673); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2675); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); + END_STATE(); + case 2591: + ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == ':') ADVANCE(2685); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2592: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '#') ADVANCE(4951); - if (lookahead == '$') ADVANCE(1850); - if (lookahead == '-') ADVANCE(1896); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == ':') ADVANCE(2687); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2593: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '#') ADVANCE(4951); - if (lookahead == '$') ADVANCE(1850); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3197); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == '=') ADVANCE(2168); + if (lookahead == '~') ADVANCE(2233); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2594: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '#') ADVANCE(4951); - if (lookahead == ',') ADVANCE(3211); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3199); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == '=') ADVANCE(2161); + if (lookahead == '~') ADVANCE(2226); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2595: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '#') ADVANCE(4951); - if (lookahead == '-') ADVANCE(1896); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3197); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == '>') ADVANCE(3262); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2596: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '#') ADVANCE(4951); - if (lookahead == '-') ADVANCE(2728); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == '>') ADVANCE(3255); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2597: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '#') ADVANCE(4951); - if (lookahead == '.') ADVANCE(2369); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2775); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == '>') ADVANCE(3241); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2598: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '#') ADVANCE(4951); - if (lookahead == '=') ADVANCE(2765); - if (lookahead == 'i') ADVANCE(2873); - if (lookahead == '|') ADVANCE(1842); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == '>') ADVANCE(3248); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2599: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '#') ADVANCE(4951); - if (lookahead == '=') ADVANCE(2765); - if (lookahead == '|') ADVANCE(1842); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'N') ADVANCE(2663); + if (lookahead == 'n') ADVANCE(1904); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2600: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '#') ADVANCE(4951); - if (lookahead == '_') ADVANCE(2774); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2775); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2391); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'T') ADVANCE(2684); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2601: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '#') ADVANCE(4951); - if (lookahead == '_') ADVANCE(2774); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2391); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == '_') ADVANCE(2602); + if (lookahead == 'b') ADVANCE(2463); + if (lookahead == 'o') ADVANCE(2484); + if (lookahead == 'x') ADVANCE(2491); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2604); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2602: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '#') ADVANCE(4951); - if (lookahead == 'i') ADVANCE(2960); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == '_') ADVANCE(2602); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2602); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2603: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '#') ADVANCE(4951); - if (lookahead == '|') ADVANCE(1842); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == '_') ADVANCE(2602); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2582); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2604: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '#') ADVANCE(4951); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2775); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == '_') ADVANCE(2602); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2603); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2605: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '#') ADVANCE(4951); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3197); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == '_') ADVANCE(2602); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2604); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2606: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '#') ADVANCE(4951); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'a') ADVANCE(2626); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2607: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - ADVANCE_MAP( - '#', 4944, - '$', 1850, - '+', 2169, - ',', 3211, - '-', 1895, - '.', 2478, - '0', 2639, - 'N', 2700, - '_', 2640, - 'e', 2613, - 'f', 2644, - 'n', 2694, - 'o', 2610, - 't', 2675, - 'I', 2705, - 'i', 2705, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2643); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token5_character_set_1, 13, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'a') ADVANCE(2643); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2608: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - ADVANCE_MAP( - '#', 4944, - '$', 1850, - '+', 2169, - ',', 1836, - '-', 1895, - '.', 2478, - '0', 2639, - 'N', 2700, - '_', 2640, - 'e', 2613, - 'f', 2644, - 'n', 2694, - 'o', 2610, - 't', 2675, - 'I', 2705, - 'i', 2705, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2643); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token5_character_set_1, 13, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'a') ADVANCE(2630); + if (lookahead == 'o') ADVANCE(2640); + if (lookahead == 's') ADVANCE(2617); + if (lookahead == 'x') ADVANCE(2636); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2609: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '+') ADVANCE(2653); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == '>') ADVANCE(3273); - if (lookahead == 'r') ADVANCE(2333); - if (lookahead == 'u') ADVANCE(2689); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'd') ADVANCE(2646); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2610: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '+') ADVANCE(2653); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == '>') ADVANCE(3273); - if (lookahead == 'u') ADVANCE(2689); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'd') ADVANCE(2270); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2611: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '+') ADVANCE(2850); - if (lookahead == '>') ADVANCE(3277); - if (lookahead == 'r') ADVANCE(2343); - if (lookahead == 'u') ADVANCE(3091); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'd') ADVANCE(2090); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2612: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '+') ADVANCE(2669); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == '>') ADVANCE(3266); - if (lookahead == 'n') ADVANCE(2647); - if (lookahead == 'r') ADVANCE(2676); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'd') ADVANCE(2240); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2613: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '+') ADVANCE(2669); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == '>') ADVANCE(3266); - if (lookahead == 'r') ADVANCE(2676); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'e') ADVANCE(2392); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2614: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '+') ADVANCE(2975); - if (lookahead == '>') ADVANCE(3270); - if (lookahead == 'n') ADVANCE(2809); - if (lookahead == 'r') ADVANCE(3015); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'e') ADVANCE(2405); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2615: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '+') ADVANCE(2670); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == '>') ADVANCE(3252); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'e') ADVANCE(2596); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2616: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '+') ADVANCE(2654); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == '>') ADVANCE(3259); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'e') ADVANCE(2644); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2617: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '+') ADVANCE(2976); - if (lookahead == '>') ADVANCE(3256); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'h') ADVANCE(2625); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2618: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '+') ADVANCE(2858); - if (lookahead == '>') ADVANCE(3263); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'h') ADVANCE(2216); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2619: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == '-') ADVANCE(2646); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'h') ADVANCE(2206); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2620: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == '-') ADVANCE(2719); - if (lookahead == '_') ADVANCE(2640); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2640); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'i') ADVANCE(2629); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2621: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == '-') ADVANCE(2697); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'i') ADVANCE(2648); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2622: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == '-') ADVANCE(2658); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'i') ADVANCE(2652); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2623: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == '-') ADVANCE(2720); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'i') ADVANCE(2654); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2624: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == '-') ADVANCE(2698); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'l') ADVANCE(2378); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2625: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == '.') ADVANCE(2640); - if (lookahead == '_') ADVANCE(2625); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2640); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'l') ADVANCE(2141); + if (lookahead == 'r') ADVANCE(2151); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2626: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == '.') ADVANCE(2717); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(2627); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(2727); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'l') ADVANCE(2645); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2627: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == '2') ADVANCE(2710); - if (lookahead == '0' || - lookahead == '1') ADVANCE(2718); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'l') ADVANCE(2624); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2628: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == ':') ADVANCE(2711); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2713); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'n') ADVANCE(2610); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2629: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == ':') ADVANCE(2723); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'n') ADVANCE(2196); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2630: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == ':') ADVANCE(2725); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'n') ADVANCE(2612); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2631: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == '=') ADVANCE(2205); - if (lookahead == '~') ADVANCE(2270); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'o') ADVANCE(2595); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2632: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == '=') ADVANCE(2198); - if (lookahead == '~') ADVANCE(2263); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'o') ADVANCE(2658); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2633: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == '>') ADVANCE(3301); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'o') ADVANCE(2650); + if (lookahead == 'u') ADVANCE(2627); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2666); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2634: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == '>') ADVANCE(3294); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'o') ADVANCE(2639); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2635: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == '>') ADVANCE(3280); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'o') ADVANCE(2611); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2636: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == '>') ADVANCE(3287); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'o') ADVANCE(2641); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2637: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'N') ADVANCE(2701); - if (lookahead == 'n') ADVANCE(1936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'r') ADVANCE(2657); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2638: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'T') ADVANCE(2722); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'r') ADVANCE(2577); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2639: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == '_') ADVANCE(2640); - if (lookahead == 'b') ADVANCE(2500); - if (lookahead == 'o') ADVANCE(2521); - if (lookahead == 'x') ADVANCE(2528); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2642); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'r') ADVANCE(2283); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2640: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == '_') ADVANCE(2640); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2640); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'r') ADVANCE(2260); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2641: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == '_') ADVANCE(2640); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2620); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'r') ADVANCE(2250); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2642: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == '_') ADVANCE(2640); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2641); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'r') ADVANCE(2598); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2643: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == '_') ADVANCE(2640); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2642); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'r') ADVANCE(2655); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2644: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'a') ADVANCE(2664); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'r') ADVANCE(2642); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2645: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'a') ADVANCE(2681); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 's') ADVANCE(2614); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2646: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'a') ADVANCE(2668); - if (lookahead == 'o') ADVANCE(2678); - if (lookahead == 's') ADVANCE(2655); - if (lookahead == 'x') ADVANCE(2674); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 's') ADVANCE(2583); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2647: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'd') ADVANCE(2684); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 's') ADVANCE(2586); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2648: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'd') ADVANCE(2307); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 't') ADVANCE(2581); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2649: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'd') ADVANCE(2127); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 't') ADVANCE(2607); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2650: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'd') ADVANCE(2277); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 't') ADVANCE(2584); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2651: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'e') ADVANCE(2429); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 't') ADVANCE(2578); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2652: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'e') ADVANCE(2442); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 't') ADVANCE(2618); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2653: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'e') ADVANCE(2634); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 't') ADVANCE(2597); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2654: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'e') ADVANCE(2682); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 't') ADVANCE(2619); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2655: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'h') ADVANCE(2663); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 't') ADVANCE(2647); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2656: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'h') ADVANCE(2253); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'u') ADVANCE(2627); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2666); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2657: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'h') ADVANCE(2243); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'u') ADVANCE(2613); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2658: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'i') ADVANCE(2667); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'u') ADVANCE(2653); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2659: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'i') ADVANCE(2686); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'w') ADVANCE(2622); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2660: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'i') ADVANCE(2690); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'w') ADVANCE(2623); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2661: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'i') ADVANCE(2692); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(2589); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(2689); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2661); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2662: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'l') ADVANCE(2415); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2666); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2663: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'l') ADVANCE(2178); - if (lookahead == 'r') ADVANCE(2188); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2665); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2664: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'l') ADVANCE(2683); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2669); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2665: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'l') ADVANCE(2662); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2668); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2666: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'n') ADVANCE(2648); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2689); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2667: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'n') ADVANCE(2233); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2663); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2668: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'n') ADVANCE(2650); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2664); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2669: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'o') ADVANCE(2633); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2670); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2670: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'o') ADVANCE(2696); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2689); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2671: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'o') ADVANCE(2688); - if (lookahead == 'u') ADVANCE(2665); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2704); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(2671); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2672: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'o') ADVANCE(2677); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(2590); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2673: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'o') ADVANCE(2649); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2675); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2674: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'o') ADVANCE(2679); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(2674); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2675: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'r') ADVANCE(2695); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2689); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2676: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'r') ADVANCE(2615); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2600); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2677: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'r') ADVANCE(2320); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2678: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'r') ADVANCE(2297); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2588); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2679: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'r') ADVANCE(2287); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2661); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2680: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'r') ADVANCE(2636); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2590); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2681: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'r') ADVANCE(2693); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2683); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2682: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'r') ADVANCE(2680); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2676); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2683: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 's') ADVANCE(2652); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2585); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2684: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 's') ADVANCE(2621); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2677); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2685: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 's') ADVANCE(2624); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2678); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2686: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 't') ADVANCE(2619); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2591); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2687: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 't') ADVANCE(2645); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2686); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2688: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 't') ADVANCE(2622); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2688); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2689: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 't') ADVANCE(2616); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 2690: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 't') ADVANCE(2656); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == '-') ADVANCE(2750); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2691: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 't') ADVANCE(2635); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == '-') ADVANCE(3151); + if (lookahead == '_') ADVANCE(2743); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2743); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2692: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 't') ADVANCE(2657); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == '-') ADVANCE(3091); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2693: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 't') ADVANCE(2685); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == '-') ADVANCE(2752); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2694: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'u') ADVANCE(2665); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2704); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == '-') ADVANCE(2762); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(3158); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2695: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'u') ADVANCE(2651); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == '-') ADVANCE(2762); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2696: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'u') ADVANCE(2691); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == '-') ADVANCE(3093); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(3158); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2697: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'w') ADVANCE(2660); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == '-') ADVANCE(3093); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2698: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'w') ADVANCE(2661); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == '-') ADVANCE(1855); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2699: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(2627); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(2727); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2699); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == '-') ADVANCE(3092); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2700: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2704); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == '-') ADVANCE(2858); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(3158); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2701: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2703); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == '-') ADVANCE(2858); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2702: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2707); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == '-') ADVANCE(2866); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2703: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2706); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == '-') ADVANCE(2867); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2704: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2727); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == '-') ADVANCE(3152); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2705: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2701); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == '-') ADVANCE(3094); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2706: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2702); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == '-') ADVANCE(3096); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(3158); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2707: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2708); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == '-') ADVANCE(3096); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2708: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2727); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == '-') ADVANCE(3095); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2709: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(2709); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == '.') ADVANCE(2735); + if (lookahead == '_') ADVANCE(2709); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2735); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2710: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(2628); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == '.') ADVANCE(1849); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2711: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2713); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == '.') ADVANCE(2710); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2712: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(2712); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == '.') ADVANCE(3149); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2714); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2713: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2727); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == '.') ADVANCE(2743); + if (lookahead == '_') ADVANCE(2713); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2743); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2714: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2638); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == '2') ADVANCE(3141); + if (lookahead == '0' || + lookahead == '1') ADVANCE(3150); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2715: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2630); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ':') ADVANCE(3142); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3144); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2716: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2626); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ':') ADVANCE(3154); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2717: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2699); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ':') ADVANCE(3156); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2718: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2628); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == '=') ADVANCE(2172); + if (lookahead == '~') ADVANCE(2237); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2719: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2721); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == '=') ADVANCE(2165); + if (lookahead == '>') ADVANCE(1971); + if (lookahead == '~') ADVANCE(2230); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2720: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2714); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == '=') ADVANCE(2165); + if (lookahead == '~') ADVANCE(2230); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2721: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2623); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == '=') ADVANCE(2170); + if (lookahead == '~') ADVANCE(2235); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3121); END_STATE(); case 2722: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2715); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == '=') ADVANCE(2163); + if (lookahead == '~') ADVANCE(2228); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3121); END_STATE(); case 2723: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2716); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == '>') ADVANCE(3266); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2724: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2629); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == '>') ADVANCE(3259); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2725: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2724); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == '>') ADVANCE(3245); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2726: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2726); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == '>') ADVANCE(3252); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2727: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == '>') ADVANCE(1971); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2728: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '-') ADVANCE(1887); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'N') ADVANCE(3124); + if (lookahead == 'f') ADVANCE(1953); + if (lookahead == 'n') ADVANCE(1910); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2729: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '-') ADVANCE(2788); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'N') ADVANCE(3125); + if (lookahead == 'n') ADVANCE(1911); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2730: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '-') ADVANCE(3190); - if (lookahead == '_') ADVANCE(2781); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2781); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'N') ADVANCE(3102); + if (lookahead == 'f') ADVANCE(1949); + if (lookahead == 'n') ADVANCE(1906); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2731: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '-') ADVANCE(3130); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'T') ADVANCE(3153); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2732: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '-') ADVANCE(2790); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == '_') ADVANCE(2732); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2732); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2733: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '-') ADVANCE(2800); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(3197); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == '_') ADVANCE(2733); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2733); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2734: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '-') ADVANCE(2800); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == '_') ADVANCE(2735); + if (lookahead == 'b') ADVANCE(3117); + if (lookahead == 'o') ADVANCE(3118); + if (lookahead == 'x') ADVANCE(3119); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2735); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3121); END_STATE(); case 2735: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '-') ADVANCE(3132); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(3197); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == '_') ADVANCE(2735); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2735); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3121); END_STATE(); case 2736: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '-') ADVANCE(3132); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == '_') ADVANCE(2737); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2737); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2372); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2737: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '-') ADVANCE(3131); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if (lookahead == '_') ADVANCE(2737); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2372); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2738: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '-') ADVANCE(2896); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(3197); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == '_') ADVANCE(2738); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2354); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2739: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '-') ADVANCE(2896); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == '_') ADVANCE(2743); + if (lookahead == 'b') ADVANCE(2466); + if (lookahead == 'o') ADVANCE(2487); + if (lookahead == 'x') ADVANCE(2494); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2741); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2740: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '-') ADVANCE(2904); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == '_') ADVANCE(2743); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2691); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2741: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '-') ADVANCE(2905); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if (lookahead == '_') ADVANCE(2743); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2740); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2742: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '-') ADVANCE(3191); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == '_') ADVANCE(2743); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2741); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2743: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '-') ADVANCE(3133); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == '_') ADVANCE(2743); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2743); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2744: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '-') ADVANCE(3135); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(3197); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'a') ADVANCE(2896); + if (lookahead == 'o') ADVANCE(2971); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2745: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '-') ADVANCE(3135); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'a') ADVANCE(2875); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2746: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '-') ADVANCE(3134); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 'a') ADVANCE(3097); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2747: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '.') ADVANCE(2773); - if (lookahead == '_') ADVANCE(2747); + if (lookahead == 'a') ADVANCE(2877); + if (lookahead == 'o') ADVANCE(2775); + if (lookahead == 'u') ADVANCE(3045); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2773); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2748: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '.') ADVANCE(1881); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'a') ADVANCE(2876); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2749: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '.') ADVANCE(2748); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'a') ADVANCE(2887); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2750: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '.') ADVANCE(3188); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2752); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3199); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'a') ADVANCE(2928); + if (lookahead == 'o') ADVANCE(2974); + if (lookahead == 's') ADVANCE(2839); + if (lookahead == 'x') ADVANCE(2957); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2751: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '.') ADVANCE(2781); - if (lookahead == '_') ADVANCE(2751); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2781); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'a') ADVANCE(3035); + if (lookahead == 'o') ADVANCE(2901); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2752: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '2') ADVANCE(3180); - if (lookahead == '0' || - lookahead == '1') ADVANCE(3189); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'a') ADVANCE(2929); + if (lookahead == 'o') ADVANCE(2984); + if (lookahead == 's') ADVANCE(2840); + if (lookahead == 'x') ADVANCE(2956); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2753: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ':') ADVANCE(3181); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3183); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'a') ADVANCE(3099); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2754: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ':') ADVANCE(3193); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'a') ADVANCE(3011); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2755: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ':') ADVANCE(3195); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'a') ADVANCE(3033); + if (lookahead == 'o') ADVANCE(2771); + if (lookahead == 'u') ADVANCE(3039); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2756: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '=') ADVANCE(2209); - if (lookahead == '~') ADVANCE(2274); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'a') ADVANCE(3033); + if (lookahead == 'o') ADVANCE(2783); + if (lookahead == 'u') ADVANCE(3039); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2757: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '=') ADVANCE(2202); - if (lookahead == '>') ADVANCE(2003); - if (lookahead == '~') ADVANCE(2267); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'a') ADVANCE(2998); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3158); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2758: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '=') ADVANCE(2202); - if (lookahead == '~') ADVANCE(2267); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'a') ADVANCE(3013); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2759: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '=') ADVANCE(2207); - if (lookahead == '~') ADVANCE(2272); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3160); + if (lookahead == 'a') ADVANCE(3000); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2760: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '=') ADVANCE(2200); - if (lookahead == '~') ADVANCE(2265); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3160); + if (lookahead == 'a') ADVANCE(3001); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2761: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '>') ADVANCE(3305); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'a') ADVANCE(3003); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2762: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '>') ADVANCE(3298); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'a') ADVANCE(2927); + if (lookahead == 'o') ADVANCE(2991); + if (lookahead == 's') ADVANCE(2841); + if (lookahead == 'x') ADVANCE(2950); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2763: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '>') ADVANCE(3284); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'c') ADVANCE(2842); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2764: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '>') ADVANCE(3291); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'c') ADVANCE(2845); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2765: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '>') ADVANCE(2003); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'c') ADVANCE(2846); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2766: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'N') ADVANCE(3163); - if (lookahead == 'f') ADVANCE(1985); - if (lookahead == 'n') ADVANCE(1941); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'c') ADVANCE(2808); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2767: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'N') ADVANCE(3164); - if (lookahead == 'n') ADVANCE(1942); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'c') ADVANCE(2799); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2768: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'N') ADVANCE(3141); - if (lookahead == 'f') ADVANCE(1981); - if (lookahead == 'n') ADVANCE(1938); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if (lookahead == 'd') ADVANCE(3018); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2769: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'T') ADVANCE(3192); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'd') ADVANCE(3016); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3158); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2770: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '_') ADVANCE(2770); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2770); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'd') ADVANCE(2278); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2771: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '_') ADVANCE(2771); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2771); + if (lookahead == 'd') ADVANCE(2094); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2772: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '_') ADVANCE(2773); - if (lookahead == 'b') ADVANCE(3156); - if (lookahead == 'o') ADVANCE(3157); - if (lookahead == 'x') ADVANCE(3158); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2773); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3160); + if (lookahead == 'd') ADVANCE(2245); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2773: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '_') ADVANCE(2773); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2773); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3160); + if (lookahead == 'd') ADVANCE(3012); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2774: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '_') ADVANCE(2774); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2391); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'd') ADVANCE(2272); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2775: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '_') ADVANCE(2776); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2776); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2410); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'd') ADVANCE(2092); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2776: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '_') ADVANCE(2776); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2410); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'd') ADVANCE(2242); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2777: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '_') ADVANCE(2781); - if (lookahead == 'b') ADVANCE(2503); - if (lookahead == 'o') ADVANCE(2524); - if (lookahead == 'x') ADVANCE(2531); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2779); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'd') ADVANCE(2280); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2778: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '_') ADVANCE(2781); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2730); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'd') ADVANCE(2103); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2779: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '_') ADVANCE(2781); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2778); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'd') ADVANCE(2247); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2780: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '_') ADVANCE(2781); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2779); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'd') ADVANCE(2275); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3158); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2781: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '_') ADVANCE(2781); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2781); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'd') ADVANCE(2098); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3158); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2782: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'a') ADVANCE(2935); - if (lookahead == 'o') ADVANCE(3007); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'd') ADVANCE(2101); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2783: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'a') ADVANCE(2913); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'd') ADVANCE(3080); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2784: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'a') ADVANCE(3136); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'd') ADVANCE(3014); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2785: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'a') ADVANCE(2915); - if (lookahead == 'o') ADVANCE(2813); - if (lookahead == 'u') ADVANCE(3084); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 'd') ADVANCE(2793); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2786: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'a') ADVANCE(2914); + if (lookahead == 'd') ADVANCE(2804); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2787: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'a') ADVANCE(2926); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'e') ADVANCE(2833); + if (lookahead == 'o') ADVANCE(1946); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2788: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'a') ADVANCE(2967); - if (lookahead == 'o') ADVANCE(3010); - if (lookahead == 's') ADVANCE(2878); - if (lookahead == 'x') ADVANCE(2996); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'e') ADVANCE(2836); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2789: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'a') ADVANCE(3079); - if (lookahead == 'o') ADVANCE(2943); + if (lookahead == 'e') ADVANCE(2834); + if (lookahead == 'o') ADVANCE(1942); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2790: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'a') ADVANCE(2968); - if (lookahead == 'o') ADVANCE(3023); - if (lookahead == 's') ADVANCE(2881); - if (lookahead == 'x') ADVANCE(2995); + if (lookahead == 'e') ADVANCE(3090); + if (lookahead == 'o') ADVANCE(3049); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3108); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2791: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'a') ADVANCE(3138); + if (lookahead == 'e') ADVANCE(2837); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2792: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'a') ADVANCE(3050); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'e') ADVANCE(1796); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2793: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'a') ADVANCE(3073); - if (lookahead == 'o') ADVANCE(2807); - if (lookahead == 'u') ADVANCE(3074); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'e') ADVANCE(2026); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2794: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'a') ADVANCE(3073); - if (lookahead == 'o') ADVANCE(2821); - if (lookahead == 'u') ADVANCE(3074); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'e') ADVANCE(2398); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2795: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'a') ADVANCE(3037); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3197); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'e') ADVANCE(2411); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2796: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'a') ADVANCE(3052); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 'e') ADVANCE(2063); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2797: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'a') ADVANCE(3039); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'e') ADVANCE(1939); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2798: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'a') ADVANCE(3040); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'e') ADVANCE(1789); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2799: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'a') ADVANCE(3042); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 'e') ADVANCE(2007); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2800: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'a') ADVANCE(2966); - if (lookahead == 'o') ADVANCE(3030); - if (lookahead == 's') ADVANCE(2882); - if (lookahead == 'x') ADVANCE(2989); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'e') ADVANCE(1895); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2801: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'c') ADVANCE(2877); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'e') ADVANCE(3038); + if (lookahead == 'o') ADVANCE(2933); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2802: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'c') ADVANCE(2883); + if (lookahead == 'e') ADVANCE(1792); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2803: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'c') ADVANCE(2884); + if (lookahead == 'e') ADVANCE(1958); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2804: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'c') ADVANCE(2846); + if (lookahead == 'e') ADVANCE(2023); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2805: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'c') ADVANCE(2834); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'e') ADVANCE(1932); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2806: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'd') ADVANCE(2315); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'e') ADVANCE(1935); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2807: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'd') ADVANCE(2131); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'e') ADVANCE(1785); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2808: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'd') ADVANCE(2282); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'e') ADVANCE(2004); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2809: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'd') ADVANCE(3057); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'e') ADVANCE(1891); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2810: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'd') ADVANCE(3055); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3197); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'e') ADVANCE(2402); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2811: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'd') ADVANCE(3051); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'e') ADVANCE(2415); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2812: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'd') ADVANCE(2309); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if (lookahead == 'e') ADVANCE(2724); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2813: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'd') ADVANCE(2130); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 'e') ADVANCE(2745); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2814: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'd') ADVANCE(2279); + if (lookahead == 'e') ADVANCE(3044); + if (lookahead == 'i') ADVANCE(3021); + if (lookahead == 'o') ADVANCE(2935); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2815: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'd') ADVANCE(2317); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'e') ADVANCE(2748); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2816: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'd') ADVANCE(2140); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'e') ADVANCE(2999); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2817: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'd') ADVANCE(2284); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'e') ADVANCE(2900); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2818: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'd') ADVANCE(2313); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3197); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'e') ADVANCE(2988); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2819: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'd') ADVANCE(2136); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3197); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'e') ADVANCE(2902); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2820: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'd') ADVANCE(2138); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'e') ADVANCE(3007); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2821: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'd') ADVANCE(3119); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'e') ADVANCE(3008); + if (lookahead == 'i') ADVANCE(2893); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2822: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'd') ADVANCE(3053); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 'e') ADVANCE(2911); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2823: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'd') ADVANCE(2828); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'e') ADVANCE(2916); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2824: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'd') ADVANCE(2842); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 'e') ADVANCE(2923); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2825: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'e') ADVANCE(2871); - if (lookahead == 'o') ADVANCE(1978); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'e') ADVANCE(2996); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2826: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'e') ADVANCE(2874); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'e') ADVANCE(2924); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2827: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'e') ADVANCE(1828); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'e') ADVANCE(2995); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2828: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'e') ADVANCE(2058); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'e') ADVANCE(2925); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2829: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'e') ADVANCE(2435); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'e') ADVANCE(2926); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2830: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'e') ADVANCE(2448); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'e') ADVANCE(2986); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2831: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'e') ADVANCE(2100); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'e') ADVANCE(2976); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2832: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'e') ADVANCE(1971); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'f') ADVANCE(1953); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3124); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2833: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'e') ADVANCE(1821); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'f') ADVANCE(1769); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2834: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'e') ADVANCE(2039); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'f') ADVANCE(1765); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2835: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'e') ADVANCE(1927); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'f') ADVANCE(1955); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2836: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'e') ADVANCE(2872); - if (lookahead == 'o') ADVANCE(1974); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 'g') ADVANCE(2865); + if (lookahead == 't') ADVANCE(3077); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2837: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'e') ADVANCE(3129); - if (lookahead == 'o') ADVANCE(3088); + if (lookahead == 'g') ADVANCE(2874); + if (lookahead == 't') ADVANCE(3076); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3147); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2838: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'e') ADVANCE(2875); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 'h') ADVANCE(2821); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2839: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'e') ADVANCE(3072); - if (lookahead == 'o') ADVANCE(2972); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'h') ADVANCE(2879); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2840: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'e') ADVANCE(1824); + if (lookahead == 'h') ADVANCE(2883); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2841: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'e') ADVANCE(1990); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if (lookahead == 'h') ADVANCE(2886); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2842: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'e') ADVANCE(2056); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 'h') ADVANCE(1966); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2843: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'e') ADVANCE(1964); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 'h') ADVANCE(2221); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2844: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'e') ADVANCE(1967); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 'h') ADVANCE(2211); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2845: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'e') ADVANCE(1817); + if (lookahead == 'h') ADVANCE(1995); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2846: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'e') ADVANCE(2037); + if (lookahead == 'h') ADVANCE(1962); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2847: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'e') ADVANCE(1923); + if (lookahead == 'h') ADVANCE(2218); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2848: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'e') ADVANCE(2439); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'h') ADVANCE(2208); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2849: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'e') ADVANCE(2452); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'h') ADVANCE(2223); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2850: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'e') ADVANCE(2762); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'h') ADVANCE(2213); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2851: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'e') ADVANCE(2783); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'h') ADVANCE(2855); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2852: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'e') ADVANCE(3083); - if (lookahead == 'i') ADVANCE(3060); - if (lookahead == 'o') ADVANCE(2974); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 'i') ADVANCE(3032); + if (lookahead == 'r') ADVANCE(2813); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2853: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'e') ADVANCE(2786); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 'i') ADVANCE(3032); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2854: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'e') ADVANCE(3038); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'i') ADVANCE(3034); + if (lookahead == 'r') ADVANCE(2815); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2855: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'e') ADVANCE(2940); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'i') ADVANCE(2892); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2856: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'e') ADVANCE(3027); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 'i') ADVANCE(2754); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2857: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'e') ADVANCE(2944); + if (lookahead == 'i') ADVANCE(2758); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2858: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'e') ADVANCE(3046); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'i') ADVANCE(2917); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2859: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'e') ADVANCE(3047); - if (lookahead == 'i') ADVANCE(2932); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'i') ADVANCE(3043); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2860: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'e') ADVANCE(2950); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'i') ADVANCE(3037); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3158); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2861: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'e') ADVANCE(2955); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 'i') ADVANCE(2785); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2862: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'e') ADVANCE(2962); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'i') ADVANCE(2910); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2863: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'e') ADVANCE(3035); + if (lookahead == 'i') ADVANCE(2786); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2864: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'e') ADVANCE(2963); + if (lookahead == 'i') ADVANCE(2915); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2865: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'e') ADVANCE(3034); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'i') ADVANCE(3025); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2866: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'e') ADVANCE(2964); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'i') ADVANCE(2906); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2867: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'e') ADVANCE(2965); + if (lookahead == 'i') ADVANCE(2913); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2868: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'e') ADVANCE(3025); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if (lookahead == 'i') ADVANCE(3053); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2869: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'e') ADVANCE(3012); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'i') ADVANCE(3060); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2870: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'f') ADVANCE(1985); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3163); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'i') ADVANCE(3061); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2871: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'f') ADVANCE(1801); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'i') ADVANCE(3063); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2872: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'f') ADVANCE(1797); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 'i') ADVANCE(3062); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2873: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'f') ADVANCE(1987); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'i') ADVANCE(3064); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2874: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'g') ADVANCE(2903); - if (lookahead == 't') ADVANCE(3116); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'i') ADVANCE(3026); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2875: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'g') ADVANCE(2912); - if (lookahead == 't') ADVANCE(3115); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 'k') ADVANCE(1889); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2876: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'h') ADVANCE(2859); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'k') ADVANCE(1885); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2877: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'h') ADVANCE(1998); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'k') ADVANCE(2805); + if (lookahead == 't') ADVANCE(2765); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2878: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'h') ADVANCE(2917); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'l') ADVANCE(2384); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2879: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'h') ADVANCE(2258); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'l') ADVANCE(2146); + if (lookahead == 'r') ADVANCE(2156); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2880: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'h') ADVANCE(2248); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'l') ADVANCE(2856); + if (lookahead == 'n') ADVANCE(2770); + if (lookahead == 's') ADVANCE(2049); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2881: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'h') ADVANCE(2922); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 'l') ADVANCE(2856); + if (lookahead == 's') ADVANCE(2049); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2882: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'h') ADVANCE(2925); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'l') ADVANCE(2856); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2883: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'h') ADVANCE(2027); + if (lookahead == 'l') ADVANCE(2143); + if (lookahead == 'r') ADVANCE(2153); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2884: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'h') ADVANCE(1994); + if (lookahead == 'l') ADVANCE(2857); + if (lookahead == 'n') ADVANCE(2774); + if (lookahead == 's') ADVANCE(2045); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2885: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'h') ADVANCE(2255); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if (lookahead == 'l') ADVANCE(2388); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2886: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'h') ADVANCE(2245); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if (lookahead == 'l') ADVANCE(2148); + if (lookahead == 'r') ADVANCE(2158); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2887: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'h') ADVANCE(2260); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'l') ADVANCE(3015); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2888: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'h') ADVANCE(2250); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'l') ADVANCE(2878); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2889: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'h') ADVANCE(2893); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if (lookahead == 'l') ADVANCE(2885); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2890: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'i') ADVANCE(3071); - if (lookahead == 'r') ADVANCE(2851); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'l') ADVANCE(2746); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2891: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'i') ADVANCE(3071); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'l') ADVANCE(2753); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2892: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'i') ADVANCE(3078); - if (lookahead == 'r') ADVANCE(2853); + if (lookahead == 'l') ADVANCE(2806); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2893: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'i') ADVANCE(2931); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 'l') ADVANCE(2797); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2894: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'i') ADVANCE(2792); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'l') ADVANCE(2807); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2895: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'i') ADVANCE(2796); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 'l') ADVANCE(2798); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2896: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'i') ADVANCE(2956); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'l') ADVANCE(3024); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2897: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'i') ADVANCE(3082); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'l') ADVANCE(3020); + if (lookahead == 'n') ADVANCE(2784); + if (lookahead == 'r') ADVANCE(3010); + if (lookahead == 'x') ADVANCE(2964); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2898: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'i') ADVANCE(3081); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3197); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'n') ADVANCE(2770); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2899: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'i') ADVANCE(2823); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'n') ADVANCE(3022); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2900: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'i') ADVANCE(2949); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'n') ADVANCE(3081); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2901: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'i') ADVANCE(2824); + if (lookahead == 'n') ADVANCE(3023); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2902: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'i') ADVANCE(2954); + if (lookahead == 'n') ADVANCE(3085); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2903: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'i') ADVANCE(3064); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'n') ADVANCE(2777); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2904: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'i') ADVANCE(2941); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'n') ADVANCE(2780); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3158); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2905: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'i') ADVANCE(2952); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 'n') ADVANCE(1782); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2906: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'i') ADVANCE(3092); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'n') ADVANCE(2201); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2907: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'i') ADVANCE(3099); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'n') ADVANCE(2002); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2908: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'i') ADVANCE(3100); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'n') ADVANCE(2773); + if (lookahead == 'r') ADVANCE(3009); + if (lookahead == 'x') ADVANCE(2963); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2909: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'i') ADVANCE(3102); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 'n') ADVANCE(2773); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2910: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'i') ADVANCE(3101); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'n') ADVANCE(3079); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2911: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'i') ADVANCE(3103); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 'n') ADVANCE(3082); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2912: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'i') ADVANCE(3065); + if (lookahead == 'n') ADVANCE(1778); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2913: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'k') ADVANCE(1921); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'n') ADVANCE(2198); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2914: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'k') ADVANCE(1917); + if (lookahead == 'n') ADVANCE(1998); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2915: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'k') ADVANCE(2843); - if (lookahead == 't') ADVANCE(2803); + if (lookahead == 'n') ADVANCE(3078); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2916: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'l') ADVANCE(2421); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'n') ADVANCE(3086); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2917: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'l') ADVANCE(2183); - if (lookahead == 'r') ADVANCE(2193); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'n') ADVANCE(2203); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2918: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'l') ADVANCE(2894); - if (lookahead == 'n') ADVANCE(2806); - if (lookahead == 's') ADVANCE(2081); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'n') ADVANCE(2768); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2919: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'l') ADVANCE(2894); - if (lookahead == 'n') ADVANCE(2806); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'n') ADVANCE(1917); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3158); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2920: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'l') ADVANCE(2894); - if (lookahead == 's') ADVANCE(2081); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'n') ADVANCE(2769); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3158); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2921: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'l') ADVANCE(2894); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'n') ADVANCE(1923); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2922: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'l') ADVANCE(2180); - if (lookahead == 'r') ADVANCE(2190); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 'n') ADVANCE(1921); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2923: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'l') ADVANCE(2895); - if (lookahead == 'n') ADVANCE(2812); - if (lookahead == 's') ADVANCE(2077); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 'n') ADVANCE(3083); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2924: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'l') ADVANCE(2425); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'n') ADVANCE(3087); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2925: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'l') ADVANCE(2185); - if (lookahead == 'r') ADVANCE(2195); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'n') ADVANCE(3084); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2926: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'l') ADVANCE(3054); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'n') ADVANCE(3088); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2927: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'l') ADVANCE(2916); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'n') ADVANCE(2779); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2928: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'l') ADVANCE(2924); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'n') ADVANCE(2772); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2929: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'l') ADVANCE(2784); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'n') ADVANCE(2776); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2930: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'l') ADVANCE(2791); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 'o') ADVANCE(2899); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2931: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'l') ADVANCE(2844); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 'o') ADVANCE(3073); + if (lookahead == 't') ADVANCE(2760); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2932: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'l') ADVANCE(2832); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'o') ADVANCE(3073); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2933: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'l') ADVANCE(2845); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 'o') ADVANCE(2961); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2934: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'l') ADVANCE(2833); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'o') ADVANCE(3074); + if (lookahead == 't') ADVANCE(2761); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2935: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'l') ADVANCE(3063); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'o') ADVANCE(2962); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2936: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'l') ADVANCE(3059); - if (lookahead == 'n') ADVANCE(2822); - if (lookahead == 'r') ADVANCE(3049); - if (lookahead == 'x') ADVANCE(3003); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if (lookahead == 'o') ADVANCE(2723); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2937: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'n') ADVANCE(2806); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'o') ADVANCE(3075); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2938: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'n') ADVANCE(3061); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'o') ADVANCE(2994); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3158); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2939: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'n') ADVANCE(1814); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'o') ADVANCE(2981); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2940: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'n') ADVANCE(3120); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'o') ADVANCE(3058); + if (lookahead == 'u') ADVANCE(2889); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3131); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2941: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'n') ADVANCE(2238); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'o') ADVANCE(3058); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2942: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'n') ADVANCE(2034); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'o') ADVANCE(2990); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2943: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'n') ADVANCE(3062); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if (lookahead == 'o') ADVANCE(2778); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2944: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'n') ADVANCE(3124); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if (lookahead == 'o') ADVANCE(3056); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3158); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2945: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'n') ADVANCE(2815); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'o') ADVANCE(2781); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3158); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2946: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'n') ADVANCE(2818); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3197); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'o') ADVANCE(2972); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2947: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'n') ADVANCE(2811); - if (lookahead == 'r') ADVANCE(3048); - if (lookahead == 'x') ADVANCE(3002); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'o') ADVANCE(2982); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2948: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'n') ADVANCE(2811); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'o') ADVANCE(3040); + if (lookahead == 'u') ADVANCE(2888); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3130); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2949: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'n') ADVANCE(3118); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'o') ADVANCE(2782); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2950: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'n') ADVANCE(3121); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'o') ADVANCE(2992); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2951: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'n') ADVANCE(1810); + if (lookahead == 'o') ADVANCE(2983); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2952: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'n') ADVANCE(2235); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 'o') ADVANCE(2973); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2953: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'n') ADVANCE(2030); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if (lookahead == 'o') ADVANCE(3054); + if (lookahead == 'u') ADVANCE(2889); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3131); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2954: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'n') ADVANCE(3117); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if (lookahead == 'o') ADVANCE(3055); + if (lookahead == 'u') ADVANCE(2889); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3131); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2955: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'n') ADVANCE(3125); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 'o') ADVANCE(3050); + if (lookahead == 'u') ADVANCE(2888); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3130); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2956: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'n') ADVANCE(2240); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'o') ADVANCE(2985); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2957: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'n') ADVANCE(2809); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'o') ADVANCE(2975); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2958: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'n') ADVANCE(1950); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3197); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'o') ADVANCE(3057); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2959: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'n') ADVANCE(2810); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3197); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'o') ADVANCE(3005); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2960: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'n') ADVANCE(1955); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'o') ADVANCE(3006); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2961: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'n') ADVANCE(1953); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'p') ADVANCE(1929); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2962: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'n') ADVANCE(3122); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'p') ADVANCE(1925); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2963: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'n') ADVANCE(3126); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 'p') ADVANCE(2959); + if (lookahead == 't') ADVANCE(2827); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2964: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'n') ADVANCE(3123); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'p') ADVANCE(2960); + if (lookahead == 't') ADVANCE(2825); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2965: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'n') ADVANCE(3127); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 'r') ADVANCE(3072); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2966: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'n') ADVANCE(2817); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'r') ADVANCE(3098); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2967: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'n') ADVANCE(2808); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'r') ADVANCE(3071); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2968: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'n') ADVANCE(2814); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if (lookahead == 'r') ADVANCE(2579); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2969: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'o') ADVANCE(2938); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'r') ADVANCE(2304); + if (lookahead == 'v') ADVANCE(2816); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2970: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'o') ADVANCE(3112); - if (lookahead == 't') ADVANCE(2798); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'r') ADVANCE(2304); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2971: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'o') ADVANCE(3112); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'r') ADVANCE(1901); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2972: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'o') ADVANCE(3000); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'r') ADVANCE(2291); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2973: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'o') ADVANCE(3113); - if (lookahead == 't') ADVANCE(2799); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 'r') ADVANCE(1826); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2974: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'o') ADVANCE(3001); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 'r') ADVANCE(2265); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2975: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'o') ADVANCE(2761); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'r') ADVANCE(2255); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2976: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'o') ADVANCE(3114); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'r') ADVANCE(2020); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2977: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'o') ADVANCE(3033); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3197); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'r') ADVANCE(2813); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2978: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'o') ADVANCE(3020); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 'r') ADVANCE(3009); + if (lookahead == 'x') ADVANCE(2963); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2979: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'o') ADVANCE(3097); - if (lookahead == 'u') ADVANCE(2928); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3170); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'r') ADVANCE(2767); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2980: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'o') ADVANCE(3097); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'r') ADVANCE(2298); + if (lookahead == 'v') ADVANCE(2818); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2981: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'o') ADVANCE(3029); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'r') ADVANCE(1897); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2982: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'o') ADVANCE(2816); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'r') ADVANCE(2285); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2983: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'o') ADVANCE(3095); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3197); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'r') ADVANCE(1821); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2984: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'o') ADVANCE(2819); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3197); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'r') ADVANCE(2262); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2985: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'o') ADVANCE(3008); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'r') ADVANCE(2252); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2986: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'o') ADVANCE(3021); + if (lookahead == 'r') ADVANCE(2016); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2987: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'o') ADVANCE(3075); - if (lookahead == 'u') ADVANCE(2927); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3169); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'r') ADVANCE(2766); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2988: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'o') ADVANCE(2820); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'r') ADVANCE(2891); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2989: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'o') ADVANCE(3031); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'r') ADVANCE(2306); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2990: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'o') ADVANCE(3022); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if (lookahead == 'r') ADVANCE(2293); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2991: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'o') ADVANCE(3009); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'r') ADVANCE(2267); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2992: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'o') ADVANCE(3093); - if (lookahead == 'u') ADVANCE(2928); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3170); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'r') ADVANCE(2257); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2993: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'o') ADVANCE(3094); - if (lookahead == 'u') ADVANCE(2928); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3170); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'r') ADVANCE(2301); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3158); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2994: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'o') ADVANCE(3089); - if (lookahead == 'u') ADVANCE(2927); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3169); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'r') ADVANCE(2288); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3158); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2995: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'o') ADVANCE(3024); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 'r') ADVANCE(2905); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 2996: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'o') ADVANCE(3011); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'r') ADVANCE(2912); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 2997: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'o') ADVANCE(3096); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'r') ADVANCE(2726); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2998: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'o') ADVANCE(3044); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'r') ADVANCE(3068); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3158); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 2999: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'o') ADVANCE(3045); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 'r') ADVANCE(2890); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3000: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'p') ADVANCE(1961); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'r') ADVANCE(3067); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3001: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'p') ADVANCE(1957); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 'r') ADVANCE(3069); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3002: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'p') ADVANCE(2998); - if (lookahead == 't') ADVANCE(2865); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'r') ADVANCE(2907); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3003: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'p') ADVANCE(2999); - if (lookahead == 't') ADVANCE(2863); + if (lookahead == 'r') ADVANCE(3070); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 3004: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'r') ADVANCE(2341); - if (lookahead == 'v') ADVANCE(2854); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'r') ADVANCE(2914); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 3005: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'r') ADVANCE(2341); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'r') ADVANCE(3042); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3006: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'r') ADVANCE(3111); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'r') ADVANCE(3048); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 3007: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'r') ADVANCE(1933); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'r') ADVANCE(2997); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3008: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'r') ADVANCE(2328); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'r') ADVANCE(2796); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3009: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'r') ADVANCE(1858); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'r') ADVANCE(2952); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3010: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'r') ADVANCE(2302); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'r') ADVANCE(2951); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 3011: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'r') ADVANCE(2292); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 's') ADVANCE(1270); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3012: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'r') ADVANCE(2052); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 's') ADVANCE(2692); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3013: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'r') ADVANCE(3137); + if (lookahead == 's') ADVANCE(1266); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 3014: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'r') ADVANCE(3110); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 's') ADVANCE(2699); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 3015: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'r') ADVANCE(2617); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 's') ADVANCE(2811); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3016: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'r') ADVANCE(2851); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 's') ADVANCE(2696); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3158); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3017: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'r') ADVANCE(3048); - if (lookahead == 'x') ADVANCE(3002); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 's') ADVANCE(2792); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3018: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'r') ADVANCE(2805); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 's') ADVANCE(2697); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3019: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'r') ADVANCE(2335); - if (lookahead == 'v') ADVANCE(2856); + if (lookahead == 's') ADVANCE(2802); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 3020: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'r') ADVANCE(1929); + if (lookahead == 's') ADVANCE(2803); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 3021: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'r') ADVANCE(2322); + if (lookahead == 's') ADVANCE(3046); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 3022: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'r') ADVANCE(1853); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 's') ADVANCE(3041); + if (lookahead == 't') ADVANCE(2862); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3023: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'r') ADVANCE(2299); + if (lookahead == 's') ADVANCE(3047); + if (lookahead == 't') ADVANCE(2864); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 3024: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'r') ADVANCE(2289); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 's') ADVANCE(2795); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3025: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'r') ADVANCE(2048); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 's') ADVANCE(3065); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3026: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'r') ADVANCE(2804); + if (lookahead == 's') ADVANCE(3066); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 3027: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'r') ADVANCE(2930); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 's') ADVANCE(2705); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3028: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'r') ADVANCE(2343); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 's') ADVANCE(2708); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 3029: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'r') ADVANCE(2330); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 's') ADVANCE(2706); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3158); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3030: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'r') ADVANCE(2304); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 's') ADVANCE(2707); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3031: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'r') ADVANCE(2294); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 't') ADVANCE(2760); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3032: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'r') ADVANCE(2339); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3197); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 't') ADVANCE(2690); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3033: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'r') ADVANCE(2326); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3197); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 't') ADVANCE(2763); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3034: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'r') ADVANCE(2939); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 't') ADVANCE(2693); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 3035: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'r') ADVANCE(2951); + if (lookahead == 't') ADVANCE(2764); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 3036: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'r') ADVANCE(2764); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 't') ADVANCE(2757); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3158); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3037: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'r') ADVANCE(3107); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3197); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 't') ADVANCE(2694); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3158); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3038: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'r') ADVANCE(2929); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 't') ADVANCE(1275); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3039: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'r') ADVANCE(3106); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 't') ADVANCE(1290); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3040: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'r') ADVANCE(3108); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 't') ADVANCE(2313); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3041: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'r') ADVANCE(2942); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 't') ADVANCE(1297); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3042: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'r') ADVANCE(3109); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 't') ADVANCE(1262); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3043: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'r') ADVANCE(2953); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if (lookahead == 't') ADVANCE(2695); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3044: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'r') ADVANCE(3077); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 't') ADVANCE(1277); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 3045: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'r') ADVANCE(3087); + if (lookahead == 't') ADVANCE(1286); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 3046: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'r') ADVANCE(3036); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 't') ADVANCE(1833); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 3047: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'r') ADVANCE(2831); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 't') ADVANCE(1293); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 3048: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'r') ADVANCE(2991); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 't') ADVANCE(1259); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 3049: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'r') ADVANCE(2990); + if (lookahead == 't') ADVANCE(2703); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 3050: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 's') ADVANCE(1299); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 't') ADVANCE(2319); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3051: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 's') ADVANCE(2731); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 't') ADVANCE(2759); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3052: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 's') ADVANCE(1295); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if (lookahead == 't') ADVANCE(2580); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3053: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 's') ADVANCE(2737); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if (lookahead == 't') ADVANCE(2849); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3054: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 's') ADVANCE(2849); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 't') ADVANCE(2310); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3055: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 's') ADVANCE(2735); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3197); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 't') ADVANCE(2321); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3056: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 's') ADVANCE(2827); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 't') ADVANCE(2700); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3158); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3057: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 's') ADVANCE(2736); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 't') ADVANCE(2702); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3058: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 's') ADVANCE(2840); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if (lookahead == 't') ADVANCE(2701); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3059: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 's') ADVANCE(2841); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if (lookahead == 't') ADVANCE(2725); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3060: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 's') ADVANCE(3085); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if (lookahead == 't') ADVANCE(2850); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3061: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 's') ADVANCE(3076); - if (lookahead == 't') ADVANCE(2900); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 't') ADVANCE(2843); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3062: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 's') ADVANCE(3086); - if (lookahead == 't') ADVANCE(2902); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 't') ADVANCE(2844); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3063: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 's') ADVANCE(2830); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 't') ADVANCE(2847); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 3064: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 's') ADVANCE(3104); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 't') ADVANCE(2848); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 3065: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 's') ADVANCE(3105); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 't') ADVANCE(2831); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3066: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 's') ADVANCE(2743); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 't') ADVANCE(2830); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 3067: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 's') ADVANCE(2746); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if (lookahead == 't') ADVANCE(3030); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3068: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 's') ADVANCE(2744); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3197); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 't') ADVANCE(3029); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3158); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3069: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 's') ADVANCE(2745); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 't') ADVANCE(3027); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3070: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 't') ADVANCE(2798); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 't') ADVANCE(3028); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 3071: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 't') ADVANCE(2729); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'u') ADVANCE(2810); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3072: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 't') ADVANCE(1304); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'u') ADVANCE(2794); + if (lookahead == 'y') ADVANCE(1992); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3073: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 't') ADVANCE(2801); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'u') ADVANCE(2979); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3074: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 't') ADVANCE(1319); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'u') ADVANCE(2987); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 3075: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 't') ADVANCE(2350); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'u') ADVANCE(3059); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3076: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 't') ADVANCE(1326); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'u') ADVANCE(3004); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 3077: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 't') ADVANCE(1291); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'u') ADVANCE(3002); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3078: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 't') ADVANCE(2732); + if (lookahead == 'u') ADVANCE(2809); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 3079: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 't') ADVANCE(2802); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 'u') ADVANCE(2800); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3080: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 't') ADVANCE(2795); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3197); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'u') ADVANCE(2895); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3081: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 't') ADVANCE(2733); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3197); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'v') ADVANCE(1284); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3082: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 't') ADVANCE(2734); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'v') ADVANCE(2033); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3083: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 't') ADVANCE(1307); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 'v') ADVANCE(1775); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3084: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 't') ADVANCE(1315); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 'v') ADVANCE(2014); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3085: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 't') ADVANCE(1865); + if (lookahead == 'v') ADVANCE(1280); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 3086: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 't') ADVANCE(1322); + if (lookahead == 'v') ADVANCE(2029); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 3087: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 't') ADVANCE(1289); + if (lookahead == 'v') ADVANCE(1771); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 3088: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 't') ADVANCE(2741); + if (lookahead == 'v') ADVANCE(2010); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 3089: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 't') ADVANCE(2356); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'v') ADVANCE(2816); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3090: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 't') ADVANCE(2797); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'w') ADVANCE(2042); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 3091: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 't') ADVANCE(2618); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'w') ADVANCE(2870); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3092: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 't') ADVANCE(2887); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'w') ADVANCE(2871); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 3093: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 't') ADVANCE(2348); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'w') ADVANCE(2868); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3094: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 't') ADVANCE(2358); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'w') ADVANCE(2872); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3095: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 't') ADVANCE(2738); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3197); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'w') ADVANCE(2873); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 3096: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 't') ADVANCE(2740); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'w') ADVANCE(2869); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3097: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 't') ADVANCE(2739); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'y') ADVANCE(2039); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3098: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 't') ADVANCE(2763); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'y') ADVANCE(1988); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 3099: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 't') ADVANCE(2888); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'y') ADVANCE(2035); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 3100: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 't') ADVANCE(2879); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2714); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(3160); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3100); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3101: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 't') ADVANCE(2880); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3108); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 3102: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 't') ADVANCE(2885); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3107); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 3103: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 't') ADVANCE(2886); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3106); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3121); END_STATE(); case 3104: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 't') ADVANCE(2869); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3113); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 3105: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 't') ADVANCE(2868); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3114); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3121); END_STATE(); case 3106: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 't') ADVANCE(3069); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3112); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3121); END_STATE(); case 3107: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 't') ADVANCE(3068); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3197); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3111); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 3108: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 't') ADVANCE(3066); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3120); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 3109: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 't') ADVANCE(3067); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3102); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 3110: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'u') ADVANCE(2848); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3103); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3121); END_STATE(); case 3111: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'u') ADVANCE(2829); - if (lookahead == 'y') ADVANCE(2024); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3104); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 3112: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'u') ADVANCE(3018); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3105); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3121); END_STATE(); case 3113: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'u') ADVANCE(3026); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3115); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 3114: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'u') ADVANCE(3098); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3116); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3121); END_STATE(); case 3115: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'u') ADVANCE(3043); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(3120); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 3116: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'u') ADVANCE(3041); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(3121); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3121); END_STATE(); case 3117: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'u') ADVANCE(2847); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(3160); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(3117); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3121); END_STATE(); case 3118: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'u') ADVANCE(2835); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(3118); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3121); END_STATE(); case 3119: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'u') ADVANCE(2934); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3119); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3121); END_STATE(); case 3120: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'v') ADVANCE(1313); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3121); END_STATE(); case 3121: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'v') ADVANCE(2065); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == ',' || + lookahead == ':') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3121); END_STATE(); case 3122: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'v') ADVANCE(1807); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3130); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3123: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'v') ADVANCE(2046); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3131); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3124: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'v') ADVANCE(1309); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3129); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3125: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'v') ADVANCE(2061); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3128); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3126: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'v') ADVANCE(1803); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3136); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3127: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'v') ADVANCE(2042); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3137); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3128: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'v') ADVANCE(2854); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3135); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3129: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'w') ADVANCE(2074); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3134); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3130: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'w') ADVANCE(2908); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3159); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3131: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'w') ADVANCE(2909); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3132: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'w') ADVANCE(2906); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3124); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3133: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'w') ADVANCE(2910); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3125); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3134: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'w') ADVANCE(2911); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3126); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3135: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'w') ADVANCE(2907); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3127); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3136: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'y') ADVANCE(2071); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3138); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3137: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'y') ADVANCE(2020); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3139); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3138: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'y') ADVANCE(2067); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(3159); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3139: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2752); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3199); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3139); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3140: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3147); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(3140); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3141: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3146); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(2715); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3142: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3145); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3160); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3144); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3143: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3152); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(3143); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3144: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3153); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3160); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3160); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3145: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3151); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3160); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2704); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3146: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3150); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2731); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3147: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3159); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2717); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3148: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3141); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2712); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3149: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3142); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3160); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3100); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3150: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3143); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2715); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3151: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3144); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3160); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3145); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3152: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3154); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3146); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3153: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3155); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3160); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3147); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3154: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3159); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3148); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3155: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3160); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3160); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2716); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3156: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(3156); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3160); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3155); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3157: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3157); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3160); - END_STATE(); - case 3158: - ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3158); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3160); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3157); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); + END_STATE(); + case 3158: + ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3158); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3159: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3160: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3160); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3161: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3169); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (eof) ADVANCE(1254); + ADVANCE_MAP( + '!', 2718, + '#', 4907, + '$', 1814, + '*', 2056, + '+', 2127, + '-', 1865, + '.', 2446, + '/', 2086, + '0', 2739, + '<', 2178, + '=', 2720, + '>', 1844, + 'I', 3132, + 'N', 3122, + '^', 3208, + '_', 2732, + 'a', 2880, + 'b', 2852, + 'c', 2930, + 'd', 2787, + 'e', 2908, + 'f', 2744, + 'h', 2861, + 'i', 2728, + 'l', 2801, + 'm', 2755, + 'n', 2948, + 'o', 2969, + 'r', 2788, + 's', 2931, + 't', 2965, + 'u', 3017, + 'w', 2838, + 'x', 2946, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2742); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3162: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3170); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (eof) ADVANCE(1254); + ADVANCE_MAP( + '!', 2718, + '#', 4907, + '$', 1814, + '*', 2056, + '+', 2127, + '-', 1865, + '.', 2446, + '/', 2086, + '0', 2739, + '<', 2178, + '=', 2720, + '>', 1844, + 'I', 3133, + 'N', 3123, + '_', 2743, + 'a', 2903, + 'b', 2859, + 'e', 2918, + 'f', 2749, + 'i', 2729, + 'm', 2943, + 'n', 2953, + 'o', 2989, + 's', 3051, + 't', 2967, + 'x', 2942, + '|', 1810, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2742); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3163: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3168); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (eof) ADVANCE(1254); + ADVANCE_MAP( + '!', 2718, + '#', 4907, + '*', 2056, + '+', 2128, + '-', 1866, + '/', 2086, + '<', 2178, + '=', 2720, + '>', 1844, + 'a', 2903, + 'b', 2859, + 'e', 2918, + 'i', 2921, + 'm', 2943, + 'n', 2941, + 'o', 2989, + 's', 3051, + 'x', 2942, + '|', 1810, + ); + if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3164: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3167); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (eof) ADVANCE(1254); + ADVANCE_MAP( + '!', 2718, + '#', 4907, + '*', 2056, + '+', 2128, + '-', 1880, + '/', 2086, + '<', 2178, + '=', 2720, + '>', 1844, + 'a', 2903, + 'b', 2859, + 'e', 2918, + 'i', 2921, + 'm', 2943, + 'n', 2941, + 'o', 2989, + 's', 3051, + 'x', 2942, + '|', 1810, + ); + if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3165: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3175); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (eof) ADVANCE(1254); + ADVANCE_MAP( + '#', 4907, + '$', 1814, + '*', 2059, + '+', 2713, + '-', 1877, + '.', 2446, + '0', 2739, + 'I', 3132, + 'N', 3122, + '^', 3208, + '_', 2732, + 'a', 2882, + 'b', 2977, + 'c', 2930, + 'd', 2787, + 'e', 2978, + 'f', 2744, + 'h', 2861, + 'i', 2832, + 'l', 2801, + 'm', 2756, + 'n', 2955, + 'o', 3089, + 'r', 2788, + 's', 2932, + 't', 2965, + 'u', 3017, + 'w', 2838, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2742); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3166: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3176); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (eof) ADVANCE(1254); + ADVANCE_MAP( + '#', 4907, + '$', 1814, + '+', 2713, + '-', 1877, + '.', 2446, + '0', 2739, + 'I', 3132, + 'N', 3122, + '^', 3208, + '_', 2732, + 'a', 2882, + 'b', 2977, + 'c', 2930, + 'd', 2787, + 'e', 2978, + 'f', 2744, + 'h', 2861, + 'i', 2832, + 'l', 2801, + 'm', 2756, + 'n', 2955, + 'o', 3089, + 'r', 2788, + 's', 2932, + 't', 2965, + 'u', 3017, + 'w', 2838, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2742); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3167: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3174); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (eof) ADVANCE(1254); + ADVANCE_MAP( + '#', 4907, + '$', 1814, + '+', 2713, + '-', 1865, + '.', 2446, + '0', 2739, + 'I', 3132, + 'N', 3122, + '^', 3208, + '_', 2732, + 'a', 2881, + 'b', 2977, + 'c', 2930, + 'd', 2787, + 'e', 2978, + 'f', 2744, + 'h', 2861, + 'i', 2832, + 'l', 2801, + 'm', 2756, + 'n', 2955, + 'o', 3089, + 'r', 2788, + 's', 2932, + 't', 2965, + 'u', 3017, + 'w', 2838, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2742); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3159); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3168: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3173); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (eof) ADVANCE(1254); + ADVANCE_MAP( + '#', 4907, + '$', 1814, + '+', 2713, + '-', 1865, + '.', 2446, + '0', 2739, + 'N', 3123, + '_', 2743, + 'f', 2749, + 'n', 2954, + 't', 2967, + '|', 1810, + 'I', 3133, + 'i', 3133, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2742); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3160); END_STATE(); case 3169: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3198); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + if (eof) ADVANCE(1254); + if (lookahead == '#') ADVANCE(4907); + if (lookahead == '-') ADVANCE(1866); + if (lookahead == '|') ADVANCE(1810); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3170: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if (eof) ADVANCE(1254); + if (lookahead == '#') ADVANCE(4907); + if (lookahead == '|') ADVANCE(1810); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3171: - ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3163); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + ACCEPT_TOKEN(sym__entry_separator); END_STATE(); case 3172: - ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3164); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + ACCEPT_TOKEN(sym__entry_separator); + if (lookahead == ',') ADVANCE(3171); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3172); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3173); END_STATE(); case 3173: - ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3165); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + ACCEPT_TOKEN(sym__entry_separator); + if (lookahead == ',') ADVANCE(3171); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3173); END_STATE(); case 3174: - ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3166); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + ACCEPT_TOKEN(aux_sym__record_key_token1); + if (lookahead == '#') ADVANCE(4903); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3175); END_STATE(); case 3175: - ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3177); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + ACCEPT_TOKEN(aux_sym__record_key_token1); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3175); END_STATE(); case 3176: - ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3178); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + ACCEPT_TOKEN(aux_sym__record_key_token2); + if (lookahead == '-') ADVANCE(3198); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3204); END_STATE(); case 3177: - ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3198); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + ACCEPT_TOKEN(aux_sym__record_key_token2); + if (lookahead == '-') ADVANCE(3202); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3204); END_STATE(); case 3178: - ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + ACCEPT_TOKEN(aux_sym__record_key_token2); + if (lookahead == '.') ADVANCE(3183); + if (lookahead == '_') ADVANCE(3178); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2374); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3204); END_STATE(); case 3179: - ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(3179); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + ACCEPT_TOKEN(aux_sym__record_key_token2); + if (lookahead == '.') ADVANCE(3184); + if (lookahead == '_') ADVANCE(3179); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2438); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3204); END_STATE(); case 3180: - ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(2753); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + ACCEPT_TOKEN(aux_sym__record_key_token2); + if (lookahead == ':') ADVANCE(1009); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3204); END_STATE(); case 3181: - ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3183); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + ACCEPT_TOKEN(aux_sym__record_key_token2); + if (lookahead == '=') ADVANCE(2166); + if (lookahead == '~') ADVANCE(2231); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3204); END_STATE(); case 3182: - ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3182); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + ACCEPT_TOKEN(aux_sym__record_key_token2); + if (lookahead == '=') ADVANCE(2159); + if (lookahead == '~') ADVANCE(2224); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3204); END_STATE(); case 3183: - ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3199); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + ACCEPT_TOKEN(aux_sym__record_key_token2); + if (lookahead == '_') ADVANCE(3183); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2375); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3204); END_STATE(); case 3184: - ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2742); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + ACCEPT_TOKEN(aux_sym__record_key_token2); + if (lookahead == '_') ADVANCE(3184); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2450); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3204); END_STATE(); case 3185: - ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2769); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + ACCEPT_TOKEN(aux_sym__record_key_token2); + if (lookahead == '_') ADVANCE(3185); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2370); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3204); END_STATE(); case 3186: - ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2755); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + ACCEPT_TOKEN(aux_sym__record_key_token2); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2459); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3204); END_STATE(); case 3187: - ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2750); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + ACCEPT_TOKEN(aux_sym__record_key_token2); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3190); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3204); END_STATE(); case 3188: - ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3139); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + ACCEPT_TOKEN(aux_sym__record_key_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3186); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3204); END_STATE(); case 3189: - ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2753); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + ACCEPT_TOKEN(aux_sym__record_key_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3187); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3204); END_STATE(); case 3190: - ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3184); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + ACCEPT_TOKEN(aux_sym__record_key_token2); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3191); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3204); END_STATE(); case 3191: - ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3185); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + ACCEPT_TOKEN(aux_sym__record_key_token2); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2458); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3204); END_STATE(); case 3192: - ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3186); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + ACCEPT_TOKEN(aux_sym__record_key_token2); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(2452); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3204); END_STATE(); case 3193: - ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3187); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + ACCEPT_TOKEN(aux_sym__record_key_token2); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(2453); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3204); END_STATE(); case 3194: - ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2754); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + ACCEPT_TOKEN(aux_sym__record_key_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3177); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3204); END_STATE(); case 3195: - ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3194); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + ACCEPT_TOKEN(aux_sym__record_key_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2508); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3204); END_STATE(); case 3196: - ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3196); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + ACCEPT_TOKEN(aux_sym__record_key_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3180); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3204); END_STATE(); case 3197: - ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3197); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + ACCEPT_TOKEN(aux_sym__record_key_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3194); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3204); END_STATE(); case 3198: - ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3199); + ACCEPT_TOKEN(aux_sym__record_key_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3195); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3204); END_STATE(); case 3199: - ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + ACCEPT_TOKEN(aux_sym__record_key_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3196); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3204); END_STATE(); case 3200: - ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (eof) ADVANCE(1284); - ADVANCE_MAP( - '!', 2756, - '#', 4951, - '$', 1846, - '*', 2086, - '+', 2161, - '-', 1895, - '.', 2482, - '/', 2122, - '0', 2777, - '<', 2214, - '=', 2758, - '>', 1875, - 'I', 3171, - 'N', 3161, - '^', 3247, - '_', 2770, - 'a', 2918, - 'b', 2890, - 'c', 2969, - 'd', 2825, - 'e', 2947, - 'f', 2782, - 'h', 2899, - 'i', 2766, - 'l', 2839, - 'm', 2793, - 'n', 2987, - 'o', 3004, - 'r', 2826, - 's', 2970, - 't', 3006, - 'u', 3056, - 'w', 2876, - 'x', 2985, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2780); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3199); + ACCEPT_TOKEN(aux_sym__record_key_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3197); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3204); END_STATE(); case 3201: - ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (eof) ADVANCE(1284); - ADVANCE_MAP( - '!', 2756, - '#', 4951, - '$', 1846, - '*', 2086, - '+', 2161, - '-', 1895, - '.', 2482, - '/', 2122, - '0', 2777, - '<', 2214, - '=', 2758, - '>', 1875, - 'I', 3172, - 'N', 3162, - '_', 2781, - 'a', 2945, - 'b', 2897, - 'e', 2957, - 'f', 2787, - 'i', 2767, - 'm', 2982, - 'n', 2992, - 'o', 3028, - 's', 3090, - 't', 3014, - 'x', 2981, - '|', 1842, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2780); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3199); + ACCEPT_TOKEN(aux_sym__record_key_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3176); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3204); END_STATE(); case 3202: - ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (eof) ADVANCE(1284); - ADVANCE_MAP( - '!', 2756, - '#', 4951, - '$', 1846, - '*', 2086, - '+', 2161, - '-', 1909, - '.', 2482, - '/', 2122, - '0', 2777, - '<', 2214, - '=', 2758, - '>', 1875, - 'I', 3171, - 'N', 3161, - '^', 3247, - '_', 2770, - 'a', 2919, - 'b', 2890, - 'c', 2969, - 'd', 2825, - 'e', 2947, - 'f', 2782, - 'h', 2899, - 'i', 2766, - 'l', 2839, - 'm', 2793, - 'n', 2987, - 'o', 3004, - 'r', 2826, - 's', 2970, - 't', 3006, - 'u', 3056, - 'w', 2876, - 'x', 2985, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2780); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3199); + ACCEPT_TOKEN(aux_sym__record_key_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3201); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3204); END_STATE(); case 3203: - ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (eof) ADVANCE(1284); - ADVANCE_MAP( - '!', 2756, - '#', 4951, - '*', 2086, - '+', 2162, - '-', 1896, - '/', 2122, - '<', 2214, - '=', 2758, - '>', 1875, - 'a', 2945, - 'b', 2897, - 'e', 2957, - 'i', 2960, - 'm', 2982, - 'n', 2980, - 'o', 3028, - 's', 3090, - 'x', 2981, - '|', 1842, - ); - if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3199); + ACCEPT_TOKEN(aux_sym__record_key_token2); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2451); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3204); END_STATE(); case 3204: - ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (eof) ADVANCE(1284); - ADVANCE_MAP( - '!', 2756, - '#', 4951, - '*', 2086, - '+', 2162, - '-', 1912, - '/', 2122, - '<', 2214, - '=', 2758, - '>', 1875, - 'a', 2945, - 'b', 2897, - 'e', 2957, - 'i', 2960, - 'm', 2982, - 'n', 2980, - 'o', 3028, - 's', 3090, - 'x', 2981, - '|', 1842, - ); - if ((!eof && set_contains(aux_sym_unquoted_token3_character_set_1, 11, lookahead))) ADVANCE(3199); + ACCEPT_TOKEN(aux_sym__record_key_token2); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3204); END_STATE(); case 3205: - ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (eof) ADVANCE(1284); - ADVANCE_MAP( - '#', 4951, - '$', 1846, - '*', 2092, - '+', 2751, - '-', 1909, - '.', 2482, - '0', 2777, - 'I', 3171, - 'N', 3161, - '^', 3247, - '_', 2770, - 'a', 2921, - 'b', 3016, - 'c', 2969, - 'd', 2825, - 'e', 3017, - 'f', 2782, - 'h', 2899, - 'i', 2870, - 'l', 2839, - 'm', 2794, - 'n', 2994, - 'o', 3128, - 'r', 2826, - 's', 2971, - 't', 3006, - 'u', 3056, - 'w', 2876, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2780); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3199); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3205); END_STATE(); case 3206: - ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (eof) ADVANCE(1284); - ADVANCE_MAP( - '#', 4951, - '$', 1846, - '+', 2751, - '-', 1895, - '.', 2482, - '0', 2777, - 'I', 3171, - 'N', 3161, - '^', 3247, - '_', 2770, - 'a', 2920, - 'b', 3016, - 'c', 2969, - 'd', 2825, - 'e', 3017, - 'f', 2782, - 'h', 2899, - 'i', 2870, - 'l', 2839, - 'm', 2794, - 'n', 2994, - 'o', 3128, - 'r', 2826, - 's', 2971, - 't', 3006, - 'u', 3056, - 'w', 2876, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2780); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3199); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 3207: - ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (eof) ADVANCE(1284); - ADVANCE_MAP( - '#', 4951, - '$', 1846, - '+', 2751, - '-', 1895, - '.', 2482, - '0', 2777, - 'N', 3162, - '_', 2781, - 'f', 2787, - 'n', 2993, - 't', 3014, - '|', 1842, - 'I', 3172, - 'i', 3172, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2780); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3199); + ACCEPT_TOKEN(anon_sym_CARET); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 3208: - ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (eof) ADVANCE(1284); - ADVANCE_MAP( - '#', 4951, - '$', 1846, - '+', 2751, - '-', 1909, - '.', 2482, - '0', 2777, - 'I', 3171, - 'N', 3161, - '^', 3247, - '_', 2770, - 'a', 2921, - 'b', 3016, - 'c', 2969, - 'd', 2825, - 'e', 3017, - 'f', 2782, - 'h', 2899, - 'i', 2870, - 'l', 2839, - 'm', 2794, - 'n', 2994, - 'o', 3128, - 'r', 2826, - 's', 2971, - 't', 3006, - 'u', 3056, - 'w', 2876, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2780); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 12, lookahead))) ADVANCE(3199); + ACCEPT_TOKEN(anon_sym_CARET); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3209: - ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (eof) ADVANCE(1284); - if (lookahead == '#') ADVANCE(4951); - if (lookahead == '-') ADVANCE(1896); - if (lookahead == '|') ADVANCE(1842); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + ACCEPT_TOKEN(aux_sym_command_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3209); END_STATE(); case 3210: - ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (eof) ADVANCE(1284); - if (lookahead == '#') ADVANCE(4951); - if (lookahead == '|') ADVANCE(1842); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + ACCEPT_TOKEN(anon_sym_LF2); END_STATE(); case 3211: - ACCEPT_TOKEN(sym__entry_separator); + ACCEPT_TOKEN(anon_sym_err_GT); END_STATE(); case 3212: - ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ',') ADVANCE(3211); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3212); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3213); + ACCEPT_TOKEN(anon_sym_err_GT); + if (lookahead == ',') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 3213: - ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ',') ADVANCE(3211); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); + ACCEPT_TOKEN(anon_sym_err_GT); + if (lookahead == ',') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 3214: - ACCEPT_TOKEN(aux_sym__record_key_token1); - if (lookahead == '#') ADVANCE(4948); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3215); + ACCEPT_TOKEN(anon_sym_err_GT); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); case 3215: - ACCEPT_TOKEN(aux_sym__record_key_token1); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3215); + ACCEPT_TOKEN(anon_sym_err_GT); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); case 3216: - ACCEPT_TOKEN(aux_sym__record_key_token2); - if (lookahead == '-') ADVANCE(3238); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3244); + ACCEPT_TOKEN(anon_sym_err_GT); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 3217: - ACCEPT_TOKEN(aux_sym__record_key_token2); - if (lookahead == '-') ADVANCE(3242); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3244); + ACCEPT_TOKEN(anon_sym_err_GT); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3218: - ACCEPT_TOKEN(aux_sym__record_key_token2); - if (lookahead == '.') ADVANCE(3223); - if (lookahead == '_') ADVANCE(3218); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2412); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3244); + ACCEPT_TOKEN(anon_sym_out_GT); END_STATE(); case 3219: - ACCEPT_TOKEN(aux_sym__record_key_token2); - if (lookahead == '.') ADVANCE(3224); - if (lookahead == '_') ADVANCE(3219); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2476); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3244); + ACCEPT_TOKEN(anon_sym_out_GT); + if (lookahead == ',') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 3220: - ACCEPT_TOKEN(aux_sym__record_key_token2); - if (lookahead == ':') ADVANCE(1009); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3244); + ACCEPT_TOKEN(anon_sym_out_GT); + if (lookahead == ',') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 3221: - ACCEPT_TOKEN(aux_sym__record_key_token2); - if (lookahead == '=') ADVANCE(2204); - if (lookahead == '~') ADVANCE(2269); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3244); + ACCEPT_TOKEN(anon_sym_out_GT); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); case 3222: - ACCEPT_TOKEN(aux_sym__record_key_token2); - if (lookahead == '=') ADVANCE(2197); - if (lookahead == '~') ADVANCE(2262); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3244); + ACCEPT_TOKEN(anon_sym_out_GT); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); case 3223: - ACCEPT_TOKEN(aux_sym__record_key_token2); - if (lookahead == '_') ADVANCE(3223); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2413); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3244); + ACCEPT_TOKEN(anon_sym_out_GT); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 3224: - ACCEPT_TOKEN(aux_sym__record_key_token2); - if (lookahead == '_') ADVANCE(3224); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2488); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3244); + ACCEPT_TOKEN(anon_sym_out_GT); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3225: - ACCEPT_TOKEN(aux_sym__record_key_token2); - if (lookahead == '_') ADVANCE(3225); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2408); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3244); + ACCEPT_TOKEN(anon_sym_e_GT); END_STATE(); case 3226: - ACCEPT_TOKEN(aux_sym__record_key_token2); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2497); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3244); + ACCEPT_TOKEN(anon_sym_e_GT); + if (lookahead == ',') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 3227: - ACCEPT_TOKEN(aux_sym__record_key_token2); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3230); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3244); + ACCEPT_TOKEN(anon_sym_e_GT); + if (lookahead == ',') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 3228: - ACCEPT_TOKEN(aux_sym__record_key_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3226); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3244); + ACCEPT_TOKEN(anon_sym_e_GT); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); case 3229: - ACCEPT_TOKEN(aux_sym__record_key_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3227); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3244); + ACCEPT_TOKEN(anon_sym_e_GT); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); case 3230: - ACCEPT_TOKEN(aux_sym__record_key_token2); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3231); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3244); + ACCEPT_TOKEN(anon_sym_e_GT); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 3231: - ACCEPT_TOKEN(aux_sym__record_key_token2); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2496); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3244); + ACCEPT_TOKEN(anon_sym_e_GT); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3232: - ACCEPT_TOKEN(aux_sym__record_key_token2); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(2490); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3244); + ACCEPT_TOKEN(anon_sym_o_GT); END_STATE(); case 3233: - ACCEPT_TOKEN(aux_sym__record_key_token2); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(2491); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3244); + ACCEPT_TOKEN(anon_sym_o_GT); + if (lookahead == ',') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 3234: - ACCEPT_TOKEN(aux_sym__record_key_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3217); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3244); + ACCEPT_TOKEN(anon_sym_o_GT); + if (lookahead == ',') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 3235: - ACCEPT_TOKEN(aux_sym__record_key_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2546); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3244); + ACCEPT_TOKEN(anon_sym_o_GT); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); case 3236: - ACCEPT_TOKEN(aux_sym__record_key_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3220); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3244); + ACCEPT_TOKEN(anon_sym_o_GT); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); case 3237: - ACCEPT_TOKEN(aux_sym__record_key_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3234); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3244); + ACCEPT_TOKEN(anon_sym_o_GT); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 3238: - ACCEPT_TOKEN(aux_sym__record_key_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3235); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3244); + ACCEPT_TOKEN(anon_sym_o_GT); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3239: - ACCEPT_TOKEN(aux_sym__record_key_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3236); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3244); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); END_STATE(); case 3240: - ACCEPT_TOKEN(aux_sym__record_key_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3237); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3244); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); + if (lookahead == ',') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 3241: - ACCEPT_TOKEN(aux_sym__record_key_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3216); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3244); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); + if (lookahead == ',') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 3242: - ACCEPT_TOKEN(aux_sym__record_key_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3241); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3244); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); case 3243: - ACCEPT_TOKEN(aux_sym__record_key_token2); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2489); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3244); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); case 3244: - ACCEPT_TOKEN(aux_sym__record_key_token2); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3244); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 3245: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3245); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3246: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); END_STATE(); case 3247: - ACCEPT_TOKEN(anon_sym_CARET); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); + if (lookahead == ',') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 3248: - ACCEPT_TOKEN(anon_sym_CARET); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); + if (lookahead == ',') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 3249: - ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3249); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); case 3250: - ACCEPT_TOKEN(anon_sym_LF2); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); case 3251: - ACCEPT_TOKEN(anon_sym_err_GT); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 3252: - ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == ',') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3253: - ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == ',') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); END_STATE(); case 3254: - ACCEPT_TOKEN(anon_sym_err_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); + if (lookahead == ',') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 3255: - ACCEPT_TOKEN(anon_sym_err_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); + if (lookahead == ',') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 3256: - ACCEPT_TOKEN(anon_sym_err_GT); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); case 3257: - ACCEPT_TOKEN(anon_sym_err_GT); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); case 3258: - ACCEPT_TOKEN(anon_sym_out_GT); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 3259: - ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == ',') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3260: - ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == ',') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); END_STATE(); case 3261: - ACCEPT_TOKEN(anon_sym_out_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); + if (lookahead == ',') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 3262: - ACCEPT_TOKEN(anon_sym_out_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); + if (lookahead == ',') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); case 3263: - ACCEPT_TOKEN(anon_sym_out_GT); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); case 3264: - ACCEPT_TOKEN(anon_sym_out_GT); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); case 3265: - ACCEPT_TOKEN(anon_sym_e_GT); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 3266: - ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == ',') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); case 3267: - ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == ',') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3267); END_STATE(); case 3268: - ACCEPT_TOKEN(anon_sym_e_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + ADVANCE_MAP( + '+', 3337, + '>', 3225, + 'I', 3374, + 'i', 3374, + 'n', 3315, + 'r', 3346, + 'B', 2469, + 'b', 2469, + ); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3269: - ACCEPT_TOKEN(anon_sym_e_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(3337); + if (lookahead == '>') ADVANCE(3225); + if (lookahead == 'n') ADVANCE(3315); + if (lookahead == 'r') ADVANCE(3346); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3270: - ACCEPT_TOKEN(anon_sym_e_GT); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(3337); + if (lookahead == '>') ADVANCE(3225); + if (lookahead == 'r') ADVANCE(3346); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3271: - ACCEPT_TOKEN(anon_sym_e_GT); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(3319); + if (lookahead == '>') ADVANCE(3232); + if (lookahead == 'r') ADVANCE(2294); + if (lookahead == 'u') ADVANCE(3360); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3272: - ACCEPT_TOKEN(anon_sym_o_GT); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(3319); + if (lookahead == '>') ADVANCE(3232); + if (lookahead == 'u') ADVANCE(3360); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3273: - ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == ',') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + ADVANCE_MAP( + '+', 3301, + '-', 3303, + '>', 3225, + 'I', 3374, + '_', 3303, + 'i', 3374, + 'n', 3315, + 'r', 3346, + 'B', 2469, + 'b', 2469, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2370); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3274: - ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == ',') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(3301); + if (lookahead == '-') ADVANCE(3303); + if (lookahead == '>') ADVANCE(3225); + if (lookahead == '_') ADVANCE(3303); + if (lookahead == 'r') ADVANCE(3346); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2370); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3275: - ACCEPT_TOKEN(anon_sym_o_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(3338); + if (lookahead == '>') ADVANCE(3211); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3276: - ACCEPT_TOKEN(anon_sym_o_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(3320); + if (lookahead == '>') ADVANCE(3218); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3277: - ACCEPT_TOKEN(anon_sym_o_GT); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '-') ADVANCE(3308); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3278: - ACCEPT_TOKEN(anon_sym_o_GT); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '-') ADVANCE(3370); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3279: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '-') ADVANCE(3325); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3280: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == ',') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '-') ADVANCE(3390); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3281: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == ',') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '-') ADVANCE(3371); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3282: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '.') ADVANCE(3300); + if (lookahead == '_') ADVANCE(3282); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2438); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3396); END_STATE(); case 3283: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '.') ADVANCE(3305); + if (lookahead == '_') ADVANCE(3283); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2374); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3396); END_STATE(); case 3284: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '2') ADVANCE(3382); + if (lookahead == '0' || + lookahead == '1') ADVANCE(3389); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3285: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == ':') ADVANCE(3393); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3286: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == ':') ADVANCE(3395); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3287: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == ',') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '=') ADVANCE(2166); + if (lookahead == '~') ADVANCE(2231); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3288: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == ',') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '=') ADVANCE(2159); + if (lookahead == '~') ADVANCE(2224); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3289: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '>') ADVANCE(3260); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3290: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '>') ADVANCE(3253); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3291: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '>') ADVANCE(3239); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3292: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '>') ADVANCE(3246); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3293: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'I') ADVANCE(3374); + if (lookahead == '_') ADVANCE(3303); + if (lookahead == 'i') ADVANCE(3310); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3303); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2469); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2370); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3294: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == ',') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'I') ADVANCE(3374); + if (lookahead == 'i') ADVANCE(3374); + if (lookahead == 'r') ADVANCE(3368); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2469); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3295: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == ',') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'I') ADVANCE(3374); + if (lookahead == 'i') ADVANCE(3374); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2469); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3296: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'I') ADVANCE(3374); + if (lookahead == 'i') ADVANCE(3310); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2469); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3297: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'I') ADVANCE(3374); + if (lookahead == 'i') ADVANCE(3333); + if (lookahead == 'o') ADVANCE(3313); + if (lookahead == 's') ADVANCE(2479); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2469); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3298: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'N') ADVANCE(3375); + if (lookahead == 'n') ADVANCE(1913); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3299: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '_') ADVANCE(3299); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3300: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '_') ADVANCE(3300); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2450); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3301: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == ',') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '_') ADVANCE(3303); + if (lookahead == 'o') ADVANCE(3289); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2370); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3302: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == ',') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '_') ADVANCE(3303); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3303); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2370); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3303: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '_') ADVANCE(3303); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2370); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3304: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '_') ADVANCE(3304); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3305: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '_') ADVANCE(3305); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2375); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3306: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'a') ADVANCE(3330); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3307: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(3307); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'a') ADVANCE(3372); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3308: ACCEPT_TOKEN(aux_sym_unquoted_token1); - ADVANCE_MAP( - '+', 3377, - '>', 3265, - 'I', 3414, - 'i', 3414, - 'n', 3355, - 'r', 3386, - 'B', 2507, - 'b', 2507, - ); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'a') ADVANCE(3336); + if (lookahead == 'o') ADVANCE(3349); + if (lookahead == 's') ADVANCE(3323); + if (lookahead == 'x') ADVANCE(3343); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3309: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3377); - if (lookahead == '>') ADVANCE(3265); - if (lookahead == 'n') ADVANCE(3355); - if (lookahead == 'r') ADVANCE(3386); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'a') ADVANCE(3353); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3310: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3377); - if (lookahead == '>') ADVANCE(3265); - if (lookahead == 'r') ADVANCE(3386); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'b') ADVANCE(2469); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3311: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3359); - if (lookahead == '>') ADVANCE(3272); - if (lookahead == 'r') ADVANCE(2332); - if (lookahead == 'u') ADVANCE(3400); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'c') ADVANCE(2479); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3312: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3359); - if (lookahead == '>') ADVANCE(3272); - if (lookahead == 'u') ADVANCE(3400); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'd') ADVANCE(2268); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3313: ACCEPT_TOKEN(aux_sym_unquoted_token1); - ADVANCE_MAP( - '+', 3341, - '-', 3343, - '>', 3265, - 'I', 3414, - '_', 3343, - 'i', 3414, - 'n', 3355, - 'r', 3386, - 'B', 2507, - 'b', 2507, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2408); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'd') ADVANCE(2088); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3314: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3341); - if (lookahead == '-') ADVANCE(3343); - if (lookahead == '>') ADVANCE(3265); - if (lookahead == '_') ADVANCE(3343); - if (lookahead == 'r') ADVANCE(3386); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2408); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'd') ADVANCE(2238); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3315: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3378); - if (lookahead == '>') ADVANCE(3251); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'd') ADVANCE(3356); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3316: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3360); - if (lookahead == '>') ADVANCE(3258); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'e') ADVANCE(2390); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3317: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '-') ADVANCE(3348); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'e') ADVANCE(2403); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3318: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '-') ADVANCE(3410); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'e') ADVANCE(3311); + if (lookahead == 't') ADVANCE(3309); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3319: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '-') ADVANCE(3365); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'e') ADVANCE(3290); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3320: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '-') ADVANCE(3430); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'e') ADVANCE(3351); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3321: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '-') ADVANCE(3411); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'h') ADVANCE(2214); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3322: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(3340); - if (lookahead == '_') ADVANCE(3322); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2476); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3436); + if (lookahead == 'h') ADVANCE(2204); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3323: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(3345); - if (lookahead == '_') ADVANCE(3323); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2412); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3436); + if (lookahead == 'h') ADVANCE(3331); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3324: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '2') ADVANCE(3422); - if (lookahead == '0' || - lookahead == '1') ADVANCE(3429); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'i') ADVANCE(3361); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3325: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ':') ADVANCE(3433); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'i') ADVANCE(3334); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3326: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ':') ADVANCE(3435); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'i') ADVANCE(3362); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3327: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '=') ADVANCE(2204); - if (lookahead == '~') ADVANCE(2269); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'i') ADVANCE(3365); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3328: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '=') ADVANCE(2197); - if (lookahead == '~') ADVANCE(2262); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'k') ADVANCE(2479); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3329: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(3300); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'l') ADVANCE(2376); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3330: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(3293); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'l') ADVANCE(3355); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3331: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(3279); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'l') ADVANCE(2139); + if (lookahead == 'r') ADVANCE(2149); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3332: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(3286); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'l') ADVANCE(3329); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3333: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'I') ADVANCE(3414); - if (lookahead == '_') ADVANCE(3343); - if (lookahead == 'i') ADVANCE(3350); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3343); + if (lookahead == 'n') ADVANCE(2479); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2507); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2408); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + lookahead == 'b') ADVANCE(2469); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3334: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'I') ADVANCE(3414); - if (lookahead == 'i') ADVANCE(3414); - if (lookahead == 'r') ADVANCE(3408); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2507); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'n') ADVANCE(2194); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3335: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'I') ADVANCE(3414); - if (lookahead == 'i') ADVANCE(3414); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2507); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'n') ADVANCE(3312); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3336: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'I') ADVANCE(3414); - if (lookahead == 'i') ADVANCE(3350); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2507); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'n') ADVANCE(3314); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3337: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'I') ADVANCE(3414); - if (lookahead == 'i') ADVANCE(3373); - if (lookahead == 'o') ADVANCE(3353); - if (lookahead == 's') ADVANCE(2517); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2507); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'o') ADVANCE(3289); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3338: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N') ADVANCE(3415); - if (lookahead == 'n') ADVANCE(1946); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'o') ADVANCE(3369); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3339: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3339); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'o') ADVANCE(3313); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3340: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3340); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2488); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'o') ADVANCE(3364); + if (lookahead == 's') ADVANCE(2479); + if (lookahead == 'u') ADVANCE(3332); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3377); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3341: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3343); - if (lookahead == 'o') ADVANCE(3329); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2408); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'o') ADVANCE(3364); + if (lookahead == 'u') ADVANCE(3332); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3377); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3342: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3343); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3343); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2408); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'o') ADVANCE(3348); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3343: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3343); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2408); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'o') ADVANCE(3350); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3344: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3344); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'o') ADVANCE(3358); + if (lookahead == 'u') ADVANCE(3332); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3377); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3345: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3345); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2413); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'r') ADVANCE(3368); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3346: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'a') ADVANCE(3370); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'r') ADVANCE(3275); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3347: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'a') ADVANCE(3412); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'r') ADVANCE(2479); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3348: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'a') ADVANCE(3376); - if (lookahead == 'o') ADVANCE(3389); - if (lookahead == 's') ADVANCE(3363); - if (lookahead == 'x') ADVANCE(3383); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'r') ADVANCE(2281); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3349: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'a') ADVANCE(3393); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'r') ADVANCE(2258); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3350: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'b') ADVANCE(2507); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'r') ADVANCE(2248); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3351: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'c') ADVANCE(2517); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'r') ADVANCE(3352); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3352: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'd') ADVANCE(2306); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'r') ADVANCE(3292); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3353: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'd') ADVANCE(2126); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'r') ADVANCE(3366); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3354: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'd') ADVANCE(2276); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 's') ADVANCE(2479); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3355: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'd') ADVANCE(3396); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 's') ADVANCE(3317); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3356: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2428); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 's') ADVANCE(3278); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3357: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2441); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 's') ADVANCE(3281); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3358: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(3351); - if (lookahead == 't') ADVANCE(3349); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 't') ADVANCE(2307); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3359: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(3330); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 't') ADVANCE(3309); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3360: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(3391); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 't') ADVANCE(3276); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3361: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'h') ADVANCE(2252); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 't') ADVANCE(3277); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3362: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'h') ADVANCE(2242); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 't') ADVANCE(3321); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3363: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'h') ADVANCE(3371); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 't') ADVANCE(3291); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3364: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'i') ADVANCE(3401); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 't') ADVANCE(3279); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3365: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'i') ADVANCE(3374); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 't') ADVANCE(3322); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3366: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'i') ADVANCE(3402); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 't') ADVANCE(3357); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3367: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'i') ADVANCE(3405); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'u') ADVANCE(3332); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3377); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3368: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'k') ADVANCE(2517); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'u') ADVANCE(3316); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3369: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(2414); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'u') ADVANCE(3363); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3370: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(3395); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'w') ADVANCE(3326); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3371: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(2177); - if (lookahead == 'r') ADVANCE(2187); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'w') ADVANCE(3327); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3372: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(3369); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'y') ADVANCE(2479); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3373: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'n') ADVANCE(2517); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2507); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3377); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3374: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'n') ADVANCE(2232); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2469); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3375: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'n') ADVANCE(3352); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2456); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3376: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'n') ADVANCE(3354); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3380); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3377: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(3329); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2461); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3378: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(3409); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3375); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3379: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(3353); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3376); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3380: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(3404); - if (lookahead == 's') ADVANCE(2517); - if (lookahead == 'u') ADVANCE(3372); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3417); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3381); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3381: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(3404); - if (lookahead == 'u') ADVANCE(3372); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3417); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2454); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3382: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(3388); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(2505); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3383: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(3390); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2499); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3384: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(3398); - if (lookahead == 'u') ADVANCE(3372); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3417); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3280); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3385: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(3408); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3286); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3386: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(3315); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3384); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3387: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2517); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2502); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3388: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2319); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2512); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3389: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2296); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2505); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3390: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2286); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3391); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3391: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(3392); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2507); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3392: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(3332); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3393: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(3406); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3387); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3394: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 's') ADVANCE(2517); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3285); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3395: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 's') ADVANCE(3357); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3394); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3396: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 's') ADVANCE(3318); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3396); END_STATE(); case 3397: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 's') ADVANCE(3321); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + ACCEPT_TOKEN(aux_sym_unquoted_token2); END_STATE(); case 3398: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2345); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(4612); + if (lookahead == '>') ADVANCE(3225); + if (lookahead == 'n') ADVANCE(4592); + if (lookahead == 'r') ADVANCE(4619); END_STATE(); case 3399: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(3349); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(4612); + if (lookahead == '>') ADVANCE(3225); + if (lookahead == 'r') ADVANCE(4619); END_STATE(); case 3400: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(3316); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(4595); + if (lookahead == '>') ADVANCE(3232); + if (lookahead == 'r') ADVANCE(2294); + if (lookahead == 'u') ADVANCE(4630); END_STATE(); case 3401: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(3317); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(4595); + if (lookahead == '>') ADVANCE(3232); + if (lookahead == 'u') ADVANCE(4630); END_STATE(); case 3402: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(3361); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(3337); + if (lookahead == '>') ADVANCE(3225); + if (lookahead == 'n') ADVANCE(3315); + if (lookahead == 'r') ADVANCE(3346); END_STATE(); case 3403: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(3331); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(3319); + if (lookahead == '>') ADVANCE(3232); + if (lookahead == 'r') ADVANCE(2294); + if (lookahead == 'u') ADVANCE(3360); END_STATE(); case 3404: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(3319); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(4579); + if (lookahead == '-') ADVANCE(4581); + if (lookahead == '>') ADVANCE(3225); + if (lookahead == '_') ADVANCE(4581); + if (lookahead == 'r') ADVANCE(4619); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2370); END_STATE(); case 3405: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(3362); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(830); + if (lookahead == '-') ADVANCE(1321); + if (lookahead == '_') ADVANCE(1321); + if (lookahead == 'r') ADVANCE(1464); + if (lookahead == 'x') ADVANCE(1449); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2369); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3406: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(3397); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(830); + if (lookahead == '-') ADVANCE(1321); + if (lookahead == '_') ADVANCE(1321); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2369); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3407: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(3372); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3417); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '-') ADVANCE(1851); END_STATE(); case 3408: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(3356); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '-') ADVANCE(1851); + if (lookahead == '.') ADVANCE(831); + if (lookahead == '_') ADVANCE(809); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2374); END_STATE(); case 3409: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(3403); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '.') ADVANCE(825); + if (lookahead == '_') ADVANCE(805); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2438); END_STATE(); case 3410: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'w') ADVANCE(3366); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '.') ADVANCE(831); + if (lookahead == '_') ADVANCE(809); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2374); END_STATE(); case 3411: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'w') ADVANCE(3367); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '=') ADVANCE(2166); + if (lookahead == '~') ADVANCE(2231); END_STATE(); case 3412: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'y') ADVANCE(2517); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '=') ADVANCE(2159); + if (lookahead == '>') ADVANCE(1969); + if (lookahead == '~') ADVANCE(2224); END_STATE(); case 3413: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3417); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '=') ADVANCE(2159); + if (lookahead == '~') ADVANCE(2224); END_STATE(); case 3414: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2507); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '>') ADVANCE(1969); END_STATE(); case 3415: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2494); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'N') ADVANCE(1519); + if (lookahead == 'f') ADVANCE(1951); + if (lookahead == 'n') ADVANCE(1907); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3416: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3420); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'N') ADVANCE(4645); + if (lookahead == 'n') ADVANCE(1912); END_STATE(); case 3417: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2499); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'N') ADVANCE(3375); + if (lookahead == 'n') ADVANCE(1913); END_STATE(); case 3418: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3415); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'N') ADVANCE(989); + if (lookahead == 'n') ADVANCE(1914); END_STATE(); case 3419: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3416); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(1320); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1320); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3420: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3421); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(4577); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2437); END_STATE(); case 3421: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2492); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(830); + if (lookahead == '+' || + lookahead == '-') ADVANCE(830); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2370); END_STATE(); case 3422: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(2543); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(1545); + if (lookahead == '+' || + lookahead == '-') ADVANCE(830); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2371); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1620); END_STATE(); case 3423: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2537); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(1322); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2351); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3424: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3320); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(4581); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4581); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2370); END_STATE(); case 3425: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3326); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(1546); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2352); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3426: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3424); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(832); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); END_STATE(); case 3427: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2540); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(4582); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); END_STATE(); case 3428: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2550); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(833); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2437); END_STATE(); case 3429: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2543); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(2437); + if (lookahead == 'b') ADVANCE(2464); + if (lookahead == 'o') ADVANCE(2485); + if (lookahead == 'x') ADVANCE(2492); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2426); END_STATE(); case 3430: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3431); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(2437); + if (lookahead == 'b') ADVANCE(2464); + if (lookahead == 'o') ADVANCE(2485); + if (lookahead == 'x') ADVANCE(2492); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2430); END_STATE(); case 3431: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2545); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(2437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2426); END_STATE(); case 3432: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3425); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(2437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2430); END_STATE(); case 3433: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3427); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'a') ADVANCE(1404); + if (lookahead == 'o') ADVANCE(1343); + if (lookahead == 'u') ADVANCE(1484); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3434: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3325); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'a') ADVANCE(4604); END_STATE(); case 3435: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3434); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'a') ADVANCE(3330); END_STATE(); case 3436: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3436); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'a') ADVANCE(896); END_STATE(); case 3437: ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'a') ADVANCE(1414); + if (lookahead == 'o') ADVANCE(1451); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3438: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4657); - if (lookahead == '>') ADVANCE(3265); - if (lookahead == 'n') ADVANCE(4637); - if (lookahead == 'r') ADVANCE(4664); + if (lookahead == 'a') ADVANCE(1483); + if (lookahead == 'o') ADVANCE(1346); + if (lookahead == 'u') ADVANCE(1484); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3439: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4657); - if (lookahead == '>') ADVANCE(3265); - if (lookahead == 'r') ADVANCE(4664); + if (lookahead == 'a') ADVANCE(1483); + if (lookahead == 'o') ADVANCE(1343); + if (lookahead == 'u') ADVANCE(1484); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3440: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4640); - if (lookahead == '>') ADVANCE(3272); - if (lookahead == 'r') ADVANCE(2332); - if (lookahead == 'u') ADVANCE(4675); + if (lookahead == 'a') ADVANCE(1497); + if (lookahead == 'o') ADVANCE(1417); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3441: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4640); - if (lookahead == '>') ADVANCE(3272); - if (lookahead == 'u') ADVANCE(4675); + if (lookahead == 'e') ADVANCE(1381); + if (lookahead == 'o') ADVANCE(1944); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3442: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3377); - if (lookahead == '>') ADVANCE(3265); - if (lookahead == 'n') ADVANCE(3355); - if (lookahead == 'r') ADVANCE(3386); + if (lookahead == 'e') ADVANCE(1482); + if (lookahead == 'i') ADVANCE(1479); + if (lookahead == 'o') ADVANCE(1437); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3443: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3359); - if (lookahead == '>') ADVANCE(3272); - if (lookahead == 'r') ADVANCE(2332); - if (lookahead == 'u') ADVANCE(3400); + if (lookahead == 'e') ADVANCE(1482); + if (lookahead == 'o') ADVANCE(1437); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3444: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4624); - if (lookahead == '-') ADVANCE(4626); - if (lookahead == '>') ADVANCE(3265); - if (lookahead == '_') ADVANCE(4626); - if (lookahead == 'r') ADVANCE(4664); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2408); + if (lookahead == 'e') ADVANCE(1382); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3445: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(830); - if (lookahead == '-') ADVANCE(1351); - if (lookahead == '_') ADVANCE(1351); - if (lookahead == 'r') ADVANCE(1497); - if (lookahead == 'x') ADVANCE(1482); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2407); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'e') ADVANCE(1511); + if (lookahead == 'o') ADVANCE(1491); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1522); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3446: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(830); - if (lookahead == '-') ADVANCE(1351); - if (lookahead == '_') ADVANCE(1351); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2407); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'f') ADVANCE(1951); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1519); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3447: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '-') ADVANCE(1884); + if (lookahead == 'f') ADVANCE(1947); END_STATE(); case 3448: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '-') ADVANCE(1884); - if (lookahead == '.') ADVANCE(831); - if (lookahead == '_') ADVANCE(809); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2412); + if (lookahead == 'h') ADVANCE(1378); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3449: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(825); - if (lookahead == '_') ADVANCE(805); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2476); + if (lookahead == 'h') ADVANCE(1397); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3450: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(831); - if (lookahead == '_') ADVANCE(809); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2412); + if (lookahead == 'i') ADVANCE(1348); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3451: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '=') ADVANCE(2204); - if (lookahead == '~') ADVANCE(2269); + if (lookahead == 'i') ADVANCE(955); END_STATE(); case 3452: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '=') ADVANCE(2197); - if (lookahead == '>') ADVANCE(2002); - if (lookahead == '~') ADVANCE(2262); + if (lookahead == 'i') ADVANCE(1601); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3453: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '=') ADVANCE(2197); - if (lookahead == '~') ADVANCE(2262); + if (lookahead == 'i') ADVANCE(4631); END_STATE(); case 3454: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(2002); + if (lookahead == 'i') ADVANCE(3361); END_STATE(); case 3455: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N') ADVANCE(1552); - if (lookahead == 'f') ADVANCE(1984); - if (lookahead == 'n') ADVANCE(1940); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'i') ADVANCE(1489); + if (lookahead == 'r') ADVANCE(1368); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3456: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N') ADVANCE(4690); - if (lookahead == 'n') ADVANCE(1945); + if (lookahead == 'i') ADVANCE(1489); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3457: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N') ADVANCE(3415); - if (lookahead == 'n') ADVANCE(1946); + if (lookahead == 'l') ADVANCE(1394); + if (lookahead == 'n') ADVANCE(1342); + if (lookahead == 's') ADVANCE(2047); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3458: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N') ADVANCE(989); - if (lookahead == 'n') ADVANCE(1947); + if (lookahead == 'l') ADVANCE(1394); + if (lookahead == 's') ADVANCE(2047); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3459: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(1350); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1350); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'l') ADVANCE(1394); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3460: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4622); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2475); + if (lookahead == 'l') ADVANCE(1480); + if (lookahead == 'n') ADVANCE(1347); + if (lookahead == 'r') ADVANCE(1464); + if (lookahead == 'x') ADVANCE(1449); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3461: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(830); - if (lookahead == '+' || - lookahead == '-') ADVANCE(830); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2408); + if (lookahead == 'n') ADVANCE(4589); END_STATE(); case 3462: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(1578); - if (lookahead == '+' || - lookahead == '-') ADVANCE(830); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2409); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1653); + if (lookahead == 'n') ADVANCE(3312); END_STATE(); case 3463: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(1352); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2389); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'n') ADVANCE(851); END_STATE(); case 3464: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4626); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4626); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2408); + if (lookahead == 'n') ADVANCE(1902); END_STATE(); case 3465: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(1579); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2390); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'n') ADVANCE(1553); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3466: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + if (lookahead == 'n') ADVANCE(1915); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3467: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4627); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + if (lookahead == 'n') ADVANCE(1919); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3468: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(833); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2475); + if (lookahead == 'n') ADVANCE(854); END_STATE(); case 3469: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(2475); - if (lookahead == 'b') ADVANCE(2502); - if (lookahead == 'o') ADVANCE(2523); - if (lookahead == 'x') ADVANCE(2530); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); + if (lookahead == 'n') ADVANCE(1555); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3470: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(2475); - if (lookahead == 'b') ADVANCE(2502); - if (lookahead == 'o') ADVANCE(2523); - if (lookahead == 'x') ADVANCE(2530); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2468); + if (lookahead == 'n') ADVANCE(1342); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3471: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(2475); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); + if (lookahead == 'n') ADVANCE(1347); + if (lookahead == 'r') ADVANCE(1464); + if (lookahead == 'x') ADVANCE(1449); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3472: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(2475); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2468); + if (lookahead == 'n') ADVANCE(1347); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3473: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(1435); - if (lookahead == 'o') ADVANCE(1373); - if (lookahead == 'u') ADVANCE(1517); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(1417); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3474: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(4649); + if (lookahead == 'o') ADVANCE(1500); + if (lookahead == 't') ADVANCE(1335); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3475: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(3370); + if (lookahead == 'o') ADVANCE(1500); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3476: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(896); + if (lookahead == 'o') ADVANCE(933); END_STATE(); case 3477: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(1446); - if (lookahead == 'o') ADVANCE(1484); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(951); + if (lookahead == 'u') ADVANCE(897); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(994); END_STATE(); case 3478: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(1516); - if (lookahead == 'o') ADVANCE(1376); - if (lookahead == 'u') ADVANCE(1517); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(1588); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3479: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(1516); - if (lookahead == 'o') ADVANCE(1373); - if (lookahead == 'u') ADVANCE(1517); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(4590); END_STATE(); case 3480: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(1530); - if (lookahead == 'o') ADVANCE(1449); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(3313); END_STATE(); case 3481: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(1411); - if (lookahead == 'o') ADVANCE(1977); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(852); END_STATE(); case 3482: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(1515); - if (lookahead == 'i') ADVANCE(1512); - if (lookahead == 'o') ADVANCE(1469); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(1604); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3483: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(1515); - if (lookahead == 'o') ADVANCE(1469); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(1554); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3484: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(1412); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(1451); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3485: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(1544); - if (lookahead == 'o') ADVANCE(1524); + if (lookahead == 'o') ADVANCE(1485); + if (lookahead == 'u') ADVANCE(1411); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1555); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + lookahead == 'a') ADVANCE(1522); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3486: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'f') ADVANCE(1984); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1552); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(4634); + if (lookahead == 'u') ADVANCE(4607); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4648); END_STATE(); case 3487: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'f') ADVANCE(1980); + if (lookahead == 'o') ADVANCE(3364); + if (lookahead == 'u') ADVANCE(3332); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3377); END_STATE(); case 3488: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'h') ADVANCE(1408); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(4620); END_STATE(); case 3489: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'h') ADVANCE(1428); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(3348); END_STATE(); case 3490: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'i') ADVANCE(1378); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(1345); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3491: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'i') ADVANCE(955); + if (lookahead == 'o') ADVANCE(952); + if (lookahead == 'u') ADVANCE(897); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(994); END_STATE(); case 3492: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'i') ADVANCE(1634); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'o') ADVANCE(1490); + if (lookahead == 'u') ADVANCE(1411); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1522); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3493: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'i') ADVANCE(4676); + if (lookahead == 'o') ADVANCE(1456); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3494: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'i') ADVANCE(3401); + if (lookahead == 'o') ADVANCE(1491); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3495: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'i') ADVANCE(1522); - if (lookahead == 'r') ADVANCE(1398); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(960); END_STATE(); case 3496: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'i') ADVANCE(1522); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(1501); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3497: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(1425); - if (lookahead == 'n') ADVANCE(1372); - if (lookahead == 's') ADVANCE(2080); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(2302); + if (lookahead == 'v') ADVANCE(1371); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3498: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(1425); - if (lookahead == 'n') ADVANCE(1372); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(2302); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3499: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(1425); - if (lookahead == 's') ADVANCE(2080); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(4638); END_STATE(); case 3500: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(1425); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(3368); END_STATE(); case 3501: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(1513); - if (lookahead == 'n') ADVANCE(1377); - if (lookahead == 'r') ADVANCE(1497); - if (lookahead == 'x') ADVANCE(1482); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(2294); END_STATE(); case 3502: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(4634); + if (lookahead == 'r') ADVANCE(970); END_STATE(); case 3503: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(3352); + if (lookahead == 'r') ADVANCE(2299); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3504: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(851); + if (lookahead == 'r') ADVANCE(1368); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3505: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(1935); + if (lookahead == 'r') ADVANCE(1464); + if (lookahead == 'x') ADVANCE(1449); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3506: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(1586); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'r') ADVANCE(1514); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3507: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(1948); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 's') ADVANCE(1353); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3508: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(1952); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 't') ADVANCE(839); END_STATE(); case 3509: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(854); + if (lookahead == 't') ADVANCE(4586); END_STATE(); case 3510: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(1588); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 't') ADVANCE(3309); END_STATE(); case 3511: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(1372); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 't') ADVANCE(1549); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3512: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(1377); - if (lookahead == 'r') ADVANCE(1497); - if (lookahead == 'x') ADVANCE(1482); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 't') ADVANCE(1335); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3513: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(1377); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'u') ADVANCE(4607); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4648); END_STATE(); case 3514: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(1449); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'v') ADVANCE(1371); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3515: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(1533); - if (lookahead == 't') ADVANCE(1365); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1522); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3516: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(1533); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4648); END_STATE(); case 3517: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(933); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3377); END_STATE(); case 3518: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(951); - if (lookahead == 'u') ADVANCE(897); if (lookahead == 'A' || lookahead == 'a') ADVANCE(994); END_STATE(); case 3519: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(1621); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1519); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3520: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4635); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4645); END_STATE(); case 3521: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(3353); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3375); END_STATE(); case 3522: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(852); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(989); END_STATE(); case 3523: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(1637); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3524: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(1587); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3525: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(1484); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token3); END_STATE(); case 3526: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(1518); - if (lookahead == 'u') ADVANCE(1443); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1555); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '+') ADVANCE(4612); + if (lookahead == '>') ADVANCE(3225); + if (lookahead == 'n') ADVANCE(4592); + if (lookahead == 'r') ADVANCE(4619); END_STATE(); case 3527: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4679); - if (lookahead == 'u') ADVANCE(4652); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4693); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '+') ADVANCE(4612); + if (lookahead == '>') ADVANCE(3225); + if (lookahead == 'r') ADVANCE(4619); END_STATE(); case 3528: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(3404); - if (lookahead == 'u') ADVANCE(3372); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3417); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '+') ADVANCE(4595); + if (lookahead == '>') ADVANCE(3232); + if (lookahead == 'r') ADVANCE(2294); + if (lookahead == 'u') ADVANCE(4630); END_STATE(); case 3529: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4665); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '+') ADVANCE(4595); + if (lookahead == '>') ADVANCE(3232); + if (lookahead == 'u') ADVANCE(4630); END_STATE(); case 3530: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(3388); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '+') ADVANCE(3337); + if (lookahead == '>') ADVANCE(3225); + if (lookahead == 'n') ADVANCE(3315); + if (lookahead == 'r') ADVANCE(3346); END_STATE(); case 3531: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(1375); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '+') ADVANCE(3319); + if (lookahead == '>') ADVANCE(3232); + if (lookahead == 'r') ADVANCE(2294); + if (lookahead == 'u') ADVANCE(3360); END_STATE(); case 3532: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(952); - if (lookahead == 'u') ADVANCE(897); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(994); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '-') ADVANCE(1851); + if (lookahead == '.') ADVANCE(831); + if (lookahead == '_') ADVANCE(809); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2374); END_STATE(); case 3533: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(1523); - if (lookahead == 'u') ADVANCE(1443); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1555); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '.') ADVANCE(831); + if (lookahead == '_') ADVANCE(809); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2374); END_STATE(); case 3534: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(1489); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '=') ADVANCE(2166); + if (lookahead == '~') ADVANCE(2231); END_STATE(); case 3535: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(1524); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == 'N') ADVANCE(1519); + if (lookahead == 'f') ADVANCE(1951); + if (lookahead == 'n') ADVANCE(1907); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3536: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(960); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == 'N') ADVANCE(4645); + if (lookahead == 'n') ADVANCE(1912); END_STATE(); case 3537: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(1534); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == 'N') ADVANCE(3375); + if (lookahead == 'n') ADVANCE(1913); END_STATE(); case 3538: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(2340); - if (lookahead == 'v') ADVANCE(1401); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == 'N') ADVANCE(989); + if (lookahead == 'n') ADVANCE(1914); END_STATE(); case 3539: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(2340); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '_') ADVANCE(1322); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2351); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3540: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(4683); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '_') ADVANCE(1546); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2352); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3541: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3408); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '_') ADVANCE(832); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); END_STATE(); case 3542: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(2332); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '_') ADVANCE(4582); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); END_STATE(); case 3543: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(970); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == 'a') ADVANCE(1404); + if (lookahead == 'o') ADVANCE(1343); + if (lookahead == 'u') ADVANCE(1484); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3544: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(2337); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == 'a') ADVANCE(4604); END_STATE(); case 3545: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(1398); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == 'a') ADVANCE(3330); END_STATE(); case 3546: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(1497); - if (lookahead == 'x') ADVANCE(1482); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == 'a') ADVANCE(896); END_STATE(); case 3547: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(1547); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == 'a') ADVANCE(1414); + if (lookahead == 'o') ADVANCE(1451); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3548: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(1383); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == 'a') ADVANCE(1483); + if (lookahead == 'o') ADVANCE(1346); + if (lookahead == 'u') ADVANCE(1484); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3549: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(839); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == 'a') ADVANCE(1483); + if (lookahead == 'o') ADVANCE(1343); + if (lookahead == 'u') ADVANCE(1484); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3550: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4631); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == 'a') ADVANCE(1497); + if (lookahead == 'o') ADVANCE(1417); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3551: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(3349); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == 'e') ADVANCE(1381); + if (lookahead == 'o') ADVANCE(1944); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3552: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(1582); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == 'e') ADVANCE(1482); + if (lookahead == 'i') ADVANCE(1479); + if (lookahead == 'o') ADVANCE(1437); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3553: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(1365); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == 'e') ADVANCE(1482); + if (lookahead == 'o') ADVANCE(1437); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3554: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'u') ADVANCE(4652); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4693); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == 'e') ADVANCE(1382); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3555: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'v') ADVANCE(1401); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == 'e') ADVANCE(1511); + if (lookahead == 'o') ADVANCE(1491); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1522); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3556: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1555); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == 'f') ADVANCE(1951); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1519); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3557: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4693); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == 'f') ADVANCE(1947); END_STATE(); case 3558: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3417); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == 'h') ADVANCE(1378); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3559: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(994); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == 'h') ADVANCE(1397); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3560: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1552); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == 'i') ADVANCE(1348); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3561: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4690); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == 'i') ADVANCE(955); END_STATE(); case 3562: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3415); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == 'i') ADVANCE(1601); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3563: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(989); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == 'i') ADVANCE(4631); END_STATE(); case 3564: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == 'i') ADVANCE(3361); END_STATE(); case 3565: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == 'i') ADVANCE(1489); + if (lookahead == 'r') ADVANCE(1368); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3566: ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == 'i') ADVANCE(1489); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3567: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '+') ADVANCE(4657); - if (lookahead == '>') ADVANCE(3265); - if (lookahead == 'n') ADVANCE(4637); - if (lookahead == 'r') ADVANCE(4664); + if (lookahead == 'l') ADVANCE(1394); + if (lookahead == 'n') ADVANCE(1342); + if (lookahead == 's') ADVANCE(2047); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3568: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '+') ADVANCE(4657); - if (lookahead == '>') ADVANCE(3265); - if (lookahead == 'r') ADVANCE(4664); + if (lookahead == 'l') ADVANCE(1394); + if (lookahead == 's') ADVANCE(2047); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3569: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '+') ADVANCE(4640); - if (lookahead == '>') ADVANCE(3272); - if (lookahead == 'r') ADVANCE(2332); - if (lookahead == 'u') ADVANCE(4675); + if (lookahead == 'l') ADVANCE(1394); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3570: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '+') ADVANCE(4640); - if (lookahead == '>') ADVANCE(3272); - if (lookahead == 'u') ADVANCE(4675); + if (lookahead == 'l') ADVANCE(1480); + if (lookahead == 'n') ADVANCE(1347); + if (lookahead == 'r') ADVANCE(1464); + if (lookahead == 'x') ADVANCE(1449); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3571: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '+') ADVANCE(3377); - if (lookahead == '>') ADVANCE(3265); - if (lookahead == 'n') ADVANCE(3355); - if (lookahead == 'r') ADVANCE(3386); + if (lookahead == 'n') ADVANCE(4589); END_STATE(); case 3572: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '+') ADVANCE(3359); - if (lookahead == '>') ADVANCE(3272); - if (lookahead == 'r') ADVANCE(2332); - if (lookahead == 'u') ADVANCE(3400); + if (lookahead == 'n') ADVANCE(3312); END_STATE(); case 3573: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '-') ADVANCE(1884); - if (lookahead == '.') ADVANCE(831); - if (lookahead == '_') ADVANCE(809); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2412); + if (lookahead == 'n') ADVANCE(851); END_STATE(); case 3574: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '.') ADVANCE(831); - if (lookahead == '_') ADVANCE(809); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2412); + if (lookahead == 'n') ADVANCE(1902); END_STATE(); case 3575: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '=') ADVANCE(2204); - if (lookahead == '~') ADVANCE(2269); + if (lookahead == 'n') ADVANCE(1553); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3576: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'N') ADVANCE(1552); - if (lookahead == 'f') ADVANCE(1984); - if (lookahead == 'n') ADVANCE(1940); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'n') ADVANCE(1915); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3577: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'N') ADVANCE(4690); - if (lookahead == 'n') ADVANCE(1945); + if (lookahead == 'n') ADVANCE(1919); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3578: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'N') ADVANCE(3415); - if (lookahead == 'n') ADVANCE(1946); + if (lookahead == 'n') ADVANCE(854); END_STATE(); case 3579: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'N') ADVANCE(989); - if (lookahead == 'n') ADVANCE(1947); + if (lookahead == 'n') ADVANCE(1555); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3580: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(1352); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2389); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'n') ADVANCE(1342); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3581: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(1579); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2390); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'n') ADVANCE(1347); + if (lookahead == 'r') ADVANCE(1464); + if (lookahead == 'x') ADVANCE(1449); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3582: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + if (lookahead == 'n') ADVANCE(1347); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3583: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(4627); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + if (lookahead == 'o') ADVANCE(1417); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3584: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(1435); - if (lookahead == 'o') ADVANCE(1373); - if (lookahead == 'u') ADVANCE(1517); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(1500); + if (lookahead == 't') ADVANCE(1335); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3585: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(4649); + if (lookahead == 'o') ADVANCE(1500); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3586: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(3370); + if (lookahead == 'o') ADVANCE(933); END_STATE(); case 3587: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(896); + if (lookahead == 'o') ADVANCE(951); + if (lookahead == 'u') ADVANCE(897); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(994); END_STATE(); case 3588: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(1446); - if (lookahead == 'o') ADVANCE(1484); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(1588); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3589: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(1516); - if (lookahead == 'o') ADVANCE(1376); - if (lookahead == 'u') ADVANCE(1517); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(4590); END_STATE(); case 3590: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(1516); - if (lookahead == 'o') ADVANCE(1373); - if (lookahead == 'u') ADVANCE(1517); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(3313); END_STATE(); case 3591: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(1530); - if (lookahead == 'o') ADVANCE(1449); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(852); END_STATE(); case 3592: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(1411); - if (lookahead == 'o') ADVANCE(1977); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(1604); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3593: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(1515); - if (lookahead == 'i') ADVANCE(1512); - if (lookahead == 'o') ADVANCE(1469); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(1554); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3594: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(1515); - if (lookahead == 'o') ADVANCE(1469); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(1451); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3595: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(1412); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(1485); + if (lookahead == 'u') ADVANCE(1411); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1522); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3596: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(1544); - if (lookahead == 'o') ADVANCE(1524); + if (lookahead == 'o') ADVANCE(4634); + if (lookahead == 'u') ADVANCE(4607); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1555); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + lookahead == 'a') ADVANCE(4648); END_STATE(); case 3597: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'f') ADVANCE(1984); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1552); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(3364); + if (lookahead == 'u') ADVANCE(3332); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3377); END_STATE(); case 3598: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'f') ADVANCE(1980); + if (lookahead == 'o') ADVANCE(4620); END_STATE(); case 3599: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'h') ADVANCE(1408); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(3348); END_STATE(); case 3600: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'h') ADVANCE(1428); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(1345); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3601: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(1378); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(952); + if (lookahead == 'u') ADVANCE(897); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(994); END_STATE(); case 3602: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(955); + if (lookahead == 'o') ADVANCE(1490); + if (lookahead == 'u') ADVANCE(1411); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1522); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3603: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(1634); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'o') ADVANCE(1456); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3604: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(4676); + if (lookahead == 'o') ADVANCE(1491); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3605: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(3401); + if (lookahead == 'o') ADVANCE(960); END_STATE(); case 3606: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(1522); - if (lookahead == 'r') ADVANCE(1398); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(1501); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3607: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(1522); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(2302); + if (lookahead == 'v') ADVANCE(1371); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3608: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(1425); - if (lookahead == 'n') ADVANCE(1372); - if (lookahead == 's') ADVANCE(2080); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(2302); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3609: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(1425); - if (lookahead == 'n') ADVANCE(1372); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(4638); END_STATE(); case 3610: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(1425); - if (lookahead == 's') ADVANCE(2080); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(3368); END_STATE(); case 3611: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(1425); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(2294); END_STATE(); case 3612: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(1513); - if (lookahead == 'n') ADVANCE(1377); - if (lookahead == 'r') ADVANCE(1497); - if (lookahead == 'x') ADVANCE(1482); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(970); END_STATE(); case 3613: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(4634); + if (lookahead == 'r') ADVANCE(2299); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3614: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(3352); + if (lookahead == 'r') ADVANCE(1368); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3615: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(851); + if (lookahead == 'r') ADVANCE(1464); + if (lookahead == 'x') ADVANCE(1449); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3616: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(1935); + if (lookahead == 'r') ADVANCE(1514); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3617: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(1586); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 's') ADVANCE(1353); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3618: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(1948); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 't') ADVANCE(839); END_STATE(); case 3619: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(1952); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 't') ADVANCE(4586); END_STATE(); case 3620: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(854); + if (lookahead == 't') ADVANCE(3309); END_STATE(); case 3621: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(1588); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 't') ADVANCE(1549); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3622: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(1372); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 't') ADVANCE(1335); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3623: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(1377); - if (lookahead == 'r') ADVANCE(1497); - if (lookahead == 'x') ADVANCE(1482); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'u') ADVANCE(4607); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4648); END_STATE(); case 3624: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(1377); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'v') ADVANCE(1371); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3625: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(1449); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1522); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3626: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(1533); - if (lookahead == 't') ADVANCE(1365); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4648); END_STATE(); case 3627: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(1533); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3377); END_STATE(); case 3628: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(933); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(994); END_STATE(); case 3629: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(951); - if (lookahead == 'u') ADVANCE(897); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(994); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1519); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3630: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(1621); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4645); END_STATE(); case 3631: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(4635); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3375); END_STATE(); case 3632: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(3353); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(989); END_STATE(); case 3633: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(852); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3634: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(1637); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3635: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(1587); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + ACCEPT_TOKEN(aux_sym_unquoted_token4); END_STATE(); case 3636: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(1484); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+') ADVANCE(4612); + if (lookahead == '>') ADVANCE(3225); + if (lookahead == 'n') ADVANCE(4592); + if (lookahead == 'r') ADVANCE(4619); END_STATE(); case 3637: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(1518); - if (lookahead == 'u') ADVANCE(1443); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1555); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+') ADVANCE(4612); + if (lookahead == '>') ADVANCE(3225); + if (lookahead == 'r') ADVANCE(4619); END_STATE(); case 3638: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(4679); - if (lookahead == 'u') ADVANCE(4652); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4693); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+') ADVANCE(4595); + if (lookahead == '>') ADVANCE(3232); + if (lookahead == 'r') ADVANCE(2294); + if (lookahead == 'u') ADVANCE(4630); END_STATE(); case 3639: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(3404); - if (lookahead == 'u') ADVANCE(3372); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3417); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+') ADVANCE(4595); + if (lookahead == '>') ADVANCE(3232); + if (lookahead == 'u') ADVANCE(4630); END_STATE(); case 3640: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(4665); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+') ADVANCE(3337); + if (lookahead == '>') ADVANCE(3225); + if (lookahead == 'n') ADVANCE(3315); + if (lookahead == 'r') ADVANCE(3346); END_STATE(); case 3641: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(3388); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+') ADVANCE(3319); + if (lookahead == '>') ADVANCE(3232); + if (lookahead == 'r') ADVANCE(2294); + if (lookahead == 'u') ADVANCE(3360); END_STATE(); case 3642: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(1375); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '-') ADVANCE(1851); + if (lookahead == '.') ADVANCE(831); + if (lookahead == '_') ADVANCE(809); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2374); END_STATE(); case 3643: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(952); - if (lookahead == 'u') ADVANCE(897); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(994); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '.') ADVANCE(831); + if (lookahead == '_') ADVANCE(809); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2374); END_STATE(); case 3644: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(1523); - if (lookahead == 'u') ADVANCE(1443); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1555); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '=') ADVANCE(2166); + if (lookahead == '~') ADVANCE(2231); END_STATE(); case 3645: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(1489); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '=') ADVANCE(2159); + if (lookahead == '>') ADVANCE(1969); + if (lookahead == '~') ADVANCE(2224); END_STATE(); case 3646: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(1524); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '=') ADVANCE(2159); + if (lookahead == '~') ADVANCE(2224); END_STATE(); case 3647: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(960); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '>') ADVANCE(1969); END_STATE(); case 3648: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(1534); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'N') ADVANCE(1519); + if (lookahead == 'f') ADVANCE(1951); + if (lookahead == 'n') ADVANCE(1907); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3649: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2340); - if (lookahead == 'v') ADVANCE(1401); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'N') ADVANCE(4645); + if (lookahead == 'n') ADVANCE(1912); END_STATE(); case 3650: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2340); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'N') ADVANCE(3375); + if (lookahead == 'n') ADVANCE(1913); END_STATE(); case 3651: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(4683); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'N') ADVANCE(989); + if (lookahead == 'n') ADVANCE(1914); END_STATE(); case 3652: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(3408); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '_') ADVANCE(1322); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2351); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3653: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2332); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '_') ADVANCE(1546); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2352); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3654: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(970); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '_') ADVANCE(832); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); END_STATE(); case 3655: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2337); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '_') ADVANCE(4582); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); END_STATE(); case 3656: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(1398); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'a') ADVANCE(1404); + if (lookahead == 'o') ADVANCE(1343); + if (lookahead == 'u') ADVANCE(1484); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3657: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(1497); - if (lookahead == 'x') ADVANCE(1482); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'a') ADVANCE(4604); END_STATE(); case 3658: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(1547); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'a') ADVANCE(3330); END_STATE(); case 3659: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 's') ADVANCE(1383); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'a') ADVANCE(896); END_STATE(); case 3660: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(839); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'a') ADVANCE(1414); + if (lookahead == 'o') ADVANCE(1451); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3661: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(4631); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'a') ADVANCE(1483); + if (lookahead == 'o') ADVANCE(1346); + if (lookahead == 'u') ADVANCE(1484); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3662: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(3349); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'a') ADVANCE(1483); + if (lookahead == 'o') ADVANCE(1343); + if (lookahead == 'u') ADVANCE(1484); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3663: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(1582); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'a') ADVANCE(1497); + if (lookahead == 'o') ADVANCE(1417); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3664: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(1365); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'e') ADVANCE(1381); + if (lookahead == 'o') ADVANCE(1944); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3665: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'u') ADVANCE(4652); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4693); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'e') ADVANCE(1482); + if (lookahead == 'i') ADVANCE(1479); + if (lookahead == 'o') ADVANCE(1437); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3666: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'v') ADVANCE(1401); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'e') ADVANCE(1482); + if (lookahead == 'o') ADVANCE(1437); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3667: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1555); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'e') ADVANCE(1382); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3668: - ACCEPT_TOKEN(aux_sym_unquoted_token3); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'e') ADVANCE(1511); + if (lookahead == 'o') ADVANCE(1491); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4693); + lookahead == 'a') ADVANCE(1522); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3669: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3417); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'f') ADVANCE(1951); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1519); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3670: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(994); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'f') ADVANCE(1947); END_STATE(); case 3671: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1552); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'h') ADVANCE(1378); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3672: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4690); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'h') ADVANCE(1397); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3673: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3415); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'i') ADVANCE(1348); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3674: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(989); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'i') ADVANCE(955); END_STATE(); case 3675: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'i') ADVANCE(1601); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3676: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'i') ADVANCE(4631); END_STATE(); case 3677: ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'i') ADVANCE(3361); END_STATE(); case 3678: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4657); - if (lookahead == '>') ADVANCE(3265); - if (lookahead == 'n') ADVANCE(4637); - if (lookahead == 'r') ADVANCE(4664); + if (lookahead == 'i') ADVANCE(1489); + if (lookahead == 'r') ADVANCE(1368); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3679: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4657); - if (lookahead == '>') ADVANCE(3265); - if (lookahead == 'r') ADVANCE(4664); + if (lookahead == 'i') ADVANCE(1489); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3680: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4640); - if (lookahead == '>') ADVANCE(3272); - if (lookahead == 'r') ADVANCE(2332); - if (lookahead == 'u') ADVANCE(4675); + if (lookahead == 'l') ADVANCE(1394); + if (lookahead == 'n') ADVANCE(1342); + if (lookahead == 's') ADVANCE(2047); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3681: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4640); - if (lookahead == '>') ADVANCE(3272); - if (lookahead == 'u') ADVANCE(4675); + if (lookahead == 'l') ADVANCE(1394); + if (lookahead == 's') ADVANCE(2047); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3682: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(3377); - if (lookahead == '>') ADVANCE(3265); - if (lookahead == 'n') ADVANCE(3355); - if (lookahead == 'r') ADVANCE(3386); + if (lookahead == 'l') ADVANCE(1394); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3683: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(3359); - if (lookahead == '>') ADVANCE(3272); - if (lookahead == 'r') ADVANCE(2332); - if (lookahead == 'u') ADVANCE(3400); + if (lookahead == 'l') ADVANCE(1480); + if (lookahead == 'n') ADVANCE(1347); + if (lookahead == 'r') ADVANCE(1464); + if (lookahead == 'x') ADVANCE(1449); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3684: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(1884); - if (lookahead == '.') ADVANCE(831); - if (lookahead == '_') ADVANCE(809); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2412); + if (lookahead == 'n') ADVANCE(4589); END_STATE(); case 3685: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '.') ADVANCE(831); - if (lookahead == '_') ADVANCE(809); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2412); + if (lookahead == 'n') ADVANCE(3312); END_STATE(); case 3686: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '=') ADVANCE(2204); - if (lookahead == '~') ADVANCE(2269); + if (lookahead == 'n') ADVANCE(851); END_STATE(); case 3687: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '=') ADVANCE(2197); - if (lookahead == '>') ADVANCE(2002); - if (lookahead == '~') ADVANCE(2262); + if (lookahead == 'n') ADVANCE(1902); END_STATE(); case 3688: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '=') ADVANCE(2197); - if (lookahead == '~') ADVANCE(2262); + if (lookahead == 'n') ADVANCE(1553); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3689: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(2002); + if (lookahead == 'n') ADVANCE(1915); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3690: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N') ADVANCE(1552); - if (lookahead == 'f') ADVANCE(1984); - if (lookahead == 'n') ADVANCE(1940); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'n') ADVANCE(1919); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3691: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N') ADVANCE(4690); - if (lookahead == 'n') ADVANCE(1945); + if (lookahead == 'n') ADVANCE(854); END_STATE(); case 3692: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N') ADVANCE(3415); - if (lookahead == 'n') ADVANCE(1946); + if (lookahead == 'n') ADVANCE(1555); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3693: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N') ADVANCE(989); - if (lookahead == 'n') ADVANCE(1947); + if (lookahead == 'n') ADVANCE(1342); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3694: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(1352); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2389); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'n') ADVANCE(1347); + if (lookahead == 'r') ADVANCE(1464); + if (lookahead == 'x') ADVANCE(1449); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3695: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(1579); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2390); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'n') ADVANCE(1347); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3696: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + if (lookahead == 'o') ADVANCE(1417); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3697: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4627); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + if (lookahead == 'o') ADVANCE(1500); + if (lookahead == 't') ADVANCE(1335); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3698: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(1435); - if (lookahead == 'o') ADVANCE(1373); - if (lookahead == 'u') ADVANCE(1517); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(1500); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3699: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4649); + if (lookahead == 'o') ADVANCE(933); END_STATE(); case 3700: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(3370); + if (lookahead == 'o') ADVANCE(951); + if (lookahead == 'u') ADVANCE(897); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(994); END_STATE(); case 3701: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(896); + if (lookahead == 'o') ADVANCE(1588); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3702: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(1446); - if (lookahead == 'o') ADVANCE(1484); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(4590); END_STATE(); case 3703: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(1516); - if (lookahead == 'o') ADVANCE(1376); - if (lookahead == 'u') ADVANCE(1517); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(3313); END_STATE(); case 3704: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(1516); - if (lookahead == 'o') ADVANCE(1373); - if (lookahead == 'u') ADVANCE(1517); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(852); END_STATE(); case 3705: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(1530); - if (lookahead == 'o') ADVANCE(1449); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(1604); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3706: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(1411); - if (lookahead == 'o') ADVANCE(1977); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(1554); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3707: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(1515); - if (lookahead == 'i') ADVANCE(1512); - if (lookahead == 'o') ADVANCE(1469); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(1451); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3708: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(1515); - if (lookahead == 'o') ADVANCE(1469); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(1485); + if (lookahead == 'u') ADVANCE(1411); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1522); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3709: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(1412); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(4634); + if (lookahead == 'u') ADVANCE(4607); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4648); END_STATE(); case 3710: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(1544); - if (lookahead == 'o') ADVANCE(1524); + if (lookahead == 'o') ADVANCE(3364); + if (lookahead == 'u') ADVANCE(3332); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1555); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + lookahead == 'a') ADVANCE(3377); END_STATE(); case 3711: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'f') ADVANCE(1984); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1552); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(4620); END_STATE(); case 3712: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'f') ADVANCE(1980); + if (lookahead == 'o') ADVANCE(3348); END_STATE(); case 3713: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'h') ADVANCE(1408); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(1345); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3714: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'h') ADVANCE(1428); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(952); + if (lookahead == 'u') ADVANCE(897); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(994); END_STATE(); case 3715: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(1378); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(1490); + if (lookahead == 'u') ADVANCE(1411); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1522); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3716: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(955); + if (lookahead == 'o') ADVANCE(1456); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3717: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(1634); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'o') ADVANCE(1491); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3718: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4676); + if (lookahead == 'o') ADVANCE(960); END_STATE(); case 3719: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(3401); + if (lookahead == 'r') ADVANCE(1501); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3720: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(1522); - if (lookahead == 'r') ADVANCE(1398); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(2302); + if (lookahead == 'v') ADVANCE(1371); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3721: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(1522); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(2302); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3722: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(1425); - if (lookahead == 'n') ADVANCE(1372); - if (lookahead == 's') ADVANCE(2080); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(4638); END_STATE(); case 3723: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(1425); - if (lookahead == 'n') ADVANCE(1372); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(3368); END_STATE(); case 3724: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(1425); - if (lookahead == 's') ADVANCE(2080); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(2294); END_STATE(); case 3725: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(1425); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(970); END_STATE(); case 3726: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(1513); - if (lookahead == 'n') ADVANCE(1377); - if (lookahead == 'r') ADVANCE(1497); - if (lookahead == 'x') ADVANCE(1482); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(2299); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3727: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(4634); + if (lookahead == 'r') ADVANCE(1368); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3728: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(3352); + if (lookahead == 'r') ADVANCE(1464); + if (lookahead == 'x') ADVANCE(1449); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3729: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(851); + if (lookahead == 'r') ADVANCE(1514); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3730: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(1935); + if (lookahead == 's') ADVANCE(1353); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3731: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(1586); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 't') ADVANCE(839); END_STATE(); case 3732: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(1948); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 't') ADVANCE(4586); END_STATE(); case 3733: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(1952); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 't') ADVANCE(3309); END_STATE(); case 3734: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(854); + if (lookahead == 't') ADVANCE(1549); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3735: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(1588); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 't') ADVANCE(1335); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3736: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(1372); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'u') ADVANCE(4607); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4648); END_STATE(); case 3737: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(1377); - if (lookahead == 'r') ADVANCE(1497); - if (lookahead == 'x') ADVANCE(1482); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'v') ADVANCE(1371); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3738: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(1377); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1522); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3739: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(1449); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4648); END_STATE(); case 3740: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(1533); - if (lookahead == 't') ADVANCE(1365); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3377); END_STATE(); case 3741: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(1533); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(994); END_STATE(); case 3742: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(933); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1519); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3743: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(951); - if (lookahead == 'u') ADVANCE(897); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(994); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4645); END_STATE(); case 3744: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(1621); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3375); END_STATE(); case 3745: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4635); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(989); END_STATE(); case 3746: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(3353); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3747: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(852); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3748: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(1637); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + ACCEPT_TOKEN(aux_sym_unquoted_token5); END_STATE(); case 3749: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(1587); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + ADVANCE_MAP( + '+', 4612, + '>', 3225, + 'I', 4644, + 'i', 4644, + 'n', 4592, + 'r', 4619, + 'B', 2469, + 'b', 2469, + ); END_STATE(); case 3750: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(1484); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == '+') ADVANCE(4612); + if (lookahead == '>') ADVANCE(3225); + if (lookahead == 'I') ADVANCE(4644); + if (lookahead == 'i') ADVANCE(4644); + if (lookahead == 'r') ADVANCE(4619); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2469); END_STATE(); case 3751: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(1518); - if (lookahead == 'u') ADVANCE(1443); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1555); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == '+') ADVANCE(4612); + if (lookahead == '>') ADVANCE(3225); + if (lookahead == 'n') ADVANCE(4592); + if (lookahead == 'r') ADVANCE(4619); END_STATE(); case 3752: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4679); - if (lookahead == 'u') ADVANCE(4652); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4693); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == '+') ADVANCE(4612); + if (lookahead == '>') ADVANCE(3225); + if (lookahead == 'r') ADVANCE(4619); END_STATE(); case 3753: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(3404); - if (lookahead == 'u') ADVANCE(3372); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3417); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == '+') ADVANCE(4595); + if (lookahead == '>') ADVANCE(3232); + if (lookahead == 'r') ADVANCE(2294); + if (lookahead == 'u') ADVANCE(4630); END_STATE(); case 3754: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4665); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == '+') ADVANCE(4595); + if (lookahead == '>') ADVANCE(3232); + if (lookahead == 'u') ADVANCE(4630); END_STATE(); case 3755: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(3388); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + ADVANCE_MAP( + '+', 3337, + '>', 3225, + 'I', 3374, + 'i', 3374, + 'n', 3315, + 'r', 3346, + 'B', 2469, + 'b', 2469, + ); END_STATE(); case 3756: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(1375); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == '+') ADVANCE(3337); + if (lookahead == '>') ADVANCE(3225); + if (lookahead == 'n') ADVANCE(3315); + if (lookahead == 'r') ADVANCE(3346); END_STATE(); case 3757: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(952); - if (lookahead == 'u') ADVANCE(897); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(994); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == '+') ADVANCE(3319); + if (lookahead == '>') ADVANCE(3232); + if (lookahead == 'r') ADVANCE(2294); + if (lookahead == 'u') ADVANCE(3360); END_STATE(); case 3758: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(1523); - if (lookahead == 'u') ADVANCE(1443); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1555); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + ADVANCE_MAP( + '+', 4579, + '-', 4581, + '>', 3225, + 'I', 4644, + '_', 4581, + 'i', 4644, + 'n', 4592, + 'r', 4619, + 'B', 2469, + 'b', 2469, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2370); END_STATE(); case 3759: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(1489); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + ADVANCE_MAP( + '+', 4579, + '-', 4581, + '>', 3225, + 'I', 4644, + '_', 4581, + 'i', 4644, + 'r', 4619, + 'B', 2469, + 'b', 2469, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2370); END_STATE(); case 3760: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(1524); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + ADVANCE_MAP( + '+', 3301, + '-', 3303, + '>', 3225, + 'I', 3374, + '_', 3303, + 'i', 3374, + 'n', 3315, + 'r', 3346, + 'B', 2469, + 'b', 2469, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2370); END_STATE(); case 3761: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(960); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + ADVANCE_MAP( + '+', 830, + '-', 1321, + 'I', 1518, + '_', 1321, + 'i', 1518, + 'n', 1347, + 'r', 1464, + 'x', 1449, + 'B', 2478, + 'b', 2478, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2369); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3762: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(1534); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + ADVANCE_MAP( + '+', 830, + '-', 1321, + 'I', 1518, + '_', 1321, + 'i', 1518, + 'n', 1347, + 'B', 2478, + 'b', 2478, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2369); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3763: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(2340); - if (lookahead == 'v') ADVANCE(1401); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + ADVANCE_MAP( + '+', 830, + '-', 1321, + 'I', 1518, + '_', 1321, + 'i', 1518, + 'r', 1464, + 'x', 1449, + 'B', 2478, + 'b', 2478, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2369); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3764: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(2340); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == '+') ADVANCE(830); + if (lookahead == '-') ADVANCE(1321); + if (lookahead == 'I') ADVANCE(1518); + if (lookahead == '_') ADVANCE(1321); + if (lookahead == 'i') ADVANCE(1518); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2478); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2369); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3765: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4683); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == '+') ADVANCE(830); + if (lookahead == '-') ADVANCE(1321); + if (lookahead == 'I') ADVANCE(1518); + if (lookahead == '_') ADVANCE(1321); + if (lookahead == 'i') ADVANCE(1337); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2478); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2369); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3766: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3408); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + ADVANCE_MAP( + '+', 3185, + '-', 1321, + 'I', 1518, + '_', 1321, + 'i', 1518, + 'l', 1480, + 'n', 1347, + 'r', 1464, + 'x', 1449, + 'B', 2478, + 'b', 2478, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2369); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3767: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(2332); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == '+') ADVANCE(3185); + if (lookahead == '-') ADVANCE(1321); + if (lookahead == 'I') ADVANCE(1518); + if (lookahead == '_') ADVANCE(1321); + if (lookahead == 'i') ADVANCE(1337); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2478); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2369); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3768: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(970); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == '-') ADVANCE(1851); END_STATE(); case 3769: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(2337); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == '.') ADVANCE(825); + if (lookahead == '_') ADVANCE(805); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2438); END_STATE(); case 3770: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(1398); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == '.') ADVANCE(807); END_STATE(); case 3771: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(1497); - if (lookahead == 'x') ADVANCE(1482); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == '=') ADVANCE(2166); + if (lookahead == '~') ADVANCE(2231); END_STATE(); case 3772: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(1547); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == '=') ADVANCE(2159); + if (lookahead == '>') ADVANCE(1969); + if (lookahead == '~') ADVANCE(2224); END_STATE(); case 3773: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(1383); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == '=') ADVANCE(2159); + if (lookahead == '~') ADVANCE(2224); END_STATE(); case 3774: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(839); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == '>') ADVANCE(1969); END_STATE(); case 3775: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4631); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + ADVANCE_MAP( + 'I', 1518, + 'a', 1404, + 'i', 1420, + 'o', 1343, + 's', 2482, + 'u', 1484, + 'B', 2478, + 'b', 2478, + ); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3776: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(3349); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + ADVANCE_MAP( + 'I', 1518, + 'a', 1483, + 'i', 1420, + 'o', 1346, + 's', 2482, + 'u', 1484, + 'B', 2478, + 'b', 2478, + ); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3777: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(1582); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + ADVANCE_MAP( + 'I', 1518, + 'a', 1483, + 'i', 1420, + 'o', 1343, + 's', 2482, + 'u', 1484, + 'B', 2478, + 'b', 2478, + ); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3778: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(1365); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + ADVANCE_MAP( + 'I', 1518, + 'i', 1518, + 'l', 1480, + 'n', 1347, + 'r', 1464, + 'x', 1449, + 'B', 2478, + 'b', 2478, + ); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3779: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4652); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4693); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == 'I') ADVANCE(1518); + if (lookahead == 'i') ADVANCE(1518); + if (lookahead == 'n') ADVANCE(1347); + if (lookahead == 'r') ADVANCE(1464); + if (lookahead == 'x') ADVANCE(1449); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2478); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3780: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'v') ADVANCE(1401); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == 'I') ADVANCE(1518); + if (lookahead == 'i') ADVANCE(1518); + if (lookahead == 'n') ADVANCE(1347); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2478); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3781: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1555); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == 'I') ADVANCE(1518); + if (lookahead == 'i') ADVANCE(1518); + if (lookahead == 'r') ADVANCE(1501); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2478); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3782: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4693); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == 'I') ADVANCE(1518); + if (lookahead == 'i') ADVANCE(1518); + if (lookahead == 'r') ADVANCE(1464); + if (lookahead == 'x') ADVANCE(1449); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2478); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3783: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3417); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == 'I') ADVANCE(1518); + if (lookahead == 'i') ADVANCE(1518); + if (lookahead == 'r') ADVANCE(1514); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2478); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3784: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(994); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == 'I') ADVANCE(1518); + if (lookahead == 'i') ADVANCE(1518); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2478); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3785: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1552); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == 'I') ADVANCE(1518); + if (lookahead == 'i') ADVANCE(1337); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2478); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3786: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4690); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == 'I') ADVANCE(1518); + if (lookahead == 'i') ADVANCE(1420); + if (lookahead == 'o') ADVANCE(1345); + if (lookahead == 's') ADVANCE(2482); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2478); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3787: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3415); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == 'I') ADVANCE(1518); + if (lookahead == 'i') ADVANCE(1420); + if (lookahead == 's') ADVANCE(2482); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2478); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3788: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(989); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == 'I') ADVANCE(4644); + if (lookahead == '_') ADVANCE(4581); + if (lookahead == 'i') ADVANCE(4587); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4581); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2469); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2370); END_STATE(); case 3789: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == 'I') ADVANCE(4644); + if (lookahead == 'i') ADVANCE(4644); + if (lookahead == 'r') ADVANCE(4638); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2469); END_STATE(); case 3790: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == 'I') ADVANCE(4644); + if (lookahead == 'i') ADVANCE(4644); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2469); END_STATE(); case 3791: ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (lookahead == 'I') ADVANCE(4644); + if (lookahead == 'i') ADVANCE(4587); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2469); END_STATE(); case 3792: ACCEPT_TOKEN(aux_sym_unquoted_token5); - ADVANCE_MAP( - '+', 4657, - '>', 3265, - 'I', 4689, - 'i', 4689, - 'n', 4637, - 'r', 4664, - 'B', 2507, - 'b', 2507, - ); + if (lookahead == 'I') ADVANCE(4644); + if (lookahead == 'i') ADVANCE(4609); + if (lookahead == 'o') ADVANCE(4590); + if (lookahead == 's') ADVANCE(2479); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2469); END_STATE(); case 3793: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '+') ADVANCE(4657); - if (lookahead == '>') ADVANCE(3265); - if (lookahead == 'I') ADVANCE(4689); - if (lookahead == 'i') ADVANCE(4689); - if (lookahead == 'r') ADVANCE(4664); + if (lookahead == 'I') ADVANCE(4644); + if (lookahead == 'i') ADVANCE(4609); + if (lookahead == 's') ADVANCE(2479); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2507); + lookahead == 'b') ADVANCE(2469); END_STATE(); case 3794: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '+') ADVANCE(4657); - if (lookahead == '>') ADVANCE(3265); - if (lookahead == 'n') ADVANCE(4637); - if (lookahead == 'r') ADVANCE(4664); + if (lookahead == 'I') ADVANCE(3374); + if (lookahead == '_') ADVANCE(3303); + if (lookahead == 'i') ADVANCE(3310); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3303); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2469); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2370); END_STATE(); case 3795: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '+') ADVANCE(4657); - if (lookahead == '>') ADVANCE(3265); - if (lookahead == 'r') ADVANCE(4664); + if (lookahead == 'I') ADVANCE(3374); + if (lookahead == 'i') ADVANCE(3374); + if (lookahead == 'r') ADVANCE(3368); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2469); END_STATE(); case 3796: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '+') ADVANCE(4640); - if (lookahead == '>') ADVANCE(3272); - if (lookahead == 'r') ADVANCE(2332); - if (lookahead == 'u') ADVANCE(4675); + if (lookahead == 'I') ADVANCE(3374); + if (lookahead == 'i') ADVANCE(3374); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2469); END_STATE(); case 3797: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '+') ADVANCE(4640); - if (lookahead == '>') ADVANCE(3272); - if (lookahead == 'u') ADVANCE(4675); + if (lookahead == 'I') ADVANCE(3374); + if (lookahead == 'i') ADVANCE(3310); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2469); END_STATE(); case 3798: ACCEPT_TOKEN(aux_sym_unquoted_token5); - ADVANCE_MAP( - '+', 3377, - '>', 3265, - 'I', 3414, - 'i', 3414, - 'n', 3355, - 'r', 3386, - 'B', 2507, - 'b', 2507, - ); + if (lookahead == 'I') ADVANCE(3374); + if (lookahead == 'i') ADVANCE(3333); + if (lookahead == 'o') ADVANCE(3313); + if (lookahead == 's') ADVANCE(2479); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2469); END_STATE(); case 3799: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '+') ADVANCE(3377); - if (lookahead == '>') ADVANCE(3265); - if (lookahead == 'n') ADVANCE(3355); - if (lookahead == 'r') ADVANCE(3386); + ADVANCE_MAP( + 'I', 987, + '_', 830, + 'i', 987, + 'n', 854, + '+', 830, + '-', 830, + 'B', 2469, + 'b', 2469, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2370); END_STATE(); case 3800: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '+') ADVANCE(3359); - if (lookahead == '>') ADVANCE(3272); - if (lookahead == 'r') ADVANCE(2332); - if (lookahead == 'u') ADVANCE(3400); + if (lookahead == 'I') ADVANCE(987); + if (lookahead == '_') ADVANCE(830); + if (lookahead == 'i') ADVANCE(987); + if (lookahead == '+' || + lookahead == '-') ADVANCE(830); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2469); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2370); END_STATE(); case 3801: ACCEPT_TOKEN(aux_sym_unquoted_token5); - ADVANCE_MAP( - '+', 4624, - '-', 4626, - '>', 3265, - 'I', 4689, - '_', 4626, - 'i', 4689, - 'n', 4637, - 'r', 4664, - 'B', 2507, - 'b', 2507, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2408); + if (lookahead == 'I') ADVANCE(987); + if (lookahead == '_') ADVANCE(830); + if (lookahead == 'i') ADVANCE(846); + if (lookahead == '+' || + lookahead == '-') ADVANCE(830); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2469); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2370); END_STATE(); case 3802: ACCEPT_TOKEN(aux_sym_unquoted_token5); - ADVANCE_MAP( - '+', 4624, - '-', 4626, - '>', 3265, - 'I', 4689, - '_', 4626, - 'i', 4689, - 'r', 4664, - 'B', 2507, - 'b', 2507, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2408); + if (lookahead == 'I') ADVANCE(987); + if (lookahead == 'i') ADVANCE(987); + if (lookahead == 'n') ADVANCE(854); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2469); END_STATE(); case 3803: ACCEPT_TOKEN(aux_sym_unquoted_token5); - ADVANCE_MAP( - '+', 3341, - '-', 3343, - '>', 3265, - 'I', 3414, - '_', 3343, - 'i', 3414, - 'n', 3355, - 'r', 3386, - 'B', 2507, - 'b', 2507, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2408); + if (lookahead == 'I') ADVANCE(987); + if (lookahead == 'i') ADVANCE(987); + if (lookahead == 'r') ADVANCE(970); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2469); END_STATE(); case 3804: ACCEPT_TOKEN(aux_sym_unquoted_token5); - ADVANCE_MAP( - '+', 830, - '-', 1351, - 'I', 1551, - '_', 1351, - 'i', 1551, - 'n', 1377, - 'r', 1497, - 'x', 1482, - 'B', 2516, - 'b', 2516, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2407); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'I') ADVANCE(987); + if (lookahead == 'i') ADVANCE(987); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2469); END_STATE(); case 3805: ACCEPT_TOKEN(aux_sym_unquoted_token5); - ADVANCE_MAP( - '+', 830, - '-', 1351, - 'I', 1551, - '_', 1351, - 'i', 1551, - 'n', 1377, - 'B', 2516, - 'b', 2516, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2407); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'I') ADVANCE(987); + if (lookahead == 'i') ADVANCE(846); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2469); END_STATE(); case 3806: ACCEPT_TOKEN(aux_sym_unquoted_token5); - ADVANCE_MAP( - '+', 830, - '-', 1351, - 'I', 1551, - '_', 1351, - 'i', 1551, - 'r', 1497, - 'x', 1482, - 'B', 2516, - 'b', 2516, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2407); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'I') ADVANCE(987); + if (lookahead == 'i') ADVANCE(904); + if (lookahead == 'o') ADVANCE(852); + if (lookahead == 's') ADVANCE(2479); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2469); END_STATE(); case 3807: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '+') ADVANCE(830); - if (lookahead == '-') ADVANCE(1351); - if (lookahead == 'I') ADVANCE(1551); - if (lookahead == '_') ADVANCE(1351); - if (lookahead == 'i') ADVANCE(1551); + if (lookahead == 'I') ADVANCE(987); + if (lookahead == 'i') ADVANCE(904); + if (lookahead == 's') ADVANCE(2479); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2516); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2407); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + lookahead == 'b') ADVANCE(2469); END_STATE(); case 3808: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '+') ADVANCE(830); - if (lookahead == '-') ADVANCE(1351); - if (lookahead == 'I') ADVANCE(1551); - if (lookahead == '_') ADVANCE(1351); - if (lookahead == 'i') ADVANCE(1367); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2516); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2407); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ADVANCE_MAP( + 'I', 1611, + '_', 1545, + 'i', 1611, + 'n', 1555, + '+', 830, + '-', 830, + 'B', 2477, + 'b', 2477, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2371); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1620); END_STATE(); case 3809: ACCEPT_TOKEN(aux_sym_unquoted_token5); - ADVANCE_MAP( - '+', 3225, - '-', 1351, - 'I', 1551, - '_', 1351, - 'i', 1551, - 'l', 1513, - 'n', 1377, - 'r', 1497, - 'x', 1482, - 'B', 2516, - 'b', 2516, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2407); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'I') ADVANCE(1611); + if (lookahead == '_') ADVANCE(1545); + if (lookahead == 'i') ADVANCE(1611); + if (lookahead == '+' || + lookahead == '-') ADVANCE(830); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2477); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2371); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1620); END_STATE(); case 3810: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '+') ADVANCE(3225); - if (lookahead == '-') ADVANCE(1351); - if (lookahead == 'I') ADVANCE(1551); - if (lookahead == '_') ADVANCE(1351); - if (lookahead == 'i') ADVANCE(1367); + if (lookahead == 'I') ADVANCE(1611); + if (lookahead == '_') ADVANCE(1545); + if (lookahead == 'i') ADVANCE(1551); + if (lookahead == '+' || + lookahead == '-') ADVANCE(830); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2516); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2407); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + lookahead == 'b') ADVANCE(2477); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2371); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1620); END_STATE(); case 3811: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '-') ADVANCE(1884); + if (lookahead == 'I') ADVANCE(1611); + if (lookahead == 'i') ADVANCE(1611); + if (lookahead == 'n') ADVANCE(1555); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2477); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3812: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '.') ADVANCE(825); - if (lookahead == '_') ADVANCE(805); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2476); + if (lookahead == 'I') ADVANCE(1611); + if (lookahead == 'i') ADVANCE(1611); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2477); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3813: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '.') ADVANCE(807); + if (lookahead == 'I') ADVANCE(1611); + if (lookahead == 'i') ADVANCE(1551); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2477); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3814: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '=') ADVANCE(2204); - if (lookahead == '~') ADVANCE(2269); + if (lookahead == 'I') ADVANCE(1611); + if (lookahead == 'i') ADVANCE(1573); + if (lookahead == 'o') ADVANCE(1554); + if (lookahead == 's') ADVANCE(2481); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2477); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3815: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '=') ADVANCE(2197); - if (lookahead == '>') ADVANCE(2002); - if (lookahead == '~') ADVANCE(2262); + if (lookahead == 'I') ADVANCE(1611); + if (lookahead == 'i') ADVANCE(1573); + if (lookahead == 's') ADVANCE(2481); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2477); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3816: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '=') ADVANCE(2197); - if (lookahead == '~') ADVANCE(2262); + if (lookahead == 'N') ADVANCE(1519); + if (lookahead == 'f') ADVANCE(1951); + if (lookahead == 'n') ADVANCE(1907); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3817: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '>') ADVANCE(2002); + if (lookahead == 'N') ADVANCE(4645); + if (lookahead == 'n') ADVANCE(1912); END_STATE(); case 3818: ACCEPT_TOKEN(aux_sym_unquoted_token5); - ADVANCE_MAP( - 'I', 1551, - 'a', 1435, - 'i', 1452, - 'o', 1373, - 's', 2520, - 'u', 1517, - 'B', 2516, - 'b', 2516, - ); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'N') ADVANCE(3375); + if (lookahead == 'n') ADVANCE(1913); END_STATE(); case 3819: ACCEPT_TOKEN(aux_sym_unquoted_token5); - ADVANCE_MAP( - 'I', 1551, - 'a', 1516, - 'i', 1452, - 'o', 1376, - 's', 2520, - 'u', 1517, - 'B', 2516, - 'b', 2516, - ); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'N') ADVANCE(989); + if (lookahead == 'n') ADVANCE(1914); END_STATE(); case 3820: ACCEPT_TOKEN(aux_sym_unquoted_token5); - ADVANCE_MAP( - 'I', 1551, - 'a', 1516, - 'i', 1452, - 'o', 1373, - 's', 2520, - 'u', 1517, - 'B', 2516, - 'b', 2516, - ); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == '_') ADVANCE(1320); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1320); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3821: ACCEPT_TOKEN(aux_sym_unquoted_token5); - ADVANCE_MAP( - 'I', 1551, - 'i', 1551, - 'l', 1513, - 'n', 1377, - 'r', 1497, - 'x', 1482, - 'B', 2516, - 'b', 2516, - ); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == '_') ADVANCE(4577); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2437); END_STATE(); case 3822: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'I') ADVANCE(1551); - if (lookahead == 'i') ADVANCE(1551); - if (lookahead == 'n') ADVANCE(1377); - if (lookahead == 'r') ADVANCE(1497); - if (lookahead == 'x') ADVANCE(1482); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2516); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == '_') ADVANCE(1322); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2351); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3823: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'I') ADVANCE(1551); - if (lookahead == 'i') ADVANCE(1551); - if (lookahead == 'n') ADVANCE(1377); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2516); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == '_') ADVANCE(1546); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2352); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3824: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'I') ADVANCE(1551); - if (lookahead == 'i') ADVANCE(1551); - if (lookahead == 'r') ADVANCE(1534); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2516); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == '_') ADVANCE(832); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); END_STATE(); case 3825: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'I') ADVANCE(1551); - if (lookahead == 'i') ADVANCE(1551); - if (lookahead == 'r') ADVANCE(1497); - if (lookahead == 'x') ADVANCE(1482); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2516); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == '_') ADVANCE(4582); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); END_STATE(); case 3826: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'I') ADVANCE(1551); - if (lookahead == 'i') ADVANCE(1551); - if (lookahead == 'r') ADVANCE(1547); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2516); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == '_') ADVANCE(833); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2437); END_STATE(); case 3827: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'I') ADVANCE(1551); - if (lookahead == 'i') ADVANCE(1551); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2516); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == '_') ADVANCE(2437); + if (lookahead == 'b') ADVANCE(2464); + if (lookahead == 'o') ADVANCE(2485); + if (lookahead == 'x') ADVANCE(2492); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2426); END_STATE(); case 3828: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'I') ADVANCE(1551); - if (lookahead == 'i') ADVANCE(1367); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2516); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == '_') ADVANCE(2437); + if (lookahead == 'b') ADVANCE(2464); + if (lookahead == 'o') ADVANCE(2485); + if (lookahead == 'x') ADVANCE(2492); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2430); END_STATE(); case 3829: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'I') ADVANCE(1551); - if (lookahead == 'i') ADVANCE(1452); - if (lookahead == 'o') ADVANCE(1375); - if (lookahead == 's') ADVANCE(2520); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2516); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == '_') ADVANCE(2437); + if (lookahead == 'b') ADVANCE(2464); + if (lookahead == 'o') ADVANCE(2485); + if (lookahead == 'x') ADVANCE(2492); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2432); END_STATE(); case 3830: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'I') ADVANCE(1551); - if (lookahead == 'i') ADVANCE(1452); - if (lookahead == 's') ADVANCE(2520); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2516); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == '_') ADVANCE(2437); + if (lookahead == 'b') ADVANCE(3192); + if (lookahead == 'o') ADVANCE(3193); + if (lookahead == 'x') ADVANCE(3203); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2437); END_STATE(); case 3831: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'I') ADVANCE(4689); - if (lookahead == '_') ADVANCE(4626); - if (lookahead == 'i') ADVANCE(4632); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4626); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2507); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2408); + if (lookahead == '_') ADVANCE(2437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2426); END_STATE(); case 3832: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'I') ADVANCE(4689); - if (lookahead == 'i') ADVANCE(4689); - if (lookahead == 'r') ADVANCE(4683); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2507); + if (lookahead == '_') ADVANCE(2437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2430); END_STATE(); case 3833: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'I') ADVANCE(4689); - if (lookahead == 'i') ADVANCE(4689); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2507); + if (lookahead == '_') ADVANCE(2437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2432); END_STATE(); case 3834: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'I') ADVANCE(4689); - if (lookahead == 'i') ADVANCE(4632); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2507); + if (lookahead == '_') ADVANCE(2437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2437); END_STATE(); case 3835: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'I') ADVANCE(4689); - if (lookahead == 'i') ADVANCE(4654); - if (lookahead == 'o') ADVANCE(4635); - if (lookahead == 's') ADVANCE(2517); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2507); + if (lookahead == 'a') ADVANCE(1404); + if (lookahead == 'o') ADVANCE(1343); + if (lookahead == 'u') ADVANCE(1484); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3836: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'I') ADVANCE(4689); - if (lookahead == 'i') ADVANCE(4654); - if (lookahead == 's') ADVANCE(2517); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2507); + if (lookahead == 'a') ADVANCE(4604); END_STATE(); case 3837: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'I') ADVANCE(3414); - if (lookahead == '_') ADVANCE(3343); - if (lookahead == 'i') ADVANCE(3350); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3343); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2507); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2408); + if (lookahead == 'a') ADVANCE(3330); END_STATE(); case 3838: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'I') ADVANCE(3414); - if (lookahead == 'i') ADVANCE(3414); - if (lookahead == 'r') ADVANCE(3408); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2507); + if (lookahead == 'a') ADVANCE(4642); END_STATE(); case 3839: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'I') ADVANCE(3414); - if (lookahead == 'i') ADVANCE(3414); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2507); + if (lookahead == 'a') ADVANCE(3372); END_STATE(); case 3840: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'I') ADVANCE(3414); - if (lookahead == 'i') ADVANCE(3350); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2507); + if (lookahead == 'a') ADVANCE(980); END_STATE(); case 3841: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'I') ADVANCE(3414); - if (lookahead == 'i') ADVANCE(3373); - if (lookahead == 'o') ADVANCE(3353); - if (lookahead == 's') ADVANCE(2517); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2507); + if (lookahead == 'a') ADVANCE(896); END_STATE(); case 3842: ACCEPT_TOKEN(aux_sym_unquoted_token5); - ADVANCE_MAP( - 'I', 987, - '_', 830, - 'i', 987, - 'n', 854, - '+', 830, - '-', 830, - 'B', 2507, - 'b', 2507, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2408); + if (lookahead == 'a') ADVANCE(1609); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3843: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'I') ADVANCE(987); - if (lookahead == '_') ADVANCE(830); - if (lookahead == 'i') ADVANCE(987); - if (lookahead == '+' || - lookahead == '-') ADVANCE(830); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2507); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2408); + if (lookahead == 'a') ADVANCE(1414); + if (lookahead == 'o') ADVANCE(1451); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3844: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'I') ADVANCE(987); - if (lookahead == '_') ADVANCE(830); - if (lookahead == 'i') ADVANCE(846); - if (lookahead == '+' || - lookahead == '-') ADVANCE(830); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2507); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2408); + if (lookahead == 'a') ADVANCE(1483); + if (lookahead == 'o') ADVANCE(1346); + if (lookahead == 'u') ADVANCE(1484); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3845: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'I') ADVANCE(987); - if (lookahead == 'i') ADVANCE(987); - if (lookahead == 'n') ADVANCE(854); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2507); + if (lookahead == 'a') ADVANCE(1483); + if (lookahead == 'o') ADVANCE(1343); + if (lookahead == 'u') ADVANCE(1484); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3846: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'I') ADVANCE(987); - if (lookahead == 'i') ADVANCE(987); - if (lookahead == 'r') ADVANCE(970); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2507); + if (lookahead == 'a') ADVANCE(1516); + if (lookahead == 'e') ADVANCE(1381); + if (lookahead == 'o') ADVANCE(1944); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3847: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'I') ADVANCE(987); - if (lookahead == 'i') ADVANCE(987); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2507); + if (lookahead == 'a') ADVANCE(1516); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3848: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'I') ADVANCE(987); - if (lookahead == 'i') ADVANCE(846); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2507); + if (lookahead == 'a') ADVANCE(1497); + if (lookahead == 'o') ADVANCE(1417); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3849: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'I') ADVANCE(987); - if (lookahead == 'i') ADVANCE(904); - if (lookahead == 'o') ADVANCE(852); - if (lookahead == 's') ADVANCE(2517); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2507); + if (lookahead == 'e') ADVANCE(1381); + if (lookahead == 'o') ADVANCE(1944); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3850: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'I') ADVANCE(987); - if (lookahead == 'i') ADVANCE(904); - if (lookahead == 's') ADVANCE(2517); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2507); + if (lookahead == 'e') ADVANCE(1482); + if (lookahead == 'i') ADVANCE(1479); + if (lookahead == 'o') ADVANCE(1437); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3851: ACCEPT_TOKEN(aux_sym_unquoted_token5); - ADVANCE_MAP( - 'I', 1644, - '_', 1578, - 'i', 1644, - 'n', 1588, - '+', 830, - '-', 830, - 'B', 2515, - 'b', 2515, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2409); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1653); + if (lookahead == 'e') ADVANCE(1482); + if (lookahead == 'o') ADVANCE(1437); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3852: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'I') ADVANCE(1644); - if (lookahead == '_') ADVANCE(1578); - if (lookahead == 'i') ADVANCE(1644); - if (lookahead == '+' || - lookahead == '-') ADVANCE(830); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2515); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2409); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1653); + if (lookahead == 'e') ADVANCE(1382); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3853: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'I') ADVANCE(1644); - if (lookahead == '_') ADVANCE(1578); - if (lookahead == 'i') ADVANCE(1584); - if (lookahead == '+' || - lookahead == '-') ADVANCE(830); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2515); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2409); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1653); + if (lookahead == 'e') ADVANCE(1511); + if (lookahead == 'o') ADVANCE(1491); + if (lookahead == 's') ADVANCE(2482); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1522); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3854: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'I') ADVANCE(1644); - if (lookahead == 'i') ADVANCE(1644); - if (lookahead == 'n') ADVANCE(1588); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2515); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'e') ADVANCE(1511); + if (lookahead == 'o') ADVANCE(1491); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1522); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3855: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'I') ADVANCE(1644); - if (lookahead == 'i') ADVANCE(1644); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2515); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'e') ADVANCE(4588); END_STATE(); case 3856: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'I') ADVANCE(1644); - if (lookahead == 'i') ADVANCE(1584); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2515); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'e') ADVANCE(4588); + if (lookahead == 't') ADVANCE(4586); END_STATE(); case 3857: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'I') ADVANCE(1644); - if (lookahead == 'i') ADVANCE(1606); - if (lookahead == 'o') ADVANCE(1587); - if (lookahead == 's') ADVANCE(2519); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2515); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'e') ADVANCE(3311); + if (lookahead == 't') ADVANCE(3309); END_STATE(); case 3858: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'I') ADVANCE(1644); - if (lookahead == 'i') ADVANCE(1606); - if (lookahead == 's') ADVANCE(2519); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2515); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'e') ADVANCE(847); END_STATE(); case 3859: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'N') ADVANCE(1552); - if (lookahead == 'f') ADVANCE(1984); - if (lookahead == 'n') ADVANCE(1940); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'e') ADVANCE(847); + if (lookahead == 't') ADVANCE(839); END_STATE(); case 3860: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'N') ADVANCE(4690); - if (lookahead == 'n') ADVANCE(1945); + if (lookahead == 'e') ADVANCE(1552); + if (lookahead == 't') ADVANCE(1549); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3861: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'N') ADVANCE(3415); - if (lookahead == 'n') ADVANCE(1946); + if (lookahead == 'e') ADVANCE(1552); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3862: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'N') ADVANCE(989); - if (lookahead == 'n') ADVANCE(1947); + if (lookahead == 'e') ADVANCE(1338); + if (lookahead == 'o') ADVANCE(1500); + if (lookahead == 't') ADVANCE(1335); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3863: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '_') ADVANCE(1350); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1350); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'e') ADVANCE(1338); + if (lookahead == 'o') ADVANCE(1500); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3864: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '_') ADVANCE(4622); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2475); + if (lookahead == 'e') ADVANCE(1338); + if (lookahead == 't') ADVANCE(1335); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3865: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '_') ADVANCE(1352); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2389); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'e') ADVANCE(1338); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3866: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '_') ADVANCE(1579); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2390); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'f') ADVANCE(1951); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1519); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3867: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '_') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + if (lookahead == 'f') ADVANCE(1947); END_STATE(); case 3868: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '_') ADVANCE(4627); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + if (lookahead == 'h') ADVANCE(1378); + if (lookahead == 'k') ADVANCE(2482); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3869: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '_') ADVANCE(833); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2475); + if (lookahead == 'h') ADVANCE(1378); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3870: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '_') ADVANCE(2475); - if (lookahead == 'b') ADVANCE(2502); - if (lookahead == 'o') ADVANCE(2523); - if (lookahead == 'x') ADVANCE(2530); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); + if (lookahead == 'h') ADVANCE(1397); + if (lookahead == 'k') ADVANCE(2482); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3871: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '_') ADVANCE(2475); - if (lookahead == 'b') ADVANCE(2502); - if (lookahead == 'o') ADVANCE(2523); - if (lookahead == 'x') ADVANCE(2530); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2468); + if (lookahead == 'h') ADVANCE(1397); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3872: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '_') ADVANCE(2475); - if (lookahead == 'b') ADVANCE(2502); - if (lookahead == 'o') ADVANCE(2523); - if (lookahead == 'x') ADVANCE(2530); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2470); + if (lookahead == 'i') ADVANCE(1348); + if (lookahead == 'r') ADVANCE(2482); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3873: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '_') ADVANCE(2475); - if (lookahead == 'b') ADVANCE(3232); - if (lookahead == 'o') ADVANCE(3233); - if (lookahead == 'x') ADVANCE(3243); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2475); + if (lookahead == 'i') ADVANCE(1348); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3874: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '_') ADVANCE(2475); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); + if (lookahead == 'i') ADVANCE(955); END_STATE(); case 3875: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '_') ADVANCE(2475); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2468); + if (lookahead == 'i') ADVANCE(1601); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3876: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '_') ADVANCE(2475); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2470); + if (lookahead == 'i') ADVANCE(4631); END_STATE(); case 3877: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '_') ADVANCE(2475); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2475); + if (lookahead == 'i') ADVANCE(3361); END_STATE(); case 3878: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'a') ADVANCE(1435); - if (lookahead == 'o') ADVANCE(1373); - if (lookahead == 'u') ADVANCE(1517); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'i') ADVANCE(1489); + if (lookahead == 'r') ADVANCE(1368); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3879: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'a') ADVANCE(4649); + if (lookahead == 'i') ADVANCE(1489); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3880: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'a') ADVANCE(3370); + if (lookahead == 'k') ADVANCE(2482); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3881: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'a') ADVANCE(4687); + if (lookahead == 'k') ADVANCE(2479); END_STATE(); case 3882: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'a') ADVANCE(3412); + if (lookahead == 'k') ADVANCE(2481); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3883: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'a') ADVANCE(980); + if (lookahead == 'l') ADVANCE(1394); + if (lookahead == 'n') ADVANCE(1342); + if (lookahead == 's') ADVANCE(2047); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3884: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'a') ADVANCE(896); + if (lookahead == 'l') ADVANCE(1394); + if (lookahead == 's') ADVANCE(2047); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3885: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'a') ADVANCE(1642); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'l') ADVANCE(1480); + if (lookahead == 'n') ADVANCE(1347); + if (lookahead == 'r') ADVANCE(1464); + if (lookahead == 'x') ADVANCE(1449); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3886: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'a') ADVANCE(1446); - if (lookahead == 'o') ADVANCE(1484); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'n') ADVANCE(4589); END_STATE(); case 3887: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'a') ADVANCE(1516); - if (lookahead == 'o') ADVANCE(1376); - if (lookahead == 'u') ADVANCE(1517); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'n') ADVANCE(3312); END_STATE(); case 3888: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'a') ADVANCE(1516); - if (lookahead == 'o') ADVANCE(1373); - if (lookahead == 'u') ADVANCE(1517); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'n') ADVANCE(851); END_STATE(); case 3889: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'a') ADVANCE(1549); - if (lookahead == 'e') ADVANCE(1411); - if (lookahead == 'o') ADVANCE(1977); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'n') ADVANCE(1902); END_STATE(); case 3890: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'a') ADVANCE(1549); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'n') ADVANCE(1553); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3891: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'a') ADVANCE(1530); - if (lookahead == 'o') ADVANCE(1449); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'n') ADVANCE(1915); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3892: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'e') ADVANCE(1411); - if (lookahead == 'o') ADVANCE(1977); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'n') ADVANCE(1919); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3893: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'e') ADVANCE(1515); - if (lookahead == 'i') ADVANCE(1512); - if (lookahead == 'o') ADVANCE(1469); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'n') ADVANCE(854); END_STATE(); case 3894: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'e') ADVANCE(1515); - if (lookahead == 'o') ADVANCE(1469); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'n') ADVANCE(1555); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3895: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'e') ADVANCE(1412); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'n') ADVANCE(1342); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3896: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'e') ADVANCE(1544); - if (lookahead == 'o') ADVANCE(1524); - if (lookahead == 's') ADVANCE(2520); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1555); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'n') ADVANCE(1347); + if (lookahead == 'r') ADVANCE(1464); + if (lookahead == 'x') ADVANCE(1449); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3897: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'e') ADVANCE(1544); - if (lookahead == 'o') ADVANCE(1524); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1555); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'n') ADVANCE(1347); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3898: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'e') ADVANCE(4633); + if (lookahead == 'o') ADVANCE(1417); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3899: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'e') ADVANCE(4633); - if (lookahead == 't') ADVANCE(4631); + if (lookahead == 'o') ADVANCE(1500); + if (lookahead == 't') ADVANCE(1335); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3900: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'e') ADVANCE(3351); - if (lookahead == 't') ADVANCE(3349); + if (lookahead == 'o') ADVANCE(1500); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3901: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'e') ADVANCE(847); + if (lookahead == 'o') ADVANCE(933); END_STATE(); case 3902: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'e') ADVANCE(847); - if (lookahead == 't') ADVANCE(839); + if (lookahead == 'o') ADVANCE(951); + if (lookahead == 's') ADVANCE(2479); + if (lookahead == 'u') ADVANCE(897); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(994); END_STATE(); case 3903: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'e') ADVANCE(1585); - if (lookahead == 't') ADVANCE(1582); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'o') ADVANCE(951); + if (lookahead == 'u') ADVANCE(897); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(994); END_STATE(); case 3904: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'e') ADVANCE(1585); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'o') ADVANCE(1588); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3905: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'e') ADVANCE(1368); - if (lookahead == 'o') ADVANCE(1533); - if (lookahead == 't') ADVANCE(1365); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(4590); END_STATE(); case 3906: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'e') ADVANCE(1368); - if (lookahead == 'o') ADVANCE(1533); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(3313); END_STATE(); case 3907: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'e') ADVANCE(1368); - if (lookahead == 't') ADVANCE(1365); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(852); END_STATE(); case 3908: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'e') ADVANCE(1368); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(1604); + if (lookahead == 's') ADVANCE(2481); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3909: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'f') ADVANCE(1984); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1552); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(1604); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3910: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'f') ADVANCE(1980); + if (lookahead == 'o') ADVANCE(1554); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3911: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'h') ADVANCE(1408); - if (lookahead == 'k') ADVANCE(2520); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(1451); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3912: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'h') ADVANCE(1408); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(1485); + if (lookahead == 's') ADVANCE(2482); + if (lookahead == 'u') ADVANCE(1411); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1522); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3913: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'h') ADVANCE(1428); - if (lookahead == 'k') ADVANCE(2520); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(1485); + if (lookahead == 'u') ADVANCE(1411); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1522); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3914: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'h') ADVANCE(1428); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(4634); + if (lookahead == 's') ADVANCE(2479); + if (lookahead == 'u') ADVANCE(4607); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4648); END_STATE(); case 3915: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'i') ADVANCE(1378); - if (lookahead == 'r') ADVANCE(2520); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(4634); + if (lookahead == 'u') ADVANCE(4607); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4648); END_STATE(); case 3916: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'i') ADVANCE(1378); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(3364); + if (lookahead == 's') ADVANCE(2479); + if (lookahead == 'u') ADVANCE(3332); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3377); END_STATE(); case 3917: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'i') ADVANCE(955); + if (lookahead == 'o') ADVANCE(3364); + if (lookahead == 'u') ADVANCE(3332); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3377); END_STATE(); case 3918: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'i') ADVANCE(1634); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'o') ADVANCE(4620); END_STATE(); case 3919: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'i') ADVANCE(4676); + if (lookahead == 'o') ADVANCE(3348); END_STATE(); case 3920: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'i') ADVANCE(3401); + if (lookahead == 'o') ADVANCE(1345); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3921: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'i') ADVANCE(1522); - if (lookahead == 'r') ADVANCE(1398); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(952); + if (lookahead == 's') ADVANCE(2479); + if (lookahead == 'u') ADVANCE(897); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(994); END_STATE(); case 3922: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'i') ADVANCE(1522); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(952); + if (lookahead == 'u') ADVANCE(897); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(994); END_STATE(); case 3923: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'k') ADVANCE(2520); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(1490); + if (lookahead == 's') ADVANCE(2482); + if (lookahead == 'u') ADVANCE(1411); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1522); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3924: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'k') ADVANCE(2517); + if (lookahead == 'o') ADVANCE(1490); + if (lookahead == 'u') ADVANCE(1411); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1522); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3925: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'k') ADVANCE(2519); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'o') ADVANCE(1456); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3926: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'l') ADVANCE(1425); - if (lookahead == 'n') ADVANCE(1372); - if (lookahead == 's') ADVANCE(2080); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(1491); + if (lookahead == 's') ADVANCE(2482); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3927: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'l') ADVANCE(1425); - if (lookahead == 'n') ADVANCE(1372); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(1491); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3928: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'l') ADVANCE(1425); - if (lookahead == 's') ADVANCE(2080); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(960); END_STATE(); case 3929: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'l') ADVANCE(1513); - if (lookahead == 'n') ADVANCE(1377); - if (lookahead == 'r') ADVANCE(1497); - if (lookahead == 'x') ADVANCE(1482); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(960); + if (lookahead == 's') ADVANCE(2479); END_STATE(); case 3930: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'n') ADVANCE(4634); + if (lookahead == 'r') ADVANCE(1501); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3931: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'n') ADVANCE(3352); + if (lookahead == 'r') ADVANCE(2482); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3932: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'n') ADVANCE(851); + if (lookahead == 'r') ADVANCE(2302); + if (lookahead == 'v') ADVANCE(1371); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3933: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'n') ADVANCE(1935); + if (lookahead == 'r') ADVANCE(2302); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3934: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'n') ADVANCE(1586); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'r') ADVANCE(4638); END_STATE(); case 3935: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'n') ADVANCE(1948); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'r') ADVANCE(3368); END_STATE(); case 3936: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'n') ADVANCE(1952); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(2479); END_STATE(); case 3937: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'n') ADVANCE(854); + if (lookahead == 'r') ADVANCE(2294); END_STATE(); case 3938: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'n') ADVANCE(1588); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 'r') ADVANCE(970); END_STATE(); case 3939: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'n') ADVANCE(1372); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(2481); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3940: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'n') ADVANCE(1377); - if (lookahead == 'r') ADVANCE(1497); - if (lookahead == 'x') ADVANCE(1482); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(2299); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3941: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'n') ADVANCE(1377); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(1368); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3942: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(1449); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(1464); + if (lookahead == 'x') ADVANCE(1449); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3943: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(1533); - if (lookahead == 't') ADVANCE(1365); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(1514); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3944: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(1533); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 's') ADVANCE(2482); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3945: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(933); + if (lookahead == 's') ADVANCE(2480); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3946: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(951); - if (lookahead == 's') ADVANCE(2517); - if (lookahead == 'u') ADVANCE(897); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(994); + if (lookahead == 's') ADVANCE(2479); END_STATE(); case 3947: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(951); - if (lookahead == 'u') ADVANCE(897); + if (lookahead == 's') ADVANCE(2479); + if (lookahead == 'u') ADVANCE(4607); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(994); + lookahead == 'a') ADVANCE(4648); END_STATE(); case 3948: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(1621); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 's') ADVANCE(2481); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3949: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(4635); + if (lookahead == 's') ADVANCE(1353); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3950: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(3353); + if (lookahead == 't') ADVANCE(839); END_STATE(); case 3951: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(852); + if (lookahead == 't') ADVANCE(4586); END_STATE(); case 3952: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(1637); - if (lookahead == 's') ADVANCE(2519); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 't') ADVANCE(3309); END_STATE(); case 3953: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(1637); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 't') ADVANCE(1549); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3954: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(1587); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + if (lookahead == 't') ADVANCE(1335); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3955: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(1484); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'u') ADVANCE(4607); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4648); END_STATE(); case 3956: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(1518); - if (lookahead == 's') ADVANCE(2520); - if (lookahead == 'u') ADVANCE(1443); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1555); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'v') ADVANCE(1371); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3957: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(1518); - if (lookahead == 'u') ADVANCE(1443); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1555); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + lookahead == 'a') ADVANCE(1522); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3958: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(4679); - if (lookahead == 's') ADVANCE(2517); - if (lookahead == 'u') ADVANCE(4652); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4693); + lookahead == 'a') ADVANCE(4648); END_STATE(); case 3959: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(4679); - if (lookahead == 'u') ADVANCE(4652); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4693); + lookahead == 'a') ADVANCE(3377); END_STATE(); case 3960: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(3404); - if (lookahead == 's') ADVANCE(2517); - if (lookahead == 'u') ADVANCE(3372); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3417); + lookahead == 'a') ADVANCE(994); END_STATE(); case 3961: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(3404); - if (lookahead == 'u') ADVANCE(3372); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3417); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1519); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3962: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(4665); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4645); END_STATE(); case 3963: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(3388); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3375); END_STATE(); case 3964: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(1375); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(989); END_STATE(); case 3965: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(952); - if (lookahead == 's') ADVANCE(2517); - if (lookahead == 'u') ADVANCE(897); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(994); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1620); END_STATE(); case 3966: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(952); - if (lookahead == 'u') ADVANCE(897); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(994); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1527); END_STATE(); case 3967: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(1523); - if (lookahead == 's') ADVANCE(2520); - if (lookahead == 'u') ADVANCE(1443); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1555); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == '+') ADVANCE(4011); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == '>') ADVANCE(3233); + if (lookahead == 'r') ADVANCE(2295); + if (lookahead == 'u') ADVANCE(4047); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 3968: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(1523); - if (lookahead == 'u') ADVANCE(1443); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1555); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == '+') ADVANCE(4011); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == '>') ADVANCE(3233); + if (lookahead == 'u') ADVANCE(4047); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 3969: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(1489); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == '+') ADVANCE(4205); + if (lookahead == '>') ADVANCE(3237); + if (lookahead == 'r') ADVANCE(2305); + if (lookahead == 'u') ADVANCE(4446); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 3970: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(1524); - if (lookahead == 's') ADVANCE(2520); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == '+') ADVANCE(4027); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == '>') ADVANCE(3226); + if (lookahead == 'n') ADVANCE(4006); + if (lookahead == 'r') ADVANCE(4034); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 3971: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(1524); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == '+') ADVANCE(4027); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == '>') ADVANCE(3226); + if (lookahead == 'r') ADVANCE(4034); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 3972: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(960); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == '+') ADVANCE(4328); + if (lookahead == '>') ADVANCE(3230); + if (lookahead == 'n') ADVANCE(4168); + if (lookahead == 'r') ADVANCE(4376); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 3973: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(960); - if (lookahead == 's') ADVANCE(2517); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == '+') ADVANCE(4028); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == '>') ADVANCE(3212); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 3974: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'r') ADVANCE(1534); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == '+') ADVANCE(4012); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == '>') ADVANCE(3219); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 3975: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'r') ADVANCE(2520); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == '+') ADVANCE(4329); + if (lookahead == '>') ADVANCE(3216); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 3976: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'r') ADVANCE(2340); - if (lookahead == 'v') ADVANCE(1401); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == '+') ADVANCE(4213); + if (lookahead == '>') ADVANCE(3223); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 3977: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'r') ADVANCE(2340); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == '-') ADVANCE(4004); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 3978: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'r') ADVANCE(4683); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == '-') ADVANCE(4077); + if (lookahead == '_') ADVANCE(3998); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 3979: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'r') ADVANCE(3408); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == '-') ADVANCE(4055); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 3980: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'r') ADVANCE(2517); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == '-') ADVANCE(4016); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 3981: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'r') ADVANCE(2332); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == '-') ADVANCE(4078); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 3982: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'r') ADVANCE(970); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == '-') ADVANCE(4056); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 3983: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'r') ADVANCE(2519); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == '.') ADVANCE(3998); + if (lookahead == '_') ADVANCE(3983); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4085); END_STATE(); case 3984: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'r') ADVANCE(2337); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == '.') ADVANCE(4075); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(3985); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(4085); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4085); END_STATE(); case 3985: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'r') ADVANCE(1398); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == '2') ADVANCE(4068); + if (lookahead == '0' || + lookahead == '1') ADVANCE(4076); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 3986: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'r') ADVANCE(1497); - if (lookahead == 'x') ADVANCE(1482); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == ':') ADVANCE(4069); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4071); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 3987: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'r') ADVANCE(1547); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == ':') ADVANCE(4081); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 3988: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 's') ADVANCE(2520); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == ':') ADVANCE(4083); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 3989: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 's') ADVANCE(2518); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == '=') ADVANCE(2167); + if (lookahead == '~') ADVANCE(2232); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 3990: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 's') ADVANCE(2517); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == '=') ADVANCE(2160); + if (lookahead == '~') ADVANCE(2225); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 3991: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 's') ADVANCE(2517); - if (lookahead == 'u') ADVANCE(4652); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4693); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == '>') ADVANCE(3261); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 3992: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 's') ADVANCE(2519); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == '>') ADVANCE(3254); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 3993: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 's') ADVANCE(1383); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == '>') ADVANCE(3240); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 3994: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 't') ADVANCE(839); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == '>') ADVANCE(3247); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 3995: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 't') ADVANCE(4631); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'N') ADVANCE(4059); + if (lookahead == 'n') ADVANCE(1903); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 3996: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 't') ADVANCE(3349); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'T') ADVANCE(4080); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 3997: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 't') ADVANCE(1582); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == '_') ADVANCE(3998); + if (lookahead == 'b') ADVANCE(2462); + if (lookahead == 'o') ADVANCE(2483); + if (lookahead == 'x') ADVANCE(2490); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 3998: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 't') ADVANCE(1365); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == '_') ADVANCE(3998); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 3999: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'u') ADVANCE(4652); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4693); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == '_') ADVANCE(3998); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3978); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4000: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'v') ADVANCE(1401); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == '_') ADVANCE(3998); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3999); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4001: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1555); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == '_') ADVANCE(3998); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4002: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4693); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'a') ADVANCE(4022); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4003: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3417); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'a') ADVANCE(4039); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4004: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(994); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'a') ADVANCE(4026); + if (lookahead == 'o') ADVANCE(4036); + if (lookahead == 's') ADVANCE(4013); + if (lookahead == 'x') ADVANCE(4032); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4005: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1552); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'd') ADVANCE(2269); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4006: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4690); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'd') ADVANCE(4042); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4007: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3415); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'd') ADVANCE(2089); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4008: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(989); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'd') ADVANCE(2239); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4009: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1653); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'e') ADVANCE(2391); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4010: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1560); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'e') ADVANCE(2404); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4011: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '+') ADVANCE(4055); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == '>') ADVANCE(3274); - if (lookahead == 'r') ADVANCE(2334); - if (lookahead == 'u') ADVANCE(4091); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'e') ADVANCE(3992); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4012: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '+') ADVANCE(4055); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == '>') ADVANCE(3274); - if (lookahead == 'u') ADVANCE(4091); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'e') ADVANCE(4040); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4013: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '+') ADVANCE(4249); - if (lookahead == '>') ADVANCE(3278); - if (lookahead == 'r') ADVANCE(2344); - if (lookahead == 'u') ADVANCE(4491); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'h') ADVANCE(4021); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4014: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '+') ADVANCE(4071); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == '>') ADVANCE(3267); - if (lookahead == 'n') ADVANCE(4050); - if (lookahead == 'r') ADVANCE(4078); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'h') ADVANCE(2215); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4015: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '+') ADVANCE(4071); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == '>') ADVANCE(3267); - if (lookahead == 'r') ADVANCE(4078); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'h') ADVANCE(2205); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4016: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '+') ADVANCE(4373); - if (lookahead == '>') ADVANCE(3271); - if (lookahead == 'n') ADVANCE(4209); - if (lookahead == 'r') ADVANCE(4413); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'i') ADVANCE(4025); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4017: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '+') ADVANCE(4072); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == '>') ADVANCE(3253); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'i') ADVANCE(4044); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4018: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '+') ADVANCE(4056); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == '>') ADVANCE(3260); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'i') ADVANCE(4048); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4019: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '+') ADVANCE(4374); - if (lookahead == '>') ADVANCE(3257); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'i') ADVANCE(4050); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4020: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '+') ADVANCE(4257); - if (lookahead == '>') ADVANCE(3264); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'l') ADVANCE(2377); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4021: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == '-') ADVANCE(4048); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'l') ADVANCE(2140); + if (lookahead == 'r') ADVANCE(2150); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4022: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == '-') ADVANCE(4121); - if (lookahead == '_') ADVANCE(4042); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4042); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'l') ADVANCE(4041); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4023: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == '-') ADVANCE(4099); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'l') ADVANCE(4020); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4024: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == '-') ADVANCE(4060); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'n') ADVANCE(4005); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4025: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == '-') ADVANCE(4122); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'n') ADVANCE(2195); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4026: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == '-') ADVANCE(4100); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'n') ADVANCE(4008); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4027: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == '.') ADVANCE(4042); - if (lookahead == '_') ADVANCE(4027); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4042); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'o') ADVANCE(3991); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4028: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == '.') ADVANCE(4119); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(4029); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4129); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'o') ADVANCE(4054); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4029: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == '2') ADVANCE(4112); - if (lookahead == '0' || - lookahead == '1') ADVANCE(4120); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'o') ADVANCE(4046); + if (lookahead == 'u') ADVANCE(4023); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4062); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4030: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == ':') ADVANCE(4113); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4115); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'o') ADVANCE(4035); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4031: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == ':') ADVANCE(4125); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'o') ADVANCE(4007); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4032: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == ':') ADVANCE(4127); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'o') ADVANCE(4037); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4033: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == '=') ADVANCE(2206); - if (lookahead == '~') ADVANCE(2271); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'r') ADVANCE(4053); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4034: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == '=') ADVANCE(2199); - if (lookahead == '~') ADVANCE(2264); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'r') ADVANCE(3973); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4035: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == '>') ADVANCE(3302); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'r') ADVANCE(2282); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4036: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == '>') ADVANCE(3295); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'r') ADVANCE(2259); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4037: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == '>') ADVANCE(3281); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'r') ADVANCE(2249); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4038: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == '>') ADVANCE(3288); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'r') ADVANCE(3994); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4039: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'N') ADVANCE(4103); - if (lookahead == 'n') ADVANCE(1937); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'r') ADVANCE(4051); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4040: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'T') ADVANCE(4124); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'r') ADVANCE(4038); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4041: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == '_') ADVANCE(4042); - if (lookahead == 'b') ADVANCE(2501); - if (lookahead == 'o') ADVANCE(2522); - if (lookahead == 'x') ADVANCE(2529); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4044); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 's') ADVANCE(4010); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4042: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == '_') ADVANCE(4042); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4042); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 's') ADVANCE(3979); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4043: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == '_') ADVANCE(4042); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4022); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 's') ADVANCE(3982); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4044: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == '_') ADVANCE(4042); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4043); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 't') ADVANCE(3977); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4045: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == '_') ADVANCE(4042); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4044); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 't') ADVANCE(4003); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4046: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'a') ADVANCE(4066); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 't') ADVANCE(3980); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4047: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'a') ADVANCE(4083); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 't') ADVANCE(3974); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4048: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'a') ADVANCE(4070); - if (lookahead == 'o') ADVANCE(4080); - if (lookahead == 's') ADVANCE(4057); - if (lookahead == 'x') ADVANCE(4076); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 't') ADVANCE(4014); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4049: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'd') ADVANCE(2308); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 't') ADVANCE(3993); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4050: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'd') ADVANCE(4086); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 't') ADVANCE(4015); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4051: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'd') ADVANCE(2128); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 't') ADVANCE(4043); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4052: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'd') ADVANCE(2278); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'u') ADVANCE(4023); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4062); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4053: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'e') ADVANCE(2430); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'u') ADVANCE(4009); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4054: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'e') ADVANCE(2443); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'u') ADVANCE(4049); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4055: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'e') ADVANCE(4036); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'w') ADVANCE(4018); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4056: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'e') ADVANCE(4084); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'w') ADVANCE(4019); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4057: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'h') ADVANCE(4065); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(3985); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(4085); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4057); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4058: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'h') ADVANCE(2254); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4062); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4059: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'h') ADVANCE(2244); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4061); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4060: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'i') ADVANCE(4069); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4065); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4061: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'i') ADVANCE(4088); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4064); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4062: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'i') ADVANCE(4092); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4085); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4063: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'i') ADVANCE(4094); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4059); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4064: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'l') ADVANCE(2416); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4060); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4065: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'l') ADVANCE(2179); - if (lookahead == 'r') ADVANCE(2189); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4066); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4066: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'l') ADVANCE(4085); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(4085); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4067: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'l') ADVANCE(4064); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(4067); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4068: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'n') ADVANCE(4049); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3986); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4069: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'n') ADVANCE(2234); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4071); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4070: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'n') ADVANCE(4052); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(4070); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4071: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'o') ADVANCE(4035); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4085); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4072: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'o') ADVANCE(4098); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3996); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4073: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'o') ADVANCE(4090); - if (lookahead == 'u') ADVANCE(4067); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4106); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3988); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4074: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'o') ADVANCE(4079); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4075: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'o') ADVANCE(4051); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4057); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4076: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'o') ADVANCE(4081); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3986); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4077: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'r') ADVANCE(4097); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4079); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4078: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'r') ADVANCE(4017); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4072); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4079: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'r') ADVANCE(2321); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4080: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'r') ADVANCE(2298); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4073); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4081: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'r') ADVANCE(2288); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4074); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4082: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'r') ADVANCE(4038); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3987); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4083: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'r') ADVANCE(4095); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4082); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4084: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'r') ADVANCE(4082); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4084); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4085: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 's') ADVANCE(4054); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); case 4086: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 's') ADVANCE(4023); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == '-') ADVANCE(1854); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4087: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 's') ADVANCE(4026); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == '-') ADVANCE(4143); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4088: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 't') ADVANCE(4021); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == '-') ADVANCE(4543); + if (lookahead == '_') ADVANCE(4136); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4136); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4089: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 't') ADVANCE(4047); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == '-') ADVANCE(4483); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4090: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 't') ADVANCE(4024); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == '-') ADVANCE(4145); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4091: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 't') ADVANCE(4018); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == '-') ADVANCE(4155); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(4550); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4092: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 't') ADVANCE(4058); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == '-') ADVANCE(4155); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4093: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 't') ADVANCE(4037); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == '-') ADVANCE(4485); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(4550); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4094: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 't') ADVANCE(4059); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == '-') ADVANCE(4485); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4095: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 't') ADVANCE(4087); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == '-') ADVANCE(4484); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4096: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'u') ADVANCE(4067); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4106); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == '-') ADVANCE(4251); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(4550); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4097: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'u') ADVANCE(4053); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == '-') ADVANCE(4251); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4098: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'u') ADVANCE(4093); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == '-') ADVANCE(4259); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4099: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'w') ADVANCE(4062); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == '-') ADVANCE(4260); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4100: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'w') ADVANCE(4063); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == '-') ADVANCE(4544); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4101: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(4029); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4129); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4101); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == '-') ADVANCE(4486); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4102: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4106); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == '-') ADVANCE(4488); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(4550); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4103: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4105); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == '-') ADVANCE(4488); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4104: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4109); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == '-') ADVANCE(4487); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4105: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4108); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == '.') ADVANCE(4131); + if (lookahead == '_') ADVANCE(4105); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4131); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4106: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4129); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == '.') ADVANCE(1848); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4107: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4103); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == '.') ADVANCE(4106); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4108: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4104); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == '.') ADVANCE(4541); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4110); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(4552); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4109: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4110); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == '.') ADVANCE(4136); + if (lookahead == '_') ADVANCE(4109); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4136); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4110: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4129); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == '2') ADVANCE(4533); + if (lookahead == '0' || + lookahead == '1') ADVANCE(4542); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4111: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(4111); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ':') ADVANCE(4534); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4536); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4112: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4030); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ':') ADVANCE(4546); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4113: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4115); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ':') ADVANCE(4548); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4114: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4114); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == '=') ADVANCE(2171); + if (lookahead == '~') ADVANCE(2236); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4115: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4129); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == '=') ADVANCE(2164); + if (lookahead == '>') ADVANCE(1970); + if (lookahead == '~') ADVANCE(2229); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4116: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4040); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == '=') ADVANCE(2164); + if (lookahead == '~') ADVANCE(2229); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4117: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4032); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == '=') ADVANCE(2169); + if (lookahead == '~') ADVANCE(2234); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4513); END_STATE(); case 4118: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4028); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == '=') ADVANCE(2162); + if (lookahead == '~') ADVANCE(2227); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4513); END_STATE(); case 4119: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4101); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == '>') ADVANCE(3265); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4120: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4030); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == '>') ADVANCE(3258); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4121: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4123); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == '>') ADVANCE(3244); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4122: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4116); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == '>') ADVANCE(3251); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4123: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4025); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == '>') ADVANCE(1970); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4124: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4117); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == 'N') ADVANCE(4516); + if (lookahead == 'f') ADVANCE(1952); + if (lookahead == 'n') ADVANCE(1908); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4125: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4118); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == 'N') ADVANCE(4517); + if (lookahead == 'n') ADVANCE(1909); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4126: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4031); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == 'N') ADVANCE(4494); + if (lookahead == 'f') ADVANCE(1948); + if (lookahead == 'n') ADVANCE(1905); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4127: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4126); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == 'T') ADVANCE(4545); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4128: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4128); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == '_') ADVANCE(4128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4128); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4129: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == '_') ADVANCE(4129); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4129); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4130: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '-') ADVANCE(4187); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == '_') ADVANCE(4131); + if (lookahead == 'b') ADVANCE(4509); + if (lookahead == 'o') ADVANCE(4510); + if (lookahead == 'x') ADVANCE(4511); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4131); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4513); END_STATE(); case 4131: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '-') ADVANCE(4588); - if (lookahead == '_') ADVANCE(4180); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4180); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == '_') ADVANCE(4131); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4131); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4513); END_STATE(); case 4132: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '-') ADVANCE(4528); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == '_') ADVANCE(4136); + if (lookahead == 'b') ADVANCE(2465); + if (lookahead == 'o') ADVANCE(2486); + if (lookahead == 'x') ADVANCE(2493); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4134); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4133: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '-') ADVANCE(4189); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == '_') ADVANCE(4136); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4088); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4134: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '-') ADVANCE(4199); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(4595); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == '_') ADVANCE(4136); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4133); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4135: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '-') ADVANCE(4199); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == '_') ADVANCE(4136); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4134); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4136: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '-') ADVANCE(4530); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(4595); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == '_') ADVANCE(4136); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4136); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4137: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '-') ADVANCE(4530); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'a') ADVANCE(4288); + if (lookahead == 'o') ADVANCE(4360); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4138: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '-') ADVANCE(1888); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'a') ADVANCE(4268); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4139: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '-') ADVANCE(4529); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'a') ADVANCE(4489); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4140: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '-') ADVANCE(4295); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(4595); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'a') ADVANCE(4270); + if (lookahead == 'o') ADVANCE(4165); + if (lookahead == 'u') ADVANCE(4434); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4141: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '-') ADVANCE(4295); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'a') ADVANCE(4269); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4142: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '-') ADVANCE(4303); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'a') ADVANCE(4279); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4143: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '-') ADVANCE(4304); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'a') ADVANCE(4320); + if (lookahead == 'o') ADVANCE(4363); + if (lookahead == 's') ADVANCE(4233); + if (lookahead == 'x') ADVANCE(4349); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4144: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '-') ADVANCE(4589); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'a') ADVANCE(4432); + if (lookahead == 'o') ADVANCE(4296); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4145: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '-') ADVANCE(4531); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'a') ADVANCE(4321); + if (lookahead == 'o') ADVANCE(4371); + if (lookahead == 's') ADVANCE(4238); + if (lookahead == 'x') ADVANCE(4348); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4146: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '-') ADVANCE(4533); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(4595); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'a') ADVANCE(4491); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4147: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '-') ADVANCE(4533); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'a') ADVANCE(4403); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4148: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '-') ADVANCE(4532); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'a') ADVANCE(4426); + if (lookahead == 'o') ADVANCE(4162); + if (lookahead == 'u') ADVANCE(4427); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4149: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '.') ADVANCE(4175); - if (lookahead == '_') ADVANCE(4149); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4175); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'a') ADVANCE(4426); + if (lookahead == 'o') ADVANCE(4176); + if (lookahead == 'u') ADVANCE(4427); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4150: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '.') ADVANCE(1882); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'a') ADVANCE(4390); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4550); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4151: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '.') ADVANCE(4150); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'a') ADVANCE(4404); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4152: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '.') ADVANCE(4586); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4154); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4597); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'a') ADVANCE(4392); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4153: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '.') ADVANCE(4180); - if (lookahead == '_') ADVANCE(4153); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4180); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'a') ADVANCE(4393); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4154: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '2') ADVANCE(4578); - if (lookahead == '0' || - lookahead == '1') ADVANCE(4587); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'a') ADVANCE(4395); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4155: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ':') ADVANCE(4579); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4581); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'a') ADVANCE(4319); + if (lookahead == 'o') ADVANCE(4378); + if (lookahead == 's') ADVANCE(4241); + if (lookahead == 'x') ADVANCE(4342); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4156: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ':') ADVANCE(4591); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'c') ADVANCE(4232); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4157: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ':') ADVANCE(4593); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'c') ADVANCE(4236); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4158: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '=') ADVANCE(2208); - if (lookahead == '~') ADVANCE(2273); + if (lookahead == 'c') ADVANCE(4237); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4159: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '=') ADVANCE(2201); - if (lookahead == '~') ADVANCE(2266); + if (lookahead == 'c') ADVANCE(4200); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4160: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '=') ADVANCE(2210); - if (lookahead == '~') ADVANCE(2275); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'c') ADVANCE(4189); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4161: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '=') ADVANCE(2203); - if (lookahead == '>') ADVANCE(2004); - if (lookahead == '~') ADVANCE(2268); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'd') ADVANCE(2277); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4162: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '=') ADVANCE(2203); - if (lookahead == '~') ADVANCE(2268); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'd') ADVANCE(2093); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4163: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '>') ADVANCE(3306); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'd') ADVANCE(2244); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4164: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '>') ADVANCE(3299); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'd') ADVANCE(2271); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4165: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '>') ADVANCE(3285); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'd') ADVANCE(2091); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4166: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '>') ADVANCE(3292); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'd') ADVANCE(2241); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4167: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '>') ADVANCE(2004); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'd') ADVANCE(2279); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4168: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'N') ADVANCE(4561); - if (lookahead == 'f') ADVANCE(1986); - if (lookahead == 'n') ADVANCE(1943); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'd') ADVANCE(4410); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4169: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'N') ADVANCE(4562); - if (lookahead == 'n') ADVANCE(1944); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'd') ADVANCE(2102); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4170: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'N') ADVANCE(4539); - if (lookahead == 'f') ADVANCE(1982); - if (lookahead == 'n') ADVANCE(1939); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'd') ADVANCE(2246); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4171: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'T') ADVANCE(4590); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'd') ADVANCE(2274); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4550); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4172: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(4172); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4172); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'd') ADVANCE(4408); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4550); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4173: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(4173); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4173); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'd') ADVANCE(2097); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4550); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4174: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(4175); - if (lookahead == 'b') ADVANCE(4554); - if (lookahead == 'o') ADVANCE(4555); - if (lookahead == 'x') ADVANCE(4556); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4175); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4558); + if (lookahead == 'd') ADVANCE(2100); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4175: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(4175); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4175); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4558); + if (lookahead == 'd') ADVANCE(4405); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4176: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(4180); - if (lookahead == 'b') ADVANCE(2504); - if (lookahead == 'o') ADVANCE(2525); - if (lookahead == 'x') ADVANCE(2532); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4178); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'd') ADVANCE(4472); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4177: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(4180); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4131); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'd') ADVANCE(4406); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4178: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(4180); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4177); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'd') ADVANCE(4183); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4179: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(4180); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4178); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'd') ADVANCE(4196); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4180: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(4180); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4180); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'e') ADVANCE(4226); + if (lookahead == 'o') ADVANCE(1945); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4181: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'a') ADVANCE(4333); - if (lookahead == 'o') ADVANCE(4421); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'e') ADVANCE(4229); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4182: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'a') ADVANCE(4313); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'e') ADVANCE(1795); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4183: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'a') ADVANCE(4536); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'e') ADVANCE(2025); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4184: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'a') ADVANCE(4314); - if (lookahead == 'o') ADVANCE(4206); - if (lookahead == 'u') ADVANCE(4474); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'e') ADVANCE(2397); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4185: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'a') ADVANCE(4312); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'e') ADVANCE(2410); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4186: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'a') ADVANCE(4324); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'e') ADVANCE(2062); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4187: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'a') ADVANCE(4365); - if (lookahead == 'o') ADVANCE(4424); - if (lookahead == 's') ADVANCE(4276); - if (lookahead == 'x') ADVANCE(4394); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'e') ADVANCE(1938); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4188: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'a') ADVANCE(4472); - if (lookahead == 'o') ADVANCE(4338); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'e') ADVANCE(1788); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4189: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'a') ADVANCE(4366); - if (lookahead == 'o') ADVANCE(4408); - if (lookahead == 's') ADVANCE(4279); - if (lookahead == 'x') ADVANCE(4393); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'e') ADVANCE(2006); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4190: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'a') ADVANCE(4535); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'e') ADVANCE(1894); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4191: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'a') ADVANCE(4449); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'e') ADVANCE(4227); + if (lookahead == 'o') ADVANCE(1941); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4192: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'a') ADVANCE(4470); - if (lookahead == 'o') ADVANCE(4217); - if (lookahead == 'u') ADVANCE(4484); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'e') ADVANCE(4482); + if (lookahead == 'o') ADVANCE(4444); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4500); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4193: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'a') ADVANCE(4470); - if (lookahead == 'o') ADVANCE(4220); - if (lookahead == 'u') ADVANCE(4484); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'e') ADVANCE(4230); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4194: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'a') ADVANCE(4435); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4595); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'e') ADVANCE(1791); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4195: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'a') ADVANCE(4448); + if (lookahead == 'e') ADVANCE(1957); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4196: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'a') ADVANCE(4437); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'e') ADVANCE(2022); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4197: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'a') ADVANCE(4438); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'e') ADVANCE(1931); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4198: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'a') ADVANCE(4440); + if (lookahead == 'e') ADVANCE(1934); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4199: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'a') ADVANCE(4364); - if (lookahead == 'o') ADVANCE(4415); - if (lookahead == 's') ADVANCE(4282); - if (lookahead == 'x') ADVANCE(4387); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'e') ADVANCE(1784); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4200: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'c') ADVANCE(4285); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'e') ADVANCE(2003); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4201: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'c') ADVANCE(4277); + if (lookahead == 'e') ADVANCE(1890); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4202: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'c') ADVANCE(4278); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'e') ADVANCE(2401); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4203: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'c') ADVANCE(4235); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'e') ADVANCE(2414); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4204: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'c') ADVANCE(4246); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'e') ADVANCE(4425); + if (lookahead == 'o') ADVANCE(4325); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4205: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'd') ADVANCE(2310); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'e') ADVANCE(4120); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4206: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'd') ADVANCE(2129); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'e') ADVANCE(4138); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4207: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'd') ADVANCE(2280); + if (lookahead == 'e') ADVANCE(4433); + if (lookahead == 'i') ADVANCE(4413); + if (lookahead == 'o') ADVANCE(4327); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4208: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'd') ADVANCE(2318); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'e') ADVANCE(4141); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4209: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'd') ADVANCE(4455); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'e') ADVANCE(4391); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4210: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'd') ADVANCE(2141); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'e') ADVANCE(4293); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4211: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'd') ADVANCE(2285); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'e') ADVANCE(4386); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4212: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'd') ADVANCE(2312); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4595); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'e') ADVANCE(4298); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4213: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'd') ADVANCE(4453); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4595); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'e') ADVANCE(4399); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4214: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'd') ADVANCE(2135); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4595); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'e') ADVANCE(4400); + if (lookahead == 'i') ADVANCE(4285); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4215: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'd') ADVANCE(2139); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'e') ADVANCE(4310); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4216: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'd') ADVANCE(2316); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'e') ADVANCE(4312); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4217: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'd') ADVANCE(2132); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'e') ADVANCE(4315); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4218: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'd') ADVANCE(2283); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'e') ADVANCE(4388); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4219: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'd') ADVANCE(4450); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'e') ADVANCE(4316); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4220: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'd') ADVANCE(4517); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'e') ADVANCE(4387); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4221: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'd') ADVANCE(4451); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'e') ADVANCE(4317); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4222: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'd') ADVANCE(4240); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'e') ADVANCE(4318); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4223: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'd') ADVANCE(4231); + if (lookahead == 'e') ADVANCE(4373); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4224: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(4272); - if (lookahead == 'o') ADVANCE(1979); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'e') ADVANCE(4365); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4225: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(4273); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'f') ADVANCE(1952); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4516); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4226: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(4269); - if (lookahead == 'o') ADVANCE(1975); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'f') ADVANCE(1768); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4227: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(4527); - if (lookahead == 'o') ADVANCE(4489); + if (lookahead == 'f') ADVANCE(1764); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4545); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4228: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(4274); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'f') ADVANCE(1954); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4229: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(1825); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'g') ADVANCE(4258); + if (lookahead == 't') ADVANCE(4469); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4230: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(1991); + if (lookahead == 'g') ADVANCE(4267); + if (lookahead == 't') ADVANCE(4468); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4231: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(2055); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'h') ADVANCE(4214); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4232: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(1965); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'h') ADVANCE(1965); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4233: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(1968); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'h') ADVANCE(4272); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4234: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(1818); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'h') ADVANCE(2220); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4235: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(2036); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'h') ADVANCE(2210); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4236: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(1924); + if (lookahead == 'h') ADVANCE(1994); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4237: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(2440); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'h') ADVANCE(1961); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4238: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(2453); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'h') ADVANCE(4273); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4239: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(1829); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'h') ADVANCE(2217); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4240: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(2059); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'h') ADVANCE(2207); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4241: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(2436); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'h') ADVANCE(4275); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4242: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(2449); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'h') ADVANCE(2222); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4243: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(2101); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'h') ADVANCE(2212); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4244: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(1972); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'h') ADVANCE(4248); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4245: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(1822); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'i') ADVANCE(4424); + if (lookahead == 'r') ADVANCE(4206); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4246: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(2040); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'i') ADVANCE(4424); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4247: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(1928); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'i') ADVANCE(4431); + if (lookahead == 'r') ADVANCE(4208); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4248: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(4483); - if (lookahead == 'o') ADVANCE(4370); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'i') ADVANCE(4284); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4249: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(4164); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'i') ADVANCE(4147); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4250: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(4182); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'i') ADVANCE(4151); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4251: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(4473); - if (lookahead == 'i') ADVANCE(4458); - if (lookahead == 'o') ADVANCE(4372); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'i') ADVANCE(4302); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4252: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(4185); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'i') ADVANCE(4443); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4253: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(4436); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'i') ADVANCE(4442); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4550); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4254: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(4337); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'i') ADVANCE(4178); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4255: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(4431); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'i') ADVANCE(4309); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4256: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(4340); + if (lookahead == 'i') ADVANCE(4179); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4257: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(4444); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'i') ADVANCE(4311); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4258: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(4445); - if (lookahead == 'i') ADVANCE(4330); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'i') ADVANCE(4417); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4259: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(4355); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'i') ADVANCE(4294); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4260: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(4357); + if (lookahead == 'i') ADVANCE(4299); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4261: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(4360); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'i') ADVANCE(4447); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4262: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(4433); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'i') ADVANCE(4452); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4263: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(4361); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'i') ADVANCE(4453); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4264: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(4432); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'i') ADVANCE(4455); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4265: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(4362); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'i') ADVANCE(4454); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4266: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(4363); + if (lookahead == 'i') ADVANCE(4456); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4267: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(4410); + if (lookahead == 'i') ADVANCE(4418); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4268: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(4426); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'k') ADVANCE(1888); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4269: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'f') ADVANCE(1798); + if (lookahead == 'k') ADVANCE(1884); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4270: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'f') ADVANCE(1988); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'k') ADVANCE(4197); + if (lookahead == 't') ADVANCE(4158); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4271: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'f') ADVANCE(1986); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4561); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'l') ADVANCE(2383); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4272: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'f') ADVANCE(1802); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'l') ADVANCE(2145); + if (lookahead == 'r') ADVANCE(2155); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4273: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'g') ADVANCE(4302); - if (lookahead == 't') ADVANCE(4514); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'l') ADVANCE(2142); + if (lookahead == 'r') ADVANCE(2152); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4274: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'g') ADVANCE(4311); - if (lookahead == 't') ADVANCE(4513); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'l') ADVANCE(2387); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4275: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'h') ADVANCE(4258); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'l') ADVANCE(2147); + if (lookahead == 'r') ADVANCE(2157); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4276: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'h') ADVANCE(4319); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'l') ADVANCE(4249); + if (lookahead == 'n') ADVANCE(4161); + if (lookahead == 's') ADVANCE(2048); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4277: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'h') ADVANCE(2028); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'l') ADVANCE(4249); + if (lookahead == 's') ADVANCE(2048); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4278: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'h') ADVANCE(1995); + if (lookahead == 'l') ADVANCE(4250); + if (lookahead == 'n') ADVANCE(4164); + if (lookahead == 's') ADVANCE(2044); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4279: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'h') ADVANCE(4315); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'l') ADVANCE(4407); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4280: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'h') ADVANCE(2256); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'l') ADVANCE(4271); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4281: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'h') ADVANCE(2246); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'l') ADVANCE(4274); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4282: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'h') ADVANCE(4317); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'l') ADVANCE(4139); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4283: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'h') ADVANCE(2261); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'l') ADVANCE(4146); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4284: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'h') ADVANCE(2251); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'l') ADVANCE(4198); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4285: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'h') ADVANCE(1999); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'l') ADVANCE(4187); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4286: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'h') ADVANCE(2259); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'l') ADVANCE(4199); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4287: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'h') ADVANCE(2249); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'l') ADVANCE(4188); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4288: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'h') ADVANCE(4292); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'l') ADVANCE(4416); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4289: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'i') ADVANCE(4469); - if (lookahead == 'r') ADVANCE(4250); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'l') ADVANCE(4412); + if (lookahead == 'n') ADVANCE(4177); + if (lookahead == 'r') ADVANCE(4402); + if (lookahead == 'x') ADVANCE(4356); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4290: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'i') ADVANCE(4469); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'n') ADVANCE(4161); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4291: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'i') ADVANCE(4471); - if (lookahead == 'r') ADVANCE(4252); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'n') ADVANCE(4414); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4292: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'i') ADVANCE(4329); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'n') ADVANCE(1781); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4293: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'i') ADVANCE(4191); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'n') ADVANCE(4473); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4294: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'i') ADVANCE(4195); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'n') ADVANCE(2200); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4295: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'i') ADVANCE(4344); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'n') ADVANCE(2001); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4296: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'i') ADVANCE(4488); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'n') ADVANCE(4415); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4297: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'i') ADVANCE(4482); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4595); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'n') ADVANCE(1777); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4298: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'i') ADVANCE(4222); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'n') ADVANCE(4477); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4299: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'i') ADVANCE(4354); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'n') ADVANCE(2197); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4300: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'i') ADVANCE(4223); + if (lookahead == 'n') ADVANCE(1997); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4301: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'i') ADVANCE(4356); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'n') ADVANCE(4167); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4302: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'i') ADVANCE(4462); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'n') ADVANCE(2202); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4303: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'i') ADVANCE(4350); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'n') ADVANCE(4171); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4550); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4304: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'i') ADVANCE(4341); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'n') ADVANCE(1916); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4550); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4305: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'i') ADVANCE(4492); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'n') ADVANCE(1922); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4306: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'i') ADVANCE(4497); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'n') ADVANCE(1920); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4307: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'i') ADVANCE(4498); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'n') ADVANCE(4175); + if (lookahead == 'r') ADVANCE(4401); + if (lookahead == 'x') ADVANCE(4355); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4308: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'i') ADVANCE(4500); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'n') ADVANCE(4175); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4309: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'i') ADVANCE(4499); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'n') ADVANCE(4471); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4310: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'i') ADVANCE(4501); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'n') ADVANCE(4474); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4311: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'i') ADVANCE(4463); + if (lookahead == 'n') ADVANCE(4470); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4312: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'k') ADVANCE(1918); + if (lookahead == 'n') ADVANCE(4478); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4313: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'k') ADVANCE(1922); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'n') ADVANCE(4168); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4314: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'k') ADVANCE(4232); - if (lookahead == 't') ADVANCE(4202); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'n') ADVANCE(4172); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4550); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4315: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'l') ADVANCE(2181); - if (lookahead == 'r') ADVANCE(2191); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'n') ADVANCE(4475); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4316: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'l') ADVANCE(2426); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'n') ADVANCE(4479); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4317: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'l') ADVANCE(2186); - if (lookahead == 'r') ADVANCE(2196); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'n') ADVANCE(4476); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4318: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'l') ADVANCE(2422); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'n') ADVANCE(4480); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4319: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'l') ADVANCE(2184); - if (lookahead == 'r') ADVANCE(2194); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'n') ADVANCE(4170); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4320: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'l') ADVANCE(4293); - if (lookahead == 'n') ADVANCE(4216); - if (lookahead == 's') ADVANCE(2082); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'n') ADVANCE(4163); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4321: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'l') ADVANCE(4293); - if (lookahead == 'n') ADVANCE(4216); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'n') ADVANCE(4166); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4322: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'l') ADVANCE(4293); - if (lookahead == 's') ADVANCE(2082); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'o') ADVANCE(4291); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4323: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'l') ADVANCE(4294); - if (lookahead == 'n') ADVANCE(4205); - if (lookahead == 's') ADVANCE(2078); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'o') ADVANCE(4465); + if (lookahead == 't') ADVANCE(4153); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4324: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'l') ADVANCE(4452); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'o') ADVANCE(4465); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4325: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'l') ADVANCE(4318); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'o') ADVANCE(4353); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4326: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'l') ADVANCE(4316); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'o') ADVANCE(4466); + if (lookahead == 't') ADVANCE(4154); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4327: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'l') ADVANCE(4183); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'o') ADVANCE(4354); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4328: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'l') ADVANCE(4190); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'o') ADVANCE(4119); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4329: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'l') ADVANCE(4233); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'o') ADVANCE(4467); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4330: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'l') ADVANCE(4244); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'o') ADVANCE(4381); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4550); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4331: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'l') ADVANCE(4234); + if (lookahead == 'o') ADVANCE(4368); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4332: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'l') ADVANCE(4245); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'o') ADVANCE(4450); + if (lookahead == 'u') ADVANCE(4281); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4523); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4333: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'l') ADVANCE(4461); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'o') ADVANCE(4450); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4334: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'l') ADVANCE(4457); - if (lookahead == 'n') ADVANCE(4221); - if (lookahead == 'r') ADVANCE(4447); - if (lookahead == 'x') ADVANCE(4401); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'o') ADVANCE(4377); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4335: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'n') ADVANCE(4216); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'o') ADVANCE(4169); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4336: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'n') ADVANCE(4459); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'o') ADVANCE(4448); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4550); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4337: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'n') ADVANCE(4522); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'o') ADVANCE(4173); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4550); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4338: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'n') ADVANCE(4460); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'o') ADVANCE(4361); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4339: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'n') ADVANCE(1811); + if (lookahead == 'o') ADVANCE(4369); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4340: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'n') ADVANCE(4518); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'o') ADVANCE(4428); + if (lookahead == 'u') ADVANCE(4280); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4522); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4341: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'n') ADVANCE(2236); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'o') ADVANCE(4174); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4342: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'n') ADVANCE(2031); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'o') ADVANCE(4379); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4343: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'n') ADVANCE(4208); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'o') ADVANCE(4370); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4344: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'n') ADVANCE(2241); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'o') ADVANCE(4362); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4345: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'n') ADVANCE(4212); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4595); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'o') ADVANCE(4439); + if (lookahead == 'u') ADVANCE(4281); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4523); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4346: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'n') ADVANCE(1949); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4595); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'o') ADVANCE(4440); + if (lookahead == 'u') ADVANCE(4281); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4523); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4347: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'n') ADVANCE(1956); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'o') ADVANCE(4438); + if (lookahead == 'u') ADVANCE(4280); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4522); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4348: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'n') ADVANCE(1954); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'o') ADVANCE(4372); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4349: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'n') ADVANCE(1815); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'o') ADVANCE(4364); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4350: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'n') ADVANCE(2239); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'o') ADVANCE(4449); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4351: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'n') ADVANCE(2035); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'o') ADVANCE(4397); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4352: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'n') ADVANCE(4219); - if (lookahead == 'r') ADVANCE(4446); - if (lookahead == 'x') ADVANCE(4400); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'o') ADVANCE(4398); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4353: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'n') ADVANCE(4219); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'p') ADVANCE(1928); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4354: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'n') ADVANCE(4516); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'p') ADVANCE(1924); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4355: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'n') ADVANCE(4523); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'p') ADVANCE(4351); + if (lookahead == 't') ADVANCE(4220); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4356: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'n') ADVANCE(4515); + if (lookahead == 'p') ADVANCE(4352); + if (lookahead == 't') ADVANCE(4218); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4357: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'n') ADVANCE(4519); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'r') ADVANCE(2303); + if (lookahead == 'v') ADVANCE(4209); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4358: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'n') ADVANCE(4209); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'r') ADVANCE(2303); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4359: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'n') ADVANCE(4213); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4595); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'r') ADVANCE(4464); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4360: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'n') ADVANCE(4524); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'r') ADVANCE(1900); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4361: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'n') ADVANCE(4520); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'r') ADVANCE(2290); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4362: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'n') ADVANCE(4525); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'r') ADVANCE(1825); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4363: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'n') ADVANCE(4521); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'r') ADVANCE(2264); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4364: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'n') ADVANCE(4211); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'r') ADVANCE(2254); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4365: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'n') ADVANCE(4218); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'r') ADVANCE(2019); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4366: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'n') ADVANCE(4207); + if (lookahead == 'r') ADVANCE(2297); + if (lookahead == 'v') ADVANCE(4211); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4367: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(4336); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'r') ADVANCE(4490); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4368: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(4510); - if (lookahead == 't') ADVANCE(4197); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'r') ADVANCE(1896); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4369: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(4510); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'r') ADVANCE(2284); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4370: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(4399); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'r') ADVANCE(1820); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4371: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(4511); - if (lookahead == 't') ADVANCE(4198); + if (lookahead == 'r') ADVANCE(2261); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4372: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(4398); + if (lookahead == 'r') ADVANCE(2251); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4373: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(4163); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'r') ADVANCE(2015); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4374: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(4512); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'r') ADVANCE(2305); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4375: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(4418); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4595); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'r') ADVANCE(4463); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4376: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(4405); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'r') ADVANCE(3975); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4377: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(4495); - if (lookahead == 'u') ADVANCE(4326); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4568); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'r') ADVANCE(2292); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4378: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(4495); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'r') ADVANCE(2266); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4379: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(4414); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'r') ADVANCE(2256); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4380: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(4210); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'r') ADVANCE(2300); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4550); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4381: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(4493); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4595); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'r') ADVANCE(2287); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4550); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4382: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(4214); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4595); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'r') ADVANCE(4206); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4383: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(4422); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'r') ADVANCE(4401); + if (lookahead == 'x') ADVANCE(4355); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4384: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(4406); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'r') ADVANCE(4160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4385: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(4485); - if (lookahead == 'u') ADVANCE(4325); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4567); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'r') ADVANCE(4159); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4386: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(4215); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'r') ADVANCE(4283); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4387: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(4416); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'r') ADVANCE(4292); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4388: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(4407); + if (lookahead == 'r') ADVANCE(4297); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4389: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(4423); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'r') ADVANCE(4122); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4390: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(4479); - if (lookahead == 'u') ADVANCE(4326); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4568); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'r') ADVANCE(4460); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4550); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4391: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(4480); - if (lookahead == 'u') ADVANCE(4326); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4568); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'r') ADVANCE(4282); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4392: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(4478); - if (lookahead == 'u') ADVANCE(4325); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4567); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'r') ADVANCE(4459); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4393: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(4409); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'r') ADVANCE(4461); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4394: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(4425); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'r') ADVANCE(4295); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4395: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(4494); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'r') ADVANCE(4462); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4396: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(4442); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'r') ADVANCE(4300); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4397: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(4443); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'r') ADVANCE(4430); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4398: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'p') ADVANCE(1958); + if (lookahead == 'r') ADVANCE(4437); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4399: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'p') ADVANCE(1962); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'r') ADVANCE(4389); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4400: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'p') ADVANCE(4396); - if (lookahead == 't') ADVANCE(4264); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'r') ADVANCE(4186); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4401: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'p') ADVANCE(4397); - if (lookahead == 't') ADVANCE(4262); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'r') ADVANCE(4344); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4402: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(4509); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'r') ADVANCE(4343); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4403: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(2336); - if (lookahead == 'v') ADVANCE(4255); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 's') ADVANCE(1269); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4404: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(4534); + if (lookahead == 's') ADVANCE(1265); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4405: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(1930); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 's') ADVANCE(4089); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4406: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(2323); + if (lookahead == 's') ADVANCE(4095); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4407: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(1854); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 's') ADVANCE(4203); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4408: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(2300); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 's') ADVANCE(4093); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4550); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4409: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(2290); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 's') ADVANCE(4182); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4410: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(2049); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 's') ADVANCE(4094); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4411: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(2344); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 's') ADVANCE(4194); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4412: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(4508); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 's') ADVANCE(4195); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4413: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(4019); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 's') ADVANCE(4435); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4414: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(2331); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 's') ADVANCE(4429); + if (lookahead == 't') ADVANCE(4255); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4415: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(2305); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 's') ADVANCE(4436); + if (lookahead == 't') ADVANCE(4257); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4416: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(2295); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 's') ADVANCE(4185); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4417: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(2338); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4595); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 's') ADVANCE(4457); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4418: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(2325); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4595); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 's') ADVANCE(4458); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4419: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(2342); - if (lookahead == 'v') ADVANCE(4253); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 's') ADVANCE(4101); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4420: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(2342); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 's') ADVANCE(4104); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4421: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(1934); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 's') ADVANCE(4102); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4550); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4422: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(2329); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 's') ADVANCE(4103); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4423: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(1859); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 't') ADVANCE(4153); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4424: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(2303); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 't') ADVANCE(4087); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4425: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(2293); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 't') ADVANCE(1274); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4426: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(2053); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 't') ADVANCE(4156); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4427: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(4250); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 't') ADVANCE(1289); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4428: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(4446); - if (lookahead == 'x') ADVANCE(4400); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 't') ADVANCE(2312); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4429: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(4204); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 't') ADVANCE(1296); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4430: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(4203); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 't') ADVANCE(1261); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4431: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(4328); + if (lookahead == 't') ADVANCE(4090); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4432: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(4349); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 't') ADVANCE(4157); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4433: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(4339); + if (lookahead == 't') ADVANCE(1276); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4434: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(4166); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 't') ADVANCE(1285); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4435: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(4505); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4595); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 't') ADVANCE(1832); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4436: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(4327); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 't') ADVANCE(1292); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4437: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(4504); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 't') ADVANCE(1258); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4438: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(4506); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 't') ADVANCE(2318); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4439: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(4351); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 't') ADVANCE(2309); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4440: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(4507); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 't') ADVANCE(2320); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4441: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(4342); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 't') ADVANCE(4150); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4550); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4442: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(4487); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 't') ADVANCE(4091); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4550); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4443: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(4477); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 't') ADVANCE(4092); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4444: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(4434); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 't') ADVANCE(4099); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4445: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(4243); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 't') ADVANCE(4152); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4446: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(4389); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 't') ADVANCE(3976); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4447: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(4388); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 't') ADVANCE(4242); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4448: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 's') ADVANCE(1296); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 't') ADVANCE(4096); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4550); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4449: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 's') ADVANCE(1300); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 't') ADVANCE(4098); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4450: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 's') ADVANCE(4132); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 't') ADVANCE(4097); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4451: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 's') ADVANCE(4139); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 't') ADVANCE(4121); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4452: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 's') ADVANCE(4238); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 't') ADVANCE(4243); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4453: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 's') ADVANCE(4136); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4595); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 't') ADVANCE(4234); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4454: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 's') ADVANCE(4239); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 't') ADVANCE(4235); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4455: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 's') ADVANCE(4137); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 't') ADVANCE(4239); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4456: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 's') ADVANCE(4229); + if (lookahead == 't') ADVANCE(4240); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4457: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 's') ADVANCE(4230); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 't') ADVANCE(4224); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4458: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 's') ADVANCE(4475); + if (lookahead == 't') ADVANCE(4223); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4459: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 's') ADVANCE(4486); - if (lookahead == 't') ADVANCE(4299); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 't') ADVANCE(4422); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4460: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 's') ADVANCE(4476); - if (lookahead == 't') ADVANCE(4301); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 't') ADVANCE(4421); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4550); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4461: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 's') ADVANCE(4242); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 't') ADVANCE(4419); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4462: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 's') ADVANCE(4502); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 't') ADVANCE(4420); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4463: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 's') ADVANCE(4503); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'u') ADVANCE(4202); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4464: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 's') ADVANCE(4145); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'u') ADVANCE(4184); + if (lookahead == 'y') ADVANCE(1991); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4465: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 's') ADVANCE(4148); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'u') ADVANCE(4384); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4466: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 's') ADVANCE(4146); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4595); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'u') ADVANCE(4385); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4467: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 's') ADVANCE(4147); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'u') ADVANCE(4451); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4468: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 't') ADVANCE(4197); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'u') ADVANCE(4396); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4469: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 't') ADVANCE(4130); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'u') ADVANCE(4394); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4470: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 't') ADVANCE(4200); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'u') ADVANCE(4201); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4471: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 't') ADVANCE(4133); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'u') ADVANCE(4190); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4472: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 't') ADVANCE(4201); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'u') ADVANCE(4287); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4473: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 't') ADVANCE(1306); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'v') ADVANCE(1283); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4474: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 't') ADVANCE(1316); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'v') ADVANCE(2032); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4475: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 't') ADVANCE(1866); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'v') ADVANCE(1774); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4476: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 't') ADVANCE(1323); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'v') ADVANCE(2013); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4477: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 't') ADVANCE(1288); + if (lookahead == 'v') ADVANCE(1279); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4478: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 't') ADVANCE(2357); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'v') ADVANCE(2028); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4479: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 't') ADVANCE(2347); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'v') ADVANCE(1770); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4480: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 't') ADVANCE(2359); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'v') ADVANCE(2009); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4481: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 't') ADVANCE(4194); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4595); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'v') ADVANCE(4209); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4482: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 't') ADVANCE(4134); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4595); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'w') ADVANCE(2041); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4483: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 't') ADVANCE(1305); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'w') ADVANCE(4263); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4484: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 't') ADVANCE(1320); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'w') ADVANCE(4264); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4485: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 't') ADVANCE(2351); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'w') ADVANCE(4261); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4486: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 't') ADVANCE(1327); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'w') ADVANCE(4265); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4487: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 't') ADVANCE(1292); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'w') ADVANCE(4266); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4488: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 't') ADVANCE(4135); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'w') ADVANCE(4262); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4489: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 't') ADVANCE(4143); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'y') ADVANCE(2038); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4490: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 't') ADVANCE(4196); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'y') ADVANCE(1987); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4491: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 't') ADVANCE(4020); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'y') ADVANCE(2034); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4492: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 't') ADVANCE(4283); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4110); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(4552); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4492); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4493: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 't') ADVANCE(4140); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4595); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4500); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4494: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 't') ADVANCE(4142); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4499); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4495: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 't') ADVANCE(4141); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4498); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4513); END_STATE(); case 4496: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 't') ADVANCE(4165); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4505); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4497: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 't') ADVANCE(4284); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4506); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4513); END_STATE(); case 4498: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 't') ADVANCE(4286); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4504); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4513); END_STATE(); case 4499: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 't') ADVANCE(4287); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4503); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4500: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 't') ADVANCE(4280); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(4552); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4512); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4501: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 't') ADVANCE(4281); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(4552); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4494); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4502: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 't') ADVANCE(4268); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4495); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4513); END_STATE(); case 4503: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 't') ADVANCE(4267); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(4552); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4496); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4504: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 't') ADVANCE(4467); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4497); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4513); END_STATE(); case 4505: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 't') ADVANCE(4466); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4595); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4507); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4506: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 't') ADVANCE(4464); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4508); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4513); END_STATE(); case 4507: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 't') ADVANCE(4465); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(4552); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(4512); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4508: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'u') ADVANCE(4237); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(4513); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4513); END_STATE(); case 4509: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'u') ADVANCE(4241); - if (lookahead == 'y') ADVANCE(2025); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(4509); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4513); END_STATE(); case 4510: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'u') ADVANCE(4429); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(4510); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4513); END_STATE(); case 4511: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'u') ADVANCE(4430); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(4552); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4511); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4513); END_STATE(); case 4512: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'u') ADVANCE(4496); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == ',' || + lookahead == ':') ADVANCE(4552); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4513); END_STATE(); case 4513: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'u') ADVANCE(4441); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4513); END_STATE(); case 4514: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'u') ADVANCE(4439); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4522); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4515: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'u') ADVANCE(4236); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4523); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4516: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'u') ADVANCE(4247); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4521); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4517: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'u') ADVANCE(4332); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4520); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4518: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'v') ADVANCE(1310); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4528); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4519: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'v') ADVANCE(2062); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4529); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4520: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'v') ADVANCE(1804); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4527); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4521: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'v') ADVANCE(2043); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4526); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4522: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'v') ADVANCE(1314); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4551); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4523: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'v') ADVANCE(2066); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4524: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'v') ADVANCE(1808); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4516); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4525: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'v') ADVANCE(2047); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4517); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4526: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'v') ADVANCE(4253); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4518); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4527: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'w') ADVANCE(2075); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4519); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4528: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'w') ADVANCE(4307); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4530); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4529: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'w') ADVANCE(4308); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4531); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4530: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'w') ADVANCE(4305); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(4551); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4531: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'w') ADVANCE(4309); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4532: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'w') ADVANCE(4310); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(4532); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4533: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'w') ADVANCE(4306); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4111); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4534: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'y') ADVANCE(2021); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4536); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4535: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'y') ADVANCE(2068); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(4535); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4536: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'y') ADVANCE(2072); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4552); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4537: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4154); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4597); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4537); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4100); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4538: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4545); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4127); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4539: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4544); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4113); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4540: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4543); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4558); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4108); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4541: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4550); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4492); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4542: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4551); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4558); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4111); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4543: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4549); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4558); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4537); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4544: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4548); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4538); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4545: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4557); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4539); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4546: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4539); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4540); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4547: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4540); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4558); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4112); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4548: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4541); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4547); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4549: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4542); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4558); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4549); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4550: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4552); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4550); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4551: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4553); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4558); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4552); END_STATE(); case 4552: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4557); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); case 4553: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4558); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4558); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '+') ADVANCE(4612); + if (lookahead == '>') ADVANCE(3225); + if (lookahead == 'n') ADVANCE(4592); + if (lookahead == 'r') ADVANCE(4619); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4554: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(4554); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4558); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '+') ADVANCE(4612); + if (lookahead == '>') ADVANCE(3225); + if (lookahead == 'r') ADVANCE(4619); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4555: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4555); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4558); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '+') ADVANCE(4595); + if (lookahead == '>') ADVANCE(3232); + if (lookahead == 'r') ADVANCE(2294); + if (lookahead == 'u') ADVANCE(4630); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4556: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4556); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4558); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '+') ADVANCE(4595); + if (lookahead == '>') ADVANCE(3232); + if (lookahead == 'u') ADVANCE(4630); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4557: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4558); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '+') ADVANCE(4579); + if (lookahead == '-') ADVANCE(4581); + if (lookahead == '>') ADVANCE(3225); + if (lookahead == '_') ADVANCE(4581); + if (lookahead == 'r') ADVANCE(4619); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2370); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4558: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4558); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '+') ADVANCE(4613); + if (lookahead == '>') ADVANCE(3211); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4559: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4567); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '+') ADVANCE(4596); + if (lookahead == '>') ADVANCE(3218); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4560: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4568); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '-') ADVANCE(4585); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4561: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4566); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '-') ADVANCE(4600); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4562: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4565); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '-') ADVANCE(4640); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4563: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4573); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '-') ADVANCE(4661); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4564: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4574); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '-') ADVANCE(4641); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4565: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4572); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '.') ADVANCE(4578); + if (lookahead == '_') ADVANCE(4565); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2438); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4666); END_STATE(); case 4566: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4571); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '.') ADVANCE(4583); + if (lookahead == '_') ADVANCE(4566); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2374); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4666); END_STATE(); case 4567: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4596); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '2') ADVANCE(4652); + if (lookahead == '0' || + lookahead == '1') ADVANCE(4658); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4568: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == ':') ADVANCE(4663); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4569: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4561); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == ':') ADVANCE(4665); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4570: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4562); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '=') ADVANCE(2166); + if (lookahead == '~') ADVANCE(2231); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4571: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4563); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '=') ADVANCE(2159); + if (lookahead == '~') ADVANCE(2224); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4572: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4564); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '>') ADVANCE(3260); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4573: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4575); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '>') ADVANCE(3253); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4574: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4576); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '>') ADVANCE(3239); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4575: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4596); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '>') ADVANCE(3246); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4576: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'N') ADVANCE(4645); + if (lookahead == 'n') ADVANCE(1912); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4577: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(4577); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '_') ADVANCE(4577); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2437); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4578: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4155); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '_') ADVANCE(4578); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2450); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4579: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4581); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '_') ADVANCE(4581); + if (lookahead == 'o') ADVANCE(4572); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2370); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4580: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4580); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '_') ADVANCE(4581); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4581); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2370); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4581: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4597); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '_') ADVANCE(4581); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2370); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4582: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4144); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '_') ADVANCE(4582); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4583: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4171); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '_') ADVANCE(4583); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2375); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4584: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4157); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'a') ADVANCE(4604); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4585: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4152); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'a') ADVANCE(4611); + if (lookahead == 'o') ADVANCE(4621); + if (lookahead == 's') ADVANCE(4597); + if (lookahead == 'x') ADVANCE(4617); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4586: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4537); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'a') ADVANCE(4625); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4587: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4155); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'b') ADVANCE(2469); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4588: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4582); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'c') ADVANCE(2479); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4589: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4583); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'd') ADVANCE(2268); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4590: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4584); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'd') ADVANCE(2088); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4591: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4585); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'd') ADVANCE(2238); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4592: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4156); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'd') ADVANCE(4627); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4593: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4592); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'e') ADVANCE(2390); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4594: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4594); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'e') ADVANCE(2403); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4595: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(4595); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'e') ADVANCE(4573); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4596: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(4596); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(4597); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'e') ADVANCE(4623); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4597: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'h') ADVANCE(4606); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4598: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(4657); - if (lookahead == '>') ADVANCE(3265); - if (lookahead == 'n') ADVANCE(4637); - if (lookahead == 'r') ADVANCE(4664); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 'h') ADVANCE(2214); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4599: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(4657); - if (lookahead == '>') ADVANCE(3265); - if (lookahead == 'r') ADVANCE(4664); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 'h') ADVANCE(2204); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4600: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(4640); - if (lookahead == '>') ADVANCE(3272); - if (lookahead == 'r') ADVANCE(2332); - if (lookahead == 'u') ADVANCE(4675); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 'i') ADVANCE(4610); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4601: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(4640); - if (lookahead == '>') ADVANCE(3272); - if (lookahead == 'u') ADVANCE(4675); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 'i') ADVANCE(4631); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4602: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(4624); - if (lookahead == '-') ADVANCE(4626); - if (lookahead == '>') ADVANCE(3265); - if (lookahead == '_') ADVANCE(4626); - if (lookahead == 'r') ADVANCE(4664); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2408); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 'i') ADVANCE(4632); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4603: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(4658); - if (lookahead == '>') ADVANCE(3251); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 'i') ADVANCE(4635); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4604: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(4641); - if (lookahead == '>') ADVANCE(3258); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 'l') ADVANCE(4626); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4605: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '-') ADVANCE(4630); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 'l') ADVANCE(2376); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4606: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '-') ADVANCE(4645); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 'l') ADVANCE(2139); + if (lookahead == 'r') ADVANCE(2149); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4607: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '-') ADVANCE(4685); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 'l') ADVANCE(4605); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4608: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '-') ADVANCE(4706); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 'n') ADVANCE(4589); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4609: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '-') ADVANCE(4686); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 'n') ADVANCE(2479); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2469); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4610: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(4623); - if (lookahead == '_') ADVANCE(4610); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2476); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4711); + if (lookahead == 'n') ADVANCE(2194); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4611: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(4628); - if (lookahead == '_') ADVANCE(4611); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2412); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4711); + if (lookahead == 'n') ADVANCE(4591); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4612: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '2') ADVANCE(4697); - if (lookahead == '0' || - lookahead == '1') ADVANCE(4703); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 'o') ADVANCE(4572); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4613: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(4708); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 'o') ADVANCE(4639); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4614: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(4710); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 'o') ADVANCE(4590); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4615: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '=') ADVANCE(2204); - if (lookahead == '~') ADVANCE(2269); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 'o') ADVANCE(4634); + if (lookahead == 'u') ADVANCE(4607); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4648); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4616: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '=') ADVANCE(2197); - if (lookahead == '~') ADVANCE(2262); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 'o') ADVANCE(4620); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4617: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '>') ADVANCE(3300); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 'o') ADVANCE(4622); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4618: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '>') ADVANCE(3293); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 'r') ADVANCE(4638); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4619: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '>') ADVANCE(3279); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 'r') ADVANCE(4558); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4620: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '>') ADVANCE(3286); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 'r') ADVANCE(2281); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4621: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N') ADVANCE(4690); - if (lookahead == 'n') ADVANCE(1945); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 'r') ADVANCE(2258); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4622: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4622); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2475); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 'r') ADVANCE(2248); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4623: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4623); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2488); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 'r') ADVANCE(4624); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4624: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4626); - if (lookahead == 'o') ADVANCE(4617); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2408); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 'r') ADVANCE(4575); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4625: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4626); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4626); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2408); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 'r') ADVANCE(4636); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4626: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4626); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2408); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 's') ADVANCE(4594); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4627: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4627); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 's') ADVANCE(4562); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4628: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4628); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2413); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 's') ADVANCE(4564); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4629: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'a') ADVANCE(4649); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 't') ADVANCE(4586); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4630: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'a') ADVANCE(4656); - if (lookahead == 'o') ADVANCE(4666); - if (lookahead == 's') ADVANCE(4642); - if (lookahead == 'x') ADVANCE(4662); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 't') ADVANCE(4559); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4631: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'a') ADVANCE(4670); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 't') ADVANCE(4560); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4632: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'b') ADVANCE(2507); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 't') ADVANCE(4598); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4633: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'c') ADVANCE(2517); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 't') ADVANCE(4574); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4634: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'd') ADVANCE(2306); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 't') ADVANCE(4561); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4635: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'd') ADVANCE(2126); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 't') ADVANCE(4599); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4636: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'd') ADVANCE(2276); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 't') ADVANCE(4628); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4637: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'd') ADVANCE(4672); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 'u') ADVANCE(4607); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4648); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4638: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(2428); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 'u') ADVANCE(4593); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4639: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(2441); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 'u') ADVANCE(4633); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4640: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(4618); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 'w') ADVANCE(4602); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4641: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(4668); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 'w') ADVANCE(4603); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4642: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'h') ADVANCE(4651); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 'y') ADVANCE(2479); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4643: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'h') ADVANCE(2252); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4648); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4644: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'h') ADVANCE(2242); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2469); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4645: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'i') ADVANCE(4655); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2455); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4646: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'i') ADVANCE(4676); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4650); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4647: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'i') ADVANCE(4677); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4645); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4648: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'i') ADVANCE(4680); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2461); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4649: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(4671); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4646); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4650: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(2414); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4651); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4651: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(2177); - if (lookahead == 'r') ADVANCE(2187); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2454); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4652: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(4650); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(2504); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4653: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'n') ADVANCE(4634); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2499); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4654: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'n') ADVANCE(2517); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2507); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4563); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4655: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'n') ADVANCE(2232); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4569); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4656: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'n') ADVANCE(4636); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2501); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4657: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'o') ADVANCE(4617); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2511); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4658: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'o') ADVANCE(4684); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2504); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4659: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'o') ADVANCE(4635); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4654); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4660: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'o') ADVANCE(4679); - if (lookahead == 'u') ADVANCE(4652); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4693); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2506); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4661: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'o') ADVANCE(4665); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4660); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4662: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'o') ADVANCE(4667); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4655); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4663: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(4683); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4656); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4664: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(4603); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4568); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4665: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(2319); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4664); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4666: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(2296); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4666); END_STATE(); case 4667: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(2286); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); - END_STATE(); - case 4668: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(4669); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); - END_STATE(); - case 4669: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(4620); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); - END_STATE(); - case 4670: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(4681); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); - END_STATE(); - case 4671: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 's') ADVANCE(4639); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); - END_STATE(); - case 4672: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 's') ADVANCE(4607); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); - END_STATE(); - case 4673: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 's') ADVANCE(4609); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); - END_STATE(); - case 4674: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 't') ADVANCE(4631); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); - END_STATE(); - case 4675: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 't') ADVANCE(4604); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); - END_STATE(); - case 4676: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 't') ADVANCE(4605); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); - END_STATE(); - case 4677: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 't') ADVANCE(4643); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); - END_STATE(); - case 4678: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 't') ADVANCE(4619); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); - END_STATE(); - case 4679: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 't') ADVANCE(4606); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); - END_STATE(); - case 4680: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 't') ADVANCE(4644); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); - END_STATE(); - case 4681: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 't') ADVANCE(4673); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); - END_STATE(); - case 4682: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(4652); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4693); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); - END_STATE(); - case 4683: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(4638); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); - END_STATE(); - case 4684: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(4678); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); - END_STATE(); - case 4685: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'w') ADVANCE(4647); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); - END_STATE(); - case 4686: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'w') ADVANCE(4648); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); - END_STATE(); - case 4687: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'y') ADVANCE(2517); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); - END_STATE(); - case 4688: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4693); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); - END_STATE(); - case 4689: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2507); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); - END_STATE(); - case 4690: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2493); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); - END_STATE(); - case 4691: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4695); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); - END_STATE(); - case 4692: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4690); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); - END_STATE(); - case 4693: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2499); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); - END_STATE(); - case 4694: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4691); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); - END_STATE(); - case 4695: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4696); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); - END_STATE(); - case 4696: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2492); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); - END_STATE(); - case 4697: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(2542); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); - END_STATE(); - case 4698: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2537); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); - END_STATE(); - case 4699: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4608); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); - END_STATE(); - case 4700: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4614); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); - END_STATE(); - case 4701: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2539); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); - END_STATE(); - case 4702: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2549); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); - END_STATE(); - case 4703: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2542); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); - END_STATE(); - case 4704: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4699); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); - END_STATE(); - case 4705: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2544); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); - END_STATE(); - case 4706: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4705); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); - END_STATE(); - case 4707: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4700); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); - END_STATE(); - case 4708: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4701); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); - END_STATE(); - case 4709: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4613); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); - END_STATE(); - case 4710: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4709); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); - END_STATE(); - case 4711: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4711); - END_STATE(); - case 4712: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); END_STATE(); - case 4713: + case 4668: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(4657); - if (lookahead == '>') ADVANCE(3265); - if (lookahead == 'r') ADVANCE(4664); + if (lookahead == '+') ADVANCE(4612); + if (lookahead == '>') ADVANCE(3225); + if (lookahead == 'r') ADVANCE(4619); END_STATE(); - case 4714: + case 4669: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(4640); - if (lookahead == '>') ADVANCE(3272); - if (lookahead == 'u') ADVANCE(4675); + if (lookahead == '+') ADVANCE(4595); + if (lookahead == '>') ADVANCE(3232); + if (lookahead == 'u') ADVANCE(4630); END_STATE(); - case 4715: + case 4670: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(4624); - if (lookahead == '-') ADVANCE(4626); - if (lookahead == '>') ADVANCE(3265); - if (lookahead == '_') ADVANCE(4626); - if (lookahead == 'r') ADVANCE(4664); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2408); + if (lookahead == '+') ADVANCE(4579); + if (lookahead == '-') ADVANCE(4581); + if (lookahead == '>') ADVANCE(3225); + if (lookahead == '_') ADVANCE(4581); + if (lookahead == 'r') ADVANCE(4619); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2370); END_STATE(); - case 4716: + case 4671: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == '.') ADVANCE(831); if (lookahead == '_') ADVANCE(809); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2412); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2374); END_STATE(); - case 4717: + case 4672: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4622); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2475); + if (lookahead == '_') ADVANCE(4577); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2437); END_STATE(); - case 4718: + case 4673: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == '_') ADVANCE(830); if (lookahead == '+' || lookahead == '-') ADVANCE(830); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2408); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2370); END_STATE(); - case 4719: + case 4674: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4626); + if (lookahead == '_') ADVANCE(4581); if (lookahead == '+' || - lookahead == '-') ADVANCE(4626); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2408); + lookahead == '-') ADVANCE(4581); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2370); END_STATE(); - case 4720: + case 4675: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == '_') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); END_STATE(); - case 4721: + case 4676: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4627); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + if (lookahead == '_') ADVANCE(4582); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); END_STATE(); - case 4722: + case 4677: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(2475); - if (lookahead == 'b') ADVANCE(2502); - if (lookahead == 'o') ADVANCE(2523); - if (lookahead == 'x') ADVANCE(2530); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2468); + if (lookahead == '_') ADVANCE(2437); + if (lookahead == 'b') ADVANCE(2464); + if (lookahead == 'o') ADVANCE(2485); + if (lookahead == 'x') ADVANCE(2492); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2430); END_STATE(); - case 4723: + case 4678: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(2475); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2468); + if (lookahead == '_') ADVANCE(2437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2430); END_STATE(); - case 4724: + case 4679: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'a') ADVANCE(4649); + if (lookahead == 'a') ADVANCE(4604); END_STATE(); - case 4725: + case 4680: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(4683); + if (lookahead == 'r') ADVANCE(4638); END_STATE(); - case 4726: + case 4681: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'u') ADVANCE(4652); + if (lookahead == 'u') ADVANCE(4607); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4693); + lookahead == 'a') ADVANCE(4648); END_STATE(); - case 4727: + case 4682: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4693); + lookahead == 'a') ADVANCE(4648); END_STATE(); - case 4728: + case 4683: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4690); + lookahead == 'n') ADVANCE(4645); END_STATE(); - case 4729: + case 4684: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); ADVANCE_MAP( - '#', 4950, - '$', 1849, - '+', 2173, - ',', 3211, - '-', 1900, - '.', 2485, - '0', 4754, - 'N', 4783, - '_', 4755, - 'e', 4737, - 'f', 4762, - 'n', 4779, - 'o', 4738, - 't', 4772, - 'I', 4788, - 'i', 4788, + '#', 4905, + '$', 1816, + '+', 2135, + ',', 3171, + '-', 1867, + '.', 2447, + '0', 4709, + 'N', 4738, + '_', 4710, + 'e', 4692, + 'f', 4717, + 'n', 4734, + 'o', 4693, + 't', 4727, + 'I', 4743, + 'i', 4743, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4758); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token5_character_set_1, 13, lookahead))) ADVANCE(4810); + lookahead == ' ') ADVANCE(3173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4713); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token5_character_set_1, 13, lookahead))) ADVANCE(4765); END_STATE(); - case 4730: + case 4685: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); ADVANCE_MAP( - '#', 4950, - '$', 1849, - '+', 2173, - '-', 1900, - '.', 2485, - '0', 4754, - 'N', 4783, - '_', 4755, - 'e', 4737, - 'f', 4762, - 'n', 4779, - 'o', 4738, - 't', 4772, - 'I', 4788, - 'i', 4788, + '#', 4905, + '$', 1816, + '+', 2135, + '-', 1867, + '.', 2447, + '0', 4709, + 'N', 4738, + '_', 4710, + 'e', 4692, + 'f', 4717, + 'n', 4734, + 'o', 4693, + 't', 4727, + 'I', 4743, + 'i', 4743, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4758); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token5_character_set_1, 13, lookahead))) ADVANCE(4810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4713); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token5_character_set_1, 13, lookahead))) ADVANCE(4765); END_STATE(); - case 4731: + case 4686: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '#') ADVANCE(4950); - if (lookahead == ',') ADVANCE(3211); + if (lookahead == '#') ADVANCE(4905); + if (lookahead == ',') ADVANCE(3171); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3213); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + lookahead == ' ') ADVANCE(3173); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4732: + case 4687: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '#') ADVANCE(4950); - if (lookahead == '.') ADVANCE(2368); + if (lookahead == '#') ADVANCE(4905); + if (lookahead == '.') ADVANCE(2330); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4760); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4810); + lookahead == 'e') ADVANCE(4714); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4765); END_STATE(); - case 4733: + case 4688: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '#') ADVANCE(4950); - if (lookahead == '_') ADVANCE(4759); + if (lookahead == '#') ADVANCE(4905); + if (lookahead == '_') ADVANCE(4716); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4760); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2392); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + lookahead == 'e') ADVANCE(4714); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2353); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4734: + case 4689: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '#') ADVANCE(4950); - if (lookahead == '_') ADVANCE(4759); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2392); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (lookahead == '#') ADVANCE(4905); + if (lookahead == '_') ADVANCE(4716); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2353); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4735: + case 4690: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '#') ADVANCE(4950); + if (lookahead == '#') ADVANCE(4905); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4760); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + lookahead == 'e') ADVANCE(4714); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4736: + case 4691: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '#') ADVANCE(4950); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (lookahead == '#') ADVANCE(4905); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4737: + case 4692: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '+') ADVANCE(4770); - if (lookahead == '>') ADVANCE(3269); - if (lookahead == 'r') ADVANCE(4773); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (lookahead == '+') ADVANCE(4725); + if (lookahead == '>') ADVANCE(3229); + if (lookahead == 'r') ADVANCE(4728); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4738: + case 4693: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '+') ADVANCE(4765); - if (lookahead == '>') ADVANCE(3276); - if (lookahead == 'u') ADVANCE(4777); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (lookahead == '+') ADVANCE(4720); + if (lookahead == '>') ADVANCE(3236); + if (lookahead == 'u') ADVANCE(4732); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4739: + case 4694: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '+') ADVANCE(4771); - if (lookahead == '>') ADVANCE(3255); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (lookahead == '+') ADVANCE(4726); + if (lookahead == '>') ADVANCE(3215); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4740: + case 4695: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '+') ADVANCE(4766); - if (lookahead == '>') ADVANCE(3262); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (lookahead == '+') ADVANCE(4721); + if (lookahead == '>') ADVANCE(3222); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4741: + case 4696: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '-') ADVANCE(4803); - if (lookahead == '_') ADVANCE(4755); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4755); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (lookahead == '-') ADVANCE(4758); + if (lookahead == '_') ADVANCE(4710); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4710); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4742: + case 4697: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '-') ADVANCE(4804); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (lookahead == '-') ADVANCE(4759); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4743: + case 4698: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '.') ADVANCE(4755); - if (lookahead == '_') ADVANCE(4743); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4755); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4810); + if (lookahead == '.') ADVANCE(4710); + if (lookahead == '_') ADVANCE(4698); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4710); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4765); END_STATE(); - case 4744: + case 4699: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '.') ADVANCE(4801); + if (lookahead == '.') ADVANCE(4756); if (lookahead == '+' || - lookahead == '-') ADVANCE(4745); + lookahead == '-') ADVANCE(4700); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4810); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4810); + lookahead == 'z') ADVANCE(4765); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4765); END_STATE(); - case 4745: + case 4700: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '2') ADVANCE(4793); + if (lookahead == '2') ADVANCE(4748); if (lookahead == '0' || - lookahead == '1') ADVANCE(4802); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + lookahead == '1') ADVANCE(4757); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4746: + case 4701: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == ':') ADVANCE(4794); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4796); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (lookahead == ':') ADVANCE(4749); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4751); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4747: + case 4702: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == ':') ADVANCE(4806); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (lookahead == ':') ADVANCE(4761); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4748: + case 4703: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == ':') ADVANCE(4808); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (lookahead == ':') ADVANCE(4763); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4749: + case 4704: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '>') ADVANCE(3304); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (lookahead == '>') ADVANCE(3264); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4750: + case 4705: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '>') ADVANCE(3297); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (lookahead == '>') ADVANCE(3257); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4751: + case 4706: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '>') ADVANCE(3283); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (lookahead == '>') ADVANCE(3243); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4752: + case 4707: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '>') ADVANCE(3290); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (lookahead == '>') ADVANCE(3250); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4753: + case 4708: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'T') ADVANCE(4805); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (lookahead == 'T') ADVANCE(4760); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4754: + case 4709: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(4755); - if (lookahead == 'b') ADVANCE(2506); - if (lookahead == 'o') ADVANCE(2527); - if (lookahead == 'x') ADVANCE(2534); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4757); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (lookahead == '_') ADVANCE(4710); + if (lookahead == 'b') ADVANCE(2468); + if (lookahead == 'o') ADVANCE(2489); + if (lookahead == 'x') ADVANCE(2496); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4712); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4755: + case 4710: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(4755); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4755); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (lookahead == '_') ADVANCE(4710); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4710); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4756: + case 4711: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(4755); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4741); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (lookahead == '_') ADVANCE(4710); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4696); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4757: + case 4712: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(4755); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4756); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (lookahead == '_') ADVANCE(4710); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4711); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4758: + case 4713: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(4755); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4757); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (lookahead == '_') ADVANCE(4710); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4712); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4759: + case 4714: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(4759); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2392); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (lookahead == '_') ADVANCE(4715); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4715); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2373); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4760: + case 4715: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(4761); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4761); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2411); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (lookahead == '_') ADVANCE(4715); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2373); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4761: + case 4716: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(4761); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2411); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (lookahead == '_') ADVANCE(4716); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2353); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4762: + case 4717: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'a') ADVANCE(4767); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (lookahead == 'a') ADVANCE(4722); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4763: + case 4718: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'e') ADVANCE(2438); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (lookahead == 'e') ADVANCE(2400); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4764: + case 4719: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'e') ADVANCE(2451); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (lookahead == 'e') ADVANCE(2413); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4765: + case 4720: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'e') ADVANCE(4750); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (lookahead == 'e') ADVANCE(4705); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4766: + case 4721: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'e') ADVANCE(4774); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (lookahead == 'e') ADVANCE(4729); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4767: + case 4722: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'l') ADVANCE(4776); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (lookahead == 'l') ADVANCE(4731); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4768: + case 4723: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'l') ADVANCE(2424); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (lookahead == 'l') ADVANCE(2386); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4769: + case 4724: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'l') ADVANCE(4768); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (lookahead == 'l') ADVANCE(4723); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4770: + case 4725: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'o') ADVANCE(4749); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (lookahead == 'o') ADVANCE(4704); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4771: + case 4726: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'o') ADVANCE(4781); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (lookahead == 'o') ADVANCE(4736); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4772: + case 4727: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'r') ADVANCE(4780); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (lookahead == 'r') ADVANCE(4735); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4773: + case 4728: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'r') ADVANCE(4739); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (lookahead == 'r') ADVANCE(4694); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4774: + case 4729: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'r') ADVANCE(4775); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (lookahead == 'r') ADVANCE(4730); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4775: + case 4730: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'r') ADVANCE(4752); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (lookahead == 'r') ADVANCE(4707); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4776: + case 4731: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 's') ADVANCE(4764); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (lookahead == 's') ADVANCE(4719); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4777: + case 4732: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 't') ADVANCE(4740); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (lookahead == 't') ADVANCE(4695); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4778: + case 4733: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 't') ADVANCE(4751); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (lookahead == 't') ADVANCE(4706); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4779: + case 4734: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'u') ADVANCE(4769); + if (lookahead == 'u') ADVANCE(4724); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4787); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + lookahead == 'a') ADVANCE(4742); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4780: + case 4735: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'u') ADVANCE(4763); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (lookahead == 'u') ADVANCE(4718); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4781: + case 4736: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'u') ADVANCE(4778); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (lookahead == 'u') ADVANCE(4733); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4782: + case 4737: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); if (lookahead == '+' || - lookahead == '-') ADVANCE(4745); + lookahead == '-') ADVANCE(4700); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4810); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + lookahead == 'z') ADVANCE(4765); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4737); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4783: + case 4738: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4787); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + lookahead == 'a') ADVANCE(4742); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4784: + case 4739: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4786); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + lookahead == 'f') ADVANCE(4741); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4785: + case 4740: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4790); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + lookahead == 'i') ADVANCE(4745); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4786: + case 4741: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4789); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + lookahead == 'i') ADVANCE(4744); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4787: + case 4742: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4810); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + lookahead == 'n') ADVANCE(4765); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4788: + case 4743: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4784); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + lookahead == 'n') ADVANCE(4739); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4789: + case 4744: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4785); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + lookahead == 'n') ADVANCE(4740); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4790: + case 4745: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); if (lookahead == 'T' || - lookahead == 't') ADVANCE(4791); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + lookahead == 't') ADVANCE(4746); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4791: + case 4746: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4810); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + lookahead == 'y') ADVANCE(4765); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4792: + case 4747: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(4792); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + lookahead == '_') ADVANCE(4747); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4793: + case 4748: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4746); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4701); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4794: + case 4749: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4796); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4751); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4795: + case 4750: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4795); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + lookahead == '_') ADVANCE(4750); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4796: + case 4751: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4810); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4765); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4797: + case 4752: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4742); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4697); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4798: + case 4753: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4753); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4708); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4799: + case 4754: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4748); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4703); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4800: + case 4755: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4744); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4699); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4801: + case 4756: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4737); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4802: + case 4757: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4746); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4701); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4803: + case 4758: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4797); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4752); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4804: + case 4759: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4798); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4753); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4805: + case 4760: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4799); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4754); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4806: + case 4761: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4800); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4755); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4807: + case 4762: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4747); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4702); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4808: + case 4763: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4807); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4762); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4809: + case 4764: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4809); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4764); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4810: + case 4765: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4811: + case 4766: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); END_STATE(); - case 4812: + case 4767: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '+') ADVANCE(4657); - if (lookahead == '>') ADVANCE(3265); - if (lookahead == 'r') ADVANCE(4664); + if (lookahead == '+') ADVANCE(4612); + if (lookahead == '>') ADVANCE(3225); + if (lookahead == 'r') ADVANCE(4619); END_STATE(); - case 4813: + case 4768: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '+') ADVANCE(4640); - if (lookahead == '>') ADVANCE(3272); - if (lookahead == 'u') ADVANCE(4675); + if (lookahead == '+') ADVANCE(4595); + if (lookahead == '>') ADVANCE(3232); + if (lookahead == 'u') ADVANCE(4630); END_STATE(); - case 4814: + case 4769: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == '.') ADVANCE(831); if (lookahead == '_') ADVANCE(809); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2412); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2374); END_STATE(); - case 4815: + case 4770: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == '_') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); END_STATE(); - case 4816: + case 4771: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(4627); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + if (lookahead == '_') ADVANCE(4582); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); END_STATE(); - case 4817: + case 4772: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'a') ADVANCE(4649); + if (lookahead == 'a') ADVANCE(4604); END_STATE(); - case 4818: + case 4773: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'r') ADVANCE(4683); + if (lookahead == 'r') ADVANCE(4638); END_STATE(); - case 4819: + case 4774: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'u') ADVANCE(4652); + if (lookahead == 'u') ADVANCE(4607); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4693); + lookahead == 'a') ADVANCE(4648); END_STATE(); - case 4820: + case 4775: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4693); + lookahead == 'a') ADVANCE(4648); END_STATE(); - case 4821: + case 4776: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4690); + lookahead == 'n') ADVANCE(4645); END_STATE(); - case 4822: + case 4777: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token5); END_STATE(); - case 4823: + case 4778: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token5); - if (lookahead == '+') ADVANCE(4657); - if (lookahead == '>') ADVANCE(3265); - if (lookahead == 'r') ADVANCE(4664); + if (lookahead == '+') ADVANCE(4612); + if (lookahead == '>') ADVANCE(3225); + if (lookahead == 'r') ADVANCE(4619); END_STATE(); - case 4824: + case 4779: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token5); - if (lookahead == '+') ADVANCE(4640); - if (lookahead == '>') ADVANCE(3272); - if (lookahead == 'u') ADVANCE(4675); + if (lookahead == '+') ADVANCE(4595); + if (lookahead == '>') ADVANCE(3232); + if (lookahead == 'u') ADVANCE(4630); END_STATE(); - case 4825: + case 4780: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token5); if (lookahead == '.') ADVANCE(831); if (lookahead == '_') ADVANCE(809); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2412); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2374); END_STATE(); - case 4826: + case 4781: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token5); if (lookahead == '_') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); END_STATE(); - case 4827: + case 4782: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token5); - if (lookahead == '_') ADVANCE(4627); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + if (lookahead == '_') ADVANCE(4582); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); END_STATE(); - case 4828: + case 4783: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token5); - if (lookahead == 'a') ADVANCE(4649); + if (lookahead == 'a') ADVANCE(4604); END_STATE(); - case 4829: + case 4784: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token5); - if (lookahead == 'r') ADVANCE(4683); + if (lookahead == 'r') ADVANCE(4638); END_STATE(); - case 4830: + case 4785: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token5); - if (lookahead == 'u') ADVANCE(4652); + if (lookahead == 'u') ADVANCE(4607); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4693); + lookahead == 'a') ADVANCE(4648); END_STATE(); - case 4831: + case 4786: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token5); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4693); + lookahead == 'a') ADVANCE(4648); END_STATE(); - case 4832: + case 4787: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token5); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4690); + lookahead == 'n') ADVANCE(4645); END_STATE(); - case 4833: + case 4788: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); END_STATE(); - case 4834: + case 4789: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == '+') ADVANCE(4657); - if (lookahead == '>') ADVANCE(3265); - if (lookahead == 'I') ADVANCE(4689); - if (lookahead == 'i') ADVANCE(4689); - if (lookahead == 'r') ADVANCE(4664); + if (lookahead == '+') ADVANCE(4612); + if (lookahead == '>') ADVANCE(3225); + if (lookahead == 'I') ADVANCE(4644); + if (lookahead == 'i') ADVANCE(4644); + if (lookahead == 'r') ADVANCE(4619); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2507); + lookahead == 'b') ADVANCE(2469); END_STATE(); - case 4835: + case 4790: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == '+') ADVANCE(4657); - if (lookahead == '>') ADVANCE(3265); - if (lookahead == 'r') ADVANCE(4664); + if (lookahead == '+') ADVANCE(4612); + if (lookahead == '>') ADVANCE(3225); + if (lookahead == 'r') ADVANCE(4619); END_STATE(); - case 4836: + case 4791: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == '+') ADVANCE(4640); - if (lookahead == '>') ADVANCE(3272); - if (lookahead == 'u') ADVANCE(4675); + if (lookahead == '+') ADVANCE(4595); + if (lookahead == '>') ADVANCE(3232); + if (lookahead == 'u') ADVANCE(4630); END_STATE(); - case 4837: + case 4792: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); ADVANCE_MAP( - '+', 4624, - '-', 4626, - '>', 3265, - 'I', 4689, - '_', 4626, - 'i', 4689, - 'r', 4664, - 'B', 2507, - 'b', 2507, + '+', 4579, + '-', 4581, + '>', 3225, + 'I', 4644, + '_', 4581, + 'i', 4644, + 'r', 4619, + 'B', 2469, + 'b', 2469, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2408); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2370); END_STATE(); - case 4838: + case 4793: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 'I') ADVANCE(4689); - if (lookahead == '_') ADVANCE(4626); - if (lookahead == 'i') ADVANCE(4632); + if (lookahead == 'I') ADVANCE(4644); + if (lookahead == '_') ADVANCE(4581); + if (lookahead == 'i') ADVANCE(4587); if (lookahead == '+' || - lookahead == '-') ADVANCE(4626); + lookahead == '-') ADVANCE(4581); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2507); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2408); + lookahead == 'b') ADVANCE(2469); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2370); END_STATE(); - case 4839: + case 4794: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 'I') ADVANCE(4689); - if (lookahead == 'i') ADVANCE(4689); - if (lookahead == 'r') ADVANCE(4683); + if (lookahead == 'I') ADVANCE(4644); + if (lookahead == 'i') ADVANCE(4644); + if (lookahead == 'r') ADVANCE(4638); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2507); + lookahead == 'b') ADVANCE(2469); END_STATE(); - case 4840: + case 4795: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 'I') ADVANCE(4689); - if (lookahead == 'i') ADVANCE(4689); + if (lookahead == 'I') ADVANCE(4644); + if (lookahead == 'i') ADVANCE(4644); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2507); + lookahead == 'b') ADVANCE(2469); END_STATE(); - case 4841: + case 4796: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 'I') ADVANCE(4689); - if (lookahead == 'i') ADVANCE(4632); + if (lookahead == 'I') ADVANCE(4644); + if (lookahead == 'i') ADVANCE(4587); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2507); + lookahead == 'b') ADVANCE(2469); END_STATE(); - case 4842: + case 4797: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 'I') ADVANCE(4689); - if (lookahead == 'i') ADVANCE(4654); - if (lookahead == 's') ADVANCE(2517); + if (lookahead == 'I') ADVANCE(4644); + if (lookahead == 'i') ADVANCE(4609); + if (lookahead == 's') ADVANCE(2479); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2507); + lookahead == 'b') ADVANCE(2469); END_STATE(); - case 4843: + case 4798: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); if (lookahead == 'I') ADVANCE(987); if (lookahead == '_') ADVANCE(830); @@ -75248,10 +73004,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '+' || lookahead == '-') ADVANCE(830); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2507); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2408); + lookahead == 'b') ADVANCE(2469); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2370); END_STATE(); - case 4844: + case 4799: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); if (lookahead == 'I') ADVANCE(987); if (lookahead == '_') ADVANCE(830); @@ -75259,549 +73015,549 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '+' || lookahead == '-') ADVANCE(830); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2507); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2408); + lookahead == 'b') ADVANCE(2469); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2370); END_STATE(); - case 4845: + case 4800: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); if (lookahead == 'I') ADVANCE(987); if (lookahead == 'i') ADVANCE(987); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2507); + lookahead == 'b') ADVANCE(2469); END_STATE(); - case 4846: + case 4801: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); if (lookahead == 'I') ADVANCE(987); if (lookahead == 'i') ADVANCE(846); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2507); + lookahead == 'b') ADVANCE(2469); END_STATE(); - case 4847: + case 4802: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); if (lookahead == 'I') ADVANCE(987); if (lookahead == 'i') ADVANCE(904); - if (lookahead == 's') ADVANCE(2517); + if (lookahead == 's') ADVANCE(2479); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2507); + lookahead == 'b') ADVANCE(2469); END_STATE(); - case 4848: + case 4803: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == '_') ADVANCE(4622); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2475); + if (lookahead == '_') ADVANCE(4577); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2437); END_STATE(); - case 4849: + case 4804: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); if (lookahead == '_') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); END_STATE(); - case 4850: + case 4805: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == '_') ADVANCE(4627); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2406); + if (lookahead == '_') ADVANCE(4582); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); END_STATE(); - case 4851: + case 4806: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == '_') ADVANCE(2475); - if (lookahead == 'b') ADVANCE(2502); - if (lookahead == 'o') ADVANCE(2523); - if (lookahead == 'x') ADVANCE(2530); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2468); + if (lookahead == '_') ADVANCE(2437); + if (lookahead == 'b') ADVANCE(2464); + if (lookahead == 'o') ADVANCE(2485); + if (lookahead == 'x') ADVANCE(2492); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2430); END_STATE(); - case 4852: + case 4807: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == '_') ADVANCE(2475); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2468); + if (lookahead == '_') ADVANCE(2437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2430); END_STATE(); - case 4853: + case 4808: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 'a') ADVANCE(4649); + if (lookahead == 'a') ADVANCE(4604); END_STATE(); - case 4854: + case 4809: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 'a') ADVANCE(4687); + if (lookahead == 'a') ADVANCE(4642); END_STATE(); - case 4855: + case 4810: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); if (lookahead == 'a') ADVANCE(980); END_STATE(); - case 4856: + case 4811: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 'e') ADVANCE(4633); + if (lookahead == 'e') ADVANCE(4588); END_STATE(); - case 4857: + case 4812: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); if (lookahead == 'e') ADVANCE(847); END_STATE(); - case 4858: + case 4813: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 'k') ADVANCE(2517); + if (lookahead == 'k') ADVANCE(2479); END_STATE(); - case 4859: + case 4814: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 'r') ADVANCE(4683); + if (lookahead == 'r') ADVANCE(4638); END_STATE(); - case 4860: + case 4815: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 'r') ADVANCE(2517); + if (lookahead == 'r') ADVANCE(2479); END_STATE(); - case 4861: + case 4816: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 's') ADVANCE(2517); + if (lookahead == 's') ADVANCE(2479); END_STATE(); - case 4862: + case 4817: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 's') ADVANCE(2517); - if (lookahead == 'u') ADVANCE(4652); + if (lookahead == 's') ADVANCE(2479); + if (lookahead == 'u') ADVANCE(4607); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4693); + lookahead == 'a') ADVANCE(4648); END_STATE(); - case 4863: + case 4818: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 'u') ADVANCE(4652); + if (lookahead == 'u') ADVANCE(4607); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4693); + lookahead == 'a') ADVANCE(4648); END_STATE(); - case 4864: + case 4819: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4693); + lookahead == 'a') ADVANCE(4648); END_STATE(); - case 4865: + case 4820: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4690); + lookahead == 'n') ADVANCE(4645); END_STATE(); - case 4866: + case 4821: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '+') ADVANCE(4896); - if (lookahead == '>') ADVANCE(3268); - if (lookahead == 'r') ADVANCE(4899); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (lookahead == '+') ADVANCE(4851); + if (lookahead == '>') ADVANCE(3228); + if (lookahead == 'r') ADVANCE(4854); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4867: + case 4822: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '+') ADVANCE(4891); - if (lookahead == '>') ADVANCE(3275); - if (lookahead == 'u') ADVANCE(4903); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (lookahead == '+') ADVANCE(4846); + if (lookahead == '>') ADVANCE(3235); + if (lookahead == 'u') ADVANCE(4858); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4868: + case 4823: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '+') ADVANCE(4897); - if (lookahead == '>') ADVANCE(3254); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (lookahead == '+') ADVANCE(4852); + if (lookahead == '>') ADVANCE(3214); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4869: + case 4824: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '+') ADVANCE(4892); - if (lookahead == '>') ADVANCE(3261); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (lookahead == '+') ADVANCE(4847); + if (lookahead == '>') ADVANCE(3221); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4870: + case 4825: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '-') ADVANCE(4929); - if (lookahead == '_') ADVANCE(4884); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4884); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (lookahead == '-') ADVANCE(4884); + if (lookahead == '_') ADVANCE(4839); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4839); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4871: + case 4826: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '-') ADVANCE(4930); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (lookahead == '-') ADVANCE(4885); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4872: + case 4827: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '.') ADVANCE(4884); - if (lookahead == '_') ADVANCE(4872); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4884); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4936); + if (lookahead == '.') ADVANCE(4839); + if (lookahead == '_') ADVANCE(4827); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4839); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4891); END_STATE(); - case 4873: + case 4828: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '.') ADVANCE(4927); + if (lookahead == '.') ADVANCE(4882); if (lookahead == '+' || - lookahead == '-') ADVANCE(4874); + lookahead == '-') ADVANCE(4829); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4936); + lookahead == 'z') ADVANCE(4891); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(4891); END_STATE(); - case 4874: + case 4829: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '2') ADVANCE(4919); + if (lookahead == '2') ADVANCE(4874); if (lookahead == '0' || - lookahead == '1') ADVANCE(4928); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + lookahead == '1') ADVANCE(4883); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4875: + case 4830: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == ':') ADVANCE(4920); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4922); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (lookahead == ':') ADVANCE(4875); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4877); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4876: + case 4831: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == ':') ADVANCE(4932); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (lookahead == ':') ADVANCE(4887); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4877: + case 4832: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == ':') ADVANCE(4934); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (lookahead == ':') ADVANCE(4889); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4878: + case 4833: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '>') ADVANCE(3303); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (lookahead == '>') ADVANCE(3263); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4879: + case 4834: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '>') ADVANCE(3296); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (lookahead == '>') ADVANCE(3256); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4880: + case 4835: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '>') ADVANCE(3282); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (lookahead == '>') ADVANCE(3242); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4881: + case 4836: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '>') ADVANCE(3289); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (lookahead == '>') ADVANCE(3249); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4882: + case 4837: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'T') ADVANCE(4931); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (lookahead == 'T') ADVANCE(4886); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4883: + case 4838: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '_') ADVANCE(4884); - if (lookahead == 'b') ADVANCE(2505); - if (lookahead == 'o') ADVANCE(2526); - if (lookahead == 'x') ADVANCE(2533); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4886); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (lookahead == '_') ADVANCE(4839); + if (lookahead == 'b') ADVANCE(2467); + if (lookahead == 'o') ADVANCE(2488); + if (lookahead == 'x') ADVANCE(2495); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4841); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4884: + case 4839: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '_') ADVANCE(4884); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4884); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (lookahead == '_') ADVANCE(4839); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4839); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4885: + case 4840: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '_') ADVANCE(4884); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4870); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (lookahead == '_') ADVANCE(4839); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4825); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4886: + case 4841: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '_') ADVANCE(4884); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4885); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (lookahead == '_') ADVANCE(4839); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4840); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4887: + case 4842: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '_') ADVANCE(4884); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4886); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (lookahead == '_') ADVANCE(4839); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4841); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4888: + case 4843: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'a') ADVANCE(4893); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (lookahead == 'a') ADVANCE(4848); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4889: + case 4844: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'e') ADVANCE(2437); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (lookahead == 'e') ADVANCE(2399); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4890: + case 4845: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'e') ADVANCE(2450); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (lookahead == 'e') ADVANCE(2412); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4891: + case 4846: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'e') ADVANCE(4879); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (lookahead == 'e') ADVANCE(4834); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4892: + case 4847: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'e') ADVANCE(4900); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (lookahead == 'e') ADVANCE(4855); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4893: + case 4848: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'l') ADVANCE(4902); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (lookahead == 'l') ADVANCE(4857); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4894: + case 4849: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'l') ADVANCE(2423); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (lookahead == 'l') ADVANCE(2385); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4895: + case 4850: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'l') ADVANCE(4894); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (lookahead == 'l') ADVANCE(4849); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4896: + case 4851: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'o') ADVANCE(4878); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (lookahead == 'o') ADVANCE(4833); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4897: + case 4852: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'o') ADVANCE(4907); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (lookahead == 'o') ADVANCE(4862); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4898: + case 4853: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'r') ADVANCE(4906); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (lookahead == 'r') ADVANCE(4861); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4899: + case 4854: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'r') ADVANCE(4868); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (lookahead == 'r') ADVANCE(4823); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4900: + case 4855: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'r') ADVANCE(4901); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (lookahead == 'r') ADVANCE(4856); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4901: + case 4856: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'r') ADVANCE(4881); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (lookahead == 'r') ADVANCE(4836); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4902: + case 4857: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 's') ADVANCE(4890); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (lookahead == 's') ADVANCE(4845); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4903: + case 4858: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 't') ADVANCE(4869); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (lookahead == 't') ADVANCE(4824); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4904: + case 4859: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 't') ADVANCE(4880); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (lookahead == 't') ADVANCE(4835); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4905: + case 4860: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'u') ADVANCE(4895); + if (lookahead == 'u') ADVANCE(4850); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4913); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + lookahead == 'a') ADVANCE(4868); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4906: + case 4861: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'u') ADVANCE(4889); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (lookahead == 'u') ADVANCE(4844); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4907: + case 4862: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'u') ADVANCE(4904); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (lookahead == 'u') ADVANCE(4859); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4908: + case 4863: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); if (lookahead == '+' || - lookahead == '-') ADVANCE(4874); + lookahead == '-') ADVANCE(4829); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4936); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4908); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + lookahead == 'z') ADVANCE(4891); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4863); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4909: + case 4864: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4913); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + lookahead == 'a') ADVANCE(4868); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4910: + case 4865: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4912); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + lookahead == 'f') ADVANCE(4867); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4911: + case 4866: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4916); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + lookahead == 'i') ADVANCE(4871); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4912: + case 4867: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4915); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + lookahead == 'i') ADVANCE(4870); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4913: + case 4868: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + lookahead == 'n') ADVANCE(4891); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4914: + case 4869: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4910); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + lookahead == 'n') ADVANCE(4865); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4915: + case 4870: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4911); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + lookahead == 'n') ADVANCE(4866); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4916: + case 4871: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); if (lookahead == 'T' || - lookahead == 't') ADVANCE(4917); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + lookahead == 't') ADVANCE(4872); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4917: + case 4872: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + lookahead == 'y') ADVANCE(4891); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4918: + case 4873: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(4918); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + lookahead == '_') ADVANCE(4873); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4919: + case 4874: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4875); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4830); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4920: + case 4875: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4922); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4877); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4921: + case 4876: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4921); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + lookahead == '_') ADVANCE(4876); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4922: + case 4877: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4891); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4923: + case 4878: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4871); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4826); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4924: + case 4879: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4882); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4837); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4925: + case 4880: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4877); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4832); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4926: + case 4881: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4873); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4828); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4927: + case 4882: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4908); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4863); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4928: + case 4883: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4875); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4830); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4929: + case 4884: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4923); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4878); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4930: + case 4885: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4924); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4879); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4931: + case 4886: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4925); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4880); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4932: + case 4887: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4926); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4881); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4933: + case 4888: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4876); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4831); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4934: + case 4889: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4933); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4888); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4935: + case 4890: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4935); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4890); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4936: + case 4891: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4937: + case 4892: ACCEPT_TOKEN(aux_sym__unquoted_with_expr_token1); - if (lookahead == '#') ADVANCE(4954); + if (lookahead == '#') ADVANCE(4909); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '(' && lookahead != ')' && - lookahead != ';') ADVANCE(4938); + lookahead != ';') ADVANCE(4893); END_STATE(); - case 4938: + case 4893: ACCEPT_TOKEN(aux_sym__unquoted_with_expr_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '(' && lookahead != ')' && - lookahead != ';') ADVANCE(4938); + lookahead != ';') ADVANCE(4893); END_STATE(); - case 4939: + case 4894: ACCEPT_TOKEN(aux_sym__unquoted_in_list_with_expr_token1); - if (lookahead == '#') ADVANCE(4953); + if (lookahead == '#') ADVANCE(4908); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '(' && lookahead != ')' && lookahead != ',' && - lookahead != ';') ADVANCE(4940); + lookahead != ';') ADVANCE(4895); END_STATE(); - case 4940: + case 4895: ACCEPT_TOKEN(aux_sym__unquoted_in_list_with_expr_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -75809,63 +73565,63 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ',' && - lookahead != ';') ADVANCE(4940); + lookahead != ';') ADVANCE(4895); END_STATE(); - case 4941: + case 4896: ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); - case 4942: + case 4897: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '\n') ADVANCE(1286); + if (lookahead == '\n') ADVANCE(1256); if (lookahead != 0) ADVANCE(42); END_STATE(); - case 4943: + case 4898: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(1285); + if (lookahead == '!') ADVANCE(1255); END_STATE(); - case 4944: + case 4899: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == ',') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2727); + if (lookahead == ',') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4085); END_STATE(); - case 4945: + case 4900: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == ',') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4129); + if (lookahead == ',') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2689); END_STATE(); - case 4946: + case 4901: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead == ',' || - lookahead == ':') ADVANCE(3199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3160); + lookahead == ':') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4513); END_STATE(); - case 4947: + case 4902: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead == ',' || - lookahead == ':') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4558); + lookahead == ':') ADVANCE(3160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3121); END_STATE(); - case 4948: + case 4903: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3215); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(3175); END_STATE(); - case 4949: + case 4904: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4936); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4891); END_STATE(); - case 4950: + case 4905: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4810); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(4765); END_STATE(); - case 4951: + case 4906: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3199); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4552); END_STATE(); - case 4952: + case 4907: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3160); END_STATE(); - case 4953: + case 4908: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -75873,35 +73629,35 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ',' && - lookahead != ';') ADVANCE(4940); + lookahead != ';') ADVANCE(4895); END_STATE(); - case 4954: + case 4909: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '(' && lookahead != ')' && - lookahead != ';') ADVANCE(4938); + lookahead != ';') ADVANCE(4893); END_STATE(); - case 4955: + case 4910: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && - lookahead != '\n') ADVANCE(4957); + lookahead != '\n') ADVANCE(4912); END_STATE(); - case 4956: + case 4911: ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '#') ADVANCE(4955); + if (lookahead == '#') ADVANCE(4910); if (lookahead == '\t' || (0x0b <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(4956); + lookahead == ' ') ADVANCE(4911); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(4957); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(4912); END_STATE(); - case 4957: + case 4912: ACCEPT_TOKEN(aux_sym_comment_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(4957); + lookahead != '\n') ADVANCE(4912); END_STATE(); default: return false; @@ -76410,7 +74166,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 1283}, + [1] = {.lex_state = 1253}, [2] = {.lex_state = 356}, [3] = {.lex_state = 356}, [4] = {.lex_state = 356}, @@ -76452,1668 +74208,1668 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [40] = {.lex_state = 356}, [41] = {.lex_state = 356}, [42] = {.lex_state = 356}, - [43] = {.lex_state = 356}, - [44] = {.lex_state = 356}, - [45] = {.lex_state = 1281}, - [46] = {.lex_state = 1281}, - [47] = {.lex_state = 1281}, - [48] = {.lex_state = 1281}, - [49] = {.lex_state = 1281}, - [50] = {.lex_state = 1281}, - [51] = {.lex_state = 1281}, - [52] = {.lex_state = 339}, - [53] = {.lex_state = 1281}, + [43] = {.lex_state = 1251}, + [44] = {.lex_state = 1251}, + [45] = {.lex_state = 1251}, + [46] = {.lex_state = 1251}, + [47] = {.lex_state = 1251}, + [48] = {.lex_state = 1251}, + [49] = {.lex_state = 1251}, + [50] = {.lex_state = 1251}, + [51] = {.lex_state = 339}, + [52] = {.lex_state = 1251}, + [53] = {.lex_state = 1251}, [54] = {.lex_state = 339}, [55] = {.lex_state = 339}, - [56] = {.lex_state = 1281}, - [57] = {.lex_state = 1281}, - [58] = {.lex_state = 339}, - [59] = {.lex_state = 1281}, - [60] = {.lex_state = 1281}, - [61] = {.lex_state = 339}, - [62] = {.lex_state = 1281}, - [63] = {.lex_state = 1281}, + [56] = {.lex_state = 1251}, + [57] = {.lex_state = 1251}, + [58] = {.lex_state = 1251}, + [59] = {.lex_state = 339}, + [60] = {.lex_state = 1251}, + [61] = {.lex_state = 1251}, + [62] = {.lex_state = 339}, + [63] = {.lex_state = 1251}, [64] = {.lex_state = 339}, - [65] = {.lex_state = 1281}, + [65] = {.lex_state = 1251}, [66] = {.lex_state = 339}, - [67] = {.lex_state = 339}, - [68] = {.lex_state = 1281}, - [69] = {.lex_state = 1281}, + [67] = {.lex_state = 1251}, + [68] = {.lex_state = 339}, + [69] = {.lex_state = 1251}, [70] = {.lex_state = 339}, - [71] = {.lex_state = 1281}, - [72] = {.lex_state = 1281}, - [73] = {.lex_state = 339}, - [74] = {.lex_state = 1281}, - [75] = {.lex_state = 339}, + [71] = {.lex_state = 1251}, + [72] = {.lex_state = 339}, + [73] = {.lex_state = 1251}, + [74] = {.lex_state = 339}, + [75] = {.lex_state = 1251}, [76] = {.lex_state = 339}, - [77] = {.lex_state = 1281}, - [78] = {.lex_state = 1281}, - [79] = {.lex_state = 339}, - [80] = {.lex_state = 1281}, - [81] = {.lex_state = 1281}, + [77] = {.lex_state = 1251}, + [78] = {.lex_state = 339}, + [79] = {.lex_state = 1251}, + [80] = {.lex_state = 339}, + [81] = {.lex_state = 1251}, [82] = {.lex_state = 339}, - [83] = {.lex_state = 339}, - [84] = {.lex_state = 1281}, - [85] = {.lex_state = 339}, + [83] = {.lex_state = 1251}, + [84] = {.lex_state = 339}, + [85] = {.lex_state = 1251}, [86] = {.lex_state = 339}, - [87] = {.lex_state = 1281}, - [88] = {.lex_state = 1281}, - [89] = {.lex_state = 339}, - [90] = {.lex_state = 1281}, - [91] = {.lex_state = 339}, + [87] = {.lex_state = 1251}, + [88] = {.lex_state = 339}, + [89] = {.lex_state = 1251}, + [90] = {.lex_state = 339}, + [91] = {.lex_state = 1251}, [92] = {.lex_state = 339}, - [93] = {.lex_state = 1281}, + [93] = {.lex_state = 1251}, [94] = {.lex_state = 339}, - [95] = {.lex_state = 339}, - [96] = {.lex_state = 1281}, - [97] = {.lex_state = 1281}, + [95] = {.lex_state = 1251}, + [96] = {.lex_state = 339}, + [97] = {.lex_state = 1251}, [98] = {.lex_state = 339}, - [99] = {.lex_state = 1281}, - [100] = {.lex_state = 1281}, - [101] = {.lex_state = 339}, - [102] = {.lex_state = 1281}, - [103] = {.lex_state = 339}, + [99] = {.lex_state = 1251}, + [100] = {.lex_state = 339}, + [101] = {.lex_state = 1251}, + [102] = {.lex_state = 339}, + [103] = {.lex_state = 1251}, [104] = {.lex_state = 339}, - [105] = {.lex_state = 1281}, - [106] = {.lex_state = 1281}, - [107] = {.lex_state = 339}, - [108] = {.lex_state = 1281}, - [109] = {.lex_state = 1281}, + [105] = {.lex_state = 1251}, + [106] = {.lex_state = 339}, + [107] = {.lex_state = 1251}, + [108] = {.lex_state = 339}, + [109] = {.lex_state = 1251}, [110] = {.lex_state = 339}, - [111] = {.lex_state = 1281}, + [111] = {.lex_state = 1251}, [112] = {.lex_state = 339}, - [113] = {.lex_state = 339}, - [114] = {.lex_state = 1281}, - [115] = {.lex_state = 1281}, - [116] = {.lex_state = 339}, - [117] = {.lex_state = 339}, - [118] = {.lex_state = 339}, - [119] = {.lex_state = 339}, - [120] = {.lex_state = 1281}, - [121] = {.lex_state = 1281}, - [122] = {.lex_state = 1281}, - [123] = {.lex_state = 1281}, - [124] = {.lex_state = 1281}, - [125] = {.lex_state = 1281}, - [126] = {.lex_state = 1281}, - [127] = {.lex_state = 1281}, - [128] = {.lex_state = 1281}, - [129] = {.lex_state = 1281}, - [130] = {.lex_state = 1281}, - [131] = {.lex_state = 1281}, - [132] = {.lex_state = 1281}, - [133] = {.lex_state = 1281}, - [134] = {.lex_state = 1281}, - [135] = {.lex_state = 1281}, - [136] = {.lex_state = 1281}, - [137] = {.lex_state = 1281}, - [138] = {.lex_state = 1281}, - [139] = {.lex_state = 1281}, - [140] = {.lex_state = 1281}, - [141] = {.lex_state = 1281}, - [142] = {.lex_state = 1281}, - [143] = {.lex_state = 1281}, - [144] = {.lex_state = 1281}, - [145] = {.lex_state = 1281}, - [146] = {.lex_state = 1281}, - [147] = {.lex_state = 1281}, - [148] = {.lex_state = 1281}, - [149] = {.lex_state = 1281}, - [150] = {.lex_state = 1281}, - [151] = {.lex_state = 339}, - [152] = {.lex_state = 1281}, - [153] = {.lex_state = 1281}, - [154] = {.lex_state = 1281}, - [155] = {.lex_state = 1281}, - [156] = {.lex_state = 1281}, - [157] = {.lex_state = 1281}, - [158] = {.lex_state = 1281}, - [159] = {.lex_state = 1281}, - [160] = {.lex_state = 1281}, - [161] = {.lex_state = 1281}, - [162] = {.lex_state = 1281}, - [163] = {.lex_state = 1281}, - [164] = {.lex_state = 1281}, - [165] = {.lex_state = 1281}, - [166] = {.lex_state = 1281}, - [167] = {.lex_state = 1281}, - [168] = {.lex_state = 1281}, - [169] = {.lex_state = 1281}, - [170] = {.lex_state = 1281}, - [171] = {.lex_state = 1281}, - [172] = {.lex_state = 1281}, - [173] = {.lex_state = 1281}, - [174] = {.lex_state = 1281}, - [175] = {.lex_state = 1281}, - [176] = {.lex_state = 1281}, - [177] = {.lex_state = 1281}, - [178] = {.lex_state = 1281}, - [179] = {.lex_state = 1281}, - [180] = {.lex_state = 1281}, - [181] = {.lex_state = 1281}, - [182] = {.lex_state = 1281}, - [183] = {.lex_state = 1281}, - [184] = {.lex_state = 1281}, - [185] = {.lex_state = 1281}, - [186] = {.lex_state = 1281}, - [187] = {.lex_state = 1281}, - [188] = {.lex_state = 1281}, - [189] = {.lex_state = 1281}, - [190] = {.lex_state = 1281}, - [191] = {.lex_state = 1281}, - [192] = {.lex_state = 1281}, - [193] = {.lex_state = 1281}, - [194] = {.lex_state = 1281}, - [195] = {.lex_state = 1281}, - [196] = {.lex_state = 1281}, - [197] = {.lex_state = 1281}, - [198] = {.lex_state = 1281}, - [199] = {.lex_state = 1281}, - [200] = {.lex_state = 1281}, - [201] = {.lex_state = 1281}, - [202] = {.lex_state = 1281}, - [203] = {.lex_state = 1281}, - [204] = {.lex_state = 1281}, - [205] = {.lex_state = 1281}, - [206] = {.lex_state = 1281}, - [207] = {.lex_state = 1281}, - [208] = {.lex_state = 1281}, - [209] = {.lex_state = 1281}, - [210] = {.lex_state = 1281}, - [211] = {.lex_state = 1281}, - [212] = {.lex_state = 1281}, - [213] = {.lex_state = 1281}, - [214] = {.lex_state = 1281}, - [215] = {.lex_state = 1281}, - [216] = {.lex_state = 1281}, - [217] = {.lex_state = 1281}, - [218] = {.lex_state = 1281}, - [219] = {.lex_state = 1281}, - [220] = {.lex_state = 1281}, - [221] = {.lex_state = 1281}, - [222] = {.lex_state = 1281}, - [223] = {.lex_state = 1281}, - [224] = {.lex_state = 1281}, - [225] = {.lex_state = 1281}, - [226] = {.lex_state = 1281}, - [227] = {.lex_state = 1281}, - [228] = {.lex_state = 1281}, - [229] = {.lex_state = 1281}, - [230] = {.lex_state = 1281}, - [231] = {.lex_state = 1281}, - [232] = {.lex_state = 1281}, - [233] = {.lex_state = 1281}, - [234] = {.lex_state = 1281}, - [235] = {.lex_state = 1281}, - [236] = {.lex_state = 1281}, - [237] = {.lex_state = 1281}, - [238] = {.lex_state = 1281}, - [239] = {.lex_state = 1281}, - [240] = {.lex_state = 1281}, - [241] = {.lex_state = 1281}, - [242] = {.lex_state = 1281}, - [243] = {.lex_state = 1281}, - [244] = {.lex_state = 1281}, - [245] = {.lex_state = 1281}, - [246] = {.lex_state = 1281}, - [247] = {.lex_state = 1281}, - [248] = {.lex_state = 1281}, - [249] = {.lex_state = 1035}, - [250] = {.lex_state = 1037}, - [251] = {.lex_state = 1037}, - [252] = {.lex_state = 1037}, - [253] = {.lex_state = 1037}, - [254] = {.lex_state = 1035}, - [255] = {.lex_state = 1037}, - [256] = {.lex_state = 1038}, - [257] = {.lex_state = 1098}, - [258] = {.lex_state = 1038}, - [259] = {.lex_state = 1038}, - [260] = {.lex_state = 1037}, - [261] = {.lex_state = 1037}, - [262] = {.lex_state = 1038}, - [263] = {.lex_state = 1031}, - [264] = {.lex_state = 1038}, - [265] = {.lex_state = 1037}, - [266] = {.lex_state = 1065}, - [267] = {.lex_state = 1032}, - [268] = {.lex_state = 1065}, - [269] = {.lex_state = 1065}, - [270] = {.lex_state = 1065}, - [271] = {.lex_state = 1065}, - [272] = {.lex_state = 1038}, - [273] = {.lex_state = 1038}, - [274] = {.lex_state = 1032}, - [275] = {.lex_state = 1031}, - [276] = {.lex_state = 1038}, - [277] = {.lex_state = 1038}, - [278] = {.lex_state = 1038}, - [279] = {.lex_state = 1032}, - [280] = {.lex_state = 1032}, - [281] = {.lex_state = 1098}, - [282] = {.lex_state = 1104}, - [283] = {.lex_state = 1065}, - [284] = {.lex_state = 1033}, - [285] = {.lex_state = 1104}, - [286] = {.lex_state = 1065}, - [287] = {.lex_state = 1033}, - [288] = {.lex_state = 1065}, - [289] = {.lex_state = 1065}, - [290] = {.lex_state = 1065}, - [291] = {.lex_state = 1065}, - [292] = {.lex_state = 1065}, - [293] = {.lex_state = 1065}, - [294] = {.lex_state = 1065}, - [295] = {.lex_state = 1032}, - [296] = {.lex_state = 1100}, - [297] = {.lex_state = 1064}, - [298] = {.lex_state = 1056}, - [299] = {.lex_state = 1032}, - [300] = {.lex_state = 1032}, - [301] = {.lex_state = 1032}, - [302] = {.lex_state = 1033}, - [303] = {.lex_state = 1033}, - [304] = {.lex_state = 1064}, - [305] = {.lex_state = 1033}, - [306] = {.lex_state = 1065}, - [307] = {.lex_state = 1065}, - [308] = {.lex_state = 1065}, - [309] = {.lex_state = 1065}, - [310] = {.lex_state = 1065}, - [311] = {.lex_state = 1065}, - [312] = {.lex_state = 1065}, - [313] = {.lex_state = 1100}, + [113] = {.lex_state = 1251}, + [114] = {.lex_state = 339}, + [115] = {.lex_state = 1251}, + [116] = {.lex_state = 1251}, + [117] = {.lex_state = 1251}, + [118] = {.lex_state = 1251}, + [119] = {.lex_state = 1251}, + [120] = {.lex_state = 1251}, + [121] = {.lex_state = 1251}, + [122] = {.lex_state = 1251}, + [123] = {.lex_state = 1251}, + [124] = {.lex_state = 1251}, + [125] = {.lex_state = 1251}, + [126] = {.lex_state = 1251}, + [127] = {.lex_state = 1251}, + [128] = {.lex_state = 1251}, + [129] = {.lex_state = 1251}, + [130] = {.lex_state = 1251}, + [131] = {.lex_state = 1251}, + [132] = {.lex_state = 1251}, + [133] = {.lex_state = 1251}, + [134] = {.lex_state = 1251}, + [135] = {.lex_state = 1251}, + [136] = {.lex_state = 1251}, + [137] = {.lex_state = 1251}, + [138] = {.lex_state = 1251}, + [139] = {.lex_state = 1251}, + [140] = {.lex_state = 1251}, + [141] = {.lex_state = 1251}, + [142] = {.lex_state = 1251}, + [143] = {.lex_state = 1251}, + [144] = {.lex_state = 1251}, + [145] = {.lex_state = 1251}, + [146] = {.lex_state = 1251}, + [147] = {.lex_state = 1251}, + [148] = {.lex_state = 1251}, + [149] = {.lex_state = 1251}, + [150] = {.lex_state = 1251}, + [151] = {.lex_state = 1251}, + [152] = {.lex_state = 1251}, + [153] = {.lex_state = 1251}, + [154] = {.lex_state = 1251}, + [155] = {.lex_state = 1251}, + [156] = {.lex_state = 1251}, + [157] = {.lex_state = 1251}, + [158] = {.lex_state = 1251}, + [159] = {.lex_state = 1251}, + [160] = {.lex_state = 1251}, + [161] = {.lex_state = 1251}, + [162] = {.lex_state = 1251}, + [163] = {.lex_state = 1251}, + [164] = {.lex_state = 1251}, + [165] = {.lex_state = 1251}, + [166] = {.lex_state = 1251}, + [167] = {.lex_state = 1251}, + [168] = {.lex_state = 1251}, + [169] = {.lex_state = 1251}, + [170] = {.lex_state = 1251}, + [171] = {.lex_state = 1251}, + [172] = {.lex_state = 1251}, + [173] = {.lex_state = 1251}, + [174] = {.lex_state = 1251}, + [175] = {.lex_state = 1251}, + [176] = {.lex_state = 1251}, + [177] = {.lex_state = 1251}, + [178] = {.lex_state = 1251}, + [179] = {.lex_state = 1251}, + [180] = {.lex_state = 1251}, + [181] = {.lex_state = 1251}, + [182] = {.lex_state = 1251}, + [183] = {.lex_state = 1251}, + [184] = {.lex_state = 1251}, + [185] = {.lex_state = 1251}, + [186] = {.lex_state = 1251}, + [187] = {.lex_state = 1251}, + [188] = {.lex_state = 1251}, + [189] = {.lex_state = 1251}, + [190] = {.lex_state = 1251}, + [191] = {.lex_state = 1251}, + [192] = {.lex_state = 1251}, + [193] = {.lex_state = 1251}, + [194] = {.lex_state = 1251}, + [195] = {.lex_state = 1251}, + [196] = {.lex_state = 1251}, + [197] = {.lex_state = 1251}, + [198] = {.lex_state = 1251}, + [199] = {.lex_state = 1251}, + [200] = {.lex_state = 1251}, + [201] = {.lex_state = 1251}, + [202] = {.lex_state = 1251}, + [203] = {.lex_state = 1251}, + [204] = {.lex_state = 1251}, + [205] = {.lex_state = 1251}, + [206] = {.lex_state = 1251}, + [207] = {.lex_state = 1251}, + [208] = {.lex_state = 1251}, + [209] = {.lex_state = 1251}, + [210] = {.lex_state = 1251}, + [211] = {.lex_state = 1251}, + [212] = {.lex_state = 1251}, + [213] = {.lex_state = 1251}, + [214] = {.lex_state = 1251}, + [215] = {.lex_state = 1251}, + [216] = {.lex_state = 1251}, + [217] = {.lex_state = 1251}, + [218] = {.lex_state = 1251}, + [219] = {.lex_state = 1251}, + [220] = {.lex_state = 1251}, + [221] = {.lex_state = 1251}, + [222] = {.lex_state = 1251}, + [223] = {.lex_state = 1251}, + [224] = {.lex_state = 1251}, + [225] = {.lex_state = 1251}, + [226] = {.lex_state = 1251}, + [227] = {.lex_state = 1251}, + [228] = {.lex_state = 1251}, + [229] = {.lex_state = 1251}, + [230] = {.lex_state = 1251}, + [231] = {.lex_state = 1251}, + [232] = {.lex_state = 1251}, + [233] = {.lex_state = 1030}, + [234] = {.lex_state = 1032}, + [235] = {.lex_state = 1032}, + [236] = {.lex_state = 1030}, + [237] = {.lex_state = 1032}, + [238] = {.lex_state = 1032}, + [239] = {.lex_state = 1082}, + [240] = {.lex_state = 1033}, + [241] = {.lex_state = 1033}, + [242] = {.lex_state = 1033}, + [243] = {.lex_state = 1032}, + [244] = {.lex_state = 1032}, + [245] = {.lex_state = 1033}, + [246] = {.lex_state = 1032}, + [247] = {.lex_state = 1032}, + [248] = {.lex_state = 1033}, + [249] = {.lex_state = 1087}, + [250] = {.lex_state = 1033}, + [251] = {.lex_state = 1050}, + [252] = {.lex_state = 1050}, + [253] = {.lex_state = 1033}, + [254] = {.lex_state = 1033}, + [255] = {.lex_state = 1050}, + [256] = {.lex_state = 1050}, + [257] = {.lex_state = 1050}, + [258] = {.lex_state = 1033}, + [259] = {.lex_state = 1033}, + [260] = {.lex_state = 1082}, + [261] = {.lex_state = 1050}, + [262] = {.lex_state = 1050}, + [263] = {.lex_state = 1050}, + [264] = {.lex_state = 1050}, + [265] = {.lex_state = 1050}, + [266] = {.lex_state = 1050}, + [267] = {.lex_state = 1087}, + [268] = {.lex_state = 1050}, + [269] = {.lex_state = 1050}, + [270] = {.lex_state = 1050}, + [271] = {.lex_state = 1050}, + [272] = {.lex_state = 1050}, + [273] = {.lex_state = 1050}, + [274] = {.lex_state = 1050}, + [275] = {.lex_state = 1050}, + [276] = {.lex_state = 1050}, + [277] = {.lex_state = 1050}, + [278] = {.lex_state = 1059}, + [279] = {.lex_state = 1059}, + [280] = {.lex_state = 1059}, + [281] = {.lex_state = 1050}, + [282] = {.lex_state = 1050}, + [283] = {.lex_state = 1050}, + [284] = {.lex_state = 1061}, + [285] = {.lex_state = 1059}, + [286] = {.lex_state = 1059}, + [287] = {.lex_state = 1059}, + [288] = {.lex_state = 1061}, + [289] = {.lex_state = 1061}, + [290] = {.lex_state = 1059}, + [291] = {.lex_state = 1061}, + [292] = {.lex_state = 1059}, + [293] = {.lex_state = 1059}, + [294] = {.lex_state = 1059}, + [295] = {.lex_state = 1059}, + [296] = {.lex_state = 1059}, + [297] = {.lex_state = 1059}, + [298] = {.lex_state = 1028}, + [299] = {.lex_state = 1028}, + [300] = {.lex_state = 1059}, + [301] = {.lex_state = 1059}, + [302] = {.lex_state = 1028}, + [303] = {.lex_state = 1061}, + [304] = {.lex_state = 1059}, + [305] = {.lex_state = 1061}, + [306] = {.lex_state = 1059}, + [307] = {.lex_state = 1059}, + [308] = {.lex_state = 1061}, + [309] = {.lex_state = 1059}, + [310] = {.lex_state = 1059}, + [311] = {.lex_state = 1059}, + [312] = {.lex_state = 1023}, + [313] = {.lex_state = 1028}, [314] = {.lex_state = 1061}, - [315] = {.lex_state = 1106}, - [316] = {.lex_state = 1061}, - [317] = {.lex_state = 1061}, - [318] = {.lex_state = 1056}, - [319] = {.lex_state = 1055}, - [320] = {.lex_state = 1033}, - [321] = {.lex_state = 1033}, - [322] = {.lex_state = 1033}, - [323] = {.lex_state = 1055}, - [324] = {.lex_state = 1055}, - [325] = {.lex_state = 1055}, - [326] = {.lex_state = 1055}, - [327] = {.lex_state = 1055}, - [328] = {.lex_state = 1061}, - [329] = {.lex_state = 1065}, - [330] = {.lex_state = 1106}, - [331] = {.lex_state = 1062}, - [332] = {.lex_state = 1065}, - [333] = {.lex_state = 1074}, - [334] = {.lex_state = 1062}, - [335] = {.lex_state = 1074}, - [336] = {.lex_state = 1065}, - [337] = {.lex_state = 1062}, - [338] = {.lex_state = 1062}, - [339] = {.lex_state = 1076}, - [340] = {.lex_state = 1055}, - [341] = {.lex_state = 1076}, - [342] = {.lex_state = 1055}, - [343] = {.lex_state = 1076}, - [344] = {.lex_state = 1055}, - [345] = {.lex_state = 1055}, - [346] = {.lex_state = 1074}, - [347] = {.lex_state = 1074}, - [348] = {.lex_state = 1074}, - [349] = {.lex_state = 1074}, - [350] = {.lex_state = 1074}, - [351] = {.lex_state = 1074}, - [352] = {.lex_state = 1055}, - [353] = {.lex_state = 1074}, - [354] = {.lex_state = 1061}, - [355] = {.lex_state = 1074}, - [356] = {.lex_state = 1061}, - [357] = {.lex_state = 1076}, - [358] = {.lex_state = 1055}, - [359] = {.lex_state = 1074}, - [360] = {.lex_state = 1055}, - [361] = {.lex_state = 1055}, - [362] = {.lex_state = 1062}, - [363] = {.lex_state = 1029}, - [364] = {.lex_state = 1024}, - [365] = {.lex_state = 1062}, - [366] = {.lex_state = 1062}, - [367] = {.lex_state = 1074}, - [368] = {.lex_state = 1074}, - [369] = {.lex_state = 1074}, - [370] = {.lex_state = 1076}, - [371] = {.lex_state = 1029}, - [372] = {.lex_state = 1074}, - [373] = {.lex_state = 1029}, - [374] = {.lex_state = 1029}, - [375] = {.lex_state = 1074}, - [376] = {.lex_state = 1055}, + [315] = {.lex_state = 1059}, + [316] = {.lex_state = 1059}, + [317] = {.lex_state = 1059}, + [318] = {.lex_state = 1059}, + [319] = {.lex_state = 1059}, + [320] = {.lex_state = 1}, + [321] = {.lex_state = 1059}, + [322] = {.lex_state = 1059}, + [323] = {.lex_state = 1092}, + [324] = {.lex_state = 1092}, + [325] = {.lex_state = 1059}, + [326] = {.lex_state = 1}, + [327] = {.lex_state = 1059}, + [328] = {.lex_state = 1059}, + [329] = {.lex_state = 1}, + [330] = {.lex_state = 3161}, + [331] = {.lex_state = 1059}, + [332] = {.lex_state = 1059}, + [333] = {.lex_state = 1036}, + [334] = {.lex_state = 1055}, + [335] = {.lex_state = 1092}, + [336] = {.lex_state = 1023}, + [337] = {.lex_state = 1036}, + [338] = {.lex_state = 1}, + [339] = {.lex_state = 1092}, + [340] = {.lex_state = 1092}, + [341] = {.lex_state = 1056}, + [342] = {.lex_state = 1056}, + [343] = {.lex_state = 1056}, + [344] = {.lex_state = 1056}, + [345] = {.lex_state = 1056}, + [346] = {.lex_state = 1056}, + [347] = {.lex_state = 1056}, + [348] = {.lex_state = 1056}, + [349] = {.lex_state = 1056}, + [350] = {.lex_state = 1056}, + [351] = {.lex_state = 1056}, + [352] = {.lex_state = 1056}, + [353] = {.lex_state = 1056}, + [354] = {.lex_state = 1056}, + [355] = {.lex_state = 1056}, + [356] = {.lex_state = 1056}, + [357] = {.lex_state = 1056}, + [358] = {.lex_state = 1056}, + [359] = {.lex_state = 1056}, + [360] = {.lex_state = 1056}, + [361] = {.lex_state = 1056}, + [362] = {.lex_state = 1056}, + [363] = {.lex_state = 1056}, + [364] = {.lex_state = 1056}, + [365] = {.lex_state = 1056}, + [366] = {.lex_state = 1056}, + [367] = {.lex_state = 1056}, + [368] = {.lex_state = 1056}, + [369] = {.lex_state = 1056}, + [370] = {.lex_state = 1056}, + [371] = {.lex_state = 1056}, + [372] = {.lex_state = 1092}, + [373] = {.lex_state = 1056}, + [374] = {.lex_state = 1056}, + [375] = {.lex_state = 1056}, + [376] = {.lex_state = 1056}, [377] = {.lex_state = 1055}, - [378] = {.lex_state = 1074}, - [379] = {.lex_state = 1074}, - [380] = {.lex_state = 1062}, - [381] = {.lex_state = 1074}, - [382] = {.lex_state = 1074}, - [383] = {.lex_state = 1076}, - [384] = {.lex_state = 1074}, - [385] = {.lex_state = 1055}, - [386] = {.lex_state = 1055}, - [387] = {.lex_state = 1055}, - [388] = {.lex_state = 1074}, - [389] = {.lex_state = 1055}, - [390] = {.lex_state = 1074}, - [391] = {.lex_state = 1055}, - [392] = {.lex_state = 1076}, - [393] = {.lex_state = 1074}, - [394] = {.lex_state = 1074}, - [395] = {.lex_state = 1074}, - [396] = {.lex_state = 1076}, - [397] = {.lex_state = 1055}, - [398] = {.lex_state = 1055}, - [399] = {.lex_state = 1063}, - [400] = {.lex_state = 1060}, - [401] = {.lex_state = 1060}, - [402] = {.lex_state = 1060}, - [403] = {.lex_state = 3200}, - [404] = {.lex_state = 1055}, - [405] = {.lex_state = 1111}, - [406] = {.lex_state = 1041}, - [407] = {.lex_state = 1060}, - [408] = {.lex_state = 1060}, - [409] = {.lex_state = 1}, - [410] = {.lex_state = 1060}, - [411] = {.lex_state = 1041}, - [412] = {.lex_state = 1111}, - [413] = {.lex_state = 1074}, - [414] = {.lex_state = 1}, - [415] = {.lex_state = 1070}, - [416] = {.lex_state = 1}, - [417] = {.lex_state = 1}, - [418] = {.lex_state = 1074}, - [419] = {.lex_state = 1024}, - [420] = {.lex_state = 1074}, - [421] = {.lex_state = 1060}, - [422] = {.lex_state = 1060}, - [423] = {.lex_state = 1074}, - [424] = {.lex_state = 1063}, - [425] = {.lex_state = 1111}, - [426] = {.lex_state = 1074}, - [427] = {.lex_state = 1074}, - [428] = {.lex_state = 1060}, - [429] = {.lex_state = 1063}, - [430] = {.lex_state = 1060}, - [431] = {.lex_state = 1111}, - [432] = {.lex_state = 1074}, - [433] = {.lex_state = 1060}, - [434] = {.lex_state = 1063}, - [435] = {.lex_state = 1111}, - [436] = {.lex_state = 1060}, - [437] = {.lex_state = 1074}, - [438] = {.lex_state = 1071}, - [439] = {.lex_state = 1029}, - [440] = {.lex_state = 1041}, - [441] = {.lex_state = 3200}, - [442] = {.lex_state = 1071}, - [443] = {.lex_state = 1071}, - [444] = {.lex_state = 1071}, - [445] = {.lex_state = 1071}, - [446] = {.lex_state = 1071}, - [447] = {.lex_state = 1029}, - [448] = {.lex_state = 1071}, - [449] = {.lex_state = 1071}, - [450] = {.lex_state = 1060}, - [451] = {.lex_state = 1060}, - [452] = {.lex_state = 1029}, - [453] = {.lex_state = 1060}, - [454] = {.lex_state = 1060}, - [455] = {.lex_state = 1111}, - [456] = {.lex_state = 1060}, - [457] = {.lex_state = 1111}, - [458] = {.lex_state = 1111}, - [459] = {.lex_state = 1071}, - [460] = {.lex_state = 1071}, - [461] = {.lex_state = 1071}, - [462] = {.lex_state = 1071}, - [463] = {.lex_state = 1071}, - [464] = {.lex_state = 1071}, - [465] = {.lex_state = 1060}, - [466] = {.lex_state = 1071}, - [467] = {.lex_state = 1063}, - [468] = {.lex_state = 1063}, - [469] = {.lex_state = 1063}, - [470] = {.lex_state = 1071}, - [471] = {.lex_state = 1023}, - [472] = {.lex_state = 1071}, - [473] = {.lex_state = 1071}, - [474] = {.lex_state = 1060}, - [475] = {.lex_state = 1060}, - [476] = {.lex_state = 1071}, - [477] = {.lex_state = 1071}, - [478] = {.lex_state = 1060}, - [479] = {.lex_state = 1041}, - [480] = {.lex_state = 1071}, - [481] = {.lex_state = 1071}, - [482] = {.lex_state = 1071}, - [483] = {.lex_state = 1071}, - [484] = {.lex_state = 1111}, - [485] = {.lex_state = 1071}, - [486] = {.lex_state = 1071}, - [487] = {.lex_state = 1071}, - [488] = {.lex_state = 1071}, - [489] = {.lex_state = 1071}, - [490] = {.lex_state = 1071}, - [491] = {.lex_state = 1071}, - [492] = {.lex_state = 1071}, - [493] = {.lex_state = 1071}, - [494] = {.lex_state = 1071}, - [495] = {.lex_state = 1071}, - [496] = {.lex_state = 1071}, - [497] = {.lex_state = 1071}, - [498] = {.lex_state = 1071}, - [499] = {.lex_state = 1071}, - [500] = {.lex_state = 1063}, - [501] = {.lex_state = 1071}, - [502] = {.lex_state = 1111}, - [503] = {.lex_state = 1071}, - [504] = {.lex_state = 1071}, - [505] = {.lex_state = 1071}, - [506] = {.lex_state = 1071}, - [507] = {.lex_state = 1071}, - [508] = {.lex_state = 1071}, - [509] = {.lex_state = 1071}, - [510] = {.lex_state = 1071}, - [511] = {.lex_state = 1071}, - [512] = {.lex_state = 1071}, - [513] = {.lex_state = 1071}, - [514] = {.lex_state = 1071}, - [515] = {.lex_state = 1071}, - [516] = {.lex_state = 1071}, - [517] = {.lex_state = 1071}, - [518] = {.lex_state = 1071}, - [519] = {.lex_state = 1071}, - [520] = {.lex_state = 1074}, - [521] = {.lex_state = 1074}, - [522] = {.lex_state = 1071}, - [523] = {.lex_state = 1071}, - [524] = {.lex_state = 1071}, - [525] = {.lex_state = 1071}, - [526] = {.lex_state = 1060}, - [527] = {.lex_state = 1060}, - [528] = {.lex_state = 1060}, - [529] = {.lex_state = 1070}, - [530] = {.lex_state = 1060}, - [531] = {.lex_state = 1060}, - [532] = {.lex_state = 1071}, - [533] = {.lex_state = 1023}, - [534] = {.lex_state = 1071}, - [535] = {.lex_state = 1110}, - [536] = {.lex_state = 1110}, - [537] = {.lex_state = 1110}, - [538] = {.lex_state = 1071}, - [539] = {.lex_state = 1071}, - [540] = {.lex_state = 1058}, - [541] = {.lex_state = 1060}, - [542] = {.lex_state = 1071}, - [543] = {.lex_state = 1071}, - [544] = {.lex_state = 3202}, - [545] = {.lex_state = 1071}, - [546] = {.lex_state = 1071}, - [547] = {.lex_state = 1071}, - [548] = {.lex_state = 1071}, - [549] = {.lex_state = 1071}, - [550] = {.lex_state = 1071}, - [551] = {.lex_state = 1071}, - [552] = {.lex_state = 1071}, - [553] = {.lex_state = 1071}, - [554] = {.lex_state = 1071}, - [555] = {.lex_state = 1071}, - [556] = {.lex_state = 1071}, - [557] = {.lex_state = 1071}, - [558] = {.lex_state = 1071}, - [559] = {.lex_state = 1071}, - [560] = {.lex_state = 1071}, - [561] = {.lex_state = 1060}, - [562] = {.lex_state = 1071}, - [563] = {.lex_state = 1110}, - [564] = {.lex_state = 1071}, - [565] = {.lex_state = 1071}, - [566] = {.lex_state = 1071}, - [567] = {.lex_state = 1071}, - [568] = {.lex_state = 1071}, - [569] = {.lex_state = 1071}, - [570] = {.lex_state = 1071}, - [571] = {.lex_state = 1071}, - [572] = {.lex_state = 1034}, - [573] = {.lex_state = 1071}, - [574] = {.lex_state = 1071}, - [575] = {.lex_state = 1071}, - [576] = {.lex_state = 1071}, - [577] = {.lex_state = 1071}, - [578] = {.lex_state = 1071}, - [579] = {.lex_state = 1060}, - [580] = {.lex_state = 1071}, - [581] = {.lex_state = 1071}, - [582] = {.lex_state = 4}, - [583] = {.lex_state = 1071}, - [584] = {.lex_state = 1071}, - [585] = {.lex_state = 1071}, - [586] = {.lex_state = 1071}, - [587] = {.lex_state = 1071}, - [588] = {.lex_state = 1071}, - [589] = {.lex_state = 1071}, - [590] = {.lex_state = 1071}, - [591] = {.lex_state = 1060}, - [592] = {.lex_state = 4}, - [593] = {.lex_state = 1060}, - [594] = {.lex_state = 1060}, - [595] = {.lex_state = 1060}, - [596] = {.lex_state = 1071}, - [597] = {.lex_state = 1071}, - [598] = {.lex_state = 1071}, - [599] = {.lex_state = 1071}, - [600] = {.lex_state = 1071}, - [601] = {.lex_state = 1071}, - [602] = {.lex_state = 1071}, - [603] = {.lex_state = 1071}, - [604] = {.lex_state = 1071}, - [605] = {.lex_state = 1110}, - [606] = {.lex_state = 1071}, - [607] = {.lex_state = 1071}, - [608] = {.lex_state = 1071}, - [609] = {.lex_state = 1071}, - [610] = {.lex_state = 1071}, - [611] = {.lex_state = 1059}, - [612] = {.lex_state = 1059}, - [613] = {.lex_state = 1059}, - [614] = {.lex_state = 1059}, - [615] = {.lex_state = 1059}, - [616] = {.lex_state = 1059}, - [617] = {.lex_state = 1059}, - [618] = {.lex_state = 1059}, - [619] = {.lex_state = 1059}, - [620] = {.lex_state = 1059}, - [621] = {.lex_state = 1059}, - [622] = {.lex_state = 1059}, - [623] = {.lex_state = 1059}, - [624] = {.lex_state = 1059}, - [625] = {.lex_state = 1059}, - [626] = {.lex_state = 1059}, - [627] = {.lex_state = 1059}, - [628] = {.lex_state = 1059}, - [629] = {.lex_state = 1059}, - [630] = {.lex_state = 1059}, - [631] = {.lex_state = 1059}, - [632] = {.lex_state = 1059}, - [633] = {.lex_state = 1059}, - [634] = {.lex_state = 1059}, - [635] = {.lex_state = 1059}, - [636] = {.lex_state = 3202}, - [637] = {.lex_state = 1059}, - [638] = {.lex_state = 1059}, - [639] = {.lex_state = 1059}, - [640] = {.lex_state = 1059}, - [641] = {.lex_state = 1059}, - [642] = {.lex_state = 1059}, - [643] = {.lex_state = 1058}, - [644] = {.lex_state = 1059}, - [645] = {.lex_state = 1059}, - [646] = {.lex_state = 1059}, - [647] = {.lex_state = 1110}, - [648] = {.lex_state = 1059}, - [649] = {.lex_state = 1059}, - [650] = {.lex_state = 1059}, - [651] = {.lex_state = 1059}, - [652] = {.lex_state = 1059}, - [653] = {.lex_state = 1034}, - [654] = {.lex_state = 1059}, - [655] = {.lex_state = 1110}, - [656] = {.lex_state = 1059}, - [657] = {.lex_state = 1059}, - [658] = {.lex_state = 1059}, - [659] = {.lex_state = 1110}, - [660] = {.lex_state = 1059}, - [661] = {.lex_state = 1059}, - [662] = {.lex_state = 1059}, - [663] = {.lex_state = 1059}, - [664] = {.lex_state = 1059}, - [665] = {.lex_state = 1060}, - [666] = {.lex_state = 1059}, - [667] = {.lex_state = 1060}, - [668] = {.lex_state = 1110}, - [669] = {.lex_state = 1059}, - [670] = {.lex_state = 1110}, - [671] = {.lex_state = 1059}, - [672] = {.lex_state = 1059}, - [673] = {.lex_state = 1059}, - [674] = {.lex_state = 1059}, - [675] = {.lex_state = 1059}, - [676] = {.lex_state = 1060}, - [677] = {.lex_state = 1059}, - [678] = {.lex_state = 1059}, - [679] = {.lex_state = 1059}, - [680] = {.lex_state = 1059}, - [681] = {.lex_state = 1059}, - [682] = {.lex_state = 1059}, - [683] = {.lex_state = 1059}, - [684] = {.lex_state = 1059}, - [685] = {.lex_state = 1059}, - [686] = {.lex_state = 1059}, - [687] = {.lex_state = 1059}, - [688] = {.lex_state = 1059}, - [689] = {.lex_state = 1059}, - [690] = {.lex_state = 1059}, - [691] = {.lex_state = 1059}, - [692] = {.lex_state = 1059}, - [693] = {.lex_state = 1059}, - [694] = {.lex_state = 1059}, - [695] = {.lex_state = 1059}, - [696] = {.lex_state = 1059}, - [697] = {.lex_state = 1059}, - [698] = {.lex_state = 1059}, - [699] = {.lex_state = 1059}, - [700] = {.lex_state = 1059}, - [701] = {.lex_state = 1059}, - [702] = {.lex_state = 1059}, - [703] = {.lex_state = 1059}, - [704] = {.lex_state = 1059}, - [705] = {.lex_state = 1059}, - [706] = {.lex_state = 1059}, - [707] = {.lex_state = 1059}, - [708] = {.lex_state = 1059}, - [709] = {.lex_state = 1059}, - [710] = {.lex_state = 1059}, - [711] = {.lex_state = 1059}, - [712] = {.lex_state = 1059}, - [713] = {.lex_state = 1059}, - [714] = {.lex_state = 1059}, - [715] = {.lex_state = 1059}, - [716] = {.lex_state = 1059}, - [717] = {.lex_state = 1059}, - [718] = {.lex_state = 1059}, - [719] = {.lex_state = 1059}, - [720] = {.lex_state = 1059}, - [721] = {.lex_state = 1059}, - [722] = {.lex_state = 1059}, - [723] = {.lex_state = 1059}, - [724] = {.lex_state = 1059}, - [725] = {.lex_state = 1059}, - [726] = {.lex_state = 1059}, - [727] = {.lex_state = 1059}, - [728] = {.lex_state = 1059}, - [729] = {.lex_state = 1059}, - [730] = {.lex_state = 1059}, - [731] = {.lex_state = 1059}, - [732] = {.lex_state = 1059}, - [733] = {.lex_state = 1059}, - [734] = {.lex_state = 1059}, - [735] = {.lex_state = 1059}, - [736] = {.lex_state = 1059}, - [737] = {.lex_state = 1059}, - [738] = {.lex_state = 1059}, - [739] = {.lex_state = 1059}, - [740] = {.lex_state = 1059}, - [741] = {.lex_state = 1059}, - [742] = {.lex_state = 1059}, - [743] = {.lex_state = 1059}, - [744] = {.lex_state = 1059}, - [745] = {.lex_state = 1059}, - [746] = {.lex_state = 1059}, - [747] = {.lex_state = 1059}, - [748] = {.lex_state = 1059}, - [749] = {.lex_state = 1059}, - [750] = {.lex_state = 94}, - [751] = {.lex_state = 96}, - [752] = {.lex_state = 98}, - [753] = {.lex_state = 96}, - [754] = {.lex_state = 96}, - [755] = {.lex_state = 96}, - [756] = {.lex_state = 74}, - [757] = {.lex_state = 100}, - [758] = {.lex_state = 100}, - [759] = {.lex_state = 100}, - [760] = {.lex_state = 95}, - [761] = {.lex_state = 95}, - [762] = {.lex_state = 95}, - [763] = {.lex_state = 66}, - [764] = {.lex_state = 100}, - [765] = {.lex_state = 95}, - [766] = {.lex_state = 237}, - [767] = {.lex_state = 67}, - [768] = {.lex_state = 99}, - [769] = {.lex_state = 67}, - [770] = {.lex_state = 72}, - [771] = {.lex_state = 72}, - [772] = {.lex_state = 99}, - [773] = {.lex_state = 67}, - [774] = {.lex_state = 238}, - [775] = {.lex_state = 67}, - [776] = {.lex_state = 67}, - [777] = {.lex_state = 257}, - [778] = {.lex_state = 99}, - [779] = {.lex_state = 63}, - [780] = {.lex_state = 87}, - [781] = {.lex_state = 72}, - [782] = {.lex_state = 99}, - [783] = {.lex_state = 71}, - [784] = {.lex_state = 258}, - [785] = {.lex_state = 65}, - [786] = {.lex_state = 65}, - [787] = {.lex_state = 71}, - [788] = {.lex_state = 71}, - [789] = {.lex_state = 76}, - [790] = {.lex_state = 85}, - [791] = {.lex_state = 71}, - [792] = {.lex_state = 65}, - [793] = {.lex_state = 76}, - [794] = {.lex_state = 65}, - [795] = {.lex_state = 85}, - [796] = {.lex_state = 76}, - [797] = {.lex_state = 76}, - [798] = {.lex_state = 76}, - [799] = {.lex_state = 85}, - [800] = {.lex_state = 84}, - [801] = {.lex_state = 84}, - [802] = {.lex_state = 84}, - [803] = {.lex_state = 75}, - [804] = {.lex_state = 67}, - [805] = {.lex_state = 84}, - [806] = {.lex_state = 75}, - [807] = {.lex_state = 75}, - [808] = {.lex_state = 75}, - [809] = {.lex_state = 67}, - [810] = {.lex_state = 67}, - [811] = {.lex_state = 73}, - [812] = {.lex_state = 73}, - [813] = {.lex_state = 76}, - [814] = {.lex_state = 76}, - [815] = {.lex_state = 76}, - [816] = {.lex_state = 70}, - [817] = {.lex_state = 73}, - [818] = {.lex_state = 70}, - [819] = {.lex_state = 70}, - [820] = {.lex_state = 70}, - [821] = {.lex_state = 70}, - [822] = {.lex_state = 70}, - [823] = {.lex_state = 70}, - [824] = {.lex_state = 73}, - [825] = {.lex_state = 70}, - [826] = {.lex_state = 70}, - [827] = {.lex_state = 70}, - [828] = {.lex_state = 70}, - [829] = {.lex_state = 364}, - [830] = {.lex_state = 364}, - [831] = {.lex_state = 82}, - [832] = {.lex_state = 82}, - [833] = {.lex_state = 82}, - [834] = {.lex_state = 82}, - [835] = {.lex_state = 82}, - [836] = {.lex_state = 44}, - [837] = {.lex_state = 86}, - [838] = {.lex_state = 69}, - [839] = {.lex_state = 69}, - [840] = {.lex_state = 69}, - [841] = {.lex_state = 69}, - [842] = {.lex_state = 82}, - [843] = {.lex_state = 86}, - [844] = {.lex_state = 82}, - [845] = {.lex_state = 82}, - [846] = {.lex_state = 82}, - [847] = {.lex_state = 86}, - [848] = {.lex_state = 82}, - [849] = {.lex_state = 82}, - [850] = {.lex_state = 86}, - [851] = {.lex_state = 70}, - [852] = {.lex_state = 290}, - [853] = {.lex_state = 70}, - [854] = {.lex_state = 290}, - [855] = {.lex_state = 83}, - [856] = {.lex_state = 97}, - [857] = {.lex_state = 290}, - [858] = {.lex_state = 2587}, - [859] = {.lex_state = 290}, - [860] = {.lex_state = 68}, - [861] = {.lex_state = 83}, - [862] = {.lex_state = 70}, - [863] = {.lex_state = 83}, - [864] = {.lex_state = 83}, - [865] = {.lex_state = 290}, - [866] = {.lex_state = 45}, - [867] = {.lex_state = 68}, - [868] = {.lex_state = 68}, - [869] = {.lex_state = 68}, - [870] = {.lex_state = 68}, - [871] = {.lex_state = 82}, - [872] = {.lex_state = 68}, - [873] = {.lex_state = 82}, - [874] = {.lex_state = 68}, - [875] = {.lex_state = 82}, - [876] = {.lex_state = 2588}, - [877] = {.lex_state = 68}, - [878] = {.lex_state = 68}, - [879] = {.lex_state = 68}, - [880] = {.lex_state = 68}, - [881] = {.lex_state = 291}, - [882] = {.lex_state = 68}, - [883] = {.lex_state = 68}, - [884] = {.lex_state = 68}, - [885] = {.lex_state = 68}, - [886] = {.lex_state = 68}, - [887] = {.lex_state = 68}, - [888] = {.lex_state = 68}, - [889] = {.lex_state = 68}, - [890] = {.lex_state = 68}, - [891] = {.lex_state = 68}, - [892] = {.lex_state = 68}, - [893] = {.lex_state = 68}, - [894] = {.lex_state = 68}, - [895] = {.lex_state = 68}, - [896] = {.lex_state = 68}, - [897] = {.lex_state = 68}, - [898] = {.lex_state = 68}, - [899] = {.lex_state = 68}, - [900] = {.lex_state = 68}, - [901] = {.lex_state = 68}, - [902] = {.lex_state = 68}, - [903] = {.lex_state = 68}, - [904] = {.lex_state = 68}, - [905] = {.lex_state = 68}, - [906] = {.lex_state = 68}, - [907] = {.lex_state = 68}, - [908] = {.lex_state = 68}, - [909] = {.lex_state = 68}, - [910] = {.lex_state = 68}, - [911] = {.lex_state = 68}, - [912] = {.lex_state = 68}, - [913] = {.lex_state = 68}, - [914] = {.lex_state = 345}, - [915] = {.lex_state = 68}, - [916] = {.lex_state = 68}, - [917] = {.lex_state = 68}, - [918] = {.lex_state = 68}, - [919] = {.lex_state = 68}, - [920] = {.lex_state = 68}, - [921] = {.lex_state = 68}, - [922] = {.lex_state = 68}, - [923] = {.lex_state = 68}, - [924] = {.lex_state = 68}, - [925] = {.lex_state = 68}, - [926] = {.lex_state = 345}, - [927] = {.lex_state = 68}, - [928] = {.lex_state = 345}, - [929] = {.lex_state = 79}, - [930] = {.lex_state = 345}, - [931] = {.lex_state = 345}, - [932] = {.lex_state = 345}, - [933] = {.lex_state = 345}, - [934] = {.lex_state = 291}, - [935] = {.lex_state = 68}, - [936] = {.lex_state = 68}, - [937] = {.lex_state = 345}, - [938] = {.lex_state = 68}, - [939] = {.lex_state = 345}, - [940] = {.lex_state = 68}, - [941] = {.lex_state = 101}, - [942] = {.lex_state = 68}, - [943] = {.lex_state = 291}, - [944] = {.lex_state = 68}, - [945] = {.lex_state = 291}, - [946] = {.lex_state = 291}, - [947] = {.lex_state = 345}, - [948] = {.lex_state = 68}, - [949] = {.lex_state = 345}, - [950] = {.lex_state = 68}, - [951] = {.lex_state = 68}, - [952] = {.lex_state = 68}, - [953] = {.lex_state = 345}, - [954] = {.lex_state = 79}, - [955] = {.lex_state = 79}, - [956] = {.lex_state = 79}, - [957] = {.lex_state = 79}, - [958] = {.lex_state = 79}, - [959] = {.lex_state = 79}, - [960] = {.lex_state = 79}, - [961] = {.lex_state = 79}, - [962] = {.lex_state = 79}, - [963] = {.lex_state = 79}, - [964] = {.lex_state = 79}, - [965] = {.lex_state = 79}, - [966] = {.lex_state = 79}, - [967] = {.lex_state = 79}, - [968] = {.lex_state = 79}, - [969] = {.lex_state = 79}, - [970] = {.lex_state = 79}, - [971] = {.lex_state = 79}, - [972] = {.lex_state = 79}, - [973] = {.lex_state = 79}, - [974] = {.lex_state = 79}, - [975] = {.lex_state = 79}, - [976] = {.lex_state = 79}, - [977] = {.lex_state = 79}, - [978] = {.lex_state = 79}, - [979] = {.lex_state = 79}, - [980] = {.lex_state = 79}, - [981] = {.lex_state = 79}, - [982] = {.lex_state = 79}, - [983] = {.lex_state = 79}, - [984] = {.lex_state = 79}, - [985] = {.lex_state = 79}, - [986] = {.lex_state = 79}, - [987] = {.lex_state = 79}, - [988] = {.lex_state = 79}, - [989] = {.lex_state = 79}, - [990] = {.lex_state = 79}, - [991] = {.lex_state = 79}, - [992] = {.lex_state = 79}, - [993] = {.lex_state = 79}, - [994] = {.lex_state = 79}, - [995] = {.lex_state = 79}, - [996] = {.lex_state = 345}, - [997] = {.lex_state = 345}, - [998] = {.lex_state = 345}, - [999] = {.lex_state = 345}, - [1000] = {.lex_state = 345}, - [1001] = {.lex_state = 345}, - [1002] = {.lex_state = 345}, - [1003] = {.lex_state = 345}, - [1004] = {.lex_state = 79}, - [1005] = {.lex_state = 79}, - [1006] = {.lex_state = 79}, - [1007] = {.lex_state = 79}, - [1008] = {.lex_state = 79}, - [1009] = {.lex_state = 79}, - [1010] = {.lex_state = 79}, - [1011] = {.lex_state = 79}, - [1012] = {.lex_state = 79}, - [1013] = {.lex_state = 79}, - [1014] = {.lex_state = 79}, - [1015] = {.lex_state = 79}, - [1016] = {.lex_state = 79}, - [1017] = {.lex_state = 79}, - [1018] = {.lex_state = 79}, - [1019] = {.lex_state = 79}, - [1020] = {.lex_state = 79}, - [1021] = {.lex_state = 79}, - [1022] = {.lex_state = 79}, - [1023] = {.lex_state = 79}, - [1024] = {.lex_state = 79}, - [1025] = {.lex_state = 79}, - [1026] = {.lex_state = 1118}, - [1027] = {.lex_state = 1118}, - [1028] = {.lex_state = 24}, - [1029] = {.lex_state = 345}, - [1030] = {.lex_state = 345}, - [1031] = {.lex_state = 345}, - [1032] = {.lex_state = 345}, - [1033] = {.lex_state = 345}, - [1034] = {.lex_state = 1196}, - [1035] = {.lex_state = 1120}, - [1036] = {.lex_state = 364}, - [1037] = {.lex_state = 364}, - [1038] = {.lex_state = 1118}, - [1039] = {.lex_state = 364}, - [1040] = {.lex_state = 364}, - [1041] = {.lex_state = 364}, - [1042] = {.lex_state = 364}, - [1043] = {.lex_state = 1120}, - [1044] = {.lex_state = 1122}, - [1045] = {.lex_state = 364}, - [1046] = {.lex_state = 1120}, - [1047] = {.lex_state = 364}, - [1048] = {.lex_state = 364}, - [1049] = {.lex_state = 1124}, - [1050] = {.lex_state = 364}, - [1051] = {.lex_state = 364}, - [1052] = {.lex_state = 364}, - [1053] = {.lex_state = 364}, - [1054] = {.lex_state = 364}, - [1055] = {.lex_state = 364}, - [1056] = {.lex_state = 364}, - [1057] = {.lex_state = 364}, - [1058] = {.lex_state = 364}, - [1059] = {.lex_state = 364}, - [1060] = {.lex_state = 364}, - [1061] = {.lex_state = 364}, - [1062] = {.lex_state = 364}, - [1063] = {.lex_state = 1120}, - [1064] = {.lex_state = 364}, - [1065] = {.lex_state = 364}, - [1066] = {.lex_state = 364}, - [1067] = {.lex_state = 364}, - [1068] = {.lex_state = 1196}, - [1069] = {.lex_state = 1120}, - [1070] = {.lex_state = 345}, - [1071] = {.lex_state = 364}, - [1072] = {.lex_state = 364}, - [1073] = {.lex_state = 364}, - [1074] = {.lex_state = 345}, - [1075] = {.lex_state = 364}, - [1076] = {.lex_state = 1120}, - [1077] = {.lex_state = 364}, - [1078] = {.lex_state = 364}, - [1079] = {.lex_state = 364}, - [1080] = {.lex_state = 364}, - [1081] = {.lex_state = 364}, - [1082] = {.lex_state = 1122}, - [1083] = {.lex_state = 364}, - [1084] = {.lex_state = 364}, - [1085] = {.lex_state = 364}, - [1086] = {.lex_state = 364}, - [1087] = {.lex_state = 1118}, - [1088] = {.lex_state = 1120}, - [1089] = {.lex_state = 1126}, - [1090] = {.lex_state = 1130}, - [1091] = {.lex_state = 1130}, - [1092] = {.lex_state = 1124}, - [1093] = {.lex_state = 1120}, - [1094] = {.lex_state = 1120}, - [1095] = {.lex_state = 1122}, - [1096] = {.lex_state = 1130}, - [1097] = {.lex_state = 1130}, - [1098] = {.lex_state = 1130}, - [1099] = {.lex_state = 1127}, - [1100] = {.lex_state = 1120}, - [1101] = {.lex_state = 1126}, - [1102] = {.lex_state = 1120}, - [1103] = {.lex_state = 1126}, - [1104] = {.lex_state = 1120}, - [1105] = {.lex_state = 1122}, - [1106] = {.lex_state = 106}, - [1107] = {.lex_state = 1126}, - [1108] = {.lex_state = 107}, - [1109] = {.lex_state = 1130}, - [1110] = {.lex_state = 1127}, - [1111] = {.lex_state = 1126}, - [1112] = {.lex_state = 1127}, - [1113] = {.lex_state = 1133}, - [1114] = {.lex_state = 107}, - [1115] = {.lex_state = 364}, - [1116] = {.lex_state = 1126}, - [1117] = {.lex_state = 110}, - [1118] = {.lex_state = 102}, - [1119] = {.lex_state = 107}, - [1120] = {.lex_state = 1130}, - [1121] = {.lex_state = 364}, - [1122] = {.lex_state = 1130}, - [1123] = {.lex_state = 1127}, - [1124] = {.lex_state = 1130}, - [1125] = {.lex_state = 1127}, - [1126] = {.lex_state = 1126}, - [1127] = {.lex_state = 1130}, - [1128] = {.lex_state = 107}, - [1129] = {.lex_state = 1126}, - [1130] = {.lex_state = 1135}, - [1131] = {.lex_state = 103}, - [1132] = {.lex_state = 1132}, - [1133] = {.lex_state = 108}, - [1134] = {.lex_state = 1132}, - [1135] = {.lex_state = 108}, - [1136] = {.lex_state = 108}, - [1137] = {.lex_state = 240}, - [1138] = {.lex_state = 1135}, - [1139] = {.lex_state = 1135}, - [1140] = {.lex_state = 103}, - [1141] = {.lex_state = 1127}, - [1142] = {.lex_state = 1127}, - [1143] = {.lex_state = 1127}, - [1144] = {.lex_state = 1132}, - [1145] = {.lex_state = 1206}, - [1146] = {.lex_state = 1135}, - [1147] = {.lex_state = 111}, - [1148] = {.lex_state = 111}, - [1149] = {.lex_state = 111}, - [1150] = {.lex_state = 108}, - [1151] = {.lex_state = 108}, - [1152] = {.lex_state = 1132}, - [1153] = {.lex_state = 1132}, - [1154] = {.lex_state = 111}, - [1155] = {.lex_state = 1132}, - [1156] = {.lex_state = 1132}, - [1157] = {.lex_state = 1132}, - [1158] = {.lex_state = 103}, - [1159] = {.lex_state = 103}, - [1160] = {.lex_state = 1133}, - [1161] = {.lex_state = 112}, - [1162] = {.lex_state = 314}, - [1163] = {.lex_state = 1132}, - [1164] = {.lex_state = 1135}, - [1165] = {.lex_state = 1169}, - [1166] = {.lex_state = 359}, - [1167] = {.lex_state = 1206}, - [1168] = {.lex_state = 1208}, - [1169] = {.lex_state = 1208}, - [1170] = {.lex_state = 359}, - [1171] = {.lex_state = 1208}, - [1172] = {.lex_state = 359}, - [1173] = {.lex_state = 1208}, - [1174] = {.lex_state = 359}, - [1175] = {.lex_state = 359}, - [1176] = {.lex_state = 1136}, - [1177] = {.lex_state = 359}, - [1178] = {.lex_state = 241}, - [1179] = {.lex_state = 104}, - [1180] = {.lex_state = 359}, - [1181] = {.lex_state = 359}, - [1182] = {.lex_state = 104}, - [1183] = {.lex_state = 359}, - [1184] = {.lex_state = 1132}, - [1185] = {.lex_state = 1132}, - [1186] = {.lex_state = 239}, - [1187] = {.lex_state = 359}, - [1188] = {.lex_state = 112}, - [1189] = {.lex_state = 359}, - [1190] = {.lex_state = 112}, - [1191] = {.lex_state = 359}, - [1192] = {.lex_state = 1132}, - [1193] = {.lex_state = 112}, - [1194] = {.lex_state = 359}, - [1195] = {.lex_state = 104}, - [1196] = {.lex_state = 359}, - [1197] = {.lex_state = 314}, - [1198] = {.lex_state = 300}, - [1199] = {.lex_state = 1136}, - [1200] = {.lex_state = 359}, - [1201] = {.lex_state = 359}, - [1202] = {.lex_state = 359}, - [1203] = {.lex_state = 1132}, - [1204] = {.lex_state = 1136}, - [1205] = {.lex_state = 359}, - [1206] = {.lex_state = 1169}, - [1207] = {.lex_state = 1169}, - [1208] = {.lex_state = 359}, - [1209] = {.lex_state = 1132}, - [1210] = {.lex_state = 1132}, - [1211] = {.lex_state = 1169}, - [1212] = {.lex_state = 1136}, - [1213] = {.lex_state = 293}, - [1214] = {.lex_state = 1132}, - [1215] = {.lex_state = 1169}, - [1216] = {.lex_state = 1136}, - [1217] = {.lex_state = 260}, - [1218] = {.lex_state = 1135}, - [1219] = {.lex_state = 359}, - [1220] = {.lex_state = 104}, - [1221] = {.lex_state = 314}, - [1222] = {.lex_state = 1135}, - [1223] = {.lex_state = 314}, - [1224] = {.lex_state = 359}, - [1225] = {.lex_state = 314}, - [1226] = {.lex_state = 104}, - [1227] = {.lex_state = 1153}, - [1228] = {.lex_state = 1135}, - [1229] = {.lex_state = 359}, - [1230] = {.lex_state = 1150}, - [1231] = {.lex_state = 294}, - [1232] = {.lex_state = 294}, - [1233] = {.lex_state = 301}, - [1234] = {.lex_state = 1209}, - [1235] = {.lex_state = 1173}, - [1236] = {.lex_state = 1209}, - [1237] = {.lex_state = 1209}, - [1238] = {.lex_state = 1208}, - [1239] = {.lex_state = 1208}, - [1240] = {.lex_state = 1208}, - [1241] = {.lex_state = 313}, - [1242] = {.lex_state = 313}, - [1243] = {.lex_state = 1171}, - [1244] = {.lex_state = 1208}, - [1245] = {.lex_state = 1136}, - [1246] = {.lex_state = 261}, - [1247] = {.lex_state = 1209}, - [1248] = {.lex_state = 1209}, - [1249] = {.lex_state = 306}, - [1250] = {.lex_state = 306}, - [1251] = {.lex_state = 306}, - [1252] = {.lex_state = 1036}, - [1253] = {.lex_state = 1153}, - [1254] = {.lex_state = 306}, - [1255] = {.lex_state = 301}, - [1256] = {.lex_state = 301}, - [1257] = {.lex_state = 294}, - [1258] = {.lex_state = 1154}, - [1259] = {.lex_state = 1169}, - [1260] = {.lex_state = 1169}, - [1261] = {.lex_state = 1195}, - [1262] = {.lex_state = 1169}, - [1263] = {.lex_state = 1169}, - [1264] = {.lex_state = 1136}, - [1265] = {.lex_state = 1169}, - [1266] = {.lex_state = 1136}, - [1267] = {.lex_state = 1169}, - [1268] = {.lex_state = 1136}, - [1269] = {.lex_state = 259}, - [1270] = {.lex_state = 306}, - [1271] = {.lex_state = 1150}, - [1272] = {.lex_state = 1150}, - [1273] = {.lex_state = 1169}, - [1274] = {.lex_state = 1169}, - [1275] = {.lex_state = 1169}, - [1276] = {.lex_state = 294}, - [1277] = {.lex_state = 1173}, - [1278] = {.lex_state = 294}, - [1279] = {.lex_state = 1193}, - [1280] = {.lex_state = 313}, - [1281] = {.lex_state = 313}, - [1282] = {.lex_state = 1173}, - [1283] = {.lex_state = 1173}, - [1284] = {.lex_state = 1173}, - [1285] = {.lex_state = 1141}, - [1286] = {.lex_state = 1136}, - [1287] = {.lex_state = 1157}, - [1288] = {.lex_state = 1142}, - [1289] = {.lex_state = 1209}, - [1290] = {.lex_state = 305}, - [1291] = {.lex_state = 305}, - [1292] = {.lex_state = 1209}, - [1293] = {.lex_state = 302}, - [1294] = {.lex_state = 1193}, - [1295] = {.lex_state = 1157}, - [1296] = {.lex_state = 292}, - [1297] = {.lex_state = 305}, - [1298] = {.lex_state = 305}, - [1299] = {.lex_state = 1039}, - [1300] = {.lex_state = 1039}, - [1301] = {.lex_state = 292}, - [1302] = {.lex_state = 1150}, - [1303] = {.lex_state = 1039}, - [1304] = {.lex_state = 1154}, - [1305] = {.lex_state = 1150}, - [1306] = {.lex_state = 302}, - [1307] = {.lex_state = 292}, - [1308] = {.lex_state = 292}, - [1309] = {.lex_state = 302}, - [1310] = {.lex_state = 1150}, - [1311] = {.lex_state = 1169}, - [1312] = {.lex_state = 1169}, - [1313] = {.lex_state = 1157}, - [1314] = {.lex_state = 1173}, - [1315] = {.lex_state = 302}, - [1316] = {.lex_state = 1036}, - [1317] = {.lex_state = 1209}, - [1318] = {.lex_state = 1198}, - [1319] = {.lex_state = 1169}, - [1320] = {.lex_state = 1169}, - [1321] = {.lex_state = 1173}, - [1322] = {.lex_state = 1173}, - [1323] = {.lex_state = 1173}, - [1324] = {.lex_state = 1195}, - [1325] = {.lex_state = 1169}, - [1326] = {.lex_state = 1209}, - [1327] = {.lex_state = 1039}, - [1328] = {.lex_state = 1214}, - [1329] = {.lex_state = 1169}, - [1330] = {.lex_state = 1141}, - [1331] = {.lex_state = 1169}, - [1332] = {.lex_state = 1145}, - [1333] = {.lex_state = 1145}, - [1334] = {.lex_state = 314}, - [1335] = {.lex_state = 1190}, - [1336] = {.lex_state = 1145}, - [1337] = {.lex_state = 1190}, - [1338] = {.lex_state = 1171}, - [1339] = {.lex_state = 314}, - [1340] = {.lex_state = 1173}, - [1341] = {.lex_state = 1209}, - [1342] = {.lex_state = 1190}, - [1343] = {.lex_state = 314}, - [1344] = {.lex_state = 1145}, - [1345] = {.lex_state = 1157}, - [1346] = {.lex_state = 1145}, - [1347] = {.lex_state = 319}, - [1348] = {.lex_state = 294}, - [1349] = {.lex_state = 1157}, - [1350] = {.lex_state = 1191}, - [1351] = {.lex_state = 1191}, - [1352] = {.lex_state = 1039}, - [1353] = {.lex_state = 1157}, - [1354] = {.lex_state = 1157}, - [1355] = {.lex_state = 1145}, - [1356] = {.lex_state = 1187}, + [378] = {.lex_state = 1036}, + [379] = {.lex_state = 1028}, + [380] = {.lex_state = 1056}, + [381] = {.lex_state = 1056}, + [382] = {.lex_state = 1056}, + [383] = {.lex_state = 1056}, + [384] = {.lex_state = 1056}, + [385] = {.lex_state = 1056}, + [386] = {.lex_state = 1056}, + [387] = {.lex_state = 1056}, + [388] = {.lex_state = 1056}, + [389] = {.lex_state = 1056}, + [390] = {.lex_state = 1056}, + [391] = {.lex_state = 1056}, + [392] = {.lex_state = 1056}, + [393] = {.lex_state = 1056}, + [394] = {.lex_state = 1056}, + [395] = {.lex_state = 1056}, + [396] = {.lex_state = 1059}, + [397] = {.lex_state = 1028}, + [398] = {.lex_state = 1036}, + [399] = {.lex_state = 1056}, + [400] = {.lex_state = 1056}, + [401] = {.lex_state = 3161}, + [402] = {.lex_state = 1092}, + [403] = {.lex_state = 1056}, + [404] = {.lex_state = 1056}, + [405] = {.lex_state = 1056}, + [406] = {.lex_state = 1056}, + [407] = {.lex_state = 1056}, + [408] = {.lex_state = 1028}, + [409] = {.lex_state = 1092}, + [410] = {.lex_state = 1056}, + [411] = {.lex_state = 1092}, + [412] = {.lex_state = 1056}, + [413] = {.lex_state = 1092}, + [414] = {.lex_state = 1059}, + [415] = {.lex_state = 1056}, + [416] = {.lex_state = 1059}, + [417] = {.lex_state = 1056}, + [418] = {.lex_state = 1056}, + [419] = {.lex_state = 1056}, + [420] = {.lex_state = 1056}, + [421] = {.lex_state = 1056}, + [422] = {.lex_state = 1056}, + [423] = {.lex_state = 1056}, + [424] = {.lex_state = 1056}, + [425] = {.lex_state = 1056}, + [426] = {.lex_state = 1056}, + [427] = {.lex_state = 1056}, + [428] = {.lex_state = 1056}, + [429] = {.lex_state = 1056}, + [430] = {.lex_state = 1056}, + [431] = {.lex_state = 1056}, + [432] = {.lex_state = 4}, + [433] = {.lex_state = 1056}, + [434] = {.lex_state = 1056}, + [435] = {.lex_state = 1056}, + [436] = {.lex_state = 1056}, + [437] = {.lex_state = 1056}, + [438] = {.lex_state = 1056}, + [439] = {.lex_state = 1056}, + [440] = {.lex_state = 1056}, + [441] = {.lex_state = 1056}, + [442] = {.lex_state = 1056}, + [443] = {.lex_state = 1056}, + [444] = {.lex_state = 1056}, + [445] = {.lex_state = 1056}, + [446] = {.lex_state = 1056}, + [447] = {.lex_state = 1056}, + [448] = {.lex_state = 1056}, + [449] = {.lex_state = 1056}, + [450] = {.lex_state = 1056}, + [451] = {.lex_state = 1056}, + [452] = {.lex_state = 1056}, + [453] = {.lex_state = 1056}, + [454] = {.lex_state = 1056}, + [455] = {.lex_state = 1056}, + [456] = {.lex_state = 1056}, + [457] = {.lex_state = 1056}, + [458] = {.lex_state = 1056}, + [459] = {.lex_state = 1056}, + [460] = {.lex_state = 1056}, + [461] = {.lex_state = 1056}, + [462] = {.lex_state = 1056}, + [463] = {.lex_state = 1056}, + [464] = {.lex_state = 1056}, + [465] = {.lex_state = 1056}, + [466] = {.lex_state = 1056}, + [467] = {.lex_state = 1056}, + [468] = {.lex_state = 4}, + [469] = {.lex_state = 1056}, + [470] = {.lex_state = 1056}, + [471] = {.lex_state = 1056}, + [472] = {.lex_state = 1056}, + [473] = {.lex_state = 1056}, + [474] = {.lex_state = 1056}, + [475] = {.lex_state = 1056}, + [476] = {.lex_state = 1056}, + [477] = {.lex_state = 1056}, + [478] = {.lex_state = 1056}, + [479] = {.lex_state = 1056}, + [480] = {.lex_state = 94}, + [481] = {.lex_state = 96}, + [482] = {.lex_state = 96}, + [483] = {.lex_state = 96}, + [484] = {.lex_state = 96}, + [485] = {.lex_state = 98}, + [486] = {.lex_state = 95}, + [487] = {.lex_state = 74}, + [488] = {.lex_state = 100}, + [489] = {.lex_state = 95}, + [490] = {.lex_state = 95}, + [491] = {.lex_state = 95}, + [492] = {.lex_state = 66}, + [493] = {.lex_state = 100}, + [494] = {.lex_state = 100}, + [495] = {.lex_state = 100}, + [496] = {.lex_state = 237}, + [497] = {.lex_state = 71}, + [498] = {.lex_state = 67}, + [499] = {.lex_state = 238}, + [500] = {.lex_state = 67}, + [501] = {.lex_state = 71}, + [502] = {.lex_state = 99}, + [503] = {.lex_state = 99}, + [504] = {.lex_state = 71}, + [505] = {.lex_state = 257}, + [506] = {.lex_state = 67}, + [507] = {.lex_state = 67}, + [508] = {.lex_state = 99}, + [509] = {.lex_state = 63}, + [510] = {.lex_state = 67}, + [511] = {.lex_state = 99}, + [512] = {.lex_state = 87}, + [513] = {.lex_state = 258}, + [514] = {.lex_state = 65}, + [515] = {.lex_state = 72}, + [516] = {.lex_state = 72}, + [517] = {.lex_state = 72}, + [518] = {.lex_state = 65}, + [519] = {.lex_state = 65}, + [520] = {.lex_state = 76}, + [521] = {.lex_state = 72}, + [522] = {.lex_state = 76}, + [523] = {.lex_state = 76}, + [524] = {.lex_state = 76}, + [525] = {.lex_state = 84}, + [526] = {.lex_state = 65}, + [527] = {.lex_state = 84}, + [528] = {.lex_state = 84}, + [529] = {.lex_state = 76}, + [530] = {.lex_state = 75}, + [531] = {.lex_state = 85}, + [532] = {.lex_state = 75}, + [533] = {.lex_state = 75}, + [534] = {.lex_state = 67}, + [535] = {.lex_state = 67}, + [536] = {.lex_state = 75}, + [537] = {.lex_state = 67}, + [538] = {.lex_state = 85}, + [539] = {.lex_state = 85}, + [540] = {.lex_state = 85}, + [541] = {.lex_state = 73}, + [542] = {.lex_state = 70}, + [543] = {.lex_state = 76}, + [544] = {.lex_state = 70}, + [545] = {.lex_state = 76}, + [546] = {.lex_state = 70}, + [547] = {.lex_state = 70}, + [548] = {.lex_state = 73}, + [549] = {.lex_state = 76}, + [550] = {.lex_state = 70}, + [551] = {.lex_state = 70}, + [552] = {.lex_state = 70}, + [553] = {.lex_state = 364}, + [554] = {.lex_state = 73}, + [555] = {.lex_state = 70}, + [556] = {.lex_state = 73}, + [557] = {.lex_state = 70}, + [558] = {.lex_state = 70}, + [559] = {.lex_state = 70}, + [560] = {.lex_state = 364}, + [561] = {.lex_state = 69}, + [562] = {.lex_state = 82}, + [563] = {.lex_state = 82}, + [564] = {.lex_state = 82}, + [565] = {.lex_state = 82}, + [566] = {.lex_state = 69}, + [567] = {.lex_state = 82}, + [568] = {.lex_state = 82}, + [569] = {.lex_state = 82}, + [570] = {.lex_state = 69}, + [571] = {.lex_state = 44}, + [572] = {.lex_state = 86}, + [573] = {.lex_state = 86}, + [574] = {.lex_state = 82}, + [575] = {.lex_state = 82}, + [576] = {.lex_state = 86}, + [577] = {.lex_state = 86}, + [578] = {.lex_state = 69}, + [579] = {.lex_state = 82}, + [580] = {.lex_state = 82}, + [581] = {.lex_state = 83}, + [582] = {.lex_state = 70}, + [583] = {.lex_state = 68}, + [584] = {.lex_state = 290}, + [585] = {.lex_state = 83}, + [586] = {.lex_state = 83}, + [587] = {.lex_state = 290}, + [588] = {.lex_state = 83}, + [589] = {.lex_state = 2549}, + [590] = {.lex_state = 290}, + [591] = {.lex_state = 70}, + [592] = {.lex_state = 97}, + [593] = {.lex_state = 45}, + [594] = {.lex_state = 290}, + [595] = {.lex_state = 290}, + [596] = {.lex_state = 70}, + [597] = {.lex_state = 68}, + [598] = {.lex_state = 345}, + [599] = {.lex_state = 2550}, + [600] = {.lex_state = 68}, + [601] = {.lex_state = 79}, + [602] = {.lex_state = 345}, + [603] = {.lex_state = 68}, + [604] = {.lex_state = 345}, + [605] = {.lex_state = 345}, + [606] = {.lex_state = 68}, + [607] = {.lex_state = 291}, + [608] = {.lex_state = 68}, + [609] = {.lex_state = 68}, + [610] = {.lex_state = 82}, + [611] = {.lex_state = 345}, + [612] = {.lex_state = 345}, + [613] = {.lex_state = 68}, + [614] = {.lex_state = 68}, + [615] = {.lex_state = 101}, + [616] = {.lex_state = 68}, + [617] = {.lex_state = 68}, + [618] = {.lex_state = 68}, + [619] = {.lex_state = 68}, + [620] = {.lex_state = 345}, + [621] = {.lex_state = 345}, + [622] = {.lex_state = 68}, + [623] = {.lex_state = 345}, + [624] = {.lex_state = 68}, + [625] = {.lex_state = 68}, + [626] = {.lex_state = 68}, + [627] = {.lex_state = 82}, + [628] = {.lex_state = 345}, + [629] = {.lex_state = 68}, + [630] = {.lex_state = 68}, + [631] = {.lex_state = 345}, + [632] = {.lex_state = 291}, + [633] = {.lex_state = 68}, + [634] = {.lex_state = 291}, + [635] = {.lex_state = 68}, + [636] = {.lex_state = 82}, + [637] = {.lex_state = 68}, + [638] = {.lex_state = 68}, + [639] = {.lex_state = 291}, + [640] = {.lex_state = 291}, + [641] = {.lex_state = 68}, + [642] = {.lex_state = 68}, + [643] = {.lex_state = 68}, + [644] = {.lex_state = 68}, + [645] = {.lex_state = 68}, + [646] = {.lex_state = 345}, + [647] = {.lex_state = 68}, + [648] = {.lex_state = 68}, + [649] = {.lex_state = 68}, + [650] = {.lex_state = 68}, + [651] = {.lex_state = 68}, + [652] = {.lex_state = 68}, + [653] = {.lex_state = 68}, + [654] = {.lex_state = 68}, + [655] = {.lex_state = 68}, + [656] = {.lex_state = 68}, + [657] = {.lex_state = 68}, + [658] = {.lex_state = 345}, + [659] = {.lex_state = 68}, + [660] = {.lex_state = 68}, + [661] = {.lex_state = 68}, + [662] = {.lex_state = 68}, + [663] = {.lex_state = 68}, + [664] = {.lex_state = 68}, + [665] = {.lex_state = 68}, + [666] = {.lex_state = 68}, + [667] = {.lex_state = 68}, + [668] = {.lex_state = 68}, + [669] = {.lex_state = 68}, + [670] = {.lex_state = 68}, + [671] = {.lex_state = 68}, + [672] = {.lex_state = 68}, + [673] = {.lex_state = 68}, + [674] = {.lex_state = 345}, + [675] = {.lex_state = 68}, + [676] = {.lex_state = 68}, + [677] = {.lex_state = 68}, + [678] = {.lex_state = 68}, + [679] = {.lex_state = 68}, + [680] = {.lex_state = 68}, + [681] = {.lex_state = 68}, + [682] = {.lex_state = 68}, + [683] = {.lex_state = 68}, + [684] = {.lex_state = 68}, + [685] = {.lex_state = 68}, + [686] = {.lex_state = 345}, + [687] = {.lex_state = 79}, + [688] = {.lex_state = 79}, + [689] = {.lex_state = 79}, + [690] = {.lex_state = 79}, + [691] = {.lex_state = 79}, + [692] = {.lex_state = 79}, + [693] = {.lex_state = 79}, + [694] = {.lex_state = 345}, + [695] = {.lex_state = 79}, + [696] = {.lex_state = 79}, + [697] = {.lex_state = 79}, + [698] = {.lex_state = 345}, + [699] = {.lex_state = 345}, + [700] = {.lex_state = 345}, + [701] = {.lex_state = 345}, + [702] = {.lex_state = 345}, + [703] = {.lex_state = 345}, + [704] = {.lex_state = 345}, + [705] = {.lex_state = 345}, + [706] = {.lex_state = 345}, + [707] = {.lex_state = 79}, + [708] = {.lex_state = 79}, + [709] = {.lex_state = 79}, + [710] = {.lex_state = 79}, + [711] = {.lex_state = 79}, + [712] = {.lex_state = 79}, + [713] = {.lex_state = 79}, + [714] = {.lex_state = 79}, + [715] = {.lex_state = 79}, + [716] = {.lex_state = 79}, + [717] = {.lex_state = 79}, + [718] = {.lex_state = 79}, + [719] = {.lex_state = 79}, + [720] = {.lex_state = 79}, + [721] = {.lex_state = 79}, + [722] = {.lex_state = 79}, + [723] = {.lex_state = 79}, + [724] = {.lex_state = 79}, + [725] = {.lex_state = 79}, + [726] = {.lex_state = 79}, + [727] = {.lex_state = 79}, + [728] = {.lex_state = 79}, + [729] = {.lex_state = 79}, + [730] = {.lex_state = 79}, + [731] = {.lex_state = 79}, + [732] = {.lex_state = 79}, + [733] = {.lex_state = 79}, + [734] = {.lex_state = 79}, + [735] = {.lex_state = 79}, + [736] = {.lex_state = 79}, + [737] = {.lex_state = 79}, + [738] = {.lex_state = 79}, + [739] = {.lex_state = 79}, + [740] = {.lex_state = 79}, + [741] = {.lex_state = 79}, + [742] = {.lex_state = 79}, + [743] = {.lex_state = 79}, + [744] = {.lex_state = 79}, + [745] = {.lex_state = 79}, + [746] = {.lex_state = 79}, + [747] = {.lex_state = 79}, + [748] = {.lex_state = 79}, + [749] = {.lex_state = 79}, + [750] = {.lex_state = 79}, + [751] = {.lex_state = 79}, + [752] = {.lex_state = 79}, + [753] = {.lex_state = 79}, + [754] = {.lex_state = 79}, + [755] = {.lex_state = 79}, + [756] = {.lex_state = 79}, + [757] = {.lex_state = 79}, + [758] = {.lex_state = 79}, + [759] = {.lex_state = 79}, + [760] = {.lex_state = 79}, + [761] = {.lex_state = 24}, + [762] = {.lex_state = 345}, + [763] = {.lex_state = 345}, + [764] = {.lex_state = 345}, + [765] = {.lex_state = 1165}, + [766] = {.lex_state = 345}, + [767] = {.lex_state = 345}, + [768] = {.lex_state = 1099}, + [769] = {.lex_state = 1099}, + [770] = {.lex_state = 364}, + [771] = {.lex_state = 364}, + [772] = {.lex_state = 364}, + [773] = {.lex_state = 364}, + [774] = {.lex_state = 364}, + [775] = {.lex_state = 364}, + [776] = {.lex_state = 364}, + [777] = {.lex_state = 364}, + [778] = {.lex_state = 364}, + [779] = {.lex_state = 364}, + [780] = {.lex_state = 364}, + [781] = {.lex_state = 364}, + [782] = {.lex_state = 1165}, + [783] = {.lex_state = 364}, + [784] = {.lex_state = 364}, + [785] = {.lex_state = 364}, + [786] = {.lex_state = 1101}, + [787] = {.lex_state = 1099}, + [788] = {.lex_state = 364}, + [789] = {.lex_state = 364}, + [790] = {.lex_state = 364}, + [791] = {.lex_state = 1101}, + [792] = {.lex_state = 364}, + [793] = {.lex_state = 364}, + [794] = {.lex_state = 364}, + [795] = {.lex_state = 1101}, + [796] = {.lex_state = 1103}, + [797] = {.lex_state = 364}, + [798] = {.lex_state = 364}, + [799] = {.lex_state = 364}, + [800] = {.lex_state = 364}, + [801] = {.lex_state = 364}, + [802] = {.lex_state = 364}, + [803] = {.lex_state = 364}, + [804] = {.lex_state = 345}, + [805] = {.lex_state = 364}, + [806] = {.lex_state = 364}, + [807] = {.lex_state = 364}, + [808] = {.lex_state = 364}, + [809] = {.lex_state = 364}, + [810] = {.lex_state = 364}, + [811] = {.lex_state = 1099}, + [812] = {.lex_state = 1109}, + [813] = {.lex_state = 364}, + [814] = {.lex_state = 1109}, + [815] = {.lex_state = 1101}, + [816] = {.lex_state = 1101}, + [817] = {.lex_state = 364}, + [818] = {.lex_state = 345}, + [819] = {.lex_state = 1101}, + [820] = {.lex_state = 364}, + [821] = {.lex_state = 1111}, + [822] = {.lex_state = 1111}, + [823] = {.lex_state = 1105}, + [824] = {.lex_state = 1109}, + [825] = {.lex_state = 106}, + [826] = {.lex_state = 1105}, + [827] = {.lex_state = 1111}, + [828] = {.lex_state = 1111}, + [829] = {.lex_state = 1105}, + [830] = {.lex_state = 1109}, + [831] = {.lex_state = 1105}, + [832] = {.lex_state = 1106}, + [833] = {.lex_state = 1101}, + [834] = {.lex_state = 1101}, + [835] = {.lex_state = 1101}, + [836] = {.lex_state = 1101}, + [837] = {.lex_state = 1101}, + [838] = {.lex_state = 1101}, + [839] = {.lex_state = 1103}, + [840] = {.lex_state = 1111}, + [841] = {.lex_state = 1106}, + [842] = {.lex_state = 110}, + [843] = {.lex_state = 107}, + [844] = {.lex_state = 1105}, + [845] = {.lex_state = 107}, + [846] = {.lex_state = 1113}, + [847] = {.lex_state = 1105}, + [848] = {.lex_state = 364}, + [849] = {.lex_state = 107}, + [850] = {.lex_state = 1106}, + [851] = {.lex_state = 364}, + [852] = {.lex_state = 1105}, + [853] = {.lex_state = 1111}, + [854] = {.lex_state = 1111}, + [855] = {.lex_state = 1105}, + [856] = {.lex_state = 1106}, + [857] = {.lex_state = 102}, + [858] = {.lex_state = 1106}, + [859] = {.lex_state = 1111}, + [860] = {.lex_state = 1111}, + [861] = {.lex_state = 1111}, + [862] = {.lex_state = 107}, + [863] = {.lex_state = 108}, + [864] = {.lex_state = 111}, + [865] = {.lex_state = 103}, + [866] = {.lex_state = 103}, + [867] = {.lex_state = 1113}, + [868] = {.lex_state = 103}, + [869] = {.lex_state = 111}, + [870] = {.lex_state = 108}, + [871] = {.lex_state = 108}, + [872] = {.lex_state = 1115}, + [873] = {.lex_state = 1115}, + [874] = {.lex_state = 1115}, + [875] = {.lex_state = 103}, + [876] = {.lex_state = 1176}, + [877] = {.lex_state = 1115}, + [878] = {.lex_state = 108}, + [879] = {.lex_state = 240}, + [880] = {.lex_state = 1106}, + [881] = {.lex_state = 1106}, + [882] = {.lex_state = 1106}, + [883] = {.lex_state = 108}, + [884] = {.lex_state = 111}, + [885] = {.lex_state = 111}, + [886] = {.lex_state = 1178}, + [887] = {.lex_state = 1115}, + [888] = {.lex_state = 1116}, + [889] = {.lex_state = 359}, + [890] = {.lex_state = 104}, + [891] = {.lex_state = 1139}, + [892] = {.lex_state = 300}, + [893] = {.lex_state = 1115}, + [894] = {.lex_state = 359}, + [895] = {.lex_state = 359}, + [896] = {.lex_state = 1139}, + [897] = {.lex_state = 314}, + [898] = {.lex_state = 314}, + [899] = {.lex_state = 314}, + [900] = {.lex_state = 314}, + [901] = {.lex_state = 359}, + [902] = {.lex_state = 1115}, + [903] = {.lex_state = 1176}, + [904] = {.lex_state = 1178}, + [905] = {.lex_state = 1178}, + [906] = {.lex_state = 1139}, + [907] = {.lex_state = 359}, + [908] = {.lex_state = 104}, + [909] = {.lex_state = 359}, + [910] = {.lex_state = 1178}, + [911] = {.lex_state = 359}, + [912] = {.lex_state = 359}, + [913] = {.lex_state = 359}, + [914] = {.lex_state = 359}, + [915] = {.lex_state = 359}, + [916] = {.lex_state = 359}, + [917] = {.lex_state = 359}, + [918] = {.lex_state = 104}, + [919] = {.lex_state = 1115}, + [920] = {.lex_state = 260}, + [921] = {.lex_state = 293}, + [922] = {.lex_state = 239}, + [923] = {.lex_state = 104}, + [924] = {.lex_state = 359}, + [925] = {.lex_state = 359}, + [926] = {.lex_state = 359}, + [927] = {.lex_state = 314}, + [928] = {.lex_state = 359}, + [929] = {.lex_state = 1139}, + [930] = {.lex_state = 104}, + [931] = {.lex_state = 359}, + [932] = {.lex_state = 359}, + [933] = {.lex_state = 1116}, + [934] = {.lex_state = 112}, + [935] = {.lex_state = 1139}, + [936] = {.lex_state = 1116}, + [937] = {.lex_state = 359}, + [938] = {.lex_state = 112}, + [939] = {.lex_state = 241}, + [940] = {.lex_state = 112}, + [941] = {.lex_state = 359}, + [942] = {.lex_state = 1133}, + [943] = {.lex_state = 1116}, + [944] = {.lex_state = 359}, + [945] = {.lex_state = 1116}, + [946] = {.lex_state = 112}, + [947] = {.lex_state = 1134}, + [948] = {.lex_state = 1130}, + [949] = {.lex_state = 306}, + [950] = {.lex_state = 306}, + [951] = {.lex_state = 306}, + [952] = {.lex_state = 306}, + [953] = {.lex_state = 313}, + [954] = {.lex_state = 313}, + [955] = {.lex_state = 1139}, + [956] = {.lex_state = 1130}, + [957] = {.lex_state = 1163}, + [958] = {.lex_state = 1139}, + [959] = {.lex_state = 313}, + [960] = {.lex_state = 1179}, + [961] = {.lex_state = 313}, + [962] = {.lex_state = 1179}, + [963] = {.lex_state = 1179}, + [964] = {.lex_state = 1178}, + [965] = {.lex_state = 1178}, + [966] = {.lex_state = 1178}, + [967] = {.lex_state = 1139}, + [968] = {.lex_state = 1143}, + [969] = {.lex_state = 1141}, + [970] = {.lex_state = 1178}, + [971] = {.lex_state = 1116}, + [972] = {.lex_state = 1130}, + [973] = {.lex_state = 1133}, + [974] = {.lex_state = 301}, + [975] = {.lex_state = 301}, + [976] = {.lex_state = 1143}, + [977] = {.lex_state = 294}, + [978] = {.lex_state = 1139}, + [979] = {.lex_state = 1143}, + [980] = {.lex_state = 1143}, + [981] = {.lex_state = 259}, + [982] = {.lex_state = 1143}, + [983] = {.lex_state = 1116}, + [984] = {.lex_state = 294}, + [985] = {.lex_state = 301}, + [986] = {.lex_state = 1167}, + [987] = {.lex_state = 294}, + [988] = {.lex_state = 294}, + [989] = {.lex_state = 294}, + [990] = {.lex_state = 1139}, + [991] = {.lex_state = 1179}, + [992] = {.lex_state = 1179}, + [993] = {.lex_state = 1116}, + [994] = {.lex_state = 306}, + [995] = {.lex_state = 1116}, + [996] = {.lex_state = 1116}, + [997] = {.lex_state = 1121}, + [998] = {.lex_state = 261}, + [999] = {.lex_state = 1031}, + [1000] = {.lex_state = 1139}, + [1001] = {.lex_state = 1139}, + [1002] = {.lex_state = 1139}, + [1003] = {.lex_state = 1139}, + [1004] = {.lex_state = 1143}, + [1005] = {.lex_state = 314}, + [1006] = {.lex_state = 1184}, + [1007] = {.lex_state = 1125}, + [1008] = {.lex_state = 1121}, + [1009] = {.lex_state = 305}, + [1010] = {.lex_state = 305}, + [1011] = {.lex_state = 302}, + [1012] = {.lex_state = 1130}, + [1013] = {.lex_state = 314}, + [1014] = {.lex_state = 314}, + [1015] = {.lex_state = 1160}, + [1016] = {.lex_state = 1160}, + [1017] = {.lex_state = 1143}, + [1018] = {.lex_state = 1139}, + [1019] = {.lex_state = 1160}, + [1020] = {.lex_state = 1139}, + [1021] = {.lex_state = 292}, + [1022] = {.lex_state = 292}, + [1023] = {.lex_state = 1139}, + [1024] = {.lex_state = 1179}, + [1025] = {.lex_state = 302}, + [1026] = {.lex_state = 292}, + [1027] = {.lex_state = 292}, + [1028] = {.lex_state = 1179}, + [1029] = {.lex_state = 1179}, + [1030] = {.lex_state = 1143}, + [1031] = {.lex_state = 1143}, + [1032] = {.lex_state = 1143}, + [1033] = {.lex_state = 1034}, + [1034] = {.lex_state = 1163}, + [1035] = {.lex_state = 1031}, + [1036] = {.lex_state = 1170}, + [1037] = {.lex_state = 1167}, + [1038] = {.lex_state = 302}, + [1039] = {.lex_state = 1125}, + [1040] = {.lex_state = 1125}, + [1041] = {.lex_state = 1179}, + [1042] = {.lex_state = 1125}, + [1043] = {.lex_state = 1179}, + [1044] = {.lex_state = 1139}, + [1045] = {.lex_state = 1139}, + [1046] = {.lex_state = 305}, + [1047] = {.lex_state = 305}, + [1048] = {.lex_state = 1034}, + [1049] = {.lex_state = 1134}, + [1050] = {.lex_state = 1034}, + [1051] = {.lex_state = 1130}, + [1052] = {.lex_state = 1130}, + [1053] = {.lex_state = 1122}, + [1054] = {.lex_state = 302}, + [1055] = {.lex_state = 1139}, + [1056] = {.lex_state = 1034}, + [1057] = {.lex_state = 1139}, + [1058] = {.lex_state = 1141}, + [1059] = {.lex_state = 1137}, + [1060] = {.lex_state = 1161}, + [1061] = {.lex_state = 1126}, + [1062] = {.lex_state = 318}, + [1063] = {.lex_state = 294}, + [1064] = {.lex_state = 1035}, + [1065] = {.lex_state = 1034}, + [1066] = {.lex_state = 1157}, + [1067] = {.lex_state = 1125}, + [1068] = {.lex_state = 1161}, + [1069] = {.lex_state = 1126}, + [1070] = {.lex_state = 1157}, + [1071] = {.lex_state = 1188}, + [1072] = {.lex_state = 1157}, + [1073] = {.lex_state = 294}, + [1074] = {.lex_state = 1083}, + [1075] = {.lex_state = 1126}, + [1076] = {.lex_state = 294}, + [1077] = {.lex_state = 306}, + [1078] = {.lex_state = 1185}, + [1079] = {.lex_state = 1126}, + [1080] = {.lex_state = 1125}, + [1081] = {.lex_state = 1157}, + [1082] = {.lex_state = 1160}, + [1083] = {.lex_state = 1139}, + [1084] = {.lex_state = 357}, + [1085] = {.lex_state = 1137}, + [1086] = {.lex_state = 1160}, + [1087] = {.lex_state = 1139}, + [1088] = {.lex_state = 306}, + [1089] = {.lex_state = 1157}, + [1090] = {.lex_state = 1160}, + [1091] = {.lex_state = 1034}, + [1092] = {.lex_state = 318}, + [1093] = {.lex_state = 1161}, + [1094] = {.lex_state = 1161}, + [1095] = {.lex_state = 357}, + [1096] = {.lex_state = 1137}, + [1097] = {.lex_state = 1161}, + [1098] = {.lex_state = 319}, + [1099] = {.lex_state = 1034}, + [1100] = {.lex_state = 1034}, + [1101] = {.lex_state = 319}, + [1102] = {.lex_state = 1161}, + [1103] = {.lex_state = 1161}, + [1104] = {.lex_state = 1192}, + [1105] = {.lex_state = 1157}, + [1106] = {.lex_state = 319}, + [1107] = {.lex_state = 318}, + [1108] = {.lex_state = 1157}, + [1109] = {.lex_state = 1188}, + [1110] = {.lex_state = 1122}, + [1111] = {.lex_state = 1161}, + [1112] = {.lex_state = 1161}, + [1113] = {.lex_state = 1157}, + [1114] = {.lex_state = 1035}, + [1115] = {.lex_state = 1161}, + [1116] = {.lex_state = 1188}, + [1117] = {.lex_state = 1188}, + [1118] = {.lex_state = 1170}, + [1119] = {.lex_state = 1157}, + [1120] = {.lex_state = 306}, + [1121] = {.lex_state = 318}, + [1122] = {.lex_state = 1161}, + [1123] = {.lex_state = 319}, + [1124] = {.lex_state = 1035}, + [1125] = {.lex_state = 1157}, + [1126] = {.lex_state = 318}, + [1127] = {.lex_state = 1126}, + [1128] = {.lex_state = 318}, + [1129] = {.lex_state = 1161}, + [1130] = {.lex_state = 1035}, + [1131] = {.lex_state = 318}, + [1132] = {.lex_state = 318}, + [1133] = {.lex_state = 1139}, + [1134] = {.lex_state = 1125}, + [1135] = {.lex_state = 1184}, + [1136] = {.lex_state = 1161}, + [1137] = {.lex_state = 318}, + [1138] = {.lex_state = 1126}, + [1139] = {.lex_state = 318}, + [1140] = {.lex_state = 318}, + [1141] = {.lex_state = 1035}, + [1142] = {.lex_state = 1126}, + [1143] = {.lex_state = 1119}, + [1144] = {.lex_state = 1125}, + [1145] = {.lex_state = 311}, + [1146] = {.lex_state = 1193}, + [1147] = {.lex_state = 311}, + [1148] = {.lex_state = 311}, + [1149] = {.lex_state = 1161}, + [1150] = {.lex_state = 1189}, + [1151] = {.lex_state = 1189}, + [1152] = {.lex_state = 1157}, + [1153] = {.lex_state = 1137}, + [1154] = {.lex_state = 299}, + [1155] = {.lex_state = 358}, + [1156] = {.lex_state = 1035}, + [1157] = {.lex_state = 1193}, + [1158] = {.lex_state = 1193}, + [1159] = {.lex_state = 1193}, + [1160] = {.lex_state = 364}, + [1161] = {.lex_state = 312}, + [1162] = {.lex_state = 1035}, + [1163] = {.lex_state = 1035}, + [1164] = {.lex_state = 1035}, + [1165] = {.lex_state = 3167}, + [1166] = {.lex_state = 1051}, + [1167] = {.lex_state = 1157}, + [1168] = {.lex_state = 1161}, + [1169] = {.lex_state = 299}, + [1170] = {.lex_state = 299}, + [1171] = {.lex_state = 299}, + [1172] = {.lex_state = 299}, + [1173] = {.lex_state = 358}, + [1174] = {.lex_state = 358}, + [1175] = {.lex_state = 1193}, + [1176] = {.lex_state = 312}, + [1177] = {.lex_state = 299}, + [1178] = {.lex_state = 358}, + [1179] = {.lex_state = 1157}, + [1180] = {.lex_state = 1126}, + [1181] = {.lex_state = 1126}, + [1182] = {.lex_state = 358}, + [1183] = {.lex_state = 1126}, + [1184] = {.lex_state = 1157}, + [1185] = {.lex_state = 1157}, + [1186] = {.lex_state = 1182}, + [1187] = {.lex_state = 1157}, + [1188] = {.lex_state = 1157}, + [1189] = {.lex_state = 311}, + [1190] = {.lex_state = 312}, + [1191] = {.lex_state = 1157}, + [1192] = {.lex_state = 1157}, + [1193] = {.lex_state = 1157}, + [1194] = {.lex_state = 303}, + [1195] = {.lex_state = 1157}, + [1196] = {.lex_state = 1051}, + [1197] = {.lex_state = 1051}, + [1198] = {.lex_state = 1161}, + [1199] = {.lex_state = 1051}, + [1200] = {.lex_state = 1051}, + [1201] = {.lex_state = 1157}, + [1202] = {.lex_state = 1157}, + [1203] = {.lex_state = 1157}, + [1204] = {.lex_state = 1132}, + [1205] = {.lex_state = 1161}, + [1206] = {.lex_state = 1161}, + [1207] = {.lex_state = 1161}, + [1208] = {.lex_state = 1161}, + [1209] = {.lex_state = 303}, + [1210] = {.lex_state = 1035}, + [1211] = {.lex_state = 47}, + [1212] = {.lex_state = 311}, + [1213] = {.lex_state = 311}, + [1214] = {.lex_state = 311}, + [1215] = {.lex_state = 1083}, + [1216] = {.lex_state = 317}, + [1217] = {.lex_state = 317}, + [1218] = {.lex_state = 358}, + [1219] = {.lex_state = 1154}, + [1220] = {.lex_state = 364}, + [1221] = {.lex_state = 1161}, + [1222] = {.lex_state = 1088}, + [1223] = {.lex_state = 317}, + [1224] = {.lex_state = 1189}, + [1225] = {.lex_state = 317}, + [1226] = {.lex_state = 1189}, + [1227] = {.lex_state = 1189}, + [1228] = {.lex_state = 1188}, + [1229] = {.lex_state = 1188}, + [1230] = {.lex_state = 1188}, + [1231] = {.lex_state = 1159}, + [1232] = {.lex_state = 1188}, + [1233] = {.lex_state = 358}, + [1234] = {.lex_state = 364}, + [1235] = {.lex_state = 358}, + [1236] = {.lex_state = 358}, + [1237] = {.lex_state = 1161}, + [1238] = {.lex_state = 358}, + [1239] = {.lex_state = 358}, + [1240] = {.lex_state = 358}, + [1241] = {.lex_state = 1097}, + [1242] = {.lex_state = 358}, + [1243] = {.lex_state = 358}, + [1244] = {.lex_state = 358}, + [1245] = {.lex_state = 1097}, + [1246] = {.lex_state = 358}, + [1247] = {.lex_state = 1097}, + [1248] = {.lex_state = 358}, + [1249] = {.lex_state = 1097}, + [1250] = {.lex_state = 1097}, + [1251] = {.lex_state = 358}, + [1252] = {.lex_state = 358}, + [1253] = {.lex_state = 358}, + [1254] = {.lex_state = 299}, + [1255] = {.lex_state = 303}, + [1256] = {.lex_state = 358}, + [1257] = {.lex_state = 358}, + [1258] = {.lex_state = 1192}, + [1259] = {.lex_state = 358}, + [1260] = {.lex_state = 299}, + [1261] = {.lex_state = 1161}, + [1262] = {.lex_state = 1161}, + [1263] = {.lex_state = 1161}, + [1264] = {.lex_state = 358}, + [1265] = {.lex_state = 1132}, + [1266] = {.lex_state = 1189}, + [1267] = {.lex_state = 1119}, + [1268] = {.lex_state = 311}, + [1269] = {.lex_state = 312}, + [1270] = {.lex_state = 1132}, + [1271] = {.lex_state = 1132}, + [1272] = {.lex_state = 1161}, + [1273] = {.lex_state = 311}, + [1274] = {.lex_state = 1126}, + [1275] = {.lex_state = 299}, + [1276] = {.lex_state = 1189}, + [1277] = {.lex_state = 1126}, + [1278] = {.lex_state = 299}, + [1279] = {.lex_state = 1126}, + [1280] = {.lex_state = 311}, + [1281] = {.lex_state = 299}, + [1282] = {.lex_state = 1126}, + [1283] = {.lex_state = 311}, + [1284] = {.lex_state = 1185}, + [1285] = {.lex_state = 303}, + [1286] = {.lex_state = 299}, + [1287] = {.lex_state = 364}, + [1288] = {.lex_state = 1157}, + [1289] = {.lex_state = 1193}, + [1290] = {.lex_state = 298}, + [1291] = {.lex_state = 1051}, + [1292] = {.lex_state = 1159}, + [1293] = {.lex_state = 1051}, + [1294] = {.lex_state = 298}, + [1295] = {.lex_state = 298}, + [1296] = {.lex_state = 1157}, + [1297] = {.lex_state = 1097}, + [1298] = {.lex_state = 364}, + [1299] = {.lex_state = 1097}, + [1300] = {.lex_state = 1182}, + [1301] = {.lex_state = 1097}, + [1302] = {.lex_state = 1097}, + [1303] = {.lex_state = 1132}, + [1304] = {.lex_state = 109}, + [1305] = {.lex_state = 1051}, + [1306] = {.lex_state = 1157}, + [1307] = {.lex_state = 1157}, + [1308] = {.lex_state = 1051}, + [1309] = {.lex_state = 1132}, + [1310] = {.lex_state = 1143}, + [1311] = {.lex_state = 3167}, + [1312] = {.lex_state = 1132}, + [1313] = {.lex_state = 1132}, + [1314] = {.lex_state = 310}, + [1315] = {.lex_state = 1132}, + [1316] = {.lex_state = 310}, + [1317] = {.lex_state = 1051}, + [1318] = {.lex_state = 1051}, + [1319] = {.lex_state = 1051}, + [1320] = {.lex_state = 298}, + [1321] = {.lex_state = 1051}, + [1322] = {.lex_state = 1132}, + [1323] = {.lex_state = 1150}, + [1324] = {.lex_state = 46}, + [1325] = {.lex_state = 1097}, + [1326] = {.lex_state = 1088}, + [1327] = {.lex_state = 1051}, + [1328] = {.lex_state = 1154}, + [1329] = {.lex_state = 48}, + [1330] = {.lex_state = 1157}, + [1331] = {.lex_state = 1132}, + [1332] = {.lex_state = 1097}, + [1333] = {.lex_state = 310}, + [1334] = {.lex_state = 310}, + [1335] = {.lex_state = 321}, + [1336] = {.lex_state = 321}, + [1337] = {.lex_state = 1097}, + [1338] = {.lex_state = 1193}, + [1339] = {.lex_state = 1097}, + [1340] = {.lex_state = 318}, + [1341] = {.lex_state = 3167}, + [1342] = {.lex_state = 1193}, + [1343] = {.lex_state = 1168}, + [1344] = {.lex_state = 318}, + [1345] = {.lex_state = 1132}, + [1346] = {.lex_state = 1193}, + [1347] = {.lex_state = 1132}, + [1348] = {.lex_state = 318}, + [1349] = {.lex_state = 109}, + [1350] = {.lex_state = 1147}, + [1351] = {.lex_state = 1147}, + [1352] = {.lex_state = 1193}, + [1353] = {.lex_state = 1147}, + [1354] = {.lex_state = 1148}, + [1355] = {.lex_state = 321}, + [1356] = {.lex_state = 1097}, [1357] = {.lex_state = 1157}, - [1358] = {.lex_state = 1039}, - [1359] = {.lex_state = 318}, - [1360] = {.lex_state = 1146}, - [1361] = {.lex_state = 1187}, - [1362] = {.lex_state = 1169}, - [1363] = {.lex_state = 1099}, - [1364] = {.lex_state = 1191}, - [1365] = {.lex_state = 1146}, - [1366] = {.lex_state = 357}, - [1367] = {.lex_state = 1159}, - [1368] = {.lex_state = 306}, - [1369] = {.lex_state = 319}, - [1370] = {.lex_state = 1158}, - [1371] = {.lex_state = 318}, - [1372] = {.lex_state = 1191}, - [1373] = {.lex_state = 1187}, - [1374] = {.lex_state = 1040}, - [1375] = {.lex_state = 1169}, - [1376] = {.lex_state = 1214}, - [1377] = {.lex_state = 1187}, - [1378] = {.lex_state = 1191}, - [1379] = {.lex_state = 1169}, - [1380] = {.lex_state = 318}, - [1381] = {.lex_state = 1187}, - [1382] = {.lex_state = 1191}, - [1383] = {.lex_state = 1146}, - [1384] = {.lex_state = 318}, - [1385] = {.lex_state = 319}, - [1386] = {.lex_state = 1191}, - [1387] = {.lex_state = 319}, - [1388] = {.lex_state = 318}, - [1389] = {.lex_state = 1159}, - [1390] = {.lex_state = 318}, - [1391] = {.lex_state = 1146}, - [1392] = {.lex_state = 1198}, - [1393] = {.lex_state = 1040}, - [1394] = {.lex_state = 357}, - [1395] = {.lex_state = 1187}, - [1396] = {.lex_state = 318}, - [1397] = {.lex_state = 1139}, - [1398] = {.lex_state = 1215}, - [1399] = {.lex_state = 1218}, - [1400] = {.lex_state = 1187}, - [1401] = {.lex_state = 318}, - [1402] = {.lex_state = 1157}, - [1403] = {.lex_state = 1187}, - [1404] = {.lex_state = 1191}, - [1405] = {.lex_state = 306}, - [1406] = {.lex_state = 1191}, - [1407] = {.lex_state = 1187}, - [1408] = {.lex_state = 1145}, - [1409] = {.lex_state = 1218}, - [1410] = {.lex_state = 1040}, - [1411] = {.lex_state = 294}, - [1412] = {.lex_state = 1191}, - [1413] = {.lex_state = 1218}, - [1414] = {.lex_state = 1146}, - [1415] = {.lex_state = 1145}, - [1416] = {.lex_state = 1146}, - [1417] = {.lex_state = 318}, - [1418] = {.lex_state = 294}, - [1419] = {.lex_state = 1040}, - [1420] = {.lex_state = 1190}, - [1421] = {.lex_state = 1190}, - [1422] = {.lex_state = 1191}, - [1423] = {.lex_state = 1157}, - [1424] = {.lex_state = 1039}, - [1425] = {.lex_state = 1159}, - [1426] = {.lex_state = 1157}, - [1427] = {.lex_state = 1146}, - [1428] = {.lex_state = 1187}, - [1429] = {.lex_state = 318}, - [1430] = {.lex_state = 1191}, - [1431] = {.lex_state = 1142}, - [1432] = {.lex_state = 1190}, - [1433] = {.lex_state = 1218}, - [1434] = {.lex_state = 318}, - [1435] = {.lex_state = 1039}, - [1436] = {.lex_state = 1168}, - [1437] = {.lex_state = 306}, - [1438] = {.lex_state = 1222}, - [1439] = {.lex_state = 1040}, - [1440] = {.lex_state = 1157}, - [1441] = {.lex_state = 1191}, - [1442] = {.lex_state = 1146}, - [1443] = {.lex_state = 1219}, - [1444] = {.lex_state = 1146}, - [1445] = {.lex_state = 1219}, - [1446] = {.lex_state = 358}, - [1447] = {.lex_state = 1187}, - [1448] = {.lex_state = 1152}, - [1449] = {.lex_state = 1040}, - [1450] = {.lex_state = 358}, - [1451] = {.lex_state = 1146}, - [1452] = {.lex_state = 1146}, - [1453] = {.lex_state = 358}, - [1454] = {.lex_state = 1105}, - [1455] = {.lex_state = 311}, - [1456] = {.lex_state = 358}, - [1457] = {.lex_state = 311}, - [1458] = {.lex_state = 1066}, - [1459] = {.lex_state = 358}, - [1460] = {.lex_state = 1116}, - [1461] = {.lex_state = 1184}, - [1462] = {.lex_state = 358}, - [1463] = {.lex_state = 1116}, - [1464] = {.lex_state = 358}, - [1465] = {.lex_state = 1152}, - [1466] = {.lex_state = 1116}, - [1467] = {.lex_state = 358}, - [1468] = {.lex_state = 311}, - [1469] = {.lex_state = 358}, - [1470] = {.lex_state = 311}, - [1471] = {.lex_state = 358}, - [1472] = {.lex_state = 1152}, - [1473] = {.lex_state = 358}, - [1474] = {.lex_state = 1116}, - [1475] = {.lex_state = 1191}, - [1476] = {.lex_state = 1116}, - [1477] = {.lex_state = 358}, - [1478] = {.lex_state = 299}, - [1479] = {.lex_state = 317}, - [1480] = {.lex_state = 358}, - [1481] = {.lex_state = 317}, - [1482] = {.lex_state = 1166}, - [1483] = {.lex_state = 299}, - [1484] = {.lex_state = 303}, - [1485] = {.lex_state = 1187}, - [1486] = {.lex_state = 1222}, - [1487] = {.lex_state = 1191}, - [1488] = {.lex_state = 1157}, - [1489] = {.lex_state = 303}, - [1490] = {.lex_state = 1158}, - [1491] = {.lex_state = 1191}, - [1492] = {.lex_state = 1191}, - [1493] = {.lex_state = 1166}, - [1494] = {.lex_state = 311}, - [1495] = {.lex_state = 312}, - [1496] = {.lex_state = 1223}, - [1497] = {.lex_state = 299}, - [1498] = {.lex_state = 1187}, - [1499] = {.lex_state = 1223}, - [1500] = {.lex_state = 47}, - [1501] = {.lex_state = 299}, - [1502] = {.lex_state = 299}, - [1503] = {.lex_state = 1157}, - [1504] = {.lex_state = 299}, - [1505] = {.lex_state = 311}, - [1506] = {.lex_state = 1223}, - [1507] = {.lex_state = 1157}, - [1508] = {.lex_state = 1157}, - [1509] = {.lex_state = 1146}, - [1510] = {.lex_state = 1223}, - [1511] = {.lex_state = 1191}, - [1512] = {.lex_state = 1157}, - [1513] = {.lex_state = 1191}, - [1514] = {.lex_state = 311}, + [1358] = {.lex_state = 1189}, + [1359] = {.lex_state = 1189}, + [1360] = {.lex_state = 1189}, + [1361] = {.lex_state = 2551}, + [1362] = {.lex_state = 1189}, + [1363] = {.lex_state = 1157}, + [1364] = {.lex_state = 321}, + [1365] = {.lex_state = 1189}, + [1366] = {.lex_state = 1189}, + [1367] = {.lex_state = 1189}, + [1368] = {.lex_state = 315}, + [1369] = {.lex_state = 1132}, + [1370] = {.lex_state = 1132}, + [1371] = {.lex_state = 1155}, + [1372] = {.lex_state = 1136}, + [1373] = {.lex_state = 321}, + [1374] = {.lex_state = 358}, + [1375] = {.lex_state = 316}, + [1376] = {.lex_state = 358}, + [1377] = {.lex_state = 358}, + [1378] = {.lex_state = 358}, + [1379] = {.lex_state = 358}, + [1380] = {.lex_state = 358}, + [1381] = {.lex_state = 316}, + [1382] = {.lex_state = 358}, + [1383] = {.lex_state = 358}, + [1384] = {.lex_state = 1130}, + [1385] = {.lex_state = 316}, + [1386] = {.lex_state = 1143}, + [1387] = {.lex_state = 105}, + [1388] = {.lex_state = 1130}, + [1389] = {.lex_state = 1130}, + [1390] = {.lex_state = 358}, + [1391] = {.lex_state = 358}, + [1392] = {.lex_state = 358}, + [1393] = {.lex_state = 358}, + [1394] = {.lex_state = 316}, + [1395] = {.lex_state = 316}, + [1396] = {.lex_state = 316}, + [1397] = {.lex_state = 358}, + [1398] = {.lex_state = 316}, + [1399] = {.lex_state = 358}, + [1400] = {.lex_state = 358}, + [1401] = {.lex_state = 358}, + [1402] = {.lex_state = 358}, + [1403] = {.lex_state = 358}, + [1404] = {.lex_state = 358}, + [1405] = {.lex_state = 358}, + [1406] = {.lex_state = 316}, + [1407] = {.lex_state = 358}, + [1408] = {.lex_state = 3165}, + [1409] = {.lex_state = 322}, + [1410] = {.lex_state = 322}, + [1411] = {.lex_state = 322}, + [1412] = {.lex_state = 316}, + [1413] = {.lex_state = 1175}, + [1414] = {.lex_state = 316}, + [1415] = {.lex_state = 316}, + [1416] = {.lex_state = 1132}, + [1417] = {.lex_state = 316}, + [1418] = {.lex_state = 316}, + [1419] = {.lex_state = 1143}, + [1420] = {.lex_state = 1051}, + [1421] = {.lex_state = 1051}, + [1422] = {.lex_state = 316}, + [1423] = {.lex_state = 1148}, + [1424] = {.lex_state = 316}, + [1425] = {.lex_state = 316}, + [1426] = {.lex_state = 316}, + [1427] = {.lex_state = 316}, + [1428] = {.lex_state = 1132}, + [1429] = {.lex_state = 275}, + [1430] = {.lex_state = 1143}, + [1431] = {.lex_state = 1143}, + [1432] = {.lex_state = 1142}, + [1433] = {.lex_state = 1143}, + [1434] = {.lex_state = 316}, + [1435] = {.lex_state = 1143}, + [1436] = {.lex_state = 1143}, + [1437] = {.lex_state = 1157}, + [1438] = {.lex_state = 1132}, + [1439] = {.lex_state = 1143}, + [1440] = {.lex_state = 1142}, + [1441] = {.lex_state = 1157}, + [1442] = {.lex_state = 1143}, + [1443] = {.lex_state = 1142}, + [1444] = {.lex_state = 1157}, + [1445] = {.lex_state = 1142}, + [1446] = {.lex_state = 1143}, + [1447] = {.lex_state = 1051}, + [1448] = {.lex_state = 275}, + [1449] = {.lex_state = 1142}, + [1450] = {.lex_state = 1051}, + [1451] = {.lex_state = 1143}, + [1452] = {.lex_state = 1051}, + [1453] = {.lex_state = 1143}, + [1454] = {.lex_state = 316}, + [1455] = {.lex_state = 1142}, + [1456] = {.lex_state = 316}, + [1457] = {.lex_state = 316}, + [1458] = {.lex_state = 316}, + [1459] = {.lex_state = 316}, + [1460] = {.lex_state = 316}, + [1461] = {.lex_state = 3167}, + [1462] = {.lex_state = 1142}, + [1463] = {.lex_state = 316}, + [1464] = {.lex_state = 316}, + [1465] = {.lex_state = 1142}, + [1466] = {.lex_state = 1132}, + [1467] = {.lex_state = 1132}, + [1468] = {.lex_state = 316}, + [1469] = {.lex_state = 113}, + [1470] = {.lex_state = 316}, + [1471] = {.lex_state = 1143}, + [1472] = {.lex_state = 316}, + [1473] = {.lex_state = 316}, + [1474] = {.lex_state = 316}, + [1475] = {.lex_state = 358}, + [1476] = {.lex_state = 1143}, + [1477] = {.lex_state = 1142}, + [1478] = {.lex_state = 1143}, + [1479] = {.lex_state = 1142}, + [1480] = {.lex_state = 1143}, + [1481] = {.lex_state = 358}, + [1482] = {.lex_state = 358}, + [1483] = {.lex_state = 358}, + [1484] = {.lex_state = 1147}, + [1485] = {.lex_state = 1147}, + [1486] = {.lex_state = 1147}, + [1487] = {.lex_state = 316}, + [1488] = {.lex_state = 1143}, + [1489] = {.lex_state = 316}, + [1490] = {.lex_state = 1143}, + [1491] = {.lex_state = 1143}, + [1492] = {.lex_state = 322}, + [1493] = {.lex_state = 311}, + [1494] = {.lex_state = 316}, + [1495] = {.lex_state = 316}, + [1496] = {.lex_state = 311}, + [1497] = {.lex_state = 311}, + [1498] = {.lex_state = 275}, + [1499] = {.lex_state = 316}, + [1500] = {.lex_state = 1143}, + [1501] = {.lex_state = 275}, + [1502] = {.lex_state = 275}, + [1503] = {.lex_state = 316}, + [1504] = {.lex_state = 1143}, + [1505] = {.lex_state = 1143}, + [1506] = {.lex_state = 2552}, + [1507] = {.lex_state = 316}, + [1508] = {.lex_state = 316}, + [1509] = {.lex_state = 316}, + [1510] = {.lex_state = 316}, + [1511] = {.lex_state = 316}, + [1512] = {.lex_state = 1142}, + [1513] = {.lex_state = 1142}, + [1514] = {.lex_state = 358}, [1515] = {.lex_state = 358}, - [1516] = {.lex_state = 303}, - [1517] = {.lex_state = 1187}, - [1518] = {.lex_state = 299}, - [1519] = {.lex_state = 1191}, - [1520] = {.lex_state = 1157}, + [1516] = {.lex_state = 1142}, + [1517] = {.lex_state = 358}, + [1518] = {.lex_state = 358}, + [1519] = {.lex_state = 316}, + [1520] = {.lex_state = 1142}, [1521] = {.lex_state = 358}, - [1522] = {.lex_state = 312}, - [1523] = {.lex_state = 299}, - [1524] = {.lex_state = 311}, - [1525] = {.lex_state = 1187}, - [1526] = {.lex_state = 1157}, - [1527] = {.lex_state = 1187}, - [1528] = {.lex_state = 1191}, - [1529] = {.lex_state = 1219}, + [1522] = {.lex_state = 1142}, + [1523] = {.lex_state = 1143}, + [1524] = {.lex_state = 1143}, + [1525] = {.lex_state = 1142}, + [1526] = {.lex_state = 1143}, + [1527] = {.lex_state = 1143}, + [1528] = {.lex_state = 358}, + [1529] = {.lex_state = 358}, [1530] = {.lex_state = 358}, - [1531] = {.lex_state = 1191}, - [1532] = {.lex_state = 1219}, - [1533] = {.lex_state = 1187}, - [1534] = {.lex_state = 364}, - [1535] = {.lex_state = 1219}, - [1536] = {.lex_state = 1218}, - [1537] = {.lex_state = 1187}, - [1538] = {.lex_state = 1218}, - [1539] = {.lex_state = 1218}, - [1540] = {.lex_state = 1099}, - [1541] = {.lex_state = 1066}, - [1542] = {.lex_state = 1212}, - [1543] = {.lex_state = 1159}, - [1544] = {.lex_state = 1191}, - [1545] = {.lex_state = 1066}, - [1546] = {.lex_state = 312}, - [1547] = {.lex_state = 1191}, - [1548] = {.lex_state = 1146}, - [1549] = {.lex_state = 364}, - [1550] = {.lex_state = 1166}, - [1551] = {.lex_state = 1146}, + [1531] = {.lex_state = 358}, + [1532] = {.lex_state = 1143}, + [1533] = {.lex_state = 358}, + [1534] = {.lex_state = 358}, + [1535] = {.lex_state = 358}, + [1536] = {.lex_state = 1143}, + [1537] = {.lex_state = 358}, + [1538] = {.lex_state = 1143}, + [1539] = {.lex_state = 1143}, + [1540] = {.lex_state = 1143}, + [1541] = {.lex_state = 1143}, + [1542] = {.lex_state = 358}, + [1543] = {.lex_state = 358}, + [1544] = {.lex_state = 358}, + [1545] = {.lex_state = 358}, + [1546] = {.lex_state = 358}, + [1547] = {.lex_state = 358}, + [1548] = {.lex_state = 358}, + [1549] = {.lex_state = 358}, + [1550] = {.lex_state = 358}, + [1551] = {.lex_state = 358}, [1552] = {.lex_state = 358}, - [1553] = {.lex_state = 317}, - [1554] = {.lex_state = 317}, - [1555] = {.lex_state = 1040}, - [1556] = {.lex_state = 1066}, - [1557] = {.lex_state = 303}, - [1558] = {.lex_state = 1066}, - [1559] = {.lex_state = 1189}, - [1560] = {.lex_state = 3206}, - [1561] = {.lex_state = 1218}, - [1562] = {.lex_state = 1215}, - [1563] = {.lex_state = 1187}, - [1564] = {.lex_state = 299}, + [1553] = {.lex_state = 358}, + [1554] = {.lex_state = 358}, + [1555] = {.lex_state = 358}, + [1556] = {.lex_state = 358}, + [1557] = {.lex_state = 358}, + [1558] = {.lex_state = 358}, + [1559] = {.lex_state = 358}, + [1560] = {.lex_state = 358}, + [1561] = {.lex_state = 358}, + [1562] = {.lex_state = 358}, + [1563] = {.lex_state = 358}, + [1564] = {.lex_state = 358}, [1565] = {.lex_state = 358}, - [1566] = {.lex_state = 364}, - [1567] = {.lex_state = 1040}, - [1568] = {.lex_state = 1040}, - [1569] = {.lex_state = 1187}, - [1570] = {.lex_state = 1139}, - [1571] = {.lex_state = 299}, - [1572] = {.lex_state = 1187}, - [1573] = {.lex_state = 1040}, - [1574] = {.lex_state = 299}, - [1575] = {.lex_state = 1152}, - [1576] = {.lex_state = 1191}, + [1566] = {.lex_state = 358}, + [1567] = {.lex_state = 358}, + [1568] = {.lex_state = 1143}, + [1569] = {.lex_state = 1143}, + [1570] = {.lex_state = 1143}, + [1571] = {.lex_state = 358}, + [1572] = {.lex_state = 358}, + [1573] = {.lex_state = 358}, + [1574] = {.lex_state = 358}, + [1575] = {.lex_state = 358}, + [1576] = {.lex_state = 358}, [1577] = {.lex_state = 358}, - [1578] = {.lex_state = 1223}, - [1579] = {.lex_state = 311}, - [1580] = {.lex_state = 1191}, + [1578] = {.lex_state = 358}, + [1579] = {.lex_state = 358}, + [1580] = {.lex_state = 358}, [1581] = {.lex_state = 358}, - [1582] = {.lex_state = 1219}, + [1582] = {.lex_state = 358}, [1583] = {.lex_state = 358}, - [1584] = {.lex_state = 1187}, - [1585] = {.lex_state = 311}, + [1584] = {.lex_state = 358}, + [1585] = {.lex_state = 358}, [1586] = {.lex_state = 358}, - [1587] = {.lex_state = 1187}, - [1588] = {.lex_state = 1168}, - [1589] = {.lex_state = 311}, - [1590] = {.lex_state = 1187}, - [1591] = {.lex_state = 312}, - [1592] = {.lex_state = 1219}, + [1587] = {.lex_state = 358}, + [1588] = {.lex_state = 358}, + [1589] = {.lex_state = 358}, + [1590] = {.lex_state = 358}, + [1591] = {.lex_state = 358}, + [1592] = {.lex_state = 358}, [1593] = {.lex_state = 358}, [1594] = {.lex_state = 358}, - [1595] = {.lex_state = 299}, - [1596] = {.lex_state = 109}, - [1597] = {.lex_state = 48}, - [1598] = {.lex_state = 1184}, - [1599] = {.lex_state = 364}, - [1600] = {.lex_state = 1157}, - [1601] = {.lex_state = 1116}, - [1602] = {.lex_state = 310}, - [1603] = {.lex_state = 318}, - [1604] = {.lex_state = 1066}, - [1605] = {.lex_state = 1219}, - [1606] = {.lex_state = 321}, - [1607] = {.lex_state = 318}, - [1608] = {.lex_state = 1166}, - [1609] = {.lex_state = 1157}, - [1610] = {.lex_state = 1167}, - [1611] = {.lex_state = 3206}, - [1612] = {.lex_state = 1116}, - [1613] = {.lex_state = 1116}, - [1614] = {.lex_state = 1116}, - [1615] = {.lex_state = 310}, - [1616] = {.lex_state = 1066}, - [1617] = {.lex_state = 1116}, - [1618] = {.lex_state = 46}, - [1619] = {.lex_state = 1219}, - [1620] = {.lex_state = 1167}, - [1621] = {.lex_state = 1219}, - [1622] = {.lex_state = 321}, - [1623] = {.lex_state = 1219}, - [1624] = {.lex_state = 1066}, - [1625] = {.lex_state = 1173}, - [1626] = {.lex_state = 1212}, - [1627] = {.lex_state = 1189}, - [1628] = {.lex_state = 1066}, - [1629] = {.lex_state = 1177}, - [1630] = {.lex_state = 321}, - [1631] = {.lex_state = 1167}, - [1632] = {.lex_state = 1177}, - [1633] = {.lex_state = 1066}, - [1634] = {.lex_state = 1167}, - [1635] = {.lex_state = 1167}, - [1636] = {.lex_state = 1223}, - [1637] = {.lex_state = 1199}, - [1638] = {.lex_state = 1177}, - [1639] = {.lex_state = 1167}, - [1640] = {.lex_state = 298}, - [1641] = {.lex_state = 1167}, - [1642] = {.lex_state = 1187}, - [1643] = {.lex_state = 321}, - [1644] = {.lex_state = 1157}, - [1645] = {.lex_state = 1219}, - [1646] = {.lex_state = 321}, - [1647] = {.lex_state = 1219}, - [1648] = {.lex_state = 1187}, - [1649] = {.lex_state = 1219}, - [1650] = {.lex_state = 1105}, - [1651] = {.lex_state = 1156}, - [1652] = {.lex_state = 1066}, - [1653] = {.lex_state = 1167}, - [1654] = {.lex_state = 364}, - [1655] = {.lex_state = 3206}, - [1656] = {.lex_state = 298}, - [1657] = {.lex_state = 1116}, - [1658] = {.lex_state = 2589}, - [1659] = {.lex_state = 1152}, - [1660] = {.lex_state = 109}, - [1661] = {.lex_state = 310}, - [1662] = {.lex_state = 1187}, - [1663] = {.lex_state = 1152}, - [1664] = {.lex_state = 1152}, - [1665] = {.lex_state = 1187}, - [1666] = {.lex_state = 1167}, - [1667] = {.lex_state = 1152}, - [1668] = {.lex_state = 1187}, - [1669] = {.lex_state = 1066}, - [1670] = {.lex_state = 1187}, - [1671] = {.lex_state = 1116}, - [1672] = {.lex_state = 1152}, - [1673] = {.lex_state = 1166}, - [1674] = {.lex_state = 310}, - [1675] = {.lex_state = 1178}, - [1676] = {.lex_state = 1167}, - [1677] = {.lex_state = 1187}, - [1678] = {.lex_state = 1066}, - [1679] = {.lex_state = 1066}, - [1680] = {.lex_state = 318}, - [1681] = {.lex_state = 1167}, - [1682] = {.lex_state = 1152}, - [1683] = {.lex_state = 1223}, - [1684] = {.lex_state = 1116}, - [1685] = {.lex_state = 1166}, - [1686] = {.lex_state = 1223}, - [1687] = {.lex_state = 1152}, - [1688] = {.lex_state = 1167}, - [1689] = {.lex_state = 315}, - [1690] = {.lex_state = 1152}, - [1691] = {.lex_state = 1180}, - [1692] = {.lex_state = 1223}, - [1693] = {.lex_state = 1152}, - [1694] = {.lex_state = 1223}, - [1695] = {.lex_state = 298}, - [1696] = {.lex_state = 298}, - [1697] = {.lex_state = 1152}, - [1698] = {.lex_state = 1116}, - [1699] = {.lex_state = 1152}, - [1700] = {.lex_state = 1185}, - [1701] = {.lex_state = 1173}, - [1702] = {.lex_state = 1156}, - [1703] = {.lex_state = 1150}, - [1704] = {.lex_state = 1167}, + [1595] = {.lex_state = 358}, + [1596] = {.lex_state = 316}, + [1597] = {.lex_state = 1143}, + [1598] = {.lex_state = 1143}, + [1599] = {.lex_state = 1143}, + [1600] = {.lex_state = 1143}, + [1601] = {.lex_state = 358}, + [1602] = {.lex_state = 358}, + [1603] = {.lex_state = 358}, + [1604] = {.lex_state = 358}, + [1605] = {.lex_state = 358}, + [1606] = {.lex_state = 358}, + [1607] = {.lex_state = 358}, + [1608] = {.lex_state = 358}, + [1609] = {.lex_state = 358}, + [1610] = {.lex_state = 358}, + [1611] = {.lex_state = 358}, + [1612] = {.lex_state = 358}, + [1613] = {.lex_state = 358}, + [1614] = {.lex_state = 358}, + [1615] = {.lex_state = 358}, + [1616] = {.lex_state = 358}, + [1617] = {.lex_state = 1150}, + [1618] = {.lex_state = 358}, + [1619] = {.lex_state = 358}, + [1620] = {.lex_state = 358}, + [1621] = {.lex_state = 358}, + [1622] = {.lex_state = 358}, + [1623] = {.lex_state = 358}, + [1624] = {.lex_state = 358}, + [1625] = {.lex_state = 358}, + [1626] = {.lex_state = 358}, + [1627] = {.lex_state = 358}, + [1628] = {.lex_state = 358}, + [1629] = {.lex_state = 358}, + [1630] = {.lex_state = 358}, + [1631] = {.lex_state = 358}, + [1632] = {.lex_state = 1143}, + [1633] = {.lex_state = 1097}, + [1634] = {.lex_state = 358}, + [1635] = {.lex_state = 358}, + [1636] = {.lex_state = 358}, + [1637] = {.lex_state = 358}, + [1638] = {.lex_state = 358}, + [1639] = {.lex_state = 358}, + [1640] = {.lex_state = 358}, + [1641] = {.lex_state = 358}, + [1642] = {.lex_state = 358}, + [1643] = {.lex_state = 358}, + [1644] = {.lex_state = 358}, + [1645] = {.lex_state = 358}, + [1646] = {.lex_state = 358}, + [1647] = {.lex_state = 358}, + [1648] = {.lex_state = 1143}, + [1649] = {.lex_state = 1143}, + [1650] = {.lex_state = 1143}, + [1651] = {.lex_state = 358}, + [1652] = {.lex_state = 358}, + [1653] = {.lex_state = 358}, + [1654] = {.lex_state = 358}, + [1655] = {.lex_state = 358}, + [1656] = {.lex_state = 358}, + [1657] = {.lex_state = 358}, + [1658] = {.lex_state = 358}, + [1659] = {.lex_state = 358}, + [1660] = {.lex_state = 358}, + [1661] = {.lex_state = 358}, + [1662] = {.lex_state = 358}, + [1663] = {.lex_state = 358}, + [1664] = {.lex_state = 358}, + [1665] = {.lex_state = 1143}, + [1666] = {.lex_state = 358}, + [1667] = {.lex_state = 1143}, + [1668] = {.lex_state = 358}, + [1669] = {.lex_state = 358}, + [1670] = {.lex_state = 358}, + [1671] = {.lex_state = 358}, + [1672] = {.lex_state = 358}, + [1673] = {.lex_state = 358}, + [1674] = {.lex_state = 358}, + [1675] = {.lex_state = 358}, + [1676] = {.lex_state = 358}, + [1677] = {.lex_state = 358}, + [1678] = {.lex_state = 358}, + [1679] = {.lex_state = 358}, + [1680] = {.lex_state = 358}, + [1681] = {.lex_state = 358}, + [1682] = {.lex_state = 358}, + [1683] = {.lex_state = 1097}, + [1684] = {.lex_state = 1143}, + [1685] = {.lex_state = 358}, + [1686] = {.lex_state = 358}, + [1687] = {.lex_state = 358}, + [1688] = {.lex_state = 358}, + [1689] = {.lex_state = 358}, + [1690] = {.lex_state = 358}, + [1691] = {.lex_state = 358}, + [1692] = {.lex_state = 358}, + [1693] = {.lex_state = 358}, + [1694] = {.lex_state = 358}, + [1695] = {.lex_state = 358}, + [1696] = {.lex_state = 358}, + [1697] = {.lex_state = 358}, + [1698] = {.lex_state = 358}, + [1699] = {.lex_state = 1097}, + [1700] = {.lex_state = 358}, + [1701] = {.lex_state = 358}, + [1702] = {.lex_state = 358}, + [1703] = {.lex_state = 358}, + [1704] = {.lex_state = 358}, [1705] = {.lex_state = 358}, [1706] = {.lex_state = 358}, [1707] = {.lex_state = 358}, @@ -78123,14 +75879,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1711] = {.lex_state = 358}, [1712] = {.lex_state = 358}, [1713] = {.lex_state = 358}, - [1714] = {.lex_state = 358}, - [1715] = {.lex_state = 358}, + [1714] = {.lex_state = 1143}, + [1715] = {.lex_state = 1143}, [1716] = {.lex_state = 358}, [1717] = {.lex_state = 358}, - [1718] = {.lex_state = 1150}, - [1719] = {.lex_state = 1167}, - [1720] = {.lex_state = 1150}, - [1721] = {.lex_state = 1150}, + [1718] = {.lex_state = 358}, + [1719] = {.lex_state = 358}, + [1720] = {.lex_state = 358}, + [1721] = {.lex_state = 358}, [1722] = {.lex_state = 358}, [1723] = {.lex_state = 358}, [1724] = {.lex_state = 358}, @@ -78139,9703 +75895,9187 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1727] = {.lex_state = 358}, [1728] = {.lex_state = 358}, [1729] = {.lex_state = 358}, - [1730] = {.lex_state = 358}, - [1731] = {.lex_state = 358}, + [1730] = {.lex_state = 1143}, + [1731] = {.lex_state = 1143}, [1732] = {.lex_state = 358}, [1733] = {.lex_state = 358}, [1734] = {.lex_state = 358}, - [1735] = {.lex_state = 3205}, - [1736] = {.lex_state = 1205}, - [1737] = {.lex_state = 1152}, - [1738] = {.lex_state = 1167}, - [1739] = {.lex_state = 1152}, - [1740] = {.lex_state = 1167}, - [1741] = {.lex_state = 1167}, - [1742] = {.lex_state = 1167}, - [1743] = {.lex_state = 1152}, - [1744] = {.lex_state = 1167}, + [1735] = {.lex_state = 358}, + [1736] = {.lex_state = 358}, + [1737] = {.lex_state = 358}, + [1738] = {.lex_state = 358}, + [1739] = {.lex_state = 358}, + [1740] = {.lex_state = 358}, + [1741] = {.lex_state = 358}, + [1742] = {.lex_state = 358}, + [1743] = {.lex_state = 358}, + [1744] = {.lex_state = 358}, [1745] = {.lex_state = 358}, - [1746] = {.lex_state = 358}, - [1747] = {.lex_state = 358}, + [1746] = {.lex_state = 1097}, + [1747] = {.lex_state = 1143}, [1748] = {.lex_state = 358}, [1749] = {.lex_state = 358}, [1750] = {.lex_state = 358}, [1751] = {.lex_state = 358}, [1752] = {.lex_state = 358}, - [1753] = {.lex_state = 1167}, + [1753] = {.lex_state = 358}, [1754] = {.lex_state = 358}, [1755] = {.lex_state = 358}, [1756] = {.lex_state = 358}, [1757] = {.lex_state = 358}, [1758] = {.lex_state = 358}, - [1759] = {.lex_state = 1152}, - [1760] = {.lex_state = 1152}, - [1761] = {.lex_state = 1167}, - [1762] = {.lex_state = 1167}, - [1763] = {.lex_state = 1167}, - [1764] = {.lex_state = 1173}, - [1765] = {.lex_state = 1173}, - [1766] = {.lex_state = 1180}, - [1767] = {.lex_state = 1173}, - [1768] = {.lex_state = 1173}, - [1769] = {.lex_state = 1173}, - [1770] = {.lex_state = 1173}, - [1771] = {.lex_state = 1173}, - [1772] = {.lex_state = 1173}, - [1773] = {.lex_state = 1173}, - [1774] = {.lex_state = 1173}, - [1775] = {.lex_state = 1173}, - [1776] = {.lex_state = 1173}, - [1777] = {.lex_state = 1173}, - [1778] = {.lex_state = 1173}, - [1779] = {.lex_state = 1173}, - [1780] = {.lex_state = 1173}, - [1781] = {.lex_state = 1173}, - [1782] = {.lex_state = 1173}, - [1783] = {.lex_state = 1173}, - [1784] = {.lex_state = 1173}, - [1785] = {.lex_state = 1173}, - [1786] = {.lex_state = 1173}, - [1787] = {.lex_state = 1173}, - [1788] = {.lex_state = 1173}, - [1789] = {.lex_state = 1173}, - [1790] = {.lex_state = 1173}, - [1791] = {.lex_state = 1173}, - [1792] = {.lex_state = 1116}, - [1793] = {.lex_state = 1116}, - [1794] = {.lex_state = 1163}, - [1795] = {.lex_state = 1152}, - [1796] = {.lex_state = 1116}, - [1797] = {.lex_state = 1152}, - [1798] = {.lex_state = 1116}, - [1799] = {.lex_state = 1150}, - [1800] = {.lex_state = 296}, - [1801] = {.lex_state = 1152}, - [1802] = {.lex_state = 1152}, - [1803] = {.lex_state = 1167}, - [1804] = {.lex_state = 1185}, - [1805] = {.lex_state = 1173}, - [1806] = {.lex_state = 1173}, - [1807] = {.lex_state = 1173}, - [1808] = {.lex_state = 1173}, - [1809] = {.lex_state = 1173}, - [1810] = {.lex_state = 1178}, - [1811] = {.lex_state = 1173}, - [1812] = {.lex_state = 1165}, - [1813] = {.lex_state = 1173}, - [1814] = {.lex_state = 1173}, - [1815] = {.lex_state = 1173}, - [1816] = {.lex_state = 1173}, - [1817] = {.lex_state = 1173}, - [1818] = {.lex_state = 316}, - [1819] = {.lex_state = 1173}, - [1820] = {.lex_state = 1173}, - [1821] = {.lex_state = 316}, - [1822] = {.lex_state = 1173}, - [1823] = {.lex_state = 316}, - [1824] = {.lex_state = 316}, - [1825] = {.lex_state = 316}, - [1826] = {.lex_state = 316}, - [1827] = {.lex_state = 316}, - [1828] = {.lex_state = 316}, - [1829] = {.lex_state = 316}, - [1830] = {.lex_state = 316}, - [1831] = {.lex_state = 316}, - [1832] = {.lex_state = 316}, - [1833] = {.lex_state = 316}, - [1834] = {.lex_state = 316}, - [1835] = {.lex_state = 316}, - [1836] = {.lex_state = 316}, - [1837] = {.lex_state = 1173}, - [1838] = {.lex_state = 1173}, - [1839] = {.lex_state = 316}, - [1840] = {.lex_state = 1173}, - [1841] = {.lex_state = 1173}, - [1842] = {.lex_state = 1173}, - [1843] = {.lex_state = 1173}, - [1844] = {.lex_state = 1173}, - [1845] = {.lex_state = 1173}, - [1846] = {.lex_state = 1173}, - [1847] = {.lex_state = 316}, - [1848] = {.lex_state = 316}, - [1849] = {.lex_state = 316}, - [1850] = {.lex_state = 316}, - [1851] = {.lex_state = 316}, - [1852] = {.lex_state = 316}, - [1853] = {.lex_state = 316}, - [1854] = {.lex_state = 316}, - [1855] = {.lex_state = 316}, - [1856] = {.lex_state = 316}, - [1857] = {.lex_state = 316}, - [1858] = {.lex_state = 316}, - [1859] = {.lex_state = 316}, - [1860] = {.lex_state = 1173}, - [1861] = {.lex_state = 316}, - [1862] = {.lex_state = 316}, - [1863] = {.lex_state = 316}, - [1864] = {.lex_state = 316}, - [1865] = {.lex_state = 316}, - [1866] = {.lex_state = 308}, - [1867] = {.lex_state = 364}, - [1868] = {.lex_state = 1173}, - [1869] = {.lex_state = 1173}, - [1870] = {.lex_state = 1199}, - [1871] = {.lex_state = 316}, - [1872] = {.lex_state = 316}, - [1873] = {.lex_state = 316}, - [1874] = {.lex_state = 316}, - [1875] = {.lex_state = 316}, - [1876] = {.lex_state = 316}, - [1877] = {.lex_state = 316}, - [1878] = {.lex_state = 316}, - [1879] = {.lex_state = 316}, - [1880] = {.lex_state = 316}, - [1881] = {.lex_state = 316}, - [1882] = {.lex_state = 316}, - [1883] = {.lex_state = 316}, - [1884] = {.lex_state = 316}, - [1885] = {.lex_state = 316}, - [1886] = {.lex_state = 316}, - [1887] = {.lex_state = 316}, - [1888] = {.lex_state = 316}, - [1889] = {.lex_state = 316}, - [1890] = {.lex_state = 316}, - [1891] = {.lex_state = 316}, - [1892] = {.lex_state = 1173}, - [1893] = {.lex_state = 1173}, - [1894] = {.lex_state = 274}, - [1895] = {.lex_state = 113}, - [1896] = {.lex_state = 1172}, - [1897] = {.lex_state = 274}, - [1898] = {.lex_state = 274}, - [1899] = {.lex_state = 274}, + [1759] = {.lex_state = 358}, + [1760] = {.lex_state = 358}, + [1761] = {.lex_state = 308}, + [1762] = {.lex_state = 316}, + [1763] = {.lex_state = 358}, + [1764] = {.lex_state = 358}, + [1765] = {.lex_state = 358}, + [1766] = {.lex_state = 358}, + [1767] = {.lex_state = 358}, + [1768] = {.lex_state = 358}, + [1769] = {.lex_state = 358}, + [1770] = {.lex_state = 358}, + [1771] = {.lex_state = 358}, + [1772] = {.lex_state = 358}, + [1773] = {.lex_state = 358}, + [1774] = {.lex_state = 358}, + [1775] = {.lex_state = 358}, + [1776] = {.lex_state = 358}, + [1777] = {.lex_state = 316}, + [1778] = {.lex_state = 358}, + [1779] = {.lex_state = 358}, + [1780] = {.lex_state = 358}, + [1781] = {.lex_state = 358}, + [1782] = {.lex_state = 358}, + [1783] = {.lex_state = 358}, + [1784] = {.lex_state = 358}, + [1785] = {.lex_state = 358}, + [1786] = {.lex_state = 358}, + [1787] = {.lex_state = 358}, + [1788] = {.lex_state = 358}, + [1789] = {.lex_state = 358}, + [1790] = {.lex_state = 358}, + [1791] = {.lex_state = 1143}, + [1792] = {.lex_state = 316}, + [1793] = {.lex_state = 358}, + [1794] = {.lex_state = 358}, + [1795] = {.lex_state = 358}, + [1796] = {.lex_state = 358}, + [1797] = {.lex_state = 358}, + [1798] = {.lex_state = 358}, + [1799] = {.lex_state = 358}, + [1800] = {.lex_state = 358}, + [1801] = {.lex_state = 358}, + [1802] = {.lex_state = 358}, + [1803] = {.lex_state = 358}, + [1804] = {.lex_state = 358}, + [1805] = {.lex_state = 358}, + [1806] = {.lex_state = 1142}, + [1807] = {.lex_state = 1142}, + [1808] = {.lex_state = 358}, + [1809] = {.lex_state = 358}, + [1810] = {.lex_state = 358}, + [1811] = {.lex_state = 358}, + [1812] = {.lex_state = 358}, + [1813] = {.lex_state = 358}, + [1814] = {.lex_state = 358}, + [1815] = {.lex_state = 358}, + [1816] = {.lex_state = 358}, + [1817] = {.lex_state = 358}, + [1818] = {.lex_state = 358}, + [1819] = {.lex_state = 358}, + [1820] = {.lex_state = 358}, + [1821] = {.lex_state = 299}, + [1822] = {.lex_state = 358}, + [1823] = {.lex_state = 358}, + [1824] = {.lex_state = 358}, + [1825] = {.lex_state = 358}, + [1826] = {.lex_state = 358}, + [1827] = {.lex_state = 358}, + [1828] = {.lex_state = 358}, + [1829] = {.lex_state = 358}, + [1830] = {.lex_state = 358}, + [1831] = {.lex_state = 358}, + [1832] = {.lex_state = 358}, + [1833] = {.lex_state = 358}, + [1834] = {.lex_state = 358}, + [1835] = {.lex_state = 358}, + [1836] = {.lex_state = 358}, + [1837] = {.lex_state = 358}, + [1838] = {.lex_state = 358}, + [1839] = {.lex_state = 358}, + [1840] = {.lex_state = 358}, + [1841] = {.lex_state = 358}, + [1842] = {.lex_state = 358}, + [1843] = {.lex_state = 358}, + [1844] = {.lex_state = 358}, + [1845] = {.lex_state = 358}, + [1846] = {.lex_state = 358}, + [1847] = {.lex_state = 358}, + [1848] = {.lex_state = 299}, + [1849] = {.lex_state = 364}, + [1850] = {.lex_state = 358}, + [1851] = {.lex_state = 358}, + [1852] = {.lex_state = 358}, + [1853] = {.lex_state = 358}, + [1854] = {.lex_state = 358}, + [1855] = {.lex_state = 358}, + [1856] = {.lex_state = 358}, + [1857] = {.lex_state = 358}, + [1858] = {.lex_state = 358}, + [1859] = {.lex_state = 358}, + [1860] = {.lex_state = 358}, + [1861] = {.lex_state = 358}, + [1862] = {.lex_state = 358}, + [1863] = {.lex_state = 358}, + [1864] = {.lex_state = 358}, + [1865] = {.lex_state = 358}, + [1866] = {.lex_state = 358}, + [1867] = {.lex_state = 358}, + [1868] = {.lex_state = 358}, + [1869] = {.lex_state = 358}, + [1870] = {.lex_state = 358}, + [1871] = {.lex_state = 358}, + [1872] = {.lex_state = 358}, + [1873] = {.lex_state = 358}, + [1874] = {.lex_state = 358}, + [1875] = {.lex_state = 358}, + [1876] = {.lex_state = 358}, + [1877] = {.lex_state = 358}, + [1878] = {.lex_state = 358}, + [1879] = {.lex_state = 358}, + [1880] = {.lex_state = 358}, + [1881] = {.lex_state = 358}, + [1882] = {.lex_state = 358}, + [1883] = {.lex_state = 358}, + [1884] = {.lex_state = 358}, + [1885] = {.lex_state = 358}, + [1886] = {.lex_state = 358}, + [1887] = {.lex_state = 358}, + [1888] = {.lex_state = 358}, + [1889] = {.lex_state = 358}, + [1890] = {.lex_state = 358}, + [1891] = {.lex_state = 358}, + [1892] = {.lex_state = 358}, + [1893] = {.lex_state = 358}, + [1894] = {.lex_state = 358}, + [1895] = {.lex_state = 358}, + [1896] = {.lex_state = 358}, + [1897] = {.lex_state = 358}, + [1898] = {.lex_state = 358}, + [1899] = {.lex_state = 358}, [1900] = {.lex_state = 358}, [1901] = {.lex_state = 358}, [1902] = {.lex_state = 358}, [1903] = {.lex_state = 358}, [1904] = {.lex_state = 358}, - [1905] = {.lex_state = 1173}, + [1905] = {.lex_state = 358}, [1906] = {.lex_state = 358}, [1907] = {.lex_state = 358}, - [1908] = {.lex_state = 316}, + [1908] = {.lex_state = 358}, [1909] = {.lex_state = 358}, [1910] = {.lex_state = 358}, [1911] = {.lex_state = 358}, [1912] = {.lex_state = 358}, [1913] = {.lex_state = 358}, [1914] = {.lex_state = 358}, - [1915] = {.lex_state = 2571}, - [1916] = {.lex_state = 322}, - [1917] = {.lex_state = 299}, - [1918] = {.lex_state = 299}, - [1919] = {.lex_state = 1172}, - [1920] = {.lex_state = 1172}, - [1921] = {.lex_state = 299}, - [1922] = {.lex_state = 105}, - [1923] = {.lex_state = 322}, - [1924] = {.lex_state = 1066}, - [1925] = {.lex_state = 322}, - [1926] = {.lex_state = 322}, - [1927] = {.lex_state = 1066}, - [1928] = {.lex_state = 274}, - [1929] = {.lex_state = 1066}, - [1930] = {.lex_state = 1066}, - [1931] = {.lex_state = 316}, - [1932] = {.lex_state = 1172}, - [1933] = {.lex_state = 1172}, - [1934] = {.lex_state = 1172}, - [1935] = {.lex_state = 1187}, - [1936] = {.lex_state = 3206}, - [1937] = {.lex_state = 1187}, - [1938] = {.lex_state = 1187}, - [1939] = {.lex_state = 1066}, - [1940] = {.lex_state = 1066}, - [1941] = {.lex_state = 1066}, - [1942] = {.lex_state = 1177}, - [1943] = {.lex_state = 1177}, - [1944] = {.lex_state = 1177}, - [1945] = {.lex_state = 1173}, - [1946] = {.lex_state = 1173}, - [1947] = {.lex_state = 1173}, + [1915] = {.lex_state = 316}, + [1916] = {.lex_state = 358}, + [1917] = {.lex_state = 358}, + [1918] = {.lex_state = 358}, + [1919] = {.lex_state = 358}, + [1920] = {.lex_state = 358}, + [1921] = {.lex_state = 358}, + [1922] = {.lex_state = 358}, + [1923] = {.lex_state = 358}, + [1924] = {.lex_state = 358}, + [1925] = {.lex_state = 358}, + [1926] = {.lex_state = 358}, + [1927] = {.lex_state = 358}, + [1928] = {.lex_state = 358}, + [1929] = {.lex_state = 299}, + [1930] = {.lex_state = 1143}, + [1931] = {.lex_state = 296}, + [1932] = {.lex_state = 358}, + [1933] = {.lex_state = 1051}, + [1934] = {.lex_state = 1142}, + [1935] = {.lex_state = 1142}, + [1936] = {.lex_state = 1142}, + [1937] = {.lex_state = 1051}, + [1938] = {.lex_state = 1143}, + [1939] = {.lex_state = 1132}, + [1940] = {.lex_state = 2533}, + [1941] = {.lex_state = 1168}, + [1942] = {.lex_state = 105}, + [1943] = {.lex_state = 1143}, + [1944] = {.lex_state = 1132}, + [1945] = {.lex_state = 1132}, + [1946] = {.lex_state = 1143}, + [1947] = {.lex_state = 1132}, [1948] = {.lex_state = 322}, - [1949] = {.lex_state = 311}, - [1950] = {.lex_state = 311}, - [1951] = {.lex_state = 311}, - [1952] = {.lex_state = 1172}, - [1953] = {.lex_state = 1172}, - [1954] = {.lex_state = 1172}, - [1955] = {.lex_state = 1172}, - [1956] = {.lex_state = 2590}, - [1957] = {.lex_state = 316}, - [1958] = {.lex_state = 316}, - [1959] = {.lex_state = 316}, - [1960] = {.lex_state = 358}, - [1961] = {.lex_state = 358}, + [1949] = {.lex_state = 358}, + [1950] = {.lex_state = 1143}, + [1951] = {.lex_state = 1142}, + [1952] = {.lex_state = 1142}, + [1953] = {.lex_state = 1155}, + [1954] = {.lex_state = 1130}, + [1955] = {.lex_state = 1142}, + [1956] = {.lex_state = 358}, + [1957] = {.lex_state = 358}, + [1958] = {.lex_state = 358}, + [1959] = {.lex_state = 358}, + [1960] = {.lex_state = 1143}, + [1961] = {.lex_state = 316}, [1962] = {.lex_state = 358}, [1963] = {.lex_state = 358}, [1964] = {.lex_state = 358}, - [1965] = {.lex_state = 358}, - [1966] = {.lex_state = 358}, - [1967] = {.lex_state = 358}, - [1968] = {.lex_state = 358}, - [1969] = {.lex_state = 358}, - [1970] = {.lex_state = 358}, + [1965] = {.lex_state = 316}, + [1966] = {.lex_state = 316}, + [1967] = {.lex_state = 1143}, + [1968] = {.lex_state = 1142}, + [1969] = {.lex_state = 316}, + [1970] = {.lex_state = 316}, [1971] = {.lex_state = 358}, [1972] = {.lex_state = 358}, [1973] = {.lex_state = 358}, [1974] = {.lex_state = 358}, - [1975] = {.lex_state = 358}, - [1976] = {.lex_state = 358}, - [1977] = {.lex_state = 358}, - [1978] = {.lex_state = 358}, - [1979] = {.lex_state = 358}, - [1980] = {.lex_state = 358}, - [1981] = {.lex_state = 358}, - [1982] = {.lex_state = 358}, - [1983] = {.lex_state = 358}, - [1984] = {.lex_state = 358}, - [1985] = {.lex_state = 358}, + [1975] = {.lex_state = 1136}, + [1976] = {.lex_state = 316}, + [1977] = {.lex_state = 1130}, + [1978] = {.lex_state = 316}, + [1979] = {.lex_state = 1143}, + [1980] = {.lex_state = 316}, + [1981] = {.lex_state = 316}, + [1982] = {.lex_state = 316}, + [1983] = {.lex_state = 316}, + [1984] = {.lex_state = 1143}, + [1985] = {.lex_state = 316}, [1986] = {.lex_state = 358}, - [1987] = {.lex_state = 358}, - [1988] = {.lex_state = 358}, - [1989] = {.lex_state = 358}, - [1990] = {.lex_state = 358}, - [1991] = {.lex_state = 358}, - [1992] = {.lex_state = 358}, - [1993] = {.lex_state = 358}, - [1994] = {.lex_state = 358}, - [1995] = {.lex_state = 358}, - [1996] = {.lex_state = 358}, - [1997] = {.lex_state = 358}, - [1998] = {.lex_state = 358}, - [1999] = {.lex_state = 358}, - [2000] = {.lex_state = 358}, - [2001] = {.lex_state = 358}, - [2002] = {.lex_state = 358}, - [2003] = {.lex_state = 358}, - [2004] = {.lex_state = 358}, - [2005] = {.lex_state = 358}, - [2006] = {.lex_state = 358}, - [2007] = {.lex_state = 358}, - [2008] = {.lex_state = 358}, - [2009] = {.lex_state = 358}, - [2010] = {.lex_state = 358}, - [2011] = {.lex_state = 358}, - [2012] = {.lex_state = 358}, - [2013] = {.lex_state = 358}, - [2014] = {.lex_state = 358}, - [2015] = {.lex_state = 358}, - [2016] = {.lex_state = 358}, - [2017] = {.lex_state = 358}, - [2018] = {.lex_state = 358}, - [2019] = {.lex_state = 358}, - [2020] = {.lex_state = 358}, - [2021] = {.lex_state = 358}, - [2022] = {.lex_state = 358}, - [2023] = {.lex_state = 358}, - [2024] = {.lex_state = 358}, - [2025] = {.lex_state = 358}, - [2026] = {.lex_state = 358}, - [2027] = {.lex_state = 358}, - [2028] = {.lex_state = 358}, - [2029] = {.lex_state = 358}, - [2030] = {.lex_state = 358}, - [2031] = {.lex_state = 358}, - [2032] = {.lex_state = 358}, - [2033] = {.lex_state = 358}, - [2034] = {.lex_state = 358}, - [2035] = {.lex_state = 358}, - [2036] = {.lex_state = 358}, - [2037] = {.lex_state = 358}, - [2038] = {.lex_state = 358}, - [2039] = {.lex_state = 358}, - [2040] = {.lex_state = 358}, - [2041] = {.lex_state = 358}, - [2042] = {.lex_state = 358}, - [2043] = {.lex_state = 358}, - [2044] = {.lex_state = 358}, - [2045] = {.lex_state = 358}, - [2046] = {.lex_state = 358}, - [2047] = {.lex_state = 358}, - [2048] = {.lex_state = 358}, - [2049] = {.lex_state = 358}, - [2050] = {.lex_state = 358}, - [2051] = {.lex_state = 358}, - [2052] = {.lex_state = 358}, - [2053] = {.lex_state = 358}, - [2054] = {.lex_state = 358}, - [2055] = {.lex_state = 358}, - [2056] = {.lex_state = 358}, - [2057] = {.lex_state = 358}, - [2058] = {.lex_state = 358}, - [2059] = {.lex_state = 358}, - [2060] = {.lex_state = 358}, - [2061] = {.lex_state = 358}, - [2062] = {.lex_state = 358}, - [2063] = {.lex_state = 358}, - [2064] = {.lex_state = 1172}, - [2065] = {.lex_state = 1172}, - [2066] = {.lex_state = 1172}, - [2067] = {.lex_state = 1172}, - [2068] = {.lex_state = 358}, - [2069] = {.lex_state = 1173}, - [2070] = {.lex_state = 358}, - [2071] = {.lex_state = 358}, - [2072] = {.lex_state = 358}, - [2073] = {.lex_state = 358}, - [2074] = {.lex_state = 358}, - [2075] = {.lex_state = 358}, - [2076] = {.lex_state = 358}, - [2077] = {.lex_state = 358}, - [2078] = {.lex_state = 358}, - [2079] = {.lex_state = 358}, - [2080] = {.lex_state = 358}, - [2081] = {.lex_state = 1172}, - [2082] = {.lex_state = 358}, - [2083] = {.lex_state = 358}, - [2084] = {.lex_state = 358}, - [2085] = {.lex_state = 358}, - [2086] = {.lex_state = 358}, - [2087] = {.lex_state = 358}, - [2088] = {.lex_state = 358}, - [2089] = {.lex_state = 358}, - [2090] = {.lex_state = 358}, - [2091] = {.lex_state = 358}, - [2092] = {.lex_state = 358}, - [2093] = {.lex_state = 358}, - [2094] = {.lex_state = 358}, - [2095] = {.lex_state = 358}, - [2096] = {.lex_state = 358}, - [2097] = {.lex_state = 358}, - [2098] = {.lex_state = 358}, - [2099] = {.lex_state = 358}, - [2100] = {.lex_state = 358}, - [2101] = {.lex_state = 358}, - [2102] = {.lex_state = 358}, - [2103] = {.lex_state = 358}, - [2104] = {.lex_state = 358}, - [2105] = {.lex_state = 358}, - [2106] = {.lex_state = 358}, - [2107] = {.lex_state = 358}, - [2108] = {.lex_state = 358}, - [2109] = {.lex_state = 358}, - [2110] = {.lex_state = 358}, - [2111] = {.lex_state = 358}, - [2112] = {.lex_state = 358}, - [2113] = {.lex_state = 358}, - [2114] = {.lex_state = 358}, - [2115] = {.lex_state = 358}, - [2116] = {.lex_state = 358}, - [2117] = {.lex_state = 358}, - [2118] = {.lex_state = 358}, - [2119] = {.lex_state = 358}, - [2120] = {.lex_state = 358}, - [2121] = {.lex_state = 358}, - [2122] = {.lex_state = 358}, - [2123] = {.lex_state = 358}, - [2124] = {.lex_state = 358}, - [2125] = {.lex_state = 358}, - [2126] = {.lex_state = 358}, - [2127] = {.lex_state = 358}, - [2128] = {.lex_state = 358}, - [2129] = {.lex_state = 358}, - [2130] = {.lex_state = 358}, - [2131] = {.lex_state = 358}, - [2132] = {.lex_state = 358}, - [2133] = {.lex_state = 358}, - [2134] = {.lex_state = 358}, - [2135] = {.lex_state = 358}, - [2136] = {.lex_state = 358}, - [2137] = {.lex_state = 358}, - [2138] = {.lex_state = 358}, - [2139] = {.lex_state = 358}, - [2140] = {.lex_state = 358}, - [2141] = {.lex_state = 358}, - [2142] = {.lex_state = 358}, - [2143] = {.lex_state = 358}, - [2144] = {.lex_state = 358}, - [2145] = {.lex_state = 358}, - [2146] = {.lex_state = 358}, - [2147] = {.lex_state = 358}, - [2148] = {.lex_state = 358}, - [2149] = {.lex_state = 358}, - [2150] = {.lex_state = 358}, - [2151] = {.lex_state = 358}, - [2152] = {.lex_state = 358}, - [2153] = {.lex_state = 358}, - [2154] = {.lex_state = 358}, - [2155] = {.lex_state = 358}, - [2156] = {.lex_state = 358}, - [2157] = {.lex_state = 358}, - [2158] = {.lex_state = 358}, - [2159] = {.lex_state = 358}, - [2160] = {.lex_state = 358}, - [2161] = {.lex_state = 358}, - [2162] = {.lex_state = 358}, - [2163] = {.lex_state = 358}, - [2164] = {.lex_state = 358}, - [2165] = {.lex_state = 358}, - [2166] = {.lex_state = 358}, - [2167] = {.lex_state = 358}, - [2168] = {.lex_state = 358}, - [2169] = {.lex_state = 358}, - [2170] = {.lex_state = 358}, - [2171] = {.lex_state = 358}, - [2172] = {.lex_state = 358}, - [2173] = {.lex_state = 358}, - [2174] = {.lex_state = 358}, - [2175] = {.lex_state = 358}, - [2176] = {.lex_state = 358}, - [2177] = {.lex_state = 358}, - [2178] = {.lex_state = 358}, - [2179] = {.lex_state = 358}, - [2180] = {.lex_state = 358}, - [2181] = {.lex_state = 358}, - [2182] = {.lex_state = 358}, - [2183] = {.lex_state = 358}, - [2184] = {.lex_state = 358}, - [2185] = {.lex_state = 358}, - [2186] = {.lex_state = 358}, - [2187] = {.lex_state = 358}, - [2188] = {.lex_state = 358}, - [2189] = {.lex_state = 358}, - [2190] = {.lex_state = 358}, - [2191] = {.lex_state = 358}, - [2192] = {.lex_state = 358}, - [2193] = {.lex_state = 358}, - [2194] = {.lex_state = 358}, - [2195] = {.lex_state = 358}, - [2196] = {.lex_state = 358}, - [2197] = {.lex_state = 358}, - [2198] = {.lex_state = 358}, - [2199] = {.lex_state = 358}, - [2200] = {.lex_state = 358}, - [2201] = {.lex_state = 358}, - [2202] = {.lex_state = 358}, - [2203] = {.lex_state = 358}, - [2204] = {.lex_state = 358}, - [2205] = {.lex_state = 358}, - [2206] = {.lex_state = 358}, - [2207] = {.lex_state = 358}, - [2208] = {.lex_state = 358}, - [2209] = {.lex_state = 358}, - [2210] = {.lex_state = 358}, - [2211] = {.lex_state = 358}, - [2212] = {.lex_state = 358}, - [2213] = {.lex_state = 358}, - [2214] = {.lex_state = 358}, - [2215] = {.lex_state = 358}, - [2216] = {.lex_state = 358}, - [2217] = {.lex_state = 358}, - [2218] = {.lex_state = 358}, - [2219] = {.lex_state = 358}, - [2220] = {.lex_state = 358}, - [2221] = {.lex_state = 358}, - [2222] = {.lex_state = 358}, - [2223] = {.lex_state = 358}, - [2224] = {.lex_state = 358}, - [2225] = {.lex_state = 358}, - [2226] = {.lex_state = 358}, - [2227] = {.lex_state = 358}, - [2228] = {.lex_state = 358}, - [2229] = {.lex_state = 358}, - [2230] = {.lex_state = 358}, - [2231] = {.lex_state = 358}, - [2232] = {.lex_state = 358}, - [2233] = {.lex_state = 358}, - [2234] = {.lex_state = 358}, - [2235] = {.lex_state = 358}, - [2236] = {.lex_state = 358}, - [2237] = {.lex_state = 358}, - [2238] = {.lex_state = 358}, - [2239] = {.lex_state = 358}, - [2240] = {.lex_state = 358}, - [2241] = {.lex_state = 358}, - [2242] = {.lex_state = 358}, - [2243] = {.lex_state = 358}, - [2244] = {.lex_state = 358}, - [2245] = {.lex_state = 358}, - [2246] = {.lex_state = 358}, - [2247] = {.lex_state = 358}, - [2248] = {.lex_state = 358}, - [2249] = {.lex_state = 358}, - [2250] = {.lex_state = 358}, - [2251] = {.lex_state = 358}, - [2252] = {.lex_state = 358}, - [2253] = {.lex_state = 358}, - [2254] = {.lex_state = 358}, - [2255] = {.lex_state = 358}, - [2256] = {.lex_state = 358}, - [2257] = {.lex_state = 358}, - [2258] = {.lex_state = 358}, - [2259] = {.lex_state = 358}, - [2260] = {.lex_state = 358}, - [2261] = {.lex_state = 358}, - [2262] = {.lex_state = 358}, - [2263] = {.lex_state = 358}, - [2264] = {.lex_state = 358}, - [2265] = {.lex_state = 358}, - [2266] = {.lex_state = 358}, - [2267] = {.lex_state = 358}, - [2268] = {.lex_state = 358}, - [2269] = {.lex_state = 358}, - [2270] = {.lex_state = 358}, - [2271] = {.lex_state = 358}, - [2272] = {.lex_state = 358}, - [2273] = {.lex_state = 358}, - [2274] = {.lex_state = 358}, - [2275] = {.lex_state = 358}, - [2276] = {.lex_state = 358}, - [2277] = {.lex_state = 358}, - [2278] = {.lex_state = 358}, - [2279] = {.lex_state = 358}, - [2280] = {.lex_state = 358}, - [2281] = {.lex_state = 358}, - [2282] = {.lex_state = 358}, - [2283] = {.lex_state = 358}, - [2284] = {.lex_state = 358}, - [2285] = {.lex_state = 358}, - [2286] = {.lex_state = 358}, - [2287] = {.lex_state = 358}, - [2288] = {.lex_state = 358}, - [2289] = {.lex_state = 358}, - [2290] = {.lex_state = 1172}, - [2291] = {.lex_state = 358}, - [2292] = {.lex_state = 358}, - [2293] = {.lex_state = 358}, - [2294] = {.lex_state = 358}, - [2295] = {.lex_state = 358}, - [2296] = {.lex_state = 358}, - [2297] = {.lex_state = 358}, - [2298] = {.lex_state = 358}, - [2299] = {.lex_state = 358}, - [2300] = {.lex_state = 358}, - [2301] = {.lex_state = 358}, - [2302] = {.lex_state = 358}, - [2303] = {.lex_state = 358}, - [2304] = {.lex_state = 1172}, - [2305] = {.lex_state = 1172}, - [2306] = {.lex_state = 1172}, - [2307] = {.lex_state = 358}, - [2308] = {.lex_state = 358}, - [2309] = {.lex_state = 358}, - [2310] = {.lex_state = 358}, - [2311] = {.lex_state = 358}, - [2312] = {.lex_state = 358}, - [2313] = {.lex_state = 358}, - [2314] = {.lex_state = 358}, - [2315] = {.lex_state = 358}, - [2316] = {.lex_state = 358}, - [2317] = {.lex_state = 358}, - [2318] = {.lex_state = 358}, - [2319] = {.lex_state = 358}, - [2320] = {.lex_state = 358}, - [2321] = {.lex_state = 358}, - [2322] = {.lex_state = 358}, - [2323] = {.lex_state = 358}, - [2324] = {.lex_state = 358}, - [2325] = {.lex_state = 358}, - [2326] = {.lex_state = 358}, - [2327] = {.lex_state = 358}, - [2328] = {.lex_state = 358}, - [2329] = {.lex_state = 358}, - [2330] = {.lex_state = 358}, - [2331] = {.lex_state = 358}, - [2332] = {.lex_state = 358}, - [2333] = {.lex_state = 1172}, - [2334] = {.lex_state = 1172}, - [2335] = {.lex_state = 1172}, - [2336] = {.lex_state = 1172}, - [2337] = {.lex_state = 1172}, - [2338] = {.lex_state = 1172}, - [2339] = {.lex_state = 105}, - [2340] = {.lex_state = 358}, - [2341] = {.lex_state = 358}, - [2342] = {.lex_state = 358}, - [2343] = {.lex_state = 358}, - [2344] = {.lex_state = 358}, - [2345] = {.lex_state = 358}, - [2346] = {.lex_state = 358}, - [2347] = {.lex_state = 358}, - [2348] = {.lex_state = 358}, - [2349] = {.lex_state = 358}, - [2350] = {.lex_state = 358}, - [2351] = {.lex_state = 358}, - [2352] = {.lex_state = 358}, - [2353] = {.lex_state = 358}, - [2354] = {.lex_state = 1152}, - [2355] = {.lex_state = 1173}, - [2356] = {.lex_state = 1173}, - [2357] = {.lex_state = 1173}, - [2358] = {.lex_state = 1173}, - [2359] = {.lex_state = 1173}, - [2360] = {.lex_state = 1173}, - [2361] = {.lex_state = 309}, - [2362] = {.lex_state = 1173}, - [2363] = {.lex_state = 1150}, - [2364] = {.lex_state = 1173}, - [2365] = {.lex_state = 309}, - [2366] = {.lex_state = 1173}, - [2367] = {.lex_state = 309}, - [2368] = {.lex_state = 309}, - [2369] = {.lex_state = 309}, - [2370] = {.lex_state = 309}, - [2371] = {.lex_state = 309}, - [2372] = {.lex_state = 309}, - [2373] = {.lex_state = 309}, - [2374] = {.lex_state = 309}, - [2375] = {.lex_state = 309}, - [2376] = {.lex_state = 309}, - [2377] = {.lex_state = 309}, - [2378] = {.lex_state = 1172}, - [2379] = {.lex_state = 309}, - [2380] = {.lex_state = 1172}, - [2381] = {.lex_state = 309}, - [2382] = {.lex_state = 1172}, - [2383] = {.lex_state = 309}, - [2384] = {.lex_state = 1172}, - [2385] = {.lex_state = 309}, - [2386] = {.lex_state = 1150}, - [2387] = {.lex_state = 1173}, - [2388] = {.lex_state = 1173}, - [2389] = {.lex_state = 1173}, - [2390] = {.lex_state = 309}, - [2391] = {.lex_state = 1173}, - [2392] = {.lex_state = 1173}, - [2393] = {.lex_state = 433}, - [2394] = {.lex_state = 1150}, - [2395] = {.lex_state = 1173}, - [2396] = {.lex_state = 1173}, - [2397] = {.lex_state = 1173}, - [2398] = {.lex_state = 1164}, - [2399] = {.lex_state = 1173}, - [2400] = {.lex_state = 1173}, - [2401] = {.lex_state = 309}, - [2402] = {.lex_state = 1150}, - [2403] = {.lex_state = 309}, - [2404] = {.lex_state = 309}, - [2405] = {.lex_state = 309}, - [2406] = {.lex_state = 309}, - [2407] = {.lex_state = 309}, - [2408] = {.lex_state = 309}, - [2409] = {.lex_state = 309}, - [2410] = {.lex_state = 309}, - [2411] = {.lex_state = 309}, - [2412] = {.lex_state = 309}, - [2413] = {.lex_state = 309}, - [2414] = {.lex_state = 309}, - [2415] = {.lex_state = 1173}, - [2416] = {.lex_state = 297}, - [2417] = {.lex_state = 1152}, - [2418] = {.lex_state = 433}, - [2419] = {.lex_state = 297}, - [2420] = {.lex_state = 297}, - [2421] = {.lex_state = 1075}, - [2422] = {.lex_state = 1077}, - [2423] = {.lex_state = 1075}, - [2424] = {.lex_state = 1173}, - [2425] = {.lex_state = 1173}, - [2426] = {.lex_state = 1173}, - [2427] = {.lex_state = 1075}, - [2428] = {.lex_state = 297}, - [2429] = {.lex_state = 1173}, - [2430] = {.lex_state = 1075}, - [2431] = {.lex_state = 1075}, - [2432] = {.lex_state = 1172}, - [2433] = {.lex_state = 1075}, - [2434] = {.lex_state = 1172}, - [2435] = {.lex_state = 1172}, - [2436] = {.lex_state = 1172}, - [2437] = {.lex_state = 1172}, - [2438] = {.lex_state = 309}, - [2439] = {.lex_state = 309}, - [2440] = {.lex_state = 309}, - [2441] = {.lex_state = 309}, - [2442] = {.lex_state = 309}, - [2443] = {.lex_state = 309}, - [2444] = {.lex_state = 1173}, - [2445] = {.lex_state = 309}, - [2446] = {.lex_state = 309}, - [2447] = {.lex_state = 433}, - [2448] = {.lex_state = 309}, - [2449] = {.lex_state = 309}, - [2450] = {.lex_state = 309}, - [2451] = {.lex_state = 309}, - [2452] = {.lex_state = 309}, - [2453] = {.lex_state = 309}, - [2454] = {.lex_state = 309}, - [2455] = {.lex_state = 1172}, - [2456] = {.lex_state = 1172}, - [2457] = {.lex_state = 1172}, - [2458] = {.lex_state = 1172}, - [2459] = {.lex_state = 309}, - [2460] = {.lex_state = 309}, - [2461] = {.lex_state = 309}, - [2462] = {.lex_state = 309}, - [2463] = {.lex_state = 309}, - [2464] = {.lex_state = 1172}, - [2465] = {.lex_state = 1172}, - [2466] = {.lex_state = 1172}, - [2467] = {.lex_state = 309}, - [2468] = {.lex_state = 1173}, - [2469] = {.lex_state = 1172}, - [2470] = {.lex_state = 1172}, - [2471] = {.lex_state = 1173}, - [2472] = {.lex_state = 1172}, - [2473] = {.lex_state = 1173}, - [2474] = {.lex_state = 1173}, - [2475] = {.lex_state = 1173}, - [2476] = {.lex_state = 1173}, - [2477] = {.lex_state = 1173}, - [2478] = {.lex_state = 297}, - [2479] = {.lex_state = 297}, - [2480] = {.lex_state = 297}, - [2481] = {.lex_state = 1077}, - [2482] = {.lex_state = 297}, - [2483] = {.lex_state = 297}, - [2484] = {.lex_state = 1173}, - [2485] = {.lex_state = 1173}, - [2486] = {.lex_state = 1173}, - [2487] = {.lex_state = 1173}, - [2488] = {.lex_state = 1173}, - [2489] = {.lex_state = 1173}, - [2490] = {.lex_state = 297}, - [2491] = {.lex_state = 1173}, - [2492] = {.lex_state = 297}, - [2493] = {.lex_state = 1173}, - [2494] = {.lex_state = 1150}, - [2495] = {.lex_state = 309}, - [2496] = {.lex_state = 1150}, - [2497] = {.lex_state = 309}, - [2498] = {.lex_state = 309}, - [2499] = {.lex_state = 309}, - [2500] = {.lex_state = 1150}, - [2501] = {.lex_state = 1150}, - [2502] = {.lex_state = 3205}, - [2503] = {.lex_state = 1173}, - [2504] = {.lex_state = 1077}, - [2505] = {.lex_state = 297}, - [2506] = {.lex_state = 309}, - [2507] = {.lex_state = 297}, - [2508] = {.lex_state = 1173}, - [2509] = {.lex_state = 1150}, - [2510] = {.lex_state = 1150}, - [2511] = {.lex_state = 90}, - [2512] = {.lex_state = 1150}, - [2513] = {.lex_state = 1075}, - [2514] = {.lex_state = 1173}, - [2515] = {.lex_state = 309}, - [2516] = {.lex_state = 309}, - [2517] = {.lex_state = 1066}, - [2518] = {.lex_state = 309}, - [2519] = {.lex_state = 1150}, - [2520] = {.lex_state = 1150}, - [2521] = {.lex_state = 1173}, - [2522] = {.lex_state = 1066}, - [2523] = {.lex_state = 1066}, - [2524] = {.lex_state = 433}, - [2525] = {.lex_state = 1173}, - [2526] = {.lex_state = 1173}, - [2527] = {.lex_state = 1075}, - [2528] = {.lex_state = 1075}, - [2529] = {.lex_state = 1173}, - [2530] = {.lex_state = 1075}, - [2531] = {.lex_state = 1173}, - [2532] = {.lex_state = 1075}, - [2533] = {.lex_state = 1173}, - [2534] = {.lex_state = 1173}, - [2535] = {.lex_state = 1173}, - [2536] = {.lex_state = 1163}, - [2537] = {.lex_state = 309}, - [2538] = {.lex_state = 433}, - [2539] = {.lex_state = 477}, - [2540] = {.lex_state = 477}, - [2541] = {.lex_state = 433}, - [2542] = {.lex_state = 477}, - [2543] = {.lex_state = 477}, - [2544] = {.lex_state = 433}, - [2545] = {.lex_state = 1173}, - [2546] = {.lex_state = 1173}, - [2547] = {.lex_state = 1173}, - [2548] = {.lex_state = 1173}, - [2549] = {.lex_state = 297}, - [2550] = {.lex_state = 297}, - [2551] = {.lex_state = 433}, - [2552] = {.lex_state = 1172}, - [2553] = {.lex_state = 297}, - [2554] = {.lex_state = 1172}, - [2555] = {.lex_state = 1172}, - [2556] = {.lex_state = 297}, - [2557] = {.lex_state = 297}, - [2558] = {.lex_state = 297}, - [2559] = {.lex_state = 297}, - [2560] = {.lex_state = 297}, - [2561] = {.lex_state = 297}, - [2562] = {.lex_state = 297}, - [2563] = {.lex_state = 297}, - [2564] = {.lex_state = 297}, - [2565] = {.lex_state = 297}, - [2566] = {.lex_state = 297}, - [2567] = {.lex_state = 297}, - [2568] = {.lex_state = 297}, - [2569] = {.lex_state = 297}, - [2570] = {.lex_state = 477}, - [2571] = {.lex_state = 477}, - [2572] = {.lex_state = 1164}, - [2573] = {.lex_state = 297}, - [2574] = {.lex_state = 297}, - [2575] = {.lex_state = 297}, - [2576] = {.lex_state = 297}, - [2577] = {.lex_state = 297}, - [2578] = {.lex_state = 297}, - [2579] = {.lex_state = 297}, - [2580] = {.lex_state = 297}, - [2581] = {.lex_state = 297}, - [2582] = {.lex_state = 297}, - [2583] = {.lex_state = 297}, - [2584] = {.lex_state = 297}, - [2585] = {.lex_state = 297}, - [2586] = {.lex_state = 3208}, - [2587] = {.lex_state = 297}, - [2588] = {.lex_state = 297}, - [2589] = {.lex_state = 1150}, - [2590] = {.lex_state = 1150}, - [2591] = {.lex_state = 1152}, - [2592] = {.lex_state = 1161}, - [2593] = {.lex_state = 1150}, - [2594] = {.lex_state = 1161}, - [2595] = {.lex_state = 1150}, - [2596] = {.lex_state = 1150}, - [2597] = {.lex_state = 1150}, - [2598] = {.lex_state = 1161}, - [2599] = {.lex_state = 297}, - [2600] = {.lex_state = 297}, - [2601] = {.lex_state = 297}, - [2602] = {.lex_state = 297}, - [2603] = {.lex_state = 297}, - [2604] = {.lex_state = 297}, - [2605] = {.lex_state = 1165}, - [2606] = {.lex_state = 297}, - [2607] = {.lex_state = 297}, - [2608] = {.lex_state = 297}, - [2609] = {.lex_state = 297}, - [2610] = {.lex_state = 297}, - [2611] = {.lex_state = 297}, - [2612] = {.lex_state = 297}, - [2613] = {.lex_state = 297}, - [2614] = {.lex_state = 297}, - [2615] = {.lex_state = 297}, - [2616] = {.lex_state = 297}, - [2617] = {.lex_state = 297}, - [2618] = {.lex_state = 297}, - [2619] = {.lex_state = 297}, - [2620] = {.lex_state = 1173}, - [2621] = {.lex_state = 1173}, - [2622] = {.lex_state = 1150}, - [2623] = {.lex_state = 1173}, - [2624] = {.lex_state = 1173}, - [2625] = {.lex_state = 1077}, - [2626] = {.lex_state = 1150}, - [2627] = {.lex_state = 1150}, - [2628] = {.lex_state = 1172}, - [2629] = {.lex_state = 1172}, - [2630] = {.lex_state = 1172}, - [2631] = {.lex_state = 433}, - [2632] = {.lex_state = 1150}, - [2633] = {.lex_state = 1150}, - [2634] = {.lex_state = 1205}, - [2635] = {.lex_state = 477}, - [2636] = {.lex_state = 477}, - [2637] = {.lex_state = 1173}, - [2638] = {.lex_state = 1150}, - [2639] = {.lex_state = 1161}, - [2640] = {.lex_state = 1150}, - [2641] = {.lex_state = 1150}, - [2642] = {.lex_state = 1075}, - [2643] = {.lex_state = 1077}, - [2644] = {.lex_state = 1150}, - [2645] = {.lex_state = 1150}, - [2646] = {.lex_state = 1150}, - [2647] = {.lex_state = 1075}, - [2648] = {.lex_state = 1150}, - [2649] = {.lex_state = 1150}, - [2650] = {.lex_state = 1150}, - [2651] = {.lex_state = 1150}, - [2652] = {.lex_state = 1150}, - [2653] = {.lex_state = 1150}, - [2654] = {.lex_state = 1075}, - [2655] = {.lex_state = 91}, - [2656] = {.lex_state = 91}, - [2657] = {.lex_state = 1150}, - [2658] = {.lex_state = 1150}, - [2659] = {.lex_state = 91}, - [2660] = {.lex_state = 1150}, - [2661] = {.lex_state = 1150}, - [2662] = {.lex_state = 1150}, - [2663] = {.lex_state = 1150}, - [2664] = {.lex_state = 1150}, - [2665] = {.lex_state = 1150}, - [2666] = {.lex_state = 1150}, - [2667] = {.lex_state = 1150}, - [2668] = {.lex_state = 1150}, - [2669] = {.lex_state = 1150}, - [2670] = {.lex_state = 1150}, - [2671] = {.lex_state = 1150}, - [2672] = {.lex_state = 1150}, - [2673] = {.lex_state = 1150}, - [2674] = {.lex_state = 1150}, - [2675] = {.lex_state = 1150}, - [2676] = {.lex_state = 1150}, - [2677] = {.lex_state = 1150}, - [2678] = {.lex_state = 1025}, - [2679] = {.lex_state = 1150}, - [2680] = {.lex_state = 1150}, - [2681] = {.lex_state = 1150}, - [2682] = {.lex_state = 1150}, - [2683] = {.lex_state = 1150}, - [2684] = {.lex_state = 1150}, - [2685] = {.lex_state = 1150}, - [2686] = {.lex_state = 1150}, - [2687] = {.lex_state = 1150}, - [2688] = {.lex_state = 91}, - [2689] = {.lex_state = 1150}, - [2690] = {.lex_state = 1075}, - [2691] = {.lex_state = 1075}, - [2692] = {.lex_state = 1075}, - [2693] = {.lex_state = 1075}, - [2694] = {.lex_state = 1075}, - [2695] = {.lex_state = 1075}, - [2696] = {.lex_state = 1150}, - [2697] = {.lex_state = 1075}, - [2698] = {.lex_state = 1075}, - [2699] = {.lex_state = 1150}, - [2700] = {.lex_state = 1150}, - [2701] = {.lex_state = 1150}, - [2702] = {.lex_state = 1150}, - [2703] = {.lex_state = 1150}, - [2704] = {.lex_state = 1150}, - [2705] = {.lex_state = 1150}, - [2706] = {.lex_state = 1150}, - [2707] = {.lex_state = 1150}, - [2708] = {.lex_state = 1150}, - [2709] = {.lex_state = 1161}, - [2710] = {.lex_state = 1150}, - [2711] = {.lex_state = 1150}, - [2712] = {.lex_state = 1150}, - [2713] = {.lex_state = 1150}, - [2714] = {.lex_state = 1150}, - [2715] = {.lex_state = 1150}, - [2716] = {.lex_state = 1075}, - [2717] = {.lex_state = 1077}, - [2718] = {.lex_state = 477}, - [2719] = {.lex_state = 1150}, - [2720] = {.lex_state = 1161}, - [2721] = {.lex_state = 1150}, - [2722] = {.lex_state = 1150}, - [2723] = {.lex_state = 1150}, - [2724] = {.lex_state = 1075}, - [2725] = {.lex_state = 1150}, - [2726] = {.lex_state = 1150}, - [2727] = {.lex_state = 1150}, - [2728] = {.lex_state = 1150}, - [2729] = {.lex_state = 1150}, - [2730] = {.lex_state = 1150}, - [2731] = {.lex_state = 1150}, - [2732] = {.lex_state = 1077}, - [2733] = {.lex_state = 1150}, - [2734] = {.lex_state = 1150}, - [2735] = {.lex_state = 1150}, - [2736] = {.lex_state = 1150}, - [2737] = {.lex_state = 1150}, - [2738] = {.lex_state = 1164}, - [2739] = {.lex_state = 1150}, - [2740] = {.lex_state = 1150}, - [2741] = {.lex_state = 1150}, - [2742] = {.lex_state = 1150}, - [2743] = {.lex_state = 1150}, - [2744] = {.lex_state = 1150}, - [2745] = {.lex_state = 1164}, - [2746] = {.lex_state = 1150}, - [2747] = {.lex_state = 1150}, - [2748] = {.lex_state = 1150}, - [2749] = {.lex_state = 1150}, - [2750] = {.lex_state = 1150}, - [2751] = {.lex_state = 1150}, - [2752] = {.lex_state = 1150}, - [2753] = {.lex_state = 1150}, - [2754] = {.lex_state = 1150}, - [2755] = {.lex_state = 1075}, - [2756] = {.lex_state = 1150}, - [2757] = {.lex_state = 1150}, - [2758] = {.lex_state = 1150}, - [2759] = {.lex_state = 1150}, - [2760] = {.lex_state = 1152}, - [2761] = {.lex_state = 1150}, - [2762] = {.lex_state = 1150}, - [2763] = {.lex_state = 1150}, - [2764] = {.lex_state = 1150}, - [2765] = {.lex_state = 1077}, - [2766] = {.lex_state = 1150}, - [2767] = {.lex_state = 1150}, - [2768] = {.lex_state = 1150}, - [2769] = {.lex_state = 1150}, - [2770] = {.lex_state = 1150}, - [2771] = {.lex_state = 1150}, - [2772] = {.lex_state = 1150}, - [2773] = {.lex_state = 1150}, - [2774] = {.lex_state = 1150}, - [2775] = {.lex_state = 1150}, - [2776] = {.lex_state = 1150}, - [2777] = {.lex_state = 1150}, - [2778] = {.lex_state = 1150}, - [2779] = {.lex_state = 1150}, - [2780] = {.lex_state = 1150}, - [2781] = {.lex_state = 1150}, - [2782] = {.lex_state = 1150}, - [2783] = {.lex_state = 1150}, - [2784] = {.lex_state = 1150}, - [2785] = {.lex_state = 1150}, - [2786] = {.lex_state = 1150}, - [2787] = {.lex_state = 1150}, - [2788] = {.lex_state = 1150}, - [2789] = {.lex_state = 1150}, - [2790] = {.lex_state = 1150}, - [2791] = {.lex_state = 1150}, - [2792] = {.lex_state = 1150}, - [2793] = {.lex_state = 1150}, - [2794] = {.lex_state = 1075}, - [2795] = {.lex_state = 1150}, - [2796] = {.lex_state = 1150}, - [2797] = {.lex_state = 1150}, - [2798] = {.lex_state = 1150}, - [2799] = {.lex_state = 1150}, - [2800] = {.lex_state = 1150}, - [2801] = {.lex_state = 3208}, - [2802] = {.lex_state = 1150}, - [2803] = {.lex_state = 1150}, - [2804] = {.lex_state = 92}, - [2805] = {.lex_state = 92}, - [2806] = {.lex_state = 1150}, - [2807] = {.lex_state = 1150}, - [2808] = {.lex_state = 413}, - [2809] = {.lex_state = 413}, - [2810] = {.lex_state = 1150}, - [2811] = {.lex_state = 413}, - [2812] = {.lex_state = 1150}, - [2813] = {.lex_state = 1150}, - [2814] = {.lex_state = 1150}, - [2815] = {.lex_state = 1150}, - [2816] = {.lex_state = 1042}, - [2817] = {.lex_state = 1150}, - [2818] = {.lex_state = 1150}, - [2819] = {.lex_state = 1150}, - [2820] = {.lex_state = 1150}, - [2821] = {.lex_state = 1150}, - [2822] = {.lex_state = 1150}, - [2823] = {.lex_state = 1150}, - [2824] = {.lex_state = 1150}, - [2825] = {.lex_state = 1150}, - [2826] = {.lex_state = 1025}, - [2827] = {.lex_state = 1150}, - [2828] = {.lex_state = 236}, - [2829] = {.lex_state = 1150}, - [2830] = {.lex_state = 1150}, - [2831] = {.lex_state = 413}, - [2832] = {.lex_state = 413}, - [2833] = {.lex_state = 1150}, - [2834] = {.lex_state = 1150}, - [2835] = {.lex_state = 1150}, - [2836] = {.lex_state = 1150}, - [2837] = {.lex_state = 413}, - [2838] = {.lex_state = 413}, - [2839] = {.lex_state = 1150}, - [2840] = {.lex_state = 413}, - [2841] = {.lex_state = 1150}, - [2842] = {.lex_state = 1150}, - [2843] = {.lex_state = 1150}, - [2844] = {.lex_state = 1150}, - [2845] = {.lex_state = 1150}, - [2846] = {.lex_state = 1150}, - [2847] = {.lex_state = 1150}, - [2848] = {.lex_state = 1150}, - [2849] = {.lex_state = 1150}, - [2850] = {.lex_state = 1150}, - [2851] = {.lex_state = 1150}, - [2852] = {.lex_state = 1150}, - [2853] = {.lex_state = 1150}, - [2854] = {.lex_state = 1150}, - [2855] = {.lex_state = 1150}, - [2856] = {.lex_state = 1150}, - [2857] = {.lex_state = 1150}, - [2858] = {.lex_state = 1150}, - [2859] = {.lex_state = 1150}, - [2860] = {.lex_state = 1150}, - [2861] = {.lex_state = 1150}, - [2862] = {.lex_state = 1150}, - [2863] = {.lex_state = 1150}, - [2864] = {.lex_state = 1150}, - [2865] = {.lex_state = 1112}, - [2866] = {.lex_state = 1150}, - [2867] = {.lex_state = 1150}, - [2868] = {.lex_state = 1150}, - [2869] = {.lex_state = 1150}, - [2870] = {.lex_state = 1112}, - [2871] = {.lex_state = 1150}, - [2872] = {.lex_state = 1150}, - [2873] = {.lex_state = 1150}, - [2874] = {.lex_state = 1112}, - [2875] = {.lex_state = 1150}, - [2876] = {.lex_state = 1150}, - [2877] = {.lex_state = 1150}, - [2878] = {.lex_state = 1150}, - [2879] = {.lex_state = 1150}, - [2880] = {.lex_state = 92}, - [2881] = {.lex_state = 1150}, - [2882] = {.lex_state = 1150}, - [2883] = {.lex_state = 1150}, - [2884] = {.lex_state = 1150}, - [2885] = {.lex_state = 433}, - [2886] = {.lex_state = 1150}, - [2887] = {.lex_state = 1150}, - [2888] = {.lex_state = 1150}, - [2889] = {.lex_state = 1150}, - [2890] = {.lex_state = 1150}, - [2891] = {.lex_state = 1150}, - [2892] = {.lex_state = 1150}, - [2893] = {.lex_state = 1112}, - [2894] = {.lex_state = 1150}, - [2895] = {.lex_state = 1075}, - [2896] = {.lex_state = 433}, - [2897] = {.lex_state = 1150}, - [2898] = {.lex_state = 1075}, - [2899] = {.lex_state = 1150}, - [2900] = {.lex_state = 1150}, - [2901] = {.lex_state = 1150}, - [2902] = {.lex_state = 1150}, - [2903] = {.lex_state = 1150}, - [2904] = {.lex_state = 1150}, - [2905] = {.lex_state = 1150}, - [2906] = {.lex_state = 1150}, - [2907] = {.lex_state = 1150}, - [2908] = {.lex_state = 1150}, - [2909] = {.lex_state = 1150}, - [2910] = {.lex_state = 1150}, - [2911] = {.lex_state = 1150}, - [2912] = {.lex_state = 1072}, - [2913] = {.lex_state = 1150}, - [2914] = {.lex_state = 1150}, - [2915] = {.lex_state = 1075}, - [2916] = {.lex_state = 1075}, - [2917] = {.lex_state = 1150}, - [2918] = {.lex_state = 1150}, - [2919] = {.lex_state = 1150}, - [2920] = {.lex_state = 1150}, - [2921] = {.lex_state = 1150}, - [2922] = {.lex_state = 1150}, - [2923] = {.lex_state = 1150}, - [2924] = {.lex_state = 1150}, - [2925] = {.lex_state = 92}, - [2926] = {.lex_state = 1075}, - [2927] = {.lex_state = 3201}, - [2928] = {.lex_state = 1150}, - [2929] = {.lex_state = 1150}, - [2930] = {.lex_state = 1150}, - [2931] = {.lex_state = 1150}, - [2932] = {.lex_state = 1075}, - [2933] = {.lex_state = 1150}, - [2934] = {.lex_state = 1150}, - [2935] = {.lex_state = 1075}, - [2936] = {.lex_state = 1150}, - [2937] = {.lex_state = 1042}, - [2938] = {.lex_state = 1150}, - [2939] = {.lex_state = 1150}, - [2940] = {.lex_state = 1150}, - [2941] = {.lex_state = 1150}, - [2942] = {.lex_state = 92}, - [2943] = {.lex_state = 1150}, - [2944] = {.lex_state = 1150}, - [2945] = {.lex_state = 1150}, - [2946] = {.lex_state = 1112}, - [2947] = {.lex_state = 1150}, - [2948] = {.lex_state = 1042}, - [2949] = {.lex_state = 170}, - [2950] = {.lex_state = 1073}, - [2951] = {.lex_state = 1150}, - [2952] = {.lex_state = 1073}, - [2953] = {.lex_state = 1150}, - [2954] = {.lex_state = 1073}, - [2955] = {.lex_state = 170}, - [2956] = {.lex_state = 1073}, - [2957] = {.lex_state = 1073}, - [2958] = {.lex_state = 170}, - [2959] = {.lex_state = 1073}, - [2960] = {.lex_state = 1073}, - [2961] = {.lex_state = 1073}, - [2962] = {.lex_state = 1150}, - [2963] = {.lex_state = 1150}, - [2964] = {.lex_state = 1073}, - [2965] = {.lex_state = 1073}, - [2966] = {.lex_state = 1075}, - [2967] = {.lex_state = 1073}, - [2968] = {.lex_state = 1073}, - [2969] = {.lex_state = 1073}, - [2970] = {.lex_state = 1073}, - [2971] = {.lex_state = 1073}, - [2972] = {.lex_state = 1073}, - [2973] = {.lex_state = 1073}, - [2974] = {.lex_state = 1073}, - [2975] = {.lex_state = 1150}, - [2976] = {.lex_state = 1073}, - [2977] = {.lex_state = 1073}, - [2978] = {.lex_state = 1073}, - [2979] = {.lex_state = 1073}, - [2980] = {.lex_state = 1073}, - [2981] = {.lex_state = 1073}, - [2982] = {.lex_state = 1150}, - [2983] = {.lex_state = 1150}, - [2984] = {.lex_state = 1073}, - [2985] = {.lex_state = 1150}, - [2986] = {.lex_state = 1073}, - [2987] = {.lex_state = 1073}, - [2988] = {.lex_state = 1072}, - [2989] = {.lex_state = 346}, - [2990] = {.lex_state = 1112}, - [2991] = {.lex_state = 1073}, - [2992] = {.lex_state = 1073}, - [2993] = {.lex_state = 414}, - [2994] = {.lex_state = 414}, - [2995] = {.lex_state = 1150}, - [2996] = {.lex_state = 1075}, - [2997] = {.lex_state = 1150}, - [2998] = {.lex_state = 1075}, - [2999] = {.lex_state = 1073}, - [3000] = {.lex_state = 1073}, - [3001] = {.lex_state = 1073}, - [3002] = {.lex_state = 1073}, - [3003] = {.lex_state = 1073}, - [3004] = {.lex_state = 1073}, - [3005] = {.lex_state = 1073}, - [3006] = {.lex_state = 170}, - [3007] = {.lex_state = 1073}, - [3008] = {.lex_state = 1150}, - [3009] = {.lex_state = 1150}, - [3010] = {.lex_state = 1073}, - [3011] = {.lex_state = 1073}, - [3012] = {.lex_state = 1073}, - [3013] = {.lex_state = 1073}, - [3014] = {.lex_state = 1073}, - [3015] = {.lex_state = 1073}, - [3016] = {.lex_state = 1150}, - [3017] = {.lex_state = 1073}, - [3018] = {.lex_state = 1073}, - [3019] = {.lex_state = 1073}, - [3020] = {.lex_state = 1073}, - [3021] = {.lex_state = 1073}, - [3022] = {.lex_state = 1073}, - [3023] = {.lex_state = 414}, - [3024] = {.lex_state = 414}, - [3025] = {.lex_state = 414}, - [3026] = {.lex_state = 1073}, - [3027] = {.lex_state = 1150}, - [3028] = {.lex_state = 1073}, - [3029] = {.lex_state = 1150}, - [3030] = {.lex_state = 1150}, - [3031] = {.lex_state = 1073}, - [3032] = {.lex_state = 1073}, - [3033] = {.lex_state = 1150}, - [3034] = {.lex_state = 1150}, - [3035] = {.lex_state = 1073}, - [3036] = {.lex_state = 1073}, - [3037] = {.lex_state = 346}, - [3038] = {.lex_state = 414}, - [3039] = {.lex_state = 1150}, - [3040] = {.lex_state = 346}, - [3041] = {.lex_state = 1150}, - [3042] = {.lex_state = 1150}, - [3043] = {.lex_state = 256}, - [3044] = {.lex_state = 1112}, - [3045] = {.lex_state = 346}, - [3046] = {.lex_state = 1150}, - [3047] = {.lex_state = 1150}, - [3048] = {.lex_state = 1042}, - [3049] = {.lex_state = 3201}, - [3050] = {.lex_state = 170}, - [3051] = {.lex_state = 1073}, - [3052] = {.lex_state = 1150}, - [3053] = {.lex_state = 1112}, - [3054] = {.lex_state = 1073}, - [3055] = {.lex_state = 1073}, - [3056] = {.lex_state = 1112}, - [3057] = {.lex_state = 414}, - [3058] = {.lex_state = 1073}, - [3059] = {.lex_state = 1073}, - [3060] = {.lex_state = 414}, - [3061] = {.lex_state = 1150}, - [3062] = {.lex_state = 1073}, - [3063] = {.lex_state = 1150}, - [3064] = {.lex_state = 1112}, - [3065] = {.lex_state = 1073}, - [3066] = {.lex_state = 1073}, - [3067] = {.lex_state = 1073}, - [3068] = {.lex_state = 1073}, - [3069] = {.lex_state = 1073}, - [3070] = {.lex_state = 170}, - [3071] = {.lex_state = 1073}, - [3072] = {.lex_state = 170}, - [3073] = {.lex_state = 1073}, - [3074] = {.lex_state = 1073}, - [3075] = {.lex_state = 1073}, - [3076] = {.lex_state = 170}, - [3077] = {.lex_state = 170}, - [3078] = {.lex_state = 1073}, - [3079] = {.lex_state = 1073}, - [3080] = {.lex_state = 1073}, - [3081] = {.lex_state = 1073}, - [3082] = {.lex_state = 1073}, - [3083] = {.lex_state = 1073}, - [3084] = {.lex_state = 1073}, - [3085] = {.lex_state = 1073}, - [3086] = {.lex_state = 1281}, - [3087] = {.lex_state = 355}, - [3088] = {.lex_state = 355}, - [3089] = {.lex_state = 1073}, - [3090] = {.lex_state = 1073}, - [3091] = {.lex_state = 1073}, - [3092] = {.lex_state = 1073}, - [3093] = {.lex_state = 1073}, - [3094] = {.lex_state = 1073}, - [3095] = {.lex_state = 1073}, - [3096] = {.lex_state = 1073}, - [3097] = {.lex_state = 1073}, - [3098] = {.lex_state = 1073}, - [3099] = {.lex_state = 1073}, - [3100] = {.lex_state = 1073}, - [3101] = {.lex_state = 1073}, - [3102] = {.lex_state = 1073}, - [3103] = {.lex_state = 1073}, - [3104] = {.lex_state = 1073}, - [3105] = {.lex_state = 1073}, - [3106] = {.lex_state = 1073}, - [3107] = {.lex_state = 1073}, - [3108] = {.lex_state = 1073}, - [3109] = {.lex_state = 1073}, - [3110] = {.lex_state = 1073}, - [3111] = {.lex_state = 1073}, - [3112] = {.lex_state = 1073}, - [3113] = {.lex_state = 1073}, - [3114] = {.lex_state = 1073}, - [3115] = {.lex_state = 1073}, - [3116] = {.lex_state = 1073}, - [3117] = {.lex_state = 1073}, - [3118] = {.lex_state = 1073}, - [3119] = {.lex_state = 1073}, - [3120] = {.lex_state = 1073}, - [3121] = {.lex_state = 1073}, - [3122] = {.lex_state = 1073}, - [3123] = {.lex_state = 1073}, - [3124] = {.lex_state = 1073}, - [3125] = {.lex_state = 1073}, - [3126] = {.lex_state = 1073}, - [3127] = {.lex_state = 1073}, - [3128] = {.lex_state = 1073}, - [3129] = {.lex_state = 1073}, - [3130] = {.lex_state = 355}, - [3131] = {.lex_state = 355}, - [3132] = {.lex_state = 355}, - [3133] = {.lex_state = 355}, - [3134] = {.lex_state = 355}, - [3135] = {.lex_state = 355}, - [3136] = {.lex_state = 1073}, - [3137] = {.lex_state = 1073}, - [3138] = {.lex_state = 1073}, - [3139] = {.lex_state = 1281}, - [3140] = {.lex_state = 170}, - [3141] = {.lex_state = 1281}, - [3142] = {.lex_state = 170}, - [3143] = {.lex_state = 440}, - [3144] = {.lex_state = 440}, - [3145] = {.lex_state = 440}, - [3146] = {.lex_state = 440}, - [3147] = {.lex_state = 170}, - [3148] = {.lex_state = 438}, - [3149] = {.lex_state = 176}, - [3150] = {.lex_state = 453}, - [3151] = {.lex_state = 175}, - [3152] = {.lex_state = 175}, - [3153] = {.lex_state = 175}, - [3154] = {.lex_state = 175}, - [3155] = {.lex_state = 175}, - [3156] = {.lex_state = 453}, - [3157] = {.lex_state = 341}, - [3158] = {.lex_state = 453}, - [3159] = {.lex_state = 450}, - [3160] = {.lex_state = 438}, - [3161] = {.lex_state = 175}, - [3162] = {.lex_state = 438}, - [3163] = {.lex_state = 175}, - [3164] = {.lex_state = 175}, - [3165] = {.lex_state = 453}, - [3166] = {.lex_state = 175}, - [3167] = {.lex_state = 176}, - [3168] = {.lex_state = 438}, - [3169] = {.lex_state = 439}, - [3170] = {.lex_state = 341}, - [3171] = {.lex_state = 176}, - [3172] = {.lex_state = 175}, - [3173] = {.lex_state = 175}, - [3174] = {.lex_state = 176}, - [3175] = {.lex_state = 476}, - [3176] = {.lex_state = 341}, - [3177] = {.lex_state = 448}, - [3178] = {.lex_state = 341}, - [3179] = {.lex_state = 448}, - [3180] = {.lex_state = 341}, - [3181] = {.lex_state = 341}, - [3182] = {.lex_state = 341}, - [3183] = {.lex_state = 440}, - [3184] = {.lex_state = 341}, - [3185] = {.lex_state = 448}, - [3186] = {.lex_state = 440}, - [3187] = {.lex_state = 357}, - [3188] = {.lex_state = 341}, - [3189] = {.lex_state = 341}, - [3190] = {.lex_state = 341}, - [3191] = {.lex_state = 341}, - [3192] = {.lex_state = 341}, - [3193] = {.lex_state = 341}, - [3194] = {.lex_state = 341}, - [3195] = {.lex_state = 341}, - [3196] = {.lex_state = 341}, - [3197] = {.lex_state = 341}, - [3198] = {.lex_state = 341}, - [3199] = {.lex_state = 341}, - [3200] = {.lex_state = 341}, - [3201] = {.lex_state = 341}, - [3202] = {.lex_state = 357}, - [3203] = {.lex_state = 451}, - [3204] = {.lex_state = 341}, - [3205] = {.lex_state = 451}, - [3206] = {.lex_state = 341}, - [3207] = {.lex_state = 341}, - [3208] = {.lex_state = 341}, - [3209] = {.lex_state = 341}, - [3210] = {.lex_state = 341}, - [3211] = {.lex_state = 341}, - [3212] = {.lex_state = 341}, - [3213] = {.lex_state = 341}, - [3214] = {.lex_state = 436}, - [3215] = {.lex_state = 341}, - [3216] = {.lex_state = 436}, - [3217] = {.lex_state = 341}, - [3218] = {.lex_state = 436}, - [3219] = {.lex_state = 341}, - [3220] = {.lex_state = 436}, - [3221] = {.lex_state = 341}, - [3222] = {.lex_state = 341}, - [3223] = {.lex_state = 341}, - [3224] = {.lex_state = 341}, - [3225] = {.lex_state = 341}, - [3226] = {.lex_state = 341}, - [3227] = {.lex_state = 341}, - [3228] = {.lex_state = 341}, - [3229] = {.lex_state = 341}, - [3230] = {.lex_state = 341}, - [3231] = {.lex_state = 341}, - [3232] = {.lex_state = 341}, - [3233] = {.lex_state = 341}, - [3234] = {.lex_state = 341}, - [3235] = {.lex_state = 341}, - [3236] = {.lex_state = 341}, - [3237] = {.lex_state = 341}, - [3238] = {.lex_state = 341}, - [3239] = {.lex_state = 341}, - [3240] = {.lex_state = 341}, - [3241] = {.lex_state = 341}, - [3242] = {.lex_state = 341}, - [3243] = {.lex_state = 341}, - [3244] = {.lex_state = 341}, - [3245] = {.lex_state = 341}, - [3246] = {.lex_state = 341}, - [3247] = {.lex_state = 341}, - [3248] = {.lex_state = 341}, - [3249] = {.lex_state = 341}, - [3250] = {.lex_state = 341}, - [3251] = {.lex_state = 341}, - [3252] = {.lex_state = 341}, - [3253] = {.lex_state = 341}, - [3254] = {.lex_state = 341}, - [3255] = {.lex_state = 341}, - [3256] = {.lex_state = 341}, - [3257] = {.lex_state = 341}, - [3258] = {.lex_state = 341}, - [3259] = {.lex_state = 341}, - [3260] = {.lex_state = 341}, - [3261] = {.lex_state = 341}, - [3262] = {.lex_state = 341}, - [3263] = {.lex_state = 341}, - [3264] = {.lex_state = 341}, - [3265] = {.lex_state = 341}, - [3266] = {.lex_state = 341}, - [3267] = {.lex_state = 341}, - [3268] = {.lex_state = 341}, - [3269] = {.lex_state = 341}, - [3270] = {.lex_state = 341}, - [3271] = {.lex_state = 341}, - [3272] = {.lex_state = 341}, - [3273] = {.lex_state = 341}, - [3274] = {.lex_state = 341}, - [3275] = {.lex_state = 341}, - [3276] = {.lex_state = 341}, - [3277] = {.lex_state = 341}, - [3278] = {.lex_state = 175}, - [3279] = {.lex_state = 440}, - [3280] = {.lex_state = 341}, - [3281] = {.lex_state = 175}, - [3282] = {.lex_state = 341}, - [3283] = {.lex_state = 341}, - [3284] = {.lex_state = 341}, - [3285] = {.lex_state = 341}, - [3286] = {.lex_state = 43}, - [3287] = {.lex_state = 341}, - [3288] = {.lex_state = 341}, - [3289] = {.lex_state = 341}, - [3290] = {.lex_state = 341}, - [3291] = {.lex_state = 341}, - [3292] = {.lex_state = 341}, - [3293] = {.lex_state = 341}, - [3294] = {.lex_state = 175}, - [3295] = {.lex_state = 175}, - [3296] = {.lex_state = 341}, - [3297] = {.lex_state = 341}, - [3298] = {.lex_state = 341}, - [3299] = {.lex_state = 341}, - [3300] = {.lex_state = 341}, - [3301] = {.lex_state = 341}, - [3302] = {.lex_state = 341}, - [3303] = {.lex_state = 341}, - [3304] = {.lex_state = 341}, - [3305] = {.lex_state = 341}, - [3306] = {.lex_state = 341}, - [3307] = {.lex_state = 341}, - [3308] = {.lex_state = 341}, - [3309] = {.lex_state = 341}, - [3310] = {.lex_state = 341}, - [3311] = {.lex_state = 341}, - [3312] = {.lex_state = 341}, - [3313] = {.lex_state = 341}, - [3314] = {.lex_state = 341}, - [3315] = {.lex_state = 341}, - [3316] = {.lex_state = 449}, - [3317] = {.lex_state = 341}, - [3318] = {.lex_state = 341}, - [3319] = {.lex_state = 341}, - [3320] = {.lex_state = 341}, - [3321] = {.lex_state = 451}, - [3322] = {.lex_state = 341}, - [3323] = {.lex_state = 341}, - [3324] = {.lex_state = 341}, - [3325] = {.lex_state = 341}, - [3326] = {.lex_state = 341}, - [3327] = {.lex_state = 341}, - [3328] = {.lex_state = 341}, - [3329] = {.lex_state = 341}, - [3330] = {.lex_state = 341}, - [3331] = {.lex_state = 341}, - [3332] = {.lex_state = 341}, - [3333] = {.lex_state = 341}, - [3334] = {.lex_state = 341}, - [3335] = {.lex_state = 341}, - [3336] = {.lex_state = 341}, - [3337] = {.lex_state = 341}, - [3338] = {.lex_state = 341}, - [3339] = {.lex_state = 341}, - [3340] = {.lex_state = 341}, - [3341] = {.lex_state = 341}, - [3342] = {.lex_state = 341}, - [3343] = {.lex_state = 341}, - [3344] = {.lex_state = 341}, - [3345] = {.lex_state = 341}, - [3346] = {.lex_state = 341}, - [3347] = {.lex_state = 341}, - [3348] = {.lex_state = 341}, - [3349] = {.lex_state = 341}, - [3350] = {.lex_state = 452}, - [3351] = {.lex_state = 341}, - [3352] = {.lex_state = 341}, - [3353] = {.lex_state = 341}, - [3354] = {.lex_state = 461}, - [3355] = {.lex_state = 341}, - [3356] = {.lex_state = 449}, - [3357] = {.lex_state = 451}, - [3358] = {.lex_state = 341}, - [3359] = {.lex_state = 447}, - [3360] = {.lex_state = 275}, - [3361] = {.lex_state = 275}, - [3362] = {.lex_state = 2570}, - [3363] = {.lex_state = 449}, - [3364] = {.lex_state = 449}, - [3365] = {.lex_state = 449}, - [3366] = {.lex_state = 175}, - [3367] = {.lex_state = 93}, - [3368] = {.lex_state = 447}, - [3369] = {.lex_state = 175}, - [3370] = {.lex_state = 453}, - [3371] = {.lex_state = 275}, - [3372] = {.lex_state = 447}, - [3373] = {.lex_state = 453}, - [3374] = {.lex_state = 347}, - [3375] = {.lex_state = 447}, - [3376] = {.lex_state = 449}, - [3377] = {.lex_state = 347}, - [3378] = {.lex_state = 347}, - [3379] = {.lex_state = 435}, - [3380] = {.lex_state = 341}, - [3381] = {.lex_state = 449}, - [3382] = {.lex_state = 173}, - [3383] = {.lex_state = 435}, - [3384] = {.lex_state = 453}, - [3385] = {.lex_state = 460}, - [3386] = {.lex_state = 341}, - [3387] = {.lex_state = 357}, - [3388] = {.lex_state = 357}, - [3389] = {.lex_state = 435}, - [3390] = {.lex_state = 275}, - [3391] = {.lex_state = 437}, - [3392] = {.lex_state = 275}, - [3393] = {.lex_state = 449}, - [3394] = {.lex_state = 449}, - [3395] = {.lex_state = 437}, - [3396] = {.lex_state = 437}, - [3397] = {.lex_state = 93}, - [3398] = {.lex_state = 449}, - [3399] = {.lex_state = 460}, - [3400] = {.lex_state = 347}, - [3401] = {.lex_state = 341}, - [3402] = {.lex_state = 460}, - [3403] = {.lex_state = 449}, - [3404] = {.lex_state = 449}, - [3405] = {.lex_state = 347}, - [3406] = {.lex_state = 347}, - [3407] = {.lex_state = 175}, - [3408] = {.lex_state = 435}, - [3409] = {.lex_state = 357}, - [3410] = {.lex_state = 174}, - [3411] = {.lex_state = 174}, - [3412] = {.lex_state = 174}, - [3413] = {.lex_state = 357}, - [3414] = {.lex_state = 174}, - [3415] = {.lex_state = 174}, - [3416] = {.lex_state = 174}, - [3417] = {.lex_state = 174}, - [3418] = {.lex_state = 174}, - [3419] = {.lex_state = 174}, - [3420] = {.lex_state = 437}, - [3421] = {.lex_state = 357}, - [3422] = {.lex_state = 174}, - [3423] = {.lex_state = 174}, - [3424] = {.lex_state = 174}, - [3425] = {.lex_state = 443}, - [3426] = {.lex_state = 445}, - [3427] = {.lex_state = 445}, - [3428] = {.lex_state = 437}, - [3429] = {.lex_state = 437}, - [3430] = {.lex_state = 437}, - [3431] = {.lex_state = 445}, - [3432] = {.lex_state = 445}, - [3433] = {.lex_state = 446}, - [3434] = {.lex_state = 357}, - [3435] = {.lex_state = 174}, - [3436] = {.lex_state = 174}, - [3437] = {.lex_state = 174}, - [3438] = {.lex_state = 174}, - [3439] = {.lex_state = 174}, - [3440] = {.lex_state = 357}, - [3441] = {.lex_state = 174}, - [3442] = {.lex_state = 174}, - [3443] = {.lex_state = 437}, - [3444] = {.lex_state = 437}, - [3445] = {.lex_state = 437}, - [3446] = {.lex_state = 174}, - [3447] = {.lex_state = 174}, - [3448] = {.lex_state = 357}, - [3449] = {.lex_state = 437}, - [3450] = {.lex_state = 174}, - [3451] = {.lex_state = 174}, - [3452] = {.lex_state = 174}, - [3453] = {.lex_state = 174}, - [3454] = {.lex_state = 436}, - [3455] = {.lex_state = 174}, - [3456] = {.lex_state = 174}, - [3457] = {.lex_state = 174}, - [3458] = {.lex_state = 174}, - [3459] = {.lex_state = 174}, - [3460] = {.lex_state = 174}, - [3461] = {.lex_state = 174}, - [3462] = {.lex_state = 174}, - [3463] = {.lex_state = 174}, - [3464] = {.lex_state = 174}, - [3465] = {.lex_state = 174}, - [3466] = {.lex_state = 174}, - [3467] = {.lex_state = 174}, - [3468] = {.lex_state = 436}, - [3469] = {.lex_state = 174}, - [3470] = {.lex_state = 174}, - [3471] = {.lex_state = 174}, - [3472] = {.lex_state = 174}, - [3473] = {.lex_state = 436}, - [3474] = {.lex_state = 437}, - [3475] = {.lex_state = 174}, - [3476] = {.lex_state = 174}, - [3477] = {.lex_state = 174}, - [3478] = {.lex_state = 174}, - [3479] = {.lex_state = 174}, - [3480] = {.lex_state = 174}, - [3481] = {.lex_state = 174}, - [3482] = {.lex_state = 174}, - [3483] = {.lex_state = 174}, - [3484] = {.lex_state = 174}, - [3485] = {.lex_state = 174}, - [3486] = {.lex_state = 174}, - [3487] = {.lex_state = 174}, - [3488] = {.lex_state = 174}, - [3489] = {.lex_state = 357}, - [3490] = {.lex_state = 357}, - [3491] = {.lex_state = 174}, - [3492] = {.lex_state = 357}, - [3493] = {.lex_state = 174}, - [3494] = {.lex_state = 357}, - [3495] = {.lex_state = 357}, - [3496] = {.lex_state = 174}, - [3497] = {.lex_state = 357}, - [3498] = {.lex_state = 357}, - [3499] = {.lex_state = 357}, - [3500] = {.lex_state = 357}, - [3501] = {.lex_state = 174}, - [3502] = {.lex_state = 357}, - [3503] = {.lex_state = 357}, - [3504] = {.lex_state = 174}, - [3505] = {.lex_state = 447}, - [3506] = {.lex_state = 447}, - [3507] = {.lex_state = 442}, - [3508] = {.lex_state = 433}, - [3509] = {.lex_state = 441}, - [3510] = {.lex_state = 444}, - [3511] = {.lex_state = 447}, - [3512] = {.lex_state = 441}, - [3513] = {.lex_state = 433}, - [3514] = {.lex_state = 459}, - [3515] = {.lex_state = 441}, - [3516] = {.lex_state = 444}, - [3517] = {.lex_state = 457}, - [3518] = {.lex_state = 442}, - [3519] = {.lex_state = 455}, - [3520] = {.lex_state = 442}, - [3521] = {.lex_state = 442}, - [3522] = {.lex_state = 442}, - [3523] = {.lex_state = 442}, - [3524] = {.lex_state = 442}, - [3525] = {.lex_state = 442}, - [3526] = {.lex_state = 442}, - [3527] = {.lex_state = 458}, - [3528] = {.lex_state = 442}, - [3529] = {.lex_state = 442}, - [3530] = {.lex_state = 442}, - [3531] = {.lex_state = 442}, - [3532] = {.lex_state = 442}, - [3533] = {.lex_state = 458}, - [3534] = {.lex_state = 442}, - [3535] = {.lex_state = 442}, - [3536] = {.lex_state = 442}, - [3537] = {.lex_state = 442}, - [3538] = {.lex_state = 442}, - [3539] = {.lex_state = 442}, - [3540] = {.lex_state = 442}, - [3541] = {.lex_state = 442}, - [3542] = {.lex_state = 442}, - [3543] = {.lex_state = 442}, - [3544] = {.lex_state = 442}, - [3545] = {.lex_state = 442}, - [3546] = {.lex_state = 442}, - [3547] = {.lex_state = 455}, - [3548] = {.lex_state = 442}, - [3549] = {.lex_state = 442}, - [3550] = {.lex_state = 455}, - [3551] = {.lex_state = 442}, - [3552] = {.lex_state = 433}, - [3553] = {.lex_state = 433}, - [3554] = {.lex_state = 433}, - [3555] = {.lex_state = 433}, - [3556] = {.lex_state = 433}, - [3557] = {.lex_state = 433}, - [3558] = {.lex_state = 433}, - [3559] = {.lex_state = 433}, - [3560] = {.lex_state = 433}, - [3561] = {.lex_state = 433}, - [3562] = {.lex_state = 433}, - [3563] = {.lex_state = 433}, - [3564] = {.lex_state = 433}, - [3565] = {.lex_state = 433}, - [3566] = {.lex_state = 433}, - [3567] = {.lex_state = 433}, - [3568] = {.lex_state = 433}, - [3569] = {.lex_state = 433}, - [3570] = {.lex_state = 433}, - [3571] = {.lex_state = 433}, - [3572] = {.lex_state = 433}, - [3573] = {.lex_state = 433}, - [3574] = {.lex_state = 433}, - [3575] = {.lex_state = 433}, - [3576] = {.lex_state = 433}, - [3577] = {.lex_state = 433}, - [3578] = {.lex_state = 433}, - [3579] = {.lex_state = 433}, - [3580] = {.lex_state = 433}, - [3581] = {.lex_state = 433}, - [3582] = {.lex_state = 433}, - [3583] = {.lex_state = 433}, - [3584] = {.lex_state = 553}, - [3585] = {.lex_state = 433}, - [3586] = {.lex_state = 423}, - [3587] = {.lex_state = 423}, - [3588] = {.lex_state = 552}, - [3589] = {.lex_state = 552}, - [3590] = {.lex_state = 552}, - [3591] = {.lex_state = 552}, - [3592] = {.lex_state = 416}, - [3593] = {.lex_state = 393}, - [3594] = {.lex_state = 426}, - [3595] = {.lex_state = 394}, - [3596] = {.lex_state = 424}, - [3597] = {.lex_state = 425}, - [3598] = {.lex_state = 425}, - [3599] = {.lex_state = 426}, - [3600] = {.lex_state = 426}, - [3601] = {.lex_state = 424}, - [3602] = {.lex_state = 427}, - [3603] = {.lex_state = 425}, - [3604] = {.lex_state = 425}, - [3605] = {.lex_state = 416}, - [3606] = {.lex_state = 425}, - [3607] = {.lex_state = 425}, - [3608] = {.lex_state = 419}, - [3609] = {.lex_state = 397}, - [3610] = {.lex_state = 398}, - [3611] = {.lex_state = 420}, - [3612] = {.lex_state = 418}, - [3613] = {.lex_state = 418}, - [3614] = {.lex_state = 418}, - [3615] = {.lex_state = 418}, - [3616] = {.lex_state = 422}, - [3617] = {.lex_state = 422}, - [3618] = {.lex_state = 420}, - [3619] = {.lex_state = 397}, - [3620] = {.lex_state = 418}, - [3621] = {.lex_state = 418}, - [3622] = {.lex_state = 417}, - [3623] = {.lex_state = 390}, - [3624] = {.lex_state = 422}, - [3625] = {.lex_state = 422}, - [3626] = {.lex_state = 389}, - [3627] = {.lex_state = 422}, - [3628] = {.lex_state = 389}, - [3629] = {.lex_state = 421}, - [3630] = {.lex_state = 389}, - [3631] = {.lex_state = 397}, - [3632] = {.lex_state = 389}, - [3633] = {.lex_state = 377}, - [3634] = {.lex_state = 420}, - [3635] = {.lex_state = 417}, - [3636] = {.lex_state = 397}, - [3637] = {.lex_state = 398}, - [3638] = {.lex_state = 482}, - [3639] = {.lex_state = 379}, - [3640] = {.lex_state = 415}, - [3641] = {.lex_state = 415}, - [3642] = {.lex_state = 415}, - [3643] = {.lex_state = 379}, - [3644] = {.lex_state = 395}, - [3645] = {.lex_state = 379}, - [3646] = {.lex_state = 415}, - [3647] = {.lex_state = 398}, - [3648] = {.lex_state = 415}, - [3649] = {.lex_state = 379}, - [3650] = {.lex_state = 398}, - [3651] = {.lex_state = 390}, - [3652] = {.lex_state = 396}, - [3653] = {.lex_state = 390}, - [3654] = {.lex_state = 380}, - [3655] = {.lex_state = 390}, - [3656] = {.lex_state = 380}, - [3657] = {.lex_state = 412}, - [3658] = {.lex_state = 412}, - [3659] = {.lex_state = 399}, - [3660] = {.lex_state = 391}, - [3661] = {.lex_state = 380}, - [3662] = {.lex_state = 378}, - [3663] = {.lex_state = 412}, - [3664] = {.lex_state = 380}, - [3665] = {.lex_state = 391}, - [3666] = {.lex_state = 412}, - [3667] = {.lex_state = 391}, - [3668] = {.lex_state = 518}, - [3669] = {.lex_state = 391}, - [3670] = {.lex_state = 412}, - [3671] = {.lex_state = 478}, - [3672] = {.lex_state = 412}, - [3673] = {.lex_state = 399}, - [3674] = {.lex_state = 399}, - [3675] = {.lex_state = 412}, - [3676] = {.lex_state = 412}, - [3677] = {.lex_state = 399}, - [3678] = {.lex_state = 478}, - [3679] = {.lex_state = 478}, - [3680] = {.lex_state = 478}, - [3681] = {.lex_state = 381}, - [3682] = {.lex_state = 519}, - [3683] = {.lex_state = 523}, - [3684] = {.lex_state = 480}, - [3685] = {.lex_state = 484}, - [3686] = {.lex_state = 483}, - [3687] = {.lex_state = 392}, - [3688] = {.lex_state = 523}, - [3689] = {.lex_state = 381}, - [3690] = {.lex_state = 400}, - [3691] = {.lex_state = 392}, - [3692] = {.lex_state = 400}, - [3693] = {.lex_state = 400}, - [3694] = {.lex_state = 479}, - [3695] = {.lex_state = 1119}, - [3696] = {.lex_state = 400}, - [3697] = {.lex_state = 479}, - [3698] = {.lex_state = 381}, - [3699] = {.lex_state = 392}, - [3700] = {.lex_state = 381}, - [3701] = {.lex_state = 523}, - [3702] = {.lex_state = 1119}, - [3703] = {.lex_state = 523}, - [3704] = {.lex_state = 400}, - [3705] = {.lex_state = 479}, - [3706] = {.lex_state = 479}, - [3707] = {.lex_state = 519}, - [3708] = {.lex_state = 392}, - [3709] = {.lex_state = 392}, - [3710] = {.lex_state = 480}, - [3711] = {.lex_state = 519}, - [3712] = {.lex_state = 523}, - [3713] = {.lex_state = 480}, - [3714] = {.lex_state = 519}, - [3715] = {.lex_state = 382}, - [3716] = {.lex_state = 520}, - [3717] = {.lex_state = 1121}, - [3718] = {.lex_state = 382}, - [3719] = {.lex_state = 406}, - [3720] = {.lex_state = 382}, - [3721] = {.lex_state = 485}, - [3722] = {.lex_state = 480}, - [3723] = {.lex_state = 489}, - [3724] = {.lex_state = 520}, - [3725] = {.lex_state = 521}, - [3726] = {.lex_state = 521}, - [3727] = {.lex_state = 521}, - [3728] = {.lex_state = 382}, - [3729] = {.lex_state = 481}, - [3730] = {.lex_state = 489}, - [3731] = {.lex_state = 1125}, - [3732] = {.lex_state = 521}, - [3733] = {.lex_state = 1121}, - [3734] = {.lex_state = 485}, - [3735] = {.lex_state = 489}, - [3736] = {.lex_state = 541}, - [3737] = {.lex_state = 520}, - [3738] = {.lex_state = 520}, - [3739] = {.lex_state = 1123}, - [3740] = {.lex_state = 1123}, - [3741] = {.lex_state = 489}, - [3742] = {.lex_state = 485}, - [3743] = {.lex_state = 520}, - [3744] = {.lex_state = 407}, - [3745] = {.lex_state = 1119}, - [3746] = {.lex_state = 481}, - [3747] = {.lex_state = 1121}, - [3748] = {.lex_state = 522}, - [3749] = {.lex_state = 1121}, - [3750] = {.lex_state = 489}, - [3751] = {.lex_state = 382}, - [3752] = {.lex_state = 1121}, - [3753] = {.lex_state = 1121}, - [3754] = {.lex_state = 481}, - [3755] = {.lex_state = 1119}, - [3756] = {.lex_state = 485}, - [3757] = {.lex_state = 404}, - [3758] = {.lex_state = 1129}, - [3759] = {.lex_state = 1128}, - [3760] = {.lex_state = 464}, - [3761] = {.lex_state = 1121}, - [3762] = {.lex_state = 486}, - [3763] = {.lex_state = 410}, - [3764] = {.lex_state = 1121}, - [3765] = {.lex_state = 1084}, - [3766] = {.lex_state = 1128}, - [3767] = {.lex_state = 487}, - [3768] = {.lex_state = 481}, - [3769] = {.lex_state = 542}, - [3770] = {.lex_state = 486}, - [3771] = {.lex_state = 523}, - [3772] = {.lex_state = 1131}, - [3773] = {.lex_state = 487}, - [3774] = {.lex_state = 385}, - [3775] = {.lex_state = 538}, - [3776] = {.lex_state = 1131}, - [3777] = {.lex_state = 1121}, - [3778] = {.lex_state = 1131}, - [3779] = {.lex_state = 1128}, - [3780] = {.lex_state = 464}, - [3781] = {.lex_state = 1121}, - [3782] = {.lex_state = 1121}, - [3783] = {.lex_state = 464}, - [3784] = {.lex_state = 1084}, - [3785] = {.lex_state = 410}, - [3786] = {.lex_state = 542}, - [3787] = {.lex_state = 410}, - [3788] = {.lex_state = 404}, - [3789] = {.lex_state = 1131}, - [3790] = {.lex_state = 464}, - [3791] = {.lex_state = 1131}, - [3792] = {.lex_state = 486}, - [3793] = {.lex_state = 487}, - [3794] = {.lex_state = 534}, - [3795] = {.lex_state = 1123}, - [3796] = {.lex_state = 404}, - [3797] = {.lex_state = 486}, - [3798] = {.lex_state = 404}, - [3799] = {.lex_state = 409}, - [3800] = {.lex_state = 523}, - [3801] = {.lex_state = 1084}, - [3802] = {.lex_state = 1125}, - [3803] = {.lex_state = 1123}, - [3804] = {.lex_state = 1121}, - [3805] = {.lex_state = 487}, - [3806] = {.lex_state = 486}, - [3807] = {.lex_state = 408}, - [3808] = {.lex_state = 1084}, - [3809] = {.lex_state = 515}, - [3810] = {.lex_state = 410}, - [3811] = {.lex_state = 481}, - [3812] = {.lex_state = 523}, - [3813] = {.lex_state = 488}, - [3814] = {.lex_state = 542}, - [3815] = {.lex_state = 1128}, - [3816] = {.lex_state = 1128}, - [3817] = {.lex_state = 402}, - [3818] = {.lex_state = 386}, - [3819] = {.lex_state = 411}, - [3820] = {.lex_state = 411}, - [3821] = {.lex_state = 543}, - [3822] = {.lex_state = 411}, - [3823] = {.lex_state = 411}, - [3824] = {.lex_state = 535}, - [3825] = {.lex_state = 1129}, - [3826] = {.lex_state = 1128}, - [3827] = {.lex_state = 1128}, - [3828] = {.lex_state = 1128}, - [3829] = {.lex_state = 543}, - [3830] = {.lex_state = 538}, - [3831] = {.lex_state = 543}, - [3832] = {.lex_state = 538}, - [3833] = {.lex_state = 507}, - [3834] = {.lex_state = 512}, - [3835] = {.lex_state = 543}, - [3836] = {.lex_state = 543}, - [3837] = {.lex_state = 538}, - [3838] = {.lex_state = 538}, - [3839] = {.lex_state = 405}, - [3840] = {.lex_state = 538}, - [3841] = {.lex_state = 1129}, - [3842] = {.lex_state = 1129}, - [3843] = {.lex_state = 1129}, - [3844] = {.lex_state = 1084}, - [3845] = {.lex_state = 1084}, - [3846] = {.lex_state = 405}, - [3847] = {.lex_state = 489}, - [3848] = {.lex_state = 489}, - [3849] = {.lex_state = 489}, - [3850] = {.lex_state = 405}, - [3851] = {.lex_state = 405}, - [3852] = {.lex_state = 405}, - [3853] = {.lex_state = 405}, - [3854] = {.lex_state = 405}, - [3855] = {.lex_state = 516}, - [3856] = {.lex_state = 516}, - [3857] = {.lex_state = 516}, - [3858] = {.lex_state = 120}, - [3859] = {.lex_state = 473}, - [3860] = {.lex_state = 543}, - [3861] = {.lex_state = 543}, - [3862] = {.lex_state = 1134}, - [3863] = {.lex_state = 462}, - [3864] = {.lex_state = 538}, - [3865] = {.lex_state = 462}, - [3866] = {.lex_state = 538}, - [3867] = {.lex_state = 538}, - [3868] = {.lex_state = 538}, - [3869] = {.lex_state = 543}, - [3870] = {.lex_state = 543}, - [3871] = {.lex_state = 543}, - [3872] = {.lex_state = 543}, - [3873] = {.lex_state = 401}, - [3874] = {.lex_state = 462}, - [3875] = {.lex_state = 462}, - [3876] = {.lex_state = 463}, - [3877] = {.lex_state = 1131}, - [3878] = {.lex_state = 1131}, - [3879] = {.lex_state = 387}, - [3880] = {.lex_state = 387}, - [3881] = {.lex_state = 387}, - [3882] = {.lex_state = 1131}, - [3883] = {.lex_state = 1131}, - [3884] = {.lex_state = 1131}, - [3885] = {.lex_state = 411}, - [3886] = {.lex_state = 411}, - [3887] = {.lex_state = 411}, - [3888] = {.lex_state = 1084}, - [3889] = {.lex_state = 1084}, - [3890] = {.lex_state = 506}, - [3891] = {.lex_state = 536}, - [3892] = {.lex_state = 536}, - [3893] = {.lex_state = 536}, - [3894] = {.lex_state = 387}, - [3895] = {.lex_state = 536}, - [3896] = {.lex_state = 543}, - [3897] = {.lex_state = 538}, - [3898] = {.lex_state = 538}, - [3899] = {.lex_state = 543}, - [3900] = {.lex_state = 543}, - [3901] = {.lex_state = 573}, - [3902] = {.lex_state = 543}, - [3903] = {.lex_state = 1129}, - [3904] = {.lex_state = 577}, - [3905] = {.lex_state = 537}, - [3906] = {.lex_state = 537}, - [3907] = {.lex_state = 577}, - [3908] = {.lex_state = 509}, - [3909] = {.lex_state = 10}, - [3910] = {.lex_state = 1084}, - [3911] = {.lex_state = 1084}, - [3912] = {.lex_state = 1134}, - [3913] = {.lex_state = 10}, - [3914] = {.lex_state = 517}, - [3915] = {.lex_state = 577}, - [3916] = {.lex_state = 577}, - [3917] = {.lex_state = 1084}, - [3918] = {.lex_state = 10}, - [3919] = {.lex_state = 4729}, - [3920] = {.lex_state = 517}, - [3921] = {.lex_state = 517}, - [3922] = {.lex_state = 403}, - [3923] = {.lex_state = 517}, - [3924] = {.lex_state = 403}, - [3925] = {.lex_state = 128}, - [3926] = {.lex_state = 383}, - [3927] = {.lex_state = 403}, - [3928] = {.lex_state = 403}, - [3929] = {.lex_state = 193}, - [3930] = {.lex_state = 517}, - [3931] = {.lex_state = 121}, - [3932] = {.lex_state = 512}, - [3933] = {.lex_state = 517}, - [3934] = {.lex_state = 121}, - [3935] = {.lex_state = 512}, - [3936] = {.lex_state = 121}, - [3937] = {.lex_state = 512}, - [3938] = {.lex_state = 512}, - [3939] = {.lex_state = 504}, - [3940] = {.lex_state = 474}, - [3941] = {.lex_state = 474}, - [3942] = {.lex_state = 474}, - [3943] = {.lex_state = 512}, - [3944] = {.lex_state = 574}, - [3945] = {.lex_state = 517}, - [3946] = {.lex_state = 1137}, - [3947] = {.lex_state = 1137}, - [3948] = {.lex_state = 512}, - [3949] = {.lex_state = 1137}, - [3950] = {.lex_state = 574}, - [3951] = {.lex_state = 123}, - [3952] = {.lex_state = 517}, - [3953] = {.lex_state = 574}, - [3954] = {.lex_state = 574}, - [3955] = {.lex_state = 539}, - [3956] = {.lex_state = 539}, - [3957] = {.lex_state = 512}, - [3958] = {.lex_state = 1129}, - [3959] = {.lex_state = 121}, - [3960] = {.lex_state = 1129}, - [3961] = {.lex_state = 517}, - [3962] = {.lex_state = 1084}, - [3963] = {.lex_state = 537}, - [3964] = {.lex_state = 517}, - [3965] = {.lex_state = 512}, - [3966] = {.lex_state = 464}, - [3967] = {.lex_state = 464}, - [3968] = {.lex_state = 525}, - [3969] = {.lex_state = 388}, - [3970] = {.lex_state = 517}, - [3971] = {.lex_state = 2607}, - [3972] = {.lex_state = 192}, - [3973] = {.lex_state = 517}, - [3974] = {.lex_state = 517}, - [3975] = {.lex_state = 527}, - [3976] = {.lex_state = 574}, - [3977] = {.lex_state = 1137}, - [3978] = {.lex_state = 388}, - [3979] = {.lex_state = 388}, - [3980] = {.lex_state = 388}, - [3981] = {.lex_state = 512}, - [3982] = {.lex_state = 1084}, - [3983] = {.lex_state = 504}, - [3984] = {.lex_state = 403}, - [3985] = {.lex_state = 388}, - [3986] = {.lex_state = 504}, - [3987] = {.lex_state = 512}, - [3988] = {.lex_state = 1207}, - [3989] = {.lex_state = 540}, - [3990] = {.lex_state = 508}, - [3991] = {.lex_state = 512}, - [3992] = {.lex_state = 1084}, - [3993] = {.lex_state = 517}, - [3994] = {.lex_state = 539}, - [3995] = {.lex_state = 539}, - [3996] = {.lex_state = 510}, - [3997] = {.lex_state = 510}, - [3998] = {.lex_state = 504}, - [3999] = {.lex_state = 537}, - [4000] = {.lex_state = 537}, - [4001] = {.lex_state = 510}, - [4002] = {.lex_state = 537}, - [4003] = {.lex_state = 577}, - [4004] = {.lex_state = 388}, - [4005] = {.lex_state = 510}, - [4006] = {.lex_state = 403}, - [4007] = {.lex_state = 10}, - [4008] = {.lex_state = 360}, - [4009] = {.lex_state = 512}, - [4010] = {.lex_state = 1084}, - [4011] = {.lex_state = 575}, - [4012] = {.lex_state = 388}, - [4013] = {.lex_state = 10}, - [4014] = {.lex_state = 517}, - [4015] = {.lex_state = 10}, - [4016] = {.lex_state = 537}, - [4017] = {.lex_state = 360}, - [4018] = {.lex_state = 464}, - [4019] = {.lex_state = 530}, - [4020] = {.lex_state = 122}, - [4021] = {.lex_state = 538}, - [4022] = {.lex_state = 576}, - [4023] = {.lex_state = 1083}, - [4024] = {.lex_state = 475}, - [4025] = {.lex_state = 475}, - [4026] = {.lex_state = 475}, - [4027] = {.lex_state = 576}, - [4028] = {.lex_state = 576}, - [4029] = {.lex_state = 491}, - [4030] = {.lex_state = 1138}, - [4031] = {.lex_state = 191}, - [4032] = {.lex_state = 511}, - [4033] = {.lex_state = 122}, - [4034] = {.lex_state = 513}, - [4035] = {.lex_state = 513}, - [4036] = {.lex_state = 472}, - [4037] = {.lex_state = 1137}, - [4038] = {.lex_state = 472}, - [4039] = {.lex_state = 472}, - [4040] = {.lex_state = 472}, - [4041] = {.lex_state = 530}, - [4042] = {.lex_state = 475}, - [4043] = {.lex_state = 475}, - [4044] = {.lex_state = 530}, - [4045] = {.lex_state = 192}, - [4046] = {.lex_state = 475}, - [4047] = {.lex_state = 122}, - [4048] = {.lex_state = 1138}, - [4049] = {.lex_state = 129}, - [4050] = {.lex_state = 576}, - [4051] = {.lex_state = 532}, - [4052] = {.lex_state = 532}, - [4053] = {.lex_state = 493}, - [4054] = {.lex_state = 514}, - [4055] = {.lex_state = 532}, - [4056] = {.lex_state = 1137}, - [4057] = {.lex_state = 124}, - [4058] = {.lex_state = 1137}, - [4059] = {.lex_state = 475}, - [4060] = {.lex_state = 403}, - [4061] = {.lex_state = 192}, - [4062] = {.lex_state = 513}, - [4063] = {.lex_state = 384}, - [4064] = {.lex_state = 1084}, - [4065] = {.lex_state = 129}, - [4066] = {.lex_state = 532}, - [4067] = {.lex_state = 532}, - [4068] = {.lex_state = 532}, - [4069] = {.lex_state = 505}, - [4070] = {.lex_state = 1207}, - [4071] = {.lex_state = 513}, - [4072] = {.lex_state = 526}, - [4073] = {.lex_state = 129}, - [4074] = {.lex_state = 403}, - [4075] = {.lex_state = 403}, - [4076] = {.lex_state = 403}, - [4077] = {.lex_state = 403}, - [4078] = {.lex_state = 403}, - [4079] = {.lex_state = 403}, - [4080] = {.lex_state = 532}, - [4081] = {.lex_state = 191}, - [4082] = {.lex_state = 1138}, - [4083] = {.lex_state = 384}, - [4084] = {.lex_state = 384}, - [4085] = {.lex_state = 2607}, - [4086] = {.lex_state = 1138}, - [4087] = {.lex_state = 1210}, - [4088] = {.lex_state = 1210}, - [4089] = {.lex_state = 1138}, - [4090] = {.lex_state = 1210}, - [4091] = {.lex_state = 384}, - [4092] = {.lex_state = 384}, - [4093] = {.lex_state = 244}, - [4094] = {.lex_state = 505}, - [4095] = {.lex_state = 191}, - [4096] = {.lex_state = 505}, - [4097] = {.lex_state = 1043}, - [4098] = {.lex_state = 1170}, - [4099] = {.lex_state = 1170}, - [4100] = {.lex_state = 1170}, - [4101] = {.lex_state = 505}, - [4102] = {.lex_state = 1170}, - [4103] = {.lex_state = 528}, - [4104] = {.lex_state = 511}, - [4105] = {.lex_state = 511}, - [4106] = {.lex_state = 511}, - [4107] = {.lex_state = 1084}, - [4108] = {.lex_state = 131}, - [4109] = {.lex_state = 2608}, - [4110] = {.lex_state = 191}, - [4111] = {.lex_state = 1137}, - [4112] = {.lex_state = 475}, - [4113] = {.lex_state = 129}, - [4114] = {.lex_state = 124}, - [4115] = {.lex_state = 505}, - [4116] = {.lex_state = 511}, - [4117] = {.lex_state = 494}, - [4118] = {.lex_state = 1210}, - [4119] = {.lex_state = 475}, - [4120] = {.lex_state = 124}, - [4121] = {.lex_state = 361}, - [4122] = {.lex_state = 533}, - [4123] = {.lex_state = 529}, - [4124] = {.lex_state = 361}, - [4125] = {.lex_state = 532}, - [4126] = {.lex_state = 532}, - [4127] = {.lex_state = 532}, - [4128] = {.lex_state = 532}, - [4129] = {.lex_state = 532}, - [4130] = {.lex_state = 1044}, - [4131] = {.lex_state = 532}, - [4132] = {.lex_state = 532}, - [4133] = {.lex_state = 10}, - [4134] = {.lex_state = 191}, - [4135] = {.lex_state = 1084}, - [4136] = {.lex_state = 505}, - [4137] = {.lex_state = 475}, - [4138] = {.lex_state = 1084}, - [4139] = {.lex_state = 1084}, - [4140] = {.lex_state = 15}, - [4141] = {.lex_state = 531}, - [4142] = {.lex_state = 511}, - [4143] = {.lex_state = 505}, - [4144] = {.lex_state = 124}, - [4145] = {.lex_state = 403}, - [4146] = {.lex_state = 10}, - [4147] = {.lex_state = 1170}, - [4148] = {.lex_state = 576}, - [4149] = {.lex_state = 538}, - [4150] = {.lex_state = 511}, - [4151] = {.lex_state = 192}, - [4152] = {.lex_state = 538}, - [4153] = {.lex_state = 475}, - [4154] = {.lex_state = 122}, - [4155] = {.lex_state = 524}, - [4156] = {.lex_state = 475}, - [4157] = {.lex_state = 532}, - [4158] = {.lex_state = 191}, - [4159] = {.lex_state = 490}, - [4160] = {.lex_state = 324}, - [4161] = {.lex_state = 194}, - [4162] = {.lex_state = 1049}, - [4163] = {.lex_state = 191}, - [4164] = {.lex_state = 1138}, - [4165] = {.lex_state = 512}, - [4166] = {.lex_state = 499}, - [4167] = {.lex_state = 1083}, - [4168] = {.lex_state = 499}, - [4169] = {.lex_state = 1084}, - [4170] = {.lex_state = 130}, - [4171] = {.lex_state = 512}, - [4172] = {.lex_state = 499}, - [4173] = {.lex_state = 512}, - [4174] = {.lex_state = 1138}, - [4175] = {.lex_state = 532}, - [4176] = {.lex_state = 532}, - [4177] = {.lex_state = 465}, - [4178] = {.lex_state = 532}, - [4179] = {.lex_state = 532}, - [4180] = {.lex_state = 492}, - [4181] = {.lex_state = 1170}, - [4182] = {.lex_state = 532}, - [4183] = {.lex_state = 1170}, - [4184] = {.lex_state = 532}, - [4185] = {.lex_state = 16}, - [4186] = {.lex_state = 1170}, - [4187] = {.lex_state = 1170}, - [4188] = {.lex_state = 245}, - [4189] = {.lex_state = 132}, - [4190] = {.lex_state = 532}, - [4191] = {.lex_state = 132}, - [4192] = {.lex_state = 532}, - [4193] = {.lex_state = 132}, - [4194] = {.lex_state = 1143}, - [4195] = {.lex_state = 532}, - [4196] = {.lex_state = 16}, - [4197] = {.lex_state = 1049}, - [4198] = {.lex_state = 125}, - [4199] = {.lex_state = 532}, - [4200] = {.lex_state = 16}, - [4201] = {.lex_state = 532}, - [4202] = {.lex_state = 194}, - [4203] = {.lex_state = 125}, - [4204] = {.lex_state = 1049}, - [4205] = {.lex_state = 1170}, - [4206] = {.lex_state = 532}, - [4207] = {.lex_state = 125}, - [4208] = {.lex_state = 1049}, - [4209] = {.lex_state = 364}, - [4210] = {.lex_state = 470}, - [4211] = {.lex_state = 470}, - [4212] = {.lex_state = 1083}, - [4213] = {.lex_state = 1045}, - [4214] = {.lex_state = 532}, - [4215] = {.lex_state = 532}, - [4216] = {.lex_state = 532}, - [4217] = {.lex_state = 4730}, - [4218] = {.lex_state = 532}, - [4219] = {.lex_state = 532}, - [4220] = {.lex_state = 532}, - [4221] = {.lex_state = 532}, - [4222] = {.lex_state = 532}, - [4223] = {.lex_state = 532}, - [4224] = {.lex_state = 532}, - [4225] = {.lex_state = 364}, - [4226] = {.lex_state = 532}, - [4227] = {.lex_state = 470}, - [4228] = {.lex_state = 470}, - [4229] = {.lex_state = 532}, - [4230] = {.lex_state = 532}, - [4231] = {.lex_state = 532}, - [4232] = {.lex_state = 532}, - [4233] = {.lex_state = 532}, - [4234] = {.lex_state = 16}, - [4235] = {.lex_state = 114}, - [4236] = {.lex_state = 1084}, - [4237] = {.lex_state = 132}, - [4238] = {.lex_state = 500}, - [4239] = {.lex_state = 1194}, - [4240] = {.lex_state = 246}, - [4241] = {.lex_state = 578}, - [4242] = {.lex_state = 532}, - [4243] = {.lex_state = 324}, - [4244] = {.lex_state = 532}, - [4245] = {.lex_state = 532}, - [4246] = {.lex_state = 532}, - [4247] = {.lex_state = 384}, - [4248] = {.lex_state = 578}, - [4249] = {.lex_state = 471}, - [4250] = {.lex_state = 1048}, - [4251] = {.lex_state = 532}, - [4252] = {.lex_state = 532}, - [4253] = {.lex_state = 497}, - [4254] = {.lex_state = 384}, - [4255] = {.lex_state = 578}, - [4256] = {.lex_state = 578}, - [4257] = {.lex_state = 1211}, - [4258] = {.lex_state = 532}, - [4259] = {.lex_state = 1138}, - [4260] = {.lex_state = 1045}, - [4261] = {.lex_state = 1210}, - [4262] = {.lex_state = 1210}, - [4263] = {.lex_state = 532}, - [4264] = {.lex_state = 1210}, - [4265] = {.lex_state = 532}, - [4266] = {.lex_state = 384}, - [4267] = {.lex_state = 2608}, - [4268] = {.lex_state = 532}, - [4269] = {.lex_state = 1138}, - [4270] = {.lex_state = 194}, - [4271] = {.lex_state = 384}, - [4272] = {.lex_state = 1211}, - [4273] = {.lex_state = 1138}, - [4274] = {.lex_state = 1211}, - [4275] = {.lex_state = 1211}, - [4276] = {.lex_state = 532}, - [4277] = {.lex_state = 1211}, - [4278] = {.lex_state = 532}, - [4279] = {.lex_state = 578}, - [4280] = {.lex_state = 345}, - [4281] = {.lex_state = 532}, - [4282] = {.lex_state = 532}, - [4283] = {.lex_state = 503}, - [4284] = {.lex_state = 266}, - [4285] = {.lex_state = 1045}, - [4286] = {.lex_state = 1044}, - [4287] = {.lex_state = 1045}, - [4288] = {.lex_state = 532}, - [4289] = {.lex_state = 532}, - [4290] = {.lex_state = 1170}, - [4291] = {.lex_state = 532}, - [4292] = {.lex_state = 1084}, - [4293] = {.lex_state = 345}, - [4294] = {.lex_state = 1210}, - [4295] = {.lex_state = 532}, - [4296] = {.lex_state = 194}, - [4297] = {.lex_state = 191}, - [4298] = {.lex_state = 191}, - [4299] = {.lex_state = 532}, - [4300] = {.lex_state = 1043}, - [4301] = {.lex_state = 1170}, - [4302] = {.lex_state = 345}, - [4303] = {.lex_state = 495}, - [4304] = {.lex_state = 345}, - [4305] = {.lex_state = 345}, - [4306] = {.lex_state = 130}, - [4307] = {.lex_state = 1084}, - [4308] = {.lex_state = 1084}, - [4309] = {.lex_state = 1170}, - [4310] = {.lex_state = 532}, - [4311] = {.lex_state = 130}, - [4312] = {.lex_state = 1083}, - [4313] = {.lex_state = 1170}, - [4314] = {.lex_state = 130}, - [4315] = {.lex_state = 532}, - [4316] = {.lex_state = 532}, - [4317] = {.lex_state = 125}, - [4318] = {.lex_state = 1170}, - [4319] = {.lex_state = 532}, - [4320] = {.lex_state = 1170}, - [4321] = {.lex_state = 468}, - [4322] = {.lex_state = 364}, - [4323] = {.lex_state = 326}, - [4324] = {.lex_state = 472}, - [4325] = {.lex_state = 732}, - [4326] = {.lex_state = 364}, - [4327] = {.lex_state = 472}, - [4328] = {.lex_state = 472}, - [4329] = {.lex_state = 364}, - [4330] = {.lex_state = 732}, - [4331] = {.lex_state = 115}, - [4332] = {.lex_state = 1170}, - [4333] = {.lex_state = 17}, - [4334] = {.lex_state = 1144}, - [4335] = {.lex_state = 466}, - [4336] = {.lex_state = 1046}, - [4337] = {.lex_state = 115}, - [4338] = {.lex_state = 345}, - [4339] = {.lex_state = 1083}, - [4340] = {.lex_state = 115}, - [4341] = {.lex_state = 1192}, - [4342] = {.lex_state = 1043}, - [4343] = {.lex_state = 364}, - [4344] = {.lex_state = 1192}, - [4345] = {.lex_state = 364}, - [4346] = {.lex_state = 1192}, - [4347] = {.lex_state = 364}, - [4348] = {.lex_state = 268}, - [4349] = {.lex_state = 364}, - [4350] = {.lex_state = 1211}, - [4351] = {.lex_state = 364}, - [4352] = {.lex_state = 326}, - [4353] = {.lex_state = 364}, - [4354] = {.lex_state = 1048}, - [4355] = {.lex_state = 1170}, - [4356] = {.lex_state = 364}, - [4357] = {.lex_state = 364}, - [4358] = {.lex_state = 364}, - [4359] = {.lex_state = 1050}, - [4360] = {.lex_state = 1211}, - [4361] = {.lex_state = 1170}, - [4362] = {.lex_state = 364}, - [4363] = {.lex_state = 1050}, - [4364] = {.lex_state = 364}, - [4365] = {.lex_state = 364}, - [4366] = {.lex_state = 364}, - [4367] = {.lex_state = 364}, - [4368] = {.lex_state = 364}, - [4369] = {.lex_state = 1050}, - [4370] = {.lex_state = 364}, - [4371] = {.lex_state = 364}, - [4372] = {.lex_state = 1170}, - [4373] = {.lex_state = 364}, - [4374] = {.lex_state = 364}, - [4375] = {.lex_state = 267}, - [4376] = {.lex_state = 364}, - [4377] = {.lex_state = 1211}, - [4378] = {.lex_state = 1211}, - [4379] = {.lex_state = 1211}, - [4380] = {.lex_state = 325}, - [4381] = {.lex_state = 325}, - [4382] = {.lex_state = 133}, - [4383] = {.lex_state = 1084}, - [4384] = {.lex_state = 364}, - [4385] = {.lex_state = 364}, - [4386] = {.lex_state = 364}, - [4387] = {.lex_state = 1170}, - [4388] = {.lex_state = 133}, - [4389] = {.lex_state = 133}, - [4390] = {.lex_state = 1147}, - [4391] = {.lex_state = 1147}, - [4392] = {.lex_state = 364}, - [4393] = {.lex_state = 364}, - [4394] = {.lex_state = 1147}, - [4395] = {.lex_state = 364}, - [4396] = {.lex_state = 1147}, - [4397] = {.lex_state = 364}, - [4398] = {.lex_state = 17}, - [4399] = {.lex_state = 1083}, - [4400] = {.lex_state = 364}, - [4401] = {.lex_state = 364}, - [4402] = {.lex_state = 364}, - [4403] = {.lex_state = 364}, - [4404] = {.lex_state = 364}, - [4405] = {.lex_state = 364}, - [4406] = {.lex_state = 364}, - [4407] = {.lex_state = 364}, - [4408] = {.lex_state = 364}, - [4409] = {.lex_state = 364}, - [4410] = {.lex_state = 364}, - [4411] = {.lex_state = 17}, - [4412] = {.lex_state = 1101}, - [4413] = {.lex_state = 364}, - [4414] = {.lex_state = 1170}, - [4415] = {.lex_state = 364}, - [4416] = {.lex_state = 325}, - [4417] = {.lex_state = 364}, - [4418] = {.lex_state = 327}, - [4419] = {.lex_state = 364}, - [4420] = {.lex_state = 364}, - [4421] = {.lex_state = 364}, - [4422] = {.lex_state = 364}, - [4423] = {.lex_state = 364}, - [4424] = {.lex_state = 364}, - [4425] = {.lex_state = 364}, - [4426] = {.lex_state = 364}, - [4427] = {.lex_state = 364}, - [4428] = {.lex_state = 1083}, - [4429] = {.lex_state = 364}, - [4430] = {.lex_state = 1216}, - [4431] = {.lex_state = 1050}, - [4432] = {.lex_state = 1049}, - [4433] = {.lex_state = 364}, - [4434] = {.lex_state = 364}, - [4435] = {.lex_state = 1046}, - [4436] = {.lex_state = 364}, - [4437] = {.lex_state = 1051}, - [4438] = {.lex_state = 17}, - [4439] = {.lex_state = 364}, - [4440] = {.lex_state = 345}, - [4441] = {.lex_state = 1049}, - [4442] = {.lex_state = 364}, - [4443] = {.lex_state = 185}, - [4444] = {.lex_state = 364}, - [4445] = {.lex_state = 325}, - [4446] = {.lex_state = 325}, - [4447] = {.lex_state = 1049}, - [4448] = {.lex_state = 732}, - [4449] = {.lex_state = 1046}, - [4450] = {.lex_state = 466}, - [4451] = {.lex_state = 1143}, - [4452] = {.lex_state = 185}, - [4453] = {.lex_state = 1051}, - [4454] = {.lex_state = 364}, - [4455] = {.lex_state = 1049}, - [4456] = {.lex_state = 364}, - [4457] = {.lex_state = 191}, - [4458] = {.lex_state = 1083}, - [4459] = {.lex_state = 17}, - [4460] = {.lex_state = 1051}, - [4461] = {.lex_state = 1045}, - [4462] = {.lex_state = 325}, - [4463] = {.lex_state = 360}, - [4464] = {.lex_state = 364}, - [4465] = {.lex_state = 191}, - [4466] = {.lex_state = 21}, - [4467] = {.lex_state = 364}, - [4468] = {.lex_state = 1046}, - [4469] = {.lex_state = 185}, - [4470] = {.lex_state = 247}, - [4471] = {.lex_state = 191}, - [4472] = {.lex_state = 1046}, - [4473] = {.lex_state = 364}, - [4474] = {.lex_state = 1083}, - [4475] = {.lex_state = 1051}, - [4476] = {.lex_state = 364}, - [4477] = {.lex_state = 1045}, - [4478] = {.lex_state = 1194}, - [4479] = {.lex_state = 1051}, - [4480] = {.lex_state = 364}, - [4481] = {.lex_state = 364}, - [4482] = {.lex_state = 364}, - [4483] = {.lex_state = 1045}, - [4484] = {.lex_state = 133}, - [4485] = {.lex_state = 115}, - [4486] = {.lex_state = 185}, - [4487] = {.lex_state = 364}, - [4488] = {.lex_state = 1083}, - [4489] = {.lex_state = 364}, - [4490] = {.lex_state = 364}, - [4491] = {.lex_state = 1045}, - [4492] = {.lex_state = 468}, - [4493] = {.lex_state = 1170}, - [4494] = {.lex_state = 364}, - [4495] = {.lex_state = 1083}, - [4496] = {.lex_state = 1102}, - [4497] = {.lex_state = 364}, - [4498] = {.lex_state = 732}, - [4499] = {.lex_state = 364}, - [4500] = {.lex_state = 364}, - [4501] = {.lex_state = 364}, - [4502] = {.lex_state = 1084}, - [4503] = {.lex_state = 468}, - [4504] = {.lex_state = 360}, - [4505] = {.lex_state = 185}, - [4506] = {.lex_state = 364}, - [4507] = {.lex_state = 364}, - [4508] = {.lex_state = 364}, - [4509] = {.lex_state = 116}, - [4510] = {.lex_state = 195}, - [4511] = {.lex_state = 1192}, - [4512] = {.lex_state = 469}, - [4513] = {.lex_state = 1148}, - [4514] = {.lex_state = 469}, - [4515] = {.lex_state = 361}, - [4516] = {.lex_state = 328}, - [4517] = {.lex_state = 1148}, - [4518] = {.lex_state = 1043}, - [4519] = {.lex_state = 1192}, - [4520] = {.lex_state = 116}, - [4521] = {.lex_state = 185}, - [4522] = {.lex_state = 185}, - [4523] = {.lex_state = 1192}, - [4524] = {.lex_state = 469}, - [4525] = {.lex_state = 134}, - [4526] = {.lex_state = 364}, - [4527] = {.lex_state = 1051}, - [4528] = {.lex_state = 1188}, - [4529] = {.lex_state = 1046}, - [4530] = {.lex_state = 1188}, - [4531] = {.lex_state = 116}, - [4532] = {.lex_state = 15}, - [4533] = {.lex_state = 1216}, - [4534] = {.lex_state = 1144}, - [4535] = {.lex_state = 1050}, - [4536] = {.lex_state = 1043}, - [4537] = {.lex_state = 1192}, - [4538] = {.lex_state = 1051}, - [4539] = {.lex_state = 1147}, - [4540] = {.lex_state = 1192}, - [4541] = {.lex_state = 1044}, - [4542] = {.lex_state = 1051}, - [4543] = {.lex_state = 15}, - [4544] = {.lex_state = 469}, - [4545] = {.lex_state = 469}, - [4546] = {.lex_state = 1147}, - [4547] = {.lex_state = 1050}, - [4548] = {.lex_state = 1192}, - [4549] = {.lex_state = 469}, - [4550] = {.lex_state = 469}, - [4551] = {.lex_state = 1148}, - [4552] = {.lex_state = 195}, - [4553] = {.lex_state = 1147}, - [4554] = {.lex_state = 1083}, - [4555] = {.lex_state = 1052}, - [4556] = {.lex_state = 1050}, - [4557] = {.lex_state = 469}, - [4558] = {.lex_state = 1192}, - [4559] = {.lex_state = 1044}, - [4560] = {.lex_state = 1192}, - [4561] = {.lex_state = 1192}, - [4562] = {.lex_state = 469}, - [4563] = {.lex_state = 469}, - [4564] = {.lex_state = 15}, - [4565] = {.lex_state = 1220}, - [4566] = {.lex_state = 469}, - [4567] = {.lex_state = 469}, - [4568] = {.lex_state = 469}, - [4569] = {.lex_state = 1051}, - [4570] = {.lex_state = 191}, - [4571] = {.lex_state = 1192}, - [4572] = {.lex_state = 361}, - [4573] = {.lex_state = 1217}, - [4574] = {.lex_state = 1083}, - [4575] = {.lex_state = 361}, - [4576] = {.lex_state = 1083}, - [4577] = {.lex_state = 195}, - [4578] = {.lex_state = 1192}, - [4579] = {.lex_state = 1147}, - [4580] = {.lex_state = 469}, - [4581] = {.lex_state = 469}, - [4582] = {.lex_state = 469}, - [4583] = {.lex_state = 469}, - [4584] = {.lex_state = 469}, - [4585] = {.lex_state = 469}, - [4586] = {.lex_state = 469}, - [4587] = {.lex_state = 1192}, - [4588] = {.lex_state = 185}, - [4589] = {.lex_state = 1188}, - [4590] = {.lex_state = 22}, - [4591] = {.lex_state = 242}, - [4592] = {.lex_state = 1052}, - [4593] = {.lex_state = 195}, - [4594] = {.lex_state = 15}, - [4595] = {.lex_state = 469}, - [4596] = {.lex_state = 1044}, - [4597] = {.lex_state = 116}, - [4598] = {.lex_state = 269}, - [4599] = {.lex_state = 1148}, - [4600] = {.lex_state = 116}, - [4601] = {.lex_state = 195}, - [4602] = {.lex_state = 469}, - [4603] = {.lex_state = 1083}, - [4604] = {.lex_state = 1046}, - [4605] = {.lex_state = 1083}, - [4606] = {.lex_state = 1043}, - [4607] = {.lex_state = 195}, - [4608] = {.lex_state = 1083}, - [4609] = {.lex_state = 469}, - [4610] = {.lex_state = 328}, - [4611] = {.lex_state = 15}, - [4612] = {.lex_state = 1170}, - [4613] = {.lex_state = 1192}, - [4614] = {.lex_state = 1052}, - [4615] = {.lex_state = 1140}, - [4616] = {.lex_state = 1188}, - [4617] = {.lex_state = 329}, - [4618] = {.lex_state = 195}, - [4619] = {.lex_state = 1052}, - [4620] = {.lex_state = 1043}, - [4621] = {.lex_state = 146}, - [4622] = {.lex_state = 1043}, - [4623] = {.lex_state = 1046}, - [4624] = {.lex_state = 1107}, - [4625] = {.lex_state = 1192}, - [4626] = {.lex_state = 1083}, - [4627] = {.lex_state = 1108}, - [4628] = {.lex_state = 469}, - [4629] = {.lex_state = 1192}, - [4630] = {.lex_state = 1050}, - [4631] = {.lex_state = 328}, - [4632] = {.lex_state = 1052}, - [4633] = {.lex_state = 469}, - [4634] = {.lex_state = 1083}, - [4635] = {.lex_state = 1188}, - [4636] = {.lex_state = 469}, - [4637] = {.lex_state = 1046}, - [4638] = {.lex_state = 469}, - [4639] = {.lex_state = 1188}, - [4640] = {.lex_state = 1192}, - [4641] = {.lex_state = 1044}, - [4642] = {.lex_state = 330}, - [4643] = {.lex_state = 330}, - [4644] = {.lex_state = 1103}, - [4645] = {.lex_state = 1188}, - [4646] = {.lex_state = 1101}, - [4647] = {.lex_state = 195}, - [4648] = {.lex_state = 191}, - [4649] = {.lex_state = 1148}, - [4650] = {.lex_state = 361}, - [4651] = {.lex_state = 1148}, - [4652] = {.lex_state = 1170}, - [4653] = {.lex_state = 732}, - [4654] = {.lex_state = 195}, - [4655] = {.lex_state = 195}, - [4656] = {.lex_state = 1188}, - [4657] = {.lex_state = 330}, - [4658] = {.lex_state = 330}, - [4659] = {.lex_state = 330}, - [4660] = {.lex_state = 1148}, - [4661] = {.lex_state = 1046}, - [4662] = {.lex_state = 185}, - [4663] = {.lex_state = 1188}, - [4664] = {.lex_state = 191}, - [4665] = {.lex_state = 1170}, - [4666] = {.lex_state = 364}, - [4667] = {.lex_state = 469}, - [4668] = {.lex_state = 1220}, - [4669] = {.lex_state = 1220}, - [4670] = {.lex_state = 1188}, - [4671] = {.lex_state = 1220}, - [4672] = {.lex_state = 195}, - [4673] = {.lex_state = 191}, - [4674] = {.lex_state = 1043}, - [4675] = {.lex_state = 1224}, - [4676] = {.lex_state = 1044}, - [4677] = {.lex_state = 1051}, - [4678] = {.lex_state = 1102}, - [4679] = {.lex_state = 328}, - [4680] = {.lex_state = 1188}, - [4681] = {.lex_state = 1224}, - [4682] = {.lex_state = 1083}, - [4683] = {.lex_state = 151}, - [4684] = {.lex_state = 1192}, - [4685] = {.lex_state = 732}, - [4686] = {.lex_state = 1086}, - [4687] = {.lex_state = 1186}, - [4688] = {.lex_state = 1086}, - [4689] = {.lex_state = 1192}, - [4690] = {.lex_state = 1052}, - [4691] = {.lex_state = 1225}, - [4692] = {.lex_state = 1052}, - [4693] = {.lex_state = 1052}, - [4694] = {.lex_state = 1043}, - [4695] = {.lex_state = 154}, - [4696] = {.lex_state = 19}, - [4697] = {.lex_state = 19}, - [4698] = {.lex_state = 1083}, - [4699] = {.lex_state = 1192}, - [4700] = {.lex_state = 147}, - [4701] = {.lex_state = 1044}, - [4702] = {.lex_state = 1221}, - [4703] = {.lex_state = 138}, - [4704] = {.lex_state = 135}, - [4705] = {.lex_state = 1225}, - [4706] = {.lex_state = 135}, - [4707] = {.lex_state = 1103}, - [4708] = {.lex_state = 135}, - [4709] = {.lex_state = 1220}, - [4710] = {.lex_state = 1220}, - [4711] = {.lex_state = 1220}, - [4712] = {.lex_state = 195}, - [4713] = {.lex_state = 195}, - [4714] = {.lex_state = 1192}, - [4715] = {.lex_state = 1188}, - [4716] = {.lex_state = 1083}, - [4717] = {.lex_state = 1083}, - [4718] = {.lex_state = 1043}, - [4719] = {.lex_state = 477}, - [4720] = {.lex_state = 1117}, - [4721] = {.lex_state = 1221}, - [4722] = {.lex_state = 1109}, - [4723] = {.lex_state = 1090}, - [4724] = {.lex_state = 1090}, - [4725] = {.lex_state = 1221}, - [4726] = {.lex_state = 180}, - [4727] = {.lex_state = 1221}, - [4728] = {.lex_state = 1221}, - [4729] = {.lex_state = 180}, - [4730] = {.lex_state = 1044}, - [4731] = {.lex_state = 1217}, - [4732] = {.lex_state = 1221}, - [4733] = {.lex_state = 180}, - [4734] = {.lex_state = 185}, - [4735] = {.lex_state = 180}, - [4736] = {.lex_state = 477}, - [4737] = {.lex_state = 135}, - [4738] = {.lex_state = 1221}, - [4739] = {.lex_state = 3207}, - [4740] = {.lex_state = 1148}, - [4741] = {.lex_state = 1188}, - [4742] = {.lex_state = 1117}, - [4743] = {.lex_state = 1192}, - [4744] = {.lex_state = 1213}, - [4745] = {.lex_state = 1117}, - [4746] = {.lex_state = 1052}, - [4747] = {.lex_state = 185}, - [4748] = {.lex_state = 1188}, - [4749] = {.lex_state = 141}, - [4750] = {.lex_state = 1188}, - [4751] = {.lex_state = 151}, - [4752] = {.lex_state = 157}, - [4753] = {.lex_state = 1192}, - [4754] = {.lex_state = 185}, - [4755] = {.lex_state = 1083}, - [4756] = {.lex_state = 1148}, - [4757] = {.lex_state = 1192}, - [4758] = {.lex_state = 1192}, - [4759] = {.lex_state = 180}, - [4760] = {.lex_state = 1083}, - [4761] = {.lex_state = 1083}, - [4762] = {.lex_state = 1220}, - [4763] = {.lex_state = 1192}, - [4764] = {.lex_state = 1148}, - [4765] = {.lex_state = 19}, - [4766] = {.lex_state = 19}, - [4767] = {.lex_state = 1090}, - [4768] = {.lex_state = 1090}, - [4769] = {.lex_state = 195}, - [4770] = {.lex_state = 195}, - [4771] = {.lex_state = 1148}, - [4772] = {.lex_state = 1148}, - [4773] = {.lex_state = 1117}, - [4774] = {.lex_state = 1192}, - [4775] = {.lex_state = 1117}, - [4776] = {.lex_state = 331}, - [4777] = {.lex_state = 329}, - [4778] = {.lex_state = 732}, - [4779] = {.lex_state = 1108}, - [4780] = {.lex_state = 329}, - [4781] = {.lex_state = 1083}, - [4782] = {.lex_state = 732}, - [4783] = {.lex_state = 329}, - [4784] = {.lex_state = 185}, - [4785] = {.lex_state = 1083}, - [4786] = {.lex_state = 1192}, - [4787] = {.lex_state = 151}, - [4788] = {.lex_state = 1086}, - [4789] = {.lex_state = 1052}, - [4790] = {.lex_state = 1188}, - [4791] = {.lex_state = 1192}, - [4792] = {.lex_state = 1188}, - [4793] = {.lex_state = 1188}, - [4794] = {.lex_state = 1044}, - [4795] = {.lex_state = 1188}, - [4796] = {.lex_state = 1188}, - [4797] = {.lex_state = 1172}, - [4798] = {.lex_state = 1148}, - [4799] = {.lex_state = 1188}, - [4800] = {.lex_state = 1083}, - [4801] = {.lex_state = 262}, - [4802] = {.lex_state = 151}, - [4803] = {.lex_state = 1188}, - [4804] = {.lex_state = 1043}, - [4805] = {.lex_state = 1140}, - [4806] = {.lex_state = 1086}, - [4807] = {.lex_state = 1043}, - [4808] = {.lex_state = 1044}, - [4809] = {.lex_state = 1148}, - [4810] = {.lex_state = 1107}, - [4811] = {.lex_state = 1043}, - [4812] = {.lex_state = 1225}, - [4813] = {.lex_state = 1044}, - [4814] = {.lex_state = 1043}, - [4815] = {.lex_state = 1225}, - [4816] = {.lex_state = 1188}, - [4817] = {.lex_state = 1188}, - [4818] = {.lex_state = 1225}, - [4819] = {.lex_state = 1188}, - [4820] = {.lex_state = 1192}, - [4821] = {.lex_state = 1221}, - [4822] = {.lex_state = 1117}, - [4823] = {.lex_state = 1109}, - [4824] = {.lex_state = 1172}, - [4825] = {.lex_state = 162}, - [4826] = {.lex_state = 195}, - [4827] = {.lex_state = 148}, - [4828] = {.lex_state = 1083}, - [4829] = {.lex_state = 195}, - [4830] = {.lex_state = 139}, - [4831] = {.lex_state = 1172}, - [4832] = {.lex_state = 1117}, - [4833] = {.lex_state = 195}, - [4834] = {.lex_state = 1083}, - [4835] = {.lex_state = 332}, - [4836] = {.lex_state = 155}, - [4837] = {.lex_state = 142}, - [4838] = {.lex_state = 1043}, - [4839] = {.lex_state = 1083}, - [4840] = {.lex_state = 1172}, - [4841] = {.lex_state = 1225}, - [4842] = {.lex_state = 1044}, - [4843] = {.lex_state = 243}, - [4844] = {.lex_state = 1117}, - [4845] = {.lex_state = 202}, - [4846] = {.lex_state = 1188}, - [4847] = {.lex_state = 180}, - [4848] = {.lex_state = 180}, - [4849] = {.lex_state = 1044}, - [4850] = {.lex_state = 1221}, - [4851] = {.lex_state = 165}, - [4852] = {.lex_state = 191}, - [4853] = {.lex_state = 15}, - [4854] = {.lex_state = 365}, - [4855] = {.lex_state = 3207}, - [4856] = {.lex_state = 15}, - [4857] = {.lex_state = 1221}, - [4858] = {.lex_state = 136}, - [4859] = {.lex_state = 155}, - [4860] = {.lex_state = 142}, - [4861] = {.lex_state = 158}, - [4862] = {.lex_state = 1183}, - [4863] = {.lex_state = 142}, - [4864] = {.lex_state = 158}, - [4865] = {.lex_state = 155}, - [4866] = {.lex_state = 1043}, - [4867] = {.lex_state = 202}, - [4868] = {.lex_state = 158}, - [4869] = {.lex_state = 1188}, - [4870] = {.lex_state = 15}, - [4871] = {.lex_state = 1221}, - [4872] = {.lex_state = 1117}, - [4873] = {.lex_state = 1090}, - [4874] = {.lex_state = 1090}, - [4875] = {.lex_state = 142}, - [4876] = {.lex_state = 732}, - [4877] = {.lex_state = 185}, - [4878] = {.lex_state = 332}, - [4879] = {.lex_state = 1117}, - [4880] = {.lex_state = 732}, - [4881] = {.lex_state = 332}, - [4882] = {.lex_state = 732}, - [4883] = {.lex_state = 148}, - [4884] = {.lex_state = 332}, - [4885] = {.lex_state = 1225}, - [4886] = {.lex_state = 1083}, - [4887] = {.lex_state = 185}, - [4888] = {.lex_state = 1172}, - [4889] = {.lex_state = 148}, - [4890] = {.lex_state = 1221}, - [4891] = {.lex_state = 1083}, - [4892] = {.lex_state = 148}, - [4893] = {.lex_state = 155}, - [4894] = {.lex_state = 1090}, - [4895] = {.lex_state = 1090}, - [4896] = {.lex_state = 732}, - [4897] = {.lex_state = 1186}, - [4898] = {.lex_state = 1086}, - [4899] = {.lex_state = 1044}, - [4900] = {.lex_state = 1221}, - [4901] = {.lex_state = 202}, - [4902] = {.lex_state = 1221}, - [4903] = {.lex_state = 139}, - [4904] = {.lex_state = 1188}, + [1987] = {.lex_state = 1143}, + [1988] = {.lex_state = 1130}, + [1989] = {.lex_state = 297}, + [1990] = {.lex_state = 297}, + [1991] = {.lex_state = 297}, + [1992] = {.lex_state = 297}, + [1993] = {.lex_state = 309}, + [1994] = {.lex_state = 297}, + [1995] = {.lex_state = 297}, + [1996] = {.lex_state = 433}, + [1997] = {.lex_state = 297}, + [1998] = {.lex_state = 1143}, + [1999] = {.lex_state = 1143}, + [2000] = {.lex_state = 309}, + [2001] = {.lex_state = 1051}, + [2002] = {.lex_state = 1142}, + [2003] = {.lex_state = 297}, + [2004] = {.lex_state = 309}, + [2005] = {.lex_state = 309}, + [2006] = {.lex_state = 1142}, + [2007] = {.lex_state = 309}, + [2008] = {.lex_state = 433}, + [2009] = {.lex_state = 309}, + [2010] = {.lex_state = 1143}, + [2011] = {.lex_state = 1143}, + [2012] = {.lex_state = 1142}, + [2013] = {.lex_state = 309}, + [2014] = {.lex_state = 297}, + [2015] = {.lex_state = 1143}, + [2016] = {.lex_state = 309}, + [2017] = {.lex_state = 1060}, + [2018] = {.lex_state = 297}, + [2019] = {.lex_state = 477}, + [2020] = {.lex_state = 1143}, + [2021] = {.lex_state = 309}, + [2022] = {.lex_state = 297}, + [2023] = {.lex_state = 1142}, + [2024] = {.lex_state = 309}, + [2025] = {.lex_state = 309}, + [2026] = {.lex_state = 1060}, + [2027] = {.lex_state = 1143}, + [2028] = {.lex_state = 309}, + [2029] = {.lex_state = 309}, + [2030] = {.lex_state = 1142}, + [2031] = {.lex_state = 1130}, + [2032] = {.lex_state = 1130}, + [2033] = {.lex_state = 1130}, + [2034] = {.lex_state = 1142}, + [2035] = {.lex_state = 1142}, + [2036] = {.lex_state = 1142}, + [2037] = {.lex_state = 297}, + [2038] = {.lex_state = 309}, + [2039] = {.lex_state = 309}, + [2040] = {.lex_state = 1130}, + [2041] = {.lex_state = 1142}, + [2042] = {.lex_state = 1143}, + [2043] = {.lex_state = 1143}, + [2044] = {.lex_state = 433}, + [2045] = {.lex_state = 477}, + [2046] = {.lex_state = 477}, + [2047] = {.lex_state = 433}, + [2048] = {.lex_state = 477}, + [2049] = {.lex_state = 477}, + [2050] = {.lex_state = 1142}, + [2051] = {.lex_state = 309}, + [2052] = {.lex_state = 433}, + [2053] = {.lex_state = 309}, + [2054] = {.lex_state = 1143}, + [2055] = {.lex_state = 309}, + [2056] = {.lex_state = 297}, + [2057] = {.lex_state = 1051}, + [2058] = {.lex_state = 297}, + [2059] = {.lex_state = 1143}, + [2060] = {.lex_state = 1142}, + [2061] = {.lex_state = 309}, + [2062] = {.lex_state = 1143}, + [2063] = {.lex_state = 1130}, + [2064] = {.lex_state = 309}, + [2065] = {.lex_state = 1142}, + [2066] = {.lex_state = 1132}, + [2067] = {.lex_state = 297}, + [2068] = {.lex_state = 1051}, + [2069] = {.lex_state = 309}, + [2070] = {.lex_state = 1143}, + [2071] = {.lex_state = 1143}, + [2072] = {.lex_state = 1143}, + [2073] = {.lex_state = 1060}, + [2074] = {.lex_state = 1175}, + [2075] = {.lex_state = 1143}, + [2076] = {.lex_state = 309}, + [2077] = {.lex_state = 1143}, + [2078] = {.lex_state = 309}, + [2079] = {.lex_state = 309}, + [2080] = {.lex_state = 1132}, + [2081] = {.lex_state = 1143}, + [2082] = {.lex_state = 3166}, + [2083] = {.lex_state = 1143}, + [2084] = {.lex_state = 1143}, + [2085] = {.lex_state = 1143}, + [2086] = {.lex_state = 297}, + [2087] = {.lex_state = 1132}, + [2088] = {.lex_state = 309}, + [2089] = {.lex_state = 1143}, + [2090] = {.lex_state = 1143}, + [2091] = {.lex_state = 1143}, + [2092] = {.lex_state = 1060}, + [2093] = {.lex_state = 1143}, + [2094] = {.lex_state = 1143}, + [2095] = {.lex_state = 1060}, + [2096] = {.lex_state = 309}, + [2097] = {.lex_state = 1060}, + [2098] = {.lex_state = 309}, + [2099] = {.lex_state = 1060}, + [2100] = {.lex_state = 1143}, + [2101] = {.lex_state = 1143}, + [2102] = {.lex_state = 1143}, + [2103] = {.lex_state = 1143}, + [2104] = {.lex_state = 1130}, + [2105] = {.lex_state = 1142}, + [2106] = {.lex_state = 1143}, + [2107] = {.lex_state = 309}, + [2108] = {.lex_state = 297}, + [2109] = {.lex_state = 309}, + [2110] = {.lex_state = 309}, + [2111] = {.lex_state = 1143}, + [2112] = {.lex_state = 1143}, + [2113] = {.lex_state = 1143}, + [2114] = {.lex_state = 297}, + [2115] = {.lex_state = 297}, + [2116] = {.lex_state = 1142}, + [2117] = {.lex_state = 1130}, + [2118] = {.lex_state = 1142}, + [2119] = {.lex_state = 309}, + [2120] = {.lex_state = 1130}, + [2121] = {.lex_state = 309}, + [2122] = {.lex_state = 433}, + [2123] = {.lex_state = 1130}, + [2124] = {.lex_state = 1142}, + [2125] = {.lex_state = 1142}, + [2126] = {.lex_state = 1142}, + [2127] = {.lex_state = 309}, + [2128] = {.lex_state = 1130}, + [2129] = {.lex_state = 1130}, + [2130] = {.lex_state = 1130}, + [2131] = {.lex_state = 309}, + [2132] = {.lex_state = 309}, + [2133] = {.lex_state = 309}, + [2134] = {.lex_state = 309}, + [2135] = {.lex_state = 297}, + [2136] = {.lex_state = 1143}, + [2137] = {.lex_state = 1130}, + [2138] = {.lex_state = 1060}, + [2139] = {.lex_state = 1142}, + [2140] = {.lex_state = 1143}, + [2141] = {.lex_state = 297}, + [2142] = {.lex_state = 1142}, + [2143] = {.lex_state = 297}, + [2144] = {.lex_state = 297}, + [2145] = {.lex_state = 1130}, + [2146] = {.lex_state = 297}, + [2147] = {.lex_state = 309}, + [2148] = {.lex_state = 1130}, + [2149] = {.lex_state = 1130}, + [2150] = {.lex_state = 1130}, + [2151] = {.lex_state = 1142}, + [2152] = {.lex_state = 297}, + [2153] = {.lex_state = 297}, + [2154] = {.lex_state = 297}, + [2155] = {.lex_state = 297}, + [2156] = {.lex_state = 1130}, + [2157] = {.lex_state = 309}, + [2158] = {.lex_state = 297}, + [2159] = {.lex_state = 297}, + [2160] = {.lex_state = 297}, + [2161] = {.lex_state = 309}, + [2162] = {.lex_state = 1143}, + [2163] = {.lex_state = 309}, + [2164] = {.lex_state = 1143}, + [2165] = {.lex_state = 433}, + [2166] = {.lex_state = 297}, + [2167] = {.lex_state = 297}, + [2168] = {.lex_state = 1130}, + [2169] = {.lex_state = 1143}, + [2170] = {.lex_state = 1142}, + [2171] = {.lex_state = 309}, + [2172] = {.lex_state = 297}, + [2173] = {.lex_state = 309}, + [2174] = {.lex_state = 90}, + [2175] = {.lex_state = 297}, + [2176] = {.lex_state = 297}, + [2177] = {.lex_state = 297}, + [2178] = {.lex_state = 1143}, + [2179] = {.lex_state = 1142}, + [2180] = {.lex_state = 297}, + [2181] = {.lex_state = 477}, + [2182] = {.lex_state = 1143}, + [2183] = {.lex_state = 477}, + [2184] = {.lex_state = 1062}, + [2185] = {.lex_state = 1143}, + [2186] = {.lex_state = 309}, + [2187] = {.lex_state = 477}, + [2188] = {.lex_state = 1142}, + [2189] = {.lex_state = 309}, + [2190] = {.lex_state = 309}, + [2191] = {.lex_state = 1143}, + [2192] = {.lex_state = 309}, + [2193] = {.lex_state = 1130}, + [2194] = {.lex_state = 297}, + [2195] = {.lex_state = 297}, + [2196] = {.lex_state = 1130}, + [2197] = {.lex_state = 297}, + [2198] = {.lex_state = 297}, + [2199] = {.lex_state = 297}, + [2200] = {.lex_state = 297}, + [2201] = {.lex_state = 297}, + [2202] = {.lex_state = 297}, + [2203] = {.lex_state = 297}, + [2204] = {.lex_state = 309}, + [2205] = {.lex_state = 309}, + [2206] = {.lex_state = 1060}, + [2207] = {.lex_state = 297}, + [2208] = {.lex_state = 297}, + [2209] = {.lex_state = 297}, + [2210] = {.lex_state = 309}, + [2211] = {.lex_state = 309}, + [2212] = {.lex_state = 1143}, + [2213] = {.lex_state = 297}, + [2214] = {.lex_state = 1060}, + [2215] = {.lex_state = 297}, + [2216] = {.lex_state = 297}, + [2217] = {.lex_state = 309}, + [2218] = {.lex_state = 309}, + [2219] = {.lex_state = 1143}, + [2220] = {.lex_state = 1062}, + [2221] = {.lex_state = 297}, + [2222] = {.lex_state = 1062}, + [2223] = {.lex_state = 1143}, + [2224] = {.lex_state = 309}, + [2225] = {.lex_state = 1143}, + [2226] = {.lex_state = 309}, + [2227] = {.lex_state = 309}, + [2228] = {.lex_state = 1130}, + [2229] = {.lex_state = 1143}, + [2230] = {.lex_state = 1060}, + [2231] = {.lex_state = 1143}, + [2232] = {.lex_state = 297}, + [2233] = {.lex_state = 297}, + [2234] = {.lex_state = 309}, + [2235] = {.lex_state = 1062}, + [2236] = {.lex_state = 309}, + [2237] = {.lex_state = 1143}, + [2238] = {.lex_state = 309}, + [2239] = {.lex_state = 1130}, + [2240] = {.lex_state = 1143}, + [2241] = {.lex_state = 1142}, + [2242] = {.lex_state = 1143}, + [2243] = {.lex_state = 1143}, + [2244] = {.lex_state = 1143}, + [2245] = {.lex_state = 1143}, + [2246] = {.lex_state = 1143}, + [2247] = {.lex_state = 309}, + [2248] = {.lex_state = 297}, + [2249] = {.lex_state = 297}, + [2250] = {.lex_state = 297}, + [2251] = {.lex_state = 1130}, + [2252] = {.lex_state = 297}, + [2253] = {.lex_state = 297}, + [2254] = {.lex_state = 297}, + [2255] = {.lex_state = 309}, + [2256] = {.lex_state = 297}, + [2257] = {.lex_state = 3165}, + [2258] = {.lex_state = 1143}, + [2259] = {.lex_state = 297}, + [2260] = {.lex_state = 297}, + [2261] = {.lex_state = 1143}, + [2262] = {.lex_state = 433}, + [2263] = {.lex_state = 433}, + [2264] = {.lex_state = 1143}, + [2265] = {.lex_state = 1130}, + [2266] = {.lex_state = 1130}, + [2267] = {.lex_state = 1130}, + [2268] = {.lex_state = 1130}, + [2269] = {.lex_state = 3166}, + [2270] = {.lex_state = 1130}, + [2271] = {.lex_state = 1060}, + [2272] = {.lex_state = 1130}, + [2273] = {.lex_state = 1060}, + [2274] = {.lex_state = 1130}, + [2275] = {.lex_state = 91}, + [2276] = {.lex_state = 1130}, + [2277] = {.lex_state = 1130}, + [2278] = {.lex_state = 1130}, + [2279] = {.lex_state = 1130}, + [2280] = {.lex_state = 1130}, + [2281] = {.lex_state = 1130}, + [2282] = {.lex_state = 1130}, + [2283] = {.lex_state = 1130}, + [2284] = {.lex_state = 1130}, + [2285] = {.lex_state = 1130}, + [2286] = {.lex_state = 1130}, + [2287] = {.lex_state = 1130}, + [2288] = {.lex_state = 1062}, + [2289] = {.lex_state = 1060}, + [2290] = {.lex_state = 1130}, + [2291] = {.lex_state = 1130}, + [2292] = {.lex_state = 1130}, + [2293] = {.lex_state = 1130}, + [2294] = {.lex_state = 1130}, + [2295] = {.lex_state = 91}, + [2296] = {.lex_state = 1130}, + [2297] = {.lex_state = 1130}, + [2298] = {.lex_state = 1130}, + [2299] = {.lex_state = 1130}, + [2300] = {.lex_state = 1130}, + [2301] = {.lex_state = 1062}, + [2302] = {.lex_state = 1130}, + [2303] = {.lex_state = 1130}, + [2304] = {.lex_state = 1130}, + [2305] = {.lex_state = 1130}, + [2306] = {.lex_state = 1060}, + [2307] = {.lex_state = 1060}, + [2308] = {.lex_state = 1060}, + [2309] = {.lex_state = 1060}, + [2310] = {.lex_state = 1130}, + [2311] = {.lex_state = 1060}, + [2312] = {.lex_state = 1130}, + [2313] = {.lex_state = 1130}, + [2314] = {.lex_state = 1130}, + [2315] = {.lex_state = 1130}, + [2316] = {.lex_state = 1130}, + [2317] = {.lex_state = 1130}, + [2318] = {.lex_state = 1060}, + [2319] = {.lex_state = 1130}, + [2320] = {.lex_state = 1060}, + [2321] = {.lex_state = 1130}, + [2322] = {.lex_state = 1130}, + [2323] = {.lex_state = 1130}, + [2324] = {.lex_state = 1130}, + [2325] = {.lex_state = 1130}, + [2326] = {.lex_state = 1130}, + [2327] = {.lex_state = 1130}, + [2328] = {.lex_state = 1130}, + [2329] = {.lex_state = 1060}, + [2330] = {.lex_state = 1130}, + [2331] = {.lex_state = 1130}, + [2332] = {.lex_state = 1062}, + [2333] = {.lex_state = 1130}, + [2334] = {.lex_state = 1130}, + [2335] = {.lex_state = 1130}, + [2336] = {.lex_state = 1130}, + [2337] = {.lex_state = 1130}, + [2338] = {.lex_state = 1130}, + [2339] = {.lex_state = 1130}, + [2340] = {.lex_state = 1130}, + [2341] = {.lex_state = 1130}, + [2342] = {.lex_state = 1132}, + [2343] = {.lex_state = 1060}, + [2344] = {.lex_state = 1130}, + [2345] = {.lex_state = 1130}, + [2346] = {.lex_state = 1130}, + [2347] = {.lex_state = 1060}, + [2348] = {.lex_state = 1130}, + [2349] = {.lex_state = 91}, + [2350] = {.lex_state = 1130}, + [2351] = {.lex_state = 1130}, + [2352] = {.lex_state = 1130}, + [2353] = {.lex_state = 1130}, + [2354] = {.lex_state = 1130}, + [2355] = {.lex_state = 1130}, + [2356] = {.lex_state = 1130}, + [2357] = {.lex_state = 1130}, + [2358] = {.lex_state = 1130}, + [2359] = {.lex_state = 1130}, + [2360] = {.lex_state = 1062}, + [2361] = {.lex_state = 1130}, + [2362] = {.lex_state = 1060}, + [2363] = {.lex_state = 1130}, + [2364] = {.lex_state = 1130}, + [2365] = {.lex_state = 1130}, + [2366] = {.lex_state = 1130}, + [2367] = {.lex_state = 1130}, + [2368] = {.lex_state = 477}, + [2369] = {.lex_state = 1130}, + [2370] = {.lex_state = 1130}, + [2371] = {.lex_state = 1130}, + [2372] = {.lex_state = 1130}, + [2373] = {.lex_state = 1130}, + [2374] = {.lex_state = 1130}, + [2375] = {.lex_state = 1130}, + [2376] = {.lex_state = 1130}, + [2377] = {.lex_state = 1130}, + [2378] = {.lex_state = 1130}, + [2379] = {.lex_state = 1130}, + [2380] = {.lex_state = 1130}, + [2381] = {.lex_state = 1130}, + [2382] = {.lex_state = 1130}, + [2383] = {.lex_state = 1130}, + [2384] = {.lex_state = 91}, + [2385] = {.lex_state = 1130}, + [2386] = {.lex_state = 1130}, + [2387] = {.lex_state = 1130}, + [2388] = {.lex_state = 1060}, + [2389] = {.lex_state = 1130}, + [2390] = {.lex_state = 1130}, + [2391] = {.lex_state = 1130}, + [2392] = {.lex_state = 1130}, + [2393] = {.lex_state = 1130}, + [2394] = {.lex_state = 1130}, + [2395] = {.lex_state = 1024}, + [2396] = {.lex_state = 1130}, + [2397] = {.lex_state = 1130}, + [2398] = {.lex_state = 1130}, + [2399] = {.lex_state = 1130}, + [2400] = {.lex_state = 1130}, + [2401] = {.lex_state = 1130}, + [2402] = {.lex_state = 1130}, + [2403] = {.lex_state = 1130}, + [2404] = {.lex_state = 1130}, + [2405] = {.lex_state = 1130}, + [2406] = {.lex_state = 1130}, + [2407] = {.lex_state = 1130}, + [2408] = {.lex_state = 1130}, + [2409] = {.lex_state = 1130}, + [2410] = {.lex_state = 92}, + [2411] = {.lex_state = 1130}, + [2412] = {.lex_state = 1130}, + [2413] = {.lex_state = 1130}, + [2414] = {.lex_state = 1130}, + [2415] = {.lex_state = 1130}, + [2416] = {.lex_state = 1130}, + [2417] = {.lex_state = 1130}, + [2418] = {.lex_state = 1130}, + [2419] = {.lex_state = 1130}, + [2420] = {.lex_state = 1130}, + [2421] = {.lex_state = 1130}, + [2422] = {.lex_state = 433}, + [2423] = {.lex_state = 1130}, + [2424] = {.lex_state = 1130}, + [2425] = {.lex_state = 1130}, + [2426] = {.lex_state = 1130}, + [2427] = {.lex_state = 1130}, + [2428] = {.lex_state = 1130}, + [2429] = {.lex_state = 1130}, + [2430] = {.lex_state = 1130}, + [2431] = {.lex_state = 1130}, + [2432] = {.lex_state = 1130}, + [2433] = {.lex_state = 1130}, + [2434] = {.lex_state = 1130}, + [2435] = {.lex_state = 1130}, + [2436] = {.lex_state = 1130}, + [2437] = {.lex_state = 1130}, + [2438] = {.lex_state = 1130}, + [2439] = {.lex_state = 1130}, + [2440] = {.lex_state = 1130}, + [2441] = {.lex_state = 1130}, + [2442] = {.lex_state = 1130}, + [2443] = {.lex_state = 1130}, + [2444] = {.lex_state = 1130}, + [2445] = {.lex_state = 1130}, + [2446] = {.lex_state = 1130}, + [2447] = {.lex_state = 1130}, + [2448] = {.lex_state = 1130}, + [2449] = {.lex_state = 1130}, + [2450] = {.lex_state = 1130}, + [2451] = {.lex_state = 1130}, + [2452] = {.lex_state = 413}, + [2453] = {.lex_state = 413}, + [2454] = {.lex_state = 1130}, + [2455] = {.lex_state = 1130}, + [2456] = {.lex_state = 1130}, + [2457] = {.lex_state = 1130}, + [2458] = {.lex_state = 1130}, + [2459] = {.lex_state = 1130}, + [2460] = {.lex_state = 413}, + [2461] = {.lex_state = 413}, + [2462] = {.lex_state = 413}, + [2463] = {.lex_state = 413}, + [2464] = {.lex_state = 1130}, + [2465] = {.lex_state = 1130}, + [2466] = {.lex_state = 1130}, + [2467] = {.lex_state = 1130}, + [2468] = {.lex_state = 1130}, + [2469] = {.lex_state = 1057}, + [2470] = {.lex_state = 92}, + [2471] = {.lex_state = 1130}, + [2472] = {.lex_state = 1130}, + [2473] = {.lex_state = 433}, + [2474] = {.lex_state = 1130}, + [2475] = {.lex_state = 1130}, + [2476] = {.lex_state = 1130}, + [2477] = {.lex_state = 1130}, + [2478] = {.lex_state = 1130}, + [2479] = {.lex_state = 236}, + [2480] = {.lex_state = 1093}, + [2481] = {.lex_state = 1037}, + [2482] = {.lex_state = 1093}, + [2483] = {.lex_state = 1093}, + [2484] = {.lex_state = 1093}, + [2485] = {.lex_state = 1130}, + [2486] = {.lex_state = 1130}, + [2487] = {.lex_state = 1130}, + [2488] = {.lex_state = 92}, + [2489] = {.lex_state = 92}, + [2490] = {.lex_state = 92}, + [2491] = {.lex_state = 1130}, + [2492] = {.lex_state = 1024}, + [2493] = {.lex_state = 1060}, + [2494] = {.lex_state = 1060}, + [2495] = {.lex_state = 1130}, + [2496] = {.lex_state = 1130}, + [2497] = {.lex_state = 1130}, + [2498] = {.lex_state = 1130}, + [2499] = {.lex_state = 1130}, + [2500] = {.lex_state = 1130}, + [2501] = {.lex_state = 1130}, + [2502] = {.lex_state = 1093}, + [2503] = {.lex_state = 1037}, + [2504] = {.lex_state = 1060}, + [2505] = {.lex_state = 1060}, + [2506] = {.lex_state = 1060}, + [2507] = {.lex_state = 1060}, + [2508] = {.lex_state = 1060}, + [2509] = {.lex_state = 3162}, + [2510] = {.lex_state = 1130}, + [2511] = {.lex_state = 1130}, + [2512] = {.lex_state = 1130}, + [2513] = {.lex_state = 1130}, + [2514] = {.lex_state = 1130}, + [2515] = {.lex_state = 1130}, + [2516] = {.lex_state = 413}, + [2517] = {.lex_state = 413}, + [2518] = {.lex_state = 1130}, + [2519] = {.lex_state = 1060}, + [2520] = {.lex_state = 1058}, + [2521] = {.lex_state = 1058}, + [2522] = {.lex_state = 1058}, + [2523] = {.lex_state = 1058}, + [2524] = {.lex_state = 1058}, + [2525] = {.lex_state = 1058}, + [2526] = {.lex_state = 414}, + [2527] = {.lex_state = 414}, + [2528] = {.lex_state = 414}, + [2529] = {.lex_state = 1130}, + [2530] = {.lex_state = 1130}, + [2531] = {.lex_state = 1130}, + [2532] = {.lex_state = 1130}, + [2533] = {.lex_state = 1130}, + [2534] = {.lex_state = 1130}, + [2535] = {.lex_state = 1058}, + [2536] = {.lex_state = 346}, + [2537] = {.lex_state = 1058}, + [2538] = {.lex_state = 1130}, + [2539] = {.lex_state = 1130}, + [2540] = {.lex_state = 1058}, + [2541] = {.lex_state = 1058}, + [2542] = {.lex_state = 1130}, + [2543] = {.lex_state = 1130}, + [2544] = {.lex_state = 1058}, + [2545] = {.lex_state = 1130}, + [2546] = {.lex_state = 1130}, + [2547] = {.lex_state = 1130}, + [2548] = {.lex_state = 1130}, + [2549] = {.lex_state = 1130}, + [2550] = {.lex_state = 1058}, + [2551] = {.lex_state = 346}, + [2552] = {.lex_state = 1130}, + [2553] = {.lex_state = 346}, + [2554] = {.lex_state = 1057}, + [2555] = {.lex_state = 1058}, + [2556] = {.lex_state = 1058}, + [2557] = {.lex_state = 1058}, + [2558] = {.lex_state = 1058}, + [2559] = {.lex_state = 1058}, + [2560] = {.lex_state = 1058}, + [2561] = {.lex_state = 1058}, + [2562] = {.lex_state = 1058}, + [2563] = {.lex_state = 1130}, + [2564] = {.lex_state = 1058}, + [2565] = {.lex_state = 1058}, + [2566] = {.lex_state = 1130}, + [2567] = {.lex_state = 1058}, + [2568] = {.lex_state = 1058}, + [2569] = {.lex_state = 1058}, + [2570] = {.lex_state = 1058}, + [2571] = {.lex_state = 1058}, + [2572] = {.lex_state = 1058}, + [2573] = {.lex_state = 1058}, + [2574] = {.lex_state = 1058}, + [2575] = {.lex_state = 1058}, + [2576] = {.lex_state = 1058}, + [2577] = {.lex_state = 1058}, + [2578] = {.lex_state = 256}, + [2579] = {.lex_state = 1130}, + [2580] = {.lex_state = 1058}, + [2581] = {.lex_state = 1058}, + [2582] = {.lex_state = 1058}, + [2583] = {.lex_state = 1058}, + [2584] = {.lex_state = 1037}, + [2585] = {.lex_state = 1058}, + [2586] = {.lex_state = 1058}, + [2587] = {.lex_state = 1058}, + [2588] = {.lex_state = 1093}, + [2589] = {.lex_state = 1093}, + [2590] = {.lex_state = 1093}, + [2591] = {.lex_state = 1058}, + [2592] = {.lex_state = 170}, + [2593] = {.lex_state = 1058}, + [2594] = {.lex_state = 1058}, + [2595] = {.lex_state = 1130}, + [2596] = {.lex_state = 1058}, + [2597] = {.lex_state = 1130}, + [2598] = {.lex_state = 1130}, + [2599] = {.lex_state = 1058}, + [2600] = {.lex_state = 1130}, + [2601] = {.lex_state = 1130}, + [2602] = {.lex_state = 1058}, + [2603] = {.lex_state = 1093}, + [2604] = {.lex_state = 1130}, + [2605] = {.lex_state = 1130}, + [2606] = {.lex_state = 1058}, + [2607] = {.lex_state = 1058}, + [2608] = {.lex_state = 1058}, + [2609] = {.lex_state = 1058}, + [2610] = {.lex_state = 1058}, + [2611] = {.lex_state = 1058}, + [2612] = {.lex_state = 170}, + [2613] = {.lex_state = 170}, + [2614] = {.lex_state = 170}, + [2615] = {.lex_state = 170}, + [2616] = {.lex_state = 1058}, + [2617] = {.lex_state = 1060}, + [2618] = {.lex_state = 1060}, + [2619] = {.lex_state = 3162}, + [2620] = {.lex_state = 414}, + [2621] = {.lex_state = 414}, + [2622] = {.lex_state = 1058}, + [2623] = {.lex_state = 1130}, + [2624] = {.lex_state = 1130}, + [2625] = {.lex_state = 1130}, + [2626] = {.lex_state = 1130}, + [2627] = {.lex_state = 1058}, + [2628] = {.lex_state = 1058}, + [2629] = {.lex_state = 1058}, + [2630] = {.lex_state = 414}, + [2631] = {.lex_state = 414}, + [2632] = {.lex_state = 414}, + [2633] = {.lex_state = 1058}, + [2634] = {.lex_state = 346}, + [2635] = {.lex_state = 1058}, + [2636] = {.lex_state = 1058}, + [2637] = {.lex_state = 1058}, + [2638] = {.lex_state = 1037}, + [2639] = {.lex_state = 1093}, + [2640] = {.lex_state = 1058}, + [2641] = {.lex_state = 355}, + [2642] = {.lex_state = 1058}, + [2643] = {.lex_state = 1058}, + [2644] = {.lex_state = 1058}, + [2645] = {.lex_state = 1058}, + [2646] = {.lex_state = 1058}, + [2647] = {.lex_state = 1058}, + [2648] = {.lex_state = 1058}, + [2649] = {.lex_state = 1058}, + [2650] = {.lex_state = 1058}, + [2651] = {.lex_state = 1058}, + [2652] = {.lex_state = 1058}, + [2653] = {.lex_state = 1058}, + [2654] = {.lex_state = 1058}, + [2655] = {.lex_state = 1058}, + [2656] = {.lex_state = 1058}, + [2657] = {.lex_state = 1058}, + [2658] = {.lex_state = 1058}, + [2659] = {.lex_state = 1058}, + [2660] = {.lex_state = 355}, + [2661] = {.lex_state = 1058}, + [2662] = {.lex_state = 1058}, + [2663] = {.lex_state = 1058}, + [2664] = {.lex_state = 1058}, + [2665] = {.lex_state = 1058}, + [2666] = {.lex_state = 1058}, + [2667] = {.lex_state = 1058}, + [2668] = {.lex_state = 1058}, + [2669] = {.lex_state = 1058}, + [2670] = {.lex_state = 170}, + [2671] = {.lex_state = 170}, + [2672] = {.lex_state = 1058}, + [2673] = {.lex_state = 1058}, + [2674] = {.lex_state = 1058}, + [2675] = {.lex_state = 1058}, + [2676] = {.lex_state = 1058}, + [2677] = {.lex_state = 1058}, + [2678] = {.lex_state = 1058}, + [2679] = {.lex_state = 1058}, + [2680] = {.lex_state = 1058}, + [2681] = {.lex_state = 1058}, + [2682] = {.lex_state = 1058}, + [2683] = {.lex_state = 1058}, + [2684] = {.lex_state = 1058}, + [2685] = {.lex_state = 170}, + [2686] = {.lex_state = 170}, + [2687] = {.lex_state = 1058}, + [2688] = {.lex_state = 355}, + [2689] = {.lex_state = 1058}, + [2690] = {.lex_state = 1058}, + [2691] = {.lex_state = 1058}, + [2692] = {.lex_state = 1058}, + [2693] = {.lex_state = 1058}, + [2694] = {.lex_state = 1058}, + [2695] = {.lex_state = 1058}, + [2696] = {.lex_state = 1058}, + [2697] = {.lex_state = 1058}, + [2698] = {.lex_state = 1058}, + [2699] = {.lex_state = 1058}, + [2700] = {.lex_state = 1251}, + [2701] = {.lex_state = 1058}, + [2702] = {.lex_state = 355}, + [2703] = {.lex_state = 355}, + [2704] = {.lex_state = 1058}, + [2705] = {.lex_state = 1058}, + [2706] = {.lex_state = 1058}, + [2707] = {.lex_state = 1058}, + [2708] = {.lex_state = 1058}, + [2709] = {.lex_state = 1058}, + [2710] = {.lex_state = 355}, + [2711] = {.lex_state = 355}, + [2712] = {.lex_state = 355}, + [2713] = {.lex_state = 1058}, + [2714] = {.lex_state = 1251}, + [2715] = {.lex_state = 170}, + [2716] = {.lex_state = 170}, + [2717] = {.lex_state = 440}, + [2718] = {.lex_state = 440}, + [2719] = {.lex_state = 440}, + [2720] = {.lex_state = 440}, + [2721] = {.lex_state = 170}, + [2722] = {.lex_state = 1251}, + [2723] = {.lex_state = 175}, + [2724] = {.lex_state = 175}, + [2725] = {.lex_state = 450}, + [2726] = {.lex_state = 176}, + [2727] = {.lex_state = 438}, + [2728] = {.lex_state = 438}, + [2729] = {.lex_state = 439}, + [2730] = {.lex_state = 175}, + [2731] = {.lex_state = 341}, + [2732] = {.lex_state = 453}, + [2733] = {.lex_state = 453}, + [2734] = {.lex_state = 175}, + [2735] = {.lex_state = 175}, + [2736] = {.lex_state = 175}, + [2737] = {.lex_state = 176}, + [2738] = {.lex_state = 438}, + [2739] = {.lex_state = 476}, + [2740] = {.lex_state = 176}, + [2741] = {.lex_state = 175}, + [2742] = {.lex_state = 453}, + [2743] = {.lex_state = 175}, + [2744] = {.lex_state = 438}, + [2745] = {.lex_state = 341}, + [2746] = {.lex_state = 453}, + [2747] = {.lex_state = 175}, + [2748] = {.lex_state = 175}, + [2749] = {.lex_state = 175}, + [2750] = {.lex_state = 176}, + [2751] = {.lex_state = 341}, + [2752] = {.lex_state = 341}, + [2753] = {.lex_state = 341}, + [2754] = {.lex_state = 341}, + [2755] = {.lex_state = 341}, + [2756] = {.lex_state = 341}, + [2757] = {.lex_state = 341}, + [2758] = {.lex_state = 341}, + [2759] = {.lex_state = 341}, + [2760] = {.lex_state = 341}, + [2761] = {.lex_state = 341}, + [2762] = {.lex_state = 341}, + [2763] = {.lex_state = 341}, + [2764] = {.lex_state = 341}, + [2765] = {.lex_state = 341}, + [2766] = {.lex_state = 341}, + [2767] = {.lex_state = 341}, + [2768] = {.lex_state = 341}, + [2769] = {.lex_state = 341}, + [2770] = {.lex_state = 341}, + [2771] = {.lex_state = 341}, + [2772] = {.lex_state = 341}, + [2773] = {.lex_state = 341}, + [2774] = {.lex_state = 341}, + [2775] = {.lex_state = 341}, + [2776] = {.lex_state = 341}, + [2777] = {.lex_state = 341}, + [2778] = {.lex_state = 341}, + [2779] = {.lex_state = 341}, + [2780] = {.lex_state = 341}, + [2781] = {.lex_state = 341}, + [2782] = {.lex_state = 341}, + [2783] = {.lex_state = 341}, + [2784] = {.lex_state = 341}, + [2785] = {.lex_state = 341}, + [2786] = {.lex_state = 341}, + [2787] = {.lex_state = 341}, + [2788] = {.lex_state = 341}, + [2789] = {.lex_state = 341}, + [2790] = {.lex_state = 341}, + [2791] = {.lex_state = 341}, + [2792] = {.lex_state = 341}, + [2793] = {.lex_state = 341}, + [2794] = {.lex_state = 341}, + [2795] = {.lex_state = 341}, + [2796] = {.lex_state = 341}, + [2797] = {.lex_state = 341}, + [2798] = {.lex_state = 341}, + [2799] = {.lex_state = 341}, + [2800] = {.lex_state = 341}, + [2801] = {.lex_state = 341}, + [2802] = {.lex_state = 341}, + [2803] = {.lex_state = 341}, + [2804] = {.lex_state = 341}, + [2805] = {.lex_state = 341}, + [2806] = {.lex_state = 341}, + [2807] = {.lex_state = 341}, + [2808] = {.lex_state = 341}, + [2809] = {.lex_state = 341}, + [2810] = {.lex_state = 341}, + [2811] = {.lex_state = 341}, + [2812] = {.lex_state = 341}, + [2813] = {.lex_state = 341}, + [2814] = {.lex_state = 341}, + [2815] = {.lex_state = 341}, + [2816] = {.lex_state = 341}, + [2817] = {.lex_state = 341}, + [2818] = {.lex_state = 341}, + [2819] = {.lex_state = 341}, + [2820] = {.lex_state = 436}, + [2821] = {.lex_state = 341}, + [2822] = {.lex_state = 436}, + [2823] = {.lex_state = 436}, + [2824] = {.lex_state = 436}, + [2825] = {.lex_state = 341}, + [2826] = {.lex_state = 341}, + [2827] = {.lex_state = 341}, + [2828] = {.lex_state = 341}, + [2829] = {.lex_state = 341}, + [2830] = {.lex_state = 341}, + [2831] = {.lex_state = 341}, + [2832] = {.lex_state = 341}, + [2833] = {.lex_state = 449}, + [2834] = {.lex_state = 341}, + [2835] = {.lex_state = 341}, + [2836] = {.lex_state = 341}, + [2837] = {.lex_state = 341}, + [2838] = {.lex_state = 341}, + [2839] = {.lex_state = 341}, + [2840] = {.lex_state = 341}, + [2841] = {.lex_state = 341}, + [2842] = {.lex_state = 341}, + [2843] = {.lex_state = 341}, + [2844] = {.lex_state = 341}, + [2845] = {.lex_state = 341}, + [2846] = {.lex_state = 341}, + [2847] = {.lex_state = 341}, + [2848] = {.lex_state = 341}, + [2849] = {.lex_state = 341}, + [2850] = {.lex_state = 341}, + [2851] = {.lex_state = 341}, + [2852] = {.lex_state = 451}, + [2853] = {.lex_state = 341}, + [2854] = {.lex_state = 451}, + [2855] = {.lex_state = 341}, + [2856] = {.lex_state = 341}, + [2857] = {.lex_state = 461}, + [2858] = {.lex_state = 341}, + [2859] = {.lex_state = 341}, + [2860] = {.lex_state = 341}, + [2861] = {.lex_state = 341}, + [2862] = {.lex_state = 341}, + [2863] = {.lex_state = 341}, + [2864] = {.lex_state = 341}, + [2865] = {.lex_state = 341}, + [2866] = {.lex_state = 451}, + [2867] = {.lex_state = 451}, + [2868] = {.lex_state = 341}, + [2869] = {.lex_state = 341}, + [2870] = {.lex_state = 341}, + [2871] = {.lex_state = 341}, + [2872] = {.lex_state = 175}, + [2873] = {.lex_state = 175}, + [2874] = {.lex_state = 341}, + [2875] = {.lex_state = 449}, + [2876] = {.lex_state = 341}, + [2877] = {.lex_state = 341}, + [2878] = {.lex_state = 43}, + [2879] = {.lex_state = 341}, + [2880] = {.lex_state = 341}, + [2881] = {.lex_state = 341}, + [2882] = {.lex_state = 341}, + [2883] = {.lex_state = 341}, + [2884] = {.lex_state = 341}, + [2885] = {.lex_state = 341}, + [2886] = {.lex_state = 341}, + [2887] = {.lex_state = 341}, + [2888] = {.lex_state = 341}, + [2889] = {.lex_state = 341}, + [2890] = {.lex_state = 341}, + [2891] = {.lex_state = 175}, + [2892] = {.lex_state = 175}, + [2893] = {.lex_state = 341}, + [2894] = {.lex_state = 341}, + [2895] = {.lex_state = 341}, + [2896] = {.lex_state = 341}, + [2897] = {.lex_state = 341}, + [2898] = {.lex_state = 452}, + [2899] = {.lex_state = 341}, + [2900] = {.lex_state = 440}, + [2901] = {.lex_state = 341}, + [2902] = {.lex_state = 341}, + [2903] = {.lex_state = 341}, + [2904] = {.lex_state = 440}, + [2905] = {.lex_state = 440}, + [2906] = {.lex_state = 341}, + [2907] = {.lex_state = 448}, + [2908] = {.lex_state = 448}, + [2909] = {.lex_state = 448}, + [2910] = {.lex_state = 341}, + [2911] = {.lex_state = 341}, + [2912] = {.lex_state = 341}, + [2913] = {.lex_state = 341}, + [2914] = {.lex_state = 341}, + [2915] = {.lex_state = 357}, + [2916] = {.lex_state = 357}, + [2917] = {.lex_state = 341}, + [2918] = {.lex_state = 341}, + [2919] = {.lex_state = 341}, + [2920] = {.lex_state = 341}, + [2921] = {.lex_state = 341}, + [2922] = {.lex_state = 341}, + [2923] = {.lex_state = 341}, + [2924] = {.lex_state = 341}, + [2925] = {.lex_state = 341}, + [2926] = {.lex_state = 341}, + [2927] = {.lex_state = 341}, + [2928] = {.lex_state = 341}, + [2929] = {.lex_state = 341}, + [2930] = {.lex_state = 341}, + [2931] = {.lex_state = 341}, + [2932] = {.lex_state = 341}, + [2933] = {.lex_state = 341}, + [2934] = {.lex_state = 347}, + [2935] = {.lex_state = 274}, + [2936] = {.lex_state = 449}, + [2937] = {.lex_state = 274}, + [2938] = {.lex_state = 437}, + [2939] = {.lex_state = 447}, + [2940] = {.lex_state = 437}, + [2941] = {.lex_state = 447}, + [2942] = {.lex_state = 437}, + [2943] = {.lex_state = 447}, + [2944] = {.lex_state = 274}, + [2945] = {.lex_state = 447}, + [2946] = {.lex_state = 341}, + [2947] = {.lex_state = 453}, + [2948] = {.lex_state = 93}, + [2949] = {.lex_state = 453}, + [2950] = {.lex_state = 347}, + [2951] = {.lex_state = 347}, + [2952] = {.lex_state = 449}, + [2953] = {.lex_state = 449}, + [2954] = {.lex_state = 449}, + [2955] = {.lex_state = 449}, + [2956] = {.lex_state = 347}, + [2957] = {.lex_state = 173}, + [2958] = {.lex_state = 435}, + [2959] = {.lex_state = 175}, + [2960] = {.lex_state = 460}, + [2961] = {.lex_state = 347}, + [2962] = {.lex_state = 435}, + [2963] = {.lex_state = 175}, + [2964] = {.lex_state = 274}, + [2965] = {.lex_state = 175}, + [2966] = {.lex_state = 357}, + [2967] = {.lex_state = 460}, + [2968] = {.lex_state = 341}, + [2969] = {.lex_state = 357}, + [2970] = {.lex_state = 347}, + [2971] = {.lex_state = 449}, + [2972] = {.lex_state = 449}, + [2973] = {.lex_state = 93}, + [2974] = {.lex_state = 2532}, + [2975] = {.lex_state = 460}, + [2976] = {.lex_state = 341}, + [2977] = {.lex_state = 449}, + [2978] = {.lex_state = 449}, + [2979] = {.lex_state = 449}, + [2980] = {.lex_state = 435}, + [2981] = {.lex_state = 274}, + [2982] = {.lex_state = 453}, + [2983] = {.lex_state = 435}, + [2984] = {.lex_state = 357}, + [2985] = {.lex_state = 174}, + [2986] = {.lex_state = 174}, + [2987] = {.lex_state = 174}, + [2988] = {.lex_state = 436}, + [2989] = {.lex_state = 174}, + [2990] = {.lex_state = 436}, + [2991] = {.lex_state = 174}, + [2992] = {.lex_state = 437}, + [2993] = {.lex_state = 174}, + [2994] = {.lex_state = 437}, + [2995] = {.lex_state = 174}, + [2996] = {.lex_state = 174}, + [2997] = {.lex_state = 174}, + [2998] = {.lex_state = 437}, + [2999] = {.lex_state = 174}, + [3000] = {.lex_state = 174}, + [3001] = {.lex_state = 437}, + [3002] = {.lex_state = 174}, + [3003] = {.lex_state = 437}, + [3004] = {.lex_state = 174}, + [3005] = {.lex_state = 174}, + [3006] = {.lex_state = 445}, + [3007] = {.lex_state = 445}, + [3008] = {.lex_state = 174}, + [3009] = {.lex_state = 174}, + [3010] = {.lex_state = 174}, + [3011] = {.lex_state = 443}, + [3012] = {.lex_state = 174}, + [3013] = {.lex_state = 174}, + [3014] = {.lex_state = 174}, + [3015] = {.lex_state = 174}, + [3016] = {.lex_state = 445}, + [3017] = {.lex_state = 445}, + [3018] = {.lex_state = 174}, + [3019] = {.lex_state = 446}, + [3020] = {.lex_state = 174}, + [3021] = {.lex_state = 357}, + [3022] = {.lex_state = 174}, + [3023] = {.lex_state = 174}, + [3024] = {.lex_state = 174}, + [3025] = {.lex_state = 174}, + [3026] = {.lex_state = 174}, + [3027] = {.lex_state = 437}, + [3028] = {.lex_state = 174}, + [3029] = {.lex_state = 357}, + [3030] = {.lex_state = 174}, + [3031] = {.lex_state = 174}, + [3032] = {.lex_state = 437}, + [3033] = {.lex_state = 357}, + [3034] = {.lex_state = 174}, + [3035] = {.lex_state = 174}, + [3036] = {.lex_state = 437}, + [3037] = {.lex_state = 437}, + [3038] = {.lex_state = 436}, + [3039] = {.lex_state = 174}, + [3040] = {.lex_state = 174}, + [3041] = {.lex_state = 174}, + [3042] = {.lex_state = 174}, + [3043] = {.lex_state = 357}, + [3044] = {.lex_state = 357}, + [3045] = {.lex_state = 174}, + [3046] = {.lex_state = 174}, + [3047] = {.lex_state = 174}, + [3048] = {.lex_state = 174}, + [3049] = {.lex_state = 174}, + [3050] = {.lex_state = 174}, + [3051] = {.lex_state = 357}, + [3052] = {.lex_state = 174}, + [3053] = {.lex_state = 174}, + [3054] = {.lex_state = 174}, + [3055] = {.lex_state = 357}, + [3056] = {.lex_state = 174}, + [3057] = {.lex_state = 174}, + [3058] = {.lex_state = 357}, + [3059] = {.lex_state = 357}, + [3060] = {.lex_state = 357}, + [3061] = {.lex_state = 174}, + [3062] = {.lex_state = 357}, + [3063] = {.lex_state = 174}, + [3064] = {.lex_state = 174}, + [3065] = {.lex_state = 174}, + [3066] = {.lex_state = 174}, + [3067] = {.lex_state = 357}, + [3068] = {.lex_state = 357}, + [3069] = {.lex_state = 174}, + [3070] = {.lex_state = 174}, + [3071] = {.lex_state = 174}, + [3072] = {.lex_state = 174}, + [3073] = {.lex_state = 357}, + [3074] = {.lex_state = 174}, + [3075] = {.lex_state = 174}, + [3076] = {.lex_state = 174}, + [3077] = {.lex_state = 174}, + [3078] = {.lex_state = 442}, + [3079] = {.lex_state = 447}, + [3080] = {.lex_state = 441}, + [3081] = {.lex_state = 441}, + [3082] = {.lex_state = 441}, + [3083] = {.lex_state = 444}, + [3084] = {.lex_state = 447}, + [3085] = {.lex_state = 433}, + [3086] = {.lex_state = 447}, + [3087] = {.lex_state = 444}, + [3088] = {.lex_state = 433}, + [3089] = {.lex_state = 459}, + [3090] = {.lex_state = 457}, + [3091] = {.lex_state = 442}, + [3092] = {.lex_state = 442}, + [3093] = {.lex_state = 442}, + [3094] = {.lex_state = 458}, + [3095] = {.lex_state = 455}, + [3096] = {.lex_state = 442}, + [3097] = {.lex_state = 455}, + [3098] = {.lex_state = 442}, + [3099] = {.lex_state = 442}, + [3100] = {.lex_state = 455}, + [3101] = {.lex_state = 442}, + [3102] = {.lex_state = 442}, + [3103] = {.lex_state = 442}, + [3104] = {.lex_state = 442}, + [3105] = {.lex_state = 442}, + [3106] = {.lex_state = 442}, + [3107] = {.lex_state = 442}, + [3108] = {.lex_state = 442}, + [3109] = {.lex_state = 442}, + [3110] = {.lex_state = 442}, + [3111] = {.lex_state = 442}, + [3112] = {.lex_state = 442}, + [3113] = {.lex_state = 442}, + [3114] = {.lex_state = 442}, + [3115] = {.lex_state = 442}, + [3116] = {.lex_state = 442}, + [3117] = {.lex_state = 458}, + [3118] = {.lex_state = 442}, + [3119] = {.lex_state = 442}, + [3120] = {.lex_state = 442}, + [3121] = {.lex_state = 442}, + [3122] = {.lex_state = 442}, + [3123] = {.lex_state = 442}, + [3124] = {.lex_state = 442}, + [3125] = {.lex_state = 433}, + [3126] = {.lex_state = 433}, + [3127] = {.lex_state = 433}, + [3128] = {.lex_state = 433}, + [3129] = {.lex_state = 433}, + [3130] = {.lex_state = 433}, + [3131] = {.lex_state = 433}, + [3132] = {.lex_state = 433}, + [3133] = {.lex_state = 433}, + [3134] = {.lex_state = 433}, + [3135] = {.lex_state = 433}, + [3136] = {.lex_state = 433}, + [3137] = {.lex_state = 433}, + [3138] = {.lex_state = 433}, + [3139] = {.lex_state = 433}, + [3140] = {.lex_state = 433}, + [3141] = {.lex_state = 433}, + [3142] = {.lex_state = 433}, + [3143] = {.lex_state = 433}, + [3144] = {.lex_state = 433}, + [3145] = {.lex_state = 433}, + [3146] = {.lex_state = 433}, + [3147] = {.lex_state = 433}, + [3148] = {.lex_state = 433}, + [3149] = {.lex_state = 433}, + [3150] = {.lex_state = 433}, + [3151] = {.lex_state = 433}, + [3152] = {.lex_state = 433}, + [3153] = {.lex_state = 433}, + [3154] = {.lex_state = 433}, + [3155] = {.lex_state = 433}, + [3156] = {.lex_state = 433}, + [3157] = {.lex_state = 433}, + [3158] = {.lex_state = 553}, + [3159] = {.lex_state = 552}, + [3160] = {.lex_state = 423}, + [3161] = {.lex_state = 552}, + [3162] = {.lex_state = 552}, + [3163] = {.lex_state = 552}, + [3164] = {.lex_state = 423}, + [3165] = {.lex_state = 425}, + [3166] = {.lex_state = 424}, + [3167] = {.lex_state = 419}, + [3168] = {.lex_state = 393}, + [3169] = {.lex_state = 394}, + [3170] = {.lex_state = 425}, + [3171] = {.lex_state = 416}, + [3172] = {.lex_state = 425}, + [3173] = {.lex_state = 426}, + [3174] = {.lex_state = 416}, + [3175] = {.lex_state = 425}, + [3176] = {.lex_state = 424}, + [3177] = {.lex_state = 427}, + [3178] = {.lex_state = 426}, + [3179] = {.lex_state = 426}, + [3180] = {.lex_state = 425}, + [3181] = {.lex_state = 425}, + [3182] = {.lex_state = 389}, + [3183] = {.lex_state = 397}, + [3184] = {.lex_state = 397}, + [3185] = {.lex_state = 417}, + [3186] = {.lex_state = 397}, + [3187] = {.lex_state = 420}, + [3188] = {.lex_state = 420}, + [3189] = {.lex_state = 417}, + [3190] = {.lex_state = 397}, + [3191] = {.lex_state = 389}, + [3192] = {.lex_state = 398}, + [3193] = {.lex_state = 422}, + [3194] = {.lex_state = 389}, + [3195] = {.lex_state = 389}, + [3196] = {.lex_state = 390}, + [3197] = {.lex_state = 418}, + [3198] = {.lex_state = 422}, + [3199] = {.lex_state = 422}, + [3200] = {.lex_state = 377}, + [3201] = {.lex_state = 422}, + [3202] = {.lex_state = 422}, + [3203] = {.lex_state = 420}, + [3204] = {.lex_state = 421}, + [3205] = {.lex_state = 418}, + [3206] = {.lex_state = 418}, + [3207] = {.lex_state = 418}, + [3208] = {.lex_state = 418}, + [3209] = {.lex_state = 418}, + [3210] = {.lex_state = 415}, + [3211] = {.lex_state = 415}, + [3212] = {.lex_state = 398}, + [3213] = {.lex_state = 398}, + [3214] = {.lex_state = 379}, + [3215] = {.lex_state = 482}, + [3216] = {.lex_state = 390}, + [3217] = {.lex_state = 415}, + [3218] = {.lex_state = 415}, + [3219] = {.lex_state = 380}, + [3220] = {.lex_state = 415}, + [3221] = {.lex_state = 395}, + [3222] = {.lex_state = 379}, + [3223] = {.lex_state = 379}, + [3224] = {.lex_state = 379}, + [3225] = {.lex_state = 390}, + [3226] = {.lex_state = 390}, + [3227] = {.lex_state = 398}, + [3228] = {.lex_state = 396}, + [3229] = {.lex_state = 412}, + [3230] = {.lex_state = 399}, + [3231] = {.lex_state = 412}, + [3232] = {.lex_state = 399}, + [3233] = {.lex_state = 412}, + [3234] = {.lex_state = 391}, + [3235] = {.lex_state = 391}, + [3236] = {.lex_state = 478}, + [3237] = {.lex_state = 518}, + [3238] = {.lex_state = 391}, + [3239] = {.lex_state = 399}, + [3240] = {.lex_state = 412}, + [3241] = {.lex_state = 412}, + [3242] = {.lex_state = 412}, + [3243] = {.lex_state = 412}, + [3244] = {.lex_state = 380}, + [3245] = {.lex_state = 478}, + [3246] = {.lex_state = 391}, + [3247] = {.lex_state = 380}, + [3248] = {.lex_state = 380}, + [3249] = {.lex_state = 478}, + [3250] = {.lex_state = 412}, + [3251] = {.lex_state = 478}, + [3252] = {.lex_state = 378}, + [3253] = {.lex_state = 399}, + [3254] = {.lex_state = 392}, + [3255] = {.lex_state = 523}, + [3256] = {.lex_state = 483}, + [3257] = {.lex_state = 523}, + [3258] = {.lex_state = 392}, + [3259] = {.lex_state = 479}, + [3260] = {.lex_state = 523}, + [3261] = {.lex_state = 484}, + [3262] = {.lex_state = 519}, + [3263] = {.lex_state = 519}, + [3264] = {.lex_state = 523}, + [3265] = {.lex_state = 519}, + [3266] = {.lex_state = 381}, + [3267] = {.lex_state = 381}, + [3268] = {.lex_state = 381}, + [3269] = {.lex_state = 519}, + [3270] = {.lex_state = 480}, + [3271] = {.lex_state = 392}, + [3272] = {.lex_state = 400}, + [3273] = {.lex_state = 381}, + [3274] = {.lex_state = 479}, + [3275] = {.lex_state = 400}, + [3276] = {.lex_state = 400}, + [3277] = {.lex_state = 400}, + [3278] = {.lex_state = 479}, + [3279] = {.lex_state = 479}, + [3280] = {.lex_state = 480}, + [3281] = {.lex_state = 1100}, + [3282] = {.lex_state = 480}, + [3283] = {.lex_state = 392}, + [3284] = {.lex_state = 392}, + [3285] = {.lex_state = 1100}, + [3286] = {.lex_state = 400}, + [3287] = {.lex_state = 523}, + [3288] = {.lex_state = 520}, + [3289] = {.lex_state = 480}, + [3290] = {.lex_state = 489}, + [3291] = {.lex_state = 541}, + [3292] = {.lex_state = 520}, + [3293] = {.lex_state = 1110}, + [3294] = {.lex_state = 1102}, + [3295] = {.lex_state = 1102}, + [3296] = {.lex_state = 520}, + [3297] = {.lex_state = 1102}, + [3298] = {.lex_state = 1102}, + [3299] = {.lex_state = 481}, + [3300] = {.lex_state = 382}, + [3301] = {.lex_state = 382}, + [3302] = {.lex_state = 382}, + [3303] = {.lex_state = 489}, + [3304] = {.lex_state = 522}, + [3305] = {.lex_state = 1104}, + [3306] = {.lex_state = 521}, + [3307] = {.lex_state = 521}, + [3308] = {.lex_state = 406}, + [3309] = {.lex_state = 407}, + [3310] = {.lex_state = 489}, + [3311] = {.lex_state = 489}, + [3312] = {.lex_state = 485}, + [3313] = {.lex_state = 485}, + [3314] = {.lex_state = 1110}, + [3315] = {.lex_state = 520}, + [3316] = {.lex_state = 485}, + [3317] = {.lex_state = 520}, + [3318] = {.lex_state = 1102}, + [3319] = {.lex_state = 481}, + [3320] = {.lex_state = 485}, + [3321] = {.lex_state = 1100}, + [3322] = {.lex_state = 481}, + [3323] = {.lex_state = 1102}, + [3324] = {.lex_state = 521}, + [3325] = {.lex_state = 382}, + [3326] = {.lex_state = 521}, + [3327] = {.lex_state = 1100}, + [3328] = {.lex_state = 382}, + [3329] = {.lex_state = 489}, + [3330] = {.lex_state = 385}, + [3331] = {.lex_state = 481}, + [3332] = {.lex_state = 542}, + [3333] = {.lex_state = 542}, + [3334] = {.lex_state = 542}, + [3335] = {.lex_state = 1112}, + [3336] = {.lex_state = 1112}, + [3337] = {.lex_state = 481}, + [3338] = {.lex_state = 404}, + [3339] = {.lex_state = 1112}, + [3340] = {.lex_state = 488}, + [3341] = {.lex_state = 1102}, + [3342] = {.lex_state = 1068}, + [3343] = {.lex_state = 1107}, + [3344] = {.lex_state = 408}, + [3345] = {.lex_state = 409}, + [3346] = {.lex_state = 486}, + [3347] = {.lex_state = 1068}, + [3348] = {.lex_state = 1068}, + [3349] = {.lex_state = 538}, + [3350] = {.lex_state = 1107}, + [3351] = {.lex_state = 1108}, + [3352] = {.lex_state = 487}, + [3353] = {.lex_state = 1107}, + [3354] = {.lex_state = 1107}, + [3355] = {.lex_state = 410}, + [3356] = {.lex_state = 410}, + [3357] = {.lex_state = 1102}, + [3358] = {.lex_state = 1104}, + [3359] = {.lex_state = 487}, + [3360] = {.lex_state = 487}, + [3361] = {.lex_state = 486}, + [3362] = {.lex_state = 1102}, + [3363] = {.lex_state = 486}, + [3364] = {.lex_state = 486}, + [3365] = {.lex_state = 1102}, + [3366] = {.lex_state = 1068}, + [3367] = {.lex_state = 464}, + [3368] = {.lex_state = 464}, + [3369] = {.lex_state = 534}, + [3370] = {.lex_state = 1112}, + [3371] = {.lex_state = 410}, + [3372] = {.lex_state = 1112}, + [3373] = {.lex_state = 523}, + [3374] = {.lex_state = 464}, + [3375] = {.lex_state = 1110}, + [3376] = {.lex_state = 1102}, + [3377] = {.lex_state = 464}, + [3378] = {.lex_state = 487}, + [3379] = {.lex_state = 523}, + [3380] = {.lex_state = 1102}, + [3381] = {.lex_state = 1110}, + [3382] = {.lex_state = 523}, + [3383] = {.lex_state = 486}, + [3384] = {.lex_state = 404}, + [3385] = {.lex_state = 404}, + [3386] = {.lex_state = 515}, + [3387] = {.lex_state = 404}, + [3388] = {.lex_state = 410}, + [3389] = {.lex_state = 489}, + [3390] = {.lex_state = 543}, + [3391] = {.lex_state = 462}, + [3392] = {.lex_state = 489}, + [3393] = {.lex_state = 538}, + [3394] = {.lex_state = 405}, + [3395] = {.lex_state = 411}, + [3396] = {.lex_state = 411}, + [3397] = {.lex_state = 411}, + [3398] = {.lex_state = 1108}, + [3399] = {.lex_state = 512}, + [3400] = {.lex_state = 462}, + [3401] = {.lex_state = 543}, + [3402] = {.lex_state = 411}, + [3403] = {.lex_state = 538}, + [3404] = {.lex_state = 543}, + [3405] = {.lex_state = 1108}, + [3406] = {.lex_state = 538}, + [3407] = {.lex_state = 538}, + [3408] = {.lex_state = 543}, + [3409] = {.lex_state = 538}, + [3410] = {.lex_state = 1112}, + [3411] = {.lex_state = 516}, + [3412] = {.lex_state = 489}, + [3413] = {.lex_state = 577}, + [3414] = {.lex_state = 538}, + [3415] = {.lex_state = 1108}, + [3416] = {.lex_state = 516}, + [3417] = {.lex_state = 1114}, + [3418] = {.lex_state = 463}, + [3419] = {.lex_state = 1107}, + [3420] = {.lex_state = 535}, + [3421] = {.lex_state = 1112}, + [3422] = {.lex_state = 1112}, + [3423] = {.lex_state = 538}, + [3424] = {.lex_state = 538}, + [3425] = {.lex_state = 405}, + [3426] = {.lex_state = 538}, + [3427] = {.lex_state = 473}, + [3428] = {.lex_state = 1107}, + [3429] = {.lex_state = 401}, + [3430] = {.lex_state = 507}, + [3431] = {.lex_state = 1107}, + [3432] = {.lex_state = 538}, + [3433] = {.lex_state = 387}, + [3434] = {.lex_state = 402}, + [3435] = {.lex_state = 536}, + [3436] = {.lex_state = 536}, + [3437] = {.lex_state = 411}, + [3438] = {.lex_state = 536}, + [3439] = {.lex_state = 543}, + [3440] = {.lex_state = 387}, + [3441] = {.lex_state = 543}, + [3442] = {.lex_state = 405}, + [3443] = {.lex_state = 411}, + [3444] = {.lex_state = 462}, + [3445] = {.lex_state = 405}, + [3446] = {.lex_state = 536}, + [3447] = {.lex_state = 405}, + [3448] = {.lex_state = 1068}, + [3449] = {.lex_state = 1068}, + [3450] = {.lex_state = 462}, + [3451] = {.lex_state = 538}, + [3452] = {.lex_state = 411}, + [3453] = {.lex_state = 1068}, + [3454] = {.lex_state = 543}, + [3455] = {.lex_state = 543}, + [3456] = {.lex_state = 405}, + [3457] = {.lex_state = 543}, + [3458] = {.lex_state = 543}, + [3459] = {.lex_state = 1107}, + [3460] = {.lex_state = 120}, + [3461] = {.lex_state = 506}, + [3462] = {.lex_state = 405}, + [3463] = {.lex_state = 543}, + [3464] = {.lex_state = 543}, + [3465] = {.lex_state = 1108}, + [3466] = {.lex_state = 1112}, + [3467] = {.lex_state = 543}, + [3468] = {.lex_state = 386}, + [3469] = {.lex_state = 543}, + [3470] = {.lex_state = 1112}, + [3471] = {.lex_state = 516}, + [3472] = {.lex_state = 387}, + [3473] = {.lex_state = 387}, + [3474] = {.lex_state = 1068}, + [3475] = {.lex_state = 543}, + [3476] = {.lex_state = 10}, + [3477] = {.lex_state = 512}, + [3478] = {.lex_state = 517}, + [3479] = {.lex_state = 537}, + [3480] = {.lex_state = 537}, + [3481] = {.lex_state = 517}, + [3482] = {.lex_state = 512}, + [3483] = {.lex_state = 517}, + [3484] = {.lex_state = 581}, + [3485] = {.lex_state = 512}, + [3486] = {.lex_state = 1114}, + [3487] = {.lex_state = 10}, + [3488] = {.lex_state = 512}, + [3489] = {.lex_state = 10}, + [3490] = {.lex_state = 517}, + [3491] = {.lex_state = 4684}, + [3492] = {.lex_state = 517}, + [3493] = {.lex_state = 517}, + [3494] = {.lex_state = 512}, + [3495] = {.lex_state = 128}, + [3496] = {.lex_state = 512}, + [3497] = {.lex_state = 512}, + [3498] = {.lex_state = 512}, + [3499] = {.lex_state = 121}, + [3500] = {.lex_state = 517}, + [3501] = {.lex_state = 121}, + [3502] = {.lex_state = 121}, + [3503] = {.lex_state = 504}, + [3504] = {.lex_state = 474}, + [3505] = {.lex_state = 474}, + [3506] = {.lex_state = 512}, + [3507] = {.lex_state = 474}, + [3508] = {.lex_state = 383}, + [3509] = {.lex_state = 578}, + [3510] = {.lex_state = 1117}, + [3511] = {.lex_state = 1117}, + [3512] = {.lex_state = 539}, + [3513] = {.lex_state = 539}, + [3514] = {.lex_state = 1117}, + [3515] = {.lex_state = 123}, + [3516] = {.lex_state = 1068}, + [3517] = {.lex_state = 464}, + [3518] = {.lex_state = 1068}, + [3519] = {.lex_state = 517}, + [3520] = {.lex_state = 121}, + [3521] = {.lex_state = 578}, + [3522] = {.lex_state = 578}, + [3523] = {.lex_state = 578}, + [3524] = {.lex_state = 512}, + [3525] = {.lex_state = 464}, + [3526] = {.lex_state = 464}, + [3527] = {.lex_state = 508}, + [3528] = {.lex_state = 525}, + [3529] = {.lex_state = 581}, + [3530] = {.lex_state = 581}, + [3531] = {.lex_state = 509}, + [3532] = {.lex_state = 581}, + [3533] = {.lex_state = 517}, + [3534] = {.lex_state = 360}, + [3535] = {.lex_state = 2569}, + [3536] = {.lex_state = 388}, + [3537] = {.lex_state = 504}, + [3538] = {.lex_state = 579}, + [3539] = {.lex_state = 578}, + [3540] = {.lex_state = 527}, + [3541] = {.lex_state = 1117}, + [3542] = {.lex_state = 512}, + [3543] = {.lex_state = 504}, + [3544] = {.lex_state = 1068}, + [3545] = {.lex_state = 388}, + [3546] = {.lex_state = 388}, + [3547] = {.lex_state = 388}, + [3548] = {.lex_state = 1068}, + [3549] = {.lex_state = 10}, + [3550] = {.lex_state = 403}, + [3551] = {.lex_state = 403}, + [3552] = {.lex_state = 504}, + [3553] = {.lex_state = 403}, + [3554] = {.lex_state = 403}, + [3555] = {.lex_state = 1177}, + [3556] = {.lex_state = 192}, + [3557] = {.lex_state = 540}, + [3558] = {.lex_state = 512}, + [3559] = {.lex_state = 1108}, + [3560] = {.lex_state = 10}, + [3561] = {.lex_state = 1068}, + [3562] = {.lex_state = 539}, + [3563] = {.lex_state = 539}, + [3564] = {.lex_state = 10}, + [3565] = {.lex_state = 193}, + [3566] = {.lex_state = 537}, + [3567] = {.lex_state = 581}, + [3568] = {.lex_state = 403}, + [3569] = {.lex_state = 1108}, + [3570] = {.lex_state = 510}, + [3571] = {.lex_state = 510}, + [3572] = {.lex_state = 537}, + [3573] = {.lex_state = 537}, + [3574] = {.lex_state = 510}, + [3575] = {.lex_state = 537}, + [3576] = {.lex_state = 1068}, + [3577] = {.lex_state = 510}, + [3578] = {.lex_state = 517}, + [3579] = {.lex_state = 517}, + [3580] = {.lex_state = 517}, + [3581] = {.lex_state = 517}, + [3582] = {.lex_state = 388}, + [3583] = {.lex_state = 537}, + [3584] = {.lex_state = 517}, + [3585] = {.lex_state = 360}, + [3586] = {.lex_state = 1068}, + [3587] = {.lex_state = 517}, + [3588] = {.lex_state = 1108}, + [3589] = {.lex_state = 388}, + [3590] = {.lex_state = 388}, + [3591] = {.lex_state = 403}, + [3592] = {.lex_state = 511}, + [3593] = {.lex_state = 475}, + [3594] = {.lex_state = 384}, + [3595] = {.lex_state = 384}, + [3596] = {.lex_state = 475}, + [3597] = {.lex_state = 475}, + [3598] = {.lex_state = 472}, + [3599] = {.lex_state = 475}, + [3600] = {.lex_state = 472}, + [3601] = {.lex_state = 511}, + [3602] = {.lex_state = 472}, + [3603] = {.lex_state = 472}, + [3604] = {.lex_state = 505}, + [3605] = {.lex_state = 244}, + [3606] = {.lex_state = 1117}, + [3607] = {.lex_state = 530}, + [3608] = {.lex_state = 530}, + [3609] = {.lex_state = 475}, + [3610] = {.lex_state = 530}, + [3611] = {.lex_state = 403}, + [3612] = {.lex_state = 533}, + [3613] = {.lex_state = 475}, + [3614] = {.lex_state = 191}, + [3615] = {.lex_state = 505}, + [3616] = {.lex_state = 580}, + [3617] = {.lex_state = 532}, + [3618] = {.lex_state = 511}, + [3619] = {.lex_state = 505}, + [3620] = {.lex_state = 122}, + [3621] = {.lex_state = 505}, + [3622] = {.lex_state = 514}, + [3623] = {.lex_state = 1117}, + [3624] = {.lex_state = 1118}, + [3625] = {.lex_state = 403}, + [3626] = {.lex_state = 124}, + [3627] = {.lex_state = 493}, + [3628] = {.lex_state = 491}, + [3629] = {.lex_state = 191}, + [3630] = {.lex_state = 122}, + [3631] = {.lex_state = 122}, + [3632] = {.lex_state = 191}, + [3633] = {.lex_state = 532}, + [3634] = {.lex_state = 524}, + [3635] = {.lex_state = 1177}, + [3636] = {.lex_state = 532}, + [3637] = {.lex_state = 475}, + [3638] = {.lex_state = 384}, + [3639] = {.lex_state = 532}, + [3640] = {.lex_state = 505}, + [3641] = {.lex_state = 513}, + [3642] = {.lex_state = 475}, + [3643] = {.lex_state = 580}, + [3644] = {.lex_state = 580}, + [3645] = {.lex_state = 580}, + [3646] = {.lex_state = 10}, + [3647] = {.lex_state = 1118}, + [3648] = {.lex_state = 1140}, + [3649] = {.lex_state = 403}, + [3650] = {.lex_state = 1140}, + [3651] = {.lex_state = 505}, + [3652] = {.lex_state = 403}, + [3653] = {.lex_state = 1118}, + [3654] = {.lex_state = 1140}, + [3655] = {.lex_state = 1180}, + [3656] = {.lex_state = 505}, + [3657] = {.lex_state = 1180}, + [3658] = {.lex_state = 403}, + [3659] = {.lex_state = 1180}, + [3660] = {.lex_state = 2569}, + [3661] = {.lex_state = 532}, + [3662] = {.lex_state = 1118}, + [3663] = {.lex_state = 1140}, + [3664] = {.lex_state = 403}, + [3665] = {.lex_state = 1118}, + [3666] = {.lex_state = 384}, + [3667] = {.lex_state = 511}, + [3668] = {.lex_state = 475}, + [3669] = {.lex_state = 1039}, + [3670] = {.lex_state = 192}, + [3671] = {.lex_state = 532}, + [3672] = {.lex_state = 513}, + [3673] = {.lex_state = 131}, + [3674] = {.lex_state = 384}, + [3675] = {.lex_state = 1117}, + [3676] = {.lex_state = 192}, + [3677] = {.lex_state = 475}, + [3678] = {.lex_state = 531}, + [3679] = {.lex_state = 191}, + [3680] = {.lex_state = 494}, + [3681] = {.lex_state = 192}, + [3682] = {.lex_state = 511}, + [3683] = {.lex_state = 511}, + [3684] = {.lex_state = 511}, + [3685] = {.lex_state = 538}, + [3686] = {.lex_state = 129}, + [3687] = {.lex_state = 538}, + [3688] = {.lex_state = 538}, + [3689] = {.lex_state = 129}, + [3690] = {.lex_state = 124}, + [3691] = {.lex_state = 528}, + [3692] = {.lex_state = 1140}, + [3693] = {.lex_state = 1180}, + [3694] = {.lex_state = 1068}, + [3695] = {.lex_state = 403}, + [3696] = {.lex_state = 124}, + [3697] = {.lex_state = 2570}, + [3698] = {.lex_state = 532}, + [3699] = {.lex_state = 361}, + [3700] = {.lex_state = 475}, + [3701] = {.lex_state = 529}, + [3702] = {.lex_state = 361}, + [3703] = {.lex_state = 124}, + [3704] = {.lex_state = 1068}, + [3705] = {.lex_state = 580}, + [3706] = {.lex_state = 532}, + [3707] = {.lex_state = 15}, + [3708] = {.lex_state = 10}, + [3709] = {.lex_state = 1038}, + [3710] = {.lex_state = 532}, + [3711] = {.lex_state = 1067}, + [3712] = {.lex_state = 532}, + [3713] = {.lex_state = 1068}, + [3714] = {.lex_state = 532}, + [3715] = {.lex_state = 532}, + [3716] = {.lex_state = 129}, + [3717] = {.lex_state = 532}, + [3718] = {.lex_state = 1117}, + [3719] = {.lex_state = 532}, + [3720] = {.lex_state = 129}, + [3721] = {.lex_state = 403}, + [3722] = {.lex_state = 122}, + [3723] = {.lex_state = 513}, + [3724] = {.lex_state = 513}, + [3725] = {.lex_state = 475}, + [3726] = {.lex_state = 1068}, + [3727] = {.lex_state = 1068}, + [3728] = {.lex_state = 526}, + [3729] = {.lex_state = 191}, + [3730] = {.lex_state = 532}, + [3731] = {.lex_state = 532}, + [3732] = {.lex_state = 532}, + [3733] = {.lex_state = 532}, + [3734] = {.lex_state = 130}, + [3735] = {.lex_state = 132}, + [3736] = {.lex_state = 532}, + [3737] = {.lex_state = 324}, + [3738] = {.lex_state = 532}, + [3739] = {.lex_state = 132}, + [3740] = {.lex_state = 1180}, + [3741] = {.lex_state = 1180}, + [3742] = {.lex_state = 532}, + [3743] = {.lex_state = 1180}, + [3744] = {.lex_state = 130}, + [3745] = {.lex_state = 384}, + [3746] = {.lex_state = 1068}, + [3747] = {.lex_state = 1118}, + [3748] = {.lex_state = 512}, + [3749] = {.lex_state = 1067}, + [3750] = {.lex_state = 364}, + [3751] = {.lex_state = 532}, + [3752] = {.lex_state = 532}, + [3753] = {.lex_state = 1123}, + [3754] = {.lex_state = 130}, + [3755] = {.lex_state = 512}, + [3756] = {.lex_state = 2570}, + [3757] = {.lex_state = 1118}, + [3758] = {.lex_state = 1118}, + [3759] = {.lex_state = 345}, + [3760] = {.lex_state = 532}, + [3761] = {.lex_state = 532}, + [3762] = {.lex_state = 125}, + [3763] = {.lex_state = 245}, + [3764] = {.lex_state = 532}, + [3765] = {.lex_state = 532}, + [3766] = {.lex_state = 1181}, + [3767] = {.lex_state = 125}, + [3768] = {.lex_state = 1181}, + [3769] = {.lex_state = 532}, + [3770] = {.lex_state = 1181}, + [3771] = {.lex_state = 1068}, + [3772] = {.lex_state = 125}, + [3773] = {.lex_state = 532}, + [3774] = {.lex_state = 1044}, + [3775] = {.lex_state = 191}, + [3776] = {.lex_state = 1067}, + [3777] = {.lex_state = 495}, + [3778] = {.lex_state = 345}, + [3779] = {.lex_state = 1068}, + [3780] = {.lex_state = 191}, + [3781] = {.lex_state = 1044}, + [3782] = {.lex_state = 499}, + [3783] = {.lex_state = 532}, + [3784] = {.lex_state = 532}, + [3785] = {.lex_state = 532}, + [3786] = {.lex_state = 384}, + [3787] = {.lex_state = 1140}, + [3788] = {.lex_state = 499}, + [3789] = {.lex_state = 125}, + [3790] = {.lex_state = 345}, + [3791] = {.lex_state = 532}, + [3792] = {.lex_state = 1044}, + [3793] = {.lex_state = 532}, + [3794] = {.lex_state = 532}, + [3795] = {.lex_state = 1140}, + [3796] = {.lex_state = 500}, + [3797] = {.lex_state = 1181}, + [3798] = {.lex_state = 1140}, + [3799] = {.lex_state = 499}, + [3800] = {.lex_state = 1118}, + [3801] = {.lex_state = 194}, + [3802] = {.lex_state = 532}, + [3803] = {.lex_state = 1044}, + [3804] = {.lex_state = 384}, + [3805] = {.lex_state = 532}, + [3806] = {.lex_state = 532}, + [3807] = {.lex_state = 1140}, + [3808] = {.lex_state = 532}, + [3809] = {.lex_state = 345}, + [3810] = {.lex_state = 490}, + [3811] = {.lex_state = 532}, + [3812] = {.lex_state = 194}, + [3813] = {.lex_state = 532}, + [3814] = {.lex_state = 470}, + [3815] = {.lex_state = 470}, + [3816] = {.lex_state = 1118}, + [3817] = {.lex_state = 532}, + [3818] = {.lex_state = 532}, + [3819] = {.lex_state = 532}, + [3820] = {.lex_state = 532}, + [3821] = {.lex_state = 503}, + [3822] = {.lex_state = 1140}, + [3823] = {.lex_state = 532}, + [3824] = {.lex_state = 1140}, + [3825] = {.lex_state = 532}, + [3826] = {.lex_state = 1067}, + [3827] = {.lex_state = 1140}, + [3828] = {.lex_state = 1180}, + [3829] = {.lex_state = 16}, + [3830] = {.lex_state = 532}, + [3831] = {.lex_state = 582}, + [3832] = {.lex_state = 582}, + [3833] = {.lex_state = 246}, + [3834] = {.lex_state = 532}, + [3835] = {.lex_state = 266}, + [3836] = {.lex_state = 532}, + [3837] = {.lex_state = 532}, + [3838] = {.lex_state = 1140}, + [3839] = {.lex_state = 465}, + [3840] = {.lex_state = 497}, + [3841] = {.lex_state = 345}, + [3842] = {.lex_state = 1181}, + [3843] = {.lex_state = 114}, + [3844] = {.lex_state = 1038}, + [3845] = {.lex_state = 532}, + [3846] = {.lex_state = 194}, + [3847] = {.lex_state = 532}, + [3848] = {.lex_state = 582}, + [3849] = {.lex_state = 16}, + [3850] = {.lex_state = 532}, + [3851] = {.lex_state = 324}, + [3852] = {.lex_state = 194}, + [3853] = {.lex_state = 532}, + [3854] = {.lex_state = 1140}, + [3855] = {.lex_state = 1039}, + [3856] = {.lex_state = 1068}, + [3857] = {.lex_state = 1040}, + [3858] = {.lex_state = 1140}, + [3859] = {.lex_state = 532}, + [3860] = {.lex_state = 492}, + [3861] = {.lex_state = 582}, + [3862] = {.lex_state = 1040}, + [3863] = {.lex_state = 16}, + [3864] = {.lex_state = 191}, + [3865] = {.lex_state = 1040}, + [3866] = {.lex_state = 130}, + [3867] = {.lex_state = 582}, + [3868] = {.lex_state = 532}, + [3869] = {.lex_state = 532}, + [3870] = {.lex_state = 384}, + [3871] = {.lex_state = 532}, + [3872] = {.lex_state = 132}, + [3873] = {.lex_state = 1164}, + [3874] = {.lex_state = 532}, + [3875] = {.lex_state = 16}, + [3876] = {.lex_state = 1068}, + [3877] = {.lex_state = 191}, + [3878] = {.lex_state = 532}, + [3879] = {.lex_state = 532}, + [3880] = {.lex_state = 532}, + [3881] = {.lex_state = 4685}, + [3882] = {.lex_state = 1040}, + [3883] = {.lex_state = 470}, + [3884] = {.lex_state = 470}, + [3885] = {.lex_state = 132}, + [3886] = {.lex_state = 471}, + [3887] = {.lex_state = 532}, + [3888] = {.lex_state = 1043}, + [3889] = {.lex_state = 532}, + [3890] = {.lex_state = 512}, + [3891] = {.lex_state = 364}, + [3892] = {.lex_state = 532}, + [3893] = {.lex_state = 364}, + [3894] = {.lex_state = 364}, + [3895] = {.lex_state = 364}, + [3896] = {.lex_state = 1038}, + [3897] = {.lex_state = 1044}, + [3898] = {.lex_state = 1046}, + [3899] = {.lex_state = 364}, + [3900] = {.lex_state = 1164}, + [3901] = {.lex_state = 364}, + [3902] = {.lex_state = 732}, + [3903] = {.lex_state = 267}, + [3904] = {.lex_state = 472}, + [3905] = {.lex_state = 364}, + [3906] = {.lex_state = 1041}, + [3907] = {.lex_state = 364}, + [3908] = {.lex_state = 364}, + [3909] = {.lex_state = 472}, + [3910] = {.lex_state = 364}, + [3911] = {.lex_state = 329}, + [3912] = {.lex_state = 472}, + [3913] = {.lex_state = 364}, + [3914] = {.lex_state = 364}, + [3915] = {.lex_state = 364}, + [3916] = {.lex_state = 1067}, + [3917] = {.lex_state = 364}, + [3918] = {.lex_state = 364}, + [3919] = {.lex_state = 364}, + [3920] = {.lex_state = 364}, + [3921] = {.lex_state = 364}, + [3922] = {.lex_state = 1044}, + [3923] = {.lex_state = 364}, + [3924] = {.lex_state = 364}, + [3925] = {.lex_state = 1067}, + [3926] = {.lex_state = 360}, + [3927] = {.lex_state = 364}, + [3928] = {.lex_state = 364}, + [3929] = {.lex_state = 185}, + [3930] = {.lex_state = 325}, + [3931] = {.lex_state = 1162}, + [3932] = {.lex_state = 1162}, + [3933] = {.lex_state = 1162}, + [3934] = {.lex_state = 364}, + [3935] = {.lex_state = 732}, + [3936] = {.lex_state = 325}, + [3937] = {.lex_state = 345}, + [3938] = {.lex_state = 1085}, + [3939] = {.lex_state = 345}, + [3940] = {.lex_state = 364}, + [3941] = {.lex_state = 364}, + [3942] = {.lex_state = 364}, + [3943] = {.lex_state = 1043}, + [3944] = {.lex_state = 1045}, + [3945] = {.lex_state = 115}, + [3946] = {.lex_state = 1045}, + [3947] = {.lex_state = 364}, + [3948] = {.lex_state = 191}, + [3949] = {.lex_state = 1045}, + [3950] = {.lex_state = 185}, + [3951] = {.lex_state = 1181}, + [3952] = {.lex_state = 1181}, + [3953] = {.lex_state = 1041}, + [3954] = {.lex_state = 1181}, + [3955] = {.lex_state = 364}, + [3956] = {.lex_state = 364}, + [3957] = {.lex_state = 364}, + [3958] = {.lex_state = 326}, + [3959] = {.lex_state = 364}, + [3960] = {.lex_state = 1044}, + [3961] = {.lex_state = 466}, + [3962] = {.lex_state = 364}, + [3963] = {.lex_state = 364}, + [3964] = {.lex_state = 133}, + [3965] = {.lex_state = 1127}, + [3966] = {.lex_state = 364}, + [3967] = {.lex_state = 364}, + [3968] = {.lex_state = 364}, + [3969] = {.lex_state = 364}, + [3970] = {.lex_state = 364}, + [3971] = {.lex_state = 1124}, + [3972] = {.lex_state = 364}, + [3973] = {.lex_state = 364}, + [3974] = {.lex_state = 364}, + [3975] = {.lex_state = 115}, + [3976] = {.lex_state = 468}, + [3977] = {.lex_state = 364}, + [3978] = {.lex_state = 364}, + [3979] = {.lex_state = 468}, + [3980] = {.lex_state = 468}, + [3981] = {.lex_state = 1140}, + [3982] = {.lex_state = 1067}, + [3983] = {.lex_state = 1046}, + [3984] = {.lex_state = 1068}, + [3985] = {.lex_state = 185}, + [3986] = {.lex_state = 1186}, + [3987] = {.lex_state = 364}, + [3988] = {.lex_state = 364}, + [3989] = {.lex_state = 1140}, + [3990] = {.lex_state = 1068}, + [3991] = {.lex_state = 1140}, + [3992] = {.lex_state = 1044}, + [3993] = {.lex_state = 115}, + [3994] = {.lex_state = 1046}, + [3995] = {.lex_state = 364}, + [3996] = {.lex_state = 247}, + [3997] = {.lex_state = 364}, + [3998] = {.lex_state = 1140}, + [3999] = {.lex_state = 191}, + [4000] = {.lex_state = 364}, + [4001] = {.lex_state = 364}, + [4002] = {.lex_state = 364}, + [4003] = {.lex_state = 364}, + [4004] = {.lex_state = 185}, + [4005] = {.lex_state = 21}, + [4006] = {.lex_state = 1181}, + [4007] = {.lex_state = 1046}, + [4008] = {.lex_state = 364}, + [4009] = {.lex_state = 364}, + [4010] = {.lex_state = 1040}, + [4011] = {.lex_state = 364}, + [4012] = {.lex_state = 732}, + [4013] = {.lex_state = 1067}, + [4014] = {.lex_state = 364}, + [4015] = {.lex_state = 364}, + [4016] = {.lex_state = 185}, + [4017] = {.lex_state = 364}, + [4018] = {.lex_state = 1181}, + [4019] = {.lex_state = 191}, + [4020] = {.lex_state = 329}, + [4021] = {.lex_state = 1046}, + [4022] = {.lex_state = 364}, + [4023] = {.lex_state = 364}, + [4024] = {.lex_state = 133}, + [4025] = {.lex_state = 364}, + [4026] = {.lex_state = 364}, + [4027] = {.lex_state = 364}, + [4028] = {.lex_state = 133}, + [4029] = {.lex_state = 364}, + [4030] = {.lex_state = 364}, + [4031] = {.lex_state = 325}, + [4032] = {.lex_state = 325}, + [4033] = {.lex_state = 1140}, + [4034] = {.lex_state = 1040}, + [4035] = {.lex_state = 133}, + [4036] = {.lex_state = 1068}, + [4037] = {.lex_state = 1067}, + [4038] = {.lex_state = 364}, + [4039] = {.lex_state = 325}, + [4040] = {.lex_state = 268}, + [4041] = {.lex_state = 1123}, + [4042] = {.lex_state = 1127}, + [4043] = {.lex_state = 1040}, + [4044] = {.lex_state = 1127}, + [4045] = {.lex_state = 364}, + [4046] = {.lex_state = 1040}, + [4047] = {.lex_state = 466}, + [4048] = {.lex_state = 364}, + [4049] = {.lex_state = 325}, + [4050] = {.lex_state = 1127}, + [4051] = {.lex_state = 1067}, + [4052] = {.lex_state = 1140}, + [4053] = {.lex_state = 1084}, + [4054] = {.lex_state = 1140}, + [4055] = {.lex_state = 1041}, + [4056] = {.lex_state = 1140}, + [4057] = {.lex_state = 17}, + [4058] = {.lex_state = 364}, + [4059] = {.lex_state = 1041}, + [4060] = {.lex_state = 364}, + [4061] = {.lex_state = 1041}, + [4062] = {.lex_state = 364}, + [4063] = {.lex_state = 364}, + [4064] = {.lex_state = 17}, + [4065] = {.lex_state = 364}, + [4066] = {.lex_state = 364}, + [4067] = {.lex_state = 360}, + [4068] = {.lex_state = 17}, + [4069] = {.lex_state = 364}, + [4070] = {.lex_state = 364}, + [4071] = {.lex_state = 364}, + [4072] = {.lex_state = 364}, + [4073] = {.lex_state = 364}, + [4074] = {.lex_state = 17}, + [4075] = {.lex_state = 1045}, + [4076] = {.lex_state = 1067}, + [4077] = {.lex_state = 364}, + [4078] = {.lex_state = 364}, + [4079] = {.lex_state = 17}, + [4080] = {.lex_state = 364}, + [4081] = {.lex_state = 732}, + [4082] = {.lex_state = 115}, + [4083] = {.lex_state = 1128}, + [4084] = {.lex_state = 1041}, + [4085] = {.lex_state = 1162}, + [4086] = {.lex_state = 195}, + [4087] = {.lex_state = 1039}, + [4088] = {.lex_state = 1158}, + [4089] = {.lex_state = 1162}, + [4090] = {.lex_state = 1046}, + [4091] = {.lex_state = 469}, + [4092] = {.lex_state = 1039}, + [4093] = {.lex_state = 469}, + [4094] = {.lex_state = 469}, + [4095] = {.lex_state = 327}, + [4096] = {.lex_state = 134}, + [4097] = {.lex_state = 195}, + [4098] = {.lex_state = 469}, + [4099] = {.lex_state = 195}, + [4100] = {.lex_state = 1186}, + [4101] = {.lex_state = 328}, + [4102] = {.lex_state = 469}, + [4103] = {.lex_state = 1158}, + [4104] = {.lex_state = 469}, + [4105] = {.lex_state = 1127}, + [4106] = {.lex_state = 1162}, + [4107] = {.lex_state = 469}, + [4108] = {.lex_state = 1067}, + [4109] = {.lex_state = 1162}, + [4110] = {.lex_state = 1124}, + [4111] = {.lex_state = 22}, + [4112] = {.lex_state = 1128}, + [4113] = {.lex_state = 1067}, + [4114] = {.lex_state = 195}, + [4115] = {.lex_state = 732}, + [4116] = {.lex_state = 330}, + [4117] = {.lex_state = 469}, + [4118] = {.lex_state = 1047}, + [4119] = {.lex_state = 330}, + [4120] = {.lex_state = 1158}, + [4121] = {.lex_state = 1162}, + [4122] = {.lex_state = 1086}, + [4123] = {.lex_state = 469}, + [4124] = {.lex_state = 330}, + [4125] = {.lex_state = 195}, + [4126] = {.lex_state = 185}, + [4127] = {.lex_state = 1190}, + [4128] = {.lex_state = 1190}, + [4129] = {.lex_state = 1039}, + [4130] = {.lex_state = 1190}, + [4131] = {.lex_state = 1162}, + [4132] = {.lex_state = 330}, + [4133] = {.lex_state = 185}, + [4134] = {.lex_state = 1039}, + [4135] = {.lex_state = 1046}, + [4136] = {.lex_state = 327}, + [4137] = {.lex_state = 1194}, + [4138] = {.lex_state = 195}, + [4139] = {.lex_state = 1120}, + [4140] = {.lex_state = 195}, + [4141] = {.lex_state = 1158}, + [4142] = {.lex_state = 1158}, + [4143] = {.lex_state = 1162}, + [4144] = {.lex_state = 1162}, + [4145] = {.lex_state = 469}, + [4146] = {.lex_state = 469}, + [4147] = {.lex_state = 469}, + [4148] = {.lex_state = 269}, + [4149] = {.lex_state = 1162}, + [4150] = {.lex_state = 1046}, + [4151] = {.lex_state = 1162}, + [4152] = {.lex_state = 1158}, + [4153] = {.lex_state = 116}, + [4154] = {.lex_state = 330}, + [4155] = {.lex_state = 327}, + [4156] = {.lex_state = 185}, + [4157] = {.lex_state = 1038}, + [4158] = {.lex_state = 185}, + [4159] = {.lex_state = 1067}, + [4160] = {.lex_state = 361}, + [4161] = {.lex_state = 191}, + [4162] = {.lex_state = 1158}, + [4163] = {.lex_state = 1038}, + [4164] = {.lex_state = 1128}, + [4165] = {.lex_state = 1045}, + [4166] = {.lex_state = 191}, + [4167] = {.lex_state = 1128}, + [4168] = {.lex_state = 116}, + [4169] = {.lex_state = 469}, + [4170] = {.lex_state = 1067}, + [4171] = {.lex_state = 1162}, + [4172] = {.lex_state = 469}, + [4173] = {.lex_state = 364}, + [4174] = {.lex_state = 1038}, + [4175] = {.lex_state = 116}, + [4176] = {.lex_state = 327}, + [4177] = {.lex_state = 1187}, + [4178] = {.lex_state = 191}, + [4179] = {.lex_state = 364}, + [4180] = {.lex_state = 1046}, + [4181] = {.lex_state = 1140}, + [4182] = {.lex_state = 1127}, + [4183] = {.lex_state = 1067}, + [4184] = {.lex_state = 1128}, + [4185] = {.lex_state = 1190}, + [4186] = {.lex_state = 469}, + [4187] = {.lex_state = 361}, + [4188] = {.lex_state = 1039}, + [4189] = {.lex_state = 1162}, + [4190] = {.lex_state = 1067}, + [4191] = {.lex_state = 15}, + [4192] = {.lex_state = 361}, + [4193] = {.lex_state = 1038}, + [4194] = {.lex_state = 361}, + [4195] = {.lex_state = 1127}, + [4196] = {.lex_state = 1158}, + [4197] = {.lex_state = 116}, + [4198] = {.lex_state = 469}, + [4199] = {.lex_state = 1041}, + [4200] = {.lex_state = 1085}, + [4201] = {.lex_state = 1068}, + [4202] = {.lex_state = 1090}, + [4203] = {.lex_state = 1128}, + [4204] = {.lex_state = 1041}, + [4205] = {.lex_state = 15}, + [4206] = {.lex_state = 1041}, + [4207] = {.lex_state = 469}, + [4208] = {.lex_state = 242}, + [4209] = {.lex_state = 1084}, + [4210] = {.lex_state = 1046}, + [4211] = {.lex_state = 1041}, + [4212] = {.lex_state = 1047}, + [4213] = {.lex_state = 116}, + [4214] = {.lex_state = 191}, + [4215] = {.lex_state = 1045}, + [4216] = {.lex_state = 1089}, + [4217] = {.lex_state = 1140}, + [4218] = {.lex_state = 1045}, + [4219] = {.lex_state = 1045}, + [4220] = {.lex_state = 195}, + [4221] = {.lex_state = 469}, + [4222] = {.lex_state = 15}, + [4223] = {.lex_state = 469}, + [4224] = {.lex_state = 469}, + [4225] = {.lex_state = 195}, + [4226] = {.lex_state = 1067}, + [4227] = {.lex_state = 1158}, + [4228] = {.lex_state = 1038}, + [4229] = {.lex_state = 195}, + [4230] = {.lex_state = 1162}, + [4231] = {.lex_state = 1047}, + [4232] = {.lex_state = 1127}, + [4233] = {.lex_state = 1140}, + [4234] = {.lex_state = 469}, + [4235] = {.lex_state = 1038}, + [4236] = {.lex_state = 469}, + [4237] = {.lex_state = 469}, + [4238] = {.lex_state = 469}, + [4239] = {.lex_state = 469}, + [4240] = {.lex_state = 1067}, + [4241] = {.lex_state = 1128}, + [4242] = {.lex_state = 1158}, + [4243] = {.lex_state = 1047}, + [4244] = {.lex_state = 15}, + [4245] = {.lex_state = 1047}, + [4246] = {.lex_state = 1162}, + [4247] = {.lex_state = 146}, + [4248] = {.lex_state = 15}, + [4249] = {.lex_state = 1068}, + [4250] = {.lex_state = 469}, + [4251] = {.lex_state = 469}, + [4252] = {.lex_state = 1162}, + [4253] = {.lex_state = 1162}, + [4254] = {.lex_state = 195}, + [4255] = {.lex_state = 469}, + [4256] = {.lex_state = 151}, + [4257] = {.lex_state = 141}, + [4258] = {.lex_state = 1038}, + [4259] = {.lex_state = 185}, + [4260] = {.lex_state = 1070}, + [4261] = {.lex_state = 1128}, + [4262] = {.lex_state = 180}, + [4263] = {.lex_state = 1128}, + [4264] = {.lex_state = 151}, + [4265] = {.lex_state = 135}, + [4266] = {.lex_state = 1038}, + [4267] = {.lex_state = 1158}, + [4268] = {.lex_state = 1086}, + [4269] = {.lex_state = 185}, + [4270] = {.lex_state = 1128}, + [4271] = {.lex_state = 1067}, + [4272] = {.lex_state = 1067}, + [4273] = {.lex_state = 1067}, + [4274] = {.lex_state = 1067}, + [4275] = {.lex_state = 328}, + [4276] = {.lex_state = 185}, + [4277] = {.lex_state = 1128}, + [4278] = {.lex_state = 1038}, + [4279] = {.lex_state = 1128}, + [4280] = {.lex_state = 19}, + [4281] = {.lex_state = 3168}, + [4282] = {.lex_state = 19}, + [4283] = {.lex_state = 328}, + [4284] = {.lex_state = 1190}, + [4285] = {.lex_state = 135}, + [4286] = {.lex_state = 1074}, + [4287] = {.lex_state = 1074}, + [4288] = {.lex_state = 151}, + [4289] = {.lex_state = 1128}, + [4290] = {.lex_state = 1128}, + [4291] = {.lex_state = 195}, + [4292] = {.lex_state = 195}, + [4293] = {.lex_state = 1067}, + [4294] = {.lex_state = 1195}, + [4295] = {.lex_state = 1191}, + [4296] = {.lex_state = 1162}, + [4297] = {.lex_state = 1191}, + [4298] = {.lex_state = 1158}, + [4299] = {.lex_state = 1191}, + [4300] = {.lex_state = 135}, + [4301] = {.lex_state = 1158}, + [4302] = {.lex_state = 1074}, + [4303] = {.lex_state = 1091}, + [4304] = {.lex_state = 147}, + [4305] = {.lex_state = 732}, + [4306] = {.lex_state = 1070}, + [4307] = {.lex_state = 1156}, + [4308] = {.lex_state = 157}, + [4309] = {.lex_state = 135}, + [4310] = {.lex_state = 1038}, + [4311] = {.lex_state = 1070}, + [4312] = {.lex_state = 1090}, + [4313] = {.lex_state = 1070}, + [4314] = {.lex_state = 1158}, + [4315] = {.lex_state = 180}, + [4316] = {.lex_state = 1195}, + [4317] = {.lex_state = 1195}, + [4318] = {.lex_state = 1191}, + [4319] = {.lex_state = 180}, + [4320] = {.lex_state = 732}, + [4321] = {.lex_state = 1158}, + [4322] = {.lex_state = 1162}, + [4323] = {.lex_state = 1158}, + [4324] = {.lex_state = 1158}, + [4325] = {.lex_state = 1089}, + [4326] = {.lex_state = 262}, + [4327] = {.lex_state = 1120}, + [4328] = {.lex_state = 1039}, + [4329] = {.lex_state = 1190}, + [4330] = {.lex_state = 1162}, + [4331] = {.lex_state = 1162}, + [4332] = {.lex_state = 1191}, + [4333] = {.lex_state = 1158}, + [4334] = {.lex_state = 180}, + [4335] = {.lex_state = 180}, + [4336] = {.lex_state = 1047}, + [4337] = {.lex_state = 1190}, + [4338] = {.lex_state = 1191}, + [4339] = {.lex_state = 1067}, + [4340] = {.lex_state = 1142}, + [4341] = {.lex_state = 1047}, + [4342] = {.lex_state = 477}, + [4343] = {.lex_state = 1162}, + [4344] = {.lex_state = 1098}, + [4345] = {.lex_state = 1158}, + [4346] = {.lex_state = 477}, + [4347] = {.lex_state = 1162}, + [4348] = {.lex_state = 1047}, + [4349] = {.lex_state = 1162}, + [4350] = {.lex_state = 1047}, + [4351] = {.lex_state = 328}, + [4352] = {.lex_state = 1190}, + [4353] = {.lex_state = 1098}, + [4354] = {.lex_state = 1098}, + [4355] = {.lex_state = 1067}, + [4356] = {.lex_state = 1098}, + [4357] = {.lex_state = 1098}, + [4358] = {.lex_state = 1039}, + [4359] = {.lex_state = 1187}, + [4360] = {.lex_state = 1158}, + [4361] = {.lex_state = 154}, + [4362] = {.lex_state = 1158}, + [4363] = {.lex_state = 331}, + [4364] = {.lex_state = 1194}, + [4365] = {.lex_state = 1038}, + [4366] = {.lex_state = 1191}, + [4367] = {.lex_state = 1158}, + [4368] = {.lex_state = 1038}, + [4369] = {.lex_state = 1039}, + [4370] = {.lex_state = 1183}, + [4371] = {.lex_state = 1067}, + [4372] = {.lex_state = 1074}, + [4373] = {.lex_state = 195}, + [4374] = {.lex_state = 732}, + [4375] = {.lex_state = 1158}, + [4376] = {.lex_state = 1162}, + [4377] = {.lex_state = 1162}, + [4378] = {.lex_state = 19}, + [4379] = {.lex_state = 1162}, + [4380] = {.lex_state = 19}, + [4381] = {.lex_state = 1162}, + [4382] = {.lex_state = 1162}, + [4383] = {.lex_state = 1158}, + [4384] = {.lex_state = 1047}, + [4385] = {.lex_state = 195}, + [4386] = {.lex_state = 1067}, + [4387] = {.lex_state = 185}, + [4388] = {.lex_state = 1067}, + [4389] = {.lex_state = 1195}, + [4390] = {.lex_state = 1158}, + [4391] = {.lex_state = 138}, + [4392] = {.lex_state = 1039}, + [4393] = {.lex_state = 151}, + [4394] = {.lex_state = 1162}, + [4395] = {.lex_state = 1039}, + [4396] = {.lex_state = 1195}, + [4397] = {.lex_state = 1191}, + [4398] = {.lex_state = 1142}, + [4399] = {.lex_state = 1195}, + [4400] = {.lex_state = 1098}, + [4401] = {.lex_state = 1142}, + [4402] = {.lex_state = 1098}, + [4403] = {.lex_state = 1038}, + [4404] = {.lex_state = 1151}, + [4405] = {.lex_state = 185}, + [4406] = {.lex_state = 1067}, + [4407] = {.lex_state = 15}, + [4408] = {.lex_state = 1038}, + [4409] = {.lex_state = 195}, + [4410] = {.lex_state = 1067}, + [4411] = {.lex_state = 732}, + [4412] = {.lex_state = 1098}, + [4413] = {.lex_state = 1098}, + [4414] = {.lex_state = 1098}, + [4415] = {.lex_state = 1098}, + [4416] = {.lex_state = 158}, + [4417] = {.lex_state = 1158}, + [4418] = {.lex_state = 202}, + [4419] = {.lex_state = 136}, + [4420] = {.lex_state = 1153}, + [4421] = {.lex_state = 142}, + [4422] = {.lex_state = 1067}, + [4423] = {.lex_state = 1156}, + [4424] = {.lex_state = 1142}, + [4425] = {.lex_state = 332}, + [4426] = {.lex_state = 1067}, + [4427] = {.lex_state = 202}, + [4428] = {.lex_state = 1067}, + [4429] = {.lex_state = 148}, + [4430] = {.lex_state = 1191}, + [4431] = {.lex_state = 158}, + [4432] = {.lex_state = 1074}, + [4433] = {.lex_state = 1191}, + [4434] = {.lex_state = 1191}, + [4435] = {.lex_state = 152}, + [4436] = {.lex_state = 1191}, + [4437] = {.lex_state = 195}, + [4438] = {.lex_state = 365}, + [4439] = {.lex_state = 142}, + [4440] = {.lex_state = 1074}, + [4441] = {.lex_state = 1158}, + [4442] = {.lex_state = 1070}, + [4443] = {.lex_state = 1070}, + [4444] = {.lex_state = 732}, + [4445] = {.lex_state = 142}, + [4446] = {.lex_state = 1169}, + [4447] = {.lex_state = 202}, + [4448] = {.lex_state = 1098}, + [4449] = {.lex_state = 1142}, + [4450] = {.lex_state = 243}, + [4451] = {.lex_state = 1158}, + [4452] = {.lex_state = 139}, + [4453] = {.lex_state = 155}, + [4454] = {.lex_state = 732}, + [4455] = {.lex_state = 332}, + [4456] = {.lex_state = 136}, + [4457] = {.lex_state = 1195}, + [4458] = {.lex_state = 148}, + [4459] = {.lex_state = 155}, + [4460] = {.lex_state = 1070}, + [4461] = {.lex_state = 1195}, + [4462] = {.lex_state = 180}, + [4463] = {.lex_state = 142}, + [4464] = {.lex_state = 50}, + [4465] = {.lex_state = 136}, + [4466] = {.lex_state = 158}, + [4467] = {.lex_state = 148}, + [4468] = {.lex_state = 139}, + [4469] = {.lex_state = 1067}, + [4470] = {.lex_state = 202}, + [4471] = {.lex_state = 155}, + [4472] = {.lex_state = 332}, + [4473] = {.lex_state = 332}, + [4474] = {.lex_state = 1156}, + [4475] = {.lex_state = 1070}, + [4476] = {.lex_state = 1191}, + [4477] = {.lex_state = 1158}, + [4478] = {.lex_state = 180}, + [4479] = {.lex_state = 1142}, + [4480] = {.lex_state = 162}, + [4481] = {.lex_state = 1074}, + [4482] = {.lex_state = 3168}, + [4483] = {.lex_state = 1183}, + [4484] = {.lex_state = 185}, + [4485] = {.lex_state = 1158}, + [4486] = {.lex_state = 202}, + [4487] = {.lex_state = 1039}, + [4488] = {.lex_state = 1091}, + [4489] = {.lex_state = 136}, + [4490] = {.lex_state = 202}, + [4491] = {.lex_state = 191}, + [4492] = {.lex_state = 1195}, + [4493] = {.lex_state = 1191}, + [4494] = {.lex_state = 732}, + [4495] = {.lex_state = 152}, + [4496] = {.lex_state = 15}, + [4497] = {.lex_state = 1158}, + [4498] = {.lex_state = 1158}, + [4499] = {.lex_state = 1067}, + [4500] = {.lex_state = 732}, + [4501] = {.lex_state = 1158}, + [4502] = {.lex_state = 180}, + [4503] = {.lex_state = 185}, + [4504] = {.lex_state = 1039}, + [4505] = {.lex_state = 732}, + [4506] = {.lex_state = 148}, + [4507] = {.lex_state = 152}, + [4508] = {.lex_state = 15}, + [4509] = {.lex_state = 1098}, + [4510] = {.lex_state = 139}, + [4511] = {.lex_state = 165}, + [4512] = {.lex_state = 158}, + [4513] = {.lex_state = 136}, + [4514] = {.lex_state = 3168}, + [4515] = {.lex_state = 1039}, + [4516] = {.lex_state = 180}, + [4517] = {.lex_state = 195}, + [4518] = {.lex_state = 1195}, + [4519] = {.lex_state = 251}, + [4520] = {.lex_state = 1098}, + [4521] = {.lex_state = 1038}, + [4522] = {.lex_state = 1038}, + [4523] = {.lex_state = 139}, + [4524] = {.lex_state = 155}, + [4525] = {.lex_state = 152}, + [4526] = {.lex_state = 1074}, + [4527] = {.lex_state = 333}, + [4528] = {.lex_state = 202}, + [4529] = {.lex_state = 202}, + [4530] = {.lex_state = 140}, + [4531] = {.lex_state = 1142}, + [4532] = {.lex_state = 1098}, + [4533] = {.lex_state = 52}, + [4534] = {.lex_state = 1142}, + [4535] = {.lex_state = 1142}, + [4536] = {.lex_state = 1142}, + [4537] = {.lex_state = 1142}, + [4538] = {.lex_state = 1142}, + [4539] = {.lex_state = 1038}, + [4540] = {.lex_state = 1169}, + [4541] = {.lex_state = 140}, + [4542] = {.lex_state = 191}, + [4543] = {.lex_state = 277}, + [4544] = {.lex_state = 1142}, + [4545] = {.lex_state = 1142}, + [4546] = {.lex_state = 143}, + [4547] = {.lex_state = 191}, + [4548] = {.lex_state = 191}, + [4549] = {.lex_state = 191}, + [4550] = {.lex_state = 143}, + [4551] = {.lex_state = 191}, + [4552] = {.lex_state = 143}, + [4553] = {.lex_state = 191}, + [4554] = {.lex_state = 1039}, + [4555] = {.lex_state = 1142}, + [4556] = {.lex_state = 146}, + [4557] = {.lex_state = 118}, + [4558] = {.lex_state = 1142}, + [4559] = {.lex_state = 1142}, + [4560] = {.lex_state = 159}, + [4561] = {.lex_state = 143}, + [4562] = {.lex_state = 1076}, + [4563] = {.lex_state = 15}, + [4564] = {.lex_state = 191}, + [4565] = {.lex_state = 333}, + [4566] = {.lex_state = 1038}, + [4567] = {.lex_state = 249}, + [4568] = {.lex_state = 191}, + [4569] = {.lex_state = 191}, + [4570] = {.lex_state = 1142}, + [4571] = {.lex_state = 1038}, + [4572] = {.lex_state = 191}, + [4573] = {.lex_state = 191}, + [4574] = {.lex_state = 340}, + [4575] = {.lex_state = 1076}, + [4576] = {.lex_state = 146}, + [4577] = {.lex_state = 277}, + [4578] = {.lex_state = 277}, + [4579] = {.lex_state = 277}, + [4580] = {.lex_state = 149}, + [4581] = {.lex_state = 1076}, + [4582] = {.lex_state = 1142}, + [4583] = {.lex_state = 1142}, + [4584] = {.lex_state = 1142}, + [4585] = {.lex_state = 1075}, + [4586] = {.lex_state = 1075}, + [4587] = {.lex_state = 1076}, + [4588] = {.lex_state = 2535}, + [4589] = {.lex_state = 732}, + [4590] = {.lex_state = 1142}, + [4591] = {.lex_state = 732}, + [4592] = {.lex_state = 180}, + [4593] = {.lex_state = 180}, + [4594] = {.lex_state = 333}, + [4595] = {.lex_state = 180}, + [4596] = {.lex_state = 1142}, + [4597] = {.lex_state = 1076}, + [4598] = {.lex_state = 191}, + [4599] = {.lex_state = 191}, + [4600] = {.lex_state = 340}, + [4601] = {.lex_state = 340}, + [4602] = {.lex_state = 340}, + [4603] = {.lex_state = 333}, + [4604] = {.lex_state = 340}, + [4605] = {.lex_state = 333}, + [4606] = {.lex_state = 3168}, + [4607] = {.lex_state = 1071}, + [4608] = {.lex_state = 159}, + [4609] = {.lex_state = 159}, + [4610] = {.lex_state = 159}, + [4611] = {.lex_state = 51}, + [4612] = {.lex_state = 1142}, + [4613] = {.lex_state = 1142}, + [4614] = {.lex_state = 134}, + [4615] = {.lex_state = 191}, + [4616] = {.lex_state = 1098}, + [4617] = {.lex_state = 1039}, + [4618] = {.lex_state = 277}, + [4619] = {.lex_state = 146}, + [4620] = {.lex_state = 1142}, + [4621] = {.lex_state = 1142}, + [4622] = {.lex_state = 1142}, + [4623] = {.lex_state = 1038}, + [4624] = {.lex_state = 1142}, + [4625] = {.lex_state = 1076}, + [4626] = {.lex_state = 1142}, + [4627] = {.lex_state = 146}, + [4628] = {.lex_state = 1067}, + [4629] = {.lex_state = 163}, + [4630] = {.lex_state = 146}, + [4631] = {.lex_state = 1142}, + [4632] = {.lex_state = 1142}, + [4633] = {.lex_state = 1142}, + [4634] = {.lex_state = 166}, + [4635] = {.lex_state = 1038}, + [4636] = {.lex_state = 1038}, + [4637] = {.lex_state = 191}, + [4638] = {.lex_state = 166}, + [4639] = {.lex_state = 134}, + [4640] = {.lex_state = 248}, + [4641] = {.lex_state = 191}, + [4642] = {.lex_state = 134}, + [4643] = {.lex_state = 185}, + [4644] = {.lex_state = 185}, + [4645] = {.lex_state = 166}, + [4646] = {.lex_state = 185}, + [4647] = {.lex_state = 191}, + [4648] = {.lex_state = 1067}, + [4649] = {.lex_state = 149}, + [4650] = {.lex_state = 149}, + [4651] = {.lex_state = 159}, + [4652] = {.lex_state = 149}, + [4653] = {.lex_state = 140}, + [4654] = {.lex_state = 140}, + [4655] = {.lex_state = 140}, + [4656] = {.lex_state = 134}, + [4657] = {.lex_state = 1156}, + [4658] = {.lex_state = 134}, + [4659] = {.lex_state = 163}, + [4660] = {.lex_state = 1142}, + [4661] = {.lex_state = 163}, + [4662] = {.lex_state = 163}, + [4663] = {.lex_state = 191}, + [4664] = {.lex_state = 1142}, + [4665] = {.lex_state = 1067}, + [4666] = {.lex_state = 1067}, + [4667] = {.lex_state = 1142}, + [4668] = {.lex_state = 1142}, + [4669] = {.lex_state = 14}, + [4670] = {.lex_state = 250}, + [4671] = {.lex_state = 1142}, + [4672] = {.lex_state = 166}, + [4673] = {.lex_state = 1158}, + [4674] = {.lex_state = 1142}, + [4675] = {.lex_state = 191}, + [4676] = {.lex_state = 1076}, + [4677] = {.lex_state = 14}, + [4678] = {.lex_state = 1142}, + [4679] = {.lex_state = 366}, + [4680] = {.lex_state = 366}, + [4681] = {.lex_state = 1142}, + [4682] = {.lex_state = 1142}, + [4683] = {.lex_state = 366}, + [4684] = {.lex_state = 732}, + [4685] = {.lex_state = 156}, + [4686] = {.lex_state = 1039}, + [4687] = {.lex_state = 14}, + [4688] = {.lex_state = 191}, + [4689] = {.lex_state = 134}, + [4690] = {.lex_state = 1142}, + [4691] = {.lex_state = 1142}, + [4692] = {.lex_state = 202}, + [4693] = {.lex_state = 202}, + [4694] = {.lex_state = 14}, + [4695] = {.lex_state = 1142}, + [4696] = {.lex_state = 1142}, + [4697] = {.lex_state = 366}, + [4698] = {.lex_state = 1153}, + [4699] = {.lex_state = 14}, + [4700] = {.lex_state = 15}, + [4701] = {.lex_state = 14}, + [4702] = {.lex_state = 1142}, + [4703] = {.lex_state = 1142}, + [4704] = {.lex_state = 14}, + [4705] = {.lex_state = 146}, + [4706] = {.lex_state = 1142}, + [4707] = {.lex_state = 1158}, + [4708] = {.lex_state = 14}, + [4709] = {.lex_state = 1142}, + [4710] = {.lex_state = 1158}, + [4711] = {.lex_state = 14}, + [4712] = {.lex_state = 191}, + [4713] = {.lex_state = 1071}, + [4714] = {.lex_state = 1142}, + [4715] = {.lex_state = 1142}, + [4716] = {.lex_state = 1071}, + [4717] = {.lex_state = 1038}, + [4718] = {.lex_state = 152}, + [4719] = {.lex_state = 14}, + [4720] = {.lex_state = 252}, + [4721] = {.lex_state = 191}, + [4722] = {.lex_state = 191}, + [4723] = {.lex_state = 1071}, + [4724] = {.lex_state = 191}, + [4725] = {.lex_state = 14}, + [4726] = {.lex_state = 1067}, + [4727] = {.lex_state = 1067}, + [4728] = {.lex_state = 1071}, + [4729] = {.lex_state = 15}, + [4730] = {.lex_state = 1142}, + [4731] = {.lex_state = 1142}, + [4732] = {.lex_state = 1142}, + [4733] = {.lex_state = 1071}, + [4734] = {.lex_state = 1142}, + [4735] = {.lex_state = 1071}, + [4736] = {.lex_state = 191}, + [4737] = {.lex_state = 191}, + [4738] = {.lex_state = 143}, + [4739] = {.lex_state = 1142}, + [4740] = {.lex_state = 191}, + [4741] = {.lex_state = 1142}, + [4742] = {.lex_state = 1098}, + [4743] = {.lex_state = 1142}, + [4744] = {.lex_state = 1142}, + [4745] = {.lex_state = 1142}, + [4746] = {.lex_state = 1142}, + [4747] = {.lex_state = 1142}, + [4748] = {.lex_state = 191}, + [4749] = {.lex_state = 191}, + [4750] = {.lex_state = 191}, + [4751] = {.lex_state = 191}, + [4752] = {.lex_state = 191}, + [4753] = {.lex_state = 191}, + [4754] = {.lex_state = 191}, + [4755] = {.lex_state = 191}, + [4756] = {.lex_state = 191}, + [4757] = {.lex_state = 191}, + [4758] = {.lex_state = 191}, + [4759] = {.lex_state = 191}, + [4760] = {.lex_state = 191}, + [4761] = {.lex_state = 191}, + [4762] = {.lex_state = 1071}, + [4763] = {.lex_state = 1142}, + [4764] = {.lex_state = 1142}, + [4765] = {.lex_state = 1142}, + [4766] = {.lex_state = 1142}, + [4767] = {.lex_state = 1071}, + [4768] = {.lex_state = 191}, + [4769] = {.lex_state = 15}, + [4770] = {.lex_state = 1142}, + [4771] = {.lex_state = 253}, + [4772] = {.lex_state = 270}, + [4773] = {.lex_state = 1076}, + [4774] = {.lex_state = 1039}, + [4775] = {.lex_state = 1071}, + [4776] = {.lex_state = 156}, + [4777] = {.lex_state = 1142}, + [4778] = {.lex_state = 1076}, + [4779] = {.lex_state = 1071}, + [4780] = {.lex_state = 156}, + [4781] = {.lex_state = 1142}, + [4782] = {.lex_state = 191}, + [4783] = {.lex_state = 1142}, + [4784] = {.lex_state = 1076}, + [4785] = {.lex_state = 1039}, + [4786] = {.lex_state = 191}, + [4787] = {.lex_state = 191}, + [4788] = {.lex_state = 156}, + [4789] = {.lex_state = 1076}, + [4790] = {.lex_state = 191}, + [4791] = {.lex_state = 1151}, + [4792] = {.lex_state = 191}, + [4793] = {.lex_state = 264}, + [4794] = {.lex_state = 1039}, + [4795] = {.lex_state = 1142}, + [4796] = {.lex_state = 1039}, + [4797] = {.lex_state = 1098}, + [4798] = {.lex_state = 1075}, + [4799] = {.lex_state = 1142}, + [4800] = {.lex_state = 14}, + [4801] = {.lex_state = 164}, + [4802] = {.lex_state = 185}, + [4803] = {.lex_state = 1076}, + [4804] = {.lex_state = 1067}, + [4805] = {.lex_state = 180}, + [4806] = {.lex_state = 1076}, + [4807] = {.lex_state = 1142}, + [4808] = {.lex_state = 167}, + [4809] = {.lex_state = 732}, + [4810] = {.lex_state = 1075}, + [4811] = {.lex_state = 279}, + [4812] = {.lex_state = 1075}, + [4813] = {.lex_state = 271}, + [4814] = {.lex_state = 223}, + [4815] = {.lex_state = 223}, + [4816] = {.lex_state = 1076}, + [4817] = {.lex_state = 223}, + [4818] = {.lex_state = 223}, + [4819] = {.lex_state = 278}, + [4820] = {.lex_state = 279}, + [4821] = {.lex_state = 1142}, + [4822] = {.lex_state = 1142}, + [4823] = {.lex_state = 1076}, + [4824] = {.lex_state = 185}, + [4825] = {.lex_state = 1076}, + [4826] = {.lex_state = 1075}, + [4827] = {.lex_state = 279}, + [4828] = {.lex_state = 185}, + [4829] = {.lex_state = 167}, + [4830] = {.lex_state = 1075}, + [4831] = {.lex_state = 185}, + [4832] = {.lex_state = 208}, + [4833] = {.lex_state = 1075}, + [4834] = {.lex_state = 367}, + [4835] = {.lex_state = 354}, + [4836] = {.lex_state = 1142}, + [4837] = {.lex_state = 278}, + [4838] = {.lex_state = 185}, + [4839] = {.lex_state = 208}, + [4840] = {.lex_state = 208}, + [4841] = {.lex_state = 198}, + [4842] = {.lex_state = 198}, + [4843] = {.lex_state = 164}, + [4844] = {.lex_state = 167}, + [4845] = {.lex_state = 1142}, + [4846] = {.lex_state = 164}, + [4847] = {.lex_state = 1142}, + [4848] = {.lex_state = 164}, + [4849] = {.lex_state = 198}, + [4850] = {.lex_state = 1038}, + [4851] = {.lex_state = 208}, + [4852] = {.lex_state = 1076}, + [4853] = {.lex_state = 208}, + [4854] = {.lex_state = 198}, + [4855] = {.lex_state = 1142}, + [4856] = {.lex_state = 1026}, + [4857] = {.lex_state = 167}, + [4858] = {.lex_state = 1071}, + [4859] = {.lex_state = 119}, + [4860] = {.lex_state = 1142}, + [4861] = {.lex_state = 263}, + [4862] = {.lex_state = 1071}, + [4863] = {.lex_state = 1076}, + [4864] = {.lex_state = 223}, + [4865] = {.lex_state = 1142}, + [4866] = {.lex_state = 1071}, + [4867] = {.lex_state = 1038}, + [4868] = {.lex_state = 1075}, + [4869] = {.lex_state = 340}, + [4870] = {.lex_state = 340}, + [4871] = {.lex_state = 178}, + [4872] = {.lex_state = 340}, + [4873] = {.lex_state = 340}, + [4874] = {.lex_state = 1142}, + [4875] = {.lex_state = 1142}, + [4876] = {.lex_state = 367}, + [4877] = {.lex_state = 367}, + [4878] = {.lex_state = 1142}, + [4879] = {.lex_state = 178}, + [4880] = {.lex_state = 367}, + [4881] = {.lex_state = 1071}, + [4882] = {.lex_state = 1071}, + [4883] = {.lex_state = 1142}, + [4884] = {.lex_state = 1075}, + [4885] = {.lex_state = 732}, + [4886] = {.lex_state = 732}, + [4887] = {.lex_state = 53}, + [4888] = {.lex_state = 1142}, + [4889] = {.lex_state = 732}, + [4890] = {.lex_state = 279}, + [4891] = {.lex_state = 1067}, + [4892] = {.lex_state = 1071}, + [4893] = {.lex_state = 732}, + [4894] = {.lex_state = 1142}, + [4895] = {.lex_state = 180}, + [4896] = {.lex_state = 1071}, + [4897] = {.lex_state = 1039}, + [4898] = {.lex_state = 1142}, + [4899] = {.lex_state = 1142}, + [4900] = {.lex_state = 1071}, + [4901] = {.lex_state = 278}, + [4902] = {.lex_state = 340}, + [4903] = {.lex_state = 20}, + [4904] = {.lex_state = 20}, [4905] = {.lex_state = 202}, - [4906] = {.lex_state = 1188}, - [4907] = {.lex_state = 1186}, - [4908] = {.lex_state = 1117}, - [4909] = {.lex_state = 139}, - [4910] = {.lex_state = 202}, - [4911] = {.lex_state = 732}, - [4912] = {.lex_state = 1188}, - [4913] = {.lex_state = 1188}, - [4914] = {.lex_state = 139}, - [4915] = {.lex_state = 202}, - [4916] = {.lex_state = 152}, - [4917] = {.lex_state = 251}, - [4918] = {.lex_state = 1213}, - [4919] = {.lex_state = 1200}, - [4920] = {.lex_state = 1225}, - [4921] = {.lex_state = 152}, - [4922] = {.lex_state = 136}, - [4923] = {.lex_state = 1043}, - [4924] = {.lex_state = 185}, - [4925] = {.lex_state = 1043}, - [4926] = {.lex_state = 1117}, - [4927] = {.lex_state = 732}, - [4928] = {.lex_state = 1083}, - [4929] = {.lex_state = 1117}, - [4930] = {.lex_state = 1172}, - [4931] = {.lex_state = 1086}, - [4932] = {.lex_state = 1086}, - [4933] = {.lex_state = 136}, - [4934] = {.lex_state = 180}, - [4935] = {.lex_state = 1117}, - [4936] = {.lex_state = 1225}, - [4937] = {.lex_state = 1181}, - [4938] = {.lex_state = 136}, - [4939] = {.lex_state = 50}, - [4940] = {.lex_state = 1188}, - [4941] = {.lex_state = 136}, - [4942] = {.lex_state = 1225}, - [4943] = {.lex_state = 158}, - [4944] = {.lex_state = 1086}, - [4945] = {.lex_state = 1083}, - [4946] = {.lex_state = 152}, - [4947] = {.lex_state = 3207}, - [4948] = {.lex_state = 1188}, - [4949] = {.lex_state = 180}, - [4950] = {.lex_state = 152}, - [4951] = {.lex_state = 191}, - [4952] = {.lex_state = 340}, - [4953] = {.lex_state = 191}, - [4954] = {.lex_state = 1172}, - [4955] = {.lex_state = 1172}, - [4956] = {.lex_state = 191}, - [4957] = {.lex_state = 156}, - [4958] = {.lex_state = 191}, - [4959] = {.lex_state = 1087}, - [4960] = {.lex_state = 159}, - [4961] = {.lex_state = 1172}, - [4962] = {.lex_state = 340}, - [4963] = {.lex_state = 1044}, - [4964] = {.lex_state = 15}, - [4965] = {.lex_state = 1044}, - [4966] = {.lex_state = 163}, - [4967] = {.lex_state = 191}, - [4968] = {.lex_state = 166}, - [4969] = {.lex_state = 1172}, - [4970] = {.lex_state = 191}, - [4971] = {.lex_state = 159}, - [4972] = {.lex_state = 340}, - [4973] = {.lex_state = 191}, - [4974] = {.lex_state = 1044}, - [4975] = {.lex_state = 159}, - [4976] = {.lex_state = 340}, - [4977] = {.lex_state = 1087}, - [4978] = {.lex_state = 1172}, - [4979] = {.lex_state = 143}, - [4980] = {.lex_state = 202}, - [4981] = {.lex_state = 202}, - [4982] = {.lex_state = 1044}, - [4983] = {.lex_state = 134}, - [4984] = {.lex_state = 185}, - [4985] = {.lex_state = 180}, - [4986] = {.lex_state = 1087}, - [4987] = {.lex_state = 1172}, - [4988] = {.lex_state = 1092}, - [4989] = {.lex_state = 143}, - [4990] = {.lex_state = 185}, - [4991] = {.lex_state = 191}, - [4992] = {.lex_state = 1083}, - [4993] = {.lex_state = 1172}, - [4994] = {.lex_state = 3207}, - [4995] = {.lex_state = 185}, - [4996] = {.lex_state = 366}, - [4997] = {.lex_state = 143}, - [4998] = {.lex_state = 333}, - [4999] = {.lex_state = 52}, - [5000] = {.lex_state = 166}, - [5001] = {.lex_state = 191}, - [5002] = {.lex_state = 191}, - [5003] = {.lex_state = 1172}, - [5004] = {.lex_state = 191}, - [5005] = {.lex_state = 1083}, - [5006] = {.lex_state = 1172}, - [5007] = {.lex_state = 191}, - [5008] = {.lex_state = 1092}, - [5009] = {.lex_state = 191}, - [5010] = {.lex_state = 191}, - [5011] = {.lex_state = 191}, - [5012] = {.lex_state = 1172}, - [5013] = {.lex_state = 1172}, - [5014] = {.lex_state = 14}, - [5015] = {.lex_state = 1043}, - [5016] = {.lex_state = 333}, - [5017] = {.lex_state = 191}, - [5018] = {.lex_state = 159}, - [5019] = {.lex_state = 191}, - [5020] = {.lex_state = 191}, + [4906] = {.lex_state = 1071}, + [4907] = {.lex_state = 1071}, + [4908] = {.lex_state = 1075}, + [4909] = {.lex_state = 273}, + [4910] = {.lex_state = 185}, + [4911] = {.lex_state = 185}, + [4912] = {.lex_state = 185}, + [4913] = {.lex_state = 255}, + [4914] = {.lex_state = 272}, + [4915] = {.lex_state = 278}, + [4916] = {.lex_state = 278}, + [4917] = {.lex_state = 1067}, + [4918] = {.lex_state = 1071}, + [4919] = {.lex_state = 1038}, + [4920] = {.lex_state = 1075}, + [4921] = {.lex_state = 1142}, + [4922] = {.lex_state = 185}, + [4923] = {.lex_state = 1076}, + [4924] = {.lex_state = 279}, + [4925] = {.lex_state = 1071}, + [4926] = {.lex_state = 185}, + [4927] = {.lex_state = 1142}, + [4928] = {.lex_state = 1075}, + [4929] = {.lex_state = 1142}, + [4930] = {.lex_state = 1075}, + [4931] = {.lex_state = 1142}, + [4932] = {.lex_state = 1039}, + [4933] = {.lex_state = 1142}, + [4934] = {.lex_state = 202}, + [4935] = {.lex_state = 1039}, + [4936] = {.lex_state = 1142}, + [4937] = {.lex_state = 1142}, + [4938] = {.lex_state = 1142}, + [4939] = {.lex_state = 1142}, + [4940] = {.lex_state = 1142}, + [4941] = {.lex_state = 1076}, + [4942] = {.lex_state = 202}, + [4943] = {.lex_state = 1142}, + [4944] = {.lex_state = 1142}, + [4945] = {.lex_state = 1142}, + [4946] = {.lex_state = 1142}, + [4947] = {.lex_state = 1142}, + [4948] = {.lex_state = 1075}, + [4949] = {.lex_state = 1142}, + [4950] = {.lex_state = 1142}, + [4951] = {.lex_state = 335}, + [4952] = {.lex_state = 1067}, + [4953] = {.lex_state = 1142}, + [4954] = {.lex_state = 1025}, + [4955] = {.lex_state = 221}, + [4956] = {.lex_state = 178}, + [4957] = {.lex_state = 1142}, + [4958] = {.lex_state = 1142}, + [4959] = {.lex_state = 1142}, + [4960] = {.lex_state = 1067}, + [4961] = {.lex_state = 1142}, + [4962] = {.lex_state = 1142}, + [4963] = {.lex_state = 1142}, + [4964] = {.lex_state = 1142}, + [4965] = {.lex_state = 254}, + [4966] = {.lex_state = 1142}, + [4967] = {.lex_state = 1142}, + [4968] = {.lex_state = 1142}, + [4969] = {.lex_state = 1142}, + [4970] = {.lex_state = 1142}, + [4971] = {.lex_state = 1142}, + [4972] = {.lex_state = 1142}, + [4973] = {.lex_state = 1142}, + [4974] = {.lex_state = 202}, + [4975] = {.lex_state = 178}, + [4976] = {.lex_state = 180}, + [4977] = {.lex_state = 185}, + [4978] = {.lex_state = 1075}, + [4979] = {.lex_state = 20}, + [4980] = {.lex_state = 1039}, + [4981] = {.lex_state = 1142}, + [4982] = {.lex_state = 167}, + [4983] = {.lex_state = 732}, + [4984] = {.lex_state = 1075}, + [4985] = {.lex_state = 1142}, + [4986] = {.lex_state = 1142}, + [4987] = {.lex_state = 1142}, + [4988] = {.lex_state = 20}, + [4989] = {.lex_state = 202}, + [4990] = {.lex_state = 1071}, + [4991] = {.lex_state = 2534}, + [4992] = {.lex_state = 1075}, + [4993] = {.lex_state = 1142}, + [4994] = {.lex_state = 202}, + [4995] = {.lex_state = 202}, + [4996] = {.lex_state = 202}, + [4997] = {.lex_state = 1142}, + [4998] = {.lex_state = 221}, + [4999] = {.lex_state = 178}, + [5000] = {.lex_state = 1071}, + [5001] = {.lex_state = 1038}, + [5002] = {.lex_state = 178}, + [5003] = {.lex_state = 178}, + [5004] = {.lex_state = 367}, + [5005] = {.lex_state = 1067}, + [5006] = {.lex_state = 1076}, + [5007] = {.lex_state = 178}, + [5008] = {.lex_state = 1142}, + [5009] = {.lex_state = 178}, + [5010] = {.lex_state = 1075}, + [5011] = {.lex_state = 221}, + [5012] = {.lex_state = 1142}, + [5013] = {.lex_state = 1076}, + [5014] = {.lex_state = 1071}, + [5015] = {.lex_state = 221}, + [5016] = {.lex_state = 1075}, + [5017] = {.lex_state = 1067}, + [5018] = {.lex_state = 178}, + [5019] = {.lex_state = 1067}, + [5020] = {.lex_state = 1075}, [5021] = {.lex_state = 191}, [5022] = {.lex_state = 191}, - [5023] = {.lex_state = 1181}, + [5023] = {.lex_state = 191}, [5024] = {.lex_state = 191}, [5025] = {.lex_state = 191}, [5026] = {.lex_state = 191}, - [5027] = {.lex_state = 14}, + [5027] = {.lex_state = 191}, [5028] = {.lex_state = 191}, [5029] = {.lex_state = 191}, [5030] = {.lex_state = 191}, - [5031] = {.lex_state = 146}, - [5032] = {.lex_state = 1117}, + [5031] = {.lex_state = 191}, + [5032] = {.lex_state = 191}, [5033] = {.lex_state = 191}, - [5034] = {.lex_state = 1183}, - [5035] = {.lex_state = 191}, - [5036] = {.lex_state = 191}, - [5037] = {.lex_state = 1172}, - [5038] = {.lex_state = 1172}, - [5039] = {.lex_state = 1188}, - [5040] = {.lex_state = 191}, - [5041] = {.lex_state = 191}, - [5042] = {.lex_state = 1083}, - [5043] = {.lex_state = 15}, - [5044] = {.lex_state = 1172}, - [5045] = {.lex_state = 1117}, - [5046] = {.lex_state = 1043}, - [5047] = {.lex_state = 14}, - [5048] = {.lex_state = 149}, - [5049] = {.lex_state = 180}, - [5050] = {.lex_state = 156}, - [5051] = {.lex_state = 1092}, - [5052] = {.lex_state = 191}, - [5053] = {.lex_state = 732}, - [5054] = {.lex_state = 191}, - [5055] = {.lex_state = 1172}, - [5056] = {.lex_state = 1172}, - [5057] = {.lex_state = 252}, - [5058] = {.lex_state = 191}, - [5059] = {.lex_state = 14}, - [5060] = {.lex_state = 118}, - [5061] = {.lex_state = 191}, - [5062] = {.lex_state = 191}, - [5063] = {.lex_state = 180}, - [5064] = {.lex_state = 149}, - [5065] = {.lex_state = 191}, - [5066] = {.lex_state = 277}, - [5067] = {.lex_state = 191}, - [5068] = {.lex_state = 1200}, - [5069] = {.lex_state = 1172}, - [5070] = {.lex_state = 1172}, - [5071] = {.lex_state = 277}, - [5072] = {.lex_state = 163}, - [5073] = {.lex_state = 51}, - [5074] = {.lex_state = 14}, - [5075] = {.lex_state = 1172}, - [5076] = {.lex_state = 191}, - [5077] = {.lex_state = 191}, - [5078] = {.lex_state = 191}, - [5079] = {.lex_state = 1044}, - [5080] = {.lex_state = 146}, - [5081] = {.lex_state = 14}, - [5082] = {.lex_state = 149}, - [5083] = {.lex_state = 134}, - [5084] = {.lex_state = 1172}, - [5085] = {.lex_state = 277}, - [5086] = {.lex_state = 1044}, - [5087] = {.lex_state = 277}, - [5088] = {.lex_state = 1172}, - [5089] = {.lex_state = 1172}, - [5090] = {.lex_state = 1172}, - [5091] = {.lex_state = 1172}, - [5092] = {.lex_state = 1087}, - [5093] = {.lex_state = 163}, - [5094] = {.lex_state = 14}, - [5095] = {.lex_state = 1172}, - [5096] = {.lex_state = 333}, - [5097] = {.lex_state = 1172}, - [5098] = {.lex_state = 1087}, - [5099] = {.lex_state = 277}, - [5100] = {.lex_state = 166}, - [5101] = {.lex_state = 1092}, - [5102] = {.lex_state = 140}, - [5103] = {.lex_state = 191}, - [5104] = {.lex_state = 1117}, - [5105] = {.lex_state = 1091}, - [5106] = {.lex_state = 1172}, - [5107] = {.lex_state = 1087}, - [5108] = {.lex_state = 202}, - [5109] = {.lex_state = 202}, - [5110] = {.lex_state = 1172}, - [5111] = {.lex_state = 264}, - [5112] = {.lex_state = 1172}, - [5113] = {.lex_state = 166}, + [5034] = {.lex_state = 202}, + [5035] = {.lex_state = 1076}, + [5036] = {.lex_state = 1142}, + [5037] = {.lex_state = 178}, + [5038] = {.lex_state = 1142}, + [5039] = {.lex_state = 1076}, + [5040] = {.lex_state = 126}, + [5041] = {.lex_state = 1142}, + [5042] = {.lex_state = 1075}, + [5043] = {.lex_state = 2537}, + [5044] = {.lex_state = 180}, + [5045] = {.lex_state = 1076}, + [5046] = {.lex_state = 1076}, + [5047] = {.lex_state = 1067}, + [5048] = {.lex_state = 202}, + [5049] = {.lex_state = 1071}, + [5050] = {.lex_state = 1025}, + [5051] = {.lex_state = 1095}, + [5052] = {.lex_state = 1095}, + [5053] = {.lex_state = 1039}, + [5054] = {.lex_state = 15}, + [5055] = {.lex_state = 280}, + [5056] = {.lex_state = 280}, + [5057] = {.lex_state = 1067}, + [5058] = {.lex_state = 1075}, + [5059] = {.lex_state = 1094}, + [5060] = {.lex_state = 15}, + [5061] = {.lex_state = 134}, + [5062] = {.lex_state = 49}, + [5063] = {.lex_state = 337}, + [5064] = {.lex_state = 337}, + [5065] = {.lex_state = 1039}, + [5066] = {.lex_state = 1095}, + [5067] = {.lex_state = 185}, + [5068] = {.lex_state = 14}, + [5069] = {.lex_state = 134}, + [5070] = {.lex_state = 1071}, + [5071] = {.lex_state = 1071}, + [5072] = {.lex_state = 14}, + [5073] = {.lex_state = 1075}, + [5074] = {.lex_state = 265}, + [5075] = {.lex_state = 23}, + [5076] = {.lex_state = 1038}, + [5077] = {.lex_state = 134}, + [5078] = {.lex_state = 23}, + [5079] = {.lex_state = 1075}, + [5080] = {.lex_state = 1027}, + [5081] = {.lex_state = 1075}, + [5082] = {.lex_state = 1038}, + [5083] = {.lex_state = 15}, + [5084] = {.lex_state = 3163}, + [5085] = {.lex_state = 178}, + [5086] = {.lex_state = 178}, + [5087] = {.lex_state = 1075}, + [5088] = {.lex_state = 1075}, + [5089] = {.lex_state = 222}, + [5090] = {.lex_state = 23}, + [5091] = {.lex_state = 15}, + [5092] = {.lex_state = 1075}, + [5093] = {.lex_state = 208}, + [5094] = {.lex_state = 1067}, + [5095] = {.lex_state = 146}, + [5096] = {.lex_state = 1075}, + [5097] = {.lex_state = 191}, + [5098] = {.lex_state = 167}, + [5099] = {.lex_state = 280}, + [5100] = {.lex_state = 191}, + [5101] = {.lex_state = 1048}, + [5102] = {.lex_state = 191}, + [5103] = {.lex_state = 1067}, + [5104] = {.lex_state = 191}, + [5105] = {.lex_state = 223}, + [5106] = {.lex_state = 191}, + [5107] = {.lex_state = 353}, + [5108] = {.lex_state = 191}, + [5109] = {.lex_state = 134}, + [5110] = {.lex_state = 191}, + [5111] = {.lex_state = 1076}, + [5112] = {.lex_state = 191}, + [5113] = {.lex_state = 3164}, [5114] = {.lex_state = 191}, - [5115] = {.lex_state = 1188}, + [5115] = {.lex_state = 14}, [5116] = {.lex_state = 191}, - [5117] = {.lex_state = 1172}, - [5118] = {.lex_state = 333}, - [5119] = {.lex_state = 1092}, - [5120] = {.lex_state = 14}, - [5121] = {.lex_state = 1092}, - [5122] = {.lex_state = 1172}, - [5123] = {.lex_state = 140}, - [5124] = {.lex_state = 140}, - [5125] = {.lex_state = 1188}, - [5126] = {.lex_state = 1172}, - [5127] = {.lex_state = 1172}, - [5128] = {.lex_state = 1172}, - [5129] = {.lex_state = 333}, - [5130] = {.lex_state = 250}, - [5131] = {.lex_state = 1172}, - [5132] = {.lex_state = 732}, - [5133] = {.lex_state = 140}, - [5134] = {.lex_state = 1043}, - [5135] = {.lex_state = 140}, - [5136] = {.lex_state = 732}, - [5137] = {.lex_state = 1172}, - [5138] = {.lex_state = 1087}, - [5139] = {.lex_state = 253}, - [5140] = {.lex_state = 1044}, - [5141] = {.lex_state = 1172}, - [5142] = {.lex_state = 1172}, - [5143] = {.lex_state = 1172}, - [5144] = {.lex_state = 1172}, - [5145] = {.lex_state = 134}, - [5146] = {.lex_state = 340}, - [5147] = {.lex_state = 366}, - [5148] = {.lex_state = 1172}, - [5149] = {.lex_state = 14}, - [5150] = {.lex_state = 15}, - [5151] = {.lex_state = 1083}, - [5152] = {.lex_state = 152}, - [5153] = {.lex_state = 366}, - [5154] = {.lex_state = 134}, - [5155] = {.lex_state = 1092}, - [5156] = {.lex_state = 191}, - [5157] = {.lex_state = 1087}, - [5158] = {.lex_state = 366}, - [5159] = {.lex_state = 1087}, - [5160] = {.lex_state = 1172}, - [5161] = {.lex_state = 1172}, - [5162] = {.lex_state = 1043}, - [5163] = {.lex_state = 149}, - [5164] = {.lex_state = 14}, - [5165] = {.lex_state = 1172}, - [5166] = {.lex_state = 1172}, - [5167] = {.lex_state = 1172}, - [5168] = {.lex_state = 1172}, - [5169] = {.lex_state = 1087}, - [5170] = {.lex_state = 1043}, - [5171] = {.lex_state = 134}, - [5172] = {.lex_state = 1186}, - [5173] = {.lex_state = 1091}, - [5174] = {.lex_state = 1043}, - [5175] = {.lex_state = 134}, - [5176] = {.lex_state = 1043}, - [5177] = {.lex_state = 1172}, - [5178] = {.lex_state = 1172}, - [5179] = {.lex_state = 146}, - [5180] = {.lex_state = 1172}, - [5181] = {.lex_state = 1172}, - [5182] = {.lex_state = 1172}, - [5183] = {.lex_state = 1172}, - [5184] = {.lex_state = 1092}, - [5185] = {.lex_state = 1172}, - [5186] = {.lex_state = 1172}, - [5187] = {.lex_state = 156}, - [5188] = {.lex_state = 1087}, - [5189] = {.lex_state = 143}, - [5190] = {.lex_state = 1172}, - [5191] = {.lex_state = 1092}, - [5192] = {.lex_state = 191}, - [5193] = {.lex_state = 248}, - [5194] = {.lex_state = 156}, - [5195] = {.lex_state = 1117}, - [5196] = {.lex_state = 1172}, - [5197] = {.lex_state = 249}, - [5198] = {.lex_state = 270}, - [5199] = {.lex_state = 2573}, - [5200] = {.lex_state = 1172}, - [5201] = {.lex_state = 1083}, - [5202] = {.lex_state = 1083}, - [5203] = {.lex_state = 1172}, - [5204] = {.lex_state = 146}, - [5205] = {.lex_state = 146}, - [5206] = {.lex_state = 1092}, - [5207] = {.lex_state = 191}, - [5208] = {.lex_state = 14}, - [5209] = {.lex_state = 1172}, - [5210] = {.lex_state = 159}, - [5211] = {.lex_state = 143}, - [5212] = {.lex_state = 1172}, - [5213] = {.lex_state = 1172}, - [5214] = {.lex_state = 1172}, - [5215] = {.lex_state = 15}, - [5216] = {.lex_state = 1092}, - [5217] = {.lex_state = 1172}, - [5218] = {.lex_state = 1172}, - [5219] = {.lex_state = 163}, - [5220] = {.lex_state = 146}, - [5221] = {.lex_state = 1172}, - [5222] = {.lex_state = 1172}, - [5223] = {.lex_state = 208}, - [5224] = {.lex_state = 1044}, - [5225] = {.lex_state = 340}, - [5226] = {.lex_state = 340}, - [5227] = {.lex_state = 1172}, - [5228] = {.lex_state = 1172}, - [5229] = {.lex_state = 1172}, - [5230] = {.lex_state = 1172}, - [5231] = {.lex_state = 279}, - [5232] = {.lex_state = 1172}, - [5233] = {.lex_state = 1172}, - [5234] = {.lex_state = 1172}, - [5235] = {.lex_state = 1172}, - [5236] = {.lex_state = 1044}, - [5237] = {.lex_state = 1172}, - [5238] = {.lex_state = 279}, - [5239] = {.lex_state = 1172}, - [5240] = {.lex_state = 1092}, - [5241] = {.lex_state = 335}, - [5242] = {.lex_state = 180}, - [5243] = {.lex_state = 180}, - [5244] = {.lex_state = 185}, - [5245] = {.lex_state = 1172}, - [5246] = {.lex_state = 1092}, - [5247] = {.lex_state = 1087}, - [5248] = {.lex_state = 1087}, - [5249] = {.lex_state = 1043}, - [5250] = {.lex_state = 732}, - [5251] = {.lex_state = 1172}, - [5252] = {.lex_state = 1172}, - [5253] = {.lex_state = 271}, - [5254] = {.lex_state = 126}, - [5255] = {.lex_state = 1092}, - [5256] = {.lex_state = 164}, - [5257] = {.lex_state = 221}, - [5258] = {.lex_state = 1087}, - [5259] = {.lex_state = 1091}, - [5260] = {.lex_state = 1092}, - [5261] = {.lex_state = 2575}, - [5262] = {.lex_state = 167}, - [5263] = {.lex_state = 1091}, - [5264] = {.lex_state = 732}, - [5265] = {.lex_state = 1091}, - [5266] = {.lex_state = 178}, - [5267] = {.lex_state = 1091}, - [5268] = {.lex_state = 178}, - [5269] = {.lex_state = 178}, - [5270] = {.lex_state = 178}, - [5271] = {.lex_state = 202}, - [5272] = {.lex_state = 202}, - [5273] = {.lex_state = 180}, - [5274] = {.lex_state = 1091}, - [5275] = {.lex_state = 1044}, - [5276] = {.lex_state = 185}, - [5277] = {.lex_state = 14}, - [5278] = {.lex_state = 278}, - [5279] = {.lex_state = 198}, - [5280] = {.lex_state = 198}, - [5281] = {.lex_state = 223}, - [5282] = {.lex_state = 185}, - [5283] = {.lex_state = 223}, - [5284] = {.lex_state = 185}, - [5285] = {.lex_state = 223}, - [5286] = {.lex_state = 185}, - [5287] = {.lex_state = 223}, - [5288] = {.lex_state = 279}, - [5289] = {.lex_state = 20}, - [5290] = {.lex_state = 354}, - [5291] = {.lex_state = 279}, - [5292] = {.lex_state = 279}, - [5293] = {.lex_state = 1087}, - [5294] = {.lex_state = 1172}, - [5295] = {.lex_state = 1083}, - [5296] = {.lex_state = 1172}, - [5297] = {.lex_state = 164}, - [5298] = {.lex_state = 164}, - [5299] = {.lex_state = 164}, - [5300] = {.lex_state = 1172}, - [5301] = {.lex_state = 1087}, - [5302] = {.lex_state = 1092}, - [5303] = {.lex_state = 1172}, - [5304] = {.lex_state = 732}, - [5305] = {.lex_state = 1092}, - [5306] = {.lex_state = 1172}, - [5307] = {.lex_state = 185}, - [5308] = {.lex_state = 1083}, - [5309] = {.lex_state = 1092}, - [5310] = {.lex_state = 208}, - [5311] = {.lex_state = 1172}, - [5312] = {.lex_state = 202}, - [5313] = {.lex_state = 167}, - [5314] = {.lex_state = 732}, - [5315] = {.lex_state = 1087}, - [5316] = {.lex_state = 167}, - [5317] = {.lex_state = 367}, - [5318] = {.lex_state = 367}, - [5319] = {.lex_state = 367}, - [5320] = {.lex_state = 1087}, - [5321] = {.lex_state = 1172}, - [5322] = {.lex_state = 1091}, - [5323] = {.lex_state = 185}, - [5324] = {.lex_state = 167}, - [5325] = {.lex_state = 340}, - [5326] = {.lex_state = 340}, - [5327] = {.lex_state = 2572}, - [5328] = {.lex_state = 1172}, - [5329] = {.lex_state = 1087}, - [5330] = {.lex_state = 1092}, - [5331] = {.lex_state = 367}, - [5332] = {.lex_state = 1172}, - [5333] = {.lex_state = 1044}, - [5334] = {.lex_state = 732}, - [5335] = {.lex_state = 340}, - [5336] = {.lex_state = 1172}, - [5337] = {.lex_state = 1172}, - [5338] = {.lex_state = 185}, - [5339] = {.lex_state = 367}, - [5340] = {.lex_state = 1092}, - [5341] = {.lex_state = 1172}, - [5342] = {.lex_state = 1083}, - [5343] = {.lex_state = 1091}, - [5344] = {.lex_state = 1087}, - [5345] = {.lex_state = 1087}, - [5346] = {.lex_state = 1092}, - [5347] = {.lex_state = 1087}, - [5348] = {.lex_state = 1091}, - [5349] = {.lex_state = 1083}, - [5350] = {.lex_state = 1092}, - [5351] = {.lex_state = 167}, - [5352] = {.lex_state = 1172}, - [5353] = {.lex_state = 1091}, - [5354] = {.lex_state = 1172}, - [5355] = {.lex_state = 273}, - [5356] = {.lex_state = 1172}, - [5357] = {.lex_state = 255}, - [5358] = {.lex_state = 1091}, - [5359] = {.lex_state = 272}, - [5360] = {.lex_state = 198}, - [5361] = {.lex_state = 1083}, - [5362] = {.lex_state = 1087}, - [5363] = {.lex_state = 1092}, - [5364] = {.lex_state = 178}, - [5365] = {.lex_state = 1172}, - [5366] = {.lex_state = 1172}, - [5367] = {.lex_state = 198}, - [5368] = {.lex_state = 185}, - [5369] = {.lex_state = 20}, - [5370] = {.lex_state = 20}, - [5371] = {.lex_state = 278}, - [5372] = {.lex_state = 1172}, - [5373] = {.lex_state = 1172}, - [5374] = {.lex_state = 1172}, - [5375] = {.lex_state = 1172}, - [5376] = {.lex_state = 1172}, - [5377] = {.lex_state = 1172}, - [5378] = {.lex_state = 254}, - [5379] = {.lex_state = 1172}, - [5380] = {.lex_state = 178}, - [5381] = {.lex_state = 180}, - [5382] = {.lex_state = 202}, - [5383] = {.lex_state = 1092}, - [5384] = {.lex_state = 1087}, - [5385] = {.lex_state = 1172}, - [5386] = {.lex_state = 1172}, - [5387] = {.lex_state = 221}, - [5388] = {.lex_state = 1172}, - [5389] = {.lex_state = 178}, - [5390] = {.lex_state = 1172}, - [5391] = {.lex_state = 1172}, - [5392] = {.lex_state = 1172}, - [5393] = {.lex_state = 1172}, - [5394] = {.lex_state = 1172}, - [5395] = {.lex_state = 1083}, - [5396] = {.lex_state = 1027}, - [5397] = {.lex_state = 185}, - [5398] = {.lex_state = 202}, - [5399] = {.lex_state = 1091}, - [5400] = {.lex_state = 1172}, - [5401] = {.lex_state = 1091}, - [5402] = {.lex_state = 202}, - [5403] = {.lex_state = 1172}, - [5404] = {.lex_state = 1083}, - [5405] = {.lex_state = 1172}, - [5406] = {.lex_state = 1172}, - [5407] = {.lex_state = 53}, - [5408] = {.lex_state = 202}, - [5409] = {.lex_state = 1172}, - [5410] = {.lex_state = 221}, - [5411] = {.lex_state = 119}, - [5412] = {.lex_state = 263}, - [5413] = {.lex_state = 1026}, - [5414] = {.lex_state = 185}, - [5415] = {.lex_state = 202}, - [5416] = {.lex_state = 178}, - [5417] = {.lex_state = 1091}, - [5418] = {.lex_state = 1043}, - [5419] = {.lex_state = 202}, - [5420] = {.lex_state = 221}, - [5421] = {.lex_state = 1172}, - [5422] = {.lex_state = 1172}, - [5423] = {.lex_state = 1172}, - [5424] = {.lex_state = 1172}, - [5425] = {.lex_state = 1172}, - [5426] = {.lex_state = 1172}, - [5427] = {.lex_state = 732}, - [5428] = {.lex_state = 1172}, - [5429] = {.lex_state = 278}, - [5430] = {.lex_state = 1172}, - [5431] = {.lex_state = 278}, - [5432] = {.lex_state = 278}, - [5433] = {.lex_state = 223}, - [5434] = {.lex_state = 1043}, - [5435] = {.lex_state = 1087}, - [5436] = {.lex_state = 1172}, - [5437] = {.lex_state = 1091}, - [5438] = {.lex_state = 208}, - [5439] = {.lex_state = 1087}, - [5440] = {.lex_state = 178}, - [5441] = {.lex_state = 1091}, - [5442] = {.lex_state = 1083}, - [5443] = {.lex_state = 1091}, - [5444] = {.lex_state = 1083}, - [5445] = {.lex_state = 1043}, - [5446] = {.lex_state = 208}, - [5447] = {.lex_state = 191}, - [5448] = {.lex_state = 191}, - [5449] = {.lex_state = 191}, - [5450] = {.lex_state = 191}, - [5451] = {.lex_state = 191}, - [5452] = {.lex_state = 191}, - [5453] = {.lex_state = 191}, - [5454] = {.lex_state = 191}, - [5455] = {.lex_state = 191}, - [5456] = {.lex_state = 191}, - [5457] = {.lex_state = 191}, - [5458] = {.lex_state = 191}, - [5459] = {.lex_state = 191}, - [5460] = {.lex_state = 1092}, - [5461] = {.lex_state = 1092}, - [5462] = {.lex_state = 1091}, - [5463] = {.lex_state = 185}, - [5464] = {.lex_state = 178}, - [5465] = {.lex_state = 1172}, - [5466] = {.lex_state = 20}, - [5467] = {.lex_state = 1091}, - [5468] = {.lex_state = 1091}, - [5469] = {.lex_state = 178}, - [5470] = {.lex_state = 208}, - [5471] = {.lex_state = 1091}, - [5472] = {.lex_state = 1172}, - [5473] = {.lex_state = 1113}, - [5474] = {.lex_state = 134}, - [5475] = {.lex_state = 353}, - [5476] = {.lex_state = 340}, - [5477] = {.lex_state = 353}, - [5478] = {.lex_state = 1087}, - [5479] = {.lex_state = 353}, - [5480] = {.lex_state = 185}, - [5481] = {.lex_state = 222}, - [5482] = {.lex_state = 1043}, - [5483] = {.lex_state = 2574}, - [5484] = {.lex_state = 1092}, - [5485] = {.lex_state = 1092}, - [5486] = {.lex_state = 1043}, - [5487] = {.lex_state = 1114}, - [5488] = {.lex_state = 1087}, - [5489] = {.lex_state = 222}, - [5490] = {.lex_state = 336}, - [5491] = {.lex_state = 222}, - [5492] = {.lex_state = 185}, - [5493] = {.lex_state = 337}, - [5494] = {.lex_state = 185}, - [5495] = {.lex_state = 1028}, - [5496] = {.lex_state = 1043}, - [5497] = {.lex_state = 1091}, - [5498] = {.lex_state = 1087}, - [5499] = {.lex_state = 146}, - [5500] = {.lex_state = 1087}, - [5501] = {.lex_state = 222}, - [5502] = {.lex_state = 1091}, - [5503] = {.lex_state = 15}, - [5504] = {.lex_state = 1114}, - [5505] = {.lex_state = 1047}, - [5506] = {.lex_state = 369}, - [5507] = {.lex_state = 1027}, - [5508] = {.lex_state = 1114}, - [5509] = {.lex_state = 15}, - [5510] = {.lex_state = 1091}, - [5511] = {.lex_state = 1114}, - [5512] = {.lex_state = 1091}, - [5513] = {.lex_state = 1114}, - [5514] = {.lex_state = 222}, - [5515] = {.lex_state = 1091}, - [5516] = {.lex_state = 15}, - [5517] = {.lex_state = 1087}, - [5518] = {.lex_state = 1087}, - [5519] = {.lex_state = 178}, - [5520] = {.lex_state = 178}, - [5521] = {.lex_state = 134}, - [5522] = {.lex_state = 280}, - [5523] = {.lex_state = 167}, - [5524] = {.lex_state = 1044}, - [5525] = {.lex_state = 146}, - [5526] = {.lex_state = 732}, - [5527] = {.lex_state = 1026}, - [5528] = {.lex_state = 1091}, - [5529] = {.lex_state = 23}, - [5530] = {.lex_state = 14}, - [5531] = {.lex_state = 185}, - [5532] = {.lex_state = 1091}, - [5533] = {.lex_state = 1043}, - [5534] = {.lex_state = 1083}, - [5535] = {.lex_state = 3203}, - [5536] = {.lex_state = 1091}, - [5537] = {.lex_state = 2585}, - [5538] = {.lex_state = 23}, - [5539] = {.lex_state = 23}, - [5540] = {.lex_state = 191}, - [5541] = {.lex_state = 185}, - [5542] = {.lex_state = 191}, - [5543] = {.lex_state = 14}, - [5544] = {.lex_state = 1087}, - [5545] = {.lex_state = 127}, - [5546] = {.lex_state = 1092}, - [5547] = {.lex_state = 191}, - [5548] = {.lex_state = 14}, - [5549] = {.lex_state = 1083}, - [5550] = {.lex_state = 178}, - [5551] = {.lex_state = 191}, - [5552] = {.lex_state = 178}, - [5553] = {.lex_state = 337}, - [5554] = {.lex_state = 265}, - [5555] = {.lex_state = 191}, - [5556] = {.lex_state = 1113}, - [5557] = {.lex_state = 223}, - [5558] = {.lex_state = 185}, - [5559] = {.lex_state = 1043}, - [5560] = {.lex_state = 191}, - [5561] = {.lex_state = 191}, - [5562] = {.lex_state = 1113}, - [5563] = {.lex_state = 1113}, - [5564] = {.lex_state = 1092}, - [5565] = {.lex_state = 191}, - [5566] = {.lex_state = 337}, - [5567] = {.lex_state = 1083}, - [5568] = {.lex_state = 191}, - [5569] = {.lex_state = 1091}, - [5570] = {.lex_state = 23}, - [5571] = {.lex_state = 223}, - [5572] = {.lex_state = 223}, - [5573] = {.lex_state = 1083}, - [5574] = {.lex_state = 191}, - [5575] = {.lex_state = 280}, - [5576] = {.lex_state = 337}, - [5577] = {.lex_state = 280}, - [5578] = {.lex_state = 1044}, - [5579] = {.lex_state = 191}, - [5580] = {.lex_state = 280}, - [5581] = {.lex_state = 280}, - [5582] = {.lex_state = 191}, - [5583] = {.lex_state = 340}, - [5584] = {.lex_state = 23}, - [5585] = {.lex_state = 15}, - [5586] = {.lex_state = 49}, - [5587] = {.lex_state = 146}, - [5588] = {.lex_state = 1091}, - [5589] = {.lex_state = 1091}, - [5590] = {.lex_state = 1091}, - [5591] = {.lex_state = 134}, - [5592] = {.lex_state = 1044}, - [5593] = {.lex_state = 185}, - [5594] = {.lex_state = 1044}, - [5595] = {.lex_state = 18}, - [5596] = {.lex_state = 15}, - [5597] = {.lex_state = 1092}, - [5598] = {.lex_state = 1053}, - [5599] = {.lex_state = 1091}, - [5600] = {.lex_state = 1113}, - [5601] = {.lex_state = 208}, - [5602] = {.lex_state = 208}, - [5603] = {.lex_state = 134}, - [5604] = {.lex_state = 1092}, - [5605] = {.lex_state = 185}, - [5606] = {.lex_state = 3204}, - [5607] = {.lex_state = 1044}, - [5608] = {.lex_state = 340}, - [5609] = {.lex_state = 1091}, - [5610] = {.lex_state = 1083}, - [5611] = {.lex_state = 146}, - [5612] = {.lex_state = 191}, - [5613] = {.lex_state = 191}, - [5614] = {.lex_state = 191}, - [5615] = {.lex_state = 191}, - [5616] = {.lex_state = 191}, - [5617] = {.lex_state = 191}, - [5618] = {.lex_state = 191}, - [5619] = {.lex_state = 191}, - [5620] = {.lex_state = 191}, - [5621] = {.lex_state = 191}, - [5622] = {.lex_state = 191}, - [5623] = {.lex_state = 191}, - [5624] = {.lex_state = 191}, - [5625] = {.lex_state = 208}, - [5626] = {.lex_state = 1092}, - [5627] = {.lex_state = 208}, - [5628] = {.lex_state = 223}, - [5629] = {.lex_state = 1091}, - [5630] = {.lex_state = 1091}, - [5631] = {.lex_state = 191}, - [5632] = {.lex_state = 353}, - [5633] = {.lex_state = 1044}, - [5634] = {.lex_state = 1044}, - [5635] = {.lex_state = 15}, - [5636] = {.lex_state = 1044}, - [5637] = {.lex_state = 1043}, - [5638] = {.lex_state = 146}, - [5639] = {.lex_state = 1044}, - [5640] = {.lex_state = 1044}, - [5641] = {.lex_state = 1043}, - [5642] = {.lex_state = 1044}, - [5643] = {.lex_state = 1044}, - [5644] = {.lex_state = 1044}, - [5645] = {.lex_state = 1087}, - [5646] = {.lex_state = 352}, - [5647] = {.lex_state = 371}, - [5648] = {.lex_state = 580}, - [5649] = {.lex_state = 1043}, - [5650] = {.lex_state = 353}, - [5651] = {.lex_state = 276}, - [5652] = {.lex_state = 1044}, - [5653] = {.lex_state = 1043}, - [5654] = {.lex_state = 1044}, - [5655] = {.lex_state = 1044}, - [5656] = {.lex_state = 1044}, - [5657] = {.lex_state = 1054}, - [5658] = {.lex_state = 1044}, - [5659] = {.lex_state = 1044}, - [5660] = {.lex_state = 353}, - [5661] = {.lex_state = 15}, - [5662] = {.lex_state = 117}, - [5663] = {.lex_state = 223}, - [5664] = {.lex_state = 54}, - [5665] = {.lex_state = 146}, - [5666] = {.lex_state = 1092}, - [5667] = {.lex_state = 1043}, - [5668] = {.lex_state = 3204}, - [5669] = {.lex_state = 353}, - [5670] = {.lex_state = 1043}, - [5671] = {.lex_state = 1092}, - [5672] = {.lex_state = 1044}, - [5673] = {.lex_state = 185}, - [5674] = {.lex_state = 1044}, - [5675] = {.lex_state = 15}, - [5676] = {.lex_state = 1043}, - [5677] = {.lex_state = 1043}, - [5678] = {.lex_state = 1028}, - [5679] = {.lex_state = 1083}, - [5680] = {.lex_state = 353}, - [5681] = {.lex_state = 1044}, - [5682] = {.lex_state = 1043}, - [5683] = {.lex_state = 338}, - [5684] = {.lex_state = 54}, - [5685] = {.lex_state = 338}, - [5686] = {.lex_state = 15}, - [5687] = {.lex_state = 54}, - [5688] = {.lex_state = 1043}, - [5689] = {.lex_state = 134}, - [5690] = {.lex_state = 1043}, - [5691] = {.lex_state = 1043}, - [5692] = {.lex_state = 1044}, - [5693] = {.lex_state = 338}, - [5694] = {.lex_state = 1043}, - [5695] = {.lex_state = 1043}, - [5696] = {.lex_state = 1044}, + [5117] = {.lex_state = 1075}, + [5118] = {.lex_state = 191}, + [5119] = {.lex_state = 185}, + [5120] = {.lex_state = 191}, + [5121] = {.lex_state = 340}, + [5122] = {.lex_state = 191}, + [5123] = {.lex_state = 208}, + [5124] = {.lex_state = 1075}, + [5125] = {.lex_state = 1071}, + [5126] = {.lex_state = 23}, + [5127] = {.lex_state = 208}, + [5128] = {.lex_state = 23}, + [5129] = {.lex_state = 1076}, + [5130] = {.lex_state = 222}, + [5131] = {.lex_state = 2536}, + [5132] = {.lex_state = 1076}, + [5133] = {.lex_state = 185}, + [5134] = {.lex_state = 1039}, + [5135] = {.lex_state = 208}, + [5136] = {.lex_state = 178}, + [5137] = {.lex_state = 178}, + [5138] = {.lex_state = 1076}, + [5139] = {.lex_state = 353}, + [5140] = {.lex_state = 1095}, + [5141] = {.lex_state = 15}, + [5142] = {.lex_state = 146}, + [5143] = {.lex_state = 336}, + [5144] = {.lex_state = 222}, + [5145] = {.lex_state = 1076}, + [5146] = {.lex_state = 1042}, + [5147] = {.lex_state = 1075}, + [5148] = {.lex_state = 1094}, + [5149] = {.lex_state = 732}, + [5150] = {.lex_state = 146}, + [5151] = {.lex_state = 1071}, + [5152] = {.lex_state = 1075}, + [5153] = {.lex_state = 1071}, + [5154] = {.lex_state = 1067}, + [5155] = {.lex_state = 223}, + [5156] = {.lex_state = 1038}, + [5157] = {.lex_state = 340}, + [5158] = {.lex_state = 223}, + [5159] = {.lex_state = 1075}, + [5160] = {.lex_state = 353}, + [5161] = {.lex_state = 280}, + [5162] = {.lex_state = 1039}, + [5163] = {.lex_state = 222}, + [5164] = {.lex_state = 185}, + [5165] = {.lex_state = 340}, + [5166] = {.lex_state = 2547}, + [5167] = {.lex_state = 1094}, + [5168] = {.lex_state = 18}, + [5169] = {.lex_state = 1075}, + [5170] = {.lex_state = 185}, + [5171] = {.lex_state = 1076}, + [5172] = {.lex_state = 1076}, + [5173] = {.lex_state = 191}, + [5174] = {.lex_state = 191}, + [5175] = {.lex_state = 191}, + [5176] = {.lex_state = 191}, + [5177] = {.lex_state = 191}, + [5178] = {.lex_state = 191}, + [5179] = {.lex_state = 191}, + [5180] = {.lex_state = 191}, + [5181] = {.lex_state = 191}, + [5182] = {.lex_state = 191}, + [5183] = {.lex_state = 191}, + [5184] = {.lex_state = 191}, + [5185] = {.lex_state = 191}, + [5186] = {.lex_state = 369}, + [5187] = {.lex_state = 337}, + [5188] = {.lex_state = 222}, + [5189] = {.lex_state = 185}, + [5190] = {.lex_state = 223}, + [5191] = {.lex_state = 1094}, + [5192] = {.lex_state = 1094}, + [5193] = {.lex_state = 1038}, + [5194] = {.lex_state = 127}, + [5195] = {.lex_state = 1039}, + [5196] = {.lex_state = 280}, + [5197] = {.lex_state = 1075}, + [5198] = {.lex_state = 1075}, + [5199] = {.lex_state = 185}, + [5200] = {.lex_state = 1038}, + [5201] = {.lex_state = 146}, + [5202] = {.lex_state = 1071}, + [5203] = {.lex_state = 1026}, + [5204] = {.lex_state = 1095}, + [5205] = {.lex_state = 185}, + [5206] = {.lex_state = 337}, + [5207] = {.lex_state = 1067}, + [5208] = {.lex_state = 15}, + [5209] = {.lex_state = 1039}, + [5210] = {.lex_state = 3164}, + [5211] = {.lex_state = 54}, + [5212] = {.lex_state = 1039}, + [5213] = {.lex_state = 208}, + [5214] = {.lex_state = 208}, + [5215] = {.lex_state = 1038}, + [5216] = {.lex_state = 1038}, + [5217] = {.lex_state = 370}, + [5218] = {.lex_state = 1038}, + [5219] = {.lex_state = 1038}, + [5220] = {.lex_state = 1039}, + [5221] = {.lex_state = 1039}, + [5222] = {.lex_state = 1039}, + [5223] = {.lex_state = 1038}, + [5224] = {.lex_state = 146}, + [5225] = {.lex_state = 1038}, + [5226] = {.lex_state = 1038}, + [5227] = {.lex_state = 222}, + [5228] = {.lex_state = 1038}, + [5229] = {.lex_state = 1038}, + [5230] = {.lex_state = 1038}, + [5231] = {.lex_state = 1038}, + [5232] = {.lex_state = 1038}, + [5233] = {.lex_state = 1038}, + [5234] = {.lex_state = 1038}, + [5235] = {.lex_state = 1038}, + [5236] = {.lex_state = 1038}, + [5237] = {.lex_state = 1038}, + [5238] = {.lex_state = 1039}, + [5239] = {.lex_state = 1038}, + [5240] = {.lex_state = 1038}, + [5241] = {.lex_state = 1038}, + [5242] = {.lex_state = 1038}, + [5243] = {.lex_state = 1038}, + [5244] = {.lex_state = 1038}, + [5245] = {.lex_state = 1038}, + [5246] = {.lex_state = 1038}, + [5247] = {.lex_state = 1038}, + [5248] = {.lex_state = 1038}, + [5249] = {.lex_state = 353}, + [5250] = {.lex_state = 1039}, + [5251] = {.lex_state = 1039}, + [5252] = {.lex_state = 1075}, + [5253] = {.lex_state = 1039}, + [5254] = {.lex_state = 146}, + [5255] = {.lex_state = 1039}, + [5256] = {.lex_state = 1039}, + [5257] = {.lex_state = 338}, + [5258] = {.lex_state = 1039}, + [5259] = {.lex_state = 1095}, + [5260] = {.lex_state = 338}, + [5261] = {.lex_state = 180}, + [5262] = {.lex_state = 338}, + [5263] = {.lex_state = 222}, + [5264] = {.lex_state = 222}, + [5265] = {.lex_state = 1039}, + [5266] = {.lex_state = 1071}, + [5267] = {.lex_state = 117}, + [5268] = {.lex_state = 338}, + [5269] = {.lex_state = 54}, + [5270] = {.lex_state = 1075}, + [5271] = {.lex_state = 1039}, + [5272] = {.lex_state = 1038}, + [5273] = {.lex_state = 134}, + [5274] = {.lex_state = 352}, + [5275] = {.lex_state = 353}, + [5276] = {.lex_state = 1096}, + [5277] = {.lex_state = 1096}, + [5278] = {.lex_state = 352}, + [5279] = {.lex_state = 1094}, + [5280] = {.lex_state = 1094}, + [5281] = {.lex_state = 54}, + [5282] = {.lex_state = 1067}, + [5283] = {.lex_state = 134}, + [5284] = {.lex_state = 338}, + [5285] = {.lex_state = 1075}, + [5286] = {.lex_state = 1075}, + [5287] = {.lex_state = 1096}, + [5288] = {.lex_state = 1096}, + [5289] = {.lex_state = 222}, + [5290] = {.lex_state = 222}, + [5291] = {.lex_state = 1071}, + [5292] = {.lex_state = 352}, + [5293] = {.lex_state = 1039}, + [5294] = {.lex_state = 371}, + [5295] = {.lex_state = 1042}, + [5296] = {.lex_state = 371}, + [5297] = {.lex_state = 1094}, + [5298] = {.lex_state = 371}, + [5299] = {.lex_state = 1071}, + [5300] = {.lex_state = 134}, + [5301] = {.lex_state = 185}, + [5302] = {.lex_state = 352}, + [5303] = {.lex_state = 222}, + [5304] = {.lex_state = 1075}, + [5305] = {.lex_state = 1038}, + [5306] = {.lex_state = 353}, + [5307] = {.lex_state = 1039}, + [5308] = {.lex_state = 276}, + [5309] = {.lex_state = 353}, + [5310] = {.lex_state = 353}, + [5311] = {.lex_state = 1039}, + [5312] = {.lex_state = 1039}, + [5313] = {.lex_state = 1075}, + [5314] = {.lex_state = 222}, + [5315] = {.lex_state = 352}, + [5316] = {.lex_state = 1094}, + [5317] = {.lex_state = 353}, + [5318] = {.lex_state = 15}, + [5319] = {.lex_state = 1039}, + [5320] = {.lex_state = 15}, + [5321] = {.lex_state = 371}, + [5322] = {.lex_state = 146}, + [5323] = {.lex_state = 1039}, + [5324] = {.lex_state = 15}, + [5325] = {.lex_state = 222}, + [5326] = {.lex_state = 353}, + [5327] = {.lex_state = 15}, + [5328] = {.lex_state = 1027}, + [5329] = {.lex_state = 1067}, + [5330] = {.lex_state = 15}, + [5331] = {.lex_state = 222}, + [5332] = {.lex_state = 1039}, + [5333] = {.lex_state = 185}, + [5334] = {.lex_state = 1067}, + [5335] = {.lex_state = 15}, + [5336] = {.lex_state = 352}, + [5337] = {.lex_state = 15}, + [5338] = {.lex_state = 178}, + [5339] = {.lex_state = 353}, + [5340] = {.lex_state = 15}, + [5341] = {.lex_state = 1039}, + [5342] = {.lex_state = 1067}, + [5343] = {.lex_state = 15}, + [5344] = {.lex_state = 15}, + [5345] = {.lex_state = 1067}, + [5346] = {.lex_state = 15}, + [5347] = {.lex_state = 15}, + [5348] = {.lex_state = 1039}, + [5349] = {.lex_state = 1038}, + [5350] = {.lex_state = 1038}, + [5351] = {.lex_state = 1038}, + [5352] = {.lex_state = 573}, + [5353] = {.lex_state = 1039}, + [5354] = {.lex_state = 178}, + [5355] = {.lex_state = 1095}, + [5356] = {.lex_state = 1038}, + [5357] = {.lex_state = 1075}, + [5358] = {.lex_state = 1048}, + [5359] = {.lex_state = 178}, + [5360] = {.lex_state = 276}, + [5361] = {.lex_state = 1038}, + [5362] = {.lex_state = 15}, + [5363] = {.lex_state = 1038}, + [5364] = {.lex_state = 1038}, + [5365] = {.lex_state = 1038}, + [5366] = {.lex_state = 15}, + [5367] = {.lex_state = 54}, + [5368] = {.lex_state = 1038}, + [5369] = {.lex_state = 1075}, + [5370] = {.lex_state = 1075}, + [5371] = {.lex_state = 2545}, + [5372] = {.lex_state = 1038}, + [5373] = {.lex_state = 338}, + [5374] = {.lex_state = 1039}, + [5375] = {.lex_state = 1038}, + [5376] = {.lex_state = 15}, + [5377] = {.lex_state = 1039}, + [5378] = {.lex_state = 276}, + [5379] = {.lex_state = 276}, + [5380] = {.lex_state = 1039}, + [5381] = {.lex_state = 15}, + [5382] = {.lex_state = 15}, + [5383] = {.lex_state = 54}, + [5384] = {.lex_state = 1095}, + [5385] = {.lex_state = 134}, + [5386] = {.lex_state = 352}, + [5387] = {.lex_state = 15}, + [5388] = {.lex_state = 15}, + [5389] = {.lex_state = 352}, + [5390] = {.lex_state = 352}, + [5391] = {.lex_state = 3164}, + [5392] = {.lex_state = 1095}, + [5393] = {.lex_state = 1095}, + [5394] = {.lex_state = 54}, + [5395] = {.lex_state = 15}, + [5396] = {.lex_state = 15}, + [5397] = {.lex_state = 1039}, + [5398] = {.lex_state = 1039}, + [5399] = {.lex_state = 1039}, + [5400] = {.lex_state = 1039}, + [5401] = {.lex_state = 1039}, + [5402] = {.lex_state = 1039}, + [5403] = {.lex_state = 353}, + [5404] = {.lex_state = 1038}, + [5405] = {.lex_state = 1039}, + [5406] = {.lex_state = 222}, + [5407] = {.lex_state = 1039}, + [5408] = {.lex_state = 1067}, + [5409] = {.lex_state = 1038}, + [5410] = {.lex_state = 1038}, + [5411] = {.lex_state = 54}, + [5412] = {.lex_state = 15}, + [5413] = {.lex_state = 54}, + [5414] = {.lex_state = 1039}, + [5415] = {.lex_state = 1039}, + [5416] = {.lex_state = 1039}, + [5417] = {.lex_state = 15}, + [5418] = {.lex_state = 146}, + [5419] = {.lex_state = 1039}, + [5420] = {.lex_state = 1038}, + [5421] = {.lex_state = 1038}, + [5422] = {.lex_state = 1038}, + [5423] = {.lex_state = 1049}, + [5424] = {.lex_state = 1039}, + [5425] = {.lex_state = 1039}, + [5426] = {.lex_state = 1076}, + [5427] = {.lex_state = 3163}, + [5428] = {.lex_state = 15}, + [5429] = {.lex_state = 1038}, + [5430] = {.lex_state = 1038}, + [5431] = {.lex_state = 1038}, + [5432] = {.lex_state = 1039}, + [5433] = {.lex_state = 1038}, + [5434] = {.lex_state = 1039}, + [5435] = {.lex_state = 54}, + [5436] = {.lex_state = 1038}, + [5437] = {.lex_state = 1039}, + [5438] = {.lex_state = 15}, + [5439] = {.lex_state = 334}, + [5440] = {.lex_state = 1039}, + [5441] = {.lex_state = 1038}, + [5442] = {.lex_state = 1038}, + [5443] = {.lex_state = 1039}, + [5444] = {.lex_state = 338}, + [5445] = {.lex_state = 1049}, + [5446] = {.lex_state = 1039}, + [5447] = {.lex_state = 117}, + [5448] = {.lex_state = 15}, + [5449] = {.lex_state = 15}, + [5450] = {.lex_state = 15}, + [5451] = {.lex_state = 15}, + [5452] = {.lex_state = 15}, + [5453] = {.lex_state = 15}, + [5454] = {.lex_state = 15}, + [5455] = {.lex_state = 15}, + [5456] = {.lex_state = 15}, + [5457] = {.lex_state = 15}, + [5458] = {.lex_state = 15}, + [5459] = {.lex_state = 15}, + [5460] = {.lex_state = 15}, + [5461] = {.lex_state = 15}, + [5462] = {.lex_state = 15}, + [5463] = {.lex_state = 15}, + [5464] = {.lex_state = 15}, + [5465] = {.lex_state = 15}, + [5466] = {.lex_state = 15}, + [5467] = {.lex_state = 15}, + [5468] = {.lex_state = 15}, + [5469] = {.lex_state = 15}, + [5470] = {.lex_state = 15}, + [5471] = {.lex_state = 15}, + [5472] = {.lex_state = 15}, + [5473] = {.lex_state = 15}, + [5474] = {.lex_state = 15}, + [5475] = {.lex_state = 191}, + [5476] = {.lex_state = 191}, + [5477] = {.lex_state = 191}, + [5478] = {.lex_state = 191}, + [5479] = {.lex_state = 191}, + [5480] = {.lex_state = 191}, + [5481] = {.lex_state = 191}, + [5482] = {.lex_state = 191}, + [5483] = {.lex_state = 191}, + [5484] = {.lex_state = 191}, + [5485] = {.lex_state = 191}, + [5486] = {.lex_state = 191}, + [5487] = {.lex_state = 191}, + [5488] = {.lex_state = 1096}, + [5489] = {.lex_state = 276}, + [5490] = {.lex_state = 223}, + [5491] = {.lex_state = 1039}, + [5492] = {.lex_state = 224}, + [5493] = {.lex_state = 1038}, + [5494] = {.lex_state = 353}, + [5495] = {.lex_state = 1076}, + [5496] = {.lex_state = 1038}, + [5497] = {.lex_state = 224}, + [5498] = {.lex_state = 1039}, + [5499] = {.lex_state = 1039}, + [5500] = {.lex_state = 1038}, + [5501] = {.lex_state = 1038}, + [5502] = {.lex_state = 1038}, + [5503] = {.lex_state = 223}, + [5504] = {.lex_state = 1039}, + [5505] = {.lex_state = 1076}, + [5506] = {.lex_state = 353}, + [5507] = {.lex_state = 1038}, + [5508] = {.lex_state = 1039}, + [5509] = {.lex_state = 223}, + [5510] = {.lex_state = 353}, + [5511] = {.lex_state = 1039}, + [5512] = {.lex_state = 1038}, + [5513] = {.lex_state = 1039}, + [5514] = {.lex_state = 1038}, + [5515] = {.lex_state = 1039}, + [5516] = {.lex_state = 353}, + [5517] = {.lex_state = 54}, + [5518] = {.lex_state = 54}, + [5519] = {.lex_state = 1039}, + [5520] = {.lex_state = 1039}, + [5521] = {.lex_state = 208}, + [5522] = {.lex_state = 1039}, + [5523] = {.lex_state = 1094}, + [5524] = {.lex_state = 352}, + [5525] = {.lex_state = 1038}, + [5526] = {.lex_state = 1038}, + [5527] = {.lex_state = 180}, + [5528] = {.lex_state = 185}, + [5529] = {.lex_state = 1075}, + [5530] = {.lex_state = 180}, + [5531] = {.lex_state = 1039}, + [5532] = {.lex_state = 180}, + [5533] = {.lex_state = 1038}, + [5534] = {.lex_state = 185}, + [5535] = {.lex_state = 1067}, + [5536] = {.lex_state = 180}, + [5537] = {.lex_state = 1039}, + [5538] = {.lex_state = 372}, + [5539] = {.lex_state = 54}, + [5540] = {.lex_state = 1096}, + [5541] = {.lex_state = 1096}, + [5542] = {.lex_state = 180}, + [5543] = {.lex_state = 222}, + [5544] = {.lex_state = 185}, + [5545] = {.lex_state = 185}, + [5546] = {.lex_state = 180}, + [5547] = {.lex_state = 1039}, + [5548] = {.lex_state = 180}, + [5549] = {.lex_state = 180}, + [5550] = {.lex_state = 351}, + [5551] = {.lex_state = 1049}, + [5552] = {.lex_state = 224}, + [5553] = {.lex_state = 1067}, + [5554] = {.lex_state = 3164}, + [5555] = {.lex_state = 1067}, + [5556] = {.lex_state = 205}, + [5557] = {.lex_state = 1038}, + [5558] = {.lex_state = 1038}, + [5559] = {.lex_state = 1039}, + [5560] = {.lex_state = 180}, + [5561] = {.lex_state = 180}, + [5562] = {.lex_state = 185}, + [5563] = {.lex_state = 1038}, + [5564] = {.lex_state = 180}, + [5565] = {.lex_state = 180}, + [5566] = {.lex_state = 1067}, + [5567] = {.lex_state = 185}, + [5568] = {.lex_state = 224}, + [5569] = {.lex_state = 1038}, + [5570] = {.lex_state = 180}, + [5571] = {.lex_state = 1038}, + [5572] = {.lex_state = 185}, + [5573] = {.lex_state = 222}, + [5574] = {.lex_state = 180}, + [5575] = {.lex_state = 1038}, + [5576] = {.lex_state = 223}, + [5577] = {.lex_state = 1038}, + [5578] = {.lex_state = 1067}, + [5579] = {.lex_state = 1038}, + [5580] = {.lex_state = 1038}, + [5581] = {.lex_state = 180}, + [5582] = {.lex_state = 1067}, + [5583] = {.lex_state = 1039}, + [5584] = {.lex_state = 1039}, + [5585] = {.lex_state = 1039}, + [5586] = {.lex_state = 372}, + [5587] = {.lex_state = 1038}, + [5588] = {.lex_state = 1038}, + [5589] = {.lex_state = 2553}, + [5590] = {.lex_state = 1038}, + [5591] = {.lex_state = 1038}, + [5592] = {.lex_state = 1039}, + [5593] = {.lex_state = 1039}, + [5594] = {.lex_state = 1038}, + [5595] = {.lex_state = 180}, + [5596] = {.lex_state = 1039}, + [5597] = {.lex_state = 1038}, + [5598] = {.lex_state = 1038}, + [5599] = {.lex_state = 185}, + [5600] = {.lex_state = 180}, + [5601] = {.lex_state = 185}, + [5602] = {.lex_state = 1038}, + [5603] = {.lex_state = 1038}, + [5604] = {.lex_state = 185}, + [5605] = {.lex_state = 1038}, + [5606] = {.lex_state = 1038}, + [5607] = {.lex_state = 1038}, + [5608] = {.lex_state = 1038}, + [5609] = {.lex_state = 1038}, + [5610] = {.lex_state = 1038}, + [5611] = {.lex_state = 574}, + [5612] = {.lex_state = 1038}, + [5613] = {.lex_state = 1038}, + [5614] = {.lex_state = 180}, + [5615] = {.lex_state = 1038}, + [5616] = {.lex_state = 1038}, + [5617] = {.lex_state = 1039}, + [5618] = {.lex_state = 1039}, + [5619] = {.lex_state = 1039}, + [5620] = {.lex_state = 1039}, + [5621] = {.lex_state = 1039}, + [5622] = {.lex_state = 1039}, + [5623] = {.lex_state = 1039}, + [5624] = {.lex_state = 1039}, + [5625] = {.lex_state = 1039}, + [5626] = {.lex_state = 1039}, + [5627] = {.lex_state = 1039}, + [5628] = {.lex_state = 1039}, + [5629] = {.lex_state = 1039}, + [5630] = {.lex_state = 1039}, + [5631] = {.lex_state = 1039}, + [5632] = {.lex_state = 1039}, + [5633] = {.lex_state = 1039}, + [5634] = {.lex_state = 1039}, + [5635] = {.lex_state = 1039}, + [5636] = {.lex_state = 1039}, + [5637] = {.lex_state = 1039}, + [5638] = {.lex_state = 1039}, + [5639] = {.lex_state = 1039}, + [5640] = {.lex_state = 1039}, + [5641] = {.lex_state = 1039}, + [5642] = {.lex_state = 1039}, + [5643] = {.lex_state = 1039}, + [5644] = {.lex_state = 1038}, + [5645] = {.lex_state = 1038}, + [5646] = {.lex_state = 1038}, + [5647] = {.lex_state = 1038}, + [5648] = {.lex_state = 1038}, + [5649] = {.lex_state = 1038}, + [5650] = {.lex_state = 224}, + [5651] = {.lex_state = 1038}, + [5652] = {.lex_state = 180}, + [5653] = {.lex_state = 1038}, + [5654] = {.lex_state = 1038}, + [5655] = {.lex_state = 1067}, + [5656] = {.lex_state = 209}, + [5657] = {.lex_state = 1039}, + [5658] = {.lex_state = 1038}, + [5659] = {.lex_state = 185}, + [5660] = {.lex_state = 574}, + [5661] = {.lex_state = 1038}, + [5662] = {.lex_state = 1067}, + [5663] = {.lex_state = 209}, + [5664] = {.lex_state = 209}, + [5665] = {.lex_state = 208}, + [5666] = {.lex_state = 1039}, + [5667] = {.lex_state = 209}, + [5668] = {.lex_state = 1039}, + [5669] = {.lex_state = 180}, + [5670] = {.lex_state = 1075}, + [5671] = {.lex_state = 1067}, + [5672] = {.lex_state = 180}, + [5673] = {.lex_state = 209}, + [5674] = {.lex_state = 208}, + [5675] = {.lex_state = 1096}, + [5676] = {.lex_state = 209}, + [5677] = {.lex_state = 1038}, + [5678] = {.lex_state = 372}, + [5679] = {.lex_state = 1038}, + [5680] = {.lex_state = 1038}, + [5681] = {.lex_state = 574}, + [5682] = {.lex_state = 180}, + [5683] = {.lex_state = 185}, + [5684] = {.lex_state = 1067}, + [5685] = {.lex_state = 1075}, + [5686] = {.lex_state = 185}, + [5687] = {.lex_state = 224}, + [5688] = {.lex_state = 205}, + [5689] = {.lex_state = 1067}, + [5690] = {.lex_state = 352}, + [5691] = {.lex_state = 352}, + [5692] = {.lex_state = 1039}, + [5693] = {.lex_state = 1067}, + [5694] = {.lex_state = 1039}, + [5695] = {.lex_state = 1067}, + [5696] = {.lex_state = 180}, [5697] = {.lex_state = 352}, - [5698] = {.lex_state = 1044}, - [5699] = {.lex_state = 178}, - [5700] = {.lex_state = 1044}, - [5701] = {.lex_state = 1043}, - [5702] = {.lex_state = 352}, - [5703] = {.lex_state = 1091}, - [5704] = {.lex_state = 1044}, - [5705] = {.lex_state = 1043}, - [5706] = {.lex_state = 1043}, - [5707] = {.lex_state = 222}, - [5708] = {.lex_state = 1044}, - [5709] = {.lex_state = 1043}, - [5710] = {.lex_state = 1043}, - [5711] = {.lex_state = 1043}, - [5712] = {.lex_state = 1043}, - [5713] = {.lex_state = 1044}, - [5714] = {.lex_state = 1043}, - [5715] = {.lex_state = 1043}, - [5716] = {.lex_state = 1044}, - [5717] = {.lex_state = 15}, - [5718] = {.lex_state = 1043}, - [5719] = {.lex_state = 1043}, - [5720] = {.lex_state = 1043}, - [5721] = {.lex_state = 1043}, - [5722] = {.lex_state = 1043}, - [5723] = {.lex_state = 1043}, - [5724] = {.lex_state = 224}, - [5725] = {.lex_state = 1083}, - [5726] = {.lex_state = 178}, - [5727] = {.lex_state = 1092}, - [5728] = {.lex_state = 1043}, - [5729] = {.lex_state = 54}, - [5730] = {.lex_state = 1113}, - [5731] = {.lex_state = 1043}, - [5732] = {.lex_state = 1043}, - [5733] = {.lex_state = 1113}, - [5734] = {.lex_state = 178}, - [5735] = {.lex_state = 352}, - [5736] = {.lex_state = 1044}, - [5737] = {.lex_state = 54}, - [5738] = {.lex_state = 1043}, - [5739] = {.lex_state = 338}, - [5740] = {.lex_state = 1044}, - [5741] = {.lex_state = 1043}, - [5742] = {.lex_state = 1043}, - [5743] = {.lex_state = 1044}, - [5744] = {.lex_state = 224}, - [5745] = {.lex_state = 1114}, - [5746] = {.lex_state = 1091}, - [5747] = {.lex_state = 3203}, - [5748] = {.lex_state = 222}, - [5749] = {.lex_state = 1087}, - [5750] = {.lex_state = 1043}, - [5751] = {.lex_state = 1043}, - [5752] = {.lex_state = 1043}, - [5753] = {.lex_state = 222}, - [5754] = {.lex_state = 1114}, - [5755] = {.lex_state = 1043}, - [5756] = {.lex_state = 1091}, - [5757] = {.lex_state = 54}, - [5758] = {.lex_state = 208}, - [5759] = {.lex_state = 1043}, - [5760] = {.lex_state = 352}, - [5761] = {.lex_state = 1043}, - [5762] = {.lex_state = 352}, - [5763] = {.lex_state = 1044}, - [5764] = {.lex_state = 352}, - [5765] = {.lex_state = 338}, - [5766] = {.lex_state = 352}, - [5767] = {.lex_state = 1043}, - [5768] = {.lex_state = 1044}, - [5769] = {.lex_state = 1091}, - [5770] = {.lex_state = 1043}, - [5771] = {.lex_state = 1044}, - [5772] = {.lex_state = 352}, - [5773] = {.lex_state = 1044}, - [5774] = {.lex_state = 1083}, - [5775] = {.lex_state = 222}, - [5776] = {.lex_state = 1087}, - [5777] = {.lex_state = 1083}, - [5778] = {.lex_state = 15}, - [5779] = {.lex_state = 1043}, - [5780] = {.lex_state = 1044}, - [5781] = {.lex_state = 1091}, - [5782] = {.lex_state = 1044}, - [5783] = {.lex_state = 1044}, - [5784] = {.lex_state = 1043}, - [5785] = {.lex_state = 1115}, - [5786] = {.lex_state = 15}, - [5787] = {.lex_state = 1043}, - [5788] = {.lex_state = 1043}, - [5789] = {.lex_state = 146}, - [5790] = {.lex_state = 1083}, - [5791] = {.lex_state = 1114}, + [5698] = {.lex_state = 1067}, + [5699] = {.lex_state = 1067}, + [5700] = {.lex_state = 1067}, + [5701] = {.lex_state = 1067}, + [5702] = {.lex_state = 1067}, + [5703] = {.lex_state = 223}, + [5704] = {.lex_state = 352}, + [5705] = {.lex_state = 1067}, + [5706] = {.lex_state = 1038}, + [5707] = {.lex_state = 209}, + [5708] = {.lex_state = 185}, + [5709] = {.lex_state = 1067}, + [5710] = {.lex_state = 1039}, + [5711] = {.lex_state = 1067}, + [5712] = {.lex_state = 1039}, + [5713] = {.lex_state = 1067}, + [5714] = {.lex_state = 372}, + [5715] = {.lex_state = 1067}, + [5716] = {.lex_state = 1067}, + [5717] = {.lex_state = 209}, + [5718] = {.lex_state = 1067}, + [5719] = {.lex_state = 208}, + [5720] = {.lex_state = 1038}, + [5721] = {.lex_state = 1039}, + [5722] = {.lex_state = 372}, + [5723] = {.lex_state = 180}, + [5724] = {.lex_state = 180}, + [5725] = {.lex_state = 185}, + [5726] = {.lex_state = 185}, + [5727] = {.lex_state = 1067}, + [5728] = {.lex_state = 372}, + [5729] = {.lex_state = 1067}, + [5730] = {.lex_state = 1067}, + [5731] = {.lex_state = 1038}, + [5732] = {.lex_state = 1067}, + [5733] = {.lex_state = 1038}, + [5734] = {.lex_state = 224}, + [5735] = {.lex_state = 1067}, + [5736] = {.lex_state = 1096}, + [5737] = {.lex_state = 1039}, + [5738] = {.lex_state = 1067}, + [5739] = {.lex_state = 1096}, + [5740] = {.lex_state = 1067}, + [5741] = {.lex_state = 1039}, + [5742] = {.lex_state = 1067}, + [5743] = {.lex_state = 185}, + [5744] = {.lex_state = 1067}, + [5745] = {.lex_state = 185}, + [5746] = {.lex_state = 1039}, + [5747] = {.lex_state = 1067}, + [5748] = {.lex_state = 1067}, + [5749] = {.lex_state = 180}, + [5750] = {.lex_state = 180}, + [5751] = {.lex_state = 1067}, + [5752] = {.lex_state = 1039}, + [5753] = {.lex_state = 209}, + [5754] = {.lex_state = 1067}, + [5755] = {.lex_state = 323}, + [5756] = {.lex_state = 1067}, + [5757] = {.lex_state = 224}, + [5758] = {.lex_state = 1038}, + [5759] = {.lex_state = 185}, + [5760] = {.lex_state = 180}, + [5761] = {.lex_state = 1067}, + [5762] = {.lex_state = 574}, + [5763] = {.lex_state = 180}, + [5764] = {.lex_state = 185}, + [5765] = {.lex_state = 1067}, + [5766] = {.lex_state = 202}, + [5767] = {.lex_state = 1067}, + [5768] = {.lex_state = 1039}, + [5769] = {.lex_state = 180}, + [5770] = {.lex_state = 185}, + [5771] = {.lex_state = 185}, + [5772] = {.lex_state = 208}, + [5773] = {.lex_state = 1067}, + [5774] = {.lex_state = 1067}, + [5775] = {.lex_state = 1067}, + [5776] = {.lex_state = 1067}, + [5777] = {.lex_state = 1067}, + [5778] = {.lex_state = 1067}, + [5779] = {.lex_state = 1067}, + [5780] = {.lex_state = 180}, + [5781] = {.lex_state = 180}, + [5782] = {.lex_state = 1067}, + [5783] = {.lex_state = 180}, + [5784] = {.lex_state = 1067}, + [5785] = {.lex_state = 1067}, + [5786] = {.lex_state = 224}, + [5787] = {.lex_state = 185}, + [5788] = {.lex_state = 1067}, + [5789] = {.lex_state = 1067}, + [5790] = {.lex_state = 223}, + [5791] = {.lex_state = 180}, [5792] = {.lex_state = 180}, - [5793] = {.lex_state = 1043}, - [5794] = {.lex_state = 334}, - [5795] = {.lex_state = 15}, - [5796] = {.lex_state = 1113}, - [5797] = {.lex_state = 1114}, - [5798] = {.lex_state = 15}, - [5799] = {.lex_state = 276}, - [5800] = {.lex_state = 1044}, - [5801] = {.lex_state = 222}, - [5802] = {.lex_state = 353}, - [5803] = {.lex_state = 222}, - [5804] = {.lex_state = 1044}, - [5805] = {.lex_state = 1044}, - [5806] = {.lex_state = 1044}, - [5807] = {.lex_state = 134}, - [5808] = {.lex_state = 134}, - [5809] = {.lex_state = 1044}, - [5810] = {.lex_state = 1091}, - [5811] = {.lex_state = 1091}, - [5812] = {.lex_state = 15}, - [5813] = {.lex_state = 1044}, - [5814] = {.lex_state = 15}, - [5815] = {.lex_state = 15}, - [5816] = {.lex_state = 1043}, - [5817] = {.lex_state = 15}, - [5818] = {.lex_state = 371}, - [5819] = {.lex_state = 1114}, - [5820] = {.lex_state = 15}, - [5821] = {.lex_state = 15}, - [5822] = {.lex_state = 1053}, - [5823] = {.lex_state = 15}, - [5824] = {.lex_state = 1043}, - [5825] = {.lex_state = 276}, - [5826] = {.lex_state = 276}, - [5827] = {.lex_state = 371}, - [5828] = {.lex_state = 15}, - [5829] = {.lex_state = 222}, - [5830] = {.lex_state = 15}, - [5831] = {.lex_state = 15}, - [5832] = {.lex_state = 1113}, - [5833] = {.lex_state = 15}, - [5834] = {.lex_state = 1044}, - [5835] = {.lex_state = 15}, - [5836] = {.lex_state = 15}, - [5837] = {.lex_state = 222}, - [5838] = {.lex_state = 54}, - [5839] = {.lex_state = 15}, - [5840] = {.lex_state = 371}, - [5841] = {.lex_state = 15}, - [5842] = {.lex_state = 15}, - [5843] = {.lex_state = 15}, - [5844] = {.lex_state = 1043}, - [5845] = {.lex_state = 15}, - [5846] = {.lex_state = 15}, - [5847] = {.lex_state = 15}, - [5848] = {.lex_state = 1043}, - [5849] = {.lex_state = 1044}, - [5850] = {.lex_state = 1043}, - [5851] = {.lex_state = 353}, - [5852] = {.lex_state = 15}, - [5853] = {.lex_state = 15}, - [5854] = {.lex_state = 1091}, - [5855] = {.lex_state = 15}, - [5856] = {.lex_state = 15}, - [5857] = {.lex_state = 15}, - [5858] = {.lex_state = 1044}, - [5859] = {.lex_state = 15}, - [5860] = {.lex_state = 1115}, - [5861] = {.lex_state = 353}, - [5862] = {.lex_state = 1043}, - [5863] = {.lex_state = 1115}, - [5864] = {.lex_state = 208}, - [5865] = {.lex_state = 1044}, - [5866] = {.lex_state = 222}, - [5867] = {.lex_state = 353}, - [5868] = {.lex_state = 1044}, - [5869] = {.lex_state = 54}, - [5870] = {.lex_state = 15}, - [5871] = {.lex_state = 1043}, - [5872] = {.lex_state = 1043}, - [5873] = {.lex_state = 1054}, - [5874] = {.lex_state = 15}, - [5875] = {.lex_state = 1043}, - [5876] = {.lex_state = 15}, - [5877] = {.lex_state = 15}, - [5878] = {.lex_state = 15}, - [5879] = {.lex_state = 3204}, - [5880] = {.lex_state = 15}, - [5881] = {.lex_state = 1044}, - [5882] = {.lex_state = 15}, - [5883] = {.lex_state = 2583}, - [5884] = {.lex_state = 222}, - [5885] = {.lex_state = 1043}, - [5886] = {.lex_state = 15}, - [5887] = {.lex_state = 117}, - [5888] = {.lex_state = 15}, - [5889] = {.lex_state = 1083}, - [5890] = {.lex_state = 1043}, - [5891] = {.lex_state = 1044}, - [5892] = {.lex_state = 1115}, - [5893] = {.lex_state = 15}, - [5894] = {.lex_state = 185}, - [5895] = {.lex_state = 223}, - [5896] = {.lex_state = 1044}, - [5897] = {.lex_state = 1115}, - [5898] = {.lex_state = 15}, - [5899] = {.lex_state = 1043}, - [5900] = {.lex_state = 15}, - [5901] = {.lex_state = 1044}, - [5902] = {.lex_state = 353}, - [5903] = {.lex_state = 1043}, - [5904] = {.lex_state = 1044}, - [5905] = {.lex_state = 1113}, - [5906] = {.lex_state = 338}, - [5907] = {.lex_state = 191}, - [5908] = {.lex_state = 191}, - [5909] = {.lex_state = 191}, - [5910] = {.lex_state = 191}, - [5911] = {.lex_state = 191}, - [5912] = {.lex_state = 191}, - [5913] = {.lex_state = 191}, - [5914] = {.lex_state = 191}, - [5915] = {.lex_state = 191}, - [5916] = {.lex_state = 191}, - [5917] = {.lex_state = 191}, - [5918] = {.lex_state = 191}, - [5919] = {.lex_state = 191}, - [5920] = {.lex_state = 15}, - [5921] = {.lex_state = 353}, - [5922] = {.lex_state = 353}, - [5923] = {.lex_state = 1044}, - [5924] = {.lex_state = 54}, - [5925] = {.lex_state = 1044}, - [5926] = {.lex_state = 1044}, - [5927] = {.lex_state = 1044}, - [5928] = {.lex_state = 1047}, - [5929] = {.lex_state = 353}, - [5930] = {.lex_state = 1091}, - [5931] = {.lex_state = 1044}, - [5932] = {.lex_state = 54}, - [5933] = {.lex_state = 54}, - [5934] = {.lex_state = 15}, - [5935] = {.lex_state = 134}, - [5936] = {.lex_state = 276}, - [5937] = {.lex_state = 15}, - [5938] = {.lex_state = 208}, - [5939] = {.lex_state = 15}, - [5940] = {.lex_state = 1044}, - [5941] = {.lex_state = 352}, - [5942] = {.lex_state = 146}, - [5943] = {.lex_state = 15}, - [5944] = {.lex_state = 1044}, - [5945] = {.lex_state = 370}, - [5946] = {.lex_state = 338}, - [5947] = {.lex_state = 223}, - [5948] = {.lex_state = 15}, - [5949] = {.lex_state = 1043}, - [5950] = {.lex_state = 1043}, - [5951] = {.lex_state = 1044}, - [5952] = {.lex_state = 224}, - [5953] = {.lex_state = 1044}, - [5954] = {.lex_state = 185}, - [5955] = {.lex_state = 185}, - [5956] = {.lex_state = 1083}, - [5957] = {.lex_state = 1043}, - [5958] = {.lex_state = 185}, - [5959] = {.lex_state = 1043}, - [5960] = {.lex_state = 372}, - [5961] = {.lex_state = 223}, - [5962] = {.lex_state = 185}, - [5963] = {.lex_state = 1044}, - [5964] = {.lex_state = 1044}, - [5965] = {.lex_state = 180}, - [5966] = {.lex_state = 1044}, - [5967] = {.lex_state = 180}, - [5968] = {.lex_state = 180}, - [5969] = {.lex_state = 180}, - [5970] = {.lex_state = 1043}, - [5971] = {.lex_state = 180}, - [5972] = {.lex_state = 180}, - [5973] = {.lex_state = 180}, - [5974] = {.lex_state = 180}, - [5975] = {.lex_state = 180}, - [5976] = {.lex_state = 180}, - [5977] = {.lex_state = 180}, - [5978] = {.lex_state = 54}, - [5979] = {.lex_state = 180}, - [5980] = {.lex_state = 1083}, - [5981] = {.lex_state = 185}, - [5982] = {.lex_state = 1044}, - [5983] = {.lex_state = 1044}, - [5984] = {.lex_state = 180}, - [5985] = {.lex_state = 1044}, - [5986] = {.lex_state = 1043}, - [5987] = {.lex_state = 1044}, - [5988] = {.lex_state = 1044}, - [5989] = {.lex_state = 224}, - [5990] = {.lex_state = 352}, - [5991] = {.lex_state = 1083}, - [5992] = {.lex_state = 1044}, - [5993] = {.lex_state = 1044}, - [5994] = {.lex_state = 1083}, - [5995] = {.lex_state = 1044}, - [5996] = {.lex_state = 1083}, - [5997] = {.lex_state = 180}, - [5998] = {.lex_state = 1044}, - [5999] = {.lex_state = 1083}, - [6000] = {.lex_state = 372}, - [6001] = {.lex_state = 1044}, - [6002] = {.lex_state = 1044}, - [6003] = {.lex_state = 1043}, - [6004] = {.lex_state = 1044}, - [6005] = {.lex_state = 1044}, - [6006] = {.lex_state = 1044}, - [6007] = {.lex_state = 1044}, - [6008] = {.lex_state = 205}, - [6009] = {.lex_state = 205}, - [6010] = {.lex_state = 1044}, - [6011] = {.lex_state = 1043}, - [6012] = {.lex_state = 1044}, - [6013] = {.lex_state = 1044}, - [6014] = {.lex_state = 1044}, - [6015] = {.lex_state = 1043}, - [6016] = {.lex_state = 185}, - [6017] = {.lex_state = 1043}, - [6018] = {.lex_state = 185}, - [6019] = {.lex_state = 1043}, - [6020] = {.lex_state = 1044}, - [6021] = {.lex_state = 372}, - [6022] = {.lex_state = 1043}, - [6023] = {.lex_state = 1043}, - [6024] = {.lex_state = 1044}, - [6025] = {.lex_state = 1044}, - [6026] = {.lex_state = 223}, - [6027] = {.lex_state = 372}, - [6028] = {.lex_state = 1044}, - [6029] = {.lex_state = 1083}, - [6030] = {.lex_state = 1083}, - [6031] = {.lex_state = 1083}, - [6032] = {.lex_state = 1083}, - [6033] = {.lex_state = 1083}, - [6034] = {.lex_state = 1044}, - [6035] = {.lex_state = 180}, - [6036] = {.lex_state = 1044}, - [6037] = {.lex_state = 1054}, - [6038] = {.lex_state = 581}, - [6039] = {.lex_state = 1043}, - [6040] = {.lex_state = 1083}, - [6041] = {.lex_state = 1083}, - [6042] = {.lex_state = 185}, - [6043] = {.lex_state = 185}, - [6044] = {.lex_state = 1083}, - [6045] = {.lex_state = 1044}, - [6046] = {.lex_state = 1044}, - [6047] = {.lex_state = 185}, - [6048] = {.lex_state = 1044}, - [6049] = {.lex_state = 1043}, - [6050] = {.lex_state = 581}, - [6051] = {.lex_state = 1044}, - [6052] = {.lex_state = 185}, - [6053] = {.lex_state = 1044}, - [6054] = {.lex_state = 180}, - [6055] = {.lex_state = 185}, - [6056] = {.lex_state = 1044}, + [5793] = {.lex_state = 180}, + [5794] = {.lex_state = 185}, + [5795] = {.lex_state = 180}, + [5796] = {.lex_state = 185}, + [5797] = {.lex_state = 224}, + [5798] = {.lex_state = 224}, + [5799] = {.lex_state = 372}, + [5800] = {.lex_state = 1038}, + [5801] = {.lex_state = 180}, + [5802] = {.lex_state = 1067}, + [5803] = {.lex_state = 180}, + [5804] = {.lex_state = 1039}, + [5805] = {.lex_state = 1038}, + [5806] = {.lex_state = 180}, + [5807] = {.lex_state = 1067}, + [5808] = {.lex_state = 224}, + [5809] = {.lex_state = 185}, + [5810] = {.lex_state = 180}, + [5811] = {.lex_state = 1038}, + [5812] = {.lex_state = 185}, + [5813] = {.lex_state = 185}, + [5814] = {.lex_state = 180}, + [5815] = {.lex_state = 180}, + [5816] = {.lex_state = 1038}, + [5817] = {.lex_state = 180}, + [5818] = {.lex_state = 1067}, + [5819] = {.lex_state = 185}, + [5820] = {.lex_state = 185}, + [5821] = {.lex_state = 180}, + [5822] = {.lex_state = 58}, + [5823] = {.lex_state = 1067}, + [5824] = {.lex_state = 1067}, + [5825] = {.lex_state = 180}, + [5826] = {.lex_state = 1067}, + [5827] = {.lex_state = 1067}, + [5828] = {.lex_state = 352}, + [5829] = {.lex_state = 209}, + [5830] = {.lex_state = 180}, + [5831] = {.lex_state = 1067}, + [5832] = {.lex_state = 180}, + [5833] = {.lex_state = 180}, + [5834] = {.lex_state = 180}, + [5835] = {.lex_state = 224}, + [5836] = {.lex_state = 180}, + [5837] = {.lex_state = 209}, + [5838] = {.lex_state = 1067}, + [5839] = {.lex_state = 223}, + [5840] = {.lex_state = 368}, + [5841] = {.lex_state = 323}, + [5842] = {.lex_state = 323}, + [5843] = {.lex_state = 180}, + [5844] = {.lex_state = 205}, + [5845] = {.lex_state = 205}, + [5846] = {.lex_state = 1049}, + [5847] = {.lex_state = 323}, + [5848] = {.lex_state = 323}, + [5849] = {.lex_state = 1067}, + [5850] = {.lex_state = 1038}, + [5851] = {.lex_state = 180}, + [5852] = {.lex_state = 185}, + [5853] = {.lex_state = 180}, + [5854] = {.lex_state = 180}, + [5855] = {.lex_state = 1038}, + [5856] = {.lex_state = 185}, + [5857] = {.lex_state = 1039}, + [5858] = {.lex_state = 574}, + [5859] = {.lex_state = 180}, + [5860] = {.lex_state = 1039}, + [5861] = {.lex_state = 180}, + [5862] = {.lex_state = 1067}, + [5863] = {.lex_state = 185}, + [5864] = {.lex_state = 350}, + [5865] = {.lex_state = 1067}, + [5866] = {.lex_state = 1067}, + [5867] = {.lex_state = 281}, + [5868] = {.lex_state = 146}, + [5869] = {.lex_state = 2538}, + [5870] = {.lex_state = 1067}, + [5871] = {.lex_state = 284}, + [5872] = {.lex_state = 284}, + [5873] = {.lex_state = 1067}, + [5874] = {.lex_state = 1067}, + [5875] = {.lex_state = 1067}, + [5876] = {.lex_state = 1067}, + [5877] = {.lex_state = 137}, + [5878] = {.lex_state = 1067}, + [5879] = {.lex_state = 1067}, + [5880] = {.lex_state = 1067}, + [5881] = {.lex_state = 1067}, + [5882] = {.lex_state = 209}, + [5883] = {.lex_state = 209}, + [5884] = {.lex_state = 185}, + [5885] = {.lex_state = 146}, + [5886] = {.lex_state = 1067}, + [5887] = {.lex_state = 185}, + [5888] = {.lex_state = 1067}, + [5889] = {.lex_state = 323}, + [5890] = {.lex_state = 1067}, + [5891] = {.lex_state = 224}, + [5892] = {.lex_state = 146}, + [5893] = {.lex_state = 362}, + [5894] = {.lex_state = 134}, + [5895] = {.lex_state = 224}, + [5896] = {.lex_state = 222}, + [5897] = {.lex_state = 1067}, + [5898] = {.lex_state = 323}, + [5899] = {.lex_state = 1067}, + [5900] = {.lex_state = 1067}, + [5901] = {.lex_state = 1067}, + [5902] = {.lex_state = 360}, + [5903] = {.lex_state = 185}, + [5904] = {.lex_state = 146}, + [5905] = {.lex_state = 55}, + [5906] = {.lex_state = 146}, + [5907] = {.lex_state = 1067}, + [5908] = {.lex_state = 1067}, + [5909] = {.lex_state = 281}, + [5910] = {.lex_state = 284}, + [5911] = {.lex_state = 348}, + [5912] = {.lex_state = 146}, + [5913] = {.lex_state = 1067}, + [5914] = {.lex_state = 1067}, + [5915] = {.lex_state = 60}, + [5916] = {.lex_state = 1067}, + [5917] = {.lex_state = 1067}, + [5918] = {.lex_state = 185}, + [5919] = {.lex_state = 352}, + [5920] = {.lex_state = 323}, + [5921] = {.lex_state = 1067}, + [5922] = {.lex_state = 54}, + [5923] = {.lex_state = 1067}, + [5924] = {.lex_state = 1067}, + [5925] = {.lex_state = 1067}, + [5926] = {.lex_state = 281}, + [5927] = {.lex_state = 57}, + [5928] = {.lex_state = 281}, + [5929] = {.lex_state = 2553}, + [5930] = {.lex_state = 1067}, + [5931] = {.lex_state = 1067}, + [5932] = {.lex_state = 56}, + [5933] = {.lex_state = 342}, + [5934] = {.lex_state = 1067}, + [5935] = {.lex_state = 1067}, + [5936] = {.lex_state = 352}, + [5937] = {.lex_state = 323}, + [5938] = {.lex_state = 153}, + [5939] = {.lex_state = 1067}, + [5940] = {.lex_state = 1067}, + [5941] = {.lex_state = 1067}, + [5942] = {.lex_state = 1067}, + [5943] = {.lex_state = 54}, + [5944] = {.lex_state = 352}, + [5945] = {.lex_state = 1067}, + [5946] = {.lex_state = 1067}, + [5947] = {.lex_state = 1067}, + [5948] = {.lex_state = 1067}, + [5949] = {.lex_state = 342}, + [5950] = {.lex_state = 146}, + [5951] = {.lex_state = 281}, + [5952] = {.lex_state = 1067}, + [5953] = {.lex_state = 1067}, + [5954] = {.lex_state = 1067}, + [5955] = {.lex_state = 1067}, + [5956] = {.lex_state = 1067}, + [5957] = {.lex_state = 185}, + [5958] = {.lex_state = 284}, + [5959] = {.lex_state = 2541}, + [5960] = {.lex_state = 185}, + [5961] = {.lex_state = 185}, + [5962] = {.lex_state = 1067}, + [5963] = {.lex_state = 1067}, + [5964] = {.lex_state = 1067}, + [5965] = {.lex_state = 1067}, + [5966] = {.lex_state = 54}, + [5967] = {.lex_state = 1067}, + [5968] = {.lex_state = 137}, + [5969] = {.lex_state = 1067}, + [5970] = {.lex_state = 1067}, + [5971] = {.lex_state = 209}, + [5972] = {.lex_state = 59}, + [5973] = {.lex_state = 360}, + [5974] = {.lex_state = 209}, + [5975] = {.lex_state = 1067}, + [5976] = {.lex_state = 351}, + [5977] = {.lex_state = 342}, + [5978] = {.lex_state = 1067}, + [5979] = {.lex_state = 1067}, + [5980] = {.lex_state = 342}, + [5981] = {.lex_state = 1067}, + [5982] = {.lex_state = 1067}, + [5983] = {.lex_state = 1067}, + [5984] = {.lex_state = 284}, + [5985] = {.lex_state = 1067}, + [5986] = {.lex_state = 283}, + [5987] = {.lex_state = 146}, + [5988] = {.lex_state = 146}, + [5989] = {.lex_state = 357}, + [5990] = {.lex_state = 2544}, + [5991] = {.lex_state = 134}, + [5992] = {.lex_state = 185}, + [5993] = {.lex_state = 357}, + [5994] = {.lex_state = 146}, + [5995] = {.lex_state = 357}, + [5996] = {.lex_state = 146}, + [5997] = {.lex_state = 357}, + [5998] = {.lex_state = 134}, + [5999] = {.lex_state = 134}, + [6000] = {.lex_state = 146}, + [6001] = {.lex_state = 357}, + [6002] = {.lex_state = 146}, + [6003] = {.lex_state = 357}, + [6004] = {.lex_state = 286}, + [6005] = {.lex_state = 286}, + [6006] = {.lex_state = 282}, + [6007] = {.lex_state = 134}, + [6008] = {.lex_state = 146}, + [6009] = {.lex_state = 2542}, + [6010] = {.lex_state = 357}, + [6011] = {.lex_state = 134}, + [6012] = {.lex_state = 285}, + [6013] = {.lex_state = 282}, + [6014] = {.lex_state = 208}, + [6015] = {.lex_state = 146}, + [6016] = {.lex_state = 134}, + [6017] = {.lex_state = 134}, + [6018] = {.lex_state = 357}, + [6019] = {.lex_state = 134}, + [6020] = {.lex_state = 134}, + [6021] = {.lex_state = 134}, + [6022] = {.lex_state = 134}, + [6023] = {.lex_state = 2539}, + [6024] = {.lex_state = 357}, + [6025] = {.lex_state = 134}, + [6026] = {.lex_state = 134}, + [6027] = {.lex_state = 134}, + [6028] = {.lex_state = 146}, + [6029] = {.lex_state = 134}, + [6030] = {.lex_state = 134}, + [6031] = {.lex_state = 134}, + [6032] = {.lex_state = 134}, + [6033] = {.lex_state = 134}, + [6034] = {.lex_state = 283}, + [6035] = {.lex_state = 146}, + [6036] = {.lex_state = 357}, + [6037] = {.lex_state = 145}, + [6038] = {.lex_state = 357}, + [6039] = {.lex_state = 134}, + [6040] = {.lex_state = 146}, + [6041] = {.lex_state = 146}, + [6042] = {.lex_state = 357}, + [6043] = {.lex_state = 144}, + [6044] = {.lex_state = 146}, + [6045] = {.lex_state = 146}, + [6046] = {.lex_state = 146}, + [6047] = {.lex_state = 361}, + [6048] = {.lex_state = 150}, + [6049] = {.lex_state = 357}, + [6050] = {.lex_state = 185}, + [6051] = {.lex_state = 282}, + [6052] = {.lex_state = 146}, + [6053] = {.lex_state = 209}, + [6054] = {.lex_state = 282}, + [6055] = {.lex_state = 282}, + [6056] = {.lex_state = 357}, [6057] = {.lex_state = 209}, - [6058] = {.lex_state = 1083}, - [6059] = {.lex_state = 1043}, - [6060] = {.lex_state = 1083}, - [6061] = {.lex_state = 1044}, - [6062] = {.lex_state = 1043}, - [6063] = {.lex_state = 1044}, - [6064] = {.lex_state = 1083}, - [6065] = {.lex_state = 58}, - [6066] = {.lex_state = 1083}, - [6067] = {.lex_state = 1083}, - [6068] = {.lex_state = 1044}, - [6069] = {.lex_state = 1043}, - [6070] = {.lex_state = 1083}, - [6071] = {.lex_state = 1043}, - [6072] = {.lex_state = 205}, - [6073] = {.lex_state = 205}, - [6074] = {.lex_state = 1083}, - [6075] = {.lex_state = 180}, - [6076] = {.lex_state = 351}, - [6077] = {.lex_state = 1083}, - [6078] = {.lex_state = 185}, - [6079] = {.lex_state = 1043}, - [6080] = {.lex_state = 3204}, - [6081] = {.lex_state = 1083}, - [6082] = {.lex_state = 1083}, - [6083] = {.lex_state = 1083}, - [6084] = {.lex_state = 180}, - [6085] = {.lex_state = 1043}, - [6086] = {.lex_state = 1083}, - [6087] = {.lex_state = 222}, - [6088] = {.lex_state = 224}, - [6089] = {.lex_state = 185}, - [6090] = {.lex_state = 1083}, - [6091] = {.lex_state = 180}, - [6092] = {.lex_state = 180}, - [6093] = {.lex_state = 180}, - [6094] = {.lex_state = 180}, - [6095] = {.lex_state = 1083}, - [6096] = {.lex_state = 1083}, - [6097] = {.lex_state = 1043}, - [6098] = {.lex_state = 180}, - [6099] = {.lex_state = 180}, - [6100] = {.lex_state = 1043}, - [6101] = {.lex_state = 1083}, - [6102] = {.lex_state = 180}, - [6103] = {.lex_state = 1043}, - [6104] = {.lex_state = 180}, - [6105] = {.lex_state = 1083}, - [6106] = {.lex_state = 1043}, - [6107] = {.lex_state = 1044}, - [6108] = {.lex_state = 1083}, - [6109] = {.lex_state = 1083}, - [6110] = {.lex_state = 1115}, - [6111] = {.lex_state = 1115}, - [6112] = {.lex_state = 209}, - [6113] = {.lex_state = 1044}, - [6114] = {.lex_state = 180}, - [6115] = {.lex_state = 1083}, - [6116] = {.lex_state = 1083}, - [6117] = {.lex_state = 180}, - [6118] = {.lex_state = 224}, - [6119] = {.lex_state = 180}, - [6120] = {.lex_state = 1083}, - [6121] = {.lex_state = 209}, - [6122] = {.lex_state = 180}, - [6123] = {.lex_state = 180}, - [6124] = {.lex_state = 1083}, - [6125] = {.lex_state = 180}, - [6126] = {.lex_state = 1083}, - [6127] = {.lex_state = 1083}, - [6128] = {.lex_state = 1083}, - [6129] = {.lex_state = 581}, - [6130] = {.lex_state = 180}, - [6131] = {.lex_state = 1083}, - [6132] = {.lex_state = 180}, - [6133] = {.lex_state = 209}, - [6134] = {.lex_state = 1083}, - [6135] = {.lex_state = 1083}, - [6136] = {.lex_state = 1083}, - [6137] = {.lex_state = 1083}, - [6138] = {.lex_state = 1043}, - [6139] = {.lex_state = 1083}, - [6140] = {.lex_state = 1083}, - [6141] = {.lex_state = 180}, - [6142] = {.lex_state = 2591}, - [6143] = {.lex_state = 180}, - [6144] = {.lex_state = 1043}, - [6145] = {.lex_state = 1091}, - [6146] = {.lex_state = 180}, - [6147] = {.lex_state = 1043}, - [6148] = {.lex_state = 1083}, - [6149] = {.lex_state = 1083}, - [6150] = {.lex_state = 1044}, - [6151] = {.lex_state = 180}, - [6152] = {.lex_state = 224}, - [6153] = {.lex_state = 224}, - [6154] = {.lex_state = 224}, - [6155] = {.lex_state = 224}, - [6156] = {.lex_state = 1091}, - [6157] = {.lex_state = 1083}, - [6158] = {.lex_state = 1043}, - [6159] = {.lex_state = 1043}, - [6160] = {.lex_state = 224}, - [6161] = {.lex_state = 223}, - [6162] = {.lex_state = 1083}, - [6163] = {.lex_state = 209}, - [6164] = {.lex_state = 180}, - [6165] = {.lex_state = 1043}, - [6166] = {.lex_state = 185}, - [6167] = {.lex_state = 209}, - [6168] = {.lex_state = 180}, - [6169] = {.lex_state = 185}, - [6170] = {.lex_state = 224}, - [6171] = {.lex_state = 222}, - [6172] = {.lex_state = 1044}, - [6173] = {.lex_state = 1043}, - [6174] = {.lex_state = 1043}, - [6175] = {.lex_state = 185}, - [6176] = {.lex_state = 1083}, - [6177] = {.lex_state = 185}, - [6178] = {.lex_state = 1044}, - [6179] = {.lex_state = 180}, - [6180] = {.lex_state = 224}, - [6181] = {.lex_state = 1044}, - [6182] = {.lex_state = 1083}, - [6183] = {.lex_state = 1083}, - [6184] = {.lex_state = 185}, - [6185] = {.lex_state = 1044}, - [6186] = {.lex_state = 1043}, - [6187] = {.lex_state = 1083}, - [6188] = {.lex_state = 1043}, - [6189] = {.lex_state = 180}, - [6190] = {.lex_state = 180}, - [6191] = {.lex_state = 352}, - [6192] = {.lex_state = 352}, - [6193] = {.lex_state = 1043}, - [6194] = {.lex_state = 180}, - [6195] = {.lex_state = 180}, - [6196] = {.lex_state = 1043}, - [6197] = {.lex_state = 1044}, - [6198] = {.lex_state = 180}, - [6199] = {.lex_state = 1043}, - [6200] = {.lex_state = 1043}, - [6201] = {.lex_state = 223}, - [6202] = {.lex_state = 1044}, - [6203] = {.lex_state = 185}, - [6204] = {.lex_state = 180}, - [6205] = {.lex_state = 180}, - [6206] = {.lex_state = 1043}, - [6207] = {.lex_state = 1043}, - [6208] = {.lex_state = 1043}, - [6209] = {.lex_state = 209}, - [6210] = {.lex_state = 208}, - [6211] = {.lex_state = 323}, - [6212] = {.lex_state = 180}, - [6213] = {.lex_state = 180}, - [6214] = {.lex_state = 323}, - [6215] = {.lex_state = 1044}, - [6216] = {.lex_state = 209}, - [6217] = {.lex_state = 180}, - [6218] = {.lex_state = 185}, - [6219] = {.lex_state = 180}, - [6220] = {.lex_state = 180}, - [6221] = {.lex_state = 1043}, - [6222] = {.lex_state = 1044}, - [6223] = {.lex_state = 1083}, - [6224] = {.lex_state = 209}, - [6225] = {.lex_state = 1043}, - [6226] = {.lex_state = 1043}, - [6227] = {.lex_state = 1043}, - [6228] = {.lex_state = 1043}, - [6229] = {.lex_state = 323}, - [6230] = {.lex_state = 1043}, - [6231] = {.lex_state = 1043}, + [6058] = {.lex_state = 209}, + [6059] = {.lex_state = 146}, + [6060] = {.lex_state = 146}, + [6061] = {.lex_state = 146}, + [6062] = {.lex_state = 146}, + [6063] = {.lex_state = 146}, + [6064] = {.lex_state = 146}, + [6065] = {.lex_state = 146}, + [6066] = {.lex_state = 146}, + [6067] = {.lex_state = 146}, + [6068] = {.lex_state = 146}, + [6069] = {.lex_state = 146}, + [6070] = {.lex_state = 146}, + [6071] = {.lex_state = 146}, + [6072] = {.lex_state = 146}, + [6073] = {.lex_state = 146}, + [6074] = {.lex_state = 146}, + [6075] = {.lex_state = 146}, + [6076] = {.lex_state = 146}, + [6077] = {.lex_state = 146}, + [6078] = {.lex_state = 146}, + [6079] = {.lex_state = 146}, + [6080] = {.lex_state = 146}, + [6081] = {.lex_state = 146}, + [6082] = {.lex_state = 146}, + [6083] = {.lex_state = 146}, + [6084] = {.lex_state = 146}, + [6085] = {.lex_state = 134}, + [6086] = {.lex_state = 357}, + [6087] = {.lex_state = 357}, + [6088] = {.lex_state = 146}, + [6089] = {.lex_state = 283}, + [6090] = {.lex_state = 61}, + [6091] = {.lex_state = 287}, + [6092] = {.lex_state = 357}, + [6093] = {.lex_state = 285}, + [6094] = {.lex_state = 357}, + [6095] = {.lex_state = 357}, + [6096] = {.lex_state = 2540}, + [6097] = {.lex_state = 146}, + [6098] = {.lex_state = 146}, + [6099] = {.lex_state = 285}, + [6100] = {.lex_state = 357}, + [6101] = {.lex_state = 357}, + [6102] = {.lex_state = 357}, + [6103] = {.lex_state = 285}, + [6104] = {.lex_state = 286}, + [6105] = {.lex_state = 285}, + [6106] = {.lex_state = 357}, + [6107] = {.lex_state = 134}, + [6108] = {.lex_state = 134}, + [6109] = {.lex_state = 146}, + [6110] = {.lex_state = 134}, + [6111] = {.lex_state = 357}, + [6112] = {.lex_state = 357}, + [6113] = {.lex_state = 161}, + [6114] = {.lex_state = 160}, + [6115] = {.lex_state = 134}, + [6116] = {.lex_state = 134}, + [6117] = {.lex_state = 357}, + [6118] = {.lex_state = 357}, + [6119] = {.lex_state = 287}, + [6120] = {.lex_state = 134}, + [6121] = {.lex_state = 134}, + [6122] = {.lex_state = 134}, + [6123] = {.lex_state = 134}, + [6124] = {.lex_state = 357}, + [6125] = {.lex_state = 283}, + [6126] = {.lex_state = 134}, + [6127] = {.lex_state = 134}, + [6128] = {.lex_state = 357}, + [6129] = {.lex_state = 2543}, + [6130] = {.lex_state = 134}, + [6131] = {.lex_state = 357}, + [6132] = {.lex_state = 134}, + [6133] = {.lex_state = 357}, + [6134] = {.lex_state = 357}, + [6135] = {.lex_state = 357}, + [6136] = {.lex_state = 357}, + [6137] = {.lex_state = 134}, + [6138] = {.lex_state = 357}, + [6139] = {.lex_state = 134}, + [6140] = {.lex_state = 357}, + [6141] = {.lex_state = 62}, + [6142] = {.lex_state = 357}, + [6143] = {.lex_state = 357}, + [6144] = {.lex_state = 357}, + [6145] = {.lex_state = 357}, + [6146] = {.lex_state = 287}, + [6147] = {.lex_state = 357}, + [6148] = {.lex_state = 357}, + [6149] = {.lex_state = 357}, + [6150] = {.lex_state = 357}, + [6151] = {.lex_state = 357}, + [6152] = {.lex_state = 287}, + [6153] = {.lex_state = 134}, + [6154] = {.lex_state = 134}, + [6155] = {.lex_state = 134}, + [6156] = {.lex_state = 134}, + [6157] = {.lex_state = 134}, + [6158] = {.lex_state = 134}, + [6159] = {.lex_state = 134}, + [6160] = {.lex_state = 134}, + [6161] = {.lex_state = 134}, + [6162] = {.lex_state = 134}, + [6163] = {.lex_state = 134}, + [6164] = {.lex_state = 134}, + [6165] = {.lex_state = 134}, + [6166] = {.lex_state = 287}, + [6167] = {.lex_state = 357}, + [6168] = {.lex_state = 144}, + [6169] = {.lex_state = 160}, + [6170] = {.lex_state = 146}, + [6171] = {.lex_state = 361}, + [6172] = {.lex_state = 357}, + [6173] = {.lex_state = 286}, + [6174] = {.lex_state = 357}, + [6175] = {.lex_state = 357}, + [6176] = {.lex_state = 357}, + [6177] = {.lex_state = 357}, + [6178] = {.lex_state = 146}, + [6179] = {.lex_state = 224}, + [6180] = {.lex_state = 357}, + [6181] = {.lex_state = 357}, + [6182] = {.lex_state = 357}, + [6183] = {.lex_state = 134}, + [6184] = {.lex_state = 224}, + [6185] = {.lex_state = 357}, + [6186] = {.lex_state = 134}, + [6187] = {.lex_state = 224}, + [6188] = {.lex_state = 357}, + [6189] = {.lex_state = 283}, + [6190] = {.lex_state = 134}, + [6191] = {.lex_state = 357}, + [6192] = {.lex_state = 357}, + [6193] = {.lex_state = 357}, + [6194] = {.lex_state = 146}, + [6195] = {.lex_state = 134}, + [6196] = {.lex_state = 286}, + [6197] = {.lex_state = 134}, + [6198] = {.lex_state = 134}, + [6199] = {.lex_state = 134}, + [6200] = {.lex_state = 134}, + [6201] = {.lex_state = 146}, + [6202] = {.lex_state = 146}, + [6203] = {.lex_state = 2548}, + [6204] = {.lex_state = 208}, + [6205] = {.lex_state = 208}, + [6206] = {.lex_state = 208}, + [6207] = {.lex_state = 208}, + [6208] = {.lex_state = 208}, + [6209] = {.lex_state = 208}, + [6210] = {.lex_state = 288}, + [6211] = {.lex_state = 288}, + [6212] = {.lex_state = 208}, + [6213] = {.lex_state = 288}, + [6214] = {.lex_state = 288}, + [6215] = {.lex_state = 208}, + [6216] = {.lex_state = 289}, + [6217] = {.lex_state = 208}, + [6218] = {.lex_state = 208}, + [6219] = {.lex_state = 208}, + [6220] = {.lex_state = 208}, + [6221] = {.lex_state = 208}, + [6222] = {.lex_state = 146}, + [6223] = {.lex_state = 208}, + [6224] = {.lex_state = 208}, + [6225] = {.lex_state = 208}, + [6226] = {.lex_state = 208}, + [6227] = {.lex_state = 208}, + [6228] = {.lex_state = 208}, + [6229] = {.lex_state = 208}, + [6230] = {.lex_state = 208}, + [6231] = {.lex_state = 168}, [6232] = {.lex_state = 208}, - [6233] = {.lex_state = 1115}, - [6234] = {.lex_state = 1091}, + [6233] = {.lex_state = 208}, + [6234] = {.lex_state = 289}, [6235] = {.lex_state = 208}, - [6236] = {.lex_state = 1083}, - [6237] = {.lex_state = 1044}, - [6238] = {.lex_state = 1043}, - [6239] = {.lex_state = 1043}, - [6240] = {.lex_state = 180}, - [6241] = {.lex_state = 1083}, - [6242] = {.lex_state = 180}, - [6243] = {.lex_state = 185}, - [6244] = {.lex_state = 185}, - [6245] = {.lex_state = 185}, - [6246] = {.lex_state = 209}, - [6247] = {.lex_state = 372}, - [6248] = {.lex_state = 372}, - [6249] = {.lex_state = 1083}, - [6250] = {.lex_state = 372}, + [6236] = {.lex_state = 288}, + [6237] = {.lex_state = 208}, + [6238] = {.lex_state = 134}, + [6239] = {.lex_state = 208}, + [6240] = {.lex_state = 208}, + [6241] = {.lex_state = 208}, + [6242] = {.lex_state = 208}, + [6243] = {.lex_state = 134}, + [6244] = {.lex_state = 208}, + [6245] = {.lex_state = 134}, + [6246] = {.lex_state = 289}, + [6247] = {.lex_state = 146}, + [6248] = {.lex_state = 146}, + [6249] = {.lex_state = 208}, + [6250] = {.lex_state = 134}, [6251] = {.lex_state = 208}, - [6252] = {.lex_state = 1115}, - [6253] = {.lex_state = 1044}, - [6254] = {.lex_state = 323}, + [6252] = {.lex_state = 185}, + [6253] = {.lex_state = 185}, + [6254] = {.lex_state = 185}, [6255] = {.lex_state = 185}, - [6256] = {.lex_state = 1054}, - [6257] = {.lex_state = 323}, + [6256] = {.lex_state = 208}, + [6257] = {.lex_state = 185}, [6258] = {.lex_state = 185}, - [6259] = {.lex_state = 581}, + [6259] = {.lex_state = 208}, [6260] = {.lex_state = 185}, - [6261] = {.lex_state = 185}, - [6262] = {.lex_state = 1083}, + [6261] = {.lex_state = 208}, + [6262] = {.lex_state = 185}, [6263] = {.lex_state = 185}, - [6264] = {.lex_state = 180}, - [6265] = {.lex_state = 581}, - [6266] = {.lex_state = 1083}, - [6267] = {.lex_state = 1043}, - [6268] = {.lex_state = 1043}, - [6269] = {.lex_state = 368}, - [6270] = {.lex_state = 352}, - [6271] = {.lex_state = 1044}, - [6272] = {.lex_state = 352}, - [6273] = {.lex_state = 1083}, - [6274] = {.lex_state = 209}, - [6275] = {.lex_state = 1083}, - [6276] = {.lex_state = 1083}, - [6277] = {.lex_state = 185}, - [6278] = {.lex_state = 1115}, - [6279] = {.lex_state = 202}, - [6280] = {.lex_state = 1083}, - [6281] = {.lex_state = 1043}, - [6282] = {.lex_state = 185}, - [6283] = {.lex_state = 1043}, - [6284] = {.lex_state = 185}, - [6285] = {.lex_state = 185}, - [6286] = {.lex_state = 1043}, - [6287] = {.lex_state = 180}, - [6288] = {.lex_state = 350}, - [6289] = {.lex_state = 54}, - [6290] = {.lex_state = 342}, - [6291] = {.lex_state = 209}, - [6292] = {.lex_state = 360}, - [6293] = {.lex_state = 342}, - [6294] = {.lex_state = 146}, - [6295] = {.lex_state = 1083}, - [6296] = {.lex_state = 1083}, - [6297] = {.lex_state = 54}, - [6298] = {.lex_state = 1083}, - [6299] = {.lex_state = 284}, - [6300] = {.lex_state = 1083}, - [6301] = {.lex_state = 222}, - [6302] = {.lex_state = 1083}, - [6303] = {.lex_state = 146}, - [6304] = {.lex_state = 55}, - [6305] = {.lex_state = 1083}, - [6306] = {.lex_state = 1083}, - [6307] = {.lex_state = 1083}, - [6308] = {.lex_state = 1083}, - [6309] = {.lex_state = 1083}, - [6310] = {.lex_state = 1083}, - [6311] = {.lex_state = 1083}, - [6312] = {.lex_state = 1083}, - [6313] = {.lex_state = 1083}, - [6314] = {.lex_state = 1083}, - [6315] = {.lex_state = 1083}, - [6316] = {.lex_state = 185}, - [6317] = {.lex_state = 1083}, - [6318] = {.lex_state = 1083}, - [6319] = {.lex_state = 1083}, - [6320] = {.lex_state = 1083}, - [6321] = {.lex_state = 351}, - [6322] = {.lex_state = 146}, - [6323] = {.lex_state = 1083}, - [6324] = {.lex_state = 146}, - [6325] = {.lex_state = 342}, - [6326] = {.lex_state = 284}, - [6327] = {.lex_state = 1083}, - [6328] = {.lex_state = 2591}, - [6329] = {.lex_state = 185}, - [6330] = {.lex_state = 56}, - [6331] = {.lex_state = 323}, - [6332] = {.lex_state = 146}, - [6333] = {.lex_state = 1083}, - [6334] = {.lex_state = 348}, - [6335] = {.lex_state = 1083}, - [6336] = {.lex_state = 1083}, - [6337] = {.lex_state = 284}, - [6338] = {.lex_state = 1083}, - [6339] = {.lex_state = 284}, - [6340] = {.lex_state = 1083}, - [6341] = {.lex_state = 209}, - [6342] = {.lex_state = 281}, - [6343] = {.lex_state = 281}, - [6344] = {.lex_state = 224}, - [6345] = {.lex_state = 224}, - [6346] = {.lex_state = 362}, - [6347] = {.lex_state = 1083}, - [6348] = {.lex_state = 209}, - [6349] = {.lex_state = 1083}, - [6350] = {.lex_state = 281}, - [6351] = {.lex_state = 209}, - [6352] = {.lex_state = 1083}, - [6353] = {.lex_state = 57}, - [6354] = {.lex_state = 1083}, - [6355] = {.lex_state = 352}, - [6356] = {.lex_state = 153}, - [6357] = {.lex_state = 1083}, - [6358] = {.lex_state = 1083}, - [6359] = {.lex_state = 54}, - [6360] = {.lex_state = 1083}, - [6361] = {.lex_state = 2576}, - [6362] = {.lex_state = 1083}, - [6363] = {.lex_state = 1083}, - [6364] = {.lex_state = 352}, - [6365] = {.lex_state = 1083}, - [6366] = {.lex_state = 323}, - [6367] = {.lex_state = 1083}, - [6368] = {.lex_state = 352}, - [6369] = {.lex_state = 59}, - [6370] = {.lex_state = 146}, - [6371] = {.lex_state = 2579}, - [6372] = {.lex_state = 1083}, + [6264] = {.lex_state = 185}, + [6265] = {.lex_state = 169}, + [6266] = {.lex_state = 185}, + [6267] = {.lex_state = 185}, + [6268] = {.lex_state = 2546}, + [6269] = {.lex_state = 134}, + [6270] = {.lex_state = 208}, + [6271] = {.lex_state = 134}, + [6272] = {.lex_state = 208}, + [6273] = {.lex_state = 208}, + [6274] = {.lex_state = 208}, + [6275] = {.lex_state = 134}, + [6276] = {.lex_state = 208}, + [6277] = {.lex_state = 134}, + [6278] = {.lex_state = 208}, + [6279] = {.lex_state = 208}, + [6280] = {.lex_state = 208}, + [6281] = {.lex_state = 134}, + [6282] = {.lex_state = 208}, + [6283] = {.lex_state = 208}, + [6284] = {.lex_state = 134}, + [6285] = {.lex_state = 208}, + [6286] = {.lex_state = 134}, + [6287] = {.lex_state = 185}, + [6288] = {.lex_state = 185}, + [6289] = {.lex_state = 185}, + [6290] = {.lex_state = 185}, + [6291] = {.lex_state = 208}, + [6292] = {.lex_state = 185}, + [6293] = {.lex_state = 185}, + [6294] = {.lex_state = 185}, + [6295] = {.lex_state = 208}, + [6296] = {.lex_state = 185}, + [6297] = {.lex_state = 185}, + [6298] = {.lex_state = 185}, + [6299] = {.lex_state = 185}, + [6300] = {.lex_state = 191}, + [6301] = {.lex_state = 191}, + [6302] = {.lex_state = 191}, + [6303] = {.lex_state = 191}, + [6304] = {.lex_state = 191}, + [6305] = {.lex_state = 191}, + [6306] = {.lex_state = 191}, + [6307] = {.lex_state = 191}, + [6308] = {.lex_state = 191}, + [6309] = {.lex_state = 191}, + [6310] = {.lex_state = 191}, + [6311] = {.lex_state = 191}, + [6312] = {.lex_state = 191}, + [6313] = {.lex_state = 185}, + [6314] = {.lex_state = 185}, + [6315] = {.lex_state = 134}, + [6316] = {.lex_state = 208}, + [6317] = {.lex_state = 208}, + [6318] = {.lex_state = 134}, + [6319] = {.lex_state = 134}, + [6320] = {.lex_state = 134}, + [6321] = {.lex_state = 208}, + [6322] = {.lex_state = 134}, + [6323] = {.lex_state = 208}, + [6324] = {.lex_state = 208}, + [6325] = {.lex_state = 185}, + [6326] = {.lex_state = 208}, + [6327] = {.lex_state = 208}, + [6328] = {.lex_state = 289}, + [6329] = {.lex_state = 208}, + [6330] = {.lex_state = 289}, + [6331] = {.lex_state = 208}, + [6332] = {.lex_state = 185}, + [6333] = {.lex_state = 185}, + [6334] = {.lex_state = 185}, + [6335] = {.lex_state = 185}, + [6336] = {.lex_state = 185}, + [6337] = {.lex_state = 185}, + [6338] = {.lex_state = 185}, + [6339] = {.lex_state = 185}, + [6340] = {.lex_state = 185}, + [6341] = {.lex_state = 185}, + [6342] = {.lex_state = 185}, + [6343] = {.lex_state = 185}, + [6344] = {.lex_state = 185}, + [6345] = {.lex_state = 185}, + [6346] = {.lex_state = 185}, + [6347] = {.lex_state = 185}, + [6348] = {.lex_state = 185}, + [6349] = {.lex_state = 185}, + [6350] = {.lex_state = 185}, + [6351] = {.lex_state = 185}, + [6352] = {.lex_state = 185}, + [6353] = {.lex_state = 185}, + [6354] = {.lex_state = 185}, + [6355] = {.lex_state = 185}, + [6356] = {.lex_state = 185}, + [6357] = {.lex_state = 185}, + [6358] = {.lex_state = 185}, + [6359] = {.lex_state = 185}, + [6360] = {.lex_state = 185}, + [6361] = {.lex_state = 185}, + [6362] = {.lex_state = 185}, + [6363] = {.lex_state = 185}, + [6364] = {.lex_state = 185}, + [6365] = {.lex_state = 185}, + [6366] = {.lex_state = 185}, + [6367] = {.lex_state = 185}, + [6368] = {.lex_state = 185}, + [6369] = {.lex_state = 185}, + [6370] = {.lex_state = 185}, + [6371] = {.lex_state = 185}, + [6372] = {.lex_state = 185}, [6373] = {.lex_state = 185}, - [6374] = {.lex_state = 1083}, - [6375] = {.lex_state = 360}, - [6376] = {.lex_state = 1083}, - [6377] = {.lex_state = 1083}, - [6378] = {.lex_state = 284}, - [6379] = {.lex_state = 1083}, - [6380] = {.lex_state = 60}, - [6381] = {.lex_state = 137}, - [6382] = {.lex_state = 1083}, - [6383] = {.lex_state = 1083}, + [6374] = {.lex_state = 185}, + [6375] = {.lex_state = 185}, + [6376] = {.lex_state = 185}, + [6377] = {.lex_state = 185}, + [6378] = {.lex_state = 185}, + [6379] = {.lex_state = 185}, + [6380] = {.lex_state = 185}, + [6381] = {.lex_state = 185}, + [6382] = {.lex_state = 185}, + [6383] = {.lex_state = 185}, [6384] = {.lex_state = 185}, [6385] = {.lex_state = 185}, - [6386] = {.lex_state = 1083}, - [6387] = {.lex_state = 1083}, - [6388] = {.lex_state = 146}, - [6389] = {.lex_state = 281}, - [6390] = {.lex_state = 281}, - [6391] = {.lex_state = 1083}, - [6392] = {.lex_state = 1083}, - [6393] = {.lex_state = 323}, - [6394] = {.lex_state = 1083}, - [6395] = {.lex_state = 1083}, - [6396] = {.lex_state = 1083}, - [6397] = {.lex_state = 134}, - [6398] = {.lex_state = 1083}, - [6399] = {.lex_state = 1083}, - [6400] = {.lex_state = 1083}, - [6401] = {.lex_state = 1083}, - [6402] = {.lex_state = 137}, - [6403] = {.lex_state = 342}, - [6404] = {.lex_state = 185}, - [6405] = {.lex_state = 185}, - [6406] = {.lex_state = 1083}, - [6407] = {.lex_state = 1083}, - [6408] = {.lex_state = 1083}, - [6409] = {.lex_state = 323}, - [6410] = {.lex_state = 146}, - [6411] = {.lex_state = 357}, - [6412] = {.lex_state = 357}, - [6413] = {.lex_state = 283}, - [6414] = {.lex_state = 134}, - [6415] = {.lex_state = 134}, - [6416] = {.lex_state = 150}, - [6417] = {.lex_state = 144}, - [6418] = {.lex_state = 357}, - [6419] = {.lex_state = 134}, - [6420] = {.lex_state = 357}, - [6421] = {.lex_state = 357}, - [6422] = {.lex_state = 224}, - [6423] = {.lex_state = 357}, - [6424] = {.lex_state = 2582}, - [6425] = {.lex_state = 283}, - [6426] = {.lex_state = 134}, - [6427] = {.lex_state = 287}, - [6428] = {.lex_state = 224}, - [6429] = {.lex_state = 357}, - [6430] = {.lex_state = 134}, - [6431] = {.lex_state = 224}, - [6432] = {.lex_state = 357}, - [6433] = {.lex_state = 209}, - [6434] = {.lex_state = 287}, - [6435] = {.lex_state = 287}, - [6436] = {.lex_state = 134}, - [6437] = {.lex_state = 134}, - [6438] = {.lex_state = 209}, - [6439] = {.lex_state = 357}, - [6440] = {.lex_state = 134}, - [6441] = {.lex_state = 146}, - [6442] = {.lex_state = 285}, - [6443] = {.lex_state = 357}, - [6444] = {.lex_state = 146}, - [6445] = {.lex_state = 286}, - [6446] = {.lex_state = 134}, - [6447] = {.lex_state = 357}, - [6448] = {.lex_state = 287}, - [6449] = {.lex_state = 146}, - [6450] = {.lex_state = 146}, - [6451] = {.lex_state = 282}, - [6452] = {.lex_state = 357}, - [6453] = {.lex_state = 134}, - [6454] = {.lex_state = 146}, - [6455] = {.lex_state = 357}, - [6456] = {.lex_state = 361}, - [6457] = {.lex_state = 134}, - [6458] = {.lex_state = 357}, - [6459] = {.lex_state = 134}, - [6460] = {.lex_state = 134}, - [6461] = {.lex_state = 146}, - [6462] = {.lex_state = 134}, - [6463] = {.lex_state = 134}, - [6464] = {.lex_state = 134}, - [6465] = {.lex_state = 134}, - [6466] = {.lex_state = 146}, - [6467] = {.lex_state = 146}, - [6468] = {.lex_state = 357}, - [6469] = {.lex_state = 146}, - [6470] = {.lex_state = 286}, - [6471] = {.lex_state = 146}, - [6472] = {.lex_state = 146}, - [6473] = {.lex_state = 286}, - [6474] = {.lex_state = 146}, - [6475] = {.lex_state = 146}, - [6476] = {.lex_state = 146}, - [6477] = {.lex_state = 146}, - [6478] = {.lex_state = 146}, - [6479] = {.lex_state = 134}, - [6480] = {.lex_state = 357}, - [6481] = {.lex_state = 160}, - [6482] = {.lex_state = 357}, - [6483] = {.lex_state = 286}, - [6484] = {.lex_state = 146}, - [6485] = {.lex_state = 134}, - [6486] = {.lex_state = 161}, - [6487] = {.lex_state = 286}, - [6488] = {.lex_state = 134}, - [6489] = {.lex_state = 134}, - [6490] = {.lex_state = 134}, - [6491] = {.lex_state = 282}, - [6492] = {.lex_state = 134}, - [6493] = {.lex_state = 134}, - [6494] = {.lex_state = 134}, - [6495] = {.lex_state = 134}, - [6496] = {.lex_state = 146}, - [6497] = {.lex_state = 282}, - [6498] = {.lex_state = 357}, - [6499] = {.lex_state = 134}, - [6500] = {.lex_state = 357}, - [6501] = {.lex_state = 145}, - [6502] = {.lex_state = 134}, - [6503] = {.lex_state = 146}, - [6504] = {.lex_state = 134}, - [6505] = {.lex_state = 185}, - [6506] = {.lex_state = 134}, - [6507] = {.lex_state = 134}, - [6508] = {.lex_state = 134}, - [6509] = {.lex_state = 134}, - [6510] = {.lex_state = 134}, - [6511] = {.lex_state = 282}, - [6512] = {.lex_state = 134}, - [6513] = {.lex_state = 61}, - [6514] = {.lex_state = 283}, - [6515] = {.lex_state = 209}, - [6516] = {.lex_state = 283}, - [6517] = {.lex_state = 134}, - [6518] = {.lex_state = 357}, - [6519] = {.lex_state = 134}, - [6520] = {.lex_state = 146}, - [6521] = {.lex_state = 146}, - [6522] = {.lex_state = 134}, - [6523] = {.lex_state = 134}, - [6524] = {.lex_state = 134}, - [6525] = {.lex_state = 134}, - [6526] = {.lex_state = 134}, - [6527] = {.lex_state = 134}, - [6528] = {.lex_state = 134}, - [6529] = {.lex_state = 134}, - [6530] = {.lex_state = 134}, - [6531] = {.lex_state = 134}, - [6532] = {.lex_state = 134}, - [6533] = {.lex_state = 134}, - [6534] = {.lex_state = 134}, - [6535] = {.lex_state = 357}, - [6536] = {.lex_state = 357}, - [6537] = {.lex_state = 357}, - [6538] = {.lex_state = 146}, - [6539] = {.lex_state = 146}, - [6540] = {.lex_state = 134}, - [6541] = {.lex_state = 146}, - [6542] = {.lex_state = 357}, - [6543] = {.lex_state = 144}, - [6544] = {.lex_state = 146}, - [6545] = {.lex_state = 357}, - [6546] = {.lex_state = 160}, - [6547] = {.lex_state = 357}, - [6548] = {.lex_state = 146}, - [6549] = {.lex_state = 357}, - [6550] = {.lex_state = 357}, - [6551] = {.lex_state = 146}, - [6552] = {.lex_state = 357}, - [6553] = {.lex_state = 285}, - [6554] = {.lex_state = 2580}, - [6555] = {.lex_state = 361}, - [6556] = {.lex_state = 357}, - [6557] = {.lex_state = 146}, - [6558] = {.lex_state = 146}, - [6559] = {.lex_state = 357}, - [6560] = {.lex_state = 357}, - [6561] = {.lex_state = 146}, - [6562] = {.lex_state = 134}, - [6563] = {.lex_state = 282}, - [6564] = {.lex_state = 357}, - [6565] = {.lex_state = 134}, - [6566] = {.lex_state = 357}, - [6567] = {.lex_state = 146}, - [6568] = {.lex_state = 146}, - [6569] = {.lex_state = 357}, - [6570] = {.lex_state = 357}, - [6571] = {.lex_state = 357}, - [6572] = {.lex_state = 62}, - [6573] = {.lex_state = 146}, - [6574] = {.lex_state = 357}, - [6575] = {.lex_state = 146}, - [6576] = {.lex_state = 146}, - [6577] = {.lex_state = 357}, - [6578] = {.lex_state = 146}, - [6579] = {.lex_state = 357}, - [6580] = {.lex_state = 146}, - [6581] = {.lex_state = 357}, - [6582] = {.lex_state = 134}, - [6583] = {.lex_state = 283}, - [6584] = {.lex_state = 134}, - [6585] = {.lex_state = 2577}, - [6586] = {.lex_state = 357}, - [6587] = {.lex_state = 357}, - [6588] = {.lex_state = 357}, - [6589] = {.lex_state = 134}, - [6590] = {.lex_state = 134}, - [6591] = {.lex_state = 146}, - [6592] = {.lex_state = 2578}, - [6593] = {.lex_state = 357}, - [6594] = {.lex_state = 146}, - [6595] = {.lex_state = 146}, - [6596] = {.lex_state = 146}, - [6597] = {.lex_state = 146}, - [6598] = {.lex_state = 146}, - [6599] = {.lex_state = 285}, - [6600] = {.lex_state = 357}, - [6601] = {.lex_state = 287}, - [6602] = {.lex_state = 357}, - [6603] = {.lex_state = 357}, - [6604] = {.lex_state = 357}, - [6605] = {.lex_state = 146}, - [6606] = {.lex_state = 146}, - [6607] = {.lex_state = 357}, - [6608] = {.lex_state = 208}, - [6609] = {.lex_state = 146}, - [6610] = {.lex_state = 357}, - [6611] = {.lex_state = 285}, - [6612] = {.lex_state = 285}, - [6613] = {.lex_state = 185}, - [6614] = {.lex_state = 146}, - [6615] = {.lex_state = 2581}, - [6616] = {.lex_state = 146}, - [6617] = {.lex_state = 357}, - [6618] = {.lex_state = 146}, - [6619] = {.lex_state = 146}, - [6620] = {.lex_state = 357}, - [6621] = {.lex_state = 357}, - [6622] = {.lex_state = 357}, - [6623] = {.lex_state = 357}, - [6624] = {.lex_state = 357}, - [6625] = {.lex_state = 357}, - [6626] = {.lex_state = 357}, - [6627] = {.lex_state = 208}, - [6628] = {.lex_state = 208}, - [6629] = {.lex_state = 208}, - [6630] = {.lex_state = 134}, - [6631] = {.lex_state = 208}, - [6632] = {.lex_state = 185}, - [6633] = {.lex_state = 208}, - [6634] = {.lex_state = 208}, - [6635] = {.lex_state = 134}, - [6636] = {.lex_state = 185}, - [6637] = {.lex_state = 185}, - [6638] = {.lex_state = 185}, - [6639] = {.lex_state = 2586}, - [6640] = {.lex_state = 208}, - [6641] = {.lex_state = 288}, - [6642] = {.lex_state = 208}, - [6643] = {.lex_state = 134}, - [6644] = {.lex_state = 208}, - [6645] = {.lex_state = 185}, - [6646] = {.lex_state = 208}, - [6647] = {.lex_state = 134}, - [6648] = {.lex_state = 289}, - [6649] = {.lex_state = 185}, - [6650] = {.lex_state = 168}, - [6651] = {.lex_state = 134}, - [6652] = {.lex_state = 208}, - [6653] = {.lex_state = 208}, - [6654] = {.lex_state = 208}, - [6655] = {.lex_state = 208}, - [6656] = {.lex_state = 185}, - [6657] = {.lex_state = 185}, - [6658] = {.lex_state = 208}, - [6659] = {.lex_state = 134}, - [6660] = {.lex_state = 185}, - [6661] = {.lex_state = 185}, - [6662] = {.lex_state = 146}, - [6663] = {.lex_state = 208}, - [6664] = {.lex_state = 208}, - [6665] = {.lex_state = 208}, - [6666] = {.lex_state = 185}, - [6667] = {.lex_state = 208}, - [6668] = {.lex_state = 208}, - [6669] = {.lex_state = 185}, - [6670] = {.lex_state = 185}, - [6671] = {.lex_state = 208}, - [6672] = {.lex_state = 208}, - [6673] = {.lex_state = 134}, - [6674] = {.lex_state = 289}, - [6675] = {.lex_state = 146}, - [6676] = {.lex_state = 134}, - [6677] = {.lex_state = 185}, - [6678] = {.lex_state = 134}, - [6679] = {.lex_state = 208}, - [6680] = {.lex_state = 208}, - [6681] = {.lex_state = 208}, - [6682] = {.lex_state = 134}, - [6683] = {.lex_state = 208}, - [6684] = {.lex_state = 208}, - [6685] = {.lex_state = 134}, - [6686] = {.lex_state = 208}, - [6687] = {.lex_state = 169}, - [6688] = {.lex_state = 208}, - [6689] = {.lex_state = 134}, - [6690] = {.lex_state = 208}, - [6691] = {.lex_state = 134}, - [6692] = {.lex_state = 288}, - [6693] = {.lex_state = 288}, - [6694] = {.lex_state = 208}, - [6695] = {.lex_state = 185}, - [6696] = {.lex_state = 208}, - [6697] = {.lex_state = 208}, - [6698] = {.lex_state = 134}, - [6699] = {.lex_state = 208}, - [6700] = {.lex_state = 208}, - [6701] = {.lex_state = 191}, - [6702] = {.lex_state = 191}, - [6703] = {.lex_state = 191}, - [6704] = {.lex_state = 191}, - [6705] = {.lex_state = 191}, - [6706] = {.lex_state = 191}, - [6707] = {.lex_state = 191}, - [6708] = {.lex_state = 191}, - [6709] = {.lex_state = 191}, - [6710] = {.lex_state = 191}, - [6711] = {.lex_state = 191}, - [6712] = {.lex_state = 191}, - [6713] = {.lex_state = 191}, - [6714] = {.lex_state = 208}, - [6715] = {.lex_state = 208}, - [6716] = {.lex_state = 288}, - [6717] = {.lex_state = 208}, - [6718] = {.lex_state = 146}, - [6719] = {.lex_state = 289}, - [6720] = {.lex_state = 208}, - [6721] = {.lex_state = 185}, - [6722] = {.lex_state = 208}, - [6723] = {.lex_state = 208}, - [6724] = {.lex_state = 208}, - [6725] = {.lex_state = 208}, - [6726] = {.lex_state = 185}, - [6727] = {.lex_state = 208}, - [6728] = {.lex_state = 2584}, - [6729] = {.lex_state = 208}, - [6730] = {.lex_state = 208}, - [6731] = {.lex_state = 208}, - [6732] = {.lex_state = 289}, - [6733] = {.lex_state = 134}, - [6734] = {.lex_state = 134}, - [6735] = {.lex_state = 185}, - [6736] = {.lex_state = 185}, - [6737] = {.lex_state = 208}, - [6738] = {.lex_state = 208}, - [6739] = {.lex_state = 208}, - [6740] = {.lex_state = 208}, - [6741] = {.lex_state = 208}, - [6742] = {.lex_state = 208}, - [6743] = {.lex_state = 208}, - [6744] = {.lex_state = 185}, - [6745] = {.lex_state = 185}, - [6746] = {.lex_state = 185}, - [6747] = {.lex_state = 185}, - [6748] = {.lex_state = 185}, - [6749] = {.lex_state = 185}, - [6750] = {.lex_state = 185}, - [6751] = {.lex_state = 289}, - [6752] = {.lex_state = 288}, - [6753] = {.lex_state = 208}, - [6754] = {.lex_state = 185}, - [6755] = {.lex_state = 208}, - [6756] = {.lex_state = 208}, - [6757] = {.lex_state = 185}, - [6758] = {.lex_state = 185}, - [6759] = {.lex_state = 185}, - [6760] = {.lex_state = 185}, - [6761] = {.lex_state = 185}, - [6762] = {.lex_state = 185}, - [6763] = {.lex_state = 185}, - [6764] = {.lex_state = 185}, - [6765] = {.lex_state = 185}, - [6766] = {.lex_state = 185}, - [6767] = {.lex_state = 185}, - [6768] = {.lex_state = 185}, - [6769] = {.lex_state = 185}, - [6770] = {.lex_state = 185}, - [6771] = {.lex_state = 185}, - [6772] = {.lex_state = 185}, - [6773] = {.lex_state = 185}, - [6774] = {.lex_state = 185}, - [6775] = {.lex_state = 185}, - [6776] = {.lex_state = 185}, - [6777] = {.lex_state = 185}, - [6778] = {.lex_state = 185}, - [6779] = {.lex_state = 185}, - [6780] = {.lex_state = 185}, - [6781] = {.lex_state = 185}, - [6782] = {.lex_state = 185}, - [6783] = {.lex_state = 185}, - [6784] = {.lex_state = 185}, - [6785] = {.lex_state = 185}, - [6786] = {.lex_state = 185}, - [6787] = {.lex_state = 185}, - [6788] = {.lex_state = 185}, - [6789] = {.lex_state = 185}, - [6790] = {.lex_state = 185}, - [6791] = {.lex_state = 185}, - [6792] = {.lex_state = 185}, - [6793] = {.lex_state = 185}, - [6794] = {.lex_state = 185}, - [6795] = {.lex_state = 185}, - [6796] = {.lex_state = 185}, - [6797] = {.lex_state = 185}, - [6798] = {.lex_state = 185}, - [6799] = {.lex_state = 185}, - [6800] = {.lex_state = 185}, - [6801] = {.lex_state = 185}, - [6802] = {.lex_state = 185}, - [6803] = {.lex_state = 185}, - [6804] = {.lex_state = 185}, - [6805] = {.lex_state = 185}, - [6806] = {.lex_state = 185}, - [6807] = {.lex_state = 185}, - [6808] = {.lex_state = 185}, - [6809] = {.lex_state = 185}, - [6810] = {.lex_state = 185}, - [6811] = {.lex_state = 185}, - [6812] = {.lex_state = 185}, - [6813] = {.lex_state = 185}, - [6814] = {.lex_state = 185}, - [6815] = {.lex_state = 185}, - [6816] = {.lex_state = 185}, - [6817] = {.lex_state = 1226}, - [6818] = {.lex_state = 585}, - [6819] = {.lex_state = 585}, - [6820] = {.lex_state = 1226}, - [6821] = {.lex_state = 585}, - [6822] = {.lex_state = 585}, - [6823] = {.lex_state = 585}, - [6824] = {.lex_state = 585}, - [6825] = {.lex_state = 585}, - [6826] = {.lex_state = 585}, - [6827] = {.lex_state = 547}, - [6828] = {.lex_state = 1229}, - [6829] = {.lex_state = 25}, - [6830] = {.lex_state = 1226}, - [6831] = {.lex_state = 1227}, - [6832] = {.lex_state = 1227}, - [6833] = {.lex_state = 1227}, - [6834] = {.lex_state = 1229}, - [6835] = {.lex_state = 1227}, - [6836] = {.lex_state = 1226}, - [6837] = {.lex_state = 1228}, - [6838] = {.lex_state = 1228}, - [6839] = {.lex_state = 547}, - [6840] = {.lex_state = 1227}, - [6841] = {.lex_state = 1227}, - [6842] = {.lex_state = 25}, - [6843] = {.lex_state = 1233}, - [6844] = {.lex_state = 1237}, - [6845] = {.lex_state = 1233}, - [6846] = {.lex_state = 1233}, - [6847] = {.lex_state = 1228}, - [6848] = {.lex_state = 1107}, - [6849] = {.lex_state = 1230}, - [6850] = {.lex_state = 1231}, - [6851] = {.lex_state = 1107}, - [6852] = {.lex_state = 1233}, - [6853] = {.lex_state = 1107}, - [6854] = {.lex_state = 373}, - [6855] = {.lex_state = 1228}, - [6856] = {.lex_state = 1107}, - [6857] = {.lex_state = 1230}, - [6858] = {.lex_state = 1227}, - [6859] = {.lex_state = 1229}, - [6860] = {.lex_state = 26}, - [6861] = {.lex_state = 27}, - [6862] = {.lex_state = 1233}, - [6863] = {.lex_state = 1227}, - [6864] = {.lex_state = 1227}, - [6865] = {.lex_state = 27}, - [6866] = {.lex_state = 27}, - [6867] = {.lex_state = 1227}, - [6868] = {.lex_state = 1107}, - [6869] = {.lex_state = 1107}, - [6870] = {.lex_state = 27}, - [6871] = {.lex_state = 26}, - [6872] = {.lex_state = 1229}, - [6873] = {.lex_state = 1107}, - [6874] = {.lex_state = 1231}, - [6875] = {.lex_state = 1233}, - [6876] = {.lex_state = 27}, - [6877] = {.lex_state = 27}, - [6878] = {.lex_state = 1227}, - [6879] = {.lex_state = 373}, + [6386] = {.lex_state = 185}, + [6387] = {.lex_state = 185}, + [6388] = {.lex_state = 185}, + [6389] = {.lex_state = 185}, + [6390] = {.lex_state = 185}, + [6391] = {.lex_state = 1196}, + [6392] = {.lex_state = 585}, + [6393] = {.lex_state = 585}, + [6394] = {.lex_state = 585}, + [6395] = {.lex_state = 585}, + [6396] = {.lex_state = 585}, + [6397] = {.lex_state = 585}, + [6398] = {.lex_state = 585}, + [6399] = {.lex_state = 585}, + [6400] = {.lex_state = 1196}, + [6401] = {.lex_state = 25}, + [6402] = {.lex_state = 1197}, + [6403] = {.lex_state = 547}, + [6404] = {.lex_state = 1199}, + [6405] = {.lex_state = 1198}, + [6406] = {.lex_state = 1197}, + [6407] = {.lex_state = 547}, + [6408] = {.lex_state = 1197}, + [6409] = {.lex_state = 1199}, + [6410] = {.lex_state = 1197}, + [6411] = {.lex_state = 1196}, + [6412] = {.lex_state = 25}, + [6413] = {.lex_state = 1196}, + [6414] = {.lex_state = 1198}, + [6415] = {.lex_state = 1197}, + [6416] = {.lex_state = 1197}, + [6417] = {.lex_state = 1089}, + [6418] = {.lex_state = 27}, + [6419] = {.lex_state = 27}, + [6420] = {.lex_state = 27}, + [6421] = {.lex_state = 373}, + [6422] = {.lex_state = 1207}, + [6423] = {.lex_state = 1201}, + [6424] = {.lex_state = 1197}, + [6425] = {.lex_state = 1200}, + [6426] = {.lex_state = 1197}, + [6427] = {.lex_state = 27}, + [6428] = {.lex_state = 1197}, + [6429] = {.lex_state = 1089}, + [6430] = {.lex_state = 1089}, + [6431] = {.lex_state = 1089}, + [6432] = {.lex_state = 1197}, + [6433] = {.lex_state = 1203}, + [6434] = {.lex_state = 1089}, + [6435] = {.lex_state = 1089}, + [6436] = {.lex_state = 1089}, + [6437] = {.lex_state = 1197}, + [6438] = {.lex_state = 26}, + [6439] = {.lex_state = 27}, + [6440] = {.lex_state = 27}, + [6441] = {.lex_state = 1203}, + [6442] = {.lex_state = 1203}, + [6443] = {.lex_state = 1199}, + [6444] = {.lex_state = 1198}, + [6445] = {.lex_state = 1203}, + [6446] = {.lex_state = 1203}, + [6447] = {.lex_state = 1201}, + [6448] = {.lex_state = 1197}, + [6449] = {.lex_state = 26}, + [6450] = {.lex_state = 1203}, + [6451] = {.lex_state = 1200}, + [6452] = {.lex_state = 1198}, + [6453] = {.lex_state = 1199}, + [6454] = {.lex_state = 373}, + [6455] = {.lex_state = 1089}, + [6456] = {.lex_state = 1089}, + [6457] = {.lex_state = 1208}, + [6458] = {.lex_state = 431}, + [6459] = {.lex_state = 1090}, + [6460] = {.lex_state = 1090}, + [6461] = {.lex_state = 1090}, + [6462] = {.lex_state = 1200}, + [6463] = {.lex_state = 374}, + [6464] = {.lex_state = 1208}, + [6465] = {.lex_state = 1201}, + [6466] = {.lex_state = 1203}, + [6467] = {.lex_state = 431}, + [6468] = {.lex_state = 431}, + [6469] = {.lex_state = 1202}, + [6470] = {.lex_state = 374}, + [6471] = {.lex_state = 1089}, + [6472] = {.lex_state = 1089}, + [6473] = {.lex_state = 1089}, + [6474] = {.lex_state = 22}, + [6475] = {.lex_state = 374}, + [6476] = {.lex_state = 374}, + [6477] = {.lex_state = 1089}, + [6478] = {.lex_state = 1089}, + [6479] = {.lex_state = 1089}, + [6480] = {.lex_state = 1203}, + [6481] = {.lex_state = 431}, + [6482] = {.lex_state = 22}, + [6483] = {.lex_state = 1089}, + [6484] = {.lex_state = 1202}, + [6485] = {.lex_state = 1204}, + [6486] = {.lex_state = 431}, + [6487] = {.lex_state = 22}, + [6488] = {.lex_state = 1204}, + [6489] = {.lex_state = 1208}, + [6490] = {.lex_state = 1201}, + [6491] = {.lex_state = 28}, + [6492] = {.lex_state = 22}, + [6493] = {.lex_state = 22}, + [6494] = {.lex_state = 1090}, + [6495] = {.lex_state = 1090}, + [6496] = {.lex_state = 1200}, + [6497] = {.lex_state = 1204}, + [6498] = {.lex_state = 1204}, + [6499] = {.lex_state = 1203}, + [6500] = {.lex_state = 375}, + [6501] = {.lex_state = 1207}, + [6502] = {.lex_state = 1204}, + [6503] = {.lex_state = 1204}, + [6504] = {.lex_state = 431}, + [6505] = {.lex_state = 1203}, + [6506] = {.lex_state = 374}, + [6507] = {.lex_state = 374}, + [6508] = {.lex_state = 1208}, + [6509] = {.lex_state = 1217}, + [6510] = {.lex_state = 1209}, + [6511] = {.lex_state = 1203}, + [6512] = {.lex_state = 1203}, + [6513] = {.lex_state = 375}, + [6514] = {.lex_state = 428}, + [6515] = {.lex_state = 1090}, + [6516] = {.lex_state = 428}, + [6517] = {.lex_state = 1218}, + [6518] = {.lex_state = 1089}, + [6519] = {.lex_state = 1089}, + [6520] = {.lex_state = 651}, + [6521] = {.lex_state = 1204}, + [6522] = {.lex_state = 376}, + [6523] = {.lex_state = 376}, + [6524] = {.lex_state = 1089}, + [6525] = {.lex_state = 376}, + [6526] = {.lex_state = 1090}, + [6527] = {.lex_state = 1204}, + [6528] = {.lex_state = 1217}, + [6529] = {.lex_state = 1219}, + [6530] = {.lex_state = 29}, + [6531] = {.lex_state = 1209}, + [6532] = {.lex_state = 587}, + [6533] = {.lex_state = 1221}, + [6534] = {.lex_state = 1209}, + [6535] = {.lex_state = 1204}, + [6536] = {.lex_state = 431}, + [6537] = {.lex_state = 1208}, + [6538] = {.lex_state = 1204}, + [6539] = {.lex_state = 431}, + [6540] = {.lex_state = 1089}, + [6541] = {.lex_state = 554}, + [6542] = {.lex_state = 1219}, + [6543] = {.lex_state = 1210}, + [6544] = {.lex_state = 29}, + [6545] = {.lex_state = 587}, + [6546] = {.lex_state = 1202}, + [6547] = {.lex_state = 1209}, + [6548] = {.lex_state = 621}, + [6549] = {.lex_state = 1202}, + [6550] = {.lex_state = 1208}, + [6551] = {.lex_state = 1090}, + [6552] = {.lex_state = 652}, + [6553] = {.lex_state = 1090}, + [6554] = {.lex_state = 1089}, + [6555] = {.lex_state = 376}, + [6556] = {.lex_state = 30}, + [6557] = {.lex_state = 586}, + [6558] = {.lex_state = 29}, + [6559] = {.lex_state = 431}, + [6560] = {.lex_state = 1219}, + [6561] = {.lex_state = 1208}, + [6562] = {.lex_state = 1219}, + [6563] = {.lex_state = 1204}, + [6564] = {.lex_state = 29}, + [6565] = {.lex_state = 1204}, + [6566] = {.lex_state = 376}, + [6567] = {.lex_state = 586}, + [6568] = {.lex_state = 1208}, + [6569] = {.lex_state = 1209}, + [6570] = {.lex_state = 1089}, + [6571] = {.lex_state = 1089}, + [6572] = {.lex_state = 1090}, + [6573] = {.lex_state = 1089}, + [6574] = {.lex_state = 1211}, + [6575] = {.lex_state = 1223}, + [6576] = {.lex_state = 431}, + [6577] = {.lex_state = 595}, + [6578] = {.lex_state = 623}, + [6579] = {.lex_state = 120}, + [6580] = {.lex_state = 1089}, + [6581] = {.lex_state = 593}, + [6582] = {.lex_state = 590}, + [6583] = {.lex_state = 1221}, + [6584] = {.lex_state = 1089}, + [6585] = {.lex_state = 593}, + [6586] = {.lex_state = 1089}, + [6587] = {.lex_state = 651}, + [6588] = {.lex_state = 1220}, + [6589] = {.lex_state = 30}, + [6590] = {.lex_state = 651}, + [6591] = {.lex_state = 431}, + [6592] = {.lex_state = 547}, + [6593] = {.lex_state = 591}, + [6594] = {.lex_state = 622}, + [6595] = {.lex_state = 588}, + [6596] = {.lex_state = 555}, + [6597] = {.lex_state = 657}, + [6598] = {.lex_state = 547}, + [6599] = {.lex_state = 1211}, + [6600] = {.lex_state = 588}, + [6601] = {.lex_state = 1089}, + [6602] = {.lex_state = 120}, + [6603] = {.lex_state = 1089}, + [6604] = {.lex_state = 1089}, + [6605] = {.lex_state = 623}, + [6606] = {.lex_state = 1221}, + [6607] = {.lex_state = 431}, + [6608] = {.lex_state = 588}, + [6609] = {.lex_state = 1219}, + [6610] = {.lex_state = 1221}, + [6611] = {.lex_state = 30}, + [6612] = {.lex_state = 651}, + [6613] = {.lex_state = 588}, + [6614] = {.lex_state = 589}, + [6615] = {.lex_state = 589}, + [6616] = {.lex_state = 589}, + [6617] = {.lex_state = 1209}, + [6618] = {.lex_state = 588}, + [6619] = {.lex_state = 589}, + [6620] = {.lex_state = 589}, + [6621] = {.lex_state = 589}, + [6622] = {.lex_state = 1209}, + [6623] = {.lex_state = 556}, + [6624] = {.lex_state = 1220}, + [6625] = {.lex_state = 588}, + [6626] = {.lex_state = 591}, + [6627] = {.lex_state = 1089}, + [6628] = {.lex_state = 555}, + [6629] = {.lex_state = 1218}, + [6630] = {.lex_state = 590}, + [6631] = {.lex_state = 1210}, + [6632] = {.lex_state = 31}, + [6633] = {.lex_state = 599}, + [6634] = {.lex_state = 30}, + [6635] = {.lex_state = 547}, + [6636] = {.lex_state = 1211}, + [6637] = {.lex_state = 555}, + [6638] = {.lex_state = 555}, + [6639] = {.lex_state = 1219}, + [6640] = {.lex_state = 1219}, + [6641] = {.lex_state = 1089}, + [6642] = {.lex_state = 547}, + [6643] = {.lex_state = 1219}, + [6644] = {.lex_state = 1220}, + [6645] = {.lex_state = 1209}, + [6646] = {.lex_state = 1211}, + [6647] = {.lex_state = 623}, + [6648] = {.lex_state = 625}, + [6649] = {.lex_state = 1222}, + [6650] = {.lex_state = 431}, + [6651] = {.lex_state = 431}, + [6652] = {.lex_state = 1221}, + [6653] = {.lex_state = 1220}, + [6654] = {.lex_state = 657}, + [6655] = {.lex_state = 653}, + [6656] = {.lex_state = 1222}, + [6657] = {.lex_state = 431}, + [6658] = {.lex_state = 431}, + [6659] = {.lex_state = 431}, + [6660] = {.lex_state = 431}, + [6661] = {.lex_state = 431}, + [6662] = {.lex_state = 120}, + [6663] = {.lex_state = 431}, + [6664] = {.lex_state = 1211}, + [6665] = {.lex_state = 556}, + [6666] = {.lex_state = 431}, + [6667] = {.lex_state = 431}, + [6668] = {.lex_state = 431}, + [6669] = {.lex_state = 597}, + [6670] = {.lex_state = 1211}, + [6671] = {.lex_state = 120}, + [6672] = {.lex_state = 633}, + [6673] = {.lex_state = 633}, + [6674] = {.lex_state = 120}, + [6675] = {.lex_state = 1224}, + [6676] = {.lex_state = 1212}, + [6677] = {.lex_state = 594}, + [6678] = {.lex_state = 243}, + [6679] = {.lex_state = 431}, + [6680] = {.lex_state = 626}, + [6681] = {.lex_state = 198}, + [6682] = {.lex_state = 1212}, + [6683] = {.lex_state = 597}, + [6684] = {.lex_state = 653}, + [6685] = {.lex_state = 431}, + [6686] = {.lex_state = 243}, + [6687] = {.lex_state = 1225}, + [6688] = {.lex_state = 1212}, + [6689] = {.lex_state = 32}, + [6690] = {.lex_state = 592}, + [6691] = {.lex_state = 592}, + [6692] = {.lex_state = 431}, + [6693] = {.lex_state = 556}, + [6694] = {.lex_state = 243}, + [6695] = {.lex_state = 1221}, + [6696] = {.lex_state = 633}, + [6697] = {.lex_state = 431}, + [6698] = {.lex_state = 431}, + [6699] = {.lex_state = 243}, + [6700] = {.lex_state = 431}, + [6701] = {.lex_state = 243}, + [6702] = {.lex_state = 431}, + [6703] = {.lex_state = 243}, + [6704] = {.lex_state = 264}, + [6705] = {.lex_state = 264}, + [6706] = {.lex_state = 120}, + [6707] = {.lex_state = 653}, + [6708] = {.lex_state = 701}, + [6709] = {.lex_state = 431}, + [6710] = {.lex_state = 557}, + [6711] = {.lex_state = 600}, + [6712] = {.lex_state = 596}, + [6713] = {.lex_state = 1220}, + [6714] = {.lex_state = 431}, + [6715] = {.lex_state = 431}, + [6716] = {.lex_state = 243}, + [6717] = {.lex_state = 627}, + [6718] = {.lex_state = 601}, + [6719] = {.lex_state = 653}, + [6720] = {.lex_state = 431}, + [6721] = {.lex_state = 1225}, + [6722] = {.lex_state = 120}, + [6723] = {.lex_state = 120}, + [6724] = {.lex_state = 621}, + [6725] = {.lex_state = 621}, + [6726] = {.lex_state = 1222}, + [6727] = {.lex_state = 657}, + [6728] = {.lex_state = 653}, + [6729] = {.lex_state = 621}, + [6730] = {.lex_state = 556}, + [6731] = {.lex_state = 621}, + [6732] = {.lex_state = 621}, + [6733] = {.lex_state = 624}, + [6734] = {.lex_state = 1212}, + [6735] = {.lex_state = 653}, + [6736] = {.lex_state = 243}, + [6737] = {.lex_state = 1211}, + [6738] = {.lex_state = 431}, + [6739] = {.lex_state = 32}, + [6740] = {.lex_state = 632}, + [6741] = {.lex_state = 431}, + [6742] = {.lex_state = 1221}, + [6743] = {.lex_state = 598}, + [6744] = {.lex_state = 264}, + [6745] = {.lex_state = 598}, + [6746] = {.lex_state = 598}, + [6747] = {.lex_state = 1212}, + [6748] = {.lex_state = 627}, + [6749] = {.lex_state = 431}, + [6750] = {.lex_state = 431}, + [6751] = {.lex_state = 1220}, + [6752] = {.lex_state = 120}, + [6753] = {.lex_state = 597}, + [6754] = {.lex_state = 431}, + [6755] = {.lex_state = 431}, + [6756] = {.lex_state = 600}, + [6757] = {.lex_state = 597}, + [6758] = {.lex_state = 1223}, + [6759] = {.lex_state = 32}, + [6760] = {.lex_state = 1225}, + [6761] = {.lex_state = 597}, + [6762] = {.lex_state = 597}, + [6763] = {.lex_state = 1211}, + [6764] = {.lex_state = 1222}, + [6765] = {.lex_state = 431}, + [6766] = {.lex_state = 592}, + [6767] = {.lex_state = 592}, + [6768] = {.lex_state = 120}, + [6769] = {.lex_state = 592}, + [6770] = {.lex_state = 600}, + [6771] = {.lex_state = 633}, + [6772] = {.lex_state = 431}, + [6773] = {.lex_state = 1225}, + [6774] = {.lex_state = 624}, + [6775] = {.lex_state = 600}, + [6776] = {.lex_state = 264}, + [6777] = {.lex_state = 657}, + [6778] = {.lex_state = 653}, + [6779] = {.lex_state = 1220}, + [6780] = {.lex_state = 624}, + [6781] = {.lex_state = 632}, + [6782] = {.lex_state = 32}, + [6783] = {.lex_state = 198}, + [6784] = {.lex_state = 1220}, + [6785] = {.lex_state = 264}, + [6786] = {.lex_state = 1222}, + [6787] = {.lex_state = 653}, + [6788] = {.lex_state = 653}, + [6789] = {.lex_state = 594}, + [6790] = {.lex_state = 1221}, + [6791] = {.lex_state = 637}, + [6792] = {.lex_state = 1222}, + [6793] = {.lex_state = 683}, + [6794] = {.lex_state = 637}, + [6795] = {.lex_state = 636}, + [6796] = {.lex_state = 1225}, + [6797] = {.lex_state = 1226}, + [6798] = {.lex_state = 602}, + [6799] = {.lex_state = 644}, + [6800] = {.lex_state = 644}, + [6801] = {.lex_state = 629}, + [6802] = {.lex_state = 609}, + [6803] = {.lex_state = 629}, + [6804] = {.lex_state = 644}, + [6805] = {.lex_state = 702}, + [6806] = {.lex_state = 644}, + [6807] = {.lex_state = 1212}, + [6808] = {.lex_state = 1222}, + [6809] = {.lex_state = 644}, + [6810] = {.lex_state = 644}, + [6811] = {.lex_state = 431}, + [6812] = {.lex_state = 431}, + [6813] = {.lex_state = 33}, + [6814] = {.lex_state = 653}, + [6815] = {.lex_state = 637}, + [6816] = {.lex_state = 637}, + [6817] = {.lex_state = 263}, + [6818] = {.lex_state = 653}, + [6819] = {.lex_state = 1212}, + [6820] = {.lex_state = 263}, + [6821] = {.lex_state = 33}, + [6822] = {.lex_state = 1212}, + [6823] = {.lex_state = 644}, + [6824] = {.lex_state = 547}, + [6825] = {.lex_state = 702}, + [6826] = {.lex_state = 263}, + [6827] = {.lex_state = 558}, + [6828] = {.lex_state = 264}, + [6829] = {.lex_state = 264}, + [6830] = {.lex_state = 1227}, + [6831] = {.lex_state = 635}, + [6832] = {.lex_state = 634}, + [6833] = {.lex_state = 637}, + [6834] = {.lex_state = 33}, + [6835] = {.lex_state = 1212}, + [6836] = {.lex_state = 1038}, + [6837] = {.lex_state = 644}, + [6838] = {.lex_state = 637}, + [6839] = {.lex_state = 644}, + [6840] = {.lex_state = 1225}, + [6841] = {.lex_state = 644}, + [6842] = {.lex_state = 653}, + [6843] = {.lex_state = 644}, + [6844] = {.lex_state = 637}, + [6845] = {.lex_state = 637}, + [6846] = {.lex_state = 644}, + [6847] = {.lex_state = 637}, + [6848] = {.lex_state = 637}, + [6849] = {.lex_state = 644}, + [6850] = {.lex_state = 636}, + [6851] = {.lex_state = 636}, + [6852] = {.lex_state = 1226}, + [6853] = {.lex_state = 1224}, + [6854] = {.lex_state = 629}, + [6855] = {.lex_state = 628}, + [6856] = {.lex_state = 629}, + [6857] = {.lex_state = 654}, + [6858] = {.lex_state = 644}, + [6859] = {.lex_state = 637}, + [6860] = {.lex_state = 1225}, + [6861] = {.lex_state = 547}, + [6862] = {.lex_state = 644}, + [6863] = {.lex_state = 1222}, + [6864] = {.lex_state = 431}, + [6865] = {.lex_state = 33}, + [6866] = {.lex_state = 703}, + [6867] = {.lex_state = 628}, + [6868] = {.lex_state = 635}, + [6869] = {.lex_state = 1212}, + [6870] = {.lex_state = 263}, + [6871] = {.lex_state = 263}, + [6872] = {.lex_state = 1226}, + [6873] = {.lex_state = 601}, + [6874] = {.lex_state = 263}, + [6875] = {.lex_state = 644}, + [6876] = {.lex_state = 644}, + [6877] = {.lex_state = 263}, + [6878] = {.lex_state = 431}, + [6879] = {.lex_state = 431}, [6880] = {.lex_state = 1227}, - [6881] = {.lex_state = 1107}, - [6882] = {.lex_state = 1108}, - [6883] = {.lex_state = 22}, - [6884] = {.lex_state = 22}, - [6885] = {.lex_state = 28}, - [6886] = {.lex_state = 1231}, - [6887] = {.lex_state = 1108}, - [6888] = {.lex_state = 1108}, - [6889] = {.lex_state = 431}, - [6890] = {.lex_state = 431}, - [6891] = {.lex_state = 1233}, - [6892] = {.lex_state = 374}, - [6893] = {.lex_state = 22}, - [6894] = {.lex_state = 1107}, - [6895] = {.lex_state = 1107}, - [6896] = {.lex_state = 1107}, - [6897] = {.lex_state = 1107}, - [6898] = {.lex_state = 22}, - [6899] = {.lex_state = 1107}, - [6900] = {.lex_state = 1107}, - [6901] = {.lex_state = 1107}, - [6902] = {.lex_state = 1107}, - [6903] = {.lex_state = 22}, - [6904] = {.lex_state = 374}, - [6905] = {.lex_state = 1108}, - [6906] = {.lex_state = 1108}, - [6907] = {.lex_state = 1230}, - [6908] = {.lex_state = 375}, - [6909] = {.lex_state = 1247}, - [6910] = {.lex_state = 374}, - [6911] = {.lex_state = 374}, - [6912] = {.lex_state = 1230}, - [6913] = {.lex_state = 1232}, - [6914] = {.lex_state = 1233}, - [6915] = {.lex_state = 1234}, - [6916] = {.lex_state = 374}, - [6917] = {.lex_state = 1238}, - [6918] = {.lex_state = 374}, - [6919] = {.lex_state = 1238}, - [6920] = {.lex_state = 1238}, - [6921] = {.lex_state = 431}, - [6922] = {.lex_state = 1232}, - [6923] = {.lex_state = 1234}, - [6924] = {.lex_state = 1239}, - [6925] = {.lex_state = 431}, - [6926] = {.lex_state = 431}, - [6927] = {.lex_state = 431}, - [6928] = {.lex_state = 375}, - [6929] = {.lex_state = 1231}, - [6930] = {.lex_state = 1238}, - [6931] = {.lex_state = 1233}, - [6932] = {.lex_state = 1233}, - [6933] = {.lex_state = 1233}, - [6934] = {.lex_state = 1234}, - [6935] = {.lex_state = 1234}, - [6936] = {.lex_state = 1233}, - [6937] = {.lex_state = 1234}, - [6938] = {.lex_state = 1234}, - [6939] = {.lex_state = 1237}, - [6940] = {.lex_state = 1240}, - [6941] = {.lex_state = 1249}, - [6942] = {.lex_state = 29}, - [6943] = {.lex_state = 428}, - [6944] = {.lex_state = 587}, - [6945] = {.lex_state = 1249}, - [6946] = {.lex_state = 1107}, - [6947] = {.lex_state = 1239}, - [6948] = {.lex_state = 1249}, - [6949] = {.lex_state = 1108}, - [6950] = {.lex_state = 1238}, - [6951] = {.lex_state = 1108}, - [6952] = {.lex_state = 1107}, - [6953] = {.lex_state = 1108}, - [6954] = {.lex_state = 1238}, - [6955] = {.lex_state = 1238}, - [6956] = {.lex_state = 1249}, - [6957] = {.lex_state = 1108}, - [6958] = {.lex_state = 1107}, - [6959] = {.lex_state = 376}, - [6960] = {.lex_state = 376}, - [6961] = {.lex_state = 1232}, - [6962] = {.lex_state = 586}, - [6963] = {.lex_state = 1107}, - [6964] = {.lex_state = 1108}, - [6965] = {.lex_state = 30}, - [6966] = {.lex_state = 586}, - [6967] = {.lex_state = 29}, - [6968] = {.lex_state = 29}, - [6969] = {.lex_state = 431}, - [6970] = {.lex_state = 1239}, - [6971] = {.lex_state = 1248}, - [6972] = {.lex_state = 1239}, - [6973] = {.lex_state = 621}, - [6974] = {.lex_state = 1239}, - [6975] = {.lex_state = 1247}, - [6976] = {.lex_state = 376}, - [6977] = {.lex_state = 1234}, - [6978] = {.lex_state = 1234}, - [6979] = {.lex_state = 431}, - [6980] = {.lex_state = 431}, - [6981] = {.lex_state = 554}, - [6982] = {.lex_state = 376}, - [6983] = {.lex_state = 1234}, - [6984] = {.lex_state = 1234}, - [6985] = {.lex_state = 376}, - [6986] = {.lex_state = 651}, - [6987] = {.lex_state = 587}, - [6988] = {.lex_state = 1238}, - [6989] = {.lex_state = 1234}, - [6990] = {.lex_state = 1234}, - [6991] = {.lex_state = 1107}, - [6992] = {.lex_state = 1107}, - [6993] = {.lex_state = 1107}, - [6994] = {.lex_state = 1251}, - [6995] = {.lex_state = 29}, - [6996] = {.lex_state = 652}, - [6997] = {.lex_state = 428}, - [6998] = {.lex_state = 1107}, - [6999] = {.lex_state = 1232}, - [7000] = {.lex_state = 1107}, - [7001] = {.lex_state = 623}, - [7002] = {.lex_state = 547}, - [7003] = {.lex_state = 599}, - [7004] = {.lex_state = 1250}, - [7005] = {.lex_state = 120}, - [7006] = {.lex_state = 1251}, - [7007] = {.lex_state = 1251}, - [7008] = {.lex_state = 589}, - [7009] = {.lex_state = 1250}, - [7010] = {.lex_state = 555}, - [7011] = {.lex_state = 593}, - [7012] = {.lex_state = 1251}, - [7013] = {.lex_state = 657}, - [7014] = {.lex_state = 625}, - [7015] = {.lex_state = 657}, - [7016] = {.lex_state = 1241}, - [7017] = {.lex_state = 1241}, - [7018] = {.lex_state = 431}, + [6881] = {.lex_state = 1226}, + [6882] = {.lex_state = 646}, + [6883] = {.lex_state = 702}, + [6884] = {.lex_state = 635}, + [6885] = {.lex_state = 431}, + [6886] = {.lex_state = 636}, + [6887] = {.lex_state = 558}, + [6888] = {.lex_state = 629}, + [6889] = {.lex_state = 658}, + [6890] = {.lex_state = 612}, + [6891] = {.lex_state = 1213}, + [6892] = {.lex_state = 653}, + [6893] = {.lex_state = 431}, + [6894] = {.lex_state = 1227}, + [6895] = {.lex_state = 601}, + [6896] = {.lex_state = 635}, + [6897] = {.lex_state = 681}, + [6898] = {.lex_state = 263}, + [6899] = {.lex_state = 644}, + [6900] = {.lex_state = 636}, + [6901] = {.lex_state = 644}, + [6902] = {.lex_state = 264}, + [6903] = {.lex_state = 644}, + [6904] = {.lex_state = 644}, + [6905] = {.lex_state = 634}, + [6906] = {.lex_state = 1225}, + [6907] = {.lex_state = 644}, + [6908] = {.lex_state = 1212}, + [6909] = {.lex_state = 601}, + [6910] = {.lex_state = 33}, + [6911] = {.lex_state = 739}, + [6912] = {.lex_state = 637}, + [6913] = {.lex_state = 1212}, + [6914] = {.lex_state = 702}, + [6915] = {.lex_state = 629}, + [6916] = {.lex_state = 1227}, + [6917] = {.lex_state = 431}, + [6918] = {.lex_state = 644}, + [6919] = {.lex_state = 1226}, + [6920] = {.lex_state = 621}, + [6921] = {.lex_state = 621}, + [6922] = {.lex_state = 621}, + [6923] = {.lex_state = 621}, + [6924] = {.lex_state = 558}, + [6925] = {.lex_state = 636}, + [6926] = {.lex_state = 621}, + [6927] = {.lex_state = 558}, + [6928] = {.lex_state = 644}, + [6929] = {.lex_state = 1038}, + [6930] = {.lex_state = 653}, + [6931] = {.lex_state = 547}, + [6932] = {.lex_state = 653}, + [6933] = {.lex_state = 243}, + [6934] = {.lex_state = 431}, + [6935] = {.lex_state = 704}, + [6936] = {.lex_state = 1215}, + [6937] = {.lex_state = 243}, + [6938] = {.lex_state = 1226}, + [6939] = {.lex_state = 1038}, + [6940] = {.lex_state = 431}, + [6941] = {.lex_state = 1226}, + [6942] = {.lex_state = 1228}, + [6943] = {.lex_state = 564}, + [6944] = {.lex_state = 1215}, + [6945] = {.lex_state = 1038}, + [6946] = {.lex_state = 243}, + [6947] = {.lex_state = 1038}, + [6948] = {.lex_state = 1215}, + [6949] = {.lex_state = 243}, + [6950] = {.lex_state = 611}, + [6951] = {.lex_state = 1038}, + [6952] = {.lex_state = 1226}, + [6953] = {.lex_state = 684}, + [6954] = {.lex_state = 1038}, + [6955] = {.lex_state = 684}, + [6956] = {.lex_state = 653}, + [6957] = {.lex_state = 686}, + [6958] = {.lex_state = 431}, + [6959] = {.lex_state = 431}, + [6960] = {.lex_state = 431}, + [6961] = {.lex_state = 431}, + [6962] = {.lex_state = 1038}, + [6963] = {.lex_state = 431}, + [6964] = {.lex_state = 1038}, + [6965] = {.lex_state = 431}, + [6966] = {.lex_state = 431}, + [6967] = {.lex_state = 429}, + [6968] = {.lex_state = 1214}, + [6969] = {.lex_state = 1038}, + [6970] = {.lex_state = 1038}, + [6971] = {.lex_state = 559}, + [6972] = {.lex_state = 547}, + [6973] = {.lex_state = 265}, + [6974] = {.lex_state = 265}, + [6975] = {.lex_state = 1028}, + [6976] = {.lex_state = 243}, + [6977] = {.lex_state = 243}, + [6978] = {.lex_state = 1038}, + [6979] = {.lex_state = 1038}, + [6980] = {.lex_state = 1038}, + [6981] = {.lex_state = 1228}, + [6982] = {.lex_state = 265}, + [6983] = {.lex_state = 614}, + [6984] = {.lex_state = 559}, + [6985] = {.lex_state = 243}, + [6986] = {.lex_state = 33}, + [6987] = {.lex_state = 185}, + [6988] = {.lex_state = 1038}, + [6989] = {.lex_state = 547}, + [6990] = {.lex_state = 243}, + [6991] = {.lex_state = 1038}, + [6992] = {.lex_state = 243}, + [6993] = {.lex_state = 1228}, + [6994] = {.lex_state = 1228}, + [6995] = {.lex_state = 1038}, + [6996] = {.lex_state = 1038}, + [6997] = {.lex_state = 1038}, + [6998] = {.lex_state = 649}, + [6999] = {.lex_state = 603}, + [7000] = {.lex_state = 547}, + [7001] = {.lex_state = 1038}, + [7002] = {.lex_state = 429}, + [7003] = {.lex_state = 1227}, + [7004] = {.lex_state = 1227}, + [7005] = {.lex_state = 610}, + [7006] = {.lex_state = 1227}, + [7007] = {.lex_state = 649}, + [7008] = {.lex_state = 1038}, + [7009] = {.lex_state = 431}, + [7010] = {.lex_state = 703}, + [7011] = {.lex_state = 603}, + [7012] = {.lex_state = 431}, + [7013] = {.lex_state = 613}, + [7014] = {.lex_state = 1213}, + [7015] = {.lex_state = 559}, + [7016] = {.lex_state = 711}, + [7017] = {.lex_state = 559}, + [7018] = {.lex_state = 1038}, [7019] = {.lex_state = 547}, - [7020] = {.lex_state = 547}, - [7021] = {.lex_state = 1250}, - [7022] = {.lex_state = 1249}, - [7023] = {.lex_state = 1253}, - [7024] = {.lex_state = 1241}, - [7025] = {.lex_state = 593}, - [7026] = {.lex_state = 588}, - [7027] = {.lex_state = 547}, - [7028] = {.lex_state = 651}, - [7029] = {.lex_state = 623}, - [7030] = {.lex_state = 1248}, - [7031] = {.lex_state = 588}, - [7032] = {.lex_state = 588}, - [7033] = {.lex_state = 1239}, - [7034] = {.lex_state = 556}, - [7035] = {.lex_state = 431}, - [7036] = {.lex_state = 1250}, - [7037] = {.lex_state = 31}, - [7038] = {.lex_state = 431}, - [7039] = {.lex_state = 30}, - [7040] = {.lex_state = 30}, - [7041] = {.lex_state = 590}, - [7042] = {.lex_state = 555}, - [7043] = {.lex_state = 588}, - [7044] = {.lex_state = 588}, - [7045] = {.lex_state = 1107}, - [7046] = {.lex_state = 1252}, - [7047] = {.lex_state = 120}, - [7048] = {.lex_state = 1107}, - [7049] = {.lex_state = 1107}, - [7050] = {.lex_state = 1107}, - [7051] = {.lex_state = 1107}, - [7052] = {.lex_state = 589}, - [7053] = {.lex_state = 1107}, - [7054] = {.lex_state = 1249}, - [7055] = {.lex_state = 1249}, - [7056] = {.lex_state = 591}, - [7057] = {.lex_state = 622}, - [7058] = {.lex_state = 1239}, - [7059] = {.lex_state = 589}, - [7060] = {.lex_state = 591}, - [7061] = {.lex_state = 1241}, - [7062] = {.lex_state = 589}, - [7063] = {.lex_state = 1249}, - [7064] = {.lex_state = 590}, - [7065] = {.lex_state = 1239}, - [7066] = {.lex_state = 623}, - [7067] = {.lex_state = 1251}, - [7068] = {.lex_state = 651}, - [7069] = {.lex_state = 595}, - [7070] = {.lex_state = 555}, - [7071] = {.lex_state = 651}, - [7072] = {.lex_state = 1240}, - [7073] = {.lex_state = 589}, - [7074] = {.lex_state = 589}, - [7075] = {.lex_state = 588}, - [7076] = {.lex_state = 1107}, - [7077] = {.lex_state = 30}, - [7078] = {.lex_state = 431}, - [7079] = {.lex_state = 431}, - [7080] = {.lex_state = 555}, - [7081] = {.lex_state = 1251}, - [7082] = {.lex_state = 431}, - [7083] = {.lex_state = 597}, + [7020] = {.lex_state = 1226}, + [7021] = {.lex_state = 684}, + [7022] = {.lex_state = 1038}, + [7023] = {.lex_state = 431}, + [7024] = {.lex_state = 682}, + [7025] = {.lex_state = 1038}, + [7026] = {.lex_state = 1038}, + [7027] = {.lex_state = 1038}, + [7028] = {.lex_state = 1038}, + [7029] = {.lex_state = 1226}, + [7030] = {.lex_state = 431}, + [7031] = {.lex_state = 1038}, + [7032] = {.lex_state = 613}, + [7033] = {.lex_state = 688}, + [7034] = {.lex_state = 741}, + [7035] = {.lex_state = 685}, + [7036] = {.lex_state = 1038}, + [7037] = {.lex_state = 712}, + [7038] = {.lex_state = 1038}, + [7039] = {.lex_state = 1038}, + [7040] = {.lex_state = 1038}, + [7041] = {.lex_state = 431}, + [7042] = {.lex_state = 564}, + [7043] = {.lex_state = 1212}, + [7044] = {.lex_state = 1038}, + [7045] = {.lex_state = 603}, + [7046] = {.lex_state = 1038}, + [7047] = {.lex_state = 682}, + [7048] = {.lex_state = 1039}, + [7049] = {.lex_state = 682}, + [7050] = {.lex_state = 610}, + [7051] = {.lex_state = 682}, + [7052] = {.lex_state = 703}, + [7053] = {.lex_state = 1226}, + [7054] = {.lex_state = 613}, + [7055] = {.lex_state = 740}, + [7056] = {.lex_state = 34}, + [7057] = {.lex_state = 1227}, + [7058] = {.lex_state = 429}, + [7059] = {.lex_state = 1212}, + [7060] = {.lex_state = 603}, + [7061] = {.lex_state = 1038}, + [7062] = {.lex_state = 613}, + [7063] = {.lex_state = 429}, + [7064] = {.lex_state = 1038}, + [7065] = {.lex_state = 547}, + [7066] = {.lex_state = 431}, + [7067] = {.lex_state = 547}, + [7068] = {.lex_state = 243}, + [7069] = {.lex_state = 610}, + [7070] = {.lex_state = 243}, + [7071] = {.lex_state = 243}, + [7072] = {.lex_state = 243}, + [7073] = {.lex_state = 243}, + [7074] = {.lex_state = 741}, + [7075] = {.lex_state = 703}, + [7076] = {.lex_state = 1215}, + [7077] = {.lex_state = 559}, + [7078] = {.lex_state = 1038}, + [7079] = {.lex_state = 741}, + [7080] = {.lex_state = 429}, + [7081] = {.lex_state = 431}, + [7082] = {.lex_state = 1229}, + [7083] = {.lex_state = 431}, [7084] = {.lex_state = 431}, - [7085] = {.lex_state = 1241}, - [7086] = {.lex_state = 597}, - [7087] = {.lex_state = 621}, - [7088] = {.lex_state = 621}, - [7089] = {.lex_state = 32}, - [7090] = {.lex_state = 621}, - [7091] = {.lex_state = 621}, - [7092] = {.lex_state = 621}, - [7093] = {.lex_state = 431}, - [7094] = {.lex_state = 198}, - [7095] = {.lex_state = 120}, - [7096] = {.lex_state = 597}, - [7097] = {.lex_state = 431}, - [7098] = {.lex_state = 431}, - [7099] = {.lex_state = 633}, - [7100] = {.lex_state = 431}, - [7101] = {.lex_state = 431}, - [7102] = {.lex_state = 431}, + [7085] = {.lex_state = 610}, + [7086] = {.lex_state = 33}, + [7087] = {.lex_state = 547}, + [7088] = {.lex_state = 1226}, + [7089] = {.lex_state = 684}, + [7090] = {.lex_state = 1038}, + [7091] = {.lex_state = 15}, + [7092] = {.lex_state = 741}, + [7093] = {.lex_state = 547}, + [7094] = {.lex_state = 431}, + [7095] = {.lex_state = 547}, + [7096] = {.lex_state = 547}, + [7097] = {.lex_state = 547}, + [7098] = {.lex_state = 1228}, + [7099] = {.lex_state = 1028}, + [7100] = {.lex_state = 1028}, + [7101] = {.lex_state = 1028}, + [7102] = {.lex_state = 1028}, [7103] = {.lex_state = 431}, [7104] = {.lex_state = 431}, - [7105] = {.lex_state = 1252}, - [7106] = {.lex_state = 600}, - [7107] = {.lex_state = 556}, - [7108] = {.lex_state = 243}, - [7109] = {.lex_state = 1250}, - [7110] = {.lex_state = 32}, - [7111] = {.lex_state = 431}, - [7112] = {.lex_state = 633}, - [7113] = {.lex_state = 701}, - [7114] = {.lex_state = 243}, - [7115] = {.lex_state = 431}, - [7116] = {.lex_state = 431}, - [7117] = {.lex_state = 657}, - [7118] = {.lex_state = 1252}, - [7119] = {.lex_state = 120}, - [7120] = {.lex_state = 556}, - [7121] = {.lex_state = 1251}, - [7122] = {.lex_state = 1252}, - [7123] = {.lex_state = 1241}, - [7124] = {.lex_state = 1242}, - [7125] = {.lex_state = 1255}, - [7126] = {.lex_state = 1252}, + [7105] = {.lex_state = 1038}, + [7106] = {.lex_state = 243}, + [7107] = {.lex_state = 742}, + [7108] = {.lex_state = 429}, + [7109] = {.lex_state = 198}, + [7110] = {.lex_state = 243}, + [7111] = {.lex_state = 243}, + [7112] = {.lex_state = 243}, + [7113] = {.lex_state = 1038}, + [7114] = {.lex_state = 429}, + [7115] = {.lex_state = 243}, + [7116] = {.lex_state = 243}, + [7117] = {.lex_state = 1038}, + [7118] = {.lex_state = 1038}, + [7119] = {.lex_state = 243}, + [7120] = {.lex_state = 243}, + [7121] = {.lex_state = 243}, + [7122] = {.lex_state = 1216}, + [7123] = {.lex_state = 716}, + [7124] = {.lex_state = 685}, + [7125] = {.lex_state = 1216}, + [7126] = {.lex_state = 714}, [7127] = {.lex_state = 243}, - [7128] = {.lex_state = 243}, - [7129] = {.lex_state = 1241}, - [7130] = {.lex_state = 600}, + [7128] = {.lex_state = 428}, + [7129] = {.lex_state = 243}, + [7130] = {.lex_state = 431}, [7131] = {.lex_state = 243}, - [7132] = {.lex_state = 597}, - [7133] = {.lex_state = 1255}, - [7134] = {.lex_state = 431}, - [7135] = {.lex_state = 431}, - [7136] = {.lex_state = 600}, - [7137] = {.lex_state = 431}, - [7138] = {.lex_state = 32}, - [7139] = {.lex_state = 1253}, - [7140] = {.lex_state = 1254}, - [7141] = {.lex_state = 198}, - [7142] = {.lex_state = 431}, - [7143] = {.lex_state = 596}, - [7144] = {.lex_state = 120}, - [7145] = {.lex_state = 632}, - [7146] = {.lex_state = 1251}, - [7147] = {.lex_state = 556}, - [7148] = {.lex_state = 264}, - [7149] = {.lex_state = 627}, - [7150] = {.lex_state = 120}, - [7151] = {.lex_state = 653}, - [7152] = {.lex_state = 594}, - [7153] = {.lex_state = 600}, - [7154] = {.lex_state = 1241}, - [7155] = {.lex_state = 1242}, - [7156] = {.lex_state = 1242}, - [7157] = {.lex_state = 633}, - [7158] = {.lex_state = 264}, - [7159] = {.lex_state = 653}, - [7160] = {.lex_state = 653}, - [7161] = {.lex_state = 653}, - [7162] = {.lex_state = 431}, - [7163] = {.lex_state = 657}, - [7164] = {.lex_state = 120}, - [7165] = {.lex_state = 32}, - [7166] = {.lex_state = 592}, - [7167] = {.lex_state = 632}, - [7168] = {.lex_state = 653}, - [7169] = {.lex_state = 597}, - [7170] = {.lex_state = 597}, - [7171] = {.lex_state = 1250}, - [7172] = {.lex_state = 243}, - [7173] = {.lex_state = 594}, - [7174] = {.lex_state = 431}, - [7175] = {.lex_state = 431}, - [7176] = {.lex_state = 626}, - [7177] = {.lex_state = 598}, - [7178] = {.lex_state = 624}, - [7179] = {.lex_state = 624}, - [7180] = {.lex_state = 431}, - [7181] = {.lex_state = 431}, - [7182] = {.lex_state = 598}, - [7183] = {.lex_state = 120}, - [7184] = {.lex_state = 653}, - [7185] = {.lex_state = 264}, - [7186] = {.lex_state = 431}, - [7187] = {.lex_state = 1242}, - [7188] = {.lex_state = 1250}, - [7189] = {.lex_state = 264}, - [7190] = {.lex_state = 598}, - [7191] = {.lex_state = 431}, - [7192] = {.lex_state = 431}, - [7193] = {.lex_state = 120}, - [7194] = {.lex_state = 431}, - [7195] = {.lex_state = 1255}, - [7196] = {.lex_state = 653}, - [7197] = {.lex_state = 1250}, - [7198] = {.lex_state = 653}, - [7199] = {.lex_state = 653}, - [7200] = {.lex_state = 243}, - [7201] = {.lex_state = 601}, - [7202] = {.lex_state = 431}, - [7203] = {.lex_state = 1242}, - [7204] = {.lex_state = 431}, - [7205] = {.lex_state = 592}, - [7206] = {.lex_state = 120}, - [7207] = {.lex_state = 592}, - [7208] = {.lex_state = 1255}, - [7209] = {.lex_state = 627}, - [7210] = {.lex_state = 592}, - [7211] = {.lex_state = 592}, - [7212] = {.lex_state = 243}, - [7213] = {.lex_state = 264}, - [7214] = {.lex_state = 557}, - [7215] = {.lex_state = 633}, - [7216] = {.lex_state = 624}, - [7217] = {.lex_state = 431}, - [7218] = {.lex_state = 644}, - [7219] = {.lex_state = 1255}, - [7220] = {.lex_state = 646}, - [7221] = {.lex_state = 702}, - [7222] = {.lex_state = 431}, - [7223] = {.lex_state = 644}, - [7224] = {.lex_state = 644}, - [7225] = {.lex_state = 637}, - [7226] = {.lex_state = 635}, - [7227] = {.lex_state = 644}, - [7228] = {.lex_state = 702}, - [7229] = {.lex_state = 1242}, - [7230] = {.lex_state = 644}, - [7231] = {.lex_state = 644}, - [7232] = {.lex_state = 634}, - [7233] = {.lex_state = 1255}, - [7234] = {.lex_state = 644}, - [7235] = {.lex_state = 702}, - [7236] = {.lex_state = 644}, - [7237] = {.lex_state = 635}, - [7238] = {.lex_state = 1256}, - [7239] = {.lex_state = 601}, - [7240] = {.lex_state = 636}, - [7241] = {.lex_state = 644}, - [7242] = {.lex_state = 636}, - [7243] = {.lex_state = 558}, - [7244] = {.lex_state = 629}, - [7245] = {.lex_state = 629}, - [7246] = {.lex_state = 703}, - [7247] = {.lex_state = 644}, - [7248] = {.lex_state = 637}, - [7249] = {.lex_state = 637}, - [7250] = {.lex_state = 637}, - [7251] = {.lex_state = 602}, - [7252] = {.lex_state = 644}, - [7253] = {.lex_state = 634}, - [7254] = {.lex_state = 1256}, - [7255] = {.lex_state = 644}, - [7256] = {.lex_state = 33}, - [7257] = {.lex_state = 601}, - [7258] = {.lex_state = 558}, - [7259] = {.lex_state = 33}, - [7260] = {.lex_state = 635}, - [7261] = {.lex_state = 644}, - [7262] = {.lex_state = 431}, - [7263] = {.lex_state = 644}, - [7264] = {.lex_state = 1242}, - [7265] = {.lex_state = 644}, - [7266] = {.lex_state = 264}, - [7267] = {.lex_state = 644}, - [7268] = {.lex_state = 1254}, - [7269] = {.lex_state = 702}, - [7270] = {.lex_state = 1257}, - [7271] = {.lex_state = 558}, - [7272] = {.lex_state = 644}, - [7273] = {.lex_state = 1257}, - [7274] = {.lex_state = 1256}, - [7275] = {.lex_state = 1257}, - [7276] = {.lex_state = 1255}, - [7277] = {.lex_state = 653}, - [7278] = {.lex_state = 653}, - [7279] = {.lex_state = 264}, - [7280] = {.lex_state = 644}, - [7281] = {.lex_state = 1257}, - [7282] = {.lex_state = 609}, - [7283] = {.lex_state = 644}, - [7284] = {.lex_state = 644}, - [7285] = {.lex_state = 635}, - [7286] = {.lex_state = 33}, - [7287] = {.lex_state = 1242}, - [7288] = {.lex_state = 644}, - [7289] = {.lex_state = 637}, - [7290] = {.lex_state = 637}, - [7291] = {.lex_state = 644}, - [7292] = {.lex_state = 431}, - [7293] = {.lex_state = 621}, - [7294] = {.lex_state = 629}, - [7295] = {.lex_state = 1256}, - [7296] = {.lex_state = 644}, - [7297] = {.lex_state = 637}, - [7298] = {.lex_state = 637}, - [7299] = {.lex_state = 1242}, - [7300] = {.lex_state = 637}, - [7301] = {.lex_state = 601}, - [7302] = {.lex_state = 431}, - [7303] = {.lex_state = 264}, - [7304] = {.lex_state = 431}, - [7305] = {.lex_state = 637}, - [7306] = {.lex_state = 1255}, - [7307] = {.lex_state = 1252}, - [7308] = {.lex_state = 547}, - [7309] = {.lex_state = 1256}, - [7310] = {.lex_state = 628}, - [7311] = {.lex_state = 547}, - [7312] = {.lex_state = 621}, - [7313] = {.lex_state = 612}, - [7314] = {.lex_state = 558}, + [7132] = {.lex_state = 1038}, + [7133] = {.lex_state = 243}, + [7134] = {.lex_state = 243}, + [7135] = {.lex_state = 428}, + [7136] = {.lex_state = 1215}, + [7137] = {.lex_state = 243}, + [7138] = {.lex_state = 198}, + [7139] = {.lex_state = 198}, + [7140] = {.lex_state = 1038}, + [7141] = {.lex_state = 1215}, + [7142] = {.lex_state = 1038}, + [7143] = {.lex_state = 604}, + [7144] = {.lex_state = 1214}, + [7145] = {.lex_state = 1038}, + [7146] = {.lex_state = 1038}, + [7147] = {.lex_state = 198}, + [7148] = {.lex_state = 198}, + [7149] = {.lex_state = 604}, + [7150] = {.lex_state = 559}, + [7151] = {.lex_state = 431}, + [7152] = {.lex_state = 243}, + [7153] = {.lex_state = 243}, + [7154] = {.lex_state = 243}, + [7155] = {.lex_state = 198}, + [7156] = {.lex_state = 198}, + [7157] = {.lex_state = 1038}, + [7158] = {.lex_state = 1038}, + [7159] = {.lex_state = 243}, + [7160] = {.lex_state = 243}, + [7161] = {.lex_state = 611}, + [7162] = {.lex_state = 1038}, + [7163] = {.lex_state = 1038}, + [7164] = {.lex_state = 243}, + [7165] = {.lex_state = 243}, + [7166] = {.lex_state = 604}, + [7167] = {.lex_state = 1229}, + [7168] = {.lex_state = 431}, + [7169] = {.lex_state = 243}, + [7170] = {.lex_state = 243}, + [7171] = {.lex_state = 431}, + [7172] = {.lex_state = 198}, + [7173] = {.lex_state = 1038}, + [7174] = {.lex_state = 705}, + [7175] = {.lex_state = 198}, + [7176] = {.lex_state = 429}, + [7177] = {.lex_state = 429}, + [7178] = {.lex_state = 243}, + [7179] = {.lex_state = 243}, + [7180] = {.lex_state = 1028}, + [7181] = {.lex_state = 243}, + [7182] = {.lex_state = 1028}, + [7183] = {.lex_state = 198}, + [7184] = {.lex_state = 1215}, + [7185] = {.lex_state = 243}, + [7186] = {.lex_state = 243}, + [7187] = {.lex_state = 35}, + [7188] = {.lex_state = 1028}, + [7189] = {.lex_state = 428}, + [7190] = {.lex_state = 431}, + [7191] = {.lex_state = 243}, + [7192] = {.lex_state = 243}, + [7193] = {.lex_state = 243}, + [7194] = {.lex_state = 1038}, + [7195] = {.lex_state = 1038}, + [7196] = {.lex_state = 1038}, + [7197] = {.lex_state = 243}, + [7198] = {.lex_state = 1038}, + [7199] = {.lex_state = 1038}, + [7200] = {.lex_state = 198}, + [7201] = {.lex_state = 686}, + [7202] = {.lex_state = 243}, + [7203] = {.lex_state = 134}, + [7204] = {.lex_state = 243}, + [7205] = {.lex_state = 1038}, + [7206] = {.lex_state = 243}, + [7207] = {.lex_state = 1038}, + [7208] = {.lex_state = 243}, + [7209] = {.lex_state = 243}, + [7210] = {.lex_state = 243}, + [7211] = {.lex_state = 243}, + [7212] = {.lex_state = 429}, + [7213] = {.lex_state = 685}, + [7214] = {.lex_state = 743}, + [7215] = {.lex_state = 243}, + [7216] = {.lex_state = 1038}, + [7217] = {.lex_state = 243}, + [7218] = {.lex_state = 1038}, + [7219] = {.lex_state = 1038}, + [7220] = {.lex_state = 1231}, + [7221] = {.lex_state = 243}, + [7222] = {.lex_state = 714}, + [7223] = {.lex_state = 1038}, + [7224] = {.lex_state = 1216}, + [7225] = {.lex_state = 1038}, + [7226] = {.lex_state = 705}, + [7227] = {.lex_state = 243}, + [7228] = {.lex_state = 1228}, + [7229] = {.lex_state = 1230}, + [7230] = {.lex_state = 615}, + [7231] = {.lex_state = 243}, + [7232] = {.lex_state = 243}, + [7233] = {.lex_state = 689}, + [7234] = {.lex_state = 243}, + [7235] = {.lex_state = 243}, + [7236] = {.lex_state = 1228}, + [7237] = {.lex_state = 713}, + [7238] = {.lex_state = 243}, + [7239] = {.lex_state = 243}, + [7240] = {.lex_state = 243}, + [7241] = {.lex_state = 243}, + [7242] = {.lex_state = 743}, + [7243] = {.lex_state = 243}, + [7244] = {.lex_state = 1214}, + [7245] = {.lex_state = 1216}, + [7246] = {.lex_state = 431}, + [7247] = {.lex_state = 243}, + [7248] = {.lex_state = 429}, + [7249] = {.lex_state = 1038}, + [7250] = {.lex_state = 742}, + [7251] = {.lex_state = 429}, + [7252] = {.lex_state = 243}, + [7253] = {.lex_state = 1228}, + [7254] = {.lex_state = 243}, + [7255] = {.lex_state = 714}, + [7256] = {.lex_state = 243}, + [7257] = {.lex_state = 1038}, + [7258] = {.lex_state = 686}, + [7259] = {.lex_state = 1228}, + [7260] = {.lex_state = 1226}, + [7261] = {.lex_state = 567}, + [7262] = {.lex_state = 243}, + [7263] = {.lex_state = 1216}, + [7264] = {.lex_state = 1038}, + [7265] = {.lex_state = 243}, + [7266] = {.lex_state = 569}, + [7267] = {.lex_state = 604}, + [7268] = {.lex_state = 1233}, + [7269] = {.lex_state = 1228}, + [7270] = {.lex_state = 1038}, + [7271] = {.lex_state = 713}, + [7272] = {.lex_state = 243}, + [7273] = {.lex_state = 429}, + [7274] = {.lex_state = 243}, + [7275] = {.lex_state = 1228}, + [7276] = {.lex_state = 1228}, + [7277] = {.lex_state = 243}, + [7278] = {.lex_state = 559}, + [7279] = {.lex_state = 243}, + [7280] = {.lex_state = 243}, + [7281] = {.lex_state = 243}, + [7282] = {.lex_state = 36}, + [7283] = {.lex_state = 243}, + [7284] = {.lex_state = 1038}, + [7285] = {.lex_state = 564}, + [7286] = {.lex_state = 614}, + [7287] = {.lex_state = 243}, + [7288] = {.lex_state = 431}, + [7289] = {.lex_state = 243}, + [7290] = {.lex_state = 243}, + [7291] = {.lex_state = 1226}, + [7292] = {.lex_state = 243}, + [7293] = {.lex_state = 243}, + [7294] = {.lex_state = 1038}, + [7295] = {.lex_state = 243}, + [7296] = {.lex_state = 243}, + [7297] = {.lex_state = 742}, + [7298] = {.lex_state = 1038}, + [7299] = {.lex_state = 714}, + [7300] = {.lex_state = 713}, + [7301] = {.lex_state = 431}, + [7302] = {.lex_state = 243}, + [7303] = {.lex_state = 243}, + [7304] = {.lex_state = 243}, + [7305] = {.lex_state = 1038}, + [7306] = {.lex_state = 1215}, + [7307] = {.lex_state = 1246}, + [7308] = {.lex_state = 1233}, + [7309] = {.lex_state = 1216}, + [7310] = {.lex_state = 431}, + [7311] = {.lex_state = 243}, + [7312] = {.lex_state = 243}, + [7313] = {.lex_state = 243}, + [7314] = {.lex_state = 431}, [7315] = {.lex_state = 431}, - [7316] = {.lex_state = 653}, - [7317] = {.lex_state = 653}, - [7318] = {.lex_state = 33}, - [7319] = {.lex_state = 644}, - [7320] = {.lex_state = 1242}, - [7321] = {.lex_state = 658}, - [7322] = {.lex_state = 629}, - [7323] = {.lex_state = 1252}, - [7324] = {.lex_state = 1243}, - [7325] = {.lex_state = 636}, - [7326] = {.lex_state = 1252}, - [7327] = {.lex_state = 263}, - [7328] = {.lex_state = 263}, - [7329] = {.lex_state = 263}, - [7330] = {.lex_state = 654}, - [7331] = {.lex_state = 1242}, - [7332] = {.lex_state = 681}, - [7333] = {.lex_state = 637}, - [7334] = {.lex_state = 637}, - [7335] = {.lex_state = 644}, - [7336] = {.lex_state = 636}, - [7337] = {.lex_state = 629}, - [7338] = {.lex_state = 33}, - [7339] = {.lex_state = 263}, - [7340] = {.lex_state = 263}, - [7341] = {.lex_state = 263}, - [7342] = {.lex_state = 263}, - [7343] = {.lex_state = 263}, - [7344] = {.lex_state = 644}, - [7345] = {.lex_state = 628}, - [7346] = {.lex_state = 1242}, - [7347] = {.lex_state = 636}, - [7348] = {.lex_state = 636}, - [7349] = {.lex_state = 739}, - [7350] = {.lex_state = 431}, - [7351] = {.lex_state = 1043}, - [7352] = {.lex_state = 683}, - [7353] = {.lex_state = 621}, - [7354] = {.lex_state = 621}, - [7355] = {.lex_state = 621}, - [7356] = {.lex_state = 629}, - [7357] = {.lex_state = 431}, - [7358] = {.lex_state = 1043}, - [7359] = {.lex_state = 547}, - [7360] = {.lex_state = 429}, - [7361] = {.lex_state = 703}, - [7362] = {.lex_state = 559}, - [7363] = {.lex_state = 1043}, - [7364] = {.lex_state = 1043}, - [7365] = {.lex_state = 1043}, - [7366] = {.lex_state = 610}, - [7367] = {.lex_state = 610}, - [7368] = {.lex_state = 559}, - [7369] = {.lex_state = 431}, - [7370] = {.lex_state = 559}, - [7371] = {.lex_state = 603}, - [7372] = {.lex_state = 431}, - [7373] = {.lex_state = 1043}, - [7374] = {.lex_state = 431}, - [7375] = {.lex_state = 1043}, - [7376] = {.lex_state = 684}, - [7377] = {.lex_state = 429}, - [7378] = {.lex_state = 33}, - [7379] = {.lex_state = 1256}, - [7380] = {.lex_state = 431}, - [7381] = {.lex_state = 547}, - [7382] = {.lex_state = 431}, - [7383] = {.lex_state = 431}, - [7384] = {.lex_state = 1256}, - [7385] = {.lex_state = 431}, - [7386] = {.lex_state = 431}, - [7387] = {.lex_state = 429}, - [7388] = {.lex_state = 431}, - [7389] = {.lex_state = 243}, - [7390] = {.lex_state = 431}, - [7391] = {.lex_state = 429}, - [7392] = {.lex_state = 613}, - [7393] = {.lex_state = 1256}, - [7394] = {.lex_state = 1258}, - [7395] = {.lex_state = 1043}, - [7396] = {.lex_state = 1043}, - [7397] = {.lex_state = 1043}, - [7398] = {.lex_state = 1256}, - [7399] = {.lex_state = 1043}, - [7400] = {.lex_state = 1258}, - [7401] = {.lex_state = 1029}, - [7402] = {.lex_state = 613}, - [7403] = {.lex_state = 185}, - [7404] = {.lex_state = 711}, - [7405] = {.lex_state = 1043}, - [7406] = {.lex_state = 1043}, - [7407] = {.lex_state = 15}, - [7408] = {.lex_state = 1043}, - [7409] = {.lex_state = 1043}, - [7410] = {.lex_state = 265}, - [7411] = {.lex_state = 265}, - [7412] = {.lex_state = 265}, - [7413] = {.lex_state = 1043}, - [7414] = {.lex_state = 1043}, - [7415] = {.lex_state = 1043}, - [7416] = {.lex_state = 564}, - [7417] = {.lex_state = 1043}, - [7418] = {.lex_state = 1258}, - [7419] = {.lex_state = 1043}, - [7420] = {.lex_state = 1043}, - [7421] = {.lex_state = 1043}, - [7422] = {.lex_state = 1043}, - [7423] = {.lex_state = 1043}, - [7424] = {.lex_state = 1043}, - [7425] = {.lex_state = 1043}, - [7426] = {.lex_state = 1043}, - [7427] = {.lex_state = 1043}, - [7428] = {.lex_state = 653}, - [7429] = {.lex_state = 684}, - [7430] = {.lex_state = 1043}, - [7431] = {.lex_state = 243}, - [7432] = {.lex_state = 1044}, - [7433] = {.lex_state = 603}, - [7434] = {.lex_state = 564}, - [7435] = {.lex_state = 1256}, - [7436] = {.lex_state = 682}, - [7437] = {.lex_state = 613}, - [7438] = {.lex_state = 682}, - [7439] = {.lex_state = 1257}, - [7440] = {.lex_state = 547}, - [7441] = {.lex_state = 613}, - [7442] = {.lex_state = 1257}, - [7443] = {.lex_state = 1242}, - [7444] = {.lex_state = 653}, - [7445] = {.lex_state = 603}, - [7446] = {.lex_state = 653}, - [7447] = {.lex_state = 649}, - [7448] = {.lex_state = 741}, - [7449] = {.lex_state = 243}, - [7450] = {.lex_state = 1257}, - [7451] = {.lex_state = 703}, - [7452] = {.lex_state = 1043}, - [7453] = {.lex_state = 1043}, - [7454] = {.lex_state = 431}, - [7455] = {.lex_state = 712}, - [7456] = {.lex_state = 704}, - [7457] = {.lex_state = 649}, - [7458] = {.lex_state = 1245}, - [7459] = {.lex_state = 547}, - [7460] = {.lex_state = 559}, - [7461] = {.lex_state = 686}, - [7462] = {.lex_state = 1043}, - [7463] = {.lex_state = 703}, - [7464] = {.lex_state = 1256}, - [7465] = {.lex_state = 1245}, + [7316] = {.lex_state = 614}, + [7317] = {.lex_state = 564}, + [7318] = {.lex_state = 428}, + [7319] = {.lex_state = 243}, + [7320] = {.lex_state = 243}, + [7321] = {.lex_state = 243}, + [7322] = {.lex_state = 243}, + [7323] = {.lex_state = 560}, + [7324] = {.lex_state = 431}, + [7325] = {.lex_state = 657}, + [7326] = {.lex_state = 1038}, + [7327] = {.lex_state = 243}, + [7328] = {.lex_state = 431}, + [7329] = {.lex_state = 604}, + [7330] = {.lex_state = 243}, + [7331] = {.lex_state = 564}, + [7332] = {.lex_state = 614}, + [7333] = {.lex_state = 611}, + [7334] = {.lex_state = 431}, + [7335] = {.lex_state = 713}, + [7336] = {.lex_state = 1038}, + [7337] = {.lex_state = 745}, + [7338] = {.lex_state = 243}, + [7339] = {.lex_state = 36}, + [7340] = {.lex_state = 243}, + [7341] = {.lex_state = 243}, + [7342] = {.lex_state = 243}, + [7343] = {.lex_state = 616}, + [7344] = {.lex_state = 689}, + [7345] = {.lex_state = 243}, + [7346] = {.lex_state = 431}, + [7347] = {.lex_state = 243}, + [7348] = {.lex_state = 243}, + [7349] = {.lex_state = 1038}, + [7350] = {.lex_state = 428}, + [7351] = {.lex_state = 564}, + [7352] = {.lex_state = 431}, + [7353] = {.lex_state = 1038}, + [7354] = {.lex_state = 243}, + [7355] = {.lex_state = 1038}, + [7356] = {.lex_state = 243}, + [7357] = {.lex_state = 1038}, + [7358] = {.lex_state = 243}, + [7359] = {.lex_state = 243}, + [7360] = {.lex_state = 198}, + [7361] = {.lex_state = 1233}, + [7362] = {.lex_state = 1038}, + [7363] = {.lex_state = 687}, + [7364] = {.lex_state = 243}, + [7365] = {.lex_state = 742}, + [7366] = {.lex_state = 243}, + [7367] = {.lex_state = 243}, + [7368] = {.lex_state = 198}, + [7369] = {.lex_state = 611}, + [7370] = {.lex_state = 243}, + [7371] = {.lex_state = 1039}, + [7372] = {.lex_state = 1028}, + [7373] = {.lex_state = 429}, + [7374] = {.lex_state = 1038}, + [7375] = {.lex_state = 1216}, + [7376] = {.lex_state = 685}, + [7377] = {.lex_state = 243}, + [7378] = {.lex_state = 243}, + [7379] = {.lex_state = 36}, + [7380] = {.lex_state = 1233}, + [7381] = {.lex_state = 431}, + [7382] = {.lex_state = 743}, + [7383] = {.lex_state = 243}, + [7384] = {.lex_state = 243}, + [7385] = {.lex_state = 36}, + [7386] = {.lex_state = 705}, + [7387] = {.lex_state = 715}, + [7388] = {.lex_state = 243}, + [7389] = {.lex_state = 1214}, + [7390] = {.lex_state = 1028}, + [7391] = {.lex_state = 689}, + [7392] = {.lex_state = 243}, + [7393] = {.lex_state = 243}, + [7394] = {.lex_state = 743}, + [7395] = {.lex_state = 243}, + [7396] = {.lex_state = 431}, + [7397] = {.lex_state = 431}, + [7398] = {.lex_state = 243}, + [7399] = {.lex_state = 431}, + [7400] = {.lex_state = 1038}, + [7401] = {.lex_state = 431}, + [7402] = {.lex_state = 705}, + [7403] = {.lex_state = 198}, + [7404] = {.lex_state = 686}, + [7405] = {.lex_state = 243}, + [7406] = {.lex_state = 243}, + [7407] = {.lex_state = 431}, + [7408] = {.lex_state = 243}, + [7409] = {.lex_state = 564}, + [7410] = {.lex_state = 1038}, + [7411] = {.lex_state = 243}, + [7412] = {.lex_state = 243}, + [7413] = {.lex_state = 243}, + [7414] = {.lex_state = 1038}, + [7415] = {.lex_state = 547}, + [7416] = {.lex_state = 715}, + [7417] = {.lex_state = 37}, + [7418] = {.lex_state = 718}, + [7419] = {.lex_state = 747}, + [7420] = {.lex_state = 1038}, + [7421] = {.lex_state = 716}, + [7422] = {.lex_state = 706}, + [7423] = {.lex_state = 561}, + [7424] = {.lex_state = 35}, + [7425] = {.lex_state = 706}, + [7426] = {.lex_state = 1228}, + [7427] = {.lex_state = 605}, + [7428] = {.lex_state = 1038}, + [7429] = {.lex_state = 1038}, + [7430] = {.lex_state = 1232}, + [7431] = {.lex_state = 1038}, + [7432] = {.lex_state = 1038}, + [7433] = {.lex_state = 1228}, + [7434] = {.lex_state = 15}, + [7435] = {.lex_state = 1230}, + [7436] = {.lex_state = 747}, + [7437] = {.lex_state = 547}, + [7438] = {.lex_state = 1246}, + [7439] = {.lex_state = 617}, + [7440] = {.lex_state = 617}, + [7441] = {.lex_state = 747}, + [7442] = {.lex_state = 617}, + [7443] = {.lex_state = 429}, + [7444] = {.lex_state = 15}, + [7445] = {.lex_state = 15}, + [7446] = {.lex_state = 744}, + [7447] = {.lex_state = 15}, + [7448] = {.lex_state = 744}, + [7449] = {.lex_state = 429}, + [7450] = {.lex_state = 747}, + [7451] = {.lex_state = 744}, + [7452] = {.lex_state = 429}, + [7453] = {.lex_state = 429}, + [7454] = {.lex_state = 429}, + [7455] = {.lex_state = 1038}, + [7456] = {.lex_state = 429}, + [7457] = {.lex_state = 429}, + [7458] = {.lex_state = 716}, + [7459] = {.lex_state = 562}, + [7460] = {.lex_state = 567}, + [7461] = {.lex_state = 567}, + [7462] = {.lex_state = 428}, + [7463] = {.lex_state = 428}, + [7464] = {.lex_state = 567}, + [7465] = {.lex_state = 431}, [7466] = {.lex_state = 431}, - [7467] = {.lex_state = 1043}, - [7468] = {.lex_state = 741}, - [7469] = {.lex_state = 431}, - [7470] = {.lex_state = 688}, - [7471] = {.lex_state = 547}, - [7472] = {.lex_state = 614}, - [7473] = {.lex_state = 1258}, - [7474] = {.lex_state = 547}, - [7475] = {.lex_state = 243}, - [7476] = {.lex_state = 243}, - [7477] = {.lex_state = 684}, - [7478] = {.lex_state = 1043}, - [7479] = {.lex_state = 243}, - [7480] = {.lex_state = 34}, - [7481] = {.lex_state = 682}, - [7482] = {.lex_state = 243}, - [7483] = {.lex_state = 243}, - [7484] = {.lex_state = 243}, - [7485] = {.lex_state = 1245}, - [7486] = {.lex_state = 1244}, - [7487] = {.lex_state = 1257}, - [7488] = {.lex_state = 431}, - [7489] = {.lex_state = 741}, - [7490] = {.lex_state = 603}, - [7491] = {.lex_state = 243}, - [7492] = {.lex_state = 243}, - [7493] = {.lex_state = 243}, - [7494] = {.lex_state = 431}, - [7495] = {.lex_state = 33}, - [7496] = {.lex_state = 610}, - [7497] = {.lex_state = 1259}, - [7498] = {.lex_state = 559}, - [7499] = {.lex_state = 431}, - [7500] = {.lex_state = 1245}, - [7501] = {.lex_state = 547}, - [7502] = {.lex_state = 1258}, - [7503] = {.lex_state = 1043}, - [7504] = {.lex_state = 610}, - [7505] = {.lex_state = 547}, - [7506] = {.lex_state = 684}, - [7507] = {.lex_state = 431}, - [7508] = {.lex_state = 682}, - [7509] = {.lex_state = 741}, - [7510] = {.lex_state = 243}, - [7511] = {.lex_state = 431}, - [7512] = {.lex_state = 1242}, - [7513] = {.lex_state = 1043}, - [7514] = {.lex_state = 1256}, - [7515] = {.lex_state = 547}, - [7516] = {.lex_state = 429}, - [7517] = {.lex_state = 547}, - [7518] = {.lex_state = 547}, - [7519] = {.lex_state = 547}, - [7520] = {.lex_state = 431}, - [7521] = {.lex_state = 1043}, - [7522] = {.lex_state = 685}, - [7523] = {.lex_state = 1029}, - [7524] = {.lex_state = 1029}, - [7525] = {.lex_state = 1029}, - [7526] = {.lex_state = 1029}, - [7527] = {.lex_state = 1243}, - [7528] = {.lex_state = 243}, - [7529] = {.lex_state = 1043}, - [7530] = {.lex_state = 740}, - [7531] = {.lex_state = 431}, - [7532] = {.lex_state = 611}, - [7533] = {.lex_state = 604}, - [7534] = {.lex_state = 36}, - [7535] = {.lex_state = 1244}, - [7536] = {.lex_state = 429}, - [7537] = {.lex_state = 713}, - [7538] = {.lex_state = 429}, - [7539] = {.lex_state = 611}, - [7540] = {.lex_state = 1043}, - [7541] = {.lex_state = 604}, - [7542] = {.lex_state = 1245}, - [7543] = {.lex_state = 713}, - [7544] = {.lex_state = 1043}, - [7545] = {.lex_state = 714}, - [7546] = {.lex_state = 35}, - [7547] = {.lex_state = 428}, - [7548] = {.lex_state = 36}, - [7549] = {.lex_state = 569}, - [7550] = {.lex_state = 615}, - [7551] = {.lex_state = 564}, - [7552] = {.lex_state = 564}, - [7553] = {.lex_state = 713}, - [7554] = {.lex_state = 1043}, - [7555] = {.lex_state = 1043}, + [7467] = {.lex_state = 431}, + [7468] = {.lex_state = 431}, + [7469] = {.lex_state = 1214}, + [7470] = {.lex_state = 691}, + [7471] = {.lex_state = 1039}, + [7472] = {.lex_state = 1039}, + [7473] = {.lex_state = 664}, + [7474] = {.lex_state = 1039}, + [7475] = {.lex_state = 1230}, + [7476] = {.lex_state = 1231}, + [7477] = {.lex_state = 1235}, + [7478] = {.lex_state = 1235}, + [7479] = {.lex_state = 1235}, + [7480] = {.lex_state = 717}, + [7481] = {.lex_state = 617}, + [7482] = {.lex_state = 706}, + [7483] = {.lex_state = 706}, + [7484] = {.lex_state = 1216}, + [7485] = {.lex_state = 706}, + [7486] = {.lex_state = 35}, + [7487] = {.lex_state = 1071}, + [7488] = {.lex_state = 1233}, + [7489] = {.lex_state = 1039}, + [7490] = {.lex_state = 1235}, + [7491] = {.lex_state = 547}, + [7492] = {.lex_state = 15}, + [7493] = {.lex_state = 1216}, + [7494] = {.lex_state = 1233}, + [7495] = {.lex_state = 547}, + [7496] = {.lex_state = 1247}, + [7497] = {.lex_state = 1216}, + [7498] = {.lex_state = 1216}, + [7499] = {.lex_state = 15}, + [7500] = {.lex_state = 1233}, + [7501] = {.lex_state = 1234}, + [7502] = {.lex_state = 1214}, + [7503] = {.lex_state = 1234}, + [7504] = {.lex_state = 1234}, + [7505] = {.lex_state = 1039}, + [7506] = {.lex_state = 1247}, + [7507] = {.lex_state = 1247}, + [7508] = {.lex_state = 1247}, + [7509] = {.lex_state = 1039}, + [7510] = {.lex_state = 37}, + [7511] = {.lex_state = 1039}, + [7512] = {.lex_state = 431}, + [7513] = {.lex_state = 37}, + [7514] = {.lex_state = 562}, + [7515] = {.lex_state = 746}, + [7516] = {.lex_state = 1216}, + [7517] = {.lex_state = 3169}, + [7518] = {.lex_state = 562}, + [7519] = {.lex_state = 37}, + [7520] = {.lex_state = 37}, + [7521] = {.lex_state = 1216}, + [7522] = {.lex_state = 562}, + [7523] = {.lex_state = 1216}, + [7524] = {.lex_state = 1216}, + [7525] = {.lex_state = 547}, + [7526] = {.lex_state = 691}, + [7527] = {.lex_state = 691}, + [7528] = {.lex_state = 1234}, + [7529] = {.lex_state = 604}, + [7530] = {.lex_state = 690}, + [7531] = {.lex_state = 661}, + [7532] = {.lex_state = 691}, + [7533] = {.lex_state = 1216}, + [7534] = {.lex_state = 1216}, + [7535] = {.lex_state = 1216}, + [7536] = {.lex_state = 547}, + [7537] = {.lex_state = 134}, + [7538] = {.lex_state = 604}, + [7539] = {.lex_state = 1038}, + [7540] = {.lex_state = 1038}, + [7541] = {.lex_state = 1038}, + [7542] = {.lex_state = 1038}, + [7543] = {.lex_state = 1038}, + [7544] = {.lex_state = 1038}, + [7545] = {.lex_state = 1234}, + [7546] = {.lex_state = 1247}, + [7547] = {.lex_state = 690}, + [7548] = {.lex_state = 1234}, + [7549] = {.lex_state = 1230}, + [7550] = {.lex_state = 690}, + [7551] = {.lex_state = 1233}, + [7552] = {.lex_state = 716}, + [7553] = {.lex_state = 1234}, + [7554] = {.lex_state = 1038}, + [7555] = {.lex_state = 431}, [7556] = {.lex_state = 431}, - [7557] = {.lex_state = 1043}, - [7558] = {.lex_state = 1043}, - [7559] = {.lex_state = 1043}, - [7560] = {.lex_state = 1043}, - [7561] = {.lex_state = 1043}, + [7557] = {.lex_state = 619}, + [7558] = {.lex_state = 715}, + [7559] = {.lex_state = 37}, + [7560] = {.lex_state = 744}, + [7561] = {.lex_state = 1038}, [7562] = {.lex_state = 689}, - [7563] = {.lex_state = 198}, - [7564] = {.lex_state = 198}, - [7565] = {.lex_state = 198}, - [7566] = {.lex_state = 1043}, - [7567] = {.lex_state = 1043}, - [7568] = {.lex_state = 1043}, - [7569] = {.lex_state = 1043}, - [7570] = {.lex_state = 1261}, - [7571] = {.lex_state = 1258}, - [7572] = {.lex_state = 1258}, - [7573] = {.lex_state = 1258}, - [7574] = {.lex_state = 1043}, - [7575] = {.lex_state = 1043}, - [7576] = {.lex_state = 1043}, - [7577] = {.lex_state = 713}, - [7578] = {.lex_state = 1043}, - [7579] = {.lex_state = 428}, - [7580] = {.lex_state = 431}, - [7581] = {.lex_state = 431}, - [7582] = {.lex_state = 36}, - [7583] = {.lex_state = 1043}, - [7584] = {.lex_state = 1043}, - [7585] = {.lex_state = 1043}, + [7563] = {.lex_state = 619}, + [7564] = {.lex_state = 15}, + [7565] = {.lex_state = 715}, + [7566] = {.lex_state = 37}, + [7567] = {.lex_state = 547}, + [7568] = {.lex_state = 1214}, + [7569] = {.lex_state = 619}, + [7570] = {.lex_state = 619}, + [7571] = {.lex_state = 563}, + [7572] = {.lex_state = 618}, + [7573] = {.lex_state = 146}, + [7574] = {.lex_state = 429}, + [7575] = {.lex_state = 719}, + [7576] = {.lex_state = 37}, + [7577] = {.lex_state = 431}, + [7578] = {.lex_state = 1234}, + [7579] = {.lex_state = 431}, + [7580] = {.lex_state = 429}, + [7581] = {.lex_state = 429}, + [7582] = {.lex_state = 429}, + [7583] = {.lex_state = 429}, + [7584] = {.lex_state = 719}, + [7585] = {.lex_state = 692}, [7586] = {.lex_state = 431}, - [7587] = {.lex_state = 1043}, - [7588] = {.lex_state = 243}, - [7589] = {.lex_state = 428}, - [7590] = {.lex_state = 243}, - [7591] = {.lex_state = 243}, - [7592] = {.lex_state = 198}, - [7593] = {.lex_state = 1043}, - [7594] = {.lex_state = 743}, - [7595] = {.lex_state = 1029}, - [7596] = {.lex_state = 686}, - [7597] = {.lex_state = 243}, - [7598] = {.lex_state = 243}, - [7599] = {.lex_state = 243}, - [7600] = {.lex_state = 689}, - [7601] = {.lex_state = 243}, - [7602] = {.lex_state = 243}, - [7603] = {.lex_state = 431}, - [7604] = {.lex_state = 428}, - [7605] = {.lex_state = 431}, - [7606] = {.lex_state = 1043}, - [7607] = {.lex_state = 431}, - [7608] = {.lex_state = 428}, - [7609] = {.lex_state = 1043}, - [7610] = {.lex_state = 243}, - [7611] = {.lex_state = 243}, - [7612] = {.lex_state = 1043}, - [7613] = {.lex_state = 1246}, - [7614] = {.lex_state = 1043}, - [7615] = {.lex_state = 1043}, - [7616] = {.lex_state = 1043}, - [7617] = {.lex_state = 1043}, - [7618] = {.lex_state = 1244}, - [7619] = {.lex_state = 431}, - [7620] = {.lex_state = 1043}, - [7621] = {.lex_state = 431}, - [7622] = {.lex_state = 1043}, - [7623] = {.lex_state = 1043}, - [7624] = {.lex_state = 431}, - [7625] = {.lex_state = 1246}, - [7626] = {.lex_state = 431}, - [7627] = {.lex_state = 1246}, - [7628] = {.lex_state = 685}, - [7629] = {.lex_state = 1246}, - [7630] = {.lex_state = 431}, - [7631] = {.lex_state = 431}, - [7632] = {.lex_state = 431}, - [7633] = {.lex_state = 134}, - [7634] = {.lex_state = 714}, - [7635] = {.lex_state = 243}, - [7636] = {.lex_state = 243}, - [7637] = {.lex_state = 198}, - [7638] = {.lex_state = 714}, - [7639] = {.lex_state = 243}, - [7640] = {.lex_state = 243}, - [7641] = {.lex_state = 243}, - [7642] = {.lex_state = 243}, - [7643] = {.lex_state = 1263}, - [7644] = {.lex_state = 745}, - [7645] = {.lex_state = 198}, - [7646] = {.lex_state = 431}, - [7647] = {.lex_state = 686}, - [7648] = {.lex_state = 1258}, - [7649] = {.lex_state = 243}, - [7650] = {.lex_state = 243}, - [7651] = {.lex_state = 243}, - [7652] = {.lex_state = 243}, - [7653] = {.lex_state = 1263}, - [7654] = {.lex_state = 243}, - [7655] = {.lex_state = 243}, - [7656] = {.lex_state = 243}, - [7657] = {.lex_state = 243}, - [7658] = {.lex_state = 243}, - [7659] = {.lex_state = 243}, - [7660] = {.lex_state = 243}, - [7661] = {.lex_state = 243}, - [7662] = {.lex_state = 243}, - [7663] = {.lex_state = 243}, - [7664] = {.lex_state = 243}, - [7665] = {.lex_state = 243}, - [7666] = {.lex_state = 743}, - [7667] = {.lex_state = 243}, - [7668] = {.lex_state = 243}, - [7669] = {.lex_state = 243}, - [7670] = {.lex_state = 243}, - [7671] = {.lex_state = 198}, - [7672] = {.lex_state = 243}, - [7673] = {.lex_state = 243}, + [7587] = {.lex_state = 1039}, + [7588] = {.lex_state = 748}, + [7589] = {.lex_state = 706}, + [7590] = {.lex_state = 1248}, + [7591] = {.lex_state = 1232}, + [7592] = {.lex_state = 721}, + [7593] = {.lex_state = 431}, + [7594] = {.lex_state = 15}, + [7595] = {.lex_state = 1235}, + [7596] = {.lex_state = 15}, + [7597] = {.lex_state = 547}, + [7598] = {.lex_state = 1234}, + [7599] = {.lex_state = 120}, + [7600] = {.lex_state = 2565}, + [7601] = {.lex_state = 431}, + [7602] = {.lex_state = 1248}, + [7603] = {.lex_state = 1248}, + [7604] = {.lex_state = 563}, + [7605] = {.lex_state = 748}, + [7606] = {.lex_state = 431}, + [7607] = {.lex_state = 547}, + [7608] = {.lex_state = 547}, + [7609] = {.lex_state = 1234}, + [7610] = {.lex_state = 37}, + [7611] = {.lex_state = 120}, + [7612] = {.lex_state = 431}, + [7613] = {.lex_state = 120}, + [7614] = {.lex_state = 120}, + [7615] = {.lex_state = 120}, + [7616] = {.lex_state = 1247}, + [7617] = {.lex_state = 431}, + [7618] = {.lex_state = 120}, + [7619] = {.lex_state = 120}, + [7620] = {.lex_state = 120}, + [7621] = {.lex_state = 607}, + [7622] = {.lex_state = 120}, + [7623] = {.lex_state = 563}, + [7624] = {.lex_state = 20}, + [7625] = {.lex_state = 1247}, + [7626] = {.lex_state = 1247}, + [7627] = {.lex_state = 37}, + [7628] = {.lex_state = 238}, + [7629] = {.lex_state = 606}, + [7630] = {.lex_state = 561}, + [7631] = {.lex_state = 120}, + [7632] = {.lex_state = 1234}, + [7633] = {.lex_state = 120}, + [7634] = {.lex_state = 35}, + [7635] = {.lex_state = 1230}, + [7636] = {.lex_state = 1028}, + [7637] = {.lex_state = 1084}, + [7638] = {.lex_state = 1240}, + [7639] = {.lex_state = 620}, + [7640] = {.lex_state = 1234}, + [7641] = {.lex_state = 1216}, + [7642] = {.lex_state = 431}, + [7643] = {.lex_state = 431}, + [7644] = {.lex_state = 1039}, + [7645] = {.lex_state = 431}, + [7646] = {.lex_state = 692}, + [7647] = {.lex_state = 1216}, + [7648] = {.lex_state = 429}, + [7649] = {.lex_state = 120}, + [7650] = {.lex_state = 120}, + [7651] = {.lex_state = 120}, + [7652] = {.lex_state = 1216}, + [7653] = {.lex_state = 706}, + [7654] = {.lex_state = 1216}, + [7655] = {.lex_state = 721}, + [7656] = {.lex_state = 1028}, + [7657] = {.lex_state = 1236}, + [7658] = {.lex_state = 1039}, + [7659] = {.lex_state = 607}, + [7660] = {.lex_state = 3169}, + [7661] = {.lex_state = 748}, + [7662] = {.lex_state = 749}, + [7663] = {.lex_state = 1248}, + [7664] = {.lex_state = 561}, + [7665] = {.lex_state = 1039}, + [7666] = {.lex_state = 1038}, + [7667] = {.lex_state = 431}, + [7668] = {.lex_state = 431}, + [7669] = {.lex_state = 748}, + [7670] = {.lex_state = 431}, + [7671] = {.lex_state = 431}, + [7672] = {.lex_state = 607}, + [7673] = {.lex_state = 429}, [7674] = {.lex_state = 429}, [7675] = {.lex_state = 429}, - [7676] = {.lex_state = 243}, - [7677] = {.lex_state = 243}, - [7678] = {.lex_state = 243}, - [7679] = {.lex_state = 243}, - [7680] = {.lex_state = 1245}, - [7681] = {.lex_state = 243}, - [7682] = {.lex_state = 243}, - [7683] = {.lex_state = 1043}, - [7684] = {.lex_state = 1043}, - [7685] = {.lex_state = 243}, - [7686] = {.lex_state = 243}, - [7687] = {.lex_state = 243}, - [7688] = {.lex_state = 243}, - [7689] = {.lex_state = 243}, - [7690] = {.lex_state = 243}, - [7691] = {.lex_state = 1263}, - [7692] = {.lex_state = 243}, - [7693] = {.lex_state = 243}, - [7694] = {.lex_state = 243}, - [7695] = {.lex_state = 243}, - [7696] = {.lex_state = 243}, - [7697] = {.lex_state = 243}, - [7698] = {.lex_state = 243}, - [7699] = {.lex_state = 243}, - [7700] = {.lex_state = 604}, - [7701] = {.lex_state = 742}, - [7702] = {.lex_state = 243}, - [7703] = {.lex_state = 243}, - [7704] = {.lex_state = 1246}, + [7676] = {.lex_state = 40}, + [7677] = {.lex_state = 185}, + [7678] = {.lex_state = 1038}, + [7679] = {.lex_state = 1028}, + [7680] = {.lex_state = 1028}, + [7681] = {.lex_state = 1028}, + [7682] = {.lex_state = 1238}, + [7683] = {.lex_state = 749}, + [7684] = {.lex_state = 1230}, + [7685] = {.lex_state = 431}, + [7686] = {.lex_state = 120}, + [7687] = {.lex_state = 749}, + [7688] = {.lex_state = 1028}, + [7689] = {.lex_state = 429}, + [7690] = {.lex_state = 749}, + [7691] = {.lex_state = 547}, + [7692] = {.lex_state = 547}, + [7693] = {.lex_state = 1039}, + [7694] = {.lex_state = 1039}, + [7695] = {.lex_state = 1248}, + [7696] = {.lex_state = 563}, + [7697] = {.lex_state = 429}, + [7698] = {.lex_state = 120}, + [7699] = {.lex_state = 1039}, + [7700] = {.lex_state = 1076}, + [7701] = {.lex_state = 1039}, + [7702] = {.lex_state = 1232}, + [7703] = {.lex_state = 1234}, + [7704] = {.lex_state = 431}, [7705] = {.lex_state = 431}, - [7706] = {.lex_state = 243}, - [7707] = {.lex_state = 243}, - [7708] = {.lex_state = 243}, - [7709] = {.lex_state = 243}, - [7710] = {.lex_state = 243}, - [7711] = {.lex_state = 243}, - [7712] = {.lex_state = 243}, - [7713] = {.lex_state = 243}, - [7714] = {.lex_state = 243}, - [7715] = {.lex_state = 243}, - [7716] = {.lex_state = 1245}, - [7717] = {.lex_state = 243}, - [7718] = {.lex_state = 243}, - [7719] = {.lex_state = 243}, - [7720] = {.lex_state = 243}, - [7721] = {.lex_state = 243}, - [7722] = {.lex_state = 243}, - [7723] = {.lex_state = 36}, - [7724] = {.lex_state = 243}, - [7725] = {.lex_state = 243}, - [7726] = {.lex_state = 243}, - [7727] = {.lex_state = 243}, - [7728] = {.lex_state = 243}, - [7729] = {.lex_state = 686}, - [7730] = {.lex_state = 243}, - [7731] = {.lex_state = 243}, - [7732] = {.lex_state = 243}, - [7733] = {.lex_state = 243}, - [7734] = {.lex_state = 243}, - [7735] = {.lex_state = 198}, - [7736] = {.lex_state = 198}, - [7737] = {.lex_state = 198}, - [7738] = {.lex_state = 1245}, - [7739] = {.lex_state = 243}, - [7740] = {.lex_state = 1246}, - [7741] = {.lex_state = 243}, - [7742] = {.lex_state = 243}, - [7743] = {.lex_state = 198}, - [7744] = {.lex_state = 198}, - [7745] = {.lex_state = 243}, - [7746] = {.lex_state = 243}, - [7747] = {.lex_state = 243}, - [7748] = {.lex_state = 198}, - [7749] = {.lex_state = 716}, - [7750] = {.lex_state = 243}, - [7751] = {.lex_state = 243}, - [7752] = {.lex_state = 243}, - [7753] = {.lex_state = 198}, - [7754] = {.lex_state = 429}, - [7755] = {.lex_state = 429}, - [7756] = {.lex_state = 243}, - [7757] = {.lex_state = 243}, - [7758] = {.lex_state = 243}, - [7759] = {.lex_state = 429}, - [7760] = {.lex_state = 604}, - [7761] = {.lex_state = 243}, - [7762] = {.lex_state = 243}, - [7763] = {.lex_state = 243}, - [7764] = {.lex_state = 559}, - [7765] = {.lex_state = 1246}, - [7766] = {.lex_state = 1260}, - [7767] = {.lex_state = 243}, - [7768] = {.lex_state = 243}, - [7769] = {.lex_state = 243}, - [7770] = {.lex_state = 243}, - [7771] = {.lex_state = 657}, - [7772] = {.lex_state = 243}, - [7773] = {.lex_state = 1259}, - [7774] = {.lex_state = 243}, - [7775] = {.lex_state = 243}, - [7776] = {.lex_state = 243}, - [7777] = {.lex_state = 564}, - [7778] = {.lex_state = 243}, - [7779] = {.lex_state = 564}, - [7780] = {.lex_state = 243}, - [7781] = {.lex_state = 243}, - [7782] = {.lex_state = 743}, - [7783] = {.lex_state = 705}, - [7784] = {.lex_state = 243}, - [7785] = {.lex_state = 243}, - [7786] = {.lex_state = 243}, - [7787] = {.lex_state = 1256}, - [7788] = {.lex_state = 243}, - [7789] = {.lex_state = 431}, - [7790] = {.lex_state = 243}, - [7791] = {.lex_state = 243}, - [7792] = {.lex_state = 1276}, - [7793] = {.lex_state = 1258}, - [7794] = {.lex_state = 1044}, - [7795] = {.lex_state = 611}, - [7796] = {.lex_state = 743}, - [7797] = {.lex_state = 742}, - [7798] = {.lex_state = 1043}, - [7799] = {.lex_state = 243}, - [7800] = {.lex_state = 715}, - [7801] = {.lex_state = 1043}, - [7802] = {.lex_state = 614}, - [7803] = {.lex_state = 1263}, - [7804] = {.lex_state = 1029}, - [7805] = {.lex_state = 560}, - [7806] = {.lex_state = 1029}, - [7807] = {.lex_state = 1029}, - [7808] = {.lex_state = 614}, - [7809] = {.lex_state = 742}, - [7810] = {.lex_state = 1043}, - [7811] = {.lex_state = 1043}, - [7812] = {.lex_state = 1043}, - [7813] = {.lex_state = 1043}, - [7814] = {.lex_state = 1043}, - [7815] = {.lex_state = 1043}, - [7816] = {.lex_state = 564}, - [7817] = {.lex_state = 614}, - [7818] = {.lex_state = 1043}, - [7819] = {.lex_state = 616}, - [7820] = {.lex_state = 705}, - [7821] = {.lex_state = 1043}, - [7822] = {.lex_state = 705}, - [7823] = {.lex_state = 1043}, - [7824] = {.lex_state = 431}, - [7825] = {.lex_state = 705}, - [7826] = {.lex_state = 611}, - [7827] = {.lex_state = 714}, - [7828] = {.lex_state = 689}, - [7829] = {.lex_state = 1258}, - [7830] = {.lex_state = 604}, - [7831] = {.lex_state = 559}, - [7832] = {.lex_state = 1244}, - [7833] = {.lex_state = 742}, - [7834] = {.lex_state = 685}, - [7835] = {.lex_state = 1258}, - [7836] = {.lex_state = 429}, - [7837] = {.lex_state = 429}, - [7838] = {.lex_state = 687}, - [7839] = {.lex_state = 567}, - [7840] = {.lex_state = 1256}, - [7841] = {.lex_state = 243}, - [7842] = {.lex_state = 243}, - [7843] = {.lex_state = 685}, - [7844] = {.lex_state = 431}, - [7845] = {.lex_state = 1029}, - [7846] = {.lex_state = 431}, - [7847] = {.lex_state = 431}, - [7848] = {.lex_state = 431}, - [7849] = {.lex_state = 243}, - [7850] = {.lex_state = 243}, - [7851] = {.lex_state = 35}, - [7852] = {.lex_state = 1044}, - [7853] = {.lex_state = 1260}, - [7854] = {.lex_state = 37}, - [7855] = {.lex_state = 1277}, - [7856] = {.lex_state = 617}, - [7857] = {.lex_state = 619}, - [7858] = {.lex_state = 1043}, - [7859] = {.lex_state = 431}, - [7860] = {.lex_state = 706}, - [7861] = {.lex_state = 706}, - [7862] = {.lex_state = 706}, - [7863] = {.lex_state = 37}, - [7864] = {.lex_state = 1277}, - [7865] = {.lex_state = 691}, - [7866] = {.lex_state = 716}, - [7867] = {.lex_state = 431}, - [7868] = {.lex_state = 1264}, - [7869] = {.lex_state = 1277}, - [7870] = {.lex_state = 1277}, - [7871] = {.lex_state = 661}, - [7872] = {.lex_state = 1277}, - [7873] = {.lex_state = 37}, - [7874] = {.lex_state = 619}, - [7875] = {.lex_state = 1264}, - [7876] = {.lex_state = 547}, - [7877] = {.lex_state = 715}, - [7878] = {.lex_state = 1265}, - [7879] = {.lex_state = 562}, - [7880] = {.lex_state = 567}, - [7881] = {.lex_state = 547}, - [7882] = {.lex_state = 1087}, - [7883] = {.lex_state = 1263}, - [7884] = {.lex_state = 431}, - [7885] = {.lex_state = 1264}, - [7886] = {.lex_state = 747}, - [7887] = {.lex_state = 747}, - [7888] = {.lex_state = 547}, - [7889] = {.lex_state = 605}, - [7890] = {.lex_state = 1246}, - [7891] = {.lex_state = 717}, - [7892] = {.lex_state = 37}, - [7893] = {.lex_state = 567}, - [7894] = {.lex_state = 431}, - [7895] = {.lex_state = 619}, + [7706] = {.lex_state = 721}, + [7707] = {.lex_state = 547}, + [7708] = {.lex_state = 1230}, + [7709] = {.lex_state = 1039}, + [7710] = {.lex_state = 707}, + [7711] = {.lex_state = 1247}, + [7712] = {.lex_state = 563}, + [7713] = {.lex_state = 547}, + [7714] = {.lex_state = 428}, + [7715] = {.lex_state = 15}, + [7716] = {.lex_state = 690}, + [7717] = {.lex_state = 547}, + [7718] = {.lex_state = 618}, + [7719] = {.lex_state = 429}, + [7720] = {.lex_state = 547}, + [7721] = {.lex_state = 692}, + [7722] = {.lex_state = 575}, + [7723] = {.lex_state = 429}, + [7724] = {.lex_state = 547}, + [7725] = {.lex_state = 547}, + [7726] = {.lex_state = 547}, + [7727] = {.lex_state = 547}, + [7728] = {.lex_state = 1038}, + [7729] = {.lex_state = 431}, + [7730] = {.lex_state = 547}, + [7731] = {.lex_state = 1039}, + [7732] = {.lex_state = 618}, + [7733] = {.lex_state = 547}, + [7734] = {.lex_state = 692}, + [7735] = {.lex_state = 15}, + [7736] = {.lex_state = 1236}, + [7737] = {.lex_state = 547}, + [7738] = {.lex_state = 620}, + [7739] = {.lex_state = 692}, + [7740] = {.lex_state = 563}, + [7741] = {.lex_state = 1232}, + [7742] = {.lex_state = 120}, + [7743] = {.lex_state = 428}, + [7744] = {.lex_state = 1234}, + [7745] = {.lex_state = 547}, + [7746] = {.lex_state = 431}, + [7747] = {.lex_state = 431}, + [7748] = {.lex_state = 431}, + [7749] = {.lex_state = 547}, + [7750] = {.lex_state = 547}, + [7751] = {.lex_state = 547}, + [7752] = {.lex_state = 1234}, + [7753] = {.lex_state = 120}, + [7754] = {.lex_state = 547}, + [7755] = {.lex_state = 1039}, + [7756] = {.lex_state = 428}, + [7757] = {.lex_state = 431}, + [7758] = {.lex_state = 547}, + [7759] = {.lex_state = 431}, + [7760] = {.lex_state = 607}, + [7761] = {.lex_state = 719}, + [7762] = {.lex_state = 431}, + [7763] = {.lex_state = 1038}, + [7764] = {.lex_state = 1248}, + [7765] = {.lex_state = 1038}, + [7766] = {.lex_state = 547}, + [7767] = {.lex_state = 1071}, + [7768] = {.lex_state = 1236}, + [7769] = {.lex_state = 431}, + [7770] = {.lex_state = 721}, + [7771] = {.lex_state = 1028}, + [7772] = {.lex_state = 1038}, + [7773] = {.lex_state = 1038}, + [7774] = {.lex_state = 547}, + [7775] = {.lex_state = 547}, + [7776] = {.lex_state = 547}, + [7777] = {.lex_state = 547}, + [7778] = {.lex_state = 1214}, + [7779] = {.lex_state = 3169}, + [7780] = {.lex_state = 661}, + [7781] = {.lex_state = 1236}, + [7782] = {.lex_state = 618}, + [7783] = {.lex_state = 690}, + [7784] = {.lex_state = 661}, + [7785] = {.lex_state = 431}, + [7786] = {.lex_state = 547}, + [7787] = {.lex_state = 431}, + [7788] = {.lex_state = 3170}, + [7789] = {.lex_state = 1238}, + [7790] = {.lex_state = 431}, + [7791] = {.lex_state = 620}, + [7792] = {.lex_state = 40}, + [7793] = {.lex_state = 661}, + [7794] = {.lex_state = 40}, + [7795] = {.lex_state = 618}, + [7796] = {.lex_state = 1234}, + [7797] = {.lex_state = 1248}, + [7798] = {.lex_state = 1039}, + [7799] = {.lex_state = 1235}, + [7800] = {.lex_state = 40}, + [7801] = {.lex_state = 620}, + [7802] = {.lex_state = 1235}, + [7803] = {.lex_state = 1234}, + [7804] = {.lex_state = 15}, + [7805] = {.lex_state = 431}, + [7806] = {.lex_state = 1234}, + [7807] = {.lex_state = 1236}, + [7808] = {.lex_state = 1236}, + [7809] = {.lex_state = 1235}, + [7810] = {.lex_state = 37}, + [7811] = {.lex_state = 563}, + [7812] = {.lex_state = 620}, + [7813] = {.lex_state = 1236}, + [7814] = {.lex_state = 719}, + [7815] = {.lex_state = 748}, + [7816] = {.lex_state = 40}, + [7817] = {.lex_state = 40}, + [7818] = {.lex_state = 1247}, + [7819] = {.lex_state = 1249}, + [7820] = {.lex_state = 608}, + [7821] = {.lex_state = 1248}, + [7822] = {.lex_state = 608}, + [7823] = {.lex_state = 563}, + [7824] = {.lex_state = 428}, + [7825] = {.lex_state = 695}, + [7826] = {.lex_state = 750}, + [7827] = {.lex_state = 428}, + [7828] = {.lex_state = 1038}, + [7829] = {.lex_state = 1038}, + [7830] = {.lex_state = 547}, + [7831] = {.lex_state = 1038}, + [7832] = {.lex_state = 547}, + [7833] = {.lex_state = 356}, + [7834] = {.lex_state = 355}, + [7835] = {.lex_state = 547}, + [7836] = {.lex_state = 547}, + [7837] = {.lex_state = 1038}, + [7838] = {.lex_state = 547}, + [7839] = {.lex_state = 1232}, + [7840] = {.lex_state = 1038}, + [7841] = {.lex_state = 1165}, + [7842] = {.lex_state = 3170}, + [7843] = {.lex_state = 1230}, + [7844] = {.lex_state = 238}, + [7845] = {.lex_state = 134}, + [7846] = {.lex_state = 134}, + [7847] = {.lex_state = 134}, + [7848] = {.lex_state = 134}, + [7849] = {.lex_state = 608}, + [7850] = {.lex_state = 563}, + [7851] = {.lex_state = 1084}, + [7852] = {.lex_state = 178}, + [7853] = {.lex_state = 178}, + [7854] = {.lex_state = 178}, + [7855] = {.lex_state = 178}, + [7856] = {.lex_state = 178}, + [7857] = {.lex_state = 178}, + [7858] = {.lex_state = 547}, + [7859] = {.lex_state = 1028}, + [7860] = {.lex_state = 561}, + [7861] = {.lex_state = 3170}, + [7862] = {.lex_state = 1248}, + [7863] = {.lex_state = 722}, + [7864] = {.lex_state = 608}, + [7865] = {.lex_state = 563}, + [7866] = {.lex_state = 547}, + [7867] = {.lex_state = 1236}, + [7868] = {.lex_state = 608}, + [7869] = {.lex_state = 563}, + [7870] = {.lex_state = 431}, + [7871] = {.lex_state = 431}, + [7872] = {.lex_state = 1039}, + [7873] = {.lex_state = 1039}, + [7874] = {.lex_state = 576}, + [7875] = {.lex_state = 356}, + [7876] = {.lex_state = 1248}, + [7877] = {.lex_state = 630}, + [7878] = {.lex_state = 1248}, + [7879] = {.lex_state = 1243}, + [7880] = {.lex_state = 134}, + [7881] = {.lex_state = 722}, + [7882] = {.lex_state = 576}, + [7883] = {.lex_state = 547}, + [7884] = {.lex_state = 1232}, + [7885] = {.lex_state = 692}, + [7886] = {.lex_state = 1249}, + [7887] = {.lex_state = 431}, + [7888] = {.lex_state = 1038}, + [7889] = {.lex_state = 662}, + [7890] = {.lex_state = 431}, + [7891] = {.lex_state = 431}, + [7892] = {.lex_state = 24}, + [7893] = {.lex_state = 1038}, + [7894] = {.lex_state = 1028}, + [7895] = {.lex_state = 1028}, [7896] = {.lex_state = 547}, - [7897] = {.lex_state = 690}, - [7898] = {.lex_state = 1246}, - [7899] = {.lex_state = 547}, - [7900] = {.lex_state = 547}, - [7901] = {.lex_state = 604}, - [7902] = {.lex_state = 134}, - [7903] = {.lex_state = 1258}, - [7904] = {.lex_state = 428}, - [7905] = {.lex_state = 428}, - [7906] = {.lex_state = 431}, - [7907] = {.lex_state = 431}, - [7908] = {.lex_state = 15}, - [7909] = {.lex_state = 718}, - [7910] = {.lex_state = 1043}, - [7911] = {.lex_state = 1244}, - [7912] = {.lex_state = 1264}, - [7913] = {.lex_state = 716}, - [7914] = {.lex_state = 1276}, - [7915] = {.lex_state = 715}, - [7916] = {.lex_state = 567}, - [7917] = {.lex_state = 1044}, - [7918] = {.lex_state = 37}, - [7919] = {.lex_state = 1263}, - [7920] = {.lex_state = 429}, - [7921] = {.lex_state = 1264}, - [7922] = {.lex_state = 747}, - [7923] = {.lex_state = 706}, - [7924] = {.lex_state = 1044}, - [7925] = {.lex_state = 1246}, - [7926] = {.lex_state = 15}, - [7927] = {.lex_state = 690}, - [7928] = {.lex_state = 429}, - [7929] = {.lex_state = 15}, - [7930] = {.lex_state = 15}, - [7931] = {.lex_state = 691}, - [7932] = {.lex_state = 3209}, - [7933] = {.lex_state = 1044}, - [7934] = {.lex_state = 604}, - [7935] = {.lex_state = 1260}, - [7936] = {.lex_state = 561}, - [7937] = {.lex_state = 1262}, - [7938] = {.lex_state = 746}, - [7939] = {.lex_state = 1246}, - [7940] = {.lex_state = 1044}, - [7941] = {.lex_state = 429}, - [7942] = {.lex_state = 1264}, - [7943] = {.lex_state = 1043}, - [7944] = {.lex_state = 429}, - [7945] = {.lex_state = 1043}, - [7946] = {.lex_state = 1246}, - [7947] = {.lex_state = 15}, - [7948] = {.lex_state = 1244}, - [7949] = {.lex_state = 37}, - [7950] = {.lex_state = 1246}, - [7951] = {.lex_state = 429}, - [7952] = {.lex_state = 1043}, - [7953] = {.lex_state = 1043}, - [7954] = {.lex_state = 562}, - [7955] = {.lex_state = 1261}, - [7956] = {.lex_state = 1043}, - [7957] = {.lex_state = 1043}, - [7958] = {.lex_state = 1043}, - [7959] = {.lex_state = 1043}, - [7960] = {.lex_state = 744}, - [7961] = {.lex_state = 617}, - [7962] = {.lex_state = 15}, - [7963] = {.lex_state = 1043}, - [7964] = {.lex_state = 15}, - [7965] = {.lex_state = 431}, - [7966] = {.lex_state = 691}, - [7967] = {.lex_state = 617}, - [7968] = {.lex_state = 747}, - [7969] = {.lex_state = 664}, - [7970] = {.lex_state = 716}, - [7971] = {.lex_state = 617}, - [7972] = {.lex_state = 35}, - [7973] = {.lex_state = 619}, - [7974] = {.lex_state = 1043}, - [7975] = {.lex_state = 706}, - [7976] = {.lex_state = 562}, - [7977] = {.lex_state = 1043}, - [7978] = {.lex_state = 744}, - [7979] = {.lex_state = 690}, - [7980] = {.lex_state = 1043}, - [7981] = {.lex_state = 1260}, - [7982] = {.lex_state = 1263}, - [7983] = {.lex_state = 1246}, - [7984] = {.lex_state = 1265}, - [7985] = {.lex_state = 1246}, - [7986] = {.lex_state = 744}, - [7987] = {.lex_state = 547}, - [7988] = {.lex_state = 689}, - [7989] = {.lex_state = 691}, - [7990] = {.lex_state = 1263}, - [7991] = {.lex_state = 1265}, - [7992] = {.lex_state = 429}, - [7993] = {.lex_state = 1044}, - [7994] = {.lex_state = 715}, - [7995] = {.lex_state = 1246}, - [7996] = {.lex_state = 37}, - [7997] = {.lex_state = 1044}, - [7998] = {.lex_state = 1244}, - [7999] = {.lex_state = 744}, - [8000] = {.lex_state = 429}, - [8001] = {.lex_state = 1246}, - [8002] = {.lex_state = 1258}, - [8003] = {.lex_state = 1246}, - [8004] = {.lex_state = 1264}, - [8005] = {.lex_state = 1265}, - [8006] = {.lex_state = 562}, - [8007] = {.lex_state = 1278}, - [8008] = {.lex_state = 3209}, - [8009] = {.lex_state = 431}, - [8010] = {.lex_state = 1044}, - [8011] = {.lex_state = 431}, - [8012] = {.lex_state = 120}, - [8013] = {.lex_state = 431}, - [8014] = {.lex_state = 120}, - [8015] = {.lex_state = 120}, - [8016] = {.lex_state = 1244}, - [8017] = {.lex_state = 561}, - [8018] = {.lex_state = 120}, - [8019] = {.lex_state = 1277}, - [8020] = {.lex_state = 1264}, - [8021] = {.lex_state = 429}, - [8022] = {.lex_state = 429}, - [8023] = {.lex_state = 2603}, - [8024] = {.lex_state = 547}, - [8025] = {.lex_state = 719}, - [8026] = {.lex_state = 1043}, - [8027] = {.lex_state = 1278}, - [8028] = {.lex_state = 1278}, + [7897] = {.lex_state = 1076}, + [7898] = {.lex_state = 1038}, + [7899] = {.lex_state = 1028}, + [7900] = {.lex_state = 1028}, + [7901] = {.lex_state = 1039}, + [7902] = {.lex_state = 547}, + [7903] = {.lex_state = 722}, + [7904] = {.lex_state = 547}, + [7905] = {.lex_state = 1248}, + [7906] = {.lex_state = 1248}, + [7907] = {.lex_state = 692}, + [7908] = {.lex_state = 608}, + [7909] = {.lex_state = 1038}, + [7910] = {.lex_state = 1234}, + [7911] = {.lex_state = 1039}, + [7912] = {.lex_state = 547}, + [7913] = {.lex_state = 547}, + [7914] = {.lex_state = 750}, + [7915] = {.lex_state = 662}, + [7916] = {.lex_state = 750}, + [7917] = {.lex_state = 750}, + [7918] = {.lex_state = 774}, + [7919] = {.lex_state = 662}, + [7920] = {.lex_state = 1038}, + [7921] = {.lex_state = 1038}, + [7922] = {.lex_state = 576}, + [7923] = {.lex_state = 662}, + [7924] = {.lex_state = 1038}, + [7925] = {.lex_state = 662}, + [7926] = {.lex_state = 38}, + [7927] = {.lex_state = 1028}, + [7928] = {.lex_state = 1234}, + [7929] = {.lex_state = 1238}, + [7930] = {.lex_state = 751}, + [7931] = {.lex_state = 1028}, + [7932] = {.lex_state = 720}, + [7933] = {.lex_state = 1038}, + [7934] = {.lex_state = 720}, + [7935] = {.lex_state = 1038}, + [7936] = {.lex_state = 1038}, + [7937] = {.lex_state = 576}, + [7938] = {.lex_state = 576}, + [7939] = {.lex_state = 620}, + [7940] = {.lex_state = 2565}, + [7941] = {.lex_state = 431}, + [7942] = {.lex_state = 3169}, + [7943] = {.lex_state = 608}, + [7944] = {.lex_state = 1038}, + [7945] = {.lex_state = 1236}, + [7946] = {.lex_state = 720}, + [7947] = {.lex_state = 1074}, + [7948] = {.lex_state = 431}, + [7949] = {.lex_state = 1234}, + [7950] = {.lex_state = 1038}, + [7951] = {.lex_state = 1038}, + [7952] = {.lex_state = 1038}, + [7953] = {.lex_state = 1038}, + [7954] = {.lex_state = 1038}, + [7955] = {.lex_state = 1038}, + [7956] = {.lex_state = 1038}, + [7957] = {.lex_state = 547}, + [7958] = {.lex_state = 1236}, + [7959] = {.lex_state = 720}, + [7960] = {.lex_state = 134}, + [7961] = {.lex_state = 1234}, + [7962] = {.lex_state = 428}, + [7963] = {.lex_state = 428}, + [7964] = {.lex_state = 428}, + [7965] = {.lex_state = 720}, + [7966] = {.lex_state = 1038}, + [7967] = {.lex_state = 620}, + [7968] = {.lex_state = 431}, + [7969] = {.lex_state = 1232}, + [7970] = {.lex_state = 1038}, + [7971] = {.lex_state = 1248}, + [7972] = {.lex_state = 709}, + [7973] = {.lex_state = 709}, + [7974] = {.lex_state = 428}, + [7975] = {.lex_state = 722}, + [7976] = {.lex_state = 709}, + [7977] = {.lex_state = 662}, + [7978] = {.lex_state = 1240}, + [7979] = {.lex_state = 709}, + [7980] = {.lex_state = 39}, + [7981] = {.lex_state = 547}, + [7982] = {.lex_state = 428}, + [7983] = {.lex_state = 1039}, + [7984] = {.lex_state = 1238}, + [7985] = {.lex_state = 1165}, + [7986] = {.lex_state = 547}, + [7987] = {.lex_state = 1038}, + [7988] = {.lex_state = 547}, + [7989] = {.lex_state = 3170}, + [7990] = {.lex_state = 568}, + [7991] = {.lex_state = 547}, + [7992] = {.lex_state = 1241}, + [7993] = {.lex_state = 1236}, + [7994] = {.lex_state = 750}, + [7995] = {.lex_state = 1236}, + [7996] = {.lex_state = 24}, + [7997] = {.lex_state = 1236}, + [7998] = {.lex_state = 1236}, + [7999] = {.lex_state = 24}, + [8000] = {.lex_state = 1038}, + [8001] = {.lex_state = 2558}, + [8002] = {.lex_state = 547}, + [8003] = {.lex_state = 1165}, + [8004] = {.lex_state = 547}, + [8005] = {.lex_state = 547}, + [8006] = {.lex_state = 708}, + [8007] = {.lex_state = 547}, + [8008] = {.lex_state = 547}, + [8009] = {.lex_state = 716}, + [8010] = {.lex_state = 355}, + [8011] = {.lex_state = 722}, + [8012] = {.lex_state = 428}, + [8013] = {.lex_state = 1074}, + [8014] = {.lex_state = 1236}, + [8015] = {.lex_state = 606}, + [8016] = {.lex_state = 606}, + [8017] = {.lex_state = 547}, + [8018] = {.lex_state = 1137}, + [8019] = {.lex_state = 662}, + [8020] = {.lex_state = 618}, + [8021] = {.lex_state = 134}, + [8022] = {.lex_state = 1236}, + [8023] = {.lex_state = 1038}, + [8024] = {.lex_state = 693}, + [8025] = {.lex_state = 1038}, + [8026] = {.lex_state = 1236}, + [8027] = {.lex_state = 1038}, + [8028] = {.lex_state = 1236}, [8029] = {.lex_state = 428}, - [8030] = {.lex_state = 429}, - [8031] = {.lex_state = 1044}, - [8032] = {.lex_state = 431}, - [8033] = {.lex_state = 428}, - [8034] = {.lex_state = 431}, - [8035] = {.lex_state = 1278}, - [8036] = {.lex_state = 620}, - [8037] = {.lex_state = 1044}, - [8038] = {.lex_state = 690}, - [8039] = {.lex_state = 1044}, - [8040] = {.lex_state = 1043}, - [8041] = {.lex_state = 692}, - [8042] = {.lex_state = 120}, - [8043] = {.lex_state = 692}, - [8044] = {.lex_state = 607}, - [8045] = {.lex_state = 719}, - [8046] = {.lex_state = 238}, - [8047] = {.lex_state = 1264}, - [8048] = {.lex_state = 429}, - [8049] = {.lex_state = 429}, - [8050] = {.lex_state = 1044}, + [8030] = {.lex_state = 428}, + [8031] = {.lex_state = 1241}, + [8032] = {.lex_state = 428}, + [8033] = {.lex_state = 38}, + [8034] = {.lex_state = 662}, + [8035] = {.lex_state = 428}, + [8036] = {.lex_state = 1249}, + [8037] = {.lex_state = 618}, + [8038] = {.lex_state = 1038}, + [8039] = {.lex_state = 638}, + [8040] = {.lex_state = 547}, + [8041] = {.lex_state = 1165}, + [8042] = {.lex_state = 431}, + [8043] = {.lex_state = 185}, + [8044] = {.lex_state = 15}, + [8045] = {.lex_state = 662}, + [8046] = {.lex_state = 547}, + [8047] = {.lex_state = 547}, + [8048] = {.lex_state = 547}, + [8049] = {.lex_state = 1038}, + [8050] = {.lex_state = 547}, [8051] = {.lex_state = 547}, - [8052] = {.lex_state = 1246}, - [8053] = {.lex_state = 40}, - [8054] = {.lex_state = 721}, - [8055] = {.lex_state = 618}, + [8052] = {.lex_state = 716}, + [8053] = {.lex_state = 431}, + [8054] = {.lex_state = 185}, + [8055] = {.lex_state = 431}, [8056] = {.lex_state = 431}, [8057] = {.lex_state = 431}, - [8058] = {.lex_state = 1265}, - [8059] = {.lex_state = 431}, - [8060] = {.lex_state = 692}, - [8061] = {.lex_state = 547}, + [8058] = {.lex_state = 547}, + [8059] = {.lex_state = 1165}, + [8060] = {.lex_state = 547}, + [8061] = {.lex_state = 662}, [8062] = {.lex_state = 547}, - [8063] = {.lex_state = 618}, - [8064] = {.lex_state = 185}, - [8065] = {.lex_state = 431}, - [8066] = {.lex_state = 1087}, - [8067] = {.lex_state = 1270}, - [8068] = {.lex_state = 1246}, - [8069] = {.lex_state = 721}, - [8070] = {.lex_state = 1029}, - [8071] = {.lex_state = 1260}, - [8072] = {.lex_state = 661}, - [8073] = {.lex_state = 429}, - [8074] = {.lex_state = 547}, - [8075] = {.lex_state = 547}, - [8076] = {.lex_state = 1029}, - [8077] = {.lex_state = 37}, - [8078] = {.lex_state = 120}, - [8079] = {.lex_state = 618}, - [8080] = {.lex_state = 35}, - [8081] = {.lex_state = 706}, - [8082] = {.lex_state = 547}, - [8083] = {.lex_state = 547}, - [8084] = {.lex_state = 1029}, - [8085] = {.lex_state = 1246}, - [8086] = {.lex_state = 618}, - [8087] = {.lex_state = 1278}, - [8088] = {.lex_state = 618}, - [8089] = {.lex_state = 749}, - [8090] = {.lex_state = 563}, - [8091] = {.lex_state = 547}, - [8092] = {.lex_state = 749}, - [8093] = {.lex_state = 1277}, - [8094] = {.lex_state = 120}, - [8095] = {.lex_state = 1044}, - [8096] = {.lex_state = 749}, - [8097] = {.lex_state = 1277}, - [8098] = {.lex_state = 620}, - [8099] = {.lex_state = 1260}, - [8100] = {.lex_state = 120}, - [8101] = {.lex_state = 120}, - [8102] = {.lex_state = 120}, - [8103] = {.lex_state = 706}, - [8104] = {.lex_state = 1044}, - [8105] = {.lex_state = 547}, - [8106] = {.lex_state = 40}, - [8107] = {.lex_state = 563}, - [8108] = {.lex_state = 120}, - [8109] = {.lex_state = 120}, - [8110] = {.lex_state = 120}, - [8111] = {.lex_state = 547}, - [8112] = {.lex_state = 547}, - [8113] = {.lex_state = 431}, - [8114] = {.lex_state = 1266}, - [8115] = {.lex_state = 563}, - [8116] = {.lex_state = 431}, - [8117] = {.lex_state = 547}, - [8118] = {.lex_state = 431}, - [8119] = {.lex_state = 431}, - [8120] = {.lex_state = 431}, - [8121] = {.lex_state = 547}, - [8122] = {.lex_state = 547}, - [8123] = {.lex_state = 1277}, - [8124] = {.lex_state = 146}, - [8125] = {.lex_state = 1029}, - [8126] = {.lex_state = 547}, - [8127] = {.lex_state = 1101}, - [8128] = {.lex_state = 563}, - [8129] = {.lex_state = 431}, - [8130] = {.lex_state = 547}, - [8131] = {.lex_state = 1265}, - [8132] = {.lex_state = 547}, - [8133] = {.lex_state = 748}, + [8063] = {.lex_state = 134}, + [8064] = {.lex_state = 134}, + [8065] = {.lex_state = 24}, + [8066] = {.lex_state = 428}, + [8067] = {.lex_state = 431}, + [8068] = {.lex_state = 547}, + [8069] = {.lex_state = 547}, + [8070] = {.lex_state = 547}, + [8071] = {.lex_state = 24}, + [8072] = {.lex_state = 1249}, + [8073] = {.lex_state = 1249}, + [8074] = {.lex_state = 1039}, + [8075] = {.lex_state = 1165}, + [8076] = {.lex_state = 584}, + [8077] = {.lex_state = 1165}, + [8078] = {.lex_state = 24}, + [8079] = {.lex_state = 1038}, + [8080] = {.lex_state = 584}, + [8081] = {.lex_state = 1038}, + [8082] = {.lex_state = 24}, + [8083] = {.lex_state = 584}, + [8084] = {.lex_state = 1236}, + [8085] = {.lex_state = 584}, + [8086] = {.lex_state = 1038}, + [8087] = {.lex_state = 547}, + [8088] = {.lex_state = 2554}, + [8089] = {.lex_state = 1038}, + [8090] = {.lex_state = 584}, + [8091] = {.lex_state = 584}, + [8092] = {.lex_state = 1038}, + [8093] = {.lex_state = 1038}, + [8094] = {.lex_state = 1038}, + [8095] = {.lex_state = 694}, + [8096] = {.lex_state = 1236}, + [8097] = {.lex_state = 584}, + [8098] = {.lex_state = 710}, + [8099] = {.lex_state = 584}, + [8100] = {.lex_state = 24}, + [8101] = {.lex_state = 584}, + [8102] = {.lex_state = 584}, + [8103] = {.lex_state = 584}, + [8104] = {.lex_state = 24}, + [8105] = {.lex_state = 1038}, + [8106] = {.lex_state = 1038}, + [8107] = {.lex_state = 431}, + [8108] = {.lex_state = 431}, + [8109] = {.lex_state = 202}, + [8110] = {.lex_state = 428}, + [8111] = {.lex_state = 1038}, + [8112] = {.lex_state = 1038}, + [8113] = {.lex_state = 584}, + [8114] = {.lex_state = 584}, + [8115] = {.lex_state = 24}, + [8116] = {.lex_state = 697}, + [8117] = {.lex_state = 708}, + [8118] = {.lex_state = 1165}, + [8119] = {.lex_state = 1038}, + [8120] = {.lex_state = 1038}, + [8121] = {.lex_state = 376}, + [8122] = {.lex_state = 584}, + [8123] = {.lex_state = 114}, + [8124] = {.lex_state = 584}, + [8125] = {.lex_state = 547}, + [8126] = {.lex_state = 3170}, + [8127] = {.lex_state = 429}, + [8128] = {.lex_state = 1165}, + [8129] = {.lex_state = 1165}, + [8130] = {.lex_state = 642}, + [8131] = {.lex_state = 584}, + [8132] = {.lex_state = 584}, + [8133] = {.lex_state = 696}, [8134] = {.lex_state = 431}, - [8135] = {.lex_state = 1265}, - [8136] = {.lex_state = 547}, - [8137] = {.lex_state = 1264}, - [8138] = {.lex_state = 582}, - [8139] = {.lex_state = 1266}, - [8140] = {.lex_state = 1260}, - [8141] = {.lex_state = 607}, - [8142] = {.lex_state = 563}, - [8143] = {.lex_state = 431}, - [8144] = {.lex_state = 1266}, - [8145] = {.lex_state = 37}, - [8146] = {.lex_state = 1265}, - [8147] = {.lex_state = 1043}, - [8148] = {.lex_state = 1266}, - [8149] = {.lex_state = 431}, - [8150] = {.lex_state = 429}, - [8151] = {.lex_state = 431}, - [8152] = {.lex_state = 431}, - [8153] = {.lex_state = 1278}, - [8154] = {.lex_state = 429}, - [8155] = {.lex_state = 719}, - [8156] = {.lex_state = 1264}, - [8157] = {.lex_state = 1246}, - [8158] = {.lex_state = 1268}, - [8159] = {.lex_state = 1043}, - [8160] = {.lex_state = 429}, - [8161] = {.lex_state = 547}, - [8162] = {.lex_state = 15}, - [8163] = {.lex_state = 690}, - [8164] = {.lex_state = 1264}, - [8165] = {.lex_state = 431}, - [8166] = {.lex_state = 1092}, - [8167] = {.lex_state = 661}, - [8168] = {.lex_state = 40}, - [8169] = {.lex_state = 429}, - [8170] = {.lex_state = 40}, - [8171] = {.lex_state = 1043}, - [8172] = {.lex_state = 748}, - [8173] = {.lex_state = 692}, - [8174] = {.lex_state = 431}, - [8175] = {.lex_state = 120}, - [8176] = {.lex_state = 607}, - [8177] = {.lex_state = 15}, - [8178] = {.lex_state = 620}, - [8179] = {.lex_state = 431}, - [8180] = {.lex_state = 1277}, - [8181] = {.lex_state = 1043}, - [8182] = {.lex_state = 431}, - [8183] = {.lex_state = 1043}, - [8184] = {.lex_state = 431}, - [8185] = {.lex_state = 1262}, - [8186] = {.lex_state = 20}, - [8187] = {.lex_state = 547}, - [8188] = {.lex_state = 661}, - [8189] = {.lex_state = 547}, - [8190] = {.lex_state = 620}, - [8191] = {.lex_state = 707}, - [8192] = {.lex_state = 606}, - [8193] = {.lex_state = 37}, - [8194] = {.lex_state = 563}, - [8195] = {.lex_state = 547}, - [8196] = {.lex_state = 721}, - [8197] = {.lex_state = 561}, - [8198] = {.lex_state = 3210}, - [8199] = {.lex_state = 1262}, - [8200] = {.lex_state = 547}, - [8201] = {.lex_state = 563}, - [8202] = {.lex_state = 748}, - [8203] = {.lex_state = 1029}, - [8204] = {.lex_state = 748}, - [8205] = {.lex_state = 1044}, - [8206] = {.lex_state = 1264}, - [8207] = {.lex_state = 120}, - [8208] = {.lex_state = 1264}, - [8209] = {.lex_state = 1264}, - [8210] = {.lex_state = 620}, - [8211] = {.lex_state = 429}, - [8212] = {.lex_state = 429}, - [8213] = {.lex_state = 719}, - [8214] = {.lex_state = 40}, - [8215] = {.lex_state = 431}, - [8216] = {.lex_state = 429}, - [8217] = {.lex_state = 547}, - [8218] = {.lex_state = 692}, - [8219] = {.lex_state = 1266}, - [8220] = {.lex_state = 1044}, - [8221] = {.lex_state = 431}, - [8222] = {.lex_state = 547}, - [8223] = {.lex_state = 721}, - [8224] = {.lex_state = 40}, - [8225] = {.lex_state = 1044}, - [8226] = {.lex_state = 749}, - [8227] = {.lex_state = 1044}, - [8228] = {.lex_state = 547}, - [8229] = {.lex_state = 1044}, - [8230] = {.lex_state = 120}, - [8231] = {.lex_state = 120}, - [8232] = {.lex_state = 1264}, - [8233] = {.lex_state = 120}, - [8234] = {.lex_state = 1029}, - [8235] = {.lex_state = 3209}, - [8236] = {.lex_state = 1266}, - [8237] = {.lex_state = 1029}, - [8238] = {.lex_state = 428}, - [8239] = {.lex_state = 15}, - [8240] = {.lex_state = 15}, - [8241] = {.lex_state = 607}, - [8242] = {.lex_state = 37}, - [8243] = {.lex_state = 431}, - [8244] = {.lex_state = 547}, - [8245] = {.lex_state = 1278}, - [8246] = {.lex_state = 1268}, - [8247] = {.lex_state = 748}, - [8248] = {.lex_state = 431}, - [8249] = {.lex_state = 1264}, - [8250] = {.lex_state = 431}, - [8251] = {.lex_state = 1264}, - [8252] = {.lex_state = 1262}, - [8253] = {.lex_state = 15}, - [8254] = {.lex_state = 1266}, - [8255] = {.lex_state = 716}, - [8256] = {.lex_state = 618}, - [8257] = {.lex_state = 24}, - [8258] = {.lex_state = 1043}, - [8259] = {.lex_state = 1029}, - [8260] = {.lex_state = 1279}, - [8261] = {.lex_state = 1043}, - [8262] = {.lex_state = 1043}, - [8263] = {.lex_state = 1043}, - [8264] = {.lex_state = 1043}, - [8265] = {.lex_state = 583}, - [8266] = {.lex_state = 1029}, - [8267] = {.lex_state = 1043}, - [8268] = {.lex_state = 1029}, - [8269] = {.lex_state = 431}, - [8270] = {.lex_state = 1029}, - [8271] = {.lex_state = 1279}, - [8272] = {.lex_state = 547}, - [8273] = {.lex_state = 1279}, - [8274] = {.lex_state = 563}, - [8275] = {.lex_state = 547}, - [8276] = {.lex_state = 693}, - [8277] = {.lex_state = 547}, - [8278] = {.lex_state = 1043}, - [8279] = {.lex_state = 722}, - [8280] = {.lex_state = 722}, - [8281] = {.lex_state = 2596}, - [8282] = {.lex_state = 1043}, - [8283] = {.lex_state = 662}, - [8284] = {.lex_state = 1264}, - [8285] = {.lex_state = 428}, - [8286] = {.lex_state = 428}, - [8287] = {.lex_state = 547}, - [8288] = {.lex_state = 1043}, - [8289] = {.lex_state = 24}, - [8290] = {.lex_state = 38}, - [8291] = {.lex_state = 662}, - [8292] = {.lex_state = 428}, - [8293] = {.lex_state = 1278}, - [8294] = {.lex_state = 428}, - [8295] = {.lex_state = 1268}, - [8296] = {.lex_state = 428}, - [8297] = {.lex_state = 428}, - [8298] = {.lex_state = 618}, - [8299] = {.lex_state = 692}, - [8300] = {.lex_state = 1262}, - [8301] = {.lex_state = 1043}, - [8302] = {.lex_state = 1029}, - [8303] = {.lex_state = 24}, - [8304] = {.lex_state = 185}, - [8305] = {.lex_state = 547}, - [8306] = {.lex_state = 547}, - [8307] = {.lex_state = 583}, - [8308] = {.lex_state = 547}, - [8309] = {.lex_state = 547}, - [8310] = {.lex_state = 428}, - [8311] = {.lex_state = 1029}, - [8312] = {.lex_state = 1264}, - [8313] = {.lex_state = 547}, - [8314] = {.lex_state = 1044}, - [8315] = {.lex_state = 1273}, - [8316] = {.lex_state = 431}, - [8317] = {.lex_state = 1196}, - [8318] = {.lex_state = 428}, - [8319] = {.lex_state = 428}, - [8320] = {.lex_state = 692}, - [8321] = {.lex_state = 662}, - [8322] = {.lex_state = 428}, - [8323] = {.lex_state = 431}, - [8324] = {.lex_state = 431}, - [8325] = {.lex_state = 431}, - [8326] = {.lex_state = 547}, - [8327] = {.lex_state = 1196}, - [8328] = {.lex_state = 608}, - [8329] = {.lex_state = 1043}, - [8330] = {.lex_state = 662}, - [8331] = {.lex_state = 134}, - [8332] = {.lex_state = 547}, - [8333] = {.lex_state = 1271}, - [8334] = {.lex_state = 547}, - [8335] = {.lex_state = 1262}, - [8336] = {.lex_state = 547}, - [8337] = {.lex_state = 1268}, - [8338] = {.lex_state = 134}, - [8339] = {.lex_state = 431}, - [8340] = {.lex_state = 547}, - [8341] = {.lex_state = 662}, - [8342] = {.lex_state = 431}, - [8343] = {.lex_state = 547}, - [8344] = {.lex_state = 547}, - [8345] = {.lex_state = 750}, - [8346] = {.lex_state = 720}, - [8347] = {.lex_state = 608}, - [8348] = {.lex_state = 662}, - [8349] = {.lex_state = 1278}, - [8350] = {.lex_state = 431}, - [8351] = {.lex_state = 1196}, - [8352] = {.lex_state = 1279}, - [8353] = {.lex_state = 722}, - [8354] = {.lex_state = 1159}, - [8355] = {.lex_state = 608}, - [8356] = {.lex_state = 1092}, - [8357] = {.lex_state = 1266}, - [8358] = {.lex_state = 547}, - [8359] = {.lex_state = 608}, - [8360] = {.lex_state = 1043}, - [8361] = {.lex_state = 583}, - [8362] = {.lex_state = 563}, - [8363] = {.lex_state = 547}, - [8364] = {.lex_state = 722}, - [8365] = {.lex_state = 547}, - [8366] = {.lex_state = 1043}, - [8367] = {.lex_state = 3210}, - [8368] = {.lex_state = 1278}, - [8369] = {.lex_state = 547}, - [8370] = {.lex_state = 356}, - [8371] = {.lex_state = 720}, - [8372] = {.lex_state = 708}, - [8373] = {.lex_state = 608}, - [8374] = {.lex_state = 547}, - [8375] = {.lex_state = 547}, - [8376] = {.lex_state = 750}, - [8377] = {.lex_state = 722}, - [8378] = {.lex_state = 431}, - [8379] = {.lex_state = 720}, - [8380] = {.lex_state = 431}, - [8381] = {.lex_state = 431}, - [8382] = {.lex_state = 750}, - [8383] = {.lex_state = 547}, - [8384] = {.lex_state = 1043}, - [8385] = {.lex_state = 583}, - [8386] = {.lex_state = 750}, - [8387] = {.lex_state = 583}, - [8388] = {.lex_state = 606}, - [8389] = {.lex_state = 3210}, - [8390] = {.lex_state = 356}, - [8391] = {.lex_state = 662}, - [8392] = {.lex_state = 662}, - [8393] = {.lex_state = 431}, - [8394] = {.lex_state = 620}, - [8395] = {.lex_state = 662}, - [8396] = {.lex_state = 1264}, - [8397] = {.lex_state = 606}, - [8398] = {.lex_state = 355}, - [8399] = {.lex_state = 720}, - [8400] = {.lex_state = 1270}, - [8401] = {.lex_state = 431}, - [8402] = {.lex_state = 1044}, - [8403] = {.lex_state = 1043}, - [8404] = {.lex_state = 608}, - [8405] = {.lex_state = 1043}, - [8406] = {.lex_state = 1044}, - [8407] = {.lex_state = 2603}, - [8408] = {.lex_state = 1266}, - [8409] = {.lex_state = 1260}, - [8410] = {.lex_state = 238}, - [8411] = {.lex_state = 709}, - [8412] = {.lex_state = 134}, - [8413] = {.lex_state = 134}, - [8414] = {.lex_state = 134}, - [8415] = {.lex_state = 134}, - [8416] = {.lex_state = 777}, - [8417] = {.lex_state = 1043}, - [8418] = {.lex_state = 1043}, - [8419] = {.lex_state = 1043}, - [8420] = {.lex_state = 1043}, - [8421] = {.lex_state = 38}, - [8422] = {.lex_state = 24}, - [8423] = {.lex_state = 547}, - [8424] = {.lex_state = 547}, - [8425] = {.lex_state = 547}, - [8426] = {.lex_state = 547}, - [8427] = {.lex_state = 1196}, - [8428] = {.lex_state = 716}, - [8429] = {.lex_state = 355}, - [8430] = {.lex_state = 1279}, - [8431] = {.lex_state = 1090}, - [8432] = {.lex_state = 39}, - [8433] = {.lex_state = 568}, - [8434] = {.lex_state = 1101}, - [8435] = {.lex_state = 563}, - [8436] = {.lex_state = 134}, - [8437] = {.lex_state = 178}, - [8438] = {.lex_state = 178}, - [8439] = {.lex_state = 178}, - [8440] = {.lex_state = 178}, - [8441] = {.lex_state = 1029}, - [8442] = {.lex_state = 695}, - [8443] = {.lex_state = 561}, - [8444] = {.lex_state = 178}, - [8445] = {.lex_state = 178}, - [8446] = {.lex_state = 15}, - [8447] = {.lex_state = 1043}, - [8448] = {.lex_state = 547}, - [8449] = {.lex_state = 547}, - [8450] = {.lex_state = 547}, - [8451] = {.lex_state = 1043}, - [8452] = {.lex_state = 428}, - [8453] = {.lex_state = 662}, - [8454] = {.lex_state = 1090}, - [8455] = {.lex_state = 428}, - [8456] = {.lex_state = 1266}, - [8457] = {.lex_state = 547}, - [8458] = {.lex_state = 720}, - [8459] = {.lex_state = 1043}, - [8460] = {.lex_state = 751}, - [8461] = {.lex_state = 1044}, - [8462] = {.lex_state = 547}, - [8463] = {.lex_state = 185}, - [8464] = {.lex_state = 1043}, - [8465] = {.lex_state = 1044}, - [8466] = {.lex_state = 1044}, - [8467] = {.lex_state = 1266}, - [8468] = {.lex_state = 1043}, - [8469] = {.lex_state = 1266}, - [8470] = {.lex_state = 547}, - [8471] = {.lex_state = 1266}, - [8472] = {.lex_state = 1043}, - [8473] = {.lex_state = 709}, - [8474] = {.lex_state = 1278}, - [8475] = {.lex_state = 1266}, - [8476] = {.lex_state = 1278}, - [8477] = {.lex_state = 1196}, - [8478] = {.lex_state = 709}, - [8479] = {.lex_state = 620}, - [8480] = {.lex_state = 1043}, - [8481] = {.lex_state = 608}, - [8482] = {.lex_state = 428}, - [8483] = {.lex_state = 750}, - [8484] = {.lex_state = 709}, - [8485] = {.lex_state = 1266}, - [8486] = {.lex_state = 3209}, - [8487] = {.lex_state = 563}, - [8488] = {.lex_state = 1271}, - [8489] = {.lex_state = 638}, - [8490] = {.lex_state = 1266}, - [8491] = {.lex_state = 1043}, - [8492] = {.lex_state = 1043}, - [8493] = {.lex_state = 630}, - [8494] = {.lex_state = 1266}, - [8495] = {.lex_state = 1262}, - [8496] = {.lex_state = 547}, - [8497] = {.lex_state = 1043}, - [8498] = {.lex_state = 1278}, - [8499] = {.lex_state = 1278}, + [8135] = {.lex_state = 1165}, + [8136] = {.lex_state = 1165}, + [8137] = {.lex_state = 1165}, + [8138] = {.lex_state = 1165}, + [8139] = {.lex_state = 24}, + [8140] = {.lex_state = 755}, + [8141] = {.lex_state = 584}, + [8142] = {.lex_state = 584}, + [8143] = {.lex_state = 547}, + [8144] = {.lex_state = 755}, + [8145] = {.lex_state = 1165}, + [8146] = {.lex_state = 584}, + [8147] = {.lex_state = 759}, + [8148] = {.lex_state = 1165}, + [8149] = {.lex_state = 584}, + [8150] = {.lex_state = 631}, + [8151] = {.lex_state = 1038}, + [8152] = {.lex_state = 584}, + [8153] = {.lex_state = 24}, + [8154] = {.lex_state = 1241}, + [8155] = {.lex_state = 584}, + [8156] = {.lex_state = 1039}, + [8157] = {.lex_state = 780}, + [8158] = {.lex_state = 1038}, + [8159] = {.lex_state = 708}, + [8160] = {.lex_state = 1038}, + [8161] = {.lex_state = 1038}, + [8162] = {.lex_state = 584}, + [8163] = {.lex_state = 1038}, + [8164] = {.lex_state = 24}, + [8165] = {.lex_state = 547}, + [8166] = {.lex_state = 584}, + [8167] = {.lex_state = 24}, + [8168] = {.lex_state = 584}, + [8169] = {.lex_state = 1165}, + [8170] = {.lex_state = 1030}, + [8171] = {.lex_state = 24}, + [8172] = {.lex_state = 608}, + [8173] = {.lex_state = 639}, + [8174] = {.lex_state = 1165}, + [8175] = {.lex_state = 355}, + [8176] = {.lex_state = 1050}, + [8177] = {.lex_state = 584}, + [8178] = {.lex_state = 584}, + [8179] = {.lex_state = 584}, + [8180] = {.lex_state = 428}, + [8181] = {.lex_state = 1165}, + [8182] = {.lex_state = 1165}, + [8183] = {.lex_state = 1050}, + [8184] = {.lex_state = 547}, + [8185] = {.lex_state = 584}, + [8186] = {.lex_state = 1165}, + [8187] = {.lex_state = 584}, + [8188] = {.lex_state = 752}, + [8189] = {.lex_state = 584}, + [8190] = {.lex_state = 775}, + [8191] = {.lex_state = 584}, + [8192] = {.lex_state = 584}, + [8193] = {.lex_state = 775}, + [8194] = {.lex_state = 355}, + [8195] = {.lex_state = 584}, + [8196] = {.lex_state = 355}, + [8197] = {.lex_state = 584}, + [8198] = {.lex_state = 3170}, + [8199] = {.lex_state = 428}, + [8200] = {.lex_state = 584}, + [8201] = {.lex_state = 584}, + [8202] = {.lex_state = 431}, + [8203] = {.lex_state = 755}, + [8204] = {.lex_state = 584}, + [8205] = {.lex_state = 1249}, + [8206] = {.lex_state = 431}, + [8207] = {.lex_state = 584}, + [8208] = {.lex_state = 431}, + [8209] = {.lex_state = 663}, + [8210] = {.lex_state = 584}, + [8211] = {.lex_state = 1165}, + [8212] = {.lex_state = 584}, + [8213] = {.lex_state = 584}, + [8214] = {.lex_state = 584}, + [8215] = {.lex_state = 571}, + [8216] = {.lex_state = 584}, + [8217] = {.lex_state = 584}, + [8218] = {.lex_state = 584}, + [8219] = {.lex_state = 584}, + [8220] = {.lex_state = 355}, + [8221] = {.lex_state = 725}, + [8222] = {.lex_state = 24}, + [8223] = {.lex_state = 24}, + [8224] = {.lex_state = 697}, + [8225] = {.lex_state = 584}, + [8226] = {.lex_state = 584}, + [8227] = {.lex_state = 698}, + [8228] = {.lex_state = 202}, + [8229] = {.lex_state = 584}, + [8230] = {.lex_state = 185}, + [8231] = {.lex_state = 185}, + [8232] = {.lex_state = 24}, + [8233] = {.lex_state = 698}, + [8234] = {.lex_state = 185}, + [8235] = {.lex_state = 710}, + [8236] = {.lex_state = 584}, + [8237] = {.lex_state = 584}, + [8238] = {.lex_state = 584}, + [8239] = {.lex_state = 1038}, + [8240] = {.lex_state = 1165}, + [8241] = {.lex_state = 608}, + [8242] = {.lex_state = 584}, + [8243] = {.lex_state = 606}, + [8244] = {.lex_state = 431}, + [8245] = {.lex_state = 431}, + [8246] = {.lex_state = 1165}, + [8247] = {.lex_state = 1165}, + [8248] = {.lex_state = 1165}, + [8249] = {.lex_state = 1165}, + [8250] = {.lex_state = 1165}, + [8251] = {.lex_state = 94}, + [8252] = {.lex_state = 1165}, + [8253] = {.lex_state = 662}, + [8254] = {.lex_state = 3170}, + [8255] = {.lex_state = 759}, + [8256] = {.lex_state = 759}, + [8257] = {.lex_state = 662}, + [8258] = {.lex_state = 54}, + [8259] = {.lex_state = 1111}, + [8260] = {.lex_state = 1038}, + [8261] = {.lex_state = 54}, + [8262] = {.lex_state = 54}, + [8263] = {.lex_state = 1038}, + [8264] = {.lex_state = 54}, + [8265] = {.lex_state = 94}, + [8266] = {.lex_state = 24}, + [8267] = {.lex_state = 1030}, + [8268] = {.lex_state = 1165}, + [8269] = {.lex_state = 698}, + [8270] = {.lex_state = 1165}, + [8271] = {.lex_state = 1165}, + [8272] = {.lex_state = 1243}, + [8273] = {.lex_state = 584}, + [8274] = {.lex_state = 608}, + [8275] = {.lex_state = 722}, + [8276] = {.lex_state = 642}, + [8277] = {.lex_state = 584}, + [8278] = {.lex_state = 431}, + [8279] = {.lex_state = 94}, + [8280] = {.lex_state = 185}, + [8281] = {.lex_state = 640}, + [8282] = {.lex_state = 1028}, + [8283] = {.lex_state = 185}, + [8284] = {.lex_state = 431}, + [8285] = {.lex_state = 608}, + [8286] = {.lex_state = 640}, + [8287] = {.lex_state = 1238}, + [8288] = {.lex_state = 566}, + [8289] = {.lex_state = 431}, + [8290] = {.lex_state = 584}, + [8291] = {.lex_state = 584}, + [8292] = {.lex_state = 775}, + [8293] = {.lex_state = 185}, + [8294] = {.lex_state = 640}, + [8295] = {.lex_state = 1038}, + [8296] = {.lex_state = 584}, + [8297] = {.lex_state = 185}, + [8298] = {.lex_state = 185}, + [8299] = {.lex_state = 698}, + [8300] = {.lex_state = 584}, + [8301] = {.lex_state = 755}, + [8302] = {.lex_state = 697}, + [8303] = {.lex_state = 431}, + [8304] = {.lex_state = 722}, + [8305] = {.lex_state = 24}, + [8306] = {.lex_state = 1030}, + [8307] = {.lex_state = 185}, + [8308] = {.lex_state = 642}, + [8309] = {.lex_state = 640}, + [8310] = {.lex_state = 185}, + [8311] = {.lex_state = 1249}, + [8312] = {.lex_state = 642}, + [8313] = {.lex_state = 185}, + [8314] = {.lex_state = 431}, + [8315] = {.lex_state = 1038}, + [8316] = {.lex_state = 1249}, + [8317] = {.lex_state = 1249}, + [8318] = {.lex_state = 710}, + [8319] = {.lex_state = 24}, + [8320] = {.lex_state = 1241}, + [8321] = {.lex_state = 205}, + [8322] = {.lex_state = 1232}, + [8323] = {.lex_state = 720}, + [8324] = {.lex_state = 710}, + [8325] = {.lex_state = 584}, + [8326] = {.lex_state = 1165}, + [8327] = {.lex_state = 114}, + [8328] = {.lex_state = 584}, + [8329] = {.lex_state = 24}, + [8330] = {.lex_state = 1245}, + [8331] = {.lex_state = 1030}, + [8332] = {.lex_state = 24}, + [8333] = {.lex_state = 584}, + [8334] = {.lex_state = 662}, + [8335] = {.lex_state = 1236}, + [8336] = {.lex_state = 24}, + [8337] = {.lex_state = 697}, + [8338] = {.lex_state = 24}, + [8339] = {.lex_state = 710}, + [8340] = {.lex_state = 24}, + [8341] = {.lex_state = 1137}, + [8342] = {.lex_state = 1038}, + [8343] = {.lex_state = 24}, + [8344] = {.lex_state = 710}, + [8345] = {.lex_state = 24}, + [8346] = {.lex_state = 1038}, + [8347] = {.lex_state = 1165}, + [8348] = {.lex_state = 24}, + [8349] = {.lex_state = 24}, + [8350] = {.lex_state = 710}, + [8351] = {.lex_state = 24}, + [8352] = {.lex_state = 662}, + [8353] = {.lex_state = 1038}, + [8354] = {.lex_state = 1038}, + [8355] = {.lex_state = 1038}, + [8356] = {.lex_state = 584}, + [8357] = {.lex_state = 1038}, + [8358] = {.lex_state = 1038}, + [8359] = {.lex_state = 584}, + [8360] = {.lex_state = 720}, + [8361] = {.lex_state = 584}, + [8362] = {.lex_state = 584}, + [8363] = {.lex_state = 1165}, + [8364] = {.lex_state = 584}, + [8365] = {.lex_state = 1236}, + [8366] = {.lex_state = 1165}, + [8367] = {.lex_state = 1165}, + [8368] = {.lex_state = 428}, + [8369] = {.lex_state = 1137}, + [8370] = {.lex_state = 723}, + [8371] = {.lex_state = 94}, + [8372] = {.lex_state = 775}, + [8373] = {.lex_state = 775}, + [8374] = {.lex_state = 753}, + [8375] = {.lex_state = 355}, + [8376] = {.lex_state = 24}, + [8377] = {.lex_state = 428}, + [8378] = {.lex_state = 1249}, + [8379] = {.lex_state = 2558}, + [8380] = {.lex_state = 790}, + [8381] = {.lex_state = 1050}, + [8382] = {.lex_state = 1050}, + [8383] = {.lex_state = 1050}, + [8384] = {.lex_state = 1050}, + [8385] = {.lex_state = 1050}, + [8386] = {.lex_state = 1050}, + [8387] = {.lex_state = 1050}, + [8388] = {.lex_state = 1050}, + [8389] = {.lex_state = 1050}, + [8390] = {.lex_state = 1050}, + [8391] = {.lex_state = 1050}, + [8392] = {.lex_state = 1050}, + [8393] = {.lex_state = 1050}, + [8394] = {.lex_state = 710}, + [8395] = {.lex_state = 1165}, + [8396] = {.lex_state = 1050}, + [8397] = {.lex_state = 1050}, + [8398] = {.lex_state = 1050}, + [8399] = {.lex_state = 1050}, + [8400] = {.lex_state = 1050}, + [8401] = {.lex_state = 1050}, + [8402] = {.lex_state = 1050}, + [8403] = {.lex_state = 1050}, + [8404] = {.lex_state = 1050}, + [8405] = {.lex_state = 1050}, + [8406] = {.lex_state = 1050}, + [8407] = {.lex_state = 1050}, + [8408] = {.lex_state = 1050}, + [8409] = {.lex_state = 1050}, + [8410] = {.lex_state = 1050}, + [8411] = {.lex_state = 1050}, + [8412] = {.lex_state = 1050}, + [8413] = {.lex_state = 1050}, + [8414] = {.lex_state = 1050}, + [8415] = {.lex_state = 1050}, + [8416] = {.lex_state = 1050}, + [8417] = {.lex_state = 1050}, + [8418] = {.lex_state = 1050}, + [8419] = {.lex_state = 1050}, + [8420] = {.lex_state = 1050}, + [8421] = {.lex_state = 1050}, + [8422] = {.lex_state = 1050}, + [8423] = {.lex_state = 1050}, + [8424] = {.lex_state = 1050}, + [8425] = {.lex_state = 1050}, + [8426] = {.lex_state = 1050}, + [8427] = {.lex_state = 1050}, + [8428] = {.lex_state = 1050}, + [8429] = {.lex_state = 238}, + [8430] = {.lex_state = 1050}, + [8431] = {.lex_state = 1050}, + [8432] = {.lex_state = 1050}, + [8433] = {.lex_state = 1050}, + [8434] = {.lex_state = 238}, + [8435] = {.lex_state = 1050}, + [8436] = {.lex_state = 1050}, + [8437] = {.lex_state = 1050}, + [8438] = {.lex_state = 238}, + [8439] = {.lex_state = 1050}, + [8440] = {.lex_state = 238}, + [8441] = {.lex_state = 1050}, + [8442] = {.lex_state = 1050}, + [8443] = {.lex_state = 1050}, + [8444] = {.lex_state = 1050}, + [8445] = {.lex_state = 1111}, + [8446] = {.lex_state = 1050}, + [8447] = {.lex_state = 1050}, + [8448] = {.lex_state = 710}, + [8449] = {.lex_state = 699}, + [8450] = {.lex_state = 1050}, + [8451] = {.lex_state = 1050}, + [8452] = {.lex_state = 1050}, + [8453] = {.lex_state = 547}, + [8454] = {.lex_state = 1050}, + [8455] = {.lex_state = 696}, + [8456] = {.lex_state = 1050}, + [8457] = {.lex_state = 1050}, + [8458] = {.lex_state = 708}, + [8459] = {.lex_state = 710}, + [8460] = {.lex_state = 757}, + [8461] = {.lex_state = 1050}, + [8462] = {.lex_state = 790}, + [8463] = {.lex_state = 1050}, + [8464] = {.lex_state = 699}, + [8465] = {.lex_state = 1050}, + [8466] = {.lex_state = 1050}, + [8467] = {.lex_state = 790}, + [8468] = {.lex_state = 572}, + [8469] = {.lex_state = 1050}, + [8470] = {.lex_state = 1050}, + [8471] = {.lex_state = 1050}, + [8472] = {.lex_state = 1050}, + [8473] = {.lex_state = 790}, + [8474] = {.lex_state = 1050}, + [8475] = {.lex_state = 1050}, + [8476] = {.lex_state = 1050}, + [8477] = {.lex_state = 1050}, + [8478] = {.lex_state = 1050}, + [8479] = {.lex_state = 1050}, + [8480] = {.lex_state = 1050}, + [8481] = {.lex_state = 1050}, + [8482] = {.lex_state = 790}, + [8483] = {.lex_state = 631}, + [8484] = {.lex_state = 1050}, + [8485] = {.lex_state = 1050}, + [8486] = {.lex_state = 1050}, + [8487] = {.lex_state = 1050}, + [8488] = {.lex_state = 98}, + [8489] = {.lex_state = 1050}, + [8490] = {.lex_state = 1050}, + [8491] = {.lex_state = 1050}, + [8492] = {.lex_state = 1050}, + [8493] = {.lex_state = 1030}, + [8494] = {.lex_state = 94}, + [8495] = {.lex_state = 1030}, + [8496] = {.lex_state = 222}, + [8497] = {.lex_state = 1165}, + [8498] = {.lex_state = 700}, + [8499] = {.lex_state = 547}, [8500] = {.lex_state = 547}, - [8501] = {.lex_state = 1264}, - [8502] = {.lex_state = 24}, - [8503] = {.lex_state = 1043}, - [8504] = {.lex_state = 431}, - [8505] = {.lex_state = 1043}, - [8506] = {.lex_state = 3210}, - [8507] = {.lex_state = 134}, - [8508] = {.lex_state = 134}, - [8509] = {.lex_state = 1266}, - [8510] = {.lex_state = 547}, - [8511] = {.lex_state = 355}, - [8512] = {.lex_state = 1043}, - [8513] = {.lex_state = 584}, - [8514] = {.lex_state = 428}, - [8515] = {.lex_state = 697}, - [8516] = {.lex_state = 429}, + [8501] = {.lex_state = 547}, + [8502] = {.lex_state = 790}, + [8503] = {.lex_state = 790}, + [8504] = {.lex_state = 1030}, + [8505] = {.lex_state = 572}, + [8506] = {.lex_state = 1165}, + [8507] = {.lex_state = 547}, + [8508] = {.lex_state = 547}, + [8509] = {.lex_state = 547}, + [8510] = {.lex_state = 63}, + [8511] = {.lex_state = 547}, + [8512] = {.lex_state = 547}, + [8513] = {.lex_state = 547}, + [8514] = {.lex_state = 547}, + [8515] = {.lex_state = 790}, + [8516] = {.lex_state = 547}, [8517] = {.lex_state = 547}, - [8518] = {.lex_state = 1043}, - [8519] = {.lex_state = 1279}, - [8520] = {.lex_state = 428}, - [8521] = {.lex_state = 584}, - [8522] = {.lex_state = 1266}, - [8523] = {.lex_state = 584}, - [8524] = {.lex_state = 639}, - [8525] = {.lex_state = 1035}, - [8526] = {.lex_state = 1043}, - [8527] = {.lex_state = 185}, - [8528] = {.lex_state = 783}, - [8529] = {.lex_state = 584}, - [8530] = {.lex_state = 1043}, - [8531] = {.lex_state = 1044}, - [8532] = {.lex_state = 185}, - [8533] = {.lex_state = 584}, - [8534] = {.lex_state = 584}, - [8535] = {.lex_state = 584}, - [8536] = {.lex_state = 662}, - [8537] = {.lex_state = 1043}, - [8538] = {.lex_state = 722}, - [8539] = {.lex_state = 1043}, - [8540] = {.lex_state = 584}, - [8541] = {.lex_state = 3210}, - [8542] = {.lex_state = 752}, - [8543] = {.lex_state = 1043}, - [8544] = {.lex_state = 1043}, - [8545] = {.lex_state = 584}, - [8546] = {.lex_state = 584}, - [8547] = {.lex_state = 584}, - [8548] = {.lex_state = 697}, - [8549] = {.lex_state = 778}, - [8550] = {.lex_state = 662}, - [8551] = {.lex_state = 662}, - [8552] = {.lex_state = 662}, - [8553] = {.lex_state = 608}, - [8554] = {.lex_state = 584}, - [8555] = {.lex_state = 1043}, - [8556] = {.lex_state = 584}, - [8557] = {.lex_state = 24}, - [8558] = {.lex_state = 431}, - [8559] = {.lex_state = 431}, - [8560] = {.lex_state = 584}, - [8561] = {.lex_state = 584}, - [8562] = {.lex_state = 1043}, - [8563] = {.lex_state = 355}, - [8564] = {.lex_state = 584}, - [8565] = {.lex_state = 1043}, - [8566] = {.lex_state = 584}, - [8567] = {.lex_state = 94}, - [8568] = {.lex_state = 24}, - [8569] = {.lex_state = 431}, - [8570] = {.lex_state = 1043}, - [8571] = {.lex_state = 1043}, - [8572] = {.lex_state = 584}, - [8573] = {.lex_state = 584}, - [8574] = {.lex_state = 2592}, - [8575] = {.lex_state = 759}, - [8576] = {.lex_state = 24}, - [8577] = {.lex_state = 1279}, - [8578] = {.lex_state = 202}, - [8579] = {.lex_state = 94}, - [8580] = {.lex_state = 1043}, - [8581] = {.lex_state = 1043}, - [8582] = {.lex_state = 1043}, - [8583] = {.lex_state = 1043}, - [8584] = {.lex_state = 1196}, - [8585] = {.lex_state = 584}, - [8586] = {.lex_state = 584}, - [8587] = {.lex_state = 584}, - [8588] = {.lex_state = 1065}, - [8589] = {.lex_state = 698}, - [8590] = {.lex_state = 694}, - [8591] = {.lex_state = 1271}, - [8592] = {.lex_state = 1043}, - [8593] = {.lex_state = 1196}, - [8594] = {.lex_state = 1043}, - [8595] = {.lex_state = 584}, - [8596] = {.lex_state = 1043}, - [8597] = {.lex_state = 584}, - [8598] = {.lex_state = 698}, - [8599] = {.lex_state = 584}, - [8600] = {.lex_state = 708}, - [8601] = {.lex_state = 1159}, - [8602] = {.lex_state = 1043}, - [8603] = {.lex_state = 697}, - [8604] = {.lex_state = 584}, - [8605] = {.lex_state = 584}, - [8606] = {.lex_state = 1159}, - [8607] = {.lex_state = 355}, - [8608] = {.lex_state = 202}, - [8609] = {.lex_state = 1196}, - [8610] = {.lex_state = 710}, - [8611] = {.lex_state = 584}, - [8612] = {.lex_state = 584}, - [8613] = {.lex_state = 376}, - [8614] = {.lex_state = 722}, - [8615] = {.lex_state = 24}, - [8616] = {.lex_state = 24}, - [8617] = {.lex_state = 642}, - [8618] = {.lex_state = 778}, - [8619] = {.lex_state = 431}, - [8620] = {.lex_state = 708}, - [8621] = {.lex_state = 428}, - [8622] = {.lex_state = 1268}, - [8623] = {.lex_state = 1275}, - [8624] = {.lex_state = 584}, - [8625] = {.lex_state = 24}, - [8626] = {.lex_state = 1273}, - [8627] = {.lex_state = 584}, - [8628] = {.lex_state = 698}, - [8629] = {.lex_state = 571}, - [8630] = {.lex_state = 584}, - [8631] = {.lex_state = 114}, - [8632] = {.lex_state = 584}, - [8633] = {.lex_state = 720}, - [8634] = {.lex_state = 759}, - [8635] = {.lex_state = 431}, - [8636] = {.lex_state = 584}, - [8637] = {.lex_state = 584}, - [8638] = {.lex_state = 584}, - [8639] = {.lex_state = 584}, - [8640] = {.lex_state = 24}, - [8641] = {.lex_state = 1043}, - [8642] = {.lex_state = 94}, - [8643] = {.lex_state = 24}, - [8644] = {.lex_state = 24}, - [8645] = {.lex_state = 640}, - [8646] = {.lex_state = 431}, - [8647] = {.lex_state = 1029}, - [8648] = {.lex_state = 1196}, - [8649] = {.lex_state = 1196}, - [8650] = {.lex_state = 584}, - [8651] = {.lex_state = 431}, + [8518] = {.lex_state = 790}, + [8519] = {.lex_state = 572}, + [8520] = {.lex_state = 547}, + [8521] = {.lex_state = 547}, + [8522] = {.lex_state = 547}, + [8523] = {.lex_state = 2554}, + [8524] = {.lex_state = 1050}, + [8525] = {.lex_state = 729}, + [8526] = {.lex_state = 63}, + [8527] = {.lex_state = 63}, + [8528] = {.lex_state = 63}, + [8529] = {.lex_state = 1238}, + [8530] = {.lex_state = 790}, + [8531] = {.lex_state = 428}, + [8532] = {.lex_state = 790}, + [8533] = {.lex_state = 1030}, + [8534] = {.lex_state = 572}, + [8535] = {.lex_state = 547}, + [8536] = {.lex_state = 781}, + [8537] = {.lex_state = 572}, + [8538] = {.lex_state = 790}, + [8539] = {.lex_state = 790}, + [8540] = {.lex_state = 572}, + [8541] = {.lex_state = 700}, + [8542] = {.lex_state = 700}, + [8543] = {.lex_state = 1165}, + [8544] = {.lex_state = 776}, + [8545] = {.lex_state = 547}, + [8546] = {.lex_state = 662}, + [8547] = {.lex_state = 643}, + [8548] = {.lex_state = 790}, + [8549] = {.lex_state = 790}, + [8550] = {.lex_state = 572}, + [8551] = {.lex_state = 1165}, + [8552] = {.lex_state = 428}, + [8553] = {.lex_state = 726}, + [8554] = {.lex_state = 2557}, + [8555] = {.lex_state = 662}, + [8556] = {.lex_state = 694}, + [8557] = {.lex_state = 1030}, + [8558] = {.lex_state = 662}, + [8559] = {.lex_state = 547}, + [8560] = {.lex_state = 790}, + [8561] = {.lex_state = 790}, + [8562] = {.lex_state = 1165}, + [8563] = {.lex_state = 572}, + [8564] = {.lex_state = 694}, + [8565] = {.lex_state = 756}, + [8566] = {.lex_state = 729}, + [8567] = {.lex_state = 1165}, + [8568] = {.lex_state = 639}, + [8569] = {.lex_state = 3170}, + [8570] = {.lex_state = 790}, + [8571] = {.lex_state = 790}, + [8572] = {.lex_state = 572}, + [8573] = {.lex_state = 643}, + [8574] = {.lex_state = 1028}, + [8575] = {.lex_state = 790}, + [8576] = {.lex_state = 790}, + [8577] = {.lex_state = 572}, + [8578] = {.lex_state = 776}, + [8579] = {.lex_state = 428}, + [8580] = {.lex_state = 1030}, + [8581] = {.lex_state = 790}, + [8582] = {.lex_state = 790}, + [8583] = {.lex_state = 572}, + [8584] = {.lex_state = 428}, + [8585] = {.lex_state = 790}, + [8586] = {.lex_state = 202}, + [8587] = {.lex_state = 790}, + [8588] = {.lex_state = 572}, + [8589] = {.lex_state = 431}, + [8590] = {.lex_state = 431}, + [8591] = {.lex_state = 641}, + [8592] = {.lex_state = 1030}, + [8593] = {.lex_state = 1050}, + [8594] = {.lex_state = 1050}, + [8595] = {.lex_state = 756}, + [8596] = {.lex_state = 1050}, + [8597] = {.lex_state = 729}, + [8598] = {.lex_state = 547}, + [8599] = {.lex_state = 1050}, + [8600] = {.lex_state = 790}, + [8601] = {.lex_state = 790}, + [8602] = {.lex_state = 572}, + [8603] = {.lex_state = 1050}, + [8604] = {.lex_state = 1050}, + [8605] = {.lex_state = 1050}, + [8606] = {.lex_state = 1050}, + [8607] = {.lex_state = 1050}, + [8608] = {.lex_state = 1050}, + [8609] = {.lex_state = 643}, + [8610] = {.lex_state = 1050}, + [8611] = {.lex_state = 641}, + [8612] = {.lex_state = 757}, + [8613] = {.lex_state = 790}, + [8614] = {.lex_state = 790}, + [8615] = {.lex_state = 1050}, + [8616] = {.lex_state = 572}, + [8617] = {.lex_state = 1050}, + [8618] = {.lex_state = 1050}, + [8619] = {.lex_state = 1050}, + [8620] = {.lex_state = 1050}, + [8621] = {.lex_state = 1050}, + [8622] = {.lex_state = 757}, + [8623] = {.lex_state = 1050}, + [8624] = {.lex_state = 1050}, + [8625] = {.lex_state = 1050}, + [8626] = {.lex_state = 1050}, + [8627] = {.lex_state = 1050}, + [8628] = {.lex_state = 790}, + [8629] = {.lex_state = 1050}, + [8630] = {.lex_state = 757}, + [8631] = {.lex_state = 1050}, + [8632] = {.lex_state = 790}, + [8633] = {.lex_state = 1050}, + [8634] = {.lex_state = 572}, + [8635] = {.lex_state = 134}, + [8636] = {.lex_state = 699}, + [8637] = {.lex_state = 641}, + [8638] = {.lex_state = 756}, + [8639] = {.lex_state = 1050}, + [8640] = {.lex_state = 1050}, + [8641] = {.lex_state = 1050}, + [8642] = {.lex_state = 1050}, + [8643] = {.lex_state = 1030}, + [8644] = {.lex_state = 649}, + [8645] = {.lex_state = 657}, + [8646] = {.lex_state = 1050}, + [8647] = {.lex_state = 790}, + [8648] = {.lex_state = 1050}, + [8649] = {.lex_state = 572}, + [8650] = {.lex_state = 700}, + [8651] = {.lex_state = 724}, [8652] = {.lex_state = 431}, - [8653] = {.lex_state = 584}, - [8654] = {.lex_state = 1196}, - [8655] = {.lex_state = 431}, - [8656] = {.lex_state = 1279}, - [8657] = {.lex_state = 608}, - [8658] = {.lex_state = 1271}, - [8659] = {.lex_state = 696}, - [8660] = {.lex_state = 584}, - [8661] = {.lex_state = 1043}, - [8662] = {.lex_state = 584}, - [8663] = {.lex_state = 1196}, - [8664] = {.lex_state = 584}, - [8665] = {.lex_state = 114}, - [8666] = {.lex_state = 755}, - [8667] = {.lex_state = 642}, - [8668] = {.lex_state = 94}, - [8669] = {.lex_state = 584}, - [8670] = {.lex_state = 755}, - [8671] = {.lex_state = 584}, - [8672] = {.lex_state = 24}, - [8673] = {.lex_state = 710}, - [8674] = {.lex_state = 1266}, - [8675] = {.lex_state = 431}, - [8676] = {.lex_state = 710}, - [8677] = {.lex_state = 3210}, - [8678] = {.lex_state = 710}, - [8679] = {.lex_state = 584}, - [8680] = {.lex_state = 24}, - [8681] = {.lex_state = 584}, - [8682] = {.lex_state = 584}, - [8683] = {.lex_state = 778}, - [8684] = {.lex_state = 584}, - [8685] = {.lex_state = 24}, - [8686] = {.lex_state = 720}, - [8687] = {.lex_state = 584}, - [8688] = {.lex_state = 584}, - [8689] = {.lex_state = 1043}, - [8690] = {.lex_state = 584}, - [8691] = {.lex_state = 584}, - [8692] = {.lex_state = 584}, - [8693] = {.lex_state = 778}, - [8694] = {.lex_state = 584}, - [8695] = {.lex_state = 642}, - [8696] = {.lex_state = 584}, - [8697] = {.lex_state = 1262}, - [8698] = {.lex_state = 584}, - [8699] = {.lex_state = 710}, - [8700] = {.lex_state = 584}, - [8701] = {.lex_state = 24}, - [8702] = {.lex_state = 584}, - [8703] = {.lex_state = 584}, - [8704] = {.lex_state = 584}, - [8705] = {.lex_state = 584}, - [8706] = {.lex_state = 584}, - [8707] = {.lex_state = 584}, - [8708] = {.lex_state = 663}, - [8709] = {.lex_state = 584}, - [8710] = {.lex_state = 1043}, - [8711] = {.lex_state = 355}, - [8712] = {.lex_state = 1196}, - [8713] = {.lex_state = 1266}, - [8714] = {.lex_state = 1130}, - [8715] = {.lex_state = 185}, - [8716] = {.lex_state = 24}, - [8717] = {.lex_state = 24}, - [8718] = {.lex_state = 431}, - [8719] = {.lex_state = 1043}, + [8653] = {.lex_state = 631}, + [8654] = {.lex_state = 790}, + [8655] = {.lex_state = 790}, + [8656] = {.lex_state = 643}, + [8657] = {.lex_state = 572}, + [8658] = {.lex_state = 1050}, + [8659] = {.lex_state = 669}, + [8660] = {.lex_state = 1165}, + [8661] = {.lex_state = 1165}, + [8662] = {.lex_state = 790}, + [8663] = {.lex_state = 790}, + [8664] = {.lex_state = 756}, + [8665] = {.lex_state = 572}, + [8666] = {.lex_state = 777}, + [8667] = {.lex_state = 1050}, + [8668] = {.lex_state = 1165}, + [8669] = {.lex_state = 1165}, + [8670] = {.lex_state = 243}, + [8671] = {.lex_state = 729}, + [8672] = {.lex_state = 1165}, + [8673] = {.lex_state = 790}, + [8674] = {.lex_state = 1050}, + [8675] = {.lex_state = 790}, + [8676] = {.lex_state = 1050}, + [8677] = {.lex_state = 572}, + [8678] = {.lex_state = 431}, + [8679] = {.lex_state = 431}, + [8680] = {.lex_state = 1050}, + [8681] = {.lex_state = 1050}, + [8682] = {.lex_state = 722}, + [8683] = {.lex_state = 547}, + [8684] = {.lex_state = 1050}, + [8685] = {.lex_state = 1050}, + [8686] = {.lex_state = 547}, + [8687] = {.lex_state = 1050}, + [8688] = {.lex_state = 790}, + [8689] = {.lex_state = 1165}, + [8690] = {.lex_state = 790}, + [8691] = {.lex_state = 572}, + [8692] = {.lex_state = 547}, + [8693] = {.lex_state = 756}, + [8694] = {.lex_state = 700}, + [8695] = {.lex_state = 752}, + [8696] = {.lex_state = 1050}, + [8697] = {.lex_state = 641}, + [8698] = {.lex_state = 777}, + [8699] = {.lex_state = 547}, + [8700] = {.lex_state = 790}, + [8701] = {.lex_state = 547}, + [8702] = {.lex_state = 790}, + [8703] = {.lex_state = 572}, + [8704] = {.lex_state = 1050}, + [8705] = {.lex_state = 547}, + [8706] = {.lex_state = 643}, + [8707] = {.lex_state = 1050}, + [8708] = {.lex_state = 1050}, + [8709] = {.lex_state = 1050}, + [8710] = {.lex_state = 1050}, + [8711] = {.lex_state = 1050}, + [8712] = {.lex_state = 790}, + [8713] = {.lex_state = 710}, + [8714] = {.lex_state = 1050}, + [8715] = {.lex_state = 1050}, + [8716] = {.lex_state = 790}, + [8717] = {.lex_state = 572}, + [8718] = {.lex_state = 657}, + [8719] = {.lex_state = 700}, [8720] = {.lex_state = 547}, - [8721] = {.lex_state = 1196}, - [8722] = {.lex_state = 185}, - [8723] = {.lex_state = 1196}, - [8724] = {.lex_state = 185}, - [8725] = {.lex_state = 755}, - [8726] = {.lex_state = 753}, - [8727] = {.lex_state = 1043}, - [8728] = {.lex_state = 547}, - [8729] = {.lex_state = 54}, - [8730] = {.lex_state = 54}, - [8731] = {.lex_state = 54}, - [8732] = {.lex_state = 54}, - [8733] = {.lex_state = 24}, - [8734] = {.lex_state = 584}, - [8735] = {.lex_state = 606}, - [8736] = {.lex_state = 1196}, - [8737] = {.lex_state = 1196}, - [8738] = {.lex_state = 584}, - [8739] = {.lex_state = 1196}, - [8740] = {.lex_state = 1196}, - [8741] = {.lex_state = 24}, - [8742] = {.lex_state = 185}, - [8743] = {.lex_state = 428}, - [8744] = {.lex_state = 584}, - [8745] = {.lex_state = 24}, - [8746] = {.lex_state = 608}, - [8747] = {.lex_state = 723}, - [8748] = {.lex_state = 431}, - [8749] = {.lex_state = 755}, - [8750] = {.lex_state = 24}, - [8751] = {.lex_state = 584}, - [8752] = {.lex_state = 24}, - [8753] = {.lex_state = 24}, - [8754] = {.lex_state = 1035}, - [8755] = {.lex_state = 24}, - [8756] = {.lex_state = 1196}, - [8757] = {.lex_state = 2596}, - [8758] = {.lex_state = 608}, - [8759] = {.lex_state = 24}, - [8760] = {.lex_state = 547}, - [8761] = {.lex_state = 584}, - [8762] = {.lex_state = 1035}, - [8763] = {.lex_state = 1279}, - [8764] = {.lex_state = 185}, - [8765] = {.lex_state = 640}, - [8766] = {.lex_state = 584}, - [8767] = {.lex_state = 428}, - [8768] = {.lex_state = 640}, - [8769] = {.lex_state = 584}, - [8770] = {.lex_state = 1196}, - [8771] = {.lex_state = 1196}, - [8772] = {.lex_state = 1043}, - [8773] = {.lex_state = 185}, - [8774] = {.lex_state = 185}, - [8775] = {.lex_state = 185}, - [8776] = {.lex_state = 778}, - [8777] = {.lex_state = 642}, - [8778] = {.lex_state = 1279}, - [8779] = {.lex_state = 24}, - [8780] = {.lex_state = 710}, - [8781] = {.lex_state = 759}, - [8782] = {.lex_state = 640}, - [8783] = {.lex_state = 1035}, - [8784] = {.lex_state = 566}, - [8785] = {.lex_state = 631}, - [8786] = {.lex_state = 1196}, - [8787] = {.lex_state = 698}, - [8788] = {.lex_state = 1196}, - [8789] = {.lex_state = 355}, - [8790] = {.lex_state = 24}, - [8791] = {.lex_state = 1196}, - [8792] = {.lex_state = 431}, - [8793] = {.lex_state = 1196}, - [8794] = {.lex_state = 1196}, - [8795] = {.lex_state = 1196}, - [8796] = {.lex_state = 205}, - [8797] = {.lex_state = 3210}, - [8798] = {.lex_state = 1196}, - [8799] = {.lex_state = 1065}, - [8800] = {.lex_state = 1196}, - [8801] = {.lex_state = 1196}, - [8802] = {.lex_state = 24}, - [8803] = {.lex_state = 725}, - [8804] = {.lex_state = 697}, - [8805] = {.lex_state = 710}, - [8806] = {.lex_state = 1196}, - [8807] = {.lex_state = 1266}, - [8808] = {.lex_state = 1043}, - [8809] = {.lex_state = 1196}, - [8810] = {.lex_state = 1043}, - [8811] = {.lex_state = 1196}, - [8812] = {.lex_state = 1196}, - [8813] = {.lex_state = 584}, - [8814] = {.lex_state = 24}, - [8815] = {.lex_state = 547}, - [8816] = {.lex_state = 1196}, - [8817] = {.lex_state = 1196}, - [8818] = {.lex_state = 185}, - [8819] = {.lex_state = 584}, + [8721] = {.lex_state = 1165}, + [8722] = {.lex_state = 547}, + [8723] = {.lex_state = 790}, + [8724] = {.lex_state = 1050}, + [8725] = {.lex_state = 790}, + [8726] = {.lex_state = 572}, + [8727] = {.lex_state = 1165}, + [8728] = {.lex_state = 1165}, + [8729] = {.lex_state = 1165}, + [8730] = {.lex_state = 643}, + [8731] = {.lex_state = 641}, + [8732] = {.lex_state = 547}, + [8733] = {.lex_state = 1050}, + [8734] = {.lex_state = 1137}, + [8735] = {.lex_state = 790}, + [8736] = {.lex_state = 1050}, + [8737] = {.lex_state = 1050}, + [8738] = {.lex_state = 1030}, + [8739] = {.lex_state = 790}, + [8740] = {.lex_state = 1050}, + [8741] = {.lex_state = 572}, + [8742] = {.lex_state = 547}, + [8743] = {.lex_state = 1050}, + [8744] = {.lex_state = 1050}, + [8745] = {.lex_state = 1050}, + [8746] = {.lex_state = 1050}, + [8747] = {.lex_state = 1050}, + [8748] = {.lex_state = 1050}, + [8749] = {.lex_state = 1050}, + [8750] = {.lex_state = 641}, + [8751] = {.lex_state = 790}, + [8752] = {.lex_state = 1050}, + [8753] = {.lex_state = 1165}, + [8754] = {.lex_state = 1050}, + [8755] = {.lex_state = 790}, + [8756] = {.lex_state = 1050}, + [8757] = {.lex_state = 572}, + [8758] = {.lex_state = 641}, + [8759] = {.lex_state = 790}, + [8760] = {.lex_state = 1050}, + [8761] = {.lex_state = 790}, + [8762] = {.lex_state = 1165}, + [8763] = {.lex_state = 572}, + [8764] = {.lex_state = 1050}, + [8765] = {.lex_state = 790}, + [8766] = {.lex_state = 1030}, + [8767] = {.lex_state = 790}, + [8768] = {.lex_state = 572}, + [8769] = {.lex_state = 790}, + [8770] = {.lex_state = 1050}, + [8771] = {.lex_state = 1050}, + [8772] = {.lex_state = 790}, + [8773] = {.lex_state = 572}, + [8774] = {.lex_state = 1050}, + [8775] = {.lex_state = 790}, + [8776] = {.lex_state = 1050}, + [8777] = {.lex_state = 790}, + [8778] = {.lex_state = 572}, + [8779] = {.lex_state = 1050}, + [8780] = {.lex_state = 790}, + [8781] = {.lex_state = 1050}, + [8782] = {.lex_state = 790}, + [8783] = {.lex_state = 572}, + [8784] = {.lex_state = 790}, + [8785] = {.lex_state = 790}, + [8786] = {.lex_state = 1050}, + [8787] = {.lex_state = 572}, + [8788] = {.lex_state = 1050}, + [8789] = {.lex_state = 1050}, + [8790] = {.lex_state = 790}, + [8791] = {.lex_state = 790}, + [8792] = {.lex_state = 572}, + [8793] = {.lex_state = 790}, + [8794] = {.lex_state = 790}, + [8795] = {.lex_state = 572}, + [8796] = {.lex_state = 722}, + [8797] = {.lex_state = 572}, + [8798] = {.lex_state = 790}, + [8799] = {.lex_state = 572}, + [8800] = {.lex_state = 572}, + [8801] = {.lex_state = 572}, + [8802] = {.lex_state = 572}, + [8803] = {.lex_state = 572}, + [8804] = {.lex_state = 572}, + [8805] = {.lex_state = 572}, + [8806] = {.lex_state = 572}, + [8807] = {.lex_state = 572}, + [8808] = {.lex_state = 572}, + [8809] = {.lex_state = 572}, + [8810] = {.lex_state = 572}, + [8811] = {.lex_state = 572}, + [8812] = {.lex_state = 572}, + [8813] = {.lex_state = 572}, + [8814] = {.lex_state = 572}, + [8815] = {.lex_state = 572}, + [8816] = {.lex_state = 572}, + [8817] = {.lex_state = 572}, + [8818] = {.lex_state = 572}, + [8819] = {.lex_state = 572}, [8820] = {.lex_state = 572}, - [8821] = {.lex_state = 780}, - [8822] = {.lex_state = 776}, - [8823] = {.lex_state = 662}, - [8824] = {.lex_state = 1065}, - [8825] = {.lex_state = 727}, - [8826] = {.lex_state = 1065}, - [8827] = {.lex_state = 776}, - [8828] = {.lex_state = 1065}, + [8821] = {.lex_state = 572}, + [8822] = {.lex_state = 572}, + [8823] = {.lex_state = 572}, + [8824] = {.lex_state = 572}, + [8825] = {.lex_state = 572}, + [8826] = {.lex_state = 572}, + [8827] = {.lex_state = 572}, + [8828] = {.lex_state = 572}, [8829] = {.lex_state = 572}, - [8830] = {.lex_state = 1065}, - [8831] = {.lex_state = 1065}, - [8832] = {.lex_state = 699}, - [8833] = {.lex_state = 776}, - [8834] = {.lex_state = 1196}, - [8835] = {.lex_state = 1065}, - [8836] = {.lex_state = 1196}, - [8837] = {.lex_state = 776}, - [8838] = {.lex_state = 547}, - [8839] = {.lex_state = 784}, - [8840] = {.lex_state = 776}, - [8841] = {.lex_state = 170}, - [8842] = {.lex_state = 1065}, - [8843] = {.lex_state = 243}, - [8844] = {.lex_state = 776}, - [8845] = {.lex_state = 699}, - [8846] = {.lex_state = 1065}, - [8847] = {.lex_state = 776}, - [8848] = {.lex_state = 1065}, - [8849] = {.lex_state = 572}, - [8850] = {.lex_state = 776}, - [8851] = {.lex_state = 1065}, - [8852] = {.lex_state = 776}, - [8853] = {.lex_state = 784}, - [8854] = {.lex_state = 776}, - [8855] = {.lex_state = 547}, + [8830] = {.lex_state = 572}, + [8831] = {.lex_state = 572}, + [8832] = {.lex_state = 572}, + [8833] = {.lex_state = 572}, + [8834] = {.lex_state = 572}, + [8835] = {.lex_state = 572}, + [8836] = {.lex_state = 572}, + [8837] = {.lex_state = 572}, + [8838] = {.lex_state = 572}, + [8839] = {.lex_state = 572}, + [8840] = {.lex_state = 572}, + [8841] = {.lex_state = 572}, + [8842] = {.lex_state = 572}, + [8843] = {.lex_state = 572}, + [8844] = {.lex_state = 572}, + [8845] = {.lex_state = 1050}, + [8846] = {.lex_state = 643}, + [8847] = {.lex_state = 1050}, + [8848] = {.lex_state = 1050}, + [8849] = {.lex_state = 547}, + [8850] = {.lex_state = 94}, + [8851] = {.lex_state = 727}, + [8852] = {.lex_state = 170}, + [8853] = {.lex_state = 1137}, + [8854] = {.lex_state = 781}, + [8855] = {.lex_state = 170}, [8856] = {.lex_state = 572}, - [8857] = {.lex_state = 2592}, - [8858] = {.lex_state = 547}, - [8859] = {.lex_state = 1065}, - [8860] = {.lex_state = 722}, - [8861] = {.lex_state = 756}, - [8862] = {.lex_state = 572}, - [8863] = {.lex_state = 1065}, - [8864] = {.lex_state = 1065}, - [8865] = {.lex_state = 1065}, - [8866] = {.lex_state = 547}, - [8867] = {.lex_state = 776}, - [8868] = {.lex_state = 776}, - [8869] = {.lex_state = 134}, - [8870] = {.lex_state = 641}, - [8871] = {.lex_state = 1065}, - [8872] = {.lex_state = 1065}, - [8873] = {.lex_state = 1065}, - [8874] = {.lex_state = 1196}, - [8875] = {.lex_state = 710}, - [8876] = {.lex_state = 1065}, - [8877] = {.lex_state = 776}, - [8878] = {.lex_state = 1035}, - [8879] = {.lex_state = 784}, - [8880] = {.lex_state = 729}, - [8881] = {.lex_state = 776}, - [8882] = {.lex_state = 1065}, + [8857] = {.lex_state = 243}, + [8858] = {.lex_state = 243}, + [8859] = {.lex_state = 1165}, + [8860] = {.lex_state = 547}, + [8861] = {.lex_state = 243}, + [8862] = {.lex_state = 1165}, + [8863] = {.lex_state = 1165}, + [8864] = {.lex_state = 547}, + [8865] = {.lex_state = 431}, + [8866] = {.lex_state = 699}, + [8867] = {.lex_state = 547}, + [8868] = {.lex_state = 790}, + [8869] = {.lex_state = 547}, + [8870] = {.lex_state = 727}, + [8871] = {.lex_state = 1050}, + [8872] = {.lex_state = 431}, + [8873] = {.lex_state = 1245}, + [8874] = {.lex_state = 727}, + [8875] = {.lex_state = 547}, + [8876] = {.lex_state = 170}, + [8877] = {.lex_state = 431}, + [8878] = {.lex_state = 1050}, + [8879] = {.lex_state = 1050}, + [8880] = {.lex_state = 1165}, + [8881] = {.lex_state = 1165}, + [8882] = {.lex_state = 1050}, [8883] = {.lex_state = 572}, - [8884] = {.lex_state = 1065}, - [8885] = {.lex_state = 756}, - [8886] = {.lex_state = 547}, - [8887] = {.lex_state = 1065}, - [8888] = {.lex_state = 572}, - [8889] = {.lex_state = 1065}, - [8890] = {.lex_state = 1065}, - [8891] = {.lex_state = 776}, - [8892] = {.lex_state = 1035}, - [8893] = {.lex_state = 1065}, - [8894] = {.lex_state = 776}, - [8895] = {.lex_state = 1065}, - [8896] = {.lex_state = 1065}, - [8897] = {.lex_state = 1065}, - [8898] = {.lex_state = 1065}, - [8899] = {.lex_state = 729}, - [8900] = {.lex_state = 1065}, - [8901] = {.lex_state = 776}, - [8902] = {.lex_state = 572}, - [8903] = {.lex_state = 776}, - [8904] = {.lex_state = 1065}, - [8905] = {.lex_state = 572}, - [8906] = {.lex_state = 1065}, - [8907] = {.lex_state = 776}, - [8908] = {.lex_state = 1065}, - [8909] = {.lex_state = 572}, - [8910] = {.lex_state = 1065}, - [8911] = {.lex_state = 1065}, - [8912] = {.lex_state = 694}, - [8913] = {.lex_state = 1065}, - [8914] = {.lex_state = 202}, - [8915] = {.lex_state = 643}, - [8916] = {.lex_state = 784}, - [8917] = {.lex_state = 662}, - [8918] = {.lex_state = 1065}, - [8919] = {.lex_state = 572}, - [8920] = {.lex_state = 1065}, - [8921] = {.lex_state = 657}, - [8922] = {.lex_state = 1065}, - [8923] = {.lex_state = 752}, - [8924] = {.lex_state = 1065}, - [8925] = {.lex_state = 1065}, - [8926] = {.lex_state = 776}, - [8927] = {.lex_state = 1065}, - [8928] = {.lex_state = 63}, - [8929] = {.lex_state = 1065}, - [8930] = {.lex_state = 776}, - [8931] = {.lex_state = 1065}, - [8932] = {.lex_state = 572}, - [8933] = {.lex_state = 1065}, - [8934] = {.lex_state = 776}, - [8935] = {.lex_state = 1065}, - [8936] = {.lex_state = 238}, - [8937] = {.lex_state = 700}, - [8938] = {.lex_state = 639}, - [8939] = {.lex_state = 547}, - [8940] = {.lex_state = 547}, - [8941] = {.lex_state = 547}, - [8942] = {.lex_state = 700}, - [8943] = {.lex_state = 1065}, - [8944] = {.lex_state = 1065}, - [8945] = {.lex_state = 1065}, - [8946] = {.lex_state = 238}, - [8947] = {.lex_state = 1065}, - [8948] = {.lex_state = 1065}, - [8949] = {.lex_state = 776}, - [8950] = {.lex_state = 547}, - [8951] = {.lex_state = 1065}, - [8952] = {.lex_state = 1065}, - [8953] = {.lex_state = 776}, - [8954] = {.lex_state = 1065}, - [8955] = {.lex_state = 572}, - [8956] = {.lex_state = 1065}, - [8957] = {.lex_state = 641}, - [8958] = {.lex_state = 547}, - [8959] = {.lex_state = 776}, - [8960] = {.lex_state = 1065}, - [8961] = {.lex_state = 1065}, - [8962] = {.lex_state = 756}, - [8963] = {.lex_state = 776}, - [8964] = {.lex_state = 776}, - [8965] = {.lex_state = 572}, - [8966] = {.lex_state = 776}, - [8967] = {.lex_state = 1065}, - [8968] = {.lex_state = 1065}, - [8969] = {.lex_state = 776}, - [8970] = {.lex_state = 94}, - [8971] = {.lex_state = 776}, - [8972] = {.lex_state = 641}, - [8973] = {.lex_state = 776}, - [8974] = {.lex_state = 1065}, - [8975] = {.lex_state = 572}, - [8976] = {.lex_state = 1065}, - [8977] = {.lex_state = 776}, - [8978] = {.lex_state = 649}, - [8979] = {.lex_state = 776}, - [8980] = {.lex_state = 572}, - [8981] = {.lex_state = 238}, - [8982] = {.lex_state = 238}, - [8983] = {.lex_state = 776}, - [8984] = {.lex_state = 1065}, - [8985] = {.lex_state = 572}, - [8986] = {.lex_state = 641}, - [8987] = {.lex_state = 1065}, - [8988] = {.lex_state = 1065}, - [8989] = {.lex_state = 776}, - [8990] = {.lex_state = 1065}, - [8991] = {.lex_state = 1029}, - [8992] = {.lex_state = 1065}, - [8993] = {.lex_state = 776}, - [8994] = {.lex_state = 1065}, - [8995] = {.lex_state = 572}, - [8996] = {.lex_state = 776}, - [8997] = {.lex_state = 547}, - [8998] = {.lex_state = 1065}, - [8999] = {.lex_state = 776}, - [9000] = {.lex_state = 1065}, - [9001] = {.lex_state = 572}, - [9002] = {.lex_state = 1065}, - [9003] = {.lex_state = 776}, - [9004] = {.lex_state = 1065}, - [9005] = {.lex_state = 572}, - [9006] = {.lex_state = 1196}, - [9007] = {.lex_state = 1065}, - [9008] = {.lex_state = 1065}, - [9009] = {.lex_state = 776}, - [9010] = {.lex_state = 699}, - [9011] = {.lex_state = 1065}, - [9012] = {.lex_state = 776}, - [9013] = {.lex_state = 776}, - [9014] = {.lex_state = 572}, - [9015] = {.lex_state = 1065}, - [9016] = {.lex_state = 1065}, - [9017] = {.lex_state = 776}, - [9018] = {.lex_state = 1065}, - [9019] = {.lex_state = 1065}, - [9020] = {.lex_state = 776}, - [9021] = {.lex_state = 1065}, - [9022] = {.lex_state = 572}, - [9023] = {.lex_state = 547}, - [9024] = {.lex_state = 1275}, - [9025] = {.lex_state = 776}, - [9026] = {.lex_state = 572}, - [9027] = {.lex_state = 776}, - [9028] = {.lex_state = 1196}, - [9029] = {.lex_state = 572}, - [9030] = {.lex_state = 776}, - [9031] = {.lex_state = 1065}, - [9032] = {.lex_state = 572}, - [9033] = {.lex_state = 547}, - [9034] = {.lex_state = 1065}, - [9035] = {.lex_state = 1065}, - [9036] = {.lex_state = 572}, - [9037] = {.lex_state = 572}, - [9038] = {.lex_state = 572}, - [9039] = {.lex_state = 572}, - [9040] = {.lex_state = 572}, - [9041] = {.lex_state = 572}, - [9042] = {.lex_state = 572}, - [9043] = {.lex_state = 572}, - [9044] = {.lex_state = 572}, - [9045] = {.lex_state = 572}, - [9046] = {.lex_state = 572}, - [9047] = {.lex_state = 572}, - [9048] = {.lex_state = 572}, - [9049] = {.lex_state = 572}, - [9050] = {.lex_state = 572}, - [9051] = {.lex_state = 572}, - [9052] = {.lex_state = 572}, - [9053] = {.lex_state = 572}, - [9054] = {.lex_state = 572}, - [9055] = {.lex_state = 572}, - [9056] = {.lex_state = 572}, - [9057] = {.lex_state = 572}, - [9058] = {.lex_state = 572}, - [9059] = {.lex_state = 572}, - [9060] = {.lex_state = 572}, - [9061] = {.lex_state = 572}, - [9062] = {.lex_state = 572}, - [9063] = {.lex_state = 572}, - [9064] = {.lex_state = 572}, - [9065] = {.lex_state = 572}, - [9066] = {.lex_state = 572}, - [9067] = {.lex_state = 572}, - [9068] = {.lex_state = 572}, - [9069] = {.lex_state = 572}, - [9070] = {.lex_state = 572}, - [9071] = {.lex_state = 572}, - [9072] = {.lex_state = 572}, - [9073] = {.lex_state = 572}, - [9074] = {.lex_state = 572}, - [9075] = {.lex_state = 572}, - [9076] = {.lex_state = 572}, - [9077] = {.lex_state = 572}, - [9078] = {.lex_state = 572}, - [9079] = {.lex_state = 572}, - [9080] = {.lex_state = 572}, - [9081] = {.lex_state = 572}, - [9082] = {.lex_state = 572}, - [9083] = {.lex_state = 572}, - [9084] = {.lex_state = 572}, - [9085] = {.lex_state = 1065}, - [9086] = {.lex_state = 572}, - [9087] = {.lex_state = 1196}, - [9088] = {.lex_state = 1065}, - [9089] = {.lex_state = 1065}, - [9090] = {.lex_state = 428}, - [9091] = {.lex_state = 1035}, - [9092] = {.lex_state = 1268}, - [9093] = {.lex_state = 756}, - [9094] = {.lex_state = 710}, - [9095] = {.lex_state = 1065}, - [9096] = {.lex_state = 776}, - [9097] = {.lex_state = 1065}, - [9098] = {.lex_state = 727}, - [9099] = {.lex_state = 776}, - [9100] = {.lex_state = 1065}, - [9101] = {.lex_state = 547}, - [9102] = {.lex_state = 547}, - [9103] = {.lex_state = 1130}, - [9104] = {.lex_state = 1065}, - [9105] = {.lex_state = 780}, - [9106] = {.lex_state = 1065}, - [9107] = {.lex_state = 1065}, - [9108] = {.lex_state = 641}, - [9109] = {.lex_state = 757}, - [9110] = {.lex_state = 1065}, - [9111] = {.lex_state = 776}, - [9112] = {.lex_state = 1035}, - [9113] = {.lex_state = 1065}, - [9114] = {.lex_state = 776}, - [9115] = {.lex_state = 779}, - [9116] = {.lex_state = 1065}, - [9117] = {.lex_state = 776}, - [9118] = {.lex_state = 170}, - [9119] = {.lex_state = 756}, - [9120] = {.lex_state = 572}, - [9121] = {.lex_state = 572}, - [9122] = {.lex_state = 726}, - [9123] = {.lex_state = 1035}, - [9124] = {.lex_state = 1065}, - [9125] = {.lex_state = 572}, - [9126] = {.lex_state = 641}, - [9127] = {.lex_state = 243}, - [9128] = {.lex_state = 243}, - [9129] = {.lex_state = 243}, - [9130] = {.lex_state = 1065}, - [9131] = {.lex_state = 699}, - [9132] = {.lex_state = 1065}, - [9133] = {.lex_state = 756}, - [9134] = {.lex_state = 63}, - [9135] = {.lex_state = 1065}, - [9136] = {.lex_state = 757}, - [9137] = {.lex_state = 1029}, - [9138] = {.lex_state = 222}, - [9139] = {.lex_state = 1065}, - [9140] = {.lex_state = 1196}, - [9141] = {.lex_state = 1065}, - [9142] = {.lex_state = 1065}, - [9143] = {.lex_state = 641}, - [9144] = {.lex_state = 547}, - [9145] = {.lex_state = 776}, - [9146] = {.lex_state = 700}, - [9147] = {.lex_state = 1065}, - [9148] = {.lex_state = 1065}, - [9149] = {.lex_state = 1065}, - [9150] = {.lex_state = 1196}, - [9151] = {.lex_state = 1065}, - [9152] = {.lex_state = 776}, - [9153] = {.lex_state = 1196}, - [9154] = {.lex_state = 724}, - [9155] = {.lex_state = 1035}, - [9156] = {.lex_state = 696}, - [9157] = {.lex_state = 1065}, - [9158] = {.lex_state = 1065}, - [9159] = {.lex_state = 1065}, - [9160] = {.lex_state = 708}, - [9161] = {.lex_state = 757}, - [9162] = {.lex_state = 1065}, - [9163] = {.lex_state = 776}, - [9164] = {.lex_state = 727}, - [9165] = {.lex_state = 1065}, - [9166] = {.lex_state = 572}, - [9167] = {.lex_state = 431}, - [9168] = {.lex_state = 1065}, - [9169] = {.lex_state = 1065}, - [9170] = {.lex_state = 547}, - [9171] = {.lex_state = 700}, - [9172] = {.lex_state = 1065}, - [9173] = {.lex_state = 1065}, - [9174] = {.lex_state = 1065}, - [9175] = {.lex_state = 428}, - [9176] = {.lex_state = 776}, - [9177] = {.lex_state = 776}, - [9178] = {.lex_state = 1065}, - [9179] = {.lex_state = 572}, - [9180] = {.lex_state = 2595}, - [9181] = {.lex_state = 1065}, - [9182] = {.lex_state = 547}, - [9183] = {.lex_state = 780}, - [9184] = {.lex_state = 1065}, - [9185] = {.lex_state = 547}, - [9186] = {.lex_state = 547}, - [9187] = {.lex_state = 547}, - [9188] = {.lex_state = 1196}, - [9189] = {.lex_state = 756}, - [9190] = {.lex_state = 1196}, - [9191] = {.lex_state = 572}, - [9192] = {.lex_state = 776}, - [9193] = {.lex_state = 431}, - [9194] = {.lex_state = 699}, - [9195] = {.lex_state = 1196}, - [9196] = {.lex_state = 572}, - [9197] = {.lex_state = 1065}, - [9198] = {.lex_state = 710}, - [9199] = {.lex_state = 1196}, - [9200] = {.lex_state = 547}, - [9201] = {.lex_state = 1196}, - [9202] = {.lex_state = 547}, - [9203] = {.lex_state = 643}, - [9204] = {.lex_state = 572}, - [9205] = {.lex_state = 780}, - [9206] = {.lex_state = 572}, - [9207] = {.lex_state = 3210}, - [9208] = {.lex_state = 776}, - [9209] = {.lex_state = 776}, - [9210] = {.lex_state = 1196}, - [9211] = {.lex_state = 1065}, - [9212] = {.lex_state = 1065}, - [9213] = {.lex_state = 431}, - [9214] = {.lex_state = 1065}, - [9215] = {.lex_state = 572}, - [9216] = {.lex_state = 1196}, - [9217] = {.lex_state = 547}, - [9218] = {.lex_state = 1065}, - [9219] = {.lex_state = 431}, - [9220] = {.lex_state = 643}, - [9221] = {.lex_state = 1065}, - [9222] = {.lex_state = 1065}, - [9223] = {.lex_state = 1065}, - [9224] = {.lex_state = 1065}, - [9225] = {.lex_state = 1065}, - [9226] = {.lex_state = 700}, - [9227] = {.lex_state = 547}, - [9228] = {.lex_state = 1065}, - [9229] = {.lex_state = 547}, - [9230] = {.lex_state = 243}, - [9231] = {.lex_state = 710}, - [9232] = {.lex_state = 63}, - [9233] = {.lex_state = 757}, - [9234] = {.lex_state = 631}, - [9235] = {.lex_state = 1065}, - [9236] = {.lex_state = 781}, - [9237] = {.lex_state = 776}, - [9238] = {.lex_state = 1035}, - [9239] = {.lex_state = 754}, - [9240] = {.lex_state = 1196}, - [9241] = {.lex_state = 1065}, - [9242] = {.lex_state = 776}, - [9243] = {.lex_state = 1065}, - [9244] = {.lex_state = 643}, - [9245] = {.lex_state = 776}, - [9246] = {.lex_state = 1065}, - [9247] = {.lex_state = 1065}, - [9248] = {.lex_state = 779}, - [9249] = {.lex_state = 1065}, - [9250] = {.lex_state = 547}, - [9251] = {.lex_state = 729}, - [9252] = {.lex_state = 243}, - [9253] = {.lex_state = 727}, - [9254] = {.lex_state = 63}, - [9255] = {.lex_state = 243}, - [9256] = {.lex_state = 1065}, - [9257] = {.lex_state = 572}, - [9258] = {.lex_state = 1065}, - [9259] = {.lex_state = 776}, - [9260] = {.lex_state = 1065}, - [9261] = {.lex_state = 1065}, - [9262] = {.lex_state = 1065}, - [9263] = {.lex_state = 639}, - [9264] = {.lex_state = 1065}, - [9265] = {.lex_state = 547}, - [9266] = {.lex_state = 1065}, - [9267] = {.lex_state = 776}, - [9268] = {.lex_state = 1065}, - [9269] = {.lex_state = 776}, - [9270] = {.lex_state = 1065}, - [9271] = {.lex_state = 1065}, - [9272] = {.lex_state = 243}, - [9273] = {.lex_state = 98}, - [9274] = {.lex_state = 572}, - [9275] = {.lex_state = 63}, - [9276] = {.lex_state = 94}, - [9277] = {.lex_state = 1196}, - [9278] = {.lex_state = 780}, - [9279] = {.lex_state = 1035}, - [9280] = {.lex_state = 1065}, - [9281] = {.lex_state = 572}, - [9282] = {.lex_state = 547}, - [9283] = {.lex_state = 547}, - [9284] = {.lex_state = 1065}, - [9285] = {.lex_state = 1196}, - [9286] = {.lex_state = 1065}, - [9287] = {.lex_state = 1065}, - [9288] = {.lex_state = 1065}, - [9289] = {.lex_state = 243}, - [9290] = {.lex_state = 1065}, - [9291] = {.lex_state = 776}, - [9292] = {.lex_state = 547}, - [9293] = {.lex_state = 243}, - [9294] = {.lex_state = 547}, - [9295] = {.lex_state = 1065}, - [9296] = {.lex_state = 1065}, - [9297] = {.lex_state = 243}, - [9298] = {.lex_state = 784}, - [9299] = {.lex_state = 700}, - [9300] = {.lex_state = 547}, - [9301] = {.lex_state = 243}, - [9302] = {.lex_state = 1196}, - [9303] = {.lex_state = 1196}, - [9304] = {.lex_state = 667}, - [9305] = {.lex_state = 243}, - [9306] = {.lex_state = 1159}, - [9307] = {.lex_state = 643}, - [9308] = {.lex_state = 1065}, - [9309] = {.lex_state = 243}, - [9310] = {.lex_state = 1035}, - [9311] = {.lex_state = 1065}, - [9312] = {.lex_state = 547}, - [9313] = {.lex_state = 243}, - [9314] = {.lex_state = 699}, - [9315] = {.lex_state = 1065}, - [9316] = {.lex_state = 1065}, - [9317] = {.lex_state = 243}, - [9318] = {.lex_state = 1065}, - [9319] = {.lex_state = 1196}, - [9320] = {.lex_state = 1196}, - [9321] = {.lex_state = 243}, - [9322] = {.lex_state = 1065}, - [9323] = {.lex_state = 428}, - [9324] = {.lex_state = 1065}, - [9325] = {.lex_state = 243}, - [9326] = {.lex_state = 547}, - [9327] = {.lex_state = 94}, - [9328] = {.lex_state = 431}, - [9329] = {.lex_state = 243}, - [9330] = {.lex_state = 776}, - [9331] = {.lex_state = 776}, - [9332] = {.lex_state = 1065}, - [9333] = {.lex_state = 243}, - [9334] = {.lex_state = 1065}, - [9335] = {.lex_state = 431}, - [9336] = {.lex_state = 1196}, - [9337] = {.lex_state = 243}, - [9338] = {.lex_state = 547}, - [9339] = {.lex_state = 776}, - [9340] = {.lex_state = 1196}, - [9341] = {.lex_state = 243}, - [9342] = {.lex_state = 1065}, - [9343] = {.lex_state = 572}, - [9344] = {.lex_state = 431}, - [9345] = {.lex_state = 243}, - [9346] = {.lex_state = 722}, - [9347] = {.lex_state = 631}, - [9348] = {.lex_state = 1196}, - [9349] = {.lex_state = 243}, - [9350] = {.lex_state = 643}, - [9351] = {.lex_state = 572}, - [9352] = {.lex_state = 699}, - [9353] = {.lex_state = 243}, - [9354] = {.lex_state = 1065}, - [9355] = {.lex_state = 547}, - [9356] = {.lex_state = 547}, - [9357] = {.lex_state = 243}, - [9358] = {.lex_state = 1065}, - [9359] = {.lex_state = 1065}, - [9360] = {.lex_state = 1159}, - [9361] = {.lex_state = 243}, - [9362] = {.lex_state = 1065}, - [9363] = {.lex_state = 729}, - [9364] = {.lex_state = 572}, - [9365] = {.lex_state = 243}, - [9366] = {.lex_state = 1065}, - [9367] = {.lex_state = 1065}, - [9368] = {.lex_state = 1035}, - [9369] = {.lex_state = 243}, - [9370] = {.lex_state = 547}, - [9371] = {.lex_state = 1065}, - [9372] = {.lex_state = 1065}, - [9373] = {.lex_state = 243}, - [9374] = {.lex_state = 1065}, - [9375] = {.lex_state = 1065}, - [9376] = {.lex_state = 243}, - [9377] = {.lex_state = 1065}, - [9378] = {.lex_state = 662}, - [9379] = {.lex_state = 243}, - [9380] = {.lex_state = 1065}, - [9381] = {.lex_state = 243}, - [9382] = {.lex_state = 1065}, - [9383] = {.lex_state = 243}, - [9384] = {.lex_state = 1065}, - [9385] = {.lex_state = 243}, - [9386] = {.lex_state = 428}, - [9387] = {.lex_state = 243}, - [9388] = {.lex_state = 1035}, - [9389] = {.lex_state = 243}, - [9390] = {.lex_state = 243}, - [9391] = {.lex_state = 243}, - [9392] = {.lex_state = 243}, - [9393] = {.lex_state = 243}, - [9394] = {.lex_state = 243}, - [9395] = {.lex_state = 243}, - [9396] = {.lex_state = 243}, - [9397] = {.lex_state = 243}, - [9398] = {.lex_state = 243}, - [9399] = {.lex_state = 1065}, - [9400] = {.lex_state = 657}, - [9401] = {.lex_state = 1065}, - [9402] = {.lex_state = 1065}, - [9403] = {.lex_state = 1065}, - [9404] = {.lex_state = 1065}, - [9405] = {.lex_state = 63}, - [9406] = {.lex_state = 170}, - [9407] = {.lex_state = 431}, - [9408] = {.lex_state = 94}, - [9409] = {.lex_state = 1065}, - [9410] = {.lex_state = 1065}, - [9411] = {.lex_state = 547}, - [9412] = {.lex_state = 1065}, - [9413] = {.lex_state = 202}, - [9414] = {.lex_state = 776}, - [9415] = {.lex_state = 202}, - [9416] = {.lex_state = 1065}, - [9417] = {.lex_state = 202}, - [9418] = {.lex_state = 202}, - [9419] = {.lex_state = 1065}, - [9420] = {.lex_state = 1065}, - [9421] = {.lex_state = 431}, - [9422] = {.lex_state = 202}, - [9423] = {.lex_state = 202}, - [9424] = {.lex_state = 202}, - [9425] = {.lex_state = 202}, - [9426] = {.lex_state = 694}, - [9427] = {.lex_state = 1065}, - [9428] = {.lex_state = 1065}, - [9429] = {.lex_state = 431}, - [9430] = {.lex_state = 185}, - [9431] = {.lex_state = 185}, - [9432] = {.lex_state = 185}, - [9433] = {.lex_state = 700}, - [9434] = {.lex_state = 185}, - [9435] = {.lex_state = 776}, - [9436] = {.lex_state = 431}, - [9437] = {.lex_state = 643}, - [9438] = {.lex_state = 185}, - [9439] = {.lex_state = 185}, - [9440] = {.lex_state = 669}, - [9441] = {.lex_state = 1065}, - [9442] = {.lex_state = 1196}, - [9443] = {.lex_state = 776}, - [9444] = {.lex_state = 579}, - [9445] = {.lex_state = 356}, - [9446] = {.lex_state = 1065}, - [9447] = {.lex_state = 1065}, - [9448] = {.lex_state = 754}, - [9449] = {.lex_state = 134}, - [9450] = {.lex_state = 789}, - [9451] = {.lex_state = 766}, - [9452] = {.lex_state = 98}, - [9453] = {.lex_state = 579}, - [9454] = {.lex_state = 1035}, - [9455] = {.lex_state = 1035}, - [9456] = {.lex_state = 1035}, - [9457] = {.lex_state = 579}, - [9458] = {.lex_state = 356}, - [9459] = {.lex_state = 431}, - [9460] = {.lex_state = 356}, - [9461] = {.lex_state = 431}, - [9462] = {.lex_state = 356}, - [9463] = {.lex_state = 724}, - [9464] = {.lex_state = 758}, - [9465] = {.lex_state = 758}, - [9466] = {.lex_state = 356}, - [9467] = {.lex_state = 0}, - [9468] = {.lex_state = 0}, - [9469] = {.lex_state = 766}, - [9470] = {.lex_state = 758}, - [9471] = {.lex_state = 413}, - [9472] = {.lex_state = 579}, - [9473] = {.lex_state = 356}, - [9474] = {.lex_state = 758}, - [9475] = {.lex_state = 579}, - [9476] = {.lex_state = 579}, - [9477] = {.lex_state = 1035}, - [9478] = {.lex_state = 356}, - [9479] = {.lex_state = 356}, - [9480] = {.lex_state = 431}, - [9481] = {.lex_state = 356}, - [9482] = {.lex_state = 202}, - [9483] = {.lex_state = 431}, - [9484] = {.lex_state = 431}, - [9485] = {.lex_state = 431}, - [9486] = {.lex_state = 730}, - [9487] = {.lex_state = 1035}, - [9488] = {.lex_state = 1035}, - [9489] = {.lex_state = 413}, - [9490] = {.lex_state = 2593}, - [9491] = {.lex_state = 356}, - [9492] = {.lex_state = 766}, - [9493] = {.lex_state = 758}, - [9494] = {.lex_state = 579}, - [9495] = {.lex_state = 579}, - [9496] = {.lex_state = 431}, - [9497] = {.lex_state = 356}, - [9498] = {.lex_state = 0}, - [9499] = {.lex_state = 356}, - [9500] = {.lex_state = 1065}, - [9501] = {.lex_state = 1065}, - [9502] = {.lex_state = 758}, - [9503] = {.lex_state = 431}, - [9504] = {.lex_state = 431}, - [9505] = {.lex_state = 730}, - [9506] = {.lex_state = 1065}, - [9507] = {.lex_state = 1065}, - [9508] = {.lex_state = 766}, - [9509] = {.lex_state = 1065}, - [9510] = {.lex_state = 699}, - [9511] = {.lex_state = 579}, - [9512] = {.lex_state = 413}, - [9513] = {.lex_state = 579}, - [9514] = {.lex_state = 356}, - [9515] = {.lex_state = 1065}, - [9516] = {.lex_state = 356}, - [9517] = {.lex_state = 0}, - [9518] = {.lex_state = 730}, - [9519] = {.lex_state = 699}, - [9520] = {.lex_state = 356}, - [9521] = {.lex_state = 185}, - [9522] = {.lex_state = 413}, - [9523] = {.lex_state = 170}, - [9524] = {.lex_state = 1065}, - [9525] = {.lex_state = 1065}, - [9526] = {.lex_state = 789}, + [8884] = {.lex_state = 572}, + [8885] = {.lex_state = 777}, + [8886] = {.lex_state = 639}, + [8887] = {.lex_state = 572}, + [8888] = {.lex_state = 699}, + [8889] = {.lex_state = 667}, + [8890] = {.lex_state = 243}, + [8891] = {.lex_state = 63}, + [8892] = {.lex_state = 431}, + [8893] = {.lex_state = 699}, + [8894] = {.lex_state = 1050}, + [8895] = {.lex_state = 1050}, + [8896] = {.lex_state = 700}, + [8897] = {.lex_state = 243}, + [8898] = {.lex_state = 63}, + [8899] = {.lex_state = 243}, + [8900] = {.lex_state = 790}, + [8901] = {.lex_state = 1050}, + [8902] = {.lex_state = 1165}, + [8903] = {.lex_state = 781}, + [8904] = {.lex_state = 547}, + [8905] = {.lex_state = 781}, + [8906] = {.lex_state = 572}, + [8907] = {.lex_state = 243}, + [8908] = {.lex_state = 777}, + [8909] = {.lex_state = 777}, + [8910] = {.lex_state = 781}, + [8911] = {.lex_state = 1050}, + [8912] = {.lex_state = 547}, + [8913] = {.lex_state = 243}, + [8914] = {.lex_state = 243}, + [8915] = {.lex_state = 243}, + [8916] = {.lex_state = 1030}, + [8917] = {.lex_state = 243}, + [8918] = {.lex_state = 243}, + [8919] = {.lex_state = 243}, + [8920] = {.lex_state = 547}, + [8921] = {.lex_state = 243}, + [8922] = {.lex_state = 1050}, + [8923] = {.lex_state = 243}, + [8924] = {.lex_state = 756}, + [8925] = {.lex_state = 94}, + [8926] = {.lex_state = 243}, + [8927] = {.lex_state = 1165}, + [8928] = {.lex_state = 243}, + [8929] = {.lex_state = 699}, + [8930] = {.lex_state = 243}, + [8931] = {.lex_state = 1050}, + [8932] = {.lex_state = 1050}, + [8933] = {.lex_state = 727}, + [8934] = {.lex_state = 243}, + [8935] = {.lex_state = 243}, + [8936] = {.lex_state = 1050}, + [8937] = {.lex_state = 243}, + [8938] = {.lex_state = 1050}, + [8939] = {.lex_state = 1050}, + [8940] = {.lex_state = 243}, + [8941] = {.lex_state = 1050}, + [8942] = {.lex_state = 243}, + [8943] = {.lex_state = 243}, + [8944] = {.lex_state = 243}, + [8945] = {.lex_state = 431}, + [8946] = {.lex_state = 243}, + [8947] = {.lex_state = 243}, + [8948] = {.lex_state = 778}, + [8949] = {.lex_state = 243}, + [8950] = {.lex_state = 94}, + [8951] = {.lex_state = 243}, + [8952] = {.lex_state = 243}, + [8953] = {.lex_state = 243}, + [8954] = {.lex_state = 243}, + [8955] = {.lex_state = 243}, + [8956] = {.lex_state = 243}, + [8957] = {.lex_state = 243}, + [8958] = {.lex_state = 243}, + [8959] = {.lex_state = 243}, + [8960] = {.lex_state = 243}, + [8961] = {.lex_state = 243}, + [8962] = {.lex_state = 243}, + [8963] = {.lex_state = 243}, + [8964] = {.lex_state = 243}, + [8965] = {.lex_state = 243}, + [8966] = {.lex_state = 1050}, + [8967] = {.lex_state = 1050}, + [8968] = {.lex_state = 1050}, + [8969] = {.lex_state = 202}, + [8970] = {.lex_state = 754}, + [8971] = {.lex_state = 202}, + [8972] = {.lex_state = 202}, + [8973] = {.lex_state = 202}, + [8974] = {.lex_state = 1028}, + [8975] = {.lex_state = 202}, + [8976] = {.lex_state = 202}, + [8977] = {.lex_state = 202}, + [8978] = {.lex_state = 202}, + [8979] = {.lex_state = 547}, + [8980] = {.lex_state = 1050}, + [8981] = {.lex_state = 185}, + [8982] = {.lex_state = 185}, + [8983] = {.lex_state = 185}, + [8984] = {.lex_state = 185}, + [8985] = {.lex_state = 431}, + [8986] = {.lex_state = 756}, + [8987] = {.lex_state = 185}, + [8988] = {.lex_state = 185}, + [8989] = {.lex_state = 1050}, + [8990] = {.lex_state = 1050}, + [8991] = {.lex_state = 1165}, + [8992] = {.lex_state = 1030}, + [8993] = {.lex_state = 356}, + [8994] = {.lex_state = 583}, + [8995] = {.lex_state = 1050}, + [8996] = {.lex_state = 758}, + [8997] = {.lex_state = 356}, + [8998] = {.lex_state = 356}, + [8999] = {.lex_state = 583}, + [9000] = {.lex_state = 758}, + [9001] = {.lex_state = 730}, + [9002] = {.lex_state = 1050}, + [9003] = {.lex_state = 1050}, + [9004] = {.lex_state = 1050}, + [9005] = {.lex_state = 1050}, + [9006] = {.lex_state = 1050}, + [9007] = {.lex_state = 1050}, + [9008] = {.lex_state = 1050}, + [9009] = {.lex_state = 730}, + [9010] = {.lex_state = 1050}, + [9011] = {.lex_state = 1050}, + [9012] = {.lex_state = 766}, + [9013] = {.lex_state = 1050}, + [9014] = {.lex_state = 699}, + [9015] = {.lex_state = 1050}, + [9016] = {.lex_state = 583}, + [9017] = {.lex_state = 1050}, + [9018] = {.lex_state = 1050}, + [9019] = {.lex_state = 583}, + [9020] = {.lex_state = 356}, + [9021] = {.lex_state = 1050}, + [9022] = {.lex_state = 1050}, + [9023] = {.lex_state = 356}, + [9024] = {.lex_state = 1050}, + [9025] = {.lex_state = 1050}, + [9026] = {.lex_state = 1050}, + [9027] = {.lex_state = 1050}, + [9028] = {.lex_state = 1050}, + [9029] = {.lex_state = 1050}, + [9030] = {.lex_state = 730}, + [9031] = {.lex_state = 1050}, + [9032] = {.lex_state = 699}, + [9033] = {.lex_state = 1050}, + [9034] = {.lex_state = 1050}, + [9035] = {.lex_state = 1050}, + [9036] = {.lex_state = 1050}, + [9037] = {.lex_state = 1050}, + [9038] = {.lex_state = 1050}, + [9039] = {.lex_state = 766}, + [9040] = {.lex_state = 1050}, + [9041] = {.lex_state = 1050}, + [9042] = {.lex_state = 1050}, + [9043] = {.lex_state = 1050}, + [9044] = {.lex_state = 583}, + [9045] = {.lex_state = 1050}, + [9046] = {.lex_state = 1050}, + [9047] = {.lex_state = 1050}, + [9048] = {.lex_state = 583}, + [9049] = {.lex_state = 356}, + [9050] = {.lex_state = 356}, + [9051] = {.lex_state = 1050}, + [9052] = {.lex_state = 1050}, + [9053] = {.lex_state = 356}, + [9054] = {.lex_state = 1050}, + [9055] = {.lex_state = 1050}, + [9056] = {.lex_state = 1050}, + [9057] = {.lex_state = 1050}, + [9058] = {.lex_state = 786}, + [9059] = {.lex_state = 779}, + [9060] = {.lex_state = 1050}, + [9061] = {.lex_state = 1050}, + [9062] = {.lex_state = 1050}, + [9063] = {.lex_state = 1050}, + [9064] = {.lex_state = 766}, + [9065] = {.lex_state = 758}, + [9066] = {.lex_state = 583}, + [9067] = {.lex_state = 98}, + [9068] = {.lex_state = 431}, + [9069] = {.lex_state = 583}, + [9070] = {.lex_state = 1030}, + [9071] = {.lex_state = 356}, + [9072] = {.lex_state = 779}, + [9073] = {.lex_state = 356}, + [9074] = {.lex_state = 1050}, + [9075] = {.lex_state = 1050}, + [9076] = {.lex_state = 1050}, + [9077] = {.lex_state = 1050}, + [9078] = {.lex_state = 758}, + [9079] = {.lex_state = 1050}, + [9080] = {.lex_state = 1050}, + [9081] = {.lex_state = 1050}, + [9082] = {.lex_state = 1050}, + [9083] = {.lex_state = 1050}, + [9084] = {.lex_state = 758}, + [9085] = {.lex_state = 1050}, + [9086] = {.lex_state = 1050}, + [9087] = {.lex_state = 431}, + [9088] = {.lex_state = 431}, + [9089] = {.lex_state = 766}, + [9090] = {.lex_state = 724}, + [9091] = {.lex_state = 1030}, + [9092] = {.lex_state = 583}, + [9093] = {.lex_state = 583}, + [9094] = {.lex_state = 356}, + [9095] = {.lex_state = 356}, + [9096] = {.lex_state = 1050}, + [9097] = {.lex_state = 1050}, + [9098] = {.lex_state = 356}, + [9099] = {.lex_state = 431}, + [9100] = {.lex_state = 730}, + [9101] = {.lex_state = 766}, + [9102] = {.lex_state = 726}, + [9103] = {.lex_state = 583}, + [9104] = {.lex_state = 728}, + [9105] = {.lex_state = 583}, + [9106] = {.lex_state = 356}, + [9107] = {.lex_state = 356}, + [9108] = {.lex_state = 431}, + [9109] = {.lex_state = 0}, + [9110] = {.lex_state = 1050}, + [9111] = {.lex_state = 643}, + [9112] = {.lex_state = 0}, + [9113] = {.lex_state = 584}, + [9114] = {.lex_state = 356}, + [9115] = {.lex_state = 1050}, + [9116] = {.lex_state = 1050}, + [9117] = {.lex_state = 766}, + [9118] = {.lex_state = 788}, + [9119] = {.lex_state = 583}, + [9120] = {.lex_state = 1050}, + [9121] = {.lex_state = 431}, + [9122] = {.lex_state = 583}, + [9123] = {.lex_state = 1030}, + [9124] = {.lex_state = 584}, + [9125] = {.lex_state = 356}, + [9126] = {.lex_state = 431}, + [9127] = {.lex_state = 356}, + [9128] = {.lex_state = 185}, + [9129] = {.lex_state = 202}, + [9130] = {.lex_state = 202}, + [9131] = {.lex_state = 1050}, + [9132] = {.lex_state = 431}, + [9133] = {.lex_state = 431}, + [9134] = {.lex_state = 202}, + [9135] = {.lex_state = 431}, + [9136] = {.lex_state = 202}, + [9137] = {.lex_state = 356}, + [9138] = {.lex_state = 766}, + [9139] = {.lex_state = 583}, + [9140] = {.lex_state = 202}, + [9141] = {.lex_state = 583}, + [9142] = {.lex_state = 202}, + [9143] = {.lex_state = 356}, + [9144] = {.lex_state = 730}, + [9145] = {.lex_state = 356}, + [9146] = {.lex_state = 1050}, + [9147] = {.lex_state = 356}, + [9148] = {.lex_state = 728}, + [9149] = {.lex_state = 1050}, + [9150] = {.lex_state = 1050}, + [9151] = {.lex_state = 1050}, + [9152] = {.lex_state = 766}, + [9153] = {.lex_state = 1030}, + [9154] = {.lex_state = 583}, + [9155] = {.lex_state = 763}, + [9156] = {.lex_state = 1050}, + [9157] = {.lex_state = 583}, + [9158] = {.lex_state = 788}, + [9159] = {.lex_state = 356}, + [9160] = {.lex_state = 356}, + [9161] = {.lex_state = 1050}, + [9162] = {.lex_state = 728}, + [9163] = {.lex_state = 766}, + [9164] = {.lex_state = 1050}, + [9165] = {.lex_state = 583}, + [9166] = {.lex_state = 1050}, + [9167] = {.lex_state = 643}, + [9168] = {.lex_state = 583}, + [9169] = {.lex_state = 1050}, + [9170] = {.lex_state = 356}, + [9171] = {.lex_state = 413}, + [9172] = {.lex_state = 356}, + [9173] = {.lex_state = 728}, + [9174] = {.lex_state = 1050}, + [9175] = {.lex_state = 758}, + [9176] = {.lex_state = 1050}, + [9177] = {.lex_state = 1050}, + [9178] = {.lex_state = 0}, + [9179] = {.lex_state = 1050}, + [9180] = {.lex_state = 766}, + [9181] = {.lex_state = 583}, + [9182] = {.lex_state = 1050}, + [9183] = {.lex_state = 1050}, + [9184] = {.lex_state = 583}, + [9185] = {.lex_state = 356}, + [9186] = {.lex_state = 728}, + [9187] = {.lex_state = 356}, + [9188] = {.lex_state = 0}, + [9189] = {.lex_state = 0}, + [9190] = {.lex_state = 1050}, + [9191] = {.lex_state = 1050}, + [9192] = {.lex_state = 1050}, + [9193] = {.lex_state = 766}, + [9194] = {.lex_state = 728}, + [9195] = {.lex_state = 643}, + [9196] = {.lex_state = 1050}, + [9197] = {.lex_state = 766}, + [9198] = {.lex_state = 1050}, + [9199] = {.lex_state = 583}, + [9200] = {.lex_state = 583}, + [9201] = {.lex_state = 1050}, + [9202] = {.lex_state = 98}, + [9203] = {.lex_state = 583}, + [9204] = {.lex_state = 786}, + [9205] = {.lex_state = 1050}, + [9206] = {.lex_state = 356}, + [9207] = {.lex_state = 356}, + [9208] = {.lex_state = 1050}, + [9209] = {.lex_state = 728}, + [9210] = {.lex_state = 643}, + [9211] = {.lex_state = 766}, + [9212] = {.lex_state = 766}, + [9213] = {.lex_state = 1050}, + [9214] = {.lex_state = 583}, + [9215] = {.lex_state = 583}, + [9216] = {.lex_state = 413}, + [9217] = {.lex_state = 583}, + [9218] = {.lex_state = 185}, + [9219] = {.lex_state = 356}, + [9220] = {.lex_state = 356}, + [9221] = {.lex_state = 1050}, + [9222] = {.lex_state = 356}, + [9223] = {.lex_state = 779}, + [9224] = {.lex_state = 356}, + [9225] = {.lex_state = 413}, + [9226] = {.lex_state = 766}, + [9227] = {.lex_state = 1050}, + [9228] = {.lex_state = 583}, + [9229] = {.lex_state = 1050}, + [9230] = {.lex_state = 583}, + [9231] = {.lex_state = 356}, + [9232] = {.lex_state = 2555}, + [9233] = {.lex_state = 356}, + [9234] = {.lex_state = 356}, + [9235] = {.lex_state = 356}, + [9236] = {.lex_state = 1050}, + [9237] = {.lex_state = 413}, + [9238] = {.lex_state = 1050}, + [9239] = {.lex_state = 1050}, + [9240] = {.lex_state = 1050}, + [9241] = {.lex_state = 0}, + [9242] = {.lex_state = 766}, + [9243] = {.lex_state = 356}, + [9244] = {.lex_state = 583}, + [9245] = {.lex_state = 1050}, + [9246] = {.lex_state = 431}, + [9247] = {.lex_state = 583}, + [9248] = {.lex_state = 1050}, + [9249] = {.lex_state = 356}, + [9250] = {.lex_state = 356}, + [9251] = {.lex_state = 1050}, + [9252] = {.lex_state = 1050}, + [9253] = {.lex_state = 583}, + [9254] = {.lex_state = 782}, + [9255] = {.lex_state = 431}, + [9256] = {.lex_state = 1050}, + [9257] = {.lex_state = 0}, + [9258] = {.lex_state = 2560}, + [9259] = {.lex_state = 0}, + [9260] = {.lex_state = 766}, + [9261] = {.lex_state = 0}, + [9262] = {.lex_state = 0}, + [9263] = {.lex_state = 583}, + [9264] = {.lex_state = 583}, + [9265] = {.lex_state = 1050}, + [9266] = {.lex_state = 356}, + [9267] = {.lex_state = 779}, + [9268] = {.lex_state = 356}, + [9269] = {.lex_state = 779}, + [9270] = {.lex_state = 0}, + [9271] = {.lex_state = 1030}, + [9272] = {.lex_state = 1030}, + [9273] = {.lex_state = 1030}, + [9274] = {.lex_state = 185}, + [9275] = {.lex_state = 185}, + [9276] = {.lex_state = 185}, + [9277] = {.lex_state = 1030}, + [9278] = {.lex_state = 1050}, + [9279] = {.lex_state = 1050}, + [9280] = {.lex_state = 766}, + [9281] = {.lex_state = 583}, + [9282] = {.lex_state = 1050}, + [9283] = {.lex_state = 583}, + [9284] = {.lex_state = 584}, + [9285] = {.lex_state = 766}, + [9286] = {.lex_state = 356}, + [9287] = {.lex_state = 356}, + [9288] = {.lex_state = 202}, + [9289] = {.lex_state = 1050}, + [9290] = {.lex_state = 1050}, + [9291] = {.lex_state = 0}, + [9292] = {.lex_state = 1050}, + [9293] = {.lex_state = 583}, + [9294] = {.lex_state = 356}, + [9295] = {.lex_state = 1050}, + [9296] = {.lex_state = 766}, + [9297] = {.lex_state = 583}, + [9298] = {.lex_state = 583}, + [9299] = {.lex_state = 356}, + [9300] = {.lex_state = 356}, + [9301] = {.lex_state = 431}, + [9302] = {.lex_state = 766}, + [9303] = {.lex_state = 583}, + [9304] = {.lex_state = 583}, + [9305] = {.lex_state = 583}, + [9306] = {.lex_state = 758}, + [9307] = {.lex_state = 1050}, + [9308] = {.lex_state = 356}, + [9309] = {.lex_state = 356}, + [9310] = {.lex_state = 1050}, + [9311] = {.lex_state = 766}, + [9312] = {.lex_state = 583}, + [9313] = {.lex_state = 1050}, + [9314] = {.lex_state = 431}, + [9315] = {.lex_state = 583}, + [9316] = {.lex_state = 356}, + [9317] = {.lex_state = 1050}, + [9318] = {.lex_state = 356}, + [9319] = {.lex_state = 356}, + [9320] = {.lex_state = 1030}, + [9321] = {.lex_state = 0}, + [9322] = {.lex_state = 766}, + [9323] = {.lex_state = 1050}, + [9324] = {.lex_state = 583}, + [9325] = {.lex_state = 1030}, + [9326] = {.lex_state = 583}, + [9327] = {.lex_state = 1050}, + [9328] = {.lex_state = 356}, + [9329] = {.lex_state = 356}, + [9330] = {.lex_state = 1050}, + [9331] = {.lex_state = 766}, + [9332] = {.lex_state = 583}, + [9333] = {.lex_state = 1050}, + [9334] = {.lex_state = 2555}, + [9335] = {.lex_state = 583}, + [9336] = {.lex_state = 1050}, + [9337] = {.lex_state = 356}, + [9338] = {.lex_state = 356}, + [9339] = {.lex_state = 356}, + [9340] = {.lex_state = 1050}, + [9341] = {.lex_state = 766}, + [9342] = {.lex_state = 583}, + [9343] = {.lex_state = 788}, + [9344] = {.lex_state = 583}, + [9345] = {.lex_state = 1050}, + [9346] = {.lex_state = 730}, + [9347] = {.lex_state = 356}, + [9348] = {.lex_state = 356}, + [9349] = {.lex_state = 766}, + [9350] = {.lex_state = 583}, + [9351] = {.lex_state = 1050}, + [9352] = {.lex_state = 583}, + [9353] = {.lex_state = 413}, + [9354] = {.lex_state = 1050}, + [9355] = {.lex_state = 356}, + [9356] = {.lex_state = 356}, + [9357] = {.lex_state = 766}, + [9358] = {.lex_state = 583}, + [9359] = {.lex_state = 583}, + [9360] = {.lex_state = 356}, + [9361] = {.lex_state = 583}, + [9362] = {.lex_state = 1050}, + [9363] = {.lex_state = 1050}, + [9364] = {.lex_state = 356}, + [9365] = {.lex_state = 356}, + [9366] = {.lex_state = 766}, + [9367] = {.lex_state = 98}, + [9368] = {.lex_state = 583}, + [9369] = {.lex_state = 1050}, + [9370] = {.lex_state = 583}, + [9371] = {.lex_state = 699}, + [9372] = {.lex_state = 431}, + [9373] = {.lex_state = 356}, + [9374] = {.lex_state = 356}, + [9375] = {.lex_state = 98}, + [9376] = {.lex_state = 766}, + [9377] = {.lex_state = 583}, + [9378] = {.lex_state = 583}, + [9379] = {.lex_state = 98}, + [9380] = {.lex_state = 356}, + [9381] = {.lex_state = 356}, + [9382] = {.lex_state = 766}, + [9383] = {.lex_state = 583}, + [9384] = {.lex_state = 583}, + [9385] = {.lex_state = 356}, + [9386] = {.lex_state = 356}, + [9387] = {.lex_state = 766}, + [9388] = {.lex_state = 583}, + [9389] = {.lex_state = 583}, + [9390] = {.lex_state = 766}, + [9391] = {.lex_state = 583}, + [9392] = {.lex_state = 583}, + [9393] = {.lex_state = 1030}, + [9394] = {.lex_state = 766}, + [9395] = {.lex_state = 583}, + [9396] = {.lex_state = 583}, + [9397] = {.lex_state = 766}, + [9398] = {.lex_state = 583}, + [9399] = {.lex_state = 583}, + [9400] = {.lex_state = 1050}, + [9401] = {.lex_state = 766}, + [9402] = {.lex_state = 583}, + [9403] = {.lex_state = 583}, + [9404] = {.lex_state = 766}, + [9405] = {.lex_state = 766}, + [9406] = {.lex_state = 583}, + [9407] = {.lex_state = 583}, + [9408] = {.lex_state = 766}, + [9409] = {.lex_state = 583}, + [9410] = {.lex_state = 583}, + [9411] = {.lex_state = 583}, + [9412] = {.lex_state = 766}, + [9413] = {.lex_state = 583}, + [9414] = {.lex_state = 583}, + [9415] = {.lex_state = 766}, + [9416] = {.lex_state = 583}, + [9417] = {.lex_state = 583}, + [9418] = {.lex_state = 766}, + [9419] = {.lex_state = 583}, + [9420] = {.lex_state = 583}, + [9421] = {.lex_state = 766}, + [9422] = {.lex_state = 583}, + [9423] = {.lex_state = 583}, + [9424] = {.lex_state = 583}, + [9425] = {.lex_state = 766}, + [9426] = {.lex_state = 583}, + [9427] = {.lex_state = 583}, + [9428] = {.lex_state = 431}, + [9429] = {.lex_state = 766}, + [9430] = {.lex_state = 583}, + [9431] = {.lex_state = 583}, + [9432] = {.lex_state = 766}, + [9433] = {.lex_state = 583}, + [9434] = {.lex_state = 583}, + [9435] = {.lex_state = 766}, + [9436] = {.lex_state = 583}, + [9437] = {.lex_state = 583}, + [9438] = {.lex_state = 766}, + [9439] = {.lex_state = 583}, + [9440] = {.lex_state = 583}, + [9441] = {.lex_state = 766}, + [9442] = {.lex_state = 583}, + [9443] = {.lex_state = 583}, + [9444] = {.lex_state = 766}, + [9445] = {.lex_state = 583}, + [9446] = {.lex_state = 583}, + [9447] = {.lex_state = 766}, + [9448] = {.lex_state = 583}, + [9449] = {.lex_state = 583}, + [9450] = {.lex_state = 766}, + [9451] = {.lex_state = 583}, + [9452] = {.lex_state = 583}, + [9453] = {.lex_state = 766}, + [9454] = {.lex_state = 583}, + [9455] = {.lex_state = 583}, + [9456] = {.lex_state = 766}, + [9457] = {.lex_state = 583}, + [9458] = {.lex_state = 583}, + [9459] = {.lex_state = 766}, + [9460] = {.lex_state = 583}, + [9461] = {.lex_state = 583}, + [9462] = {.lex_state = 766}, + [9463] = {.lex_state = 583}, + [9464] = {.lex_state = 583}, + [9465] = {.lex_state = 583}, + [9466] = {.lex_state = 766}, + [9467] = {.lex_state = 583}, + [9468] = {.lex_state = 583}, + [9469] = {.lex_state = 82}, + [9470] = {.lex_state = 766}, + [9471] = {.lex_state = 583}, + [9472] = {.lex_state = 583}, + [9473] = {.lex_state = 1050}, + [9474] = {.lex_state = 766}, + [9475] = {.lex_state = 583}, + [9476] = {.lex_state = 583}, + [9477] = {.lex_state = 1050}, + [9478] = {.lex_state = 766}, + [9479] = {.lex_state = 583}, + [9480] = {.lex_state = 583}, + [9481] = {.lex_state = 766}, + [9482] = {.lex_state = 583}, + [9483] = {.lex_state = 583}, + [9484] = {.lex_state = 766}, + [9485] = {.lex_state = 583}, + [9486] = {.lex_state = 583}, + [9487] = {.lex_state = 766}, + [9488] = {.lex_state = 583}, + [9489] = {.lex_state = 583}, + [9490] = {.lex_state = 356}, + [9491] = {.lex_state = 766}, + [9492] = {.lex_state = 583}, + [9493] = {.lex_state = 583}, + [9494] = {.lex_state = 766}, + [9495] = {.lex_state = 583}, + [9496] = {.lex_state = 583}, + [9497] = {.lex_state = 766}, + [9498] = {.lex_state = 583}, + [9499] = {.lex_state = 583}, + [9500] = {.lex_state = 766}, + [9501] = {.lex_state = 583}, + [9502] = {.lex_state = 583}, + [9503] = {.lex_state = 766}, + [9504] = {.lex_state = 583}, + [9505] = {.lex_state = 583}, + [9506] = {.lex_state = 766}, + [9507] = {.lex_state = 583}, + [9508] = {.lex_state = 583}, + [9509] = {.lex_state = 631}, + [9510] = {.lex_state = 766}, + [9511] = {.lex_state = 583}, + [9512] = {.lex_state = 583}, + [9513] = {.lex_state = 766}, + [9514] = {.lex_state = 583}, + [9515] = {.lex_state = 583}, + [9516] = {.lex_state = 766}, + [9517] = {.lex_state = 583}, + [9518] = {.lex_state = 583}, + [9519] = {.lex_state = 766}, + [9520] = {.lex_state = 583}, + [9521] = {.lex_state = 583}, + [9522] = {.lex_state = 1050}, + [9523] = {.lex_state = 766}, + [9524] = {.lex_state = 583}, + [9525] = {.lex_state = 583}, + [9526] = {.lex_state = 356}, [9527] = {.lex_state = 766}, - [9528] = {.lex_state = 579}, - [9529] = {.lex_state = 1065}, - [9530] = {.lex_state = 579}, - [9531] = {.lex_state = 1065}, - [9532] = {.lex_state = 356}, - [9533] = {.lex_state = 1065}, - [9534] = {.lex_state = 738}, - [9535] = {.lex_state = 356}, - [9536] = {.lex_state = 1035}, - [9537] = {.lex_state = 782}, - [9538] = {.lex_state = 0}, - [9539] = {.lex_state = 1065}, - [9540] = {.lex_state = 431}, - [9541] = {.lex_state = 431}, - [9542] = {.lex_state = 1065}, - [9543] = {.lex_state = 766}, - [9544] = {.lex_state = 579}, - [9545] = {.lex_state = 766}, - [9546] = {.lex_state = 579}, - [9547] = {.lex_state = 98}, - [9548] = {.lex_state = 98}, - [9549] = {.lex_state = 356}, - [9550] = {.lex_state = 356}, - [9551] = {.lex_state = 1065}, - [9552] = {.lex_state = 766}, - [9553] = {.lex_state = 170}, - [9554] = {.lex_state = 0}, - [9555] = {.lex_state = 98}, - [9556] = {.lex_state = 579}, - [9557] = {.lex_state = 2593}, - [9558] = {.lex_state = 766}, - [9559] = {.lex_state = 579}, - [9560] = {.lex_state = 98}, - [9561] = {.lex_state = 356}, - [9562] = {.lex_state = 579}, - [9563] = {.lex_state = 356}, - [9564] = {.lex_state = 356}, - [9565] = {.lex_state = 0}, - [9566] = {.lex_state = 356}, - [9567] = {.lex_state = 728}, - [9568] = {.lex_state = 789}, - [9569] = {.lex_state = 789}, - [9570] = {.lex_state = 579}, - [9571] = {.lex_state = 766}, - [9572] = {.lex_state = 579}, - [9573] = {.lex_state = 1065}, - [9574] = {.lex_state = 579}, - [9575] = {.lex_state = 728}, - [9576] = {.lex_state = 1065}, - [9577] = {.lex_state = 356}, - [9578] = {.lex_state = 356}, - [9579] = {.lex_state = 1065}, - [9580] = {.lex_state = 356}, - [9581] = {.lex_state = 1035}, - [9582] = {.lex_state = 1065}, - [9583] = {.lex_state = 1065}, - [9584] = {.lex_state = 0}, - [9585] = {.lex_state = 0}, - [9586] = {.lex_state = 728}, - [9587] = {.lex_state = 356}, - [9588] = {.lex_state = 1065}, - [9589] = {.lex_state = 643}, - [9590] = {.lex_state = 766}, - [9591] = {.lex_state = 579}, - [9592] = {.lex_state = 1065}, - [9593] = {.lex_state = 1065}, - [9594] = {.lex_state = 579}, - [9595] = {.lex_state = 1065}, - [9596] = {.lex_state = 1065}, - [9597] = {.lex_state = 782}, - [9598] = {.lex_state = 356}, - [9599] = {.lex_state = 1065}, + [9528] = {.lex_state = 583}, + [9529] = {.lex_state = 583}, + [9530] = {.lex_state = 766}, + [9531] = {.lex_state = 583}, + [9532] = {.lex_state = 583}, + [9533] = {.lex_state = 583}, + [9534] = {.lex_state = 583}, + [9535] = {.lex_state = 583}, + [9536] = {.lex_state = 583}, + [9537] = {.lex_state = 583}, + [9538] = {.lex_state = 583}, + [9539] = {.lex_state = 583}, + [9540] = {.lex_state = 583}, + [9541] = {.lex_state = 583}, + [9542] = {.lex_state = 583}, + [9543] = {.lex_state = 583}, + [9544] = {.lex_state = 583}, + [9545] = {.lex_state = 583}, + [9546] = {.lex_state = 583}, + [9547] = {.lex_state = 583}, + [9548] = {.lex_state = 583}, + [9549] = {.lex_state = 583}, + [9550] = {.lex_state = 583}, + [9551] = {.lex_state = 583}, + [9552] = {.lex_state = 583}, + [9553] = {.lex_state = 583}, + [9554] = {.lex_state = 583}, + [9555] = {.lex_state = 583}, + [9556] = {.lex_state = 583}, + [9557] = {.lex_state = 583}, + [9558] = {.lex_state = 583}, + [9559] = {.lex_state = 583}, + [9560] = {.lex_state = 583}, + [9561] = {.lex_state = 583}, + [9562] = {.lex_state = 583}, + [9563] = {.lex_state = 583}, + [9564] = {.lex_state = 583}, + [9565] = {.lex_state = 583}, + [9566] = {.lex_state = 583}, + [9567] = {.lex_state = 583}, + [9568] = {.lex_state = 583}, + [9569] = {.lex_state = 1050}, + [9570] = {.lex_state = 1050}, + [9571] = {.lex_state = 185}, + [9572] = {.lex_state = 1050}, + [9573] = {.lex_state = 1050}, + [9574] = {.lex_state = 1050}, + [9575] = {.lex_state = 1050}, + [9576] = {.lex_state = 356}, + [9577] = {.lex_state = 1050}, + [9578] = {.lex_state = 1050}, + [9579] = {.lex_state = 1050}, + [9580] = {.lex_state = 1050}, + [9581] = {.lex_state = 1050}, + [9582] = {.lex_state = 1050}, + [9583] = {.lex_state = 1050}, + [9584] = {.lex_state = 134}, + [9585] = {.lex_state = 1050}, + [9586] = {.lex_state = 98}, + [9587] = {.lex_state = 1050}, + [9588] = {.lex_state = 694}, + [9589] = {.lex_state = 786}, + [9590] = {.lex_state = 2556}, + [9591] = {.lex_state = 1050}, + [9592] = {.lex_state = 1050}, + [9593] = {.lex_state = 1050}, + [9594] = {.lex_state = 431}, + [9595] = {.lex_state = 1050}, + [9596] = {.lex_state = 1030}, + [9597] = {.lex_state = 1050}, + [9598] = {.lex_state = 1050}, + [9599] = {.lex_state = 1050}, [9600] = {.lex_state = 356}, - [9601] = {.lex_state = 728}, - [9602] = {.lex_state = 1065}, - [9603] = {.lex_state = 0}, - [9604] = {.lex_state = 0}, - [9605] = {.lex_state = 0}, - [9606] = {.lex_state = 1065}, - [9607] = {.lex_state = 1065}, + [9601] = {.lex_state = 356}, + [9602] = {.lex_state = 1050}, + [9603] = {.lex_state = 170}, + [9604] = {.lex_state = 146}, + [9605] = {.lex_state = 356}, + [9606] = {.lex_state = 1050}, + [9607] = {.lex_state = 1050}, [9608] = {.lex_state = 766}, - [9609] = {.lex_state = 1065}, - [9610] = {.lex_state = 579}, - [9611] = {.lex_state = 0}, - [9612] = {.lex_state = 0}, - [9613] = {.lex_state = 1065}, - [9614] = {.lex_state = 579}, - [9615] = {.lex_state = 1065}, - [9616] = {.lex_state = 356}, - [9617] = {.lex_state = 356}, - [9618] = {.lex_state = 356}, - [9619] = {.lex_state = 1065}, - [9620] = {.lex_state = 1065}, - [9621] = {.lex_state = 1065}, - [9622] = {.lex_state = 1065}, - [9623] = {.lex_state = 724}, - [9624] = {.lex_state = 1065}, - [9625] = {.lex_state = 1065}, - [9626] = {.lex_state = 1065}, - [9627] = {.lex_state = 1065}, - [9628] = {.lex_state = 0}, - [9629] = {.lex_state = 766}, - [9630] = {.lex_state = 0}, - [9631] = {.lex_state = 1065}, - [9632] = {.lex_state = 579}, - [9633] = {.lex_state = 579}, - [9634] = {.lex_state = 356}, + [9609] = {.lex_state = 641}, + [9610] = {.lex_state = 1050}, + [9611] = {.lex_state = 1050}, + [9612] = {.lex_state = 766}, + [9613] = {.lex_state = 1050}, + [9614] = {.lex_state = 1050}, + [9615] = {.lex_state = 1050}, + [9616] = {.lex_state = 431}, + [9617] = {.lex_state = 784}, + [9618] = {.lex_state = 185}, + [9619] = {.lex_state = 185}, + [9620] = {.lex_state = 1050}, + [9621] = {.lex_state = 170}, + [9622] = {.lex_state = 1050}, + [9623] = {.lex_state = 1050}, + [9624] = {.lex_state = 1050}, + [9625] = {.lex_state = 1050}, + [9626] = {.lex_state = 786}, + [9627] = {.lex_state = 583}, + [9628] = {.lex_state = 583}, + [9629] = {.lex_state = 1050}, + [9630] = {.lex_state = 1050}, + [9631] = {.lex_state = 1050}, + [9632] = {.lex_state = 431}, + [9633] = {.lex_state = 431}, + [9634] = {.lex_state = 1050}, [9635] = {.lex_state = 356}, - [9636] = {.lex_state = 1065}, - [9637] = {.lex_state = 1065}, - [9638] = {.lex_state = 1065}, - [9639] = {.lex_state = 1065}, - [9640] = {.lex_state = 774}, - [9641] = {.lex_state = 766}, - [9642] = {.lex_state = 579}, - [9643] = {.lex_state = 1065}, - [9644] = {.lex_state = 1065}, - [9645] = {.lex_state = 1065}, - [9646] = {.lex_state = 579}, - [9647] = {.lex_state = 1065}, - [9648] = {.lex_state = 1065}, - [9649] = {.lex_state = 356}, - [9650] = {.lex_state = 356}, - [9651] = {.lex_state = 1065}, - [9652] = {.lex_state = 726}, - [9653] = {.lex_state = 1065}, - [9654] = {.lex_state = 1065}, - [9655] = {.lex_state = 1065}, - [9656] = {.lex_state = 1065}, - [9657] = {.lex_state = 1065}, - [9658] = {.lex_state = 1065}, - [9659] = {.lex_state = 1065}, - [9660] = {.lex_state = 1065}, - [9661] = {.lex_state = 1065}, - [9662] = {.lex_state = 766}, - [9663] = {.lex_state = 1065}, - [9664] = {.lex_state = 579}, - [9665] = {.lex_state = 1065}, - [9666] = {.lex_state = 1065}, - [9667] = {.lex_state = 641}, - [9668] = {.lex_state = 1065}, - [9669] = {.lex_state = 1065}, - [9670] = {.lex_state = 728}, - [9671] = {.lex_state = 356}, - [9672] = {.lex_state = 1065}, - [9673] = {.lex_state = 356}, - [9674] = {.lex_state = 1065}, - [9675] = {.lex_state = 1065}, - [9676] = {.lex_state = 1065}, - [9677] = {.lex_state = 1065}, - [9678] = {.lex_state = 643}, - [9679] = {.lex_state = 1065}, - [9680] = {.lex_state = 1065}, - [9681] = {.lex_state = 766}, - [9682] = {.lex_state = 431}, - [9683] = {.lex_state = 789}, - [9684] = {.lex_state = 579}, - [9685] = {.lex_state = 431}, - [9686] = {.lex_state = 579}, - [9687] = {.lex_state = 774}, - [9688] = {.lex_state = 356}, - [9689] = {.lex_state = 431}, - [9690] = {.lex_state = 356}, - [9691] = {.lex_state = 728}, - [9692] = {.lex_state = 643}, - [9693] = {.lex_state = 431}, - [9694] = {.lex_state = 766}, - [9695] = {.lex_state = 726}, - [9696] = {.lex_state = 579}, - [9697] = {.lex_state = 185}, - [9698] = {.lex_state = 579}, - [9699] = {.lex_state = 1065}, - [9700] = {.lex_state = 356}, - [9701] = {.lex_state = 356}, - [9702] = {.lex_state = 728}, - [9703] = {.lex_state = 643}, - [9704] = {.lex_state = 579}, - [9705] = {.lex_state = 82}, - [9706] = {.lex_state = 641}, - [9707] = {.lex_state = 579}, - [9708] = {.lex_state = 4731}, - [9709] = {.lex_state = 766}, - [9710] = {.lex_state = 579}, - [9711] = {.lex_state = 579}, - [9712] = {.lex_state = 694}, - [9713] = {.lex_state = 774}, - [9714] = {.lex_state = 631}, - [9715] = {.lex_state = 356}, - [9716] = {.lex_state = 356}, - [9717] = {.lex_state = 774}, - [9718] = {.lex_state = 774}, - [9719] = {.lex_state = 639}, - [9720] = {.lex_state = 431}, - [9721] = {.lex_state = 766}, - [9722] = {.lex_state = 641}, + [9636] = {.lex_state = 1050}, + [9637] = {.lex_state = 431}, + [9638] = {.lex_state = 583}, + [9639] = {.lex_state = 639}, + [9640] = {.lex_state = 431}, + [9641] = {.lex_state = 1050}, + [9642] = {.lex_state = 641}, + [9643] = {.lex_state = 1050}, + [9644] = {.lex_state = 356}, + [9645] = {.lex_state = 1050}, + [9646] = {.lex_state = 1050}, + [9647] = {.lex_state = 1050}, + [9648] = {.lex_state = 202}, + [9649] = {.lex_state = 202}, + [9650] = {.lex_state = 202}, + [9651] = {.lex_state = 202}, + [9652] = {.lex_state = 185}, + [9653] = {.lex_state = 726}, + [9654] = {.lex_state = 1050}, + [9655] = {.lex_state = 1050}, + [9656] = {.lex_state = 641}, + [9657] = {.lex_state = 1030}, + [9658] = {.lex_state = 641}, + [9659] = {.lex_state = 1050}, + [9660] = {.lex_state = 4686}, + [9661] = {.lex_state = 356}, + [9662] = {.lex_state = 583}, + [9663] = {.lex_state = 1050}, + [9664] = {.lex_state = 754}, + [9665] = {.lex_state = 431}, + [9666] = {.lex_state = 431}, + [9667] = {.lex_state = 1050}, + [9668] = {.lex_state = 2557}, + [9669] = {.lex_state = 1050}, + [9670] = {.lex_state = 766}, + [9671] = {.lex_state = 1050}, + [9672] = {.lex_state = 788}, + [9673] = {.lex_state = 788}, + [9674] = {.lex_state = 356}, + [9675] = {.lex_state = 356}, + [9676] = {.lex_state = 431}, + [9677] = {.lex_state = 1050}, + [9678] = {.lex_state = 0}, + [9679] = {.lex_state = 0}, + [9680] = {.lex_state = 431}, + [9681] = {.lex_state = 1030}, + [9682] = {.lex_state = 766}, + [9683] = {.lex_state = 356}, + [9684] = {.lex_state = 98}, + [9685] = {.lex_state = 583}, + [9686] = {.lex_state = 1050}, + [9687] = {.lex_state = 1050}, + [9688] = {.lex_state = 583}, + [9689] = {.lex_state = 583}, + [9690] = {.lex_state = 0}, + [9691] = {.lex_state = 1050}, + [9692] = {.lex_state = 1050}, + [9693] = {.lex_state = 1050}, + [9694] = {.lex_state = 1050}, + [9695] = {.lex_state = 1050}, + [9696] = {.lex_state = 356}, + [9697] = {.lex_state = 1050}, + [9698] = {.lex_state = 1050}, + [9699] = {.lex_state = 1050}, + [9700] = {.lex_state = 1050}, + [9701] = {.lex_state = 0}, + [9702] = {.lex_state = 431}, + [9703] = {.lex_state = 356}, + [9704] = {.lex_state = 724}, + [9705] = {.lex_state = 1050}, + [9706] = {.lex_state = 738}, + [9707] = {.lex_state = 730}, + [9708] = {.lex_state = 0}, + [9709] = {.lex_state = 1050}, + [9710] = {.lex_state = 431}, + [9711] = {.lex_state = 1050}, + [9712] = {.lex_state = 431}, + [9713] = {.lex_state = 431}, + [9714] = {.lex_state = 1050}, + [9715] = {.lex_state = 669}, + [9716] = {.lex_state = 699}, + [9717] = {.lex_state = 0}, + [9718] = {.lex_state = 766}, + [9719] = {.lex_state = 0}, + [9720] = {.lex_state = 1050}, + [9721] = {.lex_state = 583}, + [9722] = {.lex_state = 356}, [9723] = {.lex_state = 356}, - [9724] = {.lex_state = 584}, - [9725] = {.lex_state = 782}, - [9726] = {.lex_state = 579}, - [9727] = {.lex_state = 766}, - [9728] = {.lex_state = 641}, - [9729] = {.lex_state = 579}, - [9730] = {.lex_state = 579}, - [9731] = {.lex_state = 356}, - [9732] = {.lex_state = 356}, - [9733] = {.lex_state = 584}, - [9734] = {.lex_state = 579}, - [9735] = {.lex_state = 766}, - [9736] = {.lex_state = 579}, - [9737] = {.lex_state = 356}, - [9738] = {.lex_state = 579}, - [9739] = {.lex_state = 431}, - [9740] = {.lex_state = 356}, - [9741] = {.lex_state = 356}, - [9742] = {.lex_state = 766}, - [9743] = {.lex_state = 579}, - [9744] = {.lex_state = 579}, - [9745] = {.lex_state = 1065}, - [9746] = {.lex_state = 1065}, - [9747] = {.lex_state = 356}, - [9748] = {.lex_state = 356}, - [9749] = {.lex_state = 356}, - [9750] = {.lex_state = 766}, - [9751] = {.lex_state = 431}, - [9752] = {.lex_state = 579}, - [9753] = {.lex_state = 1065}, - [9754] = {.lex_state = 431}, - [9755] = {.lex_state = 579}, - [9756] = {.lex_state = 356}, - [9757] = {.lex_state = 356}, - [9758] = {.lex_state = 766}, - [9759] = {.lex_state = 579}, - [9760] = {.lex_state = 579}, - [9761] = {.lex_state = 146}, - [9762] = {.lex_state = 356}, - [9763] = {.lex_state = 356}, - [9764] = {.lex_state = 766}, - [9765] = {.lex_state = 579}, - [9766] = {.lex_state = 185}, - [9767] = {.lex_state = 579}, - [9768] = {.lex_state = 243}, - [9769] = {.lex_state = 243}, - [9770] = {.lex_state = 356}, - [9771] = {.lex_state = 356}, - [9772] = {.lex_state = 243}, - [9773] = {.lex_state = 243}, - [9774] = {.lex_state = 766}, - [9775] = {.lex_state = 1065}, - [9776] = {.lex_state = 579}, - [9777] = {.lex_state = 1065}, - [9778] = {.lex_state = 243}, - [9779] = {.lex_state = 243}, - [9780] = {.lex_state = 579}, - [9781] = {.lex_state = 1065}, - [9782] = {.lex_state = 98}, - [9783] = {.lex_state = 356}, - [9784] = {.lex_state = 356}, - [9785] = {.lex_state = 1065}, - [9786] = {.lex_state = 766}, - [9787] = {.lex_state = 2598}, - [9788] = {.lex_state = 579}, - [9789] = {.lex_state = 1065}, - [9790] = {.lex_state = 1065}, - [9791] = {.lex_state = 579}, - [9792] = {.lex_state = 787}, - [9793] = {.lex_state = 185}, - [9794] = {.lex_state = 1065}, - [9795] = {.lex_state = 356}, - [9796] = {.lex_state = 356}, - [9797] = {.lex_state = 766}, - [9798] = {.lex_state = 1065}, - [9799] = {.lex_state = 579}, - [9800] = {.lex_state = 782}, - [9801] = {.lex_state = 782}, - [9802] = {.lex_state = 579}, - [9803] = {.lex_state = 1065}, - [9804] = {.lex_state = 1065}, - [9805] = {.lex_state = 356}, - [9806] = {.lex_state = 356}, - [9807] = {.lex_state = 1065}, - [9808] = {.lex_state = 766}, - [9809] = {.lex_state = 579}, - [9810] = {.lex_state = 1035}, - [9811] = {.lex_state = 1035}, - [9812] = {.lex_state = 579}, - [9813] = {.lex_state = 356}, - [9814] = {.lex_state = 356}, - [9815] = {.lex_state = 766}, - [9816] = {.lex_state = 579}, - [9817] = {.lex_state = 579}, - [9818] = {.lex_state = 356}, - [9819] = {.lex_state = 356}, - [9820] = {.lex_state = 413}, - [9821] = {.lex_state = 766}, - [9822] = {.lex_state = 579}, - [9823] = {.lex_state = 579}, - [9824] = {.lex_state = 356}, - [9825] = {.lex_state = 356}, - [9826] = {.lex_state = 766}, - [9827] = {.lex_state = 579}, - [9828] = {.lex_state = 579}, - [9829] = {.lex_state = 431}, - [9830] = {.lex_state = 766}, - [9831] = {.lex_state = 579}, - [9832] = {.lex_state = 579}, - [9833] = {.lex_state = 766}, - [9834] = {.lex_state = 579}, - [9835] = {.lex_state = 579}, - [9836] = {.lex_state = 766}, - [9837] = {.lex_state = 579}, - [9838] = {.lex_state = 579}, - [9839] = {.lex_state = 766}, - [9840] = {.lex_state = 579}, - [9841] = {.lex_state = 579}, - [9842] = {.lex_state = 766}, - [9843] = {.lex_state = 579}, - [9844] = {.lex_state = 579}, - [9845] = {.lex_state = 766}, - [9846] = {.lex_state = 766}, - [9847] = {.lex_state = 579}, - [9848] = {.lex_state = 579}, - [9849] = {.lex_state = 766}, - [9850] = {.lex_state = 579}, - [9851] = {.lex_state = 579}, - [9852] = {.lex_state = 766}, - [9853] = {.lex_state = 579}, - [9854] = {.lex_state = 579}, - [9855] = {.lex_state = 766}, - [9856] = {.lex_state = 579}, - [9857] = {.lex_state = 579}, - [9858] = {.lex_state = 766}, - [9859] = {.lex_state = 579}, - [9860] = {.lex_state = 579}, - [9861] = {.lex_state = 766}, - [9862] = {.lex_state = 579}, - [9863] = {.lex_state = 579}, - [9864] = {.lex_state = 579}, - [9865] = {.lex_state = 766}, - [9866] = {.lex_state = 579}, - [9867] = {.lex_state = 579}, - [9868] = {.lex_state = 766}, - [9869] = {.lex_state = 579}, - [9870] = {.lex_state = 579}, - [9871] = {.lex_state = 2595}, - [9872] = {.lex_state = 766}, - [9873] = {.lex_state = 579}, - [9874] = {.lex_state = 579}, - [9875] = {.lex_state = 1065}, - [9876] = {.lex_state = 766}, - [9877] = {.lex_state = 579}, - [9878] = {.lex_state = 579}, - [9879] = {.lex_state = 766}, - [9880] = {.lex_state = 579}, - [9881] = {.lex_state = 579}, - [9882] = {.lex_state = 766}, - [9883] = {.lex_state = 579}, - [9884] = {.lex_state = 579}, - [9885] = {.lex_state = 766}, - [9886] = {.lex_state = 579}, - [9887] = {.lex_state = 579}, - [9888] = {.lex_state = 766}, - [9889] = {.lex_state = 579}, - [9890] = {.lex_state = 579}, - [9891] = {.lex_state = 766}, - [9892] = {.lex_state = 579}, - [9893] = {.lex_state = 579}, - [9894] = {.lex_state = 766}, - [9895] = {.lex_state = 579}, - [9896] = {.lex_state = 579}, - [9897] = {.lex_state = 766}, - [9898] = {.lex_state = 579}, - [9899] = {.lex_state = 579}, - [9900] = {.lex_state = 766}, - [9901] = {.lex_state = 579}, - [9902] = {.lex_state = 579}, - [9903] = {.lex_state = 1065}, - [9904] = {.lex_state = 766}, - [9905] = {.lex_state = 579}, - [9906] = {.lex_state = 579}, - [9907] = {.lex_state = 766}, - [9908] = {.lex_state = 579}, - [9909] = {.lex_state = 579}, - [9910] = {.lex_state = 1065}, - [9911] = {.lex_state = 766}, - [9912] = {.lex_state = 579}, - [9913] = {.lex_state = 579}, - [9914] = {.lex_state = 766}, - [9915] = {.lex_state = 579}, - [9916] = {.lex_state = 579}, - [9917] = {.lex_state = 579}, - [9918] = {.lex_state = 766}, - [9919] = {.lex_state = 579}, - [9920] = {.lex_state = 579}, + [9724] = {.lex_state = 786}, + [9725] = {.lex_state = 1030}, + [9726] = {.lex_state = 657}, + [9727] = {.lex_state = 657}, + [9728] = {.lex_state = 657}, + [9729] = {.lex_state = 657}, + [9730] = {.lex_state = 657}, + [9731] = {.lex_state = 1030}, + [9732] = {.lex_state = 680}, + [9733] = {.lex_state = 657}, + [9734] = {.lex_state = 657}, + [9735] = {.lex_state = 94}, + [9736] = {.lex_state = 1030}, + [9737] = {.lex_state = 2555}, + [9738] = {.lex_state = 1030}, + [9739] = {.lex_state = 785}, + [9740] = {.lex_state = 669}, + [9741] = {.lex_state = 1030}, + [9742] = {.lex_state = 657}, + [9743] = {.lex_state = 657}, + [9744] = {.lex_state = 1030}, + [9745] = {.lex_state = 657}, + [9746] = {.lex_state = 185}, + [9747] = {.lex_state = 1251}, + [9748] = {.lex_state = 785}, + [9749] = {.lex_state = 1030}, + [9750] = {.lex_state = 657}, + [9751] = {.lex_state = 787}, + [9752] = {.lex_state = 785}, + [9753] = {.lex_state = 0}, + [9754] = {.lex_state = 785}, + [9755] = {.lex_state = 1030}, + [9756] = {.lex_state = 2559}, + [9757] = {.lex_state = 657}, + [9758] = {.lex_state = 785}, + [9759] = {.lex_state = 657}, + [9760] = {.lex_state = 1030}, + [9761] = {.lex_state = 783}, + [9762] = {.lex_state = 185}, + [9763] = {.lex_state = 657}, + [9764] = {.lex_state = 2561}, + [9765] = {.lex_state = 657}, + [9766] = {.lex_state = 657}, + [9767] = {.lex_state = 1030}, + [9768] = {.lex_state = 339}, + [9769] = {.lex_state = 730}, + [9770] = {.lex_state = 787}, + [9771] = {.lex_state = 657}, + [9772] = {.lex_state = 185}, + [9773] = {.lex_state = 785}, + [9774] = {.lex_state = 1030}, + [9775] = {.lex_state = 657}, + [9776] = {.lex_state = 4687}, + [9777] = {.lex_state = 728}, + [9778] = {.lex_state = 1251}, + [9779] = {.lex_state = 185}, + [9780] = {.lex_state = 1030}, + [9781] = {.lex_state = 657}, + [9782] = {.lex_state = 657}, + [9783] = {.lex_state = 1030}, + [9784] = {.lex_state = 657}, + [9785] = {.lex_state = 783}, + [9786] = {.lex_state = 785}, + [9787] = {.lex_state = 785}, + [9788] = {.lex_state = 657}, + [9789] = {.lex_state = 1030}, + [9790] = {.lex_state = 1030}, + [9791] = {.lex_state = 657}, + [9792] = {.lex_state = 170}, + [9793] = {.lex_state = 1030}, + [9794] = {.lex_state = 1030}, + [9795] = {.lex_state = 657}, + [9796] = {.lex_state = 170}, + [9797] = {.lex_state = 657}, + [9798] = {.lex_state = 787}, + [9799] = {.lex_state = 783}, + [9800] = {.lex_state = 170}, + [9801] = {.lex_state = 657}, + [9802] = {.lex_state = 1050}, + [9803] = {.lex_state = 1050}, + [9804] = {.lex_state = 657}, + [9805] = {.lex_state = 170}, + [9806] = {.lex_state = 787}, + [9807] = {.lex_state = 1030}, + [9808] = {.lex_state = 657}, + [9809] = {.lex_state = 785}, + [9810] = {.lex_state = 730}, + [9811] = {.lex_state = 785}, + [9812] = {.lex_state = 1050}, + [9813] = {.lex_state = 185}, + [9814] = {.lex_state = 657}, + [9815] = {.lex_state = 657}, + [9816] = {.lex_state = 657}, + [9817] = {.lex_state = 94}, + [9818] = {.lex_state = 785}, + [9819] = {.lex_state = 790}, + [9820] = {.lex_state = 657}, + [9821] = {.lex_state = 657}, + [9822] = {.lex_state = 1251}, + [9823] = {.lex_state = 0}, + [9824] = {.lex_state = 724}, + [9825] = {.lex_state = 657}, + [9826] = {.lex_state = 0}, + [9827] = {.lex_state = 657}, + [9828] = {.lex_state = 0}, + [9829] = {.lex_state = 1251}, + [9830] = {.lex_state = 657}, + [9831] = {.lex_state = 657}, + [9832] = {.lex_state = 676}, + [9833] = {.lex_state = 735}, + [9834] = {.lex_state = 734}, + [9835] = {.lex_state = 2567}, + [9836] = {.lex_state = 1030}, + [9837] = {.lex_state = 785}, + [9838] = {.lex_state = 657}, + [9839] = {.lex_state = 2567}, + [9840] = {.lex_state = 728}, + [9841] = {.lex_state = 657}, + [9842] = {.lex_state = 202}, + [9843] = {.lex_state = 657}, + [9844] = {.lex_state = 1030}, + [9845] = {.lex_state = 0}, + [9846] = {.lex_state = 2556}, + [9847] = {.lex_state = 790}, + [9848] = {.lex_state = 657}, + [9849] = {.lex_state = 657}, + [9850] = {.lex_state = 170}, + [9851] = {.lex_state = 785}, + [9852] = {.lex_state = 170}, + [9853] = {.lex_state = 657}, + [9854] = {.lex_state = 657}, + [9855] = {.lex_state = 726}, + [9856] = {.lex_state = 1030}, + [9857] = {.lex_state = 583}, + [9858] = {.lex_state = 1251}, + [9859] = {.lex_state = 170}, + [9860] = {.lex_state = 185}, + [9861] = {.lex_state = 0}, + [9862] = {.lex_state = 170}, + [9863] = {.lex_state = 170}, + [9864] = {.lex_state = 170}, + [9865] = {.lex_state = 785}, + [9866] = {.lex_state = 657}, + [9867] = {.lex_state = 2567}, + [9868] = {.lex_state = 1030}, + [9869] = {.lex_state = 170}, + [9870] = {.lex_state = 657}, + [9871] = {.lex_state = 785}, + [9872] = {.lex_state = 657}, + [9873] = {.lex_state = 657}, + [9874] = {.lex_state = 789}, + [9875] = {.lex_state = 170}, + [9876] = {.lex_state = 2555}, + [9877] = {.lex_state = 94}, + [9878] = {.lex_state = 170}, + [9879] = {.lex_state = 657}, + [9880] = {.lex_state = 669}, + [9881] = {.lex_state = 1030}, + [9882] = {.lex_state = 657}, + [9883] = {.lex_state = 730}, + [9884] = {.lex_state = 1030}, + [9885] = {.lex_state = 94}, + [9886] = {.lex_state = 657}, + [9887] = {.lex_state = 170}, + [9888] = {.lex_state = 657}, + [9889] = {.lex_state = 785}, + [9890] = {.lex_state = 170}, + [9891] = {.lex_state = 431}, + [9892] = {.lex_state = 94}, + [9893] = {.lex_state = 657}, + [9894] = {.lex_state = 657}, + [9895] = {.lex_state = 657}, + [9896] = {.lex_state = 736}, + [9897] = {.lex_state = 728}, + [9898] = {.lex_state = 785}, + [9899] = {.lex_state = 94}, + [9900] = {.lex_state = 1030}, + [9901] = {.lex_state = 657}, + [9902] = {.lex_state = 94}, + [9903] = {.lex_state = 1030}, + [9904] = {.lex_state = 94}, + [9905] = {.lex_state = 202}, + [9906] = {.lex_state = 1050}, + [9907] = {.lex_state = 657}, + [9908] = {.lex_state = 94}, + [9909] = {.lex_state = 2564}, + [9910] = {.lex_state = 1030}, + [9911] = {.lex_state = 94}, + [9912] = {.lex_state = 785}, + [9913] = {.lex_state = 94}, + [9914] = {.lex_state = 657}, + [9915] = {.lex_state = 785}, + [9916] = {.lex_state = 94}, + [9917] = {.lex_state = 94}, + [9918] = {.lex_state = 783}, + [9919] = {.lex_state = 94}, + [9920] = {.lex_state = 94}, [9921] = {.lex_state = 431}, - [9922] = {.lex_state = 766}, - [9923] = {.lex_state = 579}, - [9924] = {.lex_state = 579}, - [9925] = {.lex_state = 1065}, - [9926] = {.lex_state = 766}, - [9927] = {.lex_state = 579}, - [9928] = {.lex_state = 579}, - [9929] = {.lex_state = 766}, - [9930] = {.lex_state = 579}, - [9931] = {.lex_state = 579}, - [9932] = {.lex_state = 766}, - [9933] = {.lex_state = 579}, - [9934] = {.lex_state = 579}, - [9935] = {.lex_state = 766}, - [9936] = {.lex_state = 579}, - [9937] = {.lex_state = 579}, - [9938] = {.lex_state = 766}, - [9939] = {.lex_state = 579}, - [9940] = {.lex_state = 579}, - [9941] = {.lex_state = 766}, - [9942] = {.lex_state = 579}, - [9943] = {.lex_state = 579}, - [9944] = {.lex_state = 766}, - [9945] = {.lex_state = 579}, - [9946] = {.lex_state = 579}, - [9947] = {.lex_state = 356}, - [9948] = {.lex_state = 766}, - [9949] = {.lex_state = 579}, - [9950] = {.lex_state = 579}, - [9951] = {.lex_state = 766}, - [9952] = {.lex_state = 579}, - [9953] = {.lex_state = 579}, - [9954] = {.lex_state = 766}, - [9955] = {.lex_state = 579}, - [9956] = {.lex_state = 579}, - [9957] = {.lex_state = 766}, - [9958] = {.lex_state = 579}, - [9959] = {.lex_state = 579}, - [9960] = {.lex_state = 766}, - [9961] = {.lex_state = 579}, - [9962] = {.lex_state = 579}, - [9963] = {.lex_state = 766}, - [9964] = {.lex_state = 579}, - [9965] = {.lex_state = 579}, - [9966] = {.lex_state = 766}, - [9967] = {.lex_state = 579}, - [9968] = {.lex_state = 579}, - [9969] = {.lex_state = 766}, - [9970] = {.lex_state = 579}, - [9971] = {.lex_state = 579}, - [9972] = {.lex_state = 766}, - [9973] = {.lex_state = 579}, - [9974] = {.lex_state = 579}, - [9975] = {.lex_state = 766}, - [9976] = {.lex_state = 579}, - [9977] = {.lex_state = 579}, - [9978] = {.lex_state = 766}, - [9979] = {.lex_state = 579}, - [9980] = {.lex_state = 579}, - [9981] = {.lex_state = 1065}, - [9982] = {.lex_state = 579}, - [9983] = {.lex_state = 579}, - [9984] = {.lex_state = 356}, - [9985] = {.lex_state = 579}, - [9986] = {.lex_state = 579}, - [9987] = {.lex_state = 579}, - [9988] = {.lex_state = 579}, - [9989] = {.lex_state = 579}, - [9990] = {.lex_state = 579}, - [9991] = {.lex_state = 579}, - [9992] = {.lex_state = 579}, - [9993] = {.lex_state = 579}, - [9994] = {.lex_state = 579}, - [9995] = {.lex_state = 579}, - [9996] = {.lex_state = 579}, - [9997] = {.lex_state = 579}, - [9998] = {.lex_state = 579}, - [9999] = {.lex_state = 579}, - [10000] = {.lex_state = 579}, - [10001] = {.lex_state = 579}, - [10002] = {.lex_state = 579}, - [10003] = {.lex_state = 579}, - [10004] = {.lex_state = 579}, - [10005] = {.lex_state = 579}, - [10006] = {.lex_state = 579}, - [10007] = {.lex_state = 579}, - [10008] = {.lex_state = 579}, - [10009] = {.lex_state = 579}, - [10010] = {.lex_state = 579}, - [10011] = {.lex_state = 579}, - [10012] = {.lex_state = 579}, - [10013] = {.lex_state = 579}, - [10014] = {.lex_state = 579}, - [10015] = {.lex_state = 579}, - [10016] = {.lex_state = 579}, - [10017] = {.lex_state = 579}, - [10018] = {.lex_state = 579}, - [10019] = {.lex_state = 579}, - [10020] = {.lex_state = 579}, - [10021] = {.lex_state = 579}, - [10022] = {.lex_state = 579}, - [10023] = {.lex_state = 1065}, - [10024] = {.lex_state = 1065}, - [10025] = {.lex_state = 1065}, - [10026] = {.lex_state = 356}, - [10027] = {.lex_state = 1065}, - [10028] = {.lex_state = 1065}, - [10029] = {.lex_state = 1065}, - [10030] = {.lex_state = 1065}, - [10031] = {.lex_state = 431}, - [10032] = {.lex_state = 1065}, - [10033] = {.lex_state = 1065}, - [10034] = {.lex_state = 1065}, - [10035] = {.lex_state = 1065}, - [10036] = {.lex_state = 1065}, - [10037] = {.lex_state = 185}, + [9922] = {.lex_state = 94}, + [9923] = {.lex_state = 94}, + [9924] = {.lex_state = 790}, + [9925] = {.lex_state = 94}, + [9926] = {.lex_state = 1050}, + [9927] = {.lex_state = 94}, + [9928] = {.lex_state = 657}, + [9929] = {.lex_state = 529}, + [9930] = {.lex_state = 94}, + [9931] = {.lex_state = 726}, + [9932] = {.lex_state = 1030}, + [9933] = {.lex_state = 783}, + [9934] = {.lex_state = 94}, + [9935] = {.lex_state = 202}, + [9936] = {.lex_state = 785}, + [9937] = {.lex_state = 94}, + [9938] = {.lex_state = 1030}, + [9939] = {.lex_state = 657}, + [9940] = {.lex_state = 94}, + [9941] = {.lex_state = 764}, + [9942] = {.lex_state = 94}, + [9943] = {.lex_state = 94}, + [9944] = {.lex_state = 657}, + [9945] = {.lex_state = 94}, + [9946] = {.lex_state = 657}, + [9947] = {.lex_state = 94}, + [9948] = {.lex_state = 4688}, + [9949] = {.lex_state = 94}, + [9950] = {.lex_state = 94}, + [9951] = {.lex_state = 657}, + [9952] = {.lex_state = 94}, + [9953] = {.lex_state = 1251}, + [9954] = {.lex_state = 339}, + [9955] = {.lex_state = 94}, + [9956] = {.lex_state = 657}, + [9957] = {.lex_state = 94}, + [9958] = {.lex_state = 94}, + [9959] = {.lex_state = 94}, + [9960] = {.lex_state = 94}, + [9961] = {.lex_state = 94}, + [9962] = {.lex_state = 730}, + [9963] = {.lex_state = 785}, + [9964] = {.lex_state = 728}, + [9965] = {.lex_state = 1030}, + [9966] = {.lex_state = 1030}, + [9967] = {.lex_state = 657}, + [9968] = {.lex_state = 2567}, + [9969] = {.lex_state = 146}, + [9970] = {.lex_state = 185}, + [9971] = {.lex_state = 787}, + [9972] = {.lex_state = 785}, + [9973] = {.lex_state = 185}, + [9974] = {.lex_state = 785}, + [9975] = {.lex_state = 2562}, + [9976] = {.lex_state = 1251}, + [9977] = {.lex_state = 785}, + [9978] = {.lex_state = 657}, + [9979] = {.lex_state = 0}, + [9980] = {.lex_state = 94}, + [9981] = {.lex_state = 0}, + [9982] = {.lex_state = 2563}, + [9983] = {.lex_state = 2563}, + [9984] = {.lex_state = 2563}, + [9985] = {.lex_state = 185}, + [9986] = {.lex_state = 2563}, + [9987] = {.lex_state = 789}, + [9988] = {.lex_state = 0}, + [9989] = {.lex_state = 4892}, + [9990] = {.lex_state = 94}, + [9991] = {.lex_state = 0}, + [9992] = {.lex_state = 94}, + [9993] = {.lex_state = 2563}, + [9994] = {.lex_state = 0}, + [9995] = {.lex_state = 2563}, + [9996] = {.lex_state = 4892}, + [9997] = {.lex_state = 4892}, + [9998] = {.lex_state = 4892}, + [9999] = {.lex_state = 4892}, + [10000] = {.lex_state = 4892}, + [10001] = {.lex_state = 760}, + [10002] = {.lex_state = 2563}, + [10003] = {.lex_state = 2563}, + [10004] = {.lex_state = 94}, + [10005] = {.lex_state = 4892}, + [10006] = {.lex_state = 2563}, + [10007] = {.lex_state = 0}, + [10008] = {.lex_state = 4892}, + [10009] = {.lex_state = 4892}, + [10010] = {.lex_state = 4892}, + [10011] = {.lex_state = 4892}, + [10012] = {.lex_state = 2563}, + [10013] = {.lex_state = 94}, + [10014] = {.lex_state = 4892}, + [10015] = {.lex_state = 2563}, + [10016] = {.lex_state = 0}, + [10017] = {.lex_state = 2563}, + [10018] = {.lex_state = 0}, + [10019] = {.lex_state = 0}, + [10020] = {.lex_state = 2563}, + [10021] = {.lex_state = 0}, + [10022] = {.lex_state = 4892}, + [10023] = {.lex_state = 4892}, + [10024] = {.lex_state = 185}, + [10025] = {.lex_state = 2563}, + [10026] = {.lex_state = 730}, + [10027] = {.lex_state = 4892}, + [10028] = {.lex_state = 765}, + [10029] = {.lex_state = 0}, + [10030] = {.lex_state = 0}, + [10031] = {.lex_state = 4892}, + [10032] = {.lex_state = 2563}, + [10033] = {.lex_state = 2563}, + [10034] = {.lex_state = 4892}, + [10035] = {.lex_state = 2563}, + [10036] = {.lex_state = 4894}, + [10037] = {.lex_state = 170}, [10038] = {.lex_state = 185}, - [10039] = {.lex_state = 185}, - [10040] = {.lex_state = 1065}, - [10041] = {.lex_state = 1065}, - [10042] = {.lex_state = 1065}, - [10043] = {.lex_state = 1065}, - [10044] = {.lex_state = 1065}, - [10045] = {.lex_state = 1065}, - [10046] = {.lex_state = 1065}, - [10047] = {.lex_state = 766}, - [10048] = {.lex_state = 1065}, - [10049] = {.lex_state = 431}, - [10050] = {.lex_state = 1065}, - [10051] = {.lex_state = 579}, - [10052] = {.lex_state = 730}, - [10053] = {.lex_state = 1065}, - [10054] = {.lex_state = 1065}, - [10055] = {.lex_state = 356}, - [10056] = {.lex_state = 356}, - [10057] = {.lex_state = 1065}, - [10058] = {.lex_state = 579}, - [10059] = {.lex_state = 356}, - [10060] = {.lex_state = 1065}, - [10061] = {.lex_state = 1065}, - [10062] = {.lex_state = 1065}, - [10063] = {.lex_state = 356}, - [10064] = {.lex_state = 1065}, - [10065] = {.lex_state = 1065}, - [10066] = {.lex_state = 356}, - [10067] = {.lex_state = 431}, - [10068] = {.lex_state = 1065}, - [10069] = {.lex_state = 1065}, - [10070] = {.lex_state = 185}, - [10071] = {.lex_state = 1065}, - [10072] = {.lex_state = 1065}, - [10073] = {.lex_state = 1065}, - [10074] = {.lex_state = 1065}, - [10075] = {.lex_state = 1065}, - [10076] = {.lex_state = 1065}, - [10077] = {.lex_state = 1065}, - [10078] = {.lex_state = 1065}, - [10079] = {.lex_state = 1065}, - [10080] = {.lex_state = 1065}, - [10081] = {.lex_state = 1065}, - [10082] = {.lex_state = 1065}, - [10083] = {.lex_state = 1065}, - [10084] = {.lex_state = 1065}, - [10085] = {.lex_state = 1065}, - [10086] = {.lex_state = 1065}, - [10087] = {.lex_state = 1065}, - [10088] = {.lex_state = 1065}, - [10089] = {.lex_state = 766}, - [10090] = {.lex_state = 1065}, - [10091] = {.lex_state = 1065}, - [10092] = {.lex_state = 1065}, - [10093] = {.lex_state = 1065}, - [10094] = {.lex_state = 579}, - [10095] = {.lex_state = 1065}, - [10096] = {.lex_state = 1065}, - [10097] = {.lex_state = 1065}, - [10098] = {.lex_state = 1065}, - [10099] = {.lex_state = 579}, - [10100] = {.lex_state = 1065}, - [10101] = {.lex_state = 1065}, - [10102] = {.lex_state = 1065}, - [10103] = {.lex_state = 356}, - [10104] = {.lex_state = 1065}, - [10105] = {.lex_state = 1065}, - [10106] = {.lex_state = 356}, - [10107] = {.lex_state = 1065}, - [10108] = {.lex_state = 1065}, - [10109] = {.lex_state = 1065}, - [10110] = {.lex_state = 1065}, - [10111] = {.lex_state = 1065}, - [10112] = {.lex_state = 1065}, - [10113] = {.lex_state = 1065}, - [10114] = {.lex_state = 98}, - [10115] = {.lex_state = 1065}, - [10116] = {.lex_state = 1065}, - [10117] = {.lex_state = 1065}, - [10118] = {.lex_state = 1065}, - [10119] = {.lex_state = 243}, - [10120] = {.lex_state = 243}, - [10121] = {.lex_state = 243}, - [10122] = {.lex_state = 243}, - [10123] = {.lex_state = 185}, - [10124] = {.lex_state = 1065}, - [10125] = {.lex_state = 2594}, - [10126] = {.lex_state = 766}, - [10127] = {.lex_state = 1065}, - [10128] = {.lex_state = 1065}, - [10129] = {.lex_state = 1065}, - [10130] = {.lex_state = 579}, - [10131] = {.lex_state = 1065}, - [10132] = {.lex_state = 1065}, - [10133] = {.lex_state = 1065}, - [10134] = {.lex_state = 579}, - [10135] = {.lex_state = 1065}, - [10136] = {.lex_state = 1065}, - [10137] = {.lex_state = 763}, - [10138] = {.lex_state = 356}, - [10139] = {.lex_state = 1065}, - [10140] = {.lex_state = 356}, - [10141] = {.lex_state = 1065}, - [10142] = {.lex_state = 1065}, - [10143] = {.lex_state = 1065}, - [10144] = {.lex_state = 1065}, - [10145] = {.lex_state = 1065}, + [10039] = {.lex_state = 0}, + [10040] = {.lex_state = 4892}, + [10041] = {.lex_state = 4892}, + [10042] = {.lex_state = 4892}, + [10043] = {.lex_state = 0}, + [10044] = {.lex_state = 4892}, + [10045] = {.lex_state = 0}, + [10046] = {.lex_state = 767}, + [10047] = {.lex_state = 4689}, + [10048] = {.lex_state = 4892}, + [10049] = {.lex_state = 0}, + [10050] = {.lex_state = 730}, + [10051] = {.lex_state = 2563}, + [10052] = {.lex_state = 2563}, + [10053] = {.lex_state = 0}, + [10054] = {.lex_state = 4892}, + [10055] = {.lex_state = 0}, + [10056] = {.lex_state = 4892}, + [10057] = {.lex_state = 4894}, + [10058] = {.lex_state = 0}, + [10059] = {.lex_state = 2563}, + [10060] = {.lex_state = 4892}, + [10061] = {.lex_state = 4892}, + [10062] = {.lex_state = 0}, + [10063] = {.lex_state = 4892}, + [10064] = {.lex_state = 0}, + [10065] = {.lex_state = 657}, + [10066] = {.lex_state = 2563}, + [10067] = {.lex_state = 2563}, + [10068] = {.lex_state = 2563}, + [10069] = {.lex_state = 730}, + [10070] = {.lex_state = 0}, + [10071] = {.lex_state = 0}, + [10072] = {.lex_state = 0}, + [10073] = {.lex_state = 0}, + [10074] = {.lex_state = 0}, + [10075] = {.lex_state = 185}, + [10076] = {.lex_state = 2563}, + [10077] = {.lex_state = 0}, + [10078] = {.lex_state = 0}, + [10079] = {.lex_state = 4892}, + [10080] = {.lex_state = 730}, + [10081] = {.lex_state = 0}, + [10082] = {.lex_state = 94}, + [10083] = {.lex_state = 4892}, + [10084] = {.lex_state = 730}, + [10085] = {.lex_state = 2563}, + [10086] = {.lex_state = 0}, + [10087] = {.lex_state = 3174}, + [10088] = {.lex_state = 0}, + [10089] = {.lex_state = 0}, + [10090] = {.lex_state = 2563}, + [10091] = {.lex_state = 730}, + [10092] = {.lex_state = 4892}, + [10093] = {.lex_state = 4892}, + [10094] = {.lex_state = 4894}, + [10095] = {.lex_state = 0}, + [10096] = {.lex_state = 94}, + [10097] = {.lex_state = 730}, + [10098] = {.lex_state = 730}, + [10099] = {.lex_state = 0}, + [10100] = {.lex_state = 2563}, + [10101] = {.lex_state = 0}, + [10102] = {.lex_state = 2563}, + [10103] = {.lex_state = 730}, + [10104] = {.lex_state = 730}, + [10105] = {.lex_state = 730}, + [10106] = {.lex_state = 0}, + [10107] = {.lex_state = 0}, + [10108] = {.lex_state = 760}, + [10109] = {.lex_state = 730}, + [10110] = {.lex_state = 770}, + [10111] = {.lex_state = 2563}, + [10112] = {.lex_state = 2563}, + [10113] = {.lex_state = 0}, + [10114] = {.lex_state = 4892}, + [10115] = {.lex_state = 4892}, + [10116] = {.lex_state = 730}, + [10117] = {.lex_state = 2563}, + [10118] = {.lex_state = 0}, + [10119] = {.lex_state = 2563}, + [10120] = {.lex_state = 731}, + [10121] = {.lex_state = 730}, + [10122] = {.lex_state = 731}, + [10123] = {.lex_state = 4689}, + [10124] = {.lex_state = 0}, + [10125] = {.lex_state = 730}, + [10126] = {.lex_state = 2563}, + [10127] = {.lex_state = 4690}, + [10128] = {.lex_state = 0}, + [10129] = {.lex_state = 0}, + [10130] = {.lex_state = 170}, + [10131] = {.lex_state = 730}, + [10132] = {.lex_state = 4892}, + [10133] = {.lex_state = 4892}, + [10134] = {.lex_state = 0}, + [10135] = {.lex_state = 2563}, + [10136] = {.lex_state = 730}, + [10137] = {.lex_state = 731}, + [10138] = {.lex_state = 0}, + [10139] = {.lex_state = 4892}, + [10140] = {.lex_state = 730}, + [10141] = {.lex_state = 170}, + [10142] = {.lex_state = 731}, + [10143] = {.lex_state = 730}, + [10144] = {.lex_state = 0}, + [10145] = {.lex_state = 356}, [10146] = {.lex_state = 730}, - [10147] = {.lex_state = 1065}, - [10148] = {.lex_state = 1065}, - [10149] = {.lex_state = 1065}, - [10150] = {.lex_state = 1065}, - [10151] = {.lex_state = 1065}, - [10152] = {.lex_state = 1065}, - [10153] = {.lex_state = 766}, - [10154] = {.lex_state = 1065}, - [10155] = {.lex_state = 1065}, - [10156] = {.lex_state = 579}, - [10157] = {.lex_state = 579}, - [10158] = {.lex_state = 431}, - [10159] = {.lex_state = 356}, - [10160] = {.lex_state = 431}, - [10161] = {.lex_state = 431}, - [10162] = {.lex_state = 356}, - [10163] = {.lex_state = 431}, - [10164] = {.lex_state = 431}, - [10165] = {.lex_state = 431}, - [10166] = {.lex_state = 584}, - [10167] = {.lex_state = 730}, - [10168] = {.lex_state = 758}, - [10169] = {.lex_state = 766}, - [10170] = {.lex_state = 1065}, - [10171] = {.lex_state = 1035}, - [10172] = {.lex_state = 356}, - [10173] = {.lex_state = 1065}, - [10174] = {.lex_state = 579}, - [10175] = {.lex_state = 1035}, - [10176] = {.lex_state = 579}, - [10177] = {.lex_state = 356}, - [10178] = {.lex_state = 1065}, - [10179] = {.lex_state = 356}, - [10180] = {.lex_state = 785}, - [10181] = {.lex_state = 0}, - [10182] = {.lex_state = 1065}, - [10183] = {.lex_state = 0}, - [10184] = {.lex_state = 356}, - [10185] = {.lex_state = 1065}, + [10147] = {.lex_state = 2566}, + [10148] = {.lex_state = 2563}, + [10149] = {.lex_state = 94}, + [10150] = {.lex_state = 730}, + [10151] = {.lex_state = 4892}, + [10152] = {.lex_state = 4892}, + [10153] = {.lex_state = 170}, + [10154] = {.lex_state = 730}, + [10155] = {.lex_state = 730}, + [10156] = {.lex_state = 170}, + [10157] = {.lex_state = 1251}, + [10158] = {.lex_state = 2563}, + [10159] = {.lex_state = 2563}, + [10160] = {.lex_state = 730}, + [10161] = {.lex_state = 2563}, + [10162] = {.lex_state = 4892}, + [10163] = {.lex_state = 0}, + [10164] = {.lex_state = 4892}, + [10165] = {.lex_state = 2568}, + [10166] = {.lex_state = 730}, + [10167] = {.lex_state = 2563}, + [10168] = {.lex_state = 0}, + [10169] = {.lex_state = 185}, + [10170] = {.lex_state = 2563}, + [10171] = {.lex_state = 4892}, + [10172] = {.lex_state = 730}, + [10173] = {.lex_state = 4690}, + [10174] = {.lex_state = 2563}, + [10175] = {.lex_state = 2563}, + [10176] = {.lex_state = 730}, + [10177] = {.lex_state = 730}, + [10178] = {.lex_state = 0}, + [10179] = {.lex_state = 4689}, + [10180] = {.lex_state = 2563}, + [10181] = {.lex_state = 4690}, + [10182] = {.lex_state = 730}, + [10183] = {.lex_state = 4892}, + [10184] = {.lex_state = 4892}, + [10185] = {.lex_state = 731}, [10186] = {.lex_state = 730}, - [10187] = {.lex_state = 1035}, - [10188] = {.lex_state = 1065}, - [10189] = {.lex_state = 766}, - [10190] = {.lex_state = 0}, - [10191] = {.lex_state = 0}, - [10192] = {.lex_state = 579}, - [10193] = {.lex_state = 699}, - [10194] = {.lex_state = 1065}, - [10195] = {.lex_state = 669}, - [10196] = {.lex_state = 579}, - [10197] = {.lex_state = 1065}, - [10198] = {.lex_state = 356}, - [10199] = {.lex_state = 356}, - [10200] = {.lex_state = 699}, - [10201] = {.lex_state = 185}, - [10202] = {.lex_state = 202}, - [10203] = {.lex_state = 185}, - [10204] = {.lex_state = 2600}, - [10205] = {.lex_state = 790}, - [10206] = {.lex_state = 776}, - [10207] = {.lex_state = 657}, - [10208] = {.lex_state = 1035}, - [10209] = {.lex_state = 776}, - [10210] = {.lex_state = 202}, - [10211] = {.lex_state = 657}, - [10212] = {.lex_state = 788}, - [10213] = {.lex_state = 657}, - [10214] = {.lex_state = 657}, - [10215] = {.lex_state = 1281}, - [10216] = {.lex_state = 657}, - [10217] = {.lex_state = 1035}, - [10218] = {.lex_state = 657}, - [10219] = {.lex_state = 657}, - [10220] = {.lex_state = 1035}, - [10221] = {.lex_state = 2599}, - [10222] = {.lex_state = 680}, - [10223] = {.lex_state = 788}, - [10224] = {.lex_state = 1035}, - [10225] = {.lex_state = 657}, - [10226] = {.lex_state = 657}, - [10227] = {.lex_state = 788}, - [10228] = {.lex_state = 657}, - [10229] = {.lex_state = 339}, - [10230] = {.lex_state = 735}, - [10231] = {.lex_state = 1035}, - [10232] = {.lex_state = 657}, - [10233] = {.lex_state = 657}, - [10234] = {.lex_state = 790}, - [10235] = {.lex_state = 790}, - [10236] = {.lex_state = 657}, - [10237] = {.lex_state = 669}, - [10238] = {.lex_state = 202}, - [10239] = {.lex_state = 657}, - [10240] = {.lex_state = 657}, - [10241] = {.lex_state = 788}, - [10242] = {.lex_state = 1035}, - [10243] = {.lex_state = 1281}, - [10244] = {.lex_state = 788}, - [10245] = {.lex_state = 764}, - [10246] = {.lex_state = 657}, - [10247] = {.lex_state = 657}, - [10248] = {.lex_state = 657}, - [10249] = {.lex_state = 1035}, - [10250] = {.lex_state = 788}, - [10251] = {.lex_state = 657}, - [10252] = {.lex_state = 1035}, - [10253] = {.lex_state = 657}, - [10254] = {.lex_state = 657}, - [10255] = {.lex_state = 657}, - [10256] = {.lex_state = 657}, - [10257] = {.lex_state = 657}, - [10258] = {.lex_state = 2594}, - [10259] = {.lex_state = 1065}, - [10260] = {.lex_state = 790}, - [10261] = {.lex_state = 657}, - [10262] = {.lex_state = 185}, - [10263] = {.lex_state = 657}, - [10264] = {.lex_state = 724}, - [10265] = {.lex_state = 1281}, - [10266] = {.lex_state = 185}, - [10267] = {.lex_state = 2605}, - [10268] = {.lex_state = 657}, - [10269] = {.lex_state = 657}, - [10270] = {.lex_state = 94}, - [10271] = {.lex_state = 788}, + [10187] = {.lex_state = 2563}, + [10188] = {.lex_state = 0}, + [10189] = {.lex_state = 339}, + [10190] = {.lex_state = 730}, + [10191] = {.lex_state = 4892}, + [10192] = {.lex_state = 2563}, + [10193] = {.lex_state = 4892}, + [10194] = {.lex_state = 730}, + [10195] = {.lex_state = 4892}, + [10196] = {.lex_state = 2563}, + [10197] = {.lex_state = 4892}, + [10198] = {.lex_state = 730}, + [10199] = {.lex_state = 0}, + [10200] = {.lex_state = 4892}, + [10201] = {.lex_state = 730}, + [10202] = {.lex_state = 2563}, + [10203] = {.lex_state = 4894}, + [10204] = {.lex_state = 2564}, + [10205] = {.lex_state = 730}, + [10206] = {.lex_state = 4892}, + [10207] = {.lex_state = 0}, + [10208] = {.lex_state = 4892}, + [10209] = {.lex_state = 730}, + [10210] = {.lex_state = 0}, + [10211] = {.lex_state = 4892}, + [10212] = {.lex_state = 0}, + [10213] = {.lex_state = 730}, + [10214] = {.lex_state = 4892}, + [10215] = {.lex_state = 4892}, + [10216] = {.lex_state = 730}, + [10217] = {.lex_state = 2563}, + [10218] = {.lex_state = 4892}, + [10219] = {.lex_state = 730}, + [10220] = {.lex_state = 0}, + [10221] = {.lex_state = 2563}, + [10222] = {.lex_state = 730}, + [10223] = {.lex_state = 0}, + [10224] = {.lex_state = 170}, + [10225] = {.lex_state = 730}, + [10226] = {.lex_state = 0}, + [10227] = {.lex_state = 730}, + [10228] = {.lex_state = 0}, + [10229] = {.lex_state = 730}, + [10230] = {.lex_state = 0}, + [10231] = {.lex_state = 730}, + [10232] = {.lex_state = 730}, + [10233] = {.lex_state = 2563}, + [10234] = {.lex_state = 4892}, + [10235] = {.lex_state = 0}, + [10236] = {.lex_state = 2563}, + [10237] = {.lex_state = 2563}, + [10238] = {.lex_state = 0}, + [10239] = {.lex_state = 0}, + [10240] = {.lex_state = 2566}, + [10241] = {.lex_state = 657}, + [10242] = {.lex_state = 4892}, + [10243] = {.lex_state = 2563}, + [10244] = {.lex_state = 4892}, + [10245] = {.lex_state = 4894}, + [10246] = {.lex_state = 0}, + [10247] = {.lex_state = 0}, + [10248] = {.lex_state = 0}, + [10249] = {.lex_state = 0}, + [10250] = {.lex_state = 0}, + [10251] = {.lex_state = 2563}, + [10252] = {.lex_state = 0}, + [10253] = {.lex_state = 4892}, + [10254] = {.lex_state = 2563}, + [10255] = {.lex_state = 2566}, + [10256] = {.lex_state = 4892}, + [10257] = {.lex_state = 669}, + [10258] = {.lex_state = 2563}, + [10259] = {.lex_state = 0}, + [10260] = {.lex_state = 4892}, + [10261] = {.lex_state = 4892}, + [10262] = {.lex_state = 2563}, + [10263] = {.lex_state = 0}, + [10264] = {.lex_state = 2568}, + [10265] = {.lex_state = 0}, + [10266] = {.lex_state = 0}, + [10267] = {.lex_state = 785}, + [10268] = {.lex_state = 0}, + [10269] = {.lex_state = 185}, + [10270] = {.lex_state = 0}, + [10271] = {.lex_state = 0}, [10272] = {.lex_state = 0}, - [10273] = {.lex_state = 657}, - [10274] = {.lex_state = 170}, - [10275] = {.lex_state = 1065}, - [10276] = {.lex_state = 1065}, - [10277] = {.lex_state = 788}, - [10278] = {.lex_state = 1035}, - [10279] = {.lex_state = 775}, - [10280] = {.lex_state = 170}, - [10281] = {.lex_state = 657}, - [10282] = {.lex_state = 788}, - [10283] = {.lex_state = 786}, - [10284] = {.lex_state = 734}, - [10285] = {.lex_state = 170}, - [10286] = {.lex_state = 657}, - [10287] = {.lex_state = 728}, - [10288] = {.lex_state = 788}, - [10289] = {.lex_state = 788}, - [10290] = {.lex_state = 1035}, - [10291] = {.lex_state = 657}, - [10292] = {.lex_state = 1035}, - [10293] = {.lex_state = 788}, - [10294] = {.lex_state = 1035}, - [10295] = {.lex_state = 726}, - [10296] = {.lex_state = 657}, - [10297] = {.lex_state = 726}, - [10298] = {.lex_state = 657}, - [10299] = {.lex_state = 788}, - [10300] = {.lex_state = 657}, - [10301] = {.lex_state = 657}, - [10302] = {.lex_state = 657}, - [10303] = {.lex_state = 1035}, - [10304] = {.lex_state = 788}, - [10305] = {.lex_state = 4733}, - [10306] = {.lex_state = 657}, - [10307] = {.lex_state = 788}, - [10308] = {.lex_state = 1281}, - [10309] = {.lex_state = 657}, - [10310] = {.lex_state = 728}, - [10311] = {.lex_state = 657}, - [10312] = {.lex_state = 657}, - [10313] = {.lex_state = 657}, - [10314] = {.lex_state = 339}, - [10315] = {.lex_state = 529}, - [10316] = {.lex_state = 1281}, - [10317] = {.lex_state = 2602}, - [10318] = {.lex_state = 786}, - [10319] = {.lex_state = 657}, - [10320] = {.lex_state = 788}, - [10321] = {.lex_state = 788}, - [10322] = {.lex_state = 657}, - [10323] = {.lex_state = 1035}, - [10324] = {.lex_state = 2605}, - [10325] = {.lex_state = 431}, - [10326] = {.lex_state = 730}, - [10327] = {.lex_state = 94}, - [10328] = {.lex_state = 676}, + [10273] = {.lex_state = 0}, + [10274] = {.lex_state = 185}, + [10275] = {.lex_state = 185}, + [10276] = {.lex_state = 185}, + [10277] = {.lex_state = 0}, + [10278] = {.lex_state = 185}, + [10279] = {.lex_state = 185}, + [10280] = {.lex_state = 785}, + [10281] = {.lex_state = 785}, + [10282] = {.lex_state = 785}, + [10283] = {.lex_state = 0}, + [10284] = {.lex_state = 2568}, + [10285] = {.lex_state = 2568}, + [10286] = {.lex_state = 0}, + [10287] = {.lex_state = 0}, + [10288] = {.lex_state = 0}, + [10289] = {.lex_state = 0}, + [10290] = {.lex_state = 2568}, + [10291] = {.lex_state = 0}, + [10292] = {.lex_state = 2568}, + [10293] = {.lex_state = 2568}, + [10294] = {.lex_state = 731}, + [10295] = {.lex_state = 0}, + [10296] = {.lex_state = 0}, + [10297] = {.lex_state = 185}, + [10298] = {.lex_state = 356}, + [10299] = {.lex_state = 0}, + [10300] = {.lex_state = 170}, + [10301] = {.lex_state = 0}, + [10302] = {.lex_state = 0}, + [10303] = {.lex_state = 2568}, + [10304] = {.lex_state = 0}, + [10305] = {.lex_state = 0}, + [10306] = {.lex_state = 185}, + [10307] = {.lex_state = 185}, + [10308] = {.lex_state = 0}, + [10309] = {.lex_state = 0}, + [10310] = {.lex_state = 4892}, + [10311] = {.lex_state = 0}, + [10312] = {.lex_state = 0}, + [10313] = {.lex_state = 0}, + [10314] = {.lex_state = 1251}, + [10315] = {.lex_state = 3174}, + [10316] = {.lex_state = 785}, + [10317] = {.lex_state = 0}, + [10318] = {.lex_state = 0}, + [10319] = {.lex_state = 785}, + [10320] = {.lex_state = 0}, + [10321] = {.lex_state = 0}, + [10322] = {.lex_state = 0}, + [10323] = {.lex_state = 0}, + [10324] = {.lex_state = 731}, + [10325] = {.lex_state = 185}, + [10326] = {.lex_state = 2568}, + [10327] = {.lex_state = 0}, + [10328] = {.lex_state = 0}, [10329] = {.lex_state = 0}, - [10330] = {.lex_state = 728}, + [10330] = {.lex_state = 2568}, [10331] = {.lex_state = 0}, - [10332] = {.lex_state = 185}, - [10333] = {.lex_state = 657}, - [10334] = {.lex_state = 0}, - [10335] = {.lex_state = 657}, - [10336] = {.lex_state = 657}, - [10337] = {.lex_state = 788}, - [10338] = {.lex_state = 657}, - [10339] = {.lex_state = 657}, - [10340] = {.lex_state = 1035}, - [10341] = {.lex_state = 788}, - [10342] = {.lex_state = 786}, - [10343] = {.lex_state = 786}, - [10344] = {.lex_state = 657}, - [10345] = {.lex_state = 1035}, - [10346] = {.lex_state = 185}, - [10347] = {.lex_state = 657}, - [10348] = {.lex_state = 657}, - [10349] = {.lex_state = 657}, - [10350] = {.lex_state = 788}, - [10351] = {.lex_state = 657}, - [10352] = {.lex_state = 2593}, - [10353] = {.lex_state = 94}, - [10354] = {.lex_state = 736}, - [10355] = {.lex_state = 170}, - [10356] = {.lex_state = 1281}, - [10357] = {.lex_state = 669}, - [10358] = {.lex_state = 2597}, - [10359] = {.lex_state = 657}, - [10360] = {.lex_state = 2605}, - [10361] = {.lex_state = 94}, - [10362] = {.lex_state = 657}, - [10363] = {.lex_state = 657}, - [10364] = {.lex_state = 4732}, - [10365] = {.lex_state = 788}, - [10366] = {.lex_state = 730}, - [10367] = {.lex_state = 657}, - [10368] = {.lex_state = 786}, - [10369] = {.lex_state = 94}, - [10370] = {.lex_state = 170}, - [10371] = {.lex_state = 170}, - [10372] = {.lex_state = 790}, - [10373] = {.lex_state = 1035}, - [10374] = {.lex_state = 94}, - [10375] = {.lex_state = 657}, - [10376] = {.lex_state = 170}, - [10377] = {.lex_state = 94}, - [10378] = {.lex_state = 170}, - [10379] = {.lex_state = 185}, - [10380] = {.lex_state = 94}, - [10381] = {.lex_state = 185}, - [10382] = {.lex_state = 94}, - [10383] = {.lex_state = 170}, - [10384] = {.lex_state = 170}, - [10385] = {.lex_state = 94}, - [10386] = {.lex_state = 94}, - [10387] = {.lex_state = 170}, - [10388] = {.lex_state = 94}, - [10389] = {.lex_state = 657}, - [10390] = {.lex_state = 170}, - [10391] = {.lex_state = 94}, - [10392] = {.lex_state = 170}, - [10393] = {.lex_state = 788}, - [10394] = {.lex_state = 94}, - [10395] = {.lex_state = 579}, - [10396] = {.lex_state = 94}, - [10397] = {.lex_state = 657}, - [10398] = {.lex_state = 170}, - [10399] = {.lex_state = 94}, - [10400] = {.lex_state = 94}, - [10401] = {.lex_state = 1035}, - [10402] = {.lex_state = 94}, - [10403] = {.lex_state = 170}, + [10332] = {.lex_state = 2568}, + [10333] = {.lex_state = 2568}, + [10334] = {.lex_state = 4894}, + [10335] = {.lex_state = 0}, + [10336] = {.lex_state = 0}, + [10337] = {.lex_state = 0}, + [10338] = {.lex_state = 2568}, + [10339] = {.lex_state = 773}, + [10340] = {.lex_state = 0}, + [10341] = {.lex_state = 0}, + [10342] = {.lex_state = 185}, + [10343] = {.lex_state = 185}, + [10344] = {.lex_state = 185}, + [10345] = {.lex_state = 785}, + [10346] = {.lex_state = 0}, + [10347] = {.lex_state = 4691}, + [10348] = {.lex_state = 785}, + [10349] = {.lex_state = 0}, + [10350] = {.lex_state = 0}, + [10351] = {.lex_state = 0}, + [10352] = {.lex_state = 0}, + [10353] = {.lex_state = 0}, + [10354] = {.lex_state = 185}, + [10355] = {.lex_state = 0}, + [10356] = {.lex_state = 185}, + [10357] = {.lex_state = 0}, + [10358] = {.lex_state = 0}, + [10359] = {.lex_state = 1251}, + [10360] = {.lex_state = 185}, + [10361] = {.lex_state = 2568}, + [10362] = {.lex_state = 731}, + [10363] = {.lex_state = 0}, + [10364] = {.lex_state = 0}, + [10365] = {.lex_state = 785}, + [10366] = {.lex_state = 2568}, + [10367] = {.lex_state = 0}, + [10368] = {.lex_state = 0}, + [10369] = {.lex_state = 0}, + [10370] = {.lex_state = 0}, + [10371] = {.lex_state = 669}, + [10372] = {.lex_state = 185}, + [10373] = {.lex_state = 0}, + [10374] = {.lex_state = 2568}, + [10375] = {.lex_state = 2568}, + [10376] = {.lex_state = 785}, + [10377] = {.lex_state = 0}, + [10378] = {.lex_state = 0}, + [10379] = {.lex_state = 0}, + [10380] = {.lex_state = 0}, + [10381] = {.lex_state = 0}, + [10382] = {.lex_state = 185}, + [10383] = {.lex_state = 0}, + [10384] = {.lex_state = 1251}, + [10385] = {.lex_state = 0}, + [10386] = {.lex_state = 2568}, + [10387] = {.lex_state = 0}, + [10388] = {.lex_state = 2568}, + [10389] = {.lex_state = 2568}, + [10390] = {.lex_state = 185}, + [10391] = {.lex_state = 170}, + [10392] = {.lex_state = 0}, + [10393] = {.lex_state = 0}, + [10394] = {.lex_state = 0}, + [10395] = {.lex_state = 0}, + [10396] = {.lex_state = 0}, + [10397] = {.lex_state = 2568}, + [10398] = {.lex_state = 0}, + [10399] = {.lex_state = 770}, + [10400] = {.lex_state = 0}, + [10401] = {.lex_state = 2568}, + [10402] = {.lex_state = 785}, + [10403] = {.lex_state = 0}, [10404] = {.lex_state = 0}, - [10405] = {.lex_state = 94}, - [10406] = {.lex_state = 94}, - [10407] = {.lex_state = 1065}, - [10408] = {.lex_state = 1065}, - [10409] = {.lex_state = 1035}, - [10410] = {.lex_state = 1035}, - [10411] = {.lex_state = 94}, - [10412] = {.lex_state = 657}, - [10413] = {.lex_state = 1035}, - [10414] = {.lex_state = 94}, - [10415] = {.lex_state = 657}, - [10416] = {.lex_state = 2593}, - [10417] = {.lex_state = 94}, - [10418] = {.lex_state = 0}, - [10419] = {.lex_state = 94}, - [10420] = {.lex_state = 657}, - [10421] = {.lex_state = 94}, - [10422] = {.lex_state = 94}, - [10423] = {.lex_state = 657}, - [10424] = {.lex_state = 776}, - [10425] = {.lex_state = 94}, - [10426] = {.lex_state = 730}, - [10427] = {.lex_state = 1035}, - [10428] = {.lex_state = 788}, - [10429] = {.lex_state = 94}, - [10430] = {.lex_state = 94}, - [10431] = {.lex_state = 94}, - [10432] = {.lex_state = 657}, - [10433] = {.lex_state = 94}, - [10434] = {.lex_state = 94}, - [10435] = {.lex_state = 728}, - [10436] = {.lex_state = 94}, - [10437] = {.lex_state = 730}, - [10438] = {.lex_state = 94}, - [10439] = {.lex_state = 94}, - [10440] = {.lex_state = 1035}, - [10441] = {.lex_state = 94}, - [10442] = {.lex_state = 94}, - [10443] = {.lex_state = 657}, - [10444] = {.lex_state = 94}, - [10445] = {.lex_state = 1281}, - [10446] = {.lex_state = 1035}, - [10447] = {.lex_state = 1035}, - [10448] = {.lex_state = 2605}, - [10449] = {.lex_state = 431}, - [10450] = {.lex_state = 657}, - [10451] = {.lex_state = 1035}, - [10452] = {.lex_state = 657}, - [10453] = {.lex_state = 1035}, - [10454] = {.lex_state = 788}, - [10455] = {.lex_state = 657}, - [10456] = {.lex_state = 146}, - [10457] = {.lex_state = 2601}, - [10458] = {.lex_state = 4937}, - [10459] = {.lex_state = 0}, - [10460] = {.lex_state = 730}, - [10461] = {.lex_state = 4937}, - [10462] = {.lex_state = 4937}, - [10463] = {.lex_state = 4937}, - [10464] = {.lex_state = 94}, - [10465] = {.lex_state = 4937}, - [10466] = {.lex_state = 4937}, - [10467] = {.lex_state = 170}, - [10468] = {.lex_state = 2601}, + [10405] = {.lex_state = 0}, + [10406] = {.lex_state = 0}, + [10407] = {.lex_state = 0}, + [10408] = {.lex_state = 0}, + [10409] = {.lex_state = 0}, + [10410] = {.lex_state = 0}, + [10411] = {.lex_state = 785}, + [10412] = {.lex_state = 0}, + [10413] = {.lex_state = 0}, + [10414] = {.lex_state = 0}, + [10415] = {.lex_state = 0}, + [10416] = {.lex_state = 1251}, + [10417] = {.lex_state = 0}, + [10418] = {.lex_state = 185}, + [10419] = {.lex_state = 0}, + [10420] = {.lex_state = 731}, + [10421] = {.lex_state = 0}, + [10422] = {.lex_state = 0}, + [10423] = {.lex_state = 0}, + [10424] = {.lex_state = 2568}, + [10425] = {.lex_state = 2568}, + [10426] = {.lex_state = 2568}, + [10427] = {.lex_state = 2568}, + [10428] = {.lex_state = 0}, + [10429] = {.lex_state = 0}, + [10430] = {.lex_state = 2568}, + [10431] = {.lex_state = 2568}, + [10432] = {.lex_state = 1251}, + [10433] = {.lex_state = 0}, + [10434] = {.lex_state = 4892}, + [10435] = {.lex_state = 0}, + [10436] = {.lex_state = 0}, + [10437] = {.lex_state = 185}, + [10438] = {.lex_state = 170}, + [10439] = {.lex_state = 785}, + [10440] = {.lex_state = 185}, + [10441] = {.lex_state = 0}, + [10442] = {.lex_state = 785}, + [10443] = {.lex_state = 0}, + [10444] = {.lex_state = 0}, + [10445] = {.lex_state = 0}, + [10446] = {.lex_state = 0}, + [10447] = {.lex_state = 1251}, + [10448] = {.lex_state = 185}, + [10449] = {.lex_state = 185}, + [10450] = {.lex_state = 0}, + [10451] = {.lex_state = 731}, + [10452] = {.lex_state = 0}, + [10453] = {.lex_state = 2568}, + [10454] = {.lex_state = 785}, + [10455] = {.lex_state = 185}, + [10456] = {.lex_state = 0}, + [10457] = {.lex_state = 0}, + [10458] = {.lex_state = 2568}, + [10459] = {.lex_state = 785}, + [10460] = {.lex_state = 0}, + [10461] = {.lex_state = 0}, + [10462] = {.lex_state = 785}, + [10463] = {.lex_state = 0}, + [10464] = {.lex_state = 0}, + [10465] = {.lex_state = 2568}, + [10466] = {.lex_state = 0}, + [10467] = {.lex_state = 0}, + [10468] = {.lex_state = 0}, [10469] = {.lex_state = 0}, - [10470] = {.lex_state = 2602}, - [10471] = {.lex_state = 0}, - [10472] = {.lex_state = 0}, - [10473] = {.lex_state = 730}, - [10474] = {.lex_state = 760}, - [10475] = {.lex_state = 2601}, - [10476] = {.lex_state = 1281}, + [10470] = {.lex_state = 0}, + [10471] = {.lex_state = 185}, + [10472] = {.lex_state = 731}, + [10473] = {.lex_state = 0}, + [10474] = {.lex_state = 1251}, + [10475] = {.lex_state = 785}, + [10476] = {.lex_state = 0}, [10477] = {.lex_state = 0}, [10478] = {.lex_state = 0}, [10479] = {.lex_state = 0}, [10480] = {.lex_state = 0}, - [10481] = {.lex_state = 2601}, - [10482] = {.lex_state = 94}, - [10483] = {.lex_state = 170}, - [10484] = {.lex_state = 94}, - [10485] = {.lex_state = 2601}, - [10486] = {.lex_state = 94}, - [10487] = {.lex_state = 2601}, - [10488] = {.lex_state = 2601}, - [10489] = {.lex_state = 4734}, - [10490] = {.lex_state = 0}, - [10491] = {.lex_state = 0}, - [10492] = {.lex_state = 2601}, + [10481] = {.lex_state = 0}, + [10482] = {.lex_state = 185}, + [10483] = {.lex_state = 185}, + [10484] = {.lex_state = 0}, + [10485] = {.lex_state = 0}, + [10486] = {.lex_state = 2568}, + [10487] = {.lex_state = 185}, + [10488] = {.lex_state = 185}, + [10489] = {.lex_state = 0}, + [10490] = {.lex_state = 2568}, + [10491] = {.lex_state = 185}, + [10492] = {.lex_state = 0}, [10493] = {.lex_state = 0}, [10494] = {.lex_state = 0}, - [10495] = {.lex_state = 4939}, + [10495] = {.lex_state = 0}, [10496] = {.lex_state = 0}, - [10497] = {.lex_state = 0}, - [10498] = {.lex_state = 2601}, - [10499] = {.lex_state = 731}, - [10500] = {.lex_state = 4937}, + [10497] = {.lex_state = 2568}, + [10498] = {.lex_state = 185}, + [10499] = {.lex_state = 431}, + [10500] = {.lex_state = 785}, [10501] = {.lex_state = 0}, - [10502] = {.lex_state = 4937}, - [10503] = {.lex_state = 4937}, - [10504] = {.lex_state = 4937}, + [10502] = {.lex_state = 0}, + [10503] = {.lex_state = 2568}, + [10504] = {.lex_state = 1251}, [10505] = {.lex_state = 0}, - [10506] = {.lex_state = 2601}, - [10507] = {.lex_state = 4937}, - [10508] = {.lex_state = 4937}, - [10509] = {.lex_state = 669}, - [10510] = {.lex_state = 730}, - [10511] = {.lex_state = 2601}, - [10512] = {.lex_state = 731}, - [10513] = {.lex_state = 170}, - [10514] = {.lex_state = 2601}, + [10506] = {.lex_state = 731}, + [10507] = {.lex_state = 0}, + [10508] = {.lex_state = 339}, + [10509] = {.lex_state = 0}, + [10510] = {.lex_state = 2568}, + [10511] = {.lex_state = 2568}, + [10512] = {.lex_state = 0}, + [10513] = {.lex_state = 0}, + [10514] = {.lex_state = 0}, [10515] = {.lex_state = 0}, - [10516] = {.lex_state = 2601}, - [10517] = {.lex_state = 4937}, - [10518] = {.lex_state = 730}, - [10519] = {.lex_state = 2601}, - [10520] = {.lex_state = 4937}, - [10521] = {.lex_state = 170}, - [10522] = {.lex_state = 730}, - [10523] = {.lex_state = 2601}, - [10524] = {.lex_state = 0}, - [10525] = {.lex_state = 2601}, - [10526] = {.lex_state = 2601}, - [10527] = {.lex_state = 2601}, - [10528] = {.lex_state = 2601}, - [10529] = {.lex_state = 170}, - [10530] = {.lex_state = 4937}, - [10531] = {.lex_state = 4937}, - [10532] = {.lex_state = 4937}, - [10533] = {.lex_state = 2601}, - [10534] = {.lex_state = 4937}, + [10516] = {.lex_state = 785}, + [10517] = {.lex_state = 0}, + [10518] = {.lex_state = 0}, + [10519] = {.lex_state = 0}, + [10520] = {.lex_state = 0}, + [10521] = {.lex_state = 185}, + [10522] = {.lex_state = 185}, + [10523] = {.lex_state = 785}, + [10524] = {.lex_state = 1251}, + [10525] = {.lex_state = 4691}, + [10526] = {.lex_state = 770}, + [10527] = {.lex_state = 2568}, + [10528] = {.lex_state = 360}, + [10529] = {.lex_state = 0}, + [10530] = {.lex_state = 0}, + [10531] = {.lex_state = 0}, + [10532] = {.lex_state = 2568}, + [10533] = {.lex_state = 0}, + [10534] = {.lex_state = 0}, [10535] = {.lex_state = 0}, - [10536] = {.lex_state = 4937}, - [10537] = {.lex_state = 4937}, - [10538] = {.lex_state = 356}, - [10539] = {.lex_state = 170}, + [10536] = {.lex_state = 731}, + [10537] = {.lex_state = 2568}, + [10538] = {.lex_state = 2568}, + [10539] = {.lex_state = 2568}, [10540] = {.lex_state = 0}, - [10541] = {.lex_state = 185}, - [10542] = {.lex_state = 0}, + [10541] = {.lex_state = 785}, + [10542] = {.lex_state = 2568}, [10543] = {.lex_state = 0}, - [10544] = {.lex_state = 730}, - [10545] = {.lex_state = 2601}, - [10546] = {.lex_state = 765}, - [10547] = {.lex_state = 0}, - [10548] = {.lex_state = 4735}, + [10544] = {.lex_state = 0}, + [10545] = {.lex_state = 0}, + [10546] = {.lex_state = 0}, + [10547] = {.lex_state = 785}, + [10548] = {.lex_state = 0}, [10549] = {.lex_state = 0}, [10550] = {.lex_state = 0}, - [10551] = {.lex_state = 2601}, + [10551] = {.lex_state = 0}, [10552] = {.lex_state = 0}, - [10553] = {.lex_state = 2601}, + [10553] = {.lex_state = 185}, [10554] = {.lex_state = 0}, - [10555] = {.lex_state = 4939}, - [10556] = {.lex_state = 2601}, - [10557] = {.lex_state = 2601}, + [10555] = {.lex_state = 0}, + [10556] = {.lex_state = 0}, + [10557] = {.lex_state = 0}, [10558] = {.lex_state = 0}, - [10559] = {.lex_state = 730}, - [10560] = {.lex_state = 2601}, - [10561] = {.lex_state = 0}, - [10562] = {.lex_state = 770}, - [10563] = {.lex_state = 3214}, - [10564] = {.lex_state = 2601}, - [10565] = {.lex_state = 2601}, - [10566] = {.lex_state = 2601}, - [10567] = {.lex_state = 760}, - [10568] = {.lex_state = 2601}, + [10559] = {.lex_state = 0}, + [10560] = {.lex_state = 0}, + [10561] = {.lex_state = 185}, + [10562] = {.lex_state = 0}, + [10563] = {.lex_state = 2568}, + [10564] = {.lex_state = 0}, + [10565] = {.lex_state = 0}, + [10566] = {.lex_state = 2568}, + [10567] = {.lex_state = 0}, + [10568] = {.lex_state = 785}, [10569] = {.lex_state = 0}, - [10570] = {.lex_state = 4937}, - [10571] = {.lex_state = 4937}, - [10572] = {.lex_state = 730}, - [10573] = {.lex_state = 2601}, - [10574] = {.lex_state = 2601}, - [10575] = {.lex_state = 0}, - [10576] = {.lex_state = 94}, + [10570] = {.lex_state = 185}, + [10571] = {.lex_state = 0}, + [10572] = {.lex_state = 0}, + [10573] = {.lex_state = 0}, + [10574] = {.lex_state = 0}, + [10575] = {.lex_state = 785}, + [10576] = {.lex_state = 0}, [10577] = {.lex_state = 0}, - [10578] = {.lex_state = 4937}, - [10579] = {.lex_state = 4937}, - [10580] = {.lex_state = 2601}, - [10581] = {.lex_state = 4937}, - [10582] = {.lex_state = 767}, - [10583] = {.lex_state = 0}, - [10584] = {.lex_state = 2601}, - [10585] = {.lex_state = 0}, - [10586] = {.lex_state = 730}, - [10587] = {.lex_state = 657}, - [10588] = {.lex_state = 2601}, - [10589] = {.lex_state = 0}, - [10590] = {.lex_state = 2601}, - [10591] = {.lex_state = 730}, - [10592] = {.lex_state = 94}, - [10593] = {.lex_state = 2601}, + [10578] = {.lex_state = 0}, + [10579] = {.lex_state = 0}, + [10580] = {.lex_state = 4691}, + [10581] = {.lex_state = 185}, + [10582] = {.lex_state = 0}, + [10583] = {.lex_state = 431}, + [10584] = {.lex_state = 185}, + [10585] = {.lex_state = 339}, + [10586] = {.lex_state = 2568}, + [10587] = {.lex_state = 0}, + [10588] = {.lex_state = 2568}, + [10589] = {.lex_state = 2568}, + [10590] = {.lex_state = 0}, + [10591] = {.lex_state = 2568}, + [10592] = {.lex_state = 0}, + [10593] = {.lex_state = 0}, [10594] = {.lex_state = 0}, - [10595] = {.lex_state = 4939}, - [10596] = {.lex_state = 730}, - [10597] = {.lex_state = 2604}, - [10598] = {.lex_state = 2601}, + [10595] = {.lex_state = 0}, + [10596] = {.lex_state = 2568}, + [10597] = {.lex_state = 2568}, + [10598] = {.lex_state = 4911}, [10599] = {.lex_state = 0}, [10600] = {.lex_state = 0}, - [10601] = {.lex_state = 730}, - [10602] = {.lex_state = 2601}, - [10603] = {.lex_state = 2601}, + [10601] = {.lex_state = 0}, + [10602] = {.lex_state = 0}, + [10603] = {.lex_state = 185}, [10604] = {.lex_state = 0}, [10605] = {.lex_state = 0}, - [10606] = {.lex_state = 2601}, - [10607] = {.lex_state = 730}, - [10608] = {.lex_state = 2601}, - [10609] = {.lex_state = 0}, - [10610] = {.lex_state = 730}, - [10611] = {.lex_state = 4734}, + [10606] = {.lex_state = 0}, + [10607] = {.lex_state = 0}, + [10608] = {.lex_state = 2568}, + [10609] = {.lex_state = 2568}, + [10610] = {.lex_state = 2568}, + [10611] = {.lex_state = 2568}, [10612] = {.lex_state = 0}, - [10613] = {.lex_state = 2601}, - [10614] = {.lex_state = 730}, - [10615] = {.lex_state = 775}, - [10616] = {.lex_state = 185}, - [10617] = {.lex_state = 4937}, - [10618] = {.lex_state = 0}, - [10619] = {.lex_state = 730}, - [10620] = {.lex_state = 0}, - [10621] = {.lex_state = 0}, - [10622] = {.lex_state = 2601}, - [10623] = {.lex_state = 0}, - [10624] = {.lex_state = 2601}, - [10625] = {.lex_state = 730}, - [10626] = {.lex_state = 731}, - [10627] = {.lex_state = 2601}, - [10628] = {.lex_state = 0}, - [10629] = {.lex_state = 730}, - [10630] = {.lex_state = 0}, - [10631] = {.lex_state = 0}, - [10632] = {.lex_state = 94}, + [10613] = {.lex_state = 0}, + [10614] = {.lex_state = 0}, + [10615] = {.lex_state = 0}, + [10616] = {.lex_state = 0}, + [10617] = {.lex_state = 0}, + [10618] = {.lex_state = 339}, + [10619] = {.lex_state = 0}, + [10620] = {.lex_state = 1251}, + [10621] = {.lex_state = 185}, + [10622] = {.lex_state = 185}, + [10623] = {.lex_state = 1251}, + [10624] = {.lex_state = 185}, + [10625] = {.lex_state = 0}, + [10626] = {.lex_state = 2568}, + [10627] = {.lex_state = 0}, + [10628] = {.lex_state = 185}, + [10629] = {.lex_state = 0}, + [10630] = {.lex_state = 2568}, + [10631] = {.lex_state = 2568}, + [10632] = {.lex_state = 360}, [10633] = {.lex_state = 0}, - [10634] = {.lex_state = 4937}, - [10635] = {.lex_state = 4937}, - [10636] = {.lex_state = 730}, - [10637] = {.lex_state = 2601}, - [10638] = {.lex_state = 4734}, - [10639] = {.lex_state = 730}, - [10640] = {.lex_state = 4937}, - [10641] = {.lex_state = 4937}, - [10642] = {.lex_state = 4937}, + [10634] = {.lex_state = 0}, + [10635] = {.lex_state = 0}, + [10636] = {.lex_state = 0}, + [10637] = {.lex_state = 0}, + [10638] = {.lex_state = 185}, + [10639] = {.lex_state = 1251}, + [10640] = {.lex_state = 0}, + [10641] = {.lex_state = 785}, + [10642] = {.lex_state = 1251}, [10643] = {.lex_state = 0}, - [10644] = {.lex_state = 730}, - [10645] = {.lex_state = 2601}, - [10646] = {.lex_state = 185}, - [10647] = {.lex_state = 4937}, - [10648] = {.lex_state = 4937}, - [10649] = {.lex_state = 730}, - [10650] = {.lex_state = 4735}, - [10651] = {.lex_state = 731}, + [10644] = {.lex_state = 2568}, + [10645] = {.lex_state = 2568}, + [10646] = {.lex_state = 0}, + [10647] = {.lex_state = 0}, + [10648] = {.lex_state = 0}, + [10649] = {.lex_state = 0}, + [10650] = {.lex_state = 185}, + [10651] = {.lex_state = 0}, [10652] = {.lex_state = 0}, - [10653] = {.lex_state = 2604}, - [10654] = {.lex_state = 730}, - [10655] = {.lex_state = 2601}, - [10656] = {.lex_state = 4937}, - [10657] = {.lex_state = 339}, - [10658] = {.lex_state = 4939}, - [10659] = {.lex_state = 94}, - [10660] = {.lex_state = 730}, - [10661] = {.lex_state = 4937}, - [10662] = {.lex_state = 4937}, - [10663] = {.lex_state = 0}, - [10664] = {.lex_state = 4937}, - [10665] = {.lex_state = 730}, - [10666] = {.lex_state = 4937}, - [10667] = {.lex_state = 2601}, - [10668] = {.lex_state = 0}, - [10669] = {.lex_state = 730}, - [10670] = {.lex_state = 2601}, - [10671] = {.lex_state = 657}, - [10672] = {.lex_state = 185}, - [10673] = {.lex_state = 730}, + [10653] = {.lex_state = 2568}, + [10654] = {.lex_state = 2568}, + [10655] = {.lex_state = 2568}, + [10656] = {.lex_state = 185}, + [10657] = {.lex_state = 2568}, + [10658] = {.lex_state = 4894}, + [10659] = {.lex_state = 0}, + [10660] = {.lex_state = 0}, + [10661] = {.lex_state = 0}, + [10662] = {.lex_state = 0}, + [10663] = {.lex_state = 185}, + [10664] = {.lex_state = 0}, + [10665] = {.lex_state = 0}, + [10666] = {.lex_state = 185}, + [10667] = {.lex_state = 0}, + [10668] = {.lex_state = 2568}, + [10669] = {.lex_state = 2568}, + [10670] = {.lex_state = 0}, + [10671] = {.lex_state = 2568}, + [10672] = {.lex_state = 0}, + [10673] = {.lex_state = 4894}, [10674] = {.lex_state = 0}, - [10675] = {.lex_state = 4937}, - [10676] = {.lex_state = 730}, - [10677] = {.lex_state = 4937}, - [10678] = {.lex_state = 730}, - [10679] = {.lex_state = 2601}, - [10680] = {.lex_state = 4937}, - [10681] = {.lex_state = 731}, - [10682] = {.lex_state = 730}, - [10683] = {.lex_state = 2601}, - [10684] = {.lex_state = 4937}, - [10685] = {.lex_state = 0}, - [10686] = {.lex_state = 4937}, - [10687] = {.lex_state = 2601}, - [10688] = {.lex_state = 730}, - [10689] = {.lex_state = 0}, - [10690] = {.lex_state = 730}, - [10691] = {.lex_state = 4937}, - [10692] = {.lex_state = 730}, - [10693] = {.lex_state = 4937}, - [10694] = {.lex_state = 0}, - [10695] = {.lex_state = 730}, - [10696] = {.lex_state = 4937}, - [10697] = {.lex_state = 4937}, - [10698] = {.lex_state = 4937}, - [10699] = {.lex_state = 730}, - [10700] = {.lex_state = 730}, - [10701] = {.lex_state = 4937}, - [10702] = {.lex_state = 730}, - [10703] = {.lex_state = 4937}, - [10704] = {.lex_state = 4937}, - [10705] = {.lex_state = 730}, - [10706] = {.lex_state = 4937}, - [10707] = {.lex_state = 4937}, - [10708] = {.lex_state = 4937}, - [10709] = {.lex_state = 730}, - [10710] = {.lex_state = 4735}, - [10711] = {.lex_state = 4937}, - [10712] = {.lex_state = 730}, - [10713] = {.lex_state = 2606}, - [10714] = {.lex_state = 730}, - [10715] = {.lex_state = 4937}, - [10716] = {.lex_state = 0}, - [10717] = {.lex_state = 730}, - [10718] = {.lex_state = 0}, - [10719] = {.lex_state = 4939}, - [10720] = {.lex_state = 730}, - [10721] = {.lex_state = 730}, - [10722] = {.lex_state = 0}, - [10723] = {.lex_state = 730}, - [10724] = {.lex_state = 730}, - [10725] = {.lex_state = 4937}, - [10726] = {.lex_state = 730}, + [10675] = {.lex_state = 0}, + [10676] = {.lex_state = 185}, + [10677] = {.lex_state = 0}, + [10678] = {.lex_state = 785}, + [10679] = {.lex_state = 94}, + [10680] = {.lex_state = 0}, + [10681] = {.lex_state = 2568}, + [10682] = {.lex_state = 0}, + [10683] = {.lex_state = 0}, + [10684] = {.lex_state = 4691}, + [10685] = {.lex_state = 2568}, + [10686] = {.lex_state = 0}, + [10687] = {.lex_state = 0}, + [10688] = {.lex_state = 0}, + [10689] = {.lex_state = 185}, + [10690] = {.lex_state = 0}, + [10691] = {.lex_state = 0}, + [10692] = {.lex_state = 185}, + [10693] = {.lex_state = 0}, + [10694] = {.lex_state = 185}, + [10695] = {.lex_state = 2568}, + [10696] = {.lex_state = 2568}, + [10697] = {.lex_state = 0}, + [10698] = {.lex_state = 185}, + [10699] = {.lex_state = 0}, + [10700] = {.lex_state = 185}, + [10701] = {.lex_state = 2568}, + [10702] = {.lex_state = 0}, + [10703] = {.lex_state = 1251}, + [10704] = {.lex_state = 0}, + [10705] = {.lex_state = 185}, + [10706] = {.lex_state = 0}, + [10707] = {.lex_state = 0}, + [10708] = {.lex_state = 0}, + [10709] = {.lex_state = 185}, + [10710] = {.lex_state = 185}, + [10711] = {.lex_state = 2568}, + [10712] = {.lex_state = 785}, + [10713] = {.lex_state = 0}, + [10714] = {.lex_state = 0}, + [10715] = {.lex_state = 0}, + [10716] = {.lex_state = 2568}, + [10717] = {.lex_state = 0}, + [10718] = {.lex_state = 731}, + [10719] = {.lex_state = 0}, + [10720] = {.lex_state = 0}, + [10721] = {.lex_state = 0}, + [10722] = {.lex_state = 185}, + [10723] = {.lex_state = 2568}, + [10724] = {.lex_state = 0}, + [10725] = {.lex_state = 0}, + [10726] = {.lex_state = 0}, [10727] = {.lex_state = 0}, [10728] = {.lex_state = 0}, - [10729] = {.lex_state = 0}, - [10730] = {.lex_state = 4937}, - [10731] = {.lex_state = 2601}, - [10732] = {.lex_state = 4937}, + [10729] = {.lex_state = 185}, + [10730] = {.lex_state = 4892}, + [10731] = {.lex_state = 0}, + [10732] = {.lex_state = 0}, [10733] = {.lex_state = 0}, [10734] = {.lex_state = 185}, - [10735] = {.lex_state = 2601}, - [10736] = {.lex_state = 0}, - [10737] = {.lex_state = 0}, - [10738] = {.lex_state = 0}, - [10739] = {.lex_state = 2601}, + [10735] = {.lex_state = 0}, + [10736] = {.lex_state = 2568}, + [10737] = {.lex_state = 94}, + [10738] = {.lex_state = 785}, + [10739] = {.lex_state = 1251}, [10740] = {.lex_state = 0}, - [10741] = {.lex_state = 2601}, - [10742] = {.lex_state = 2604}, - [10743] = {.lex_state = 4937}, - [10744] = {.lex_state = 4937}, - [10745] = {.lex_state = 2601}, + [10741] = {.lex_state = 0}, + [10742] = {.lex_state = 0}, + [10743] = {.lex_state = 185}, + [10744] = {.lex_state = 0}, + [10745] = {.lex_state = 2568}, [10746] = {.lex_state = 0}, [10747] = {.lex_state = 185}, [10748] = {.lex_state = 0}, - [10749] = {.lex_state = 185}, - [10750] = {.lex_state = 2606}, - [10751] = {.lex_state = 0}, - [10752] = {.lex_state = 356}, - [10753] = {.lex_state = 2606}, - [10754] = {.lex_state = 0}, - [10755] = {.lex_state = 185}, - [10756] = {.lex_state = 2606}, + [10749] = {.lex_state = 0}, + [10750] = {.lex_state = 0}, + [10751] = {.lex_state = 185}, + [10752] = {.lex_state = 431}, + [10753] = {.lex_state = 185}, + [10754] = {.lex_state = 185}, + [10755] = {.lex_state = 785}, + [10756] = {.lex_state = 0}, [10757] = {.lex_state = 0}, [10758] = {.lex_state = 0}, - [10759] = {.lex_state = 0}, - [10760] = {.lex_state = 185}, - [10761] = {.lex_state = 0}, - [10762] = {.lex_state = 0}, - [10763] = {.lex_state = 2606}, - [10764] = {.lex_state = 170}, - [10765] = {.lex_state = 185}, - [10766] = {.lex_state = 1281}, + [10759] = {.lex_state = 185}, + [10760] = {.lex_state = 0}, + [10761] = {.lex_state = 731}, + [10762] = {.lex_state = 2568}, + [10763] = {.lex_state = 0}, + [10764] = {.lex_state = 785}, + [10765] = {.lex_state = 0}, + [10766] = {.lex_state = 0}, [10767] = {.lex_state = 0}, - [10768] = {.lex_state = 0}, + [10768] = {.lex_state = 185}, [10769] = {.lex_state = 0}, [10770] = {.lex_state = 0}, - [10771] = {.lex_state = 0}, - [10772] = {.lex_state = 2606}, + [10771] = {.lex_state = 2568}, + [10772] = {.lex_state = 731}, [10773] = {.lex_state = 0}, - [10774] = {.lex_state = 185}, - [10775] = {.lex_state = 185}, - [10776] = {.lex_state = 2606}, + [10774] = {.lex_state = 0}, + [10775] = {.lex_state = 0}, + [10776] = {.lex_state = 0}, [10777] = {.lex_state = 0}, - [10778] = {.lex_state = 2606}, + [10778] = {.lex_state = 0}, [10779] = {.lex_state = 0}, - [10780] = {.lex_state = 731}, - [10781] = {.lex_state = 4736}, + [10780] = {.lex_state = 185}, + [10781] = {.lex_state = 0}, [10782] = {.lex_state = 0}, [10783] = {.lex_state = 0}, - [10784] = {.lex_state = 669}, + [10784] = {.lex_state = 789}, [10785] = {.lex_state = 0}, - [10786] = {.lex_state = 0}, - [10787] = {.lex_state = 0}, + [10786] = {.lex_state = 2568}, + [10787] = {.lex_state = 1251}, [10788] = {.lex_state = 0}, - [10789] = {.lex_state = 788}, - [10790] = {.lex_state = 0}, - [10791] = {.lex_state = 0}, + [10789] = {.lex_state = 0}, + [10790] = {.lex_state = 185}, + [10791] = {.lex_state = 785}, [10792] = {.lex_state = 0}, [10793] = {.lex_state = 0}, [10794] = {.lex_state = 0}, - [10795] = {.lex_state = 2606}, - [10796] = {.lex_state = 185}, - [10797] = {.lex_state = 788}, - [10798] = {.lex_state = 0}, + [10795] = {.lex_state = 0}, + [10796] = {.lex_state = 0}, + [10797] = {.lex_state = 0}, + [10798] = {.lex_state = 2568}, [10799] = {.lex_state = 0}, - [10800] = {.lex_state = 0}, - [10801] = {.lex_state = 0}, - [10802] = {.lex_state = 2606}, - [10803] = {.lex_state = 0}, - [10804] = {.lex_state = 185}, - [10805] = {.lex_state = 2606}, - [10806] = {.lex_state = 2606}, + [10800] = {.lex_state = 185}, + [10801] = {.lex_state = 4691}, + [10802] = {.lex_state = 785}, + [10803] = {.lex_state = 185}, + [10804] = {.lex_state = 0}, + [10805] = {.lex_state = 185}, + [10806] = {.lex_state = 0}, [10807] = {.lex_state = 0}, - [10808] = {.lex_state = 2606}, - [10809] = {.lex_state = 2606}, - [10810] = {.lex_state = 4736}, - [10811] = {.lex_state = 2606}, - [10812] = {.lex_state = 0}, - [10813] = {.lex_state = 2606}, - [10814] = {.lex_state = 788}, + [10808] = {.lex_state = 185}, + [10809] = {.lex_state = 0}, + [10810] = {.lex_state = 0}, + [10811] = {.lex_state = 0}, + [10812] = {.lex_state = 4691}, + [10813] = {.lex_state = 185}, + [10814] = {.lex_state = 185}, [10815] = {.lex_state = 0}, - [10816] = {.lex_state = 0}, - [10817] = {.lex_state = 0}, + [10816] = {.lex_state = 185}, + [10817] = {.lex_state = 2568}, [10818] = {.lex_state = 0}, - [10819] = {.lex_state = 0}, + [10819] = {.lex_state = 785}, [10820] = {.lex_state = 0}, - [10821] = {.lex_state = 2606}, - [10822] = {.lex_state = 2606}, - [10823] = {.lex_state = 0}, + [10821] = {.lex_state = 0}, + [10822] = {.lex_state = 0}, + [10823] = {.lex_state = 185}, [10824] = {.lex_state = 0}, - [10825] = {.lex_state = 185}, + [10825] = {.lex_state = 731}, [10826] = {.lex_state = 0}, - [10827] = {.lex_state = 788}, - [10828] = {.lex_state = 2606}, - [10829] = {.lex_state = 2606}, - [10830] = {.lex_state = 0}, - [10831] = {.lex_state = 0}, + [10827] = {.lex_state = 2568}, + [10828] = {.lex_state = 0}, + [10829] = {.lex_state = 0}, + [10830] = {.lex_state = 185}, + [10831] = {.lex_state = 2568}, [10832] = {.lex_state = 0}, - [10833] = {.lex_state = 1281}, + [10833] = {.lex_state = 785}, [10834] = {.lex_state = 0}, [10835] = {.lex_state = 0}, [10836] = {.lex_state = 0}, - [10837] = {.lex_state = 2606}, - [10838] = {.lex_state = 339}, - [10839] = {.lex_state = 2606}, - [10840] = {.lex_state = 0}, + [10837] = {.lex_state = 0}, + [10838] = {.lex_state = 0}, + [10839] = {.lex_state = 185}, + [10840] = {.lex_state = 1251}, [10841] = {.lex_state = 0}, [10842] = {.lex_state = 0}, - [10843] = {.lex_state = 788}, - [10844] = {.lex_state = 0}, - [10845] = {.lex_state = 0}, - [10846] = {.lex_state = 0}, + [10843] = {.lex_state = 0}, + [10844] = {.lex_state = 731}, + [10845] = {.lex_state = 41}, + [10846] = {.lex_state = 185}, [10847] = {.lex_state = 0}, - [10848] = {.lex_state = 0}, - [10849] = {.lex_state = 0}, - [10850] = {.lex_state = 2606}, - [10851] = {.lex_state = 0}, - [10852] = {.lex_state = 185}, - [10853] = {.lex_state = 788}, + [10848] = {.lex_state = 185}, + [10849] = {.lex_state = 1251}, + [10850] = {.lex_state = 185}, + [10851] = {.lex_state = 185}, + [10852] = {.lex_state = 0}, + [10853] = {.lex_state = 2568}, [10854] = {.lex_state = 0}, [10855] = {.lex_state = 0}, - [10856] = {.lex_state = 0}, + [10856] = {.lex_state = 2568}, [10857] = {.lex_state = 0}, - [10858] = {.lex_state = 360}, - [10859] = {.lex_state = 185}, + [10858] = {.lex_state = 185}, + [10859] = {.lex_state = 0}, [10860] = {.lex_state = 185}, - [10861] = {.lex_state = 788}, - [10862] = {.lex_state = 2606}, + [10861] = {.lex_state = 731}, + [10862] = {.lex_state = 185}, [10863] = {.lex_state = 0}, - [10864] = {.lex_state = 0}, + [10864] = {.lex_state = 185}, [10865] = {.lex_state = 0}, - [10866] = {.lex_state = 2606}, - [10867] = {.lex_state = 2606}, - [10868] = {.lex_state = 0}, + [10866] = {.lex_state = 2568}, + [10867] = {.lex_state = 0}, + [10868] = {.lex_state = 185}, [10869] = {.lex_state = 0}, - [10870] = {.lex_state = 0}, - [10871] = {.lex_state = 788}, - [10872] = {.lex_state = 2606}, - [10873] = {.lex_state = 1281}, + [10870] = {.lex_state = 2568}, + [10871] = {.lex_state = 0}, + [10872] = {.lex_state = 185}, + [10873] = {.lex_state = 785}, [10874] = {.lex_state = 0}, [10875] = {.lex_state = 0}, [10876] = {.lex_state = 0}, - [10877] = {.lex_state = 185}, - [10878] = {.lex_state = 2606}, + [10877] = {.lex_state = 4691}, + [10878] = {.lex_state = 0}, [10879] = {.lex_state = 0}, [10880] = {.lex_state = 0}, [10881] = {.lex_state = 0}, [10882] = {.lex_state = 0}, [10883] = {.lex_state = 0}, - [10884] = {.lex_state = 2606}, - [10885] = {.lex_state = 185}, - [10886] = {.lex_state = 185}, - [10887] = {.lex_state = 2606}, + [10884] = {.lex_state = 0}, + [10885] = {.lex_state = 0}, + [10886] = {.lex_state = 0}, + [10887] = {.lex_state = 0}, [10888] = {.lex_state = 0}, - [10889] = {.lex_state = 170}, + [10889] = {.lex_state = 0}, [10890] = {.lex_state = 0}, [10891] = {.lex_state = 0}, [10892] = {.lex_state = 0}, [10893] = {.lex_state = 0}, - [10894] = {.lex_state = 788}, + [10894] = {.lex_state = 0}, [10895] = {.lex_state = 0}, [10896] = {.lex_state = 0}, - [10897] = {.lex_state = 770}, + [10897] = {.lex_state = 0}, [10898] = {.lex_state = 0}, - [10899] = {.lex_state = 185}, - [10900] = {.lex_state = 0}, + [10899] = {.lex_state = 0}, + [10900] = {.lex_state = 185}, [10901] = {.lex_state = 185}, - [10902] = {.lex_state = 0}, - [10903] = {.lex_state = 1281}, + [10902] = {.lex_state = 785}, + [10903] = {.lex_state = 0}, [10904] = {.lex_state = 0}, [10905] = {.lex_state = 0}, - [10906] = {.lex_state = 773}, - [10907] = {.lex_state = 185}, - [10908] = {.lex_state = 185}, - [10909] = {.lex_state = 185}, - [10910] = {.lex_state = 2606}, - [10911] = {.lex_state = 0}, - [10912] = {.lex_state = 185}, - [10913] = {.lex_state = 0}, - [10914] = {.lex_state = 788}, - [10915] = {.lex_state = 788}, - [10916] = {.lex_state = 0}, - [10917] = {.lex_state = 2606}, - [10918] = {.lex_state = 0}, - [10919] = {.lex_state = 0}, - [10920] = {.lex_state = 0}, - [10921] = {.lex_state = 0}, - [10922] = {.lex_state = 0}, - [10923] = {.lex_state = 0}, - [10924] = {.lex_state = 788}, - [10925] = {.lex_state = 185}, - [10926] = {.lex_state = 0}, - [10927] = {.lex_state = 0}, - [10928] = {.lex_state = 0}, - [10929] = {.lex_state = 0}, - [10930] = {.lex_state = 0}, - [10931] = {.lex_state = 4939}, - [10932] = {.lex_state = 731}, - [10933] = {.lex_state = 2606}, - [10934] = {.lex_state = 2606}, - [10935] = {.lex_state = 185}, - [10936] = {.lex_state = 0}, - [10937] = {.lex_state = 0}, - [10938] = {.lex_state = 0}, - [10939] = {.lex_state = 0}, - [10940] = {.lex_state = 788}, - [10941] = {.lex_state = 0}, - [10942] = {.lex_state = 1281}, - [10943] = {.lex_state = 4956}, - [10944] = {.lex_state = 2606}, - [10945] = {.lex_state = 0}, - [10946] = {.lex_state = 731}, - [10947] = {.lex_state = 0}, - [10948] = {.lex_state = 0}, - [10949] = {.lex_state = 0}, - [10950] = {.lex_state = 185}, - [10951] = {.lex_state = 185}, - [10952] = {.lex_state = 0}, - [10953] = {.lex_state = 2606}, - [10954] = {.lex_state = 0}, - [10955] = {.lex_state = 0}, - [10956] = {.lex_state = 788}, - [10957] = {.lex_state = 0}, - [10958] = {.lex_state = 0}, - [10959] = {.lex_state = 2606}, - [10960] = {.lex_state = 185}, - [10961] = {.lex_state = 0}, - [10962] = {.lex_state = 0}, - [10963] = {.lex_state = 0}, - [10964] = {.lex_state = 0}, - [10965] = {.lex_state = 0}, - [10966] = {.lex_state = 0}, - [10967] = {.lex_state = 788}, - [10968] = {.lex_state = 185}, - [10969] = {.lex_state = 788}, - [10970] = {.lex_state = 0}, - [10971] = {.lex_state = 2606}, - [10972] = {.lex_state = 0}, - [10973] = {.lex_state = 0}, - [10974] = {.lex_state = 0}, - [10975] = {.lex_state = 185}, - [10976] = {.lex_state = 2606}, - [10977] = {.lex_state = 0}, - [10978] = {.lex_state = 0}, - [10979] = {.lex_state = 4736}, - [10980] = {.lex_state = 2606}, - [10981] = {.lex_state = 0}, - [10982] = {.lex_state = 2606}, - [10983] = {.lex_state = 185}, - [10984] = {.lex_state = 185}, - [10985] = {.lex_state = 2606}, - [10986] = {.lex_state = 185}, - [10987] = {.lex_state = 0}, - [10988] = {.lex_state = 185}, - [10989] = {.lex_state = 0}, - [10990] = {.lex_state = 0}, - [10991] = {.lex_state = 0}, - [10992] = {.lex_state = 0}, - [10993] = {.lex_state = 2606}, - [10994] = {.lex_state = 788}, - [10995] = {.lex_state = 0}, - [10996] = {.lex_state = 0}, - [10997] = {.lex_state = 0}, - [10998] = {.lex_state = 0}, - [10999] = {.lex_state = 788}, - [11000] = {.lex_state = 185}, - [11001] = {.lex_state = 0}, - [11002] = {.lex_state = 0}, - [11003] = {.lex_state = 0}, - [11004] = {.lex_state = 2606}, - [11005] = {.lex_state = 185}, - [11006] = {.lex_state = 185}, - [11007] = {.lex_state = 0}, - [11008] = {.lex_state = 2606}, - [11009] = {.lex_state = 2606}, - [11010] = {.lex_state = 788}, - [11011] = {.lex_state = 0}, - [11012] = {.lex_state = 0}, - [11013] = {.lex_state = 731}, - [11014] = {.lex_state = 0}, - [11015] = {.lex_state = 0}, - [11016] = {.lex_state = 0}, - [11017] = {.lex_state = 185}, - [11018] = {.lex_state = 0}, - [11019] = {.lex_state = 0}, - [11020] = {.lex_state = 0}, - [11021] = {.lex_state = 185}, - [11022] = {.lex_state = 2606}, - [11023] = {.lex_state = 0}, - [11024] = {.lex_state = 2606}, - [11025] = {.lex_state = 2606}, - [11026] = {.lex_state = 0}, - [11027] = {.lex_state = 0}, - [11028] = {.lex_state = 0}, - [11029] = {.lex_state = 0}, - [11030] = {.lex_state = 0}, - [11031] = {.lex_state = 0}, - [11032] = {.lex_state = 2606}, - [11033] = {.lex_state = 0}, - [11034] = {.lex_state = 1281}, - [11035] = {.lex_state = 2606}, - [11036] = {.lex_state = 731}, - [11037] = {.lex_state = 0}, - [11038] = {.lex_state = 2606}, - [11039] = {.lex_state = 0}, - [11040] = {.lex_state = 0}, - [11041] = {.lex_state = 0}, - [11042] = {.lex_state = 185}, - [11043] = {.lex_state = 0}, - [11044] = {.lex_state = 185}, - [11045] = {.lex_state = 1281}, - [11046] = {.lex_state = 788}, - [11047] = {.lex_state = 4937}, - [11048] = {.lex_state = 0}, - [11049] = {.lex_state = 0}, - [11050] = {.lex_state = 2606}, - [11051] = {.lex_state = 0}, - [11052] = {.lex_state = 2606}, - [11053] = {.lex_state = 0}, - [11054] = {.lex_state = 0}, - [11055] = {.lex_state = 4736}, - [11056] = {.lex_state = 0}, - [11057] = {.lex_state = 0}, - [11058] = {.lex_state = 0}, - [11059] = {.lex_state = 788}, - [11060] = {.lex_state = 0}, - [11061] = {.lex_state = 0}, - [11062] = {.lex_state = 0}, - [11063] = {.lex_state = 0}, - [11064] = {.lex_state = 185}, - [11065] = {.lex_state = 2606}, - [11066] = {.lex_state = 4939}, - [11067] = {.lex_state = 185}, - [11068] = {.lex_state = 431}, - [11069] = {.lex_state = 185}, - [11070] = {.lex_state = 0}, - [11071] = {.lex_state = 185}, - [11072] = {.lex_state = 0}, - [11073] = {.lex_state = 788}, - [11074] = {.lex_state = 185}, - [11075] = {.lex_state = 0}, - [11076] = {.lex_state = 0}, - [11077] = {.lex_state = 0}, - [11078] = {.lex_state = 2606}, - [11079] = {.lex_state = 788}, - [11080] = {.lex_state = 0}, - [11081] = {.lex_state = 0}, - [11082] = {.lex_state = 0}, - [11083] = {.lex_state = 731}, - [11084] = {.lex_state = 731}, - [11085] = {.lex_state = 2606}, - [11086] = {.lex_state = 0}, - [11087] = {.lex_state = 0}, - [11088] = {.lex_state = 0}, - [11089] = {.lex_state = 0}, - [11090] = {.lex_state = 185}, - [11091] = {.lex_state = 185}, - [11092] = {.lex_state = 339}, - [11093] = {.lex_state = 185}, - [11094] = {.lex_state = 0}, - [11095] = {.lex_state = 0}, - [11096] = {.lex_state = 0}, - [11097] = {.lex_state = 185}, - [11098] = {.lex_state = 2606}, - [11099] = {.lex_state = 185}, - [11100] = {.lex_state = 0}, - [11101] = {.lex_state = 0}, - [11102] = {.lex_state = 0}, - [11103] = {.lex_state = 0}, - [11104] = {.lex_state = 775}, - [11105] = {.lex_state = 2606}, - [11106] = {.lex_state = 0}, - [11107] = {.lex_state = 2606}, - [11108] = {.lex_state = 0}, - [11109] = {.lex_state = 360}, - [11110] = {.lex_state = 2606}, - [11111] = {.lex_state = 0}, - [11112] = {.lex_state = 0}, - [11113] = {.lex_state = 185}, - [11114] = {.lex_state = 788}, - [11115] = {.lex_state = 2606}, - [11116] = {.lex_state = 788}, - [11117] = {.lex_state = 2606}, - [11118] = {.lex_state = 2606}, - [11119] = {.lex_state = 2606}, - [11120] = {.lex_state = 0}, - [11121] = {.lex_state = 0}, - [11122] = {.lex_state = 0}, - [11123] = {.lex_state = 185}, - [11124] = {.lex_state = 0}, - [11125] = {.lex_state = 0}, - [11126] = {.lex_state = 4939}, - [11127] = {.lex_state = 0}, - [11128] = {.lex_state = 0}, - [11129] = {.lex_state = 0}, - [11130] = {.lex_state = 2606}, - [11131] = {.lex_state = 0}, - [11132] = {.lex_state = 2606}, - [11133] = {.lex_state = 2606}, - [11134] = {.lex_state = 94}, - [11135] = {.lex_state = 0}, - [11136] = {.lex_state = 2606}, - [11137] = {.lex_state = 185}, - [11138] = {.lex_state = 0}, - [11139] = {.lex_state = 0}, - [11140] = {.lex_state = 185}, - [11141] = {.lex_state = 185}, - [11142] = {.lex_state = 185}, - [11143] = {.lex_state = 0}, - [11144] = {.lex_state = 0}, - [11145] = {.lex_state = 0}, - [11146] = {.lex_state = 0}, - [11147] = {.lex_state = 2606}, - [11148] = {.lex_state = 2606}, - [11149] = {.lex_state = 2606}, - [11150] = {.lex_state = 0}, - [11151] = {.lex_state = 0}, - [11152] = {.lex_state = 185}, - [11153] = {.lex_state = 0}, - [11154] = {.lex_state = 0}, - [11155] = {.lex_state = 185}, - [11156] = {.lex_state = 0}, - [11157] = {.lex_state = 0}, - [11158] = {.lex_state = 0}, - [11159] = {.lex_state = 0}, - [11160] = {.lex_state = 0}, - [11161] = {.lex_state = 2606}, - [11162] = {.lex_state = 2606}, - [11163] = {.lex_state = 788}, - [11164] = {.lex_state = 0}, - [11165] = {.lex_state = 0}, - [11166] = {.lex_state = 0}, - [11167] = {.lex_state = 0}, - [11168] = {.lex_state = 731}, - [11169] = {.lex_state = 0}, - [11170] = {.lex_state = 0}, - [11171] = {.lex_state = 0}, - [11172] = {.lex_state = 0}, - [11173] = {.lex_state = 185}, - [11174] = {.lex_state = 0}, - [11175] = {.lex_state = 0}, - [11176] = {.lex_state = 185}, - [11177] = {.lex_state = 0}, - [11178] = {.lex_state = 770}, - [11179] = {.lex_state = 185}, - [11180] = {.lex_state = 788}, - [11181] = {.lex_state = 0}, - [11182] = {.lex_state = 185}, - [11183] = {.lex_state = 0}, - [11184] = {.lex_state = 185}, - [11185] = {.lex_state = 185}, - [11186] = {.lex_state = 731}, - [11187] = {.lex_state = 0}, - [11188] = {.lex_state = 788}, - [11189] = {.lex_state = 1281}, - [11190] = {.lex_state = 788}, - [11191] = {.lex_state = 0}, - [11192] = {.lex_state = 2606}, - [11193] = {.lex_state = 0}, - [11194] = {.lex_state = 185}, - [11195] = {.lex_state = 0}, - [11196] = {.lex_state = 0}, - [11197] = {.lex_state = 0}, - [11198] = {.lex_state = 0}, - [11199] = {.lex_state = 0}, - [11200] = {.lex_state = 0}, - [11201] = {.lex_state = 788}, - [11202] = {.lex_state = 0}, - [11203] = {.lex_state = 0}, - [11204] = {.lex_state = 0}, - [11205] = {.lex_state = 185}, - [11206] = {.lex_state = 0}, - [11207] = {.lex_state = 0}, - [11208] = {.lex_state = 0}, - [11209] = {.lex_state = 0}, - [11210] = {.lex_state = 0}, - [11211] = {.lex_state = 2606}, - [11212] = {.lex_state = 185}, - [11213] = {.lex_state = 1281}, - [11214] = {.lex_state = 0}, - [11215] = {.lex_state = 0}, - [11216] = {.lex_state = 0}, - [11217] = {.lex_state = 185}, - [11218] = {.lex_state = 0}, - [11219] = {.lex_state = 0}, - [11220] = {.lex_state = 788}, - [11221] = {.lex_state = 0}, - [11222] = {.lex_state = 0}, - [11223] = {.lex_state = 185}, - [11224] = {.lex_state = 2606}, - [11225] = {.lex_state = 0}, - [11226] = {.lex_state = 185}, - [11227] = {.lex_state = 0}, - [11228] = {.lex_state = 0}, - [11229] = {.lex_state = 0}, - [11230] = {.lex_state = 185}, - [11231] = {.lex_state = 0}, - [11232] = {.lex_state = 1281}, - [11233] = {.lex_state = 1281}, - [11234] = {.lex_state = 0}, - [11235] = {.lex_state = 0}, - [11236] = {.lex_state = 4736}, - [11237] = {.lex_state = 185}, - [11238] = {.lex_state = 1281}, - [11239] = {.lex_state = 2606}, - [11240] = {.lex_state = 1281}, - [11241] = {.lex_state = 731}, - [11242] = {.lex_state = 0}, - [11243] = {.lex_state = 0}, - [11244] = {.lex_state = 0}, - [11245] = {.lex_state = 185}, - [11246] = {.lex_state = 0}, - [11247] = {.lex_state = 2606}, - [11248] = {.lex_state = 0}, - [11249] = {.lex_state = 0}, - [11250] = {.lex_state = 0}, - [11251] = {.lex_state = 0}, - [11252] = {.lex_state = 0}, - [11253] = {.lex_state = 1281}, - [11254] = {.lex_state = 185}, - [11255] = {.lex_state = 0}, - [11256] = {.lex_state = 0}, - [11257] = {.lex_state = 185}, - [11258] = {.lex_state = 0}, - [11259] = {.lex_state = 2606}, - [11260] = {.lex_state = 185}, - [11261] = {.lex_state = 3214}, - [11262] = {.lex_state = 0}, - [11263] = {.lex_state = 0}, - [11264] = {.lex_state = 0}, - [11265] = {.lex_state = 2606}, - [11266] = {.lex_state = 0}, - [11267] = {.lex_state = 185}, - [11268] = {.lex_state = 788}, - [11269] = {.lex_state = 0}, - [11270] = {.lex_state = 0}, - [11271] = {.lex_state = 0}, - [11272] = {.lex_state = 1281}, - [11273] = {.lex_state = 2606}, - [11274] = {.lex_state = 731}, - [11275] = {.lex_state = 0}, - [11276] = {.lex_state = 0}, - [11277] = {.lex_state = 0}, - [11278] = {.lex_state = 788}, - [11279] = {.lex_state = 0}, - [11280] = {.lex_state = 0}, - [11281] = {.lex_state = 185}, - [11282] = {.lex_state = 4937}, - [11283] = {.lex_state = 0}, - [11284] = {.lex_state = 0}, - [11285] = {.lex_state = 0}, - [11286] = {.lex_state = 185}, - [11287] = {.lex_state = 1281}, - [11288] = {.lex_state = 339}, - [11289] = {.lex_state = 0}, - [11290] = {.lex_state = 0}, - [11291] = {.lex_state = 0}, - [11292] = {.lex_state = 185}, - [11293] = {.lex_state = 0}, - [11294] = {.lex_state = 185}, - [11295] = {.lex_state = 2606}, - [11296] = {.lex_state = 0}, - [11297] = {.lex_state = 0}, - [11298] = {.lex_state = 0}, - [11299] = {.lex_state = 0}, - [11300] = {.lex_state = 788}, - [11301] = {.lex_state = 0}, - [11302] = {.lex_state = 0}, - [11303] = {.lex_state = 0}, - [11304] = {.lex_state = 94}, - [11305] = {.lex_state = 0}, - [11306] = {.lex_state = 0}, - [11307] = {.lex_state = 0}, - [11308] = {.lex_state = 0}, - [11309] = {.lex_state = 0}, - [11310] = {.lex_state = 185}, - [11311] = {.lex_state = 2606}, - [11312] = {.lex_state = 0}, - [11313] = {.lex_state = 0}, - [11314] = {.lex_state = 2606}, - [11315] = {.lex_state = 2606}, - [11316] = {.lex_state = 2606}, - [11317] = {.lex_state = 0}, - [11318] = {.lex_state = 0}, - [11319] = {.lex_state = 0}, - [11320] = {.lex_state = 185}, - [11321] = {.lex_state = 0}, - [11322] = {.lex_state = 4736}, - [11323] = {.lex_state = 0}, - [11324] = {.lex_state = 0}, - [11325] = {.lex_state = 788}, - [11326] = {.lex_state = 0}, - [11327] = {.lex_state = 0}, - [11328] = {.lex_state = 0}, - [11329] = {.lex_state = 185}, - [11330] = {.lex_state = 788}, - [11331] = {.lex_state = 731}, - [11332] = {.lex_state = 0}, - [11333] = {.lex_state = 185}, - [11334] = {.lex_state = 0}, - [11335] = {.lex_state = 0}, - [11336] = {.lex_state = 0}, - [11337] = {.lex_state = 185}, - [11338] = {.lex_state = 0}, - [11339] = {.lex_state = 0}, - [11340] = {.lex_state = 185}, - [11341] = {.lex_state = 1281}, - [11342] = {.lex_state = 0}, - [11343] = {.lex_state = 0}, - [11344] = {.lex_state = 0}, - [11345] = {.lex_state = 1281}, - [11346] = {.lex_state = 185}, - [11347] = {.lex_state = 0}, - [11348] = {.lex_state = 0}, - [11349] = {.lex_state = 0}, - [11350] = {.lex_state = 0}, - [11351] = {.lex_state = 731}, - [11352] = {.lex_state = 0}, - [11353] = {.lex_state = 41}, - [11354] = {.lex_state = 788}, - [11355] = {.lex_state = 0}, - [11356] = {.lex_state = 0}, - [11357] = {.lex_state = 185}, - [11358] = {.lex_state = 0}, - [11359] = {.lex_state = 2606}, - [11360] = {.lex_state = 185}, - [11361] = {.lex_state = 0}, - [11362] = {.lex_state = 0}, - [11363] = {.lex_state = 0}, - [11364] = {.lex_state = 185}, - [11365] = {.lex_state = 0}, - [11366] = {.lex_state = 0}, - [11367] = {.lex_state = 185}, - [11368] = {.lex_state = 0}, - [11369] = {.lex_state = 0}, - [11370] = {.lex_state = 2606}, - [11371] = {.lex_state = 788}, - [11372] = {.lex_state = 0}, - [11373] = {.lex_state = 788}, - [11374] = {.lex_state = 0}, - [11375] = {.lex_state = 0}, - [11376] = {.lex_state = 731}, - [11377] = {.lex_state = 0}, - [11378] = {.lex_state = 0}, - [11379] = {.lex_state = 431}, - [11380] = {.lex_state = 185}, - [11381] = {.lex_state = 185}, - [11382] = {.lex_state = 4736}, - [11383] = {.lex_state = 0}, - [11384] = {.lex_state = 0}, - [11385] = {.lex_state = 431}, - [11386] = {.lex_state = 0}, - [11387] = {.lex_state = 185}, - [11388] = {.lex_state = 2606}, - [11389] = {.lex_state = 185}, - [11390] = {.lex_state = 0}, - [11391] = {.lex_state = 731}, - [11392] = {.lex_state = 0}, - [11393] = {.lex_state = 0}, - [11394] = {.lex_state = 0}, - [11395] = {.lex_state = 0}, - [11396] = {.lex_state = 0}, - [11397] = {.lex_state = 0}, - [11398] = {.lex_state = 0}, - [11399] = {.lex_state = 0}, - [11400] = {.lex_state = 0}, - [11401] = {.lex_state = 0}, - [11402] = {.lex_state = 0}, - [11403] = {.lex_state = 0}, - [11404] = {.lex_state = 0}, - [11405] = {.lex_state = 0}, - [11406] = {.lex_state = 0}, - [11407] = {.lex_state = 0}, - [11408] = {.lex_state = 0}, - [11409] = {.lex_state = 0}, - [11410] = {.lex_state = 0}, - [11411] = {.lex_state = 2606}, - [11412] = {.lex_state = 0}, - [11413] = {.lex_state = 0}, - [11414] = {.lex_state = 0}, - [11415] = {.lex_state = 0}, - [11416] = {.lex_state = 0}, - [11417] = {.lex_state = 0}, - [11418] = {.lex_state = 0}, - [11419] = {.lex_state = 185}, - [11420] = {.lex_state = 0}, - [11421] = {.lex_state = 0}, - [11422] = {.lex_state = 185}, - [11423] = {.lex_state = 2606}, - [11424] = {.lex_state = 4937}, - [11425] = {.lex_state = 170}, - [11426] = {(TSStateId)(-1)}, + [10906] = {.lex_state = 0}, + [10907] = {.lex_state = 731}, + [10908] = {.lex_state = 0}, + [10909] = {.lex_state = 0}, + [10910] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -87844,6 +85084,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [ts_builtin_sym_end] = ACTIONS(1), [sym_identifier] = ACTIONS(1), [anon_sym_EQ] = ACTIONS(1), + [anon_sym_PLUS_EQ] = ACTIONS(1), + [anon_sym_DASH_EQ] = ACTIONS(1), + [anon_sym_STAR_EQ] = ACTIONS(1), + [anon_sym_SLASH_EQ] = ACTIONS(1), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1), [anon_sym_SEMI] = ACTIONS(1), [anon_sym_COLON] = ACTIONS(1), [anon_sym_LBRACK] = ACTIONS(1), @@ -87893,11 +85138,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(1), [anon_sym_DOLLAR2] = ACTIONS(1), [anon_sym_STAR] = ACTIONS(1), - [anon_sym_PLUS_EQ] = ACTIONS(1), - [anon_sym_DASH_EQ] = ACTIONS(1), - [anon_sym_STAR_EQ] = ACTIONS(1), - [anon_sym_SLASH_EQ] = ACTIONS(1), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1), [anon_sym_QMARK2] = ACTIONS(1), [anon_sym_STAR_STAR] = ACTIONS(1), [anon_sym_PLUS_PLUS] = ACTIONS(1), @@ -87943,86 +85183,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [1] = { - [sym_nu_script] = STATE(10882), - [sym_shebang] = STATE(137), - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(9310), - [sym__declaration_last] = STATE(10409), - [sym_decl_alias_last] = STATE(10410), - [sym_stmt_let_last] = STATE(10440), - [sym_stmt_mut_last] = STATE(10440), - [sym_stmt_const_last] = STATE(10440), - [sym__statement_last] = STATE(10409), - [sym_pipeline_last] = STATE(10440), - [sym__block_body] = STATE(11349), - [sym_decl_def] = STATE(2929), - [sym_decl_export] = STATE(2929), - [sym_decl_extern] = STATE(2929), - [sym_decl_module] = STATE(2929), - [sym_decl_use] = STATE(2929), - [sym__ctrl_statement] = STATE(2931), - [sym__ctrl_expression] = STATE(9270), - [sym_ctrl_for] = STATE(2851), - [sym_ctrl_loop] = STATE(2851), - [sym_ctrl_error] = STATE(2851), - [sym_ctrl_while] = STATE(2851), - [sym_ctrl_do] = STATE(9515), - [sym_ctrl_if] = STATE(9515), - [sym_ctrl_match] = STATE(9515), - [sym_ctrl_try] = STATE(9515), - [sym_ctrl_return] = STATE(9515), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9536), - [sym_stmt_source] = STATE(2931), - [sym_stmt_register] = STATE(2931), - [sym__stmt_hide] = STATE(2931), - [sym_hide_mod] = STATE(2909), - [sym_hide_env] = STATE(2909), - [sym__stmt_overlay] = STATE(2931), - [sym_overlay_list] = STATE(2815), - [sym_overlay_hide] = STATE(2815), - [sym_overlay_new] = STATE(2815), - [sym_overlay_use] = STATE(2815), - [sym_assignment] = STATE(2931), - [sym_where_command] = STATE(8865), - [sym__expression] = STATE(8865), - [sym_expr_unary] = STATE(6379), - [sym__expr_unary_minus] = STATE(6347), - [sym_expr_binary] = STATE(6379), - [sym__expr_binary_expression] = STATE(6784), - [sym_expr_parenthesized] = STATE(5573), - [sym_val_range] = STATE(8689), - [sym__value] = STATE(6379), - [sym_val_nothing] = STATE(6374), - [sym_val_bool] = STATE(6374), - [sym_val_variable] = STATE(4502), - [sym__var] = STATE(3992), - [sym_val_number] = STATE(6374), - [sym__val_number_decimal] = STATE(4698), - [sym__val_number] = STATE(5769), - [sym_val_duration] = STATE(6374), - [sym_val_filesize] = STATE(6374), - [sym_val_binary] = STATE(6374), - [sym_val_string] = STATE(6374), - [sym__str_double_quotes] = STATE(6386), - [sym_val_interpolated] = STATE(6374), - [sym__inter_single_quotes] = STATE(6363), - [sym__inter_double_quotes] = STATE(6365), - [sym_val_list] = STATE(6374), - [sym_val_record] = STATE(6374), - [sym_val_table] = STATE(6374), - [sym_val_closure] = STATE(6374), - [sym_command] = STATE(8865), + [sym_nu_script] = STATE(10672), + [sym_shebang] = STATE(56), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8493), + [sym__declaration_last] = STATE(9783), + [sym_decl_alias_last] = STATE(9731), + [sym_stmt_let_last] = STATE(9910), + [sym_stmt_mut_last] = STATE(9910), + [sym_stmt_const_last] = STATE(9910), + [sym_assignment_last] = STATE(9910), + [sym__mutable_assignment_pattern_last] = STATE(9932), + [sym__statement_last] = STATE(9783), + [sym_pipeline_last] = STATE(9910), + [sym__block_body] = STATE(10828), + [sym_decl_def] = STATE(2425), + [sym_decl_export] = STATE(2425), + [sym_decl_extern] = STATE(2425), + [sym_decl_module] = STATE(2425), + [sym_decl_use] = STATE(2425), + [sym__ctrl_statement] = STATE(2428), + [sym__ctrl_expression] = STATE(8658), + [sym_ctrl_for] = STATE(2439), + [sym_ctrl_loop] = STATE(2439), + [sym_ctrl_error] = STATE(2439), + [sym_ctrl_while] = STATE(2439), + [sym_ctrl_do] = STATE(9613), + [sym_ctrl_if] = STATE(9613), + [sym_ctrl_match] = STATE(9613), + [sym_ctrl_try] = STATE(9613), + [sym_ctrl_return] = STATE(9613), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(9153), + [sym_stmt_source] = STATE(2428), + [sym_stmt_register] = STATE(2428), + [sym__stmt_hide] = STATE(2428), + [sym_hide_mod] = STATE(2446), + [sym_hide_env] = STATE(2446), + [sym__stmt_overlay] = STATE(2428), + [sym_overlay_list] = STATE(2447), + [sym_overlay_hide] = STATE(2447), + [sym_overlay_new] = STATE(2447), + [sym_overlay_use] = STATE(2447), + [sym_where_command] = STATE(8524), + [sym__expression] = STATE(8524), + [sym_expr_unary] = STATE(5890), + [sym__expr_unary_minus] = STATE(5878), + [sym_expr_binary] = STATE(5890), + [sym__expr_binary_expression] = STATE(6380), + [sym_expr_parenthesized] = STATE(5154), + [sym_val_range] = STATE(8295), + [sym__value] = STATE(5890), + [sym_val_nothing] = STATE(5931), + [sym_val_bool] = STATE(5931), + [sym_val_variable] = STATE(3990), + [sym__var] = STATE(3561), + [sym_val_number] = STATE(5931), + [sym__val_number_decimal] = STATE(4371), + [sym__val_number] = STATE(5285), + [sym_val_duration] = STATE(5931), + [sym_val_filesize] = STATE(5931), + [sym_val_binary] = STATE(5931), + [sym_val_string] = STATE(5931), + [sym__str_double_quotes] = STATE(5888), + [sym_val_interpolated] = STATE(5931), + [sym__inter_single_quotes] = STATE(5935), + [sym__inter_double_quotes] = STATE(5940), + [sym_val_list] = STATE(5931), + [sym_val_record] = STATE(5931), + [sym_val_table] = STATE(5931), + [sym_val_closure] = STATE(5931), + [sym_command] = STATE(8524), [sym_comment] = STATE(1), - [aux_sym_pipeline_repeat1] = STATE(1031), - [aux_sym__block_body_repeat2] = STATE(245), + [aux_sym_pipeline_repeat1] = STATE(766), + [aux_sym__block_body_repeat2] = STATE(230), [ts_builtin_sym_end] = ACTIONS(5), [anon_sym_POUND_BANG] = ACTIONS(7), [anon_sym_export] = ACTIONS(9), @@ -88090,91 +85333,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(113), }, [2] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11120), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym_parameter_pipes] = STATE(156), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym__match_pattern_record_variable] = STATE(3555), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5442), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(592), - [sym__var] = STATE(363), - [sym_val_number] = STATE(6223), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6223), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_record_body] = STATE(11121), - [sym_record_entry] = STATE(3545), - [sym__record_key] = STATE(11054), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10555), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym_parameter_pipes] = STATE(146), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym__match_pattern_record_variable] = STATE(3152), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5019), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(432), + [sym__var] = STATE(299), + [sym_val_number] = STATE(5765), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5765), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_record_body] = STATE(10558), + [sym_record_entry] = STATE(3123), + [sym__record_key] = STATE(10554), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(2), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [aux_sym__match_pattern_record_repeat1] = STATE(2544), - [aux_sym_record_body_repeat1] = STATE(2896), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [aux_sym__match_pattern_record_repeat1] = STATE(2052), + [aux_sym_record_body_repeat1] = STATE(2422), [anon_sym_export] = ACTIONS(115), [anon_sym_alias] = ACTIONS(117), [anon_sym_let] = ACTIONS(119), @@ -88251,89 +85497,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [3] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11043), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym_parameter_pipes] = STATE(158), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5395), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4307), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6105), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6105), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_record_body] = STATE(11153), - [sym_record_entry] = STATE(10592), - [sym__record_key] = STATE(11197), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10373), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym_parameter_pipes] = STATE(179), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(4891), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3746), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5747), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5747), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_record_body] = STATE(10304), + [sym_record_entry] = STATE(10004), + [sym__record_key] = STATE(10433), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(3), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [aux_sym_record_body_repeat1] = STATE(2896), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [aux_sym_record_body_repeat1] = STATE(2422), [anon_sym_export] = ACTIONS(229), [anon_sym_alias] = ACTIONS(231), [anon_sym_let] = ACTIONS(233), @@ -88410,89 +85659,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [4] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10898), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym_parameter_pipes] = STATE(153), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5395), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4307), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6105), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6105), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_record_body] = STATE(11112), - [sym_record_entry] = STATE(10592), - [sym__record_key] = STATE(11197), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10708), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym_parameter_pipes] = STATE(154), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(4891), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3746), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5747), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5747), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_record_body] = STATE(10358), + [sym_record_entry] = STATE(10004), + [sym__record_key] = STATE(10433), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(4), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [aux_sym_record_body_repeat1] = STATE(2896), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [aux_sym_record_body_repeat1] = STATE(2422), [anon_sym_export] = ACTIONS(229), [anon_sym_alias] = ACTIONS(231), [anon_sym_let] = ACTIONS(233), @@ -88569,89 +85821,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [5] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11120), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym_parameter_pipes] = STATE(156), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5395), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4307), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6105), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6105), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_record_body] = STATE(11121), - [sym_record_entry] = STATE(10592), - [sym__record_key] = STATE(11197), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10555), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym_parameter_pipes] = STATE(146), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(4891), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3746), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5747), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5747), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_record_body] = STATE(10558), + [sym_record_entry] = STATE(10004), + [sym__record_key] = STATE(10433), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(5), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [aux_sym_record_body_repeat1] = STATE(2896), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [aux_sym_record_body_repeat1] = STATE(2422), [anon_sym_export] = ACTIONS(229), [anon_sym_alias] = ACTIONS(231), [anon_sym_let] = ACTIONS(233), @@ -88728,89 +85983,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [6] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10807), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym_parameter_pipes] = STATE(164), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5395), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4307), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6105), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6105), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_record_body] = STATE(10771), - [sym_record_entry] = STATE(10592), - [sym__record_key] = STATE(11197), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10562), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym_parameter_pipes] = STATE(153), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(4891), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3746), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5747), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5747), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_record_body] = STATE(10874), + [sym_record_entry] = STATE(10004), + [sym__record_key] = STATE(10433), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(6), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [aux_sym_record_body_repeat1] = STATE(2896), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [aux_sym_record_body_repeat1] = STATE(2422), [anon_sym_export] = ACTIONS(229), [anon_sym_alias] = ACTIONS(231), [anon_sym_let] = ACTIONS(233), @@ -88887,89 +86145,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [7] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10757), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym_parameter_pipes] = STATE(164), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5395), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4307), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6105), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6105), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_record_body] = STATE(10771), - [sym_record_entry] = STATE(10592), - [sym__record_key] = STATE(11197), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10871), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym_parameter_pipes] = STATE(153), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(4891), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3746), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5747), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5747), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_record_body] = STATE(10874), + [sym_record_entry] = STATE(10004), + [sym__record_key] = STATE(10433), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(7), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [aux_sym_record_body_repeat1] = STATE(2896), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [aux_sym_record_body_repeat1] = STATE(2422), [anon_sym_export] = ACTIONS(229), [anon_sym_alias] = ACTIONS(231), [anon_sym_let] = ACTIONS(233), @@ -89046,89 +86307,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [8] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10962), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym_parameter_pipes] = STATE(167), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5395), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4307), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6105), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6105), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_record_body] = STATE(11361), - [sym_record_entry] = STATE(10592), - [sym__record_key] = STATE(11197), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10408), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym_parameter_pipes] = STATE(157), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(4891), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3746), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5747), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5747), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_record_body] = STATE(10436), + [sym_record_entry] = STATE(10004), + [sym__record_key] = STATE(10433), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(8), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [aux_sym_record_body_repeat1] = STATE(2896), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [aux_sym_record_body_repeat1] = STATE(2422), [anon_sym_export] = ACTIONS(229), [anon_sym_alias] = ACTIONS(231), [anon_sym_let] = ACTIONS(233), @@ -89205,89 +86469,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [9] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11348), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym_parameter_pipes] = STATE(167), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5395), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4307), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6105), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6105), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_record_body] = STATE(11361), - [sym_record_entry] = STATE(10592), - [sym__record_key] = STATE(11197), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10435), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym_parameter_pipes] = STATE(157), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(4891), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3746), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5747), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5747), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_record_body] = STATE(10436), + [sym_record_entry] = STATE(10004), + [sym__record_key] = STATE(10433), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(9), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [aux_sym_record_body_repeat1] = STATE(2896), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [aux_sym_record_body_repeat1] = STATE(2422), [anon_sym_export] = ACTIONS(229), [anon_sym_alias] = ACTIONS(231), [anon_sym_let] = ACTIONS(233), @@ -89364,89 +86631,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [10] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11028), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym_parameter_pipes] = STATE(208), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5395), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4307), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6105), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6105), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_record_body] = STATE(10921), - [sym_record_entry] = STATE(10592), - [sym__record_key] = STATE(11197), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10305), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym_parameter_pipes] = STATE(191), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(4891), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3746), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5747), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5747), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_record_body] = STATE(10370), + [sym_record_entry] = STATE(10004), + [sym__record_key] = STATE(10433), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(10), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [aux_sym_record_body_repeat1] = STATE(2896), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [aux_sym_record_body_repeat1] = STATE(2422), [anon_sym_export] = ACTIONS(229), [anon_sym_alias] = ACTIONS(231), [anon_sym_let] = ACTIONS(233), @@ -89523,89 +86793,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [11] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10947), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym_parameter_pipes] = STATE(173), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5395), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4307), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6105), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6105), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_record_body] = STATE(10948), - [sym_record_entry] = STATE(10592), - [sym__record_key] = STATE(11197), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10328), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym_parameter_pipes] = STATE(163), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(4891), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3746), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5747), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5747), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_record_body] = STATE(10329), + [sym_record_entry] = STATE(10004), + [sym__record_key] = STATE(10433), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(11), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [aux_sym_record_body_repeat1] = STATE(2896), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [aux_sym_record_body_repeat1] = STATE(2422), [anon_sym_export] = ACTIONS(229), [anon_sym_alias] = ACTIONS(231), [anon_sym_let] = ACTIONS(233), @@ -89682,89 +86955,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [12] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11014), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym_parameter_pipes] = STATE(179), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5395), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4307), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6105), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6105), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_record_body] = STATE(11087), - [sym_record_entry] = STATE(10592), - [sym__record_key] = STATE(11197), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10832), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym_parameter_pipes] = STATE(169), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(4891), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3746), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5747), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5747), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_record_body] = STATE(10512), + [sym_record_entry] = STATE(10004), + [sym__record_key] = STATE(10433), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(12), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [aux_sym_record_body_repeat1] = STATE(2896), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [aux_sym_record_body_repeat1] = STATE(2422), [anon_sym_export] = ACTIONS(229), [anon_sym_alias] = ACTIONS(231), [anon_sym_let] = ACTIONS(233), @@ -89841,89 +87117,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [13] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11086), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym_parameter_pipes] = STATE(182), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5395), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4307), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6105), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6105), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_record_body] = STATE(11172), - [sym_record_entry] = STATE(10592), - [sym__record_key] = STATE(11197), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10509), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym_parameter_pipes] = STATE(172), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(4891), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3746), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5747), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5747), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_record_body] = STATE(10720), + [sym_record_entry] = STATE(10004), + [sym__record_key] = STATE(10433), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(13), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [aux_sym_record_body_repeat1] = STATE(2896), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [aux_sym_record_body_repeat1] = STATE(2422), [anon_sym_export] = ACTIONS(229), [anon_sym_alias] = ACTIONS(231), [anon_sym_let] = ACTIONS(233), @@ -90000,89 +87279,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [14] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11171), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym_parameter_pipes] = STATE(185), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5395), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4307), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6105), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6105), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_record_body] = STATE(11276), - [sym_record_entry] = STATE(10592), - [sym__record_key] = STATE(11197), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10719), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym_parameter_pipes] = STATE(173), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(4891), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3746), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5747), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5747), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_record_body] = STATE(10383), + [sym_record_entry] = STATE(10004), + [sym__record_key] = STATE(10433), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(14), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [aux_sym_record_body_repeat1] = STATE(2896), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [aux_sym_record_body_repeat1] = STATE(2422), [anon_sym_export] = ACTIONS(229), [anon_sym_alias] = ACTIONS(231), [anon_sym_let] = ACTIONS(233), @@ -90159,89 +87441,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [15] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11275), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym_parameter_pipes] = STATE(243), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5395), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4307), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6105), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6105), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_record_body] = STATE(10913), - [sym_record_entry] = STATE(10592), - [sym__record_key] = STATE(11197), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10908), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym_parameter_pipes] = STATE(176), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(4891), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3746), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5747), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5747), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_record_body] = STATE(10859), + [sym_record_entry] = STATE(10004), + [sym__record_key] = STATE(10433), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(15), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [aux_sym_record_body_repeat1] = STATE(2896), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [aux_sym_record_body_repeat1] = STATE(2422), [anon_sym_export] = ACTIONS(229), [anon_sym_alias] = ACTIONS(231), [anon_sym_let] = ACTIONS(233), @@ -90318,89 +87603,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [16] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11377), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym_parameter_pipes] = STATE(190), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5395), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4307), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6105), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6105), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_record_body] = STATE(10779), - [sym_record_entry] = STATE(10592), - [sym__record_key] = STATE(11197), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10452), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym_parameter_pipes] = STATE(154), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(4891), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3746), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5747), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5747), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_record_body] = STATE(10358), + [sym_record_entry] = STATE(10004), + [sym__record_key] = STATE(10433), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(16), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [aux_sym_record_body_repeat1] = STATE(2896), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [aux_sym_record_body_repeat1] = STATE(2422), [anon_sym_export] = ACTIONS(229), [anon_sym_alias] = ACTIONS(231), [anon_sym_let] = ACTIONS(233), @@ -90477,89 +87765,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [17] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10863), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym_parameter_pipes] = STATE(193), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5395), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4307), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6105), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6105), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_record_body] = STATE(11420), - [sym_record_entry] = STATE(10592), - [sym__record_key] = STATE(11197), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10852), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym_parameter_pipes] = STATE(182), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(4891), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3746), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5747), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5747), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_record_body] = STATE(10810), + [sym_record_entry] = STATE(10004), + [sym__record_key] = STATE(10433), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(17), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [aux_sym_record_body_repeat1] = STATE(2896), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [aux_sym_record_body_repeat1] = STATE(2422), [anon_sym_export] = ACTIONS(229), [anon_sym_alias] = ACTIONS(231), [anon_sym_let] = ACTIONS(233), @@ -90636,89 +87927,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [18] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11037), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym_parameter_pipes] = STATE(196), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5395), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4307), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6105), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6105), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_record_body] = STATE(10952), - [sym_record_entry] = STATE(10592), - [sym__record_key] = STATE(11197), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10302), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym_parameter_pipes] = STATE(185), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(4891), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3746), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5747), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5747), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_record_body] = STATE(10481), + [sym_record_entry] = STATE(10004), + [sym__record_key] = STATE(10433), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(18), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [aux_sym_record_body_repeat1] = STATE(2896), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [aux_sym_record_body_repeat1] = STATE(2422), [anon_sym_export] = ACTIONS(229), [anon_sym_alias] = ACTIONS(231), [anon_sym_let] = ACTIONS(233), @@ -90795,89 +88089,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [19] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11386), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym_parameter_pipes] = STATE(199), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5395), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4307), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6105), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6105), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_record_body] = STATE(11306), - [sym_record_entry] = STATE(10592), - [sym__record_key] = STATE(11197), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10908), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym_parameter_pipes] = STATE(176), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(4891), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3746), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5747), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5747), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_record_body] = STATE(10785), + [sym_record_entry] = STATE(10004), + [sym__record_key] = STATE(10433), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(19), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [aux_sym_record_body_repeat1] = STATE(2896), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [aux_sym_record_body_repeat1] = STATE(2422), [anon_sym_export] = ACTIONS(229), [anon_sym_alias] = ACTIONS(231), [anon_sym_let] = ACTIONS(233), @@ -90954,89 +88251,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [20] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11343), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym_parameter_pipes] = STATE(158), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5395), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4307), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6105), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6105), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_record_body] = STATE(11153), - [sym_record_entry] = STATE(10592), - [sym__record_key] = STATE(11197), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10435), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym_parameter_pipes] = STATE(157), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(4891), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3746), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5747), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5747), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_record_body] = STATE(10546), + [sym_record_entry] = STATE(10004), + [sym__record_key] = STATE(10433), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(20), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [aux_sym_record_body_repeat1] = STATE(2896), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [aux_sym_record_body_repeat1] = STATE(2422), [anon_sym_export] = ACTIONS(229), [anon_sym_alias] = ACTIONS(231), [anon_sym_let] = ACTIONS(233), @@ -91113,89 +88413,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [21] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10863), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym_parameter_pipes] = STATE(193), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5395), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4307), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6105), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6105), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_record_body] = STATE(10981), - [sym_record_entry] = STATE(10592), - [sym__record_key] = STATE(11197), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10435), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym_parameter_pipes] = STATE(157), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(4891), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3746), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5747), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5747), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_record_body] = STATE(10748), + [sym_record_entry] = STATE(10004), + [sym__record_key] = STATE(10433), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(21), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [aux_sym_record_body_repeat1] = STATE(2896), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [aux_sym_record_body_repeat1] = STATE(2422), [anon_sym_export] = ACTIONS(229), [anon_sym_alias] = ACTIONS(231), [anon_sym_let] = ACTIONS(233), @@ -91272,89 +88575,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [22] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11129), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym_parameter_pipes] = STATE(205), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5395), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4307), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6105), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6105), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_record_body] = STATE(11206), - [sym_record_entry] = STATE(10592), - [sym__record_key] = STATE(11197), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10473), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym_parameter_pipes] = STATE(160), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(4891), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3746), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5747), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5747), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_record_body] = STATE(10265), + [sym_record_entry] = STATE(10004), + [sym__record_key] = STATE(10433), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(22), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [aux_sym_record_body_repeat1] = STATE(2896), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [aux_sym_record_body_repeat1] = STATE(2422), [anon_sym_export] = ACTIONS(229), [anon_sym_alias] = ACTIONS(231), [anon_sym_let] = ACTIONS(233), @@ -91431,89 +88737,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [23] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11348), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym_parameter_pipes] = STATE(167), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5395), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4307), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6105), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6105), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_record_body] = STATE(11383), - [sym_record_entry] = STATE(10592), - [sym__record_key] = STATE(11197), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10782), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym_parameter_pipes] = STATE(194), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(4891), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3746), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5747), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5747), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_record_body] = STATE(10468), + [sym_record_entry] = STATE(10004), + [sym__record_key] = STATE(10433), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(23), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [aux_sym_record_body_repeat1] = STATE(2896), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [aux_sym_record_body_repeat1] = STATE(2422), [anon_sym_export] = ACTIONS(229), [anon_sym_alias] = ACTIONS(231), [anon_sym_let] = ACTIONS(233), @@ -91590,89 +88899,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [24] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11348), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym_parameter_pipes] = STATE(167), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5395), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4307), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6105), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6105), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_record_body] = STATE(10801), - [sym_record_entry] = STATE(10592), - [sym__record_key] = STATE(11197), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10355), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym_parameter_pipes] = STATE(166), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(4891), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3746), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5747), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5747), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_record_body] = STATE(10574), + [sym_record_entry] = STATE(10004), + [sym__record_key] = STATE(10433), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(24), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [aux_sym_record_body_repeat1] = STATE(2896), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [aux_sym_record_body_repeat1] = STATE(2422), [anon_sym_export] = ACTIONS(229), [anon_sym_alias] = ACTIONS(231), [anon_sym_let] = ACTIONS(233), @@ -91749,89 +89061,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [25] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11279), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym_parameter_pipes] = STATE(170), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5395), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4307), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6105), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6105), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_record_body] = STATE(10857), - [sym_record_entry] = STATE(10592), - [sym__record_key] = STATE(11197), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10545), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym_parameter_pipes] = STATE(197), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(4891), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3746), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5747), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5747), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_record_body] = STATE(10690), + [sym_record_entry] = STATE(10004), + [sym__record_key] = STATE(10433), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(25), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [aux_sym_record_body_repeat1] = STATE(2896), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [aux_sym_record_body_repeat1] = STATE(2422), [anon_sym_export] = ACTIONS(229), [anon_sym_alias] = ACTIONS(231), [anon_sym_let] = ACTIONS(233), @@ -91908,89 +89223,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [26] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10977), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym_parameter_pipes] = STATE(211), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5395), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4307), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6105), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6105), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_record_body] = STATE(10998), - [sym_record_entry] = STATE(10592), - [sym__record_key] = STATE(11197), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10746), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym_parameter_pipes] = STATE(200), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(4891), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3746), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5747), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5747), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_record_body] = STATE(10796), + [sym_record_entry] = STATE(10004), + [sym__record_key] = STATE(10433), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(26), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [aux_sym_record_body_repeat1] = STATE(2896), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [aux_sym_record_body_repeat1] = STATE(2422), [anon_sym_export] = ACTIONS(229), [anon_sym_alias] = ACTIONS(231), [anon_sym_let] = ACTIONS(233), @@ -92067,89 +89385,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [27] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11203), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym_parameter_pipes] = STATE(176), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5395), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4307), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6105), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6105), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_record_body] = STATE(11089), - [sym_record_entry] = STATE(10592), - [sym__record_key] = STATE(11197), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10906), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym_parameter_pipes] = STATE(203), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(4891), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3746), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5747), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5747), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_record_body] = STATE(10273), + [sym_record_entry] = STATE(10004), + [sym__record_key] = STATE(10433), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(27), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [aux_sym_record_body_repeat1] = STATE(2896), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [aux_sym_record_body_repeat1] = STATE(2422), [anon_sym_export] = ACTIONS(229), [anon_sym_alias] = ACTIONS(231), [anon_sym_let] = ACTIONS(233), @@ -92226,89 +89547,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [28] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11369), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym_parameter_pipes] = STATE(214), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5395), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4307), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6105), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6105), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_record_body] = STATE(11321), - [sym_record_entry] = STATE(10592), - [sym__record_key] = STATE(11197), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10369), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym_parameter_pipes] = STATE(206), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(4891), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3746), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5747), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5747), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_record_body] = STATE(10323), + [sym_record_entry] = STATE(10004), + [sym__record_key] = STATE(10433), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(28), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [aux_sym_record_body_repeat1] = STATE(2896), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [aux_sym_record_body_repeat1] = STATE(2422), [anon_sym_export] = ACTIONS(229), [anon_sym_alias] = ACTIONS(231), [anon_sym_let] = ACTIONS(233), @@ -92385,89 +89709,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [29] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10800), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym_parameter_pipes] = STATE(217), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5395), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4307), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6105), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6105), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_record_body] = STATE(10991), - [sym_record_entry] = STATE(10592), - [sym__record_key] = STATE(11197), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10467), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym_parameter_pipes] = STATE(209), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(4891), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3746), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5747), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5747), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_record_body] = STATE(10352), + [sym_record_entry] = STATE(10004), + [sym__record_key] = STATE(10433), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(29), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [aux_sym_record_body_repeat1] = STATE(2896), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [aux_sym_record_body_repeat1] = STATE(2422), [anon_sym_export] = ACTIONS(229), [anon_sym_alias] = ACTIONS(231), [anon_sym_let] = ACTIONS(233), @@ -92544,89 +89871,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [30] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10856), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym_parameter_pipes] = STATE(220), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5395), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4307), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6105), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6105), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_record_body] = STATE(11160), - [sym_record_entry] = STATE(10592), - [sym__record_key] = STATE(11197), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10572), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym_parameter_pipes] = STATE(212), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(4891), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3746), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5747), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5747), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_record_body] = STATE(10380), + [sym_record_entry] = STATE(10004), + [sym__record_key] = STATE(10433), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(30), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [aux_sym_record_body_repeat1] = STATE(2896), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [aux_sym_record_body_repeat1] = STATE(2422), [anon_sym_export] = ACTIONS(229), [anon_sym_alias] = ACTIONS(231), [anon_sym_let] = ACTIONS(233), @@ -92703,89 +90033,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [31] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10920), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym_parameter_pipes] = STATE(152), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5395), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4307), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6105), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6105), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_record_body] = STATE(10890), - [sym_record_entry] = STATE(10592), - [sym__record_key] = STATE(11197), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10687), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym_parameter_pipes] = STATE(215), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(4891), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3746), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5747), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5747), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_record_body] = STATE(10415), + [sym_record_entry] = STATE(10004), + [sym__record_key] = STATE(10433), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(31), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [aux_sym_record_body_repeat1] = STATE(2896), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [aux_sym_record_body_repeat1] = STATE(2422), [anon_sym_export] = ACTIONS(229), [anon_sym_alias] = ACTIONS(231), [anon_sym_let] = ACTIONS(233), @@ -92862,89 +90195,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [32] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10997), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym_parameter_pipes] = STATE(225), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5395), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4307), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6105), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6105), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_record_body] = STATE(11060), - [sym_record_entry] = STATE(10592), - [sym__record_key] = STATE(11197), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10795), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym_parameter_pipes] = STATE(191), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(4891), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3746), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5747), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5747), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_record_body] = STATE(10370), + [sym_record_entry] = STATE(10004), + [sym__record_key] = STATE(10433), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(32), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [aux_sym_record_body_repeat1] = STATE(2896), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [aux_sym_record_body_repeat1] = STATE(2422), [anon_sym_export] = ACTIONS(229), [anon_sym_alias] = ACTIONS(231), [anon_sym_let] = ACTIONS(233), @@ -93021,89 +90357,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [33] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11077), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym_parameter_pipes] = STATE(228), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5395), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4307), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6105), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6105), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_record_body] = STATE(11219), - [sym_record_entry] = STATE(10592), - [sym__record_key] = STATE(11197), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10806), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym_parameter_pipes] = STATE(188), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(4891), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3746), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5747), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5747), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_record_body] = STATE(10446), + [sym_record_entry] = STATE(10004), + [sym__record_key] = STATE(10433), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(33), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [aux_sym_record_body_repeat1] = STATE(2896), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [aux_sym_record_body_repeat1] = STATE(2422), [anon_sym_export] = ACTIONS(229), [anon_sym_alias] = ACTIONS(231), [anon_sym_let] = ACTIONS(233), @@ -93180,89 +90519,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [34] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11307), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym_parameter_pipes] = STATE(231), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5395), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4307), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6105), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6105), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_record_body] = STATE(11335), - [sym_record_entry] = STATE(10592), - [sym__record_key] = STATE(11197), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10272), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym_parameter_pipes] = STATE(218), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(4891), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3746), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5747), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5747), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_record_body] = STATE(10480), + [sym_record_entry] = STATE(10004), + [sym__record_key] = STATE(10433), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(34), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [aux_sym_record_body_repeat1] = STATE(2896), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [aux_sym_record_body_repeat1] = STATE(2422), [anon_sym_export] = ACTIONS(229), [anon_sym_alias] = ACTIONS(231), [anon_sym_let] = ACTIONS(233), @@ -93339,89 +90681,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [35] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10974), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym_parameter_pipes] = STATE(208), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5395), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4307), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6105), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6105), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_record_body] = STATE(10921), - [sym_record_entry] = STATE(10592), - [sym__record_key] = STATE(11197), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10322), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym_parameter_pipes] = STATE(220), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(4891), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3746), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5747), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5747), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_record_body] = STATE(10520), + [sym_record_entry] = STATE(10004), + [sym__record_key] = STATE(10433), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(35), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [aux_sym_record_body_repeat1] = STATE(2896), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [aux_sym_record_body_repeat1] = STATE(2422), [anon_sym_export] = ACTIONS(229), [anon_sym_alias] = ACTIONS(231), [anon_sym_let] = ACTIONS(233), @@ -93498,89 +90843,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [36] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11129), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym_parameter_pipes] = STATE(205), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5395), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4307), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6105), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6105), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_record_body] = STATE(10793), - [sym_record_entry] = STATE(10592), - [sym__record_key] = STATE(11197), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10351), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym_parameter_pipes] = STATE(222), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(4891), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3746), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5747), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5747), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_record_body] = STATE(10552), + [sym_record_entry] = STATE(10004), + [sym__record_key] = STATE(10433), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(36), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [aux_sym_record_body_repeat1] = STATE(2896), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [aux_sym_record_body_repeat1] = STATE(2422), [anon_sym_export] = ACTIONS(229), [anon_sym_alias] = ACTIONS(231), [anon_sym_let] = ACTIONS(233), @@ -93657,89 +91005,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [37] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11157), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym_parameter_pipes] = STATE(234), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5395), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4307), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6105), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6105), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_record_body] = STATE(10849), - [sym_record_entry] = STATE(10592), - [sym__record_key] = STATE(11197), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10379), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym_parameter_pipes] = STATE(223), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(4891), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3746), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5747), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5747), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_record_body] = STATE(10579), + [sym_record_entry] = STATE(10004), + [sym__record_key] = STATE(10433), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(37), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [aux_sym_record_body_repeat1] = STATE(2896), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [aux_sym_record_body_repeat1] = STATE(2422), [anon_sym_export] = ACTIONS(229), [anon_sym_alias] = ACTIONS(231), [anon_sym_let] = ACTIONS(233), @@ -93816,89 +91167,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [38] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10888), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym_parameter_pipes] = STATE(236), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5395), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4307), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6105), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6105), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_record_body] = STATE(10900), - [sym_record_entry] = STATE(10592), - [sym__record_key] = STATE(11197), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10414), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym_parameter_pipes] = STATE(224), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(4891), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3746), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5747), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5747), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_record_body] = STATE(10602), + [sym_record_entry] = STATE(10004), + [sym__record_key] = STATE(10433), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(38), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [aux_sym_record_body_repeat1] = STATE(2896), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [aux_sym_record_body_repeat1] = STATE(2422), [anon_sym_export] = ACTIONS(229), [anon_sym_alias] = ACTIONS(231), [anon_sym_let] = ACTIONS(233), @@ -93975,89 +91329,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [39] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11058), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym_parameter_pipes] = STATE(238), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5395), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4307), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6105), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6105), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_record_body] = STATE(10964), - [sym_record_entry] = STATE(10592), - [sym__record_key] = STATE(11197), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10445), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym_parameter_pipes] = STATE(225), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(4891), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3746), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5747), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5747), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_record_body] = STATE(10619), + [sym_record_entry] = STATE(10004), + [sym__record_key] = STATE(10433), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(39), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [aux_sym_record_body_repeat1] = STATE(2896), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [aux_sym_record_body_repeat1] = STATE(2422), [anon_sym_export] = ACTIONS(229), [anon_sym_alias] = ACTIONS(231), [anon_sym_let] = ACTIONS(233), @@ -94134,89 +91491,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [40] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11218), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym_parameter_pipes] = STATE(239), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5395), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4307), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6105), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6105), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_record_body] = STATE(11003), - [sym_record_entry] = STATE(10592), - [sym__record_key] = STATE(11197), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10479), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym_parameter_pipes] = STATE(226), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(4891), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3746), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5747), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5747), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_record_body] = STATE(10637), + [sym_record_entry] = STATE(10004), + [sym__record_key] = STATE(10433), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(40), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [aux_sym_record_body_repeat1] = STATE(2896), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [aux_sym_record_body_repeat1] = STATE(2422), [anon_sym_export] = ACTIONS(229), [anon_sym_alias] = ACTIONS(231), [anon_sym_let] = ACTIONS(233), @@ -94293,89 +91653,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [41] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11332), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym_parameter_pipes] = STATE(240), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5395), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4307), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6105), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6105), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_record_body] = STATE(11041), - [sym_record_entry] = STATE(10592), - [sym__record_key] = STATE(11197), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10519), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym_parameter_pipes] = STATE(143), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(4891), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3746), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5747), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5747), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_record_body] = STATE(10649), + [sym_record_entry] = STATE(10004), + [sym__record_key] = STATE(10433), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(41), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [aux_sym_record_body_repeat1] = STATE(2896), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [aux_sym_record_body_repeat1] = STATE(2422), [anon_sym_export] = ACTIONS(229), [anon_sym_alias] = ACTIONS(231), [anon_sym_let] = ACTIONS(233), @@ -94452,89 +91815,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [42] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10792), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym_parameter_pipes] = STATE(241), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5395), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4307), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6105), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6105), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_record_body] = STATE(11063), - [sym_record_entry] = STATE(10592), - [sym__record_key] = STATE(11197), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10806), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym_parameter_pipes] = STATE(188), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(4891), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3746), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5747), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5747), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_record_body] = STATE(10357), + [sym_record_entry] = STATE(10004), + [sym__record_key] = STATE(10433), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(42), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [aux_sym_record_body_repeat1] = STATE(2896), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [aux_sym_record_body_repeat1] = STATE(2422), [anon_sym_export] = ACTIONS(229), [anon_sym_alias] = ACTIONS(231), [anon_sym_let] = ACTIONS(233), @@ -94611,135 +91977,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [43] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10848), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym_parameter_pipes] = STATE(242), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5395), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4307), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6105), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6105), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_record_body] = STATE(11096), - [sym_record_entry] = STATE(10592), - [sym__record_key] = STATE(11197), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10664), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym_parameter_pipes] = STATE(166), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(43), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [aux_sym_record_body_repeat1] = STATE(2896), - [anon_sym_export] = ACTIONS(229), - [anon_sym_alias] = ACTIONS(231), - [anon_sym_let] = ACTIONS(233), - [anon_sym_let_DASHenv] = ACTIONS(233), - [anon_sym_mut] = ACTIONS(235), - [anon_sym_const] = ACTIONS(237), - [sym_cmd_identifier] = ACTIONS(239), - [anon_sym_def] = ACTIONS(241), - [anon_sym_export_DASHenv] = ACTIONS(243), - [anon_sym_extern] = ACTIONS(245), - [anon_sym_module] = ACTIONS(247), - [anon_sym_use] = ACTIONS(249), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_PIPE] = ACTIONS(141), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(253), - [anon_sym_list] = ACTIONS(255), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_break] = ACTIONS(257), - [anon_sym_continue] = ACTIONS(259), - [anon_sym_for] = ACTIONS(261), - [anon_sym_in] = ACTIONS(255), - [anon_sym_loop] = ACTIONS(263), - [anon_sym_make] = ACTIONS(255), - [anon_sym_while] = ACTIONS(265), - [anon_sym_do] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(255), - [anon_sym_match] = ACTIONS(271), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_RBRACE] = ACTIONS(367), + [anon_sym_RBRACE] = ACTIONS(409), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(275), - [anon_sym_catch] = ACTIONS(255), - [anon_sym_return] = ACTIONS(277), - [anon_sym_source] = ACTIONS(279), - [anon_sym_source_DASHenv] = ACTIONS(279), - [anon_sym_register] = ACTIONS(281), - [anon_sym_hide] = ACTIONS(283), - [anon_sym_hide_DASHenv] = ACTIONS(285), - [anon_sym_overlay] = ACTIONS(287), - [anon_sym_new] = ACTIONS(255), - [anon_sym_as] = ACTIONS(255), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(189), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), @@ -94765,140 +92122,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [aux_sym__record_key_token2] = ACTIONS(225), [anon_sym_CARET] = ACTIONS(227), [anon_sym_POUND] = ACTIONS(3), }, [44] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10936), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym_parameter_pipes] = STATE(202), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5395), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4307), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6105), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6105), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_record_body] = STATE(11289), - [sym_record_entry] = STATE(10592), - [sym__record_key] = STATE(11197), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10514), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym_parameter_pipes] = STATE(160), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(44), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [aux_sym_record_body_repeat1] = STATE(2896), - [anon_sym_export] = ACTIONS(229), - [anon_sym_alias] = ACTIONS(231), - [anon_sym_let] = ACTIONS(233), - [anon_sym_let_DASHenv] = ACTIONS(233), - [anon_sym_mut] = ACTIONS(235), - [anon_sym_const] = ACTIONS(237), - [sym_cmd_identifier] = ACTIONS(239), - [anon_sym_def] = ACTIONS(241), - [anon_sym_export_DASHenv] = ACTIONS(243), - [anon_sym_extern] = ACTIONS(245), - [anon_sym_module] = ACTIONS(247), - [anon_sym_use] = ACTIONS(249), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_PIPE] = ACTIONS(141), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(253), - [anon_sym_list] = ACTIONS(255), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_break] = ACTIONS(257), - [anon_sym_continue] = ACTIONS(259), - [anon_sym_for] = ACTIONS(261), - [anon_sym_in] = ACTIONS(255), - [anon_sym_loop] = ACTIONS(263), - [anon_sym_make] = ACTIONS(255), - [anon_sym_while] = ACTIONS(265), - [anon_sym_do] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(255), - [anon_sym_match] = ACTIONS(271), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_RBRACE] = ACTIONS(369), + [anon_sym_RBRACE] = ACTIONS(425), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(275), - [anon_sym_catch] = ACTIONS(255), - [anon_sym_return] = ACTIONS(277), - [anon_sym_source] = ACTIONS(279), - [anon_sym_source_DASHenv] = ACTIONS(279), - [anon_sym_register] = ACTIONS(281), - [anon_sym_hide] = ACTIONS(283), - [anon_sym_hide_DASHenv] = ACTIONS(285), - [anon_sym_overlay] = ACTIONS(287), - [anon_sym_new] = ACTIONS(255), - [anon_sym_as] = ACTIONS(255), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(189), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), @@ -94924,127 +92271,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [aux_sym__record_key_token2] = ACTIONS(225), [anon_sym_CARET] = ACTIONS(227), [anon_sym_POUND] = ACTIONS(3), }, [45] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11229), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym_parameter_pipes] = STATE(170), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10514), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym_parameter_pipes] = STATE(154), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(45), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_PIPE] = ACTIONS(141), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_RBRACE] = ACTIONS(413), + [anon_sym_RBRACE] = ACTIONS(427), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -95075,122 +92424,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [46] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10922), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym_parameter_pipes] = STATE(164), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10664), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym_parameter_pipes] = STATE(153), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(46), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_PIPE] = ACTIONS(141), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_RBRACE] = ACTIONS(429), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -95221,127 +92573,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [47] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10922), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym_parameter_pipes] = STATE(176), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10340), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(47), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(141), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_RBRACE] = ACTIONS(431), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), + [anon_sym_RPAREN2] = ACTIONS(451), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -95363,131 +92716,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(227), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [48] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11229), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym_parameter_pipes] = STATE(158), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10788), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(48), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(141), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_RBRACE] = ACTIONS(433), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), + [anon_sym_RPAREN2] = ACTIONS(455), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -95509,129 +92863,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(227), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [49] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11181), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10404), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(49), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(455), + [anon_sym_RPAREN2] = ACTIONS(451), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -95653,129 +93010,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [50] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11076), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10855), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(50), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(459), + [anon_sym_RPAREN2] = ACTIONS(457), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -95797,129 +93157,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [51] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11227), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10733), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(51), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(459), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(461), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -95941,129 +93304,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [52] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(10788), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10409), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(52), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(463), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), + [anon_sym_RPAREN2] = ACTIONS(461), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -96085,129 +93451,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [53] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11156), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10612), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(53), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(429), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(465), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -96229,124 +93598,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(227), [anon_sym_POUND] = ACTIONS(3), }, [54] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(10819), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10341), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(54), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(467), + [anon_sym_RPAREN] = ACTIONS(463), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -96373,124 +93745,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [55] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(10990), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10677), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(55), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(465), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -96517,273 +93892,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [56] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11057), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8493), + [sym__declaration_last] = STATE(9783), + [sym_decl_alias_last] = STATE(9731), + [sym_stmt_let_last] = STATE(9910), + [sym_stmt_mut_last] = STATE(9910), + [sym_stmt_const_last] = STATE(9910), + [sym_assignment_last] = STATE(9910), + [sym__mutable_assignment_pattern_last] = STATE(9932), + [sym__statement_last] = STATE(9783), + [sym_pipeline_last] = STATE(9910), + [sym__block_body] = STATE(10513), + [sym_decl_def] = STATE(2425), + [sym_decl_export] = STATE(2425), + [sym_decl_extern] = STATE(2425), + [sym_decl_module] = STATE(2425), + [sym_decl_use] = STATE(2425), + [sym__ctrl_statement] = STATE(2428), + [sym__ctrl_expression] = STATE(8658), + [sym_ctrl_for] = STATE(2439), + [sym_ctrl_loop] = STATE(2439), + [sym_ctrl_error] = STATE(2439), + [sym_ctrl_while] = STATE(2439), + [sym_ctrl_do] = STATE(9613), + [sym_ctrl_if] = STATE(9613), + [sym_ctrl_match] = STATE(9613), + [sym_ctrl_try] = STATE(9613), + [sym_ctrl_return] = STATE(9613), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(9153), + [sym_stmt_source] = STATE(2428), + [sym_stmt_register] = STATE(2428), + [sym__stmt_hide] = STATE(2428), + [sym_hide_mod] = STATE(2446), + [sym_hide_env] = STATE(2446), + [sym__stmt_overlay] = STATE(2428), + [sym_overlay_list] = STATE(2447), + [sym_overlay_hide] = STATE(2447), + [sym_overlay_new] = STATE(2447), + [sym_overlay_use] = STATE(2447), + [sym_where_command] = STATE(8524), + [sym__expression] = STATE(8524), + [sym_expr_unary] = STATE(5890), + [sym__expr_unary_minus] = STATE(5878), + [sym_expr_binary] = STATE(5890), + [sym__expr_binary_expression] = STATE(6380), + [sym_expr_parenthesized] = STATE(5154), + [sym_val_range] = STATE(8295), + [sym__value] = STATE(5890), + [sym_val_nothing] = STATE(5931), + [sym_val_bool] = STATE(5931), + [sym_val_variable] = STATE(3990), + [sym__var] = STATE(3561), + [sym_val_number] = STATE(5931), + [sym__val_number_decimal] = STATE(4371), + [sym__val_number] = STATE(5285), + [sym_val_duration] = STATE(5931), + [sym_val_filesize] = STATE(5931), + [sym_val_binary] = STATE(5931), + [sym_val_string] = STATE(5931), + [sym__str_double_quotes] = STATE(5888), + [sym_val_interpolated] = STATE(5931), + [sym__inter_single_quotes] = STATE(5935), + [sym__inter_double_quotes] = STATE(5940), + [sym_val_list] = STATE(5931), + [sym_val_record] = STATE(5931), + [sym_val_table] = STATE(5931), + [sym_val_closure] = STATE(5931), + [sym_command] = STATE(8524), [sym_comment] = STATE(56), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(187), - [anon_sym_not] = ACTIONS(191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(193), - [anon_sym_DOT_DOT_LT] = ACTIONS(193), - [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(471), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [aux_sym__val_number_decimal_token1] = ACTIONS(199), - [aux_sym__val_number_decimal_token2] = ACTIONS(201), - [anon_sym_DOT2] = ACTIONS(203), - [aux_sym__val_number_decimal_token3] = ACTIONS(205), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(209), - [aux_sym__val_number_token5] = ACTIONS(207), - [aux_sym__val_number_token6] = ACTIONS(209), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [aux_sym_pipeline_repeat1] = STATE(766), + [aux_sym__block_body_repeat2] = STATE(230), + [ts_builtin_sym_end] = ACTIONS(467), + [anon_sym_export] = ACTIONS(9), + [anon_sym_alias] = ACTIONS(11), + [anon_sym_let] = ACTIONS(13), + [anon_sym_let_DASHenv] = ACTIONS(13), + [anon_sym_mut] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [sym_cmd_identifier] = ACTIONS(19), + [anon_sym_def] = ACTIONS(21), + [anon_sym_export_DASHenv] = ACTIONS(23), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_module] = ACTIONS(27), + [anon_sym_use] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_error] = ACTIONS(37), + [anon_sym_DASH] = ACTIONS(39), + [anon_sym_break] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_match] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_DOT_DOT] = ACTIONS(59), + [anon_sym_try] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_source] = ACTIONS(65), + [anon_sym_source_DASHenv] = ACTIONS(65), + [anon_sym_register] = ACTIONS(67), + [anon_sym_hide] = ACTIONS(69), + [anon_sym_hide_DASHenv] = ACTIONS(71), + [anon_sym_overlay] = ACTIONS(73), + [anon_sym_where] = ACTIONS(75), + [anon_sym_not] = ACTIONS(77), + [anon_sym_DOT_DOT_EQ] = ACTIONS(79), + [anon_sym_DOT_DOT_LT] = ACTIONS(79), + [anon_sym_null] = ACTIONS(81), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [aux_sym__val_number_decimal_token1] = ACTIONS(85), + [aux_sym__val_number_decimal_token2] = ACTIONS(87), + [anon_sym_DOT2] = ACTIONS(89), + [aux_sym__val_number_decimal_token3] = ACTIONS(91), + [aux_sym__val_number_token1] = ACTIONS(93), + [aux_sym__val_number_token2] = ACTIONS(93), + [aux_sym__val_number_token3] = ACTIONS(93), + [aux_sym__val_number_token4] = ACTIONS(95), + [aux_sym__val_number_token5] = ACTIONS(93), + [aux_sym__val_number_token6] = ACTIONS(95), + [anon_sym_0b] = ACTIONS(97), + [anon_sym_0o] = ACTIONS(99), + [anon_sym_0x] = ACTIONS(99), + [sym_val_date] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym__str_single_quotes] = ACTIONS(105), + [sym__str_back_ticks] = ACTIONS(105), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(109), + [anon_sym_CARET] = ACTIONS(111), [anon_sym_POUND] = ACTIONS(3), }, [57] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11324), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10318), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(57), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(473), + [anon_sym_RPAREN2] = ACTIONS(469), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -96805,124 +94186,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [58] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(10911), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10534), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(58), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(475), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(409), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -96949,129 +94333,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(227), [anon_sym_POUND] = ACTIONS(3), }, [59] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11327), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10593), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(59), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(471), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(477), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -97093,129 +94480,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [60] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11166), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10715), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(60), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(479), + [anon_sym_RPAREN2] = ACTIONS(473), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -97237,124 +94627,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [61] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(10831), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10311), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(61), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(481), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(427), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -97381,129 +94774,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(227), [anon_sym_POUND] = ACTIONS(3), }, [62] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(10791), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10422), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(62), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(475), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(483), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -97525,129 +94921,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [63] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11144), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10760), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(63), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_RBRACE] = ACTIONS(433), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), + [anon_sym_RPAREN2] = ACTIONS(477), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -97669,124 +95068,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(227), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [64] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11056), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10313), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(64), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(485), + [anon_sym_RPAREN] = ACTIONS(479), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -97813,129 +95215,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [65] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(10847), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10353), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(65), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(487), + [anon_sym_RPAREN2] = ACTIONS(481), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -97957,124 +95362,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [66] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(10966), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10564), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(66), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(489), + [anon_sym_RPAREN] = ACTIONS(483), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -98101,129 +95509,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [67] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11251), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10544), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(67), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(491), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), + [anon_sym_RPAREN2] = ACTIONS(485), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -98245,129 +95656,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [68] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(10896), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10781), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(68), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(487), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(493), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -98389,129 +95803,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [69] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11342), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10744), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(69), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(495), + [anon_sym_RPAREN2] = ACTIONS(489), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -98533,124 +95950,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [70] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(10761), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10594), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(70), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(497), + [anon_sym_RPAREN] = ACTIONS(491), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -98677,129 +96097,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [71] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11002), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10368), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(71), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(499), + [anon_sym_RPAREN2] = ACTIONS(493), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -98821,124 +96244,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [72] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10835), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10640), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(72), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(495), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_RBRACE] = ACTIONS(429), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -98965,129 +96391,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(227), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [73] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(10818), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10466), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(73), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(501), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), + [anon_sym_RPAREN2] = ACTIONS(497), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -99109,129 +96538,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [74] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11040), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10529), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(74), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(499), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(503), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -99253,129 +96685,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [75] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11030), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10686), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(75), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(505), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), + [anon_sym_RPAREN2] = ACTIONS(501), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -99397,124 +96832,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [76] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(10870), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10423), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(76), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(507), + [anon_sym_RPAREN] = ACTIONS(503), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -99541,129 +96979,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [77] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11062), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10271), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(77), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(455), + [anon_sym_RPAREN2] = ACTIONS(505), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -99685,129 +97126,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [78] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11248), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10277), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(78), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(507), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(509), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -99829,129 +97273,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [79] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(10939), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10350), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(79), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(511), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), + [anon_sym_RPAREN2] = ACTIONS(455), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -99973,129 +97420,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [80] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11095), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10567), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(80), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(509), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(513), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -100117,129 +97567,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [81] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11305), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10378), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(81), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_RBRACE] = ACTIONS(413), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), + [anon_sym_RPAREN2] = ACTIONS(511), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -100261,124 +97714,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(227), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [82] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11020), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10843), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(82), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(515), + [anon_sym_RPAREN] = ACTIONS(513), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -100405,129 +97861,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [83] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(10845), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10413), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(83), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(517), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), + [anon_sym_RPAREN2] = ACTIONS(515), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -100549,129 +98008,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [84] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11111), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10421), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(84), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(517), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(519), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -100693,129 +98155,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [85] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11102), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10444), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(85), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(521), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), + [anon_sym_RPAREN2] = ACTIONS(519), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -100837,124 +98302,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [86] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11128), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10615), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(86), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(523), + [anon_sym_RPAREN] = ACTIONS(521), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -100981,129 +98449,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [87] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11139), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10518), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(87), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(525), + [anon_sym_RPAREN2] = ACTIONS(523), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -101125,129 +98596,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [88] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(10972), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10778), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(88), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(525), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(527), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -101269,129 +98743,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [89] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11368), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10551), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(89), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(529), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), + [anon_sym_RPAREN2] = ACTIONS(527), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -101413,129 +98890,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [90] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11170), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10299), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(90), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(529), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(531), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -101557,129 +99037,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [91] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11023), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10577), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(91), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(533), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), + [anon_sym_RPAREN2] = ACTIONS(531), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -101701,124 +99184,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [92] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(10785), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10398), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(92), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(535), + [anon_sym_RPAREN] = ACTIONS(533), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -101845,129 +99331,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [93] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11193), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10601), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(93), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(537), + [anon_sym_RPAREN2] = ACTIONS(535), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -101989,124 +99478,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [94] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11200), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10496), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(94), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(539), + [anon_sym_RPAREN] = ACTIONS(537), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -102133,129 +99625,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [95] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11347), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10617), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(95), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(541), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), + [anon_sym_RPAREN2] = ACTIONS(539), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -102277,129 +99772,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [96] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11225), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10607), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(96), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(541), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(543), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -102421,129 +99919,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [97] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11202), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10648), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(97), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(545), + [anon_sym_RPAREN2] = ACTIONS(543), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -102565,124 +100066,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [98] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(10973), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10727), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(98), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(547), + [anon_sym_RPAREN] = ACTIONS(545), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -102709,129 +100213,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [99] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11234), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10674), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(99), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(549), + [anon_sym_RPAREN2] = ACTIONS(547), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -102853,129 +100360,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [100] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(10902), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10824), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(100), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(549), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(551), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -102997,129 +100507,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [101] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(10842), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10702), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(101), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(553), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), + [anon_sym_RPAREN2] = ACTIONS(551), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -103141,129 +100654,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [102] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11255), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10288), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(102), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(553), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(555), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -103285,129 +100801,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [103] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11302), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10741), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(103), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(557), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), + [anon_sym_RPAREN2] = ACTIONS(555), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -103429,124 +100948,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [104] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11258), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10336), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(104), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(559), + [anon_sym_RPAREN] = ACTIONS(557), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -103573,129 +101095,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [105] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11266), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10750), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(105), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(561), + [anon_sym_RPAREN2] = ACTIONS(559), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -103717,129 +101242,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [106] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11362), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10364), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(106), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(561), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(563), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -103861,129 +101389,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [107] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(10768), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10767), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(107), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(565), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), + [anon_sym_RPAREN2] = ACTIONS(563), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -104005,129 +101536,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [108] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11309), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10395), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(108), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(565), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(567), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -104149,129 +101683,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [109] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(10945), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10779), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(109), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(569), + [anon_sym_RPAREN2] = ACTIONS(567), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -104293,124 +101830,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [110] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(10826), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10429), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(110), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(571), + [anon_sym_RPAREN] = ACTIONS(569), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -104437,129 +101977,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [111] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11336), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10807), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(111), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(573), + [anon_sym_RPAREN2] = ACTIONS(571), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -104581,124 +102124,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [112] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11417), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10461), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(112), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(575), + [anon_sym_RPAREN] = ACTIONS(573), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -104725,129 +102271,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [113] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(10875), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10829), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(113), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(577), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), + [anon_sym_RPAREN2] = ACTIONS(575), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -104869,129 +102418,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [114] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11418), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10495), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(114), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(577), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(579), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -105013,129 +102565,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [115] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(10799), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10867), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(115), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(581), + [anon_sym_RPAREN2] = ACTIONS(579), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -105157,129 +102712,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [116] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(10926), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10818), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(116), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(583), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), + [anon_sym_RPAREN2] = ACTIONS(451), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -105301,129 +102859,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [117] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(10770), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10321), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(117), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(585), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), + [anon_sym_RPAREN2] = ACTIONS(457), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -105445,129 +103006,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [118] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(10978), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10327), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(118), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(587), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), + [anon_sym_RPAREN2] = ACTIONS(461), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -105589,129 +103153,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [119] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11299), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10291), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(119), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(589), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), + [anon_sym_RPAREN2] = ACTIONS(469), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -105733,129 +103300,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [120] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(10919), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10502), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(120), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(591), + [anon_sym_RPAREN2] = ACTIONS(473), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -105877,129 +103447,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [121] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10787), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10876), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(121), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_RBRACE] = ACTIONS(431), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), + [anon_sym_RPAREN2] = ACTIONS(477), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -106021,129 +103594,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(227), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [122] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11012), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10834), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(551), + [anon_sym_RPAREN2] = ACTIONS(481), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -106165,129 +103741,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [123] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11209), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10571), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(123), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(461), + [anon_sym_RPAREN2] = ACTIONS(485), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -106309,129 +103888,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [124] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11375), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10793), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(124), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(473), + [anon_sym_RPAREN2] = ACTIONS(489), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -106453,129 +104035,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [125] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11033), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10469), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(125), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(569), + [anon_sym_RPAREN2] = ACTIONS(493), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -106597,129 +104182,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [126] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11081), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10477), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(126), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(479), + [anon_sym_RPAREN2] = ACTIONS(455), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -106741,129 +104329,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [127] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(10855), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10636), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(495), + [anon_sym_RPAREN2] = ACTIONS(519), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -106885,129 +104476,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [128] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(10996), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10662), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(128), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(509), + [anon_sym_RPAREN2] = ACTIONS(523), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -107029,129 +104623,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [129] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11165), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10688), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(129), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(527), + [anon_sym_RPAREN2] = ACTIONS(531), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -107173,129 +104770,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [130] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11296), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10717), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(130), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(545), + [anon_sym_RPAREN2] = ACTIONS(539), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -107317,129 +104917,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [131] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(10949), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10758), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(131), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(563), + [anon_sym_RPAREN2] = ACTIONS(551), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -107461,129 +105064,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [132] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(10879), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10797), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(132), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(581), + [anon_sym_RPAREN2] = ACTIONS(555), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -107605,129 +105211,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [133] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(10929), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10815), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(133), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(591), + [anon_sym_RPAREN2] = ACTIONS(559), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -107749,129 +105358,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [134] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(10958), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10822), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(134), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(477), + [anon_sym_RPAREN2] = ACTIONS(563), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -107893,129 +105505,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [135] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11122), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10837), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(135), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(493), + [anon_sym_RPAREN2] = ACTIONS(567), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -108037,129 +105652,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [136] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11154), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10857), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(499), + [anon_sym_RPAREN2] = ACTIONS(571), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -108181,273 +105799,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [137] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(9310), - [sym__declaration_last] = STATE(10409), - [sym_decl_alias_last] = STATE(10410), - [sym_stmt_let_last] = STATE(10440), - [sym_stmt_mut_last] = STATE(10440), - [sym_stmt_const_last] = STATE(10440), - [sym__statement_last] = STATE(10409), - [sym_pipeline_last] = STATE(10440), - [sym__block_body] = STATE(11280), - [sym_decl_def] = STATE(2929), - [sym_decl_export] = STATE(2929), - [sym_decl_extern] = STATE(2929), - [sym_decl_module] = STATE(2929), - [sym_decl_use] = STATE(2929), - [sym__ctrl_statement] = STATE(2931), - [sym__ctrl_expression] = STATE(9270), - [sym_ctrl_for] = STATE(2851), - [sym_ctrl_loop] = STATE(2851), - [sym_ctrl_error] = STATE(2851), - [sym_ctrl_while] = STATE(2851), - [sym_ctrl_do] = STATE(9515), - [sym_ctrl_if] = STATE(9515), - [sym_ctrl_match] = STATE(9515), - [sym_ctrl_try] = STATE(9515), - [sym_ctrl_return] = STATE(9515), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9536), - [sym_stmt_source] = STATE(2931), - [sym_stmt_register] = STATE(2931), - [sym__stmt_hide] = STATE(2931), - [sym_hide_mod] = STATE(2909), - [sym_hide_env] = STATE(2909), - [sym__stmt_overlay] = STATE(2931), - [sym_overlay_list] = STATE(2815), - [sym_overlay_hide] = STATE(2815), - [sym_overlay_new] = STATE(2815), - [sym_overlay_use] = STATE(2815), - [sym_assignment] = STATE(2931), - [sym_where_command] = STATE(8865), - [sym__expression] = STATE(8865), - [sym_expr_unary] = STATE(6379), - [sym__expr_unary_minus] = STATE(6347), - [sym_expr_binary] = STATE(6379), - [sym__expr_binary_expression] = STATE(6784), - [sym_expr_parenthesized] = STATE(5573), - [sym_val_range] = STATE(8689), - [sym__value] = STATE(6379), - [sym_val_nothing] = STATE(6374), - [sym_val_bool] = STATE(6374), - [sym_val_variable] = STATE(4502), - [sym__var] = STATE(3992), - [sym_val_number] = STATE(6374), - [sym__val_number_decimal] = STATE(4698), - [sym__val_number] = STATE(5769), - [sym_val_duration] = STATE(6374), - [sym_val_filesize] = STATE(6374), - [sym_val_binary] = STATE(6374), - [sym_val_string] = STATE(6374), - [sym__str_double_quotes] = STATE(6386), - [sym_val_interpolated] = STATE(6374), - [sym__inter_single_quotes] = STATE(6363), - [sym__inter_double_quotes] = STATE(6365), - [sym_val_list] = STATE(6374), - [sym_val_record] = STATE(6374), - [sym_val_table] = STATE(6374), - [sym_val_closure] = STATE(6374), - [sym_command] = STATE(8865), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10878), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(137), - [aux_sym_pipeline_repeat1] = STATE(1031), - [aux_sym__block_body_repeat2] = STATE(245), - [ts_builtin_sym_end] = ACTIONS(593), - [anon_sym_export] = ACTIONS(9), - [anon_sym_alias] = ACTIONS(11), - [anon_sym_let] = ACTIONS(13), - [anon_sym_let_DASHenv] = ACTIONS(13), - [anon_sym_mut] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [sym_cmd_identifier] = ACTIONS(19), - [anon_sym_def] = ACTIONS(21), - [anon_sym_export_DASHenv] = ACTIONS(23), - [anon_sym_extern] = ACTIONS(25), - [anon_sym_module] = ACTIONS(27), - [anon_sym_use] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_error] = ACTIONS(37), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_do] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_match] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_DOT_DOT] = ACTIONS(59), - [anon_sym_try] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_source] = ACTIONS(65), - [anon_sym_source_DASHenv] = ACTIONS(65), - [anon_sym_register] = ACTIONS(67), - [anon_sym_hide] = ACTIONS(69), - [anon_sym_hide_DASHenv] = ACTIONS(71), - [anon_sym_overlay] = ACTIONS(73), - [anon_sym_where] = ACTIONS(75), - [anon_sym_not] = ACTIONS(77), - [anon_sym_DOT_DOT_EQ] = ACTIONS(79), - [anon_sym_DOT_DOT_LT] = ACTIONS(79), - [anon_sym_null] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym__val_number_decimal_token1] = ACTIONS(85), - [aux_sym__val_number_decimal_token2] = ACTIONS(87), - [anon_sym_DOT2] = ACTIONS(89), - [aux_sym__val_number_decimal_token3] = ACTIONS(91), - [aux_sym__val_number_token1] = ACTIONS(93), - [aux_sym__val_number_token2] = ACTIONS(93), - [aux_sym__val_number_token3] = ACTIONS(93), - [aux_sym__val_number_token4] = ACTIONS(95), - [aux_sym__val_number_token5] = ACTIONS(93), - [aux_sym__val_number_token6] = ACTIONS(95), - [anon_sym_0b] = ACTIONS(97), - [anon_sym_0o] = ACTIONS(99), - [anon_sym_0x] = ACTIONS(99), - [sym_val_date] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym__str_single_quotes] = ACTIONS(105), - [sym__str_back_ticks] = ACTIONS(105), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(111), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(251), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), + [anon_sym_where] = ACTIONS(187), + [anon_sym_not] = ACTIONS(191), + [anon_sym_DOT_DOT_EQ] = ACTIONS(193), + [anon_sym_DOT_DOT_LT] = ACTIONS(193), + [anon_sym_null] = ACTIONS(195), + [anon_sym_RPAREN2] = ACTIONS(575), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [aux_sym__val_number_decimal_token1] = ACTIONS(199), + [aux_sym__val_number_decimal_token2] = ACTIONS(201), + [anon_sym_DOT2] = ACTIONS(203), + [aux_sym__val_number_decimal_token3] = ACTIONS(205), + [aux_sym__val_number_token1] = ACTIONS(207), + [aux_sym__val_number_token2] = ACTIONS(207), + [aux_sym__val_number_token3] = ACTIONS(207), + [aux_sym__val_number_token4] = ACTIONS(209), + [aux_sym__val_number_token5] = ACTIONS(207), + [aux_sym__val_number_token6] = ACTIONS(209), + [anon_sym_0b] = ACTIONS(211), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym__str_single_quotes] = ACTIONS(219), + [sym__str_back_ticks] = ACTIONS(219), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [138] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11204), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10268), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(138), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(519), + [anon_sym_RPAREN2] = ACTIONS(579), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -108469,129 +106093,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [139] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11244), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10847), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(139), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(537), + [anon_sym_RPAREN2] = ACTIONS(461), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -108613,129 +106240,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [140] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11293), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10731), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(140), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(543), + [anon_sym_RPAREN2] = ACTIONS(455), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -108757,129 +106387,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [141] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11319), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10660), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(141), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(425), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(549), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -108901,129 +106534,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(227), [anon_sym_POUND] = ACTIONS(3), }, [142] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11328), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10876), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(142), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(555), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -109045,129 +106680,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [143] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11344), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10535), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(143), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(561), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -109189,129 +106826,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(227), [anon_sym_POUND] = ACTIONS(3), }, [144] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11372), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10818), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(144), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(567), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -109333,129 +106972,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [145] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(10748), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10704), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(145), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(573), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -109477,129 +107118,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(227), [anon_sym_POUND] = ACTIONS(3), }, [146] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(10754), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10726), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(146), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(579), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -109621,129 +107264,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(227), [anon_sym_POUND] = ACTIONS(3), }, [147] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11356), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10775), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(147), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(473), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -109765,129 +107410,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(227), [anon_sym_POUND] = ACTIONS(3), }, [148] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11216), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10595), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(148), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(477), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -109909,129 +107556,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(227), [anon_sym_POUND] = ACTIONS(3), }, [149] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11285), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10441), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(149), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(477), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -110053,129 +107702,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(227), [anon_sym_POUND] = ACTIONS(3), }, [150] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(10836), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10533), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(150), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), [anon_sym_DOT_DOT_LT] = ACTIONS(193), [anon_sym_null] = ACTIONS(195), - [anon_sym_RPAREN2] = ACTIONS(551), [anon_sym_true] = ACTIONS(197), [anon_sym_false] = ACTIONS(197), [aux_sym__val_number_decimal_token1] = ACTIONS(199), @@ -110197,124 +107848,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [151] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11145), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10502), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(151), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(595), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -110341,123 +107994,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [152] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11019), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10646), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(152), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -110488,119 +108144,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [153] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10923), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10337), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(153), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -110631,119 +108290,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [154] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11012), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10836), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(154), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -110770,123 +108432,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(227), [anon_sym_POUND] = ACTIONS(3), }, [155] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11338), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10904), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(155), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -110913,123 +108578,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(227), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [156] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10767), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10556), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(156), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -111060,119 +108728,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [157] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10777), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10590), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(157), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -111203,119 +108874,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [158] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11222), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10327), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(158), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -111342,123 +109016,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(227), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [159] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11031), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10387), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(159), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -111485,123 +109162,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(227), [anon_sym_POUND] = ACTIONS(3), }, [160] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10794), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10410), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(160), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -111632,119 +109312,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [161] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11150), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10834), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(161), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -111771,123 +109454,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(227), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [162] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11081), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10301), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(162), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -111914,123 +109600,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(227), [anon_sym_POUND] = ACTIONS(3), }, [163] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10893), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10309), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(163), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -112061,119 +109750,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [164] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10992), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10291), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(164), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -112200,123 +109892,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(227), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [165] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11271), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10548), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(165), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -112343,123 +110038,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(227), [anon_sym_POUND] = ACTIONS(3), }, [166] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10803), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10557), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(166), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -112490,119 +110188,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [167] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10815), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10469), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(167), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -112629,123 +110330,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(227), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [168] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11375), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10769), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(168), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -112772,123 +110476,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(227), [anon_sym_POUND] = ACTIONS(3), }, [169] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10961), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10776), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(169), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -112919,119 +110626,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [170] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10965), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10766), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(170), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -113058,123 +110768,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(227), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [171] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11165), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10530), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(171), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -113201,123 +110914,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(227), [anon_sym_POUND] = ACTIONS(3), }, [172] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11027), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10540), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(172), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -113348,119 +111064,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [173] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11029), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10634), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(173), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -113491,119 +111210,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [174] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11033), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10571), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(174), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -113630,123 +111352,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [175] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11100), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10485), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(175), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -113777,119 +111502,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [176] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11101), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10515), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(176), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -113920,119 +111648,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [177] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(10929), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10793), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(177), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -114059,123 +111790,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [178] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11196), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10385), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(178), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -114206,119 +111940,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [179] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11198), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10400), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(179), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -114349,119 +112086,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [180] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11390), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10321), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(180), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -114488,123 +112228,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [181] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11298), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10865), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(181), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -114635,119 +112378,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [182] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11301), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10869), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(182), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -114778,119 +112524,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [183] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(10855), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10477), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(183), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -114917,123 +112666,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [184] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11392), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10560), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(184), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -115064,119 +112816,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [185] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11416), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10565), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(185), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -115207,119 +112962,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [186] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(10996), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10636), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(186), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -115346,123 +113104,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [187] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11264), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10835), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(187), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -115493,119 +113254,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [188] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11296), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10841), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(188), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -115632,123 +113396,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(227), [anon_sym_POUND] = ACTIONS(3), }, [189] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10812), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10662), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(189), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -115775,123 +113542,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(227), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [190] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10840), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10403), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(190), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -115922,119 +113692,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [191] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(10949), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10417), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(191), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -116061,123 +113834,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(227), [anon_sym_POUND] = ACTIONS(3), }, [192] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10782), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10688), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(192), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -116204,123 +113980,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(227), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [193] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10786), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10613), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(193), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -116351,119 +114130,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [194] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(10879), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10614), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(194), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -116490,123 +114272,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(227), [anon_sym_POUND] = ACTIONS(3), }, [195] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10987), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10717), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(195), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -116633,123 +114418,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(227), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [196] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10989), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10773), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(196), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -116780,119 +114568,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [197] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11209), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10774), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(197), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -116919,123 +114710,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(227), [anon_sym_POUND] = ACTIONS(3), }, [198] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10864), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10758), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(198), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -117062,123 +114856,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(227), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [199] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10865), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10295), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(199), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -117209,119 +115006,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [200] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(10958), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10296), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(200), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -117348,123 +115148,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(227), [anon_sym_POUND] = ACTIONS(3), }, [201] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10823), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10788), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(201), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -117491,123 +115294,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(227), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [202] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10830), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10392), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(202), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -117638,119 +115444,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [203] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11122), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10396), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(203), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -117777,123 +115586,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(227), [anon_sym_POUND] = ACTIONS(3), }, [204] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11051), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10797), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(204), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -117920,123 +115732,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(227), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, [205] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11053), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10489), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(205), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -118067,405 +115882,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [206] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11154), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10492), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(206), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(187), - [anon_sym_not] = ACTIONS(191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(193), - [anon_sym_DOT_DOT_LT] = ACTIONS(193), - [anon_sym_null] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [aux_sym__val_number_decimal_token1] = ACTIONS(199), - [aux_sym__val_number_decimal_token2] = ACTIONS(201), - [anon_sym_DOT2] = ACTIONS(203), - [aux_sym__val_number_decimal_token3] = ACTIONS(205), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(209), - [aux_sym__val_number_token5] = ACTIONS(207), - [aux_sym__val_number_token6] = ACTIONS(209), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), - [anon_sym_POUND] = ACTIONS(3), - }, - [207] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11243), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), - [sym_comment] = STATE(207), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(187), - [anon_sym_not] = ACTIONS(191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(193), - [anon_sym_DOT_DOT_LT] = ACTIONS(193), - [anon_sym_null] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [aux_sym__val_number_decimal_token1] = ACTIONS(199), - [aux_sym__val_number_decimal_token2] = ACTIONS(201), - [anon_sym_DOT2] = ACTIONS(203), - [aux_sym__val_number_decimal_token3] = ACTIONS(205), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(209), - [aux_sym__val_number_token5] = ACTIONS(207), - [aux_sym__val_number_token6] = ACTIONS(209), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_POUND] = ACTIONS(3), - }, - [208] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11246), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), - [sym_comment] = STATE(208), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -118495,1550 +116027,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(227), [anon_sym_POUND] = ACTIONS(3), }, - [209] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11181), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), - [sym_comment] = STATE(209), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(187), - [anon_sym_not] = ACTIONS(191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(193), - [anon_sym_DOT_DOT_LT] = ACTIONS(193), - [anon_sym_null] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [aux_sym__val_number_decimal_token1] = ACTIONS(199), - [aux_sym__val_number_decimal_token2] = ACTIONS(201), - [anon_sym_DOT2] = ACTIONS(203), - [aux_sym__val_number_decimal_token3] = ACTIONS(205), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(209), - [aux_sym__val_number_token5] = ACTIONS(207), - [aux_sym__val_number_token6] = ACTIONS(209), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), - [anon_sym_POUND] = ACTIONS(3), - }, - [210] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10758), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), - [sym_comment] = STATE(210), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(187), - [anon_sym_not] = ACTIONS(191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(193), - [anon_sym_DOT_DOT_LT] = ACTIONS(193), - [anon_sym_null] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [aux_sym__val_number_decimal_token1] = ACTIONS(199), - [aux_sym__val_number_decimal_token2] = ACTIONS(201), - [anon_sym_DOT2] = ACTIONS(203), - [aux_sym__val_number_decimal_token3] = ACTIONS(205), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(209), - [aux_sym__val_number_token5] = ACTIONS(207), - [aux_sym__val_number_token6] = ACTIONS(209), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_POUND] = ACTIONS(3), - }, - [211] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10759), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), - [sym_comment] = STATE(211), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(187), - [anon_sym_not] = ACTIONS(191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(193), - [anon_sym_DOT_DOT_LT] = ACTIONS(193), - [anon_sym_null] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [aux_sym__val_number_decimal_token1] = ACTIONS(199), - [aux_sym__val_number_decimal_token2] = ACTIONS(201), - [anon_sym_DOT2] = ACTIONS(203), - [aux_sym__val_number_decimal_token3] = ACTIONS(205), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(209), - [aux_sym__val_number_token5] = ACTIONS(207), - [aux_sym__val_number_token6] = ACTIONS(209), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_POUND] = ACTIONS(3), - }, - [212] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11204), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), - [sym_comment] = STATE(212), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(187), - [anon_sym_not] = ACTIONS(191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(193), - [anon_sym_DOT_DOT_LT] = ACTIONS(193), - [anon_sym_null] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [aux_sym__val_number_decimal_token1] = ACTIONS(199), - [aux_sym__val_number_decimal_token2] = ACTIONS(201), - [anon_sym_DOT2] = ACTIONS(203), - [aux_sym__val_number_decimal_token3] = ACTIONS(205), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(209), - [aux_sym__val_number_token5] = ACTIONS(207), - [aux_sym__val_number_token6] = ACTIONS(209), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), - [anon_sym_POUND] = ACTIONS(3), - }, - [213] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10816), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), - [sym_comment] = STATE(213), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(187), - [anon_sym_not] = ACTIONS(191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(193), - [anon_sym_DOT_DOT_LT] = ACTIONS(193), - [anon_sym_null] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [aux_sym__val_number_decimal_token1] = ACTIONS(199), - [aux_sym__val_number_decimal_token2] = ACTIONS(201), - [anon_sym_DOT2] = ACTIONS(203), - [aux_sym__val_number_decimal_token3] = ACTIONS(205), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(209), - [aux_sym__val_number_token5] = ACTIONS(207), - [aux_sym__val_number_token6] = ACTIONS(209), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_POUND] = ACTIONS(3), - }, - [214] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10817), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), - [sym_comment] = STATE(214), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(187), - [anon_sym_not] = ACTIONS(191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(193), - [anon_sym_DOT_DOT_LT] = ACTIONS(193), - [anon_sym_null] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [aux_sym__val_number_decimal_token1] = ACTIONS(199), - [aux_sym__val_number_decimal_token2] = ACTIONS(201), - [anon_sym_DOT2] = ACTIONS(203), - [aux_sym__val_number_decimal_token3] = ACTIONS(205), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(209), - [aux_sym__val_number_token5] = ACTIONS(207), - [aux_sym__val_number_token6] = ACTIONS(209), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_POUND] = ACTIONS(3), - }, - [215] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11244), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), - [sym_comment] = STATE(215), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(187), - [anon_sym_not] = ACTIONS(191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(193), - [anon_sym_DOT_DOT_LT] = ACTIONS(193), - [anon_sym_null] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [aux_sym__val_number_decimal_token1] = ACTIONS(199), - [aux_sym__val_number_decimal_token2] = ACTIONS(201), - [anon_sym_DOT2] = ACTIONS(203), - [aux_sym__val_number_decimal_token3] = ACTIONS(205), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(209), - [aux_sym__val_number_token5] = ACTIONS(207), - [aux_sym__val_number_token6] = ACTIONS(209), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), - [anon_sym_POUND] = ACTIONS(3), - }, - [216] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10868), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), - [sym_comment] = STATE(216), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(187), - [anon_sym_not] = ACTIONS(191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(193), - [anon_sym_DOT_DOT_LT] = ACTIONS(193), - [anon_sym_null] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [aux_sym__val_number_decimal_token1] = ACTIONS(199), - [aux_sym__val_number_decimal_token2] = ACTIONS(201), - [anon_sym_DOT2] = ACTIONS(203), - [aux_sym__val_number_decimal_token3] = ACTIONS(205), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(209), - [aux_sym__val_number_token5] = ACTIONS(207), - [aux_sym__val_number_token6] = ACTIONS(209), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_POUND] = ACTIONS(3), - }, - [217] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10869), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), - [sym_comment] = STATE(217), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(187), - [anon_sym_not] = ACTIONS(191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(193), - [anon_sym_DOT_DOT_LT] = ACTIONS(193), - [anon_sym_null] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [aux_sym__val_number_decimal_token1] = ACTIONS(199), - [aux_sym__val_number_decimal_token2] = ACTIONS(201), - [anon_sym_DOT2] = ACTIONS(203), - [aux_sym__val_number_decimal_token3] = ACTIONS(205), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(209), - [aux_sym__val_number_token5] = ACTIONS(207), - [aux_sym__val_number_token6] = ACTIONS(209), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_POUND] = ACTIONS(3), - }, - [218] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11285), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), - [sym_comment] = STATE(218), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(187), - [anon_sym_not] = ACTIONS(191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(193), - [anon_sym_DOT_DOT_LT] = ACTIONS(193), - [anon_sym_null] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [aux_sym__val_number_decimal_token1] = ACTIONS(199), - [aux_sym__val_number_decimal_token2] = ACTIONS(201), - [anon_sym_DOT2] = ACTIONS(203), - [aux_sym__val_number_decimal_token3] = ACTIONS(205), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(209), - [aux_sym__val_number_token5] = ACTIONS(207), - [aux_sym__val_number_token6] = ACTIONS(209), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), - [anon_sym_POUND] = ACTIONS(3), - }, - [219] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10937), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), - [sym_comment] = STATE(219), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [207] = { + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10815), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), + [sym_comment] = STATE(207), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -120065,123 +116170,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(227), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, - [220] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10938), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), - [sym_comment] = STATE(220), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [208] = { + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10604), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), + [sym_comment] = STATE(208), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -120211,263 +116319,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(227), [anon_sym_POUND] = ACTIONS(3), }, - [221] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11293), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), - [sym_comment] = STATE(221), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(187), - [anon_sym_not] = ACTIONS(191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(193), - [anon_sym_DOT_DOT_LT] = ACTIONS(193), - [anon_sym_null] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [aux_sym__val_number_decimal_token1] = ACTIONS(199), - [aux_sym__val_number_decimal_token2] = ACTIONS(201), - [anon_sym_DOT2] = ACTIONS(203), - [aux_sym__val_number_decimal_token3] = ACTIONS(205), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(209), - [aux_sym__val_number_token5] = ACTIONS(207), - [aux_sym__val_number_token6] = ACTIONS(209), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), - [anon_sym_POUND] = ACTIONS(3), - }, - [222] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11016), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), - [sym_comment] = STATE(222), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [209] = { + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10605), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), + [sym_comment] = STATE(209), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -120497,120 +116465,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(227), [anon_sym_POUND] = ACTIONS(3), }, - [223] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11319), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), - [sym_comment] = STATE(223), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [210] = { + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10822), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), + [sym_comment] = STATE(210), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -120637,123 +116608,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, - [224] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11124), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), - [sym_comment] = STATE(224), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [211] = { + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10724), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), + [sym_comment] = STATE(211), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -120783,120 +116757,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(227), [anon_sym_POUND] = ACTIONS(3), }, - [225] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11125), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), - [sym_comment] = STATE(225), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [212] = { + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10725), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), + [sym_comment] = STATE(212), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -120926,120 +116903,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(227), [anon_sym_POUND] = ACTIONS(3), }, - [226] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11328), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), - [sym_comment] = STATE(226), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [213] = { + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10837), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), + [sym_comment] = STATE(213), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -121066,123 +117046,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, - [227] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11365), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), - [sym_comment] = STATE(227), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [214] = { + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10820), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), + [sym_comment] = STATE(214), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -121212,120 +117195,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(227), [anon_sym_POUND] = ACTIONS(3), }, - [228] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11366), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), - [sym_comment] = STATE(228), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [215] = { + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10821), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), + [sym_comment] = STATE(215), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -121355,120 +117341,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(227), [anon_sym_POUND] = ACTIONS(3), }, - [229] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11344), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), - [sym_comment] = STATE(229), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [216] = { + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10857), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), + [sym_comment] = STATE(216), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -121495,123 +117484,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, - [230] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10773), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), - [sym_comment] = STATE(230), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [217] = { + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10286), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), + [sym_comment] = STATE(217), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -121641,120 +117633,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(227), [anon_sym_POUND] = ACTIONS(3), }, - [231] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10783), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), - [sym_comment] = STATE(231), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [218] = { + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10287), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), + [sym_comment] = STATE(218), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -121784,263 +117779,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(227), [anon_sym_POUND] = ACTIONS(3), }, - [232] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(11372), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), - [sym_comment] = STATE(232), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(187), - [anon_sym_not] = ACTIONS(191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(193), - [anon_sym_DOT_DOT_LT] = ACTIONS(193), - [anon_sym_null] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [aux_sym__val_number_decimal_token1] = ACTIONS(199), - [aux_sym__val_number_decimal_token2] = ACTIONS(201), - [anon_sym_DOT2] = ACTIONS(203), - [aux_sym__val_number_decimal_token3] = ACTIONS(205), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(209), - [aux_sym__val_number_token5] = ACTIONS(207), - [aux_sym__val_number_token6] = ACTIONS(209), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), - [anon_sym_POUND] = ACTIONS(3), - }, - [233] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11317), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), - [sym_comment] = STATE(233), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [219] = { + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10878), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), + [sym_comment] = STATE(219), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -122067,123 +117922,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(227), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, - [234] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11339), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), - [sym_comment] = STATE(234), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [220] = { + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10335), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), + [sym_comment] = STATE(220), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -122213,120 +118071,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(227), [anon_sym_POUND] = ACTIONS(3), }, - [235] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(10748), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), - [sym_comment] = STATE(235), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [221] = { + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8643), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym__parenthesized_body] = STATE(10268), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), + [sym_comment] = STATE(221), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(229), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -122353,123 +118214,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, - [236] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10955), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), - [sym_comment] = STATE(236), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [222] = { + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10363), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), + [sym_comment] = STATE(222), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -122499,263 +118363,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(227), [anon_sym_POUND] = ACTIONS(3), }, - [237] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9112), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym__parenthesized_body] = STATE(10754), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), - [sym_comment] = STATE(237), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(187), - [anon_sym_not] = ACTIONS(191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(193), - [anon_sym_DOT_DOT_LT] = ACTIONS(193), - [anon_sym_null] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [aux_sym__val_number_decimal_token1] = ACTIONS(199), - [aux_sym__val_number_decimal_token2] = ACTIONS(201), - [anon_sym_DOT2] = ACTIONS(203), - [aux_sym__val_number_decimal_token3] = ACTIONS(205), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(209), - [aux_sym__val_number_token5] = ACTIONS(207), - [aux_sym__val_number_token6] = ACTIONS(209), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), - [anon_sym_POUND] = ACTIONS(3), - }, - [238] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11138), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), - [sym_comment] = STATE(238), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [223] = { + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10393), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), + [sym_comment] = STATE(223), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -122785,120 +118509,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(227), [anon_sym_POUND] = ACTIONS(3), }, - [239] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11252), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), - [sym_comment] = STATE(239), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [224] = { + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10428), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), + [sym_comment] = STATE(224), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -122928,120 +118655,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(227), [anon_sym_POUND] = ACTIONS(3), }, - [240] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10762), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), - [sym_comment] = STATE(240), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [225] = { + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10460), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), + [sym_comment] = STATE(225), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -123071,120 +118801,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(227), [anon_sym_POUND] = ACTIONS(3), }, - [241] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10824), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), - [sym_comment] = STATE(241), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [226] = { + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10493), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), + [sym_comment] = STATE(226), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -123214,120 +118947,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(227), [anon_sym_POUND] = ACTIONS(3), }, - [242] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(10874), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), - [sym_comment] = STATE(242), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [227] = { + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8170), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym__block_body] = STATE(10633), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), + [sym_comment] = STATE(227), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(228), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -123357,120 +119093,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(227), [anon_sym_POUND] = ACTIONS(3), }, - [243] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8783), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym__block_body] = STATE(11290), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), - [sym_comment] = STATE(243), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(246), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [228] = { + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8331), + [sym__declaration_last] = STATE(9271), + [sym_decl_alias_last] = STATE(9272), + [sym_stmt_let_last] = STATE(9273), + [sym_stmt_mut_last] = STATE(9273), + [sym_stmt_const_last] = STATE(9273), + [sym_assignment_last] = STATE(9273), + [sym__mutable_assignment_pattern_last] = STATE(9277), + [sym__statement_last] = STATE(9271), + [sym_pipeline_last] = STATE(9273), + [sym_decl_def] = STATE(2385), + [sym_decl_export] = STATE(2385), + [sym_decl_extern] = STATE(2385), + [sym_decl_module] = STATE(2385), + [sym_decl_use] = STATE(2385), + [sym__ctrl_statement] = STATE(2339), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_stmt_source] = STATE(2339), + [sym_stmt_register] = STATE(2339), + [sym__stmt_hide] = STATE(2339), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2339), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3771), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), + [sym_comment] = STATE(228), + [aux_sym_pipeline_repeat1] = STATE(764), + [aux_sym__block_body_repeat2] = STATE(231), + [anon_sym_export] = ACTIONS(367), + [anon_sym_alias] = ACTIONS(369), + [anon_sym_let] = ACTIONS(371), + [anon_sym_let_DASHenv] = ACTIONS(371), + [anon_sym_mut] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -123500,119 +119238,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(227), [anon_sym_POUND] = ACTIONS(3), }, - [244] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym__block_body_statement_parenthesized_last] = STATE(9238), - [sym__declaration_parenthesized_last] = STATE(10323), - [sym_decl_alias_parenthesized_last] = STATE(10340), - [sym_stmt_let_parenthesized_last] = STATE(10345), - [sym_stmt_mut_parenthesized_last] = STATE(10345), - [sym_stmt_const_parenthesized_last] = STATE(10345), - [sym__statement_parenthesized_last] = STATE(10323), - [sym_pipeline_parenthesized_last] = STATE(10345), - [sym_decl_def] = STATE(2810), - [sym_decl_export] = STATE(2810), - [sym_decl_extern] = STATE(2810), - [sym_decl_module] = STATE(2810), - [sym_decl_use] = STATE(2810), - [sym__ctrl_statement] = STATE(2939), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_stmt_source] = STATE(2939), - [sym_stmt_register] = STATE(2939), - [sym__stmt_hide] = STATE(2939), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2939), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2939), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), - [sym_comment] = STATE(244), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [aux_sym__parenthesized_body_repeat1] = STATE(248), - [anon_sym_export] = ACTIONS(435), - [anon_sym_alias] = ACTIONS(437), - [anon_sym_let] = ACTIONS(439), - [anon_sym_let_DASHenv] = ACTIONS(439), - [anon_sym_mut] = ACTIONS(441), - [anon_sym_const] = ACTIONS(443), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), + [229] = { + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym__block_body_statement_parenthesized_last] = STATE(8580), + [sym__declaration_parenthesized_last] = STATE(9774), + [sym_decl_alias_parenthesized_last] = STATE(9780), + [sym_stmt_let_parenthesized_last] = STATE(9789), + [sym_stmt_mut_parenthesized_last] = STATE(9789), + [sym_stmt_const_parenthesized_last] = STATE(9789), + [sym_assignment_parenthesized_last] = STATE(9789), + [sym__mutable_assignment_pattern_parenthesized_last] = STATE(9790), + [sym__statement_parenthesized_last] = STATE(9774), + [sym_pipeline_parenthesized_last] = STATE(9789), + [sym_decl_def] = STATE(2491), + [sym_decl_export] = STATE(2491), + [sym_decl_extern] = STATE(2491), + [sym_decl_module] = STATE(2491), + [sym_decl_use] = STATE(2491), + [sym__ctrl_statement] = STATE(2500), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_stmt_source] = STATE(2500), + [sym_stmt_register] = STATE(2500), + [sym__stmt_hide] = STATE(2500), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2500), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(3984), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), + [sym_comment] = STATE(229), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [aux_sym__parenthesized_body_repeat1] = STATE(232), + [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), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_error] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_for] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_while] = ACTIONS(401), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_source] = ACTIONS(415), + [anon_sym_source_DASHenv] = ACTIONS(415), + [anon_sym_register] = ACTIONS(417), + [anon_sym_hide] = ACTIONS(419), + [anon_sym_hide_DASHenv] = ACTIONS(421), + [anon_sym_overlay] = ACTIONS(423), [anon_sym_where] = ACTIONS(187), [anon_sym_not] = ACTIONS(191), [anon_sym_DOT_DOT_EQ] = ACTIONS(193), @@ -123639,87 +119380,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(453), [anon_sym_POUND] = ACTIONS(3), }, - [245] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(9123), - [sym__declaration_last] = STATE(10409), - [sym_decl_alias_last] = STATE(10410), - [sym_stmt_let_last] = STATE(10440), - [sym_stmt_mut_last] = STATE(10440), - [sym_stmt_const_last] = STATE(10440), - [sym__statement_last] = STATE(10409), - [sym_pipeline_last] = STATE(10440), - [sym_decl_def] = STATE(2929), - [sym_decl_export] = STATE(2929), - [sym_decl_extern] = STATE(2929), - [sym_decl_module] = STATE(2929), - [sym_decl_use] = STATE(2929), - [sym__ctrl_statement] = STATE(2931), - [sym__ctrl_expression] = STATE(9270), - [sym_ctrl_for] = STATE(2851), - [sym_ctrl_loop] = STATE(2851), - [sym_ctrl_error] = STATE(2851), - [sym_ctrl_while] = STATE(2851), - [sym_ctrl_do] = STATE(9515), - [sym_ctrl_if] = STATE(9515), - [sym_ctrl_match] = STATE(9515), - [sym_ctrl_try] = STATE(9515), - [sym_ctrl_return] = STATE(9515), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9536), - [sym_stmt_source] = STATE(2931), - [sym_stmt_register] = STATE(2931), - [sym__stmt_hide] = STATE(2931), - [sym_hide_mod] = STATE(2909), - [sym_hide_env] = STATE(2909), - [sym__stmt_overlay] = STATE(2931), - [sym_overlay_list] = STATE(2815), - [sym_overlay_hide] = STATE(2815), - [sym_overlay_new] = STATE(2815), - [sym_overlay_use] = STATE(2815), - [sym_assignment] = STATE(2931), - [sym_where_command] = STATE(8865), - [sym__expression] = STATE(8865), - [sym_expr_unary] = STATE(6379), - [sym__expr_unary_minus] = STATE(6347), - [sym_expr_binary] = STATE(6379), - [sym__expr_binary_expression] = STATE(6784), - [sym_expr_parenthesized] = STATE(5573), - [sym_val_range] = STATE(8689), - [sym__value] = STATE(6379), - [sym_val_nothing] = STATE(6374), - [sym_val_bool] = STATE(6374), - [sym_val_variable] = STATE(4502), - [sym__var] = STATE(3992), - [sym_val_number] = STATE(6374), - [sym__val_number_decimal] = STATE(4698), - [sym__val_number] = STATE(5769), - [sym_val_duration] = STATE(6374), - [sym_val_filesize] = STATE(6374), - [sym_val_binary] = STATE(6374), - [sym_val_string] = STATE(6374), - [sym__str_double_quotes] = STATE(6386), - [sym_val_interpolated] = STATE(6374), - [sym__inter_single_quotes] = STATE(6363), - [sym__inter_double_quotes] = STATE(6365), - [sym_val_list] = STATE(6374), - [sym_val_record] = STATE(6374), - [sym_val_table] = STATE(6374), - [sym_val_closure] = STATE(6374), - [sym_command] = STATE(8865), - [sym_comment] = STATE(245), - [aux_sym_pipeline_repeat1] = STATE(1031), - [aux_sym__block_body_repeat2] = STATE(247), + [230] = { + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym__block_body_statement_last] = STATE(8592), + [sym__declaration_last] = STATE(9783), + [sym_decl_alias_last] = STATE(9731), + [sym_stmt_let_last] = STATE(9910), + [sym_stmt_mut_last] = STATE(9910), + [sym_stmt_const_last] = STATE(9910), + [sym_assignment_last] = STATE(9910), + [sym__mutable_assignment_pattern_last] = STATE(9932), + [sym__statement_last] = STATE(9783), + [sym_pipeline_last] = STATE(9910), + [sym_decl_def] = STATE(2425), + [sym_decl_export] = STATE(2425), + [sym_decl_extern] = STATE(2425), + [sym_decl_module] = STATE(2425), + [sym_decl_use] = STATE(2425), + [sym__ctrl_statement] = STATE(2428), + [sym__ctrl_expression] = STATE(8658), + [sym_ctrl_for] = STATE(2439), + [sym_ctrl_loop] = STATE(2439), + [sym_ctrl_error] = STATE(2439), + [sym_ctrl_while] = STATE(2439), + [sym_ctrl_do] = STATE(9613), + [sym_ctrl_if] = STATE(9613), + [sym_ctrl_match] = STATE(9613), + [sym_ctrl_try] = STATE(9613), + [sym_ctrl_return] = STATE(9613), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(9153), + [sym_stmt_source] = STATE(2428), + [sym_stmt_register] = STATE(2428), + [sym__stmt_hide] = STATE(2428), + [sym_hide_mod] = STATE(2446), + [sym_hide_env] = STATE(2446), + [sym__stmt_overlay] = STATE(2428), + [sym_overlay_list] = STATE(2447), + [sym_overlay_hide] = STATE(2447), + [sym_overlay_new] = STATE(2447), + [sym_overlay_use] = STATE(2447), + [sym_where_command] = STATE(8524), + [sym__expression] = STATE(8524), + [sym_expr_unary] = STATE(5890), + [sym__expr_unary_minus] = STATE(5878), + [sym_expr_binary] = STATE(5890), + [sym__expr_binary_expression] = STATE(6380), + [sym_expr_parenthesized] = STATE(5154), + [sym_val_range] = STATE(8295), + [sym__value] = STATE(5890), + [sym_val_nothing] = STATE(5931), + [sym_val_bool] = STATE(5931), + [sym_val_variable] = STATE(3990), + [sym__var] = STATE(3561), + [sym_val_number] = STATE(5931), + [sym__val_number_decimal] = STATE(4371), + [sym__val_number] = STATE(5285), + [sym_val_duration] = STATE(5931), + [sym_val_filesize] = STATE(5931), + [sym_val_binary] = STATE(5931), + [sym_val_string] = STATE(5931), + [sym__str_double_quotes] = STATE(5888), + [sym_val_interpolated] = STATE(5931), + [sym__inter_single_quotes] = STATE(5935), + [sym__inter_double_quotes] = STATE(5940), + [sym_val_list] = STATE(5931), + [sym_val_record] = STATE(5931), + [sym_val_table] = STATE(5931), + [sym_val_closure] = STATE(5931), + [sym_command] = STATE(8524), + [sym_comment] = STATE(230), + [aux_sym_pipeline_repeat1] = STATE(766), + [aux_sym__block_body_repeat2] = STATE(231), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), [anon_sym_let] = ACTIONS(13), @@ -123784,2649 +119528,2718 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(111), [anon_sym_POUND] = ACTIONS(3), }, - [246] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym__block_body_statement_last] = STATE(8525), - [sym__declaration_last] = STATE(9454), - [sym_decl_alias_last] = STATE(9455), - [sym_stmt_let_last] = STATE(9456), - [sym_stmt_mut_last] = STATE(9456), - [sym_stmt_const_last] = STATE(9456), - [sym__statement_last] = STATE(9454), - [sym_pipeline_last] = STATE(9456), - [sym_decl_def] = STATE(2769), - [sym_decl_export] = STATE(2769), - [sym_decl_extern] = STATE(2769), - [sym_decl_module] = STATE(2769), - [sym_decl_use] = STATE(2769), - [sym__ctrl_statement] = STATE(2772), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_stmt_source] = STATE(2772), - [sym_stmt_register] = STATE(2772), - [sym__stmt_hide] = STATE(2772), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2772), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2772), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), - [sym_comment] = STATE(246), - [aux_sym_pipeline_repeat1] = STATE(1033), - [aux_sym__block_body_repeat2] = STATE(247), - [anon_sym_export] = ACTIONS(371), - [anon_sym_alias] = ACTIONS(373), - [anon_sym_let] = ACTIONS(375), - [anon_sym_let_DASHenv] = ACTIONS(375), - [anon_sym_mut] = ACTIONS(377), - [anon_sym_const] = ACTIONS(379), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_def] = ACTIONS(383), - [anon_sym_export_DASHenv] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(387), - [anon_sym_module] = ACTIONS(389), - [anon_sym_use] = ACTIONS(391), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(187), - [anon_sym_not] = ACTIONS(191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(193), - [anon_sym_DOT_DOT_LT] = ACTIONS(193), - [anon_sym_null] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [aux_sym__val_number_decimal_token1] = ACTIONS(199), - [aux_sym__val_number_decimal_token2] = ACTIONS(201), - [anon_sym_DOT2] = ACTIONS(203), - [aux_sym__val_number_decimal_token3] = ACTIONS(205), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(209), - [aux_sym__val_number_token5] = ACTIONS(207), - [aux_sym__val_number_token6] = ACTIONS(209), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_POUND] = ACTIONS(3), - }, - [247] = { - [sym__block_body_statement] = STATE(2771), - [sym__declaration] = STATE(2983), - [sym_decl_alias] = STATE(2985), - [sym_stmt_let] = STATE(3027), - [sym_stmt_mut] = STATE(3027), - [sym_stmt_const] = STATE(3027), - [sym__statement] = STATE(2983), - [sym_pipeline] = STATE(3027), - [sym_decl_def] = STATE(2985), - [sym_decl_export] = STATE(2985), - [sym_decl_extern] = STATE(2985), - [sym_decl_module] = STATE(2985), - [sym_decl_use] = STATE(2985), - [sym__ctrl_statement] = STATE(3027), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(10427), - [sym_stmt_source] = STATE(3027), - [sym_stmt_register] = STATE(3027), - [sym__stmt_hide] = STATE(3027), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(3027), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(3027), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), - [sym_comment] = STATE(247), - [aux_sym_pipeline_repeat1] = STATE(1030), - [aux_sym__block_body_repeat2] = STATE(247), - [anon_sym_export] = ACTIONS(597), - [anon_sym_alias] = ACTIONS(600), - [anon_sym_let] = ACTIONS(603), - [anon_sym_let_DASHenv] = ACTIONS(603), - [anon_sym_mut] = ACTIONS(606), - [anon_sym_const] = ACTIONS(609), - [sym_cmd_identifier] = ACTIONS(612), - [anon_sym_def] = ACTIONS(615), - [anon_sym_export_DASHenv] = ACTIONS(618), - [anon_sym_extern] = ACTIONS(621), - [anon_sym_module] = ACTIONS(624), - [anon_sym_use] = ACTIONS(627), - [anon_sym_LBRACK] = ACTIONS(630), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_DOLLAR] = ACTIONS(636), - [anon_sym_error] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(642), - [anon_sym_break] = ACTIONS(645), - [anon_sym_continue] = ACTIONS(648), - [anon_sym_for] = ACTIONS(651), - [anon_sym_loop] = ACTIONS(654), - [anon_sym_while] = ACTIONS(657), - [anon_sym_do] = ACTIONS(660), - [anon_sym_if] = ACTIONS(663), - [anon_sym_match] = ACTIONS(666), - [anon_sym_LBRACE] = ACTIONS(669), - [anon_sym_DOT_DOT] = ACTIONS(672), - [anon_sym_try] = ACTIONS(675), - [anon_sym_return] = ACTIONS(678), - [anon_sym_source] = ACTIONS(681), - [anon_sym_source_DASHenv] = ACTIONS(681), - [anon_sym_register] = ACTIONS(684), - [anon_sym_hide] = ACTIONS(687), - [anon_sym_hide_DASHenv] = ACTIONS(690), - [anon_sym_overlay] = ACTIONS(693), - [anon_sym_where] = ACTIONS(696), - [anon_sym_not] = ACTIONS(699), - [anon_sym_DOT_DOT_EQ] = ACTIONS(702), - [anon_sym_DOT_DOT_LT] = ACTIONS(702), - [anon_sym_null] = ACTIONS(705), - [anon_sym_true] = ACTIONS(708), - [anon_sym_false] = ACTIONS(708), - [aux_sym__val_number_decimal_token1] = ACTIONS(711), - [aux_sym__val_number_decimal_token2] = ACTIONS(714), - [anon_sym_DOT2] = ACTIONS(717), - [aux_sym__val_number_decimal_token3] = ACTIONS(720), - [aux_sym__val_number_token1] = ACTIONS(723), - [aux_sym__val_number_token2] = ACTIONS(723), - [aux_sym__val_number_token3] = ACTIONS(723), - [aux_sym__val_number_token4] = ACTIONS(726), - [aux_sym__val_number_token5] = ACTIONS(723), - [aux_sym__val_number_token6] = ACTIONS(726), - [anon_sym_0b] = ACTIONS(729), - [anon_sym_0o] = ACTIONS(732), - [anon_sym_0x] = ACTIONS(732), - [sym_val_date] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(738), - [sym__str_single_quotes] = ACTIONS(741), - [sym__str_back_ticks] = ACTIONS(741), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(744), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(747), - [anon_sym_CARET] = ACTIONS(750), + [231] = { + [sym__block_body_statement] = STATE(2354), + [sym__declaration] = STATE(2563), + [sym_decl_alias] = STATE(2579), + [sym_stmt_let] = STATE(2529), + [sym_stmt_mut] = STATE(2529), + [sym_stmt_const] = STATE(2529), + [sym_assignment] = STATE(2529), + [sym__mutable_assignment_pattern] = STATE(2538), + [sym__statement] = STATE(2563), + [sym_pipeline] = STATE(2529), + [sym_decl_def] = STATE(2579), + [sym_decl_export] = STATE(2579), + [sym_decl_extern] = STATE(2579), + [sym_decl_module] = STATE(2579), + [sym_decl_use] = STATE(2579), + [sym__ctrl_statement] = STATE(2529), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(9749), + [sym_stmt_source] = STATE(2529), + [sym_stmt_register] = STATE(2529), + [sym__stmt_hide] = STATE(2529), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2529), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(4249), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), + [sym_comment] = STATE(231), + [aux_sym_pipeline_repeat1] = STATE(763), + [aux_sym__block_body_repeat2] = STATE(231), + [anon_sym_export] = ACTIONS(581), + [anon_sym_alias] = ACTIONS(584), + [anon_sym_let] = ACTIONS(587), + [anon_sym_let_DASHenv] = ACTIONS(587), + [anon_sym_mut] = ACTIONS(590), + [anon_sym_const] = ACTIONS(593), + [sym_cmd_identifier] = ACTIONS(596), + [anon_sym_def] = ACTIONS(599), + [anon_sym_export_DASHenv] = ACTIONS(602), + [anon_sym_extern] = ACTIONS(605), + [anon_sym_module] = ACTIONS(608), + [anon_sym_use] = ACTIONS(611), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(620), + [anon_sym_error] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_break] = ACTIONS(629), + [anon_sym_continue] = ACTIONS(632), + [anon_sym_for] = ACTIONS(635), + [anon_sym_loop] = ACTIONS(638), + [anon_sym_while] = ACTIONS(641), + [anon_sym_do] = ACTIONS(644), + [anon_sym_if] = ACTIONS(647), + [anon_sym_match] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(653), + [anon_sym_DOT_DOT] = ACTIONS(656), + [anon_sym_try] = ACTIONS(659), + [anon_sym_return] = ACTIONS(662), + [anon_sym_source] = ACTIONS(665), + [anon_sym_source_DASHenv] = ACTIONS(665), + [anon_sym_register] = ACTIONS(668), + [anon_sym_hide] = ACTIONS(671), + [anon_sym_hide_DASHenv] = ACTIONS(674), + [anon_sym_overlay] = ACTIONS(677), + [anon_sym_where] = ACTIONS(680), + [anon_sym_not] = ACTIONS(683), + [anon_sym_DOT_DOT_EQ] = ACTIONS(686), + [anon_sym_DOT_DOT_LT] = ACTIONS(686), + [anon_sym_null] = ACTIONS(689), + [anon_sym_true] = ACTIONS(692), + [anon_sym_false] = ACTIONS(692), + [aux_sym__val_number_decimal_token1] = ACTIONS(695), + [aux_sym__val_number_decimal_token2] = ACTIONS(698), + [anon_sym_DOT2] = ACTIONS(701), + [aux_sym__val_number_decimal_token3] = ACTIONS(704), + [aux_sym__val_number_token1] = ACTIONS(707), + [aux_sym__val_number_token2] = ACTIONS(707), + [aux_sym__val_number_token3] = ACTIONS(707), + [aux_sym__val_number_token4] = ACTIONS(710), + [aux_sym__val_number_token5] = ACTIONS(707), + [aux_sym__val_number_token6] = ACTIONS(710), + [anon_sym_0b] = ACTIONS(713), + [anon_sym_0o] = ACTIONS(716), + [anon_sym_0x] = ACTIONS(716), + [sym_val_date] = ACTIONS(719), + [anon_sym_DQUOTE] = ACTIONS(722), + [sym__str_single_quotes] = ACTIONS(725), + [sym__str_back_ticks] = ACTIONS(725), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(728), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(731), + [anon_sym_CARET] = ACTIONS(734), [anon_sym_POUND] = ACTIONS(3), }, - [248] = { - [sym__block_body_statement_parenthesized] = STATE(2763), - [sym__declaration_parenthesized] = STATE(3008), - [sym_decl_alias_parenthesized] = STATE(3061), - [sym_stmt_let_parenthesized] = STATE(2951), - [sym_stmt_mut_parenthesized] = STATE(2951), - [sym_stmt_const_parenthesized] = STATE(2951), - [sym__statement_parenthesized] = STATE(3008), - [sym_pipeline_parenthesized] = STATE(2951), - [sym_decl_def] = STATE(3061), - [sym_decl_export] = STATE(3061), - [sym_decl_extern] = STATE(3061), - [sym_decl_module] = STATE(3061), - [sym_decl_use] = STATE(3061), - [sym__ctrl_statement] = STATE(2951), - [sym__ctrl_expression_parenthesized] = STATE(9506), - [sym_ctrl_for] = STATE(2775), - [sym_ctrl_loop] = STATE(2775), - [sym_ctrl_error] = STATE(2775), - [sym_ctrl_while] = STATE(2775), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(11177), - [sym_stmt_source] = STATE(2951), - [sym_stmt_register] = STATE(2951), - [sym__stmt_hide] = STATE(2951), - [sym_hide_mod] = STATE(2782), - [sym_hide_env] = STATE(2782), - [sym__stmt_overlay] = STATE(2951), - [sym_overlay_list] = STATE(2783), - [sym_overlay_hide] = STATE(2783), - [sym_overlay_new] = STATE(2783), - [sym_overlay_use] = STATE(2783), - [sym_assignment] = STATE(2951), - [sym_where_command] = STATE(9507), - [sym__expression] = STATE(9507), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(4292), - [sym__var] = STATE(3765), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9509), - [sym_comment] = STATE(248), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1032), - [aux_sym__parenthesized_body_repeat1] = STATE(248), - [anon_sym_export] = ACTIONS(753), - [anon_sym_alias] = ACTIONS(756), - [anon_sym_let] = ACTIONS(759), - [anon_sym_let_DASHenv] = ACTIONS(759), - [anon_sym_mut] = ACTIONS(762), - [anon_sym_const] = ACTIONS(765), - [sym_cmd_identifier] = ACTIONS(768), - [anon_sym_def] = ACTIONS(771), - [anon_sym_export_DASHenv] = ACTIONS(774), - [anon_sym_extern] = ACTIONS(777), - [anon_sym_module] = ACTIONS(780), - [anon_sym_use] = ACTIONS(783), - [anon_sym_LBRACK] = ACTIONS(786), - [anon_sym_LPAREN] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(792), - [anon_sym_error] = ACTIONS(795), - [anon_sym_DASH] = ACTIONS(798), - [anon_sym_break] = ACTIONS(801), - [anon_sym_continue] = ACTIONS(804), - [anon_sym_for] = ACTIONS(807), - [anon_sym_loop] = ACTIONS(810), - [anon_sym_while] = ACTIONS(813), - [anon_sym_do] = ACTIONS(816), - [anon_sym_if] = ACTIONS(819), - [anon_sym_match] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(825), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_try] = ACTIONS(831), - [anon_sym_return] = ACTIONS(834), - [anon_sym_source] = ACTIONS(837), - [anon_sym_source_DASHenv] = ACTIONS(837), - [anon_sym_register] = ACTIONS(840), - [anon_sym_hide] = ACTIONS(843), - [anon_sym_hide_DASHenv] = ACTIONS(846), - [anon_sym_overlay] = ACTIONS(849), - [anon_sym_where] = ACTIONS(852), - [anon_sym_not] = ACTIONS(855), - [anon_sym_DOT_DOT_EQ] = ACTIONS(858), - [anon_sym_DOT_DOT_LT] = ACTIONS(858), - [anon_sym_null] = ACTIONS(861), - [anon_sym_true] = ACTIONS(864), - [anon_sym_false] = ACTIONS(864), - [aux_sym__val_number_decimal_token1] = ACTIONS(867), - [aux_sym__val_number_decimal_token2] = ACTIONS(870), - [anon_sym_DOT2] = ACTIONS(873), - [aux_sym__val_number_decimal_token3] = ACTIONS(876), - [aux_sym__val_number_token1] = ACTIONS(879), - [aux_sym__val_number_token2] = ACTIONS(879), - [aux_sym__val_number_token3] = ACTIONS(879), - [aux_sym__val_number_token4] = ACTIONS(882), - [aux_sym__val_number_token5] = ACTIONS(879), - [aux_sym__val_number_token6] = ACTIONS(882), - [anon_sym_0b] = ACTIONS(885), - [anon_sym_0o] = ACTIONS(888), - [anon_sym_0x] = ACTIONS(888), - [sym_val_date] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(894), - [sym__str_single_quotes] = ACTIONS(897), - [sym__str_back_ticks] = ACTIONS(897), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(903), - [anon_sym_CARET] = ACTIONS(906), + [232] = { + [sym__block_body_statement_parenthesized] = STATE(2341), + [sym__declaration_parenthesized] = STATE(2597), + [sym_decl_alias_parenthesized] = STATE(2598), + [sym_stmt_let_parenthesized] = STATE(2604), + [sym_stmt_mut_parenthesized] = STATE(2604), + [sym_stmt_const_parenthesized] = STATE(2604), + [sym_assignment_parenthesized] = STATE(2604), + [sym__mutable_assignment_pattern_parenthesized] = STATE(2605), + [sym__statement_parenthesized] = STATE(2597), + [sym_pipeline_parenthesized] = STATE(2604), + [sym_decl_def] = STATE(2598), + [sym_decl_export] = STATE(2598), + [sym_decl_extern] = STATE(2598), + [sym_decl_module] = STATE(2598), + [sym_decl_use] = STATE(2598), + [sym__ctrl_statement] = STATE(2604), + [sym__ctrl_expression_parenthesized] = STATE(9595), + [sym_ctrl_for] = STATE(2348), + [sym_ctrl_loop] = STATE(2348), + [sym_ctrl_error] = STATE(2348), + [sym_ctrl_while] = STATE(2348), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(10470), + [sym_stmt_source] = STATE(2604), + [sym_stmt_register] = STATE(2604), + [sym__stmt_hide] = STATE(2604), + [sym_hide_mod] = STATE(2353), + [sym_hide_env] = STATE(2353), + [sym__stmt_overlay] = STATE(2604), + [sym_overlay_list] = STATE(2356), + [sym_overlay_hide] = STATE(2356), + [sym_overlay_new] = STATE(2356), + [sym_overlay_use] = STATE(2356), + [sym_where_command] = STATE(9598), + [sym__expression] = STATE(9598), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(4201), + [sym__var] = STATE(3366), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(9602), + [sym_comment] = STATE(232), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(762), + [aux_sym__parenthesized_body_repeat1] = STATE(232), + [anon_sym_export] = ACTIONS(737), + [anon_sym_alias] = ACTIONS(740), + [anon_sym_let] = ACTIONS(743), + [anon_sym_let_DASHenv] = ACTIONS(743), + [anon_sym_mut] = ACTIONS(746), + [anon_sym_const] = ACTIONS(749), + [sym_cmd_identifier] = ACTIONS(752), + [anon_sym_def] = ACTIONS(755), + [anon_sym_export_DASHenv] = ACTIONS(758), + [anon_sym_extern] = ACTIONS(761), + [anon_sym_module] = ACTIONS(764), + [anon_sym_use] = ACTIONS(767), + [anon_sym_LBRACK] = ACTIONS(770), + [anon_sym_LPAREN] = ACTIONS(773), + [anon_sym_DOLLAR] = ACTIONS(776), + [anon_sym_error] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(782), + [anon_sym_break] = ACTIONS(785), + [anon_sym_continue] = ACTIONS(788), + [anon_sym_for] = ACTIONS(791), + [anon_sym_loop] = ACTIONS(794), + [anon_sym_while] = ACTIONS(797), + [anon_sym_do] = ACTIONS(800), + [anon_sym_if] = ACTIONS(803), + [anon_sym_match] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(809), + [anon_sym_DOT_DOT] = ACTIONS(812), + [anon_sym_try] = ACTIONS(815), + [anon_sym_return] = ACTIONS(818), + [anon_sym_source] = ACTIONS(821), + [anon_sym_source_DASHenv] = ACTIONS(821), + [anon_sym_register] = ACTIONS(824), + [anon_sym_hide] = ACTIONS(827), + [anon_sym_hide_DASHenv] = ACTIONS(830), + [anon_sym_overlay] = ACTIONS(833), + [anon_sym_where] = ACTIONS(836), + [anon_sym_not] = ACTIONS(839), + [anon_sym_DOT_DOT_EQ] = ACTIONS(842), + [anon_sym_DOT_DOT_LT] = ACTIONS(842), + [anon_sym_null] = ACTIONS(845), + [anon_sym_true] = ACTIONS(848), + [anon_sym_false] = ACTIONS(848), + [aux_sym__val_number_decimal_token1] = ACTIONS(851), + [aux_sym__val_number_decimal_token2] = ACTIONS(854), + [anon_sym_DOT2] = ACTIONS(857), + [aux_sym__val_number_decimal_token3] = ACTIONS(860), + [aux_sym__val_number_token1] = ACTIONS(863), + [aux_sym__val_number_token2] = ACTIONS(863), + [aux_sym__val_number_token3] = ACTIONS(863), + [aux_sym__val_number_token4] = ACTIONS(866), + [aux_sym__val_number_token5] = ACTIONS(863), + [aux_sym__val_number_token6] = ACTIONS(866), + [anon_sym_0b] = ACTIONS(869), + [anon_sym_0o] = ACTIONS(872), + [anon_sym_0x] = ACTIONS(872), + [sym_val_date] = ACTIONS(875), + [anon_sym_DQUOTE] = ACTIONS(878), + [sym__str_single_quotes] = ACTIONS(881), + [sym__str_back_ticks] = ACTIONS(881), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(884), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(887), + [anon_sym_CARET] = ACTIONS(890), [anon_sym_POUND] = ACTIONS(3), }, - [249] = { - [sym_comment] = STATE(249), - [anon_sym_export] = ACTIONS(909), - [anon_sym_alias] = ACTIONS(909), - [anon_sym_let] = ACTIONS(909), - [anon_sym_let_DASHenv] = ACTIONS(909), - [anon_sym_mut] = ACTIONS(909), - [anon_sym_const] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(909), - [sym_cmd_identifier] = ACTIONS(909), - [anon_sym_LF] = ACTIONS(911), - [anon_sym_def] = ACTIONS(909), - [anon_sym_export_DASHenv] = ACTIONS(909), - [anon_sym_extern] = ACTIONS(909), - [anon_sym_module] = ACTIONS(909), - [anon_sym_use] = ACTIONS(909), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_RPAREN] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_error] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_break] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_for] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_loop] = ACTIONS(909), - [anon_sym_while] = ACTIONS(909), - [anon_sym_do] = ACTIONS(909), - [anon_sym_if] = ACTIONS(909), - [anon_sym_match] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_RBRACE] = ACTIONS(909), - [anon_sym_DOT_DOT] = ACTIONS(909), - [anon_sym_try] = ACTIONS(909), - [anon_sym_return] = ACTIONS(909), - [anon_sym_source] = ACTIONS(909), - [anon_sym_source_DASHenv] = ACTIONS(909), - [anon_sym_register] = ACTIONS(909), - [anon_sym_hide] = ACTIONS(909), - [anon_sym_hide_DASHenv] = ACTIONS(909), - [anon_sym_overlay] = ACTIONS(909), - [anon_sym_as] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_where] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(909), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(909), - [anon_sym_SLASH_SLASH] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(909), - [anon_sym_bit_DASHshr] = ACTIONS(909), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_not_DASHin] = ACTIONS(909), - [anon_sym_starts_DASHwith] = ACTIONS(909), - [anon_sym_ends_DASHwith] = ACTIONS(909), - [anon_sym_EQ_TILDE] = ACTIONS(909), - [anon_sym_BANG_TILDE] = ACTIONS(909), - [anon_sym_bit_DASHand] = ACTIONS(909), - [anon_sym_bit_DASHxor] = ACTIONS(909), - [anon_sym_bit_DASHor] = ACTIONS(909), - [anon_sym_and] = ACTIONS(909), - [anon_sym_xor] = ACTIONS(909), - [anon_sym_or] = ACTIONS(909), - [anon_sym_not] = ACTIONS(909), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [aux_sym__immediate_decimal_token1] = ACTIONS(913), - [aux_sym__immediate_decimal_token2] = ACTIONS(915), - [anon_sym_null] = ACTIONS(909), - [anon_sym_true] = ACTIONS(909), - [anon_sym_false] = ACTIONS(909), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(909), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(909), - [aux_sym__val_number_token1] = ACTIONS(909), - [aux_sym__val_number_token2] = ACTIONS(909), - [aux_sym__val_number_token3] = ACTIONS(909), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(909), - [aux_sym__val_number_token6] = ACTIONS(909), - [anon_sym_0b] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(909), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym__str_single_quotes] = ACTIONS(909), - [sym__str_back_ticks] = ACTIONS(909), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), - [anon_sym_CARET] = ACTIONS(909), - [aux_sym_unquoted_token5] = ACTIONS(909), + [233] = { + [sym_comment] = STATE(233), + [anon_sym_export] = ACTIONS(893), + [anon_sym_alias] = ACTIONS(893), + [anon_sym_let] = ACTIONS(893), + [anon_sym_let_DASHenv] = ACTIONS(893), + [anon_sym_mut] = ACTIONS(893), + [anon_sym_const] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(893), + [sym_cmd_identifier] = ACTIONS(893), + [anon_sym_LF] = ACTIONS(895), + [anon_sym_def] = ACTIONS(893), + [anon_sym_export_DASHenv] = ACTIONS(893), + [anon_sym_extern] = ACTIONS(893), + [anon_sym_module] = ACTIONS(893), + [anon_sym_use] = ACTIONS(893), + [anon_sym_LBRACK] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(893), + [anon_sym_RPAREN] = ACTIONS(893), + [anon_sym_DOLLAR] = ACTIONS(893), + [anon_sym_error] = ACTIONS(893), + [anon_sym_GT] = ACTIONS(893), + [anon_sym_DASH_DASH] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_break] = ACTIONS(893), + [anon_sym_continue] = ACTIONS(893), + [anon_sym_for] = ACTIONS(893), + [anon_sym_in] = ACTIONS(893), + [anon_sym_loop] = ACTIONS(893), + [anon_sym_while] = ACTIONS(893), + [anon_sym_do] = ACTIONS(893), + [anon_sym_if] = ACTIONS(893), + [anon_sym_match] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(893), + [anon_sym_DOT_DOT] = ACTIONS(893), + [anon_sym_try] = ACTIONS(893), + [anon_sym_return] = ACTIONS(893), + [anon_sym_source] = ACTIONS(893), + [anon_sym_source_DASHenv] = ACTIONS(893), + [anon_sym_register] = ACTIONS(893), + [anon_sym_hide] = ACTIONS(893), + [anon_sym_hide_DASHenv] = ACTIONS(893), + [anon_sym_overlay] = ACTIONS(893), + [anon_sym_as] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(893), + [anon_sym_where] = ACTIONS(893), + [anon_sym_STAR_STAR] = ACTIONS(893), + [anon_sym_PLUS_PLUS] = ACTIONS(893), + [anon_sym_SLASH] = ACTIONS(893), + [anon_sym_mod] = ACTIONS(893), + [anon_sym_SLASH_SLASH] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_bit_DASHshl] = ACTIONS(893), + [anon_sym_bit_DASHshr] = ACTIONS(893), + [anon_sym_EQ_EQ] = ACTIONS(893), + [anon_sym_BANG_EQ] = ACTIONS(893), + [anon_sym_LT2] = ACTIONS(893), + [anon_sym_LT_EQ] = ACTIONS(893), + [anon_sym_GT_EQ] = ACTIONS(893), + [anon_sym_not_DASHin] = ACTIONS(893), + [anon_sym_starts_DASHwith] = ACTIONS(893), + [anon_sym_ends_DASHwith] = ACTIONS(893), + [anon_sym_EQ_TILDE] = ACTIONS(893), + [anon_sym_BANG_TILDE] = ACTIONS(893), + [anon_sym_bit_DASHand] = ACTIONS(893), + [anon_sym_bit_DASHxor] = ACTIONS(893), + [anon_sym_bit_DASHor] = ACTIONS(893), + [anon_sym_and] = ACTIONS(893), + [anon_sym_xor] = ACTIONS(893), + [anon_sym_or] = ACTIONS(893), + [anon_sym_not] = ACTIONS(893), + [anon_sym_DOT_DOT2] = ACTIONS(893), + [anon_sym_DOT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ] = ACTIONS(893), + [anon_sym_DOT_DOT_LT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), + [anon_sym_DOT_DOT_LT2] = ACTIONS(895), + [aux_sym__immediate_decimal_token1] = ACTIONS(897), + [aux_sym__immediate_decimal_token2] = ACTIONS(899), + [anon_sym_null] = ACTIONS(893), + [anon_sym_true] = ACTIONS(893), + [anon_sym_false] = ACTIONS(893), + [aux_sym__val_number_decimal_token1] = ACTIONS(893), + [aux_sym__val_number_decimal_token2] = ACTIONS(893), + [anon_sym_DOT2] = ACTIONS(893), + [aux_sym__val_number_decimal_token3] = ACTIONS(893), + [aux_sym__val_number_token1] = ACTIONS(893), + [aux_sym__val_number_token2] = ACTIONS(893), + [aux_sym__val_number_token3] = ACTIONS(893), + [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(893), + [sym_filesize_unit] = ACTIONS(893), + [sym_duration_unit] = ACTIONS(893), + [anon_sym_0o] = ACTIONS(893), + [anon_sym_0x] = ACTIONS(893), + [sym_val_date] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(893), + [sym__str_single_quotes] = ACTIONS(893), + [sym__str_back_ticks] = ACTIONS(893), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(893), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(893), + [anon_sym_CARET] = ACTIONS(893), + [aux_sym_unquoted_token5] = ACTIONS(893), [anon_sym_POUND] = ACTIONS(113), }, - [250] = { - [sym_comment] = STATE(250), - [anon_sym_export] = ACTIONS(917), - [anon_sym_alias] = ACTIONS(917), - [anon_sym_let] = ACTIONS(917), - [anon_sym_let_DASHenv] = ACTIONS(917), - [anon_sym_mut] = ACTIONS(917), - [anon_sym_const] = ACTIONS(917), - [anon_sym_SEMI] = ACTIONS(917), - [sym_cmd_identifier] = ACTIONS(917), - [anon_sym_LF] = ACTIONS(919), - [anon_sym_def] = ACTIONS(917), - [anon_sym_export_DASHenv] = ACTIONS(917), - [anon_sym_extern] = ACTIONS(917), - [anon_sym_module] = ACTIONS(917), - [anon_sym_use] = ACTIONS(917), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_LPAREN] = ACTIONS(917), - [anon_sym_RPAREN] = ACTIONS(917), - [anon_sym_DOLLAR] = ACTIONS(917), - [anon_sym_error] = ACTIONS(917), - [anon_sym_GT] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_break] = ACTIONS(917), - [anon_sym_continue] = ACTIONS(917), - [anon_sym_for] = ACTIONS(917), - [anon_sym_in] = ACTIONS(917), - [anon_sym_loop] = ACTIONS(917), - [anon_sym_while] = ACTIONS(917), - [anon_sym_do] = ACTIONS(917), - [anon_sym_if] = ACTIONS(917), - [anon_sym_match] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(917), - [anon_sym_RBRACE] = ACTIONS(917), - [anon_sym_DOT_DOT] = ACTIONS(917), - [anon_sym_try] = ACTIONS(917), - [anon_sym_return] = ACTIONS(917), - [anon_sym_source] = ACTIONS(917), - [anon_sym_source_DASHenv] = ACTIONS(917), - [anon_sym_register] = ACTIONS(917), - [anon_sym_hide] = ACTIONS(917), - [anon_sym_hide_DASHenv] = ACTIONS(917), - [anon_sym_overlay] = ACTIONS(917), - [anon_sym_as] = ACTIONS(917), - [anon_sym_STAR] = ACTIONS(917), - [anon_sym_where] = ACTIONS(917), - [anon_sym_STAR_STAR] = ACTIONS(917), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_mod] = ACTIONS(917), - [anon_sym_SLASH_SLASH] = ACTIONS(917), - [anon_sym_PLUS] = ACTIONS(917), - [anon_sym_bit_DASHshl] = ACTIONS(917), - [anon_sym_bit_DASHshr] = ACTIONS(917), - [anon_sym_EQ_EQ] = ACTIONS(917), - [anon_sym_BANG_EQ] = ACTIONS(917), - [anon_sym_LT2] = ACTIONS(917), - [anon_sym_LT_EQ] = ACTIONS(917), - [anon_sym_GT_EQ] = ACTIONS(917), - [anon_sym_not_DASHin] = ACTIONS(917), - [anon_sym_starts_DASHwith] = ACTIONS(917), - [anon_sym_ends_DASHwith] = ACTIONS(917), - [anon_sym_EQ_TILDE] = ACTIONS(917), - [anon_sym_BANG_TILDE] = ACTIONS(917), - [anon_sym_bit_DASHand] = ACTIONS(917), - [anon_sym_bit_DASHxor] = ACTIONS(917), - [anon_sym_bit_DASHor] = ACTIONS(917), - [anon_sym_and] = ACTIONS(917), - [anon_sym_xor] = ACTIONS(917), - [anon_sym_or] = ACTIONS(917), - [anon_sym_not] = ACTIONS(917), - [anon_sym_DOT_DOT2] = ACTIONS(917), - [anon_sym_DOT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ] = ACTIONS(917), - [anon_sym_DOT_DOT_LT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(919), - [anon_sym_DOT_DOT_LT2] = ACTIONS(919), - [aux_sym__immediate_decimal_token2] = ACTIONS(921), - [anon_sym_null] = ACTIONS(917), - [anon_sym_true] = ACTIONS(917), - [anon_sym_false] = ACTIONS(917), - [aux_sym__val_number_decimal_token1] = ACTIONS(917), - [aux_sym__val_number_decimal_token2] = ACTIONS(917), - [anon_sym_DOT2] = ACTIONS(917), - [aux_sym__val_number_decimal_token3] = ACTIONS(917), - [aux_sym__val_number_token1] = ACTIONS(917), - [aux_sym__val_number_token2] = ACTIONS(917), - [aux_sym__val_number_token3] = ACTIONS(917), - [aux_sym__val_number_token4] = ACTIONS(917), - [aux_sym__val_number_token5] = ACTIONS(917), - [aux_sym__val_number_token6] = ACTIONS(917), - [anon_sym_0b] = ACTIONS(917), - [sym_filesize_unit] = ACTIONS(917), - [sym_duration_unit] = ACTIONS(917), - [anon_sym_0o] = ACTIONS(917), - [anon_sym_0x] = ACTIONS(917), - [sym_val_date] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(917), - [sym__str_single_quotes] = ACTIONS(917), - [sym__str_back_ticks] = ACTIONS(917), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(917), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(917), - [anon_sym_CARET] = ACTIONS(917), - [aux_sym_unquoted_token5] = ACTIONS(917), + [234] = { + [sym_comment] = STATE(234), + [anon_sym_export] = ACTIONS(893), + [anon_sym_alias] = ACTIONS(893), + [anon_sym_let] = ACTIONS(893), + [anon_sym_let_DASHenv] = ACTIONS(893), + [anon_sym_mut] = ACTIONS(893), + [anon_sym_const] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(893), + [sym_cmd_identifier] = ACTIONS(893), + [anon_sym_LF] = ACTIONS(895), + [anon_sym_def] = ACTIONS(893), + [anon_sym_export_DASHenv] = ACTIONS(893), + [anon_sym_extern] = ACTIONS(893), + [anon_sym_module] = ACTIONS(893), + [anon_sym_use] = ACTIONS(893), + [anon_sym_LBRACK] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(893), + [anon_sym_RPAREN] = ACTIONS(893), + [anon_sym_DOLLAR] = ACTIONS(893), + [anon_sym_error] = ACTIONS(893), + [anon_sym_GT] = ACTIONS(893), + [anon_sym_DASH_DASH] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_break] = ACTIONS(893), + [anon_sym_continue] = ACTIONS(893), + [anon_sym_for] = ACTIONS(893), + [anon_sym_in] = ACTIONS(893), + [anon_sym_loop] = ACTIONS(893), + [anon_sym_while] = ACTIONS(893), + [anon_sym_do] = ACTIONS(893), + [anon_sym_if] = ACTIONS(893), + [anon_sym_match] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(893), + [anon_sym_DOT_DOT] = ACTIONS(893), + [anon_sym_try] = ACTIONS(893), + [anon_sym_return] = ACTIONS(893), + [anon_sym_source] = ACTIONS(893), + [anon_sym_source_DASHenv] = ACTIONS(893), + [anon_sym_register] = ACTIONS(893), + [anon_sym_hide] = ACTIONS(893), + [anon_sym_hide_DASHenv] = ACTIONS(893), + [anon_sym_overlay] = ACTIONS(893), + [anon_sym_as] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(893), + [anon_sym_where] = ACTIONS(893), + [anon_sym_STAR_STAR] = ACTIONS(893), + [anon_sym_PLUS_PLUS] = ACTIONS(893), + [anon_sym_SLASH] = ACTIONS(893), + [anon_sym_mod] = ACTIONS(893), + [anon_sym_SLASH_SLASH] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_bit_DASHshl] = ACTIONS(893), + [anon_sym_bit_DASHshr] = ACTIONS(893), + [anon_sym_EQ_EQ] = ACTIONS(893), + [anon_sym_BANG_EQ] = ACTIONS(893), + [anon_sym_LT2] = ACTIONS(893), + [anon_sym_LT_EQ] = ACTIONS(893), + [anon_sym_GT_EQ] = ACTIONS(893), + [anon_sym_not_DASHin] = ACTIONS(893), + [anon_sym_starts_DASHwith] = ACTIONS(893), + [anon_sym_ends_DASHwith] = ACTIONS(893), + [anon_sym_EQ_TILDE] = ACTIONS(893), + [anon_sym_BANG_TILDE] = ACTIONS(893), + [anon_sym_bit_DASHand] = ACTIONS(893), + [anon_sym_bit_DASHxor] = ACTIONS(893), + [anon_sym_bit_DASHor] = ACTIONS(893), + [anon_sym_and] = ACTIONS(893), + [anon_sym_xor] = ACTIONS(893), + [anon_sym_or] = ACTIONS(893), + [anon_sym_not] = ACTIONS(893), + [anon_sym_DOT_DOT2] = ACTIONS(893), + [anon_sym_DOT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ] = ACTIONS(893), + [anon_sym_DOT_DOT_LT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), + [anon_sym_DOT_DOT_LT2] = ACTIONS(895), + [aux_sym__immediate_decimal_token2] = ACTIONS(899), + [anon_sym_null] = ACTIONS(893), + [anon_sym_true] = ACTIONS(893), + [anon_sym_false] = ACTIONS(893), + [aux_sym__val_number_decimal_token1] = ACTIONS(893), + [aux_sym__val_number_decimal_token2] = ACTIONS(893), + [anon_sym_DOT2] = ACTIONS(893), + [aux_sym__val_number_decimal_token3] = ACTIONS(893), + [aux_sym__val_number_token1] = ACTIONS(893), + [aux_sym__val_number_token2] = ACTIONS(893), + [aux_sym__val_number_token3] = ACTIONS(893), + [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(893), + [sym_filesize_unit] = ACTIONS(893), + [sym_duration_unit] = ACTIONS(893), + [anon_sym_0o] = ACTIONS(893), + [anon_sym_0x] = ACTIONS(893), + [sym_val_date] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(893), + [sym__str_single_quotes] = ACTIONS(893), + [sym__str_back_ticks] = ACTIONS(893), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(893), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(893), + [anon_sym_CARET] = ACTIONS(893), + [aux_sym_unquoted_token5] = ACTIONS(893), [anon_sym_POUND] = ACTIONS(113), }, - [251] = { - [sym_comment] = STATE(251), - [anon_sym_export] = ACTIONS(909), - [anon_sym_alias] = ACTIONS(909), - [anon_sym_let] = ACTIONS(909), - [anon_sym_let_DASHenv] = ACTIONS(909), - [anon_sym_mut] = ACTIONS(909), - [anon_sym_const] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(909), - [sym_cmd_identifier] = ACTIONS(909), - [anon_sym_LF] = ACTIONS(911), - [anon_sym_def] = ACTIONS(909), - [anon_sym_export_DASHenv] = ACTIONS(909), - [anon_sym_extern] = ACTIONS(909), - [anon_sym_module] = ACTIONS(909), - [anon_sym_use] = ACTIONS(909), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_RPAREN] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_error] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_break] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_for] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_loop] = ACTIONS(909), - [anon_sym_while] = ACTIONS(909), - [anon_sym_do] = ACTIONS(909), - [anon_sym_if] = ACTIONS(909), - [anon_sym_match] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_RBRACE] = ACTIONS(909), - [anon_sym_DOT_DOT] = ACTIONS(909), - [anon_sym_try] = ACTIONS(909), - [anon_sym_return] = ACTIONS(909), - [anon_sym_source] = ACTIONS(909), - [anon_sym_source_DASHenv] = ACTIONS(909), - [anon_sym_register] = ACTIONS(909), - [anon_sym_hide] = ACTIONS(909), - [anon_sym_hide_DASHenv] = ACTIONS(909), - [anon_sym_overlay] = ACTIONS(909), - [anon_sym_as] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_where] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(909), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(909), - [anon_sym_SLASH_SLASH] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(909), - [anon_sym_bit_DASHshr] = ACTIONS(909), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_not_DASHin] = ACTIONS(909), - [anon_sym_starts_DASHwith] = ACTIONS(909), - [anon_sym_ends_DASHwith] = ACTIONS(909), - [anon_sym_EQ_TILDE] = ACTIONS(909), - [anon_sym_BANG_TILDE] = ACTIONS(909), - [anon_sym_bit_DASHand] = ACTIONS(909), - [anon_sym_bit_DASHxor] = ACTIONS(909), - [anon_sym_bit_DASHor] = ACTIONS(909), - [anon_sym_and] = ACTIONS(909), - [anon_sym_xor] = ACTIONS(909), - [anon_sym_or] = ACTIONS(909), - [anon_sym_not] = ACTIONS(909), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [aux_sym__immediate_decimal_token2] = ACTIONS(915), - [anon_sym_null] = ACTIONS(909), - [anon_sym_true] = ACTIONS(909), - [anon_sym_false] = ACTIONS(909), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(909), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(909), - [aux_sym__val_number_token1] = ACTIONS(909), - [aux_sym__val_number_token2] = ACTIONS(909), - [aux_sym__val_number_token3] = ACTIONS(909), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(909), - [aux_sym__val_number_token6] = ACTIONS(909), - [anon_sym_0b] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(909), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym__str_single_quotes] = ACTIONS(909), - [sym__str_back_ticks] = ACTIONS(909), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), - [anon_sym_CARET] = ACTIONS(909), - [aux_sym_unquoted_token5] = ACTIONS(909), + [235] = { + [sym_comment] = STATE(235), + [anon_sym_export] = ACTIONS(901), + [anon_sym_alias] = ACTIONS(901), + [anon_sym_let] = ACTIONS(901), + [anon_sym_let_DASHenv] = ACTIONS(901), + [anon_sym_mut] = ACTIONS(901), + [anon_sym_const] = ACTIONS(901), + [anon_sym_SEMI] = ACTIONS(901), + [sym_cmd_identifier] = ACTIONS(901), + [anon_sym_LF] = ACTIONS(903), + [anon_sym_def] = ACTIONS(901), + [anon_sym_export_DASHenv] = ACTIONS(901), + [anon_sym_extern] = ACTIONS(901), + [anon_sym_module] = ACTIONS(901), + [anon_sym_use] = ACTIONS(901), + [anon_sym_LBRACK] = ACTIONS(901), + [anon_sym_LPAREN] = ACTIONS(901), + [anon_sym_RPAREN] = ACTIONS(901), + [anon_sym_DOLLAR] = ACTIONS(901), + [anon_sym_error] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_DASH_DASH] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_break] = ACTIONS(901), + [anon_sym_continue] = ACTIONS(901), + [anon_sym_for] = ACTIONS(901), + [anon_sym_in] = ACTIONS(901), + [anon_sym_loop] = ACTIONS(901), + [anon_sym_while] = ACTIONS(901), + [anon_sym_do] = ACTIONS(901), + [anon_sym_if] = ACTIONS(901), + [anon_sym_match] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(901), + [anon_sym_RBRACE] = ACTIONS(901), + [anon_sym_DOT_DOT] = ACTIONS(901), + [anon_sym_try] = ACTIONS(901), + [anon_sym_return] = ACTIONS(901), + [anon_sym_source] = ACTIONS(901), + [anon_sym_source_DASHenv] = ACTIONS(901), + [anon_sym_register] = ACTIONS(901), + [anon_sym_hide] = ACTIONS(901), + [anon_sym_hide_DASHenv] = ACTIONS(901), + [anon_sym_overlay] = ACTIONS(901), + [anon_sym_as] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_where] = ACTIONS(901), + [anon_sym_STAR_STAR] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(901), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_mod] = ACTIONS(901), + [anon_sym_SLASH_SLASH] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_bit_DASHshl] = ACTIONS(901), + [anon_sym_bit_DASHshr] = ACTIONS(901), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT2] = ACTIONS(901), + [anon_sym_LT_EQ] = ACTIONS(901), + [anon_sym_GT_EQ] = ACTIONS(901), + [anon_sym_not_DASHin] = ACTIONS(901), + [anon_sym_starts_DASHwith] = ACTIONS(901), + [anon_sym_ends_DASHwith] = ACTIONS(901), + [anon_sym_EQ_TILDE] = ACTIONS(901), + [anon_sym_BANG_TILDE] = ACTIONS(901), + [anon_sym_bit_DASHand] = ACTIONS(901), + [anon_sym_bit_DASHxor] = ACTIONS(901), + [anon_sym_bit_DASHor] = ACTIONS(901), + [anon_sym_and] = ACTIONS(901), + [anon_sym_xor] = ACTIONS(901), + [anon_sym_or] = ACTIONS(901), + [anon_sym_not] = ACTIONS(901), + [anon_sym_DOT_DOT2] = ACTIONS(901), + [anon_sym_DOT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ] = ACTIONS(901), + [anon_sym_DOT_DOT_LT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(903), + [anon_sym_DOT_DOT_LT2] = ACTIONS(903), + [aux_sym__immediate_decimal_token2] = ACTIONS(905), + [anon_sym_null] = ACTIONS(901), + [anon_sym_true] = ACTIONS(901), + [anon_sym_false] = ACTIONS(901), + [aux_sym__val_number_decimal_token1] = ACTIONS(901), + [aux_sym__val_number_decimal_token2] = ACTIONS(901), + [anon_sym_DOT2] = ACTIONS(901), + [aux_sym__val_number_decimal_token3] = ACTIONS(901), + [aux_sym__val_number_token1] = ACTIONS(901), + [aux_sym__val_number_token2] = ACTIONS(901), + [aux_sym__val_number_token3] = ACTIONS(901), + [aux_sym__val_number_token4] = ACTIONS(901), + [aux_sym__val_number_token5] = ACTIONS(901), + [aux_sym__val_number_token6] = ACTIONS(901), + [anon_sym_0b] = ACTIONS(901), + [sym_filesize_unit] = ACTIONS(901), + [sym_duration_unit] = ACTIONS(901), + [anon_sym_0o] = ACTIONS(901), + [anon_sym_0x] = ACTIONS(901), + [sym_val_date] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [sym__str_single_quotes] = ACTIONS(901), + [sym__str_back_ticks] = ACTIONS(901), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(901), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(901), + [anon_sym_CARET] = ACTIONS(901), + [aux_sym_unquoted_token5] = ACTIONS(901), [anon_sym_POUND] = ACTIONS(113), }, - [252] = { - [sym_comment] = STATE(252), - [anon_sym_export] = ACTIONS(923), - [anon_sym_alias] = ACTIONS(923), - [anon_sym_let] = ACTIONS(923), - [anon_sym_let_DASHenv] = ACTIONS(923), - [anon_sym_mut] = ACTIONS(923), - [anon_sym_const] = ACTIONS(923), - [anon_sym_SEMI] = ACTIONS(923), - [sym_cmd_identifier] = ACTIONS(923), - [anon_sym_LF] = ACTIONS(925), - [anon_sym_def] = ACTIONS(923), - [anon_sym_export_DASHenv] = ACTIONS(923), - [anon_sym_extern] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_use] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_RPAREN] = ACTIONS(923), - [anon_sym_DOLLAR] = ACTIONS(923), - [anon_sym_error] = ACTIONS(923), - [anon_sym_GT] = ACTIONS(923), - [anon_sym_DASH_DASH] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_break] = ACTIONS(923), - [anon_sym_continue] = ACTIONS(923), - [anon_sym_for] = ACTIONS(923), - [anon_sym_in] = ACTIONS(923), - [anon_sym_loop] = ACTIONS(923), - [anon_sym_while] = ACTIONS(923), - [anon_sym_do] = ACTIONS(923), - [anon_sym_if] = ACTIONS(923), - [anon_sym_match] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(923), - [anon_sym_RBRACE] = ACTIONS(923), - [anon_sym_DOT_DOT] = ACTIONS(923), - [anon_sym_try] = ACTIONS(923), - [anon_sym_return] = ACTIONS(923), - [anon_sym_source] = ACTIONS(923), - [anon_sym_source_DASHenv] = ACTIONS(923), - [anon_sym_register] = ACTIONS(923), - [anon_sym_hide] = ACTIONS(923), - [anon_sym_hide_DASHenv] = ACTIONS(923), - [anon_sym_overlay] = ACTIONS(923), - [anon_sym_as] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_where] = ACTIONS(923), - [anon_sym_STAR_STAR] = ACTIONS(923), - [anon_sym_PLUS_PLUS] = ACTIONS(923), - [anon_sym_SLASH] = ACTIONS(923), - [anon_sym_mod] = ACTIONS(923), - [anon_sym_SLASH_SLASH] = ACTIONS(923), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_bit_DASHshl] = ACTIONS(923), - [anon_sym_bit_DASHshr] = ACTIONS(923), - [anon_sym_EQ_EQ] = ACTIONS(923), - [anon_sym_BANG_EQ] = ACTIONS(923), - [anon_sym_LT2] = ACTIONS(923), - [anon_sym_LT_EQ] = ACTIONS(923), - [anon_sym_GT_EQ] = ACTIONS(923), - [anon_sym_not_DASHin] = ACTIONS(923), - [anon_sym_starts_DASHwith] = ACTIONS(923), - [anon_sym_ends_DASHwith] = ACTIONS(923), - [anon_sym_EQ_TILDE] = ACTIONS(923), - [anon_sym_BANG_TILDE] = ACTIONS(923), - [anon_sym_bit_DASHand] = ACTIONS(923), - [anon_sym_bit_DASHxor] = ACTIONS(923), - [anon_sym_bit_DASHor] = ACTIONS(923), - [anon_sym_and] = ACTIONS(923), - [anon_sym_xor] = ACTIONS(923), - [anon_sym_or] = ACTIONS(923), - [anon_sym_not] = ACTIONS(923), - [anon_sym_DOT_DOT2] = ACTIONS(923), - [anon_sym_DOT] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ] = ACTIONS(923), - [anon_sym_DOT_DOT_LT] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(925), - [anon_sym_DOT_DOT_LT2] = ACTIONS(925), - [aux_sym__immediate_decimal_token2] = ACTIONS(927), - [anon_sym_null] = ACTIONS(923), - [anon_sym_true] = ACTIONS(923), - [anon_sym_false] = ACTIONS(923), - [aux_sym__val_number_decimal_token1] = ACTIONS(923), - [aux_sym__val_number_decimal_token2] = ACTIONS(923), - [anon_sym_DOT2] = ACTIONS(923), - [aux_sym__val_number_decimal_token3] = ACTIONS(923), - [aux_sym__val_number_token1] = ACTIONS(923), - [aux_sym__val_number_token2] = ACTIONS(923), - [aux_sym__val_number_token3] = ACTIONS(923), - [aux_sym__val_number_token4] = ACTIONS(923), - [aux_sym__val_number_token5] = ACTIONS(923), - [aux_sym__val_number_token6] = ACTIONS(923), - [anon_sym_0b] = ACTIONS(923), - [sym_filesize_unit] = ACTIONS(923), - [sym_duration_unit] = ACTIONS(923), - [anon_sym_0o] = ACTIONS(923), - [anon_sym_0x] = ACTIONS(923), - [sym_val_date] = ACTIONS(923), - [anon_sym_DQUOTE] = ACTIONS(923), - [sym__str_single_quotes] = ACTIONS(923), - [sym__str_back_ticks] = ACTIONS(923), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(923), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), - [anon_sym_CARET] = ACTIONS(923), - [aux_sym_unquoted_token5] = ACTIONS(923), + [236] = { + [sym_comment] = STATE(236), + [ts_builtin_sym_end] = ACTIONS(895), + [anon_sym_export] = ACTIONS(893), + [anon_sym_alias] = ACTIONS(893), + [anon_sym_let] = ACTIONS(893), + [anon_sym_let_DASHenv] = ACTIONS(893), + [anon_sym_mut] = ACTIONS(893), + [anon_sym_const] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(893), + [sym_cmd_identifier] = ACTIONS(893), + [anon_sym_LF] = ACTIONS(895), + [anon_sym_def] = ACTIONS(893), + [anon_sym_export_DASHenv] = ACTIONS(893), + [anon_sym_extern] = ACTIONS(893), + [anon_sym_module] = ACTIONS(893), + [anon_sym_use] = ACTIONS(893), + [anon_sym_LBRACK] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(893), + [anon_sym_DOLLAR] = ACTIONS(893), + [anon_sym_error] = ACTIONS(893), + [anon_sym_GT] = ACTIONS(893), + [anon_sym_DASH_DASH] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_break] = ACTIONS(893), + [anon_sym_continue] = ACTIONS(893), + [anon_sym_for] = ACTIONS(893), + [anon_sym_in] = ACTIONS(893), + [anon_sym_loop] = ACTIONS(893), + [anon_sym_while] = ACTIONS(893), + [anon_sym_do] = ACTIONS(893), + [anon_sym_if] = ACTIONS(893), + [anon_sym_match] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_DOT_DOT] = ACTIONS(893), + [anon_sym_try] = ACTIONS(893), + [anon_sym_return] = ACTIONS(893), + [anon_sym_source] = ACTIONS(893), + [anon_sym_source_DASHenv] = ACTIONS(893), + [anon_sym_register] = ACTIONS(893), + [anon_sym_hide] = ACTIONS(893), + [anon_sym_hide_DASHenv] = ACTIONS(893), + [anon_sym_overlay] = ACTIONS(893), + [anon_sym_as] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(893), + [anon_sym_where] = ACTIONS(893), + [anon_sym_STAR_STAR] = ACTIONS(893), + [anon_sym_PLUS_PLUS] = ACTIONS(893), + [anon_sym_SLASH] = ACTIONS(893), + [anon_sym_mod] = ACTIONS(893), + [anon_sym_SLASH_SLASH] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_bit_DASHshl] = ACTIONS(893), + [anon_sym_bit_DASHshr] = ACTIONS(893), + [anon_sym_EQ_EQ] = ACTIONS(893), + [anon_sym_BANG_EQ] = ACTIONS(893), + [anon_sym_LT2] = ACTIONS(893), + [anon_sym_LT_EQ] = ACTIONS(893), + [anon_sym_GT_EQ] = ACTIONS(893), + [anon_sym_not_DASHin] = ACTIONS(893), + [anon_sym_starts_DASHwith] = ACTIONS(893), + [anon_sym_ends_DASHwith] = ACTIONS(893), + [anon_sym_EQ_TILDE] = ACTIONS(893), + [anon_sym_BANG_TILDE] = ACTIONS(893), + [anon_sym_bit_DASHand] = ACTIONS(893), + [anon_sym_bit_DASHxor] = ACTIONS(893), + [anon_sym_bit_DASHor] = ACTIONS(893), + [anon_sym_and] = ACTIONS(893), + [anon_sym_xor] = ACTIONS(893), + [anon_sym_or] = ACTIONS(893), + [anon_sym_not] = ACTIONS(893), + [anon_sym_DOT_DOT2] = ACTIONS(893), + [anon_sym_DOT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ] = ACTIONS(893), + [anon_sym_DOT_DOT_LT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), + [anon_sym_DOT_DOT_LT2] = ACTIONS(895), + [aux_sym__immediate_decimal_token1] = ACTIONS(907), + [aux_sym__immediate_decimal_token2] = ACTIONS(909), + [anon_sym_null] = ACTIONS(893), + [anon_sym_true] = ACTIONS(893), + [anon_sym_false] = ACTIONS(893), + [aux_sym__val_number_decimal_token1] = ACTIONS(893), + [aux_sym__val_number_decimal_token2] = ACTIONS(893), + [anon_sym_DOT2] = ACTIONS(893), + [aux_sym__val_number_decimal_token3] = ACTIONS(893), + [aux_sym__val_number_token1] = ACTIONS(893), + [aux_sym__val_number_token2] = ACTIONS(893), + [aux_sym__val_number_token3] = ACTIONS(893), + [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(893), + [sym_filesize_unit] = ACTIONS(893), + [sym_duration_unit] = ACTIONS(893), + [anon_sym_0o] = ACTIONS(893), + [anon_sym_0x] = ACTIONS(893), + [sym_val_date] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(893), + [sym__str_single_quotes] = ACTIONS(893), + [sym__str_back_ticks] = ACTIONS(893), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(893), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(893), + [anon_sym_CARET] = ACTIONS(893), + [aux_sym_unquoted_token5] = ACTIONS(893), [anon_sym_POUND] = ACTIONS(113), }, - [253] = { - [sym_comment] = STATE(253), - [anon_sym_export] = ACTIONS(923), - [anon_sym_alias] = ACTIONS(923), - [anon_sym_let] = ACTIONS(923), - [anon_sym_let_DASHenv] = ACTIONS(923), - [anon_sym_mut] = ACTIONS(923), - [anon_sym_const] = ACTIONS(923), - [anon_sym_SEMI] = ACTIONS(923), - [sym_cmd_identifier] = ACTIONS(923), - [anon_sym_LF] = ACTIONS(925), - [anon_sym_def] = ACTIONS(923), - [anon_sym_export_DASHenv] = ACTIONS(923), - [anon_sym_extern] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_use] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_RPAREN] = ACTIONS(923), - [anon_sym_DOLLAR] = ACTIONS(923), - [anon_sym_error] = ACTIONS(923), - [anon_sym_GT] = ACTIONS(923), - [anon_sym_DASH_DASH] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_break] = ACTIONS(923), - [anon_sym_continue] = ACTIONS(923), - [anon_sym_for] = ACTIONS(923), - [anon_sym_in] = ACTIONS(923), - [anon_sym_loop] = ACTIONS(923), - [anon_sym_while] = ACTIONS(923), - [anon_sym_do] = ACTIONS(923), - [anon_sym_if] = ACTIONS(923), - [anon_sym_match] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(923), - [anon_sym_RBRACE] = ACTIONS(923), - [anon_sym_DOT_DOT] = ACTIONS(923), - [anon_sym_try] = ACTIONS(923), - [anon_sym_return] = ACTIONS(923), - [anon_sym_source] = ACTIONS(923), - [anon_sym_source_DASHenv] = ACTIONS(923), - [anon_sym_register] = ACTIONS(923), - [anon_sym_hide] = ACTIONS(923), - [anon_sym_hide_DASHenv] = ACTIONS(923), - [anon_sym_overlay] = ACTIONS(923), - [anon_sym_as] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_where] = ACTIONS(923), - [anon_sym_STAR_STAR] = ACTIONS(923), - [anon_sym_PLUS_PLUS] = ACTIONS(923), - [anon_sym_SLASH] = ACTIONS(923), - [anon_sym_mod] = ACTIONS(923), - [anon_sym_SLASH_SLASH] = ACTIONS(923), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_bit_DASHshl] = ACTIONS(923), - [anon_sym_bit_DASHshr] = ACTIONS(923), - [anon_sym_EQ_EQ] = ACTIONS(923), - [anon_sym_BANG_EQ] = ACTIONS(923), - [anon_sym_LT2] = ACTIONS(923), - [anon_sym_LT_EQ] = ACTIONS(923), - [anon_sym_GT_EQ] = ACTIONS(923), - [anon_sym_not_DASHin] = ACTIONS(923), - [anon_sym_starts_DASHwith] = ACTIONS(923), - [anon_sym_ends_DASHwith] = ACTIONS(923), - [anon_sym_EQ_TILDE] = ACTIONS(923), - [anon_sym_BANG_TILDE] = ACTIONS(923), - [anon_sym_bit_DASHand] = ACTIONS(923), - [anon_sym_bit_DASHxor] = ACTIONS(923), - [anon_sym_bit_DASHor] = ACTIONS(923), - [anon_sym_and] = ACTIONS(923), - [anon_sym_xor] = ACTIONS(923), - [anon_sym_or] = ACTIONS(923), - [anon_sym_not] = ACTIONS(923), - [anon_sym_DOT_DOT2] = ACTIONS(923), - [anon_sym_DOT] = ACTIONS(929), - [anon_sym_DOT_DOT_EQ] = ACTIONS(923), - [anon_sym_DOT_DOT_LT] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(925), - [anon_sym_DOT_DOT_LT2] = ACTIONS(925), - [aux_sym__immediate_decimal_token2] = ACTIONS(927), - [anon_sym_null] = ACTIONS(923), - [anon_sym_true] = ACTIONS(923), - [anon_sym_false] = ACTIONS(923), - [aux_sym__val_number_decimal_token1] = ACTIONS(923), - [aux_sym__val_number_decimal_token2] = ACTIONS(923), - [anon_sym_DOT2] = ACTIONS(923), - [aux_sym__val_number_decimal_token3] = ACTIONS(923), - [aux_sym__val_number_token1] = ACTIONS(923), - [aux_sym__val_number_token2] = ACTIONS(923), - [aux_sym__val_number_token3] = ACTIONS(923), - [aux_sym__val_number_token4] = ACTIONS(923), - [aux_sym__val_number_token5] = ACTIONS(923), - [aux_sym__val_number_token6] = ACTIONS(923), - [anon_sym_0b] = ACTIONS(923), - [sym_filesize_unit] = ACTIONS(923), - [sym_duration_unit] = ACTIONS(923), - [anon_sym_0o] = ACTIONS(923), - [anon_sym_0x] = ACTIONS(923), - [sym_val_date] = ACTIONS(923), - [anon_sym_DQUOTE] = ACTIONS(923), - [sym__str_single_quotes] = ACTIONS(923), - [sym__str_back_ticks] = ACTIONS(923), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(923), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), - [anon_sym_CARET] = ACTIONS(923), - [aux_sym_unquoted_token5] = ACTIONS(923), + [237] = { + [sym_comment] = STATE(237), + [anon_sym_export] = ACTIONS(911), + [anon_sym_alias] = ACTIONS(911), + [anon_sym_let] = ACTIONS(911), + [anon_sym_let_DASHenv] = ACTIONS(911), + [anon_sym_mut] = ACTIONS(911), + [anon_sym_const] = ACTIONS(911), + [anon_sym_SEMI] = ACTIONS(911), + [sym_cmd_identifier] = ACTIONS(911), + [anon_sym_LF] = ACTIONS(913), + [anon_sym_def] = ACTIONS(911), + [anon_sym_export_DASHenv] = ACTIONS(911), + [anon_sym_extern] = ACTIONS(911), + [anon_sym_module] = ACTIONS(911), + [anon_sym_use] = ACTIONS(911), + [anon_sym_LBRACK] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_RPAREN] = ACTIONS(911), + [anon_sym_DOLLAR] = ACTIONS(911), + [anon_sym_error] = ACTIONS(911), + [anon_sym_GT] = ACTIONS(911), + [anon_sym_DASH_DASH] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_break] = ACTIONS(911), + [anon_sym_continue] = ACTIONS(911), + [anon_sym_for] = ACTIONS(911), + [anon_sym_in] = ACTIONS(911), + [anon_sym_loop] = ACTIONS(911), + [anon_sym_while] = ACTIONS(911), + [anon_sym_do] = ACTIONS(911), + [anon_sym_if] = ACTIONS(911), + [anon_sym_match] = ACTIONS(911), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_RBRACE] = ACTIONS(911), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_try] = ACTIONS(911), + [anon_sym_return] = ACTIONS(911), + [anon_sym_source] = ACTIONS(911), + [anon_sym_source_DASHenv] = ACTIONS(911), + [anon_sym_register] = ACTIONS(911), + [anon_sym_hide] = ACTIONS(911), + [anon_sym_hide_DASHenv] = ACTIONS(911), + [anon_sym_overlay] = ACTIONS(911), + [anon_sym_as] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(911), + [anon_sym_where] = ACTIONS(911), + [anon_sym_STAR_STAR] = ACTIONS(911), + [anon_sym_PLUS_PLUS] = ACTIONS(911), + [anon_sym_SLASH] = ACTIONS(911), + [anon_sym_mod] = ACTIONS(911), + [anon_sym_SLASH_SLASH] = ACTIONS(911), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_bit_DASHshl] = ACTIONS(911), + [anon_sym_bit_DASHshr] = ACTIONS(911), + [anon_sym_EQ_EQ] = ACTIONS(911), + [anon_sym_BANG_EQ] = ACTIONS(911), + [anon_sym_LT2] = ACTIONS(911), + [anon_sym_LT_EQ] = ACTIONS(911), + [anon_sym_GT_EQ] = ACTIONS(911), + [anon_sym_not_DASHin] = ACTIONS(911), + [anon_sym_starts_DASHwith] = ACTIONS(911), + [anon_sym_ends_DASHwith] = ACTIONS(911), + [anon_sym_EQ_TILDE] = ACTIONS(911), + [anon_sym_BANG_TILDE] = ACTIONS(911), + [anon_sym_bit_DASHand] = ACTIONS(911), + [anon_sym_bit_DASHxor] = ACTIONS(911), + [anon_sym_bit_DASHor] = ACTIONS(911), + [anon_sym_and] = ACTIONS(911), + [anon_sym_xor] = ACTIONS(911), + [anon_sym_or] = ACTIONS(911), + [anon_sym_not] = ACTIONS(911), + [anon_sym_DOT_DOT2] = ACTIONS(911), + [anon_sym_DOT] = ACTIONS(911), + [anon_sym_DOT_DOT_EQ] = ACTIONS(911), + [anon_sym_DOT_DOT_LT] = ACTIONS(911), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(913), + [anon_sym_DOT_DOT_LT2] = ACTIONS(913), + [aux_sym__immediate_decimal_token2] = ACTIONS(915), + [anon_sym_null] = ACTIONS(911), + [anon_sym_true] = ACTIONS(911), + [anon_sym_false] = ACTIONS(911), + [aux_sym__val_number_decimal_token1] = ACTIONS(911), + [aux_sym__val_number_decimal_token2] = ACTIONS(911), + [anon_sym_DOT2] = ACTIONS(911), + [aux_sym__val_number_decimal_token3] = ACTIONS(911), + [aux_sym__val_number_token1] = ACTIONS(911), + [aux_sym__val_number_token2] = ACTIONS(911), + [aux_sym__val_number_token3] = ACTIONS(911), + [aux_sym__val_number_token4] = ACTIONS(911), + [aux_sym__val_number_token5] = ACTIONS(911), + [aux_sym__val_number_token6] = ACTIONS(911), + [anon_sym_0b] = ACTIONS(911), + [sym_filesize_unit] = ACTIONS(911), + [sym_duration_unit] = ACTIONS(911), + [anon_sym_0o] = ACTIONS(911), + [anon_sym_0x] = ACTIONS(911), + [sym_val_date] = ACTIONS(911), + [anon_sym_DQUOTE] = ACTIONS(911), + [sym__str_single_quotes] = ACTIONS(911), + [sym__str_back_ticks] = ACTIONS(911), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(911), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(911), + [anon_sym_CARET] = ACTIONS(911), + [aux_sym_unquoted_token5] = ACTIONS(911), [anon_sym_POUND] = ACTIONS(113), }, - [254] = { - [sym_comment] = STATE(254), - [ts_builtin_sym_end] = ACTIONS(911), - [anon_sym_export] = ACTIONS(909), - [anon_sym_alias] = ACTIONS(909), - [anon_sym_let] = ACTIONS(909), - [anon_sym_let_DASHenv] = ACTIONS(909), - [anon_sym_mut] = ACTIONS(909), - [anon_sym_const] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(909), - [sym_cmd_identifier] = ACTIONS(909), - [anon_sym_LF] = ACTIONS(911), - [anon_sym_def] = ACTIONS(909), - [anon_sym_export_DASHenv] = ACTIONS(909), - [anon_sym_extern] = ACTIONS(909), - [anon_sym_module] = ACTIONS(909), - [anon_sym_use] = ACTIONS(909), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_error] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_break] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_for] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_loop] = ACTIONS(909), - [anon_sym_while] = ACTIONS(909), - [anon_sym_do] = ACTIONS(909), - [anon_sym_if] = ACTIONS(909), - [anon_sym_match] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_DOT_DOT] = ACTIONS(909), - [anon_sym_try] = ACTIONS(909), - [anon_sym_return] = ACTIONS(909), - [anon_sym_source] = ACTIONS(909), - [anon_sym_source_DASHenv] = ACTIONS(909), - [anon_sym_register] = ACTIONS(909), - [anon_sym_hide] = ACTIONS(909), - [anon_sym_hide_DASHenv] = ACTIONS(909), - [anon_sym_overlay] = ACTIONS(909), - [anon_sym_as] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_where] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(909), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(909), - [anon_sym_SLASH_SLASH] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(909), - [anon_sym_bit_DASHshr] = ACTIONS(909), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_not_DASHin] = ACTIONS(909), - [anon_sym_starts_DASHwith] = ACTIONS(909), - [anon_sym_ends_DASHwith] = ACTIONS(909), - [anon_sym_EQ_TILDE] = ACTIONS(909), - [anon_sym_BANG_TILDE] = ACTIONS(909), - [anon_sym_bit_DASHand] = ACTIONS(909), - [anon_sym_bit_DASHxor] = ACTIONS(909), - [anon_sym_bit_DASHor] = ACTIONS(909), - [anon_sym_and] = ACTIONS(909), - [anon_sym_xor] = ACTIONS(909), - [anon_sym_or] = ACTIONS(909), - [anon_sym_not] = ACTIONS(909), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [aux_sym__immediate_decimal_token1] = ACTIONS(932), - [aux_sym__immediate_decimal_token2] = ACTIONS(934), - [anon_sym_null] = ACTIONS(909), - [anon_sym_true] = ACTIONS(909), - [anon_sym_false] = ACTIONS(909), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(909), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(909), - [aux_sym__val_number_token1] = ACTIONS(909), - [aux_sym__val_number_token2] = ACTIONS(909), - [aux_sym__val_number_token3] = ACTIONS(909), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(909), - [aux_sym__val_number_token6] = ACTIONS(909), - [anon_sym_0b] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(909), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym__str_single_quotes] = ACTIONS(909), - [sym__str_back_ticks] = ACTIONS(909), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), - [anon_sym_CARET] = ACTIONS(909), - [aux_sym_unquoted_token5] = ACTIONS(909), + [238] = { + [sym_comment] = STATE(238), + [anon_sym_export] = ACTIONS(911), + [anon_sym_alias] = ACTIONS(911), + [anon_sym_let] = ACTIONS(911), + [anon_sym_let_DASHenv] = ACTIONS(911), + [anon_sym_mut] = ACTIONS(911), + [anon_sym_const] = ACTIONS(911), + [anon_sym_SEMI] = ACTIONS(911), + [sym_cmd_identifier] = ACTIONS(911), + [anon_sym_LF] = ACTIONS(913), + [anon_sym_def] = ACTIONS(911), + [anon_sym_export_DASHenv] = ACTIONS(911), + [anon_sym_extern] = ACTIONS(911), + [anon_sym_module] = ACTIONS(911), + [anon_sym_use] = ACTIONS(911), + [anon_sym_LBRACK] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_RPAREN] = ACTIONS(911), + [anon_sym_DOLLAR] = ACTIONS(911), + [anon_sym_error] = ACTIONS(911), + [anon_sym_GT] = ACTIONS(911), + [anon_sym_DASH_DASH] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_break] = ACTIONS(911), + [anon_sym_continue] = ACTIONS(911), + [anon_sym_for] = ACTIONS(911), + [anon_sym_in] = ACTIONS(911), + [anon_sym_loop] = ACTIONS(911), + [anon_sym_while] = ACTIONS(911), + [anon_sym_do] = ACTIONS(911), + [anon_sym_if] = ACTIONS(911), + [anon_sym_match] = ACTIONS(911), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_RBRACE] = ACTIONS(911), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_try] = ACTIONS(911), + [anon_sym_return] = ACTIONS(911), + [anon_sym_source] = ACTIONS(911), + [anon_sym_source_DASHenv] = ACTIONS(911), + [anon_sym_register] = ACTIONS(911), + [anon_sym_hide] = ACTIONS(911), + [anon_sym_hide_DASHenv] = ACTIONS(911), + [anon_sym_overlay] = ACTIONS(911), + [anon_sym_as] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(911), + [anon_sym_where] = ACTIONS(911), + [anon_sym_STAR_STAR] = ACTIONS(911), + [anon_sym_PLUS_PLUS] = ACTIONS(911), + [anon_sym_SLASH] = ACTIONS(911), + [anon_sym_mod] = ACTIONS(911), + [anon_sym_SLASH_SLASH] = ACTIONS(911), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_bit_DASHshl] = ACTIONS(911), + [anon_sym_bit_DASHshr] = ACTIONS(911), + [anon_sym_EQ_EQ] = ACTIONS(911), + [anon_sym_BANG_EQ] = ACTIONS(911), + [anon_sym_LT2] = ACTIONS(911), + [anon_sym_LT_EQ] = ACTIONS(911), + [anon_sym_GT_EQ] = ACTIONS(911), + [anon_sym_not_DASHin] = ACTIONS(911), + [anon_sym_starts_DASHwith] = ACTIONS(911), + [anon_sym_ends_DASHwith] = ACTIONS(911), + [anon_sym_EQ_TILDE] = ACTIONS(911), + [anon_sym_BANG_TILDE] = ACTIONS(911), + [anon_sym_bit_DASHand] = ACTIONS(911), + [anon_sym_bit_DASHxor] = ACTIONS(911), + [anon_sym_bit_DASHor] = ACTIONS(911), + [anon_sym_and] = ACTIONS(911), + [anon_sym_xor] = ACTIONS(911), + [anon_sym_or] = ACTIONS(911), + [anon_sym_not] = ACTIONS(911), + [anon_sym_DOT_DOT2] = ACTIONS(911), + [anon_sym_DOT] = ACTIONS(917), + [anon_sym_DOT_DOT_EQ] = ACTIONS(911), + [anon_sym_DOT_DOT_LT] = ACTIONS(911), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(913), + [anon_sym_DOT_DOT_LT2] = ACTIONS(913), + [aux_sym__immediate_decimal_token2] = ACTIONS(915), + [anon_sym_null] = ACTIONS(911), + [anon_sym_true] = ACTIONS(911), + [anon_sym_false] = ACTIONS(911), + [aux_sym__val_number_decimal_token1] = ACTIONS(911), + [aux_sym__val_number_decimal_token2] = ACTIONS(911), + [anon_sym_DOT2] = ACTIONS(911), + [aux_sym__val_number_decimal_token3] = ACTIONS(911), + [aux_sym__val_number_token1] = ACTIONS(911), + [aux_sym__val_number_token2] = ACTIONS(911), + [aux_sym__val_number_token3] = ACTIONS(911), + [aux_sym__val_number_token4] = ACTIONS(911), + [aux_sym__val_number_token5] = ACTIONS(911), + [aux_sym__val_number_token6] = ACTIONS(911), + [anon_sym_0b] = ACTIONS(911), + [sym_filesize_unit] = ACTIONS(911), + [sym_duration_unit] = ACTIONS(911), + [anon_sym_0o] = ACTIONS(911), + [anon_sym_0x] = ACTIONS(911), + [sym_val_date] = ACTIONS(911), + [anon_sym_DQUOTE] = ACTIONS(911), + [sym__str_single_quotes] = ACTIONS(911), + [sym__str_back_ticks] = ACTIONS(911), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(911), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(911), + [anon_sym_CARET] = ACTIONS(911), + [aux_sym_unquoted_token5] = ACTIONS(911), [anon_sym_POUND] = ACTIONS(113), }, - [255] = { - [sym_comment] = STATE(255), - [ts_builtin_sym_end] = ACTIONS(911), - [anon_sym_export] = ACTIONS(909), - [anon_sym_alias] = ACTIONS(909), - [anon_sym_let] = ACTIONS(909), - [anon_sym_let_DASHenv] = ACTIONS(909), - [anon_sym_mut] = ACTIONS(909), - [anon_sym_const] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(909), - [sym_cmd_identifier] = ACTIONS(909), - [anon_sym_LF] = ACTIONS(911), - [anon_sym_def] = ACTIONS(909), - [anon_sym_export_DASHenv] = ACTIONS(909), - [anon_sym_extern] = ACTIONS(909), - [anon_sym_module] = ACTIONS(909), - [anon_sym_use] = ACTIONS(909), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_error] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_break] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_for] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_loop] = ACTIONS(909), - [anon_sym_while] = ACTIONS(909), - [anon_sym_do] = ACTIONS(909), - [anon_sym_if] = ACTIONS(909), - [anon_sym_match] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_DOT_DOT] = ACTIONS(909), - [anon_sym_try] = ACTIONS(909), - [anon_sym_return] = ACTIONS(909), - [anon_sym_source] = ACTIONS(909), - [anon_sym_source_DASHenv] = ACTIONS(909), - [anon_sym_register] = ACTIONS(909), - [anon_sym_hide] = ACTIONS(909), - [anon_sym_hide_DASHenv] = ACTIONS(909), - [anon_sym_overlay] = ACTIONS(909), - [anon_sym_as] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_where] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(909), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(909), - [anon_sym_SLASH_SLASH] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(909), - [anon_sym_bit_DASHshr] = ACTIONS(909), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_not_DASHin] = ACTIONS(909), - [anon_sym_starts_DASHwith] = ACTIONS(909), - [anon_sym_ends_DASHwith] = ACTIONS(909), - [anon_sym_EQ_TILDE] = ACTIONS(909), - [anon_sym_BANG_TILDE] = ACTIONS(909), - [anon_sym_bit_DASHand] = ACTIONS(909), - [anon_sym_bit_DASHxor] = ACTIONS(909), - [anon_sym_bit_DASHor] = ACTIONS(909), - [anon_sym_and] = ACTIONS(909), - [anon_sym_xor] = ACTIONS(909), - [anon_sym_or] = ACTIONS(909), - [anon_sym_not] = ACTIONS(909), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [aux_sym__immediate_decimal_token2] = ACTIONS(934), - [anon_sym_null] = ACTIONS(909), - [anon_sym_true] = ACTIONS(909), - [anon_sym_false] = ACTIONS(909), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(909), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(909), - [aux_sym__val_number_token1] = ACTIONS(909), - [aux_sym__val_number_token2] = ACTIONS(909), - [aux_sym__val_number_token3] = ACTIONS(909), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(909), - [aux_sym__val_number_token6] = ACTIONS(909), - [anon_sym_0b] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(909), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym__str_single_quotes] = ACTIONS(909), - [sym__str_back_ticks] = ACTIONS(909), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), - [anon_sym_CARET] = ACTIONS(909), - [aux_sym_unquoted_token5] = ACTIONS(909), + [239] = { + [sym__immediate_decimal] = STATE(8796), + [sym_comment] = STATE(239), + [anon_sym_export] = ACTIONS(920), + [anon_sym_alias] = ACTIONS(920), + [anon_sym_let] = ACTIONS(920), + [anon_sym_let_DASHenv] = ACTIONS(920), + [anon_sym_mut] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(920), + [sym_cmd_identifier] = ACTIONS(920), + [anon_sym_LF] = ACTIONS(922), + [anon_sym_def] = ACTIONS(920), + [anon_sym_export_DASHenv] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym_module] = ACTIONS(920), + [anon_sym_use] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_RPAREN] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_error] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_in] = ACTIONS(920), + [anon_sym_loop] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_match] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_RBRACE] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_try] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_source] = ACTIONS(920), + [anon_sym_source_DASHenv] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_hide] = ACTIONS(920), + [anon_sym_hide_DASHenv] = ACTIONS(920), + [anon_sym_overlay] = ACTIONS(920), + [anon_sym_as] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_where] = ACTIONS(920), + [anon_sym_STAR_STAR] = ACTIONS(920), + [anon_sym_PLUS_PLUS] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_mod] = ACTIONS(920), + [anon_sym_SLASH_SLASH] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_bit_DASHshl] = ACTIONS(920), + [anon_sym_bit_DASHshr] = ACTIONS(920), + [anon_sym_EQ_EQ] = ACTIONS(920), + [anon_sym_BANG_EQ] = ACTIONS(920), + [anon_sym_LT2] = ACTIONS(920), + [anon_sym_LT_EQ] = ACTIONS(920), + [anon_sym_GT_EQ] = ACTIONS(920), + [anon_sym_not_DASHin] = ACTIONS(920), + [anon_sym_starts_DASHwith] = ACTIONS(920), + [anon_sym_ends_DASHwith] = ACTIONS(920), + [anon_sym_EQ_TILDE] = ACTIONS(920), + [anon_sym_BANG_TILDE] = ACTIONS(920), + [anon_sym_bit_DASHand] = ACTIONS(920), + [anon_sym_bit_DASHxor] = ACTIONS(920), + [anon_sym_bit_DASHor] = ACTIONS(920), + [anon_sym_and] = ACTIONS(920), + [anon_sym_xor] = ACTIONS(920), + [anon_sym_or] = ACTIONS(920), + [anon_sym_not] = ACTIONS(920), + [anon_sym_DOT] = ACTIONS(924), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [aux_sym__immediate_decimal_token1] = ACTIONS(926), + [aux_sym__immediate_decimal_token3] = ACTIONS(926), + [aux_sym__immediate_decimal_token4] = ACTIONS(928), + [anon_sym_null] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), + [anon_sym_CARET] = ACTIONS(920), + [aux_sym_unquoted_token3] = ACTIONS(930), + [aux_sym_unquoted_token5] = ACTIONS(932), [anon_sym_POUND] = ACTIONS(113), }, - [256] = { - [sym_comment] = STATE(256), - [anon_sym_export] = ACTIONS(917), - [anon_sym_alias] = ACTIONS(917), - [anon_sym_let] = ACTIONS(917), - [anon_sym_let_DASHenv] = ACTIONS(917), - [anon_sym_mut] = ACTIONS(917), - [anon_sym_const] = ACTIONS(917), - [anon_sym_SEMI] = ACTIONS(917), - [sym_cmd_identifier] = ACTIONS(917), - [anon_sym_LF] = ACTIONS(919), - [anon_sym_def] = ACTIONS(917), - [anon_sym_export_DASHenv] = ACTIONS(917), - [anon_sym_extern] = ACTIONS(917), - [anon_sym_module] = ACTIONS(917), - [anon_sym_use] = ACTIONS(917), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_LPAREN] = ACTIONS(917), - [anon_sym_RPAREN] = ACTIONS(917), - [anon_sym_DOLLAR] = ACTIONS(917), - [anon_sym_error] = ACTIONS(917), - [anon_sym_GT] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_break] = ACTIONS(917), - [anon_sym_continue] = ACTIONS(917), - [anon_sym_for] = ACTIONS(917), - [anon_sym_in] = ACTIONS(917), - [anon_sym_loop] = ACTIONS(917), - [anon_sym_while] = ACTIONS(917), - [anon_sym_do] = ACTIONS(917), - [anon_sym_if] = ACTIONS(917), - [anon_sym_match] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(917), - [anon_sym_RBRACE] = ACTIONS(917), - [anon_sym_DOT_DOT] = ACTIONS(917), - [anon_sym_try] = ACTIONS(917), - [anon_sym_return] = ACTIONS(917), - [anon_sym_source] = ACTIONS(917), - [anon_sym_source_DASHenv] = ACTIONS(917), - [anon_sym_register] = ACTIONS(917), - [anon_sym_hide] = ACTIONS(917), - [anon_sym_hide_DASHenv] = ACTIONS(917), - [anon_sym_overlay] = ACTIONS(917), - [anon_sym_as] = ACTIONS(917), - [anon_sym_STAR] = ACTIONS(917), - [anon_sym_where] = ACTIONS(917), - [anon_sym_STAR_STAR] = ACTIONS(917), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_mod] = ACTIONS(917), - [anon_sym_SLASH_SLASH] = ACTIONS(917), - [anon_sym_PLUS] = ACTIONS(917), - [anon_sym_bit_DASHshl] = ACTIONS(917), - [anon_sym_bit_DASHshr] = ACTIONS(917), - [anon_sym_EQ_EQ] = ACTIONS(917), - [anon_sym_BANG_EQ] = ACTIONS(917), - [anon_sym_LT2] = ACTIONS(917), - [anon_sym_LT_EQ] = ACTIONS(917), - [anon_sym_GT_EQ] = ACTIONS(917), - [anon_sym_not_DASHin] = ACTIONS(917), - [anon_sym_starts_DASHwith] = ACTIONS(917), - [anon_sym_ends_DASHwith] = ACTIONS(917), - [anon_sym_EQ_TILDE] = ACTIONS(917), - [anon_sym_BANG_TILDE] = ACTIONS(917), - [anon_sym_bit_DASHand] = ACTIONS(917), - [anon_sym_bit_DASHxor] = ACTIONS(917), - [anon_sym_bit_DASHor] = ACTIONS(917), - [anon_sym_and] = ACTIONS(917), - [anon_sym_xor] = ACTIONS(917), - [anon_sym_or] = ACTIONS(917), - [anon_sym_not] = ACTIONS(917), - [anon_sym_DOT_DOT2] = ACTIONS(917), - [anon_sym_DOT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ] = ACTIONS(917), - [anon_sym_DOT_DOT_LT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(919), - [anon_sym_DOT_DOT_LT2] = ACTIONS(919), - [anon_sym_null] = ACTIONS(917), - [anon_sym_true] = ACTIONS(917), - [anon_sym_false] = ACTIONS(917), - [aux_sym__val_number_decimal_token1] = ACTIONS(917), - [aux_sym__val_number_decimal_token2] = ACTIONS(917), - [anon_sym_DOT2] = ACTIONS(917), - [aux_sym__val_number_decimal_token3] = ACTIONS(917), - [aux_sym__val_number_token1] = ACTIONS(917), - [aux_sym__val_number_token2] = ACTIONS(917), - [aux_sym__val_number_token3] = ACTIONS(917), - [aux_sym__val_number_token4] = ACTIONS(917), - [aux_sym__val_number_token5] = ACTIONS(917), - [aux_sym__val_number_token6] = ACTIONS(917), - [anon_sym_0b] = ACTIONS(917), - [sym_filesize_unit] = ACTIONS(917), - [sym_duration_unit] = ACTIONS(917), - [anon_sym_0o] = ACTIONS(917), - [anon_sym_0x] = ACTIONS(917), - [sym_val_date] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(917), - [sym__str_single_quotes] = ACTIONS(917), - [sym__str_back_ticks] = ACTIONS(917), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(917), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(917), - [anon_sym_CARET] = ACTIONS(917), - [aux_sym_unquoted_token5] = ACTIONS(917), + [240] = { + [sym_comment] = STATE(240), + [anon_sym_export] = ACTIONS(934), + [anon_sym_alias] = ACTIONS(934), + [anon_sym_let] = ACTIONS(934), + [anon_sym_let_DASHenv] = ACTIONS(934), + [anon_sym_mut] = ACTIONS(934), + [anon_sym_const] = ACTIONS(934), + [anon_sym_SEMI] = ACTIONS(934), + [sym_cmd_identifier] = ACTIONS(934), + [anon_sym_LF] = ACTIONS(936), + [anon_sym_def] = ACTIONS(934), + [anon_sym_export_DASHenv] = ACTIONS(934), + [anon_sym_extern] = ACTIONS(934), + [anon_sym_module] = ACTIONS(934), + [anon_sym_use] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(934), + [anon_sym_LPAREN] = ACTIONS(934), + [anon_sym_RPAREN] = ACTIONS(934), + [anon_sym_DOLLAR] = ACTIONS(934), + [anon_sym_error] = ACTIONS(934), + [anon_sym_GT] = ACTIONS(934), + [anon_sym_DASH_DASH] = ACTIONS(934), + [anon_sym_DASH] = ACTIONS(934), + [anon_sym_break] = ACTIONS(934), + [anon_sym_continue] = ACTIONS(934), + [anon_sym_for] = ACTIONS(934), + [anon_sym_in] = ACTIONS(934), + [anon_sym_loop] = ACTIONS(934), + [anon_sym_while] = ACTIONS(934), + [anon_sym_do] = ACTIONS(934), + [anon_sym_if] = ACTIONS(934), + [anon_sym_match] = ACTIONS(934), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_RBRACE] = ACTIONS(934), + [anon_sym_DOT_DOT] = ACTIONS(934), + [anon_sym_try] = ACTIONS(934), + [anon_sym_return] = ACTIONS(934), + [anon_sym_source] = ACTIONS(934), + [anon_sym_source_DASHenv] = ACTIONS(934), + [anon_sym_register] = ACTIONS(934), + [anon_sym_hide] = ACTIONS(934), + [anon_sym_hide_DASHenv] = ACTIONS(934), + [anon_sym_overlay] = ACTIONS(934), + [anon_sym_as] = ACTIONS(934), + [anon_sym_STAR] = ACTIONS(934), + [anon_sym_where] = ACTIONS(934), + [anon_sym_STAR_STAR] = ACTIONS(934), + [anon_sym_PLUS_PLUS] = ACTIONS(934), + [anon_sym_SLASH] = ACTIONS(934), + [anon_sym_mod] = ACTIONS(934), + [anon_sym_SLASH_SLASH] = ACTIONS(934), + [anon_sym_PLUS] = ACTIONS(934), + [anon_sym_bit_DASHshl] = ACTIONS(934), + [anon_sym_bit_DASHshr] = ACTIONS(934), + [anon_sym_EQ_EQ] = ACTIONS(934), + [anon_sym_BANG_EQ] = ACTIONS(934), + [anon_sym_LT2] = ACTIONS(934), + [anon_sym_LT_EQ] = ACTIONS(934), + [anon_sym_GT_EQ] = ACTIONS(934), + [anon_sym_not_DASHin] = ACTIONS(934), + [anon_sym_starts_DASHwith] = ACTIONS(934), + [anon_sym_ends_DASHwith] = ACTIONS(934), + [anon_sym_EQ_TILDE] = ACTIONS(934), + [anon_sym_BANG_TILDE] = ACTIONS(934), + [anon_sym_bit_DASHand] = ACTIONS(934), + [anon_sym_bit_DASHxor] = ACTIONS(934), + [anon_sym_bit_DASHor] = ACTIONS(934), + [anon_sym_and] = ACTIONS(934), + [anon_sym_xor] = ACTIONS(934), + [anon_sym_or] = ACTIONS(934), + [anon_sym_not] = ACTIONS(934), + [anon_sym_DOT_DOT2] = ACTIONS(934), + [anon_sym_DOT] = ACTIONS(934), + [anon_sym_DOT_DOT_EQ] = ACTIONS(934), + [anon_sym_DOT_DOT_LT] = ACTIONS(934), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(936), + [anon_sym_DOT_DOT_LT2] = ACTIONS(936), + [anon_sym_null] = ACTIONS(934), + [anon_sym_true] = ACTIONS(934), + [anon_sym_false] = ACTIONS(934), + [aux_sym__val_number_decimal_token1] = ACTIONS(934), + [aux_sym__val_number_decimal_token2] = ACTIONS(934), + [anon_sym_DOT2] = ACTIONS(934), + [aux_sym__val_number_decimal_token3] = ACTIONS(934), + [aux_sym__val_number_token1] = ACTIONS(934), + [aux_sym__val_number_token2] = ACTIONS(934), + [aux_sym__val_number_token3] = ACTIONS(934), + [aux_sym__val_number_token4] = ACTIONS(934), + [aux_sym__val_number_token5] = ACTIONS(934), + [aux_sym__val_number_token6] = ACTIONS(934), + [anon_sym_0b] = ACTIONS(934), + [sym_filesize_unit] = ACTIONS(934), + [sym_duration_unit] = ACTIONS(934), + [anon_sym_0o] = ACTIONS(934), + [anon_sym_0x] = ACTIONS(934), + [sym_val_date] = ACTIONS(934), + [anon_sym_DQUOTE] = ACTIONS(934), + [sym__str_single_quotes] = ACTIONS(934), + [sym__str_back_ticks] = ACTIONS(934), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(934), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(934), + [anon_sym_CARET] = ACTIONS(934), + [aux_sym_unquoted_token5] = ACTIONS(934), [anon_sym_POUND] = ACTIONS(113), }, - [257] = { - [sym__immediate_decimal] = STATE(9346), - [sym_comment] = STATE(257), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_error] = ACTIONS(936), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_RBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_as] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_where] = ACTIONS(936), - [anon_sym_STAR_STAR] = ACTIONS(936), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(936), - [anon_sym_SLASH_SLASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(936), - [anon_sym_bit_DASHshr] = ACTIONS(936), - [anon_sym_EQ_EQ] = ACTIONS(936), - [anon_sym_BANG_EQ] = ACTIONS(936), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(936), - [anon_sym_GT_EQ] = ACTIONS(936), - [anon_sym_not_DASHin] = ACTIONS(936), - [anon_sym_starts_DASHwith] = ACTIONS(936), - [anon_sym_ends_DASHwith] = ACTIONS(936), - [anon_sym_EQ_TILDE] = ACTIONS(936), - [anon_sym_BANG_TILDE] = ACTIONS(936), - [anon_sym_bit_DASHand] = ACTIONS(936), - [anon_sym_bit_DASHxor] = ACTIONS(936), - [anon_sym_bit_DASHor] = ACTIONS(936), - [anon_sym_and] = ACTIONS(936), - [anon_sym_xor] = ACTIONS(936), - [anon_sym_or] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_DOT] = ACTIONS(940), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [aux_sym__immediate_decimal_token1] = ACTIONS(942), - [aux_sym__immediate_decimal_token3] = ACTIONS(942), - [aux_sym__immediate_decimal_token4] = ACTIONS(944), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [aux_sym_unquoted_token3] = ACTIONS(946), - [aux_sym_unquoted_token5] = ACTIONS(948), + [241] = { + [sym_comment] = STATE(241), + [anon_sym_export] = ACTIONS(901), + [anon_sym_alias] = ACTIONS(901), + [anon_sym_let] = ACTIONS(901), + [anon_sym_let_DASHenv] = ACTIONS(901), + [anon_sym_mut] = ACTIONS(901), + [anon_sym_const] = ACTIONS(901), + [anon_sym_SEMI] = ACTIONS(901), + [sym_cmd_identifier] = ACTIONS(901), + [anon_sym_LF] = ACTIONS(903), + [anon_sym_def] = ACTIONS(901), + [anon_sym_export_DASHenv] = ACTIONS(901), + [anon_sym_extern] = ACTIONS(901), + [anon_sym_module] = ACTIONS(901), + [anon_sym_use] = ACTIONS(901), + [anon_sym_LBRACK] = ACTIONS(901), + [anon_sym_LPAREN] = ACTIONS(901), + [anon_sym_RPAREN] = ACTIONS(901), + [anon_sym_DOLLAR] = ACTIONS(901), + [anon_sym_error] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_DASH_DASH] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_break] = ACTIONS(901), + [anon_sym_continue] = ACTIONS(901), + [anon_sym_for] = ACTIONS(901), + [anon_sym_in] = ACTIONS(901), + [anon_sym_loop] = ACTIONS(901), + [anon_sym_while] = ACTIONS(901), + [anon_sym_do] = ACTIONS(901), + [anon_sym_if] = ACTIONS(901), + [anon_sym_match] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(901), + [anon_sym_RBRACE] = ACTIONS(901), + [anon_sym_DOT_DOT] = ACTIONS(901), + [anon_sym_try] = ACTIONS(901), + [anon_sym_return] = ACTIONS(901), + [anon_sym_source] = ACTIONS(901), + [anon_sym_source_DASHenv] = ACTIONS(901), + [anon_sym_register] = ACTIONS(901), + [anon_sym_hide] = ACTIONS(901), + [anon_sym_hide_DASHenv] = ACTIONS(901), + [anon_sym_overlay] = ACTIONS(901), + [anon_sym_as] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_where] = ACTIONS(901), + [anon_sym_STAR_STAR] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(901), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_mod] = ACTIONS(901), + [anon_sym_SLASH_SLASH] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_bit_DASHshl] = ACTIONS(901), + [anon_sym_bit_DASHshr] = ACTIONS(901), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT2] = ACTIONS(901), + [anon_sym_LT_EQ] = ACTIONS(901), + [anon_sym_GT_EQ] = ACTIONS(901), + [anon_sym_not_DASHin] = ACTIONS(901), + [anon_sym_starts_DASHwith] = ACTIONS(901), + [anon_sym_ends_DASHwith] = ACTIONS(901), + [anon_sym_EQ_TILDE] = ACTIONS(901), + [anon_sym_BANG_TILDE] = ACTIONS(901), + [anon_sym_bit_DASHand] = ACTIONS(901), + [anon_sym_bit_DASHxor] = ACTIONS(901), + [anon_sym_bit_DASHor] = ACTIONS(901), + [anon_sym_and] = ACTIONS(901), + [anon_sym_xor] = ACTIONS(901), + [anon_sym_or] = ACTIONS(901), + [anon_sym_not] = ACTIONS(901), + [anon_sym_DOT_DOT2] = ACTIONS(901), + [anon_sym_DOT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ] = ACTIONS(901), + [anon_sym_DOT_DOT_LT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(903), + [anon_sym_DOT_DOT_LT2] = ACTIONS(903), + [anon_sym_null] = ACTIONS(901), + [anon_sym_true] = ACTIONS(901), + [anon_sym_false] = ACTIONS(901), + [aux_sym__val_number_decimal_token1] = ACTIONS(901), + [aux_sym__val_number_decimal_token2] = ACTIONS(901), + [anon_sym_DOT2] = ACTIONS(901), + [aux_sym__val_number_decimal_token3] = ACTIONS(901), + [aux_sym__val_number_token1] = ACTIONS(901), + [aux_sym__val_number_token2] = ACTIONS(901), + [aux_sym__val_number_token3] = ACTIONS(901), + [aux_sym__val_number_token4] = ACTIONS(901), + [aux_sym__val_number_token5] = ACTIONS(901), + [aux_sym__val_number_token6] = ACTIONS(901), + [anon_sym_0b] = ACTIONS(901), + [sym_filesize_unit] = ACTIONS(901), + [sym_duration_unit] = ACTIONS(901), + [anon_sym_0o] = ACTIONS(901), + [anon_sym_0x] = ACTIONS(901), + [sym_val_date] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [sym__str_single_quotes] = ACTIONS(901), + [sym__str_back_ticks] = ACTIONS(901), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(901), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(901), + [anon_sym_CARET] = ACTIONS(901), + [aux_sym_unquoted_token5] = ACTIONS(901), [anon_sym_POUND] = ACTIONS(113), }, - [258] = { - [sym_comment] = STATE(258), - [anon_sym_export] = ACTIONS(909), - [anon_sym_alias] = ACTIONS(909), - [anon_sym_let] = ACTIONS(909), - [anon_sym_let_DASHenv] = ACTIONS(909), - [anon_sym_mut] = ACTIONS(909), - [anon_sym_const] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(909), - [sym_cmd_identifier] = ACTIONS(909), - [anon_sym_LF] = ACTIONS(911), - [anon_sym_def] = ACTIONS(909), - [anon_sym_export_DASHenv] = ACTIONS(909), - [anon_sym_extern] = ACTIONS(909), - [anon_sym_module] = ACTIONS(909), - [anon_sym_use] = ACTIONS(909), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_RPAREN] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_error] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_break] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_for] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_loop] = ACTIONS(909), - [anon_sym_while] = ACTIONS(909), - [anon_sym_do] = ACTIONS(909), - [anon_sym_if] = ACTIONS(909), - [anon_sym_match] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_RBRACE] = ACTIONS(909), - [anon_sym_DOT_DOT] = ACTIONS(909), - [anon_sym_try] = ACTIONS(909), - [anon_sym_return] = ACTIONS(909), - [anon_sym_source] = ACTIONS(909), - [anon_sym_source_DASHenv] = ACTIONS(909), - [anon_sym_register] = ACTIONS(909), - [anon_sym_hide] = ACTIONS(909), - [anon_sym_hide_DASHenv] = ACTIONS(909), - [anon_sym_overlay] = ACTIONS(909), - [anon_sym_as] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_where] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(909), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(909), - [anon_sym_SLASH_SLASH] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(909), - [anon_sym_bit_DASHshr] = ACTIONS(909), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_not_DASHin] = ACTIONS(909), - [anon_sym_starts_DASHwith] = ACTIONS(909), - [anon_sym_ends_DASHwith] = ACTIONS(909), - [anon_sym_EQ_TILDE] = ACTIONS(909), - [anon_sym_BANG_TILDE] = ACTIONS(909), - [anon_sym_bit_DASHand] = ACTIONS(909), - [anon_sym_bit_DASHxor] = ACTIONS(909), - [anon_sym_bit_DASHor] = ACTIONS(909), - [anon_sym_and] = ACTIONS(909), - [anon_sym_xor] = ACTIONS(909), - [anon_sym_or] = ACTIONS(909), - [anon_sym_not] = ACTIONS(909), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [anon_sym_null] = ACTIONS(909), - [anon_sym_true] = ACTIONS(909), - [anon_sym_false] = ACTIONS(909), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(909), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(909), - [aux_sym__val_number_token1] = ACTIONS(909), - [aux_sym__val_number_token2] = ACTIONS(909), - [aux_sym__val_number_token3] = ACTIONS(909), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(909), - [aux_sym__val_number_token6] = ACTIONS(909), - [anon_sym_0b] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(909), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym__str_single_quotes] = ACTIONS(909), - [sym__str_back_ticks] = ACTIONS(909), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), - [anon_sym_CARET] = ACTIONS(909), - [aux_sym_unquoted_token5] = ACTIONS(909), + [242] = { + [sym_comment] = STATE(242), + [anon_sym_export] = ACTIONS(938), + [anon_sym_alias] = ACTIONS(938), + [anon_sym_let] = ACTIONS(938), + [anon_sym_let_DASHenv] = ACTIONS(938), + [anon_sym_mut] = ACTIONS(938), + [anon_sym_const] = ACTIONS(938), + [anon_sym_SEMI] = ACTIONS(938), + [sym_cmd_identifier] = ACTIONS(938), + [anon_sym_LF] = ACTIONS(940), + [anon_sym_def] = ACTIONS(938), + [anon_sym_export_DASHenv] = ACTIONS(938), + [anon_sym_extern] = ACTIONS(938), + [anon_sym_module] = ACTIONS(938), + [anon_sym_use] = ACTIONS(938), + [anon_sym_LBRACK] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(938), + [anon_sym_RPAREN] = ACTIONS(938), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_error] = ACTIONS(938), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_break] = ACTIONS(938), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_for] = ACTIONS(938), + [anon_sym_in] = ACTIONS(938), + [anon_sym_loop] = ACTIONS(938), + [anon_sym_while] = ACTIONS(938), + [anon_sym_do] = ACTIONS(938), + [anon_sym_if] = ACTIONS(938), + [anon_sym_match] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_RBRACE] = ACTIONS(938), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_try] = ACTIONS(938), + [anon_sym_return] = ACTIONS(938), + [anon_sym_source] = ACTIONS(938), + [anon_sym_source_DASHenv] = ACTIONS(938), + [anon_sym_register] = ACTIONS(938), + [anon_sym_hide] = ACTIONS(938), + [anon_sym_hide_DASHenv] = ACTIONS(938), + [anon_sym_overlay] = ACTIONS(938), + [anon_sym_as] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_where] = ACTIONS(938), + [anon_sym_STAR_STAR] = ACTIONS(938), + [anon_sym_PLUS_PLUS] = ACTIONS(938), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(938), + [anon_sym_SLASH_SLASH] = ACTIONS(938), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_bit_DASHshl] = ACTIONS(938), + [anon_sym_bit_DASHshr] = ACTIONS(938), + [anon_sym_EQ_EQ] = ACTIONS(938), + [anon_sym_BANG_EQ] = ACTIONS(938), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(938), + [anon_sym_GT_EQ] = ACTIONS(938), + [anon_sym_not_DASHin] = ACTIONS(938), + [anon_sym_starts_DASHwith] = ACTIONS(938), + [anon_sym_ends_DASHwith] = ACTIONS(938), + [anon_sym_EQ_TILDE] = ACTIONS(938), + [anon_sym_BANG_TILDE] = ACTIONS(938), + [anon_sym_bit_DASHand] = ACTIONS(938), + [anon_sym_bit_DASHxor] = ACTIONS(938), + [anon_sym_bit_DASHor] = ACTIONS(938), + [anon_sym_and] = ACTIONS(938), + [anon_sym_xor] = ACTIONS(938), + [anon_sym_or] = ACTIONS(938), + [anon_sym_not] = ACTIONS(938), + [anon_sym_DOT_DOT2] = ACTIONS(942), + [anon_sym_DOT] = ACTIONS(944), + [anon_sym_DOT_DOT_EQ] = ACTIONS(938), + [anon_sym_DOT_DOT_LT] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(946), + [anon_sym_DOT_DOT_LT2] = ACTIONS(946), + [anon_sym_null] = ACTIONS(938), + [anon_sym_true] = ACTIONS(938), + [anon_sym_false] = ACTIONS(938), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(938), + [anon_sym_DOT2] = ACTIONS(938), + [aux_sym__val_number_decimal_token3] = ACTIONS(938), + [aux_sym__val_number_token1] = ACTIONS(938), + [aux_sym__val_number_token2] = ACTIONS(938), + [aux_sym__val_number_token3] = ACTIONS(938), + [aux_sym__val_number_token4] = ACTIONS(938), + [aux_sym__val_number_token5] = ACTIONS(938), + [aux_sym__val_number_token6] = ACTIONS(938), + [anon_sym_0b] = ACTIONS(938), + [sym_filesize_unit] = ACTIONS(948), + [sym_duration_unit] = ACTIONS(950), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym__str_single_quotes] = ACTIONS(938), + [sym__str_back_ticks] = ACTIONS(938), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(938), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(938), + [anon_sym_CARET] = ACTIONS(938), + [aux_sym_unquoted_token5] = ACTIONS(952), [anon_sym_POUND] = ACTIONS(113), }, - [259] = { - [sym_comment] = STATE(259), - [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), - [anon_sym_SEMI] = ACTIONS(950), - [sym_cmd_identifier] = ACTIONS(950), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(950), - [anon_sym_LPAREN] = ACTIONS(950), - [anon_sym_RPAREN] = ACTIONS(950), - [anon_sym_DOLLAR] = ACTIONS(950), - [anon_sym_error] = ACTIONS(950), - [anon_sym_GT] = ACTIONS(950), - [anon_sym_DASH_DASH] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(950), - [anon_sym_break] = ACTIONS(950), - [anon_sym_continue] = ACTIONS(950), - [anon_sym_for] = ACTIONS(950), - [anon_sym_in] = ACTIONS(950), - [anon_sym_loop] = ACTIONS(950), - [anon_sym_while] = ACTIONS(950), - [anon_sym_do] = ACTIONS(950), - [anon_sym_if] = ACTIONS(950), - [anon_sym_match] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(950), - [anon_sym_RBRACE] = ACTIONS(950), - [anon_sym_DOT_DOT] = ACTIONS(950), - [anon_sym_try] = ACTIONS(950), - [anon_sym_return] = ACTIONS(950), - [anon_sym_source] = ACTIONS(950), - [anon_sym_source_DASHenv] = ACTIONS(950), - [anon_sym_register] = 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_STAR] = ACTIONS(950), - [anon_sym_where] = ACTIONS(950), - [anon_sym_STAR_STAR] = ACTIONS(950), - [anon_sym_PLUS_PLUS] = ACTIONS(950), - [anon_sym_SLASH] = ACTIONS(950), - [anon_sym_mod] = ACTIONS(950), - [anon_sym_SLASH_SLASH] = ACTIONS(950), - [anon_sym_PLUS] = ACTIONS(950), - [anon_sym_bit_DASHshl] = ACTIONS(950), - [anon_sym_bit_DASHshr] = ACTIONS(950), - [anon_sym_EQ_EQ] = ACTIONS(950), - [anon_sym_BANG_EQ] = ACTIONS(950), - [anon_sym_LT2] = ACTIONS(950), - [anon_sym_LT_EQ] = ACTIONS(950), - [anon_sym_GT_EQ] = ACTIONS(950), - [anon_sym_not_DASHin] = ACTIONS(950), - [anon_sym_starts_DASHwith] = ACTIONS(950), - [anon_sym_ends_DASHwith] = ACTIONS(950), - [anon_sym_EQ_TILDE] = ACTIONS(950), - [anon_sym_BANG_TILDE] = ACTIONS(950), - [anon_sym_bit_DASHand] = ACTIONS(950), - [anon_sym_bit_DASHxor] = ACTIONS(950), - [anon_sym_bit_DASHor] = ACTIONS(950), - [anon_sym_and] = ACTIONS(950), - [anon_sym_xor] = ACTIONS(950), - [anon_sym_or] = ACTIONS(950), - [anon_sym_not] = ACTIONS(950), - [anon_sym_DOT_DOT2] = ACTIONS(950), - [anon_sym_DOT] = 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(950), - [anon_sym_true] = ACTIONS(950), - [anon_sym_false] = ACTIONS(950), - [aux_sym__val_number_decimal_token1] = ACTIONS(950), - [aux_sym__val_number_decimal_token2] = ACTIONS(950), - [anon_sym_DOT2] = ACTIONS(950), - [aux_sym__val_number_decimal_token3] = ACTIONS(950), - [aux_sym__val_number_token1] = ACTIONS(950), - [aux_sym__val_number_token2] = ACTIONS(950), - [aux_sym__val_number_token3] = ACTIONS(950), - [aux_sym__val_number_token4] = ACTIONS(950), - [aux_sym__val_number_token5] = ACTIONS(950), - [aux_sym__val_number_token6] = ACTIONS(950), - [anon_sym_0b] = ACTIONS(950), - [sym_filesize_unit] = ACTIONS(950), - [sym_duration_unit] = ACTIONS(950), - [anon_sym_0o] = ACTIONS(950), - [anon_sym_0x] = ACTIONS(950), - [sym_val_date] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym__str_single_quotes] = ACTIONS(950), - [sym__str_back_ticks] = ACTIONS(950), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(950), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(950), - [anon_sym_CARET] = ACTIONS(950), - [aux_sym_unquoted_token5] = ACTIONS(950), + [243] = { + [sym_comment] = STATE(243), + [ts_builtin_sym_end] = ACTIONS(895), + [anon_sym_export] = ACTIONS(893), + [anon_sym_alias] = ACTIONS(893), + [anon_sym_let] = ACTIONS(893), + [anon_sym_let_DASHenv] = ACTIONS(893), + [anon_sym_mut] = ACTIONS(893), + [anon_sym_const] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(893), + [sym_cmd_identifier] = ACTIONS(893), + [anon_sym_LF] = ACTIONS(895), + [anon_sym_def] = ACTIONS(893), + [anon_sym_export_DASHenv] = ACTIONS(893), + [anon_sym_extern] = ACTIONS(893), + [anon_sym_module] = ACTIONS(893), + [anon_sym_use] = ACTIONS(893), + [anon_sym_LBRACK] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(893), + [anon_sym_DOLLAR] = ACTIONS(893), + [anon_sym_error] = ACTIONS(893), + [anon_sym_GT] = ACTIONS(893), + [anon_sym_DASH_DASH] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_break] = ACTIONS(893), + [anon_sym_continue] = ACTIONS(893), + [anon_sym_for] = ACTIONS(893), + [anon_sym_in] = ACTIONS(893), + [anon_sym_loop] = ACTIONS(893), + [anon_sym_while] = ACTIONS(893), + [anon_sym_do] = ACTIONS(893), + [anon_sym_if] = ACTIONS(893), + [anon_sym_match] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_DOT_DOT] = ACTIONS(893), + [anon_sym_try] = ACTIONS(893), + [anon_sym_return] = ACTIONS(893), + [anon_sym_source] = ACTIONS(893), + [anon_sym_source_DASHenv] = ACTIONS(893), + [anon_sym_register] = ACTIONS(893), + [anon_sym_hide] = ACTIONS(893), + [anon_sym_hide_DASHenv] = ACTIONS(893), + [anon_sym_overlay] = ACTIONS(893), + [anon_sym_as] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(893), + [anon_sym_where] = ACTIONS(893), + [anon_sym_STAR_STAR] = ACTIONS(893), + [anon_sym_PLUS_PLUS] = ACTIONS(893), + [anon_sym_SLASH] = ACTIONS(893), + [anon_sym_mod] = ACTIONS(893), + [anon_sym_SLASH_SLASH] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_bit_DASHshl] = ACTIONS(893), + [anon_sym_bit_DASHshr] = ACTIONS(893), + [anon_sym_EQ_EQ] = ACTIONS(893), + [anon_sym_BANG_EQ] = ACTIONS(893), + [anon_sym_LT2] = ACTIONS(893), + [anon_sym_LT_EQ] = ACTIONS(893), + [anon_sym_GT_EQ] = ACTIONS(893), + [anon_sym_not_DASHin] = ACTIONS(893), + [anon_sym_starts_DASHwith] = ACTIONS(893), + [anon_sym_ends_DASHwith] = ACTIONS(893), + [anon_sym_EQ_TILDE] = ACTIONS(893), + [anon_sym_BANG_TILDE] = ACTIONS(893), + [anon_sym_bit_DASHand] = ACTIONS(893), + [anon_sym_bit_DASHxor] = ACTIONS(893), + [anon_sym_bit_DASHor] = ACTIONS(893), + [anon_sym_and] = ACTIONS(893), + [anon_sym_xor] = ACTIONS(893), + [anon_sym_or] = ACTIONS(893), + [anon_sym_not] = ACTIONS(893), + [anon_sym_DOT_DOT2] = ACTIONS(893), + [anon_sym_DOT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ] = ACTIONS(893), + [anon_sym_DOT_DOT_LT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), + [anon_sym_DOT_DOT_LT2] = ACTIONS(895), + [aux_sym__immediate_decimal_token2] = ACTIONS(909), + [anon_sym_null] = ACTIONS(893), + [anon_sym_true] = ACTIONS(893), + [anon_sym_false] = ACTIONS(893), + [aux_sym__val_number_decimal_token1] = ACTIONS(893), + [aux_sym__val_number_decimal_token2] = ACTIONS(893), + [anon_sym_DOT2] = ACTIONS(893), + [aux_sym__val_number_decimal_token3] = ACTIONS(893), + [aux_sym__val_number_token1] = ACTIONS(893), + [aux_sym__val_number_token2] = ACTIONS(893), + [aux_sym__val_number_token3] = ACTIONS(893), + [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(893), + [sym_filesize_unit] = ACTIONS(893), + [sym_duration_unit] = ACTIONS(893), + [anon_sym_0o] = ACTIONS(893), + [anon_sym_0x] = ACTIONS(893), + [sym_val_date] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(893), + [sym__str_single_quotes] = ACTIONS(893), + [sym__str_back_ticks] = ACTIONS(893), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(893), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(893), + [anon_sym_CARET] = ACTIONS(893), + [aux_sym_unquoted_token5] = ACTIONS(893), [anon_sym_POUND] = ACTIONS(113), }, - [260] = { - [sym_comment] = STATE(260), - [ts_builtin_sym_end] = ACTIONS(925), - [anon_sym_export] = ACTIONS(923), - [anon_sym_alias] = ACTIONS(923), - [anon_sym_let] = ACTIONS(923), - [anon_sym_let_DASHenv] = ACTIONS(923), - [anon_sym_mut] = ACTIONS(923), - [anon_sym_const] = ACTIONS(923), - [anon_sym_SEMI] = ACTIONS(923), - [sym_cmd_identifier] = ACTIONS(923), - [anon_sym_LF] = ACTIONS(925), - [anon_sym_def] = ACTIONS(923), - [anon_sym_export_DASHenv] = ACTIONS(923), - [anon_sym_extern] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_use] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_DOLLAR] = ACTIONS(923), - [anon_sym_error] = ACTIONS(923), - [anon_sym_GT] = ACTIONS(923), - [anon_sym_DASH_DASH] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_break] = ACTIONS(923), - [anon_sym_continue] = ACTIONS(923), - [anon_sym_for] = ACTIONS(923), - [anon_sym_in] = ACTIONS(923), - [anon_sym_loop] = ACTIONS(923), - [anon_sym_while] = ACTIONS(923), - [anon_sym_do] = ACTIONS(923), - [anon_sym_if] = ACTIONS(923), - [anon_sym_match] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(923), - [anon_sym_DOT_DOT] = ACTIONS(923), - [anon_sym_try] = ACTIONS(923), - [anon_sym_return] = ACTIONS(923), - [anon_sym_source] = ACTIONS(923), - [anon_sym_source_DASHenv] = ACTIONS(923), - [anon_sym_register] = ACTIONS(923), - [anon_sym_hide] = ACTIONS(923), - [anon_sym_hide_DASHenv] = ACTIONS(923), - [anon_sym_overlay] = ACTIONS(923), - [anon_sym_as] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_where] = ACTIONS(923), - [anon_sym_STAR_STAR] = ACTIONS(923), - [anon_sym_PLUS_PLUS] = ACTIONS(923), - [anon_sym_SLASH] = ACTIONS(923), - [anon_sym_mod] = ACTIONS(923), - [anon_sym_SLASH_SLASH] = ACTIONS(923), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_bit_DASHshl] = ACTIONS(923), - [anon_sym_bit_DASHshr] = ACTIONS(923), - [anon_sym_EQ_EQ] = ACTIONS(923), - [anon_sym_BANG_EQ] = ACTIONS(923), - [anon_sym_LT2] = ACTIONS(923), - [anon_sym_LT_EQ] = ACTIONS(923), - [anon_sym_GT_EQ] = ACTIONS(923), - [anon_sym_not_DASHin] = ACTIONS(923), - [anon_sym_starts_DASHwith] = ACTIONS(923), - [anon_sym_ends_DASHwith] = ACTIONS(923), - [anon_sym_EQ_TILDE] = ACTIONS(923), - [anon_sym_BANG_TILDE] = ACTIONS(923), - [anon_sym_bit_DASHand] = ACTIONS(923), - [anon_sym_bit_DASHxor] = ACTIONS(923), - [anon_sym_bit_DASHor] = ACTIONS(923), - [anon_sym_and] = ACTIONS(923), - [anon_sym_xor] = ACTIONS(923), - [anon_sym_or] = ACTIONS(923), - [anon_sym_not] = ACTIONS(923), - [anon_sym_DOT_DOT2] = ACTIONS(923), - [anon_sym_DOT] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ] = ACTIONS(923), - [anon_sym_DOT_DOT_LT] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(925), - [anon_sym_DOT_DOT_LT2] = ACTIONS(925), - [aux_sym__immediate_decimal_token2] = ACTIONS(954), - [anon_sym_null] = ACTIONS(923), - [anon_sym_true] = ACTIONS(923), - [anon_sym_false] = ACTIONS(923), - [aux_sym__val_number_decimal_token1] = ACTIONS(923), - [aux_sym__val_number_decimal_token2] = ACTIONS(923), - [anon_sym_DOT2] = ACTIONS(923), - [aux_sym__val_number_decimal_token3] = ACTIONS(923), - [aux_sym__val_number_token1] = ACTIONS(923), - [aux_sym__val_number_token2] = ACTIONS(923), - [aux_sym__val_number_token3] = ACTIONS(923), - [aux_sym__val_number_token4] = ACTIONS(923), - [aux_sym__val_number_token5] = ACTIONS(923), - [aux_sym__val_number_token6] = ACTIONS(923), - [anon_sym_0b] = ACTIONS(923), - [sym_filesize_unit] = ACTIONS(923), - [sym_duration_unit] = ACTIONS(923), - [anon_sym_0o] = ACTIONS(923), - [anon_sym_0x] = ACTIONS(923), - [sym_val_date] = ACTIONS(923), - [anon_sym_DQUOTE] = ACTIONS(923), - [sym__str_single_quotes] = ACTIONS(923), - [sym__str_back_ticks] = ACTIONS(923), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(923), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), - [anon_sym_CARET] = ACTIONS(923), - [aux_sym_unquoted_token5] = ACTIONS(923), + [244] = { + [sym_comment] = STATE(244), + [ts_builtin_sym_end] = ACTIONS(913), + [anon_sym_export] = ACTIONS(911), + [anon_sym_alias] = ACTIONS(911), + [anon_sym_let] = ACTIONS(911), + [anon_sym_let_DASHenv] = ACTIONS(911), + [anon_sym_mut] = ACTIONS(911), + [anon_sym_const] = ACTIONS(911), + [anon_sym_SEMI] = ACTIONS(911), + [sym_cmd_identifier] = ACTIONS(911), + [anon_sym_LF] = ACTIONS(913), + [anon_sym_def] = ACTIONS(911), + [anon_sym_export_DASHenv] = ACTIONS(911), + [anon_sym_extern] = ACTIONS(911), + [anon_sym_module] = ACTIONS(911), + [anon_sym_use] = ACTIONS(911), + [anon_sym_LBRACK] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_DOLLAR] = ACTIONS(911), + [anon_sym_error] = ACTIONS(911), + [anon_sym_GT] = ACTIONS(911), + [anon_sym_DASH_DASH] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_break] = ACTIONS(911), + [anon_sym_continue] = ACTIONS(911), + [anon_sym_for] = ACTIONS(911), + [anon_sym_in] = ACTIONS(911), + [anon_sym_loop] = ACTIONS(911), + [anon_sym_while] = ACTIONS(911), + [anon_sym_do] = ACTIONS(911), + [anon_sym_if] = ACTIONS(911), + [anon_sym_match] = ACTIONS(911), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_try] = ACTIONS(911), + [anon_sym_return] = ACTIONS(911), + [anon_sym_source] = ACTIONS(911), + [anon_sym_source_DASHenv] = ACTIONS(911), + [anon_sym_register] = ACTIONS(911), + [anon_sym_hide] = ACTIONS(911), + [anon_sym_hide_DASHenv] = ACTIONS(911), + [anon_sym_overlay] = ACTIONS(911), + [anon_sym_as] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(911), + [anon_sym_where] = ACTIONS(911), + [anon_sym_STAR_STAR] = ACTIONS(911), + [anon_sym_PLUS_PLUS] = ACTIONS(911), + [anon_sym_SLASH] = ACTIONS(911), + [anon_sym_mod] = ACTIONS(911), + [anon_sym_SLASH_SLASH] = ACTIONS(911), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_bit_DASHshl] = ACTIONS(911), + [anon_sym_bit_DASHshr] = ACTIONS(911), + [anon_sym_EQ_EQ] = ACTIONS(911), + [anon_sym_BANG_EQ] = ACTIONS(911), + [anon_sym_LT2] = ACTIONS(911), + [anon_sym_LT_EQ] = ACTIONS(911), + [anon_sym_GT_EQ] = ACTIONS(911), + [anon_sym_not_DASHin] = ACTIONS(911), + [anon_sym_starts_DASHwith] = ACTIONS(911), + [anon_sym_ends_DASHwith] = ACTIONS(911), + [anon_sym_EQ_TILDE] = ACTIONS(911), + [anon_sym_BANG_TILDE] = ACTIONS(911), + [anon_sym_bit_DASHand] = ACTIONS(911), + [anon_sym_bit_DASHxor] = ACTIONS(911), + [anon_sym_bit_DASHor] = ACTIONS(911), + [anon_sym_and] = ACTIONS(911), + [anon_sym_xor] = ACTIONS(911), + [anon_sym_or] = ACTIONS(911), + [anon_sym_not] = ACTIONS(911), + [anon_sym_DOT_DOT2] = ACTIONS(911), + [anon_sym_DOT] = ACTIONS(954), + [anon_sym_DOT_DOT_EQ] = ACTIONS(911), + [anon_sym_DOT_DOT_LT] = ACTIONS(911), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(913), + [anon_sym_DOT_DOT_LT2] = ACTIONS(913), + [aux_sym__immediate_decimal_token2] = ACTIONS(957), + [anon_sym_null] = ACTIONS(911), + [anon_sym_true] = ACTIONS(911), + [anon_sym_false] = ACTIONS(911), + [aux_sym__val_number_decimal_token1] = ACTIONS(911), + [aux_sym__val_number_decimal_token2] = ACTIONS(911), + [anon_sym_DOT2] = ACTIONS(911), + [aux_sym__val_number_decimal_token3] = ACTIONS(911), + [aux_sym__val_number_token1] = ACTIONS(911), + [aux_sym__val_number_token2] = ACTIONS(911), + [aux_sym__val_number_token3] = ACTIONS(911), + [aux_sym__val_number_token4] = ACTIONS(911), + [aux_sym__val_number_token5] = ACTIONS(911), + [aux_sym__val_number_token6] = ACTIONS(911), + [anon_sym_0b] = ACTIONS(911), + [sym_filesize_unit] = ACTIONS(911), + [sym_duration_unit] = ACTIONS(911), + [anon_sym_0o] = ACTIONS(911), + [anon_sym_0x] = ACTIONS(911), + [sym_val_date] = ACTIONS(911), + [anon_sym_DQUOTE] = ACTIONS(911), + [sym__str_single_quotes] = ACTIONS(911), + [sym__str_back_ticks] = ACTIONS(911), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(911), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(911), + [anon_sym_CARET] = ACTIONS(911), + [aux_sym_unquoted_token5] = ACTIONS(911), [anon_sym_POUND] = ACTIONS(113), }, - [261] = { - [sym_comment] = STATE(261), - [ts_builtin_sym_end] = ACTIONS(925), - [anon_sym_export] = ACTIONS(923), - [anon_sym_alias] = ACTIONS(923), - [anon_sym_let] = ACTIONS(923), - [anon_sym_let_DASHenv] = ACTIONS(923), - [anon_sym_mut] = ACTIONS(923), - [anon_sym_const] = ACTIONS(923), - [anon_sym_SEMI] = ACTIONS(923), - [sym_cmd_identifier] = ACTIONS(923), - [anon_sym_LF] = ACTIONS(925), - [anon_sym_def] = ACTIONS(923), - [anon_sym_export_DASHenv] = ACTIONS(923), - [anon_sym_extern] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_use] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_DOLLAR] = ACTIONS(923), - [anon_sym_error] = ACTIONS(923), - [anon_sym_GT] = ACTIONS(923), - [anon_sym_DASH_DASH] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_break] = ACTIONS(923), - [anon_sym_continue] = ACTIONS(923), - [anon_sym_for] = ACTIONS(923), - [anon_sym_in] = ACTIONS(923), - [anon_sym_loop] = ACTIONS(923), - [anon_sym_while] = ACTIONS(923), - [anon_sym_do] = ACTIONS(923), - [anon_sym_if] = ACTIONS(923), - [anon_sym_match] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(923), - [anon_sym_DOT_DOT] = ACTIONS(923), - [anon_sym_try] = ACTIONS(923), - [anon_sym_return] = ACTIONS(923), - [anon_sym_source] = ACTIONS(923), - [anon_sym_source_DASHenv] = ACTIONS(923), - [anon_sym_register] = ACTIONS(923), - [anon_sym_hide] = ACTIONS(923), - [anon_sym_hide_DASHenv] = ACTIONS(923), - [anon_sym_overlay] = ACTIONS(923), - [anon_sym_as] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_where] = ACTIONS(923), - [anon_sym_STAR_STAR] = ACTIONS(923), - [anon_sym_PLUS_PLUS] = ACTIONS(923), - [anon_sym_SLASH] = ACTIONS(923), - [anon_sym_mod] = ACTIONS(923), - [anon_sym_SLASH_SLASH] = ACTIONS(923), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_bit_DASHshl] = ACTIONS(923), - [anon_sym_bit_DASHshr] = ACTIONS(923), - [anon_sym_EQ_EQ] = ACTIONS(923), - [anon_sym_BANG_EQ] = ACTIONS(923), - [anon_sym_LT2] = ACTIONS(923), - [anon_sym_LT_EQ] = ACTIONS(923), - [anon_sym_GT_EQ] = ACTIONS(923), - [anon_sym_not_DASHin] = ACTIONS(923), - [anon_sym_starts_DASHwith] = ACTIONS(923), - [anon_sym_ends_DASHwith] = ACTIONS(923), - [anon_sym_EQ_TILDE] = ACTIONS(923), - [anon_sym_BANG_TILDE] = ACTIONS(923), - [anon_sym_bit_DASHand] = ACTIONS(923), - [anon_sym_bit_DASHxor] = ACTIONS(923), - [anon_sym_bit_DASHor] = ACTIONS(923), - [anon_sym_and] = ACTIONS(923), - [anon_sym_xor] = ACTIONS(923), - [anon_sym_or] = ACTIONS(923), - [anon_sym_not] = ACTIONS(923), - [anon_sym_DOT_DOT2] = ACTIONS(923), - [anon_sym_DOT] = ACTIONS(956), - [anon_sym_DOT_DOT_EQ] = ACTIONS(923), - [anon_sym_DOT_DOT_LT] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(925), - [anon_sym_DOT_DOT_LT2] = ACTIONS(925), - [aux_sym__immediate_decimal_token2] = ACTIONS(954), - [anon_sym_null] = ACTIONS(923), - [anon_sym_true] = ACTIONS(923), - [anon_sym_false] = ACTIONS(923), - [aux_sym__val_number_decimal_token1] = ACTIONS(923), - [aux_sym__val_number_decimal_token2] = ACTIONS(923), - [anon_sym_DOT2] = ACTIONS(923), - [aux_sym__val_number_decimal_token3] = ACTIONS(923), - [aux_sym__val_number_token1] = ACTIONS(923), - [aux_sym__val_number_token2] = ACTIONS(923), - [aux_sym__val_number_token3] = ACTIONS(923), - [aux_sym__val_number_token4] = ACTIONS(923), - [aux_sym__val_number_token5] = ACTIONS(923), - [aux_sym__val_number_token6] = ACTIONS(923), - [anon_sym_0b] = ACTIONS(923), - [sym_filesize_unit] = ACTIONS(923), - [sym_duration_unit] = ACTIONS(923), - [anon_sym_0o] = ACTIONS(923), - [anon_sym_0x] = ACTIONS(923), - [sym_val_date] = ACTIONS(923), - [anon_sym_DQUOTE] = ACTIONS(923), - [sym__str_single_quotes] = ACTIONS(923), - [sym__str_back_ticks] = ACTIONS(923), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(923), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), - [anon_sym_CARET] = ACTIONS(923), - [aux_sym_unquoted_token5] = ACTIONS(923), + [245] = { + [sym_comment] = STATE(245), + [anon_sym_export] = ACTIONS(893), + [anon_sym_alias] = ACTIONS(893), + [anon_sym_let] = ACTIONS(893), + [anon_sym_let_DASHenv] = ACTIONS(893), + [anon_sym_mut] = ACTIONS(893), + [anon_sym_const] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(893), + [sym_cmd_identifier] = ACTIONS(893), + [anon_sym_LF] = ACTIONS(895), + [anon_sym_def] = ACTIONS(893), + [anon_sym_export_DASHenv] = ACTIONS(893), + [anon_sym_extern] = ACTIONS(893), + [anon_sym_module] = ACTIONS(893), + [anon_sym_use] = ACTIONS(893), + [anon_sym_LBRACK] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(893), + [anon_sym_RPAREN] = ACTIONS(893), + [anon_sym_DOLLAR] = ACTIONS(893), + [anon_sym_error] = ACTIONS(893), + [anon_sym_GT] = ACTIONS(893), + [anon_sym_DASH_DASH] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_break] = ACTIONS(893), + [anon_sym_continue] = ACTIONS(893), + [anon_sym_for] = ACTIONS(893), + [anon_sym_in] = ACTIONS(893), + [anon_sym_loop] = ACTIONS(893), + [anon_sym_while] = ACTIONS(893), + [anon_sym_do] = ACTIONS(893), + [anon_sym_if] = ACTIONS(893), + [anon_sym_match] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(893), + [anon_sym_DOT_DOT] = ACTIONS(893), + [anon_sym_try] = ACTIONS(893), + [anon_sym_return] = ACTIONS(893), + [anon_sym_source] = ACTIONS(893), + [anon_sym_source_DASHenv] = ACTIONS(893), + [anon_sym_register] = ACTIONS(893), + [anon_sym_hide] = ACTIONS(893), + [anon_sym_hide_DASHenv] = ACTIONS(893), + [anon_sym_overlay] = ACTIONS(893), + [anon_sym_as] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(893), + [anon_sym_where] = ACTIONS(893), + [anon_sym_STAR_STAR] = ACTIONS(893), + [anon_sym_PLUS_PLUS] = ACTIONS(893), + [anon_sym_SLASH] = ACTIONS(893), + [anon_sym_mod] = ACTIONS(893), + [anon_sym_SLASH_SLASH] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_bit_DASHshl] = ACTIONS(893), + [anon_sym_bit_DASHshr] = ACTIONS(893), + [anon_sym_EQ_EQ] = ACTIONS(893), + [anon_sym_BANG_EQ] = ACTIONS(893), + [anon_sym_LT2] = ACTIONS(893), + [anon_sym_LT_EQ] = ACTIONS(893), + [anon_sym_GT_EQ] = ACTIONS(893), + [anon_sym_not_DASHin] = ACTIONS(893), + [anon_sym_starts_DASHwith] = ACTIONS(893), + [anon_sym_ends_DASHwith] = ACTIONS(893), + [anon_sym_EQ_TILDE] = ACTIONS(893), + [anon_sym_BANG_TILDE] = ACTIONS(893), + [anon_sym_bit_DASHand] = ACTIONS(893), + [anon_sym_bit_DASHxor] = ACTIONS(893), + [anon_sym_bit_DASHor] = ACTIONS(893), + [anon_sym_and] = ACTIONS(893), + [anon_sym_xor] = ACTIONS(893), + [anon_sym_or] = ACTIONS(893), + [anon_sym_not] = ACTIONS(893), + [anon_sym_DOT_DOT2] = ACTIONS(893), + [anon_sym_DOT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ] = ACTIONS(893), + [anon_sym_DOT_DOT_LT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), + [anon_sym_DOT_DOT_LT2] = ACTIONS(895), + [anon_sym_null] = ACTIONS(893), + [anon_sym_true] = ACTIONS(893), + [anon_sym_false] = ACTIONS(893), + [aux_sym__val_number_decimal_token1] = ACTIONS(893), + [aux_sym__val_number_decimal_token2] = ACTIONS(893), + [anon_sym_DOT2] = ACTIONS(893), + [aux_sym__val_number_decimal_token3] = ACTIONS(893), + [aux_sym__val_number_token1] = ACTIONS(893), + [aux_sym__val_number_token2] = ACTIONS(893), + [aux_sym__val_number_token3] = ACTIONS(893), + [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(893), + [sym_filesize_unit] = ACTIONS(893), + [sym_duration_unit] = ACTIONS(893), + [anon_sym_0o] = ACTIONS(893), + [anon_sym_0x] = ACTIONS(893), + [sym_val_date] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(893), + [sym__str_single_quotes] = ACTIONS(893), + [sym__str_back_ticks] = ACTIONS(893), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(893), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(893), + [anon_sym_CARET] = ACTIONS(893), + [aux_sym_unquoted_token5] = ACTIONS(893), [anon_sym_POUND] = ACTIONS(113), }, - [262] = { - [sym_comment] = STATE(262), - [anon_sym_export] = ACTIONS(959), - [anon_sym_alias] = ACTIONS(959), - [anon_sym_let] = ACTIONS(959), - [anon_sym_let_DASHenv] = ACTIONS(959), - [anon_sym_mut] = ACTIONS(959), - [anon_sym_const] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(959), - [sym_cmd_identifier] = ACTIONS(959), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_def] = ACTIONS(959), - [anon_sym_export_DASHenv] = ACTIONS(959), - [anon_sym_extern] = ACTIONS(959), - [anon_sym_module] = ACTIONS(959), - [anon_sym_use] = ACTIONS(959), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_RPAREN] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_error] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH_DASH] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_break] = ACTIONS(959), - [anon_sym_continue] = ACTIONS(959), - [anon_sym_for] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_loop] = ACTIONS(959), - [anon_sym_while] = ACTIONS(959), - [anon_sym_do] = ACTIONS(959), - [anon_sym_if] = ACTIONS(959), - [anon_sym_match] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_RBRACE] = ACTIONS(959), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_try] = ACTIONS(959), - [anon_sym_return] = ACTIONS(959), - [anon_sym_source] = ACTIONS(959), - [anon_sym_source_DASHenv] = ACTIONS(959), - [anon_sym_register] = ACTIONS(959), - [anon_sym_hide] = ACTIONS(959), - [anon_sym_hide_DASHenv] = ACTIONS(959), - [anon_sym_overlay] = ACTIONS(959), - [anon_sym_as] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_where] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(959), - [anon_sym_PLUS_PLUS] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(959), - [anon_sym_SLASH_SLASH] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(959), - [anon_sym_bit_DASHshr] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(959), - [anon_sym_BANG_EQ] = ACTIONS(959), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(959), - [anon_sym_GT_EQ] = ACTIONS(959), - [anon_sym_not_DASHin] = ACTIONS(959), - [anon_sym_starts_DASHwith] = ACTIONS(959), - [anon_sym_ends_DASHwith] = ACTIONS(959), - [anon_sym_EQ_TILDE] = ACTIONS(959), - [anon_sym_BANG_TILDE] = ACTIONS(959), - [anon_sym_bit_DASHand] = ACTIONS(959), - [anon_sym_bit_DASHxor] = ACTIONS(959), - [anon_sym_bit_DASHor] = ACTIONS(959), - [anon_sym_and] = ACTIONS(959), - [anon_sym_xor] = ACTIONS(959), - [anon_sym_or] = ACTIONS(959), - [anon_sym_not] = ACTIONS(959), - [anon_sym_DOT_DOT2] = ACTIONS(963), - [anon_sym_DOT] = ACTIONS(965), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_DOT_DOT_LT] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(967), - [anon_sym_DOT_DOT_LT2] = ACTIONS(967), - [anon_sym_null] = ACTIONS(959), - [anon_sym_true] = ACTIONS(959), - [anon_sym_false] = ACTIONS(959), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(959), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(959), - [aux_sym__val_number_token1] = ACTIONS(959), - [aux_sym__val_number_token2] = ACTIONS(959), - [aux_sym__val_number_token3] = ACTIONS(959), - [aux_sym__val_number_token4] = ACTIONS(959), - [aux_sym__val_number_token5] = ACTIONS(959), - [aux_sym__val_number_token6] = ACTIONS(959), - [anon_sym_0b] = ACTIONS(959), - [sym_filesize_unit] = ACTIONS(969), - [sym_duration_unit] = ACTIONS(971), - [anon_sym_0o] = ACTIONS(959), - [anon_sym_0x] = ACTIONS(959), - [sym_val_date] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [sym__str_single_quotes] = ACTIONS(959), - [sym__str_back_ticks] = ACTIONS(959), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(959), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(959), - [anon_sym_CARET] = ACTIONS(959), - [aux_sym_unquoted_token5] = ACTIONS(973), + [246] = { + [sym_comment] = STATE(246), + [ts_builtin_sym_end] = ACTIONS(903), + [anon_sym_export] = ACTIONS(901), + [anon_sym_alias] = ACTIONS(901), + [anon_sym_let] = ACTIONS(901), + [anon_sym_let_DASHenv] = ACTIONS(901), + [anon_sym_mut] = ACTIONS(901), + [anon_sym_const] = ACTIONS(901), + [anon_sym_SEMI] = ACTIONS(901), + [sym_cmd_identifier] = ACTIONS(901), + [anon_sym_LF] = ACTIONS(903), + [anon_sym_def] = ACTIONS(901), + [anon_sym_export_DASHenv] = ACTIONS(901), + [anon_sym_extern] = ACTIONS(901), + [anon_sym_module] = ACTIONS(901), + [anon_sym_use] = ACTIONS(901), + [anon_sym_LBRACK] = ACTIONS(901), + [anon_sym_LPAREN] = ACTIONS(901), + [anon_sym_DOLLAR] = ACTIONS(901), + [anon_sym_error] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_DASH_DASH] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_break] = ACTIONS(901), + [anon_sym_continue] = ACTIONS(901), + [anon_sym_for] = ACTIONS(901), + [anon_sym_in] = ACTIONS(901), + [anon_sym_loop] = ACTIONS(901), + [anon_sym_while] = ACTIONS(901), + [anon_sym_do] = ACTIONS(901), + [anon_sym_if] = ACTIONS(901), + [anon_sym_match] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(901), + [anon_sym_DOT_DOT] = ACTIONS(901), + [anon_sym_try] = ACTIONS(901), + [anon_sym_return] = ACTIONS(901), + [anon_sym_source] = ACTIONS(901), + [anon_sym_source_DASHenv] = ACTIONS(901), + [anon_sym_register] = ACTIONS(901), + [anon_sym_hide] = ACTIONS(901), + [anon_sym_hide_DASHenv] = ACTIONS(901), + [anon_sym_overlay] = ACTIONS(901), + [anon_sym_as] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_where] = ACTIONS(901), + [anon_sym_STAR_STAR] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(901), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_mod] = ACTIONS(901), + [anon_sym_SLASH_SLASH] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_bit_DASHshl] = ACTIONS(901), + [anon_sym_bit_DASHshr] = ACTIONS(901), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT2] = ACTIONS(901), + [anon_sym_LT_EQ] = ACTIONS(901), + [anon_sym_GT_EQ] = ACTIONS(901), + [anon_sym_not_DASHin] = ACTIONS(901), + [anon_sym_starts_DASHwith] = ACTIONS(901), + [anon_sym_ends_DASHwith] = ACTIONS(901), + [anon_sym_EQ_TILDE] = ACTIONS(901), + [anon_sym_BANG_TILDE] = ACTIONS(901), + [anon_sym_bit_DASHand] = ACTIONS(901), + [anon_sym_bit_DASHxor] = ACTIONS(901), + [anon_sym_bit_DASHor] = ACTIONS(901), + [anon_sym_and] = ACTIONS(901), + [anon_sym_xor] = ACTIONS(901), + [anon_sym_or] = ACTIONS(901), + [anon_sym_not] = ACTIONS(901), + [anon_sym_DOT_DOT2] = ACTIONS(901), + [anon_sym_DOT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ] = ACTIONS(901), + [anon_sym_DOT_DOT_LT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(903), + [anon_sym_DOT_DOT_LT2] = ACTIONS(903), + [aux_sym__immediate_decimal_token2] = ACTIONS(959), + [anon_sym_null] = ACTIONS(901), + [anon_sym_true] = ACTIONS(901), + [anon_sym_false] = ACTIONS(901), + [aux_sym__val_number_decimal_token1] = ACTIONS(901), + [aux_sym__val_number_decimal_token2] = ACTIONS(901), + [anon_sym_DOT2] = ACTIONS(901), + [aux_sym__val_number_decimal_token3] = ACTIONS(901), + [aux_sym__val_number_token1] = ACTIONS(901), + [aux_sym__val_number_token2] = ACTIONS(901), + [aux_sym__val_number_token3] = ACTIONS(901), + [aux_sym__val_number_token4] = ACTIONS(901), + [aux_sym__val_number_token5] = ACTIONS(901), + [aux_sym__val_number_token6] = ACTIONS(901), + [anon_sym_0b] = ACTIONS(901), + [sym_filesize_unit] = ACTIONS(901), + [sym_duration_unit] = ACTIONS(901), + [anon_sym_0o] = ACTIONS(901), + [anon_sym_0x] = ACTIONS(901), + [sym_val_date] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [sym__str_single_quotes] = ACTIONS(901), + [sym__str_back_ticks] = ACTIONS(901), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(901), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(901), + [anon_sym_CARET] = ACTIONS(901), + [aux_sym_unquoted_token5] = ACTIONS(901), [anon_sym_POUND] = ACTIONS(113), }, - [263] = { - [sym_comment] = STATE(263), - [anon_sym_export] = ACTIONS(909), - [anon_sym_alias] = ACTIONS(909), - [anon_sym_let] = ACTIONS(909), - [anon_sym_let_DASHenv] = ACTIONS(909), - [anon_sym_mut] = ACTIONS(909), - [anon_sym_const] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(909), - [sym_cmd_identifier] = ACTIONS(909), - [anon_sym_LF] = ACTIONS(911), - [anon_sym_def] = ACTIONS(909), - [anon_sym_export_DASHenv] = ACTIONS(909), - [anon_sym_extern] = ACTIONS(909), - [anon_sym_module] = ACTIONS(909), - [anon_sym_use] = ACTIONS(909), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_RPAREN] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_error] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_break] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_for] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_loop] = ACTIONS(909), - [anon_sym_while] = ACTIONS(909), - [anon_sym_do] = ACTIONS(909), - [anon_sym_if] = ACTIONS(909), - [anon_sym_match] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_RBRACE] = ACTIONS(909), - [anon_sym_DOT_DOT] = ACTIONS(909), - [anon_sym_try] = ACTIONS(909), - [anon_sym_return] = ACTIONS(909), - [anon_sym_source] = ACTIONS(909), - [anon_sym_source_DASHenv] = ACTIONS(909), - [anon_sym_register] = ACTIONS(909), - [anon_sym_hide] = ACTIONS(909), - [anon_sym_hide_DASHenv] = ACTIONS(909), - [anon_sym_overlay] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_where] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(909), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(909), - [anon_sym_SLASH_SLASH] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(909), - [anon_sym_bit_DASHshr] = ACTIONS(909), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_not_DASHin] = ACTIONS(909), - [anon_sym_starts_DASHwith] = ACTIONS(909), - [anon_sym_ends_DASHwith] = ACTIONS(909), - [anon_sym_EQ_TILDE] = ACTIONS(909), - [anon_sym_BANG_TILDE] = ACTIONS(909), - [anon_sym_bit_DASHand] = ACTIONS(909), - [anon_sym_bit_DASHxor] = ACTIONS(909), - [anon_sym_bit_DASHor] = ACTIONS(909), - [anon_sym_and] = ACTIONS(909), - [anon_sym_xor] = ACTIONS(909), - [anon_sym_or] = ACTIONS(909), - [anon_sym_not] = ACTIONS(909), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [aux_sym__immediate_decimal_token1] = ACTIONS(975), - [aux_sym__immediate_decimal_token2] = ACTIONS(977), - [anon_sym_null] = ACTIONS(909), - [anon_sym_true] = ACTIONS(909), - [anon_sym_false] = ACTIONS(909), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(909), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(909), - [aux_sym__val_number_token1] = ACTIONS(909), - [aux_sym__val_number_token2] = ACTIONS(909), - [aux_sym__val_number_token3] = ACTIONS(909), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(909), - [aux_sym__val_number_token6] = ACTIONS(909), - [anon_sym_0b] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(909), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym__str_single_quotes] = ACTIONS(909), - [sym__str_back_ticks] = ACTIONS(909), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), - [anon_sym_CARET] = ACTIONS(909), - [aux_sym_unquoted_token5] = ACTIONS(909), + [247] = { + [sym_comment] = STATE(247), + [ts_builtin_sym_end] = ACTIONS(913), + [anon_sym_export] = ACTIONS(911), + [anon_sym_alias] = ACTIONS(911), + [anon_sym_let] = ACTIONS(911), + [anon_sym_let_DASHenv] = ACTIONS(911), + [anon_sym_mut] = ACTIONS(911), + [anon_sym_const] = ACTIONS(911), + [anon_sym_SEMI] = ACTIONS(911), + [sym_cmd_identifier] = ACTIONS(911), + [anon_sym_LF] = ACTIONS(913), + [anon_sym_def] = ACTIONS(911), + [anon_sym_export_DASHenv] = ACTIONS(911), + [anon_sym_extern] = ACTIONS(911), + [anon_sym_module] = ACTIONS(911), + [anon_sym_use] = ACTIONS(911), + [anon_sym_LBRACK] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_DOLLAR] = ACTIONS(911), + [anon_sym_error] = ACTIONS(911), + [anon_sym_GT] = ACTIONS(911), + [anon_sym_DASH_DASH] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_break] = ACTIONS(911), + [anon_sym_continue] = ACTIONS(911), + [anon_sym_for] = ACTIONS(911), + [anon_sym_in] = ACTIONS(911), + [anon_sym_loop] = ACTIONS(911), + [anon_sym_while] = ACTIONS(911), + [anon_sym_do] = ACTIONS(911), + [anon_sym_if] = ACTIONS(911), + [anon_sym_match] = ACTIONS(911), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_try] = ACTIONS(911), + [anon_sym_return] = ACTIONS(911), + [anon_sym_source] = ACTIONS(911), + [anon_sym_source_DASHenv] = ACTIONS(911), + [anon_sym_register] = ACTIONS(911), + [anon_sym_hide] = ACTIONS(911), + [anon_sym_hide_DASHenv] = ACTIONS(911), + [anon_sym_overlay] = ACTIONS(911), + [anon_sym_as] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(911), + [anon_sym_where] = ACTIONS(911), + [anon_sym_STAR_STAR] = ACTIONS(911), + [anon_sym_PLUS_PLUS] = ACTIONS(911), + [anon_sym_SLASH] = ACTIONS(911), + [anon_sym_mod] = ACTIONS(911), + [anon_sym_SLASH_SLASH] = ACTIONS(911), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_bit_DASHshl] = ACTIONS(911), + [anon_sym_bit_DASHshr] = ACTIONS(911), + [anon_sym_EQ_EQ] = ACTIONS(911), + [anon_sym_BANG_EQ] = ACTIONS(911), + [anon_sym_LT2] = ACTIONS(911), + [anon_sym_LT_EQ] = ACTIONS(911), + [anon_sym_GT_EQ] = ACTIONS(911), + [anon_sym_not_DASHin] = ACTIONS(911), + [anon_sym_starts_DASHwith] = ACTIONS(911), + [anon_sym_ends_DASHwith] = ACTIONS(911), + [anon_sym_EQ_TILDE] = ACTIONS(911), + [anon_sym_BANG_TILDE] = ACTIONS(911), + [anon_sym_bit_DASHand] = ACTIONS(911), + [anon_sym_bit_DASHxor] = ACTIONS(911), + [anon_sym_bit_DASHor] = ACTIONS(911), + [anon_sym_and] = ACTIONS(911), + [anon_sym_xor] = ACTIONS(911), + [anon_sym_or] = ACTIONS(911), + [anon_sym_not] = ACTIONS(911), + [anon_sym_DOT_DOT2] = ACTIONS(911), + [anon_sym_DOT] = ACTIONS(911), + [anon_sym_DOT_DOT_EQ] = ACTIONS(911), + [anon_sym_DOT_DOT_LT] = ACTIONS(911), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(913), + [anon_sym_DOT_DOT_LT2] = ACTIONS(913), + [aux_sym__immediate_decimal_token2] = ACTIONS(957), + [anon_sym_null] = ACTIONS(911), + [anon_sym_true] = ACTIONS(911), + [anon_sym_false] = ACTIONS(911), + [aux_sym__val_number_decimal_token1] = ACTIONS(911), + [aux_sym__val_number_decimal_token2] = ACTIONS(911), + [anon_sym_DOT2] = ACTIONS(911), + [aux_sym__val_number_decimal_token3] = ACTIONS(911), + [aux_sym__val_number_token1] = ACTIONS(911), + [aux_sym__val_number_token2] = ACTIONS(911), + [aux_sym__val_number_token3] = ACTIONS(911), + [aux_sym__val_number_token4] = ACTIONS(911), + [aux_sym__val_number_token5] = ACTIONS(911), + [aux_sym__val_number_token6] = ACTIONS(911), + [anon_sym_0b] = ACTIONS(911), + [sym_filesize_unit] = ACTIONS(911), + [sym_duration_unit] = ACTIONS(911), + [anon_sym_0o] = ACTIONS(911), + [anon_sym_0x] = ACTIONS(911), + [sym_val_date] = ACTIONS(911), + [anon_sym_DQUOTE] = ACTIONS(911), + [sym__str_single_quotes] = ACTIONS(911), + [sym__str_back_ticks] = ACTIONS(911), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(911), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(911), + [anon_sym_CARET] = ACTIONS(911), + [aux_sym_unquoted_token5] = ACTIONS(911), [anon_sym_POUND] = ACTIONS(113), }, - [264] = { - [sym_comment] = STATE(264), - [anon_sym_export] = ACTIONS(959), - [anon_sym_alias] = ACTIONS(959), - [anon_sym_let] = ACTIONS(959), - [anon_sym_let_DASHenv] = ACTIONS(959), - [anon_sym_mut] = ACTIONS(959), - [anon_sym_const] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(959), - [sym_cmd_identifier] = ACTIONS(959), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_def] = ACTIONS(959), - [anon_sym_export_DASHenv] = ACTIONS(959), - [anon_sym_extern] = ACTIONS(959), - [anon_sym_module] = ACTIONS(959), - [anon_sym_use] = ACTIONS(959), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_RPAREN] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_error] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH_DASH] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_break] = ACTIONS(959), - [anon_sym_continue] = ACTIONS(959), - [anon_sym_for] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_loop] = ACTIONS(959), - [anon_sym_while] = ACTIONS(959), - [anon_sym_do] = ACTIONS(959), - [anon_sym_if] = ACTIONS(959), - [anon_sym_match] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_RBRACE] = ACTIONS(959), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_try] = ACTIONS(959), - [anon_sym_return] = ACTIONS(959), - [anon_sym_source] = ACTIONS(959), - [anon_sym_source_DASHenv] = ACTIONS(959), - [anon_sym_register] = ACTIONS(959), - [anon_sym_hide] = ACTIONS(959), - [anon_sym_hide_DASHenv] = ACTIONS(959), - [anon_sym_overlay] = ACTIONS(959), - [anon_sym_as] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_where] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(959), - [anon_sym_PLUS_PLUS] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(959), - [anon_sym_SLASH_SLASH] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(959), - [anon_sym_bit_DASHshr] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(959), - [anon_sym_BANG_EQ] = ACTIONS(959), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(959), - [anon_sym_GT_EQ] = ACTIONS(959), - [anon_sym_not_DASHin] = ACTIONS(959), - [anon_sym_starts_DASHwith] = ACTIONS(959), - [anon_sym_ends_DASHwith] = ACTIONS(959), - [anon_sym_EQ_TILDE] = ACTIONS(959), - [anon_sym_BANG_TILDE] = ACTIONS(959), - [anon_sym_bit_DASHand] = ACTIONS(959), - [anon_sym_bit_DASHxor] = ACTIONS(959), - [anon_sym_bit_DASHor] = ACTIONS(959), - [anon_sym_and] = ACTIONS(959), - [anon_sym_xor] = ACTIONS(959), - [anon_sym_or] = ACTIONS(959), - [anon_sym_not] = ACTIONS(959), - [anon_sym_DOT_DOT2] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(981), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_DOT_DOT_LT] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(983), - [anon_sym_DOT_DOT_LT2] = ACTIONS(983), - [anon_sym_null] = ACTIONS(959), - [anon_sym_true] = ACTIONS(959), - [anon_sym_false] = ACTIONS(959), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(959), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(959), - [aux_sym__val_number_token1] = ACTIONS(959), - [aux_sym__val_number_token2] = ACTIONS(959), - [aux_sym__val_number_token3] = ACTIONS(959), - [aux_sym__val_number_token4] = ACTIONS(959), - [aux_sym__val_number_token5] = ACTIONS(959), - [aux_sym__val_number_token6] = ACTIONS(959), - [anon_sym_0b] = ACTIONS(959), - [sym_filesize_unit] = ACTIONS(969), - [sym_duration_unit] = ACTIONS(971), - [anon_sym_0o] = ACTIONS(959), - [anon_sym_0x] = ACTIONS(959), - [sym_val_date] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [sym__str_single_quotes] = ACTIONS(959), - [sym__str_back_ticks] = ACTIONS(959), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(959), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(959), - [anon_sym_CARET] = ACTIONS(959), - [aux_sym_unquoted_token5] = ACTIONS(946), + [248] = { + [sym_comment] = STATE(248), + [anon_sym_export] = ACTIONS(938), + [anon_sym_alias] = ACTIONS(938), + [anon_sym_let] = ACTIONS(938), + [anon_sym_let_DASHenv] = ACTIONS(938), + [anon_sym_mut] = ACTIONS(938), + [anon_sym_const] = ACTIONS(938), + [anon_sym_SEMI] = ACTIONS(938), + [sym_cmd_identifier] = ACTIONS(938), + [anon_sym_LF] = ACTIONS(940), + [anon_sym_def] = ACTIONS(938), + [anon_sym_export_DASHenv] = ACTIONS(938), + [anon_sym_extern] = ACTIONS(938), + [anon_sym_module] = ACTIONS(938), + [anon_sym_use] = ACTIONS(938), + [anon_sym_LBRACK] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(938), + [anon_sym_RPAREN] = ACTIONS(938), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_error] = ACTIONS(938), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_break] = ACTIONS(938), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_for] = ACTIONS(938), + [anon_sym_in] = ACTIONS(938), + [anon_sym_loop] = ACTIONS(938), + [anon_sym_while] = ACTIONS(938), + [anon_sym_do] = ACTIONS(938), + [anon_sym_if] = ACTIONS(938), + [anon_sym_match] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_RBRACE] = ACTIONS(938), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_try] = ACTIONS(938), + [anon_sym_return] = ACTIONS(938), + [anon_sym_source] = ACTIONS(938), + [anon_sym_source_DASHenv] = ACTIONS(938), + [anon_sym_register] = ACTIONS(938), + [anon_sym_hide] = ACTIONS(938), + [anon_sym_hide_DASHenv] = ACTIONS(938), + [anon_sym_overlay] = ACTIONS(938), + [anon_sym_as] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_where] = ACTIONS(938), + [anon_sym_STAR_STAR] = ACTIONS(938), + [anon_sym_PLUS_PLUS] = ACTIONS(938), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(938), + [anon_sym_SLASH_SLASH] = ACTIONS(938), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_bit_DASHshl] = ACTIONS(938), + [anon_sym_bit_DASHshr] = ACTIONS(938), + [anon_sym_EQ_EQ] = ACTIONS(938), + [anon_sym_BANG_EQ] = ACTIONS(938), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(938), + [anon_sym_GT_EQ] = ACTIONS(938), + [anon_sym_not_DASHin] = ACTIONS(938), + [anon_sym_starts_DASHwith] = ACTIONS(938), + [anon_sym_ends_DASHwith] = ACTIONS(938), + [anon_sym_EQ_TILDE] = ACTIONS(938), + [anon_sym_BANG_TILDE] = ACTIONS(938), + [anon_sym_bit_DASHand] = ACTIONS(938), + [anon_sym_bit_DASHxor] = ACTIONS(938), + [anon_sym_bit_DASHor] = ACTIONS(938), + [anon_sym_and] = ACTIONS(938), + [anon_sym_xor] = ACTIONS(938), + [anon_sym_or] = ACTIONS(938), + [anon_sym_not] = ACTIONS(938), + [anon_sym_DOT_DOT2] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(963), + [anon_sym_DOT_DOT_EQ] = ACTIONS(938), + [anon_sym_DOT_DOT_LT] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(965), + [anon_sym_DOT_DOT_LT2] = ACTIONS(965), + [anon_sym_null] = ACTIONS(938), + [anon_sym_true] = ACTIONS(938), + [anon_sym_false] = ACTIONS(938), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(938), + [anon_sym_DOT2] = ACTIONS(938), + [aux_sym__val_number_decimal_token3] = ACTIONS(938), + [aux_sym__val_number_token1] = ACTIONS(938), + [aux_sym__val_number_token2] = ACTIONS(938), + [aux_sym__val_number_token3] = ACTIONS(938), + [aux_sym__val_number_token4] = ACTIONS(938), + [aux_sym__val_number_token5] = ACTIONS(938), + [aux_sym__val_number_token6] = ACTIONS(938), + [anon_sym_0b] = ACTIONS(938), + [sym_filesize_unit] = ACTIONS(948), + [sym_duration_unit] = ACTIONS(950), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym__str_single_quotes] = ACTIONS(938), + [sym__str_back_ticks] = ACTIONS(938), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(938), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(938), + [anon_sym_CARET] = ACTIONS(938), + [aux_sym_unquoted_token5] = ACTIONS(930), [anon_sym_POUND] = ACTIONS(113), }, - [265] = { - [sym_comment] = STATE(265), - [ts_builtin_sym_end] = ACTIONS(919), - [anon_sym_export] = ACTIONS(917), - [anon_sym_alias] = ACTIONS(917), - [anon_sym_let] = ACTIONS(917), - [anon_sym_let_DASHenv] = ACTIONS(917), - [anon_sym_mut] = ACTIONS(917), - [anon_sym_const] = ACTIONS(917), - [anon_sym_SEMI] = ACTIONS(917), - [sym_cmd_identifier] = ACTIONS(917), - [anon_sym_LF] = ACTIONS(919), - [anon_sym_def] = ACTIONS(917), - [anon_sym_export_DASHenv] = ACTIONS(917), - [anon_sym_extern] = ACTIONS(917), - [anon_sym_module] = ACTIONS(917), - [anon_sym_use] = ACTIONS(917), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_LPAREN] = ACTIONS(917), - [anon_sym_DOLLAR] = ACTIONS(917), - [anon_sym_error] = ACTIONS(917), - [anon_sym_GT] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_break] = ACTIONS(917), - [anon_sym_continue] = ACTIONS(917), - [anon_sym_for] = ACTIONS(917), - [anon_sym_in] = ACTIONS(917), - [anon_sym_loop] = ACTIONS(917), - [anon_sym_while] = ACTIONS(917), - [anon_sym_do] = ACTIONS(917), - [anon_sym_if] = ACTIONS(917), - [anon_sym_match] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(917), - [anon_sym_DOT_DOT] = ACTIONS(917), - [anon_sym_try] = ACTIONS(917), - [anon_sym_return] = ACTIONS(917), - [anon_sym_source] = ACTIONS(917), - [anon_sym_source_DASHenv] = ACTIONS(917), - [anon_sym_register] = ACTIONS(917), - [anon_sym_hide] = ACTIONS(917), - [anon_sym_hide_DASHenv] = ACTIONS(917), - [anon_sym_overlay] = ACTIONS(917), - [anon_sym_as] = ACTIONS(917), - [anon_sym_STAR] = ACTIONS(917), - [anon_sym_where] = ACTIONS(917), - [anon_sym_STAR_STAR] = ACTIONS(917), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_mod] = ACTIONS(917), - [anon_sym_SLASH_SLASH] = ACTIONS(917), - [anon_sym_PLUS] = ACTIONS(917), - [anon_sym_bit_DASHshl] = ACTIONS(917), - [anon_sym_bit_DASHshr] = ACTIONS(917), - [anon_sym_EQ_EQ] = ACTIONS(917), - [anon_sym_BANG_EQ] = ACTIONS(917), - [anon_sym_LT2] = ACTIONS(917), - [anon_sym_LT_EQ] = ACTIONS(917), - [anon_sym_GT_EQ] = ACTIONS(917), - [anon_sym_not_DASHin] = ACTIONS(917), - [anon_sym_starts_DASHwith] = ACTIONS(917), - [anon_sym_ends_DASHwith] = ACTIONS(917), - [anon_sym_EQ_TILDE] = ACTIONS(917), - [anon_sym_BANG_TILDE] = ACTIONS(917), - [anon_sym_bit_DASHand] = ACTIONS(917), - [anon_sym_bit_DASHxor] = ACTIONS(917), - [anon_sym_bit_DASHor] = ACTIONS(917), - [anon_sym_and] = ACTIONS(917), - [anon_sym_xor] = ACTIONS(917), - [anon_sym_or] = ACTIONS(917), - [anon_sym_not] = ACTIONS(917), - [anon_sym_DOT_DOT2] = ACTIONS(917), - [anon_sym_DOT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ] = ACTIONS(917), - [anon_sym_DOT_DOT_LT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(919), - [anon_sym_DOT_DOT_LT2] = ACTIONS(919), - [aux_sym__immediate_decimal_token2] = ACTIONS(985), - [anon_sym_null] = ACTIONS(917), - [anon_sym_true] = ACTIONS(917), - [anon_sym_false] = ACTIONS(917), - [aux_sym__val_number_decimal_token1] = ACTIONS(917), - [aux_sym__val_number_decimal_token2] = ACTIONS(917), - [anon_sym_DOT2] = ACTIONS(917), - [aux_sym__val_number_decimal_token3] = ACTIONS(917), - [aux_sym__val_number_token1] = ACTIONS(917), - [aux_sym__val_number_token2] = ACTIONS(917), - [aux_sym__val_number_token3] = ACTIONS(917), - [aux_sym__val_number_token4] = ACTIONS(917), - [aux_sym__val_number_token5] = ACTIONS(917), - [aux_sym__val_number_token6] = ACTIONS(917), - [anon_sym_0b] = ACTIONS(917), - [sym_filesize_unit] = ACTIONS(917), - [sym_duration_unit] = ACTIONS(917), - [anon_sym_0o] = ACTIONS(917), - [anon_sym_0x] = ACTIONS(917), - [sym_val_date] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(917), - [sym__str_single_quotes] = ACTIONS(917), - [sym__str_back_ticks] = ACTIONS(917), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(917), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(917), - [anon_sym_CARET] = ACTIONS(917), - [aux_sym_unquoted_token5] = ACTIONS(917), + [249] = { + [sym__immediate_decimal] = STATE(10080), + [sym_comment] = STATE(249), + [anon_sym_export] = ACTIONS(920), + [anon_sym_alias] = ACTIONS(920), + [anon_sym_let] = ACTIONS(920), + [anon_sym_let_DASHenv] = ACTIONS(920), + [anon_sym_mut] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(920), + [sym_cmd_identifier] = ACTIONS(920), + [anon_sym_LF] = ACTIONS(922), + [anon_sym_def] = ACTIONS(920), + [anon_sym_export_DASHenv] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym_module] = ACTIONS(920), + [anon_sym_use] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_RPAREN] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_error] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_in] = ACTIONS(920), + [anon_sym_loop] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_match] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_RBRACE] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_try] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_source] = ACTIONS(920), + [anon_sym_source_DASHenv] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_hide] = ACTIONS(920), + [anon_sym_hide_DASHenv] = ACTIONS(920), + [anon_sym_overlay] = ACTIONS(920), + [anon_sym_as] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_where] = ACTIONS(920), + [anon_sym_STAR_STAR] = ACTIONS(920), + [anon_sym_PLUS_PLUS] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_mod] = ACTIONS(920), + [anon_sym_SLASH_SLASH] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_bit_DASHshl] = ACTIONS(920), + [anon_sym_bit_DASHshr] = ACTIONS(920), + [anon_sym_EQ_EQ] = ACTIONS(920), + [anon_sym_BANG_EQ] = ACTIONS(920), + [anon_sym_LT2] = ACTIONS(920), + [anon_sym_LT_EQ] = ACTIONS(920), + [anon_sym_GT_EQ] = ACTIONS(920), + [anon_sym_not_DASHin] = ACTIONS(920), + [anon_sym_starts_DASHwith] = ACTIONS(920), + [anon_sym_ends_DASHwith] = ACTIONS(920), + [anon_sym_EQ_TILDE] = ACTIONS(920), + [anon_sym_BANG_TILDE] = ACTIONS(920), + [anon_sym_bit_DASHand] = ACTIONS(920), + [anon_sym_bit_DASHxor] = ACTIONS(920), + [anon_sym_bit_DASHor] = ACTIONS(920), + [anon_sym_and] = ACTIONS(920), + [anon_sym_xor] = ACTIONS(920), + [anon_sym_or] = ACTIONS(920), + [anon_sym_not] = ACTIONS(920), + [anon_sym_DOT] = ACTIONS(967), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [aux_sym__immediate_decimal_token1] = ACTIONS(969), + [aux_sym__immediate_decimal_token3] = ACTIONS(969), + [aux_sym__immediate_decimal_token4] = ACTIONS(971), + [anon_sym_null] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), + [anon_sym_CARET] = ACTIONS(920), + [aux_sym_unquoted_token4] = ACTIONS(930), [anon_sym_POUND] = ACTIONS(113), }, - [266] = { - [sym_path] = STATE(311), - [sym_comment] = STATE(266), - [aux_sym_cell_path_repeat1] = STATE(270), - [anon_sym_export] = ACTIONS(987), - [anon_sym_alias] = ACTIONS(987), - [anon_sym_let] = ACTIONS(987), - [anon_sym_let_DASHenv] = ACTIONS(987), - [anon_sym_mut] = ACTIONS(987), - [anon_sym_const] = ACTIONS(987), - [anon_sym_SEMI] = ACTIONS(987), - [sym_cmd_identifier] = ACTIONS(987), - [anon_sym_LF] = ACTIONS(989), - [anon_sym_def] = ACTIONS(987), - [anon_sym_export_DASHenv] = ACTIONS(987), - [anon_sym_extern] = ACTIONS(987), - [anon_sym_module] = ACTIONS(987), - [anon_sym_use] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(987), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_RPAREN] = ACTIONS(987), - [anon_sym_DOLLAR] = ACTIONS(987), - [anon_sym_error] = ACTIONS(987), - [anon_sym_GT] = ACTIONS(987), - [anon_sym_DASH_DASH] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_break] = ACTIONS(987), - [anon_sym_continue] = ACTIONS(987), - [anon_sym_for] = ACTIONS(987), - [anon_sym_in] = ACTIONS(987), - [anon_sym_loop] = ACTIONS(987), - [anon_sym_while] = ACTIONS(987), - [anon_sym_do] = ACTIONS(987), - [anon_sym_if] = ACTIONS(987), - [anon_sym_match] = ACTIONS(987), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_RBRACE] = ACTIONS(987), - [anon_sym_DOT_DOT] = ACTIONS(987), - [anon_sym_try] = ACTIONS(987), - [anon_sym_return] = ACTIONS(987), - [anon_sym_source] = ACTIONS(987), - [anon_sym_source_DASHenv] = ACTIONS(987), - [anon_sym_register] = ACTIONS(987), - [anon_sym_hide] = ACTIONS(987), - [anon_sym_hide_DASHenv] = ACTIONS(987), - [anon_sym_overlay] = ACTIONS(987), - [anon_sym_as] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(987), - [anon_sym_where] = ACTIONS(987), - [anon_sym_STAR_STAR] = ACTIONS(987), - [anon_sym_PLUS_PLUS] = ACTIONS(987), - [anon_sym_SLASH] = ACTIONS(987), - [anon_sym_mod] = ACTIONS(987), - [anon_sym_SLASH_SLASH] = ACTIONS(987), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_bit_DASHshl] = ACTIONS(987), - [anon_sym_bit_DASHshr] = ACTIONS(987), - [anon_sym_EQ_EQ] = ACTIONS(987), - [anon_sym_BANG_EQ] = ACTIONS(987), - [anon_sym_LT2] = ACTIONS(987), - [anon_sym_LT_EQ] = ACTIONS(987), - [anon_sym_GT_EQ] = ACTIONS(987), - [anon_sym_not_DASHin] = ACTIONS(987), - [anon_sym_starts_DASHwith] = ACTIONS(987), - [anon_sym_ends_DASHwith] = ACTIONS(987), - [anon_sym_EQ_TILDE] = ACTIONS(987), - [anon_sym_BANG_TILDE] = ACTIONS(987), - [anon_sym_bit_DASHand] = ACTIONS(987), - [anon_sym_bit_DASHxor] = ACTIONS(987), - [anon_sym_bit_DASHor] = ACTIONS(987), - [anon_sym_and] = ACTIONS(987), - [anon_sym_xor] = ACTIONS(987), - [anon_sym_or] = ACTIONS(987), - [anon_sym_not] = ACTIONS(987), - [anon_sym_DOT_DOT2] = ACTIONS(987), - [anon_sym_DOT] = ACTIONS(991), - [anon_sym_DOT_DOT_EQ] = ACTIONS(987), - [anon_sym_DOT_DOT_LT] = ACTIONS(987), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(989), - [anon_sym_DOT_DOT_LT2] = ACTIONS(989), - [anon_sym_null] = ACTIONS(987), - [anon_sym_true] = ACTIONS(987), - [anon_sym_false] = ACTIONS(987), - [aux_sym__val_number_decimal_token1] = ACTIONS(987), - [aux_sym__val_number_decimal_token2] = ACTIONS(987), - [anon_sym_DOT2] = ACTIONS(987), - [aux_sym__val_number_decimal_token3] = ACTIONS(987), - [aux_sym__val_number_token1] = ACTIONS(987), - [aux_sym__val_number_token2] = ACTIONS(987), - [aux_sym__val_number_token3] = ACTIONS(987), - [aux_sym__val_number_token4] = ACTIONS(987), - [aux_sym__val_number_token5] = ACTIONS(987), - [aux_sym__val_number_token6] = ACTIONS(987), - [anon_sym_0b] = ACTIONS(987), - [anon_sym_0o] = ACTIONS(987), - [anon_sym_0x] = ACTIONS(987), - [sym_val_date] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(987), - [sym__str_single_quotes] = ACTIONS(987), - [sym__str_back_ticks] = ACTIONS(987), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(987), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), + [250] = { + [sym_comment] = STATE(250), + [ts_builtin_sym_end] = ACTIONS(940), + [anon_sym_export] = ACTIONS(938), + [anon_sym_alias] = ACTIONS(938), + [anon_sym_let] = ACTIONS(938), + [anon_sym_let_DASHenv] = ACTIONS(938), + [anon_sym_mut] = ACTIONS(938), + [anon_sym_const] = ACTIONS(938), + [anon_sym_SEMI] = ACTIONS(938), + [sym_cmd_identifier] = ACTIONS(938), + [anon_sym_LF] = ACTIONS(940), + [anon_sym_def] = ACTIONS(938), + [anon_sym_export_DASHenv] = ACTIONS(938), + [anon_sym_extern] = ACTIONS(938), + [anon_sym_module] = ACTIONS(938), + [anon_sym_use] = ACTIONS(938), + [anon_sym_LBRACK] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(938), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_error] = ACTIONS(938), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_break] = ACTIONS(938), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_for] = ACTIONS(938), + [anon_sym_in] = ACTIONS(938), + [anon_sym_loop] = ACTIONS(938), + [anon_sym_while] = ACTIONS(938), + [anon_sym_do] = ACTIONS(938), + [anon_sym_if] = ACTIONS(938), + [anon_sym_match] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_try] = ACTIONS(938), + [anon_sym_return] = ACTIONS(938), + [anon_sym_source] = ACTIONS(938), + [anon_sym_source_DASHenv] = ACTIONS(938), + [anon_sym_register] = ACTIONS(938), + [anon_sym_hide] = ACTIONS(938), + [anon_sym_hide_DASHenv] = ACTIONS(938), + [anon_sym_overlay] = ACTIONS(938), + [anon_sym_as] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_where] = ACTIONS(938), + [anon_sym_STAR_STAR] = ACTIONS(938), + [anon_sym_PLUS_PLUS] = ACTIONS(938), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(938), + [anon_sym_SLASH_SLASH] = ACTIONS(938), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_bit_DASHshl] = ACTIONS(938), + [anon_sym_bit_DASHshr] = ACTIONS(938), + [anon_sym_EQ_EQ] = ACTIONS(938), + [anon_sym_BANG_EQ] = ACTIONS(938), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(938), + [anon_sym_GT_EQ] = ACTIONS(938), + [anon_sym_not_DASHin] = ACTIONS(938), + [anon_sym_starts_DASHwith] = ACTIONS(938), + [anon_sym_ends_DASHwith] = ACTIONS(938), + [anon_sym_EQ_TILDE] = ACTIONS(938), + [anon_sym_BANG_TILDE] = ACTIONS(938), + [anon_sym_bit_DASHand] = ACTIONS(938), + [anon_sym_bit_DASHxor] = ACTIONS(938), + [anon_sym_bit_DASHor] = ACTIONS(938), + [anon_sym_and] = ACTIONS(938), + [anon_sym_xor] = ACTIONS(938), + [anon_sym_or] = ACTIONS(938), + [anon_sym_not] = ACTIONS(938), + [anon_sym_DOT_DOT2] = ACTIONS(973), + [anon_sym_DOT] = ACTIONS(975), + [anon_sym_DOT_DOT_EQ] = ACTIONS(938), + [anon_sym_DOT_DOT_LT] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(977), + [anon_sym_DOT_DOT_LT2] = ACTIONS(977), + [anon_sym_null] = ACTIONS(938), + [anon_sym_true] = ACTIONS(938), + [anon_sym_false] = ACTIONS(938), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(938), + [anon_sym_DOT2] = ACTIONS(938), + [aux_sym__val_number_decimal_token3] = ACTIONS(938), + [aux_sym__val_number_token1] = ACTIONS(938), + [aux_sym__val_number_token2] = ACTIONS(938), + [aux_sym__val_number_token3] = ACTIONS(938), + [aux_sym__val_number_token4] = ACTIONS(938), + [aux_sym__val_number_token5] = ACTIONS(938), + [aux_sym__val_number_token6] = ACTIONS(938), + [anon_sym_0b] = ACTIONS(938), + [sym_filesize_unit] = ACTIONS(979), + [sym_duration_unit] = ACTIONS(981), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym__str_single_quotes] = ACTIONS(938), + [sym__str_back_ticks] = ACTIONS(938), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(938), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(938), + [anon_sym_CARET] = ACTIONS(938), + [aux_sym_unquoted_token5] = ACTIONS(983), [anon_sym_POUND] = ACTIONS(113), }, - [267] = { - [sym_comment] = STATE(267), - [anon_sym_export] = ACTIONS(917), - [anon_sym_alias] = ACTIONS(917), - [anon_sym_let] = ACTIONS(917), - [anon_sym_let_DASHenv] = ACTIONS(917), - [anon_sym_mut] = ACTIONS(917), - [anon_sym_const] = ACTIONS(917), - [anon_sym_SEMI] = ACTIONS(917), - [sym_cmd_identifier] = ACTIONS(917), - [anon_sym_LF] = ACTIONS(919), - [anon_sym_def] = ACTIONS(917), - [anon_sym_export_DASHenv] = ACTIONS(917), - [anon_sym_extern] = ACTIONS(917), - [anon_sym_module] = ACTIONS(917), - [anon_sym_use] = ACTIONS(917), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_LPAREN] = ACTIONS(917), - [anon_sym_RPAREN] = ACTIONS(917), - [anon_sym_DOLLAR] = ACTIONS(917), - [anon_sym_error] = ACTIONS(917), - [anon_sym_GT] = ACTIONS(917), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_break] = ACTIONS(917), - [anon_sym_continue] = ACTIONS(917), - [anon_sym_for] = ACTIONS(917), - [anon_sym_in] = ACTIONS(917), - [anon_sym_loop] = ACTIONS(917), - [anon_sym_while] = ACTIONS(917), - [anon_sym_do] = ACTIONS(917), - [anon_sym_if] = ACTIONS(917), - [anon_sym_match] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(917), - [anon_sym_RBRACE] = ACTIONS(917), - [anon_sym_DOT_DOT] = ACTIONS(917), - [anon_sym_try] = ACTIONS(917), - [anon_sym_return] = ACTIONS(917), - [anon_sym_source] = ACTIONS(917), - [anon_sym_source_DASHenv] = ACTIONS(917), - [anon_sym_register] = ACTIONS(917), - [anon_sym_hide] = ACTIONS(917), - [anon_sym_hide_DASHenv] = ACTIONS(917), - [anon_sym_overlay] = ACTIONS(917), - [anon_sym_STAR] = ACTIONS(917), - [anon_sym_where] = ACTIONS(917), - [anon_sym_STAR_STAR] = ACTIONS(917), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_mod] = ACTIONS(917), - [anon_sym_SLASH_SLASH] = ACTIONS(917), - [anon_sym_PLUS] = ACTIONS(917), - [anon_sym_bit_DASHshl] = ACTIONS(917), - [anon_sym_bit_DASHshr] = ACTIONS(917), - [anon_sym_EQ_EQ] = ACTIONS(917), - [anon_sym_BANG_EQ] = ACTIONS(917), - [anon_sym_LT2] = ACTIONS(917), - [anon_sym_LT_EQ] = ACTIONS(917), - [anon_sym_GT_EQ] = ACTIONS(917), - [anon_sym_not_DASHin] = ACTIONS(917), - [anon_sym_starts_DASHwith] = ACTIONS(917), - [anon_sym_ends_DASHwith] = ACTIONS(917), - [anon_sym_EQ_TILDE] = ACTIONS(917), - [anon_sym_BANG_TILDE] = ACTIONS(917), - [anon_sym_bit_DASHand] = ACTIONS(917), - [anon_sym_bit_DASHxor] = ACTIONS(917), - [anon_sym_bit_DASHor] = ACTIONS(917), - [anon_sym_and] = ACTIONS(917), - [anon_sym_xor] = ACTIONS(917), - [anon_sym_or] = ACTIONS(917), - [anon_sym_not] = ACTIONS(917), - [anon_sym_DOT_DOT2] = ACTIONS(917), - [anon_sym_DOT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ] = ACTIONS(917), - [anon_sym_DOT_DOT_LT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(919), - [anon_sym_DOT_DOT_LT2] = ACTIONS(919), - [aux_sym__immediate_decimal_token2] = ACTIONS(993), - [anon_sym_null] = ACTIONS(917), - [anon_sym_true] = ACTIONS(917), - [anon_sym_false] = ACTIONS(917), - [aux_sym__val_number_decimal_token1] = ACTIONS(917), - [aux_sym__val_number_decimal_token2] = ACTIONS(917), - [anon_sym_DOT2] = ACTIONS(917), - [aux_sym__val_number_decimal_token3] = ACTIONS(917), - [aux_sym__val_number_token1] = ACTIONS(917), - [aux_sym__val_number_token2] = ACTIONS(917), - [aux_sym__val_number_token3] = ACTIONS(917), - [aux_sym__val_number_token4] = ACTIONS(917), - [aux_sym__val_number_token5] = ACTIONS(917), - [aux_sym__val_number_token6] = ACTIONS(917), - [anon_sym_0b] = ACTIONS(917), - [sym_filesize_unit] = ACTIONS(917), - [sym_duration_unit] = ACTIONS(917), - [anon_sym_0o] = ACTIONS(917), - [anon_sym_0x] = ACTIONS(917), - [sym_val_date] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(917), - [sym__str_single_quotes] = ACTIONS(917), - [sym__str_back_ticks] = ACTIONS(917), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(917), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(917), - [anon_sym_CARET] = ACTIONS(917), - [aux_sym_unquoted_token5] = ACTIONS(917), + [251] = { + [sym_path] = STATE(271), + [sym_comment] = STATE(251), + [aux_sym_cell_path_repeat1] = STATE(251), + [anon_sym_export] = ACTIONS(985), + [anon_sym_alias] = ACTIONS(985), + [anon_sym_let] = ACTIONS(985), + [anon_sym_let_DASHenv] = ACTIONS(985), + [anon_sym_mut] = ACTIONS(985), + [anon_sym_const] = ACTIONS(985), + [anon_sym_SEMI] = ACTIONS(985), + [sym_cmd_identifier] = ACTIONS(985), + [anon_sym_LF] = ACTIONS(987), + [anon_sym_def] = ACTIONS(985), + [anon_sym_export_DASHenv] = ACTIONS(985), + [anon_sym_extern] = ACTIONS(985), + [anon_sym_module] = ACTIONS(985), + [anon_sym_use] = ACTIONS(985), + [anon_sym_LBRACK] = ACTIONS(985), + [anon_sym_LPAREN] = ACTIONS(985), + [anon_sym_RPAREN] = ACTIONS(985), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_error] = ACTIONS(985), + [anon_sym_GT] = ACTIONS(985), + [anon_sym_DASH_DASH] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_break] = ACTIONS(985), + [anon_sym_continue] = ACTIONS(985), + [anon_sym_for] = ACTIONS(985), + [anon_sym_in] = ACTIONS(985), + [anon_sym_loop] = ACTIONS(985), + [anon_sym_while] = ACTIONS(985), + [anon_sym_do] = ACTIONS(985), + [anon_sym_if] = ACTIONS(985), + [anon_sym_match] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(985), + [anon_sym_RBRACE] = ACTIONS(985), + [anon_sym_DOT_DOT] = ACTIONS(985), + [anon_sym_try] = ACTIONS(985), + [anon_sym_return] = ACTIONS(985), + [anon_sym_source] = ACTIONS(985), + [anon_sym_source_DASHenv] = ACTIONS(985), + [anon_sym_register] = ACTIONS(985), + [anon_sym_hide] = ACTIONS(985), + [anon_sym_hide_DASHenv] = ACTIONS(985), + [anon_sym_overlay] = ACTIONS(985), + [anon_sym_as] = ACTIONS(985), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_where] = ACTIONS(985), + [anon_sym_STAR_STAR] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(985), + [anon_sym_SLASH] = ACTIONS(985), + [anon_sym_mod] = ACTIONS(985), + [anon_sym_SLASH_SLASH] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_bit_DASHshl] = ACTIONS(985), + [anon_sym_bit_DASHshr] = ACTIONS(985), + [anon_sym_EQ_EQ] = ACTIONS(985), + [anon_sym_BANG_EQ] = ACTIONS(985), + [anon_sym_LT2] = ACTIONS(985), + [anon_sym_LT_EQ] = ACTIONS(985), + [anon_sym_GT_EQ] = ACTIONS(985), + [anon_sym_not_DASHin] = ACTIONS(985), + [anon_sym_starts_DASHwith] = ACTIONS(985), + [anon_sym_ends_DASHwith] = ACTIONS(985), + [anon_sym_EQ_TILDE] = ACTIONS(985), + [anon_sym_BANG_TILDE] = ACTIONS(985), + [anon_sym_bit_DASHand] = ACTIONS(985), + [anon_sym_bit_DASHxor] = ACTIONS(985), + [anon_sym_bit_DASHor] = ACTIONS(985), + [anon_sym_and] = ACTIONS(985), + [anon_sym_xor] = ACTIONS(985), + [anon_sym_or] = ACTIONS(985), + [anon_sym_not] = ACTIONS(985), + [anon_sym_DOT_DOT2] = ACTIONS(985), + [anon_sym_DOT] = ACTIONS(989), + [anon_sym_DOT_DOT_EQ] = ACTIONS(985), + [anon_sym_DOT_DOT_LT] = ACTIONS(985), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(987), + [anon_sym_DOT_DOT_LT2] = ACTIONS(987), + [anon_sym_null] = ACTIONS(985), + [anon_sym_true] = ACTIONS(985), + [anon_sym_false] = ACTIONS(985), + [aux_sym__val_number_decimal_token1] = ACTIONS(985), + [aux_sym__val_number_decimal_token2] = ACTIONS(985), + [anon_sym_DOT2] = ACTIONS(985), + [aux_sym__val_number_decimal_token3] = ACTIONS(985), + [aux_sym__val_number_token1] = ACTIONS(985), + [aux_sym__val_number_token2] = ACTIONS(985), + [aux_sym__val_number_token3] = ACTIONS(985), + [aux_sym__val_number_token4] = ACTIONS(985), + [aux_sym__val_number_token5] = ACTIONS(985), + [aux_sym__val_number_token6] = ACTIONS(985), + [anon_sym_0b] = ACTIONS(985), + [anon_sym_0o] = ACTIONS(985), + [anon_sym_0x] = ACTIONS(985), + [sym_val_date] = ACTIONS(985), + [anon_sym_DQUOTE] = ACTIONS(985), + [sym__str_single_quotes] = ACTIONS(985), + [sym__str_back_ticks] = ACTIONS(985), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(985), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(985), [anon_sym_POUND] = ACTIONS(113), }, - [268] = { - [sym_cell_path] = STATE(343), - [sym_path] = STATE(266), - [sym_comment] = STATE(268), - [anon_sym_export] = ACTIONS(995), - [anon_sym_alias] = ACTIONS(995), - [anon_sym_let] = ACTIONS(995), - [anon_sym_let_DASHenv] = ACTIONS(995), - [anon_sym_mut] = ACTIONS(995), - [anon_sym_const] = ACTIONS(995), - [anon_sym_SEMI] = ACTIONS(995), - [sym_cmd_identifier] = ACTIONS(995), - [anon_sym_LF] = ACTIONS(997), - [anon_sym_def] = ACTIONS(995), - [anon_sym_export_DASHenv] = ACTIONS(995), - [anon_sym_extern] = ACTIONS(995), - [anon_sym_module] = ACTIONS(995), - [anon_sym_use] = ACTIONS(995), - [anon_sym_LBRACK] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_RPAREN] = ACTIONS(995), - [anon_sym_DOLLAR] = ACTIONS(995), - [anon_sym_error] = ACTIONS(995), - [anon_sym_GT] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_break] = ACTIONS(995), - [anon_sym_continue] = ACTIONS(995), - [anon_sym_for] = ACTIONS(995), - [anon_sym_in] = ACTIONS(995), - [anon_sym_loop] = ACTIONS(995), - [anon_sym_while] = ACTIONS(995), - [anon_sym_do] = ACTIONS(995), - [anon_sym_if] = ACTIONS(995), - [anon_sym_match] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_RBRACE] = ACTIONS(995), - [anon_sym_DOT_DOT] = ACTIONS(995), - [anon_sym_try] = ACTIONS(995), - [anon_sym_return] = ACTIONS(995), - [anon_sym_source] = ACTIONS(995), - [anon_sym_source_DASHenv] = ACTIONS(995), - [anon_sym_register] = ACTIONS(995), - [anon_sym_hide] = ACTIONS(995), - [anon_sym_hide_DASHenv] = ACTIONS(995), - [anon_sym_overlay] = ACTIONS(995), - [anon_sym_as] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_where] = ACTIONS(995), - [anon_sym_STAR_STAR] = ACTIONS(995), - [anon_sym_PLUS_PLUS] = ACTIONS(995), - [anon_sym_SLASH] = ACTIONS(995), - [anon_sym_mod] = ACTIONS(995), - [anon_sym_SLASH_SLASH] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_bit_DASHshl] = ACTIONS(995), - [anon_sym_bit_DASHshr] = ACTIONS(995), - [anon_sym_EQ_EQ] = ACTIONS(995), - [anon_sym_BANG_EQ] = ACTIONS(995), - [anon_sym_LT2] = ACTIONS(995), - [anon_sym_LT_EQ] = ACTIONS(995), - [anon_sym_GT_EQ] = ACTIONS(995), - [anon_sym_not_DASHin] = ACTIONS(995), - [anon_sym_starts_DASHwith] = ACTIONS(995), - [anon_sym_ends_DASHwith] = ACTIONS(995), - [anon_sym_EQ_TILDE] = ACTIONS(995), - [anon_sym_BANG_TILDE] = ACTIONS(995), - [anon_sym_bit_DASHand] = ACTIONS(995), - [anon_sym_bit_DASHxor] = ACTIONS(995), - [anon_sym_bit_DASHor] = ACTIONS(995), - [anon_sym_and] = ACTIONS(995), - [anon_sym_xor] = ACTIONS(995), - [anon_sym_or] = ACTIONS(995), - [anon_sym_not] = ACTIONS(995), - [anon_sym_DOT_DOT2] = ACTIONS(995), - [anon_sym_DOT] = ACTIONS(991), - [anon_sym_DOT_DOT_EQ] = ACTIONS(995), - [anon_sym_DOT_DOT_LT] = ACTIONS(995), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(997), - [anon_sym_DOT_DOT_LT2] = ACTIONS(997), - [anon_sym_null] = ACTIONS(995), - [anon_sym_true] = ACTIONS(995), - [anon_sym_false] = ACTIONS(995), - [aux_sym__val_number_decimal_token1] = ACTIONS(995), - [aux_sym__val_number_decimal_token2] = ACTIONS(995), - [anon_sym_DOT2] = ACTIONS(995), - [aux_sym__val_number_decimal_token3] = ACTIONS(995), - [aux_sym__val_number_token1] = ACTIONS(995), - [aux_sym__val_number_token2] = ACTIONS(995), - [aux_sym__val_number_token3] = ACTIONS(995), - [aux_sym__val_number_token4] = ACTIONS(995), - [aux_sym__val_number_token5] = ACTIONS(995), - [aux_sym__val_number_token6] = ACTIONS(995), - [anon_sym_0b] = ACTIONS(995), - [anon_sym_0o] = ACTIONS(995), - [anon_sym_0x] = ACTIONS(995), - [sym_val_date] = ACTIONS(995), - [anon_sym_DQUOTE] = ACTIONS(995), - [sym__str_single_quotes] = ACTIONS(995), - [sym__str_back_ticks] = ACTIONS(995), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(995), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(995), - [anon_sym_CARET] = ACTIONS(995), + [252] = { + [sym_cell_path] = STATE(288), + [sym_path] = STATE(257), + [sym_comment] = STATE(252), + [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), + [anon_sym_SEMI] = ACTIONS(992), + [sym_cmd_identifier] = ACTIONS(992), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(992), + [anon_sym_RPAREN] = ACTIONS(992), + [anon_sym_DOLLAR] = ACTIONS(992), + [anon_sym_error] = ACTIONS(992), + [anon_sym_GT] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_break] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_in] = ACTIONS(992), + [anon_sym_loop] = ACTIONS(992), + [anon_sym_while] = ACTIONS(992), + [anon_sym_do] = ACTIONS(992), + [anon_sym_if] = ACTIONS(992), + [anon_sym_match] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(992), + [anon_sym_RBRACE] = ACTIONS(992), + [anon_sym_DOT_DOT] = ACTIONS(992), + [anon_sym_try] = 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_STAR] = ACTIONS(992), + [anon_sym_where] = ACTIONS(992), + [anon_sym_STAR_STAR] = ACTIONS(992), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_SLASH] = ACTIONS(992), + [anon_sym_mod] = ACTIONS(992), + [anon_sym_SLASH_SLASH] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_bit_DASHshl] = ACTIONS(992), + [anon_sym_bit_DASHshr] = ACTIONS(992), + [anon_sym_EQ_EQ] = ACTIONS(992), + [anon_sym_BANG_EQ] = ACTIONS(992), + [anon_sym_LT2] = ACTIONS(992), + [anon_sym_LT_EQ] = ACTIONS(992), + [anon_sym_GT_EQ] = ACTIONS(992), + [anon_sym_not_DASHin] = ACTIONS(992), + [anon_sym_starts_DASHwith] = ACTIONS(992), + [anon_sym_ends_DASHwith] = ACTIONS(992), + [anon_sym_EQ_TILDE] = ACTIONS(992), + [anon_sym_BANG_TILDE] = ACTIONS(992), + [anon_sym_bit_DASHand] = ACTIONS(992), + [anon_sym_bit_DASHxor] = ACTIONS(992), + [anon_sym_bit_DASHor] = ACTIONS(992), + [anon_sym_and] = ACTIONS(992), + [anon_sym_xor] = ACTIONS(992), + [anon_sym_or] = ACTIONS(992), + [anon_sym_not] = ACTIONS(992), + [anon_sym_DOT_DOT2] = ACTIONS(992), + [anon_sym_DOT] = ACTIONS(996), + [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(992), + [anon_sym_true] = ACTIONS(992), + [anon_sym_false] = ACTIONS(992), + [aux_sym__val_number_decimal_token1] = ACTIONS(992), + [aux_sym__val_number_decimal_token2] = ACTIONS(992), + [anon_sym_DOT2] = ACTIONS(992), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(992), + [anon_sym_0o] = ACTIONS(992), + [anon_sym_0x] = ACTIONS(992), + [sym_val_date] = ACTIONS(992), + [anon_sym_DQUOTE] = ACTIONS(992), + [sym__str_single_quotes] = ACTIONS(992), + [sym__str_back_ticks] = ACTIONS(992), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(992), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(992), + [anon_sym_CARET] = ACTIONS(992), [anon_sym_POUND] = ACTIONS(113), }, - [269] = { - [sym_path] = STATE(311), - [sym_comment] = STATE(269), - [aux_sym_cell_path_repeat1] = STATE(269), - [anon_sym_export] = ACTIONS(999), - [anon_sym_alias] = ACTIONS(999), - [anon_sym_let] = ACTIONS(999), - [anon_sym_let_DASHenv] = ACTIONS(999), - [anon_sym_mut] = ACTIONS(999), - [anon_sym_const] = ACTIONS(999), - [anon_sym_SEMI] = ACTIONS(999), - [sym_cmd_identifier] = ACTIONS(999), - [anon_sym_LF] = ACTIONS(1001), - [anon_sym_def] = ACTIONS(999), - [anon_sym_export_DASHenv] = ACTIONS(999), - [anon_sym_extern] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_use] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_RPAREN] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_error] = ACTIONS(999), - [anon_sym_GT] = ACTIONS(999), - [anon_sym_DASH_DASH] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_break] = ACTIONS(999), - [anon_sym_continue] = ACTIONS(999), - [anon_sym_for] = ACTIONS(999), - [anon_sym_in] = ACTIONS(999), - [anon_sym_loop] = ACTIONS(999), - [anon_sym_while] = ACTIONS(999), - [anon_sym_do] = ACTIONS(999), - [anon_sym_if] = ACTIONS(999), - [anon_sym_match] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(999), - [anon_sym_RBRACE] = ACTIONS(999), - [anon_sym_DOT_DOT] = ACTIONS(999), - [anon_sym_try] = ACTIONS(999), - [anon_sym_return] = ACTIONS(999), - [anon_sym_source] = ACTIONS(999), - [anon_sym_source_DASHenv] = ACTIONS(999), - [anon_sym_register] = ACTIONS(999), - [anon_sym_hide] = ACTIONS(999), - [anon_sym_hide_DASHenv] = ACTIONS(999), - [anon_sym_overlay] = ACTIONS(999), - [anon_sym_as] = ACTIONS(999), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_where] = ACTIONS(999), - [anon_sym_STAR_STAR] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(999), - [anon_sym_mod] = ACTIONS(999), - [anon_sym_SLASH_SLASH] = ACTIONS(999), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_bit_DASHshl] = ACTIONS(999), - [anon_sym_bit_DASHshr] = ACTIONS(999), - [anon_sym_EQ_EQ] = ACTIONS(999), - [anon_sym_BANG_EQ] = ACTIONS(999), - [anon_sym_LT2] = ACTIONS(999), - [anon_sym_LT_EQ] = ACTIONS(999), - [anon_sym_GT_EQ] = ACTIONS(999), - [anon_sym_not_DASHin] = ACTIONS(999), - [anon_sym_starts_DASHwith] = ACTIONS(999), - [anon_sym_ends_DASHwith] = ACTIONS(999), - [anon_sym_EQ_TILDE] = ACTIONS(999), - [anon_sym_BANG_TILDE] = ACTIONS(999), - [anon_sym_bit_DASHand] = ACTIONS(999), - [anon_sym_bit_DASHxor] = ACTIONS(999), - [anon_sym_bit_DASHor] = ACTIONS(999), - [anon_sym_and] = ACTIONS(999), - [anon_sym_xor] = ACTIONS(999), - [anon_sym_or] = ACTIONS(999), - [anon_sym_not] = ACTIONS(999), - [anon_sym_DOT_DOT2] = ACTIONS(999), - [anon_sym_DOT] = ACTIONS(1003), - [anon_sym_DOT_DOT_EQ] = ACTIONS(999), - [anon_sym_DOT_DOT_LT] = ACTIONS(999), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1001), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1001), - [anon_sym_null] = ACTIONS(999), - [anon_sym_true] = ACTIONS(999), - [anon_sym_false] = ACTIONS(999), - [aux_sym__val_number_decimal_token1] = ACTIONS(999), - [aux_sym__val_number_decimal_token2] = ACTIONS(999), - [anon_sym_DOT2] = ACTIONS(999), - [aux_sym__val_number_decimal_token3] = ACTIONS(999), - [aux_sym__val_number_token1] = ACTIONS(999), - [aux_sym__val_number_token2] = ACTIONS(999), - [aux_sym__val_number_token3] = ACTIONS(999), - [aux_sym__val_number_token4] = ACTIONS(999), - [aux_sym__val_number_token5] = ACTIONS(999), - [aux_sym__val_number_token6] = ACTIONS(999), - [anon_sym_0b] = ACTIONS(999), - [anon_sym_0o] = ACTIONS(999), - [anon_sym_0x] = ACTIONS(999), - [sym_val_date] = ACTIONS(999), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym__str_single_quotes] = ACTIONS(999), - [sym__str_back_ticks] = ACTIONS(999), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(999), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(999), - [anon_sym_CARET] = ACTIONS(999), + [253] = { + [sym_comment] = STATE(253), + [ts_builtin_sym_end] = ACTIONS(940), + [anon_sym_export] = ACTIONS(938), + [anon_sym_alias] = ACTIONS(938), + [anon_sym_let] = ACTIONS(938), + [anon_sym_let_DASHenv] = ACTIONS(938), + [anon_sym_mut] = ACTIONS(938), + [anon_sym_const] = ACTIONS(938), + [anon_sym_SEMI] = ACTIONS(938), + [sym_cmd_identifier] = ACTIONS(938), + [anon_sym_LF] = ACTIONS(940), + [anon_sym_def] = ACTIONS(938), + [anon_sym_export_DASHenv] = ACTIONS(938), + [anon_sym_extern] = ACTIONS(938), + [anon_sym_module] = ACTIONS(938), + [anon_sym_use] = ACTIONS(938), + [anon_sym_LBRACK] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(938), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_error] = ACTIONS(938), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_break] = ACTIONS(938), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_for] = ACTIONS(938), + [anon_sym_in] = ACTIONS(938), + [anon_sym_loop] = ACTIONS(938), + [anon_sym_while] = ACTIONS(938), + [anon_sym_do] = ACTIONS(938), + [anon_sym_if] = ACTIONS(938), + [anon_sym_match] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_try] = ACTIONS(938), + [anon_sym_return] = ACTIONS(938), + [anon_sym_source] = ACTIONS(938), + [anon_sym_source_DASHenv] = ACTIONS(938), + [anon_sym_register] = ACTIONS(938), + [anon_sym_hide] = ACTIONS(938), + [anon_sym_hide_DASHenv] = ACTIONS(938), + [anon_sym_overlay] = ACTIONS(938), + [anon_sym_as] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_where] = ACTIONS(938), + [anon_sym_STAR_STAR] = ACTIONS(938), + [anon_sym_PLUS_PLUS] = ACTIONS(938), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(938), + [anon_sym_SLASH_SLASH] = ACTIONS(938), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_bit_DASHshl] = ACTIONS(938), + [anon_sym_bit_DASHshr] = ACTIONS(938), + [anon_sym_EQ_EQ] = ACTIONS(938), + [anon_sym_BANG_EQ] = ACTIONS(938), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(938), + [anon_sym_GT_EQ] = ACTIONS(938), + [anon_sym_not_DASHin] = ACTIONS(938), + [anon_sym_starts_DASHwith] = ACTIONS(938), + [anon_sym_ends_DASHwith] = ACTIONS(938), + [anon_sym_EQ_TILDE] = ACTIONS(938), + [anon_sym_BANG_TILDE] = ACTIONS(938), + [anon_sym_bit_DASHand] = ACTIONS(938), + [anon_sym_bit_DASHxor] = ACTIONS(938), + [anon_sym_bit_DASHor] = ACTIONS(938), + [anon_sym_and] = ACTIONS(938), + [anon_sym_xor] = ACTIONS(938), + [anon_sym_or] = ACTIONS(938), + [anon_sym_not] = ACTIONS(938), + [anon_sym_DOT_DOT2] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_DOT_DOT_EQ] = ACTIONS(938), + [anon_sym_DOT_DOT_LT] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(965), + [anon_sym_DOT_DOT_LT2] = ACTIONS(965), + [anon_sym_null] = ACTIONS(938), + [anon_sym_true] = ACTIONS(938), + [anon_sym_false] = ACTIONS(938), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(938), + [anon_sym_DOT2] = ACTIONS(938), + [aux_sym__val_number_decimal_token3] = ACTIONS(938), + [aux_sym__val_number_token1] = ACTIONS(938), + [aux_sym__val_number_token2] = ACTIONS(938), + [aux_sym__val_number_token3] = ACTIONS(938), + [aux_sym__val_number_token4] = ACTIONS(938), + [aux_sym__val_number_token5] = ACTIONS(938), + [aux_sym__val_number_token6] = ACTIONS(938), + [anon_sym_0b] = ACTIONS(938), + [sym_filesize_unit] = ACTIONS(979), + [sym_duration_unit] = ACTIONS(981), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym__str_single_quotes] = ACTIONS(938), + [sym__str_back_ticks] = ACTIONS(938), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(938), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(938), + [anon_sym_CARET] = ACTIONS(938), + [aux_sym_unquoted_token5] = ACTIONS(1000), [anon_sym_POUND] = ACTIONS(113), }, - [270] = { - [sym_path] = STATE(311), - [sym_comment] = STATE(270), - [aux_sym_cell_path_repeat1] = STATE(269), + [254] = { + [sym_comment] = STATE(254), + [ts_builtin_sym_end] = ACTIONS(895), + [anon_sym_export] = ACTIONS(893), + [anon_sym_alias] = ACTIONS(893), + [anon_sym_let] = ACTIONS(893), + [anon_sym_let_DASHenv] = ACTIONS(893), + [anon_sym_mut] = ACTIONS(893), + [anon_sym_const] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(893), + [sym_cmd_identifier] = ACTIONS(893), + [anon_sym_LF] = ACTIONS(895), + [anon_sym_def] = ACTIONS(893), + [anon_sym_export_DASHenv] = ACTIONS(893), + [anon_sym_extern] = ACTIONS(893), + [anon_sym_module] = ACTIONS(893), + [anon_sym_use] = ACTIONS(893), + [anon_sym_LBRACK] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(893), + [anon_sym_DOLLAR] = ACTIONS(893), + [anon_sym_error] = ACTIONS(893), + [anon_sym_GT] = ACTIONS(893), + [anon_sym_DASH_DASH] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_break] = ACTIONS(893), + [anon_sym_continue] = ACTIONS(893), + [anon_sym_for] = ACTIONS(893), + [anon_sym_in] = ACTIONS(893), + [anon_sym_loop] = ACTIONS(893), + [anon_sym_while] = ACTIONS(893), + [anon_sym_do] = ACTIONS(893), + [anon_sym_if] = ACTIONS(893), + [anon_sym_match] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_DOT_DOT] = ACTIONS(893), + [anon_sym_try] = ACTIONS(893), + [anon_sym_return] = ACTIONS(893), + [anon_sym_source] = ACTIONS(893), + [anon_sym_source_DASHenv] = ACTIONS(893), + [anon_sym_register] = ACTIONS(893), + [anon_sym_hide] = ACTIONS(893), + [anon_sym_hide_DASHenv] = ACTIONS(893), + [anon_sym_overlay] = ACTIONS(893), + [anon_sym_as] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(893), + [anon_sym_where] = ACTIONS(893), + [anon_sym_STAR_STAR] = ACTIONS(893), + [anon_sym_PLUS_PLUS] = ACTIONS(893), + [anon_sym_SLASH] = ACTIONS(893), + [anon_sym_mod] = ACTIONS(893), + [anon_sym_SLASH_SLASH] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_bit_DASHshl] = ACTIONS(893), + [anon_sym_bit_DASHshr] = ACTIONS(893), + [anon_sym_EQ_EQ] = ACTIONS(893), + [anon_sym_BANG_EQ] = ACTIONS(893), + [anon_sym_LT2] = ACTIONS(893), + [anon_sym_LT_EQ] = ACTIONS(893), + [anon_sym_GT_EQ] = ACTIONS(893), + [anon_sym_not_DASHin] = ACTIONS(893), + [anon_sym_starts_DASHwith] = ACTIONS(893), + [anon_sym_ends_DASHwith] = ACTIONS(893), + [anon_sym_EQ_TILDE] = ACTIONS(893), + [anon_sym_BANG_TILDE] = ACTIONS(893), + [anon_sym_bit_DASHand] = ACTIONS(893), + [anon_sym_bit_DASHxor] = ACTIONS(893), + [anon_sym_bit_DASHor] = ACTIONS(893), + [anon_sym_and] = ACTIONS(893), + [anon_sym_xor] = ACTIONS(893), + [anon_sym_or] = ACTIONS(893), + [anon_sym_not] = ACTIONS(893), + [anon_sym_DOT_DOT2] = ACTIONS(893), + [anon_sym_DOT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ] = ACTIONS(893), + [anon_sym_DOT_DOT_LT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), + [anon_sym_DOT_DOT_LT2] = ACTIONS(895), + [anon_sym_null] = ACTIONS(893), + [anon_sym_true] = ACTIONS(893), + [anon_sym_false] = ACTIONS(893), + [aux_sym__val_number_decimal_token1] = ACTIONS(893), + [aux_sym__val_number_decimal_token2] = ACTIONS(893), + [anon_sym_DOT2] = ACTIONS(893), + [aux_sym__val_number_decimal_token3] = ACTIONS(893), + [aux_sym__val_number_token1] = ACTIONS(893), + [aux_sym__val_number_token2] = ACTIONS(893), + [aux_sym__val_number_token3] = ACTIONS(893), + [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(893), + [sym_filesize_unit] = ACTIONS(893), + [sym_duration_unit] = ACTIONS(893), + [anon_sym_0o] = ACTIONS(893), + [anon_sym_0x] = ACTIONS(893), + [sym_val_date] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(893), + [sym__str_single_quotes] = ACTIONS(893), + [sym__str_back_ticks] = ACTIONS(893), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(893), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(893), + [anon_sym_CARET] = ACTIONS(893), + [aux_sym_unquoted_token5] = ACTIONS(893), + [anon_sym_POUND] = ACTIONS(113), + }, + [255] = { + [sym_cell_path] = STATE(284), + [sym_path] = STATE(257), + [sym_comment] = STATE(255), + [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), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [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_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = 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_STAR] = ACTIONS(1002), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_SLASH] = ACTIONS(1002), + [anon_sym_mod] = ACTIONS(1002), + [anon_sym_SLASH_SLASH] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1002), + [anon_sym_bit_DASHshl] = ACTIONS(1002), + [anon_sym_bit_DASHshr] = ACTIONS(1002), + [anon_sym_EQ_EQ] = ACTIONS(1002), + [anon_sym_BANG_EQ] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ] = ACTIONS(1002), + [anon_sym_GT_EQ] = ACTIONS(1002), + [anon_sym_not_DASHin] = ACTIONS(1002), + [anon_sym_starts_DASHwith] = ACTIONS(1002), + [anon_sym_ends_DASHwith] = ACTIONS(1002), + [anon_sym_EQ_TILDE] = ACTIONS(1002), + [anon_sym_BANG_TILDE] = ACTIONS(1002), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT2] = ACTIONS(1002), + [anon_sym_DOT] = ACTIONS(996), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1004), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1004), + [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), + [anon_sym_DOT2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = 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(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_CARET] = ACTIONS(1002), + [anon_sym_POUND] = ACTIONS(113), + }, + [256] = { + [sym_path] = STATE(271), + [sym_comment] = STATE(256), + [aux_sym_cell_path_repeat1] = STATE(251), [anon_sym_export] = ACTIONS(1006), [anon_sym_alias] = ACTIONS(1006), [anon_sym_let] = ACTIONS(1006), @@ -126498,7 +122311,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_or] = ACTIONS(1006), [anon_sym_not] = ACTIONS(1006), [anon_sym_DOT_DOT2] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(991), + [anon_sym_DOT] = ACTIONS(996), [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), [anon_sym_DOT_DOT_LT] = ACTIONS(1006), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), @@ -126528,10 +122341,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1006), [anon_sym_POUND] = ACTIONS(113), }, - [271] = { - [sym_cell_path] = STATE(341), - [sym_path] = STATE(266), - [sym_comment] = STATE(271), + [257] = { + [sym_path] = STATE(271), + [sym_comment] = STATE(257), + [aux_sym_cell_path_repeat1] = STATE(256), [anon_sym_export] = ACTIONS(1010), [anon_sym_alias] = ACTIONS(1010), [anon_sym_let] = ACTIONS(1010), @@ -126603,7 +122416,530 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_or] = ACTIONS(1010), [anon_sym_not] = ACTIONS(1010), [anon_sym_DOT_DOT2] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(991), + [anon_sym_DOT] = ACTIONS(996), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), + [anon_sym_null] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym__val_number_decimal_token1] = ACTIONS(1010), + [aux_sym__val_number_decimal_token2] = ACTIONS(1010), + [anon_sym_DOT2] = ACTIONS(1010), + [aux_sym__val_number_decimal_token3] = 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(1010), + [aux_sym__val_number_token5] = ACTIONS(1010), + [aux_sym__val_number_token6] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [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_CARET] = ACTIONS(1010), + [anon_sym_POUND] = ACTIONS(113), + }, + [258] = { + [sym_comment] = STATE(258), + [ts_builtin_sym_end] = ACTIONS(903), + [anon_sym_export] = ACTIONS(901), + [anon_sym_alias] = ACTIONS(901), + [anon_sym_let] = ACTIONS(901), + [anon_sym_let_DASHenv] = ACTIONS(901), + [anon_sym_mut] = ACTIONS(901), + [anon_sym_const] = ACTIONS(901), + [anon_sym_SEMI] = ACTIONS(901), + [sym_cmd_identifier] = ACTIONS(901), + [anon_sym_LF] = ACTIONS(903), + [anon_sym_def] = ACTIONS(901), + [anon_sym_export_DASHenv] = ACTIONS(901), + [anon_sym_extern] = ACTIONS(901), + [anon_sym_module] = ACTIONS(901), + [anon_sym_use] = ACTIONS(901), + [anon_sym_LBRACK] = ACTIONS(901), + [anon_sym_LPAREN] = ACTIONS(901), + [anon_sym_DOLLAR] = ACTIONS(901), + [anon_sym_error] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_DASH_DASH] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_break] = ACTIONS(901), + [anon_sym_continue] = ACTIONS(901), + [anon_sym_for] = ACTIONS(901), + [anon_sym_in] = ACTIONS(901), + [anon_sym_loop] = ACTIONS(901), + [anon_sym_while] = ACTIONS(901), + [anon_sym_do] = ACTIONS(901), + [anon_sym_if] = ACTIONS(901), + [anon_sym_match] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(901), + [anon_sym_DOT_DOT] = ACTIONS(901), + [anon_sym_try] = ACTIONS(901), + [anon_sym_return] = ACTIONS(901), + [anon_sym_source] = ACTIONS(901), + [anon_sym_source_DASHenv] = ACTIONS(901), + [anon_sym_register] = ACTIONS(901), + [anon_sym_hide] = ACTIONS(901), + [anon_sym_hide_DASHenv] = ACTIONS(901), + [anon_sym_overlay] = ACTIONS(901), + [anon_sym_as] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_where] = ACTIONS(901), + [anon_sym_STAR_STAR] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(901), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_mod] = ACTIONS(901), + [anon_sym_SLASH_SLASH] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_bit_DASHshl] = ACTIONS(901), + [anon_sym_bit_DASHshr] = ACTIONS(901), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT2] = ACTIONS(901), + [anon_sym_LT_EQ] = ACTIONS(901), + [anon_sym_GT_EQ] = ACTIONS(901), + [anon_sym_not_DASHin] = ACTIONS(901), + [anon_sym_starts_DASHwith] = ACTIONS(901), + [anon_sym_ends_DASHwith] = ACTIONS(901), + [anon_sym_EQ_TILDE] = ACTIONS(901), + [anon_sym_BANG_TILDE] = ACTIONS(901), + [anon_sym_bit_DASHand] = ACTIONS(901), + [anon_sym_bit_DASHxor] = ACTIONS(901), + [anon_sym_bit_DASHor] = ACTIONS(901), + [anon_sym_and] = ACTIONS(901), + [anon_sym_xor] = ACTIONS(901), + [anon_sym_or] = ACTIONS(901), + [anon_sym_not] = ACTIONS(901), + [anon_sym_DOT_DOT2] = ACTIONS(901), + [anon_sym_DOT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ] = ACTIONS(901), + [anon_sym_DOT_DOT_LT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(903), + [anon_sym_DOT_DOT_LT2] = ACTIONS(903), + [anon_sym_null] = ACTIONS(901), + [anon_sym_true] = ACTIONS(901), + [anon_sym_false] = ACTIONS(901), + [aux_sym__val_number_decimal_token1] = ACTIONS(901), + [aux_sym__val_number_decimal_token2] = ACTIONS(901), + [anon_sym_DOT2] = ACTIONS(901), + [aux_sym__val_number_decimal_token3] = ACTIONS(901), + [aux_sym__val_number_token1] = ACTIONS(901), + [aux_sym__val_number_token2] = ACTIONS(901), + [aux_sym__val_number_token3] = ACTIONS(901), + [aux_sym__val_number_token4] = ACTIONS(901), + [aux_sym__val_number_token5] = ACTIONS(901), + [aux_sym__val_number_token6] = ACTIONS(901), + [anon_sym_0b] = ACTIONS(901), + [sym_filesize_unit] = ACTIONS(901), + [sym_duration_unit] = ACTIONS(901), + [anon_sym_0o] = ACTIONS(901), + [anon_sym_0x] = ACTIONS(901), + [sym_val_date] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [sym__str_single_quotes] = ACTIONS(901), + [sym__str_back_ticks] = ACTIONS(901), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(901), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(901), + [anon_sym_CARET] = ACTIONS(901), + [aux_sym_unquoted_token5] = ACTIONS(901), + [anon_sym_POUND] = ACTIONS(113), + }, + [259] = { + [sym_comment] = STATE(259), + [ts_builtin_sym_end] = ACTIONS(936), + [anon_sym_export] = ACTIONS(934), + [anon_sym_alias] = ACTIONS(934), + [anon_sym_let] = ACTIONS(934), + [anon_sym_let_DASHenv] = ACTIONS(934), + [anon_sym_mut] = ACTIONS(934), + [anon_sym_const] = ACTIONS(934), + [anon_sym_SEMI] = ACTIONS(934), + [sym_cmd_identifier] = ACTIONS(934), + [anon_sym_LF] = ACTIONS(936), + [anon_sym_def] = ACTIONS(934), + [anon_sym_export_DASHenv] = ACTIONS(934), + [anon_sym_extern] = ACTIONS(934), + [anon_sym_module] = ACTIONS(934), + [anon_sym_use] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(934), + [anon_sym_LPAREN] = ACTIONS(934), + [anon_sym_DOLLAR] = ACTIONS(934), + [anon_sym_error] = ACTIONS(934), + [anon_sym_GT] = ACTIONS(934), + [anon_sym_DASH_DASH] = ACTIONS(934), + [anon_sym_DASH] = ACTIONS(934), + [anon_sym_break] = ACTIONS(934), + [anon_sym_continue] = ACTIONS(934), + [anon_sym_for] = ACTIONS(934), + [anon_sym_in] = ACTIONS(934), + [anon_sym_loop] = ACTIONS(934), + [anon_sym_while] = ACTIONS(934), + [anon_sym_do] = ACTIONS(934), + [anon_sym_if] = ACTIONS(934), + [anon_sym_match] = ACTIONS(934), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_DOT_DOT] = ACTIONS(934), + [anon_sym_try] = ACTIONS(934), + [anon_sym_return] = ACTIONS(934), + [anon_sym_source] = ACTIONS(934), + [anon_sym_source_DASHenv] = ACTIONS(934), + [anon_sym_register] = ACTIONS(934), + [anon_sym_hide] = ACTIONS(934), + [anon_sym_hide_DASHenv] = ACTIONS(934), + [anon_sym_overlay] = ACTIONS(934), + [anon_sym_as] = ACTIONS(934), + [anon_sym_STAR] = ACTIONS(934), + [anon_sym_where] = ACTIONS(934), + [anon_sym_STAR_STAR] = ACTIONS(934), + [anon_sym_PLUS_PLUS] = ACTIONS(934), + [anon_sym_SLASH] = ACTIONS(934), + [anon_sym_mod] = ACTIONS(934), + [anon_sym_SLASH_SLASH] = ACTIONS(934), + [anon_sym_PLUS] = ACTIONS(934), + [anon_sym_bit_DASHshl] = ACTIONS(934), + [anon_sym_bit_DASHshr] = ACTIONS(934), + [anon_sym_EQ_EQ] = ACTIONS(934), + [anon_sym_BANG_EQ] = ACTIONS(934), + [anon_sym_LT2] = ACTIONS(934), + [anon_sym_LT_EQ] = ACTIONS(934), + [anon_sym_GT_EQ] = ACTIONS(934), + [anon_sym_not_DASHin] = ACTIONS(934), + [anon_sym_starts_DASHwith] = ACTIONS(934), + [anon_sym_ends_DASHwith] = ACTIONS(934), + [anon_sym_EQ_TILDE] = ACTIONS(934), + [anon_sym_BANG_TILDE] = ACTIONS(934), + [anon_sym_bit_DASHand] = ACTIONS(934), + [anon_sym_bit_DASHxor] = ACTIONS(934), + [anon_sym_bit_DASHor] = ACTIONS(934), + [anon_sym_and] = ACTIONS(934), + [anon_sym_xor] = ACTIONS(934), + [anon_sym_or] = ACTIONS(934), + [anon_sym_not] = ACTIONS(934), + [anon_sym_DOT_DOT2] = ACTIONS(934), + [anon_sym_DOT] = ACTIONS(934), + [anon_sym_DOT_DOT_EQ] = ACTIONS(934), + [anon_sym_DOT_DOT_LT] = ACTIONS(934), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(936), + [anon_sym_DOT_DOT_LT2] = ACTIONS(936), + [anon_sym_null] = ACTIONS(934), + [anon_sym_true] = ACTIONS(934), + [anon_sym_false] = ACTIONS(934), + [aux_sym__val_number_decimal_token1] = ACTIONS(934), + [aux_sym__val_number_decimal_token2] = ACTIONS(934), + [anon_sym_DOT2] = ACTIONS(934), + [aux_sym__val_number_decimal_token3] = ACTIONS(934), + [aux_sym__val_number_token1] = ACTIONS(934), + [aux_sym__val_number_token2] = ACTIONS(934), + [aux_sym__val_number_token3] = ACTIONS(934), + [aux_sym__val_number_token4] = ACTIONS(934), + [aux_sym__val_number_token5] = ACTIONS(934), + [aux_sym__val_number_token6] = ACTIONS(934), + [anon_sym_0b] = ACTIONS(934), + [sym_filesize_unit] = ACTIONS(934), + [sym_duration_unit] = ACTIONS(934), + [anon_sym_0o] = ACTIONS(934), + [anon_sym_0x] = ACTIONS(934), + [sym_val_date] = ACTIONS(934), + [anon_sym_DQUOTE] = ACTIONS(934), + [sym__str_single_quotes] = ACTIONS(934), + [sym__str_back_ticks] = ACTIONS(934), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(934), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(934), + [anon_sym_CARET] = ACTIONS(934), + [aux_sym_unquoted_token5] = ACTIONS(934), + [anon_sym_POUND] = ACTIONS(113), + }, + [260] = { + [sym__immediate_decimal] = STATE(8796), + [sym_comment] = STATE(260), + [ts_builtin_sym_end] = ACTIONS(922), + [anon_sym_export] = ACTIONS(920), + [anon_sym_alias] = ACTIONS(920), + [anon_sym_let] = ACTIONS(920), + [anon_sym_let_DASHenv] = ACTIONS(920), + [anon_sym_mut] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(920), + [sym_cmd_identifier] = ACTIONS(920), + [anon_sym_LF] = ACTIONS(922), + [anon_sym_def] = ACTIONS(920), + [anon_sym_export_DASHenv] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym_module] = ACTIONS(920), + [anon_sym_use] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_error] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_in] = ACTIONS(920), + [anon_sym_loop] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_match] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_try] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_source] = ACTIONS(920), + [anon_sym_source_DASHenv] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_hide] = ACTIONS(920), + [anon_sym_hide_DASHenv] = ACTIONS(920), + [anon_sym_overlay] = ACTIONS(920), + [anon_sym_as] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_where] = ACTIONS(920), + [anon_sym_STAR_STAR] = ACTIONS(920), + [anon_sym_PLUS_PLUS] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_mod] = ACTIONS(920), + [anon_sym_SLASH_SLASH] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_bit_DASHshl] = ACTIONS(920), + [anon_sym_bit_DASHshr] = ACTIONS(920), + [anon_sym_EQ_EQ] = ACTIONS(920), + [anon_sym_BANG_EQ] = ACTIONS(920), + [anon_sym_LT2] = ACTIONS(920), + [anon_sym_LT_EQ] = ACTIONS(920), + [anon_sym_GT_EQ] = ACTIONS(920), + [anon_sym_not_DASHin] = ACTIONS(920), + [anon_sym_starts_DASHwith] = ACTIONS(920), + [anon_sym_ends_DASHwith] = ACTIONS(920), + [anon_sym_EQ_TILDE] = ACTIONS(920), + [anon_sym_BANG_TILDE] = ACTIONS(920), + [anon_sym_bit_DASHand] = ACTIONS(920), + [anon_sym_bit_DASHxor] = ACTIONS(920), + [anon_sym_bit_DASHor] = ACTIONS(920), + [anon_sym_and] = ACTIONS(920), + [anon_sym_xor] = ACTIONS(920), + [anon_sym_or] = ACTIONS(920), + [anon_sym_not] = ACTIONS(920), + [anon_sym_DOT] = ACTIONS(1014), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [aux_sym__immediate_decimal_token1] = ACTIONS(926), + [aux_sym__immediate_decimal_token3] = ACTIONS(926), + [aux_sym__immediate_decimal_token4] = ACTIONS(928), + [anon_sym_null] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), + [anon_sym_CARET] = ACTIONS(920), + [aux_sym_unquoted_token3] = ACTIONS(1000), + [aux_sym_unquoted_token5] = ACTIONS(1016), + [anon_sym_POUND] = ACTIONS(113), + }, + [261] = { + [sym_cell_path] = STATE(303), + [sym_path] = STATE(262), + [sym_comment] = STATE(261), + [ts_builtin_sym_end] = ACTIONS(1004), + [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), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [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_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = 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_STAR] = ACTIONS(1002), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_SLASH] = ACTIONS(1002), + [anon_sym_mod] = ACTIONS(1002), + [anon_sym_SLASH_SLASH] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1002), + [anon_sym_bit_DASHshl] = ACTIONS(1002), + [anon_sym_bit_DASHshr] = ACTIONS(1002), + [anon_sym_EQ_EQ] = ACTIONS(1002), + [anon_sym_BANG_EQ] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ] = ACTIONS(1002), + [anon_sym_GT_EQ] = ACTIONS(1002), + [anon_sym_not_DASHin] = ACTIONS(1002), + [anon_sym_starts_DASHwith] = ACTIONS(1002), + [anon_sym_ends_DASHwith] = ACTIONS(1002), + [anon_sym_EQ_TILDE] = ACTIONS(1002), + [anon_sym_BANG_TILDE] = ACTIONS(1002), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT2] = ACTIONS(1002), + [anon_sym_DOT] = ACTIONS(1018), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1004), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1004), + [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), + [anon_sym_DOT2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = 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(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_CARET] = ACTIONS(1002), + [anon_sym_POUND] = ACTIONS(113), + }, + [262] = { + [sym_path] = STATE(282), + [sym_comment] = STATE(262), + [aux_sym_cell_path_repeat1] = STATE(265), + [ts_builtin_sym_end] = ACTIONS(1012), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_as] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT2] = ACTIONS(1010), + [anon_sym_DOT] = ACTIONS(1018), [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), [anon_sym_DOT_DOT_LT] = ACTIONS(1010), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), @@ -126633,1894 +122969,3297 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(113), }, + [263] = { + [sym_cell_path] = STATE(314), + [sym_path] = STATE(262), + [sym_comment] = STATE(263), + [ts_builtin_sym_end] = ACTIONS(994), + [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), + [anon_sym_SEMI] = ACTIONS(992), + [sym_cmd_identifier] = ACTIONS(992), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(992), + [anon_sym_DOLLAR] = ACTIONS(992), + [anon_sym_error] = ACTIONS(992), + [anon_sym_GT] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_break] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_in] = ACTIONS(992), + [anon_sym_loop] = ACTIONS(992), + [anon_sym_while] = ACTIONS(992), + [anon_sym_do] = ACTIONS(992), + [anon_sym_if] = ACTIONS(992), + [anon_sym_match] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(992), + [anon_sym_DOT_DOT] = ACTIONS(992), + [anon_sym_try] = 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_STAR] = ACTIONS(992), + [anon_sym_where] = ACTIONS(992), + [anon_sym_STAR_STAR] = ACTIONS(992), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_SLASH] = ACTIONS(992), + [anon_sym_mod] = ACTIONS(992), + [anon_sym_SLASH_SLASH] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_bit_DASHshl] = ACTIONS(992), + [anon_sym_bit_DASHshr] = ACTIONS(992), + [anon_sym_EQ_EQ] = ACTIONS(992), + [anon_sym_BANG_EQ] = ACTIONS(992), + [anon_sym_LT2] = ACTIONS(992), + [anon_sym_LT_EQ] = ACTIONS(992), + [anon_sym_GT_EQ] = ACTIONS(992), + [anon_sym_not_DASHin] = ACTIONS(992), + [anon_sym_starts_DASHwith] = ACTIONS(992), + [anon_sym_ends_DASHwith] = ACTIONS(992), + [anon_sym_EQ_TILDE] = ACTIONS(992), + [anon_sym_BANG_TILDE] = ACTIONS(992), + [anon_sym_bit_DASHand] = ACTIONS(992), + [anon_sym_bit_DASHxor] = ACTIONS(992), + [anon_sym_bit_DASHor] = ACTIONS(992), + [anon_sym_and] = ACTIONS(992), + [anon_sym_xor] = ACTIONS(992), + [anon_sym_or] = ACTIONS(992), + [anon_sym_not] = ACTIONS(992), + [anon_sym_DOT_DOT2] = ACTIONS(992), + [anon_sym_DOT] = ACTIONS(1018), + [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(992), + [anon_sym_true] = ACTIONS(992), + [anon_sym_false] = ACTIONS(992), + [aux_sym__val_number_decimal_token1] = ACTIONS(992), + [aux_sym__val_number_decimal_token2] = ACTIONS(992), + [anon_sym_DOT2] = ACTIONS(992), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(992), + [anon_sym_0o] = ACTIONS(992), + [anon_sym_0x] = ACTIONS(992), + [sym_val_date] = ACTIONS(992), + [anon_sym_DQUOTE] = ACTIONS(992), + [sym__str_single_quotes] = ACTIONS(992), + [sym__str_back_ticks] = ACTIONS(992), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(992), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(992), + [anon_sym_CARET] = ACTIONS(992), + [anon_sym_POUND] = ACTIONS(113), + }, + [264] = { + [sym_comment] = STATE(264), + [anon_sym_export] = ACTIONS(1020), + [anon_sym_alias] = ACTIONS(1020), + [anon_sym_let] = ACTIONS(1020), + [anon_sym_let_DASHenv] = ACTIONS(1020), + [anon_sym_mut] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1020), + [sym_cmd_identifier] = ACTIONS(1020), + [anon_sym_LF] = ACTIONS(1022), + [anon_sym_def] = ACTIONS(1020), + [anon_sym_export_DASHenv] = ACTIONS(1020), + [anon_sym_extern] = ACTIONS(1020), + [anon_sym_module] = ACTIONS(1020), + [anon_sym_use] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1020), + [anon_sym_RPAREN] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_error] = ACTIONS(1020), + [anon_sym_GT] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1020), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_in] = ACTIONS(1020), + [anon_sym_loop] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_match] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_RBRACE] = ACTIONS(1020), + [anon_sym_DOT_DOT] = ACTIONS(1020), + [anon_sym_try] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_source] = ACTIONS(1020), + [anon_sym_source_DASHenv] = ACTIONS(1020), + [anon_sym_register] = ACTIONS(1020), + [anon_sym_hide] = ACTIONS(1020), + [anon_sym_hide_DASHenv] = ACTIONS(1020), + [anon_sym_overlay] = ACTIONS(1020), + [anon_sym_as] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_where] = ACTIONS(1020), + [anon_sym_QMARK2] = ACTIONS(1020), + [anon_sym_STAR_STAR] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1020), + [anon_sym_SLASH] = ACTIONS(1020), + [anon_sym_mod] = ACTIONS(1020), + [anon_sym_SLASH_SLASH] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_bit_DASHshl] = ACTIONS(1020), + [anon_sym_bit_DASHshr] = ACTIONS(1020), + [anon_sym_EQ_EQ] = ACTIONS(1020), + [anon_sym_BANG_EQ] = ACTIONS(1020), + [anon_sym_LT2] = ACTIONS(1020), + [anon_sym_LT_EQ] = ACTIONS(1020), + [anon_sym_GT_EQ] = ACTIONS(1020), + [anon_sym_not_DASHin] = ACTIONS(1020), + [anon_sym_starts_DASHwith] = ACTIONS(1020), + [anon_sym_ends_DASHwith] = ACTIONS(1020), + [anon_sym_EQ_TILDE] = ACTIONS(1020), + [anon_sym_BANG_TILDE] = ACTIONS(1020), + [anon_sym_bit_DASHand] = ACTIONS(1020), + [anon_sym_bit_DASHxor] = ACTIONS(1020), + [anon_sym_bit_DASHor] = ACTIONS(1020), + [anon_sym_and] = ACTIONS(1020), + [anon_sym_xor] = ACTIONS(1020), + [anon_sym_or] = ACTIONS(1020), + [anon_sym_not] = ACTIONS(1020), + [anon_sym_DOT_DOT2] = ACTIONS(1020), + [anon_sym_DOT] = ACTIONS(1020), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1020), + [anon_sym_DOT_DOT_LT] = ACTIONS(1020), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1022), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1022), + [anon_sym_null] = ACTIONS(1020), + [anon_sym_true] = ACTIONS(1020), + [anon_sym_false] = ACTIONS(1020), + [aux_sym__val_number_decimal_token1] = ACTIONS(1020), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [anon_sym_DOT2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1020), + [aux_sym__val_number_token1] = ACTIONS(1020), + [aux_sym__val_number_token2] = ACTIONS(1020), + [aux_sym__val_number_token3] = ACTIONS(1020), + [aux_sym__val_number_token4] = ACTIONS(1020), + [aux_sym__val_number_token5] = ACTIONS(1020), + [aux_sym__val_number_token6] = ACTIONS(1020), + [anon_sym_0b] = ACTIONS(1020), + [anon_sym_0o] = ACTIONS(1020), + [anon_sym_0x] = ACTIONS(1020), + [sym_val_date] = ACTIONS(1020), + [anon_sym_DQUOTE] = ACTIONS(1020), + [sym__str_single_quotes] = ACTIONS(1020), + [sym__str_back_ticks] = ACTIONS(1020), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1020), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1020), + [anon_sym_CARET] = ACTIONS(1020), + [anon_sym_POUND] = ACTIONS(113), + }, + [265] = { + [sym_path] = STATE(282), + [sym_comment] = STATE(265), + [aux_sym_cell_path_repeat1] = STATE(268), + [ts_builtin_sym_end] = ACTIONS(1008), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_alias] = ACTIONS(1006), + [anon_sym_let] = ACTIONS(1006), + [anon_sym_let_DASHenv] = ACTIONS(1006), + [anon_sym_mut] = ACTIONS(1006), + [anon_sym_const] = ACTIONS(1006), + [anon_sym_SEMI] = ACTIONS(1006), + [sym_cmd_identifier] = ACTIONS(1006), + [anon_sym_LF] = ACTIONS(1008), + [anon_sym_def] = ACTIONS(1006), + [anon_sym_export_DASHenv] = ACTIONS(1006), + [anon_sym_extern] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_use] = ACTIONS(1006), + [anon_sym_LBRACK] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_error] = ACTIONS(1006), + [anon_sym_GT] = ACTIONS(1006), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_break] = ACTIONS(1006), + [anon_sym_continue] = ACTIONS(1006), + [anon_sym_for] = ACTIONS(1006), + [anon_sym_in] = ACTIONS(1006), + [anon_sym_loop] = ACTIONS(1006), + [anon_sym_while] = ACTIONS(1006), + [anon_sym_do] = ACTIONS(1006), + [anon_sym_if] = ACTIONS(1006), + [anon_sym_match] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_DOT_DOT] = ACTIONS(1006), + [anon_sym_try] = ACTIONS(1006), + [anon_sym_return] = ACTIONS(1006), + [anon_sym_source] = ACTIONS(1006), + [anon_sym_source_DASHenv] = ACTIONS(1006), + [anon_sym_register] = ACTIONS(1006), + [anon_sym_hide] = ACTIONS(1006), + [anon_sym_hide_DASHenv] = ACTIONS(1006), + [anon_sym_overlay] = ACTIONS(1006), + [anon_sym_as] = ACTIONS(1006), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_where] = ACTIONS(1006), + [anon_sym_STAR_STAR] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_mod] = ACTIONS(1006), + [anon_sym_SLASH_SLASH] = ACTIONS(1006), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_bit_DASHshl] = ACTIONS(1006), + [anon_sym_bit_DASHshr] = ACTIONS(1006), + [anon_sym_EQ_EQ] = ACTIONS(1006), + [anon_sym_BANG_EQ] = ACTIONS(1006), + [anon_sym_LT2] = ACTIONS(1006), + [anon_sym_LT_EQ] = ACTIONS(1006), + [anon_sym_GT_EQ] = ACTIONS(1006), + [anon_sym_not_DASHin] = ACTIONS(1006), + [anon_sym_starts_DASHwith] = ACTIONS(1006), + [anon_sym_ends_DASHwith] = ACTIONS(1006), + [anon_sym_EQ_TILDE] = ACTIONS(1006), + [anon_sym_BANG_TILDE] = ACTIONS(1006), + [anon_sym_bit_DASHand] = ACTIONS(1006), + [anon_sym_bit_DASHxor] = ACTIONS(1006), + [anon_sym_bit_DASHor] = ACTIONS(1006), + [anon_sym_and] = ACTIONS(1006), + [anon_sym_xor] = ACTIONS(1006), + [anon_sym_or] = ACTIONS(1006), + [anon_sym_not] = ACTIONS(1006), + [anon_sym_DOT_DOT2] = ACTIONS(1006), + [anon_sym_DOT] = ACTIONS(1018), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), + [anon_sym_DOT_DOT_LT] = ACTIONS(1006), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), + [anon_sym_null] = ACTIONS(1006), + [anon_sym_true] = ACTIONS(1006), + [anon_sym_false] = ACTIONS(1006), + [aux_sym__val_number_decimal_token1] = ACTIONS(1006), + [aux_sym__val_number_decimal_token2] = ACTIONS(1006), + [anon_sym_DOT2] = ACTIONS(1006), + [aux_sym__val_number_decimal_token3] = ACTIONS(1006), + [aux_sym__val_number_token1] = ACTIONS(1006), + [aux_sym__val_number_token2] = ACTIONS(1006), + [aux_sym__val_number_token3] = ACTIONS(1006), + [aux_sym__val_number_token4] = ACTIONS(1006), + [aux_sym__val_number_token5] = ACTIONS(1006), + [aux_sym__val_number_token6] = ACTIONS(1006), + [anon_sym_0b] = ACTIONS(1006), + [anon_sym_0o] = ACTIONS(1006), + [anon_sym_0x] = ACTIONS(1006), + [sym_val_date] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym__str_single_quotes] = ACTIONS(1006), + [sym__str_back_ticks] = ACTIONS(1006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1006), + [anon_sym_CARET] = ACTIONS(1006), + [anon_sym_POUND] = ACTIONS(113), + }, + [266] = { + [sym_comment] = STATE(266), + [anon_sym_export] = ACTIONS(1024), + [anon_sym_alias] = ACTIONS(1024), + [anon_sym_let] = ACTIONS(1024), + [anon_sym_let_DASHenv] = ACTIONS(1024), + [anon_sym_mut] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1024), + [sym_cmd_identifier] = ACTIONS(1024), + [anon_sym_LF] = ACTIONS(1026), + [anon_sym_def] = ACTIONS(1024), + [anon_sym_export_DASHenv] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1024), + [anon_sym_module] = ACTIONS(1024), + [anon_sym_use] = ACTIONS(1024), + [anon_sym_LBRACK] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_RPAREN] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_error] = ACTIONS(1024), + [anon_sym_GT] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_loop] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_match] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym_RBRACE] = ACTIONS(1024), + [anon_sym_DOT_DOT] = ACTIONS(1024), + [anon_sym_try] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_source] = ACTIONS(1024), + [anon_sym_source_DASHenv] = ACTIONS(1024), + [anon_sym_register] = ACTIONS(1024), + [anon_sym_hide] = ACTIONS(1024), + [anon_sym_hide_DASHenv] = ACTIONS(1024), + [anon_sym_overlay] = ACTIONS(1024), + [anon_sym_as] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_where] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(1028), + [anon_sym_STAR_STAR] = ACTIONS(1024), + [anon_sym_PLUS_PLUS] = ACTIONS(1024), + [anon_sym_SLASH] = ACTIONS(1024), + [anon_sym_mod] = ACTIONS(1024), + [anon_sym_SLASH_SLASH] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_bit_DASHshl] = ACTIONS(1024), + [anon_sym_bit_DASHshr] = ACTIONS(1024), + [anon_sym_EQ_EQ] = ACTIONS(1024), + [anon_sym_BANG_EQ] = ACTIONS(1024), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ] = ACTIONS(1024), + [anon_sym_GT_EQ] = ACTIONS(1024), + [anon_sym_not_DASHin] = ACTIONS(1024), + [anon_sym_starts_DASHwith] = ACTIONS(1024), + [anon_sym_ends_DASHwith] = ACTIONS(1024), + [anon_sym_EQ_TILDE] = ACTIONS(1024), + [anon_sym_BANG_TILDE] = ACTIONS(1024), + [anon_sym_bit_DASHand] = ACTIONS(1024), + [anon_sym_bit_DASHxor] = ACTIONS(1024), + [anon_sym_bit_DASHor] = ACTIONS(1024), + [anon_sym_and] = ACTIONS(1024), + [anon_sym_xor] = ACTIONS(1024), + [anon_sym_or] = ACTIONS(1024), + [anon_sym_not] = ACTIONS(1024), + [anon_sym_DOT_DOT2] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1026), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1026), + [anon_sym_null] = ACTIONS(1024), + [anon_sym_true] = ACTIONS(1024), + [anon_sym_false] = ACTIONS(1024), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1024), + [aux_sym__val_number_token1] = ACTIONS(1024), + [aux_sym__val_number_token2] = ACTIONS(1024), + [aux_sym__val_number_token3] = ACTIONS(1024), + [aux_sym__val_number_token4] = ACTIONS(1024), + [aux_sym__val_number_token5] = ACTIONS(1024), + [aux_sym__val_number_token6] = ACTIONS(1024), + [anon_sym_0b] = ACTIONS(1024), + [anon_sym_0o] = ACTIONS(1024), + [anon_sym_0x] = ACTIONS(1024), + [sym_val_date] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym__str_single_quotes] = ACTIONS(1024), + [sym__str_back_ticks] = ACTIONS(1024), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1024), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1024), + [anon_sym_CARET] = ACTIONS(1024), + [anon_sym_POUND] = ACTIONS(113), + }, + [267] = { + [sym__immediate_decimal] = STATE(10080), + [sym_comment] = STATE(267), + [ts_builtin_sym_end] = ACTIONS(922), + [anon_sym_export] = ACTIONS(920), + [anon_sym_alias] = ACTIONS(920), + [anon_sym_let] = ACTIONS(920), + [anon_sym_let_DASHenv] = ACTIONS(920), + [anon_sym_mut] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(920), + [sym_cmd_identifier] = ACTIONS(920), + [anon_sym_LF] = ACTIONS(922), + [anon_sym_def] = ACTIONS(920), + [anon_sym_export_DASHenv] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym_module] = ACTIONS(920), + [anon_sym_use] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_error] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_in] = ACTIONS(920), + [anon_sym_loop] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_match] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_try] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_source] = ACTIONS(920), + [anon_sym_source_DASHenv] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_hide] = ACTIONS(920), + [anon_sym_hide_DASHenv] = ACTIONS(920), + [anon_sym_overlay] = ACTIONS(920), + [anon_sym_as] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_where] = ACTIONS(920), + [anon_sym_STAR_STAR] = ACTIONS(920), + [anon_sym_PLUS_PLUS] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_mod] = ACTIONS(920), + [anon_sym_SLASH_SLASH] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_bit_DASHshl] = ACTIONS(920), + [anon_sym_bit_DASHshr] = ACTIONS(920), + [anon_sym_EQ_EQ] = ACTIONS(920), + [anon_sym_BANG_EQ] = ACTIONS(920), + [anon_sym_LT2] = ACTIONS(920), + [anon_sym_LT_EQ] = ACTIONS(920), + [anon_sym_GT_EQ] = ACTIONS(920), + [anon_sym_not_DASHin] = ACTIONS(920), + [anon_sym_starts_DASHwith] = ACTIONS(920), + [anon_sym_ends_DASHwith] = ACTIONS(920), + [anon_sym_EQ_TILDE] = ACTIONS(920), + [anon_sym_BANG_TILDE] = ACTIONS(920), + [anon_sym_bit_DASHand] = ACTIONS(920), + [anon_sym_bit_DASHxor] = ACTIONS(920), + [anon_sym_bit_DASHor] = ACTIONS(920), + [anon_sym_and] = ACTIONS(920), + [anon_sym_xor] = ACTIONS(920), + [anon_sym_or] = ACTIONS(920), + [anon_sym_not] = ACTIONS(920), + [anon_sym_DOT] = ACTIONS(967), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [aux_sym__immediate_decimal_token1] = ACTIONS(969), + [aux_sym__immediate_decimal_token3] = ACTIONS(969), + [aux_sym__immediate_decimal_token4] = ACTIONS(971), + [anon_sym_null] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), + [anon_sym_CARET] = ACTIONS(920), + [aux_sym_unquoted_token4] = ACTIONS(1000), + [anon_sym_POUND] = ACTIONS(113), + }, + [268] = { + [sym_path] = STATE(282), + [sym_comment] = STATE(268), + [aux_sym_cell_path_repeat1] = STATE(268), + [ts_builtin_sym_end] = ACTIONS(987), + [anon_sym_export] = ACTIONS(985), + [anon_sym_alias] = ACTIONS(985), + [anon_sym_let] = ACTIONS(985), + [anon_sym_let_DASHenv] = ACTIONS(985), + [anon_sym_mut] = ACTIONS(985), + [anon_sym_const] = ACTIONS(985), + [anon_sym_SEMI] = ACTIONS(985), + [sym_cmd_identifier] = ACTIONS(985), + [anon_sym_LF] = ACTIONS(987), + [anon_sym_def] = ACTIONS(985), + [anon_sym_export_DASHenv] = ACTIONS(985), + [anon_sym_extern] = ACTIONS(985), + [anon_sym_module] = ACTIONS(985), + [anon_sym_use] = ACTIONS(985), + [anon_sym_LBRACK] = ACTIONS(985), + [anon_sym_LPAREN] = ACTIONS(985), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_error] = ACTIONS(985), + [anon_sym_GT] = ACTIONS(985), + [anon_sym_DASH_DASH] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_break] = ACTIONS(985), + [anon_sym_continue] = ACTIONS(985), + [anon_sym_for] = ACTIONS(985), + [anon_sym_in] = ACTIONS(985), + [anon_sym_loop] = ACTIONS(985), + [anon_sym_while] = ACTIONS(985), + [anon_sym_do] = ACTIONS(985), + [anon_sym_if] = ACTIONS(985), + [anon_sym_match] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(985), + [anon_sym_DOT_DOT] = ACTIONS(985), + [anon_sym_try] = ACTIONS(985), + [anon_sym_return] = ACTIONS(985), + [anon_sym_source] = ACTIONS(985), + [anon_sym_source_DASHenv] = ACTIONS(985), + [anon_sym_register] = ACTIONS(985), + [anon_sym_hide] = ACTIONS(985), + [anon_sym_hide_DASHenv] = ACTIONS(985), + [anon_sym_overlay] = ACTIONS(985), + [anon_sym_as] = ACTIONS(985), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_where] = ACTIONS(985), + [anon_sym_STAR_STAR] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(985), + [anon_sym_SLASH] = ACTIONS(985), + [anon_sym_mod] = ACTIONS(985), + [anon_sym_SLASH_SLASH] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_bit_DASHshl] = ACTIONS(985), + [anon_sym_bit_DASHshr] = ACTIONS(985), + [anon_sym_EQ_EQ] = ACTIONS(985), + [anon_sym_BANG_EQ] = ACTIONS(985), + [anon_sym_LT2] = ACTIONS(985), + [anon_sym_LT_EQ] = ACTIONS(985), + [anon_sym_GT_EQ] = ACTIONS(985), + [anon_sym_not_DASHin] = ACTIONS(985), + [anon_sym_starts_DASHwith] = ACTIONS(985), + [anon_sym_ends_DASHwith] = ACTIONS(985), + [anon_sym_EQ_TILDE] = ACTIONS(985), + [anon_sym_BANG_TILDE] = ACTIONS(985), + [anon_sym_bit_DASHand] = ACTIONS(985), + [anon_sym_bit_DASHxor] = ACTIONS(985), + [anon_sym_bit_DASHor] = ACTIONS(985), + [anon_sym_and] = ACTIONS(985), + [anon_sym_xor] = ACTIONS(985), + [anon_sym_or] = ACTIONS(985), + [anon_sym_not] = ACTIONS(985), + [anon_sym_DOT_DOT2] = ACTIONS(985), + [anon_sym_DOT] = ACTIONS(1030), + [anon_sym_DOT_DOT_EQ] = ACTIONS(985), + [anon_sym_DOT_DOT_LT] = ACTIONS(985), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(987), + [anon_sym_DOT_DOT_LT2] = ACTIONS(987), + [anon_sym_null] = ACTIONS(985), + [anon_sym_true] = ACTIONS(985), + [anon_sym_false] = ACTIONS(985), + [aux_sym__val_number_decimal_token1] = ACTIONS(985), + [aux_sym__val_number_decimal_token2] = ACTIONS(985), + [anon_sym_DOT2] = ACTIONS(985), + [aux_sym__val_number_decimal_token3] = ACTIONS(985), + [aux_sym__val_number_token1] = ACTIONS(985), + [aux_sym__val_number_token2] = ACTIONS(985), + [aux_sym__val_number_token3] = ACTIONS(985), + [aux_sym__val_number_token4] = ACTIONS(985), + [aux_sym__val_number_token5] = ACTIONS(985), + [aux_sym__val_number_token6] = ACTIONS(985), + [anon_sym_0b] = ACTIONS(985), + [anon_sym_0o] = ACTIONS(985), + [anon_sym_0x] = ACTIONS(985), + [sym_val_date] = ACTIONS(985), + [anon_sym_DQUOTE] = ACTIONS(985), + [sym__str_single_quotes] = ACTIONS(985), + [sym__str_back_ticks] = ACTIONS(985), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(985), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(985), + [anon_sym_POUND] = ACTIONS(113), + }, + [269] = { + [sym_comment] = STATE(269), + [anon_sym_export] = ACTIONS(1033), + [anon_sym_alias] = ACTIONS(1033), + [anon_sym_let] = ACTIONS(1033), + [anon_sym_let_DASHenv] = ACTIONS(1033), + [anon_sym_mut] = ACTIONS(1033), + [anon_sym_const] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(1033), + [sym_cmd_identifier] = ACTIONS(1033), + [anon_sym_LF] = ACTIONS(1035), + [anon_sym_def] = ACTIONS(1033), + [anon_sym_export_DASHenv] = ACTIONS(1033), + [anon_sym_extern] = ACTIONS(1033), + [anon_sym_module] = ACTIONS(1033), + [anon_sym_use] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1033), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_RPAREN] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_error] = ACTIONS(1033), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1033), + [anon_sym_break] = ACTIONS(1033), + [anon_sym_continue] = ACTIONS(1033), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_in] = ACTIONS(1033), + [anon_sym_loop] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(1033), + [anon_sym_do] = ACTIONS(1033), + [anon_sym_if] = ACTIONS(1033), + [anon_sym_match] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1033), + [anon_sym_DOT_DOT] = ACTIONS(1033), + [anon_sym_try] = ACTIONS(1033), + [anon_sym_return] = ACTIONS(1033), + [anon_sym_source] = ACTIONS(1033), + [anon_sym_source_DASHenv] = ACTIONS(1033), + [anon_sym_register] = ACTIONS(1033), + [anon_sym_hide] = ACTIONS(1033), + [anon_sym_hide_DASHenv] = ACTIONS(1033), + [anon_sym_overlay] = ACTIONS(1033), + [anon_sym_as] = ACTIONS(1033), + [anon_sym_STAR] = ACTIONS(1033), + [anon_sym_where] = ACTIONS(1033), + [anon_sym_QMARK2] = ACTIONS(1033), + [anon_sym_STAR_STAR] = ACTIONS(1033), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_SLASH] = ACTIONS(1033), + [anon_sym_mod] = ACTIONS(1033), + [anon_sym_SLASH_SLASH] = ACTIONS(1033), + [anon_sym_PLUS] = ACTIONS(1033), + [anon_sym_bit_DASHshl] = ACTIONS(1033), + [anon_sym_bit_DASHshr] = ACTIONS(1033), + [anon_sym_EQ_EQ] = ACTIONS(1033), + [anon_sym_BANG_EQ] = ACTIONS(1033), + [anon_sym_LT2] = ACTIONS(1033), + [anon_sym_LT_EQ] = ACTIONS(1033), + [anon_sym_GT_EQ] = ACTIONS(1033), + [anon_sym_not_DASHin] = ACTIONS(1033), + [anon_sym_starts_DASHwith] = ACTIONS(1033), + [anon_sym_ends_DASHwith] = ACTIONS(1033), + [anon_sym_EQ_TILDE] = ACTIONS(1033), + [anon_sym_BANG_TILDE] = ACTIONS(1033), + [anon_sym_bit_DASHand] = ACTIONS(1033), + [anon_sym_bit_DASHxor] = ACTIONS(1033), + [anon_sym_bit_DASHor] = ACTIONS(1033), + [anon_sym_and] = ACTIONS(1033), + [anon_sym_xor] = ACTIONS(1033), + [anon_sym_or] = ACTIONS(1033), + [anon_sym_not] = ACTIONS(1033), + [anon_sym_DOT_DOT2] = ACTIONS(1033), + [anon_sym_DOT] = ACTIONS(1033), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1033), + [anon_sym_DOT_DOT_LT] = ACTIONS(1033), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1035), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1035), + [anon_sym_null] = ACTIONS(1033), + [anon_sym_true] = ACTIONS(1033), + [anon_sym_false] = ACTIONS(1033), + [aux_sym__val_number_decimal_token1] = ACTIONS(1033), + [aux_sym__val_number_decimal_token2] = ACTIONS(1033), + [anon_sym_DOT2] = ACTIONS(1033), + [aux_sym__val_number_decimal_token3] = ACTIONS(1033), + [aux_sym__val_number_token1] = ACTIONS(1033), + [aux_sym__val_number_token2] = ACTIONS(1033), + [aux_sym__val_number_token3] = ACTIONS(1033), + [aux_sym__val_number_token4] = ACTIONS(1033), + [aux_sym__val_number_token5] = ACTIONS(1033), + [aux_sym__val_number_token6] = ACTIONS(1033), + [anon_sym_0b] = ACTIONS(1033), + [anon_sym_0o] = ACTIONS(1033), + [anon_sym_0x] = ACTIONS(1033), + [sym_val_date] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [sym__str_single_quotes] = ACTIONS(1033), + [sym__str_back_ticks] = ACTIONS(1033), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1033), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1033), + [anon_sym_CARET] = ACTIONS(1033), + [anon_sym_POUND] = ACTIONS(113), + }, + [270] = { + [sym_comment] = STATE(270), + [anon_sym_export] = ACTIONS(1024), + [anon_sym_alias] = ACTIONS(1024), + [anon_sym_let] = ACTIONS(1024), + [anon_sym_let_DASHenv] = ACTIONS(1024), + [anon_sym_mut] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1024), + [sym_cmd_identifier] = ACTIONS(1024), + [anon_sym_LF] = ACTIONS(1026), + [anon_sym_def] = ACTIONS(1024), + [anon_sym_export_DASHenv] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1024), + [anon_sym_module] = ACTIONS(1024), + [anon_sym_use] = ACTIONS(1024), + [anon_sym_LBRACK] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_RPAREN] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_error] = ACTIONS(1024), + [anon_sym_GT] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_loop] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_match] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym_RBRACE] = ACTIONS(1024), + [anon_sym_DOT_DOT] = ACTIONS(1024), + [anon_sym_try] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_source] = ACTIONS(1024), + [anon_sym_source_DASHenv] = ACTIONS(1024), + [anon_sym_register] = ACTIONS(1024), + [anon_sym_hide] = ACTIONS(1024), + [anon_sym_hide_DASHenv] = ACTIONS(1024), + [anon_sym_overlay] = ACTIONS(1024), + [anon_sym_as] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_where] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(1028), + [anon_sym_STAR_STAR] = ACTIONS(1024), + [anon_sym_PLUS_PLUS] = ACTIONS(1024), + [anon_sym_SLASH] = ACTIONS(1024), + [anon_sym_mod] = ACTIONS(1024), + [anon_sym_SLASH_SLASH] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_bit_DASHshl] = ACTIONS(1024), + [anon_sym_bit_DASHshr] = ACTIONS(1024), + [anon_sym_EQ_EQ] = ACTIONS(1024), + [anon_sym_BANG_EQ] = ACTIONS(1024), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ] = ACTIONS(1024), + [anon_sym_GT_EQ] = ACTIONS(1024), + [anon_sym_not_DASHin] = ACTIONS(1024), + [anon_sym_starts_DASHwith] = ACTIONS(1024), + [anon_sym_ends_DASHwith] = ACTIONS(1024), + [anon_sym_EQ_TILDE] = ACTIONS(1024), + [anon_sym_BANG_TILDE] = ACTIONS(1024), + [anon_sym_bit_DASHand] = ACTIONS(1024), + [anon_sym_bit_DASHxor] = ACTIONS(1024), + [anon_sym_bit_DASHor] = ACTIONS(1024), + [anon_sym_and] = ACTIONS(1024), + [anon_sym_xor] = ACTIONS(1024), + [anon_sym_or] = ACTIONS(1024), + [anon_sym_not] = ACTIONS(1024), + [anon_sym_DOT_DOT2] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1026), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1026), + [anon_sym_null] = ACTIONS(1024), + [anon_sym_true] = ACTIONS(1024), + [anon_sym_false] = ACTIONS(1024), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1024), + [aux_sym__val_number_token1] = ACTIONS(1024), + [aux_sym__val_number_token2] = ACTIONS(1024), + [aux_sym__val_number_token3] = ACTIONS(1024), + [aux_sym__val_number_token4] = ACTIONS(1024), + [aux_sym__val_number_token5] = ACTIONS(1024), + [aux_sym__val_number_token6] = ACTIONS(1024), + [anon_sym_0b] = ACTIONS(1024), + [anon_sym_0o] = ACTIONS(1024), + [anon_sym_0x] = ACTIONS(1024), + [sym_val_date] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym__str_single_quotes] = ACTIONS(1024), + [sym__str_back_ticks] = ACTIONS(1024), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1024), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1024), + [anon_sym_CARET] = ACTIONS(1024), + [anon_sym_POUND] = ACTIONS(113), + }, + [271] = { + [sym_comment] = STATE(271), + [anon_sym_export] = ACTIONS(1037), + [anon_sym_alias] = ACTIONS(1037), + [anon_sym_let] = ACTIONS(1037), + [anon_sym_let_DASHenv] = ACTIONS(1037), + [anon_sym_mut] = ACTIONS(1037), + [anon_sym_const] = ACTIONS(1037), + [anon_sym_SEMI] = ACTIONS(1037), + [sym_cmd_identifier] = ACTIONS(1037), + [anon_sym_LF] = ACTIONS(1039), + [anon_sym_def] = ACTIONS(1037), + [anon_sym_export_DASHenv] = ACTIONS(1037), + [anon_sym_extern] = ACTIONS(1037), + [anon_sym_module] = ACTIONS(1037), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_LBRACK] = ACTIONS(1037), + [anon_sym_LPAREN] = ACTIONS(1037), + [anon_sym_RPAREN] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1037), + [anon_sym_error] = ACTIONS(1037), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_break] = ACTIONS(1037), + [anon_sym_continue] = ACTIONS(1037), + [anon_sym_for] = ACTIONS(1037), + [anon_sym_in] = ACTIONS(1037), + [anon_sym_loop] = ACTIONS(1037), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_do] = ACTIONS(1037), + [anon_sym_if] = ACTIONS(1037), + [anon_sym_match] = ACTIONS(1037), + [anon_sym_LBRACE] = ACTIONS(1037), + [anon_sym_RBRACE] = ACTIONS(1037), + [anon_sym_DOT_DOT] = ACTIONS(1037), + [anon_sym_try] = ACTIONS(1037), + [anon_sym_return] = ACTIONS(1037), + [anon_sym_source] = ACTIONS(1037), + [anon_sym_source_DASHenv] = ACTIONS(1037), + [anon_sym_register] = ACTIONS(1037), + [anon_sym_hide] = ACTIONS(1037), + [anon_sym_hide_DASHenv] = ACTIONS(1037), + [anon_sym_overlay] = ACTIONS(1037), + [anon_sym_as] = ACTIONS(1037), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_where] = ACTIONS(1037), + [anon_sym_STAR_STAR] = ACTIONS(1037), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1037), + [anon_sym_mod] = ACTIONS(1037), + [anon_sym_SLASH_SLASH] = ACTIONS(1037), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_bit_DASHshl] = ACTIONS(1037), + [anon_sym_bit_DASHshr] = ACTIONS(1037), + [anon_sym_EQ_EQ] = ACTIONS(1037), + [anon_sym_BANG_EQ] = ACTIONS(1037), + [anon_sym_LT2] = ACTIONS(1037), + [anon_sym_LT_EQ] = ACTIONS(1037), + [anon_sym_GT_EQ] = ACTIONS(1037), + [anon_sym_not_DASHin] = ACTIONS(1037), + [anon_sym_starts_DASHwith] = ACTIONS(1037), + [anon_sym_ends_DASHwith] = ACTIONS(1037), + [anon_sym_EQ_TILDE] = ACTIONS(1037), + [anon_sym_BANG_TILDE] = ACTIONS(1037), + [anon_sym_bit_DASHand] = ACTIONS(1037), + [anon_sym_bit_DASHxor] = ACTIONS(1037), + [anon_sym_bit_DASHor] = ACTIONS(1037), + [anon_sym_and] = ACTIONS(1037), + [anon_sym_xor] = ACTIONS(1037), + [anon_sym_or] = ACTIONS(1037), + [anon_sym_not] = ACTIONS(1037), + [anon_sym_DOT_DOT2] = ACTIONS(1037), + [anon_sym_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1037), + [anon_sym_DOT_DOT_LT] = ACTIONS(1037), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1039), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1039), + [anon_sym_null] = ACTIONS(1037), + [anon_sym_true] = ACTIONS(1037), + [anon_sym_false] = ACTIONS(1037), + [aux_sym__val_number_decimal_token1] = ACTIONS(1037), + [aux_sym__val_number_decimal_token2] = ACTIONS(1037), + [anon_sym_DOT2] = ACTIONS(1037), + [aux_sym__val_number_decimal_token3] = ACTIONS(1037), + [aux_sym__val_number_token1] = ACTIONS(1037), + [aux_sym__val_number_token2] = ACTIONS(1037), + [aux_sym__val_number_token3] = ACTIONS(1037), + [aux_sym__val_number_token4] = ACTIONS(1037), + [aux_sym__val_number_token5] = ACTIONS(1037), + [aux_sym__val_number_token6] = ACTIONS(1037), + [anon_sym_0b] = ACTIONS(1037), + [anon_sym_0o] = ACTIONS(1037), + [anon_sym_0x] = ACTIONS(1037), + [sym_val_date] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1037), + [sym__str_single_quotes] = ACTIONS(1037), + [sym__str_back_ticks] = ACTIONS(1037), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1037), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1037), + [anon_sym_CARET] = ACTIONS(1037), + [anon_sym_POUND] = ACTIONS(113), + }, [272] = { [sym_comment] = STATE(272), - [ts_builtin_sym_end] = ACTIONS(961), - [anon_sym_export] = ACTIONS(959), - [anon_sym_alias] = ACTIONS(959), - [anon_sym_let] = ACTIONS(959), - [anon_sym_let_DASHenv] = ACTIONS(959), - [anon_sym_mut] = ACTIONS(959), - [anon_sym_const] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(959), - [sym_cmd_identifier] = ACTIONS(959), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_def] = ACTIONS(959), - [anon_sym_export_DASHenv] = ACTIONS(959), - [anon_sym_extern] = ACTIONS(959), - [anon_sym_module] = ACTIONS(959), - [anon_sym_use] = ACTIONS(959), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_error] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH_DASH] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_break] = ACTIONS(959), - [anon_sym_continue] = ACTIONS(959), - [anon_sym_for] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_loop] = ACTIONS(959), - [anon_sym_while] = ACTIONS(959), - [anon_sym_do] = ACTIONS(959), - [anon_sym_if] = ACTIONS(959), - [anon_sym_match] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_try] = ACTIONS(959), - [anon_sym_return] = ACTIONS(959), - [anon_sym_source] = ACTIONS(959), - [anon_sym_source_DASHenv] = ACTIONS(959), - [anon_sym_register] = ACTIONS(959), - [anon_sym_hide] = ACTIONS(959), - [anon_sym_hide_DASHenv] = ACTIONS(959), - [anon_sym_overlay] = ACTIONS(959), - [anon_sym_as] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_where] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(959), - [anon_sym_PLUS_PLUS] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(959), - [anon_sym_SLASH_SLASH] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(959), - [anon_sym_bit_DASHshr] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(959), - [anon_sym_BANG_EQ] = ACTIONS(959), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(959), - [anon_sym_GT_EQ] = ACTIONS(959), - [anon_sym_not_DASHin] = ACTIONS(959), - [anon_sym_starts_DASHwith] = ACTIONS(959), - [anon_sym_ends_DASHwith] = ACTIONS(959), - [anon_sym_EQ_TILDE] = ACTIONS(959), - [anon_sym_BANG_TILDE] = ACTIONS(959), - [anon_sym_bit_DASHand] = ACTIONS(959), - [anon_sym_bit_DASHxor] = ACTIONS(959), - [anon_sym_bit_DASHor] = ACTIONS(959), - [anon_sym_and] = ACTIONS(959), - [anon_sym_xor] = ACTIONS(959), - [anon_sym_or] = ACTIONS(959), - [anon_sym_not] = ACTIONS(959), - [anon_sym_DOT_DOT2] = ACTIONS(1014), - [anon_sym_DOT] = ACTIONS(1016), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_DOT_DOT_LT] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1018), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1018), - [anon_sym_null] = ACTIONS(959), - [anon_sym_true] = ACTIONS(959), - [anon_sym_false] = ACTIONS(959), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(959), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(959), - [aux_sym__val_number_token1] = ACTIONS(959), - [aux_sym__val_number_token2] = ACTIONS(959), - [aux_sym__val_number_token3] = ACTIONS(959), - [aux_sym__val_number_token4] = ACTIONS(959), - [aux_sym__val_number_token5] = ACTIONS(959), - [aux_sym__val_number_token6] = ACTIONS(959), - [anon_sym_0b] = ACTIONS(959), - [sym_filesize_unit] = ACTIONS(1020), - [sym_duration_unit] = ACTIONS(1022), - [anon_sym_0o] = ACTIONS(959), - [anon_sym_0x] = ACTIONS(959), - [sym_val_date] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [sym__str_single_quotes] = ACTIONS(959), - [sym__str_back_ticks] = ACTIONS(959), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(959), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(959), - [anon_sym_CARET] = ACTIONS(959), - [aux_sym_unquoted_token5] = ACTIONS(1024), + [anon_sym_export] = ACTIONS(1041), + [anon_sym_alias] = ACTIONS(1041), + [anon_sym_let] = ACTIONS(1041), + [anon_sym_let_DASHenv] = ACTIONS(1041), + [anon_sym_mut] = ACTIONS(1041), + [anon_sym_const] = ACTIONS(1041), + [anon_sym_SEMI] = ACTIONS(1041), + [sym_cmd_identifier] = ACTIONS(1041), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_def] = ACTIONS(1041), + [anon_sym_export_DASHenv] = ACTIONS(1041), + [anon_sym_extern] = ACTIONS(1041), + [anon_sym_module] = ACTIONS(1041), + [anon_sym_use] = ACTIONS(1041), + [anon_sym_LBRACK] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1041), + [anon_sym_RPAREN] = ACTIONS(1041), + [anon_sym_DOLLAR] = ACTIONS(1041), + [anon_sym_error] = ACTIONS(1041), + [anon_sym_GT] = ACTIONS(1041), + [anon_sym_DASH_DASH] = ACTIONS(1041), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_break] = ACTIONS(1041), + [anon_sym_continue] = ACTIONS(1041), + [anon_sym_for] = ACTIONS(1041), + [anon_sym_in] = ACTIONS(1041), + [anon_sym_loop] = ACTIONS(1041), + [anon_sym_while] = ACTIONS(1041), + [anon_sym_do] = ACTIONS(1041), + [anon_sym_if] = ACTIONS(1041), + [anon_sym_match] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_RBRACE] = ACTIONS(1041), + [anon_sym_DOT_DOT] = ACTIONS(1041), + [anon_sym_try] = ACTIONS(1041), + [anon_sym_return] = ACTIONS(1041), + [anon_sym_source] = ACTIONS(1041), + [anon_sym_source_DASHenv] = ACTIONS(1041), + [anon_sym_register] = ACTIONS(1041), + [anon_sym_hide] = ACTIONS(1041), + [anon_sym_hide_DASHenv] = ACTIONS(1041), + [anon_sym_overlay] = ACTIONS(1041), + [anon_sym_as] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_where] = ACTIONS(1041), + [anon_sym_STAR_STAR] = ACTIONS(1041), + [anon_sym_PLUS_PLUS] = ACTIONS(1041), + [anon_sym_SLASH] = ACTIONS(1041), + [anon_sym_mod] = ACTIONS(1041), + [anon_sym_SLASH_SLASH] = ACTIONS(1041), + [anon_sym_PLUS] = ACTIONS(1041), + [anon_sym_bit_DASHshl] = ACTIONS(1041), + [anon_sym_bit_DASHshr] = ACTIONS(1041), + [anon_sym_EQ_EQ] = ACTIONS(1041), + [anon_sym_BANG_EQ] = ACTIONS(1041), + [anon_sym_LT2] = ACTIONS(1041), + [anon_sym_LT_EQ] = ACTIONS(1041), + [anon_sym_GT_EQ] = ACTIONS(1041), + [anon_sym_not_DASHin] = ACTIONS(1041), + [anon_sym_starts_DASHwith] = ACTIONS(1041), + [anon_sym_ends_DASHwith] = ACTIONS(1041), + [anon_sym_EQ_TILDE] = ACTIONS(1041), + [anon_sym_BANG_TILDE] = ACTIONS(1041), + [anon_sym_bit_DASHand] = ACTIONS(1041), + [anon_sym_bit_DASHxor] = ACTIONS(1041), + [anon_sym_bit_DASHor] = ACTIONS(1041), + [anon_sym_and] = ACTIONS(1041), + [anon_sym_xor] = ACTIONS(1041), + [anon_sym_or] = ACTIONS(1041), + [anon_sym_not] = ACTIONS(1041), + [anon_sym_DOT_DOT2] = ACTIONS(1041), + [anon_sym_DOT] = ACTIONS(1041), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1041), + [anon_sym_DOT_DOT_LT] = ACTIONS(1041), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1043), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1043), + [anon_sym_null] = ACTIONS(1041), + [anon_sym_true] = ACTIONS(1041), + [anon_sym_false] = ACTIONS(1041), + [aux_sym__val_number_decimal_token1] = ACTIONS(1041), + [aux_sym__val_number_decimal_token2] = ACTIONS(1041), + [anon_sym_DOT2] = ACTIONS(1041), + [aux_sym__val_number_decimal_token3] = ACTIONS(1041), + [aux_sym__val_number_token1] = ACTIONS(1041), + [aux_sym__val_number_token2] = ACTIONS(1041), + [aux_sym__val_number_token3] = ACTIONS(1041), + [aux_sym__val_number_token4] = ACTIONS(1041), + [aux_sym__val_number_token5] = ACTIONS(1041), + [aux_sym__val_number_token6] = ACTIONS(1041), + [anon_sym_0b] = ACTIONS(1041), + [anon_sym_0o] = ACTIONS(1041), + [anon_sym_0x] = ACTIONS(1041), + [sym_val_date] = ACTIONS(1041), + [anon_sym_DQUOTE] = ACTIONS(1041), + [sym__str_single_quotes] = ACTIONS(1041), + [sym__str_back_ticks] = ACTIONS(1041), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1041), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1041), + [anon_sym_CARET] = ACTIONS(1041), [anon_sym_POUND] = ACTIONS(113), }, [273] = { [sym_comment] = STATE(273), - [ts_builtin_sym_end] = ACTIONS(961), - [anon_sym_export] = ACTIONS(959), - [anon_sym_alias] = ACTIONS(959), - [anon_sym_let] = ACTIONS(959), - [anon_sym_let_DASHenv] = ACTIONS(959), - [anon_sym_mut] = ACTIONS(959), - [anon_sym_const] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(959), - [sym_cmd_identifier] = ACTIONS(959), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_def] = ACTIONS(959), - [anon_sym_export_DASHenv] = ACTIONS(959), - [anon_sym_extern] = ACTIONS(959), - [anon_sym_module] = ACTIONS(959), - [anon_sym_use] = ACTIONS(959), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_error] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH_DASH] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_break] = ACTIONS(959), - [anon_sym_continue] = ACTIONS(959), - [anon_sym_for] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_loop] = ACTIONS(959), - [anon_sym_while] = ACTIONS(959), - [anon_sym_do] = ACTIONS(959), - [anon_sym_if] = ACTIONS(959), - [anon_sym_match] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_try] = ACTIONS(959), - [anon_sym_return] = ACTIONS(959), - [anon_sym_source] = ACTIONS(959), - [anon_sym_source_DASHenv] = ACTIONS(959), - [anon_sym_register] = ACTIONS(959), - [anon_sym_hide] = ACTIONS(959), - [anon_sym_hide_DASHenv] = ACTIONS(959), - [anon_sym_overlay] = ACTIONS(959), - [anon_sym_as] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_where] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(959), - [anon_sym_PLUS_PLUS] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(959), - [anon_sym_SLASH_SLASH] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(959), - [anon_sym_bit_DASHshr] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(959), - [anon_sym_BANG_EQ] = ACTIONS(959), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(959), - [anon_sym_GT_EQ] = ACTIONS(959), - [anon_sym_not_DASHin] = ACTIONS(959), - [anon_sym_starts_DASHwith] = ACTIONS(959), - [anon_sym_ends_DASHwith] = ACTIONS(959), - [anon_sym_EQ_TILDE] = ACTIONS(959), - [anon_sym_BANG_TILDE] = ACTIONS(959), - [anon_sym_bit_DASHand] = ACTIONS(959), - [anon_sym_bit_DASHxor] = ACTIONS(959), - [anon_sym_bit_DASHor] = ACTIONS(959), - [anon_sym_and] = ACTIONS(959), - [anon_sym_xor] = ACTIONS(959), - [anon_sym_or] = ACTIONS(959), - [anon_sym_not] = ACTIONS(959), - [anon_sym_DOT_DOT2] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(1026), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_DOT_DOT_LT] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(983), - [anon_sym_DOT_DOT_LT2] = ACTIONS(983), - [anon_sym_null] = ACTIONS(959), - [anon_sym_true] = ACTIONS(959), - [anon_sym_false] = ACTIONS(959), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(959), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(959), - [aux_sym__val_number_token1] = ACTIONS(959), - [aux_sym__val_number_token2] = ACTIONS(959), - [aux_sym__val_number_token3] = ACTIONS(959), - [aux_sym__val_number_token4] = ACTIONS(959), - [aux_sym__val_number_token5] = ACTIONS(959), - [aux_sym__val_number_token6] = ACTIONS(959), - [anon_sym_0b] = ACTIONS(959), - [sym_filesize_unit] = ACTIONS(1020), - [sym_duration_unit] = ACTIONS(1022), - [anon_sym_0o] = ACTIONS(959), - [anon_sym_0x] = ACTIONS(959), - [sym_val_date] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [sym__str_single_quotes] = ACTIONS(959), - [sym__str_back_ticks] = ACTIONS(959), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(959), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(959), - [anon_sym_CARET] = ACTIONS(959), - [aux_sym_unquoted_token5] = ACTIONS(1028), + [ts_builtin_sym_end] = ACTIONS(1035), + [anon_sym_export] = ACTIONS(1033), + [anon_sym_alias] = ACTIONS(1033), + [anon_sym_let] = ACTIONS(1033), + [anon_sym_let_DASHenv] = ACTIONS(1033), + [anon_sym_mut] = ACTIONS(1033), + [anon_sym_const] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(1033), + [sym_cmd_identifier] = ACTIONS(1033), + [anon_sym_LF] = ACTIONS(1035), + [anon_sym_def] = ACTIONS(1033), + [anon_sym_export_DASHenv] = ACTIONS(1033), + [anon_sym_extern] = ACTIONS(1033), + [anon_sym_module] = ACTIONS(1033), + [anon_sym_use] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1033), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_error] = ACTIONS(1033), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1033), + [anon_sym_break] = ACTIONS(1033), + [anon_sym_continue] = ACTIONS(1033), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_in] = ACTIONS(1033), + [anon_sym_loop] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(1033), + [anon_sym_do] = ACTIONS(1033), + [anon_sym_if] = ACTIONS(1033), + [anon_sym_match] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_DOT_DOT] = ACTIONS(1033), + [anon_sym_try] = ACTIONS(1033), + [anon_sym_return] = ACTIONS(1033), + [anon_sym_source] = ACTIONS(1033), + [anon_sym_source_DASHenv] = ACTIONS(1033), + [anon_sym_register] = ACTIONS(1033), + [anon_sym_hide] = ACTIONS(1033), + [anon_sym_hide_DASHenv] = ACTIONS(1033), + [anon_sym_overlay] = ACTIONS(1033), + [anon_sym_as] = ACTIONS(1033), + [anon_sym_STAR] = ACTIONS(1033), + [anon_sym_where] = ACTIONS(1033), + [anon_sym_QMARK2] = ACTIONS(1033), + [anon_sym_STAR_STAR] = ACTIONS(1033), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_SLASH] = ACTIONS(1033), + [anon_sym_mod] = ACTIONS(1033), + [anon_sym_SLASH_SLASH] = ACTIONS(1033), + [anon_sym_PLUS] = ACTIONS(1033), + [anon_sym_bit_DASHshl] = ACTIONS(1033), + [anon_sym_bit_DASHshr] = ACTIONS(1033), + [anon_sym_EQ_EQ] = ACTIONS(1033), + [anon_sym_BANG_EQ] = ACTIONS(1033), + [anon_sym_LT2] = ACTIONS(1033), + [anon_sym_LT_EQ] = ACTIONS(1033), + [anon_sym_GT_EQ] = ACTIONS(1033), + [anon_sym_not_DASHin] = ACTIONS(1033), + [anon_sym_starts_DASHwith] = ACTIONS(1033), + [anon_sym_ends_DASHwith] = ACTIONS(1033), + [anon_sym_EQ_TILDE] = ACTIONS(1033), + [anon_sym_BANG_TILDE] = ACTIONS(1033), + [anon_sym_bit_DASHand] = ACTIONS(1033), + [anon_sym_bit_DASHxor] = ACTIONS(1033), + [anon_sym_bit_DASHor] = ACTIONS(1033), + [anon_sym_and] = ACTIONS(1033), + [anon_sym_xor] = ACTIONS(1033), + [anon_sym_or] = ACTIONS(1033), + [anon_sym_not] = ACTIONS(1033), + [anon_sym_DOT_DOT2] = ACTIONS(1033), + [anon_sym_DOT] = ACTIONS(1033), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1033), + [anon_sym_DOT_DOT_LT] = ACTIONS(1033), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1035), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1035), + [anon_sym_null] = ACTIONS(1033), + [anon_sym_true] = ACTIONS(1033), + [anon_sym_false] = ACTIONS(1033), + [aux_sym__val_number_decimal_token1] = ACTIONS(1033), + [aux_sym__val_number_decimal_token2] = ACTIONS(1033), + [anon_sym_DOT2] = ACTIONS(1033), + [aux_sym__val_number_decimal_token3] = ACTIONS(1033), + [aux_sym__val_number_token1] = ACTIONS(1033), + [aux_sym__val_number_token2] = ACTIONS(1033), + [aux_sym__val_number_token3] = ACTIONS(1033), + [aux_sym__val_number_token4] = ACTIONS(1033), + [aux_sym__val_number_token5] = ACTIONS(1033), + [aux_sym__val_number_token6] = ACTIONS(1033), + [anon_sym_0b] = ACTIONS(1033), + [anon_sym_0o] = ACTIONS(1033), + [anon_sym_0x] = ACTIONS(1033), + [sym_val_date] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [sym__str_single_quotes] = ACTIONS(1033), + [sym__str_back_ticks] = ACTIONS(1033), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1033), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1033), + [anon_sym_CARET] = ACTIONS(1033), [anon_sym_POUND] = ACTIONS(113), }, [274] = { [sym_comment] = STATE(274), - [anon_sym_export] = ACTIONS(923), - [anon_sym_alias] = ACTIONS(923), - [anon_sym_let] = ACTIONS(923), - [anon_sym_let_DASHenv] = ACTIONS(923), - [anon_sym_mut] = ACTIONS(923), - [anon_sym_const] = ACTIONS(923), - [anon_sym_SEMI] = ACTIONS(923), - [sym_cmd_identifier] = ACTIONS(923), - [anon_sym_LF] = ACTIONS(925), - [anon_sym_def] = ACTIONS(923), - [anon_sym_export_DASHenv] = ACTIONS(923), - [anon_sym_extern] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_use] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_RPAREN] = ACTIONS(923), - [anon_sym_DOLLAR] = ACTIONS(923), - [anon_sym_error] = ACTIONS(923), - [anon_sym_GT] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_break] = ACTIONS(923), - [anon_sym_continue] = ACTIONS(923), - [anon_sym_for] = ACTIONS(923), - [anon_sym_in] = ACTIONS(923), - [anon_sym_loop] = ACTIONS(923), - [anon_sym_while] = ACTIONS(923), - [anon_sym_do] = ACTIONS(923), - [anon_sym_if] = ACTIONS(923), - [anon_sym_match] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(923), - [anon_sym_RBRACE] = ACTIONS(923), - [anon_sym_DOT_DOT] = ACTIONS(923), - [anon_sym_try] = ACTIONS(923), - [anon_sym_return] = ACTIONS(923), - [anon_sym_source] = ACTIONS(923), - [anon_sym_source_DASHenv] = ACTIONS(923), - [anon_sym_register] = ACTIONS(923), - [anon_sym_hide] = ACTIONS(923), - [anon_sym_hide_DASHenv] = ACTIONS(923), - [anon_sym_overlay] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_where] = ACTIONS(923), - [anon_sym_STAR_STAR] = ACTIONS(923), - [anon_sym_PLUS_PLUS] = ACTIONS(923), - [anon_sym_SLASH] = ACTIONS(923), - [anon_sym_mod] = ACTIONS(923), - [anon_sym_SLASH_SLASH] = ACTIONS(923), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_bit_DASHshl] = ACTIONS(923), - [anon_sym_bit_DASHshr] = ACTIONS(923), - [anon_sym_EQ_EQ] = ACTIONS(923), - [anon_sym_BANG_EQ] = ACTIONS(923), - [anon_sym_LT2] = ACTIONS(923), - [anon_sym_LT_EQ] = ACTIONS(923), - [anon_sym_GT_EQ] = ACTIONS(923), - [anon_sym_not_DASHin] = ACTIONS(923), - [anon_sym_starts_DASHwith] = ACTIONS(923), - [anon_sym_ends_DASHwith] = ACTIONS(923), - [anon_sym_EQ_TILDE] = ACTIONS(923), - [anon_sym_BANG_TILDE] = ACTIONS(923), - [anon_sym_bit_DASHand] = ACTIONS(923), - [anon_sym_bit_DASHxor] = ACTIONS(923), - [anon_sym_bit_DASHor] = ACTIONS(923), - [anon_sym_and] = ACTIONS(923), - [anon_sym_xor] = ACTIONS(923), - [anon_sym_or] = ACTIONS(923), - [anon_sym_not] = ACTIONS(923), - [anon_sym_DOT_DOT2] = ACTIONS(923), - [anon_sym_DOT] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ] = ACTIONS(923), - [anon_sym_DOT_DOT_LT] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(925), - [anon_sym_DOT_DOT_LT2] = ACTIONS(925), - [aux_sym__immediate_decimal_token2] = ACTIONS(1030), - [anon_sym_null] = ACTIONS(923), - [anon_sym_true] = ACTIONS(923), - [anon_sym_false] = ACTIONS(923), - [aux_sym__val_number_decimal_token1] = ACTIONS(923), - [aux_sym__val_number_decimal_token2] = ACTIONS(923), - [anon_sym_DOT2] = ACTIONS(923), - [aux_sym__val_number_decimal_token3] = ACTIONS(923), - [aux_sym__val_number_token1] = ACTIONS(923), - [aux_sym__val_number_token2] = ACTIONS(923), - [aux_sym__val_number_token3] = ACTIONS(923), - [aux_sym__val_number_token4] = ACTIONS(923), - [aux_sym__val_number_token5] = ACTIONS(923), - [aux_sym__val_number_token6] = ACTIONS(923), - [anon_sym_0b] = ACTIONS(923), - [sym_filesize_unit] = ACTIONS(923), - [sym_duration_unit] = ACTIONS(923), - [anon_sym_0o] = ACTIONS(923), - [anon_sym_0x] = ACTIONS(923), - [sym_val_date] = ACTIONS(923), - [anon_sym_DQUOTE] = ACTIONS(923), - [sym__str_single_quotes] = ACTIONS(923), - [sym__str_back_ticks] = ACTIONS(923), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(923), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), - [anon_sym_CARET] = ACTIONS(923), - [aux_sym_unquoted_token5] = ACTIONS(923), + [ts_builtin_sym_end] = ACTIONS(1022), + [anon_sym_export] = ACTIONS(1020), + [anon_sym_alias] = ACTIONS(1020), + [anon_sym_let] = ACTIONS(1020), + [anon_sym_let_DASHenv] = ACTIONS(1020), + [anon_sym_mut] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1020), + [sym_cmd_identifier] = ACTIONS(1020), + [anon_sym_LF] = ACTIONS(1022), + [anon_sym_def] = ACTIONS(1020), + [anon_sym_export_DASHenv] = ACTIONS(1020), + [anon_sym_extern] = ACTIONS(1020), + [anon_sym_module] = ACTIONS(1020), + [anon_sym_use] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_error] = ACTIONS(1020), + [anon_sym_GT] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1020), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_in] = ACTIONS(1020), + [anon_sym_loop] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_match] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_DOT_DOT] = ACTIONS(1020), + [anon_sym_try] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_source] = ACTIONS(1020), + [anon_sym_source_DASHenv] = ACTIONS(1020), + [anon_sym_register] = ACTIONS(1020), + [anon_sym_hide] = ACTIONS(1020), + [anon_sym_hide_DASHenv] = ACTIONS(1020), + [anon_sym_overlay] = ACTIONS(1020), + [anon_sym_as] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_where] = ACTIONS(1020), + [anon_sym_QMARK2] = ACTIONS(1020), + [anon_sym_STAR_STAR] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1020), + [anon_sym_SLASH] = ACTIONS(1020), + [anon_sym_mod] = ACTIONS(1020), + [anon_sym_SLASH_SLASH] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_bit_DASHshl] = ACTIONS(1020), + [anon_sym_bit_DASHshr] = ACTIONS(1020), + [anon_sym_EQ_EQ] = ACTIONS(1020), + [anon_sym_BANG_EQ] = ACTIONS(1020), + [anon_sym_LT2] = ACTIONS(1020), + [anon_sym_LT_EQ] = ACTIONS(1020), + [anon_sym_GT_EQ] = ACTIONS(1020), + [anon_sym_not_DASHin] = ACTIONS(1020), + [anon_sym_starts_DASHwith] = ACTIONS(1020), + [anon_sym_ends_DASHwith] = ACTIONS(1020), + [anon_sym_EQ_TILDE] = ACTIONS(1020), + [anon_sym_BANG_TILDE] = ACTIONS(1020), + [anon_sym_bit_DASHand] = ACTIONS(1020), + [anon_sym_bit_DASHxor] = ACTIONS(1020), + [anon_sym_bit_DASHor] = ACTIONS(1020), + [anon_sym_and] = ACTIONS(1020), + [anon_sym_xor] = ACTIONS(1020), + [anon_sym_or] = ACTIONS(1020), + [anon_sym_not] = ACTIONS(1020), + [anon_sym_DOT_DOT2] = ACTIONS(1020), + [anon_sym_DOT] = ACTIONS(1020), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1020), + [anon_sym_DOT_DOT_LT] = ACTIONS(1020), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1022), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1022), + [anon_sym_null] = ACTIONS(1020), + [anon_sym_true] = ACTIONS(1020), + [anon_sym_false] = ACTIONS(1020), + [aux_sym__val_number_decimal_token1] = ACTIONS(1020), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [anon_sym_DOT2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1020), + [aux_sym__val_number_token1] = ACTIONS(1020), + [aux_sym__val_number_token2] = ACTIONS(1020), + [aux_sym__val_number_token3] = ACTIONS(1020), + [aux_sym__val_number_token4] = ACTIONS(1020), + [aux_sym__val_number_token5] = ACTIONS(1020), + [aux_sym__val_number_token6] = ACTIONS(1020), + [anon_sym_0b] = ACTIONS(1020), + [anon_sym_0o] = ACTIONS(1020), + [anon_sym_0x] = ACTIONS(1020), + [sym_val_date] = ACTIONS(1020), + [anon_sym_DQUOTE] = ACTIONS(1020), + [sym__str_single_quotes] = ACTIONS(1020), + [sym__str_back_ticks] = ACTIONS(1020), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1020), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1020), + [anon_sym_CARET] = ACTIONS(1020), [anon_sym_POUND] = ACTIONS(113), }, [275] = { [sym_comment] = STATE(275), - [ts_builtin_sym_end] = ACTIONS(911), - [anon_sym_export] = ACTIONS(909), - [anon_sym_alias] = ACTIONS(909), - [anon_sym_let] = ACTIONS(909), - [anon_sym_let_DASHenv] = ACTIONS(909), - [anon_sym_mut] = ACTIONS(909), - [anon_sym_const] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(909), - [sym_cmd_identifier] = ACTIONS(909), - [anon_sym_LF] = ACTIONS(911), - [anon_sym_def] = ACTIONS(909), - [anon_sym_export_DASHenv] = ACTIONS(909), - [anon_sym_extern] = ACTIONS(909), - [anon_sym_module] = ACTIONS(909), - [anon_sym_use] = ACTIONS(909), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_error] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_break] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_for] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_loop] = ACTIONS(909), - [anon_sym_while] = ACTIONS(909), - [anon_sym_do] = ACTIONS(909), - [anon_sym_if] = ACTIONS(909), - [anon_sym_match] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_DOT_DOT] = ACTIONS(909), - [anon_sym_try] = ACTIONS(909), - [anon_sym_return] = ACTIONS(909), - [anon_sym_source] = ACTIONS(909), - [anon_sym_source_DASHenv] = ACTIONS(909), - [anon_sym_register] = ACTIONS(909), - [anon_sym_hide] = ACTIONS(909), - [anon_sym_hide_DASHenv] = ACTIONS(909), - [anon_sym_overlay] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_where] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(909), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(909), - [anon_sym_SLASH_SLASH] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(909), - [anon_sym_bit_DASHshr] = ACTIONS(909), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_not_DASHin] = ACTIONS(909), - [anon_sym_starts_DASHwith] = ACTIONS(909), - [anon_sym_ends_DASHwith] = ACTIONS(909), - [anon_sym_EQ_TILDE] = ACTIONS(909), - [anon_sym_BANG_TILDE] = ACTIONS(909), - [anon_sym_bit_DASHand] = ACTIONS(909), - [anon_sym_bit_DASHxor] = ACTIONS(909), - [anon_sym_bit_DASHor] = ACTIONS(909), - [anon_sym_and] = ACTIONS(909), - [anon_sym_xor] = ACTIONS(909), - [anon_sym_or] = ACTIONS(909), - [anon_sym_not] = ACTIONS(909), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [aux_sym__immediate_decimal_token1] = ACTIONS(1032), - [aux_sym__immediate_decimal_token2] = ACTIONS(1034), - [anon_sym_null] = ACTIONS(909), - [anon_sym_true] = ACTIONS(909), - [anon_sym_false] = ACTIONS(909), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(909), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(909), - [aux_sym__val_number_token1] = ACTIONS(909), - [aux_sym__val_number_token2] = ACTIONS(909), - [aux_sym__val_number_token3] = ACTIONS(909), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(909), - [aux_sym__val_number_token6] = ACTIONS(909), - [anon_sym_0b] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(909), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym__str_single_quotes] = ACTIONS(909), - [sym__str_back_ticks] = ACTIONS(909), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), - [anon_sym_CARET] = ACTIONS(909), - [aux_sym_unquoted_token5] = ACTIONS(909), + [ts_builtin_sym_end] = ACTIONS(1026), + [anon_sym_export] = ACTIONS(1024), + [anon_sym_alias] = ACTIONS(1024), + [anon_sym_let] = ACTIONS(1024), + [anon_sym_let_DASHenv] = ACTIONS(1024), + [anon_sym_mut] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1024), + [sym_cmd_identifier] = ACTIONS(1024), + [anon_sym_LF] = ACTIONS(1026), + [anon_sym_def] = ACTIONS(1024), + [anon_sym_export_DASHenv] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1024), + [anon_sym_module] = ACTIONS(1024), + [anon_sym_use] = ACTIONS(1024), + [anon_sym_LBRACK] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_error] = ACTIONS(1024), + [anon_sym_GT] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_loop] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_match] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym_DOT_DOT] = ACTIONS(1024), + [anon_sym_try] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_source] = ACTIONS(1024), + [anon_sym_source_DASHenv] = ACTIONS(1024), + [anon_sym_register] = ACTIONS(1024), + [anon_sym_hide] = ACTIONS(1024), + [anon_sym_hide_DASHenv] = ACTIONS(1024), + [anon_sym_overlay] = ACTIONS(1024), + [anon_sym_as] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_where] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(1045), + [anon_sym_STAR_STAR] = ACTIONS(1024), + [anon_sym_PLUS_PLUS] = ACTIONS(1024), + [anon_sym_SLASH] = ACTIONS(1024), + [anon_sym_mod] = ACTIONS(1024), + [anon_sym_SLASH_SLASH] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_bit_DASHshl] = ACTIONS(1024), + [anon_sym_bit_DASHshr] = ACTIONS(1024), + [anon_sym_EQ_EQ] = ACTIONS(1024), + [anon_sym_BANG_EQ] = ACTIONS(1024), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ] = ACTIONS(1024), + [anon_sym_GT_EQ] = ACTIONS(1024), + [anon_sym_not_DASHin] = ACTIONS(1024), + [anon_sym_starts_DASHwith] = ACTIONS(1024), + [anon_sym_ends_DASHwith] = ACTIONS(1024), + [anon_sym_EQ_TILDE] = ACTIONS(1024), + [anon_sym_BANG_TILDE] = ACTIONS(1024), + [anon_sym_bit_DASHand] = ACTIONS(1024), + [anon_sym_bit_DASHxor] = ACTIONS(1024), + [anon_sym_bit_DASHor] = ACTIONS(1024), + [anon_sym_and] = ACTIONS(1024), + [anon_sym_xor] = ACTIONS(1024), + [anon_sym_or] = ACTIONS(1024), + [anon_sym_not] = ACTIONS(1024), + [anon_sym_DOT_DOT2] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1026), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1026), + [anon_sym_null] = ACTIONS(1024), + [anon_sym_true] = ACTIONS(1024), + [anon_sym_false] = ACTIONS(1024), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1024), + [aux_sym__val_number_token1] = ACTIONS(1024), + [aux_sym__val_number_token2] = ACTIONS(1024), + [aux_sym__val_number_token3] = ACTIONS(1024), + [aux_sym__val_number_token4] = ACTIONS(1024), + [aux_sym__val_number_token5] = ACTIONS(1024), + [aux_sym__val_number_token6] = ACTIONS(1024), + [anon_sym_0b] = ACTIONS(1024), + [anon_sym_0o] = ACTIONS(1024), + [anon_sym_0x] = ACTIONS(1024), + [sym_val_date] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym__str_single_quotes] = ACTIONS(1024), + [sym__str_back_ticks] = ACTIONS(1024), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1024), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1024), + [anon_sym_CARET] = ACTIONS(1024), [anon_sym_POUND] = ACTIONS(113), }, [276] = { [sym_comment] = STATE(276), - [ts_builtin_sym_end] = ACTIONS(919), - [anon_sym_export] = ACTIONS(917), - [anon_sym_alias] = ACTIONS(917), - [anon_sym_let] = ACTIONS(917), - [anon_sym_let_DASHenv] = ACTIONS(917), - [anon_sym_mut] = ACTIONS(917), - [anon_sym_const] = ACTIONS(917), - [anon_sym_SEMI] = ACTIONS(917), - [sym_cmd_identifier] = ACTIONS(917), - [anon_sym_LF] = ACTIONS(919), - [anon_sym_def] = ACTIONS(917), - [anon_sym_export_DASHenv] = ACTIONS(917), - [anon_sym_extern] = ACTIONS(917), - [anon_sym_module] = ACTIONS(917), - [anon_sym_use] = ACTIONS(917), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_LPAREN] = ACTIONS(917), - [anon_sym_DOLLAR] = ACTIONS(917), - [anon_sym_error] = ACTIONS(917), - [anon_sym_GT] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_break] = ACTIONS(917), - [anon_sym_continue] = ACTIONS(917), - [anon_sym_for] = ACTIONS(917), - [anon_sym_in] = ACTIONS(917), - [anon_sym_loop] = ACTIONS(917), - [anon_sym_while] = ACTIONS(917), - [anon_sym_do] = ACTIONS(917), - [anon_sym_if] = ACTIONS(917), - [anon_sym_match] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(917), - [anon_sym_DOT_DOT] = ACTIONS(917), - [anon_sym_try] = ACTIONS(917), - [anon_sym_return] = ACTIONS(917), - [anon_sym_source] = ACTIONS(917), - [anon_sym_source_DASHenv] = ACTIONS(917), - [anon_sym_register] = ACTIONS(917), - [anon_sym_hide] = ACTIONS(917), - [anon_sym_hide_DASHenv] = ACTIONS(917), - [anon_sym_overlay] = ACTIONS(917), - [anon_sym_as] = ACTIONS(917), - [anon_sym_STAR] = ACTIONS(917), - [anon_sym_where] = ACTIONS(917), - [anon_sym_STAR_STAR] = ACTIONS(917), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_mod] = ACTIONS(917), - [anon_sym_SLASH_SLASH] = ACTIONS(917), - [anon_sym_PLUS] = ACTIONS(917), - [anon_sym_bit_DASHshl] = ACTIONS(917), - [anon_sym_bit_DASHshr] = ACTIONS(917), - [anon_sym_EQ_EQ] = ACTIONS(917), - [anon_sym_BANG_EQ] = ACTIONS(917), - [anon_sym_LT2] = ACTIONS(917), - [anon_sym_LT_EQ] = ACTIONS(917), - [anon_sym_GT_EQ] = ACTIONS(917), - [anon_sym_not_DASHin] = ACTIONS(917), - [anon_sym_starts_DASHwith] = ACTIONS(917), - [anon_sym_ends_DASHwith] = ACTIONS(917), - [anon_sym_EQ_TILDE] = ACTIONS(917), - [anon_sym_BANG_TILDE] = ACTIONS(917), - [anon_sym_bit_DASHand] = ACTIONS(917), - [anon_sym_bit_DASHxor] = ACTIONS(917), - [anon_sym_bit_DASHor] = ACTIONS(917), - [anon_sym_and] = ACTIONS(917), - [anon_sym_xor] = ACTIONS(917), - [anon_sym_or] = ACTIONS(917), - [anon_sym_not] = ACTIONS(917), - [anon_sym_DOT_DOT2] = ACTIONS(917), - [anon_sym_DOT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ] = ACTIONS(917), - [anon_sym_DOT_DOT_LT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(919), - [anon_sym_DOT_DOT_LT2] = ACTIONS(919), - [anon_sym_null] = ACTIONS(917), - [anon_sym_true] = ACTIONS(917), - [anon_sym_false] = ACTIONS(917), - [aux_sym__val_number_decimal_token1] = ACTIONS(917), - [aux_sym__val_number_decimal_token2] = ACTIONS(917), - [anon_sym_DOT2] = ACTIONS(917), - [aux_sym__val_number_decimal_token3] = ACTIONS(917), - [aux_sym__val_number_token1] = ACTIONS(917), - [aux_sym__val_number_token2] = ACTIONS(917), - [aux_sym__val_number_token3] = ACTIONS(917), - [aux_sym__val_number_token4] = ACTIONS(917), - [aux_sym__val_number_token5] = ACTIONS(917), - [aux_sym__val_number_token6] = ACTIONS(917), - [anon_sym_0b] = ACTIONS(917), - [sym_filesize_unit] = ACTIONS(917), - [sym_duration_unit] = ACTIONS(917), - [anon_sym_0o] = ACTIONS(917), - [anon_sym_0x] = ACTIONS(917), - [sym_val_date] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(917), - [sym__str_single_quotes] = ACTIONS(917), - [sym__str_back_ticks] = ACTIONS(917), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(917), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(917), - [anon_sym_CARET] = ACTIONS(917), - [aux_sym_unquoted_token5] = ACTIONS(917), + [ts_builtin_sym_end] = ACTIONS(1026), + [anon_sym_export] = ACTIONS(1024), + [anon_sym_alias] = ACTIONS(1024), + [anon_sym_let] = ACTIONS(1024), + [anon_sym_let_DASHenv] = ACTIONS(1024), + [anon_sym_mut] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1024), + [sym_cmd_identifier] = ACTIONS(1024), + [anon_sym_LF] = ACTIONS(1026), + [anon_sym_def] = ACTIONS(1024), + [anon_sym_export_DASHenv] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1024), + [anon_sym_module] = ACTIONS(1024), + [anon_sym_use] = ACTIONS(1024), + [anon_sym_LBRACK] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_error] = ACTIONS(1024), + [anon_sym_GT] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_loop] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_match] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym_DOT_DOT] = ACTIONS(1024), + [anon_sym_try] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_source] = ACTIONS(1024), + [anon_sym_source_DASHenv] = ACTIONS(1024), + [anon_sym_register] = ACTIONS(1024), + [anon_sym_hide] = ACTIONS(1024), + [anon_sym_hide_DASHenv] = ACTIONS(1024), + [anon_sym_overlay] = ACTIONS(1024), + [anon_sym_as] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_where] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(1045), + [anon_sym_STAR_STAR] = ACTIONS(1024), + [anon_sym_PLUS_PLUS] = ACTIONS(1024), + [anon_sym_SLASH] = ACTIONS(1024), + [anon_sym_mod] = ACTIONS(1024), + [anon_sym_SLASH_SLASH] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_bit_DASHshl] = ACTIONS(1024), + [anon_sym_bit_DASHshr] = ACTIONS(1024), + [anon_sym_EQ_EQ] = ACTIONS(1024), + [anon_sym_BANG_EQ] = ACTIONS(1024), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ] = ACTIONS(1024), + [anon_sym_GT_EQ] = ACTIONS(1024), + [anon_sym_not_DASHin] = ACTIONS(1024), + [anon_sym_starts_DASHwith] = ACTIONS(1024), + [anon_sym_ends_DASHwith] = ACTIONS(1024), + [anon_sym_EQ_TILDE] = ACTIONS(1024), + [anon_sym_BANG_TILDE] = ACTIONS(1024), + [anon_sym_bit_DASHand] = ACTIONS(1024), + [anon_sym_bit_DASHxor] = ACTIONS(1024), + [anon_sym_bit_DASHor] = ACTIONS(1024), + [anon_sym_and] = ACTIONS(1024), + [anon_sym_xor] = ACTIONS(1024), + [anon_sym_or] = ACTIONS(1024), + [anon_sym_not] = ACTIONS(1024), + [anon_sym_DOT_DOT2] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1026), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1026), + [anon_sym_null] = ACTIONS(1024), + [anon_sym_true] = ACTIONS(1024), + [anon_sym_false] = ACTIONS(1024), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1024), + [aux_sym__val_number_token1] = ACTIONS(1024), + [aux_sym__val_number_token2] = ACTIONS(1024), + [aux_sym__val_number_token3] = ACTIONS(1024), + [aux_sym__val_number_token4] = ACTIONS(1024), + [aux_sym__val_number_token5] = ACTIONS(1024), + [aux_sym__val_number_token6] = ACTIONS(1024), + [anon_sym_0b] = ACTIONS(1024), + [anon_sym_0o] = ACTIONS(1024), + [anon_sym_0x] = ACTIONS(1024), + [sym_val_date] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym__str_single_quotes] = ACTIONS(1024), + [sym__str_back_ticks] = ACTIONS(1024), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1024), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1024), + [anon_sym_CARET] = ACTIONS(1024), [anon_sym_POUND] = ACTIONS(113), }, [277] = { [sym_comment] = STATE(277), - [ts_builtin_sym_end] = ACTIONS(952), - [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), - [anon_sym_SEMI] = ACTIONS(950), - [sym_cmd_identifier] = ACTIONS(950), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(950), - [anon_sym_LPAREN] = ACTIONS(950), - [anon_sym_DOLLAR] = ACTIONS(950), - [anon_sym_error] = ACTIONS(950), - [anon_sym_GT] = ACTIONS(950), - [anon_sym_DASH_DASH] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(950), - [anon_sym_break] = ACTIONS(950), - [anon_sym_continue] = ACTIONS(950), - [anon_sym_for] = ACTIONS(950), - [anon_sym_in] = ACTIONS(950), - [anon_sym_loop] = ACTIONS(950), - [anon_sym_while] = ACTIONS(950), - [anon_sym_do] = ACTIONS(950), - [anon_sym_if] = ACTIONS(950), - [anon_sym_match] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(950), - [anon_sym_DOT_DOT] = ACTIONS(950), - [anon_sym_try] = ACTIONS(950), - [anon_sym_return] = ACTIONS(950), - [anon_sym_source] = ACTIONS(950), - [anon_sym_source_DASHenv] = ACTIONS(950), - [anon_sym_register] = 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_STAR] = ACTIONS(950), - [anon_sym_where] = ACTIONS(950), - [anon_sym_STAR_STAR] = ACTIONS(950), - [anon_sym_PLUS_PLUS] = ACTIONS(950), - [anon_sym_SLASH] = ACTIONS(950), - [anon_sym_mod] = ACTIONS(950), - [anon_sym_SLASH_SLASH] = ACTIONS(950), - [anon_sym_PLUS] = ACTIONS(950), - [anon_sym_bit_DASHshl] = ACTIONS(950), - [anon_sym_bit_DASHshr] = ACTIONS(950), - [anon_sym_EQ_EQ] = ACTIONS(950), - [anon_sym_BANG_EQ] = ACTIONS(950), - [anon_sym_LT2] = ACTIONS(950), - [anon_sym_LT_EQ] = ACTIONS(950), - [anon_sym_GT_EQ] = ACTIONS(950), - [anon_sym_not_DASHin] = ACTIONS(950), - [anon_sym_starts_DASHwith] = ACTIONS(950), - [anon_sym_ends_DASHwith] = ACTIONS(950), - [anon_sym_EQ_TILDE] = ACTIONS(950), - [anon_sym_BANG_TILDE] = ACTIONS(950), - [anon_sym_bit_DASHand] = ACTIONS(950), - [anon_sym_bit_DASHxor] = ACTIONS(950), - [anon_sym_bit_DASHor] = ACTIONS(950), - [anon_sym_and] = ACTIONS(950), - [anon_sym_xor] = ACTIONS(950), - [anon_sym_or] = ACTIONS(950), - [anon_sym_not] = ACTIONS(950), - [anon_sym_DOT_DOT2] = ACTIONS(950), - [anon_sym_DOT] = 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(950), - [anon_sym_true] = ACTIONS(950), - [anon_sym_false] = ACTIONS(950), - [aux_sym__val_number_decimal_token1] = ACTIONS(950), - [aux_sym__val_number_decimal_token2] = ACTIONS(950), - [anon_sym_DOT2] = ACTIONS(950), - [aux_sym__val_number_decimal_token3] = ACTIONS(950), - [aux_sym__val_number_token1] = ACTIONS(950), - [aux_sym__val_number_token2] = ACTIONS(950), - [aux_sym__val_number_token3] = ACTIONS(950), - [aux_sym__val_number_token4] = ACTIONS(950), - [aux_sym__val_number_token5] = ACTIONS(950), - [aux_sym__val_number_token6] = ACTIONS(950), - [anon_sym_0b] = ACTIONS(950), - [sym_filesize_unit] = ACTIONS(950), - [sym_duration_unit] = ACTIONS(950), - [anon_sym_0o] = ACTIONS(950), - [anon_sym_0x] = ACTIONS(950), - [sym_val_date] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym__str_single_quotes] = ACTIONS(950), - [sym__str_back_ticks] = ACTIONS(950), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(950), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(950), - [anon_sym_CARET] = ACTIONS(950), - [aux_sym_unquoted_token5] = ACTIONS(950), + [anon_sym_export] = ACTIONS(1047), + [anon_sym_alias] = ACTIONS(1047), + [anon_sym_let] = ACTIONS(1047), + [anon_sym_let_DASHenv] = ACTIONS(1047), + [anon_sym_mut] = ACTIONS(1047), + [anon_sym_const] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1047), + [sym_cmd_identifier] = ACTIONS(1047), + [anon_sym_LF] = ACTIONS(1049), + [anon_sym_def] = ACTIONS(1047), + [anon_sym_export_DASHenv] = ACTIONS(1047), + [anon_sym_extern] = ACTIONS(1047), + [anon_sym_module] = ACTIONS(1047), + [anon_sym_use] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1047), + [anon_sym_RPAREN] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1047), + [anon_sym_error] = ACTIONS(1047), + [anon_sym_GT] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_break] = ACTIONS(1047), + [anon_sym_continue] = ACTIONS(1047), + [anon_sym_for] = ACTIONS(1047), + [anon_sym_in] = ACTIONS(1047), + [anon_sym_loop] = ACTIONS(1047), + [anon_sym_while] = ACTIONS(1047), + [anon_sym_do] = ACTIONS(1047), + [anon_sym_if] = ACTIONS(1047), + [anon_sym_match] = ACTIONS(1047), + [anon_sym_LBRACE] = ACTIONS(1047), + [anon_sym_RBRACE] = ACTIONS(1047), + [anon_sym_DOT_DOT] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1047), + [anon_sym_return] = ACTIONS(1047), + [anon_sym_source] = ACTIONS(1047), + [anon_sym_source_DASHenv] = ACTIONS(1047), + [anon_sym_register] = ACTIONS(1047), + [anon_sym_hide] = ACTIONS(1047), + [anon_sym_hide_DASHenv] = ACTIONS(1047), + [anon_sym_overlay] = ACTIONS(1047), + [anon_sym_as] = ACTIONS(1047), + [anon_sym_STAR] = ACTIONS(1047), + [anon_sym_where] = ACTIONS(1047), + [anon_sym_STAR_STAR] = ACTIONS(1047), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_SLASH] = ACTIONS(1047), + [anon_sym_mod] = ACTIONS(1047), + [anon_sym_SLASH_SLASH] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1047), + [anon_sym_bit_DASHshl] = ACTIONS(1047), + [anon_sym_bit_DASHshr] = ACTIONS(1047), + [anon_sym_EQ_EQ] = ACTIONS(1047), + [anon_sym_BANG_EQ] = ACTIONS(1047), + [anon_sym_LT2] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1047), + [anon_sym_GT_EQ] = ACTIONS(1047), + [anon_sym_not_DASHin] = ACTIONS(1047), + [anon_sym_starts_DASHwith] = ACTIONS(1047), + [anon_sym_ends_DASHwith] = ACTIONS(1047), + [anon_sym_EQ_TILDE] = ACTIONS(1047), + [anon_sym_BANG_TILDE] = ACTIONS(1047), + [anon_sym_bit_DASHand] = ACTIONS(1047), + [anon_sym_bit_DASHxor] = ACTIONS(1047), + [anon_sym_bit_DASHor] = ACTIONS(1047), + [anon_sym_and] = ACTIONS(1047), + [anon_sym_xor] = ACTIONS(1047), + [anon_sym_or] = ACTIONS(1047), + [anon_sym_not] = ACTIONS(1047), + [anon_sym_DOT_DOT2] = ACTIONS(1047), + [anon_sym_DOT] = ACTIONS(1047), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1047), + [anon_sym_DOT_DOT_LT] = ACTIONS(1047), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1049), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1049), + [anon_sym_null] = ACTIONS(1047), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [aux_sym__val_number_decimal_token1] = ACTIONS(1047), + [aux_sym__val_number_decimal_token2] = ACTIONS(1047), + [anon_sym_DOT2] = ACTIONS(1047), + [aux_sym__val_number_decimal_token3] = ACTIONS(1047), + [aux_sym__val_number_token1] = ACTIONS(1047), + [aux_sym__val_number_token2] = ACTIONS(1047), + [aux_sym__val_number_token3] = ACTIONS(1047), + [aux_sym__val_number_token4] = ACTIONS(1047), + [aux_sym__val_number_token5] = ACTIONS(1047), + [aux_sym__val_number_token6] = ACTIONS(1047), + [anon_sym_0b] = ACTIONS(1047), + [anon_sym_0o] = ACTIONS(1047), + [anon_sym_0x] = ACTIONS(1047), + [sym_val_date] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1047), + [sym__str_single_quotes] = ACTIONS(1047), + [sym__str_back_ticks] = ACTIONS(1047), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1047), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1047), + [anon_sym_CARET] = ACTIONS(1047), [anon_sym_POUND] = ACTIONS(113), }, [278] = { + [sym_cell_path] = STATE(410), + [sym_path] = STATE(295), [sym_comment] = STATE(278), - [ts_builtin_sym_end] = ACTIONS(911), - [anon_sym_export] = ACTIONS(909), - [anon_sym_alias] = ACTIONS(909), - [anon_sym_let] = ACTIONS(909), - [anon_sym_let_DASHenv] = ACTIONS(909), - [anon_sym_mut] = ACTIONS(909), - [anon_sym_const] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(909), - [sym_cmd_identifier] = ACTIONS(909), - [anon_sym_LF] = ACTIONS(911), - [anon_sym_def] = ACTIONS(909), - [anon_sym_export_DASHenv] = ACTIONS(909), - [anon_sym_extern] = ACTIONS(909), - [anon_sym_module] = ACTIONS(909), - [anon_sym_use] = ACTIONS(909), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_error] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_break] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_for] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_loop] = ACTIONS(909), - [anon_sym_while] = ACTIONS(909), - [anon_sym_do] = ACTIONS(909), - [anon_sym_if] = ACTIONS(909), - [anon_sym_match] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_DOT_DOT] = ACTIONS(909), - [anon_sym_try] = ACTIONS(909), - [anon_sym_return] = ACTIONS(909), - [anon_sym_source] = ACTIONS(909), - [anon_sym_source_DASHenv] = ACTIONS(909), - [anon_sym_register] = ACTIONS(909), - [anon_sym_hide] = ACTIONS(909), - [anon_sym_hide_DASHenv] = ACTIONS(909), - [anon_sym_overlay] = ACTIONS(909), - [anon_sym_as] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_where] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(909), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(909), - [anon_sym_SLASH_SLASH] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(909), - [anon_sym_bit_DASHshr] = ACTIONS(909), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_not_DASHin] = ACTIONS(909), - [anon_sym_starts_DASHwith] = ACTIONS(909), - [anon_sym_ends_DASHwith] = ACTIONS(909), - [anon_sym_EQ_TILDE] = ACTIONS(909), - [anon_sym_BANG_TILDE] = ACTIONS(909), - [anon_sym_bit_DASHand] = ACTIONS(909), - [anon_sym_bit_DASHxor] = ACTIONS(909), - [anon_sym_bit_DASHor] = ACTIONS(909), - [anon_sym_and] = ACTIONS(909), - [anon_sym_xor] = ACTIONS(909), - [anon_sym_or] = ACTIONS(909), - [anon_sym_not] = ACTIONS(909), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [anon_sym_null] = ACTIONS(909), - [anon_sym_true] = ACTIONS(909), - [anon_sym_false] = ACTIONS(909), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(909), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(909), - [aux_sym__val_number_token1] = ACTIONS(909), - [aux_sym__val_number_token2] = ACTIONS(909), - [aux_sym__val_number_token3] = ACTIONS(909), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(909), - [aux_sym__val_number_token6] = ACTIONS(909), - [anon_sym_0b] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(909), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym__str_single_quotes] = ACTIONS(909), - [sym__str_back_ticks] = ACTIONS(909), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), - [anon_sym_CARET] = ACTIONS(909), - [aux_sym_unquoted_token5] = ACTIONS(909), + [anon_sym_export] = ACTIONS(1051), + [anon_sym_alias] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(1051), + [anon_sym_let_DASHenv] = ACTIONS(1051), + [anon_sym_mut] = ACTIONS(1051), + [anon_sym_const] = ACTIONS(1051), + [anon_sym_SEMI] = ACTIONS(1051), + [sym_cmd_identifier] = ACTIONS(1051), + [anon_sym_LF] = ACTIONS(1053), + [anon_sym_def] = ACTIONS(1051), + [anon_sym_export_DASHenv] = ACTIONS(1051), + [anon_sym_extern] = ACTIONS(1051), + [anon_sym_module] = ACTIONS(1051), + [anon_sym_use] = ACTIONS(1051), + [anon_sym_LBRACK] = ACTIONS(1051), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_RPAREN] = ACTIONS(1051), + [anon_sym_DOLLAR] = ACTIONS(1051), + [anon_sym_error] = ACTIONS(1051), + [anon_sym_GT] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_break] = ACTIONS(1051), + [anon_sym_continue] = ACTIONS(1051), + [anon_sym_for] = ACTIONS(1051), + [anon_sym_in] = ACTIONS(1051), + [anon_sym_loop] = ACTIONS(1051), + [anon_sym_while] = ACTIONS(1051), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_if] = ACTIONS(1051), + [anon_sym_match] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(1051), + [anon_sym_RBRACE] = ACTIONS(1051), + [anon_sym_DOT_DOT] = ACTIONS(1051), + [anon_sym_try] = ACTIONS(1051), + [anon_sym_return] = ACTIONS(1051), + [anon_sym_source] = ACTIONS(1051), + [anon_sym_source_DASHenv] = ACTIONS(1051), + [anon_sym_register] = ACTIONS(1051), + [anon_sym_hide] = ACTIONS(1051), + [anon_sym_hide_DASHenv] = ACTIONS(1051), + [anon_sym_overlay] = ACTIONS(1051), + [anon_sym_as] = ACTIONS(1051), + [anon_sym_STAR] = ACTIONS(1051), + [anon_sym_where] = ACTIONS(1051), + [anon_sym_STAR_STAR] = ACTIONS(1051), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_mod] = ACTIONS(1051), + [anon_sym_SLASH_SLASH] = ACTIONS(1051), + [anon_sym_PLUS] = ACTIONS(1051), + [anon_sym_bit_DASHshl] = ACTIONS(1051), + [anon_sym_bit_DASHshr] = ACTIONS(1051), + [anon_sym_EQ_EQ] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1051), + [anon_sym_LT2] = ACTIONS(1051), + [anon_sym_LT_EQ] = ACTIONS(1051), + [anon_sym_GT_EQ] = ACTIONS(1051), + [anon_sym_not_DASHin] = ACTIONS(1051), + [anon_sym_starts_DASHwith] = ACTIONS(1051), + [anon_sym_ends_DASHwith] = ACTIONS(1051), + [anon_sym_EQ_TILDE] = ACTIONS(1051), + [anon_sym_BANG_TILDE] = ACTIONS(1051), + [anon_sym_bit_DASHand] = ACTIONS(1051), + [anon_sym_bit_DASHxor] = ACTIONS(1051), + [anon_sym_bit_DASHor] = ACTIONS(1051), + [anon_sym_and] = ACTIONS(1051), + [anon_sym_xor] = ACTIONS(1051), + [anon_sym_or] = ACTIONS(1051), + [anon_sym_not] = ACTIONS(1051), + [anon_sym_DOT] = ACTIONS(1055), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1051), + [anon_sym_DOT_DOT_LT] = ACTIONS(1051), + [anon_sym_null] = ACTIONS(1051), + [anon_sym_true] = ACTIONS(1051), + [anon_sym_false] = ACTIONS(1051), + [aux_sym__val_number_decimal_token1] = ACTIONS(1051), + [aux_sym__val_number_decimal_token2] = ACTIONS(1051), + [anon_sym_DOT2] = ACTIONS(1051), + [aux_sym__val_number_decimal_token3] = ACTIONS(1051), + [aux_sym__val_number_token1] = ACTIONS(1051), + [aux_sym__val_number_token2] = ACTIONS(1051), + [aux_sym__val_number_token3] = ACTIONS(1051), + [aux_sym__val_number_token4] = ACTIONS(1051), + [aux_sym__val_number_token5] = ACTIONS(1051), + [aux_sym__val_number_token6] = ACTIONS(1051), + [anon_sym_0b] = ACTIONS(1051), + [anon_sym_0o] = ACTIONS(1051), + [anon_sym_0x] = ACTIONS(1051), + [sym_val_date] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(1051), + [sym__str_single_quotes] = ACTIONS(1051), + [sym__str_back_ticks] = ACTIONS(1051), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1051), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1051), + [anon_sym_CARET] = ACTIONS(1051), [anon_sym_POUND] = ACTIONS(113), }, [279] = { + [sym_cell_path] = STATE(406), + [sym_path] = STATE(295), [sym_comment] = STATE(279), - [anon_sym_export] = ACTIONS(909), - [anon_sym_alias] = ACTIONS(909), - [anon_sym_let] = ACTIONS(909), - [anon_sym_let_DASHenv] = ACTIONS(909), - [anon_sym_mut] = ACTIONS(909), - [anon_sym_const] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(909), - [sym_cmd_identifier] = ACTIONS(909), - [anon_sym_LF] = ACTIONS(911), - [anon_sym_def] = ACTIONS(909), - [anon_sym_export_DASHenv] = ACTIONS(909), - [anon_sym_extern] = ACTIONS(909), - [anon_sym_module] = ACTIONS(909), - [anon_sym_use] = ACTIONS(909), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_RPAREN] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_error] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_break] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_for] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_loop] = ACTIONS(909), - [anon_sym_while] = ACTIONS(909), - [anon_sym_do] = ACTIONS(909), - [anon_sym_if] = ACTIONS(909), - [anon_sym_match] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_RBRACE] = ACTIONS(909), - [anon_sym_DOT_DOT] = ACTIONS(909), - [anon_sym_try] = ACTIONS(909), - [anon_sym_return] = ACTIONS(909), - [anon_sym_source] = ACTIONS(909), - [anon_sym_source_DASHenv] = ACTIONS(909), - [anon_sym_register] = ACTIONS(909), - [anon_sym_hide] = ACTIONS(909), - [anon_sym_hide_DASHenv] = ACTIONS(909), - [anon_sym_overlay] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_where] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(909), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(909), - [anon_sym_SLASH_SLASH] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(909), - [anon_sym_bit_DASHshr] = ACTIONS(909), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_not_DASHin] = ACTIONS(909), - [anon_sym_starts_DASHwith] = ACTIONS(909), - [anon_sym_ends_DASHwith] = ACTIONS(909), - [anon_sym_EQ_TILDE] = ACTIONS(909), - [anon_sym_BANG_TILDE] = ACTIONS(909), - [anon_sym_bit_DASHand] = ACTIONS(909), - [anon_sym_bit_DASHxor] = ACTIONS(909), - [anon_sym_bit_DASHor] = ACTIONS(909), - [anon_sym_and] = ACTIONS(909), - [anon_sym_xor] = ACTIONS(909), - [anon_sym_or] = ACTIONS(909), - [anon_sym_not] = ACTIONS(909), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [aux_sym__immediate_decimal_token2] = ACTIONS(977), - [anon_sym_null] = ACTIONS(909), - [anon_sym_true] = ACTIONS(909), - [anon_sym_false] = ACTIONS(909), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(909), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(909), - [aux_sym__val_number_token1] = ACTIONS(909), - [aux_sym__val_number_token2] = ACTIONS(909), - [aux_sym__val_number_token3] = ACTIONS(909), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(909), - [aux_sym__val_number_token6] = ACTIONS(909), - [anon_sym_0b] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(909), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym__str_single_quotes] = ACTIONS(909), - [sym__str_back_ticks] = ACTIONS(909), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), - [anon_sym_CARET] = ACTIONS(909), - [aux_sym_unquoted_token5] = ACTIONS(909), + [anon_sym_export] = ACTIONS(1057), + [anon_sym_alias] = ACTIONS(1057), + [anon_sym_let] = ACTIONS(1057), + [anon_sym_let_DASHenv] = ACTIONS(1057), + [anon_sym_mut] = ACTIONS(1057), + [anon_sym_const] = ACTIONS(1057), + [anon_sym_SEMI] = ACTIONS(1057), + [sym_cmd_identifier] = ACTIONS(1057), + [anon_sym_LF] = ACTIONS(1059), + [anon_sym_def] = ACTIONS(1057), + [anon_sym_export_DASHenv] = ACTIONS(1057), + [anon_sym_extern] = ACTIONS(1057), + [anon_sym_module] = ACTIONS(1057), + [anon_sym_use] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_LPAREN] = ACTIONS(1057), + [anon_sym_RPAREN] = ACTIONS(1057), + [anon_sym_DOLLAR] = ACTIONS(1057), + [anon_sym_error] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_break] = ACTIONS(1057), + [anon_sym_continue] = ACTIONS(1057), + [anon_sym_for] = ACTIONS(1057), + [anon_sym_in] = ACTIONS(1057), + [anon_sym_loop] = ACTIONS(1057), + [anon_sym_while] = ACTIONS(1057), + [anon_sym_do] = ACTIONS(1057), + [anon_sym_if] = ACTIONS(1057), + [anon_sym_match] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_try] = ACTIONS(1057), + [anon_sym_return] = ACTIONS(1057), + [anon_sym_source] = ACTIONS(1057), + [anon_sym_source_DASHenv] = ACTIONS(1057), + [anon_sym_register] = ACTIONS(1057), + [anon_sym_hide] = ACTIONS(1057), + [anon_sym_hide_DASHenv] = ACTIONS(1057), + [anon_sym_overlay] = ACTIONS(1057), + [anon_sym_as] = ACTIONS(1057), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_where] = ACTIONS(1057), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_mod] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_PLUS] = ACTIONS(1057), + [anon_sym_bit_DASHshl] = ACTIONS(1057), + [anon_sym_bit_DASHshr] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1057), + [anon_sym_LT2] = ACTIONS(1057), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_not_DASHin] = ACTIONS(1057), + [anon_sym_starts_DASHwith] = ACTIONS(1057), + [anon_sym_ends_DASHwith] = ACTIONS(1057), + [anon_sym_EQ_TILDE] = ACTIONS(1057), + [anon_sym_BANG_TILDE] = ACTIONS(1057), + [anon_sym_bit_DASHand] = ACTIONS(1057), + [anon_sym_bit_DASHxor] = ACTIONS(1057), + [anon_sym_bit_DASHor] = ACTIONS(1057), + [anon_sym_and] = ACTIONS(1057), + [anon_sym_xor] = ACTIONS(1057), + [anon_sym_or] = ACTIONS(1057), + [anon_sym_not] = ACTIONS(1057), + [anon_sym_DOT] = ACTIONS(1055), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1057), + [anon_sym_DOT_DOT_LT] = ACTIONS(1057), + [anon_sym_null] = ACTIONS(1057), + [anon_sym_true] = ACTIONS(1057), + [anon_sym_false] = ACTIONS(1057), + [aux_sym__val_number_decimal_token1] = ACTIONS(1057), + [aux_sym__val_number_decimal_token2] = ACTIONS(1057), + [anon_sym_DOT2] = ACTIONS(1057), + [aux_sym__val_number_decimal_token3] = ACTIONS(1057), + [aux_sym__val_number_token1] = ACTIONS(1057), + [aux_sym__val_number_token2] = ACTIONS(1057), + [aux_sym__val_number_token3] = ACTIONS(1057), + [aux_sym__val_number_token4] = ACTIONS(1057), + [aux_sym__val_number_token5] = ACTIONS(1057), + [aux_sym__val_number_token6] = ACTIONS(1057), + [anon_sym_0b] = ACTIONS(1057), + [anon_sym_0o] = ACTIONS(1057), + [anon_sym_0x] = ACTIONS(1057), + [sym_val_date] = ACTIONS(1057), + [anon_sym_DQUOTE] = ACTIONS(1057), + [sym__str_single_quotes] = ACTIONS(1057), + [sym__str_back_ticks] = ACTIONS(1057), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1057), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1057), + [anon_sym_CARET] = ACTIONS(1057), [anon_sym_POUND] = ACTIONS(113), }, [280] = { + [sym_cell_path] = STATE(412), + [sym_path] = STATE(295), [sym_comment] = STATE(280), - [anon_sym_export] = ACTIONS(923), - [anon_sym_alias] = ACTIONS(923), - [anon_sym_let] = ACTIONS(923), - [anon_sym_let_DASHenv] = ACTIONS(923), - [anon_sym_mut] = ACTIONS(923), - [anon_sym_const] = ACTIONS(923), - [anon_sym_SEMI] = ACTIONS(923), - [sym_cmd_identifier] = ACTIONS(923), - [anon_sym_LF] = ACTIONS(925), - [anon_sym_def] = ACTIONS(923), - [anon_sym_export_DASHenv] = ACTIONS(923), - [anon_sym_extern] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_use] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_RPAREN] = ACTIONS(923), - [anon_sym_DOLLAR] = ACTIONS(923), - [anon_sym_error] = ACTIONS(923), - [anon_sym_GT] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_break] = ACTIONS(923), - [anon_sym_continue] = ACTIONS(923), - [anon_sym_for] = ACTIONS(923), - [anon_sym_in] = ACTIONS(923), - [anon_sym_loop] = ACTIONS(923), - [anon_sym_while] = ACTIONS(923), - [anon_sym_do] = ACTIONS(923), - [anon_sym_if] = ACTIONS(923), - [anon_sym_match] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(923), - [anon_sym_RBRACE] = ACTIONS(923), - [anon_sym_DOT_DOT] = ACTIONS(923), - [anon_sym_try] = ACTIONS(923), - [anon_sym_return] = ACTIONS(923), - [anon_sym_source] = ACTIONS(923), - [anon_sym_source_DASHenv] = ACTIONS(923), - [anon_sym_register] = ACTIONS(923), - [anon_sym_hide] = ACTIONS(923), - [anon_sym_hide_DASHenv] = ACTIONS(923), - [anon_sym_overlay] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_where] = ACTIONS(923), - [anon_sym_STAR_STAR] = ACTIONS(923), - [anon_sym_PLUS_PLUS] = ACTIONS(923), - [anon_sym_SLASH] = ACTIONS(923), - [anon_sym_mod] = ACTIONS(923), - [anon_sym_SLASH_SLASH] = ACTIONS(923), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_bit_DASHshl] = ACTIONS(923), - [anon_sym_bit_DASHshr] = ACTIONS(923), - [anon_sym_EQ_EQ] = ACTIONS(923), - [anon_sym_BANG_EQ] = ACTIONS(923), - [anon_sym_LT2] = ACTIONS(923), - [anon_sym_LT_EQ] = ACTIONS(923), - [anon_sym_GT_EQ] = ACTIONS(923), - [anon_sym_not_DASHin] = ACTIONS(923), - [anon_sym_starts_DASHwith] = ACTIONS(923), - [anon_sym_ends_DASHwith] = ACTIONS(923), - [anon_sym_EQ_TILDE] = ACTIONS(923), - [anon_sym_BANG_TILDE] = ACTIONS(923), - [anon_sym_bit_DASHand] = ACTIONS(923), - [anon_sym_bit_DASHxor] = ACTIONS(923), - [anon_sym_bit_DASHor] = ACTIONS(923), - [anon_sym_and] = ACTIONS(923), - [anon_sym_xor] = ACTIONS(923), - [anon_sym_or] = ACTIONS(923), - [anon_sym_not] = ACTIONS(923), - [anon_sym_DOT_DOT2] = ACTIONS(923), - [anon_sym_DOT] = ACTIONS(1036), - [anon_sym_DOT_DOT_EQ] = ACTIONS(923), - [anon_sym_DOT_DOT_LT] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(925), - [anon_sym_DOT_DOT_LT2] = ACTIONS(925), - [aux_sym__immediate_decimal_token2] = ACTIONS(1030), - [anon_sym_null] = ACTIONS(923), - [anon_sym_true] = ACTIONS(923), - [anon_sym_false] = ACTIONS(923), - [aux_sym__val_number_decimal_token1] = ACTIONS(923), - [aux_sym__val_number_decimal_token2] = ACTIONS(923), - [anon_sym_DOT2] = ACTIONS(923), - [aux_sym__val_number_decimal_token3] = ACTIONS(923), - [aux_sym__val_number_token1] = ACTIONS(923), - [aux_sym__val_number_token2] = ACTIONS(923), - [aux_sym__val_number_token3] = ACTIONS(923), - [aux_sym__val_number_token4] = ACTIONS(923), - [aux_sym__val_number_token5] = ACTIONS(923), - [aux_sym__val_number_token6] = ACTIONS(923), - [anon_sym_0b] = ACTIONS(923), - [sym_filesize_unit] = ACTIONS(923), - [sym_duration_unit] = ACTIONS(923), - [anon_sym_0o] = ACTIONS(923), - [anon_sym_0x] = ACTIONS(923), - [sym_val_date] = ACTIONS(923), - [anon_sym_DQUOTE] = ACTIONS(923), - [sym__str_single_quotes] = ACTIONS(923), - [sym__str_back_ticks] = ACTIONS(923), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(923), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), - [anon_sym_CARET] = ACTIONS(923), - [aux_sym_unquoted_token5] = ACTIONS(923), + [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), + [anon_sym_SEMI] = ACTIONS(992), + [sym_cmd_identifier] = ACTIONS(992), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(992), + [anon_sym_RPAREN] = ACTIONS(992), + [anon_sym_DOLLAR] = ACTIONS(992), + [anon_sym_error] = ACTIONS(992), + [anon_sym_GT] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_break] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_in] = ACTIONS(992), + [anon_sym_loop] = ACTIONS(992), + [anon_sym_while] = ACTIONS(992), + [anon_sym_do] = ACTIONS(992), + [anon_sym_if] = ACTIONS(992), + [anon_sym_match] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(992), + [anon_sym_RBRACE] = ACTIONS(992), + [anon_sym_DOT_DOT] = ACTIONS(992), + [anon_sym_try] = 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_STAR] = ACTIONS(992), + [anon_sym_where] = ACTIONS(992), + [anon_sym_STAR_STAR] = ACTIONS(992), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_SLASH] = ACTIONS(992), + [anon_sym_mod] = ACTIONS(992), + [anon_sym_SLASH_SLASH] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_bit_DASHshl] = ACTIONS(992), + [anon_sym_bit_DASHshr] = ACTIONS(992), + [anon_sym_EQ_EQ] = ACTIONS(992), + [anon_sym_BANG_EQ] = ACTIONS(992), + [anon_sym_LT2] = ACTIONS(992), + [anon_sym_LT_EQ] = ACTIONS(992), + [anon_sym_GT_EQ] = ACTIONS(992), + [anon_sym_not_DASHin] = ACTIONS(992), + [anon_sym_starts_DASHwith] = ACTIONS(992), + [anon_sym_ends_DASHwith] = ACTIONS(992), + [anon_sym_EQ_TILDE] = ACTIONS(992), + [anon_sym_BANG_TILDE] = ACTIONS(992), + [anon_sym_bit_DASHand] = ACTIONS(992), + [anon_sym_bit_DASHxor] = ACTIONS(992), + [anon_sym_bit_DASHor] = ACTIONS(992), + [anon_sym_and] = ACTIONS(992), + [anon_sym_xor] = ACTIONS(992), + [anon_sym_or] = ACTIONS(992), + [anon_sym_not] = ACTIONS(992), + [anon_sym_DOT] = ACTIONS(1055), + [anon_sym_DOT_DOT_EQ] = ACTIONS(992), + [anon_sym_DOT_DOT_LT] = ACTIONS(992), + [anon_sym_null] = ACTIONS(992), + [anon_sym_true] = ACTIONS(992), + [anon_sym_false] = ACTIONS(992), + [aux_sym__val_number_decimal_token1] = ACTIONS(992), + [aux_sym__val_number_decimal_token2] = ACTIONS(992), + [anon_sym_DOT2] = ACTIONS(992), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(992), + [anon_sym_0o] = ACTIONS(992), + [anon_sym_0x] = ACTIONS(992), + [sym_val_date] = ACTIONS(992), + [anon_sym_DQUOTE] = ACTIONS(992), + [sym__str_single_quotes] = ACTIONS(992), + [sym__str_back_ticks] = ACTIONS(992), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(992), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(992), + [anon_sym_CARET] = ACTIONS(992), [anon_sym_POUND] = ACTIONS(113), }, [281] = { - [sym__immediate_decimal] = STATE(9346), [sym_comment] = STATE(281), - [ts_builtin_sym_end] = ACTIONS(938), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_error] = ACTIONS(936), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_as] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_where] = ACTIONS(936), - [anon_sym_STAR_STAR] = ACTIONS(936), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(936), - [anon_sym_SLASH_SLASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(936), - [anon_sym_bit_DASHshr] = ACTIONS(936), - [anon_sym_EQ_EQ] = ACTIONS(936), - [anon_sym_BANG_EQ] = ACTIONS(936), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(936), - [anon_sym_GT_EQ] = ACTIONS(936), - [anon_sym_not_DASHin] = ACTIONS(936), - [anon_sym_starts_DASHwith] = ACTIONS(936), - [anon_sym_ends_DASHwith] = ACTIONS(936), - [anon_sym_EQ_TILDE] = ACTIONS(936), - [anon_sym_BANG_TILDE] = ACTIONS(936), - [anon_sym_bit_DASHand] = ACTIONS(936), - [anon_sym_bit_DASHxor] = ACTIONS(936), - [anon_sym_bit_DASHor] = ACTIONS(936), - [anon_sym_and] = ACTIONS(936), - [anon_sym_xor] = ACTIONS(936), - [anon_sym_or] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_DOT] = ACTIONS(1039), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [aux_sym__immediate_decimal_token1] = ACTIONS(942), - [aux_sym__immediate_decimal_token3] = ACTIONS(942), - [aux_sym__immediate_decimal_token4] = ACTIONS(944), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [aux_sym_unquoted_token3] = ACTIONS(1028), - [aux_sym_unquoted_token5] = ACTIONS(1041), + [ts_builtin_sym_end] = ACTIONS(1049), + [anon_sym_export] = ACTIONS(1047), + [anon_sym_alias] = ACTIONS(1047), + [anon_sym_let] = ACTIONS(1047), + [anon_sym_let_DASHenv] = ACTIONS(1047), + [anon_sym_mut] = ACTIONS(1047), + [anon_sym_const] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1047), + [sym_cmd_identifier] = ACTIONS(1047), + [anon_sym_LF] = ACTIONS(1049), + [anon_sym_def] = ACTIONS(1047), + [anon_sym_export_DASHenv] = ACTIONS(1047), + [anon_sym_extern] = ACTIONS(1047), + [anon_sym_module] = ACTIONS(1047), + [anon_sym_use] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1047), + [anon_sym_error] = ACTIONS(1047), + [anon_sym_GT] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_break] = ACTIONS(1047), + [anon_sym_continue] = ACTIONS(1047), + [anon_sym_for] = ACTIONS(1047), + [anon_sym_in] = ACTIONS(1047), + [anon_sym_loop] = ACTIONS(1047), + [anon_sym_while] = ACTIONS(1047), + [anon_sym_do] = ACTIONS(1047), + [anon_sym_if] = ACTIONS(1047), + [anon_sym_match] = ACTIONS(1047), + [anon_sym_LBRACE] = ACTIONS(1047), + [anon_sym_DOT_DOT] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1047), + [anon_sym_return] = ACTIONS(1047), + [anon_sym_source] = ACTIONS(1047), + [anon_sym_source_DASHenv] = ACTIONS(1047), + [anon_sym_register] = ACTIONS(1047), + [anon_sym_hide] = ACTIONS(1047), + [anon_sym_hide_DASHenv] = ACTIONS(1047), + [anon_sym_overlay] = ACTIONS(1047), + [anon_sym_as] = ACTIONS(1047), + [anon_sym_STAR] = ACTIONS(1047), + [anon_sym_where] = ACTIONS(1047), + [anon_sym_STAR_STAR] = ACTIONS(1047), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_SLASH] = ACTIONS(1047), + [anon_sym_mod] = ACTIONS(1047), + [anon_sym_SLASH_SLASH] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1047), + [anon_sym_bit_DASHshl] = ACTIONS(1047), + [anon_sym_bit_DASHshr] = ACTIONS(1047), + [anon_sym_EQ_EQ] = ACTIONS(1047), + [anon_sym_BANG_EQ] = ACTIONS(1047), + [anon_sym_LT2] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1047), + [anon_sym_GT_EQ] = ACTIONS(1047), + [anon_sym_not_DASHin] = ACTIONS(1047), + [anon_sym_starts_DASHwith] = ACTIONS(1047), + [anon_sym_ends_DASHwith] = ACTIONS(1047), + [anon_sym_EQ_TILDE] = ACTIONS(1047), + [anon_sym_BANG_TILDE] = ACTIONS(1047), + [anon_sym_bit_DASHand] = ACTIONS(1047), + [anon_sym_bit_DASHxor] = ACTIONS(1047), + [anon_sym_bit_DASHor] = ACTIONS(1047), + [anon_sym_and] = ACTIONS(1047), + [anon_sym_xor] = ACTIONS(1047), + [anon_sym_or] = ACTIONS(1047), + [anon_sym_not] = ACTIONS(1047), + [anon_sym_DOT_DOT2] = ACTIONS(1047), + [anon_sym_DOT] = ACTIONS(1047), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1047), + [anon_sym_DOT_DOT_LT] = ACTIONS(1047), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1049), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1049), + [anon_sym_null] = ACTIONS(1047), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [aux_sym__val_number_decimal_token1] = ACTIONS(1047), + [aux_sym__val_number_decimal_token2] = ACTIONS(1047), + [anon_sym_DOT2] = ACTIONS(1047), + [aux_sym__val_number_decimal_token3] = ACTIONS(1047), + [aux_sym__val_number_token1] = ACTIONS(1047), + [aux_sym__val_number_token2] = ACTIONS(1047), + [aux_sym__val_number_token3] = ACTIONS(1047), + [aux_sym__val_number_token4] = ACTIONS(1047), + [aux_sym__val_number_token5] = ACTIONS(1047), + [aux_sym__val_number_token6] = ACTIONS(1047), + [anon_sym_0b] = ACTIONS(1047), + [anon_sym_0o] = ACTIONS(1047), + [anon_sym_0x] = ACTIONS(1047), + [sym_val_date] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1047), + [sym__str_single_quotes] = ACTIONS(1047), + [sym__str_back_ticks] = ACTIONS(1047), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1047), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1047), + [anon_sym_CARET] = ACTIONS(1047), [anon_sym_POUND] = ACTIONS(113), }, [282] = { - [sym__immediate_decimal] = STATE(10460), [sym_comment] = STATE(282), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_error] = ACTIONS(936), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_RBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_as] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_where] = ACTIONS(936), - [anon_sym_STAR_STAR] = ACTIONS(936), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(936), - [anon_sym_SLASH_SLASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(936), - [anon_sym_bit_DASHshr] = ACTIONS(936), - [anon_sym_EQ_EQ] = ACTIONS(936), - [anon_sym_BANG_EQ] = ACTIONS(936), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(936), - [anon_sym_GT_EQ] = ACTIONS(936), - [anon_sym_not_DASHin] = ACTIONS(936), - [anon_sym_starts_DASHwith] = ACTIONS(936), - [anon_sym_ends_DASHwith] = ACTIONS(936), - [anon_sym_EQ_TILDE] = ACTIONS(936), - [anon_sym_BANG_TILDE] = ACTIONS(936), - [anon_sym_bit_DASHand] = ACTIONS(936), - [anon_sym_bit_DASHxor] = ACTIONS(936), - [anon_sym_bit_DASHor] = ACTIONS(936), - [anon_sym_and] = ACTIONS(936), - [anon_sym_xor] = ACTIONS(936), - [anon_sym_or] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [aux_sym__immediate_decimal_token1] = ACTIONS(1045), - [aux_sym__immediate_decimal_token3] = ACTIONS(1045), - [aux_sym__immediate_decimal_token4] = ACTIONS(1047), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [aux_sym_unquoted_token4] = ACTIONS(946), + [ts_builtin_sym_end] = ACTIONS(1039), + [anon_sym_export] = ACTIONS(1037), + [anon_sym_alias] = ACTIONS(1037), + [anon_sym_let] = ACTIONS(1037), + [anon_sym_let_DASHenv] = ACTIONS(1037), + [anon_sym_mut] = ACTIONS(1037), + [anon_sym_const] = ACTIONS(1037), + [anon_sym_SEMI] = ACTIONS(1037), + [sym_cmd_identifier] = ACTIONS(1037), + [anon_sym_LF] = ACTIONS(1039), + [anon_sym_def] = ACTIONS(1037), + [anon_sym_export_DASHenv] = ACTIONS(1037), + [anon_sym_extern] = ACTIONS(1037), + [anon_sym_module] = ACTIONS(1037), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_LBRACK] = ACTIONS(1037), + [anon_sym_LPAREN] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1037), + [anon_sym_error] = ACTIONS(1037), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_break] = ACTIONS(1037), + [anon_sym_continue] = ACTIONS(1037), + [anon_sym_for] = ACTIONS(1037), + [anon_sym_in] = ACTIONS(1037), + [anon_sym_loop] = ACTIONS(1037), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_do] = ACTIONS(1037), + [anon_sym_if] = ACTIONS(1037), + [anon_sym_match] = ACTIONS(1037), + [anon_sym_LBRACE] = ACTIONS(1037), + [anon_sym_DOT_DOT] = ACTIONS(1037), + [anon_sym_try] = ACTIONS(1037), + [anon_sym_return] = ACTIONS(1037), + [anon_sym_source] = ACTIONS(1037), + [anon_sym_source_DASHenv] = ACTIONS(1037), + [anon_sym_register] = ACTIONS(1037), + [anon_sym_hide] = ACTIONS(1037), + [anon_sym_hide_DASHenv] = ACTIONS(1037), + [anon_sym_overlay] = ACTIONS(1037), + [anon_sym_as] = ACTIONS(1037), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_where] = ACTIONS(1037), + [anon_sym_STAR_STAR] = ACTIONS(1037), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1037), + [anon_sym_mod] = ACTIONS(1037), + [anon_sym_SLASH_SLASH] = ACTIONS(1037), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_bit_DASHshl] = ACTIONS(1037), + [anon_sym_bit_DASHshr] = ACTIONS(1037), + [anon_sym_EQ_EQ] = ACTIONS(1037), + [anon_sym_BANG_EQ] = ACTIONS(1037), + [anon_sym_LT2] = ACTIONS(1037), + [anon_sym_LT_EQ] = ACTIONS(1037), + [anon_sym_GT_EQ] = ACTIONS(1037), + [anon_sym_not_DASHin] = ACTIONS(1037), + [anon_sym_starts_DASHwith] = ACTIONS(1037), + [anon_sym_ends_DASHwith] = ACTIONS(1037), + [anon_sym_EQ_TILDE] = ACTIONS(1037), + [anon_sym_BANG_TILDE] = ACTIONS(1037), + [anon_sym_bit_DASHand] = ACTIONS(1037), + [anon_sym_bit_DASHxor] = ACTIONS(1037), + [anon_sym_bit_DASHor] = ACTIONS(1037), + [anon_sym_and] = ACTIONS(1037), + [anon_sym_xor] = ACTIONS(1037), + [anon_sym_or] = ACTIONS(1037), + [anon_sym_not] = ACTIONS(1037), + [anon_sym_DOT_DOT2] = ACTIONS(1037), + [anon_sym_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1037), + [anon_sym_DOT_DOT_LT] = ACTIONS(1037), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1039), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1039), + [anon_sym_null] = ACTIONS(1037), + [anon_sym_true] = ACTIONS(1037), + [anon_sym_false] = ACTIONS(1037), + [aux_sym__val_number_decimal_token1] = ACTIONS(1037), + [aux_sym__val_number_decimal_token2] = ACTIONS(1037), + [anon_sym_DOT2] = ACTIONS(1037), + [aux_sym__val_number_decimal_token3] = ACTIONS(1037), + [aux_sym__val_number_token1] = ACTIONS(1037), + [aux_sym__val_number_token2] = ACTIONS(1037), + [aux_sym__val_number_token3] = ACTIONS(1037), + [aux_sym__val_number_token4] = ACTIONS(1037), + [aux_sym__val_number_token5] = ACTIONS(1037), + [aux_sym__val_number_token6] = ACTIONS(1037), + [anon_sym_0b] = ACTIONS(1037), + [anon_sym_0o] = ACTIONS(1037), + [anon_sym_0x] = ACTIONS(1037), + [sym_val_date] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1037), + [sym__str_single_quotes] = ACTIONS(1037), + [sym__str_back_ticks] = ACTIONS(1037), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1037), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1037), + [anon_sym_CARET] = ACTIONS(1037), [anon_sym_POUND] = ACTIONS(113), }, [283] = { - [sym_path] = STATE(329), [sym_comment] = STATE(283), - [aux_sym_cell_path_repeat1] = STATE(291), - [ts_builtin_sym_end] = ACTIONS(989), - [anon_sym_export] = ACTIONS(987), - [anon_sym_alias] = ACTIONS(987), - [anon_sym_let] = ACTIONS(987), - [anon_sym_let_DASHenv] = ACTIONS(987), - [anon_sym_mut] = ACTIONS(987), - [anon_sym_const] = ACTIONS(987), - [anon_sym_SEMI] = ACTIONS(987), - [sym_cmd_identifier] = ACTIONS(987), - [anon_sym_LF] = ACTIONS(989), - [anon_sym_def] = ACTIONS(987), - [anon_sym_export_DASHenv] = ACTIONS(987), - [anon_sym_extern] = ACTIONS(987), - [anon_sym_module] = ACTIONS(987), - [anon_sym_use] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(987), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_DOLLAR] = ACTIONS(987), - [anon_sym_error] = ACTIONS(987), - [anon_sym_GT] = ACTIONS(987), - [anon_sym_DASH_DASH] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_break] = ACTIONS(987), - [anon_sym_continue] = ACTIONS(987), - [anon_sym_for] = ACTIONS(987), - [anon_sym_in] = ACTIONS(987), - [anon_sym_loop] = ACTIONS(987), - [anon_sym_while] = ACTIONS(987), - [anon_sym_do] = ACTIONS(987), - [anon_sym_if] = ACTIONS(987), - [anon_sym_match] = ACTIONS(987), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_DOT_DOT] = ACTIONS(987), - [anon_sym_try] = ACTIONS(987), - [anon_sym_return] = ACTIONS(987), - [anon_sym_source] = ACTIONS(987), - [anon_sym_source_DASHenv] = ACTIONS(987), - [anon_sym_register] = ACTIONS(987), - [anon_sym_hide] = ACTIONS(987), - [anon_sym_hide_DASHenv] = ACTIONS(987), - [anon_sym_overlay] = ACTIONS(987), - [anon_sym_as] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(987), - [anon_sym_where] = ACTIONS(987), - [anon_sym_STAR_STAR] = ACTIONS(987), - [anon_sym_PLUS_PLUS] = ACTIONS(987), - [anon_sym_SLASH] = ACTIONS(987), - [anon_sym_mod] = ACTIONS(987), - [anon_sym_SLASH_SLASH] = ACTIONS(987), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_bit_DASHshl] = ACTIONS(987), - [anon_sym_bit_DASHshr] = ACTIONS(987), - [anon_sym_EQ_EQ] = ACTIONS(987), - [anon_sym_BANG_EQ] = ACTIONS(987), - [anon_sym_LT2] = ACTIONS(987), - [anon_sym_LT_EQ] = ACTIONS(987), - [anon_sym_GT_EQ] = ACTIONS(987), - [anon_sym_not_DASHin] = ACTIONS(987), - [anon_sym_starts_DASHwith] = ACTIONS(987), - [anon_sym_ends_DASHwith] = ACTIONS(987), - [anon_sym_EQ_TILDE] = ACTIONS(987), - [anon_sym_BANG_TILDE] = ACTIONS(987), - [anon_sym_bit_DASHand] = ACTIONS(987), - [anon_sym_bit_DASHxor] = ACTIONS(987), - [anon_sym_bit_DASHor] = ACTIONS(987), - [anon_sym_and] = ACTIONS(987), - [anon_sym_xor] = ACTIONS(987), - [anon_sym_or] = ACTIONS(987), - [anon_sym_not] = ACTIONS(987), - [anon_sym_DOT_DOT2] = ACTIONS(987), - [anon_sym_DOT] = ACTIONS(1049), - [anon_sym_DOT_DOT_EQ] = ACTIONS(987), - [anon_sym_DOT_DOT_LT] = ACTIONS(987), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(989), - [anon_sym_DOT_DOT_LT2] = ACTIONS(989), - [anon_sym_null] = ACTIONS(987), - [anon_sym_true] = ACTIONS(987), - [anon_sym_false] = ACTIONS(987), - [aux_sym__val_number_decimal_token1] = ACTIONS(987), - [aux_sym__val_number_decimal_token2] = ACTIONS(987), - [anon_sym_DOT2] = ACTIONS(987), - [aux_sym__val_number_decimal_token3] = ACTIONS(987), - [aux_sym__val_number_token1] = ACTIONS(987), - [aux_sym__val_number_token2] = ACTIONS(987), - [aux_sym__val_number_token3] = ACTIONS(987), - [aux_sym__val_number_token4] = ACTIONS(987), - [aux_sym__val_number_token5] = ACTIONS(987), - [aux_sym__val_number_token6] = ACTIONS(987), - [anon_sym_0b] = ACTIONS(987), - [anon_sym_0o] = ACTIONS(987), - [anon_sym_0x] = ACTIONS(987), - [sym_val_date] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(987), - [sym__str_single_quotes] = ACTIONS(987), - [sym__str_back_ticks] = ACTIONS(987), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(987), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), + [ts_builtin_sym_end] = ACTIONS(1043), + [anon_sym_export] = ACTIONS(1041), + [anon_sym_alias] = ACTIONS(1041), + [anon_sym_let] = ACTIONS(1041), + [anon_sym_let_DASHenv] = ACTIONS(1041), + [anon_sym_mut] = ACTIONS(1041), + [anon_sym_const] = ACTIONS(1041), + [anon_sym_SEMI] = ACTIONS(1041), + [sym_cmd_identifier] = ACTIONS(1041), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_def] = ACTIONS(1041), + [anon_sym_export_DASHenv] = ACTIONS(1041), + [anon_sym_extern] = ACTIONS(1041), + [anon_sym_module] = ACTIONS(1041), + [anon_sym_use] = ACTIONS(1041), + [anon_sym_LBRACK] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1041), + [anon_sym_DOLLAR] = ACTIONS(1041), + [anon_sym_error] = ACTIONS(1041), + [anon_sym_GT] = ACTIONS(1041), + [anon_sym_DASH_DASH] = ACTIONS(1041), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_break] = ACTIONS(1041), + [anon_sym_continue] = ACTIONS(1041), + [anon_sym_for] = ACTIONS(1041), + [anon_sym_in] = ACTIONS(1041), + [anon_sym_loop] = ACTIONS(1041), + [anon_sym_while] = ACTIONS(1041), + [anon_sym_do] = ACTIONS(1041), + [anon_sym_if] = ACTIONS(1041), + [anon_sym_match] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_DOT_DOT] = ACTIONS(1041), + [anon_sym_try] = ACTIONS(1041), + [anon_sym_return] = ACTIONS(1041), + [anon_sym_source] = ACTIONS(1041), + [anon_sym_source_DASHenv] = ACTIONS(1041), + [anon_sym_register] = ACTIONS(1041), + [anon_sym_hide] = ACTIONS(1041), + [anon_sym_hide_DASHenv] = ACTIONS(1041), + [anon_sym_overlay] = ACTIONS(1041), + [anon_sym_as] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_where] = ACTIONS(1041), + [anon_sym_STAR_STAR] = ACTIONS(1041), + [anon_sym_PLUS_PLUS] = ACTIONS(1041), + [anon_sym_SLASH] = ACTIONS(1041), + [anon_sym_mod] = ACTIONS(1041), + [anon_sym_SLASH_SLASH] = ACTIONS(1041), + [anon_sym_PLUS] = ACTIONS(1041), + [anon_sym_bit_DASHshl] = ACTIONS(1041), + [anon_sym_bit_DASHshr] = ACTIONS(1041), + [anon_sym_EQ_EQ] = ACTIONS(1041), + [anon_sym_BANG_EQ] = ACTIONS(1041), + [anon_sym_LT2] = ACTIONS(1041), + [anon_sym_LT_EQ] = ACTIONS(1041), + [anon_sym_GT_EQ] = ACTIONS(1041), + [anon_sym_not_DASHin] = ACTIONS(1041), + [anon_sym_starts_DASHwith] = ACTIONS(1041), + [anon_sym_ends_DASHwith] = ACTIONS(1041), + [anon_sym_EQ_TILDE] = ACTIONS(1041), + [anon_sym_BANG_TILDE] = ACTIONS(1041), + [anon_sym_bit_DASHand] = ACTIONS(1041), + [anon_sym_bit_DASHxor] = ACTIONS(1041), + [anon_sym_bit_DASHor] = ACTIONS(1041), + [anon_sym_and] = ACTIONS(1041), + [anon_sym_xor] = ACTIONS(1041), + [anon_sym_or] = ACTIONS(1041), + [anon_sym_not] = ACTIONS(1041), + [anon_sym_DOT_DOT2] = ACTIONS(1041), + [anon_sym_DOT] = ACTIONS(1041), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1041), + [anon_sym_DOT_DOT_LT] = ACTIONS(1041), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1043), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1043), + [anon_sym_null] = ACTIONS(1041), + [anon_sym_true] = ACTIONS(1041), + [anon_sym_false] = ACTIONS(1041), + [aux_sym__val_number_decimal_token1] = ACTIONS(1041), + [aux_sym__val_number_decimal_token2] = ACTIONS(1041), + [anon_sym_DOT2] = ACTIONS(1041), + [aux_sym__val_number_decimal_token3] = ACTIONS(1041), + [aux_sym__val_number_token1] = ACTIONS(1041), + [aux_sym__val_number_token2] = ACTIONS(1041), + [aux_sym__val_number_token3] = ACTIONS(1041), + [aux_sym__val_number_token4] = ACTIONS(1041), + [aux_sym__val_number_token5] = ACTIONS(1041), + [aux_sym__val_number_token6] = ACTIONS(1041), + [anon_sym_0b] = ACTIONS(1041), + [anon_sym_0o] = ACTIONS(1041), + [anon_sym_0x] = ACTIONS(1041), + [sym_val_date] = ACTIONS(1041), + [anon_sym_DQUOTE] = ACTIONS(1041), + [sym__str_single_quotes] = ACTIONS(1041), + [sym__str_back_ticks] = ACTIONS(1041), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1041), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1041), + [anon_sym_CARET] = ACTIONS(1041), [anon_sym_POUND] = ACTIONS(113), }, [284] = { [sym_comment] = STATE(284), - [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), - [anon_sym_SEMI] = ACTIONS(950), - [sym_cmd_identifier] = ACTIONS(950), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(950), - [anon_sym_LPAREN] = ACTIONS(950), - [anon_sym_RPAREN] = ACTIONS(950), - [anon_sym_DOLLAR] = ACTIONS(950), - [anon_sym_error] = ACTIONS(950), - [anon_sym_GT] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(950), - [anon_sym_break] = ACTIONS(950), - [anon_sym_continue] = ACTIONS(950), - [anon_sym_for] = ACTIONS(950), - [anon_sym_in] = ACTIONS(950), - [anon_sym_loop] = ACTIONS(950), - [anon_sym_while] = ACTIONS(950), - [anon_sym_do] = ACTIONS(950), - [anon_sym_if] = ACTIONS(950), - [anon_sym_match] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(950), - [anon_sym_RBRACE] = ACTIONS(950), - [anon_sym_DOT_DOT] = ACTIONS(950), - [anon_sym_try] = ACTIONS(950), - [anon_sym_return] = ACTIONS(950), - [anon_sym_source] = ACTIONS(950), - [anon_sym_source_DASHenv] = ACTIONS(950), - [anon_sym_register] = ACTIONS(950), - [anon_sym_hide] = ACTIONS(950), - [anon_sym_hide_DASHenv] = ACTIONS(950), - [anon_sym_overlay] = ACTIONS(950), - [anon_sym_STAR] = ACTIONS(950), - [anon_sym_where] = ACTIONS(950), - [anon_sym_STAR_STAR] = ACTIONS(950), - [anon_sym_PLUS_PLUS] = ACTIONS(950), - [anon_sym_SLASH] = ACTIONS(950), - [anon_sym_mod] = ACTIONS(950), - [anon_sym_SLASH_SLASH] = ACTIONS(950), - [anon_sym_PLUS] = ACTIONS(950), - [anon_sym_bit_DASHshl] = ACTIONS(950), - [anon_sym_bit_DASHshr] = ACTIONS(950), - [anon_sym_EQ_EQ] = ACTIONS(950), - [anon_sym_BANG_EQ] = ACTIONS(950), - [anon_sym_LT2] = ACTIONS(950), - [anon_sym_LT_EQ] = ACTIONS(950), - [anon_sym_GT_EQ] = ACTIONS(950), - [anon_sym_not_DASHin] = ACTIONS(950), - [anon_sym_starts_DASHwith] = ACTIONS(950), - [anon_sym_ends_DASHwith] = ACTIONS(950), - [anon_sym_EQ_TILDE] = ACTIONS(950), - [anon_sym_BANG_TILDE] = ACTIONS(950), - [anon_sym_bit_DASHand] = ACTIONS(950), - [anon_sym_bit_DASHxor] = ACTIONS(950), - [anon_sym_bit_DASHor] = ACTIONS(950), - [anon_sym_and] = ACTIONS(950), - [anon_sym_xor] = ACTIONS(950), - [anon_sym_or] = ACTIONS(950), - [anon_sym_not] = ACTIONS(950), - [anon_sym_DOT_DOT2] = ACTIONS(950), - [anon_sym_DOT] = 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(950), - [anon_sym_true] = ACTIONS(950), - [anon_sym_false] = ACTIONS(950), - [aux_sym__val_number_decimal_token1] = ACTIONS(950), - [aux_sym__val_number_decimal_token2] = ACTIONS(950), - [anon_sym_DOT2] = ACTIONS(950), - [aux_sym__val_number_decimal_token3] = ACTIONS(950), - [aux_sym__val_number_token1] = ACTIONS(950), - [aux_sym__val_number_token2] = ACTIONS(950), - [aux_sym__val_number_token3] = ACTIONS(950), - [aux_sym__val_number_token4] = ACTIONS(950), - [aux_sym__val_number_token5] = ACTIONS(950), - [aux_sym__val_number_token6] = ACTIONS(950), - [anon_sym_0b] = ACTIONS(950), - [sym_filesize_unit] = ACTIONS(950), - [sym_duration_unit] = ACTIONS(950), - [anon_sym_0o] = ACTIONS(950), - [anon_sym_0x] = ACTIONS(950), - [sym_val_date] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym__str_single_quotes] = ACTIONS(950), - [sym__str_back_ticks] = ACTIONS(950), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(950), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(950), - [anon_sym_CARET] = ACTIONS(950), - [aux_sym_unquoted_token5] = ACTIONS(950), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_alias] = ACTIONS(1061), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_let_DASHenv] = ACTIONS(1061), + [anon_sym_mut] = ACTIONS(1061), + [anon_sym_const] = ACTIONS(1061), + [anon_sym_SEMI] = ACTIONS(1061), + [sym_cmd_identifier] = ACTIONS(1061), + [anon_sym_LF] = ACTIONS(1063), + [anon_sym_def] = ACTIONS(1061), + [anon_sym_export_DASHenv] = ACTIONS(1061), + [anon_sym_extern] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_use] = ACTIONS(1061), + [anon_sym_LBRACK] = ACTIONS(1061), + [anon_sym_LPAREN] = ACTIONS(1061), + [anon_sym_RPAREN] = ACTIONS(1061), + [anon_sym_DOLLAR] = ACTIONS(1061), + [anon_sym_error] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_DASH_DASH] = ACTIONS(1061), + [anon_sym_DASH] = ACTIONS(1061), + [anon_sym_break] = ACTIONS(1061), + [anon_sym_continue] = ACTIONS(1061), + [anon_sym_for] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1061), + [anon_sym_loop] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(1061), + [anon_sym_do] = ACTIONS(1061), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_match] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(1061), + [anon_sym_RBRACE] = ACTIONS(1061), + [anon_sym_DOT_DOT] = ACTIONS(1061), + [anon_sym_try] = ACTIONS(1061), + [anon_sym_return] = ACTIONS(1061), + [anon_sym_source] = ACTIONS(1061), + [anon_sym_source_DASHenv] = ACTIONS(1061), + [anon_sym_register] = ACTIONS(1061), + [anon_sym_hide] = ACTIONS(1061), + [anon_sym_hide_DASHenv] = ACTIONS(1061), + [anon_sym_overlay] = ACTIONS(1061), + [anon_sym_as] = ACTIONS(1061), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_where] = ACTIONS(1061), + [anon_sym_STAR_STAR] = ACTIONS(1061), + [anon_sym_PLUS_PLUS] = ACTIONS(1061), + [anon_sym_SLASH] = ACTIONS(1061), + [anon_sym_mod] = ACTIONS(1061), + [anon_sym_SLASH_SLASH] = ACTIONS(1061), + [anon_sym_PLUS] = ACTIONS(1061), + [anon_sym_bit_DASHshl] = ACTIONS(1061), + [anon_sym_bit_DASHshr] = ACTIONS(1061), + [anon_sym_EQ_EQ] = ACTIONS(1061), + [anon_sym_BANG_EQ] = ACTIONS(1061), + [anon_sym_LT2] = ACTIONS(1061), + [anon_sym_LT_EQ] = ACTIONS(1061), + [anon_sym_GT_EQ] = ACTIONS(1061), + [anon_sym_not_DASHin] = ACTIONS(1061), + [anon_sym_starts_DASHwith] = ACTIONS(1061), + [anon_sym_ends_DASHwith] = ACTIONS(1061), + [anon_sym_EQ_TILDE] = ACTIONS(1061), + [anon_sym_BANG_TILDE] = ACTIONS(1061), + [anon_sym_bit_DASHand] = ACTIONS(1061), + [anon_sym_bit_DASHxor] = ACTIONS(1061), + [anon_sym_bit_DASHor] = ACTIONS(1061), + [anon_sym_and] = ACTIONS(1061), + [anon_sym_xor] = ACTIONS(1061), + [anon_sym_or] = ACTIONS(1061), + [anon_sym_not] = ACTIONS(1061), + [anon_sym_DOT_DOT2] = ACTIONS(1061), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1061), + [anon_sym_DOT_DOT_LT] = ACTIONS(1061), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1063), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1063), + [anon_sym_null] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1061), + [anon_sym_false] = ACTIONS(1061), + [aux_sym__val_number_decimal_token1] = ACTIONS(1061), + [aux_sym__val_number_decimal_token2] = ACTIONS(1061), + [anon_sym_DOT2] = ACTIONS(1061), + [aux_sym__val_number_decimal_token3] = ACTIONS(1061), + [aux_sym__val_number_token1] = ACTIONS(1061), + [aux_sym__val_number_token2] = ACTIONS(1061), + [aux_sym__val_number_token3] = ACTIONS(1061), + [aux_sym__val_number_token4] = ACTIONS(1061), + [aux_sym__val_number_token5] = ACTIONS(1061), + [aux_sym__val_number_token6] = ACTIONS(1061), + [anon_sym_0b] = ACTIONS(1061), + [anon_sym_0o] = ACTIONS(1061), + [anon_sym_0x] = ACTIONS(1061), + [sym_val_date] = ACTIONS(1061), + [anon_sym_DQUOTE] = ACTIONS(1061), + [sym__str_single_quotes] = ACTIONS(1061), + [sym__str_back_ticks] = ACTIONS(1061), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1061), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1061), + [anon_sym_CARET] = ACTIONS(1061), [anon_sym_POUND] = ACTIONS(113), }, [285] = { - [sym__immediate_decimal] = STATE(10460), + [sym_cell_path] = STATE(358), + [sym_path] = STATE(295), [sym_comment] = STATE(285), - [ts_builtin_sym_end] = ACTIONS(938), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_error] = ACTIONS(936), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_as] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_where] = ACTIONS(936), - [anon_sym_STAR_STAR] = ACTIONS(936), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(936), - [anon_sym_SLASH_SLASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(936), - [anon_sym_bit_DASHshr] = ACTIONS(936), - [anon_sym_EQ_EQ] = ACTIONS(936), - [anon_sym_BANG_EQ] = ACTIONS(936), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(936), - [anon_sym_GT_EQ] = ACTIONS(936), - [anon_sym_not_DASHin] = ACTIONS(936), - [anon_sym_starts_DASHwith] = ACTIONS(936), - [anon_sym_ends_DASHwith] = ACTIONS(936), - [anon_sym_EQ_TILDE] = ACTIONS(936), - [anon_sym_BANG_TILDE] = ACTIONS(936), - [anon_sym_bit_DASHand] = ACTIONS(936), - [anon_sym_bit_DASHxor] = ACTIONS(936), - [anon_sym_bit_DASHor] = ACTIONS(936), - [anon_sym_and] = ACTIONS(936), - [anon_sym_xor] = ACTIONS(936), - [anon_sym_or] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [aux_sym__immediate_decimal_token1] = ACTIONS(1045), - [aux_sym__immediate_decimal_token3] = ACTIONS(1045), - [aux_sym__immediate_decimal_token4] = ACTIONS(1047), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [aux_sym_unquoted_token4] = ACTIONS(1028), + [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), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [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_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = 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_STAR] = ACTIONS(1002), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_SLASH] = ACTIONS(1002), + [anon_sym_mod] = ACTIONS(1002), + [anon_sym_SLASH_SLASH] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1002), + [anon_sym_bit_DASHshl] = ACTIONS(1002), + [anon_sym_bit_DASHshr] = ACTIONS(1002), + [anon_sym_EQ_EQ] = ACTIONS(1002), + [anon_sym_BANG_EQ] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ] = ACTIONS(1002), + [anon_sym_GT_EQ] = ACTIONS(1002), + [anon_sym_not_DASHin] = ACTIONS(1002), + [anon_sym_starts_DASHwith] = ACTIONS(1002), + [anon_sym_ends_DASHwith] = ACTIONS(1002), + [anon_sym_EQ_TILDE] = ACTIONS(1002), + [anon_sym_BANG_TILDE] = ACTIONS(1002), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT] = ACTIONS(1055), + [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), + [anon_sym_DOT2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = 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(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_CARET] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(113), }, [286] = { - [sym_cell_path] = STATE(396), - [sym_path] = STATE(283), + [sym_path] = STATE(327), [sym_comment] = STATE(286), - [ts_builtin_sym_end] = ACTIONS(997), - [anon_sym_export] = ACTIONS(995), - [anon_sym_alias] = ACTIONS(995), - [anon_sym_let] = ACTIONS(995), - [anon_sym_let_DASHenv] = ACTIONS(995), - [anon_sym_mut] = ACTIONS(995), - [anon_sym_const] = ACTIONS(995), - [anon_sym_SEMI] = ACTIONS(995), - [sym_cmd_identifier] = ACTIONS(995), - [anon_sym_LF] = ACTIONS(997), - [anon_sym_def] = ACTIONS(995), - [anon_sym_export_DASHenv] = ACTIONS(995), - [anon_sym_extern] = ACTIONS(995), - [anon_sym_module] = ACTIONS(995), - [anon_sym_use] = ACTIONS(995), - [anon_sym_LBRACK] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_DOLLAR] = ACTIONS(995), - [anon_sym_error] = ACTIONS(995), - [anon_sym_GT] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_break] = ACTIONS(995), - [anon_sym_continue] = ACTIONS(995), - [anon_sym_for] = ACTIONS(995), - [anon_sym_in] = ACTIONS(995), - [anon_sym_loop] = ACTIONS(995), - [anon_sym_while] = ACTIONS(995), - [anon_sym_do] = ACTIONS(995), - [anon_sym_if] = ACTIONS(995), - [anon_sym_match] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_DOT_DOT] = ACTIONS(995), - [anon_sym_try] = ACTIONS(995), - [anon_sym_return] = ACTIONS(995), - [anon_sym_source] = ACTIONS(995), - [anon_sym_source_DASHenv] = ACTIONS(995), - [anon_sym_register] = ACTIONS(995), - [anon_sym_hide] = ACTIONS(995), - [anon_sym_hide_DASHenv] = ACTIONS(995), - [anon_sym_overlay] = ACTIONS(995), - [anon_sym_as] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_where] = ACTIONS(995), - [anon_sym_STAR_STAR] = ACTIONS(995), - [anon_sym_PLUS_PLUS] = ACTIONS(995), - [anon_sym_SLASH] = ACTIONS(995), - [anon_sym_mod] = ACTIONS(995), - [anon_sym_SLASH_SLASH] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_bit_DASHshl] = ACTIONS(995), - [anon_sym_bit_DASHshr] = ACTIONS(995), - [anon_sym_EQ_EQ] = ACTIONS(995), - [anon_sym_BANG_EQ] = ACTIONS(995), - [anon_sym_LT2] = ACTIONS(995), - [anon_sym_LT_EQ] = ACTIONS(995), - [anon_sym_GT_EQ] = ACTIONS(995), - [anon_sym_not_DASHin] = ACTIONS(995), - [anon_sym_starts_DASHwith] = ACTIONS(995), - [anon_sym_ends_DASHwith] = ACTIONS(995), - [anon_sym_EQ_TILDE] = ACTIONS(995), - [anon_sym_BANG_TILDE] = ACTIONS(995), - [anon_sym_bit_DASHand] = ACTIONS(995), - [anon_sym_bit_DASHxor] = ACTIONS(995), - [anon_sym_bit_DASHor] = ACTIONS(995), - [anon_sym_and] = ACTIONS(995), - [anon_sym_xor] = ACTIONS(995), - [anon_sym_or] = ACTIONS(995), - [anon_sym_not] = ACTIONS(995), - [anon_sym_DOT_DOT2] = ACTIONS(995), - [anon_sym_DOT] = ACTIONS(1049), - [anon_sym_DOT_DOT_EQ] = ACTIONS(995), - [anon_sym_DOT_DOT_LT] = ACTIONS(995), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(997), - [anon_sym_DOT_DOT_LT2] = ACTIONS(997), - [anon_sym_null] = ACTIONS(995), - [anon_sym_true] = ACTIONS(995), - [anon_sym_false] = ACTIONS(995), - [aux_sym__val_number_decimal_token1] = ACTIONS(995), - [aux_sym__val_number_decimal_token2] = ACTIONS(995), - [anon_sym_DOT2] = ACTIONS(995), - [aux_sym__val_number_decimal_token3] = ACTIONS(995), - [aux_sym__val_number_token1] = ACTIONS(995), - [aux_sym__val_number_token2] = ACTIONS(995), - [aux_sym__val_number_token3] = ACTIONS(995), - [aux_sym__val_number_token4] = ACTIONS(995), - [aux_sym__val_number_token5] = ACTIONS(995), - [aux_sym__val_number_token6] = ACTIONS(995), - [anon_sym_0b] = ACTIONS(995), - [anon_sym_0o] = ACTIONS(995), - [anon_sym_0x] = ACTIONS(995), - [sym_val_date] = ACTIONS(995), - [anon_sym_DQUOTE] = ACTIONS(995), - [sym__str_single_quotes] = ACTIONS(995), - [sym__str_back_ticks] = ACTIONS(995), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(995), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(995), - [anon_sym_CARET] = ACTIONS(995), + [aux_sym_cell_path_repeat1] = STATE(287), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_alias] = ACTIONS(1006), + [anon_sym_let] = ACTIONS(1006), + [anon_sym_let_DASHenv] = ACTIONS(1006), + [anon_sym_mut] = ACTIONS(1006), + [anon_sym_const] = ACTIONS(1006), + [anon_sym_SEMI] = ACTIONS(1006), + [sym_cmd_identifier] = ACTIONS(1006), + [anon_sym_LF] = ACTIONS(1008), + [anon_sym_def] = ACTIONS(1006), + [anon_sym_export_DASHenv] = ACTIONS(1006), + [anon_sym_extern] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_use] = ACTIONS(1006), + [anon_sym_LBRACK] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_RPAREN] = ACTIONS(1006), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_error] = ACTIONS(1006), + [anon_sym_GT] = ACTIONS(1006), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_break] = ACTIONS(1006), + [anon_sym_continue] = ACTIONS(1006), + [anon_sym_for] = ACTIONS(1006), + [anon_sym_in] = ACTIONS(1006), + [anon_sym_loop] = ACTIONS(1006), + [anon_sym_while] = ACTIONS(1006), + [anon_sym_do] = ACTIONS(1006), + [anon_sym_if] = ACTIONS(1006), + [anon_sym_match] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(1006), + [anon_sym_DOT_DOT] = ACTIONS(1006), + [anon_sym_try] = ACTIONS(1006), + [anon_sym_return] = ACTIONS(1006), + [anon_sym_source] = ACTIONS(1006), + [anon_sym_source_DASHenv] = ACTIONS(1006), + [anon_sym_register] = ACTIONS(1006), + [anon_sym_hide] = ACTIONS(1006), + [anon_sym_hide_DASHenv] = ACTIONS(1006), + [anon_sym_overlay] = ACTIONS(1006), + [anon_sym_as] = ACTIONS(1006), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_where] = ACTIONS(1006), + [anon_sym_STAR_STAR] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_mod] = ACTIONS(1006), + [anon_sym_SLASH_SLASH] = ACTIONS(1006), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_bit_DASHshl] = ACTIONS(1006), + [anon_sym_bit_DASHshr] = ACTIONS(1006), + [anon_sym_EQ_EQ] = ACTIONS(1006), + [anon_sym_BANG_EQ] = ACTIONS(1006), + [anon_sym_LT2] = ACTIONS(1006), + [anon_sym_LT_EQ] = ACTIONS(1006), + [anon_sym_GT_EQ] = ACTIONS(1006), + [anon_sym_not_DASHin] = ACTIONS(1006), + [anon_sym_starts_DASHwith] = ACTIONS(1006), + [anon_sym_ends_DASHwith] = ACTIONS(1006), + [anon_sym_EQ_TILDE] = ACTIONS(1006), + [anon_sym_BANG_TILDE] = ACTIONS(1006), + [anon_sym_bit_DASHand] = ACTIONS(1006), + [anon_sym_bit_DASHxor] = ACTIONS(1006), + [anon_sym_bit_DASHor] = ACTIONS(1006), + [anon_sym_and] = ACTIONS(1006), + [anon_sym_xor] = ACTIONS(1006), + [anon_sym_or] = ACTIONS(1006), + [anon_sym_not] = ACTIONS(1006), + [anon_sym_DOT] = ACTIONS(1055), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), + [anon_sym_DOT_DOT_LT] = ACTIONS(1006), + [anon_sym_null] = ACTIONS(1006), + [anon_sym_true] = ACTIONS(1006), + [anon_sym_false] = ACTIONS(1006), + [aux_sym__val_number_decimal_token1] = ACTIONS(1006), + [aux_sym__val_number_decimal_token2] = ACTIONS(1006), + [anon_sym_DOT2] = ACTIONS(1006), + [aux_sym__val_number_decimal_token3] = ACTIONS(1006), + [aux_sym__val_number_token1] = ACTIONS(1006), + [aux_sym__val_number_token2] = ACTIONS(1006), + [aux_sym__val_number_token3] = ACTIONS(1006), + [aux_sym__val_number_token4] = ACTIONS(1006), + [aux_sym__val_number_token5] = ACTIONS(1006), + [aux_sym__val_number_token6] = ACTIONS(1006), + [anon_sym_0b] = ACTIONS(1006), + [anon_sym_0o] = ACTIONS(1006), + [anon_sym_0x] = ACTIONS(1006), + [sym_val_date] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym__str_single_quotes] = ACTIONS(1006), + [sym__str_back_ticks] = ACTIONS(1006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1006), + [anon_sym_CARET] = ACTIONS(1006), [anon_sym_POUND] = ACTIONS(113), }, [287] = { + [sym_path] = STATE(327), [sym_comment] = STATE(287), - [anon_sym_export] = ACTIONS(959), - [anon_sym_alias] = ACTIONS(959), - [anon_sym_let] = ACTIONS(959), - [anon_sym_let_DASHenv] = ACTIONS(959), - [anon_sym_mut] = ACTIONS(959), - [anon_sym_const] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(959), - [sym_cmd_identifier] = ACTIONS(959), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_def] = ACTIONS(959), - [anon_sym_export_DASHenv] = ACTIONS(959), - [anon_sym_extern] = ACTIONS(959), - [anon_sym_module] = ACTIONS(959), - [anon_sym_use] = ACTIONS(959), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_RPAREN] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_error] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_break] = ACTIONS(959), - [anon_sym_continue] = ACTIONS(959), - [anon_sym_for] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_loop] = ACTIONS(959), - [anon_sym_while] = ACTIONS(959), - [anon_sym_do] = ACTIONS(959), - [anon_sym_if] = ACTIONS(959), - [anon_sym_match] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_RBRACE] = ACTIONS(959), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_try] = ACTIONS(959), - [anon_sym_return] = ACTIONS(959), - [anon_sym_source] = ACTIONS(959), - [anon_sym_source_DASHenv] = ACTIONS(959), - [anon_sym_register] = ACTIONS(959), - [anon_sym_hide] = ACTIONS(959), - [anon_sym_hide_DASHenv] = ACTIONS(959), - [anon_sym_overlay] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_where] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(959), - [anon_sym_PLUS_PLUS] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(959), - [anon_sym_SLASH_SLASH] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(959), - [anon_sym_bit_DASHshr] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(959), - [anon_sym_BANG_EQ] = ACTIONS(959), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(959), - [anon_sym_GT_EQ] = ACTIONS(959), - [anon_sym_not_DASHin] = ACTIONS(959), - [anon_sym_starts_DASHwith] = ACTIONS(959), - [anon_sym_ends_DASHwith] = ACTIONS(959), - [anon_sym_EQ_TILDE] = ACTIONS(959), - [anon_sym_BANG_TILDE] = ACTIONS(959), - [anon_sym_bit_DASHand] = ACTIONS(959), - [anon_sym_bit_DASHxor] = ACTIONS(959), - [anon_sym_bit_DASHor] = ACTIONS(959), - [anon_sym_and] = ACTIONS(959), - [anon_sym_xor] = ACTIONS(959), - [anon_sym_or] = ACTIONS(959), - [anon_sym_not] = ACTIONS(959), - [anon_sym_DOT_DOT2] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(1051), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_DOT_DOT_LT] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(983), - [anon_sym_DOT_DOT_LT2] = ACTIONS(983), - [anon_sym_null] = ACTIONS(959), - [anon_sym_true] = ACTIONS(959), - [anon_sym_false] = ACTIONS(959), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(959), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(959), - [aux_sym__val_number_token1] = ACTIONS(959), - [aux_sym__val_number_token2] = ACTIONS(959), - [aux_sym__val_number_token3] = ACTIONS(959), - [aux_sym__val_number_token4] = ACTIONS(959), - [aux_sym__val_number_token5] = ACTIONS(959), - [aux_sym__val_number_token6] = ACTIONS(959), - [anon_sym_0b] = ACTIONS(959), - [sym_filesize_unit] = ACTIONS(1053), - [sym_duration_unit] = ACTIONS(1055), - [anon_sym_0o] = ACTIONS(959), - [anon_sym_0x] = ACTIONS(959), - [sym_val_date] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [sym__str_single_quotes] = ACTIONS(959), - [sym__str_back_ticks] = ACTIONS(959), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(959), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(959), - [anon_sym_CARET] = ACTIONS(959), - [aux_sym_unquoted_token5] = ACTIONS(1057), + [aux_sym_cell_path_repeat1] = STATE(287), + [anon_sym_export] = ACTIONS(985), + [anon_sym_alias] = ACTIONS(985), + [anon_sym_let] = ACTIONS(985), + [anon_sym_let_DASHenv] = ACTIONS(985), + [anon_sym_mut] = ACTIONS(985), + [anon_sym_const] = ACTIONS(985), + [anon_sym_SEMI] = ACTIONS(985), + [sym_cmd_identifier] = ACTIONS(985), + [anon_sym_LF] = ACTIONS(987), + [anon_sym_def] = ACTIONS(985), + [anon_sym_export_DASHenv] = ACTIONS(985), + [anon_sym_extern] = ACTIONS(985), + [anon_sym_module] = ACTIONS(985), + [anon_sym_use] = ACTIONS(985), + [anon_sym_LBRACK] = ACTIONS(985), + [anon_sym_LPAREN] = ACTIONS(985), + [anon_sym_RPAREN] = ACTIONS(985), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_error] = ACTIONS(985), + [anon_sym_GT] = ACTIONS(985), + [anon_sym_DASH_DASH] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_break] = ACTIONS(985), + [anon_sym_continue] = ACTIONS(985), + [anon_sym_for] = ACTIONS(985), + [anon_sym_in] = ACTIONS(985), + [anon_sym_loop] = ACTIONS(985), + [anon_sym_while] = ACTIONS(985), + [anon_sym_do] = ACTIONS(985), + [anon_sym_if] = ACTIONS(985), + [anon_sym_match] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(985), + [anon_sym_RBRACE] = ACTIONS(985), + [anon_sym_DOT_DOT] = ACTIONS(985), + [anon_sym_try] = ACTIONS(985), + [anon_sym_return] = ACTIONS(985), + [anon_sym_source] = ACTIONS(985), + [anon_sym_source_DASHenv] = ACTIONS(985), + [anon_sym_register] = ACTIONS(985), + [anon_sym_hide] = ACTIONS(985), + [anon_sym_hide_DASHenv] = ACTIONS(985), + [anon_sym_overlay] = ACTIONS(985), + [anon_sym_as] = ACTIONS(985), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_where] = ACTIONS(985), + [anon_sym_STAR_STAR] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(985), + [anon_sym_SLASH] = ACTIONS(985), + [anon_sym_mod] = ACTIONS(985), + [anon_sym_SLASH_SLASH] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_bit_DASHshl] = ACTIONS(985), + [anon_sym_bit_DASHshr] = ACTIONS(985), + [anon_sym_EQ_EQ] = ACTIONS(985), + [anon_sym_BANG_EQ] = ACTIONS(985), + [anon_sym_LT2] = ACTIONS(985), + [anon_sym_LT_EQ] = ACTIONS(985), + [anon_sym_GT_EQ] = ACTIONS(985), + [anon_sym_not_DASHin] = ACTIONS(985), + [anon_sym_starts_DASHwith] = ACTIONS(985), + [anon_sym_ends_DASHwith] = ACTIONS(985), + [anon_sym_EQ_TILDE] = ACTIONS(985), + [anon_sym_BANG_TILDE] = ACTIONS(985), + [anon_sym_bit_DASHand] = ACTIONS(985), + [anon_sym_bit_DASHxor] = ACTIONS(985), + [anon_sym_bit_DASHor] = ACTIONS(985), + [anon_sym_and] = ACTIONS(985), + [anon_sym_xor] = ACTIONS(985), + [anon_sym_or] = ACTIONS(985), + [anon_sym_not] = ACTIONS(985), + [anon_sym_DOT] = ACTIONS(1065), + [anon_sym_DOT_DOT_EQ] = ACTIONS(985), + [anon_sym_DOT_DOT_LT] = ACTIONS(985), + [anon_sym_null] = ACTIONS(985), + [anon_sym_true] = ACTIONS(985), + [anon_sym_false] = ACTIONS(985), + [aux_sym__val_number_decimal_token1] = ACTIONS(985), + [aux_sym__val_number_decimal_token2] = ACTIONS(985), + [anon_sym_DOT2] = ACTIONS(985), + [aux_sym__val_number_decimal_token3] = ACTIONS(985), + [aux_sym__val_number_token1] = ACTIONS(985), + [aux_sym__val_number_token2] = ACTIONS(985), + [aux_sym__val_number_token3] = ACTIONS(985), + [aux_sym__val_number_token4] = ACTIONS(985), + [aux_sym__val_number_token5] = ACTIONS(985), + [aux_sym__val_number_token6] = ACTIONS(985), + [anon_sym_0b] = ACTIONS(985), + [anon_sym_0o] = ACTIONS(985), + [anon_sym_0x] = ACTIONS(985), + [sym_val_date] = ACTIONS(985), + [anon_sym_DQUOTE] = ACTIONS(985), + [sym__str_single_quotes] = ACTIONS(985), + [sym__str_back_ticks] = ACTIONS(985), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(985), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(985), [anon_sym_POUND] = ACTIONS(113), }, [288] = { [sym_comment] = STATE(288), - [anon_sym_export] = ACTIONS(1059), - [anon_sym_alias] = ACTIONS(1059), - [anon_sym_let] = ACTIONS(1059), - [anon_sym_let_DASHenv] = ACTIONS(1059), - [anon_sym_mut] = ACTIONS(1059), - [anon_sym_const] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [sym_cmd_identifier] = ACTIONS(1059), - [anon_sym_LF] = ACTIONS(1061), - [anon_sym_def] = ACTIONS(1059), - [anon_sym_export_DASHenv] = ACTIONS(1059), - [anon_sym_extern] = ACTIONS(1059), - [anon_sym_module] = ACTIONS(1059), - [anon_sym_use] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_error] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_DASH_DASH] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_break] = ACTIONS(1059), - [anon_sym_continue] = ACTIONS(1059), - [anon_sym_for] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1059), - [anon_sym_loop] = ACTIONS(1059), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_do] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1059), - [anon_sym_match] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(1059), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_try] = ACTIONS(1059), - [anon_sym_return] = ACTIONS(1059), - [anon_sym_source] = ACTIONS(1059), - [anon_sym_source_DASHenv] = ACTIONS(1059), - [anon_sym_register] = ACTIONS(1059), - [anon_sym_hide] = ACTIONS(1059), - [anon_sym_hide_DASHenv] = ACTIONS(1059), - [anon_sym_overlay] = ACTIONS(1059), - [anon_sym_as] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(1059), - [anon_sym_QMARK2] = ACTIONS(1059), - [anon_sym_STAR_STAR] = ACTIONS(1059), - [anon_sym_PLUS_PLUS] = ACTIONS(1059), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_mod] = ACTIONS(1059), - [anon_sym_SLASH_SLASH] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_bit_DASHshl] = ACTIONS(1059), - [anon_sym_bit_DASHshr] = ACTIONS(1059), - [anon_sym_EQ_EQ] = ACTIONS(1059), - [anon_sym_BANG_EQ] = ACTIONS(1059), - [anon_sym_LT2] = ACTIONS(1059), - [anon_sym_LT_EQ] = ACTIONS(1059), - [anon_sym_GT_EQ] = ACTIONS(1059), - [anon_sym_not_DASHin] = ACTIONS(1059), - [anon_sym_starts_DASHwith] = ACTIONS(1059), - [anon_sym_ends_DASHwith] = ACTIONS(1059), - [anon_sym_EQ_TILDE] = ACTIONS(1059), - [anon_sym_BANG_TILDE] = ACTIONS(1059), - [anon_sym_bit_DASHand] = ACTIONS(1059), - [anon_sym_bit_DASHxor] = ACTIONS(1059), - [anon_sym_bit_DASHor] = ACTIONS(1059), - [anon_sym_and] = ACTIONS(1059), - [anon_sym_xor] = ACTIONS(1059), - [anon_sym_or] = ACTIONS(1059), - [anon_sym_not] = ACTIONS(1059), - [anon_sym_DOT_DOT2] = ACTIONS(1059), - [anon_sym_DOT] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1059), - [anon_sym_DOT_DOT_LT] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1061), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1061), - [anon_sym_null] = ACTIONS(1059), - [anon_sym_true] = ACTIONS(1059), - [anon_sym_false] = ACTIONS(1059), - [aux_sym__val_number_decimal_token1] = ACTIONS(1059), - [aux_sym__val_number_decimal_token2] = ACTIONS(1059), - [anon_sym_DOT2] = ACTIONS(1059), - [aux_sym__val_number_decimal_token3] = ACTIONS(1059), - [aux_sym__val_number_token1] = ACTIONS(1059), - [aux_sym__val_number_token2] = ACTIONS(1059), - [aux_sym__val_number_token3] = ACTIONS(1059), - [aux_sym__val_number_token4] = ACTIONS(1059), - [aux_sym__val_number_token5] = ACTIONS(1059), - [aux_sym__val_number_token6] = ACTIONS(1059), - [anon_sym_0b] = ACTIONS(1059), - [anon_sym_0o] = ACTIONS(1059), - [anon_sym_0x] = ACTIONS(1059), - [sym_val_date] = ACTIONS(1059), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym__str_single_quotes] = ACTIONS(1059), - [sym__str_back_ticks] = ACTIONS(1059), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1059), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1059), - [anon_sym_CARET] = ACTIONS(1059), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_alias] = ACTIONS(1068), + [anon_sym_let] = ACTIONS(1068), + [anon_sym_let_DASHenv] = ACTIONS(1068), + [anon_sym_mut] = ACTIONS(1068), + [anon_sym_const] = ACTIONS(1068), + [anon_sym_SEMI] = ACTIONS(1068), + [sym_cmd_identifier] = ACTIONS(1068), + [anon_sym_LF] = ACTIONS(1070), + [anon_sym_def] = ACTIONS(1068), + [anon_sym_export_DASHenv] = ACTIONS(1068), + [anon_sym_extern] = ACTIONS(1068), + [anon_sym_module] = ACTIONS(1068), + [anon_sym_use] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(1068), + [anon_sym_LPAREN] = ACTIONS(1068), + [anon_sym_RPAREN] = ACTIONS(1068), + [anon_sym_DOLLAR] = ACTIONS(1068), + [anon_sym_error] = ACTIONS(1068), + [anon_sym_GT] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1068), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_break] = ACTIONS(1068), + [anon_sym_continue] = ACTIONS(1068), + [anon_sym_for] = ACTIONS(1068), + [anon_sym_in] = ACTIONS(1068), + [anon_sym_loop] = ACTIONS(1068), + [anon_sym_while] = ACTIONS(1068), + [anon_sym_do] = ACTIONS(1068), + [anon_sym_if] = ACTIONS(1068), + [anon_sym_match] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_RBRACE] = ACTIONS(1068), + [anon_sym_DOT_DOT] = ACTIONS(1068), + [anon_sym_try] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1068), + [anon_sym_source] = ACTIONS(1068), + [anon_sym_source_DASHenv] = ACTIONS(1068), + [anon_sym_register] = ACTIONS(1068), + [anon_sym_hide] = ACTIONS(1068), + [anon_sym_hide_DASHenv] = ACTIONS(1068), + [anon_sym_overlay] = ACTIONS(1068), + [anon_sym_as] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_where] = ACTIONS(1068), + [anon_sym_STAR_STAR] = ACTIONS(1068), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_SLASH] = ACTIONS(1068), + [anon_sym_mod] = ACTIONS(1068), + [anon_sym_SLASH_SLASH] = ACTIONS(1068), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_bit_DASHshl] = ACTIONS(1068), + [anon_sym_bit_DASHshr] = ACTIONS(1068), + [anon_sym_EQ_EQ] = ACTIONS(1068), + [anon_sym_BANG_EQ] = ACTIONS(1068), + [anon_sym_LT2] = ACTIONS(1068), + [anon_sym_LT_EQ] = ACTIONS(1068), + [anon_sym_GT_EQ] = ACTIONS(1068), + [anon_sym_not_DASHin] = ACTIONS(1068), + [anon_sym_starts_DASHwith] = ACTIONS(1068), + [anon_sym_ends_DASHwith] = ACTIONS(1068), + [anon_sym_EQ_TILDE] = ACTIONS(1068), + [anon_sym_BANG_TILDE] = ACTIONS(1068), + [anon_sym_bit_DASHand] = ACTIONS(1068), + [anon_sym_bit_DASHxor] = ACTIONS(1068), + [anon_sym_bit_DASHor] = ACTIONS(1068), + [anon_sym_and] = ACTIONS(1068), + [anon_sym_xor] = ACTIONS(1068), + [anon_sym_or] = ACTIONS(1068), + [anon_sym_not] = ACTIONS(1068), + [anon_sym_DOT_DOT2] = ACTIONS(1068), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1068), + [anon_sym_DOT_DOT_LT] = ACTIONS(1068), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1070), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1070), + [anon_sym_null] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1068), + [anon_sym_false] = ACTIONS(1068), + [aux_sym__val_number_decimal_token1] = ACTIONS(1068), + [aux_sym__val_number_decimal_token2] = ACTIONS(1068), + [anon_sym_DOT2] = ACTIONS(1068), + [aux_sym__val_number_decimal_token3] = ACTIONS(1068), + [aux_sym__val_number_token1] = ACTIONS(1068), + [aux_sym__val_number_token2] = ACTIONS(1068), + [aux_sym__val_number_token3] = ACTIONS(1068), + [aux_sym__val_number_token4] = ACTIONS(1068), + [aux_sym__val_number_token5] = ACTIONS(1068), + [aux_sym__val_number_token6] = ACTIONS(1068), + [anon_sym_0b] = ACTIONS(1068), + [anon_sym_0o] = ACTIONS(1068), + [anon_sym_0x] = ACTIONS(1068), + [sym_val_date] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(1068), + [sym__str_single_quotes] = ACTIONS(1068), + [sym__str_back_ticks] = ACTIONS(1068), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1068), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1068), + [anon_sym_CARET] = ACTIONS(1068), [anon_sym_POUND] = ACTIONS(113), }, [289] = { [sym_comment] = STATE(289), - [anon_sym_export] = ACTIONS(1063), - [anon_sym_alias] = ACTIONS(1063), - [anon_sym_let] = ACTIONS(1063), - [anon_sym_let_DASHenv] = ACTIONS(1063), - [anon_sym_mut] = ACTIONS(1063), - [anon_sym_const] = ACTIONS(1063), - [anon_sym_SEMI] = ACTIONS(1063), - [sym_cmd_identifier] = ACTIONS(1063), - [anon_sym_LF] = ACTIONS(1065), - [anon_sym_def] = ACTIONS(1063), - [anon_sym_export_DASHenv] = ACTIONS(1063), - [anon_sym_extern] = ACTIONS(1063), - [anon_sym_module] = ACTIONS(1063), - [anon_sym_use] = ACTIONS(1063), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_RPAREN] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_error] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_DASH_DASH] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_break] = ACTIONS(1063), - [anon_sym_continue] = ACTIONS(1063), - [anon_sym_for] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1063), - [anon_sym_loop] = ACTIONS(1063), - [anon_sym_while] = ACTIONS(1063), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_if] = ACTIONS(1063), - [anon_sym_match] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_RBRACE] = ACTIONS(1063), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1063), - [anon_sym_return] = ACTIONS(1063), - [anon_sym_source] = ACTIONS(1063), - [anon_sym_source_DASHenv] = ACTIONS(1063), - [anon_sym_register] = ACTIONS(1063), - [anon_sym_hide] = ACTIONS(1063), - [anon_sym_hide_DASHenv] = ACTIONS(1063), - [anon_sym_overlay] = ACTIONS(1063), - [anon_sym_as] = ACTIONS(1063), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_where] = ACTIONS(1063), - [anon_sym_QMARK2] = ACTIONS(1063), - [anon_sym_STAR_STAR] = ACTIONS(1063), - [anon_sym_PLUS_PLUS] = ACTIONS(1063), - [anon_sym_SLASH] = ACTIONS(1063), - [anon_sym_mod] = ACTIONS(1063), - [anon_sym_SLASH_SLASH] = ACTIONS(1063), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_bit_DASHshl] = ACTIONS(1063), - [anon_sym_bit_DASHshr] = ACTIONS(1063), - [anon_sym_EQ_EQ] = ACTIONS(1063), - [anon_sym_BANG_EQ] = ACTIONS(1063), - [anon_sym_LT2] = ACTIONS(1063), - [anon_sym_LT_EQ] = ACTIONS(1063), - [anon_sym_GT_EQ] = ACTIONS(1063), - [anon_sym_not_DASHin] = ACTIONS(1063), - [anon_sym_starts_DASHwith] = ACTIONS(1063), - [anon_sym_ends_DASHwith] = ACTIONS(1063), - [anon_sym_EQ_TILDE] = ACTIONS(1063), - [anon_sym_BANG_TILDE] = ACTIONS(1063), - [anon_sym_bit_DASHand] = ACTIONS(1063), - [anon_sym_bit_DASHxor] = ACTIONS(1063), - [anon_sym_bit_DASHor] = ACTIONS(1063), - [anon_sym_and] = ACTIONS(1063), - [anon_sym_xor] = ACTIONS(1063), - [anon_sym_or] = ACTIONS(1063), - [anon_sym_not] = ACTIONS(1063), - [anon_sym_DOT_DOT2] = ACTIONS(1063), - [anon_sym_DOT] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1063), - [anon_sym_DOT_DOT_LT] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1065), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1065), - [anon_sym_null] = ACTIONS(1063), - [anon_sym_true] = ACTIONS(1063), - [anon_sym_false] = ACTIONS(1063), - [aux_sym__val_number_decimal_token1] = ACTIONS(1063), - [aux_sym__val_number_decimal_token2] = ACTIONS(1063), - [anon_sym_DOT2] = ACTIONS(1063), - [aux_sym__val_number_decimal_token3] = ACTIONS(1063), - [aux_sym__val_number_token1] = ACTIONS(1063), - [aux_sym__val_number_token2] = ACTIONS(1063), - [aux_sym__val_number_token3] = ACTIONS(1063), - [aux_sym__val_number_token4] = ACTIONS(1063), - [aux_sym__val_number_token5] = ACTIONS(1063), - [aux_sym__val_number_token6] = ACTIONS(1063), - [anon_sym_0b] = ACTIONS(1063), - [anon_sym_0o] = ACTIONS(1063), - [anon_sym_0x] = ACTIONS(1063), - [sym_val_date] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [sym__str_single_quotes] = ACTIONS(1063), - [sym__str_back_ticks] = ACTIONS(1063), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1063), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1063), - [anon_sym_CARET] = ACTIONS(1063), + [anon_sym_export] = ACTIONS(1072), + [anon_sym_alias] = ACTIONS(1072), + [anon_sym_let] = ACTIONS(1072), + [anon_sym_let_DASHenv] = ACTIONS(1072), + [anon_sym_mut] = ACTIONS(1072), + [anon_sym_const] = ACTIONS(1072), + [anon_sym_SEMI] = ACTIONS(1072), + [sym_cmd_identifier] = ACTIONS(1072), + [anon_sym_LF] = ACTIONS(1074), + [anon_sym_def] = ACTIONS(1072), + [anon_sym_export_DASHenv] = ACTIONS(1072), + [anon_sym_extern] = ACTIONS(1072), + [anon_sym_module] = ACTIONS(1072), + [anon_sym_use] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1072), + [anon_sym_LPAREN] = ACTIONS(1072), + [anon_sym_RPAREN] = ACTIONS(1072), + [anon_sym_DOLLAR] = ACTIONS(1072), + [anon_sym_error] = ACTIONS(1072), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_DASH_DASH] = ACTIONS(1072), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_break] = ACTIONS(1072), + [anon_sym_continue] = ACTIONS(1072), + [anon_sym_for] = ACTIONS(1072), + [anon_sym_in] = ACTIONS(1076), + [anon_sym_loop] = ACTIONS(1072), + [anon_sym_while] = ACTIONS(1072), + [anon_sym_do] = ACTIONS(1072), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_match] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1072), + [anon_sym_DOT_DOT] = ACTIONS(1072), + [anon_sym_try] = ACTIONS(1072), + [anon_sym_return] = ACTIONS(1072), + [anon_sym_source] = ACTIONS(1072), + [anon_sym_source_DASHenv] = ACTIONS(1072), + [anon_sym_register] = ACTIONS(1072), + [anon_sym_hide] = ACTIONS(1072), + [anon_sym_hide_DASHenv] = ACTIONS(1072), + [anon_sym_overlay] = ACTIONS(1072), + [anon_sym_as] = ACTIONS(1072), + [anon_sym_STAR] = ACTIONS(1076), + [anon_sym_where] = ACTIONS(1072), + [anon_sym_STAR_STAR] = ACTIONS(1076), + [anon_sym_PLUS_PLUS] = ACTIONS(1076), + [anon_sym_SLASH] = ACTIONS(1076), + [anon_sym_mod] = ACTIONS(1076), + [anon_sym_SLASH_SLASH] = ACTIONS(1076), + [anon_sym_PLUS] = ACTIONS(1076), + [anon_sym_bit_DASHshl] = ACTIONS(1076), + [anon_sym_bit_DASHshr] = ACTIONS(1076), + [anon_sym_EQ_EQ] = ACTIONS(1076), + [anon_sym_BANG_EQ] = ACTIONS(1076), + [anon_sym_LT2] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1076), + [anon_sym_GT_EQ] = ACTIONS(1076), + [anon_sym_not_DASHin] = ACTIONS(1076), + [anon_sym_starts_DASHwith] = ACTIONS(1076), + [anon_sym_ends_DASHwith] = ACTIONS(1076), + [anon_sym_EQ_TILDE] = ACTIONS(1076), + [anon_sym_BANG_TILDE] = ACTIONS(1076), + [anon_sym_bit_DASHand] = ACTIONS(1076), + [anon_sym_bit_DASHxor] = ACTIONS(1076), + [anon_sym_bit_DASHor] = ACTIONS(1076), + [anon_sym_and] = ACTIONS(1076), + [anon_sym_xor] = ACTIONS(1076), + [anon_sym_or] = ACTIONS(1076), + [anon_sym_not] = ACTIONS(1072), + [anon_sym_DOT_DOT2] = ACTIONS(1081), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1072), + [anon_sym_DOT_DOT_LT] = ACTIONS(1072), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1083), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1083), + [anon_sym_null] = ACTIONS(1072), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [aux_sym__val_number_decimal_token1] = ACTIONS(1072), + [aux_sym__val_number_decimal_token2] = ACTIONS(1072), + [anon_sym_DOT2] = ACTIONS(1072), + [aux_sym__val_number_decimal_token3] = ACTIONS(1072), + [aux_sym__val_number_token1] = ACTIONS(1072), + [aux_sym__val_number_token2] = ACTIONS(1072), + [aux_sym__val_number_token3] = ACTIONS(1072), + [aux_sym__val_number_token4] = ACTIONS(1072), + [aux_sym__val_number_token5] = ACTIONS(1072), + [aux_sym__val_number_token6] = ACTIONS(1072), + [anon_sym_0b] = ACTIONS(1072), + [anon_sym_0o] = ACTIONS(1072), + [anon_sym_0x] = ACTIONS(1072), + [sym_val_date] = ACTIONS(1072), + [anon_sym_DQUOTE] = ACTIONS(1072), + [sym__str_single_quotes] = ACTIONS(1072), + [sym__str_back_ticks] = ACTIONS(1072), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1072), + [anon_sym_CARET] = ACTIONS(1072), [anon_sym_POUND] = ACTIONS(113), }, [290] = { - [sym_cell_path] = STATE(370), - [sym_path] = STATE(283), + [sym_cell_path] = STATE(386), + [sym_path] = STATE(295), [sym_comment] = STATE(290), - [ts_builtin_sym_end] = ACTIONS(1012), + [anon_sym_export] = ACTIONS(1085), + [anon_sym_alias] = ACTIONS(1085), + [anon_sym_let] = ACTIONS(1085), + [anon_sym_let_DASHenv] = ACTIONS(1085), + [anon_sym_mut] = ACTIONS(1085), + [anon_sym_const] = ACTIONS(1085), + [anon_sym_SEMI] = ACTIONS(1085), + [sym_cmd_identifier] = ACTIONS(1085), + [anon_sym_LF] = ACTIONS(1087), + [anon_sym_def] = ACTIONS(1085), + [anon_sym_export_DASHenv] = ACTIONS(1085), + [anon_sym_extern] = ACTIONS(1085), + [anon_sym_module] = ACTIONS(1085), + [anon_sym_use] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LPAREN] = ACTIONS(1085), + [anon_sym_RPAREN] = ACTIONS(1085), + [anon_sym_DOLLAR] = ACTIONS(1085), + [anon_sym_error] = ACTIONS(1085), + [anon_sym_GT] = ACTIONS(1085), + [anon_sym_DASH_DASH] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_break] = ACTIONS(1085), + [anon_sym_continue] = ACTIONS(1085), + [anon_sym_for] = ACTIONS(1085), + [anon_sym_in] = ACTIONS(1085), + [anon_sym_loop] = ACTIONS(1085), + [anon_sym_while] = ACTIONS(1085), + [anon_sym_do] = ACTIONS(1085), + [anon_sym_if] = ACTIONS(1085), + [anon_sym_match] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_RBRACE] = ACTIONS(1085), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_return] = ACTIONS(1085), + [anon_sym_source] = ACTIONS(1085), + [anon_sym_source_DASHenv] = ACTIONS(1085), + [anon_sym_register] = ACTIONS(1085), + [anon_sym_hide] = ACTIONS(1085), + [anon_sym_hide_DASHenv] = ACTIONS(1085), + [anon_sym_overlay] = ACTIONS(1085), + [anon_sym_as] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(1085), + [anon_sym_where] = ACTIONS(1085), + [anon_sym_STAR_STAR] = ACTIONS(1085), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_SLASH] = ACTIONS(1085), + [anon_sym_mod] = ACTIONS(1085), + [anon_sym_SLASH_SLASH] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_bit_DASHshl] = ACTIONS(1085), + [anon_sym_bit_DASHshr] = ACTIONS(1085), + [anon_sym_EQ_EQ] = ACTIONS(1085), + [anon_sym_BANG_EQ] = ACTIONS(1085), + [anon_sym_LT2] = ACTIONS(1085), + [anon_sym_LT_EQ] = ACTIONS(1085), + [anon_sym_GT_EQ] = ACTIONS(1085), + [anon_sym_not_DASHin] = ACTIONS(1085), + [anon_sym_starts_DASHwith] = ACTIONS(1085), + [anon_sym_ends_DASHwith] = ACTIONS(1085), + [anon_sym_EQ_TILDE] = ACTIONS(1085), + [anon_sym_BANG_TILDE] = ACTIONS(1085), + [anon_sym_bit_DASHand] = ACTIONS(1085), + [anon_sym_bit_DASHxor] = ACTIONS(1085), + [anon_sym_bit_DASHor] = ACTIONS(1085), + [anon_sym_and] = ACTIONS(1085), + [anon_sym_xor] = ACTIONS(1085), + [anon_sym_or] = ACTIONS(1085), + [anon_sym_not] = ACTIONS(1085), + [anon_sym_DOT] = ACTIONS(1055), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1085), + [anon_sym_DOT_DOT_LT] = ACTIONS(1085), + [anon_sym_null] = ACTIONS(1085), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [aux_sym__val_number_decimal_token1] = ACTIONS(1085), + [aux_sym__val_number_decimal_token2] = ACTIONS(1085), + [anon_sym_DOT2] = ACTIONS(1085), + [aux_sym__val_number_decimal_token3] = ACTIONS(1085), + [aux_sym__val_number_token1] = ACTIONS(1085), + [aux_sym__val_number_token2] = ACTIONS(1085), + [aux_sym__val_number_token3] = ACTIONS(1085), + [aux_sym__val_number_token4] = ACTIONS(1085), + [aux_sym__val_number_token5] = ACTIONS(1085), + [aux_sym__val_number_token6] = ACTIONS(1085), + [anon_sym_0b] = ACTIONS(1085), + [anon_sym_0o] = ACTIONS(1085), + [anon_sym_0x] = ACTIONS(1085), + [sym_val_date] = ACTIONS(1085), + [anon_sym_DQUOTE] = ACTIONS(1085), + [sym__str_single_quotes] = ACTIONS(1085), + [sym__str_back_ticks] = ACTIONS(1085), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1085), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_POUND] = ACTIONS(113), + }, + [291] = { + [sym_comment] = STATE(291), + [anon_sym_export] = ACTIONS(1089), + [anon_sym_alias] = ACTIONS(1089), + [anon_sym_let] = ACTIONS(1089), + [anon_sym_let_DASHenv] = ACTIONS(1089), + [anon_sym_mut] = ACTIONS(1089), + [anon_sym_const] = ACTIONS(1089), + [anon_sym_SEMI] = ACTIONS(1089), + [sym_cmd_identifier] = ACTIONS(1089), + [anon_sym_LF] = ACTIONS(1091), + [anon_sym_def] = ACTIONS(1089), + [anon_sym_export_DASHenv] = ACTIONS(1089), + [anon_sym_extern] = ACTIONS(1089), + [anon_sym_module] = ACTIONS(1089), + [anon_sym_use] = ACTIONS(1089), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1089), + [anon_sym_RPAREN] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1089), + [anon_sym_error] = ACTIONS(1089), + [anon_sym_GT] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_DASH] = ACTIONS(1089), + [anon_sym_break] = ACTIONS(1089), + [anon_sym_continue] = ACTIONS(1089), + [anon_sym_for] = ACTIONS(1089), + [anon_sym_in] = ACTIONS(1089), + [anon_sym_loop] = ACTIONS(1089), + [anon_sym_while] = ACTIONS(1089), + [anon_sym_do] = ACTIONS(1089), + [anon_sym_if] = ACTIONS(1089), + [anon_sym_match] = ACTIONS(1089), + [anon_sym_LBRACE] = ACTIONS(1089), + [anon_sym_RBRACE] = ACTIONS(1089), + [anon_sym_DOT_DOT] = ACTIONS(1089), + [anon_sym_try] = ACTIONS(1089), + [anon_sym_return] = ACTIONS(1089), + [anon_sym_source] = ACTIONS(1089), + [anon_sym_source_DASHenv] = ACTIONS(1089), + [anon_sym_register] = ACTIONS(1089), + [anon_sym_hide] = ACTIONS(1089), + [anon_sym_hide_DASHenv] = ACTIONS(1089), + [anon_sym_overlay] = ACTIONS(1089), + [anon_sym_as] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_where] = ACTIONS(1089), + [anon_sym_STAR_STAR] = ACTIONS(1089), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_SLASH] = ACTIONS(1089), + [anon_sym_mod] = ACTIONS(1089), + [anon_sym_SLASH_SLASH] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1089), + [anon_sym_bit_DASHshl] = ACTIONS(1089), + [anon_sym_bit_DASHshr] = ACTIONS(1089), + [anon_sym_EQ_EQ] = ACTIONS(1089), + [anon_sym_BANG_EQ] = ACTIONS(1089), + [anon_sym_LT2] = ACTIONS(1089), + [anon_sym_LT_EQ] = ACTIONS(1089), + [anon_sym_GT_EQ] = ACTIONS(1089), + [anon_sym_not_DASHin] = ACTIONS(1089), + [anon_sym_starts_DASHwith] = ACTIONS(1089), + [anon_sym_ends_DASHwith] = ACTIONS(1089), + [anon_sym_EQ_TILDE] = ACTIONS(1089), + [anon_sym_BANG_TILDE] = ACTIONS(1089), + [anon_sym_bit_DASHand] = ACTIONS(1089), + [anon_sym_bit_DASHxor] = ACTIONS(1089), + [anon_sym_bit_DASHor] = ACTIONS(1089), + [anon_sym_and] = ACTIONS(1089), + [anon_sym_xor] = ACTIONS(1089), + [anon_sym_or] = ACTIONS(1089), + [anon_sym_not] = ACTIONS(1089), + [anon_sym_DOT_DOT2] = ACTIONS(1081), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_DOT_DOT_LT] = ACTIONS(1089), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1083), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1083), + [anon_sym_null] = ACTIONS(1089), + [anon_sym_true] = ACTIONS(1089), + [anon_sym_false] = ACTIONS(1089), + [aux_sym__val_number_decimal_token1] = ACTIONS(1089), + [aux_sym__val_number_decimal_token2] = ACTIONS(1089), + [anon_sym_DOT2] = ACTIONS(1089), + [aux_sym__val_number_decimal_token3] = ACTIONS(1089), + [aux_sym__val_number_token1] = ACTIONS(1089), + [aux_sym__val_number_token2] = ACTIONS(1089), + [aux_sym__val_number_token3] = ACTIONS(1089), + [aux_sym__val_number_token4] = ACTIONS(1089), + [aux_sym__val_number_token5] = ACTIONS(1089), + [aux_sym__val_number_token6] = ACTIONS(1089), + [anon_sym_0b] = ACTIONS(1089), + [anon_sym_0o] = ACTIONS(1089), + [anon_sym_0x] = ACTIONS(1089), + [sym_val_date] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1089), + [sym__str_single_quotes] = ACTIONS(1089), + [sym__str_back_ticks] = ACTIONS(1089), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1089), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1089), + [anon_sym_CARET] = ACTIONS(1089), + [anon_sym_POUND] = ACTIONS(113), + }, + [292] = { + [sym_cell_path] = STATE(389), + [sym_path] = STATE(295), + [sym_comment] = STATE(292), + [anon_sym_export] = ACTIONS(1093), + [anon_sym_alias] = ACTIONS(1093), + [anon_sym_let] = ACTIONS(1093), + [anon_sym_let_DASHenv] = ACTIONS(1093), + [anon_sym_mut] = ACTIONS(1093), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_SEMI] = ACTIONS(1093), + [sym_cmd_identifier] = ACTIONS(1093), + [anon_sym_LF] = ACTIONS(1095), + [anon_sym_def] = ACTIONS(1093), + [anon_sym_export_DASHenv] = ACTIONS(1093), + [anon_sym_extern] = ACTIONS(1093), + [anon_sym_module] = ACTIONS(1093), + [anon_sym_use] = ACTIONS(1093), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_LPAREN] = ACTIONS(1093), + [anon_sym_RPAREN] = ACTIONS(1093), + [anon_sym_DOLLAR] = ACTIONS(1093), + [anon_sym_error] = ACTIONS(1093), + [anon_sym_GT] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_break] = ACTIONS(1093), + [anon_sym_continue] = ACTIONS(1093), + [anon_sym_for] = ACTIONS(1093), + [anon_sym_in] = ACTIONS(1093), + [anon_sym_loop] = ACTIONS(1093), + [anon_sym_while] = ACTIONS(1093), + [anon_sym_do] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1093), + [anon_sym_match] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1093), + [anon_sym_RBRACE] = ACTIONS(1093), + [anon_sym_DOT_DOT] = ACTIONS(1093), + [anon_sym_try] = ACTIONS(1093), + [anon_sym_return] = ACTIONS(1093), + [anon_sym_source] = ACTIONS(1093), + [anon_sym_source_DASHenv] = ACTIONS(1093), + [anon_sym_register] = ACTIONS(1093), + [anon_sym_hide] = ACTIONS(1093), + [anon_sym_hide_DASHenv] = ACTIONS(1093), + [anon_sym_overlay] = ACTIONS(1093), + [anon_sym_as] = ACTIONS(1093), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_where] = ACTIONS(1093), + [anon_sym_STAR_STAR] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1093), + [anon_sym_SLASH] = ACTIONS(1093), + [anon_sym_mod] = ACTIONS(1093), + [anon_sym_SLASH_SLASH] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_bit_DASHshl] = ACTIONS(1093), + [anon_sym_bit_DASHshr] = ACTIONS(1093), + [anon_sym_EQ_EQ] = ACTIONS(1093), + [anon_sym_BANG_EQ] = ACTIONS(1093), + [anon_sym_LT2] = ACTIONS(1093), + [anon_sym_LT_EQ] = ACTIONS(1093), + [anon_sym_GT_EQ] = ACTIONS(1093), + [anon_sym_not_DASHin] = ACTIONS(1093), + [anon_sym_starts_DASHwith] = ACTIONS(1093), + [anon_sym_ends_DASHwith] = ACTIONS(1093), + [anon_sym_EQ_TILDE] = ACTIONS(1093), + [anon_sym_BANG_TILDE] = ACTIONS(1093), + [anon_sym_bit_DASHand] = ACTIONS(1093), + [anon_sym_bit_DASHxor] = ACTIONS(1093), + [anon_sym_bit_DASHor] = ACTIONS(1093), + [anon_sym_and] = ACTIONS(1093), + [anon_sym_xor] = ACTIONS(1093), + [anon_sym_or] = ACTIONS(1093), + [anon_sym_not] = ACTIONS(1093), + [anon_sym_DOT] = ACTIONS(1055), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1093), + [anon_sym_DOT_DOT_LT] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1093), + [anon_sym_true] = ACTIONS(1093), + [anon_sym_false] = ACTIONS(1093), + [aux_sym__val_number_decimal_token1] = ACTIONS(1093), + [aux_sym__val_number_decimal_token2] = ACTIONS(1093), + [anon_sym_DOT2] = ACTIONS(1093), + [aux_sym__val_number_decimal_token3] = ACTIONS(1093), + [aux_sym__val_number_token1] = ACTIONS(1093), + [aux_sym__val_number_token2] = ACTIONS(1093), + [aux_sym__val_number_token3] = ACTIONS(1093), + [aux_sym__val_number_token4] = ACTIONS(1093), + [aux_sym__val_number_token5] = ACTIONS(1093), + [aux_sym__val_number_token6] = ACTIONS(1093), + [anon_sym_0b] = ACTIONS(1093), + [anon_sym_0o] = ACTIONS(1093), + [anon_sym_0x] = ACTIONS(1093), + [sym_val_date] = ACTIONS(1093), + [anon_sym_DQUOTE] = ACTIONS(1093), + [sym__str_single_quotes] = ACTIONS(1093), + [sym__str_back_ticks] = ACTIONS(1093), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1093), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1093), + [anon_sym_CARET] = ACTIONS(1093), + [anon_sym_POUND] = ACTIONS(113), + }, + [293] = { + [sym_cell_path] = STATE(392), + [sym_path] = STATE(295), + [sym_comment] = STATE(293), + [anon_sym_export] = ACTIONS(1097), + [anon_sym_alias] = ACTIONS(1097), + [anon_sym_let] = ACTIONS(1097), + [anon_sym_let_DASHenv] = ACTIONS(1097), + [anon_sym_mut] = ACTIONS(1097), + [anon_sym_const] = ACTIONS(1097), + [anon_sym_SEMI] = ACTIONS(1097), + [sym_cmd_identifier] = ACTIONS(1097), + [anon_sym_LF] = ACTIONS(1099), + [anon_sym_def] = ACTIONS(1097), + [anon_sym_export_DASHenv] = ACTIONS(1097), + [anon_sym_extern] = ACTIONS(1097), + [anon_sym_module] = ACTIONS(1097), + [anon_sym_use] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1097), + [anon_sym_LPAREN] = ACTIONS(1097), + [anon_sym_RPAREN] = ACTIONS(1097), + [anon_sym_DOLLAR] = ACTIONS(1097), + [anon_sym_error] = ACTIONS(1097), + [anon_sym_GT] = ACTIONS(1097), + [anon_sym_DASH_DASH] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_break] = ACTIONS(1097), + [anon_sym_continue] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1097), + [anon_sym_loop] = ACTIONS(1097), + [anon_sym_while] = ACTIONS(1097), + [anon_sym_do] = ACTIONS(1097), + [anon_sym_if] = ACTIONS(1097), + [anon_sym_match] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_RBRACE] = ACTIONS(1097), + [anon_sym_DOT_DOT] = ACTIONS(1097), + [anon_sym_try] = ACTIONS(1097), + [anon_sym_return] = ACTIONS(1097), + [anon_sym_source] = ACTIONS(1097), + [anon_sym_source_DASHenv] = ACTIONS(1097), + [anon_sym_register] = ACTIONS(1097), + [anon_sym_hide] = ACTIONS(1097), + [anon_sym_hide_DASHenv] = ACTIONS(1097), + [anon_sym_overlay] = ACTIONS(1097), + [anon_sym_as] = ACTIONS(1097), + [anon_sym_STAR] = ACTIONS(1097), + [anon_sym_where] = ACTIONS(1097), + [anon_sym_STAR_STAR] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1097), + [anon_sym_SLASH] = ACTIONS(1097), + [anon_sym_mod] = ACTIONS(1097), + [anon_sym_SLASH_SLASH] = ACTIONS(1097), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_bit_DASHshl] = ACTIONS(1097), + [anon_sym_bit_DASHshr] = ACTIONS(1097), + [anon_sym_EQ_EQ] = ACTIONS(1097), + [anon_sym_BANG_EQ] = ACTIONS(1097), + [anon_sym_LT2] = ACTIONS(1097), + [anon_sym_LT_EQ] = ACTIONS(1097), + [anon_sym_GT_EQ] = ACTIONS(1097), + [anon_sym_not_DASHin] = ACTIONS(1097), + [anon_sym_starts_DASHwith] = ACTIONS(1097), + [anon_sym_ends_DASHwith] = ACTIONS(1097), + [anon_sym_EQ_TILDE] = ACTIONS(1097), + [anon_sym_BANG_TILDE] = ACTIONS(1097), + [anon_sym_bit_DASHand] = ACTIONS(1097), + [anon_sym_bit_DASHxor] = ACTIONS(1097), + [anon_sym_bit_DASHor] = ACTIONS(1097), + [anon_sym_and] = ACTIONS(1097), + [anon_sym_xor] = ACTIONS(1097), + [anon_sym_or] = ACTIONS(1097), + [anon_sym_not] = ACTIONS(1097), + [anon_sym_DOT] = ACTIONS(1055), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1097), + [anon_sym_DOT_DOT_LT] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1097), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), + [aux_sym__val_number_decimal_token1] = ACTIONS(1097), + [aux_sym__val_number_decimal_token2] = ACTIONS(1097), + [anon_sym_DOT2] = ACTIONS(1097), + [aux_sym__val_number_decimal_token3] = ACTIONS(1097), + [aux_sym__val_number_token1] = ACTIONS(1097), + [aux_sym__val_number_token2] = ACTIONS(1097), + [aux_sym__val_number_token3] = ACTIONS(1097), + [aux_sym__val_number_token4] = ACTIONS(1097), + [aux_sym__val_number_token5] = ACTIONS(1097), + [aux_sym__val_number_token6] = ACTIONS(1097), + [anon_sym_0b] = ACTIONS(1097), + [anon_sym_0o] = ACTIONS(1097), + [anon_sym_0x] = ACTIONS(1097), + [sym_val_date] = ACTIONS(1097), + [anon_sym_DQUOTE] = ACTIONS(1097), + [sym__str_single_quotes] = ACTIONS(1097), + [sym__str_back_ticks] = ACTIONS(1097), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1097), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1097), + [anon_sym_CARET] = ACTIONS(1097), + [anon_sym_POUND] = ACTIONS(113), + }, + [294] = { + [sym_cell_path] = STATE(393), + [sym_path] = STATE(295), + [sym_comment] = STATE(294), + [anon_sym_export] = ACTIONS(1101), + [anon_sym_alias] = ACTIONS(1101), + [anon_sym_let] = ACTIONS(1101), + [anon_sym_let_DASHenv] = ACTIONS(1101), + [anon_sym_mut] = ACTIONS(1101), + [anon_sym_const] = ACTIONS(1101), + [anon_sym_SEMI] = ACTIONS(1101), + [sym_cmd_identifier] = ACTIONS(1101), + [anon_sym_LF] = ACTIONS(1103), + [anon_sym_def] = ACTIONS(1101), + [anon_sym_export_DASHenv] = ACTIONS(1101), + [anon_sym_extern] = ACTIONS(1101), + [anon_sym_module] = ACTIONS(1101), + [anon_sym_use] = ACTIONS(1101), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_RPAREN] = ACTIONS(1101), + [anon_sym_DOLLAR] = ACTIONS(1101), + [anon_sym_error] = ACTIONS(1101), + [anon_sym_GT] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_break] = ACTIONS(1101), + [anon_sym_continue] = ACTIONS(1101), + [anon_sym_for] = ACTIONS(1101), + [anon_sym_in] = ACTIONS(1101), + [anon_sym_loop] = ACTIONS(1101), + [anon_sym_while] = ACTIONS(1101), + [anon_sym_do] = ACTIONS(1101), + [anon_sym_if] = ACTIONS(1101), + [anon_sym_match] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_RBRACE] = ACTIONS(1101), + [anon_sym_DOT_DOT] = ACTIONS(1101), + [anon_sym_try] = ACTIONS(1101), + [anon_sym_return] = ACTIONS(1101), + [anon_sym_source] = ACTIONS(1101), + [anon_sym_source_DASHenv] = ACTIONS(1101), + [anon_sym_register] = ACTIONS(1101), + [anon_sym_hide] = ACTIONS(1101), + [anon_sym_hide_DASHenv] = ACTIONS(1101), + [anon_sym_overlay] = ACTIONS(1101), + [anon_sym_as] = ACTIONS(1101), + [anon_sym_STAR] = ACTIONS(1101), + [anon_sym_where] = ACTIONS(1101), + [anon_sym_STAR_STAR] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_SLASH] = ACTIONS(1101), + [anon_sym_mod] = ACTIONS(1101), + [anon_sym_SLASH_SLASH] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_bit_DASHshl] = ACTIONS(1101), + [anon_sym_bit_DASHshr] = ACTIONS(1101), + [anon_sym_EQ_EQ] = ACTIONS(1101), + [anon_sym_BANG_EQ] = ACTIONS(1101), + [anon_sym_LT2] = ACTIONS(1101), + [anon_sym_LT_EQ] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1101), + [anon_sym_not_DASHin] = ACTIONS(1101), + [anon_sym_starts_DASHwith] = ACTIONS(1101), + [anon_sym_ends_DASHwith] = ACTIONS(1101), + [anon_sym_EQ_TILDE] = ACTIONS(1101), + [anon_sym_BANG_TILDE] = ACTIONS(1101), + [anon_sym_bit_DASHand] = ACTIONS(1101), + [anon_sym_bit_DASHxor] = ACTIONS(1101), + [anon_sym_bit_DASHor] = ACTIONS(1101), + [anon_sym_and] = ACTIONS(1101), + [anon_sym_xor] = ACTIONS(1101), + [anon_sym_or] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_DOT] = ACTIONS(1055), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1101), + [anon_sym_DOT_DOT_LT] = ACTIONS(1101), + [anon_sym_null] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(1101), + [anon_sym_false] = ACTIONS(1101), + [aux_sym__val_number_decimal_token1] = ACTIONS(1101), + [aux_sym__val_number_decimal_token2] = ACTIONS(1101), + [anon_sym_DOT2] = ACTIONS(1101), + [aux_sym__val_number_decimal_token3] = ACTIONS(1101), + [aux_sym__val_number_token1] = ACTIONS(1101), + [aux_sym__val_number_token2] = ACTIONS(1101), + [aux_sym__val_number_token3] = ACTIONS(1101), + [aux_sym__val_number_token4] = ACTIONS(1101), + [aux_sym__val_number_token5] = ACTIONS(1101), + [aux_sym__val_number_token6] = ACTIONS(1101), + [anon_sym_0b] = ACTIONS(1101), + [anon_sym_0o] = ACTIONS(1101), + [anon_sym_0x] = ACTIONS(1101), + [sym_val_date] = ACTIONS(1101), + [anon_sym_DQUOTE] = ACTIONS(1101), + [sym__str_single_quotes] = ACTIONS(1101), + [sym__str_back_ticks] = ACTIONS(1101), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1101), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_POUND] = ACTIONS(113), + }, + [295] = { + [sym_path] = STATE(327), + [sym_comment] = STATE(295), + [aux_sym_cell_path_repeat1] = STATE(286), [anon_sym_export] = ACTIONS(1010), [anon_sym_alias] = ACTIONS(1010), [anon_sym_let] = ACTIONS(1010), @@ -128537,6 +126276,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(1010), [anon_sym_LBRACK] = ACTIONS(1010), [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1010), [anon_sym_DOLLAR] = ACTIONS(1010), [anon_sym_error] = ACTIONS(1010), [anon_sym_GT] = ACTIONS(1010), @@ -128552,6 +126292,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1010), [anon_sym_match] = ACTIONS(1010), [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), [anon_sym_DOT_DOT] = ACTIONS(1010), [anon_sym_try] = ACTIONS(1010), [anon_sym_return] = ACTIONS(1010), @@ -128589,12 +126330,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(1010), [anon_sym_or] = ACTIONS(1010), [anon_sym_not] = ACTIONS(1010), - [anon_sym_DOT_DOT2] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(1049), + [anon_sym_DOT] = ACTIONS(1055), [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), [anon_sym_DOT_DOT_LT] = ACTIONS(1010), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), [anon_sym_null] = ACTIONS(1010), [anon_sym_true] = ACTIONS(1010), [anon_sym_false] = ACTIONS(1010), @@ -128620,17 +126358,224 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(113), }, - [291] = { - [sym_path] = STATE(329), - [sym_comment] = STATE(291), - [aux_sym_cell_path_repeat1] = STATE(292), - [ts_builtin_sym_end] = ACTIONS(1008), + [296] = { + [sym_cell_path] = STATE(471), + [sym_path] = STATE(316), + [sym_comment] = STATE(296), + [ts_builtin_sym_end] = ACTIONS(994), + [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), + [anon_sym_SEMI] = ACTIONS(992), + [sym_cmd_identifier] = ACTIONS(992), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(992), + [anon_sym_DOLLAR] = ACTIONS(992), + [anon_sym_error] = ACTIONS(992), + [anon_sym_GT] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_break] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_in] = ACTIONS(992), + [anon_sym_loop] = ACTIONS(992), + [anon_sym_while] = ACTIONS(992), + [anon_sym_do] = ACTIONS(992), + [anon_sym_if] = ACTIONS(992), + [anon_sym_match] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(992), + [anon_sym_DOT_DOT] = ACTIONS(992), + [anon_sym_try] = 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_STAR] = ACTIONS(992), + [anon_sym_where] = ACTIONS(992), + [anon_sym_STAR_STAR] = ACTIONS(992), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_SLASH] = ACTIONS(992), + [anon_sym_mod] = ACTIONS(992), + [anon_sym_SLASH_SLASH] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_bit_DASHshl] = ACTIONS(992), + [anon_sym_bit_DASHshr] = ACTIONS(992), + [anon_sym_EQ_EQ] = ACTIONS(992), + [anon_sym_BANG_EQ] = ACTIONS(992), + [anon_sym_LT2] = ACTIONS(992), + [anon_sym_LT_EQ] = ACTIONS(992), + [anon_sym_GT_EQ] = ACTIONS(992), + [anon_sym_not_DASHin] = ACTIONS(992), + [anon_sym_starts_DASHwith] = ACTIONS(992), + [anon_sym_ends_DASHwith] = ACTIONS(992), + [anon_sym_EQ_TILDE] = ACTIONS(992), + [anon_sym_BANG_TILDE] = ACTIONS(992), + [anon_sym_bit_DASHand] = ACTIONS(992), + [anon_sym_bit_DASHxor] = ACTIONS(992), + [anon_sym_bit_DASHor] = ACTIONS(992), + [anon_sym_and] = ACTIONS(992), + [anon_sym_xor] = ACTIONS(992), + [anon_sym_or] = ACTIONS(992), + [anon_sym_not] = ACTIONS(992), + [anon_sym_DOT] = ACTIONS(1105), + [anon_sym_DOT_DOT_EQ] = ACTIONS(992), + [anon_sym_DOT_DOT_LT] = ACTIONS(992), + [anon_sym_null] = ACTIONS(992), + [anon_sym_true] = ACTIONS(992), + [anon_sym_false] = ACTIONS(992), + [aux_sym__val_number_decimal_token1] = ACTIONS(992), + [aux_sym__val_number_decimal_token2] = ACTIONS(992), + [anon_sym_DOT2] = ACTIONS(992), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(992), + [anon_sym_0o] = ACTIONS(992), + [anon_sym_0x] = ACTIONS(992), + [sym_val_date] = ACTIONS(992), + [anon_sym_DQUOTE] = ACTIONS(992), + [sym__str_single_quotes] = ACTIONS(992), + [sym__str_back_ticks] = ACTIONS(992), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(992), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(992), + [anon_sym_CARET] = ACTIONS(992), + [anon_sym_POUND] = ACTIONS(113), + }, + [297] = { + [sym_path] = STATE(396), + [sym_comment] = STATE(297), + [aux_sym_cell_path_repeat1] = STATE(297), + [ts_builtin_sym_end] = ACTIONS(987), + [anon_sym_export] = ACTIONS(985), + [anon_sym_alias] = ACTIONS(985), + [anon_sym_let] = ACTIONS(985), + [anon_sym_let_DASHenv] = ACTIONS(985), + [anon_sym_mut] = ACTIONS(985), + [anon_sym_const] = ACTIONS(985), + [anon_sym_SEMI] = ACTIONS(985), + [sym_cmd_identifier] = ACTIONS(985), + [anon_sym_LF] = ACTIONS(987), + [anon_sym_def] = ACTIONS(985), + [anon_sym_export_DASHenv] = ACTIONS(985), + [anon_sym_extern] = ACTIONS(985), + [anon_sym_module] = ACTIONS(985), + [anon_sym_use] = ACTIONS(985), + [anon_sym_LBRACK] = ACTIONS(985), + [anon_sym_LPAREN] = ACTIONS(985), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_error] = ACTIONS(985), + [anon_sym_GT] = ACTIONS(985), + [anon_sym_DASH_DASH] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_break] = ACTIONS(985), + [anon_sym_continue] = ACTIONS(985), + [anon_sym_for] = ACTIONS(985), + [anon_sym_in] = ACTIONS(985), + [anon_sym_loop] = ACTIONS(985), + [anon_sym_while] = ACTIONS(985), + [anon_sym_do] = ACTIONS(985), + [anon_sym_if] = ACTIONS(985), + [anon_sym_match] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(985), + [anon_sym_DOT_DOT] = ACTIONS(985), + [anon_sym_try] = ACTIONS(985), + [anon_sym_return] = ACTIONS(985), + [anon_sym_source] = ACTIONS(985), + [anon_sym_source_DASHenv] = ACTIONS(985), + [anon_sym_register] = ACTIONS(985), + [anon_sym_hide] = ACTIONS(985), + [anon_sym_hide_DASHenv] = ACTIONS(985), + [anon_sym_overlay] = ACTIONS(985), + [anon_sym_as] = ACTIONS(985), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_where] = ACTIONS(985), + [anon_sym_STAR_STAR] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(985), + [anon_sym_SLASH] = ACTIONS(985), + [anon_sym_mod] = ACTIONS(985), + [anon_sym_SLASH_SLASH] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_bit_DASHshl] = ACTIONS(985), + [anon_sym_bit_DASHshr] = ACTIONS(985), + [anon_sym_EQ_EQ] = ACTIONS(985), + [anon_sym_BANG_EQ] = ACTIONS(985), + [anon_sym_LT2] = ACTIONS(985), + [anon_sym_LT_EQ] = ACTIONS(985), + [anon_sym_GT_EQ] = ACTIONS(985), + [anon_sym_not_DASHin] = ACTIONS(985), + [anon_sym_starts_DASHwith] = ACTIONS(985), + [anon_sym_ends_DASHwith] = ACTIONS(985), + [anon_sym_EQ_TILDE] = ACTIONS(985), + [anon_sym_BANG_TILDE] = ACTIONS(985), + [anon_sym_bit_DASHand] = ACTIONS(985), + [anon_sym_bit_DASHxor] = ACTIONS(985), + [anon_sym_bit_DASHor] = ACTIONS(985), + [anon_sym_and] = ACTIONS(985), + [anon_sym_xor] = ACTIONS(985), + [anon_sym_or] = ACTIONS(985), + [anon_sym_not] = ACTIONS(985), + [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DOT_DOT_EQ] = ACTIONS(985), + [anon_sym_DOT_DOT_LT] = ACTIONS(985), + [anon_sym_null] = ACTIONS(985), + [anon_sym_true] = ACTIONS(985), + [anon_sym_false] = ACTIONS(985), + [aux_sym__val_number_decimal_token1] = ACTIONS(985), + [aux_sym__val_number_decimal_token2] = ACTIONS(985), + [anon_sym_DOT2] = ACTIONS(985), + [aux_sym__val_number_decimal_token3] = ACTIONS(985), + [aux_sym__val_number_token1] = ACTIONS(985), + [aux_sym__val_number_token2] = ACTIONS(985), + [aux_sym__val_number_token3] = ACTIONS(985), + [aux_sym__val_number_token4] = ACTIONS(985), + [aux_sym__val_number_token5] = ACTIONS(985), + [aux_sym__val_number_token6] = ACTIONS(985), + [anon_sym_0b] = ACTIONS(985), + [anon_sym_0o] = ACTIONS(985), + [anon_sym_0x] = ACTIONS(985), + [sym_val_date] = ACTIONS(985), + [anon_sym_DQUOTE] = ACTIONS(985), + [sym__str_single_quotes] = ACTIONS(985), + [sym__str_back_ticks] = ACTIONS(985), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(985), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(985), + [anon_sym_POUND] = ACTIONS(113), + }, + [298] = { + [sym_path] = STATE(408), + [sym_comment] = STATE(298), + [aux_sym_cell_path_repeat1] = STATE(313), [anon_sym_export] = ACTIONS(1006), [anon_sym_alias] = ACTIONS(1006), + [anon_sym_EQ] = ACTIONS(1006), [anon_sym_let] = ACTIONS(1006), [anon_sym_let_DASHenv] = ACTIONS(1006), [anon_sym_mut] = ACTIONS(1006), [anon_sym_const] = ACTIONS(1006), + [anon_sym_PLUS_EQ] = ACTIONS(1006), + [anon_sym_DASH_EQ] = ACTIONS(1006), + [anon_sym_STAR_EQ] = ACTIONS(1006), + [anon_sym_SLASH_EQ] = ACTIONS(1006), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1006), [anon_sym_SEMI] = ACTIONS(1006), [sym_cmd_identifier] = ACTIONS(1006), [anon_sym_LF] = ACTIONS(1008), @@ -128639,25 +126584,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(1006), [anon_sym_module] = ACTIONS(1006), [anon_sym_use] = ACTIONS(1006), - [anon_sym_LBRACK] = ACTIONS(1006), + [anon_sym_COLON] = ACTIONS(1006), + [anon_sym_COMMA] = ACTIONS(1006), [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1006), [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_error] = ACTIONS(1006), + [anon_sym_list] = ACTIONS(1006), [anon_sym_GT] = ACTIONS(1006), - [anon_sym_DASH_DASH] = ACTIONS(1006), [anon_sym_DASH] = ACTIONS(1006), [anon_sym_break] = ACTIONS(1006), [anon_sym_continue] = ACTIONS(1006), [anon_sym_for] = ACTIONS(1006), [anon_sym_in] = ACTIONS(1006), [anon_sym_loop] = ACTIONS(1006), + [anon_sym_make] = ACTIONS(1006), [anon_sym_while] = ACTIONS(1006), [anon_sym_do] = ACTIONS(1006), [anon_sym_if] = ACTIONS(1006), + [anon_sym_else] = ACTIONS(1006), [anon_sym_match] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(1006), [anon_sym_try] = ACTIONS(1006), + [anon_sym_catch] = ACTIONS(1006), [anon_sym_return] = ACTIONS(1006), [anon_sym_source] = ACTIONS(1006), [anon_sym_source_DASHenv] = ACTIONS(1006), @@ -128665,9 +126614,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(1006), [anon_sym_hide_DASHenv] = ACTIONS(1006), [anon_sym_overlay] = ACTIONS(1006), + [anon_sym_new] = ACTIONS(1006), [anon_sym_as] = ACTIONS(1006), [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_where] = ACTIONS(1006), [anon_sym_STAR_STAR] = ACTIONS(1006), [anon_sym_PLUS_PLUS] = ACTIONS(1006), [anon_sym_SLASH] = ACTIONS(1006), @@ -128692,16 +126641,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(1006), [anon_sym_xor] = ACTIONS(1006), [anon_sym_or] = ACTIONS(1006), - [anon_sym_not] = ACTIONS(1006), [anon_sym_DOT_DOT2] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1049), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT] = ACTIONS(1006), + [anon_sym_DOT] = ACTIONS(1110), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), - [anon_sym_null] = ACTIONS(1006), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), [aux_sym__val_number_decimal_token1] = ACTIONS(1006), [aux_sym__val_number_decimal_token2] = ACTIONS(1006), [anon_sym_DOT2] = ACTIONS(1006), @@ -128712,3227 +126655,1734 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token4] = ACTIONS(1006), [aux_sym__val_number_token5] = ACTIONS(1006), [aux_sym__val_number_token6] = ACTIONS(1006), - [anon_sym_0b] = ACTIONS(1006), - [anon_sym_0o] = ACTIONS(1006), - [anon_sym_0x] = ACTIONS(1006), - [sym_val_date] = ACTIONS(1006), [anon_sym_DQUOTE] = ACTIONS(1006), [sym__str_single_quotes] = ACTIONS(1006), [sym__str_back_ticks] = ACTIONS(1006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1006), - [anon_sym_CARET] = ACTIONS(1006), - [anon_sym_POUND] = ACTIONS(113), - }, - [292] = { - [sym_path] = STATE(329), - [sym_comment] = STATE(292), - [aux_sym_cell_path_repeat1] = STATE(292), - [ts_builtin_sym_end] = ACTIONS(1001), - [anon_sym_export] = ACTIONS(999), - [anon_sym_alias] = ACTIONS(999), - [anon_sym_let] = ACTIONS(999), - [anon_sym_let_DASHenv] = ACTIONS(999), - [anon_sym_mut] = ACTIONS(999), - [anon_sym_const] = ACTIONS(999), - [anon_sym_SEMI] = ACTIONS(999), - [sym_cmd_identifier] = ACTIONS(999), - [anon_sym_LF] = ACTIONS(1001), - [anon_sym_def] = ACTIONS(999), - [anon_sym_export_DASHenv] = ACTIONS(999), - [anon_sym_extern] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_use] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_error] = ACTIONS(999), - [anon_sym_GT] = ACTIONS(999), - [anon_sym_DASH_DASH] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_break] = ACTIONS(999), - [anon_sym_continue] = ACTIONS(999), - [anon_sym_for] = ACTIONS(999), - [anon_sym_in] = ACTIONS(999), - [anon_sym_loop] = ACTIONS(999), - [anon_sym_while] = ACTIONS(999), - [anon_sym_do] = ACTIONS(999), - [anon_sym_if] = ACTIONS(999), - [anon_sym_match] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(999), - [anon_sym_DOT_DOT] = ACTIONS(999), - [anon_sym_try] = ACTIONS(999), - [anon_sym_return] = ACTIONS(999), - [anon_sym_source] = ACTIONS(999), - [anon_sym_source_DASHenv] = ACTIONS(999), - [anon_sym_register] = ACTIONS(999), - [anon_sym_hide] = ACTIONS(999), - [anon_sym_hide_DASHenv] = ACTIONS(999), - [anon_sym_overlay] = ACTIONS(999), - [anon_sym_as] = ACTIONS(999), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_where] = ACTIONS(999), - [anon_sym_STAR_STAR] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(999), - [anon_sym_mod] = ACTIONS(999), - [anon_sym_SLASH_SLASH] = ACTIONS(999), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_bit_DASHshl] = ACTIONS(999), - [anon_sym_bit_DASHshr] = ACTIONS(999), - [anon_sym_EQ_EQ] = ACTIONS(999), - [anon_sym_BANG_EQ] = ACTIONS(999), - [anon_sym_LT2] = ACTIONS(999), - [anon_sym_LT_EQ] = ACTIONS(999), - [anon_sym_GT_EQ] = ACTIONS(999), - [anon_sym_not_DASHin] = ACTIONS(999), - [anon_sym_starts_DASHwith] = ACTIONS(999), - [anon_sym_ends_DASHwith] = ACTIONS(999), - [anon_sym_EQ_TILDE] = ACTIONS(999), - [anon_sym_BANG_TILDE] = ACTIONS(999), - [anon_sym_bit_DASHand] = ACTIONS(999), - [anon_sym_bit_DASHxor] = ACTIONS(999), - [anon_sym_bit_DASHor] = ACTIONS(999), - [anon_sym_and] = ACTIONS(999), - [anon_sym_xor] = ACTIONS(999), - [anon_sym_or] = ACTIONS(999), - [anon_sym_not] = ACTIONS(999), - [anon_sym_DOT_DOT2] = ACTIONS(999), - [anon_sym_DOT] = ACTIONS(1067), - [anon_sym_DOT_DOT_EQ] = ACTIONS(999), - [anon_sym_DOT_DOT_LT] = ACTIONS(999), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1001), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1001), - [anon_sym_null] = ACTIONS(999), - [anon_sym_true] = ACTIONS(999), - [anon_sym_false] = ACTIONS(999), - [aux_sym__val_number_decimal_token1] = ACTIONS(999), - [aux_sym__val_number_decimal_token2] = ACTIONS(999), - [anon_sym_DOT2] = ACTIONS(999), - [aux_sym__val_number_decimal_token3] = ACTIONS(999), - [aux_sym__val_number_token1] = ACTIONS(999), - [aux_sym__val_number_token2] = ACTIONS(999), - [aux_sym__val_number_token3] = ACTIONS(999), - [aux_sym__val_number_token4] = ACTIONS(999), - [aux_sym__val_number_token5] = ACTIONS(999), - [aux_sym__val_number_token6] = ACTIONS(999), - [anon_sym_0b] = ACTIONS(999), - [anon_sym_0o] = ACTIONS(999), - [anon_sym_0x] = ACTIONS(999), - [sym_val_date] = ACTIONS(999), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym__str_single_quotes] = ACTIONS(999), - [sym__str_back_ticks] = ACTIONS(999), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(999), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(999), - [anon_sym_CARET] = ACTIONS(999), + [aux_sym__record_key_token2] = ACTIONS(1006), [anon_sym_POUND] = ACTIONS(113), }, - [293] = { - [sym_comment] = STATE(293), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_alias] = ACTIONS(1070), - [anon_sym_let] = ACTIONS(1070), - [anon_sym_let_DASHenv] = ACTIONS(1070), - [anon_sym_mut] = ACTIONS(1070), - [anon_sym_const] = ACTIONS(1070), - [anon_sym_SEMI] = ACTIONS(1070), - [sym_cmd_identifier] = ACTIONS(1070), - [anon_sym_LF] = ACTIONS(1072), - [anon_sym_def] = ACTIONS(1070), - [anon_sym_export_DASHenv] = ACTIONS(1070), - [anon_sym_extern] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_use] = ACTIONS(1070), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_RPAREN] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_error] = ACTIONS(1070), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_in] = ACTIONS(1070), - [anon_sym_loop] = ACTIONS(1070), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_do] = ACTIONS(1070), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_match] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_RBRACE] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_try] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_source] = ACTIONS(1070), - [anon_sym_source_DASHenv] = ACTIONS(1070), - [anon_sym_register] = ACTIONS(1070), - [anon_sym_hide] = ACTIONS(1070), - [anon_sym_hide_DASHenv] = ACTIONS(1070), - [anon_sym_overlay] = ACTIONS(1070), - [anon_sym_as] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_where] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(1074), - [anon_sym_STAR_STAR] = ACTIONS(1070), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_mod] = ACTIONS(1070), - [anon_sym_SLASH_SLASH] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_bit_DASHshl] = ACTIONS(1070), - [anon_sym_bit_DASHshr] = ACTIONS(1070), - [anon_sym_EQ_EQ] = ACTIONS(1070), - [anon_sym_BANG_EQ] = ACTIONS(1070), - [anon_sym_LT2] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1070), - [anon_sym_GT_EQ] = ACTIONS(1070), - [anon_sym_not_DASHin] = ACTIONS(1070), - [anon_sym_starts_DASHwith] = ACTIONS(1070), - [anon_sym_ends_DASHwith] = ACTIONS(1070), - [anon_sym_EQ_TILDE] = ACTIONS(1070), - [anon_sym_BANG_TILDE] = ACTIONS(1070), - [anon_sym_bit_DASHand] = ACTIONS(1070), - [anon_sym_bit_DASHxor] = ACTIONS(1070), - [anon_sym_bit_DASHor] = ACTIONS(1070), - [anon_sym_and] = ACTIONS(1070), - [anon_sym_xor] = ACTIONS(1070), - [anon_sym_or] = ACTIONS(1070), - [anon_sym_not] = ACTIONS(1070), - [anon_sym_DOT_DOT2] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1072), - [anon_sym_null] = ACTIONS(1070), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1070), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), - [anon_sym_CARET] = ACTIONS(1070), + [299] = { + [sym_cell_path] = STATE(468), + [sym_path] = STATE(302), + [sym_comment] = STATE(299), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_EQ] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [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), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [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_COLON] = ACTIONS(1002), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_list] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = 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_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_new] = ACTIONS(1002), + [anon_sym_as] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_SLASH] = ACTIONS(1002), + [anon_sym_mod] = ACTIONS(1002), + [anon_sym_SLASH_SLASH] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1002), + [anon_sym_bit_DASHshl] = ACTIONS(1002), + [anon_sym_bit_DASHshr] = ACTIONS(1002), + [anon_sym_EQ_EQ] = ACTIONS(1002), + [anon_sym_BANG_EQ] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ] = ACTIONS(1002), + [anon_sym_GT_EQ] = ACTIONS(1002), + [anon_sym_not_DASHin] = ACTIONS(1002), + [anon_sym_starts_DASHwith] = ACTIONS(1002), + [anon_sym_ends_DASHwith] = ACTIONS(1002), + [anon_sym_EQ_TILDE] = ACTIONS(1002), + [anon_sym_BANG_TILDE] = ACTIONS(1002), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_DOT_DOT2] = ACTIONS(1002), + [anon_sym_DOT] = ACTIONS(1110), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1004), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1004), + [aux_sym__val_number_decimal_token1] = ACTIONS(1002), + [aux_sym__val_number_decimal_token2] = ACTIONS(1002), + [anon_sym_DOT2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = 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), + [aux_sym__record_key_token2] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(113), }, - [294] = { - [sym_comment] = STATE(294), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_alias] = ACTIONS(1070), - [anon_sym_let] = ACTIONS(1070), - [anon_sym_let_DASHenv] = ACTIONS(1070), - [anon_sym_mut] = ACTIONS(1070), - [anon_sym_const] = ACTIONS(1070), - [anon_sym_SEMI] = ACTIONS(1070), - [sym_cmd_identifier] = ACTIONS(1070), - [anon_sym_LF] = ACTIONS(1072), - [anon_sym_def] = ACTIONS(1070), - [anon_sym_export_DASHenv] = ACTIONS(1070), - [anon_sym_extern] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_use] = ACTIONS(1070), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_RPAREN] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_error] = ACTIONS(1070), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_in] = ACTIONS(1070), - [anon_sym_loop] = ACTIONS(1070), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_do] = ACTIONS(1070), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_match] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_RBRACE] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_try] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_source] = ACTIONS(1070), - [anon_sym_source_DASHenv] = ACTIONS(1070), - [anon_sym_register] = ACTIONS(1070), - [anon_sym_hide] = ACTIONS(1070), - [anon_sym_hide_DASHenv] = ACTIONS(1070), - [anon_sym_overlay] = ACTIONS(1070), - [anon_sym_as] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_where] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(1074), - [anon_sym_STAR_STAR] = ACTIONS(1070), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_mod] = ACTIONS(1070), - [anon_sym_SLASH_SLASH] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_bit_DASHshl] = ACTIONS(1070), - [anon_sym_bit_DASHshr] = ACTIONS(1070), - [anon_sym_EQ_EQ] = ACTIONS(1070), - [anon_sym_BANG_EQ] = ACTIONS(1070), - [anon_sym_LT2] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1070), - [anon_sym_GT_EQ] = ACTIONS(1070), - [anon_sym_not_DASHin] = ACTIONS(1070), - [anon_sym_starts_DASHwith] = ACTIONS(1070), - [anon_sym_ends_DASHwith] = ACTIONS(1070), - [anon_sym_EQ_TILDE] = ACTIONS(1070), - [anon_sym_BANG_TILDE] = ACTIONS(1070), - [anon_sym_bit_DASHand] = ACTIONS(1070), - [anon_sym_bit_DASHxor] = ACTIONS(1070), - [anon_sym_bit_DASHor] = ACTIONS(1070), - [anon_sym_and] = ACTIONS(1070), - [anon_sym_xor] = ACTIONS(1070), - [anon_sym_or] = ACTIONS(1070), - [anon_sym_not] = ACTIONS(1070), - [anon_sym_DOT_DOT2] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1072), - [anon_sym_null] = ACTIONS(1070), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1070), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), - [anon_sym_CARET] = ACTIONS(1070), + [300] = { + [sym_comment] = STATE(300), + [anon_sym_export] = ACTIONS(1024), + [anon_sym_alias] = ACTIONS(1024), + [anon_sym_let] = ACTIONS(1024), + [anon_sym_let_DASHenv] = ACTIONS(1024), + [anon_sym_mut] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1024), + [sym_cmd_identifier] = ACTIONS(1024), + [anon_sym_LF] = ACTIONS(1026), + [anon_sym_def] = ACTIONS(1024), + [anon_sym_export_DASHenv] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1024), + [anon_sym_module] = ACTIONS(1024), + [anon_sym_use] = ACTIONS(1024), + [anon_sym_LBRACK] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_RPAREN] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_error] = ACTIONS(1024), + [anon_sym_GT] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_loop] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_match] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym_RBRACE] = ACTIONS(1024), + [anon_sym_DOT_DOT] = ACTIONS(1024), + [anon_sym_try] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_source] = ACTIONS(1024), + [anon_sym_source_DASHenv] = ACTIONS(1024), + [anon_sym_register] = ACTIONS(1024), + [anon_sym_hide] = ACTIONS(1024), + [anon_sym_hide_DASHenv] = ACTIONS(1024), + [anon_sym_overlay] = ACTIONS(1024), + [anon_sym_as] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_where] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(1112), + [anon_sym_STAR_STAR] = ACTIONS(1024), + [anon_sym_PLUS_PLUS] = ACTIONS(1024), + [anon_sym_SLASH] = ACTIONS(1024), + [anon_sym_mod] = ACTIONS(1024), + [anon_sym_SLASH_SLASH] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_bit_DASHshl] = ACTIONS(1024), + [anon_sym_bit_DASHshr] = ACTIONS(1024), + [anon_sym_EQ_EQ] = ACTIONS(1024), + [anon_sym_BANG_EQ] = ACTIONS(1024), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ] = ACTIONS(1024), + [anon_sym_GT_EQ] = ACTIONS(1024), + [anon_sym_not_DASHin] = ACTIONS(1024), + [anon_sym_starts_DASHwith] = ACTIONS(1024), + [anon_sym_ends_DASHwith] = ACTIONS(1024), + [anon_sym_EQ_TILDE] = ACTIONS(1024), + [anon_sym_BANG_TILDE] = ACTIONS(1024), + [anon_sym_bit_DASHand] = ACTIONS(1024), + [anon_sym_bit_DASHxor] = ACTIONS(1024), + [anon_sym_bit_DASHor] = ACTIONS(1024), + [anon_sym_and] = ACTIONS(1024), + [anon_sym_xor] = ACTIONS(1024), + [anon_sym_or] = ACTIONS(1024), + [anon_sym_not] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT] = ACTIONS(1024), + [anon_sym_null] = ACTIONS(1024), + [anon_sym_true] = ACTIONS(1024), + [anon_sym_false] = ACTIONS(1024), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1024), + [aux_sym__val_number_token1] = ACTIONS(1024), + [aux_sym__val_number_token2] = ACTIONS(1024), + [aux_sym__val_number_token3] = ACTIONS(1024), + [aux_sym__val_number_token4] = ACTIONS(1024), + [aux_sym__val_number_token5] = ACTIONS(1024), + [aux_sym__val_number_token6] = ACTIONS(1024), + [anon_sym_0b] = ACTIONS(1024), + [anon_sym_0o] = ACTIONS(1024), + [anon_sym_0x] = ACTIONS(1024), + [sym_val_date] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym__str_single_quotes] = ACTIONS(1024), + [sym__str_back_ticks] = ACTIONS(1024), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1024), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1024), + [anon_sym_CARET] = ACTIONS(1024), [anon_sym_POUND] = ACTIONS(113), }, - [295] = { - [sym_comment] = STATE(295), - [ts_builtin_sym_end] = ACTIONS(925), - [anon_sym_export] = ACTIONS(923), - [anon_sym_alias] = ACTIONS(923), - [anon_sym_let] = ACTIONS(923), - [anon_sym_let_DASHenv] = ACTIONS(923), - [anon_sym_mut] = ACTIONS(923), - [anon_sym_const] = ACTIONS(923), - [anon_sym_SEMI] = ACTIONS(923), - [sym_cmd_identifier] = ACTIONS(923), - [anon_sym_LF] = ACTIONS(925), - [anon_sym_def] = ACTIONS(923), - [anon_sym_export_DASHenv] = ACTIONS(923), - [anon_sym_extern] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_use] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_DOLLAR] = ACTIONS(923), - [anon_sym_error] = ACTIONS(923), - [anon_sym_GT] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_break] = ACTIONS(923), - [anon_sym_continue] = ACTIONS(923), - [anon_sym_for] = ACTIONS(923), - [anon_sym_in] = ACTIONS(923), - [anon_sym_loop] = ACTIONS(923), - [anon_sym_while] = ACTIONS(923), - [anon_sym_do] = ACTIONS(923), - [anon_sym_if] = ACTIONS(923), - [anon_sym_match] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(923), - [anon_sym_DOT_DOT] = ACTIONS(923), - [anon_sym_try] = ACTIONS(923), - [anon_sym_return] = ACTIONS(923), - [anon_sym_source] = ACTIONS(923), - [anon_sym_source_DASHenv] = ACTIONS(923), - [anon_sym_register] = ACTIONS(923), - [anon_sym_hide] = ACTIONS(923), - [anon_sym_hide_DASHenv] = ACTIONS(923), - [anon_sym_overlay] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_where] = ACTIONS(923), - [anon_sym_STAR_STAR] = ACTIONS(923), - [anon_sym_PLUS_PLUS] = ACTIONS(923), - [anon_sym_SLASH] = ACTIONS(923), - [anon_sym_mod] = ACTIONS(923), - [anon_sym_SLASH_SLASH] = ACTIONS(923), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_bit_DASHshl] = ACTIONS(923), - [anon_sym_bit_DASHshr] = ACTIONS(923), - [anon_sym_EQ_EQ] = ACTIONS(923), - [anon_sym_BANG_EQ] = ACTIONS(923), - [anon_sym_LT2] = ACTIONS(923), - [anon_sym_LT_EQ] = ACTIONS(923), - [anon_sym_GT_EQ] = ACTIONS(923), - [anon_sym_not_DASHin] = ACTIONS(923), - [anon_sym_starts_DASHwith] = ACTIONS(923), - [anon_sym_ends_DASHwith] = ACTIONS(923), - [anon_sym_EQ_TILDE] = ACTIONS(923), - [anon_sym_BANG_TILDE] = ACTIONS(923), - [anon_sym_bit_DASHand] = ACTIONS(923), - [anon_sym_bit_DASHxor] = ACTIONS(923), - [anon_sym_bit_DASHor] = ACTIONS(923), - [anon_sym_and] = ACTIONS(923), - [anon_sym_xor] = ACTIONS(923), - [anon_sym_or] = ACTIONS(923), - [anon_sym_not] = ACTIONS(923), - [anon_sym_DOT_DOT2] = ACTIONS(923), - [anon_sym_DOT] = ACTIONS(1076), - [anon_sym_DOT_DOT_EQ] = ACTIONS(923), - [anon_sym_DOT_DOT_LT] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(925), - [anon_sym_DOT_DOT_LT2] = ACTIONS(925), - [aux_sym__immediate_decimal_token2] = ACTIONS(1079), - [anon_sym_null] = ACTIONS(923), - [anon_sym_true] = ACTIONS(923), - [anon_sym_false] = ACTIONS(923), - [aux_sym__val_number_decimal_token1] = ACTIONS(923), - [aux_sym__val_number_decimal_token2] = ACTIONS(923), - [anon_sym_DOT2] = ACTIONS(923), - [aux_sym__val_number_decimal_token3] = ACTIONS(923), - [aux_sym__val_number_token1] = ACTIONS(923), - [aux_sym__val_number_token2] = ACTIONS(923), - [aux_sym__val_number_token3] = ACTIONS(923), - [aux_sym__val_number_token4] = ACTIONS(923), - [aux_sym__val_number_token5] = ACTIONS(923), - [aux_sym__val_number_token6] = ACTIONS(923), - [anon_sym_0b] = ACTIONS(923), - [sym_filesize_unit] = ACTIONS(923), - [sym_duration_unit] = ACTIONS(923), - [anon_sym_0o] = ACTIONS(923), - [anon_sym_0x] = ACTIONS(923), - [sym_val_date] = ACTIONS(923), - [anon_sym_DQUOTE] = ACTIONS(923), - [sym__str_single_quotes] = ACTIONS(923), - [sym__str_back_ticks] = ACTIONS(923), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(923), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), - [anon_sym_CARET] = ACTIONS(923), - [aux_sym_unquoted_token5] = ACTIONS(923), - [anon_sym_POUND] = ACTIONS(113), - }, - [296] = { - [sym__immediate_decimal] = STATE(9346), - [sym_comment] = STATE(296), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_error] = ACTIONS(936), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_RBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_where] = ACTIONS(936), - [anon_sym_STAR_STAR] = ACTIONS(936), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(936), - [anon_sym_SLASH_SLASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(936), - [anon_sym_bit_DASHshr] = ACTIONS(936), - [anon_sym_EQ_EQ] = ACTIONS(936), - [anon_sym_BANG_EQ] = ACTIONS(936), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(936), - [anon_sym_GT_EQ] = ACTIONS(936), - [anon_sym_not_DASHin] = ACTIONS(936), - [anon_sym_starts_DASHwith] = ACTIONS(936), - [anon_sym_ends_DASHwith] = ACTIONS(936), - [anon_sym_EQ_TILDE] = ACTIONS(936), - [anon_sym_BANG_TILDE] = ACTIONS(936), - [anon_sym_bit_DASHand] = ACTIONS(936), - [anon_sym_bit_DASHxor] = ACTIONS(936), - [anon_sym_bit_DASHor] = ACTIONS(936), - [anon_sym_and] = ACTIONS(936), - [anon_sym_xor] = ACTIONS(936), - [anon_sym_or] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [aux_sym__immediate_decimal_token1] = ACTIONS(942), - [aux_sym__immediate_decimal_token3] = ACTIONS(942), - [aux_sym__immediate_decimal_token4] = ACTIONS(944), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [aux_sym_unquoted_token3] = ACTIONS(1057), - [aux_sym_unquoted_token5] = ACTIONS(1083), - [anon_sym_POUND] = ACTIONS(113), - }, - [297] = { - [sym_comment] = STATE(297), - [anon_sym_export] = ACTIONS(909), - [anon_sym_alias] = ACTIONS(909), - [anon_sym_let] = ACTIONS(909), - [anon_sym_let_DASHenv] = ACTIONS(909), - [anon_sym_mut] = ACTIONS(909), - [anon_sym_const] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(909), - [sym_cmd_identifier] = ACTIONS(909), - [anon_sym_LF] = ACTIONS(911), - [anon_sym_def] = ACTIONS(909), - [anon_sym_export_DASHenv] = ACTIONS(909), - [anon_sym_extern] = ACTIONS(909), - [anon_sym_module] = ACTIONS(909), - [anon_sym_use] = ACTIONS(909), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_RPAREN] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_error] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_break] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_for] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_loop] = ACTIONS(909), - [anon_sym_while] = ACTIONS(909), - [anon_sym_do] = ACTIONS(909), - [anon_sym_if] = ACTIONS(909), - [anon_sym_match] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_RBRACE] = ACTIONS(909), - [anon_sym_DOT_DOT] = ACTIONS(909), - [anon_sym_try] = ACTIONS(909), - [anon_sym_return] = ACTIONS(909), - [anon_sym_source] = ACTIONS(909), - [anon_sym_source_DASHenv] = ACTIONS(909), - [anon_sym_register] = ACTIONS(909), - [anon_sym_hide] = ACTIONS(909), - [anon_sym_hide_DASHenv] = ACTIONS(909), - [anon_sym_overlay] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_where] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(909), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(909), - [anon_sym_SLASH_SLASH] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(909), - [anon_sym_bit_DASHshr] = ACTIONS(909), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_not_DASHin] = ACTIONS(909), - [anon_sym_starts_DASHwith] = ACTIONS(909), - [anon_sym_ends_DASHwith] = ACTIONS(909), - [anon_sym_EQ_TILDE] = ACTIONS(909), - [anon_sym_BANG_TILDE] = ACTIONS(909), - [anon_sym_bit_DASHand] = ACTIONS(909), - [anon_sym_bit_DASHxor] = ACTIONS(909), - [anon_sym_bit_DASHor] = ACTIONS(909), - [anon_sym_and] = ACTIONS(909), - [anon_sym_xor] = ACTIONS(909), - [anon_sym_or] = ACTIONS(909), - [anon_sym_not] = ACTIONS(909), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [aux_sym__immediate_decimal_token1] = ACTIONS(1085), - [aux_sym__immediate_decimal_token2] = ACTIONS(1087), - [anon_sym_null] = ACTIONS(909), - [anon_sym_true] = ACTIONS(909), - [anon_sym_false] = ACTIONS(909), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(909), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(909), - [aux_sym__val_number_token1] = ACTIONS(909), - [aux_sym__val_number_token2] = ACTIONS(909), - [aux_sym__val_number_token3] = ACTIONS(909), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(909), - [aux_sym__val_number_token6] = ACTIONS(909), - [anon_sym_0b] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(909), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym__str_single_quotes] = ACTIONS(909), - [sym__str_back_ticks] = ACTIONS(909), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), - [anon_sym_CARET] = ACTIONS(909), - [anon_sym_POUND] = ACTIONS(113), - }, - [298] = { - [sym_comment] = STATE(298), - [anon_sym_export] = ACTIONS(923), - [anon_sym_alias] = ACTIONS(923), - [anon_sym_let] = ACTIONS(923), - [anon_sym_let_DASHenv] = ACTIONS(923), - [anon_sym_mut] = ACTIONS(923), - [anon_sym_const] = ACTIONS(923), - [anon_sym_SEMI] = ACTIONS(923), - [sym_cmd_identifier] = ACTIONS(923), - [anon_sym_LF] = ACTIONS(925), - [anon_sym_def] = ACTIONS(923), - [anon_sym_export_DASHenv] = ACTIONS(923), - [anon_sym_extern] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_use] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_RPAREN] = ACTIONS(923), - [anon_sym_DOLLAR] = ACTIONS(923), - [anon_sym_error] = ACTIONS(923), - [anon_sym_GT] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_break] = ACTIONS(923), - [anon_sym_continue] = ACTIONS(923), - [anon_sym_for] = ACTIONS(923), - [anon_sym_in] = ACTIONS(923), - [anon_sym_loop] = ACTIONS(923), - [anon_sym_while] = ACTIONS(923), - [anon_sym_do] = ACTIONS(923), - [anon_sym_if] = ACTIONS(923), - [anon_sym_match] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(923), - [anon_sym_RBRACE] = ACTIONS(923), - [anon_sym_DOT_DOT] = ACTIONS(923), - [anon_sym_try] = ACTIONS(923), - [anon_sym_return] = ACTIONS(923), - [anon_sym_source] = ACTIONS(923), - [anon_sym_source_DASHenv] = ACTIONS(923), - [anon_sym_register] = ACTIONS(923), - [anon_sym_hide] = ACTIONS(923), - [anon_sym_hide_DASHenv] = ACTIONS(923), - [anon_sym_overlay] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_where] = ACTIONS(923), - [anon_sym_STAR_STAR] = ACTIONS(923), - [anon_sym_PLUS_PLUS] = ACTIONS(923), - [anon_sym_SLASH] = ACTIONS(923), - [anon_sym_mod] = ACTIONS(923), - [anon_sym_SLASH_SLASH] = ACTIONS(923), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_bit_DASHshl] = ACTIONS(923), - [anon_sym_bit_DASHshr] = ACTIONS(923), - [anon_sym_EQ_EQ] = ACTIONS(923), - [anon_sym_BANG_EQ] = ACTIONS(923), - [anon_sym_LT2] = ACTIONS(923), - [anon_sym_LT_EQ] = ACTIONS(923), - [anon_sym_GT_EQ] = ACTIONS(923), - [anon_sym_not_DASHin] = ACTIONS(923), - [anon_sym_starts_DASHwith] = ACTIONS(923), - [anon_sym_ends_DASHwith] = ACTIONS(923), - [anon_sym_EQ_TILDE] = ACTIONS(923), - [anon_sym_BANG_TILDE] = ACTIONS(923), - [anon_sym_bit_DASHand] = ACTIONS(923), - [anon_sym_bit_DASHxor] = ACTIONS(923), - [anon_sym_bit_DASHor] = ACTIONS(923), - [anon_sym_and] = ACTIONS(923), - [anon_sym_xor] = ACTIONS(923), - [anon_sym_or] = ACTIONS(923), - [anon_sym_not] = ACTIONS(923), - [anon_sym_DOT_DOT2] = ACTIONS(923), - [anon_sym_DOT] = ACTIONS(1089), - [anon_sym_DOT_DOT_EQ] = ACTIONS(923), - [anon_sym_DOT_DOT_LT] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(925), - [anon_sym_DOT_DOT_LT2] = ACTIONS(925), - [aux_sym__immediate_decimal_token2] = ACTIONS(1091), - [anon_sym_null] = ACTIONS(923), - [anon_sym_true] = ACTIONS(923), - [anon_sym_false] = ACTIONS(923), - [aux_sym__val_number_decimal_token1] = ACTIONS(923), - [aux_sym__val_number_decimal_token2] = ACTIONS(923), - [anon_sym_DOT2] = ACTIONS(923), - [aux_sym__val_number_decimal_token3] = ACTIONS(923), - [aux_sym__val_number_token1] = ACTIONS(923), - [aux_sym__val_number_token2] = ACTIONS(923), - [aux_sym__val_number_token3] = ACTIONS(923), - [aux_sym__val_number_token4] = ACTIONS(923), - [aux_sym__val_number_token5] = ACTIONS(923), - [aux_sym__val_number_token6] = ACTIONS(923), - [anon_sym_0b] = ACTIONS(923), - [sym_filesize_unit] = ACTIONS(923), - [sym_duration_unit] = ACTIONS(923), - [anon_sym_0o] = ACTIONS(923), - [anon_sym_0x] = ACTIONS(923), - [sym_val_date] = ACTIONS(923), - [anon_sym_DQUOTE] = ACTIONS(923), - [sym__str_single_quotes] = ACTIONS(923), - [sym__str_back_ticks] = ACTIONS(923), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(923), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), - [anon_sym_CARET] = ACTIONS(923), - [anon_sym_POUND] = ACTIONS(113), - }, - [299] = { - [sym_comment] = STATE(299), - [ts_builtin_sym_end] = ACTIONS(925), - [anon_sym_export] = ACTIONS(923), - [anon_sym_alias] = ACTIONS(923), - [anon_sym_let] = ACTIONS(923), - [anon_sym_let_DASHenv] = ACTIONS(923), - [anon_sym_mut] = ACTIONS(923), - [anon_sym_const] = ACTIONS(923), - [anon_sym_SEMI] = ACTIONS(923), - [sym_cmd_identifier] = ACTIONS(923), - [anon_sym_LF] = ACTIONS(925), - [anon_sym_def] = ACTIONS(923), - [anon_sym_export_DASHenv] = ACTIONS(923), - [anon_sym_extern] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_use] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_DOLLAR] = ACTIONS(923), - [anon_sym_error] = ACTIONS(923), - [anon_sym_GT] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_break] = ACTIONS(923), - [anon_sym_continue] = ACTIONS(923), - [anon_sym_for] = ACTIONS(923), - [anon_sym_in] = ACTIONS(923), - [anon_sym_loop] = ACTIONS(923), - [anon_sym_while] = ACTIONS(923), - [anon_sym_do] = ACTIONS(923), - [anon_sym_if] = ACTIONS(923), - [anon_sym_match] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(923), - [anon_sym_DOT_DOT] = ACTIONS(923), - [anon_sym_try] = ACTIONS(923), - [anon_sym_return] = ACTIONS(923), - [anon_sym_source] = ACTIONS(923), - [anon_sym_source_DASHenv] = ACTIONS(923), - [anon_sym_register] = ACTIONS(923), - [anon_sym_hide] = ACTIONS(923), - [anon_sym_hide_DASHenv] = ACTIONS(923), - [anon_sym_overlay] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_where] = ACTIONS(923), - [anon_sym_STAR_STAR] = ACTIONS(923), - [anon_sym_PLUS_PLUS] = ACTIONS(923), - [anon_sym_SLASH] = ACTIONS(923), - [anon_sym_mod] = ACTIONS(923), - [anon_sym_SLASH_SLASH] = ACTIONS(923), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_bit_DASHshl] = ACTIONS(923), - [anon_sym_bit_DASHshr] = ACTIONS(923), - [anon_sym_EQ_EQ] = ACTIONS(923), - [anon_sym_BANG_EQ] = ACTIONS(923), - [anon_sym_LT2] = ACTIONS(923), - [anon_sym_LT_EQ] = ACTIONS(923), - [anon_sym_GT_EQ] = ACTIONS(923), - [anon_sym_not_DASHin] = ACTIONS(923), - [anon_sym_starts_DASHwith] = ACTIONS(923), - [anon_sym_ends_DASHwith] = ACTIONS(923), - [anon_sym_EQ_TILDE] = ACTIONS(923), - [anon_sym_BANG_TILDE] = ACTIONS(923), - [anon_sym_bit_DASHand] = ACTIONS(923), - [anon_sym_bit_DASHxor] = ACTIONS(923), - [anon_sym_bit_DASHor] = ACTIONS(923), - [anon_sym_and] = ACTIONS(923), - [anon_sym_xor] = ACTIONS(923), - [anon_sym_or] = ACTIONS(923), - [anon_sym_not] = ACTIONS(923), - [anon_sym_DOT_DOT2] = ACTIONS(923), - [anon_sym_DOT] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ] = ACTIONS(923), - [anon_sym_DOT_DOT_LT] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(925), - [anon_sym_DOT_DOT_LT2] = ACTIONS(925), - [aux_sym__immediate_decimal_token2] = ACTIONS(1079), - [anon_sym_null] = ACTIONS(923), - [anon_sym_true] = ACTIONS(923), - [anon_sym_false] = ACTIONS(923), - [aux_sym__val_number_decimal_token1] = ACTIONS(923), - [aux_sym__val_number_decimal_token2] = ACTIONS(923), - [anon_sym_DOT2] = ACTIONS(923), - [aux_sym__val_number_decimal_token3] = ACTIONS(923), - [aux_sym__val_number_token1] = ACTIONS(923), - [aux_sym__val_number_token2] = ACTIONS(923), - [aux_sym__val_number_token3] = ACTIONS(923), - [aux_sym__val_number_token4] = ACTIONS(923), - [aux_sym__val_number_token5] = ACTIONS(923), - [aux_sym__val_number_token6] = ACTIONS(923), - [anon_sym_0b] = ACTIONS(923), - [sym_filesize_unit] = ACTIONS(923), - [sym_duration_unit] = ACTIONS(923), - [anon_sym_0o] = ACTIONS(923), - [anon_sym_0x] = ACTIONS(923), - [sym_val_date] = ACTIONS(923), - [anon_sym_DQUOTE] = ACTIONS(923), - [sym__str_single_quotes] = ACTIONS(923), - [sym__str_back_ticks] = ACTIONS(923), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(923), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), - [anon_sym_CARET] = ACTIONS(923), - [aux_sym_unquoted_token5] = ACTIONS(923), - [anon_sym_POUND] = ACTIONS(113), - }, - [300] = { - [sym_comment] = STATE(300), - [ts_builtin_sym_end] = ACTIONS(911), - [anon_sym_export] = ACTIONS(909), - [anon_sym_alias] = ACTIONS(909), - [anon_sym_let] = ACTIONS(909), - [anon_sym_let_DASHenv] = ACTIONS(909), - [anon_sym_mut] = ACTIONS(909), - [anon_sym_const] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(909), - [sym_cmd_identifier] = ACTIONS(909), - [anon_sym_LF] = ACTIONS(911), - [anon_sym_def] = ACTIONS(909), - [anon_sym_export_DASHenv] = ACTIONS(909), - [anon_sym_extern] = ACTIONS(909), - [anon_sym_module] = ACTIONS(909), - [anon_sym_use] = ACTIONS(909), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_error] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_break] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_for] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_loop] = ACTIONS(909), - [anon_sym_while] = ACTIONS(909), - [anon_sym_do] = ACTIONS(909), - [anon_sym_if] = ACTIONS(909), - [anon_sym_match] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_DOT_DOT] = ACTIONS(909), - [anon_sym_try] = ACTIONS(909), - [anon_sym_return] = ACTIONS(909), - [anon_sym_source] = ACTIONS(909), - [anon_sym_source_DASHenv] = ACTIONS(909), - [anon_sym_register] = ACTIONS(909), - [anon_sym_hide] = ACTIONS(909), - [anon_sym_hide_DASHenv] = ACTIONS(909), - [anon_sym_overlay] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_where] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(909), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(909), - [anon_sym_SLASH_SLASH] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(909), - [anon_sym_bit_DASHshr] = ACTIONS(909), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_not_DASHin] = ACTIONS(909), - [anon_sym_starts_DASHwith] = ACTIONS(909), - [anon_sym_ends_DASHwith] = ACTIONS(909), - [anon_sym_EQ_TILDE] = ACTIONS(909), - [anon_sym_BANG_TILDE] = ACTIONS(909), - [anon_sym_bit_DASHand] = ACTIONS(909), - [anon_sym_bit_DASHxor] = ACTIONS(909), - [anon_sym_bit_DASHor] = ACTIONS(909), - [anon_sym_and] = ACTIONS(909), - [anon_sym_xor] = ACTIONS(909), - [anon_sym_or] = ACTIONS(909), - [anon_sym_not] = ACTIONS(909), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [aux_sym__immediate_decimal_token2] = ACTIONS(1034), - [anon_sym_null] = ACTIONS(909), - [anon_sym_true] = ACTIONS(909), - [anon_sym_false] = ACTIONS(909), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(909), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(909), - [aux_sym__val_number_token1] = ACTIONS(909), - [aux_sym__val_number_token2] = ACTIONS(909), - [aux_sym__val_number_token3] = ACTIONS(909), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(909), - [aux_sym__val_number_token6] = ACTIONS(909), - [anon_sym_0b] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(909), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym__str_single_quotes] = ACTIONS(909), - [sym__str_back_ticks] = ACTIONS(909), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), - [anon_sym_CARET] = ACTIONS(909), - [aux_sym_unquoted_token5] = ACTIONS(909), - [anon_sym_POUND] = ACTIONS(113), - }, - [301] = { - [sym_comment] = STATE(301), - [ts_builtin_sym_end] = ACTIONS(919), - [anon_sym_export] = ACTIONS(917), - [anon_sym_alias] = ACTIONS(917), - [anon_sym_let] = ACTIONS(917), - [anon_sym_let_DASHenv] = ACTIONS(917), - [anon_sym_mut] = ACTIONS(917), - [anon_sym_const] = ACTIONS(917), - [anon_sym_SEMI] = ACTIONS(917), - [sym_cmd_identifier] = ACTIONS(917), - [anon_sym_LF] = ACTIONS(919), - [anon_sym_def] = ACTIONS(917), - [anon_sym_export_DASHenv] = ACTIONS(917), - [anon_sym_extern] = ACTIONS(917), - [anon_sym_module] = ACTIONS(917), - [anon_sym_use] = ACTIONS(917), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_LPAREN] = ACTIONS(917), - [anon_sym_DOLLAR] = ACTIONS(917), - [anon_sym_error] = ACTIONS(917), - [anon_sym_GT] = ACTIONS(917), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_break] = ACTIONS(917), - [anon_sym_continue] = ACTIONS(917), - [anon_sym_for] = ACTIONS(917), - [anon_sym_in] = ACTIONS(917), - [anon_sym_loop] = ACTIONS(917), - [anon_sym_while] = ACTIONS(917), - [anon_sym_do] = ACTIONS(917), - [anon_sym_if] = ACTIONS(917), - [anon_sym_match] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(917), - [anon_sym_DOT_DOT] = ACTIONS(917), - [anon_sym_try] = ACTIONS(917), - [anon_sym_return] = ACTIONS(917), - [anon_sym_source] = ACTIONS(917), - [anon_sym_source_DASHenv] = ACTIONS(917), - [anon_sym_register] = ACTIONS(917), - [anon_sym_hide] = ACTIONS(917), - [anon_sym_hide_DASHenv] = ACTIONS(917), - [anon_sym_overlay] = ACTIONS(917), - [anon_sym_STAR] = ACTIONS(917), - [anon_sym_where] = ACTIONS(917), - [anon_sym_STAR_STAR] = ACTIONS(917), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_mod] = ACTIONS(917), - [anon_sym_SLASH_SLASH] = ACTIONS(917), - [anon_sym_PLUS] = ACTIONS(917), - [anon_sym_bit_DASHshl] = ACTIONS(917), - [anon_sym_bit_DASHshr] = ACTIONS(917), - [anon_sym_EQ_EQ] = ACTIONS(917), - [anon_sym_BANG_EQ] = ACTIONS(917), - [anon_sym_LT2] = ACTIONS(917), - [anon_sym_LT_EQ] = ACTIONS(917), - [anon_sym_GT_EQ] = ACTIONS(917), - [anon_sym_not_DASHin] = ACTIONS(917), - [anon_sym_starts_DASHwith] = ACTIONS(917), - [anon_sym_ends_DASHwith] = ACTIONS(917), - [anon_sym_EQ_TILDE] = ACTIONS(917), - [anon_sym_BANG_TILDE] = ACTIONS(917), - [anon_sym_bit_DASHand] = ACTIONS(917), - [anon_sym_bit_DASHxor] = ACTIONS(917), - [anon_sym_bit_DASHor] = ACTIONS(917), - [anon_sym_and] = ACTIONS(917), - [anon_sym_xor] = ACTIONS(917), - [anon_sym_or] = ACTIONS(917), - [anon_sym_not] = ACTIONS(917), - [anon_sym_DOT_DOT2] = ACTIONS(917), - [anon_sym_DOT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ] = ACTIONS(917), - [anon_sym_DOT_DOT_LT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(919), - [anon_sym_DOT_DOT_LT2] = ACTIONS(919), - [aux_sym__immediate_decimal_token2] = ACTIONS(1093), - [anon_sym_null] = ACTIONS(917), - [anon_sym_true] = ACTIONS(917), - [anon_sym_false] = ACTIONS(917), - [aux_sym__val_number_decimal_token1] = ACTIONS(917), - [aux_sym__val_number_decimal_token2] = ACTIONS(917), - [anon_sym_DOT2] = ACTIONS(917), - [aux_sym__val_number_decimal_token3] = ACTIONS(917), - [aux_sym__val_number_token1] = ACTIONS(917), - [aux_sym__val_number_token2] = ACTIONS(917), - [aux_sym__val_number_token3] = ACTIONS(917), - [aux_sym__val_number_token4] = ACTIONS(917), - [aux_sym__val_number_token5] = ACTIONS(917), - [aux_sym__val_number_token6] = ACTIONS(917), - [anon_sym_0b] = ACTIONS(917), - [sym_filesize_unit] = ACTIONS(917), - [sym_duration_unit] = ACTIONS(917), - [anon_sym_0o] = ACTIONS(917), - [anon_sym_0x] = ACTIONS(917), - [sym_val_date] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(917), - [sym__str_single_quotes] = ACTIONS(917), - [sym__str_back_ticks] = ACTIONS(917), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(917), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(917), - [anon_sym_CARET] = ACTIONS(917), - [aux_sym_unquoted_token5] = ACTIONS(917), + [301] = { + [sym_comment] = STATE(301), + [anon_sym_export] = ACTIONS(1024), + [anon_sym_alias] = ACTIONS(1024), + [anon_sym_let] = ACTIONS(1024), + [anon_sym_let_DASHenv] = ACTIONS(1024), + [anon_sym_mut] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1024), + [sym_cmd_identifier] = ACTIONS(1024), + [anon_sym_LF] = ACTIONS(1026), + [anon_sym_def] = ACTIONS(1024), + [anon_sym_export_DASHenv] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1024), + [anon_sym_module] = ACTIONS(1024), + [anon_sym_use] = ACTIONS(1024), + [anon_sym_LBRACK] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_RPAREN] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_error] = ACTIONS(1024), + [anon_sym_GT] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_loop] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_match] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym_RBRACE] = ACTIONS(1024), + [anon_sym_DOT_DOT] = ACTIONS(1024), + [anon_sym_try] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_source] = ACTIONS(1024), + [anon_sym_source_DASHenv] = ACTIONS(1024), + [anon_sym_register] = ACTIONS(1024), + [anon_sym_hide] = ACTIONS(1024), + [anon_sym_hide_DASHenv] = ACTIONS(1024), + [anon_sym_overlay] = ACTIONS(1024), + [anon_sym_as] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_where] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(1112), + [anon_sym_STAR_STAR] = ACTIONS(1024), + [anon_sym_PLUS_PLUS] = ACTIONS(1024), + [anon_sym_SLASH] = ACTIONS(1024), + [anon_sym_mod] = ACTIONS(1024), + [anon_sym_SLASH_SLASH] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_bit_DASHshl] = ACTIONS(1024), + [anon_sym_bit_DASHshr] = ACTIONS(1024), + [anon_sym_EQ_EQ] = ACTIONS(1024), + [anon_sym_BANG_EQ] = ACTIONS(1024), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ] = ACTIONS(1024), + [anon_sym_GT_EQ] = ACTIONS(1024), + [anon_sym_not_DASHin] = ACTIONS(1024), + [anon_sym_starts_DASHwith] = ACTIONS(1024), + [anon_sym_ends_DASHwith] = ACTIONS(1024), + [anon_sym_EQ_TILDE] = ACTIONS(1024), + [anon_sym_BANG_TILDE] = ACTIONS(1024), + [anon_sym_bit_DASHand] = ACTIONS(1024), + [anon_sym_bit_DASHxor] = ACTIONS(1024), + [anon_sym_bit_DASHor] = ACTIONS(1024), + [anon_sym_and] = ACTIONS(1024), + [anon_sym_xor] = ACTIONS(1024), + [anon_sym_or] = ACTIONS(1024), + [anon_sym_not] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT] = ACTIONS(1024), + [anon_sym_null] = ACTIONS(1024), + [anon_sym_true] = ACTIONS(1024), + [anon_sym_false] = ACTIONS(1024), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1024), + [aux_sym__val_number_token1] = ACTIONS(1024), + [aux_sym__val_number_token2] = ACTIONS(1024), + [aux_sym__val_number_token3] = ACTIONS(1024), + [aux_sym__val_number_token4] = ACTIONS(1024), + [aux_sym__val_number_token5] = ACTIONS(1024), + [aux_sym__val_number_token6] = ACTIONS(1024), + [anon_sym_0b] = ACTIONS(1024), + [anon_sym_0o] = ACTIONS(1024), + [anon_sym_0x] = ACTIONS(1024), + [sym_val_date] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym__str_single_quotes] = ACTIONS(1024), + [sym__str_back_ticks] = ACTIONS(1024), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1024), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1024), + [anon_sym_CARET] = ACTIONS(1024), [anon_sym_POUND] = ACTIONS(113), }, [302] = { + [sym_path] = STATE(408), [sym_comment] = STATE(302), - [anon_sym_export] = ACTIONS(909), - [anon_sym_alias] = ACTIONS(909), - [anon_sym_let] = ACTIONS(909), - [anon_sym_let_DASHenv] = ACTIONS(909), - [anon_sym_mut] = ACTIONS(909), - [anon_sym_const] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(909), - [sym_cmd_identifier] = ACTIONS(909), - [anon_sym_LF] = ACTIONS(911), - [anon_sym_def] = ACTIONS(909), - [anon_sym_export_DASHenv] = ACTIONS(909), - [anon_sym_extern] = ACTIONS(909), - [anon_sym_module] = ACTIONS(909), - [anon_sym_use] = ACTIONS(909), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_RPAREN] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_error] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_break] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_for] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_loop] = ACTIONS(909), - [anon_sym_while] = ACTIONS(909), - [anon_sym_do] = ACTIONS(909), - [anon_sym_if] = ACTIONS(909), - [anon_sym_match] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_RBRACE] = ACTIONS(909), - [anon_sym_DOT_DOT] = ACTIONS(909), - [anon_sym_try] = ACTIONS(909), - [anon_sym_return] = ACTIONS(909), - [anon_sym_source] = ACTIONS(909), - [anon_sym_source_DASHenv] = ACTIONS(909), - [anon_sym_register] = ACTIONS(909), - [anon_sym_hide] = ACTIONS(909), - [anon_sym_hide_DASHenv] = ACTIONS(909), - [anon_sym_overlay] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_where] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(909), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(909), - [anon_sym_SLASH_SLASH] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(909), - [anon_sym_bit_DASHshr] = ACTIONS(909), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_not_DASHin] = ACTIONS(909), - [anon_sym_starts_DASHwith] = ACTIONS(909), - [anon_sym_ends_DASHwith] = ACTIONS(909), - [anon_sym_EQ_TILDE] = ACTIONS(909), - [anon_sym_BANG_TILDE] = ACTIONS(909), - [anon_sym_bit_DASHand] = ACTIONS(909), - [anon_sym_bit_DASHxor] = ACTIONS(909), - [anon_sym_bit_DASHor] = ACTIONS(909), - [anon_sym_and] = ACTIONS(909), - [anon_sym_xor] = ACTIONS(909), - [anon_sym_or] = ACTIONS(909), - [anon_sym_not] = ACTIONS(909), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [anon_sym_null] = ACTIONS(909), - [anon_sym_true] = ACTIONS(909), - [anon_sym_false] = ACTIONS(909), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(909), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(909), - [aux_sym__val_number_token1] = ACTIONS(909), - [aux_sym__val_number_token2] = ACTIONS(909), - [aux_sym__val_number_token3] = ACTIONS(909), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(909), - [aux_sym__val_number_token6] = ACTIONS(909), - [anon_sym_0b] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(909), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym__str_single_quotes] = ACTIONS(909), - [sym__str_back_ticks] = ACTIONS(909), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), - [anon_sym_CARET] = ACTIONS(909), - [aux_sym_unquoted_token5] = ACTIONS(909), + [aux_sym_cell_path_repeat1] = STATE(298), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_EQ] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_PLUS_EQ] = ACTIONS(1010), + [anon_sym_DASH_EQ] = ACTIONS(1010), + [anon_sym_STAR_EQ] = ACTIONS(1010), + [anon_sym_SLASH_EQ] = ACTIONS(1010), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_COLON] = ACTIONS(1010), + [anon_sym_COMMA] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_list] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_make] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_else] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_catch] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_new] = ACTIONS(1010), + [anon_sym_as] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_DOT_DOT2] = ACTIONS(1010), + [anon_sym_DOT] = ACTIONS(1110), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), + [aux_sym__val_number_decimal_token1] = ACTIONS(1010), + [aux_sym__val_number_decimal_token2] = ACTIONS(1010), + [anon_sym_DOT2] = ACTIONS(1010), + [aux_sym__val_number_decimal_token3] = 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(1010), + [aux_sym__val_number_token5] = ACTIONS(1010), + [aux_sym__val_number_token6] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [aux_sym__record_key_token2] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(113), }, [303] = { [sym_comment] = STATE(303), - [anon_sym_export] = ACTIONS(917), - [anon_sym_alias] = ACTIONS(917), - [anon_sym_let] = ACTIONS(917), - [anon_sym_let_DASHenv] = ACTIONS(917), - [anon_sym_mut] = ACTIONS(917), - [anon_sym_const] = ACTIONS(917), - [anon_sym_SEMI] = ACTIONS(917), - [sym_cmd_identifier] = ACTIONS(917), - [anon_sym_LF] = ACTIONS(919), - [anon_sym_def] = ACTIONS(917), - [anon_sym_export_DASHenv] = ACTIONS(917), - [anon_sym_extern] = ACTIONS(917), - [anon_sym_module] = ACTIONS(917), - [anon_sym_use] = ACTIONS(917), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_LPAREN] = ACTIONS(917), - [anon_sym_RPAREN] = ACTIONS(917), - [anon_sym_DOLLAR] = ACTIONS(917), - [anon_sym_error] = ACTIONS(917), - [anon_sym_GT] = ACTIONS(917), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_break] = ACTIONS(917), - [anon_sym_continue] = ACTIONS(917), - [anon_sym_for] = ACTIONS(917), - [anon_sym_in] = ACTIONS(917), - [anon_sym_loop] = ACTIONS(917), - [anon_sym_while] = ACTIONS(917), - [anon_sym_do] = ACTIONS(917), - [anon_sym_if] = ACTIONS(917), - [anon_sym_match] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(917), - [anon_sym_RBRACE] = ACTIONS(917), - [anon_sym_DOT_DOT] = ACTIONS(917), - [anon_sym_try] = ACTIONS(917), - [anon_sym_return] = ACTIONS(917), - [anon_sym_source] = ACTIONS(917), - [anon_sym_source_DASHenv] = ACTIONS(917), - [anon_sym_register] = ACTIONS(917), - [anon_sym_hide] = ACTIONS(917), - [anon_sym_hide_DASHenv] = ACTIONS(917), - [anon_sym_overlay] = ACTIONS(917), - [anon_sym_STAR] = ACTIONS(917), - [anon_sym_where] = ACTIONS(917), - [anon_sym_STAR_STAR] = ACTIONS(917), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_mod] = ACTIONS(917), - [anon_sym_SLASH_SLASH] = ACTIONS(917), - [anon_sym_PLUS] = ACTIONS(917), - [anon_sym_bit_DASHshl] = ACTIONS(917), - [anon_sym_bit_DASHshr] = ACTIONS(917), - [anon_sym_EQ_EQ] = ACTIONS(917), - [anon_sym_BANG_EQ] = ACTIONS(917), - [anon_sym_LT2] = ACTIONS(917), - [anon_sym_LT_EQ] = ACTIONS(917), - [anon_sym_GT_EQ] = ACTIONS(917), - [anon_sym_not_DASHin] = ACTIONS(917), - [anon_sym_starts_DASHwith] = ACTIONS(917), - [anon_sym_ends_DASHwith] = ACTIONS(917), - [anon_sym_EQ_TILDE] = ACTIONS(917), - [anon_sym_BANG_TILDE] = ACTIONS(917), - [anon_sym_bit_DASHand] = ACTIONS(917), - [anon_sym_bit_DASHxor] = ACTIONS(917), - [anon_sym_bit_DASHor] = ACTIONS(917), - [anon_sym_and] = ACTIONS(917), - [anon_sym_xor] = ACTIONS(917), - [anon_sym_or] = ACTIONS(917), - [anon_sym_not] = ACTIONS(917), - [anon_sym_DOT_DOT2] = ACTIONS(917), - [anon_sym_DOT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ] = ACTIONS(917), - [anon_sym_DOT_DOT_LT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(919), - [anon_sym_DOT_DOT_LT2] = ACTIONS(919), - [anon_sym_null] = ACTIONS(917), - [anon_sym_true] = ACTIONS(917), - [anon_sym_false] = ACTIONS(917), - [aux_sym__val_number_decimal_token1] = ACTIONS(917), - [aux_sym__val_number_decimal_token2] = ACTIONS(917), - [anon_sym_DOT2] = ACTIONS(917), - [aux_sym__val_number_decimal_token3] = ACTIONS(917), - [aux_sym__val_number_token1] = ACTIONS(917), - [aux_sym__val_number_token2] = ACTIONS(917), - [aux_sym__val_number_token3] = ACTIONS(917), - [aux_sym__val_number_token4] = ACTIONS(917), - [aux_sym__val_number_token5] = ACTIONS(917), - [aux_sym__val_number_token6] = ACTIONS(917), - [anon_sym_0b] = ACTIONS(917), - [sym_filesize_unit] = ACTIONS(917), - [sym_duration_unit] = ACTIONS(917), - [anon_sym_0o] = ACTIONS(917), - [anon_sym_0x] = ACTIONS(917), - [sym_val_date] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(917), - [sym__str_single_quotes] = ACTIONS(917), - [sym__str_back_ticks] = ACTIONS(917), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(917), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(917), - [anon_sym_CARET] = ACTIONS(917), - [aux_sym_unquoted_token5] = ACTIONS(917), + [ts_builtin_sym_end] = ACTIONS(1063), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_alias] = ACTIONS(1061), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_let_DASHenv] = ACTIONS(1061), + [anon_sym_mut] = ACTIONS(1061), + [anon_sym_const] = ACTIONS(1061), + [anon_sym_SEMI] = ACTIONS(1061), + [sym_cmd_identifier] = ACTIONS(1061), + [anon_sym_LF] = ACTIONS(1063), + [anon_sym_def] = ACTIONS(1061), + [anon_sym_export_DASHenv] = ACTIONS(1061), + [anon_sym_extern] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_use] = ACTIONS(1061), + [anon_sym_LBRACK] = ACTIONS(1061), + [anon_sym_LPAREN] = ACTIONS(1061), + [anon_sym_DOLLAR] = ACTIONS(1061), + [anon_sym_error] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_DASH_DASH] = ACTIONS(1061), + [anon_sym_DASH] = ACTIONS(1061), + [anon_sym_break] = ACTIONS(1061), + [anon_sym_continue] = ACTIONS(1061), + [anon_sym_for] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1061), + [anon_sym_loop] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(1061), + [anon_sym_do] = ACTIONS(1061), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_match] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(1061), + [anon_sym_DOT_DOT] = ACTIONS(1061), + [anon_sym_try] = ACTIONS(1061), + [anon_sym_return] = ACTIONS(1061), + [anon_sym_source] = ACTIONS(1061), + [anon_sym_source_DASHenv] = ACTIONS(1061), + [anon_sym_register] = ACTIONS(1061), + [anon_sym_hide] = ACTIONS(1061), + [anon_sym_hide_DASHenv] = ACTIONS(1061), + [anon_sym_overlay] = ACTIONS(1061), + [anon_sym_as] = ACTIONS(1061), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_where] = ACTIONS(1061), + [anon_sym_STAR_STAR] = ACTIONS(1061), + [anon_sym_PLUS_PLUS] = ACTIONS(1061), + [anon_sym_SLASH] = ACTIONS(1061), + [anon_sym_mod] = ACTIONS(1061), + [anon_sym_SLASH_SLASH] = ACTIONS(1061), + [anon_sym_PLUS] = ACTIONS(1061), + [anon_sym_bit_DASHshl] = ACTIONS(1061), + [anon_sym_bit_DASHshr] = ACTIONS(1061), + [anon_sym_EQ_EQ] = ACTIONS(1061), + [anon_sym_BANG_EQ] = ACTIONS(1061), + [anon_sym_LT2] = ACTIONS(1061), + [anon_sym_LT_EQ] = ACTIONS(1061), + [anon_sym_GT_EQ] = ACTIONS(1061), + [anon_sym_not_DASHin] = ACTIONS(1061), + [anon_sym_starts_DASHwith] = ACTIONS(1061), + [anon_sym_ends_DASHwith] = ACTIONS(1061), + [anon_sym_EQ_TILDE] = ACTIONS(1061), + [anon_sym_BANG_TILDE] = ACTIONS(1061), + [anon_sym_bit_DASHand] = ACTIONS(1061), + [anon_sym_bit_DASHxor] = ACTIONS(1061), + [anon_sym_bit_DASHor] = ACTIONS(1061), + [anon_sym_and] = ACTIONS(1061), + [anon_sym_xor] = ACTIONS(1061), + [anon_sym_or] = ACTIONS(1061), + [anon_sym_not] = ACTIONS(1061), + [anon_sym_DOT_DOT2] = ACTIONS(1061), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1061), + [anon_sym_DOT_DOT_LT] = ACTIONS(1061), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1063), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1063), + [anon_sym_null] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1061), + [anon_sym_false] = ACTIONS(1061), + [aux_sym__val_number_decimal_token1] = ACTIONS(1061), + [aux_sym__val_number_decimal_token2] = ACTIONS(1061), + [anon_sym_DOT2] = ACTIONS(1061), + [aux_sym__val_number_decimal_token3] = ACTIONS(1061), + [aux_sym__val_number_token1] = ACTIONS(1061), + [aux_sym__val_number_token2] = ACTIONS(1061), + [aux_sym__val_number_token3] = ACTIONS(1061), + [aux_sym__val_number_token4] = ACTIONS(1061), + [aux_sym__val_number_token5] = ACTIONS(1061), + [aux_sym__val_number_token6] = ACTIONS(1061), + [anon_sym_0b] = ACTIONS(1061), + [anon_sym_0o] = ACTIONS(1061), + [anon_sym_0x] = ACTIONS(1061), + [sym_val_date] = ACTIONS(1061), + [anon_sym_DQUOTE] = ACTIONS(1061), + [sym__str_single_quotes] = ACTIONS(1061), + [sym__str_back_ticks] = ACTIONS(1061), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1061), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1061), + [anon_sym_CARET] = ACTIONS(1061), [anon_sym_POUND] = ACTIONS(113), }, [304] = { [sym_comment] = STATE(304), - [ts_builtin_sym_end] = ACTIONS(911), - [anon_sym_export] = ACTIONS(909), - [anon_sym_alias] = ACTIONS(909), - [anon_sym_let] = ACTIONS(909), - [anon_sym_let_DASHenv] = ACTIONS(909), - [anon_sym_mut] = ACTIONS(909), - [anon_sym_const] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(909), - [sym_cmd_identifier] = ACTIONS(909), - [anon_sym_LF] = ACTIONS(911), - [anon_sym_def] = ACTIONS(909), - [anon_sym_export_DASHenv] = ACTIONS(909), - [anon_sym_extern] = ACTIONS(909), - [anon_sym_module] = ACTIONS(909), - [anon_sym_use] = ACTIONS(909), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_error] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_break] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_for] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_loop] = ACTIONS(909), - [anon_sym_while] = ACTIONS(909), - [anon_sym_do] = ACTIONS(909), - [anon_sym_if] = ACTIONS(909), - [anon_sym_match] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_DOT_DOT] = ACTIONS(909), - [anon_sym_try] = ACTIONS(909), - [anon_sym_return] = ACTIONS(909), - [anon_sym_source] = ACTIONS(909), - [anon_sym_source_DASHenv] = ACTIONS(909), - [anon_sym_register] = ACTIONS(909), - [anon_sym_hide] = ACTIONS(909), - [anon_sym_hide_DASHenv] = ACTIONS(909), - [anon_sym_overlay] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_where] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(909), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(909), - [anon_sym_SLASH_SLASH] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(909), - [anon_sym_bit_DASHshr] = ACTIONS(909), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_not_DASHin] = ACTIONS(909), - [anon_sym_starts_DASHwith] = ACTIONS(909), - [anon_sym_ends_DASHwith] = ACTIONS(909), - [anon_sym_EQ_TILDE] = ACTIONS(909), - [anon_sym_BANG_TILDE] = ACTIONS(909), - [anon_sym_bit_DASHand] = ACTIONS(909), - [anon_sym_bit_DASHxor] = ACTIONS(909), - [anon_sym_bit_DASHor] = ACTIONS(909), - [anon_sym_and] = ACTIONS(909), - [anon_sym_xor] = ACTIONS(909), - [anon_sym_or] = ACTIONS(909), - [anon_sym_not] = ACTIONS(909), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [aux_sym__immediate_decimal_token1] = ACTIONS(1095), - [aux_sym__immediate_decimal_token2] = ACTIONS(1097), - [anon_sym_null] = ACTIONS(909), - [anon_sym_true] = ACTIONS(909), - [anon_sym_false] = ACTIONS(909), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(909), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(909), - [aux_sym__val_number_token1] = ACTIONS(909), - [aux_sym__val_number_token2] = ACTIONS(909), - [aux_sym__val_number_token3] = ACTIONS(909), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(909), - [aux_sym__val_number_token6] = ACTIONS(909), - [anon_sym_0b] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(909), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym__str_single_quotes] = ACTIONS(909), - [sym__str_back_ticks] = ACTIONS(909), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), - [anon_sym_CARET] = ACTIONS(909), + [anon_sym_export] = ACTIONS(1033), + [anon_sym_alias] = ACTIONS(1033), + [anon_sym_let] = ACTIONS(1033), + [anon_sym_let_DASHenv] = ACTIONS(1033), + [anon_sym_mut] = ACTIONS(1033), + [anon_sym_const] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(1033), + [sym_cmd_identifier] = ACTIONS(1033), + [anon_sym_LF] = ACTIONS(1035), + [anon_sym_def] = ACTIONS(1033), + [anon_sym_export_DASHenv] = ACTIONS(1033), + [anon_sym_extern] = ACTIONS(1033), + [anon_sym_module] = ACTIONS(1033), + [anon_sym_use] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1033), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_RPAREN] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_error] = ACTIONS(1033), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1033), + [anon_sym_break] = ACTIONS(1033), + [anon_sym_continue] = ACTIONS(1033), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_in] = ACTIONS(1033), + [anon_sym_loop] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(1033), + [anon_sym_do] = ACTIONS(1033), + [anon_sym_if] = ACTIONS(1033), + [anon_sym_match] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1033), + [anon_sym_DOT_DOT] = ACTIONS(1033), + [anon_sym_try] = ACTIONS(1033), + [anon_sym_return] = ACTIONS(1033), + [anon_sym_source] = ACTIONS(1033), + [anon_sym_source_DASHenv] = ACTIONS(1033), + [anon_sym_register] = ACTIONS(1033), + [anon_sym_hide] = ACTIONS(1033), + [anon_sym_hide_DASHenv] = ACTIONS(1033), + [anon_sym_overlay] = ACTIONS(1033), + [anon_sym_as] = ACTIONS(1033), + [anon_sym_STAR] = ACTIONS(1033), + [anon_sym_where] = ACTIONS(1033), + [anon_sym_QMARK2] = ACTIONS(1033), + [anon_sym_STAR_STAR] = ACTIONS(1033), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_SLASH] = ACTIONS(1033), + [anon_sym_mod] = ACTIONS(1033), + [anon_sym_SLASH_SLASH] = ACTIONS(1033), + [anon_sym_PLUS] = ACTIONS(1033), + [anon_sym_bit_DASHshl] = ACTIONS(1033), + [anon_sym_bit_DASHshr] = ACTIONS(1033), + [anon_sym_EQ_EQ] = ACTIONS(1033), + [anon_sym_BANG_EQ] = ACTIONS(1033), + [anon_sym_LT2] = ACTIONS(1033), + [anon_sym_LT_EQ] = ACTIONS(1033), + [anon_sym_GT_EQ] = ACTIONS(1033), + [anon_sym_not_DASHin] = ACTIONS(1033), + [anon_sym_starts_DASHwith] = ACTIONS(1033), + [anon_sym_ends_DASHwith] = ACTIONS(1033), + [anon_sym_EQ_TILDE] = ACTIONS(1033), + [anon_sym_BANG_TILDE] = ACTIONS(1033), + [anon_sym_bit_DASHand] = ACTIONS(1033), + [anon_sym_bit_DASHxor] = ACTIONS(1033), + [anon_sym_bit_DASHor] = ACTIONS(1033), + [anon_sym_and] = ACTIONS(1033), + [anon_sym_xor] = ACTIONS(1033), + [anon_sym_or] = ACTIONS(1033), + [anon_sym_not] = ACTIONS(1033), + [anon_sym_DOT] = ACTIONS(1033), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1033), + [anon_sym_DOT_DOT_LT] = ACTIONS(1033), + [anon_sym_null] = ACTIONS(1033), + [anon_sym_true] = ACTIONS(1033), + [anon_sym_false] = ACTIONS(1033), + [aux_sym__val_number_decimal_token1] = ACTIONS(1033), + [aux_sym__val_number_decimal_token2] = ACTIONS(1033), + [anon_sym_DOT2] = ACTIONS(1033), + [aux_sym__val_number_decimal_token3] = ACTIONS(1033), + [aux_sym__val_number_token1] = ACTIONS(1033), + [aux_sym__val_number_token2] = ACTIONS(1033), + [aux_sym__val_number_token3] = ACTIONS(1033), + [aux_sym__val_number_token4] = ACTIONS(1033), + [aux_sym__val_number_token5] = ACTIONS(1033), + [aux_sym__val_number_token6] = ACTIONS(1033), + [anon_sym_0b] = ACTIONS(1033), + [anon_sym_0o] = ACTIONS(1033), + [anon_sym_0x] = ACTIONS(1033), + [sym_val_date] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [sym__str_single_quotes] = ACTIONS(1033), + [sym__str_back_ticks] = ACTIONS(1033), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1033), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1033), + [anon_sym_CARET] = ACTIONS(1033), [anon_sym_POUND] = ACTIONS(113), }, [305] = { [sym_comment] = STATE(305), - [ts_builtin_sym_end] = ACTIONS(961), - [anon_sym_export] = ACTIONS(959), - [anon_sym_alias] = ACTIONS(959), - [anon_sym_let] = ACTIONS(959), - [anon_sym_let_DASHenv] = ACTIONS(959), - [anon_sym_mut] = ACTIONS(959), - [anon_sym_const] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(959), - [sym_cmd_identifier] = ACTIONS(959), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_def] = ACTIONS(959), - [anon_sym_export_DASHenv] = ACTIONS(959), - [anon_sym_extern] = ACTIONS(959), - [anon_sym_module] = ACTIONS(959), - [anon_sym_use] = ACTIONS(959), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_error] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_break] = ACTIONS(959), - [anon_sym_continue] = ACTIONS(959), - [anon_sym_for] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_loop] = ACTIONS(959), - [anon_sym_while] = ACTIONS(959), - [anon_sym_do] = ACTIONS(959), - [anon_sym_if] = ACTIONS(959), - [anon_sym_match] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_try] = ACTIONS(959), - [anon_sym_return] = ACTIONS(959), - [anon_sym_source] = ACTIONS(959), - [anon_sym_source_DASHenv] = ACTIONS(959), - [anon_sym_register] = ACTIONS(959), - [anon_sym_hide] = ACTIONS(959), - [anon_sym_hide_DASHenv] = ACTIONS(959), - [anon_sym_overlay] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_where] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(959), - [anon_sym_PLUS_PLUS] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(959), - [anon_sym_SLASH_SLASH] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(959), - [anon_sym_bit_DASHshr] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(959), - [anon_sym_BANG_EQ] = ACTIONS(959), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(959), - [anon_sym_GT_EQ] = ACTIONS(959), - [anon_sym_not_DASHin] = ACTIONS(959), - [anon_sym_starts_DASHwith] = ACTIONS(959), - [anon_sym_ends_DASHwith] = ACTIONS(959), - [anon_sym_EQ_TILDE] = ACTIONS(959), - [anon_sym_BANG_TILDE] = ACTIONS(959), - [anon_sym_bit_DASHand] = ACTIONS(959), - [anon_sym_bit_DASHxor] = ACTIONS(959), - [anon_sym_bit_DASHor] = ACTIONS(959), - [anon_sym_and] = ACTIONS(959), - [anon_sym_xor] = ACTIONS(959), - [anon_sym_or] = ACTIONS(959), - [anon_sym_not] = ACTIONS(959), - [anon_sym_DOT_DOT2] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(1099), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_DOT_DOT_LT] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(983), - [anon_sym_DOT_DOT_LT2] = ACTIONS(983), - [anon_sym_null] = ACTIONS(959), - [anon_sym_true] = ACTIONS(959), - [anon_sym_false] = ACTIONS(959), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(959), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(959), - [aux_sym__val_number_token1] = ACTIONS(959), - [aux_sym__val_number_token2] = ACTIONS(959), - [aux_sym__val_number_token3] = ACTIONS(959), - [aux_sym__val_number_token4] = ACTIONS(959), - [aux_sym__val_number_token5] = ACTIONS(959), - [aux_sym__val_number_token6] = ACTIONS(959), - [anon_sym_0b] = ACTIONS(959), - [sym_filesize_unit] = ACTIONS(1101), - [sym_duration_unit] = ACTIONS(1103), - [anon_sym_0o] = ACTIONS(959), - [anon_sym_0x] = ACTIONS(959), - [sym_val_date] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [sym__str_single_quotes] = ACTIONS(959), - [sym__str_back_ticks] = ACTIONS(959), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(959), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(959), - [anon_sym_CARET] = ACTIONS(959), - [aux_sym_unquoted_token5] = ACTIONS(1105), + [ts_builtin_sym_end] = ACTIONS(1074), + [anon_sym_export] = ACTIONS(1072), + [anon_sym_alias] = ACTIONS(1072), + [anon_sym_let] = ACTIONS(1072), + [anon_sym_let_DASHenv] = ACTIONS(1072), + [anon_sym_mut] = ACTIONS(1072), + [anon_sym_const] = ACTIONS(1072), + [anon_sym_SEMI] = ACTIONS(1072), + [sym_cmd_identifier] = ACTIONS(1072), + [anon_sym_LF] = ACTIONS(1074), + [anon_sym_def] = ACTIONS(1072), + [anon_sym_export_DASHenv] = ACTIONS(1072), + [anon_sym_extern] = ACTIONS(1072), + [anon_sym_module] = ACTIONS(1072), + [anon_sym_use] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1072), + [anon_sym_LPAREN] = ACTIONS(1072), + [anon_sym_DOLLAR] = ACTIONS(1072), + [anon_sym_error] = ACTIONS(1072), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_DASH_DASH] = ACTIONS(1072), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_break] = ACTIONS(1072), + [anon_sym_continue] = ACTIONS(1072), + [anon_sym_for] = ACTIONS(1072), + [anon_sym_in] = ACTIONS(1076), + [anon_sym_loop] = ACTIONS(1072), + [anon_sym_while] = ACTIONS(1072), + [anon_sym_do] = ACTIONS(1072), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_match] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_DOT_DOT] = ACTIONS(1072), + [anon_sym_try] = ACTIONS(1072), + [anon_sym_return] = ACTIONS(1072), + [anon_sym_source] = ACTIONS(1072), + [anon_sym_source_DASHenv] = ACTIONS(1072), + [anon_sym_register] = ACTIONS(1072), + [anon_sym_hide] = ACTIONS(1072), + [anon_sym_hide_DASHenv] = ACTIONS(1072), + [anon_sym_overlay] = ACTIONS(1072), + [anon_sym_as] = ACTIONS(1072), + [anon_sym_STAR] = ACTIONS(1076), + [anon_sym_where] = ACTIONS(1072), + [anon_sym_STAR_STAR] = ACTIONS(1076), + [anon_sym_PLUS_PLUS] = ACTIONS(1076), + [anon_sym_SLASH] = ACTIONS(1076), + [anon_sym_mod] = ACTIONS(1076), + [anon_sym_SLASH_SLASH] = ACTIONS(1076), + [anon_sym_PLUS] = ACTIONS(1076), + [anon_sym_bit_DASHshl] = ACTIONS(1076), + [anon_sym_bit_DASHshr] = ACTIONS(1076), + [anon_sym_EQ_EQ] = ACTIONS(1076), + [anon_sym_BANG_EQ] = ACTIONS(1076), + [anon_sym_LT2] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1076), + [anon_sym_GT_EQ] = ACTIONS(1076), + [anon_sym_not_DASHin] = ACTIONS(1076), + [anon_sym_starts_DASHwith] = ACTIONS(1076), + [anon_sym_ends_DASHwith] = ACTIONS(1076), + [anon_sym_EQ_TILDE] = ACTIONS(1076), + [anon_sym_BANG_TILDE] = ACTIONS(1076), + [anon_sym_bit_DASHand] = ACTIONS(1076), + [anon_sym_bit_DASHxor] = ACTIONS(1076), + [anon_sym_bit_DASHor] = ACTIONS(1076), + [anon_sym_and] = ACTIONS(1076), + [anon_sym_xor] = ACTIONS(1076), + [anon_sym_or] = ACTIONS(1076), + [anon_sym_not] = ACTIONS(1072), + [anon_sym_DOT_DOT2] = ACTIONS(1114), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1072), + [anon_sym_DOT_DOT_LT] = ACTIONS(1072), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1116), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1116), + [anon_sym_null] = ACTIONS(1072), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [aux_sym__val_number_decimal_token1] = ACTIONS(1072), + [aux_sym__val_number_decimal_token2] = ACTIONS(1072), + [anon_sym_DOT2] = ACTIONS(1072), + [aux_sym__val_number_decimal_token3] = ACTIONS(1072), + [aux_sym__val_number_token1] = ACTIONS(1072), + [aux_sym__val_number_token2] = ACTIONS(1072), + [aux_sym__val_number_token3] = ACTIONS(1072), + [aux_sym__val_number_token4] = ACTIONS(1072), + [aux_sym__val_number_token5] = ACTIONS(1072), + [aux_sym__val_number_token6] = ACTIONS(1072), + [anon_sym_0b] = ACTIONS(1072), + [anon_sym_0o] = ACTIONS(1072), + [anon_sym_0x] = ACTIONS(1072), + [sym_val_date] = ACTIONS(1072), + [anon_sym_DQUOTE] = ACTIONS(1072), + [sym__str_single_quotes] = ACTIONS(1072), + [sym__str_back_ticks] = ACTIONS(1072), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1072), + [anon_sym_CARET] = ACTIONS(1072), [anon_sym_POUND] = ACTIONS(113), }, [306] = { [sym_comment] = STATE(306), - [ts_builtin_sym_end] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(1059), - [anon_sym_alias] = ACTIONS(1059), - [anon_sym_let] = ACTIONS(1059), - [anon_sym_let_DASHenv] = ACTIONS(1059), - [anon_sym_mut] = ACTIONS(1059), - [anon_sym_const] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [sym_cmd_identifier] = ACTIONS(1059), - [anon_sym_LF] = ACTIONS(1061), - [anon_sym_def] = ACTIONS(1059), - [anon_sym_export_DASHenv] = ACTIONS(1059), - [anon_sym_extern] = ACTIONS(1059), - [anon_sym_module] = ACTIONS(1059), - [anon_sym_use] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_error] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_DASH_DASH] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_break] = ACTIONS(1059), - [anon_sym_continue] = ACTIONS(1059), - [anon_sym_for] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1059), - [anon_sym_loop] = ACTIONS(1059), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_do] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1059), - [anon_sym_match] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_try] = ACTIONS(1059), - [anon_sym_return] = ACTIONS(1059), - [anon_sym_source] = ACTIONS(1059), - [anon_sym_source_DASHenv] = ACTIONS(1059), - [anon_sym_register] = ACTIONS(1059), - [anon_sym_hide] = ACTIONS(1059), - [anon_sym_hide_DASHenv] = ACTIONS(1059), - [anon_sym_overlay] = ACTIONS(1059), - [anon_sym_as] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(1059), - [anon_sym_QMARK2] = ACTIONS(1059), - [anon_sym_STAR_STAR] = ACTIONS(1059), - [anon_sym_PLUS_PLUS] = ACTIONS(1059), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_mod] = ACTIONS(1059), - [anon_sym_SLASH_SLASH] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_bit_DASHshl] = ACTIONS(1059), - [anon_sym_bit_DASHshr] = ACTIONS(1059), - [anon_sym_EQ_EQ] = ACTIONS(1059), - [anon_sym_BANG_EQ] = ACTIONS(1059), - [anon_sym_LT2] = ACTIONS(1059), - [anon_sym_LT_EQ] = ACTIONS(1059), - [anon_sym_GT_EQ] = ACTIONS(1059), - [anon_sym_not_DASHin] = ACTIONS(1059), - [anon_sym_starts_DASHwith] = ACTIONS(1059), - [anon_sym_ends_DASHwith] = ACTIONS(1059), - [anon_sym_EQ_TILDE] = ACTIONS(1059), - [anon_sym_BANG_TILDE] = ACTIONS(1059), - [anon_sym_bit_DASHand] = ACTIONS(1059), - [anon_sym_bit_DASHxor] = ACTIONS(1059), - [anon_sym_bit_DASHor] = ACTIONS(1059), - [anon_sym_and] = ACTIONS(1059), - [anon_sym_xor] = ACTIONS(1059), - [anon_sym_or] = ACTIONS(1059), - [anon_sym_not] = ACTIONS(1059), - [anon_sym_DOT_DOT2] = ACTIONS(1059), - [anon_sym_DOT] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1059), - [anon_sym_DOT_DOT_LT] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1061), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1061), - [anon_sym_null] = ACTIONS(1059), - [anon_sym_true] = ACTIONS(1059), - [anon_sym_false] = ACTIONS(1059), - [aux_sym__val_number_decimal_token1] = ACTIONS(1059), - [aux_sym__val_number_decimal_token2] = ACTIONS(1059), - [anon_sym_DOT2] = ACTIONS(1059), - [aux_sym__val_number_decimal_token3] = ACTIONS(1059), - [aux_sym__val_number_token1] = ACTIONS(1059), - [aux_sym__val_number_token2] = ACTIONS(1059), - [aux_sym__val_number_token3] = ACTIONS(1059), - [aux_sym__val_number_token4] = ACTIONS(1059), - [aux_sym__val_number_token5] = ACTIONS(1059), - [aux_sym__val_number_token6] = ACTIONS(1059), - [anon_sym_0b] = ACTIONS(1059), - [anon_sym_0o] = ACTIONS(1059), - [anon_sym_0x] = ACTIONS(1059), - [sym_val_date] = ACTIONS(1059), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym__str_single_quotes] = ACTIONS(1059), - [sym__str_back_ticks] = ACTIONS(1059), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1059), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1059), - [anon_sym_CARET] = ACTIONS(1059), + [anon_sym_export] = ACTIONS(1020), + [anon_sym_alias] = ACTIONS(1020), + [anon_sym_let] = ACTIONS(1020), + [anon_sym_let_DASHenv] = ACTIONS(1020), + [anon_sym_mut] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1020), + [sym_cmd_identifier] = ACTIONS(1020), + [anon_sym_LF] = ACTIONS(1022), + [anon_sym_def] = ACTIONS(1020), + [anon_sym_export_DASHenv] = ACTIONS(1020), + [anon_sym_extern] = ACTIONS(1020), + [anon_sym_module] = ACTIONS(1020), + [anon_sym_use] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1020), + [anon_sym_RPAREN] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_error] = ACTIONS(1020), + [anon_sym_GT] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1020), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_in] = ACTIONS(1020), + [anon_sym_loop] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_match] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_RBRACE] = ACTIONS(1020), + [anon_sym_DOT_DOT] = ACTIONS(1020), + [anon_sym_try] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_source] = ACTIONS(1020), + [anon_sym_source_DASHenv] = ACTIONS(1020), + [anon_sym_register] = ACTIONS(1020), + [anon_sym_hide] = ACTIONS(1020), + [anon_sym_hide_DASHenv] = ACTIONS(1020), + [anon_sym_overlay] = ACTIONS(1020), + [anon_sym_as] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_where] = ACTIONS(1020), + [anon_sym_QMARK2] = ACTIONS(1020), + [anon_sym_STAR_STAR] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1020), + [anon_sym_SLASH] = ACTIONS(1020), + [anon_sym_mod] = ACTIONS(1020), + [anon_sym_SLASH_SLASH] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_bit_DASHshl] = ACTIONS(1020), + [anon_sym_bit_DASHshr] = ACTIONS(1020), + [anon_sym_EQ_EQ] = ACTIONS(1020), + [anon_sym_BANG_EQ] = ACTIONS(1020), + [anon_sym_LT2] = ACTIONS(1020), + [anon_sym_LT_EQ] = ACTIONS(1020), + [anon_sym_GT_EQ] = ACTIONS(1020), + [anon_sym_not_DASHin] = ACTIONS(1020), + [anon_sym_starts_DASHwith] = ACTIONS(1020), + [anon_sym_ends_DASHwith] = ACTIONS(1020), + [anon_sym_EQ_TILDE] = ACTIONS(1020), + [anon_sym_BANG_TILDE] = ACTIONS(1020), + [anon_sym_bit_DASHand] = ACTIONS(1020), + [anon_sym_bit_DASHxor] = ACTIONS(1020), + [anon_sym_bit_DASHor] = ACTIONS(1020), + [anon_sym_and] = ACTIONS(1020), + [anon_sym_xor] = ACTIONS(1020), + [anon_sym_or] = ACTIONS(1020), + [anon_sym_not] = ACTIONS(1020), + [anon_sym_DOT] = ACTIONS(1020), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1020), + [anon_sym_DOT_DOT_LT] = ACTIONS(1020), + [anon_sym_null] = ACTIONS(1020), + [anon_sym_true] = ACTIONS(1020), + [anon_sym_false] = ACTIONS(1020), + [aux_sym__val_number_decimal_token1] = ACTIONS(1020), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [anon_sym_DOT2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1020), + [aux_sym__val_number_token1] = ACTIONS(1020), + [aux_sym__val_number_token2] = ACTIONS(1020), + [aux_sym__val_number_token3] = ACTIONS(1020), + [aux_sym__val_number_token4] = ACTIONS(1020), + [aux_sym__val_number_token5] = ACTIONS(1020), + [aux_sym__val_number_token6] = ACTIONS(1020), + [anon_sym_0b] = ACTIONS(1020), + [anon_sym_0o] = ACTIONS(1020), + [anon_sym_0x] = ACTIONS(1020), + [sym_val_date] = ACTIONS(1020), + [anon_sym_DQUOTE] = ACTIONS(1020), + [sym__str_single_quotes] = ACTIONS(1020), + [sym__str_back_ticks] = ACTIONS(1020), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1020), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1020), + [anon_sym_CARET] = ACTIONS(1020), [anon_sym_POUND] = ACTIONS(113), }, [307] = { + [sym_cell_path] = STATE(460), + [sym_path] = STATE(316), [sym_comment] = STATE(307), - [ts_builtin_sym_end] = ACTIONS(1065), - [anon_sym_export] = ACTIONS(1063), - [anon_sym_alias] = ACTIONS(1063), - [anon_sym_let] = ACTIONS(1063), - [anon_sym_let_DASHenv] = ACTIONS(1063), - [anon_sym_mut] = ACTIONS(1063), - [anon_sym_const] = ACTIONS(1063), - [anon_sym_SEMI] = ACTIONS(1063), - [sym_cmd_identifier] = ACTIONS(1063), - [anon_sym_LF] = ACTIONS(1065), - [anon_sym_def] = ACTIONS(1063), - [anon_sym_export_DASHenv] = ACTIONS(1063), - [anon_sym_extern] = ACTIONS(1063), - [anon_sym_module] = ACTIONS(1063), - [anon_sym_use] = ACTIONS(1063), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_error] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_DASH_DASH] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_break] = ACTIONS(1063), - [anon_sym_continue] = ACTIONS(1063), - [anon_sym_for] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1063), - [anon_sym_loop] = ACTIONS(1063), - [anon_sym_while] = ACTIONS(1063), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_if] = ACTIONS(1063), - [anon_sym_match] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1063), - [anon_sym_return] = ACTIONS(1063), - [anon_sym_source] = ACTIONS(1063), - [anon_sym_source_DASHenv] = ACTIONS(1063), - [anon_sym_register] = ACTIONS(1063), - [anon_sym_hide] = ACTIONS(1063), - [anon_sym_hide_DASHenv] = ACTIONS(1063), - [anon_sym_overlay] = ACTIONS(1063), - [anon_sym_as] = ACTIONS(1063), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_where] = ACTIONS(1063), - [anon_sym_QMARK2] = ACTIONS(1063), - [anon_sym_STAR_STAR] = ACTIONS(1063), - [anon_sym_PLUS_PLUS] = ACTIONS(1063), - [anon_sym_SLASH] = ACTIONS(1063), - [anon_sym_mod] = ACTIONS(1063), - [anon_sym_SLASH_SLASH] = ACTIONS(1063), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_bit_DASHshl] = ACTIONS(1063), - [anon_sym_bit_DASHshr] = ACTIONS(1063), - [anon_sym_EQ_EQ] = ACTIONS(1063), - [anon_sym_BANG_EQ] = ACTIONS(1063), - [anon_sym_LT2] = ACTIONS(1063), - [anon_sym_LT_EQ] = ACTIONS(1063), - [anon_sym_GT_EQ] = ACTIONS(1063), - [anon_sym_not_DASHin] = ACTIONS(1063), - [anon_sym_starts_DASHwith] = ACTIONS(1063), - [anon_sym_ends_DASHwith] = ACTIONS(1063), - [anon_sym_EQ_TILDE] = ACTIONS(1063), - [anon_sym_BANG_TILDE] = ACTIONS(1063), - [anon_sym_bit_DASHand] = ACTIONS(1063), - [anon_sym_bit_DASHxor] = ACTIONS(1063), - [anon_sym_bit_DASHor] = ACTIONS(1063), - [anon_sym_and] = ACTIONS(1063), - [anon_sym_xor] = ACTIONS(1063), - [anon_sym_or] = ACTIONS(1063), - [anon_sym_not] = ACTIONS(1063), - [anon_sym_DOT_DOT2] = ACTIONS(1063), - [anon_sym_DOT] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1063), - [anon_sym_DOT_DOT_LT] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1065), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1065), - [anon_sym_null] = ACTIONS(1063), - [anon_sym_true] = ACTIONS(1063), - [anon_sym_false] = ACTIONS(1063), - [aux_sym__val_number_decimal_token1] = ACTIONS(1063), - [aux_sym__val_number_decimal_token2] = ACTIONS(1063), - [anon_sym_DOT2] = ACTIONS(1063), - [aux_sym__val_number_decimal_token3] = ACTIONS(1063), - [aux_sym__val_number_token1] = ACTIONS(1063), - [aux_sym__val_number_token2] = ACTIONS(1063), - [aux_sym__val_number_token3] = ACTIONS(1063), - [aux_sym__val_number_token4] = ACTIONS(1063), - [aux_sym__val_number_token5] = ACTIONS(1063), - [aux_sym__val_number_token6] = ACTIONS(1063), - [anon_sym_0b] = ACTIONS(1063), - [anon_sym_0o] = ACTIONS(1063), - [anon_sym_0x] = ACTIONS(1063), - [sym_val_date] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [sym__str_single_quotes] = ACTIONS(1063), - [sym__str_back_ticks] = ACTIONS(1063), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1063), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1063), - [anon_sym_CARET] = ACTIONS(1063), + [ts_builtin_sym_end] = ACTIONS(1087), + [anon_sym_export] = ACTIONS(1085), + [anon_sym_alias] = ACTIONS(1085), + [anon_sym_let] = ACTIONS(1085), + [anon_sym_let_DASHenv] = ACTIONS(1085), + [anon_sym_mut] = ACTIONS(1085), + [anon_sym_const] = ACTIONS(1085), + [anon_sym_SEMI] = ACTIONS(1085), + [sym_cmd_identifier] = ACTIONS(1085), + [anon_sym_LF] = ACTIONS(1087), + [anon_sym_def] = ACTIONS(1085), + [anon_sym_export_DASHenv] = ACTIONS(1085), + [anon_sym_extern] = ACTIONS(1085), + [anon_sym_module] = ACTIONS(1085), + [anon_sym_use] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LPAREN] = ACTIONS(1085), + [anon_sym_DOLLAR] = ACTIONS(1085), + [anon_sym_error] = ACTIONS(1085), + [anon_sym_GT] = ACTIONS(1085), + [anon_sym_DASH_DASH] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_break] = ACTIONS(1085), + [anon_sym_continue] = ACTIONS(1085), + [anon_sym_for] = ACTIONS(1085), + [anon_sym_in] = ACTIONS(1085), + [anon_sym_loop] = ACTIONS(1085), + [anon_sym_while] = ACTIONS(1085), + [anon_sym_do] = ACTIONS(1085), + [anon_sym_if] = ACTIONS(1085), + [anon_sym_match] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_return] = ACTIONS(1085), + [anon_sym_source] = ACTIONS(1085), + [anon_sym_source_DASHenv] = ACTIONS(1085), + [anon_sym_register] = ACTIONS(1085), + [anon_sym_hide] = ACTIONS(1085), + [anon_sym_hide_DASHenv] = ACTIONS(1085), + [anon_sym_overlay] = ACTIONS(1085), + [anon_sym_as] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(1085), + [anon_sym_where] = ACTIONS(1085), + [anon_sym_STAR_STAR] = ACTIONS(1085), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_SLASH] = ACTIONS(1085), + [anon_sym_mod] = ACTIONS(1085), + [anon_sym_SLASH_SLASH] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_bit_DASHshl] = ACTIONS(1085), + [anon_sym_bit_DASHshr] = ACTIONS(1085), + [anon_sym_EQ_EQ] = ACTIONS(1085), + [anon_sym_BANG_EQ] = ACTIONS(1085), + [anon_sym_LT2] = ACTIONS(1085), + [anon_sym_LT_EQ] = ACTIONS(1085), + [anon_sym_GT_EQ] = ACTIONS(1085), + [anon_sym_not_DASHin] = ACTIONS(1085), + [anon_sym_starts_DASHwith] = ACTIONS(1085), + [anon_sym_ends_DASHwith] = ACTIONS(1085), + [anon_sym_EQ_TILDE] = ACTIONS(1085), + [anon_sym_BANG_TILDE] = ACTIONS(1085), + [anon_sym_bit_DASHand] = ACTIONS(1085), + [anon_sym_bit_DASHxor] = ACTIONS(1085), + [anon_sym_bit_DASHor] = ACTIONS(1085), + [anon_sym_and] = ACTIONS(1085), + [anon_sym_xor] = ACTIONS(1085), + [anon_sym_or] = ACTIONS(1085), + [anon_sym_not] = ACTIONS(1085), + [anon_sym_DOT] = ACTIONS(1105), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1085), + [anon_sym_DOT_DOT_LT] = ACTIONS(1085), + [anon_sym_null] = ACTIONS(1085), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [aux_sym__val_number_decimal_token1] = ACTIONS(1085), + [aux_sym__val_number_decimal_token2] = ACTIONS(1085), + [anon_sym_DOT2] = ACTIONS(1085), + [aux_sym__val_number_decimal_token3] = ACTIONS(1085), + [aux_sym__val_number_token1] = ACTIONS(1085), + [aux_sym__val_number_token2] = ACTIONS(1085), + [aux_sym__val_number_token3] = ACTIONS(1085), + [aux_sym__val_number_token4] = ACTIONS(1085), + [aux_sym__val_number_token5] = ACTIONS(1085), + [aux_sym__val_number_token6] = ACTIONS(1085), + [anon_sym_0b] = ACTIONS(1085), + [anon_sym_0o] = ACTIONS(1085), + [anon_sym_0x] = ACTIONS(1085), + [sym_val_date] = ACTIONS(1085), + [anon_sym_DQUOTE] = ACTIONS(1085), + [sym__str_single_quotes] = ACTIONS(1085), + [sym__str_back_ticks] = ACTIONS(1085), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1085), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), [anon_sym_POUND] = ACTIONS(113), }, [308] = { [sym_comment] = STATE(308), - [ts_builtin_sym_end] = ACTIONS(1072), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_alias] = ACTIONS(1070), - [anon_sym_let] = ACTIONS(1070), - [anon_sym_let_DASHenv] = ACTIONS(1070), - [anon_sym_mut] = ACTIONS(1070), - [anon_sym_const] = ACTIONS(1070), - [anon_sym_SEMI] = ACTIONS(1070), - [sym_cmd_identifier] = ACTIONS(1070), - [anon_sym_LF] = ACTIONS(1072), - [anon_sym_def] = ACTIONS(1070), - [anon_sym_export_DASHenv] = ACTIONS(1070), - [anon_sym_extern] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_use] = ACTIONS(1070), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_error] = ACTIONS(1070), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_in] = ACTIONS(1070), - [anon_sym_loop] = ACTIONS(1070), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_do] = ACTIONS(1070), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_match] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_try] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_source] = ACTIONS(1070), - [anon_sym_source_DASHenv] = ACTIONS(1070), - [anon_sym_register] = ACTIONS(1070), - [anon_sym_hide] = ACTIONS(1070), - [anon_sym_hide_DASHenv] = ACTIONS(1070), - [anon_sym_overlay] = ACTIONS(1070), - [anon_sym_as] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_where] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(1107), - [anon_sym_STAR_STAR] = ACTIONS(1070), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_mod] = ACTIONS(1070), - [anon_sym_SLASH_SLASH] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_bit_DASHshl] = ACTIONS(1070), - [anon_sym_bit_DASHshr] = ACTIONS(1070), - [anon_sym_EQ_EQ] = ACTIONS(1070), - [anon_sym_BANG_EQ] = ACTIONS(1070), - [anon_sym_LT2] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1070), - [anon_sym_GT_EQ] = ACTIONS(1070), - [anon_sym_not_DASHin] = ACTIONS(1070), - [anon_sym_starts_DASHwith] = ACTIONS(1070), - [anon_sym_ends_DASHwith] = ACTIONS(1070), - [anon_sym_EQ_TILDE] = ACTIONS(1070), - [anon_sym_BANG_TILDE] = ACTIONS(1070), - [anon_sym_bit_DASHand] = ACTIONS(1070), - [anon_sym_bit_DASHxor] = ACTIONS(1070), - [anon_sym_bit_DASHor] = ACTIONS(1070), - [anon_sym_and] = ACTIONS(1070), - [anon_sym_xor] = ACTIONS(1070), - [anon_sym_or] = ACTIONS(1070), - [anon_sym_not] = ACTIONS(1070), - [anon_sym_DOT_DOT2] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1072), - [anon_sym_null] = ACTIONS(1070), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1070), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), - [anon_sym_CARET] = ACTIONS(1070), + [ts_builtin_sym_end] = ACTIONS(1091), + [anon_sym_export] = ACTIONS(1089), + [anon_sym_alias] = ACTIONS(1089), + [anon_sym_let] = ACTIONS(1089), + [anon_sym_let_DASHenv] = ACTIONS(1089), + [anon_sym_mut] = ACTIONS(1089), + [anon_sym_const] = ACTIONS(1089), + [anon_sym_SEMI] = ACTIONS(1089), + [sym_cmd_identifier] = ACTIONS(1089), + [anon_sym_LF] = ACTIONS(1091), + [anon_sym_def] = ACTIONS(1089), + [anon_sym_export_DASHenv] = ACTIONS(1089), + [anon_sym_extern] = ACTIONS(1089), + [anon_sym_module] = ACTIONS(1089), + [anon_sym_use] = ACTIONS(1089), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1089), + [anon_sym_error] = ACTIONS(1089), + [anon_sym_GT] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_DASH] = ACTIONS(1089), + [anon_sym_break] = ACTIONS(1089), + [anon_sym_continue] = ACTIONS(1089), + [anon_sym_for] = ACTIONS(1089), + [anon_sym_in] = ACTIONS(1089), + [anon_sym_loop] = ACTIONS(1089), + [anon_sym_while] = ACTIONS(1089), + [anon_sym_do] = ACTIONS(1089), + [anon_sym_if] = ACTIONS(1089), + [anon_sym_match] = ACTIONS(1089), + [anon_sym_LBRACE] = ACTIONS(1089), + [anon_sym_DOT_DOT] = ACTIONS(1089), + [anon_sym_try] = ACTIONS(1089), + [anon_sym_return] = ACTIONS(1089), + [anon_sym_source] = ACTIONS(1089), + [anon_sym_source_DASHenv] = ACTIONS(1089), + [anon_sym_register] = ACTIONS(1089), + [anon_sym_hide] = ACTIONS(1089), + [anon_sym_hide_DASHenv] = ACTIONS(1089), + [anon_sym_overlay] = ACTIONS(1089), + [anon_sym_as] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_where] = ACTIONS(1089), + [anon_sym_STAR_STAR] = ACTIONS(1089), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_SLASH] = ACTIONS(1089), + [anon_sym_mod] = ACTIONS(1089), + [anon_sym_SLASH_SLASH] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1089), + [anon_sym_bit_DASHshl] = ACTIONS(1089), + [anon_sym_bit_DASHshr] = ACTIONS(1089), + [anon_sym_EQ_EQ] = ACTIONS(1089), + [anon_sym_BANG_EQ] = ACTIONS(1089), + [anon_sym_LT2] = ACTIONS(1089), + [anon_sym_LT_EQ] = ACTIONS(1089), + [anon_sym_GT_EQ] = ACTIONS(1089), + [anon_sym_not_DASHin] = ACTIONS(1089), + [anon_sym_starts_DASHwith] = ACTIONS(1089), + [anon_sym_ends_DASHwith] = ACTIONS(1089), + [anon_sym_EQ_TILDE] = ACTIONS(1089), + [anon_sym_BANG_TILDE] = ACTIONS(1089), + [anon_sym_bit_DASHand] = ACTIONS(1089), + [anon_sym_bit_DASHxor] = ACTIONS(1089), + [anon_sym_bit_DASHor] = ACTIONS(1089), + [anon_sym_and] = ACTIONS(1089), + [anon_sym_xor] = ACTIONS(1089), + [anon_sym_or] = ACTIONS(1089), + [anon_sym_not] = ACTIONS(1089), + [anon_sym_DOT_DOT2] = ACTIONS(1114), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_DOT_DOT_LT] = ACTIONS(1089), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1116), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1116), + [anon_sym_null] = ACTIONS(1089), + [anon_sym_true] = ACTIONS(1089), + [anon_sym_false] = ACTIONS(1089), + [aux_sym__val_number_decimal_token1] = ACTIONS(1089), + [aux_sym__val_number_decimal_token2] = ACTIONS(1089), + [anon_sym_DOT2] = ACTIONS(1089), + [aux_sym__val_number_decimal_token3] = ACTIONS(1089), + [aux_sym__val_number_token1] = ACTIONS(1089), + [aux_sym__val_number_token2] = ACTIONS(1089), + [aux_sym__val_number_token3] = ACTIONS(1089), + [aux_sym__val_number_token4] = ACTIONS(1089), + [aux_sym__val_number_token5] = ACTIONS(1089), + [aux_sym__val_number_token6] = ACTIONS(1089), + [anon_sym_0b] = ACTIONS(1089), + [anon_sym_0o] = ACTIONS(1089), + [anon_sym_0x] = ACTIONS(1089), + [sym_val_date] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1089), + [sym__str_single_quotes] = ACTIONS(1089), + [sym__str_back_ticks] = ACTIONS(1089), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1089), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1089), + [anon_sym_CARET] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(113), }, [309] = { + [sym_cell_path] = STATE(463), + [sym_path] = STATE(316), [sym_comment] = STATE(309), - [ts_builtin_sym_end] = ACTIONS(1072), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_alias] = ACTIONS(1070), - [anon_sym_let] = ACTIONS(1070), - [anon_sym_let_DASHenv] = ACTIONS(1070), - [anon_sym_mut] = ACTIONS(1070), - [anon_sym_const] = ACTIONS(1070), - [anon_sym_SEMI] = ACTIONS(1070), - [sym_cmd_identifier] = ACTIONS(1070), - [anon_sym_LF] = ACTIONS(1072), - [anon_sym_def] = ACTIONS(1070), - [anon_sym_export_DASHenv] = ACTIONS(1070), - [anon_sym_extern] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_use] = ACTIONS(1070), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_error] = ACTIONS(1070), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_in] = ACTIONS(1070), - [anon_sym_loop] = ACTIONS(1070), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_do] = ACTIONS(1070), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_match] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_try] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_source] = ACTIONS(1070), - [anon_sym_source_DASHenv] = ACTIONS(1070), - [anon_sym_register] = ACTIONS(1070), - [anon_sym_hide] = ACTIONS(1070), - [anon_sym_hide_DASHenv] = ACTIONS(1070), - [anon_sym_overlay] = ACTIONS(1070), - [anon_sym_as] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_where] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(1107), - [anon_sym_STAR_STAR] = ACTIONS(1070), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_mod] = ACTIONS(1070), - [anon_sym_SLASH_SLASH] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_bit_DASHshl] = ACTIONS(1070), - [anon_sym_bit_DASHshr] = ACTIONS(1070), - [anon_sym_EQ_EQ] = ACTIONS(1070), - [anon_sym_BANG_EQ] = ACTIONS(1070), - [anon_sym_LT2] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1070), - [anon_sym_GT_EQ] = ACTIONS(1070), - [anon_sym_not_DASHin] = ACTIONS(1070), - [anon_sym_starts_DASHwith] = ACTIONS(1070), - [anon_sym_ends_DASHwith] = ACTIONS(1070), - [anon_sym_EQ_TILDE] = ACTIONS(1070), - [anon_sym_BANG_TILDE] = ACTIONS(1070), - [anon_sym_bit_DASHand] = ACTIONS(1070), - [anon_sym_bit_DASHxor] = ACTIONS(1070), - [anon_sym_bit_DASHor] = ACTIONS(1070), - [anon_sym_and] = ACTIONS(1070), - [anon_sym_xor] = ACTIONS(1070), - [anon_sym_or] = ACTIONS(1070), - [anon_sym_not] = ACTIONS(1070), - [anon_sym_DOT_DOT2] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1072), - [anon_sym_null] = ACTIONS(1070), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1070), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), - [anon_sym_CARET] = ACTIONS(1070), + [ts_builtin_sym_end] = ACTIONS(1095), + [anon_sym_export] = ACTIONS(1093), + [anon_sym_alias] = ACTIONS(1093), + [anon_sym_let] = ACTIONS(1093), + [anon_sym_let_DASHenv] = ACTIONS(1093), + [anon_sym_mut] = ACTIONS(1093), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_SEMI] = ACTIONS(1093), + [sym_cmd_identifier] = ACTIONS(1093), + [anon_sym_LF] = ACTIONS(1095), + [anon_sym_def] = ACTIONS(1093), + [anon_sym_export_DASHenv] = ACTIONS(1093), + [anon_sym_extern] = ACTIONS(1093), + [anon_sym_module] = ACTIONS(1093), + [anon_sym_use] = ACTIONS(1093), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_LPAREN] = ACTIONS(1093), + [anon_sym_DOLLAR] = ACTIONS(1093), + [anon_sym_error] = ACTIONS(1093), + [anon_sym_GT] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_break] = ACTIONS(1093), + [anon_sym_continue] = ACTIONS(1093), + [anon_sym_for] = ACTIONS(1093), + [anon_sym_in] = ACTIONS(1093), + [anon_sym_loop] = ACTIONS(1093), + [anon_sym_while] = ACTIONS(1093), + [anon_sym_do] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1093), + [anon_sym_match] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1093), + [anon_sym_DOT_DOT] = ACTIONS(1093), + [anon_sym_try] = ACTIONS(1093), + [anon_sym_return] = ACTIONS(1093), + [anon_sym_source] = ACTIONS(1093), + [anon_sym_source_DASHenv] = ACTIONS(1093), + [anon_sym_register] = ACTIONS(1093), + [anon_sym_hide] = ACTIONS(1093), + [anon_sym_hide_DASHenv] = ACTIONS(1093), + [anon_sym_overlay] = ACTIONS(1093), + [anon_sym_as] = ACTIONS(1093), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_where] = ACTIONS(1093), + [anon_sym_STAR_STAR] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1093), + [anon_sym_SLASH] = ACTIONS(1093), + [anon_sym_mod] = ACTIONS(1093), + [anon_sym_SLASH_SLASH] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_bit_DASHshl] = ACTIONS(1093), + [anon_sym_bit_DASHshr] = ACTIONS(1093), + [anon_sym_EQ_EQ] = ACTIONS(1093), + [anon_sym_BANG_EQ] = ACTIONS(1093), + [anon_sym_LT2] = ACTIONS(1093), + [anon_sym_LT_EQ] = ACTIONS(1093), + [anon_sym_GT_EQ] = ACTIONS(1093), + [anon_sym_not_DASHin] = ACTIONS(1093), + [anon_sym_starts_DASHwith] = ACTIONS(1093), + [anon_sym_ends_DASHwith] = ACTIONS(1093), + [anon_sym_EQ_TILDE] = ACTIONS(1093), + [anon_sym_BANG_TILDE] = ACTIONS(1093), + [anon_sym_bit_DASHand] = ACTIONS(1093), + [anon_sym_bit_DASHxor] = ACTIONS(1093), + [anon_sym_bit_DASHor] = ACTIONS(1093), + [anon_sym_and] = ACTIONS(1093), + [anon_sym_xor] = ACTIONS(1093), + [anon_sym_or] = ACTIONS(1093), + [anon_sym_not] = ACTIONS(1093), + [anon_sym_DOT] = ACTIONS(1105), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1093), + [anon_sym_DOT_DOT_LT] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1093), + [anon_sym_true] = ACTIONS(1093), + [anon_sym_false] = ACTIONS(1093), + [aux_sym__val_number_decimal_token1] = ACTIONS(1093), + [aux_sym__val_number_decimal_token2] = ACTIONS(1093), + [anon_sym_DOT2] = ACTIONS(1093), + [aux_sym__val_number_decimal_token3] = ACTIONS(1093), + [aux_sym__val_number_token1] = ACTIONS(1093), + [aux_sym__val_number_token2] = ACTIONS(1093), + [aux_sym__val_number_token3] = ACTIONS(1093), + [aux_sym__val_number_token4] = ACTIONS(1093), + [aux_sym__val_number_token5] = ACTIONS(1093), + [aux_sym__val_number_token6] = ACTIONS(1093), + [anon_sym_0b] = ACTIONS(1093), + [anon_sym_0o] = ACTIONS(1093), + [anon_sym_0x] = ACTIONS(1093), + [sym_val_date] = ACTIONS(1093), + [anon_sym_DQUOTE] = ACTIONS(1093), + [sym__str_single_quotes] = ACTIONS(1093), + [sym__str_back_ticks] = ACTIONS(1093), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1093), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1093), + [anon_sym_CARET] = ACTIONS(1093), [anon_sym_POUND] = ACTIONS(113), }, [310] = { + [sym_cell_path] = STATE(466), + [sym_path] = STATE(316), [sym_comment] = STATE(310), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_alias] = ACTIONS(1109), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_let_DASHenv] = ACTIONS(1109), - [anon_sym_mut] = ACTIONS(1109), - [anon_sym_const] = ACTIONS(1109), - [anon_sym_SEMI] = ACTIONS(1109), - [sym_cmd_identifier] = ACTIONS(1109), - [anon_sym_LF] = ACTIONS(1111), - [anon_sym_def] = ACTIONS(1109), - [anon_sym_export_DASHenv] = ACTIONS(1109), - [anon_sym_extern] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_use] = ACTIONS(1109), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_RPAREN] = ACTIONS(1109), - [anon_sym_DOLLAR] = ACTIONS(1109), - [anon_sym_error] = ACTIONS(1109), - [anon_sym_GT] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_break] = ACTIONS(1109), - [anon_sym_continue] = ACTIONS(1109), - [anon_sym_for] = ACTIONS(1109), - [anon_sym_in] = ACTIONS(1109), - [anon_sym_loop] = ACTIONS(1109), - [anon_sym_while] = ACTIONS(1109), - [anon_sym_do] = ACTIONS(1109), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_RBRACE] = ACTIONS(1109), - [anon_sym_DOT_DOT] = ACTIONS(1109), - [anon_sym_try] = ACTIONS(1109), - [anon_sym_return] = ACTIONS(1109), - [anon_sym_source] = ACTIONS(1109), - [anon_sym_source_DASHenv] = ACTIONS(1109), - [anon_sym_register] = ACTIONS(1109), - [anon_sym_hide] = ACTIONS(1109), - [anon_sym_hide_DASHenv] = ACTIONS(1109), - [anon_sym_overlay] = ACTIONS(1109), - [anon_sym_as] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_where] = ACTIONS(1109), - [anon_sym_STAR_STAR] = ACTIONS(1109), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_SLASH] = ACTIONS(1109), - [anon_sym_mod] = ACTIONS(1109), - [anon_sym_SLASH_SLASH] = ACTIONS(1109), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_bit_DASHshl] = ACTIONS(1109), - [anon_sym_bit_DASHshr] = ACTIONS(1109), - [anon_sym_EQ_EQ] = ACTIONS(1109), - [anon_sym_BANG_EQ] = ACTIONS(1109), - [anon_sym_LT2] = ACTIONS(1109), - [anon_sym_LT_EQ] = ACTIONS(1109), - [anon_sym_GT_EQ] = ACTIONS(1109), - [anon_sym_not_DASHin] = ACTIONS(1109), - [anon_sym_starts_DASHwith] = ACTIONS(1109), - [anon_sym_ends_DASHwith] = ACTIONS(1109), - [anon_sym_EQ_TILDE] = ACTIONS(1109), - [anon_sym_BANG_TILDE] = ACTIONS(1109), - [anon_sym_bit_DASHand] = ACTIONS(1109), - [anon_sym_bit_DASHxor] = ACTIONS(1109), - [anon_sym_bit_DASHor] = ACTIONS(1109), - [anon_sym_and] = ACTIONS(1109), - [anon_sym_xor] = ACTIONS(1109), - [anon_sym_or] = ACTIONS(1109), - [anon_sym_not] = ACTIONS(1109), - [anon_sym_DOT_DOT2] = ACTIONS(1109), - [anon_sym_DOT] = ACTIONS(1109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1109), - [anon_sym_DOT_DOT_LT] = ACTIONS(1109), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1111), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1111), - [anon_sym_null] = ACTIONS(1109), - [anon_sym_true] = ACTIONS(1109), - [anon_sym_false] = ACTIONS(1109), - [aux_sym__val_number_decimal_token1] = ACTIONS(1109), - [aux_sym__val_number_decimal_token2] = ACTIONS(1109), - [anon_sym_DOT2] = ACTIONS(1109), - [aux_sym__val_number_decimal_token3] = ACTIONS(1109), - [aux_sym__val_number_token1] = ACTIONS(1109), - [aux_sym__val_number_token2] = ACTIONS(1109), - [aux_sym__val_number_token3] = ACTIONS(1109), - [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(1109), - [anon_sym_0o] = ACTIONS(1109), - [anon_sym_0x] = ACTIONS(1109), - [sym_val_date] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(1109), - [sym__str_single_quotes] = ACTIONS(1109), - [sym__str_back_ticks] = ACTIONS(1109), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1109), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1109), - [anon_sym_CARET] = ACTIONS(1109), + [ts_builtin_sym_end] = ACTIONS(1099), + [anon_sym_export] = ACTIONS(1097), + [anon_sym_alias] = ACTIONS(1097), + [anon_sym_let] = ACTIONS(1097), + [anon_sym_let_DASHenv] = ACTIONS(1097), + [anon_sym_mut] = ACTIONS(1097), + [anon_sym_const] = ACTIONS(1097), + [anon_sym_SEMI] = ACTIONS(1097), + [sym_cmd_identifier] = ACTIONS(1097), + [anon_sym_LF] = ACTIONS(1099), + [anon_sym_def] = ACTIONS(1097), + [anon_sym_export_DASHenv] = ACTIONS(1097), + [anon_sym_extern] = ACTIONS(1097), + [anon_sym_module] = ACTIONS(1097), + [anon_sym_use] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1097), + [anon_sym_LPAREN] = ACTIONS(1097), + [anon_sym_DOLLAR] = ACTIONS(1097), + [anon_sym_error] = ACTIONS(1097), + [anon_sym_GT] = ACTIONS(1097), + [anon_sym_DASH_DASH] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_break] = ACTIONS(1097), + [anon_sym_continue] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1097), + [anon_sym_loop] = ACTIONS(1097), + [anon_sym_while] = ACTIONS(1097), + [anon_sym_do] = ACTIONS(1097), + [anon_sym_if] = ACTIONS(1097), + [anon_sym_match] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_DOT_DOT] = ACTIONS(1097), + [anon_sym_try] = ACTIONS(1097), + [anon_sym_return] = ACTIONS(1097), + [anon_sym_source] = ACTIONS(1097), + [anon_sym_source_DASHenv] = ACTIONS(1097), + [anon_sym_register] = ACTIONS(1097), + [anon_sym_hide] = ACTIONS(1097), + [anon_sym_hide_DASHenv] = ACTIONS(1097), + [anon_sym_overlay] = ACTIONS(1097), + [anon_sym_as] = ACTIONS(1097), + [anon_sym_STAR] = ACTIONS(1097), + [anon_sym_where] = ACTIONS(1097), + [anon_sym_STAR_STAR] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1097), + [anon_sym_SLASH] = ACTIONS(1097), + [anon_sym_mod] = ACTIONS(1097), + [anon_sym_SLASH_SLASH] = ACTIONS(1097), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_bit_DASHshl] = ACTIONS(1097), + [anon_sym_bit_DASHshr] = ACTIONS(1097), + [anon_sym_EQ_EQ] = ACTIONS(1097), + [anon_sym_BANG_EQ] = ACTIONS(1097), + [anon_sym_LT2] = ACTIONS(1097), + [anon_sym_LT_EQ] = ACTIONS(1097), + [anon_sym_GT_EQ] = ACTIONS(1097), + [anon_sym_not_DASHin] = ACTIONS(1097), + [anon_sym_starts_DASHwith] = ACTIONS(1097), + [anon_sym_ends_DASHwith] = ACTIONS(1097), + [anon_sym_EQ_TILDE] = ACTIONS(1097), + [anon_sym_BANG_TILDE] = ACTIONS(1097), + [anon_sym_bit_DASHand] = ACTIONS(1097), + [anon_sym_bit_DASHxor] = ACTIONS(1097), + [anon_sym_bit_DASHor] = ACTIONS(1097), + [anon_sym_and] = ACTIONS(1097), + [anon_sym_xor] = ACTIONS(1097), + [anon_sym_or] = ACTIONS(1097), + [anon_sym_not] = ACTIONS(1097), + [anon_sym_DOT] = ACTIONS(1105), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1097), + [anon_sym_DOT_DOT_LT] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1097), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), + [aux_sym__val_number_decimal_token1] = ACTIONS(1097), + [aux_sym__val_number_decimal_token2] = ACTIONS(1097), + [anon_sym_DOT2] = ACTIONS(1097), + [aux_sym__val_number_decimal_token3] = ACTIONS(1097), + [aux_sym__val_number_token1] = ACTIONS(1097), + [aux_sym__val_number_token2] = ACTIONS(1097), + [aux_sym__val_number_token3] = ACTIONS(1097), + [aux_sym__val_number_token4] = ACTIONS(1097), + [aux_sym__val_number_token5] = ACTIONS(1097), + [aux_sym__val_number_token6] = ACTIONS(1097), + [anon_sym_0b] = ACTIONS(1097), + [anon_sym_0o] = ACTIONS(1097), + [anon_sym_0x] = ACTIONS(1097), + [sym_val_date] = ACTIONS(1097), + [anon_sym_DQUOTE] = ACTIONS(1097), + [sym__str_single_quotes] = ACTIONS(1097), + [sym__str_back_ticks] = ACTIONS(1097), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1097), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1097), + [anon_sym_CARET] = ACTIONS(1097), [anon_sym_POUND] = ACTIONS(113), }, [311] = { + [sym_cell_path] = STATE(467), + [sym_path] = STATE(316), [sym_comment] = STATE(311), - [anon_sym_export] = ACTIONS(1113), - [anon_sym_alias] = ACTIONS(1113), - [anon_sym_let] = ACTIONS(1113), - [anon_sym_let_DASHenv] = ACTIONS(1113), - [anon_sym_mut] = ACTIONS(1113), - [anon_sym_const] = ACTIONS(1113), - [anon_sym_SEMI] = ACTIONS(1113), - [sym_cmd_identifier] = ACTIONS(1113), - [anon_sym_LF] = ACTIONS(1115), - [anon_sym_def] = ACTIONS(1113), - [anon_sym_export_DASHenv] = ACTIONS(1113), - [anon_sym_extern] = ACTIONS(1113), - [anon_sym_module] = ACTIONS(1113), - [anon_sym_use] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_RPAREN] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1113), - [anon_sym_error] = ACTIONS(1113), - [anon_sym_GT] = ACTIONS(1113), - [anon_sym_DASH_DASH] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_in] = ACTIONS(1113), - [anon_sym_loop] = ACTIONS(1113), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_RBRACE] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1113), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_source] = ACTIONS(1113), - [anon_sym_source_DASHenv] = ACTIONS(1113), - [anon_sym_register] = ACTIONS(1113), - [anon_sym_hide] = ACTIONS(1113), - [anon_sym_hide_DASHenv] = ACTIONS(1113), - [anon_sym_overlay] = ACTIONS(1113), - [anon_sym_as] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_where] = ACTIONS(1113), - [anon_sym_STAR_STAR] = ACTIONS(1113), - [anon_sym_PLUS_PLUS] = ACTIONS(1113), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_mod] = ACTIONS(1113), - [anon_sym_SLASH_SLASH] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_bit_DASHshl] = ACTIONS(1113), - [anon_sym_bit_DASHshr] = ACTIONS(1113), - [anon_sym_EQ_EQ] = ACTIONS(1113), - [anon_sym_BANG_EQ] = ACTIONS(1113), - [anon_sym_LT2] = ACTIONS(1113), - [anon_sym_LT_EQ] = ACTIONS(1113), - [anon_sym_GT_EQ] = ACTIONS(1113), - [anon_sym_not_DASHin] = ACTIONS(1113), - [anon_sym_starts_DASHwith] = ACTIONS(1113), - [anon_sym_ends_DASHwith] = ACTIONS(1113), - [anon_sym_EQ_TILDE] = ACTIONS(1113), - [anon_sym_BANG_TILDE] = ACTIONS(1113), - [anon_sym_bit_DASHand] = ACTIONS(1113), - [anon_sym_bit_DASHxor] = ACTIONS(1113), - [anon_sym_bit_DASHor] = ACTIONS(1113), - [anon_sym_and] = ACTIONS(1113), - [anon_sym_xor] = ACTIONS(1113), - [anon_sym_or] = ACTIONS(1113), - [anon_sym_not] = ACTIONS(1113), - [anon_sym_DOT_DOT2] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1113), - [anon_sym_DOT_DOT_LT] = ACTIONS(1113), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1115), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1113), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1113), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_decimal_token2] = ACTIONS(1113), - [anon_sym_DOT2] = ACTIONS(1113), - [aux_sym__val_number_decimal_token3] = ACTIONS(1113), - [aux_sym__val_number_token1] = ACTIONS(1113), - [aux_sym__val_number_token2] = ACTIONS(1113), - [aux_sym__val_number_token3] = ACTIONS(1113), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1113), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_0b] = ACTIONS(1113), - [anon_sym_0o] = ACTIONS(1113), - [anon_sym_0x] = ACTIONS(1113), - [sym_val_date] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym__str_single_quotes] = ACTIONS(1113), - [sym__str_back_ticks] = ACTIONS(1113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), - [anon_sym_CARET] = ACTIONS(1113), + [ts_builtin_sym_end] = ACTIONS(1103), + [anon_sym_export] = ACTIONS(1101), + [anon_sym_alias] = ACTIONS(1101), + [anon_sym_let] = ACTIONS(1101), + [anon_sym_let_DASHenv] = ACTIONS(1101), + [anon_sym_mut] = ACTIONS(1101), + [anon_sym_const] = ACTIONS(1101), + [anon_sym_SEMI] = ACTIONS(1101), + [sym_cmd_identifier] = ACTIONS(1101), + [anon_sym_LF] = ACTIONS(1103), + [anon_sym_def] = ACTIONS(1101), + [anon_sym_export_DASHenv] = ACTIONS(1101), + [anon_sym_extern] = ACTIONS(1101), + [anon_sym_module] = ACTIONS(1101), + [anon_sym_use] = ACTIONS(1101), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_DOLLAR] = ACTIONS(1101), + [anon_sym_error] = ACTIONS(1101), + [anon_sym_GT] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_break] = ACTIONS(1101), + [anon_sym_continue] = ACTIONS(1101), + [anon_sym_for] = ACTIONS(1101), + [anon_sym_in] = ACTIONS(1101), + [anon_sym_loop] = ACTIONS(1101), + [anon_sym_while] = ACTIONS(1101), + [anon_sym_do] = ACTIONS(1101), + [anon_sym_if] = ACTIONS(1101), + [anon_sym_match] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_DOT_DOT] = ACTIONS(1101), + [anon_sym_try] = ACTIONS(1101), + [anon_sym_return] = ACTIONS(1101), + [anon_sym_source] = ACTIONS(1101), + [anon_sym_source_DASHenv] = ACTIONS(1101), + [anon_sym_register] = ACTIONS(1101), + [anon_sym_hide] = ACTIONS(1101), + [anon_sym_hide_DASHenv] = ACTIONS(1101), + [anon_sym_overlay] = ACTIONS(1101), + [anon_sym_as] = ACTIONS(1101), + [anon_sym_STAR] = ACTIONS(1101), + [anon_sym_where] = ACTIONS(1101), + [anon_sym_STAR_STAR] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_SLASH] = ACTIONS(1101), + [anon_sym_mod] = ACTIONS(1101), + [anon_sym_SLASH_SLASH] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_bit_DASHshl] = ACTIONS(1101), + [anon_sym_bit_DASHshr] = ACTIONS(1101), + [anon_sym_EQ_EQ] = ACTIONS(1101), + [anon_sym_BANG_EQ] = ACTIONS(1101), + [anon_sym_LT2] = ACTIONS(1101), + [anon_sym_LT_EQ] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1101), + [anon_sym_not_DASHin] = ACTIONS(1101), + [anon_sym_starts_DASHwith] = ACTIONS(1101), + [anon_sym_ends_DASHwith] = ACTIONS(1101), + [anon_sym_EQ_TILDE] = ACTIONS(1101), + [anon_sym_BANG_TILDE] = ACTIONS(1101), + [anon_sym_bit_DASHand] = ACTIONS(1101), + [anon_sym_bit_DASHxor] = ACTIONS(1101), + [anon_sym_bit_DASHor] = ACTIONS(1101), + [anon_sym_and] = ACTIONS(1101), + [anon_sym_xor] = ACTIONS(1101), + [anon_sym_or] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_DOT] = ACTIONS(1105), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1101), + [anon_sym_DOT_DOT_LT] = ACTIONS(1101), + [anon_sym_null] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(1101), + [anon_sym_false] = ACTIONS(1101), + [aux_sym__val_number_decimal_token1] = ACTIONS(1101), + [aux_sym__val_number_decimal_token2] = ACTIONS(1101), + [anon_sym_DOT2] = ACTIONS(1101), + [aux_sym__val_number_decimal_token3] = ACTIONS(1101), + [aux_sym__val_number_token1] = ACTIONS(1101), + [aux_sym__val_number_token2] = ACTIONS(1101), + [aux_sym__val_number_token3] = ACTIONS(1101), + [aux_sym__val_number_token4] = ACTIONS(1101), + [aux_sym__val_number_token5] = ACTIONS(1101), + [aux_sym__val_number_token6] = ACTIONS(1101), + [anon_sym_0b] = ACTIONS(1101), + [anon_sym_0o] = ACTIONS(1101), + [anon_sym_0x] = ACTIONS(1101), + [sym_val_date] = ACTIONS(1101), + [anon_sym_DQUOTE] = ACTIONS(1101), + [sym__str_single_quotes] = ACTIONS(1101), + [sym__str_back_ticks] = ACTIONS(1101), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1101), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), [anon_sym_POUND] = ACTIONS(113), }, [312] = { [sym_comment] = STATE(312), - [anon_sym_export] = ACTIONS(1117), - [anon_sym_alias] = ACTIONS(1117), - [anon_sym_let] = ACTIONS(1117), - [anon_sym_let_DASHenv] = ACTIONS(1117), - [anon_sym_mut] = ACTIONS(1117), - [anon_sym_const] = ACTIONS(1117), - [anon_sym_SEMI] = ACTIONS(1117), - [sym_cmd_identifier] = ACTIONS(1117), - [anon_sym_LF] = ACTIONS(1119), - [anon_sym_def] = ACTIONS(1117), - [anon_sym_export_DASHenv] = ACTIONS(1117), - [anon_sym_extern] = ACTIONS(1117), - [anon_sym_module] = ACTIONS(1117), - [anon_sym_use] = ACTIONS(1117), - [anon_sym_LBRACK] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1117), - [anon_sym_RPAREN] = ACTIONS(1117), - [anon_sym_DOLLAR] = ACTIONS(1117), - [anon_sym_error] = ACTIONS(1117), - [anon_sym_GT] = ACTIONS(1117), - [anon_sym_DASH_DASH] = ACTIONS(1117), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_break] = ACTIONS(1117), - [anon_sym_continue] = ACTIONS(1117), - [anon_sym_for] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1117), - [anon_sym_loop] = ACTIONS(1117), - [anon_sym_while] = ACTIONS(1117), - [anon_sym_do] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1117), - [anon_sym_LBRACE] = ACTIONS(1117), - [anon_sym_RBRACE] = ACTIONS(1117), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_try] = ACTIONS(1117), - [anon_sym_return] = ACTIONS(1117), - [anon_sym_source] = ACTIONS(1117), - [anon_sym_source_DASHenv] = ACTIONS(1117), - [anon_sym_register] = ACTIONS(1117), - [anon_sym_hide] = ACTIONS(1117), - [anon_sym_hide_DASHenv] = ACTIONS(1117), - [anon_sym_overlay] = ACTIONS(1117), - [anon_sym_as] = ACTIONS(1117), - [anon_sym_STAR] = ACTIONS(1117), - [anon_sym_where] = ACTIONS(1117), - [anon_sym_STAR_STAR] = ACTIONS(1117), - [anon_sym_PLUS_PLUS] = ACTIONS(1117), - [anon_sym_SLASH] = ACTIONS(1117), - [anon_sym_mod] = ACTIONS(1117), - [anon_sym_SLASH_SLASH] = ACTIONS(1117), - [anon_sym_PLUS] = ACTIONS(1117), - [anon_sym_bit_DASHshl] = ACTIONS(1117), - [anon_sym_bit_DASHshr] = ACTIONS(1117), - [anon_sym_EQ_EQ] = ACTIONS(1117), - [anon_sym_BANG_EQ] = ACTIONS(1117), - [anon_sym_LT2] = ACTIONS(1117), - [anon_sym_LT_EQ] = ACTIONS(1117), - [anon_sym_GT_EQ] = ACTIONS(1117), - [anon_sym_not_DASHin] = ACTIONS(1117), - [anon_sym_starts_DASHwith] = ACTIONS(1117), - [anon_sym_ends_DASHwith] = ACTIONS(1117), - [anon_sym_EQ_TILDE] = ACTIONS(1117), - [anon_sym_BANG_TILDE] = ACTIONS(1117), - [anon_sym_bit_DASHand] = ACTIONS(1117), - [anon_sym_bit_DASHxor] = ACTIONS(1117), - [anon_sym_bit_DASHor] = ACTIONS(1117), - [anon_sym_and] = ACTIONS(1117), - [anon_sym_xor] = ACTIONS(1117), - [anon_sym_or] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1117), - [anon_sym_DOT_DOT2] = ACTIONS(1117), - [anon_sym_DOT] = ACTIONS(1117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1117), - [anon_sym_DOT_DOT_LT] = ACTIONS(1117), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1119), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1119), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_true] = ACTIONS(1117), - [anon_sym_false] = ACTIONS(1117), - [aux_sym__val_number_decimal_token1] = ACTIONS(1117), - [aux_sym__val_number_decimal_token2] = ACTIONS(1117), - [anon_sym_DOT2] = ACTIONS(1117), - [aux_sym__val_number_decimal_token3] = ACTIONS(1117), - [aux_sym__val_number_token1] = ACTIONS(1117), - [aux_sym__val_number_token2] = ACTIONS(1117), - [aux_sym__val_number_token3] = ACTIONS(1117), - [aux_sym__val_number_token4] = ACTIONS(1117), - [aux_sym__val_number_token5] = ACTIONS(1117), - [aux_sym__val_number_token6] = ACTIONS(1117), - [anon_sym_0b] = ACTIONS(1117), - [anon_sym_0o] = ACTIONS(1117), - [anon_sym_0x] = ACTIONS(1117), - [sym_val_date] = ACTIONS(1117), - [anon_sym_DQUOTE] = ACTIONS(1117), - [sym__str_single_quotes] = ACTIONS(1117), - [sym__str_back_ticks] = ACTIONS(1117), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1117), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1117), - [anon_sym_CARET] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(920), + [anon_sym_alias] = ACTIONS(920), + [anon_sym_let] = ACTIONS(920), + [anon_sym_let_DASHenv] = ACTIONS(920), + [anon_sym_mut] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(920), + [sym_cmd_identifier] = ACTIONS(920), + [anon_sym_LF] = ACTIONS(922), + [anon_sym_def] = ACTIONS(920), + [anon_sym_export_DASHenv] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym_module] = ACTIONS(920), + [anon_sym_use] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_RPAREN] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_error] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_in] = ACTIONS(920), + [anon_sym_loop] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_match] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_RBRACE] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_try] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_source] = ACTIONS(920), + [anon_sym_source_DASHenv] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_hide] = ACTIONS(920), + [anon_sym_hide_DASHenv] = ACTIONS(920), + [anon_sym_overlay] = ACTIONS(920), + [anon_sym_as] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_where] = ACTIONS(920), + [anon_sym_STAR_STAR] = ACTIONS(920), + [anon_sym_PLUS_PLUS] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_mod] = ACTIONS(920), + [anon_sym_SLASH_SLASH] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_bit_DASHshl] = ACTIONS(920), + [anon_sym_bit_DASHshr] = ACTIONS(920), + [anon_sym_EQ_EQ] = ACTIONS(920), + [anon_sym_BANG_EQ] = ACTIONS(920), + [anon_sym_LT2] = ACTIONS(920), + [anon_sym_LT_EQ] = ACTIONS(920), + [anon_sym_GT_EQ] = ACTIONS(920), + [anon_sym_not_DASHin] = ACTIONS(920), + [anon_sym_starts_DASHwith] = ACTIONS(920), + [anon_sym_ends_DASHwith] = ACTIONS(920), + [anon_sym_EQ_TILDE] = ACTIONS(920), + [anon_sym_BANG_TILDE] = ACTIONS(920), + [anon_sym_bit_DASHand] = ACTIONS(920), + [anon_sym_bit_DASHxor] = ACTIONS(920), + [anon_sym_bit_DASHor] = ACTIONS(920), + [anon_sym_and] = ACTIONS(920), + [anon_sym_xor] = ACTIONS(920), + [anon_sym_or] = ACTIONS(920), + [anon_sym_not] = ACTIONS(920), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [aux_sym__immediate_decimal_token1] = ACTIONS(1118), + [anon_sym_null] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), + [anon_sym_CARET] = ACTIONS(920), + [aux_sym_unquoted_token2] = ACTIONS(1120), [anon_sym_POUND] = ACTIONS(113), }, [313] = { - [sym__immediate_decimal] = STATE(9346), + [sym_path] = STATE(408), [sym_comment] = STATE(313), - [ts_builtin_sym_end] = ACTIONS(938), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_error] = ACTIONS(936), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_where] = ACTIONS(936), - [anon_sym_STAR_STAR] = ACTIONS(936), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(936), - [anon_sym_SLASH_SLASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(936), - [anon_sym_bit_DASHshr] = ACTIONS(936), - [anon_sym_EQ_EQ] = ACTIONS(936), - [anon_sym_BANG_EQ] = ACTIONS(936), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(936), - [anon_sym_GT_EQ] = ACTIONS(936), - [anon_sym_not_DASHin] = ACTIONS(936), - [anon_sym_starts_DASHwith] = ACTIONS(936), - [anon_sym_ends_DASHwith] = ACTIONS(936), - [anon_sym_EQ_TILDE] = ACTIONS(936), - [anon_sym_BANG_TILDE] = ACTIONS(936), - [anon_sym_bit_DASHand] = ACTIONS(936), - [anon_sym_bit_DASHxor] = ACTIONS(936), - [anon_sym_bit_DASHor] = ACTIONS(936), - [anon_sym_and] = ACTIONS(936), - [anon_sym_xor] = ACTIONS(936), - [anon_sym_or] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_DOT] = ACTIONS(1121), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [aux_sym__immediate_decimal_token1] = ACTIONS(942), - [aux_sym__immediate_decimal_token3] = ACTIONS(942), - [aux_sym__immediate_decimal_token4] = ACTIONS(944), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [aux_sym_unquoted_token3] = ACTIONS(1105), - [aux_sym_unquoted_token5] = ACTIONS(1123), + [aux_sym_cell_path_repeat1] = STATE(313), + [anon_sym_export] = ACTIONS(985), + [anon_sym_alias] = ACTIONS(985), + [anon_sym_EQ] = ACTIONS(985), + [anon_sym_let] = ACTIONS(985), + [anon_sym_let_DASHenv] = ACTIONS(985), + [anon_sym_mut] = ACTIONS(985), + [anon_sym_const] = ACTIONS(985), + [anon_sym_PLUS_EQ] = ACTIONS(985), + [anon_sym_DASH_EQ] = ACTIONS(985), + [anon_sym_STAR_EQ] = ACTIONS(985), + [anon_sym_SLASH_EQ] = ACTIONS(985), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(985), + [anon_sym_SEMI] = ACTIONS(985), + [sym_cmd_identifier] = ACTIONS(985), + [anon_sym_LF] = ACTIONS(987), + [anon_sym_def] = ACTIONS(985), + [anon_sym_export_DASHenv] = ACTIONS(985), + [anon_sym_extern] = ACTIONS(985), + [anon_sym_module] = ACTIONS(985), + [anon_sym_use] = ACTIONS(985), + [anon_sym_COLON] = ACTIONS(985), + [anon_sym_COMMA] = ACTIONS(985), + [anon_sym_LPAREN] = ACTIONS(985), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_error] = ACTIONS(985), + [anon_sym_list] = ACTIONS(985), + [anon_sym_GT] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_break] = ACTIONS(985), + [anon_sym_continue] = ACTIONS(985), + [anon_sym_for] = ACTIONS(985), + [anon_sym_in] = ACTIONS(985), + [anon_sym_loop] = ACTIONS(985), + [anon_sym_make] = ACTIONS(985), + [anon_sym_while] = ACTIONS(985), + [anon_sym_do] = ACTIONS(985), + [anon_sym_if] = ACTIONS(985), + [anon_sym_else] = ACTIONS(985), + [anon_sym_match] = ACTIONS(985), + [anon_sym_RBRACE] = ACTIONS(985), + [anon_sym_try] = ACTIONS(985), + [anon_sym_catch] = ACTIONS(985), + [anon_sym_return] = ACTIONS(985), + [anon_sym_source] = ACTIONS(985), + [anon_sym_source_DASHenv] = ACTIONS(985), + [anon_sym_register] = ACTIONS(985), + [anon_sym_hide] = ACTIONS(985), + [anon_sym_hide_DASHenv] = ACTIONS(985), + [anon_sym_overlay] = ACTIONS(985), + [anon_sym_new] = ACTIONS(985), + [anon_sym_as] = ACTIONS(985), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_STAR_STAR] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(985), + [anon_sym_SLASH] = ACTIONS(985), + [anon_sym_mod] = ACTIONS(985), + [anon_sym_SLASH_SLASH] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_bit_DASHshl] = ACTIONS(985), + [anon_sym_bit_DASHshr] = ACTIONS(985), + [anon_sym_EQ_EQ] = ACTIONS(985), + [anon_sym_BANG_EQ] = ACTIONS(985), + [anon_sym_LT2] = ACTIONS(985), + [anon_sym_LT_EQ] = ACTIONS(985), + [anon_sym_GT_EQ] = ACTIONS(985), + [anon_sym_not_DASHin] = ACTIONS(985), + [anon_sym_starts_DASHwith] = ACTIONS(985), + [anon_sym_ends_DASHwith] = ACTIONS(985), + [anon_sym_EQ_TILDE] = ACTIONS(985), + [anon_sym_BANG_TILDE] = ACTIONS(985), + [anon_sym_bit_DASHand] = ACTIONS(985), + [anon_sym_bit_DASHxor] = ACTIONS(985), + [anon_sym_bit_DASHor] = ACTIONS(985), + [anon_sym_and] = ACTIONS(985), + [anon_sym_xor] = ACTIONS(985), + [anon_sym_or] = ACTIONS(985), + [anon_sym_DOT_DOT2] = ACTIONS(985), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(987), + [anon_sym_DOT_DOT_LT2] = ACTIONS(987), + [aux_sym__val_number_decimal_token1] = ACTIONS(985), + [aux_sym__val_number_decimal_token2] = ACTIONS(985), + [anon_sym_DOT2] = ACTIONS(985), + [aux_sym__val_number_decimal_token3] = ACTIONS(985), + [aux_sym__val_number_token1] = ACTIONS(985), + [aux_sym__val_number_token2] = ACTIONS(985), + [aux_sym__val_number_token3] = ACTIONS(985), + [aux_sym__val_number_token4] = ACTIONS(985), + [aux_sym__val_number_token5] = ACTIONS(985), + [aux_sym__val_number_token6] = ACTIONS(985), + [anon_sym_DQUOTE] = ACTIONS(985), + [sym__str_single_quotes] = ACTIONS(985), + [sym__str_back_ticks] = ACTIONS(985), + [aux_sym__record_key_token2] = ACTIONS(985), [anon_sym_POUND] = ACTIONS(113), }, [314] = { [sym_comment] = STATE(314), - [anon_sym_export] = ACTIONS(923), - [anon_sym_alias] = ACTIONS(923), - [anon_sym_let] = ACTIONS(923), - [anon_sym_let_DASHenv] = ACTIONS(923), - [anon_sym_mut] = ACTIONS(923), - [anon_sym_const] = ACTIONS(923), - [anon_sym_SEMI] = ACTIONS(923), - [sym_cmd_identifier] = ACTIONS(923), - [anon_sym_LF] = ACTIONS(925), - [anon_sym_def] = ACTIONS(923), - [anon_sym_export_DASHenv] = ACTIONS(923), - [anon_sym_extern] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_use] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_RPAREN] = ACTIONS(923), - [anon_sym_DOLLAR] = ACTIONS(923), - [anon_sym_error] = ACTIONS(923), - [anon_sym_GT] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_break] = ACTIONS(923), - [anon_sym_continue] = ACTIONS(923), - [anon_sym_for] = ACTIONS(923), - [anon_sym_in] = ACTIONS(923), - [anon_sym_loop] = ACTIONS(923), - [anon_sym_while] = ACTIONS(923), - [anon_sym_do] = ACTIONS(923), - [anon_sym_if] = ACTIONS(923), - [anon_sym_match] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(923), - [anon_sym_RBRACE] = ACTIONS(923), - [anon_sym_DOT_DOT] = ACTIONS(923), - [anon_sym_try] = ACTIONS(923), - [anon_sym_return] = ACTIONS(923), - [anon_sym_source] = ACTIONS(923), - [anon_sym_source_DASHenv] = ACTIONS(923), - [anon_sym_register] = ACTIONS(923), - [anon_sym_hide] = ACTIONS(923), - [anon_sym_hide_DASHenv] = ACTIONS(923), - [anon_sym_overlay] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_where] = ACTIONS(923), - [anon_sym_STAR_STAR] = ACTIONS(923), - [anon_sym_PLUS_PLUS] = ACTIONS(923), - [anon_sym_SLASH] = ACTIONS(923), - [anon_sym_mod] = ACTIONS(923), - [anon_sym_SLASH_SLASH] = ACTIONS(923), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_bit_DASHshl] = ACTIONS(923), - [anon_sym_bit_DASHshr] = ACTIONS(923), - [anon_sym_EQ_EQ] = ACTIONS(923), - [anon_sym_BANG_EQ] = ACTIONS(923), - [anon_sym_LT2] = ACTIONS(923), - [anon_sym_LT_EQ] = ACTIONS(923), - [anon_sym_GT_EQ] = ACTIONS(923), - [anon_sym_not_DASHin] = ACTIONS(923), - [anon_sym_starts_DASHwith] = ACTIONS(923), - [anon_sym_ends_DASHwith] = ACTIONS(923), - [anon_sym_EQ_TILDE] = ACTIONS(923), - [anon_sym_BANG_TILDE] = ACTIONS(923), - [anon_sym_bit_DASHand] = ACTIONS(923), - [anon_sym_bit_DASHxor] = ACTIONS(923), - [anon_sym_bit_DASHor] = ACTIONS(923), - [anon_sym_and] = ACTIONS(923), - [anon_sym_xor] = ACTIONS(923), - [anon_sym_or] = ACTIONS(923), - [anon_sym_not] = ACTIONS(923), - [anon_sym_DOT_DOT2] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ] = ACTIONS(923), - [anon_sym_DOT_DOT_LT] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(925), - [anon_sym_DOT_DOT_LT2] = ACTIONS(925), - [aux_sym__immediate_decimal_token2] = ACTIONS(1091), - [anon_sym_null] = ACTIONS(923), - [anon_sym_true] = ACTIONS(923), - [anon_sym_false] = ACTIONS(923), - [aux_sym__val_number_decimal_token1] = ACTIONS(923), - [aux_sym__val_number_decimal_token2] = ACTIONS(923), - [anon_sym_DOT2] = ACTIONS(923), - [aux_sym__val_number_decimal_token3] = ACTIONS(923), - [aux_sym__val_number_token1] = ACTIONS(923), - [aux_sym__val_number_token2] = ACTIONS(923), - [aux_sym__val_number_token3] = ACTIONS(923), - [aux_sym__val_number_token4] = ACTIONS(923), - [aux_sym__val_number_token5] = ACTIONS(923), - [aux_sym__val_number_token6] = ACTIONS(923), - [anon_sym_0b] = ACTIONS(923), - [sym_filesize_unit] = ACTIONS(923), - [sym_duration_unit] = ACTIONS(923), - [anon_sym_0o] = ACTIONS(923), - [anon_sym_0x] = ACTIONS(923), - [sym_val_date] = ACTIONS(923), - [anon_sym_DQUOTE] = ACTIONS(923), - [sym__str_single_quotes] = ACTIONS(923), - [sym__str_back_ticks] = ACTIONS(923), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(923), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), - [anon_sym_CARET] = ACTIONS(923), + [ts_builtin_sym_end] = ACTIONS(1070), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_alias] = ACTIONS(1068), + [anon_sym_let] = ACTIONS(1068), + [anon_sym_let_DASHenv] = ACTIONS(1068), + [anon_sym_mut] = ACTIONS(1068), + [anon_sym_const] = ACTIONS(1068), + [anon_sym_SEMI] = ACTIONS(1068), + [sym_cmd_identifier] = ACTIONS(1068), + [anon_sym_LF] = ACTIONS(1070), + [anon_sym_def] = ACTIONS(1068), + [anon_sym_export_DASHenv] = ACTIONS(1068), + [anon_sym_extern] = ACTIONS(1068), + [anon_sym_module] = ACTIONS(1068), + [anon_sym_use] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(1068), + [anon_sym_LPAREN] = ACTIONS(1068), + [anon_sym_DOLLAR] = ACTIONS(1068), + [anon_sym_error] = ACTIONS(1068), + [anon_sym_GT] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1068), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_break] = ACTIONS(1068), + [anon_sym_continue] = ACTIONS(1068), + [anon_sym_for] = ACTIONS(1068), + [anon_sym_in] = ACTIONS(1068), + [anon_sym_loop] = ACTIONS(1068), + [anon_sym_while] = ACTIONS(1068), + [anon_sym_do] = ACTIONS(1068), + [anon_sym_if] = ACTIONS(1068), + [anon_sym_match] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_DOT_DOT] = ACTIONS(1068), + [anon_sym_try] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1068), + [anon_sym_source] = ACTIONS(1068), + [anon_sym_source_DASHenv] = ACTIONS(1068), + [anon_sym_register] = ACTIONS(1068), + [anon_sym_hide] = ACTIONS(1068), + [anon_sym_hide_DASHenv] = ACTIONS(1068), + [anon_sym_overlay] = ACTIONS(1068), + [anon_sym_as] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_where] = ACTIONS(1068), + [anon_sym_STAR_STAR] = ACTIONS(1068), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_SLASH] = ACTIONS(1068), + [anon_sym_mod] = ACTIONS(1068), + [anon_sym_SLASH_SLASH] = ACTIONS(1068), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_bit_DASHshl] = ACTIONS(1068), + [anon_sym_bit_DASHshr] = ACTIONS(1068), + [anon_sym_EQ_EQ] = ACTIONS(1068), + [anon_sym_BANG_EQ] = ACTIONS(1068), + [anon_sym_LT2] = ACTIONS(1068), + [anon_sym_LT_EQ] = ACTIONS(1068), + [anon_sym_GT_EQ] = ACTIONS(1068), + [anon_sym_not_DASHin] = ACTIONS(1068), + [anon_sym_starts_DASHwith] = ACTIONS(1068), + [anon_sym_ends_DASHwith] = ACTIONS(1068), + [anon_sym_EQ_TILDE] = ACTIONS(1068), + [anon_sym_BANG_TILDE] = ACTIONS(1068), + [anon_sym_bit_DASHand] = ACTIONS(1068), + [anon_sym_bit_DASHxor] = ACTIONS(1068), + [anon_sym_bit_DASHor] = ACTIONS(1068), + [anon_sym_and] = ACTIONS(1068), + [anon_sym_xor] = ACTIONS(1068), + [anon_sym_or] = ACTIONS(1068), + [anon_sym_not] = ACTIONS(1068), + [anon_sym_DOT_DOT2] = ACTIONS(1068), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1068), + [anon_sym_DOT_DOT_LT] = ACTIONS(1068), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1070), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1070), + [anon_sym_null] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1068), + [anon_sym_false] = ACTIONS(1068), + [aux_sym__val_number_decimal_token1] = ACTIONS(1068), + [aux_sym__val_number_decimal_token2] = ACTIONS(1068), + [anon_sym_DOT2] = ACTIONS(1068), + [aux_sym__val_number_decimal_token3] = ACTIONS(1068), + [aux_sym__val_number_token1] = ACTIONS(1068), + [aux_sym__val_number_token2] = ACTIONS(1068), + [aux_sym__val_number_token3] = ACTIONS(1068), + [aux_sym__val_number_token4] = ACTIONS(1068), + [aux_sym__val_number_token5] = ACTIONS(1068), + [aux_sym__val_number_token6] = ACTIONS(1068), + [anon_sym_0b] = ACTIONS(1068), + [anon_sym_0o] = ACTIONS(1068), + [anon_sym_0x] = ACTIONS(1068), + [sym_val_date] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(1068), + [sym__str_single_quotes] = ACTIONS(1068), + [sym__str_back_ticks] = ACTIONS(1068), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1068), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1068), + [anon_sym_CARET] = ACTIONS(1068), [anon_sym_POUND] = ACTIONS(113), }, [315] = { - [sym__immediate_decimal] = STATE(10460), + [sym_cell_path] = STATE(439), + [sym_path] = STATE(316), [sym_comment] = STATE(315), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_error] = ACTIONS(936), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_RBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_where] = ACTIONS(936), - [anon_sym_STAR_STAR] = ACTIONS(936), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(936), - [anon_sym_SLASH_SLASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(936), - [anon_sym_bit_DASHshr] = ACTIONS(936), - [anon_sym_EQ_EQ] = ACTIONS(936), - [anon_sym_BANG_EQ] = ACTIONS(936), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(936), - [anon_sym_GT_EQ] = ACTIONS(936), - [anon_sym_not_DASHin] = ACTIONS(936), - [anon_sym_starts_DASHwith] = ACTIONS(936), - [anon_sym_ends_DASHwith] = ACTIONS(936), - [anon_sym_EQ_TILDE] = ACTIONS(936), - [anon_sym_BANG_TILDE] = ACTIONS(936), - [anon_sym_bit_DASHand] = ACTIONS(936), - [anon_sym_bit_DASHxor] = ACTIONS(936), - [anon_sym_bit_DASHor] = ACTIONS(936), - [anon_sym_and] = ACTIONS(936), - [anon_sym_xor] = ACTIONS(936), - [anon_sym_or] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [aux_sym__immediate_decimal_token1] = ACTIONS(1045), - [aux_sym__immediate_decimal_token3] = ACTIONS(1045), - [aux_sym__immediate_decimal_token4] = ACTIONS(1047), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [aux_sym_unquoted_token4] = ACTIONS(1057), + [ts_builtin_sym_end] = ACTIONS(1004), + [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), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [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_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = 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_STAR] = ACTIONS(1002), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_SLASH] = ACTIONS(1002), + [anon_sym_mod] = ACTIONS(1002), + [anon_sym_SLASH_SLASH] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1002), + [anon_sym_bit_DASHshl] = ACTIONS(1002), + [anon_sym_bit_DASHshr] = ACTIONS(1002), + [anon_sym_EQ_EQ] = ACTIONS(1002), + [anon_sym_BANG_EQ] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ] = ACTIONS(1002), + [anon_sym_GT_EQ] = ACTIONS(1002), + [anon_sym_not_DASHin] = ACTIONS(1002), + [anon_sym_starts_DASHwith] = ACTIONS(1002), + [anon_sym_ends_DASHwith] = ACTIONS(1002), + [anon_sym_EQ_TILDE] = ACTIONS(1002), + [anon_sym_BANG_TILDE] = ACTIONS(1002), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT] = ACTIONS(1105), + [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), + [anon_sym_DOT2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = 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(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_CARET] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(113), }, [316] = { + [sym_path] = STATE(396), [sym_comment] = STATE(316), - [anon_sym_export] = ACTIONS(909), - [anon_sym_alias] = ACTIONS(909), - [anon_sym_let] = ACTIONS(909), - [anon_sym_let_DASHenv] = ACTIONS(909), - [anon_sym_mut] = ACTIONS(909), - [anon_sym_const] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(909), - [sym_cmd_identifier] = ACTIONS(909), - [anon_sym_LF] = ACTIONS(911), - [anon_sym_def] = ACTIONS(909), - [anon_sym_export_DASHenv] = ACTIONS(909), - [anon_sym_extern] = ACTIONS(909), - [anon_sym_module] = ACTIONS(909), - [anon_sym_use] = ACTIONS(909), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_RPAREN] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_error] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_break] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_for] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_loop] = ACTIONS(909), - [anon_sym_while] = ACTIONS(909), - [anon_sym_do] = ACTIONS(909), - [anon_sym_if] = ACTIONS(909), - [anon_sym_match] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_RBRACE] = ACTIONS(909), - [anon_sym_DOT_DOT] = ACTIONS(909), - [anon_sym_try] = ACTIONS(909), - [anon_sym_return] = ACTIONS(909), - [anon_sym_source] = ACTIONS(909), - [anon_sym_source_DASHenv] = ACTIONS(909), - [anon_sym_register] = ACTIONS(909), - [anon_sym_hide] = ACTIONS(909), - [anon_sym_hide_DASHenv] = ACTIONS(909), - [anon_sym_overlay] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_where] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(909), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(909), - [anon_sym_SLASH_SLASH] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(909), - [anon_sym_bit_DASHshr] = ACTIONS(909), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_not_DASHin] = ACTIONS(909), - [anon_sym_starts_DASHwith] = ACTIONS(909), - [anon_sym_ends_DASHwith] = ACTIONS(909), - [anon_sym_EQ_TILDE] = ACTIONS(909), - [anon_sym_BANG_TILDE] = ACTIONS(909), - [anon_sym_bit_DASHand] = ACTIONS(909), - [anon_sym_bit_DASHxor] = ACTIONS(909), - [anon_sym_bit_DASHor] = ACTIONS(909), - [anon_sym_and] = ACTIONS(909), - [anon_sym_xor] = ACTIONS(909), - [anon_sym_or] = ACTIONS(909), - [anon_sym_not] = ACTIONS(909), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [aux_sym__immediate_decimal_token2] = ACTIONS(1087), - [anon_sym_null] = ACTIONS(909), - [anon_sym_true] = ACTIONS(909), - [anon_sym_false] = ACTIONS(909), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(909), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(909), - [aux_sym__val_number_token1] = ACTIONS(909), - [aux_sym__val_number_token2] = ACTIONS(909), - [aux_sym__val_number_token3] = ACTIONS(909), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(909), - [aux_sym__val_number_token6] = ACTIONS(909), - [anon_sym_0b] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(909), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym__str_single_quotes] = ACTIONS(909), - [sym__str_back_ticks] = ACTIONS(909), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), - [anon_sym_CARET] = ACTIONS(909), - [anon_sym_POUND] = ACTIONS(113), - }, - [317] = { - [sym_comment] = STATE(317), - [anon_sym_export] = ACTIONS(917), - [anon_sym_alias] = ACTIONS(917), - [anon_sym_let] = ACTIONS(917), - [anon_sym_let_DASHenv] = ACTIONS(917), - [anon_sym_mut] = ACTIONS(917), - [anon_sym_const] = ACTIONS(917), - [anon_sym_SEMI] = ACTIONS(917), - [sym_cmd_identifier] = ACTIONS(917), - [anon_sym_LF] = ACTIONS(919), - [anon_sym_def] = ACTIONS(917), - [anon_sym_export_DASHenv] = ACTIONS(917), - [anon_sym_extern] = ACTIONS(917), - [anon_sym_module] = ACTIONS(917), - [anon_sym_use] = ACTIONS(917), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_LPAREN] = ACTIONS(917), - [anon_sym_RPAREN] = ACTIONS(917), - [anon_sym_DOLLAR] = ACTIONS(917), - [anon_sym_error] = ACTIONS(917), - [anon_sym_GT] = ACTIONS(917), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_break] = ACTIONS(917), - [anon_sym_continue] = ACTIONS(917), - [anon_sym_for] = ACTIONS(917), - [anon_sym_in] = ACTIONS(917), - [anon_sym_loop] = ACTIONS(917), - [anon_sym_while] = ACTIONS(917), - [anon_sym_do] = ACTIONS(917), - [anon_sym_if] = ACTIONS(917), - [anon_sym_match] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(917), - [anon_sym_RBRACE] = ACTIONS(917), - [anon_sym_DOT_DOT] = ACTIONS(917), - [anon_sym_try] = ACTIONS(917), - [anon_sym_return] = ACTIONS(917), - [anon_sym_source] = ACTIONS(917), - [anon_sym_source_DASHenv] = ACTIONS(917), - [anon_sym_register] = ACTIONS(917), - [anon_sym_hide] = ACTIONS(917), - [anon_sym_hide_DASHenv] = ACTIONS(917), - [anon_sym_overlay] = ACTIONS(917), - [anon_sym_STAR] = ACTIONS(917), - [anon_sym_where] = ACTIONS(917), - [anon_sym_STAR_STAR] = ACTIONS(917), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_mod] = ACTIONS(917), - [anon_sym_SLASH_SLASH] = ACTIONS(917), - [anon_sym_PLUS] = ACTIONS(917), - [anon_sym_bit_DASHshl] = ACTIONS(917), - [anon_sym_bit_DASHshr] = ACTIONS(917), - [anon_sym_EQ_EQ] = ACTIONS(917), - [anon_sym_BANG_EQ] = ACTIONS(917), - [anon_sym_LT2] = ACTIONS(917), - [anon_sym_LT_EQ] = ACTIONS(917), - [anon_sym_GT_EQ] = ACTIONS(917), - [anon_sym_not_DASHin] = ACTIONS(917), - [anon_sym_starts_DASHwith] = ACTIONS(917), - [anon_sym_ends_DASHwith] = ACTIONS(917), - [anon_sym_EQ_TILDE] = ACTIONS(917), - [anon_sym_BANG_TILDE] = ACTIONS(917), - [anon_sym_bit_DASHand] = ACTIONS(917), - [anon_sym_bit_DASHxor] = ACTIONS(917), - [anon_sym_bit_DASHor] = ACTIONS(917), - [anon_sym_and] = ACTIONS(917), - [anon_sym_xor] = ACTIONS(917), - [anon_sym_or] = ACTIONS(917), - [anon_sym_not] = ACTIONS(917), - [anon_sym_DOT_DOT2] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ] = ACTIONS(917), - [anon_sym_DOT_DOT_LT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(919), - [anon_sym_DOT_DOT_LT2] = ACTIONS(919), - [aux_sym__immediate_decimal_token2] = ACTIONS(1125), - [anon_sym_null] = ACTIONS(917), - [anon_sym_true] = ACTIONS(917), - [anon_sym_false] = ACTIONS(917), - [aux_sym__val_number_decimal_token1] = ACTIONS(917), - [aux_sym__val_number_decimal_token2] = ACTIONS(917), - [anon_sym_DOT2] = ACTIONS(917), - [aux_sym__val_number_decimal_token3] = ACTIONS(917), - [aux_sym__val_number_token1] = ACTIONS(917), - [aux_sym__val_number_token2] = ACTIONS(917), - [aux_sym__val_number_token3] = ACTIONS(917), - [aux_sym__val_number_token4] = ACTIONS(917), - [aux_sym__val_number_token5] = ACTIONS(917), - [aux_sym__val_number_token6] = ACTIONS(917), - [anon_sym_0b] = ACTIONS(917), - [sym_filesize_unit] = ACTIONS(917), - [sym_duration_unit] = ACTIONS(917), - [anon_sym_0o] = ACTIONS(917), - [anon_sym_0x] = ACTIONS(917), - [sym_val_date] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(917), - [sym__str_single_quotes] = ACTIONS(917), - [sym__str_back_ticks] = ACTIONS(917), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(917), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(917), - [anon_sym_CARET] = ACTIONS(917), - [anon_sym_POUND] = ACTIONS(113), - }, - [318] = { - [sym_comment] = STATE(318), - [ts_builtin_sym_end] = ACTIONS(925), - [anon_sym_export] = ACTIONS(923), - [anon_sym_alias] = ACTIONS(923), - [anon_sym_let] = ACTIONS(923), - [anon_sym_let_DASHenv] = ACTIONS(923), - [anon_sym_mut] = ACTIONS(923), - [anon_sym_const] = ACTIONS(923), - [anon_sym_SEMI] = ACTIONS(923), - [sym_cmd_identifier] = ACTIONS(923), - [anon_sym_LF] = ACTIONS(925), - [anon_sym_def] = ACTIONS(923), - [anon_sym_export_DASHenv] = ACTIONS(923), - [anon_sym_extern] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_use] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_DOLLAR] = ACTIONS(923), - [anon_sym_error] = ACTIONS(923), - [anon_sym_GT] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_break] = ACTIONS(923), - [anon_sym_continue] = ACTIONS(923), - [anon_sym_for] = ACTIONS(923), - [anon_sym_in] = ACTIONS(923), - [anon_sym_loop] = ACTIONS(923), - [anon_sym_while] = ACTIONS(923), - [anon_sym_do] = ACTIONS(923), - [anon_sym_if] = ACTIONS(923), - [anon_sym_match] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(923), - [anon_sym_DOT_DOT] = ACTIONS(923), - [anon_sym_try] = ACTIONS(923), - [anon_sym_return] = ACTIONS(923), - [anon_sym_source] = ACTIONS(923), - [anon_sym_source_DASHenv] = ACTIONS(923), - [anon_sym_register] = ACTIONS(923), - [anon_sym_hide] = ACTIONS(923), - [anon_sym_hide_DASHenv] = ACTIONS(923), - [anon_sym_overlay] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_where] = ACTIONS(923), - [anon_sym_STAR_STAR] = ACTIONS(923), - [anon_sym_PLUS_PLUS] = ACTIONS(923), - [anon_sym_SLASH] = ACTIONS(923), - [anon_sym_mod] = ACTIONS(923), - [anon_sym_SLASH_SLASH] = ACTIONS(923), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_bit_DASHshl] = ACTIONS(923), - [anon_sym_bit_DASHshr] = ACTIONS(923), - [anon_sym_EQ_EQ] = ACTIONS(923), - [anon_sym_BANG_EQ] = ACTIONS(923), - [anon_sym_LT2] = ACTIONS(923), - [anon_sym_LT_EQ] = ACTIONS(923), - [anon_sym_GT_EQ] = ACTIONS(923), - [anon_sym_not_DASHin] = ACTIONS(923), - [anon_sym_starts_DASHwith] = ACTIONS(923), - [anon_sym_ends_DASHwith] = ACTIONS(923), - [anon_sym_EQ_TILDE] = ACTIONS(923), - [anon_sym_BANG_TILDE] = ACTIONS(923), - [anon_sym_bit_DASHand] = ACTIONS(923), - [anon_sym_bit_DASHxor] = ACTIONS(923), - [anon_sym_bit_DASHor] = ACTIONS(923), - [anon_sym_and] = ACTIONS(923), - [anon_sym_xor] = ACTIONS(923), - [anon_sym_or] = ACTIONS(923), - [anon_sym_not] = ACTIONS(923), - [anon_sym_DOT_DOT2] = ACTIONS(923), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(923), - [anon_sym_DOT_DOT_LT] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(925), - [anon_sym_DOT_DOT_LT2] = ACTIONS(925), - [aux_sym__immediate_decimal_token2] = ACTIONS(1129), - [anon_sym_null] = ACTIONS(923), - [anon_sym_true] = ACTIONS(923), - [anon_sym_false] = ACTIONS(923), - [aux_sym__val_number_decimal_token1] = ACTIONS(923), - [aux_sym__val_number_decimal_token2] = ACTIONS(923), - [anon_sym_DOT2] = ACTIONS(923), - [aux_sym__val_number_decimal_token3] = ACTIONS(923), - [aux_sym__val_number_token1] = ACTIONS(923), - [aux_sym__val_number_token2] = ACTIONS(923), - [aux_sym__val_number_token3] = ACTIONS(923), - [aux_sym__val_number_token4] = ACTIONS(923), - [aux_sym__val_number_token5] = ACTIONS(923), - [aux_sym__val_number_token6] = ACTIONS(923), - [anon_sym_0b] = ACTIONS(923), - [sym_filesize_unit] = ACTIONS(923), - [sym_duration_unit] = ACTIONS(923), - [anon_sym_0o] = ACTIONS(923), - [anon_sym_0x] = ACTIONS(923), - [sym_val_date] = ACTIONS(923), - [anon_sym_DQUOTE] = ACTIONS(923), - [sym__str_single_quotes] = ACTIONS(923), - [sym__str_back_ticks] = ACTIONS(923), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(923), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), - [anon_sym_CARET] = ACTIONS(923), - [anon_sym_POUND] = ACTIONS(113), - }, - [319] = { - [sym_cell_path] = STATE(424), - [sym_path] = STATE(324), - [sym_comment] = STATE(319), - [anon_sym_export] = ACTIONS(995), - [anon_sym_alias] = ACTIONS(995), - [anon_sym_let] = ACTIONS(995), - [anon_sym_let_DASHenv] = ACTIONS(995), - [anon_sym_mut] = ACTIONS(995), - [anon_sym_const] = ACTIONS(995), - [anon_sym_SEMI] = ACTIONS(995), - [sym_cmd_identifier] = ACTIONS(995), - [anon_sym_LF] = ACTIONS(997), - [anon_sym_def] = ACTIONS(995), - [anon_sym_export_DASHenv] = ACTIONS(995), - [anon_sym_extern] = ACTIONS(995), - [anon_sym_module] = ACTIONS(995), - [anon_sym_use] = ACTIONS(995), - [anon_sym_LBRACK] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_RPAREN] = ACTIONS(995), - [anon_sym_DOLLAR] = ACTIONS(995), - [anon_sym_error] = ACTIONS(995), - [anon_sym_GT] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_break] = ACTIONS(995), - [anon_sym_continue] = ACTIONS(995), - [anon_sym_for] = ACTIONS(995), - [anon_sym_in] = ACTIONS(995), - [anon_sym_loop] = ACTIONS(995), - [anon_sym_while] = ACTIONS(995), - [anon_sym_do] = ACTIONS(995), - [anon_sym_if] = ACTIONS(995), - [anon_sym_match] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_RBRACE] = ACTIONS(995), - [anon_sym_DOT_DOT] = ACTIONS(995), - [anon_sym_try] = ACTIONS(995), - [anon_sym_return] = ACTIONS(995), - [anon_sym_source] = ACTIONS(995), - [anon_sym_source_DASHenv] = ACTIONS(995), - [anon_sym_register] = ACTIONS(995), - [anon_sym_hide] = ACTIONS(995), - [anon_sym_hide_DASHenv] = ACTIONS(995), - [anon_sym_overlay] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_where] = ACTIONS(995), - [anon_sym_STAR_STAR] = ACTIONS(995), - [anon_sym_PLUS_PLUS] = ACTIONS(995), - [anon_sym_SLASH] = ACTIONS(995), - [anon_sym_mod] = ACTIONS(995), - [anon_sym_SLASH_SLASH] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_bit_DASHshl] = ACTIONS(995), - [anon_sym_bit_DASHshr] = ACTIONS(995), - [anon_sym_EQ_EQ] = ACTIONS(995), - [anon_sym_BANG_EQ] = ACTIONS(995), - [anon_sym_LT2] = ACTIONS(995), - [anon_sym_LT_EQ] = ACTIONS(995), - [anon_sym_GT_EQ] = ACTIONS(995), - [anon_sym_not_DASHin] = ACTIONS(995), - [anon_sym_starts_DASHwith] = ACTIONS(995), - [anon_sym_ends_DASHwith] = ACTIONS(995), - [anon_sym_EQ_TILDE] = ACTIONS(995), - [anon_sym_BANG_TILDE] = ACTIONS(995), - [anon_sym_bit_DASHand] = ACTIONS(995), - [anon_sym_bit_DASHxor] = ACTIONS(995), - [anon_sym_bit_DASHor] = ACTIONS(995), - [anon_sym_and] = ACTIONS(995), - [anon_sym_xor] = ACTIONS(995), - [anon_sym_or] = ACTIONS(995), - [anon_sym_not] = ACTIONS(995), - [anon_sym_DOT_DOT2] = ACTIONS(995), - [anon_sym_DOT] = ACTIONS(1131), - [anon_sym_DOT_DOT_EQ] = ACTIONS(995), - [anon_sym_DOT_DOT_LT] = ACTIONS(995), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(997), - [anon_sym_DOT_DOT_LT2] = ACTIONS(997), - [anon_sym_null] = ACTIONS(995), - [anon_sym_true] = ACTIONS(995), - [anon_sym_false] = ACTIONS(995), - [aux_sym__val_number_decimal_token1] = ACTIONS(995), - [aux_sym__val_number_decimal_token2] = ACTIONS(995), - [anon_sym_DOT2] = ACTIONS(995), - [aux_sym__val_number_decimal_token3] = ACTIONS(995), - [aux_sym__val_number_token1] = ACTIONS(995), - [aux_sym__val_number_token2] = ACTIONS(995), - [aux_sym__val_number_token3] = ACTIONS(995), - [aux_sym__val_number_token4] = ACTIONS(995), - [aux_sym__val_number_token5] = ACTIONS(995), - [aux_sym__val_number_token6] = ACTIONS(995), - [anon_sym_0b] = ACTIONS(995), - [anon_sym_0o] = ACTIONS(995), - [anon_sym_0x] = ACTIONS(995), - [sym_val_date] = ACTIONS(995), - [anon_sym_DQUOTE] = ACTIONS(995), - [sym__str_single_quotes] = ACTIONS(995), - [sym__str_back_ticks] = ACTIONS(995), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(995), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(995), - [anon_sym_CARET] = ACTIONS(995), - [anon_sym_POUND] = ACTIONS(113), - }, - [320] = { - [sym_comment] = STATE(320), - [ts_builtin_sym_end] = ACTIONS(911), - [anon_sym_export] = ACTIONS(909), - [anon_sym_alias] = ACTIONS(909), - [anon_sym_let] = ACTIONS(909), - [anon_sym_let_DASHenv] = ACTIONS(909), - [anon_sym_mut] = ACTIONS(909), - [anon_sym_const] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(909), - [sym_cmd_identifier] = ACTIONS(909), - [anon_sym_LF] = ACTIONS(911), - [anon_sym_def] = ACTIONS(909), - [anon_sym_export_DASHenv] = ACTIONS(909), - [anon_sym_extern] = ACTIONS(909), - [anon_sym_module] = ACTIONS(909), - [anon_sym_use] = ACTIONS(909), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_error] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_break] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_for] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_loop] = ACTIONS(909), - [anon_sym_while] = ACTIONS(909), - [anon_sym_do] = ACTIONS(909), - [anon_sym_if] = ACTIONS(909), - [anon_sym_match] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_DOT_DOT] = ACTIONS(909), - [anon_sym_try] = ACTIONS(909), - [anon_sym_return] = ACTIONS(909), - [anon_sym_source] = ACTIONS(909), - [anon_sym_source_DASHenv] = ACTIONS(909), - [anon_sym_register] = ACTIONS(909), - [anon_sym_hide] = ACTIONS(909), - [anon_sym_hide_DASHenv] = ACTIONS(909), - [anon_sym_overlay] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_where] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(909), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(909), - [anon_sym_SLASH_SLASH] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(909), - [anon_sym_bit_DASHshr] = ACTIONS(909), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_not_DASHin] = ACTIONS(909), - [anon_sym_starts_DASHwith] = ACTIONS(909), - [anon_sym_ends_DASHwith] = ACTIONS(909), - [anon_sym_EQ_TILDE] = ACTIONS(909), - [anon_sym_BANG_TILDE] = ACTIONS(909), - [anon_sym_bit_DASHand] = ACTIONS(909), - [anon_sym_bit_DASHxor] = ACTIONS(909), - [anon_sym_bit_DASHor] = ACTIONS(909), - [anon_sym_and] = ACTIONS(909), - [anon_sym_xor] = ACTIONS(909), - [anon_sym_or] = ACTIONS(909), - [anon_sym_not] = ACTIONS(909), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [anon_sym_null] = ACTIONS(909), - [anon_sym_true] = ACTIONS(909), - [anon_sym_false] = ACTIONS(909), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(909), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(909), - [aux_sym__val_number_token1] = ACTIONS(909), - [aux_sym__val_number_token2] = ACTIONS(909), - [aux_sym__val_number_token3] = ACTIONS(909), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(909), - [aux_sym__val_number_token6] = ACTIONS(909), - [anon_sym_0b] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(909), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym__str_single_quotes] = ACTIONS(909), - [sym__str_back_ticks] = ACTIONS(909), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), - [anon_sym_CARET] = ACTIONS(909), - [aux_sym_unquoted_token5] = ACTIONS(909), - [anon_sym_POUND] = ACTIONS(113), - }, - [321] = { - [sym_comment] = STATE(321), - [ts_builtin_sym_end] = ACTIONS(919), - [anon_sym_export] = ACTIONS(917), - [anon_sym_alias] = ACTIONS(917), - [anon_sym_let] = ACTIONS(917), - [anon_sym_let_DASHenv] = ACTIONS(917), - [anon_sym_mut] = ACTIONS(917), - [anon_sym_const] = ACTIONS(917), - [anon_sym_SEMI] = ACTIONS(917), - [sym_cmd_identifier] = ACTIONS(917), - [anon_sym_LF] = ACTIONS(919), - [anon_sym_def] = ACTIONS(917), - [anon_sym_export_DASHenv] = ACTIONS(917), - [anon_sym_extern] = ACTIONS(917), - [anon_sym_module] = ACTIONS(917), - [anon_sym_use] = ACTIONS(917), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_LPAREN] = ACTIONS(917), - [anon_sym_DOLLAR] = ACTIONS(917), - [anon_sym_error] = ACTIONS(917), - [anon_sym_GT] = ACTIONS(917), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_break] = ACTIONS(917), - [anon_sym_continue] = ACTIONS(917), - [anon_sym_for] = ACTIONS(917), - [anon_sym_in] = ACTIONS(917), - [anon_sym_loop] = ACTIONS(917), - [anon_sym_while] = ACTIONS(917), - [anon_sym_do] = ACTIONS(917), - [anon_sym_if] = ACTIONS(917), - [anon_sym_match] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(917), - [anon_sym_DOT_DOT] = ACTIONS(917), - [anon_sym_try] = ACTIONS(917), - [anon_sym_return] = ACTIONS(917), - [anon_sym_source] = ACTIONS(917), - [anon_sym_source_DASHenv] = ACTIONS(917), - [anon_sym_register] = ACTIONS(917), - [anon_sym_hide] = ACTIONS(917), - [anon_sym_hide_DASHenv] = ACTIONS(917), - [anon_sym_overlay] = ACTIONS(917), - [anon_sym_STAR] = ACTIONS(917), - [anon_sym_where] = ACTIONS(917), - [anon_sym_STAR_STAR] = ACTIONS(917), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_mod] = ACTIONS(917), - [anon_sym_SLASH_SLASH] = ACTIONS(917), - [anon_sym_PLUS] = ACTIONS(917), - [anon_sym_bit_DASHshl] = ACTIONS(917), - [anon_sym_bit_DASHshr] = ACTIONS(917), - [anon_sym_EQ_EQ] = ACTIONS(917), - [anon_sym_BANG_EQ] = ACTIONS(917), - [anon_sym_LT2] = ACTIONS(917), - [anon_sym_LT_EQ] = ACTIONS(917), - [anon_sym_GT_EQ] = ACTIONS(917), - [anon_sym_not_DASHin] = ACTIONS(917), - [anon_sym_starts_DASHwith] = ACTIONS(917), - [anon_sym_ends_DASHwith] = ACTIONS(917), - [anon_sym_EQ_TILDE] = ACTIONS(917), - [anon_sym_BANG_TILDE] = ACTIONS(917), - [anon_sym_bit_DASHand] = ACTIONS(917), - [anon_sym_bit_DASHxor] = ACTIONS(917), - [anon_sym_bit_DASHor] = ACTIONS(917), - [anon_sym_and] = ACTIONS(917), - [anon_sym_xor] = ACTIONS(917), - [anon_sym_or] = ACTIONS(917), - [anon_sym_not] = ACTIONS(917), - [anon_sym_DOT_DOT2] = ACTIONS(917), - [anon_sym_DOT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ] = ACTIONS(917), - [anon_sym_DOT_DOT_LT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(919), - [anon_sym_DOT_DOT_LT2] = ACTIONS(919), - [anon_sym_null] = ACTIONS(917), - [anon_sym_true] = ACTIONS(917), - [anon_sym_false] = ACTIONS(917), - [aux_sym__val_number_decimal_token1] = ACTIONS(917), - [aux_sym__val_number_decimal_token2] = ACTIONS(917), - [anon_sym_DOT2] = ACTIONS(917), - [aux_sym__val_number_decimal_token3] = ACTIONS(917), - [aux_sym__val_number_token1] = ACTIONS(917), - [aux_sym__val_number_token2] = ACTIONS(917), - [aux_sym__val_number_token3] = ACTIONS(917), - [aux_sym__val_number_token4] = ACTIONS(917), - [aux_sym__val_number_token5] = ACTIONS(917), - [aux_sym__val_number_token6] = ACTIONS(917), - [anon_sym_0b] = ACTIONS(917), - [sym_filesize_unit] = ACTIONS(917), - [sym_duration_unit] = ACTIONS(917), - [anon_sym_0o] = ACTIONS(917), - [anon_sym_0x] = ACTIONS(917), - [sym_val_date] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(917), - [sym__str_single_quotes] = ACTIONS(917), - [sym__str_back_ticks] = ACTIONS(917), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(917), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(917), - [anon_sym_CARET] = ACTIONS(917), - [aux_sym_unquoted_token5] = ACTIONS(917), - [anon_sym_POUND] = ACTIONS(113), - }, - [322] = { - [sym_comment] = STATE(322), - [ts_builtin_sym_end] = ACTIONS(952), - [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), - [anon_sym_SEMI] = ACTIONS(950), - [sym_cmd_identifier] = ACTIONS(950), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(950), - [anon_sym_LPAREN] = ACTIONS(950), - [anon_sym_DOLLAR] = ACTIONS(950), - [anon_sym_error] = ACTIONS(950), - [anon_sym_GT] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(950), - [anon_sym_break] = ACTIONS(950), - [anon_sym_continue] = ACTIONS(950), - [anon_sym_for] = ACTIONS(950), - [anon_sym_in] = ACTIONS(950), - [anon_sym_loop] = ACTIONS(950), - [anon_sym_while] = ACTIONS(950), - [anon_sym_do] = ACTIONS(950), - [anon_sym_if] = ACTIONS(950), - [anon_sym_match] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(950), - [anon_sym_DOT_DOT] = ACTIONS(950), - [anon_sym_try] = ACTIONS(950), - [anon_sym_return] = ACTIONS(950), - [anon_sym_source] = ACTIONS(950), - [anon_sym_source_DASHenv] = ACTIONS(950), - [anon_sym_register] = ACTIONS(950), - [anon_sym_hide] = ACTIONS(950), - [anon_sym_hide_DASHenv] = ACTIONS(950), - [anon_sym_overlay] = ACTIONS(950), - [anon_sym_STAR] = ACTIONS(950), - [anon_sym_where] = ACTIONS(950), - [anon_sym_STAR_STAR] = ACTIONS(950), - [anon_sym_PLUS_PLUS] = ACTIONS(950), - [anon_sym_SLASH] = ACTIONS(950), - [anon_sym_mod] = ACTIONS(950), - [anon_sym_SLASH_SLASH] = ACTIONS(950), - [anon_sym_PLUS] = ACTIONS(950), - [anon_sym_bit_DASHshl] = ACTIONS(950), - [anon_sym_bit_DASHshr] = ACTIONS(950), - [anon_sym_EQ_EQ] = ACTIONS(950), - [anon_sym_BANG_EQ] = ACTIONS(950), - [anon_sym_LT2] = ACTIONS(950), - [anon_sym_LT_EQ] = ACTIONS(950), - [anon_sym_GT_EQ] = ACTIONS(950), - [anon_sym_not_DASHin] = ACTIONS(950), - [anon_sym_starts_DASHwith] = ACTIONS(950), - [anon_sym_ends_DASHwith] = ACTIONS(950), - [anon_sym_EQ_TILDE] = ACTIONS(950), - [anon_sym_BANG_TILDE] = ACTIONS(950), - [anon_sym_bit_DASHand] = ACTIONS(950), - [anon_sym_bit_DASHxor] = ACTIONS(950), - [anon_sym_bit_DASHor] = ACTIONS(950), - [anon_sym_and] = ACTIONS(950), - [anon_sym_xor] = ACTIONS(950), - [anon_sym_or] = ACTIONS(950), - [anon_sym_not] = ACTIONS(950), - [anon_sym_DOT_DOT2] = ACTIONS(950), - [anon_sym_DOT] = 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(950), - [anon_sym_true] = ACTIONS(950), - [anon_sym_false] = ACTIONS(950), - [aux_sym__val_number_decimal_token1] = ACTIONS(950), - [aux_sym__val_number_decimal_token2] = ACTIONS(950), - [anon_sym_DOT2] = ACTIONS(950), - [aux_sym__val_number_decimal_token3] = ACTIONS(950), - [aux_sym__val_number_token1] = ACTIONS(950), - [aux_sym__val_number_token2] = ACTIONS(950), - [aux_sym__val_number_token3] = ACTIONS(950), - [aux_sym__val_number_token4] = ACTIONS(950), - [aux_sym__val_number_token5] = ACTIONS(950), - [aux_sym__val_number_token6] = ACTIONS(950), - [anon_sym_0b] = ACTIONS(950), - [sym_filesize_unit] = ACTIONS(950), - [sym_duration_unit] = ACTIONS(950), - [anon_sym_0o] = ACTIONS(950), - [anon_sym_0x] = ACTIONS(950), - [sym_val_date] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym__str_single_quotes] = ACTIONS(950), - [sym__str_back_ticks] = ACTIONS(950), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(950), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(950), - [anon_sym_CARET] = ACTIONS(950), - [aux_sym_unquoted_token5] = ACTIONS(950), - [anon_sym_POUND] = ACTIONS(113), - }, - [323] = { - [sym_cell_path] = STATE(429), - [sym_path] = STATE(324), - [sym_comment] = STATE(323), + [aux_sym_cell_path_repeat1] = STATE(319), + [ts_builtin_sym_end] = ACTIONS(1012), [anon_sym_export] = ACTIONS(1010), [anon_sym_alias] = ACTIONS(1010), [anon_sym_let] = ACTIONS(1010), @@ -131949,10 +128399,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(1010), [anon_sym_LBRACK] = ACTIONS(1010), [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_RPAREN] = ACTIONS(1010), [anon_sym_DOLLAR] = ACTIONS(1010), [anon_sym_error] = ACTIONS(1010), [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), [anon_sym_DASH] = ACTIONS(1010), [anon_sym_break] = ACTIONS(1010), [anon_sym_continue] = ACTIONS(1010), @@ -131964,7 +128414,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1010), [anon_sym_match] = ACTIONS(1010), [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_RBRACE] = ACTIONS(1010), [anon_sym_DOT_DOT] = ACTIONS(1010), [anon_sym_try] = ACTIONS(1010), [anon_sym_return] = ACTIONS(1010), @@ -131974,6 +128423,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(1010), [anon_sym_hide_DASHenv] = ACTIONS(1010), [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_as] = ACTIONS(1010), [anon_sym_STAR] = ACTIONS(1010), [anon_sym_where] = ACTIONS(1010), [anon_sym_STAR_STAR] = ACTIONS(1010), @@ -132001,12 +128451,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(1010), [anon_sym_or] = ACTIONS(1010), [anon_sym_not] = ACTIONS(1010), - [anon_sym_DOT_DOT2] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(1131), + [anon_sym_DOT] = ACTIONS(1105), [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), [anon_sym_DOT_DOT_LT] = ACTIONS(1010), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), [anon_sym_null] = ACTIONS(1010), [anon_sym_true] = ACTIONS(1010), [anon_sym_false] = ACTIONS(1010), @@ -132032,113 +128479,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(113), }, - [324] = { - [sym_path] = STATE(389), - [sym_comment] = STATE(324), - [aux_sym_cell_path_repeat1] = STATE(325), - [anon_sym_export] = ACTIONS(987), - [anon_sym_alias] = ACTIONS(987), - [anon_sym_let] = ACTIONS(987), - [anon_sym_let_DASHenv] = ACTIONS(987), - [anon_sym_mut] = ACTIONS(987), - [anon_sym_const] = ACTIONS(987), - [anon_sym_SEMI] = ACTIONS(987), - [sym_cmd_identifier] = ACTIONS(987), - [anon_sym_LF] = ACTIONS(989), - [anon_sym_def] = ACTIONS(987), - [anon_sym_export_DASHenv] = ACTIONS(987), - [anon_sym_extern] = ACTIONS(987), - [anon_sym_module] = ACTIONS(987), - [anon_sym_use] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(987), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_RPAREN] = ACTIONS(987), - [anon_sym_DOLLAR] = ACTIONS(987), - [anon_sym_error] = ACTIONS(987), - [anon_sym_GT] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_break] = ACTIONS(987), - [anon_sym_continue] = ACTIONS(987), - [anon_sym_for] = ACTIONS(987), - [anon_sym_in] = ACTIONS(987), - [anon_sym_loop] = ACTIONS(987), - [anon_sym_while] = ACTIONS(987), - [anon_sym_do] = ACTIONS(987), - [anon_sym_if] = ACTIONS(987), - [anon_sym_match] = ACTIONS(987), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_RBRACE] = ACTIONS(987), - [anon_sym_DOT_DOT] = ACTIONS(987), - [anon_sym_try] = ACTIONS(987), - [anon_sym_return] = ACTIONS(987), - [anon_sym_source] = ACTIONS(987), - [anon_sym_source_DASHenv] = ACTIONS(987), - [anon_sym_register] = ACTIONS(987), - [anon_sym_hide] = ACTIONS(987), - [anon_sym_hide_DASHenv] = ACTIONS(987), - [anon_sym_overlay] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(987), - [anon_sym_where] = ACTIONS(987), - [anon_sym_STAR_STAR] = ACTIONS(987), - [anon_sym_PLUS_PLUS] = ACTIONS(987), - [anon_sym_SLASH] = ACTIONS(987), - [anon_sym_mod] = ACTIONS(987), - [anon_sym_SLASH_SLASH] = ACTIONS(987), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_bit_DASHshl] = ACTIONS(987), - [anon_sym_bit_DASHshr] = ACTIONS(987), - [anon_sym_EQ_EQ] = ACTIONS(987), - [anon_sym_BANG_EQ] = ACTIONS(987), - [anon_sym_LT2] = ACTIONS(987), - [anon_sym_LT_EQ] = ACTIONS(987), - [anon_sym_GT_EQ] = ACTIONS(987), - [anon_sym_not_DASHin] = ACTIONS(987), - [anon_sym_starts_DASHwith] = ACTIONS(987), - [anon_sym_ends_DASHwith] = ACTIONS(987), - [anon_sym_EQ_TILDE] = ACTIONS(987), - [anon_sym_BANG_TILDE] = ACTIONS(987), - [anon_sym_bit_DASHand] = ACTIONS(987), - [anon_sym_bit_DASHxor] = ACTIONS(987), - [anon_sym_bit_DASHor] = ACTIONS(987), - [anon_sym_and] = ACTIONS(987), - [anon_sym_xor] = ACTIONS(987), - [anon_sym_or] = ACTIONS(987), - [anon_sym_not] = ACTIONS(987), - [anon_sym_DOT_DOT2] = ACTIONS(987), - [anon_sym_DOT] = ACTIONS(1131), - [anon_sym_DOT_DOT_EQ] = ACTIONS(987), - [anon_sym_DOT_DOT_LT] = ACTIONS(987), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(989), - [anon_sym_DOT_DOT_LT2] = ACTIONS(989), - [anon_sym_null] = ACTIONS(987), - [anon_sym_true] = ACTIONS(987), - [anon_sym_false] = ACTIONS(987), - [aux_sym__val_number_decimal_token1] = ACTIONS(987), - [aux_sym__val_number_decimal_token2] = ACTIONS(987), - [anon_sym_DOT2] = ACTIONS(987), - [aux_sym__val_number_decimal_token3] = ACTIONS(987), - [aux_sym__val_number_token1] = ACTIONS(987), - [aux_sym__val_number_token2] = ACTIONS(987), - [aux_sym__val_number_token3] = ACTIONS(987), - [aux_sym__val_number_token4] = ACTIONS(987), - [aux_sym__val_number_token5] = ACTIONS(987), - [aux_sym__val_number_token6] = ACTIONS(987), - [anon_sym_0b] = ACTIONS(987), - [anon_sym_0o] = ACTIONS(987), - [anon_sym_0x] = ACTIONS(987), - [sym_val_date] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(987), - [sym__str_single_quotes] = ACTIONS(987), - [sym__str_back_ticks] = ACTIONS(987), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(987), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), + [317] = { + [sym_cell_path] = STATE(475), + [sym_path] = STATE(316), + [sym_comment] = STATE(317), + [ts_builtin_sym_end] = ACTIONS(1059), + [anon_sym_export] = ACTIONS(1057), + [anon_sym_alias] = ACTIONS(1057), + [anon_sym_let] = ACTIONS(1057), + [anon_sym_let_DASHenv] = ACTIONS(1057), + [anon_sym_mut] = ACTIONS(1057), + [anon_sym_const] = ACTIONS(1057), + [anon_sym_SEMI] = ACTIONS(1057), + [sym_cmd_identifier] = ACTIONS(1057), + [anon_sym_LF] = ACTIONS(1059), + [anon_sym_def] = ACTIONS(1057), + [anon_sym_export_DASHenv] = ACTIONS(1057), + [anon_sym_extern] = ACTIONS(1057), + [anon_sym_module] = ACTIONS(1057), + [anon_sym_use] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_LPAREN] = ACTIONS(1057), + [anon_sym_DOLLAR] = ACTIONS(1057), + [anon_sym_error] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_break] = ACTIONS(1057), + [anon_sym_continue] = ACTIONS(1057), + [anon_sym_for] = ACTIONS(1057), + [anon_sym_in] = ACTIONS(1057), + [anon_sym_loop] = ACTIONS(1057), + [anon_sym_while] = ACTIONS(1057), + [anon_sym_do] = ACTIONS(1057), + [anon_sym_if] = ACTIONS(1057), + [anon_sym_match] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_try] = ACTIONS(1057), + [anon_sym_return] = ACTIONS(1057), + [anon_sym_source] = ACTIONS(1057), + [anon_sym_source_DASHenv] = ACTIONS(1057), + [anon_sym_register] = ACTIONS(1057), + [anon_sym_hide] = ACTIONS(1057), + [anon_sym_hide_DASHenv] = ACTIONS(1057), + [anon_sym_overlay] = ACTIONS(1057), + [anon_sym_as] = ACTIONS(1057), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_where] = ACTIONS(1057), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_mod] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_PLUS] = ACTIONS(1057), + [anon_sym_bit_DASHshl] = ACTIONS(1057), + [anon_sym_bit_DASHshr] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1057), + [anon_sym_LT2] = ACTIONS(1057), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_not_DASHin] = ACTIONS(1057), + [anon_sym_starts_DASHwith] = ACTIONS(1057), + [anon_sym_ends_DASHwith] = ACTIONS(1057), + [anon_sym_EQ_TILDE] = ACTIONS(1057), + [anon_sym_BANG_TILDE] = ACTIONS(1057), + [anon_sym_bit_DASHand] = ACTIONS(1057), + [anon_sym_bit_DASHxor] = ACTIONS(1057), + [anon_sym_bit_DASHor] = ACTIONS(1057), + [anon_sym_and] = ACTIONS(1057), + [anon_sym_xor] = ACTIONS(1057), + [anon_sym_or] = ACTIONS(1057), + [anon_sym_not] = ACTIONS(1057), + [anon_sym_DOT] = ACTIONS(1105), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1057), + [anon_sym_DOT_DOT_LT] = ACTIONS(1057), + [anon_sym_null] = ACTIONS(1057), + [anon_sym_true] = ACTIONS(1057), + [anon_sym_false] = ACTIONS(1057), + [aux_sym__val_number_decimal_token1] = ACTIONS(1057), + [aux_sym__val_number_decimal_token2] = ACTIONS(1057), + [anon_sym_DOT2] = ACTIONS(1057), + [aux_sym__val_number_decimal_token3] = ACTIONS(1057), + [aux_sym__val_number_token1] = ACTIONS(1057), + [aux_sym__val_number_token2] = ACTIONS(1057), + [aux_sym__val_number_token3] = ACTIONS(1057), + [aux_sym__val_number_token4] = ACTIONS(1057), + [aux_sym__val_number_token5] = ACTIONS(1057), + [aux_sym__val_number_token6] = ACTIONS(1057), + [anon_sym_0b] = ACTIONS(1057), + [anon_sym_0o] = ACTIONS(1057), + [anon_sym_0x] = ACTIONS(1057), + [sym_val_date] = ACTIONS(1057), + [anon_sym_DQUOTE] = ACTIONS(1057), + [sym__str_single_quotes] = ACTIONS(1057), + [sym__str_back_ticks] = ACTIONS(1057), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1057), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1057), + [anon_sym_CARET] = ACTIONS(1057), [anon_sym_POUND] = ACTIONS(113), }, - [325] = { - [sym_path] = STATE(389), - [sym_comment] = STATE(325), - [aux_sym_cell_path_repeat1] = STATE(326), + [318] = { + [sym_cell_path] = STATE(478), + [sym_path] = STATE(316), + [sym_comment] = STATE(318), + [ts_builtin_sym_end] = ACTIONS(1053), + [anon_sym_export] = ACTIONS(1051), + [anon_sym_alias] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(1051), + [anon_sym_let_DASHenv] = ACTIONS(1051), + [anon_sym_mut] = ACTIONS(1051), + [anon_sym_const] = ACTIONS(1051), + [anon_sym_SEMI] = ACTIONS(1051), + [sym_cmd_identifier] = ACTIONS(1051), + [anon_sym_LF] = ACTIONS(1053), + [anon_sym_def] = ACTIONS(1051), + [anon_sym_export_DASHenv] = ACTIONS(1051), + [anon_sym_extern] = ACTIONS(1051), + [anon_sym_module] = ACTIONS(1051), + [anon_sym_use] = ACTIONS(1051), + [anon_sym_LBRACK] = ACTIONS(1051), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_DOLLAR] = ACTIONS(1051), + [anon_sym_error] = ACTIONS(1051), + [anon_sym_GT] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_break] = ACTIONS(1051), + [anon_sym_continue] = ACTIONS(1051), + [anon_sym_for] = ACTIONS(1051), + [anon_sym_in] = ACTIONS(1051), + [anon_sym_loop] = ACTIONS(1051), + [anon_sym_while] = ACTIONS(1051), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_if] = ACTIONS(1051), + [anon_sym_match] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(1051), + [anon_sym_DOT_DOT] = ACTIONS(1051), + [anon_sym_try] = ACTIONS(1051), + [anon_sym_return] = ACTIONS(1051), + [anon_sym_source] = ACTIONS(1051), + [anon_sym_source_DASHenv] = ACTIONS(1051), + [anon_sym_register] = ACTIONS(1051), + [anon_sym_hide] = ACTIONS(1051), + [anon_sym_hide_DASHenv] = ACTIONS(1051), + [anon_sym_overlay] = ACTIONS(1051), + [anon_sym_as] = ACTIONS(1051), + [anon_sym_STAR] = ACTIONS(1051), + [anon_sym_where] = ACTIONS(1051), + [anon_sym_STAR_STAR] = ACTIONS(1051), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_mod] = ACTIONS(1051), + [anon_sym_SLASH_SLASH] = ACTIONS(1051), + [anon_sym_PLUS] = ACTIONS(1051), + [anon_sym_bit_DASHshl] = ACTIONS(1051), + [anon_sym_bit_DASHshr] = ACTIONS(1051), + [anon_sym_EQ_EQ] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1051), + [anon_sym_LT2] = ACTIONS(1051), + [anon_sym_LT_EQ] = ACTIONS(1051), + [anon_sym_GT_EQ] = ACTIONS(1051), + [anon_sym_not_DASHin] = ACTIONS(1051), + [anon_sym_starts_DASHwith] = ACTIONS(1051), + [anon_sym_ends_DASHwith] = ACTIONS(1051), + [anon_sym_EQ_TILDE] = ACTIONS(1051), + [anon_sym_BANG_TILDE] = ACTIONS(1051), + [anon_sym_bit_DASHand] = ACTIONS(1051), + [anon_sym_bit_DASHxor] = ACTIONS(1051), + [anon_sym_bit_DASHor] = ACTIONS(1051), + [anon_sym_and] = ACTIONS(1051), + [anon_sym_xor] = ACTIONS(1051), + [anon_sym_or] = ACTIONS(1051), + [anon_sym_not] = ACTIONS(1051), + [anon_sym_DOT] = ACTIONS(1105), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1051), + [anon_sym_DOT_DOT_LT] = ACTIONS(1051), + [anon_sym_null] = ACTIONS(1051), + [anon_sym_true] = ACTIONS(1051), + [anon_sym_false] = ACTIONS(1051), + [aux_sym__val_number_decimal_token1] = ACTIONS(1051), + [aux_sym__val_number_decimal_token2] = ACTIONS(1051), + [anon_sym_DOT2] = ACTIONS(1051), + [aux_sym__val_number_decimal_token3] = ACTIONS(1051), + [aux_sym__val_number_token1] = ACTIONS(1051), + [aux_sym__val_number_token2] = ACTIONS(1051), + [aux_sym__val_number_token3] = ACTIONS(1051), + [aux_sym__val_number_token4] = ACTIONS(1051), + [aux_sym__val_number_token5] = ACTIONS(1051), + [aux_sym__val_number_token6] = ACTIONS(1051), + [anon_sym_0b] = ACTIONS(1051), + [anon_sym_0o] = ACTIONS(1051), + [anon_sym_0x] = ACTIONS(1051), + [sym_val_date] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(1051), + [sym__str_single_quotes] = ACTIONS(1051), + [sym__str_back_ticks] = ACTIONS(1051), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1051), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1051), + [anon_sym_CARET] = ACTIONS(1051), + [anon_sym_POUND] = ACTIONS(113), + }, + [319] = { + [sym_path] = STATE(396), + [sym_comment] = STATE(319), + [aux_sym_cell_path_repeat1] = STATE(297), + [ts_builtin_sym_end] = ACTIONS(1008), [anon_sym_export] = ACTIONS(1006), [anon_sym_alias] = ACTIONS(1006), [anon_sym_let] = ACTIONS(1006), @@ -132155,10 +128702,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(1006), [anon_sym_LBRACK] = ACTIONS(1006), [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_RPAREN] = ACTIONS(1006), [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_error] = ACTIONS(1006), [anon_sym_GT] = ACTIONS(1006), + [anon_sym_DASH_DASH] = ACTIONS(1006), [anon_sym_DASH] = ACTIONS(1006), [anon_sym_break] = ACTIONS(1006), [anon_sym_continue] = ACTIONS(1006), @@ -132170,7 +128717,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1006), [anon_sym_match] = ACTIONS(1006), [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1006), [anon_sym_DOT_DOT] = ACTIONS(1006), [anon_sym_try] = ACTIONS(1006), [anon_sym_return] = ACTIONS(1006), @@ -132180,6 +128726,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(1006), [anon_sym_hide_DASHenv] = ACTIONS(1006), [anon_sym_overlay] = ACTIONS(1006), + [anon_sym_as] = ACTIONS(1006), [anon_sym_STAR] = ACTIONS(1006), [anon_sym_where] = ACTIONS(1006), [anon_sym_STAR_STAR] = ACTIONS(1006), @@ -132207,12 +128754,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(1006), [anon_sym_or] = ACTIONS(1006), [anon_sym_not] = ACTIONS(1006), - [anon_sym_DOT_DOT2] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1131), + [anon_sym_DOT] = ACTIONS(1105), [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), [anon_sym_DOT_DOT_LT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), [anon_sym_null] = ACTIONS(1006), [anon_sym_true] = ACTIONS(1006), [anon_sym_false] = ACTIONS(1006), @@ -132238,2081 +128782,3920 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1006), [anon_sym_POUND] = ACTIONS(113), }, + [320] = { + [sym_comment] = STATE(320), + [anon_sym_export] = ACTIONS(1024), + [anon_sym_alias] = ACTIONS(1024), + [anon_sym_EQ] = ACTIONS(1024), + [anon_sym_let] = ACTIONS(1024), + [anon_sym_let_DASHenv] = ACTIONS(1024), + [anon_sym_mut] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_PLUS_EQ] = ACTIONS(1024), + [anon_sym_DASH_EQ] = ACTIONS(1024), + [anon_sym_STAR_EQ] = ACTIONS(1024), + [anon_sym_SLASH_EQ] = ACTIONS(1024), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1024), + [sym_cmd_identifier] = ACTIONS(1024), + [anon_sym_LF] = ACTIONS(1026), + [anon_sym_def] = ACTIONS(1024), + [anon_sym_export_DASHenv] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1024), + [anon_sym_module] = ACTIONS(1024), + [anon_sym_use] = ACTIONS(1024), + [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_COMMA] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_PIPE] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_error] = ACTIONS(1024), + [anon_sym_list] = ACTIONS(1024), + [anon_sym_GT] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_loop] = ACTIONS(1024), + [anon_sym_make] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_else] = ACTIONS(1024), + [anon_sym_match] = ACTIONS(1024), + [anon_sym_RBRACE] = ACTIONS(1024), + [anon_sym_try] = ACTIONS(1024), + [anon_sym_catch] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_source] = ACTIONS(1024), + [anon_sym_source_DASHenv] = ACTIONS(1024), + [anon_sym_register] = ACTIONS(1024), + [anon_sym_hide] = ACTIONS(1024), + [anon_sym_hide_DASHenv] = ACTIONS(1024), + [anon_sym_overlay] = ACTIONS(1024), + [anon_sym_new] = ACTIONS(1024), + [anon_sym_as] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(1125), + [anon_sym_STAR_STAR] = ACTIONS(1024), + [anon_sym_PLUS_PLUS] = ACTIONS(1024), + [anon_sym_SLASH] = ACTIONS(1024), + [anon_sym_mod] = ACTIONS(1024), + [anon_sym_SLASH_SLASH] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_bit_DASHshl] = ACTIONS(1024), + [anon_sym_bit_DASHshr] = ACTIONS(1024), + [anon_sym_EQ_EQ] = ACTIONS(1024), + [anon_sym_BANG_EQ] = ACTIONS(1024), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ] = ACTIONS(1024), + [anon_sym_GT_EQ] = ACTIONS(1024), + [anon_sym_not_DASHin] = ACTIONS(1024), + [anon_sym_starts_DASHwith] = ACTIONS(1024), + [anon_sym_ends_DASHwith] = ACTIONS(1024), + [anon_sym_EQ_TILDE] = ACTIONS(1024), + [anon_sym_BANG_TILDE] = ACTIONS(1024), + [anon_sym_bit_DASHand] = ACTIONS(1024), + [anon_sym_bit_DASHxor] = ACTIONS(1024), + [anon_sym_bit_DASHor] = ACTIONS(1024), + [anon_sym_and] = ACTIONS(1024), + [anon_sym_xor] = ACTIONS(1024), + [anon_sym_or] = ACTIONS(1024), + [anon_sym_DOT_DOT2] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1026), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1024), + [aux_sym__val_number_token1] = ACTIONS(1024), + [aux_sym__val_number_token2] = ACTIONS(1024), + [aux_sym__val_number_token3] = ACTIONS(1024), + [aux_sym__val_number_token4] = ACTIONS(1024), + [aux_sym__val_number_token5] = ACTIONS(1024), + [aux_sym__val_number_token6] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym__str_single_quotes] = ACTIONS(1024), + [sym__str_back_ticks] = ACTIONS(1024), + [aux_sym__record_key_token2] = ACTIONS(1024), + [anon_sym_POUND] = ACTIONS(113), + }, + [321] = { + [sym_comment] = STATE(321), + [ts_builtin_sym_end] = ACTIONS(1026), + [anon_sym_export] = ACTIONS(1024), + [anon_sym_alias] = ACTIONS(1024), + [anon_sym_let] = ACTIONS(1024), + [anon_sym_let_DASHenv] = ACTIONS(1024), + [anon_sym_mut] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1024), + [sym_cmd_identifier] = ACTIONS(1024), + [anon_sym_LF] = ACTIONS(1026), + [anon_sym_def] = ACTIONS(1024), + [anon_sym_export_DASHenv] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1024), + [anon_sym_module] = ACTIONS(1024), + [anon_sym_use] = ACTIONS(1024), + [anon_sym_LBRACK] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_error] = ACTIONS(1024), + [anon_sym_GT] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_loop] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_match] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym_DOT_DOT] = ACTIONS(1024), + [anon_sym_try] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_source] = ACTIONS(1024), + [anon_sym_source_DASHenv] = ACTIONS(1024), + [anon_sym_register] = ACTIONS(1024), + [anon_sym_hide] = ACTIONS(1024), + [anon_sym_hide_DASHenv] = ACTIONS(1024), + [anon_sym_overlay] = ACTIONS(1024), + [anon_sym_as] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_where] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(1127), + [anon_sym_STAR_STAR] = ACTIONS(1024), + [anon_sym_PLUS_PLUS] = ACTIONS(1024), + [anon_sym_SLASH] = ACTIONS(1024), + [anon_sym_mod] = ACTIONS(1024), + [anon_sym_SLASH_SLASH] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_bit_DASHshl] = ACTIONS(1024), + [anon_sym_bit_DASHshr] = ACTIONS(1024), + [anon_sym_EQ_EQ] = ACTIONS(1024), + [anon_sym_BANG_EQ] = ACTIONS(1024), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ] = ACTIONS(1024), + [anon_sym_GT_EQ] = ACTIONS(1024), + [anon_sym_not_DASHin] = ACTIONS(1024), + [anon_sym_starts_DASHwith] = ACTIONS(1024), + [anon_sym_ends_DASHwith] = ACTIONS(1024), + [anon_sym_EQ_TILDE] = ACTIONS(1024), + [anon_sym_BANG_TILDE] = ACTIONS(1024), + [anon_sym_bit_DASHand] = ACTIONS(1024), + [anon_sym_bit_DASHxor] = ACTIONS(1024), + [anon_sym_bit_DASHor] = ACTIONS(1024), + [anon_sym_and] = ACTIONS(1024), + [anon_sym_xor] = ACTIONS(1024), + [anon_sym_or] = ACTIONS(1024), + [anon_sym_not] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT] = ACTIONS(1024), + [anon_sym_null] = ACTIONS(1024), + [anon_sym_true] = ACTIONS(1024), + [anon_sym_false] = ACTIONS(1024), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1024), + [aux_sym__val_number_token1] = ACTIONS(1024), + [aux_sym__val_number_token2] = ACTIONS(1024), + [aux_sym__val_number_token3] = ACTIONS(1024), + [aux_sym__val_number_token4] = ACTIONS(1024), + [aux_sym__val_number_token5] = ACTIONS(1024), + [aux_sym__val_number_token6] = ACTIONS(1024), + [anon_sym_0b] = ACTIONS(1024), + [anon_sym_0o] = ACTIONS(1024), + [anon_sym_0x] = ACTIONS(1024), + [sym_val_date] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym__str_single_quotes] = ACTIONS(1024), + [sym__str_back_ticks] = ACTIONS(1024), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1024), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1024), + [anon_sym_CARET] = ACTIONS(1024), + [anon_sym_POUND] = ACTIONS(113), + }, + [322] = { + [sym_comment] = STATE(322), + [ts_builtin_sym_end] = ACTIONS(1026), + [anon_sym_export] = ACTIONS(1024), + [anon_sym_alias] = ACTIONS(1024), + [anon_sym_let] = ACTIONS(1024), + [anon_sym_let_DASHenv] = ACTIONS(1024), + [anon_sym_mut] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1024), + [sym_cmd_identifier] = ACTIONS(1024), + [anon_sym_LF] = ACTIONS(1026), + [anon_sym_def] = ACTIONS(1024), + [anon_sym_export_DASHenv] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1024), + [anon_sym_module] = ACTIONS(1024), + [anon_sym_use] = ACTIONS(1024), + [anon_sym_LBRACK] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_error] = ACTIONS(1024), + [anon_sym_GT] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_loop] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_match] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym_DOT_DOT] = ACTIONS(1024), + [anon_sym_try] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_source] = ACTIONS(1024), + [anon_sym_source_DASHenv] = ACTIONS(1024), + [anon_sym_register] = ACTIONS(1024), + [anon_sym_hide] = ACTIONS(1024), + [anon_sym_hide_DASHenv] = ACTIONS(1024), + [anon_sym_overlay] = ACTIONS(1024), + [anon_sym_as] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_where] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(1127), + [anon_sym_STAR_STAR] = ACTIONS(1024), + [anon_sym_PLUS_PLUS] = ACTIONS(1024), + [anon_sym_SLASH] = ACTIONS(1024), + [anon_sym_mod] = ACTIONS(1024), + [anon_sym_SLASH_SLASH] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_bit_DASHshl] = ACTIONS(1024), + [anon_sym_bit_DASHshr] = ACTIONS(1024), + [anon_sym_EQ_EQ] = ACTIONS(1024), + [anon_sym_BANG_EQ] = ACTIONS(1024), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ] = ACTIONS(1024), + [anon_sym_GT_EQ] = ACTIONS(1024), + [anon_sym_not_DASHin] = ACTIONS(1024), + [anon_sym_starts_DASHwith] = ACTIONS(1024), + [anon_sym_ends_DASHwith] = ACTIONS(1024), + [anon_sym_EQ_TILDE] = ACTIONS(1024), + [anon_sym_BANG_TILDE] = ACTIONS(1024), + [anon_sym_bit_DASHand] = ACTIONS(1024), + [anon_sym_bit_DASHxor] = ACTIONS(1024), + [anon_sym_bit_DASHor] = ACTIONS(1024), + [anon_sym_and] = ACTIONS(1024), + [anon_sym_xor] = ACTIONS(1024), + [anon_sym_or] = ACTIONS(1024), + [anon_sym_not] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT] = ACTIONS(1024), + [anon_sym_null] = ACTIONS(1024), + [anon_sym_true] = ACTIONS(1024), + [anon_sym_false] = ACTIONS(1024), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1024), + [aux_sym__val_number_token1] = ACTIONS(1024), + [aux_sym__val_number_token2] = ACTIONS(1024), + [aux_sym__val_number_token3] = ACTIONS(1024), + [aux_sym__val_number_token4] = ACTIONS(1024), + [aux_sym__val_number_token5] = ACTIONS(1024), + [aux_sym__val_number_token6] = ACTIONS(1024), + [anon_sym_0b] = ACTIONS(1024), + [anon_sym_0o] = ACTIONS(1024), + [anon_sym_0x] = ACTIONS(1024), + [sym_val_date] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym__str_single_quotes] = ACTIONS(1024), + [sym__str_back_ticks] = ACTIONS(1024), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1024), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1024), + [anon_sym_CARET] = ACTIONS(1024), + [anon_sym_POUND] = ACTIONS(113), + }, + [323] = { + [sym_comment] = STATE(323), + [anon_sym_export] = ACTIONS(1129), + [anon_sym_alias] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_let_DASHenv] = ACTIONS(1129), + [anon_sym_mut] = ACTIONS(1129), + [anon_sym_const] = ACTIONS(1129), + [anon_sym_SEMI] = ACTIONS(1129), + [sym_cmd_identifier] = ACTIONS(1129), + [anon_sym_LF] = ACTIONS(1131), + [anon_sym_def] = ACTIONS(1129), + [anon_sym_export_DASHenv] = ACTIONS(1129), + [anon_sym_extern] = ACTIONS(1129), + [anon_sym_module] = ACTIONS(1129), + [anon_sym_use] = ACTIONS(1129), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(1129), + [anon_sym_RPAREN] = ACTIONS(1129), + [anon_sym_DOLLAR] = ACTIONS(1129), + [anon_sym_error] = ACTIONS(1129), + [anon_sym_GT] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_break] = ACTIONS(1129), + [anon_sym_continue] = ACTIONS(1129), + [anon_sym_for] = ACTIONS(1129), + [anon_sym_in] = ACTIONS(1129), + [anon_sym_loop] = ACTIONS(1129), + [anon_sym_while] = ACTIONS(1129), + [anon_sym_do] = ACTIONS(1129), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(1129), + [anon_sym_RBRACE] = ACTIONS(1129), + [anon_sym_DOT_DOT] = ACTIONS(1129), + [anon_sym_try] = ACTIONS(1129), + [anon_sym_return] = ACTIONS(1129), + [anon_sym_source] = ACTIONS(1129), + [anon_sym_source_DASHenv] = ACTIONS(1129), + [anon_sym_register] = ACTIONS(1129), + [anon_sym_hide] = ACTIONS(1129), + [anon_sym_hide_DASHenv] = ACTIONS(1129), + [anon_sym_overlay] = ACTIONS(1129), + [anon_sym_as] = ACTIONS(1129), + [anon_sym_STAR] = ACTIONS(1129), + [anon_sym_where] = ACTIONS(1129), + [anon_sym_STAR_STAR] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(1129), + [anon_sym_mod] = ACTIONS(1129), + [anon_sym_SLASH_SLASH] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_bit_DASHshl] = ACTIONS(1129), + [anon_sym_bit_DASHshr] = ACTIONS(1129), + [anon_sym_EQ_EQ] = ACTIONS(1129), + [anon_sym_BANG_EQ] = ACTIONS(1129), + [anon_sym_LT2] = ACTIONS(1129), + [anon_sym_LT_EQ] = ACTIONS(1129), + [anon_sym_GT_EQ] = ACTIONS(1129), + [anon_sym_not_DASHin] = ACTIONS(1129), + [anon_sym_starts_DASHwith] = ACTIONS(1129), + [anon_sym_ends_DASHwith] = ACTIONS(1129), + [anon_sym_EQ_TILDE] = ACTIONS(1129), + [anon_sym_BANG_TILDE] = ACTIONS(1129), + [anon_sym_bit_DASHand] = ACTIONS(1129), + [anon_sym_bit_DASHxor] = ACTIONS(1129), + [anon_sym_bit_DASHor] = ACTIONS(1129), + [anon_sym_and] = ACTIONS(1129), + [anon_sym_xor] = ACTIONS(1129), + [anon_sym_or] = ACTIONS(1129), + [anon_sym_not] = ACTIONS(1129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1129), + [anon_sym_DOT_DOT_LT] = ACTIONS(1129), + [anon_sym_null] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1129), + [anon_sym_false] = ACTIONS(1129), + [aux_sym__val_number_decimal_token1] = ACTIONS(1129), + [aux_sym__val_number_decimal_token2] = ACTIONS(1129), + [anon_sym_DOT2] = ACTIONS(1129), + [aux_sym__val_number_decimal_token3] = ACTIONS(1129), + [aux_sym__val_number_token1] = ACTIONS(1129), + [aux_sym__val_number_token2] = ACTIONS(1129), + [aux_sym__val_number_token3] = ACTIONS(1129), + [aux_sym__val_number_token4] = ACTIONS(1129), + [aux_sym__val_number_token5] = ACTIONS(1129), + [aux_sym__val_number_token6] = ACTIONS(1129), + [anon_sym_0b] = ACTIONS(1129), + [anon_sym_0o] = ACTIONS(1129), + [anon_sym_0x] = ACTIONS(1129), + [sym_val_date] = ACTIONS(1129), + [anon_sym_DQUOTE] = ACTIONS(1129), + [sym__str_single_quotes] = ACTIONS(1129), + [sym__str_back_ticks] = ACTIONS(1129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1129), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1129), + [anon_sym_CARET] = ACTIONS(1129), + [aux_sym_unquoted_token6] = ACTIONS(1133), + [anon_sym_POUND] = ACTIONS(113), + }, + [324] = { + [sym_comment] = STATE(324), + [anon_sym_export] = ACTIONS(1135), + [anon_sym_alias] = ACTIONS(1135), + [anon_sym_let] = ACTIONS(1135), + [anon_sym_let_DASHenv] = ACTIONS(1135), + [anon_sym_mut] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_SEMI] = ACTIONS(1135), + [sym_cmd_identifier] = ACTIONS(1135), + [anon_sym_LF] = ACTIONS(1137), + [anon_sym_def] = ACTIONS(1135), + [anon_sym_export_DASHenv] = ACTIONS(1135), + [anon_sym_extern] = ACTIONS(1135), + [anon_sym_module] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1135), + [anon_sym_LPAREN] = ACTIONS(1135), + [anon_sym_RPAREN] = ACTIONS(1135), + [anon_sym_DOLLAR] = ACTIONS(1135), + [anon_sym_error] = ACTIONS(1135), + [anon_sym_GT] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1135), + [anon_sym_for] = ACTIONS(1135), + [anon_sym_in] = ACTIONS(1135), + [anon_sym_loop] = ACTIONS(1135), + [anon_sym_while] = ACTIONS(1135), + [anon_sym_do] = ACTIONS(1135), + [anon_sym_if] = ACTIONS(1135), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1135), + [anon_sym_RBRACE] = ACTIONS(1135), + [anon_sym_DOT_DOT] = ACTIONS(1135), + [anon_sym_try] = ACTIONS(1135), + [anon_sym_return] = ACTIONS(1135), + [anon_sym_source] = ACTIONS(1135), + [anon_sym_source_DASHenv] = ACTIONS(1135), + [anon_sym_register] = ACTIONS(1135), + [anon_sym_hide] = ACTIONS(1135), + [anon_sym_hide_DASHenv] = ACTIONS(1135), + [anon_sym_overlay] = ACTIONS(1135), + [anon_sym_as] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1135), + [anon_sym_where] = ACTIONS(1135), + [anon_sym_STAR_STAR] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_SLASH] = ACTIONS(1135), + [anon_sym_mod] = ACTIONS(1135), + [anon_sym_SLASH_SLASH] = ACTIONS(1135), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_bit_DASHshl] = ACTIONS(1135), + [anon_sym_bit_DASHshr] = ACTIONS(1135), + [anon_sym_EQ_EQ] = ACTIONS(1135), + [anon_sym_BANG_EQ] = ACTIONS(1135), + [anon_sym_LT2] = ACTIONS(1135), + [anon_sym_LT_EQ] = ACTIONS(1135), + [anon_sym_GT_EQ] = ACTIONS(1135), + [anon_sym_not_DASHin] = ACTIONS(1135), + [anon_sym_starts_DASHwith] = ACTIONS(1135), + [anon_sym_ends_DASHwith] = ACTIONS(1135), + [anon_sym_EQ_TILDE] = ACTIONS(1135), + [anon_sym_BANG_TILDE] = ACTIONS(1135), + [anon_sym_bit_DASHand] = ACTIONS(1135), + [anon_sym_bit_DASHxor] = ACTIONS(1135), + [anon_sym_bit_DASHor] = ACTIONS(1135), + [anon_sym_and] = ACTIONS(1135), + [anon_sym_xor] = ACTIONS(1135), + [anon_sym_or] = ACTIONS(1135), + [anon_sym_not] = ACTIONS(1135), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1135), + [anon_sym_DOT_DOT_LT] = ACTIONS(1135), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_true] = ACTIONS(1135), + [anon_sym_false] = ACTIONS(1135), + [aux_sym__val_number_decimal_token1] = ACTIONS(1135), + [aux_sym__val_number_decimal_token2] = ACTIONS(1135), + [anon_sym_DOT2] = ACTIONS(1135), + [aux_sym__val_number_decimal_token3] = ACTIONS(1135), + [aux_sym__val_number_token1] = ACTIONS(1135), + [aux_sym__val_number_token2] = ACTIONS(1135), + [aux_sym__val_number_token3] = ACTIONS(1135), + [aux_sym__val_number_token4] = ACTIONS(1135), + [aux_sym__val_number_token5] = ACTIONS(1135), + [aux_sym__val_number_token6] = ACTIONS(1135), + [anon_sym_0b] = ACTIONS(1135), + [anon_sym_0o] = ACTIONS(1135), + [anon_sym_0x] = ACTIONS(1135), + [sym_val_date] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1135), + [sym__str_single_quotes] = ACTIONS(1135), + [sym__str_back_ticks] = ACTIONS(1135), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1135), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1135), + [anon_sym_CARET] = ACTIONS(1135), + [aux_sym_unquoted_token6] = ACTIONS(1133), + [anon_sym_POUND] = ACTIONS(113), + }, + [325] = { + [sym_comment] = STATE(325), + [anon_sym_export] = ACTIONS(1047), + [anon_sym_alias] = ACTIONS(1047), + [anon_sym_let] = ACTIONS(1047), + [anon_sym_let_DASHenv] = ACTIONS(1047), + [anon_sym_mut] = ACTIONS(1047), + [anon_sym_const] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1047), + [sym_cmd_identifier] = ACTIONS(1047), + [anon_sym_LF] = ACTIONS(1049), + [anon_sym_def] = ACTIONS(1047), + [anon_sym_export_DASHenv] = ACTIONS(1047), + [anon_sym_extern] = ACTIONS(1047), + [anon_sym_module] = ACTIONS(1047), + [anon_sym_use] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1047), + [anon_sym_RPAREN] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1047), + [anon_sym_error] = ACTIONS(1047), + [anon_sym_GT] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_break] = ACTIONS(1047), + [anon_sym_continue] = ACTIONS(1047), + [anon_sym_for] = ACTIONS(1047), + [anon_sym_in] = ACTIONS(1047), + [anon_sym_loop] = ACTIONS(1047), + [anon_sym_while] = ACTIONS(1047), + [anon_sym_do] = ACTIONS(1047), + [anon_sym_if] = ACTIONS(1047), + [anon_sym_match] = ACTIONS(1047), + [anon_sym_LBRACE] = ACTIONS(1047), + [anon_sym_RBRACE] = ACTIONS(1047), + [anon_sym_DOT_DOT] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1047), + [anon_sym_return] = ACTIONS(1047), + [anon_sym_source] = ACTIONS(1047), + [anon_sym_source_DASHenv] = ACTIONS(1047), + [anon_sym_register] = ACTIONS(1047), + [anon_sym_hide] = ACTIONS(1047), + [anon_sym_hide_DASHenv] = ACTIONS(1047), + [anon_sym_overlay] = ACTIONS(1047), + [anon_sym_as] = ACTIONS(1047), + [anon_sym_STAR] = ACTIONS(1047), + [anon_sym_where] = ACTIONS(1047), + [anon_sym_STAR_STAR] = ACTIONS(1047), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_SLASH] = ACTIONS(1047), + [anon_sym_mod] = ACTIONS(1047), + [anon_sym_SLASH_SLASH] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1047), + [anon_sym_bit_DASHshl] = ACTIONS(1047), + [anon_sym_bit_DASHshr] = ACTIONS(1047), + [anon_sym_EQ_EQ] = ACTIONS(1047), + [anon_sym_BANG_EQ] = ACTIONS(1047), + [anon_sym_LT2] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1047), + [anon_sym_GT_EQ] = ACTIONS(1047), + [anon_sym_not_DASHin] = ACTIONS(1047), + [anon_sym_starts_DASHwith] = ACTIONS(1047), + [anon_sym_ends_DASHwith] = ACTIONS(1047), + [anon_sym_EQ_TILDE] = ACTIONS(1047), + [anon_sym_BANG_TILDE] = ACTIONS(1047), + [anon_sym_bit_DASHand] = ACTIONS(1047), + [anon_sym_bit_DASHxor] = ACTIONS(1047), + [anon_sym_bit_DASHor] = ACTIONS(1047), + [anon_sym_and] = ACTIONS(1047), + [anon_sym_xor] = ACTIONS(1047), + [anon_sym_or] = ACTIONS(1047), + [anon_sym_not] = ACTIONS(1047), + [anon_sym_DOT] = ACTIONS(1047), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1047), + [anon_sym_DOT_DOT_LT] = ACTIONS(1047), + [anon_sym_null] = ACTIONS(1047), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [aux_sym__val_number_decimal_token1] = ACTIONS(1047), + [aux_sym__val_number_decimal_token2] = ACTIONS(1047), + [anon_sym_DOT2] = ACTIONS(1047), + [aux_sym__val_number_decimal_token3] = ACTIONS(1047), + [aux_sym__val_number_token1] = ACTIONS(1047), + [aux_sym__val_number_token2] = ACTIONS(1047), + [aux_sym__val_number_token3] = ACTIONS(1047), + [aux_sym__val_number_token4] = ACTIONS(1047), + [aux_sym__val_number_token5] = ACTIONS(1047), + [aux_sym__val_number_token6] = ACTIONS(1047), + [anon_sym_0b] = ACTIONS(1047), + [anon_sym_0o] = ACTIONS(1047), + [anon_sym_0x] = ACTIONS(1047), + [sym_val_date] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1047), + [sym__str_single_quotes] = ACTIONS(1047), + [sym__str_back_ticks] = ACTIONS(1047), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1047), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1047), + [anon_sym_CARET] = ACTIONS(1047), + [anon_sym_POUND] = ACTIONS(113), + }, [326] = { - [sym_path] = STATE(389), [sym_comment] = STATE(326), - [aux_sym_cell_path_repeat1] = STATE(326), - [anon_sym_export] = ACTIONS(999), - [anon_sym_alias] = ACTIONS(999), - [anon_sym_let] = ACTIONS(999), - [anon_sym_let_DASHenv] = ACTIONS(999), - [anon_sym_mut] = ACTIONS(999), - [anon_sym_const] = ACTIONS(999), - [anon_sym_SEMI] = ACTIONS(999), - [sym_cmd_identifier] = ACTIONS(999), - [anon_sym_LF] = ACTIONS(1001), - [anon_sym_def] = ACTIONS(999), - [anon_sym_export_DASHenv] = ACTIONS(999), - [anon_sym_extern] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_use] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_RPAREN] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_error] = ACTIONS(999), - [anon_sym_GT] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_break] = ACTIONS(999), - [anon_sym_continue] = ACTIONS(999), - [anon_sym_for] = ACTIONS(999), - [anon_sym_in] = ACTIONS(999), - [anon_sym_loop] = ACTIONS(999), - [anon_sym_while] = ACTIONS(999), - [anon_sym_do] = ACTIONS(999), - [anon_sym_if] = ACTIONS(999), - [anon_sym_match] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(999), - [anon_sym_RBRACE] = ACTIONS(999), - [anon_sym_DOT_DOT] = ACTIONS(999), - [anon_sym_try] = ACTIONS(999), - [anon_sym_return] = ACTIONS(999), - [anon_sym_source] = ACTIONS(999), - [anon_sym_source_DASHenv] = ACTIONS(999), - [anon_sym_register] = ACTIONS(999), - [anon_sym_hide] = ACTIONS(999), - [anon_sym_hide_DASHenv] = ACTIONS(999), - [anon_sym_overlay] = ACTIONS(999), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_where] = ACTIONS(999), - [anon_sym_STAR_STAR] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(999), - [anon_sym_mod] = ACTIONS(999), - [anon_sym_SLASH_SLASH] = ACTIONS(999), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_bit_DASHshl] = ACTIONS(999), - [anon_sym_bit_DASHshr] = ACTIONS(999), - [anon_sym_EQ_EQ] = ACTIONS(999), - [anon_sym_BANG_EQ] = ACTIONS(999), - [anon_sym_LT2] = ACTIONS(999), - [anon_sym_LT_EQ] = ACTIONS(999), - [anon_sym_GT_EQ] = ACTIONS(999), - [anon_sym_not_DASHin] = ACTIONS(999), - [anon_sym_starts_DASHwith] = ACTIONS(999), - [anon_sym_ends_DASHwith] = ACTIONS(999), - [anon_sym_EQ_TILDE] = ACTIONS(999), - [anon_sym_BANG_TILDE] = ACTIONS(999), - [anon_sym_bit_DASHand] = ACTIONS(999), - [anon_sym_bit_DASHxor] = ACTIONS(999), - [anon_sym_bit_DASHor] = ACTIONS(999), - [anon_sym_and] = ACTIONS(999), - [anon_sym_xor] = ACTIONS(999), - [anon_sym_or] = ACTIONS(999), - [anon_sym_not] = ACTIONS(999), - [anon_sym_DOT_DOT2] = ACTIONS(999), - [anon_sym_DOT] = ACTIONS(1133), - [anon_sym_DOT_DOT_EQ] = ACTIONS(999), - [anon_sym_DOT_DOT_LT] = ACTIONS(999), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1001), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1001), - [anon_sym_null] = ACTIONS(999), - [anon_sym_true] = ACTIONS(999), - [anon_sym_false] = ACTIONS(999), - [aux_sym__val_number_decimal_token1] = ACTIONS(999), - [aux_sym__val_number_decimal_token2] = ACTIONS(999), - [anon_sym_DOT2] = ACTIONS(999), - [aux_sym__val_number_decimal_token3] = ACTIONS(999), - [aux_sym__val_number_token1] = ACTIONS(999), - [aux_sym__val_number_token2] = ACTIONS(999), - [aux_sym__val_number_token3] = ACTIONS(999), - [aux_sym__val_number_token4] = ACTIONS(999), - [aux_sym__val_number_token5] = ACTIONS(999), - [aux_sym__val_number_token6] = ACTIONS(999), - [anon_sym_0b] = ACTIONS(999), - [anon_sym_0o] = ACTIONS(999), - [anon_sym_0x] = ACTIONS(999), - [sym_val_date] = ACTIONS(999), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym__str_single_quotes] = ACTIONS(999), - [sym__str_back_ticks] = ACTIONS(999), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(999), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(999), - [anon_sym_CARET] = ACTIONS(999), + [anon_sym_export] = ACTIONS(1024), + [anon_sym_alias] = ACTIONS(1024), + [anon_sym_EQ] = ACTIONS(1024), + [anon_sym_let] = ACTIONS(1024), + [anon_sym_let_DASHenv] = ACTIONS(1024), + [anon_sym_mut] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_PLUS_EQ] = ACTIONS(1024), + [anon_sym_DASH_EQ] = ACTIONS(1024), + [anon_sym_STAR_EQ] = ACTIONS(1024), + [anon_sym_SLASH_EQ] = ACTIONS(1024), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1024), + [sym_cmd_identifier] = ACTIONS(1024), + [anon_sym_LF] = ACTIONS(1026), + [anon_sym_def] = ACTIONS(1024), + [anon_sym_export_DASHenv] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1024), + [anon_sym_module] = ACTIONS(1024), + [anon_sym_use] = ACTIONS(1024), + [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_COMMA] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_PIPE] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_error] = ACTIONS(1024), + [anon_sym_list] = ACTIONS(1024), + [anon_sym_GT] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_loop] = ACTIONS(1024), + [anon_sym_make] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_else] = ACTIONS(1024), + [anon_sym_match] = ACTIONS(1024), + [anon_sym_RBRACE] = ACTIONS(1024), + [anon_sym_try] = ACTIONS(1024), + [anon_sym_catch] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_source] = ACTIONS(1024), + [anon_sym_source_DASHenv] = ACTIONS(1024), + [anon_sym_register] = ACTIONS(1024), + [anon_sym_hide] = ACTIONS(1024), + [anon_sym_hide_DASHenv] = ACTIONS(1024), + [anon_sym_overlay] = ACTIONS(1024), + [anon_sym_new] = ACTIONS(1024), + [anon_sym_as] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(1125), + [anon_sym_STAR_STAR] = ACTIONS(1024), + [anon_sym_PLUS_PLUS] = ACTIONS(1024), + [anon_sym_SLASH] = ACTIONS(1024), + [anon_sym_mod] = ACTIONS(1024), + [anon_sym_SLASH_SLASH] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_bit_DASHshl] = ACTIONS(1024), + [anon_sym_bit_DASHshr] = ACTIONS(1024), + [anon_sym_EQ_EQ] = ACTIONS(1024), + [anon_sym_BANG_EQ] = ACTIONS(1024), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ] = ACTIONS(1024), + [anon_sym_GT_EQ] = ACTIONS(1024), + [anon_sym_not_DASHin] = ACTIONS(1024), + [anon_sym_starts_DASHwith] = ACTIONS(1024), + [anon_sym_ends_DASHwith] = ACTIONS(1024), + [anon_sym_EQ_TILDE] = ACTIONS(1024), + [anon_sym_BANG_TILDE] = ACTIONS(1024), + [anon_sym_bit_DASHand] = ACTIONS(1024), + [anon_sym_bit_DASHxor] = ACTIONS(1024), + [anon_sym_bit_DASHor] = ACTIONS(1024), + [anon_sym_and] = ACTIONS(1024), + [anon_sym_xor] = ACTIONS(1024), + [anon_sym_or] = ACTIONS(1024), + [anon_sym_DOT_DOT2] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1026), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1024), + [aux_sym__val_number_token1] = ACTIONS(1024), + [aux_sym__val_number_token2] = ACTIONS(1024), + [aux_sym__val_number_token3] = ACTIONS(1024), + [aux_sym__val_number_token4] = ACTIONS(1024), + [aux_sym__val_number_token5] = ACTIONS(1024), + [aux_sym__val_number_token6] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym__str_single_quotes] = ACTIONS(1024), + [sym__str_back_ticks] = ACTIONS(1024), + [aux_sym__record_key_token2] = ACTIONS(1024), [anon_sym_POUND] = ACTIONS(113), }, [327] = { [sym_comment] = STATE(327), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_alias] = ACTIONS(1070), - [anon_sym_let] = ACTIONS(1070), - [anon_sym_let_DASHenv] = ACTIONS(1070), - [anon_sym_mut] = ACTIONS(1070), - [anon_sym_const] = ACTIONS(1070), - [anon_sym_SEMI] = ACTIONS(1070), - [sym_cmd_identifier] = ACTIONS(1070), - [anon_sym_LF] = ACTIONS(1072), - [anon_sym_def] = ACTIONS(1070), - [anon_sym_export_DASHenv] = ACTIONS(1070), - [anon_sym_extern] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_use] = ACTIONS(1070), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_RPAREN] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_error] = ACTIONS(1070), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_in] = ACTIONS(1070), - [anon_sym_loop] = ACTIONS(1070), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_do] = ACTIONS(1070), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_match] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_RBRACE] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_try] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_source] = ACTIONS(1070), - [anon_sym_source_DASHenv] = ACTIONS(1070), - [anon_sym_register] = ACTIONS(1070), - [anon_sym_hide] = ACTIONS(1070), - [anon_sym_hide_DASHenv] = ACTIONS(1070), - [anon_sym_overlay] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_where] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(1136), - [anon_sym_STAR_STAR] = ACTIONS(1070), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_mod] = ACTIONS(1070), - [anon_sym_SLASH_SLASH] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_bit_DASHshl] = ACTIONS(1070), - [anon_sym_bit_DASHshr] = ACTIONS(1070), - [anon_sym_EQ_EQ] = ACTIONS(1070), - [anon_sym_BANG_EQ] = ACTIONS(1070), - [anon_sym_LT2] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1070), - [anon_sym_GT_EQ] = ACTIONS(1070), - [anon_sym_not_DASHin] = ACTIONS(1070), - [anon_sym_starts_DASHwith] = ACTIONS(1070), - [anon_sym_ends_DASHwith] = ACTIONS(1070), - [anon_sym_EQ_TILDE] = ACTIONS(1070), - [anon_sym_BANG_TILDE] = ACTIONS(1070), - [anon_sym_bit_DASHand] = ACTIONS(1070), - [anon_sym_bit_DASHxor] = ACTIONS(1070), - [anon_sym_bit_DASHor] = ACTIONS(1070), - [anon_sym_and] = ACTIONS(1070), - [anon_sym_xor] = ACTIONS(1070), - [anon_sym_or] = ACTIONS(1070), - [anon_sym_not] = ACTIONS(1070), - [anon_sym_DOT_DOT2] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1072), - [anon_sym_null] = ACTIONS(1070), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1070), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), - [anon_sym_CARET] = ACTIONS(1070), + [anon_sym_export] = ACTIONS(1037), + [anon_sym_alias] = ACTIONS(1037), + [anon_sym_let] = ACTIONS(1037), + [anon_sym_let_DASHenv] = ACTIONS(1037), + [anon_sym_mut] = ACTIONS(1037), + [anon_sym_const] = ACTIONS(1037), + [anon_sym_SEMI] = ACTIONS(1037), + [sym_cmd_identifier] = ACTIONS(1037), + [anon_sym_LF] = ACTIONS(1039), + [anon_sym_def] = ACTIONS(1037), + [anon_sym_export_DASHenv] = ACTIONS(1037), + [anon_sym_extern] = ACTIONS(1037), + [anon_sym_module] = ACTIONS(1037), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_LBRACK] = ACTIONS(1037), + [anon_sym_LPAREN] = ACTIONS(1037), + [anon_sym_RPAREN] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1037), + [anon_sym_error] = ACTIONS(1037), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_break] = ACTIONS(1037), + [anon_sym_continue] = ACTIONS(1037), + [anon_sym_for] = ACTIONS(1037), + [anon_sym_in] = ACTIONS(1037), + [anon_sym_loop] = ACTIONS(1037), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_do] = ACTIONS(1037), + [anon_sym_if] = ACTIONS(1037), + [anon_sym_match] = ACTIONS(1037), + [anon_sym_LBRACE] = ACTIONS(1037), + [anon_sym_RBRACE] = ACTIONS(1037), + [anon_sym_DOT_DOT] = ACTIONS(1037), + [anon_sym_try] = ACTIONS(1037), + [anon_sym_return] = ACTIONS(1037), + [anon_sym_source] = ACTIONS(1037), + [anon_sym_source_DASHenv] = ACTIONS(1037), + [anon_sym_register] = ACTIONS(1037), + [anon_sym_hide] = ACTIONS(1037), + [anon_sym_hide_DASHenv] = ACTIONS(1037), + [anon_sym_overlay] = ACTIONS(1037), + [anon_sym_as] = ACTIONS(1037), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_where] = ACTIONS(1037), + [anon_sym_STAR_STAR] = ACTIONS(1037), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1037), + [anon_sym_mod] = ACTIONS(1037), + [anon_sym_SLASH_SLASH] = ACTIONS(1037), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_bit_DASHshl] = ACTIONS(1037), + [anon_sym_bit_DASHshr] = ACTIONS(1037), + [anon_sym_EQ_EQ] = ACTIONS(1037), + [anon_sym_BANG_EQ] = ACTIONS(1037), + [anon_sym_LT2] = ACTIONS(1037), + [anon_sym_LT_EQ] = ACTIONS(1037), + [anon_sym_GT_EQ] = ACTIONS(1037), + [anon_sym_not_DASHin] = ACTIONS(1037), + [anon_sym_starts_DASHwith] = ACTIONS(1037), + [anon_sym_ends_DASHwith] = ACTIONS(1037), + [anon_sym_EQ_TILDE] = ACTIONS(1037), + [anon_sym_BANG_TILDE] = ACTIONS(1037), + [anon_sym_bit_DASHand] = ACTIONS(1037), + [anon_sym_bit_DASHxor] = ACTIONS(1037), + [anon_sym_bit_DASHor] = ACTIONS(1037), + [anon_sym_and] = ACTIONS(1037), + [anon_sym_xor] = ACTIONS(1037), + [anon_sym_or] = ACTIONS(1037), + [anon_sym_not] = ACTIONS(1037), + [anon_sym_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1037), + [anon_sym_DOT_DOT_LT] = ACTIONS(1037), + [anon_sym_null] = ACTIONS(1037), + [anon_sym_true] = ACTIONS(1037), + [anon_sym_false] = ACTIONS(1037), + [aux_sym__val_number_decimal_token1] = ACTIONS(1037), + [aux_sym__val_number_decimal_token2] = ACTIONS(1037), + [anon_sym_DOT2] = ACTIONS(1037), + [aux_sym__val_number_decimal_token3] = ACTIONS(1037), + [aux_sym__val_number_token1] = ACTIONS(1037), + [aux_sym__val_number_token2] = ACTIONS(1037), + [aux_sym__val_number_token3] = ACTIONS(1037), + [aux_sym__val_number_token4] = ACTIONS(1037), + [aux_sym__val_number_token5] = ACTIONS(1037), + [aux_sym__val_number_token6] = ACTIONS(1037), + [anon_sym_0b] = ACTIONS(1037), + [anon_sym_0o] = ACTIONS(1037), + [anon_sym_0x] = ACTIONS(1037), + [sym_val_date] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1037), + [sym__str_single_quotes] = ACTIONS(1037), + [sym__str_back_ticks] = ACTIONS(1037), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1037), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1037), + [anon_sym_CARET] = ACTIONS(1037), [anon_sym_POUND] = ACTIONS(113), }, [328] = { [sym_comment] = STATE(328), - [ts_builtin_sym_end] = ACTIONS(919), - [anon_sym_export] = ACTIONS(917), - [anon_sym_alias] = ACTIONS(917), - [anon_sym_let] = ACTIONS(917), - [anon_sym_let_DASHenv] = ACTIONS(917), - [anon_sym_mut] = ACTIONS(917), - [anon_sym_const] = ACTIONS(917), - [anon_sym_SEMI] = ACTIONS(917), - [sym_cmd_identifier] = ACTIONS(917), - [anon_sym_LF] = ACTIONS(919), - [anon_sym_def] = ACTIONS(917), - [anon_sym_export_DASHenv] = ACTIONS(917), - [anon_sym_extern] = ACTIONS(917), - [anon_sym_module] = ACTIONS(917), - [anon_sym_use] = ACTIONS(917), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_LPAREN] = ACTIONS(917), - [anon_sym_DOLLAR] = ACTIONS(917), - [anon_sym_error] = ACTIONS(917), - [anon_sym_GT] = ACTIONS(917), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_break] = ACTIONS(917), - [anon_sym_continue] = ACTIONS(917), - [anon_sym_for] = ACTIONS(917), - [anon_sym_in] = ACTIONS(917), - [anon_sym_loop] = ACTIONS(917), - [anon_sym_while] = ACTIONS(917), - [anon_sym_do] = ACTIONS(917), - [anon_sym_if] = ACTIONS(917), - [anon_sym_match] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(917), - [anon_sym_DOT_DOT] = ACTIONS(917), - [anon_sym_try] = ACTIONS(917), - [anon_sym_return] = ACTIONS(917), - [anon_sym_source] = ACTIONS(917), - [anon_sym_source_DASHenv] = ACTIONS(917), - [anon_sym_register] = ACTIONS(917), - [anon_sym_hide] = ACTIONS(917), - [anon_sym_hide_DASHenv] = ACTIONS(917), - [anon_sym_overlay] = ACTIONS(917), - [anon_sym_STAR] = ACTIONS(917), - [anon_sym_where] = ACTIONS(917), - [anon_sym_STAR_STAR] = ACTIONS(917), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_mod] = ACTIONS(917), - [anon_sym_SLASH_SLASH] = ACTIONS(917), - [anon_sym_PLUS] = ACTIONS(917), - [anon_sym_bit_DASHshl] = ACTIONS(917), - [anon_sym_bit_DASHshr] = ACTIONS(917), - [anon_sym_EQ_EQ] = ACTIONS(917), - [anon_sym_BANG_EQ] = ACTIONS(917), - [anon_sym_LT2] = ACTIONS(917), - [anon_sym_LT_EQ] = ACTIONS(917), - [anon_sym_GT_EQ] = ACTIONS(917), - [anon_sym_not_DASHin] = ACTIONS(917), - [anon_sym_starts_DASHwith] = ACTIONS(917), - [anon_sym_ends_DASHwith] = ACTIONS(917), - [anon_sym_EQ_TILDE] = ACTIONS(917), - [anon_sym_BANG_TILDE] = ACTIONS(917), - [anon_sym_bit_DASHand] = ACTIONS(917), - [anon_sym_bit_DASHxor] = ACTIONS(917), - [anon_sym_bit_DASHor] = ACTIONS(917), - [anon_sym_and] = ACTIONS(917), - [anon_sym_xor] = ACTIONS(917), - [anon_sym_or] = ACTIONS(917), - [anon_sym_not] = ACTIONS(917), - [anon_sym_DOT_DOT2] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ] = ACTIONS(917), - [anon_sym_DOT_DOT_LT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(919), - [anon_sym_DOT_DOT_LT2] = ACTIONS(919), - [aux_sym__immediate_decimal_token2] = ACTIONS(1138), - [anon_sym_null] = ACTIONS(917), - [anon_sym_true] = ACTIONS(917), - [anon_sym_false] = ACTIONS(917), - [aux_sym__val_number_decimal_token1] = ACTIONS(917), - [aux_sym__val_number_decimal_token2] = ACTIONS(917), - [anon_sym_DOT2] = ACTIONS(917), - [aux_sym__val_number_decimal_token3] = ACTIONS(917), - [aux_sym__val_number_token1] = ACTIONS(917), - [aux_sym__val_number_token2] = ACTIONS(917), - [aux_sym__val_number_token3] = ACTIONS(917), - [aux_sym__val_number_token4] = ACTIONS(917), - [aux_sym__val_number_token5] = ACTIONS(917), - [aux_sym__val_number_token6] = ACTIONS(917), - [anon_sym_0b] = ACTIONS(917), - [sym_filesize_unit] = ACTIONS(917), - [sym_duration_unit] = ACTIONS(917), - [anon_sym_0o] = ACTIONS(917), - [anon_sym_0x] = ACTIONS(917), - [sym_val_date] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(917), - [sym__str_single_quotes] = ACTIONS(917), - [sym__str_back_ticks] = ACTIONS(917), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(917), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(917), - [anon_sym_CARET] = ACTIONS(917), + [anon_sym_export] = ACTIONS(1041), + [anon_sym_alias] = ACTIONS(1041), + [anon_sym_let] = ACTIONS(1041), + [anon_sym_let_DASHenv] = ACTIONS(1041), + [anon_sym_mut] = ACTIONS(1041), + [anon_sym_const] = ACTIONS(1041), + [anon_sym_SEMI] = ACTIONS(1041), + [sym_cmd_identifier] = ACTIONS(1041), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_def] = ACTIONS(1041), + [anon_sym_export_DASHenv] = ACTIONS(1041), + [anon_sym_extern] = ACTIONS(1041), + [anon_sym_module] = ACTIONS(1041), + [anon_sym_use] = ACTIONS(1041), + [anon_sym_LBRACK] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1041), + [anon_sym_RPAREN] = ACTIONS(1041), + [anon_sym_DOLLAR] = ACTIONS(1041), + [anon_sym_error] = ACTIONS(1041), + [anon_sym_GT] = ACTIONS(1041), + [anon_sym_DASH_DASH] = ACTIONS(1041), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_break] = ACTIONS(1041), + [anon_sym_continue] = ACTIONS(1041), + [anon_sym_for] = ACTIONS(1041), + [anon_sym_in] = ACTIONS(1041), + [anon_sym_loop] = ACTIONS(1041), + [anon_sym_while] = ACTIONS(1041), + [anon_sym_do] = ACTIONS(1041), + [anon_sym_if] = ACTIONS(1041), + [anon_sym_match] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_RBRACE] = ACTIONS(1041), + [anon_sym_DOT_DOT] = ACTIONS(1041), + [anon_sym_try] = ACTIONS(1041), + [anon_sym_return] = ACTIONS(1041), + [anon_sym_source] = ACTIONS(1041), + [anon_sym_source_DASHenv] = ACTIONS(1041), + [anon_sym_register] = ACTIONS(1041), + [anon_sym_hide] = ACTIONS(1041), + [anon_sym_hide_DASHenv] = ACTIONS(1041), + [anon_sym_overlay] = ACTIONS(1041), + [anon_sym_as] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_where] = ACTIONS(1041), + [anon_sym_STAR_STAR] = ACTIONS(1041), + [anon_sym_PLUS_PLUS] = ACTIONS(1041), + [anon_sym_SLASH] = ACTIONS(1041), + [anon_sym_mod] = ACTIONS(1041), + [anon_sym_SLASH_SLASH] = ACTIONS(1041), + [anon_sym_PLUS] = ACTIONS(1041), + [anon_sym_bit_DASHshl] = ACTIONS(1041), + [anon_sym_bit_DASHshr] = ACTIONS(1041), + [anon_sym_EQ_EQ] = ACTIONS(1041), + [anon_sym_BANG_EQ] = ACTIONS(1041), + [anon_sym_LT2] = ACTIONS(1041), + [anon_sym_LT_EQ] = ACTIONS(1041), + [anon_sym_GT_EQ] = ACTIONS(1041), + [anon_sym_not_DASHin] = ACTIONS(1041), + [anon_sym_starts_DASHwith] = ACTIONS(1041), + [anon_sym_ends_DASHwith] = ACTIONS(1041), + [anon_sym_EQ_TILDE] = ACTIONS(1041), + [anon_sym_BANG_TILDE] = ACTIONS(1041), + [anon_sym_bit_DASHand] = ACTIONS(1041), + [anon_sym_bit_DASHxor] = ACTIONS(1041), + [anon_sym_bit_DASHor] = ACTIONS(1041), + [anon_sym_and] = ACTIONS(1041), + [anon_sym_xor] = ACTIONS(1041), + [anon_sym_or] = ACTIONS(1041), + [anon_sym_not] = ACTIONS(1041), + [anon_sym_DOT] = ACTIONS(1041), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1041), + [anon_sym_DOT_DOT_LT] = ACTIONS(1041), + [anon_sym_null] = ACTIONS(1041), + [anon_sym_true] = ACTIONS(1041), + [anon_sym_false] = ACTIONS(1041), + [aux_sym__val_number_decimal_token1] = ACTIONS(1041), + [aux_sym__val_number_decimal_token2] = ACTIONS(1041), + [anon_sym_DOT2] = ACTIONS(1041), + [aux_sym__val_number_decimal_token3] = ACTIONS(1041), + [aux_sym__val_number_token1] = ACTIONS(1041), + [aux_sym__val_number_token2] = ACTIONS(1041), + [aux_sym__val_number_token3] = ACTIONS(1041), + [aux_sym__val_number_token4] = ACTIONS(1041), + [aux_sym__val_number_token5] = ACTIONS(1041), + [aux_sym__val_number_token6] = ACTIONS(1041), + [anon_sym_0b] = ACTIONS(1041), + [anon_sym_0o] = ACTIONS(1041), + [anon_sym_0x] = ACTIONS(1041), + [sym_val_date] = ACTIONS(1041), + [anon_sym_DQUOTE] = ACTIONS(1041), + [sym__str_single_quotes] = ACTIONS(1041), + [sym__str_back_ticks] = ACTIONS(1041), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1041), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1041), + [anon_sym_CARET] = ACTIONS(1041), [anon_sym_POUND] = ACTIONS(113), }, [329] = { [sym_comment] = STATE(329), - [ts_builtin_sym_end] = ACTIONS(1115), - [anon_sym_export] = ACTIONS(1113), - [anon_sym_alias] = ACTIONS(1113), - [anon_sym_let] = ACTIONS(1113), - [anon_sym_let_DASHenv] = ACTIONS(1113), - [anon_sym_mut] = ACTIONS(1113), - [anon_sym_const] = ACTIONS(1113), - [anon_sym_SEMI] = ACTIONS(1113), - [sym_cmd_identifier] = ACTIONS(1113), - [anon_sym_LF] = ACTIONS(1115), - [anon_sym_def] = ACTIONS(1113), - [anon_sym_export_DASHenv] = ACTIONS(1113), - [anon_sym_extern] = ACTIONS(1113), - [anon_sym_module] = ACTIONS(1113), - [anon_sym_use] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1113), - [anon_sym_error] = ACTIONS(1113), - [anon_sym_GT] = ACTIONS(1113), - [anon_sym_DASH_DASH] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_in] = ACTIONS(1113), - [anon_sym_loop] = ACTIONS(1113), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1113), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_source] = ACTIONS(1113), - [anon_sym_source_DASHenv] = ACTIONS(1113), - [anon_sym_register] = ACTIONS(1113), - [anon_sym_hide] = ACTIONS(1113), - [anon_sym_hide_DASHenv] = ACTIONS(1113), - [anon_sym_overlay] = ACTIONS(1113), - [anon_sym_as] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_where] = ACTIONS(1113), - [anon_sym_STAR_STAR] = ACTIONS(1113), - [anon_sym_PLUS_PLUS] = ACTIONS(1113), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_mod] = ACTIONS(1113), - [anon_sym_SLASH_SLASH] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_bit_DASHshl] = ACTIONS(1113), - [anon_sym_bit_DASHshr] = ACTIONS(1113), - [anon_sym_EQ_EQ] = ACTIONS(1113), - [anon_sym_BANG_EQ] = ACTIONS(1113), - [anon_sym_LT2] = ACTIONS(1113), - [anon_sym_LT_EQ] = ACTIONS(1113), - [anon_sym_GT_EQ] = ACTIONS(1113), - [anon_sym_not_DASHin] = ACTIONS(1113), - [anon_sym_starts_DASHwith] = ACTIONS(1113), - [anon_sym_ends_DASHwith] = ACTIONS(1113), - [anon_sym_EQ_TILDE] = ACTIONS(1113), - [anon_sym_BANG_TILDE] = ACTIONS(1113), - [anon_sym_bit_DASHand] = ACTIONS(1113), - [anon_sym_bit_DASHxor] = ACTIONS(1113), - [anon_sym_bit_DASHor] = ACTIONS(1113), - [anon_sym_and] = ACTIONS(1113), - [anon_sym_xor] = ACTIONS(1113), - [anon_sym_or] = ACTIONS(1113), - [anon_sym_not] = ACTIONS(1113), - [anon_sym_DOT_DOT2] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1113), - [anon_sym_DOT_DOT_LT] = ACTIONS(1113), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1115), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1113), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1113), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_decimal_token2] = ACTIONS(1113), - [anon_sym_DOT2] = ACTIONS(1113), - [aux_sym__val_number_decimal_token3] = ACTIONS(1113), - [aux_sym__val_number_token1] = ACTIONS(1113), - [aux_sym__val_number_token2] = ACTIONS(1113), - [aux_sym__val_number_token3] = ACTIONS(1113), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1113), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_0b] = ACTIONS(1113), - [anon_sym_0o] = ACTIONS(1113), - [anon_sym_0x] = ACTIONS(1113), - [sym_val_date] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym__str_single_quotes] = ACTIONS(1113), - [sym__str_back_ticks] = ACTIONS(1113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), - [anon_sym_CARET] = ACTIONS(1113), + [anon_sym_export] = ACTIONS(1020), + [anon_sym_alias] = ACTIONS(1020), + [anon_sym_EQ] = ACTIONS(1020), + [anon_sym_let] = ACTIONS(1020), + [anon_sym_let_DASHenv] = ACTIONS(1020), + [anon_sym_mut] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(1020), + [anon_sym_PLUS_EQ] = ACTIONS(1020), + [anon_sym_DASH_EQ] = ACTIONS(1020), + [anon_sym_STAR_EQ] = ACTIONS(1020), + [anon_sym_SLASH_EQ] = ACTIONS(1020), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1020), + [sym_cmd_identifier] = ACTIONS(1020), + [anon_sym_LF] = ACTIONS(1022), + [anon_sym_def] = ACTIONS(1020), + [anon_sym_export_DASHenv] = ACTIONS(1020), + [anon_sym_extern] = ACTIONS(1020), + [anon_sym_module] = ACTIONS(1020), + [anon_sym_use] = ACTIONS(1020), + [anon_sym_COLON] = ACTIONS(1020), + [anon_sym_COMMA] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1020), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_error] = ACTIONS(1020), + [anon_sym_list] = ACTIONS(1020), + [anon_sym_GT] = ACTIONS(1020), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_in] = ACTIONS(1020), + [anon_sym_loop] = ACTIONS(1020), + [anon_sym_make] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_else] = ACTIONS(1020), + [anon_sym_match] = ACTIONS(1020), + [anon_sym_RBRACE] = ACTIONS(1020), + [anon_sym_try] = ACTIONS(1020), + [anon_sym_catch] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_source] = ACTIONS(1020), + [anon_sym_source_DASHenv] = ACTIONS(1020), + [anon_sym_register] = ACTIONS(1020), + [anon_sym_hide] = ACTIONS(1020), + [anon_sym_hide_DASHenv] = ACTIONS(1020), + [anon_sym_overlay] = ACTIONS(1020), + [anon_sym_new] = ACTIONS(1020), + [anon_sym_as] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_QMARK2] = ACTIONS(1020), + [anon_sym_STAR_STAR] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1020), + [anon_sym_SLASH] = ACTIONS(1020), + [anon_sym_mod] = ACTIONS(1020), + [anon_sym_SLASH_SLASH] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_bit_DASHshl] = ACTIONS(1020), + [anon_sym_bit_DASHshr] = ACTIONS(1020), + [anon_sym_EQ_EQ] = ACTIONS(1020), + [anon_sym_BANG_EQ] = ACTIONS(1020), + [anon_sym_LT2] = ACTIONS(1020), + [anon_sym_LT_EQ] = ACTIONS(1020), + [anon_sym_GT_EQ] = ACTIONS(1020), + [anon_sym_not_DASHin] = ACTIONS(1020), + [anon_sym_starts_DASHwith] = ACTIONS(1020), + [anon_sym_ends_DASHwith] = ACTIONS(1020), + [anon_sym_EQ_TILDE] = ACTIONS(1020), + [anon_sym_BANG_TILDE] = ACTIONS(1020), + [anon_sym_bit_DASHand] = ACTIONS(1020), + [anon_sym_bit_DASHxor] = ACTIONS(1020), + [anon_sym_bit_DASHor] = ACTIONS(1020), + [anon_sym_and] = ACTIONS(1020), + [anon_sym_xor] = ACTIONS(1020), + [anon_sym_or] = ACTIONS(1020), + [anon_sym_DOT_DOT2] = ACTIONS(1020), + [anon_sym_DOT] = ACTIONS(1020), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1022), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1022), + [aux_sym__val_number_decimal_token1] = ACTIONS(1020), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [anon_sym_DOT2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1020), + [aux_sym__val_number_token1] = ACTIONS(1020), + [aux_sym__val_number_token2] = ACTIONS(1020), + [aux_sym__val_number_token3] = ACTIONS(1020), + [aux_sym__val_number_token4] = ACTIONS(1020), + [aux_sym__val_number_token5] = ACTIONS(1020), + [aux_sym__val_number_token6] = ACTIONS(1020), + [anon_sym_DQUOTE] = ACTIONS(1020), + [sym__str_single_quotes] = ACTIONS(1020), + [sym__str_back_ticks] = ACTIONS(1020), + [aux_sym__record_key_token2] = ACTIONS(1020), [anon_sym_POUND] = ACTIONS(113), }, [330] = { - [sym__immediate_decimal] = STATE(10460), [sym_comment] = STATE(330), - [ts_builtin_sym_end] = ACTIONS(938), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_error] = ACTIONS(936), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_where] = ACTIONS(936), - [anon_sym_STAR_STAR] = ACTIONS(936), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(936), - [anon_sym_SLASH_SLASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(936), - [anon_sym_bit_DASHshr] = ACTIONS(936), - [anon_sym_EQ_EQ] = ACTIONS(936), - [anon_sym_BANG_EQ] = ACTIONS(936), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(936), - [anon_sym_GT_EQ] = ACTIONS(936), - [anon_sym_not_DASHin] = ACTIONS(936), - [anon_sym_starts_DASHwith] = ACTIONS(936), - [anon_sym_ends_DASHwith] = ACTIONS(936), - [anon_sym_EQ_TILDE] = ACTIONS(936), - [anon_sym_BANG_TILDE] = ACTIONS(936), - [anon_sym_bit_DASHand] = ACTIONS(936), - [anon_sym_bit_DASHxor] = ACTIONS(936), - [anon_sym_bit_DASHor] = ACTIONS(936), - [anon_sym_and] = ACTIONS(936), - [anon_sym_xor] = ACTIONS(936), - [anon_sym_or] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [aux_sym__immediate_decimal_token1] = ACTIONS(1045), - [aux_sym__immediate_decimal_token3] = ACTIONS(1045), - [aux_sym__immediate_decimal_token4] = ACTIONS(1047), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [aux_sym_unquoted_token4] = ACTIONS(1105), + [anon_sym_export] = ACTIONS(1139), + [anon_sym_alias] = ACTIONS(1139), + [anon_sym_let] = ACTIONS(1139), + [anon_sym_let_DASHenv] = ACTIONS(1139), + [anon_sym_mut] = ACTIONS(1139), + [anon_sym_const] = ACTIONS(1139), + [anon_sym_SEMI] = ACTIONS(1139), + [sym_cmd_identifier] = ACTIONS(1139), + [anon_sym_LF] = ACTIONS(1139), + [anon_sym_def] = ACTIONS(1139), + [anon_sym_export_DASHenv] = ACTIONS(1139), + [anon_sym_extern] = ACTIONS(1139), + [anon_sym_module] = ACTIONS(1139), + [anon_sym_use] = ACTIONS(1139), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LPAREN] = ACTIONS(1139), + [anon_sym_RPAREN] = ACTIONS(1139), + [anon_sym_DOLLAR] = ACTIONS(1139), + [anon_sym_error] = ACTIONS(1139), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_DASH_DASH] = ACTIONS(1139), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_break] = ACTIONS(1139), + [anon_sym_continue] = ACTIONS(1139), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_in] = ACTIONS(1139), + [anon_sym_loop] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1139), + [anon_sym_do] = ACTIONS(1139), + [anon_sym_if] = ACTIONS(1139), + [anon_sym_match] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1139), + [anon_sym_RBRACE] = ACTIONS(1139), + [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_try] = ACTIONS(1139), + [anon_sym_return] = ACTIONS(1139), + [anon_sym_source] = ACTIONS(1139), + [anon_sym_source_DASHenv] = ACTIONS(1139), + [anon_sym_register] = ACTIONS(1139), + [anon_sym_hide] = ACTIONS(1139), + [anon_sym_hide_DASHenv] = ACTIONS(1139), + [anon_sym_overlay] = ACTIONS(1139), + [anon_sym_as] = ACTIONS(1139), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_where] = ACTIONS(1139), + [anon_sym_STAR_STAR] = ACTIONS(1139), + [anon_sym_PLUS_PLUS] = ACTIONS(1139), + [anon_sym_SLASH] = ACTIONS(1139), + [anon_sym_mod] = ACTIONS(1139), + [anon_sym_SLASH_SLASH] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_bit_DASHshl] = ACTIONS(1139), + [anon_sym_bit_DASHshr] = ACTIONS(1139), + [anon_sym_EQ_EQ] = ACTIONS(1139), + [anon_sym_BANG_EQ] = ACTIONS(1139), + [anon_sym_LT2] = ACTIONS(1139), + [anon_sym_LT_EQ] = ACTIONS(1139), + [anon_sym_GT_EQ] = ACTIONS(1139), + [anon_sym_not_DASHin] = ACTIONS(1139), + [anon_sym_starts_DASHwith] = ACTIONS(1139), + [anon_sym_ends_DASHwith] = ACTIONS(1139), + [anon_sym_EQ_TILDE] = ACTIONS(1139), + [anon_sym_BANG_TILDE] = ACTIONS(1139), + [anon_sym_bit_DASHand] = ACTIONS(1139), + [anon_sym_bit_DASHxor] = ACTIONS(1139), + [anon_sym_bit_DASHor] = ACTIONS(1139), + [anon_sym_and] = ACTIONS(1139), + [anon_sym_xor] = ACTIONS(1139), + [anon_sym_or] = ACTIONS(1139), + [anon_sym_not] = ACTIONS(1139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1139), + [anon_sym_DOT_DOT_LT] = ACTIONS(1139), + [anon_sym_null] = ACTIONS(1139), + [anon_sym_true] = ACTIONS(1139), + [anon_sym_false] = ACTIONS(1139), + [aux_sym__val_number_decimal_token1] = ACTIONS(1139), + [aux_sym__val_number_decimal_token2] = ACTIONS(1139), + [anon_sym_DOT2] = ACTIONS(1139), + [aux_sym__val_number_decimal_token3] = ACTIONS(1139), + [aux_sym__val_number_token1] = ACTIONS(1139), + [aux_sym__val_number_token2] = ACTIONS(1139), + [aux_sym__val_number_token3] = ACTIONS(1139), + [aux_sym__val_number_token4] = ACTIONS(1139), + [aux_sym__val_number_token5] = ACTIONS(1139), + [aux_sym__val_number_token6] = ACTIONS(1139), + [anon_sym_0b] = ACTIONS(1139), + [anon_sym_0o] = ACTIONS(1139), + [anon_sym_0x] = ACTIONS(1139), + [sym_val_date] = ACTIONS(1139), + [anon_sym_DQUOTE] = ACTIONS(1139), + [sym__str_single_quotes] = ACTIONS(1139), + [sym__str_back_ticks] = ACTIONS(1139), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1139), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1139), + [aux_sym__list_item_starts_with_sign_token1] = ACTIONS(1141), + [anon_sym_CARET] = ACTIONS(1139), [anon_sym_POUND] = ACTIONS(113), }, [331] = { [sym_comment] = STATE(331), - [anon_sym_export] = ACTIONS(959), - [anon_sym_alias] = ACTIONS(959), - [anon_sym_let] = ACTIONS(959), - [anon_sym_let_DASHenv] = ACTIONS(959), - [anon_sym_mut] = ACTIONS(959), - [anon_sym_const] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(959), - [sym_cmd_identifier] = ACTIONS(959), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_def] = ACTIONS(959), - [anon_sym_export_DASHenv] = ACTIONS(959), - [anon_sym_extern] = ACTIONS(959), - [anon_sym_module] = ACTIONS(959), - [anon_sym_use] = ACTIONS(959), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_RPAREN] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_error] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_break] = ACTIONS(959), - [anon_sym_continue] = ACTIONS(959), - [anon_sym_for] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_loop] = ACTIONS(959), - [anon_sym_while] = ACTIONS(959), - [anon_sym_do] = ACTIONS(959), - [anon_sym_if] = ACTIONS(959), - [anon_sym_match] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_RBRACE] = ACTIONS(959), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_try] = ACTIONS(959), - [anon_sym_return] = ACTIONS(959), - [anon_sym_source] = ACTIONS(959), - [anon_sym_source_DASHenv] = ACTIONS(959), - [anon_sym_register] = ACTIONS(959), - [anon_sym_hide] = ACTIONS(959), - [anon_sym_hide_DASHenv] = ACTIONS(959), - [anon_sym_overlay] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_where] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(959), - [anon_sym_PLUS_PLUS] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(959), - [anon_sym_SLASH_SLASH] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(959), - [anon_sym_bit_DASHshr] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(959), - [anon_sym_BANG_EQ] = ACTIONS(959), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(959), - [anon_sym_GT_EQ] = ACTIONS(959), - [anon_sym_not_DASHin] = ACTIONS(959), - [anon_sym_starts_DASHwith] = ACTIONS(959), - [anon_sym_ends_DASHwith] = ACTIONS(959), - [anon_sym_EQ_TILDE] = ACTIONS(959), - [anon_sym_BANG_TILDE] = ACTIONS(959), - [anon_sym_bit_DASHand] = ACTIONS(959), - [anon_sym_bit_DASHxor] = ACTIONS(959), - [anon_sym_bit_DASHor] = ACTIONS(959), - [anon_sym_and] = ACTIONS(959), - [anon_sym_xor] = ACTIONS(959), - [anon_sym_or] = ACTIONS(959), - [anon_sym_not] = ACTIONS(959), - [anon_sym_DOT_DOT2] = ACTIONS(1140), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_DOT_DOT_LT] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1142), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1142), - [anon_sym_null] = ACTIONS(959), - [anon_sym_true] = ACTIONS(959), - [anon_sym_false] = ACTIONS(959), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(959), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(959), - [aux_sym__val_number_token1] = ACTIONS(959), - [aux_sym__val_number_token2] = ACTIONS(959), - [aux_sym__val_number_token3] = ACTIONS(959), - [aux_sym__val_number_token4] = ACTIONS(959), - [aux_sym__val_number_token5] = ACTIONS(959), - [aux_sym__val_number_token6] = ACTIONS(959), - [anon_sym_0b] = ACTIONS(959), - [sym_filesize_unit] = ACTIONS(1144), - [sym_duration_unit] = ACTIONS(1146), - [anon_sym_0o] = ACTIONS(959), - [anon_sym_0x] = ACTIONS(959), - [sym_val_date] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [sym__str_single_quotes] = ACTIONS(959), - [sym__str_back_ticks] = ACTIONS(959), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(959), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(959), - [anon_sym_CARET] = ACTIONS(959), + [ts_builtin_sym_end] = ACTIONS(1035), + [anon_sym_export] = ACTIONS(1033), + [anon_sym_alias] = ACTIONS(1033), + [anon_sym_let] = ACTIONS(1033), + [anon_sym_let_DASHenv] = ACTIONS(1033), + [anon_sym_mut] = ACTIONS(1033), + [anon_sym_const] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(1033), + [sym_cmd_identifier] = ACTIONS(1033), + [anon_sym_LF] = ACTIONS(1035), + [anon_sym_def] = ACTIONS(1033), + [anon_sym_export_DASHenv] = ACTIONS(1033), + [anon_sym_extern] = ACTIONS(1033), + [anon_sym_module] = ACTIONS(1033), + [anon_sym_use] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1033), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_error] = ACTIONS(1033), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1033), + [anon_sym_break] = ACTIONS(1033), + [anon_sym_continue] = ACTIONS(1033), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_in] = ACTIONS(1033), + [anon_sym_loop] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(1033), + [anon_sym_do] = ACTIONS(1033), + [anon_sym_if] = ACTIONS(1033), + [anon_sym_match] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_DOT_DOT] = ACTIONS(1033), + [anon_sym_try] = ACTIONS(1033), + [anon_sym_return] = ACTIONS(1033), + [anon_sym_source] = ACTIONS(1033), + [anon_sym_source_DASHenv] = ACTIONS(1033), + [anon_sym_register] = ACTIONS(1033), + [anon_sym_hide] = ACTIONS(1033), + [anon_sym_hide_DASHenv] = ACTIONS(1033), + [anon_sym_overlay] = ACTIONS(1033), + [anon_sym_as] = ACTIONS(1033), + [anon_sym_STAR] = ACTIONS(1033), + [anon_sym_where] = ACTIONS(1033), + [anon_sym_QMARK2] = ACTIONS(1033), + [anon_sym_STAR_STAR] = ACTIONS(1033), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_SLASH] = ACTIONS(1033), + [anon_sym_mod] = ACTIONS(1033), + [anon_sym_SLASH_SLASH] = ACTIONS(1033), + [anon_sym_PLUS] = ACTIONS(1033), + [anon_sym_bit_DASHshl] = ACTIONS(1033), + [anon_sym_bit_DASHshr] = ACTIONS(1033), + [anon_sym_EQ_EQ] = ACTIONS(1033), + [anon_sym_BANG_EQ] = ACTIONS(1033), + [anon_sym_LT2] = ACTIONS(1033), + [anon_sym_LT_EQ] = ACTIONS(1033), + [anon_sym_GT_EQ] = ACTIONS(1033), + [anon_sym_not_DASHin] = ACTIONS(1033), + [anon_sym_starts_DASHwith] = ACTIONS(1033), + [anon_sym_ends_DASHwith] = ACTIONS(1033), + [anon_sym_EQ_TILDE] = ACTIONS(1033), + [anon_sym_BANG_TILDE] = ACTIONS(1033), + [anon_sym_bit_DASHand] = ACTIONS(1033), + [anon_sym_bit_DASHxor] = ACTIONS(1033), + [anon_sym_bit_DASHor] = ACTIONS(1033), + [anon_sym_and] = ACTIONS(1033), + [anon_sym_xor] = ACTIONS(1033), + [anon_sym_or] = ACTIONS(1033), + [anon_sym_not] = ACTIONS(1033), + [anon_sym_DOT] = ACTIONS(1033), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1033), + [anon_sym_DOT_DOT_LT] = ACTIONS(1033), + [anon_sym_null] = ACTIONS(1033), + [anon_sym_true] = ACTIONS(1033), + [anon_sym_false] = ACTIONS(1033), + [aux_sym__val_number_decimal_token1] = ACTIONS(1033), + [aux_sym__val_number_decimal_token2] = ACTIONS(1033), + [anon_sym_DOT2] = ACTIONS(1033), + [aux_sym__val_number_decimal_token3] = ACTIONS(1033), + [aux_sym__val_number_token1] = ACTIONS(1033), + [aux_sym__val_number_token2] = ACTIONS(1033), + [aux_sym__val_number_token3] = ACTIONS(1033), + [aux_sym__val_number_token4] = ACTIONS(1033), + [aux_sym__val_number_token5] = ACTIONS(1033), + [aux_sym__val_number_token6] = ACTIONS(1033), + [anon_sym_0b] = ACTIONS(1033), + [anon_sym_0o] = ACTIONS(1033), + [anon_sym_0x] = ACTIONS(1033), + [sym_val_date] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [sym__str_single_quotes] = ACTIONS(1033), + [sym__str_back_ticks] = ACTIONS(1033), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1033), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1033), + [anon_sym_CARET] = ACTIONS(1033), [anon_sym_POUND] = ACTIONS(113), }, [332] = { [sym_comment] = STATE(332), - [ts_builtin_sym_end] = ACTIONS(1119), - [anon_sym_export] = ACTIONS(1117), - [anon_sym_alias] = ACTIONS(1117), - [anon_sym_let] = ACTIONS(1117), - [anon_sym_let_DASHenv] = ACTIONS(1117), - [anon_sym_mut] = ACTIONS(1117), - [anon_sym_const] = ACTIONS(1117), - [anon_sym_SEMI] = ACTIONS(1117), - [sym_cmd_identifier] = ACTIONS(1117), - [anon_sym_LF] = ACTIONS(1119), - [anon_sym_def] = ACTIONS(1117), - [anon_sym_export_DASHenv] = ACTIONS(1117), - [anon_sym_extern] = ACTIONS(1117), - [anon_sym_module] = ACTIONS(1117), - [anon_sym_use] = ACTIONS(1117), - [anon_sym_LBRACK] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1117), - [anon_sym_DOLLAR] = ACTIONS(1117), - [anon_sym_error] = ACTIONS(1117), - [anon_sym_GT] = ACTIONS(1117), - [anon_sym_DASH_DASH] = ACTIONS(1117), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_break] = ACTIONS(1117), - [anon_sym_continue] = ACTIONS(1117), - [anon_sym_for] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1117), - [anon_sym_loop] = ACTIONS(1117), - [anon_sym_while] = ACTIONS(1117), - [anon_sym_do] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1117), - [anon_sym_LBRACE] = ACTIONS(1117), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_try] = ACTIONS(1117), - [anon_sym_return] = ACTIONS(1117), - [anon_sym_source] = ACTIONS(1117), - [anon_sym_source_DASHenv] = ACTIONS(1117), - [anon_sym_register] = ACTIONS(1117), - [anon_sym_hide] = ACTIONS(1117), - [anon_sym_hide_DASHenv] = ACTIONS(1117), - [anon_sym_overlay] = ACTIONS(1117), - [anon_sym_as] = ACTIONS(1117), - [anon_sym_STAR] = ACTIONS(1117), - [anon_sym_where] = ACTIONS(1117), - [anon_sym_STAR_STAR] = ACTIONS(1117), - [anon_sym_PLUS_PLUS] = ACTIONS(1117), - [anon_sym_SLASH] = ACTIONS(1117), - [anon_sym_mod] = ACTIONS(1117), - [anon_sym_SLASH_SLASH] = ACTIONS(1117), - [anon_sym_PLUS] = ACTIONS(1117), - [anon_sym_bit_DASHshl] = ACTIONS(1117), - [anon_sym_bit_DASHshr] = ACTIONS(1117), - [anon_sym_EQ_EQ] = ACTIONS(1117), - [anon_sym_BANG_EQ] = ACTIONS(1117), - [anon_sym_LT2] = ACTIONS(1117), - [anon_sym_LT_EQ] = ACTIONS(1117), - [anon_sym_GT_EQ] = ACTIONS(1117), - [anon_sym_not_DASHin] = ACTIONS(1117), - [anon_sym_starts_DASHwith] = ACTIONS(1117), - [anon_sym_ends_DASHwith] = ACTIONS(1117), - [anon_sym_EQ_TILDE] = ACTIONS(1117), - [anon_sym_BANG_TILDE] = ACTIONS(1117), - [anon_sym_bit_DASHand] = ACTIONS(1117), - [anon_sym_bit_DASHxor] = ACTIONS(1117), - [anon_sym_bit_DASHor] = ACTIONS(1117), - [anon_sym_and] = ACTIONS(1117), - [anon_sym_xor] = ACTIONS(1117), - [anon_sym_or] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1117), - [anon_sym_DOT_DOT2] = ACTIONS(1117), - [anon_sym_DOT] = ACTIONS(1117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1117), - [anon_sym_DOT_DOT_LT] = ACTIONS(1117), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1119), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1119), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_true] = ACTIONS(1117), - [anon_sym_false] = ACTIONS(1117), - [aux_sym__val_number_decimal_token1] = ACTIONS(1117), - [aux_sym__val_number_decimal_token2] = ACTIONS(1117), - [anon_sym_DOT2] = ACTIONS(1117), - [aux_sym__val_number_decimal_token3] = ACTIONS(1117), - [aux_sym__val_number_token1] = ACTIONS(1117), - [aux_sym__val_number_token2] = ACTIONS(1117), - [aux_sym__val_number_token3] = ACTIONS(1117), - [aux_sym__val_number_token4] = ACTIONS(1117), - [aux_sym__val_number_token5] = ACTIONS(1117), - [aux_sym__val_number_token6] = ACTIONS(1117), - [anon_sym_0b] = ACTIONS(1117), - [anon_sym_0o] = ACTIONS(1117), - [anon_sym_0x] = ACTIONS(1117), - [sym_val_date] = ACTIONS(1117), - [anon_sym_DQUOTE] = ACTIONS(1117), - [sym__str_single_quotes] = ACTIONS(1117), - [sym__str_back_ticks] = ACTIONS(1117), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1117), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1117), - [anon_sym_CARET] = ACTIONS(1117), + [ts_builtin_sym_end] = ACTIONS(1022), + [anon_sym_export] = ACTIONS(1020), + [anon_sym_alias] = ACTIONS(1020), + [anon_sym_let] = ACTIONS(1020), + [anon_sym_let_DASHenv] = ACTIONS(1020), + [anon_sym_mut] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1020), + [sym_cmd_identifier] = ACTIONS(1020), + [anon_sym_LF] = ACTIONS(1022), + [anon_sym_def] = ACTIONS(1020), + [anon_sym_export_DASHenv] = ACTIONS(1020), + [anon_sym_extern] = ACTIONS(1020), + [anon_sym_module] = ACTIONS(1020), + [anon_sym_use] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_error] = ACTIONS(1020), + [anon_sym_GT] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1020), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_in] = ACTIONS(1020), + [anon_sym_loop] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_match] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_DOT_DOT] = ACTIONS(1020), + [anon_sym_try] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_source] = ACTIONS(1020), + [anon_sym_source_DASHenv] = ACTIONS(1020), + [anon_sym_register] = ACTIONS(1020), + [anon_sym_hide] = ACTIONS(1020), + [anon_sym_hide_DASHenv] = ACTIONS(1020), + [anon_sym_overlay] = ACTIONS(1020), + [anon_sym_as] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_where] = ACTIONS(1020), + [anon_sym_QMARK2] = ACTIONS(1020), + [anon_sym_STAR_STAR] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1020), + [anon_sym_SLASH] = ACTIONS(1020), + [anon_sym_mod] = ACTIONS(1020), + [anon_sym_SLASH_SLASH] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_bit_DASHshl] = ACTIONS(1020), + [anon_sym_bit_DASHshr] = ACTIONS(1020), + [anon_sym_EQ_EQ] = ACTIONS(1020), + [anon_sym_BANG_EQ] = ACTIONS(1020), + [anon_sym_LT2] = ACTIONS(1020), + [anon_sym_LT_EQ] = ACTIONS(1020), + [anon_sym_GT_EQ] = ACTIONS(1020), + [anon_sym_not_DASHin] = ACTIONS(1020), + [anon_sym_starts_DASHwith] = ACTIONS(1020), + [anon_sym_ends_DASHwith] = ACTIONS(1020), + [anon_sym_EQ_TILDE] = ACTIONS(1020), + [anon_sym_BANG_TILDE] = ACTIONS(1020), + [anon_sym_bit_DASHand] = ACTIONS(1020), + [anon_sym_bit_DASHxor] = ACTIONS(1020), + [anon_sym_bit_DASHor] = ACTIONS(1020), + [anon_sym_and] = ACTIONS(1020), + [anon_sym_xor] = ACTIONS(1020), + [anon_sym_or] = ACTIONS(1020), + [anon_sym_not] = ACTIONS(1020), + [anon_sym_DOT] = ACTIONS(1020), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1020), + [anon_sym_DOT_DOT_LT] = ACTIONS(1020), + [anon_sym_null] = ACTIONS(1020), + [anon_sym_true] = ACTIONS(1020), + [anon_sym_false] = ACTIONS(1020), + [aux_sym__val_number_decimal_token1] = ACTIONS(1020), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [anon_sym_DOT2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1020), + [aux_sym__val_number_token1] = ACTIONS(1020), + [aux_sym__val_number_token2] = ACTIONS(1020), + [aux_sym__val_number_token3] = ACTIONS(1020), + [aux_sym__val_number_token4] = ACTIONS(1020), + [aux_sym__val_number_token5] = ACTIONS(1020), + [aux_sym__val_number_token6] = ACTIONS(1020), + [anon_sym_0b] = ACTIONS(1020), + [anon_sym_0o] = ACTIONS(1020), + [anon_sym_0x] = ACTIONS(1020), + [sym_val_date] = ACTIONS(1020), + [anon_sym_DQUOTE] = ACTIONS(1020), + [sym__str_single_quotes] = ACTIONS(1020), + [sym__str_back_ticks] = ACTIONS(1020), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1020), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1020), + [anon_sym_CARET] = ACTIONS(1020), [anon_sym_POUND] = ACTIONS(113), }, [333] = { - [sym_cell_path] = STATE(477), - [sym_path] = STATE(349), [sym_comment] = STATE(333), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_alias] = ACTIONS(1148), - [anon_sym_let] = ACTIONS(1148), - [anon_sym_let_DASHenv] = ACTIONS(1148), - [anon_sym_mut] = ACTIONS(1148), - [anon_sym_const] = ACTIONS(1148), - [anon_sym_SEMI] = ACTIONS(1148), - [sym_cmd_identifier] = ACTIONS(1148), - [anon_sym_LF] = ACTIONS(1150), - [anon_sym_def] = ACTIONS(1148), - [anon_sym_export_DASHenv] = ACTIONS(1148), - [anon_sym_extern] = ACTIONS(1148), - [anon_sym_module] = ACTIONS(1148), - [anon_sym_use] = ACTIONS(1148), - [anon_sym_LBRACK] = ACTIONS(1148), - [anon_sym_LPAREN] = ACTIONS(1148), - [anon_sym_RPAREN] = ACTIONS(1148), - [anon_sym_DOLLAR] = ACTIONS(1148), - [anon_sym_error] = ACTIONS(1148), - [anon_sym_GT] = ACTIONS(1148), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_DASH] = ACTIONS(1148), - [anon_sym_break] = ACTIONS(1148), - [anon_sym_continue] = ACTIONS(1148), - [anon_sym_for] = ACTIONS(1148), - [anon_sym_in] = ACTIONS(1148), - [anon_sym_loop] = ACTIONS(1148), - [anon_sym_while] = ACTIONS(1148), - [anon_sym_do] = ACTIONS(1148), - [anon_sym_if] = ACTIONS(1148), - [anon_sym_match] = ACTIONS(1148), - [anon_sym_LBRACE] = ACTIONS(1148), - [anon_sym_RBRACE] = ACTIONS(1148), - [anon_sym_DOT_DOT] = ACTIONS(1148), - [anon_sym_try] = ACTIONS(1148), - [anon_sym_return] = ACTIONS(1148), - [anon_sym_source] = ACTIONS(1148), - [anon_sym_source_DASHenv] = ACTIONS(1148), - [anon_sym_register] = ACTIONS(1148), - [anon_sym_hide] = ACTIONS(1148), - [anon_sym_hide_DASHenv] = ACTIONS(1148), - [anon_sym_overlay] = ACTIONS(1148), - [anon_sym_as] = ACTIONS(1148), - [anon_sym_STAR] = ACTIONS(1148), - [anon_sym_where] = ACTIONS(1148), - [anon_sym_STAR_STAR] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_SLASH] = ACTIONS(1148), - [anon_sym_mod] = ACTIONS(1148), - [anon_sym_SLASH_SLASH] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1148), - [anon_sym_bit_DASHshl] = ACTIONS(1148), - [anon_sym_bit_DASHshr] = ACTIONS(1148), - [anon_sym_EQ_EQ] = ACTIONS(1148), - [anon_sym_BANG_EQ] = ACTIONS(1148), - [anon_sym_LT2] = ACTIONS(1148), - [anon_sym_LT_EQ] = ACTIONS(1148), - [anon_sym_GT_EQ] = ACTIONS(1148), - [anon_sym_not_DASHin] = ACTIONS(1148), - [anon_sym_starts_DASHwith] = ACTIONS(1148), - [anon_sym_ends_DASHwith] = ACTIONS(1148), - [anon_sym_EQ_TILDE] = ACTIONS(1148), - [anon_sym_BANG_TILDE] = ACTIONS(1148), - [anon_sym_bit_DASHand] = ACTIONS(1148), - [anon_sym_bit_DASHxor] = ACTIONS(1148), - [anon_sym_bit_DASHor] = ACTIONS(1148), - [anon_sym_and] = ACTIONS(1148), - [anon_sym_xor] = ACTIONS(1148), - [anon_sym_or] = ACTIONS(1148), - [anon_sym_not] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1152), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1148), - [anon_sym_DOT_DOT_LT] = ACTIONS(1148), - [anon_sym_null] = ACTIONS(1148), - [anon_sym_true] = ACTIONS(1148), - [anon_sym_false] = ACTIONS(1148), - [aux_sym__val_number_decimal_token1] = ACTIONS(1148), - [aux_sym__val_number_decimal_token2] = ACTIONS(1148), - [anon_sym_DOT2] = ACTIONS(1148), - [aux_sym__val_number_decimal_token3] = ACTIONS(1148), - [aux_sym__val_number_token1] = ACTIONS(1148), - [aux_sym__val_number_token2] = ACTIONS(1148), - [aux_sym__val_number_token3] = ACTIONS(1148), - [aux_sym__val_number_token4] = ACTIONS(1148), - [aux_sym__val_number_token5] = ACTIONS(1148), - [aux_sym__val_number_token6] = ACTIONS(1148), - [anon_sym_0b] = ACTIONS(1148), - [anon_sym_0o] = ACTIONS(1148), - [anon_sym_0x] = ACTIONS(1148), - [sym_val_date] = ACTIONS(1148), - [anon_sym_DQUOTE] = ACTIONS(1148), - [sym__str_single_quotes] = ACTIONS(1148), - [sym__str_back_ticks] = ACTIONS(1148), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1148), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1148), - [anon_sym_CARET] = ACTIONS(1148), + [anon_sym_export] = ACTIONS(938), + [anon_sym_alias] = ACTIONS(938), + [anon_sym_let] = ACTIONS(938), + [anon_sym_let_DASHenv] = ACTIONS(938), + [anon_sym_mut] = ACTIONS(938), + [anon_sym_const] = ACTIONS(938), + [anon_sym_SEMI] = ACTIONS(938), + [sym_cmd_identifier] = ACTIONS(938), + [anon_sym_LF] = ACTIONS(940), + [anon_sym_def] = ACTIONS(938), + [anon_sym_export_DASHenv] = ACTIONS(938), + [anon_sym_extern] = ACTIONS(938), + [anon_sym_module] = ACTIONS(938), + [anon_sym_use] = ACTIONS(938), + [anon_sym_LBRACK] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(938), + [anon_sym_RPAREN] = ACTIONS(938), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_error] = ACTIONS(938), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_break] = ACTIONS(938), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_for] = ACTIONS(938), + [anon_sym_in] = ACTIONS(938), + [anon_sym_loop] = ACTIONS(938), + [anon_sym_while] = ACTIONS(938), + [anon_sym_do] = ACTIONS(938), + [anon_sym_if] = ACTIONS(938), + [anon_sym_match] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_RBRACE] = ACTIONS(938), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_try] = ACTIONS(938), + [anon_sym_return] = ACTIONS(938), + [anon_sym_source] = ACTIONS(938), + [anon_sym_source_DASHenv] = ACTIONS(938), + [anon_sym_register] = ACTIONS(938), + [anon_sym_hide] = ACTIONS(938), + [anon_sym_hide_DASHenv] = ACTIONS(938), + [anon_sym_overlay] = ACTIONS(938), + [anon_sym_as] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_where] = ACTIONS(938), + [anon_sym_STAR_STAR] = ACTIONS(938), + [anon_sym_PLUS_PLUS] = ACTIONS(938), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(938), + [anon_sym_SLASH_SLASH] = ACTIONS(938), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_bit_DASHshl] = ACTIONS(938), + [anon_sym_bit_DASHshr] = ACTIONS(938), + [anon_sym_EQ_EQ] = ACTIONS(938), + [anon_sym_BANG_EQ] = ACTIONS(938), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(938), + [anon_sym_GT_EQ] = ACTIONS(938), + [anon_sym_not_DASHin] = ACTIONS(938), + [anon_sym_starts_DASHwith] = ACTIONS(938), + [anon_sym_ends_DASHwith] = ACTIONS(938), + [anon_sym_EQ_TILDE] = ACTIONS(938), + [anon_sym_BANG_TILDE] = ACTIONS(938), + [anon_sym_bit_DASHand] = ACTIONS(938), + [anon_sym_bit_DASHxor] = ACTIONS(938), + [anon_sym_bit_DASHor] = ACTIONS(938), + [anon_sym_and] = ACTIONS(938), + [anon_sym_xor] = ACTIONS(938), + [anon_sym_or] = ACTIONS(938), + [anon_sym_not] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ] = ACTIONS(938), + [anon_sym_DOT_DOT_LT] = ACTIONS(938), + [anon_sym_null] = ACTIONS(938), + [anon_sym_true] = ACTIONS(938), + [anon_sym_false] = ACTIONS(938), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(938), + [anon_sym_DOT2] = ACTIONS(938), + [aux_sym__val_number_decimal_token3] = ACTIONS(938), + [aux_sym__val_number_token1] = ACTIONS(938), + [aux_sym__val_number_token2] = ACTIONS(938), + [aux_sym__val_number_token3] = ACTIONS(938), + [aux_sym__val_number_token4] = ACTIONS(938), + [aux_sym__val_number_token5] = ACTIONS(938), + [aux_sym__val_number_token6] = ACTIONS(938), + [anon_sym_0b] = ACTIONS(938), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym__str_single_quotes] = ACTIONS(938), + [sym__str_back_ticks] = ACTIONS(938), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(938), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(938), + [anon_sym_CARET] = ACTIONS(938), + [aux_sym_unquoted_token5] = ACTIONS(930), [anon_sym_POUND] = ACTIONS(113), }, [334] = { [sym_comment] = STATE(334), - [anon_sym_export] = ACTIONS(909), - [anon_sym_alias] = ACTIONS(909), - [anon_sym_let] = ACTIONS(909), - [anon_sym_let_DASHenv] = ACTIONS(909), - [anon_sym_mut] = ACTIONS(909), - [anon_sym_const] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(909), - [sym_cmd_identifier] = ACTIONS(909), - [anon_sym_LF] = ACTIONS(911), - [anon_sym_def] = ACTIONS(909), - [anon_sym_export_DASHenv] = ACTIONS(909), - [anon_sym_extern] = ACTIONS(909), - [anon_sym_module] = ACTIONS(909), - [anon_sym_use] = ACTIONS(909), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_RPAREN] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_error] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_break] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_for] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_loop] = ACTIONS(909), - [anon_sym_while] = ACTIONS(909), - [anon_sym_do] = ACTIONS(909), - [anon_sym_if] = ACTIONS(909), - [anon_sym_match] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_RBRACE] = ACTIONS(909), - [anon_sym_DOT_DOT] = ACTIONS(909), - [anon_sym_try] = ACTIONS(909), - [anon_sym_return] = ACTIONS(909), - [anon_sym_source] = ACTIONS(909), - [anon_sym_source_DASHenv] = ACTIONS(909), - [anon_sym_register] = ACTIONS(909), - [anon_sym_hide] = ACTIONS(909), - [anon_sym_hide_DASHenv] = ACTIONS(909), - [anon_sym_overlay] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_where] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(909), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(909), - [anon_sym_SLASH_SLASH] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(909), - [anon_sym_bit_DASHshr] = ACTIONS(909), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_not_DASHin] = ACTIONS(909), - [anon_sym_starts_DASHwith] = ACTIONS(909), - [anon_sym_ends_DASHwith] = ACTIONS(909), - [anon_sym_EQ_TILDE] = ACTIONS(909), - [anon_sym_BANG_TILDE] = ACTIONS(909), - [anon_sym_bit_DASHand] = ACTIONS(909), - [anon_sym_bit_DASHxor] = ACTIONS(909), - [anon_sym_bit_DASHor] = ACTIONS(909), - [anon_sym_and] = ACTIONS(909), - [anon_sym_xor] = ACTIONS(909), - [anon_sym_or] = ACTIONS(909), - [anon_sym_not] = ACTIONS(909), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [anon_sym_null] = ACTIONS(909), - [anon_sym_true] = ACTIONS(909), - [anon_sym_false] = ACTIONS(909), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(909), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(909), - [aux_sym__val_number_token1] = ACTIONS(909), - [aux_sym__val_number_token2] = ACTIONS(909), - [aux_sym__val_number_token3] = ACTIONS(909), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(909), - [aux_sym__val_number_token6] = ACTIONS(909), - [anon_sym_0b] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(909), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym__str_single_quotes] = ACTIONS(909), - [sym__str_back_ticks] = ACTIONS(909), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), - [anon_sym_CARET] = ACTIONS(909), + [anon_sym_export] = ACTIONS(1143), + [anon_sym_alias] = ACTIONS(1143), + [anon_sym_let] = ACTIONS(1143), + [anon_sym_let_DASHenv] = ACTIONS(1143), + [anon_sym_mut] = ACTIONS(1143), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_SEMI] = ACTIONS(1143), + [sym_cmd_identifier] = ACTIONS(1143), + [anon_sym_LF] = ACTIONS(1145), + [anon_sym_def] = ACTIONS(1143), + [anon_sym_export_DASHenv] = ACTIONS(1143), + [anon_sym_extern] = ACTIONS(1143), + [anon_sym_module] = ACTIONS(1143), + [anon_sym_use] = ACTIONS(1143), + [anon_sym_LBRACK] = ACTIONS(1143), + [anon_sym_LPAREN] = ACTIONS(1143), + [anon_sym_RPAREN] = ACTIONS(1143), + [anon_sym_DOLLAR] = ACTIONS(1143), + [anon_sym_error] = ACTIONS(1143), + [anon_sym_GT] = ACTIONS(1143), + [anon_sym_DASH_DASH] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_break] = ACTIONS(1143), + [anon_sym_continue] = ACTIONS(1143), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_loop] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(1143), + [anon_sym_do] = ACTIONS(1143), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_match] = ACTIONS(1143), + [anon_sym_LBRACE] = ACTIONS(1143), + [anon_sym_RBRACE] = ACTIONS(1143), + [anon_sym_DOT_DOT] = ACTIONS(1143), + [anon_sym_try] = ACTIONS(1143), + [anon_sym_return] = ACTIONS(1143), + [anon_sym_source] = ACTIONS(1143), + [anon_sym_source_DASHenv] = ACTIONS(1143), + [anon_sym_register] = ACTIONS(1143), + [anon_sym_hide] = ACTIONS(1143), + [anon_sym_hide_DASHenv] = ACTIONS(1143), + [anon_sym_overlay] = ACTIONS(1143), + [anon_sym_as] = ACTIONS(1143), + [anon_sym_STAR] = ACTIONS(1143), + [anon_sym_where] = ACTIONS(1143), + [anon_sym_STAR_STAR] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(1143), + [anon_sym_mod] = ACTIONS(1143), + [anon_sym_SLASH_SLASH] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_bit_DASHshl] = ACTIONS(1143), + [anon_sym_bit_DASHshr] = ACTIONS(1143), + [anon_sym_EQ_EQ] = ACTIONS(1143), + [anon_sym_BANG_EQ] = ACTIONS(1143), + [anon_sym_LT2] = ACTIONS(1143), + [anon_sym_LT_EQ] = ACTIONS(1143), + [anon_sym_GT_EQ] = ACTIONS(1143), + [anon_sym_not_DASHin] = ACTIONS(1143), + [anon_sym_starts_DASHwith] = ACTIONS(1143), + [anon_sym_ends_DASHwith] = ACTIONS(1143), + [anon_sym_EQ_TILDE] = ACTIONS(1143), + [anon_sym_BANG_TILDE] = ACTIONS(1143), + [anon_sym_bit_DASHand] = ACTIONS(1143), + [anon_sym_bit_DASHxor] = ACTIONS(1143), + [anon_sym_bit_DASHor] = ACTIONS(1143), + [anon_sym_and] = ACTIONS(1143), + [anon_sym_xor] = ACTIONS(1143), + [anon_sym_or] = ACTIONS(1143), + [anon_sym_not] = ACTIONS(1143), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1143), + [anon_sym_DOT_DOT_LT] = ACTIONS(1143), + [anon_sym_null] = ACTIONS(1143), + [anon_sym_true] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [aux_sym__val_number_decimal_token1] = ACTIONS(1143), + [aux_sym__val_number_decimal_token2] = ACTIONS(1143), + [anon_sym_DOT2] = ACTIONS(1143), + [aux_sym__val_number_decimal_token3] = ACTIONS(1143), + [aux_sym__val_number_token1] = ACTIONS(1143), + [aux_sym__val_number_token2] = ACTIONS(1143), + [aux_sym__val_number_token3] = ACTIONS(1143), + [aux_sym__val_number_token4] = ACTIONS(1143), + [aux_sym__val_number_token5] = ACTIONS(1143), + [aux_sym__val_number_token6] = ACTIONS(1143), + [anon_sym_0b] = ACTIONS(1143), + [anon_sym_0o] = ACTIONS(1143), + [anon_sym_0x] = ACTIONS(1143), + [anon_sym_LBRACK2] = ACTIONS(1147), + [sym_val_date] = ACTIONS(1143), + [anon_sym_DQUOTE] = ACTIONS(1143), + [sym__str_single_quotes] = ACTIONS(1143), + [sym__str_back_ticks] = ACTIONS(1143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1143), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1143), + [anon_sym_CARET] = ACTIONS(1143), [anon_sym_POUND] = ACTIONS(113), }, [335] = { - [sym_cell_path] = STATE(442), - [sym_path] = STATE(349), [sym_comment] = STATE(335), - [anon_sym_export] = ACTIONS(1154), - [anon_sym_alias] = ACTIONS(1154), - [anon_sym_let] = ACTIONS(1154), - [anon_sym_let_DASHenv] = ACTIONS(1154), - [anon_sym_mut] = ACTIONS(1154), - [anon_sym_const] = ACTIONS(1154), - [anon_sym_SEMI] = ACTIONS(1154), - [sym_cmd_identifier] = ACTIONS(1154), - [anon_sym_LF] = ACTIONS(1156), - [anon_sym_def] = ACTIONS(1154), - [anon_sym_export_DASHenv] = ACTIONS(1154), - [anon_sym_extern] = ACTIONS(1154), - [anon_sym_module] = ACTIONS(1154), - [anon_sym_use] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_RPAREN] = ACTIONS(1154), - [anon_sym_DOLLAR] = ACTIONS(1154), - [anon_sym_error] = ACTIONS(1154), - [anon_sym_GT] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [anon_sym_DASH] = ACTIONS(1154), - [anon_sym_break] = ACTIONS(1154), - [anon_sym_continue] = ACTIONS(1154), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_in] = ACTIONS(1154), - [anon_sym_loop] = ACTIONS(1154), - [anon_sym_while] = ACTIONS(1154), - [anon_sym_do] = ACTIONS(1154), - [anon_sym_if] = ACTIONS(1154), - [anon_sym_match] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(1154), - [anon_sym_RBRACE] = ACTIONS(1154), - [anon_sym_DOT_DOT] = ACTIONS(1154), - [anon_sym_try] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(1154), - [anon_sym_source] = ACTIONS(1154), - [anon_sym_source_DASHenv] = ACTIONS(1154), - [anon_sym_register] = ACTIONS(1154), - [anon_sym_hide] = ACTIONS(1154), - [anon_sym_hide_DASHenv] = ACTIONS(1154), - [anon_sym_overlay] = ACTIONS(1154), - [anon_sym_as] = ACTIONS(1154), - [anon_sym_STAR] = ACTIONS(1154), - [anon_sym_where] = ACTIONS(1154), - [anon_sym_STAR_STAR] = ACTIONS(1154), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_SLASH] = ACTIONS(1154), - [anon_sym_mod] = ACTIONS(1154), - [anon_sym_SLASH_SLASH] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1154), - [anon_sym_bit_DASHshl] = ACTIONS(1154), - [anon_sym_bit_DASHshr] = ACTIONS(1154), - [anon_sym_EQ_EQ] = ACTIONS(1154), - [anon_sym_BANG_EQ] = ACTIONS(1154), - [anon_sym_LT2] = ACTIONS(1154), - [anon_sym_LT_EQ] = ACTIONS(1154), - [anon_sym_GT_EQ] = ACTIONS(1154), - [anon_sym_not_DASHin] = ACTIONS(1154), - [anon_sym_starts_DASHwith] = ACTIONS(1154), - [anon_sym_ends_DASHwith] = ACTIONS(1154), - [anon_sym_EQ_TILDE] = ACTIONS(1154), - [anon_sym_BANG_TILDE] = ACTIONS(1154), - [anon_sym_bit_DASHand] = ACTIONS(1154), - [anon_sym_bit_DASHxor] = ACTIONS(1154), - [anon_sym_bit_DASHor] = ACTIONS(1154), - [anon_sym_and] = ACTIONS(1154), - [anon_sym_xor] = ACTIONS(1154), - [anon_sym_or] = ACTIONS(1154), - [anon_sym_not] = ACTIONS(1154), - [anon_sym_DOT] = ACTIONS(1152), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1154), - [anon_sym_DOT_DOT_LT] = ACTIONS(1154), - [anon_sym_null] = ACTIONS(1154), - [anon_sym_true] = ACTIONS(1154), - [anon_sym_false] = ACTIONS(1154), - [aux_sym__val_number_decimal_token1] = ACTIONS(1154), - [aux_sym__val_number_decimal_token2] = ACTIONS(1154), - [anon_sym_DOT2] = ACTIONS(1154), - [aux_sym__val_number_decimal_token3] = ACTIONS(1154), - [aux_sym__val_number_token1] = ACTIONS(1154), - [aux_sym__val_number_token2] = ACTIONS(1154), - [aux_sym__val_number_token3] = ACTIONS(1154), - [aux_sym__val_number_token4] = ACTIONS(1154), - [aux_sym__val_number_token5] = ACTIONS(1154), - [aux_sym__val_number_token6] = ACTIONS(1154), - [anon_sym_0b] = ACTIONS(1154), - [anon_sym_0o] = ACTIONS(1154), - [anon_sym_0x] = ACTIONS(1154), - [sym_val_date] = ACTIONS(1154), - [anon_sym_DQUOTE] = ACTIONS(1154), - [sym__str_single_quotes] = ACTIONS(1154), - [sym__str_back_ticks] = ACTIONS(1154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1154), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1154), - [anon_sym_CARET] = ACTIONS(1154), + [anon_sym_export] = ACTIONS(1089), + [anon_sym_alias] = ACTIONS(1089), + [anon_sym_let] = ACTIONS(1089), + [anon_sym_let_DASHenv] = ACTIONS(1089), + [anon_sym_mut] = ACTIONS(1089), + [anon_sym_const] = ACTIONS(1089), + [anon_sym_SEMI] = ACTIONS(1089), + [sym_cmd_identifier] = ACTIONS(1089), + [anon_sym_LF] = ACTIONS(1091), + [anon_sym_def] = ACTIONS(1089), + [anon_sym_export_DASHenv] = ACTIONS(1089), + [anon_sym_extern] = ACTIONS(1089), + [anon_sym_module] = ACTIONS(1089), + [anon_sym_use] = ACTIONS(1089), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1089), + [anon_sym_RPAREN] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1089), + [anon_sym_error] = ACTIONS(1089), + [anon_sym_GT] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_DASH] = ACTIONS(1089), + [anon_sym_break] = ACTIONS(1089), + [anon_sym_continue] = ACTIONS(1089), + [anon_sym_for] = ACTIONS(1089), + [anon_sym_in] = ACTIONS(1089), + [anon_sym_loop] = ACTIONS(1089), + [anon_sym_while] = ACTIONS(1089), + [anon_sym_do] = ACTIONS(1089), + [anon_sym_if] = ACTIONS(1089), + [anon_sym_match] = ACTIONS(1089), + [anon_sym_LBRACE] = ACTIONS(1089), + [anon_sym_RBRACE] = ACTIONS(1089), + [anon_sym_DOT_DOT] = ACTIONS(1089), + [anon_sym_try] = ACTIONS(1089), + [anon_sym_return] = ACTIONS(1089), + [anon_sym_source] = ACTIONS(1089), + [anon_sym_source_DASHenv] = ACTIONS(1089), + [anon_sym_register] = ACTIONS(1089), + [anon_sym_hide] = ACTIONS(1089), + [anon_sym_hide_DASHenv] = ACTIONS(1089), + [anon_sym_overlay] = ACTIONS(1089), + [anon_sym_as] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_where] = ACTIONS(1089), + [anon_sym_STAR_STAR] = ACTIONS(1089), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_SLASH] = ACTIONS(1089), + [anon_sym_mod] = ACTIONS(1089), + [anon_sym_SLASH_SLASH] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1089), + [anon_sym_bit_DASHshl] = ACTIONS(1089), + [anon_sym_bit_DASHshr] = ACTIONS(1089), + [anon_sym_EQ_EQ] = ACTIONS(1089), + [anon_sym_BANG_EQ] = ACTIONS(1089), + [anon_sym_LT2] = ACTIONS(1089), + [anon_sym_LT_EQ] = ACTIONS(1089), + [anon_sym_GT_EQ] = ACTIONS(1089), + [anon_sym_not_DASHin] = ACTIONS(1089), + [anon_sym_starts_DASHwith] = ACTIONS(1089), + [anon_sym_ends_DASHwith] = ACTIONS(1089), + [anon_sym_EQ_TILDE] = ACTIONS(1089), + [anon_sym_BANG_TILDE] = ACTIONS(1089), + [anon_sym_bit_DASHand] = ACTIONS(1089), + [anon_sym_bit_DASHxor] = ACTIONS(1089), + [anon_sym_bit_DASHor] = ACTIONS(1089), + [anon_sym_and] = ACTIONS(1089), + [anon_sym_xor] = ACTIONS(1089), + [anon_sym_or] = ACTIONS(1089), + [anon_sym_not] = ACTIONS(1089), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_DOT_DOT_LT] = ACTIONS(1089), + [anon_sym_null] = ACTIONS(1089), + [anon_sym_true] = ACTIONS(1089), + [anon_sym_false] = ACTIONS(1089), + [aux_sym__val_number_decimal_token1] = ACTIONS(1089), + [aux_sym__val_number_decimal_token2] = ACTIONS(1089), + [anon_sym_DOT2] = ACTIONS(1089), + [aux_sym__val_number_decimal_token3] = ACTIONS(1089), + [aux_sym__val_number_token1] = ACTIONS(1089), + [aux_sym__val_number_token2] = ACTIONS(1089), + [aux_sym__val_number_token3] = ACTIONS(1089), + [aux_sym__val_number_token4] = ACTIONS(1089), + [aux_sym__val_number_token5] = ACTIONS(1089), + [aux_sym__val_number_token6] = ACTIONS(1089), + [anon_sym_0b] = ACTIONS(1089), + [anon_sym_0o] = ACTIONS(1089), + [anon_sym_0x] = ACTIONS(1089), + [sym_val_date] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1089), + [sym__str_single_quotes] = ACTIONS(1089), + [sym__str_back_ticks] = ACTIONS(1089), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1089), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1089), + [anon_sym_CARET] = ACTIONS(1089), + [aux_sym_unquoted_token6] = ACTIONS(1149), [anon_sym_POUND] = ACTIONS(113), }, [336] = { [sym_comment] = STATE(336), - [ts_builtin_sym_end] = ACTIONS(1111), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_alias] = ACTIONS(1109), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_let_DASHenv] = ACTIONS(1109), - [anon_sym_mut] = ACTIONS(1109), - [anon_sym_const] = ACTIONS(1109), - [anon_sym_SEMI] = ACTIONS(1109), - [sym_cmd_identifier] = ACTIONS(1109), - [anon_sym_LF] = ACTIONS(1111), - [anon_sym_def] = ACTIONS(1109), - [anon_sym_export_DASHenv] = ACTIONS(1109), - [anon_sym_extern] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_use] = ACTIONS(1109), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_DOLLAR] = ACTIONS(1109), - [anon_sym_error] = ACTIONS(1109), - [anon_sym_GT] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_break] = ACTIONS(1109), - [anon_sym_continue] = ACTIONS(1109), - [anon_sym_for] = ACTIONS(1109), - [anon_sym_in] = ACTIONS(1109), - [anon_sym_loop] = ACTIONS(1109), - [anon_sym_while] = ACTIONS(1109), - [anon_sym_do] = ACTIONS(1109), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_DOT_DOT] = ACTIONS(1109), - [anon_sym_try] = ACTIONS(1109), - [anon_sym_return] = ACTIONS(1109), - [anon_sym_source] = ACTIONS(1109), - [anon_sym_source_DASHenv] = ACTIONS(1109), - [anon_sym_register] = ACTIONS(1109), - [anon_sym_hide] = ACTIONS(1109), - [anon_sym_hide_DASHenv] = ACTIONS(1109), - [anon_sym_overlay] = ACTIONS(1109), - [anon_sym_as] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_where] = ACTIONS(1109), - [anon_sym_STAR_STAR] = ACTIONS(1109), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_SLASH] = ACTIONS(1109), - [anon_sym_mod] = ACTIONS(1109), - [anon_sym_SLASH_SLASH] = ACTIONS(1109), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_bit_DASHshl] = ACTIONS(1109), - [anon_sym_bit_DASHshr] = ACTIONS(1109), - [anon_sym_EQ_EQ] = ACTIONS(1109), - [anon_sym_BANG_EQ] = ACTIONS(1109), - [anon_sym_LT2] = ACTIONS(1109), - [anon_sym_LT_EQ] = ACTIONS(1109), - [anon_sym_GT_EQ] = ACTIONS(1109), - [anon_sym_not_DASHin] = ACTIONS(1109), - [anon_sym_starts_DASHwith] = ACTIONS(1109), - [anon_sym_ends_DASHwith] = ACTIONS(1109), - [anon_sym_EQ_TILDE] = ACTIONS(1109), - [anon_sym_BANG_TILDE] = ACTIONS(1109), - [anon_sym_bit_DASHand] = ACTIONS(1109), - [anon_sym_bit_DASHxor] = ACTIONS(1109), - [anon_sym_bit_DASHor] = ACTIONS(1109), - [anon_sym_and] = ACTIONS(1109), - [anon_sym_xor] = ACTIONS(1109), - [anon_sym_or] = ACTIONS(1109), - [anon_sym_not] = ACTIONS(1109), - [anon_sym_DOT_DOT2] = ACTIONS(1109), - [anon_sym_DOT] = ACTIONS(1109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1109), - [anon_sym_DOT_DOT_LT] = ACTIONS(1109), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1111), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1111), - [anon_sym_null] = ACTIONS(1109), - [anon_sym_true] = ACTIONS(1109), - [anon_sym_false] = ACTIONS(1109), - [aux_sym__val_number_decimal_token1] = ACTIONS(1109), - [aux_sym__val_number_decimal_token2] = ACTIONS(1109), - [anon_sym_DOT2] = ACTIONS(1109), - [aux_sym__val_number_decimal_token3] = ACTIONS(1109), - [aux_sym__val_number_token1] = ACTIONS(1109), - [aux_sym__val_number_token2] = ACTIONS(1109), - [aux_sym__val_number_token3] = ACTIONS(1109), - [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(1109), - [anon_sym_0o] = ACTIONS(1109), - [anon_sym_0x] = ACTIONS(1109), - [sym_val_date] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(1109), - [sym__str_single_quotes] = ACTIONS(1109), - [sym__str_back_ticks] = ACTIONS(1109), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1109), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1109), - [anon_sym_CARET] = ACTIONS(1109), + [ts_builtin_sym_end] = ACTIONS(922), + [anon_sym_export] = ACTIONS(920), + [anon_sym_alias] = ACTIONS(920), + [anon_sym_let] = ACTIONS(920), + [anon_sym_let_DASHenv] = ACTIONS(920), + [anon_sym_mut] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(920), + [sym_cmd_identifier] = ACTIONS(920), + [anon_sym_LF] = ACTIONS(922), + [anon_sym_def] = ACTIONS(920), + [anon_sym_export_DASHenv] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym_module] = ACTIONS(920), + [anon_sym_use] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_error] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_in] = ACTIONS(920), + [anon_sym_loop] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_match] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_try] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_source] = ACTIONS(920), + [anon_sym_source_DASHenv] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_hide] = ACTIONS(920), + [anon_sym_hide_DASHenv] = ACTIONS(920), + [anon_sym_overlay] = ACTIONS(920), + [anon_sym_as] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_where] = ACTIONS(920), + [anon_sym_STAR_STAR] = ACTIONS(920), + [anon_sym_PLUS_PLUS] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_mod] = ACTIONS(920), + [anon_sym_SLASH_SLASH] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_bit_DASHshl] = ACTIONS(920), + [anon_sym_bit_DASHshr] = ACTIONS(920), + [anon_sym_EQ_EQ] = ACTIONS(920), + [anon_sym_BANG_EQ] = ACTIONS(920), + [anon_sym_LT2] = ACTIONS(920), + [anon_sym_LT_EQ] = ACTIONS(920), + [anon_sym_GT_EQ] = ACTIONS(920), + [anon_sym_not_DASHin] = ACTIONS(920), + [anon_sym_starts_DASHwith] = ACTIONS(920), + [anon_sym_ends_DASHwith] = ACTIONS(920), + [anon_sym_EQ_TILDE] = ACTIONS(920), + [anon_sym_BANG_TILDE] = ACTIONS(920), + [anon_sym_bit_DASHand] = ACTIONS(920), + [anon_sym_bit_DASHxor] = ACTIONS(920), + [anon_sym_bit_DASHor] = ACTIONS(920), + [anon_sym_and] = ACTIONS(920), + [anon_sym_xor] = ACTIONS(920), + [anon_sym_or] = ACTIONS(920), + [anon_sym_not] = ACTIONS(920), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [aux_sym__immediate_decimal_token1] = ACTIONS(1151), + [anon_sym_null] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), + [anon_sym_CARET] = ACTIONS(920), + [aux_sym_unquoted_token2] = ACTIONS(1153), [anon_sym_POUND] = ACTIONS(113), }, [337] = { [sym_comment] = STATE(337), - [anon_sym_export] = ACTIONS(917), - [anon_sym_alias] = ACTIONS(917), - [anon_sym_let] = ACTIONS(917), - [anon_sym_let_DASHenv] = ACTIONS(917), - [anon_sym_mut] = ACTIONS(917), - [anon_sym_const] = ACTIONS(917), - [anon_sym_SEMI] = ACTIONS(917), - [sym_cmd_identifier] = ACTIONS(917), - [anon_sym_LF] = ACTIONS(919), - [anon_sym_def] = ACTIONS(917), - [anon_sym_export_DASHenv] = ACTIONS(917), - [anon_sym_extern] = ACTIONS(917), - [anon_sym_module] = ACTIONS(917), - [anon_sym_use] = ACTIONS(917), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_LPAREN] = ACTIONS(917), - [anon_sym_RPAREN] = ACTIONS(917), - [anon_sym_DOLLAR] = ACTIONS(917), - [anon_sym_error] = ACTIONS(917), - [anon_sym_GT] = ACTIONS(917), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_break] = ACTIONS(917), - [anon_sym_continue] = ACTIONS(917), - [anon_sym_for] = ACTIONS(917), - [anon_sym_in] = ACTIONS(917), - [anon_sym_loop] = ACTIONS(917), - [anon_sym_while] = ACTIONS(917), - [anon_sym_do] = ACTIONS(917), - [anon_sym_if] = ACTIONS(917), - [anon_sym_match] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(917), - [anon_sym_RBRACE] = ACTIONS(917), - [anon_sym_DOT_DOT] = ACTIONS(917), - [anon_sym_try] = ACTIONS(917), - [anon_sym_return] = ACTIONS(917), - [anon_sym_source] = ACTIONS(917), - [anon_sym_source_DASHenv] = ACTIONS(917), - [anon_sym_register] = ACTIONS(917), - [anon_sym_hide] = ACTIONS(917), - [anon_sym_hide_DASHenv] = ACTIONS(917), - [anon_sym_overlay] = ACTIONS(917), - [anon_sym_STAR] = ACTIONS(917), - [anon_sym_where] = ACTIONS(917), - [anon_sym_STAR_STAR] = ACTIONS(917), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_mod] = ACTIONS(917), - [anon_sym_SLASH_SLASH] = ACTIONS(917), - [anon_sym_PLUS] = ACTIONS(917), - [anon_sym_bit_DASHshl] = ACTIONS(917), - [anon_sym_bit_DASHshr] = ACTIONS(917), - [anon_sym_EQ_EQ] = ACTIONS(917), - [anon_sym_BANG_EQ] = ACTIONS(917), - [anon_sym_LT2] = ACTIONS(917), - [anon_sym_LT_EQ] = ACTIONS(917), - [anon_sym_GT_EQ] = ACTIONS(917), - [anon_sym_not_DASHin] = ACTIONS(917), - [anon_sym_starts_DASHwith] = ACTIONS(917), - [anon_sym_ends_DASHwith] = ACTIONS(917), - [anon_sym_EQ_TILDE] = ACTIONS(917), - [anon_sym_BANG_TILDE] = ACTIONS(917), - [anon_sym_bit_DASHand] = ACTIONS(917), - [anon_sym_bit_DASHxor] = ACTIONS(917), - [anon_sym_bit_DASHor] = ACTIONS(917), - [anon_sym_and] = ACTIONS(917), - [anon_sym_xor] = ACTIONS(917), - [anon_sym_or] = ACTIONS(917), - [anon_sym_not] = ACTIONS(917), - [anon_sym_DOT_DOT2] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ] = ACTIONS(917), - [anon_sym_DOT_DOT_LT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(919), - [anon_sym_DOT_DOT_LT2] = ACTIONS(919), - [anon_sym_null] = ACTIONS(917), - [anon_sym_true] = ACTIONS(917), - [anon_sym_false] = ACTIONS(917), - [aux_sym__val_number_decimal_token1] = ACTIONS(917), - [aux_sym__val_number_decimal_token2] = ACTIONS(917), - [anon_sym_DOT2] = ACTIONS(917), - [aux_sym__val_number_decimal_token3] = ACTIONS(917), - [aux_sym__val_number_token1] = ACTIONS(917), - [aux_sym__val_number_token2] = ACTIONS(917), - [aux_sym__val_number_token3] = ACTIONS(917), - [aux_sym__val_number_token4] = ACTIONS(917), - [aux_sym__val_number_token5] = ACTIONS(917), - [aux_sym__val_number_token6] = ACTIONS(917), - [anon_sym_0b] = ACTIONS(917), - [sym_filesize_unit] = ACTIONS(917), - [sym_duration_unit] = ACTIONS(917), - [anon_sym_0o] = ACTIONS(917), - [anon_sym_0x] = ACTIONS(917), - [sym_val_date] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(917), - [sym__str_single_quotes] = ACTIONS(917), - [sym__str_back_ticks] = ACTIONS(917), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(917), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(917), - [anon_sym_CARET] = ACTIONS(917), + [anon_sym_export] = ACTIONS(938), + [anon_sym_alias] = ACTIONS(938), + [anon_sym_let] = ACTIONS(938), + [anon_sym_let_DASHenv] = ACTIONS(938), + [anon_sym_mut] = ACTIONS(938), + [anon_sym_const] = ACTIONS(938), + [anon_sym_SEMI] = ACTIONS(938), + [sym_cmd_identifier] = ACTIONS(938), + [anon_sym_LF] = ACTIONS(940), + [anon_sym_def] = ACTIONS(938), + [anon_sym_export_DASHenv] = ACTIONS(938), + [anon_sym_extern] = ACTIONS(938), + [anon_sym_module] = ACTIONS(938), + [anon_sym_use] = ACTIONS(938), + [anon_sym_LBRACK] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(938), + [anon_sym_RPAREN] = ACTIONS(938), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_error] = ACTIONS(938), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_break] = ACTIONS(938), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_for] = ACTIONS(938), + [anon_sym_in] = ACTIONS(938), + [anon_sym_loop] = ACTIONS(938), + [anon_sym_while] = ACTIONS(938), + [anon_sym_do] = ACTIONS(938), + [anon_sym_if] = ACTIONS(938), + [anon_sym_match] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_RBRACE] = ACTIONS(938), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_try] = ACTIONS(938), + [anon_sym_return] = ACTIONS(938), + [anon_sym_source] = ACTIONS(938), + [anon_sym_source_DASHenv] = ACTIONS(938), + [anon_sym_register] = ACTIONS(938), + [anon_sym_hide] = ACTIONS(938), + [anon_sym_hide_DASHenv] = ACTIONS(938), + [anon_sym_overlay] = ACTIONS(938), + [anon_sym_as] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_where] = ACTIONS(938), + [anon_sym_STAR_STAR] = ACTIONS(938), + [anon_sym_PLUS_PLUS] = ACTIONS(938), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(938), + [anon_sym_SLASH_SLASH] = ACTIONS(938), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_bit_DASHshl] = ACTIONS(938), + [anon_sym_bit_DASHshr] = ACTIONS(938), + [anon_sym_EQ_EQ] = ACTIONS(938), + [anon_sym_BANG_EQ] = ACTIONS(938), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(938), + [anon_sym_GT_EQ] = ACTIONS(938), + [anon_sym_not_DASHin] = ACTIONS(938), + [anon_sym_starts_DASHwith] = ACTIONS(938), + [anon_sym_ends_DASHwith] = ACTIONS(938), + [anon_sym_EQ_TILDE] = ACTIONS(938), + [anon_sym_BANG_TILDE] = ACTIONS(938), + [anon_sym_bit_DASHand] = ACTIONS(938), + [anon_sym_bit_DASHxor] = ACTIONS(938), + [anon_sym_bit_DASHor] = ACTIONS(938), + [anon_sym_and] = ACTIONS(938), + [anon_sym_xor] = ACTIONS(938), + [anon_sym_or] = ACTIONS(938), + [anon_sym_not] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ] = ACTIONS(938), + [anon_sym_DOT_DOT_LT] = ACTIONS(938), + [anon_sym_null] = ACTIONS(938), + [anon_sym_true] = ACTIONS(938), + [anon_sym_false] = ACTIONS(938), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(938), + [anon_sym_DOT2] = ACTIONS(938), + [aux_sym__val_number_decimal_token3] = ACTIONS(938), + [aux_sym__val_number_token1] = ACTIONS(938), + [aux_sym__val_number_token2] = ACTIONS(938), + [aux_sym__val_number_token3] = ACTIONS(938), + [aux_sym__val_number_token4] = ACTIONS(938), + [aux_sym__val_number_token5] = ACTIONS(938), + [aux_sym__val_number_token6] = ACTIONS(938), + [anon_sym_0b] = ACTIONS(938), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym__str_single_quotes] = ACTIONS(938), + [sym__str_back_ticks] = ACTIONS(938), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(938), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(938), + [anon_sym_CARET] = ACTIONS(938), + [aux_sym_unquoted_token5] = ACTIONS(952), [anon_sym_POUND] = ACTIONS(113), }, [338] = { [sym_comment] = STATE(338), - [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), - [anon_sym_SEMI] = ACTIONS(950), - [sym_cmd_identifier] = ACTIONS(950), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(950), - [anon_sym_LPAREN] = ACTIONS(950), - [anon_sym_RPAREN] = ACTIONS(950), - [anon_sym_DOLLAR] = ACTIONS(950), - [anon_sym_error] = ACTIONS(950), - [anon_sym_GT] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(950), - [anon_sym_break] = ACTIONS(950), - [anon_sym_continue] = ACTIONS(950), - [anon_sym_for] = ACTIONS(950), - [anon_sym_in] = ACTIONS(950), - [anon_sym_loop] = ACTIONS(950), - [anon_sym_while] = ACTIONS(950), - [anon_sym_do] = ACTIONS(950), - [anon_sym_if] = ACTIONS(950), - [anon_sym_match] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(950), - [anon_sym_RBRACE] = ACTIONS(950), - [anon_sym_DOT_DOT] = ACTIONS(950), - [anon_sym_try] = ACTIONS(950), - [anon_sym_return] = ACTIONS(950), - [anon_sym_source] = ACTIONS(950), - [anon_sym_source_DASHenv] = ACTIONS(950), - [anon_sym_register] = ACTIONS(950), - [anon_sym_hide] = ACTIONS(950), - [anon_sym_hide_DASHenv] = ACTIONS(950), - [anon_sym_overlay] = ACTIONS(950), - [anon_sym_STAR] = ACTIONS(950), - [anon_sym_where] = ACTIONS(950), - [anon_sym_STAR_STAR] = ACTIONS(950), - [anon_sym_PLUS_PLUS] = ACTIONS(950), - [anon_sym_SLASH] = ACTIONS(950), - [anon_sym_mod] = ACTIONS(950), - [anon_sym_SLASH_SLASH] = ACTIONS(950), - [anon_sym_PLUS] = ACTIONS(950), - [anon_sym_bit_DASHshl] = ACTIONS(950), - [anon_sym_bit_DASHshr] = ACTIONS(950), - [anon_sym_EQ_EQ] = ACTIONS(950), - [anon_sym_BANG_EQ] = ACTIONS(950), - [anon_sym_LT2] = ACTIONS(950), - [anon_sym_LT_EQ] = ACTIONS(950), - [anon_sym_GT_EQ] = ACTIONS(950), - [anon_sym_not_DASHin] = ACTIONS(950), - [anon_sym_starts_DASHwith] = ACTIONS(950), - [anon_sym_ends_DASHwith] = ACTIONS(950), - [anon_sym_EQ_TILDE] = ACTIONS(950), - [anon_sym_BANG_TILDE] = ACTIONS(950), - [anon_sym_bit_DASHand] = ACTIONS(950), - [anon_sym_bit_DASHxor] = ACTIONS(950), - [anon_sym_bit_DASHor] = ACTIONS(950), - [anon_sym_and] = ACTIONS(950), - [anon_sym_xor] = ACTIONS(950), - [anon_sym_or] = ACTIONS(950), - [anon_sym_not] = ACTIONS(950), - [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(950), - [anon_sym_true] = ACTIONS(950), - [anon_sym_false] = ACTIONS(950), - [aux_sym__val_number_decimal_token1] = ACTIONS(950), - [aux_sym__val_number_decimal_token2] = ACTIONS(950), - [anon_sym_DOT2] = ACTIONS(950), - [aux_sym__val_number_decimal_token3] = ACTIONS(950), - [aux_sym__val_number_token1] = ACTIONS(950), - [aux_sym__val_number_token2] = ACTIONS(950), - [aux_sym__val_number_token3] = ACTIONS(950), - [aux_sym__val_number_token4] = ACTIONS(950), - [aux_sym__val_number_token5] = ACTIONS(950), - [aux_sym__val_number_token6] = ACTIONS(950), - [anon_sym_0b] = ACTIONS(950), - [sym_filesize_unit] = ACTIONS(950), - [sym_duration_unit] = ACTIONS(950), - [anon_sym_0o] = ACTIONS(950), - [anon_sym_0x] = ACTIONS(950), - [sym_val_date] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym__str_single_quotes] = ACTIONS(950), - [sym__str_back_ticks] = ACTIONS(950), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(950), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(950), - [anon_sym_CARET] = ACTIONS(950), + [anon_sym_export] = ACTIONS(1033), + [anon_sym_alias] = ACTIONS(1033), + [anon_sym_EQ] = ACTIONS(1033), + [anon_sym_let] = ACTIONS(1033), + [anon_sym_let_DASHenv] = ACTIONS(1033), + [anon_sym_mut] = ACTIONS(1033), + [anon_sym_const] = ACTIONS(1033), + [anon_sym_PLUS_EQ] = ACTIONS(1033), + [anon_sym_DASH_EQ] = ACTIONS(1033), + [anon_sym_STAR_EQ] = ACTIONS(1033), + [anon_sym_SLASH_EQ] = ACTIONS(1033), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(1033), + [sym_cmd_identifier] = ACTIONS(1033), + [anon_sym_LF] = ACTIONS(1035), + [anon_sym_def] = ACTIONS(1033), + [anon_sym_export_DASHenv] = ACTIONS(1033), + [anon_sym_extern] = ACTIONS(1033), + [anon_sym_module] = ACTIONS(1033), + [anon_sym_use] = ACTIONS(1033), + [anon_sym_COLON] = ACTIONS(1033), + [anon_sym_COMMA] = ACTIONS(1033), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_PIPE] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_error] = ACTIONS(1033), + [anon_sym_list] = ACTIONS(1033), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1033), + [anon_sym_break] = ACTIONS(1033), + [anon_sym_continue] = ACTIONS(1033), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_in] = ACTIONS(1033), + [anon_sym_loop] = ACTIONS(1033), + [anon_sym_make] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(1033), + [anon_sym_do] = ACTIONS(1033), + [anon_sym_if] = ACTIONS(1033), + [anon_sym_else] = ACTIONS(1033), + [anon_sym_match] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1033), + [anon_sym_try] = ACTIONS(1033), + [anon_sym_catch] = ACTIONS(1033), + [anon_sym_return] = ACTIONS(1033), + [anon_sym_source] = ACTIONS(1033), + [anon_sym_source_DASHenv] = ACTIONS(1033), + [anon_sym_register] = ACTIONS(1033), + [anon_sym_hide] = ACTIONS(1033), + [anon_sym_hide_DASHenv] = ACTIONS(1033), + [anon_sym_overlay] = ACTIONS(1033), + [anon_sym_new] = ACTIONS(1033), + [anon_sym_as] = ACTIONS(1033), + [anon_sym_STAR] = ACTIONS(1033), + [anon_sym_QMARK2] = ACTIONS(1033), + [anon_sym_STAR_STAR] = ACTIONS(1033), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_SLASH] = ACTIONS(1033), + [anon_sym_mod] = ACTIONS(1033), + [anon_sym_SLASH_SLASH] = ACTIONS(1033), + [anon_sym_PLUS] = ACTIONS(1033), + [anon_sym_bit_DASHshl] = ACTIONS(1033), + [anon_sym_bit_DASHshr] = ACTIONS(1033), + [anon_sym_EQ_EQ] = ACTIONS(1033), + [anon_sym_BANG_EQ] = ACTIONS(1033), + [anon_sym_LT2] = ACTIONS(1033), + [anon_sym_LT_EQ] = ACTIONS(1033), + [anon_sym_GT_EQ] = ACTIONS(1033), + [anon_sym_not_DASHin] = ACTIONS(1033), + [anon_sym_starts_DASHwith] = ACTIONS(1033), + [anon_sym_ends_DASHwith] = ACTIONS(1033), + [anon_sym_EQ_TILDE] = ACTIONS(1033), + [anon_sym_BANG_TILDE] = ACTIONS(1033), + [anon_sym_bit_DASHand] = ACTIONS(1033), + [anon_sym_bit_DASHxor] = ACTIONS(1033), + [anon_sym_bit_DASHor] = ACTIONS(1033), + [anon_sym_and] = ACTIONS(1033), + [anon_sym_xor] = ACTIONS(1033), + [anon_sym_or] = ACTIONS(1033), + [anon_sym_DOT_DOT2] = ACTIONS(1033), + [anon_sym_DOT] = ACTIONS(1033), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1035), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1035), + [aux_sym__val_number_decimal_token1] = ACTIONS(1033), + [aux_sym__val_number_decimal_token2] = ACTIONS(1033), + [anon_sym_DOT2] = ACTIONS(1033), + [aux_sym__val_number_decimal_token3] = ACTIONS(1033), + [aux_sym__val_number_token1] = ACTIONS(1033), + [aux_sym__val_number_token2] = ACTIONS(1033), + [aux_sym__val_number_token3] = ACTIONS(1033), + [aux_sym__val_number_token4] = ACTIONS(1033), + [aux_sym__val_number_token5] = ACTIONS(1033), + [aux_sym__val_number_token6] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [sym__str_single_quotes] = ACTIONS(1033), + [sym__str_back_ticks] = ACTIONS(1033), + [aux_sym__record_key_token2] = ACTIONS(1033), [anon_sym_POUND] = ACTIONS(113), }, [339] = { [sym_comment] = STATE(339), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_alias] = ACTIONS(1158), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_let_DASHenv] = ACTIONS(1158), - [anon_sym_mut] = ACTIONS(1158), - [anon_sym_const] = ACTIONS(1158), - [anon_sym_SEMI] = ACTIONS(1158), - [sym_cmd_identifier] = ACTIONS(1158), - [anon_sym_LF] = ACTIONS(1160), - [anon_sym_def] = ACTIONS(1158), - [anon_sym_export_DASHenv] = ACTIONS(1158), - [anon_sym_extern] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_use] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_LPAREN] = ACTIONS(1158), - [anon_sym_RPAREN] = ACTIONS(1158), - [anon_sym_DOLLAR] = ACTIONS(1158), - [anon_sym_error] = ACTIONS(1158), - [anon_sym_GT] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_break] = ACTIONS(1158), - [anon_sym_continue] = ACTIONS(1158), - [anon_sym_for] = ACTIONS(1158), - [anon_sym_in] = ACTIONS(1158), - [anon_sym_loop] = ACTIONS(1158), - [anon_sym_while] = ACTIONS(1158), - [anon_sym_do] = ACTIONS(1158), - [anon_sym_if] = ACTIONS(1158), - [anon_sym_match] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1158), - [anon_sym_RBRACE] = ACTIONS(1158), - [anon_sym_DOT_DOT] = ACTIONS(1158), - [anon_sym_try] = ACTIONS(1158), - [anon_sym_return] = ACTIONS(1158), - [anon_sym_source] = ACTIONS(1158), - [anon_sym_source_DASHenv] = ACTIONS(1158), - [anon_sym_register] = ACTIONS(1158), - [anon_sym_hide] = ACTIONS(1158), - [anon_sym_hide_DASHenv] = ACTIONS(1158), - [anon_sym_overlay] = ACTIONS(1158), - [anon_sym_as] = ACTIONS(1158), - [anon_sym_STAR] = ACTIONS(1158), - [anon_sym_where] = ACTIONS(1158), - [anon_sym_STAR_STAR] = ACTIONS(1158), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_SLASH] = ACTIONS(1158), - [anon_sym_mod] = ACTIONS(1158), - [anon_sym_SLASH_SLASH] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1158), - [anon_sym_bit_DASHshl] = ACTIONS(1158), - [anon_sym_bit_DASHshr] = ACTIONS(1158), - [anon_sym_EQ_EQ] = ACTIONS(1158), - [anon_sym_BANG_EQ] = ACTIONS(1158), - [anon_sym_LT2] = ACTIONS(1158), - [anon_sym_LT_EQ] = ACTIONS(1158), - [anon_sym_GT_EQ] = ACTIONS(1158), - [anon_sym_not_DASHin] = ACTIONS(1158), - [anon_sym_starts_DASHwith] = ACTIONS(1158), - [anon_sym_ends_DASHwith] = ACTIONS(1158), - [anon_sym_EQ_TILDE] = ACTIONS(1158), - [anon_sym_BANG_TILDE] = ACTIONS(1158), - [anon_sym_bit_DASHand] = ACTIONS(1158), - [anon_sym_bit_DASHxor] = ACTIONS(1158), - [anon_sym_bit_DASHor] = ACTIONS(1158), - [anon_sym_and] = ACTIONS(1158), - [anon_sym_xor] = ACTIONS(1158), - [anon_sym_or] = ACTIONS(1158), - [anon_sym_not] = ACTIONS(1158), - [anon_sym_DOT_DOT2] = ACTIONS(1162), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1158), - [anon_sym_DOT_DOT_LT] = ACTIONS(1158), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1164), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1164), - [anon_sym_null] = ACTIONS(1158), - [anon_sym_true] = ACTIONS(1158), - [anon_sym_false] = ACTIONS(1158), - [aux_sym__val_number_decimal_token1] = ACTIONS(1158), - [aux_sym__val_number_decimal_token2] = ACTIONS(1158), - [anon_sym_DOT2] = ACTIONS(1158), - [aux_sym__val_number_decimal_token3] = ACTIONS(1158), - [aux_sym__val_number_token1] = ACTIONS(1158), - [aux_sym__val_number_token2] = ACTIONS(1158), - [aux_sym__val_number_token3] = ACTIONS(1158), - [aux_sym__val_number_token4] = ACTIONS(1158), - [aux_sym__val_number_token5] = ACTIONS(1158), - [aux_sym__val_number_token6] = ACTIONS(1158), - [anon_sym_0b] = ACTIONS(1158), - [anon_sym_0o] = ACTIONS(1158), - [anon_sym_0x] = ACTIONS(1158), - [sym_val_date] = ACTIONS(1158), - [anon_sym_DQUOTE] = ACTIONS(1158), - [sym__str_single_quotes] = ACTIONS(1158), - [sym__str_back_ticks] = ACTIONS(1158), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1158), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1158), - [anon_sym_CARET] = ACTIONS(1158), + [anon_sym_export] = ACTIONS(1155), + [anon_sym_alias] = ACTIONS(1155), + [anon_sym_let] = ACTIONS(1155), + [anon_sym_let_DASHenv] = ACTIONS(1155), + [anon_sym_mut] = ACTIONS(1155), + [anon_sym_const] = ACTIONS(1155), + [anon_sym_SEMI] = ACTIONS(1155), + [sym_cmd_identifier] = ACTIONS(1155), + [anon_sym_LF] = ACTIONS(1157), + [anon_sym_def] = ACTIONS(1155), + [anon_sym_export_DASHenv] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1155), + [anon_sym_module] = ACTIONS(1155), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1155), + [anon_sym_LPAREN] = ACTIONS(1155), + [anon_sym_RPAREN] = ACTIONS(1155), + [anon_sym_DOLLAR] = ACTIONS(1155), + [anon_sym_error] = ACTIONS(1155), + [anon_sym_GT] = ACTIONS(1155), + [anon_sym_DASH_DASH] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_break] = ACTIONS(1155), + [anon_sym_continue] = ACTIONS(1155), + [anon_sym_for] = ACTIONS(1155), + [anon_sym_in] = ACTIONS(1155), + [anon_sym_loop] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(1155), + [anon_sym_do] = ACTIONS(1155), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_match] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_RBRACE] = ACTIONS(1155), + [anon_sym_DOT_DOT] = ACTIONS(1155), + [anon_sym_try] = ACTIONS(1155), + [anon_sym_return] = ACTIONS(1155), + [anon_sym_source] = ACTIONS(1155), + [anon_sym_source_DASHenv] = ACTIONS(1155), + [anon_sym_register] = ACTIONS(1155), + [anon_sym_hide] = ACTIONS(1155), + [anon_sym_hide_DASHenv] = ACTIONS(1155), + [anon_sym_overlay] = ACTIONS(1155), + [anon_sym_as] = ACTIONS(1155), + [anon_sym_STAR] = ACTIONS(1155), + [anon_sym_where] = ACTIONS(1155), + [anon_sym_STAR_STAR] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(1155), + [anon_sym_mod] = ACTIONS(1155), + [anon_sym_SLASH_SLASH] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_bit_DASHshl] = ACTIONS(1155), + [anon_sym_bit_DASHshr] = ACTIONS(1155), + [anon_sym_EQ_EQ] = ACTIONS(1155), + [anon_sym_BANG_EQ] = ACTIONS(1155), + [anon_sym_LT2] = ACTIONS(1155), + [anon_sym_LT_EQ] = ACTIONS(1155), + [anon_sym_GT_EQ] = ACTIONS(1155), + [anon_sym_not_DASHin] = ACTIONS(1155), + [anon_sym_starts_DASHwith] = ACTIONS(1155), + [anon_sym_ends_DASHwith] = ACTIONS(1155), + [anon_sym_EQ_TILDE] = ACTIONS(1155), + [anon_sym_BANG_TILDE] = ACTIONS(1155), + [anon_sym_bit_DASHand] = ACTIONS(1155), + [anon_sym_bit_DASHxor] = ACTIONS(1155), + [anon_sym_bit_DASHor] = ACTIONS(1155), + [anon_sym_and] = ACTIONS(1155), + [anon_sym_xor] = ACTIONS(1155), + [anon_sym_or] = ACTIONS(1155), + [anon_sym_not] = ACTIONS(1155), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1155), + [anon_sym_DOT_DOT_LT] = ACTIONS(1155), + [anon_sym_null] = ACTIONS(1155), + [anon_sym_true] = ACTIONS(1155), + [anon_sym_false] = ACTIONS(1155), + [aux_sym__val_number_decimal_token1] = ACTIONS(1155), + [aux_sym__val_number_decimal_token2] = ACTIONS(1155), + [anon_sym_DOT2] = ACTIONS(1155), + [aux_sym__val_number_decimal_token3] = ACTIONS(1155), + [aux_sym__val_number_token1] = ACTIONS(1155), + [aux_sym__val_number_token2] = ACTIONS(1155), + [aux_sym__val_number_token3] = ACTIONS(1155), + [aux_sym__val_number_token4] = ACTIONS(1155), + [aux_sym__val_number_token5] = ACTIONS(1155), + [aux_sym__val_number_token6] = ACTIONS(1155), + [anon_sym_0b] = ACTIONS(1155), + [anon_sym_0o] = ACTIONS(1155), + [anon_sym_0x] = ACTIONS(1155), + [sym_val_date] = ACTIONS(1155), + [anon_sym_DQUOTE] = ACTIONS(1155), + [sym__str_single_quotes] = ACTIONS(1155), + [sym__str_back_ticks] = ACTIONS(1155), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1155), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1155), + [anon_sym_CARET] = ACTIONS(1155), + [aux_sym_unquoted_token6] = ACTIONS(1155), [anon_sym_POUND] = ACTIONS(113), }, [340] = { - [sym_cell_path] = STATE(467), - [sym_path] = STATE(361), [sym_comment] = STATE(340), - [ts_builtin_sym_end] = ACTIONS(997), - [anon_sym_export] = ACTIONS(995), - [anon_sym_alias] = ACTIONS(995), - [anon_sym_let] = ACTIONS(995), - [anon_sym_let_DASHenv] = ACTIONS(995), - [anon_sym_mut] = ACTIONS(995), - [anon_sym_const] = ACTIONS(995), - [anon_sym_SEMI] = ACTIONS(995), - [sym_cmd_identifier] = ACTIONS(995), - [anon_sym_LF] = ACTIONS(997), - [anon_sym_def] = ACTIONS(995), - [anon_sym_export_DASHenv] = ACTIONS(995), - [anon_sym_extern] = ACTIONS(995), - [anon_sym_module] = ACTIONS(995), - [anon_sym_use] = ACTIONS(995), - [anon_sym_LBRACK] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_DOLLAR] = ACTIONS(995), - [anon_sym_error] = ACTIONS(995), - [anon_sym_GT] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_break] = ACTIONS(995), - [anon_sym_continue] = ACTIONS(995), - [anon_sym_for] = ACTIONS(995), - [anon_sym_in] = ACTIONS(995), - [anon_sym_loop] = ACTIONS(995), - [anon_sym_while] = ACTIONS(995), - [anon_sym_do] = ACTIONS(995), - [anon_sym_if] = ACTIONS(995), - [anon_sym_match] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_DOT_DOT] = ACTIONS(995), - [anon_sym_try] = ACTIONS(995), - [anon_sym_return] = ACTIONS(995), - [anon_sym_source] = ACTIONS(995), - [anon_sym_source_DASHenv] = ACTIONS(995), - [anon_sym_register] = ACTIONS(995), - [anon_sym_hide] = ACTIONS(995), - [anon_sym_hide_DASHenv] = ACTIONS(995), - [anon_sym_overlay] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_where] = ACTIONS(995), - [anon_sym_STAR_STAR] = ACTIONS(995), - [anon_sym_PLUS_PLUS] = ACTIONS(995), - [anon_sym_SLASH] = ACTIONS(995), - [anon_sym_mod] = ACTIONS(995), - [anon_sym_SLASH_SLASH] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_bit_DASHshl] = ACTIONS(995), - [anon_sym_bit_DASHshr] = ACTIONS(995), - [anon_sym_EQ_EQ] = ACTIONS(995), - [anon_sym_BANG_EQ] = ACTIONS(995), - [anon_sym_LT2] = ACTIONS(995), - [anon_sym_LT_EQ] = ACTIONS(995), - [anon_sym_GT_EQ] = ACTIONS(995), - [anon_sym_not_DASHin] = ACTIONS(995), - [anon_sym_starts_DASHwith] = ACTIONS(995), - [anon_sym_ends_DASHwith] = ACTIONS(995), - [anon_sym_EQ_TILDE] = ACTIONS(995), - [anon_sym_BANG_TILDE] = ACTIONS(995), - [anon_sym_bit_DASHand] = ACTIONS(995), - [anon_sym_bit_DASHxor] = ACTIONS(995), - [anon_sym_bit_DASHor] = ACTIONS(995), - [anon_sym_and] = ACTIONS(995), - [anon_sym_xor] = ACTIONS(995), - [anon_sym_or] = ACTIONS(995), - [anon_sym_not] = ACTIONS(995), - [anon_sym_DOT_DOT2] = ACTIONS(995), - [anon_sym_DOT] = ACTIONS(1166), - [anon_sym_DOT_DOT_EQ] = ACTIONS(995), - [anon_sym_DOT_DOT_LT] = ACTIONS(995), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(997), - [anon_sym_DOT_DOT_LT2] = ACTIONS(997), - [anon_sym_null] = ACTIONS(995), - [anon_sym_true] = ACTIONS(995), - [anon_sym_false] = ACTIONS(995), - [aux_sym__val_number_decimal_token1] = ACTIONS(995), - [aux_sym__val_number_decimal_token2] = ACTIONS(995), - [anon_sym_DOT2] = ACTIONS(995), - [aux_sym__val_number_decimal_token3] = ACTIONS(995), - [aux_sym__val_number_token1] = ACTIONS(995), - [aux_sym__val_number_token2] = ACTIONS(995), - [aux_sym__val_number_token3] = ACTIONS(995), - [aux_sym__val_number_token4] = ACTIONS(995), - [aux_sym__val_number_token5] = ACTIONS(995), - [aux_sym__val_number_token6] = ACTIONS(995), - [anon_sym_0b] = ACTIONS(995), - [anon_sym_0o] = ACTIONS(995), - [anon_sym_0x] = ACTIONS(995), - [sym_val_date] = ACTIONS(995), - [anon_sym_DQUOTE] = ACTIONS(995), - [sym__str_single_quotes] = ACTIONS(995), - [sym__str_back_ticks] = ACTIONS(995), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(995), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(995), - [anon_sym_CARET] = ACTIONS(995), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_alias] = ACTIONS(1159), + [anon_sym_let] = ACTIONS(1159), + [anon_sym_let_DASHenv] = ACTIONS(1159), + [anon_sym_mut] = ACTIONS(1159), + [anon_sym_const] = ACTIONS(1159), + [anon_sym_SEMI] = ACTIONS(1159), + [sym_cmd_identifier] = ACTIONS(1159), + [anon_sym_LF] = ACTIONS(1161), + [anon_sym_def] = ACTIONS(1159), + [anon_sym_export_DASHenv] = ACTIONS(1159), + [anon_sym_extern] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_use] = ACTIONS(1159), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LPAREN] = ACTIONS(1159), + [anon_sym_RPAREN] = ACTIONS(1159), + [anon_sym_DOLLAR] = ACTIONS(1159), + [anon_sym_error] = ACTIONS(1159), + [anon_sym_GT] = ACTIONS(1159), + [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_DASH] = ACTIONS(1159), + [anon_sym_break] = ACTIONS(1159), + [anon_sym_continue] = ACTIONS(1159), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_in] = ACTIONS(1159), + [anon_sym_loop] = ACTIONS(1159), + [anon_sym_while] = ACTIONS(1159), + [anon_sym_do] = ACTIONS(1159), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_match] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(1159), + [anon_sym_RBRACE] = ACTIONS(1159), + [anon_sym_DOT_DOT] = ACTIONS(1159), + [anon_sym_try] = ACTIONS(1159), + [anon_sym_return] = ACTIONS(1159), + [anon_sym_source] = ACTIONS(1159), + [anon_sym_source_DASHenv] = ACTIONS(1159), + [anon_sym_register] = ACTIONS(1159), + [anon_sym_hide] = ACTIONS(1159), + [anon_sym_hide_DASHenv] = ACTIONS(1159), + [anon_sym_overlay] = ACTIONS(1159), + [anon_sym_as] = ACTIONS(1159), + [anon_sym_STAR] = ACTIONS(1159), + [anon_sym_where] = ACTIONS(1159), + [anon_sym_STAR_STAR] = ACTIONS(1159), + [anon_sym_PLUS_PLUS] = ACTIONS(1159), + [anon_sym_SLASH] = ACTIONS(1159), + [anon_sym_mod] = ACTIONS(1159), + [anon_sym_SLASH_SLASH] = ACTIONS(1159), + [anon_sym_PLUS] = ACTIONS(1159), + [anon_sym_bit_DASHshl] = ACTIONS(1159), + [anon_sym_bit_DASHshr] = ACTIONS(1159), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_LT2] = ACTIONS(1159), + [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_not_DASHin] = ACTIONS(1159), + [anon_sym_starts_DASHwith] = ACTIONS(1159), + [anon_sym_ends_DASHwith] = ACTIONS(1159), + [anon_sym_EQ_TILDE] = ACTIONS(1159), + [anon_sym_BANG_TILDE] = ACTIONS(1159), + [anon_sym_bit_DASHand] = ACTIONS(1159), + [anon_sym_bit_DASHxor] = ACTIONS(1159), + [anon_sym_bit_DASHor] = ACTIONS(1159), + [anon_sym_and] = ACTIONS(1159), + [anon_sym_xor] = ACTIONS(1159), + [anon_sym_or] = ACTIONS(1159), + [anon_sym_not] = ACTIONS(1159), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1159), + [anon_sym_DOT_DOT_LT] = ACTIONS(1159), + [anon_sym_null] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1159), + [anon_sym_false] = ACTIONS(1159), + [aux_sym__val_number_decimal_token1] = ACTIONS(1159), + [aux_sym__val_number_decimal_token2] = ACTIONS(1159), + [anon_sym_DOT2] = ACTIONS(1159), + [aux_sym__val_number_decimal_token3] = ACTIONS(1159), + [aux_sym__val_number_token1] = ACTIONS(1159), + [aux_sym__val_number_token2] = ACTIONS(1159), + [aux_sym__val_number_token3] = ACTIONS(1159), + [aux_sym__val_number_token4] = ACTIONS(1159), + [aux_sym__val_number_token5] = ACTIONS(1159), + [aux_sym__val_number_token6] = ACTIONS(1159), + [anon_sym_0b] = ACTIONS(1159), + [anon_sym_0o] = ACTIONS(1159), + [anon_sym_0x] = ACTIONS(1159), + [sym_val_date] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(1159), + [sym__str_single_quotes] = ACTIONS(1159), + [sym__str_back_ticks] = ACTIONS(1159), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1159), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1159), + [anon_sym_CARET] = ACTIONS(1159), + [aux_sym_unquoted_token6] = ACTIONS(1163), [anon_sym_POUND] = ACTIONS(113), }, [341] = { [sym_comment] = STATE(341), - [anon_sym_export] = ACTIONS(1168), - [anon_sym_alias] = ACTIONS(1168), - [anon_sym_let] = ACTIONS(1168), - [anon_sym_let_DASHenv] = ACTIONS(1168), - [anon_sym_mut] = ACTIONS(1168), - [anon_sym_const] = ACTIONS(1168), - [anon_sym_SEMI] = ACTIONS(1168), - [sym_cmd_identifier] = ACTIONS(1168), - [anon_sym_LF] = ACTIONS(1170), - [anon_sym_def] = ACTIONS(1168), - [anon_sym_export_DASHenv] = ACTIONS(1168), - [anon_sym_extern] = ACTIONS(1168), - [anon_sym_module] = ACTIONS(1168), - [anon_sym_use] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_RPAREN] = ACTIONS(1168), - [anon_sym_DOLLAR] = ACTIONS(1168), - [anon_sym_error] = ACTIONS(1168), - [anon_sym_GT] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1168), - [anon_sym_break] = ACTIONS(1168), - [anon_sym_continue] = ACTIONS(1168), - [anon_sym_for] = ACTIONS(1168), - [anon_sym_in] = ACTIONS(1168), - [anon_sym_loop] = ACTIONS(1168), - [anon_sym_while] = ACTIONS(1168), - [anon_sym_do] = ACTIONS(1168), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_match] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1168), - [anon_sym_RBRACE] = ACTIONS(1168), - [anon_sym_DOT_DOT] = ACTIONS(1168), - [anon_sym_try] = ACTIONS(1168), - [anon_sym_return] = ACTIONS(1168), - [anon_sym_source] = ACTIONS(1168), - [anon_sym_source_DASHenv] = ACTIONS(1168), - [anon_sym_register] = ACTIONS(1168), - [anon_sym_hide] = ACTIONS(1168), - [anon_sym_hide_DASHenv] = ACTIONS(1168), - [anon_sym_overlay] = ACTIONS(1168), - [anon_sym_as] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_where] = ACTIONS(1168), - [anon_sym_STAR_STAR] = ACTIONS(1168), - [anon_sym_PLUS_PLUS] = ACTIONS(1168), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_mod] = ACTIONS(1168), - [anon_sym_SLASH_SLASH] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(1168), - [anon_sym_bit_DASHshl] = ACTIONS(1168), - [anon_sym_bit_DASHshr] = ACTIONS(1168), - [anon_sym_EQ_EQ] = ACTIONS(1168), - [anon_sym_BANG_EQ] = ACTIONS(1168), - [anon_sym_LT2] = ACTIONS(1168), - [anon_sym_LT_EQ] = ACTIONS(1168), - [anon_sym_GT_EQ] = ACTIONS(1168), - [anon_sym_not_DASHin] = ACTIONS(1168), - [anon_sym_starts_DASHwith] = ACTIONS(1168), - [anon_sym_ends_DASHwith] = ACTIONS(1168), - [anon_sym_EQ_TILDE] = ACTIONS(1168), - [anon_sym_BANG_TILDE] = ACTIONS(1168), - [anon_sym_bit_DASHand] = ACTIONS(1168), - [anon_sym_bit_DASHxor] = ACTIONS(1168), - [anon_sym_bit_DASHor] = ACTIONS(1168), - [anon_sym_and] = ACTIONS(1168), - [anon_sym_xor] = ACTIONS(1168), - [anon_sym_or] = ACTIONS(1168), - [anon_sym_not] = ACTIONS(1168), - [anon_sym_DOT_DOT2] = ACTIONS(1168), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1168), - [anon_sym_DOT_DOT_LT] = ACTIONS(1168), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1170), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1170), - [anon_sym_null] = ACTIONS(1168), - [anon_sym_true] = ACTIONS(1168), - [anon_sym_false] = ACTIONS(1168), - [aux_sym__val_number_decimal_token1] = ACTIONS(1168), - [aux_sym__val_number_decimal_token2] = ACTIONS(1168), - [anon_sym_DOT2] = ACTIONS(1168), - [aux_sym__val_number_decimal_token3] = ACTIONS(1168), - [aux_sym__val_number_token1] = ACTIONS(1168), - [aux_sym__val_number_token2] = ACTIONS(1168), - [aux_sym__val_number_token3] = ACTIONS(1168), - [aux_sym__val_number_token4] = ACTIONS(1168), - [aux_sym__val_number_token5] = ACTIONS(1168), - [aux_sym__val_number_token6] = ACTIONS(1168), - [anon_sym_0b] = ACTIONS(1168), - [anon_sym_0o] = ACTIONS(1168), - [anon_sym_0x] = ACTIONS(1168), - [sym_val_date] = ACTIONS(1168), - [anon_sym_DQUOTE] = ACTIONS(1168), - [sym__str_single_quotes] = ACTIONS(1168), - [sym__str_back_ticks] = ACTIONS(1168), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1168), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1168), - [anon_sym_CARET] = ACTIONS(1168), + [anon_sym_export] = ACTIONS(1165), + [anon_sym_alias] = ACTIONS(1165), + [anon_sym_let] = ACTIONS(1165), + [anon_sym_let_DASHenv] = ACTIONS(1165), + [anon_sym_mut] = ACTIONS(1165), + [anon_sym_const] = ACTIONS(1165), + [anon_sym_SEMI] = ACTIONS(1165), + [sym_cmd_identifier] = ACTIONS(1165), + [anon_sym_LF] = ACTIONS(1167), + [anon_sym_def] = ACTIONS(1165), + [anon_sym_export_DASHenv] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1165), + [anon_sym_module] = ACTIONS(1165), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_LPAREN] = ACTIONS(1165), + [anon_sym_RPAREN] = ACTIONS(1165), + [anon_sym_DOLLAR] = ACTIONS(1165), + [anon_sym_error] = ACTIONS(1165), + [anon_sym_GT] = ACTIONS(1165), + [anon_sym_DASH_DASH] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_break] = ACTIONS(1165), + [anon_sym_continue] = ACTIONS(1165), + [anon_sym_for] = ACTIONS(1165), + [anon_sym_in] = ACTIONS(1165), + [anon_sym_loop] = ACTIONS(1165), + [anon_sym_while] = ACTIONS(1165), + [anon_sym_do] = ACTIONS(1165), + [anon_sym_if] = ACTIONS(1165), + [anon_sym_match] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(1165), + [anon_sym_RBRACE] = ACTIONS(1165), + [anon_sym_DOT_DOT] = ACTIONS(1165), + [anon_sym_try] = ACTIONS(1165), + [anon_sym_return] = ACTIONS(1165), + [anon_sym_source] = ACTIONS(1165), + [anon_sym_source_DASHenv] = ACTIONS(1165), + [anon_sym_register] = ACTIONS(1165), + [anon_sym_hide] = ACTIONS(1165), + [anon_sym_hide_DASHenv] = ACTIONS(1165), + [anon_sym_overlay] = ACTIONS(1165), + [anon_sym_as] = ACTIONS(1165), + [anon_sym_STAR] = ACTIONS(1165), + [anon_sym_where] = ACTIONS(1165), + [anon_sym_STAR_STAR] = ACTIONS(1165), + [anon_sym_PLUS_PLUS] = ACTIONS(1165), + [anon_sym_SLASH] = ACTIONS(1165), + [anon_sym_mod] = ACTIONS(1165), + [anon_sym_SLASH_SLASH] = ACTIONS(1165), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_bit_DASHshl] = ACTIONS(1165), + [anon_sym_bit_DASHshr] = ACTIONS(1165), + [anon_sym_EQ_EQ] = ACTIONS(1165), + [anon_sym_BANG_EQ] = ACTIONS(1165), + [anon_sym_LT2] = ACTIONS(1165), + [anon_sym_LT_EQ] = ACTIONS(1165), + [anon_sym_GT_EQ] = ACTIONS(1165), + [anon_sym_not_DASHin] = ACTIONS(1165), + [anon_sym_starts_DASHwith] = ACTIONS(1165), + [anon_sym_ends_DASHwith] = ACTIONS(1165), + [anon_sym_EQ_TILDE] = ACTIONS(1165), + [anon_sym_BANG_TILDE] = ACTIONS(1165), + [anon_sym_bit_DASHand] = ACTIONS(1165), + [anon_sym_bit_DASHxor] = ACTIONS(1165), + [anon_sym_bit_DASHor] = ACTIONS(1165), + [anon_sym_and] = ACTIONS(1165), + [anon_sym_xor] = ACTIONS(1165), + [anon_sym_or] = ACTIONS(1165), + [anon_sym_not] = ACTIONS(1165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1165), + [anon_sym_DOT_DOT_LT] = ACTIONS(1165), + [anon_sym_null] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1165), + [anon_sym_false] = ACTIONS(1165), + [aux_sym__val_number_decimal_token1] = ACTIONS(1165), + [aux_sym__val_number_decimal_token2] = ACTIONS(1165), + [anon_sym_DOT2] = ACTIONS(1165), + [aux_sym__val_number_decimal_token3] = ACTIONS(1165), + [aux_sym__val_number_token1] = ACTIONS(1165), + [aux_sym__val_number_token2] = ACTIONS(1165), + [aux_sym__val_number_token3] = ACTIONS(1165), + [aux_sym__val_number_token4] = ACTIONS(1165), + [aux_sym__val_number_token5] = ACTIONS(1165), + [aux_sym__val_number_token6] = ACTIONS(1165), + [anon_sym_0b] = ACTIONS(1165), + [anon_sym_0o] = ACTIONS(1165), + [anon_sym_0x] = ACTIONS(1165), + [sym_val_date] = ACTIONS(1165), + [anon_sym_DQUOTE] = ACTIONS(1165), + [sym__str_single_quotes] = ACTIONS(1165), + [sym__str_back_ticks] = ACTIONS(1165), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1165), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1165), + [anon_sym_CARET] = ACTIONS(1165), [anon_sym_POUND] = ACTIONS(113), }, [342] = { - [sym_cell_path] = STATE(468), - [sym_path] = STATE(361), [sym_comment] = STATE(342), - [ts_builtin_sym_end] = ACTIONS(1012), - [anon_sym_export] = ACTIONS(1010), - [anon_sym_alias] = ACTIONS(1010), - [anon_sym_let] = ACTIONS(1010), - [anon_sym_let_DASHenv] = ACTIONS(1010), - [anon_sym_mut] = ACTIONS(1010), - [anon_sym_const] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1010), - [sym_cmd_identifier] = ACTIONS(1010), - [anon_sym_LF] = ACTIONS(1012), - [anon_sym_def] = ACTIONS(1010), - [anon_sym_export_DASHenv] = ACTIONS(1010), - [anon_sym_extern] = ACTIONS(1010), - [anon_sym_module] = ACTIONS(1010), - [anon_sym_use] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(1010), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_error] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1010), - [anon_sym_continue] = ACTIONS(1010), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_in] = ACTIONS(1010), - [anon_sym_loop] = ACTIONS(1010), - [anon_sym_while] = ACTIONS(1010), - [anon_sym_do] = ACTIONS(1010), - [anon_sym_if] = ACTIONS(1010), - [anon_sym_match] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_DOT_DOT] = ACTIONS(1010), - [anon_sym_try] = ACTIONS(1010), - [anon_sym_return] = ACTIONS(1010), - [anon_sym_source] = ACTIONS(1010), - [anon_sym_source_DASHenv] = ACTIONS(1010), - [anon_sym_register] = ACTIONS(1010), - [anon_sym_hide] = ACTIONS(1010), - [anon_sym_hide_DASHenv] = ACTIONS(1010), - [anon_sym_overlay] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1010), - [anon_sym_where] = ACTIONS(1010), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_SLASH] = ACTIONS(1010), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT2] = ACTIONS(1010), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT_EQ] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_not] = ACTIONS(1010), - [anon_sym_DOT_DOT2] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(1166), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT] = ACTIONS(1010), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), - [anon_sym_null] = ACTIONS(1010), - [anon_sym_true] = ACTIONS(1010), - [anon_sym_false] = ACTIONS(1010), - [aux_sym__val_number_decimal_token1] = ACTIONS(1010), - [aux_sym__val_number_decimal_token2] = ACTIONS(1010), - [anon_sym_DOT2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = 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(1010), - [aux_sym__val_number_token5] = ACTIONS(1010), - [aux_sym__val_number_token6] = ACTIONS(1010), - [anon_sym_0b] = ACTIONS(1010), - [anon_sym_0o] = ACTIONS(1010), - [anon_sym_0x] = ACTIONS(1010), - [sym_val_date] = ACTIONS(1010), - [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_CARET] = ACTIONS(1010), + [anon_sym_export] = ACTIONS(1076), + [anon_sym_alias] = ACTIONS(1076), + [anon_sym_let] = ACTIONS(1076), + [anon_sym_let_DASHenv] = ACTIONS(1076), + [anon_sym_mut] = ACTIONS(1076), + [anon_sym_const] = ACTIONS(1076), + [anon_sym_SEMI] = ACTIONS(1076), + [sym_cmd_identifier] = ACTIONS(1076), + [anon_sym_LF] = ACTIONS(1169), + [anon_sym_def] = ACTIONS(1076), + [anon_sym_export_DASHenv] = ACTIONS(1076), + [anon_sym_extern] = ACTIONS(1076), + [anon_sym_module] = ACTIONS(1076), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_LBRACK] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(1076), + [anon_sym_RPAREN] = ACTIONS(1076), + [anon_sym_DOLLAR] = ACTIONS(1076), + [anon_sym_error] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_DASH_DASH] = ACTIONS(1076), + [anon_sym_DASH] = ACTIONS(1076), + [anon_sym_break] = ACTIONS(1076), + [anon_sym_continue] = ACTIONS(1076), + [anon_sym_for] = ACTIONS(1076), + [anon_sym_in] = ACTIONS(1076), + [anon_sym_loop] = ACTIONS(1076), + [anon_sym_while] = ACTIONS(1076), + [anon_sym_do] = ACTIONS(1076), + [anon_sym_if] = ACTIONS(1076), + [anon_sym_match] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1076), + [anon_sym_RBRACE] = ACTIONS(1076), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_try] = ACTIONS(1076), + [anon_sym_return] = ACTIONS(1076), + [anon_sym_source] = ACTIONS(1076), + [anon_sym_source_DASHenv] = ACTIONS(1076), + [anon_sym_register] = ACTIONS(1076), + [anon_sym_hide] = ACTIONS(1076), + [anon_sym_hide_DASHenv] = ACTIONS(1076), + [anon_sym_overlay] = ACTIONS(1076), + [anon_sym_as] = ACTIONS(1076), + [anon_sym_STAR] = ACTIONS(1076), + [anon_sym_where] = ACTIONS(1076), + [anon_sym_STAR_STAR] = ACTIONS(1076), + [anon_sym_PLUS_PLUS] = ACTIONS(1076), + [anon_sym_SLASH] = ACTIONS(1076), + [anon_sym_mod] = ACTIONS(1076), + [anon_sym_SLASH_SLASH] = ACTIONS(1076), + [anon_sym_PLUS] = ACTIONS(1076), + [anon_sym_bit_DASHshl] = ACTIONS(1076), + [anon_sym_bit_DASHshr] = ACTIONS(1076), + [anon_sym_EQ_EQ] = ACTIONS(1076), + [anon_sym_BANG_EQ] = ACTIONS(1076), + [anon_sym_LT2] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1076), + [anon_sym_GT_EQ] = ACTIONS(1076), + [anon_sym_not_DASHin] = ACTIONS(1076), + [anon_sym_starts_DASHwith] = ACTIONS(1076), + [anon_sym_ends_DASHwith] = ACTIONS(1076), + [anon_sym_EQ_TILDE] = ACTIONS(1076), + [anon_sym_BANG_TILDE] = ACTIONS(1076), + [anon_sym_bit_DASHand] = ACTIONS(1076), + [anon_sym_bit_DASHxor] = ACTIONS(1076), + [anon_sym_bit_DASHor] = ACTIONS(1076), + [anon_sym_and] = ACTIONS(1076), + [anon_sym_xor] = ACTIONS(1076), + [anon_sym_or] = ACTIONS(1076), + [anon_sym_not] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1076), + [anon_sym_DOT_DOT_LT] = ACTIONS(1076), + [anon_sym_null] = ACTIONS(1076), + [anon_sym_true] = ACTIONS(1076), + [anon_sym_false] = ACTIONS(1076), + [aux_sym__val_number_decimal_token1] = ACTIONS(1076), + [aux_sym__val_number_decimal_token2] = ACTIONS(1076), + [anon_sym_DOT2] = ACTIONS(1076), + [aux_sym__val_number_decimal_token3] = ACTIONS(1076), + [aux_sym__val_number_token1] = ACTIONS(1076), + [aux_sym__val_number_token2] = ACTIONS(1076), + [aux_sym__val_number_token3] = ACTIONS(1076), + [aux_sym__val_number_token4] = ACTIONS(1076), + [aux_sym__val_number_token5] = ACTIONS(1076), + [aux_sym__val_number_token6] = ACTIONS(1076), + [anon_sym_0b] = ACTIONS(1076), + [anon_sym_0o] = ACTIONS(1076), + [anon_sym_0x] = ACTIONS(1076), + [sym_val_date] = ACTIONS(1076), + [anon_sym_DQUOTE] = ACTIONS(1076), + [sym__str_single_quotes] = ACTIONS(1076), + [sym__str_back_ticks] = ACTIONS(1076), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1076), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1076), + [anon_sym_CARET] = ACTIONS(1076), [anon_sym_POUND] = ACTIONS(113), }, [343] = { [sym_comment] = STATE(343), - [anon_sym_export] = ACTIONS(1172), - [anon_sym_alias] = ACTIONS(1172), - [anon_sym_let] = ACTIONS(1172), - [anon_sym_let_DASHenv] = ACTIONS(1172), - [anon_sym_mut] = ACTIONS(1172), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(1172), - [sym_cmd_identifier] = ACTIONS(1172), - [anon_sym_LF] = ACTIONS(1174), - [anon_sym_def] = ACTIONS(1172), - [anon_sym_export_DASHenv] = ACTIONS(1172), - [anon_sym_extern] = ACTIONS(1172), - [anon_sym_module] = ACTIONS(1172), - [anon_sym_use] = ACTIONS(1172), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_LPAREN] = ACTIONS(1172), - [anon_sym_RPAREN] = ACTIONS(1172), - [anon_sym_DOLLAR] = ACTIONS(1172), - [anon_sym_error] = ACTIONS(1172), - [anon_sym_GT] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_DASH] = ACTIONS(1172), - [anon_sym_break] = ACTIONS(1172), - [anon_sym_continue] = ACTIONS(1172), - [anon_sym_for] = ACTIONS(1172), - [anon_sym_in] = ACTIONS(1172), - [anon_sym_loop] = ACTIONS(1172), - [anon_sym_while] = ACTIONS(1172), - [anon_sym_do] = ACTIONS(1172), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_match] = ACTIONS(1172), - [anon_sym_LBRACE] = ACTIONS(1172), - [anon_sym_RBRACE] = ACTIONS(1172), - [anon_sym_DOT_DOT] = ACTIONS(1172), - [anon_sym_try] = ACTIONS(1172), - [anon_sym_return] = ACTIONS(1172), - [anon_sym_source] = ACTIONS(1172), - [anon_sym_source_DASHenv] = ACTIONS(1172), - [anon_sym_register] = ACTIONS(1172), - [anon_sym_hide] = ACTIONS(1172), - [anon_sym_hide_DASHenv] = ACTIONS(1172), - [anon_sym_overlay] = ACTIONS(1172), - [anon_sym_as] = ACTIONS(1172), - [anon_sym_STAR] = ACTIONS(1172), - [anon_sym_where] = ACTIONS(1172), - [anon_sym_STAR_STAR] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_SLASH] = ACTIONS(1172), - [anon_sym_mod] = ACTIONS(1172), - [anon_sym_SLASH_SLASH] = ACTIONS(1172), - [anon_sym_PLUS] = ACTIONS(1172), - [anon_sym_bit_DASHshl] = ACTIONS(1172), - [anon_sym_bit_DASHshr] = ACTIONS(1172), - [anon_sym_EQ_EQ] = ACTIONS(1172), - [anon_sym_BANG_EQ] = ACTIONS(1172), - [anon_sym_LT2] = ACTIONS(1172), - [anon_sym_LT_EQ] = ACTIONS(1172), - [anon_sym_GT_EQ] = ACTIONS(1172), - [anon_sym_not_DASHin] = ACTIONS(1172), - [anon_sym_starts_DASHwith] = ACTIONS(1172), - [anon_sym_ends_DASHwith] = ACTIONS(1172), - [anon_sym_EQ_TILDE] = ACTIONS(1172), - [anon_sym_BANG_TILDE] = ACTIONS(1172), - [anon_sym_bit_DASHand] = ACTIONS(1172), - [anon_sym_bit_DASHxor] = ACTIONS(1172), - [anon_sym_bit_DASHor] = ACTIONS(1172), - [anon_sym_and] = ACTIONS(1172), - [anon_sym_xor] = ACTIONS(1172), - [anon_sym_or] = ACTIONS(1172), - [anon_sym_not] = ACTIONS(1172), - [anon_sym_DOT_DOT2] = ACTIONS(1172), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1172), - [anon_sym_DOT_DOT_LT] = ACTIONS(1172), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1174), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1174), - [anon_sym_null] = ACTIONS(1172), - [anon_sym_true] = ACTIONS(1172), - [anon_sym_false] = ACTIONS(1172), - [aux_sym__val_number_decimal_token1] = ACTIONS(1172), - [aux_sym__val_number_decimal_token2] = ACTIONS(1172), - [anon_sym_DOT2] = ACTIONS(1172), - [aux_sym__val_number_decimal_token3] = ACTIONS(1172), - [aux_sym__val_number_token1] = ACTIONS(1172), - [aux_sym__val_number_token2] = ACTIONS(1172), - [aux_sym__val_number_token3] = ACTIONS(1172), - [aux_sym__val_number_token4] = ACTIONS(1172), - [aux_sym__val_number_token5] = ACTIONS(1172), - [aux_sym__val_number_token6] = ACTIONS(1172), - [anon_sym_0b] = ACTIONS(1172), - [anon_sym_0o] = ACTIONS(1172), - [anon_sym_0x] = ACTIONS(1172), - [sym_val_date] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(1172), - [sym__str_single_quotes] = ACTIONS(1172), - [sym__str_back_ticks] = ACTIONS(1172), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1172), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1172), - [anon_sym_CARET] = ACTIONS(1172), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [anon_sym_SEMI] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_RPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_where] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, [344] = { - [sym_path] = STATE(397), [sym_comment] = STATE(344), - [aux_sym_cell_path_repeat1] = STATE(345), - [ts_builtin_sym_end] = ACTIONS(1008), - [anon_sym_export] = ACTIONS(1006), - [anon_sym_alias] = ACTIONS(1006), - [anon_sym_let] = ACTIONS(1006), - [anon_sym_let_DASHenv] = ACTIONS(1006), - [anon_sym_mut] = ACTIONS(1006), - [anon_sym_const] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1006), - [sym_cmd_identifier] = ACTIONS(1006), - [anon_sym_LF] = ACTIONS(1008), - [anon_sym_def] = ACTIONS(1006), - [anon_sym_export_DASHenv] = ACTIONS(1006), - [anon_sym_extern] = ACTIONS(1006), - [anon_sym_module] = ACTIONS(1006), - [anon_sym_use] = ACTIONS(1006), - [anon_sym_LBRACK] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_error] = ACTIONS(1006), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_break] = ACTIONS(1006), - [anon_sym_continue] = ACTIONS(1006), - [anon_sym_for] = ACTIONS(1006), - [anon_sym_in] = ACTIONS(1006), - [anon_sym_loop] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(1006), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_match] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_try] = ACTIONS(1006), - [anon_sym_return] = ACTIONS(1006), - [anon_sym_source] = ACTIONS(1006), - [anon_sym_source_DASHenv] = ACTIONS(1006), - [anon_sym_register] = ACTIONS(1006), - [anon_sym_hide] = ACTIONS(1006), - [anon_sym_hide_DASHenv] = ACTIONS(1006), - [anon_sym_overlay] = ACTIONS(1006), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_where] = ACTIONS(1006), - [anon_sym_STAR_STAR] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_mod] = ACTIONS(1006), - [anon_sym_SLASH_SLASH] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_bit_DASHshl] = ACTIONS(1006), - [anon_sym_bit_DASHshr] = ACTIONS(1006), - [anon_sym_EQ_EQ] = ACTIONS(1006), - [anon_sym_BANG_EQ] = ACTIONS(1006), - [anon_sym_LT2] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1006), - [anon_sym_GT_EQ] = ACTIONS(1006), - [anon_sym_not_DASHin] = ACTIONS(1006), - [anon_sym_starts_DASHwith] = ACTIONS(1006), - [anon_sym_ends_DASHwith] = ACTIONS(1006), - [anon_sym_EQ_TILDE] = ACTIONS(1006), - [anon_sym_BANG_TILDE] = ACTIONS(1006), - [anon_sym_bit_DASHand] = ACTIONS(1006), - [anon_sym_bit_DASHxor] = ACTIONS(1006), - [anon_sym_bit_DASHor] = ACTIONS(1006), - [anon_sym_and] = ACTIONS(1006), - [anon_sym_xor] = ACTIONS(1006), - [anon_sym_or] = ACTIONS(1006), - [anon_sym_not] = ACTIONS(1006), - [anon_sym_DOT_DOT2] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1166), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), - [anon_sym_null] = ACTIONS(1006), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1006), - [anon_sym_DOT2] = ACTIONS(1006), - [aux_sym__val_number_decimal_token3] = ACTIONS(1006), - [aux_sym__val_number_token1] = ACTIONS(1006), - [aux_sym__val_number_token2] = ACTIONS(1006), - [aux_sym__val_number_token3] = ACTIONS(1006), - [aux_sym__val_number_token4] = ACTIONS(1006), - [aux_sym__val_number_token5] = ACTIONS(1006), - [aux_sym__val_number_token6] = ACTIONS(1006), - [anon_sym_0b] = ACTIONS(1006), - [anon_sym_0o] = ACTIONS(1006), - [anon_sym_0x] = ACTIONS(1006), - [sym_val_date] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym__str_single_quotes] = ACTIONS(1006), - [sym__str_back_ticks] = ACTIONS(1006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1006), - [anon_sym_CARET] = ACTIONS(1006), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [anon_sym_SEMI] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_RPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_where] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, [345] = { - [sym_path] = STATE(397), [sym_comment] = STATE(345), - [aux_sym_cell_path_repeat1] = STATE(345), - [ts_builtin_sym_end] = ACTIONS(1001), - [anon_sym_export] = ACTIONS(999), - [anon_sym_alias] = ACTIONS(999), - [anon_sym_let] = ACTIONS(999), - [anon_sym_let_DASHenv] = ACTIONS(999), - [anon_sym_mut] = ACTIONS(999), - [anon_sym_const] = ACTIONS(999), - [anon_sym_SEMI] = ACTIONS(999), - [sym_cmd_identifier] = ACTIONS(999), - [anon_sym_LF] = ACTIONS(1001), - [anon_sym_def] = ACTIONS(999), - [anon_sym_export_DASHenv] = ACTIONS(999), - [anon_sym_extern] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_use] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_error] = ACTIONS(999), - [anon_sym_GT] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_break] = ACTIONS(999), - [anon_sym_continue] = ACTIONS(999), - [anon_sym_for] = ACTIONS(999), - [anon_sym_in] = ACTIONS(999), - [anon_sym_loop] = ACTIONS(999), - [anon_sym_while] = ACTIONS(999), - [anon_sym_do] = ACTIONS(999), - [anon_sym_if] = ACTIONS(999), - [anon_sym_match] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(999), - [anon_sym_DOT_DOT] = ACTIONS(999), - [anon_sym_try] = ACTIONS(999), - [anon_sym_return] = ACTIONS(999), - [anon_sym_source] = ACTIONS(999), - [anon_sym_source_DASHenv] = ACTIONS(999), - [anon_sym_register] = ACTIONS(999), - [anon_sym_hide] = ACTIONS(999), - [anon_sym_hide_DASHenv] = ACTIONS(999), - [anon_sym_overlay] = ACTIONS(999), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_where] = ACTIONS(999), - [anon_sym_STAR_STAR] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(999), - [anon_sym_mod] = ACTIONS(999), - [anon_sym_SLASH_SLASH] = ACTIONS(999), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_bit_DASHshl] = ACTIONS(999), - [anon_sym_bit_DASHshr] = ACTIONS(999), - [anon_sym_EQ_EQ] = ACTIONS(999), - [anon_sym_BANG_EQ] = ACTIONS(999), - [anon_sym_LT2] = ACTIONS(999), - [anon_sym_LT_EQ] = ACTIONS(999), - [anon_sym_GT_EQ] = ACTIONS(999), - [anon_sym_not_DASHin] = ACTIONS(999), - [anon_sym_starts_DASHwith] = ACTIONS(999), - [anon_sym_ends_DASHwith] = ACTIONS(999), - [anon_sym_EQ_TILDE] = ACTIONS(999), - [anon_sym_BANG_TILDE] = ACTIONS(999), - [anon_sym_bit_DASHand] = ACTIONS(999), - [anon_sym_bit_DASHxor] = ACTIONS(999), - [anon_sym_bit_DASHor] = ACTIONS(999), - [anon_sym_and] = ACTIONS(999), - [anon_sym_xor] = ACTIONS(999), - [anon_sym_or] = ACTIONS(999), - [anon_sym_not] = ACTIONS(999), - [anon_sym_DOT_DOT2] = ACTIONS(999), - [anon_sym_DOT] = ACTIONS(1176), - [anon_sym_DOT_DOT_EQ] = ACTIONS(999), - [anon_sym_DOT_DOT_LT] = ACTIONS(999), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1001), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1001), - [anon_sym_null] = ACTIONS(999), - [anon_sym_true] = ACTIONS(999), - [anon_sym_false] = ACTIONS(999), - [aux_sym__val_number_decimal_token1] = ACTIONS(999), - [aux_sym__val_number_decimal_token2] = ACTIONS(999), - [anon_sym_DOT2] = ACTIONS(999), - [aux_sym__val_number_decimal_token3] = ACTIONS(999), - [aux_sym__val_number_token1] = ACTIONS(999), - [aux_sym__val_number_token2] = ACTIONS(999), - [aux_sym__val_number_token3] = ACTIONS(999), - [aux_sym__val_number_token4] = ACTIONS(999), - [aux_sym__val_number_token5] = ACTIONS(999), - [aux_sym__val_number_token6] = ACTIONS(999), - [anon_sym_0b] = ACTIONS(999), - [anon_sym_0o] = ACTIONS(999), - [anon_sym_0x] = ACTIONS(999), - [sym_val_date] = ACTIONS(999), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym__str_single_quotes] = ACTIONS(999), - [sym__str_back_ticks] = ACTIONS(999), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(999), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(999), - [anon_sym_CARET] = ACTIONS(999), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [anon_sym_SEMI] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_RPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_where] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, [346] = { - [sym_cell_path] = STATE(483), - [sym_path] = STATE(349), [sym_comment] = STATE(346), - [anon_sym_export] = ACTIONS(1179), - [anon_sym_alias] = ACTIONS(1179), - [anon_sym_let] = ACTIONS(1179), - [anon_sym_let_DASHenv] = ACTIONS(1179), - [anon_sym_mut] = ACTIONS(1179), - [anon_sym_const] = ACTIONS(1179), - [anon_sym_SEMI] = ACTIONS(1179), - [sym_cmd_identifier] = ACTIONS(1179), - [anon_sym_LF] = ACTIONS(1181), - [anon_sym_def] = ACTIONS(1179), - [anon_sym_export_DASHenv] = ACTIONS(1179), - [anon_sym_extern] = ACTIONS(1179), - [anon_sym_module] = ACTIONS(1179), - [anon_sym_use] = ACTIONS(1179), - [anon_sym_LBRACK] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1179), - [anon_sym_RPAREN] = ACTIONS(1179), - [anon_sym_DOLLAR] = ACTIONS(1179), - [anon_sym_error] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1179), - [anon_sym_DASH] = ACTIONS(1179), - [anon_sym_break] = ACTIONS(1179), - [anon_sym_continue] = ACTIONS(1179), - [anon_sym_for] = ACTIONS(1179), - [anon_sym_in] = ACTIONS(1179), - [anon_sym_loop] = ACTIONS(1179), - [anon_sym_while] = ACTIONS(1179), - [anon_sym_do] = ACTIONS(1179), - [anon_sym_if] = ACTIONS(1179), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [anon_sym_SEMI] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_RPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_where] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(113), + }, + [347] = { + [sym_comment] = STATE(347), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [anon_sym_SEMI] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_RPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_where] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(113), + }, + [348] = { + [sym_comment] = STATE(348), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [anon_sym_SEMI] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_RPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_where] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(113), + }, + [349] = { + [sym_comment] = STATE(349), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [anon_sym_SEMI] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_RPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_where] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(113), + }, + [350] = { + [sym_comment] = STATE(350), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [anon_sym_SEMI] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_RPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_where] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(113), + }, + [351] = { + [sym_comment] = STATE(351), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [anon_sym_SEMI] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_RPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_where] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(113), + }, + [352] = { + [sym_comment] = STATE(352), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [anon_sym_SEMI] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_RPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_where] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(113), + }, + [353] = { + [sym_comment] = STATE(353), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [anon_sym_SEMI] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_RPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_where] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(113), + }, + [354] = { + [sym_comment] = STATE(354), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [anon_sym_SEMI] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_RPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_where] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(113), + }, + [355] = { + [sym_comment] = STATE(355), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [anon_sym_SEMI] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_RPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_where] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(113), + }, + [356] = { + [sym_comment] = STATE(356), + [anon_sym_export] = ACTIONS(1175), + [anon_sym_alias] = ACTIONS(1175), + [anon_sym_let] = ACTIONS(1175), + [anon_sym_let_DASHenv] = ACTIONS(1175), + [anon_sym_mut] = ACTIONS(1175), + [anon_sym_const] = ACTIONS(1175), + [anon_sym_SEMI] = ACTIONS(1175), + [sym_cmd_identifier] = ACTIONS(1175), + [anon_sym_LF] = ACTIONS(1177), + [anon_sym_def] = ACTIONS(1175), + [anon_sym_export_DASHenv] = ACTIONS(1175), + [anon_sym_extern] = ACTIONS(1175), + [anon_sym_module] = ACTIONS(1175), + [anon_sym_use] = ACTIONS(1175), + [anon_sym_LBRACK] = ACTIONS(1175), + [anon_sym_LPAREN] = ACTIONS(1175), + [anon_sym_RPAREN] = ACTIONS(1175), + [anon_sym_DOLLAR] = ACTIONS(1175), + [anon_sym_error] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [anon_sym_DASH_DASH] = ACTIONS(1175), + [anon_sym_DASH] = ACTIONS(1175), + [anon_sym_break] = ACTIONS(1175), + [anon_sym_continue] = ACTIONS(1175), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_in] = ACTIONS(1175), + [anon_sym_loop] = ACTIONS(1175), + [anon_sym_while] = ACTIONS(1175), + [anon_sym_do] = ACTIONS(1175), + [anon_sym_if] = ACTIONS(1175), + [anon_sym_match] = ACTIONS(1175), + [anon_sym_LBRACE] = ACTIONS(1175), + [anon_sym_RBRACE] = ACTIONS(1175), + [anon_sym_DOT_DOT] = ACTIONS(1175), + [anon_sym_try] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(1175), + [anon_sym_source] = ACTIONS(1175), + [anon_sym_source_DASHenv] = ACTIONS(1175), + [anon_sym_register] = ACTIONS(1175), + [anon_sym_hide] = ACTIONS(1175), + [anon_sym_hide_DASHenv] = ACTIONS(1175), + [anon_sym_overlay] = ACTIONS(1175), + [anon_sym_as] = ACTIONS(1175), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_where] = ACTIONS(1175), + [anon_sym_STAR_STAR] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_mod] = ACTIONS(1175), + [anon_sym_SLASH_SLASH] = ACTIONS(1175), + [anon_sym_PLUS] = ACTIONS(1175), + [anon_sym_bit_DASHshl] = ACTIONS(1175), + [anon_sym_bit_DASHshr] = ACTIONS(1175), + [anon_sym_EQ_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_LT2] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_not_DASHin] = ACTIONS(1175), + [anon_sym_starts_DASHwith] = ACTIONS(1175), + [anon_sym_ends_DASHwith] = ACTIONS(1175), + [anon_sym_EQ_TILDE] = ACTIONS(1175), + [anon_sym_BANG_TILDE] = ACTIONS(1175), + [anon_sym_bit_DASHand] = ACTIONS(1175), + [anon_sym_bit_DASHxor] = ACTIONS(1175), + [anon_sym_bit_DASHor] = ACTIONS(1175), + [anon_sym_and] = ACTIONS(1175), + [anon_sym_xor] = ACTIONS(1175), + [anon_sym_or] = ACTIONS(1175), + [anon_sym_not] = ACTIONS(1175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1175), + [anon_sym_DOT_DOT_LT] = ACTIONS(1175), + [anon_sym_null] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1175), + [anon_sym_false] = ACTIONS(1175), + [aux_sym__val_number_decimal_token1] = ACTIONS(1175), + [aux_sym__val_number_decimal_token2] = ACTIONS(1175), + [anon_sym_DOT2] = ACTIONS(1175), + [aux_sym__val_number_decimal_token3] = ACTIONS(1175), + [aux_sym__val_number_token1] = ACTIONS(1175), + [aux_sym__val_number_token2] = ACTIONS(1175), + [aux_sym__val_number_token3] = ACTIONS(1175), + [aux_sym__val_number_token4] = ACTIONS(1175), + [aux_sym__val_number_token5] = ACTIONS(1175), + [aux_sym__val_number_token6] = ACTIONS(1175), + [anon_sym_0b] = ACTIONS(1175), + [anon_sym_0o] = ACTIONS(1175), + [anon_sym_0x] = ACTIONS(1175), + [sym_val_date] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1175), + [sym__str_single_quotes] = ACTIONS(1175), + [sym__str_back_ticks] = ACTIONS(1175), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1175), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1175), + [anon_sym_CARET] = ACTIONS(1175), + [anon_sym_POUND] = ACTIONS(113), + }, + [357] = { + [sym_comment] = STATE(357), + [anon_sym_export] = ACTIONS(1072), + [anon_sym_alias] = ACTIONS(1072), + [anon_sym_let] = ACTIONS(1072), + [anon_sym_let_DASHenv] = ACTIONS(1072), + [anon_sym_mut] = ACTIONS(1072), + [anon_sym_const] = ACTIONS(1072), + [anon_sym_SEMI] = ACTIONS(1072), + [sym_cmd_identifier] = ACTIONS(1072), + [anon_sym_LF] = ACTIONS(1074), + [anon_sym_def] = ACTIONS(1072), + [anon_sym_export_DASHenv] = ACTIONS(1072), + [anon_sym_extern] = ACTIONS(1072), + [anon_sym_module] = ACTIONS(1072), + [anon_sym_use] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1072), + [anon_sym_LPAREN] = ACTIONS(1072), + [anon_sym_RPAREN] = ACTIONS(1072), + [anon_sym_DOLLAR] = ACTIONS(1072), + [anon_sym_error] = ACTIONS(1072), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_DASH_DASH] = ACTIONS(1072), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_break] = ACTIONS(1072), + [anon_sym_continue] = ACTIONS(1072), + [anon_sym_for] = ACTIONS(1072), + [anon_sym_in] = ACTIONS(1076), + [anon_sym_loop] = ACTIONS(1072), + [anon_sym_while] = ACTIONS(1072), + [anon_sym_do] = ACTIONS(1072), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_match] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1072), + [anon_sym_DOT_DOT] = ACTIONS(1072), + [anon_sym_try] = ACTIONS(1072), + [anon_sym_return] = ACTIONS(1072), + [anon_sym_source] = ACTIONS(1072), + [anon_sym_source_DASHenv] = ACTIONS(1072), + [anon_sym_register] = ACTIONS(1072), + [anon_sym_hide] = ACTIONS(1072), + [anon_sym_hide_DASHenv] = ACTIONS(1072), + [anon_sym_overlay] = ACTIONS(1072), + [anon_sym_as] = ACTIONS(1072), + [anon_sym_STAR] = ACTIONS(1076), + [anon_sym_where] = ACTIONS(1072), + [anon_sym_STAR_STAR] = ACTIONS(1076), + [anon_sym_PLUS_PLUS] = ACTIONS(1076), + [anon_sym_SLASH] = ACTIONS(1076), + [anon_sym_mod] = ACTIONS(1076), + [anon_sym_SLASH_SLASH] = ACTIONS(1076), + [anon_sym_PLUS] = ACTIONS(1076), + [anon_sym_bit_DASHshl] = ACTIONS(1076), + [anon_sym_bit_DASHshr] = ACTIONS(1076), + [anon_sym_EQ_EQ] = ACTIONS(1076), + [anon_sym_BANG_EQ] = ACTIONS(1076), + [anon_sym_LT2] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1076), + [anon_sym_GT_EQ] = ACTIONS(1076), + [anon_sym_not_DASHin] = ACTIONS(1076), + [anon_sym_starts_DASHwith] = ACTIONS(1076), + [anon_sym_ends_DASHwith] = ACTIONS(1076), + [anon_sym_EQ_TILDE] = ACTIONS(1076), + [anon_sym_BANG_TILDE] = ACTIONS(1076), + [anon_sym_bit_DASHand] = ACTIONS(1076), + [anon_sym_bit_DASHxor] = ACTIONS(1076), + [anon_sym_bit_DASHor] = ACTIONS(1076), + [anon_sym_and] = ACTIONS(1076), + [anon_sym_xor] = ACTIONS(1076), + [anon_sym_or] = ACTIONS(1076), + [anon_sym_not] = ACTIONS(1072), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1072), + [anon_sym_DOT_DOT_LT] = ACTIONS(1072), + [anon_sym_null] = ACTIONS(1072), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [aux_sym__val_number_decimal_token1] = ACTIONS(1072), + [aux_sym__val_number_decimal_token2] = ACTIONS(1072), + [anon_sym_DOT2] = ACTIONS(1072), + [aux_sym__val_number_decimal_token3] = ACTIONS(1072), + [aux_sym__val_number_token1] = ACTIONS(1072), + [aux_sym__val_number_token2] = ACTIONS(1072), + [aux_sym__val_number_token3] = ACTIONS(1072), + [aux_sym__val_number_token4] = ACTIONS(1072), + [aux_sym__val_number_token5] = ACTIONS(1072), + [aux_sym__val_number_token6] = ACTIONS(1072), + [anon_sym_0b] = ACTIONS(1072), + [anon_sym_0o] = ACTIONS(1072), + [anon_sym_0x] = ACTIONS(1072), + [sym_val_date] = ACTIONS(1072), + [anon_sym_DQUOTE] = ACTIONS(1072), + [sym__str_single_quotes] = ACTIONS(1072), + [sym__str_back_ticks] = ACTIONS(1072), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1072), + [anon_sym_CARET] = ACTIONS(1072), + [anon_sym_POUND] = ACTIONS(113), + }, + [358] = { + [sym_comment] = STATE(358), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_alias] = ACTIONS(1061), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_let_DASHenv] = ACTIONS(1061), + [anon_sym_mut] = ACTIONS(1061), + [anon_sym_const] = ACTIONS(1061), + [anon_sym_SEMI] = ACTIONS(1061), + [sym_cmd_identifier] = ACTIONS(1061), + [anon_sym_LF] = ACTIONS(1063), + [anon_sym_def] = ACTIONS(1061), + [anon_sym_export_DASHenv] = ACTIONS(1061), + [anon_sym_extern] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_use] = ACTIONS(1061), + [anon_sym_LBRACK] = ACTIONS(1061), + [anon_sym_LPAREN] = ACTIONS(1061), + [anon_sym_RPAREN] = ACTIONS(1061), + [anon_sym_DOLLAR] = ACTIONS(1061), + [anon_sym_error] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_DASH_DASH] = ACTIONS(1061), + [anon_sym_DASH] = ACTIONS(1061), + [anon_sym_break] = ACTIONS(1061), + [anon_sym_continue] = ACTIONS(1061), + [anon_sym_for] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1061), + [anon_sym_loop] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(1061), + [anon_sym_do] = ACTIONS(1061), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_match] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(1061), + [anon_sym_RBRACE] = ACTIONS(1061), + [anon_sym_DOT_DOT] = ACTIONS(1061), + [anon_sym_try] = ACTIONS(1061), + [anon_sym_return] = ACTIONS(1061), + [anon_sym_source] = ACTIONS(1061), + [anon_sym_source_DASHenv] = ACTIONS(1061), + [anon_sym_register] = ACTIONS(1061), + [anon_sym_hide] = ACTIONS(1061), + [anon_sym_hide_DASHenv] = ACTIONS(1061), + [anon_sym_overlay] = ACTIONS(1061), + [anon_sym_as] = ACTIONS(1061), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_where] = ACTIONS(1061), + [anon_sym_STAR_STAR] = ACTIONS(1061), + [anon_sym_PLUS_PLUS] = ACTIONS(1061), + [anon_sym_SLASH] = ACTIONS(1061), + [anon_sym_mod] = ACTIONS(1061), + [anon_sym_SLASH_SLASH] = ACTIONS(1061), + [anon_sym_PLUS] = ACTIONS(1061), + [anon_sym_bit_DASHshl] = ACTIONS(1061), + [anon_sym_bit_DASHshr] = ACTIONS(1061), + [anon_sym_EQ_EQ] = ACTIONS(1061), + [anon_sym_BANG_EQ] = ACTIONS(1061), + [anon_sym_LT2] = ACTIONS(1061), + [anon_sym_LT_EQ] = ACTIONS(1061), + [anon_sym_GT_EQ] = ACTIONS(1061), + [anon_sym_not_DASHin] = ACTIONS(1061), + [anon_sym_starts_DASHwith] = ACTIONS(1061), + [anon_sym_ends_DASHwith] = ACTIONS(1061), + [anon_sym_EQ_TILDE] = ACTIONS(1061), + [anon_sym_BANG_TILDE] = ACTIONS(1061), + [anon_sym_bit_DASHand] = ACTIONS(1061), + [anon_sym_bit_DASHxor] = ACTIONS(1061), + [anon_sym_bit_DASHor] = ACTIONS(1061), + [anon_sym_and] = ACTIONS(1061), + [anon_sym_xor] = ACTIONS(1061), + [anon_sym_or] = ACTIONS(1061), + [anon_sym_not] = ACTIONS(1061), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1061), + [anon_sym_DOT_DOT_LT] = ACTIONS(1061), + [anon_sym_null] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1061), + [anon_sym_false] = ACTIONS(1061), + [aux_sym__val_number_decimal_token1] = ACTIONS(1061), + [aux_sym__val_number_decimal_token2] = ACTIONS(1061), + [anon_sym_DOT2] = ACTIONS(1061), + [aux_sym__val_number_decimal_token3] = ACTIONS(1061), + [aux_sym__val_number_token1] = ACTIONS(1061), + [aux_sym__val_number_token2] = ACTIONS(1061), + [aux_sym__val_number_token3] = ACTIONS(1061), + [aux_sym__val_number_token4] = ACTIONS(1061), + [aux_sym__val_number_token5] = ACTIONS(1061), + [aux_sym__val_number_token6] = ACTIONS(1061), + [anon_sym_0b] = ACTIONS(1061), + [anon_sym_0o] = ACTIONS(1061), + [anon_sym_0x] = ACTIONS(1061), + [sym_val_date] = ACTIONS(1061), + [anon_sym_DQUOTE] = ACTIONS(1061), + [sym__str_single_quotes] = ACTIONS(1061), + [sym__str_back_ticks] = ACTIONS(1061), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1061), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1061), + [anon_sym_CARET] = ACTIONS(1061), + [anon_sym_POUND] = ACTIONS(113), + }, + [359] = { + [sym_comment] = STATE(359), + [anon_sym_export] = ACTIONS(1179), + [anon_sym_alias] = ACTIONS(1179), + [anon_sym_let] = ACTIONS(1179), + [anon_sym_let_DASHenv] = ACTIONS(1179), + [anon_sym_mut] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1179), + [sym_cmd_identifier] = ACTIONS(1179), + [anon_sym_LF] = ACTIONS(1181), + [anon_sym_def] = ACTIONS(1179), + [anon_sym_export_DASHenv] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_use] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_RPAREN] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_error] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1183), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1179), + [anon_sym_loop] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), [anon_sym_match] = ACTIONS(1179), [anon_sym_LBRACE] = ACTIONS(1179), [anon_sym_RBRACE] = ACTIONS(1179), @@ -134326,14 +132709,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(1179), [anon_sym_overlay] = ACTIONS(1179), [anon_sym_as] = ACTIONS(1179), - [anon_sym_STAR] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1187), [anon_sym_where] = ACTIONS(1179), - [anon_sym_STAR_STAR] = ACTIONS(1179), - [anon_sym_PLUS_PLUS] = ACTIONS(1179), - [anon_sym_SLASH] = ACTIONS(1179), - [anon_sym_mod] = ACTIONS(1179), - [anon_sym_SLASH_SLASH] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_STAR_STAR] = ACTIONS(1189), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_SLASH] = ACTIONS(1187), + [anon_sym_mod] = ACTIONS(1187), + [anon_sym_SLASH_SLASH] = ACTIONS(1187), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_bit_DASHshl] = ACTIONS(1191), + [anon_sym_bit_DASHshr] = ACTIONS(1191), + [anon_sym_EQ_EQ] = ACTIONS(1183), + [anon_sym_BANG_EQ] = ACTIONS(1183), + [anon_sym_LT2] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1183), + [anon_sym_GT_EQ] = ACTIONS(1183), + [anon_sym_not_DASHin] = ACTIONS(1179), + [anon_sym_starts_DASHwith] = ACTIONS(1179), + [anon_sym_ends_DASHwith] = ACTIONS(1179), + [anon_sym_EQ_TILDE] = ACTIONS(1179), + [anon_sym_BANG_TILDE] = ACTIONS(1179), + [anon_sym_bit_DASHand] = ACTIONS(1179), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_not] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1179), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), + [anon_sym_CARET] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(113), + }, + [360] = { + [sym_comment] = STATE(360), + [anon_sym_export] = ACTIONS(1179), + [anon_sym_alias] = ACTIONS(1179), + [anon_sym_let] = ACTIONS(1179), + [anon_sym_let_DASHenv] = ACTIONS(1179), + [anon_sym_mut] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1179), + [sym_cmd_identifier] = ACTIONS(1179), + [anon_sym_LF] = ACTIONS(1181), + [anon_sym_def] = ACTIONS(1179), + [anon_sym_export_DASHenv] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_use] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_RPAREN] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_error] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1179), + [anon_sym_loop] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_source] = ACTIONS(1179), + [anon_sym_source_DASHenv] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), + [anon_sym_hide_DASHenv] = ACTIONS(1179), + [anon_sym_overlay] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_where] = ACTIONS(1179), + [anon_sym_STAR_STAR] = ACTIONS(1189), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_SLASH] = ACTIONS(1187), + [anon_sym_mod] = ACTIONS(1187), + [anon_sym_SLASH_SLASH] = ACTIONS(1187), + [anon_sym_PLUS] = ACTIONS(1185), [anon_sym_bit_DASHshl] = ACTIONS(1179), [anon_sym_bit_DASHshr] = ACTIONS(1179), [anon_sym_EQ_EQ] = ACTIONS(1179), @@ -134353,7 +132835,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(1179), [anon_sym_or] = ACTIONS(1179), [anon_sym_not] = ACTIONS(1179), - [anon_sym_DOT] = ACTIONS(1152), [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), [anon_sym_DOT_DOT_LT] = ACTIONS(1179), [anon_sym_null] = ACTIONS(1179), @@ -134381,2248 +132862,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, - [347] = { - [sym_cell_path] = STATE(519), - [sym_path] = STATE(349), - [sym_comment] = STATE(347), - [anon_sym_export] = ACTIONS(995), - [anon_sym_alias] = ACTIONS(995), - [anon_sym_let] = ACTIONS(995), - [anon_sym_let_DASHenv] = ACTIONS(995), - [anon_sym_mut] = ACTIONS(995), - [anon_sym_const] = ACTIONS(995), - [anon_sym_SEMI] = ACTIONS(995), - [sym_cmd_identifier] = ACTIONS(995), - [anon_sym_LF] = ACTIONS(997), - [anon_sym_def] = ACTIONS(995), - [anon_sym_export_DASHenv] = ACTIONS(995), - [anon_sym_extern] = ACTIONS(995), - [anon_sym_module] = ACTIONS(995), - [anon_sym_use] = ACTIONS(995), - [anon_sym_LBRACK] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_RPAREN] = ACTIONS(995), - [anon_sym_DOLLAR] = ACTIONS(995), - [anon_sym_error] = ACTIONS(995), - [anon_sym_GT] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_break] = ACTIONS(995), - [anon_sym_continue] = ACTIONS(995), - [anon_sym_for] = ACTIONS(995), - [anon_sym_in] = ACTIONS(995), - [anon_sym_loop] = ACTIONS(995), - [anon_sym_while] = ACTIONS(995), - [anon_sym_do] = ACTIONS(995), - [anon_sym_if] = ACTIONS(995), - [anon_sym_match] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_RBRACE] = ACTIONS(995), - [anon_sym_DOT_DOT] = ACTIONS(995), - [anon_sym_try] = ACTIONS(995), - [anon_sym_return] = ACTIONS(995), - [anon_sym_source] = ACTIONS(995), - [anon_sym_source_DASHenv] = ACTIONS(995), - [anon_sym_register] = ACTIONS(995), - [anon_sym_hide] = ACTIONS(995), - [anon_sym_hide_DASHenv] = ACTIONS(995), - [anon_sym_overlay] = ACTIONS(995), - [anon_sym_as] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_where] = ACTIONS(995), - [anon_sym_STAR_STAR] = ACTIONS(995), - [anon_sym_PLUS_PLUS] = ACTIONS(995), - [anon_sym_SLASH] = ACTIONS(995), - [anon_sym_mod] = ACTIONS(995), - [anon_sym_SLASH_SLASH] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_bit_DASHshl] = ACTIONS(995), - [anon_sym_bit_DASHshr] = ACTIONS(995), - [anon_sym_EQ_EQ] = ACTIONS(995), - [anon_sym_BANG_EQ] = ACTIONS(995), - [anon_sym_LT2] = ACTIONS(995), - [anon_sym_LT_EQ] = ACTIONS(995), - [anon_sym_GT_EQ] = ACTIONS(995), - [anon_sym_not_DASHin] = ACTIONS(995), - [anon_sym_starts_DASHwith] = ACTIONS(995), - [anon_sym_ends_DASHwith] = ACTIONS(995), - [anon_sym_EQ_TILDE] = ACTIONS(995), - [anon_sym_BANG_TILDE] = ACTIONS(995), - [anon_sym_bit_DASHand] = ACTIONS(995), - [anon_sym_bit_DASHxor] = ACTIONS(995), - [anon_sym_bit_DASHor] = ACTIONS(995), - [anon_sym_and] = ACTIONS(995), - [anon_sym_xor] = ACTIONS(995), - [anon_sym_or] = ACTIONS(995), - [anon_sym_not] = ACTIONS(995), - [anon_sym_DOT] = ACTIONS(1152), - [anon_sym_DOT_DOT_EQ] = ACTIONS(995), - [anon_sym_DOT_DOT_LT] = ACTIONS(995), - [anon_sym_null] = ACTIONS(995), - [anon_sym_true] = ACTIONS(995), - [anon_sym_false] = ACTIONS(995), - [aux_sym__val_number_decimal_token1] = ACTIONS(995), - [aux_sym__val_number_decimal_token2] = ACTIONS(995), - [anon_sym_DOT2] = ACTIONS(995), - [aux_sym__val_number_decimal_token3] = ACTIONS(995), - [aux_sym__val_number_token1] = ACTIONS(995), - [aux_sym__val_number_token2] = ACTIONS(995), - [aux_sym__val_number_token3] = ACTIONS(995), - [aux_sym__val_number_token4] = ACTIONS(995), - [aux_sym__val_number_token5] = ACTIONS(995), - [aux_sym__val_number_token6] = ACTIONS(995), - [anon_sym_0b] = ACTIONS(995), - [anon_sym_0o] = ACTIONS(995), - [anon_sym_0x] = ACTIONS(995), - [sym_val_date] = ACTIONS(995), - [anon_sym_DQUOTE] = ACTIONS(995), - [sym__str_single_quotes] = ACTIONS(995), - [sym__str_back_ticks] = ACTIONS(995), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(995), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(995), - [anon_sym_CARET] = ACTIONS(995), - [anon_sym_POUND] = ACTIONS(113), - }, - [348] = { - [sym_cell_path] = STATE(470), - [sym_path] = STATE(349), - [sym_comment] = STATE(348), - [anon_sym_export] = ACTIONS(1010), - [anon_sym_alias] = ACTIONS(1010), - [anon_sym_let] = ACTIONS(1010), - [anon_sym_let_DASHenv] = ACTIONS(1010), - [anon_sym_mut] = ACTIONS(1010), - [anon_sym_const] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1010), - [sym_cmd_identifier] = ACTIONS(1010), - [anon_sym_LF] = ACTIONS(1012), - [anon_sym_def] = ACTIONS(1010), - [anon_sym_export_DASHenv] = ACTIONS(1010), - [anon_sym_extern] = ACTIONS(1010), - [anon_sym_module] = ACTIONS(1010), - [anon_sym_use] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(1010), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_RPAREN] = ACTIONS(1010), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_error] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1010), - [anon_sym_DASH_DASH] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1010), - [anon_sym_continue] = ACTIONS(1010), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_in] = ACTIONS(1010), - [anon_sym_loop] = ACTIONS(1010), - [anon_sym_while] = ACTIONS(1010), - [anon_sym_do] = ACTIONS(1010), - [anon_sym_if] = ACTIONS(1010), - [anon_sym_match] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_RBRACE] = ACTIONS(1010), - [anon_sym_DOT_DOT] = ACTIONS(1010), - [anon_sym_try] = ACTIONS(1010), - [anon_sym_return] = ACTIONS(1010), - [anon_sym_source] = ACTIONS(1010), - [anon_sym_source_DASHenv] = ACTIONS(1010), - [anon_sym_register] = ACTIONS(1010), - [anon_sym_hide] = ACTIONS(1010), - [anon_sym_hide_DASHenv] = ACTIONS(1010), - [anon_sym_overlay] = ACTIONS(1010), - [anon_sym_as] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1010), - [anon_sym_where] = ACTIONS(1010), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_SLASH] = ACTIONS(1010), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT2] = ACTIONS(1010), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT_EQ] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_not] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(1152), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT] = ACTIONS(1010), - [anon_sym_null] = ACTIONS(1010), - [anon_sym_true] = ACTIONS(1010), - [anon_sym_false] = ACTIONS(1010), - [aux_sym__val_number_decimal_token1] = ACTIONS(1010), - [aux_sym__val_number_decimal_token2] = ACTIONS(1010), - [anon_sym_DOT2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = 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(1010), - [aux_sym__val_number_token5] = ACTIONS(1010), - [aux_sym__val_number_token6] = ACTIONS(1010), - [anon_sym_0b] = ACTIONS(1010), - [anon_sym_0o] = ACTIONS(1010), - [anon_sym_0x] = ACTIONS(1010), - [sym_val_date] = ACTIONS(1010), - [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_CARET] = ACTIONS(1010), - [anon_sym_POUND] = ACTIONS(113), - }, - [349] = { - [sym_path] = STATE(432), - [sym_comment] = STATE(349), - [aux_sym_cell_path_repeat1] = STATE(350), - [anon_sym_export] = ACTIONS(987), - [anon_sym_alias] = ACTIONS(987), - [anon_sym_let] = ACTIONS(987), - [anon_sym_let_DASHenv] = ACTIONS(987), - [anon_sym_mut] = ACTIONS(987), - [anon_sym_const] = ACTIONS(987), - [anon_sym_SEMI] = ACTIONS(987), - [sym_cmd_identifier] = ACTIONS(987), - [anon_sym_LF] = ACTIONS(989), - [anon_sym_def] = ACTIONS(987), - [anon_sym_export_DASHenv] = ACTIONS(987), - [anon_sym_extern] = ACTIONS(987), - [anon_sym_module] = ACTIONS(987), - [anon_sym_use] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(987), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_RPAREN] = ACTIONS(987), - [anon_sym_DOLLAR] = ACTIONS(987), - [anon_sym_error] = ACTIONS(987), - [anon_sym_GT] = ACTIONS(987), - [anon_sym_DASH_DASH] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_break] = ACTIONS(987), - [anon_sym_continue] = ACTIONS(987), - [anon_sym_for] = ACTIONS(987), - [anon_sym_in] = ACTIONS(987), - [anon_sym_loop] = ACTIONS(987), - [anon_sym_while] = ACTIONS(987), - [anon_sym_do] = ACTIONS(987), - [anon_sym_if] = ACTIONS(987), - [anon_sym_match] = ACTIONS(987), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_RBRACE] = ACTIONS(987), - [anon_sym_DOT_DOT] = ACTIONS(987), - [anon_sym_try] = ACTIONS(987), - [anon_sym_return] = ACTIONS(987), - [anon_sym_source] = ACTIONS(987), - [anon_sym_source_DASHenv] = ACTIONS(987), - [anon_sym_register] = ACTIONS(987), - [anon_sym_hide] = ACTIONS(987), - [anon_sym_hide_DASHenv] = ACTIONS(987), - [anon_sym_overlay] = ACTIONS(987), - [anon_sym_as] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(987), - [anon_sym_where] = ACTIONS(987), - [anon_sym_STAR_STAR] = ACTIONS(987), - [anon_sym_PLUS_PLUS] = ACTIONS(987), - [anon_sym_SLASH] = ACTIONS(987), - [anon_sym_mod] = ACTIONS(987), - [anon_sym_SLASH_SLASH] = ACTIONS(987), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_bit_DASHshl] = ACTIONS(987), - [anon_sym_bit_DASHshr] = ACTIONS(987), - [anon_sym_EQ_EQ] = ACTIONS(987), - [anon_sym_BANG_EQ] = ACTIONS(987), - [anon_sym_LT2] = ACTIONS(987), - [anon_sym_LT_EQ] = ACTIONS(987), - [anon_sym_GT_EQ] = ACTIONS(987), - [anon_sym_not_DASHin] = ACTIONS(987), - [anon_sym_starts_DASHwith] = ACTIONS(987), - [anon_sym_ends_DASHwith] = ACTIONS(987), - [anon_sym_EQ_TILDE] = ACTIONS(987), - [anon_sym_BANG_TILDE] = ACTIONS(987), - [anon_sym_bit_DASHand] = ACTIONS(987), - [anon_sym_bit_DASHxor] = ACTIONS(987), - [anon_sym_bit_DASHor] = ACTIONS(987), - [anon_sym_and] = ACTIONS(987), - [anon_sym_xor] = ACTIONS(987), - [anon_sym_or] = ACTIONS(987), - [anon_sym_not] = ACTIONS(987), - [anon_sym_DOT] = ACTIONS(1152), - [anon_sym_DOT_DOT_EQ] = ACTIONS(987), - [anon_sym_DOT_DOT_LT] = ACTIONS(987), - [anon_sym_null] = ACTIONS(987), - [anon_sym_true] = ACTIONS(987), - [anon_sym_false] = ACTIONS(987), - [aux_sym__val_number_decimal_token1] = ACTIONS(987), - [aux_sym__val_number_decimal_token2] = ACTIONS(987), - [anon_sym_DOT2] = ACTIONS(987), - [aux_sym__val_number_decimal_token3] = ACTIONS(987), - [aux_sym__val_number_token1] = ACTIONS(987), - [aux_sym__val_number_token2] = ACTIONS(987), - [aux_sym__val_number_token3] = ACTIONS(987), - [aux_sym__val_number_token4] = ACTIONS(987), - [aux_sym__val_number_token5] = ACTIONS(987), - [aux_sym__val_number_token6] = ACTIONS(987), - [anon_sym_0b] = ACTIONS(987), - [anon_sym_0o] = ACTIONS(987), - [anon_sym_0x] = ACTIONS(987), - [sym_val_date] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(987), - [sym__str_single_quotes] = ACTIONS(987), - [sym__str_back_ticks] = ACTIONS(987), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(987), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_POUND] = ACTIONS(113), - }, - [350] = { - [sym_path] = STATE(432), - [sym_comment] = STATE(350), - [aux_sym_cell_path_repeat1] = STATE(351), - [anon_sym_export] = ACTIONS(1006), - [anon_sym_alias] = ACTIONS(1006), - [anon_sym_let] = ACTIONS(1006), - [anon_sym_let_DASHenv] = ACTIONS(1006), - [anon_sym_mut] = ACTIONS(1006), - [anon_sym_const] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1006), - [sym_cmd_identifier] = ACTIONS(1006), - [anon_sym_LF] = ACTIONS(1008), - [anon_sym_def] = ACTIONS(1006), - [anon_sym_export_DASHenv] = ACTIONS(1006), - [anon_sym_extern] = ACTIONS(1006), - [anon_sym_module] = ACTIONS(1006), - [anon_sym_use] = ACTIONS(1006), - [anon_sym_LBRACK] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_RPAREN] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_error] = ACTIONS(1006), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_break] = ACTIONS(1006), - [anon_sym_continue] = ACTIONS(1006), - [anon_sym_for] = ACTIONS(1006), - [anon_sym_in] = ACTIONS(1006), - [anon_sym_loop] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(1006), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_match] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_try] = ACTIONS(1006), - [anon_sym_return] = ACTIONS(1006), - [anon_sym_source] = ACTIONS(1006), - [anon_sym_source_DASHenv] = ACTIONS(1006), - [anon_sym_register] = ACTIONS(1006), - [anon_sym_hide] = ACTIONS(1006), - [anon_sym_hide_DASHenv] = ACTIONS(1006), - [anon_sym_overlay] = ACTIONS(1006), - [anon_sym_as] = ACTIONS(1006), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_where] = ACTIONS(1006), - [anon_sym_STAR_STAR] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_mod] = ACTIONS(1006), - [anon_sym_SLASH_SLASH] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_bit_DASHshl] = ACTIONS(1006), - [anon_sym_bit_DASHshr] = ACTIONS(1006), - [anon_sym_EQ_EQ] = ACTIONS(1006), - [anon_sym_BANG_EQ] = ACTIONS(1006), - [anon_sym_LT2] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1006), - [anon_sym_GT_EQ] = ACTIONS(1006), - [anon_sym_not_DASHin] = ACTIONS(1006), - [anon_sym_starts_DASHwith] = ACTIONS(1006), - [anon_sym_ends_DASHwith] = ACTIONS(1006), - [anon_sym_EQ_TILDE] = ACTIONS(1006), - [anon_sym_BANG_TILDE] = ACTIONS(1006), - [anon_sym_bit_DASHand] = ACTIONS(1006), - [anon_sym_bit_DASHxor] = ACTIONS(1006), - [anon_sym_bit_DASHor] = ACTIONS(1006), - [anon_sym_and] = ACTIONS(1006), - [anon_sym_xor] = ACTIONS(1006), - [anon_sym_or] = ACTIONS(1006), - [anon_sym_not] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1152), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT] = ACTIONS(1006), - [anon_sym_null] = ACTIONS(1006), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1006), - [anon_sym_DOT2] = ACTIONS(1006), - [aux_sym__val_number_decimal_token3] = ACTIONS(1006), - [aux_sym__val_number_token1] = ACTIONS(1006), - [aux_sym__val_number_token2] = ACTIONS(1006), - [aux_sym__val_number_token3] = ACTIONS(1006), - [aux_sym__val_number_token4] = ACTIONS(1006), - [aux_sym__val_number_token5] = ACTIONS(1006), - [aux_sym__val_number_token6] = ACTIONS(1006), - [anon_sym_0b] = ACTIONS(1006), - [anon_sym_0o] = ACTIONS(1006), - [anon_sym_0x] = ACTIONS(1006), - [sym_val_date] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym__str_single_quotes] = ACTIONS(1006), - [sym__str_back_ticks] = ACTIONS(1006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1006), - [anon_sym_CARET] = ACTIONS(1006), - [anon_sym_POUND] = ACTIONS(113), - }, - [351] = { - [sym_path] = STATE(432), - [sym_comment] = STATE(351), - [aux_sym_cell_path_repeat1] = STATE(351), - [anon_sym_export] = ACTIONS(999), - [anon_sym_alias] = ACTIONS(999), - [anon_sym_let] = ACTIONS(999), - [anon_sym_let_DASHenv] = ACTIONS(999), - [anon_sym_mut] = ACTIONS(999), - [anon_sym_const] = ACTIONS(999), - [anon_sym_SEMI] = ACTIONS(999), - [sym_cmd_identifier] = ACTIONS(999), - [anon_sym_LF] = ACTIONS(1001), - [anon_sym_def] = ACTIONS(999), - [anon_sym_export_DASHenv] = ACTIONS(999), - [anon_sym_extern] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_use] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_RPAREN] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_error] = ACTIONS(999), - [anon_sym_GT] = ACTIONS(999), - [anon_sym_DASH_DASH] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_break] = ACTIONS(999), - [anon_sym_continue] = ACTIONS(999), - [anon_sym_for] = ACTIONS(999), - [anon_sym_in] = ACTIONS(999), - [anon_sym_loop] = ACTIONS(999), - [anon_sym_while] = ACTIONS(999), - [anon_sym_do] = ACTIONS(999), - [anon_sym_if] = ACTIONS(999), - [anon_sym_match] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(999), - [anon_sym_RBRACE] = ACTIONS(999), - [anon_sym_DOT_DOT] = ACTIONS(999), - [anon_sym_try] = ACTIONS(999), - [anon_sym_return] = ACTIONS(999), - [anon_sym_source] = ACTIONS(999), - [anon_sym_source_DASHenv] = ACTIONS(999), - [anon_sym_register] = ACTIONS(999), - [anon_sym_hide] = ACTIONS(999), - [anon_sym_hide_DASHenv] = ACTIONS(999), - [anon_sym_overlay] = ACTIONS(999), - [anon_sym_as] = ACTIONS(999), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_where] = ACTIONS(999), - [anon_sym_STAR_STAR] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(999), - [anon_sym_mod] = ACTIONS(999), - [anon_sym_SLASH_SLASH] = ACTIONS(999), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_bit_DASHshl] = ACTIONS(999), - [anon_sym_bit_DASHshr] = ACTIONS(999), - [anon_sym_EQ_EQ] = ACTIONS(999), - [anon_sym_BANG_EQ] = ACTIONS(999), - [anon_sym_LT2] = ACTIONS(999), - [anon_sym_LT_EQ] = ACTIONS(999), - [anon_sym_GT_EQ] = ACTIONS(999), - [anon_sym_not_DASHin] = ACTIONS(999), - [anon_sym_starts_DASHwith] = ACTIONS(999), - [anon_sym_ends_DASHwith] = ACTIONS(999), - [anon_sym_EQ_TILDE] = ACTIONS(999), - [anon_sym_BANG_TILDE] = ACTIONS(999), - [anon_sym_bit_DASHand] = ACTIONS(999), - [anon_sym_bit_DASHxor] = ACTIONS(999), - [anon_sym_bit_DASHor] = ACTIONS(999), - [anon_sym_and] = ACTIONS(999), - [anon_sym_xor] = ACTIONS(999), - [anon_sym_or] = ACTIONS(999), - [anon_sym_not] = ACTIONS(999), - [anon_sym_DOT] = ACTIONS(1183), - [anon_sym_DOT_DOT_EQ] = ACTIONS(999), - [anon_sym_DOT_DOT_LT] = ACTIONS(999), - [anon_sym_null] = ACTIONS(999), - [anon_sym_true] = ACTIONS(999), - [anon_sym_false] = ACTIONS(999), - [aux_sym__val_number_decimal_token1] = ACTIONS(999), - [aux_sym__val_number_decimal_token2] = ACTIONS(999), - [anon_sym_DOT2] = ACTIONS(999), - [aux_sym__val_number_decimal_token3] = ACTIONS(999), - [aux_sym__val_number_token1] = ACTIONS(999), - [aux_sym__val_number_token2] = ACTIONS(999), - [aux_sym__val_number_token3] = ACTIONS(999), - [aux_sym__val_number_token4] = ACTIONS(999), - [aux_sym__val_number_token5] = ACTIONS(999), - [aux_sym__val_number_token6] = ACTIONS(999), - [anon_sym_0b] = ACTIONS(999), - [anon_sym_0o] = ACTIONS(999), - [anon_sym_0x] = ACTIONS(999), - [sym_val_date] = ACTIONS(999), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym__str_single_quotes] = ACTIONS(999), - [sym__str_back_ticks] = ACTIONS(999), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(999), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(999), - [anon_sym_CARET] = ACTIONS(999), - [anon_sym_POUND] = ACTIONS(113), - }, - [352] = { - [sym_comment] = STATE(352), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_alias] = ACTIONS(1070), - [anon_sym_let] = ACTIONS(1070), - [anon_sym_let_DASHenv] = ACTIONS(1070), - [anon_sym_mut] = ACTIONS(1070), - [anon_sym_const] = ACTIONS(1070), - [anon_sym_SEMI] = ACTIONS(1070), - [sym_cmd_identifier] = ACTIONS(1070), - [anon_sym_LF] = ACTIONS(1072), - [anon_sym_def] = ACTIONS(1070), - [anon_sym_export_DASHenv] = ACTIONS(1070), - [anon_sym_extern] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_use] = ACTIONS(1070), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_RPAREN] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_error] = ACTIONS(1070), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_in] = ACTIONS(1070), - [anon_sym_loop] = ACTIONS(1070), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_do] = ACTIONS(1070), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_match] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_RBRACE] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_try] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_source] = ACTIONS(1070), - [anon_sym_source_DASHenv] = ACTIONS(1070), - [anon_sym_register] = ACTIONS(1070), - [anon_sym_hide] = ACTIONS(1070), - [anon_sym_hide_DASHenv] = ACTIONS(1070), - [anon_sym_overlay] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_where] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(1136), - [anon_sym_STAR_STAR] = ACTIONS(1070), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_mod] = ACTIONS(1070), - [anon_sym_SLASH_SLASH] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_bit_DASHshl] = ACTIONS(1070), - [anon_sym_bit_DASHshr] = ACTIONS(1070), - [anon_sym_EQ_EQ] = ACTIONS(1070), - [anon_sym_BANG_EQ] = ACTIONS(1070), - [anon_sym_LT2] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1070), - [anon_sym_GT_EQ] = ACTIONS(1070), - [anon_sym_not_DASHin] = ACTIONS(1070), - [anon_sym_starts_DASHwith] = ACTIONS(1070), - [anon_sym_ends_DASHwith] = ACTIONS(1070), - [anon_sym_EQ_TILDE] = ACTIONS(1070), - [anon_sym_BANG_TILDE] = ACTIONS(1070), - [anon_sym_bit_DASHand] = ACTIONS(1070), - [anon_sym_bit_DASHxor] = ACTIONS(1070), - [anon_sym_bit_DASHor] = ACTIONS(1070), - [anon_sym_and] = ACTIONS(1070), - [anon_sym_xor] = ACTIONS(1070), - [anon_sym_or] = ACTIONS(1070), - [anon_sym_not] = ACTIONS(1070), - [anon_sym_DOT_DOT2] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1072), - [anon_sym_null] = ACTIONS(1070), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1070), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), - [anon_sym_CARET] = ACTIONS(1070), - [anon_sym_POUND] = ACTIONS(113), - }, - [353] = { - [sym_cell_path] = STATE(480), - [sym_path] = STATE(349), - [sym_comment] = STATE(353), - [anon_sym_export] = ACTIONS(1186), - [anon_sym_alias] = ACTIONS(1186), - [anon_sym_let] = ACTIONS(1186), - [anon_sym_let_DASHenv] = ACTIONS(1186), - [anon_sym_mut] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1186), - [sym_cmd_identifier] = ACTIONS(1186), - [anon_sym_LF] = ACTIONS(1188), - [anon_sym_def] = ACTIONS(1186), - [anon_sym_export_DASHenv] = ACTIONS(1186), - [anon_sym_extern] = ACTIONS(1186), - [anon_sym_module] = ACTIONS(1186), - [anon_sym_use] = ACTIONS(1186), - [anon_sym_LBRACK] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(1186), - [anon_sym_RPAREN] = ACTIONS(1186), - [anon_sym_DOLLAR] = ACTIONS(1186), - [anon_sym_error] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_DASH_DASH] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1186), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1186), - [anon_sym_in] = ACTIONS(1186), - [anon_sym_loop] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_do] = ACTIONS(1186), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_match] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_RBRACE] = ACTIONS(1186), - [anon_sym_DOT_DOT] = ACTIONS(1186), - [anon_sym_try] = ACTIONS(1186), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_source] = ACTIONS(1186), - [anon_sym_source_DASHenv] = ACTIONS(1186), - [anon_sym_register] = ACTIONS(1186), - [anon_sym_hide] = ACTIONS(1186), - [anon_sym_hide_DASHenv] = ACTIONS(1186), - [anon_sym_overlay] = ACTIONS(1186), - [anon_sym_as] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_where] = ACTIONS(1186), - [anon_sym_STAR_STAR] = ACTIONS(1186), - [anon_sym_PLUS_PLUS] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_mod] = ACTIONS(1186), - [anon_sym_SLASH_SLASH] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_bit_DASHshl] = ACTIONS(1186), - [anon_sym_bit_DASHshr] = ACTIONS(1186), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_LT2] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1186), - [anon_sym_GT_EQ] = ACTIONS(1186), - [anon_sym_not_DASHin] = ACTIONS(1186), - [anon_sym_starts_DASHwith] = ACTIONS(1186), - [anon_sym_ends_DASHwith] = ACTIONS(1186), - [anon_sym_EQ_TILDE] = ACTIONS(1186), - [anon_sym_BANG_TILDE] = ACTIONS(1186), - [anon_sym_bit_DASHand] = ACTIONS(1186), - [anon_sym_bit_DASHxor] = ACTIONS(1186), - [anon_sym_bit_DASHor] = ACTIONS(1186), - [anon_sym_and] = ACTIONS(1186), - [anon_sym_xor] = ACTIONS(1186), - [anon_sym_or] = ACTIONS(1186), - [anon_sym_not] = ACTIONS(1186), - [anon_sym_DOT] = ACTIONS(1152), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1186), - [anon_sym_DOT_DOT_LT] = ACTIONS(1186), - [anon_sym_null] = ACTIONS(1186), - [anon_sym_true] = ACTIONS(1186), - [anon_sym_false] = ACTIONS(1186), - [aux_sym__val_number_decimal_token1] = ACTIONS(1186), - [aux_sym__val_number_decimal_token2] = ACTIONS(1186), - [anon_sym_DOT2] = ACTIONS(1186), - [aux_sym__val_number_decimal_token3] = ACTIONS(1186), - [aux_sym__val_number_token1] = ACTIONS(1186), - [aux_sym__val_number_token2] = ACTIONS(1186), - [aux_sym__val_number_token3] = ACTIONS(1186), - [aux_sym__val_number_token4] = ACTIONS(1186), - [aux_sym__val_number_token5] = ACTIONS(1186), - [aux_sym__val_number_token6] = ACTIONS(1186), - [anon_sym_0b] = ACTIONS(1186), - [anon_sym_0o] = ACTIONS(1186), - [anon_sym_0x] = ACTIONS(1186), - [sym_val_date] = ACTIONS(1186), - [anon_sym_DQUOTE] = ACTIONS(1186), - [sym__str_single_quotes] = ACTIONS(1186), - [sym__str_back_ticks] = ACTIONS(1186), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1186), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1186), - [anon_sym_CARET] = ACTIONS(1186), - [anon_sym_POUND] = ACTIONS(113), - }, - [354] = { - [sym_comment] = STATE(354), - [ts_builtin_sym_end] = ACTIONS(925), - [anon_sym_export] = ACTIONS(923), - [anon_sym_alias] = ACTIONS(923), - [anon_sym_let] = ACTIONS(923), - [anon_sym_let_DASHenv] = ACTIONS(923), - [anon_sym_mut] = ACTIONS(923), - [anon_sym_const] = ACTIONS(923), - [anon_sym_SEMI] = ACTIONS(923), - [sym_cmd_identifier] = ACTIONS(923), - [anon_sym_LF] = ACTIONS(925), - [anon_sym_def] = ACTIONS(923), - [anon_sym_export_DASHenv] = ACTIONS(923), - [anon_sym_extern] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_use] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_DOLLAR] = ACTIONS(923), - [anon_sym_error] = ACTIONS(923), - [anon_sym_GT] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_break] = ACTIONS(923), - [anon_sym_continue] = ACTIONS(923), - [anon_sym_for] = ACTIONS(923), - [anon_sym_in] = ACTIONS(923), - [anon_sym_loop] = ACTIONS(923), - [anon_sym_while] = ACTIONS(923), - [anon_sym_do] = ACTIONS(923), - [anon_sym_if] = ACTIONS(923), - [anon_sym_match] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(923), - [anon_sym_DOT_DOT] = ACTIONS(923), - [anon_sym_try] = ACTIONS(923), - [anon_sym_return] = ACTIONS(923), - [anon_sym_source] = ACTIONS(923), - [anon_sym_source_DASHenv] = ACTIONS(923), - [anon_sym_register] = ACTIONS(923), - [anon_sym_hide] = ACTIONS(923), - [anon_sym_hide_DASHenv] = ACTIONS(923), - [anon_sym_overlay] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_where] = ACTIONS(923), - [anon_sym_STAR_STAR] = ACTIONS(923), - [anon_sym_PLUS_PLUS] = ACTIONS(923), - [anon_sym_SLASH] = ACTIONS(923), - [anon_sym_mod] = ACTIONS(923), - [anon_sym_SLASH_SLASH] = ACTIONS(923), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_bit_DASHshl] = ACTIONS(923), - [anon_sym_bit_DASHshr] = ACTIONS(923), - [anon_sym_EQ_EQ] = ACTIONS(923), - [anon_sym_BANG_EQ] = ACTIONS(923), - [anon_sym_LT2] = ACTIONS(923), - [anon_sym_LT_EQ] = ACTIONS(923), - [anon_sym_GT_EQ] = ACTIONS(923), - [anon_sym_not_DASHin] = ACTIONS(923), - [anon_sym_starts_DASHwith] = ACTIONS(923), - [anon_sym_ends_DASHwith] = ACTIONS(923), - [anon_sym_EQ_TILDE] = ACTIONS(923), - [anon_sym_BANG_TILDE] = ACTIONS(923), - [anon_sym_bit_DASHand] = ACTIONS(923), - [anon_sym_bit_DASHxor] = ACTIONS(923), - [anon_sym_bit_DASHor] = ACTIONS(923), - [anon_sym_and] = ACTIONS(923), - [anon_sym_xor] = ACTIONS(923), - [anon_sym_or] = ACTIONS(923), - [anon_sym_not] = ACTIONS(923), - [anon_sym_DOT_DOT2] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ] = ACTIONS(923), - [anon_sym_DOT_DOT_LT] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(925), - [anon_sym_DOT_DOT_LT2] = ACTIONS(925), - [aux_sym__immediate_decimal_token2] = ACTIONS(1129), - [anon_sym_null] = ACTIONS(923), - [anon_sym_true] = ACTIONS(923), - [anon_sym_false] = ACTIONS(923), - [aux_sym__val_number_decimal_token1] = ACTIONS(923), - [aux_sym__val_number_decimal_token2] = ACTIONS(923), - [anon_sym_DOT2] = ACTIONS(923), - [aux_sym__val_number_decimal_token3] = ACTIONS(923), - [aux_sym__val_number_token1] = ACTIONS(923), - [aux_sym__val_number_token2] = ACTIONS(923), - [aux_sym__val_number_token3] = ACTIONS(923), - [aux_sym__val_number_token4] = ACTIONS(923), - [aux_sym__val_number_token5] = ACTIONS(923), - [aux_sym__val_number_token6] = ACTIONS(923), - [anon_sym_0b] = ACTIONS(923), - [sym_filesize_unit] = ACTIONS(923), - [sym_duration_unit] = ACTIONS(923), - [anon_sym_0o] = ACTIONS(923), - [anon_sym_0x] = ACTIONS(923), - [sym_val_date] = ACTIONS(923), - [anon_sym_DQUOTE] = ACTIONS(923), - [sym__str_single_quotes] = ACTIONS(923), - [sym__str_back_ticks] = ACTIONS(923), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(923), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), - [anon_sym_CARET] = ACTIONS(923), - [anon_sym_POUND] = ACTIONS(113), - }, - [355] = { - [sym_cell_path] = STATE(461), - [sym_path] = STATE(349), - [sym_comment] = STATE(355), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_alias] = ACTIONS(1190), - [anon_sym_let] = ACTIONS(1190), - [anon_sym_let_DASHenv] = ACTIONS(1190), - [anon_sym_mut] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1190), - [anon_sym_SEMI] = ACTIONS(1190), - [sym_cmd_identifier] = ACTIONS(1190), - [anon_sym_LF] = ACTIONS(1192), - [anon_sym_def] = ACTIONS(1190), - [anon_sym_export_DASHenv] = ACTIONS(1190), - [anon_sym_extern] = ACTIONS(1190), - [anon_sym_module] = ACTIONS(1190), - [anon_sym_use] = ACTIONS(1190), - [anon_sym_LBRACK] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(1190), - [anon_sym_RPAREN] = ACTIONS(1190), - [anon_sym_DOLLAR] = ACTIONS(1190), - [anon_sym_error] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1190), - [anon_sym_DASH_DASH] = ACTIONS(1190), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_in] = ACTIONS(1190), - [anon_sym_loop] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [anon_sym_do] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_match] = ACTIONS(1190), - [anon_sym_LBRACE] = ACTIONS(1190), - [anon_sym_RBRACE] = ACTIONS(1190), - [anon_sym_DOT_DOT] = ACTIONS(1190), - [anon_sym_try] = ACTIONS(1190), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_source] = ACTIONS(1190), - [anon_sym_source_DASHenv] = ACTIONS(1190), - [anon_sym_register] = ACTIONS(1190), - [anon_sym_hide] = ACTIONS(1190), - [anon_sym_hide_DASHenv] = ACTIONS(1190), - [anon_sym_overlay] = ACTIONS(1190), - [anon_sym_as] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1190), - [anon_sym_where] = ACTIONS(1190), - [anon_sym_STAR_STAR] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1190), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_mod] = ACTIONS(1190), - [anon_sym_SLASH_SLASH] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_bit_DASHshl] = ACTIONS(1190), - [anon_sym_bit_DASHshr] = ACTIONS(1190), - [anon_sym_EQ_EQ] = ACTIONS(1190), - [anon_sym_BANG_EQ] = ACTIONS(1190), - [anon_sym_LT2] = ACTIONS(1190), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_not_DASHin] = ACTIONS(1190), - [anon_sym_starts_DASHwith] = ACTIONS(1190), - [anon_sym_ends_DASHwith] = ACTIONS(1190), - [anon_sym_EQ_TILDE] = ACTIONS(1190), - [anon_sym_BANG_TILDE] = ACTIONS(1190), - [anon_sym_bit_DASHand] = ACTIONS(1190), - [anon_sym_bit_DASHxor] = ACTIONS(1190), - [anon_sym_bit_DASHor] = ACTIONS(1190), - [anon_sym_and] = ACTIONS(1190), - [anon_sym_xor] = ACTIONS(1190), - [anon_sym_or] = ACTIONS(1190), - [anon_sym_not] = ACTIONS(1190), - [anon_sym_DOT] = ACTIONS(1152), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1190), - [anon_sym_DOT_DOT_LT] = ACTIONS(1190), - [anon_sym_null] = ACTIONS(1190), - [anon_sym_true] = ACTIONS(1190), - [anon_sym_false] = ACTIONS(1190), - [aux_sym__val_number_decimal_token1] = ACTIONS(1190), - [aux_sym__val_number_decimal_token2] = ACTIONS(1190), - [anon_sym_DOT2] = ACTIONS(1190), - [aux_sym__val_number_decimal_token3] = ACTIONS(1190), - [aux_sym__val_number_token1] = ACTIONS(1190), - [aux_sym__val_number_token2] = ACTIONS(1190), - [aux_sym__val_number_token3] = ACTIONS(1190), - [aux_sym__val_number_token4] = ACTIONS(1190), - [aux_sym__val_number_token5] = ACTIONS(1190), - [aux_sym__val_number_token6] = ACTIONS(1190), - [anon_sym_0b] = ACTIONS(1190), - [anon_sym_0o] = ACTIONS(1190), - [anon_sym_0x] = ACTIONS(1190), - [sym_val_date] = ACTIONS(1190), - [anon_sym_DQUOTE] = ACTIONS(1190), - [sym__str_single_quotes] = ACTIONS(1190), - [sym__str_back_ticks] = ACTIONS(1190), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1190), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1190), - [anon_sym_POUND] = ACTIONS(113), - }, - [356] = { - [sym_comment] = STATE(356), - [ts_builtin_sym_end] = ACTIONS(911), - [anon_sym_export] = ACTIONS(909), - [anon_sym_alias] = ACTIONS(909), - [anon_sym_let] = ACTIONS(909), - [anon_sym_let_DASHenv] = ACTIONS(909), - [anon_sym_mut] = ACTIONS(909), - [anon_sym_const] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(909), - [sym_cmd_identifier] = ACTIONS(909), - [anon_sym_LF] = ACTIONS(911), - [anon_sym_def] = ACTIONS(909), - [anon_sym_export_DASHenv] = ACTIONS(909), - [anon_sym_extern] = ACTIONS(909), - [anon_sym_module] = ACTIONS(909), - [anon_sym_use] = ACTIONS(909), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_error] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_break] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_for] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_loop] = ACTIONS(909), - [anon_sym_while] = ACTIONS(909), - [anon_sym_do] = ACTIONS(909), - [anon_sym_if] = ACTIONS(909), - [anon_sym_match] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_DOT_DOT] = ACTIONS(909), - [anon_sym_try] = ACTIONS(909), - [anon_sym_return] = ACTIONS(909), - [anon_sym_source] = ACTIONS(909), - [anon_sym_source_DASHenv] = ACTIONS(909), - [anon_sym_register] = ACTIONS(909), - [anon_sym_hide] = ACTIONS(909), - [anon_sym_hide_DASHenv] = ACTIONS(909), - [anon_sym_overlay] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_where] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(909), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(909), - [anon_sym_SLASH_SLASH] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(909), - [anon_sym_bit_DASHshr] = ACTIONS(909), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_not_DASHin] = ACTIONS(909), - [anon_sym_starts_DASHwith] = ACTIONS(909), - [anon_sym_ends_DASHwith] = ACTIONS(909), - [anon_sym_EQ_TILDE] = ACTIONS(909), - [anon_sym_BANG_TILDE] = ACTIONS(909), - [anon_sym_bit_DASHand] = ACTIONS(909), - [anon_sym_bit_DASHxor] = ACTIONS(909), - [anon_sym_bit_DASHor] = ACTIONS(909), - [anon_sym_and] = ACTIONS(909), - [anon_sym_xor] = ACTIONS(909), - [anon_sym_or] = ACTIONS(909), - [anon_sym_not] = ACTIONS(909), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [aux_sym__immediate_decimal_token2] = ACTIONS(1097), - [anon_sym_null] = ACTIONS(909), - [anon_sym_true] = ACTIONS(909), - [anon_sym_false] = ACTIONS(909), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(909), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(909), - [aux_sym__val_number_token1] = ACTIONS(909), - [aux_sym__val_number_token2] = ACTIONS(909), - [aux_sym__val_number_token3] = ACTIONS(909), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(909), - [aux_sym__val_number_token6] = ACTIONS(909), - [anon_sym_0b] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(909), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym__str_single_quotes] = ACTIONS(909), - [sym__str_back_ticks] = ACTIONS(909), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), - [anon_sym_CARET] = ACTIONS(909), - [anon_sym_POUND] = ACTIONS(113), - }, - [357] = { - [sym_comment] = STATE(357), - [anon_sym_export] = ACTIONS(1194), - [anon_sym_alias] = ACTIONS(1194), - [anon_sym_let] = ACTIONS(1194), - [anon_sym_let_DASHenv] = ACTIONS(1194), - [anon_sym_mut] = ACTIONS(1194), - [anon_sym_const] = ACTIONS(1194), - [anon_sym_SEMI] = ACTIONS(1194), - [sym_cmd_identifier] = ACTIONS(1194), - [anon_sym_LF] = ACTIONS(1196), - [anon_sym_def] = ACTIONS(1194), - [anon_sym_export_DASHenv] = ACTIONS(1194), - [anon_sym_extern] = ACTIONS(1194), - [anon_sym_module] = ACTIONS(1194), - [anon_sym_use] = ACTIONS(1194), - [anon_sym_LBRACK] = ACTIONS(1194), - [anon_sym_LPAREN] = ACTIONS(1194), - [anon_sym_RPAREN] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1194), - [anon_sym_error] = ACTIONS(1194), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_break] = ACTIONS(1194), - [anon_sym_continue] = ACTIONS(1194), - [anon_sym_for] = ACTIONS(1194), - [anon_sym_in] = ACTIONS(1198), - [anon_sym_loop] = ACTIONS(1194), - [anon_sym_while] = ACTIONS(1194), - [anon_sym_do] = ACTIONS(1194), - [anon_sym_if] = ACTIONS(1194), - [anon_sym_match] = ACTIONS(1194), - [anon_sym_LBRACE] = ACTIONS(1194), - [anon_sym_RBRACE] = ACTIONS(1194), - [anon_sym_DOT_DOT] = ACTIONS(1194), - [anon_sym_try] = ACTIONS(1194), - [anon_sym_return] = ACTIONS(1194), - [anon_sym_source] = ACTIONS(1194), - [anon_sym_source_DASHenv] = ACTIONS(1194), - [anon_sym_register] = ACTIONS(1194), - [anon_sym_hide] = ACTIONS(1194), - [anon_sym_hide_DASHenv] = ACTIONS(1194), - [anon_sym_overlay] = ACTIONS(1194), - [anon_sym_as] = ACTIONS(1194), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_where] = ACTIONS(1194), - [anon_sym_STAR_STAR] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_SLASH] = ACTIONS(1198), - [anon_sym_mod] = ACTIONS(1198), - [anon_sym_SLASH_SLASH] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1198), - [anon_sym_bit_DASHshl] = ACTIONS(1198), - [anon_sym_bit_DASHshr] = ACTIONS(1198), - [anon_sym_EQ_EQ] = ACTIONS(1198), - [anon_sym_BANG_EQ] = ACTIONS(1198), - [anon_sym_LT2] = ACTIONS(1198), - [anon_sym_LT_EQ] = ACTIONS(1198), - [anon_sym_GT_EQ] = ACTIONS(1198), - [anon_sym_not_DASHin] = ACTIONS(1198), - [anon_sym_starts_DASHwith] = ACTIONS(1198), - [anon_sym_ends_DASHwith] = ACTIONS(1198), - [anon_sym_EQ_TILDE] = ACTIONS(1198), - [anon_sym_BANG_TILDE] = ACTIONS(1198), - [anon_sym_bit_DASHand] = ACTIONS(1198), - [anon_sym_bit_DASHxor] = ACTIONS(1198), - [anon_sym_bit_DASHor] = ACTIONS(1198), - [anon_sym_and] = ACTIONS(1198), - [anon_sym_xor] = ACTIONS(1198), - [anon_sym_or] = ACTIONS(1198), - [anon_sym_not] = ACTIONS(1194), - [anon_sym_DOT_DOT2] = ACTIONS(1162), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1194), - [anon_sym_DOT_DOT_LT] = ACTIONS(1194), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1164), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1164), - [anon_sym_null] = ACTIONS(1194), - [anon_sym_true] = ACTIONS(1194), - [anon_sym_false] = ACTIONS(1194), - [aux_sym__val_number_decimal_token1] = ACTIONS(1194), - [aux_sym__val_number_decimal_token2] = ACTIONS(1194), - [anon_sym_DOT2] = ACTIONS(1194), - [aux_sym__val_number_decimal_token3] = ACTIONS(1194), - [aux_sym__val_number_token1] = ACTIONS(1194), - [aux_sym__val_number_token2] = ACTIONS(1194), - [aux_sym__val_number_token3] = ACTIONS(1194), - [aux_sym__val_number_token4] = ACTIONS(1194), - [aux_sym__val_number_token5] = ACTIONS(1194), - [aux_sym__val_number_token6] = ACTIONS(1194), - [anon_sym_0b] = ACTIONS(1194), - [anon_sym_0o] = ACTIONS(1194), - [anon_sym_0x] = ACTIONS(1194), - [sym_val_date] = ACTIONS(1194), - [anon_sym_DQUOTE] = ACTIONS(1194), - [sym__str_single_quotes] = ACTIONS(1194), - [sym__str_back_ticks] = ACTIONS(1194), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1194), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1194), - [anon_sym_CARET] = ACTIONS(1194), - [anon_sym_POUND] = ACTIONS(113), - }, - [358] = { - [sym_comment] = STATE(358), - [anon_sym_export] = ACTIONS(1059), - [anon_sym_alias] = ACTIONS(1059), - [anon_sym_let] = ACTIONS(1059), - [anon_sym_let_DASHenv] = ACTIONS(1059), - [anon_sym_mut] = ACTIONS(1059), - [anon_sym_const] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [sym_cmd_identifier] = ACTIONS(1059), - [anon_sym_LF] = ACTIONS(1061), - [anon_sym_def] = ACTIONS(1059), - [anon_sym_export_DASHenv] = ACTIONS(1059), - [anon_sym_extern] = ACTIONS(1059), - [anon_sym_module] = ACTIONS(1059), - [anon_sym_use] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_error] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_break] = ACTIONS(1059), - [anon_sym_continue] = ACTIONS(1059), - [anon_sym_for] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1059), - [anon_sym_loop] = ACTIONS(1059), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_do] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1059), - [anon_sym_match] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(1059), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_try] = ACTIONS(1059), - [anon_sym_return] = ACTIONS(1059), - [anon_sym_source] = ACTIONS(1059), - [anon_sym_source_DASHenv] = ACTIONS(1059), - [anon_sym_register] = ACTIONS(1059), - [anon_sym_hide] = ACTIONS(1059), - [anon_sym_hide_DASHenv] = ACTIONS(1059), - [anon_sym_overlay] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(1059), - [anon_sym_QMARK2] = ACTIONS(1059), - [anon_sym_STAR_STAR] = ACTIONS(1059), - [anon_sym_PLUS_PLUS] = ACTIONS(1059), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_mod] = ACTIONS(1059), - [anon_sym_SLASH_SLASH] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_bit_DASHshl] = ACTIONS(1059), - [anon_sym_bit_DASHshr] = ACTIONS(1059), - [anon_sym_EQ_EQ] = ACTIONS(1059), - [anon_sym_BANG_EQ] = ACTIONS(1059), - [anon_sym_LT2] = ACTIONS(1059), - [anon_sym_LT_EQ] = ACTIONS(1059), - [anon_sym_GT_EQ] = ACTIONS(1059), - [anon_sym_not_DASHin] = ACTIONS(1059), - [anon_sym_starts_DASHwith] = ACTIONS(1059), - [anon_sym_ends_DASHwith] = ACTIONS(1059), - [anon_sym_EQ_TILDE] = ACTIONS(1059), - [anon_sym_BANG_TILDE] = ACTIONS(1059), - [anon_sym_bit_DASHand] = ACTIONS(1059), - [anon_sym_bit_DASHxor] = ACTIONS(1059), - [anon_sym_bit_DASHor] = ACTIONS(1059), - [anon_sym_and] = ACTIONS(1059), - [anon_sym_xor] = ACTIONS(1059), - [anon_sym_or] = ACTIONS(1059), - [anon_sym_not] = ACTIONS(1059), - [anon_sym_DOT_DOT2] = ACTIONS(1059), - [anon_sym_DOT] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1059), - [anon_sym_DOT_DOT_LT] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1061), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1061), - [anon_sym_null] = ACTIONS(1059), - [anon_sym_true] = ACTIONS(1059), - [anon_sym_false] = ACTIONS(1059), - [aux_sym__val_number_decimal_token1] = ACTIONS(1059), - [aux_sym__val_number_decimal_token2] = ACTIONS(1059), - [anon_sym_DOT2] = ACTIONS(1059), - [aux_sym__val_number_decimal_token3] = ACTIONS(1059), - [aux_sym__val_number_token1] = ACTIONS(1059), - [aux_sym__val_number_token2] = ACTIONS(1059), - [aux_sym__val_number_token3] = ACTIONS(1059), - [aux_sym__val_number_token4] = ACTIONS(1059), - [aux_sym__val_number_token5] = ACTIONS(1059), - [aux_sym__val_number_token6] = ACTIONS(1059), - [anon_sym_0b] = ACTIONS(1059), - [anon_sym_0o] = ACTIONS(1059), - [anon_sym_0x] = ACTIONS(1059), - [sym_val_date] = ACTIONS(1059), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym__str_single_quotes] = ACTIONS(1059), - [sym__str_back_ticks] = ACTIONS(1059), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1059), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1059), - [anon_sym_CARET] = ACTIONS(1059), - [anon_sym_POUND] = ACTIONS(113), - }, - [359] = { - [sym_cell_path] = STATE(466), - [sym_path] = STATE(349), - [sym_comment] = STATE(359), - [anon_sym_export] = ACTIONS(1203), - [anon_sym_alias] = ACTIONS(1203), - [anon_sym_let] = ACTIONS(1203), - [anon_sym_let_DASHenv] = ACTIONS(1203), - [anon_sym_mut] = ACTIONS(1203), - [anon_sym_const] = ACTIONS(1203), - [anon_sym_SEMI] = ACTIONS(1203), - [sym_cmd_identifier] = ACTIONS(1203), - [anon_sym_LF] = ACTIONS(1205), - [anon_sym_def] = ACTIONS(1203), - [anon_sym_export_DASHenv] = ACTIONS(1203), - [anon_sym_extern] = ACTIONS(1203), - [anon_sym_module] = ACTIONS(1203), - [anon_sym_use] = ACTIONS(1203), - [anon_sym_LBRACK] = ACTIONS(1203), - [anon_sym_LPAREN] = ACTIONS(1203), - [anon_sym_RPAREN] = ACTIONS(1203), - [anon_sym_DOLLAR] = ACTIONS(1203), - [anon_sym_error] = ACTIONS(1203), - [anon_sym_GT] = ACTIONS(1203), - [anon_sym_DASH_DASH] = ACTIONS(1203), - [anon_sym_DASH] = ACTIONS(1203), - [anon_sym_break] = ACTIONS(1203), - [anon_sym_continue] = ACTIONS(1203), - [anon_sym_for] = ACTIONS(1203), - [anon_sym_in] = ACTIONS(1203), - [anon_sym_loop] = ACTIONS(1203), - [anon_sym_while] = ACTIONS(1203), - [anon_sym_do] = ACTIONS(1203), - [anon_sym_if] = ACTIONS(1203), - [anon_sym_match] = ACTIONS(1203), - [anon_sym_LBRACE] = ACTIONS(1203), - [anon_sym_RBRACE] = ACTIONS(1203), - [anon_sym_DOT_DOT] = ACTIONS(1203), - [anon_sym_try] = ACTIONS(1203), - [anon_sym_return] = ACTIONS(1203), - [anon_sym_source] = ACTIONS(1203), - [anon_sym_source_DASHenv] = ACTIONS(1203), - [anon_sym_register] = ACTIONS(1203), - [anon_sym_hide] = ACTIONS(1203), - [anon_sym_hide_DASHenv] = ACTIONS(1203), - [anon_sym_overlay] = ACTIONS(1203), - [anon_sym_as] = ACTIONS(1203), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_where] = ACTIONS(1203), - [anon_sym_STAR_STAR] = ACTIONS(1203), - [anon_sym_PLUS_PLUS] = ACTIONS(1203), - [anon_sym_SLASH] = ACTIONS(1203), - [anon_sym_mod] = ACTIONS(1203), - [anon_sym_SLASH_SLASH] = ACTIONS(1203), - [anon_sym_PLUS] = ACTIONS(1203), - [anon_sym_bit_DASHshl] = ACTIONS(1203), - [anon_sym_bit_DASHshr] = ACTIONS(1203), - [anon_sym_EQ_EQ] = ACTIONS(1203), - [anon_sym_BANG_EQ] = ACTIONS(1203), - [anon_sym_LT2] = ACTIONS(1203), - [anon_sym_LT_EQ] = ACTIONS(1203), - [anon_sym_GT_EQ] = ACTIONS(1203), - [anon_sym_not_DASHin] = ACTIONS(1203), - [anon_sym_starts_DASHwith] = ACTIONS(1203), - [anon_sym_ends_DASHwith] = ACTIONS(1203), - [anon_sym_EQ_TILDE] = ACTIONS(1203), - [anon_sym_BANG_TILDE] = ACTIONS(1203), - [anon_sym_bit_DASHand] = ACTIONS(1203), - [anon_sym_bit_DASHxor] = ACTIONS(1203), - [anon_sym_bit_DASHor] = ACTIONS(1203), - [anon_sym_and] = ACTIONS(1203), - [anon_sym_xor] = ACTIONS(1203), - [anon_sym_or] = ACTIONS(1203), - [anon_sym_not] = ACTIONS(1203), - [anon_sym_DOT] = ACTIONS(1152), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1203), - [anon_sym_DOT_DOT_LT] = ACTIONS(1203), - [anon_sym_null] = ACTIONS(1203), - [anon_sym_true] = ACTIONS(1203), - [anon_sym_false] = ACTIONS(1203), - [aux_sym__val_number_decimal_token1] = ACTIONS(1203), - [aux_sym__val_number_decimal_token2] = ACTIONS(1203), - [anon_sym_DOT2] = ACTIONS(1203), - [aux_sym__val_number_decimal_token3] = ACTIONS(1203), - [aux_sym__val_number_token1] = ACTIONS(1203), - [aux_sym__val_number_token2] = ACTIONS(1203), - [aux_sym__val_number_token3] = ACTIONS(1203), - [aux_sym__val_number_token4] = ACTIONS(1203), - [aux_sym__val_number_token5] = ACTIONS(1203), - [aux_sym__val_number_token6] = ACTIONS(1203), - [anon_sym_0b] = ACTIONS(1203), - [anon_sym_0o] = ACTIONS(1203), - [anon_sym_0x] = ACTIONS(1203), - [sym_val_date] = ACTIONS(1203), - [anon_sym_DQUOTE] = ACTIONS(1203), - [sym__str_single_quotes] = ACTIONS(1203), - [sym__str_back_ticks] = ACTIONS(1203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1203), - [anon_sym_CARET] = ACTIONS(1203), - [anon_sym_POUND] = ACTIONS(113), - }, - [360] = { - [sym_comment] = STATE(360), - [anon_sym_export] = ACTIONS(1063), - [anon_sym_alias] = ACTIONS(1063), - [anon_sym_let] = ACTIONS(1063), - [anon_sym_let_DASHenv] = ACTIONS(1063), - [anon_sym_mut] = ACTIONS(1063), - [anon_sym_const] = ACTIONS(1063), - [anon_sym_SEMI] = ACTIONS(1063), - [sym_cmd_identifier] = ACTIONS(1063), - [anon_sym_LF] = ACTIONS(1065), - [anon_sym_def] = ACTIONS(1063), - [anon_sym_export_DASHenv] = ACTIONS(1063), - [anon_sym_extern] = ACTIONS(1063), - [anon_sym_module] = ACTIONS(1063), - [anon_sym_use] = ACTIONS(1063), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_RPAREN] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_error] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_break] = ACTIONS(1063), - [anon_sym_continue] = ACTIONS(1063), - [anon_sym_for] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1063), - [anon_sym_loop] = ACTIONS(1063), - [anon_sym_while] = ACTIONS(1063), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_if] = ACTIONS(1063), - [anon_sym_match] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_RBRACE] = ACTIONS(1063), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1063), - [anon_sym_return] = ACTIONS(1063), - [anon_sym_source] = ACTIONS(1063), - [anon_sym_source_DASHenv] = ACTIONS(1063), - [anon_sym_register] = ACTIONS(1063), - [anon_sym_hide] = ACTIONS(1063), - [anon_sym_hide_DASHenv] = ACTIONS(1063), - [anon_sym_overlay] = ACTIONS(1063), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_where] = ACTIONS(1063), - [anon_sym_QMARK2] = ACTIONS(1063), - [anon_sym_STAR_STAR] = ACTIONS(1063), - [anon_sym_PLUS_PLUS] = ACTIONS(1063), - [anon_sym_SLASH] = ACTIONS(1063), - [anon_sym_mod] = ACTIONS(1063), - [anon_sym_SLASH_SLASH] = ACTIONS(1063), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_bit_DASHshl] = ACTIONS(1063), - [anon_sym_bit_DASHshr] = ACTIONS(1063), - [anon_sym_EQ_EQ] = ACTIONS(1063), - [anon_sym_BANG_EQ] = ACTIONS(1063), - [anon_sym_LT2] = ACTIONS(1063), - [anon_sym_LT_EQ] = ACTIONS(1063), - [anon_sym_GT_EQ] = ACTIONS(1063), - [anon_sym_not_DASHin] = ACTIONS(1063), - [anon_sym_starts_DASHwith] = ACTIONS(1063), - [anon_sym_ends_DASHwith] = ACTIONS(1063), - [anon_sym_EQ_TILDE] = ACTIONS(1063), - [anon_sym_BANG_TILDE] = ACTIONS(1063), - [anon_sym_bit_DASHand] = ACTIONS(1063), - [anon_sym_bit_DASHxor] = ACTIONS(1063), - [anon_sym_bit_DASHor] = ACTIONS(1063), - [anon_sym_and] = ACTIONS(1063), - [anon_sym_xor] = ACTIONS(1063), - [anon_sym_or] = ACTIONS(1063), - [anon_sym_not] = ACTIONS(1063), - [anon_sym_DOT_DOT2] = ACTIONS(1063), - [anon_sym_DOT] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1063), - [anon_sym_DOT_DOT_LT] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1065), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1065), - [anon_sym_null] = ACTIONS(1063), - [anon_sym_true] = ACTIONS(1063), - [anon_sym_false] = ACTIONS(1063), - [aux_sym__val_number_decimal_token1] = ACTIONS(1063), - [aux_sym__val_number_decimal_token2] = ACTIONS(1063), - [anon_sym_DOT2] = ACTIONS(1063), - [aux_sym__val_number_decimal_token3] = ACTIONS(1063), - [aux_sym__val_number_token1] = ACTIONS(1063), - [aux_sym__val_number_token2] = ACTIONS(1063), - [aux_sym__val_number_token3] = ACTIONS(1063), - [aux_sym__val_number_token4] = ACTIONS(1063), - [aux_sym__val_number_token5] = ACTIONS(1063), - [aux_sym__val_number_token6] = ACTIONS(1063), - [anon_sym_0b] = ACTIONS(1063), - [anon_sym_0o] = ACTIONS(1063), - [anon_sym_0x] = ACTIONS(1063), - [sym_val_date] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [sym__str_single_quotes] = ACTIONS(1063), - [sym__str_back_ticks] = ACTIONS(1063), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1063), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1063), - [anon_sym_CARET] = ACTIONS(1063), - [anon_sym_POUND] = ACTIONS(113), - }, [361] = { - [sym_path] = STATE(397), [sym_comment] = STATE(361), - [aux_sym_cell_path_repeat1] = STATE(344), - [ts_builtin_sym_end] = ACTIONS(989), - [anon_sym_export] = ACTIONS(987), - [anon_sym_alias] = ACTIONS(987), - [anon_sym_let] = ACTIONS(987), - [anon_sym_let_DASHenv] = ACTIONS(987), - [anon_sym_mut] = ACTIONS(987), - [anon_sym_const] = ACTIONS(987), - [anon_sym_SEMI] = ACTIONS(987), - [sym_cmd_identifier] = ACTIONS(987), - [anon_sym_LF] = ACTIONS(989), - [anon_sym_def] = ACTIONS(987), - [anon_sym_export_DASHenv] = ACTIONS(987), - [anon_sym_extern] = ACTIONS(987), - [anon_sym_module] = ACTIONS(987), - [anon_sym_use] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(987), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_DOLLAR] = ACTIONS(987), - [anon_sym_error] = ACTIONS(987), - [anon_sym_GT] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_break] = ACTIONS(987), - [anon_sym_continue] = ACTIONS(987), - [anon_sym_for] = ACTIONS(987), - [anon_sym_in] = ACTIONS(987), - [anon_sym_loop] = ACTIONS(987), - [anon_sym_while] = ACTIONS(987), - [anon_sym_do] = ACTIONS(987), - [anon_sym_if] = ACTIONS(987), - [anon_sym_match] = ACTIONS(987), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_DOT_DOT] = ACTIONS(987), - [anon_sym_try] = ACTIONS(987), - [anon_sym_return] = ACTIONS(987), - [anon_sym_source] = ACTIONS(987), - [anon_sym_source_DASHenv] = ACTIONS(987), - [anon_sym_register] = ACTIONS(987), - [anon_sym_hide] = ACTIONS(987), - [anon_sym_hide_DASHenv] = ACTIONS(987), - [anon_sym_overlay] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(987), - [anon_sym_where] = ACTIONS(987), - [anon_sym_STAR_STAR] = ACTIONS(987), - [anon_sym_PLUS_PLUS] = ACTIONS(987), - [anon_sym_SLASH] = ACTIONS(987), - [anon_sym_mod] = ACTIONS(987), - [anon_sym_SLASH_SLASH] = ACTIONS(987), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_bit_DASHshl] = ACTIONS(987), - [anon_sym_bit_DASHshr] = ACTIONS(987), - [anon_sym_EQ_EQ] = ACTIONS(987), - [anon_sym_BANG_EQ] = ACTIONS(987), - [anon_sym_LT2] = ACTIONS(987), - [anon_sym_LT_EQ] = ACTIONS(987), - [anon_sym_GT_EQ] = ACTIONS(987), - [anon_sym_not_DASHin] = ACTIONS(987), - [anon_sym_starts_DASHwith] = ACTIONS(987), - [anon_sym_ends_DASHwith] = ACTIONS(987), - [anon_sym_EQ_TILDE] = ACTIONS(987), - [anon_sym_BANG_TILDE] = ACTIONS(987), - [anon_sym_bit_DASHand] = ACTIONS(987), - [anon_sym_bit_DASHxor] = ACTIONS(987), - [anon_sym_bit_DASHor] = ACTIONS(987), - [anon_sym_and] = ACTIONS(987), - [anon_sym_xor] = ACTIONS(987), - [anon_sym_or] = ACTIONS(987), - [anon_sym_not] = ACTIONS(987), - [anon_sym_DOT_DOT2] = ACTIONS(987), - [anon_sym_DOT] = ACTIONS(1166), - [anon_sym_DOT_DOT_EQ] = ACTIONS(987), - [anon_sym_DOT_DOT_LT] = ACTIONS(987), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(989), - [anon_sym_DOT_DOT_LT2] = ACTIONS(989), - [anon_sym_null] = ACTIONS(987), - [anon_sym_true] = ACTIONS(987), - [anon_sym_false] = ACTIONS(987), - [aux_sym__val_number_decimal_token1] = ACTIONS(987), - [aux_sym__val_number_decimal_token2] = ACTIONS(987), - [anon_sym_DOT2] = ACTIONS(987), - [aux_sym__val_number_decimal_token3] = ACTIONS(987), - [aux_sym__val_number_token1] = ACTIONS(987), - [aux_sym__val_number_token2] = ACTIONS(987), - [aux_sym__val_number_token3] = ACTIONS(987), - [aux_sym__val_number_token4] = ACTIONS(987), - [aux_sym__val_number_token5] = ACTIONS(987), - [aux_sym__val_number_token6] = ACTIONS(987), - [anon_sym_0b] = ACTIONS(987), - [anon_sym_0o] = ACTIONS(987), - [anon_sym_0x] = ACTIONS(987), - [sym_val_date] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(987), - [sym__str_single_quotes] = ACTIONS(987), - [sym__str_back_ticks] = ACTIONS(987), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(987), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), + [anon_sym_export] = ACTIONS(1179), + [anon_sym_alias] = ACTIONS(1179), + [anon_sym_let] = ACTIONS(1179), + [anon_sym_let_DASHenv] = ACTIONS(1179), + [anon_sym_mut] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1179), + [sym_cmd_identifier] = ACTIONS(1179), + [anon_sym_LF] = ACTIONS(1181), + [anon_sym_def] = ACTIONS(1179), + [anon_sym_export_DASHenv] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_use] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_RPAREN] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_error] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1183), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1193), + [anon_sym_loop] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_source] = ACTIONS(1179), + [anon_sym_source_DASHenv] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), + [anon_sym_hide_DASHenv] = ACTIONS(1179), + [anon_sym_overlay] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_where] = ACTIONS(1179), + [anon_sym_STAR_STAR] = ACTIONS(1189), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_SLASH] = ACTIONS(1187), + [anon_sym_mod] = ACTIONS(1187), + [anon_sym_SLASH_SLASH] = ACTIONS(1187), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_bit_DASHshl] = ACTIONS(1191), + [anon_sym_bit_DASHshr] = ACTIONS(1191), + [anon_sym_EQ_EQ] = ACTIONS(1183), + [anon_sym_BANG_EQ] = ACTIONS(1183), + [anon_sym_LT2] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1183), + [anon_sym_GT_EQ] = ACTIONS(1183), + [anon_sym_not_DASHin] = ACTIONS(1193), + [anon_sym_starts_DASHwith] = ACTIONS(1193), + [anon_sym_ends_DASHwith] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1179), + [anon_sym_BANG_TILDE] = ACTIONS(1179), + [anon_sym_bit_DASHand] = ACTIONS(1179), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_not] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1179), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), + [anon_sym_CARET] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, [362] = { [sym_comment] = STATE(362), - [ts_builtin_sym_end] = ACTIONS(911), - [anon_sym_export] = ACTIONS(909), - [anon_sym_alias] = ACTIONS(909), - [anon_sym_let] = ACTIONS(909), - [anon_sym_let_DASHenv] = ACTIONS(909), - [anon_sym_mut] = ACTIONS(909), - [anon_sym_const] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(909), - [sym_cmd_identifier] = ACTIONS(909), - [anon_sym_LF] = ACTIONS(911), - [anon_sym_def] = ACTIONS(909), - [anon_sym_export_DASHenv] = ACTIONS(909), - [anon_sym_extern] = ACTIONS(909), - [anon_sym_module] = ACTIONS(909), - [anon_sym_use] = ACTIONS(909), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_error] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_break] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_for] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_loop] = ACTIONS(909), - [anon_sym_while] = ACTIONS(909), - [anon_sym_do] = ACTIONS(909), - [anon_sym_if] = ACTIONS(909), - [anon_sym_match] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_DOT_DOT] = ACTIONS(909), - [anon_sym_try] = ACTIONS(909), - [anon_sym_return] = ACTIONS(909), - [anon_sym_source] = ACTIONS(909), - [anon_sym_source_DASHenv] = ACTIONS(909), - [anon_sym_register] = ACTIONS(909), - [anon_sym_hide] = ACTIONS(909), - [anon_sym_hide_DASHenv] = ACTIONS(909), - [anon_sym_overlay] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_where] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(909), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(909), - [anon_sym_SLASH_SLASH] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(909), - [anon_sym_bit_DASHshr] = ACTIONS(909), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_not_DASHin] = ACTIONS(909), - [anon_sym_starts_DASHwith] = ACTIONS(909), - [anon_sym_ends_DASHwith] = ACTIONS(909), - [anon_sym_EQ_TILDE] = ACTIONS(909), - [anon_sym_BANG_TILDE] = ACTIONS(909), - [anon_sym_bit_DASHand] = ACTIONS(909), - [anon_sym_bit_DASHxor] = ACTIONS(909), - [anon_sym_bit_DASHor] = ACTIONS(909), - [anon_sym_and] = ACTIONS(909), - [anon_sym_xor] = ACTIONS(909), - [anon_sym_or] = ACTIONS(909), - [anon_sym_not] = ACTIONS(909), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [anon_sym_null] = ACTIONS(909), - [anon_sym_true] = ACTIONS(909), - [anon_sym_false] = ACTIONS(909), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(909), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(909), - [aux_sym__val_number_token1] = ACTIONS(909), - [aux_sym__val_number_token2] = ACTIONS(909), - [aux_sym__val_number_token3] = ACTIONS(909), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(909), - [aux_sym__val_number_token6] = ACTIONS(909), - [anon_sym_0b] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(909), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym__str_single_quotes] = ACTIONS(909), - [sym__str_back_ticks] = ACTIONS(909), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), - [anon_sym_CARET] = ACTIONS(909), - [anon_sym_POUND] = ACTIONS(113), - }, - [363] = { - [sym_cell_path] = STATE(582), - [sym_path] = STATE(371), - [sym_comment] = STATE(363), - [anon_sym_export] = ACTIONS(1010), - [anon_sym_alias] = ACTIONS(1010), - [anon_sym_EQ] = ACTIONS(1010), - [anon_sym_let] = ACTIONS(1010), - [anon_sym_let_DASHenv] = ACTIONS(1010), - [anon_sym_mut] = ACTIONS(1010), - [anon_sym_const] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1010), - [sym_cmd_identifier] = ACTIONS(1010), - [anon_sym_LF] = ACTIONS(1012), - [anon_sym_def] = ACTIONS(1010), - [anon_sym_export_DASHenv] = ACTIONS(1010), - [anon_sym_extern] = ACTIONS(1010), - [anon_sym_module] = ACTIONS(1010), - [anon_sym_use] = ACTIONS(1010), - [anon_sym_COLON] = ACTIONS(1010), - [anon_sym_COMMA] = ACTIONS(1010), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_PIPE] = ACTIONS(1010), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_error] = ACTIONS(1010), - [anon_sym_list] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1010), - [anon_sym_continue] = ACTIONS(1010), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_in] = ACTIONS(1010), - [anon_sym_loop] = ACTIONS(1010), - [anon_sym_make] = ACTIONS(1010), - [anon_sym_while] = ACTIONS(1010), - [anon_sym_do] = ACTIONS(1010), - [anon_sym_if] = ACTIONS(1010), - [anon_sym_else] = ACTIONS(1010), - [anon_sym_match] = ACTIONS(1010), - [anon_sym_RBRACE] = ACTIONS(1010), - [anon_sym_try] = ACTIONS(1010), - [anon_sym_catch] = ACTIONS(1010), - [anon_sym_return] = ACTIONS(1010), - [anon_sym_source] = ACTIONS(1010), - [anon_sym_source_DASHenv] = ACTIONS(1010), - [anon_sym_register] = ACTIONS(1010), - [anon_sym_hide] = ACTIONS(1010), - [anon_sym_hide_DASHenv] = ACTIONS(1010), - [anon_sym_overlay] = ACTIONS(1010), - [anon_sym_new] = ACTIONS(1010), - [anon_sym_as] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1010), - [anon_sym_PLUS_EQ] = ACTIONS(1010), - [anon_sym_DASH_EQ] = ACTIONS(1010), - [anon_sym_STAR_EQ] = ACTIONS(1010), - [anon_sym_SLASH_EQ] = ACTIONS(1010), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1010), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_SLASH] = ACTIONS(1010), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT2] = ACTIONS(1010), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT_EQ] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_DOT_DOT2] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(1207), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), - [aux_sym__val_number_decimal_token1] = ACTIONS(1010), - [aux_sym__val_number_decimal_token2] = ACTIONS(1010), - [anon_sym_DOT2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = 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(1010), - [aux_sym__val_number_token5] = ACTIONS(1010), - [aux_sym__val_number_token6] = ACTIONS(1010), - [anon_sym_DQUOTE] = ACTIONS(1010), - [sym__str_single_quotes] = ACTIONS(1010), - [sym__str_back_ticks] = ACTIONS(1010), - [aux_sym__record_key_token2] = ACTIONS(1010), - [anon_sym_POUND] = ACTIONS(113), - }, - [364] = { - [sym_comment] = STATE(364), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_error] = ACTIONS(936), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_RBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_as] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_where] = ACTIONS(936), - [anon_sym_STAR_STAR] = ACTIONS(936), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(936), - [anon_sym_SLASH_SLASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(936), - [anon_sym_bit_DASHshr] = ACTIONS(936), - [anon_sym_EQ_EQ] = ACTIONS(936), - [anon_sym_BANG_EQ] = ACTIONS(936), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(936), - [anon_sym_GT_EQ] = ACTIONS(936), - [anon_sym_not_DASHin] = ACTIONS(936), - [anon_sym_starts_DASHwith] = ACTIONS(936), - [anon_sym_ends_DASHwith] = ACTIONS(936), - [anon_sym_EQ_TILDE] = ACTIONS(936), - [anon_sym_BANG_TILDE] = ACTIONS(936), - [anon_sym_bit_DASHand] = ACTIONS(936), - [anon_sym_bit_DASHxor] = ACTIONS(936), - [anon_sym_bit_DASHor] = ACTIONS(936), - [anon_sym_and] = ACTIONS(936), - [anon_sym_xor] = ACTIONS(936), - [anon_sym_or] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [aux_sym__immediate_decimal_token1] = ACTIONS(1209), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [aux_sym_unquoted_token2] = ACTIONS(1211), - [anon_sym_POUND] = ACTIONS(113), - }, - [365] = { - [sym_comment] = STATE(365), - [ts_builtin_sym_end] = ACTIONS(919), - [anon_sym_export] = ACTIONS(917), - [anon_sym_alias] = ACTIONS(917), - [anon_sym_let] = ACTIONS(917), - [anon_sym_let_DASHenv] = ACTIONS(917), - [anon_sym_mut] = ACTIONS(917), - [anon_sym_const] = ACTIONS(917), - [anon_sym_SEMI] = ACTIONS(917), - [sym_cmd_identifier] = ACTIONS(917), - [anon_sym_LF] = ACTIONS(919), - [anon_sym_def] = ACTIONS(917), - [anon_sym_export_DASHenv] = ACTIONS(917), - [anon_sym_extern] = ACTIONS(917), - [anon_sym_module] = ACTIONS(917), - [anon_sym_use] = ACTIONS(917), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_LPAREN] = ACTIONS(917), - [anon_sym_DOLLAR] = ACTIONS(917), - [anon_sym_error] = ACTIONS(917), - [anon_sym_GT] = ACTIONS(917), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_break] = ACTIONS(917), - [anon_sym_continue] = ACTIONS(917), - [anon_sym_for] = ACTIONS(917), - [anon_sym_in] = ACTIONS(917), - [anon_sym_loop] = ACTIONS(917), - [anon_sym_while] = ACTIONS(917), - [anon_sym_do] = ACTIONS(917), - [anon_sym_if] = ACTIONS(917), - [anon_sym_match] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(917), - [anon_sym_DOT_DOT] = ACTIONS(917), - [anon_sym_try] = ACTIONS(917), - [anon_sym_return] = ACTIONS(917), - [anon_sym_source] = ACTIONS(917), - [anon_sym_source_DASHenv] = ACTIONS(917), - [anon_sym_register] = ACTIONS(917), - [anon_sym_hide] = ACTIONS(917), - [anon_sym_hide_DASHenv] = ACTIONS(917), - [anon_sym_overlay] = ACTIONS(917), - [anon_sym_STAR] = ACTIONS(917), - [anon_sym_where] = ACTIONS(917), - [anon_sym_STAR_STAR] = ACTIONS(917), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_mod] = ACTIONS(917), - [anon_sym_SLASH_SLASH] = ACTIONS(917), - [anon_sym_PLUS] = ACTIONS(917), - [anon_sym_bit_DASHshl] = ACTIONS(917), - [anon_sym_bit_DASHshr] = ACTIONS(917), - [anon_sym_EQ_EQ] = ACTIONS(917), - [anon_sym_BANG_EQ] = ACTIONS(917), - [anon_sym_LT2] = ACTIONS(917), - [anon_sym_LT_EQ] = ACTIONS(917), - [anon_sym_GT_EQ] = ACTIONS(917), - [anon_sym_not_DASHin] = ACTIONS(917), - [anon_sym_starts_DASHwith] = ACTIONS(917), - [anon_sym_ends_DASHwith] = ACTIONS(917), - [anon_sym_EQ_TILDE] = ACTIONS(917), - [anon_sym_BANG_TILDE] = ACTIONS(917), - [anon_sym_bit_DASHand] = ACTIONS(917), - [anon_sym_bit_DASHxor] = ACTIONS(917), - [anon_sym_bit_DASHor] = ACTIONS(917), - [anon_sym_and] = ACTIONS(917), - [anon_sym_xor] = ACTIONS(917), - [anon_sym_or] = ACTIONS(917), - [anon_sym_not] = ACTIONS(917), - [anon_sym_DOT_DOT2] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ] = ACTIONS(917), - [anon_sym_DOT_DOT_LT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(919), - [anon_sym_DOT_DOT_LT2] = ACTIONS(919), - [anon_sym_null] = ACTIONS(917), - [anon_sym_true] = ACTIONS(917), - [anon_sym_false] = ACTIONS(917), - [aux_sym__val_number_decimal_token1] = ACTIONS(917), - [aux_sym__val_number_decimal_token2] = ACTIONS(917), - [anon_sym_DOT2] = ACTIONS(917), - [aux_sym__val_number_decimal_token3] = ACTIONS(917), - [aux_sym__val_number_token1] = ACTIONS(917), - [aux_sym__val_number_token2] = ACTIONS(917), - [aux_sym__val_number_token3] = ACTIONS(917), - [aux_sym__val_number_token4] = ACTIONS(917), - [aux_sym__val_number_token5] = ACTIONS(917), - [aux_sym__val_number_token6] = ACTIONS(917), - [anon_sym_0b] = ACTIONS(917), - [sym_filesize_unit] = ACTIONS(917), - [sym_duration_unit] = ACTIONS(917), - [anon_sym_0o] = ACTIONS(917), - [anon_sym_0x] = ACTIONS(917), - [sym_val_date] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(917), - [sym__str_single_quotes] = ACTIONS(917), - [sym__str_back_ticks] = ACTIONS(917), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(917), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(917), - [anon_sym_CARET] = ACTIONS(917), - [anon_sym_POUND] = ACTIONS(113), - }, - [366] = { - [sym_comment] = STATE(366), - [ts_builtin_sym_end] = ACTIONS(952), - [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), - [anon_sym_SEMI] = ACTIONS(950), - [sym_cmd_identifier] = ACTIONS(950), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(950), - [anon_sym_LPAREN] = ACTIONS(950), - [anon_sym_DOLLAR] = ACTIONS(950), - [anon_sym_error] = ACTIONS(950), - [anon_sym_GT] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(950), - [anon_sym_break] = ACTIONS(950), - [anon_sym_continue] = ACTIONS(950), - [anon_sym_for] = ACTIONS(950), - [anon_sym_in] = ACTIONS(950), - [anon_sym_loop] = ACTIONS(950), - [anon_sym_while] = ACTIONS(950), - [anon_sym_do] = ACTIONS(950), - [anon_sym_if] = ACTIONS(950), - [anon_sym_match] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(950), - [anon_sym_DOT_DOT] = ACTIONS(950), - [anon_sym_try] = ACTIONS(950), - [anon_sym_return] = ACTIONS(950), - [anon_sym_source] = ACTIONS(950), - [anon_sym_source_DASHenv] = ACTIONS(950), - [anon_sym_register] = ACTIONS(950), - [anon_sym_hide] = ACTIONS(950), - [anon_sym_hide_DASHenv] = ACTIONS(950), - [anon_sym_overlay] = ACTIONS(950), - [anon_sym_STAR] = ACTIONS(950), - [anon_sym_where] = ACTIONS(950), - [anon_sym_STAR_STAR] = ACTIONS(950), - [anon_sym_PLUS_PLUS] = ACTIONS(950), - [anon_sym_SLASH] = ACTIONS(950), - [anon_sym_mod] = ACTIONS(950), - [anon_sym_SLASH_SLASH] = ACTIONS(950), - [anon_sym_PLUS] = ACTIONS(950), - [anon_sym_bit_DASHshl] = ACTIONS(950), - [anon_sym_bit_DASHshr] = ACTIONS(950), - [anon_sym_EQ_EQ] = ACTIONS(950), - [anon_sym_BANG_EQ] = ACTIONS(950), - [anon_sym_LT2] = ACTIONS(950), - [anon_sym_LT_EQ] = ACTIONS(950), - [anon_sym_GT_EQ] = ACTIONS(950), - [anon_sym_not_DASHin] = ACTIONS(950), - [anon_sym_starts_DASHwith] = ACTIONS(950), - [anon_sym_ends_DASHwith] = ACTIONS(950), - [anon_sym_EQ_TILDE] = ACTIONS(950), - [anon_sym_BANG_TILDE] = ACTIONS(950), - [anon_sym_bit_DASHand] = ACTIONS(950), - [anon_sym_bit_DASHxor] = ACTIONS(950), - [anon_sym_bit_DASHor] = ACTIONS(950), - [anon_sym_and] = ACTIONS(950), - [anon_sym_xor] = ACTIONS(950), - [anon_sym_or] = ACTIONS(950), - [anon_sym_not] = ACTIONS(950), - [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(950), - [anon_sym_true] = ACTIONS(950), - [anon_sym_false] = ACTIONS(950), - [aux_sym__val_number_decimal_token1] = ACTIONS(950), - [aux_sym__val_number_decimal_token2] = ACTIONS(950), - [anon_sym_DOT2] = ACTIONS(950), - [aux_sym__val_number_decimal_token3] = ACTIONS(950), - [aux_sym__val_number_token1] = ACTIONS(950), - [aux_sym__val_number_token2] = ACTIONS(950), - [aux_sym__val_number_token3] = ACTIONS(950), - [aux_sym__val_number_token4] = ACTIONS(950), - [aux_sym__val_number_token5] = ACTIONS(950), - [aux_sym__val_number_token6] = ACTIONS(950), - [anon_sym_0b] = ACTIONS(950), - [sym_filesize_unit] = ACTIONS(950), - [sym_duration_unit] = ACTIONS(950), - [anon_sym_0o] = ACTIONS(950), - [anon_sym_0x] = ACTIONS(950), - [sym_val_date] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym__str_single_quotes] = ACTIONS(950), - [sym__str_back_ticks] = ACTIONS(950), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(950), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(950), - [anon_sym_CARET] = ACTIONS(950), - [anon_sym_POUND] = ACTIONS(113), - }, - [367] = { - [sym_cell_path] = STATE(606), - [sym_path] = STATE(384), - [sym_comment] = STATE(367), - [ts_builtin_sym_end] = ACTIONS(1192), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_alias] = ACTIONS(1190), - [anon_sym_let] = ACTIONS(1190), - [anon_sym_let_DASHenv] = ACTIONS(1190), - [anon_sym_mut] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1190), - [anon_sym_SEMI] = ACTIONS(1190), - [sym_cmd_identifier] = ACTIONS(1190), - [anon_sym_LF] = ACTIONS(1192), - [anon_sym_def] = ACTIONS(1190), - [anon_sym_export_DASHenv] = ACTIONS(1190), - [anon_sym_extern] = ACTIONS(1190), - [anon_sym_module] = ACTIONS(1190), - [anon_sym_use] = ACTIONS(1190), - [anon_sym_LBRACK] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(1190), - [anon_sym_DOLLAR] = ACTIONS(1190), - [anon_sym_error] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1190), - [anon_sym_DASH_DASH] = ACTIONS(1190), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_in] = ACTIONS(1190), - [anon_sym_loop] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [anon_sym_do] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_match] = ACTIONS(1190), - [anon_sym_LBRACE] = ACTIONS(1190), - [anon_sym_DOT_DOT] = ACTIONS(1190), - [anon_sym_try] = ACTIONS(1190), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_source] = ACTIONS(1190), - [anon_sym_source_DASHenv] = ACTIONS(1190), - [anon_sym_register] = ACTIONS(1190), - [anon_sym_hide] = ACTIONS(1190), - [anon_sym_hide_DASHenv] = ACTIONS(1190), - [anon_sym_overlay] = ACTIONS(1190), - [anon_sym_as] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1190), - [anon_sym_where] = ACTIONS(1190), - [anon_sym_STAR_STAR] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1190), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_mod] = ACTIONS(1190), - [anon_sym_SLASH_SLASH] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_bit_DASHshl] = ACTIONS(1190), - [anon_sym_bit_DASHshr] = ACTIONS(1190), - [anon_sym_EQ_EQ] = ACTIONS(1190), - [anon_sym_BANG_EQ] = ACTIONS(1190), - [anon_sym_LT2] = ACTIONS(1190), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_not_DASHin] = ACTIONS(1190), - [anon_sym_starts_DASHwith] = ACTIONS(1190), - [anon_sym_ends_DASHwith] = ACTIONS(1190), - [anon_sym_EQ_TILDE] = ACTIONS(1190), - [anon_sym_BANG_TILDE] = ACTIONS(1190), - [anon_sym_bit_DASHand] = ACTIONS(1190), - [anon_sym_bit_DASHxor] = ACTIONS(1190), - [anon_sym_bit_DASHor] = ACTIONS(1190), - [anon_sym_and] = ACTIONS(1190), - [anon_sym_xor] = ACTIONS(1190), - [anon_sym_or] = ACTIONS(1190), - [anon_sym_not] = ACTIONS(1190), - [anon_sym_DOT] = ACTIONS(1213), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1190), - [anon_sym_DOT_DOT_LT] = ACTIONS(1190), - [anon_sym_null] = ACTIONS(1190), - [anon_sym_true] = ACTIONS(1190), - [anon_sym_false] = ACTIONS(1190), - [aux_sym__val_number_decimal_token1] = ACTIONS(1190), - [aux_sym__val_number_decimal_token2] = ACTIONS(1190), - [anon_sym_DOT2] = ACTIONS(1190), - [aux_sym__val_number_decimal_token3] = ACTIONS(1190), - [aux_sym__val_number_token1] = ACTIONS(1190), - [aux_sym__val_number_token2] = ACTIONS(1190), - [aux_sym__val_number_token3] = ACTIONS(1190), - [aux_sym__val_number_token4] = ACTIONS(1190), - [aux_sym__val_number_token5] = ACTIONS(1190), - [aux_sym__val_number_token6] = ACTIONS(1190), - [anon_sym_0b] = ACTIONS(1190), - [anon_sym_0o] = ACTIONS(1190), - [anon_sym_0x] = ACTIONS(1190), - [sym_val_date] = ACTIONS(1190), - [anon_sym_DQUOTE] = ACTIONS(1190), - [sym__str_single_quotes] = ACTIONS(1190), - [sym__str_back_ticks] = ACTIONS(1190), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1190), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1190), - [anon_sym_POUND] = ACTIONS(113), - }, - [368] = { - [sym_cell_path] = STATE(609), - [sym_path] = STATE(384), - [sym_comment] = STATE(368), - [ts_builtin_sym_end] = ACTIONS(1150), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_alias] = ACTIONS(1148), - [anon_sym_let] = ACTIONS(1148), - [anon_sym_let_DASHenv] = ACTIONS(1148), - [anon_sym_mut] = ACTIONS(1148), - [anon_sym_const] = ACTIONS(1148), - [anon_sym_SEMI] = ACTIONS(1148), - [sym_cmd_identifier] = ACTIONS(1148), - [anon_sym_LF] = ACTIONS(1150), - [anon_sym_def] = ACTIONS(1148), - [anon_sym_export_DASHenv] = ACTIONS(1148), - [anon_sym_extern] = ACTIONS(1148), - [anon_sym_module] = ACTIONS(1148), - [anon_sym_use] = ACTIONS(1148), - [anon_sym_LBRACK] = ACTIONS(1148), - [anon_sym_LPAREN] = ACTIONS(1148), - [anon_sym_DOLLAR] = ACTIONS(1148), - [anon_sym_error] = ACTIONS(1148), - [anon_sym_GT] = ACTIONS(1148), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_DASH] = ACTIONS(1148), - [anon_sym_break] = ACTIONS(1148), - [anon_sym_continue] = ACTIONS(1148), - [anon_sym_for] = ACTIONS(1148), - [anon_sym_in] = ACTIONS(1148), - [anon_sym_loop] = ACTIONS(1148), - [anon_sym_while] = ACTIONS(1148), - [anon_sym_do] = ACTIONS(1148), - [anon_sym_if] = ACTIONS(1148), - [anon_sym_match] = ACTIONS(1148), - [anon_sym_LBRACE] = ACTIONS(1148), - [anon_sym_DOT_DOT] = ACTIONS(1148), - [anon_sym_try] = ACTIONS(1148), - [anon_sym_return] = ACTIONS(1148), - [anon_sym_source] = ACTIONS(1148), - [anon_sym_source_DASHenv] = ACTIONS(1148), - [anon_sym_register] = ACTIONS(1148), - [anon_sym_hide] = ACTIONS(1148), - [anon_sym_hide_DASHenv] = ACTIONS(1148), - [anon_sym_overlay] = ACTIONS(1148), - [anon_sym_as] = ACTIONS(1148), - [anon_sym_STAR] = ACTIONS(1148), - [anon_sym_where] = ACTIONS(1148), - [anon_sym_STAR_STAR] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_SLASH] = ACTIONS(1148), - [anon_sym_mod] = ACTIONS(1148), - [anon_sym_SLASH_SLASH] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1148), - [anon_sym_bit_DASHshl] = ACTIONS(1148), - [anon_sym_bit_DASHshr] = ACTIONS(1148), - [anon_sym_EQ_EQ] = ACTIONS(1148), - [anon_sym_BANG_EQ] = ACTIONS(1148), - [anon_sym_LT2] = ACTIONS(1148), - [anon_sym_LT_EQ] = ACTIONS(1148), - [anon_sym_GT_EQ] = ACTIONS(1148), - [anon_sym_not_DASHin] = ACTIONS(1148), - [anon_sym_starts_DASHwith] = ACTIONS(1148), - [anon_sym_ends_DASHwith] = ACTIONS(1148), - [anon_sym_EQ_TILDE] = ACTIONS(1148), - [anon_sym_BANG_TILDE] = ACTIONS(1148), - [anon_sym_bit_DASHand] = ACTIONS(1148), - [anon_sym_bit_DASHxor] = ACTIONS(1148), - [anon_sym_bit_DASHor] = ACTIONS(1148), - [anon_sym_and] = ACTIONS(1148), - [anon_sym_xor] = ACTIONS(1148), - [anon_sym_or] = ACTIONS(1148), - [anon_sym_not] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1213), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1148), - [anon_sym_DOT_DOT_LT] = ACTIONS(1148), - [anon_sym_null] = ACTIONS(1148), - [anon_sym_true] = ACTIONS(1148), - [anon_sym_false] = ACTIONS(1148), - [aux_sym__val_number_decimal_token1] = ACTIONS(1148), - [aux_sym__val_number_decimal_token2] = ACTIONS(1148), - [anon_sym_DOT2] = ACTIONS(1148), - [aux_sym__val_number_decimal_token3] = ACTIONS(1148), - [aux_sym__val_number_token1] = ACTIONS(1148), - [aux_sym__val_number_token2] = ACTIONS(1148), - [aux_sym__val_number_token3] = ACTIONS(1148), - [aux_sym__val_number_token4] = ACTIONS(1148), - [aux_sym__val_number_token5] = ACTIONS(1148), - [aux_sym__val_number_token6] = ACTIONS(1148), - [anon_sym_0b] = ACTIONS(1148), - [anon_sym_0o] = ACTIONS(1148), - [anon_sym_0x] = ACTIONS(1148), - [sym_val_date] = ACTIONS(1148), - [anon_sym_DQUOTE] = ACTIONS(1148), - [sym__str_single_quotes] = ACTIONS(1148), - [sym__str_back_ticks] = ACTIONS(1148), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1148), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1148), - [anon_sym_CARET] = ACTIONS(1148), - [anon_sym_POUND] = ACTIONS(113), - }, - [369] = { - [sym_cell_path] = STATE(534), - [sym_path] = STATE(384), - [sym_comment] = STATE(369), - [ts_builtin_sym_end] = ACTIONS(1181), [anon_sym_export] = ACTIONS(1179), [anon_sym_alias] = ACTIONS(1179), [anon_sym_let] = ACTIONS(1179), @@ -136639,6 +132979,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(1179), [anon_sym_LBRACK] = ACTIONS(1179), [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_RPAREN] = ACTIONS(1179), [anon_sym_DOLLAR] = ACTIONS(1179), [anon_sym_error] = ACTIONS(1179), [anon_sym_GT] = ACTIONS(1179), @@ -136654,6 +132995,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1179), [anon_sym_match] = ACTIONS(1179), [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1179), [anon_sym_DOT_DOT] = ACTIONS(1179), [anon_sym_try] = ACTIONS(1179), [anon_sym_return] = ACTIONS(1179), @@ -136664,13 +133006,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(1179), [anon_sym_overlay] = ACTIONS(1179), [anon_sym_as] = ACTIONS(1179), - [anon_sym_STAR] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1187), [anon_sym_where] = ACTIONS(1179), - [anon_sym_STAR_STAR] = ACTIONS(1179), - [anon_sym_PLUS_PLUS] = ACTIONS(1179), - [anon_sym_SLASH] = ACTIONS(1179), - [anon_sym_mod] = ACTIONS(1179), - [anon_sym_SLASH_SLASH] = ACTIONS(1179), + [anon_sym_STAR_STAR] = ACTIONS(1189), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_SLASH] = ACTIONS(1187), + [anon_sym_mod] = ACTIONS(1187), + [anon_sym_SLASH_SLASH] = ACTIONS(1187), [anon_sym_PLUS] = ACTIONS(1179), [anon_sym_bit_DASHshl] = ACTIONS(1179), [anon_sym_bit_DASHshr] = ACTIONS(1179), @@ -136691,7 +133033,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(1179), [anon_sym_or] = ACTIONS(1179), [anon_sym_not] = ACTIONS(1179), - [anon_sym_DOT] = ACTIONS(1213), [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), [anon_sym_DOT_DOT_LT] = ACTIONS(1179), [anon_sym_null] = ACTIONS(1179), @@ -136719,3237 +133060,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, - [370] = { - [sym_comment] = STATE(370), - [ts_builtin_sym_end] = ACTIONS(1170), - [anon_sym_export] = ACTIONS(1168), - [anon_sym_alias] = ACTIONS(1168), - [anon_sym_let] = ACTIONS(1168), - [anon_sym_let_DASHenv] = ACTIONS(1168), - [anon_sym_mut] = ACTIONS(1168), - [anon_sym_const] = ACTIONS(1168), - [anon_sym_SEMI] = ACTIONS(1168), - [sym_cmd_identifier] = ACTIONS(1168), - [anon_sym_LF] = ACTIONS(1170), - [anon_sym_def] = ACTIONS(1168), - [anon_sym_export_DASHenv] = ACTIONS(1168), - [anon_sym_extern] = ACTIONS(1168), - [anon_sym_module] = ACTIONS(1168), - [anon_sym_use] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_DOLLAR] = ACTIONS(1168), - [anon_sym_error] = ACTIONS(1168), - [anon_sym_GT] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1168), - [anon_sym_break] = ACTIONS(1168), - [anon_sym_continue] = ACTIONS(1168), - [anon_sym_for] = ACTIONS(1168), - [anon_sym_in] = ACTIONS(1168), - [anon_sym_loop] = ACTIONS(1168), - [anon_sym_while] = ACTIONS(1168), - [anon_sym_do] = ACTIONS(1168), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_match] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1168), - [anon_sym_DOT_DOT] = ACTIONS(1168), - [anon_sym_try] = ACTIONS(1168), - [anon_sym_return] = ACTIONS(1168), - [anon_sym_source] = ACTIONS(1168), - [anon_sym_source_DASHenv] = ACTIONS(1168), - [anon_sym_register] = ACTIONS(1168), - [anon_sym_hide] = ACTIONS(1168), - [anon_sym_hide_DASHenv] = ACTIONS(1168), - [anon_sym_overlay] = ACTIONS(1168), - [anon_sym_as] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_where] = ACTIONS(1168), - [anon_sym_STAR_STAR] = ACTIONS(1168), - [anon_sym_PLUS_PLUS] = ACTIONS(1168), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_mod] = ACTIONS(1168), - [anon_sym_SLASH_SLASH] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(1168), - [anon_sym_bit_DASHshl] = ACTIONS(1168), - [anon_sym_bit_DASHshr] = ACTIONS(1168), - [anon_sym_EQ_EQ] = ACTIONS(1168), - [anon_sym_BANG_EQ] = ACTIONS(1168), - [anon_sym_LT2] = ACTIONS(1168), - [anon_sym_LT_EQ] = ACTIONS(1168), - [anon_sym_GT_EQ] = ACTIONS(1168), - [anon_sym_not_DASHin] = ACTIONS(1168), - [anon_sym_starts_DASHwith] = ACTIONS(1168), - [anon_sym_ends_DASHwith] = ACTIONS(1168), - [anon_sym_EQ_TILDE] = ACTIONS(1168), - [anon_sym_BANG_TILDE] = ACTIONS(1168), - [anon_sym_bit_DASHand] = ACTIONS(1168), - [anon_sym_bit_DASHxor] = ACTIONS(1168), - [anon_sym_bit_DASHor] = ACTIONS(1168), - [anon_sym_and] = ACTIONS(1168), - [anon_sym_xor] = ACTIONS(1168), - [anon_sym_or] = ACTIONS(1168), - [anon_sym_not] = ACTIONS(1168), - [anon_sym_DOT_DOT2] = ACTIONS(1168), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1168), - [anon_sym_DOT_DOT_LT] = ACTIONS(1168), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1170), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1170), - [anon_sym_null] = ACTIONS(1168), - [anon_sym_true] = ACTIONS(1168), - [anon_sym_false] = ACTIONS(1168), - [aux_sym__val_number_decimal_token1] = ACTIONS(1168), - [aux_sym__val_number_decimal_token2] = ACTIONS(1168), - [anon_sym_DOT2] = ACTIONS(1168), - [aux_sym__val_number_decimal_token3] = ACTIONS(1168), - [aux_sym__val_number_token1] = ACTIONS(1168), - [aux_sym__val_number_token2] = ACTIONS(1168), - [aux_sym__val_number_token3] = ACTIONS(1168), - [aux_sym__val_number_token4] = ACTIONS(1168), - [aux_sym__val_number_token5] = ACTIONS(1168), - [aux_sym__val_number_token6] = ACTIONS(1168), - [anon_sym_0b] = ACTIONS(1168), - [anon_sym_0o] = ACTIONS(1168), - [anon_sym_0x] = ACTIONS(1168), - [sym_val_date] = ACTIONS(1168), - [anon_sym_DQUOTE] = ACTIONS(1168), - [sym__str_single_quotes] = ACTIONS(1168), - [sym__str_back_ticks] = ACTIONS(1168), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1168), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1168), - [anon_sym_CARET] = ACTIONS(1168), - [anon_sym_POUND] = ACTIONS(113), - }, - [371] = { - [sym_path] = STATE(447), - [sym_comment] = STATE(371), - [aux_sym_cell_path_repeat1] = STATE(373), - [anon_sym_export] = ACTIONS(987), - [anon_sym_alias] = ACTIONS(987), - [anon_sym_EQ] = ACTIONS(987), - [anon_sym_let] = ACTIONS(987), - [anon_sym_let_DASHenv] = ACTIONS(987), - [anon_sym_mut] = ACTIONS(987), - [anon_sym_const] = ACTIONS(987), - [anon_sym_SEMI] = ACTIONS(987), - [sym_cmd_identifier] = ACTIONS(987), - [anon_sym_LF] = ACTIONS(989), - [anon_sym_def] = ACTIONS(987), - [anon_sym_export_DASHenv] = ACTIONS(987), - [anon_sym_extern] = ACTIONS(987), - [anon_sym_module] = ACTIONS(987), - [anon_sym_use] = ACTIONS(987), - [anon_sym_COLON] = ACTIONS(987), - [anon_sym_COMMA] = ACTIONS(987), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_PIPE] = ACTIONS(987), - [anon_sym_DOLLAR] = ACTIONS(987), - [anon_sym_error] = ACTIONS(987), - [anon_sym_list] = ACTIONS(987), - [anon_sym_GT] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_break] = ACTIONS(987), - [anon_sym_continue] = ACTIONS(987), - [anon_sym_for] = ACTIONS(987), - [anon_sym_in] = ACTIONS(987), - [anon_sym_loop] = ACTIONS(987), - [anon_sym_make] = ACTIONS(987), - [anon_sym_while] = ACTIONS(987), - [anon_sym_do] = ACTIONS(987), - [anon_sym_if] = ACTIONS(987), - [anon_sym_else] = ACTIONS(987), - [anon_sym_match] = ACTIONS(987), - [anon_sym_RBRACE] = ACTIONS(987), - [anon_sym_try] = ACTIONS(987), - [anon_sym_catch] = ACTIONS(987), - [anon_sym_return] = ACTIONS(987), - [anon_sym_source] = ACTIONS(987), - [anon_sym_source_DASHenv] = ACTIONS(987), - [anon_sym_register] = ACTIONS(987), - [anon_sym_hide] = ACTIONS(987), - [anon_sym_hide_DASHenv] = ACTIONS(987), - [anon_sym_overlay] = ACTIONS(987), - [anon_sym_new] = ACTIONS(987), - [anon_sym_as] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(987), - [anon_sym_PLUS_EQ] = ACTIONS(987), - [anon_sym_DASH_EQ] = ACTIONS(987), - [anon_sym_STAR_EQ] = ACTIONS(987), - [anon_sym_SLASH_EQ] = ACTIONS(987), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(987), - [anon_sym_STAR_STAR] = ACTIONS(987), - [anon_sym_PLUS_PLUS] = ACTIONS(987), - [anon_sym_SLASH] = ACTIONS(987), - [anon_sym_mod] = ACTIONS(987), - [anon_sym_SLASH_SLASH] = ACTIONS(987), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_bit_DASHshl] = ACTIONS(987), - [anon_sym_bit_DASHshr] = ACTIONS(987), - [anon_sym_EQ_EQ] = ACTIONS(987), - [anon_sym_BANG_EQ] = ACTIONS(987), - [anon_sym_LT2] = ACTIONS(987), - [anon_sym_LT_EQ] = ACTIONS(987), - [anon_sym_GT_EQ] = ACTIONS(987), - [anon_sym_not_DASHin] = ACTIONS(987), - [anon_sym_starts_DASHwith] = ACTIONS(987), - [anon_sym_ends_DASHwith] = ACTIONS(987), - [anon_sym_EQ_TILDE] = ACTIONS(987), - [anon_sym_BANG_TILDE] = ACTIONS(987), - [anon_sym_bit_DASHand] = ACTIONS(987), - [anon_sym_bit_DASHxor] = ACTIONS(987), - [anon_sym_bit_DASHor] = ACTIONS(987), - [anon_sym_and] = ACTIONS(987), - [anon_sym_xor] = ACTIONS(987), - [anon_sym_or] = ACTIONS(987), - [anon_sym_DOT_DOT2] = ACTIONS(987), - [anon_sym_DOT] = ACTIONS(1207), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(989), - [anon_sym_DOT_DOT_LT2] = ACTIONS(989), - [aux_sym__val_number_decimal_token1] = ACTIONS(987), - [aux_sym__val_number_decimal_token2] = ACTIONS(987), - [anon_sym_DOT2] = ACTIONS(987), - [aux_sym__val_number_decimal_token3] = ACTIONS(987), - [aux_sym__val_number_token1] = ACTIONS(987), - [aux_sym__val_number_token2] = ACTIONS(987), - [aux_sym__val_number_token3] = ACTIONS(987), - [aux_sym__val_number_token4] = ACTIONS(987), - [aux_sym__val_number_token5] = ACTIONS(987), - [aux_sym__val_number_token6] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(987), - [sym__str_single_quotes] = ACTIONS(987), - [sym__str_back_ticks] = ACTIONS(987), - [aux_sym__record_key_token2] = ACTIONS(987), - [anon_sym_POUND] = ACTIONS(113), - }, - [372] = { - [sym_cell_path] = STATE(602), - [sym_path] = STATE(384), - [sym_comment] = STATE(372), - [ts_builtin_sym_end] = ACTIONS(1156), - [anon_sym_export] = ACTIONS(1154), - [anon_sym_alias] = ACTIONS(1154), - [anon_sym_let] = ACTIONS(1154), - [anon_sym_let_DASHenv] = ACTIONS(1154), - [anon_sym_mut] = ACTIONS(1154), - [anon_sym_const] = ACTIONS(1154), - [anon_sym_SEMI] = ACTIONS(1154), - [sym_cmd_identifier] = ACTIONS(1154), - [anon_sym_LF] = ACTIONS(1156), - [anon_sym_def] = ACTIONS(1154), - [anon_sym_export_DASHenv] = ACTIONS(1154), - [anon_sym_extern] = ACTIONS(1154), - [anon_sym_module] = ACTIONS(1154), - [anon_sym_use] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_DOLLAR] = ACTIONS(1154), - [anon_sym_error] = ACTIONS(1154), - [anon_sym_GT] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [anon_sym_DASH] = ACTIONS(1154), - [anon_sym_break] = ACTIONS(1154), - [anon_sym_continue] = ACTIONS(1154), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_in] = ACTIONS(1154), - [anon_sym_loop] = ACTIONS(1154), - [anon_sym_while] = ACTIONS(1154), - [anon_sym_do] = ACTIONS(1154), - [anon_sym_if] = ACTIONS(1154), - [anon_sym_match] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(1154), - [anon_sym_DOT_DOT] = ACTIONS(1154), - [anon_sym_try] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(1154), - [anon_sym_source] = ACTIONS(1154), - [anon_sym_source_DASHenv] = ACTIONS(1154), - [anon_sym_register] = ACTIONS(1154), - [anon_sym_hide] = ACTIONS(1154), - [anon_sym_hide_DASHenv] = ACTIONS(1154), - [anon_sym_overlay] = ACTIONS(1154), - [anon_sym_as] = ACTIONS(1154), - [anon_sym_STAR] = ACTIONS(1154), - [anon_sym_where] = ACTIONS(1154), - [anon_sym_STAR_STAR] = ACTIONS(1154), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_SLASH] = ACTIONS(1154), - [anon_sym_mod] = ACTIONS(1154), - [anon_sym_SLASH_SLASH] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1154), - [anon_sym_bit_DASHshl] = ACTIONS(1154), - [anon_sym_bit_DASHshr] = ACTIONS(1154), - [anon_sym_EQ_EQ] = ACTIONS(1154), - [anon_sym_BANG_EQ] = ACTIONS(1154), - [anon_sym_LT2] = ACTIONS(1154), - [anon_sym_LT_EQ] = ACTIONS(1154), - [anon_sym_GT_EQ] = ACTIONS(1154), - [anon_sym_not_DASHin] = ACTIONS(1154), - [anon_sym_starts_DASHwith] = ACTIONS(1154), - [anon_sym_ends_DASHwith] = ACTIONS(1154), - [anon_sym_EQ_TILDE] = ACTIONS(1154), - [anon_sym_BANG_TILDE] = ACTIONS(1154), - [anon_sym_bit_DASHand] = ACTIONS(1154), - [anon_sym_bit_DASHxor] = ACTIONS(1154), - [anon_sym_bit_DASHor] = ACTIONS(1154), - [anon_sym_and] = ACTIONS(1154), - [anon_sym_xor] = ACTIONS(1154), - [anon_sym_or] = ACTIONS(1154), - [anon_sym_not] = ACTIONS(1154), - [anon_sym_DOT] = ACTIONS(1213), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1154), - [anon_sym_DOT_DOT_LT] = ACTIONS(1154), - [anon_sym_null] = ACTIONS(1154), - [anon_sym_true] = ACTIONS(1154), - [anon_sym_false] = ACTIONS(1154), - [aux_sym__val_number_decimal_token1] = ACTIONS(1154), - [aux_sym__val_number_decimal_token2] = ACTIONS(1154), - [anon_sym_DOT2] = ACTIONS(1154), - [aux_sym__val_number_decimal_token3] = ACTIONS(1154), - [aux_sym__val_number_token1] = ACTIONS(1154), - [aux_sym__val_number_token2] = ACTIONS(1154), - [aux_sym__val_number_token3] = ACTIONS(1154), - [aux_sym__val_number_token4] = ACTIONS(1154), - [aux_sym__val_number_token5] = ACTIONS(1154), - [aux_sym__val_number_token6] = ACTIONS(1154), - [anon_sym_0b] = ACTIONS(1154), - [anon_sym_0o] = ACTIONS(1154), - [anon_sym_0x] = ACTIONS(1154), - [sym_val_date] = ACTIONS(1154), - [anon_sym_DQUOTE] = ACTIONS(1154), - [sym__str_single_quotes] = ACTIONS(1154), - [sym__str_back_ticks] = ACTIONS(1154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1154), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1154), - [anon_sym_CARET] = ACTIONS(1154), - [anon_sym_POUND] = ACTIONS(113), - }, - [373] = { - [sym_path] = STATE(447), - [sym_comment] = STATE(373), - [aux_sym_cell_path_repeat1] = STATE(374), - [anon_sym_export] = ACTIONS(1006), - [anon_sym_alias] = ACTIONS(1006), - [anon_sym_EQ] = ACTIONS(1006), - [anon_sym_let] = ACTIONS(1006), - [anon_sym_let_DASHenv] = ACTIONS(1006), - [anon_sym_mut] = ACTIONS(1006), - [anon_sym_const] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1006), - [sym_cmd_identifier] = ACTIONS(1006), - [anon_sym_LF] = ACTIONS(1008), - [anon_sym_def] = ACTIONS(1006), - [anon_sym_export_DASHenv] = ACTIONS(1006), - [anon_sym_extern] = ACTIONS(1006), - [anon_sym_module] = ACTIONS(1006), - [anon_sym_use] = ACTIONS(1006), - [anon_sym_COLON] = ACTIONS(1006), - [anon_sym_COMMA] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_error] = ACTIONS(1006), - [anon_sym_list] = ACTIONS(1006), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_break] = ACTIONS(1006), - [anon_sym_continue] = ACTIONS(1006), - [anon_sym_for] = ACTIONS(1006), - [anon_sym_in] = ACTIONS(1006), - [anon_sym_loop] = ACTIONS(1006), - [anon_sym_make] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(1006), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_else] = ACTIONS(1006), - [anon_sym_match] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1006), - [anon_sym_try] = ACTIONS(1006), - [anon_sym_catch] = ACTIONS(1006), - [anon_sym_return] = ACTIONS(1006), - [anon_sym_source] = ACTIONS(1006), - [anon_sym_source_DASHenv] = ACTIONS(1006), - [anon_sym_register] = ACTIONS(1006), - [anon_sym_hide] = ACTIONS(1006), - [anon_sym_hide_DASHenv] = ACTIONS(1006), - [anon_sym_overlay] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1006), - [anon_sym_as] = ACTIONS(1006), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_PLUS_EQ] = ACTIONS(1006), - [anon_sym_DASH_EQ] = ACTIONS(1006), - [anon_sym_STAR_EQ] = ACTIONS(1006), - [anon_sym_SLASH_EQ] = ACTIONS(1006), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1006), - [anon_sym_STAR_STAR] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_mod] = ACTIONS(1006), - [anon_sym_SLASH_SLASH] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_bit_DASHshl] = ACTIONS(1006), - [anon_sym_bit_DASHshr] = ACTIONS(1006), - [anon_sym_EQ_EQ] = ACTIONS(1006), - [anon_sym_BANG_EQ] = ACTIONS(1006), - [anon_sym_LT2] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1006), - [anon_sym_GT_EQ] = ACTIONS(1006), - [anon_sym_not_DASHin] = ACTIONS(1006), - [anon_sym_starts_DASHwith] = ACTIONS(1006), - [anon_sym_ends_DASHwith] = ACTIONS(1006), - [anon_sym_EQ_TILDE] = ACTIONS(1006), - [anon_sym_BANG_TILDE] = ACTIONS(1006), - [anon_sym_bit_DASHand] = ACTIONS(1006), - [anon_sym_bit_DASHxor] = ACTIONS(1006), - [anon_sym_bit_DASHor] = ACTIONS(1006), - [anon_sym_and] = ACTIONS(1006), - [anon_sym_xor] = ACTIONS(1006), - [anon_sym_or] = ACTIONS(1006), - [anon_sym_DOT_DOT2] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1207), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1006), - [anon_sym_DOT2] = ACTIONS(1006), - [aux_sym__val_number_decimal_token3] = ACTIONS(1006), - [aux_sym__val_number_token1] = ACTIONS(1006), - [aux_sym__val_number_token2] = ACTIONS(1006), - [aux_sym__val_number_token3] = ACTIONS(1006), - [aux_sym__val_number_token4] = ACTIONS(1006), - [aux_sym__val_number_token5] = ACTIONS(1006), - [aux_sym__val_number_token6] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym__str_single_quotes] = ACTIONS(1006), - [sym__str_back_ticks] = ACTIONS(1006), - [aux_sym__record_key_token2] = ACTIONS(1006), - [anon_sym_POUND] = ACTIONS(113), - }, - [374] = { - [sym_path] = STATE(447), - [sym_comment] = STATE(374), - [aux_sym_cell_path_repeat1] = STATE(374), - [anon_sym_export] = ACTIONS(999), - [anon_sym_alias] = ACTIONS(999), - [anon_sym_EQ] = ACTIONS(999), - [anon_sym_let] = ACTIONS(999), - [anon_sym_let_DASHenv] = ACTIONS(999), - [anon_sym_mut] = ACTIONS(999), - [anon_sym_const] = ACTIONS(999), - [anon_sym_SEMI] = ACTIONS(999), - [sym_cmd_identifier] = ACTIONS(999), - [anon_sym_LF] = ACTIONS(1001), - [anon_sym_def] = ACTIONS(999), - [anon_sym_export_DASHenv] = ACTIONS(999), - [anon_sym_extern] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_use] = ACTIONS(999), - [anon_sym_COLON] = ACTIONS(999), - [anon_sym_COMMA] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_error] = ACTIONS(999), - [anon_sym_list] = ACTIONS(999), - [anon_sym_GT] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_break] = ACTIONS(999), - [anon_sym_continue] = ACTIONS(999), - [anon_sym_for] = ACTIONS(999), - [anon_sym_in] = ACTIONS(999), - [anon_sym_loop] = ACTIONS(999), - [anon_sym_make] = ACTIONS(999), - [anon_sym_while] = ACTIONS(999), - [anon_sym_do] = ACTIONS(999), - [anon_sym_if] = ACTIONS(999), - [anon_sym_else] = ACTIONS(999), - [anon_sym_match] = ACTIONS(999), - [anon_sym_RBRACE] = ACTIONS(999), - [anon_sym_try] = ACTIONS(999), - [anon_sym_catch] = ACTIONS(999), - [anon_sym_return] = ACTIONS(999), - [anon_sym_source] = ACTIONS(999), - [anon_sym_source_DASHenv] = ACTIONS(999), - [anon_sym_register] = ACTIONS(999), - [anon_sym_hide] = ACTIONS(999), - [anon_sym_hide_DASHenv] = ACTIONS(999), - [anon_sym_overlay] = ACTIONS(999), - [anon_sym_new] = ACTIONS(999), - [anon_sym_as] = ACTIONS(999), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(999), - [anon_sym_STAR_STAR] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(999), - [anon_sym_mod] = ACTIONS(999), - [anon_sym_SLASH_SLASH] = ACTIONS(999), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_bit_DASHshl] = ACTIONS(999), - [anon_sym_bit_DASHshr] = ACTIONS(999), - [anon_sym_EQ_EQ] = ACTIONS(999), - [anon_sym_BANG_EQ] = ACTIONS(999), - [anon_sym_LT2] = ACTIONS(999), - [anon_sym_LT_EQ] = ACTIONS(999), - [anon_sym_GT_EQ] = ACTIONS(999), - [anon_sym_not_DASHin] = ACTIONS(999), - [anon_sym_starts_DASHwith] = ACTIONS(999), - [anon_sym_ends_DASHwith] = ACTIONS(999), - [anon_sym_EQ_TILDE] = ACTIONS(999), - [anon_sym_BANG_TILDE] = ACTIONS(999), - [anon_sym_bit_DASHand] = ACTIONS(999), - [anon_sym_bit_DASHxor] = ACTIONS(999), - [anon_sym_bit_DASHor] = ACTIONS(999), - [anon_sym_and] = ACTIONS(999), - [anon_sym_xor] = ACTIONS(999), - [anon_sym_or] = ACTIONS(999), - [anon_sym_DOT_DOT2] = ACTIONS(999), - [anon_sym_DOT] = ACTIONS(1215), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1001), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1001), - [aux_sym__val_number_decimal_token1] = ACTIONS(999), - [aux_sym__val_number_decimal_token2] = ACTIONS(999), - [anon_sym_DOT2] = ACTIONS(999), - [aux_sym__val_number_decimal_token3] = ACTIONS(999), - [aux_sym__val_number_token1] = ACTIONS(999), - [aux_sym__val_number_token2] = ACTIONS(999), - [aux_sym__val_number_token3] = ACTIONS(999), - [aux_sym__val_number_token4] = ACTIONS(999), - [aux_sym__val_number_token5] = ACTIONS(999), - [aux_sym__val_number_token6] = ACTIONS(999), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym__str_single_quotes] = ACTIONS(999), - [sym__str_back_ticks] = ACTIONS(999), - [aux_sym__record_key_token2] = ACTIONS(999), - [anon_sym_POUND] = ACTIONS(113), - }, - [375] = { - [sym_comment] = STATE(375), - [anon_sym_export] = ACTIONS(1059), - [anon_sym_alias] = ACTIONS(1059), - [anon_sym_let] = ACTIONS(1059), - [anon_sym_let_DASHenv] = ACTIONS(1059), - [anon_sym_mut] = ACTIONS(1059), - [anon_sym_const] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [sym_cmd_identifier] = ACTIONS(1059), - [anon_sym_LF] = ACTIONS(1061), - [anon_sym_def] = ACTIONS(1059), - [anon_sym_export_DASHenv] = ACTIONS(1059), - [anon_sym_extern] = ACTIONS(1059), - [anon_sym_module] = ACTIONS(1059), - [anon_sym_use] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_error] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_DASH_DASH] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_break] = ACTIONS(1059), - [anon_sym_continue] = ACTIONS(1059), - [anon_sym_for] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1059), - [anon_sym_loop] = ACTIONS(1059), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_do] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1059), - [anon_sym_match] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(1059), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_try] = ACTIONS(1059), - [anon_sym_return] = ACTIONS(1059), - [anon_sym_source] = ACTIONS(1059), - [anon_sym_source_DASHenv] = ACTIONS(1059), - [anon_sym_register] = ACTIONS(1059), - [anon_sym_hide] = ACTIONS(1059), - [anon_sym_hide_DASHenv] = ACTIONS(1059), - [anon_sym_overlay] = ACTIONS(1059), - [anon_sym_as] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(1059), - [anon_sym_QMARK2] = ACTIONS(1059), - [anon_sym_STAR_STAR] = ACTIONS(1059), - [anon_sym_PLUS_PLUS] = ACTIONS(1059), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_mod] = ACTIONS(1059), - [anon_sym_SLASH_SLASH] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_bit_DASHshl] = ACTIONS(1059), - [anon_sym_bit_DASHshr] = ACTIONS(1059), - [anon_sym_EQ_EQ] = ACTIONS(1059), - [anon_sym_BANG_EQ] = ACTIONS(1059), - [anon_sym_LT2] = ACTIONS(1059), - [anon_sym_LT_EQ] = ACTIONS(1059), - [anon_sym_GT_EQ] = ACTIONS(1059), - [anon_sym_not_DASHin] = ACTIONS(1059), - [anon_sym_starts_DASHwith] = ACTIONS(1059), - [anon_sym_ends_DASHwith] = ACTIONS(1059), - [anon_sym_EQ_TILDE] = ACTIONS(1059), - [anon_sym_BANG_TILDE] = ACTIONS(1059), - [anon_sym_bit_DASHand] = ACTIONS(1059), - [anon_sym_bit_DASHxor] = ACTIONS(1059), - [anon_sym_bit_DASHor] = ACTIONS(1059), - [anon_sym_and] = ACTIONS(1059), - [anon_sym_xor] = ACTIONS(1059), - [anon_sym_or] = ACTIONS(1059), - [anon_sym_not] = ACTIONS(1059), - [anon_sym_DOT] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1059), - [anon_sym_DOT_DOT_LT] = ACTIONS(1059), - [anon_sym_null] = ACTIONS(1059), - [anon_sym_true] = ACTIONS(1059), - [anon_sym_false] = ACTIONS(1059), - [aux_sym__val_number_decimal_token1] = ACTIONS(1059), - [aux_sym__val_number_decimal_token2] = ACTIONS(1059), - [anon_sym_DOT2] = ACTIONS(1059), - [aux_sym__val_number_decimal_token3] = ACTIONS(1059), - [aux_sym__val_number_token1] = ACTIONS(1059), - [aux_sym__val_number_token2] = ACTIONS(1059), - [aux_sym__val_number_token3] = ACTIONS(1059), - [aux_sym__val_number_token4] = ACTIONS(1059), - [aux_sym__val_number_token5] = ACTIONS(1059), - [aux_sym__val_number_token6] = ACTIONS(1059), - [anon_sym_0b] = ACTIONS(1059), - [anon_sym_0o] = ACTIONS(1059), - [anon_sym_0x] = ACTIONS(1059), - [sym_val_date] = ACTIONS(1059), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym__str_single_quotes] = ACTIONS(1059), - [sym__str_back_ticks] = ACTIONS(1059), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1059), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1059), - [anon_sym_CARET] = ACTIONS(1059), - [anon_sym_POUND] = ACTIONS(113), - }, - [376] = { - [sym_comment] = STATE(376), - [ts_builtin_sym_end] = ACTIONS(1072), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_alias] = ACTIONS(1070), - [anon_sym_let] = ACTIONS(1070), - [anon_sym_let_DASHenv] = ACTIONS(1070), - [anon_sym_mut] = ACTIONS(1070), - [anon_sym_const] = ACTIONS(1070), - [anon_sym_SEMI] = ACTIONS(1070), - [sym_cmd_identifier] = ACTIONS(1070), - [anon_sym_LF] = ACTIONS(1072), - [anon_sym_def] = ACTIONS(1070), - [anon_sym_export_DASHenv] = ACTIONS(1070), - [anon_sym_extern] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_use] = ACTIONS(1070), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_error] = ACTIONS(1070), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_in] = ACTIONS(1070), - [anon_sym_loop] = ACTIONS(1070), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_do] = ACTIONS(1070), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_match] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_try] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_source] = ACTIONS(1070), - [anon_sym_source_DASHenv] = ACTIONS(1070), - [anon_sym_register] = ACTIONS(1070), - [anon_sym_hide] = ACTIONS(1070), - [anon_sym_hide_DASHenv] = ACTIONS(1070), - [anon_sym_overlay] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_where] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(1218), - [anon_sym_STAR_STAR] = ACTIONS(1070), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_mod] = ACTIONS(1070), - [anon_sym_SLASH_SLASH] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_bit_DASHshl] = ACTIONS(1070), - [anon_sym_bit_DASHshr] = ACTIONS(1070), - [anon_sym_EQ_EQ] = ACTIONS(1070), - [anon_sym_BANG_EQ] = ACTIONS(1070), - [anon_sym_LT2] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1070), - [anon_sym_GT_EQ] = ACTIONS(1070), - [anon_sym_not_DASHin] = ACTIONS(1070), - [anon_sym_starts_DASHwith] = ACTIONS(1070), - [anon_sym_ends_DASHwith] = ACTIONS(1070), - [anon_sym_EQ_TILDE] = ACTIONS(1070), - [anon_sym_BANG_TILDE] = ACTIONS(1070), - [anon_sym_bit_DASHand] = ACTIONS(1070), - [anon_sym_bit_DASHxor] = ACTIONS(1070), - [anon_sym_bit_DASHor] = ACTIONS(1070), - [anon_sym_and] = ACTIONS(1070), - [anon_sym_xor] = ACTIONS(1070), - [anon_sym_or] = ACTIONS(1070), - [anon_sym_not] = ACTIONS(1070), - [anon_sym_DOT_DOT2] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1072), - [anon_sym_null] = ACTIONS(1070), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1070), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), - [anon_sym_CARET] = ACTIONS(1070), - [anon_sym_POUND] = ACTIONS(113), - }, - [377] = { - [sym_comment] = STATE(377), - [ts_builtin_sym_end] = ACTIONS(1072), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_alias] = ACTIONS(1070), - [anon_sym_let] = ACTIONS(1070), - [anon_sym_let_DASHenv] = ACTIONS(1070), - [anon_sym_mut] = ACTIONS(1070), - [anon_sym_const] = ACTIONS(1070), - [anon_sym_SEMI] = ACTIONS(1070), - [sym_cmd_identifier] = ACTIONS(1070), - [anon_sym_LF] = ACTIONS(1072), - [anon_sym_def] = ACTIONS(1070), - [anon_sym_export_DASHenv] = ACTIONS(1070), - [anon_sym_extern] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_use] = ACTIONS(1070), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_error] = ACTIONS(1070), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_in] = ACTIONS(1070), - [anon_sym_loop] = ACTIONS(1070), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_do] = ACTIONS(1070), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_match] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_try] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_source] = ACTIONS(1070), - [anon_sym_source_DASHenv] = ACTIONS(1070), - [anon_sym_register] = ACTIONS(1070), - [anon_sym_hide] = ACTIONS(1070), - [anon_sym_hide_DASHenv] = ACTIONS(1070), - [anon_sym_overlay] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_where] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(1218), - [anon_sym_STAR_STAR] = ACTIONS(1070), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_mod] = ACTIONS(1070), - [anon_sym_SLASH_SLASH] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_bit_DASHshl] = ACTIONS(1070), - [anon_sym_bit_DASHshr] = ACTIONS(1070), - [anon_sym_EQ_EQ] = ACTIONS(1070), - [anon_sym_BANG_EQ] = ACTIONS(1070), - [anon_sym_LT2] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1070), - [anon_sym_GT_EQ] = ACTIONS(1070), - [anon_sym_not_DASHin] = ACTIONS(1070), - [anon_sym_starts_DASHwith] = ACTIONS(1070), - [anon_sym_ends_DASHwith] = ACTIONS(1070), - [anon_sym_EQ_TILDE] = ACTIONS(1070), - [anon_sym_BANG_TILDE] = ACTIONS(1070), - [anon_sym_bit_DASHand] = ACTIONS(1070), - [anon_sym_bit_DASHxor] = ACTIONS(1070), - [anon_sym_bit_DASHor] = ACTIONS(1070), - [anon_sym_and] = ACTIONS(1070), - [anon_sym_xor] = ACTIONS(1070), - [anon_sym_or] = ACTIONS(1070), - [anon_sym_not] = ACTIONS(1070), - [anon_sym_DOT_DOT2] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1072), - [anon_sym_null] = ACTIONS(1070), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1070), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), - [anon_sym_CARET] = ACTIONS(1070), - [anon_sym_POUND] = ACTIONS(113), - }, - [378] = { - [sym_cell_path] = STATE(585), - [sym_path] = STATE(384), - [sym_comment] = STATE(378), - [ts_builtin_sym_end] = ACTIONS(997), - [anon_sym_export] = ACTIONS(995), - [anon_sym_alias] = ACTIONS(995), - [anon_sym_let] = ACTIONS(995), - [anon_sym_let_DASHenv] = ACTIONS(995), - [anon_sym_mut] = ACTIONS(995), - [anon_sym_const] = ACTIONS(995), - [anon_sym_SEMI] = ACTIONS(995), - [sym_cmd_identifier] = ACTIONS(995), - [anon_sym_LF] = ACTIONS(997), - [anon_sym_def] = ACTIONS(995), - [anon_sym_export_DASHenv] = ACTIONS(995), - [anon_sym_extern] = ACTIONS(995), - [anon_sym_module] = ACTIONS(995), - [anon_sym_use] = ACTIONS(995), - [anon_sym_LBRACK] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_DOLLAR] = ACTIONS(995), - [anon_sym_error] = ACTIONS(995), - [anon_sym_GT] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_break] = ACTIONS(995), - [anon_sym_continue] = ACTIONS(995), - [anon_sym_for] = ACTIONS(995), - [anon_sym_in] = ACTIONS(995), - [anon_sym_loop] = ACTIONS(995), - [anon_sym_while] = ACTIONS(995), - [anon_sym_do] = ACTIONS(995), - [anon_sym_if] = ACTIONS(995), - [anon_sym_match] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_DOT_DOT] = ACTIONS(995), - [anon_sym_try] = ACTIONS(995), - [anon_sym_return] = ACTIONS(995), - [anon_sym_source] = ACTIONS(995), - [anon_sym_source_DASHenv] = ACTIONS(995), - [anon_sym_register] = ACTIONS(995), - [anon_sym_hide] = ACTIONS(995), - [anon_sym_hide_DASHenv] = ACTIONS(995), - [anon_sym_overlay] = ACTIONS(995), - [anon_sym_as] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_where] = ACTIONS(995), - [anon_sym_STAR_STAR] = ACTIONS(995), - [anon_sym_PLUS_PLUS] = ACTIONS(995), - [anon_sym_SLASH] = ACTIONS(995), - [anon_sym_mod] = ACTIONS(995), - [anon_sym_SLASH_SLASH] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_bit_DASHshl] = ACTIONS(995), - [anon_sym_bit_DASHshr] = ACTIONS(995), - [anon_sym_EQ_EQ] = ACTIONS(995), - [anon_sym_BANG_EQ] = ACTIONS(995), - [anon_sym_LT2] = ACTIONS(995), - [anon_sym_LT_EQ] = ACTIONS(995), - [anon_sym_GT_EQ] = ACTIONS(995), - [anon_sym_not_DASHin] = ACTIONS(995), - [anon_sym_starts_DASHwith] = ACTIONS(995), - [anon_sym_ends_DASHwith] = ACTIONS(995), - [anon_sym_EQ_TILDE] = ACTIONS(995), - [anon_sym_BANG_TILDE] = ACTIONS(995), - [anon_sym_bit_DASHand] = ACTIONS(995), - [anon_sym_bit_DASHxor] = ACTIONS(995), - [anon_sym_bit_DASHor] = ACTIONS(995), - [anon_sym_and] = ACTIONS(995), - [anon_sym_xor] = ACTIONS(995), - [anon_sym_or] = ACTIONS(995), - [anon_sym_not] = ACTIONS(995), - [anon_sym_DOT] = ACTIONS(1213), - [anon_sym_DOT_DOT_EQ] = ACTIONS(995), - [anon_sym_DOT_DOT_LT] = ACTIONS(995), - [anon_sym_null] = ACTIONS(995), - [anon_sym_true] = ACTIONS(995), - [anon_sym_false] = ACTIONS(995), - [aux_sym__val_number_decimal_token1] = ACTIONS(995), - [aux_sym__val_number_decimal_token2] = ACTIONS(995), - [anon_sym_DOT2] = ACTIONS(995), - [aux_sym__val_number_decimal_token3] = ACTIONS(995), - [aux_sym__val_number_token1] = ACTIONS(995), - [aux_sym__val_number_token2] = ACTIONS(995), - [aux_sym__val_number_token3] = ACTIONS(995), - [aux_sym__val_number_token4] = ACTIONS(995), - [aux_sym__val_number_token5] = ACTIONS(995), - [aux_sym__val_number_token6] = ACTIONS(995), - [anon_sym_0b] = ACTIONS(995), - [anon_sym_0o] = ACTIONS(995), - [anon_sym_0x] = ACTIONS(995), - [sym_val_date] = ACTIONS(995), - [anon_sym_DQUOTE] = ACTIONS(995), - [sym__str_single_quotes] = ACTIONS(995), - [sym__str_back_ticks] = ACTIONS(995), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(995), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(995), - [anon_sym_CARET] = ACTIONS(995), - [anon_sym_POUND] = ACTIONS(113), - }, - [379] = { - [sym_comment] = STATE(379), - [anon_sym_export] = ACTIONS(1063), - [anon_sym_alias] = ACTIONS(1063), - [anon_sym_let] = ACTIONS(1063), - [anon_sym_let_DASHenv] = ACTIONS(1063), - [anon_sym_mut] = ACTIONS(1063), - [anon_sym_const] = ACTIONS(1063), - [anon_sym_SEMI] = ACTIONS(1063), - [sym_cmd_identifier] = ACTIONS(1063), - [anon_sym_LF] = ACTIONS(1065), - [anon_sym_def] = ACTIONS(1063), - [anon_sym_export_DASHenv] = ACTIONS(1063), - [anon_sym_extern] = ACTIONS(1063), - [anon_sym_module] = ACTIONS(1063), - [anon_sym_use] = ACTIONS(1063), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_RPAREN] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_error] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_DASH_DASH] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_break] = ACTIONS(1063), - [anon_sym_continue] = ACTIONS(1063), - [anon_sym_for] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1063), - [anon_sym_loop] = ACTIONS(1063), - [anon_sym_while] = ACTIONS(1063), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_if] = ACTIONS(1063), - [anon_sym_match] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_RBRACE] = ACTIONS(1063), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1063), - [anon_sym_return] = ACTIONS(1063), - [anon_sym_source] = ACTIONS(1063), - [anon_sym_source_DASHenv] = ACTIONS(1063), - [anon_sym_register] = ACTIONS(1063), - [anon_sym_hide] = ACTIONS(1063), - [anon_sym_hide_DASHenv] = ACTIONS(1063), - [anon_sym_overlay] = ACTIONS(1063), - [anon_sym_as] = ACTIONS(1063), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_where] = ACTIONS(1063), - [anon_sym_QMARK2] = ACTIONS(1063), - [anon_sym_STAR_STAR] = ACTIONS(1063), - [anon_sym_PLUS_PLUS] = ACTIONS(1063), - [anon_sym_SLASH] = ACTIONS(1063), - [anon_sym_mod] = ACTIONS(1063), - [anon_sym_SLASH_SLASH] = ACTIONS(1063), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_bit_DASHshl] = ACTIONS(1063), - [anon_sym_bit_DASHshr] = ACTIONS(1063), - [anon_sym_EQ_EQ] = ACTIONS(1063), - [anon_sym_BANG_EQ] = ACTIONS(1063), - [anon_sym_LT2] = ACTIONS(1063), - [anon_sym_LT_EQ] = ACTIONS(1063), - [anon_sym_GT_EQ] = ACTIONS(1063), - [anon_sym_not_DASHin] = ACTIONS(1063), - [anon_sym_starts_DASHwith] = ACTIONS(1063), - [anon_sym_ends_DASHwith] = ACTIONS(1063), - [anon_sym_EQ_TILDE] = ACTIONS(1063), - [anon_sym_BANG_TILDE] = ACTIONS(1063), - [anon_sym_bit_DASHand] = ACTIONS(1063), - [anon_sym_bit_DASHxor] = ACTIONS(1063), - [anon_sym_bit_DASHor] = ACTIONS(1063), - [anon_sym_and] = ACTIONS(1063), - [anon_sym_xor] = ACTIONS(1063), - [anon_sym_or] = ACTIONS(1063), - [anon_sym_not] = ACTIONS(1063), - [anon_sym_DOT] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1063), - [anon_sym_DOT_DOT_LT] = ACTIONS(1063), - [anon_sym_null] = ACTIONS(1063), - [anon_sym_true] = ACTIONS(1063), - [anon_sym_false] = ACTIONS(1063), - [aux_sym__val_number_decimal_token1] = ACTIONS(1063), - [aux_sym__val_number_decimal_token2] = ACTIONS(1063), - [anon_sym_DOT2] = ACTIONS(1063), - [aux_sym__val_number_decimal_token3] = ACTIONS(1063), - [aux_sym__val_number_token1] = ACTIONS(1063), - [aux_sym__val_number_token2] = ACTIONS(1063), - [aux_sym__val_number_token3] = ACTIONS(1063), - [aux_sym__val_number_token4] = ACTIONS(1063), - [aux_sym__val_number_token5] = ACTIONS(1063), - [aux_sym__val_number_token6] = ACTIONS(1063), - [anon_sym_0b] = ACTIONS(1063), - [anon_sym_0o] = ACTIONS(1063), - [anon_sym_0x] = ACTIONS(1063), - [sym_val_date] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [sym__str_single_quotes] = ACTIONS(1063), - [sym__str_back_ticks] = ACTIONS(1063), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1063), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1063), - [anon_sym_CARET] = ACTIONS(1063), - [anon_sym_POUND] = ACTIONS(113), - }, - [380] = { - [sym_comment] = STATE(380), - [ts_builtin_sym_end] = ACTIONS(961), - [anon_sym_export] = ACTIONS(959), - [anon_sym_alias] = ACTIONS(959), - [anon_sym_let] = ACTIONS(959), - [anon_sym_let_DASHenv] = ACTIONS(959), - [anon_sym_mut] = ACTIONS(959), - [anon_sym_const] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(959), - [sym_cmd_identifier] = ACTIONS(959), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_def] = ACTIONS(959), - [anon_sym_export_DASHenv] = ACTIONS(959), - [anon_sym_extern] = ACTIONS(959), - [anon_sym_module] = ACTIONS(959), - [anon_sym_use] = ACTIONS(959), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_error] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_break] = ACTIONS(959), - [anon_sym_continue] = ACTIONS(959), - [anon_sym_for] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_loop] = ACTIONS(959), - [anon_sym_while] = ACTIONS(959), - [anon_sym_do] = ACTIONS(959), - [anon_sym_if] = ACTIONS(959), - [anon_sym_match] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_try] = ACTIONS(959), - [anon_sym_return] = ACTIONS(959), - [anon_sym_source] = ACTIONS(959), - [anon_sym_source_DASHenv] = ACTIONS(959), - [anon_sym_register] = ACTIONS(959), - [anon_sym_hide] = ACTIONS(959), - [anon_sym_hide_DASHenv] = ACTIONS(959), - [anon_sym_overlay] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_where] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(959), - [anon_sym_PLUS_PLUS] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(959), - [anon_sym_SLASH_SLASH] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(959), - [anon_sym_bit_DASHshr] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(959), - [anon_sym_BANG_EQ] = ACTIONS(959), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(959), - [anon_sym_GT_EQ] = ACTIONS(959), - [anon_sym_not_DASHin] = ACTIONS(959), - [anon_sym_starts_DASHwith] = ACTIONS(959), - [anon_sym_ends_DASHwith] = ACTIONS(959), - [anon_sym_EQ_TILDE] = ACTIONS(959), - [anon_sym_BANG_TILDE] = ACTIONS(959), - [anon_sym_bit_DASHand] = ACTIONS(959), - [anon_sym_bit_DASHxor] = ACTIONS(959), - [anon_sym_bit_DASHor] = ACTIONS(959), - [anon_sym_and] = ACTIONS(959), - [anon_sym_xor] = ACTIONS(959), - [anon_sym_or] = ACTIONS(959), - [anon_sym_not] = ACTIONS(959), - [anon_sym_DOT_DOT2] = ACTIONS(1220), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_DOT_DOT_LT] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1222), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1222), - [anon_sym_null] = ACTIONS(959), - [anon_sym_true] = ACTIONS(959), - [anon_sym_false] = ACTIONS(959), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(959), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(959), - [aux_sym__val_number_token1] = ACTIONS(959), - [aux_sym__val_number_token2] = ACTIONS(959), - [aux_sym__val_number_token3] = ACTIONS(959), - [aux_sym__val_number_token4] = ACTIONS(959), - [aux_sym__val_number_token5] = ACTIONS(959), - [aux_sym__val_number_token6] = ACTIONS(959), - [anon_sym_0b] = ACTIONS(959), - [sym_filesize_unit] = ACTIONS(1224), - [sym_duration_unit] = ACTIONS(1226), - [anon_sym_0o] = ACTIONS(959), - [anon_sym_0x] = ACTIONS(959), - [sym_val_date] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [sym__str_single_quotes] = ACTIONS(959), - [sym__str_back_ticks] = ACTIONS(959), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(959), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(959), - [anon_sym_CARET] = ACTIONS(959), - [anon_sym_POUND] = ACTIONS(113), - }, - [381] = { - [sym_cell_path] = STATE(586), - [sym_path] = STATE(384), - [sym_comment] = STATE(381), - [ts_builtin_sym_end] = ACTIONS(1205), - [anon_sym_export] = ACTIONS(1203), - [anon_sym_alias] = ACTIONS(1203), - [anon_sym_let] = ACTIONS(1203), - [anon_sym_let_DASHenv] = ACTIONS(1203), - [anon_sym_mut] = ACTIONS(1203), - [anon_sym_const] = ACTIONS(1203), - [anon_sym_SEMI] = ACTIONS(1203), - [sym_cmd_identifier] = ACTIONS(1203), - [anon_sym_LF] = ACTIONS(1205), - [anon_sym_def] = ACTIONS(1203), - [anon_sym_export_DASHenv] = ACTIONS(1203), - [anon_sym_extern] = ACTIONS(1203), - [anon_sym_module] = ACTIONS(1203), - [anon_sym_use] = ACTIONS(1203), - [anon_sym_LBRACK] = ACTIONS(1203), - [anon_sym_LPAREN] = ACTIONS(1203), - [anon_sym_DOLLAR] = ACTIONS(1203), - [anon_sym_error] = ACTIONS(1203), - [anon_sym_GT] = ACTIONS(1203), - [anon_sym_DASH_DASH] = ACTIONS(1203), - [anon_sym_DASH] = ACTIONS(1203), - [anon_sym_break] = ACTIONS(1203), - [anon_sym_continue] = ACTIONS(1203), - [anon_sym_for] = ACTIONS(1203), - [anon_sym_in] = ACTIONS(1203), - [anon_sym_loop] = ACTIONS(1203), - [anon_sym_while] = ACTIONS(1203), - [anon_sym_do] = ACTIONS(1203), - [anon_sym_if] = ACTIONS(1203), - [anon_sym_match] = ACTIONS(1203), - [anon_sym_LBRACE] = ACTIONS(1203), - [anon_sym_DOT_DOT] = ACTIONS(1203), - [anon_sym_try] = ACTIONS(1203), - [anon_sym_return] = ACTIONS(1203), - [anon_sym_source] = ACTIONS(1203), - [anon_sym_source_DASHenv] = ACTIONS(1203), - [anon_sym_register] = ACTIONS(1203), - [anon_sym_hide] = ACTIONS(1203), - [anon_sym_hide_DASHenv] = ACTIONS(1203), - [anon_sym_overlay] = ACTIONS(1203), - [anon_sym_as] = ACTIONS(1203), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_where] = ACTIONS(1203), - [anon_sym_STAR_STAR] = ACTIONS(1203), - [anon_sym_PLUS_PLUS] = ACTIONS(1203), - [anon_sym_SLASH] = ACTIONS(1203), - [anon_sym_mod] = ACTIONS(1203), - [anon_sym_SLASH_SLASH] = ACTIONS(1203), - [anon_sym_PLUS] = ACTIONS(1203), - [anon_sym_bit_DASHshl] = ACTIONS(1203), - [anon_sym_bit_DASHshr] = ACTIONS(1203), - [anon_sym_EQ_EQ] = ACTIONS(1203), - [anon_sym_BANG_EQ] = ACTIONS(1203), - [anon_sym_LT2] = ACTIONS(1203), - [anon_sym_LT_EQ] = ACTIONS(1203), - [anon_sym_GT_EQ] = ACTIONS(1203), - [anon_sym_not_DASHin] = ACTIONS(1203), - [anon_sym_starts_DASHwith] = ACTIONS(1203), - [anon_sym_ends_DASHwith] = ACTIONS(1203), - [anon_sym_EQ_TILDE] = ACTIONS(1203), - [anon_sym_BANG_TILDE] = ACTIONS(1203), - [anon_sym_bit_DASHand] = ACTIONS(1203), - [anon_sym_bit_DASHxor] = ACTIONS(1203), - [anon_sym_bit_DASHor] = ACTIONS(1203), - [anon_sym_and] = ACTIONS(1203), - [anon_sym_xor] = ACTIONS(1203), - [anon_sym_or] = ACTIONS(1203), - [anon_sym_not] = ACTIONS(1203), - [anon_sym_DOT] = ACTIONS(1213), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1203), - [anon_sym_DOT_DOT_LT] = ACTIONS(1203), - [anon_sym_null] = ACTIONS(1203), - [anon_sym_true] = ACTIONS(1203), - [anon_sym_false] = ACTIONS(1203), - [aux_sym__val_number_decimal_token1] = ACTIONS(1203), - [aux_sym__val_number_decimal_token2] = ACTIONS(1203), - [anon_sym_DOT2] = ACTIONS(1203), - [aux_sym__val_number_decimal_token3] = ACTIONS(1203), - [aux_sym__val_number_token1] = ACTIONS(1203), - [aux_sym__val_number_token2] = ACTIONS(1203), - [aux_sym__val_number_token3] = ACTIONS(1203), - [aux_sym__val_number_token4] = ACTIONS(1203), - [aux_sym__val_number_token5] = ACTIONS(1203), - [aux_sym__val_number_token6] = ACTIONS(1203), - [anon_sym_0b] = ACTIONS(1203), - [anon_sym_0o] = ACTIONS(1203), - [anon_sym_0x] = ACTIONS(1203), - [sym_val_date] = ACTIONS(1203), - [anon_sym_DQUOTE] = ACTIONS(1203), - [sym__str_single_quotes] = ACTIONS(1203), - [sym__str_back_ticks] = ACTIONS(1203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1203), - [anon_sym_CARET] = ACTIONS(1203), - [anon_sym_POUND] = ACTIONS(113), - }, - [382] = { - [sym_cell_path] = STATE(599), - [sym_path] = STATE(384), - [sym_comment] = STATE(382), - [ts_builtin_sym_end] = ACTIONS(1012), - [anon_sym_export] = ACTIONS(1010), - [anon_sym_alias] = ACTIONS(1010), - [anon_sym_let] = ACTIONS(1010), - [anon_sym_let_DASHenv] = ACTIONS(1010), - [anon_sym_mut] = ACTIONS(1010), - [anon_sym_const] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1010), - [sym_cmd_identifier] = ACTIONS(1010), - [anon_sym_LF] = ACTIONS(1012), - [anon_sym_def] = ACTIONS(1010), - [anon_sym_export_DASHenv] = ACTIONS(1010), - [anon_sym_extern] = ACTIONS(1010), - [anon_sym_module] = ACTIONS(1010), - [anon_sym_use] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(1010), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_error] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1010), - [anon_sym_DASH_DASH] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1010), - [anon_sym_continue] = ACTIONS(1010), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_in] = ACTIONS(1010), - [anon_sym_loop] = ACTIONS(1010), - [anon_sym_while] = ACTIONS(1010), - [anon_sym_do] = ACTIONS(1010), - [anon_sym_if] = ACTIONS(1010), - [anon_sym_match] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_DOT_DOT] = ACTIONS(1010), - [anon_sym_try] = ACTIONS(1010), - [anon_sym_return] = ACTIONS(1010), - [anon_sym_source] = ACTIONS(1010), - [anon_sym_source_DASHenv] = ACTIONS(1010), - [anon_sym_register] = ACTIONS(1010), - [anon_sym_hide] = ACTIONS(1010), - [anon_sym_hide_DASHenv] = ACTIONS(1010), - [anon_sym_overlay] = ACTIONS(1010), - [anon_sym_as] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1010), - [anon_sym_where] = ACTIONS(1010), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_SLASH] = ACTIONS(1010), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT2] = ACTIONS(1010), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT_EQ] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_not] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(1213), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT] = ACTIONS(1010), - [anon_sym_null] = ACTIONS(1010), - [anon_sym_true] = ACTIONS(1010), - [anon_sym_false] = ACTIONS(1010), - [aux_sym__val_number_decimal_token1] = ACTIONS(1010), - [aux_sym__val_number_decimal_token2] = ACTIONS(1010), - [anon_sym_DOT2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = 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(1010), - [aux_sym__val_number_token5] = ACTIONS(1010), - [aux_sym__val_number_token6] = ACTIONS(1010), - [anon_sym_0b] = ACTIONS(1010), - [anon_sym_0o] = ACTIONS(1010), - [anon_sym_0x] = ACTIONS(1010), - [sym_val_date] = ACTIONS(1010), - [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_CARET] = ACTIONS(1010), - [anon_sym_POUND] = ACTIONS(113), - }, - [383] = { - [sym_comment] = STATE(383), - [ts_builtin_sym_end] = ACTIONS(1196), - [anon_sym_export] = ACTIONS(1194), - [anon_sym_alias] = ACTIONS(1194), - [anon_sym_let] = ACTIONS(1194), - [anon_sym_let_DASHenv] = ACTIONS(1194), - [anon_sym_mut] = ACTIONS(1194), - [anon_sym_const] = ACTIONS(1194), - [anon_sym_SEMI] = ACTIONS(1194), - [sym_cmd_identifier] = ACTIONS(1194), - [anon_sym_LF] = ACTIONS(1196), - [anon_sym_def] = ACTIONS(1194), - [anon_sym_export_DASHenv] = ACTIONS(1194), - [anon_sym_extern] = ACTIONS(1194), - [anon_sym_module] = ACTIONS(1194), - [anon_sym_use] = ACTIONS(1194), - [anon_sym_LBRACK] = ACTIONS(1194), - [anon_sym_LPAREN] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1194), - [anon_sym_error] = ACTIONS(1194), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_break] = ACTIONS(1194), - [anon_sym_continue] = ACTIONS(1194), - [anon_sym_for] = ACTIONS(1194), - [anon_sym_in] = ACTIONS(1198), - [anon_sym_loop] = ACTIONS(1194), - [anon_sym_while] = ACTIONS(1194), - [anon_sym_do] = ACTIONS(1194), - [anon_sym_if] = ACTIONS(1194), - [anon_sym_match] = ACTIONS(1194), - [anon_sym_LBRACE] = ACTIONS(1194), - [anon_sym_DOT_DOT] = ACTIONS(1194), - [anon_sym_try] = ACTIONS(1194), - [anon_sym_return] = ACTIONS(1194), - [anon_sym_source] = ACTIONS(1194), - [anon_sym_source_DASHenv] = ACTIONS(1194), - [anon_sym_register] = ACTIONS(1194), - [anon_sym_hide] = ACTIONS(1194), - [anon_sym_hide_DASHenv] = ACTIONS(1194), - [anon_sym_overlay] = ACTIONS(1194), - [anon_sym_as] = ACTIONS(1194), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_where] = ACTIONS(1194), - [anon_sym_STAR_STAR] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_SLASH] = ACTIONS(1198), - [anon_sym_mod] = ACTIONS(1198), - [anon_sym_SLASH_SLASH] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1198), - [anon_sym_bit_DASHshl] = ACTIONS(1198), - [anon_sym_bit_DASHshr] = ACTIONS(1198), - [anon_sym_EQ_EQ] = ACTIONS(1198), - [anon_sym_BANG_EQ] = ACTIONS(1198), - [anon_sym_LT2] = ACTIONS(1198), - [anon_sym_LT_EQ] = ACTIONS(1198), - [anon_sym_GT_EQ] = ACTIONS(1198), - [anon_sym_not_DASHin] = ACTIONS(1198), - [anon_sym_starts_DASHwith] = ACTIONS(1198), - [anon_sym_ends_DASHwith] = ACTIONS(1198), - [anon_sym_EQ_TILDE] = ACTIONS(1198), - [anon_sym_BANG_TILDE] = ACTIONS(1198), - [anon_sym_bit_DASHand] = ACTIONS(1198), - [anon_sym_bit_DASHxor] = ACTIONS(1198), - [anon_sym_bit_DASHor] = ACTIONS(1198), - [anon_sym_and] = ACTIONS(1198), - [anon_sym_xor] = ACTIONS(1198), - [anon_sym_or] = ACTIONS(1198), - [anon_sym_not] = ACTIONS(1194), - [anon_sym_DOT_DOT2] = ACTIONS(1228), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1194), - [anon_sym_DOT_DOT_LT] = ACTIONS(1194), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1230), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1230), - [anon_sym_null] = ACTIONS(1194), - [anon_sym_true] = ACTIONS(1194), - [anon_sym_false] = ACTIONS(1194), - [aux_sym__val_number_decimal_token1] = ACTIONS(1194), - [aux_sym__val_number_decimal_token2] = ACTIONS(1194), - [anon_sym_DOT2] = ACTIONS(1194), - [aux_sym__val_number_decimal_token3] = ACTIONS(1194), - [aux_sym__val_number_token1] = ACTIONS(1194), - [aux_sym__val_number_token2] = ACTIONS(1194), - [aux_sym__val_number_token3] = ACTIONS(1194), - [aux_sym__val_number_token4] = ACTIONS(1194), - [aux_sym__val_number_token5] = ACTIONS(1194), - [aux_sym__val_number_token6] = ACTIONS(1194), - [anon_sym_0b] = ACTIONS(1194), - [anon_sym_0o] = ACTIONS(1194), - [anon_sym_0x] = ACTIONS(1194), - [sym_val_date] = ACTIONS(1194), - [anon_sym_DQUOTE] = ACTIONS(1194), - [sym__str_single_quotes] = ACTIONS(1194), - [sym__str_back_ticks] = ACTIONS(1194), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1194), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1194), - [anon_sym_CARET] = ACTIONS(1194), - [anon_sym_POUND] = ACTIONS(113), - }, - [384] = { - [sym_path] = STATE(521), - [sym_comment] = STATE(384), - [aux_sym_cell_path_repeat1] = STATE(388), - [ts_builtin_sym_end] = ACTIONS(989), - [anon_sym_export] = ACTIONS(987), - [anon_sym_alias] = ACTIONS(987), - [anon_sym_let] = ACTIONS(987), - [anon_sym_let_DASHenv] = ACTIONS(987), - [anon_sym_mut] = ACTIONS(987), - [anon_sym_const] = ACTIONS(987), - [anon_sym_SEMI] = ACTIONS(987), - [sym_cmd_identifier] = ACTIONS(987), - [anon_sym_LF] = ACTIONS(989), - [anon_sym_def] = ACTIONS(987), - [anon_sym_export_DASHenv] = ACTIONS(987), - [anon_sym_extern] = ACTIONS(987), - [anon_sym_module] = ACTIONS(987), - [anon_sym_use] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(987), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_DOLLAR] = ACTIONS(987), - [anon_sym_error] = ACTIONS(987), - [anon_sym_GT] = ACTIONS(987), - [anon_sym_DASH_DASH] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_break] = ACTIONS(987), - [anon_sym_continue] = ACTIONS(987), - [anon_sym_for] = ACTIONS(987), - [anon_sym_in] = ACTIONS(987), - [anon_sym_loop] = ACTIONS(987), - [anon_sym_while] = ACTIONS(987), - [anon_sym_do] = ACTIONS(987), - [anon_sym_if] = ACTIONS(987), - [anon_sym_match] = ACTIONS(987), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_DOT_DOT] = ACTIONS(987), - [anon_sym_try] = ACTIONS(987), - [anon_sym_return] = ACTIONS(987), - [anon_sym_source] = ACTIONS(987), - [anon_sym_source_DASHenv] = ACTIONS(987), - [anon_sym_register] = ACTIONS(987), - [anon_sym_hide] = ACTIONS(987), - [anon_sym_hide_DASHenv] = ACTIONS(987), - [anon_sym_overlay] = ACTIONS(987), - [anon_sym_as] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(987), - [anon_sym_where] = ACTIONS(987), - [anon_sym_STAR_STAR] = ACTIONS(987), - [anon_sym_PLUS_PLUS] = ACTIONS(987), - [anon_sym_SLASH] = ACTIONS(987), - [anon_sym_mod] = ACTIONS(987), - [anon_sym_SLASH_SLASH] = ACTIONS(987), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_bit_DASHshl] = ACTIONS(987), - [anon_sym_bit_DASHshr] = ACTIONS(987), - [anon_sym_EQ_EQ] = ACTIONS(987), - [anon_sym_BANG_EQ] = ACTIONS(987), - [anon_sym_LT2] = ACTIONS(987), - [anon_sym_LT_EQ] = ACTIONS(987), - [anon_sym_GT_EQ] = ACTIONS(987), - [anon_sym_not_DASHin] = ACTIONS(987), - [anon_sym_starts_DASHwith] = ACTIONS(987), - [anon_sym_ends_DASHwith] = ACTIONS(987), - [anon_sym_EQ_TILDE] = ACTIONS(987), - [anon_sym_BANG_TILDE] = ACTIONS(987), - [anon_sym_bit_DASHand] = ACTIONS(987), - [anon_sym_bit_DASHxor] = ACTIONS(987), - [anon_sym_bit_DASHor] = ACTIONS(987), - [anon_sym_and] = ACTIONS(987), - [anon_sym_xor] = ACTIONS(987), - [anon_sym_or] = ACTIONS(987), - [anon_sym_not] = ACTIONS(987), - [anon_sym_DOT] = ACTIONS(1213), - [anon_sym_DOT_DOT_EQ] = ACTIONS(987), - [anon_sym_DOT_DOT_LT] = ACTIONS(987), - [anon_sym_null] = ACTIONS(987), - [anon_sym_true] = ACTIONS(987), - [anon_sym_false] = ACTIONS(987), - [aux_sym__val_number_decimal_token1] = ACTIONS(987), - [aux_sym__val_number_decimal_token2] = ACTIONS(987), - [anon_sym_DOT2] = ACTIONS(987), - [aux_sym__val_number_decimal_token3] = ACTIONS(987), - [aux_sym__val_number_token1] = ACTIONS(987), - [aux_sym__val_number_token2] = ACTIONS(987), - [aux_sym__val_number_token3] = ACTIONS(987), - [aux_sym__val_number_token4] = ACTIONS(987), - [aux_sym__val_number_token5] = ACTIONS(987), - [aux_sym__val_number_token6] = ACTIONS(987), - [anon_sym_0b] = ACTIONS(987), - [anon_sym_0o] = ACTIONS(987), - [anon_sym_0x] = ACTIONS(987), - [sym_val_date] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(987), - [sym__str_single_quotes] = ACTIONS(987), - [sym__str_back_ticks] = ACTIONS(987), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(987), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_POUND] = ACTIONS(113), - }, - [385] = { - [sym_comment] = STATE(385), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_alias] = ACTIONS(1109), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_let_DASHenv] = ACTIONS(1109), - [anon_sym_mut] = ACTIONS(1109), - [anon_sym_const] = ACTIONS(1109), - [anon_sym_SEMI] = ACTIONS(1109), - [sym_cmd_identifier] = ACTIONS(1109), - [anon_sym_LF] = ACTIONS(1111), - [anon_sym_def] = ACTIONS(1109), - [anon_sym_export_DASHenv] = ACTIONS(1109), - [anon_sym_extern] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_use] = ACTIONS(1109), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_RPAREN] = ACTIONS(1109), - [anon_sym_DOLLAR] = ACTIONS(1109), - [anon_sym_error] = ACTIONS(1109), - [anon_sym_GT] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_break] = ACTIONS(1109), - [anon_sym_continue] = ACTIONS(1109), - [anon_sym_for] = ACTIONS(1109), - [anon_sym_in] = ACTIONS(1109), - [anon_sym_loop] = ACTIONS(1109), - [anon_sym_while] = ACTIONS(1109), - [anon_sym_do] = ACTIONS(1109), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_RBRACE] = ACTIONS(1109), - [anon_sym_DOT_DOT] = ACTIONS(1109), - [anon_sym_try] = ACTIONS(1109), - [anon_sym_return] = ACTIONS(1109), - [anon_sym_source] = ACTIONS(1109), - [anon_sym_source_DASHenv] = ACTIONS(1109), - [anon_sym_register] = ACTIONS(1109), - [anon_sym_hide] = ACTIONS(1109), - [anon_sym_hide_DASHenv] = ACTIONS(1109), - [anon_sym_overlay] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_where] = ACTIONS(1109), - [anon_sym_STAR_STAR] = ACTIONS(1109), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_SLASH] = ACTIONS(1109), - [anon_sym_mod] = ACTIONS(1109), - [anon_sym_SLASH_SLASH] = ACTIONS(1109), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_bit_DASHshl] = ACTIONS(1109), - [anon_sym_bit_DASHshr] = ACTIONS(1109), - [anon_sym_EQ_EQ] = ACTIONS(1109), - [anon_sym_BANG_EQ] = ACTIONS(1109), - [anon_sym_LT2] = ACTIONS(1109), - [anon_sym_LT_EQ] = ACTIONS(1109), - [anon_sym_GT_EQ] = ACTIONS(1109), - [anon_sym_not_DASHin] = ACTIONS(1109), - [anon_sym_starts_DASHwith] = ACTIONS(1109), - [anon_sym_ends_DASHwith] = ACTIONS(1109), - [anon_sym_EQ_TILDE] = ACTIONS(1109), - [anon_sym_BANG_TILDE] = ACTIONS(1109), - [anon_sym_bit_DASHand] = ACTIONS(1109), - [anon_sym_bit_DASHxor] = ACTIONS(1109), - [anon_sym_bit_DASHor] = ACTIONS(1109), - [anon_sym_and] = ACTIONS(1109), - [anon_sym_xor] = ACTIONS(1109), - [anon_sym_or] = ACTIONS(1109), - [anon_sym_not] = ACTIONS(1109), - [anon_sym_DOT_DOT2] = ACTIONS(1109), - [anon_sym_DOT] = ACTIONS(1109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1109), - [anon_sym_DOT_DOT_LT] = ACTIONS(1109), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1111), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1111), - [anon_sym_null] = ACTIONS(1109), - [anon_sym_true] = ACTIONS(1109), - [anon_sym_false] = ACTIONS(1109), - [aux_sym__val_number_decimal_token1] = ACTIONS(1109), - [aux_sym__val_number_decimal_token2] = ACTIONS(1109), - [anon_sym_DOT2] = ACTIONS(1109), - [aux_sym__val_number_decimal_token3] = ACTIONS(1109), - [aux_sym__val_number_token1] = ACTIONS(1109), - [aux_sym__val_number_token2] = ACTIONS(1109), - [aux_sym__val_number_token3] = ACTIONS(1109), - [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(1109), - [anon_sym_0o] = ACTIONS(1109), - [anon_sym_0x] = ACTIONS(1109), - [sym_val_date] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(1109), - [sym__str_single_quotes] = ACTIONS(1109), - [sym__str_back_ticks] = ACTIONS(1109), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1109), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1109), - [anon_sym_CARET] = ACTIONS(1109), - [anon_sym_POUND] = ACTIONS(113), - }, - [386] = { - [sym_comment] = STATE(386), - [ts_builtin_sym_end] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(1059), - [anon_sym_alias] = ACTIONS(1059), - [anon_sym_let] = ACTIONS(1059), - [anon_sym_let_DASHenv] = ACTIONS(1059), - [anon_sym_mut] = ACTIONS(1059), - [anon_sym_const] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [sym_cmd_identifier] = ACTIONS(1059), - [anon_sym_LF] = ACTIONS(1061), - [anon_sym_def] = ACTIONS(1059), - [anon_sym_export_DASHenv] = ACTIONS(1059), - [anon_sym_extern] = ACTIONS(1059), - [anon_sym_module] = ACTIONS(1059), - [anon_sym_use] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_error] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_break] = ACTIONS(1059), - [anon_sym_continue] = ACTIONS(1059), - [anon_sym_for] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1059), - [anon_sym_loop] = ACTIONS(1059), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_do] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1059), - [anon_sym_match] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_try] = ACTIONS(1059), - [anon_sym_return] = ACTIONS(1059), - [anon_sym_source] = ACTIONS(1059), - [anon_sym_source_DASHenv] = ACTIONS(1059), - [anon_sym_register] = ACTIONS(1059), - [anon_sym_hide] = ACTIONS(1059), - [anon_sym_hide_DASHenv] = ACTIONS(1059), - [anon_sym_overlay] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(1059), - [anon_sym_QMARK2] = ACTIONS(1059), - [anon_sym_STAR_STAR] = ACTIONS(1059), - [anon_sym_PLUS_PLUS] = ACTIONS(1059), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_mod] = ACTIONS(1059), - [anon_sym_SLASH_SLASH] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_bit_DASHshl] = ACTIONS(1059), - [anon_sym_bit_DASHshr] = ACTIONS(1059), - [anon_sym_EQ_EQ] = ACTIONS(1059), - [anon_sym_BANG_EQ] = ACTIONS(1059), - [anon_sym_LT2] = ACTIONS(1059), - [anon_sym_LT_EQ] = ACTIONS(1059), - [anon_sym_GT_EQ] = ACTIONS(1059), - [anon_sym_not_DASHin] = ACTIONS(1059), - [anon_sym_starts_DASHwith] = ACTIONS(1059), - [anon_sym_ends_DASHwith] = ACTIONS(1059), - [anon_sym_EQ_TILDE] = ACTIONS(1059), - [anon_sym_BANG_TILDE] = ACTIONS(1059), - [anon_sym_bit_DASHand] = ACTIONS(1059), - [anon_sym_bit_DASHxor] = ACTIONS(1059), - [anon_sym_bit_DASHor] = ACTIONS(1059), - [anon_sym_and] = ACTIONS(1059), - [anon_sym_xor] = ACTIONS(1059), - [anon_sym_or] = ACTIONS(1059), - [anon_sym_not] = ACTIONS(1059), - [anon_sym_DOT_DOT2] = ACTIONS(1059), - [anon_sym_DOT] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1059), - [anon_sym_DOT_DOT_LT] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1061), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1061), - [anon_sym_null] = ACTIONS(1059), - [anon_sym_true] = ACTIONS(1059), - [anon_sym_false] = ACTIONS(1059), - [aux_sym__val_number_decimal_token1] = ACTIONS(1059), - [aux_sym__val_number_decimal_token2] = ACTIONS(1059), - [anon_sym_DOT2] = ACTIONS(1059), - [aux_sym__val_number_decimal_token3] = ACTIONS(1059), - [aux_sym__val_number_token1] = ACTIONS(1059), - [aux_sym__val_number_token2] = ACTIONS(1059), - [aux_sym__val_number_token3] = ACTIONS(1059), - [aux_sym__val_number_token4] = ACTIONS(1059), - [aux_sym__val_number_token5] = ACTIONS(1059), - [aux_sym__val_number_token6] = ACTIONS(1059), - [anon_sym_0b] = ACTIONS(1059), - [anon_sym_0o] = ACTIONS(1059), - [anon_sym_0x] = ACTIONS(1059), - [sym_val_date] = ACTIONS(1059), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym__str_single_quotes] = ACTIONS(1059), - [sym__str_back_ticks] = ACTIONS(1059), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1059), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1059), - [anon_sym_CARET] = ACTIONS(1059), - [anon_sym_POUND] = ACTIONS(113), - }, - [387] = { - [sym_comment] = STATE(387), - [ts_builtin_sym_end] = ACTIONS(1065), - [anon_sym_export] = ACTIONS(1063), - [anon_sym_alias] = ACTIONS(1063), - [anon_sym_let] = ACTIONS(1063), - [anon_sym_let_DASHenv] = ACTIONS(1063), - [anon_sym_mut] = ACTIONS(1063), - [anon_sym_const] = ACTIONS(1063), - [anon_sym_SEMI] = ACTIONS(1063), - [sym_cmd_identifier] = ACTIONS(1063), - [anon_sym_LF] = ACTIONS(1065), - [anon_sym_def] = ACTIONS(1063), - [anon_sym_export_DASHenv] = ACTIONS(1063), - [anon_sym_extern] = ACTIONS(1063), - [anon_sym_module] = ACTIONS(1063), - [anon_sym_use] = ACTIONS(1063), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_error] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_break] = ACTIONS(1063), - [anon_sym_continue] = ACTIONS(1063), - [anon_sym_for] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1063), - [anon_sym_loop] = ACTIONS(1063), - [anon_sym_while] = ACTIONS(1063), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_if] = ACTIONS(1063), - [anon_sym_match] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1063), - [anon_sym_return] = ACTIONS(1063), - [anon_sym_source] = ACTIONS(1063), - [anon_sym_source_DASHenv] = ACTIONS(1063), - [anon_sym_register] = ACTIONS(1063), - [anon_sym_hide] = ACTIONS(1063), - [anon_sym_hide_DASHenv] = ACTIONS(1063), - [anon_sym_overlay] = ACTIONS(1063), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_where] = ACTIONS(1063), - [anon_sym_QMARK2] = ACTIONS(1063), - [anon_sym_STAR_STAR] = ACTIONS(1063), - [anon_sym_PLUS_PLUS] = ACTIONS(1063), - [anon_sym_SLASH] = ACTIONS(1063), - [anon_sym_mod] = ACTIONS(1063), - [anon_sym_SLASH_SLASH] = ACTIONS(1063), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_bit_DASHshl] = ACTIONS(1063), - [anon_sym_bit_DASHshr] = ACTIONS(1063), - [anon_sym_EQ_EQ] = ACTIONS(1063), - [anon_sym_BANG_EQ] = ACTIONS(1063), - [anon_sym_LT2] = ACTIONS(1063), - [anon_sym_LT_EQ] = ACTIONS(1063), - [anon_sym_GT_EQ] = ACTIONS(1063), - [anon_sym_not_DASHin] = ACTIONS(1063), - [anon_sym_starts_DASHwith] = ACTIONS(1063), - [anon_sym_ends_DASHwith] = ACTIONS(1063), - [anon_sym_EQ_TILDE] = ACTIONS(1063), - [anon_sym_BANG_TILDE] = ACTIONS(1063), - [anon_sym_bit_DASHand] = ACTIONS(1063), - [anon_sym_bit_DASHxor] = ACTIONS(1063), - [anon_sym_bit_DASHor] = ACTIONS(1063), - [anon_sym_and] = ACTIONS(1063), - [anon_sym_xor] = ACTIONS(1063), - [anon_sym_or] = ACTIONS(1063), - [anon_sym_not] = ACTIONS(1063), - [anon_sym_DOT_DOT2] = ACTIONS(1063), - [anon_sym_DOT] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1063), - [anon_sym_DOT_DOT_LT] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1065), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1065), - [anon_sym_null] = ACTIONS(1063), - [anon_sym_true] = ACTIONS(1063), - [anon_sym_false] = ACTIONS(1063), - [aux_sym__val_number_decimal_token1] = ACTIONS(1063), - [aux_sym__val_number_decimal_token2] = ACTIONS(1063), - [anon_sym_DOT2] = ACTIONS(1063), - [aux_sym__val_number_decimal_token3] = ACTIONS(1063), - [aux_sym__val_number_token1] = ACTIONS(1063), - [aux_sym__val_number_token2] = ACTIONS(1063), - [aux_sym__val_number_token3] = ACTIONS(1063), - [aux_sym__val_number_token4] = ACTIONS(1063), - [aux_sym__val_number_token5] = ACTIONS(1063), - [aux_sym__val_number_token6] = ACTIONS(1063), - [anon_sym_0b] = ACTIONS(1063), - [anon_sym_0o] = ACTIONS(1063), - [anon_sym_0x] = ACTIONS(1063), - [sym_val_date] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [sym__str_single_quotes] = ACTIONS(1063), - [sym__str_back_ticks] = ACTIONS(1063), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1063), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1063), - [anon_sym_CARET] = ACTIONS(1063), - [anon_sym_POUND] = ACTIONS(113), - }, - [388] = { - [sym_path] = STATE(521), - [sym_comment] = STATE(388), - [aux_sym_cell_path_repeat1] = STATE(390), - [ts_builtin_sym_end] = ACTIONS(1008), - [anon_sym_export] = ACTIONS(1006), - [anon_sym_alias] = ACTIONS(1006), - [anon_sym_let] = ACTIONS(1006), - [anon_sym_let_DASHenv] = ACTIONS(1006), - [anon_sym_mut] = ACTIONS(1006), - [anon_sym_const] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1006), - [sym_cmd_identifier] = ACTIONS(1006), - [anon_sym_LF] = ACTIONS(1008), - [anon_sym_def] = ACTIONS(1006), - [anon_sym_export_DASHenv] = ACTIONS(1006), - [anon_sym_extern] = ACTIONS(1006), - [anon_sym_module] = ACTIONS(1006), - [anon_sym_use] = ACTIONS(1006), - [anon_sym_LBRACK] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_error] = ACTIONS(1006), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_break] = ACTIONS(1006), - [anon_sym_continue] = ACTIONS(1006), - [anon_sym_for] = ACTIONS(1006), - [anon_sym_in] = ACTIONS(1006), - [anon_sym_loop] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(1006), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_match] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_try] = ACTIONS(1006), - [anon_sym_return] = ACTIONS(1006), - [anon_sym_source] = ACTIONS(1006), - [anon_sym_source_DASHenv] = ACTIONS(1006), - [anon_sym_register] = ACTIONS(1006), - [anon_sym_hide] = ACTIONS(1006), - [anon_sym_hide_DASHenv] = ACTIONS(1006), - [anon_sym_overlay] = ACTIONS(1006), - [anon_sym_as] = ACTIONS(1006), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_where] = ACTIONS(1006), - [anon_sym_STAR_STAR] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_mod] = ACTIONS(1006), - [anon_sym_SLASH_SLASH] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_bit_DASHshl] = ACTIONS(1006), - [anon_sym_bit_DASHshr] = ACTIONS(1006), - [anon_sym_EQ_EQ] = ACTIONS(1006), - [anon_sym_BANG_EQ] = ACTIONS(1006), - [anon_sym_LT2] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1006), - [anon_sym_GT_EQ] = ACTIONS(1006), - [anon_sym_not_DASHin] = ACTIONS(1006), - [anon_sym_starts_DASHwith] = ACTIONS(1006), - [anon_sym_ends_DASHwith] = ACTIONS(1006), - [anon_sym_EQ_TILDE] = ACTIONS(1006), - [anon_sym_BANG_TILDE] = ACTIONS(1006), - [anon_sym_bit_DASHand] = ACTIONS(1006), - [anon_sym_bit_DASHxor] = ACTIONS(1006), - [anon_sym_bit_DASHor] = ACTIONS(1006), - [anon_sym_and] = ACTIONS(1006), - [anon_sym_xor] = ACTIONS(1006), - [anon_sym_or] = ACTIONS(1006), - [anon_sym_not] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1213), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT] = ACTIONS(1006), - [anon_sym_null] = ACTIONS(1006), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1006), - [anon_sym_DOT2] = ACTIONS(1006), - [aux_sym__val_number_decimal_token3] = ACTIONS(1006), - [aux_sym__val_number_token1] = ACTIONS(1006), - [aux_sym__val_number_token2] = ACTIONS(1006), - [aux_sym__val_number_token3] = ACTIONS(1006), - [aux_sym__val_number_token4] = ACTIONS(1006), - [aux_sym__val_number_token5] = ACTIONS(1006), - [aux_sym__val_number_token6] = ACTIONS(1006), - [anon_sym_0b] = ACTIONS(1006), - [anon_sym_0o] = ACTIONS(1006), - [anon_sym_0x] = ACTIONS(1006), - [sym_val_date] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym__str_single_quotes] = ACTIONS(1006), - [sym__str_back_ticks] = ACTIONS(1006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1006), - [anon_sym_CARET] = ACTIONS(1006), - [anon_sym_POUND] = ACTIONS(113), - }, - [389] = { - [sym_comment] = STATE(389), - [anon_sym_export] = ACTIONS(1113), - [anon_sym_alias] = ACTIONS(1113), - [anon_sym_let] = ACTIONS(1113), - [anon_sym_let_DASHenv] = ACTIONS(1113), - [anon_sym_mut] = ACTIONS(1113), - [anon_sym_const] = ACTIONS(1113), - [anon_sym_SEMI] = ACTIONS(1113), - [sym_cmd_identifier] = ACTIONS(1113), - [anon_sym_LF] = ACTIONS(1115), - [anon_sym_def] = ACTIONS(1113), - [anon_sym_export_DASHenv] = ACTIONS(1113), - [anon_sym_extern] = ACTIONS(1113), - [anon_sym_module] = ACTIONS(1113), - [anon_sym_use] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_RPAREN] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1113), - [anon_sym_error] = ACTIONS(1113), - [anon_sym_GT] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_in] = ACTIONS(1113), - [anon_sym_loop] = ACTIONS(1113), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_RBRACE] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1113), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_source] = ACTIONS(1113), - [anon_sym_source_DASHenv] = ACTIONS(1113), - [anon_sym_register] = ACTIONS(1113), - [anon_sym_hide] = ACTIONS(1113), - [anon_sym_hide_DASHenv] = ACTIONS(1113), - [anon_sym_overlay] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_where] = ACTIONS(1113), - [anon_sym_STAR_STAR] = ACTIONS(1113), - [anon_sym_PLUS_PLUS] = ACTIONS(1113), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_mod] = ACTIONS(1113), - [anon_sym_SLASH_SLASH] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_bit_DASHshl] = ACTIONS(1113), - [anon_sym_bit_DASHshr] = ACTIONS(1113), - [anon_sym_EQ_EQ] = ACTIONS(1113), - [anon_sym_BANG_EQ] = ACTIONS(1113), - [anon_sym_LT2] = ACTIONS(1113), - [anon_sym_LT_EQ] = ACTIONS(1113), - [anon_sym_GT_EQ] = ACTIONS(1113), - [anon_sym_not_DASHin] = ACTIONS(1113), - [anon_sym_starts_DASHwith] = ACTIONS(1113), - [anon_sym_ends_DASHwith] = ACTIONS(1113), - [anon_sym_EQ_TILDE] = ACTIONS(1113), - [anon_sym_BANG_TILDE] = ACTIONS(1113), - [anon_sym_bit_DASHand] = ACTIONS(1113), - [anon_sym_bit_DASHxor] = ACTIONS(1113), - [anon_sym_bit_DASHor] = ACTIONS(1113), - [anon_sym_and] = ACTIONS(1113), - [anon_sym_xor] = ACTIONS(1113), - [anon_sym_or] = ACTIONS(1113), - [anon_sym_not] = ACTIONS(1113), - [anon_sym_DOT_DOT2] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1113), - [anon_sym_DOT_DOT_LT] = ACTIONS(1113), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1115), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1113), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1113), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_decimal_token2] = ACTIONS(1113), - [anon_sym_DOT2] = ACTIONS(1113), - [aux_sym__val_number_decimal_token3] = ACTIONS(1113), - [aux_sym__val_number_token1] = ACTIONS(1113), - [aux_sym__val_number_token2] = ACTIONS(1113), - [aux_sym__val_number_token3] = ACTIONS(1113), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1113), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_0b] = ACTIONS(1113), - [anon_sym_0o] = ACTIONS(1113), - [anon_sym_0x] = ACTIONS(1113), - [sym_val_date] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym__str_single_quotes] = ACTIONS(1113), - [sym__str_back_ticks] = ACTIONS(1113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), - [anon_sym_CARET] = ACTIONS(1113), - [anon_sym_POUND] = ACTIONS(113), - }, - [390] = { - [sym_path] = STATE(521), - [sym_comment] = STATE(390), - [aux_sym_cell_path_repeat1] = STATE(390), - [ts_builtin_sym_end] = ACTIONS(1001), - [anon_sym_export] = ACTIONS(999), - [anon_sym_alias] = ACTIONS(999), - [anon_sym_let] = ACTIONS(999), - [anon_sym_let_DASHenv] = ACTIONS(999), - [anon_sym_mut] = ACTIONS(999), - [anon_sym_const] = ACTIONS(999), - [anon_sym_SEMI] = ACTIONS(999), - [sym_cmd_identifier] = ACTIONS(999), - [anon_sym_LF] = ACTIONS(1001), - [anon_sym_def] = ACTIONS(999), - [anon_sym_export_DASHenv] = ACTIONS(999), - [anon_sym_extern] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_use] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_error] = ACTIONS(999), - [anon_sym_GT] = ACTIONS(999), - [anon_sym_DASH_DASH] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_break] = ACTIONS(999), - [anon_sym_continue] = ACTIONS(999), - [anon_sym_for] = ACTIONS(999), - [anon_sym_in] = ACTIONS(999), - [anon_sym_loop] = ACTIONS(999), - [anon_sym_while] = ACTIONS(999), - [anon_sym_do] = ACTIONS(999), - [anon_sym_if] = ACTIONS(999), - [anon_sym_match] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(999), - [anon_sym_DOT_DOT] = ACTIONS(999), - [anon_sym_try] = ACTIONS(999), - [anon_sym_return] = ACTIONS(999), - [anon_sym_source] = ACTIONS(999), - [anon_sym_source_DASHenv] = ACTIONS(999), - [anon_sym_register] = ACTIONS(999), - [anon_sym_hide] = ACTIONS(999), - [anon_sym_hide_DASHenv] = ACTIONS(999), - [anon_sym_overlay] = ACTIONS(999), - [anon_sym_as] = ACTIONS(999), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_where] = ACTIONS(999), - [anon_sym_STAR_STAR] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(999), - [anon_sym_mod] = ACTIONS(999), - [anon_sym_SLASH_SLASH] = ACTIONS(999), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_bit_DASHshl] = ACTIONS(999), - [anon_sym_bit_DASHshr] = ACTIONS(999), - [anon_sym_EQ_EQ] = ACTIONS(999), - [anon_sym_BANG_EQ] = ACTIONS(999), - [anon_sym_LT2] = ACTIONS(999), - [anon_sym_LT_EQ] = ACTIONS(999), - [anon_sym_GT_EQ] = ACTIONS(999), - [anon_sym_not_DASHin] = ACTIONS(999), - [anon_sym_starts_DASHwith] = ACTIONS(999), - [anon_sym_ends_DASHwith] = ACTIONS(999), - [anon_sym_EQ_TILDE] = ACTIONS(999), - [anon_sym_BANG_TILDE] = ACTIONS(999), - [anon_sym_bit_DASHand] = ACTIONS(999), - [anon_sym_bit_DASHxor] = ACTIONS(999), - [anon_sym_bit_DASHor] = ACTIONS(999), - [anon_sym_and] = ACTIONS(999), - [anon_sym_xor] = ACTIONS(999), - [anon_sym_or] = ACTIONS(999), - [anon_sym_not] = ACTIONS(999), - [anon_sym_DOT] = ACTIONS(1232), - [anon_sym_DOT_DOT_EQ] = ACTIONS(999), - [anon_sym_DOT_DOT_LT] = ACTIONS(999), - [anon_sym_null] = ACTIONS(999), - [anon_sym_true] = ACTIONS(999), - [anon_sym_false] = ACTIONS(999), - [aux_sym__val_number_decimal_token1] = ACTIONS(999), - [aux_sym__val_number_decimal_token2] = ACTIONS(999), - [anon_sym_DOT2] = ACTIONS(999), - [aux_sym__val_number_decimal_token3] = ACTIONS(999), - [aux_sym__val_number_token1] = ACTIONS(999), - [aux_sym__val_number_token2] = ACTIONS(999), - [aux_sym__val_number_token3] = ACTIONS(999), - [aux_sym__val_number_token4] = ACTIONS(999), - [aux_sym__val_number_token5] = ACTIONS(999), - [aux_sym__val_number_token6] = ACTIONS(999), - [anon_sym_0b] = ACTIONS(999), - [anon_sym_0o] = ACTIONS(999), - [anon_sym_0x] = ACTIONS(999), - [sym_val_date] = ACTIONS(999), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym__str_single_quotes] = ACTIONS(999), - [sym__str_back_ticks] = ACTIONS(999), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(999), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(999), - [anon_sym_CARET] = ACTIONS(999), - [anon_sym_POUND] = ACTIONS(113), - }, - [391] = { - [sym_comment] = STATE(391), - [anon_sym_export] = ACTIONS(1117), - [anon_sym_alias] = ACTIONS(1117), - [anon_sym_let] = ACTIONS(1117), - [anon_sym_let_DASHenv] = ACTIONS(1117), - [anon_sym_mut] = ACTIONS(1117), - [anon_sym_const] = ACTIONS(1117), - [anon_sym_SEMI] = ACTIONS(1117), - [sym_cmd_identifier] = ACTIONS(1117), - [anon_sym_LF] = ACTIONS(1119), - [anon_sym_def] = ACTIONS(1117), - [anon_sym_export_DASHenv] = ACTIONS(1117), - [anon_sym_extern] = ACTIONS(1117), - [anon_sym_module] = ACTIONS(1117), - [anon_sym_use] = ACTIONS(1117), - [anon_sym_LBRACK] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1117), - [anon_sym_RPAREN] = ACTIONS(1117), - [anon_sym_DOLLAR] = ACTIONS(1117), - [anon_sym_error] = ACTIONS(1117), - [anon_sym_GT] = ACTIONS(1117), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_break] = ACTIONS(1117), - [anon_sym_continue] = ACTIONS(1117), - [anon_sym_for] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1117), - [anon_sym_loop] = ACTIONS(1117), - [anon_sym_while] = ACTIONS(1117), - [anon_sym_do] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1117), - [anon_sym_LBRACE] = ACTIONS(1117), - [anon_sym_RBRACE] = ACTIONS(1117), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_try] = ACTIONS(1117), - [anon_sym_return] = ACTIONS(1117), - [anon_sym_source] = ACTIONS(1117), - [anon_sym_source_DASHenv] = ACTIONS(1117), - [anon_sym_register] = ACTIONS(1117), - [anon_sym_hide] = ACTIONS(1117), - [anon_sym_hide_DASHenv] = ACTIONS(1117), - [anon_sym_overlay] = ACTIONS(1117), - [anon_sym_STAR] = ACTIONS(1117), - [anon_sym_where] = ACTIONS(1117), - [anon_sym_STAR_STAR] = ACTIONS(1117), - [anon_sym_PLUS_PLUS] = ACTIONS(1117), - [anon_sym_SLASH] = ACTIONS(1117), - [anon_sym_mod] = ACTIONS(1117), - [anon_sym_SLASH_SLASH] = ACTIONS(1117), - [anon_sym_PLUS] = ACTIONS(1117), - [anon_sym_bit_DASHshl] = ACTIONS(1117), - [anon_sym_bit_DASHshr] = ACTIONS(1117), - [anon_sym_EQ_EQ] = ACTIONS(1117), - [anon_sym_BANG_EQ] = ACTIONS(1117), - [anon_sym_LT2] = ACTIONS(1117), - [anon_sym_LT_EQ] = ACTIONS(1117), - [anon_sym_GT_EQ] = ACTIONS(1117), - [anon_sym_not_DASHin] = ACTIONS(1117), - [anon_sym_starts_DASHwith] = ACTIONS(1117), - [anon_sym_ends_DASHwith] = ACTIONS(1117), - [anon_sym_EQ_TILDE] = ACTIONS(1117), - [anon_sym_BANG_TILDE] = ACTIONS(1117), - [anon_sym_bit_DASHand] = ACTIONS(1117), - [anon_sym_bit_DASHxor] = ACTIONS(1117), - [anon_sym_bit_DASHor] = ACTIONS(1117), - [anon_sym_and] = ACTIONS(1117), - [anon_sym_xor] = ACTIONS(1117), - [anon_sym_or] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1117), - [anon_sym_DOT_DOT2] = ACTIONS(1117), - [anon_sym_DOT] = ACTIONS(1117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1117), - [anon_sym_DOT_DOT_LT] = ACTIONS(1117), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1119), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1119), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_true] = ACTIONS(1117), - [anon_sym_false] = ACTIONS(1117), - [aux_sym__val_number_decimal_token1] = ACTIONS(1117), - [aux_sym__val_number_decimal_token2] = ACTIONS(1117), - [anon_sym_DOT2] = ACTIONS(1117), - [aux_sym__val_number_decimal_token3] = ACTIONS(1117), - [aux_sym__val_number_token1] = ACTIONS(1117), - [aux_sym__val_number_token2] = ACTIONS(1117), - [aux_sym__val_number_token3] = ACTIONS(1117), - [aux_sym__val_number_token4] = ACTIONS(1117), - [aux_sym__val_number_token5] = ACTIONS(1117), - [aux_sym__val_number_token6] = ACTIONS(1117), - [anon_sym_0b] = ACTIONS(1117), - [anon_sym_0o] = ACTIONS(1117), - [anon_sym_0x] = ACTIONS(1117), - [sym_val_date] = ACTIONS(1117), - [anon_sym_DQUOTE] = ACTIONS(1117), - [sym__str_single_quotes] = ACTIONS(1117), - [sym__str_back_ticks] = ACTIONS(1117), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1117), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1117), - [anon_sym_CARET] = ACTIONS(1117), - [anon_sym_POUND] = ACTIONS(113), - }, - [392] = { - [sym_comment] = STATE(392), - [ts_builtin_sym_end] = ACTIONS(1160), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_alias] = ACTIONS(1158), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_let_DASHenv] = ACTIONS(1158), - [anon_sym_mut] = ACTIONS(1158), - [anon_sym_const] = ACTIONS(1158), - [anon_sym_SEMI] = ACTIONS(1158), - [sym_cmd_identifier] = ACTIONS(1158), - [anon_sym_LF] = ACTIONS(1160), - [anon_sym_def] = ACTIONS(1158), - [anon_sym_export_DASHenv] = ACTIONS(1158), - [anon_sym_extern] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_use] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_LPAREN] = ACTIONS(1158), - [anon_sym_DOLLAR] = ACTIONS(1158), - [anon_sym_error] = ACTIONS(1158), - [anon_sym_GT] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_break] = ACTIONS(1158), - [anon_sym_continue] = ACTIONS(1158), - [anon_sym_for] = ACTIONS(1158), - [anon_sym_in] = ACTIONS(1158), - [anon_sym_loop] = ACTIONS(1158), - [anon_sym_while] = ACTIONS(1158), - [anon_sym_do] = ACTIONS(1158), - [anon_sym_if] = ACTIONS(1158), - [anon_sym_match] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1158), - [anon_sym_DOT_DOT] = ACTIONS(1158), - [anon_sym_try] = ACTIONS(1158), - [anon_sym_return] = ACTIONS(1158), - [anon_sym_source] = ACTIONS(1158), - [anon_sym_source_DASHenv] = ACTIONS(1158), - [anon_sym_register] = ACTIONS(1158), - [anon_sym_hide] = ACTIONS(1158), - [anon_sym_hide_DASHenv] = ACTIONS(1158), - [anon_sym_overlay] = ACTIONS(1158), - [anon_sym_as] = ACTIONS(1158), - [anon_sym_STAR] = ACTIONS(1158), - [anon_sym_where] = ACTIONS(1158), - [anon_sym_STAR_STAR] = ACTIONS(1158), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_SLASH] = ACTIONS(1158), - [anon_sym_mod] = ACTIONS(1158), - [anon_sym_SLASH_SLASH] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1158), - [anon_sym_bit_DASHshl] = ACTIONS(1158), - [anon_sym_bit_DASHshr] = ACTIONS(1158), - [anon_sym_EQ_EQ] = ACTIONS(1158), - [anon_sym_BANG_EQ] = ACTIONS(1158), - [anon_sym_LT2] = ACTIONS(1158), - [anon_sym_LT_EQ] = ACTIONS(1158), - [anon_sym_GT_EQ] = ACTIONS(1158), - [anon_sym_not_DASHin] = ACTIONS(1158), - [anon_sym_starts_DASHwith] = ACTIONS(1158), - [anon_sym_ends_DASHwith] = ACTIONS(1158), - [anon_sym_EQ_TILDE] = ACTIONS(1158), - [anon_sym_BANG_TILDE] = ACTIONS(1158), - [anon_sym_bit_DASHand] = ACTIONS(1158), - [anon_sym_bit_DASHxor] = ACTIONS(1158), - [anon_sym_bit_DASHor] = ACTIONS(1158), - [anon_sym_and] = ACTIONS(1158), - [anon_sym_xor] = ACTIONS(1158), - [anon_sym_or] = ACTIONS(1158), - [anon_sym_not] = ACTIONS(1158), - [anon_sym_DOT_DOT2] = ACTIONS(1228), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1158), - [anon_sym_DOT_DOT_LT] = ACTIONS(1158), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1230), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1230), - [anon_sym_null] = ACTIONS(1158), - [anon_sym_true] = ACTIONS(1158), - [anon_sym_false] = ACTIONS(1158), - [aux_sym__val_number_decimal_token1] = ACTIONS(1158), - [aux_sym__val_number_decimal_token2] = ACTIONS(1158), - [anon_sym_DOT2] = ACTIONS(1158), - [aux_sym__val_number_decimal_token3] = ACTIONS(1158), - [aux_sym__val_number_token1] = ACTIONS(1158), - [aux_sym__val_number_token2] = ACTIONS(1158), - [aux_sym__val_number_token3] = ACTIONS(1158), - [aux_sym__val_number_token4] = ACTIONS(1158), - [aux_sym__val_number_token5] = ACTIONS(1158), - [aux_sym__val_number_token6] = ACTIONS(1158), - [anon_sym_0b] = ACTIONS(1158), - [anon_sym_0o] = ACTIONS(1158), - [anon_sym_0x] = ACTIONS(1158), - [sym_val_date] = ACTIONS(1158), - [anon_sym_DQUOTE] = ACTIONS(1158), - [sym__str_single_quotes] = ACTIONS(1158), - [sym__str_back_ticks] = ACTIONS(1158), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1158), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1158), - [anon_sym_CARET] = ACTIONS(1158), - [anon_sym_POUND] = ACTIONS(113), - }, - [393] = { - [sym_cell_path] = STATE(539), - [sym_path] = STATE(384), - [sym_comment] = STATE(393), - [ts_builtin_sym_end] = ACTIONS(1188), - [anon_sym_export] = ACTIONS(1186), - [anon_sym_alias] = ACTIONS(1186), - [anon_sym_let] = ACTIONS(1186), - [anon_sym_let_DASHenv] = ACTIONS(1186), - [anon_sym_mut] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1186), - [sym_cmd_identifier] = ACTIONS(1186), - [anon_sym_LF] = ACTIONS(1188), - [anon_sym_def] = ACTIONS(1186), - [anon_sym_export_DASHenv] = ACTIONS(1186), - [anon_sym_extern] = ACTIONS(1186), - [anon_sym_module] = ACTIONS(1186), - [anon_sym_use] = ACTIONS(1186), - [anon_sym_LBRACK] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(1186), - [anon_sym_DOLLAR] = ACTIONS(1186), - [anon_sym_error] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_DASH_DASH] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1186), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1186), - [anon_sym_in] = ACTIONS(1186), - [anon_sym_loop] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_do] = ACTIONS(1186), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_match] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_DOT_DOT] = ACTIONS(1186), - [anon_sym_try] = ACTIONS(1186), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_source] = ACTIONS(1186), - [anon_sym_source_DASHenv] = ACTIONS(1186), - [anon_sym_register] = ACTIONS(1186), - [anon_sym_hide] = ACTIONS(1186), - [anon_sym_hide_DASHenv] = ACTIONS(1186), - [anon_sym_overlay] = ACTIONS(1186), - [anon_sym_as] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_where] = ACTIONS(1186), - [anon_sym_STAR_STAR] = ACTIONS(1186), - [anon_sym_PLUS_PLUS] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_mod] = ACTIONS(1186), - [anon_sym_SLASH_SLASH] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_bit_DASHshl] = ACTIONS(1186), - [anon_sym_bit_DASHshr] = ACTIONS(1186), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_LT2] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1186), - [anon_sym_GT_EQ] = ACTIONS(1186), - [anon_sym_not_DASHin] = ACTIONS(1186), - [anon_sym_starts_DASHwith] = ACTIONS(1186), - [anon_sym_ends_DASHwith] = ACTIONS(1186), - [anon_sym_EQ_TILDE] = ACTIONS(1186), - [anon_sym_BANG_TILDE] = ACTIONS(1186), - [anon_sym_bit_DASHand] = ACTIONS(1186), - [anon_sym_bit_DASHxor] = ACTIONS(1186), - [anon_sym_bit_DASHor] = ACTIONS(1186), - [anon_sym_and] = ACTIONS(1186), - [anon_sym_xor] = ACTIONS(1186), - [anon_sym_or] = ACTIONS(1186), - [anon_sym_not] = ACTIONS(1186), - [anon_sym_DOT] = ACTIONS(1213), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1186), - [anon_sym_DOT_DOT_LT] = ACTIONS(1186), - [anon_sym_null] = ACTIONS(1186), - [anon_sym_true] = ACTIONS(1186), - [anon_sym_false] = ACTIONS(1186), - [aux_sym__val_number_decimal_token1] = ACTIONS(1186), - [aux_sym__val_number_decimal_token2] = ACTIONS(1186), - [anon_sym_DOT2] = ACTIONS(1186), - [aux_sym__val_number_decimal_token3] = ACTIONS(1186), - [aux_sym__val_number_token1] = ACTIONS(1186), - [aux_sym__val_number_token2] = ACTIONS(1186), - [aux_sym__val_number_token3] = ACTIONS(1186), - [aux_sym__val_number_token4] = ACTIONS(1186), - [aux_sym__val_number_token5] = ACTIONS(1186), - [aux_sym__val_number_token6] = ACTIONS(1186), - [anon_sym_0b] = ACTIONS(1186), - [anon_sym_0o] = ACTIONS(1186), - [anon_sym_0x] = ACTIONS(1186), - [sym_val_date] = ACTIONS(1186), - [anon_sym_DQUOTE] = ACTIONS(1186), - [sym__str_single_quotes] = ACTIONS(1186), - [sym__str_back_ticks] = ACTIONS(1186), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1186), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1186), - [anon_sym_CARET] = ACTIONS(1186), - [anon_sym_POUND] = ACTIONS(113), - }, - [394] = { - [sym_comment] = STATE(394), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_alias] = ACTIONS(1070), - [anon_sym_let] = ACTIONS(1070), - [anon_sym_let_DASHenv] = ACTIONS(1070), - [anon_sym_mut] = ACTIONS(1070), - [anon_sym_const] = ACTIONS(1070), - [anon_sym_SEMI] = ACTIONS(1070), - [sym_cmd_identifier] = ACTIONS(1070), - [anon_sym_LF] = ACTIONS(1072), - [anon_sym_def] = ACTIONS(1070), - [anon_sym_export_DASHenv] = ACTIONS(1070), - [anon_sym_extern] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_use] = ACTIONS(1070), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_RPAREN] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_error] = ACTIONS(1070), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_in] = ACTIONS(1070), - [anon_sym_loop] = ACTIONS(1070), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_do] = ACTIONS(1070), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_match] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_RBRACE] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_try] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_source] = ACTIONS(1070), - [anon_sym_source_DASHenv] = ACTIONS(1070), - [anon_sym_register] = ACTIONS(1070), - [anon_sym_hide] = ACTIONS(1070), - [anon_sym_hide_DASHenv] = ACTIONS(1070), - [anon_sym_overlay] = ACTIONS(1070), - [anon_sym_as] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_where] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(1235), - [anon_sym_STAR_STAR] = ACTIONS(1070), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_mod] = ACTIONS(1070), - [anon_sym_SLASH_SLASH] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_bit_DASHshl] = ACTIONS(1070), - [anon_sym_bit_DASHshr] = ACTIONS(1070), - [anon_sym_EQ_EQ] = ACTIONS(1070), - [anon_sym_BANG_EQ] = ACTIONS(1070), - [anon_sym_LT2] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1070), - [anon_sym_GT_EQ] = ACTIONS(1070), - [anon_sym_not_DASHin] = ACTIONS(1070), - [anon_sym_starts_DASHwith] = ACTIONS(1070), - [anon_sym_ends_DASHwith] = ACTIONS(1070), - [anon_sym_EQ_TILDE] = ACTIONS(1070), - [anon_sym_BANG_TILDE] = ACTIONS(1070), - [anon_sym_bit_DASHand] = ACTIONS(1070), - [anon_sym_bit_DASHxor] = ACTIONS(1070), - [anon_sym_bit_DASHor] = ACTIONS(1070), - [anon_sym_and] = ACTIONS(1070), - [anon_sym_xor] = ACTIONS(1070), - [anon_sym_or] = ACTIONS(1070), - [anon_sym_not] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_null] = ACTIONS(1070), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1070), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), - [anon_sym_CARET] = ACTIONS(1070), - [anon_sym_POUND] = ACTIONS(113), - }, - [395] = { - [sym_comment] = STATE(395), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_alias] = ACTIONS(1070), - [anon_sym_let] = ACTIONS(1070), - [anon_sym_let_DASHenv] = ACTIONS(1070), - [anon_sym_mut] = ACTIONS(1070), - [anon_sym_const] = ACTIONS(1070), - [anon_sym_SEMI] = ACTIONS(1070), - [sym_cmd_identifier] = ACTIONS(1070), - [anon_sym_LF] = ACTIONS(1072), - [anon_sym_def] = ACTIONS(1070), - [anon_sym_export_DASHenv] = ACTIONS(1070), - [anon_sym_extern] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_use] = ACTIONS(1070), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_RPAREN] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_error] = ACTIONS(1070), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_in] = ACTIONS(1070), - [anon_sym_loop] = ACTIONS(1070), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_do] = ACTIONS(1070), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_match] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_RBRACE] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_try] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_source] = ACTIONS(1070), - [anon_sym_source_DASHenv] = ACTIONS(1070), - [anon_sym_register] = ACTIONS(1070), - [anon_sym_hide] = ACTIONS(1070), - [anon_sym_hide_DASHenv] = ACTIONS(1070), - [anon_sym_overlay] = ACTIONS(1070), - [anon_sym_as] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_where] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(1235), - [anon_sym_STAR_STAR] = ACTIONS(1070), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_mod] = ACTIONS(1070), - [anon_sym_SLASH_SLASH] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_bit_DASHshl] = ACTIONS(1070), - [anon_sym_bit_DASHshr] = ACTIONS(1070), - [anon_sym_EQ_EQ] = ACTIONS(1070), - [anon_sym_BANG_EQ] = ACTIONS(1070), - [anon_sym_LT2] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1070), - [anon_sym_GT_EQ] = ACTIONS(1070), - [anon_sym_not_DASHin] = ACTIONS(1070), - [anon_sym_starts_DASHwith] = ACTIONS(1070), - [anon_sym_ends_DASHwith] = ACTIONS(1070), - [anon_sym_EQ_TILDE] = ACTIONS(1070), - [anon_sym_BANG_TILDE] = ACTIONS(1070), - [anon_sym_bit_DASHand] = ACTIONS(1070), - [anon_sym_bit_DASHxor] = ACTIONS(1070), - [anon_sym_bit_DASHor] = ACTIONS(1070), - [anon_sym_and] = ACTIONS(1070), - [anon_sym_xor] = ACTIONS(1070), - [anon_sym_or] = ACTIONS(1070), - [anon_sym_not] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_null] = ACTIONS(1070), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1070), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), - [anon_sym_CARET] = ACTIONS(1070), - [anon_sym_POUND] = ACTIONS(113), - }, - [396] = { - [sym_comment] = STATE(396), - [ts_builtin_sym_end] = ACTIONS(1174), - [anon_sym_export] = ACTIONS(1172), - [anon_sym_alias] = ACTIONS(1172), - [anon_sym_let] = ACTIONS(1172), - [anon_sym_let_DASHenv] = ACTIONS(1172), - [anon_sym_mut] = ACTIONS(1172), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(1172), - [sym_cmd_identifier] = ACTIONS(1172), - [anon_sym_LF] = ACTIONS(1174), - [anon_sym_def] = ACTIONS(1172), - [anon_sym_export_DASHenv] = ACTIONS(1172), - [anon_sym_extern] = ACTIONS(1172), - [anon_sym_module] = ACTIONS(1172), - [anon_sym_use] = ACTIONS(1172), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_LPAREN] = ACTIONS(1172), - [anon_sym_DOLLAR] = ACTIONS(1172), - [anon_sym_error] = ACTIONS(1172), - [anon_sym_GT] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_DASH] = ACTIONS(1172), - [anon_sym_break] = ACTIONS(1172), - [anon_sym_continue] = ACTIONS(1172), - [anon_sym_for] = ACTIONS(1172), - [anon_sym_in] = ACTIONS(1172), - [anon_sym_loop] = ACTIONS(1172), - [anon_sym_while] = ACTIONS(1172), - [anon_sym_do] = ACTIONS(1172), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_match] = ACTIONS(1172), - [anon_sym_LBRACE] = ACTIONS(1172), - [anon_sym_DOT_DOT] = ACTIONS(1172), - [anon_sym_try] = ACTIONS(1172), - [anon_sym_return] = ACTIONS(1172), - [anon_sym_source] = ACTIONS(1172), - [anon_sym_source_DASHenv] = ACTIONS(1172), - [anon_sym_register] = ACTIONS(1172), - [anon_sym_hide] = ACTIONS(1172), - [anon_sym_hide_DASHenv] = ACTIONS(1172), - [anon_sym_overlay] = ACTIONS(1172), - [anon_sym_as] = ACTIONS(1172), - [anon_sym_STAR] = ACTIONS(1172), - [anon_sym_where] = ACTIONS(1172), - [anon_sym_STAR_STAR] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_SLASH] = ACTIONS(1172), - [anon_sym_mod] = ACTIONS(1172), - [anon_sym_SLASH_SLASH] = ACTIONS(1172), - [anon_sym_PLUS] = ACTIONS(1172), - [anon_sym_bit_DASHshl] = ACTIONS(1172), - [anon_sym_bit_DASHshr] = ACTIONS(1172), - [anon_sym_EQ_EQ] = ACTIONS(1172), - [anon_sym_BANG_EQ] = ACTIONS(1172), - [anon_sym_LT2] = ACTIONS(1172), - [anon_sym_LT_EQ] = ACTIONS(1172), - [anon_sym_GT_EQ] = ACTIONS(1172), - [anon_sym_not_DASHin] = ACTIONS(1172), - [anon_sym_starts_DASHwith] = ACTIONS(1172), - [anon_sym_ends_DASHwith] = ACTIONS(1172), - [anon_sym_EQ_TILDE] = ACTIONS(1172), - [anon_sym_BANG_TILDE] = ACTIONS(1172), - [anon_sym_bit_DASHand] = ACTIONS(1172), - [anon_sym_bit_DASHxor] = ACTIONS(1172), - [anon_sym_bit_DASHor] = ACTIONS(1172), - [anon_sym_and] = ACTIONS(1172), - [anon_sym_xor] = ACTIONS(1172), - [anon_sym_or] = ACTIONS(1172), - [anon_sym_not] = ACTIONS(1172), - [anon_sym_DOT_DOT2] = ACTIONS(1172), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1172), - [anon_sym_DOT_DOT_LT] = ACTIONS(1172), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1174), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1174), - [anon_sym_null] = ACTIONS(1172), - [anon_sym_true] = ACTIONS(1172), - [anon_sym_false] = ACTIONS(1172), - [aux_sym__val_number_decimal_token1] = ACTIONS(1172), - [aux_sym__val_number_decimal_token2] = ACTIONS(1172), - [anon_sym_DOT2] = ACTIONS(1172), - [aux_sym__val_number_decimal_token3] = ACTIONS(1172), - [aux_sym__val_number_token1] = ACTIONS(1172), - [aux_sym__val_number_token2] = ACTIONS(1172), - [aux_sym__val_number_token3] = ACTIONS(1172), - [aux_sym__val_number_token4] = ACTIONS(1172), - [aux_sym__val_number_token5] = ACTIONS(1172), - [aux_sym__val_number_token6] = ACTIONS(1172), - [anon_sym_0b] = ACTIONS(1172), - [anon_sym_0o] = ACTIONS(1172), - [anon_sym_0x] = ACTIONS(1172), - [sym_val_date] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(1172), - [sym__str_single_quotes] = ACTIONS(1172), - [sym__str_back_ticks] = ACTIONS(1172), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1172), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1172), - [anon_sym_CARET] = ACTIONS(1172), - [anon_sym_POUND] = ACTIONS(113), - }, - [397] = { - [sym_comment] = STATE(397), - [ts_builtin_sym_end] = ACTIONS(1115), - [anon_sym_export] = ACTIONS(1113), - [anon_sym_alias] = ACTIONS(1113), - [anon_sym_let] = ACTIONS(1113), - [anon_sym_let_DASHenv] = ACTIONS(1113), - [anon_sym_mut] = ACTIONS(1113), - [anon_sym_const] = ACTIONS(1113), - [anon_sym_SEMI] = ACTIONS(1113), - [sym_cmd_identifier] = ACTIONS(1113), - [anon_sym_LF] = ACTIONS(1115), - [anon_sym_def] = ACTIONS(1113), - [anon_sym_export_DASHenv] = ACTIONS(1113), - [anon_sym_extern] = ACTIONS(1113), - [anon_sym_module] = ACTIONS(1113), - [anon_sym_use] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1113), - [anon_sym_error] = ACTIONS(1113), - [anon_sym_GT] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_in] = ACTIONS(1113), - [anon_sym_loop] = ACTIONS(1113), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1113), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_source] = ACTIONS(1113), - [anon_sym_source_DASHenv] = ACTIONS(1113), - [anon_sym_register] = ACTIONS(1113), - [anon_sym_hide] = ACTIONS(1113), - [anon_sym_hide_DASHenv] = ACTIONS(1113), - [anon_sym_overlay] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_where] = ACTIONS(1113), - [anon_sym_STAR_STAR] = ACTIONS(1113), - [anon_sym_PLUS_PLUS] = ACTIONS(1113), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_mod] = ACTIONS(1113), - [anon_sym_SLASH_SLASH] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_bit_DASHshl] = ACTIONS(1113), - [anon_sym_bit_DASHshr] = ACTIONS(1113), - [anon_sym_EQ_EQ] = ACTIONS(1113), - [anon_sym_BANG_EQ] = ACTIONS(1113), - [anon_sym_LT2] = ACTIONS(1113), - [anon_sym_LT_EQ] = ACTIONS(1113), - [anon_sym_GT_EQ] = ACTIONS(1113), - [anon_sym_not_DASHin] = ACTIONS(1113), - [anon_sym_starts_DASHwith] = ACTIONS(1113), - [anon_sym_ends_DASHwith] = ACTIONS(1113), - [anon_sym_EQ_TILDE] = ACTIONS(1113), - [anon_sym_BANG_TILDE] = ACTIONS(1113), - [anon_sym_bit_DASHand] = ACTIONS(1113), - [anon_sym_bit_DASHxor] = ACTIONS(1113), - [anon_sym_bit_DASHor] = ACTIONS(1113), - [anon_sym_and] = ACTIONS(1113), - [anon_sym_xor] = ACTIONS(1113), - [anon_sym_or] = ACTIONS(1113), - [anon_sym_not] = ACTIONS(1113), - [anon_sym_DOT_DOT2] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1113), - [anon_sym_DOT_DOT_LT] = ACTIONS(1113), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1115), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1113), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1113), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_decimal_token2] = ACTIONS(1113), - [anon_sym_DOT2] = ACTIONS(1113), - [aux_sym__val_number_decimal_token3] = ACTIONS(1113), - [aux_sym__val_number_token1] = ACTIONS(1113), - [aux_sym__val_number_token2] = ACTIONS(1113), - [aux_sym__val_number_token3] = ACTIONS(1113), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1113), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_0b] = ACTIONS(1113), - [anon_sym_0o] = ACTIONS(1113), - [anon_sym_0x] = ACTIONS(1113), - [sym_val_date] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym__str_single_quotes] = ACTIONS(1113), - [sym__str_back_ticks] = ACTIONS(1113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), - [anon_sym_CARET] = ACTIONS(1113), - [anon_sym_POUND] = ACTIONS(113), - }, - [398] = { - [sym_comment] = STATE(398), - [ts_builtin_sym_end] = ACTIONS(1111), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_alias] = ACTIONS(1109), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_let_DASHenv] = ACTIONS(1109), - [anon_sym_mut] = ACTIONS(1109), - [anon_sym_const] = ACTIONS(1109), - [anon_sym_SEMI] = ACTIONS(1109), - [sym_cmd_identifier] = ACTIONS(1109), - [anon_sym_LF] = ACTIONS(1111), - [anon_sym_def] = ACTIONS(1109), - [anon_sym_export_DASHenv] = ACTIONS(1109), - [anon_sym_extern] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_use] = ACTIONS(1109), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_DOLLAR] = ACTIONS(1109), - [anon_sym_error] = ACTIONS(1109), - [anon_sym_GT] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_break] = ACTIONS(1109), - [anon_sym_continue] = ACTIONS(1109), - [anon_sym_for] = ACTIONS(1109), - [anon_sym_in] = ACTIONS(1109), - [anon_sym_loop] = ACTIONS(1109), - [anon_sym_while] = ACTIONS(1109), - [anon_sym_do] = ACTIONS(1109), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_DOT_DOT] = ACTIONS(1109), - [anon_sym_try] = ACTIONS(1109), - [anon_sym_return] = ACTIONS(1109), - [anon_sym_source] = ACTIONS(1109), - [anon_sym_source_DASHenv] = ACTIONS(1109), - [anon_sym_register] = ACTIONS(1109), - [anon_sym_hide] = ACTIONS(1109), - [anon_sym_hide_DASHenv] = ACTIONS(1109), - [anon_sym_overlay] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_where] = ACTIONS(1109), - [anon_sym_STAR_STAR] = ACTIONS(1109), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_SLASH] = ACTIONS(1109), - [anon_sym_mod] = ACTIONS(1109), - [anon_sym_SLASH_SLASH] = ACTIONS(1109), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_bit_DASHshl] = ACTIONS(1109), - [anon_sym_bit_DASHshr] = ACTIONS(1109), - [anon_sym_EQ_EQ] = ACTIONS(1109), - [anon_sym_BANG_EQ] = ACTIONS(1109), - [anon_sym_LT2] = ACTIONS(1109), - [anon_sym_LT_EQ] = ACTIONS(1109), - [anon_sym_GT_EQ] = ACTIONS(1109), - [anon_sym_not_DASHin] = ACTIONS(1109), - [anon_sym_starts_DASHwith] = ACTIONS(1109), - [anon_sym_ends_DASHwith] = ACTIONS(1109), - [anon_sym_EQ_TILDE] = ACTIONS(1109), - [anon_sym_BANG_TILDE] = ACTIONS(1109), - [anon_sym_bit_DASHand] = ACTIONS(1109), - [anon_sym_bit_DASHxor] = ACTIONS(1109), - [anon_sym_bit_DASHor] = ACTIONS(1109), - [anon_sym_and] = ACTIONS(1109), - [anon_sym_xor] = ACTIONS(1109), - [anon_sym_or] = ACTIONS(1109), - [anon_sym_not] = ACTIONS(1109), - [anon_sym_DOT_DOT2] = ACTIONS(1109), - [anon_sym_DOT] = ACTIONS(1109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1109), - [anon_sym_DOT_DOT_LT] = ACTIONS(1109), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1111), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1111), - [anon_sym_null] = ACTIONS(1109), - [anon_sym_true] = ACTIONS(1109), - [anon_sym_false] = ACTIONS(1109), - [aux_sym__val_number_decimal_token1] = ACTIONS(1109), - [aux_sym__val_number_decimal_token2] = ACTIONS(1109), - [anon_sym_DOT2] = ACTIONS(1109), - [aux_sym__val_number_decimal_token3] = ACTIONS(1109), - [aux_sym__val_number_token1] = ACTIONS(1109), - [aux_sym__val_number_token2] = ACTIONS(1109), - [aux_sym__val_number_token3] = ACTIONS(1109), - [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(1109), - [anon_sym_0o] = ACTIONS(1109), - [anon_sym_0x] = ACTIONS(1109), - [sym_val_date] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(1109), - [sym__str_single_quotes] = ACTIONS(1109), - [sym__str_back_ticks] = ACTIONS(1109), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1109), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1109), - [anon_sym_CARET] = ACTIONS(1109), - [anon_sym_POUND] = ACTIONS(113), - }, - [399] = { - [sym_comment] = STATE(399), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_alias] = ACTIONS(1158), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_let_DASHenv] = ACTIONS(1158), - [anon_sym_mut] = ACTIONS(1158), - [anon_sym_const] = ACTIONS(1158), - [anon_sym_SEMI] = ACTIONS(1158), - [sym_cmd_identifier] = ACTIONS(1158), - [anon_sym_LF] = ACTIONS(1160), - [anon_sym_def] = ACTIONS(1158), - [anon_sym_export_DASHenv] = ACTIONS(1158), - [anon_sym_extern] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_use] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_LPAREN] = ACTIONS(1158), - [anon_sym_RPAREN] = ACTIONS(1158), - [anon_sym_DOLLAR] = ACTIONS(1158), - [anon_sym_error] = ACTIONS(1158), - [anon_sym_GT] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_break] = ACTIONS(1158), - [anon_sym_continue] = ACTIONS(1158), - [anon_sym_for] = ACTIONS(1158), - [anon_sym_in] = ACTIONS(1158), - [anon_sym_loop] = ACTIONS(1158), - [anon_sym_while] = ACTIONS(1158), - [anon_sym_do] = ACTIONS(1158), - [anon_sym_if] = ACTIONS(1158), - [anon_sym_match] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1158), - [anon_sym_RBRACE] = ACTIONS(1158), - [anon_sym_DOT_DOT] = ACTIONS(1158), - [anon_sym_try] = ACTIONS(1158), - [anon_sym_return] = ACTIONS(1158), - [anon_sym_source] = ACTIONS(1158), - [anon_sym_source_DASHenv] = ACTIONS(1158), - [anon_sym_register] = ACTIONS(1158), - [anon_sym_hide] = ACTIONS(1158), - [anon_sym_hide_DASHenv] = ACTIONS(1158), - [anon_sym_overlay] = ACTIONS(1158), - [anon_sym_STAR] = ACTIONS(1158), - [anon_sym_where] = ACTIONS(1158), - [anon_sym_STAR_STAR] = ACTIONS(1158), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_SLASH] = ACTIONS(1158), - [anon_sym_mod] = ACTIONS(1158), - [anon_sym_SLASH_SLASH] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1158), - [anon_sym_bit_DASHshl] = ACTIONS(1158), - [anon_sym_bit_DASHshr] = ACTIONS(1158), - [anon_sym_EQ_EQ] = ACTIONS(1158), - [anon_sym_BANG_EQ] = ACTIONS(1158), - [anon_sym_LT2] = ACTIONS(1158), - [anon_sym_LT_EQ] = ACTIONS(1158), - [anon_sym_GT_EQ] = ACTIONS(1158), - [anon_sym_not_DASHin] = ACTIONS(1158), - [anon_sym_starts_DASHwith] = ACTIONS(1158), - [anon_sym_ends_DASHwith] = ACTIONS(1158), - [anon_sym_EQ_TILDE] = ACTIONS(1158), - [anon_sym_BANG_TILDE] = ACTIONS(1158), - [anon_sym_bit_DASHand] = ACTIONS(1158), - [anon_sym_bit_DASHxor] = ACTIONS(1158), - [anon_sym_bit_DASHor] = ACTIONS(1158), - [anon_sym_and] = ACTIONS(1158), - [anon_sym_xor] = ACTIONS(1158), - [anon_sym_or] = ACTIONS(1158), - [anon_sym_not] = ACTIONS(1158), - [anon_sym_DOT_DOT2] = ACTIONS(1237), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1158), - [anon_sym_DOT_DOT_LT] = ACTIONS(1158), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1239), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1239), - [anon_sym_null] = ACTIONS(1158), - [anon_sym_true] = ACTIONS(1158), - [anon_sym_false] = ACTIONS(1158), - [aux_sym__val_number_decimal_token1] = ACTIONS(1158), - [aux_sym__val_number_decimal_token2] = ACTIONS(1158), - [anon_sym_DOT2] = ACTIONS(1158), - [aux_sym__val_number_decimal_token3] = ACTIONS(1158), - [aux_sym__val_number_token1] = ACTIONS(1158), - [aux_sym__val_number_token2] = ACTIONS(1158), - [aux_sym__val_number_token3] = ACTIONS(1158), - [aux_sym__val_number_token4] = ACTIONS(1158), - [aux_sym__val_number_token5] = ACTIONS(1158), - [aux_sym__val_number_token6] = ACTIONS(1158), - [anon_sym_0b] = ACTIONS(1158), - [anon_sym_0o] = ACTIONS(1158), - [anon_sym_0x] = ACTIONS(1158), - [sym_val_date] = ACTIONS(1158), - [anon_sym_DQUOTE] = ACTIONS(1158), - [sym__str_single_quotes] = ACTIONS(1158), - [sym__str_back_ticks] = ACTIONS(1158), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1158), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1158), - [anon_sym_CARET] = ACTIONS(1158), - [anon_sym_POUND] = ACTIONS(113), - }, - [400] = { - [sym_cell_path] = STATE(642), - [sym_path] = STATE(407), - [sym_comment] = STATE(400), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_alias] = ACTIONS(1190), - [anon_sym_let] = ACTIONS(1190), - [anon_sym_let_DASHenv] = ACTIONS(1190), - [anon_sym_mut] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1190), - [anon_sym_SEMI] = ACTIONS(1190), - [sym_cmd_identifier] = ACTIONS(1190), - [anon_sym_LF] = ACTIONS(1192), - [anon_sym_def] = ACTIONS(1190), - [anon_sym_export_DASHenv] = ACTIONS(1190), - [anon_sym_extern] = ACTIONS(1190), - [anon_sym_module] = ACTIONS(1190), - [anon_sym_use] = ACTIONS(1190), - [anon_sym_LBRACK] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(1190), - [anon_sym_RPAREN] = ACTIONS(1190), - [anon_sym_DOLLAR] = ACTIONS(1190), - [anon_sym_error] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1190), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_in] = ACTIONS(1190), - [anon_sym_loop] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [anon_sym_do] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_match] = ACTIONS(1190), - [anon_sym_LBRACE] = ACTIONS(1190), - [anon_sym_RBRACE] = ACTIONS(1190), - [anon_sym_DOT_DOT] = ACTIONS(1190), - [anon_sym_try] = ACTIONS(1190), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_source] = ACTIONS(1190), - [anon_sym_source_DASHenv] = ACTIONS(1190), - [anon_sym_register] = ACTIONS(1190), - [anon_sym_hide] = ACTIONS(1190), - [anon_sym_hide_DASHenv] = ACTIONS(1190), - [anon_sym_overlay] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1190), - [anon_sym_where] = ACTIONS(1190), - [anon_sym_STAR_STAR] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1190), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_mod] = ACTIONS(1190), - [anon_sym_SLASH_SLASH] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_bit_DASHshl] = ACTIONS(1190), - [anon_sym_bit_DASHshr] = ACTIONS(1190), - [anon_sym_EQ_EQ] = ACTIONS(1190), - [anon_sym_BANG_EQ] = ACTIONS(1190), - [anon_sym_LT2] = ACTIONS(1190), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_not_DASHin] = ACTIONS(1190), - [anon_sym_starts_DASHwith] = ACTIONS(1190), - [anon_sym_ends_DASHwith] = ACTIONS(1190), - [anon_sym_EQ_TILDE] = ACTIONS(1190), - [anon_sym_BANG_TILDE] = ACTIONS(1190), - [anon_sym_bit_DASHand] = ACTIONS(1190), - [anon_sym_bit_DASHxor] = ACTIONS(1190), - [anon_sym_bit_DASHor] = ACTIONS(1190), - [anon_sym_and] = ACTIONS(1190), - [anon_sym_xor] = ACTIONS(1190), - [anon_sym_or] = ACTIONS(1190), - [anon_sym_not] = ACTIONS(1190), - [anon_sym_DOT] = ACTIONS(1241), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1190), - [anon_sym_DOT_DOT_LT] = ACTIONS(1190), - [anon_sym_null] = ACTIONS(1190), - [anon_sym_true] = ACTIONS(1190), - [anon_sym_false] = ACTIONS(1190), - [aux_sym__val_number_decimal_token1] = ACTIONS(1190), - [aux_sym__val_number_decimal_token2] = ACTIONS(1190), - [anon_sym_DOT2] = ACTIONS(1190), - [aux_sym__val_number_decimal_token3] = ACTIONS(1190), - [aux_sym__val_number_token1] = ACTIONS(1190), - [aux_sym__val_number_token2] = ACTIONS(1190), - [aux_sym__val_number_token3] = ACTIONS(1190), - [aux_sym__val_number_token4] = ACTIONS(1190), - [aux_sym__val_number_token5] = ACTIONS(1190), - [aux_sym__val_number_token6] = ACTIONS(1190), - [anon_sym_0b] = ACTIONS(1190), - [anon_sym_0o] = ACTIONS(1190), - [anon_sym_0x] = ACTIONS(1190), - [sym_val_date] = ACTIONS(1190), - [anon_sym_DQUOTE] = ACTIONS(1190), - [sym__str_single_quotes] = ACTIONS(1190), - [sym__str_back_ticks] = ACTIONS(1190), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1190), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1190), - [anon_sym_POUND] = ACTIONS(113), - }, - [401] = { - [sym_cell_path] = STATE(652), - [sym_path] = STATE(407), - [sym_comment] = STATE(401), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_alias] = ACTIONS(1148), - [anon_sym_let] = ACTIONS(1148), - [anon_sym_let_DASHenv] = ACTIONS(1148), - [anon_sym_mut] = ACTIONS(1148), - [anon_sym_const] = ACTIONS(1148), - [anon_sym_SEMI] = ACTIONS(1148), - [sym_cmd_identifier] = ACTIONS(1148), - [anon_sym_LF] = ACTIONS(1150), - [anon_sym_def] = ACTIONS(1148), - [anon_sym_export_DASHenv] = ACTIONS(1148), - [anon_sym_extern] = ACTIONS(1148), - [anon_sym_module] = ACTIONS(1148), - [anon_sym_use] = ACTIONS(1148), - [anon_sym_LBRACK] = ACTIONS(1148), - [anon_sym_LPAREN] = ACTIONS(1148), - [anon_sym_RPAREN] = ACTIONS(1148), - [anon_sym_DOLLAR] = ACTIONS(1148), - [anon_sym_error] = ACTIONS(1148), - [anon_sym_GT] = ACTIONS(1148), - [anon_sym_DASH] = ACTIONS(1148), - [anon_sym_break] = ACTIONS(1148), - [anon_sym_continue] = ACTIONS(1148), - [anon_sym_for] = ACTIONS(1148), - [anon_sym_in] = ACTIONS(1148), - [anon_sym_loop] = ACTIONS(1148), - [anon_sym_while] = ACTIONS(1148), - [anon_sym_do] = ACTIONS(1148), - [anon_sym_if] = ACTIONS(1148), - [anon_sym_match] = ACTIONS(1148), - [anon_sym_LBRACE] = ACTIONS(1148), - [anon_sym_RBRACE] = ACTIONS(1148), - [anon_sym_DOT_DOT] = ACTIONS(1148), - [anon_sym_try] = ACTIONS(1148), - [anon_sym_return] = ACTIONS(1148), - [anon_sym_source] = ACTIONS(1148), - [anon_sym_source_DASHenv] = ACTIONS(1148), - [anon_sym_register] = ACTIONS(1148), - [anon_sym_hide] = ACTIONS(1148), - [anon_sym_hide_DASHenv] = ACTIONS(1148), - [anon_sym_overlay] = ACTIONS(1148), - [anon_sym_STAR] = ACTIONS(1148), - [anon_sym_where] = ACTIONS(1148), - [anon_sym_STAR_STAR] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_SLASH] = ACTIONS(1148), - [anon_sym_mod] = ACTIONS(1148), - [anon_sym_SLASH_SLASH] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1148), - [anon_sym_bit_DASHshl] = ACTIONS(1148), - [anon_sym_bit_DASHshr] = ACTIONS(1148), - [anon_sym_EQ_EQ] = ACTIONS(1148), - [anon_sym_BANG_EQ] = ACTIONS(1148), - [anon_sym_LT2] = ACTIONS(1148), - [anon_sym_LT_EQ] = ACTIONS(1148), - [anon_sym_GT_EQ] = ACTIONS(1148), - [anon_sym_not_DASHin] = ACTIONS(1148), - [anon_sym_starts_DASHwith] = ACTIONS(1148), - [anon_sym_ends_DASHwith] = ACTIONS(1148), - [anon_sym_EQ_TILDE] = ACTIONS(1148), - [anon_sym_BANG_TILDE] = ACTIONS(1148), - [anon_sym_bit_DASHand] = ACTIONS(1148), - [anon_sym_bit_DASHxor] = ACTIONS(1148), - [anon_sym_bit_DASHor] = ACTIONS(1148), - [anon_sym_and] = ACTIONS(1148), - [anon_sym_xor] = ACTIONS(1148), - [anon_sym_or] = ACTIONS(1148), - [anon_sym_not] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1241), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1148), - [anon_sym_DOT_DOT_LT] = ACTIONS(1148), - [anon_sym_null] = ACTIONS(1148), - [anon_sym_true] = ACTIONS(1148), - [anon_sym_false] = ACTIONS(1148), - [aux_sym__val_number_decimal_token1] = ACTIONS(1148), - [aux_sym__val_number_decimal_token2] = ACTIONS(1148), - [anon_sym_DOT2] = ACTIONS(1148), - [aux_sym__val_number_decimal_token3] = ACTIONS(1148), - [aux_sym__val_number_token1] = ACTIONS(1148), - [aux_sym__val_number_token2] = ACTIONS(1148), - [aux_sym__val_number_token3] = ACTIONS(1148), - [aux_sym__val_number_token4] = ACTIONS(1148), - [aux_sym__val_number_token5] = ACTIONS(1148), - [aux_sym__val_number_token6] = ACTIONS(1148), - [anon_sym_0b] = ACTIONS(1148), - [anon_sym_0o] = ACTIONS(1148), - [anon_sym_0x] = ACTIONS(1148), - [sym_val_date] = ACTIONS(1148), - [anon_sym_DQUOTE] = ACTIONS(1148), - [sym__str_single_quotes] = ACTIONS(1148), - [sym__str_back_ticks] = ACTIONS(1148), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1148), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1148), - [anon_sym_CARET] = ACTIONS(1148), - [anon_sym_POUND] = ACTIONS(113), - }, - [402] = { - [sym_cell_path] = STATE(662), - [sym_path] = STATE(407), - [sym_comment] = STATE(402), + [363] = { + [sym_comment] = STATE(363), [anon_sym_export] = ACTIONS(1179), [anon_sym_alias] = ACTIONS(1179), [anon_sym_let] = ACTIONS(1179), @@ -139970,6 +133082,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1179), [anon_sym_error] = ACTIONS(1179), [anon_sym_GT] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1179), [anon_sym_DASH] = ACTIONS(1179), [anon_sym_break] = ACTIONS(1179), [anon_sym_continue] = ACTIONS(1179), @@ -139991,10 +133104,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(1179), [anon_sym_hide_DASHenv] = ACTIONS(1179), [anon_sym_overlay] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), [anon_sym_STAR] = ACTIONS(1179), [anon_sym_where] = ACTIONS(1179), - [anon_sym_STAR_STAR] = ACTIONS(1179), - [anon_sym_PLUS_PLUS] = ACTIONS(1179), + [anon_sym_STAR_STAR] = ACTIONS(1189), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), [anon_sym_SLASH] = ACTIONS(1179), [anon_sym_mod] = ACTIONS(1179), [anon_sym_SLASH_SLASH] = ACTIONS(1179), @@ -140018,7 +133132,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(1179), [anon_sym_or] = ACTIONS(1179), [anon_sym_not] = ACTIONS(1179), - [anon_sym_DOT] = ACTIONS(1241), [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), [anon_sym_DOT_DOT_LT] = ACTIONS(1179), [anon_sym_null] = ACTIONS(1179), @@ -140046,908 +133159,2681 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, - [403] = { - [sym_comment] = STATE(403), - [anon_sym_export] = ACTIONS(1243), - [anon_sym_alias] = ACTIONS(1243), - [anon_sym_let] = ACTIONS(1243), - [anon_sym_let_DASHenv] = ACTIONS(1243), - [anon_sym_mut] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1243), - [sym_cmd_identifier] = ACTIONS(1243), - [anon_sym_LF] = ACTIONS(1243), - [anon_sym_def] = ACTIONS(1243), - [anon_sym_export_DASHenv] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1243), - [anon_sym_module] = ACTIONS(1243), - [anon_sym_use] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_RPAREN] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_error] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_in] = ACTIONS(1243), - [anon_sym_loop] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_match] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_RBRACE] = ACTIONS(1243), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_try] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_source] = ACTIONS(1243), - [anon_sym_source_DASHenv] = ACTIONS(1243), - [anon_sym_register] = ACTIONS(1243), - [anon_sym_hide] = ACTIONS(1243), - [anon_sym_hide_DASHenv] = ACTIONS(1243), - [anon_sym_overlay] = ACTIONS(1243), - [anon_sym_as] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1243), - [anon_sym_where] = ACTIONS(1243), - [anon_sym_STAR_STAR] = ACTIONS(1243), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_SLASH] = ACTIONS(1243), - [anon_sym_mod] = ACTIONS(1243), - [anon_sym_SLASH_SLASH] = ACTIONS(1243), - [anon_sym_PLUS] = ACTIONS(1243), - [anon_sym_bit_DASHshl] = ACTIONS(1243), - [anon_sym_bit_DASHshr] = ACTIONS(1243), - [anon_sym_EQ_EQ] = ACTIONS(1243), - [anon_sym_BANG_EQ] = ACTIONS(1243), - [anon_sym_LT2] = ACTIONS(1243), - [anon_sym_LT_EQ] = ACTIONS(1243), - [anon_sym_GT_EQ] = ACTIONS(1243), - [anon_sym_not_DASHin] = ACTIONS(1243), - [anon_sym_starts_DASHwith] = ACTIONS(1243), - [anon_sym_ends_DASHwith] = ACTIONS(1243), - [anon_sym_EQ_TILDE] = ACTIONS(1243), - [anon_sym_BANG_TILDE] = ACTIONS(1243), - [anon_sym_bit_DASHand] = ACTIONS(1243), - [anon_sym_bit_DASHxor] = ACTIONS(1243), - [anon_sym_bit_DASHor] = ACTIONS(1243), - [anon_sym_and] = ACTIONS(1243), - [anon_sym_xor] = ACTIONS(1243), - [anon_sym_or] = ACTIONS(1243), - [anon_sym_not] = ACTIONS(1243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1243), - [anon_sym_DOT_DOT_LT] = ACTIONS(1243), - [anon_sym_null] = ACTIONS(1243), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_decimal_token2] = ACTIONS(1243), - [anon_sym_DOT2] = ACTIONS(1243), - [aux_sym__val_number_decimal_token3] = ACTIONS(1243), - [aux_sym__val_number_token1] = ACTIONS(1243), - [aux_sym__val_number_token2] = ACTIONS(1243), - [aux_sym__val_number_token3] = ACTIONS(1243), - [aux_sym__val_number_token4] = ACTIONS(1243), - [aux_sym__val_number_token5] = ACTIONS(1243), - [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_0b] = ACTIONS(1243), - [anon_sym_0o] = ACTIONS(1243), - [anon_sym_0x] = ACTIONS(1243), - [sym_val_date] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym__str_single_quotes] = ACTIONS(1243), - [sym__str_back_ticks] = ACTIONS(1243), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1243), - [aux_sym__list_item_starts_with_sign_token1] = ACTIONS(1245), - [anon_sym_CARET] = ACTIONS(1243), + [364] = { + [sym_comment] = STATE(364), + [anon_sym_export] = ACTIONS(1179), + [anon_sym_alias] = ACTIONS(1179), + [anon_sym_let] = ACTIONS(1179), + [anon_sym_let_DASHenv] = ACTIONS(1179), + [anon_sym_mut] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1179), + [sym_cmd_identifier] = ACTIONS(1179), + [anon_sym_LF] = ACTIONS(1181), + [anon_sym_def] = ACTIONS(1179), + [anon_sym_export_DASHenv] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_use] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_RPAREN] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_error] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1179), + [anon_sym_loop] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_source] = ACTIONS(1179), + [anon_sym_source_DASHenv] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), + [anon_sym_hide_DASHenv] = ACTIONS(1179), + [anon_sym_overlay] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_where] = ACTIONS(1179), + [anon_sym_STAR_STAR] = ACTIONS(1189), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_SLASH] = ACTIONS(1187), + [anon_sym_mod] = ACTIONS(1187), + [anon_sym_SLASH_SLASH] = ACTIONS(1187), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_bit_DASHshl] = ACTIONS(1191), + [anon_sym_bit_DASHshr] = ACTIONS(1191), + [anon_sym_EQ_EQ] = ACTIONS(1179), + [anon_sym_BANG_EQ] = ACTIONS(1179), + [anon_sym_LT2] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1179), + [anon_sym_GT_EQ] = ACTIONS(1179), + [anon_sym_not_DASHin] = ACTIONS(1179), + [anon_sym_starts_DASHwith] = ACTIONS(1179), + [anon_sym_ends_DASHwith] = ACTIONS(1179), + [anon_sym_EQ_TILDE] = ACTIONS(1179), + [anon_sym_BANG_TILDE] = ACTIONS(1179), + [anon_sym_bit_DASHand] = ACTIONS(1179), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_not] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1179), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), + [anon_sym_CARET] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, - [404] = { - [sym_comment] = STATE(404), - [ts_builtin_sym_end] = ACTIONS(1119), - [anon_sym_export] = ACTIONS(1117), - [anon_sym_alias] = ACTIONS(1117), - [anon_sym_let] = ACTIONS(1117), - [anon_sym_let_DASHenv] = ACTIONS(1117), - [anon_sym_mut] = ACTIONS(1117), - [anon_sym_const] = ACTIONS(1117), - [anon_sym_SEMI] = ACTIONS(1117), - [sym_cmd_identifier] = ACTIONS(1117), - [anon_sym_LF] = ACTIONS(1119), - [anon_sym_def] = ACTIONS(1117), - [anon_sym_export_DASHenv] = ACTIONS(1117), - [anon_sym_extern] = ACTIONS(1117), - [anon_sym_module] = ACTIONS(1117), - [anon_sym_use] = ACTIONS(1117), - [anon_sym_LBRACK] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1117), - [anon_sym_DOLLAR] = ACTIONS(1117), - [anon_sym_error] = ACTIONS(1117), - [anon_sym_GT] = ACTIONS(1117), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_break] = ACTIONS(1117), - [anon_sym_continue] = ACTIONS(1117), - [anon_sym_for] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1117), - [anon_sym_loop] = ACTIONS(1117), - [anon_sym_while] = ACTIONS(1117), - [anon_sym_do] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1117), - [anon_sym_LBRACE] = ACTIONS(1117), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_try] = ACTIONS(1117), - [anon_sym_return] = ACTIONS(1117), - [anon_sym_source] = ACTIONS(1117), - [anon_sym_source_DASHenv] = ACTIONS(1117), - [anon_sym_register] = ACTIONS(1117), - [anon_sym_hide] = ACTIONS(1117), - [anon_sym_hide_DASHenv] = ACTIONS(1117), - [anon_sym_overlay] = ACTIONS(1117), - [anon_sym_STAR] = ACTIONS(1117), - [anon_sym_where] = ACTIONS(1117), - [anon_sym_STAR_STAR] = ACTIONS(1117), - [anon_sym_PLUS_PLUS] = ACTIONS(1117), - [anon_sym_SLASH] = ACTIONS(1117), - [anon_sym_mod] = ACTIONS(1117), - [anon_sym_SLASH_SLASH] = ACTIONS(1117), - [anon_sym_PLUS] = ACTIONS(1117), - [anon_sym_bit_DASHshl] = ACTIONS(1117), - [anon_sym_bit_DASHshr] = ACTIONS(1117), - [anon_sym_EQ_EQ] = ACTIONS(1117), - [anon_sym_BANG_EQ] = ACTIONS(1117), - [anon_sym_LT2] = ACTIONS(1117), - [anon_sym_LT_EQ] = ACTIONS(1117), - [anon_sym_GT_EQ] = ACTIONS(1117), - [anon_sym_not_DASHin] = ACTIONS(1117), - [anon_sym_starts_DASHwith] = ACTIONS(1117), - [anon_sym_ends_DASHwith] = ACTIONS(1117), - [anon_sym_EQ_TILDE] = ACTIONS(1117), - [anon_sym_BANG_TILDE] = ACTIONS(1117), - [anon_sym_bit_DASHand] = ACTIONS(1117), - [anon_sym_bit_DASHxor] = ACTIONS(1117), - [anon_sym_bit_DASHor] = ACTIONS(1117), - [anon_sym_and] = ACTIONS(1117), - [anon_sym_xor] = ACTIONS(1117), - [anon_sym_or] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1117), - [anon_sym_DOT_DOT2] = ACTIONS(1117), - [anon_sym_DOT] = ACTIONS(1117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1117), - [anon_sym_DOT_DOT_LT] = ACTIONS(1117), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1119), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1119), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_true] = ACTIONS(1117), - [anon_sym_false] = ACTIONS(1117), - [aux_sym__val_number_decimal_token1] = ACTIONS(1117), - [aux_sym__val_number_decimal_token2] = ACTIONS(1117), - [anon_sym_DOT2] = ACTIONS(1117), - [aux_sym__val_number_decimal_token3] = ACTIONS(1117), - [aux_sym__val_number_token1] = ACTIONS(1117), - [aux_sym__val_number_token2] = ACTIONS(1117), - [aux_sym__val_number_token3] = ACTIONS(1117), - [aux_sym__val_number_token4] = ACTIONS(1117), - [aux_sym__val_number_token5] = ACTIONS(1117), - [aux_sym__val_number_token6] = ACTIONS(1117), - [anon_sym_0b] = ACTIONS(1117), - [anon_sym_0o] = ACTIONS(1117), - [anon_sym_0x] = ACTIONS(1117), - [sym_val_date] = ACTIONS(1117), - [anon_sym_DQUOTE] = ACTIONS(1117), - [sym__str_single_quotes] = ACTIONS(1117), - [sym__str_back_ticks] = ACTIONS(1117), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1117), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1117), - [anon_sym_CARET] = ACTIONS(1117), + [365] = { + [sym_comment] = STATE(365), + [anon_sym_export] = ACTIONS(1179), + [anon_sym_alias] = ACTIONS(1179), + [anon_sym_let] = ACTIONS(1179), + [anon_sym_let_DASHenv] = ACTIONS(1179), + [anon_sym_mut] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1179), + [sym_cmd_identifier] = ACTIONS(1179), + [anon_sym_LF] = ACTIONS(1181), + [anon_sym_def] = ACTIONS(1179), + [anon_sym_export_DASHenv] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_use] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_RPAREN] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_error] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1183), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1193), + [anon_sym_loop] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_source] = ACTIONS(1179), + [anon_sym_source_DASHenv] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), + [anon_sym_hide_DASHenv] = ACTIONS(1179), + [anon_sym_overlay] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_where] = ACTIONS(1179), + [anon_sym_STAR_STAR] = ACTIONS(1189), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_SLASH] = ACTIONS(1187), + [anon_sym_mod] = ACTIONS(1187), + [anon_sym_SLASH_SLASH] = ACTIONS(1187), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_bit_DASHshl] = ACTIONS(1191), + [anon_sym_bit_DASHshr] = ACTIONS(1191), + [anon_sym_EQ_EQ] = ACTIONS(1183), + [anon_sym_BANG_EQ] = ACTIONS(1183), + [anon_sym_LT2] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1183), + [anon_sym_GT_EQ] = ACTIONS(1183), + [anon_sym_not_DASHin] = ACTIONS(1193), + [anon_sym_starts_DASHwith] = ACTIONS(1193), + [anon_sym_ends_DASHwith] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1195), + [anon_sym_BANG_TILDE] = ACTIONS(1195), + [anon_sym_bit_DASHand] = ACTIONS(1179), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_not] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1179), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), + [anon_sym_CARET] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, - [405] = { - [sym_comment] = STATE(405), - [anon_sym_export] = ACTIONS(1247), - [anon_sym_alias] = ACTIONS(1247), - [anon_sym_let] = ACTIONS(1247), - [anon_sym_let_DASHenv] = ACTIONS(1247), - [anon_sym_mut] = ACTIONS(1247), - [anon_sym_const] = ACTIONS(1247), - [anon_sym_SEMI] = ACTIONS(1247), - [sym_cmd_identifier] = ACTIONS(1247), - [anon_sym_LF] = ACTIONS(1249), - [anon_sym_def] = ACTIONS(1247), - [anon_sym_export_DASHenv] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1247), - [anon_sym_module] = ACTIONS(1247), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_LBRACK] = ACTIONS(1247), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_RPAREN] = ACTIONS(1247), - [anon_sym_DOLLAR] = ACTIONS(1247), - [anon_sym_error] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1247), - [anon_sym_break] = ACTIONS(1247), - [anon_sym_continue] = ACTIONS(1247), - [anon_sym_for] = ACTIONS(1247), - [anon_sym_in] = ACTIONS(1247), - [anon_sym_loop] = ACTIONS(1247), - [anon_sym_while] = ACTIONS(1247), - [anon_sym_do] = ACTIONS(1247), - [anon_sym_if] = ACTIONS(1247), - [anon_sym_match] = ACTIONS(1247), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_RBRACE] = ACTIONS(1247), - [anon_sym_DOT_DOT] = ACTIONS(1247), - [anon_sym_try] = ACTIONS(1247), - [anon_sym_return] = ACTIONS(1247), - [anon_sym_source] = ACTIONS(1247), - [anon_sym_source_DASHenv] = ACTIONS(1247), - [anon_sym_register] = ACTIONS(1247), - [anon_sym_hide] = ACTIONS(1247), - [anon_sym_hide_DASHenv] = ACTIONS(1247), - [anon_sym_overlay] = ACTIONS(1247), - [anon_sym_as] = ACTIONS(1247), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_where] = ACTIONS(1247), - [anon_sym_STAR_STAR] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_mod] = ACTIONS(1247), - [anon_sym_SLASH_SLASH] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1247), - [anon_sym_bit_DASHshl] = ACTIONS(1247), - [anon_sym_bit_DASHshr] = ACTIONS(1247), - [anon_sym_EQ_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1247), - [anon_sym_LT2] = ACTIONS(1247), - [anon_sym_LT_EQ] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1247), - [anon_sym_not_DASHin] = ACTIONS(1247), - [anon_sym_starts_DASHwith] = ACTIONS(1247), - [anon_sym_ends_DASHwith] = ACTIONS(1247), - [anon_sym_EQ_TILDE] = ACTIONS(1247), - [anon_sym_BANG_TILDE] = ACTIONS(1247), - [anon_sym_bit_DASHand] = ACTIONS(1247), - [anon_sym_bit_DASHxor] = ACTIONS(1247), - [anon_sym_bit_DASHor] = ACTIONS(1247), - [anon_sym_and] = ACTIONS(1247), - [anon_sym_xor] = ACTIONS(1247), - [anon_sym_or] = ACTIONS(1247), - [anon_sym_not] = ACTIONS(1247), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1247), - [anon_sym_DOT_DOT_LT] = ACTIONS(1247), - [anon_sym_null] = ACTIONS(1247), - [anon_sym_true] = ACTIONS(1247), - [anon_sym_false] = ACTIONS(1247), - [aux_sym__val_number_decimal_token1] = ACTIONS(1247), - [aux_sym__val_number_decimal_token2] = ACTIONS(1247), - [anon_sym_DOT2] = ACTIONS(1247), - [aux_sym__val_number_decimal_token3] = ACTIONS(1247), - [aux_sym__val_number_token1] = ACTIONS(1247), - [aux_sym__val_number_token2] = ACTIONS(1247), - [aux_sym__val_number_token3] = ACTIONS(1247), - [aux_sym__val_number_token4] = ACTIONS(1247), - [aux_sym__val_number_token5] = ACTIONS(1247), - [aux_sym__val_number_token6] = ACTIONS(1247), - [anon_sym_0b] = ACTIONS(1247), - [anon_sym_0o] = ACTIONS(1247), - [anon_sym_0x] = ACTIONS(1247), - [sym_val_date] = ACTIONS(1247), - [anon_sym_DQUOTE] = ACTIONS(1247), - [sym__str_single_quotes] = ACTIONS(1247), - [sym__str_back_ticks] = ACTIONS(1247), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1247), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1247), - [anon_sym_CARET] = ACTIONS(1247), - [aux_sym_unquoted_token6] = ACTIONS(1251), + [366] = { + [sym_comment] = STATE(366), + [anon_sym_export] = ACTIONS(1179), + [anon_sym_alias] = ACTIONS(1179), + [anon_sym_let] = ACTIONS(1179), + [anon_sym_let_DASHenv] = ACTIONS(1179), + [anon_sym_mut] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1179), + [sym_cmd_identifier] = ACTIONS(1179), + [anon_sym_LF] = ACTIONS(1181), + [anon_sym_def] = ACTIONS(1179), + [anon_sym_export_DASHenv] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_use] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_RPAREN] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_error] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1183), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1193), + [anon_sym_loop] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_source] = ACTIONS(1179), + [anon_sym_source_DASHenv] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), + [anon_sym_hide_DASHenv] = ACTIONS(1179), + [anon_sym_overlay] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_where] = ACTIONS(1179), + [anon_sym_STAR_STAR] = ACTIONS(1189), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_SLASH] = ACTIONS(1187), + [anon_sym_mod] = ACTIONS(1187), + [anon_sym_SLASH_SLASH] = ACTIONS(1187), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_bit_DASHshl] = ACTIONS(1191), + [anon_sym_bit_DASHshr] = ACTIONS(1191), + [anon_sym_EQ_EQ] = ACTIONS(1183), + [anon_sym_BANG_EQ] = ACTIONS(1183), + [anon_sym_LT2] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1183), + [anon_sym_GT_EQ] = ACTIONS(1183), + [anon_sym_not_DASHin] = ACTIONS(1193), + [anon_sym_starts_DASHwith] = ACTIONS(1193), + [anon_sym_ends_DASHwith] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1195), + [anon_sym_BANG_TILDE] = ACTIONS(1195), + [anon_sym_bit_DASHand] = ACTIONS(1197), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_not] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1179), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), + [anon_sym_CARET] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, - [406] = { - [sym_comment] = STATE(406), - [anon_sym_export] = ACTIONS(959), - [anon_sym_alias] = ACTIONS(959), - [anon_sym_let] = ACTIONS(959), - [anon_sym_let_DASHenv] = ACTIONS(959), - [anon_sym_mut] = ACTIONS(959), - [anon_sym_const] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(959), - [sym_cmd_identifier] = ACTIONS(959), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_def] = ACTIONS(959), - [anon_sym_export_DASHenv] = ACTIONS(959), - [anon_sym_extern] = ACTIONS(959), - [anon_sym_module] = ACTIONS(959), - [anon_sym_use] = ACTIONS(959), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_RPAREN] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_error] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH_DASH] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_break] = ACTIONS(959), - [anon_sym_continue] = ACTIONS(959), - [anon_sym_for] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_loop] = ACTIONS(959), - [anon_sym_while] = ACTIONS(959), - [anon_sym_do] = ACTIONS(959), - [anon_sym_if] = ACTIONS(959), - [anon_sym_match] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_RBRACE] = ACTIONS(959), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_try] = ACTIONS(959), - [anon_sym_return] = ACTIONS(959), - [anon_sym_source] = ACTIONS(959), - [anon_sym_source_DASHenv] = ACTIONS(959), - [anon_sym_register] = ACTIONS(959), - [anon_sym_hide] = ACTIONS(959), - [anon_sym_hide_DASHenv] = ACTIONS(959), - [anon_sym_overlay] = ACTIONS(959), - [anon_sym_as] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_where] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(959), - [anon_sym_PLUS_PLUS] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(959), - [anon_sym_SLASH_SLASH] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(959), - [anon_sym_bit_DASHshr] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(959), - [anon_sym_BANG_EQ] = ACTIONS(959), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(959), - [anon_sym_GT_EQ] = ACTIONS(959), - [anon_sym_not_DASHin] = ACTIONS(959), - [anon_sym_starts_DASHwith] = ACTIONS(959), - [anon_sym_ends_DASHwith] = ACTIONS(959), - [anon_sym_EQ_TILDE] = ACTIONS(959), - [anon_sym_BANG_TILDE] = ACTIONS(959), - [anon_sym_bit_DASHand] = ACTIONS(959), - [anon_sym_bit_DASHxor] = ACTIONS(959), - [anon_sym_bit_DASHor] = ACTIONS(959), - [anon_sym_and] = ACTIONS(959), - [anon_sym_xor] = ACTIONS(959), - [anon_sym_or] = ACTIONS(959), - [anon_sym_not] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_DOT_DOT_LT] = ACTIONS(959), - [anon_sym_null] = ACTIONS(959), - [anon_sym_true] = ACTIONS(959), - [anon_sym_false] = ACTIONS(959), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(959), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(959), - [aux_sym__val_number_token1] = ACTIONS(959), - [aux_sym__val_number_token2] = ACTIONS(959), - [aux_sym__val_number_token3] = ACTIONS(959), - [aux_sym__val_number_token4] = ACTIONS(959), - [aux_sym__val_number_token5] = ACTIONS(959), - [aux_sym__val_number_token6] = ACTIONS(959), - [anon_sym_0b] = ACTIONS(959), - [anon_sym_0o] = ACTIONS(959), - [anon_sym_0x] = ACTIONS(959), - [sym_val_date] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [sym__str_single_quotes] = ACTIONS(959), - [sym__str_back_ticks] = ACTIONS(959), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(959), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(959), - [anon_sym_CARET] = ACTIONS(959), - [aux_sym_unquoted_token5] = ACTIONS(946), + [367] = { + [sym_comment] = STATE(367), + [anon_sym_export] = ACTIONS(1179), + [anon_sym_alias] = ACTIONS(1179), + [anon_sym_let] = ACTIONS(1179), + [anon_sym_let_DASHenv] = ACTIONS(1179), + [anon_sym_mut] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1179), + [sym_cmd_identifier] = ACTIONS(1179), + [anon_sym_LF] = ACTIONS(1181), + [anon_sym_def] = ACTIONS(1179), + [anon_sym_export_DASHenv] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_use] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_RPAREN] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_error] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1183), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1193), + [anon_sym_loop] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_source] = ACTIONS(1179), + [anon_sym_source_DASHenv] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), + [anon_sym_hide_DASHenv] = ACTIONS(1179), + [anon_sym_overlay] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_where] = ACTIONS(1179), + [anon_sym_STAR_STAR] = ACTIONS(1189), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_SLASH] = ACTIONS(1187), + [anon_sym_mod] = ACTIONS(1187), + [anon_sym_SLASH_SLASH] = ACTIONS(1187), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_bit_DASHshl] = ACTIONS(1191), + [anon_sym_bit_DASHshr] = ACTIONS(1191), + [anon_sym_EQ_EQ] = ACTIONS(1183), + [anon_sym_BANG_EQ] = ACTIONS(1183), + [anon_sym_LT2] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1183), + [anon_sym_GT_EQ] = ACTIONS(1183), + [anon_sym_not_DASHin] = ACTIONS(1193), + [anon_sym_starts_DASHwith] = ACTIONS(1193), + [anon_sym_ends_DASHwith] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1195), + [anon_sym_BANG_TILDE] = ACTIONS(1195), + [anon_sym_bit_DASHand] = ACTIONS(1197), + [anon_sym_bit_DASHxor] = ACTIONS(1199), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_not] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1179), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), + [anon_sym_CARET] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, - [407] = { - [sym_path] = STATE(541), - [sym_comment] = STATE(407), - [aux_sym_cell_path_repeat1] = STATE(408), - [anon_sym_export] = ACTIONS(987), - [anon_sym_alias] = ACTIONS(987), - [anon_sym_let] = ACTIONS(987), - [anon_sym_let_DASHenv] = ACTIONS(987), - [anon_sym_mut] = ACTIONS(987), - [anon_sym_const] = ACTIONS(987), - [anon_sym_SEMI] = ACTIONS(987), - [sym_cmd_identifier] = ACTIONS(987), - [anon_sym_LF] = ACTIONS(989), - [anon_sym_def] = ACTIONS(987), - [anon_sym_export_DASHenv] = ACTIONS(987), - [anon_sym_extern] = ACTIONS(987), - [anon_sym_module] = ACTIONS(987), - [anon_sym_use] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(987), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_RPAREN] = ACTIONS(987), - [anon_sym_DOLLAR] = ACTIONS(987), - [anon_sym_error] = ACTIONS(987), - [anon_sym_GT] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_break] = ACTIONS(987), - [anon_sym_continue] = ACTIONS(987), - [anon_sym_for] = ACTIONS(987), - [anon_sym_in] = ACTIONS(987), - [anon_sym_loop] = ACTIONS(987), - [anon_sym_while] = ACTIONS(987), - [anon_sym_do] = ACTIONS(987), - [anon_sym_if] = ACTIONS(987), - [anon_sym_match] = ACTIONS(987), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_RBRACE] = ACTIONS(987), - [anon_sym_DOT_DOT] = ACTIONS(987), - [anon_sym_try] = ACTIONS(987), - [anon_sym_return] = ACTIONS(987), - [anon_sym_source] = ACTIONS(987), - [anon_sym_source_DASHenv] = ACTIONS(987), - [anon_sym_register] = ACTIONS(987), - [anon_sym_hide] = ACTIONS(987), - [anon_sym_hide_DASHenv] = ACTIONS(987), - [anon_sym_overlay] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(987), - [anon_sym_where] = ACTIONS(987), - [anon_sym_STAR_STAR] = ACTIONS(987), - [anon_sym_PLUS_PLUS] = ACTIONS(987), - [anon_sym_SLASH] = ACTIONS(987), - [anon_sym_mod] = ACTIONS(987), - [anon_sym_SLASH_SLASH] = ACTIONS(987), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_bit_DASHshl] = ACTIONS(987), - [anon_sym_bit_DASHshr] = ACTIONS(987), - [anon_sym_EQ_EQ] = ACTIONS(987), - [anon_sym_BANG_EQ] = ACTIONS(987), - [anon_sym_LT2] = ACTIONS(987), - [anon_sym_LT_EQ] = ACTIONS(987), - [anon_sym_GT_EQ] = ACTIONS(987), - [anon_sym_not_DASHin] = ACTIONS(987), - [anon_sym_starts_DASHwith] = ACTIONS(987), - [anon_sym_ends_DASHwith] = ACTIONS(987), - [anon_sym_EQ_TILDE] = ACTIONS(987), - [anon_sym_BANG_TILDE] = ACTIONS(987), - [anon_sym_bit_DASHand] = ACTIONS(987), - [anon_sym_bit_DASHxor] = ACTIONS(987), - [anon_sym_bit_DASHor] = ACTIONS(987), - [anon_sym_and] = ACTIONS(987), - [anon_sym_xor] = ACTIONS(987), - [anon_sym_or] = ACTIONS(987), - [anon_sym_not] = ACTIONS(987), - [anon_sym_DOT] = ACTIONS(1241), - [anon_sym_DOT_DOT_EQ] = ACTIONS(987), - [anon_sym_DOT_DOT_LT] = ACTIONS(987), - [anon_sym_null] = ACTIONS(987), - [anon_sym_true] = ACTIONS(987), - [anon_sym_false] = ACTIONS(987), - [aux_sym__val_number_decimal_token1] = ACTIONS(987), - [aux_sym__val_number_decimal_token2] = ACTIONS(987), - [anon_sym_DOT2] = ACTIONS(987), - [aux_sym__val_number_decimal_token3] = ACTIONS(987), - [aux_sym__val_number_token1] = ACTIONS(987), - [aux_sym__val_number_token2] = ACTIONS(987), - [aux_sym__val_number_token3] = ACTIONS(987), - [aux_sym__val_number_token4] = ACTIONS(987), - [aux_sym__val_number_token5] = ACTIONS(987), - [aux_sym__val_number_token6] = ACTIONS(987), - [anon_sym_0b] = ACTIONS(987), - [anon_sym_0o] = ACTIONS(987), - [anon_sym_0x] = ACTIONS(987), - [sym_val_date] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(987), - [sym__str_single_quotes] = ACTIONS(987), - [sym__str_back_ticks] = ACTIONS(987), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(987), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), + [368] = { + [sym_comment] = STATE(368), + [anon_sym_export] = ACTIONS(1179), + [anon_sym_alias] = ACTIONS(1179), + [anon_sym_let] = ACTIONS(1179), + [anon_sym_let_DASHenv] = ACTIONS(1179), + [anon_sym_mut] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1179), + [sym_cmd_identifier] = ACTIONS(1179), + [anon_sym_LF] = ACTIONS(1181), + [anon_sym_def] = ACTIONS(1179), + [anon_sym_export_DASHenv] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_use] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_RPAREN] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_error] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1183), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1193), + [anon_sym_loop] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_source] = ACTIONS(1179), + [anon_sym_source_DASHenv] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), + [anon_sym_hide_DASHenv] = ACTIONS(1179), + [anon_sym_overlay] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_where] = ACTIONS(1179), + [anon_sym_STAR_STAR] = ACTIONS(1189), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_SLASH] = ACTIONS(1187), + [anon_sym_mod] = ACTIONS(1187), + [anon_sym_SLASH_SLASH] = ACTIONS(1187), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_bit_DASHshl] = ACTIONS(1191), + [anon_sym_bit_DASHshr] = ACTIONS(1191), + [anon_sym_EQ_EQ] = ACTIONS(1183), + [anon_sym_BANG_EQ] = ACTIONS(1183), + [anon_sym_LT2] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1183), + [anon_sym_GT_EQ] = ACTIONS(1183), + [anon_sym_not_DASHin] = ACTIONS(1193), + [anon_sym_starts_DASHwith] = ACTIONS(1193), + [anon_sym_ends_DASHwith] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1195), + [anon_sym_BANG_TILDE] = ACTIONS(1195), + [anon_sym_bit_DASHand] = ACTIONS(1197), + [anon_sym_bit_DASHxor] = ACTIONS(1199), + [anon_sym_bit_DASHor] = ACTIONS(1201), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_not] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1179), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), + [anon_sym_CARET] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, - [408] = { - [sym_path] = STATE(541), - [sym_comment] = STATE(408), - [aux_sym_cell_path_repeat1] = STATE(428), - [anon_sym_export] = ACTIONS(1006), - [anon_sym_alias] = ACTIONS(1006), - [anon_sym_let] = ACTIONS(1006), - [anon_sym_let_DASHenv] = ACTIONS(1006), - [anon_sym_mut] = ACTIONS(1006), - [anon_sym_const] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1006), - [sym_cmd_identifier] = ACTIONS(1006), - [anon_sym_LF] = ACTIONS(1008), - [anon_sym_def] = ACTIONS(1006), - [anon_sym_export_DASHenv] = ACTIONS(1006), - [anon_sym_extern] = ACTIONS(1006), - [anon_sym_module] = ACTIONS(1006), - [anon_sym_use] = ACTIONS(1006), - [anon_sym_LBRACK] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_RPAREN] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_error] = ACTIONS(1006), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_break] = ACTIONS(1006), - [anon_sym_continue] = ACTIONS(1006), - [anon_sym_for] = ACTIONS(1006), - [anon_sym_in] = ACTIONS(1006), - [anon_sym_loop] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(1006), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_match] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_try] = ACTIONS(1006), - [anon_sym_return] = ACTIONS(1006), - [anon_sym_source] = ACTIONS(1006), - [anon_sym_source_DASHenv] = ACTIONS(1006), - [anon_sym_register] = ACTIONS(1006), - [anon_sym_hide] = ACTIONS(1006), - [anon_sym_hide_DASHenv] = ACTIONS(1006), - [anon_sym_overlay] = ACTIONS(1006), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_where] = ACTIONS(1006), - [anon_sym_STAR_STAR] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_mod] = ACTIONS(1006), - [anon_sym_SLASH_SLASH] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_bit_DASHshl] = ACTIONS(1006), - [anon_sym_bit_DASHshr] = ACTIONS(1006), - [anon_sym_EQ_EQ] = ACTIONS(1006), - [anon_sym_BANG_EQ] = ACTIONS(1006), - [anon_sym_LT2] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1006), - [anon_sym_GT_EQ] = ACTIONS(1006), - [anon_sym_not_DASHin] = ACTIONS(1006), - [anon_sym_starts_DASHwith] = ACTIONS(1006), - [anon_sym_ends_DASHwith] = ACTIONS(1006), - [anon_sym_EQ_TILDE] = ACTIONS(1006), - [anon_sym_BANG_TILDE] = ACTIONS(1006), - [anon_sym_bit_DASHand] = ACTIONS(1006), - [anon_sym_bit_DASHxor] = ACTIONS(1006), - [anon_sym_bit_DASHor] = ACTIONS(1006), - [anon_sym_and] = ACTIONS(1006), - [anon_sym_xor] = ACTIONS(1006), - [anon_sym_or] = ACTIONS(1006), - [anon_sym_not] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1241), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT] = ACTIONS(1006), - [anon_sym_null] = ACTIONS(1006), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1006), - [anon_sym_DOT2] = ACTIONS(1006), - [aux_sym__val_number_decimal_token3] = ACTIONS(1006), - [aux_sym__val_number_token1] = ACTIONS(1006), - [aux_sym__val_number_token2] = ACTIONS(1006), - [aux_sym__val_number_token3] = ACTIONS(1006), - [aux_sym__val_number_token4] = ACTIONS(1006), - [aux_sym__val_number_token5] = ACTIONS(1006), - [aux_sym__val_number_token6] = ACTIONS(1006), - [anon_sym_0b] = ACTIONS(1006), - [anon_sym_0o] = ACTIONS(1006), - [anon_sym_0x] = ACTIONS(1006), - [sym_val_date] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym__str_single_quotes] = ACTIONS(1006), - [sym__str_back_ticks] = ACTIONS(1006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1006), - [anon_sym_CARET] = ACTIONS(1006), + [369] = { + [sym_comment] = STATE(369), + [anon_sym_export] = ACTIONS(1179), + [anon_sym_alias] = ACTIONS(1179), + [anon_sym_let] = ACTIONS(1179), + [anon_sym_let_DASHenv] = ACTIONS(1179), + [anon_sym_mut] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1179), + [sym_cmd_identifier] = ACTIONS(1179), + [anon_sym_LF] = ACTIONS(1181), + [anon_sym_def] = ACTIONS(1179), + [anon_sym_export_DASHenv] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_use] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_RPAREN] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_error] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1183), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1193), + [anon_sym_loop] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_source] = ACTIONS(1179), + [anon_sym_source_DASHenv] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), + [anon_sym_hide_DASHenv] = ACTIONS(1179), + [anon_sym_overlay] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_where] = ACTIONS(1179), + [anon_sym_STAR_STAR] = ACTIONS(1189), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_SLASH] = ACTIONS(1187), + [anon_sym_mod] = ACTIONS(1187), + [anon_sym_SLASH_SLASH] = ACTIONS(1187), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_bit_DASHshl] = ACTIONS(1191), + [anon_sym_bit_DASHshr] = ACTIONS(1191), + [anon_sym_EQ_EQ] = ACTIONS(1183), + [anon_sym_BANG_EQ] = ACTIONS(1183), + [anon_sym_LT2] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1183), + [anon_sym_GT_EQ] = ACTIONS(1183), + [anon_sym_not_DASHin] = ACTIONS(1193), + [anon_sym_starts_DASHwith] = ACTIONS(1193), + [anon_sym_ends_DASHwith] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1195), + [anon_sym_BANG_TILDE] = ACTIONS(1195), + [anon_sym_bit_DASHand] = ACTIONS(1197), + [anon_sym_bit_DASHxor] = ACTIONS(1199), + [anon_sym_bit_DASHor] = ACTIONS(1201), + [anon_sym_and] = ACTIONS(1203), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_not] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1179), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), + [anon_sym_CARET] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, - [409] = { - [sym_comment] = STATE(409), - [anon_sym_export] = ACTIONS(1059), - [anon_sym_alias] = ACTIONS(1059), - [anon_sym_EQ] = ACTIONS(1059), - [anon_sym_let] = ACTIONS(1059), - [anon_sym_let_DASHenv] = ACTIONS(1059), - [anon_sym_mut] = ACTIONS(1059), - [anon_sym_const] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [sym_cmd_identifier] = ACTIONS(1059), - [anon_sym_LF] = ACTIONS(1061), - [anon_sym_def] = ACTIONS(1059), - [anon_sym_export_DASHenv] = ACTIONS(1059), - [anon_sym_extern] = ACTIONS(1059), - [anon_sym_module] = ACTIONS(1059), - [anon_sym_use] = ACTIONS(1059), - [anon_sym_COLON] = ACTIONS(1059), - [anon_sym_COMMA] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_error] = ACTIONS(1059), - [anon_sym_list] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_break] = ACTIONS(1059), - [anon_sym_continue] = ACTIONS(1059), - [anon_sym_for] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1059), - [anon_sym_loop] = ACTIONS(1059), - [anon_sym_make] = ACTIONS(1059), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_do] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1059), - [anon_sym_else] = ACTIONS(1059), - [anon_sym_match] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(1059), - [anon_sym_try] = ACTIONS(1059), - [anon_sym_catch] = ACTIONS(1059), - [anon_sym_return] = ACTIONS(1059), - [anon_sym_source] = ACTIONS(1059), - [anon_sym_source_DASHenv] = ACTIONS(1059), - [anon_sym_register] = ACTIONS(1059), - [anon_sym_hide] = ACTIONS(1059), - [anon_sym_hide_DASHenv] = ACTIONS(1059), - [anon_sym_overlay] = ACTIONS(1059), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_as] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_PLUS_EQ] = ACTIONS(1059), - [anon_sym_DASH_EQ] = ACTIONS(1059), - [anon_sym_STAR_EQ] = ACTIONS(1059), - [anon_sym_SLASH_EQ] = ACTIONS(1059), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1059), - [anon_sym_QMARK2] = ACTIONS(1059), - [anon_sym_STAR_STAR] = ACTIONS(1059), - [anon_sym_PLUS_PLUS] = ACTIONS(1059), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_mod] = ACTIONS(1059), - [anon_sym_SLASH_SLASH] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_bit_DASHshl] = ACTIONS(1059), - [anon_sym_bit_DASHshr] = ACTIONS(1059), - [anon_sym_EQ_EQ] = ACTIONS(1059), - [anon_sym_BANG_EQ] = ACTIONS(1059), - [anon_sym_LT2] = ACTIONS(1059), - [anon_sym_LT_EQ] = ACTIONS(1059), - [anon_sym_GT_EQ] = ACTIONS(1059), - [anon_sym_not_DASHin] = ACTIONS(1059), - [anon_sym_starts_DASHwith] = ACTIONS(1059), - [anon_sym_ends_DASHwith] = ACTIONS(1059), - [anon_sym_EQ_TILDE] = ACTIONS(1059), - [anon_sym_BANG_TILDE] = ACTIONS(1059), - [anon_sym_bit_DASHand] = ACTIONS(1059), - [anon_sym_bit_DASHxor] = ACTIONS(1059), - [anon_sym_bit_DASHor] = ACTIONS(1059), - [anon_sym_and] = ACTIONS(1059), - [anon_sym_xor] = ACTIONS(1059), - [anon_sym_or] = ACTIONS(1059), - [anon_sym_DOT_DOT2] = ACTIONS(1059), - [anon_sym_DOT] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1061), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1061), - [aux_sym__val_number_decimal_token1] = ACTIONS(1059), - [aux_sym__val_number_decimal_token2] = ACTIONS(1059), - [anon_sym_DOT2] = ACTIONS(1059), - [aux_sym__val_number_decimal_token3] = ACTIONS(1059), - [aux_sym__val_number_token1] = ACTIONS(1059), - [aux_sym__val_number_token2] = ACTIONS(1059), - [aux_sym__val_number_token3] = ACTIONS(1059), - [aux_sym__val_number_token4] = ACTIONS(1059), - [aux_sym__val_number_token5] = ACTIONS(1059), - [aux_sym__val_number_token6] = ACTIONS(1059), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym__str_single_quotes] = ACTIONS(1059), - [sym__str_back_ticks] = ACTIONS(1059), - [aux_sym__record_key_token2] = ACTIONS(1059), + [370] = { + [sym_comment] = STATE(370), + [anon_sym_export] = ACTIONS(1179), + [anon_sym_alias] = ACTIONS(1179), + [anon_sym_let] = ACTIONS(1179), + [anon_sym_let_DASHenv] = ACTIONS(1179), + [anon_sym_mut] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1179), + [sym_cmd_identifier] = ACTIONS(1179), + [anon_sym_LF] = ACTIONS(1181), + [anon_sym_def] = ACTIONS(1179), + [anon_sym_export_DASHenv] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_use] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_RPAREN] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_error] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1183), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1193), + [anon_sym_loop] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_source] = ACTIONS(1179), + [anon_sym_source_DASHenv] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), + [anon_sym_hide_DASHenv] = ACTIONS(1179), + [anon_sym_overlay] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_where] = ACTIONS(1179), + [anon_sym_STAR_STAR] = ACTIONS(1189), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_SLASH] = ACTIONS(1187), + [anon_sym_mod] = ACTIONS(1187), + [anon_sym_SLASH_SLASH] = ACTIONS(1187), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_bit_DASHshl] = ACTIONS(1191), + [anon_sym_bit_DASHshr] = ACTIONS(1191), + [anon_sym_EQ_EQ] = ACTIONS(1183), + [anon_sym_BANG_EQ] = ACTIONS(1183), + [anon_sym_LT2] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1183), + [anon_sym_GT_EQ] = ACTIONS(1183), + [anon_sym_not_DASHin] = ACTIONS(1193), + [anon_sym_starts_DASHwith] = ACTIONS(1193), + [anon_sym_ends_DASHwith] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1195), + [anon_sym_BANG_TILDE] = ACTIONS(1195), + [anon_sym_bit_DASHand] = ACTIONS(1197), + [anon_sym_bit_DASHxor] = ACTIONS(1199), + [anon_sym_bit_DASHor] = ACTIONS(1201), + [anon_sym_and] = ACTIONS(1203), + [anon_sym_xor] = ACTIONS(1205), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_not] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1179), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), + [anon_sym_CARET] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, - [410] = { - [sym_cell_path] = STATE(617), - [sym_path] = STATE(407), - [sym_comment] = STATE(410), - [anon_sym_export] = ACTIONS(1010), - [anon_sym_alias] = ACTIONS(1010), - [anon_sym_let] = ACTIONS(1010), - [anon_sym_let_DASHenv] = ACTIONS(1010), - [anon_sym_mut] = ACTIONS(1010), - [anon_sym_const] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1010), - [sym_cmd_identifier] = ACTIONS(1010), - [anon_sym_LF] = ACTIONS(1012), - [anon_sym_def] = ACTIONS(1010), - [anon_sym_export_DASHenv] = ACTIONS(1010), - [anon_sym_extern] = ACTIONS(1010), - [anon_sym_module] = ACTIONS(1010), - [anon_sym_use] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(1010), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_RPAREN] = ACTIONS(1010), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_error] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1010), - [anon_sym_continue] = ACTIONS(1010), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_in] = ACTIONS(1010), - [anon_sym_loop] = ACTIONS(1010), - [anon_sym_while] = ACTIONS(1010), - [anon_sym_do] = ACTIONS(1010), - [anon_sym_if] = ACTIONS(1010), - [anon_sym_match] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_RBRACE] = ACTIONS(1010), - [anon_sym_DOT_DOT] = ACTIONS(1010), - [anon_sym_try] = ACTIONS(1010), - [anon_sym_return] = ACTIONS(1010), - [anon_sym_source] = ACTIONS(1010), - [anon_sym_source_DASHenv] = ACTIONS(1010), - [anon_sym_register] = ACTIONS(1010), - [anon_sym_hide] = ACTIONS(1010), - [anon_sym_hide_DASHenv] = ACTIONS(1010), - [anon_sym_overlay] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1010), - [anon_sym_where] = ACTIONS(1010), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_SLASH] = ACTIONS(1010), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT2] = ACTIONS(1010), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT_EQ] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_not] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(1241), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT] = ACTIONS(1010), - [anon_sym_null] = ACTIONS(1010), - [anon_sym_true] = ACTIONS(1010), - [anon_sym_false] = ACTIONS(1010), - [aux_sym__val_number_decimal_token1] = ACTIONS(1010), - [aux_sym__val_number_decimal_token2] = ACTIONS(1010), - [anon_sym_DOT2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = 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(1010), - [aux_sym__val_number_token5] = ACTIONS(1010), - [aux_sym__val_number_token6] = ACTIONS(1010), - [anon_sym_0b] = ACTIONS(1010), - [anon_sym_0o] = ACTIONS(1010), - [anon_sym_0x] = ACTIONS(1010), - [sym_val_date] = ACTIONS(1010), - [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_CARET] = ACTIONS(1010), + [371] = { + [sym_comment] = STATE(371), + [anon_sym_export] = ACTIONS(1179), + [anon_sym_alias] = ACTIONS(1179), + [anon_sym_let] = ACTIONS(1179), + [anon_sym_let_DASHenv] = ACTIONS(1179), + [anon_sym_mut] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1179), + [sym_cmd_identifier] = ACTIONS(1179), + [anon_sym_LF] = ACTIONS(1181), + [anon_sym_def] = ACTIONS(1179), + [anon_sym_export_DASHenv] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_use] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_RPAREN] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_error] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1183), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1193), + [anon_sym_loop] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_source] = ACTIONS(1179), + [anon_sym_source_DASHenv] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), + [anon_sym_hide_DASHenv] = ACTIONS(1179), + [anon_sym_overlay] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_where] = ACTIONS(1179), + [anon_sym_STAR_STAR] = ACTIONS(1189), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_SLASH] = ACTIONS(1187), + [anon_sym_mod] = ACTIONS(1187), + [anon_sym_SLASH_SLASH] = ACTIONS(1187), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_bit_DASHshl] = ACTIONS(1191), + [anon_sym_bit_DASHshr] = ACTIONS(1191), + [anon_sym_EQ_EQ] = ACTIONS(1183), + [anon_sym_BANG_EQ] = ACTIONS(1183), + [anon_sym_LT2] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1183), + [anon_sym_GT_EQ] = ACTIONS(1183), + [anon_sym_not_DASHin] = ACTIONS(1193), + [anon_sym_starts_DASHwith] = ACTIONS(1193), + [anon_sym_ends_DASHwith] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1195), + [anon_sym_BANG_TILDE] = ACTIONS(1195), + [anon_sym_bit_DASHand] = ACTIONS(1197), + [anon_sym_bit_DASHxor] = ACTIONS(1199), + [anon_sym_bit_DASHor] = ACTIONS(1201), + [anon_sym_and] = ACTIONS(1203), + [anon_sym_xor] = ACTIONS(1205), + [anon_sym_or] = ACTIONS(1207), + [anon_sym_not] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1179), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), + [anon_sym_CARET] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, - [411] = { - [sym_comment] = STATE(411), - [anon_sym_export] = ACTIONS(959), - [anon_sym_alias] = ACTIONS(959), - [anon_sym_let] = ACTIONS(959), - [anon_sym_let_DASHenv] = ACTIONS(959), - [anon_sym_mut] = ACTIONS(959), - [anon_sym_const] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(959), - [sym_cmd_identifier] = ACTIONS(959), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_def] = ACTIONS(959), - [anon_sym_export_DASHenv] = ACTIONS(959), - [anon_sym_extern] = ACTIONS(959), - [anon_sym_module] = ACTIONS(959), - [anon_sym_use] = ACTIONS(959), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_RPAREN] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_error] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH_DASH] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_break] = ACTIONS(959), - [anon_sym_continue] = ACTIONS(959), - [anon_sym_for] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_loop] = ACTIONS(959), - [anon_sym_while] = ACTIONS(959), - [anon_sym_do] = ACTIONS(959), - [anon_sym_if] = ACTIONS(959), - [anon_sym_match] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_RBRACE] = ACTIONS(959), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_try] = ACTIONS(959), - [anon_sym_return] = ACTIONS(959), - [anon_sym_source] = ACTIONS(959), - [anon_sym_source_DASHenv] = ACTIONS(959), - [anon_sym_register] = ACTIONS(959), - [anon_sym_hide] = ACTIONS(959), - [anon_sym_hide_DASHenv] = ACTIONS(959), - [anon_sym_overlay] = ACTIONS(959), - [anon_sym_as] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_where] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(959), - [anon_sym_PLUS_PLUS] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(959), - [anon_sym_SLASH_SLASH] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(959), - [anon_sym_bit_DASHshr] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(959), - [anon_sym_BANG_EQ] = ACTIONS(959), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(959), - [anon_sym_GT_EQ] = ACTIONS(959), - [anon_sym_not_DASHin] = ACTIONS(959), - [anon_sym_starts_DASHwith] = ACTIONS(959), - [anon_sym_ends_DASHwith] = ACTIONS(959), - [anon_sym_EQ_TILDE] = ACTIONS(959), - [anon_sym_BANG_TILDE] = ACTIONS(959), - [anon_sym_bit_DASHand] = ACTIONS(959), - [anon_sym_bit_DASHxor] = ACTIONS(959), - [anon_sym_bit_DASHor] = ACTIONS(959), - [anon_sym_and] = ACTIONS(959), - [anon_sym_xor] = ACTIONS(959), - [anon_sym_or] = ACTIONS(959), - [anon_sym_not] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_DOT_DOT_LT] = ACTIONS(959), - [anon_sym_null] = ACTIONS(959), - [anon_sym_true] = ACTIONS(959), - [anon_sym_false] = ACTIONS(959), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(959), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(959), - [aux_sym__val_number_token1] = ACTIONS(959), - [aux_sym__val_number_token2] = ACTIONS(959), - [aux_sym__val_number_token3] = ACTIONS(959), - [aux_sym__val_number_token4] = ACTIONS(959), - [aux_sym__val_number_token5] = ACTIONS(959), - [aux_sym__val_number_token6] = ACTIONS(959), - [anon_sym_0b] = ACTIONS(959), - [anon_sym_0o] = ACTIONS(959), - [anon_sym_0x] = ACTIONS(959), - [sym_val_date] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [sym__str_single_quotes] = ACTIONS(959), - [sym__str_back_ticks] = ACTIONS(959), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(959), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(959), - [anon_sym_CARET] = ACTIONS(959), - [aux_sym_unquoted_token5] = ACTIONS(973), + [372] = { + [sym_comment] = STATE(372), + [ts_builtin_sym_end] = ACTIONS(1091), + [anon_sym_export] = ACTIONS(1089), + [anon_sym_alias] = ACTIONS(1089), + [anon_sym_let] = ACTIONS(1089), + [anon_sym_let_DASHenv] = ACTIONS(1089), + [anon_sym_mut] = ACTIONS(1089), + [anon_sym_const] = ACTIONS(1089), + [anon_sym_SEMI] = ACTIONS(1089), + [sym_cmd_identifier] = ACTIONS(1089), + [anon_sym_LF] = ACTIONS(1091), + [anon_sym_def] = ACTIONS(1089), + [anon_sym_export_DASHenv] = ACTIONS(1089), + [anon_sym_extern] = ACTIONS(1089), + [anon_sym_module] = ACTIONS(1089), + [anon_sym_use] = ACTIONS(1089), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1089), + [anon_sym_error] = ACTIONS(1089), + [anon_sym_GT] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_DASH] = ACTIONS(1089), + [anon_sym_break] = ACTIONS(1089), + [anon_sym_continue] = ACTIONS(1089), + [anon_sym_for] = ACTIONS(1089), + [anon_sym_in] = ACTIONS(1089), + [anon_sym_loop] = ACTIONS(1089), + [anon_sym_while] = ACTIONS(1089), + [anon_sym_do] = ACTIONS(1089), + [anon_sym_if] = ACTIONS(1089), + [anon_sym_match] = ACTIONS(1089), + [anon_sym_LBRACE] = ACTIONS(1089), + [anon_sym_DOT_DOT] = ACTIONS(1089), + [anon_sym_try] = ACTIONS(1089), + [anon_sym_return] = ACTIONS(1089), + [anon_sym_source] = ACTIONS(1089), + [anon_sym_source_DASHenv] = ACTIONS(1089), + [anon_sym_register] = ACTIONS(1089), + [anon_sym_hide] = ACTIONS(1089), + [anon_sym_hide_DASHenv] = ACTIONS(1089), + [anon_sym_overlay] = ACTIONS(1089), + [anon_sym_as] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_where] = ACTIONS(1089), + [anon_sym_STAR_STAR] = ACTIONS(1089), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_SLASH] = ACTIONS(1089), + [anon_sym_mod] = ACTIONS(1089), + [anon_sym_SLASH_SLASH] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1089), + [anon_sym_bit_DASHshl] = ACTIONS(1089), + [anon_sym_bit_DASHshr] = ACTIONS(1089), + [anon_sym_EQ_EQ] = ACTIONS(1089), + [anon_sym_BANG_EQ] = ACTIONS(1089), + [anon_sym_LT2] = ACTIONS(1089), + [anon_sym_LT_EQ] = ACTIONS(1089), + [anon_sym_GT_EQ] = ACTIONS(1089), + [anon_sym_not_DASHin] = ACTIONS(1089), + [anon_sym_starts_DASHwith] = ACTIONS(1089), + [anon_sym_ends_DASHwith] = ACTIONS(1089), + [anon_sym_EQ_TILDE] = ACTIONS(1089), + [anon_sym_BANG_TILDE] = ACTIONS(1089), + [anon_sym_bit_DASHand] = ACTIONS(1089), + [anon_sym_bit_DASHxor] = ACTIONS(1089), + [anon_sym_bit_DASHor] = ACTIONS(1089), + [anon_sym_and] = ACTIONS(1089), + [anon_sym_xor] = ACTIONS(1089), + [anon_sym_or] = ACTIONS(1089), + [anon_sym_not] = ACTIONS(1089), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_DOT_DOT_LT] = ACTIONS(1089), + [anon_sym_null] = ACTIONS(1089), + [anon_sym_true] = ACTIONS(1089), + [anon_sym_false] = ACTIONS(1089), + [aux_sym__val_number_decimal_token1] = ACTIONS(1089), + [aux_sym__val_number_decimal_token2] = ACTIONS(1089), + [anon_sym_DOT2] = ACTIONS(1089), + [aux_sym__val_number_decimal_token3] = ACTIONS(1089), + [aux_sym__val_number_token1] = ACTIONS(1089), + [aux_sym__val_number_token2] = ACTIONS(1089), + [aux_sym__val_number_token3] = ACTIONS(1089), + [aux_sym__val_number_token4] = ACTIONS(1089), + [aux_sym__val_number_token5] = ACTIONS(1089), + [aux_sym__val_number_token6] = ACTIONS(1089), + [anon_sym_0b] = ACTIONS(1089), + [anon_sym_0o] = ACTIONS(1089), + [anon_sym_0x] = ACTIONS(1089), + [sym_val_date] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1089), + [sym__str_single_quotes] = ACTIONS(1089), + [sym__str_back_ticks] = ACTIONS(1089), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1089), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1089), + [anon_sym_CARET] = ACTIONS(1089), + [aux_sym_unquoted_token6] = ACTIONS(1149), [anon_sym_POUND] = ACTIONS(113), }, - [412] = { - [sym_comment] = STATE(412), + [373] = { + [sym_comment] = STATE(373), + [anon_sym_export] = ACTIONS(920), + [anon_sym_alias] = ACTIONS(920), + [anon_sym_let] = ACTIONS(920), + [anon_sym_let_DASHenv] = ACTIONS(920), + [anon_sym_mut] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(920), + [sym_cmd_identifier] = ACTIONS(920), + [anon_sym_LF] = ACTIONS(922), + [anon_sym_def] = ACTIONS(920), + [anon_sym_export_DASHenv] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym_module] = ACTIONS(920), + [anon_sym_use] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_RPAREN] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_error] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_in] = ACTIONS(920), + [anon_sym_loop] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_match] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_RBRACE] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_try] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_source] = ACTIONS(920), + [anon_sym_source_DASHenv] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_hide] = ACTIONS(920), + [anon_sym_hide_DASHenv] = ACTIONS(920), + [anon_sym_overlay] = ACTIONS(920), + [anon_sym_as] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_where] = ACTIONS(920), + [anon_sym_STAR_STAR] = ACTIONS(920), + [anon_sym_PLUS_PLUS] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_mod] = ACTIONS(920), + [anon_sym_SLASH_SLASH] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_bit_DASHshl] = ACTIONS(920), + [anon_sym_bit_DASHshr] = ACTIONS(920), + [anon_sym_EQ_EQ] = ACTIONS(920), + [anon_sym_BANG_EQ] = ACTIONS(920), + [anon_sym_LT2] = ACTIONS(920), + [anon_sym_LT_EQ] = ACTIONS(920), + [anon_sym_GT_EQ] = ACTIONS(920), + [anon_sym_not_DASHin] = ACTIONS(920), + [anon_sym_starts_DASHwith] = ACTIONS(920), + [anon_sym_ends_DASHwith] = ACTIONS(920), + [anon_sym_EQ_TILDE] = ACTIONS(920), + [anon_sym_BANG_TILDE] = ACTIONS(920), + [anon_sym_bit_DASHand] = ACTIONS(920), + [anon_sym_bit_DASHxor] = ACTIONS(920), + [anon_sym_bit_DASHor] = ACTIONS(920), + [anon_sym_and] = ACTIONS(920), + [anon_sym_xor] = ACTIONS(920), + [anon_sym_or] = ACTIONS(920), + [anon_sym_not] = ACTIONS(920), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [anon_sym_null] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), + [anon_sym_CARET] = ACTIONS(920), + [anon_sym_POUND] = ACTIONS(113), + }, + [374] = { + [sym_comment] = STATE(374), + [anon_sym_export] = ACTIONS(1139), + [anon_sym_alias] = ACTIONS(1139), + [anon_sym_let] = ACTIONS(1139), + [anon_sym_let_DASHenv] = ACTIONS(1139), + [anon_sym_mut] = ACTIONS(1139), + [anon_sym_const] = ACTIONS(1139), + [anon_sym_SEMI] = ACTIONS(1139), + [sym_cmd_identifier] = ACTIONS(1139), + [anon_sym_LF] = ACTIONS(1209), + [anon_sym_def] = ACTIONS(1139), + [anon_sym_export_DASHenv] = ACTIONS(1139), + [anon_sym_extern] = ACTIONS(1139), + [anon_sym_module] = ACTIONS(1139), + [anon_sym_use] = ACTIONS(1139), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LPAREN] = ACTIONS(1139), + [anon_sym_RPAREN] = ACTIONS(1139), + [anon_sym_DOLLAR] = ACTIONS(1139), + [anon_sym_error] = ACTIONS(1139), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_DASH_DASH] = ACTIONS(1139), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_break] = ACTIONS(1139), + [anon_sym_continue] = ACTIONS(1139), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_in] = ACTIONS(1139), + [anon_sym_loop] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1139), + [anon_sym_do] = ACTIONS(1139), + [anon_sym_if] = ACTIONS(1139), + [anon_sym_match] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1139), + [anon_sym_RBRACE] = ACTIONS(1139), + [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_try] = ACTIONS(1139), + [anon_sym_return] = ACTIONS(1139), + [anon_sym_source] = ACTIONS(1139), + [anon_sym_source_DASHenv] = ACTIONS(1139), + [anon_sym_register] = ACTIONS(1139), + [anon_sym_hide] = ACTIONS(1139), + [anon_sym_hide_DASHenv] = ACTIONS(1139), + [anon_sym_overlay] = ACTIONS(1139), + [anon_sym_as] = ACTIONS(1139), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_where] = ACTIONS(1139), + [anon_sym_STAR_STAR] = ACTIONS(1139), + [anon_sym_PLUS_PLUS] = ACTIONS(1139), + [anon_sym_SLASH] = ACTIONS(1139), + [anon_sym_mod] = ACTIONS(1139), + [anon_sym_SLASH_SLASH] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_bit_DASHshl] = ACTIONS(1139), + [anon_sym_bit_DASHshr] = ACTIONS(1139), + [anon_sym_EQ_EQ] = ACTIONS(1139), + [anon_sym_BANG_EQ] = ACTIONS(1139), + [anon_sym_LT2] = ACTIONS(1139), + [anon_sym_LT_EQ] = ACTIONS(1139), + [anon_sym_GT_EQ] = ACTIONS(1139), + [anon_sym_not_DASHin] = ACTIONS(1139), + [anon_sym_starts_DASHwith] = ACTIONS(1139), + [anon_sym_ends_DASHwith] = ACTIONS(1139), + [anon_sym_EQ_TILDE] = ACTIONS(1139), + [anon_sym_BANG_TILDE] = ACTIONS(1139), + [anon_sym_bit_DASHand] = ACTIONS(1139), + [anon_sym_bit_DASHxor] = ACTIONS(1139), + [anon_sym_bit_DASHor] = ACTIONS(1139), + [anon_sym_and] = ACTIONS(1139), + [anon_sym_xor] = ACTIONS(1139), + [anon_sym_or] = ACTIONS(1139), + [anon_sym_not] = ACTIONS(1139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1139), + [anon_sym_DOT_DOT_LT] = ACTIONS(1139), + [anon_sym_null] = ACTIONS(1139), + [anon_sym_true] = ACTIONS(1139), + [anon_sym_false] = ACTIONS(1139), + [aux_sym__val_number_decimal_token1] = ACTIONS(1139), + [aux_sym__val_number_decimal_token2] = ACTIONS(1139), + [anon_sym_DOT2] = ACTIONS(1139), + [aux_sym__val_number_decimal_token3] = ACTIONS(1139), + [aux_sym__val_number_token1] = ACTIONS(1139), + [aux_sym__val_number_token2] = ACTIONS(1139), + [aux_sym__val_number_token3] = ACTIONS(1139), + [aux_sym__val_number_token4] = ACTIONS(1139), + [aux_sym__val_number_token5] = ACTIONS(1139), + [aux_sym__val_number_token6] = ACTIONS(1139), + [anon_sym_0b] = ACTIONS(1139), + [anon_sym_0o] = ACTIONS(1139), + [anon_sym_0x] = ACTIONS(1139), + [sym_val_date] = ACTIONS(1139), + [anon_sym_DQUOTE] = ACTIONS(1139), + [sym__str_single_quotes] = ACTIONS(1139), + [sym__str_back_ticks] = ACTIONS(1139), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1139), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1139), + [anon_sym_CARET] = ACTIONS(1139), + [anon_sym_POUND] = ACTIONS(113), + }, + [375] = { + [sym_comment] = STATE(375), + [anon_sym_export] = ACTIONS(1211), + [anon_sym_alias] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(1211), + [anon_sym_let_DASHenv] = ACTIONS(1211), + [anon_sym_mut] = ACTIONS(1211), + [anon_sym_const] = ACTIONS(1211), + [anon_sym_SEMI] = ACTIONS(1211), + [sym_cmd_identifier] = ACTIONS(1211), + [anon_sym_LF] = ACTIONS(1213), + [anon_sym_def] = ACTIONS(1211), + [anon_sym_export_DASHenv] = ACTIONS(1211), + [anon_sym_extern] = ACTIONS(1211), + [anon_sym_module] = ACTIONS(1211), + [anon_sym_use] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(1211), + [anon_sym_RPAREN] = ACTIONS(1211), + [anon_sym_DOLLAR] = ACTIONS(1211), + [anon_sym_error] = ACTIONS(1211), + [anon_sym_GT] = ACTIONS(1211), + [anon_sym_DASH_DASH] = ACTIONS(1211), + [anon_sym_DASH] = ACTIONS(1211), + [anon_sym_break] = ACTIONS(1211), + [anon_sym_continue] = ACTIONS(1211), + [anon_sym_for] = ACTIONS(1211), + [anon_sym_in] = ACTIONS(1211), + [anon_sym_loop] = ACTIONS(1211), + [anon_sym_while] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(1211), + [anon_sym_if] = ACTIONS(1211), + [anon_sym_match] = ACTIONS(1211), + [anon_sym_LBRACE] = ACTIONS(1211), + [anon_sym_RBRACE] = ACTIONS(1211), + [anon_sym_DOT_DOT] = ACTIONS(1211), + [anon_sym_try] = ACTIONS(1211), + [anon_sym_return] = ACTIONS(1211), + [anon_sym_source] = ACTIONS(1211), + [anon_sym_source_DASHenv] = ACTIONS(1211), + [anon_sym_register] = ACTIONS(1211), + [anon_sym_hide] = ACTIONS(1211), + [anon_sym_hide_DASHenv] = ACTIONS(1211), + [anon_sym_overlay] = ACTIONS(1211), + [anon_sym_as] = ACTIONS(1211), + [anon_sym_STAR] = ACTIONS(1211), + [anon_sym_where] = ACTIONS(1211), + [anon_sym_STAR_STAR] = ACTIONS(1211), + [anon_sym_PLUS_PLUS] = ACTIONS(1211), + [anon_sym_SLASH] = ACTIONS(1211), + [anon_sym_mod] = ACTIONS(1211), + [anon_sym_SLASH_SLASH] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1211), + [anon_sym_bit_DASHshl] = ACTIONS(1211), + [anon_sym_bit_DASHshr] = ACTIONS(1211), + [anon_sym_EQ_EQ] = ACTIONS(1211), + [anon_sym_BANG_EQ] = ACTIONS(1211), + [anon_sym_LT2] = ACTIONS(1211), + [anon_sym_LT_EQ] = ACTIONS(1211), + [anon_sym_GT_EQ] = ACTIONS(1211), + [anon_sym_not_DASHin] = ACTIONS(1211), + [anon_sym_starts_DASHwith] = ACTIONS(1211), + [anon_sym_ends_DASHwith] = ACTIONS(1211), + [anon_sym_EQ_TILDE] = ACTIONS(1211), + [anon_sym_BANG_TILDE] = ACTIONS(1211), + [anon_sym_bit_DASHand] = ACTIONS(1211), + [anon_sym_bit_DASHxor] = ACTIONS(1211), + [anon_sym_bit_DASHor] = ACTIONS(1211), + [anon_sym_and] = ACTIONS(1211), + [anon_sym_xor] = ACTIONS(1211), + [anon_sym_or] = ACTIONS(1211), + [anon_sym_not] = ACTIONS(1211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1211), + [anon_sym_DOT_DOT_LT] = ACTIONS(1211), + [anon_sym_null] = ACTIONS(1211), + [anon_sym_true] = ACTIONS(1211), + [anon_sym_false] = ACTIONS(1211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1211), + [aux_sym__val_number_decimal_token2] = ACTIONS(1211), + [anon_sym_DOT2] = ACTIONS(1211), + [aux_sym__val_number_decimal_token3] = ACTIONS(1211), + [aux_sym__val_number_token1] = ACTIONS(1211), + [aux_sym__val_number_token2] = ACTIONS(1211), + [aux_sym__val_number_token3] = ACTIONS(1211), + [aux_sym__val_number_token4] = ACTIONS(1211), + [aux_sym__val_number_token5] = ACTIONS(1211), + [aux_sym__val_number_token6] = ACTIONS(1211), + [anon_sym_0b] = ACTIONS(1211), + [anon_sym_0o] = ACTIONS(1211), + [anon_sym_0x] = ACTIONS(1211), + [sym_val_date] = ACTIONS(1211), + [anon_sym_DQUOTE] = ACTIONS(1211), + [sym__str_single_quotes] = ACTIONS(1211), + [sym__str_back_ticks] = ACTIONS(1211), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1211), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1211), + [anon_sym_CARET] = ACTIONS(1211), + [anon_sym_POUND] = ACTIONS(113), + }, + [376] = { + [sym_comment] = STATE(376), + [anon_sym_export] = ACTIONS(1215), + [anon_sym_alias] = ACTIONS(1215), + [anon_sym_let] = ACTIONS(1215), + [anon_sym_let_DASHenv] = ACTIONS(1215), + [anon_sym_mut] = ACTIONS(1215), + [anon_sym_const] = ACTIONS(1215), + [anon_sym_SEMI] = ACTIONS(1215), + [sym_cmd_identifier] = ACTIONS(1215), + [anon_sym_LF] = ACTIONS(1217), + [anon_sym_def] = ACTIONS(1215), + [anon_sym_export_DASHenv] = ACTIONS(1215), + [anon_sym_extern] = ACTIONS(1215), + [anon_sym_module] = ACTIONS(1215), + [anon_sym_use] = ACTIONS(1215), + [anon_sym_LBRACK] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1215), + [anon_sym_RPAREN] = ACTIONS(1215), + [anon_sym_DOLLAR] = ACTIONS(1215), + [anon_sym_error] = ACTIONS(1215), + [anon_sym_GT] = ACTIONS(1215), + [anon_sym_DASH_DASH] = ACTIONS(1215), + [anon_sym_DASH] = ACTIONS(1215), + [anon_sym_break] = ACTIONS(1215), + [anon_sym_continue] = ACTIONS(1215), + [anon_sym_for] = ACTIONS(1215), + [anon_sym_in] = ACTIONS(1215), + [anon_sym_loop] = ACTIONS(1215), + [anon_sym_while] = ACTIONS(1215), + [anon_sym_do] = ACTIONS(1215), + [anon_sym_if] = ACTIONS(1215), + [anon_sym_match] = ACTIONS(1215), + [anon_sym_LBRACE] = ACTIONS(1215), + [anon_sym_RBRACE] = ACTIONS(1215), + [anon_sym_DOT_DOT] = ACTIONS(1215), + [anon_sym_try] = ACTIONS(1215), + [anon_sym_return] = ACTIONS(1215), + [anon_sym_source] = ACTIONS(1215), + [anon_sym_source_DASHenv] = ACTIONS(1215), + [anon_sym_register] = ACTIONS(1215), + [anon_sym_hide] = ACTIONS(1215), + [anon_sym_hide_DASHenv] = ACTIONS(1215), + [anon_sym_overlay] = ACTIONS(1215), + [anon_sym_as] = ACTIONS(1215), + [anon_sym_STAR] = ACTIONS(1215), + [anon_sym_where] = ACTIONS(1215), + [anon_sym_STAR_STAR] = ACTIONS(1215), + [anon_sym_PLUS_PLUS] = ACTIONS(1215), + [anon_sym_SLASH] = ACTIONS(1215), + [anon_sym_mod] = ACTIONS(1215), + [anon_sym_SLASH_SLASH] = ACTIONS(1215), + [anon_sym_PLUS] = ACTIONS(1215), + [anon_sym_bit_DASHshl] = ACTIONS(1215), + [anon_sym_bit_DASHshr] = ACTIONS(1215), + [anon_sym_EQ_EQ] = ACTIONS(1215), + [anon_sym_BANG_EQ] = ACTIONS(1215), + [anon_sym_LT2] = ACTIONS(1215), + [anon_sym_LT_EQ] = ACTIONS(1215), + [anon_sym_GT_EQ] = ACTIONS(1215), + [anon_sym_not_DASHin] = ACTIONS(1215), + [anon_sym_starts_DASHwith] = ACTIONS(1215), + [anon_sym_ends_DASHwith] = ACTIONS(1215), + [anon_sym_EQ_TILDE] = ACTIONS(1215), + [anon_sym_BANG_TILDE] = ACTIONS(1215), + [anon_sym_bit_DASHand] = ACTIONS(1215), + [anon_sym_bit_DASHxor] = ACTIONS(1215), + [anon_sym_bit_DASHor] = ACTIONS(1215), + [anon_sym_and] = ACTIONS(1215), + [anon_sym_xor] = ACTIONS(1215), + [anon_sym_or] = ACTIONS(1215), + [anon_sym_not] = ACTIONS(1215), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1215), + [anon_sym_DOT_DOT_LT] = ACTIONS(1215), + [anon_sym_null] = ACTIONS(1215), + [anon_sym_true] = ACTIONS(1215), + [anon_sym_false] = ACTIONS(1215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1215), + [aux_sym__val_number_decimal_token2] = ACTIONS(1215), + [anon_sym_DOT2] = ACTIONS(1215), + [aux_sym__val_number_decimal_token3] = ACTIONS(1215), + [aux_sym__val_number_token1] = ACTIONS(1215), + [aux_sym__val_number_token2] = ACTIONS(1215), + [aux_sym__val_number_token3] = ACTIONS(1215), + [aux_sym__val_number_token4] = ACTIONS(1215), + [aux_sym__val_number_token5] = ACTIONS(1215), + [aux_sym__val_number_token6] = ACTIONS(1215), + [anon_sym_0b] = ACTIONS(1215), + [anon_sym_0o] = ACTIONS(1215), + [anon_sym_0x] = ACTIONS(1215), + [sym_val_date] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1215), + [sym__str_single_quotes] = ACTIONS(1215), + [sym__str_back_ticks] = ACTIONS(1215), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1215), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), + [anon_sym_CARET] = ACTIONS(1215), + [anon_sym_POUND] = ACTIONS(113), + }, + [377] = { + [sym_comment] = STATE(377), + [ts_builtin_sym_end] = ACTIONS(1145), + [anon_sym_export] = ACTIONS(1143), + [anon_sym_alias] = ACTIONS(1143), + [anon_sym_let] = ACTIONS(1143), + [anon_sym_let_DASHenv] = ACTIONS(1143), + [anon_sym_mut] = ACTIONS(1143), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_SEMI] = ACTIONS(1143), + [sym_cmd_identifier] = ACTIONS(1143), + [anon_sym_LF] = ACTIONS(1145), + [anon_sym_def] = ACTIONS(1143), + [anon_sym_export_DASHenv] = ACTIONS(1143), + [anon_sym_extern] = ACTIONS(1143), + [anon_sym_module] = ACTIONS(1143), + [anon_sym_use] = ACTIONS(1143), + [anon_sym_LBRACK] = ACTIONS(1143), + [anon_sym_LPAREN] = ACTIONS(1143), + [anon_sym_DOLLAR] = ACTIONS(1143), + [anon_sym_error] = ACTIONS(1143), + [anon_sym_GT] = ACTIONS(1143), + [anon_sym_DASH_DASH] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_break] = ACTIONS(1143), + [anon_sym_continue] = ACTIONS(1143), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_loop] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(1143), + [anon_sym_do] = ACTIONS(1143), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_match] = ACTIONS(1143), + [anon_sym_LBRACE] = ACTIONS(1143), + [anon_sym_DOT_DOT] = ACTIONS(1143), + [anon_sym_try] = ACTIONS(1143), + [anon_sym_return] = ACTIONS(1143), + [anon_sym_source] = ACTIONS(1143), + [anon_sym_source_DASHenv] = ACTIONS(1143), + [anon_sym_register] = ACTIONS(1143), + [anon_sym_hide] = ACTIONS(1143), + [anon_sym_hide_DASHenv] = ACTIONS(1143), + [anon_sym_overlay] = ACTIONS(1143), + [anon_sym_as] = ACTIONS(1143), + [anon_sym_STAR] = ACTIONS(1143), + [anon_sym_where] = ACTIONS(1143), + [anon_sym_STAR_STAR] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(1143), + [anon_sym_mod] = ACTIONS(1143), + [anon_sym_SLASH_SLASH] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_bit_DASHshl] = ACTIONS(1143), + [anon_sym_bit_DASHshr] = ACTIONS(1143), + [anon_sym_EQ_EQ] = ACTIONS(1143), + [anon_sym_BANG_EQ] = ACTIONS(1143), + [anon_sym_LT2] = ACTIONS(1143), + [anon_sym_LT_EQ] = ACTIONS(1143), + [anon_sym_GT_EQ] = ACTIONS(1143), + [anon_sym_not_DASHin] = ACTIONS(1143), + [anon_sym_starts_DASHwith] = ACTIONS(1143), + [anon_sym_ends_DASHwith] = ACTIONS(1143), + [anon_sym_EQ_TILDE] = ACTIONS(1143), + [anon_sym_BANG_TILDE] = ACTIONS(1143), + [anon_sym_bit_DASHand] = ACTIONS(1143), + [anon_sym_bit_DASHxor] = ACTIONS(1143), + [anon_sym_bit_DASHor] = ACTIONS(1143), + [anon_sym_and] = ACTIONS(1143), + [anon_sym_xor] = ACTIONS(1143), + [anon_sym_or] = ACTIONS(1143), + [anon_sym_not] = ACTIONS(1143), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1143), + [anon_sym_DOT_DOT_LT] = ACTIONS(1143), + [anon_sym_null] = ACTIONS(1143), + [anon_sym_true] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [aux_sym__val_number_decimal_token1] = ACTIONS(1143), + [aux_sym__val_number_decimal_token2] = ACTIONS(1143), + [anon_sym_DOT2] = ACTIONS(1143), + [aux_sym__val_number_decimal_token3] = ACTIONS(1143), + [aux_sym__val_number_token1] = ACTIONS(1143), + [aux_sym__val_number_token2] = ACTIONS(1143), + [aux_sym__val_number_token3] = ACTIONS(1143), + [aux_sym__val_number_token4] = ACTIONS(1143), + [aux_sym__val_number_token5] = ACTIONS(1143), + [aux_sym__val_number_token6] = ACTIONS(1143), + [anon_sym_0b] = ACTIONS(1143), + [anon_sym_0o] = ACTIONS(1143), + [anon_sym_0x] = ACTIONS(1143), + [anon_sym_LBRACK2] = ACTIONS(1219), + [sym_val_date] = ACTIONS(1143), + [anon_sym_DQUOTE] = ACTIONS(1143), + [sym__str_single_quotes] = ACTIONS(1143), + [sym__str_back_ticks] = ACTIONS(1143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1143), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1143), + [anon_sym_CARET] = ACTIONS(1143), + [anon_sym_POUND] = ACTIONS(113), + }, + [378] = { + [sym_comment] = STATE(378), + [ts_builtin_sym_end] = ACTIONS(940), + [anon_sym_export] = ACTIONS(938), + [anon_sym_alias] = ACTIONS(938), + [anon_sym_let] = ACTIONS(938), + [anon_sym_let_DASHenv] = ACTIONS(938), + [anon_sym_mut] = ACTIONS(938), + [anon_sym_const] = ACTIONS(938), + [anon_sym_SEMI] = ACTIONS(938), + [sym_cmd_identifier] = ACTIONS(938), + [anon_sym_LF] = ACTIONS(940), + [anon_sym_def] = ACTIONS(938), + [anon_sym_export_DASHenv] = ACTIONS(938), + [anon_sym_extern] = ACTIONS(938), + [anon_sym_module] = ACTIONS(938), + [anon_sym_use] = ACTIONS(938), + [anon_sym_LBRACK] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(938), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_error] = ACTIONS(938), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_break] = ACTIONS(938), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_for] = ACTIONS(938), + [anon_sym_in] = ACTIONS(938), + [anon_sym_loop] = ACTIONS(938), + [anon_sym_while] = ACTIONS(938), + [anon_sym_do] = ACTIONS(938), + [anon_sym_if] = ACTIONS(938), + [anon_sym_match] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_try] = ACTIONS(938), + [anon_sym_return] = ACTIONS(938), + [anon_sym_source] = ACTIONS(938), + [anon_sym_source_DASHenv] = ACTIONS(938), + [anon_sym_register] = ACTIONS(938), + [anon_sym_hide] = ACTIONS(938), + [anon_sym_hide_DASHenv] = ACTIONS(938), + [anon_sym_overlay] = ACTIONS(938), + [anon_sym_as] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_where] = ACTIONS(938), + [anon_sym_STAR_STAR] = ACTIONS(938), + [anon_sym_PLUS_PLUS] = ACTIONS(938), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(938), + [anon_sym_SLASH_SLASH] = ACTIONS(938), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_bit_DASHshl] = ACTIONS(938), + [anon_sym_bit_DASHshr] = ACTIONS(938), + [anon_sym_EQ_EQ] = ACTIONS(938), + [anon_sym_BANG_EQ] = ACTIONS(938), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(938), + [anon_sym_GT_EQ] = ACTIONS(938), + [anon_sym_not_DASHin] = ACTIONS(938), + [anon_sym_starts_DASHwith] = ACTIONS(938), + [anon_sym_ends_DASHwith] = ACTIONS(938), + [anon_sym_EQ_TILDE] = ACTIONS(938), + [anon_sym_BANG_TILDE] = ACTIONS(938), + [anon_sym_bit_DASHand] = ACTIONS(938), + [anon_sym_bit_DASHxor] = ACTIONS(938), + [anon_sym_bit_DASHor] = ACTIONS(938), + [anon_sym_and] = ACTIONS(938), + [anon_sym_xor] = ACTIONS(938), + [anon_sym_or] = ACTIONS(938), + [anon_sym_not] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ] = ACTIONS(938), + [anon_sym_DOT_DOT_LT] = ACTIONS(938), + [anon_sym_null] = ACTIONS(938), + [anon_sym_true] = ACTIONS(938), + [anon_sym_false] = ACTIONS(938), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(938), + [anon_sym_DOT2] = ACTIONS(938), + [aux_sym__val_number_decimal_token3] = ACTIONS(938), + [aux_sym__val_number_token1] = ACTIONS(938), + [aux_sym__val_number_token2] = ACTIONS(938), + [aux_sym__val_number_token3] = ACTIONS(938), + [aux_sym__val_number_token4] = ACTIONS(938), + [aux_sym__val_number_token5] = ACTIONS(938), + [aux_sym__val_number_token6] = ACTIONS(938), + [anon_sym_0b] = ACTIONS(938), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym__str_single_quotes] = ACTIONS(938), + [sym__str_back_ticks] = ACTIONS(938), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(938), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(938), + [anon_sym_CARET] = ACTIONS(938), + [aux_sym_unquoted_token5] = ACTIONS(1000), + [anon_sym_POUND] = ACTIONS(113), + }, + [379] = { + [sym_comment] = STATE(379), + [anon_sym_export] = ACTIONS(1041), + [anon_sym_alias] = ACTIONS(1041), + [anon_sym_EQ] = ACTIONS(1041), + [anon_sym_let] = ACTIONS(1041), + [anon_sym_let_DASHenv] = ACTIONS(1041), + [anon_sym_mut] = ACTIONS(1041), + [anon_sym_const] = ACTIONS(1041), + [anon_sym_PLUS_EQ] = ACTIONS(1041), + [anon_sym_DASH_EQ] = ACTIONS(1041), + [anon_sym_STAR_EQ] = ACTIONS(1041), + [anon_sym_SLASH_EQ] = ACTIONS(1041), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1041), + [anon_sym_SEMI] = ACTIONS(1041), + [sym_cmd_identifier] = ACTIONS(1041), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_def] = ACTIONS(1041), + [anon_sym_export_DASHenv] = ACTIONS(1041), + [anon_sym_extern] = ACTIONS(1041), + [anon_sym_module] = ACTIONS(1041), + [anon_sym_use] = ACTIONS(1041), + [anon_sym_COLON] = ACTIONS(1041), + [anon_sym_COMMA] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1041), + [anon_sym_PIPE] = ACTIONS(1041), + [anon_sym_DOLLAR] = ACTIONS(1041), + [anon_sym_error] = ACTIONS(1041), + [anon_sym_list] = ACTIONS(1041), + [anon_sym_GT] = ACTIONS(1041), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_break] = ACTIONS(1041), + [anon_sym_continue] = ACTIONS(1041), + [anon_sym_for] = ACTIONS(1041), + [anon_sym_in] = ACTIONS(1041), + [anon_sym_loop] = ACTIONS(1041), + [anon_sym_make] = ACTIONS(1041), + [anon_sym_while] = ACTIONS(1041), + [anon_sym_do] = ACTIONS(1041), + [anon_sym_if] = ACTIONS(1041), + [anon_sym_else] = ACTIONS(1041), + [anon_sym_match] = ACTIONS(1041), + [anon_sym_RBRACE] = ACTIONS(1041), + [anon_sym_try] = ACTIONS(1041), + [anon_sym_catch] = ACTIONS(1041), + [anon_sym_return] = ACTIONS(1041), + [anon_sym_source] = ACTIONS(1041), + [anon_sym_source_DASHenv] = ACTIONS(1041), + [anon_sym_register] = ACTIONS(1041), + [anon_sym_hide] = ACTIONS(1041), + [anon_sym_hide_DASHenv] = ACTIONS(1041), + [anon_sym_overlay] = ACTIONS(1041), + [anon_sym_new] = ACTIONS(1041), + [anon_sym_as] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_STAR_STAR] = ACTIONS(1041), + [anon_sym_PLUS_PLUS] = ACTIONS(1041), + [anon_sym_SLASH] = ACTIONS(1041), + [anon_sym_mod] = ACTIONS(1041), + [anon_sym_SLASH_SLASH] = ACTIONS(1041), + [anon_sym_PLUS] = ACTIONS(1041), + [anon_sym_bit_DASHshl] = ACTIONS(1041), + [anon_sym_bit_DASHshr] = ACTIONS(1041), + [anon_sym_EQ_EQ] = ACTIONS(1041), + [anon_sym_BANG_EQ] = ACTIONS(1041), + [anon_sym_LT2] = ACTIONS(1041), + [anon_sym_LT_EQ] = ACTIONS(1041), + [anon_sym_GT_EQ] = ACTIONS(1041), + [anon_sym_not_DASHin] = ACTIONS(1041), + [anon_sym_starts_DASHwith] = ACTIONS(1041), + [anon_sym_ends_DASHwith] = ACTIONS(1041), + [anon_sym_EQ_TILDE] = ACTIONS(1041), + [anon_sym_BANG_TILDE] = ACTIONS(1041), + [anon_sym_bit_DASHand] = ACTIONS(1041), + [anon_sym_bit_DASHxor] = ACTIONS(1041), + [anon_sym_bit_DASHor] = ACTIONS(1041), + [anon_sym_and] = ACTIONS(1041), + [anon_sym_xor] = ACTIONS(1041), + [anon_sym_or] = ACTIONS(1041), + [anon_sym_DOT_DOT2] = ACTIONS(1041), + [anon_sym_DOT] = ACTIONS(1041), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1043), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1043), + [aux_sym__val_number_decimal_token1] = ACTIONS(1041), + [aux_sym__val_number_decimal_token2] = ACTIONS(1041), + [anon_sym_DOT2] = ACTIONS(1041), + [aux_sym__val_number_decimal_token3] = ACTIONS(1041), + [aux_sym__val_number_token1] = ACTIONS(1041), + [aux_sym__val_number_token2] = ACTIONS(1041), + [aux_sym__val_number_token3] = ACTIONS(1041), + [aux_sym__val_number_token4] = ACTIONS(1041), + [aux_sym__val_number_token5] = ACTIONS(1041), + [aux_sym__val_number_token6] = ACTIONS(1041), + [anon_sym_DQUOTE] = ACTIONS(1041), + [sym__str_single_quotes] = ACTIONS(1041), + [sym__str_back_ticks] = ACTIONS(1041), + [aux_sym__record_key_token2] = ACTIONS(1041), + [anon_sym_POUND] = ACTIONS(113), + }, + [380] = { + [sym_comment] = STATE(380), + [anon_sym_export] = ACTIONS(938), + [anon_sym_alias] = ACTIONS(938), + [anon_sym_let] = ACTIONS(938), + [anon_sym_let_DASHenv] = ACTIONS(938), + [anon_sym_mut] = ACTIONS(938), + [anon_sym_const] = ACTIONS(938), + [anon_sym_SEMI] = ACTIONS(938), + [sym_cmd_identifier] = ACTIONS(938), + [anon_sym_LF] = ACTIONS(940), + [anon_sym_def] = ACTIONS(938), + [anon_sym_export_DASHenv] = ACTIONS(938), + [anon_sym_extern] = ACTIONS(938), + [anon_sym_module] = ACTIONS(938), + [anon_sym_use] = ACTIONS(938), + [anon_sym_LBRACK] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(938), + [anon_sym_RPAREN] = ACTIONS(938), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_error] = ACTIONS(938), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_break] = ACTIONS(938), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_for] = ACTIONS(938), + [anon_sym_in] = ACTIONS(938), + [anon_sym_loop] = ACTIONS(938), + [anon_sym_while] = ACTIONS(938), + [anon_sym_do] = ACTIONS(938), + [anon_sym_if] = ACTIONS(938), + [anon_sym_match] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_RBRACE] = ACTIONS(938), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_try] = ACTIONS(938), + [anon_sym_return] = ACTIONS(938), + [anon_sym_source] = ACTIONS(938), + [anon_sym_source_DASHenv] = ACTIONS(938), + [anon_sym_register] = ACTIONS(938), + [anon_sym_hide] = ACTIONS(938), + [anon_sym_hide_DASHenv] = ACTIONS(938), + [anon_sym_overlay] = ACTIONS(938), + [anon_sym_as] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_where] = ACTIONS(938), + [anon_sym_STAR_STAR] = ACTIONS(938), + [anon_sym_PLUS_PLUS] = ACTIONS(938), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(938), + [anon_sym_SLASH_SLASH] = ACTIONS(938), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_bit_DASHshl] = ACTIONS(938), + [anon_sym_bit_DASHshr] = ACTIONS(938), + [anon_sym_EQ_EQ] = ACTIONS(938), + [anon_sym_BANG_EQ] = ACTIONS(938), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(938), + [anon_sym_GT_EQ] = ACTIONS(938), + [anon_sym_not_DASHin] = ACTIONS(938), + [anon_sym_starts_DASHwith] = ACTIONS(938), + [anon_sym_ends_DASHwith] = ACTIONS(938), + [anon_sym_EQ_TILDE] = ACTIONS(938), + [anon_sym_BANG_TILDE] = ACTIONS(938), + [anon_sym_bit_DASHand] = ACTIONS(938), + [anon_sym_bit_DASHxor] = ACTIONS(938), + [anon_sym_bit_DASHor] = ACTIONS(938), + [anon_sym_and] = ACTIONS(938), + [anon_sym_xor] = ACTIONS(938), + [anon_sym_or] = ACTIONS(938), + [anon_sym_not] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ] = ACTIONS(938), + [anon_sym_DOT_DOT_LT] = ACTIONS(938), + [anon_sym_null] = ACTIONS(938), + [anon_sym_true] = ACTIONS(938), + [anon_sym_false] = ACTIONS(938), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(938), + [anon_sym_DOT2] = ACTIONS(938), + [aux_sym__val_number_decimal_token3] = ACTIONS(938), + [aux_sym__val_number_token1] = ACTIONS(938), + [aux_sym__val_number_token2] = ACTIONS(938), + [aux_sym__val_number_token3] = ACTIONS(938), + [aux_sym__val_number_token4] = ACTIONS(938), + [aux_sym__val_number_token5] = ACTIONS(938), + [aux_sym__val_number_token6] = ACTIONS(938), + [anon_sym_0b] = ACTIONS(938), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym__str_single_quotes] = ACTIONS(938), + [sym__str_back_ticks] = ACTIONS(938), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(938), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(938), + [anon_sym_CARET] = ACTIONS(938), + [anon_sym_POUND] = ACTIONS(113), + }, + [381] = { + [sym_comment] = STATE(381), + [anon_sym_export] = ACTIONS(1221), + [anon_sym_alias] = ACTIONS(1221), + [anon_sym_let] = ACTIONS(1221), + [anon_sym_let_DASHenv] = ACTIONS(1221), + [anon_sym_mut] = ACTIONS(1221), + [anon_sym_const] = ACTIONS(1221), + [anon_sym_SEMI] = ACTIONS(1221), + [sym_cmd_identifier] = ACTIONS(1221), + [anon_sym_LF] = ACTIONS(1223), + [anon_sym_def] = ACTIONS(1221), + [anon_sym_export_DASHenv] = ACTIONS(1221), + [anon_sym_extern] = ACTIONS(1221), + [anon_sym_module] = ACTIONS(1221), + [anon_sym_use] = ACTIONS(1221), + [anon_sym_LBRACK] = ACTIONS(1221), + [anon_sym_LPAREN] = ACTIONS(1221), + [anon_sym_RPAREN] = ACTIONS(1221), + [anon_sym_DOLLAR] = ACTIONS(1221), + [anon_sym_error] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_DASH_DASH] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_break] = ACTIONS(1221), + [anon_sym_continue] = ACTIONS(1221), + [anon_sym_for] = ACTIONS(1221), + [anon_sym_in] = ACTIONS(1221), + [anon_sym_loop] = ACTIONS(1221), + [anon_sym_while] = ACTIONS(1221), + [anon_sym_do] = ACTIONS(1221), + [anon_sym_if] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1221), + [anon_sym_RBRACE] = ACTIONS(1221), + [anon_sym_DOT_DOT] = ACTIONS(1221), + [anon_sym_try] = ACTIONS(1221), + [anon_sym_return] = ACTIONS(1221), + [anon_sym_source] = ACTIONS(1221), + [anon_sym_source_DASHenv] = ACTIONS(1221), + [anon_sym_register] = ACTIONS(1221), + [anon_sym_hide] = ACTIONS(1221), + [anon_sym_hide_DASHenv] = ACTIONS(1221), + [anon_sym_overlay] = ACTIONS(1221), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(1221), + [anon_sym_STAR_STAR] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_mod] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_bit_DASHshl] = ACTIONS(1221), + [anon_sym_bit_DASHshr] = ACTIONS(1221), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT2] = ACTIONS(1221), + [anon_sym_LT_EQ] = ACTIONS(1221), + [anon_sym_GT_EQ] = ACTIONS(1221), + [anon_sym_not_DASHin] = ACTIONS(1221), + [anon_sym_starts_DASHwith] = ACTIONS(1221), + [anon_sym_ends_DASHwith] = ACTIONS(1221), + [anon_sym_EQ_TILDE] = ACTIONS(1221), + [anon_sym_BANG_TILDE] = ACTIONS(1221), + [anon_sym_bit_DASHand] = ACTIONS(1221), + [anon_sym_bit_DASHxor] = ACTIONS(1221), + [anon_sym_bit_DASHor] = ACTIONS(1221), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_xor] = ACTIONS(1221), + [anon_sym_or] = ACTIONS(1221), + [anon_sym_not] = ACTIONS(1221), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1221), + [anon_sym_DOT_DOT_LT] = ACTIONS(1221), + [anon_sym_null] = ACTIONS(1221), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [aux_sym__val_number_decimal_token1] = ACTIONS(1221), + [aux_sym__val_number_decimal_token2] = ACTIONS(1221), + [anon_sym_DOT2] = ACTIONS(1221), + [aux_sym__val_number_decimal_token3] = ACTIONS(1221), + [aux_sym__val_number_token1] = ACTIONS(1221), + [aux_sym__val_number_token2] = ACTIONS(1221), + [aux_sym__val_number_token3] = ACTIONS(1221), + [aux_sym__val_number_token4] = ACTIONS(1221), + [aux_sym__val_number_token5] = ACTIONS(1221), + [aux_sym__val_number_token6] = ACTIONS(1221), + [anon_sym_0b] = ACTIONS(1221), + [anon_sym_0o] = ACTIONS(1221), + [anon_sym_0x] = ACTIONS(1221), + [sym_val_date] = ACTIONS(1221), + [anon_sym_DQUOTE] = ACTIONS(1221), + [sym__str_single_quotes] = ACTIONS(1221), + [sym__str_back_ticks] = ACTIONS(1221), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1221), + [anon_sym_CARET] = ACTIONS(1221), + [anon_sym_POUND] = ACTIONS(113), + }, + [382] = { + [sym_comment] = STATE(382), + [anon_sym_export] = ACTIONS(1089), + [anon_sym_alias] = ACTIONS(1089), + [anon_sym_let] = ACTIONS(1089), + [anon_sym_let_DASHenv] = ACTIONS(1089), + [anon_sym_mut] = ACTIONS(1089), + [anon_sym_const] = ACTIONS(1089), + [anon_sym_SEMI] = ACTIONS(1089), + [sym_cmd_identifier] = ACTIONS(1089), + [anon_sym_LF] = ACTIONS(1091), + [anon_sym_def] = ACTIONS(1089), + [anon_sym_export_DASHenv] = ACTIONS(1089), + [anon_sym_extern] = ACTIONS(1089), + [anon_sym_module] = ACTIONS(1089), + [anon_sym_use] = ACTIONS(1089), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1089), + [anon_sym_RPAREN] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1089), + [anon_sym_error] = ACTIONS(1089), + [anon_sym_GT] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_DASH] = ACTIONS(1089), + [anon_sym_break] = ACTIONS(1089), + [anon_sym_continue] = ACTIONS(1089), + [anon_sym_for] = ACTIONS(1089), + [anon_sym_in] = ACTIONS(1089), + [anon_sym_loop] = ACTIONS(1089), + [anon_sym_while] = ACTIONS(1089), + [anon_sym_do] = ACTIONS(1089), + [anon_sym_if] = ACTIONS(1089), + [anon_sym_match] = ACTIONS(1089), + [anon_sym_LBRACE] = ACTIONS(1089), + [anon_sym_RBRACE] = ACTIONS(1089), + [anon_sym_DOT_DOT] = ACTIONS(1089), + [anon_sym_try] = ACTIONS(1089), + [anon_sym_return] = ACTIONS(1089), + [anon_sym_source] = ACTIONS(1089), + [anon_sym_source_DASHenv] = ACTIONS(1089), + [anon_sym_register] = ACTIONS(1089), + [anon_sym_hide] = ACTIONS(1089), + [anon_sym_hide_DASHenv] = ACTIONS(1089), + [anon_sym_overlay] = ACTIONS(1089), + [anon_sym_as] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_where] = ACTIONS(1089), + [anon_sym_STAR_STAR] = ACTIONS(1089), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_SLASH] = ACTIONS(1089), + [anon_sym_mod] = ACTIONS(1089), + [anon_sym_SLASH_SLASH] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1089), + [anon_sym_bit_DASHshl] = ACTIONS(1089), + [anon_sym_bit_DASHshr] = ACTIONS(1089), + [anon_sym_EQ_EQ] = ACTIONS(1089), + [anon_sym_BANG_EQ] = ACTIONS(1089), + [anon_sym_LT2] = ACTIONS(1089), + [anon_sym_LT_EQ] = ACTIONS(1089), + [anon_sym_GT_EQ] = ACTIONS(1089), + [anon_sym_not_DASHin] = ACTIONS(1089), + [anon_sym_starts_DASHwith] = ACTIONS(1089), + [anon_sym_ends_DASHwith] = ACTIONS(1089), + [anon_sym_EQ_TILDE] = ACTIONS(1089), + [anon_sym_BANG_TILDE] = ACTIONS(1089), + [anon_sym_bit_DASHand] = ACTIONS(1089), + [anon_sym_bit_DASHxor] = ACTIONS(1089), + [anon_sym_bit_DASHor] = ACTIONS(1089), + [anon_sym_and] = ACTIONS(1089), + [anon_sym_xor] = ACTIONS(1089), + [anon_sym_or] = ACTIONS(1089), + [anon_sym_not] = ACTIONS(1089), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_DOT_DOT_LT] = ACTIONS(1089), + [anon_sym_null] = ACTIONS(1089), + [anon_sym_true] = ACTIONS(1089), + [anon_sym_false] = ACTIONS(1089), + [aux_sym__val_number_decimal_token1] = ACTIONS(1089), + [aux_sym__val_number_decimal_token2] = ACTIONS(1089), + [anon_sym_DOT2] = ACTIONS(1089), + [aux_sym__val_number_decimal_token3] = ACTIONS(1089), + [aux_sym__val_number_token1] = ACTIONS(1089), + [aux_sym__val_number_token2] = ACTIONS(1089), + [aux_sym__val_number_token3] = ACTIONS(1089), + [aux_sym__val_number_token4] = ACTIONS(1089), + [aux_sym__val_number_token5] = ACTIONS(1089), + [aux_sym__val_number_token6] = ACTIONS(1089), + [anon_sym_0b] = ACTIONS(1089), + [anon_sym_0o] = ACTIONS(1089), + [anon_sym_0x] = ACTIONS(1089), + [sym_val_date] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1089), + [sym__str_single_quotes] = ACTIONS(1089), + [sym__str_back_ticks] = ACTIONS(1089), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1089), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1089), + [anon_sym_CARET] = ACTIONS(1089), + [anon_sym_POUND] = ACTIONS(113), + }, + [383] = { + [sym_comment] = STATE(383), + [anon_sym_export] = ACTIONS(1225), + [anon_sym_alias] = ACTIONS(1225), + [anon_sym_let] = ACTIONS(1225), + [anon_sym_let_DASHenv] = ACTIONS(1225), + [anon_sym_mut] = ACTIONS(1225), + [anon_sym_const] = ACTIONS(1225), + [anon_sym_SEMI] = ACTIONS(1225), + [sym_cmd_identifier] = ACTIONS(1225), + [anon_sym_LF] = ACTIONS(1227), + [anon_sym_def] = ACTIONS(1225), + [anon_sym_export_DASHenv] = ACTIONS(1225), + [anon_sym_extern] = ACTIONS(1225), + [anon_sym_module] = ACTIONS(1225), + [anon_sym_use] = ACTIONS(1225), + [anon_sym_LBRACK] = ACTIONS(1225), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_RPAREN] = ACTIONS(1225), + [anon_sym_DOLLAR] = ACTIONS(1225), + [anon_sym_error] = ACTIONS(1225), + [anon_sym_GT] = ACTIONS(1225), + [anon_sym_DASH_DASH] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_break] = ACTIONS(1225), + [anon_sym_continue] = ACTIONS(1225), + [anon_sym_for] = ACTIONS(1225), + [anon_sym_in] = ACTIONS(1225), + [anon_sym_loop] = ACTIONS(1225), + [anon_sym_while] = ACTIONS(1225), + [anon_sym_do] = ACTIONS(1225), + [anon_sym_if] = ACTIONS(1225), + [anon_sym_match] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_RBRACE] = ACTIONS(1225), + [anon_sym_DOT_DOT] = ACTIONS(1225), + [anon_sym_try] = ACTIONS(1225), + [anon_sym_return] = ACTIONS(1225), + [anon_sym_source] = ACTIONS(1225), + [anon_sym_source_DASHenv] = ACTIONS(1225), + [anon_sym_register] = ACTIONS(1225), + [anon_sym_hide] = ACTIONS(1225), + [anon_sym_hide_DASHenv] = ACTIONS(1225), + [anon_sym_overlay] = ACTIONS(1225), + [anon_sym_as] = ACTIONS(1225), + [anon_sym_STAR] = ACTIONS(1225), + [anon_sym_where] = ACTIONS(1225), + [anon_sym_STAR_STAR] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(1225), + [anon_sym_mod] = ACTIONS(1225), + [anon_sym_SLASH_SLASH] = ACTIONS(1225), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_bit_DASHshl] = ACTIONS(1225), + [anon_sym_bit_DASHshr] = ACTIONS(1225), + [anon_sym_EQ_EQ] = ACTIONS(1225), + [anon_sym_BANG_EQ] = ACTIONS(1225), + [anon_sym_LT2] = ACTIONS(1225), + [anon_sym_LT_EQ] = ACTIONS(1225), + [anon_sym_GT_EQ] = ACTIONS(1225), + [anon_sym_not_DASHin] = ACTIONS(1225), + [anon_sym_starts_DASHwith] = ACTIONS(1225), + [anon_sym_ends_DASHwith] = ACTIONS(1225), + [anon_sym_EQ_TILDE] = ACTIONS(1225), + [anon_sym_BANG_TILDE] = ACTIONS(1225), + [anon_sym_bit_DASHand] = ACTIONS(1225), + [anon_sym_bit_DASHxor] = ACTIONS(1225), + [anon_sym_bit_DASHor] = ACTIONS(1225), + [anon_sym_and] = ACTIONS(1225), + [anon_sym_xor] = ACTIONS(1225), + [anon_sym_or] = ACTIONS(1225), + [anon_sym_not] = ACTIONS(1225), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1225), + [anon_sym_DOT_DOT_LT] = ACTIONS(1225), + [anon_sym_null] = ACTIONS(1225), + [anon_sym_true] = ACTIONS(1225), + [anon_sym_false] = ACTIONS(1225), + [aux_sym__val_number_decimal_token1] = ACTIONS(1225), + [aux_sym__val_number_decimal_token2] = ACTIONS(1225), + [anon_sym_DOT2] = ACTIONS(1225), + [aux_sym__val_number_decimal_token3] = ACTIONS(1225), + [aux_sym__val_number_token1] = ACTIONS(1225), + [aux_sym__val_number_token2] = ACTIONS(1225), + [aux_sym__val_number_token3] = ACTIONS(1225), + [aux_sym__val_number_token4] = ACTIONS(1225), + [aux_sym__val_number_token5] = ACTIONS(1225), + [aux_sym__val_number_token6] = ACTIONS(1225), + [anon_sym_0b] = ACTIONS(1225), + [anon_sym_0o] = ACTIONS(1225), + [anon_sym_0x] = ACTIONS(1225), + [sym_val_date] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1225), + [sym__str_single_quotes] = ACTIONS(1225), + [sym__str_back_ticks] = ACTIONS(1225), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1225), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1225), + [anon_sym_CARET] = ACTIONS(1225), + [anon_sym_POUND] = ACTIONS(113), + }, + [384] = { + [sym_comment] = STATE(384), + [anon_sym_export] = ACTIONS(1229), + [anon_sym_alias] = ACTIONS(1229), + [anon_sym_let] = ACTIONS(1229), + [anon_sym_let_DASHenv] = ACTIONS(1229), + [anon_sym_mut] = ACTIONS(1229), + [anon_sym_const] = ACTIONS(1229), + [anon_sym_SEMI] = ACTIONS(1229), + [sym_cmd_identifier] = ACTIONS(1229), + [anon_sym_LF] = ACTIONS(1231), + [anon_sym_def] = ACTIONS(1229), + [anon_sym_export_DASHenv] = ACTIONS(1229), + [anon_sym_extern] = ACTIONS(1229), + [anon_sym_module] = ACTIONS(1229), + [anon_sym_use] = ACTIONS(1229), + [anon_sym_LBRACK] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_RPAREN] = ACTIONS(1229), + [anon_sym_DOLLAR] = ACTIONS(1229), + [anon_sym_error] = ACTIONS(1229), + [anon_sym_GT] = ACTIONS(1229), + [anon_sym_DASH_DASH] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_break] = ACTIONS(1229), + [anon_sym_continue] = ACTIONS(1229), + [anon_sym_for] = ACTIONS(1229), + [anon_sym_in] = ACTIONS(1229), + [anon_sym_loop] = ACTIONS(1229), + [anon_sym_while] = ACTIONS(1229), + [anon_sym_do] = ACTIONS(1229), + [anon_sym_if] = ACTIONS(1229), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1229), + [anon_sym_RBRACE] = ACTIONS(1229), + [anon_sym_DOT_DOT] = ACTIONS(1229), + [anon_sym_try] = ACTIONS(1229), + [anon_sym_return] = ACTIONS(1229), + [anon_sym_source] = ACTIONS(1229), + [anon_sym_source_DASHenv] = ACTIONS(1229), + [anon_sym_register] = ACTIONS(1229), + [anon_sym_hide] = ACTIONS(1229), + [anon_sym_hide_DASHenv] = ACTIONS(1229), + [anon_sym_overlay] = ACTIONS(1229), + [anon_sym_as] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1229), + [anon_sym_where] = ACTIONS(1229), + [anon_sym_STAR_STAR] = ACTIONS(1229), + [anon_sym_PLUS_PLUS] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1229), + [anon_sym_mod] = ACTIONS(1229), + [anon_sym_SLASH_SLASH] = ACTIONS(1229), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_bit_DASHshl] = ACTIONS(1229), + [anon_sym_bit_DASHshr] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1229), + [anon_sym_LT2] = ACTIONS(1229), + [anon_sym_LT_EQ] = ACTIONS(1229), + [anon_sym_GT_EQ] = ACTIONS(1229), + [anon_sym_not_DASHin] = ACTIONS(1229), + [anon_sym_starts_DASHwith] = ACTIONS(1229), + [anon_sym_ends_DASHwith] = ACTIONS(1229), + [anon_sym_EQ_TILDE] = ACTIONS(1229), + [anon_sym_BANG_TILDE] = ACTIONS(1229), + [anon_sym_bit_DASHand] = ACTIONS(1229), + [anon_sym_bit_DASHxor] = ACTIONS(1229), + [anon_sym_bit_DASHor] = ACTIONS(1229), + [anon_sym_and] = ACTIONS(1229), + [anon_sym_xor] = ACTIONS(1229), + [anon_sym_or] = ACTIONS(1229), + [anon_sym_not] = ACTIONS(1229), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1229), + [anon_sym_DOT_DOT_LT] = ACTIONS(1229), + [anon_sym_null] = ACTIONS(1229), + [anon_sym_true] = ACTIONS(1229), + [anon_sym_false] = ACTIONS(1229), + [aux_sym__val_number_decimal_token1] = ACTIONS(1229), + [aux_sym__val_number_decimal_token2] = ACTIONS(1229), + [anon_sym_DOT2] = ACTIONS(1229), + [aux_sym__val_number_decimal_token3] = ACTIONS(1229), + [aux_sym__val_number_token1] = ACTIONS(1229), + [aux_sym__val_number_token2] = ACTIONS(1229), + [aux_sym__val_number_token3] = ACTIONS(1229), + [aux_sym__val_number_token4] = ACTIONS(1229), + [aux_sym__val_number_token5] = ACTIONS(1229), + [aux_sym__val_number_token6] = ACTIONS(1229), + [anon_sym_0b] = ACTIONS(1229), + [anon_sym_0o] = ACTIONS(1229), + [anon_sym_0x] = ACTIONS(1229), + [sym_val_date] = ACTIONS(1229), + [anon_sym_DQUOTE] = ACTIONS(1229), + [sym__str_single_quotes] = ACTIONS(1229), + [sym__str_back_ticks] = ACTIONS(1229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_POUND] = ACTIONS(113), + }, + [385] = { + [sym_comment] = STATE(385), + [anon_sym_export] = ACTIONS(1233), + [anon_sym_alias] = ACTIONS(1233), + [anon_sym_let] = ACTIONS(1233), + [anon_sym_let_DASHenv] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1233), + [sym_cmd_identifier] = ACTIONS(1233), + [anon_sym_LF] = ACTIONS(1235), + [anon_sym_def] = ACTIONS(1233), + [anon_sym_export_DASHenv] = ACTIONS(1233), + [anon_sym_extern] = ACTIONS(1233), + [anon_sym_module] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(1233), + [anon_sym_RPAREN] = ACTIONS(1233), + [anon_sym_DOLLAR] = ACTIONS(1233), + [anon_sym_error] = ACTIONS(1233), + [anon_sym_GT] = ACTIONS(1233), + [anon_sym_DASH_DASH] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_break] = ACTIONS(1233), + [anon_sym_continue] = ACTIONS(1233), + [anon_sym_for] = ACTIONS(1233), + [anon_sym_in] = ACTIONS(1233), + [anon_sym_loop] = ACTIONS(1233), + [anon_sym_while] = ACTIONS(1233), + [anon_sym_do] = ACTIONS(1233), + [anon_sym_if] = ACTIONS(1233), + [anon_sym_match] = ACTIONS(1233), + [anon_sym_LBRACE] = ACTIONS(1233), + [anon_sym_RBRACE] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1233), + [anon_sym_try] = ACTIONS(1233), + [anon_sym_return] = ACTIONS(1233), + [anon_sym_source] = ACTIONS(1233), + [anon_sym_source_DASHenv] = ACTIONS(1233), + [anon_sym_register] = ACTIONS(1233), + [anon_sym_hide] = ACTIONS(1233), + [anon_sym_hide_DASHenv] = ACTIONS(1233), + [anon_sym_overlay] = ACTIONS(1233), + [anon_sym_as] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1233), + [anon_sym_where] = ACTIONS(1233), + [anon_sym_STAR_STAR] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1233), + [anon_sym_SLASH] = ACTIONS(1233), + [anon_sym_mod] = ACTIONS(1233), + [anon_sym_SLASH_SLASH] = ACTIONS(1233), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_bit_DASHshl] = ACTIONS(1233), + [anon_sym_bit_DASHshr] = ACTIONS(1233), + [anon_sym_EQ_EQ] = ACTIONS(1233), + [anon_sym_BANG_EQ] = ACTIONS(1233), + [anon_sym_LT2] = ACTIONS(1233), + [anon_sym_LT_EQ] = ACTIONS(1233), + [anon_sym_GT_EQ] = ACTIONS(1233), + [anon_sym_not_DASHin] = ACTIONS(1233), + [anon_sym_starts_DASHwith] = ACTIONS(1233), + [anon_sym_ends_DASHwith] = ACTIONS(1233), + [anon_sym_EQ_TILDE] = ACTIONS(1233), + [anon_sym_BANG_TILDE] = ACTIONS(1233), + [anon_sym_bit_DASHand] = ACTIONS(1233), + [anon_sym_bit_DASHxor] = ACTIONS(1233), + [anon_sym_bit_DASHor] = ACTIONS(1233), + [anon_sym_and] = ACTIONS(1233), + [anon_sym_xor] = ACTIONS(1233), + [anon_sym_or] = ACTIONS(1233), + [anon_sym_not] = ACTIONS(1233), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1233), + [anon_sym_DOT_DOT_LT] = ACTIONS(1233), + [anon_sym_null] = ACTIONS(1233), + [anon_sym_true] = ACTIONS(1233), + [anon_sym_false] = ACTIONS(1233), + [aux_sym__val_number_decimal_token1] = ACTIONS(1233), + [aux_sym__val_number_decimal_token2] = ACTIONS(1233), + [anon_sym_DOT2] = ACTIONS(1233), + [aux_sym__val_number_decimal_token3] = ACTIONS(1233), + [aux_sym__val_number_token1] = ACTIONS(1233), + [aux_sym__val_number_token2] = ACTIONS(1233), + [aux_sym__val_number_token3] = ACTIONS(1233), + [aux_sym__val_number_token4] = ACTIONS(1233), + [aux_sym__val_number_token5] = ACTIONS(1233), + [aux_sym__val_number_token6] = ACTIONS(1233), + [anon_sym_0b] = ACTIONS(1233), + [anon_sym_0o] = ACTIONS(1233), + [anon_sym_0x] = ACTIONS(1233), + [sym_val_date] = ACTIONS(1233), + [anon_sym_DQUOTE] = ACTIONS(1233), + [sym__str_single_quotes] = ACTIONS(1233), + [sym__str_back_ticks] = ACTIONS(1233), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1233), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1233), + [anon_sym_CARET] = ACTIONS(1233), + [anon_sym_POUND] = ACTIONS(113), + }, + [386] = { + [sym_comment] = STATE(386), + [anon_sym_export] = ACTIONS(1093), + [anon_sym_alias] = ACTIONS(1093), + [anon_sym_let] = ACTIONS(1093), + [anon_sym_let_DASHenv] = ACTIONS(1093), + [anon_sym_mut] = ACTIONS(1093), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_SEMI] = ACTIONS(1093), + [sym_cmd_identifier] = ACTIONS(1093), + [anon_sym_LF] = ACTIONS(1095), + [anon_sym_def] = ACTIONS(1093), + [anon_sym_export_DASHenv] = ACTIONS(1093), + [anon_sym_extern] = ACTIONS(1093), + [anon_sym_module] = ACTIONS(1093), + [anon_sym_use] = ACTIONS(1093), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_LPAREN] = ACTIONS(1093), + [anon_sym_RPAREN] = ACTIONS(1093), + [anon_sym_DOLLAR] = ACTIONS(1093), + [anon_sym_error] = ACTIONS(1093), + [anon_sym_GT] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_break] = ACTIONS(1093), + [anon_sym_continue] = ACTIONS(1093), + [anon_sym_for] = ACTIONS(1093), + [anon_sym_in] = ACTIONS(1093), + [anon_sym_loop] = ACTIONS(1093), + [anon_sym_while] = ACTIONS(1093), + [anon_sym_do] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1093), + [anon_sym_match] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1093), + [anon_sym_RBRACE] = ACTIONS(1093), + [anon_sym_DOT_DOT] = ACTIONS(1093), + [anon_sym_try] = ACTIONS(1093), + [anon_sym_return] = ACTIONS(1093), + [anon_sym_source] = ACTIONS(1093), + [anon_sym_source_DASHenv] = ACTIONS(1093), + [anon_sym_register] = ACTIONS(1093), + [anon_sym_hide] = ACTIONS(1093), + [anon_sym_hide_DASHenv] = ACTIONS(1093), + [anon_sym_overlay] = ACTIONS(1093), + [anon_sym_as] = ACTIONS(1093), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_where] = ACTIONS(1093), + [anon_sym_STAR_STAR] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1093), + [anon_sym_SLASH] = ACTIONS(1093), + [anon_sym_mod] = ACTIONS(1093), + [anon_sym_SLASH_SLASH] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_bit_DASHshl] = ACTIONS(1093), + [anon_sym_bit_DASHshr] = ACTIONS(1093), + [anon_sym_EQ_EQ] = ACTIONS(1093), + [anon_sym_BANG_EQ] = ACTIONS(1093), + [anon_sym_LT2] = ACTIONS(1093), + [anon_sym_LT_EQ] = ACTIONS(1093), + [anon_sym_GT_EQ] = ACTIONS(1093), + [anon_sym_not_DASHin] = ACTIONS(1093), + [anon_sym_starts_DASHwith] = ACTIONS(1093), + [anon_sym_ends_DASHwith] = ACTIONS(1093), + [anon_sym_EQ_TILDE] = ACTIONS(1093), + [anon_sym_BANG_TILDE] = ACTIONS(1093), + [anon_sym_bit_DASHand] = ACTIONS(1093), + [anon_sym_bit_DASHxor] = ACTIONS(1093), + [anon_sym_bit_DASHor] = ACTIONS(1093), + [anon_sym_and] = ACTIONS(1093), + [anon_sym_xor] = ACTIONS(1093), + [anon_sym_or] = ACTIONS(1093), + [anon_sym_not] = ACTIONS(1093), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1093), + [anon_sym_DOT_DOT_LT] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1093), + [anon_sym_true] = ACTIONS(1093), + [anon_sym_false] = ACTIONS(1093), + [aux_sym__val_number_decimal_token1] = ACTIONS(1093), + [aux_sym__val_number_decimal_token2] = ACTIONS(1093), + [anon_sym_DOT2] = ACTIONS(1093), + [aux_sym__val_number_decimal_token3] = ACTIONS(1093), + [aux_sym__val_number_token1] = ACTIONS(1093), + [aux_sym__val_number_token2] = ACTIONS(1093), + [aux_sym__val_number_token3] = ACTIONS(1093), + [aux_sym__val_number_token4] = ACTIONS(1093), + [aux_sym__val_number_token5] = ACTIONS(1093), + [aux_sym__val_number_token6] = ACTIONS(1093), + [anon_sym_0b] = ACTIONS(1093), + [anon_sym_0o] = ACTIONS(1093), + [anon_sym_0x] = ACTIONS(1093), + [sym_val_date] = ACTIONS(1093), + [anon_sym_DQUOTE] = ACTIONS(1093), + [sym__str_single_quotes] = ACTIONS(1093), + [sym__str_back_ticks] = ACTIONS(1093), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1093), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1093), + [anon_sym_CARET] = ACTIONS(1093), + [anon_sym_POUND] = ACTIONS(113), + }, + [387] = { + [sym_comment] = STATE(387), + [anon_sym_export] = ACTIONS(1237), + [anon_sym_alias] = ACTIONS(1237), + [anon_sym_let] = ACTIONS(1237), + [anon_sym_let_DASHenv] = ACTIONS(1237), + [anon_sym_mut] = ACTIONS(1237), + [anon_sym_const] = ACTIONS(1237), + [anon_sym_SEMI] = ACTIONS(1237), + [sym_cmd_identifier] = ACTIONS(1237), + [anon_sym_LF] = ACTIONS(1239), + [anon_sym_def] = ACTIONS(1237), + [anon_sym_export_DASHenv] = ACTIONS(1237), + [anon_sym_extern] = ACTIONS(1237), + [anon_sym_module] = ACTIONS(1237), + [anon_sym_use] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(1237), + [anon_sym_LPAREN] = ACTIONS(1237), + [anon_sym_RPAREN] = ACTIONS(1237), + [anon_sym_DOLLAR] = ACTIONS(1237), + [anon_sym_error] = ACTIONS(1237), + [anon_sym_GT] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), + [anon_sym_DASH] = ACTIONS(1237), + [anon_sym_break] = ACTIONS(1237), + [anon_sym_continue] = ACTIONS(1237), + [anon_sym_for] = ACTIONS(1237), + [anon_sym_in] = ACTIONS(1237), + [anon_sym_loop] = ACTIONS(1237), + [anon_sym_while] = ACTIONS(1237), + [anon_sym_do] = ACTIONS(1237), + [anon_sym_if] = ACTIONS(1237), + [anon_sym_match] = ACTIONS(1237), + [anon_sym_LBRACE] = ACTIONS(1237), + [anon_sym_RBRACE] = ACTIONS(1237), + [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_try] = ACTIONS(1237), + [anon_sym_return] = ACTIONS(1237), + [anon_sym_source] = ACTIONS(1237), + [anon_sym_source_DASHenv] = ACTIONS(1237), + [anon_sym_register] = ACTIONS(1237), + [anon_sym_hide] = ACTIONS(1237), + [anon_sym_hide_DASHenv] = ACTIONS(1237), + [anon_sym_overlay] = ACTIONS(1237), + [anon_sym_as] = ACTIONS(1237), + [anon_sym_STAR] = ACTIONS(1237), + [anon_sym_where] = ACTIONS(1237), + [anon_sym_STAR_STAR] = ACTIONS(1237), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_SLASH] = ACTIONS(1237), + [anon_sym_mod] = ACTIONS(1237), + [anon_sym_SLASH_SLASH] = ACTIONS(1237), + [anon_sym_PLUS] = ACTIONS(1237), + [anon_sym_bit_DASHshl] = ACTIONS(1237), + [anon_sym_bit_DASHshr] = ACTIONS(1237), + [anon_sym_EQ_EQ] = ACTIONS(1237), + [anon_sym_BANG_EQ] = ACTIONS(1237), + [anon_sym_LT2] = ACTIONS(1237), + [anon_sym_LT_EQ] = ACTIONS(1237), + [anon_sym_GT_EQ] = ACTIONS(1237), + [anon_sym_not_DASHin] = ACTIONS(1237), + [anon_sym_starts_DASHwith] = ACTIONS(1237), + [anon_sym_ends_DASHwith] = ACTIONS(1237), + [anon_sym_EQ_TILDE] = ACTIONS(1237), + [anon_sym_BANG_TILDE] = ACTIONS(1237), + [anon_sym_bit_DASHand] = ACTIONS(1237), + [anon_sym_bit_DASHxor] = ACTIONS(1237), + [anon_sym_bit_DASHor] = ACTIONS(1237), + [anon_sym_and] = ACTIONS(1237), + [anon_sym_xor] = ACTIONS(1237), + [anon_sym_or] = ACTIONS(1237), + [anon_sym_not] = ACTIONS(1237), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1237), + [anon_sym_DOT_DOT_LT] = ACTIONS(1237), + [anon_sym_null] = ACTIONS(1237), + [anon_sym_true] = ACTIONS(1237), + [anon_sym_false] = ACTIONS(1237), + [aux_sym__val_number_decimal_token1] = ACTIONS(1237), + [aux_sym__val_number_decimal_token2] = ACTIONS(1237), + [anon_sym_DOT2] = ACTIONS(1237), + [aux_sym__val_number_decimal_token3] = ACTIONS(1237), + [aux_sym__val_number_token1] = ACTIONS(1237), + [aux_sym__val_number_token2] = ACTIONS(1237), + [aux_sym__val_number_token3] = ACTIONS(1237), + [aux_sym__val_number_token4] = ACTIONS(1237), + [aux_sym__val_number_token5] = ACTIONS(1237), + [aux_sym__val_number_token6] = ACTIONS(1237), + [anon_sym_0b] = ACTIONS(1237), + [anon_sym_0o] = ACTIONS(1237), + [anon_sym_0x] = ACTIONS(1237), + [sym_val_date] = ACTIONS(1237), + [anon_sym_DQUOTE] = ACTIONS(1237), + [sym__str_single_quotes] = ACTIONS(1237), + [sym__str_back_ticks] = ACTIONS(1237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1237), + [anon_sym_CARET] = ACTIONS(1237), + [anon_sym_POUND] = ACTIONS(113), + }, + [388] = { + [sym_comment] = STATE(388), + [anon_sym_export] = ACTIONS(1241), + [anon_sym_alias] = ACTIONS(1241), + [anon_sym_let] = ACTIONS(1241), + [anon_sym_let_DASHenv] = ACTIONS(1241), + [anon_sym_mut] = ACTIONS(1241), + [anon_sym_const] = ACTIONS(1241), + [anon_sym_SEMI] = ACTIONS(1241), + [sym_cmd_identifier] = ACTIONS(1241), + [anon_sym_LF] = ACTIONS(1243), + [anon_sym_def] = ACTIONS(1241), + [anon_sym_export_DASHenv] = ACTIONS(1241), + [anon_sym_extern] = ACTIONS(1241), + [anon_sym_module] = ACTIONS(1241), + [anon_sym_use] = ACTIONS(1241), + [anon_sym_LBRACK] = ACTIONS(1241), + [anon_sym_LPAREN] = ACTIONS(1241), + [anon_sym_RPAREN] = ACTIONS(1241), + [anon_sym_DOLLAR] = ACTIONS(1241), + [anon_sym_error] = ACTIONS(1241), + [anon_sym_GT] = ACTIONS(1241), + [anon_sym_DASH_DASH] = ACTIONS(1241), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_break] = ACTIONS(1241), + [anon_sym_continue] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_in] = ACTIONS(1241), + [anon_sym_loop] = ACTIONS(1241), + [anon_sym_while] = ACTIONS(1241), + [anon_sym_do] = ACTIONS(1241), + [anon_sym_if] = ACTIONS(1241), + [anon_sym_match] = ACTIONS(1241), + [anon_sym_LBRACE] = ACTIONS(1241), + [anon_sym_RBRACE] = ACTIONS(1241), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_try] = ACTIONS(1241), + [anon_sym_return] = ACTIONS(1241), + [anon_sym_source] = ACTIONS(1241), + [anon_sym_source_DASHenv] = ACTIONS(1241), + [anon_sym_register] = ACTIONS(1241), + [anon_sym_hide] = ACTIONS(1241), + [anon_sym_hide_DASHenv] = ACTIONS(1241), + [anon_sym_overlay] = ACTIONS(1241), + [anon_sym_as] = ACTIONS(1241), + [anon_sym_STAR] = ACTIONS(1241), + [anon_sym_where] = ACTIONS(1241), + [anon_sym_STAR_STAR] = ACTIONS(1241), + [anon_sym_PLUS_PLUS] = ACTIONS(1241), + [anon_sym_SLASH] = ACTIONS(1241), + [anon_sym_mod] = ACTIONS(1241), + [anon_sym_SLASH_SLASH] = ACTIONS(1241), + [anon_sym_PLUS] = ACTIONS(1241), + [anon_sym_bit_DASHshl] = ACTIONS(1241), + [anon_sym_bit_DASHshr] = ACTIONS(1241), + [anon_sym_EQ_EQ] = ACTIONS(1241), + [anon_sym_BANG_EQ] = ACTIONS(1241), + [anon_sym_LT2] = ACTIONS(1241), + [anon_sym_LT_EQ] = ACTIONS(1241), + [anon_sym_GT_EQ] = ACTIONS(1241), + [anon_sym_not_DASHin] = ACTIONS(1241), + [anon_sym_starts_DASHwith] = ACTIONS(1241), + [anon_sym_ends_DASHwith] = ACTIONS(1241), + [anon_sym_EQ_TILDE] = ACTIONS(1241), + [anon_sym_BANG_TILDE] = ACTIONS(1241), + [anon_sym_bit_DASHand] = ACTIONS(1241), + [anon_sym_bit_DASHxor] = ACTIONS(1241), + [anon_sym_bit_DASHor] = ACTIONS(1241), + [anon_sym_and] = ACTIONS(1241), + [anon_sym_xor] = ACTIONS(1241), + [anon_sym_or] = ACTIONS(1241), + [anon_sym_not] = ACTIONS(1241), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1241), + [anon_sym_DOT_DOT_LT] = ACTIONS(1241), + [anon_sym_null] = ACTIONS(1241), + [anon_sym_true] = ACTIONS(1241), + [anon_sym_false] = ACTIONS(1241), + [aux_sym__val_number_decimal_token1] = ACTIONS(1241), + [aux_sym__val_number_decimal_token2] = ACTIONS(1241), + [anon_sym_DOT2] = ACTIONS(1241), + [aux_sym__val_number_decimal_token3] = ACTIONS(1241), + [aux_sym__val_number_token1] = ACTIONS(1241), + [aux_sym__val_number_token2] = ACTIONS(1241), + [aux_sym__val_number_token3] = ACTIONS(1241), + [aux_sym__val_number_token4] = ACTIONS(1241), + [aux_sym__val_number_token5] = ACTIONS(1241), + [aux_sym__val_number_token6] = ACTIONS(1241), + [anon_sym_0b] = ACTIONS(1241), + [anon_sym_0o] = ACTIONS(1241), + [anon_sym_0x] = ACTIONS(1241), + [sym_val_date] = ACTIONS(1241), + [anon_sym_DQUOTE] = ACTIONS(1241), + [sym__str_single_quotes] = ACTIONS(1241), + [sym__str_back_ticks] = ACTIONS(1241), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1241), + [anon_sym_CARET] = ACTIONS(1241), + [anon_sym_POUND] = ACTIONS(113), + }, + [389] = { + [sym_comment] = STATE(389), + [anon_sym_export] = ACTIONS(1245), + [anon_sym_alias] = ACTIONS(1245), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_let_DASHenv] = ACTIONS(1245), + [anon_sym_mut] = ACTIONS(1245), + [anon_sym_const] = ACTIONS(1245), + [anon_sym_SEMI] = ACTIONS(1245), + [sym_cmd_identifier] = ACTIONS(1245), + [anon_sym_LF] = ACTIONS(1247), + [anon_sym_def] = ACTIONS(1245), + [anon_sym_export_DASHenv] = ACTIONS(1245), + [anon_sym_extern] = ACTIONS(1245), + [anon_sym_module] = ACTIONS(1245), + [anon_sym_use] = ACTIONS(1245), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_RPAREN] = ACTIONS(1245), + [anon_sym_DOLLAR] = ACTIONS(1245), + [anon_sym_error] = ACTIONS(1245), + [anon_sym_GT] = ACTIONS(1245), + [anon_sym_DASH_DASH] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_break] = ACTIONS(1245), + [anon_sym_continue] = ACTIONS(1245), + [anon_sym_for] = ACTIONS(1245), + [anon_sym_in] = ACTIONS(1245), + [anon_sym_loop] = ACTIONS(1245), + [anon_sym_while] = ACTIONS(1245), + [anon_sym_do] = ACTIONS(1245), + [anon_sym_if] = ACTIONS(1245), + [anon_sym_match] = ACTIONS(1245), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_RBRACE] = ACTIONS(1245), + [anon_sym_DOT_DOT] = ACTIONS(1245), + [anon_sym_try] = ACTIONS(1245), + [anon_sym_return] = ACTIONS(1245), + [anon_sym_source] = ACTIONS(1245), + [anon_sym_source_DASHenv] = ACTIONS(1245), + [anon_sym_register] = ACTIONS(1245), + [anon_sym_hide] = ACTIONS(1245), + [anon_sym_hide_DASHenv] = ACTIONS(1245), + [anon_sym_overlay] = ACTIONS(1245), + [anon_sym_as] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(1245), + [anon_sym_where] = ACTIONS(1245), + [anon_sym_STAR_STAR] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(1245), + [anon_sym_mod] = ACTIONS(1245), + [anon_sym_SLASH_SLASH] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_bit_DASHshl] = ACTIONS(1245), + [anon_sym_bit_DASHshr] = ACTIONS(1245), + [anon_sym_EQ_EQ] = ACTIONS(1245), + [anon_sym_BANG_EQ] = ACTIONS(1245), + [anon_sym_LT2] = ACTIONS(1245), + [anon_sym_LT_EQ] = ACTIONS(1245), + [anon_sym_GT_EQ] = ACTIONS(1245), + [anon_sym_not_DASHin] = ACTIONS(1245), + [anon_sym_starts_DASHwith] = ACTIONS(1245), + [anon_sym_ends_DASHwith] = ACTIONS(1245), + [anon_sym_EQ_TILDE] = ACTIONS(1245), + [anon_sym_BANG_TILDE] = ACTIONS(1245), + [anon_sym_bit_DASHand] = ACTIONS(1245), + [anon_sym_bit_DASHxor] = ACTIONS(1245), + [anon_sym_bit_DASHor] = ACTIONS(1245), + [anon_sym_and] = ACTIONS(1245), + [anon_sym_xor] = ACTIONS(1245), + [anon_sym_or] = ACTIONS(1245), + [anon_sym_not] = ACTIONS(1245), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1245), + [anon_sym_DOT_DOT_LT] = ACTIONS(1245), + [anon_sym_null] = ACTIONS(1245), + [anon_sym_true] = ACTIONS(1245), + [anon_sym_false] = ACTIONS(1245), + [aux_sym__val_number_decimal_token1] = ACTIONS(1245), + [aux_sym__val_number_decimal_token2] = ACTIONS(1245), + [anon_sym_DOT2] = ACTIONS(1245), + [aux_sym__val_number_decimal_token3] = ACTIONS(1245), + [aux_sym__val_number_token1] = ACTIONS(1245), + [aux_sym__val_number_token2] = ACTIONS(1245), + [aux_sym__val_number_token3] = ACTIONS(1245), + [aux_sym__val_number_token4] = ACTIONS(1245), + [aux_sym__val_number_token5] = ACTIONS(1245), + [aux_sym__val_number_token6] = ACTIONS(1245), + [anon_sym_0b] = ACTIONS(1245), + [anon_sym_0o] = ACTIONS(1245), + [anon_sym_0x] = ACTIONS(1245), + [sym_val_date] = ACTIONS(1245), + [anon_sym_DQUOTE] = ACTIONS(1245), + [sym__str_single_quotes] = ACTIONS(1245), + [sym__str_back_ticks] = ACTIONS(1245), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1245), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1245), + [anon_sym_CARET] = ACTIONS(1245), + [anon_sym_POUND] = ACTIONS(113), + }, + [390] = { + [sym_comment] = STATE(390), + [anon_sym_export] = ACTIONS(1249), + [anon_sym_alias] = ACTIONS(1249), + [anon_sym_let] = ACTIONS(1249), + [anon_sym_let_DASHenv] = ACTIONS(1249), + [anon_sym_mut] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1249), + [sym_cmd_identifier] = ACTIONS(1249), + [anon_sym_LF] = ACTIONS(1251), + [anon_sym_def] = ACTIONS(1249), + [anon_sym_export_DASHenv] = ACTIONS(1249), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_module] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1249), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1249), + [anon_sym_DOLLAR] = ACTIONS(1249), + [anon_sym_error] = ACTIONS(1249), + [anon_sym_GT] = ACTIONS(1249), + [anon_sym_DASH_DASH] = ACTIONS(1249), + [anon_sym_DASH] = ACTIONS(1249), + [anon_sym_break] = ACTIONS(1249), + [anon_sym_continue] = ACTIONS(1249), + [anon_sym_for] = ACTIONS(1249), + [anon_sym_in] = ACTIONS(1249), + [anon_sym_loop] = ACTIONS(1249), + [anon_sym_while] = ACTIONS(1249), + [anon_sym_do] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1249), + [anon_sym_match] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_RBRACE] = ACTIONS(1249), + [anon_sym_DOT_DOT] = ACTIONS(1249), + [anon_sym_try] = ACTIONS(1249), + [anon_sym_return] = ACTIONS(1249), + [anon_sym_source] = ACTIONS(1249), + [anon_sym_source_DASHenv] = ACTIONS(1249), + [anon_sym_register] = ACTIONS(1249), + [anon_sym_hide] = ACTIONS(1249), + [anon_sym_hide_DASHenv] = ACTIONS(1249), + [anon_sym_overlay] = ACTIONS(1249), + [anon_sym_as] = ACTIONS(1249), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_where] = ACTIONS(1249), + [anon_sym_STAR_STAR] = ACTIONS(1249), + [anon_sym_PLUS_PLUS] = ACTIONS(1249), + [anon_sym_SLASH] = ACTIONS(1249), + [anon_sym_mod] = ACTIONS(1249), + [anon_sym_SLASH_SLASH] = ACTIONS(1249), + [anon_sym_PLUS] = ACTIONS(1249), + [anon_sym_bit_DASHshl] = ACTIONS(1249), + [anon_sym_bit_DASHshr] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1249), + [anon_sym_BANG_EQ] = ACTIONS(1249), + [anon_sym_LT2] = ACTIONS(1249), + [anon_sym_LT_EQ] = ACTIONS(1249), + [anon_sym_GT_EQ] = ACTIONS(1249), + [anon_sym_not_DASHin] = ACTIONS(1249), + [anon_sym_starts_DASHwith] = ACTIONS(1249), + [anon_sym_ends_DASHwith] = ACTIONS(1249), + [anon_sym_EQ_TILDE] = ACTIONS(1249), + [anon_sym_BANG_TILDE] = ACTIONS(1249), + [anon_sym_bit_DASHand] = ACTIONS(1249), + [anon_sym_bit_DASHxor] = ACTIONS(1249), + [anon_sym_bit_DASHor] = ACTIONS(1249), + [anon_sym_and] = ACTIONS(1249), + [anon_sym_xor] = ACTIONS(1249), + [anon_sym_or] = ACTIONS(1249), + [anon_sym_not] = ACTIONS(1249), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1249), + [anon_sym_DOT_DOT_LT] = ACTIONS(1249), + [anon_sym_null] = ACTIONS(1249), + [anon_sym_true] = ACTIONS(1249), + [anon_sym_false] = ACTIONS(1249), + [aux_sym__val_number_decimal_token1] = ACTIONS(1249), + [aux_sym__val_number_decimal_token2] = ACTIONS(1249), + [anon_sym_DOT2] = ACTIONS(1249), + [aux_sym__val_number_decimal_token3] = ACTIONS(1249), + [aux_sym__val_number_token1] = ACTIONS(1249), + [aux_sym__val_number_token2] = ACTIONS(1249), + [aux_sym__val_number_token3] = ACTIONS(1249), + [aux_sym__val_number_token4] = ACTIONS(1249), + [aux_sym__val_number_token5] = ACTIONS(1249), + [aux_sym__val_number_token6] = ACTIONS(1249), + [anon_sym_0b] = ACTIONS(1249), + [anon_sym_0o] = ACTIONS(1249), + [anon_sym_0x] = ACTIONS(1249), + [sym_val_date] = ACTIONS(1249), + [anon_sym_DQUOTE] = ACTIONS(1249), + [sym__str_single_quotes] = ACTIONS(1249), + [sym__str_back_ticks] = ACTIONS(1249), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1249), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1249), + [anon_sym_CARET] = ACTIONS(1249), + [anon_sym_POUND] = ACTIONS(113), + }, + [391] = { + [sym_comment] = STATE(391), [anon_sym_export] = ACTIONS(1253), [anon_sym_alias] = ACTIONS(1253), [anon_sym_let] = ACTIONS(1253), @@ -141043,3798 +135929,4739 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1253), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1253), [anon_sym_CARET] = ACTIONS(1253), - [aux_sym_unquoted_token6] = ACTIONS(1257), - [anon_sym_POUND] = ACTIONS(113), - }, - [413] = { - [sym_comment] = STATE(413), - [anon_sym_export] = ACTIONS(1117), - [anon_sym_alias] = ACTIONS(1117), - [anon_sym_let] = ACTIONS(1117), - [anon_sym_let_DASHenv] = ACTIONS(1117), - [anon_sym_mut] = ACTIONS(1117), - [anon_sym_const] = ACTIONS(1117), - [anon_sym_SEMI] = ACTIONS(1117), - [sym_cmd_identifier] = ACTIONS(1117), - [anon_sym_LF] = ACTIONS(1119), - [anon_sym_def] = ACTIONS(1117), - [anon_sym_export_DASHenv] = ACTIONS(1117), - [anon_sym_extern] = ACTIONS(1117), - [anon_sym_module] = ACTIONS(1117), - [anon_sym_use] = ACTIONS(1117), - [anon_sym_LBRACK] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1117), - [anon_sym_RPAREN] = ACTIONS(1117), - [anon_sym_DOLLAR] = ACTIONS(1117), - [anon_sym_error] = ACTIONS(1117), - [anon_sym_GT] = ACTIONS(1117), - [anon_sym_DASH_DASH] = ACTIONS(1117), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_break] = ACTIONS(1117), - [anon_sym_continue] = ACTIONS(1117), - [anon_sym_for] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1117), - [anon_sym_loop] = ACTIONS(1117), - [anon_sym_while] = ACTIONS(1117), - [anon_sym_do] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1117), - [anon_sym_LBRACE] = ACTIONS(1117), - [anon_sym_RBRACE] = ACTIONS(1117), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_try] = ACTIONS(1117), - [anon_sym_return] = ACTIONS(1117), - [anon_sym_source] = ACTIONS(1117), - [anon_sym_source_DASHenv] = ACTIONS(1117), - [anon_sym_register] = ACTIONS(1117), - [anon_sym_hide] = ACTIONS(1117), - [anon_sym_hide_DASHenv] = ACTIONS(1117), - [anon_sym_overlay] = ACTIONS(1117), - [anon_sym_as] = ACTIONS(1117), - [anon_sym_STAR] = ACTIONS(1117), - [anon_sym_where] = ACTIONS(1117), - [anon_sym_STAR_STAR] = ACTIONS(1117), - [anon_sym_PLUS_PLUS] = ACTIONS(1117), - [anon_sym_SLASH] = ACTIONS(1117), - [anon_sym_mod] = ACTIONS(1117), - [anon_sym_SLASH_SLASH] = ACTIONS(1117), - [anon_sym_PLUS] = ACTIONS(1117), - [anon_sym_bit_DASHshl] = ACTIONS(1117), - [anon_sym_bit_DASHshr] = ACTIONS(1117), - [anon_sym_EQ_EQ] = ACTIONS(1117), - [anon_sym_BANG_EQ] = ACTIONS(1117), - [anon_sym_LT2] = ACTIONS(1117), - [anon_sym_LT_EQ] = ACTIONS(1117), - [anon_sym_GT_EQ] = ACTIONS(1117), - [anon_sym_not_DASHin] = ACTIONS(1117), - [anon_sym_starts_DASHwith] = ACTIONS(1117), - [anon_sym_ends_DASHwith] = ACTIONS(1117), - [anon_sym_EQ_TILDE] = ACTIONS(1117), - [anon_sym_BANG_TILDE] = ACTIONS(1117), - [anon_sym_bit_DASHand] = ACTIONS(1117), - [anon_sym_bit_DASHxor] = ACTIONS(1117), - [anon_sym_bit_DASHor] = ACTIONS(1117), - [anon_sym_and] = ACTIONS(1117), - [anon_sym_xor] = ACTIONS(1117), - [anon_sym_or] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1117), - [anon_sym_DOT] = ACTIONS(1117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1117), - [anon_sym_DOT_DOT_LT] = ACTIONS(1117), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_true] = ACTIONS(1117), - [anon_sym_false] = ACTIONS(1117), - [aux_sym__val_number_decimal_token1] = ACTIONS(1117), - [aux_sym__val_number_decimal_token2] = ACTIONS(1117), - [anon_sym_DOT2] = ACTIONS(1117), - [aux_sym__val_number_decimal_token3] = ACTIONS(1117), - [aux_sym__val_number_token1] = ACTIONS(1117), - [aux_sym__val_number_token2] = ACTIONS(1117), - [aux_sym__val_number_token3] = ACTIONS(1117), - [aux_sym__val_number_token4] = ACTIONS(1117), - [aux_sym__val_number_token5] = ACTIONS(1117), - [aux_sym__val_number_token6] = ACTIONS(1117), - [anon_sym_0b] = ACTIONS(1117), - [anon_sym_0o] = ACTIONS(1117), - [anon_sym_0x] = ACTIONS(1117), - [sym_val_date] = ACTIONS(1117), - [anon_sym_DQUOTE] = ACTIONS(1117), - [sym__str_single_quotes] = ACTIONS(1117), - [sym__str_back_ticks] = ACTIONS(1117), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1117), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1117), - [anon_sym_CARET] = ACTIONS(1117), [anon_sym_POUND] = ACTIONS(113), }, - [414] = { - [sym_comment] = STATE(414), - [anon_sym_export] = ACTIONS(1063), - [anon_sym_alias] = ACTIONS(1063), - [anon_sym_EQ] = ACTIONS(1063), - [anon_sym_let] = ACTIONS(1063), - [anon_sym_let_DASHenv] = ACTIONS(1063), - [anon_sym_mut] = ACTIONS(1063), - [anon_sym_const] = ACTIONS(1063), - [anon_sym_SEMI] = ACTIONS(1063), - [sym_cmd_identifier] = ACTIONS(1063), - [anon_sym_LF] = ACTIONS(1065), - [anon_sym_def] = ACTIONS(1063), - [anon_sym_export_DASHenv] = ACTIONS(1063), - [anon_sym_extern] = ACTIONS(1063), - [anon_sym_module] = ACTIONS(1063), - [anon_sym_use] = ACTIONS(1063), - [anon_sym_COLON] = ACTIONS(1063), - [anon_sym_COMMA] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_PIPE] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_error] = ACTIONS(1063), - [anon_sym_list] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_break] = ACTIONS(1063), - [anon_sym_continue] = ACTIONS(1063), - [anon_sym_for] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1063), - [anon_sym_loop] = ACTIONS(1063), - [anon_sym_make] = ACTIONS(1063), - [anon_sym_while] = ACTIONS(1063), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_if] = ACTIONS(1063), - [anon_sym_else] = ACTIONS(1063), - [anon_sym_match] = ACTIONS(1063), - [anon_sym_RBRACE] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1063), - [anon_sym_catch] = ACTIONS(1063), - [anon_sym_return] = ACTIONS(1063), - [anon_sym_source] = ACTIONS(1063), - [anon_sym_source_DASHenv] = ACTIONS(1063), - [anon_sym_register] = ACTIONS(1063), - [anon_sym_hide] = ACTIONS(1063), - [anon_sym_hide_DASHenv] = ACTIONS(1063), - [anon_sym_overlay] = ACTIONS(1063), - [anon_sym_new] = ACTIONS(1063), - [anon_sym_as] = ACTIONS(1063), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_PLUS_EQ] = ACTIONS(1063), - [anon_sym_DASH_EQ] = ACTIONS(1063), - [anon_sym_STAR_EQ] = ACTIONS(1063), - [anon_sym_SLASH_EQ] = ACTIONS(1063), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1063), - [anon_sym_QMARK2] = ACTIONS(1063), - [anon_sym_STAR_STAR] = ACTIONS(1063), - [anon_sym_PLUS_PLUS] = ACTIONS(1063), - [anon_sym_SLASH] = ACTIONS(1063), - [anon_sym_mod] = ACTIONS(1063), - [anon_sym_SLASH_SLASH] = ACTIONS(1063), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_bit_DASHshl] = ACTIONS(1063), - [anon_sym_bit_DASHshr] = ACTIONS(1063), - [anon_sym_EQ_EQ] = ACTIONS(1063), - [anon_sym_BANG_EQ] = ACTIONS(1063), - [anon_sym_LT2] = ACTIONS(1063), - [anon_sym_LT_EQ] = ACTIONS(1063), - [anon_sym_GT_EQ] = ACTIONS(1063), - [anon_sym_not_DASHin] = ACTIONS(1063), - [anon_sym_starts_DASHwith] = ACTIONS(1063), - [anon_sym_ends_DASHwith] = ACTIONS(1063), - [anon_sym_EQ_TILDE] = ACTIONS(1063), - [anon_sym_BANG_TILDE] = ACTIONS(1063), - [anon_sym_bit_DASHand] = ACTIONS(1063), - [anon_sym_bit_DASHxor] = ACTIONS(1063), - [anon_sym_bit_DASHor] = ACTIONS(1063), - [anon_sym_and] = ACTIONS(1063), - [anon_sym_xor] = ACTIONS(1063), - [anon_sym_or] = ACTIONS(1063), - [anon_sym_DOT_DOT2] = ACTIONS(1063), - [anon_sym_DOT] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1065), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1065), - [aux_sym__val_number_decimal_token1] = ACTIONS(1063), - [aux_sym__val_number_decimal_token2] = ACTIONS(1063), - [anon_sym_DOT2] = ACTIONS(1063), - [aux_sym__val_number_decimal_token3] = ACTIONS(1063), - [aux_sym__val_number_token1] = ACTIONS(1063), - [aux_sym__val_number_token2] = ACTIONS(1063), - [aux_sym__val_number_token3] = ACTIONS(1063), - [aux_sym__val_number_token4] = ACTIONS(1063), - [aux_sym__val_number_token5] = ACTIONS(1063), - [aux_sym__val_number_token6] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [sym__str_single_quotes] = ACTIONS(1063), - [sym__str_back_ticks] = ACTIONS(1063), - [aux_sym__record_key_token2] = ACTIONS(1063), + [392] = { + [sym_comment] = STATE(392), + [anon_sym_export] = ACTIONS(1257), + [anon_sym_alias] = ACTIONS(1257), + [anon_sym_let] = ACTIONS(1257), + [anon_sym_let_DASHenv] = ACTIONS(1257), + [anon_sym_mut] = ACTIONS(1257), + [anon_sym_const] = ACTIONS(1257), + [anon_sym_SEMI] = ACTIONS(1257), + [sym_cmd_identifier] = ACTIONS(1257), + [anon_sym_LF] = ACTIONS(1259), + [anon_sym_def] = ACTIONS(1257), + [anon_sym_export_DASHenv] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(1257), + [anon_sym_module] = ACTIONS(1257), + [anon_sym_use] = ACTIONS(1257), + [anon_sym_LBRACK] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_RPAREN] = ACTIONS(1257), + [anon_sym_DOLLAR] = ACTIONS(1257), + [anon_sym_error] = ACTIONS(1257), + [anon_sym_GT] = ACTIONS(1257), + [anon_sym_DASH_DASH] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_break] = ACTIONS(1257), + [anon_sym_continue] = ACTIONS(1257), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_in] = ACTIONS(1257), + [anon_sym_loop] = ACTIONS(1257), + [anon_sym_while] = ACTIONS(1257), + [anon_sym_do] = ACTIONS(1257), + [anon_sym_if] = ACTIONS(1257), + [anon_sym_match] = ACTIONS(1257), + [anon_sym_LBRACE] = ACTIONS(1257), + [anon_sym_RBRACE] = ACTIONS(1257), + [anon_sym_DOT_DOT] = ACTIONS(1257), + [anon_sym_try] = ACTIONS(1257), + [anon_sym_return] = ACTIONS(1257), + [anon_sym_source] = ACTIONS(1257), + [anon_sym_source_DASHenv] = ACTIONS(1257), + [anon_sym_register] = ACTIONS(1257), + [anon_sym_hide] = ACTIONS(1257), + [anon_sym_hide_DASHenv] = ACTIONS(1257), + [anon_sym_overlay] = ACTIONS(1257), + [anon_sym_as] = ACTIONS(1257), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_where] = ACTIONS(1257), + [anon_sym_STAR_STAR] = ACTIONS(1257), + [anon_sym_PLUS_PLUS] = ACTIONS(1257), + [anon_sym_SLASH] = ACTIONS(1257), + [anon_sym_mod] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_bit_DASHshl] = ACTIONS(1257), + [anon_sym_bit_DASHshr] = ACTIONS(1257), + [anon_sym_EQ_EQ] = ACTIONS(1257), + [anon_sym_BANG_EQ] = ACTIONS(1257), + [anon_sym_LT2] = ACTIONS(1257), + [anon_sym_LT_EQ] = ACTIONS(1257), + [anon_sym_GT_EQ] = ACTIONS(1257), + [anon_sym_not_DASHin] = ACTIONS(1257), + [anon_sym_starts_DASHwith] = ACTIONS(1257), + [anon_sym_ends_DASHwith] = ACTIONS(1257), + [anon_sym_EQ_TILDE] = ACTIONS(1257), + [anon_sym_BANG_TILDE] = ACTIONS(1257), + [anon_sym_bit_DASHand] = ACTIONS(1257), + [anon_sym_bit_DASHxor] = ACTIONS(1257), + [anon_sym_bit_DASHor] = ACTIONS(1257), + [anon_sym_and] = ACTIONS(1257), + [anon_sym_xor] = ACTIONS(1257), + [anon_sym_or] = ACTIONS(1257), + [anon_sym_not] = ACTIONS(1257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1257), + [anon_sym_DOT_DOT_LT] = ACTIONS(1257), + [anon_sym_null] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [aux_sym__val_number_decimal_token1] = ACTIONS(1257), + [aux_sym__val_number_decimal_token2] = ACTIONS(1257), + [anon_sym_DOT2] = ACTIONS(1257), + [aux_sym__val_number_decimal_token3] = ACTIONS(1257), + [aux_sym__val_number_token1] = ACTIONS(1257), + [aux_sym__val_number_token2] = ACTIONS(1257), + [aux_sym__val_number_token3] = ACTIONS(1257), + [aux_sym__val_number_token4] = ACTIONS(1257), + [aux_sym__val_number_token5] = ACTIONS(1257), + [aux_sym__val_number_token6] = ACTIONS(1257), + [anon_sym_0b] = ACTIONS(1257), + [anon_sym_0o] = ACTIONS(1257), + [anon_sym_0x] = ACTIONS(1257), + [sym_val_date] = ACTIONS(1257), + [anon_sym_DQUOTE] = ACTIONS(1257), + [sym__str_single_quotes] = ACTIONS(1257), + [sym__str_back_ticks] = ACTIONS(1257), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1257), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1257), + [anon_sym_CARET] = ACTIONS(1257), [anon_sym_POUND] = ACTIONS(113), }, - [415] = { - [sym_comment] = STATE(415), - [anon_sym_export] = ACTIONS(1259), - [anon_sym_alias] = ACTIONS(1259), - [anon_sym_let] = ACTIONS(1259), - [anon_sym_let_DASHenv] = ACTIONS(1259), - [anon_sym_mut] = ACTIONS(1259), - [anon_sym_const] = ACTIONS(1259), - [anon_sym_SEMI] = ACTIONS(1259), - [sym_cmd_identifier] = ACTIONS(1259), - [anon_sym_LF] = ACTIONS(1261), - [anon_sym_def] = ACTIONS(1259), - [anon_sym_export_DASHenv] = ACTIONS(1259), - [anon_sym_extern] = ACTIONS(1259), - [anon_sym_module] = ACTIONS(1259), - [anon_sym_use] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_RPAREN] = ACTIONS(1259), - [anon_sym_DOLLAR] = ACTIONS(1259), - [anon_sym_error] = ACTIONS(1259), - [anon_sym_GT] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_break] = ACTIONS(1259), - [anon_sym_continue] = ACTIONS(1259), - [anon_sym_for] = ACTIONS(1259), - [anon_sym_in] = ACTIONS(1259), - [anon_sym_loop] = ACTIONS(1259), - [anon_sym_while] = ACTIONS(1259), - [anon_sym_do] = ACTIONS(1259), - [anon_sym_if] = ACTIONS(1259), - [anon_sym_match] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1259), - [anon_sym_RBRACE] = ACTIONS(1259), - [anon_sym_DOT_DOT] = ACTIONS(1259), - [anon_sym_try] = ACTIONS(1259), - [anon_sym_return] = ACTIONS(1259), - [anon_sym_source] = ACTIONS(1259), - [anon_sym_source_DASHenv] = ACTIONS(1259), - [anon_sym_register] = ACTIONS(1259), - [anon_sym_hide] = ACTIONS(1259), - [anon_sym_hide_DASHenv] = ACTIONS(1259), - [anon_sym_overlay] = ACTIONS(1259), - [anon_sym_as] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1259), - [anon_sym_where] = ACTIONS(1259), - [anon_sym_STAR_STAR] = ACTIONS(1259), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_SLASH] = ACTIONS(1259), - [anon_sym_mod] = ACTIONS(1259), - [anon_sym_SLASH_SLASH] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_bit_DASHshl] = ACTIONS(1259), - [anon_sym_bit_DASHshr] = ACTIONS(1259), - [anon_sym_EQ_EQ] = ACTIONS(1259), - [anon_sym_BANG_EQ] = ACTIONS(1259), - [anon_sym_LT2] = ACTIONS(1259), - [anon_sym_LT_EQ] = ACTIONS(1259), - [anon_sym_GT_EQ] = ACTIONS(1259), - [anon_sym_not_DASHin] = ACTIONS(1259), - [anon_sym_starts_DASHwith] = ACTIONS(1259), - [anon_sym_ends_DASHwith] = ACTIONS(1259), - [anon_sym_EQ_TILDE] = ACTIONS(1259), - [anon_sym_BANG_TILDE] = ACTIONS(1259), - [anon_sym_bit_DASHand] = ACTIONS(1259), - [anon_sym_bit_DASHxor] = ACTIONS(1259), - [anon_sym_bit_DASHor] = ACTIONS(1259), - [anon_sym_and] = ACTIONS(1259), - [anon_sym_xor] = ACTIONS(1259), - [anon_sym_or] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1259), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1259), - [anon_sym_DOT_DOT_LT] = ACTIONS(1259), - [anon_sym_null] = ACTIONS(1259), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [aux_sym__val_number_decimal_token1] = ACTIONS(1259), - [aux_sym__val_number_decimal_token2] = ACTIONS(1259), - [anon_sym_DOT2] = ACTIONS(1259), - [aux_sym__val_number_decimal_token3] = ACTIONS(1259), - [aux_sym__val_number_token1] = ACTIONS(1259), - [aux_sym__val_number_token2] = ACTIONS(1259), - [aux_sym__val_number_token3] = ACTIONS(1259), - [aux_sym__val_number_token4] = ACTIONS(1259), - [aux_sym__val_number_token5] = ACTIONS(1259), - [aux_sym__val_number_token6] = ACTIONS(1259), - [anon_sym_0b] = ACTIONS(1259), - [anon_sym_0o] = ACTIONS(1259), - [anon_sym_0x] = ACTIONS(1259), - [anon_sym_LBRACK2] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1259), - [anon_sym_DQUOTE] = ACTIONS(1259), - [sym__str_single_quotes] = ACTIONS(1259), - [sym__str_back_ticks] = ACTIONS(1259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1259), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1259), - [anon_sym_CARET] = ACTIONS(1259), + [393] = { + [sym_comment] = STATE(393), + [anon_sym_export] = ACTIONS(1261), + [anon_sym_alias] = ACTIONS(1261), + [anon_sym_let] = ACTIONS(1261), + [anon_sym_let_DASHenv] = ACTIONS(1261), + [anon_sym_mut] = ACTIONS(1261), + [anon_sym_const] = ACTIONS(1261), + [anon_sym_SEMI] = ACTIONS(1261), + [sym_cmd_identifier] = ACTIONS(1261), + [anon_sym_LF] = ACTIONS(1263), + [anon_sym_def] = ACTIONS(1261), + [anon_sym_export_DASHenv] = ACTIONS(1261), + [anon_sym_extern] = ACTIONS(1261), + [anon_sym_module] = ACTIONS(1261), + [anon_sym_use] = ACTIONS(1261), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_RPAREN] = ACTIONS(1261), + [anon_sym_DOLLAR] = ACTIONS(1261), + [anon_sym_error] = ACTIONS(1261), + [anon_sym_GT] = ACTIONS(1261), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1261), + [anon_sym_break] = ACTIONS(1261), + [anon_sym_continue] = ACTIONS(1261), + [anon_sym_for] = ACTIONS(1261), + [anon_sym_in] = ACTIONS(1261), + [anon_sym_loop] = ACTIONS(1261), + [anon_sym_while] = ACTIONS(1261), + [anon_sym_do] = ACTIONS(1261), + [anon_sym_if] = ACTIONS(1261), + [anon_sym_match] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1261), + [anon_sym_DOT_DOT] = ACTIONS(1261), + [anon_sym_try] = ACTIONS(1261), + [anon_sym_return] = ACTIONS(1261), + [anon_sym_source] = ACTIONS(1261), + [anon_sym_source_DASHenv] = ACTIONS(1261), + [anon_sym_register] = ACTIONS(1261), + [anon_sym_hide] = ACTIONS(1261), + [anon_sym_hide_DASHenv] = ACTIONS(1261), + [anon_sym_overlay] = ACTIONS(1261), + [anon_sym_as] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_where] = ACTIONS(1261), + [anon_sym_STAR_STAR] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_SLASH] = ACTIONS(1261), + [anon_sym_mod] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(1261), + [anon_sym_PLUS] = ACTIONS(1261), + [anon_sym_bit_DASHshl] = ACTIONS(1261), + [anon_sym_bit_DASHshr] = ACTIONS(1261), + [anon_sym_EQ_EQ] = ACTIONS(1261), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_LT2] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1261), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_not_DASHin] = ACTIONS(1261), + [anon_sym_starts_DASHwith] = ACTIONS(1261), + [anon_sym_ends_DASHwith] = ACTIONS(1261), + [anon_sym_EQ_TILDE] = ACTIONS(1261), + [anon_sym_BANG_TILDE] = ACTIONS(1261), + [anon_sym_bit_DASHand] = ACTIONS(1261), + [anon_sym_bit_DASHxor] = ACTIONS(1261), + [anon_sym_bit_DASHor] = ACTIONS(1261), + [anon_sym_and] = ACTIONS(1261), + [anon_sym_xor] = ACTIONS(1261), + [anon_sym_or] = ACTIONS(1261), + [anon_sym_not] = ACTIONS(1261), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1261), + [anon_sym_DOT_DOT_LT] = ACTIONS(1261), + [anon_sym_null] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [aux_sym__val_number_decimal_token1] = ACTIONS(1261), + [aux_sym__val_number_decimal_token2] = ACTIONS(1261), + [anon_sym_DOT2] = ACTIONS(1261), + [aux_sym__val_number_decimal_token3] = ACTIONS(1261), + [aux_sym__val_number_token1] = ACTIONS(1261), + [aux_sym__val_number_token2] = ACTIONS(1261), + [aux_sym__val_number_token3] = ACTIONS(1261), + [aux_sym__val_number_token4] = ACTIONS(1261), + [aux_sym__val_number_token5] = ACTIONS(1261), + [aux_sym__val_number_token6] = ACTIONS(1261), + [anon_sym_0b] = ACTIONS(1261), + [anon_sym_0o] = ACTIONS(1261), + [anon_sym_0x] = ACTIONS(1261), + [sym_val_date] = ACTIONS(1261), + [anon_sym_DQUOTE] = ACTIONS(1261), + [sym__str_single_quotes] = ACTIONS(1261), + [sym__str_back_ticks] = ACTIONS(1261), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1261), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1261), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_POUND] = ACTIONS(113), + }, + [394] = { + [sym_comment] = STATE(394), + [anon_sym_export] = ACTIONS(1033), + [anon_sym_alias] = ACTIONS(1033), + [anon_sym_let] = ACTIONS(1033), + [anon_sym_let_DASHenv] = ACTIONS(1033), + [anon_sym_mut] = ACTIONS(1033), + [anon_sym_const] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(1033), + [sym_cmd_identifier] = ACTIONS(1033), + [anon_sym_LF] = ACTIONS(1035), + [anon_sym_def] = ACTIONS(1033), + [anon_sym_export_DASHenv] = ACTIONS(1033), + [anon_sym_extern] = ACTIONS(1033), + [anon_sym_module] = ACTIONS(1033), + [anon_sym_use] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1033), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_RPAREN] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_error] = ACTIONS(1033), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1033), + [anon_sym_break] = ACTIONS(1033), + [anon_sym_continue] = ACTIONS(1033), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_in] = ACTIONS(1033), + [anon_sym_loop] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(1033), + [anon_sym_do] = ACTIONS(1033), + [anon_sym_if] = ACTIONS(1033), + [anon_sym_match] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1033), + [anon_sym_DOT_DOT] = ACTIONS(1033), + [anon_sym_try] = ACTIONS(1033), + [anon_sym_return] = ACTIONS(1033), + [anon_sym_source] = ACTIONS(1033), + [anon_sym_source_DASHenv] = ACTIONS(1033), + [anon_sym_register] = ACTIONS(1033), + [anon_sym_hide] = ACTIONS(1033), + [anon_sym_hide_DASHenv] = ACTIONS(1033), + [anon_sym_overlay] = ACTIONS(1033), + [anon_sym_as] = ACTIONS(1033), + [anon_sym_STAR] = ACTIONS(1033), + [anon_sym_where] = ACTIONS(1033), + [anon_sym_STAR_STAR] = ACTIONS(1033), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_SLASH] = ACTIONS(1033), + [anon_sym_mod] = ACTIONS(1033), + [anon_sym_SLASH_SLASH] = ACTIONS(1033), + [anon_sym_PLUS] = ACTIONS(1033), + [anon_sym_bit_DASHshl] = ACTIONS(1033), + [anon_sym_bit_DASHshr] = ACTIONS(1033), + [anon_sym_EQ_EQ] = ACTIONS(1033), + [anon_sym_BANG_EQ] = ACTIONS(1033), + [anon_sym_LT2] = ACTIONS(1033), + [anon_sym_LT_EQ] = ACTIONS(1033), + [anon_sym_GT_EQ] = ACTIONS(1033), + [anon_sym_not_DASHin] = ACTIONS(1033), + [anon_sym_starts_DASHwith] = ACTIONS(1033), + [anon_sym_ends_DASHwith] = ACTIONS(1033), + [anon_sym_EQ_TILDE] = ACTIONS(1033), + [anon_sym_BANG_TILDE] = ACTIONS(1033), + [anon_sym_bit_DASHand] = ACTIONS(1033), + [anon_sym_bit_DASHxor] = ACTIONS(1033), + [anon_sym_bit_DASHor] = ACTIONS(1033), + [anon_sym_and] = ACTIONS(1033), + [anon_sym_xor] = ACTIONS(1033), + [anon_sym_or] = ACTIONS(1033), + [anon_sym_not] = ACTIONS(1033), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1033), + [anon_sym_DOT_DOT_LT] = ACTIONS(1033), + [anon_sym_null] = ACTIONS(1033), + [anon_sym_true] = ACTIONS(1033), + [anon_sym_false] = ACTIONS(1033), + [aux_sym__val_number_decimal_token1] = ACTIONS(1033), + [aux_sym__val_number_decimal_token2] = ACTIONS(1033), + [anon_sym_DOT2] = ACTIONS(1033), + [aux_sym__val_number_decimal_token3] = ACTIONS(1033), + [aux_sym__val_number_token1] = ACTIONS(1033), + [aux_sym__val_number_token2] = ACTIONS(1033), + [aux_sym__val_number_token3] = ACTIONS(1033), + [aux_sym__val_number_token4] = ACTIONS(1033), + [aux_sym__val_number_token5] = ACTIONS(1033), + [aux_sym__val_number_token6] = ACTIONS(1033), + [anon_sym_0b] = ACTIONS(1033), + [anon_sym_0o] = ACTIONS(1033), + [anon_sym_0x] = ACTIONS(1033), + [sym_val_date] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [sym__str_single_quotes] = ACTIONS(1033), + [sym__str_back_ticks] = ACTIONS(1033), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1033), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1033), + [anon_sym_CARET] = ACTIONS(1033), + [anon_sym_POUND] = ACTIONS(113), + }, + [395] = { + [sym_comment] = STATE(395), + [anon_sym_export] = ACTIONS(1020), + [anon_sym_alias] = ACTIONS(1020), + [anon_sym_let] = ACTIONS(1020), + [anon_sym_let_DASHenv] = ACTIONS(1020), + [anon_sym_mut] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1020), + [sym_cmd_identifier] = ACTIONS(1020), + [anon_sym_LF] = ACTIONS(1022), + [anon_sym_def] = ACTIONS(1020), + [anon_sym_export_DASHenv] = ACTIONS(1020), + [anon_sym_extern] = ACTIONS(1020), + [anon_sym_module] = ACTIONS(1020), + [anon_sym_use] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1020), + [anon_sym_RPAREN] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_error] = ACTIONS(1020), + [anon_sym_GT] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1020), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_in] = ACTIONS(1020), + [anon_sym_loop] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_match] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_RBRACE] = ACTIONS(1020), + [anon_sym_DOT_DOT] = ACTIONS(1020), + [anon_sym_try] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_source] = ACTIONS(1020), + [anon_sym_source_DASHenv] = ACTIONS(1020), + [anon_sym_register] = ACTIONS(1020), + [anon_sym_hide] = ACTIONS(1020), + [anon_sym_hide_DASHenv] = ACTIONS(1020), + [anon_sym_overlay] = ACTIONS(1020), + [anon_sym_as] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_where] = ACTIONS(1020), + [anon_sym_STAR_STAR] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1020), + [anon_sym_SLASH] = ACTIONS(1020), + [anon_sym_mod] = ACTIONS(1020), + [anon_sym_SLASH_SLASH] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_bit_DASHshl] = ACTIONS(1020), + [anon_sym_bit_DASHshr] = ACTIONS(1020), + [anon_sym_EQ_EQ] = ACTIONS(1020), + [anon_sym_BANG_EQ] = ACTIONS(1020), + [anon_sym_LT2] = ACTIONS(1020), + [anon_sym_LT_EQ] = ACTIONS(1020), + [anon_sym_GT_EQ] = ACTIONS(1020), + [anon_sym_not_DASHin] = ACTIONS(1020), + [anon_sym_starts_DASHwith] = ACTIONS(1020), + [anon_sym_ends_DASHwith] = ACTIONS(1020), + [anon_sym_EQ_TILDE] = ACTIONS(1020), + [anon_sym_BANG_TILDE] = ACTIONS(1020), + [anon_sym_bit_DASHand] = ACTIONS(1020), + [anon_sym_bit_DASHxor] = ACTIONS(1020), + [anon_sym_bit_DASHor] = ACTIONS(1020), + [anon_sym_and] = ACTIONS(1020), + [anon_sym_xor] = ACTIONS(1020), + [anon_sym_or] = ACTIONS(1020), + [anon_sym_not] = ACTIONS(1020), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1020), + [anon_sym_DOT_DOT_LT] = ACTIONS(1020), + [anon_sym_null] = ACTIONS(1020), + [anon_sym_true] = ACTIONS(1020), + [anon_sym_false] = ACTIONS(1020), + [aux_sym__val_number_decimal_token1] = ACTIONS(1020), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [anon_sym_DOT2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1020), + [aux_sym__val_number_token1] = ACTIONS(1020), + [aux_sym__val_number_token2] = ACTIONS(1020), + [aux_sym__val_number_token3] = ACTIONS(1020), + [aux_sym__val_number_token4] = ACTIONS(1020), + [aux_sym__val_number_token5] = ACTIONS(1020), + [aux_sym__val_number_token6] = ACTIONS(1020), + [anon_sym_0b] = ACTIONS(1020), + [anon_sym_0o] = ACTIONS(1020), + [anon_sym_0x] = ACTIONS(1020), + [sym_val_date] = ACTIONS(1020), + [anon_sym_DQUOTE] = ACTIONS(1020), + [sym__str_single_quotes] = ACTIONS(1020), + [sym__str_back_ticks] = ACTIONS(1020), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1020), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1020), + [anon_sym_CARET] = ACTIONS(1020), + [anon_sym_POUND] = ACTIONS(113), + }, + [396] = { + [sym_comment] = STATE(396), + [ts_builtin_sym_end] = ACTIONS(1039), + [anon_sym_export] = ACTIONS(1037), + [anon_sym_alias] = ACTIONS(1037), + [anon_sym_let] = ACTIONS(1037), + [anon_sym_let_DASHenv] = ACTIONS(1037), + [anon_sym_mut] = ACTIONS(1037), + [anon_sym_const] = ACTIONS(1037), + [anon_sym_SEMI] = ACTIONS(1037), + [sym_cmd_identifier] = ACTIONS(1037), + [anon_sym_LF] = ACTIONS(1039), + [anon_sym_def] = ACTIONS(1037), + [anon_sym_export_DASHenv] = ACTIONS(1037), + [anon_sym_extern] = ACTIONS(1037), + [anon_sym_module] = ACTIONS(1037), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_LBRACK] = ACTIONS(1037), + [anon_sym_LPAREN] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1037), + [anon_sym_error] = ACTIONS(1037), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_break] = ACTIONS(1037), + [anon_sym_continue] = ACTIONS(1037), + [anon_sym_for] = ACTIONS(1037), + [anon_sym_in] = ACTIONS(1037), + [anon_sym_loop] = ACTIONS(1037), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_do] = ACTIONS(1037), + [anon_sym_if] = ACTIONS(1037), + [anon_sym_match] = ACTIONS(1037), + [anon_sym_LBRACE] = ACTIONS(1037), + [anon_sym_DOT_DOT] = ACTIONS(1037), + [anon_sym_try] = ACTIONS(1037), + [anon_sym_return] = ACTIONS(1037), + [anon_sym_source] = ACTIONS(1037), + [anon_sym_source_DASHenv] = ACTIONS(1037), + [anon_sym_register] = ACTIONS(1037), + [anon_sym_hide] = ACTIONS(1037), + [anon_sym_hide_DASHenv] = ACTIONS(1037), + [anon_sym_overlay] = ACTIONS(1037), + [anon_sym_as] = ACTIONS(1037), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_where] = ACTIONS(1037), + [anon_sym_STAR_STAR] = ACTIONS(1037), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1037), + [anon_sym_mod] = ACTIONS(1037), + [anon_sym_SLASH_SLASH] = ACTIONS(1037), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_bit_DASHshl] = ACTIONS(1037), + [anon_sym_bit_DASHshr] = ACTIONS(1037), + [anon_sym_EQ_EQ] = ACTIONS(1037), + [anon_sym_BANG_EQ] = ACTIONS(1037), + [anon_sym_LT2] = ACTIONS(1037), + [anon_sym_LT_EQ] = ACTIONS(1037), + [anon_sym_GT_EQ] = ACTIONS(1037), + [anon_sym_not_DASHin] = ACTIONS(1037), + [anon_sym_starts_DASHwith] = ACTIONS(1037), + [anon_sym_ends_DASHwith] = ACTIONS(1037), + [anon_sym_EQ_TILDE] = ACTIONS(1037), + [anon_sym_BANG_TILDE] = ACTIONS(1037), + [anon_sym_bit_DASHand] = ACTIONS(1037), + [anon_sym_bit_DASHxor] = ACTIONS(1037), + [anon_sym_bit_DASHor] = ACTIONS(1037), + [anon_sym_and] = ACTIONS(1037), + [anon_sym_xor] = ACTIONS(1037), + [anon_sym_or] = ACTIONS(1037), + [anon_sym_not] = ACTIONS(1037), + [anon_sym_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1037), + [anon_sym_DOT_DOT_LT] = ACTIONS(1037), + [anon_sym_null] = ACTIONS(1037), + [anon_sym_true] = ACTIONS(1037), + [anon_sym_false] = ACTIONS(1037), + [aux_sym__val_number_decimal_token1] = ACTIONS(1037), + [aux_sym__val_number_decimal_token2] = ACTIONS(1037), + [anon_sym_DOT2] = ACTIONS(1037), + [aux_sym__val_number_decimal_token3] = ACTIONS(1037), + [aux_sym__val_number_token1] = ACTIONS(1037), + [aux_sym__val_number_token2] = ACTIONS(1037), + [aux_sym__val_number_token3] = ACTIONS(1037), + [aux_sym__val_number_token4] = ACTIONS(1037), + [aux_sym__val_number_token5] = ACTIONS(1037), + [aux_sym__val_number_token6] = ACTIONS(1037), + [anon_sym_0b] = ACTIONS(1037), + [anon_sym_0o] = ACTIONS(1037), + [anon_sym_0x] = ACTIONS(1037), + [sym_val_date] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1037), + [sym__str_single_quotes] = ACTIONS(1037), + [sym__str_back_ticks] = ACTIONS(1037), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1037), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1037), + [anon_sym_CARET] = ACTIONS(1037), + [anon_sym_POUND] = ACTIONS(113), + }, + [397] = { + [sym_comment] = STATE(397), + [anon_sym_export] = ACTIONS(1047), + [anon_sym_alias] = ACTIONS(1047), + [anon_sym_EQ] = ACTIONS(1047), + [anon_sym_let] = ACTIONS(1047), + [anon_sym_let_DASHenv] = ACTIONS(1047), + [anon_sym_mut] = ACTIONS(1047), + [anon_sym_const] = ACTIONS(1047), + [anon_sym_PLUS_EQ] = ACTIONS(1047), + [anon_sym_DASH_EQ] = ACTIONS(1047), + [anon_sym_STAR_EQ] = ACTIONS(1047), + [anon_sym_SLASH_EQ] = ACTIONS(1047), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1047), + [sym_cmd_identifier] = ACTIONS(1047), + [anon_sym_LF] = ACTIONS(1049), + [anon_sym_def] = ACTIONS(1047), + [anon_sym_export_DASHenv] = ACTIONS(1047), + [anon_sym_extern] = ACTIONS(1047), + [anon_sym_module] = ACTIONS(1047), + [anon_sym_use] = ACTIONS(1047), + [anon_sym_COLON] = ACTIONS(1047), + [anon_sym_COMMA] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1047), + [anon_sym_PIPE] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1047), + [anon_sym_error] = ACTIONS(1047), + [anon_sym_list] = ACTIONS(1047), + [anon_sym_GT] = ACTIONS(1047), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_break] = ACTIONS(1047), + [anon_sym_continue] = ACTIONS(1047), + [anon_sym_for] = ACTIONS(1047), + [anon_sym_in] = ACTIONS(1047), + [anon_sym_loop] = ACTIONS(1047), + [anon_sym_make] = ACTIONS(1047), + [anon_sym_while] = ACTIONS(1047), + [anon_sym_do] = ACTIONS(1047), + [anon_sym_if] = ACTIONS(1047), + [anon_sym_else] = ACTIONS(1047), + [anon_sym_match] = ACTIONS(1047), + [anon_sym_RBRACE] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1047), + [anon_sym_catch] = ACTIONS(1047), + [anon_sym_return] = ACTIONS(1047), + [anon_sym_source] = ACTIONS(1047), + [anon_sym_source_DASHenv] = ACTIONS(1047), + [anon_sym_register] = ACTIONS(1047), + [anon_sym_hide] = ACTIONS(1047), + [anon_sym_hide_DASHenv] = ACTIONS(1047), + [anon_sym_overlay] = ACTIONS(1047), + [anon_sym_new] = ACTIONS(1047), + [anon_sym_as] = ACTIONS(1047), + [anon_sym_STAR] = ACTIONS(1047), + [anon_sym_STAR_STAR] = ACTIONS(1047), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_SLASH] = ACTIONS(1047), + [anon_sym_mod] = ACTIONS(1047), + [anon_sym_SLASH_SLASH] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1047), + [anon_sym_bit_DASHshl] = ACTIONS(1047), + [anon_sym_bit_DASHshr] = ACTIONS(1047), + [anon_sym_EQ_EQ] = ACTIONS(1047), + [anon_sym_BANG_EQ] = ACTIONS(1047), + [anon_sym_LT2] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1047), + [anon_sym_GT_EQ] = ACTIONS(1047), + [anon_sym_not_DASHin] = ACTIONS(1047), + [anon_sym_starts_DASHwith] = ACTIONS(1047), + [anon_sym_ends_DASHwith] = ACTIONS(1047), + [anon_sym_EQ_TILDE] = ACTIONS(1047), + [anon_sym_BANG_TILDE] = ACTIONS(1047), + [anon_sym_bit_DASHand] = ACTIONS(1047), + [anon_sym_bit_DASHxor] = ACTIONS(1047), + [anon_sym_bit_DASHor] = ACTIONS(1047), + [anon_sym_and] = ACTIONS(1047), + [anon_sym_xor] = ACTIONS(1047), + [anon_sym_or] = ACTIONS(1047), + [anon_sym_DOT_DOT2] = ACTIONS(1047), + [anon_sym_DOT] = ACTIONS(1047), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1049), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1049), + [aux_sym__val_number_decimal_token1] = ACTIONS(1047), + [aux_sym__val_number_decimal_token2] = ACTIONS(1047), + [anon_sym_DOT2] = ACTIONS(1047), + [aux_sym__val_number_decimal_token3] = ACTIONS(1047), + [aux_sym__val_number_token1] = ACTIONS(1047), + [aux_sym__val_number_token2] = ACTIONS(1047), + [aux_sym__val_number_token3] = ACTIONS(1047), + [aux_sym__val_number_token4] = ACTIONS(1047), + [aux_sym__val_number_token5] = ACTIONS(1047), + [aux_sym__val_number_token6] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1047), + [sym__str_single_quotes] = ACTIONS(1047), + [sym__str_back_ticks] = ACTIONS(1047), + [aux_sym__record_key_token2] = ACTIONS(1047), + [anon_sym_POUND] = ACTIONS(113), + }, + [398] = { + [sym_comment] = STATE(398), + [ts_builtin_sym_end] = ACTIONS(940), + [anon_sym_export] = ACTIONS(938), + [anon_sym_alias] = ACTIONS(938), + [anon_sym_let] = ACTIONS(938), + [anon_sym_let_DASHenv] = ACTIONS(938), + [anon_sym_mut] = ACTIONS(938), + [anon_sym_const] = ACTIONS(938), + [anon_sym_SEMI] = ACTIONS(938), + [sym_cmd_identifier] = ACTIONS(938), + [anon_sym_LF] = ACTIONS(940), + [anon_sym_def] = ACTIONS(938), + [anon_sym_export_DASHenv] = ACTIONS(938), + [anon_sym_extern] = ACTIONS(938), + [anon_sym_module] = ACTIONS(938), + [anon_sym_use] = ACTIONS(938), + [anon_sym_LBRACK] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(938), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_error] = ACTIONS(938), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_break] = ACTIONS(938), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_for] = ACTIONS(938), + [anon_sym_in] = ACTIONS(938), + [anon_sym_loop] = ACTIONS(938), + [anon_sym_while] = ACTIONS(938), + [anon_sym_do] = ACTIONS(938), + [anon_sym_if] = ACTIONS(938), + [anon_sym_match] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_try] = ACTIONS(938), + [anon_sym_return] = ACTIONS(938), + [anon_sym_source] = ACTIONS(938), + [anon_sym_source_DASHenv] = ACTIONS(938), + [anon_sym_register] = ACTIONS(938), + [anon_sym_hide] = ACTIONS(938), + [anon_sym_hide_DASHenv] = ACTIONS(938), + [anon_sym_overlay] = ACTIONS(938), + [anon_sym_as] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_where] = ACTIONS(938), + [anon_sym_STAR_STAR] = ACTIONS(938), + [anon_sym_PLUS_PLUS] = ACTIONS(938), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(938), + [anon_sym_SLASH_SLASH] = ACTIONS(938), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_bit_DASHshl] = ACTIONS(938), + [anon_sym_bit_DASHshr] = ACTIONS(938), + [anon_sym_EQ_EQ] = ACTIONS(938), + [anon_sym_BANG_EQ] = ACTIONS(938), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(938), + [anon_sym_GT_EQ] = ACTIONS(938), + [anon_sym_not_DASHin] = ACTIONS(938), + [anon_sym_starts_DASHwith] = ACTIONS(938), + [anon_sym_ends_DASHwith] = ACTIONS(938), + [anon_sym_EQ_TILDE] = ACTIONS(938), + [anon_sym_BANG_TILDE] = ACTIONS(938), + [anon_sym_bit_DASHand] = ACTIONS(938), + [anon_sym_bit_DASHxor] = ACTIONS(938), + [anon_sym_bit_DASHor] = ACTIONS(938), + [anon_sym_and] = ACTIONS(938), + [anon_sym_xor] = ACTIONS(938), + [anon_sym_or] = ACTIONS(938), + [anon_sym_not] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ] = ACTIONS(938), + [anon_sym_DOT_DOT_LT] = ACTIONS(938), + [anon_sym_null] = ACTIONS(938), + [anon_sym_true] = ACTIONS(938), + [anon_sym_false] = ACTIONS(938), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(938), + [anon_sym_DOT2] = ACTIONS(938), + [aux_sym__val_number_decimal_token3] = ACTIONS(938), + [aux_sym__val_number_token1] = ACTIONS(938), + [aux_sym__val_number_token2] = ACTIONS(938), + [aux_sym__val_number_token3] = ACTIONS(938), + [aux_sym__val_number_token4] = ACTIONS(938), + [aux_sym__val_number_token5] = ACTIONS(938), + [aux_sym__val_number_token6] = ACTIONS(938), + [anon_sym_0b] = ACTIONS(938), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym__str_single_quotes] = ACTIONS(938), + [sym__str_back_ticks] = ACTIONS(938), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(938), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(938), + [anon_sym_CARET] = ACTIONS(938), + [aux_sym_unquoted_token5] = ACTIONS(983), + [anon_sym_POUND] = ACTIONS(113), + }, + [399] = { + [sym_comment] = STATE(399), + [anon_sym_export] = ACTIONS(1265), + [anon_sym_alias] = ACTIONS(1265), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_let_DASHenv] = ACTIONS(1265), + [anon_sym_mut] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_SEMI] = ACTIONS(1265), + [sym_cmd_identifier] = ACTIONS(1265), + [anon_sym_LF] = ACTIONS(1267), + [anon_sym_def] = ACTIONS(1265), + [anon_sym_export_DASHenv] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_module] = ACTIONS(1265), + [anon_sym_use] = ACTIONS(1265), + [anon_sym_LBRACK] = ACTIONS(1265), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_RPAREN] = ACTIONS(1265), + [anon_sym_DOLLAR] = ACTIONS(1265), + [anon_sym_error] = ACTIONS(1265), + [anon_sym_GT] = ACTIONS(1265), + [anon_sym_DASH_DASH] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1265), + [anon_sym_break] = ACTIONS(1265), + [anon_sym_continue] = ACTIONS(1265), + [anon_sym_for] = ACTIONS(1265), + [anon_sym_in] = ACTIONS(1265), + [anon_sym_loop] = ACTIONS(1265), + [anon_sym_while] = ACTIONS(1265), + [anon_sym_do] = ACTIONS(1265), + [anon_sym_if] = ACTIONS(1265), + [anon_sym_match] = ACTIONS(1265), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_RBRACE] = ACTIONS(1265), + [anon_sym_DOT_DOT] = ACTIONS(1265), + [anon_sym_try] = ACTIONS(1265), + [anon_sym_return] = ACTIONS(1265), + [anon_sym_source] = ACTIONS(1265), + [anon_sym_source_DASHenv] = ACTIONS(1265), + [anon_sym_register] = ACTIONS(1265), + [anon_sym_hide] = ACTIONS(1265), + [anon_sym_hide_DASHenv] = ACTIONS(1265), + [anon_sym_overlay] = ACTIONS(1265), + [anon_sym_as] = ACTIONS(1265), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_where] = ACTIONS(1265), + [anon_sym_STAR_STAR] = ACTIONS(1265), + [anon_sym_PLUS_PLUS] = ACTIONS(1265), + [anon_sym_SLASH] = ACTIONS(1265), + [anon_sym_mod] = ACTIONS(1265), + [anon_sym_SLASH_SLASH] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1265), + [anon_sym_bit_DASHshl] = ACTIONS(1265), + [anon_sym_bit_DASHshr] = ACTIONS(1265), + [anon_sym_EQ_EQ] = ACTIONS(1265), + [anon_sym_BANG_EQ] = ACTIONS(1265), + [anon_sym_LT2] = ACTIONS(1265), + [anon_sym_LT_EQ] = ACTIONS(1265), + [anon_sym_GT_EQ] = ACTIONS(1265), + [anon_sym_not_DASHin] = ACTIONS(1265), + [anon_sym_starts_DASHwith] = ACTIONS(1265), + [anon_sym_ends_DASHwith] = ACTIONS(1265), + [anon_sym_EQ_TILDE] = ACTIONS(1265), + [anon_sym_BANG_TILDE] = ACTIONS(1265), + [anon_sym_bit_DASHand] = ACTIONS(1265), + [anon_sym_bit_DASHxor] = ACTIONS(1265), + [anon_sym_bit_DASHor] = ACTIONS(1265), + [anon_sym_and] = ACTIONS(1265), + [anon_sym_xor] = ACTIONS(1265), + [anon_sym_or] = ACTIONS(1265), + [anon_sym_not] = ACTIONS(1265), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1265), + [anon_sym_DOT_DOT_LT] = ACTIONS(1265), + [anon_sym_null] = ACTIONS(1265), + [anon_sym_true] = ACTIONS(1265), + [anon_sym_false] = ACTIONS(1265), + [aux_sym__val_number_decimal_token1] = ACTIONS(1265), + [aux_sym__val_number_decimal_token2] = ACTIONS(1265), + [anon_sym_DOT2] = ACTIONS(1265), + [aux_sym__val_number_decimal_token3] = ACTIONS(1265), + [aux_sym__val_number_token1] = ACTIONS(1265), + [aux_sym__val_number_token2] = ACTIONS(1265), + [aux_sym__val_number_token3] = ACTIONS(1265), + [aux_sym__val_number_token4] = ACTIONS(1265), + [aux_sym__val_number_token5] = ACTIONS(1265), + [aux_sym__val_number_token6] = ACTIONS(1265), + [anon_sym_0b] = ACTIONS(1265), + [anon_sym_0o] = ACTIONS(1265), + [anon_sym_0x] = ACTIONS(1265), + [sym_val_date] = ACTIONS(1265), + [anon_sym_DQUOTE] = ACTIONS(1265), + [sym__str_single_quotes] = ACTIONS(1265), + [sym__str_back_ticks] = ACTIONS(1265), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1265), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(1265), + [anon_sym_POUND] = ACTIONS(113), + }, + [400] = { + [sym_comment] = STATE(400), + [anon_sym_export] = ACTIONS(1265), + [anon_sym_alias] = ACTIONS(1265), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_let_DASHenv] = ACTIONS(1265), + [anon_sym_mut] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_SEMI] = ACTIONS(1265), + [sym_cmd_identifier] = ACTIONS(1265), + [anon_sym_LF] = ACTIONS(1267), + [anon_sym_def] = ACTIONS(1265), + [anon_sym_export_DASHenv] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_module] = ACTIONS(1265), + [anon_sym_use] = ACTIONS(1265), + [anon_sym_LBRACK] = ACTIONS(1265), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_RPAREN] = ACTIONS(1265), + [anon_sym_DOLLAR] = ACTIONS(1265), + [anon_sym_error] = ACTIONS(1265), + [anon_sym_GT] = ACTIONS(1265), + [anon_sym_DASH_DASH] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1265), + [anon_sym_break] = ACTIONS(1265), + [anon_sym_continue] = ACTIONS(1265), + [anon_sym_for] = ACTIONS(1265), + [anon_sym_in] = ACTIONS(1265), + [anon_sym_loop] = ACTIONS(1265), + [anon_sym_while] = ACTIONS(1265), + [anon_sym_do] = ACTIONS(1265), + [anon_sym_if] = ACTIONS(1265), + [anon_sym_match] = ACTIONS(1265), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_RBRACE] = ACTIONS(1265), + [anon_sym_DOT_DOT] = ACTIONS(1265), + [anon_sym_try] = ACTIONS(1265), + [anon_sym_return] = ACTIONS(1265), + [anon_sym_source] = ACTIONS(1265), + [anon_sym_source_DASHenv] = ACTIONS(1265), + [anon_sym_register] = ACTIONS(1265), + [anon_sym_hide] = ACTIONS(1265), + [anon_sym_hide_DASHenv] = ACTIONS(1265), + [anon_sym_overlay] = ACTIONS(1265), + [anon_sym_as] = ACTIONS(1265), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_where] = ACTIONS(1265), + [anon_sym_STAR_STAR] = ACTIONS(1265), + [anon_sym_PLUS_PLUS] = ACTIONS(1265), + [anon_sym_SLASH] = ACTIONS(1265), + [anon_sym_mod] = ACTIONS(1265), + [anon_sym_SLASH_SLASH] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1265), + [anon_sym_bit_DASHshl] = ACTIONS(1265), + [anon_sym_bit_DASHshr] = ACTIONS(1265), + [anon_sym_EQ_EQ] = ACTIONS(1265), + [anon_sym_BANG_EQ] = ACTIONS(1265), + [anon_sym_LT2] = ACTIONS(1265), + [anon_sym_LT_EQ] = ACTIONS(1265), + [anon_sym_GT_EQ] = ACTIONS(1265), + [anon_sym_not_DASHin] = ACTIONS(1265), + [anon_sym_starts_DASHwith] = ACTIONS(1265), + [anon_sym_ends_DASHwith] = ACTIONS(1265), + [anon_sym_EQ_TILDE] = ACTIONS(1265), + [anon_sym_BANG_TILDE] = ACTIONS(1265), + [anon_sym_bit_DASHand] = ACTIONS(1265), + [anon_sym_bit_DASHxor] = ACTIONS(1265), + [anon_sym_bit_DASHor] = ACTIONS(1265), + [anon_sym_and] = ACTIONS(1265), + [anon_sym_xor] = ACTIONS(1265), + [anon_sym_or] = ACTIONS(1265), + [anon_sym_not] = ACTIONS(1265), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1265), + [anon_sym_DOT_DOT_LT] = ACTIONS(1265), + [anon_sym_null] = ACTIONS(1265), + [anon_sym_true] = ACTIONS(1265), + [anon_sym_false] = ACTIONS(1265), + [aux_sym__val_number_decimal_token1] = ACTIONS(1265), + [aux_sym__val_number_decimal_token2] = ACTIONS(1265), + [anon_sym_DOT2] = ACTIONS(1265), + [aux_sym__val_number_decimal_token3] = ACTIONS(1265), + [aux_sym__val_number_token1] = ACTIONS(1265), + [aux_sym__val_number_token2] = ACTIONS(1265), + [aux_sym__val_number_token3] = ACTIONS(1265), + [aux_sym__val_number_token4] = ACTIONS(1265), + [aux_sym__val_number_token5] = ACTIONS(1265), + [aux_sym__val_number_token6] = ACTIONS(1265), + [anon_sym_0b] = ACTIONS(1265), + [anon_sym_0o] = ACTIONS(1265), + [anon_sym_0x] = ACTIONS(1265), + [sym_val_date] = ACTIONS(1265), + [anon_sym_DQUOTE] = ACTIONS(1265), + [sym__str_single_quotes] = ACTIONS(1265), + [sym__str_back_ticks] = ACTIONS(1265), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1265), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(1265), + [anon_sym_POUND] = ACTIONS(113), + }, + [401] = { + [sym_comment] = STATE(401), + [ts_builtin_sym_end] = ACTIONS(1209), + [anon_sym_export] = ACTIONS(1139), + [anon_sym_alias] = ACTIONS(1139), + [anon_sym_let] = ACTIONS(1139), + [anon_sym_let_DASHenv] = ACTIONS(1139), + [anon_sym_mut] = ACTIONS(1139), + [anon_sym_const] = ACTIONS(1139), + [anon_sym_SEMI] = ACTIONS(1139), + [sym_cmd_identifier] = ACTIONS(1139), + [anon_sym_LF] = ACTIONS(1139), + [anon_sym_def] = ACTIONS(1139), + [anon_sym_export_DASHenv] = ACTIONS(1139), + [anon_sym_extern] = ACTIONS(1139), + [anon_sym_module] = ACTIONS(1139), + [anon_sym_use] = ACTIONS(1139), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LPAREN] = ACTIONS(1139), + [anon_sym_DOLLAR] = ACTIONS(1139), + [anon_sym_error] = ACTIONS(1139), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_DASH_DASH] = ACTIONS(1139), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_break] = ACTIONS(1139), + [anon_sym_continue] = ACTIONS(1139), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_in] = ACTIONS(1139), + [anon_sym_loop] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1139), + [anon_sym_do] = ACTIONS(1139), + [anon_sym_if] = ACTIONS(1139), + [anon_sym_match] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1139), + [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_try] = ACTIONS(1139), + [anon_sym_return] = ACTIONS(1139), + [anon_sym_source] = ACTIONS(1139), + [anon_sym_source_DASHenv] = ACTIONS(1139), + [anon_sym_register] = ACTIONS(1139), + [anon_sym_hide] = ACTIONS(1139), + [anon_sym_hide_DASHenv] = ACTIONS(1139), + [anon_sym_overlay] = ACTIONS(1139), + [anon_sym_as] = ACTIONS(1139), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_where] = ACTIONS(1139), + [anon_sym_STAR_STAR] = ACTIONS(1139), + [anon_sym_PLUS_PLUS] = ACTIONS(1139), + [anon_sym_SLASH] = ACTIONS(1139), + [anon_sym_mod] = ACTIONS(1139), + [anon_sym_SLASH_SLASH] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_bit_DASHshl] = ACTIONS(1139), + [anon_sym_bit_DASHshr] = ACTIONS(1139), + [anon_sym_EQ_EQ] = ACTIONS(1139), + [anon_sym_BANG_EQ] = ACTIONS(1139), + [anon_sym_LT2] = ACTIONS(1139), + [anon_sym_LT_EQ] = ACTIONS(1139), + [anon_sym_GT_EQ] = ACTIONS(1139), + [anon_sym_not_DASHin] = ACTIONS(1139), + [anon_sym_starts_DASHwith] = ACTIONS(1139), + [anon_sym_ends_DASHwith] = ACTIONS(1139), + [anon_sym_EQ_TILDE] = ACTIONS(1139), + [anon_sym_BANG_TILDE] = ACTIONS(1139), + [anon_sym_bit_DASHand] = ACTIONS(1139), + [anon_sym_bit_DASHxor] = ACTIONS(1139), + [anon_sym_bit_DASHor] = ACTIONS(1139), + [anon_sym_and] = ACTIONS(1139), + [anon_sym_xor] = ACTIONS(1139), + [anon_sym_or] = ACTIONS(1139), + [anon_sym_not] = ACTIONS(1139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1139), + [anon_sym_DOT_DOT_LT] = ACTIONS(1139), + [anon_sym_null] = ACTIONS(1139), + [anon_sym_true] = ACTIONS(1139), + [anon_sym_false] = ACTIONS(1139), + [aux_sym__val_number_decimal_token1] = ACTIONS(1139), + [aux_sym__val_number_decimal_token2] = ACTIONS(1139), + [anon_sym_DOT2] = ACTIONS(1139), + [aux_sym__val_number_decimal_token3] = ACTIONS(1139), + [aux_sym__val_number_token1] = ACTIONS(1139), + [aux_sym__val_number_token2] = ACTIONS(1139), + [aux_sym__val_number_token3] = ACTIONS(1139), + [aux_sym__val_number_token4] = ACTIONS(1139), + [aux_sym__val_number_token5] = ACTIONS(1139), + [aux_sym__val_number_token6] = ACTIONS(1139), + [anon_sym_0b] = ACTIONS(1139), + [anon_sym_0o] = ACTIONS(1139), + [anon_sym_0x] = ACTIONS(1139), + [sym_val_date] = ACTIONS(1139), + [anon_sym_DQUOTE] = ACTIONS(1139), + [sym__str_single_quotes] = ACTIONS(1139), + [sym__str_back_ticks] = ACTIONS(1139), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1139), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1139), + [aux_sym__list_item_starts_with_sign_token1] = ACTIONS(1269), + [anon_sym_CARET] = ACTIONS(1139), + [anon_sym_POUND] = ACTIONS(113), + }, + [402] = { + [sym_comment] = STATE(402), + [ts_builtin_sym_end] = ACTIONS(1157), + [anon_sym_export] = ACTIONS(1155), + [anon_sym_alias] = ACTIONS(1155), + [anon_sym_let] = ACTIONS(1155), + [anon_sym_let_DASHenv] = ACTIONS(1155), + [anon_sym_mut] = ACTIONS(1155), + [anon_sym_const] = ACTIONS(1155), + [anon_sym_SEMI] = ACTIONS(1155), + [sym_cmd_identifier] = ACTIONS(1155), + [anon_sym_LF] = ACTIONS(1157), + [anon_sym_def] = ACTIONS(1155), + [anon_sym_export_DASHenv] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1155), + [anon_sym_module] = ACTIONS(1155), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1155), + [anon_sym_LPAREN] = ACTIONS(1155), + [anon_sym_DOLLAR] = ACTIONS(1155), + [anon_sym_error] = ACTIONS(1155), + [anon_sym_GT] = ACTIONS(1155), + [anon_sym_DASH_DASH] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_break] = ACTIONS(1155), + [anon_sym_continue] = ACTIONS(1155), + [anon_sym_for] = ACTIONS(1155), + [anon_sym_in] = ACTIONS(1155), + [anon_sym_loop] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(1155), + [anon_sym_do] = ACTIONS(1155), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_match] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_DOT_DOT] = ACTIONS(1155), + [anon_sym_try] = ACTIONS(1155), + [anon_sym_return] = ACTIONS(1155), + [anon_sym_source] = ACTIONS(1155), + [anon_sym_source_DASHenv] = ACTIONS(1155), + [anon_sym_register] = ACTIONS(1155), + [anon_sym_hide] = ACTIONS(1155), + [anon_sym_hide_DASHenv] = ACTIONS(1155), + [anon_sym_overlay] = ACTIONS(1155), + [anon_sym_as] = ACTIONS(1155), + [anon_sym_STAR] = ACTIONS(1155), + [anon_sym_where] = ACTIONS(1155), + [anon_sym_STAR_STAR] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(1155), + [anon_sym_mod] = ACTIONS(1155), + [anon_sym_SLASH_SLASH] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_bit_DASHshl] = ACTIONS(1155), + [anon_sym_bit_DASHshr] = ACTIONS(1155), + [anon_sym_EQ_EQ] = ACTIONS(1155), + [anon_sym_BANG_EQ] = ACTIONS(1155), + [anon_sym_LT2] = ACTIONS(1155), + [anon_sym_LT_EQ] = ACTIONS(1155), + [anon_sym_GT_EQ] = ACTIONS(1155), + [anon_sym_not_DASHin] = ACTIONS(1155), + [anon_sym_starts_DASHwith] = ACTIONS(1155), + [anon_sym_ends_DASHwith] = ACTIONS(1155), + [anon_sym_EQ_TILDE] = ACTIONS(1155), + [anon_sym_BANG_TILDE] = ACTIONS(1155), + [anon_sym_bit_DASHand] = ACTIONS(1155), + [anon_sym_bit_DASHxor] = ACTIONS(1155), + [anon_sym_bit_DASHor] = ACTIONS(1155), + [anon_sym_and] = ACTIONS(1155), + [anon_sym_xor] = ACTIONS(1155), + [anon_sym_or] = ACTIONS(1155), + [anon_sym_not] = ACTIONS(1155), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1155), + [anon_sym_DOT_DOT_LT] = ACTIONS(1155), + [anon_sym_null] = ACTIONS(1155), + [anon_sym_true] = ACTIONS(1155), + [anon_sym_false] = ACTIONS(1155), + [aux_sym__val_number_decimal_token1] = ACTIONS(1155), + [aux_sym__val_number_decimal_token2] = ACTIONS(1155), + [anon_sym_DOT2] = ACTIONS(1155), + [aux_sym__val_number_decimal_token3] = ACTIONS(1155), + [aux_sym__val_number_token1] = ACTIONS(1155), + [aux_sym__val_number_token2] = ACTIONS(1155), + [aux_sym__val_number_token3] = ACTIONS(1155), + [aux_sym__val_number_token4] = ACTIONS(1155), + [aux_sym__val_number_token5] = ACTIONS(1155), + [aux_sym__val_number_token6] = ACTIONS(1155), + [anon_sym_0b] = ACTIONS(1155), + [anon_sym_0o] = ACTIONS(1155), + [anon_sym_0x] = ACTIONS(1155), + [sym_val_date] = ACTIONS(1155), + [anon_sym_DQUOTE] = ACTIONS(1155), + [sym__str_single_quotes] = ACTIONS(1155), + [sym__str_back_ticks] = ACTIONS(1155), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1155), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1155), + [anon_sym_CARET] = ACTIONS(1155), + [aux_sym_unquoted_token6] = ACTIONS(1155), + [anon_sym_POUND] = ACTIONS(113), + }, + [403] = { + [sym_comment] = STATE(403), + [anon_sym_export] = ACTIONS(1271), + [anon_sym_alias] = ACTIONS(1271), + [anon_sym_let] = ACTIONS(1271), + [anon_sym_let_DASHenv] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(1271), + [anon_sym_const] = ACTIONS(1271), + [anon_sym_SEMI] = ACTIONS(1271), + [sym_cmd_identifier] = ACTIONS(1271), + [anon_sym_LF] = ACTIONS(1273), + [anon_sym_def] = ACTIONS(1271), + [anon_sym_export_DASHenv] = ACTIONS(1271), + [anon_sym_extern] = ACTIONS(1271), + [anon_sym_module] = ACTIONS(1271), + [anon_sym_use] = ACTIONS(1271), + [anon_sym_LBRACK] = ACTIONS(1271), + [anon_sym_LPAREN] = ACTIONS(1271), + [anon_sym_RPAREN] = ACTIONS(1271), + [anon_sym_DOLLAR] = ACTIONS(1271), + [anon_sym_error] = ACTIONS(1271), + [anon_sym_GT] = ACTIONS(1271), + [anon_sym_DASH_DASH] = ACTIONS(1271), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_break] = ACTIONS(1271), + [anon_sym_continue] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1271), + [anon_sym_in] = ACTIONS(1271), + [anon_sym_loop] = ACTIONS(1271), + [anon_sym_while] = ACTIONS(1271), + [anon_sym_do] = ACTIONS(1271), + [anon_sym_if] = ACTIONS(1271), + [anon_sym_match] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(1271), + [anon_sym_DOT_DOT] = ACTIONS(1271), + [anon_sym_try] = ACTIONS(1271), + [anon_sym_return] = ACTIONS(1271), + [anon_sym_source] = ACTIONS(1271), + [anon_sym_source_DASHenv] = ACTIONS(1271), + [anon_sym_register] = ACTIONS(1271), + [anon_sym_hide] = ACTIONS(1271), + [anon_sym_hide_DASHenv] = ACTIONS(1271), + [anon_sym_overlay] = ACTIONS(1271), + [anon_sym_as] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(1271), + [anon_sym_where] = ACTIONS(1271), + [anon_sym_STAR_STAR] = ACTIONS(1271), + [anon_sym_PLUS_PLUS] = ACTIONS(1271), + [anon_sym_SLASH] = ACTIONS(1271), + [anon_sym_mod] = ACTIONS(1271), + [anon_sym_SLASH_SLASH] = ACTIONS(1271), + [anon_sym_PLUS] = ACTIONS(1271), + [anon_sym_bit_DASHshl] = ACTIONS(1271), + [anon_sym_bit_DASHshr] = ACTIONS(1271), + [anon_sym_EQ_EQ] = ACTIONS(1271), + [anon_sym_BANG_EQ] = ACTIONS(1271), + [anon_sym_LT2] = ACTIONS(1271), + [anon_sym_LT_EQ] = ACTIONS(1271), + [anon_sym_GT_EQ] = ACTIONS(1271), + [anon_sym_not_DASHin] = ACTIONS(1271), + [anon_sym_starts_DASHwith] = ACTIONS(1271), + [anon_sym_ends_DASHwith] = ACTIONS(1271), + [anon_sym_EQ_TILDE] = ACTIONS(1271), + [anon_sym_BANG_TILDE] = ACTIONS(1271), + [anon_sym_bit_DASHand] = ACTIONS(1271), + [anon_sym_bit_DASHxor] = ACTIONS(1271), + [anon_sym_bit_DASHor] = ACTIONS(1271), + [anon_sym_and] = ACTIONS(1271), + [anon_sym_xor] = ACTIONS(1271), + [anon_sym_or] = ACTIONS(1271), + [anon_sym_not] = ACTIONS(1271), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1271), + [anon_sym_DOT_DOT_LT] = ACTIONS(1271), + [anon_sym_null] = ACTIONS(1271), + [anon_sym_true] = ACTIONS(1271), + [anon_sym_false] = ACTIONS(1271), + [aux_sym__val_number_decimal_token1] = ACTIONS(1271), + [aux_sym__val_number_decimal_token2] = ACTIONS(1271), + [anon_sym_DOT2] = ACTIONS(1271), + [aux_sym__val_number_decimal_token3] = ACTIONS(1271), + [aux_sym__val_number_token1] = ACTIONS(1271), + [aux_sym__val_number_token2] = ACTIONS(1271), + [aux_sym__val_number_token3] = ACTIONS(1271), + [aux_sym__val_number_token4] = ACTIONS(1271), + [aux_sym__val_number_token5] = ACTIONS(1271), + [aux_sym__val_number_token6] = ACTIONS(1271), + [anon_sym_0b] = ACTIONS(1271), + [anon_sym_0o] = ACTIONS(1271), + [anon_sym_0x] = ACTIONS(1271), + [sym_val_date] = ACTIONS(1271), + [anon_sym_DQUOTE] = ACTIONS(1271), + [sym__str_single_quotes] = ACTIONS(1271), + [sym__str_back_ticks] = ACTIONS(1271), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1271), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1271), + [anon_sym_CARET] = ACTIONS(1271), + [anon_sym_POUND] = ACTIONS(113), + }, + [404] = { + [sym_comment] = STATE(404), + [anon_sym_export] = ACTIONS(1275), + [anon_sym_alias] = ACTIONS(1275), + [anon_sym_let] = ACTIONS(1275), + [anon_sym_let_DASHenv] = ACTIONS(1275), + [anon_sym_mut] = ACTIONS(1275), + [anon_sym_const] = ACTIONS(1275), + [anon_sym_SEMI] = ACTIONS(1275), + [sym_cmd_identifier] = ACTIONS(1275), + [anon_sym_LF] = ACTIONS(1277), + [anon_sym_def] = ACTIONS(1275), + [anon_sym_export_DASHenv] = ACTIONS(1275), + [anon_sym_extern] = ACTIONS(1275), + [anon_sym_module] = ACTIONS(1275), + [anon_sym_use] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(1275), + [anon_sym_RPAREN] = ACTIONS(1275), + [anon_sym_DOLLAR] = ACTIONS(1275), + [anon_sym_error] = ACTIONS(1275), + [anon_sym_GT] = ACTIONS(1275), + [anon_sym_DASH_DASH] = ACTIONS(1275), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_break] = ACTIONS(1275), + [anon_sym_continue] = ACTIONS(1275), + [anon_sym_for] = ACTIONS(1275), + [anon_sym_in] = ACTIONS(1275), + [anon_sym_loop] = ACTIONS(1275), + [anon_sym_while] = ACTIONS(1275), + [anon_sym_do] = ACTIONS(1275), + [anon_sym_if] = ACTIONS(1275), + [anon_sym_match] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(1275), + [anon_sym_RBRACE] = ACTIONS(1275), + [anon_sym_DOT_DOT] = ACTIONS(1275), + [anon_sym_try] = ACTIONS(1275), + [anon_sym_return] = ACTIONS(1275), + [anon_sym_source] = ACTIONS(1275), + [anon_sym_source_DASHenv] = ACTIONS(1275), + [anon_sym_register] = ACTIONS(1275), + [anon_sym_hide] = ACTIONS(1275), + [anon_sym_hide_DASHenv] = ACTIONS(1275), + [anon_sym_overlay] = ACTIONS(1275), + [anon_sym_as] = ACTIONS(1275), + [anon_sym_STAR] = ACTIONS(1275), + [anon_sym_where] = ACTIONS(1275), + [anon_sym_STAR_STAR] = ACTIONS(1275), + [anon_sym_PLUS_PLUS] = ACTIONS(1275), + [anon_sym_SLASH] = ACTIONS(1275), + [anon_sym_mod] = ACTIONS(1275), + [anon_sym_SLASH_SLASH] = ACTIONS(1275), + [anon_sym_PLUS] = ACTIONS(1275), + [anon_sym_bit_DASHshl] = ACTIONS(1275), + [anon_sym_bit_DASHshr] = ACTIONS(1275), + [anon_sym_EQ_EQ] = ACTIONS(1275), + [anon_sym_BANG_EQ] = ACTIONS(1275), + [anon_sym_LT2] = ACTIONS(1275), + [anon_sym_LT_EQ] = ACTIONS(1275), + [anon_sym_GT_EQ] = ACTIONS(1275), + [anon_sym_not_DASHin] = ACTIONS(1275), + [anon_sym_starts_DASHwith] = ACTIONS(1275), + [anon_sym_ends_DASHwith] = ACTIONS(1275), + [anon_sym_EQ_TILDE] = ACTIONS(1275), + [anon_sym_BANG_TILDE] = ACTIONS(1275), + [anon_sym_bit_DASHand] = ACTIONS(1275), + [anon_sym_bit_DASHxor] = ACTIONS(1275), + [anon_sym_bit_DASHor] = ACTIONS(1275), + [anon_sym_and] = ACTIONS(1275), + [anon_sym_xor] = ACTIONS(1275), + [anon_sym_or] = ACTIONS(1275), + [anon_sym_not] = ACTIONS(1275), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1275), + [anon_sym_DOT_DOT_LT] = ACTIONS(1275), + [anon_sym_null] = ACTIONS(1275), + [anon_sym_true] = ACTIONS(1275), + [anon_sym_false] = ACTIONS(1275), + [aux_sym__val_number_decimal_token1] = ACTIONS(1275), + [aux_sym__val_number_decimal_token2] = ACTIONS(1275), + [anon_sym_DOT2] = ACTIONS(1275), + [aux_sym__val_number_decimal_token3] = ACTIONS(1275), + [aux_sym__val_number_token1] = ACTIONS(1275), + [aux_sym__val_number_token2] = ACTIONS(1275), + [aux_sym__val_number_token3] = ACTIONS(1275), + [aux_sym__val_number_token4] = ACTIONS(1275), + [aux_sym__val_number_token5] = ACTIONS(1275), + [aux_sym__val_number_token6] = ACTIONS(1275), + [anon_sym_0b] = ACTIONS(1275), + [anon_sym_0o] = ACTIONS(1275), + [anon_sym_0x] = ACTIONS(1275), + [sym_val_date] = ACTIONS(1275), + [anon_sym_DQUOTE] = ACTIONS(1275), + [sym__str_single_quotes] = ACTIONS(1275), + [sym__str_back_ticks] = ACTIONS(1275), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1275), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1275), + [anon_sym_CARET] = ACTIONS(1275), + [anon_sym_POUND] = ACTIONS(113), + }, + [405] = { + [sym_comment] = STATE(405), + [anon_sym_export] = ACTIONS(1155), + [anon_sym_alias] = ACTIONS(1155), + [anon_sym_let] = ACTIONS(1155), + [anon_sym_let_DASHenv] = ACTIONS(1155), + [anon_sym_mut] = ACTIONS(1155), + [anon_sym_const] = ACTIONS(1155), + [anon_sym_SEMI] = ACTIONS(1155), + [sym_cmd_identifier] = ACTIONS(1155), + [anon_sym_LF] = ACTIONS(1157), + [anon_sym_def] = ACTIONS(1155), + [anon_sym_export_DASHenv] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1155), + [anon_sym_module] = ACTIONS(1155), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1155), + [anon_sym_LPAREN] = ACTIONS(1155), + [anon_sym_RPAREN] = ACTIONS(1155), + [anon_sym_DOLLAR] = ACTIONS(1155), + [anon_sym_error] = ACTIONS(1155), + [anon_sym_GT] = ACTIONS(1155), + [anon_sym_DASH_DASH] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_break] = ACTIONS(1155), + [anon_sym_continue] = ACTIONS(1155), + [anon_sym_for] = ACTIONS(1155), + [anon_sym_in] = ACTIONS(1155), + [anon_sym_loop] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(1155), + [anon_sym_do] = ACTIONS(1155), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_match] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_RBRACE] = ACTIONS(1155), + [anon_sym_DOT_DOT] = ACTIONS(1155), + [anon_sym_try] = ACTIONS(1155), + [anon_sym_return] = ACTIONS(1155), + [anon_sym_source] = ACTIONS(1155), + [anon_sym_source_DASHenv] = ACTIONS(1155), + [anon_sym_register] = ACTIONS(1155), + [anon_sym_hide] = ACTIONS(1155), + [anon_sym_hide_DASHenv] = ACTIONS(1155), + [anon_sym_overlay] = ACTIONS(1155), + [anon_sym_as] = ACTIONS(1155), + [anon_sym_STAR] = ACTIONS(1155), + [anon_sym_where] = ACTIONS(1155), + [anon_sym_STAR_STAR] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(1155), + [anon_sym_mod] = ACTIONS(1155), + [anon_sym_SLASH_SLASH] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_bit_DASHshl] = ACTIONS(1155), + [anon_sym_bit_DASHshr] = ACTIONS(1155), + [anon_sym_EQ_EQ] = ACTIONS(1155), + [anon_sym_BANG_EQ] = ACTIONS(1155), + [anon_sym_LT2] = ACTIONS(1155), + [anon_sym_LT_EQ] = ACTIONS(1155), + [anon_sym_GT_EQ] = ACTIONS(1155), + [anon_sym_not_DASHin] = ACTIONS(1155), + [anon_sym_starts_DASHwith] = ACTIONS(1155), + [anon_sym_ends_DASHwith] = ACTIONS(1155), + [anon_sym_EQ_TILDE] = ACTIONS(1155), + [anon_sym_BANG_TILDE] = ACTIONS(1155), + [anon_sym_bit_DASHand] = ACTIONS(1155), + [anon_sym_bit_DASHxor] = ACTIONS(1155), + [anon_sym_bit_DASHor] = ACTIONS(1155), + [anon_sym_and] = ACTIONS(1155), + [anon_sym_xor] = ACTIONS(1155), + [anon_sym_or] = ACTIONS(1155), + [anon_sym_not] = ACTIONS(1155), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1155), + [anon_sym_DOT_DOT_LT] = ACTIONS(1155), + [anon_sym_null] = ACTIONS(1155), + [anon_sym_true] = ACTIONS(1155), + [anon_sym_false] = ACTIONS(1155), + [aux_sym__val_number_decimal_token1] = ACTIONS(1155), + [aux_sym__val_number_decimal_token2] = ACTIONS(1155), + [anon_sym_DOT2] = ACTIONS(1155), + [aux_sym__val_number_decimal_token3] = ACTIONS(1155), + [aux_sym__val_number_token1] = ACTIONS(1155), + [aux_sym__val_number_token2] = ACTIONS(1155), + [aux_sym__val_number_token3] = ACTIONS(1155), + [aux_sym__val_number_token4] = ACTIONS(1155), + [aux_sym__val_number_token5] = ACTIONS(1155), + [aux_sym__val_number_token6] = ACTIONS(1155), + [anon_sym_0b] = ACTIONS(1155), + [anon_sym_0o] = ACTIONS(1155), + [anon_sym_0x] = ACTIONS(1155), + [sym_val_date] = ACTIONS(1155), + [anon_sym_DQUOTE] = ACTIONS(1155), + [sym__str_single_quotes] = ACTIONS(1155), + [sym__str_back_ticks] = ACTIONS(1155), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1155), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1155), + [anon_sym_CARET] = ACTIONS(1155), + [anon_sym_POUND] = ACTIONS(113), + }, + [406] = { + [sym_comment] = STATE(406), + [anon_sym_export] = ACTIONS(1051), + [anon_sym_alias] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(1051), + [anon_sym_let_DASHenv] = ACTIONS(1051), + [anon_sym_mut] = ACTIONS(1051), + [anon_sym_const] = ACTIONS(1051), + [anon_sym_SEMI] = ACTIONS(1051), + [sym_cmd_identifier] = ACTIONS(1051), + [anon_sym_LF] = ACTIONS(1053), + [anon_sym_def] = ACTIONS(1051), + [anon_sym_export_DASHenv] = ACTIONS(1051), + [anon_sym_extern] = ACTIONS(1051), + [anon_sym_module] = ACTIONS(1051), + [anon_sym_use] = ACTIONS(1051), + [anon_sym_LBRACK] = ACTIONS(1051), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_RPAREN] = ACTIONS(1051), + [anon_sym_DOLLAR] = ACTIONS(1051), + [anon_sym_error] = ACTIONS(1051), + [anon_sym_GT] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_break] = ACTIONS(1051), + [anon_sym_continue] = ACTIONS(1051), + [anon_sym_for] = ACTIONS(1051), + [anon_sym_in] = ACTIONS(1051), + [anon_sym_loop] = ACTIONS(1051), + [anon_sym_while] = ACTIONS(1051), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_if] = ACTIONS(1051), + [anon_sym_match] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(1051), + [anon_sym_RBRACE] = ACTIONS(1051), + [anon_sym_DOT_DOT] = ACTIONS(1051), + [anon_sym_try] = ACTIONS(1051), + [anon_sym_return] = ACTIONS(1051), + [anon_sym_source] = ACTIONS(1051), + [anon_sym_source_DASHenv] = ACTIONS(1051), + [anon_sym_register] = ACTIONS(1051), + [anon_sym_hide] = ACTIONS(1051), + [anon_sym_hide_DASHenv] = ACTIONS(1051), + [anon_sym_overlay] = ACTIONS(1051), + [anon_sym_as] = ACTIONS(1051), + [anon_sym_STAR] = ACTIONS(1051), + [anon_sym_where] = ACTIONS(1051), + [anon_sym_STAR_STAR] = ACTIONS(1051), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_mod] = ACTIONS(1051), + [anon_sym_SLASH_SLASH] = ACTIONS(1051), + [anon_sym_PLUS] = ACTIONS(1051), + [anon_sym_bit_DASHshl] = ACTIONS(1051), + [anon_sym_bit_DASHshr] = ACTIONS(1051), + [anon_sym_EQ_EQ] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1051), + [anon_sym_LT2] = ACTIONS(1051), + [anon_sym_LT_EQ] = ACTIONS(1051), + [anon_sym_GT_EQ] = ACTIONS(1051), + [anon_sym_not_DASHin] = ACTIONS(1051), + [anon_sym_starts_DASHwith] = ACTIONS(1051), + [anon_sym_ends_DASHwith] = ACTIONS(1051), + [anon_sym_EQ_TILDE] = ACTIONS(1051), + [anon_sym_BANG_TILDE] = ACTIONS(1051), + [anon_sym_bit_DASHand] = ACTIONS(1051), + [anon_sym_bit_DASHxor] = ACTIONS(1051), + [anon_sym_bit_DASHor] = ACTIONS(1051), + [anon_sym_and] = ACTIONS(1051), + [anon_sym_xor] = ACTIONS(1051), + [anon_sym_or] = ACTIONS(1051), + [anon_sym_not] = ACTIONS(1051), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1051), + [anon_sym_DOT_DOT_LT] = ACTIONS(1051), + [anon_sym_null] = ACTIONS(1051), + [anon_sym_true] = ACTIONS(1051), + [anon_sym_false] = ACTIONS(1051), + [aux_sym__val_number_decimal_token1] = ACTIONS(1051), + [aux_sym__val_number_decimal_token2] = ACTIONS(1051), + [anon_sym_DOT2] = ACTIONS(1051), + [aux_sym__val_number_decimal_token3] = ACTIONS(1051), + [aux_sym__val_number_token1] = ACTIONS(1051), + [aux_sym__val_number_token2] = ACTIONS(1051), + [aux_sym__val_number_token3] = ACTIONS(1051), + [aux_sym__val_number_token4] = ACTIONS(1051), + [aux_sym__val_number_token5] = ACTIONS(1051), + [aux_sym__val_number_token6] = ACTIONS(1051), + [anon_sym_0b] = ACTIONS(1051), + [anon_sym_0o] = ACTIONS(1051), + [anon_sym_0x] = ACTIONS(1051), + [sym_val_date] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(1051), + [sym__str_single_quotes] = ACTIONS(1051), + [sym__str_back_ticks] = ACTIONS(1051), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1051), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1051), + [anon_sym_CARET] = ACTIONS(1051), + [anon_sym_POUND] = ACTIONS(113), + }, + [407] = { + [sym_comment] = STATE(407), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1279), + [anon_sym_let] = ACTIONS(1279), + [anon_sym_let_DASHenv] = ACTIONS(1279), + [anon_sym_mut] = ACTIONS(1279), + [anon_sym_const] = ACTIONS(1279), + [anon_sym_SEMI] = ACTIONS(1279), + [sym_cmd_identifier] = ACTIONS(1279), + [anon_sym_LF] = ACTIONS(1281), + [anon_sym_def] = ACTIONS(1279), + [anon_sym_export_DASHenv] = ACTIONS(1279), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_use] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_RPAREN] = ACTIONS(1279), + [anon_sym_DOLLAR] = ACTIONS(1279), + [anon_sym_error] = ACTIONS(1279), + [anon_sym_GT] = ACTIONS(1279), + [anon_sym_DASH_DASH] = ACTIONS(1279), + [anon_sym_DASH] = ACTIONS(1279), + [anon_sym_break] = ACTIONS(1279), + [anon_sym_continue] = ACTIONS(1279), + [anon_sym_for] = ACTIONS(1279), + [anon_sym_in] = ACTIONS(1279), + [anon_sym_loop] = ACTIONS(1279), + [anon_sym_while] = ACTIONS(1279), + [anon_sym_do] = ACTIONS(1279), + [anon_sym_if] = ACTIONS(1279), + [anon_sym_match] = ACTIONS(1279), + [anon_sym_LBRACE] = ACTIONS(1279), + [anon_sym_RBRACE] = ACTIONS(1279), + [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym_try] = ACTIONS(1279), + [anon_sym_return] = ACTIONS(1279), + [anon_sym_source] = ACTIONS(1279), + [anon_sym_source_DASHenv] = ACTIONS(1279), + [anon_sym_register] = ACTIONS(1279), + [anon_sym_hide] = ACTIONS(1279), + [anon_sym_hide_DASHenv] = ACTIONS(1279), + [anon_sym_overlay] = ACTIONS(1279), + [anon_sym_as] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1279), + [anon_sym_where] = ACTIONS(1279), + [anon_sym_STAR_STAR] = ACTIONS(1279), + [anon_sym_PLUS_PLUS] = ACTIONS(1279), + [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_mod] = ACTIONS(1279), + [anon_sym_SLASH_SLASH] = ACTIONS(1279), + [anon_sym_PLUS] = ACTIONS(1279), + [anon_sym_bit_DASHshl] = ACTIONS(1279), + [anon_sym_bit_DASHshr] = ACTIONS(1279), + [anon_sym_EQ_EQ] = ACTIONS(1279), + [anon_sym_BANG_EQ] = ACTIONS(1279), + [anon_sym_LT2] = ACTIONS(1279), + [anon_sym_LT_EQ] = ACTIONS(1279), + [anon_sym_GT_EQ] = ACTIONS(1279), + [anon_sym_not_DASHin] = ACTIONS(1279), + [anon_sym_starts_DASHwith] = ACTIONS(1279), + [anon_sym_ends_DASHwith] = ACTIONS(1279), + [anon_sym_EQ_TILDE] = ACTIONS(1279), + [anon_sym_BANG_TILDE] = ACTIONS(1279), + [anon_sym_bit_DASHand] = ACTIONS(1279), + [anon_sym_bit_DASHxor] = ACTIONS(1279), + [anon_sym_bit_DASHor] = ACTIONS(1279), + [anon_sym_and] = ACTIONS(1279), + [anon_sym_xor] = ACTIONS(1279), + [anon_sym_or] = ACTIONS(1279), + [anon_sym_not] = ACTIONS(1279), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1279), + [anon_sym_DOT_DOT_LT] = ACTIONS(1279), + [anon_sym_null] = ACTIONS(1279), + [anon_sym_true] = ACTIONS(1279), + [anon_sym_false] = ACTIONS(1279), + [aux_sym__val_number_decimal_token1] = ACTIONS(1279), + [aux_sym__val_number_decimal_token2] = ACTIONS(1279), + [anon_sym_DOT2] = ACTIONS(1279), + [aux_sym__val_number_decimal_token3] = ACTIONS(1279), + [aux_sym__val_number_token1] = ACTIONS(1279), + [aux_sym__val_number_token2] = ACTIONS(1279), + [aux_sym__val_number_token3] = ACTIONS(1279), + [aux_sym__val_number_token4] = ACTIONS(1279), + [aux_sym__val_number_token5] = ACTIONS(1279), + [aux_sym__val_number_token6] = ACTIONS(1279), + [anon_sym_0b] = ACTIONS(1279), + [anon_sym_0o] = ACTIONS(1279), + [anon_sym_0x] = ACTIONS(1279), + [sym_val_date] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(1279), + [sym__str_single_quotes] = ACTIONS(1279), + [sym__str_back_ticks] = ACTIONS(1279), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1279), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1279), + [anon_sym_CARET] = ACTIONS(1279), + [anon_sym_POUND] = ACTIONS(113), + }, + [408] = { + [sym_comment] = STATE(408), + [anon_sym_export] = ACTIONS(1037), + [anon_sym_alias] = ACTIONS(1037), + [anon_sym_EQ] = ACTIONS(1037), + [anon_sym_let] = ACTIONS(1037), + [anon_sym_let_DASHenv] = ACTIONS(1037), + [anon_sym_mut] = ACTIONS(1037), + [anon_sym_const] = ACTIONS(1037), + [anon_sym_PLUS_EQ] = ACTIONS(1037), + [anon_sym_DASH_EQ] = ACTIONS(1037), + [anon_sym_STAR_EQ] = ACTIONS(1037), + [anon_sym_SLASH_EQ] = ACTIONS(1037), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1037), + [anon_sym_SEMI] = ACTIONS(1037), + [sym_cmd_identifier] = ACTIONS(1037), + [anon_sym_LF] = ACTIONS(1039), + [anon_sym_def] = ACTIONS(1037), + [anon_sym_export_DASHenv] = ACTIONS(1037), + [anon_sym_extern] = ACTIONS(1037), + [anon_sym_module] = ACTIONS(1037), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_COLON] = ACTIONS(1037), + [anon_sym_COMMA] = ACTIONS(1037), + [anon_sym_LPAREN] = ACTIONS(1037), + [anon_sym_PIPE] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1037), + [anon_sym_error] = ACTIONS(1037), + [anon_sym_list] = ACTIONS(1037), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_break] = ACTIONS(1037), + [anon_sym_continue] = ACTIONS(1037), + [anon_sym_for] = ACTIONS(1037), + [anon_sym_in] = ACTIONS(1037), + [anon_sym_loop] = ACTIONS(1037), + [anon_sym_make] = ACTIONS(1037), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_do] = ACTIONS(1037), + [anon_sym_if] = ACTIONS(1037), + [anon_sym_else] = ACTIONS(1037), + [anon_sym_match] = ACTIONS(1037), + [anon_sym_RBRACE] = ACTIONS(1037), + [anon_sym_try] = ACTIONS(1037), + [anon_sym_catch] = ACTIONS(1037), + [anon_sym_return] = ACTIONS(1037), + [anon_sym_source] = ACTIONS(1037), + [anon_sym_source_DASHenv] = ACTIONS(1037), + [anon_sym_register] = ACTIONS(1037), + [anon_sym_hide] = ACTIONS(1037), + [anon_sym_hide_DASHenv] = ACTIONS(1037), + [anon_sym_overlay] = ACTIONS(1037), + [anon_sym_new] = ACTIONS(1037), + [anon_sym_as] = ACTIONS(1037), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_STAR_STAR] = ACTIONS(1037), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1037), + [anon_sym_mod] = ACTIONS(1037), + [anon_sym_SLASH_SLASH] = ACTIONS(1037), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_bit_DASHshl] = ACTIONS(1037), + [anon_sym_bit_DASHshr] = ACTIONS(1037), + [anon_sym_EQ_EQ] = ACTIONS(1037), + [anon_sym_BANG_EQ] = ACTIONS(1037), + [anon_sym_LT2] = ACTIONS(1037), + [anon_sym_LT_EQ] = ACTIONS(1037), + [anon_sym_GT_EQ] = ACTIONS(1037), + [anon_sym_not_DASHin] = ACTIONS(1037), + [anon_sym_starts_DASHwith] = ACTIONS(1037), + [anon_sym_ends_DASHwith] = ACTIONS(1037), + [anon_sym_EQ_TILDE] = ACTIONS(1037), + [anon_sym_BANG_TILDE] = ACTIONS(1037), + [anon_sym_bit_DASHand] = ACTIONS(1037), + [anon_sym_bit_DASHxor] = ACTIONS(1037), + [anon_sym_bit_DASHor] = ACTIONS(1037), + [anon_sym_and] = ACTIONS(1037), + [anon_sym_xor] = ACTIONS(1037), + [anon_sym_or] = ACTIONS(1037), + [anon_sym_DOT_DOT2] = ACTIONS(1037), + [anon_sym_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1039), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1039), + [aux_sym__val_number_decimal_token1] = ACTIONS(1037), + [aux_sym__val_number_decimal_token2] = ACTIONS(1037), + [anon_sym_DOT2] = ACTIONS(1037), + [aux_sym__val_number_decimal_token3] = ACTIONS(1037), + [aux_sym__val_number_token1] = ACTIONS(1037), + [aux_sym__val_number_token2] = ACTIONS(1037), + [aux_sym__val_number_token3] = ACTIONS(1037), + [aux_sym__val_number_token4] = ACTIONS(1037), + [aux_sym__val_number_token5] = ACTIONS(1037), + [aux_sym__val_number_token6] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1037), + [sym__str_single_quotes] = ACTIONS(1037), + [sym__str_back_ticks] = ACTIONS(1037), + [aux_sym__record_key_token2] = ACTIONS(1037), + [anon_sym_POUND] = ACTIONS(113), + }, + [409] = { + [sym_comment] = STATE(409), + [ts_builtin_sym_end] = ACTIONS(1161), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_alias] = ACTIONS(1159), + [anon_sym_let] = ACTIONS(1159), + [anon_sym_let_DASHenv] = ACTIONS(1159), + [anon_sym_mut] = ACTIONS(1159), + [anon_sym_const] = ACTIONS(1159), + [anon_sym_SEMI] = ACTIONS(1159), + [sym_cmd_identifier] = ACTIONS(1159), + [anon_sym_LF] = ACTIONS(1161), + [anon_sym_def] = ACTIONS(1159), + [anon_sym_export_DASHenv] = ACTIONS(1159), + [anon_sym_extern] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_use] = ACTIONS(1159), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LPAREN] = ACTIONS(1159), + [anon_sym_DOLLAR] = ACTIONS(1159), + [anon_sym_error] = ACTIONS(1159), + [anon_sym_GT] = ACTIONS(1159), + [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_DASH] = ACTIONS(1159), + [anon_sym_break] = ACTIONS(1159), + [anon_sym_continue] = ACTIONS(1159), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_in] = ACTIONS(1159), + [anon_sym_loop] = ACTIONS(1159), + [anon_sym_while] = ACTIONS(1159), + [anon_sym_do] = ACTIONS(1159), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_match] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(1159), + [anon_sym_DOT_DOT] = ACTIONS(1159), + [anon_sym_try] = ACTIONS(1159), + [anon_sym_return] = ACTIONS(1159), + [anon_sym_source] = ACTIONS(1159), + [anon_sym_source_DASHenv] = ACTIONS(1159), + [anon_sym_register] = ACTIONS(1159), + [anon_sym_hide] = ACTIONS(1159), + [anon_sym_hide_DASHenv] = ACTIONS(1159), + [anon_sym_overlay] = ACTIONS(1159), + [anon_sym_as] = ACTIONS(1159), + [anon_sym_STAR] = ACTIONS(1159), + [anon_sym_where] = ACTIONS(1159), + [anon_sym_STAR_STAR] = ACTIONS(1159), + [anon_sym_PLUS_PLUS] = ACTIONS(1159), + [anon_sym_SLASH] = ACTIONS(1159), + [anon_sym_mod] = ACTIONS(1159), + [anon_sym_SLASH_SLASH] = ACTIONS(1159), + [anon_sym_PLUS] = ACTIONS(1159), + [anon_sym_bit_DASHshl] = ACTIONS(1159), + [anon_sym_bit_DASHshr] = ACTIONS(1159), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_LT2] = ACTIONS(1159), + [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_not_DASHin] = ACTIONS(1159), + [anon_sym_starts_DASHwith] = ACTIONS(1159), + [anon_sym_ends_DASHwith] = ACTIONS(1159), + [anon_sym_EQ_TILDE] = ACTIONS(1159), + [anon_sym_BANG_TILDE] = ACTIONS(1159), + [anon_sym_bit_DASHand] = ACTIONS(1159), + [anon_sym_bit_DASHxor] = ACTIONS(1159), + [anon_sym_bit_DASHor] = ACTIONS(1159), + [anon_sym_and] = ACTIONS(1159), + [anon_sym_xor] = ACTIONS(1159), + [anon_sym_or] = ACTIONS(1159), + [anon_sym_not] = ACTIONS(1159), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1159), + [anon_sym_DOT_DOT_LT] = ACTIONS(1159), + [anon_sym_null] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1159), + [anon_sym_false] = ACTIONS(1159), + [aux_sym__val_number_decimal_token1] = ACTIONS(1159), + [aux_sym__val_number_decimal_token2] = ACTIONS(1159), + [anon_sym_DOT2] = ACTIONS(1159), + [aux_sym__val_number_decimal_token3] = ACTIONS(1159), + [aux_sym__val_number_token1] = ACTIONS(1159), + [aux_sym__val_number_token2] = ACTIONS(1159), + [aux_sym__val_number_token3] = ACTIONS(1159), + [aux_sym__val_number_token4] = ACTIONS(1159), + [aux_sym__val_number_token5] = ACTIONS(1159), + [aux_sym__val_number_token6] = ACTIONS(1159), + [anon_sym_0b] = ACTIONS(1159), + [anon_sym_0o] = ACTIONS(1159), + [anon_sym_0x] = ACTIONS(1159), + [sym_val_date] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(1159), + [sym__str_single_quotes] = ACTIONS(1159), + [sym__str_back_ticks] = ACTIONS(1159), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1159), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1159), + [anon_sym_CARET] = ACTIONS(1159), + [aux_sym_unquoted_token6] = ACTIONS(1163), + [anon_sym_POUND] = ACTIONS(113), + }, + [410] = { + [sym_comment] = STATE(410), + [anon_sym_export] = ACTIONS(1283), + [anon_sym_alias] = ACTIONS(1283), + [anon_sym_let] = ACTIONS(1283), + [anon_sym_let_DASHenv] = ACTIONS(1283), + [anon_sym_mut] = ACTIONS(1283), + [anon_sym_const] = ACTIONS(1283), + [anon_sym_SEMI] = ACTIONS(1283), + [sym_cmd_identifier] = ACTIONS(1283), + [anon_sym_LF] = ACTIONS(1285), + [anon_sym_def] = ACTIONS(1283), + [anon_sym_export_DASHenv] = ACTIONS(1283), + [anon_sym_extern] = ACTIONS(1283), + [anon_sym_module] = ACTIONS(1283), + [anon_sym_use] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_LPAREN] = ACTIONS(1283), + [anon_sym_RPAREN] = ACTIONS(1283), + [anon_sym_DOLLAR] = ACTIONS(1283), + [anon_sym_error] = ACTIONS(1283), + [anon_sym_GT] = ACTIONS(1283), + [anon_sym_DASH_DASH] = ACTIONS(1283), + [anon_sym_DASH] = ACTIONS(1283), + [anon_sym_break] = ACTIONS(1283), + [anon_sym_continue] = ACTIONS(1283), + [anon_sym_for] = ACTIONS(1283), + [anon_sym_in] = ACTIONS(1283), + [anon_sym_loop] = ACTIONS(1283), + [anon_sym_while] = ACTIONS(1283), + [anon_sym_do] = ACTIONS(1283), + [anon_sym_if] = ACTIONS(1283), + [anon_sym_match] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1283), + [anon_sym_RBRACE] = ACTIONS(1283), + [anon_sym_DOT_DOT] = ACTIONS(1283), + [anon_sym_try] = ACTIONS(1283), + [anon_sym_return] = ACTIONS(1283), + [anon_sym_source] = ACTIONS(1283), + [anon_sym_source_DASHenv] = ACTIONS(1283), + [anon_sym_register] = ACTIONS(1283), + [anon_sym_hide] = ACTIONS(1283), + [anon_sym_hide_DASHenv] = ACTIONS(1283), + [anon_sym_overlay] = ACTIONS(1283), + [anon_sym_as] = ACTIONS(1283), + [anon_sym_STAR] = ACTIONS(1283), + [anon_sym_where] = ACTIONS(1283), + [anon_sym_STAR_STAR] = ACTIONS(1283), + [anon_sym_PLUS_PLUS] = ACTIONS(1283), + [anon_sym_SLASH] = ACTIONS(1283), + [anon_sym_mod] = ACTIONS(1283), + [anon_sym_SLASH_SLASH] = ACTIONS(1283), + [anon_sym_PLUS] = ACTIONS(1283), + [anon_sym_bit_DASHshl] = ACTIONS(1283), + [anon_sym_bit_DASHshr] = ACTIONS(1283), + [anon_sym_EQ_EQ] = ACTIONS(1283), + [anon_sym_BANG_EQ] = ACTIONS(1283), + [anon_sym_LT2] = ACTIONS(1283), + [anon_sym_LT_EQ] = ACTIONS(1283), + [anon_sym_GT_EQ] = ACTIONS(1283), + [anon_sym_not_DASHin] = ACTIONS(1283), + [anon_sym_starts_DASHwith] = ACTIONS(1283), + [anon_sym_ends_DASHwith] = ACTIONS(1283), + [anon_sym_EQ_TILDE] = ACTIONS(1283), + [anon_sym_BANG_TILDE] = ACTIONS(1283), + [anon_sym_bit_DASHand] = ACTIONS(1283), + [anon_sym_bit_DASHxor] = ACTIONS(1283), + [anon_sym_bit_DASHor] = ACTIONS(1283), + [anon_sym_and] = ACTIONS(1283), + [anon_sym_xor] = ACTIONS(1283), + [anon_sym_or] = ACTIONS(1283), + [anon_sym_not] = ACTIONS(1283), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1283), + [anon_sym_DOT_DOT_LT] = ACTIONS(1283), + [anon_sym_null] = ACTIONS(1283), + [anon_sym_true] = ACTIONS(1283), + [anon_sym_false] = ACTIONS(1283), + [aux_sym__val_number_decimal_token1] = ACTIONS(1283), + [aux_sym__val_number_decimal_token2] = ACTIONS(1283), + [anon_sym_DOT2] = ACTIONS(1283), + [aux_sym__val_number_decimal_token3] = ACTIONS(1283), + [aux_sym__val_number_token1] = ACTIONS(1283), + [aux_sym__val_number_token2] = ACTIONS(1283), + [aux_sym__val_number_token3] = ACTIONS(1283), + [aux_sym__val_number_token4] = ACTIONS(1283), + [aux_sym__val_number_token5] = ACTIONS(1283), + [aux_sym__val_number_token6] = ACTIONS(1283), + [anon_sym_0b] = ACTIONS(1283), + [anon_sym_0o] = ACTIONS(1283), + [anon_sym_0x] = ACTIONS(1283), + [sym_val_date] = ACTIONS(1283), + [anon_sym_DQUOTE] = ACTIONS(1283), + [sym__str_single_quotes] = ACTIONS(1283), + [sym__str_back_ticks] = ACTIONS(1283), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1283), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1283), + [anon_sym_CARET] = ACTIONS(1283), + [anon_sym_POUND] = ACTIONS(113), + }, + [411] = { + [sym_comment] = STATE(411), + [ts_builtin_sym_end] = ACTIONS(1131), + [anon_sym_export] = ACTIONS(1129), + [anon_sym_alias] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_let_DASHenv] = ACTIONS(1129), + [anon_sym_mut] = ACTIONS(1129), + [anon_sym_const] = ACTIONS(1129), + [anon_sym_SEMI] = ACTIONS(1129), + [sym_cmd_identifier] = ACTIONS(1129), + [anon_sym_LF] = ACTIONS(1131), + [anon_sym_def] = ACTIONS(1129), + [anon_sym_export_DASHenv] = ACTIONS(1129), + [anon_sym_extern] = ACTIONS(1129), + [anon_sym_module] = ACTIONS(1129), + [anon_sym_use] = ACTIONS(1129), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(1129), + [anon_sym_DOLLAR] = ACTIONS(1129), + [anon_sym_error] = ACTIONS(1129), + [anon_sym_GT] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_break] = ACTIONS(1129), + [anon_sym_continue] = ACTIONS(1129), + [anon_sym_for] = ACTIONS(1129), + [anon_sym_in] = ACTIONS(1129), + [anon_sym_loop] = ACTIONS(1129), + [anon_sym_while] = ACTIONS(1129), + [anon_sym_do] = ACTIONS(1129), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(1129), + [anon_sym_DOT_DOT] = ACTIONS(1129), + [anon_sym_try] = ACTIONS(1129), + [anon_sym_return] = ACTIONS(1129), + [anon_sym_source] = ACTIONS(1129), + [anon_sym_source_DASHenv] = ACTIONS(1129), + [anon_sym_register] = ACTIONS(1129), + [anon_sym_hide] = ACTIONS(1129), + [anon_sym_hide_DASHenv] = ACTIONS(1129), + [anon_sym_overlay] = ACTIONS(1129), + [anon_sym_as] = ACTIONS(1129), + [anon_sym_STAR] = ACTIONS(1129), + [anon_sym_where] = ACTIONS(1129), + [anon_sym_STAR_STAR] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(1129), + [anon_sym_mod] = ACTIONS(1129), + [anon_sym_SLASH_SLASH] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_bit_DASHshl] = ACTIONS(1129), + [anon_sym_bit_DASHshr] = ACTIONS(1129), + [anon_sym_EQ_EQ] = ACTIONS(1129), + [anon_sym_BANG_EQ] = ACTIONS(1129), + [anon_sym_LT2] = ACTIONS(1129), + [anon_sym_LT_EQ] = ACTIONS(1129), + [anon_sym_GT_EQ] = ACTIONS(1129), + [anon_sym_not_DASHin] = ACTIONS(1129), + [anon_sym_starts_DASHwith] = ACTIONS(1129), + [anon_sym_ends_DASHwith] = ACTIONS(1129), + [anon_sym_EQ_TILDE] = ACTIONS(1129), + [anon_sym_BANG_TILDE] = ACTIONS(1129), + [anon_sym_bit_DASHand] = ACTIONS(1129), + [anon_sym_bit_DASHxor] = ACTIONS(1129), + [anon_sym_bit_DASHor] = ACTIONS(1129), + [anon_sym_and] = ACTIONS(1129), + [anon_sym_xor] = ACTIONS(1129), + [anon_sym_or] = ACTIONS(1129), + [anon_sym_not] = ACTIONS(1129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1129), + [anon_sym_DOT_DOT_LT] = ACTIONS(1129), + [anon_sym_null] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1129), + [anon_sym_false] = ACTIONS(1129), + [aux_sym__val_number_decimal_token1] = ACTIONS(1129), + [aux_sym__val_number_decimal_token2] = ACTIONS(1129), + [anon_sym_DOT2] = ACTIONS(1129), + [aux_sym__val_number_decimal_token3] = ACTIONS(1129), + [aux_sym__val_number_token1] = ACTIONS(1129), + [aux_sym__val_number_token2] = ACTIONS(1129), + [aux_sym__val_number_token3] = ACTIONS(1129), + [aux_sym__val_number_token4] = ACTIONS(1129), + [aux_sym__val_number_token5] = ACTIONS(1129), + [aux_sym__val_number_token6] = ACTIONS(1129), + [anon_sym_0b] = ACTIONS(1129), + [anon_sym_0o] = ACTIONS(1129), + [anon_sym_0x] = ACTIONS(1129), + [sym_val_date] = ACTIONS(1129), + [anon_sym_DQUOTE] = ACTIONS(1129), + [sym__str_single_quotes] = ACTIONS(1129), + [sym__str_back_ticks] = ACTIONS(1129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1129), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1129), + [anon_sym_CARET] = ACTIONS(1129), + [aux_sym_unquoted_token6] = ACTIONS(1133), + [anon_sym_POUND] = ACTIONS(113), + }, + [412] = { + [sym_comment] = STATE(412), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_alias] = ACTIONS(1068), + [anon_sym_let] = ACTIONS(1068), + [anon_sym_let_DASHenv] = ACTIONS(1068), + [anon_sym_mut] = ACTIONS(1068), + [anon_sym_const] = ACTIONS(1068), + [anon_sym_SEMI] = ACTIONS(1068), + [sym_cmd_identifier] = ACTIONS(1068), + [anon_sym_LF] = ACTIONS(1070), + [anon_sym_def] = ACTIONS(1068), + [anon_sym_export_DASHenv] = ACTIONS(1068), + [anon_sym_extern] = ACTIONS(1068), + [anon_sym_module] = ACTIONS(1068), + [anon_sym_use] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(1068), + [anon_sym_LPAREN] = ACTIONS(1068), + [anon_sym_RPAREN] = ACTIONS(1068), + [anon_sym_DOLLAR] = ACTIONS(1068), + [anon_sym_error] = ACTIONS(1068), + [anon_sym_GT] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1068), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_break] = ACTIONS(1068), + [anon_sym_continue] = ACTIONS(1068), + [anon_sym_for] = ACTIONS(1068), + [anon_sym_in] = ACTIONS(1068), + [anon_sym_loop] = ACTIONS(1068), + [anon_sym_while] = ACTIONS(1068), + [anon_sym_do] = ACTIONS(1068), + [anon_sym_if] = ACTIONS(1068), + [anon_sym_match] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_RBRACE] = ACTIONS(1068), + [anon_sym_DOT_DOT] = ACTIONS(1068), + [anon_sym_try] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1068), + [anon_sym_source] = ACTIONS(1068), + [anon_sym_source_DASHenv] = ACTIONS(1068), + [anon_sym_register] = ACTIONS(1068), + [anon_sym_hide] = ACTIONS(1068), + [anon_sym_hide_DASHenv] = ACTIONS(1068), + [anon_sym_overlay] = ACTIONS(1068), + [anon_sym_as] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_where] = ACTIONS(1068), + [anon_sym_STAR_STAR] = ACTIONS(1068), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_SLASH] = ACTIONS(1068), + [anon_sym_mod] = ACTIONS(1068), + [anon_sym_SLASH_SLASH] = ACTIONS(1068), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_bit_DASHshl] = ACTIONS(1068), + [anon_sym_bit_DASHshr] = ACTIONS(1068), + [anon_sym_EQ_EQ] = ACTIONS(1068), + [anon_sym_BANG_EQ] = ACTIONS(1068), + [anon_sym_LT2] = ACTIONS(1068), + [anon_sym_LT_EQ] = ACTIONS(1068), + [anon_sym_GT_EQ] = ACTIONS(1068), + [anon_sym_not_DASHin] = ACTIONS(1068), + [anon_sym_starts_DASHwith] = ACTIONS(1068), + [anon_sym_ends_DASHwith] = ACTIONS(1068), + [anon_sym_EQ_TILDE] = ACTIONS(1068), + [anon_sym_BANG_TILDE] = ACTIONS(1068), + [anon_sym_bit_DASHand] = ACTIONS(1068), + [anon_sym_bit_DASHxor] = ACTIONS(1068), + [anon_sym_bit_DASHor] = ACTIONS(1068), + [anon_sym_and] = ACTIONS(1068), + [anon_sym_xor] = ACTIONS(1068), + [anon_sym_or] = ACTIONS(1068), + [anon_sym_not] = ACTIONS(1068), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1068), + [anon_sym_DOT_DOT_LT] = ACTIONS(1068), + [anon_sym_null] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1068), + [anon_sym_false] = ACTIONS(1068), + [aux_sym__val_number_decimal_token1] = ACTIONS(1068), + [aux_sym__val_number_decimal_token2] = ACTIONS(1068), + [anon_sym_DOT2] = ACTIONS(1068), + [aux_sym__val_number_decimal_token3] = ACTIONS(1068), + [aux_sym__val_number_token1] = ACTIONS(1068), + [aux_sym__val_number_token2] = ACTIONS(1068), + [aux_sym__val_number_token3] = ACTIONS(1068), + [aux_sym__val_number_token4] = ACTIONS(1068), + [aux_sym__val_number_token5] = ACTIONS(1068), + [aux_sym__val_number_token6] = ACTIONS(1068), + [anon_sym_0b] = ACTIONS(1068), + [anon_sym_0o] = ACTIONS(1068), + [anon_sym_0x] = ACTIONS(1068), + [sym_val_date] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(1068), + [sym__str_single_quotes] = ACTIONS(1068), + [sym__str_back_ticks] = ACTIONS(1068), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1068), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1068), + [anon_sym_CARET] = ACTIONS(1068), + [anon_sym_POUND] = ACTIONS(113), + }, + [413] = { + [sym_comment] = STATE(413), + [ts_builtin_sym_end] = ACTIONS(1137), + [anon_sym_export] = ACTIONS(1135), + [anon_sym_alias] = ACTIONS(1135), + [anon_sym_let] = ACTIONS(1135), + [anon_sym_let_DASHenv] = ACTIONS(1135), + [anon_sym_mut] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_SEMI] = ACTIONS(1135), + [sym_cmd_identifier] = ACTIONS(1135), + [anon_sym_LF] = ACTIONS(1137), + [anon_sym_def] = ACTIONS(1135), + [anon_sym_export_DASHenv] = ACTIONS(1135), + [anon_sym_extern] = ACTIONS(1135), + [anon_sym_module] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1135), + [anon_sym_LPAREN] = ACTIONS(1135), + [anon_sym_DOLLAR] = ACTIONS(1135), + [anon_sym_error] = ACTIONS(1135), + [anon_sym_GT] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1135), + [anon_sym_for] = ACTIONS(1135), + [anon_sym_in] = ACTIONS(1135), + [anon_sym_loop] = ACTIONS(1135), + [anon_sym_while] = ACTIONS(1135), + [anon_sym_do] = ACTIONS(1135), + [anon_sym_if] = ACTIONS(1135), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1135), + [anon_sym_DOT_DOT] = ACTIONS(1135), + [anon_sym_try] = ACTIONS(1135), + [anon_sym_return] = ACTIONS(1135), + [anon_sym_source] = ACTIONS(1135), + [anon_sym_source_DASHenv] = ACTIONS(1135), + [anon_sym_register] = ACTIONS(1135), + [anon_sym_hide] = ACTIONS(1135), + [anon_sym_hide_DASHenv] = ACTIONS(1135), + [anon_sym_overlay] = ACTIONS(1135), + [anon_sym_as] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1135), + [anon_sym_where] = ACTIONS(1135), + [anon_sym_STAR_STAR] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_SLASH] = ACTIONS(1135), + [anon_sym_mod] = ACTIONS(1135), + [anon_sym_SLASH_SLASH] = ACTIONS(1135), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_bit_DASHshl] = ACTIONS(1135), + [anon_sym_bit_DASHshr] = ACTIONS(1135), + [anon_sym_EQ_EQ] = ACTIONS(1135), + [anon_sym_BANG_EQ] = ACTIONS(1135), + [anon_sym_LT2] = ACTIONS(1135), + [anon_sym_LT_EQ] = ACTIONS(1135), + [anon_sym_GT_EQ] = ACTIONS(1135), + [anon_sym_not_DASHin] = ACTIONS(1135), + [anon_sym_starts_DASHwith] = ACTIONS(1135), + [anon_sym_ends_DASHwith] = ACTIONS(1135), + [anon_sym_EQ_TILDE] = ACTIONS(1135), + [anon_sym_BANG_TILDE] = ACTIONS(1135), + [anon_sym_bit_DASHand] = ACTIONS(1135), + [anon_sym_bit_DASHxor] = ACTIONS(1135), + [anon_sym_bit_DASHor] = ACTIONS(1135), + [anon_sym_and] = ACTIONS(1135), + [anon_sym_xor] = ACTIONS(1135), + [anon_sym_or] = ACTIONS(1135), + [anon_sym_not] = ACTIONS(1135), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1135), + [anon_sym_DOT_DOT_LT] = ACTIONS(1135), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_true] = ACTIONS(1135), + [anon_sym_false] = ACTIONS(1135), + [aux_sym__val_number_decimal_token1] = ACTIONS(1135), + [aux_sym__val_number_decimal_token2] = ACTIONS(1135), + [anon_sym_DOT2] = ACTIONS(1135), + [aux_sym__val_number_decimal_token3] = ACTIONS(1135), + [aux_sym__val_number_token1] = ACTIONS(1135), + [aux_sym__val_number_token2] = ACTIONS(1135), + [aux_sym__val_number_token3] = ACTIONS(1135), + [aux_sym__val_number_token4] = ACTIONS(1135), + [aux_sym__val_number_token5] = ACTIONS(1135), + [aux_sym__val_number_token6] = ACTIONS(1135), + [anon_sym_0b] = ACTIONS(1135), + [anon_sym_0o] = ACTIONS(1135), + [anon_sym_0x] = ACTIONS(1135), + [sym_val_date] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1135), + [sym__str_single_quotes] = ACTIONS(1135), + [sym__str_back_ticks] = ACTIONS(1135), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1135), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1135), + [anon_sym_CARET] = ACTIONS(1135), + [aux_sym_unquoted_token6] = ACTIONS(1133), + [anon_sym_POUND] = ACTIONS(113), + }, + [414] = { + [sym_comment] = STATE(414), + [ts_builtin_sym_end] = ACTIONS(1049), + [anon_sym_export] = ACTIONS(1047), + [anon_sym_alias] = ACTIONS(1047), + [anon_sym_let] = ACTIONS(1047), + [anon_sym_let_DASHenv] = ACTIONS(1047), + [anon_sym_mut] = ACTIONS(1047), + [anon_sym_const] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1047), + [sym_cmd_identifier] = ACTIONS(1047), + [anon_sym_LF] = ACTIONS(1049), + [anon_sym_def] = ACTIONS(1047), + [anon_sym_export_DASHenv] = ACTIONS(1047), + [anon_sym_extern] = ACTIONS(1047), + [anon_sym_module] = ACTIONS(1047), + [anon_sym_use] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1047), + [anon_sym_error] = ACTIONS(1047), + [anon_sym_GT] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_break] = ACTIONS(1047), + [anon_sym_continue] = ACTIONS(1047), + [anon_sym_for] = ACTIONS(1047), + [anon_sym_in] = ACTIONS(1047), + [anon_sym_loop] = ACTIONS(1047), + [anon_sym_while] = ACTIONS(1047), + [anon_sym_do] = ACTIONS(1047), + [anon_sym_if] = ACTIONS(1047), + [anon_sym_match] = ACTIONS(1047), + [anon_sym_LBRACE] = ACTIONS(1047), + [anon_sym_DOT_DOT] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1047), + [anon_sym_return] = ACTIONS(1047), + [anon_sym_source] = ACTIONS(1047), + [anon_sym_source_DASHenv] = ACTIONS(1047), + [anon_sym_register] = ACTIONS(1047), + [anon_sym_hide] = ACTIONS(1047), + [anon_sym_hide_DASHenv] = ACTIONS(1047), + [anon_sym_overlay] = ACTIONS(1047), + [anon_sym_as] = ACTIONS(1047), + [anon_sym_STAR] = ACTIONS(1047), + [anon_sym_where] = ACTIONS(1047), + [anon_sym_STAR_STAR] = ACTIONS(1047), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_SLASH] = ACTIONS(1047), + [anon_sym_mod] = ACTIONS(1047), + [anon_sym_SLASH_SLASH] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1047), + [anon_sym_bit_DASHshl] = ACTIONS(1047), + [anon_sym_bit_DASHshr] = ACTIONS(1047), + [anon_sym_EQ_EQ] = ACTIONS(1047), + [anon_sym_BANG_EQ] = ACTIONS(1047), + [anon_sym_LT2] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1047), + [anon_sym_GT_EQ] = ACTIONS(1047), + [anon_sym_not_DASHin] = ACTIONS(1047), + [anon_sym_starts_DASHwith] = ACTIONS(1047), + [anon_sym_ends_DASHwith] = ACTIONS(1047), + [anon_sym_EQ_TILDE] = ACTIONS(1047), + [anon_sym_BANG_TILDE] = ACTIONS(1047), + [anon_sym_bit_DASHand] = ACTIONS(1047), + [anon_sym_bit_DASHxor] = ACTIONS(1047), + [anon_sym_bit_DASHor] = ACTIONS(1047), + [anon_sym_and] = ACTIONS(1047), + [anon_sym_xor] = ACTIONS(1047), + [anon_sym_or] = ACTIONS(1047), + [anon_sym_not] = ACTIONS(1047), + [anon_sym_DOT] = ACTIONS(1047), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1047), + [anon_sym_DOT_DOT_LT] = ACTIONS(1047), + [anon_sym_null] = ACTIONS(1047), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [aux_sym__val_number_decimal_token1] = ACTIONS(1047), + [aux_sym__val_number_decimal_token2] = ACTIONS(1047), + [anon_sym_DOT2] = ACTIONS(1047), + [aux_sym__val_number_decimal_token3] = ACTIONS(1047), + [aux_sym__val_number_token1] = ACTIONS(1047), + [aux_sym__val_number_token2] = ACTIONS(1047), + [aux_sym__val_number_token3] = ACTIONS(1047), + [aux_sym__val_number_token4] = ACTIONS(1047), + [aux_sym__val_number_token5] = ACTIONS(1047), + [aux_sym__val_number_token6] = ACTIONS(1047), + [anon_sym_0b] = ACTIONS(1047), + [anon_sym_0o] = ACTIONS(1047), + [anon_sym_0x] = ACTIONS(1047), + [sym_val_date] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1047), + [sym__str_single_quotes] = ACTIONS(1047), + [sym__str_back_ticks] = ACTIONS(1047), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1047), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1047), + [anon_sym_CARET] = ACTIONS(1047), + [anon_sym_POUND] = ACTIONS(113), + }, + [415] = { + [sym_comment] = STATE(415), + [anon_sym_export] = ACTIONS(1287), + [anon_sym_alias] = ACTIONS(1287), + [anon_sym_let] = ACTIONS(1287), + [anon_sym_let_DASHenv] = ACTIONS(1287), + [anon_sym_mut] = ACTIONS(1287), + [anon_sym_const] = ACTIONS(1287), + [anon_sym_SEMI] = ACTIONS(1287), + [sym_cmd_identifier] = ACTIONS(1287), + [anon_sym_LF] = ACTIONS(1289), + [anon_sym_def] = ACTIONS(1287), + [anon_sym_export_DASHenv] = ACTIONS(1287), + [anon_sym_extern] = ACTIONS(1287), + [anon_sym_module] = ACTIONS(1287), + [anon_sym_use] = ACTIONS(1287), + [anon_sym_LBRACK] = ACTIONS(1287), + [anon_sym_LPAREN] = ACTIONS(1287), + [anon_sym_RPAREN] = ACTIONS(1287), + [anon_sym_DOLLAR] = ACTIONS(1287), + [anon_sym_error] = ACTIONS(1287), + [anon_sym_GT] = ACTIONS(1287), + [anon_sym_DASH_DASH] = ACTIONS(1287), + [anon_sym_DASH] = ACTIONS(1287), + [anon_sym_break] = ACTIONS(1287), + [anon_sym_continue] = ACTIONS(1287), + [anon_sym_for] = ACTIONS(1287), + [anon_sym_in] = ACTIONS(1287), + [anon_sym_loop] = ACTIONS(1287), + [anon_sym_while] = ACTIONS(1287), + [anon_sym_do] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1287), + [anon_sym_match] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1287), + [anon_sym_RBRACE] = ACTIONS(1287), + [anon_sym_DOT_DOT] = ACTIONS(1287), + [anon_sym_try] = ACTIONS(1287), + [anon_sym_return] = ACTIONS(1287), + [anon_sym_source] = ACTIONS(1287), + [anon_sym_source_DASHenv] = ACTIONS(1287), + [anon_sym_register] = ACTIONS(1287), + [anon_sym_hide] = ACTIONS(1287), + [anon_sym_hide_DASHenv] = ACTIONS(1287), + [anon_sym_overlay] = ACTIONS(1287), + [anon_sym_as] = ACTIONS(1287), + [anon_sym_STAR] = ACTIONS(1287), + [anon_sym_where] = ACTIONS(1287), + [anon_sym_STAR_STAR] = ACTIONS(1287), + [anon_sym_PLUS_PLUS] = ACTIONS(1287), + [anon_sym_SLASH] = ACTIONS(1287), + [anon_sym_mod] = ACTIONS(1287), + [anon_sym_SLASH_SLASH] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1287), + [anon_sym_bit_DASHshl] = ACTIONS(1287), + [anon_sym_bit_DASHshr] = ACTIONS(1287), + [anon_sym_EQ_EQ] = ACTIONS(1287), + [anon_sym_BANG_EQ] = ACTIONS(1287), + [anon_sym_LT2] = ACTIONS(1287), + [anon_sym_LT_EQ] = ACTIONS(1287), + [anon_sym_GT_EQ] = ACTIONS(1287), + [anon_sym_not_DASHin] = ACTIONS(1287), + [anon_sym_starts_DASHwith] = ACTIONS(1287), + [anon_sym_ends_DASHwith] = ACTIONS(1287), + [anon_sym_EQ_TILDE] = ACTIONS(1287), + [anon_sym_BANG_TILDE] = ACTIONS(1287), + [anon_sym_bit_DASHand] = ACTIONS(1287), + [anon_sym_bit_DASHxor] = ACTIONS(1287), + [anon_sym_bit_DASHor] = ACTIONS(1287), + [anon_sym_and] = ACTIONS(1287), + [anon_sym_xor] = ACTIONS(1287), + [anon_sym_or] = ACTIONS(1287), + [anon_sym_not] = ACTIONS(1287), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1287), + [anon_sym_DOT_DOT_LT] = ACTIONS(1287), + [anon_sym_null] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1287), + [anon_sym_false] = ACTIONS(1287), + [aux_sym__val_number_decimal_token1] = ACTIONS(1287), + [aux_sym__val_number_decimal_token2] = ACTIONS(1287), + [anon_sym_DOT2] = ACTIONS(1287), + [aux_sym__val_number_decimal_token3] = ACTIONS(1287), + [aux_sym__val_number_token1] = ACTIONS(1287), + [aux_sym__val_number_token2] = ACTIONS(1287), + [aux_sym__val_number_token3] = ACTIONS(1287), + [aux_sym__val_number_token4] = ACTIONS(1287), + [aux_sym__val_number_token5] = ACTIONS(1287), + [aux_sym__val_number_token6] = ACTIONS(1287), + [anon_sym_0b] = ACTIONS(1287), + [anon_sym_0o] = ACTIONS(1287), + [anon_sym_0x] = ACTIONS(1287), + [sym_val_date] = ACTIONS(1287), + [anon_sym_DQUOTE] = ACTIONS(1287), + [sym__str_single_quotes] = ACTIONS(1287), + [sym__str_back_ticks] = ACTIONS(1287), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1287), + [anon_sym_CARET] = ACTIONS(1287), [anon_sym_POUND] = ACTIONS(113), }, [416] = { [sym_comment] = STATE(416), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_alias] = ACTIONS(1070), - [anon_sym_EQ] = ACTIONS(1070), - [anon_sym_let] = ACTIONS(1070), - [anon_sym_let_DASHenv] = ACTIONS(1070), - [anon_sym_mut] = ACTIONS(1070), - [anon_sym_const] = ACTIONS(1070), - [anon_sym_SEMI] = ACTIONS(1070), - [sym_cmd_identifier] = ACTIONS(1070), - [anon_sym_LF] = ACTIONS(1072), - [anon_sym_def] = ACTIONS(1070), - [anon_sym_export_DASHenv] = ACTIONS(1070), - [anon_sym_extern] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_use] = ACTIONS(1070), - [anon_sym_COLON] = ACTIONS(1070), - [anon_sym_COMMA] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_error] = ACTIONS(1070), - [anon_sym_list] = ACTIONS(1070), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_in] = ACTIONS(1070), - [anon_sym_loop] = ACTIONS(1070), - [anon_sym_make] = ACTIONS(1070), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_do] = ACTIONS(1070), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_else] = ACTIONS(1070), - [anon_sym_match] = ACTIONS(1070), - [anon_sym_RBRACE] = ACTIONS(1070), - [anon_sym_try] = ACTIONS(1070), - [anon_sym_catch] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_source] = ACTIONS(1070), - [anon_sym_source_DASHenv] = ACTIONS(1070), - [anon_sym_register] = ACTIONS(1070), - [anon_sym_hide] = ACTIONS(1070), - [anon_sym_hide_DASHenv] = ACTIONS(1070), - [anon_sym_overlay] = ACTIONS(1070), - [anon_sym_new] = ACTIONS(1070), - [anon_sym_as] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_PLUS_EQ] = ACTIONS(1070), - [anon_sym_DASH_EQ] = ACTIONS(1070), - [anon_sym_STAR_EQ] = ACTIONS(1070), - [anon_sym_SLASH_EQ] = ACTIONS(1070), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(1265), - [anon_sym_STAR_STAR] = ACTIONS(1070), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_mod] = ACTIONS(1070), - [anon_sym_SLASH_SLASH] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_bit_DASHshl] = ACTIONS(1070), - [anon_sym_bit_DASHshr] = ACTIONS(1070), - [anon_sym_EQ_EQ] = ACTIONS(1070), - [anon_sym_BANG_EQ] = ACTIONS(1070), - [anon_sym_LT2] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1070), - [anon_sym_GT_EQ] = ACTIONS(1070), - [anon_sym_not_DASHin] = ACTIONS(1070), - [anon_sym_starts_DASHwith] = ACTIONS(1070), - [anon_sym_ends_DASHwith] = ACTIONS(1070), - [anon_sym_EQ_TILDE] = ACTIONS(1070), - [anon_sym_BANG_TILDE] = ACTIONS(1070), - [anon_sym_bit_DASHand] = ACTIONS(1070), - [anon_sym_bit_DASHxor] = ACTIONS(1070), - [anon_sym_bit_DASHor] = ACTIONS(1070), - [anon_sym_and] = ACTIONS(1070), - [anon_sym_xor] = ACTIONS(1070), - [anon_sym_or] = ACTIONS(1070), - [anon_sym_DOT_DOT2] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1072), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1070), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [aux_sym__record_key_token2] = ACTIONS(1070), + [ts_builtin_sym_end] = ACTIONS(1043), + [anon_sym_export] = ACTIONS(1041), + [anon_sym_alias] = ACTIONS(1041), + [anon_sym_let] = ACTIONS(1041), + [anon_sym_let_DASHenv] = ACTIONS(1041), + [anon_sym_mut] = ACTIONS(1041), + [anon_sym_const] = ACTIONS(1041), + [anon_sym_SEMI] = ACTIONS(1041), + [sym_cmd_identifier] = ACTIONS(1041), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_def] = ACTIONS(1041), + [anon_sym_export_DASHenv] = ACTIONS(1041), + [anon_sym_extern] = ACTIONS(1041), + [anon_sym_module] = ACTIONS(1041), + [anon_sym_use] = ACTIONS(1041), + [anon_sym_LBRACK] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1041), + [anon_sym_DOLLAR] = ACTIONS(1041), + [anon_sym_error] = ACTIONS(1041), + [anon_sym_GT] = ACTIONS(1041), + [anon_sym_DASH_DASH] = ACTIONS(1041), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_break] = ACTIONS(1041), + [anon_sym_continue] = ACTIONS(1041), + [anon_sym_for] = ACTIONS(1041), + [anon_sym_in] = ACTIONS(1041), + [anon_sym_loop] = ACTIONS(1041), + [anon_sym_while] = ACTIONS(1041), + [anon_sym_do] = ACTIONS(1041), + [anon_sym_if] = ACTIONS(1041), + [anon_sym_match] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_DOT_DOT] = ACTIONS(1041), + [anon_sym_try] = ACTIONS(1041), + [anon_sym_return] = ACTIONS(1041), + [anon_sym_source] = ACTIONS(1041), + [anon_sym_source_DASHenv] = ACTIONS(1041), + [anon_sym_register] = ACTIONS(1041), + [anon_sym_hide] = ACTIONS(1041), + [anon_sym_hide_DASHenv] = ACTIONS(1041), + [anon_sym_overlay] = ACTIONS(1041), + [anon_sym_as] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_where] = ACTIONS(1041), + [anon_sym_STAR_STAR] = ACTIONS(1041), + [anon_sym_PLUS_PLUS] = ACTIONS(1041), + [anon_sym_SLASH] = ACTIONS(1041), + [anon_sym_mod] = ACTIONS(1041), + [anon_sym_SLASH_SLASH] = ACTIONS(1041), + [anon_sym_PLUS] = ACTIONS(1041), + [anon_sym_bit_DASHshl] = ACTIONS(1041), + [anon_sym_bit_DASHshr] = ACTIONS(1041), + [anon_sym_EQ_EQ] = ACTIONS(1041), + [anon_sym_BANG_EQ] = ACTIONS(1041), + [anon_sym_LT2] = ACTIONS(1041), + [anon_sym_LT_EQ] = ACTIONS(1041), + [anon_sym_GT_EQ] = ACTIONS(1041), + [anon_sym_not_DASHin] = ACTIONS(1041), + [anon_sym_starts_DASHwith] = ACTIONS(1041), + [anon_sym_ends_DASHwith] = ACTIONS(1041), + [anon_sym_EQ_TILDE] = ACTIONS(1041), + [anon_sym_BANG_TILDE] = ACTIONS(1041), + [anon_sym_bit_DASHand] = ACTIONS(1041), + [anon_sym_bit_DASHxor] = ACTIONS(1041), + [anon_sym_bit_DASHor] = ACTIONS(1041), + [anon_sym_and] = ACTIONS(1041), + [anon_sym_xor] = ACTIONS(1041), + [anon_sym_or] = ACTIONS(1041), + [anon_sym_not] = ACTIONS(1041), + [anon_sym_DOT] = ACTIONS(1041), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1041), + [anon_sym_DOT_DOT_LT] = ACTIONS(1041), + [anon_sym_null] = ACTIONS(1041), + [anon_sym_true] = ACTIONS(1041), + [anon_sym_false] = ACTIONS(1041), + [aux_sym__val_number_decimal_token1] = ACTIONS(1041), + [aux_sym__val_number_decimal_token2] = ACTIONS(1041), + [anon_sym_DOT2] = ACTIONS(1041), + [aux_sym__val_number_decimal_token3] = ACTIONS(1041), + [aux_sym__val_number_token1] = ACTIONS(1041), + [aux_sym__val_number_token2] = ACTIONS(1041), + [aux_sym__val_number_token3] = ACTIONS(1041), + [aux_sym__val_number_token4] = ACTIONS(1041), + [aux_sym__val_number_token5] = ACTIONS(1041), + [aux_sym__val_number_token6] = ACTIONS(1041), + [anon_sym_0b] = ACTIONS(1041), + [anon_sym_0o] = ACTIONS(1041), + [anon_sym_0x] = ACTIONS(1041), + [sym_val_date] = ACTIONS(1041), + [anon_sym_DQUOTE] = ACTIONS(1041), + [sym__str_single_quotes] = ACTIONS(1041), + [sym__str_back_ticks] = ACTIONS(1041), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1041), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1041), + [anon_sym_CARET] = ACTIONS(1041), [anon_sym_POUND] = ACTIONS(113), }, [417] = { [sym_comment] = STATE(417), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_alias] = ACTIONS(1070), - [anon_sym_EQ] = ACTIONS(1070), - [anon_sym_let] = ACTIONS(1070), - [anon_sym_let_DASHenv] = ACTIONS(1070), - [anon_sym_mut] = ACTIONS(1070), - [anon_sym_const] = ACTIONS(1070), - [anon_sym_SEMI] = ACTIONS(1070), - [sym_cmd_identifier] = ACTIONS(1070), - [anon_sym_LF] = ACTIONS(1072), - [anon_sym_def] = ACTIONS(1070), - [anon_sym_export_DASHenv] = ACTIONS(1070), - [anon_sym_extern] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_use] = ACTIONS(1070), - [anon_sym_COLON] = ACTIONS(1070), - [anon_sym_COMMA] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_error] = ACTIONS(1070), - [anon_sym_list] = ACTIONS(1070), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_in] = ACTIONS(1070), - [anon_sym_loop] = ACTIONS(1070), - [anon_sym_make] = ACTIONS(1070), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_do] = ACTIONS(1070), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_else] = ACTIONS(1070), - [anon_sym_match] = ACTIONS(1070), - [anon_sym_RBRACE] = ACTIONS(1070), - [anon_sym_try] = ACTIONS(1070), - [anon_sym_catch] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_source] = ACTIONS(1070), - [anon_sym_source_DASHenv] = ACTIONS(1070), - [anon_sym_register] = ACTIONS(1070), - [anon_sym_hide] = ACTIONS(1070), - [anon_sym_hide_DASHenv] = ACTIONS(1070), - [anon_sym_overlay] = ACTIONS(1070), - [anon_sym_new] = ACTIONS(1070), - [anon_sym_as] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_PLUS_EQ] = ACTIONS(1070), - [anon_sym_DASH_EQ] = ACTIONS(1070), - [anon_sym_STAR_EQ] = ACTIONS(1070), - [anon_sym_SLASH_EQ] = ACTIONS(1070), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(1265), - [anon_sym_STAR_STAR] = ACTIONS(1070), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_mod] = ACTIONS(1070), - [anon_sym_SLASH_SLASH] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_bit_DASHshl] = ACTIONS(1070), - [anon_sym_bit_DASHshr] = ACTIONS(1070), - [anon_sym_EQ_EQ] = ACTIONS(1070), - [anon_sym_BANG_EQ] = ACTIONS(1070), - [anon_sym_LT2] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1070), - [anon_sym_GT_EQ] = ACTIONS(1070), - [anon_sym_not_DASHin] = ACTIONS(1070), - [anon_sym_starts_DASHwith] = ACTIONS(1070), - [anon_sym_ends_DASHwith] = ACTIONS(1070), - [anon_sym_EQ_TILDE] = ACTIONS(1070), - [anon_sym_BANG_TILDE] = ACTIONS(1070), - [anon_sym_bit_DASHand] = ACTIONS(1070), - [anon_sym_bit_DASHxor] = ACTIONS(1070), - [anon_sym_bit_DASHor] = ACTIONS(1070), - [anon_sym_and] = ACTIONS(1070), - [anon_sym_xor] = ACTIONS(1070), - [anon_sym_or] = ACTIONS(1070), - [anon_sym_DOT_DOT2] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1072), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1070), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [aux_sym__record_key_token2] = ACTIONS(1070), + [ts_builtin_sym_end] = ACTIONS(1173), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [anon_sym_SEMI] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_where] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, [418] = { [sym_comment] = STATE(418), - [ts_builtin_sym_end] = ACTIONS(1072), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_alias] = ACTIONS(1070), - [anon_sym_let] = ACTIONS(1070), - [anon_sym_let_DASHenv] = ACTIONS(1070), - [anon_sym_mut] = ACTIONS(1070), - [anon_sym_const] = ACTIONS(1070), - [anon_sym_SEMI] = ACTIONS(1070), - [sym_cmd_identifier] = ACTIONS(1070), - [anon_sym_LF] = ACTIONS(1072), - [anon_sym_def] = ACTIONS(1070), - [anon_sym_export_DASHenv] = ACTIONS(1070), - [anon_sym_extern] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_use] = ACTIONS(1070), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_error] = ACTIONS(1070), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_in] = ACTIONS(1070), - [anon_sym_loop] = ACTIONS(1070), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_do] = ACTIONS(1070), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_match] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_try] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_source] = ACTIONS(1070), - [anon_sym_source_DASHenv] = ACTIONS(1070), - [anon_sym_register] = ACTIONS(1070), - [anon_sym_hide] = ACTIONS(1070), - [anon_sym_hide_DASHenv] = ACTIONS(1070), - [anon_sym_overlay] = ACTIONS(1070), - [anon_sym_as] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_where] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(1267), - [anon_sym_STAR_STAR] = ACTIONS(1070), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_mod] = ACTIONS(1070), - [anon_sym_SLASH_SLASH] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_bit_DASHshl] = ACTIONS(1070), - [anon_sym_bit_DASHshr] = ACTIONS(1070), - [anon_sym_EQ_EQ] = ACTIONS(1070), - [anon_sym_BANG_EQ] = ACTIONS(1070), - [anon_sym_LT2] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1070), - [anon_sym_GT_EQ] = ACTIONS(1070), - [anon_sym_not_DASHin] = ACTIONS(1070), - [anon_sym_starts_DASHwith] = ACTIONS(1070), - [anon_sym_ends_DASHwith] = ACTIONS(1070), - [anon_sym_EQ_TILDE] = ACTIONS(1070), - [anon_sym_BANG_TILDE] = ACTIONS(1070), - [anon_sym_bit_DASHand] = ACTIONS(1070), - [anon_sym_bit_DASHxor] = ACTIONS(1070), - [anon_sym_bit_DASHor] = ACTIONS(1070), - [anon_sym_and] = ACTIONS(1070), - [anon_sym_xor] = ACTIONS(1070), - [anon_sym_or] = ACTIONS(1070), - [anon_sym_not] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_null] = ACTIONS(1070), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1070), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), - [anon_sym_CARET] = ACTIONS(1070), + [ts_builtin_sym_end] = ACTIONS(1022), + [anon_sym_export] = ACTIONS(1020), + [anon_sym_alias] = ACTIONS(1020), + [anon_sym_let] = ACTIONS(1020), + [anon_sym_let_DASHenv] = ACTIONS(1020), + [anon_sym_mut] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1020), + [sym_cmd_identifier] = ACTIONS(1020), + [anon_sym_LF] = ACTIONS(1022), + [anon_sym_def] = ACTIONS(1020), + [anon_sym_export_DASHenv] = ACTIONS(1020), + [anon_sym_extern] = ACTIONS(1020), + [anon_sym_module] = ACTIONS(1020), + [anon_sym_use] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_error] = ACTIONS(1020), + [anon_sym_GT] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1020), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_in] = ACTIONS(1020), + [anon_sym_loop] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_match] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_DOT_DOT] = ACTIONS(1020), + [anon_sym_try] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_source] = ACTIONS(1020), + [anon_sym_source_DASHenv] = ACTIONS(1020), + [anon_sym_register] = ACTIONS(1020), + [anon_sym_hide] = ACTIONS(1020), + [anon_sym_hide_DASHenv] = ACTIONS(1020), + [anon_sym_overlay] = ACTIONS(1020), + [anon_sym_as] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_where] = ACTIONS(1020), + [anon_sym_STAR_STAR] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1020), + [anon_sym_SLASH] = ACTIONS(1020), + [anon_sym_mod] = ACTIONS(1020), + [anon_sym_SLASH_SLASH] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_bit_DASHshl] = ACTIONS(1020), + [anon_sym_bit_DASHshr] = ACTIONS(1020), + [anon_sym_EQ_EQ] = ACTIONS(1020), + [anon_sym_BANG_EQ] = ACTIONS(1020), + [anon_sym_LT2] = ACTIONS(1020), + [anon_sym_LT_EQ] = ACTIONS(1020), + [anon_sym_GT_EQ] = ACTIONS(1020), + [anon_sym_not_DASHin] = ACTIONS(1020), + [anon_sym_starts_DASHwith] = ACTIONS(1020), + [anon_sym_ends_DASHwith] = ACTIONS(1020), + [anon_sym_EQ_TILDE] = ACTIONS(1020), + [anon_sym_BANG_TILDE] = ACTIONS(1020), + [anon_sym_bit_DASHand] = ACTIONS(1020), + [anon_sym_bit_DASHxor] = ACTIONS(1020), + [anon_sym_bit_DASHor] = ACTIONS(1020), + [anon_sym_and] = ACTIONS(1020), + [anon_sym_xor] = ACTIONS(1020), + [anon_sym_or] = ACTIONS(1020), + [anon_sym_not] = ACTIONS(1020), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1020), + [anon_sym_DOT_DOT_LT] = ACTIONS(1020), + [anon_sym_null] = ACTIONS(1020), + [anon_sym_true] = ACTIONS(1020), + [anon_sym_false] = ACTIONS(1020), + [aux_sym__val_number_decimal_token1] = ACTIONS(1020), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [anon_sym_DOT2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1020), + [aux_sym__val_number_token1] = ACTIONS(1020), + [aux_sym__val_number_token2] = ACTIONS(1020), + [aux_sym__val_number_token3] = ACTIONS(1020), + [aux_sym__val_number_token4] = ACTIONS(1020), + [aux_sym__val_number_token5] = ACTIONS(1020), + [aux_sym__val_number_token6] = ACTIONS(1020), + [anon_sym_0b] = ACTIONS(1020), + [anon_sym_0o] = ACTIONS(1020), + [anon_sym_0x] = ACTIONS(1020), + [sym_val_date] = ACTIONS(1020), + [anon_sym_DQUOTE] = ACTIONS(1020), + [sym__str_single_quotes] = ACTIONS(1020), + [sym__str_back_ticks] = ACTIONS(1020), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1020), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1020), + [anon_sym_CARET] = ACTIONS(1020), [anon_sym_POUND] = ACTIONS(113), }, [419] = { [sym_comment] = STATE(419), - [ts_builtin_sym_end] = ACTIONS(938), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_error] = ACTIONS(936), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_as] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_where] = ACTIONS(936), - [anon_sym_STAR_STAR] = ACTIONS(936), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(936), - [anon_sym_SLASH_SLASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(936), - [anon_sym_bit_DASHshr] = ACTIONS(936), - [anon_sym_EQ_EQ] = ACTIONS(936), - [anon_sym_BANG_EQ] = ACTIONS(936), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(936), - [anon_sym_GT_EQ] = ACTIONS(936), - [anon_sym_not_DASHin] = ACTIONS(936), - [anon_sym_starts_DASHwith] = ACTIONS(936), - [anon_sym_ends_DASHwith] = ACTIONS(936), - [anon_sym_EQ_TILDE] = ACTIONS(936), - [anon_sym_BANG_TILDE] = ACTIONS(936), - [anon_sym_bit_DASHand] = ACTIONS(936), - [anon_sym_bit_DASHxor] = ACTIONS(936), - [anon_sym_bit_DASHor] = ACTIONS(936), - [anon_sym_and] = ACTIONS(936), - [anon_sym_xor] = ACTIONS(936), - [anon_sym_or] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [aux_sym__immediate_decimal_token1] = ACTIONS(1269), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [aux_sym_unquoted_token2] = ACTIONS(1271), + [ts_builtin_sym_end] = ACTIONS(1157), + [anon_sym_export] = ACTIONS(1155), + [anon_sym_alias] = ACTIONS(1155), + [anon_sym_let] = ACTIONS(1155), + [anon_sym_let_DASHenv] = ACTIONS(1155), + [anon_sym_mut] = ACTIONS(1155), + [anon_sym_const] = ACTIONS(1155), + [anon_sym_SEMI] = ACTIONS(1155), + [sym_cmd_identifier] = ACTIONS(1155), + [anon_sym_LF] = ACTIONS(1157), + [anon_sym_def] = ACTIONS(1155), + [anon_sym_export_DASHenv] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1155), + [anon_sym_module] = ACTIONS(1155), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1155), + [anon_sym_LPAREN] = ACTIONS(1155), + [anon_sym_DOLLAR] = ACTIONS(1155), + [anon_sym_error] = ACTIONS(1155), + [anon_sym_GT] = ACTIONS(1155), + [anon_sym_DASH_DASH] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_break] = ACTIONS(1155), + [anon_sym_continue] = ACTIONS(1155), + [anon_sym_for] = ACTIONS(1155), + [anon_sym_in] = ACTIONS(1155), + [anon_sym_loop] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(1155), + [anon_sym_do] = ACTIONS(1155), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_match] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_DOT_DOT] = ACTIONS(1155), + [anon_sym_try] = ACTIONS(1155), + [anon_sym_return] = ACTIONS(1155), + [anon_sym_source] = ACTIONS(1155), + [anon_sym_source_DASHenv] = ACTIONS(1155), + [anon_sym_register] = ACTIONS(1155), + [anon_sym_hide] = ACTIONS(1155), + [anon_sym_hide_DASHenv] = ACTIONS(1155), + [anon_sym_overlay] = ACTIONS(1155), + [anon_sym_as] = ACTIONS(1155), + [anon_sym_STAR] = ACTIONS(1155), + [anon_sym_where] = ACTIONS(1155), + [anon_sym_STAR_STAR] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(1155), + [anon_sym_mod] = ACTIONS(1155), + [anon_sym_SLASH_SLASH] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_bit_DASHshl] = ACTIONS(1155), + [anon_sym_bit_DASHshr] = ACTIONS(1155), + [anon_sym_EQ_EQ] = ACTIONS(1155), + [anon_sym_BANG_EQ] = ACTIONS(1155), + [anon_sym_LT2] = ACTIONS(1155), + [anon_sym_LT_EQ] = ACTIONS(1155), + [anon_sym_GT_EQ] = ACTIONS(1155), + [anon_sym_not_DASHin] = ACTIONS(1155), + [anon_sym_starts_DASHwith] = ACTIONS(1155), + [anon_sym_ends_DASHwith] = ACTIONS(1155), + [anon_sym_EQ_TILDE] = ACTIONS(1155), + [anon_sym_BANG_TILDE] = ACTIONS(1155), + [anon_sym_bit_DASHand] = ACTIONS(1155), + [anon_sym_bit_DASHxor] = ACTIONS(1155), + [anon_sym_bit_DASHor] = ACTIONS(1155), + [anon_sym_and] = ACTIONS(1155), + [anon_sym_xor] = ACTIONS(1155), + [anon_sym_or] = ACTIONS(1155), + [anon_sym_not] = ACTIONS(1155), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1155), + [anon_sym_DOT_DOT_LT] = ACTIONS(1155), + [anon_sym_null] = ACTIONS(1155), + [anon_sym_true] = ACTIONS(1155), + [anon_sym_false] = ACTIONS(1155), + [aux_sym__val_number_decimal_token1] = ACTIONS(1155), + [aux_sym__val_number_decimal_token2] = ACTIONS(1155), + [anon_sym_DOT2] = ACTIONS(1155), + [aux_sym__val_number_decimal_token3] = ACTIONS(1155), + [aux_sym__val_number_token1] = ACTIONS(1155), + [aux_sym__val_number_token2] = ACTIONS(1155), + [aux_sym__val_number_token3] = ACTIONS(1155), + [aux_sym__val_number_token4] = ACTIONS(1155), + [aux_sym__val_number_token5] = ACTIONS(1155), + [aux_sym__val_number_token6] = ACTIONS(1155), + [anon_sym_0b] = ACTIONS(1155), + [anon_sym_0o] = ACTIONS(1155), + [anon_sym_0x] = ACTIONS(1155), + [sym_val_date] = ACTIONS(1155), + [anon_sym_DQUOTE] = ACTIONS(1155), + [sym__str_single_quotes] = ACTIONS(1155), + [sym__str_back_ticks] = ACTIONS(1155), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1155), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1155), + [anon_sym_CARET] = ACTIONS(1155), [anon_sym_POUND] = ACTIONS(113), }, [420] = { [sym_comment] = STATE(420), - [ts_builtin_sym_end] = ACTIONS(1072), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_alias] = ACTIONS(1070), - [anon_sym_let] = ACTIONS(1070), - [anon_sym_let_DASHenv] = ACTIONS(1070), - [anon_sym_mut] = ACTIONS(1070), - [anon_sym_const] = ACTIONS(1070), - [anon_sym_SEMI] = ACTIONS(1070), - [sym_cmd_identifier] = ACTIONS(1070), - [anon_sym_LF] = ACTIONS(1072), - [anon_sym_def] = ACTIONS(1070), - [anon_sym_export_DASHenv] = ACTIONS(1070), - [anon_sym_extern] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_use] = ACTIONS(1070), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_error] = ACTIONS(1070), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_in] = ACTIONS(1070), - [anon_sym_loop] = ACTIONS(1070), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_do] = ACTIONS(1070), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_match] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_try] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_source] = ACTIONS(1070), - [anon_sym_source_DASHenv] = ACTIONS(1070), - [anon_sym_register] = ACTIONS(1070), - [anon_sym_hide] = ACTIONS(1070), - [anon_sym_hide_DASHenv] = ACTIONS(1070), - [anon_sym_overlay] = ACTIONS(1070), - [anon_sym_as] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_where] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(1267), - [anon_sym_STAR_STAR] = ACTIONS(1070), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_mod] = ACTIONS(1070), - [anon_sym_SLASH_SLASH] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_bit_DASHshl] = ACTIONS(1070), - [anon_sym_bit_DASHshr] = ACTIONS(1070), - [anon_sym_EQ_EQ] = ACTIONS(1070), - [anon_sym_BANG_EQ] = ACTIONS(1070), - [anon_sym_LT2] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1070), - [anon_sym_GT_EQ] = ACTIONS(1070), - [anon_sym_not_DASHin] = ACTIONS(1070), - [anon_sym_starts_DASHwith] = ACTIONS(1070), - [anon_sym_ends_DASHwith] = ACTIONS(1070), - [anon_sym_EQ_TILDE] = ACTIONS(1070), - [anon_sym_BANG_TILDE] = ACTIONS(1070), - [anon_sym_bit_DASHand] = ACTIONS(1070), - [anon_sym_bit_DASHxor] = ACTIONS(1070), - [anon_sym_bit_DASHor] = ACTIONS(1070), - [anon_sym_and] = ACTIONS(1070), - [anon_sym_xor] = ACTIONS(1070), - [anon_sym_or] = ACTIONS(1070), - [anon_sym_not] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_null] = ACTIONS(1070), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1070), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), - [anon_sym_CARET] = ACTIONS(1070), + [ts_builtin_sym_end] = ACTIONS(1289), + [anon_sym_export] = ACTIONS(1287), + [anon_sym_alias] = ACTIONS(1287), + [anon_sym_let] = ACTIONS(1287), + [anon_sym_let_DASHenv] = ACTIONS(1287), + [anon_sym_mut] = ACTIONS(1287), + [anon_sym_const] = ACTIONS(1287), + [anon_sym_SEMI] = ACTIONS(1287), + [sym_cmd_identifier] = ACTIONS(1287), + [anon_sym_LF] = ACTIONS(1289), + [anon_sym_def] = ACTIONS(1287), + [anon_sym_export_DASHenv] = ACTIONS(1287), + [anon_sym_extern] = ACTIONS(1287), + [anon_sym_module] = ACTIONS(1287), + [anon_sym_use] = ACTIONS(1287), + [anon_sym_LBRACK] = ACTIONS(1287), + [anon_sym_LPAREN] = ACTIONS(1287), + [anon_sym_DOLLAR] = ACTIONS(1287), + [anon_sym_error] = ACTIONS(1287), + [anon_sym_GT] = ACTIONS(1287), + [anon_sym_DASH_DASH] = ACTIONS(1287), + [anon_sym_DASH] = ACTIONS(1287), + [anon_sym_break] = ACTIONS(1287), + [anon_sym_continue] = ACTIONS(1287), + [anon_sym_for] = ACTIONS(1287), + [anon_sym_in] = ACTIONS(1287), + [anon_sym_loop] = ACTIONS(1287), + [anon_sym_while] = ACTIONS(1287), + [anon_sym_do] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1287), + [anon_sym_match] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1287), + [anon_sym_DOT_DOT] = ACTIONS(1287), + [anon_sym_try] = ACTIONS(1287), + [anon_sym_return] = ACTIONS(1287), + [anon_sym_source] = ACTIONS(1287), + [anon_sym_source_DASHenv] = ACTIONS(1287), + [anon_sym_register] = ACTIONS(1287), + [anon_sym_hide] = ACTIONS(1287), + [anon_sym_hide_DASHenv] = ACTIONS(1287), + [anon_sym_overlay] = ACTIONS(1287), + [anon_sym_as] = ACTIONS(1287), + [anon_sym_STAR] = ACTIONS(1287), + [anon_sym_where] = ACTIONS(1287), + [anon_sym_STAR_STAR] = ACTIONS(1287), + [anon_sym_PLUS_PLUS] = ACTIONS(1287), + [anon_sym_SLASH] = ACTIONS(1287), + [anon_sym_mod] = ACTIONS(1287), + [anon_sym_SLASH_SLASH] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1287), + [anon_sym_bit_DASHshl] = ACTIONS(1287), + [anon_sym_bit_DASHshr] = ACTIONS(1287), + [anon_sym_EQ_EQ] = ACTIONS(1287), + [anon_sym_BANG_EQ] = ACTIONS(1287), + [anon_sym_LT2] = ACTIONS(1287), + [anon_sym_LT_EQ] = ACTIONS(1287), + [anon_sym_GT_EQ] = ACTIONS(1287), + [anon_sym_not_DASHin] = ACTIONS(1287), + [anon_sym_starts_DASHwith] = ACTIONS(1287), + [anon_sym_ends_DASHwith] = ACTIONS(1287), + [anon_sym_EQ_TILDE] = ACTIONS(1287), + [anon_sym_BANG_TILDE] = ACTIONS(1287), + [anon_sym_bit_DASHand] = ACTIONS(1287), + [anon_sym_bit_DASHxor] = ACTIONS(1287), + [anon_sym_bit_DASHor] = ACTIONS(1287), + [anon_sym_and] = ACTIONS(1287), + [anon_sym_xor] = ACTIONS(1287), + [anon_sym_or] = ACTIONS(1287), + [anon_sym_not] = ACTIONS(1287), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1287), + [anon_sym_DOT_DOT_LT] = ACTIONS(1287), + [anon_sym_null] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1287), + [anon_sym_false] = ACTIONS(1287), + [aux_sym__val_number_decimal_token1] = ACTIONS(1287), + [aux_sym__val_number_decimal_token2] = ACTIONS(1287), + [anon_sym_DOT2] = ACTIONS(1287), + [aux_sym__val_number_decimal_token3] = ACTIONS(1287), + [aux_sym__val_number_token1] = ACTIONS(1287), + [aux_sym__val_number_token2] = ACTIONS(1287), + [aux_sym__val_number_token3] = ACTIONS(1287), + [aux_sym__val_number_token4] = ACTIONS(1287), + [aux_sym__val_number_token5] = ACTIONS(1287), + [aux_sym__val_number_token6] = ACTIONS(1287), + [anon_sym_0b] = ACTIONS(1287), + [anon_sym_0o] = ACTIONS(1287), + [anon_sym_0x] = ACTIONS(1287), + [sym_val_date] = ACTIONS(1287), + [anon_sym_DQUOTE] = ACTIONS(1287), + [sym__str_single_quotes] = ACTIONS(1287), + [sym__str_back_ticks] = ACTIONS(1287), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1287), + [anon_sym_CARET] = ACTIONS(1287), [anon_sym_POUND] = ACTIONS(113), }, [421] = { - [sym_cell_path] = STATE(611), - [sym_path] = STATE(407), [sym_comment] = STATE(421), - [anon_sym_export] = ACTIONS(1203), - [anon_sym_alias] = ACTIONS(1203), - [anon_sym_let] = ACTIONS(1203), - [anon_sym_let_DASHenv] = ACTIONS(1203), - [anon_sym_mut] = ACTIONS(1203), - [anon_sym_const] = ACTIONS(1203), - [anon_sym_SEMI] = ACTIONS(1203), - [sym_cmd_identifier] = ACTIONS(1203), - [anon_sym_LF] = ACTIONS(1205), - [anon_sym_def] = ACTIONS(1203), - [anon_sym_export_DASHenv] = ACTIONS(1203), - [anon_sym_extern] = ACTIONS(1203), - [anon_sym_module] = ACTIONS(1203), - [anon_sym_use] = ACTIONS(1203), - [anon_sym_LBRACK] = ACTIONS(1203), - [anon_sym_LPAREN] = ACTIONS(1203), - [anon_sym_RPAREN] = ACTIONS(1203), - [anon_sym_DOLLAR] = ACTIONS(1203), - [anon_sym_error] = ACTIONS(1203), - [anon_sym_GT] = ACTIONS(1203), - [anon_sym_DASH] = ACTIONS(1203), - [anon_sym_break] = ACTIONS(1203), - [anon_sym_continue] = ACTIONS(1203), - [anon_sym_for] = ACTIONS(1203), - [anon_sym_in] = ACTIONS(1203), - [anon_sym_loop] = ACTIONS(1203), - [anon_sym_while] = ACTIONS(1203), - [anon_sym_do] = ACTIONS(1203), - [anon_sym_if] = ACTIONS(1203), - [anon_sym_match] = ACTIONS(1203), - [anon_sym_LBRACE] = ACTIONS(1203), - [anon_sym_RBRACE] = ACTIONS(1203), - [anon_sym_DOT_DOT] = ACTIONS(1203), - [anon_sym_try] = ACTIONS(1203), - [anon_sym_return] = ACTIONS(1203), - [anon_sym_source] = ACTIONS(1203), - [anon_sym_source_DASHenv] = ACTIONS(1203), - [anon_sym_register] = ACTIONS(1203), - [anon_sym_hide] = ACTIONS(1203), - [anon_sym_hide_DASHenv] = ACTIONS(1203), - [anon_sym_overlay] = ACTIONS(1203), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_where] = ACTIONS(1203), - [anon_sym_STAR_STAR] = ACTIONS(1203), - [anon_sym_PLUS_PLUS] = ACTIONS(1203), - [anon_sym_SLASH] = ACTIONS(1203), - [anon_sym_mod] = ACTIONS(1203), - [anon_sym_SLASH_SLASH] = ACTIONS(1203), - [anon_sym_PLUS] = ACTIONS(1203), - [anon_sym_bit_DASHshl] = ACTIONS(1203), - [anon_sym_bit_DASHshr] = ACTIONS(1203), - [anon_sym_EQ_EQ] = ACTIONS(1203), - [anon_sym_BANG_EQ] = ACTIONS(1203), - [anon_sym_LT2] = ACTIONS(1203), - [anon_sym_LT_EQ] = ACTIONS(1203), - [anon_sym_GT_EQ] = ACTIONS(1203), - [anon_sym_not_DASHin] = ACTIONS(1203), - [anon_sym_starts_DASHwith] = ACTIONS(1203), - [anon_sym_ends_DASHwith] = ACTIONS(1203), - [anon_sym_EQ_TILDE] = ACTIONS(1203), - [anon_sym_BANG_TILDE] = ACTIONS(1203), - [anon_sym_bit_DASHand] = ACTIONS(1203), - [anon_sym_bit_DASHxor] = ACTIONS(1203), - [anon_sym_bit_DASHor] = ACTIONS(1203), - [anon_sym_and] = ACTIONS(1203), - [anon_sym_xor] = ACTIONS(1203), - [anon_sym_or] = ACTIONS(1203), - [anon_sym_not] = ACTIONS(1203), - [anon_sym_DOT] = ACTIONS(1241), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1203), - [anon_sym_DOT_DOT_LT] = ACTIONS(1203), - [anon_sym_null] = ACTIONS(1203), - [anon_sym_true] = ACTIONS(1203), - [anon_sym_false] = ACTIONS(1203), - [aux_sym__val_number_decimal_token1] = ACTIONS(1203), - [aux_sym__val_number_decimal_token2] = ACTIONS(1203), - [anon_sym_DOT2] = ACTIONS(1203), - [aux_sym__val_number_decimal_token3] = ACTIONS(1203), - [aux_sym__val_number_token1] = ACTIONS(1203), - [aux_sym__val_number_token2] = ACTIONS(1203), - [aux_sym__val_number_token3] = ACTIONS(1203), - [aux_sym__val_number_token4] = ACTIONS(1203), - [aux_sym__val_number_token5] = ACTIONS(1203), - [aux_sym__val_number_token6] = ACTIONS(1203), - [anon_sym_0b] = ACTIONS(1203), - [anon_sym_0o] = ACTIONS(1203), - [anon_sym_0x] = ACTIONS(1203), - [sym_val_date] = ACTIONS(1203), - [anon_sym_DQUOTE] = ACTIONS(1203), - [sym__str_single_quotes] = ACTIONS(1203), - [sym__str_back_ticks] = ACTIONS(1203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1203), - [anon_sym_CARET] = ACTIONS(1203), + [ts_builtin_sym_end] = ACTIONS(1223), + [anon_sym_export] = ACTIONS(1221), + [anon_sym_alias] = ACTIONS(1221), + [anon_sym_let] = ACTIONS(1221), + [anon_sym_let_DASHenv] = ACTIONS(1221), + [anon_sym_mut] = ACTIONS(1221), + [anon_sym_const] = ACTIONS(1221), + [anon_sym_SEMI] = ACTIONS(1221), + [sym_cmd_identifier] = ACTIONS(1221), + [anon_sym_LF] = ACTIONS(1223), + [anon_sym_def] = ACTIONS(1221), + [anon_sym_export_DASHenv] = ACTIONS(1221), + [anon_sym_extern] = ACTIONS(1221), + [anon_sym_module] = ACTIONS(1221), + [anon_sym_use] = ACTIONS(1221), + [anon_sym_LBRACK] = ACTIONS(1221), + [anon_sym_LPAREN] = ACTIONS(1221), + [anon_sym_DOLLAR] = ACTIONS(1221), + [anon_sym_error] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_DASH_DASH] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_break] = ACTIONS(1221), + [anon_sym_continue] = ACTIONS(1221), + [anon_sym_for] = ACTIONS(1221), + [anon_sym_in] = ACTIONS(1221), + [anon_sym_loop] = ACTIONS(1221), + [anon_sym_while] = ACTIONS(1221), + [anon_sym_do] = ACTIONS(1221), + [anon_sym_if] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1221), + [anon_sym_DOT_DOT] = ACTIONS(1221), + [anon_sym_try] = ACTIONS(1221), + [anon_sym_return] = ACTIONS(1221), + [anon_sym_source] = ACTIONS(1221), + [anon_sym_source_DASHenv] = ACTIONS(1221), + [anon_sym_register] = ACTIONS(1221), + [anon_sym_hide] = ACTIONS(1221), + [anon_sym_hide_DASHenv] = ACTIONS(1221), + [anon_sym_overlay] = ACTIONS(1221), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(1221), + [anon_sym_STAR_STAR] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_mod] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_bit_DASHshl] = ACTIONS(1221), + [anon_sym_bit_DASHshr] = ACTIONS(1221), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT2] = ACTIONS(1221), + [anon_sym_LT_EQ] = ACTIONS(1221), + [anon_sym_GT_EQ] = ACTIONS(1221), + [anon_sym_not_DASHin] = ACTIONS(1221), + [anon_sym_starts_DASHwith] = ACTIONS(1221), + [anon_sym_ends_DASHwith] = ACTIONS(1221), + [anon_sym_EQ_TILDE] = ACTIONS(1221), + [anon_sym_BANG_TILDE] = ACTIONS(1221), + [anon_sym_bit_DASHand] = ACTIONS(1221), + [anon_sym_bit_DASHxor] = ACTIONS(1221), + [anon_sym_bit_DASHor] = ACTIONS(1221), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_xor] = ACTIONS(1221), + [anon_sym_or] = ACTIONS(1221), + [anon_sym_not] = ACTIONS(1221), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1221), + [anon_sym_DOT_DOT_LT] = ACTIONS(1221), + [anon_sym_null] = ACTIONS(1221), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [aux_sym__val_number_decimal_token1] = ACTIONS(1221), + [aux_sym__val_number_decimal_token2] = ACTIONS(1221), + [anon_sym_DOT2] = ACTIONS(1221), + [aux_sym__val_number_decimal_token3] = ACTIONS(1221), + [aux_sym__val_number_token1] = ACTIONS(1221), + [aux_sym__val_number_token2] = ACTIONS(1221), + [aux_sym__val_number_token3] = ACTIONS(1221), + [aux_sym__val_number_token4] = ACTIONS(1221), + [aux_sym__val_number_token5] = ACTIONS(1221), + [aux_sym__val_number_token6] = ACTIONS(1221), + [anon_sym_0b] = ACTIONS(1221), + [anon_sym_0o] = ACTIONS(1221), + [anon_sym_0x] = ACTIONS(1221), + [sym_val_date] = ACTIONS(1221), + [anon_sym_DQUOTE] = ACTIONS(1221), + [sym__str_single_quotes] = ACTIONS(1221), + [sym__str_back_ticks] = ACTIONS(1221), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1221), + [anon_sym_CARET] = ACTIONS(1221), [anon_sym_POUND] = ACTIONS(113), }, [422] = { - [sym_cell_path] = STATE(627), - [sym_path] = STATE(407), [sym_comment] = STATE(422), - [anon_sym_export] = ACTIONS(1186), - [anon_sym_alias] = ACTIONS(1186), - [anon_sym_let] = ACTIONS(1186), - [anon_sym_let_DASHenv] = ACTIONS(1186), - [anon_sym_mut] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1186), - [sym_cmd_identifier] = ACTIONS(1186), - [anon_sym_LF] = ACTIONS(1188), - [anon_sym_def] = ACTIONS(1186), - [anon_sym_export_DASHenv] = ACTIONS(1186), - [anon_sym_extern] = ACTIONS(1186), - [anon_sym_module] = ACTIONS(1186), - [anon_sym_use] = ACTIONS(1186), - [anon_sym_LBRACK] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(1186), - [anon_sym_RPAREN] = ACTIONS(1186), - [anon_sym_DOLLAR] = ACTIONS(1186), - [anon_sym_error] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1186), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1186), - [anon_sym_in] = ACTIONS(1186), - [anon_sym_loop] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_do] = ACTIONS(1186), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_match] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_RBRACE] = ACTIONS(1186), - [anon_sym_DOT_DOT] = ACTIONS(1186), - [anon_sym_try] = ACTIONS(1186), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_source] = ACTIONS(1186), - [anon_sym_source_DASHenv] = ACTIONS(1186), - [anon_sym_register] = ACTIONS(1186), - [anon_sym_hide] = ACTIONS(1186), - [anon_sym_hide_DASHenv] = ACTIONS(1186), - [anon_sym_overlay] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_where] = ACTIONS(1186), - [anon_sym_STAR_STAR] = ACTIONS(1186), - [anon_sym_PLUS_PLUS] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_mod] = ACTIONS(1186), - [anon_sym_SLASH_SLASH] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_bit_DASHshl] = ACTIONS(1186), - [anon_sym_bit_DASHshr] = ACTIONS(1186), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_LT2] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1186), - [anon_sym_GT_EQ] = ACTIONS(1186), - [anon_sym_not_DASHin] = ACTIONS(1186), - [anon_sym_starts_DASHwith] = ACTIONS(1186), - [anon_sym_ends_DASHwith] = ACTIONS(1186), - [anon_sym_EQ_TILDE] = ACTIONS(1186), - [anon_sym_BANG_TILDE] = ACTIONS(1186), - [anon_sym_bit_DASHand] = ACTIONS(1186), - [anon_sym_bit_DASHxor] = ACTIONS(1186), - [anon_sym_bit_DASHor] = ACTIONS(1186), - [anon_sym_and] = ACTIONS(1186), - [anon_sym_xor] = ACTIONS(1186), - [anon_sym_or] = ACTIONS(1186), - [anon_sym_not] = ACTIONS(1186), - [anon_sym_DOT] = ACTIONS(1241), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1186), - [anon_sym_DOT_DOT_LT] = ACTIONS(1186), - [anon_sym_null] = ACTIONS(1186), - [anon_sym_true] = ACTIONS(1186), - [anon_sym_false] = ACTIONS(1186), - [aux_sym__val_number_decimal_token1] = ACTIONS(1186), - [aux_sym__val_number_decimal_token2] = ACTIONS(1186), - [anon_sym_DOT2] = ACTIONS(1186), - [aux_sym__val_number_decimal_token3] = ACTIONS(1186), - [aux_sym__val_number_token1] = ACTIONS(1186), - [aux_sym__val_number_token2] = ACTIONS(1186), - [aux_sym__val_number_token3] = ACTIONS(1186), - [aux_sym__val_number_token4] = ACTIONS(1186), - [aux_sym__val_number_token5] = ACTIONS(1186), - [aux_sym__val_number_token6] = ACTIONS(1186), - [anon_sym_0b] = ACTIONS(1186), - [anon_sym_0o] = ACTIONS(1186), - [anon_sym_0x] = ACTIONS(1186), - [sym_val_date] = ACTIONS(1186), - [anon_sym_DQUOTE] = ACTIONS(1186), - [sym__str_single_quotes] = ACTIONS(1186), - [sym__str_back_ticks] = ACTIONS(1186), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1186), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1186), - [anon_sym_CARET] = ACTIONS(1186), + [ts_builtin_sym_end] = ACTIONS(1169), + [anon_sym_export] = ACTIONS(1076), + [anon_sym_alias] = ACTIONS(1076), + [anon_sym_let] = ACTIONS(1076), + [anon_sym_let_DASHenv] = ACTIONS(1076), + [anon_sym_mut] = ACTIONS(1076), + [anon_sym_const] = ACTIONS(1076), + [anon_sym_SEMI] = ACTIONS(1076), + [sym_cmd_identifier] = ACTIONS(1076), + [anon_sym_LF] = ACTIONS(1169), + [anon_sym_def] = ACTIONS(1076), + [anon_sym_export_DASHenv] = ACTIONS(1076), + [anon_sym_extern] = ACTIONS(1076), + [anon_sym_module] = ACTIONS(1076), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_LBRACK] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(1076), + [anon_sym_DOLLAR] = ACTIONS(1076), + [anon_sym_error] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_DASH_DASH] = ACTIONS(1076), + [anon_sym_DASH] = ACTIONS(1076), + [anon_sym_break] = ACTIONS(1076), + [anon_sym_continue] = ACTIONS(1076), + [anon_sym_for] = ACTIONS(1076), + [anon_sym_in] = ACTIONS(1076), + [anon_sym_loop] = ACTIONS(1076), + [anon_sym_while] = ACTIONS(1076), + [anon_sym_do] = ACTIONS(1076), + [anon_sym_if] = ACTIONS(1076), + [anon_sym_match] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1076), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_try] = ACTIONS(1076), + [anon_sym_return] = ACTIONS(1076), + [anon_sym_source] = ACTIONS(1076), + [anon_sym_source_DASHenv] = ACTIONS(1076), + [anon_sym_register] = ACTIONS(1076), + [anon_sym_hide] = ACTIONS(1076), + [anon_sym_hide_DASHenv] = ACTIONS(1076), + [anon_sym_overlay] = ACTIONS(1076), + [anon_sym_as] = ACTIONS(1076), + [anon_sym_STAR] = ACTIONS(1076), + [anon_sym_where] = ACTIONS(1076), + [anon_sym_STAR_STAR] = ACTIONS(1076), + [anon_sym_PLUS_PLUS] = ACTIONS(1076), + [anon_sym_SLASH] = ACTIONS(1076), + [anon_sym_mod] = ACTIONS(1076), + [anon_sym_SLASH_SLASH] = ACTIONS(1076), + [anon_sym_PLUS] = ACTIONS(1076), + [anon_sym_bit_DASHshl] = ACTIONS(1076), + [anon_sym_bit_DASHshr] = ACTIONS(1076), + [anon_sym_EQ_EQ] = ACTIONS(1076), + [anon_sym_BANG_EQ] = ACTIONS(1076), + [anon_sym_LT2] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1076), + [anon_sym_GT_EQ] = ACTIONS(1076), + [anon_sym_not_DASHin] = ACTIONS(1076), + [anon_sym_starts_DASHwith] = ACTIONS(1076), + [anon_sym_ends_DASHwith] = ACTIONS(1076), + [anon_sym_EQ_TILDE] = ACTIONS(1076), + [anon_sym_BANG_TILDE] = ACTIONS(1076), + [anon_sym_bit_DASHand] = ACTIONS(1076), + [anon_sym_bit_DASHxor] = ACTIONS(1076), + [anon_sym_bit_DASHor] = ACTIONS(1076), + [anon_sym_and] = ACTIONS(1076), + [anon_sym_xor] = ACTIONS(1076), + [anon_sym_or] = ACTIONS(1076), + [anon_sym_not] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1076), + [anon_sym_DOT_DOT_LT] = ACTIONS(1076), + [anon_sym_null] = ACTIONS(1076), + [anon_sym_true] = ACTIONS(1076), + [anon_sym_false] = ACTIONS(1076), + [aux_sym__val_number_decimal_token1] = ACTIONS(1076), + [aux_sym__val_number_decimal_token2] = ACTIONS(1076), + [anon_sym_DOT2] = ACTIONS(1076), + [aux_sym__val_number_decimal_token3] = ACTIONS(1076), + [aux_sym__val_number_token1] = ACTIONS(1076), + [aux_sym__val_number_token2] = ACTIONS(1076), + [aux_sym__val_number_token3] = ACTIONS(1076), + [aux_sym__val_number_token4] = ACTIONS(1076), + [aux_sym__val_number_token5] = ACTIONS(1076), + [aux_sym__val_number_token6] = ACTIONS(1076), + [anon_sym_0b] = ACTIONS(1076), + [anon_sym_0o] = ACTIONS(1076), + [anon_sym_0x] = ACTIONS(1076), + [sym_val_date] = ACTIONS(1076), + [anon_sym_DQUOTE] = ACTIONS(1076), + [sym__str_single_quotes] = ACTIONS(1076), + [sym__str_back_ticks] = ACTIONS(1076), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1076), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1076), + [anon_sym_CARET] = ACTIONS(1076), [anon_sym_POUND] = ACTIONS(113), }, [423] = { [sym_comment] = STATE(423), - [ts_builtin_sym_end] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(1059), - [anon_sym_alias] = ACTIONS(1059), - [anon_sym_let] = ACTIONS(1059), - [anon_sym_let_DASHenv] = ACTIONS(1059), - [anon_sym_mut] = ACTIONS(1059), - [anon_sym_const] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [sym_cmd_identifier] = ACTIONS(1059), - [anon_sym_LF] = ACTIONS(1061), - [anon_sym_def] = ACTIONS(1059), - [anon_sym_export_DASHenv] = ACTIONS(1059), - [anon_sym_extern] = ACTIONS(1059), - [anon_sym_module] = ACTIONS(1059), - [anon_sym_use] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_error] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_DASH_DASH] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_break] = ACTIONS(1059), - [anon_sym_continue] = ACTIONS(1059), - [anon_sym_for] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1059), - [anon_sym_loop] = ACTIONS(1059), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_do] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1059), - [anon_sym_match] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_try] = ACTIONS(1059), - [anon_sym_return] = ACTIONS(1059), - [anon_sym_source] = ACTIONS(1059), - [anon_sym_source_DASHenv] = ACTIONS(1059), - [anon_sym_register] = ACTIONS(1059), - [anon_sym_hide] = ACTIONS(1059), - [anon_sym_hide_DASHenv] = ACTIONS(1059), - [anon_sym_overlay] = ACTIONS(1059), - [anon_sym_as] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(1059), - [anon_sym_QMARK2] = ACTIONS(1059), - [anon_sym_STAR_STAR] = ACTIONS(1059), - [anon_sym_PLUS_PLUS] = ACTIONS(1059), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_mod] = ACTIONS(1059), - [anon_sym_SLASH_SLASH] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_bit_DASHshl] = ACTIONS(1059), - [anon_sym_bit_DASHshr] = ACTIONS(1059), - [anon_sym_EQ_EQ] = ACTIONS(1059), - [anon_sym_BANG_EQ] = ACTIONS(1059), - [anon_sym_LT2] = ACTIONS(1059), - [anon_sym_LT_EQ] = ACTIONS(1059), - [anon_sym_GT_EQ] = ACTIONS(1059), - [anon_sym_not_DASHin] = ACTIONS(1059), - [anon_sym_starts_DASHwith] = ACTIONS(1059), - [anon_sym_ends_DASHwith] = ACTIONS(1059), - [anon_sym_EQ_TILDE] = ACTIONS(1059), - [anon_sym_BANG_TILDE] = ACTIONS(1059), - [anon_sym_bit_DASHand] = ACTIONS(1059), - [anon_sym_bit_DASHxor] = ACTIONS(1059), - [anon_sym_bit_DASHor] = ACTIONS(1059), - [anon_sym_and] = ACTIONS(1059), - [anon_sym_xor] = ACTIONS(1059), - [anon_sym_or] = ACTIONS(1059), - [anon_sym_not] = ACTIONS(1059), - [anon_sym_DOT] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1059), - [anon_sym_DOT_DOT_LT] = ACTIONS(1059), - [anon_sym_null] = ACTIONS(1059), - [anon_sym_true] = ACTIONS(1059), - [anon_sym_false] = ACTIONS(1059), - [aux_sym__val_number_decimal_token1] = ACTIONS(1059), - [aux_sym__val_number_decimal_token2] = ACTIONS(1059), - [anon_sym_DOT2] = ACTIONS(1059), - [aux_sym__val_number_decimal_token3] = ACTIONS(1059), - [aux_sym__val_number_token1] = ACTIONS(1059), - [aux_sym__val_number_token2] = ACTIONS(1059), - [aux_sym__val_number_token3] = ACTIONS(1059), - [aux_sym__val_number_token4] = ACTIONS(1059), - [aux_sym__val_number_token5] = ACTIONS(1059), - [aux_sym__val_number_token6] = ACTIONS(1059), - [anon_sym_0b] = ACTIONS(1059), - [anon_sym_0o] = ACTIONS(1059), - [anon_sym_0x] = ACTIONS(1059), - [sym_val_date] = ACTIONS(1059), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym__str_single_quotes] = ACTIONS(1059), - [sym__str_back_ticks] = ACTIONS(1059), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1059), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1059), - [anon_sym_CARET] = ACTIONS(1059), + [ts_builtin_sym_end] = ACTIONS(1173), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [anon_sym_SEMI] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_where] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, [424] = { [sym_comment] = STATE(424), - [anon_sym_export] = ACTIONS(1172), - [anon_sym_alias] = ACTIONS(1172), - [anon_sym_let] = ACTIONS(1172), - [anon_sym_let_DASHenv] = ACTIONS(1172), - [anon_sym_mut] = ACTIONS(1172), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(1172), - [sym_cmd_identifier] = ACTIONS(1172), - [anon_sym_LF] = ACTIONS(1174), - [anon_sym_def] = ACTIONS(1172), - [anon_sym_export_DASHenv] = ACTIONS(1172), - [anon_sym_extern] = ACTIONS(1172), - [anon_sym_module] = ACTIONS(1172), - [anon_sym_use] = ACTIONS(1172), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_LPAREN] = ACTIONS(1172), - [anon_sym_RPAREN] = ACTIONS(1172), - [anon_sym_DOLLAR] = ACTIONS(1172), - [anon_sym_error] = ACTIONS(1172), - [anon_sym_GT] = ACTIONS(1172), - [anon_sym_DASH] = ACTIONS(1172), - [anon_sym_break] = ACTIONS(1172), - [anon_sym_continue] = ACTIONS(1172), - [anon_sym_for] = ACTIONS(1172), - [anon_sym_in] = ACTIONS(1172), - [anon_sym_loop] = ACTIONS(1172), - [anon_sym_while] = ACTIONS(1172), - [anon_sym_do] = ACTIONS(1172), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_match] = ACTIONS(1172), - [anon_sym_LBRACE] = ACTIONS(1172), - [anon_sym_RBRACE] = ACTIONS(1172), - [anon_sym_DOT_DOT] = ACTIONS(1172), - [anon_sym_try] = ACTIONS(1172), - [anon_sym_return] = ACTIONS(1172), - [anon_sym_source] = ACTIONS(1172), - [anon_sym_source_DASHenv] = ACTIONS(1172), - [anon_sym_register] = ACTIONS(1172), - [anon_sym_hide] = ACTIONS(1172), - [anon_sym_hide_DASHenv] = ACTIONS(1172), - [anon_sym_overlay] = ACTIONS(1172), - [anon_sym_STAR] = ACTIONS(1172), - [anon_sym_where] = ACTIONS(1172), - [anon_sym_STAR_STAR] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_SLASH] = ACTIONS(1172), - [anon_sym_mod] = ACTIONS(1172), - [anon_sym_SLASH_SLASH] = ACTIONS(1172), - [anon_sym_PLUS] = ACTIONS(1172), - [anon_sym_bit_DASHshl] = ACTIONS(1172), - [anon_sym_bit_DASHshr] = ACTIONS(1172), - [anon_sym_EQ_EQ] = ACTIONS(1172), - [anon_sym_BANG_EQ] = ACTIONS(1172), - [anon_sym_LT2] = ACTIONS(1172), - [anon_sym_LT_EQ] = ACTIONS(1172), - [anon_sym_GT_EQ] = ACTIONS(1172), - [anon_sym_not_DASHin] = ACTIONS(1172), - [anon_sym_starts_DASHwith] = ACTIONS(1172), - [anon_sym_ends_DASHwith] = ACTIONS(1172), - [anon_sym_EQ_TILDE] = ACTIONS(1172), - [anon_sym_BANG_TILDE] = ACTIONS(1172), - [anon_sym_bit_DASHand] = ACTIONS(1172), - [anon_sym_bit_DASHxor] = ACTIONS(1172), - [anon_sym_bit_DASHor] = ACTIONS(1172), - [anon_sym_and] = ACTIONS(1172), - [anon_sym_xor] = ACTIONS(1172), - [anon_sym_or] = ACTIONS(1172), - [anon_sym_not] = ACTIONS(1172), - [anon_sym_DOT_DOT2] = ACTIONS(1172), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1172), - [anon_sym_DOT_DOT_LT] = ACTIONS(1172), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1174), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1174), - [anon_sym_null] = ACTIONS(1172), - [anon_sym_true] = ACTIONS(1172), - [anon_sym_false] = ACTIONS(1172), - [aux_sym__val_number_decimal_token1] = ACTIONS(1172), - [aux_sym__val_number_decimal_token2] = ACTIONS(1172), - [anon_sym_DOT2] = ACTIONS(1172), - [aux_sym__val_number_decimal_token3] = ACTIONS(1172), - [aux_sym__val_number_token1] = ACTIONS(1172), - [aux_sym__val_number_token2] = ACTIONS(1172), - [aux_sym__val_number_token3] = ACTIONS(1172), - [aux_sym__val_number_token4] = ACTIONS(1172), - [aux_sym__val_number_token5] = ACTIONS(1172), - [aux_sym__val_number_token6] = ACTIONS(1172), - [anon_sym_0b] = ACTIONS(1172), - [anon_sym_0o] = ACTIONS(1172), - [anon_sym_0x] = ACTIONS(1172), - [sym_val_date] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(1172), - [sym__str_single_quotes] = ACTIONS(1172), - [sym__str_back_ticks] = ACTIONS(1172), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1172), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1172), - [anon_sym_CARET] = ACTIONS(1172), + [ts_builtin_sym_end] = ACTIONS(1173), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [anon_sym_SEMI] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_where] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, [425] = { [sym_comment] = STATE(425), - [anon_sym_export] = ACTIONS(1273), - [anon_sym_alias] = ACTIONS(1273), - [anon_sym_let] = ACTIONS(1273), - [anon_sym_let_DASHenv] = ACTIONS(1273), - [anon_sym_mut] = ACTIONS(1273), - [anon_sym_const] = ACTIONS(1273), - [anon_sym_SEMI] = ACTIONS(1273), - [sym_cmd_identifier] = ACTIONS(1273), - [anon_sym_LF] = ACTIONS(1275), - [anon_sym_def] = ACTIONS(1273), - [anon_sym_export_DASHenv] = ACTIONS(1273), - [anon_sym_extern] = ACTIONS(1273), - [anon_sym_module] = ACTIONS(1273), - [anon_sym_use] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1273), - [anon_sym_LPAREN] = ACTIONS(1273), - [anon_sym_RPAREN] = ACTIONS(1273), - [anon_sym_DOLLAR] = ACTIONS(1273), - [anon_sym_error] = ACTIONS(1273), - [anon_sym_GT] = ACTIONS(1273), - [anon_sym_DASH_DASH] = ACTIONS(1273), - [anon_sym_DASH] = ACTIONS(1273), - [anon_sym_break] = ACTIONS(1273), - [anon_sym_continue] = ACTIONS(1273), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_in] = ACTIONS(1273), - [anon_sym_loop] = ACTIONS(1273), - [anon_sym_while] = ACTIONS(1273), - [anon_sym_do] = ACTIONS(1273), - [anon_sym_if] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_RBRACE] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_try] = ACTIONS(1273), - [anon_sym_return] = ACTIONS(1273), - [anon_sym_source] = ACTIONS(1273), - [anon_sym_source_DASHenv] = ACTIONS(1273), - [anon_sym_register] = ACTIONS(1273), - [anon_sym_hide] = ACTIONS(1273), - [anon_sym_hide_DASHenv] = ACTIONS(1273), - [anon_sym_overlay] = ACTIONS(1273), - [anon_sym_as] = ACTIONS(1273), - [anon_sym_STAR] = ACTIONS(1273), - [anon_sym_where] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1273), - [anon_sym_PLUS_PLUS] = ACTIONS(1273), - [anon_sym_SLASH] = ACTIONS(1273), - [anon_sym_mod] = ACTIONS(1273), - [anon_sym_SLASH_SLASH] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(1273), - [anon_sym_bit_DASHshl] = ACTIONS(1273), - [anon_sym_bit_DASHshr] = ACTIONS(1273), - [anon_sym_EQ_EQ] = ACTIONS(1273), - [anon_sym_BANG_EQ] = ACTIONS(1273), - [anon_sym_LT2] = ACTIONS(1273), - [anon_sym_LT_EQ] = ACTIONS(1273), - [anon_sym_GT_EQ] = ACTIONS(1273), - [anon_sym_not_DASHin] = ACTIONS(1273), - [anon_sym_starts_DASHwith] = ACTIONS(1273), - [anon_sym_ends_DASHwith] = ACTIONS(1273), - [anon_sym_EQ_TILDE] = ACTIONS(1273), - [anon_sym_BANG_TILDE] = ACTIONS(1273), - [anon_sym_bit_DASHand] = ACTIONS(1273), - [anon_sym_bit_DASHxor] = ACTIONS(1273), - [anon_sym_bit_DASHor] = ACTIONS(1273), - [anon_sym_and] = ACTIONS(1273), - [anon_sym_xor] = ACTIONS(1273), - [anon_sym_or] = ACTIONS(1273), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1273), - [anon_sym_DOT_DOT_LT] = ACTIONS(1273), - [anon_sym_null] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1273), - [anon_sym_false] = ACTIONS(1273), - [aux_sym__val_number_decimal_token1] = ACTIONS(1273), - [aux_sym__val_number_decimal_token2] = ACTIONS(1273), - [anon_sym_DOT2] = ACTIONS(1273), - [aux_sym__val_number_decimal_token3] = ACTIONS(1273), - [aux_sym__val_number_token1] = ACTIONS(1273), - [aux_sym__val_number_token2] = ACTIONS(1273), - [aux_sym__val_number_token3] = ACTIONS(1273), - [aux_sym__val_number_token4] = ACTIONS(1273), - [aux_sym__val_number_token5] = ACTIONS(1273), - [aux_sym__val_number_token6] = ACTIONS(1273), - [anon_sym_0b] = ACTIONS(1273), - [anon_sym_0o] = ACTIONS(1273), - [anon_sym_0x] = ACTIONS(1273), - [sym_val_date] = ACTIONS(1273), - [anon_sym_DQUOTE] = ACTIONS(1273), - [sym__str_single_quotes] = ACTIONS(1273), - [sym__str_back_ticks] = ACTIONS(1273), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1273), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1273), - [anon_sym_CARET] = ACTIONS(1273), - [aux_sym_unquoted_token6] = ACTIONS(1257), + [ts_builtin_sym_end] = ACTIONS(1173), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [anon_sym_SEMI] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_where] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, [426] = { [sym_comment] = STATE(426), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_alias] = ACTIONS(1109), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_let_DASHenv] = ACTIONS(1109), - [anon_sym_mut] = ACTIONS(1109), - [anon_sym_const] = ACTIONS(1109), - [anon_sym_SEMI] = ACTIONS(1109), - [sym_cmd_identifier] = ACTIONS(1109), - [anon_sym_LF] = ACTIONS(1111), - [anon_sym_def] = ACTIONS(1109), - [anon_sym_export_DASHenv] = ACTIONS(1109), - [anon_sym_extern] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_use] = ACTIONS(1109), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_RPAREN] = ACTIONS(1109), - [anon_sym_DOLLAR] = ACTIONS(1109), - [anon_sym_error] = ACTIONS(1109), - [anon_sym_GT] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_break] = ACTIONS(1109), - [anon_sym_continue] = ACTIONS(1109), - [anon_sym_for] = ACTIONS(1109), - [anon_sym_in] = ACTIONS(1109), - [anon_sym_loop] = ACTIONS(1109), - [anon_sym_while] = ACTIONS(1109), - [anon_sym_do] = ACTIONS(1109), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_RBRACE] = ACTIONS(1109), - [anon_sym_DOT_DOT] = ACTIONS(1109), - [anon_sym_try] = ACTIONS(1109), - [anon_sym_return] = ACTIONS(1109), - [anon_sym_source] = ACTIONS(1109), - [anon_sym_source_DASHenv] = ACTIONS(1109), - [anon_sym_register] = ACTIONS(1109), - [anon_sym_hide] = ACTIONS(1109), - [anon_sym_hide_DASHenv] = ACTIONS(1109), - [anon_sym_overlay] = ACTIONS(1109), - [anon_sym_as] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_where] = ACTIONS(1109), - [anon_sym_STAR_STAR] = ACTIONS(1109), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_SLASH] = ACTIONS(1109), - [anon_sym_mod] = ACTIONS(1109), - [anon_sym_SLASH_SLASH] = ACTIONS(1109), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_bit_DASHshl] = ACTIONS(1109), - [anon_sym_bit_DASHshr] = ACTIONS(1109), - [anon_sym_EQ_EQ] = ACTIONS(1109), - [anon_sym_BANG_EQ] = ACTIONS(1109), - [anon_sym_LT2] = ACTIONS(1109), - [anon_sym_LT_EQ] = ACTIONS(1109), - [anon_sym_GT_EQ] = ACTIONS(1109), - [anon_sym_not_DASHin] = ACTIONS(1109), - [anon_sym_starts_DASHwith] = ACTIONS(1109), - [anon_sym_ends_DASHwith] = ACTIONS(1109), - [anon_sym_EQ_TILDE] = ACTIONS(1109), - [anon_sym_BANG_TILDE] = ACTIONS(1109), - [anon_sym_bit_DASHand] = ACTIONS(1109), - [anon_sym_bit_DASHxor] = ACTIONS(1109), - [anon_sym_bit_DASHor] = ACTIONS(1109), - [anon_sym_and] = ACTIONS(1109), - [anon_sym_xor] = ACTIONS(1109), - [anon_sym_or] = ACTIONS(1109), - [anon_sym_not] = ACTIONS(1109), - [anon_sym_DOT] = ACTIONS(1109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1109), - [anon_sym_DOT_DOT_LT] = ACTIONS(1109), - [anon_sym_null] = ACTIONS(1109), - [anon_sym_true] = ACTIONS(1109), - [anon_sym_false] = ACTIONS(1109), - [aux_sym__val_number_decimal_token1] = ACTIONS(1109), - [aux_sym__val_number_decimal_token2] = ACTIONS(1109), - [anon_sym_DOT2] = ACTIONS(1109), - [aux_sym__val_number_decimal_token3] = ACTIONS(1109), - [aux_sym__val_number_token1] = ACTIONS(1109), - [aux_sym__val_number_token2] = ACTIONS(1109), - [aux_sym__val_number_token3] = ACTIONS(1109), - [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(1109), - [anon_sym_0o] = ACTIONS(1109), - [anon_sym_0x] = ACTIONS(1109), - [sym_val_date] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(1109), - [sym__str_single_quotes] = ACTIONS(1109), - [sym__str_back_ticks] = ACTIONS(1109), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1109), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1109), - [anon_sym_CARET] = ACTIONS(1109), + [ts_builtin_sym_end] = ACTIONS(1173), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [anon_sym_SEMI] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_where] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, [427] = { [sym_comment] = STATE(427), - [ts_builtin_sym_end] = ACTIONS(1065), - [anon_sym_export] = ACTIONS(1063), - [anon_sym_alias] = ACTIONS(1063), - [anon_sym_let] = ACTIONS(1063), - [anon_sym_let_DASHenv] = ACTIONS(1063), - [anon_sym_mut] = ACTIONS(1063), - [anon_sym_const] = ACTIONS(1063), - [anon_sym_SEMI] = ACTIONS(1063), - [sym_cmd_identifier] = ACTIONS(1063), - [anon_sym_LF] = ACTIONS(1065), - [anon_sym_def] = ACTIONS(1063), - [anon_sym_export_DASHenv] = ACTIONS(1063), - [anon_sym_extern] = ACTIONS(1063), - [anon_sym_module] = ACTIONS(1063), - [anon_sym_use] = ACTIONS(1063), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_error] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_DASH_DASH] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_break] = ACTIONS(1063), - [anon_sym_continue] = ACTIONS(1063), - [anon_sym_for] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1063), - [anon_sym_loop] = ACTIONS(1063), - [anon_sym_while] = ACTIONS(1063), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_if] = ACTIONS(1063), - [anon_sym_match] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1063), - [anon_sym_return] = ACTIONS(1063), - [anon_sym_source] = ACTIONS(1063), - [anon_sym_source_DASHenv] = ACTIONS(1063), - [anon_sym_register] = ACTIONS(1063), - [anon_sym_hide] = ACTIONS(1063), - [anon_sym_hide_DASHenv] = ACTIONS(1063), - [anon_sym_overlay] = ACTIONS(1063), - [anon_sym_as] = ACTIONS(1063), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_where] = ACTIONS(1063), - [anon_sym_QMARK2] = ACTIONS(1063), - [anon_sym_STAR_STAR] = ACTIONS(1063), - [anon_sym_PLUS_PLUS] = ACTIONS(1063), - [anon_sym_SLASH] = ACTIONS(1063), - [anon_sym_mod] = ACTIONS(1063), - [anon_sym_SLASH_SLASH] = ACTIONS(1063), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_bit_DASHshl] = ACTIONS(1063), - [anon_sym_bit_DASHshr] = ACTIONS(1063), - [anon_sym_EQ_EQ] = ACTIONS(1063), - [anon_sym_BANG_EQ] = ACTIONS(1063), - [anon_sym_LT2] = ACTIONS(1063), - [anon_sym_LT_EQ] = ACTIONS(1063), - [anon_sym_GT_EQ] = ACTIONS(1063), - [anon_sym_not_DASHin] = ACTIONS(1063), - [anon_sym_starts_DASHwith] = ACTIONS(1063), - [anon_sym_ends_DASHwith] = ACTIONS(1063), - [anon_sym_EQ_TILDE] = ACTIONS(1063), - [anon_sym_BANG_TILDE] = ACTIONS(1063), - [anon_sym_bit_DASHand] = ACTIONS(1063), - [anon_sym_bit_DASHxor] = ACTIONS(1063), - [anon_sym_bit_DASHor] = ACTIONS(1063), - [anon_sym_and] = ACTIONS(1063), - [anon_sym_xor] = ACTIONS(1063), - [anon_sym_or] = ACTIONS(1063), - [anon_sym_not] = ACTIONS(1063), - [anon_sym_DOT] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1063), - [anon_sym_DOT_DOT_LT] = ACTIONS(1063), - [anon_sym_null] = ACTIONS(1063), - [anon_sym_true] = ACTIONS(1063), - [anon_sym_false] = ACTIONS(1063), - [aux_sym__val_number_decimal_token1] = ACTIONS(1063), - [aux_sym__val_number_decimal_token2] = ACTIONS(1063), - [anon_sym_DOT2] = ACTIONS(1063), - [aux_sym__val_number_decimal_token3] = ACTIONS(1063), - [aux_sym__val_number_token1] = ACTIONS(1063), - [aux_sym__val_number_token2] = ACTIONS(1063), - [aux_sym__val_number_token3] = ACTIONS(1063), - [aux_sym__val_number_token4] = ACTIONS(1063), - [aux_sym__val_number_token5] = ACTIONS(1063), - [aux_sym__val_number_token6] = ACTIONS(1063), - [anon_sym_0b] = ACTIONS(1063), - [anon_sym_0o] = ACTIONS(1063), - [anon_sym_0x] = ACTIONS(1063), - [sym_val_date] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [sym__str_single_quotes] = ACTIONS(1063), - [sym__str_back_ticks] = ACTIONS(1063), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1063), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1063), - [anon_sym_CARET] = ACTIONS(1063), + [ts_builtin_sym_end] = ACTIONS(1173), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [anon_sym_SEMI] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_where] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, [428] = { - [sym_path] = STATE(541), [sym_comment] = STATE(428), - [aux_sym_cell_path_repeat1] = STATE(428), - [anon_sym_export] = ACTIONS(999), - [anon_sym_alias] = ACTIONS(999), - [anon_sym_let] = ACTIONS(999), - [anon_sym_let_DASHenv] = ACTIONS(999), - [anon_sym_mut] = ACTIONS(999), - [anon_sym_const] = ACTIONS(999), - [anon_sym_SEMI] = ACTIONS(999), - [sym_cmd_identifier] = ACTIONS(999), - [anon_sym_LF] = ACTIONS(1001), - [anon_sym_def] = ACTIONS(999), - [anon_sym_export_DASHenv] = ACTIONS(999), - [anon_sym_extern] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_use] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_RPAREN] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_error] = ACTIONS(999), - [anon_sym_GT] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_break] = ACTIONS(999), - [anon_sym_continue] = ACTIONS(999), - [anon_sym_for] = ACTIONS(999), - [anon_sym_in] = ACTIONS(999), - [anon_sym_loop] = ACTIONS(999), - [anon_sym_while] = ACTIONS(999), - [anon_sym_do] = ACTIONS(999), - [anon_sym_if] = ACTIONS(999), - [anon_sym_match] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(999), - [anon_sym_RBRACE] = ACTIONS(999), - [anon_sym_DOT_DOT] = ACTIONS(999), - [anon_sym_try] = ACTIONS(999), - [anon_sym_return] = ACTIONS(999), - [anon_sym_source] = ACTIONS(999), - [anon_sym_source_DASHenv] = ACTIONS(999), - [anon_sym_register] = ACTIONS(999), - [anon_sym_hide] = ACTIONS(999), - [anon_sym_hide_DASHenv] = ACTIONS(999), - [anon_sym_overlay] = ACTIONS(999), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_where] = ACTIONS(999), - [anon_sym_STAR_STAR] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(999), - [anon_sym_mod] = ACTIONS(999), - [anon_sym_SLASH_SLASH] = ACTIONS(999), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_bit_DASHshl] = ACTIONS(999), - [anon_sym_bit_DASHshr] = ACTIONS(999), - [anon_sym_EQ_EQ] = ACTIONS(999), - [anon_sym_BANG_EQ] = ACTIONS(999), - [anon_sym_LT2] = ACTIONS(999), - [anon_sym_LT_EQ] = ACTIONS(999), - [anon_sym_GT_EQ] = ACTIONS(999), - [anon_sym_not_DASHin] = ACTIONS(999), - [anon_sym_starts_DASHwith] = ACTIONS(999), - [anon_sym_ends_DASHwith] = ACTIONS(999), - [anon_sym_EQ_TILDE] = ACTIONS(999), - [anon_sym_BANG_TILDE] = ACTIONS(999), - [anon_sym_bit_DASHand] = ACTIONS(999), - [anon_sym_bit_DASHxor] = ACTIONS(999), - [anon_sym_bit_DASHor] = ACTIONS(999), - [anon_sym_and] = ACTIONS(999), - [anon_sym_xor] = ACTIONS(999), - [anon_sym_or] = ACTIONS(999), - [anon_sym_not] = ACTIONS(999), - [anon_sym_DOT] = ACTIONS(1277), - [anon_sym_DOT_DOT_EQ] = ACTIONS(999), - [anon_sym_DOT_DOT_LT] = ACTIONS(999), - [anon_sym_null] = ACTIONS(999), - [anon_sym_true] = ACTIONS(999), - [anon_sym_false] = ACTIONS(999), - [aux_sym__val_number_decimal_token1] = ACTIONS(999), - [aux_sym__val_number_decimal_token2] = ACTIONS(999), - [anon_sym_DOT2] = ACTIONS(999), - [aux_sym__val_number_decimal_token3] = ACTIONS(999), - [aux_sym__val_number_token1] = ACTIONS(999), - [aux_sym__val_number_token2] = ACTIONS(999), - [aux_sym__val_number_token3] = ACTIONS(999), - [aux_sym__val_number_token4] = ACTIONS(999), - [aux_sym__val_number_token5] = ACTIONS(999), - [aux_sym__val_number_token6] = ACTIONS(999), - [anon_sym_0b] = ACTIONS(999), - [anon_sym_0o] = ACTIONS(999), - [anon_sym_0x] = ACTIONS(999), - [sym_val_date] = ACTIONS(999), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym__str_single_quotes] = ACTIONS(999), - [sym__str_back_ticks] = ACTIONS(999), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(999), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(999), - [anon_sym_CARET] = ACTIONS(999), + [ts_builtin_sym_end] = ACTIONS(1173), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [anon_sym_SEMI] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_where] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, [429] = { [sym_comment] = STATE(429), - [anon_sym_export] = ACTIONS(1168), - [anon_sym_alias] = ACTIONS(1168), - [anon_sym_let] = ACTIONS(1168), - [anon_sym_let_DASHenv] = ACTIONS(1168), - [anon_sym_mut] = ACTIONS(1168), - [anon_sym_const] = ACTIONS(1168), - [anon_sym_SEMI] = ACTIONS(1168), - [sym_cmd_identifier] = ACTIONS(1168), - [anon_sym_LF] = ACTIONS(1170), - [anon_sym_def] = ACTIONS(1168), - [anon_sym_export_DASHenv] = ACTIONS(1168), - [anon_sym_extern] = ACTIONS(1168), - [anon_sym_module] = ACTIONS(1168), - [anon_sym_use] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_RPAREN] = ACTIONS(1168), - [anon_sym_DOLLAR] = ACTIONS(1168), - [anon_sym_error] = ACTIONS(1168), - [anon_sym_GT] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1168), - [anon_sym_break] = ACTIONS(1168), - [anon_sym_continue] = ACTIONS(1168), - [anon_sym_for] = ACTIONS(1168), - [anon_sym_in] = ACTIONS(1168), - [anon_sym_loop] = ACTIONS(1168), - [anon_sym_while] = ACTIONS(1168), - [anon_sym_do] = ACTIONS(1168), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_match] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1168), - [anon_sym_RBRACE] = ACTIONS(1168), - [anon_sym_DOT_DOT] = ACTIONS(1168), - [anon_sym_try] = ACTIONS(1168), - [anon_sym_return] = ACTIONS(1168), - [anon_sym_source] = ACTIONS(1168), - [anon_sym_source_DASHenv] = ACTIONS(1168), - [anon_sym_register] = ACTIONS(1168), - [anon_sym_hide] = ACTIONS(1168), - [anon_sym_hide_DASHenv] = ACTIONS(1168), - [anon_sym_overlay] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_where] = ACTIONS(1168), - [anon_sym_STAR_STAR] = ACTIONS(1168), - [anon_sym_PLUS_PLUS] = ACTIONS(1168), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_mod] = ACTIONS(1168), - [anon_sym_SLASH_SLASH] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(1168), - [anon_sym_bit_DASHshl] = ACTIONS(1168), - [anon_sym_bit_DASHshr] = ACTIONS(1168), - [anon_sym_EQ_EQ] = ACTIONS(1168), - [anon_sym_BANG_EQ] = ACTIONS(1168), - [anon_sym_LT2] = ACTIONS(1168), - [anon_sym_LT_EQ] = ACTIONS(1168), - [anon_sym_GT_EQ] = ACTIONS(1168), - [anon_sym_not_DASHin] = ACTIONS(1168), - [anon_sym_starts_DASHwith] = ACTIONS(1168), - [anon_sym_ends_DASHwith] = ACTIONS(1168), - [anon_sym_EQ_TILDE] = ACTIONS(1168), - [anon_sym_BANG_TILDE] = ACTIONS(1168), - [anon_sym_bit_DASHand] = ACTIONS(1168), - [anon_sym_bit_DASHxor] = ACTIONS(1168), - [anon_sym_bit_DASHor] = ACTIONS(1168), - [anon_sym_and] = ACTIONS(1168), - [anon_sym_xor] = ACTIONS(1168), - [anon_sym_or] = ACTIONS(1168), - [anon_sym_not] = ACTIONS(1168), - [anon_sym_DOT_DOT2] = ACTIONS(1168), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1168), - [anon_sym_DOT_DOT_LT] = ACTIONS(1168), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1170), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1170), - [anon_sym_null] = ACTIONS(1168), - [anon_sym_true] = ACTIONS(1168), - [anon_sym_false] = ACTIONS(1168), - [aux_sym__val_number_decimal_token1] = ACTIONS(1168), - [aux_sym__val_number_decimal_token2] = ACTIONS(1168), - [anon_sym_DOT2] = ACTIONS(1168), - [aux_sym__val_number_decimal_token3] = ACTIONS(1168), - [aux_sym__val_number_token1] = ACTIONS(1168), - [aux_sym__val_number_token2] = ACTIONS(1168), - [aux_sym__val_number_token3] = ACTIONS(1168), - [aux_sym__val_number_token4] = ACTIONS(1168), - [aux_sym__val_number_token5] = ACTIONS(1168), - [aux_sym__val_number_token6] = ACTIONS(1168), - [anon_sym_0b] = ACTIONS(1168), - [anon_sym_0o] = ACTIONS(1168), - [anon_sym_0x] = ACTIONS(1168), - [sym_val_date] = ACTIONS(1168), - [anon_sym_DQUOTE] = ACTIONS(1168), - [sym__str_single_quotes] = ACTIONS(1168), - [sym__str_back_ticks] = ACTIONS(1168), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1168), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1168), - [anon_sym_CARET] = ACTIONS(1168), + [ts_builtin_sym_end] = ACTIONS(1173), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [anon_sym_SEMI] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_where] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, [430] = { - [sym_cell_path] = STATE(648), - [sym_path] = STATE(407), [sym_comment] = STATE(430), - [anon_sym_export] = ACTIONS(995), - [anon_sym_alias] = ACTIONS(995), - [anon_sym_let] = ACTIONS(995), - [anon_sym_let_DASHenv] = ACTIONS(995), - [anon_sym_mut] = ACTIONS(995), - [anon_sym_const] = ACTIONS(995), - [anon_sym_SEMI] = ACTIONS(995), - [sym_cmd_identifier] = ACTIONS(995), - [anon_sym_LF] = ACTIONS(997), - [anon_sym_def] = ACTIONS(995), - [anon_sym_export_DASHenv] = ACTIONS(995), - [anon_sym_extern] = ACTIONS(995), - [anon_sym_module] = ACTIONS(995), - [anon_sym_use] = ACTIONS(995), - [anon_sym_LBRACK] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_RPAREN] = ACTIONS(995), - [anon_sym_DOLLAR] = ACTIONS(995), - [anon_sym_error] = ACTIONS(995), - [anon_sym_GT] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_break] = ACTIONS(995), - [anon_sym_continue] = ACTIONS(995), - [anon_sym_for] = ACTIONS(995), - [anon_sym_in] = ACTIONS(995), - [anon_sym_loop] = ACTIONS(995), - [anon_sym_while] = ACTIONS(995), - [anon_sym_do] = ACTIONS(995), - [anon_sym_if] = ACTIONS(995), - [anon_sym_match] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_RBRACE] = ACTIONS(995), - [anon_sym_DOT_DOT] = ACTIONS(995), - [anon_sym_try] = ACTIONS(995), - [anon_sym_return] = ACTIONS(995), - [anon_sym_source] = ACTIONS(995), - [anon_sym_source_DASHenv] = ACTIONS(995), - [anon_sym_register] = ACTIONS(995), - [anon_sym_hide] = ACTIONS(995), - [anon_sym_hide_DASHenv] = ACTIONS(995), - [anon_sym_overlay] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_where] = ACTIONS(995), - [anon_sym_STAR_STAR] = ACTIONS(995), - [anon_sym_PLUS_PLUS] = ACTIONS(995), - [anon_sym_SLASH] = ACTIONS(995), - [anon_sym_mod] = ACTIONS(995), - [anon_sym_SLASH_SLASH] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_bit_DASHshl] = ACTIONS(995), - [anon_sym_bit_DASHshr] = ACTIONS(995), - [anon_sym_EQ_EQ] = ACTIONS(995), - [anon_sym_BANG_EQ] = ACTIONS(995), - [anon_sym_LT2] = ACTIONS(995), - [anon_sym_LT_EQ] = ACTIONS(995), - [anon_sym_GT_EQ] = ACTIONS(995), - [anon_sym_not_DASHin] = ACTIONS(995), - [anon_sym_starts_DASHwith] = ACTIONS(995), - [anon_sym_ends_DASHwith] = ACTIONS(995), - [anon_sym_EQ_TILDE] = ACTIONS(995), - [anon_sym_BANG_TILDE] = ACTIONS(995), - [anon_sym_bit_DASHand] = ACTIONS(995), - [anon_sym_bit_DASHxor] = ACTIONS(995), - [anon_sym_bit_DASHor] = ACTIONS(995), - [anon_sym_and] = ACTIONS(995), - [anon_sym_xor] = ACTIONS(995), - [anon_sym_or] = ACTIONS(995), - [anon_sym_not] = ACTIONS(995), - [anon_sym_DOT] = ACTIONS(1241), - [anon_sym_DOT_DOT_EQ] = ACTIONS(995), - [anon_sym_DOT_DOT_LT] = ACTIONS(995), - [anon_sym_null] = ACTIONS(995), - [anon_sym_true] = ACTIONS(995), - [anon_sym_false] = ACTIONS(995), - [aux_sym__val_number_decimal_token1] = ACTIONS(995), - [aux_sym__val_number_decimal_token2] = ACTIONS(995), - [anon_sym_DOT2] = ACTIONS(995), - [aux_sym__val_number_decimal_token3] = ACTIONS(995), - [aux_sym__val_number_token1] = ACTIONS(995), - [aux_sym__val_number_token2] = ACTIONS(995), - [aux_sym__val_number_token3] = ACTIONS(995), - [aux_sym__val_number_token4] = ACTIONS(995), - [aux_sym__val_number_token5] = ACTIONS(995), - [aux_sym__val_number_token6] = ACTIONS(995), - [anon_sym_0b] = ACTIONS(995), - [anon_sym_0o] = ACTIONS(995), - [anon_sym_0x] = ACTIONS(995), - [sym_val_date] = ACTIONS(995), - [anon_sym_DQUOTE] = ACTIONS(995), - [sym__str_single_quotes] = ACTIONS(995), - [sym__str_back_ticks] = ACTIONS(995), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(995), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(995), - [anon_sym_CARET] = ACTIONS(995), + [ts_builtin_sym_end] = ACTIONS(1173), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [anon_sym_SEMI] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_where] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, [431] = { [sym_comment] = STATE(431), - [anon_sym_export] = ACTIONS(1280), - [anon_sym_alias] = ACTIONS(1280), - [anon_sym_let] = ACTIONS(1280), - [anon_sym_let_DASHenv] = ACTIONS(1280), - [anon_sym_mut] = ACTIONS(1280), - [anon_sym_const] = ACTIONS(1280), - [anon_sym_SEMI] = ACTIONS(1280), - [sym_cmd_identifier] = ACTIONS(1280), - [anon_sym_LF] = ACTIONS(1282), - [anon_sym_def] = ACTIONS(1280), - [anon_sym_export_DASHenv] = ACTIONS(1280), - [anon_sym_extern] = ACTIONS(1280), - [anon_sym_module] = ACTIONS(1280), - [anon_sym_use] = ACTIONS(1280), - [anon_sym_LBRACK] = ACTIONS(1280), - [anon_sym_LPAREN] = ACTIONS(1280), - [anon_sym_RPAREN] = ACTIONS(1280), - [anon_sym_DOLLAR] = ACTIONS(1280), - [anon_sym_error] = ACTIONS(1280), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_DASH_DASH] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_break] = ACTIONS(1280), - [anon_sym_continue] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_in] = ACTIONS(1280), - [anon_sym_loop] = ACTIONS(1280), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1280), - [anon_sym_RBRACE] = ACTIONS(1280), - [anon_sym_DOT_DOT] = ACTIONS(1280), - [anon_sym_try] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1280), - [anon_sym_source] = ACTIONS(1280), - [anon_sym_source_DASHenv] = ACTIONS(1280), - [anon_sym_register] = ACTIONS(1280), - [anon_sym_hide] = ACTIONS(1280), - [anon_sym_hide_DASHenv] = ACTIONS(1280), - [anon_sym_overlay] = ACTIONS(1280), - [anon_sym_as] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1280), - [anon_sym_where] = ACTIONS(1280), - [anon_sym_STAR_STAR] = ACTIONS(1280), - [anon_sym_PLUS_PLUS] = ACTIONS(1280), - [anon_sym_SLASH] = ACTIONS(1280), - [anon_sym_mod] = ACTIONS(1280), - [anon_sym_SLASH_SLASH] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_bit_DASHshl] = ACTIONS(1280), - [anon_sym_bit_DASHshr] = ACTIONS(1280), - [anon_sym_EQ_EQ] = ACTIONS(1280), - [anon_sym_BANG_EQ] = ACTIONS(1280), - [anon_sym_LT2] = ACTIONS(1280), - [anon_sym_LT_EQ] = ACTIONS(1280), - [anon_sym_GT_EQ] = ACTIONS(1280), - [anon_sym_not_DASHin] = ACTIONS(1280), - [anon_sym_starts_DASHwith] = ACTIONS(1280), - [anon_sym_ends_DASHwith] = ACTIONS(1280), - [anon_sym_EQ_TILDE] = ACTIONS(1280), - [anon_sym_BANG_TILDE] = ACTIONS(1280), - [anon_sym_bit_DASHand] = ACTIONS(1280), - [anon_sym_bit_DASHxor] = ACTIONS(1280), - [anon_sym_bit_DASHor] = ACTIONS(1280), - [anon_sym_and] = ACTIONS(1280), - [anon_sym_xor] = ACTIONS(1280), - [anon_sym_or] = ACTIONS(1280), - [anon_sym_not] = ACTIONS(1280), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1280), - [anon_sym_DOT_DOT_LT] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1280), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [aux_sym__val_number_decimal_token1] = ACTIONS(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1280), - [anon_sym_DOT2] = ACTIONS(1280), - [aux_sym__val_number_decimal_token3] = ACTIONS(1280), - [aux_sym__val_number_token1] = ACTIONS(1280), - [aux_sym__val_number_token2] = ACTIONS(1280), - [aux_sym__val_number_token3] = ACTIONS(1280), - [aux_sym__val_number_token4] = ACTIONS(1280), - [aux_sym__val_number_token5] = ACTIONS(1280), - [aux_sym__val_number_token6] = ACTIONS(1280), - [anon_sym_0b] = ACTIONS(1280), - [anon_sym_0o] = ACTIONS(1280), - [anon_sym_0x] = ACTIONS(1280), - [sym_val_date] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1280), - [sym__str_single_quotes] = ACTIONS(1280), - [sym__str_back_ticks] = ACTIONS(1280), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1280), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1280), - [anon_sym_CARET] = ACTIONS(1280), - [aux_sym_unquoted_token6] = ACTIONS(1280), + [ts_builtin_sym_end] = ACTIONS(1173), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [anon_sym_SEMI] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_where] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, [432] = { [sym_comment] = STATE(432), - [anon_sym_export] = ACTIONS(1113), - [anon_sym_alias] = ACTIONS(1113), - [anon_sym_let] = ACTIONS(1113), - [anon_sym_let_DASHenv] = ACTIONS(1113), - [anon_sym_mut] = ACTIONS(1113), - [anon_sym_const] = ACTIONS(1113), - [anon_sym_SEMI] = ACTIONS(1113), - [sym_cmd_identifier] = ACTIONS(1113), - [anon_sym_LF] = ACTIONS(1115), - [anon_sym_def] = ACTIONS(1113), - [anon_sym_export_DASHenv] = ACTIONS(1113), - [anon_sym_extern] = ACTIONS(1113), - [anon_sym_module] = ACTIONS(1113), - [anon_sym_use] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_RPAREN] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1113), - [anon_sym_error] = ACTIONS(1113), - [anon_sym_GT] = ACTIONS(1113), - [anon_sym_DASH_DASH] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_in] = ACTIONS(1113), - [anon_sym_loop] = ACTIONS(1113), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_RBRACE] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1113), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_source] = ACTIONS(1113), - [anon_sym_source_DASHenv] = ACTIONS(1113), - [anon_sym_register] = ACTIONS(1113), - [anon_sym_hide] = ACTIONS(1113), - [anon_sym_hide_DASHenv] = ACTIONS(1113), - [anon_sym_overlay] = ACTIONS(1113), - [anon_sym_as] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_where] = ACTIONS(1113), - [anon_sym_STAR_STAR] = ACTIONS(1113), - [anon_sym_PLUS_PLUS] = ACTIONS(1113), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_mod] = ACTIONS(1113), - [anon_sym_SLASH_SLASH] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_bit_DASHshl] = ACTIONS(1113), - [anon_sym_bit_DASHshr] = ACTIONS(1113), - [anon_sym_EQ_EQ] = ACTIONS(1113), - [anon_sym_BANG_EQ] = ACTIONS(1113), - [anon_sym_LT2] = ACTIONS(1113), - [anon_sym_LT_EQ] = ACTIONS(1113), - [anon_sym_GT_EQ] = ACTIONS(1113), - [anon_sym_not_DASHin] = ACTIONS(1113), - [anon_sym_starts_DASHwith] = ACTIONS(1113), - [anon_sym_ends_DASHwith] = ACTIONS(1113), - [anon_sym_EQ_TILDE] = ACTIONS(1113), - [anon_sym_BANG_TILDE] = ACTIONS(1113), - [anon_sym_bit_DASHand] = ACTIONS(1113), - [anon_sym_bit_DASHxor] = ACTIONS(1113), - [anon_sym_bit_DASHor] = ACTIONS(1113), - [anon_sym_and] = ACTIONS(1113), - [anon_sym_xor] = ACTIONS(1113), - [anon_sym_or] = ACTIONS(1113), - [anon_sym_not] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1113), - [anon_sym_DOT_DOT_LT] = ACTIONS(1113), - [anon_sym_null] = ACTIONS(1113), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1113), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_decimal_token2] = ACTIONS(1113), - [anon_sym_DOT2] = ACTIONS(1113), - [aux_sym__val_number_decimal_token3] = ACTIONS(1113), - [aux_sym__val_number_token1] = ACTIONS(1113), - [aux_sym__val_number_token2] = ACTIONS(1113), - [aux_sym__val_number_token3] = ACTIONS(1113), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1113), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_0b] = ACTIONS(1113), - [anon_sym_0o] = ACTIONS(1113), - [anon_sym_0x] = ACTIONS(1113), - [sym_val_date] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym__str_single_quotes] = ACTIONS(1113), - [sym__str_back_ticks] = ACTIONS(1113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), - [anon_sym_CARET] = ACTIONS(1113), + [anon_sym_export] = ACTIONS(1291), + [anon_sym_alias] = ACTIONS(1291), + [anon_sym_EQ] = ACTIONS(1293), + [anon_sym_let] = ACTIONS(1291), + [anon_sym_let_DASHenv] = ACTIONS(1291), + [anon_sym_mut] = ACTIONS(1291), + [anon_sym_const] = ACTIONS(1291), + [anon_sym_PLUS_EQ] = ACTIONS(1293), + [anon_sym_DASH_EQ] = ACTIONS(1293), + [anon_sym_STAR_EQ] = ACTIONS(1293), + [anon_sym_SLASH_EQ] = ACTIONS(1293), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1293), + [anon_sym_SEMI] = ACTIONS(1089), + [sym_cmd_identifier] = ACTIONS(1291), + [anon_sym_LF] = ACTIONS(1091), + [anon_sym_def] = ACTIONS(1291), + [anon_sym_export_DASHenv] = ACTIONS(1291), + [anon_sym_extern] = ACTIONS(1291), + [anon_sym_module] = ACTIONS(1291), + [anon_sym_use] = ACTIONS(1291), + [anon_sym_COLON] = ACTIONS(1295), + [anon_sym_COMMA] = ACTIONS(1297), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_PIPE] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1291), + [anon_sym_error] = ACTIONS(1291), + [anon_sym_list] = ACTIONS(1291), + [anon_sym_GT] = ACTIONS(1089), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_break] = ACTIONS(1291), + [anon_sym_continue] = ACTIONS(1291), + [anon_sym_for] = ACTIONS(1291), + [anon_sym_in] = ACTIONS(1299), + [anon_sym_loop] = ACTIONS(1291), + [anon_sym_make] = ACTIONS(1291), + [anon_sym_while] = ACTIONS(1291), + [anon_sym_do] = ACTIONS(1291), + [anon_sym_if] = ACTIONS(1291), + [anon_sym_else] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1291), + [anon_sym_RBRACE] = ACTIONS(1299), + [anon_sym_try] = ACTIONS(1291), + [anon_sym_catch] = ACTIONS(1291), + [anon_sym_return] = ACTIONS(1291), + [anon_sym_source] = ACTIONS(1291), + [anon_sym_source_DASHenv] = ACTIONS(1291), + [anon_sym_register] = ACTIONS(1291), + [anon_sym_hide] = ACTIONS(1291), + [anon_sym_hide_DASHenv] = ACTIONS(1291), + [anon_sym_overlay] = ACTIONS(1291), + [anon_sym_new] = ACTIONS(1291), + [anon_sym_as] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_STAR_STAR] = ACTIONS(1089), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_SLASH] = ACTIONS(1089), + [anon_sym_mod] = ACTIONS(1089), + [anon_sym_SLASH_SLASH] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_bit_DASHshl] = ACTIONS(1089), + [anon_sym_bit_DASHshr] = ACTIONS(1089), + [anon_sym_EQ_EQ] = ACTIONS(1089), + [anon_sym_BANG_EQ] = ACTIONS(1089), + [anon_sym_LT2] = ACTIONS(1089), + [anon_sym_LT_EQ] = ACTIONS(1089), + [anon_sym_GT_EQ] = ACTIONS(1089), + [anon_sym_not_DASHin] = ACTIONS(1089), + [anon_sym_starts_DASHwith] = ACTIONS(1089), + [anon_sym_ends_DASHwith] = ACTIONS(1089), + [anon_sym_EQ_TILDE] = ACTIONS(1089), + [anon_sym_BANG_TILDE] = ACTIONS(1089), + [anon_sym_bit_DASHand] = ACTIONS(1089), + [anon_sym_bit_DASHxor] = ACTIONS(1089), + [anon_sym_bit_DASHor] = ACTIONS(1089), + [anon_sym_and] = ACTIONS(1089), + [anon_sym_xor] = ACTIONS(1089), + [anon_sym_or] = ACTIONS(1089), + [anon_sym_DOT_DOT2] = ACTIONS(1302), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1304), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1304), + [aux_sym__val_number_decimal_token1] = ACTIONS(1291), + [aux_sym__val_number_decimal_token2] = ACTIONS(1291), + [anon_sym_DOT2] = ACTIONS(1291), + [aux_sym__val_number_decimal_token3] = ACTIONS(1291), + [aux_sym__val_number_token1] = ACTIONS(1291), + [aux_sym__val_number_token2] = ACTIONS(1291), + [aux_sym__val_number_token3] = ACTIONS(1291), + [aux_sym__val_number_token4] = ACTIONS(1291), + [aux_sym__val_number_token5] = ACTIONS(1291), + [aux_sym__val_number_token6] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1291), + [sym__str_single_quotes] = ACTIONS(1291), + [sym__str_back_ticks] = ACTIONS(1291), + [aux_sym__record_key_token2] = ACTIONS(1291), [anon_sym_POUND] = ACTIONS(113), }, [433] = { - [sym_cell_path] = STATE(677), - [sym_path] = STATE(407), [sym_comment] = STATE(433), - [anon_sym_export] = ACTIONS(1154), - [anon_sym_alias] = ACTIONS(1154), - [anon_sym_let] = ACTIONS(1154), - [anon_sym_let_DASHenv] = ACTIONS(1154), - [anon_sym_mut] = ACTIONS(1154), - [anon_sym_const] = ACTIONS(1154), - [anon_sym_SEMI] = ACTIONS(1154), - [sym_cmd_identifier] = ACTIONS(1154), - [anon_sym_LF] = ACTIONS(1156), - [anon_sym_def] = ACTIONS(1154), - [anon_sym_export_DASHenv] = ACTIONS(1154), - [anon_sym_extern] = ACTIONS(1154), - [anon_sym_module] = ACTIONS(1154), - [anon_sym_use] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_RPAREN] = ACTIONS(1154), - [anon_sym_DOLLAR] = ACTIONS(1154), - [anon_sym_error] = ACTIONS(1154), - [anon_sym_GT] = ACTIONS(1154), - [anon_sym_DASH] = ACTIONS(1154), - [anon_sym_break] = ACTIONS(1154), - [anon_sym_continue] = ACTIONS(1154), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_in] = ACTIONS(1154), - [anon_sym_loop] = ACTIONS(1154), - [anon_sym_while] = ACTIONS(1154), - [anon_sym_do] = ACTIONS(1154), - [anon_sym_if] = ACTIONS(1154), - [anon_sym_match] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(1154), - [anon_sym_RBRACE] = ACTIONS(1154), - [anon_sym_DOT_DOT] = ACTIONS(1154), - [anon_sym_try] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(1154), - [anon_sym_source] = ACTIONS(1154), - [anon_sym_source_DASHenv] = ACTIONS(1154), - [anon_sym_register] = ACTIONS(1154), - [anon_sym_hide] = ACTIONS(1154), - [anon_sym_hide_DASHenv] = ACTIONS(1154), - [anon_sym_overlay] = ACTIONS(1154), - [anon_sym_STAR] = ACTIONS(1154), - [anon_sym_where] = ACTIONS(1154), - [anon_sym_STAR_STAR] = ACTIONS(1154), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_SLASH] = ACTIONS(1154), - [anon_sym_mod] = ACTIONS(1154), - [anon_sym_SLASH_SLASH] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1154), - [anon_sym_bit_DASHshl] = ACTIONS(1154), - [anon_sym_bit_DASHshr] = ACTIONS(1154), - [anon_sym_EQ_EQ] = ACTIONS(1154), - [anon_sym_BANG_EQ] = ACTIONS(1154), - [anon_sym_LT2] = ACTIONS(1154), - [anon_sym_LT_EQ] = ACTIONS(1154), - [anon_sym_GT_EQ] = ACTIONS(1154), - [anon_sym_not_DASHin] = ACTIONS(1154), - [anon_sym_starts_DASHwith] = ACTIONS(1154), - [anon_sym_ends_DASHwith] = ACTIONS(1154), - [anon_sym_EQ_TILDE] = ACTIONS(1154), - [anon_sym_BANG_TILDE] = ACTIONS(1154), - [anon_sym_bit_DASHand] = ACTIONS(1154), - [anon_sym_bit_DASHxor] = ACTIONS(1154), - [anon_sym_bit_DASHor] = ACTIONS(1154), - [anon_sym_and] = ACTIONS(1154), - [anon_sym_xor] = ACTIONS(1154), - [anon_sym_or] = ACTIONS(1154), - [anon_sym_not] = ACTIONS(1154), - [anon_sym_DOT] = ACTIONS(1241), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1154), - [anon_sym_DOT_DOT_LT] = ACTIONS(1154), - [anon_sym_null] = ACTIONS(1154), - [anon_sym_true] = ACTIONS(1154), - [anon_sym_false] = ACTIONS(1154), - [aux_sym__val_number_decimal_token1] = ACTIONS(1154), - [aux_sym__val_number_decimal_token2] = ACTIONS(1154), - [anon_sym_DOT2] = ACTIONS(1154), - [aux_sym__val_number_decimal_token3] = ACTIONS(1154), - [aux_sym__val_number_token1] = ACTIONS(1154), - [aux_sym__val_number_token2] = ACTIONS(1154), - [aux_sym__val_number_token3] = ACTIONS(1154), - [aux_sym__val_number_token4] = ACTIONS(1154), - [aux_sym__val_number_token5] = ACTIONS(1154), - [aux_sym__val_number_token6] = ACTIONS(1154), - [anon_sym_0b] = ACTIONS(1154), - [anon_sym_0o] = ACTIONS(1154), - [anon_sym_0x] = ACTIONS(1154), - [sym_val_date] = ACTIONS(1154), - [anon_sym_DQUOTE] = ACTIONS(1154), - [sym__str_single_quotes] = ACTIONS(1154), - [sym__str_back_ticks] = ACTIONS(1154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1154), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1154), - [anon_sym_CARET] = ACTIONS(1154), + [ts_builtin_sym_end] = ACTIONS(1173), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [anon_sym_SEMI] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_where] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, [434] = { [sym_comment] = STATE(434), - [anon_sym_export] = ACTIONS(1194), - [anon_sym_alias] = ACTIONS(1194), - [anon_sym_let] = ACTIONS(1194), - [anon_sym_let_DASHenv] = ACTIONS(1194), - [anon_sym_mut] = ACTIONS(1194), - [anon_sym_const] = ACTIONS(1194), - [anon_sym_SEMI] = ACTIONS(1194), - [sym_cmd_identifier] = ACTIONS(1194), - [anon_sym_LF] = ACTIONS(1196), - [anon_sym_def] = ACTIONS(1194), - [anon_sym_export_DASHenv] = ACTIONS(1194), - [anon_sym_extern] = ACTIONS(1194), - [anon_sym_module] = ACTIONS(1194), - [anon_sym_use] = ACTIONS(1194), - [anon_sym_LBRACK] = ACTIONS(1194), - [anon_sym_LPAREN] = ACTIONS(1194), - [anon_sym_RPAREN] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1194), - [anon_sym_error] = ACTIONS(1194), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_break] = ACTIONS(1194), - [anon_sym_continue] = ACTIONS(1194), - [anon_sym_for] = ACTIONS(1194), - [anon_sym_in] = ACTIONS(1198), - [anon_sym_loop] = ACTIONS(1194), - [anon_sym_while] = ACTIONS(1194), - [anon_sym_do] = ACTIONS(1194), - [anon_sym_if] = ACTIONS(1194), - [anon_sym_match] = ACTIONS(1194), - [anon_sym_LBRACE] = ACTIONS(1194), - [anon_sym_RBRACE] = ACTIONS(1194), - [anon_sym_DOT_DOT] = ACTIONS(1194), - [anon_sym_try] = ACTIONS(1194), - [anon_sym_return] = ACTIONS(1194), - [anon_sym_source] = ACTIONS(1194), - [anon_sym_source_DASHenv] = ACTIONS(1194), - [anon_sym_register] = ACTIONS(1194), - [anon_sym_hide] = ACTIONS(1194), - [anon_sym_hide_DASHenv] = ACTIONS(1194), - [anon_sym_overlay] = ACTIONS(1194), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_where] = ACTIONS(1194), - [anon_sym_STAR_STAR] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_SLASH] = ACTIONS(1198), - [anon_sym_mod] = ACTIONS(1198), - [anon_sym_SLASH_SLASH] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1198), - [anon_sym_bit_DASHshl] = ACTIONS(1198), - [anon_sym_bit_DASHshr] = ACTIONS(1198), - [anon_sym_EQ_EQ] = ACTIONS(1198), - [anon_sym_BANG_EQ] = ACTIONS(1198), - [anon_sym_LT2] = ACTIONS(1198), - [anon_sym_LT_EQ] = ACTIONS(1198), - [anon_sym_GT_EQ] = ACTIONS(1198), - [anon_sym_not_DASHin] = ACTIONS(1198), - [anon_sym_starts_DASHwith] = ACTIONS(1198), - [anon_sym_ends_DASHwith] = ACTIONS(1198), - [anon_sym_EQ_TILDE] = ACTIONS(1198), - [anon_sym_BANG_TILDE] = ACTIONS(1198), - [anon_sym_bit_DASHand] = ACTIONS(1198), - [anon_sym_bit_DASHxor] = ACTIONS(1198), - [anon_sym_bit_DASHor] = ACTIONS(1198), - [anon_sym_and] = ACTIONS(1198), - [anon_sym_xor] = ACTIONS(1198), - [anon_sym_or] = ACTIONS(1198), - [anon_sym_not] = ACTIONS(1194), - [anon_sym_DOT_DOT2] = ACTIONS(1237), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1194), - [anon_sym_DOT_DOT_LT] = ACTIONS(1194), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1239), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1239), - [anon_sym_null] = ACTIONS(1194), - [anon_sym_true] = ACTIONS(1194), - [anon_sym_false] = ACTIONS(1194), - [aux_sym__val_number_decimal_token1] = ACTIONS(1194), - [aux_sym__val_number_decimal_token2] = ACTIONS(1194), - [anon_sym_DOT2] = ACTIONS(1194), - [aux_sym__val_number_decimal_token3] = ACTIONS(1194), - [aux_sym__val_number_token1] = ACTIONS(1194), - [aux_sym__val_number_token2] = ACTIONS(1194), - [aux_sym__val_number_token3] = ACTIONS(1194), - [aux_sym__val_number_token4] = ACTIONS(1194), - [aux_sym__val_number_token5] = ACTIONS(1194), - [aux_sym__val_number_token6] = ACTIONS(1194), - [anon_sym_0b] = ACTIONS(1194), - [anon_sym_0o] = ACTIONS(1194), - [anon_sym_0x] = ACTIONS(1194), - [sym_val_date] = ACTIONS(1194), - [anon_sym_DQUOTE] = ACTIONS(1194), - [sym__str_single_quotes] = ACTIONS(1194), - [sym__str_back_ticks] = ACTIONS(1194), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1194), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1194), - [anon_sym_CARET] = ACTIONS(1194), + [ts_builtin_sym_end] = ACTIONS(1173), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [anon_sym_SEMI] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_where] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, [435] = { [sym_comment] = STATE(435), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_alias] = ACTIONS(1158), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_let_DASHenv] = ACTIONS(1158), - [anon_sym_mut] = ACTIONS(1158), - [anon_sym_const] = ACTIONS(1158), - [anon_sym_SEMI] = ACTIONS(1158), - [sym_cmd_identifier] = ACTIONS(1158), - [anon_sym_LF] = ACTIONS(1160), - [anon_sym_def] = ACTIONS(1158), - [anon_sym_export_DASHenv] = ACTIONS(1158), - [anon_sym_extern] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_use] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_LPAREN] = ACTIONS(1158), - [anon_sym_RPAREN] = ACTIONS(1158), - [anon_sym_DOLLAR] = ACTIONS(1158), - [anon_sym_error] = ACTIONS(1158), - [anon_sym_GT] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_break] = ACTIONS(1158), - [anon_sym_continue] = ACTIONS(1158), - [anon_sym_for] = ACTIONS(1158), - [anon_sym_in] = ACTIONS(1158), - [anon_sym_loop] = ACTIONS(1158), - [anon_sym_while] = ACTIONS(1158), - [anon_sym_do] = ACTIONS(1158), - [anon_sym_if] = ACTIONS(1158), - [anon_sym_match] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1158), - [anon_sym_RBRACE] = ACTIONS(1158), - [anon_sym_DOT_DOT] = ACTIONS(1158), - [anon_sym_try] = ACTIONS(1158), - [anon_sym_return] = ACTIONS(1158), - [anon_sym_source] = ACTIONS(1158), - [anon_sym_source_DASHenv] = ACTIONS(1158), - [anon_sym_register] = ACTIONS(1158), - [anon_sym_hide] = ACTIONS(1158), - [anon_sym_hide_DASHenv] = ACTIONS(1158), - [anon_sym_overlay] = ACTIONS(1158), - [anon_sym_as] = ACTIONS(1158), - [anon_sym_STAR] = ACTIONS(1158), - [anon_sym_where] = ACTIONS(1158), - [anon_sym_STAR_STAR] = ACTIONS(1158), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_SLASH] = ACTIONS(1158), - [anon_sym_mod] = ACTIONS(1158), - [anon_sym_SLASH_SLASH] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1158), - [anon_sym_bit_DASHshl] = ACTIONS(1158), - [anon_sym_bit_DASHshr] = ACTIONS(1158), - [anon_sym_EQ_EQ] = ACTIONS(1158), - [anon_sym_BANG_EQ] = ACTIONS(1158), - [anon_sym_LT2] = ACTIONS(1158), - [anon_sym_LT_EQ] = ACTIONS(1158), - [anon_sym_GT_EQ] = ACTIONS(1158), - [anon_sym_not_DASHin] = ACTIONS(1158), - [anon_sym_starts_DASHwith] = ACTIONS(1158), - [anon_sym_ends_DASHwith] = ACTIONS(1158), - [anon_sym_EQ_TILDE] = ACTIONS(1158), - [anon_sym_BANG_TILDE] = ACTIONS(1158), - [anon_sym_bit_DASHand] = ACTIONS(1158), - [anon_sym_bit_DASHxor] = ACTIONS(1158), - [anon_sym_bit_DASHor] = ACTIONS(1158), - [anon_sym_and] = ACTIONS(1158), - [anon_sym_xor] = ACTIONS(1158), - [anon_sym_or] = ACTIONS(1158), - [anon_sym_not] = ACTIONS(1158), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1158), - [anon_sym_DOT_DOT_LT] = ACTIONS(1158), - [anon_sym_null] = ACTIONS(1158), - [anon_sym_true] = ACTIONS(1158), - [anon_sym_false] = ACTIONS(1158), - [aux_sym__val_number_decimal_token1] = ACTIONS(1158), - [aux_sym__val_number_decimal_token2] = ACTIONS(1158), - [anon_sym_DOT2] = ACTIONS(1158), - [aux_sym__val_number_decimal_token3] = ACTIONS(1158), - [aux_sym__val_number_token1] = ACTIONS(1158), - [aux_sym__val_number_token2] = ACTIONS(1158), - [aux_sym__val_number_token3] = ACTIONS(1158), - [aux_sym__val_number_token4] = ACTIONS(1158), - [aux_sym__val_number_token5] = ACTIONS(1158), - [aux_sym__val_number_token6] = ACTIONS(1158), - [anon_sym_0b] = ACTIONS(1158), - [anon_sym_0o] = ACTIONS(1158), - [anon_sym_0x] = ACTIONS(1158), - [sym_val_date] = ACTIONS(1158), - [anon_sym_DQUOTE] = ACTIONS(1158), - [sym__str_single_quotes] = ACTIONS(1158), - [sym__str_back_ticks] = ACTIONS(1158), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1158), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1158), - [anon_sym_CARET] = ACTIONS(1158), - [aux_sym_unquoted_token6] = ACTIONS(1284), + [ts_builtin_sym_end] = ACTIONS(1173), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [anon_sym_SEMI] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_where] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, [436] = { [sym_comment] = STATE(436), - [anon_sym_export] = ACTIONS(1063), - [anon_sym_alias] = ACTIONS(1063), - [anon_sym_let] = ACTIONS(1063), - [anon_sym_let_DASHenv] = ACTIONS(1063), - [anon_sym_mut] = ACTIONS(1063), - [anon_sym_const] = ACTIONS(1063), - [anon_sym_SEMI] = ACTIONS(1063), - [sym_cmd_identifier] = ACTIONS(1063), - [anon_sym_LF] = ACTIONS(1065), - [anon_sym_def] = ACTIONS(1063), - [anon_sym_export_DASHenv] = ACTIONS(1063), - [anon_sym_extern] = ACTIONS(1063), - [anon_sym_module] = ACTIONS(1063), - [anon_sym_use] = ACTIONS(1063), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_RPAREN] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_error] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_break] = ACTIONS(1063), - [anon_sym_continue] = ACTIONS(1063), - [anon_sym_for] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1063), - [anon_sym_loop] = ACTIONS(1063), - [anon_sym_while] = ACTIONS(1063), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_if] = ACTIONS(1063), - [anon_sym_match] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_RBRACE] = ACTIONS(1063), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1063), - [anon_sym_return] = ACTIONS(1063), - [anon_sym_source] = ACTIONS(1063), - [anon_sym_source_DASHenv] = ACTIONS(1063), - [anon_sym_register] = ACTIONS(1063), - [anon_sym_hide] = ACTIONS(1063), - [anon_sym_hide_DASHenv] = ACTIONS(1063), - [anon_sym_overlay] = ACTIONS(1063), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_where] = ACTIONS(1063), - [anon_sym_QMARK2] = ACTIONS(1063), - [anon_sym_STAR_STAR] = ACTIONS(1063), - [anon_sym_PLUS_PLUS] = ACTIONS(1063), - [anon_sym_SLASH] = ACTIONS(1063), - [anon_sym_mod] = ACTIONS(1063), - [anon_sym_SLASH_SLASH] = ACTIONS(1063), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_bit_DASHshl] = ACTIONS(1063), - [anon_sym_bit_DASHshr] = ACTIONS(1063), - [anon_sym_EQ_EQ] = ACTIONS(1063), - [anon_sym_BANG_EQ] = ACTIONS(1063), - [anon_sym_LT2] = ACTIONS(1063), - [anon_sym_LT_EQ] = ACTIONS(1063), - [anon_sym_GT_EQ] = ACTIONS(1063), - [anon_sym_not_DASHin] = ACTIONS(1063), - [anon_sym_starts_DASHwith] = ACTIONS(1063), - [anon_sym_ends_DASHwith] = ACTIONS(1063), - [anon_sym_EQ_TILDE] = ACTIONS(1063), - [anon_sym_BANG_TILDE] = ACTIONS(1063), - [anon_sym_bit_DASHand] = ACTIONS(1063), - [anon_sym_bit_DASHxor] = ACTIONS(1063), - [anon_sym_bit_DASHor] = ACTIONS(1063), - [anon_sym_and] = ACTIONS(1063), - [anon_sym_xor] = ACTIONS(1063), - [anon_sym_or] = ACTIONS(1063), - [anon_sym_not] = ACTIONS(1063), - [anon_sym_DOT] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1063), - [anon_sym_DOT_DOT_LT] = ACTIONS(1063), - [anon_sym_null] = ACTIONS(1063), - [anon_sym_true] = ACTIONS(1063), - [anon_sym_false] = ACTIONS(1063), - [aux_sym__val_number_decimal_token1] = ACTIONS(1063), - [aux_sym__val_number_decimal_token2] = ACTIONS(1063), - [anon_sym_DOT2] = ACTIONS(1063), - [aux_sym__val_number_decimal_token3] = ACTIONS(1063), - [aux_sym__val_number_token1] = ACTIONS(1063), - [aux_sym__val_number_token2] = ACTIONS(1063), - [aux_sym__val_number_token3] = ACTIONS(1063), - [aux_sym__val_number_token4] = ACTIONS(1063), - [aux_sym__val_number_token5] = ACTIONS(1063), - [aux_sym__val_number_token6] = ACTIONS(1063), - [anon_sym_0b] = ACTIONS(1063), - [anon_sym_0o] = ACTIONS(1063), - [anon_sym_0x] = ACTIONS(1063), - [sym_val_date] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [sym__str_single_quotes] = ACTIONS(1063), - [sym__str_back_ticks] = ACTIONS(1063), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1063), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1063), - [anon_sym_CARET] = ACTIONS(1063), + [ts_builtin_sym_end] = ACTIONS(1177), + [anon_sym_export] = ACTIONS(1175), + [anon_sym_alias] = ACTIONS(1175), + [anon_sym_let] = ACTIONS(1175), + [anon_sym_let_DASHenv] = ACTIONS(1175), + [anon_sym_mut] = ACTIONS(1175), + [anon_sym_const] = ACTIONS(1175), + [anon_sym_SEMI] = ACTIONS(1175), + [sym_cmd_identifier] = ACTIONS(1175), + [anon_sym_LF] = ACTIONS(1177), + [anon_sym_def] = ACTIONS(1175), + [anon_sym_export_DASHenv] = ACTIONS(1175), + [anon_sym_extern] = ACTIONS(1175), + [anon_sym_module] = ACTIONS(1175), + [anon_sym_use] = ACTIONS(1175), + [anon_sym_LBRACK] = ACTIONS(1175), + [anon_sym_LPAREN] = ACTIONS(1175), + [anon_sym_DOLLAR] = ACTIONS(1175), + [anon_sym_error] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [anon_sym_DASH_DASH] = ACTIONS(1175), + [anon_sym_DASH] = ACTIONS(1175), + [anon_sym_break] = ACTIONS(1175), + [anon_sym_continue] = ACTIONS(1175), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_in] = ACTIONS(1175), + [anon_sym_loop] = ACTIONS(1175), + [anon_sym_while] = ACTIONS(1175), + [anon_sym_do] = ACTIONS(1175), + [anon_sym_if] = ACTIONS(1175), + [anon_sym_match] = ACTIONS(1175), + [anon_sym_LBRACE] = ACTIONS(1175), + [anon_sym_DOT_DOT] = ACTIONS(1175), + [anon_sym_try] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(1175), + [anon_sym_source] = ACTIONS(1175), + [anon_sym_source_DASHenv] = ACTIONS(1175), + [anon_sym_register] = ACTIONS(1175), + [anon_sym_hide] = ACTIONS(1175), + [anon_sym_hide_DASHenv] = ACTIONS(1175), + [anon_sym_overlay] = ACTIONS(1175), + [anon_sym_as] = ACTIONS(1175), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_where] = ACTIONS(1175), + [anon_sym_STAR_STAR] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_mod] = ACTIONS(1175), + [anon_sym_SLASH_SLASH] = ACTIONS(1175), + [anon_sym_PLUS] = ACTIONS(1175), + [anon_sym_bit_DASHshl] = ACTIONS(1175), + [anon_sym_bit_DASHshr] = ACTIONS(1175), + [anon_sym_EQ_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_LT2] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_not_DASHin] = ACTIONS(1175), + [anon_sym_starts_DASHwith] = ACTIONS(1175), + [anon_sym_ends_DASHwith] = ACTIONS(1175), + [anon_sym_EQ_TILDE] = ACTIONS(1175), + [anon_sym_BANG_TILDE] = ACTIONS(1175), + [anon_sym_bit_DASHand] = ACTIONS(1175), + [anon_sym_bit_DASHxor] = ACTIONS(1175), + [anon_sym_bit_DASHor] = ACTIONS(1175), + [anon_sym_and] = ACTIONS(1175), + [anon_sym_xor] = ACTIONS(1175), + [anon_sym_or] = ACTIONS(1175), + [anon_sym_not] = ACTIONS(1175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1175), + [anon_sym_DOT_DOT_LT] = ACTIONS(1175), + [anon_sym_null] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1175), + [anon_sym_false] = ACTIONS(1175), + [aux_sym__val_number_decimal_token1] = ACTIONS(1175), + [aux_sym__val_number_decimal_token2] = ACTIONS(1175), + [anon_sym_DOT2] = ACTIONS(1175), + [aux_sym__val_number_decimal_token3] = ACTIONS(1175), + [aux_sym__val_number_token1] = ACTIONS(1175), + [aux_sym__val_number_token2] = ACTIONS(1175), + [aux_sym__val_number_token3] = ACTIONS(1175), + [aux_sym__val_number_token4] = ACTIONS(1175), + [aux_sym__val_number_token5] = ACTIONS(1175), + [aux_sym__val_number_token6] = ACTIONS(1175), + [anon_sym_0b] = ACTIONS(1175), + [anon_sym_0o] = ACTIONS(1175), + [anon_sym_0x] = ACTIONS(1175), + [sym_val_date] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1175), + [sym__str_single_quotes] = ACTIONS(1175), + [sym__str_back_ticks] = ACTIONS(1175), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1175), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1175), + [anon_sym_CARET] = ACTIONS(1175), [anon_sym_POUND] = ACTIONS(113), }, [437] = { [sym_comment] = STATE(437), - [ts_builtin_sym_end] = ACTIONS(1119), - [anon_sym_export] = ACTIONS(1117), - [anon_sym_alias] = ACTIONS(1117), - [anon_sym_let] = ACTIONS(1117), - [anon_sym_let_DASHenv] = ACTIONS(1117), - [anon_sym_mut] = ACTIONS(1117), - [anon_sym_const] = ACTIONS(1117), - [anon_sym_SEMI] = ACTIONS(1117), - [sym_cmd_identifier] = ACTIONS(1117), - [anon_sym_LF] = ACTIONS(1119), - [anon_sym_def] = ACTIONS(1117), - [anon_sym_export_DASHenv] = ACTIONS(1117), - [anon_sym_extern] = ACTIONS(1117), - [anon_sym_module] = ACTIONS(1117), - [anon_sym_use] = ACTIONS(1117), - [anon_sym_LBRACK] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1117), - [anon_sym_DOLLAR] = ACTIONS(1117), - [anon_sym_error] = ACTIONS(1117), - [anon_sym_GT] = ACTIONS(1117), - [anon_sym_DASH_DASH] = ACTIONS(1117), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_break] = ACTIONS(1117), - [anon_sym_continue] = ACTIONS(1117), - [anon_sym_for] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1117), - [anon_sym_loop] = ACTIONS(1117), - [anon_sym_while] = ACTIONS(1117), - [anon_sym_do] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1117), - [anon_sym_LBRACE] = ACTIONS(1117), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_try] = ACTIONS(1117), - [anon_sym_return] = ACTIONS(1117), - [anon_sym_source] = ACTIONS(1117), - [anon_sym_source_DASHenv] = ACTIONS(1117), - [anon_sym_register] = ACTIONS(1117), - [anon_sym_hide] = ACTIONS(1117), - [anon_sym_hide_DASHenv] = ACTIONS(1117), - [anon_sym_overlay] = ACTIONS(1117), - [anon_sym_as] = ACTIONS(1117), - [anon_sym_STAR] = ACTIONS(1117), - [anon_sym_where] = ACTIONS(1117), - [anon_sym_STAR_STAR] = ACTIONS(1117), - [anon_sym_PLUS_PLUS] = ACTIONS(1117), - [anon_sym_SLASH] = ACTIONS(1117), - [anon_sym_mod] = ACTIONS(1117), - [anon_sym_SLASH_SLASH] = ACTIONS(1117), - [anon_sym_PLUS] = ACTIONS(1117), - [anon_sym_bit_DASHshl] = ACTIONS(1117), - [anon_sym_bit_DASHshr] = ACTIONS(1117), - [anon_sym_EQ_EQ] = ACTIONS(1117), - [anon_sym_BANG_EQ] = ACTIONS(1117), - [anon_sym_LT2] = ACTIONS(1117), - [anon_sym_LT_EQ] = ACTIONS(1117), - [anon_sym_GT_EQ] = ACTIONS(1117), - [anon_sym_not_DASHin] = ACTIONS(1117), - [anon_sym_starts_DASHwith] = ACTIONS(1117), - [anon_sym_ends_DASHwith] = ACTIONS(1117), - [anon_sym_EQ_TILDE] = ACTIONS(1117), - [anon_sym_BANG_TILDE] = ACTIONS(1117), - [anon_sym_bit_DASHand] = ACTIONS(1117), - [anon_sym_bit_DASHxor] = ACTIONS(1117), - [anon_sym_bit_DASHor] = ACTIONS(1117), - [anon_sym_and] = ACTIONS(1117), - [anon_sym_xor] = ACTIONS(1117), - [anon_sym_or] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1117), - [anon_sym_DOT] = ACTIONS(1117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1117), - [anon_sym_DOT_DOT_LT] = ACTIONS(1117), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_true] = ACTIONS(1117), - [anon_sym_false] = ACTIONS(1117), - [aux_sym__val_number_decimal_token1] = ACTIONS(1117), - [aux_sym__val_number_decimal_token2] = ACTIONS(1117), - [anon_sym_DOT2] = ACTIONS(1117), - [aux_sym__val_number_decimal_token3] = ACTIONS(1117), - [aux_sym__val_number_token1] = ACTIONS(1117), - [aux_sym__val_number_token2] = ACTIONS(1117), - [aux_sym__val_number_token3] = ACTIONS(1117), - [aux_sym__val_number_token4] = ACTIONS(1117), - [aux_sym__val_number_token5] = ACTIONS(1117), - [aux_sym__val_number_token6] = ACTIONS(1117), - [anon_sym_0b] = ACTIONS(1117), - [anon_sym_0o] = ACTIONS(1117), - [anon_sym_0x] = ACTIONS(1117), - [sym_val_date] = ACTIONS(1117), - [anon_sym_DQUOTE] = ACTIONS(1117), - [sym__str_single_quotes] = ACTIONS(1117), - [sym__str_back_ticks] = ACTIONS(1117), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1117), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1117), - [anon_sym_CARET] = ACTIONS(1117), + [ts_builtin_sym_end] = ACTIONS(1074), + [anon_sym_export] = ACTIONS(1072), + [anon_sym_alias] = ACTIONS(1072), + [anon_sym_let] = ACTIONS(1072), + [anon_sym_let_DASHenv] = ACTIONS(1072), + [anon_sym_mut] = ACTIONS(1072), + [anon_sym_const] = ACTIONS(1072), + [anon_sym_SEMI] = ACTIONS(1072), + [sym_cmd_identifier] = ACTIONS(1072), + [anon_sym_LF] = ACTIONS(1074), + [anon_sym_def] = ACTIONS(1072), + [anon_sym_export_DASHenv] = ACTIONS(1072), + [anon_sym_extern] = ACTIONS(1072), + [anon_sym_module] = ACTIONS(1072), + [anon_sym_use] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1072), + [anon_sym_LPAREN] = ACTIONS(1072), + [anon_sym_DOLLAR] = ACTIONS(1072), + [anon_sym_error] = ACTIONS(1072), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_DASH_DASH] = ACTIONS(1072), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_break] = ACTIONS(1072), + [anon_sym_continue] = ACTIONS(1072), + [anon_sym_for] = ACTIONS(1072), + [anon_sym_in] = ACTIONS(1076), + [anon_sym_loop] = ACTIONS(1072), + [anon_sym_while] = ACTIONS(1072), + [anon_sym_do] = ACTIONS(1072), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_match] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_DOT_DOT] = ACTIONS(1072), + [anon_sym_try] = ACTIONS(1072), + [anon_sym_return] = ACTIONS(1072), + [anon_sym_source] = ACTIONS(1072), + [anon_sym_source_DASHenv] = ACTIONS(1072), + [anon_sym_register] = ACTIONS(1072), + [anon_sym_hide] = ACTIONS(1072), + [anon_sym_hide_DASHenv] = ACTIONS(1072), + [anon_sym_overlay] = ACTIONS(1072), + [anon_sym_as] = ACTIONS(1072), + [anon_sym_STAR] = ACTIONS(1076), + [anon_sym_where] = ACTIONS(1072), + [anon_sym_STAR_STAR] = ACTIONS(1076), + [anon_sym_PLUS_PLUS] = ACTIONS(1076), + [anon_sym_SLASH] = ACTIONS(1076), + [anon_sym_mod] = ACTIONS(1076), + [anon_sym_SLASH_SLASH] = ACTIONS(1076), + [anon_sym_PLUS] = ACTIONS(1076), + [anon_sym_bit_DASHshl] = ACTIONS(1076), + [anon_sym_bit_DASHshr] = ACTIONS(1076), + [anon_sym_EQ_EQ] = ACTIONS(1076), + [anon_sym_BANG_EQ] = ACTIONS(1076), + [anon_sym_LT2] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1076), + [anon_sym_GT_EQ] = ACTIONS(1076), + [anon_sym_not_DASHin] = ACTIONS(1076), + [anon_sym_starts_DASHwith] = ACTIONS(1076), + [anon_sym_ends_DASHwith] = ACTIONS(1076), + [anon_sym_EQ_TILDE] = ACTIONS(1076), + [anon_sym_BANG_TILDE] = ACTIONS(1076), + [anon_sym_bit_DASHand] = ACTIONS(1076), + [anon_sym_bit_DASHxor] = ACTIONS(1076), + [anon_sym_bit_DASHor] = ACTIONS(1076), + [anon_sym_and] = ACTIONS(1076), + [anon_sym_xor] = ACTIONS(1076), + [anon_sym_or] = ACTIONS(1076), + [anon_sym_not] = ACTIONS(1072), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1072), + [anon_sym_DOT_DOT_LT] = ACTIONS(1072), + [anon_sym_null] = ACTIONS(1072), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [aux_sym__val_number_decimal_token1] = ACTIONS(1072), + [aux_sym__val_number_decimal_token2] = ACTIONS(1072), + [anon_sym_DOT2] = ACTIONS(1072), + [aux_sym__val_number_decimal_token3] = ACTIONS(1072), + [aux_sym__val_number_token1] = ACTIONS(1072), + [aux_sym__val_number_token2] = ACTIONS(1072), + [aux_sym__val_number_token3] = ACTIONS(1072), + [aux_sym__val_number_token4] = ACTIONS(1072), + [aux_sym__val_number_token5] = ACTIONS(1072), + [aux_sym__val_number_token6] = ACTIONS(1072), + [anon_sym_0b] = ACTIONS(1072), + [anon_sym_0o] = ACTIONS(1072), + [anon_sym_0x] = ACTIONS(1072), + [sym_val_date] = ACTIONS(1072), + [anon_sym_DQUOTE] = ACTIONS(1072), + [sym__str_single_quotes] = ACTIONS(1072), + [sym__str_back_ticks] = ACTIONS(1072), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1072), + [anon_sym_CARET] = ACTIONS(1072), [anon_sym_POUND] = ACTIONS(113), }, [438] = { [sym_comment] = STATE(438), - [anon_sym_export] = ACTIONS(1286), - [anon_sym_alias] = ACTIONS(1286), - [anon_sym_let] = ACTIONS(1286), - [anon_sym_let_DASHenv] = ACTIONS(1286), - [anon_sym_mut] = ACTIONS(1286), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_SEMI] = ACTIONS(1286), - [sym_cmd_identifier] = ACTIONS(1286), - [anon_sym_LF] = ACTIONS(1288), - [anon_sym_def] = ACTIONS(1286), - [anon_sym_export_DASHenv] = ACTIONS(1286), - [anon_sym_extern] = ACTIONS(1286), - [anon_sym_module] = ACTIONS(1286), - [anon_sym_use] = ACTIONS(1286), - [anon_sym_LBRACK] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(1286), - [anon_sym_RPAREN] = ACTIONS(1286), - [anon_sym_DOLLAR] = ACTIONS(1286), - [anon_sym_error] = ACTIONS(1286), - [anon_sym_GT] = ACTIONS(1286), - [anon_sym_DASH_DASH] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1286), - [anon_sym_break] = ACTIONS(1286), - [anon_sym_continue] = ACTIONS(1286), - [anon_sym_for] = ACTIONS(1286), - [anon_sym_in] = ACTIONS(1286), - [anon_sym_loop] = ACTIONS(1286), - [anon_sym_while] = ACTIONS(1286), - [anon_sym_do] = ACTIONS(1286), - [anon_sym_if] = ACTIONS(1286), - [anon_sym_match] = ACTIONS(1286), - [anon_sym_LBRACE] = ACTIONS(1286), - [anon_sym_RBRACE] = ACTIONS(1286), - [anon_sym_DOT_DOT] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(1286), - [anon_sym_return] = ACTIONS(1286), - [anon_sym_source] = ACTIONS(1286), - [anon_sym_source_DASHenv] = ACTIONS(1286), - [anon_sym_register] = ACTIONS(1286), - [anon_sym_hide] = ACTIONS(1286), - [anon_sym_hide_DASHenv] = ACTIONS(1286), - [anon_sym_overlay] = ACTIONS(1286), - [anon_sym_as] = ACTIONS(1286), - [anon_sym_STAR] = ACTIONS(1286), - [anon_sym_where] = ACTIONS(1286), - [anon_sym_STAR_STAR] = ACTIONS(1286), - [anon_sym_PLUS_PLUS] = ACTIONS(1286), - [anon_sym_SLASH] = ACTIONS(1286), - [anon_sym_mod] = ACTIONS(1286), - [anon_sym_SLASH_SLASH] = ACTIONS(1286), - [anon_sym_PLUS] = ACTIONS(1286), - [anon_sym_bit_DASHshl] = ACTIONS(1286), - [anon_sym_bit_DASHshr] = ACTIONS(1286), - [anon_sym_EQ_EQ] = ACTIONS(1286), - [anon_sym_BANG_EQ] = ACTIONS(1286), - [anon_sym_LT2] = ACTIONS(1286), - [anon_sym_LT_EQ] = ACTIONS(1286), - [anon_sym_GT_EQ] = ACTIONS(1286), - [anon_sym_not_DASHin] = ACTIONS(1286), - [anon_sym_starts_DASHwith] = ACTIONS(1286), - [anon_sym_ends_DASHwith] = ACTIONS(1286), - [anon_sym_EQ_TILDE] = ACTIONS(1286), - [anon_sym_BANG_TILDE] = ACTIONS(1286), - [anon_sym_bit_DASHand] = ACTIONS(1286), - [anon_sym_bit_DASHxor] = ACTIONS(1286), - [anon_sym_bit_DASHor] = ACTIONS(1286), - [anon_sym_and] = ACTIONS(1286), - [anon_sym_xor] = ACTIONS(1286), - [anon_sym_or] = ACTIONS(1286), - [anon_sym_not] = ACTIONS(1286), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1286), - [anon_sym_DOT_DOT_LT] = ACTIONS(1286), - [anon_sym_null] = ACTIONS(1286), - [anon_sym_true] = ACTIONS(1286), - [anon_sym_false] = ACTIONS(1286), - [aux_sym__val_number_decimal_token1] = ACTIONS(1286), - [aux_sym__val_number_decimal_token2] = ACTIONS(1286), - [anon_sym_DOT2] = ACTIONS(1286), - [aux_sym__val_number_decimal_token3] = ACTIONS(1286), - [aux_sym__val_number_token1] = ACTIONS(1286), - [aux_sym__val_number_token2] = ACTIONS(1286), - [aux_sym__val_number_token3] = ACTIONS(1286), - [aux_sym__val_number_token4] = ACTIONS(1286), - [aux_sym__val_number_token5] = ACTIONS(1286), - [aux_sym__val_number_token6] = ACTIONS(1286), - [anon_sym_0b] = ACTIONS(1286), - [anon_sym_0o] = ACTIONS(1286), - [anon_sym_0x] = ACTIONS(1286), - [sym_val_date] = ACTIONS(1286), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym__str_single_quotes] = ACTIONS(1286), - [sym__str_back_ticks] = ACTIONS(1286), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1286), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1286), - [anon_sym_CARET] = ACTIONS(1286), + [ts_builtin_sym_end] = ACTIONS(1181), + [anon_sym_export] = ACTIONS(1179), + [anon_sym_alias] = ACTIONS(1179), + [anon_sym_let] = ACTIONS(1179), + [anon_sym_let_DASHenv] = ACTIONS(1179), + [anon_sym_mut] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1179), + [sym_cmd_identifier] = ACTIONS(1179), + [anon_sym_LF] = ACTIONS(1181), + [anon_sym_def] = ACTIONS(1179), + [anon_sym_export_DASHenv] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_use] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_error] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1179), + [anon_sym_loop] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_source] = ACTIONS(1179), + [anon_sym_source_DASHenv] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), + [anon_sym_hide_DASHenv] = ACTIONS(1179), + [anon_sym_overlay] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_where] = ACTIONS(1179), + [anon_sym_STAR_STAR] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_SLASH] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_SLASH_SLASH] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_bit_DASHshl] = ACTIONS(1314), + [anon_sym_bit_DASHshr] = ACTIONS(1314), + [anon_sym_EQ_EQ] = ACTIONS(1306), + [anon_sym_BANG_EQ] = ACTIONS(1306), + [anon_sym_LT2] = ACTIONS(1306), + [anon_sym_LT_EQ] = ACTIONS(1306), + [anon_sym_GT_EQ] = ACTIONS(1306), + [anon_sym_not_DASHin] = ACTIONS(1179), + [anon_sym_starts_DASHwith] = ACTIONS(1179), + [anon_sym_ends_DASHwith] = ACTIONS(1179), + [anon_sym_EQ_TILDE] = ACTIONS(1179), + [anon_sym_BANG_TILDE] = ACTIONS(1179), + [anon_sym_bit_DASHand] = ACTIONS(1179), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_not] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1179), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), + [anon_sym_CARET] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, [439] = { [sym_comment] = STATE(439), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_alias] = ACTIONS(1109), - [anon_sym_EQ] = ACTIONS(1109), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_let_DASHenv] = ACTIONS(1109), - [anon_sym_mut] = ACTIONS(1109), - [anon_sym_const] = ACTIONS(1109), - [anon_sym_SEMI] = ACTIONS(1109), - [sym_cmd_identifier] = ACTIONS(1109), - [anon_sym_LF] = ACTIONS(1111), - [anon_sym_def] = ACTIONS(1109), - [anon_sym_export_DASHenv] = ACTIONS(1109), - [anon_sym_extern] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_use] = ACTIONS(1109), - [anon_sym_COLON] = ACTIONS(1109), - [anon_sym_COMMA] = ACTIONS(1109), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_PIPE] = ACTIONS(1109), - [anon_sym_DOLLAR] = ACTIONS(1109), - [anon_sym_error] = ACTIONS(1109), - [anon_sym_list] = ACTIONS(1109), - [anon_sym_GT] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_break] = ACTIONS(1109), - [anon_sym_continue] = ACTIONS(1109), - [anon_sym_for] = ACTIONS(1109), - [anon_sym_in] = ACTIONS(1109), - [anon_sym_loop] = ACTIONS(1109), - [anon_sym_make] = ACTIONS(1109), - [anon_sym_while] = ACTIONS(1109), - [anon_sym_do] = ACTIONS(1109), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_else] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_RBRACE] = ACTIONS(1109), - [anon_sym_try] = ACTIONS(1109), - [anon_sym_catch] = ACTIONS(1109), - [anon_sym_return] = ACTIONS(1109), - [anon_sym_source] = ACTIONS(1109), - [anon_sym_source_DASHenv] = ACTIONS(1109), - [anon_sym_register] = ACTIONS(1109), - [anon_sym_hide] = ACTIONS(1109), - [anon_sym_hide_DASHenv] = ACTIONS(1109), - [anon_sym_overlay] = ACTIONS(1109), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_as] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_PLUS_EQ] = ACTIONS(1109), - [anon_sym_DASH_EQ] = ACTIONS(1109), - [anon_sym_STAR_EQ] = ACTIONS(1109), - [anon_sym_SLASH_EQ] = ACTIONS(1109), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1109), - [anon_sym_STAR_STAR] = ACTIONS(1109), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_SLASH] = ACTIONS(1109), - [anon_sym_mod] = ACTIONS(1109), - [anon_sym_SLASH_SLASH] = ACTIONS(1109), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_bit_DASHshl] = ACTIONS(1109), - [anon_sym_bit_DASHshr] = ACTIONS(1109), - [anon_sym_EQ_EQ] = ACTIONS(1109), - [anon_sym_BANG_EQ] = ACTIONS(1109), - [anon_sym_LT2] = ACTIONS(1109), - [anon_sym_LT_EQ] = ACTIONS(1109), - [anon_sym_GT_EQ] = ACTIONS(1109), - [anon_sym_not_DASHin] = ACTIONS(1109), - [anon_sym_starts_DASHwith] = ACTIONS(1109), - [anon_sym_ends_DASHwith] = ACTIONS(1109), - [anon_sym_EQ_TILDE] = ACTIONS(1109), - [anon_sym_BANG_TILDE] = ACTIONS(1109), - [anon_sym_bit_DASHand] = ACTIONS(1109), - [anon_sym_bit_DASHxor] = ACTIONS(1109), - [anon_sym_bit_DASHor] = ACTIONS(1109), - [anon_sym_and] = ACTIONS(1109), - [anon_sym_xor] = ACTIONS(1109), - [anon_sym_or] = ACTIONS(1109), - [anon_sym_DOT_DOT2] = ACTIONS(1109), - [anon_sym_DOT] = ACTIONS(1109), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1111), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1111), - [aux_sym__val_number_decimal_token1] = ACTIONS(1109), - [aux_sym__val_number_decimal_token2] = ACTIONS(1109), - [anon_sym_DOT2] = ACTIONS(1109), - [aux_sym__val_number_decimal_token3] = ACTIONS(1109), - [aux_sym__val_number_token1] = ACTIONS(1109), - [aux_sym__val_number_token2] = ACTIONS(1109), - [aux_sym__val_number_token3] = ACTIONS(1109), - [aux_sym__val_number_token4] = ACTIONS(1109), - [aux_sym__val_number_token5] = ACTIONS(1109), - [aux_sym__val_number_token6] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(1109), - [sym__str_single_quotes] = ACTIONS(1109), - [sym__str_back_ticks] = ACTIONS(1109), - [aux_sym__record_key_token2] = ACTIONS(1109), + [ts_builtin_sym_end] = ACTIONS(1063), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_alias] = ACTIONS(1061), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_let_DASHenv] = ACTIONS(1061), + [anon_sym_mut] = ACTIONS(1061), + [anon_sym_const] = ACTIONS(1061), + [anon_sym_SEMI] = ACTIONS(1061), + [sym_cmd_identifier] = ACTIONS(1061), + [anon_sym_LF] = ACTIONS(1063), + [anon_sym_def] = ACTIONS(1061), + [anon_sym_export_DASHenv] = ACTIONS(1061), + [anon_sym_extern] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_use] = ACTIONS(1061), + [anon_sym_LBRACK] = ACTIONS(1061), + [anon_sym_LPAREN] = ACTIONS(1061), + [anon_sym_DOLLAR] = ACTIONS(1061), + [anon_sym_error] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_DASH_DASH] = ACTIONS(1061), + [anon_sym_DASH] = ACTIONS(1061), + [anon_sym_break] = ACTIONS(1061), + [anon_sym_continue] = ACTIONS(1061), + [anon_sym_for] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1061), + [anon_sym_loop] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(1061), + [anon_sym_do] = ACTIONS(1061), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_match] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(1061), + [anon_sym_DOT_DOT] = ACTIONS(1061), + [anon_sym_try] = ACTIONS(1061), + [anon_sym_return] = ACTIONS(1061), + [anon_sym_source] = ACTIONS(1061), + [anon_sym_source_DASHenv] = ACTIONS(1061), + [anon_sym_register] = ACTIONS(1061), + [anon_sym_hide] = ACTIONS(1061), + [anon_sym_hide_DASHenv] = ACTIONS(1061), + [anon_sym_overlay] = ACTIONS(1061), + [anon_sym_as] = ACTIONS(1061), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_where] = ACTIONS(1061), + [anon_sym_STAR_STAR] = ACTIONS(1061), + [anon_sym_PLUS_PLUS] = ACTIONS(1061), + [anon_sym_SLASH] = ACTIONS(1061), + [anon_sym_mod] = ACTIONS(1061), + [anon_sym_SLASH_SLASH] = ACTIONS(1061), + [anon_sym_PLUS] = ACTIONS(1061), + [anon_sym_bit_DASHshl] = ACTIONS(1061), + [anon_sym_bit_DASHshr] = ACTIONS(1061), + [anon_sym_EQ_EQ] = ACTIONS(1061), + [anon_sym_BANG_EQ] = ACTIONS(1061), + [anon_sym_LT2] = ACTIONS(1061), + [anon_sym_LT_EQ] = ACTIONS(1061), + [anon_sym_GT_EQ] = ACTIONS(1061), + [anon_sym_not_DASHin] = ACTIONS(1061), + [anon_sym_starts_DASHwith] = ACTIONS(1061), + [anon_sym_ends_DASHwith] = ACTIONS(1061), + [anon_sym_EQ_TILDE] = ACTIONS(1061), + [anon_sym_BANG_TILDE] = ACTIONS(1061), + [anon_sym_bit_DASHand] = ACTIONS(1061), + [anon_sym_bit_DASHxor] = ACTIONS(1061), + [anon_sym_bit_DASHor] = ACTIONS(1061), + [anon_sym_and] = ACTIONS(1061), + [anon_sym_xor] = ACTIONS(1061), + [anon_sym_or] = ACTIONS(1061), + [anon_sym_not] = ACTIONS(1061), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1061), + [anon_sym_DOT_DOT_LT] = ACTIONS(1061), + [anon_sym_null] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1061), + [anon_sym_false] = ACTIONS(1061), + [aux_sym__val_number_decimal_token1] = ACTIONS(1061), + [aux_sym__val_number_decimal_token2] = ACTIONS(1061), + [anon_sym_DOT2] = ACTIONS(1061), + [aux_sym__val_number_decimal_token3] = ACTIONS(1061), + [aux_sym__val_number_token1] = ACTIONS(1061), + [aux_sym__val_number_token2] = ACTIONS(1061), + [aux_sym__val_number_token3] = ACTIONS(1061), + [aux_sym__val_number_token4] = ACTIONS(1061), + [aux_sym__val_number_token5] = ACTIONS(1061), + [aux_sym__val_number_token6] = ACTIONS(1061), + [anon_sym_0b] = ACTIONS(1061), + [anon_sym_0o] = ACTIONS(1061), + [anon_sym_0x] = ACTIONS(1061), + [sym_val_date] = ACTIONS(1061), + [anon_sym_DQUOTE] = ACTIONS(1061), + [sym__str_single_quotes] = ACTIONS(1061), + [sym__str_back_ticks] = ACTIONS(1061), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1061), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1061), + [anon_sym_CARET] = ACTIONS(1061), [anon_sym_POUND] = ACTIONS(113), }, [440] = { [sym_comment] = STATE(440), - [ts_builtin_sym_end] = ACTIONS(961), - [anon_sym_export] = ACTIONS(959), - [anon_sym_alias] = ACTIONS(959), - [anon_sym_let] = ACTIONS(959), - [anon_sym_let_DASHenv] = ACTIONS(959), - [anon_sym_mut] = ACTIONS(959), - [anon_sym_const] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(959), - [sym_cmd_identifier] = ACTIONS(959), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_def] = ACTIONS(959), - [anon_sym_export_DASHenv] = ACTIONS(959), - [anon_sym_extern] = ACTIONS(959), - [anon_sym_module] = ACTIONS(959), - [anon_sym_use] = ACTIONS(959), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_error] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH_DASH] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_break] = ACTIONS(959), - [anon_sym_continue] = ACTIONS(959), - [anon_sym_for] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_loop] = ACTIONS(959), - [anon_sym_while] = ACTIONS(959), - [anon_sym_do] = ACTIONS(959), - [anon_sym_if] = ACTIONS(959), - [anon_sym_match] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_try] = ACTIONS(959), - [anon_sym_return] = ACTIONS(959), - [anon_sym_source] = ACTIONS(959), - [anon_sym_source_DASHenv] = ACTIONS(959), - [anon_sym_register] = ACTIONS(959), - [anon_sym_hide] = ACTIONS(959), - [anon_sym_hide_DASHenv] = ACTIONS(959), - [anon_sym_overlay] = ACTIONS(959), - [anon_sym_as] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_where] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(959), - [anon_sym_PLUS_PLUS] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(959), - [anon_sym_SLASH_SLASH] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(959), - [anon_sym_bit_DASHshr] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(959), - [anon_sym_BANG_EQ] = ACTIONS(959), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(959), - [anon_sym_GT_EQ] = ACTIONS(959), - [anon_sym_not_DASHin] = ACTIONS(959), - [anon_sym_starts_DASHwith] = ACTIONS(959), - [anon_sym_ends_DASHwith] = ACTIONS(959), - [anon_sym_EQ_TILDE] = ACTIONS(959), - [anon_sym_BANG_TILDE] = ACTIONS(959), - [anon_sym_bit_DASHand] = ACTIONS(959), - [anon_sym_bit_DASHxor] = ACTIONS(959), - [anon_sym_bit_DASHor] = ACTIONS(959), - [anon_sym_and] = ACTIONS(959), - [anon_sym_xor] = ACTIONS(959), - [anon_sym_or] = ACTIONS(959), - [anon_sym_not] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_DOT_DOT_LT] = ACTIONS(959), - [anon_sym_null] = ACTIONS(959), - [anon_sym_true] = ACTIONS(959), - [anon_sym_false] = ACTIONS(959), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(959), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(959), - [aux_sym__val_number_token1] = ACTIONS(959), - [aux_sym__val_number_token2] = ACTIONS(959), - [aux_sym__val_number_token3] = ACTIONS(959), - [aux_sym__val_number_token4] = ACTIONS(959), - [aux_sym__val_number_token5] = ACTIONS(959), - [aux_sym__val_number_token6] = ACTIONS(959), - [anon_sym_0b] = ACTIONS(959), - [anon_sym_0o] = ACTIONS(959), - [anon_sym_0x] = ACTIONS(959), - [sym_val_date] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [sym__str_single_quotes] = ACTIONS(959), - [sym__str_back_ticks] = ACTIONS(959), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(959), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(959), - [anon_sym_CARET] = ACTIONS(959), - [aux_sym_unquoted_token5] = ACTIONS(1024), - [anon_sym_POUND] = ACTIONS(113), - }, - [441] = { - [sym_comment] = STATE(441), - [ts_builtin_sym_end] = ACTIONS(1290), - [anon_sym_export] = ACTIONS(1243), - [anon_sym_alias] = ACTIONS(1243), - [anon_sym_let] = ACTIONS(1243), - [anon_sym_let_DASHenv] = ACTIONS(1243), - [anon_sym_mut] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1243), - [sym_cmd_identifier] = ACTIONS(1243), - [anon_sym_LF] = ACTIONS(1243), - [anon_sym_def] = ACTIONS(1243), - [anon_sym_export_DASHenv] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1243), - [anon_sym_module] = ACTIONS(1243), - [anon_sym_use] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_error] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_in] = ACTIONS(1243), - [anon_sym_loop] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_match] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_try] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_source] = ACTIONS(1243), - [anon_sym_source_DASHenv] = ACTIONS(1243), - [anon_sym_register] = ACTIONS(1243), - [anon_sym_hide] = ACTIONS(1243), - [anon_sym_hide_DASHenv] = ACTIONS(1243), - [anon_sym_overlay] = ACTIONS(1243), - [anon_sym_as] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1243), - [anon_sym_where] = ACTIONS(1243), - [anon_sym_STAR_STAR] = ACTIONS(1243), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_SLASH] = ACTIONS(1243), - [anon_sym_mod] = ACTIONS(1243), - [anon_sym_SLASH_SLASH] = ACTIONS(1243), - [anon_sym_PLUS] = ACTIONS(1243), - [anon_sym_bit_DASHshl] = ACTIONS(1243), - [anon_sym_bit_DASHshr] = ACTIONS(1243), - [anon_sym_EQ_EQ] = ACTIONS(1243), - [anon_sym_BANG_EQ] = ACTIONS(1243), - [anon_sym_LT2] = ACTIONS(1243), - [anon_sym_LT_EQ] = ACTIONS(1243), - [anon_sym_GT_EQ] = ACTIONS(1243), - [anon_sym_not_DASHin] = ACTIONS(1243), - [anon_sym_starts_DASHwith] = ACTIONS(1243), - [anon_sym_ends_DASHwith] = ACTIONS(1243), - [anon_sym_EQ_TILDE] = ACTIONS(1243), - [anon_sym_BANG_TILDE] = ACTIONS(1243), - [anon_sym_bit_DASHand] = ACTIONS(1243), - [anon_sym_bit_DASHxor] = ACTIONS(1243), - [anon_sym_bit_DASHor] = ACTIONS(1243), - [anon_sym_and] = ACTIONS(1243), - [anon_sym_xor] = ACTIONS(1243), - [anon_sym_or] = ACTIONS(1243), - [anon_sym_not] = ACTIONS(1243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1243), - [anon_sym_DOT_DOT_LT] = ACTIONS(1243), - [anon_sym_null] = ACTIONS(1243), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_decimal_token2] = ACTIONS(1243), - [anon_sym_DOT2] = ACTIONS(1243), - [aux_sym__val_number_decimal_token3] = ACTIONS(1243), - [aux_sym__val_number_token1] = ACTIONS(1243), - [aux_sym__val_number_token2] = ACTIONS(1243), - [aux_sym__val_number_token3] = ACTIONS(1243), - [aux_sym__val_number_token4] = ACTIONS(1243), - [aux_sym__val_number_token5] = ACTIONS(1243), - [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_0b] = ACTIONS(1243), - [anon_sym_0o] = ACTIONS(1243), - [anon_sym_0x] = ACTIONS(1243), - [sym_val_date] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym__str_single_quotes] = ACTIONS(1243), - [sym__str_back_ticks] = ACTIONS(1243), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1243), - [aux_sym__list_item_starts_with_sign_token1] = ACTIONS(1292), - [anon_sym_CARET] = ACTIONS(1243), - [anon_sym_POUND] = ACTIONS(113), - }, - [442] = { - [sym_comment] = STATE(442), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_alias] = ACTIONS(1190), - [anon_sym_let] = ACTIONS(1190), - [anon_sym_let_DASHenv] = ACTIONS(1190), - [anon_sym_mut] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1190), - [anon_sym_SEMI] = ACTIONS(1190), - [sym_cmd_identifier] = ACTIONS(1190), - [anon_sym_LF] = ACTIONS(1192), - [anon_sym_def] = ACTIONS(1190), - [anon_sym_export_DASHenv] = ACTIONS(1190), - [anon_sym_extern] = ACTIONS(1190), - [anon_sym_module] = ACTIONS(1190), - [anon_sym_use] = ACTIONS(1190), - [anon_sym_LBRACK] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(1190), - [anon_sym_RPAREN] = ACTIONS(1190), - [anon_sym_DOLLAR] = ACTIONS(1190), - [anon_sym_error] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1190), - [anon_sym_DASH_DASH] = ACTIONS(1190), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_in] = ACTIONS(1190), - [anon_sym_loop] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [anon_sym_do] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_match] = ACTIONS(1190), - [anon_sym_LBRACE] = ACTIONS(1190), - [anon_sym_RBRACE] = ACTIONS(1190), - [anon_sym_DOT_DOT] = ACTIONS(1190), - [anon_sym_try] = ACTIONS(1190), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_source] = ACTIONS(1190), - [anon_sym_source_DASHenv] = ACTIONS(1190), - [anon_sym_register] = ACTIONS(1190), - [anon_sym_hide] = ACTIONS(1190), - [anon_sym_hide_DASHenv] = ACTIONS(1190), - [anon_sym_overlay] = ACTIONS(1190), - [anon_sym_as] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1190), - [anon_sym_where] = ACTIONS(1190), - [anon_sym_STAR_STAR] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1190), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_mod] = ACTIONS(1190), - [anon_sym_SLASH_SLASH] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_bit_DASHshl] = ACTIONS(1190), - [anon_sym_bit_DASHshr] = ACTIONS(1190), - [anon_sym_EQ_EQ] = ACTIONS(1190), - [anon_sym_BANG_EQ] = ACTIONS(1190), - [anon_sym_LT2] = ACTIONS(1190), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_not_DASHin] = ACTIONS(1190), - [anon_sym_starts_DASHwith] = ACTIONS(1190), - [anon_sym_ends_DASHwith] = ACTIONS(1190), - [anon_sym_EQ_TILDE] = ACTIONS(1190), - [anon_sym_BANG_TILDE] = ACTIONS(1190), - [anon_sym_bit_DASHand] = ACTIONS(1190), - [anon_sym_bit_DASHxor] = ACTIONS(1190), - [anon_sym_bit_DASHor] = ACTIONS(1190), - [anon_sym_and] = ACTIONS(1190), - [anon_sym_xor] = ACTIONS(1190), - [anon_sym_or] = ACTIONS(1190), - [anon_sym_not] = ACTIONS(1190), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1190), - [anon_sym_DOT_DOT_LT] = ACTIONS(1190), - [anon_sym_null] = ACTIONS(1190), - [anon_sym_true] = ACTIONS(1190), - [anon_sym_false] = ACTIONS(1190), - [aux_sym__val_number_decimal_token1] = ACTIONS(1190), - [aux_sym__val_number_decimal_token2] = ACTIONS(1190), - [anon_sym_DOT2] = ACTIONS(1190), - [aux_sym__val_number_decimal_token3] = ACTIONS(1190), - [aux_sym__val_number_token1] = ACTIONS(1190), - [aux_sym__val_number_token2] = ACTIONS(1190), - [aux_sym__val_number_token3] = ACTIONS(1190), - [aux_sym__val_number_token4] = ACTIONS(1190), - [aux_sym__val_number_token5] = ACTIONS(1190), - [aux_sym__val_number_token6] = ACTIONS(1190), - [anon_sym_0b] = ACTIONS(1190), - [anon_sym_0o] = ACTIONS(1190), - [anon_sym_0x] = ACTIONS(1190), - [sym_val_date] = ACTIONS(1190), - [anon_sym_DQUOTE] = ACTIONS(1190), - [sym__str_single_quotes] = ACTIONS(1190), - [sym__str_back_ticks] = ACTIONS(1190), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1190), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1190), - [anon_sym_POUND] = ACTIONS(113), - }, - [443] = { - [sym_comment] = STATE(443), - [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), - [anon_sym_SEMI] = ACTIONS(1294), - [sym_cmd_identifier] = ACTIONS(1294), - [anon_sym_LF] = 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(1294), - [anon_sym_LPAREN] = ACTIONS(1294), - [anon_sym_RPAREN] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_error] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_in] = 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(1294), - [anon_sym_RBRACE] = ACTIONS(1294), - [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_register] = 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_STAR] = ACTIONS(1294), - [anon_sym_where] = ACTIONS(1294), - [anon_sym_STAR_STAR] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_mod] = ACTIONS(1294), - [anon_sym_SLASH_SLASH] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_bit_DASHshl] = ACTIONS(1294), - [anon_sym_bit_DASHshr] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_LT2] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_not_DASHin] = ACTIONS(1294), - [anon_sym_starts_DASHwith] = ACTIONS(1294), - [anon_sym_ends_DASHwith] = ACTIONS(1294), - [anon_sym_EQ_TILDE] = ACTIONS(1294), - [anon_sym_BANG_TILDE] = ACTIONS(1294), - [anon_sym_bit_DASHand] = ACTIONS(1294), - [anon_sym_bit_DASHxor] = ACTIONS(1294), - [anon_sym_bit_DASHor] = ACTIONS(1294), - [anon_sym_and] = ACTIONS(1294), - [anon_sym_xor] = ACTIONS(1294), - [anon_sym_or] = ACTIONS(1294), - [anon_sym_not] = ACTIONS(1294), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1294), - [anon_sym_DOT_DOT_LT] = ACTIONS(1294), - [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(1294), - [anon_sym_DOT2] = ACTIONS(1294), - [aux_sym__val_number_decimal_token3] = ACTIONS(1294), - [aux_sym__val_number_token1] = ACTIONS(1294), - [aux_sym__val_number_token2] = ACTIONS(1294), - [aux_sym__val_number_token3] = ACTIONS(1294), - [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(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym__str_single_quotes] = ACTIONS(1294), - [sym__str_back_ticks] = ACTIONS(1294), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1294), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1294), - [anon_sym_CARET] = ACTIONS(1294), - [anon_sym_POUND] = ACTIONS(113), - }, - [444] = { - [sym_comment] = STATE(444), - [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), - [anon_sym_SEMI] = ACTIONS(1294), - [sym_cmd_identifier] = ACTIONS(1294), - [anon_sym_LF] = 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(1294), - [anon_sym_LPAREN] = ACTIONS(1294), - [anon_sym_RPAREN] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_error] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_in] = 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(1294), - [anon_sym_RBRACE] = ACTIONS(1294), - [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_register] = 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_STAR] = ACTIONS(1294), - [anon_sym_where] = ACTIONS(1294), - [anon_sym_STAR_STAR] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_mod] = ACTIONS(1294), - [anon_sym_SLASH_SLASH] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_bit_DASHshl] = ACTIONS(1294), - [anon_sym_bit_DASHshr] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_LT2] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_not_DASHin] = ACTIONS(1294), - [anon_sym_starts_DASHwith] = ACTIONS(1294), - [anon_sym_ends_DASHwith] = ACTIONS(1294), - [anon_sym_EQ_TILDE] = ACTIONS(1294), - [anon_sym_BANG_TILDE] = ACTIONS(1294), - [anon_sym_bit_DASHand] = ACTIONS(1294), - [anon_sym_bit_DASHxor] = ACTIONS(1294), - [anon_sym_bit_DASHor] = ACTIONS(1294), - [anon_sym_and] = ACTIONS(1294), - [anon_sym_xor] = ACTIONS(1294), - [anon_sym_or] = ACTIONS(1294), - [anon_sym_not] = ACTIONS(1294), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1294), - [anon_sym_DOT_DOT_LT] = ACTIONS(1294), - [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(1294), - [anon_sym_DOT2] = ACTIONS(1294), - [aux_sym__val_number_decimal_token3] = ACTIONS(1294), - [aux_sym__val_number_token1] = ACTIONS(1294), - [aux_sym__val_number_token2] = ACTIONS(1294), - [aux_sym__val_number_token3] = ACTIONS(1294), - [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(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym__str_single_quotes] = ACTIONS(1294), - [sym__str_back_ticks] = ACTIONS(1294), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1294), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1294), - [anon_sym_CARET] = ACTIONS(1294), - [anon_sym_POUND] = ACTIONS(113), - }, - [445] = { - [sym_comment] = STATE(445), - [anon_sym_export] = ACTIONS(1298), - [anon_sym_alias] = ACTIONS(1298), - [anon_sym_let] = ACTIONS(1298), - [anon_sym_let_DASHenv] = ACTIONS(1298), - [anon_sym_mut] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1298), - [sym_cmd_identifier] = ACTIONS(1298), - [anon_sym_LF] = ACTIONS(1300), - [anon_sym_def] = ACTIONS(1298), - [anon_sym_export_DASHenv] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_module] = ACTIONS(1298), - [anon_sym_use] = ACTIONS(1298), - [anon_sym_LBRACK] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1298), - [anon_sym_RPAREN] = ACTIONS(1298), - [anon_sym_DOLLAR] = ACTIONS(1298), - [anon_sym_error] = ACTIONS(1298), - [anon_sym_GT] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_in] = ACTIONS(1298), - [anon_sym_loop] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_match] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1298), - [anon_sym_DOT_DOT] = ACTIONS(1298), - [anon_sym_try] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_source] = ACTIONS(1298), - [anon_sym_source_DASHenv] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_hide] = ACTIONS(1298), - [anon_sym_hide_DASHenv] = ACTIONS(1298), - [anon_sym_overlay] = ACTIONS(1298), - [anon_sym_as] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_where] = ACTIONS(1298), - [anon_sym_STAR_STAR] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1298), - [anon_sym_SLASH] = ACTIONS(1298), - [anon_sym_mod] = ACTIONS(1298), - [anon_sym_SLASH_SLASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_bit_DASHshl] = ACTIONS(1298), - [anon_sym_bit_DASHshr] = ACTIONS(1298), - [anon_sym_EQ_EQ] = ACTIONS(1298), - [anon_sym_BANG_EQ] = ACTIONS(1298), - [anon_sym_LT2] = ACTIONS(1298), - [anon_sym_LT_EQ] = ACTIONS(1298), - [anon_sym_GT_EQ] = ACTIONS(1298), - [anon_sym_not_DASHin] = ACTIONS(1298), - [anon_sym_starts_DASHwith] = ACTIONS(1298), - [anon_sym_ends_DASHwith] = ACTIONS(1298), - [anon_sym_EQ_TILDE] = ACTIONS(1298), - [anon_sym_BANG_TILDE] = ACTIONS(1298), - [anon_sym_bit_DASHand] = ACTIONS(1298), - [anon_sym_bit_DASHxor] = ACTIONS(1298), - [anon_sym_bit_DASHor] = ACTIONS(1298), - [anon_sym_and] = ACTIONS(1298), - [anon_sym_xor] = ACTIONS(1298), - [anon_sym_or] = ACTIONS(1298), - [anon_sym_not] = ACTIONS(1298), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1298), - [anon_sym_DOT_DOT_LT] = ACTIONS(1298), - [anon_sym_null] = ACTIONS(1298), - [anon_sym_true] = ACTIONS(1298), - [anon_sym_false] = ACTIONS(1298), - [aux_sym__val_number_decimal_token1] = ACTIONS(1298), - [aux_sym__val_number_decimal_token2] = ACTIONS(1298), - [anon_sym_DOT2] = ACTIONS(1298), - [aux_sym__val_number_decimal_token3] = 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(1298), - [aux_sym__val_number_token5] = ACTIONS(1298), - [aux_sym__val_number_token6] = ACTIONS(1298), - [anon_sym_0b] = ACTIONS(1298), - [anon_sym_0o] = ACTIONS(1298), - [anon_sym_0x] = ACTIONS(1298), - [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), - [anon_sym_POUND] = ACTIONS(113), - }, - [446] = { - [sym_comment] = STATE(446), - [anon_sym_export] = ACTIONS(1302), - [anon_sym_alias] = ACTIONS(1302), - [anon_sym_let] = ACTIONS(1302), - [anon_sym_let_DASHenv] = ACTIONS(1302), - [anon_sym_mut] = ACTIONS(1302), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1302), - [sym_cmd_identifier] = ACTIONS(1302), - [anon_sym_LF] = ACTIONS(1304), - [anon_sym_def] = ACTIONS(1302), - [anon_sym_export_DASHenv] = ACTIONS(1302), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_module] = ACTIONS(1302), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_LBRACK] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_RPAREN] = ACTIONS(1302), - [anon_sym_DOLLAR] = ACTIONS(1302), - [anon_sym_error] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_break] = ACTIONS(1302), - [anon_sym_continue] = ACTIONS(1302), - [anon_sym_for] = ACTIONS(1302), - [anon_sym_in] = ACTIONS(1302), - [anon_sym_loop] = ACTIONS(1302), - [anon_sym_while] = ACTIONS(1302), - [anon_sym_do] = ACTIONS(1302), - [anon_sym_if] = ACTIONS(1302), - [anon_sym_match] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_RBRACE] = ACTIONS(1302), - [anon_sym_DOT_DOT] = ACTIONS(1302), - [anon_sym_try] = ACTIONS(1302), - [anon_sym_return] = ACTIONS(1302), - [anon_sym_source] = ACTIONS(1302), - [anon_sym_source_DASHenv] = ACTIONS(1302), - [anon_sym_register] = ACTIONS(1302), - [anon_sym_hide] = ACTIONS(1302), - [anon_sym_hide_DASHenv] = ACTIONS(1302), - [anon_sym_overlay] = ACTIONS(1302), - [anon_sym_as] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_where] = ACTIONS(1302), - [anon_sym_STAR_STAR] = ACTIONS(1302), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_SLASH] = ACTIONS(1302), - [anon_sym_mod] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_bit_DASHshl] = ACTIONS(1302), - [anon_sym_bit_DASHshr] = ACTIONS(1302), - [anon_sym_EQ_EQ] = ACTIONS(1302), - [anon_sym_BANG_EQ] = ACTIONS(1302), - [anon_sym_LT2] = ACTIONS(1302), - [anon_sym_LT_EQ] = ACTIONS(1302), - [anon_sym_GT_EQ] = ACTIONS(1302), - [anon_sym_not_DASHin] = ACTIONS(1302), - [anon_sym_starts_DASHwith] = ACTIONS(1302), - [anon_sym_ends_DASHwith] = ACTIONS(1302), - [anon_sym_EQ_TILDE] = ACTIONS(1302), - [anon_sym_BANG_TILDE] = ACTIONS(1302), - [anon_sym_bit_DASHand] = ACTIONS(1302), - [anon_sym_bit_DASHxor] = ACTIONS(1302), - [anon_sym_bit_DASHor] = ACTIONS(1302), - [anon_sym_and] = ACTIONS(1302), - [anon_sym_xor] = ACTIONS(1302), - [anon_sym_or] = ACTIONS(1302), - [anon_sym_not] = ACTIONS(1302), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1302), - [anon_sym_DOT_DOT_LT] = ACTIONS(1302), - [anon_sym_null] = ACTIONS(1302), - [anon_sym_true] = ACTIONS(1302), - [anon_sym_false] = ACTIONS(1302), - [aux_sym__val_number_decimal_token1] = ACTIONS(1302), - [aux_sym__val_number_decimal_token2] = ACTIONS(1302), - [anon_sym_DOT2] = ACTIONS(1302), - [aux_sym__val_number_decimal_token3] = ACTIONS(1302), - [aux_sym__val_number_token1] = ACTIONS(1302), - [aux_sym__val_number_token2] = ACTIONS(1302), - [aux_sym__val_number_token3] = ACTIONS(1302), - [aux_sym__val_number_token4] = ACTIONS(1302), - [aux_sym__val_number_token5] = ACTIONS(1302), - [aux_sym__val_number_token6] = ACTIONS(1302), - [anon_sym_0b] = ACTIONS(1302), - [anon_sym_0o] = ACTIONS(1302), - [anon_sym_0x] = ACTIONS(1302), - [sym_val_date] = ACTIONS(1302), - [anon_sym_DQUOTE] = ACTIONS(1302), - [sym__str_single_quotes] = ACTIONS(1302), - [sym__str_back_ticks] = ACTIONS(1302), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1302), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1302), - [anon_sym_CARET] = ACTIONS(1302), - [anon_sym_POUND] = ACTIONS(113), - }, - [447] = { - [sym_comment] = STATE(447), - [anon_sym_export] = ACTIONS(1113), - [anon_sym_alias] = ACTIONS(1113), - [anon_sym_EQ] = ACTIONS(1113), - [anon_sym_let] = ACTIONS(1113), - [anon_sym_let_DASHenv] = ACTIONS(1113), - [anon_sym_mut] = ACTIONS(1113), - [anon_sym_const] = ACTIONS(1113), - [anon_sym_SEMI] = ACTIONS(1113), - [sym_cmd_identifier] = ACTIONS(1113), - [anon_sym_LF] = ACTIONS(1115), - [anon_sym_def] = ACTIONS(1113), - [anon_sym_export_DASHenv] = ACTIONS(1113), - [anon_sym_extern] = ACTIONS(1113), - [anon_sym_module] = ACTIONS(1113), - [anon_sym_use] = ACTIONS(1113), - [anon_sym_COLON] = ACTIONS(1113), - [anon_sym_COMMA] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_PIPE] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1113), - [anon_sym_error] = ACTIONS(1113), - [anon_sym_list] = ACTIONS(1113), - [anon_sym_GT] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_in] = ACTIONS(1113), - [anon_sym_loop] = ACTIONS(1113), - [anon_sym_make] = ACTIONS(1113), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_else] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1113), - [anon_sym_RBRACE] = ACTIONS(1113), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_catch] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_source] = ACTIONS(1113), - [anon_sym_source_DASHenv] = ACTIONS(1113), - [anon_sym_register] = ACTIONS(1113), - [anon_sym_hide] = ACTIONS(1113), - [anon_sym_hide_DASHenv] = ACTIONS(1113), - [anon_sym_overlay] = ACTIONS(1113), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_as] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_PLUS_EQ] = ACTIONS(1113), - [anon_sym_DASH_EQ] = ACTIONS(1113), - [anon_sym_STAR_EQ] = ACTIONS(1113), - [anon_sym_SLASH_EQ] = ACTIONS(1113), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1113), - [anon_sym_STAR_STAR] = ACTIONS(1113), - [anon_sym_PLUS_PLUS] = ACTIONS(1113), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_mod] = ACTIONS(1113), - [anon_sym_SLASH_SLASH] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_bit_DASHshl] = ACTIONS(1113), - [anon_sym_bit_DASHshr] = ACTIONS(1113), - [anon_sym_EQ_EQ] = ACTIONS(1113), - [anon_sym_BANG_EQ] = ACTIONS(1113), - [anon_sym_LT2] = ACTIONS(1113), - [anon_sym_LT_EQ] = ACTIONS(1113), - [anon_sym_GT_EQ] = ACTIONS(1113), - [anon_sym_not_DASHin] = ACTIONS(1113), - [anon_sym_starts_DASHwith] = ACTIONS(1113), - [anon_sym_ends_DASHwith] = ACTIONS(1113), - [anon_sym_EQ_TILDE] = ACTIONS(1113), - [anon_sym_BANG_TILDE] = ACTIONS(1113), - [anon_sym_bit_DASHand] = ACTIONS(1113), - [anon_sym_bit_DASHxor] = ACTIONS(1113), - [anon_sym_bit_DASHor] = ACTIONS(1113), - [anon_sym_and] = ACTIONS(1113), - [anon_sym_xor] = ACTIONS(1113), - [anon_sym_or] = ACTIONS(1113), - [anon_sym_DOT_DOT2] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1115), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1115), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_decimal_token2] = ACTIONS(1113), - [anon_sym_DOT2] = ACTIONS(1113), - [aux_sym__val_number_decimal_token3] = ACTIONS(1113), - [aux_sym__val_number_token1] = ACTIONS(1113), - [aux_sym__val_number_token2] = ACTIONS(1113), - [aux_sym__val_number_token3] = ACTIONS(1113), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1113), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym__str_single_quotes] = ACTIONS(1113), - [sym__str_back_ticks] = ACTIONS(1113), - [aux_sym__record_key_token2] = ACTIONS(1113), - [anon_sym_POUND] = ACTIONS(113), - }, - [448] = { - [sym_comment] = STATE(448), - [anon_sym_export] = ACTIONS(959), - [anon_sym_alias] = ACTIONS(959), - [anon_sym_let] = ACTIONS(959), - [anon_sym_let_DASHenv] = ACTIONS(959), - [anon_sym_mut] = ACTIONS(959), - [anon_sym_const] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(959), - [sym_cmd_identifier] = ACTIONS(959), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_def] = ACTIONS(959), - [anon_sym_export_DASHenv] = ACTIONS(959), - [anon_sym_extern] = ACTIONS(959), - [anon_sym_module] = ACTIONS(959), - [anon_sym_use] = ACTIONS(959), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_RPAREN] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_error] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH_DASH] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_break] = ACTIONS(959), - [anon_sym_continue] = ACTIONS(959), - [anon_sym_for] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_loop] = ACTIONS(959), - [anon_sym_while] = ACTIONS(959), - [anon_sym_do] = ACTIONS(959), - [anon_sym_if] = ACTIONS(959), - [anon_sym_match] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_RBRACE] = ACTIONS(959), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_try] = ACTIONS(959), - [anon_sym_return] = ACTIONS(959), - [anon_sym_source] = ACTIONS(959), - [anon_sym_source_DASHenv] = ACTIONS(959), - [anon_sym_register] = ACTIONS(959), - [anon_sym_hide] = ACTIONS(959), - [anon_sym_hide_DASHenv] = ACTIONS(959), - [anon_sym_overlay] = ACTIONS(959), - [anon_sym_as] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_where] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(959), - [anon_sym_PLUS_PLUS] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(959), - [anon_sym_SLASH_SLASH] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(959), - [anon_sym_bit_DASHshr] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(959), - [anon_sym_BANG_EQ] = ACTIONS(959), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(959), - [anon_sym_GT_EQ] = ACTIONS(959), - [anon_sym_not_DASHin] = ACTIONS(959), - [anon_sym_starts_DASHwith] = ACTIONS(959), - [anon_sym_ends_DASHwith] = ACTIONS(959), - [anon_sym_EQ_TILDE] = ACTIONS(959), - [anon_sym_BANG_TILDE] = ACTIONS(959), - [anon_sym_bit_DASHand] = ACTIONS(959), - [anon_sym_bit_DASHxor] = ACTIONS(959), - [anon_sym_bit_DASHor] = ACTIONS(959), - [anon_sym_and] = ACTIONS(959), - [anon_sym_xor] = ACTIONS(959), - [anon_sym_or] = ACTIONS(959), - [anon_sym_not] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_DOT_DOT_LT] = ACTIONS(959), - [anon_sym_null] = ACTIONS(959), - [anon_sym_true] = ACTIONS(959), - [anon_sym_false] = ACTIONS(959), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(959), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(959), - [aux_sym__val_number_token1] = ACTIONS(959), - [aux_sym__val_number_token2] = ACTIONS(959), - [aux_sym__val_number_token3] = ACTIONS(959), - [aux_sym__val_number_token4] = ACTIONS(959), - [aux_sym__val_number_token5] = ACTIONS(959), - [aux_sym__val_number_token6] = ACTIONS(959), - [anon_sym_0b] = ACTIONS(959), - [anon_sym_0o] = ACTIONS(959), - [anon_sym_0x] = ACTIONS(959), - [sym_val_date] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [sym__str_single_quotes] = ACTIONS(959), - [sym__str_back_ticks] = ACTIONS(959), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(959), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(959), - [anon_sym_CARET] = ACTIONS(959), - [anon_sym_POUND] = ACTIONS(113), - }, - [449] = { - [sym_comment] = STATE(449), - [anon_sym_export] = ACTIONS(1280), - [anon_sym_alias] = ACTIONS(1280), - [anon_sym_let] = ACTIONS(1280), - [anon_sym_let_DASHenv] = ACTIONS(1280), - [anon_sym_mut] = ACTIONS(1280), - [anon_sym_const] = ACTIONS(1280), - [anon_sym_SEMI] = ACTIONS(1280), - [sym_cmd_identifier] = ACTIONS(1280), - [anon_sym_LF] = ACTIONS(1282), - [anon_sym_def] = ACTIONS(1280), - [anon_sym_export_DASHenv] = ACTIONS(1280), - [anon_sym_extern] = ACTIONS(1280), - [anon_sym_module] = ACTIONS(1280), - [anon_sym_use] = ACTIONS(1280), - [anon_sym_LBRACK] = ACTIONS(1280), - [anon_sym_LPAREN] = ACTIONS(1280), - [anon_sym_RPAREN] = ACTIONS(1280), - [anon_sym_DOLLAR] = ACTIONS(1280), - [anon_sym_error] = ACTIONS(1280), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_DASH_DASH] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_break] = ACTIONS(1280), - [anon_sym_continue] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_in] = ACTIONS(1280), - [anon_sym_loop] = ACTIONS(1280), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1280), - [anon_sym_RBRACE] = ACTIONS(1280), - [anon_sym_DOT_DOT] = ACTIONS(1280), - [anon_sym_try] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1280), - [anon_sym_source] = ACTIONS(1280), - [anon_sym_source_DASHenv] = ACTIONS(1280), - [anon_sym_register] = ACTIONS(1280), - [anon_sym_hide] = ACTIONS(1280), - [anon_sym_hide_DASHenv] = ACTIONS(1280), - [anon_sym_overlay] = ACTIONS(1280), - [anon_sym_as] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1280), - [anon_sym_where] = ACTIONS(1280), - [anon_sym_STAR_STAR] = ACTIONS(1280), - [anon_sym_PLUS_PLUS] = ACTIONS(1280), - [anon_sym_SLASH] = ACTIONS(1280), - [anon_sym_mod] = ACTIONS(1280), - [anon_sym_SLASH_SLASH] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_bit_DASHshl] = ACTIONS(1280), - [anon_sym_bit_DASHshr] = ACTIONS(1280), - [anon_sym_EQ_EQ] = ACTIONS(1280), - [anon_sym_BANG_EQ] = ACTIONS(1280), - [anon_sym_LT2] = ACTIONS(1280), - [anon_sym_LT_EQ] = ACTIONS(1280), - [anon_sym_GT_EQ] = ACTIONS(1280), - [anon_sym_not_DASHin] = ACTIONS(1280), - [anon_sym_starts_DASHwith] = ACTIONS(1280), - [anon_sym_ends_DASHwith] = ACTIONS(1280), - [anon_sym_EQ_TILDE] = ACTIONS(1280), - [anon_sym_BANG_TILDE] = ACTIONS(1280), - [anon_sym_bit_DASHand] = ACTIONS(1280), - [anon_sym_bit_DASHxor] = ACTIONS(1280), - [anon_sym_bit_DASHor] = ACTIONS(1280), - [anon_sym_and] = ACTIONS(1280), - [anon_sym_xor] = ACTIONS(1280), - [anon_sym_or] = ACTIONS(1280), - [anon_sym_not] = ACTIONS(1280), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1280), - [anon_sym_DOT_DOT_LT] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1280), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [aux_sym__val_number_decimal_token1] = ACTIONS(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1280), - [anon_sym_DOT2] = ACTIONS(1280), - [aux_sym__val_number_decimal_token3] = ACTIONS(1280), - [aux_sym__val_number_token1] = ACTIONS(1280), - [aux_sym__val_number_token2] = ACTIONS(1280), - [aux_sym__val_number_token3] = ACTIONS(1280), - [aux_sym__val_number_token4] = ACTIONS(1280), - [aux_sym__val_number_token5] = ACTIONS(1280), - [aux_sym__val_number_token6] = ACTIONS(1280), - [anon_sym_0b] = ACTIONS(1280), - [anon_sym_0o] = ACTIONS(1280), - [anon_sym_0x] = ACTIONS(1280), - [sym_val_date] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1280), - [sym__str_single_quotes] = ACTIONS(1280), - [sym__str_back_ticks] = ACTIONS(1280), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1280), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1280), - [anon_sym_CARET] = ACTIONS(1280), - [anon_sym_POUND] = ACTIONS(113), - }, - [450] = { - [sym_cell_path] = STATE(739), - [sym_path] = STATE(526), - [sym_comment] = STATE(450), - [ts_builtin_sym_end] = ACTIONS(1150), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_alias] = ACTIONS(1148), - [anon_sym_let] = ACTIONS(1148), - [anon_sym_let_DASHenv] = ACTIONS(1148), - [anon_sym_mut] = ACTIONS(1148), - [anon_sym_const] = ACTIONS(1148), - [anon_sym_SEMI] = ACTIONS(1148), - [sym_cmd_identifier] = ACTIONS(1148), - [anon_sym_LF] = ACTIONS(1150), - [anon_sym_def] = ACTIONS(1148), - [anon_sym_export_DASHenv] = ACTIONS(1148), - [anon_sym_extern] = ACTIONS(1148), - [anon_sym_module] = ACTIONS(1148), - [anon_sym_use] = ACTIONS(1148), - [anon_sym_LBRACK] = ACTIONS(1148), - [anon_sym_LPAREN] = ACTIONS(1148), - [anon_sym_DOLLAR] = ACTIONS(1148), - [anon_sym_error] = ACTIONS(1148), - [anon_sym_GT] = ACTIONS(1148), - [anon_sym_DASH] = ACTIONS(1148), - [anon_sym_break] = ACTIONS(1148), - [anon_sym_continue] = ACTIONS(1148), - [anon_sym_for] = ACTIONS(1148), - [anon_sym_in] = ACTIONS(1148), - [anon_sym_loop] = ACTIONS(1148), - [anon_sym_while] = ACTIONS(1148), - [anon_sym_do] = ACTIONS(1148), - [anon_sym_if] = ACTIONS(1148), - [anon_sym_match] = ACTIONS(1148), - [anon_sym_LBRACE] = ACTIONS(1148), - [anon_sym_DOT_DOT] = ACTIONS(1148), - [anon_sym_try] = ACTIONS(1148), - [anon_sym_return] = ACTIONS(1148), - [anon_sym_source] = ACTIONS(1148), - [anon_sym_source_DASHenv] = ACTIONS(1148), - [anon_sym_register] = ACTIONS(1148), - [anon_sym_hide] = ACTIONS(1148), - [anon_sym_hide_DASHenv] = ACTIONS(1148), - [anon_sym_overlay] = ACTIONS(1148), - [anon_sym_STAR] = ACTIONS(1148), - [anon_sym_where] = ACTIONS(1148), - [anon_sym_STAR_STAR] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_SLASH] = ACTIONS(1148), - [anon_sym_mod] = ACTIONS(1148), - [anon_sym_SLASH_SLASH] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1148), - [anon_sym_bit_DASHshl] = ACTIONS(1148), - [anon_sym_bit_DASHshr] = ACTIONS(1148), - [anon_sym_EQ_EQ] = ACTIONS(1148), - [anon_sym_BANG_EQ] = ACTIONS(1148), - [anon_sym_LT2] = ACTIONS(1148), - [anon_sym_LT_EQ] = ACTIONS(1148), - [anon_sym_GT_EQ] = ACTIONS(1148), - [anon_sym_not_DASHin] = ACTIONS(1148), - [anon_sym_starts_DASHwith] = ACTIONS(1148), - [anon_sym_ends_DASHwith] = ACTIONS(1148), - [anon_sym_EQ_TILDE] = ACTIONS(1148), - [anon_sym_BANG_TILDE] = ACTIONS(1148), - [anon_sym_bit_DASHand] = ACTIONS(1148), - [anon_sym_bit_DASHxor] = ACTIONS(1148), - [anon_sym_bit_DASHor] = ACTIONS(1148), - [anon_sym_and] = ACTIONS(1148), - [anon_sym_xor] = ACTIONS(1148), - [anon_sym_or] = ACTIONS(1148), - [anon_sym_not] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1306), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1148), - [anon_sym_DOT_DOT_LT] = ACTIONS(1148), - [anon_sym_null] = ACTIONS(1148), - [anon_sym_true] = ACTIONS(1148), - [anon_sym_false] = ACTIONS(1148), - [aux_sym__val_number_decimal_token1] = ACTIONS(1148), - [aux_sym__val_number_decimal_token2] = ACTIONS(1148), - [anon_sym_DOT2] = ACTIONS(1148), - [aux_sym__val_number_decimal_token3] = ACTIONS(1148), - [aux_sym__val_number_token1] = ACTIONS(1148), - [aux_sym__val_number_token2] = ACTIONS(1148), - [aux_sym__val_number_token3] = ACTIONS(1148), - [aux_sym__val_number_token4] = ACTIONS(1148), - [aux_sym__val_number_token5] = ACTIONS(1148), - [aux_sym__val_number_token6] = ACTIONS(1148), - [anon_sym_0b] = ACTIONS(1148), - [anon_sym_0o] = ACTIONS(1148), - [anon_sym_0x] = ACTIONS(1148), - [sym_val_date] = ACTIONS(1148), - [anon_sym_DQUOTE] = ACTIONS(1148), - [sym__str_single_quotes] = ACTIONS(1148), - [sym__str_back_ticks] = ACTIONS(1148), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1148), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1148), - [anon_sym_CARET] = ACTIONS(1148), - [anon_sym_POUND] = ACTIONS(113), - }, - [451] = { - [sym_cell_path] = STATE(740), - [sym_path] = STATE(526), - [sym_comment] = STATE(451), [ts_builtin_sym_end] = ACTIONS(1181), [anon_sym_export] = ACTIONS(1179), [anon_sym_alias] = ACTIONS(1179), @@ -144855,7 +140682,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1179), [anon_sym_error] = ACTIONS(1179), [anon_sym_GT] = ACTIONS(1179), - [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1308), [anon_sym_break] = ACTIONS(1179), [anon_sym_continue] = ACTIONS(1179), [anon_sym_for] = ACTIONS(1179), @@ -144875,14 +140703,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(1179), [anon_sym_hide_DASHenv] = ACTIONS(1179), [anon_sym_overlay] = ACTIONS(1179), - [anon_sym_STAR] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1310), [anon_sym_where] = ACTIONS(1179), - [anon_sym_STAR_STAR] = ACTIONS(1179), - [anon_sym_PLUS_PLUS] = ACTIONS(1179), - [anon_sym_SLASH] = ACTIONS(1179), - [anon_sym_mod] = ACTIONS(1179), - [anon_sym_SLASH_SLASH] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_STAR_STAR] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_SLASH] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_SLASH_SLASH] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1308), [anon_sym_bit_DASHshl] = ACTIONS(1179), [anon_sym_bit_DASHshr] = ACTIONS(1179), [anon_sym_EQ_EQ] = ACTIONS(1179), @@ -144902,7 +140731,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(1179), [anon_sym_or] = ACTIONS(1179), [anon_sym_not] = ACTIONS(1179), - [anon_sym_DOT] = ACTIONS(1306), [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), [anon_sym_DOT_DOT_LT] = ACTIONS(1179), [anon_sym_null] = ACTIONS(1179), @@ -144930,503 +140758,2360 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, - [452] = { - [sym_comment] = STATE(452), - [anon_sym_export] = ACTIONS(1117), - [anon_sym_alias] = ACTIONS(1117), - [anon_sym_EQ] = ACTIONS(1117), - [anon_sym_let] = ACTIONS(1117), - [anon_sym_let_DASHenv] = ACTIONS(1117), - [anon_sym_mut] = ACTIONS(1117), - [anon_sym_const] = ACTIONS(1117), - [anon_sym_SEMI] = ACTIONS(1117), - [sym_cmd_identifier] = ACTIONS(1117), - [anon_sym_LF] = ACTIONS(1119), - [anon_sym_def] = ACTIONS(1117), - [anon_sym_export_DASHenv] = ACTIONS(1117), - [anon_sym_extern] = ACTIONS(1117), - [anon_sym_module] = ACTIONS(1117), - [anon_sym_use] = ACTIONS(1117), - [anon_sym_COLON] = ACTIONS(1117), - [anon_sym_COMMA] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1117), - [anon_sym_PIPE] = ACTIONS(1117), - [anon_sym_DOLLAR] = ACTIONS(1117), - [anon_sym_error] = ACTIONS(1117), - [anon_sym_list] = ACTIONS(1117), - [anon_sym_GT] = ACTIONS(1117), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_break] = ACTIONS(1117), - [anon_sym_continue] = ACTIONS(1117), - [anon_sym_for] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1117), - [anon_sym_loop] = ACTIONS(1117), - [anon_sym_make] = ACTIONS(1117), - [anon_sym_while] = ACTIONS(1117), - [anon_sym_do] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_else] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1117), - [anon_sym_RBRACE] = ACTIONS(1117), - [anon_sym_try] = ACTIONS(1117), - [anon_sym_catch] = ACTIONS(1117), - [anon_sym_return] = ACTIONS(1117), - [anon_sym_source] = ACTIONS(1117), - [anon_sym_source_DASHenv] = ACTIONS(1117), - [anon_sym_register] = ACTIONS(1117), - [anon_sym_hide] = ACTIONS(1117), - [anon_sym_hide_DASHenv] = ACTIONS(1117), - [anon_sym_overlay] = ACTIONS(1117), - [anon_sym_new] = ACTIONS(1117), - [anon_sym_as] = ACTIONS(1117), - [anon_sym_STAR] = ACTIONS(1117), - [anon_sym_PLUS_EQ] = ACTIONS(1117), - [anon_sym_DASH_EQ] = ACTIONS(1117), - [anon_sym_STAR_EQ] = ACTIONS(1117), - [anon_sym_SLASH_EQ] = ACTIONS(1117), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1117), - [anon_sym_STAR_STAR] = ACTIONS(1117), - [anon_sym_PLUS_PLUS] = ACTIONS(1117), - [anon_sym_SLASH] = ACTIONS(1117), - [anon_sym_mod] = ACTIONS(1117), - [anon_sym_SLASH_SLASH] = ACTIONS(1117), - [anon_sym_PLUS] = ACTIONS(1117), - [anon_sym_bit_DASHshl] = ACTIONS(1117), - [anon_sym_bit_DASHshr] = ACTIONS(1117), - [anon_sym_EQ_EQ] = ACTIONS(1117), - [anon_sym_BANG_EQ] = ACTIONS(1117), - [anon_sym_LT2] = ACTIONS(1117), - [anon_sym_LT_EQ] = ACTIONS(1117), - [anon_sym_GT_EQ] = ACTIONS(1117), - [anon_sym_not_DASHin] = ACTIONS(1117), - [anon_sym_starts_DASHwith] = ACTIONS(1117), - [anon_sym_ends_DASHwith] = ACTIONS(1117), - [anon_sym_EQ_TILDE] = ACTIONS(1117), - [anon_sym_BANG_TILDE] = ACTIONS(1117), - [anon_sym_bit_DASHand] = ACTIONS(1117), - [anon_sym_bit_DASHxor] = ACTIONS(1117), - [anon_sym_bit_DASHor] = ACTIONS(1117), - [anon_sym_and] = ACTIONS(1117), - [anon_sym_xor] = ACTIONS(1117), - [anon_sym_or] = ACTIONS(1117), - [anon_sym_DOT_DOT2] = ACTIONS(1117), - [anon_sym_DOT] = ACTIONS(1117), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1119), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1119), - [aux_sym__val_number_decimal_token1] = ACTIONS(1117), - [aux_sym__val_number_decimal_token2] = ACTIONS(1117), - [anon_sym_DOT2] = ACTIONS(1117), - [aux_sym__val_number_decimal_token3] = ACTIONS(1117), - [aux_sym__val_number_token1] = ACTIONS(1117), - [aux_sym__val_number_token2] = ACTIONS(1117), - [aux_sym__val_number_token3] = ACTIONS(1117), - [aux_sym__val_number_token4] = ACTIONS(1117), - [aux_sym__val_number_token5] = ACTIONS(1117), - [aux_sym__val_number_token6] = ACTIONS(1117), - [anon_sym_DQUOTE] = ACTIONS(1117), - [sym__str_single_quotes] = ACTIONS(1117), - [sym__str_back_ticks] = ACTIONS(1117), - [aux_sym__record_key_token2] = ACTIONS(1117), - [anon_sym_POUND] = ACTIONS(113), - }, - [453] = { - [sym_cell_path] = STATE(741), - [sym_path] = STATE(526), - [sym_comment] = STATE(453), - [ts_builtin_sym_end] = ACTIONS(1205), - [anon_sym_export] = ACTIONS(1203), - [anon_sym_alias] = ACTIONS(1203), - [anon_sym_let] = ACTIONS(1203), - [anon_sym_let_DASHenv] = ACTIONS(1203), - [anon_sym_mut] = ACTIONS(1203), - [anon_sym_const] = ACTIONS(1203), - [anon_sym_SEMI] = ACTIONS(1203), - [sym_cmd_identifier] = ACTIONS(1203), - [anon_sym_LF] = ACTIONS(1205), - [anon_sym_def] = ACTIONS(1203), - [anon_sym_export_DASHenv] = ACTIONS(1203), - [anon_sym_extern] = ACTIONS(1203), - [anon_sym_module] = ACTIONS(1203), - [anon_sym_use] = ACTIONS(1203), - [anon_sym_LBRACK] = ACTIONS(1203), - [anon_sym_LPAREN] = ACTIONS(1203), - [anon_sym_DOLLAR] = ACTIONS(1203), - [anon_sym_error] = ACTIONS(1203), - [anon_sym_GT] = ACTIONS(1203), - [anon_sym_DASH] = ACTIONS(1203), - [anon_sym_break] = ACTIONS(1203), - [anon_sym_continue] = ACTIONS(1203), - [anon_sym_for] = ACTIONS(1203), - [anon_sym_in] = ACTIONS(1203), - [anon_sym_loop] = ACTIONS(1203), - [anon_sym_while] = ACTIONS(1203), - [anon_sym_do] = ACTIONS(1203), - [anon_sym_if] = ACTIONS(1203), - [anon_sym_match] = ACTIONS(1203), - [anon_sym_LBRACE] = ACTIONS(1203), - [anon_sym_DOT_DOT] = ACTIONS(1203), - [anon_sym_try] = ACTIONS(1203), - [anon_sym_return] = ACTIONS(1203), - [anon_sym_source] = ACTIONS(1203), - [anon_sym_source_DASHenv] = ACTIONS(1203), - [anon_sym_register] = ACTIONS(1203), - [anon_sym_hide] = ACTIONS(1203), - [anon_sym_hide_DASHenv] = ACTIONS(1203), - [anon_sym_overlay] = ACTIONS(1203), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_where] = ACTIONS(1203), - [anon_sym_STAR_STAR] = ACTIONS(1203), - [anon_sym_PLUS_PLUS] = ACTIONS(1203), - [anon_sym_SLASH] = ACTIONS(1203), - [anon_sym_mod] = ACTIONS(1203), - [anon_sym_SLASH_SLASH] = ACTIONS(1203), - [anon_sym_PLUS] = ACTIONS(1203), - [anon_sym_bit_DASHshl] = ACTIONS(1203), - [anon_sym_bit_DASHshr] = ACTIONS(1203), - [anon_sym_EQ_EQ] = ACTIONS(1203), - [anon_sym_BANG_EQ] = ACTIONS(1203), - [anon_sym_LT2] = ACTIONS(1203), - [anon_sym_LT_EQ] = ACTIONS(1203), - [anon_sym_GT_EQ] = ACTIONS(1203), - [anon_sym_not_DASHin] = ACTIONS(1203), - [anon_sym_starts_DASHwith] = ACTIONS(1203), - [anon_sym_ends_DASHwith] = ACTIONS(1203), - [anon_sym_EQ_TILDE] = ACTIONS(1203), - [anon_sym_BANG_TILDE] = ACTIONS(1203), - [anon_sym_bit_DASHand] = ACTIONS(1203), - [anon_sym_bit_DASHxor] = ACTIONS(1203), - [anon_sym_bit_DASHor] = ACTIONS(1203), - [anon_sym_and] = ACTIONS(1203), - [anon_sym_xor] = ACTIONS(1203), - [anon_sym_or] = ACTIONS(1203), - [anon_sym_not] = ACTIONS(1203), - [anon_sym_DOT] = ACTIONS(1306), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1203), - [anon_sym_DOT_DOT_LT] = ACTIONS(1203), - [anon_sym_null] = ACTIONS(1203), - [anon_sym_true] = ACTIONS(1203), - [anon_sym_false] = ACTIONS(1203), - [aux_sym__val_number_decimal_token1] = ACTIONS(1203), - [aux_sym__val_number_decimal_token2] = ACTIONS(1203), - [anon_sym_DOT2] = ACTIONS(1203), - [aux_sym__val_number_decimal_token3] = ACTIONS(1203), - [aux_sym__val_number_token1] = ACTIONS(1203), - [aux_sym__val_number_token2] = ACTIONS(1203), - [aux_sym__val_number_token3] = ACTIONS(1203), - [aux_sym__val_number_token4] = ACTIONS(1203), - [aux_sym__val_number_token5] = ACTIONS(1203), - [aux_sym__val_number_token6] = ACTIONS(1203), - [anon_sym_0b] = ACTIONS(1203), - [anon_sym_0o] = ACTIONS(1203), - [anon_sym_0x] = ACTIONS(1203), - [sym_val_date] = ACTIONS(1203), - [anon_sym_DQUOTE] = ACTIONS(1203), - [sym__str_single_quotes] = ACTIONS(1203), - [sym__str_back_ticks] = ACTIONS(1203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1203), - [anon_sym_CARET] = ACTIONS(1203), - [anon_sym_POUND] = ACTIONS(113), - }, - [454] = { - [sym_comment] = STATE(454), - [anon_sym_export] = ACTIONS(1059), - [anon_sym_alias] = ACTIONS(1059), - [anon_sym_let] = ACTIONS(1059), - [anon_sym_let_DASHenv] = ACTIONS(1059), - [anon_sym_mut] = ACTIONS(1059), - [anon_sym_const] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [sym_cmd_identifier] = ACTIONS(1059), - [anon_sym_LF] = ACTIONS(1061), - [anon_sym_def] = ACTIONS(1059), - [anon_sym_export_DASHenv] = ACTIONS(1059), - [anon_sym_extern] = ACTIONS(1059), - [anon_sym_module] = ACTIONS(1059), - [anon_sym_use] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_error] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_break] = ACTIONS(1059), - [anon_sym_continue] = ACTIONS(1059), - [anon_sym_for] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1059), - [anon_sym_loop] = ACTIONS(1059), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_do] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1059), - [anon_sym_match] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(1059), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_try] = ACTIONS(1059), - [anon_sym_return] = ACTIONS(1059), - [anon_sym_source] = ACTIONS(1059), - [anon_sym_source_DASHenv] = ACTIONS(1059), - [anon_sym_register] = ACTIONS(1059), - [anon_sym_hide] = ACTIONS(1059), - [anon_sym_hide_DASHenv] = ACTIONS(1059), - [anon_sym_overlay] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(1059), - [anon_sym_QMARK2] = ACTIONS(1059), - [anon_sym_STAR_STAR] = ACTIONS(1059), - [anon_sym_PLUS_PLUS] = ACTIONS(1059), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_mod] = ACTIONS(1059), - [anon_sym_SLASH_SLASH] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_bit_DASHshl] = ACTIONS(1059), - [anon_sym_bit_DASHshr] = ACTIONS(1059), - [anon_sym_EQ_EQ] = ACTIONS(1059), - [anon_sym_BANG_EQ] = ACTIONS(1059), - [anon_sym_LT2] = ACTIONS(1059), - [anon_sym_LT_EQ] = ACTIONS(1059), - [anon_sym_GT_EQ] = ACTIONS(1059), - [anon_sym_not_DASHin] = ACTIONS(1059), - [anon_sym_starts_DASHwith] = ACTIONS(1059), - [anon_sym_ends_DASHwith] = ACTIONS(1059), - [anon_sym_EQ_TILDE] = ACTIONS(1059), - [anon_sym_BANG_TILDE] = ACTIONS(1059), - [anon_sym_bit_DASHand] = ACTIONS(1059), - [anon_sym_bit_DASHxor] = ACTIONS(1059), - [anon_sym_bit_DASHor] = ACTIONS(1059), - [anon_sym_and] = ACTIONS(1059), - [anon_sym_xor] = ACTIONS(1059), - [anon_sym_or] = ACTIONS(1059), - [anon_sym_not] = ACTIONS(1059), - [anon_sym_DOT] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1059), - [anon_sym_DOT_DOT_LT] = ACTIONS(1059), - [anon_sym_null] = ACTIONS(1059), - [anon_sym_true] = ACTIONS(1059), - [anon_sym_false] = ACTIONS(1059), - [aux_sym__val_number_decimal_token1] = ACTIONS(1059), - [aux_sym__val_number_decimal_token2] = ACTIONS(1059), - [anon_sym_DOT2] = ACTIONS(1059), - [aux_sym__val_number_decimal_token3] = ACTIONS(1059), - [aux_sym__val_number_token1] = ACTIONS(1059), - [aux_sym__val_number_token2] = ACTIONS(1059), - [aux_sym__val_number_token3] = ACTIONS(1059), - [aux_sym__val_number_token4] = ACTIONS(1059), - [aux_sym__val_number_token5] = ACTIONS(1059), - [aux_sym__val_number_token6] = ACTIONS(1059), - [anon_sym_0b] = ACTIONS(1059), - [anon_sym_0o] = ACTIONS(1059), - [anon_sym_0x] = ACTIONS(1059), - [sym_val_date] = ACTIONS(1059), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym__str_single_quotes] = ACTIONS(1059), - [sym__str_back_ticks] = ACTIONS(1059), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1059), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1059), - [anon_sym_CARET] = ACTIONS(1059), + [441] = { + [sym_comment] = STATE(441), + [ts_builtin_sym_end] = ACTIONS(1181), + [anon_sym_export] = ACTIONS(1179), + [anon_sym_alias] = ACTIONS(1179), + [anon_sym_let] = ACTIONS(1179), + [anon_sym_let_DASHenv] = ACTIONS(1179), + [anon_sym_mut] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1179), + [sym_cmd_identifier] = ACTIONS(1179), + [anon_sym_LF] = ACTIONS(1181), + [anon_sym_def] = ACTIONS(1179), + [anon_sym_export_DASHenv] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_use] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_error] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1316), + [anon_sym_loop] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_source] = ACTIONS(1179), + [anon_sym_source_DASHenv] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), + [anon_sym_hide_DASHenv] = ACTIONS(1179), + [anon_sym_overlay] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_where] = ACTIONS(1179), + [anon_sym_STAR_STAR] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_SLASH] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_SLASH_SLASH] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_bit_DASHshl] = ACTIONS(1314), + [anon_sym_bit_DASHshr] = ACTIONS(1314), + [anon_sym_EQ_EQ] = ACTIONS(1306), + [anon_sym_BANG_EQ] = ACTIONS(1306), + [anon_sym_LT2] = ACTIONS(1306), + [anon_sym_LT_EQ] = ACTIONS(1306), + [anon_sym_GT_EQ] = ACTIONS(1306), + [anon_sym_not_DASHin] = ACTIONS(1316), + [anon_sym_starts_DASHwith] = ACTIONS(1316), + [anon_sym_ends_DASHwith] = ACTIONS(1316), + [anon_sym_EQ_TILDE] = ACTIONS(1179), + [anon_sym_BANG_TILDE] = ACTIONS(1179), + [anon_sym_bit_DASHand] = ACTIONS(1179), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_not] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1179), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), + [anon_sym_CARET] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, - [455] = { - [sym_comment] = STATE(455), - [ts_builtin_sym_end] = ACTIONS(1249), - [anon_sym_export] = ACTIONS(1247), - [anon_sym_alias] = ACTIONS(1247), - [anon_sym_let] = ACTIONS(1247), - [anon_sym_let_DASHenv] = ACTIONS(1247), - [anon_sym_mut] = ACTIONS(1247), - [anon_sym_const] = ACTIONS(1247), - [anon_sym_SEMI] = ACTIONS(1247), - [sym_cmd_identifier] = ACTIONS(1247), - [anon_sym_LF] = ACTIONS(1249), - [anon_sym_def] = ACTIONS(1247), - [anon_sym_export_DASHenv] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1247), - [anon_sym_module] = ACTIONS(1247), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_LBRACK] = ACTIONS(1247), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_DOLLAR] = ACTIONS(1247), - [anon_sym_error] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1247), - [anon_sym_break] = ACTIONS(1247), - [anon_sym_continue] = ACTIONS(1247), - [anon_sym_for] = ACTIONS(1247), - [anon_sym_in] = ACTIONS(1247), - [anon_sym_loop] = ACTIONS(1247), - [anon_sym_while] = ACTIONS(1247), - [anon_sym_do] = ACTIONS(1247), - [anon_sym_if] = ACTIONS(1247), - [anon_sym_match] = ACTIONS(1247), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_DOT_DOT] = ACTIONS(1247), - [anon_sym_try] = ACTIONS(1247), - [anon_sym_return] = ACTIONS(1247), - [anon_sym_source] = ACTIONS(1247), - [anon_sym_source_DASHenv] = ACTIONS(1247), - [anon_sym_register] = ACTIONS(1247), - [anon_sym_hide] = ACTIONS(1247), - [anon_sym_hide_DASHenv] = ACTIONS(1247), - [anon_sym_overlay] = ACTIONS(1247), - [anon_sym_as] = ACTIONS(1247), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_where] = ACTIONS(1247), - [anon_sym_STAR_STAR] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_mod] = ACTIONS(1247), - [anon_sym_SLASH_SLASH] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1247), - [anon_sym_bit_DASHshl] = ACTIONS(1247), - [anon_sym_bit_DASHshr] = ACTIONS(1247), - [anon_sym_EQ_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1247), - [anon_sym_LT2] = ACTIONS(1247), - [anon_sym_LT_EQ] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1247), - [anon_sym_not_DASHin] = ACTIONS(1247), - [anon_sym_starts_DASHwith] = ACTIONS(1247), - [anon_sym_ends_DASHwith] = ACTIONS(1247), - [anon_sym_EQ_TILDE] = ACTIONS(1247), - [anon_sym_BANG_TILDE] = ACTIONS(1247), - [anon_sym_bit_DASHand] = ACTIONS(1247), - [anon_sym_bit_DASHxor] = ACTIONS(1247), - [anon_sym_bit_DASHor] = ACTIONS(1247), - [anon_sym_and] = ACTIONS(1247), - [anon_sym_xor] = ACTIONS(1247), - [anon_sym_or] = ACTIONS(1247), - [anon_sym_not] = ACTIONS(1247), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1247), - [anon_sym_DOT_DOT_LT] = ACTIONS(1247), - [anon_sym_null] = ACTIONS(1247), - [anon_sym_true] = ACTIONS(1247), - [anon_sym_false] = ACTIONS(1247), - [aux_sym__val_number_decimal_token1] = ACTIONS(1247), - [aux_sym__val_number_decimal_token2] = ACTIONS(1247), - [anon_sym_DOT2] = ACTIONS(1247), - [aux_sym__val_number_decimal_token3] = ACTIONS(1247), - [aux_sym__val_number_token1] = ACTIONS(1247), - [aux_sym__val_number_token2] = ACTIONS(1247), - [aux_sym__val_number_token3] = ACTIONS(1247), - [aux_sym__val_number_token4] = ACTIONS(1247), - [aux_sym__val_number_token5] = ACTIONS(1247), - [aux_sym__val_number_token6] = ACTIONS(1247), - [anon_sym_0b] = ACTIONS(1247), - [anon_sym_0o] = ACTIONS(1247), - [anon_sym_0x] = ACTIONS(1247), - [sym_val_date] = ACTIONS(1247), - [anon_sym_DQUOTE] = ACTIONS(1247), - [sym__str_single_quotes] = ACTIONS(1247), - [sym__str_back_ticks] = ACTIONS(1247), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1247), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1247), - [anon_sym_CARET] = ACTIONS(1247), - [aux_sym_unquoted_token6] = ACTIONS(1251), + [442] = { + [sym_comment] = STATE(442), + [ts_builtin_sym_end] = ACTIONS(1181), + [anon_sym_export] = ACTIONS(1179), + [anon_sym_alias] = ACTIONS(1179), + [anon_sym_let] = ACTIONS(1179), + [anon_sym_let_DASHenv] = ACTIONS(1179), + [anon_sym_mut] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1179), + [sym_cmd_identifier] = ACTIONS(1179), + [anon_sym_LF] = ACTIONS(1181), + [anon_sym_def] = ACTIONS(1179), + [anon_sym_export_DASHenv] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_use] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_error] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1179), + [anon_sym_loop] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_source] = ACTIONS(1179), + [anon_sym_source_DASHenv] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), + [anon_sym_hide_DASHenv] = ACTIONS(1179), + [anon_sym_overlay] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_where] = ACTIONS(1179), + [anon_sym_STAR_STAR] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_SLASH] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_SLASH_SLASH] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_bit_DASHshl] = ACTIONS(1179), + [anon_sym_bit_DASHshr] = ACTIONS(1179), + [anon_sym_EQ_EQ] = ACTIONS(1179), + [anon_sym_BANG_EQ] = ACTIONS(1179), + [anon_sym_LT2] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1179), + [anon_sym_GT_EQ] = ACTIONS(1179), + [anon_sym_not_DASHin] = ACTIONS(1179), + [anon_sym_starts_DASHwith] = ACTIONS(1179), + [anon_sym_ends_DASHwith] = ACTIONS(1179), + [anon_sym_EQ_TILDE] = ACTIONS(1179), + [anon_sym_BANG_TILDE] = ACTIONS(1179), + [anon_sym_bit_DASHand] = ACTIONS(1179), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_not] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1179), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), + [anon_sym_CARET] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(113), + }, + [443] = { + [sym_comment] = STATE(443), + [ts_builtin_sym_end] = ACTIONS(1181), + [anon_sym_export] = ACTIONS(1179), + [anon_sym_alias] = ACTIONS(1179), + [anon_sym_let] = ACTIONS(1179), + [anon_sym_let_DASHenv] = ACTIONS(1179), + [anon_sym_mut] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1179), + [sym_cmd_identifier] = ACTIONS(1179), + [anon_sym_LF] = ACTIONS(1181), + [anon_sym_def] = ACTIONS(1179), + [anon_sym_export_DASHenv] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_use] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_error] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1179), + [anon_sym_loop] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_source] = ACTIONS(1179), + [anon_sym_source_DASHenv] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), + [anon_sym_hide_DASHenv] = ACTIONS(1179), + [anon_sym_overlay] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1179), + [anon_sym_where] = ACTIONS(1179), + [anon_sym_STAR_STAR] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_SLASH] = ACTIONS(1179), + [anon_sym_mod] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_bit_DASHshl] = ACTIONS(1179), + [anon_sym_bit_DASHshr] = ACTIONS(1179), + [anon_sym_EQ_EQ] = ACTIONS(1179), + [anon_sym_BANG_EQ] = ACTIONS(1179), + [anon_sym_LT2] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1179), + [anon_sym_GT_EQ] = ACTIONS(1179), + [anon_sym_not_DASHin] = ACTIONS(1179), + [anon_sym_starts_DASHwith] = ACTIONS(1179), + [anon_sym_ends_DASHwith] = ACTIONS(1179), + [anon_sym_EQ_TILDE] = ACTIONS(1179), + [anon_sym_BANG_TILDE] = ACTIONS(1179), + [anon_sym_bit_DASHand] = ACTIONS(1179), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_not] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1179), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), + [anon_sym_CARET] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(113), + }, + [444] = { + [sym_comment] = STATE(444), + [ts_builtin_sym_end] = ACTIONS(1181), + [anon_sym_export] = ACTIONS(1179), + [anon_sym_alias] = ACTIONS(1179), + [anon_sym_let] = ACTIONS(1179), + [anon_sym_let_DASHenv] = ACTIONS(1179), + [anon_sym_mut] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1179), + [sym_cmd_identifier] = ACTIONS(1179), + [anon_sym_LF] = ACTIONS(1181), + [anon_sym_def] = ACTIONS(1179), + [anon_sym_export_DASHenv] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_use] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_error] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1179), + [anon_sym_loop] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_source] = ACTIONS(1179), + [anon_sym_source_DASHenv] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), + [anon_sym_hide_DASHenv] = ACTIONS(1179), + [anon_sym_overlay] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_where] = ACTIONS(1179), + [anon_sym_STAR_STAR] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_SLASH] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_SLASH_SLASH] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_bit_DASHshl] = ACTIONS(1314), + [anon_sym_bit_DASHshr] = ACTIONS(1314), + [anon_sym_EQ_EQ] = ACTIONS(1179), + [anon_sym_BANG_EQ] = ACTIONS(1179), + [anon_sym_LT2] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1179), + [anon_sym_GT_EQ] = ACTIONS(1179), + [anon_sym_not_DASHin] = ACTIONS(1179), + [anon_sym_starts_DASHwith] = ACTIONS(1179), + [anon_sym_ends_DASHwith] = ACTIONS(1179), + [anon_sym_EQ_TILDE] = ACTIONS(1179), + [anon_sym_BANG_TILDE] = ACTIONS(1179), + [anon_sym_bit_DASHand] = ACTIONS(1179), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_not] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1179), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), + [anon_sym_CARET] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(113), + }, + [445] = { + [sym_comment] = STATE(445), + [ts_builtin_sym_end] = ACTIONS(1181), + [anon_sym_export] = ACTIONS(1179), + [anon_sym_alias] = ACTIONS(1179), + [anon_sym_let] = ACTIONS(1179), + [anon_sym_let_DASHenv] = ACTIONS(1179), + [anon_sym_mut] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1179), + [sym_cmd_identifier] = ACTIONS(1179), + [anon_sym_LF] = ACTIONS(1181), + [anon_sym_def] = ACTIONS(1179), + [anon_sym_export_DASHenv] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_use] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_error] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1316), + [anon_sym_loop] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_source] = ACTIONS(1179), + [anon_sym_source_DASHenv] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), + [anon_sym_hide_DASHenv] = ACTIONS(1179), + [anon_sym_overlay] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_where] = ACTIONS(1179), + [anon_sym_STAR_STAR] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_SLASH] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_SLASH_SLASH] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_bit_DASHshl] = ACTIONS(1314), + [anon_sym_bit_DASHshr] = ACTIONS(1314), + [anon_sym_EQ_EQ] = ACTIONS(1306), + [anon_sym_BANG_EQ] = ACTIONS(1306), + [anon_sym_LT2] = ACTIONS(1306), + [anon_sym_LT_EQ] = ACTIONS(1306), + [anon_sym_GT_EQ] = ACTIONS(1306), + [anon_sym_not_DASHin] = ACTIONS(1316), + [anon_sym_starts_DASHwith] = ACTIONS(1316), + [anon_sym_ends_DASHwith] = ACTIONS(1316), + [anon_sym_EQ_TILDE] = ACTIONS(1318), + [anon_sym_BANG_TILDE] = ACTIONS(1318), + [anon_sym_bit_DASHand] = ACTIONS(1179), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_not] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1179), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), + [anon_sym_CARET] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(113), + }, + [446] = { + [sym_comment] = STATE(446), + [ts_builtin_sym_end] = ACTIONS(1181), + [anon_sym_export] = ACTIONS(1179), + [anon_sym_alias] = ACTIONS(1179), + [anon_sym_let] = ACTIONS(1179), + [anon_sym_let_DASHenv] = ACTIONS(1179), + [anon_sym_mut] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1179), + [sym_cmd_identifier] = ACTIONS(1179), + [anon_sym_LF] = ACTIONS(1181), + [anon_sym_def] = ACTIONS(1179), + [anon_sym_export_DASHenv] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_use] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_error] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1316), + [anon_sym_loop] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_source] = ACTIONS(1179), + [anon_sym_source_DASHenv] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), + [anon_sym_hide_DASHenv] = ACTIONS(1179), + [anon_sym_overlay] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_where] = ACTIONS(1179), + [anon_sym_STAR_STAR] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_SLASH] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_SLASH_SLASH] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_bit_DASHshl] = ACTIONS(1314), + [anon_sym_bit_DASHshr] = ACTIONS(1314), + [anon_sym_EQ_EQ] = ACTIONS(1306), + [anon_sym_BANG_EQ] = ACTIONS(1306), + [anon_sym_LT2] = ACTIONS(1306), + [anon_sym_LT_EQ] = ACTIONS(1306), + [anon_sym_GT_EQ] = ACTIONS(1306), + [anon_sym_not_DASHin] = ACTIONS(1316), + [anon_sym_starts_DASHwith] = ACTIONS(1316), + [anon_sym_ends_DASHwith] = ACTIONS(1316), + [anon_sym_EQ_TILDE] = ACTIONS(1318), + [anon_sym_BANG_TILDE] = ACTIONS(1318), + [anon_sym_bit_DASHand] = ACTIONS(1320), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_not] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1179), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), + [anon_sym_CARET] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(113), + }, + [447] = { + [sym_comment] = STATE(447), + [ts_builtin_sym_end] = ACTIONS(1181), + [anon_sym_export] = ACTIONS(1179), + [anon_sym_alias] = ACTIONS(1179), + [anon_sym_let] = ACTIONS(1179), + [anon_sym_let_DASHenv] = ACTIONS(1179), + [anon_sym_mut] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1179), + [sym_cmd_identifier] = ACTIONS(1179), + [anon_sym_LF] = ACTIONS(1181), + [anon_sym_def] = ACTIONS(1179), + [anon_sym_export_DASHenv] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_use] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_error] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1316), + [anon_sym_loop] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_source] = ACTIONS(1179), + [anon_sym_source_DASHenv] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), + [anon_sym_hide_DASHenv] = ACTIONS(1179), + [anon_sym_overlay] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_where] = ACTIONS(1179), + [anon_sym_STAR_STAR] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_SLASH] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_SLASH_SLASH] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_bit_DASHshl] = ACTIONS(1314), + [anon_sym_bit_DASHshr] = ACTIONS(1314), + [anon_sym_EQ_EQ] = ACTIONS(1306), + [anon_sym_BANG_EQ] = ACTIONS(1306), + [anon_sym_LT2] = ACTIONS(1306), + [anon_sym_LT_EQ] = ACTIONS(1306), + [anon_sym_GT_EQ] = ACTIONS(1306), + [anon_sym_not_DASHin] = ACTIONS(1316), + [anon_sym_starts_DASHwith] = ACTIONS(1316), + [anon_sym_ends_DASHwith] = ACTIONS(1316), + [anon_sym_EQ_TILDE] = ACTIONS(1318), + [anon_sym_BANG_TILDE] = ACTIONS(1318), + [anon_sym_bit_DASHand] = ACTIONS(1320), + [anon_sym_bit_DASHxor] = ACTIONS(1322), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_not] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1179), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), + [anon_sym_CARET] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(113), + }, + [448] = { + [sym_comment] = STATE(448), + [ts_builtin_sym_end] = ACTIONS(1181), + [anon_sym_export] = ACTIONS(1179), + [anon_sym_alias] = ACTIONS(1179), + [anon_sym_let] = ACTIONS(1179), + [anon_sym_let_DASHenv] = ACTIONS(1179), + [anon_sym_mut] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1179), + [sym_cmd_identifier] = ACTIONS(1179), + [anon_sym_LF] = ACTIONS(1181), + [anon_sym_def] = ACTIONS(1179), + [anon_sym_export_DASHenv] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_use] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_error] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1316), + [anon_sym_loop] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_source] = ACTIONS(1179), + [anon_sym_source_DASHenv] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), + [anon_sym_hide_DASHenv] = ACTIONS(1179), + [anon_sym_overlay] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_where] = ACTIONS(1179), + [anon_sym_STAR_STAR] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_SLASH] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_SLASH_SLASH] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_bit_DASHshl] = ACTIONS(1314), + [anon_sym_bit_DASHshr] = ACTIONS(1314), + [anon_sym_EQ_EQ] = ACTIONS(1306), + [anon_sym_BANG_EQ] = ACTIONS(1306), + [anon_sym_LT2] = ACTIONS(1306), + [anon_sym_LT_EQ] = ACTIONS(1306), + [anon_sym_GT_EQ] = ACTIONS(1306), + [anon_sym_not_DASHin] = ACTIONS(1316), + [anon_sym_starts_DASHwith] = ACTIONS(1316), + [anon_sym_ends_DASHwith] = ACTIONS(1316), + [anon_sym_EQ_TILDE] = ACTIONS(1318), + [anon_sym_BANG_TILDE] = ACTIONS(1318), + [anon_sym_bit_DASHand] = ACTIONS(1320), + [anon_sym_bit_DASHxor] = ACTIONS(1322), + [anon_sym_bit_DASHor] = ACTIONS(1324), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_not] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1179), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), + [anon_sym_CARET] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(113), + }, + [449] = { + [sym_comment] = STATE(449), + [ts_builtin_sym_end] = ACTIONS(1181), + [anon_sym_export] = ACTIONS(1179), + [anon_sym_alias] = ACTIONS(1179), + [anon_sym_let] = ACTIONS(1179), + [anon_sym_let_DASHenv] = ACTIONS(1179), + [anon_sym_mut] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1179), + [sym_cmd_identifier] = ACTIONS(1179), + [anon_sym_LF] = ACTIONS(1181), + [anon_sym_def] = ACTIONS(1179), + [anon_sym_export_DASHenv] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_use] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_error] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1316), + [anon_sym_loop] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_source] = ACTIONS(1179), + [anon_sym_source_DASHenv] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), + [anon_sym_hide_DASHenv] = ACTIONS(1179), + [anon_sym_overlay] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_where] = ACTIONS(1179), + [anon_sym_STAR_STAR] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_SLASH] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_SLASH_SLASH] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_bit_DASHshl] = ACTIONS(1314), + [anon_sym_bit_DASHshr] = ACTIONS(1314), + [anon_sym_EQ_EQ] = ACTIONS(1306), + [anon_sym_BANG_EQ] = ACTIONS(1306), + [anon_sym_LT2] = ACTIONS(1306), + [anon_sym_LT_EQ] = ACTIONS(1306), + [anon_sym_GT_EQ] = ACTIONS(1306), + [anon_sym_not_DASHin] = ACTIONS(1316), + [anon_sym_starts_DASHwith] = ACTIONS(1316), + [anon_sym_ends_DASHwith] = ACTIONS(1316), + [anon_sym_EQ_TILDE] = ACTIONS(1318), + [anon_sym_BANG_TILDE] = ACTIONS(1318), + [anon_sym_bit_DASHand] = ACTIONS(1320), + [anon_sym_bit_DASHxor] = ACTIONS(1322), + [anon_sym_bit_DASHor] = ACTIONS(1324), + [anon_sym_and] = ACTIONS(1326), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_not] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1179), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), + [anon_sym_CARET] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(113), + }, + [450] = { + [sym_comment] = STATE(450), + [ts_builtin_sym_end] = ACTIONS(1181), + [anon_sym_export] = ACTIONS(1179), + [anon_sym_alias] = ACTIONS(1179), + [anon_sym_let] = ACTIONS(1179), + [anon_sym_let_DASHenv] = ACTIONS(1179), + [anon_sym_mut] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1179), + [sym_cmd_identifier] = ACTIONS(1179), + [anon_sym_LF] = ACTIONS(1181), + [anon_sym_def] = ACTIONS(1179), + [anon_sym_export_DASHenv] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_use] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_error] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1316), + [anon_sym_loop] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_source] = ACTIONS(1179), + [anon_sym_source_DASHenv] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), + [anon_sym_hide_DASHenv] = ACTIONS(1179), + [anon_sym_overlay] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_where] = ACTIONS(1179), + [anon_sym_STAR_STAR] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_SLASH] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_SLASH_SLASH] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_bit_DASHshl] = ACTIONS(1314), + [anon_sym_bit_DASHshr] = ACTIONS(1314), + [anon_sym_EQ_EQ] = ACTIONS(1306), + [anon_sym_BANG_EQ] = ACTIONS(1306), + [anon_sym_LT2] = ACTIONS(1306), + [anon_sym_LT_EQ] = ACTIONS(1306), + [anon_sym_GT_EQ] = ACTIONS(1306), + [anon_sym_not_DASHin] = ACTIONS(1316), + [anon_sym_starts_DASHwith] = ACTIONS(1316), + [anon_sym_ends_DASHwith] = ACTIONS(1316), + [anon_sym_EQ_TILDE] = ACTIONS(1318), + [anon_sym_BANG_TILDE] = ACTIONS(1318), + [anon_sym_bit_DASHand] = ACTIONS(1320), + [anon_sym_bit_DASHxor] = ACTIONS(1322), + [anon_sym_bit_DASHor] = ACTIONS(1324), + [anon_sym_and] = ACTIONS(1326), + [anon_sym_xor] = ACTIONS(1328), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_not] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1179), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), + [anon_sym_CARET] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(113), + }, + [451] = { + [sym_comment] = STATE(451), + [ts_builtin_sym_end] = ACTIONS(922), + [anon_sym_export] = ACTIONS(920), + [anon_sym_alias] = ACTIONS(920), + [anon_sym_let] = ACTIONS(920), + [anon_sym_let_DASHenv] = ACTIONS(920), + [anon_sym_mut] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(920), + [sym_cmd_identifier] = ACTIONS(920), + [anon_sym_LF] = ACTIONS(922), + [anon_sym_def] = ACTIONS(920), + [anon_sym_export_DASHenv] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym_module] = ACTIONS(920), + [anon_sym_use] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_error] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_in] = ACTIONS(920), + [anon_sym_loop] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_match] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_try] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_source] = ACTIONS(920), + [anon_sym_source_DASHenv] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_hide] = ACTIONS(920), + [anon_sym_hide_DASHenv] = ACTIONS(920), + [anon_sym_overlay] = ACTIONS(920), + [anon_sym_as] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_where] = ACTIONS(920), + [anon_sym_STAR_STAR] = ACTIONS(920), + [anon_sym_PLUS_PLUS] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_mod] = ACTIONS(920), + [anon_sym_SLASH_SLASH] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_bit_DASHshl] = ACTIONS(920), + [anon_sym_bit_DASHshr] = ACTIONS(920), + [anon_sym_EQ_EQ] = ACTIONS(920), + [anon_sym_BANG_EQ] = ACTIONS(920), + [anon_sym_LT2] = ACTIONS(920), + [anon_sym_LT_EQ] = ACTIONS(920), + [anon_sym_GT_EQ] = ACTIONS(920), + [anon_sym_not_DASHin] = ACTIONS(920), + [anon_sym_starts_DASHwith] = ACTIONS(920), + [anon_sym_ends_DASHwith] = ACTIONS(920), + [anon_sym_EQ_TILDE] = ACTIONS(920), + [anon_sym_BANG_TILDE] = ACTIONS(920), + [anon_sym_bit_DASHand] = ACTIONS(920), + [anon_sym_bit_DASHxor] = ACTIONS(920), + [anon_sym_bit_DASHor] = ACTIONS(920), + [anon_sym_and] = ACTIONS(920), + [anon_sym_xor] = ACTIONS(920), + [anon_sym_or] = ACTIONS(920), + [anon_sym_not] = ACTIONS(920), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [anon_sym_null] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), + [anon_sym_CARET] = ACTIONS(920), + [anon_sym_POUND] = ACTIONS(113), + }, + [452] = { + [sym_comment] = STATE(452), + [ts_builtin_sym_end] = ACTIONS(1209), + [anon_sym_export] = ACTIONS(1139), + [anon_sym_alias] = ACTIONS(1139), + [anon_sym_let] = ACTIONS(1139), + [anon_sym_let_DASHenv] = ACTIONS(1139), + [anon_sym_mut] = ACTIONS(1139), + [anon_sym_const] = ACTIONS(1139), + [anon_sym_SEMI] = ACTIONS(1139), + [sym_cmd_identifier] = ACTIONS(1139), + [anon_sym_LF] = ACTIONS(1209), + [anon_sym_def] = ACTIONS(1139), + [anon_sym_export_DASHenv] = ACTIONS(1139), + [anon_sym_extern] = ACTIONS(1139), + [anon_sym_module] = ACTIONS(1139), + [anon_sym_use] = ACTIONS(1139), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LPAREN] = ACTIONS(1139), + [anon_sym_DOLLAR] = ACTIONS(1139), + [anon_sym_error] = ACTIONS(1139), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_DASH_DASH] = ACTIONS(1139), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_break] = ACTIONS(1139), + [anon_sym_continue] = ACTIONS(1139), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_in] = ACTIONS(1139), + [anon_sym_loop] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1139), + [anon_sym_do] = ACTIONS(1139), + [anon_sym_if] = ACTIONS(1139), + [anon_sym_match] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1139), + [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_try] = ACTIONS(1139), + [anon_sym_return] = ACTIONS(1139), + [anon_sym_source] = ACTIONS(1139), + [anon_sym_source_DASHenv] = ACTIONS(1139), + [anon_sym_register] = ACTIONS(1139), + [anon_sym_hide] = ACTIONS(1139), + [anon_sym_hide_DASHenv] = ACTIONS(1139), + [anon_sym_overlay] = ACTIONS(1139), + [anon_sym_as] = ACTIONS(1139), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_where] = ACTIONS(1139), + [anon_sym_STAR_STAR] = ACTIONS(1139), + [anon_sym_PLUS_PLUS] = ACTIONS(1139), + [anon_sym_SLASH] = ACTIONS(1139), + [anon_sym_mod] = ACTIONS(1139), + [anon_sym_SLASH_SLASH] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_bit_DASHshl] = ACTIONS(1139), + [anon_sym_bit_DASHshr] = ACTIONS(1139), + [anon_sym_EQ_EQ] = ACTIONS(1139), + [anon_sym_BANG_EQ] = ACTIONS(1139), + [anon_sym_LT2] = ACTIONS(1139), + [anon_sym_LT_EQ] = ACTIONS(1139), + [anon_sym_GT_EQ] = ACTIONS(1139), + [anon_sym_not_DASHin] = ACTIONS(1139), + [anon_sym_starts_DASHwith] = ACTIONS(1139), + [anon_sym_ends_DASHwith] = ACTIONS(1139), + [anon_sym_EQ_TILDE] = ACTIONS(1139), + [anon_sym_BANG_TILDE] = ACTIONS(1139), + [anon_sym_bit_DASHand] = ACTIONS(1139), + [anon_sym_bit_DASHxor] = ACTIONS(1139), + [anon_sym_bit_DASHor] = ACTIONS(1139), + [anon_sym_and] = ACTIONS(1139), + [anon_sym_xor] = ACTIONS(1139), + [anon_sym_or] = ACTIONS(1139), + [anon_sym_not] = ACTIONS(1139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1139), + [anon_sym_DOT_DOT_LT] = ACTIONS(1139), + [anon_sym_null] = ACTIONS(1139), + [anon_sym_true] = ACTIONS(1139), + [anon_sym_false] = ACTIONS(1139), + [aux_sym__val_number_decimal_token1] = ACTIONS(1139), + [aux_sym__val_number_decimal_token2] = ACTIONS(1139), + [anon_sym_DOT2] = ACTIONS(1139), + [aux_sym__val_number_decimal_token3] = ACTIONS(1139), + [aux_sym__val_number_token1] = ACTIONS(1139), + [aux_sym__val_number_token2] = ACTIONS(1139), + [aux_sym__val_number_token3] = ACTIONS(1139), + [aux_sym__val_number_token4] = ACTIONS(1139), + [aux_sym__val_number_token5] = ACTIONS(1139), + [aux_sym__val_number_token6] = ACTIONS(1139), + [anon_sym_0b] = ACTIONS(1139), + [anon_sym_0o] = ACTIONS(1139), + [anon_sym_0x] = ACTIONS(1139), + [sym_val_date] = ACTIONS(1139), + [anon_sym_DQUOTE] = ACTIONS(1139), + [sym__str_single_quotes] = ACTIONS(1139), + [sym__str_back_ticks] = ACTIONS(1139), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1139), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1139), + [anon_sym_CARET] = ACTIONS(1139), + [anon_sym_POUND] = ACTIONS(113), + }, + [453] = { + [sym_comment] = STATE(453), + [ts_builtin_sym_end] = ACTIONS(1213), + [anon_sym_export] = ACTIONS(1211), + [anon_sym_alias] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(1211), + [anon_sym_let_DASHenv] = ACTIONS(1211), + [anon_sym_mut] = ACTIONS(1211), + [anon_sym_const] = ACTIONS(1211), + [anon_sym_SEMI] = ACTIONS(1211), + [sym_cmd_identifier] = ACTIONS(1211), + [anon_sym_LF] = ACTIONS(1213), + [anon_sym_def] = ACTIONS(1211), + [anon_sym_export_DASHenv] = ACTIONS(1211), + [anon_sym_extern] = ACTIONS(1211), + [anon_sym_module] = ACTIONS(1211), + [anon_sym_use] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(1211), + [anon_sym_DOLLAR] = ACTIONS(1211), + [anon_sym_error] = ACTIONS(1211), + [anon_sym_GT] = ACTIONS(1211), + [anon_sym_DASH_DASH] = ACTIONS(1211), + [anon_sym_DASH] = ACTIONS(1211), + [anon_sym_break] = ACTIONS(1211), + [anon_sym_continue] = ACTIONS(1211), + [anon_sym_for] = ACTIONS(1211), + [anon_sym_in] = ACTIONS(1211), + [anon_sym_loop] = ACTIONS(1211), + [anon_sym_while] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(1211), + [anon_sym_if] = ACTIONS(1211), + [anon_sym_match] = ACTIONS(1211), + [anon_sym_LBRACE] = ACTIONS(1211), + [anon_sym_DOT_DOT] = ACTIONS(1211), + [anon_sym_try] = ACTIONS(1211), + [anon_sym_return] = ACTIONS(1211), + [anon_sym_source] = ACTIONS(1211), + [anon_sym_source_DASHenv] = ACTIONS(1211), + [anon_sym_register] = ACTIONS(1211), + [anon_sym_hide] = ACTIONS(1211), + [anon_sym_hide_DASHenv] = ACTIONS(1211), + [anon_sym_overlay] = ACTIONS(1211), + [anon_sym_as] = ACTIONS(1211), + [anon_sym_STAR] = ACTIONS(1211), + [anon_sym_where] = ACTIONS(1211), + [anon_sym_STAR_STAR] = ACTIONS(1211), + [anon_sym_PLUS_PLUS] = ACTIONS(1211), + [anon_sym_SLASH] = ACTIONS(1211), + [anon_sym_mod] = ACTIONS(1211), + [anon_sym_SLASH_SLASH] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1211), + [anon_sym_bit_DASHshl] = ACTIONS(1211), + [anon_sym_bit_DASHshr] = ACTIONS(1211), + [anon_sym_EQ_EQ] = ACTIONS(1211), + [anon_sym_BANG_EQ] = ACTIONS(1211), + [anon_sym_LT2] = ACTIONS(1211), + [anon_sym_LT_EQ] = ACTIONS(1211), + [anon_sym_GT_EQ] = ACTIONS(1211), + [anon_sym_not_DASHin] = ACTIONS(1211), + [anon_sym_starts_DASHwith] = ACTIONS(1211), + [anon_sym_ends_DASHwith] = ACTIONS(1211), + [anon_sym_EQ_TILDE] = ACTIONS(1211), + [anon_sym_BANG_TILDE] = ACTIONS(1211), + [anon_sym_bit_DASHand] = ACTIONS(1211), + [anon_sym_bit_DASHxor] = ACTIONS(1211), + [anon_sym_bit_DASHor] = ACTIONS(1211), + [anon_sym_and] = ACTIONS(1211), + [anon_sym_xor] = ACTIONS(1211), + [anon_sym_or] = ACTIONS(1211), + [anon_sym_not] = ACTIONS(1211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1211), + [anon_sym_DOT_DOT_LT] = ACTIONS(1211), + [anon_sym_null] = ACTIONS(1211), + [anon_sym_true] = ACTIONS(1211), + [anon_sym_false] = ACTIONS(1211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1211), + [aux_sym__val_number_decimal_token2] = ACTIONS(1211), + [anon_sym_DOT2] = ACTIONS(1211), + [aux_sym__val_number_decimal_token3] = ACTIONS(1211), + [aux_sym__val_number_token1] = ACTIONS(1211), + [aux_sym__val_number_token2] = ACTIONS(1211), + [aux_sym__val_number_token3] = ACTIONS(1211), + [aux_sym__val_number_token4] = ACTIONS(1211), + [aux_sym__val_number_token5] = ACTIONS(1211), + [aux_sym__val_number_token6] = ACTIONS(1211), + [anon_sym_0b] = ACTIONS(1211), + [anon_sym_0o] = ACTIONS(1211), + [anon_sym_0x] = ACTIONS(1211), + [sym_val_date] = ACTIONS(1211), + [anon_sym_DQUOTE] = ACTIONS(1211), + [sym__str_single_quotes] = ACTIONS(1211), + [sym__str_back_ticks] = ACTIONS(1211), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1211), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1211), + [anon_sym_CARET] = ACTIONS(1211), + [anon_sym_POUND] = ACTIONS(113), + }, + [454] = { + [sym_comment] = STATE(454), + [ts_builtin_sym_end] = ACTIONS(1217), + [anon_sym_export] = ACTIONS(1215), + [anon_sym_alias] = ACTIONS(1215), + [anon_sym_let] = ACTIONS(1215), + [anon_sym_let_DASHenv] = ACTIONS(1215), + [anon_sym_mut] = ACTIONS(1215), + [anon_sym_const] = ACTIONS(1215), + [anon_sym_SEMI] = ACTIONS(1215), + [sym_cmd_identifier] = ACTIONS(1215), + [anon_sym_LF] = ACTIONS(1217), + [anon_sym_def] = ACTIONS(1215), + [anon_sym_export_DASHenv] = ACTIONS(1215), + [anon_sym_extern] = ACTIONS(1215), + [anon_sym_module] = ACTIONS(1215), + [anon_sym_use] = ACTIONS(1215), + [anon_sym_LBRACK] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1215), + [anon_sym_DOLLAR] = ACTIONS(1215), + [anon_sym_error] = ACTIONS(1215), + [anon_sym_GT] = ACTIONS(1215), + [anon_sym_DASH_DASH] = ACTIONS(1215), + [anon_sym_DASH] = ACTIONS(1215), + [anon_sym_break] = ACTIONS(1215), + [anon_sym_continue] = ACTIONS(1215), + [anon_sym_for] = ACTIONS(1215), + [anon_sym_in] = ACTIONS(1215), + [anon_sym_loop] = ACTIONS(1215), + [anon_sym_while] = ACTIONS(1215), + [anon_sym_do] = ACTIONS(1215), + [anon_sym_if] = ACTIONS(1215), + [anon_sym_match] = ACTIONS(1215), + [anon_sym_LBRACE] = ACTIONS(1215), + [anon_sym_DOT_DOT] = ACTIONS(1215), + [anon_sym_try] = ACTIONS(1215), + [anon_sym_return] = ACTIONS(1215), + [anon_sym_source] = ACTIONS(1215), + [anon_sym_source_DASHenv] = ACTIONS(1215), + [anon_sym_register] = ACTIONS(1215), + [anon_sym_hide] = ACTIONS(1215), + [anon_sym_hide_DASHenv] = ACTIONS(1215), + [anon_sym_overlay] = ACTIONS(1215), + [anon_sym_as] = ACTIONS(1215), + [anon_sym_STAR] = ACTIONS(1215), + [anon_sym_where] = ACTIONS(1215), + [anon_sym_STAR_STAR] = ACTIONS(1215), + [anon_sym_PLUS_PLUS] = ACTIONS(1215), + [anon_sym_SLASH] = ACTIONS(1215), + [anon_sym_mod] = ACTIONS(1215), + [anon_sym_SLASH_SLASH] = ACTIONS(1215), + [anon_sym_PLUS] = ACTIONS(1215), + [anon_sym_bit_DASHshl] = ACTIONS(1215), + [anon_sym_bit_DASHshr] = ACTIONS(1215), + [anon_sym_EQ_EQ] = ACTIONS(1215), + [anon_sym_BANG_EQ] = ACTIONS(1215), + [anon_sym_LT2] = ACTIONS(1215), + [anon_sym_LT_EQ] = ACTIONS(1215), + [anon_sym_GT_EQ] = ACTIONS(1215), + [anon_sym_not_DASHin] = ACTIONS(1215), + [anon_sym_starts_DASHwith] = ACTIONS(1215), + [anon_sym_ends_DASHwith] = ACTIONS(1215), + [anon_sym_EQ_TILDE] = ACTIONS(1215), + [anon_sym_BANG_TILDE] = ACTIONS(1215), + [anon_sym_bit_DASHand] = ACTIONS(1215), + [anon_sym_bit_DASHxor] = ACTIONS(1215), + [anon_sym_bit_DASHor] = ACTIONS(1215), + [anon_sym_and] = ACTIONS(1215), + [anon_sym_xor] = ACTIONS(1215), + [anon_sym_or] = ACTIONS(1215), + [anon_sym_not] = ACTIONS(1215), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1215), + [anon_sym_DOT_DOT_LT] = ACTIONS(1215), + [anon_sym_null] = ACTIONS(1215), + [anon_sym_true] = ACTIONS(1215), + [anon_sym_false] = ACTIONS(1215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1215), + [aux_sym__val_number_decimal_token2] = ACTIONS(1215), + [anon_sym_DOT2] = ACTIONS(1215), + [aux_sym__val_number_decimal_token3] = ACTIONS(1215), + [aux_sym__val_number_token1] = ACTIONS(1215), + [aux_sym__val_number_token2] = ACTIONS(1215), + [aux_sym__val_number_token3] = ACTIONS(1215), + [aux_sym__val_number_token4] = ACTIONS(1215), + [aux_sym__val_number_token5] = ACTIONS(1215), + [aux_sym__val_number_token6] = ACTIONS(1215), + [anon_sym_0b] = ACTIONS(1215), + [anon_sym_0o] = ACTIONS(1215), + [anon_sym_0x] = ACTIONS(1215), + [sym_val_date] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1215), + [sym__str_single_quotes] = ACTIONS(1215), + [sym__str_back_ticks] = ACTIONS(1215), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1215), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), + [anon_sym_CARET] = ACTIONS(1215), + [anon_sym_POUND] = ACTIONS(113), + }, + [455] = { + [sym_comment] = STATE(455), + [ts_builtin_sym_end] = ACTIONS(940), + [anon_sym_export] = ACTIONS(938), + [anon_sym_alias] = ACTIONS(938), + [anon_sym_let] = ACTIONS(938), + [anon_sym_let_DASHenv] = ACTIONS(938), + [anon_sym_mut] = ACTIONS(938), + [anon_sym_const] = ACTIONS(938), + [anon_sym_SEMI] = ACTIONS(938), + [sym_cmd_identifier] = ACTIONS(938), + [anon_sym_LF] = ACTIONS(940), + [anon_sym_def] = ACTIONS(938), + [anon_sym_export_DASHenv] = ACTIONS(938), + [anon_sym_extern] = ACTIONS(938), + [anon_sym_module] = ACTIONS(938), + [anon_sym_use] = ACTIONS(938), + [anon_sym_LBRACK] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(938), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_error] = ACTIONS(938), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_break] = ACTIONS(938), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_for] = ACTIONS(938), + [anon_sym_in] = ACTIONS(938), + [anon_sym_loop] = ACTIONS(938), + [anon_sym_while] = ACTIONS(938), + [anon_sym_do] = ACTIONS(938), + [anon_sym_if] = ACTIONS(938), + [anon_sym_match] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_try] = ACTIONS(938), + [anon_sym_return] = ACTIONS(938), + [anon_sym_source] = ACTIONS(938), + [anon_sym_source_DASHenv] = ACTIONS(938), + [anon_sym_register] = ACTIONS(938), + [anon_sym_hide] = ACTIONS(938), + [anon_sym_hide_DASHenv] = ACTIONS(938), + [anon_sym_overlay] = ACTIONS(938), + [anon_sym_as] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_where] = ACTIONS(938), + [anon_sym_STAR_STAR] = ACTIONS(938), + [anon_sym_PLUS_PLUS] = ACTIONS(938), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(938), + [anon_sym_SLASH_SLASH] = ACTIONS(938), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_bit_DASHshl] = ACTIONS(938), + [anon_sym_bit_DASHshr] = ACTIONS(938), + [anon_sym_EQ_EQ] = ACTIONS(938), + [anon_sym_BANG_EQ] = ACTIONS(938), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(938), + [anon_sym_GT_EQ] = ACTIONS(938), + [anon_sym_not_DASHin] = ACTIONS(938), + [anon_sym_starts_DASHwith] = ACTIONS(938), + [anon_sym_ends_DASHwith] = ACTIONS(938), + [anon_sym_EQ_TILDE] = ACTIONS(938), + [anon_sym_BANG_TILDE] = ACTIONS(938), + [anon_sym_bit_DASHand] = ACTIONS(938), + [anon_sym_bit_DASHxor] = ACTIONS(938), + [anon_sym_bit_DASHor] = ACTIONS(938), + [anon_sym_and] = ACTIONS(938), + [anon_sym_xor] = ACTIONS(938), + [anon_sym_or] = ACTIONS(938), + [anon_sym_not] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ] = ACTIONS(938), + [anon_sym_DOT_DOT_LT] = ACTIONS(938), + [anon_sym_null] = ACTIONS(938), + [anon_sym_true] = ACTIONS(938), + [anon_sym_false] = ACTIONS(938), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(938), + [anon_sym_DOT2] = ACTIONS(938), + [aux_sym__val_number_decimal_token3] = ACTIONS(938), + [aux_sym__val_number_token1] = ACTIONS(938), + [aux_sym__val_number_token2] = ACTIONS(938), + [aux_sym__val_number_token3] = ACTIONS(938), + [aux_sym__val_number_token4] = ACTIONS(938), + [aux_sym__val_number_token5] = ACTIONS(938), + [aux_sym__val_number_token6] = ACTIONS(938), + [anon_sym_0b] = ACTIONS(938), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym__str_single_quotes] = ACTIONS(938), + [sym__str_back_ticks] = ACTIONS(938), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(938), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(938), + [anon_sym_CARET] = ACTIONS(938), [anon_sym_POUND] = ACTIONS(113), }, [456] = { - [sym_cell_path] = STATE(742), - [sym_path] = STATE(526), [sym_comment] = STATE(456), - [ts_builtin_sym_end] = ACTIONS(1188), - [anon_sym_export] = ACTIONS(1186), - [anon_sym_alias] = ACTIONS(1186), - [anon_sym_let] = ACTIONS(1186), - [anon_sym_let_DASHenv] = ACTIONS(1186), - [anon_sym_mut] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1186), - [sym_cmd_identifier] = ACTIONS(1186), - [anon_sym_LF] = ACTIONS(1188), - [anon_sym_def] = ACTIONS(1186), - [anon_sym_export_DASHenv] = ACTIONS(1186), - [anon_sym_extern] = ACTIONS(1186), - [anon_sym_module] = ACTIONS(1186), - [anon_sym_use] = ACTIONS(1186), - [anon_sym_LBRACK] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(1186), - [anon_sym_DOLLAR] = ACTIONS(1186), - [anon_sym_error] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1186), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1186), - [anon_sym_in] = ACTIONS(1186), - [anon_sym_loop] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_do] = ACTIONS(1186), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_match] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_DOT_DOT] = ACTIONS(1186), - [anon_sym_try] = ACTIONS(1186), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_source] = ACTIONS(1186), - [anon_sym_source_DASHenv] = ACTIONS(1186), - [anon_sym_register] = ACTIONS(1186), - [anon_sym_hide] = ACTIONS(1186), - [anon_sym_hide_DASHenv] = ACTIONS(1186), - [anon_sym_overlay] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_where] = ACTIONS(1186), - [anon_sym_STAR_STAR] = ACTIONS(1186), - [anon_sym_PLUS_PLUS] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_mod] = ACTIONS(1186), - [anon_sym_SLASH_SLASH] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_bit_DASHshl] = ACTIONS(1186), - [anon_sym_bit_DASHshr] = ACTIONS(1186), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_LT2] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1186), - [anon_sym_GT_EQ] = ACTIONS(1186), - [anon_sym_not_DASHin] = ACTIONS(1186), - [anon_sym_starts_DASHwith] = ACTIONS(1186), - [anon_sym_ends_DASHwith] = ACTIONS(1186), - [anon_sym_EQ_TILDE] = ACTIONS(1186), - [anon_sym_BANG_TILDE] = ACTIONS(1186), - [anon_sym_bit_DASHand] = ACTIONS(1186), - [anon_sym_bit_DASHxor] = ACTIONS(1186), - [anon_sym_bit_DASHor] = ACTIONS(1186), - [anon_sym_and] = ACTIONS(1186), - [anon_sym_xor] = ACTIONS(1186), - [anon_sym_or] = ACTIONS(1186), - [anon_sym_not] = ACTIONS(1186), - [anon_sym_DOT] = ACTIONS(1306), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1186), - [anon_sym_DOT_DOT_LT] = ACTIONS(1186), - [anon_sym_null] = ACTIONS(1186), - [anon_sym_true] = ACTIONS(1186), - [anon_sym_false] = ACTIONS(1186), - [aux_sym__val_number_decimal_token1] = ACTIONS(1186), - [aux_sym__val_number_decimal_token2] = ACTIONS(1186), - [anon_sym_DOT2] = ACTIONS(1186), - [aux_sym__val_number_decimal_token3] = ACTIONS(1186), - [aux_sym__val_number_token1] = ACTIONS(1186), - [aux_sym__val_number_token2] = ACTIONS(1186), - [aux_sym__val_number_token3] = ACTIONS(1186), - [aux_sym__val_number_token4] = ACTIONS(1186), - [aux_sym__val_number_token5] = ACTIONS(1186), - [aux_sym__val_number_token6] = ACTIONS(1186), - [anon_sym_0b] = ACTIONS(1186), - [anon_sym_0o] = ACTIONS(1186), - [anon_sym_0x] = ACTIONS(1186), - [sym_val_date] = ACTIONS(1186), - [anon_sym_DQUOTE] = ACTIONS(1186), - [sym__str_single_quotes] = ACTIONS(1186), - [sym__str_back_ticks] = ACTIONS(1186), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1186), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1186), - [anon_sym_CARET] = ACTIONS(1186), + [ts_builtin_sym_end] = ACTIONS(1091), + [anon_sym_export] = ACTIONS(1089), + [anon_sym_alias] = ACTIONS(1089), + [anon_sym_let] = ACTIONS(1089), + [anon_sym_let_DASHenv] = ACTIONS(1089), + [anon_sym_mut] = ACTIONS(1089), + [anon_sym_const] = ACTIONS(1089), + [anon_sym_SEMI] = ACTIONS(1089), + [sym_cmd_identifier] = ACTIONS(1089), + [anon_sym_LF] = ACTIONS(1091), + [anon_sym_def] = ACTIONS(1089), + [anon_sym_export_DASHenv] = ACTIONS(1089), + [anon_sym_extern] = ACTIONS(1089), + [anon_sym_module] = ACTIONS(1089), + [anon_sym_use] = ACTIONS(1089), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1089), + [anon_sym_error] = ACTIONS(1089), + [anon_sym_GT] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_DASH] = ACTIONS(1089), + [anon_sym_break] = ACTIONS(1089), + [anon_sym_continue] = ACTIONS(1089), + [anon_sym_for] = ACTIONS(1089), + [anon_sym_in] = ACTIONS(1089), + [anon_sym_loop] = ACTIONS(1089), + [anon_sym_while] = ACTIONS(1089), + [anon_sym_do] = ACTIONS(1089), + [anon_sym_if] = ACTIONS(1089), + [anon_sym_match] = ACTIONS(1089), + [anon_sym_LBRACE] = ACTIONS(1089), + [anon_sym_DOT_DOT] = ACTIONS(1089), + [anon_sym_try] = ACTIONS(1089), + [anon_sym_return] = ACTIONS(1089), + [anon_sym_source] = ACTIONS(1089), + [anon_sym_source_DASHenv] = ACTIONS(1089), + [anon_sym_register] = ACTIONS(1089), + [anon_sym_hide] = ACTIONS(1089), + [anon_sym_hide_DASHenv] = ACTIONS(1089), + [anon_sym_overlay] = ACTIONS(1089), + [anon_sym_as] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_where] = ACTIONS(1089), + [anon_sym_STAR_STAR] = ACTIONS(1089), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_SLASH] = ACTIONS(1089), + [anon_sym_mod] = ACTIONS(1089), + [anon_sym_SLASH_SLASH] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1089), + [anon_sym_bit_DASHshl] = ACTIONS(1089), + [anon_sym_bit_DASHshr] = ACTIONS(1089), + [anon_sym_EQ_EQ] = ACTIONS(1089), + [anon_sym_BANG_EQ] = ACTIONS(1089), + [anon_sym_LT2] = ACTIONS(1089), + [anon_sym_LT_EQ] = ACTIONS(1089), + [anon_sym_GT_EQ] = ACTIONS(1089), + [anon_sym_not_DASHin] = ACTIONS(1089), + [anon_sym_starts_DASHwith] = ACTIONS(1089), + [anon_sym_ends_DASHwith] = ACTIONS(1089), + [anon_sym_EQ_TILDE] = ACTIONS(1089), + [anon_sym_BANG_TILDE] = ACTIONS(1089), + [anon_sym_bit_DASHand] = ACTIONS(1089), + [anon_sym_bit_DASHxor] = ACTIONS(1089), + [anon_sym_bit_DASHor] = ACTIONS(1089), + [anon_sym_and] = ACTIONS(1089), + [anon_sym_xor] = ACTIONS(1089), + [anon_sym_or] = ACTIONS(1089), + [anon_sym_not] = ACTIONS(1089), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_DOT_DOT_LT] = ACTIONS(1089), + [anon_sym_null] = ACTIONS(1089), + [anon_sym_true] = ACTIONS(1089), + [anon_sym_false] = ACTIONS(1089), + [aux_sym__val_number_decimal_token1] = ACTIONS(1089), + [aux_sym__val_number_decimal_token2] = ACTIONS(1089), + [anon_sym_DOT2] = ACTIONS(1089), + [aux_sym__val_number_decimal_token3] = ACTIONS(1089), + [aux_sym__val_number_token1] = ACTIONS(1089), + [aux_sym__val_number_token2] = ACTIONS(1089), + [aux_sym__val_number_token3] = ACTIONS(1089), + [aux_sym__val_number_token4] = ACTIONS(1089), + [aux_sym__val_number_token5] = ACTIONS(1089), + [aux_sym__val_number_token6] = ACTIONS(1089), + [anon_sym_0b] = ACTIONS(1089), + [anon_sym_0o] = ACTIONS(1089), + [anon_sym_0x] = ACTIONS(1089), + [sym_val_date] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1089), + [sym__str_single_quotes] = ACTIONS(1089), + [sym__str_back_ticks] = ACTIONS(1089), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1089), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1089), + [anon_sym_CARET] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(113), }, [457] = { [sym_comment] = STATE(457), + [ts_builtin_sym_end] = ACTIONS(1227), + [anon_sym_export] = ACTIONS(1225), + [anon_sym_alias] = ACTIONS(1225), + [anon_sym_let] = ACTIONS(1225), + [anon_sym_let_DASHenv] = ACTIONS(1225), + [anon_sym_mut] = ACTIONS(1225), + [anon_sym_const] = ACTIONS(1225), + [anon_sym_SEMI] = ACTIONS(1225), + [sym_cmd_identifier] = ACTIONS(1225), + [anon_sym_LF] = ACTIONS(1227), + [anon_sym_def] = ACTIONS(1225), + [anon_sym_export_DASHenv] = ACTIONS(1225), + [anon_sym_extern] = ACTIONS(1225), + [anon_sym_module] = ACTIONS(1225), + [anon_sym_use] = ACTIONS(1225), + [anon_sym_LBRACK] = ACTIONS(1225), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_DOLLAR] = ACTIONS(1225), + [anon_sym_error] = ACTIONS(1225), + [anon_sym_GT] = ACTIONS(1225), + [anon_sym_DASH_DASH] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_break] = ACTIONS(1225), + [anon_sym_continue] = ACTIONS(1225), + [anon_sym_for] = ACTIONS(1225), + [anon_sym_in] = ACTIONS(1225), + [anon_sym_loop] = ACTIONS(1225), + [anon_sym_while] = ACTIONS(1225), + [anon_sym_do] = ACTIONS(1225), + [anon_sym_if] = ACTIONS(1225), + [anon_sym_match] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_DOT_DOT] = ACTIONS(1225), + [anon_sym_try] = ACTIONS(1225), + [anon_sym_return] = ACTIONS(1225), + [anon_sym_source] = ACTIONS(1225), + [anon_sym_source_DASHenv] = ACTIONS(1225), + [anon_sym_register] = ACTIONS(1225), + [anon_sym_hide] = ACTIONS(1225), + [anon_sym_hide_DASHenv] = ACTIONS(1225), + [anon_sym_overlay] = ACTIONS(1225), + [anon_sym_as] = ACTIONS(1225), + [anon_sym_STAR] = ACTIONS(1225), + [anon_sym_where] = ACTIONS(1225), + [anon_sym_STAR_STAR] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(1225), + [anon_sym_mod] = ACTIONS(1225), + [anon_sym_SLASH_SLASH] = ACTIONS(1225), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_bit_DASHshl] = ACTIONS(1225), + [anon_sym_bit_DASHshr] = ACTIONS(1225), + [anon_sym_EQ_EQ] = ACTIONS(1225), + [anon_sym_BANG_EQ] = ACTIONS(1225), + [anon_sym_LT2] = ACTIONS(1225), + [anon_sym_LT_EQ] = ACTIONS(1225), + [anon_sym_GT_EQ] = ACTIONS(1225), + [anon_sym_not_DASHin] = ACTIONS(1225), + [anon_sym_starts_DASHwith] = ACTIONS(1225), + [anon_sym_ends_DASHwith] = ACTIONS(1225), + [anon_sym_EQ_TILDE] = ACTIONS(1225), + [anon_sym_BANG_TILDE] = ACTIONS(1225), + [anon_sym_bit_DASHand] = ACTIONS(1225), + [anon_sym_bit_DASHxor] = ACTIONS(1225), + [anon_sym_bit_DASHor] = ACTIONS(1225), + [anon_sym_and] = ACTIONS(1225), + [anon_sym_xor] = ACTIONS(1225), + [anon_sym_or] = ACTIONS(1225), + [anon_sym_not] = ACTIONS(1225), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1225), + [anon_sym_DOT_DOT_LT] = ACTIONS(1225), + [anon_sym_null] = ACTIONS(1225), + [anon_sym_true] = ACTIONS(1225), + [anon_sym_false] = ACTIONS(1225), + [aux_sym__val_number_decimal_token1] = ACTIONS(1225), + [aux_sym__val_number_decimal_token2] = ACTIONS(1225), + [anon_sym_DOT2] = ACTIONS(1225), + [aux_sym__val_number_decimal_token3] = ACTIONS(1225), + [aux_sym__val_number_token1] = ACTIONS(1225), + [aux_sym__val_number_token2] = ACTIONS(1225), + [aux_sym__val_number_token3] = ACTIONS(1225), + [aux_sym__val_number_token4] = ACTIONS(1225), + [aux_sym__val_number_token5] = ACTIONS(1225), + [aux_sym__val_number_token6] = ACTIONS(1225), + [anon_sym_0b] = ACTIONS(1225), + [anon_sym_0o] = ACTIONS(1225), + [anon_sym_0x] = ACTIONS(1225), + [sym_val_date] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1225), + [sym__str_single_quotes] = ACTIONS(1225), + [sym__str_back_ticks] = ACTIONS(1225), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1225), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1225), + [anon_sym_CARET] = ACTIONS(1225), + [anon_sym_POUND] = ACTIONS(113), + }, + [458] = { + [sym_comment] = STATE(458), + [ts_builtin_sym_end] = ACTIONS(1231), + [anon_sym_export] = ACTIONS(1229), + [anon_sym_alias] = ACTIONS(1229), + [anon_sym_let] = ACTIONS(1229), + [anon_sym_let_DASHenv] = ACTIONS(1229), + [anon_sym_mut] = ACTIONS(1229), + [anon_sym_const] = ACTIONS(1229), + [anon_sym_SEMI] = ACTIONS(1229), + [sym_cmd_identifier] = ACTIONS(1229), + [anon_sym_LF] = ACTIONS(1231), + [anon_sym_def] = ACTIONS(1229), + [anon_sym_export_DASHenv] = ACTIONS(1229), + [anon_sym_extern] = ACTIONS(1229), + [anon_sym_module] = ACTIONS(1229), + [anon_sym_use] = ACTIONS(1229), + [anon_sym_LBRACK] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_DOLLAR] = ACTIONS(1229), + [anon_sym_error] = ACTIONS(1229), + [anon_sym_GT] = ACTIONS(1229), + [anon_sym_DASH_DASH] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_break] = ACTIONS(1229), + [anon_sym_continue] = ACTIONS(1229), + [anon_sym_for] = ACTIONS(1229), + [anon_sym_in] = ACTIONS(1229), + [anon_sym_loop] = ACTIONS(1229), + [anon_sym_while] = ACTIONS(1229), + [anon_sym_do] = ACTIONS(1229), + [anon_sym_if] = ACTIONS(1229), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1229), + [anon_sym_DOT_DOT] = ACTIONS(1229), + [anon_sym_try] = ACTIONS(1229), + [anon_sym_return] = ACTIONS(1229), + [anon_sym_source] = ACTIONS(1229), + [anon_sym_source_DASHenv] = ACTIONS(1229), + [anon_sym_register] = ACTIONS(1229), + [anon_sym_hide] = ACTIONS(1229), + [anon_sym_hide_DASHenv] = ACTIONS(1229), + [anon_sym_overlay] = ACTIONS(1229), + [anon_sym_as] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1229), + [anon_sym_where] = ACTIONS(1229), + [anon_sym_STAR_STAR] = ACTIONS(1229), + [anon_sym_PLUS_PLUS] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1229), + [anon_sym_mod] = ACTIONS(1229), + [anon_sym_SLASH_SLASH] = ACTIONS(1229), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_bit_DASHshl] = ACTIONS(1229), + [anon_sym_bit_DASHshr] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1229), + [anon_sym_LT2] = ACTIONS(1229), + [anon_sym_LT_EQ] = ACTIONS(1229), + [anon_sym_GT_EQ] = ACTIONS(1229), + [anon_sym_not_DASHin] = ACTIONS(1229), + [anon_sym_starts_DASHwith] = ACTIONS(1229), + [anon_sym_ends_DASHwith] = ACTIONS(1229), + [anon_sym_EQ_TILDE] = ACTIONS(1229), + [anon_sym_BANG_TILDE] = ACTIONS(1229), + [anon_sym_bit_DASHand] = ACTIONS(1229), + [anon_sym_bit_DASHxor] = ACTIONS(1229), + [anon_sym_bit_DASHor] = ACTIONS(1229), + [anon_sym_and] = ACTIONS(1229), + [anon_sym_xor] = ACTIONS(1229), + [anon_sym_or] = ACTIONS(1229), + [anon_sym_not] = ACTIONS(1229), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1229), + [anon_sym_DOT_DOT_LT] = ACTIONS(1229), + [anon_sym_null] = ACTIONS(1229), + [anon_sym_true] = ACTIONS(1229), + [anon_sym_false] = ACTIONS(1229), + [aux_sym__val_number_decimal_token1] = ACTIONS(1229), + [aux_sym__val_number_decimal_token2] = ACTIONS(1229), + [anon_sym_DOT2] = ACTIONS(1229), + [aux_sym__val_number_decimal_token3] = ACTIONS(1229), + [aux_sym__val_number_token1] = ACTIONS(1229), + [aux_sym__val_number_token2] = ACTIONS(1229), + [aux_sym__val_number_token3] = ACTIONS(1229), + [aux_sym__val_number_token4] = ACTIONS(1229), + [aux_sym__val_number_token5] = ACTIONS(1229), + [aux_sym__val_number_token6] = ACTIONS(1229), + [anon_sym_0b] = ACTIONS(1229), + [anon_sym_0o] = ACTIONS(1229), + [anon_sym_0x] = ACTIONS(1229), + [sym_val_date] = ACTIONS(1229), + [anon_sym_DQUOTE] = ACTIONS(1229), + [sym__str_single_quotes] = ACTIONS(1229), + [sym__str_back_ticks] = ACTIONS(1229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_POUND] = ACTIONS(113), + }, + [459] = { + [sym_comment] = STATE(459), + [ts_builtin_sym_end] = ACTIONS(1235), + [anon_sym_export] = ACTIONS(1233), + [anon_sym_alias] = ACTIONS(1233), + [anon_sym_let] = ACTIONS(1233), + [anon_sym_let_DASHenv] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1233), + [sym_cmd_identifier] = ACTIONS(1233), + [anon_sym_LF] = ACTIONS(1235), + [anon_sym_def] = ACTIONS(1233), + [anon_sym_export_DASHenv] = ACTIONS(1233), + [anon_sym_extern] = ACTIONS(1233), + [anon_sym_module] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(1233), + [anon_sym_DOLLAR] = ACTIONS(1233), + [anon_sym_error] = ACTIONS(1233), + [anon_sym_GT] = ACTIONS(1233), + [anon_sym_DASH_DASH] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_break] = ACTIONS(1233), + [anon_sym_continue] = ACTIONS(1233), + [anon_sym_for] = ACTIONS(1233), + [anon_sym_in] = ACTIONS(1233), + [anon_sym_loop] = ACTIONS(1233), + [anon_sym_while] = ACTIONS(1233), + [anon_sym_do] = ACTIONS(1233), + [anon_sym_if] = ACTIONS(1233), + [anon_sym_match] = ACTIONS(1233), + [anon_sym_LBRACE] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1233), + [anon_sym_try] = ACTIONS(1233), + [anon_sym_return] = ACTIONS(1233), + [anon_sym_source] = ACTIONS(1233), + [anon_sym_source_DASHenv] = ACTIONS(1233), + [anon_sym_register] = ACTIONS(1233), + [anon_sym_hide] = ACTIONS(1233), + [anon_sym_hide_DASHenv] = ACTIONS(1233), + [anon_sym_overlay] = ACTIONS(1233), + [anon_sym_as] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1233), + [anon_sym_where] = ACTIONS(1233), + [anon_sym_STAR_STAR] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1233), + [anon_sym_SLASH] = ACTIONS(1233), + [anon_sym_mod] = ACTIONS(1233), + [anon_sym_SLASH_SLASH] = ACTIONS(1233), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_bit_DASHshl] = ACTIONS(1233), + [anon_sym_bit_DASHshr] = ACTIONS(1233), + [anon_sym_EQ_EQ] = ACTIONS(1233), + [anon_sym_BANG_EQ] = ACTIONS(1233), + [anon_sym_LT2] = ACTIONS(1233), + [anon_sym_LT_EQ] = ACTIONS(1233), + [anon_sym_GT_EQ] = ACTIONS(1233), + [anon_sym_not_DASHin] = ACTIONS(1233), + [anon_sym_starts_DASHwith] = ACTIONS(1233), + [anon_sym_ends_DASHwith] = ACTIONS(1233), + [anon_sym_EQ_TILDE] = ACTIONS(1233), + [anon_sym_BANG_TILDE] = ACTIONS(1233), + [anon_sym_bit_DASHand] = ACTIONS(1233), + [anon_sym_bit_DASHxor] = ACTIONS(1233), + [anon_sym_bit_DASHor] = ACTIONS(1233), + [anon_sym_and] = ACTIONS(1233), + [anon_sym_xor] = ACTIONS(1233), + [anon_sym_or] = ACTIONS(1233), + [anon_sym_not] = ACTIONS(1233), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1233), + [anon_sym_DOT_DOT_LT] = ACTIONS(1233), + [anon_sym_null] = ACTIONS(1233), + [anon_sym_true] = ACTIONS(1233), + [anon_sym_false] = ACTIONS(1233), + [aux_sym__val_number_decimal_token1] = ACTIONS(1233), + [aux_sym__val_number_decimal_token2] = ACTIONS(1233), + [anon_sym_DOT2] = ACTIONS(1233), + [aux_sym__val_number_decimal_token3] = ACTIONS(1233), + [aux_sym__val_number_token1] = ACTIONS(1233), + [aux_sym__val_number_token2] = ACTIONS(1233), + [aux_sym__val_number_token3] = ACTIONS(1233), + [aux_sym__val_number_token4] = ACTIONS(1233), + [aux_sym__val_number_token5] = ACTIONS(1233), + [aux_sym__val_number_token6] = ACTIONS(1233), + [anon_sym_0b] = ACTIONS(1233), + [anon_sym_0o] = ACTIONS(1233), + [anon_sym_0x] = ACTIONS(1233), + [sym_val_date] = ACTIONS(1233), + [anon_sym_DQUOTE] = ACTIONS(1233), + [sym__str_single_quotes] = ACTIONS(1233), + [sym__str_back_ticks] = ACTIONS(1233), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1233), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1233), + [anon_sym_CARET] = ACTIONS(1233), + [anon_sym_POUND] = ACTIONS(113), + }, + [460] = { + [sym_comment] = STATE(460), + [ts_builtin_sym_end] = ACTIONS(1095), + [anon_sym_export] = ACTIONS(1093), + [anon_sym_alias] = ACTIONS(1093), + [anon_sym_let] = ACTIONS(1093), + [anon_sym_let_DASHenv] = ACTIONS(1093), + [anon_sym_mut] = ACTIONS(1093), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_SEMI] = ACTIONS(1093), + [sym_cmd_identifier] = ACTIONS(1093), + [anon_sym_LF] = ACTIONS(1095), + [anon_sym_def] = ACTIONS(1093), + [anon_sym_export_DASHenv] = ACTIONS(1093), + [anon_sym_extern] = ACTIONS(1093), + [anon_sym_module] = ACTIONS(1093), + [anon_sym_use] = ACTIONS(1093), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_LPAREN] = ACTIONS(1093), + [anon_sym_DOLLAR] = ACTIONS(1093), + [anon_sym_error] = ACTIONS(1093), + [anon_sym_GT] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_break] = ACTIONS(1093), + [anon_sym_continue] = ACTIONS(1093), + [anon_sym_for] = ACTIONS(1093), + [anon_sym_in] = ACTIONS(1093), + [anon_sym_loop] = ACTIONS(1093), + [anon_sym_while] = ACTIONS(1093), + [anon_sym_do] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1093), + [anon_sym_match] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1093), + [anon_sym_DOT_DOT] = ACTIONS(1093), + [anon_sym_try] = ACTIONS(1093), + [anon_sym_return] = ACTIONS(1093), + [anon_sym_source] = ACTIONS(1093), + [anon_sym_source_DASHenv] = ACTIONS(1093), + [anon_sym_register] = ACTIONS(1093), + [anon_sym_hide] = ACTIONS(1093), + [anon_sym_hide_DASHenv] = ACTIONS(1093), + [anon_sym_overlay] = ACTIONS(1093), + [anon_sym_as] = ACTIONS(1093), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_where] = ACTIONS(1093), + [anon_sym_STAR_STAR] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1093), + [anon_sym_SLASH] = ACTIONS(1093), + [anon_sym_mod] = ACTIONS(1093), + [anon_sym_SLASH_SLASH] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_bit_DASHshl] = ACTIONS(1093), + [anon_sym_bit_DASHshr] = ACTIONS(1093), + [anon_sym_EQ_EQ] = ACTIONS(1093), + [anon_sym_BANG_EQ] = ACTIONS(1093), + [anon_sym_LT2] = ACTIONS(1093), + [anon_sym_LT_EQ] = ACTIONS(1093), + [anon_sym_GT_EQ] = ACTIONS(1093), + [anon_sym_not_DASHin] = ACTIONS(1093), + [anon_sym_starts_DASHwith] = ACTIONS(1093), + [anon_sym_ends_DASHwith] = ACTIONS(1093), + [anon_sym_EQ_TILDE] = ACTIONS(1093), + [anon_sym_BANG_TILDE] = ACTIONS(1093), + [anon_sym_bit_DASHand] = ACTIONS(1093), + [anon_sym_bit_DASHxor] = ACTIONS(1093), + [anon_sym_bit_DASHor] = ACTIONS(1093), + [anon_sym_and] = ACTIONS(1093), + [anon_sym_xor] = ACTIONS(1093), + [anon_sym_or] = ACTIONS(1093), + [anon_sym_not] = ACTIONS(1093), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1093), + [anon_sym_DOT_DOT_LT] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1093), + [anon_sym_true] = ACTIONS(1093), + [anon_sym_false] = ACTIONS(1093), + [aux_sym__val_number_decimal_token1] = ACTIONS(1093), + [aux_sym__val_number_decimal_token2] = ACTIONS(1093), + [anon_sym_DOT2] = ACTIONS(1093), + [aux_sym__val_number_decimal_token3] = ACTIONS(1093), + [aux_sym__val_number_token1] = ACTIONS(1093), + [aux_sym__val_number_token2] = ACTIONS(1093), + [aux_sym__val_number_token3] = ACTIONS(1093), + [aux_sym__val_number_token4] = ACTIONS(1093), + [aux_sym__val_number_token5] = ACTIONS(1093), + [aux_sym__val_number_token6] = ACTIONS(1093), + [anon_sym_0b] = ACTIONS(1093), + [anon_sym_0o] = ACTIONS(1093), + [anon_sym_0x] = ACTIONS(1093), + [sym_val_date] = ACTIONS(1093), + [anon_sym_DQUOTE] = ACTIONS(1093), + [sym__str_single_quotes] = ACTIONS(1093), + [sym__str_back_ticks] = ACTIONS(1093), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1093), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1093), + [anon_sym_CARET] = ACTIONS(1093), + [anon_sym_POUND] = ACTIONS(113), + }, + [461] = { + [sym_comment] = STATE(461), + [ts_builtin_sym_end] = ACTIONS(1239), + [anon_sym_export] = ACTIONS(1237), + [anon_sym_alias] = ACTIONS(1237), + [anon_sym_let] = ACTIONS(1237), + [anon_sym_let_DASHenv] = ACTIONS(1237), + [anon_sym_mut] = ACTIONS(1237), + [anon_sym_const] = ACTIONS(1237), + [anon_sym_SEMI] = ACTIONS(1237), + [sym_cmd_identifier] = ACTIONS(1237), + [anon_sym_LF] = ACTIONS(1239), + [anon_sym_def] = ACTIONS(1237), + [anon_sym_export_DASHenv] = ACTIONS(1237), + [anon_sym_extern] = ACTIONS(1237), + [anon_sym_module] = ACTIONS(1237), + [anon_sym_use] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(1237), + [anon_sym_LPAREN] = ACTIONS(1237), + [anon_sym_DOLLAR] = ACTIONS(1237), + [anon_sym_error] = ACTIONS(1237), + [anon_sym_GT] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), + [anon_sym_DASH] = ACTIONS(1237), + [anon_sym_break] = ACTIONS(1237), + [anon_sym_continue] = ACTIONS(1237), + [anon_sym_for] = ACTIONS(1237), + [anon_sym_in] = ACTIONS(1237), + [anon_sym_loop] = ACTIONS(1237), + [anon_sym_while] = ACTIONS(1237), + [anon_sym_do] = ACTIONS(1237), + [anon_sym_if] = ACTIONS(1237), + [anon_sym_match] = ACTIONS(1237), + [anon_sym_LBRACE] = ACTIONS(1237), + [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_try] = ACTIONS(1237), + [anon_sym_return] = ACTIONS(1237), + [anon_sym_source] = ACTIONS(1237), + [anon_sym_source_DASHenv] = ACTIONS(1237), + [anon_sym_register] = ACTIONS(1237), + [anon_sym_hide] = ACTIONS(1237), + [anon_sym_hide_DASHenv] = ACTIONS(1237), + [anon_sym_overlay] = ACTIONS(1237), + [anon_sym_as] = ACTIONS(1237), + [anon_sym_STAR] = ACTIONS(1237), + [anon_sym_where] = ACTIONS(1237), + [anon_sym_STAR_STAR] = ACTIONS(1237), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_SLASH] = ACTIONS(1237), + [anon_sym_mod] = ACTIONS(1237), + [anon_sym_SLASH_SLASH] = ACTIONS(1237), + [anon_sym_PLUS] = ACTIONS(1237), + [anon_sym_bit_DASHshl] = ACTIONS(1237), + [anon_sym_bit_DASHshr] = ACTIONS(1237), + [anon_sym_EQ_EQ] = ACTIONS(1237), + [anon_sym_BANG_EQ] = ACTIONS(1237), + [anon_sym_LT2] = ACTIONS(1237), + [anon_sym_LT_EQ] = ACTIONS(1237), + [anon_sym_GT_EQ] = ACTIONS(1237), + [anon_sym_not_DASHin] = ACTIONS(1237), + [anon_sym_starts_DASHwith] = ACTIONS(1237), + [anon_sym_ends_DASHwith] = ACTIONS(1237), + [anon_sym_EQ_TILDE] = ACTIONS(1237), + [anon_sym_BANG_TILDE] = ACTIONS(1237), + [anon_sym_bit_DASHand] = ACTIONS(1237), + [anon_sym_bit_DASHxor] = ACTIONS(1237), + [anon_sym_bit_DASHor] = ACTIONS(1237), + [anon_sym_and] = ACTIONS(1237), + [anon_sym_xor] = ACTIONS(1237), + [anon_sym_or] = ACTIONS(1237), + [anon_sym_not] = ACTIONS(1237), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1237), + [anon_sym_DOT_DOT_LT] = ACTIONS(1237), + [anon_sym_null] = ACTIONS(1237), + [anon_sym_true] = ACTIONS(1237), + [anon_sym_false] = ACTIONS(1237), + [aux_sym__val_number_decimal_token1] = ACTIONS(1237), + [aux_sym__val_number_decimal_token2] = ACTIONS(1237), + [anon_sym_DOT2] = ACTIONS(1237), + [aux_sym__val_number_decimal_token3] = ACTIONS(1237), + [aux_sym__val_number_token1] = ACTIONS(1237), + [aux_sym__val_number_token2] = ACTIONS(1237), + [aux_sym__val_number_token3] = ACTIONS(1237), + [aux_sym__val_number_token4] = ACTIONS(1237), + [aux_sym__val_number_token5] = ACTIONS(1237), + [aux_sym__val_number_token6] = ACTIONS(1237), + [anon_sym_0b] = ACTIONS(1237), + [anon_sym_0o] = ACTIONS(1237), + [anon_sym_0x] = ACTIONS(1237), + [sym_val_date] = ACTIONS(1237), + [anon_sym_DQUOTE] = ACTIONS(1237), + [sym__str_single_quotes] = ACTIONS(1237), + [sym__str_back_ticks] = ACTIONS(1237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1237), + [anon_sym_CARET] = ACTIONS(1237), + [anon_sym_POUND] = ACTIONS(113), + }, + [462] = { + [sym_comment] = STATE(462), + [ts_builtin_sym_end] = ACTIONS(1243), + [anon_sym_export] = ACTIONS(1241), + [anon_sym_alias] = ACTIONS(1241), + [anon_sym_let] = ACTIONS(1241), + [anon_sym_let_DASHenv] = ACTIONS(1241), + [anon_sym_mut] = ACTIONS(1241), + [anon_sym_const] = ACTIONS(1241), + [anon_sym_SEMI] = ACTIONS(1241), + [sym_cmd_identifier] = ACTIONS(1241), + [anon_sym_LF] = ACTIONS(1243), + [anon_sym_def] = ACTIONS(1241), + [anon_sym_export_DASHenv] = ACTIONS(1241), + [anon_sym_extern] = ACTIONS(1241), + [anon_sym_module] = ACTIONS(1241), + [anon_sym_use] = ACTIONS(1241), + [anon_sym_LBRACK] = ACTIONS(1241), + [anon_sym_LPAREN] = ACTIONS(1241), + [anon_sym_DOLLAR] = ACTIONS(1241), + [anon_sym_error] = ACTIONS(1241), + [anon_sym_GT] = ACTIONS(1241), + [anon_sym_DASH_DASH] = ACTIONS(1241), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_break] = ACTIONS(1241), + [anon_sym_continue] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_in] = ACTIONS(1241), + [anon_sym_loop] = ACTIONS(1241), + [anon_sym_while] = ACTIONS(1241), + [anon_sym_do] = ACTIONS(1241), + [anon_sym_if] = ACTIONS(1241), + [anon_sym_match] = ACTIONS(1241), + [anon_sym_LBRACE] = ACTIONS(1241), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_try] = ACTIONS(1241), + [anon_sym_return] = ACTIONS(1241), + [anon_sym_source] = ACTIONS(1241), + [anon_sym_source_DASHenv] = ACTIONS(1241), + [anon_sym_register] = ACTIONS(1241), + [anon_sym_hide] = ACTIONS(1241), + [anon_sym_hide_DASHenv] = ACTIONS(1241), + [anon_sym_overlay] = ACTIONS(1241), + [anon_sym_as] = ACTIONS(1241), + [anon_sym_STAR] = ACTIONS(1241), + [anon_sym_where] = ACTIONS(1241), + [anon_sym_STAR_STAR] = ACTIONS(1241), + [anon_sym_PLUS_PLUS] = ACTIONS(1241), + [anon_sym_SLASH] = ACTIONS(1241), + [anon_sym_mod] = ACTIONS(1241), + [anon_sym_SLASH_SLASH] = ACTIONS(1241), + [anon_sym_PLUS] = ACTIONS(1241), + [anon_sym_bit_DASHshl] = ACTIONS(1241), + [anon_sym_bit_DASHshr] = ACTIONS(1241), + [anon_sym_EQ_EQ] = ACTIONS(1241), + [anon_sym_BANG_EQ] = ACTIONS(1241), + [anon_sym_LT2] = ACTIONS(1241), + [anon_sym_LT_EQ] = ACTIONS(1241), + [anon_sym_GT_EQ] = ACTIONS(1241), + [anon_sym_not_DASHin] = ACTIONS(1241), + [anon_sym_starts_DASHwith] = ACTIONS(1241), + [anon_sym_ends_DASHwith] = ACTIONS(1241), + [anon_sym_EQ_TILDE] = ACTIONS(1241), + [anon_sym_BANG_TILDE] = ACTIONS(1241), + [anon_sym_bit_DASHand] = ACTIONS(1241), + [anon_sym_bit_DASHxor] = ACTIONS(1241), + [anon_sym_bit_DASHor] = ACTIONS(1241), + [anon_sym_and] = ACTIONS(1241), + [anon_sym_xor] = ACTIONS(1241), + [anon_sym_or] = ACTIONS(1241), + [anon_sym_not] = ACTIONS(1241), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1241), + [anon_sym_DOT_DOT_LT] = ACTIONS(1241), + [anon_sym_null] = ACTIONS(1241), + [anon_sym_true] = ACTIONS(1241), + [anon_sym_false] = ACTIONS(1241), + [aux_sym__val_number_decimal_token1] = ACTIONS(1241), + [aux_sym__val_number_decimal_token2] = ACTIONS(1241), + [anon_sym_DOT2] = ACTIONS(1241), + [aux_sym__val_number_decimal_token3] = ACTIONS(1241), + [aux_sym__val_number_token1] = ACTIONS(1241), + [aux_sym__val_number_token2] = ACTIONS(1241), + [aux_sym__val_number_token3] = ACTIONS(1241), + [aux_sym__val_number_token4] = ACTIONS(1241), + [aux_sym__val_number_token5] = ACTIONS(1241), + [aux_sym__val_number_token6] = ACTIONS(1241), + [anon_sym_0b] = ACTIONS(1241), + [anon_sym_0o] = ACTIONS(1241), + [anon_sym_0x] = ACTIONS(1241), + [sym_val_date] = ACTIONS(1241), + [anon_sym_DQUOTE] = ACTIONS(1241), + [sym__str_single_quotes] = ACTIONS(1241), + [sym__str_back_ticks] = ACTIONS(1241), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1241), + [anon_sym_CARET] = ACTIONS(1241), + [anon_sym_POUND] = ACTIONS(113), + }, + [463] = { + [sym_comment] = STATE(463), + [ts_builtin_sym_end] = ACTIONS(1247), + [anon_sym_export] = ACTIONS(1245), + [anon_sym_alias] = ACTIONS(1245), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_let_DASHenv] = ACTIONS(1245), + [anon_sym_mut] = ACTIONS(1245), + [anon_sym_const] = ACTIONS(1245), + [anon_sym_SEMI] = ACTIONS(1245), + [sym_cmd_identifier] = ACTIONS(1245), + [anon_sym_LF] = ACTIONS(1247), + [anon_sym_def] = ACTIONS(1245), + [anon_sym_export_DASHenv] = ACTIONS(1245), + [anon_sym_extern] = ACTIONS(1245), + [anon_sym_module] = ACTIONS(1245), + [anon_sym_use] = ACTIONS(1245), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_DOLLAR] = ACTIONS(1245), + [anon_sym_error] = ACTIONS(1245), + [anon_sym_GT] = ACTIONS(1245), + [anon_sym_DASH_DASH] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_break] = ACTIONS(1245), + [anon_sym_continue] = ACTIONS(1245), + [anon_sym_for] = ACTIONS(1245), + [anon_sym_in] = ACTIONS(1245), + [anon_sym_loop] = ACTIONS(1245), + [anon_sym_while] = ACTIONS(1245), + [anon_sym_do] = ACTIONS(1245), + [anon_sym_if] = ACTIONS(1245), + [anon_sym_match] = ACTIONS(1245), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_DOT_DOT] = ACTIONS(1245), + [anon_sym_try] = ACTIONS(1245), + [anon_sym_return] = ACTIONS(1245), + [anon_sym_source] = ACTIONS(1245), + [anon_sym_source_DASHenv] = ACTIONS(1245), + [anon_sym_register] = ACTIONS(1245), + [anon_sym_hide] = ACTIONS(1245), + [anon_sym_hide_DASHenv] = ACTIONS(1245), + [anon_sym_overlay] = ACTIONS(1245), + [anon_sym_as] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(1245), + [anon_sym_where] = ACTIONS(1245), + [anon_sym_STAR_STAR] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(1245), + [anon_sym_mod] = ACTIONS(1245), + [anon_sym_SLASH_SLASH] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_bit_DASHshl] = ACTIONS(1245), + [anon_sym_bit_DASHshr] = ACTIONS(1245), + [anon_sym_EQ_EQ] = ACTIONS(1245), + [anon_sym_BANG_EQ] = ACTIONS(1245), + [anon_sym_LT2] = ACTIONS(1245), + [anon_sym_LT_EQ] = ACTIONS(1245), + [anon_sym_GT_EQ] = ACTIONS(1245), + [anon_sym_not_DASHin] = ACTIONS(1245), + [anon_sym_starts_DASHwith] = ACTIONS(1245), + [anon_sym_ends_DASHwith] = ACTIONS(1245), + [anon_sym_EQ_TILDE] = ACTIONS(1245), + [anon_sym_BANG_TILDE] = ACTIONS(1245), + [anon_sym_bit_DASHand] = ACTIONS(1245), + [anon_sym_bit_DASHxor] = ACTIONS(1245), + [anon_sym_bit_DASHor] = ACTIONS(1245), + [anon_sym_and] = ACTIONS(1245), + [anon_sym_xor] = ACTIONS(1245), + [anon_sym_or] = ACTIONS(1245), + [anon_sym_not] = ACTIONS(1245), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1245), + [anon_sym_DOT_DOT_LT] = ACTIONS(1245), + [anon_sym_null] = ACTIONS(1245), + [anon_sym_true] = ACTIONS(1245), + [anon_sym_false] = ACTIONS(1245), + [aux_sym__val_number_decimal_token1] = ACTIONS(1245), + [aux_sym__val_number_decimal_token2] = ACTIONS(1245), + [anon_sym_DOT2] = ACTIONS(1245), + [aux_sym__val_number_decimal_token3] = ACTIONS(1245), + [aux_sym__val_number_token1] = ACTIONS(1245), + [aux_sym__val_number_token2] = ACTIONS(1245), + [aux_sym__val_number_token3] = ACTIONS(1245), + [aux_sym__val_number_token4] = ACTIONS(1245), + [aux_sym__val_number_token5] = ACTIONS(1245), + [aux_sym__val_number_token6] = ACTIONS(1245), + [anon_sym_0b] = ACTIONS(1245), + [anon_sym_0o] = ACTIONS(1245), + [anon_sym_0x] = ACTIONS(1245), + [sym_val_date] = ACTIONS(1245), + [anon_sym_DQUOTE] = ACTIONS(1245), + [sym__str_single_quotes] = ACTIONS(1245), + [sym__str_back_ticks] = ACTIONS(1245), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1245), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1245), + [anon_sym_CARET] = ACTIONS(1245), + [anon_sym_POUND] = ACTIONS(113), + }, + [464] = { + [sym_comment] = STATE(464), + [ts_builtin_sym_end] = ACTIONS(1251), + [anon_sym_export] = ACTIONS(1249), + [anon_sym_alias] = ACTIONS(1249), + [anon_sym_let] = ACTIONS(1249), + [anon_sym_let_DASHenv] = ACTIONS(1249), + [anon_sym_mut] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1249), + [sym_cmd_identifier] = ACTIONS(1249), + [anon_sym_LF] = ACTIONS(1251), + [anon_sym_def] = ACTIONS(1249), + [anon_sym_export_DASHenv] = ACTIONS(1249), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_module] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1249), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_DOLLAR] = ACTIONS(1249), + [anon_sym_error] = ACTIONS(1249), + [anon_sym_GT] = ACTIONS(1249), + [anon_sym_DASH_DASH] = ACTIONS(1249), + [anon_sym_DASH] = ACTIONS(1249), + [anon_sym_break] = ACTIONS(1249), + [anon_sym_continue] = ACTIONS(1249), + [anon_sym_for] = ACTIONS(1249), + [anon_sym_in] = ACTIONS(1249), + [anon_sym_loop] = ACTIONS(1249), + [anon_sym_while] = ACTIONS(1249), + [anon_sym_do] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1249), + [anon_sym_match] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_DOT_DOT] = ACTIONS(1249), + [anon_sym_try] = ACTIONS(1249), + [anon_sym_return] = ACTIONS(1249), + [anon_sym_source] = ACTIONS(1249), + [anon_sym_source_DASHenv] = ACTIONS(1249), + [anon_sym_register] = ACTIONS(1249), + [anon_sym_hide] = ACTIONS(1249), + [anon_sym_hide_DASHenv] = ACTIONS(1249), + [anon_sym_overlay] = ACTIONS(1249), + [anon_sym_as] = ACTIONS(1249), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_where] = ACTIONS(1249), + [anon_sym_STAR_STAR] = ACTIONS(1249), + [anon_sym_PLUS_PLUS] = ACTIONS(1249), + [anon_sym_SLASH] = ACTIONS(1249), + [anon_sym_mod] = ACTIONS(1249), + [anon_sym_SLASH_SLASH] = ACTIONS(1249), + [anon_sym_PLUS] = ACTIONS(1249), + [anon_sym_bit_DASHshl] = ACTIONS(1249), + [anon_sym_bit_DASHshr] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1249), + [anon_sym_BANG_EQ] = ACTIONS(1249), + [anon_sym_LT2] = ACTIONS(1249), + [anon_sym_LT_EQ] = ACTIONS(1249), + [anon_sym_GT_EQ] = ACTIONS(1249), + [anon_sym_not_DASHin] = ACTIONS(1249), + [anon_sym_starts_DASHwith] = ACTIONS(1249), + [anon_sym_ends_DASHwith] = ACTIONS(1249), + [anon_sym_EQ_TILDE] = ACTIONS(1249), + [anon_sym_BANG_TILDE] = ACTIONS(1249), + [anon_sym_bit_DASHand] = ACTIONS(1249), + [anon_sym_bit_DASHxor] = ACTIONS(1249), + [anon_sym_bit_DASHor] = ACTIONS(1249), + [anon_sym_and] = ACTIONS(1249), + [anon_sym_xor] = ACTIONS(1249), + [anon_sym_or] = ACTIONS(1249), + [anon_sym_not] = ACTIONS(1249), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1249), + [anon_sym_DOT_DOT_LT] = ACTIONS(1249), + [anon_sym_null] = ACTIONS(1249), + [anon_sym_true] = ACTIONS(1249), + [anon_sym_false] = ACTIONS(1249), + [aux_sym__val_number_decimal_token1] = ACTIONS(1249), + [aux_sym__val_number_decimal_token2] = ACTIONS(1249), + [anon_sym_DOT2] = ACTIONS(1249), + [aux_sym__val_number_decimal_token3] = ACTIONS(1249), + [aux_sym__val_number_token1] = ACTIONS(1249), + [aux_sym__val_number_token2] = ACTIONS(1249), + [aux_sym__val_number_token3] = ACTIONS(1249), + [aux_sym__val_number_token4] = ACTIONS(1249), + [aux_sym__val_number_token5] = ACTIONS(1249), + [aux_sym__val_number_token6] = ACTIONS(1249), + [anon_sym_0b] = ACTIONS(1249), + [anon_sym_0o] = ACTIONS(1249), + [anon_sym_0x] = ACTIONS(1249), + [sym_val_date] = ACTIONS(1249), + [anon_sym_DQUOTE] = ACTIONS(1249), + [sym__str_single_quotes] = ACTIONS(1249), + [sym__str_back_ticks] = ACTIONS(1249), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1249), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1249), + [anon_sym_CARET] = ACTIONS(1249), + [anon_sym_POUND] = ACTIONS(113), + }, + [465] = { + [sym_comment] = STATE(465), [ts_builtin_sym_end] = ACTIONS(1255), [anon_sym_export] = ACTIONS(1253), [anon_sym_alias] = ACTIONS(1253), @@ -145521,6863 +143206,5237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1253), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1253), [anon_sym_CARET] = ACTIONS(1253), - [aux_sym_unquoted_token6] = ACTIONS(1257), - [anon_sym_POUND] = ACTIONS(113), - }, - [458] = { - [sym_comment] = STATE(458), - [ts_builtin_sym_end] = ACTIONS(1275), - [anon_sym_export] = ACTIONS(1273), - [anon_sym_alias] = ACTIONS(1273), - [anon_sym_let] = ACTIONS(1273), - [anon_sym_let_DASHenv] = ACTIONS(1273), - [anon_sym_mut] = ACTIONS(1273), - [anon_sym_const] = ACTIONS(1273), - [anon_sym_SEMI] = ACTIONS(1273), - [sym_cmd_identifier] = ACTIONS(1273), - [anon_sym_LF] = ACTIONS(1275), - [anon_sym_def] = ACTIONS(1273), - [anon_sym_export_DASHenv] = ACTIONS(1273), - [anon_sym_extern] = ACTIONS(1273), - [anon_sym_module] = ACTIONS(1273), - [anon_sym_use] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1273), - [anon_sym_LPAREN] = ACTIONS(1273), - [anon_sym_DOLLAR] = ACTIONS(1273), - [anon_sym_error] = ACTIONS(1273), - [anon_sym_GT] = ACTIONS(1273), - [anon_sym_DASH_DASH] = ACTIONS(1273), - [anon_sym_DASH] = ACTIONS(1273), - [anon_sym_break] = ACTIONS(1273), - [anon_sym_continue] = ACTIONS(1273), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_in] = ACTIONS(1273), - [anon_sym_loop] = ACTIONS(1273), - [anon_sym_while] = ACTIONS(1273), - [anon_sym_do] = ACTIONS(1273), - [anon_sym_if] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_try] = ACTIONS(1273), - [anon_sym_return] = ACTIONS(1273), - [anon_sym_source] = ACTIONS(1273), - [anon_sym_source_DASHenv] = ACTIONS(1273), - [anon_sym_register] = ACTIONS(1273), - [anon_sym_hide] = ACTIONS(1273), - [anon_sym_hide_DASHenv] = ACTIONS(1273), - [anon_sym_overlay] = ACTIONS(1273), - [anon_sym_as] = ACTIONS(1273), - [anon_sym_STAR] = ACTIONS(1273), - [anon_sym_where] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1273), - [anon_sym_PLUS_PLUS] = ACTIONS(1273), - [anon_sym_SLASH] = ACTIONS(1273), - [anon_sym_mod] = ACTIONS(1273), - [anon_sym_SLASH_SLASH] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(1273), - [anon_sym_bit_DASHshl] = ACTIONS(1273), - [anon_sym_bit_DASHshr] = ACTIONS(1273), - [anon_sym_EQ_EQ] = ACTIONS(1273), - [anon_sym_BANG_EQ] = ACTIONS(1273), - [anon_sym_LT2] = ACTIONS(1273), - [anon_sym_LT_EQ] = ACTIONS(1273), - [anon_sym_GT_EQ] = ACTIONS(1273), - [anon_sym_not_DASHin] = ACTIONS(1273), - [anon_sym_starts_DASHwith] = ACTIONS(1273), - [anon_sym_ends_DASHwith] = ACTIONS(1273), - [anon_sym_EQ_TILDE] = ACTIONS(1273), - [anon_sym_BANG_TILDE] = ACTIONS(1273), - [anon_sym_bit_DASHand] = ACTIONS(1273), - [anon_sym_bit_DASHxor] = ACTIONS(1273), - [anon_sym_bit_DASHor] = ACTIONS(1273), - [anon_sym_and] = ACTIONS(1273), - [anon_sym_xor] = ACTIONS(1273), - [anon_sym_or] = ACTIONS(1273), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1273), - [anon_sym_DOT_DOT_LT] = ACTIONS(1273), - [anon_sym_null] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1273), - [anon_sym_false] = ACTIONS(1273), - [aux_sym__val_number_decimal_token1] = ACTIONS(1273), - [aux_sym__val_number_decimal_token2] = ACTIONS(1273), - [anon_sym_DOT2] = ACTIONS(1273), - [aux_sym__val_number_decimal_token3] = ACTIONS(1273), - [aux_sym__val_number_token1] = ACTIONS(1273), - [aux_sym__val_number_token2] = ACTIONS(1273), - [aux_sym__val_number_token3] = ACTIONS(1273), - [aux_sym__val_number_token4] = ACTIONS(1273), - [aux_sym__val_number_token5] = ACTIONS(1273), - [aux_sym__val_number_token6] = ACTIONS(1273), - [anon_sym_0b] = ACTIONS(1273), - [anon_sym_0o] = ACTIONS(1273), - [anon_sym_0x] = ACTIONS(1273), - [sym_val_date] = ACTIONS(1273), - [anon_sym_DQUOTE] = ACTIONS(1273), - [sym__str_single_quotes] = ACTIONS(1273), - [sym__str_back_ticks] = ACTIONS(1273), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1273), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1273), - [anon_sym_CARET] = ACTIONS(1273), - [aux_sym_unquoted_token6] = ACTIONS(1257), - [anon_sym_POUND] = ACTIONS(113), - }, - [459] = { - [sym_comment] = STATE(459), - [anon_sym_export] = ACTIONS(1308), - [anon_sym_alias] = ACTIONS(1308), - [anon_sym_let] = ACTIONS(1308), - [anon_sym_let_DASHenv] = ACTIONS(1308), - [anon_sym_mut] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [sym_cmd_identifier] = ACTIONS(1308), - [anon_sym_LF] = ACTIONS(1310), - [anon_sym_def] = ACTIONS(1308), - [anon_sym_export_DASHenv] = ACTIONS(1308), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym_module] = ACTIONS(1308), - [anon_sym_use] = ACTIONS(1308), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_LPAREN] = ACTIONS(1308), - [anon_sym_RPAREN] = ACTIONS(1308), - [anon_sym_DOLLAR] = ACTIONS(1308), - [anon_sym_error] = ACTIONS(1308), - [anon_sym_GT] = ACTIONS(1308), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_break] = ACTIONS(1308), - [anon_sym_continue] = ACTIONS(1308), - [anon_sym_for] = ACTIONS(1308), - [anon_sym_in] = ACTIONS(1308), - [anon_sym_loop] = ACTIONS(1308), - [anon_sym_while] = ACTIONS(1308), - [anon_sym_do] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_match] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_DOT_DOT] = ACTIONS(1308), - [anon_sym_try] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1308), - [anon_sym_source] = ACTIONS(1308), - [anon_sym_source_DASHenv] = ACTIONS(1308), - [anon_sym_register] = ACTIONS(1308), - [anon_sym_hide] = ACTIONS(1308), - [anon_sym_hide_DASHenv] = ACTIONS(1308), - [anon_sym_overlay] = ACTIONS(1308), - [anon_sym_as] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_where] = ACTIONS(1308), - [anon_sym_STAR_STAR] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(1308), - [anon_sym_mod] = ACTIONS(1308), - [anon_sym_SLASH_SLASH] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_bit_DASHshl] = ACTIONS(1308), - [anon_sym_bit_DASHshr] = ACTIONS(1308), - [anon_sym_EQ_EQ] = ACTIONS(1308), - [anon_sym_BANG_EQ] = ACTIONS(1308), - [anon_sym_LT2] = ACTIONS(1308), - [anon_sym_LT_EQ] = ACTIONS(1308), - [anon_sym_GT_EQ] = ACTIONS(1308), - [anon_sym_not_DASHin] = ACTIONS(1308), - [anon_sym_starts_DASHwith] = ACTIONS(1308), - [anon_sym_ends_DASHwith] = ACTIONS(1308), - [anon_sym_EQ_TILDE] = ACTIONS(1308), - [anon_sym_BANG_TILDE] = ACTIONS(1308), - [anon_sym_bit_DASHand] = ACTIONS(1308), - [anon_sym_bit_DASHxor] = ACTIONS(1308), - [anon_sym_bit_DASHor] = ACTIONS(1308), - [anon_sym_and] = ACTIONS(1308), - [anon_sym_xor] = ACTIONS(1308), - [anon_sym_or] = ACTIONS(1308), - [anon_sym_not] = ACTIONS(1308), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1308), - [anon_sym_DOT_DOT_LT] = ACTIONS(1308), - [anon_sym_null] = ACTIONS(1308), - [anon_sym_true] = ACTIONS(1308), - [anon_sym_false] = ACTIONS(1308), - [aux_sym__val_number_decimal_token1] = ACTIONS(1308), - [aux_sym__val_number_decimal_token2] = ACTIONS(1308), - [anon_sym_DOT2] = ACTIONS(1308), - [aux_sym__val_number_decimal_token3] = ACTIONS(1308), - [aux_sym__val_number_token1] = ACTIONS(1308), - [aux_sym__val_number_token2] = ACTIONS(1308), - [aux_sym__val_number_token3] = ACTIONS(1308), - [aux_sym__val_number_token4] = ACTIONS(1308), - [aux_sym__val_number_token5] = ACTIONS(1308), - [aux_sym__val_number_token6] = ACTIONS(1308), - [anon_sym_0b] = ACTIONS(1308), - [anon_sym_0o] = ACTIONS(1308), - [anon_sym_0x] = ACTIONS(1308), - [sym_val_date] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym__str_single_quotes] = ACTIONS(1308), - [sym__str_back_ticks] = ACTIONS(1308), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1308), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1308), - [anon_sym_CARET] = ACTIONS(1308), - [anon_sym_POUND] = ACTIONS(113), - }, - [460] = { - [sym_comment] = STATE(460), - [anon_sym_export] = ACTIONS(1312), - [anon_sym_alias] = ACTIONS(1312), - [anon_sym_let] = ACTIONS(1312), - [anon_sym_let_DASHenv] = ACTIONS(1312), - [anon_sym_mut] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [sym_cmd_identifier] = ACTIONS(1312), - [anon_sym_LF] = ACTIONS(1314), - [anon_sym_def] = ACTIONS(1312), - [anon_sym_export_DASHenv] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym_module] = ACTIONS(1312), - [anon_sym_use] = ACTIONS(1312), - [anon_sym_LBRACK] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1312), - [anon_sym_RPAREN] = ACTIONS(1312), - [anon_sym_DOLLAR] = ACTIONS(1312), - [anon_sym_error] = ACTIONS(1312), - [anon_sym_GT] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_in] = ACTIONS(1312), - [anon_sym_loop] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_match] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_RBRACE] = ACTIONS(1312), - [anon_sym_DOT_DOT] = ACTIONS(1312), - [anon_sym_try] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_source] = ACTIONS(1312), - [anon_sym_source_DASHenv] = ACTIONS(1312), - [anon_sym_register] = ACTIONS(1312), - [anon_sym_hide] = ACTIONS(1312), - [anon_sym_hide_DASHenv] = ACTIONS(1312), - [anon_sym_overlay] = ACTIONS(1312), - [anon_sym_as] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_where] = ACTIONS(1312), - [anon_sym_STAR_STAR] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_SLASH] = ACTIONS(1312), - [anon_sym_mod] = ACTIONS(1312), - [anon_sym_SLASH_SLASH] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_bit_DASHshl] = ACTIONS(1312), - [anon_sym_bit_DASHshr] = ACTIONS(1312), - [anon_sym_EQ_EQ] = ACTIONS(1312), - [anon_sym_BANG_EQ] = ACTIONS(1312), - [anon_sym_LT2] = ACTIONS(1312), - [anon_sym_LT_EQ] = ACTIONS(1312), - [anon_sym_GT_EQ] = ACTIONS(1312), - [anon_sym_not_DASHin] = ACTIONS(1312), - [anon_sym_starts_DASHwith] = ACTIONS(1312), - [anon_sym_ends_DASHwith] = ACTIONS(1312), - [anon_sym_EQ_TILDE] = ACTIONS(1312), - [anon_sym_BANG_TILDE] = ACTIONS(1312), - [anon_sym_bit_DASHand] = ACTIONS(1312), - [anon_sym_bit_DASHxor] = ACTIONS(1312), - [anon_sym_bit_DASHor] = ACTIONS(1312), - [anon_sym_and] = ACTIONS(1312), - [anon_sym_xor] = ACTIONS(1312), - [anon_sym_or] = ACTIONS(1312), - [anon_sym_not] = ACTIONS(1312), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1312), - [anon_sym_DOT_DOT_LT] = ACTIONS(1312), - [anon_sym_null] = ACTIONS(1312), - [anon_sym_true] = ACTIONS(1312), - [anon_sym_false] = ACTIONS(1312), - [aux_sym__val_number_decimal_token1] = ACTIONS(1312), - [aux_sym__val_number_decimal_token2] = ACTIONS(1312), - [anon_sym_DOT2] = ACTIONS(1312), - [aux_sym__val_number_decimal_token3] = ACTIONS(1312), - [aux_sym__val_number_token1] = ACTIONS(1312), - [aux_sym__val_number_token2] = ACTIONS(1312), - [aux_sym__val_number_token3] = ACTIONS(1312), - [aux_sym__val_number_token4] = ACTIONS(1312), - [aux_sym__val_number_token5] = ACTIONS(1312), - [aux_sym__val_number_token6] = ACTIONS(1312), - [anon_sym_0b] = ACTIONS(1312), - [anon_sym_0o] = ACTIONS(1312), - [anon_sym_0x] = ACTIONS(1312), - [sym_val_date] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym__str_single_quotes] = ACTIONS(1312), - [sym__str_back_ticks] = ACTIONS(1312), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1312), - [anon_sym_CARET] = ACTIONS(1312), - [anon_sym_POUND] = ACTIONS(113), - }, - [461] = { - [sym_comment] = STATE(461), - [anon_sym_export] = ACTIONS(1316), - [anon_sym_alias] = ACTIONS(1316), - [anon_sym_let] = ACTIONS(1316), - [anon_sym_let_DASHenv] = ACTIONS(1316), - [anon_sym_mut] = ACTIONS(1316), - [anon_sym_const] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1316), - [sym_cmd_identifier] = ACTIONS(1316), - [anon_sym_LF] = ACTIONS(1318), - [anon_sym_def] = ACTIONS(1316), - [anon_sym_export_DASHenv] = ACTIONS(1316), - [anon_sym_extern] = ACTIONS(1316), - [anon_sym_module] = ACTIONS(1316), - [anon_sym_use] = ACTIONS(1316), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1316), - [anon_sym_RPAREN] = ACTIONS(1316), - [anon_sym_DOLLAR] = ACTIONS(1316), - [anon_sym_error] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_break] = ACTIONS(1316), - [anon_sym_continue] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1316), - [anon_sym_in] = ACTIONS(1316), - [anon_sym_loop] = ACTIONS(1316), - [anon_sym_while] = ACTIONS(1316), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_if] = ACTIONS(1316), - [anon_sym_match] = ACTIONS(1316), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_RBRACE] = ACTIONS(1316), - [anon_sym_DOT_DOT] = ACTIONS(1316), - [anon_sym_try] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1316), - [anon_sym_source] = ACTIONS(1316), - [anon_sym_source_DASHenv] = ACTIONS(1316), - [anon_sym_register] = ACTIONS(1316), - [anon_sym_hide] = ACTIONS(1316), - [anon_sym_hide_DASHenv] = ACTIONS(1316), - [anon_sym_overlay] = ACTIONS(1316), - [anon_sym_as] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_where] = ACTIONS(1316), - [anon_sym_STAR_STAR] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_SLASH] = ACTIONS(1316), - [anon_sym_mod] = ACTIONS(1316), - [anon_sym_SLASH_SLASH] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_bit_DASHshl] = ACTIONS(1316), - [anon_sym_bit_DASHshr] = ACTIONS(1316), - [anon_sym_EQ_EQ] = ACTIONS(1316), - [anon_sym_BANG_EQ] = ACTIONS(1316), - [anon_sym_LT2] = ACTIONS(1316), - [anon_sym_LT_EQ] = ACTIONS(1316), - [anon_sym_GT_EQ] = ACTIONS(1316), - [anon_sym_not_DASHin] = ACTIONS(1316), - [anon_sym_starts_DASHwith] = ACTIONS(1316), - [anon_sym_ends_DASHwith] = ACTIONS(1316), - [anon_sym_EQ_TILDE] = ACTIONS(1316), - [anon_sym_BANG_TILDE] = ACTIONS(1316), - [anon_sym_bit_DASHand] = ACTIONS(1316), - [anon_sym_bit_DASHxor] = ACTIONS(1316), - [anon_sym_bit_DASHor] = ACTIONS(1316), - [anon_sym_and] = ACTIONS(1316), - [anon_sym_xor] = ACTIONS(1316), - [anon_sym_or] = ACTIONS(1316), - [anon_sym_not] = ACTIONS(1316), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1316), - [anon_sym_DOT_DOT_LT] = ACTIONS(1316), - [anon_sym_null] = ACTIONS(1316), - [anon_sym_true] = ACTIONS(1316), - [anon_sym_false] = ACTIONS(1316), - [aux_sym__val_number_decimal_token1] = ACTIONS(1316), - [aux_sym__val_number_decimal_token2] = ACTIONS(1316), - [anon_sym_DOT2] = ACTIONS(1316), - [aux_sym__val_number_decimal_token3] = ACTIONS(1316), - [aux_sym__val_number_token1] = ACTIONS(1316), - [aux_sym__val_number_token2] = ACTIONS(1316), - [aux_sym__val_number_token3] = ACTIONS(1316), - [aux_sym__val_number_token4] = ACTIONS(1316), - [aux_sym__val_number_token5] = ACTIONS(1316), - [aux_sym__val_number_token6] = ACTIONS(1316), - [anon_sym_0b] = ACTIONS(1316), - [anon_sym_0o] = ACTIONS(1316), - [anon_sym_0x] = ACTIONS(1316), - [sym_val_date] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1316), - [sym__str_single_quotes] = ACTIONS(1316), - [sym__str_back_ticks] = ACTIONS(1316), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1316), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(113), - }, - [462] = { - [sym_comment] = STATE(462), - [anon_sym_export] = ACTIONS(1320), - [anon_sym_alias] = ACTIONS(1320), - [anon_sym_let] = ACTIONS(1320), - [anon_sym_let_DASHenv] = ACTIONS(1320), - [anon_sym_mut] = ACTIONS(1320), - [anon_sym_const] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [sym_cmd_identifier] = ACTIONS(1320), - [anon_sym_LF] = ACTIONS(1322), - [anon_sym_def] = ACTIONS(1320), - [anon_sym_export_DASHenv] = ACTIONS(1320), - [anon_sym_extern] = ACTIONS(1320), - [anon_sym_module] = ACTIONS(1320), - [anon_sym_use] = ACTIONS(1320), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_LPAREN] = ACTIONS(1320), - [anon_sym_RPAREN] = ACTIONS(1320), - [anon_sym_DOLLAR] = ACTIONS(1320), - [anon_sym_error] = ACTIONS(1320), - [anon_sym_GT] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1320), - [anon_sym_continue] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_in] = ACTIONS(1320), - [anon_sym_loop] = ACTIONS(1320), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_do] = ACTIONS(1320), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_match] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_RBRACE] = ACTIONS(1320), - [anon_sym_DOT_DOT] = ACTIONS(1320), - [anon_sym_try] = ACTIONS(1320), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_source] = ACTIONS(1320), - [anon_sym_source_DASHenv] = ACTIONS(1320), - [anon_sym_register] = ACTIONS(1320), - [anon_sym_hide] = ACTIONS(1320), - [anon_sym_hide_DASHenv] = ACTIONS(1320), - [anon_sym_overlay] = ACTIONS(1320), - [anon_sym_as] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_where] = ACTIONS(1320), - [anon_sym_STAR_STAR] = ACTIONS(1320), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_SLASH] = ACTIONS(1320), - [anon_sym_mod] = ACTIONS(1320), - [anon_sym_SLASH_SLASH] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1320), - [anon_sym_bit_DASHshl] = ACTIONS(1320), - [anon_sym_bit_DASHshr] = ACTIONS(1320), - [anon_sym_EQ_EQ] = ACTIONS(1320), - [anon_sym_BANG_EQ] = ACTIONS(1320), - [anon_sym_LT2] = ACTIONS(1320), - [anon_sym_LT_EQ] = ACTIONS(1320), - [anon_sym_GT_EQ] = ACTIONS(1320), - [anon_sym_not_DASHin] = ACTIONS(1320), - [anon_sym_starts_DASHwith] = ACTIONS(1320), - [anon_sym_ends_DASHwith] = ACTIONS(1320), - [anon_sym_EQ_TILDE] = ACTIONS(1320), - [anon_sym_BANG_TILDE] = ACTIONS(1320), - [anon_sym_bit_DASHand] = ACTIONS(1320), - [anon_sym_bit_DASHxor] = ACTIONS(1320), - [anon_sym_bit_DASHor] = ACTIONS(1320), - [anon_sym_and] = ACTIONS(1320), - [anon_sym_xor] = ACTIONS(1320), - [anon_sym_or] = ACTIONS(1320), - [anon_sym_not] = ACTIONS(1320), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1320), - [anon_sym_DOT_DOT_LT] = ACTIONS(1320), - [anon_sym_null] = ACTIONS(1320), - [anon_sym_true] = ACTIONS(1320), - [anon_sym_false] = ACTIONS(1320), - [aux_sym__val_number_decimal_token1] = ACTIONS(1320), - [aux_sym__val_number_decimal_token2] = ACTIONS(1320), - [anon_sym_DOT2] = ACTIONS(1320), - [aux_sym__val_number_decimal_token3] = ACTIONS(1320), - [aux_sym__val_number_token1] = ACTIONS(1320), - [aux_sym__val_number_token2] = ACTIONS(1320), - [aux_sym__val_number_token3] = ACTIONS(1320), - [aux_sym__val_number_token4] = ACTIONS(1320), - [aux_sym__val_number_token5] = ACTIONS(1320), - [aux_sym__val_number_token6] = ACTIONS(1320), - [anon_sym_0b] = ACTIONS(1320), - [anon_sym_0o] = ACTIONS(1320), - [anon_sym_0x] = ACTIONS(1320), - [sym_val_date] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1320), - [sym__str_single_quotes] = ACTIONS(1320), - [sym__str_back_ticks] = ACTIONS(1320), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1320), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1320), - [anon_sym_CARET] = ACTIONS(1320), - [anon_sym_POUND] = ACTIONS(113), - }, - [463] = { - [sym_comment] = STATE(463), - [anon_sym_export] = ACTIONS(1059), - [anon_sym_alias] = ACTIONS(1059), - [anon_sym_let] = ACTIONS(1059), - [anon_sym_let_DASHenv] = ACTIONS(1059), - [anon_sym_mut] = ACTIONS(1059), - [anon_sym_const] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [sym_cmd_identifier] = ACTIONS(1059), - [anon_sym_LF] = ACTIONS(1061), - [anon_sym_def] = ACTIONS(1059), - [anon_sym_export_DASHenv] = ACTIONS(1059), - [anon_sym_extern] = ACTIONS(1059), - [anon_sym_module] = ACTIONS(1059), - [anon_sym_use] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_error] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_DASH_DASH] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_break] = ACTIONS(1059), - [anon_sym_continue] = ACTIONS(1059), - [anon_sym_for] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1059), - [anon_sym_loop] = ACTIONS(1059), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_do] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1059), - [anon_sym_match] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(1059), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_try] = ACTIONS(1059), - [anon_sym_return] = ACTIONS(1059), - [anon_sym_source] = ACTIONS(1059), - [anon_sym_source_DASHenv] = ACTIONS(1059), - [anon_sym_register] = ACTIONS(1059), - [anon_sym_hide] = ACTIONS(1059), - [anon_sym_hide_DASHenv] = ACTIONS(1059), - [anon_sym_overlay] = ACTIONS(1059), - [anon_sym_as] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(1059), - [anon_sym_STAR_STAR] = ACTIONS(1059), - [anon_sym_PLUS_PLUS] = ACTIONS(1059), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_mod] = ACTIONS(1059), - [anon_sym_SLASH_SLASH] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_bit_DASHshl] = ACTIONS(1059), - [anon_sym_bit_DASHshr] = ACTIONS(1059), - [anon_sym_EQ_EQ] = ACTIONS(1059), - [anon_sym_BANG_EQ] = ACTIONS(1059), - [anon_sym_LT2] = ACTIONS(1059), - [anon_sym_LT_EQ] = ACTIONS(1059), - [anon_sym_GT_EQ] = ACTIONS(1059), - [anon_sym_not_DASHin] = ACTIONS(1059), - [anon_sym_starts_DASHwith] = ACTIONS(1059), - [anon_sym_ends_DASHwith] = ACTIONS(1059), - [anon_sym_EQ_TILDE] = ACTIONS(1059), - [anon_sym_BANG_TILDE] = ACTIONS(1059), - [anon_sym_bit_DASHand] = ACTIONS(1059), - [anon_sym_bit_DASHxor] = ACTIONS(1059), - [anon_sym_bit_DASHor] = ACTIONS(1059), - [anon_sym_and] = ACTIONS(1059), - [anon_sym_xor] = ACTIONS(1059), - [anon_sym_or] = ACTIONS(1059), - [anon_sym_not] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1059), - [anon_sym_DOT_DOT_LT] = ACTIONS(1059), - [anon_sym_null] = ACTIONS(1059), - [anon_sym_true] = ACTIONS(1059), - [anon_sym_false] = ACTIONS(1059), - [aux_sym__val_number_decimal_token1] = ACTIONS(1059), - [aux_sym__val_number_decimal_token2] = ACTIONS(1059), - [anon_sym_DOT2] = ACTIONS(1059), - [aux_sym__val_number_decimal_token3] = ACTIONS(1059), - [aux_sym__val_number_token1] = ACTIONS(1059), - [aux_sym__val_number_token2] = ACTIONS(1059), - [aux_sym__val_number_token3] = ACTIONS(1059), - [aux_sym__val_number_token4] = ACTIONS(1059), - [aux_sym__val_number_token5] = ACTIONS(1059), - [aux_sym__val_number_token6] = ACTIONS(1059), - [anon_sym_0b] = ACTIONS(1059), - [anon_sym_0o] = ACTIONS(1059), - [anon_sym_0x] = ACTIONS(1059), - [sym_val_date] = ACTIONS(1059), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym__str_single_quotes] = ACTIONS(1059), - [sym__str_back_ticks] = ACTIONS(1059), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1059), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1059), - [anon_sym_CARET] = ACTIONS(1059), - [anon_sym_POUND] = ACTIONS(113), - }, - [464] = { - [sym_comment] = STATE(464), - [anon_sym_export] = ACTIONS(1063), - [anon_sym_alias] = ACTIONS(1063), - [anon_sym_let] = ACTIONS(1063), - [anon_sym_let_DASHenv] = ACTIONS(1063), - [anon_sym_mut] = ACTIONS(1063), - [anon_sym_const] = ACTIONS(1063), - [anon_sym_SEMI] = ACTIONS(1063), - [sym_cmd_identifier] = ACTIONS(1063), - [anon_sym_LF] = ACTIONS(1065), - [anon_sym_def] = ACTIONS(1063), - [anon_sym_export_DASHenv] = ACTIONS(1063), - [anon_sym_extern] = ACTIONS(1063), - [anon_sym_module] = ACTIONS(1063), - [anon_sym_use] = ACTIONS(1063), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_RPAREN] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_error] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_DASH_DASH] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_break] = ACTIONS(1063), - [anon_sym_continue] = ACTIONS(1063), - [anon_sym_for] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1063), - [anon_sym_loop] = ACTIONS(1063), - [anon_sym_while] = ACTIONS(1063), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_if] = ACTIONS(1063), - [anon_sym_match] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_RBRACE] = ACTIONS(1063), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1063), - [anon_sym_return] = ACTIONS(1063), - [anon_sym_source] = ACTIONS(1063), - [anon_sym_source_DASHenv] = ACTIONS(1063), - [anon_sym_register] = ACTIONS(1063), - [anon_sym_hide] = ACTIONS(1063), - [anon_sym_hide_DASHenv] = ACTIONS(1063), - [anon_sym_overlay] = ACTIONS(1063), - [anon_sym_as] = ACTIONS(1063), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_where] = ACTIONS(1063), - [anon_sym_STAR_STAR] = ACTIONS(1063), - [anon_sym_PLUS_PLUS] = ACTIONS(1063), - [anon_sym_SLASH] = ACTIONS(1063), - [anon_sym_mod] = ACTIONS(1063), - [anon_sym_SLASH_SLASH] = ACTIONS(1063), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_bit_DASHshl] = ACTIONS(1063), - [anon_sym_bit_DASHshr] = ACTIONS(1063), - [anon_sym_EQ_EQ] = ACTIONS(1063), - [anon_sym_BANG_EQ] = ACTIONS(1063), - [anon_sym_LT2] = ACTIONS(1063), - [anon_sym_LT_EQ] = ACTIONS(1063), - [anon_sym_GT_EQ] = ACTIONS(1063), - [anon_sym_not_DASHin] = ACTIONS(1063), - [anon_sym_starts_DASHwith] = ACTIONS(1063), - [anon_sym_ends_DASHwith] = ACTIONS(1063), - [anon_sym_EQ_TILDE] = ACTIONS(1063), - [anon_sym_BANG_TILDE] = ACTIONS(1063), - [anon_sym_bit_DASHand] = ACTIONS(1063), - [anon_sym_bit_DASHxor] = ACTIONS(1063), - [anon_sym_bit_DASHor] = ACTIONS(1063), - [anon_sym_and] = ACTIONS(1063), - [anon_sym_xor] = ACTIONS(1063), - [anon_sym_or] = ACTIONS(1063), - [anon_sym_not] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1063), - [anon_sym_DOT_DOT_LT] = ACTIONS(1063), - [anon_sym_null] = ACTIONS(1063), - [anon_sym_true] = ACTIONS(1063), - [anon_sym_false] = ACTIONS(1063), - [aux_sym__val_number_decimal_token1] = ACTIONS(1063), - [aux_sym__val_number_decimal_token2] = ACTIONS(1063), - [anon_sym_DOT2] = ACTIONS(1063), - [aux_sym__val_number_decimal_token3] = ACTIONS(1063), - [aux_sym__val_number_token1] = ACTIONS(1063), - [aux_sym__val_number_token2] = ACTIONS(1063), - [aux_sym__val_number_token3] = ACTIONS(1063), - [aux_sym__val_number_token4] = ACTIONS(1063), - [aux_sym__val_number_token5] = ACTIONS(1063), - [aux_sym__val_number_token6] = ACTIONS(1063), - [anon_sym_0b] = ACTIONS(1063), - [anon_sym_0o] = ACTIONS(1063), - [anon_sym_0x] = ACTIONS(1063), - [sym_val_date] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [sym__str_single_quotes] = ACTIONS(1063), - [sym__str_back_ticks] = ACTIONS(1063), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1063), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1063), - [anon_sym_CARET] = ACTIONS(1063), - [anon_sym_POUND] = ACTIONS(113), - }, - [465] = { - [sym_cell_path] = STATE(737), - [sym_path] = STATE(526), - [sym_comment] = STATE(465), - [ts_builtin_sym_end] = ACTIONS(1192), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_alias] = ACTIONS(1190), - [anon_sym_let] = ACTIONS(1190), - [anon_sym_let_DASHenv] = ACTIONS(1190), - [anon_sym_mut] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1190), - [anon_sym_SEMI] = ACTIONS(1190), - [sym_cmd_identifier] = ACTIONS(1190), - [anon_sym_LF] = ACTIONS(1192), - [anon_sym_def] = ACTIONS(1190), - [anon_sym_export_DASHenv] = ACTIONS(1190), - [anon_sym_extern] = ACTIONS(1190), - [anon_sym_module] = ACTIONS(1190), - [anon_sym_use] = ACTIONS(1190), - [anon_sym_LBRACK] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(1190), - [anon_sym_DOLLAR] = ACTIONS(1190), - [anon_sym_error] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1190), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_in] = ACTIONS(1190), - [anon_sym_loop] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [anon_sym_do] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_match] = ACTIONS(1190), - [anon_sym_LBRACE] = ACTIONS(1190), - [anon_sym_DOT_DOT] = ACTIONS(1190), - [anon_sym_try] = ACTIONS(1190), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_source] = ACTIONS(1190), - [anon_sym_source_DASHenv] = ACTIONS(1190), - [anon_sym_register] = ACTIONS(1190), - [anon_sym_hide] = ACTIONS(1190), - [anon_sym_hide_DASHenv] = ACTIONS(1190), - [anon_sym_overlay] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1190), - [anon_sym_where] = ACTIONS(1190), - [anon_sym_STAR_STAR] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1190), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_mod] = ACTIONS(1190), - [anon_sym_SLASH_SLASH] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_bit_DASHshl] = ACTIONS(1190), - [anon_sym_bit_DASHshr] = ACTIONS(1190), - [anon_sym_EQ_EQ] = ACTIONS(1190), - [anon_sym_BANG_EQ] = ACTIONS(1190), - [anon_sym_LT2] = ACTIONS(1190), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_not_DASHin] = ACTIONS(1190), - [anon_sym_starts_DASHwith] = ACTIONS(1190), - [anon_sym_ends_DASHwith] = ACTIONS(1190), - [anon_sym_EQ_TILDE] = ACTIONS(1190), - [anon_sym_BANG_TILDE] = ACTIONS(1190), - [anon_sym_bit_DASHand] = ACTIONS(1190), - [anon_sym_bit_DASHxor] = ACTIONS(1190), - [anon_sym_bit_DASHor] = ACTIONS(1190), - [anon_sym_and] = ACTIONS(1190), - [anon_sym_xor] = ACTIONS(1190), - [anon_sym_or] = ACTIONS(1190), - [anon_sym_not] = ACTIONS(1190), - [anon_sym_DOT] = ACTIONS(1306), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1190), - [anon_sym_DOT_DOT_LT] = ACTIONS(1190), - [anon_sym_null] = ACTIONS(1190), - [anon_sym_true] = ACTIONS(1190), - [anon_sym_false] = ACTIONS(1190), - [aux_sym__val_number_decimal_token1] = ACTIONS(1190), - [aux_sym__val_number_decimal_token2] = ACTIONS(1190), - [anon_sym_DOT2] = ACTIONS(1190), - [aux_sym__val_number_decimal_token3] = ACTIONS(1190), - [aux_sym__val_number_token1] = ACTIONS(1190), - [aux_sym__val_number_token2] = ACTIONS(1190), - [aux_sym__val_number_token3] = ACTIONS(1190), - [aux_sym__val_number_token4] = ACTIONS(1190), - [aux_sym__val_number_token5] = ACTIONS(1190), - [aux_sym__val_number_token6] = ACTIONS(1190), - [anon_sym_0b] = ACTIONS(1190), - [anon_sym_0o] = ACTIONS(1190), - [anon_sym_0x] = ACTIONS(1190), - [sym_val_date] = ACTIONS(1190), - [anon_sym_DQUOTE] = ACTIONS(1190), - [sym__str_single_quotes] = ACTIONS(1190), - [sym__str_back_ticks] = ACTIONS(1190), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1190), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1190), [anon_sym_POUND] = ACTIONS(113), }, [466] = { [sym_comment] = STATE(466), - [anon_sym_export] = ACTIONS(1186), - [anon_sym_alias] = ACTIONS(1186), - [anon_sym_let] = ACTIONS(1186), - [anon_sym_let_DASHenv] = ACTIONS(1186), - [anon_sym_mut] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1186), - [sym_cmd_identifier] = ACTIONS(1186), - [anon_sym_LF] = ACTIONS(1188), - [anon_sym_def] = ACTIONS(1186), - [anon_sym_export_DASHenv] = ACTIONS(1186), - [anon_sym_extern] = ACTIONS(1186), - [anon_sym_module] = ACTIONS(1186), - [anon_sym_use] = ACTIONS(1186), - [anon_sym_LBRACK] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(1186), - [anon_sym_RPAREN] = ACTIONS(1186), - [anon_sym_DOLLAR] = ACTIONS(1186), - [anon_sym_error] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_DASH_DASH] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1186), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1186), - [anon_sym_in] = ACTIONS(1186), - [anon_sym_loop] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_do] = ACTIONS(1186), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_match] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_RBRACE] = ACTIONS(1186), - [anon_sym_DOT_DOT] = ACTIONS(1186), - [anon_sym_try] = ACTIONS(1186), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_source] = ACTIONS(1186), - [anon_sym_source_DASHenv] = ACTIONS(1186), - [anon_sym_register] = ACTIONS(1186), - [anon_sym_hide] = ACTIONS(1186), - [anon_sym_hide_DASHenv] = ACTIONS(1186), - [anon_sym_overlay] = ACTIONS(1186), - [anon_sym_as] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_where] = ACTIONS(1186), - [anon_sym_STAR_STAR] = ACTIONS(1186), - [anon_sym_PLUS_PLUS] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_mod] = ACTIONS(1186), - [anon_sym_SLASH_SLASH] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_bit_DASHshl] = ACTIONS(1186), - [anon_sym_bit_DASHshr] = ACTIONS(1186), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_LT2] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1186), - [anon_sym_GT_EQ] = ACTIONS(1186), - [anon_sym_not_DASHin] = ACTIONS(1186), - [anon_sym_starts_DASHwith] = ACTIONS(1186), - [anon_sym_ends_DASHwith] = ACTIONS(1186), - [anon_sym_EQ_TILDE] = ACTIONS(1186), - [anon_sym_BANG_TILDE] = ACTIONS(1186), - [anon_sym_bit_DASHand] = ACTIONS(1186), - [anon_sym_bit_DASHxor] = ACTIONS(1186), - [anon_sym_bit_DASHor] = ACTIONS(1186), - [anon_sym_and] = ACTIONS(1186), - [anon_sym_xor] = ACTIONS(1186), - [anon_sym_or] = ACTIONS(1186), - [anon_sym_not] = ACTIONS(1186), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1186), - [anon_sym_DOT_DOT_LT] = ACTIONS(1186), - [anon_sym_null] = ACTIONS(1186), - [anon_sym_true] = ACTIONS(1186), - [anon_sym_false] = ACTIONS(1186), - [aux_sym__val_number_decimal_token1] = ACTIONS(1186), - [aux_sym__val_number_decimal_token2] = ACTIONS(1186), - [anon_sym_DOT2] = ACTIONS(1186), - [aux_sym__val_number_decimal_token3] = ACTIONS(1186), - [aux_sym__val_number_token1] = ACTIONS(1186), - [aux_sym__val_number_token2] = ACTIONS(1186), - [aux_sym__val_number_token3] = ACTIONS(1186), - [aux_sym__val_number_token4] = ACTIONS(1186), - [aux_sym__val_number_token5] = ACTIONS(1186), - [aux_sym__val_number_token6] = ACTIONS(1186), - [anon_sym_0b] = ACTIONS(1186), - [anon_sym_0o] = ACTIONS(1186), - [anon_sym_0x] = ACTIONS(1186), - [sym_val_date] = ACTIONS(1186), - [anon_sym_DQUOTE] = ACTIONS(1186), - [sym__str_single_quotes] = ACTIONS(1186), - [sym__str_back_ticks] = ACTIONS(1186), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1186), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1186), - [anon_sym_CARET] = ACTIONS(1186), + [ts_builtin_sym_end] = ACTIONS(1259), + [anon_sym_export] = ACTIONS(1257), + [anon_sym_alias] = ACTIONS(1257), + [anon_sym_let] = ACTIONS(1257), + [anon_sym_let_DASHenv] = ACTIONS(1257), + [anon_sym_mut] = ACTIONS(1257), + [anon_sym_const] = ACTIONS(1257), + [anon_sym_SEMI] = ACTIONS(1257), + [sym_cmd_identifier] = ACTIONS(1257), + [anon_sym_LF] = ACTIONS(1259), + [anon_sym_def] = ACTIONS(1257), + [anon_sym_export_DASHenv] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(1257), + [anon_sym_module] = ACTIONS(1257), + [anon_sym_use] = ACTIONS(1257), + [anon_sym_LBRACK] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_DOLLAR] = ACTIONS(1257), + [anon_sym_error] = ACTIONS(1257), + [anon_sym_GT] = ACTIONS(1257), + [anon_sym_DASH_DASH] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_break] = ACTIONS(1257), + [anon_sym_continue] = ACTIONS(1257), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_in] = ACTIONS(1257), + [anon_sym_loop] = ACTIONS(1257), + [anon_sym_while] = ACTIONS(1257), + [anon_sym_do] = ACTIONS(1257), + [anon_sym_if] = ACTIONS(1257), + [anon_sym_match] = ACTIONS(1257), + [anon_sym_LBRACE] = ACTIONS(1257), + [anon_sym_DOT_DOT] = ACTIONS(1257), + [anon_sym_try] = ACTIONS(1257), + [anon_sym_return] = ACTIONS(1257), + [anon_sym_source] = ACTIONS(1257), + [anon_sym_source_DASHenv] = ACTIONS(1257), + [anon_sym_register] = ACTIONS(1257), + [anon_sym_hide] = ACTIONS(1257), + [anon_sym_hide_DASHenv] = ACTIONS(1257), + [anon_sym_overlay] = ACTIONS(1257), + [anon_sym_as] = ACTIONS(1257), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_where] = ACTIONS(1257), + [anon_sym_STAR_STAR] = ACTIONS(1257), + [anon_sym_PLUS_PLUS] = ACTIONS(1257), + [anon_sym_SLASH] = ACTIONS(1257), + [anon_sym_mod] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_bit_DASHshl] = ACTIONS(1257), + [anon_sym_bit_DASHshr] = ACTIONS(1257), + [anon_sym_EQ_EQ] = ACTIONS(1257), + [anon_sym_BANG_EQ] = ACTIONS(1257), + [anon_sym_LT2] = ACTIONS(1257), + [anon_sym_LT_EQ] = ACTIONS(1257), + [anon_sym_GT_EQ] = ACTIONS(1257), + [anon_sym_not_DASHin] = ACTIONS(1257), + [anon_sym_starts_DASHwith] = ACTIONS(1257), + [anon_sym_ends_DASHwith] = ACTIONS(1257), + [anon_sym_EQ_TILDE] = ACTIONS(1257), + [anon_sym_BANG_TILDE] = ACTIONS(1257), + [anon_sym_bit_DASHand] = ACTIONS(1257), + [anon_sym_bit_DASHxor] = ACTIONS(1257), + [anon_sym_bit_DASHor] = ACTIONS(1257), + [anon_sym_and] = ACTIONS(1257), + [anon_sym_xor] = ACTIONS(1257), + [anon_sym_or] = ACTIONS(1257), + [anon_sym_not] = ACTIONS(1257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1257), + [anon_sym_DOT_DOT_LT] = ACTIONS(1257), + [anon_sym_null] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [aux_sym__val_number_decimal_token1] = ACTIONS(1257), + [aux_sym__val_number_decimal_token2] = ACTIONS(1257), + [anon_sym_DOT2] = ACTIONS(1257), + [aux_sym__val_number_decimal_token3] = ACTIONS(1257), + [aux_sym__val_number_token1] = ACTIONS(1257), + [aux_sym__val_number_token2] = ACTIONS(1257), + [aux_sym__val_number_token3] = ACTIONS(1257), + [aux_sym__val_number_token4] = ACTIONS(1257), + [aux_sym__val_number_token5] = ACTIONS(1257), + [aux_sym__val_number_token6] = ACTIONS(1257), + [anon_sym_0b] = ACTIONS(1257), + [anon_sym_0o] = ACTIONS(1257), + [anon_sym_0x] = ACTIONS(1257), + [sym_val_date] = ACTIONS(1257), + [anon_sym_DQUOTE] = ACTIONS(1257), + [sym__str_single_quotes] = ACTIONS(1257), + [sym__str_back_ticks] = ACTIONS(1257), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1257), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1257), + [anon_sym_CARET] = ACTIONS(1257), [anon_sym_POUND] = ACTIONS(113), }, [467] = { [sym_comment] = STATE(467), - [ts_builtin_sym_end] = ACTIONS(1174), - [anon_sym_export] = ACTIONS(1172), - [anon_sym_alias] = ACTIONS(1172), - [anon_sym_let] = ACTIONS(1172), - [anon_sym_let_DASHenv] = ACTIONS(1172), - [anon_sym_mut] = ACTIONS(1172), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(1172), - [sym_cmd_identifier] = ACTIONS(1172), - [anon_sym_LF] = ACTIONS(1174), - [anon_sym_def] = ACTIONS(1172), - [anon_sym_export_DASHenv] = ACTIONS(1172), - [anon_sym_extern] = ACTIONS(1172), - [anon_sym_module] = ACTIONS(1172), - [anon_sym_use] = ACTIONS(1172), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_LPAREN] = ACTIONS(1172), - [anon_sym_DOLLAR] = ACTIONS(1172), - [anon_sym_error] = ACTIONS(1172), - [anon_sym_GT] = ACTIONS(1172), - [anon_sym_DASH] = ACTIONS(1172), - [anon_sym_break] = ACTIONS(1172), - [anon_sym_continue] = ACTIONS(1172), - [anon_sym_for] = ACTIONS(1172), - [anon_sym_in] = ACTIONS(1172), - [anon_sym_loop] = ACTIONS(1172), - [anon_sym_while] = ACTIONS(1172), - [anon_sym_do] = ACTIONS(1172), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_match] = ACTIONS(1172), - [anon_sym_LBRACE] = ACTIONS(1172), - [anon_sym_DOT_DOT] = ACTIONS(1172), - [anon_sym_try] = ACTIONS(1172), - [anon_sym_return] = ACTIONS(1172), - [anon_sym_source] = ACTIONS(1172), - [anon_sym_source_DASHenv] = ACTIONS(1172), - [anon_sym_register] = ACTIONS(1172), - [anon_sym_hide] = ACTIONS(1172), - [anon_sym_hide_DASHenv] = ACTIONS(1172), - [anon_sym_overlay] = ACTIONS(1172), - [anon_sym_STAR] = ACTIONS(1172), - [anon_sym_where] = ACTIONS(1172), - [anon_sym_STAR_STAR] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_SLASH] = ACTIONS(1172), - [anon_sym_mod] = ACTIONS(1172), - [anon_sym_SLASH_SLASH] = ACTIONS(1172), - [anon_sym_PLUS] = ACTIONS(1172), - [anon_sym_bit_DASHshl] = ACTIONS(1172), - [anon_sym_bit_DASHshr] = ACTIONS(1172), - [anon_sym_EQ_EQ] = ACTIONS(1172), - [anon_sym_BANG_EQ] = ACTIONS(1172), - [anon_sym_LT2] = ACTIONS(1172), - [anon_sym_LT_EQ] = ACTIONS(1172), - [anon_sym_GT_EQ] = ACTIONS(1172), - [anon_sym_not_DASHin] = ACTIONS(1172), - [anon_sym_starts_DASHwith] = ACTIONS(1172), - [anon_sym_ends_DASHwith] = ACTIONS(1172), - [anon_sym_EQ_TILDE] = ACTIONS(1172), - [anon_sym_BANG_TILDE] = ACTIONS(1172), - [anon_sym_bit_DASHand] = ACTIONS(1172), - [anon_sym_bit_DASHxor] = ACTIONS(1172), - [anon_sym_bit_DASHor] = ACTIONS(1172), - [anon_sym_and] = ACTIONS(1172), - [anon_sym_xor] = ACTIONS(1172), - [anon_sym_or] = ACTIONS(1172), - [anon_sym_not] = ACTIONS(1172), - [anon_sym_DOT_DOT2] = ACTIONS(1172), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1172), - [anon_sym_DOT_DOT_LT] = ACTIONS(1172), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1174), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1174), - [anon_sym_null] = ACTIONS(1172), - [anon_sym_true] = ACTIONS(1172), - [anon_sym_false] = ACTIONS(1172), - [aux_sym__val_number_decimal_token1] = ACTIONS(1172), - [aux_sym__val_number_decimal_token2] = ACTIONS(1172), - [anon_sym_DOT2] = ACTIONS(1172), - [aux_sym__val_number_decimal_token3] = ACTIONS(1172), - [aux_sym__val_number_token1] = ACTIONS(1172), - [aux_sym__val_number_token2] = ACTIONS(1172), - [aux_sym__val_number_token3] = ACTIONS(1172), - [aux_sym__val_number_token4] = ACTIONS(1172), - [aux_sym__val_number_token5] = ACTIONS(1172), - [aux_sym__val_number_token6] = ACTIONS(1172), - [anon_sym_0b] = ACTIONS(1172), - [anon_sym_0o] = ACTIONS(1172), - [anon_sym_0x] = ACTIONS(1172), - [sym_val_date] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(1172), - [sym__str_single_quotes] = ACTIONS(1172), - [sym__str_back_ticks] = ACTIONS(1172), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1172), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1172), - [anon_sym_CARET] = ACTIONS(1172), + [ts_builtin_sym_end] = ACTIONS(1263), + [anon_sym_export] = ACTIONS(1261), + [anon_sym_alias] = ACTIONS(1261), + [anon_sym_let] = ACTIONS(1261), + [anon_sym_let_DASHenv] = ACTIONS(1261), + [anon_sym_mut] = ACTIONS(1261), + [anon_sym_const] = ACTIONS(1261), + [anon_sym_SEMI] = ACTIONS(1261), + [sym_cmd_identifier] = ACTIONS(1261), + [anon_sym_LF] = ACTIONS(1263), + [anon_sym_def] = ACTIONS(1261), + [anon_sym_export_DASHenv] = ACTIONS(1261), + [anon_sym_extern] = ACTIONS(1261), + [anon_sym_module] = ACTIONS(1261), + [anon_sym_use] = ACTIONS(1261), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_DOLLAR] = ACTIONS(1261), + [anon_sym_error] = ACTIONS(1261), + [anon_sym_GT] = ACTIONS(1261), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1261), + [anon_sym_break] = ACTIONS(1261), + [anon_sym_continue] = ACTIONS(1261), + [anon_sym_for] = ACTIONS(1261), + [anon_sym_in] = ACTIONS(1261), + [anon_sym_loop] = ACTIONS(1261), + [anon_sym_while] = ACTIONS(1261), + [anon_sym_do] = ACTIONS(1261), + [anon_sym_if] = ACTIONS(1261), + [anon_sym_match] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_DOT_DOT] = ACTIONS(1261), + [anon_sym_try] = ACTIONS(1261), + [anon_sym_return] = ACTIONS(1261), + [anon_sym_source] = ACTIONS(1261), + [anon_sym_source_DASHenv] = ACTIONS(1261), + [anon_sym_register] = ACTIONS(1261), + [anon_sym_hide] = ACTIONS(1261), + [anon_sym_hide_DASHenv] = ACTIONS(1261), + [anon_sym_overlay] = ACTIONS(1261), + [anon_sym_as] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_where] = ACTIONS(1261), + [anon_sym_STAR_STAR] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_SLASH] = ACTIONS(1261), + [anon_sym_mod] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(1261), + [anon_sym_PLUS] = ACTIONS(1261), + [anon_sym_bit_DASHshl] = ACTIONS(1261), + [anon_sym_bit_DASHshr] = ACTIONS(1261), + [anon_sym_EQ_EQ] = ACTIONS(1261), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_LT2] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1261), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_not_DASHin] = ACTIONS(1261), + [anon_sym_starts_DASHwith] = ACTIONS(1261), + [anon_sym_ends_DASHwith] = ACTIONS(1261), + [anon_sym_EQ_TILDE] = ACTIONS(1261), + [anon_sym_BANG_TILDE] = ACTIONS(1261), + [anon_sym_bit_DASHand] = ACTIONS(1261), + [anon_sym_bit_DASHxor] = ACTIONS(1261), + [anon_sym_bit_DASHor] = ACTIONS(1261), + [anon_sym_and] = ACTIONS(1261), + [anon_sym_xor] = ACTIONS(1261), + [anon_sym_or] = ACTIONS(1261), + [anon_sym_not] = ACTIONS(1261), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1261), + [anon_sym_DOT_DOT_LT] = ACTIONS(1261), + [anon_sym_null] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [aux_sym__val_number_decimal_token1] = ACTIONS(1261), + [aux_sym__val_number_decimal_token2] = ACTIONS(1261), + [anon_sym_DOT2] = ACTIONS(1261), + [aux_sym__val_number_decimal_token3] = ACTIONS(1261), + [aux_sym__val_number_token1] = ACTIONS(1261), + [aux_sym__val_number_token2] = ACTIONS(1261), + [aux_sym__val_number_token3] = ACTIONS(1261), + [aux_sym__val_number_token4] = ACTIONS(1261), + [aux_sym__val_number_token5] = ACTIONS(1261), + [aux_sym__val_number_token6] = ACTIONS(1261), + [anon_sym_0b] = ACTIONS(1261), + [anon_sym_0o] = ACTIONS(1261), + [anon_sym_0x] = ACTIONS(1261), + [sym_val_date] = ACTIONS(1261), + [anon_sym_DQUOTE] = ACTIONS(1261), + [sym__str_single_quotes] = ACTIONS(1261), + [sym__str_back_ticks] = ACTIONS(1261), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1261), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1261), + [anon_sym_CARET] = ACTIONS(1261), [anon_sym_POUND] = ACTIONS(113), }, [468] = { [sym_comment] = STATE(468), - [ts_builtin_sym_end] = ACTIONS(1170), - [anon_sym_export] = ACTIONS(1168), - [anon_sym_alias] = ACTIONS(1168), - [anon_sym_let] = ACTIONS(1168), - [anon_sym_let_DASHenv] = ACTIONS(1168), - [anon_sym_mut] = ACTIONS(1168), - [anon_sym_const] = ACTIONS(1168), - [anon_sym_SEMI] = ACTIONS(1168), - [sym_cmd_identifier] = ACTIONS(1168), - [anon_sym_LF] = ACTIONS(1170), - [anon_sym_def] = ACTIONS(1168), - [anon_sym_export_DASHenv] = ACTIONS(1168), - [anon_sym_extern] = ACTIONS(1168), - [anon_sym_module] = ACTIONS(1168), - [anon_sym_use] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_DOLLAR] = ACTIONS(1168), - [anon_sym_error] = ACTIONS(1168), - [anon_sym_GT] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1168), - [anon_sym_break] = ACTIONS(1168), - [anon_sym_continue] = ACTIONS(1168), - [anon_sym_for] = ACTIONS(1168), - [anon_sym_in] = ACTIONS(1168), - [anon_sym_loop] = ACTIONS(1168), - [anon_sym_while] = ACTIONS(1168), - [anon_sym_do] = ACTIONS(1168), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_match] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1168), - [anon_sym_DOT_DOT] = ACTIONS(1168), - [anon_sym_try] = ACTIONS(1168), - [anon_sym_return] = ACTIONS(1168), - [anon_sym_source] = ACTIONS(1168), - [anon_sym_source_DASHenv] = ACTIONS(1168), - [anon_sym_register] = ACTIONS(1168), - [anon_sym_hide] = ACTIONS(1168), - [anon_sym_hide_DASHenv] = ACTIONS(1168), - [anon_sym_overlay] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_where] = ACTIONS(1168), - [anon_sym_STAR_STAR] = ACTIONS(1168), - [anon_sym_PLUS_PLUS] = ACTIONS(1168), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_mod] = ACTIONS(1168), - [anon_sym_SLASH_SLASH] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(1168), - [anon_sym_bit_DASHshl] = ACTIONS(1168), - [anon_sym_bit_DASHshr] = ACTIONS(1168), - [anon_sym_EQ_EQ] = ACTIONS(1168), - [anon_sym_BANG_EQ] = ACTIONS(1168), - [anon_sym_LT2] = ACTIONS(1168), - [anon_sym_LT_EQ] = ACTIONS(1168), - [anon_sym_GT_EQ] = ACTIONS(1168), - [anon_sym_not_DASHin] = ACTIONS(1168), - [anon_sym_starts_DASHwith] = ACTIONS(1168), - [anon_sym_ends_DASHwith] = ACTIONS(1168), - [anon_sym_EQ_TILDE] = ACTIONS(1168), - [anon_sym_BANG_TILDE] = ACTIONS(1168), - [anon_sym_bit_DASHand] = ACTIONS(1168), - [anon_sym_bit_DASHxor] = ACTIONS(1168), - [anon_sym_bit_DASHor] = ACTIONS(1168), - [anon_sym_and] = ACTIONS(1168), - [anon_sym_xor] = ACTIONS(1168), - [anon_sym_or] = ACTIONS(1168), - [anon_sym_not] = ACTIONS(1168), - [anon_sym_DOT_DOT2] = ACTIONS(1168), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1168), - [anon_sym_DOT_DOT_LT] = ACTIONS(1168), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1170), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1170), - [anon_sym_null] = ACTIONS(1168), - [anon_sym_true] = ACTIONS(1168), - [anon_sym_false] = ACTIONS(1168), - [aux_sym__val_number_decimal_token1] = ACTIONS(1168), - [aux_sym__val_number_decimal_token2] = ACTIONS(1168), - [anon_sym_DOT2] = ACTIONS(1168), - [aux_sym__val_number_decimal_token3] = ACTIONS(1168), - [aux_sym__val_number_token1] = ACTIONS(1168), - [aux_sym__val_number_token2] = ACTIONS(1168), - [aux_sym__val_number_token3] = ACTIONS(1168), - [aux_sym__val_number_token4] = ACTIONS(1168), - [aux_sym__val_number_token5] = ACTIONS(1168), - [aux_sym__val_number_token6] = ACTIONS(1168), - [anon_sym_0b] = ACTIONS(1168), - [anon_sym_0o] = ACTIONS(1168), - [anon_sym_0x] = ACTIONS(1168), - [sym_val_date] = ACTIONS(1168), - [anon_sym_DQUOTE] = ACTIONS(1168), - [sym__str_single_quotes] = ACTIONS(1168), - [sym__str_back_ticks] = ACTIONS(1168), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1168), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1168), - [anon_sym_CARET] = ACTIONS(1168), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_alias] = ACTIONS(1061), + [anon_sym_EQ] = ACTIONS(1061), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_let_DASHenv] = ACTIONS(1061), + [anon_sym_mut] = ACTIONS(1061), + [anon_sym_const] = ACTIONS(1061), + [anon_sym_PLUS_EQ] = ACTIONS(1061), + [anon_sym_DASH_EQ] = ACTIONS(1061), + [anon_sym_STAR_EQ] = ACTIONS(1061), + [anon_sym_SLASH_EQ] = ACTIONS(1061), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1061), + [anon_sym_SEMI] = ACTIONS(1061), + [sym_cmd_identifier] = ACTIONS(1061), + [anon_sym_LF] = ACTIONS(1063), + [anon_sym_def] = ACTIONS(1061), + [anon_sym_export_DASHenv] = ACTIONS(1061), + [anon_sym_extern] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_use] = ACTIONS(1061), + [anon_sym_COLON] = ACTIONS(1061), + [anon_sym_COMMA] = ACTIONS(1061), + [anon_sym_LPAREN] = ACTIONS(1061), + [anon_sym_PIPE] = ACTIONS(1061), + [anon_sym_DOLLAR] = ACTIONS(1061), + [anon_sym_error] = ACTIONS(1061), + [anon_sym_list] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_DASH] = ACTIONS(1061), + [anon_sym_break] = ACTIONS(1061), + [anon_sym_continue] = ACTIONS(1061), + [anon_sym_for] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1061), + [anon_sym_loop] = ACTIONS(1061), + [anon_sym_make] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(1061), + [anon_sym_do] = ACTIONS(1061), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_else] = ACTIONS(1061), + [anon_sym_match] = ACTIONS(1061), + [anon_sym_RBRACE] = ACTIONS(1061), + [anon_sym_try] = ACTIONS(1061), + [anon_sym_catch] = ACTIONS(1061), + [anon_sym_return] = ACTIONS(1061), + [anon_sym_source] = ACTIONS(1061), + [anon_sym_source_DASHenv] = ACTIONS(1061), + [anon_sym_register] = ACTIONS(1061), + [anon_sym_hide] = ACTIONS(1061), + [anon_sym_hide_DASHenv] = ACTIONS(1061), + [anon_sym_overlay] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_as] = ACTIONS(1061), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_STAR_STAR] = ACTIONS(1061), + [anon_sym_PLUS_PLUS] = ACTIONS(1061), + [anon_sym_SLASH] = ACTIONS(1061), + [anon_sym_mod] = ACTIONS(1061), + [anon_sym_SLASH_SLASH] = ACTIONS(1061), + [anon_sym_PLUS] = ACTIONS(1061), + [anon_sym_bit_DASHshl] = ACTIONS(1061), + [anon_sym_bit_DASHshr] = ACTIONS(1061), + [anon_sym_EQ_EQ] = ACTIONS(1061), + [anon_sym_BANG_EQ] = ACTIONS(1061), + [anon_sym_LT2] = ACTIONS(1061), + [anon_sym_LT_EQ] = ACTIONS(1061), + [anon_sym_GT_EQ] = ACTIONS(1061), + [anon_sym_not_DASHin] = ACTIONS(1061), + [anon_sym_starts_DASHwith] = ACTIONS(1061), + [anon_sym_ends_DASHwith] = ACTIONS(1061), + [anon_sym_EQ_TILDE] = ACTIONS(1061), + [anon_sym_BANG_TILDE] = ACTIONS(1061), + [anon_sym_bit_DASHand] = ACTIONS(1061), + [anon_sym_bit_DASHxor] = ACTIONS(1061), + [anon_sym_bit_DASHor] = ACTIONS(1061), + [anon_sym_and] = ACTIONS(1061), + [anon_sym_xor] = ACTIONS(1061), + [anon_sym_or] = ACTIONS(1061), + [anon_sym_DOT_DOT2] = ACTIONS(1061), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1063), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1063), + [aux_sym__val_number_decimal_token1] = ACTIONS(1061), + [aux_sym__val_number_decimal_token2] = ACTIONS(1061), + [anon_sym_DOT2] = ACTIONS(1061), + [aux_sym__val_number_decimal_token3] = ACTIONS(1061), + [aux_sym__val_number_token1] = ACTIONS(1061), + [aux_sym__val_number_token2] = ACTIONS(1061), + [aux_sym__val_number_token3] = ACTIONS(1061), + [aux_sym__val_number_token4] = ACTIONS(1061), + [aux_sym__val_number_token5] = ACTIONS(1061), + [aux_sym__val_number_token6] = ACTIONS(1061), + [anon_sym_DQUOTE] = ACTIONS(1061), + [sym__str_single_quotes] = ACTIONS(1061), + [sym__str_back_ticks] = ACTIONS(1061), + [aux_sym__record_key_token2] = ACTIONS(1061), [anon_sym_POUND] = ACTIONS(113), }, [469] = { [sym_comment] = STATE(469), - [ts_builtin_sym_end] = ACTIONS(1196), - [anon_sym_export] = ACTIONS(1194), - [anon_sym_alias] = ACTIONS(1194), - [anon_sym_let] = ACTIONS(1194), - [anon_sym_let_DASHenv] = ACTIONS(1194), - [anon_sym_mut] = ACTIONS(1194), - [anon_sym_const] = ACTIONS(1194), - [anon_sym_SEMI] = ACTIONS(1194), - [sym_cmd_identifier] = ACTIONS(1194), - [anon_sym_LF] = ACTIONS(1196), - [anon_sym_def] = ACTIONS(1194), - [anon_sym_export_DASHenv] = ACTIONS(1194), - [anon_sym_extern] = ACTIONS(1194), - [anon_sym_module] = ACTIONS(1194), - [anon_sym_use] = ACTIONS(1194), - [anon_sym_LBRACK] = ACTIONS(1194), - [anon_sym_LPAREN] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1194), - [anon_sym_error] = ACTIONS(1194), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_break] = ACTIONS(1194), - [anon_sym_continue] = ACTIONS(1194), - [anon_sym_for] = ACTIONS(1194), - [anon_sym_in] = ACTIONS(1198), - [anon_sym_loop] = ACTIONS(1194), - [anon_sym_while] = ACTIONS(1194), - [anon_sym_do] = ACTIONS(1194), - [anon_sym_if] = ACTIONS(1194), - [anon_sym_match] = ACTIONS(1194), - [anon_sym_LBRACE] = ACTIONS(1194), - [anon_sym_DOT_DOT] = ACTIONS(1194), - [anon_sym_try] = ACTIONS(1194), - [anon_sym_return] = ACTIONS(1194), - [anon_sym_source] = ACTIONS(1194), - [anon_sym_source_DASHenv] = ACTIONS(1194), - [anon_sym_register] = ACTIONS(1194), - [anon_sym_hide] = ACTIONS(1194), - [anon_sym_hide_DASHenv] = ACTIONS(1194), - [anon_sym_overlay] = ACTIONS(1194), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_where] = ACTIONS(1194), - [anon_sym_STAR_STAR] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_SLASH] = ACTIONS(1198), - [anon_sym_mod] = ACTIONS(1198), - [anon_sym_SLASH_SLASH] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1198), - [anon_sym_bit_DASHshl] = ACTIONS(1198), - [anon_sym_bit_DASHshr] = ACTIONS(1198), - [anon_sym_EQ_EQ] = ACTIONS(1198), - [anon_sym_BANG_EQ] = ACTIONS(1198), - [anon_sym_LT2] = ACTIONS(1198), - [anon_sym_LT_EQ] = ACTIONS(1198), - [anon_sym_GT_EQ] = ACTIONS(1198), - [anon_sym_not_DASHin] = ACTIONS(1198), - [anon_sym_starts_DASHwith] = ACTIONS(1198), - [anon_sym_ends_DASHwith] = ACTIONS(1198), - [anon_sym_EQ_TILDE] = ACTIONS(1198), - [anon_sym_BANG_TILDE] = ACTIONS(1198), - [anon_sym_bit_DASHand] = ACTIONS(1198), - [anon_sym_bit_DASHxor] = ACTIONS(1198), - [anon_sym_bit_DASHor] = ACTIONS(1198), - [anon_sym_and] = ACTIONS(1198), - [anon_sym_xor] = ACTIONS(1198), - [anon_sym_or] = ACTIONS(1198), - [anon_sym_not] = ACTIONS(1194), - [anon_sym_DOT_DOT2] = ACTIONS(1324), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1194), - [anon_sym_DOT_DOT_LT] = ACTIONS(1194), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1326), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1326), - [anon_sym_null] = ACTIONS(1194), - [anon_sym_true] = ACTIONS(1194), - [anon_sym_false] = ACTIONS(1194), - [aux_sym__val_number_decimal_token1] = ACTIONS(1194), - [aux_sym__val_number_decimal_token2] = ACTIONS(1194), - [anon_sym_DOT2] = ACTIONS(1194), - [aux_sym__val_number_decimal_token3] = ACTIONS(1194), - [aux_sym__val_number_token1] = ACTIONS(1194), - [aux_sym__val_number_token2] = ACTIONS(1194), - [aux_sym__val_number_token3] = ACTIONS(1194), - [aux_sym__val_number_token4] = ACTIONS(1194), - [aux_sym__val_number_token5] = ACTIONS(1194), - [aux_sym__val_number_token6] = ACTIONS(1194), - [anon_sym_0b] = ACTIONS(1194), - [anon_sym_0o] = ACTIONS(1194), - [anon_sym_0x] = ACTIONS(1194), - [sym_val_date] = ACTIONS(1194), - [anon_sym_DQUOTE] = ACTIONS(1194), - [sym__str_single_quotes] = ACTIONS(1194), - [sym__str_back_ticks] = ACTIONS(1194), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1194), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1194), - [anon_sym_CARET] = ACTIONS(1194), + [ts_builtin_sym_end] = ACTIONS(1267), + [anon_sym_export] = ACTIONS(1265), + [anon_sym_alias] = ACTIONS(1265), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_let_DASHenv] = ACTIONS(1265), + [anon_sym_mut] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_SEMI] = ACTIONS(1265), + [sym_cmd_identifier] = ACTIONS(1265), + [anon_sym_LF] = ACTIONS(1267), + [anon_sym_def] = ACTIONS(1265), + [anon_sym_export_DASHenv] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_module] = ACTIONS(1265), + [anon_sym_use] = ACTIONS(1265), + [anon_sym_LBRACK] = ACTIONS(1265), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_DOLLAR] = ACTIONS(1265), + [anon_sym_error] = ACTIONS(1265), + [anon_sym_GT] = ACTIONS(1265), + [anon_sym_DASH_DASH] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1265), + [anon_sym_break] = ACTIONS(1265), + [anon_sym_continue] = ACTIONS(1265), + [anon_sym_for] = ACTIONS(1265), + [anon_sym_in] = ACTIONS(1265), + [anon_sym_loop] = ACTIONS(1265), + [anon_sym_while] = ACTIONS(1265), + [anon_sym_do] = ACTIONS(1265), + [anon_sym_if] = ACTIONS(1265), + [anon_sym_match] = ACTIONS(1265), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_DOT_DOT] = ACTIONS(1265), + [anon_sym_try] = ACTIONS(1265), + [anon_sym_return] = ACTIONS(1265), + [anon_sym_source] = ACTIONS(1265), + [anon_sym_source_DASHenv] = ACTIONS(1265), + [anon_sym_register] = ACTIONS(1265), + [anon_sym_hide] = ACTIONS(1265), + [anon_sym_hide_DASHenv] = ACTIONS(1265), + [anon_sym_overlay] = ACTIONS(1265), + [anon_sym_as] = ACTIONS(1265), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_where] = ACTIONS(1265), + [anon_sym_STAR_STAR] = ACTIONS(1265), + [anon_sym_PLUS_PLUS] = ACTIONS(1265), + [anon_sym_SLASH] = ACTIONS(1265), + [anon_sym_mod] = ACTIONS(1265), + [anon_sym_SLASH_SLASH] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1265), + [anon_sym_bit_DASHshl] = ACTIONS(1265), + [anon_sym_bit_DASHshr] = ACTIONS(1265), + [anon_sym_EQ_EQ] = ACTIONS(1265), + [anon_sym_BANG_EQ] = ACTIONS(1265), + [anon_sym_LT2] = ACTIONS(1265), + [anon_sym_LT_EQ] = ACTIONS(1265), + [anon_sym_GT_EQ] = ACTIONS(1265), + [anon_sym_not_DASHin] = ACTIONS(1265), + [anon_sym_starts_DASHwith] = ACTIONS(1265), + [anon_sym_ends_DASHwith] = ACTIONS(1265), + [anon_sym_EQ_TILDE] = ACTIONS(1265), + [anon_sym_BANG_TILDE] = ACTIONS(1265), + [anon_sym_bit_DASHand] = ACTIONS(1265), + [anon_sym_bit_DASHxor] = ACTIONS(1265), + [anon_sym_bit_DASHor] = ACTIONS(1265), + [anon_sym_and] = ACTIONS(1265), + [anon_sym_xor] = ACTIONS(1265), + [anon_sym_or] = ACTIONS(1265), + [anon_sym_not] = ACTIONS(1265), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1265), + [anon_sym_DOT_DOT_LT] = ACTIONS(1265), + [anon_sym_null] = ACTIONS(1265), + [anon_sym_true] = ACTIONS(1265), + [anon_sym_false] = ACTIONS(1265), + [aux_sym__val_number_decimal_token1] = ACTIONS(1265), + [aux_sym__val_number_decimal_token2] = ACTIONS(1265), + [anon_sym_DOT2] = ACTIONS(1265), + [aux_sym__val_number_decimal_token3] = ACTIONS(1265), + [aux_sym__val_number_token1] = ACTIONS(1265), + [aux_sym__val_number_token2] = ACTIONS(1265), + [aux_sym__val_number_token3] = ACTIONS(1265), + [aux_sym__val_number_token4] = ACTIONS(1265), + [aux_sym__val_number_token5] = ACTIONS(1265), + [aux_sym__val_number_token6] = ACTIONS(1265), + [anon_sym_0b] = ACTIONS(1265), + [anon_sym_0o] = ACTIONS(1265), + [anon_sym_0x] = ACTIONS(1265), + [sym_val_date] = ACTIONS(1265), + [anon_sym_DQUOTE] = ACTIONS(1265), + [sym__str_single_quotes] = ACTIONS(1265), + [sym__str_back_ticks] = ACTIONS(1265), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1265), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(1265), [anon_sym_POUND] = ACTIONS(113), }, [470] = { [sym_comment] = STATE(470), - [anon_sym_export] = ACTIONS(1168), - [anon_sym_alias] = ACTIONS(1168), - [anon_sym_let] = ACTIONS(1168), - [anon_sym_let_DASHenv] = ACTIONS(1168), - [anon_sym_mut] = ACTIONS(1168), - [anon_sym_const] = ACTIONS(1168), - [anon_sym_SEMI] = ACTIONS(1168), - [sym_cmd_identifier] = ACTIONS(1168), - [anon_sym_LF] = ACTIONS(1170), - [anon_sym_def] = ACTIONS(1168), - [anon_sym_export_DASHenv] = ACTIONS(1168), - [anon_sym_extern] = ACTIONS(1168), - [anon_sym_module] = ACTIONS(1168), - [anon_sym_use] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_RPAREN] = ACTIONS(1168), - [anon_sym_DOLLAR] = ACTIONS(1168), - [anon_sym_error] = ACTIONS(1168), - [anon_sym_GT] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1168), - [anon_sym_break] = ACTIONS(1168), - [anon_sym_continue] = ACTIONS(1168), - [anon_sym_for] = ACTIONS(1168), - [anon_sym_in] = ACTIONS(1168), - [anon_sym_loop] = ACTIONS(1168), - [anon_sym_while] = ACTIONS(1168), - [anon_sym_do] = ACTIONS(1168), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_match] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1168), - [anon_sym_RBRACE] = ACTIONS(1168), - [anon_sym_DOT_DOT] = ACTIONS(1168), - [anon_sym_try] = ACTIONS(1168), - [anon_sym_return] = ACTIONS(1168), - [anon_sym_source] = ACTIONS(1168), - [anon_sym_source_DASHenv] = ACTIONS(1168), - [anon_sym_register] = ACTIONS(1168), - [anon_sym_hide] = ACTIONS(1168), - [anon_sym_hide_DASHenv] = ACTIONS(1168), - [anon_sym_overlay] = ACTIONS(1168), - [anon_sym_as] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_where] = ACTIONS(1168), - [anon_sym_STAR_STAR] = ACTIONS(1168), - [anon_sym_PLUS_PLUS] = ACTIONS(1168), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_mod] = ACTIONS(1168), - [anon_sym_SLASH_SLASH] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(1168), - [anon_sym_bit_DASHshl] = ACTIONS(1168), - [anon_sym_bit_DASHshr] = ACTIONS(1168), - [anon_sym_EQ_EQ] = ACTIONS(1168), - [anon_sym_BANG_EQ] = ACTIONS(1168), - [anon_sym_LT2] = ACTIONS(1168), - [anon_sym_LT_EQ] = ACTIONS(1168), - [anon_sym_GT_EQ] = ACTIONS(1168), - [anon_sym_not_DASHin] = ACTIONS(1168), - [anon_sym_starts_DASHwith] = ACTIONS(1168), - [anon_sym_ends_DASHwith] = ACTIONS(1168), - [anon_sym_EQ_TILDE] = ACTIONS(1168), - [anon_sym_BANG_TILDE] = ACTIONS(1168), - [anon_sym_bit_DASHand] = ACTIONS(1168), - [anon_sym_bit_DASHxor] = ACTIONS(1168), - [anon_sym_bit_DASHor] = ACTIONS(1168), - [anon_sym_and] = ACTIONS(1168), - [anon_sym_xor] = ACTIONS(1168), - [anon_sym_or] = ACTIONS(1168), - [anon_sym_not] = ACTIONS(1168), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1168), - [anon_sym_DOT_DOT_LT] = ACTIONS(1168), - [anon_sym_null] = ACTIONS(1168), - [anon_sym_true] = ACTIONS(1168), - [anon_sym_false] = ACTIONS(1168), - [aux_sym__val_number_decimal_token1] = ACTIONS(1168), - [aux_sym__val_number_decimal_token2] = ACTIONS(1168), - [anon_sym_DOT2] = ACTIONS(1168), - [aux_sym__val_number_decimal_token3] = ACTIONS(1168), - [aux_sym__val_number_token1] = ACTIONS(1168), - [aux_sym__val_number_token2] = ACTIONS(1168), - [aux_sym__val_number_token3] = ACTIONS(1168), - [aux_sym__val_number_token4] = ACTIONS(1168), - [aux_sym__val_number_token5] = ACTIONS(1168), - [aux_sym__val_number_token6] = ACTIONS(1168), - [anon_sym_0b] = ACTIONS(1168), - [anon_sym_0o] = ACTIONS(1168), - [anon_sym_0x] = ACTIONS(1168), - [sym_val_date] = ACTIONS(1168), - [anon_sym_DQUOTE] = ACTIONS(1168), - [sym__str_single_quotes] = ACTIONS(1168), - [sym__str_back_ticks] = ACTIONS(1168), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1168), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1168), - [anon_sym_CARET] = ACTIONS(1168), + [ts_builtin_sym_end] = ACTIONS(1267), + [anon_sym_export] = ACTIONS(1265), + [anon_sym_alias] = ACTIONS(1265), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_let_DASHenv] = ACTIONS(1265), + [anon_sym_mut] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_SEMI] = ACTIONS(1265), + [sym_cmd_identifier] = ACTIONS(1265), + [anon_sym_LF] = ACTIONS(1267), + [anon_sym_def] = ACTIONS(1265), + [anon_sym_export_DASHenv] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_module] = ACTIONS(1265), + [anon_sym_use] = ACTIONS(1265), + [anon_sym_LBRACK] = ACTIONS(1265), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_DOLLAR] = ACTIONS(1265), + [anon_sym_error] = ACTIONS(1265), + [anon_sym_GT] = ACTIONS(1265), + [anon_sym_DASH_DASH] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1265), + [anon_sym_break] = ACTIONS(1265), + [anon_sym_continue] = ACTIONS(1265), + [anon_sym_for] = ACTIONS(1265), + [anon_sym_in] = ACTIONS(1265), + [anon_sym_loop] = ACTIONS(1265), + [anon_sym_while] = ACTIONS(1265), + [anon_sym_do] = ACTIONS(1265), + [anon_sym_if] = ACTIONS(1265), + [anon_sym_match] = ACTIONS(1265), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_DOT_DOT] = ACTIONS(1265), + [anon_sym_try] = ACTIONS(1265), + [anon_sym_return] = ACTIONS(1265), + [anon_sym_source] = ACTIONS(1265), + [anon_sym_source_DASHenv] = ACTIONS(1265), + [anon_sym_register] = ACTIONS(1265), + [anon_sym_hide] = ACTIONS(1265), + [anon_sym_hide_DASHenv] = ACTIONS(1265), + [anon_sym_overlay] = ACTIONS(1265), + [anon_sym_as] = ACTIONS(1265), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_where] = ACTIONS(1265), + [anon_sym_STAR_STAR] = ACTIONS(1265), + [anon_sym_PLUS_PLUS] = ACTIONS(1265), + [anon_sym_SLASH] = ACTIONS(1265), + [anon_sym_mod] = ACTIONS(1265), + [anon_sym_SLASH_SLASH] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1265), + [anon_sym_bit_DASHshl] = ACTIONS(1265), + [anon_sym_bit_DASHshr] = ACTIONS(1265), + [anon_sym_EQ_EQ] = ACTIONS(1265), + [anon_sym_BANG_EQ] = ACTIONS(1265), + [anon_sym_LT2] = ACTIONS(1265), + [anon_sym_LT_EQ] = ACTIONS(1265), + [anon_sym_GT_EQ] = ACTIONS(1265), + [anon_sym_not_DASHin] = ACTIONS(1265), + [anon_sym_starts_DASHwith] = ACTIONS(1265), + [anon_sym_ends_DASHwith] = ACTIONS(1265), + [anon_sym_EQ_TILDE] = ACTIONS(1265), + [anon_sym_BANG_TILDE] = ACTIONS(1265), + [anon_sym_bit_DASHand] = ACTIONS(1265), + [anon_sym_bit_DASHxor] = ACTIONS(1265), + [anon_sym_bit_DASHor] = ACTIONS(1265), + [anon_sym_and] = ACTIONS(1265), + [anon_sym_xor] = ACTIONS(1265), + [anon_sym_or] = ACTIONS(1265), + [anon_sym_not] = ACTIONS(1265), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1265), + [anon_sym_DOT_DOT_LT] = ACTIONS(1265), + [anon_sym_null] = ACTIONS(1265), + [anon_sym_true] = ACTIONS(1265), + [anon_sym_false] = ACTIONS(1265), + [aux_sym__val_number_decimal_token1] = ACTIONS(1265), + [aux_sym__val_number_decimal_token2] = ACTIONS(1265), + [anon_sym_DOT2] = ACTIONS(1265), + [aux_sym__val_number_decimal_token3] = ACTIONS(1265), + [aux_sym__val_number_token1] = ACTIONS(1265), + [aux_sym__val_number_token2] = ACTIONS(1265), + [aux_sym__val_number_token3] = ACTIONS(1265), + [aux_sym__val_number_token4] = ACTIONS(1265), + [aux_sym__val_number_token5] = ACTIONS(1265), + [aux_sym__val_number_token6] = ACTIONS(1265), + [anon_sym_0b] = ACTIONS(1265), + [anon_sym_0o] = ACTIONS(1265), + [anon_sym_0x] = ACTIONS(1265), + [sym_val_date] = ACTIONS(1265), + [anon_sym_DQUOTE] = ACTIONS(1265), + [sym__str_single_quotes] = ACTIONS(1265), + [sym__str_back_ticks] = ACTIONS(1265), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1265), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(1265), [anon_sym_POUND] = ACTIONS(113), }, [471] = { [sym_comment] = STATE(471), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_error] = ACTIONS(936), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_RBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_where] = ACTIONS(936), - [anon_sym_STAR_STAR] = ACTIONS(936), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(936), - [anon_sym_SLASH_SLASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(936), - [anon_sym_bit_DASHshr] = ACTIONS(936), - [anon_sym_EQ_EQ] = ACTIONS(936), - [anon_sym_BANG_EQ] = ACTIONS(936), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(936), - [anon_sym_GT_EQ] = ACTIONS(936), - [anon_sym_not_DASHin] = ACTIONS(936), - [anon_sym_starts_DASHwith] = ACTIONS(936), - [anon_sym_ends_DASHwith] = ACTIONS(936), - [anon_sym_EQ_TILDE] = ACTIONS(936), - [anon_sym_BANG_TILDE] = ACTIONS(936), - [anon_sym_bit_DASHand] = ACTIONS(936), - [anon_sym_bit_DASHxor] = ACTIONS(936), - [anon_sym_bit_DASHor] = ACTIONS(936), - [anon_sym_and] = ACTIONS(936), - [anon_sym_xor] = ACTIONS(936), - [anon_sym_or] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [aux_sym__immediate_decimal_token1] = ACTIONS(1328), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [aux_sym_unquoted_token2] = ACTIONS(1330), + [ts_builtin_sym_end] = ACTIONS(1070), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_alias] = ACTIONS(1068), + [anon_sym_let] = ACTIONS(1068), + [anon_sym_let_DASHenv] = ACTIONS(1068), + [anon_sym_mut] = ACTIONS(1068), + [anon_sym_const] = ACTIONS(1068), + [anon_sym_SEMI] = ACTIONS(1068), + [sym_cmd_identifier] = ACTIONS(1068), + [anon_sym_LF] = ACTIONS(1070), + [anon_sym_def] = ACTIONS(1068), + [anon_sym_export_DASHenv] = ACTIONS(1068), + [anon_sym_extern] = ACTIONS(1068), + [anon_sym_module] = ACTIONS(1068), + [anon_sym_use] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(1068), + [anon_sym_LPAREN] = ACTIONS(1068), + [anon_sym_DOLLAR] = ACTIONS(1068), + [anon_sym_error] = ACTIONS(1068), + [anon_sym_GT] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1068), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_break] = ACTIONS(1068), + [anon_sym_continue] = ACTIONS(1068), + [anon_sym_for] = ACTIONS(1068), + [anon_sym_in] = ACTIONS(1068), + [anon_sym_loop] = ACTIONS(1068), + [anon_sym_while] = ACTIONS(1068), + [anon_sym_do] = ACTIONS(1068), + [anon_sym_if] = ACTIONS(1068), + [anon_sym_match] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_DOT_DOT] = ACTIONS(1068), + [anon_sym_try] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1068), + [anon_sym_source] = ACTIONS(1068), + [anon_sym_source_DASHenv] = ACTIONS(1068), + [anon_sym_register] = ACTIONS(1068), + [anon_sym_hide] = ACTIONS(1068), + [anon_sym_hide_DASHenv] = ACTIONS(1068), + [anon_sym_overlay] = ACTIONS(1068), + [anon_sym_as] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_where] = ACTIONS(1068), + [anon_sym_STAR_STAR] = ACTIONS(1068), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_SLASH] = ACTIONS(1068), + [anon_sym_mod] = ACTIONS(1068), + [anon_sym_SLASH_SLASH] = ACTIONS(1068), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_bit_DASHshl] = ACTIONS(1068), + [anon_sym_bit_DASHshr] = ACTIONS(1068), + [anon_sym_EQ_EQ] = ACTIONS(1068), + [anon_sym_BANG_EQ] = ACTIONS(1068), + [anon_sym_LT2] = ACTIONS(1068), + [anon_sym_LT_EQ] = ACTIONS(1068), + [anon_sym_GT_EQ] = ACTIONS(1068), + [anon_sym_not_DASHin] = ACTIONS(1068), + [anon_sym_starts_DASHwith] = ACTIONS(1068), + [anon_sym_ends_DASHwith] = ACTIONS(1068), + [anon_sym_EQ_TILDE] = ACTIONS(1068), + [anon_sym_BANG_TILDE] = ACTIONS(1068), + [anon_sym_bit_DASHand] = ACTIONS(1068), + [anon_sym_bit_DASHxor] = ACTIONS(1068), + [anon_sym_bit_DASHor] = ACTIONS(1068), + [anon_sym_and] = ACTIONS(1068), + [anon_sym_xor] = ACTIONS(1068), + [anon_sym_or] = ACTIONS(1068), + [anon_sym_not] = ACTIONS(1068), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1068), + [anon_sym_DOT_DOT_LT] = ACTIONS(1068), + [anon_sym_null] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1068), + [anon_sym_false] = ACTIONS(1068), + [aux_sym__val_number_decimal_token1] = ACTIONS(1068), + [aux_sym__val_number_decimal_token2] = ACTIONS(1068), + [anon_sym_DOT2] = ACTIONS(1068), + [aux_sym__val_number_decimal_token3] = ACTIONS(1068), + [aux_sym__val_number_token1] = ACTIONS(1068), + [aux_sym__val_number_token2] = ACTIONS(1068), + [aux_sym__val_number_token3] = ACTIONS(1068), + [aux_sym__val_number_token4] = ACTIONS(1068), + [aux_sym__val_number_token5] = ACTIONS(1068), + [aux_sym__val_number_token6] = ACTIONS(1068), + [anon_sym_0b] = ACTIONS(1068), + [anon_sym_0o] = ACTIONS(1068), + [anon_sym_0x] = ACTIONS(1068), + [sym_val_date] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(1068), + [sym__str_single_quotes] = ACTIONS(1068), + [sym__str_back_ticks] = ACTIONS(1068), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1068), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1068), + [anon_sym_CARET] = ACTIONS(1068), [anon_sym_POUND] = ACTIONS(113), }, [472] = { [sym_comment] = STATE(472), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_alias] = ACTIONS(1332), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_let_DASHenv] = ACTIONS(1332), - [anon_sym_mut] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1332), - [sym_cmd_identifier] = ACTIONS(1332), - [anon_sym_LF] = ACTIONS(1334), - [anon_sym_def] = ACTIONS(1332), - [anon_sym_export_DASHenv] = ACTIONS(1332), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_use] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1332), - [anon_sym_RPAREN] = ACTIONS(1332), - [anon_sym_DOLLAR] = ACTIONS(1332), - [anon_sym_error] = ACTIONS(1332), - [anon_sym_GT] = ACTIONS(1332), - [anon_sym_DASH_DASH] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_in] = ACTIONS(1332), - [anon_sym_loop] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_do] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_match] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_RBRACE] = ACTIONS(1332), - [anon_sym_DOT_DOT] = ACTIONS(1332), - [anon_sym_try] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_source] = ACTIONS(1332), - [anon_sym_source_DASHenv] = ACTIONS(1332), - [anon_sym_register] = ACTIONS(1332), - [anon_sym_hide] = ACTIONS(1332), - [anon_sym_hide_DASHenv] = ACTIONS(1332), - [anon_sym_overlay] = ACTIONS(1332), - [anon_sym_as] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_where] = ACTIONS(1332), - [anon_sym_STAR_STAR] = ACTIONS(1332), - [anon_sym_PLUS_PLUS] = ACTIONS(1332), - [anon_sym_SLASH] = ACTIONS(1332), - [anon_sym_mod] = ACTIONS(1332), - [anon_sym_SLASH_SLASH] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_bit_DASHshl] = ACTIONS(1332), - [anon_sym_bit_DASHshr] = ACTIONS(1332), - [anon_sym_EQ_EQ] = ACTIONS(1332), - [anon_sym_BANG_EQ] = ACTIONS(1332), - [anon_sym_LT2] = ACTIONS(1332), - [anon_sym_LT_EQ] = ACTIONS(1332), - [anon_sym_GT_EQ] = ACTIONS(1332), - [anon_sym_not_DASHin] = ACTIONS(1332), - [anon_sym_starts_DASHwith] = ACTIONS(1332), - [anon_sym_ends_DASHwith] = ACTIONS(1332), - [anon_sym_EQ_TILDE] = ACTIONS(1332), - [anon_sym_BANG_TILDE] = ACTIONS(1332), - [anon_sym_bit_DASHand] = ACTIONS(1332), - [anon_sym_bit_DASHxor] = ACTIONS(1332), - [anon_sym_bit_DASHor] = ACTIONS(1332), - [anon_sym_and] = ACTIONS(1332), - [anon_sym_xor] = ACTIONS(1332), - [anon_sym_or] = ACTIONS(1332), - [anon_sym_not] = ACTIONS(1332), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1332), - [anon_sym_DOT_DOT_LT] = ACTIONS(1332), - [anon_sym_null] = ACTIONS(1332), - [anon_sym_true] = ACTIONS(1332), - [anon_sym_false] = ACTIONS(1332), - [aux_sym__val_number_decimal_token1] = ACTIONS(1332), - [aux_sym__val_number_decimal_token2] = ACTIONS(1332), - [anon_sym_DOT2] = ACTIONS(1332), - [aux_sym__val_number_decimal_token3] = ACTIONS(1332), - [aux_sym__val_number_token1] = ACTIONS(1332), - [aux_sym__val_number_token2] = ACTIONS(1332), - [aux_sym__val_number_token3] = ACTIONS(1332), - [aux_sym__val_number_token4] = ACTIONS(1332), - [aux_sym__val_number_token5] = ACTIONS(1332), - [aux_sym__val_number_token6] = ACTIONS(1332), - [anon_sym_0b] = ACTIONS(1332), - [anon_sym_0o] = ACTIONS(1332), - [anon_sym_0x] = ACTIONS(1332), - [sym_val_date] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym__str_single_quotes] = ACTIONS(1332), - [sym__str_back_ticks] = ACTIONS(1332), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1332), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1332), - [anon_sym_CARET] = ACTIONS(1332), + [ts_builtin_sym_end] = ACTIONS(1273), + [anon_sym_export] = ACTIONS(1271), + [anon_sym_alias] = ACTIONS(1271), + [anon_sym_let] = ACTIONS(1271), + [anon_sym_let_DASHenv] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(1271), + [anon_sym_const] = ACTIONS(1271), + [anon_sym_SEMI] = ACTIONS(1271), + [sym_cmd_identifier] = ACTIONS(1271), + [anon_sym_LF] = ACTIONS(1273), + [anon_sym_def] = ACTIONS(1271), + [anon_sym_export_DASHenv] = ACTIONS(1271), + [anon_sym_extern] = ACTIONS(1271), + [anon_sym_module] = ACTIONS(1271), + [anon_sym_use] = ACTIONS(1271), + [anon_sym_LBRACK] = ACTIONS(1271), + [anon_sym_LPAREN] = ACTIONS(1271), + [anon_sym_DOLLAR] = ACTIONS(1271), + [anon_sym_error] = ACTIONS(1271), + [anon_sym_GT] = ACTIONS(1271), + [anon_sym_DASH_DASH] = ACTIONS(1271), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_break] = ACTIONS(1271), + [anon_sym_continue] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1271), + [anon_sym_in] = ACTIONS(1271), + [anon_sym_loop] = ACTIONS(1271), + [anon_sym_while] = ACTIONS(1271), + [anon_sym_do] = ACTIONS(1271), + [anon_sym_if] = ACTIONS(1271), + [anon_sym_match] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_DOT_DOT] = ACTIONS(1271), + [anon_sym_try] = ACTIONS(1271), + [anon_sym_return] = ACTIONS(1271), + [anon_sym_source] = ACTIONS(1271), + [anon_sym_source_DASHenv] = ACTIONS(1271), + [anon_sym_register] = ACTIONS(1271), + [anon_sym_hide] = ACTIONS(1271), + [anon_sym_hide_DASHenv] = ACTIONS(1271), + [anon_sym_overlay] = ACTIONS(1271), + [anon_sym_as] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(1271), + [anon_sym_where] = ACTIONS(1271), + [anon_sym_STAR_STAR] = ACTIONS(1271), + [anon_sym_PLUS_PLUS] = ACTIONS(1271), + [anon_sym_SLASH] = ACTIONS(1271), + [anon_sym_mod] = ACTIONS(1271), + [anon_sym_SLASH_SLASH] = ACTIONS(1271), + [anon_sym_PLUS] = ACTIONS(1271), + [anon_sym_bit_DASHshl] = ACTIONS(1271), + [anon_sym_bit_DASHshr] = ACTIONS(1271), + [anon_sym_EQ_EQ] = ACTIONS(1271), + [anon_sym_BANG_EQ] = ACTIONS(1271), + [anon_sym_LT2] = ACTIONS(1271), + [anon_sym_LT_EQ] = ACTIONS(1271), + [anon_sym_GT_EQ] = ACTIONS(1271), + [anon_sym_not_DASHin] = ACTIONS(1271), + [anon_sym_starts_DASHwith] = ACTIONS(1271), + [anon_sym_ends_DASHwith] = ACTIONS(1271), + [anon_sym_EQ_TILDE] = ACTIONS(1271), + [anon_sym_BANG_TILDE] = ACTIONS(1271), + [anon_sym_bit_DASHand] = ACTIONS(1271), + [anon_sym_bit_DASHxor] = ACTIONS(1271), + [anon_sym_bit_DASHor] = ACTIONS(1271), + [anon_sym_and] = ACTIONS(1271), + [anon_sym_xor] = ACTIONS(1271), + [anon_sym_or] = ACTIONS(1271), + [anon_sym_not] = ACTIONS(1271), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1271), + [anon_sym_DOT_DOT_LT] = ACTIONS(1271), + [anon_sym_null] = ACTIONS(1271), + [anon_sym_true] = ACTIONS(1271), + [anon_sym_false] = ACTIONS(1271), + [aux_sym__val_number_decimal_token1] = ACTIONS(1271), + [aux_sym__val_number_decimal_token2] = ACTIONS(1271), + [anon_sym_DOT2] = ACTIONS(1271), + [aux_sym__val_number_decimal_token3] = ACTIONS(1271), + [aux_sym__val_number_token1] = ACTIONS(1271), + [aux_sym__val_number_token2] = ACTIONS(1271), + [aux_sym__val_number_token3] = ACTIONS(1271), + [aux_sym__val_number_token4] = ACTIONS(1271), + [aux_sym__val_number_token5] = ACTIONS(1271), + [aux_sym__val_number_token6] = ACTIONS(1271), + [anon_sym_0b] = ACTIONS(1271), + [anon_sym_0o] = ACTIONS(1271), + [anon_sym_0x] = ACTIONS(1271), + [sym_val_date] = ACTIONS(1271), + [anon_sym_DQUOTE] = ACTIONS(1271), + [sym__str_single_quotes] = ACTIONS(1271), + [sym__str_back_ticks] = ACTIONS(1271), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1271), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1271), + [anon_sym_CARET] = ACTIONS(1271), [anon_sym_POUND] = ACTIONS(113), }, [473] = { [sym_comment] = STATE(473), - [anon_sym_export] = ACTIONS(1336), - [anon_sym_alias] = ACTIONS(1336), - [anon_sym_let] = ACTIONS(1336), - [anon_sym_let_DASHenv] = ACTIONS(1336), - [anon_sym_mut] = ACTIONS(1336), - [anon_sym_const] = ACTIONS(1336), - [anon_sym_SEMI] = ACTIONS(1336), - [sym_cmd_identifier] = ACTIONS(1336), - [anon_sym_LF] = ACTIONS(1338), - [anon_sym_def] = ACTIONS(1336), - [anon_sym_export_DASHenv] = ACTIONS(1336), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym_module] = ACTIONS(1336), - [anon_sym_use] = ACTIONS(1336), - [anon_sym_LBRACK] = ACTIONS(1336), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_RPAREN] = ACTIONS(1336), - [anon_sym_DOLLAR] = ACTIONS(1336), - [anon_sym_error] = ACTIONS(1336), - [anon_sym_GT] = ACTIONS(1336), - [anon_sym_DASH_DASH] = ACTIONS(1336), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_break] = ACTIONS(1336), - [anon_sym_continue] = ACTIONS(1336), - [anon_sym_for] = ACTIONS(1336), - [anon_sym_in] = ACTIONS(1336), - [anon_sym_loop] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1336), - [anon_sym_do] = ACTIONS(1336), - [anon_sym_if] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_RBRACE] = ACTIONS(1336), - [anon_sym_DOT_DOT] = ACTIONS(1336), - [anon_sym_try] = ACTIONS(1336), - [anon_sym_return] = ACTIONS(1336), - [anon_sym_source] = ACTIONS(1336), - [anon_sym_source_DASHenv] = ACTIONS(1336), - [anon_sym_register] = ACTIONS(1336), - [anon_sym_hide] = ACTIONS(1336), - [anon_sym_hide_DASHenv] = ACTIONS(1336), - [anon_sym_overlay] = ACTIONS(1336), - [anon_sym_as] = ACTIONS(1336), - [anon_sym_STAR] = ACTIONS(1336), - [anon_sym_where] = ACTIONS(1336), - [anon_sym_STAR_STAR] = ACTIONS(1336), - [anon_sym_PLUS_PLUS] = ACTIONS(1336), - [anon_sym_SLASH] = ACTIONS(1336), - [anon_sym_mod] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(1336), - [anon_sym_PLUS] = ACTIONS(1336), - [anon_sym_bit_DASHshl] = ACTIONS(1336), - [anon_sym_bit_DASHshr] = ACTIONS(1336), - [anon_sym_EQ_EQ] = ACTIONS(1336), - [anon_sym_BANG_EQ] = ACTIONS(1336), - [anon_sym_LT2] = ACTIONS(1336), - [anon_sym_LT_EQ] = ACTIONS(1336), - [anon_sym_GT_EQ] = ACTIONS(1336), - [anon_sym_not_DASHin] = ACTIONS(1336), - [anon_sym_starts_DASHwith] = ACTIONS(1336), - [anon_sym_ends_DASHwith] = ACTIONS(1336), - [anon_sym_EQ_TILDE] = ACTIONS(1336), - [anon_sym_BANG_TILDE] = ACTIONS(1336), - [anon_sym_bit_DASHand] = ACTIONS(1336), - [anon_sym_bit_DASHxor] = ACTIONS(1336), - [anon_sym_bit_DASHor] = ACTIONS(1336), - [anon_sym_and] = ACTIONS(1336), - [anon_sym_xor] = ACTIONS(1336), - [anon_sym_or] = ACTIONS(1336), - [anon_sym_not] = ACTIONS(1336), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1336), - [anon_sym_DOT_DOT_LT] = ACTIONS(1336), - [anon_sym_null] = ACTIONS(1336), - [anon_sym_true] = ACTIONS(1336), - [anon_sym_false] = ACTIONS(1336), - [aux_sym__val_number_decimal_token1] = ACTIONS(1336), - [aux_sym__val_number_decimal_token2] = ACTIONS(1336), - [anon_sym_DOT2] = ACTIONS(1336), - [aux_sym__val_number_decimal_token3] = ACTIONS(1336), - [aux_sym__val_number_token1] = ACTIONS(1336), - [aux_sym__val_number_token2] = ACTIONS(1336), - [aux_sym__val_number_token3] = ACTIONS(1336), - [aux_sym__val_number_token4] = ACTIONS(1336), - [aux_sym__val_number_token5] = ACTIONS(1336), - [aux_sym__val_number_token6] = ACTIONS(1336), - [anon_sym_0b] = ACTIONS(1336), - [anon_sym_0o] = ACTIONS(1336), - [anon_sym_0x] = ACTIONS(1336), - [sym_val_date] = ACTIONS(1336), - [anon_sym_DQUOTE] = ACTIONS(1336), - [sym__str_single_quotes] = ACTIONS(1336), - [sym__str_back_ticks] = ACTIONS(1336), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1336), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1336), - [anon_sym_CARET] = ACTIONS(1336), + [ts_builtin_sym_end] = ACTIONS(1277), + [anon_sym_export] = ACTIONS(1275), + [anon_sym_alias] = ACTIONS(1275), + [anon_sym_let] = ACTIONS(1275), + [anon_sym_let_DASHenv] = ACTIONS(1275), + [anon_sym_mut] = ACTIONS(1275), + [anon_sym_const] = ACTIONS(1275), + [anon_sym_SEMI] = ACTIONS(1275), + [sym_cmd_identifier] = ACTIONS(1275), + [anon_sym_LF] = ACTIONS(1277), + [anon_sym_def] = ACTIONS(1275), + [anon_sym_export_DASHenv] = ACTIONS(1275), + [anon_sym_extern] = ACTIONS(1275), + [anon_sym_module] = ACTIONS(1275), + [anon_sym_use] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(1275), + [anon_sym_DOLLAR] = ACTIONS(1275), + [anon_sym_error] = ACTIONS(1275), + [anon_sym_GT] = ACTIONS(1275), + [anon_sym_DASH_DASH] = ACTIONS(1275), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_break] = ACTIONS(1275), + [anon_sym_continue] = ACTIONS(1275), + [anon_sym_for] = ACTIONS(1275), + [anon_sym_in] = ACTIONS(1275), + [anon_sym_loop] = ACTIONS(1275), + [anon_sym_while] = ACTIONS(1275), + [anon_sym_do] = ACTIONS(1275), + [anon_sym_if] = ACTIONS(1275), + [anon_sym_match] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(1275), + [anon_sym_DOT_DOT] = ACTIONS(1275), + [anon_sym_try] = ACTIONS(1275), + [anon_sym_return] = ACTIONS(1275), + [anon_sym_source] = ACTIONS(1275), + [anon_sym_source_DASHenv] = ACTIONS(1275), + [anon_sym_register] = ACTIONS(1275), + [anon_sym_hide] = ACTIONS(1275), + [anon_sym_hide_DASHenv] = ACTIONS(1275), + [anon_sym_overlay] = ACTIONS(1275), + [anon_sym_as] = ACTIONS(1275), + [anon_sym_STAR] = ACTIONS(1275), + [anon_sym_where] = ACTIONS(1275), + [anon_sym_STAR_STAR] = ACTIONS(1275), + [anon_sym_PLUS_PLUS] = ACTIONS(1275), + [anon_sym_SLASH] = ACTIONS(1275), + [anon_sym_mod] = ACTIONS(1275), + [anon_sym_SLASH_SLASH] = ACTIONS(1275), + [anon_sym_PLUS] = ACTIONS(1275), + [anon_sym_bit_DASHshl] = ACTIONS(1275), + [anon_sym_bit_DASHshr] = ACTIONS(1275), + [anon_sym_EQ_EQ] = ACTIONS(1275), + [anon_sym_BANG_EQ] = ACTIONS(1275), + [anon_sym_LT2] = ACTIONS(1275), + [anon_sym_LT_EQ] = ACTIONS(1275), + [anon_sym_GT_EQ] = ACTIONS(1275), + [anon_sym_not_DASHin] = ACTIONS(1275), + [anon_sym_starts_DASHwith] = ACTIONS(1275), + [anon_sym_ends_DASHwith] = ACTIONS(1275), + [anon_sym_EQ_TILDE] = ACTIONS(1275), + [anon_sym_BANG_TILDE] = ACTIONS(1275), + [anon_sym_bit_DASHand] = ACTIONS(1275), + [anon_sym_bit_DASHxor] = ACTIONS(1275), + [anon_sym_bit_DASHor] = ACTIONS(1275), + [anon_sym_and] = ACTIONS(1275), + [anon_sym_xor] = ACTIONS(1275), + [anon_sym_or] = ACTIONS(1275), + [anon_sym_not] = ACTIONS(1275), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1275), + [anon_sym_DOT_DOT_LT] = ACTIONS(1275), + [anon_sym_null] = ACTIONS(1275), + [anon_sym_true] = ACTIONS(1275), + [anon_sym_false] = ACTIONS(1275), + [aux_sym__val_number_decimal_token1] = ACTIONS(1275), + [aux_sym__val_number_decimal_token2] = ACTIONS(1275), + [anon_sym_DOT2] = ACTIONS(1275), + [aux_sym__val_number_decimal_token3] = ACTIONS(1275), + [aux_sym__val_number_token1] = ACTIONS(1275), + [aux_sym__val_number_token2] = ACTIONS(1275), + [aux_sym__val_number_token3] = ACTIONS(1275), + [aux_sym__val_number_token4] = ACTIONS(1275), + [aux_sym__val_number_token5] = ACTIONS(1275), + [aux_sym__val_number_token6] = ACTIONS(1275), + [anon_sym_0b] = ACTIONS(1275), + [anon_sym_0o] = ACTIONS(1275), + [anon_sym_0x] = ACTIONS(1275), + [sym_val_date] = ACTIONS(1275), + [anon_sym_DQUOTE] = ACTIONS(1275), + [sym__str_single_quotes] = ACTIONS(1275), + [sym__str_back_ticks] = ACTIONS(1275), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1275), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1275), + [anon_sym_CARET] = ACTIONS(1275), [anon_sym_POUND] = ACTIONS(113), }, [474] = { [sym_comment] = STATE(474), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_alias] = ACTIONS(1070), - [anon_sym_let] = ACTIONS(1070), - [anon_sym_let_DASHenv] = ACTIONS(1070), - [anon_sym_mut] = ACTIONS(1070), - [anon_sym_const] = ACTIONS(1070), - [anon_sym_SEMI] = ACTIONS(1070), - [sym_cmd_identifier] = ACTIONS(1070), - [anon_sym_LF] = ACTIONS(1072), - [anon_sym_def] = ACTIONS(1070), - [anon_sym_export_DASHenv] = ACTIONS(1070), - [anon_sym_extern] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_use] = ACTIONS(1070), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_RPAREN] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_error] = ACTIONS(1070), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_in] = ACTIONS(1070), - [anon_sym_loop] = ACTIONS(1070), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_do] = ACTIONS(1070), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_match] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_RBRACE] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_try] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_source] = ACTIONS(1070), - [anon_sym_source_DASHenv] = ACTIONS(1070), - [anon_sym_register] = ACTIONS(1070), - [anon_sym_hide] = ACTIONS(1070), - [anon_sym_hide_DASHenv] = ACTIONS(1070), - [anon_sym_overlay] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_where] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(1340), - [anon_sym_STAR_STAR] = ACTIONS(1070), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_mod] = ACTIONS(1070), - [anon_sym_SLASH_SLASH] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_bit_DASHshl] = ACTIONS(1070), - [anon_sym_bit_DASHshr] = ACTIONS(1070), - [anon_sym_EQ_EQ] = ACTIONS(1070), - [anon_sym_BANG_EQ] = ACTIONS(1070), - [anon_sym_LT2] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1070), - [anon_sym_GT_EQ] = ACTIONS(1070), - [anon_sym_not_DASHin] = ACTIONS(1070), - [anon_sym_starts_DASHwith] = ACTIONS(1070), - [anon_sym_ends_DASHwith] = ACTIONS(1070), - [anon_sym_EQ_TILDE] = ACTIONS(1070), - [anon_sym_BANG_TILDE] = ACTIONS(1070), - [anon_sym_bit_DASHand] = ACTIONS(1070), - [anon_sym_bit_DASHxor] = ACTIONS(1070), - [anon_sym_bit_DASHor] = ACTIONS(1070), - [anon_sym_and] = ACTIONS(1070), - [anon_sym_xor] = ACTIONS(1070), - [anon_sym_or] = ACTIONS(1070), - [anon_sym_not] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_null] = ACTIONS(1070), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1070), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), - [anon_sym_CARET] = ACTIONS(1070), + [ts_builtin_sym_end] = ACTIONS(1035), + [anon_sym_export] = ACTIONS(1033), + [anon_sym_alias] = ACTIONS(1033), + [anon_sym_let] = ACTIONS(1033), + [anon_sym_let_DASHenv] = ACTIONS(1033), + [anon_sym_mut] = ACTIONS(1033), + [anon_sym_const] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(1033), + [sym_cmd_identifier] = ACTIONS(1033), + [anon_sym_LF] = ACTIONS(1035), + [anon_sym_def] = ACTIONS(1033), + [anon_sym_export_DASHenv] = ACTIONS(1033), + [anon_sym_extern] = ACTIONS(1033), + [anon_sym_module] = ACTIONS(1033), + [anon_sym_use] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1033), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_error] = ACTIONS(1033), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1033), + [anon_sym_break] = ACTIONS(1033), + [anon_sym_continue] = ACTIONS(1033), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_in] = ACTIONS(1033), + [anon_sym_loop] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(1033), + [anon_sym_do] = ACTIONS(1033), + [anon_sym_if] = ACTIONS(1033), + [anon_sym_match] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_DOT_DOT] = ACTIONS(1033), + [anon_sym_try] = ACTIONS(1033), + [anon_sym_return] = ACTIONS(1033), + [anon_sym_source] = ACTIONS(1033), + [anon_sym_source_DASHenv] = ACTIONS(1033), + [anon_sym_register] = ACTIONS(1033), + [anon_sym_hide] = ACTIONS(1033), + [anon_sym_hide_DASHenv] = ACTIONS(1033), + [anon_sym_overlay] = ACTIONS(1033), + [anon_sym_as] = ACTIONS(1033), + [anon_sym_STAR] = ACTIONS(1033), + [anon_sym_where] = ACTIONS(1033), + [anon_sym_STAR_STAR] = ACTIONS(1033), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_SLASH] = ACTIONS(1033), + [anon_sym_mod] = ACTIONS(1033), + [anon_sym_SLASH_SLASH] = ACTIONS(1033), + [anon_sym_PLUS] = ACTIONS(1033), + [anon_sym_bit_DASHshl] = ACTIONS(1033), + [anon_sym_bit_DASHshr] = ACTIONS(1033), + [anon_sym_EQ_EQ] = ACTIONS(1033), + [anon_sym_BANG_EQ] = ACTIONS(1033), + [anon_sym_LT2] = ACTIONS(1033), + [anon_sym_LT_EQ] = ACTIONS(1033), + [anon_sym_GT_EQ] = ACTIONS(1033), + [anon_sym_not_DASHin] = ACTIONS(1033), + [anon_sym_starts_DASHwith] = ACTIONS(1033), + [anon_sym_ends_DASHwith] = ACTIONS(1033), + [anon_sym_EQ_TILDE] = ACTIONS(1033), + [anon_sym_BANG_TILDE] = ACTIONS(1033), + [anon_sym_bit_DASHand] = ACTIONS(1033), + [anon_sym_bit_DASHxor] = ACTIONS(1033), + [anon_sym_bit_DASHor] = ACTIONS(1033), + [anon_sym_and] = ACTIONS(1033), + [anon_sym_xor] = ACTIONS(1033), + [anon_sym_or] = ACTIONS(1033), + [anon_sym_not] = ACTIONS(1033), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1033), + [anon_sym_DOT_DOT_LT] = ACTIONS(1033), + [anon_sym_null] = ACTIONS(1033), + [anon_sym_true] = ACTIONS(1033), + [anon_sym_false] = ACTIONS(1033), + [aux_sym__val_number_decimal_token1] = ACTIONS(1033), + [aux_sym__val_number_decimal_token2] = ACTIONS(1033), + [anon_sym_DOT2] = ACTIONS(1033), + [aux_sym__val_number_decimal_token3] = ACTIONS(1033), + [aux_sym__val_number_token1] = ACTIONS(1033), + [aux_sym__val_number_token2] = ACTIONS(1033), + [aux_sym__val_number_token3] = ACTIONS(1033), + [aux_sym__val_number_token4] = ACTIONS(1033), + [aux_sym__val_number_token5] = ACTIONS(1033), + [aux_sym__val_number_token6] = ACTIONS(1033), + [anon_sym_0b] = ACTIONS(1033), + [anon_sym_0o] = ACTIONS(1033), + [anon_sym_0x] = ACTIONS(1033), + [sym_val_date] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [sym__str_single_quotes] = ACTIONS(1033), + [sym__str_back_ticks] = ACTIONS(1033), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1033), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1033), + [anon_sym_CARET] = ACTIONS(1033), [anon_sym_POUND] = ACTIONS(113), }, [475] = { [sym_comment] = STATE(475), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_alias] = ACTIONS(1070), - [anon_sym_let] = ACTIONS(1070), - [anon_sym_let_DASHenv] = ACTIONS(1070), - [anon_sym_mut] = ACTIONS(1070), - [anon_sym_const] = ACTIONS(1070), - [anon_sym_SEMI] = ACTIONS(1070), - [sym_cmd_identifier] = ACTIONS(1070), - [anon_sym_LF] = ACTIONS(1072), - [anon_sym_def] = ACTIONS(1070), - [anon_sym_export_DASHenv] = ACTIONS(1070), - [anon_sym_extern] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_use] = ACTIONS(1070), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_RPAREN] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_error] = ACTIONS(1070), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_in] = ACTIONS(1070), - [anon_sym_loop] = ACTIONS(1070), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_do] = ACTIONS(1070), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_match] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_RBRACE] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_try] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_source] = ACTIONS(1070), - [anon_sym_source_DASHenv] = ACTIONS(1070), - [anon_sym_register] = ACTIONS(1070), - [anon_sym_hide] = ACTIONS(1070), - [anon_sym_hide_DASHenv] = ACTIONS(1070), - [anon_sym_overlay] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_where] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(1340), - [anon_sym_STAR_STAR] = ACTIONS(1070), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_mod] = ACTIONS(1070), - [anon_sym_SLASH_SLASH] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_bit_DASHshl] = ACTIONS(1070), - [anon_sym_bit_DASHshr] = ACTIONS(1070), - [anon_sym_EQ_EQ] = ACTIONS(1070), - [anon_sym_BANG_EQ] = ACTIONS(1070), - [anon_sym_LT2] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1070), - [anon_sym_GT_EQ] = ACTIONS(1070), - [anon_sym_not_DASHin] = ACTIONS(1070), - [anon_sym_starts_DASHwith] = ACTIONS(1070), - [anon_sym_ends_DASHwith] = ACTIONS(1070), - [anon_sym_EQ_TILDE] = ACTIONS(1070), - [anon_sym_BANG_TILDE] = ACTIONS(1070), - [anon_sym_bit_DASHand] = ACTIONS(1070), - [anon_sym_bit_DASHxor] = ACTIONS(1070), - [anon_sym_bit_DASHor] = ACTIONS(1070), - [anon_sym_and] = ACTIONS(1070), - [anon_sym_xor] = ACTIONS(1070), - [anon_sym_or] = ACTIONS(1070), - [anon_sym_not] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_null] = ACTIONS(1070), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1070), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), - [anon_sym_CARET] = ACTIONS(1070), + [ts_builtin_sym_end] = ACTIONS(1053), + [anon_sym_export] = ACTIONS(1051), + [anon_sym_alias] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(1051), + [anon_sym_let_DASHenv] = ACTIONS(1051), + [anon_sym_mut] = ACTIONS(1051), + [anon_sym_const] = ACTIONS(1051), + [anon_sym_SEMI] = ACTIONS(1051), + [sym_cmd_identifier] = ACTIONS(1051), + [anon_sym_LF] = ACTIONS(1053), + [anon_sym_def] = ACTIONS(1051), + [anon_sym_export_DASHenv] = ACTIONS(1051), + [anon_sym_extern] = ACTIONS(1051), + [anon_sym_module] = ACTIONS(1051), + [anon_sym_use] = ACTIONS(1051), + [anon_sym_LBRACK] = ACTIONS(1051), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_DOLLAR] = ACTIONS(1051), + [anon_sym_error] = ACTIONS(1051), + [anon_sym_GT] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_break] = ACTIONS(1051), + [anon_sym_continue] = ACTIONS(1051), + [anon_sym_for] = ACTIONS(1051), + [anon_sym_in] = ACTIONS(1051), + [anon_sym_loop] = ACTIONS(1051), + [anon_sym_while] = ACTIONS(1051), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_if] = ACTIONS(1051), + [anon_sym_match] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(1051), + [anon_sym_DOT_DOT] = ACTIONS(1051), + [anon_sym_try] = ACTIONS(1051), + [anon_sym_return] = ACTIONS(1051), + [anon_sym_source] = ACTIONS(1051), + [anon_sym_source_DASHenv] = ACTIONS(1051), + [anon_sym_register] = ACTIONS(1051), + [anon_sym_hide] = ACTIONS(1051), + [anon_sym_hide_DASHenv] = ACTIONS(1051), + [anon_sym_overlay] = ACTIONS(1051), + [anon_sym_as] = ACTIONS(1051), + [anon_sym_STAR] = ACTIONS(1051), + [anon_sym_where] = ACTIONS(1051), + [anon_sym_STAR_STAR] = ACTIONS(1051), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_mod] = ACTIONS(1051), + [anon_sym_SLASH_SLASH] = ACTIONS(1051), + [anon_sym_PLUS] = ACTIONS(1051), + [anon_sym_bit_DASHshl] = ACTIONS(1051), + [anon_sym_bit_DASHshr] = ACTIONS(1051), + [anon_sym_EQ_EQ] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1051), + [anon_sym_LT2] = ACTIONS(1051), + [anon_sym_LT_EQ] = ACTIONS(1051), + [anon_sym_GT_EQ] = ACTIONS(1051), + [anon_sym_not_DASHin] = ACTIONS(1051), + [anon_sym_starts_DASHwith] = ACTIONS(1051), + [anon_sym_ends_DASHwith] = ACTIONS(1051), + [anon_sym_EQ_TILDE] = ACTIONS(1051), + [anon_sym_BANG_TILDE] = ACTIONS(1051), + [anon_sym_bit_DASHand] = ACTIONS(1051), + [anon_sym_bit_DASHxor] = ACTIONS(1051), + [anon_sym_bit_DASHor] = ACTIONS(1051), + [anon_sym_and] = ACTIONS(1051), + [anon_sym_xor] = ACTIONS(1051), + [anon_sym_or] = ACTIONS(1051), + [anon_sym_not] = ACTIONS(1051), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1051), + [anon_sym_DOT_DOT_LT] = ACTIONS(1051), + [anon_sym_null] = ACTIONS(1051), + [anon_sym_true] = ACTIONS(1051), + [anon_sym_false] = ACTIONS(1051), + [aux_sym__val_number_decimal_token1] = ACTIONS(1051), + [aux_sym__val_number_decimal_token2] = ACTIONS(1051), + [anon_sym_DOT2] = ACTIONS(1051), + [aux_sym__val_number_decimal_token3] = ACTIONS(1051), + [aux_sym__val_number_token1] = ACTIONS(1051), + [aux_sym__val_number_token2] = ACTIONS(1051), + [aux_sym__val_number_token3] = ACTIONS(1051), + [aux_sym__val_number_token4] = ACTIONS(1051), + [aux_sym__val_number_token5] = ACTIONS(1051), + [aux_sym__val_number_token6] = ACTIONS(1051), + [anon_sym_0b] = ACTIONS(1051), + [anon_sym_0o] = ACTIONS(1051), + [anon_sym_0x] = ACTIONS(1051), + [sym_val_date] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(1051), + [sym__str_single_quotes] = ACTIONS(1051), + [sym__str_back_ticks] = ACTIONS(1051), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1051), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1051), + [anon_sym_CARET] = ACTIONS(1051), [anon_sym_POUND] = ACTIONS(113), }, [476] = { [sym_comment] = STATE(476), - [anon_sym_export] = ACTIONS(1342), - [anon_sym_alias] = ACTIONS(1342), - [anon_sym_let] = ACTIONS(1342), - [anon_sym_let_DASHenv] = ACTIONS(1342), - [anon_sym_mut] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_SEMI] = ACTIONS(1342), - [sym_cmd_identifier] = ACTIONS(1342), - [anon_sym_LF] = ACTIONS(1344), - [anon_sym_def] = ACTIONS(1342), - [anon_sym_export_DASHenv] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1342), - [anon_sym_module] = ACTIONS(1342), - [anon_sym_use] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_RPAREN] = ACTIONS(1342), - [anon_sym_DOLLAR] = ACTIONS(1342), - [anon_sym_error] = ACTIONS(1342), - [anon_sym_GT] = ACTIONS(1342), - [anon_sym_DASH_DASH] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_in] = ACTIONS(1342), - [anon_sym_loop] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_match] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_RBRACE] = ACTIONS(1342), - [anon_sym_DOT_DOT] = ACTIONS(1342), - [anon_sym_try] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_source] = ACTIONS(1342), - [anon_sym_source_DASHenv] = ACTIONS(1342), - [anon_sym_register] = ACTIONS(1342), - [anon_sym_hide] = ACTIONS(1342), - [anon_sym_hide_DASHenv] = ACTIONS(1342), - [anon_sym_overlay] = ACTIONS(1342), - [anon_sym_as] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_where] = ACTIONS(1342), - [anon_sym_STAR_STAR] = ACTIONS(1342), - [anon_sym_PLUS_PLUS] = ACTIONS(1342), - [anon_sym_SLASH] = ACTIONS(1342), - [anon_sym_mod] = ACTIONS(1342), - [anon_sym_SLASH_SLASH] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_bit_DASHshl] = ACTIONS(1342), - [anon_sym_bit_DASHshr] = ACTIONS(1342), - [anon_sym_EQ_EQ] = ACTIONS(1342), - [anon_sym_BANG_EQ] = ACTIONS(1342), - [anon_sym_LT2] = ACTIONS(1342), - [anon_sym_LT_EQ] = ACTIONS(1342), - [anon_sym_GT_EQ] = ACTIONS(1342), - [anon_sym_not_DASHin] = ACTIONS(1342), - [anon_sym_starts_DASHwith] = ACTIONS(1342), - [anon_sym_ends_DASHwith] = ACTIONS(1342), - [anon_sym_EQ_TILDE] = ACTIONS(1342), - [anon_sym_BANG_TILDE] = ACTIONS(1342), - [anon_sym_bit_DASHand] = ACTIONS(1342), - [anon_sym_bit_DASHxor] = ACTIONS(1342), - [anon_sym_bit_DASHor] = ACTIONS(1342), - [anon_sym_and] = ACTIONS(1342), - [anon_sym_xor] = ACTIONS(1342), - [anon_sym_or] = ACTIONS(1342), - [anon_sym_not] = ACTIONS(1342), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1342), - [anon_sym_DOT_DOT_LT] = ACTIONS(1342), - [anon_sym_null] = ACTIONS(1342), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym__val_number_decimal_token1] = ACTIONS(1342), - [aux_sym__val_number_decimal_token2] = ACTIONS(1342), - [anon_sym_DOT2] = ACTIONS(1342), - [aux_sym__val_number_decimal_token3] = ACTIONS(1342), - [aux_sym__val_number_token1] = ACTIONS(1342), - [aux_sym__val_number_token2] = ACTIONS(1342), - [aux_sym__val_number_token3] = ACTIONS(1342), - [aux_sym__val_number_token4] = ACTIONS(1342), - [aux_sym__val_number_token5] = ACTIONS(1342), - [aux_sym__val_number_token6] = ACTIONS(1342), - [anon_sym_0b] = ACTIONS(1342), - [anon_sym_0o] = ACTIONS(1342), - [anon_sym_0x] = ACTIONS(1342), - [sym_val_date] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [sym__str_single_quotes] = ACTIONS(1342), - [sym__str_back_ticks] = ACTIONS(1342), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1342), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1342), - [anon_sym_CARET] = ACTIONS(1342), + [ts_builtin_sym_end] = ACTIONS(1281), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1279), + [anon_sym_let] = ACTIONS(1279), + [anon_sym_let_DASHenv] = ACTIONS(1279), + [anon_sym_mut] = ACTIONS(1279), + [anon_sym_const] = ACTIONS(1279), + [anon_sym_SEMI] = ACTIONS(1279), + [sym_cmd_identifier] = ACTIONS(1279), + [anon_sym_LF] = ACTIONS(1281), + [anon_sym_def] = ACTIONS(1279), + [anon_sym_export_DASHenv] = ACTIONS(1279), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_use] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_DOLLAR] = ACTIONS(1279), + [anon_sym_error] = ACTIONS(1279), + [anon_sym_GT] = ACTIONS(1279), + [anon_sym_DASH_DASH] = ACTIONS(1279), + [anon_sym_DASH] = ACTIONS(1279), + [anon_sym_break] = ACTIONS(1279), + [anon_sym_continue] = ACTIONS(1279), + [anon_sym_for] = ACTIONS(1279), + [anon_sym_in] = ACTIONS(1279), + [anon_sym_loop] = ACTIONS(1279), + [anon_sym_while] = ACTIONS(1279), + [anon_sym_do] = ACTIONS(1279), + [anon_sym_if] = ACTIONS(1279), + [anon_sym_match] = ACTIONS(1279), + [anon_sym_LBRACE] = ACTIONS(1279), + [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym_try] = ACTIONS(1279), + [anon_sym_return] = ACTIONS(1279), + [anon_sym_source] = ACTIONS(1279), + [anon_sym_source_DASHenv] = ACTIONS(1279), + [anon_sym_register] = ACTIONS(1279), + [anon_sym_hide] = ACTIONS(1279), + [anon_sym_hide_DASHenv] = ACTIONS(1279), + [anon_sym_overlay] = ACTIONS(1279), + [anon_sym_as] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1279), + [anon_sym_where] = ACTIONS(1279), + [anon_sym_STAR_STAR] = ACTIONS(1279), + [anon_sym_PLUS_PLUS] = ACTIONS(1279), + [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_mod] = ACTIONS(1279), + [anon_sym_SLASH_SLASH] = ACTIONS(1279), + [anon_sym_PLUS] = ACTIONS(1279), + [anon_sym_bit_DASHshl] = ACTIONS(1279), + [anon_sym_bit_DASHshr] = ACTIONS(1279), + [anon_sym_EQ_EQ] = ACTIONS(1279), + [anon_sym_BANG_EQ] = ACTIONS(1279), + [anon_sym_LT2] = ACTIONS(1279), + [anon_sym_LT_EQ] = ACTIONS(1279), + [anon_sym_GT_EQ] = ACTIONS(1279), + [anon_sym_not_DASHin] = ACTIONS(1279), + [anon_sym_starts_DASHwith] = ACTIONS(1279), + [anon_sym_ends_DASHwith] = ACTIONS(1279), + [anon_sym_EQ_TILDE] = ACTIONS(1279), + [anon_sym_BANG_TILDE] = ACTIONS(1279), + [anon_sym_bit_DASHand] = ACTIONS(1279), + [anon_sym_bit_DASHxor] = ACTIONS(1279), + [anon_sym_bit_DASHor] = ACTIONS(1279), + [anon_sym_and] = ACTIONS(1279), + [anon_sym_xor] = ACTIONS(1279), + [anon_sym_or] = ACTIONS(1279), + [anon_sym_not] = ACTIONS(1279), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1279), + [anon_sym_DOT_DOT_LT] = ACTIONS(1279), + [anon_sym_null] = ACTIONS(1279), + [anon_sym_true] = ACTIONS(1279), + [anon_sym_false] = ACTIONS(1279), + [aux_sym__val_number_decimal_token1] = ACTIONS(1279), + [aux_sym__val_number_decimal_token2] = ACTIONS(1279), + [anon_sym_DOT2] = ACTIONS(1279), + [aux_sym__val_number_decimal_token3] = ACTIONS(1279), + [aux_sym__val_number_token1] = ACTIONS(1279), + [aux_sym__val_number_token2] = ACTIONS(1279), + [aux_sym__val_number_token3] = ACTIONS(1279), + [aux_sym__val_number_token4] = ACTIONS(1279), + [aux_sym__val_number_token5] = ACTIONS(1279), + [aux_sym__val_number_token6] = ACTIONS(1279), + [anon_sym_0b] = ACTIONS(1279), + [anon_sym_0o] = ACTIONS(1279), + [anon_sym_0x] = ACTIONS(1279), + [sym_val_date] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(1279), + [sym__str_single_quotes] = ACTIONS(1279), + [sym__str_back_ticks] = ACTIONS(1279), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1279), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1279), + [anon_sym_CARET] = ACTIONS(1279), [anon_sym_POUND] = ACTIONS(113), }, [477] = { [sym_comment] = STATE(477), - [anon_sym_export] = ACTIONS(1346), - [anon_sym_alias] = ACTIONS(1346), - [anon_sym_let] = ACTIONS(1346), - [anon_sym_let_DASHenv] = ACTIONS(1346), - [anon_sym_mut] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_SEMI] = ACTIONS(1346), - [sym_cmd_identifier] = ACTIONS(1346), - [anon_sym_LF] = ACTIONS(1348), - [anon_sym_def] = ACTIONS(1346), - [anon_sym_export_DASHenv] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1346), - [anon_sym_module] = ACTIONS(1346), - [anon_sym_use] = ACTIONS(1346), - [anon_sym_LBRACK] = ACTIONS(1346), - [anon_sym_LPAREN] = ACTIONS(1346), - [anon_sym_RPAREN] = ACTIONS(1346), - [anon_sym_DOLLAR] = ACTIONS(1346), - [anon_sym_error] = ACTIONS(1346), - [anon_sym_GT] = ACTIONS(1346), - [anon_sym_DASH_DASH] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_in] = ACTIONS(1346), - [anon_sym_loop] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_match] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_RBRACE] = ACTIONS(1346), - [anon_sym_DOT_DOT] = ACTIONS(1346), - [anon_sym_try] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_source] = ACTIONS(1346), - [anon_sym_source_DASHenv] = ACTIONS(1346), - [anon_sym_register] = ACTIONS(1346), - [anon_sym_hide] = ACTIONS(1346), - [anon_sym_hide_DASHenv] = ACTIONS(1346), - [anon_sym_overlay] = ACTIONS(1346), - [anon_sym_as] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_where] = ACTIONS(1346), - [anon_sym_STAR_STAR] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1346), - [anon_sym_SLASH] = ACTIONS(1346), - [anon_sym_mod] = ACTIONS(1346), - [anon_sym_SLASH_SLASH] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_bit_DASHshl] = ACTIONS(1346), - [anon_sym_bit_DASHshr] = ACTIONS(1346), - [anon_sym_EQ_EQ] = ACTIONS(1346), - [anon_sym_BANG_EQ] = ACTIONS(1346), - [anon_sym_LT2] = ACTIONS(1346), - [anon_sym_LT_EQ] = ACTIONS(1346), - [anon_sym_GT_EQ] = ACTIONS(1346), - [anon_sym_not_DASHin] = ACTIONS(1346), - [anon_sym_starts_DASHwith] = ACTIONS(1346), - [anon_sym_ends_DASHwith] = ACTIONS(1346), - [anon_sym_EQ_TILDE] = ACTIONS(1346), - [anon_sym_BANG_TILDE] = ACTIONS(1346), - [anon_sym_bit_DASHand] = ACTIONS(1346), - [anon_sym_bit_DASHxor] = ACTIONS(1346), - [anon_sym_bit_DASHor] = ACTIONS(1346), - [anon_sym_and] = ACTIONS(1346), - [anon_sym_xor] = ACTIONS(1346), - [anon_sym_or] = ACTIONS(1346), - [anon_sym_not] = ACTIONS(1346), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1346), - [anon_sym_DOT_DOT_LT] = ACTIONS(1346), - [anon_sym_null] = ACTIONS(1346), - [anon_sym_true] = ACTIONS(1346), - [anon_sym_false] = ACTIONS(1346), - [aux_sym__val_number_decimal_token1] = ACTIONS(1346), - [aux_sym__val_number_decimal_token2] = ACTIONS(1346), - [anon_sym_DOT2] = ACTIONS(1346), - [aux_sym__val_number_decimal_token3] = ACTIONS(1346), - [aux_sym__val_number_token1] = ACTIONS(1346), - [aux_sym__val_number_token2] = ACTIONS(1346), - [aux_sym__val_number_token3] = ACTIONS(1346), - [aux_sym__val_number_token4] = ACTIONS(1346), - [aux_sym__val_number_token5] = ACTIONS(1346), - [aux_sym__val_number_token6] = ACTIONS(1346), - [anon_sym_0b] = ACTIONS(1346), - [anon_sym_0o] = ACTIONS(1346), - [anon_sym_0x] = ACTIONS(1346), - [sym_val_date] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym__str_single_quotes] = ACTIONS(1346), - [sym__str_back_ticks] = ACTIONS(1346), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1346), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), + [ts_builtin_sym_end] = ACTIONS(1167), + [anon_sym_export] = ACTIONS(1165), + [anon_sym_alias] = ACTIONS(1165), + [anon_sym_let] = ACTIONS(1165), + [anon_sym_let_DASHenv] = ACTIONS(1165), + [anon_sym_mut] = ACTIONS(1165), + [anon_sym_const] = ACTIONS(1165), + [anon_sym_SEMI] = ACTIONS(1165), + [sym_cmd_identifier] = ACTIONS(1165), + [anon_sym_LF] = ACTIONS(1167), + [anon_sym_def] = ACTIONS(1165), + [anon_sym_export_DASHenv] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1165), + [anon_sym_module] = ACTIONS(1165), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_LPAREN] = ACTIONS(1165), + [anon_sym_DOLLAR] = ACTIONS(1165), + [anon_sym_error] = ACTIONS(1165), + [anon_sym_GT] = ACTIONS(1165), + [anon_sym_DASH_DASH] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_break] = ACTIONS(1165), + [anon_sym_continue] = ACTIONS(1165), + [anon_sym_for] = ACTIONS(1165), + [anon_sym_in] = ACTIONS(1165), + [anon_sym_loop] = ACTIONS(1165), + [anon_sym_while] = ACTIONS(1165), + [anon_sym_do] = ACTIONS(1165), + [anon_sym_if] = ACTIONS(1165), + [anon_sym_match] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(1165), + [anon_sym_DOT_DOT] = ACTIONS(1165), + [anon_sym_try] = ACTIONS(1165), + [anon_sym_return] = ACTIONS(1165), + [anon_sym_source] = ACTIONS(1165), + [anon_sym_source_DASHenv] = ACTIONS(1165), + [anon_sym_register] = ACTIONS(1165), + [anon_sym_hide] = ACTIONS(1165), + [anon_sym_hide_DASHenv] = ACTIONS(1165), + [anon_sym_overlay] = ACTIONS(1165), + [anon_sym_as] = ACTIONS(1165), + [anon_sym_STAR] = ACTIONS(1165), + [anon_sym_where] = ACTIONS(1165), + [anon_sym_STAR_STAR] = ACTIONS(1165), + [anon_sym_PLUS_PLUS] = ACTIONS(1165), + [anon_sym_SLASH] = ACTIONS(1165), + [anon_sym_mod] = ACTIONS(1165), + [anon_sym_SLASH_SLASH] = ACTIONS(1165), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_bit_DASHshl] = ACTIONS(1165), + [anon_sym_bit_DASHshr] = ACTIONS(1165), + [anon_sym_EQ_EQ] = ACTIONS(1165), + [anon_sym_BANG_EQ] = ACTIONS(1165), + [anon_sym_LT2] = ACTIONS(1165), + [anon_sym_LT_EQ] = ACTIONS(1165), + [anon_sym_GT_EQ] = ACTIONS(1165), + [anon_sym_not_DASHin] = ACTIONS(1165), + [anon_sym_starts_DASHwith] = ACTIONS(1165), + [anon_sym_ends_DASHwith] = ACTIONS(1165), + [anon_sym_EQ_TILDE] = ACTIONS(1165), + [anon_sym_BANG_TILDE] = ACTIONS(1165), + [anon_sym_bit_DASHand] = ACTIONS(1165), + [anon_sym_bit_DASHxor] = ACTIONS(1165), + [anon_sym_bit_DASHor] = ACTIONS(1165), + [anon_sym_and] = ACTIONS(1165), + [anon_sym_xor] = ACTIONS(1165), + [anon_sym_or] = ACTIONS(1165), + [anon_sym_not] = ACTIONS(1165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1165), + [anon_sym_DOT_DOT_LT] = ACTIONS(1165), + [anon_sym_null] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1165), + [anon_sym_false] = ACTIONS(1165), + [aux_sym__val_number_decimal_token1] = ACTIONS(1165), + [aux_sym__val_number_decimal_token2] = ACTIONS(1165), + [anon_sym_DOT2] = ACTIONS(1165), + [aux_sym__val_number_decimal_token3] = ACTIONS(1165), + [aux_sym__val_number_token1] = ACTIONS(1165), + [aux_sym__val_number_token2] = ACTIONS(1165), + [aux_sym__val_number_token3] = ACTIONS(1165), + [aux_sym__val_number_token4] = ACTIONS(1165), + [aux_sym__val_number_token5] = ACTIONS(1165), + [aux_sym__val_number_token6] = ACTIONS(1165), + [anon_sym_0b] = ACTIONS(1165), + [anon_sym_0o] = ACTIONS(1165), + [anon_sym_0x] = ACTIONS(1165), + [sym_val_date] = ACTIONS(1165), + [anon_sym_DQUOTE] = ACTIONS(1165), + [sym__str_single_quotes] = ACTIONS(1165), + [sym__str_back_ticks] = ACTIONS(1165), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1165), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1165), + [anon_sym_CARET] = ACTIONS(1165), [anon_sym_POUND] = ACTIONS(113), }, [478] = { - [sym_cell_path] = STATE(717), - [sym_path] = STATE(526), [sym_comment] = STATE(478), - [ts_builtin_sym_end] = ACTIONS(997), - [anon_sym_export] = ACTIONS(995), - [anon_sym_alias] = ACTIONS(995), - [anon_sym_let] = ACTIONS(995), - [anon_sym_let_DASHenv] = ACTIONS(995), - [anon_sym_mut] = ACTIONS(995), - [anon_sym_const] = ACTIONS(995), - [anon_sym_SEMI] = ACTIONS(995), - [sym_cmd_identifier] = ACTIONS(995), - [anon_sym_LF] = ACTIONS(997), - [anon_sym_def] = ACTIONS(995), - [anon_sym_export_DASHenv] = ACTIONS(995), - [anon_sym_extern] = ACTIONS(995), - [anon_sym_module] = ACTIONS(995), - [anon_sym_use] = ACTIONS(995), - [anon_sym_LBRACK] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_DOLLAR] = ACTIONS(995), - [anon_sym_error] = ACTIONS(995), - [anon_sym_GT] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_break] = ACTIONS(995), - [anon_sym_continue] = ACTIONS(995), - [anon_sym_for] = ACTIONS(995), - [anon_sym_in] = ACTIONS(995), - [anon_sym_loop] = ACTIONS(995), - [anon_sym_while] = ACTIONS(995), - [anon_sym_do] = ACTIONS(995), - [anon_sym_if] = ACTIONS(995), - [anon_sym_match] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_DOT_DOT] = ACTIONS(995), - [anon_sym_try] = ACTIONS(995), - [anon_sym_return] = ACTIONS(995), - [anon_sym_source] = ACTIONS(995), - [anon_sym_source_DASHenv] = ACTIONS(995), - [anon_sym_register] = ACTIONS(995), - [anon_sym_hide] = ACTIONS(995), - [anon_sym_hide_DASHenv] = ACTIONS(995), - [anon_sym_overlay] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_where] = ACTIONS(995), - [anon_sym_STAR_STAR] = ACTIONS(995), - [anon_sym_PLUS_PLUS] = ACTIONS(995), - [anon_sym_SLASH] = ACTIONS(995), - [anon_sym_mod] = ACTIONS(995), - [anon_sym_SLASH_SLASH] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_bit_DASHshl] = ACTIONS(995), - [anon_sym_bit_DASHshr] = ACTIONS(995), - [anon_sym_EQ_EQ] = ACTIONS(995), - [anon_sym_BANG_EQ] = ACTIONS(995), - [anon_sym_LT2] = ACTIONS(995), - [anon_sym_LT_EQ] = ACTIONS(995), - [anon_sym_GT_EQ] = ACTIONS(995), - [anon_sym_not_DASHin] = ACTIONS(995), - [anon_sym_starts_DASHwith] = ACTIONS(995), - [anon_sym_ends_DASHwith] = ACTIONS(995), - [anon_sym_EQ_TILDE] = ACTIONS(995), - [anon_sym_BANG_TILDE] = ACTIONS(995), - [anon_sym_bit_DASHand] = ACTIONS(995), - [anon_sym_bit_DASHxor] = ACTIONS(995), - [anon_sym_bit_DASHor] = ACTIONS(995), - [anon_sym_and] = ACTIONS(995), - [anon_sym_xor] = ACTIONS(995), - [anon_sym_or] = ACTIONS(995), - [anon_sym_not] = ACTIONS(995), - [anon_sym_DOT] = ACTIONS(1306), - [anon_sym_DOT_DOT_EQ] = ACTIONS(995), - [anon_sym_DOT_DOT_LT] = ACTIONS(995), - [anon_sym_null] = ACTIONS(995), - [anon_sym_true] = ACTIONS(995), - [anon_sym_false] = ACTIONS(995), - [aux_sym__val_number_decimal_token1] = ACTIONS(995), - [aux_sym__val_number_decimal_token2] = ACTIONS(995), - [anon_sym_DOT2] = ACTIONS(995), - [aux_sym__val_number_decimal_token3] = ACTIONS(995), - [aux_sym__val_number_token1] = ACTIONS(995), - [aux_sym__val_number_token2] = ACTIONS(995), - [aux_sym__val_number_token3] = ACTIONS(995), - [aux_sym__val_number_token4] = ACTIONS(995), - [aux_sym__val_number_token5] = ACTIONS(995), - [aux_sym__val_number_token6] = ACTIONS(995), - [anon_sym_0b] = ACTIONS(995), - [anon_sym_0o] = ACTIONS(995), - [anon_sym_0x] = ACTIONS(995), - [sym_val_date] = ACTIONS(995), - [anon_sym_DQUOTE] = ACTIONS(995), - [sym__str_single_quotes] = ACTIONS(995), - [sym__str_back_ticks] = ACTIONS(995), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(995), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(995), - [anon_sym_CARET] = ACTIONS(995), + [ts_builtin_sym_end] = ACTIONS(1285), + [anon_sym_export] = ACTIONS(1283), + [anon_sym_alias] = ACTIONS(1283), + [anon_sym_let] = ACTIONS(1283), + [anon_sym_let_DASHenv] = ACTIONS(1283), + [anon_sym_mut] = ACTIONS(1283), + [anon_sym_const] = ACTIONS(1283), + [anon_sym_SEMI] = ACTIONS(1283), + [sym_cmd_identifier] = ACTIONS(1283), + [anon_sym_LF] = ACTIONS(1285), + [anon_sym_def] = ACTIONS(1283), + [anon_sym_export_DASHenv] = ACTIONS(1283), + [anon_sym_extern] = ACTIONS(1283), + [anon_sym_module] = ACTIONS(1283), + [anon_sym_use] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_LPAREN] = ACTIONS(1283), + [anon_sym_DOLLAR] = ACTIONS(1283), + [anon_sym_error] = ACTIONS(1283), + [anon_sym_GT] = ACTIONS(1283), + [anon_sym_DASH_DASH] = ACTIONS(1283), + [anon_sym_DASH] = ACTIONS(1283), + [anon_sym_break] = ACTIONS(1283), + [anon_sym_continue] = ACTIONS(1283), + [anon_sym_for] = ACTIONS(1283), + [anon_sym_in] = ACTIONS(1283), + [anon_sym_loop] = ACTIONS(1283), + [anon_sym_while] = ACTIONS(1283), + [anon_sym_do] = ACTIONS(1283), + [anon_sym_if] = ACTIONS(1283), + [anon_sym_match] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1283), + [anon_sym_DOT_DOT] = ACTIONS(1283), + [anon_sym_try] = ACTIONS(1283), + [anon_sym_return] = ACTIONS(1283), + [anon_sym_source] = ACTIONS(1283), + [anon_sym_source_DASHenv] = ACTIONS(1283), + [anon_sym_register] = ACTIONS(1283), + [anon_sym_hide] = ACTIONS(1283), + [anon_sym_hide_DASHenv] = ACTIONS(1283), + [anon_sym_overlay] = ACTIONS(1283), + [anon_sym_as] = ACTIONS(1283), + [anon_sym_STAR] = ACTIONS(1283), + [anon_sym_where] = ACTIONS(1283), + [anon_sym_STAR_STAR] = ACTIONS(1283), + [anon_sym_PLUS_PLUS] = ACTIONS(1283), + [anon_sym_SLASH] = ACTIONS(1283), + [anon_sym_mod] = ACTIONS(1283), + [anon_sym_SLASH_SLASH] = ACTIONS(1283), + [anon_sym_PLUS] = ACTIONS(1283), + [anon_sym_bit_DASHshl] = ACTIONS(1283), + [anon_sym_bit_DASHshr] = ACTIONS(1283), + [anon_sym_EQ_EQ] = ACTIONS(1283), + [anon_sym_BANG_EQ] = ACTIONS(1283), + [anon_sym_LT2] = ACTIONS(1283), + [anon_sym_LT_EQ] = ACTIONS(1283), + [anon_sym_GT_EQ] = ACTIONS(1283), + [anon_sym_not_DASHin] = ACTIONS(1283), + [anon_sym_starts_DASHwith] = ACTIONS(1283), + [anon_sym_ends_DASHwith] = ACTIONS(1283), + [anon_sym_EQ_TILDE] = ACTIONS(1283), + [anon_sym_BANG_TILDE] = ACTIONS(1283), + [anon_sym_bit_DASHand] = ACTIONS(1283), + [anon_sym_bit_DASHxor] = ACTIONS(1283), + [anon_sym_bit_DASHor] = ACTIONS(1283), + [anon_sym_and] = ACTIONS(1283), + [anon_sym_xor] = ACTIONS(1283), + [anon_sym_or] = ACTIONS(1283), + [anon_sym_not] = ACTIONS(1283), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1283), + [anon_sym_DOT_DOT_LT] = ACTIONS(1283), + [anon_sym_null] = ACTIONS(1283), + [anon_sym_true] = ACTIONS(1283), + [anon_sym_false] = ACTIONS(1283), + [aux_sym__val_number_decimal_token1] = ACTIONS(1283), + [aux_sym__val_number_decimal_token2] = ACTIONS(1283), + [anon_sym_DOT2] = ACTIONS(1283), + [aux_sym__val_number_decimal_token3] = ACTIONS(1283), + [aux_sym__val_number_token1] = ACTIONS(1283), + [aux_sym__val_number_token2] = ACTIONS(1283), + [aux_sym__val_number_token3] = ACTIONS(1283), + [aux_sym__val_number_token4] = ACTIONS(1283), + [aux_sym__val_number_token5] = ACTIONS(1283), + [aux_sym__val_number_token6] = ACTIONS(1283), + [anon_sym_0b] = ACTIONS(1283), + [anon_sym_0o] = ACTIONS(1283), + [anon_sym_0x] = ACTIONS(1283), + [sym_val_date] = ACTIONS(1283), + [anon_sym_DQUOTE] = ACTIONS(1283), + [sym__str_single_quotes] = ACTIONS(1283), + [sym__str_back_ticks] = ACTIONS(1283), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1283), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1283), + [anon_sym_CARET] = ACTIONS(1283), [anon_sym_POUND] = ACTIONS(113), }, [479] = { [sym_comment] = STATE(479), - [ts_builtin_sym_end] = ACTIONS(961), - [anon_sym_export] = ACTIONS(959), - [anon_sym_alias] = ACTIONS(959), - [anon_sym_let] = ACTIONS(959), - [anon_sym_let_DASHenv] = ACTIONS(959), - [anon_sym_mut] = ACTIONS(959), - [anon_sym_const] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(959), - [sym_cmd_identifier] = ACTIONS(959), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_def] = ACTIONS(959), - [anon_sym_export_DASHenv] = ACTIONS(959), - [anon_sym_extern] = ACTIONS(959), - [anon_sym_module] = ACTIONS(959), - [anon_sym_use] = ACTIONS(959), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_error] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH_DASH] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_break] = ACTIONS(959), - [anon_sym_continue] = ACTIONS(959), - [anon_sym_for] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_loop] = ACTIONS(959), - [anon_sym_while] = ACTIONS(959), - [anon_sym_do] = ACTIONS(959), - [anon_sym_if] = ACTIONS(959), - [anon_sym_match] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_try] = ACTIONS(959), - [anon_sym_return] = ACTIONS(959), - [anon_sym_source] = ACTIONS(959), - [anon_sym_source_DASHenv] = ACTIONS(959), - [anon_sym_register] = ACTIONS(959), - [anon_sym_hide] = ACTIONS(959), - [anon_sym_hide_DASHenv] = ACTIONS(959), - [anon_sym_overlay] = ACTIONS(959), - [anon_sym_as] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_where] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(959), - [anon_sym_PLUS_PLUS] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(959), - [anon_sym_SLASH_SLASH] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(959), - [anon_sym_bit_DASHshr] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(959), - [anon_sym_BANG_EQ] = ACTIONS(959), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(959), - [anon_sym_GT_EQ] = ACTIONS(959), - [anon_sym_not_DASHin] = ACTIONS(959), - [anon_sym_starts_DASHwith] = ACTIONS(959), - [anon_sym_ends_DASHwith] = ACTIONS(959), - [anon_sym_EQ_TILDE] = ACTIONS(959), - [anon_sym_BANG_TILDE] = ACTIONS(959), - [anon_sym_bit_DASHand] = ACTIONS(959), - [anon_sym_bit_DASHxor] = ACTIONS(959), - [anon_sym_bit_DASHor] = ACTIONS(959), - [anon_sym_and] = ACTIONS(959), - [anon_sym_xor] = ACTIONS(959), - [anon_sym_or] = ACTIONS(959), - [anon_sym_not] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_DOT_DOT_LT] = ACTIONS(959), - [anon_sym_null] = ACTIONS(959), - [anon_sym_true] = ACTIONS(959), - [anon_sym_false] = ACTIONS(959), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(959), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(959), - [aux_sym__val_number_token1] = ACTIONS(959), - [aux_sym__val_number_token2] = ACTIONS(959), - [aux_sym__val_number_token3] = ACTIONS(959), - [aux_sym__val_number_token4] = ACTIONS(959), - [aux_sym__val_number_token5] = ACTIONS(959), - [aux_sym__val_number_token6] = ACTIONS(959), - [anon_sym_0b] = ACTIONS(959), - [anon_sym_0o] = ACTIONS(959), - [anon_sym_0x] = ACTIONS(959), - [sym_val_date] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [sym__str_single_quotes] = ACTIONS(959), - [sym__str_back_ticks] = ACTIONS(959), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(959), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(959), - [anon_sym_CARET] = ACTIONS(959), - [aux_sym_unquoted_token5] = ACTIONS(1028), + [ts_builtin_sym_end] = ACTIONS(1181), + [anon_sym_export] = ACTIONS(1179), + [anon_sym_alias] = ACTIONS(1179), + [anon_sym_let] = ACTIONS(1179), + [anon_sym_let_DASHenv] = ACTIONS(1179), + [anon_sym_mut] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1179), + [sym_cmd_identifier] = ACTIONS(1179), + [anon_sym_LF] = ACTIONS(1181), + [anon_sym_def] = ACTIONS(1179), + [anon_sym_export_DASHenv] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_use] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_error] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1316), + [anon_sym_loop] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_source] = ACTIONS(1179), + [anon_sym_source_DASHenv] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), + [anon_sym_hide_DASHenv] = ACTIONS(1179), + [anon_sym_overlay] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_where] = ACTIONS(1179), + [anon_sym_STAR_STAR] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_SLASH] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_SLASH_SLASH] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_bit_DASHshl] = ACTIONS(1314), + [anon_sym_bit_DASHshr] = ACTIONS(1314), + [anon_sym_EQ_EQ] = ACTIONS(1306), + [anon_sym_BANG_EQ] = ACTIONS(1306), + [anon_sym_LT2] = ACTIONS(1306), + [anon_sym_LT_EQ] = ACTIONS(1306), + [anon_sym_GT_EQ] = ACTIONS(1306), + [anon_sym_not_DASHin] = ACTIONS(1316), + [anon_sym_starts_DASHwith] = ACTIONS(1316), + [anon_sym_ends_DASHwith] = ACTIONS(1316), + [anon_sym_EQ_TILDE] = ACTIONS(1318), + [anon_sym_BANG_TILDE] = ACTIONS(1318), + [anon_sym_bit_DASHand] = ACTIONS(1320), + [anon_sym_bit_DASHxor] = ACTIONS(1322), + [anon_sym_bit_DASHor] = ACTIONS(1324), + [anon_sym_and] = ACTIONS(1326), + [anon_sym_xor] = ACTIONS(1328), + [anon_sym_or] = ACTIONS(1330), + [anon_sym_not] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1179), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), + [anon_sym_CARET] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, [480] = { [sym_comment] = STATE(480), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_alias] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_let_DASHenv] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1350), - [sym_cmd_identifier] = ACTIONS(1350), - [anon_sym_LF] = ACTIONS(1352), - [anon_sym_def] = ACTIONS(1350), - [anon_sym_export_DASHenv] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_LBRACK] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1350), - [anon_sym_RPAREN] = ACTIONS(1350), - [anon_sym_DOLLAR] = ACTIONS(1350), - [anon_sym_error] = ACTIONS(1350), - [anon_sym_GT] = ACTIONS(1350), - [anon_sym_DASH_DASH] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_in] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1350), - [anon_sym_DOT_DOT] = ACTIONS(1350), - [anon_sym_try] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_source] = ACTIONS(1350), - [anon_sym_source_DASHenv] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_hide] = ACTIONS(1350), - [anon_sym_hide_DASHenv] = ACTIONS(1350), - [anon_sym_overlay] = ACTIONS(1350), - [anon_sym_as] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_where] = ACTIONS(1350), - [anon_sym_STAR_STAR] = ACTIONS(1350), - [anon_sym_PLUS_PLUS] = ACTIONS(1350), - [anon_sym_SLASH] = ACTIONS(1350), - [anon_sym_mod] = ACTIONS(1350), - [anon_sym_SLASH_SLASH] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_bit_DASHshl] = ACTIONS(1350), - [anon_sym_bit_DASHshr] = ACTIONS(1350), - [anon_sym_EQ_EQ] = ACTIONS(1350), - [anon_sym_BANG_EQ] = ACTIONS(1350), - [anon_sym_LT2] = ACTIONS(1350), - [anon_sym_LT_EQ] = ACTIONS(1350), - [anon_sym_GT_EQ] = ACTIONS(1350), - [anon_sym_not_DASHin] = ACTIONS(1350), - [anon_sym_starts_DASHwith] = ACTIONS(1350), - [anon_sym_ends_DASHwith] = ACTIONS(1350), - [anon_sym_EQ_TILDE] = ACTIONS(1350), - [anon_sym_BANG_TILDE] = ACTIONS(1350), - [anon_sym_bit_DASHand] = ACTIONS(1350), - [anon_sym_bit_DASHxor] = ACTIONS(1350), - [anon_sym_bit_DASHor] = ACTIONS(1350), - [anon_sym_and] = ACTIONS(1350), - [anon_sym_xor] = ACTIONS(1350), - [anon_sym_or] = ACTIONS(1350), - [anon_sym_not] = ACTIONS(1350), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1350), - [anon_sym_DOT_DOT_LT] = ACTIONS(1350), - [anon_sym_null] = ACTIONS(1350), - [anon_sym_true] = ACTIONS(1350), - [anon_sym_false] = ACTIONS(1350), - [aux_sym__val_number_decimal_token1] = ACTIONS(1350), - [aux_sym__val_number_decimal_token2] = ACTIONS(1350), - [anon_sym_DOT2] = ACTIONS(1350), - [aux_sym__val_number_decimal_token3] = ACTIONS(1350), - [aux_sym__val_number_token1] = ACTIONS(1350), - [aux_sym__val_number_token2] = ACTIONS(1350), - [aux_sym__val_number_token3] = ACTIONS(1350), - [aux_sym__val_number_token4] = ACTIONS(1350), - [aux_sym__val_number_token5] = ACTIONS(1350), - [aux_sym__val_number_token6] = ACTIONS(1350), - [anon_sym_0b] = ACTIONS(1350), - [anon_sym_0o] = ACTIONS(1350), - [anon_sym_0x] = ACTIONS(1350), - [sym_val_date] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [sym__str_single_quotes] = ACTIONS(1350), - [sym__str_back_ticks] = ACTIONS(1350), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1350), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1350), - [anon_sym_CARET] = ACTIONS(1350), + [anon_sym_export] = ACTIONS(893), + [anon_sym_alias] = ACTIONS(893), + [anon_sym_let] = ACTIONS(893), + [anon_sym_let_DASHenv] = ACTIONS(893), + [anon_sym_mut] = ACTIONS(893), + [anon_sym_const] = ACTIONS(893), + [sym_cmd_identifier] = ACTIONS(893), + [anon_sym_def] = ACTIONS(893), + [anon_sym_export_DASHenv] = ACTIONS(893), + [anon_sym_extern] = ACTIONS(893), + [anon_sym_module] = ACTIONS(893), + [anon_sym_use] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(893), + [anon_sym_DOLLAR] = ACTIONS(893), + [anon_sym_error] = ACTIONS(893), + [anon_sym_list] = ACTIONS(893), + [anon_sym_GT] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_break] = ACTIONS(893), + [anon_sym_continue] = ACTIONS(893), + [anon_sym_for] = ACTIONS(893), + [anon_sym_in] = ACTIONS(893), + [anon_sym_loop] = ACTIONS(893), + [anon_sym_make] = ACTIONS(893), + [anon_sym_while] = ACTIONS(893), + [anon_sym_do] = ACTIONS(893), + [anon_sym_if] = ACTIONS(893), + [anon_sym_else] = ACTIONS(893), + [anon_sym_match] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(893), + [anon_sym_try] = ACTIONS(893), + [anon_sym_catch] = ACTIONS(893), + [anon_sym_return] = ACTIONS(893), + [anon_sym_source] = ACTIONS(893), + [anon_sym_source_DASHenv] = ACTIONS(893), + [anon_sym_register] = ACTIONS(893), + [anon_sym_hide] = ACTIONS(893), + [anon_sym_hide_DASHenv] = ACTIONS(893), + [anon_sym_overlay] = ACTIONS(893), + [anon_sym_new] = ACTIONS(893), + [anon_sym_as] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(893), + [anon_sym_STAR_STAR] = ACTIONS(893), + [anon_sym_PLUS_PLUS] = ACTIONS(893), + [anon_sym_SLASH] = ACTIONS(893), + [anon_sym_mod] = ACTIONS(893), + [anon_sym_SLASH_SLASH] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_bit_DASHshl] = ACTIONS(893), + [anon_sym_bit_DASHshr] = ACTIONS(893), + [anon_sym_EQ_EQ] = ACTIONS(893), + [anon_sym_BANG_EQ] = ACTIONS(893), + [anon_sym_LT2] = ACTIONS(893), + [anon_sym_LT_EQ] = ACTIONS(893), + [anon_sym_GT_EQ] = ACTIONS(893), + [anon_sym_not_DASHin] = ACTIONS(893), + [anon_sym_starts_DASHwith] = ACTIONS(893), + [anon_sym_ends_DASHwith] = ACTIONS(893), + [anon_sym_EQ_TILDE] = ACTIONS(893), + [anon_sym_BANG_TILDE] = ACTIONS(893), + [anon_sym_bit_DASHand] = ACTIONS(893), + [anon_sym_bit_DASHxor] = ACTIONS(893), + [anon_sym_bit_DASHor] = ACTIONS(893), + [anon_sym_and] = ACTIONS(893), + [anon_sym_xor] = ACTIONS(893), + [anon_sym_or] = ACTIONS(893), + [anon_sym_DOT_DOT2] = ACTIONS(893), + [anon_sym_DOT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), + [anon_sym_DOT_DOT_LT2] = ACTIONS(895), + [aux_sym__immediate_decimal_token1] = ACTIONS(1332), + [aux_sym__immediate_decimal_token2] = ACTIONS(1334), + [aux_sym__val_number_decimal_token1] = ACTIONS(893), + [aux_sym__val_number_decimal_token2] = ACTIONS(893), + [anon_sym_DOT2] = ACTIONS(893), + [aux_sym__val_number_decimal_token3] = ACTIONS(893), + [aux_sym__val_number_token1] = ACTIONS(893), + [aux_sym__val_number_token2] = ACTIONS(893), + [aux_sym__val_number_token3] = ACTIONS(893), + [aux_sym__val_number_token4] = ACTIONS(893), + [aux_sym__val_number_token5] = ACTIONS(893), + [aux_sym__val_number_token6] = ACTIONS(893), + [sym_filesize_unit] = ACTIONS(893), + [sym_duration_unit] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(893), + [sym__str_single_quotes] = ACTIONS(893), + [sym__str_back_ticks] = ACTIONS(893), + [sym__entry_separator] = ACTIONS(895), + [aux_sym__record_key_token2] = ACTIONS(893), + [aux_sym_unquoted_token5] = ACTIONS(893), [anon_sym_POUND] = ACTIONS(113), }, [481] = { [sym_comment] = STATE(481), - [anon_sym_export] = ACTIONS(1354), - [anon_sym_alias] = ACTIONS(1354), - [anon_sym_let] = ACTIONS(1354), - [anon_sym_let_DASHenv] = ACTIONS(1354), - [anon_sym_mut] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_SEMI] = ACTIONS(1354), - [sym_cmd_identifier] = ACTIONS(1354), - [anon_sym_LF] = ACTIONS(1356), - [anon_sym_def] = ACTIONS(1354), - [anon_sym_export_DASHenv] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym_module] = ACTIONS(1354), - [anon_sym_use] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1354), - [anon_sym_LPAREN] = ACTIONS(1354), - [anon_sym_RPAREN] = ACTIONS(1354), - [anon_sym_DOLLAR] = ACTIONS(1354), - [anon_sym_error] = ACTIONS(1354), - [anon_sym_GT] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_in] = ACTIONS(1354), - [anon_sym_loop] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_match] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_RBRACE] = ACTIONS(1354), - [anon_sym_DOT_DOT] = ACTIONS(1354), - [anon_sym_try] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_source] = ACTIONS(1354), - [anon_sym_source_DASHenv] = ACTIONS(1354), - [anon_sym_register] = ACTIONS(1354), - [anon_sym_hide] = ACTIONS(1354), - [anon_sym_hide_DASHenv] = ACTIONS(1354), - [anon_sym_overlay] = ACTIONS(1354), - [anon_sym_as] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_where] = ACTIONS(1354), - [anon_sym_STAR_STAR] = ACTIONS(1354), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [anon_sym_SLASH] = ACTIONS(1354), - [anon_sym_mod] = ACTIONS(1354), - [anon_sym_SLASH_SLASH] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_bit_DASHshl] = ACTIONS(1354), - [anon_sym_bit_DASHshr] = ACTIONS(1354), - [anon_sym_EQ_EQ] = ACTIONS(1354), - [anon_sym_BANG_EQ] = ACTIONS(1354), - [anon_sym_LT2] = ACTIONS(1354), - [anon_sym_LT_EQ] = ACTIONS(1354), - [anon_sym_GT_EQ] = ACTIONS(1354), - [anon_sym_not_DASHin] = ACTIONS(1354), - [anon_sym_starts_DASHwith] = ACTIONS(1354), - [anon_sym_ends_DASHwith] = ACTIONS(1354), - [anon_sym_EQ_TILDE] = ACTIONS(1354), - [anon_sym_BANG_TILDE] = ACTIONS(1354), - [anon_sym_bit_DASHand] = ACTIONS(1354), - [anon_sym_bit_DASHxor] = ACTIONS(1354), - [anon_sym_bit_DASHor] = ACTIONS(1354), - [anon_sym_and] = ACTIONS(1354), - [anon_sym_xor] = ACTIONS(1354), - [anon_sym_or] = ACTIONS(1354), - [anon_sym_not] = ACTIONS(1354), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1354), - [anon_sym_DOT_DOT_LT] = ACTIONS(1354), - [anon_sym_null] = ACTIONS(1354), - [anon_sym_true] = ACTIONS(1354), - [anon_sym_false] = ACTIONS(1354), - [aux_sym__val_number_decimal_token1] = ACTIONS(1354), - [aux_sym__val_number_decimal_token2] = ACTIONS(1354), - [anon_sym_DOT2] = ACTIONS(1354), - [aux_sym__val_number_decimal_token3] = ACTIONS(1354), - [aux_sym__val_number_token1] = ACTIONS(1354), - [aux_sym__val_number_token2] = ACTIONS(1354), - [aux_sym__val_number_token3] = ACTIONS(1354), - [aux_sym__val_number_token4] = ACTIONS(1354), - [aux_sym__val_number_token5] = ACTIONS(1354), - [aux_sym__val_number_token6] = ACTIONS(1354), - [anon_sym_0b] = ACTIONS(1354), - [anon_sym_0o] = ACTIONS(1354), - [anon_sym_0x] = ACTIONS(1354), - [sym_val_date] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1354), - [sym__str_single_quotes] = ACTIONS(1354), - [sym__str_back_ticks] = ACTIONS(1354), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1354), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1354), - [anon_sym_CARET] = ACTIONS(1354), + [anon_sym_export] = ACTIONS(911), + [anon_sym_alias] = ACTIONS(911), + [anon_sym_let] = ACTIONS(911), + [anon_sym_let_DASHenv] = ACTIONS(911), + [anon_sym_mut] = ACTIONS(911), + [anon_sym_const] = ACTIONS(911), + [sym_cmd_identifier] = ACTIONS(911), + [anon_sym_def] = ACTIONS(911), + [anon_sym_export_DASHenv] = ACTIONS(911), + [anon_sym_extern] = ACTIONS(911), + [anon_sym_module] = ACTIONS(911), + [anon_sym_use] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_DOLLAR] = ACTIONS(911), + [anon_sym_error] = ACTIONS(911), + [anon_sym_list] = ACTIONS(911), + [anon_sym_GT] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_break] = ACTIONS(911), + [anon_sym_continue] = ACTIONS(911), + [anon_sym_for] = ACTIONS(911), + [anon_sym_in] = ACTIONS(911), + [anon_sym_loop] = ACTIONS(911), + [anon_sym_make] = ACTIONS(911), + [anon_sym_while] = ACTIONS(911), + [anon_sym_do] = ACTIONS(911), + [anon_sym_if] = ACTIONS(911), + [anon_sym_else] = ACTIONS(911), + [anon_sym_match] = ACTIONS(911), + [anon_sym_RBRACE] = ACTIONS(911), + [anon_sym_try] = ACTIONS(911), + [anon_sym_catch] = ACTIONS(911), + [anon_sym_return] = ACTIONS(911), + [anon_sym_source] = ACTIONS(911), + [anon_sym_source_DASHenv] = ACTIONS(911), + [anon_sym_register] = ACTIONS(911), + [anon_sym_hide] = ACTIONS(911), + [anon_sym_hide_DASHenv] = ACTIONS(911), + [anon_sym_overlay] = ACTIONS(911), + [anon_sym_new] = ACTIONS(911), + [anon_sym_as] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(911), + [anon_sym_STAR_STAR] = ACTIONS(911), + [anon_sym_PLUS_PLUS] = ACTIONS(911), + [anon_sym_SLASH] = ACTIONS(911), + [anon_sym_mod] = ACTIONS(911), + [anon_sym_SLASH_SLASH] = ACTIONS(911), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_bit_DASHshl] = ACTIONS(911), + [anon_sym_bit_DASHshr] = ACTIONS(911), + [anon_sym_EQ_EQ] = ACTIONS(911), + [anon_sym_BANG_EQ] = ACTIONS(911), + [anon_sym_LT2] = ACTIONS(911), + [anon_sym_LT_EQ] = ACTIONS(911), + [anon_sym_GT_EQ] = ACTIONS(911), + [anon_sym_not_DASHin] = ACTIONS(911), + [anon_sym_starts_DASHwith] = ACTIONS(911), + [anon_sym_ends_DASHwith] = ACTIONS(911), + [anon_sym_EQ_TILDE] = ACTIONS(911), + [anon_sym_BANG_TILDE] = ACTIONS(911), + [anon_sym_bit_DASHand] = ACTIONS(911), + [anon_sym_bit_DASHxor] = ACTIONS(911), + [anon_sym_bit_DASHor] = ACTIONS(911), + [anon_sym_and] = ACTIONS(911), + [anon_sym_xor] = ACTIONS(911), + [anon_sym_or] = ACTIONS(911), + [anon_sym_DOT_DOT2] = ACTIONS(911), + [anon_sym_DOT] = ACTIONS(1336), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(913), + [anon_sym_DOT_DOT_LT2] = ACTIONS(913), + [aux_sym__immediate_decimal_token2] = ACTIONS(1339), + [aux_sym__val_number_decimal_token1] = ACTIONS(911), + [aux_sym__val_number_decimal_token2] = ACTIONS(911), + [anon_sym_DOT2] = ACTIONS(911), + [aux_sym__val_number_decimal_token3] = ACTIONS(911), + [aux_sym__val_number_token1] = ACTIONS(911), + [aux_sym__val_number_token2] = ACTIONS(911), + [aux_sym__val_number_token3] = ACTIONS(911), + [aux_sym__val_number_token4] = ACTIONS(911), + [aux_sym__val_number_token5] = ACTIONS(911), + [aux_sym__val_number_token6] = ACTIONS(911), + [sym_filesize_unit] = ACTIONS(911), + [sym_duration_unit] = ACTIONS(911), + [anon_sym_DQUOTE] = ACTIONS(911), + [sym__str_single_quotes] = ACTIONS(911), + [sym__str_back_ticks] = ACTIONS(911), + [sym__entry_separator] = ACTIONS(913), + [aux_sym__record_key_token2] = ACTIONS(911), + [aux_sym_unquoted_token5] = ACTIONS(911), [anon_sym_POUND] = ACTIONS(113), }, [482] = { [sym_comment] = STATE(482), - [anon_sym_export] = ACTIONS(1358), - [anon_sym_alias] = ACTIONS(1358), - [anon_sym_let] = ACTIONS(1358), - [anon_sym_let_DASHenv] = ACTIONS(1358), - [anon_sym_mut] = ACTIONS(1358), - [anon_sym_const] = ACTIONS(1358), - [anon_sym_SEMI] = ACTIONS(1358), - [sym_cmd_identifier] = ACTIONS(1358), - [anon_sym_LF] = ACTIONS(1360), - [anon_sym_def] = ACTIONS(1358), - [anon_sym_export_DASHenv] = ACTIONS(1358), - [anon_sym_extern] = ACTIONS(1358), - [anon_sym_module] = ACTIONS(1358), - [anon_sym_use] = ACTIONS(1358), - [anon_sym_LBRACK] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1358), - [anon_sym_RPAREN] = ACTIONS(1358), - [anon_sym_DOLLAR] = ACTIONS(1358), - [anon_sym_error] = ACTIONS(1358), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_in] = ACTIONS(1358), - [anon_sym_loop] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_do] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_match] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_RBRACE] = ACTIONS(1358), - [anon_sym_DOT_DOT] = ACTIONS(1358), - [anon_sym_try] = ACTIONS(1358), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_source] = ACTIONS(1358), - [anon_sym_source_DASHenv] = ACTIONS(1358), - [anon_sym_register] = ACTIONS(1358), - [anon_sym_hide] = ACTIONS(1358), - [anon_sym_hide_DASHenv] = ACTIONS(1358), - [anon_sym_overlay] = ACTIONS(1358), - [anon_sym_as] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_where] = ACTIONS(1358), - [anon_sym_STAR_STAR] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_SLASH] = ACTIONS(1358), - [anon_sym_mod] = ACTIONS(1358), - [anon_sym_SLASH_SLASH] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_bit_DASHshl] = ACTIONS(1358), - [anon_sym_bit_DASHshr] = ACTIONS(1358), - [anon_sym_EQ_EQ] = ACTIONS(1358), - [anon_sym_BANG_EQ] = ACTIONS(1358), - [anon_sym_LT2] = ACTIONS(1358), - [anon_sym_LT_EQ] = ACTIONS(1358), - [anon_sym_GT_EQ] = ACTIONS(1358), - [anon_sym_not_DASHin] = ACTIONS(1358), - [anon_sym_starts_DASHwith] = ACTIONS(1358), - [anon_sym_ends_DASHwith] = ACTIONS(1358), - [anon_sym_EQ_TILDE] = ACTIONS(1358), - [anon_sym_BANG_TILDE] = ACTIONS(1358), - [anon_sym_bit_DASHand] = ACTIONS(1358), - [anon_sym_bit_DASHxor] = ACTIONS(1358), - [anon_sym_bit_DASHor] = ACTIONS(1358), - [anon_sym_and] = ACTIONS(1358), - [anon_sym_xor] = ACTIONS(1358), - [anon_sym_or] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1358), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1358), - [anon_sym_DOT_DOT_LT] = ACTIONS(1358), - [anon_sym_null] = ACTIONS(1358), - [anon_sym_true] = ACTIONS(1358), - [anon_sym_false] = ACTIONS(1358), - [aux_sym__val_number_decimal_token1] = ACTIONS(1358), - [aux_sym__val_number_decimal_token2] = ACTIONS(1358), - [anon_sym_DOT2] = ACTIONS(1358), - [aux_sym__val_number_decimal_token3] = ACTIONS(1358), - [aux_sym__val_number_token1] = ACTIONS(1358), - [aux_sym__val_number_token2] = ACTIONS(1358), - [aux_sym__val_number_token3] = ACTIONS(1358), - [aux_sym__val_number_token4] = ACTIONS(1358), - [aux_sym__val_number_token5] = ACTIONS(1358), - [aux_sym__val_number_token6] = ACTIONS(1358), - [anon_sym_0b] = ACTIONS(1358), - [anon_sym_0o] = ACTIONS(1358), - [anon_sym_0x] = ACTIONS(1358), - [sym_val_date] = ACTIONS(1358), - [anon_sym_DQUOTE] = ACTIONS(1358), - [sym__str_single_quotes] = ACTIONS(1358), - [sym__str_back_ticks] = ACTIONS(1358), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1358), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1358), - [anon_sym_CARET] = ACTIONS(1358), + [anon_sym_export] = ACTIONS(901), + [anon_sym_alias] = ACTIONS(901), + [anon_sym_let] = ACTIONS(901), + [anon_sym_let_DASHenv] = ACTIONS(901), + [anon_sym_mut] = ACTIONS(901), + [anon_sym_const] = ACTIONS(901), + [sym_cmd_identifier] = ACTIONS(901), + [anon_sym_def] = ACTIONS(901), + [anon_sym_export_DASHenv] = ACTIONS(901), + [anon_sym_extern] = ACTIONS(901), + [anon_sym_module] = ACTIONS(901), + [anon_sym_use] = ACTIONS(901), + [anon_sym_LPAREN] = ACTIONS(901), + [anon_sym_DOLLAR] = ACTIONS(901), + [anon_sym_error] = ACTIONS(901), + [anon_sym_list] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_break] = ACTIONS(901), + [anon_sym_continue] = ACTIONS(901), + [anon_sym_for] = ACTIONS(901), + [anon_sym_in] = ACTIONS(901), + [anon_sym_loop] = ACTIONS(901), + [anon_sym_make] = ACTIONS(901), + [anon_sym_while] = ACTIONS(901), + [anon_sym_do] = ACTIONS(901), + [anon_sym_if] = ACTIONS(901), + [anon_sym_else] = ACTIONS(901), + [anon_sym_match] = ACTIONS(901), + [anon_sym_RBRACE] = ACTIONS(901), + [anon_sym_try] = ACTIONS(901), + [anon_sym_catch] = ACTIONS(901), + [anon_sym_return] = ACTIONS(901), + [anon_sym_source] = ACTIONS(901), + [anon_sym_source_DASHenv] = ACTIONS(901), + [anon_sym_register] = ACTIONS(901), + [anon_sym_hide] = ACTIONS(901), + [anon_sym_hide_DASHenv] = ACTIONS(901), + [anon_sym_overlay] = ACTIONS(901), + [anon_sym_new] = ACTIONS(901), + [anon_sym_as] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_STAR_STAR] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(901), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_mod] = ACTIONS(901), + [anon_sym_SLASH_SLASH] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_bit_DASHshl] = ACTIONS(901), + [anon_sym_bit_DASHshr] = ACTIONS(901), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT2] = ACTIONS(901), + [anon_sym_LT_EQ] = ACTIONS(901), + [anon_sym_GT_EQ] = ACTIONS(901), + [anon_sym_not_DASHin] = ACTIONS(901), + [anon_sym_starts_DASHwith] = ACTIONS(901), + [anon_sym_ends_DASHwith] = ACTIONS(901), + [anon_sym_EQ_TILDE] = ACTIONS(901), + [anon_sym_BANG_TILDE] = ACTIONS(901), + [anon_sym_bit_DASHand] = ACTIONS(901), + [anon_sym_bit_DASHxor] = ACTIONS(901), + [anon_sym_bit_DASHor] = ACTIONS(901), + [anon_sym_and] = ACTIONS(901), + [anon_sym_xor] = ACTIONS(901), + [anon_sym_or] = ACTIONS(901), + [anon_sym_DOT_DOT2] = ACTIONS(901), + [anon_sym_DOT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(903), + [anon_sym_DOT_DOT_LT2] = ACTIONS(903), + [aux_sym__immediate_decimal_token2] = ACTIONS(1341), + [aux_sym__val_number_decimal_token1] = ACTIONS(901), + [aux_sym__val_number_decimal_token2] = ACTIONS(901), + [anon_sym_DOT2] = ACTIONS(901), + [aux_sym__val_number_decimal_token3] = ACTIONS(901), + [aux_sym__val_number_token1] = ACTIONS(901), + [aux_sym__val_number_token2] = ACTIONS(901), + [aux_sym__val_number_token3] = ACTIONS(901), + [aux_sym__val_number_token4] = ACTIONS(901), + [aux_sym__val_number_token5] = ACTIONS(901), + [aux_sym__val_number_token6] = ACTIONS(901), + [sym_filesize_unit] = ACTIONS(901), + [sym_duration_unit] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [sym__str_single_quotes] = ACTIONS(901), + [sym__str_back_ticks] = ACTIONS(901), + [sym__entry_separator] = ACTIONS(903), + [aux_sym__record_key_token2] = ACTIONS(901), + [aux_sym_unquoted_token5] = ACTIONS(901), [anon_sym_POUND] = ACTIONS(113), }, [483] = { [sym_comment] = STATE(483), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_alias] = ACTIONS(1362), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_let_DASHenv] = ACTIONS(1362), - [anon_sym_mut] = ACTIONS(1362), - [anon_sym_const] = ACTIONS(1362), - [anon_sym_SEMI] = ACTIONS(1362), - [sym_cmd_identifier] = ACTIONS(1362), - [anon_sym_LF] = ACTIONS(1364), - [anon_sym_def] = ACTIONS(1362), - [anon_sym_export_DASHenv] = ACTIONS(1362), - [anon_sym_extern] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_use] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1362), - [anon_sym_LPAREN] = ACTIONS(1362), - [anon_sym_RPAREN] = ACTIONS(1362), - [anon_sym_DOLLAR] = ACTIONS(1362), - [anon_sym_error] = ACTIONS(1362), - [anon_sym_GT] = ACTIONS(1362), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_break] = ACTIONS(1362), - [anon_sym_continue] = ACTIONS(1362), - [anon_sym_for] = ACTIONS(1362), - [anon_sym_in] = ACTIONS(1362), - [anon_sym_loop] = ACTIONS(1362), - [anon_sym_while] = ACTIONS(1362), - [anon_sym_do] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1362), - [anon_sym_match] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_RBRACE] = ACTIONS(1362), - [anon_sym_DOT_DOT] = ACTIONS(1362), - [anon_sym_try] = ACTIONS(1362), - [anon_sym_return] = ACTIONS(1362), - [anon_sym_source] = ACTIONS(1362), - [anon_sym_source_DASHenv] = ACTIONS(1362), - [anon_sym_register] = ACTIONS(1362), - [anon_sym_hide] = ACTIONS(1362), - [anon_sym_hide_DASHenv] = ACTIONS(1362), - [anon_sym_overlay] = ACTIONS(1362), - [anon_sym_as] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_where] = ACTIONS(1362), - [anon_sym_STAR_STAR] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_SLASH] = ACTIONS(1362), - [anon_sym_mod] = ACTIONS(1362), - [anon_sym_SLASH_SLASH] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_bit_DASHshl] = ACTIONS(1362), - [anon_sym_bit_DASHshr] = ACTIONS(1362), - [anon_sym_EQ_EQ] = ACTIONS(1362), - [anon_sym_BANG_EQ] = ACTIONS(1362), - [anon_sym_LT2] = ACTIONS(1362), - [anon_sym_LT_EQ] = ACTIONS(1362), - [anon_sym_GT_EQ] = ACTIONS(1362), - [anon_sym_not_DASHin] = ACTIONS(1362), - [anon_sym_starts_DASHwith] = ACTIONS(1362), - [anon_sym_ends_DASHwith] = ACTIONS(1362), - [anon_sym_EQ_TILDE] = ACTIONS(1362), - [anon_sym_BANG_TILDE] = ACTIONS(1362), - [anon_sym_bit_DASHand] = ACTIONS(1362), - [anon_sym_bit_DASHxor] = ACTIONS(1362), - [anon_sym_bit_DASHor] = ACTIONS(1362), - [anon_sym_and] = ACTIONS(1362), - [anon_sym_xor] = ACTIONS(1362), - [anon_sym_or] = ACTIONS(1362), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1362), - [anon_sym_DOT_DOT_LT] = ACTIONS(1362), - [anon_sym_null] = ACTIONS(1362), - [anon_sym_true] = ACTIONS(1362), - [anon_sym_false] = ACTIONS(1362), - [aux_sym__val_number_decimal_token1] = ACTIONS(1362), - [aux_sym__val_number_decimal_token2] = ACTIONS(1362), - [anon_sym_DOT2] = ACTIONS(1362), - [aux_sym__val_number_decimal_token3] = ACTIONS(1362), - [aux_sym__val_number_token1] = ACTIONS(1362), - [aux_sym__val_number_token2] = ACTIONS(1362), - [aux_sym__val_number_token3] = ACTIONS(1362), - [aux_sym__val_number_token4] = ACTIONS(1362), - [aux_sym__val_number_token5] = ACTIONS(1362), - [aux_sym__val_number_token6] = ACTIONS(1362), - [anon_sym_0b] = ACTIONS(1362), - [anon_sym_0o] = ACTIONS(1362), - [anon_sym_0x] = ACTIONS(1362), - [sym_val_date] = ACTIONS(1362), - [anon_sym_DQUOTE] = ACTIONS(1362), - [sym__str_single_quotes] = ACTIONS(1362), - [sym__str_back_ticks] = ACTIONS(1362), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1362), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1362), - [anon_sym_CARET] = ACTIONS(1362), + [anon_sym_export] = ACTIONS(911), + [anon_sym_alias] = ACTIONS(911), + [anon_sym_let] = ACTIONS(911), + [anon_sym_let_DASHenv] = ACTIONS(911), + [anon_sym_mut] = ACTIONS(911), + [anon_sym_const] = ACTIONS(911), + [sym_cmd_identifier] = ACTIONS(911), + [anon_sym_def] = ACTIONS(911), + [anon_sym_export_DASHenv] = ACTIONS(911), + [anon_sym_extern] = ACTIONS(911), + [anon_sym_module] = ACTIONS(911), + [anon_sym_use] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_DOLLAR] = ACTIONS(911), + [anon_sym_error] = ACTIONS(911), + [anon_sym_list] = ACTIONS(911), + [anon_sym_GT] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_break] = ACTIONS(911), + [anon_sym_continue] = ACTIONS(911), + [anon_sym_for] = ACTIONS(911), + [anon_sym_in] = ACTIONS(911), + [anon_sym_loop] = ACTIONS(911), + [anon_sym_make] = ACTIONS(911), + [anon_sym_while] = ACTIONS(911), + [anon_sym_do] = ACTIONS(911), + [anon_sym_if] = ACTIONS(911), + [anon_sym_else] = ACTIONS(911), + [anon_sym_match] = ACTIONS(911), + [anon_sym_RBRACE] = ACTIONS(911), + [anon_sym_try] = ACTIONS(911), + [anon_sym_catch] = ACTIONS(911), + [anon_sym_return] = ACTIONS(911), + [anon_sym_source] = ACTIONS(911), + [anon_sym_source_DASHenv] = ACTIONS(911), + [anon_sym_register] = ACTIONS(911), + [anon_sym_hide] = ACTIONS(911), + [anon_sym_hide_DASHenv] = ACTIONS(911), + [anon_sym_overlay] = ACTIONS(911), + [anon_sym_new] = ACTIONS(911), + [anon_sym_as] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(911), + [anon_sym_STAR_STAR] = ACTIONS(911), + [anon_sym_PLUS_PLUS] = ACTIONS(911), + [anon_sym_SLASH] = ACTIONS(911), + [anon_sym_mod] = ACTIONS(911), + [anon_sym_SLASH_SLASH] = ACTIONS(911), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_bit_DASHshl] = ACTIONS(911), + [anon_sym_bit_DASHshr] = ACTIONS(911), + [anon_sym_EQ_EQ] = ACTIONS(911), + [anon_sym_BANG_EQ] = ACTIONS(911), + [anon_sym_LT2] = ACTIONS(911), + [anon_sym_LT_EQ] = ACTIONS(911), + [anon_sym_GT_EQ] = ACTIONS(911), + [anon_sym_not_DASHin] = ACTIONS(911), + [anon_sym_starts_DASHwith] = ACTIONS(911), + [anon_sym_ends_DASHwith] = ACTIONS(911), + [anon_sym_EQ_TILDE] = ACTIONS(911), + [anon_sym_BANG_TILDE] = ACTIONS(911), + [anon_sym_bit_DASHand] = ACTIONS(911), + [anon_sym_bit_DASHxor] = ACTIONS(911), + [anon_sym_bit_DASHor] = ACTIONS(911), + [anon_sym_and] = ACTIONS(911), + [anon_sym_xor] = ACTIONS(911), + [anon_sym_or] = ACTIONS(911), + [anon_sym_DOT_DOT2] = ACTIONS(911), + [anon_sym_DOT] = ACTIONS(911), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(913), + [anon_sym_DOT_DOT_LT2] = ACTIONS(913), + [aux_sym__immediate_decimal_token2] = ACTIONS(1339), + [aux_sym__val_number_decimal_token1] = ACTIONS(911), + [aux_sym__val_number_decimal_token2] = ACTIONS(911), + [anon_sym_DOT2] = ACTIONS(911), + [aux_sym__val_number_decimal_token3] = ACTIONS(911), + [aux_sym__val_number_token1] = ACTIONS(911), + [aux_sym__val_number_token2] = ACTIONS(911), + [aux_sym__val_number_token3] = ACTIONS(911), + [aux_sym__val_number_token4] = ACTIONS(911), + [aux_sym__val_number_token5] = ACTIONS(911), + [aux_sym__val_number_token6] = ACTIONS(911), + [sym_filesize_unit] = ACTIONS(911), + [sym_duration_unit] = ACTIONS(911), + [anon_sym_DQUOTE] = ACTIONS(911), + [sym__str_single_quotes] = ACTIONS(911), + [sym__str_back_ticks] = ACTIONS(911), + [sym__entry_separator] = ACTIONS(913), + [aux_sym__record_key_token2] = ACTIONS(911), + [aux_sym_unquoted_token5] = ACTIONS(911), [anon_sym_POUND] = ACTIONS(113), }, [484] = { [sym_comment] = STATE(484), - [ts_builtin_sym_end] = ACTIONS(1160), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_alias] = ACTIONS(1158), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_let_DASHenv] = ACTIONS(1158), - [anon_sym_mut] = ACTIONS(1158), - [anon_sym_const] = ACTIONS(1158), - [anon_sym_SEMI] = ACTIONS(1158), - [sym_cmd_identifier] = ACTIONS(1158), - [anon_sym_LF] = ACTIONS(1160), - [anon_sym_def] = ACTIONS(1158), - [anon_sym_export_DASHenv] = ACTIONS(1158), - [anon_sym_extern] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_use] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_LPAREN] = ACTIONS(1158), - [anon_sym_DOLLAR] = ACTIONS(1158), - [anon_sym_error] = ACTIONS(1158), - [anon_sym_GT] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_break] = ACTIONS(1158), - [anon_sym_continue] = ACTIONS(1158), - [anon_sym_for] = ACTIONS(1158), - [anon_sym_in] = ACTIONS(1158), - [anon_sym_loop] = ACTIONS(1158), - [anon_sym_while] = ACTIONS(1158), - [anon_sym_do] = ACTIONS(1158), - [anon_sym_if] = ACTIONS(1158), - [anon_sym_match] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1158), - [anon_sym_DOT_DOT] = ACTIONS(1158), - [anon_sym_try] = ACTIONS(1158), - [anon_sym_return] = ACTIONS(1158), - [anon_sym_source] = ACTIONS(1158), - [anon_sym_source_DASHenv] = ACTIONS(1158), - [anon_sym_register] = ACTIONS(1158), - [anon_sym_hide] = ACTIONS(1158), - [anon_sym_hide_DASHenv] = ACTIONS(1158), - [anon_sym_overlay] = ACTIONS(1158), - [anon_sym_as] = ACTIONS(1158), - [anon_sym_STAR] = ACTIONS(1158), - [anon_sym_where] = ACTIONS(1158), - [anon_sym_STAR_STAR] = ACTIONS(1158), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_SLASH] = ACTIONS(1158), - [anon_sym_mod] = ACTIONS(1158), - [anon_sym_SLASH_SLASH] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1158), - [anon_sym_bit_DASHshl] = ACTIONS(1158), - [anon_sym_bit_DASHshr] = ACTIONS(1158), - [anon_sym_EQ_EQ] = ACTIONS(1158), - [anon_sym_BANG_EQ] = ACTIONS(1158), - [anon_sym_LT2] = ACTIONS(1158), - [anon_sym_LT_EQ] = ACTIONS(1158), - [anon_sym_GT_EQ] = ACTIONS(1158), - [anon_sym_not_DASHin] = ACTIONS(1158), - [anon_sym_starts_DASHwith] = ACTIONS(1158), - [anon_sym_ends_DASHwith] = ACTIONS(1158), - [anon_sym_EQ_TILDE] = ACTIONS(1158), - [anon_sym_BANG_TILDE] = ACTIONS(1158), - [anon_sym_bit_DASHand] = ACTIONS(1158), - [anon_sym_bit_DASHxor] = ACTIONS(1158), - [anon_sym_bit_DASHor] = ACTIONS(1158), - [anon_sym_and] = ACTIONS(1158), - [anon_sym_xor] = ACTIONS(1158), - [anon_sym_or] = ACTIONS(1158), - [anon_sym_not] = ACTIONS(1158), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1158), - [anon_sym_DOT_DOT_LT] = ACTIONS(1158), - [anon_sym_null] = ACTIONS(1158), - [anon_sym_true] = ACTIONS(1158), - [anon_sym_false] = ACTIONS(1158), - [aux_sym__val_number_decimal_token1] = ACTIONS(1158), - [aux_sym__val_number_decimal_token2] = ACTIONS(1158), - [anon_sym_DOT2] = ACTIONS(1158), - [aux_sym__val_number_decimal_token3] = ACTIONS(1158), - [aux_sym__val_number_token1] = ACTIONS(1158), - [aux_sym__val_number_token2] = ACTIONS(1158), - [aux_sym__val_number_token3] = ACTIONS(1158), - [aux_sym__val_number_token4] = ACTIONS(1158), - [aux_sym__val_number_token5] = ACTIONS(1158), - [aux_sym__val_number_token6] = ACTIONS(1158), - [anon_sym_0b] = ACTIONS(1158), - [anon_sym_0o] = ACTIONS(1158), - [anon_sym_0x] = ACTIONS(1158), - [sym_val_date] = ACTIONS(1158), - [anon_sym_DQUOTE] = ACTIONS(1158), - [sym__str_single_quotes] = ACTIONS(1158), - [sym__str_back_ticks] = ACTIONS(1158), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1158), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1158), - [anon_sym_CARET] = ACTIONS(1158), - [aux_sym_unquoted_token6] = ACTIONS(1284), + [anon_sym_export] = ACTIONS(893), + [anon_sym_alias] = ACTIONS(893), + [anon_sym_let] = ACTIONS(893), + [anon_sym_let_DASHenv] = ACTIONS(893), + [anon_sym_mut] = ACTIONS(893), + [anon_sym_const] = ACTIONS(893), + [sym_cmd_identifier] = ACTIONS(893), + [anon_sym_def] = ACTIONS(893), + [anon_sym_export_DASHenv] = ACTIONS(893), + [anon_sym_extern] = ACTIONS(893), + [anon_sym_module] = ACTIONS(893), + [anon_sym_use] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(893), + [anon_sym_DOLLAR] = ACTIONS(893), + [anon_sym_error] = ACTIONS(893), + [anon_sym_list] = ACTIONS(893), + [anon_sym_GT] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_break] = ACTIONS(893), + [anon_sym_continue] = ACTIONS(893), + [anon_sym_for] = ACTIONS(893), + [anon_sym_in] = ACTIONS(893), + [anon_sym_loop] = ACTIONS(893), + [anon_sym_make] = ACTIONS(893), + [anon_sym_while] = ACTIONS(893), + [anon_sym_do] = ACTIONS(893), + [anon_sym_if] = ACTIONS(893), + [anon_sym_else] = ACTIONS(893), + [anon_sym_match] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(893), + [anon_sym_try] = ACTIONS(893), + [anon_sym_catch] = ACTIONS(893), + [anon_sym_return] = ACTIONS(893), + [anon_sym_source] = ACTIONS(893), + [anon_sym_source_DASHenv] = ACTIONS(893), + [anon_sym_register] = ACTIONS(893), + [anon_sym_hide] = ACTIONS(893), + [anon_sym_hide_DASHenv] = ACTIONS(893), + [anon_sym_overlay] = ACTIONS(893), + [anon_sym_new] = ACTIONS(893), + [anon_sym_as] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(893), + [anon_sym_STAR_STAR] = ACTIONS(893), + [anon_sym_PLUS_PLUS] = ACTIONS(893), + [anon_sym_SLASH] = ACTIONS(893), + [anon_sym_mod] = ACTIONS(893), + [anon_sym_SLASH_SLASH] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_bit_DASHshl] = ACTIONS(893), + [anon_sym_bit_DASHshr] = ACTIONS(893), + [anon_sym_EQ_EQ] = ACTIONS(893), + [anon_sym_BANG_EQ] = ACTIONS(893), + [anon_sym_LT2] = ACTIONS(893), + [anon_sym_LT_EQ] = ACTIONS(893), + [anon_sym_GT_EQ] = ACTIONS(893), + [anon_sym_not_DASHin] = ACTIONS(893), + [anon_sym_starts_DASHwith] = ACTIONS(893), + [anon_sym_ends_DASHwith] = ACTIONS(893), + [anon_sym_EQ_TILDE] = ACTIONS(893), + [anon_sym_BANG_TILDE] = ACTIONS(893), + [anon_sym_bit_DASHand] = ACTIONS(893), + [anon_sym_bit_DASHxor] = ACTIONS(893), + [anon_sym_bit_DASHor] = ACTIONS(893), + [anon_sym_and] = ACTIONS(893), + [anon_sym_xor] = ACTIONS(893), + [anon_sym_or] = ACTIONS(893), + [anon_sym_DOT_DOT2] = ACTIONS(893), + [anon_sym_DOT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), + [anon_sym_DOT_DOT_LT2] = ACTIONS(895), + [aux_sym__immediate_decimal_token2] = ACTIONS(1334), + [aux_sym__val_number_decimal_token1] = ACTIONS(893), + [aux_sym__val_number_decimal_token2] = ACTIONS(893), + [anon_sym_DOT2] = ACTIONS(893), + [aux_sym__val_number_decimal_token3] = ACTIONS(893), + [aux_sym__val_number_token1] = ACTIONS(893), + [aux_sym__val_number_token2] = ACTIONS(893), + [aux_sym__val_number_token3] = ACTIONS(893), + [aux_sym__val_number_token4] = ACTIONS(893), + [aux_sym__val_number_token5] = ACTIONS(893), + [aux_sym__val_number_token6] = ACTIONS(893), + [sym_filesize_unit] = ACTIONS(893), + [sym_duration_unit] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(893), + [sym__str_single_quotes] = ACTIONS(893), + [sym__str_back_ticks] = ACTIONS(893), + [sym__entry_separator] = ACTIONS(895), + [aux_sym__record_key_token2] = ACTIONS(893), + [aux_sym_unquoted_token5] = ACTIONS(893), [anon_sym_POUND] = ACTIONS(113), }, [485] = { [sym_comment] = STATE(485), - [anon_sym_export] = ACTIONS(1198), - [anon_sym_alias] = ACTIONS(1198), - [anon_sym_let] = ACTIONS(1198), - [anon_sym_let_DASHenv] = ACTIONS(1198), - [anon_sym_mut] = ACTIONS(1198), - [anon_sym_const] = ACTIONS(1198), - [anon_sym_SEMI] = ACTIONS(1198), - [sym_cmd_identifier] = ACTIONS(1198), - [anon_sym_LF] = ACTIONS(1366), - [anon_sym_def] = ACTIONS(1198), - [anon_sym_export_DASHenv] = ACTIONS(1198), - [anon_sym_extern] = ACTIONS(1198), - [anon_sym_module] = ACTIONS(1198), - [anon_sym_use] = ACTIONS(1198), - [anon_sym_LBRACK] = ACTIONS(1198), - [anon_sym_LPAREN] = ACTIONS(1198), - [anon_sym_RPAREN] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(1198), - [anon_sym_error] = ACTIONS(1198), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1198), - [anon_sym_break] = ACTIONS(1198), - [anon_sym_continue] = ACTIONS(1198), - [anon_sym_for] = ACTIONS(1198), - [anon_sym_in] = ACTIONS(1198), - [anon_sym_loop] = ACTIONS(1198), - [anon_sym_while] = ACTIONS(1198), - [anon_sym_do] = ACTIONS(1198), - [anon_sym_if] = ACTIONS(1198), - [anon_sym_match] = ACTIONS(1198), - [anon_sym_LBRACE] = ACTIONS(1198), - [anon_sym_RBRACE] = ACTIONS(1198), - [anon_sym_DOT_DOT] = ACTIONS(1198), - [anon_sym_try] = ACTIONS(1198), - [anon_sym_return] = ACTIONS(1198), - [anon_sym_source] = ACTIONS(1198), - [anon_sym_source_DASHenv] = ACTIONS(1198), - [anon_sym_register] = ACTIONS(1198), - [anon_sym_hide] = ACTIONS(1198), - [anon_sym_hide_DASHenv] = ACTIONS(1198), - [anon_sym_overlay] = ACTIONS(1198), - [anon_sym_as] = ACTIONS(1198), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_where] = ACTIONS(1198), - [anon_sym_STAR_STAR] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_SLASH] = ACTIONS(1198), - [anon_sym_mod] = ACTIONS(1198), - [anon_sym_SLASH_SLASH] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1198), - [anon_sym_bit_DASHshl] = ACTIONS(1198), - [anon_sym_bit_DASHshr] = ACTIONS(1198), - [anon_sym_EQ_EQ] = ACTIONS(1198), - [anon_sym_BANG_EQ] = ACTIONS(1198), - [anon_sym_LT2] = ACTIONS(1198), - [anon_sym_LT_EQ] = ACTIONS(1198), - [anon_sym_GT_EQ] = ACTIONS(1198), - [anon_sym_not_DASHin] = ACTIONS(1198), - [anon_sym_starts_DASHwith] = ACTIONS(1198), - [anon_sym_ends_DASHwith] = ACTIONS(1198), - [anon_sym_EQ_TILDE] = ACTIONS(1198), - [anon_sym_BANG_TILDE] = ACTIONS(1198), - [anon_sym_bit_DASHand] = ACTIONS(1198), - [anon_sym_bit_DASHxor] = ACTIONS(1198), - [anon_sym_bit_DASHor] = ACTIONS(1198), - [anon_sym_and] = ACTIONS(1198), - [anon_sym_xor] = ACTIONS(1198), - [anon_sym_or] = ACTIONS(1198), - [anon_sym_not] = ACTIONS(1198), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1198), - [anon_sym_DOT_DOT_LT] = ACTIONS(1198), - [anon_sym_null] = ACTIONS(1198), - [anon_sym_true] = ACTIONS(1198), - [anon_sym_false] = ACTIONS(1198), - [aux_sym__val_number_decimal_token1] = ACTIONS(1198), - [aux_sym__val_number_decimal_token2] = ACTIONS(1198), - [anon_sym_DOT2] = ACTIONS(1198), - [aux_sym__val_number_decimal_token3] = ACTIONS(1198), - [aux_sym__val_number_token1] = ACTIONS(1198), - [aux_sym__val_number_token2] = ACTIONS(1198), - [aux_sym__val_number_token3] = ACTIONS(1198), - [aux_sym__val_number_token4] = ACTIONS(1198), - [aux_sym__val_number_token5] = ACTIONS(1198), - [aux_sym__val_number_token6] = ACTIONS(1198), - [anon_sym_0b] = ACTIONS(1198), - [anon_sym_0o] = ACTIONS(1198), - [anon_sym_0x] = ACTIONS(1198), - [sym_val_date] = ACTIONS(1198), - [anon_sym_DQUOTE] = ACTIONS(1198), - [sym__str_single_quotes] = ACTIONS(1198), - [sym__str_back_ticks] = ACTIONS(1198), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1198), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1198), - [anon_sym_CARET] = ACTIONS(1198), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(893), + [anon_sym_alias] = ACTIONS(893), + [anon_sym_let] = ACTIONS(893), + [anon_sym_let_DASHenv] = ACTIONS(893), + [anon_sym_mut] = ACTIONS(893), + [anon_sym_const] = ACTIONS(893), + [sym_cmd_identifier] = ACTIONS(893), + [anon_sym_def] = ACTIONS(893), + [anon_sym_export_DASHenv] = ACTIONS(893), + [anon_sym_extern] = ACTIONS(893), + [anon_sym_module] = ACTIONS(893), + [anon_sym_use] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(895), + [anon_sym_DOLLAR] = ACTIONS(895), + [anon_sym_error] = ACTIONS(893), + [anon_sym_list] = ACTIONS(893), + [anon_sym_GT] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_break] = ACTIONS(893), + [anon_sym_continue] = ACTIONS(893), + [anon_sym_for] = ACTIONS(893), + [anon_sym_in] = ACTIONS(893), + [anon_sym_loop] = ACTIONS(893), + [anon_sym_make] = ACTIONS(893), + [anon_sym_while] = ACTIONS(893), + [anon_sym_do] = ACTIONS(893), + [anon_sym_if] = ACTIONS(893), + [anon_sym_else] = ACTIONS(893), + [anon_sym_match] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(895), + [anon_sym_try] = ACTIONS(893), + [anon_sym_catch] = ACTIONS(893), + [anon_sym_return] = ACTIONS(893), + [anon_sym_source] = ACTIONS(893), + [anon_sym_source_DASHenv] = ACTIONS(893), + [anon_sym_register] = ACTIONS(893), + [anon_sym_hide] = ACTIONS(893), + [anon_sym_hide_DASHenv] = ACTIONS(893), + [anon_sym_overlay] = ACTIONS(893), + [anon_sym_new] = ACTIONS(893), + [anon_sym_as] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(893), + [anon_sym_STAR_STAR] = ACTIONS(895), + [anon_sym_PLUS_PLUS] = ACTIONS(895), + [anon_sym_SLASH] = ACTIONS(893), + [anon_sym_mod] = ACTIONS(893), + [anon_sym_SLASH_SLASH] = ACTIONS(895), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_bit_DASHshl] = ACTIONS(893), + [anon_sym_bit_DASHshr] = ACTIONS(893), + [anon_sym_EQ_EQ] = ACTIONS(895), + [anon_sym_BANG_EQ] = ACTIONS(895), + [anon_sym_LT2] = ACTIONS(893), + [anon_sym_LT_EQ] = ACTIONS(895), + [anon_sym_GT_EQ] = ACTIONS(895), + [anon_sym_not_DASHin] = ACTIONS(893), + [anon_sym_starts_DASHwith] = ACTIONS(893), + [anon_sym_ends_DASHwith] = ACTIONS(893), + [anon_sym_EQ_TILDE] = ACTIONS(895), + [anon_sym_BANG_TILDE] = ACTIONS(895), + [anon_sym_bit_DASHand] = ACTIONS(893), + [anon_sym_bit_DASHxor] = ACTIONS(893), + [anon_sym_bit_DASHor] = ACTIONS(893), + [anon_sym_and] = ACTIONS(893), + [anon_sym_xor] = ACTIONS(893), + [anon_sym_or] = ACTIONS(893), + [anon_sym_DOT_DOT2] = ACTIONS(893), + [anon_sym_DOT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), + [anon_sym_DOT_DOT_LT2] = ACTIONS(895), + [aux_sym__immediate_decimal_token1] = ACTIONS(1343), + [aux_sym__immediate_decimal_token2] = ACTIONS(1345), + [aux_sym__val_number_decimal_token1] = ACTIONS(893), + [aux_sym__val_number_decimal_token2] = ACTIONS(895), + [anon_sym_DOT2] = ACTIONS(893), + [aux_sym__val_number_decimal_token3] = ACTIONS(895), + [aux_sym__val_number_token1] = ACTIONS(895), + [aux_sym__val_number_token2] = ACTIONS(895), + [aux_sym__val_number_token3] = ACTIONS(895), + [aux_sym__val_number_token4] = ACTIONS(893), + [aux_sym__val_number_token5] = ACTIONS(895), + [aux_sym__val_number_token6] = ACTIONS(893), + [sym_filesize_unit] = ACTIONS(893), + [sym_duration_unit] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(895), + [sym__str_single_quotes] = ACTIONS(895), + [sym__str_back_ticks] = ACTIONS(895), + [aux_sym__record_key_token2] = ACTIONS(893), + [aux_sym_unquoted_token5] = ACTIONS(893), + [anon_sym_POUND] = ACTIONS(3), }, [486] = { [sym_comment] = STATE(486), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), + [anon_sym_export] = ACTIONS(893), + [anon_sym_alias] = ACTIONS(893), + [anon_sym_let] = ACTIONS(893), + [anon_sym_let_DASHenv] = ACTIONS(893), + [anon_sym_mut] = ACTIONS(893), + [anon_sym_const] = ACTIONS(893), + [sym_cmd_identifier] = ACTIONS(893), + [anon_sym_def] = ACTIONS(893), + [anon_sym_export_DASHenv] = ACTIONS(893), + [anon_sym_extern] = ACTIONS(893), + [anon_sym_module] = ACTIONS(893), + [anon_sym_use] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(893), + [anon_sym_DOLLAR] = ACTIONS(893), + [anon_sym_error] = ACTIONS(893), + [anon_sym_list] = ACTIONS(893), + [anon_sym_GT] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_break] = ACTIONS(893), + [anon_sym_continue] = ACTIONS(893), + [anon_sym_for] = ACTIONS(893), + [anon_sym_in] = ACTIONS(893), + [anon_sym_loop] = ACTIONS(893), + [anon_sym_make] = ACTIONS(893), + [anon_sym_while] = ACTIONS(893), + [anon_sym_do] = ACTIONS(893), + [anon_sym_if] = ACTIONS(893), + [anon_sym_else] = ACTIONS(893), + [anon_sym_match] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(893), + [anon_sym_try] = ACTIONS(893), + [anon_sym_catch] = ACTIONS(893), + [anon_sym_return] = ACTIONS(893), + [anon_sym_source] = ACTIONS(893), + [anon_sym_source_DASHenv] = ACTIONS(893), + [anon_sym_register] = ACTIONS(893), + [anon_sym_hide] = ACTIONS(893), + [anon_sym_hide_DASHenv] = ACTIONS(893), + [anon_sym_overlay] = ACTIONS(893), + [anon_sym_new] = ACTIONS(893), + [anon_sym_as] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(893), + [anon_sym_STAR_STAR] = ACTIONS(893), + [anon_sym_PLUS_PLUS] = ACTIONS(893), + [anon_sym_SLASH] = ACTIONS(893), + [anon_sym_mod] = ACTIONS(893), + [anon_sym_SLASH_SLASH] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_bit_DASHshl] = ACTIONS(893), + [anon_sym_bit_DASHshr] = ACTIONS(893), + [anon_sym_EQ_EQ] = ACTIONS(893), + [anon_sym_BANG_EQ] = ACTIONS(893), + [anon_sym_LT2] = ACTIONS(893), + [anon_sym_LT_EQ] = ACTIONS(893), + [anon_sym_GT_EQ] = ACTIONS(893), + [anon_sym_not_DASHin] = ACTIONS(893), + [anon_sym_starts_DASHwith] = ACTIONS(893), + [anon_sym_ends_DASHwith] = ACTIONS(893), + [anon_sym_EQ_TILDE] = ACTIONS(893), + [anon_sym_BANG_TILDE] = ACTIONS(893), + [anon_sym_bit_DASHand] = ACTIONS(893), + [anon_sym_bit_DASHxor] = ACTIONS(893), + [anon_sym_bit_DASHor] = ACTIONS(893), + [anon_sym_and] = ACTIONS(893), + [anon_sym_xor] = ACTIONS(893), + [anon_sym_or] = ACTIONS(893), + [anon_sym_DOT_DOT2] = ACTIONS(893), + [anon_sym_DOT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), + [anon_sym_DOT_DOT_LT2] = ACTIONS(895), + [aux_sym__val_number_decimal_token1] = ACTIONS(893), + [aux_sym__val_number_decimal_token2] = ACTIONS(893), + [anon_sym_DOT2] = ACTIONS(893), + [aux_sym__val_number_decimal_token3] = ACTIONS(893), + [aux_sym__val_number_token1] = ACTIONS(893), + [aux_sym__val_number_token2] = ACTIONS(893), + [aux_sym__val_number_token3] = ACTIONS(893), + [aux_sym__val_number_token4] = ACTIONS(893), + [aux_sym__val_number_token5] = ACTIONS(893), + [aux_sym__val_number_token6] = ACTIONS(893), + [sym_filesize_unit] = ACTIONS(893), + [sym_duration_unit] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(893), + [sym__str_single_quotes] = ACTIONS(893), + [sym__str_back_ticks] = ACTIONS(893), + [sym__entry_separator] = ACTIONS(895), + [aux_sym__record_key_token2] = ACTIONS(893), + [aux_sym_unquoted_token5] = ACTIONS(893), [anon_sym_POUND] = ACTIONS(113), }, [487] = { [sym_comment] = STATE(487), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), + [anon_sym_export] = ACTIONS(893), + [anon_sym_alias] = ACTIONS(893), + [anon_sym_let] = ACTIONS(893), + [anon_sym_let_DASHenv] = ACTIONS(893), + [anon_sym_mut] = ACTIONS(893), + [anon_sym_const] = ACTIONS(893), + [sym_cmd_identifier] = ACTIONS(893), + [anon_sym_def] = ACTIONS(893), + [anon_sym_export_DASHenv] = ACTIONS(893), + [anon_sym_extern] = ACTIONS(893), + [anon_sym_module] = ACTIONS(893), + [anon_sym_use] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(893), + [anon_sym_DOLLAR] = ACTIONS(893), + [anon_sym_error] = ACTIONS(893), + [anon_sym_list] = ACTIONS(893), + [anon_sym_GT] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_break] = ACTIONS(893), + [anon_sym_continue] = ACTIONS(893), + [anon_sym_for] = ACTIONS(893), + [anon_sym_in] = ACTIONS(893), + [anon_sym_loop] = ACTIONS(893), + [anon_sym_make] = ACTIONS(893), + [anon_sym_while] = ACTIONS(893), + [anon_sym_do] = ACTIONS(893), + [anon_sym_if] = ACTIONS(893), + [anon_sym_else] = ACTIONS(893), + [anon_sym_match] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(893), + [anon_sym_try] = ACTIONS(893), + [anon_sym_catch] = ACTIONS(893), + [anon_sym_return] = ACTIONS(893), + [anon_sym_source] = ACTIONS(893), + [anon_sym_source_DASHenv] = ACTIONS(893), + [anon_sym_register] = ACTIONS(893), + [anon_sym_hide] = ACTIONS(893), + [anon_sym_hide_DASHenv] = ACTIONS(893), + [anon_sym_overlay] = ACTIONS(893), + [anon_sym_new] = ACTIONS(893), + [anon_sym_as] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(893), + [anon_sym_STAR_STAR] = ACTIONS(893), + [anon_sym_PLUS_PLUS] = ACTIONS(893), + [anon_sym_SLASH] = ACTIONS(893), + [anon_sym_mod] = ACTIONS(893), + [anon_sym_SLASH_SLASH] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_bit_DASHshl] = ACTIONS(893), + [anon_sym_bit_DASHshr] = ACTIONS(893), + [anon_sym_EQ_EQ] = ACTIONS(893), + [anon_sym_BANG_EQ] = ACTIONS(893), + [anon_sym_LT2] = ACTIONS(893), + [anon_sym_LT_EQ] = ACTIONS(893), + [anon_sym_GT_EQ] = ACTIONS(893), + [anon_sym_not_DASHin] = ACTIONS(893), + [anon_sym_starts_DASHwith] = ACTIONS(893), + [anon_sym_ends_DASHwith] = ACTIONS(893), + [anon_sym_EQ_TILDE] = ACTIONS(893), + [anon_sym_BANG_TILDE] = ACTIONS(893), + [anon_sym_bit_DASHand] = ACTIONS(893), + [anon_sym_bit_DASHxor] = ACTIONS(893), + [anon_sym_bit_DASHor] = ACTIONS(893), + [anon_sym_and] = ACTIONS(893), + [anon_sym_xor] = ACTIONS(893), + [anon_sym_or] = ACTIONS(893), + [anon_sym_DOT_DOT2] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), + [anon_sym_DOT_DOT_LT2] = ACTIONS(895), + [aux_sym__immediate_decimal_token1] = ACTIONS(1347), + [aux_sym__immediate_decimal_token2] = ACTIONS(1349), + [aux_sym__val_number_decimal_token1] = ACTIONS(893), + [aux_sym__val_number_decimal_token2] = ACTIONS(893), + [anon_sym_DOT2] = ACTIONS(893), + [aux_sym__val_number_decimal_token3] = ACTIONS(893), + [aux_sym__val_number_token1] = ACTIONS(893), + [aux_sym__val_number_token2] = ACTIONS(893), + [aux_sym__val_number_token3] = ACTIONS(893), + [aux_sym__val_number_token4] = ACTIONS(893), + [aux_sym__val_number_token5] = ACTIONS(893), + [aux_sym__val_number_token6] = ACTIONS(893), + [sym_filesize_unit] = ACTIONS(893), + [sym_duration_unit] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(893), + [sym__str_single_quotes] = ACTIONS(893), + [sym__str_back_ticks] = ACTIONS(893), + [sym__entry_separator] = ACTIONS(895), + [aux_sym__record_key_token2] = ACTIONS(893), [anon_sym_POUND] = ACTIONS(113), }, [488] = { [sym_comment] = STATE(488), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(901), + [anon_sym_alias] = ACTIONS(901), + [anon_sym_let] = ACTIONS(901), + [anon_sym_let_DASHenv] = ACTIONS(901), + [anon_sym_mut] = ACTIONS(901), + [anon_sym_const] = ACTIONS(901), + [sym_cmd_identifier] = ACTIONS(901), + [anon_sym_def] = ACTIONS(901), + [anon_sym_export_DASHenv] = ACTIONS(901), + [anon_sym_extern] = ACTIONS(901), + [anon_sym_module] = ACTIONS(901), + [anon_sym_use] = ACTIONS(901), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_DOLLAR] = ACTIONS(903), + [anon_sym_error] = ACTIONS(901), + [anon_sym_list] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_break] = ACTIONS(901), + [anon_sym_continue] = ACTIONS(901), + [anon_sym_for] = ACTIONS(901), + [anon_sym_in] = ACTIONS(901), + [anon_sym_loop] = ACTIONS(901), + [anon_sym_make] = ACTIONS(901), + [anon_sym_while] = ACTIONS(901), + [anon_sym_do] = ACTIONS(901), + [anon_sym_if] = ACTIONS(901), + [anon_sym_else] = ACTIONS(901), + [anon_sym_match] = ACTIONS(901), + [anon_sym_RBRACE] = ACTIONS(903), + [anon_sym_try] = ACTIONS(901), + [anon_sym_catch] = ACTIONS(901), + [anon_sym_return] = ACTIONS(901), + [anon_sym_source] = ACTIONS(901), + [anon_sym_source_DASHenv] = ACTIONS(901), + [anon_sym_register] = ACTIONS(901), + [anon_sym_hide] = ACTIONS(901), + [anon_sym_hide_DASHenv] = ACTIONS(901), + [anon_sym_overlay] = ACTIONS(901), + [anon_sym_new] = ACTIONS(901), + [anon_sym_as] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_STAR_STAR] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_mod] = ACTIONS(901), + [anon_sym_SLASH_SLASH] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_bit_DASHshl] = ACTIONS(901), + [anon_sym_bit_DASHshr] = ACTIONS(901), + [anon_sym_EQ_EQ] = ACTIONS(903), + [anon_sym_BANG_EQ] = ACTIONS(903), + [anon_sym_LT2] = ACTIONS(901), + [anon_sym_LT_EQ] = ACTIONS(903), + [anon_sym_GT_EQ] = ACTIONS(903), + [anon_sym_not_DASHin] = ACTIONS(901), + [anon_sym_starts_DASHwith] = ACTIONS(901), + [anon_sym_ends_DASHwith] = ACTIONS(901), + [anon_sym_EQ_TILDE] = ACTIONS(903), + [anon_sym_BANG_TILDE] = ACTIONS(903), + [anon_sym_bit_DASHand] = ACTIONS(901), + [anon_sym_bit_DASHxor] = ACTIONS(901), + [anon_sym_bit_DASHor] = ACTIONS(901), + [anon_sym_and] = ACTIONS(901), + [anon_sym_xor] = ACTIONS(901), + [anon_sym_or] = ACTIONS(901), + [anon_sym_DOT_DOT2] = ACTIONS(901), + [anon_sym_DOT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(903), + [anon_sym_DOT_DOT_LT2] = ACTIONS(903), + [aux_sym__immediate_decimal_token2] = ACTIONS(1351), + [aux_sym__val_number_decimal_token1] = ACTIONS(901), + [aux_sym__val_number_decimal_token2] = ACTIONS(903), + [anon_sym_DOT2] = ACTIONS(901), + [aux_sym__val_number_decimal_token3] = ACTIONS(903), + [aux_sym__val_number_token1] = ACTIONS(903), + [aux_sym__val_number_token2] = ACTIONS(903), + [aux_sym__val_number_token3] = ACTIONS(903), + [aux_sym__val_number_token4] = ACTIONS(901), + [aux_sym__val_number_token5] = ACTIONS(903), + [aux_sym__val_number_token6] = ACTIONS(901), + [sym_filesize_unit] = ACTIONS(901), + [sym_duration_unit] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(903), + [sym__str_single_quotes] = ACTIONS(903), + [sym__str_back_ticks] = ACTIONS(903), + [aux_sym__record_key_token2] = ACTIONS(901), + [aux_sym_unquoted_token5] = ACTIONS(901), + [anon_sym_POUND] = ACTIONS(3), }, [489] = { [sym_comment] = STATE(489), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), + [anon_sym_export] = ACTIONS(938), + [anon_sym_alias] = ACTIONS(938), + [anon_sym_let] = ACTIONS(938), + [anon_sym_let_DASHenv] = ACTIONS(938), + [anon_sym_mut] = ACTIONS(938), + [anon_sym_const] = ACTIONS(938), + [sym_cmd_identifier] = ACTIONS(938), + [anon_sym_def] = ACTIONS(938), + [anon_sym_export_DASHenv] = ACTIONS(938), + [anon_sym_extern] = ACTIONS(938), + [anon_sym_module] = ACTIONS(938), + [anon_sym_use] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(938), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_error] = ACTIONS(938), + [anon_sym_list] = ACTIONS(938), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_break] = ACTIONS(938), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_for] = ACTIONS(938), + [anon_sym_in] = ACTIONS(938), + [anon_sym_loop] = ACTIONS(938), + [anon_sym_make] = ACTIONS(938), + [anon_sym_while] = ACTIONS(938), + [anon_sym_do] = ACTIONS(938), + [anon_sym_if] = ACTIONS(938), + [anon_sym_else] = ACTIONS(938), + [anon_sym_match] = ACTIONS(938), + [anon_sym_RBRACE] = ACTIONS(938), + [anon_sym_try] = ACTIONS(938), + [anon_sym_catch] = ACTIONS(938), + [anon_sym_return] = ACTIONS(938), + [anon_sym_source] = ACTIONS(938), + [anon_sym_source_DASHenv] = ACTIONS(938), + [anon_sym_register] = ACTIONS(938), + [anon_sym_hide] = ACTIONS(938), + [anon_sym_hide_DASHenv] = ACTIONS(938), + [anon_sym_overlay] = ACTIONS(938), + [anon_sym_new] = ACTIONS(938), + [anon_sym_as] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_STAR_STAR] = ACTIONS(938), + [anon_sym_PLUS_PLUS] = ACTIONS(938), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(938), + [anon_sym_SLASH_SLASH] = ACTIONS(938), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_bit_DASHshl] = ACTIONS(938), + [anon_sym_bit_DASHshr] = ACTIONS(938), + [anon_sym_EQ_EQ] = ACTIONS(938), + [anon_sym_BANG_EQ] = ACTIONS(938), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(938), + [anon_sym_GT_EQ] = ACTIONS(938), + [anon_sym_not_DASHin] = ACTIONS(938), + [anon_sym_starts_DASHwith] = ACTIONS(938), + [anon_sym_ends_DASHwith] = ACTIONS(938), + [anon_sym_EQ_TILDE] = ACTIONS(938), + [anon_sym_BANG_TILDE] = ACTIONS(938), + [anon_sym_bit_DASHand] = ACTIONS(938), + [anon_sym_bit_DASHxor] = ACTIONS(938), + [anon_sym_bit_DASHor] = ACTIONS(938), + [anon_sym_and] = ACTIONS(938), + [anon_sym_xor] = ACTIONS(938), + [anon_sym_or] = ACTIONS(938), + [anon_sym_DOT_DOT2] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(1353), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(965), + [anon_sym_DOT_DOT_LT2] = ACTIONS(965), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(938), + [anon_sym_DOT2] = ACTIONS(938), + [aux_sym__val_number_decimal_token3] = ACTIONS(938), + [aux_sym__val_number_token1] = ACTIONS(938), + [aux_sym__val_number_token2] = ACTIONS(938), + [aux_sym__val_number_token3] = ACTIONS(938), + [aux_sym__val_number_token4] = ACTIONS(938), + [aux_sym__val_number_token5] = ACTIONS(938), + [aux_sym__val_number_token6] = ACTIONS(938), + [sym_filesize_unit] = ACTIONS(1355), + [sym_duration_unit] = ACTIONS(1357), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym__str_single_quotes] = ACTIONS(938), + [sym__str_back_ticks] = ACTIONS(938), + [sym__entry_separator] = ACTIONS(940), + [aux_sym__record_key_token2] = ACTIONS(938), + [aux_sym_unquoted_token5] = ACTIONS(1359), [anon_sym_POUND] = ACTIONS(113), }, [490] = { [sym_comment] = STATE(490), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), + [anon_sym_export] = ACTIONS(901), + [anon_sym_alias] = ACTIONS(901), + [anon_sym_let] = ACTIONS(901), + [anon_sym_let_DASHenv] = ACTIONS(901), + [anon_sym_mut] = ACTIONS(901), + [anon_sym_const] = ACTIONS(901), + [sym_cmd_identifier] = ACTIONS(901), + [anon_sym_def] = ACTIONS(901), + [anon_sym_export_DASHenv] = ACTIONS(901), + [anon_sym_extern] = ACTIONS(901), + [anon_sym_module] = ACTIONS(901), + [anon_sym_use] = ACTIONS(901), + [anon_sym_LPAREN] = ACTIONS(901), + [anon_sym_DOLLAR] = ACTIONS(901), + [anon_sym_error] = ACTIONS(901), + [anon_sym_list] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_break] = ACTIONS(901), + [anon_sym_continue] = ACTIONS(901), + [anon_sym_for] = ACTIONS(901), + [anon_sym_in] = ACTIONS(901), + [anon_sym_loop] = ACTIONS(901), + [anon_sym_make] = ACTIONS(901), + [anon_sym_while] = ACTIONS(901), + [anon_sym_do] = ACTIONS(901), + [anon_sym_if] = ACTIONS(901), + [anon_sym_else] = ACTIONS(901), + [anon_sym_match] = ACTIONS(901), + [anon_sym_RBRACE] = ACTIONS(901), + [anon_sym_try] = ACTIONS(901), + [anon_sym_catch] = ACTIONS(901), + [anon_sym_return] = ACTIONS(901), + [anon_sym_source] = ACTIONS(901), + [anon_sym_source_DASHenv] = ACTIONS(901), + [anon_sym_register] = ACTIONS(901), + [anon_sym_hide] = ACTIONS(901), + [anon_sym_hide_DASHenv] = ACTIONS(901), + [anon_sym_overlay] = ACTIONS(901), + [anon_sym_new] = ACTIONS(901), + [anon_sym_as] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_STAR_STAR] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(901), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_mod] = ACTIONS(901), + [anon_sym_SLASH_SLASH] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_bit_DASHshl] = ACTIONS(901), + [anon_sym_bit_DASHshr] = ACTIONS(901), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT2] = ACTIONS(901), + [anon_sym_LT_EQ] = ACTIONS(901), + [anon_sym_GT_EQ] = ACTIONS(901), + [anon_sym_not_DASHin] = ACTIONS(901), + [anon_sym_starts_DASHwith] = ACTIONS(901), + [anon_sym_ends_DASHwith] = ACTIONS(901), + [anon_sym_EQ_TILDE] = ACTIONS(901), + [anon_sym_BANG_TILDE] = ACTIONS(901), + [anon_sym_bit_DASHand] = ACTIONS(901), + [anon_sym_bit_DASHxor] = ACTIONS(901), + [anon_sym_bit_DASHor] = ACTIONS(901), + [anon_sym_and] = ACTIONS(901), + [anon_sym_xor] = ACTIONS(901), + [anon_sym_or] = ACTIONS(901), + [anon_sym_DOT_DOT2] = ACTIONS(901), + [anon_sym_DOT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(903), + [anon_sym_DOT_DOT_LT2] = ACTIONS(903), + [aux_sym__val_number_decimal_token1] = ACTIONS(901), + [aux_sym__val_number_decimal_token2] = ACTIONS(901), + [anon_sym_DOT2] = ACTIONS(901), + [aux_sym__val_number_decimal_token3] = ACTIONS(901), + [aux_sym__val_number_token1] = ACTIONS(901), + [aux_sym__val_number_token2] = ACTIONS(901), + [aux_sym__val_number_token3] = ACTIONS(901), + [aux_sym__val_number_token4] = ACTIONS(901), + [aux_sym__val_number_token5] = ACTIONS(901), + [aux_sym__val_number_token6] = ACTIONS(901), + [sym_filesize_unit] = ACTIONS(901), + [sym_duration_unit] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [sym__str_single_quotes] = ACTIONS(901), + [sym__str_back_ticks] = ACTIONS(901), + [sym__entry_separator] = ACTIONS(903), + [aux_sym__record_key_token2] = ACTIONS(901), + [aux_sym_unquoted_token5] = ACTIONS(901), [anon_sym_POUND] = ACTIONS(113), }, [491] = { [sym_comment] = STATE(491), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), + [anon_sym_export] = ACTIONS(934), + [anon_sym_alias] = ACTIONS(934), + [anon_sym_let] = ACTIONS(934), + [anon_sym_let_DASHenv] = ACTIONS(934), + [anon_sym_mut] = ACTIONS(934), + [anon_sym_const] = ACTIONS(934), + [sym_cmd_identifier] = ACTIONS(934), + [anon_sym_def] = ACTIONS(934), + [anon_sym_export_DASHenv] = ACTIONS(934), + [anon_sym_extern] = ACTIONS(934), + [anon_sym_module] = ACTIONS(934), + [anon_sym_use] = ACTIONS(934), + [anon_sym_LPAREN] = ACTIONS(934), + [anon_sym_DOLLAR] = ACTIONS(934), + [anon_sym_error] = ACTIONS(934), + [anon_sym_list] = ACTIONS(934), + [anon_sym_GT] = ACTIONS(934), + [anon_sym_DASH] = ACTIONS(934), + [anon_sym_break] = ACTIONS(934), + [anon_sym_continue] = ACTIONS(934), + [anon_sym_for] = ACTIONS(934), + [anon_sym_in] = ACTIONS(934), + [anon_sym_loop] = ACTIONS(934), + [anon_sym_make] = ACTIONS(934), + [anon_sym_while] = ACTIONS(934), + [anon_sym_do] = ACTIONS(934), + [anon_sym_if] = ACTIONS(934), + [anon_sym_else] = ACTIONS(934), + [anon_sym_match] = ACTIONS(934), + [anon_sym_RBRACE] = ACTIONS(934), + [anon_sym_try] = ACTIONS(934), + [anon_sym_catch] = ACTIONS(934), + [anon_sym_return] = ACTIONS(934), + [anon_sym_source] = ACTIONS(934), + [anon_sym_source_DASHenv] = ACTIONS(934), + [anon_sym_register] = ACTIONS(934), + [anon_sym_hide] = ACTIONS(934), + [anon_sym_hide_DASHenv] = ACTIONS(934), + [anon_sym_overlay] = ACTIONS(934), + [anon_sym_new] = ACTIONS(934), + [anon_sym_as] = ACTIONS(934), + [anon_sym_STAR] = ACTIONS(934), + [anon_sym_STAR_STAR] = ACTIONS(934), + [anon_sym_PLUS_PLUS] = ACTIONS(934), + [anon_sym_SLASH] = ACTIONS(934), + [anon_sym_mod] = ACTIONS(934), + [anon_sym_SLASH_SLASH] = ACTIONS(934), + [anon_sym_PLUS] = ACTIONS(934), + [anon_sym_bit_DASHshl] = ACTIONS(934), + [anon_sym_bit_DASHshr] = ACTIONS(934), + [anon_sym_EQ_EQ] = ACTIONS(934), + [anon_sym_BANG_EQ] = ACTIONS(934), + [anon_sym_LT2] = ACTIONS(934), + [anon_sym_LT_EQ] = ACTIONS(934), + [anon_sym_GT_EQ] = ACTIONS(934), + [anon_sym_not_DASHin] = ACTIONS(934), + [anon_sym_starts_DASHwith] = ACTIONS(934), + [anon_sym_ends_DASHwith] = ACTIONS(934), + [anon_sym_EQ_TILDE] = ACTIONS(934), + [anon_sym_BANG_TILDE] = ACTIONS(934), + [anon_sym_bit_DASHand] = ACTIONS(934), + [anon_sym_bit_DASHxor] = ACTIONS(934), + [anon_sym_bit_DASHor] = ACTIONS(934), + [anon_sym_and] = ACTIONS(934), + [anon_sym_xor] = ACTIONS(934), + [anon_sym_or] = ACTIONS(934), + [anon_sym_DOT_DOT2] = ACTIONS(934), + [anon_sym_DOT] = ACTIONS(934), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(936), + [anon_sym_DOT_DOT_LT2] = ACTIONS(936), + [aux_sym__val_number_decimal_token1] = ACTIONS(934), + [aux_sym__val_number_decimal_token2] = ACTIONS(934), + [anon_sym_DOT2] = ACTIONS(934), + [aux_sym__val_number_decimal_token3] = ACTIONS(934), + [aux_sym__val_number_token1] = ACTIONS(934), + [aux_sym__val_number_token2] = ACTIONS(934), + [aux_sym__val_number_token3] = ACTIONS(934), + [aux_sym__val_number_token4] = ACTIONS(934), + [aux_sym__val_number_token5] = ACTIONS(934), + [aux_sym__val_number_token6] = ACTIONS(934), + [sym_filesize_unit] = ACTIONS(934), + [sym_duration_unit] = ACTIONS(934), + [anon_sym_DQUOTE] = ACTIONS(934), + [sym__str_single_quotes] = ACTIONS(934), + [sym__str_back_ticks] = ACTIONS(934), + [sym__entry_separator] = ACTIONS(936), + [aux_sym__record_key_token2] = ACTIONS(934), + [aux_sym_unquoted_token5] = ACTIONS(934), [anon_sym_POUND] = ACTIONS(113), }, [492] = { [sym_comment] = STATE(492), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), + [anon_sym_export] = ACTIONS(911), + [anon_sym_alias] = ACTIONS(911), + [anon_sym_let] = ACTIONS(911), + [anon_sym_let_DASHenv] = ACTIONS(911), + [anon_sym_mut] = ACTIONS(911), + [anon_sym_const] = ACTIONS(911), + [sym_cmd_identifier] = ACTIONS(911), + [anon_sym_def] = ACTIONS(911), + [anon_sym_export_DASHenv] = ACTIONS(911), + [anon_sym_extern] = ACTIONS(911), + [anon_sym_module] = ACTIONS(911), + [anon_sym_use] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_DOLLAR] = ACTIONS(911), + [anon_sym_error] = ACTIONS(911), + [anon_sym_list] = ACTIONS(911), + [anon_sym_GT] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_break] = ACTIONS(911), + [anon_sym_continue] = ACTIONS(911), + [anon_sym_for] = ACTIONS(911), + [anon_sym_in] = ACTIONS(911), + [anon_sym_loop] = ACTIONS(911), + [anon_sym_make] = ACTIONS(911), + [anon_sym_while] = ACTIONS(911), + [anon_sym_do] = ACTIONS(911), + [anon_sym_if] = ACTIONS(911), + [anon_sym_else] = ACTIONS(911), + [anon_sym_match] = ACTIONS(911), + [anon_sym_RBRACE] = ACTIONS(911), + [anon_sym_try] = ACTIONS(911), + [anon_sym_catch] = ACTIONS(911), + [anon_sym_return] = ACTIONS(911), + [anon_sym_source] = ACTIONS(911), + [anon_sym_source_DASHenv] = ACTIONS(911), + [anon_sym_register] = ACTIONS(911), + [anon_sym_hide] = ACTIONS(911), + [anon_sym_hide_DASHenv] = ACTIONS(911), + [anon_sym_overlay] = ACTIONS(911), + [anon_sym_new] = ACTIONS(911), + [anon_sym_as] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(911), + [anon_sym_STAR_STAR] = ACTIONS(911), + [anon_sym_PLUS_PLUS] = ACTIONS(911), + [anon_sym_SLASH] = ACTIONS(911), + [anon_sym_mod] = ACTIONS(911), + [anon_sym_SLASH_SLASH] = ACTIONS(911), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_bit_DASHshl] = ACTIONS(911), + [anon_sym_bit_DASHshr] = ACTIONS(911), + [anon_sym_EQ_EQ] = ACTIONS(911), + [anon_sym_BANG_EQ] = ACTIONS(911), + [anon_sym_LT2] = ACTIONS(911), + [anon_sym_LT_EQ] = ACTIONS(911), + [anon_sym_GT_EQ] = ACTIONS(911), + [anon_sym_not_DASHin] = ACTIONS(911), + [anon_sym_starts_DASHwith] = ACTIONS(911), + [anon_sym_ends_DASHwith] = ACTIONS(911), + [anon_sym_EQ_TILDE] = ACTIONS(911), + [anon_sym_BANG_TILDE] = ACTIONS(911), + [anon_sym_bit_DASHand] = ACTIONS(911), + [anon_sym_bit_DASHxor] = ACTIONS(911), + [anon_sym_bit_DASHor] = ACTIONS(911), + [anon_sym_and] = ACTIONS(911), + [anon_sym_xor] = ACTIONS(911), + [anon_sym_or] = ACTIONS(911), + [anon_sym_DOT_DOT2] = ACTIONS(911), + [anon_sym_DOT] = ACTIONS(1361), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(913), + [anon_sym_DOT_DOT_LT2] = ACTIONS(913), + [aux_sym__immediate_decimal_token2] = ACTIONS(1363), + [aux_sym__val_number_decimal_token1] = ACTIONS(911), + [aux_sym__val_number_decimal_token2] = ACTIONS(911), + [anon_sym_DOT2] = ACTIONS(911), + [aux_sym__val_number_decimal_token3] = ACTIONS(911), + [aux_sym__val_number_token1] = ACTIONS(911), + [aux_sym__val_number_token2] = ACTIONS(911), + [aux_sym__val_number_token3] = ACTIONS(911), + [aux_sym__val_number_token4] = ACTIONS(911), + [aux_sym__val_number_token5] = ACTIONS(911), + [aux_sym__val_number_token6] = ACTIONS(911), + [sym_filesize_unit] = ACTIONS(911), + [sym_duration_unit] = ACTIONS(911), + [anon_sym_DQUOTE] = ACTIONS(911), + [sym__str_single_quotes] = ACTIONS(911), + [sym__str_back_ticks] = ACTIONS(911), + [sym__entry_separator] = ACTIONS(913), + [aux_sym__record_key_token2] = ACTIONS(911), [anon_sym_POUND] = ACTIONS(113), }, [493] = { [sym_comment] = STATE(493), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(911), + [anon_sym_alias] = ACTIONS(911), + [anon_sym_let] = ACTIONS(911), + [anon_sym_let_DASHenv] = ACTIONS(911), + [anon_sym_mut] = ACTIONS(911), + [anon_sym_const] = ACTIONS(911), + [sym_cmd_identifier] = ACTIONS(911), + [anon_sym_def] = ACTIONS(911), + [anon_sym_export_DASHenv] = ACTIONS(911), + [anon_sym_extern] = ACTIONS(911), + [anon_sym_module] = ACTIONS(911), + [anon_sym_use] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(913), + [anon_sym_DOLLAR] = ACTIONS(913), + [anon_sym_error] = ACTIONS(911), + [anon_sym_list] = ACTIONS(911), + [anon_sym_GT] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_break] = ACTIONS(911), + [anon_sym_continue] = ACTIONS(911), + [anon_sym_for] = ACTIONS(911), + [anon_sym_in] = ACTIONS(911), + [anon_sym_loop] = ACTIONS(911), + [anon_sym_make] = ACTIONS(911), + [anon_sym_while] = ACTIONS(911), + [anon_sym_do] = ACTIONS(911), + [anon_sym_if] = ACTIONS(911), + [anon_sym_else] = ACTIONS(911), + [anon_sym_match] = ACTIONS(911), + [anon_sym_RBRACE] = ACTIONS(913), + [anon_sym_try] = ACTIONS(911), + [anon_sym_catch] = ACTIONS(911), + [anon_sym_return] = ACTIONS(911), + [anon_sym_source] = ACTIONS(911), + [anon_sym_source_DASHenv] = ACTIONS(911), + [anon_sym_register] = ACTIONS(911), + [anon_sym_hide] = ACTIONS(911), + [anon_sym_hide_DASHenv] = ACTIONS(911), + [anon_sym_overlay] = ACTIONS(911), + [anon_sym_new] = ACTIONS(911), + [anon_sym_as] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(911), + [anon_sym_STAR_STAR] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_SLASH] = ACTIONS(911), + [anon_sym_mod] = ACTIONS(911), + [anon_sym_SLASH_SLASH] = ACTIONS(913), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_bit_DASHshl] = ACTIONS(911), + [anon_sym_bit_DASHshr] = ACTIONS(911), + [anon_sym_EQ_EQ] = ACTIONS(913), + [anon_sym_BANG_EQ] = ACTIONS(913), + [anon_sym_LT2] = ACTIONS(911), + [anon_sym_LT_EQ] = ACTIONS(913), + [anon_sym_GT_EQ] = ACTIONS(913), + [anon_sym_not_DASHin] = ACTIONS(911), + [anon_sym_starts_DASHwith] = ACTIONS(911), + [anon_sym_ends_DASHwith] = ACTIONS(911), + [anon_sym_EQ_TILDE] = ACTIONS(913), + [anon_sym_BANG_TILDE] = ACTIONS(913), + [anon_sym_bit_DASHand] = ACTIONS(911), + [anon_sym_bit_DASHxor] = ACTIONS(911), + [anon_sym_bit_DASHor] = ACTIONS(911), + [anon_sym_and] = ACTIONS(911), + [anon_sym_xor] = ACTIONS(911), + [anon_sym_or] = ACTIONS(911), + [anon_sym_DOT_DOT2] = ACTIONS(911), + [anon_sym_DOT] = ACTIONS(1365), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(913), + [anon_sym_DOT_DOT_LT2] = ACTIONS(913), + [aux_sym__immediate_decimal_token2] = ACTIONS(1368), + [aux_sym__val_number_decimal_token1] = ACTIONS(911), + [aux_sym__val_number_decimal_token2] = ACTIONS(913), + [anon_sym_DOT2] = ACTIONS(911), + [aux_sym__val_number_decimal_token3] = ACTIONS(913), + [aux_sym__val_number_token1] = ACTIONS(913), + [aux_sym__val_number_token2] = ACTIONS(913), + [aux_sym__val_number_token3] = ACTIONS(913), + [aux_sym__val_number_token4] = ACTIONS(911), + [aux_sym__val_number_token5] = ACTIONS(913), + [aux_sym__val_number_token6] = ACTIONS(911), + [sym_filesize_unit] = ACTIONS(911), + [sym_duration_unit] = ACTIONS(911), + [anon_sym_DQUOTE] = ACTIONS(913), + [sym__str_single_quotes] = ACTIONS(913), + [sym__str_back_ticks] = ACTIONS(913), + [aux_sym__record_key_token2] = ACTIONS(911), + [aux_sym_unquoted_token5] = ACTIONS(911), + [anon_sym_POUND] = ACTIONS(3), }, [494] = { [sym_comment] = STATE(494), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(911), + [anon_sym_alias] = ACTIONS(911), + [anon_sym_let] = ACTIONS(911), + [anon_sym_let_DASHenv] = ACTIONS(911), + [anon_sym_mut] = ACTIONS(911), + [anon_sym_const] = ACTIONS(911), + [sym_cmd_identifier] = ACTIONS(911), + [anon_sym_def] = ACTIONS(911), + [anon_sym_export_DASHenv] = ACTIONS(911), + [anon_sym_extern] = ACTIONS(911), + [anon_sym_module] = ACTIONS(911), + [anon_sym_use] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(913), + [anon_sym_DOLLAR] = ACTIONS(913), + [anon_sym_error] = ACTIONS(911), + [anon_sym_list] = ACTIONS(911), + [anon_sym_GT] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_break] = ACTIONS(911), + [anon_sym_continue] = ACTIONS(911), + [anon_sym_for] = ACTIONS(911), + [anon_sym_in] = ACTIONS(911), + [anon_sym_loop] = ACTIONS(911), + [anon_sym_make] = ACTIONS(911), + [anon_sym_while] = ACTIONS(911), + [anon_sym_do] = ACTIONS(911), + [anon_sym_if] = ACTIONS(911), + [anon_sym_else] = ACTIONS(911), + [anon_sym_match] = ACTIONS(911), + [anon_sym_RBRACE] = ACTIONS(913), + [anon_sym_try] = ACTIONS(911), + [anon_sym_catch] = ACTIONS(911), + [anon_sym_return] = ACTIONS(911), + [anon_sym_source] = ACTIONS(911), + [anon_sym_source_DASHenv] = ACTIONS(911), + [anon_sym_register] = ACTIONS(911), + [anon_sym_hide] = ACTIONS(911), + [anon_sym_hide_DASHenv] = ACTIONS(911), + [anon_sym_overlay] = ACTIONS(911), + [anon_sym_new] = ACTIONS(911), + [anon_sym_as] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(911), + [anon_sym_STAR_STAR] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_SLASH] = ACTIONS(911), + [anon_sym_mod] = ACTIONS(911), + [anon_sym_SLASH_SLASH] = ACTIONS(913), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_bit_DASHshl] = ACTIONS(911), + [anon_sym_bit_DASHshr] = ACTIONS(911), + [anon_sym_EQ_EQ] = ACTIONS(913), + [anon_sym_BANG_EQ] = ACTIONS(913), + [anon_sym_LT2] = ACTIONS(911), + [anon_sym_LT_EQ] = ACTIONS(913), + [anon_sym_GT_EQ] = ACTIONS(913), + [anon_sym_not_DASHin] = ACTIONS(911), + [anon_sym_starts_DASHwith] = ACTIONS(911), + [anon_sym_ends_DASHwith] = ACTIONS(911), + [anon_sym_EQ_TILDE] = ACTIONS(913), + [anon_sym_BANG_TILDE] = ACTIONS(913), + [anon_sym_bit_DASHand] = ACTIONS(911), + [anon_sym_bit_DASHxor] = ACTIONS(911), + [anon_sym_bit_DASHor] = ACTIONS(911), + [anon_sym_and] = ACTIONS(911), + [anon_sym_xor] = ACTIONS(911), + [anon_sym_or] = ACTIONS(911), + [anon_sym_DOT_DOT2] = ACTIONS(911), + [anon_sym_DOT] = ACTIONS(911), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(913), + [anon_sym_DOT_DOT_LT2] = ACTIONS(913), + [aux_sym__immediate_decimal_token2] = ACTIONS(1368), + [aux_sym__val_number_decimal_token1] = ACTIONS(911), + [aux_sym__val_number_decimal_token2] = ACTIONS(913), + [anon_sym_DOT2] = ACTIONS(911), + [aux_sym__val_number_decimal_token3] = ACTIONS(913), + [aux_sym__val_number_token1] = ACTIONS(913), + [aux_sym__val_number_token2] = ACTIONS(913), + [aux_sym__val_number_token3] = ACTIONS(913), + [aux_sym__val_number_token4] = ACTIONS(911), + [aux_sym__val_number_token5] = ACTIONS(913), + [aux_sym__val_number_token6] = ACTIONS(911), + [sym_filesize_unit] = ACTIONS(911), + [sym_duration_unit] = ACTIONS(911), + [anon_sym_DQUOTE] = ACTIONS(913), + [sym__str_single_quotes] = ACTIONS(913), + [sym__str_back_ticks] = ACTIONS(913), + [aux_sym__record_key_token2] = ACTIONS(911), + [aux_sym_unquoted_token5] = ACTIONS(911), + [anon_sym_POUND] = ACTIONS(3), }, [495] = { [sym_comment] = STATE(495), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(893), + [anon_sym_alias] = ACTIONS(893), + [anon_sym_let] = ACTIONS(893), + [anon_sym_let_DASHenv] = ACTIONS(893), + [anon_sym_mut] = ACTIONS(893), + [anon_sym_const] = ACTIONS(893), + [sym_cmd_identifier] = ACTIONS(893), + [anon_sym_def] = ACTIONS(893), + [anon_sym_export_DASHenv] = ACTIONS(893), + [anon_sym_extern] = ACTIONS(893), + [anon_sym_module] = ACTIONS(893), + [anon_sym_use] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(895), + [anon_sym_DOLLAR] = ACTIONS(895), + [anon_sym_error] = ACTIONS(893), + [anon_sym_list] = ACTIONS(893), + [anon_sym_GT] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_break] = ACTIONS(893), + [anon_sym_continue] = ACTIONS(893), + [anon_sym_for] = ACTIONS(893), + [anon_sym_in] = ACTIONS(893), + [anon_sym_loop] = ACTIONS(893), + [anon_sym_make] = ACTIONS(893), + [anon_sym_while] = ACTIONS(893), + [anon_sym_do] = ACTIONS(893), + [anon_sym_if] = ACTIONS(893), + [anon_sym_else] = ACTIONS(893), + [anon_sym_match] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(895), + [anon_sym_try] = ACTIONS(893), + [anon_sym_catch] = ACTIONS(893), + [anon_sym_return] = ACTIONS(893), + [anon_sym_source] = ACTIONS(893), + [anon_sym_source_DASHenv] = ACTIONS(893), + [anon_sym_register] = ACTIONS(893), + [anon_sym_hide] = ACTIONS(893), + [anon_sym_hide_DASHenv] = ACTIONS(893), + [anon_sym_overlay] = ACTIONS(893), + [anon_sym_new] = ACTIONS(893), + [anon_sym_as] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(893), + [anon_sym_STAR_STAR] = ACTIONS(895), + [anon_sym_PLUS_PLUS] = ACTIONS(895), + [anon_sym_SLASH] = ACTIONS(893), + [anon_sym_mod] = ACTIONS(893), + [anon_sym_SLASH_SLASH] = ACTIONS(895), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_bit_DASHshl] = ACTIONS(893), + [anon_sym_bit_DASHshr] = ACTIONS(893), + [anon_sym_EQ_EQ] = ACTIONS(895), + [anon_sym_BANG_EQ] = ACTIONS(895), + [anon_sym_LT2] = ACTIONS(893), + [anon_sym_LT_EQ] = ACTIONS(895), + [anon_sym_GT_EQ] = ACTIONS(895), + [anon_sym_not_DASHin] = ACTIONS(893), + [anon_sym_starts_DASHwith] = ACTIONS(893), + [anon_sym_ends_DASHwith] = ACTIONS(893), + [anon_sym_EQ_TILDE] = ACTIONS(895), + [anon_sym_BANG_TILDE] = ACTIONS(895), + [anon_sym_bit_DASHand] = ACTIONS(893), + [anon_sym_bit_DASHxor] = ACTIONS(893), + [anon_sym_bit_DASHor] = ACTIONS(893), + [anon_sym_and] = ACTIONS(893), + [anon_sym_xor] = ACTIONS(893), + [anon_sym_or] = ACTIONS(893), + [anon_sym_DOT_DOT2] = ACTIONS(893), + [anon_sym_DOT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), + [anon_sym_DOT_DOT_LT2] = ACTIONS(895), + [aux_sym__immediate_decimal_token2] = ACTIONS(1345), + [aux_sym__val_number_decimal_token1] = ACTIONS(893), + [aux_sym__val_number_decimal_token2] = ACTIONS(895), + [anon_sym_DOT2] = ACTIONS(893), + [aux_sym__val_number_decimal_token3] = ACTIONS(895), + [aux_sym__val_number_token1] = ACTIONS(895), + [aux_sym__val_number_token2] = ACTIONS(895), + [aux_sym__val_number_token3] = ACTIONS(895), + [aux_sym__val_number_token4] = ACTIONS(893), + [aux_sym__val_number_token5] = ACTIONS(895), + [aux_sym__val_number_token6] = ACTIONS(893), + [sym_filesize_unit] = ACTIONS(893), + [sym_duration_unit] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(895), + [sym__str_single_quotes] = ACTIONS(895), + [sym__str_back_ticks] = ACTIONS(895), + [aux_sym__record_key_token2] = ACTIONS(893), + [aux_sym_unquoted_token5] = ACTIONS(893), + [anon_sym_POUND] = ACTIONS(3), }, [496] = { + [sym__immediate_decimal] = STATE(8796), [sym_comment] = STATE(496), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), + [anon_sym_export] = ACTIONS(920), + [anon_sym_alias] = ACTIONS(920), + [anon_sym_let] = ACTIONS(920), + [anon_sym_let_DASHenv] = ACTIONS(920), + [anon_sym_mut] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [sym_cmd_identifier] = ACTIONS(920), + [anon_sym_def] = ACTIONS(920), + [anon_sym_export_DASHenv] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym_module] = ACTIONS(920), + [anon_sym_use] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_error] = ACTIONS(920), + [anon_sym_list] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_in] = ACTIONS(920), + [anon_sym_loop] = ACTIONS(920), + [anon_sym_make] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_else] = ACTIONS(920), + [anon_sym_match] = ACTIONS(920), + [anon_sym_RBRACE] = ACTIONS(920), + [anon_sym_try] = ACTIONS(920), + [anon_sym_catch] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_source] = ACTIONS(920), + [anon_sym_source_DASHenv] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_hide] = ACTIONS(920), + [anon_sym_hide_DASHenv] = ACTIONS(920), + [anon_sym_overlay] = ACTIONS(920), + [anon_sym_new] = ACTIONS(920), + [anon_sym_as] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_STAR_STAR] = ACTIONS(920), + [anon_sym_PLUS_PLUS] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_mod] = ACTIONS(920), + [anon_sym_SLASH_SLASH] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_bit_DASHshl] = ACTIONS(920), + [anon_sym_bit_DASHshr] = ACTIONS(920), + [anon_sym_EQ_EQ] = ACTIONS(920), + [anon_sym_BANG_EQ] = ACTIONS(920), + [anon_sym_LT2] = ACTIONS(920), + [anon_sym_LT_EQ] = ACTIONS(920), + [anon_sym_GT_EQ] = ACTIONS(920), + [anon_sym_not_DASHin] = ACTIONS(920), + [anon_sym_starts_DASHwith] = ACTIONS(920), + [anon_sym_ends_DASHwith] = ACTIONS(920), + [anon_sym_EQ_TILDE] = ACTIONS(920), + [anon_sym_BANG_TILDE] = ACTIONS(920), + [anon_sym_bit_DASHand] = ACTIONS(920), + [anon_sym_bit_DASHxor] = ACTIONS(920), + [anon_sym_bit_DASHor] = ACTIONS(920), + [anon_sym_and] = ACTIONS(920), + [anon_sym_xor] = ACTIONS(920), + [anon_sym_or] = ACTIONS(920), + [anon_sym_DOT] = ACTIONS(1370), + [aux_sym__immediate_decimal_token1] = ACTIONS(926), + [aux_sym__immediate_decimal_token3] = ACTIONS(926), + [aux_sym__immediate_decimal_token4] = ACTIONS(928), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [sym__entry_separator] = ACTIONS(922), + [aux_sym__record_key_token2] = ACTIONS(920), + [aux_sym_unquoted_token3] = ACTIONS(1359), + [aux_sym_unquoted_token5] = ACTIONS(1372), [anon_sym_POUND] = ACTIONS(113), }, [497] = { [sym_comment] = STATE(497), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), + [anon_sym_export] = ACTIONS(911), + [anon_sym_alias] = ACTIONS(911), + [anon_sym_let] = ACTIONS(911), + [anon_sym_let_DASHenv] = ACTIONS(911), + [anon_sym_mut] = ACTIONS(911), + [anon_sym_const] = ACTIONS(911), + [sym_cmd_identifier] = ACTIONS(911), + [anon_sym_def] = ACTIONS(911), + [anon_sym_export_DASHenv] = ACTIONS(911), + [anon_sym_extern] = ACTIONS(911), + [anon_sym_module] = ACTIONS(911), + [anon_sym_use] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_DOLLAR] = ACTIONS(911), + [anon_sym_error] = ACTIONS(911), + [anon_sym_list] = ACTIONS(911), + [anon_sym_GT] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_break] = ACTIONS(911), + [anon_sym_continue] = ACTIONS(911), + [anon_sym_for] = ACTIONS(911), + [anon_sym_in] = ACTIONS(911), + [anon_sym_loop] = ACTIONS(911), + [anon_sym_make] = ACTIONS(911), + [anon_sym_while] = ACTIONS(911), + [anon_sym_do] = ACTIONS(911), + [anon_sym_if] = ACTIONS(911), + [anon_sym_else] = ACTIONS(911), + [anon_sym_match] = ACTIONS(911), + [anon_sym_RBRACE] = ACTIONS(911), + [anon_sym_try] = ACTIONS(911), + [anon_sym_catch] = ACTIONS(911), + [anon_sym_return] = ACTIONS(911), + [anon_sym_source] = ACTIONS(911), + [anon_sym_source_DASHenv] = ACTIONS(911), + [anon_sym_register] = ACTIONS(911), + [anon_sym_hide] = ACTIONS(911), + [anon_sym_hide_DASHenv] = ACTIONS(911), + [anon_sym_overlay] = ACTIONS(911), + [anon_sym_new] = ACTIONS(911), + [anon_sym_as] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(911), + [anon_sym_STAR_STAR] = ACTIONS(911), + [anon_sym_PLUS_PLUS] = ACTIONS(911), + [anon_sym_SLASH] = ACTIONS(911), + [anon_sym_mod] = ACTIONS(911), + [anon_sym_SLASH_SLASH] = ACTIONS(911), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_bit_DASHshl] = ACTIONS(911), + [anon_sym_bit_DASHshr] = ACTIONS(911), + [anon_sym_EQ_EQ] = ACTIONS(911), + [anon_sym_BANG_EQ] = ACTIONS(911), + [anon_sym_LT2] = ACTIONS(911), + [anon_sym_LT_EQ] = ACTIONS(911), + [anon_sym_GT_EQ] = ACTIONS(911), + [anon_sym_not_DASHin] = ACTIONS(911), + [anon_sym_starts_DASHwith] = ACTIONS(911), + [anon_sym_ends_DASHwith] = ACTIONS(911), + [anon_sym_EQ_TILDE] = ACTIONS(911), + [anon_sym_BANG_TILDE] = ACTIONS(911), + [anon_sym_bit_DASHand] = ACTIONS(911), + [anon_sym_bit_DASHxor] = ACTIONS(911), + [anon_sym_bit_DASHor] = ACTIONS(911), + [anon_sym_and] = ACTIONS(911), + [anon_sym_xor] = ACTIONS(911), + [anon_sym_or] = ACTIONS(911), + [anon_sym_DOT_DOT2] = ACTIONS(911), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(913), + [anon_sym_DOT_DOT_LT2] = ACTIONS(913), + [aux_sym__immediate_decimal_token2] = ACTIONS(1363), + [aux_sym__val_number_decimal_token1] = ACTIONS(911), + [aux_sym__val_number_decimal_token2] = ACTIONS(911), + [anon_sym_DOT2] = ACTIONS(911), + [aux_sym__val_number_decimal_token3] = ACTIONS(911), + [aux_sym__val_number_token1] = ACTIONS(911), + [aux_sym__val_number_token2] = ACTIONS(911), + [aux_sym__val_number_token3] = ACTIONS(911), + [aux_sym__val_number_token4] = ACTIONS(911), + [aux_sym__val_number_token5] = ACTIONS(911), + [aux_sym__val_number_token6] = ACTIONS(911), + [sym_filesize_unit] = ACTIONS(911), + [sym_duration_unit] = ACTIONS(911), + [anon_sym_DQUOTE] = ACTIONS(911), + [sym__str_single_quotes] = ACTIONS(911), + [sym__str_back_ticks] = ACTIONS(911), + [sym__entry_separator] = ACTIONS(913), + [aux_sym__record_key_token2] = ACTIONS(911), [anon_sym_POUND] = ACTIONS(113), }, [498] = { + [sym_path] = STATE(535), [sym_comment] = STATE(498), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), + [aux_sym_cell_path_repeat1] = STATE(498), + [anon_sym_export] = ACTIONS(985), + [anon_sym_alias] = ACTIONS(985), + [anon_sym_let] = ACTIONS(985), + [anon_sym_let_DASHenv] = ACTIONS(985), + [anon_sym_mut] = ACTIONS(985), + [anon_sym_const] = ACTIONS(985), + [sym_cmd_identifier] = ACTIONS(985), + [anon_sym_def] = ACTIONS(985), + [anon_sym_export_DASHenv] = ACTIONS(985), + [anon_sym_extern] = ACTIONS(985), + [anon_sym_module] = ACTIONS(985), + [anon_sym_use] = ACTIONS(985), + [anon_sym_LPAREN] = ACTIONS(985), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_error] = ACTIONS(985), + [anon_sym_list] = ACTIONS(985), + [anon_sym_GT] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_break] = ACTIONS(985), + [anon_sym_continue] = ACTIONS(985), + [anon_sym_for] = ACTIONS(985), + [anon_sym_in] = ACTIONS(985), + [anon_sym_loop] = ACTIONS(985), + [anon_sym_make] = ACTIONS(985), + [anon_sym_while] = ACTIONS(985), + [anon_sym_do] = ACTIONS(985), + [anon_sym_if] = ACTIONS(985), + [anon_sym_else] = ACTIONS(985), + [anon_sym_match] = ACTIONS(985), + [anon_sym_RBRACE] = ACTIONS(985), + [anon_sym_try] = ACTIONS(985), + [anon_sym_catch] = ACTIONS(985), + [anon_sym_return] = ACTIONS(985), + [anon_sym_source] = ACTIONS(985), + [anon_sym_source_DASHenv] = ACTIONS(985), + [anon_sym_register] = ACTIONS(985), + [anon_sym_hide] = ACTIONS(985), + [anon_sym_hide_DASHenv] = ACTIONS(985), + [anon_sym_overlay] = ACTIONS(985), + [anon_sym_new] = ACTIONS(985), + [anon_sym_as] = ACTIONS(985), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_STAR_STAR] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(985), + [anon_sym_SLASH] = ACTIONS(985), + [anon_sym_mod] = ACTIONS(985), + [anon_sym_SLASH_SLASH] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_bit_DASHshl] = ACTIONS(985), + [anon_sym_bit_DASHshr] = ACTIONS(985), + [anon_sym_EQ_EQ] = ACTIONS(985), + [anon_sym_BANG_EQ] = ACTIONS(985), + [anon_sym_LT2] = ACTIONS(985), + [anon_sym_LT_EQ] = ACTIONS(985), + [anon_sym_GT_EQ] = ACTIONS(985), + [anon_sym_not_DASHin] = ACTIONS(985), + [anon_sym_starts_DASHwith] = ACTIONS(985), + [anon_sym_ends_DASHwith] = ACTIONS(985), + [anon_sym_EQ_TILDE] = ACTIONS(985), + [anon_sym_BANG_TILDE] = ACTIONS(985), + [anon_sym_bit_DASHand] = ACTIONS(985), + [anon_sym_bit_DASHxor] = ACTIONS(985), + [anon_sym_bit_DASHor] = ACTIONS(985), + [anon_sym_and] = ACTIONS(985), + [anon_sym_xor] = ACTIONS(985), + [anon_sym_or] = ACTIONS(985), + [anon_sym_DOT_DOT2] = ACTIONS(985), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(987), + [anon_sym_DOT_DOT_LT2] = ACTIONS(987), + [aux_sym__val_number_decimal_token1] = ACTIONS(985), + [aux_sym__val_number_decimal_token2] = ACTIONS(985), + [anon_sym_DOT2] = ACTIONS(985), + [aux_sym__val_number_decimal_token3] = ACTIONS(985), + [aux_sym__val_number_token1] = ACTIONS(985), + [aux_sym__val_number_token2] = ACTIONS(985), + [aux_sym__val_number_token3] = ACTIONS(985), + [aux_sym__val_number_token4] = ACTIONS(985), + [aux_sym__val_number_token5] = ACTIONS(985), + [aux_sym__val_number_token6] = ACTIONS(985), + [anon_sym_DQUOTE] = ACTIONS(985), + [sym__str_single_quotes] = ACTIONS(985), + [sym__str_back_ticks] = ACTIONS(985), + [sym__entry_separator] = ACTIONS(987), + [aux_sym__record_key_token2] = ACTIONS(985), [anon_sym_POUND] = ACTIONS(113), }, [499] = { + [sym__immediate_decimal] = STATE(8796), [sym_comment] = STATE(499), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_alias] = ACTIONS(1372), - [anon_sym_let] = ACTIONS(1372), - [anon_sym_let_DASHenv] = ACTIONS(1372), - [anon_sym_mut] = ACTIONS(1372), - [anon_sym_const] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1372), - [sym_cmd_identifier] = ACTIONS(1372), - [anon_sym_LF] = ACTIONS(1374), - [anon_sym_def] = ACTIONS(1372), - [anon_sym_export_DASHenv] = ACTIONS(1372), - [anon_sym_extern] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_use] = ACTIONS(1372), - [anon_sym_LBRACK] = ACTIONS(1372), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_RPAREN] = ACTIONS(1372), - [anon_sym_DOLLAR] = ACTIONS(1372), - [anon_sym_error] = ACTIONS(1372), - [anon_sym_GT] = ACTIONS(1372), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1372), - [anon_sym_break] = ACTIONS(1372), - [anon_sym_continue] = ACTIONS(1372), - [anon_sym_for] = ACTIONS(1372), - [anon_sym_in] = ACTIONS(1372), - [anon_sym_loop] = ACTIONS(1372), - [anon_sym_while] = ACTIONS(1372), - [anon_sym_do] = ACTIONS(1372), - [anon_sym_if] = ACTIONS(1372), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_RBRACE] = ACTIONS(1372), - [anon_sym_DOT_DOT] = ACTIONS(1372), - [anon_sym_try] = ACTIONS(1372), - [anon_sym_return] = ACTIONS(1372), - [anon_sym_source] = ACTIONS(1372), - [anon_sym_source_DASHenv] = ACTIONS(1372), - [anon_sym_register] = ACTIONS(1372), - [anon_sym_hide] = ACTIONS(1372), - [anon_sym_hide_DASHenv] = ACTIONS(1372), - [anon_sym_overlay] = ACTIONS(1372), - [anon_sym_as] = ACTIONS(1372), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_where] = ACTIONS(1372), - [anon_sym_STAR_STAR] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_SLASH] = ACTIONS(1372), - [anon_sym_mod] = ACTIONS(1372), - [anon_sym_SLASH_SLASH] = ACTIONS(1372), - [anon_sym_PLUS] = ACTIONS(1372), - [anon_sym_bit_DASHshl] = ACTIONS(1372), - [anon_sym_bit_DASHshr] = ACTIONS(1372), - [anon_sym_EQ_EQ] = ACTIONS(1372), - [anon_sym_BANG_EQ] = ACTIONS(1372), - [anon_sym_LT2] = ACTIONS(1372), - [anon_sym_LT_EQ] = ACTIONS(1372), - [anon_sym_GT_EQ] = ACTIONS(1372), - [anon_sym_not_DASHin] = ACTIONS(1372), - [anon_sym_starts_DASHwith] = ACTIONS(1372), - [anon_sym_ends_DASHwith] = ACTIONS(1372), - [anon_sym_EQ_TILDE] = ACTIONS(1372), - [anon_sym_BANG_TILDE] = ACTIONS(1372), - [anon_sym_bit_DASHand] = ACTIONS(1372), - [anon_sym_bit_DASHxor] = ACTIONS(1372), - [anon_sym_bit_DASHor] = ACTIONS(1372), - [anon_sym_and] = ACTIONS(1372), - [anon_sym_xor] = ACTIONS(1372), - [anon_sym_or] = ACTIONS(1372), - [anon_sym_not] = ACTIONS(1372), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1372), - [anon_sym_DOT_DOT_LT] = ACTIONS(1372), - [anon_sym_null] = ACTIONS(1372), - [anon_sym_true] = ACTIONS(1372), - [anon_sym_false] = ACTIONS(1372), - [aux_sym__val_number_decimal_token1] = ACTIONS(1372), - [aux_sym__val_number_decimal_token2] = ACTIONS(1372), - [anon_sym_DOT2] = ACTIONS(1372), - [aux_sym__val_number_decimal_token3] = ACTIONS(1372), - [aux_sym__val_number_token1] = ACTIONS(1372), - [aux_sym__val_number_token2] = ACTIONS(1372), - [aux_sym__val_number_token3] = ACTIONS(1372), - [aux_sym__val_number_token4] = ACTIONS(1372), - [aux_sym__val_number_token5] = ACTIONS(1372), - [aux_sym__val_number_token6] = ACTIONS(1372), - [anon_sym_0b] = ACTIONS(1372), - [anon_sym_0o] = ACTIONS(1372), - [anon_sym_0x] = ACTIONS(1372), - [sym_val_date] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [sym__str_single_quotes] = ACTIONS(1372), - [sym__str_back_ticks] = ACTIONS(1372), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1372), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1372), - [anon_sym_CARET] = ACTIONS(1372), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(920), + [anon_sym_alias] = ACTIONS(920), + [anon_sym_let] = ACTIONS(920), + [anon_sym_let_DASHenv] = ACTIONS(920), + [anon_sym_mut] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [sym_cmd_identifier] = ACTIONS(920), + [anon_sym_def] = ACTIONS(920), + [anon_sym_export_DASHenv] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym_module] = ACTIONS(920), + [anon_sym_use] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(922), + [anon_sym_DOLLAR] = ACTIONS(922), + [anon_sym_error] = ACTIONS(920), + [anon_sym_list] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_in] = ACTIONS(920), + [anon_sym_loop] = ACTIONS(920), + [anon_sym_make] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_else] = ACTIONS(920), + [anon_sym_match] = ACTIONS(920), + [anon_sym_RBRACE] = ACTIONS(922), + [anon_sym_try] = ACTIONS(920), + [anon_sym_catch] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_source] = ACTIONS(920), + [anon_sym_source_DASHenv] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_hide] = ACTIONS(920), + [anon_sym_hide_DASHenv] = ACTIONS(920), + [anon_sym_overlay] = ACTIONS(920), + [anon_sym_new] = ACTIONS(920), + [anon_sym_as] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_STAR_STAR] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_mod] = ACTIONS(920), + [anon_sym_SLASH_SLASH] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_bit_DASHshl] = ACTIONS(920), + [anon_sym_bit_DASHshr] = ACTIONS(920), + [anon_sym_EQ_EQ] = ACTIONS(922), + [anon_sym_BANG_EQ] = ACTIONS(922), + [anon_sym_LT2] = ACTIONS(920), + [anon_sym_LT_EQ] = ACTIONS(922), + [anon_sym_GT_EQ] = ACTIONS(922), + [anon_sym_not_DASHin] = ACTIONS(920), + [anon_sym_starts_DASHwith] = ACTIONS(920), + [anon_sym_ends_DASHwith] = ACTIONS(920), + [anon_sym_EQ_TILDE] = ACTIONS(922), + [anon_sym_BANG_TILDE] = ACTIONS(922), + [anon_sym_bit_DASHand] = ACTIONS(920), + [anon_sym_bit_DASHxor] = ACTIONS(920), + [anon_sym_bit_DASHor] = ACTIONS(920), + [anon_sym_and] = ACTIONS(920), + [anon_sym_xor] = ACTIONS(920), + [anon_sym_or] = ACTIONS(920), + [anon_sym_DOT] = ACTIONS(1377), + [aux_sym__immediate_decimal_token1] = ACTIONS(926), + [aux_sym__immediate_decimal_token3] = ACTIONS(1379), + [aux_sym__immediate_decimal_token4] = ACTIONS(1381), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(922), + [aux_sym__val_number_token2] = ACTIONS(922), + [aux_sym__val_number_token3] = ACTIONS(922), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(922), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(922), + [sym__str_single_quotes] = ACTIONS(922), + [sym__str_back_ticks] = ACTIONS(922), + [aux_sym__record_key_token2] = ACTIONS(920), + [aux_sym_unquoted_token3] = ACTIONS(1383), + [aux_sym_unquoted_token5] = ACTIONS(1385), + [anon_sym_POUND] = ACTIONS(3), }, [500] = { + [sym_cell_path] = STATE(554), + [sym_path] = STATE(507), [sym_comment] = STATE(500), - [ts_builtin_sym_end] = ACTIONS(1160), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_alias] = ACTIONS(1158), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_let_DASHenv] = ACTIONS(1158), - [anon_sym_mut] = ACTIONS(1158), - [anon_sym_const] = ACTIONS(1158), - [anon_sym_SEMI] = ACTIONS(1158), - [sym_cmd_identifier] = ACTIONS(1158), - [anon_sym_LF] = ACTIONS(1160), - [anon_sym_def] = ACTIONS(1158), - [anon_sym_export_DASHenv] = ACTIONS(1158), - [anon_sym_extern] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_use] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_LPAREN] = ACTIONS(1158), - [anon_sym_DOLLAR] = ACTIONS(1158), - [anon_sym_error] = ACTIONS(1158), - [anon_sym_GT] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_break] = ACTIONS(1158), - [anon_sym_continue] = ACTIONS(1158), - [anon_sym_for] = ACTIONS(1158), - [anon_sym_in] = ACTIONS(1158), - [anon_sym_loop] = ACTIONS(1158), - [anon_sym_while] = ACTIONS(1158), - [anon_sym_do] = ACTIONS(1158), - [anon_sym_if] = ACTIONS(1158), - [anon_sym_match] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1158), - [anon_sym_DOT_DOT] = ACTIONS(1158), - [anon_sym_try] = ACTIONS(1158), - [anon_sym_return] = ACTIONS(1158), - [anon_sym_source] = ACTIONS(1158), - [anon_sym_source_DASHenv] = ACTIONS(1158), - [anon_sym_register] = ACTIONS(1158), - [anon_sym_hide] = ACTIONS(1158), - [anon_sym_hide_DASHenv] = ACTIONS(1158), - [anon_sym_overlay] = ACTIONS(1158), - [anon_sym_STAR] = ACTIONS(1158), - [anon_sym_where] = ACTIONS(1158), - [anon_sym_STAR_STAR] = ACTIONS(1158), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_SLASH] = ACTIONS(1158), - [anon_sym_mod] = ACTIONS(1158), - [anon_sym_SLASH_SLASH] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1158), - [anon_sym_bit_DASHshl] = ACTIONS(1158), - [anon_sym_bit_DASHshr] = ACTIONS(1158), - [anon_sym_EQ_EQ] = ACTIONS(1158), - [anon_sym_BANG_EQ] = ACTIONS(1158), - [anon_sym_LT2] = ACTIONS(1158), - [anon_sym_LT_EQ] = ACTIONS(1158), - [anon_sym_GT_EQ] = ACTIONS(1158), - [anon_sym_not_DASHin] = ACTIONS(1158), - [anon_sym_starts_DASHwith] = ACTIONS(1158), - [anon_sym_ends_DASHwith] = ACTIONS(1158), - [anon_sym_EQ_TILDE] = ACTIONS(1158), - [anon_sym_BANG_TILDE] = ACTIONS(1158), - [anon_sym_bit_DASHand] = ACTIONS(1158), - [anon_sym_bit_DASHxor] = ACTIONS(1158), - [anon_sym_bit_DASHor] = ACTIONS(1158), - [anon_sym_and] = ACTIONS(1158), - [anon_sym_xor] = ACTIONS(1158), - [anon_sym_or] = ACTIONS(1158), - [anon_sym_not] = ACTIONS(1158), - [anon_sym_DOT_DOT2] = ACTIONS(1324), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1158), - [anon_sym_DOT_DOT_LT] = ACTIONS(1158), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1326), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1326), - [anon_sym_null] = ACTIONS(1158), - [anon_sym_true] = ACTIONS(1158), - [anon_sym_false] = ACTIONS(1158), - [aux_sym__val_number_decimal_token1] = ACTIONS(1158), - [aux_sym__val_number_decimal_token2] = ACTIONS(1158), - [anon_sym_DOT2] = ACTIONS(1158), - [aux_sym__val_number_decimal_token3] = ACTIONS(1158), - [aux_sym__val_number_token1] = ACTIONS(1158), - [aux_sym__val_number_token2] = ACTIONS(1158), - [aux_sym__val_number_token3] = ACTIONS(1158), - [aux_sym__val_number_token4] = ACTIONS(1158), - [aux_sym__val_number_token5] = ACTIONS(1158), - [aux_sym__val_number_token6] = ACTIONS(1158), - [anon_sym_0b] = ACTIONS(1158), - [anon_sym_0o] = ACTIONS(1158), - [anon_sym_0x] = ACTIONS(1158), - [sym_val_date] = ACTIONS(1158), - [anon_sym_DQUOTE] = ACTIONS(1158), - [sym__str_single_quotes] = ACTIONS(1158), - [sym__str_back_ticks] = ACTIONS(1158), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1158), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1158), - [anon_sym_CARET] = ACTIONS(1158), + [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), + [sym_cmd_identifier] = 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_DOLLAR] = ACTIONS(992), + [anon_sym_error] = ACTIONS(992), + [anon_sym_list] = ACTIONS(992), + [anon_sym_GT] = ACTIONS(992), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_break] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_in] = 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_new] = ACTIONS(992), + [anon_sym_as] = ACTIONS(992), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_STAR_STAR] = ACTIONS(992), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_SLASH] = ACTIONS(992), + [anon_sym_mod] = ACTIONS(992), + [anon_sym_SLASH_SLASH] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_bit_DASHshl] = ACTIONS(992), + [anon_sym_bit_DASHshr] = ACTIONS(992), + [anon_sym_EQ_EQ] = ACTIONS(992), + [anon_sym_BANG_EQ] = ACTIONS(992), + [anon_sym_LT2] = ACTIONS(992), + [anon_sym_LT_EQ] = ACTIONS(992), + [anon_sym_GT_EQ] = ACTIONS(992), + [anon_sym_not_DASHin] = ACTIONS(992), + [anon_sym_starts_DASHwith] = ACTIONS(992), + [anon_sym_ends_DASHwith] = ACTIONS(992), + [anon_sym_EQ_TILDE] = ACTIONS(992), + [anon_sym_BANG_TILDE] = ACTIONS(992), + [anon_sym_bit_DASHand] = ACTIONS(992), + [anon_sym_bit_DASHxor] = ACTIONS(992), + [anon_sym_bit_DASHor] = ACTIONS(992), + [anon_sym_and] = ACTIONS(992), + [anon_sym_xor] = ACTIONS(992), + [anon_sym_or] = ACTIONS(992), + [anon_sym_DOT_DOT2] = ACTIONS(992), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(994), + [anon_sym_DOT_DOT_LT2] = ACTIONS(994), + [aux_sym__val_number_decimal_token1] = ACTIONS(992), + [aux_sym__val_number_decimal_token2] = ACTIONS(992), + [anon_sym_DOT2] = ACTIONS(992), + [aux_sym__val_number_decimal_token3] = 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), + [sym__entry_separator] = ACTIONS(994), + [aux_sym__record_key_token2] = ACTIONS(992), [anon_sym_POUND] = ACTIONS(113), }, [501] = { [sym_comment] = STATE(501), - [anon_sym_export] = ACTIONS(1194), - [anon_sym_alias] = ACTIONS(1194), - [anon_sym_let] = ACTIONS(1194), - [anon_sym_let_DASHenv] = ACTIONS(1194), - [anon_sym_mut] = ACTIONS(1194), - [anon_sym_const] = ACTIONS(1194), - [anon_sym_SEMI] = ACTIONS(1194), - [sym_cmd_identifier] = ACTIONS(1194), - [anon_sym_LF] = ACTIONS(1196), - [anon_sym_def] = ACTIONS(1194), - [anon_sym_export_DASHenv] = ACTIONS(1194), - [anon_sym_extern] = ACTIONS(1194), - [anon_sym_module] = ACTIONS(1194), - [anon_sym_use] = ACTIONS(1194), - [anon_sym_LBRACK] = ACTIONS(1194), - [anon_sym_LPAREN] = ACTIONS(1194), - [anon_sym_RPAREN] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1194), - [anon_sym_error] = ACTIONS(1194), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_break] = ACTIONS(1194), - [anon_sym_continue] = ACTIONS(1194), - [anon_sym_for] = ACTIONS(1194), - [anon_sym_in] = ACTIONS(1198), - [anon_sym_loop] = ACTIONS(1194), - [anon_sym_while] = ACTIONS(1194), - [anon_sym_do] = ACTIONS(1194), - [anon_sym_if] = ACTIONS(1194), - [anon_sym_match] = ACTIONS(1194), - [anon_sym_LBRACE] = ACTIONS(1194), - [anon_sym_RBRACE] = ACTIONS(1194), - [anon_sym_DOT_DOT] = ACTIONS(1194), - [anon_sym_try] = ACTIONS(1194), - [anon_sym_return] = ACTIONS(1194), - [anon_sym_source] = ACTIONS(1194), - [anon_sym_source_DASHenv] = ACTIONS(1194), - [anon_sym_register] = ACTIONS(1194), - [anon_sym_hide] = ACTIONS(1194), - [anon_sym_hide_DASHenv] = ACTIONS(1194), - [anon_sym_overlay] = ACTIONS(1194), - [anon_sym_as] = ACTIONS(1194), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_where] = ACTIONS(1194), - [anon_sym_STAR_STAR] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_SLASH] = ACTIONS(1198), - [anon_sym_mod] = ACTIONS(1198), - [anon_sym_SLASH_SLASH] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1198), - [anon_sym_bit_DASHshl] = ACTIONS(1198), - [anon_sym_bit_DASHshr] = ACTIONS(1198), - [anon_sym_EQ_EQ] = ACTIONS(1198), - [anon_sym_BANG_EQ] = ACTIONS(1198), - [anon_sym_LT2] = ACTIONS(1198), - [anon_sym_LT_EQ] = ACTIONS(1198), - [anon_sym_GT_EQ] = ACTIONS(1198), - [anon_sym_not_DASHin] = ACTIONS(1198), - [anon_sym_starts_DASHwith] = ACTIONS(1198), - [anon_sym_ends_DASHwith] = ACTIONS(1198), - [anon_sym_EQ_TILDE] = ACTIONS(1198), - [anon_sym_BANG_TILDE] = ACTIONS(1198), - [anon_sym_bit_DASHand] = ACTIONS(1198), - [anon_sym_bit_DASHxor] = ACTIONS(1198), - [anon_sym_bit_DASHor] = ACTIONS(1198), - [anon_sym_and] = ACTIONS(1198), - [anon_sym_xor] = ACTIONS(1198), - [anon_sym_or] = ACTIONS(1198), - [anon_sym_not] = ACTIONS(1194), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1194), - [anon_sym_DOT_DOT_LT] = ACTIONS(1194), - [anon_sym_null] = ACTIONS(1194), - [anon_sym_true] = ACTIONS(1194), - [anon_sym_false] = ACTIONS(1194), - [aux_sym__val_number_decimal_token1] = ACTIONS(1194), - [aux_sym__val_number_decimal_token2] = ACTIONS(1194), - [anon_sym_DOT2] = ACTIONS(1194), - [aux_sym__val_number_decimal_token3] = ACTIONS(1194), - [aux_sym__val_number_token1] = ACTIONS(1194), - [aux_sym__val_number_token2] = ACTIONS(1194), - [aux_sym__val_number_token3] = ACTIONS(1194), - [aux_sym__val_number_token4] = ACTIONS(1194), - [aux_sym__val_number_token5] = ACTIONS(1194), - [aux_sym__val_number_token6] = ACTIONS(1194), - [anon_sym_0b] = ACTIONS(1194), - [anon_sym_0o] = ACTIONS(1194), - [anon_sym_0x] = ACTIONS(1194), - [sym_val_date] = ACTIONS(1194), - [anon_sym_DQUOTE] = ACTIONS(1194), - [sym__str_single_quotes] = ACTIONS(1194), - [sym__str_back_ticks] = ACTIONS(1194), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1194), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1194), - [anon_sym_CARET] = ACTIONS(1194), + [anon_sym_export] = ACTIONS(893), + [anon_sym_alias] = ACTIONS(893), + [anon_sym_let] = ACTIONS(893), + [anon_sym_let_DASHenv] = ACTIONS(893), + [anon_sym_mut] = ACTIONS(893), + [anon_sym_const] = ACTIONS(893), + [sym_cmd_identifier] = ACTIONS(893), + [anon_sym_def] = ACTIONS(893), + [anon_sym_export_DASHenv] = ACTIONS(893), + [anon_sym_extern] = ACTIONS(893), + [anon_sym_module] = ACTIONS(893), + [anon_sym_use] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(893), + [anon_sym_DOLLAR] = ACTIONS(893), + [anon_sym_error] = ACTIONS(893), + [anon_sym_list] = ACTIONS(893), + [anon_sym_GT] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_break] = ACTIONS(893), + [anon_sym_continue] = ACTIONS(893), + [anon_sym_for] = ACTIONS(893), + [anon_sym_in] = ACTIONS(893), + [anon_sym_loop] = ACTIONS(893), + [anon_sym_make] = ACTIONS(893), + [anon_sym_while] = ACTIONS(893), + [anon_sym_do] = ACTIONS(893), + [anon_sym_if] = ACTIONS(893), + [anon_sym_else] = ACTIONS(893), + [anon_sym_match] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(893), + [anon_sym_try] = ACTIONS(893), + [anon_sym_catch] = ACTIONS(893), + [anon_sym_return] = ACTIONS(893), + [anon_sym_source] = ACTIONS(893), + [anon_sym_source_DASHenv] = ACTIONS(893), + [anon_sym_register] = ACTIONS(893), + [anon_sym_hide] = ACTIONS(893), + [anon_sym_hide_DASHenv] = ACTIONS(893), + [anon_sym_overlay] = ACTIONS(893), + [anon_sym_new] = ACTIONS(893), + [anon_sym_as] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(893), + [anon_sym_STAR_STAR] = ACTIONS(893), + [anon_sym_PLUS_PLUS] = ACTIONS(893), + [anon_sym_SLASH] = ACTIONS(893), + [anon_sym_mod] = ACTIONS(893), + [anon_sym_SLASH_SLASH] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_bit_DASHshl] = ACTIONS(893), + [anon_sym_bit_DASHshr] = ACTIONS(893), + [anon_sym_EQ_EQ] = ACTIONS(893), + [anon_sym_BANG_EQ] = ACTIONS(893), + [anon_sym_LT2] = ACTIONS(893), + [anon_sym_LT_EQ] = ACTIONS(893), + [anon_sym_GT_EQ] = ACTIONS(893), + [anon_sym_not_DASHin] = ACTIONS(893), + [anon_sym_starts_DASHwith] = ACTIONS(893), + [anon_sym_ends_DASHwith] = ACTIONS(893), + [anon_sym_EQ_TILDE] = ACTIONS(893), + [anon_sym_BANG_TILDE] = ACTIONS(893), + [anon_sym_bit_DASHand] = ACTIONS(893), + [anon_sym_bit_DASHxor] = ACTIONS(893), + [anon_sym_bit_DASHor] = ACTIONS(893), + [anon_sym_and] = ACTIONS(893), + [anon_sym_xor] = ACTIONS(893), + [anon_sym_or] = ACTIONS(893), + [anon_sym_DOT_DOT2] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), + [anon_sym_DOT_DOT_LT2] = ACTIONS(895), + [aux_sym__immediate_decimal_token2] = ACTIONS(1349), + [aux_sym__val_number_decimal_token1] = ACTIONS(893), + [aux_sym__val_number_decimal_token2] = ACTIONS(893), + [anon_sym_DOT2] = ACTIONS(893), + [aux_sym__val_number_decimal_token3] = ACTIONS(893), + [aux_sym__val_number_token1] = ACTIONS(893), + [aux_sym__val_number_token2] = ACTIONS(893), + [aux_sym__val_number_token3] = ACTIONS(893), + [aux_sym__val_number_token4] = ACTIONS(893), + [aux_sym__val_number_token5] = ACTIONS(893), + [aux_sym__val_number_token6] = ACTIONS(893), + [sym_filesize_unit] = ACTIONS(893), + [sym_duration_unit] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(893), + [sym__str_single_quotes] = ACTIONS(893), + [sym__str_back_ticks] = ACTIONS(893), + [sym__entry_separator] = ACTIONS(895), + [aux_sym__record_key_token2] = ACTIONS(893), [anon_sym_POUND] = ACTIONS(113), }, [502] = { [sym_comment] = STATE(502), - [ts_builtin_sym_end] = ACTIONS(1282), - [anon_sym_export] = ACTIONS(1280), - [anon_sym_alias] = ACTIONS(1280), - [anon_sym_let] = ACTIONS(1280), - [anon_sym_let_DASHenv] = ACTIONS(1280), - [anon_sym_mut] = ACTIONS(1280), - [anon_sym_const] = ACTIONS(1280), - [anon_sym_SEMI] = ACTIONS(1280), - [sym_cmd_identifier] = ACTIONS(1280), - [anon_sym_LF] = ACTIONS(1282), - [anon_sym_def] = ACTIONS(1280), - [anon_sym_export_DASHenv] = ACTIONS(1280), - [anon_sym_extern] = ACTIONS(1280), - [anon_sym_module] = ACTIONS(1280), - [anon_sym_use] = ACTIONS(1280), - [anon_sym_LBRACK] = ACTIONS(1280), - [anon_sym_LPAREN] = ACTIONS(1280), - [anon_sym_DOLLAR] = ACTIONS(1280), - [anon_sym_error] = ACTIONS(1280), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_DASH_DASH] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_break] = ACTIONS(1280), - [anon_sym_continue] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_in] = ACTIONS(1280), - [anon_sym_loop] = ACTIONS(1280), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1280), - [anon_sym_DOT_DOT] = ACTIONS(1280), - [anon_sym_try] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1280), - [anon_sym_source] = ACTIONS(1280), - [anon_sym_source_DASHenv] = ACTIONS(1280), - [anon_sym_register] = ACTIONS(1280), - [anon_sym_hide] = ACTIONS(1280), - [anon_sym_hide_DASHenv] = ACTIONS(1280), - [anon_sym_overlay] = ACTIONS(1280), - [anon_sym_as] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1280), - [anon_sym_where] = ACTIONS(1280), - [anon_sym_STAR_STAR] = ACTIONS(1280), - [anon_sym_PLUS_PLUS] = ACTIONS(1280), - [anon_sym_SLASH] = ACTIONS(1280), - [anon_sym_mod] = ACTIONS(1280), - [anon_sym_SLASH_SLASH] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_bit_DASHshl] = ACTIONS(1280), - [anon_sym_bit_DASHshr] = ACTIONS(1280), - [anon_sym_EQ_EQ] = ACTIONS(1280), - [anon_sym_BANG_EQ] = ACTIONS(1280), - [anon_sym_LT2] = ACTIONS(1280), - [anon_sym_LT_EQ] = ACTIONS(1280), - [anon_sym_GT_EQ] = ACTIONS(1280), - [anon_sym_not_DASHin] = ACTIONS(1280), - [anon_sym_starts_DASHwith] = ACTIONS(1280), - [anon_sym_ends_DASHwith] = ACTIONS(1280), - [anon_sym_EQ_TILDE] = ACTIONS(1280), - [anon_sym_BANG_TILDE] = ACTIONS(1280), - [anon_sym_bit_DASHand] = ACTIONS(1280), - [anon_sym_bit_DASHxor] = ACTIONS(1280), - [anon_sym_bit_DASHor] = ACTIONS(1280), - [anon_sym_and] = ACTIONS(1280), - [anon_sym_xor] = ACTIONS(1280), - [anon_sym_or] = ACTIONS(1280), - [anon_sym_not] = ACTIONS(1280), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1280), - [anon_sym_DOT_DOT_LT] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1280), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [aux_sym__val_number_decimal_token1] = ACTIONS(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1280), - [anon_sym_DOT2] = ACTIONS(1280), - [aux_sym__val_number_decimal_token3] = ACTIONS(1280), - [aux_sym__val_number_token1] = ACTIONS(1280), - [aux_sym__val_number_token2] = ACTIONS(1280), - [aux_sym__val_number_token3] = ACTIONS(1280), - [aux_sym__val_number_token4] = ACTIONS(1280), - [aux_sym__val_number_token5] = ACTIONS(1280), - [aux_sym__val_number_token6] = ACTIONS(1280), - [anon_sym_0b] = ACTIONS(1280), - [anon_sym_0o] = ACTIONS(1280), - [anon_sym_0x] = ACTIONS(1280), - [sym_val_date] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1280), - [sym__str_single_quotes] = ACTIONS(1280), - [sym__str_back_ticks] = ACTIONS(1280), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1280), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1280), - [anon_sym_CARET] = ACTIONS(1280), - [aux_sym_unquoted_token6] = ACTIONS(1280), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(901), + [anon_sym_alias] = ACTIONS(901), + [anon_sym_let] = ACTIONS(901), + [anon_sym_let_DASHenv] = ACTIONS(901), + [anon_sym_mut] = ACTIONS(901), + [anon_sym_const] = ACTIONS(901), + [sym_cmd_identifier] = ACTIONS(901), + [anon_sym_def] = ACTIONS(901), + [anon_sym_export_DASHenv] = ACTIONS(901), + [anon_sym_extern] = ACTIONS(901), + [anon_sym_module] = ACTIONS(901), + [anon_sym_use] = ACTIONS(901), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_DOLLAR] = ACTIONS(903), + [anon_sym_error] = ACTIONS(901), + [anon_sym_list] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_break] = ACTIONS(901), + [anon_sym_continue] = ACTIONS(901), + [anon_sym_for] = ACTIONS(901), + [anon_sym_in] = ACTIONS(901), + [anon_sym_loop] = ACTIONS(901), + [anon_sym_make] = ACTIONS(901), + [anon_sym_while] = ACTIONS(901), + [anon_sym_do] = ACTIONS(901), + [anon_sym_if] = ACTIONS(901), + [anon_sym_else] = ACTIONS(901), + [anon_sym_match] = ACTIONS(901), + [anon_sym_RBRACE] = ACTIONS(903), + [anon_sym_try] = ACTIONS(901), + [anon_sym_catch] = ACTIONS(901), + [anon_sym_return] = ACTIONS(901), + [anon_sym_source] = ACTIONS(901), + [anon_sym_source_DASHenv] = ACTIONS(901), + [anon_sym_register] = ACTIONS(901), + [anon_sym_hide] = ACTIONS(901), + [anon_sym_hide_DASHenv] = ACTIONS(901), + [anon_sym_overlay] = ACTIONS(901), + [anon_sym_new] = ACTIONS(901), + [anon_sym_as] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_STAR_STAR] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_mod] = ACTIONS(901), + [anon_sym_SLASH_SLASH] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_bit_DASHshl] = ACTIONS(901), + [anon_sym_bit_DASHshr] = ACTIONS(901), + [anon_sym_EQ_EQ] = ACTIONS(903), + [anon_sym_BANG_EQ] = ACTIONS(903), + [anon_sym_LT2] = ACTIONS(901), + [anon_sym_LT_EQ] = ACTIONS(903), + [anon_sym_GT_EQ] = ACTIONS(903), + [anon_sym_not_DASHin] = ACTIONS(901), + [anon_sym_starts_DASHwith] = ACTIONS(901), + [anon_sym_ends_DASHwith] = ACTIONS(901), + [anon_sym_EQ_TILDE] = ACTIONS(903), + [anon_sym_BANG_TILDE] = ACTIONS(903), + [anon_sym_bit_DASHand] = ACTIONS(901), + [anon_sym_bit_DASHxor] = ACTIONS(901), + [anon_sym_bit_DASHor] = ACTIONS(901), + [anon_sym_and] = ACTIONS(901), + [anon_sym_xor] = ACTIONS(901), + [anon_sym_or] = ACTIONS(901), + [anon_sym_DOT_DOT2] = ACTIONS(901), + [anon_sym_DOT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(903), + [anon_sym_DOT_DOT_LT2] = ACTIONS(903), + [aux_sym__val_number_decimal_token1] = ACTIONS(901), + [aux_sym__val_number_decimal_token2] = ACTIONS(903), + [anon_sym_DOT2] = ACTIONS(901), + [aux_sym__val_number_decimal_token3] = ACTIONS(903), + [aux_sym__val_number_token1] = ACTIONS(903), + [aux_sym__val_number_token2] = ACTIONS(903), + [aux_sym__val_number_token3] = ACTIONS(903), + [aux_sym__val_number_token4] = ACTIONS(901), + [aux_sym__val_number_token5] = ACTIONS(903), + [aux_sym__val_number_token6] = ACTIONS(901), + [sym_filesize_unit] = ACTIONS(901), + [sym_duration_unit] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(903), + [sym__str_single_quotes] = ACTIONS(903), + [sym__str_back_ticks] = ACTIONS(903), + [aux_sym__record_key_token2] = ACTIONS(901), + [aux_sym_unquoted_token5] = ACTIONS(901), + [anon_sym_POUND] = ACTIONS(3), }, [503] = { [sym_comment] = STATE(503), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_alias] = ACTIONS(1158), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_let_DASHenv] = ACTIONS(1158), - [anon_sym_mut] = ACTIONS(1158), - [anon_sym_const] = ACTIONS(1158), - [anon_sym_SEMI] = ACTIONS(1158), - [sym_cmd_identifier] = ACTIONS(1158), - [anon_sym_LF] = ACTIONS(1160), - [anon_sym_def] = ACTIONS(1158), - [anon_sym_export_DASHenv] = ACTIONS(1158), - [anon_sym_extern] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_use] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_LPAREN] = ACTIONS(1158), - [anon_sym_RPAREN] = ACTIONS(1158), - [anon_sym_DOLLAR] = ACTIONS(1158), - [anon_sym_error] = ACTIONS(1158), - [anon_sym_GT] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_break] = ACTIONS(1158), - [anon_sym_continue] = ACTIONS(1158), - [anon_sym_for] = ACTIONS(1158), - [anon_sym_in] = ACTIONS(1158), - [anon_sym_loop] = ACTIONS(1158), - [anon_sym_while] = ACTIONS(1158), - [anon_sym_do] = ACTIONS(1158), - [anon_sym_if] = ACTIONS(1158), - [anon_sym_match] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1158), - [anon_sym_RBRACE] = ACTIONS(1158), - [anon_sym_DOT_DOT] = ACTIONS(1158), - [anon_sym_try] = ACTIONS(1158), - [anon_sym_return] = ACTIONS(1158), - [anon_sym_source] = ACTIONS(1158), - [anon_sym_source_DASHenv] = ACTIONS(1158), - [anon_sym_register] = ACTIONS(1158), - [anon_sym_hide] = ACTIONS(1158), - [anon_sym_hide_DASHenv] = ACTIONS(1158), - [anon_sym_overlay] = ACTIONS(1158), - [anon_sym_as] = ACTIONS(1158), - [anon_sym_STAR] = ACTIONS(1158), - [anon_sym_where] = ACTIONS(1158), - [anon_sym_STAR_STAR] = ACTIONS(1158), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_SLASH] = ACTIONS(1158), - [anon_sym_mod] = ACTIONS(1158), - [anon_sym_SLASH_SLASH] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1158), - [anon_sym_bit_DASHshl] = ACTIONS(1158), - [anon_sym_bit_DASHshr] = ACTIONS(1158), - [anon_sym_EQ_EQ] = ACTIONS(1158), - [anon_sym_BANG_EQ] = ACTIONS(1158), - [anon_sym_LT2] = ACTIONS(1158), - [anon_sym_LT_EQ] = ACTIONS(1158), - [anon_sym_GT_EQ] = ACTIONS(1158), - [anon_sym_not_DASHin] = ACTIONS(1158), - [anon_sym_starts_DASHwith] = ACTIONS(1158), - [anon_sym_ends_DASHwith] = ACTIONS(1158), - [anon_sym_EQ_TILDE] = ACTIONS(1158), - [anon_sym_BANG_TILDE] = ACTIONS(1158), - [anon_sym_bit_DASHand] = ACTIONS(1158), - [anon_sym_bit_DASHxor] = ACTIONS(1158), - [anon_sym_bit_DASHor] = ACTIONS(1158), - [anon_sym_and] = ACTIONS(1158), - [anon_sym_xor] = ACTIONS(1158), - [anon_sym_or] = ACTIONS(1158), - [anon_sym_not] = ACTIONS(1158), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1158), - [anon_sym_DOT_DOT_LT] = ACTIONS(1158), - [anon_sym_null] = ACTIONS(1158), - [anon_sym_true] = ACTIONS(1158), - [anon_sym_false] = ACTIONS(1158), - [aux_sym__val_number_decimal_token1] = ACTIONS(1158), - [aux_sym__val_number_decimal_token2] = ACTIONS(1158), - [anon_sym_DOT2] = ACTIONS(1158), - [aux_sym__val_number_decimal_token3] = ACTIONS(1158), - [aux_sym__val_number_token1] = ACTIONS(1158), - [aux_sym__val_number_token2] = ACTIONS(1158), - [aux_sym__val_number_token3] = ACTIONS(1158), - [aux_sym__val_number_token4] = ACTIONS(1158), - [aux_sym__val_number_token5] = ACTIONS(1158), - [aux_sym__val_number_token6] = ACTIONS(1158), - [anon_sym_0b] = ACTIONS(1158), - [anon_sym_0o] = ACTIONS(1158), - [anon_sym_0x] = ACTIONS(1158), - [sym_val_date] = ACTIONS(1158), - [anon_sym_DQUOTE] = ACTIONS(1158), - [sym__str_single_quotes] = ACTIONS(1158), - [sym__str_back_ticks] = ACTIONS(1158), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1158), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1158), - [anon_sym_CARET] = ACTIONS(1158), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(934), + [anon_sym_alias] = ACTIONS(934), + [anon_sym_let] = ACTIONS(934), + [anon_sym_let_DASHenv] = ACTIONS(934), + [anon_sym_mut] = ACTIONS(934), + [anon_sym_const] = ACTIONS(934), + [sym_cmd_identifier] = ACTIONS(934), + [anon_sym_def] = ACTIONS(934), + [anon_sym_export_DASHenv] = ACTIONS(934), + [anon_sym_extern] = ACTIONS(934), + [anon_sym_module] = ACTIONS(934), + [anon_sym_use] = ACTIONS(934), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_DOLLAR] = ACTIONS(936), + [anon_sym_error] = ACTIONS(934), + [anon_sym_list] = ACTIONS(934), + [anon_sym_GT] = ACTIONS(934), + [anon_sym_DASH] = ACTIONS(934), + [anon_sym_break] = ACTIONS(934), + [anon_sym_continue] = ACTIONS(934), + [anon_sym_for] = ACTIONS(934), + [anon_sym_in] = ACTIONS(934), + [anon_sym_loop] = ACTIONS(934), + [anon_sym_make] = ACTIONS(934), + [anon_sym_while] = ACTIONS(934), + [anon_sym_do] = ACTIONS(934), + [anon_sym_if] = ACTIONS(934), + [anon_sym_else] = ACTIONS(934), + [anon_sym_match] = ACTIONS(934), + [anon_sym_RBRACE] = ACTIONS(936), + [anon_sym_try] = ACTIONS(934), + [anon_sym_catch] = ACTIONS(934), + [anon_sym_return] = ACTIONS(934), + [anon_sym_source] = ACTIONS(934), + [anon_sym_source_DASHenv] = ACTIONS(934), + [anon_sym_register] = ACTIONS(934), + [anon_sym_hide] = ACTIONS(934), + [anon_sym_hide_DASHenv] = ACTIONS(934), + [anon_sym_overlay] = ACTIONS(934), + [anon_sym_new] = ACTIONS(934), + [anon_sym_as] = ACTIONS(934), + [anon_sym_STAR] = ACTIONS(934), + [anon_sym_STAR_STAR] = ACTIONS(936), + [anon_sym_PLUS_PLUS] = ACTIONS(936), + [anon_sym_SLASH] = ACTIONS(934), + [anon_sym_mod] = ACTIONS(934), + [anon_sym_SLASH_SLASH] = ACTIONS(936), + [anon_sym_PLUS] = ACTIONS(934), + [anon_sym_bit_DASHshl] = ACTIONS(934), + [anon_sym_bit_DASHshr] = ACTIONS(934), + [anon_sym_EQ_EQ] = ACTIONS(936), + [anon_sym_BANG_EQ] = ACTIONS(936), + [anon_sym_LT2] = ACTIONS(934), + [anon_sym_LT_EQ] = ACTIONS(936), + [anon_sym_GT_EQ] = ACTIONS(936), + [anon_sym_not_DASHin] = ACTIONS(934), + [anon_sym_starts_DASHwith] = ACTIONS(934), + [anon_sym_ends_DASHwith] = ACTIONS(934), + [anon_sym_EQ_TILDE] = ACTIONS(936), + [anon_sym_BANG_TILDE] = ACTIONS(936), + [anon_sym_bit_DASHand] = ACTIONS(934), + [anon_sym_bit_DASHxor] = ACTIONS(934), + [anon_sym_bit_DASHor] = ACTIONS(934), + [anon_sym_and] = ACTIONS(934), + [anon_sym_xor] = ACTIONS(934), + [anon_sym_or] = ACTIONS(934), + [anon_sym_DOT_DOT2] = ACTIONS(934), + [anon_sym_DOT] = ACTIONS(934), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(936), + [anon_sym_DOT_DOT_LT2] = ACTIONS(936), + [aux_sym__val_number_decimal_token1] = ACTIONS(934), + [aux_sym__val_number_decimal_token2] = ACTIONS(936), + [anon_sym_DOT2] = ACTIONS(934), + [aux_sym__val_number_decimal_token3] = ACTIONS(936), + [aux_sym__val_number_token1] = ACTIONS(936), + [aux_sym__val_number_token2] = ACTIONS(936), + [aux_sym__val_number_token3] = ACTIONS(936), + [aux_sym__val_number_token4] = ACTIONS(934), + [aux_sym__val_number_token5] = ACTIONS(936), + [aux_sym__val_number_token6] = ACTIONS(934), + [sym_filesize_unit] = ACTIONS(934), + [sym_duration_unit] = ACTIONS(934), + [anon_sym_DQUOTE] = ACTIONS(936), + [sym__str_single_quotes] = ACTIONS(936), + [sym__str_back_ticks] = ACTIONS(936), + [aux_sym__record_key_token2] = ACTIONS(934), + [aux_sym_unquoted_token5] = ACTIONS(934), + [anon_sym_POUND] = ACTIONS(3), }, [504] = { [sym_comment] = STATE(504), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_RPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1380), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1386), - [anon_sym_PLUS_PLUS] = ACTIONS(1386), - [anon_sym_SLASH] = ACTIONS(1384), - [anon_sym_mod] = ACTIONS(1384), - [anon_sym_SLASH_SLASH] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_bit_DASHshl] = ACTIONS(1388), - [anon_sym_bit_DASHshr] = ACTIONS(1388), - [anon_sym_EQ_EQ] = ACTIONS(1380), - [anon_sym_BANG_EQ] = ACTIONS(1380), - [anon_sym_LT2] = ACTIONS(1380), - [anon_sym_LT_EQ] = ACTIONS(1380), - [anon_sym_GT_EQ] = ACTIONS(1380), - [anon_sym_not_DASHin] = ACTIONS(1376), - [anon_sym_starts_DASHwith] = ACTIONS(1376), - [anon_sym_ends_DASHwith] = ACTIONS(1376), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_export] = ACTIONS(901), + [anon_sym_alias] = ACTIONS(901), + [anon_sym_let] = ACTIONS(901), + [anon_sym_let_DASHenv] = ACTIONS(901), + [anon_sym_mut] = ACTIONS(901), + [anon_sym_const] = ACTIONS(901), + [sym_cmd_identifier] = ACTIONS(901), + [anon_sym_def] = ACTIONS(901), + [anon_sym_export_DASHenv] = ACTIONS(901), + [anon_sym_extern] = ACTIONS(901), + [anon_sym_module] = ACTIONS(901), + [anon_sym_use] = ACTIONS(901), + [anon_sym_LPAREN] = ACTIONS(901), + [anon_sym_DOLLAR] = ACTIONS(901), + [anon_sym_error] = ACTIONS(901), + [anon_sym_list] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_break] = ACTIONS(901), + [anon_sym_continue] = ACTIONS(901), + [anon_sym_for] = ACTIONS(901), + [anon_sym_in] = ACTIONS(901), + [anon_sym_loop] = ACTIONS(901), + [anon_sym_make] = ACTIONS(901), + [anon_sym_while] = ACTIONS(901), + [anon_sym_do] = ACTIONS(901), + [anon_sym_if] = ACTIONS(901), + [anon_sym_else] = ACTIONS(901), + [anon_sym_match] = ACTIONS(901), + [anon_sym_RBRACE] = ACTIONS(901), + [anon_sym_try] = ACTIONS(901), + [anon_sym_catch] = ACTIONS(901), + [anon_sym_return] = ACTIONS(901), + [anon_sym_source] = ACTIONS(901), + [anon_sym_source_DASHenv] = ACTIONS(901), + [anon_sym_register] = ACTIONS(901), + [anon_sym_hide] = ACTIONS(901), + [anon_sym_hide_DASHenv] = ACTIONS(901), + [anon_sym_overlay] = ACTIONS(901), + [anon_sym_new] = ACTIONS(901), + [anon_sym_as] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_STAR_STAR] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(901), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_mod] = ACTIONS(901), + [anon_sym_SLASH_SLASH] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_bit_DASHshl] = ACTIONS(901), + [anon_sym_bit_DASHshr] = ACTIONS(901), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT2] = ACTIONS(901), + [anon_sym_LT_EQ] = ACTIONS(901), + [anon_sym_GT_EQ] = ACTIONS(901), + [anon_sym_not_DASHin] = ACTIONS(901), + [anon_sym_starts_DASHwith] = ACTIONS(901), + [anon_sym_ends_DASHwith] = ACTIONS(901), + [anon_sym_EQ_TILDE] = ACTIONS(901), + [anon_sym_BANG_TILDE] = ACTIONS(901), + [anon_sym_bit_DASHand] = ACTIONS(901), + [anon_sym_bit_DASHxor] = ACTIONS(901), + [anon_sym_bit_DASHor] = ACTIONS(901), + [anon_sym_and] = ACTIONS(901), + [anon_sym_xor] = ACTIONS(901), + [anon_sym_or] = ACTIONS(901), + [anon_sym_DOT_DOT2] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(903), + [anon_sym_DOT_DOT_LT2] = ACTIONS(903), + [aux_sym__immediate_decimal_token2] = ACTIONS(1389), + [aux_sym__val_number_decimal_token1] = ACTIONS(901), + [aux_sym__val_number_decimal_token2] = ACTIONS(901), + [anon_sym_DOT2] = ACTIONS(901), + [aux_sym__val_number_decimal_token3] = ACTIONS(901), + [aux_sym__val_number_token1] = ACTIONS(901), + [aux_sym__val_number_token2] = ACTIONS(901), + [aux_sym__val_number_token3] = ACTIONS(901), + [aux_sym__val_number_token4] = ACTIONS(901), + [aux_sym__val_number_token5] = ACTIONS(901), + [aux_sym__val_number_token6] = ACTIONS(901), + [sym_filesize_unit] = ACTIONS(901), + [sym_duration_unit] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [sym__str_single_quotes] = ACTIONS(901), + [sym__str_back_ticks] = ACTIONS(901), + [sym__entry_separator] = ACTIONS(903), + [aux_sym__record_key_token2] = ACTIONS(901), [anon_sym_POUND] = ACTIONS(113), }, [505] = { + [sym__immediate_decimal] = STATE(10080), [sym_comment] = STATE(505), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_RPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1386), - [anon_sym_PLUS_PLUS] = ACTIONS(1386), - [anon_sym_SLASH] = ACTIONS(1384), - [anon_sym_mod] = ACTIONS(1384), - [anon_sym_SLASH_SLASH] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_bit_DASHshl] = ACTIONS(1376), - [anon_sym_bit_DASHshr] = ACTIONS(1376), - [anon_sym_EQ_EQ] = ACTIONS(1376), - [anon_sym_BANG_EQ] = ACTIONS(1376), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1376), - [anon_sym_GT_EQ] = ACTIONS(1376), - [anon_sym_not_DASHin] = ACTIONS(1376), - [anon_sym_starts_DASHwith] = ACTIONS(1376), - [anon_sym_ends_DASHwith] = ACTIONS(1376), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_export] = ACTIONS(920), + [anon_sym_alias] = ACTIONS(920), + [anon_sym_let] = ACTIONS(920), + [anon_sym_let_DASHenv] = ACTIONS(920), + [anon_sym_mut] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [sym_cmd_identifier] = ACTIONS(920), + [anon_sym_def] = ACTIONS(920), + [anon_sym_export_DASHenv] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym_module] = ACTIONS(920), + [anon_sym_use] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_error] = ACTIONS(920), + [anon_sym_list] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_in] = ACTIONS(920), + [anon_sym_loop] = ACTIONS(920), + [anon_sym_make] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_else] = ACTIONS(920), + [anon_sym_match] = ACTIONS(920), + [anon_sym_RBRACE] = ACTIONS(920), + [anon_sym_try] = ACTIONS(920), + [anon_sym_catch] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_source] = ACTIONS(920), + [anon_sym_source_DASHenv] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_hide] = ACTIONS(920), + [anon_sym_hide_DASHenv] = ACTIONS(920), + [anon_sym_overlay] = ACTIONS(920), + [anon_sym_new] = ACTIONS(920), + [anon_sym_as] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_STAR_STAR] = ACTIONS(920), + [anon_sym_PLUS_PLUS] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_mod] = ACTIONS(920), + [anon_sym_SLASH_SLASH] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_bit_DASHshl] = ACTIONS(920), + [anon_sym_bit_DASHshr] = ACTIONS(920), + [anon_sym_EQ_EQ] = ACTIONS(920), + [anon_sym_BANG_EQ] = ACTIONS(920), + [anon_sym_LT2] = ACTIONS(920), + [anon_sym_LT_EQ] = ACTIONS(920), + [anon_sym_GT_EQ] = ACTIONS(920), + [anon_sym_not_DASHin] = ACTIONS(920), + [anon_sym_starts_DASHwith] = ACTIONS(920), + [anon_sym_ends_DASHwith] = ACTIONS(920), + [anon_sym_EQ_TILDE] = ACTIONS(920), + [anon_sym_BANG_TILDE] = ACTIONS(920), + [anon_sym_bit_DASHand] = ACTIONS(920), + [anon_sym_bit_DASHxor] = ACTIONS(920), + [anon_sym_bit_DASHor] = ACTIONS(920), + [anon_sym_and] = ACTIONS(920), + [anon_sym_xor] = ACTIONS(920), + [anon_sym_or] = ACTIONS(920), + [anon_sym_DOT] = ACTIONS(1391), + [aux_sym__immediate_decimal_token1] = ACTIONS(969), + [aux_sym__immediate_decimal_token3] = ACTIONS(969), + [aux_sym__immediate_decimal_token4] = ACTIONS(971), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [sym__entry_separator] = ACTIONS(922), + [aux_sym__record_key_token2] = ACTIONS(920), + [aux_sym_unquoted_token4] = ACTIONS(1359), [anon_sym_POUND] = ACTIONS(113), }, [506] = { + [sym_cell_path] = STATE(541), + [sym_path] = STATE(507), [sym_comment] = STATE(506), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_RPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1380), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1390), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1386), - [anon_sym_PLUS_PLUS] = ACTIONS(1386), - [anon_sym_SLASH] = ACTIONS(1384), - [anon_sym_mod] = ACTIONS(1384), - [anon_sym_SLASH_SLASH] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_bit_DASHshl] = ACTIONS(1388), - [anon_sym_bit_DASHshr] = ACTIONS(1388), - [anon_sym_EQ_EQ] = ACTIONS(1380), - [anon_sym_BANG_EQ] = ACTIONS(1380), - [anon_sym_LT2] = ACTIONS(1380), - [anon_sym_LT_EQ] = ACTIONS(1380), - [anon_sym_GT_EQ] = ACTIONS(1380), - [anon_sym_not_DASHin] = ACTIONS(1390), - [anon_sym_starts_DASHwith] = ACTIONS(1390), - [anon_sym_ends_DASHwith] = ACTIONS(1390), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), + [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), + [sym_cmd_identifier] = 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_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_list] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = 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_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_new] = ACTIONS(1002), + [anon_sym_as] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_SLASH] = ACTIONS(1002), + [anon_sym_mod] = ACTIONS(1002), + [anon_sym_SLASH_SLASH] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1002), + [anon_sym_bit_DASHshl] = ACTIONS(1002), + [anon_sym_bit_DASHshr] = ACTIONS(1002), + [anon_sym_EQ_EQ] = ACTIONS(1002), + [anon_sym_BANG_EQ] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ] = ACTIONS(1002), + [anon_sym_GT_EQ] = ACTIONS(1002), + [anon_sym_not_DASHin] = ACTIONS(1002), + [anon_sym_starts_DASHwith] = ACTIONS(1002), + [anon_sym_ends_DASHwith] = ACTIONS(1002), + [anon_sym_EQ_TILDE] = ACTIONS(1002), + [anon_sym_BANG_TILDE] = ACTIONS(1002), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_DOT_DOT2] = ACTIONS(1002), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1004), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1004), + [aux_sym__val_number_decimal_token1] = ACTIONS(1002), + [aux_sym__val_number_decimal_token2] = ACTIONS(1002), + [anon_sym_DOT2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = 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), + [sym__entry_separator] = ACTIONS(1004), + [aux_sym__record_key_token2] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(113), }, [507] = { + [sym_path] = STATE(535), [sym_comment] = STATE(507), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_RPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1386), - [anon_sym_PLUS_PLUS] = ACTIONS(1386), - [anon_sym_SLASH] = ACTIONS(1384), - [anon_sym_mod] = ACTIONS(1384), - [anon_sym_SLASH_SLASH] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_bit_DASHshl] = ACTIONS(1376), - [anon_sym_bit_DASHshr] = ACTIONS(1376), - [anon_sym_EQ_EQ] = ACTIONS(1376), - [anon_sym_BANG_EQ] = ACTIONS(1376), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1376), - [anon_sym_GT_EQ] = ACTIONS(1376), - [anon_sym_not_DASHin] = ACTIONS(1376), - [anon_sym_starts_DASHwith] = ACTIONS(1376), - [anon_sym_ends_DASHwith] = ACTIONS(1376), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), + [aux_sym_cell_path_repeat1] = STATE(510), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_list] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_make] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_else] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_catch] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_new] = ACTIONS(1010), + [anon_sym_as] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_DOT_DOT2] = ACTIONS(1010), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), + [aux_sym__val_number_decimal_token1] = ACTIONS(1010), + [aux_sym__val_number_decimal_token2] = ACTIONS(1010), + [anon_sym_DOT2] = ACTIONS(1010), + [aux_sym__val_number_decimal_token3] = 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(1010), + [aux_sym__val_number_token5] = ACTIONS(1010), + [aux_sym__val_number_token6] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [sym__entry_separator] = ACTIONS(1012), + [aux_sym__record_key_token2] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(113), }, [508] = { [sym_comment] = STATE(508), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_RPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1386), - [anon_sym_PLUS_PLUS] = ACTIONS(1386), - [anon_sym_SLASH] = ACTIONS(1376), - [anon_sym_mod] = ACTIONS(1376), - [anon_sym_SLASH_SLASH] = ACTIONS(1376), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_bit_DASHshl] = ACTIONS(1376), - [anon_sym_bit_DASHshr] = ACTIONS(1376), - [anon_sym_EQ_EQ] = ACTIONS(1376), - [anon_sym_BANG_EQ] = ACTIONS(1376), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1376), - [anon_sym_GT_EQ] = ACTIONS(1376), - [anon_sym_not_DASHin] = ACTIONS(1376), - [anon_sym_starts_DASHwith] = ACTIONS(1376), - [anon_sym_ends_DASHwith] = ACTIONS(1376), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(938), + [anon_sym_alias] = ACTIONS(938), + [anon_sym_let] = ACTIONS(938), + [anon_sym_let_DASHenv] = ACTIONS(938), + [anon_sym_mut] = ACTIONS(938), + [anon_sym_const] = ACTIONS(938), + [sym_cmd_identifier] = ACTIONS(938), + [anon_sym_def] = ACTIONS(938), + [anon_sym_export_DASHenv] = ACTIONS(938), + [anon_sym_extern] = ACTIONS(938), + [anon_sym_module] = ACTIONS(938), + [anon_sym_use] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(940), + [anon_sym_DOLLAR] = ACTIONS(940), + [anon_sym_error] = ACTIONS(938), + [anon_sym_list] = ACTIONS(938), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_break] = ACTIONS(938), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_for] = ACTIONS(938), + [anon_sym_in] = ACTIONS(938), + [anon_sym_loop] = ACTIONS(938), + [anon_sym_make] = ACTIONS(938), + [anon_sym_while] = ACTIONS(938), + [anon_sym_do] = ACTIONS(938), + [anon_sym_if] = ACTIONS(938), + [anon_sym_else] = ACTIONS(938), + [anon_sym_match] = ACTIONS(938), + [anon_sym_RBRACE] = ACTIONS(940), + [anon_sym_try] = ACTIONS(938), + [anon_sym_catch] = ACTIONS(938), + [anon_sym_return] = ACTIONS(938), + [anon_sym_source] = ACTIONS(938), + [anon_sym_source_DASHenv] = ACTIONS(938), + [anon_sym_register] = ACTIONS(938), + [anon_sym_hide] = ACTIONS(938), + [anon_sym_hide_DASHenv] = ACTIONS(938), + [anon_sym_overlay] = ACTIONS(938), + [anon_sym_new] = ACTIONS(938), + [anon_sym_as] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_STAR_STAR] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(940), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(938), + [anon_sym_SLASH_SLASH] = ACTIONS(940), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_bit_DASHshl] = ACTIONS(938), + [anon_sym_bit_DASHshr] = ACTIONS(938), + [anon_sym_EQ_EQ] = ACTIONS(940), + [anon_sym_BANG_EQ] = ACTIONS(940), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(940), + [anon_sym_GT_EQ] = ACTIONS(940), + [anon_sym_not_DASHin] = ACTIONS(938), + [anon_sym_starts_DASHwith] = ACTIONS(938), + [anon_sym_ends_DASHwith] = ACTIONS(938), + [anon_sym_EQ_TILDE] = ACTIONS(940), + [anon_sym_BANG_TILDE] = ACTIONS(940), + [anon_sym_bit_DASHand] = ACTIONS(938), + [anon_sym_bit_DASHxor] = ACTIONS(938), + [anon_sym_bit_DASHor] = ACTIONS(938), + [anon_sym_and] = ACTIONS(938), + [anon_sym_xor] = ACTIONS(938), + [anon_sym_or] = ACTIONS(938), + [anon_sym_DOT_DOT2] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(1393), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(965), + [anon_sym_DOT_DOT_LT2] = ACTIONS(965), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(940), + [anon_sym_DOT2] = ACTIONS(938), + [aux_sym__val_number_decimal_token3] = ACTIONS(940), + [aux_sym__val_number_token1] = ACTIONS(940), + [aux_sym__val_number_token2] = ACTIONS(940), + [aux_sym__val_number_token3] = ACTIONS(940), + [aux_sym__val_number_token4] = ACTIONS(938), + [aux_sym__val_number_token5] = ACTIONS(940), + [aux_sym__val_number_token6] = ACTIONS(938), + [sym_filesize_unit] = ACTIONS(1395), + [sym_duration_unit] = ACTIONS(1397), + [anon_sym_DQUOTE] = ACTIONS(940), + [sym__str_single_quotes] = ACTIONS(940), + [sym__str_back_ticks] = ACTIONS(940), + [aux_sym__record_key_token2] = ACTIONS(938), + [aux_sym_unquoted_token5] = ACTIONS(1383), + [anon_sym_POUND] = ACTIONS(3), }, [509] = { [sym_comment] = STATE(509), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_RPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1386), - [anon_sym_PLUS_PLUS] = ACTIONS(1386), - [anon_sym_SLASH] = ACTIONS(1384), - [anon_sym_mod] = ACTIONS(1384), - [anon_sym_SLASH_SLASH] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_bit_DASHshl] = ACTIONS(1388), - [anon_sym_bit_DASHshr] = ACTIONS(1388), - [anon_sym_EQ_EQ] = ACTIONS(1376), - [anon_sym_BANG_EQ] = ACTIONS(1376), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1376), - [anon_sym_GT_EQ] = ACTIONS(1376), - [anon_sym_not_DASHin] = ACTIONS(1376), - [anon_sym_starts_DASHwith] = ACTIONS(1376), - [anon_sym_ends_DASHwith] = ACTIONS(1376), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(911), + [anon_sym_alias] = ACTIONS(911), + [anon_sym_let] = ACTIONS(911), + [anon_sym_let_DASHenv] = ACTIONS(911), + [anon_sym_mut] = ACTIONS(911), + [anon_sym_const] = ACTIONS(911), + [sym_cmd_identifier] = ACTIONS(911), + [anon_sym_def] = ACTIONS(911), + [anon_sym_export_DASHenv] = ACTIONS(911), + [anon_sym_extern] = ACTIONS(911), + [anon_sym_module] = ACTIONS(911), + [anon_sym_use] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(913), + [anon_sym_DOLLAR] = ACTIONS(913), + [anon_sym_error] = ACTIONS(911), + [anon_sym_list] = ACTIONS(911), + [anon_sym_GT] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_break] = ACTIONS(911), + [anon_sym_continue] = ACTIONS(911), + [anon_sym_for] = ACTIONS(911), + [anon_sym_in] = ACTIONS(911), + [anon_sym_loop] = ACTIONS(911), + [anon_sym_make] = ACTIONS(911), + [anon_sym_while] = ACTIONS(911), + [anon_sym_do] = ACTIONS(911), + [anon_sym_if] = ACTIONS(911), + [anon_sym_else] = ACTIONS(911), + [anon_sym_match] = ACTIONS(911), + [anon_sym_RBRACE] = ACTIONS(913), + [anon_sym_try] = ACTIONS(911), + [anon_sym_catch] = ACTIONS(911), + [anon_sym_return] = ACTIONS(911), + [anon_sym_source] = ACTIONS(911), + [anon_sym_source_DASHenv] = ACTIONS(911), + [anon_sym_register] = ACTIONS(911), + [anon_sym_hide] = ACTIONS(911), + [anon_sym_hide_DASHenv] = ACTIONS(911), + [anon_sym_overlay] = ACTIONS(911), + [anon_sym_new] = ACTIONS(911), + [anon_sym_as] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(911), + [anon_sym_STAR_STAR] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_SLASH] = ACTIONS(911), + [anon_sym_mod] = ACTIONS(911), + [anon_sym_SLASH_SLASH] = ACTIONS(913), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_bit_DASHshl] = ACTIONS(911), + [anon_sym_bit_DASHshr] = ACTIONS(911), + [anon_sym_EQ_EQ] = ACTIONS(913), + [anon_sym_BANG_EQ] = ACTIONS(913), + [anon_sym_LT2] = ACTIONS(911), + [anon_sym_LT_EQ] = ACTIONS(913), + [anon_sym_GT_EQ] = ACTIONS(913), + [anon_sym_not_DASHin] = ACTIONS(911), + [anon_sym_starts_DASHwith] = ACTIONS(911), + [anon_sym_ends_DASHwith] = ACTIONS(911), + [anon_sym_EQ_TILDE] = ACTIONS(913), + [anon_sym_BANG_TILDE] = ACTIONS(913), + [anon_sym_bit_DASHand] = ACTIONS(911), + [anon_sym_bit_DASHxor] = ACTIONS(911), + [anon_sym_bit_DASHor] = ACTIONS(911), + [anon_sym_and] = ACTIONS(911), + [anon_sym_xor] = ACTIONS(911), + [anon_sym_or] = ACTIONS(911), + [anon_sym_DOT_DOT2] = ACTIONS(911), + [anon_sym_DOT] = ACTIONS(1399), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(913), + [anon_sym_DOT_DOT_LT2] = ACTIONS(913), + [aux_sym__immediate_decimal_token2] = ACTIONS(1401), + [aux_sym__val_number_decimal_token1] = ACTIONS(911), + [aux_sym__val_number_decimal_token2] = ACTIONS(913), + [anon_sym_DOT2] = ACTIONS(911), + [aux_sym__val_number_decimal_token3] = ACTIONS(913), + [aux_sym__val_number_token1] = ACTIONS(913), + [aux_sym__val_number_token2] = ACTIONS(913), + [aux_sym__val_number_token3] = ACTIONS(913), + [aux_sym__val_number_token4] = ACTIONS(911), + [aux_sym__val_number_token5] = ACTIONS(913), + [aux_sym__val_number_token6] = ACTIONS(911), + [sym_filesize_unit] = ACTIONS(911), + [sym_duration_unit] = ACTIONS(911), + [anon_sym_DQUOTE] = ACTIONS(913), + [sym__str_single_quotes] = ACTIONS(913), + [sym__str_back_ticks] = ACTIONS(913), + [aux_sym__record_key_token2] = ACTIONS(911), + [anon_sym_POUND] = ACTIONS(3), }, [510] = { + [sym_path] = STATE(535), [sym_comment] = STATE(510), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_RPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1380), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1390), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1386), - [anon_sym_PLUS_PLUS] = ACTIONS(1386), - [anon_sym_SLASH] = ACTIONS(1384), - [anon_sym_mod] = ACTIONS(1384), - [anon_sym_SLASH_SLASH] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_bit_DASHshl] = ACTIONS(1388), - [anon_sym_bit_DASHshr] = ACTIONS(1388), - [anon_sym_EQ_EQ] = ACTIONS(1380), - [anon_sym_BANG_EQ] = ACTIONS(1380), - [anon_sym_LT2] = ACTIONS(1380), - [anon_sym_LT_EQ] = ACTIONS(1380), - [anon_sym_GT_EQ] = ACTIONS(1380), - [anon_sym_not_DASHin] = ACTIONS(1390), - [anon_sym_starts_DASHwith] = ACTIONS(1390), - [anon_sym_ends_DASHwith] = ACTIONS(1390), - [anon_sym_EQ_TILDE] = ACTIONS(1392), - [anon_sym_BANG_TILDE] = ACTIONS(1392), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), + [aux_sym_cell_path_repeat1] = STATE(498), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_alias] = ACTIONS(1006), + [anon_sym_let] = ACTIONS(1006), + [anon_sym_let_DASHenv] = ACTIONS(1006), + [anon_sym_mut] = ACTIONS(1006), + [anon_sym_const] = ACTIONS(1006), + [sym_cmd_identifier] = ACTIONS(1006), + [anon_sym_def] = ACTIONS(1006), + [anon_sym_export_DASHenv] = ACTIONS(1006), + [anon_sym_extern] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_use] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_error] = ACTIONS(1006), + [anon_sym_list] = ACTIONS(1006), + [anon_sym_GT] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_break] = ACTIONS(1006), + [anon_sym_continue] = ACTIONS(1006), + [anon_sym_for] = ACTIONS(1006), + [anon_sym_in] = ACTIONS(1006), + [anon_sym_loop] = ACTIONS(1006), + [anon_sym_make] = ACTIONS(1006), + [anon_sym_while] = ACTIONS(1006), + [anon_sym_do] = ACTIONS(1006), + [anon_sym_if] = ACTIONS(1006), + [anon_sym_else] = ACTIONS(1006), + [anon_sym_match] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(1006), + [anon_sym_try] = ACTIONS(1006), + [anon_sym_catch] = ACTIONS(1006), + [anon_sym_return] = ACTIONS(1006), + [anon_sym_source] = ACTIONS(1006), + [anon_sym_source_DASHenv] = ACTIONS(1006), + [anon_sym_register] = ACTIONS(1006), + [anon_sym_hide] = ACTIONS(1006), + [anon_sym_hide_DASHenv] = ACTIONS(1006), + [anon_sym_overlay] = ACTIONS(1006), + [anon_sym_new] = ACTIONS(1006), + [anon_sym_as] = ACTIONS(1006), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_STAR_STAR] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_mod] = ACTIONS(1006), + [anon_sym_SLASH_SLASH] = ACTIONS(1006), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_bit_DASHshl] = ACTIONS(1006), + [anon_sym_bit_DASHshr] = ACTIONS(1006), + [anon_sym_EQ_EQ] = ACTIONS(1006), + [anon_sym_BANG_EQ] = ACTIONS(1006), + [anon_sym_LT2] = ACTIONS(1006), + [anon_sym_LT_EQ] = ACTIONS(1006), + [anon_sym_GT_EQ] = ACTIONS(1006), + [anon_sym_not_DASHin] = ACTIONS(1006), + [anon_sym_starts_DASHwith] = ACTIONS(1006), + [anon_sym_ends_DASHwith] = ACTIONS(1006), + [anon_sym_EQ_TILDE] = ACTIONS(1006), + [anon_sym_BANG_TILDE] = ACTIONS(1006), + [anon_sym_bit_DASHand] = ACTIONS(1006), + [anon_sym_bit_DASHxor] = ACTIONS(1006), + [anon_sym_bit_DASHor] = ACTIONS(1006), + [anon_sym_and] = ACTIONS(1006), + [anon_sym_xor] = ACTIONS(1006), + [anon_sym_or] = ACTIONS(1006), + [anon_sym_DOT_DOT2] = ACTIONS(1006), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), + [aux_sym__val_number_decimal_token1] = ACTIONS(1006), + [aux_sym__val_number_decimal_token2] = ACTIONS(1006), + [anon_sym_DOT2] = ACTIONS(1006), + [aux_sym__val_number_decimal_token3] = ACTIONS(1006), + [aux_sym__val_number_token1] = ACTIONS(1006), + [aux_sym__val_number_token2] = ACTIONS(1006), + [aux_sym__val_number_token3] = ACTIONS(1006), + [aux_sym__val_number_token4] = ACTIONS(1006), + [aux_sym__val_number_token5] = ACTIONS(1006), + [aux_sym__val_number_token6] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym__str_single_quotes] = ACTIONS(1006), + [sym__str_back_ticks] = ACTIONS(1006), + [sym__entry_separator] = ACTIONS(1008), + [aux_sym__record_key_token2] = ACTIONS(1006), [anon_sym_POUND] = ACTIONS(113), }, [511] = { [sym_comment] = STATE(511), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_RPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1380), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1390), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1386), - [anon_sym_PLUS_PLUS] = ACTIONS(1386), - [anon_sym_SLASH] = ACTIONS(1384), - [anon_sym_mod] = ACTIONS(1384), - [anon_sym_SLASH_SLASH] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_bit_DASHshl] = ACTIONS(1388), - [anon_sym_bit_DASHshr] = ACTIONS(1388), - [anon_sym_EQ_EQ] = ACTIONS(1380), - [anon_sym_BANG_EQ] = ACTIONS(1380), - [anon_sym_LT2] = ACTIONS(1380), - [anon_sym_LT_EQ] = ACTIONS(1380), - [anon_sym_GT_EQ] = ACTIONS(1380), - [anon_sym_not_DASHin] = ACTIONS(1390), - [anon_sym_starts_DASHwith] = ACTIONS(1390), - [anon_sym_ends_DASHwith] = ACTIONS(1390), - [anon_sym_EQ_TILDE] = ACTIONS(1392), - [anon_sym_BANG_TILDE] = ACTIONS(1392), - [anon_sym_bit_DASHand] = ACTIONS(1394), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(893), + [anon_sym_alias] = ACTIONS(893), + [anon_sym_let] = ACTIONS(893), + [anon_sym_let_DASHenv] = ACTIONS(893), + [anon_sym_mut] = ACTIONS(893), + [anon_sym_const] = ACTIONS(893), + [sym_cmd_identifier] = ACTIONS(893), + [anon_sym_def] = ACTIONS(893), + [anon_sym_export_DASHenv] = ACTIONS(893), + [anon_sym_extern] = ACTIONS(893), + [anon_sym_module] = ACTIONS(893), + [anon_sym_use] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(895), + [anon_sym_DOLLAR] = ACTIONS(895), + [anon_sym_error] = ACTIONS(893), + [anon_sym_list] = ACTIONS(893), + [anon_sym_GT] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_break] = ACTIONS(893), + [anon_sym_continue] = ACTIONS(893), + [anon_sym_for] = ACTIONS(893), + [anon_sym_in] = ACTIONS(893), + [anon_sym_loop] = ACTIONS(893), + [anon_sym_make] = ACTIONS(893), + [anon_sym_while] = ACTIONS(893), + [anon_sym_do] = ACTIONS(893), + [anon_sym_if] = ACTIONS(893), + [anon_sym_else] = ACTIONS(893), + [anon_sym_match] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(895), + [anon_sym_try] = ACTIONS(893), + [anon_sym_catch] = ACTIONS(893), + [anon_sym_return] = ACTIONS(893), + [anon_sym_source] = ACTIONS(893), + [anon_sym_source_DASHenv] = ACTIONS(893), + [anon_sym_register] = ACTIONS(893), + [anon_sym_hide] = ACTIONS(893), + [anon_sym_hide_DASHenv] = ACTIONS(893), + [anon_sym_overlay] = ACTIONS(893), + [anon_sym_new] = ACTIONS(893), + [anon_sym_as] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(893), + [anon_sym_STAR_STAR] = ACTIONS(895), + [anon_sym_PLUS_PLUS] = ACTIONS(895), + [anon_sym_SLASH] = ACTIONS(893), + [anon_sym_mod] = ACTIONS(893), + [anon_sym_SLASH_SLASH] = ACTIONS(895), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_bit_DASHshl] = ACTIONS(893), + [anon_sym_bit_DASHshr] = ACTIONS(893), + [anon_sym_EQ_EQ] = ACTIONS(895), + [anon_sym_BANG_EQ] = ACTIONS(895), + [anon_sym_LT2] = ACTIONS(893), + [anon_sym_LT_EQ] = ACTIONS(895), + [anon_sym_GT_EQ] = ACTIONS(895), + [anon_sym_not_DASHin] = ACTIONS(893), + [anon_sym_starts_DASHwith] = ACTIONS(893), + [anon_sym_ends_DASHwith] = ACTIONS(893), + [anon_sym_EQ_TILDE] = ACTIONS(895), + [anon_sym_BANG_TILDE] = ACTIONS(895), + [anon_sym_bit_DASHand] = ACTIONS(893), + [anon_sym_bit_DASHxor] = ACTIONS(893), + [anon_sym_bit_DASHor] = ACTIONS(893), + [anon_sym_and] = ACTIONS(893), + [anon_sym_xor] = ACTIONS(893), + [anon_sym_or] = ACTIONS(893), + [anon_sym_DOT_DOT2] = ACTIONS(893), + [anon_sym_DOT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), + [anon_sym_DOT_DOT_LT2] = ACTIONS(895), + [aux_sym__val_number_decimal_token1] = ACTIONS(893), + [aux_sym__val_number_decimal_token2] = ACTIONS(895), + [anon_sym_DOT2] = ACTIONS(893), + [aux_sym__val_number_decimal_token3] = ACTIONS(895), + [aux_sym__val_number_token1] = ACTIONS(895), + [aux_sym__val_number_token2] = ACTIONS(895), + [aux_sym__val_number_token3] = ACTIONS(895), + [aux_sym__val_number_token4] = ACTIONS(893), + [aux_sym__val_number_token5] = ACTIONS(895), + [aux_sym__val_number_token6] = ACTIONS(893), + [sym_filesize_unit] = ACTIONS(893), + [sym_duration_unit] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(895), + [sym__str_single_quotes] = ACTIONS(895), + [sym__str_back_ticks] = ACTIONS(895), + [aux_sym__record_key_token2] = ACTIONS(893), + [aux_sym_unquoted_token5] = ACTIONS(893), + [anon_sym_POUND] = ACTIONS(3), }, [512] = { [sym_comment] = STATE(512), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_RPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1380), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1390), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1386), - [anon_sym_PLUS_PLUS] = ACTIONS(1386), - [anon_sym_SLASH] = ACTIONS(1384), - [anon_sym_mod] = ACTIONS(1384), - [anon_sym_SLASH_SLASH] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_bit_DASHshl] = ACTIONS(1388), - [anon_sym_bit_DASHshr] = ACTIONS(1388), - [anon_sym_EQ_EQ] = ACTIONS(1380), - [anon_sym_BANG_EQ] = ACTIONS(1380), - [anon_sym_LT2] = ACTIONS(1380), - [anon_sym_LT_EQ] = ACTIONS(1380), - [anon_sym_GT_EQ] = ACTIONS(1380), - [anon_sym_not_DASHin] = ACTIONS(1390), - [anon_sym_starts_DASHwith] = ACTIONS(1390), - [anon_sym_ends_DASHwith] = ACTIONS(1390), - [anon_sym_EQ_TILDE] = ACTIONS(1392), - [anon_sym_BANG_TILDE] = ACTIONS(1392), - [anon_sym_bit_DASHand] = ACTIONS(1394), - [anon_sym_bit_DASHxor] = ACTIONS(1396), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(893), + [anon_sym_alias] = ACTIONS(893), + [anon_sym_let] = ACTIONS(893), + [anon_sym_let_DASHenv] = ACTIONS(893), + [anon_sym_mut] = ACTIONS(893), + [anon_sym_const] = ACTIONS(893), + [sym_cmd_identifier] = ACTIONS(893), + [anon_sym_def] = ACTIONS(893), + [anon_sym_export_DASHenv] = ACTIONS(893), + [anon_sym_extern] = ACTIONS(893), + [anon_sym_module] = ACTIONS(893), + [anon_sym_use] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(895), + [anon_sym_DOLLAR] = ACTIONS(895), + [anon_sym_error] = ACTIONS(893), + [anon_sym_list] = ACTIONS(893), + [anon_sym_GT] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_break] = ACTIONS(893), + [anon_sym_continue] = ACTIONS(893), + [anon_sym_for] = ACTIONS(893), + [anon_sym_in] = ACTIONS(893), + [anon_sym_loop] = ACTIONS(893), + [anon_sym_make] = ACTIONS(893), + [anon_sym_while] = ACTIONS(893), + [anon_sym_do] = ACTIONS(893), + [anon_sym_if] = ACTIONS(893), + [anon_sym_else] = ACTIONS(893), + [anon_sym_match] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(895), + [anon_sym_try] = ACTIONS(893), + [anon_sym_catch] = ACTIONS(893), + [anon_sym_return] = ACTIONS(893), + [anon_sym_source] = ACTIONS(893), + [anon_sym_source_DASHenv] = ACTIONS(893), + [anon_sym_register] = ACTIONS(893), + [anon_sym_hide] = ACTIONS(893), + [anon_sym_hide_DASHenv] = ACTIONS(893), + [anon_sym_overlay] = ACTIONS(893), + [anon_sym_new] = ACTIONS(893), + [anon_sym_as] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(893), + [anon_sym_STAR_STAR] = ACTIONS(895), + [anon_sym_PLUS_PLUS] = ACTIONS(895), + [anon_sym_SLASH] = ACTIONS(893), + [anon_sym_mod] = ACTIONS(893), + [anon_sym_SLASH_SLASH] = ACTIONS(895), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_bit_DASHshl] = ACTIONS(893), + [anon_sym_bit_DASHshr] = ACTIONS(893), + [anon_sym_EQ_EQ] = ACTIONS(895), + [anon_sym_BANG_EQ] = ACTIONS(895), + [anon_sym_LT2] = ACTIONS(893), + [anon_sym_LT_EQ] = ACTIONS(895), + [anon_sym_GT_EQ] = ACTIONS(895), + [anon_sym_not_DASHin] = ACTIONS(893), + [anon_sym_starts_DASHwith] = ACTIONS(893), + [anon_sym_ends_DASHwith] = ACTIONS(893), + [anon_sym_EQ_TILDE] = ACTIONS(895), + [anon_sym_BANG_TILDE] = ACTIONS(895), + [anon_sym_bit_DASHand] = ACTIONS(893), + [anon_sym_bit_DASHxor] = ACTIONS(893), + [anon_sym_bit_DASHor] = ACTIONS(893), + [anon_sym_and] = ACTIONS(893), + [anon_sym_xor] = ACTIONS(893), + [anon_sym_or] = ACTIONS(893), + [anon_sym_DOT_DOT2] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), + [anon_sym_DOT_DOT_LT2] = ACTIONS(895), + [aux_sym__immediate_decimal_token1] = ACTIONS(1403), + [aux_sym__immediate_decimal_token2] = ACTIONS(1405), + [aux_sym__val_number_decimal_token1] = ACTIONS(893), + [aux_sym__val_number_decimal_token2] = ACTIONS(895), + [anon_sym_DOT2] = ACTIONS(893), + [aux_sym__val_number_decimal_token3] = ACTIONS(895), + [aux_sym__val_number_token1] = ACTIONS(895), + [aux_sym__val_number_token2] = ACTIONS(895), + [aux_sym__val_number_token3] = ACTIONS(895), + [aux_sym__val_number_token4] = ACTIONS(893), + [aux_sym__val_number_token5] = ACTIONS(895), + [aux_sym__val_number_token6] = ACTIONS(893), + [sym_filesize_unit] = ACTIONS(893), + [sym_duration_unit] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(895), + [sym__str_single_quotes] = ACTIONS(895), + [sym__str_back_ticks] = ACTIONS(895), + [aux_sym__record_key_token2] = ACTIONS(893), + [anon_sym_POUND] = ACTIONS(3), }, [513] = { + [sym__immediate_decimal] = STATE(10080), [sym_comment] = STATE(513), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_RPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1380), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1390), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1386), - [anon_sym_PLUS_PLUS] = ACTIONS(1386), - [anon_sym_SLASH] = ACTIONS(1384), - [anon_sym_mod] = ACTIONS(1384), - [anon_sym_SLASH_SLASH] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_bit_DASHshl] = ACTIONS(1388), - [anon_sym_bit_DASHshr] = ACTIONS(1388), - [anon_sym_EQ_EQ] = ACTIONS(1380), - [anon_sym_BANG_EQ] = ACTIONS(1380), - [anon_sym_LT2] = ACTIONS(1380), - [anon_sym_LT_EQ] = ACTIONS(1380), - [anon_sym_GT_EQ] = ACTIONS(1380), - [anon_sym_not_DASHin] = ACTIONS(1390), - [anon_sym_starts_DASHwith] = ACTIONS(1390), - [anon_sym_ends_DASHwith] = ACTIONS(1390), - [anon_sym_EQ_TILDE] = ACTIONS(1392), - [anon_sym_BANG_TILDE] = ACTIONS(1392), - [anon_sym_bit_DASHand] = ACTIONS(1394), - [anon_sym_bit_DASHxor] = ACTIONS(1396), - [anon_sym_bit_DASHor] = ACTIONS(1398), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(920), + [anon_sym_alias] = ACTIONS(920), + [anon_sym_let] = ACTIONS(920), + [anon_sym_let_DASHenv] = ACTIONS(920), + [anon_sym_mut] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [sym_cmd_identifier] = ACTIONS(920), + [anon_sym_def] = ACTIONS(920), + [anon_sym_export_DASHenv] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym_module] = ACTIONS(920), + [anon_sym_use] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(922), + [anon_sym_DOLLAR] = ACTIONS(922), + [anon_sym_error] = ACTIONS(920), + [anon_sym_list] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_in] = ACTIONS(920), + [anon_sym_loop] = ACTIONS(920), + [anon_sym_make] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_else] = ACTIONS(920), + [anon_sym_match] = ACTIONS(920), + [anon_sym_RBRACE] = ACTIONS(922), + [anon_sym_try] = ACTIONS(920), + [anon_sym_catch] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_source] = ACTIONS(920), + [anon_sym_source_DASHenv] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_hide] = ACTIONS(920), + [anon_sym_hide_DASHenv] = ACTIONS(920), + [anon_sym_overlay] = ACTIONS(920), + [anon_sym_new] = ACTIONS(920), + [anon_sym_as] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_STAR_STAR] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_mod] = ACTIONS(920), + [anon_sym_SLASH_SLASH] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_bit_DASHshl] = ACTIONS(920), + [anon_sym_bit_DASHshr] = ACTIONS(920), + [anon_sym_EQ_EQ] = ACTIONS(922), + [anon_sym_BANG_EQ] = ACTIONS(922), + [anon_sym_LT2] = ACTIONS(920), + [anon_sym_LT_EQ] = ACTIONS(922), + [anon_sym_GT_EQ] = ACTIONS(922), + [anon_sym_not_DASHin] = ACTIONS(920), + [anon_sym_starts_DASHwith] = ACTIONS(920), + [anon_sym_ends_DASHwith] = ACTIONS(920), + [anon_sym_EQ_TILDE] = ACTIONS(922), + [anon_sym_BANG_TILDE] = ACTIONS(922), + [anon_sym_bit_DASHand] = ACTIONS(920), + [anon_sym_bit_DASHxor] = ACTIONS(920), + [anon_sym_bit_DASHor] = ACTIONS(920), + [anon_sym_and] = ACTIONS(920), + [anon_sym_xor] = ACTIONS(920), + [anon_sym_or] = ACTIONS(920), + [anon_sym_DOT] = ACTIONS(1391), + [aux_sym__immediate_decimal_token1] = ACTIONS(969), + [aux_sym__immediate_decimal_token3] = ACTIONS(1407), + [aux_sym__immediate_decimal_token4] = ACTIONS(1409), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(922), + [aux_sym__val_number_token2] = ACTIONS(922), + [aux_sym__val_number_token3] = ACTIONS(922), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(922), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(922), + [sym__str_single_quotes] = ACTIONS(922), + [sym__str_back_ticks] = ACTIONS(922), + [aux_sym__record_key_token2] = ACTIONS(920), + [aux_sym_unquoted_token4] = ACTIONS(1383), + [anon_sym_POUND] = ACTIONS(3), }, [514] = { [sym_comment] = STATE(514), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_RPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1380), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1390), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1386), - [anon_sym_PLUS_PLUS] = ACTIONS(1386), - [anon_sym_SLASH] = ACTIONS(1384), - [anon_sym_mod] = ACTIONS(1384), - [anon_sym_SLASH_SLASH] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_bit_DASHshl] = ACTIONS(1388), - [anon_sym_bit_DASHshr] = ACTIONS(1388), - [anon_sym_EQ_EQ] = ACTIONS(1380), - [anon_sym_BANG_EQ] = ACTIONS(1380), - [anon_sym_LT2] = ACTIONS(1380), - [anon_sym_LT_EQ] = ACTIONS(1380), - [anon_sym_GT_EQ] = ACTIONS(1380), - [anon_sym_not_DASHin] = ACTIONS(1390), - [anon_sym_starts_DASHwith] = ACTIONS(1390), - [anon_sym_ends_DASHwith] = ACTIONS(1390), - [anon_sym_EQ_TILDE] = ACTIONS(1392), - [anon_sym_BANG_TILDE] = ACTIONS(1392), - [anon_sym_bit_DASHand] = ACTIONS(1394), - [anon_sym_bit_DASHxor] = ACTIONS(1396), - [anon_sym_bit_DASHor] = ACTIONS(1398), - [anon_sym_and] = ACTIONS(1400), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_export] = ACTIONS(1024), + [anon_sym_alias] = ACTIONS(1024), + [anon_sym_let] = ACTIONS(1024), + [anon_sym_let_DASHenv] = ACTIONS(1024), + [anon_sym_mut] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [sym_cmd_identifier] = ACTIONS(1024), + [anon_sym_def] = ACTIONS(1024), + [anon_sym_export_DASHenv] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1024), + [anon_sym_module] = ACTIONS(1024), + [anon_sym_use] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_error] = ACTIONS(1024), + [anon_sym_list] = ACTIONS(1024), + [anon_sym_GT] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_loop] = ACTIONS(1024), + [anon_sym_make] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_else] = ACTIONS(1024), + [anon_sym_match] = ACTIONS(1024), + [anon_sym_RBRACE] = ACTIONS(1024), + [anon_sym_try] = ACTIONS(1024), + [anon_sym_catch] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_source] = ACTIONS(1024), + [anon_sym_source_DASHenv] = ACTIONS(1024), + [anon_sym_register] = ACTIONS(1024), + [anon_sym_hide] = ACTIONS(1024), + [anon_sym_hide_DASHenv] = ACTIONS(1024), + [anon_sym_overlay] = ACTIONS(1024), + [anon_sym_new] = ACTIONS(1024), + [anon_sym_as] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(1411), + [anon_sym_STAR_STAR] = ACTIONS(1024), + [anon_sym_PLUS_PLUS] = ACTIONS(1024), + [anon_sym_SLASH] = ACTIONS(1024), + [anon_sym_mod] = ACTIONS(1024), + [anon_sym_SLASH_SLASH] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_bit_DASHshl] = ACTIONS(1024), + [anon_sym_bit_DASHshr] = ACTIONS(1024), + [anon_sym_EQ_EQ] = ACTIONS(1024), + [anon_sym_BANG_EQ] = ACTIONS(1024), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ] = ACTIONS(1024), + [anon_sym_GT_EQ] = ACTIONS(1024), + [anon_sym_not_DASHin] = ACTIONS(1024), + [anon_sym_starts_DASHwith] = ACTIONS(1024), + [anon_sym_ends_DASHwith] = ACTIONS(1024), + [anon_sym_EQ_TILDE] = ACTIONS(1024), + [anon_sym_BANG_TILDE] = ACTIONS(1024), + [anon_sym_bit_DASHand] = ACTIONS(1024), + [anon_sym_bit_DASHxor] = ACTIONS(1024), + [anon_sym_bit_DASHor] = ACTIONS(1024), + [anon_sym_and] = ACTIONS(1024), + [anon_sym_xor] = ACTIONS(1024), + [anon_sym_or] = ACTIONS(1024), + [anon_sym_DOT_DOT2] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1026), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1024), + [aux_sym__val_number_token1] = ACTIONS(1024), + [aux_sym__val_number_token2] = ACTIONS(1024), + [aux_sym__val_number_token3] = ACTIONS(1024), + [aux_sym__val_number_token4] = ACTIONS(1024), + [aux_sym__val_number_token5] = ACTIONS(1024), + [aux_sym__val_number_token6] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym__str_single_quotes] = ACTIONS(1024), + [sym__str_back_ticks] = ACTIONS(1024), + [sym__entry_separator] = ACTIONS(1026), + [aux_sym__record_key_token2] = ACTIONS(1024), [anon_sym_POUND] = ACTIONS(113), }, [515] = { [sym_comment] = STATE(515), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_RPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1380), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1390), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1386), - [anon_sym_PLUS_PLUS] = ACTIONS(1386), - [anon_sym_SLASH] = ACTIONS(1384), - [anon_sym_mod] = ACTIONS(1384), - [anon_sym_SLASH_SLASH] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_bit_DASHshl] = ACTIONS(1388), - [anon_sym_bit_DASHshr] = ACTIONS(1388), - [anon_sym_EQ_EQ] = ACTIONS(1380), - [anon_sym_BANG_EQ] = ACTIONS(1380), - [anon_sym_LT2] = ACTIONS(1380), - [anon_sym_LT_EQ] = ACTIONS(1380), - [anon_sym_GT_EQ] = ACTIONS(1380), - [anon_sym_not_DASHin] = ACTIONS(1390), - [anon_sym_starts_DASHwith] = ACTIONS(1390), - [anon_sym_ends_DASHwith] = ACTIONS(1390), - [anon_sym_EQ_TILDE] = ACTIONS(1392), - [anon_sym_BANG_TILDE] = ACTIONS(1392), - [anon_sym_bit_DASHand] = ACTIONS(1394), - [anon_sym_bit_DASHxor] = ACTIONS(1396), - [anon_sym_bit_DASHor] = ACTIONS(1398), - [anon_sym_and] = ACTIONS(1400), - [anon_sym_xor] = ACTIONS(1402), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_export] = ACTIONS(901), + [anon_sym_alias] = ACTIONS(901), + [anon_sym_let] = ACTIONS(901), + [anon_sym_let_DASHenv] = ACTIONS(901), + [anon_sym_mut] = ACTIONS(901), + [anon_sym_const] = ACTIONS(901), + [sym_cmd_identifier] = ACTIONS(901), + [anon_sym_def] = ACTIONS(901), + [anon_sym_export_DASHenv] = ACTIONS(901), + [anon_sym_extern] = ACTIONS(901), + [anon_sym_module] = ACTIONS(901), + [anon_sym_use] = ACTIONS(901), + [anon_sym_LPAREN] = ACTIONS(901), + [anon_sym_DOLLAR] = ACTIONS(901), + [anon_sym_error] = ACTIONS(901), + [anon_sym_list] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_break] = ACTIONS(901), + [anon_sym_continue] = ACTIONS(901), + [anon_sym_for] = ACTIONS(901), + [anon_sym_in] = ACTIONS(901), + [anon_sym_loop] = ACTIONS(901), + [anon_sym_make] = ACTIONS(901), + [anon_sym_while] = ACTIONS(901), + [anon_sym_do] = ACTIONS(901), + [anon_sym_if] = ACTIONS(901), + [anon_sym_else] = ACTIONS(901), + [anon_sym_match] = ACTIONS(901), + [anon_sym_RBRACE] = ACTIONS(901), + [anon_sym_try] = ACTIONS(901), + [anon_sym_catch] = ACTIONS(901), + [anon_sym_return] = ACTIONS(901), + [anon_sym_source] = ACTIONS(901), + [anon_sym_source_DASHenv] = ACTIONS(901), + [anon_sym_register] = ACTIONS(901), + [anon_sym_hide] = ACTIONS(901), + [anon_sym_hide_DASHenv] = ACTIONS(901), + [anon_sym_overlay] = ACTIONS(901), + [anon_sym_new] = ACTIONS(901), + [anon_sym_as] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_STAR_STAR] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(901), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_mod] = ACTIONS(901), + [anon_sym_SLASH_SLASH] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_bit_DASHshl] = ACTIONS(901), + [anon_sym_bit_DASHshr] = ACTIONS(901), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT2] = ACTIONS(901), + [anon_sym_LT_EQ] = ACTIONS(901), + [anon_sym_GT_EQ] = ACTIONS(901), + [anon_sym_not_DASHin] = ACTIONS(901), + [anon_sym_starts_DASHwith] = ACTIONS(901), + [anon_sym_ends_DASHwith] = ACTIONS(901), + [anon_sym_EQ_TILDE] = ACTIONS(901), + [anon_sym_BANG_TILDE] = ACTIONS(901), + [anon_sym_bit_DASHand] = ACTIONS(901), + [anon_sym_bit_DASHxor] = ACTIONS(901), + [anon_sym_bit_DASHor] = ACTIONS(901), + [anon_sym_and] = ACTIONS(901), + [anon_sym_xor] = ACTIONS(901), + [anon_sym_or] = ACTIONS(901), + [anon_sym_DOT_DOT2] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(903), + [anon_sym_DOT_DOT_LT2] = ACTIONS(903), + [aux_sym__val_number_decimal_token1] = ACTIONS(901), + [aux_sym__val_number_decimal_token2] = ACTIONS(901), + [anon_sym_DOT2] = ACTIONS(901), + [aux_sym__val_number_decimal_token3] = ACTIONS(901), + [aux_sym__val_number_token1] = ACTIONS(901), + [aux_sym__val_number_token2] = ACTIONS(901), + [aux_sym__val_number_token3] = ACTIONS(901), + [aux_sym__val_number_token4] = ACTIONS(901), + [aux_sym__val_number_token5] = ACTIONS(901), + [aux_sym__val_number_token6] = ACTIONS(901), + [sym_filesize_unit] = ACTIONS(901), + [sym_duration_unit] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [sym__str_single_quotes] = ACTIONS(901), + [sym__str_back_ticks] = ACTIONS(901), + [sym__entry_separator] = ACTIONS(903), + [aux_sym__record_key_token2] = ACTIONS(901), [anon_sym_POUND] = ACTIONS(113), }, [516] = { [sym_comment] = STATE(516), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_RPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1380), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1390), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1386), - [anon_sym_PLUS_PLUS] = ACTIONS(1386), - [anon_sym_SLASH] = ACTIONS(1384), - [anon_sym_mod] = ACTIONS(1384), - [anon_sym_SLASH_SLASH] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_bit_DASHshl] = ACTIONS(1388), - [anon_sym_bit_DASHshr] = ACTIONS(1388), - [anon_sym_EQ_EQ] = ACTIONS(1380), - [anon_sym_BANG_EQ] = ACTIONS(1380), - [anon_sym_LT2] = ACTIONS(1380), - [anon_sym_LT_EQ] = ACTIONS(1380), - [anon_sym_GT_EQ] = ACTIONS(1380), - [anon_sym_not_DASHin] = ACTIONS(1390), - [anon_sym_starts_DASHwith] = ACTIONS(1390), - [anon_sym_ends_DASHwith] = ACTIONS(1390), - [anon_sym_EQ_TILDE] = ACTIONS(1392), - [anon_sym_BANG_TILDE] = ACTIONS(1392), - [anon_sym_bit_DASHand] = ACTIONS(1394), - [anon_sym_bit_DASHxor] = ACTIONS(1396), - [anon_sym_bit_DASHor] = ACTIONS(1398), - [anon_sym_and] = ACTIONS(1400), - [anon_sym_xor] = ACTIONS(1402), - [anon_sym_or] = ACTIONS(1404), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_export] = ACTIONS(934), + [anon_sym_alias] = ACTIONS(934), + [anon_sym_let] = ACTIONS(934), + [anon_sym_let_DASHenv] = ACTIONS(934), + [anon_sym_mut] = ACTIONS(934), + [anon_sym_const] = ACTIONS(934), + [sym_cmd_identifier] = ACTIONS(934), + [anon_sym_def] = ACTIONS(934), + [anon_sym_export_DASHenv] = ACTIONS(934), + [anon_sym_extern] = ACTIONS(934), + [anon_sym_module] = ACTIONS(934), + [anon_sym_use] = ACTIONS(934), + [anon_sym_LPAREN] = ACTIONS(934), + [anon_sym_DOLLAR] = ACTIONS(934), + [anon_sym_error] = ACTIONS(934), + [anon_sym_list] = ACTIONS(934), + [anon_sym_GT] = ACTIONS(934), + [anon_sym_DASH] = ACTIONS(934), + [anon_sym_break] = ACTIONS(934), + [anon_sym_continue] = ACTIONS(934), + [anon_sym_for] = ACTIONS(934), + [anon_sym_in] = ACTIONS(934), + [anon_sym_loop] = ACTIONS(934), + [anon_sym_make] = ACTIONS(934), + [anon_sym_while] = ACTIONS(934), + [anon_sym_do] = ACTIONS(934), + [anon_sym_if] = ACTIONS(934), + [anon_sym_else] = ACTIONS(934), + [anon_sym_match] = ACTIONS(934), + [anon_sym_RBRACE] = ACTIONS(934), + [anon_sym_try] = ACTIONS(934), + [anon_sym_catch] = ACTIONS(934), + [anon_sym_return] = ACTIONS(934), + [anon_sym_source] = ACTIONS(934), + [anon_sym_source_DASHenv] = ACTIONS(934), + [anon_sym_register] = ACTIONS(934), + [anon_sym_hide] = ACTIONS(934), + [anon_sym_hide_DASHenv] = ACTIONS(934), + [anon_sym_overlay] = ACTIONS(934), + [anon_sym_new] = ACTIONS(934), + [anon_sym_as] = ACTIONS(934), + [anon_sym_STAR] = ACTIONS(934), + [anon_sym_STAR_STAR] = ACTIONS(934), + [anon_sym_PLUS_PLUS] = ACTIONS(934), + [anon_sym_SLASH] = ACTIONS(934), + [anon_sym_mod] = ACTIONS(934), + [anon_sym_SLASH_SLASH] = ACTIONS(934), + [anon_sym_PLUS] = ACTIONS(934), + [anon_sym_bit_DASHshl] = ACTIONS(934), + [anon_sym_bit_DASHshr] = ACTIONS(934), + [anon_sym_EQ_EQ] = ACTIONS(934), + [anon_sym_BANG_EQ] = ACTIONS(934), + [anon_sym_LT2] = ACTIONS(934), + [anon_sym_LT_EQ] = ACTIONS(934), + [anon_sym_GT_EQ] = ACTIONS(934), + [anon_sym_not_DASHin] = ACTIONS(934), + [anon_sym_starts_DASHwith] = ACTIONS(934), + [anon_sym_ends_DASHwith] = ACTIONS(934), + [anon_sym_EQ_TILDE] = ACTIONS(934), + [anon_sym_BANG_TILDE] = ACTIONS(934), + [anon_sym_bit_DASHand] = ACTIONS(934), + [anon_sym_bit_DASHxor] = ACTIONS(934), + [anon_sym_bit_DASHor] = ACTIONS(934), + [anon_sym_and] = ACTIONS(934), + [anon_sym_xor] = ACTIONS(934), + [anon_sym_or] = ACTIONS(934), + [anon_sym_DOT_DOT2] = ACTIONS(934), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(936), + [anon_sym_DOT_DOT_LT2] = ACTIONS(936), + [aux_sym__val_number_decimal_token1] = ACTIONS(934), + [aux_sym__val_number_decimal_token2] = ACTIONS(934), + [anon_sym_DOT2] = ACTIONS(934), + [aux_sym__val_number_decimal_token3] = ACTIONS(934), + [aux_sym__val_number_token1] = ACTIONS(934), + [aux_sym__val_number_token2] = ACTIONS(934), + [aux_sym__val_number_token3] = ACTIONS(934), + [aux_sym__val_number_token4] = ACTIONS(934), + [aux_sym__val_number_token5] = ACTIONS(934), + [aux_sym__val_number_token6] = ACTIONS(934), + [sym_filesize_unit] = ACTIONS(934), + [sym_duration_unit] = ACTIONS(934), + [anon_sym_DQUOTE] = ACTIONS(934), + [sym__str_single_quotes] = ACTIONS(934), + [sym__str_back_ticks] = ACTIONS(934), + [sym__entry_separator] = ACTIONS(936), + [aux_sym__record_key_token2] = ACTIONS(934), [anon_sym_POUND] = ACTIONS(113), }, [517] = { [sym_comment] = STATE(517), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_alias] = ACTIONS(1406), - [anon_sym_let] = ACTIONS(1406), - [anon_sym_let_DASHenv] = ACTIONS(1406), - [anon_sym_mut] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_SEMI] = ACTIONS(1406), - [sym_cmd_identifier] = ACTIONS(1406), - [anon_sym_LF] = ACTIONS(1408), - [anon_sym_def] = ACTIONS(1406), - [anon_sym_export_DASHenv] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_use] = ACTIONS(1406), - [anon_sym_LBRACK] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1406), - [anon_sym_RPAREN] = ACTIONS(1406), - [anon_sym_DOLLAR] = ACTIONS(1406), - [anon_sym_error] = ACTIONS(1406), - [anon_sym_GT] = ACTIONS(1406), - [anon_sym_DASH_DASH] = ACTIONS(1406), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_in] = ACTIONS(1406), - [anon_sym_loop] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_match] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_RBRACE] = ACTIONS(1406), - [anon_sym_DOT_DOT] = ACTIONS(1406), - [anon_sym_try] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_source] = ACTIONS(1406), - [anon_sym_source_DASHenv] = ACTIONS(1406), - [anon_sym_register] = ACTIONS(1406), - [anon_sym_hide] = ACTIONS(1406), - [anon_sym_hide_DASHenv] = ACTIONS(1406), - [anon_sym_overlay] = ACTIONS(1406), - [anon_sym_as] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1406), - [anon_sym_where] = ACTIONS(1406), - [anon_sym_STAR_STAR] = ACTIONS(1406), - [anon_sym_PLUS_PLUS] = ACTIONS(1406), - [anon_sym_SLASH] = ACTIONS(1406), - [anon_sym_mod] = ACTIONS(1406), - [anon_sym_SLASH_SLASH] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_bit_DASHshl] = ACTIONS(1406), - [anon_sym_bit_DASHshr] = ACTIONS(1406), - [anon_sym_EQ_EQ] = ACTIONS(1406), - [anon_sym_BANG_EQ] = ACTIONS(1406), - [anon_sym_LT2] = ACTIONS(1406), - [anon_sym_LT_EQ] = ACTIONS(1406), - [anon_sym_GT_EQ] = ACTIONS(1406), - [anon_sym_not_DASHin] = ACTIONS(1406), - [anon_sym_starts_DASHwith] = ACTIONS(1406), - [anon_sym_ends_DASHwith] = ACTIONS(1406), - [anon_sym_EQ_TILDE] = ACTIONS(1406), - [anon_sym_BANG_TILDE] = ACTIONS(1406), - [anon_sym_bit_DASHand] = ACTIONS(1406), - [anon_sym_bit_DASHxor] = ACTIONS(1406), - [anon_sym_bit_DASHor] = ACTIONS(1406), - [anon_sym_and] = ACTIONS(1406), - [anon_sym_xor] = ACTIONS(1406), - [anon_sym_or] = ACTIONS(1406), - [anon_sym_not] = ACTIONS(1406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1406), - [anon_sym_DOT_DOT_LT] = ACTIONS(1406), - [anon_sym_null] = ACTIONS(1406), - [anon_sym_true] = ACTIONS(1406), - [anon_sym_false] = ACTIONS(1406), - [aux_sym__val_number_decimal_token1] = ACTIONS(1406), - [aux_sym__val_number_decimal_token2] = ACTIONS(1406), - [anon_sym_DOT2] = ACTIONS(1406), - [aux_sym__val_number_decimal_token3] = ACTIONS(1406), - [aux_sym__val_number_token1] = ACTIONS(1406), - [aux_sym__val_number_token2] = ACTIONS(1406), - [aux_sym__val_number_token3] = ACTIONS(1406), - [aux_sym__val_number_token4] = ACTIONS(1406), - [aux_sym__val_number_token5] = ACTIONS(1406), - [aux_sym__val_number_token6] = ACTIONS(1406), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1406), - [anon_sym_0x] = ACTIONS(1406), - [sym_val_date] = ACTIONS(1406), - [anon_sym_DQUOTE] = ACTIONS(1406), - [sym__str_single_quotes] = ACTIONS(1406), - [sym__str_back_ticks] = ACTIONS(1406), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1406), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1406), - [anon_sym_CARET] = ACTIONS(1406), + [anon_sym_export] = ACTIONS(938), + [anon_sym_alias] = ACTIONS(938), + [anon_sym_let] = ACTIONS(938), + [anon_sym_let_DASHenv] = ACTIONS(938), + [anon_sym_mut] = ACTIONS(938), + [anon_sym_const] = ACTIONS(938), + [sym_cmd_identifier] = ACTIONS(938), + [anon_sym_def] = ACTIONS(938), + [anon_sym_export_DASHenv] = ACTIONS(938), + [anon_sym_extern] = ACTIONS(938), + [anon_sym_module] = ACTIONS(938), + [anon_sym_use] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(938), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_error] = ACTIONS(938), + [anon_sym_list] = ACTIONS(938), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_break] = ACTIONS(938), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_for] = ACTIONS(938), + [anon_sym_in] = ACTIONS(938), + [anon_sym_loop] = ACTIONS(938), + [anon_sym_make] = ACTIONS(938), + [anon_sym_while] = ACTIONS(938), + [anon_sym_do] = ACTIONS(938), + [anon_sym_if] = ACTIONS(938), + [anon_sym_else] = ACTIONS(938), + [anon_sym_match] = ACTIONS(938), + [anon_sym_RBRACE] = ACTIONS(938), + [anon_sym_try] = ACTIONS(938), + [anon_sym_catch] = ACTIONS(938), + [anon_sym_return] = ACTIONS(938), + [anon_sym_source] = ACTIONS(938), + [anon_sym_source_DASHenv] = ACTIONS(938), + [anon_sym_register] = ACTIONS(938), + [anon_sym_hide] = ACTIONS(938), + [anon_sym_hide_DASHenv] = ACTIONS(938), + [anon_sym_overlay] = ACTIONS(938), + [anon_sym_new] = ACTIONS(938), + [anon_sym_as] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_STAR_STAR] = ACTIONS(938), + [anon_sym_PLUS_PLUS] = ACTIONS(938), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(938), + [anon_sym_SLASH_SLASH] = ACTIONS(938), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_bit_DASHshl] = ACTIONS(938), + [anon_sym_bit_DASHshr] = ACTIONS(938), + [anon_sym_EQ_EQ] = ACTIONS(938), + [anon_sym_BANG_EQ] = ACTIONS(938), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(938), + [anon_sym_GT_EQ] = ACTIONS(938), + [anon_sym_not_DASHin] = ACTIONS(938), + [anon_sym_starts_DASHwith] = ACTIONS(938), + [anon_sym_ends_DASHwith] = ACTIONS(938), + [anon_sym_EQ_TILDE] = ACTIONS(938), + [anon_sym_BANG_TILDE] = ACTIONS(938), + [anon_sym_bit_DASHand] = ACTIONS(938), + [anon_sym_bit_DASHxor] = ACTIONS(938), + [anon_sym_bit_DASHor] = ACTIONS(938), + [anon_sym_and] = ACTIONS(938), + [anon_sym_xor] = ACTIONS(938), + [anon_sym_or] = ACTIONS(938), + [anon_sym_DOT_DOT2] = ACTIONS(1413), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1415), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1415), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(938), + [anon_sym_DOT2] = ACTIONS(938), + [aux_sym__val_number_decimal_token3] = ACTIONS(938), + [aux_sym__val_number_token1] = ACTIONS(938), + [aux_sym__val_number_token2] = ACTIONS(938), + [aux_sym__val_number_token3] = ACTIONS(938), + [aux_sym__val_number_token4] = ACTIONS(938), + [aux_sym__val_number_token5] = ACTIONS(938), + [aux_sym__val_number_token6] = ACTIONS(938), + [sym_filesize_unit] = ACTIONS(1417), + [sym_duration_unit] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym__str_single_quotes] = ACTIONS(938), + [sym__str_back_ticks] = ACTIONS(938), + [sym__entry_separator] = ACTIONS(940), + [aux_sym__record_key_token2] = ACTIONS(938), [anon_sym_POUND] = ACTIONS(113), }, [518] = { [sym_comment] = STATE(518), - [anon_sym_export] = ACTIONS(1410), - [anon_sym_alias] = ACTIONS(1410), - [anon_sym_let] = ACTIONS(1410), - [anon_sym_let_DASHenv] = ACTIONS(1410), - [anon_sym_mut] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_SEMI] = ACTIONS(1410), - [sym_cmd_identifier] = ACTIONS(1410), - [anon_sym_LF] = ACTIONS(1412), - [anon_sym_def] = ACTIONS(1410), - [anon_sym_export_DASHenv] = ACTIONS(1410), - [anon_sym_extern] = ACTIONS(1410), - [anon_sym_module] = ACTIONS(1410), - [anon_sym_use] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1410), - [anon_sym_LPAREN] = ACTIONS(1410), - [anon_sym_RPAREN] = ACTIONS(1410), - [anon_sym_DOLLAR] = ACTIONS(1410), - [anon_sym_error] = ACTIONS(1410), - [anon_sym_GT] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_in] = ACTIONS(1410), - [anon_sym_loop] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1410), - [anon_sym_RBRACE] = ACTIONS(1410), - [anon_sym_DOT_DOT] = ACTIONS(1410), - [anon_sym_try] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_source] = ACTIONS(1410), - [anon_sym_source_DASHenv] = ACTIONS(1410), - [anon_sym_register] = ACTIONS(1410), - [anon_sym_hide] = ACTIONS(1410), - [anon_sym_hide_DASHenv] = ACTIONS(1410), - [anon_sym_overlay] = ACTIONS(1410), - [anon_sym_as] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1410), - [anon_sym_where] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1410), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_SLASH] = ACTIONS(1410), - [anon_sym_mod] = ACTIONS(1410), - [anon_sym_SLASH_SLASH] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_bit_DASHshl] = ACTIONS(1410), - [anon_sym_bit_DASHshr] = ACTIONS(1410), - [anon_sym_EQ_EQ] = ACTIONS(1410), - [anon_sym_BANG_EQ] = ACTIONS(1410), - [anon_sym_LT2] = ACTIONS(1410), - [anon_sym_LT_EQ] = ACTIONS(1410), - [anon_sym_GT_EQ] = ACTIONS(1410), - [anon_sym_not_DASHin] = ACTIONS(1410), - [anon_sym_starts_DASHwith] = ACTIONS(1410), - [anon_sym_ends_DASHwith] = ACTIONS(1410), - [anon_sym_EQ_TILDE] = ACTIONS(1410), - [anon_sym_BANG_TILDE] = ACTIONS(1410), - [anon_sym_bit_DASHand] = ACTIONS(1410), - [anon_sym_bit_DASHxor] = ACTIONS(1410), - [anon_sym_bit_DASHor] = ACTIONS(1410), - [anon_sym_and] = ACTIONS(1410), - [anon_sym_xor] = ACTIONS(1410), - [anon_sym_or] = ACTIONS(1410), - [anon_sym_not] = ACTIONS(1410), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1410), - [anon_sym_DOT_DOT_LT] = ACTIONS(1410), - [anon_sym_null] = ACTIONS(1410), - [anon_sym_true] = ACTIONS(1410), - [anon_sym_false] = ACTIONS(1410), - [aux_sym__val_number_decimal_token1] = ACTIONS(1410), - [aux_sym__val_number_decimal_token2] = ACTIONS(1410), - [anon_sym_DOT2] = ACTIONS(1410), - [aux_sym__val_number_decimal_token3] = ACTIONS(1410), - [aux_sym__val_number_token1] = ACTIONS(1410), - [aux_sym__val_number_token2] = ACTIONS(1410), - [aux_sym__val_number_token3] = ACTIONS(1410), - [aux_sym__val_number_token4] = ACTIONS(1410), - [aux_sym__val_number_token5] = ACTIONS(1410), - [aux_sym__val_number_token6] = ACTIONS(1410), - [anon_sym_0b] = ACTIONS(1410), - [anon_sym_0o] = ACTIONS(1410), - [anon_sym_0x] = ACTIONS(1410), - [sym_val_date] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1410), - [sym__str_single_quotes] = ACTIONS(1410), - [sym__str_back_ticks] = ACTIONS(1410), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1410), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1410), - [anon_sym_CARET] = ACTIONS(1410), + [anon_sym_export] = ACTIONS(1033), + [anon_sym_alias] = ACTIONS(1033), + [anon_sym_let] = ACTIONS(1033), + [anon_sym_let_DASHenv] = ACTIONS(1033), + [anon_sym_mut] = ACTIONS(1033), + [anon_sym_const] = ACTIONS(1033), + [sym_cmd_identifier] = ACTIONS(1033), + [anon_sym_def] = ACTIONS(1033), + [anon_sym_export_DASHenv] = ACTIONS(1033), + [anon_sym_extern] = ACTIONS(1033), + [anon_sym_module] = ACTIONS(1033), + [anon_sym_use] = ACTIONS(1033), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_error] = ACTIONS(1033), + [anon_sym_list] = ACTIONS(1033), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1033), + [anon_sym_break] = ACTIONS(1033), + [anon_sym_continue] = ACTIONS(1033), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_in] = ACTIONS(1033), + [anon_sym_loop] = ACTIONS(1033), + [anon_sym_make] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(1033), + [anon_sym_do] = ACTIONS(1033), + [anon_sym_if] = ACTIONS(1033), + [anon_sym_else] = ACTIONS(1033), + [anon_sym_match] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1033), + [anon_sym_try] = ACTIONS(1033), + [anon_sym_catch] = ACTIONS(1033), + [anon_sym_return] = ACTIONS(1033), + [anon_sym_source] = ACTIONS(1033), + [anon_sym_source_DASHenv] = ACTIONS(1033), + [anon_sym_register] = ACTIONS(1033), + [anon_sym_hide] = ACTIONS(1033), + [anon_sym_hide_DASHenv] = ACTIONS(1033), + [anon_sym_overlay] = ACTIONS(1033), + [anon_sym_new] = ACTIONS(1033), + [anon_sym_as] = ACTIONS(1033), + [anon_sym_STAR] = ACTIONS(1033), + [anon_sym_QMARK2] = ACTIONS(1033), + [anon_sym_STAR_STAR] = ACTIONS(1033), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_SLASH] = ACTIONS(1033), + [anon_sym_mod] = ACTIONS(1033), + [anon_sym_SLASH_SLASH] = ACTIONS(1033), + [anon_sym_PLUS] = ACTIONS(1033), + [anon_sym_bit_DASHshl] = ACTIONS(1033), + [anon_sym_bit_DASHshr] = ACTIONS(1033), + [anon_sym_EQ_EQ] = ACTIONS(1033), + [anon_sym_BANG_EQ] = ACTIONS(1033), + [anon_sym_LT2] = ACTIONS(1033), + [anon_sym_LT_EQ] = ACTIONS(1033), + [anon_sym_GT_EQ] = ACTIONS(1033), + [anon_sym_not_DASHin] = ACTIONS(1033), + [anon_sym_starts_DASHwith] = ACTIONS(1033), + [anon_sym_ends_DASHwith] = ACTIONS(1033), + [anon_sym_EQ_TILDE] = ACTIONS(1033), + [anon_sym_BANG_TILDE] = ACTIONS(1033), + [anon_sym_bit_DASHand] = ACTIONS(1033), + [anon_sym_bit_DASHxor] = ACTIONS(1033), + [anon_sym_bit_DASHor] = ACTIONS(1033), + [anon_sym_and] = ACTIONS(1033), + [anon_sym_xor] = ACTIONS(1033), + [anon_sym_or] = ACTIONS(1033), + [anon_sym_DOT_DOT2] = ACTIONS(1033), + [anon_sym_DOT] = ACTIONS(1033), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1035), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1035), + [aux_sym__val_number_decimal_token1] = ACTIONS(1033), + [aux_sym__val_number_decimal_token2] = ACTIONS(1033), + [anon_sym_DOT2] = ACTIONS(1033), + [aux_sym__val_number_decimal_token3] = ACTIONS(1033), + [aux_sym__val_number_token1] = ACTIONS(1033), + [aux_sym__val_number_token2] = ACTIONS(1033), + [aux_sym__val_number_token3] = ACTIONS(1033), + [aux_sym__val_number_token4] = ACTIONS(1033), + [aux_sym__val_number_token5] = ACTIONS(1033), + [aux_sym__val_number_token6] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [sym__str_single_quotes] = ACTIONS(1033), + [sym__str_back_ticks] = ACTIONS(1033), + [sym__entry_separator] = ACTIONS(1035), + [aux_sym__record_key_token2] = ACTIONS(1033), [anon_sym_POUND] = ACTIONS(113), }, [519] = { [sym_comment] = STATE(519), - [anon_sym_export] = ACTIONS(1172), - [anon_sym_alias] = ACTIONS(1172), - [anon_sym_let] = ACTIONS(1172), - [anon_sym_let_DASHenv] = ACTIONS(1172), - [anon_sym_mut] = ACTIONS(1172), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(1172), - [sym_cmd_identifier] = ACTIONS(1172), - [anon_sym_LF] = ACTIONS(1174), - [anon_sym_def] = ACTIONS(1172), - [anon_sym_export_DASHenv] = ACTIONS(1172), - [anon_sym_extern] = ACTIONS(1172), - [anon_sym_module] = ACTIONS(1172), - [anon_sym_use] = ACTIONS(1172), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_LPAREN] = ACTIONS(1172), - [anon_sym_RPAREN] = ACTIONS(1172), - [anon_sym_DOLLAR] = ACTIONS(1172), - [anon_sym_error] = ACTIONS(1172), - [anon_sym_GT] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_DASH] = ACTIONS(1172), - [anon_sym_break] = ACTIONS(1172), - [anon_sym_continue] = ACTIONS(1172), - [anon_sym_for] = ACTIONS(1172), - [anon_sym_in] = ACTIONS(1172), - [anon_sym_loop] = ACTIONS(1172), - [anon_sym_while] = ACTIONS(1172), - [anon_sym_do] = ACTIONS(1172), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_match] = ACTIONS(1172), - [anon_sym_LBRACE] = ACTIONS(1172), - [anon_sym_RBRACE] = ACTIONS(1172), - [anon_sym_DOT_DOT] = ACTIONS(1172), - [anon_sym_try] = ACTIONS(1172), - [anon_sym_return] = ACTIONS(1172), - [anon_sym_source] = ACTIONS(1172), - [anon_sym_source_DASHenv] = ACTIONS(1172), - [anon_sym_register] = ACTIONS(1172), - [anon_sym_hide] = ACTIONS(1172), - [anon_sym_hide_DASHenv] = ACTIONS(1172), - [anon_sym_overlay] = ACTIONS(1172), - [anon_sym_as] = ACTIONS(1172), - [anon_sym_STAR] = ACTIONS(1172), - [anon_sym_where] = ACTIONS(1172), - [anon_sym_STAR_STAR] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_SLASH] = ACTIONS(1172), - [anon_sym_mod] = ACTIONS(1172), - [anon_sym_SLASH_SLASH] = ACTIONS(1172), - [anon_sym_PLUS] = ACTIONS(1172), - [anon_sym_bit_DASHshl] = ACTIONS(1172), - [anon_sym_bit_DASHshr] = ACTIONS(1172), - [anon_sym_EQ_EQ] = ACTIONS(1172), - [anon_sym_BANG_EQ] = ACTIONS(1172), - [anon_sym_LT2] = ACTIONS(1172), - [anon_sym_LT_EQ] = ACTIONS(1172), - [anon_sym_GT_EQ] = ACTIONS(1172), - [anon_sym_not_DASHin] = ACTIONS(1172), - [anon_sym_starts_DASHwith] = ACTIONS(1172), - [anon_sym_ends_DASHwith] = ACTIONS(1172), - [anon_sym_EQ_TILDE] = ACTIONS(1172), - [anon_sym_BANG_TILDE] = ACTIONS(1172), - [anon_sym_bit_DASHand] = ACTIONS(1172), - [anon_sym_bit_DASHxor] = ACTIONS(1172), - [anon_sym_bit_DASHor] = ACTIONS(1172), - [anon_sym_and] = ACTIONS(1172), - [anon_sym_xor] = ACTIONS(1172), - [anon_sym_or] = ACTIONS(1172), - [anon_sym_not] = ACTIONS(1172), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1172), - [anon_sym_DOT_DOT_LT] = ACTIONS(1172), - [anon_sym_null] = ACTIONS(1172), - [anon_sym_true] = ACTIONS(1172), - [anon_sym_false] = ACTIONS(1172), - [aux_sym__val_number_decimal_token1] = ACTIONS(1172), - [aux_sym__val_number_decimal_token2] = ACTIONS(1172), - [anon_sym_DOT2] = ACTIONS(1172), - [aux_sym__val_number_decimal_token3] = ACTIONS(1172), - [aux_sym__val_number_token1] = ACTIONS(1172), - [aux_sym__val_number_token2] = ACTIONS(1172), - [aux_sym__val_number_token3] = ACTIONS(1172), - [aux_sym__val_number_token4] = ACTIONS(1172), - [aux_sym__val_number_token5] = ACTIONS(1172), - [aux_sym__val_number_token6] = ACTIONS(1172), - [anon_sym_0b] = ACTIONS(1172), - [anon_sym_0o] = ACTIONS(1172), - [anon_sym_0x] = ACTIONS(1172), - [sym_val_date] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(1172), - [sym__str_single_quotes] = ACTIONS(1172), - [sym__str_back_ticks] = ACTIONS(1172), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1172), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1172), - [anon_sym_CARET] = ACTIONS(1172), + [anon_sym_export] = ACTIONS(1020), + [anon_sym_alias] = ACTIONS(1020), + [anon_sym_let] = ACTIONS(1020), + [anon_sym_let_DASHenv] = ACTIONS(1020), + [anon_sym_mut] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(1020), + [sym_cmd_identifier] = ACTIONS(1020), + [anon_sym_def] = ACTIONS(1020), + [anon_sym_export_DASHenv] = ACTIONS(1020), + [anon_sym_extern] = ACTIONS(1020), + [anon_sym_module] = ACTIONS(1020), + [anon_sym_use] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_error] = ACTIONS(1020), + [anon_sym_list] = ACTIONS(1020), + [anon_sym_GT] = ACTIONS(1020), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_in] = ACTIONS(1020), + [anon_sym_loop] = ACTIONS(1020), + [anon_sym_make] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_else] = ACTIONS(1020), + [anon_sym_match] = ACTIONS(1020), + [anon_sym_RBRACE] = ACTIONS(1020), + [anon_sym_try] = ACTIONS(1020), + [anon_sym_catch] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_source] = ACTIONS(1020), + [anon_sym_source_DASHenv] = ACTIONS(1020), + [anon_sym_register] = ACTIONS(1020), + [anon_sym_hide] = ACTIONS(1020), + [anon_sym_hide_DASHenv] = ACTIONS(1020), + [anon_sym_overlay] = ACTIONS(1020), + [anon_sym_new] = ACTIONS(1020), + [anon_sym_as] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_QMARK2] = ACTIONS(1020), + [anon_sym_STAR_STAR] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1020), + [anon_sym_SLASH] = ACTIONS(1020), + [anon_sym_mod] = ACTIONS(1020), + [anon_sym_SLASH_SLASH] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_bit_DASHshl] = ACTIONS(1020), + [anon_sym_bit_DASHshr] = ACTIONS(1020), + [anon_sym_EQ_EQ] = ACTIONS(1020), + [anon_sym_BANG_EQ] = ACTIONS(1020), + [anon_sym_LT2] = ACTIONS(1020), + [anon_sym_LT_EQ] = ACTIONS(1020), + [anon_sym_GT_EQ] = ACTIONS(1020), + [anon_sym_not_DASHin] = ACTIONS(1020), + [anon_sym_starts_DASHwith] = ACTIONS(1020), + [anon_sym_ends_DASHwith] = ACTIONS(1020), + [anon_sym_EQ_TILDE] = ACTIONS(1020), + [anon_sym_BANG_TILDE] = ACTIONS(1020), + [anon_sym_bit_DASHand] = ACTIONS(1020), + [anon_sym_bit_DASHxor] = ACTIONS(1020), + [anon_sym_bit_DASHor] = ACTIONS(1020), + [anon_sym_and] = ACTIONS(1020), + [anon_sym_xor] = ACTIONS(1020), + [anon_sym_or] = ACTIONS(1020), + [anon_sym_DOT_DOT2] = ACTIONS(1020), + [anon_sym_DOT] = ACTIONS(1020), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1022), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1022), + [aux_sym__val_number_decimal_token1] = ACTIONS(1020), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [anon_sym_DOT2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1020), + [aux_sym__val_number_token1] = ACTIONS(1020), + [aux_sym__val_number_token2] = ACTIONS(1020), + [aux_sym__val_number_token3] = ACTIONS(1020), + [aux_sym__val_number_token4] = ACTIONS(1020), + [aux_sym__val_number_token5] = ACTIONS(1020), + [aux_sym__val_number_token6] = ACTIONS(1020), + [anon_sym_DQUOTE] = ACTIONS(1020), + [sym__str_single_quotes] = ACTIONS(1020), + [sym__str_back_ticks] = ACTIONS(1020), + [sym__entry_separator] = ACTIONS(1022), + [aux_sym__record_key_token2] = ACTIONS(1020), [anon_sym_POUND] = ACTIONS(113), }, [520] = { + [sym_path] = STATE(545), [sym_comment] = STATE(520), - [ts_builtin_sym_end] = ACTIONS(1111), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_alias] = ACTIONS(1109), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_let_DASHenv] = ACTIONS(1109), - [anon_sym_mut] = ACTIONS(1109), - [anon_sym_const] = ACTIONS(1109), - [anon_sym_SEMI] = ACTIONS(1109), - [sym_cmd_identifier] = ACTIONS(1109), - [anon_sym_LF] = ACTIONS(1111), - [anon_sym_def] = ACTIONS(1109), - [anon_sym_export_DASHenv] = ACTIONS(1109), - [anon_sym_extern] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_use] = ACTIONS(1109), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_DOLLAR] = ACTIONS(1109), - [anon_sym_error] = ACTIONS(1109), - [anon_sym_GT] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_break] = ACTIONS(1109), - [anon_sym_continue] = ACTIONS(1109), - [anon_sym_for] = ACTIONS(1109), - [anon_sym_in] = ACTIONS(1109), - [anon_sym_loop] = ACTIONS(1109), - [anon_sym_while] = ACTIONS(1109), - [anon_sym_do] = ACTIONS(1109), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_DOT_DOT] = ACTIONS(1109), - [anon_sym_try] = ACTIONS(1109), - [anon_sym_return] = ACTIONS(1109), - [anon_sym_source] = ACTIONS(1109), - [anon_sym_source_DASHenv] = ACTIONS(1109), - [anon_sym_register] = ACTIONS(1109), - [anon_sym_hide] = ACTIONS(1109), - [anon_sym_hide_DASHenv] = ACTIONS(1109), - [anon_sym_overlay] = ACTIONS(1109), - [anon_sym_as] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_where] = ACTIONS(1109), - [anon_sym_STAR_STAR] = ACTIONS(1109), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_SLASH] = ACTIONS(1109), - [anon_sym_mod] = ACTIONS(1109), - [anon_sym_SLASH_SLASH] = ACTIONS(1109), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_bit_DASHshl] = ACTIONS(1109), - [anon_sym_bit_DASHshr] = ACTIONS(1109), - [anon_sym_EQ_EQ] = ACTIONS(1109), - [anon_sym_BANG_EQ] = ACTIONS(1109), - [anon_sym_LT2] = ACTIONS(1109), - [anon_sym_LT_EQ] = ACTIONS(1109), - [anon_sym_GT_EQ] = ACTIONS(1109), - [anon_sym_not_DASHin] = ACTIONS(1109), - [anon_sym_starts_DASHwith] = ACTIONS(1109), - [anon_sym_ends_DASHwith] = ACTIONS(1109), - [anon_sym_EQ_TILDE] = ACTIONS(1109), - [anon_sym_BANG_TILDE] = ACTIONS(1109), - [anon_sym_bit_DASHand] = ACTIONS(1109), - [anon_sym_bit_DASHxor] = ACTIONS(1109), - [anon_sym_bit_DASHor] = ACTIONS(1109), - [anon_sym_and] = ACTIONS(1109), - [anon_sym_xor] = ACTIONS(1109), - [anon_sym_or] = ACTIONS(1109), - [anon_sym_not] = ACTIONS(1109), - [anon_sym_DOT] = ACTIONS(1109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1109), - [anon_sym_DOT_DOT_LT] = ACTIONS(1109), - [anon_sym_null] = ACTIONS(1109), - [anon_sym_true] = ACTIONS(1109), - [anon_sym_false] = ACTIONS(1109), - [aux_sym__val_number_decimal_token1] = ACTIONS(1109), - [aux_sym__val_number_decimal_token2] = ACTIONS(1109), - [anon_sym_DOT2] = ACTIONS(1109), - [aux_sym__val_number_decimal_token3] = ACTIONS(1109), - [aux_sym__val_number_token1] = ACTIONS(1109), - [aux_sym__val_number_token2] = ACTIONS(1109), - [aux_sym__val_number_token3] = ACTIONS(1109), - [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(1109), - [anon_sym_0o] = ACTIONS(1109), - [anon_sym_0x] = ACTIONS(1109), - [sym_val_date] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(1109), - [sym__str_single_quotes] = ACTIONS(1109), - [sym__str_back_ticks] = ACTIONS(1109), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1109), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1109), - [anon_sym_CARET] = ACTIONS(1109), - [anon_sym_POUND] = ACTIONS(113), - }, - [521] = { - [sym_comment] = STATE(521), - [ts_builtin_sym_end] = ACTIONS(1115), - [anon_sym_export] = ACTIONS(1113), - [anon_sym_alias] = ACTIONS(1113), - [anon_sym_let] = ACTIONS(1113), - [anon_sym_let_DASHenv] = ACTIONS(1113), - [anon_sym_mut] = ACTIONS(1113), - [anon_sym_const] = ACTIONS(1113), - [anon_sym_SEMI] = ACTIONS(1113), - [sym_cmd_identifier] = ACTIONS(1113), - [anon_sym_LF] = ACTIONS(1115), - [anon_sym_def] = ACTIONS(1113), - [anon_sym_export_DASHenv] = ACTIONS(1113), - [anon_sym_extern] = ACTIONS(1113), - [anon_sym_module] = ACTIONS(1113), - [anon_sym_use] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1113), - [anon_sym_error] = ACTIONS(1113), - [anon_sym_GT] = ACTIONS(1113), - [anon_sym_DASH_DASH] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_in] = ACTIONS(1113), - [anon_sym_loop] = ACTIONS(1113), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1113), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_source] = ACTIONS(1113), - [anon_sym_source_DASHenv] = ACTIONS(1113), - [anon_sym_register] = ACTIONS(1113), - [anon_sym_hide] = ACTIONS(1113), - [anon_sym_hide_DASHenv] = ACTIONS(1113), - [anon_sym_overlay] = ACTIONS(1113), - [anon_sym_as] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_where] = ACTIONS(1113), - [anon_sym_STAR_STAR] = ACTIONS(1113), - [anon_sym_PLUS_PLUS] = ACTIONS(1113), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_mod] = ACTIONS(1113), - [anon_sym_SLASH_SLASH] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_bit_DASHshl] = ACTIONS(1113), - [anon_sym_bit_DASHshr] = ACTIONS(1113), - [anon_sym_EQ_EQ] = ACTIONS(1113), - [anon_sym_BANG_EQ] = ACTIONS(1113), - [anon_sym_LT2] = ACTIONS(1113), - [anon_sym_LT_EQ] = ACTIONS(1113), - [anon_sym_GT_EQ] = ACTIONS(1113), - [anon_sym_not_DASHin] = ACTIONS(1113), - [anon_sym_starts_DASHwith] = ACTIONS(1113), - [anon_sym_ends_DASHwith] = ACTIONS(1113), - [anon_sym_EQ_TILDE] = ACTIONS(1113), - [anon_sym_BANG_TILDE] = ACTIONS(1113), - [anon_sym_bit_DASHand] = ACTIONS(1113), - [anon_sym_bit_DASHxor] = ACTIONS(1113), - [anon_sym_bit_DASHor] = ACTIONS(1113), - [anon_sym_and] = ACTIONS(1113), - [anon_sym_xor] = ACTIONS(1113), - [anon_sym_or] = ACTIONS(1113), - [anon_sym_not] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1113), - [anon_sym_DOT_DOT_LT] = ACTIONS(1113), - [anon_sym_null] = ACTIONS(1113), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1113), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_decimal_token2] = ACTIONS(1113), - [anon_sym_DOT2] = ACTIONS(1113), - [aux_sym__val_number_decimal_token3] = ACTIONS(1113), - [aux_sym__val_number_token1] = ACTIONS(1113), - [aux_sym__val_number_token2] = ACTIONS(1113), - [aux_sym__val_number_token3] = ACTIONS(1113), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1113), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_0b] = ACTIONS(1113), - [anon_sym_0o] = ACTIONS(1113), - [anon_sym_0x] = ACTIONS(1113), - [sym_val_date] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym__str_single_quotes] = ACTIONS(1113), - [sym__str_back_ticks] = ACTIONS(1113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), - [anon_sym_CARET] = ACTIONS(1113), - [anon_sym_POUND] = ACTIONS(113), - }, - [522] = { - [sym_comment] = STATE(522), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_error] = ACTIONS(936), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_RBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_as] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_where] = ACTIONS(936), - [anon_sym_STAR_STAR] = ACTIONS(936), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(936), - [anon_sym_SLASH_SLASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(936), - [anon_sym_bit_DASHshr] = ACTIONS(936), - [anon_sym_EQ_EQ] = ACTIONS(936), - [anon_sym_BANG_EQ] = ACTIONS(936), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(936), - [anon_sym_GT_EQ] = ACTIONS(936), - [anon_sym_not_DASHin] = ACTIONS(936), - [anon_sym_starts_DASHwith] = ACTIONS(936), - [anon_sym_ends_DASHwith] = ACTIONS(936), - [anon_sym_EQ_TILDE] = ACTIONS(936), - [anon_sym_BANG_TILDE] = ACTIONS(936), - [anon_sym_bit_DASHand] = ACTIONS(936), - [anon_sym_bit_DASHxor] = ACTIONS(936), - [anon_sym_bit_DASHor] = ACTIONS(936), - [anon_sym_and] = ACTIONS(936), - [anon_sym_xor] = ACTIONS(936), - [anon_sym_or] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [anon_sym_POUND] = ACTIONS(113), - }, - [523] = { - [sym_comment] = STATE(523), - [anon_sym_export] = ACTIONS(1243), - [anon_sym_alias] = ACTIONS(1243), - [anon_sym_let] = ACTIONS(1243), - [anon_sym_let_DASHenv] = ACTIONS(1243), - [anon_sym_mut] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1243), - [sym_cmd_identifier] = ACTIONS(1243), - [anon_sym_LF] = ACTIONS(1290), - [anon_sym_def] = ACTIONS(1243), - [anon_sym_export_DASHenv] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1243), - [anon_sym_module] = ACTIONS(1243), - [anon_sym_use] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_RPAREN] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_error] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_in] = ACTIONS(1243), - [anon_sym_loop] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_match] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_RBRACE] = ACTIONS(1243), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_try] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_source] = ACTIONS(1243), - [anon_sym_source_DASHenv] = ACTIONS(1243), - [anon_sym_register] = ACTIONS(1243), - [anon_sym_hide] = ACTIONS(1243), - [anon_sym_hide_DASHenv] = ACTIONS(1243), - [anon_sym_overlay] = ACTIONS(1243), - [anon_sym_as] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1243), - [anon_sym_where] = ACTIONS(1243), - [anon_sym_STAR_STAR] = ACTIONS(1243), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_SLASH] = ACTIONS(1243), - [anon_sym_mod] = ACTIONS(1243), - [anon_sym_SLASH_SLASH] = ACTIONS(1243), - [anon_sym_PLUS] = ACTIONS(1243), - [anon_sym_bit_DASHshl] = ACTIONS(1243), - [anon_sym_bit_DASHshr] = ACTIONS(1243), - [anon_sym_EQ_EQ] = ACTIONS(1243), - [anon_sym_BANG_EQ] = ACTIONS(1243), - [anon_sym_LT2] = ACTIONS(1243), - [anon_sym_LT_EQ] = ACTIONS(1243), - [anon_sym_GT_EQ] = ACTIONS(1243), - [anon_sym_not_DASHin] = ACTIONS(1243), - [anon_sym_starts_DASHwith] = ACTIONS(1243), - [anon_sym_ends_DASHwith] = ACTIONS(1243), - [anon_sym_EQ_TILDE] = ACTIONS(1243), - [anon_sym_BANG_TILDE] = ACTIONS(1243), - [anon_sym_bit_DASHand] = ACTIONS(1243), - [anon_sym_bit_DASHxor] = ACTIONS(1243), - [anon_sym_bit_DASHor] = ACTIONS(1243), - [anon_sym_and] = ACTIONS(1243), - [anon_sym_xor] = ACTIONS(1243), - [anon_sym_or] = ACTIONS(1243), - [anon_sym_not] = ACTIONS(1243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1243), - [anon_sym_DOT_DOT_LT] = ACTIONS(1243), - [anon_sym_null] = ACTIONS(1243), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_decimal_token2] = ACTIONS(1243), - [anon_sym_DOT2] = ACTIONS(1243), - [aux_sym__val_number_decimal_token3] = ACTIONS(1243), - [aux_sym__val_number_token1] = ACTIONS(1243), - [aux_sym__val_number_token2] = ACTIONS(1243), - [aux_sym__val_number_token3] = ACTIONS(1243), - [aux_sym__val_number_token4] = ACTIONS(1243), - [aux_sym__val_number_token5] = ACTIONS(1243), - [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_0b] = ACTIONS(1243), - [anon_sym_0o] = ACTIONS(1243), - [anon_sym_0x] = ACTIONS(1243), - [sym_val_date] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym__str_single_quotes] = ACTIONS(1243), - [sym__str_back_ticks] = ACTIONS(1243), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1243), - [anon_sym_CARET] = ACTIONS(1243), - [anon_sym_POUND] = ACTIONS(113), - }, - [524] = { - [sym_comment] = STATE(524), - [anon_sym_export] = ACTIONS(1414), - [anon_sym_alias] = ACTIONS(1414), - [anon_sym_let] = ACTIONS(1414), - [anon_sym_let_DASHenv] = ACTIONS(1414), - [anon_sym_mut] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_SEMI] = ACTIONS(1414), - [sym_cmd_identifier] = ACTIONS(1414), - [anon_sym_LF] = ACTIONS(1416), - [anon_sym_def] = ACTIONS(1414), - [anon_sym_export_DASHenv] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym_module] = ACTIONS(1414), - [anon_sym_use] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_RPAREN] = ACTIONS(1414), - [anon_sym_DOLLAR] = ACTIONS(1414), - [anon_sym_error] = ACTIONS(1414), - [anon_sym_GT] = ACTIONS(1414), - [anon_sym_DASH_DASH] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_in] = ACTIONS(1414), - [anon_sym_loop] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1414), - [anon_sym_RBRACE] = ACTIONS(1414), - [anon_sym_DOT_DOT] = ACTIONS(1414), - [anon_sym_try] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_source] = ACTIONS(1414), - [anon_sym_source_DASHenv] = ACTIONS(1414), - [anon_sym_register] = ACTIONS(1414), - [anon_sym_hide] = ACTIONS(1414), - [anon_sym_hide_DASHenv] = ACTIONS(1414), - [anon_sym_overlay] = ACTIONS(1414), - [anon_sym_as] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_where] = ACTIONS(1414), - [anon_sym_STAR_STAR] = ACTIONS(1414), - [anon_sym_PLUS_PLUS] = ACTIONS(1414), - [anon_sym_SLASH] = ACTIONS(1414), - [anon_sym_mod] = ACTIONS(1414), - [anon_sym_SLASH_SLASH] = ACTIONS(1414), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_bit_DASHshl] = ACTIONS(1414), - [anon_sym_bit_DASHshr] = ACTIONS(1414), - [anon_sym_EQ_EQ] = ACTIONS(1414), - [anon_sym_BANG_EQ] = ACTIONS(1414), - [anon_sym_LT2] = ACTIONS(1414), - [anon_sym_LT_EQ] = ACTIONS(1414), - [anon_sym_GT_EQ] = ACTIONS(1414), - [anon_sym_not_DASHin] = ACTIONS(1414), - [anon_sym_starts_DASHwith] = ACTIONS(1414), - [anon_sym_ends_DASHwith] = ACTIONS(1414), - [anon_sym_EQ_TILDE] = ACTIONS(1414), - [anon_sym_BANG_TILDE] = ACTIONS(1414), - [anon_sym_bit_DASHand] = ACTIONS(1414), - [anon_sym_bit_DASHxor] = ACTIONS(1414), - [anon_sym_bit_DASHor] = ACTIONS(1414), - [anon_sym_and] = ACTIONS(1414), - [anon_sym_xor] = ACTIONS(1414), - [anon_sym_or] = ACTIONS(1414), - [anon_sym_not] = ACTIONS(1414), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1414), - [anon_sym_DOT_DOT_LT] = ACTIONS(1414), - [anon_sym_null] = ACTIONS(1414), - [anon_sym_true] = ACTIONS(1414), - [anon_sym_false] = ACTIONS(1414), - [aux_sym__val_number_decimal_token1] = ACTIONS(1414), - [aux_sym__val_number_decimal_token2] = ACTIONS(1414), - [anon_sym_DOT2] = ACTIONS(1414), - [aux_sym__val_number_decimal_token3] = ACTIONS(1414), - [aux_sym__val_number_token1] = ACTIONS(1414), - [aux_sym__val_number_token2] = ACTIONS(1414), - [aux_sym__val_number_token3] = ACTIONS(1414), - [aux_sym__val_number_token4] = ACTIONS(1414), - [aux_sym__val_number_token5] = ACTIONS(1414), - [aux_sym__val_number_token6] = ACTIONS(1414), - [anon_sym_0b] = ACTIONS(1414), - [anon_sym_0o] = ACTIONS(1414), - [anon_sym_0x] = ACTIONS(1414), - [sym_val_date] = ACTIONS(1414), - [anon_sym_DQUOTE] = ACTIONS(1414), - [sym__str_single_quotes] = ACTIONS(1414), - [sym__str_back_ticks] = ACTIONS(1414), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1414), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1414), - [anon_sym_POUND] = ACTIONS(113), - }, - [525] = { - [sym_comment] = STATE(525), - [anon_sym_export] = ACTIONS(1418), - [anon_sym_alias] = ACTIONS(1418), - [anon_sym_let] = ACTIONS(1418), - [anon_sym_let_DASHenv] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(1418), - [sym_cmd_identifier] = ACTIONS(1418), - [anon_sym_LF] = ACTIONS(1420), - [anon_sym_def] = ACTIONS(1418), - [anon_sym_export_DASHenv] = ACTIONS(1418), - [anon_sym_extern] = ACTIONS(1418), - [anon_sym_module] = ACTIONS(1418), - [anon_sym_use] = ACTIONS(1418), - [anon_sym_LBRACK] = ACTIONS(1418), - [anon_sym_LPAREN] = ACTIONS(1418), - [anon_sym_RPAREN] = ACTIONS(1418), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_error] = ACTIONS(1418), - [anon_sym_GT] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_in] = ACTIONS(1418), - [anon_sym_loop] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_match] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_RBRACE] = ACTIONS(1418), - [anon_sym_DOT_DOT] = ACTIONS(1418), - [anon_sym_try] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_source] = ACTIONS(1418), - [anon_sym_source_DASHenv] = ACTIONS(1418), - [anon_sym_register] = ACTIONS(1418), - [anon_sym_hide] = ACTIONS(1418), - [anon_sym_hide_DASHenv] = ACTIONS(1418), - [anon_sym_overlay] = ACTIONS(1418), - [anon_sym_as] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_where] = ACTIONS(1418), - [anon_sym_STAR_STAR] = ACTIONS(1418), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_SLASH] = ACTIONS(1418), - [anon_sym_mod] = ACTIONS(1418), - [anon_sym_SLASH_SLASH] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_bit_DASHshl] = ACTIONS(1418), - [anon_sym_bit_DASHshr] = ACTIONS(1418), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_LT2] = ACTIONS(1418), - [anon_sym_LT_EQ] = ACTIONS(1418), - [anon_sym_GT_EQ] = ACTIONS(1418), - [anon_sym_not_DASHin] = ACTIONS(1418), - [anon_sym_starts_DASHwith] = ACTIONS(1418), - [anon_sym_ends_DASHwith] = ACTIONS(1418), - [anon_sym_EQ_TILDE] = ACTIONS(1418), - [anon_sym_BANG_TILDE] = ACTIONS(1418), - [anon_sym_bit_DASHand] = ACTIONS(1418), - [anon_sym_bit_DASHxor] = ACTIONS(1418), - [anon_sym_bit_DASHor] = ACTIONS(1418), - [anon_sym_and] = ACTIONS(1418), - [anon_sym_xor] = ACTIONS(1418), - [anon_sym_or] = ACTIONS(1418), - [anon_sym_not] = ACTIONS(1418), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1418), - [anon_sym_DOT_DOT_LT] = ACTIONS(1418), - [anon_sym_null] = ACTIONS(1418), - [anon_sym_true] = ACTIONS(1418), - [anon_sym_false] = ACTIONS(1418), - [aux_sym__val_number_decimal_token1] = ACTIONS(1418), - [aux_sym__val_number_decimal_token2] = ACTIONS(1418), - [anon_sym_DOT2] = ACTIONS(1418), - [aux_sym__val_number_decimal_token3] = ACTIONS(1418), - [aux_sym__val_number_token1] = ACTIONS(1418), - [aux_sym__val_number_token2] = ACTIONS(1418), - [aux_sym__val_number_token3] = ACTIONS(1418), - [aux_sym__val_number_token4] = ACTIONS(1418), - [aux_sym__val_number_token5] = ACTIONS(1418), - [aux_sym__val_number_token6] = ACTIONS(1418), - [anon_sym_0b] = ACTIONS(1418), - [anon_sym_0o] = ACTIONS(1418), - [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1418), - [anon_sym_DQUOTE] = ACTIONS(1418), - [sym__str_single_quotes] = ACTIONS(1418), - [sym__str_back_ticks] = ACTIONS(1418), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_POUND] = ACTIONS(113), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1012), + [anon_sym_DOLLAR] = ACTIONS(1012), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_list] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_make] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_else] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1012), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_catch] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_new] = ACTIONS(1010), + [anon_sym_as] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1012), + [anon_sym_PLUS_PLUS] = ACTIONS(1012), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1012), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1012), + [anon_sym_BANG_EQ] = ACTIONS(1012), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1012), + [anon_sym_GT_EQ] = ACTIONS(1012), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1012), + [anon_sym_BANG_TILDE] = ACTIONS(1012), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_DOT_DOT2] = ACTIONS(1010), + [anon_sym_DOT] = ACTIONS(1421), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), + [aux_sym__val_number_decimal_token1] = ACTIONS(1010), + [aux_sym__val_number_decimal_token2] = ACTIONS(1012), + [anon_sym_DOT2] = ACTIONS(1010), + [aux_sym__val_number_decimal_token3] = 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(1010), + [aux_sym__val_number_token5] = ACTIONS(1012), + [aux_sym__val_number_token6] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1012), + [sym__str_single_quotes] = ACTIONS(1012), + [sym__str_back_ticks] = ACTIONS(1012), + [aux_sym__record_key_token2] = ACTIONS(1010), + [anon_sym_POUND] = ACTIONS(3), }, - [526] = { - [sym_path] = STATE(665), - [sym_comment] = STATE(526), - [aux_sym_cell_path_repeat1] = STATE(527), - [ts_builtin_sym_end] = ACTIONS(989), - [anon_sym_export] = ACTIONS(987), - [anon_sym_alias] = ACTIONS(987), - [anon_sym_let] = ACTIONS(987), - [anon_sym_let_DASHenv] = ACTIONS(987), - [anon_sym_mut] = ACTIONS(987), - [anon_sym_const] = ACTIONS(987), - [anon_sym_SEMI] = ACTIONS(987), - [sym_cmd_identifier] = ACTIONS(987), - [anon_sym_LF] = ACTIONS(989), - [anon_sym_def] = ACTIONS(987), - [anon_sym_export_DASHenv] = ACTIONS(987), - [anon_sym_extern] = ACTIONS(987), - [anon_sym_module] = ACTIONS(987), - [anon_sym_use] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(987), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_DOLLAR] = ACTIONS(987), - [anon_sym_error] = ACTIONS(987), - [anon_sym_GT] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_break] = ACTIONS(987), - [anon_sym_continue] = ACTIONS(987), - [anon_sym_for] = ACTIONS(987), - [anon_sym_in] = ACTIONS(987), - [anon_sym_loop] = ACTIONS(987), - [anon_sym_while] = ACTIONS(987), - [anon_sym_do] = ACTIONS(987), - [anon_sym_if] = ACTIONS(987), - [anon_sym_match] = ACTIONS(987), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_DOT_DOT] = ACTIONS(987), - [anon_sym_try] = ACTIONS(987), - [anon_sym_return] = ACTIONS(987), - [anon_sym_source] = ACTIONS(987), - [anon_sym_source_DASHenv] = ACTIONS(987), - [anon_sym_register] = ACTIONS(987), - [anon_sym_hide] = ACTIONS(987), - [anon_sym_hide_DASHenv] = ACTIONS(987), - [anon_sym_overlay] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(987), - [anon_sym_where] = ACTIONS(987), - [anon_sym_STAR_STAR] = ACTIONS(987), - [anon_sym_PLUS_PLUS] = ACTIONS(987), - [anon_sym_SLASH] = ACTIONS(987), - [anon_sym_mod] = ACTIONS(987), - [anon_sym_SLASH_SLASH] = ACTIONS(987), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_bit_DASHshl] = ACTIONS(987), - [anon_sym_bit_DASHshr] = ACTIONS(987), - [anon_sym_EQ_EQ] = ACTIONS(987), - [anon_sym_BANG_EQ] = ACTIONS(987), - [anon_sym_LT2] = ACTIONS(987), - [anon_sym_LT_EQ] = ACTIONS(987), - [anon_sym_GT_EQ] = ACTIONS(987), - [anon_sym_not_DASHin] = ACTIONS(987), - [anon_sym_starts_DASHwith] = ACTIONS(987), - [anon_sym_ends_DASHwith] = ACTIONS(987), - [anon_sym_EQ_TILDE] = ACTIONS(987), - [anon_sym_BANG_TILDE] = ACTIONS(987), - [anon_sym_bit_DASHand] = ACTIONS(987), - [anon_sym_bit_DASHxor] = ACTIONS(987), - [anon_sym_bit_DASHor] = ACTIONS(987), - [anon_sym_and] = ACTIONS(987), - [anon_sym_xor] = ACTIONS(987), - [anon_sym_or] = ACTIONS(987), - [anon_sym_not] = ACTIONS(987), - [anon_sym_DOT] = ACTIONS(1306), - [anon_sym_DOT_DOT_EQ] = ACTIONS(987), - [anon_sym_DOT_DOT_LT] = ACTIONS(987), - [anon_sym_null] = ACTIONS(987), - [anon_sym_true] = ACTIONS(987), - [anon_sym_false] = ACTIONS(987), - [aux_sym__val_number_decimal_token1] = ACTIONS(987), - [aux_sym__val_number_decimal_token2] = ACTIONS(987), - [anon_sym_DOT2] = ACTIONS(987), - [aux_sym__val_number_decimal_token3] = ACTIONS(987), - [aux_sym__val_number_token1] = ACTIONS(987), - [aux_sym__val_number_token2] = ACTIONS(987), - [aux_sym__val_number_token3] = ACTIONS(987), - [aux_sym__val_number_token4] = ACTIONS(987), - [aux_sym__val_number_token5] = ACTIONS(987), - [aux_sym__val_number_token6] = ACTIONS(987), - [anon_sym_0b] = ACTIONS(987), - [anon_sym_0o] = ACTIONS(987), - [anon_sym_0x] = ACTIONS(987), - [sym_val_date] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(987), - [sym__str_single_quotes] = ACTIONS(987), - [sym__str_back_ticks] = ACTIONS(987), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(987), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), + [521] = { + [sym_comment] = STATE(521), + [anon_sym_export] = ACTIONS(893), + [anon_sym_alias] = ACTIONS(893), + [anon_sym_let] = ACTIONS(893), + [anon_sym_let_DASHenv] = ACTIONS(893), + [anon_sym_mut] = ACTIONS(893), + [anon_sym_const] = ACTIONS(893), + [sym_cmd_identifier] = ACTIONS(893), + [anon_sym_def] = ACTIONS(893), + [anon_sym_export_DASHenv] = ACTIONS(893), + [anon_sym_extern] = ACTIONS(893), + [anon_sym_module] = ACTIONS(893), + [anon_sym_use] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(893), + [anon_sym_DOLLAR] = ACTIONS(893), + [anon_sym_error] = ACTIONS(893), + [anon_sym_list] = ACTIONS(893), + [anon_sym_GT] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_break] = ACTIONS(893), + [anon_sym_continue] = ACTIONS(893), + [anon_sym_for] = ACTIONS(893), + [anon_sym_in] = ACTIONS(893), + [anon_sym_loop] = ACTIONS(893), + [anon_sym_make] = ACTIONS(893), + [anon_sym_while] = ACTIONS(893), + [anon_sym_do] = ACTIONS(893), + [anon_sym_if] = ACTIONS(893), + [anon_sym_else] = ACTIONS(893), + [anon_sym_match] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(893), + [anon_sym_try] = ACTIONS(893), + [anon_sym_catch] = ACTIONS(893), + [anon_sym_return] = ACTIONS(893), + [anon_sym_source] = ACTIONS(893), + [anon_sym_source_DASHenv] = ACTIONS(893), + [anon_sym_register] = ACTIONS(893), + [anon_sym_hide] = ACTIONS(893), + [anon_sym_hide_DASHenv] = ACTIONS(893), + [anon_sym_overlay] = ACTIONS(893), + [anon_sym_new] = ACTIONS(893), + [anon_sym_as] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(893), + [anon_sym_STAR_STAR] = ACTIONS(893), + [anon_sym_PLUS_PLUS] = ACTIONS(893), + [anon_sym_SLASH] = ACTIONS(893), + [anon_sym_mod] = ACTIONS(893), + [anon_sym_SLASH_SLASH] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_bit_DASHshl] = ACTIONS(893), + [anon_sym_bit_DASHshr] = ACTIONS(893), + [anon_sym_EQ_EQ] = ACTIONS(893), + [anon_sym_BANG_EQ] = ACTIONS(893), + [anon_sym_LT2] = ACTIONS(893), + [anon_sym_LT_EQ] = ACTIONS(893), + [anon_sym_GT_EQ] = ACTIONS(893), + [anon_sym_not_DASHin] = ACTIONS(893), + [anon_sym_starts_DASHwith] = ACTIONS(893), + [anon_sym_ends_DASHwith] = ACTIONS(893), + [anon_sym_EQ_TILDE] = ACTIONS(893), + [anon_sym_BANG_TILDE] = ACTIONS(893), + [anon_sym_bit_DASHand] = ACTIONS(893), + [anon_sym_bit_DASHxor] = ACTIONS(893), + [anon_sym_bit_DASHor] = ACTIONS(893), + [anon_sym_and] = ACTIONS(893), + [anon_sym_xor] = ACTIONS(893), + [anon_sym_or] = ACTIONS(893), + [anon_sym_DOT_DOT2] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), + [anon_sym_DOT_DOT_LT2] = ACTIONS(895), + [aux_sym__val_number_decimal_token1] = ACTIONS(893), + [aux_sym__val_number_decimal_token2] = ACTIONS(893), + [anon_sym_DOT2] = ACTIONS(893), + [aux_sym__val_number_decimal_token3] = ACTIONS(893), + [aux_sym__val_number_token1] = ACTIONS(893), + [aux_sym__val_number_token2] = ACTIONS(893), + [aux_sym__val_number_token3] = ACTIONS(893), + [aux_sym__val_number_token4] = ACTIONS(893), + [aux_sym__val_number_token5] = ACTIONS(893), + [aux_sym__val_number_token6] = ACTIONS(893), + [sym_filesize_unit] = ACTIONS(893), + [sym_duration_unit] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(893), + [sym__str_single_quotes] = ACTIONS(893), + [sym__str_back_ticks] = ACTIONS(893), + [sym__entry_separator] = ACTIONS(895), + [aux_sym__record_key_token2] = ACTIONS(893), [anon_sym_POUND] = ACTIONS(113), }, - [527] = { - [sym_path] = STATE(665), - [sym_comment] = STATE(527), - [aux_sym_cell_path_repeat1] = STATE(528), - [ts_builtin_sym_end] = ACTIONS(1008), + [522] = { + [sym_path] = STATE(545), + [sym_comment] = STATE(522), + [aux_sym_cell_path_repeat1] = STATE(523), [anon_sym_export] = ACTIONS(1006), [anon_sym_alias] = ACTIONS(1006), [anon_sym_let] = ACTIONS(1006), [anon_sym_let_DASHenv] = ACTIONS(1006), [anon_sym_mut] = ACTIONS(1006), [anon_sym_const] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1006), [sym_cmd_identifier] = ACTIONS(1006), - [anon_sym_LF] = ACTIONS(1008), [anon_sym_def] = ACTIONS(1006), [anon_sym_export_DASHenv] = ACTIONS(1006), [anon_sym_extern] = ACTIONS(1006), [anon_sym_module] = ACTIONS(1006), [anon_sym_use] = ACTIONS(1006), - [anon_sym_LBRACK] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_error] = ACTIONS(1006), + [anon_sym_list] = ACTIONS(1006), [anon_sym_GT] = ACTIONS(1006), [anon_sym_DASH] = ACTIONS(1006), [anon_sym_break] = ACTIONS(1006), @@ -152385,13 +148444,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1006), [anon_sym_in] = ACTIONS(1006), [anon_sym_loop] = ACTIONS(1006), + [anon_sym_make] = ACTIONS(1006), [anon_sym_while] = ACTIONS(1006), [anon_sym_do] = ACTIONS(1006), [anon_sym_if] = ACTIONS(1006), + [anon_sym_else] = ACTIONS(1006), [anon_sym_match] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(1008), [anon_sym_try] = ACTIONS(1006), + [anon_sym_catch] = ACTIONS(1006), [anon_sym_return] = ACTIONS(1006), [anon_sym_source] = ACTIONS(1006), [anon_sym_source_DASHenv] = ACTIONS(1006), @@ -152399,282 +148460,2122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(1006), [anon_sym_hide_DASHenv] = ACTIONS(1006), [anon_sym_overlay] = ACTIONS(1006), + [anon_sym_new] = ACTIONS(1006), + [anon_sym_as] = ACTIONS(1006), [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_where] = ACTIONS(1006), - [anon_sym_STAR_STAR] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_STAR_STAR] = ACTIONS(1008), + [anon_sym_PLUS_PLUS] = ACTIONS(1008), [anon_sym_SLASH] = ACTIONS(1006), [anon_sym_mod] = ACTIONS(1006), - [anon_sym_SLASH_SLASH] = ACTIONS(1006), + [anon_sym_SLASH_SLASH] = ACTIONS(1008), [anon_sym_PLUS] = ACTIONS(1006), [anon_sym_bit_DASHshl] = ACTIONS(1006), [anon_sym_bit_DASHshr] = ACTIONS(1006), - [anon_sym_EQ_EQ] = ACTIONS(1006), - [anon_sym_BANG_EQ] = ACTIONS(1006), + [anon_sym_EQ_EQ] = ACTIONS(1008), + [anon_sym_BANG_EQ] = ACTIONS(1008), [anon_sym_LT2] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1006), - [anon_sym_GT_EQ] = ACTIONS(1006), + [anon_sym_LT_EQ] = ACTIONS(1008), + [anon_sym_GT_EQ] = ACTIONS(1008), [anon_sym_not_DASHin] = ACTIONS(1006), [anon_sym_starts_DASHwith] = ACTIONS(1006), [anon_sym_ends_DASHwith] = ACTIONS(1006), - [anon_sym_EQ_TILDE] = ACTIONS(1006), - [anon_sym_BANG_TILDE] = ACTIONS(1006), + [anon_sym_EQ_TILDE] = ACTIONS(1008), + [anon_sym_BANG_TILDE] = ACTIONS(1008), [anon_sym_bit_DASHand] = ACTIONS(1006), [anon_sym_bit_DASHxor] = ACTIONS(1006), [anon_sym_bit_DASHor] = ACTIONS(1006), [anon_sym_and] = ACTIONS(1006), [anon_sym_xor] = ACTIONS(1006), [anon_sym_or] = ACTIONS(1006), - [anon_sym_not] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1306), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT] = ACTIONS(1006), - [anon_sym_null] = ACTIONS(1006), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), + [anon_sym_DOT_DOT2] = ACTIONS(1006), + [anon_sym_DOT] = ACTIONS(1421), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1006), + [aux_sym__val_number_decimal_token2] = ACTIONS(1008), [anon_sym_DOT2] = ACTIONS(1006), - [aux_sym__val_number_decimal_token3] = ACTIONS(1006), - [aux_sym__val_number_token1] = ACTIONS(1006), - [aux_sym__val_number_token2] = ACTIONS(1006), - [aux_sym__val_number_token3] = ACTIONS(1006), + [aux_sym__val_number_decimal_token3] = ACTIONS(1008), + [aux_sym__val_number_token1] = ACTIONS(1008), + [aux_sym__val_number_token2] = ACTIONS(1008), + [aux_sym__val_number_token3] = ACTIONS(1008), [aux_sym__val_number_token4] = ACTIONS(1006), - [aux_sym__val_number_token5] = ACTIONS(1006), + [aux_sym__val_number_token5] = ACTIONS(1008), [aux_sym__val_number_token6] = ACTIONS(1006), - [anon_sym_0b] = ACTIONS(1006), - [anon_sym_0o] = ACTIONS(1006), - [anon_sym_0x] = ACTIONS(1006), - [sym_val_date] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym__str_single_quotes] = ACTIONS(1006), - [sym__str_back_ticks] = ACTIONS(1006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1006), - [anon_sym_CARET] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1008), + [sym__str_single_quotes] = ACTIONS(1008), + [sym__str_back_ticks] = ACTIONS(1008), + [aux_sym__record_key_token2] = ACTIONS(1006), + [anon_sym_POUND] = ACTIONS(3), + }, + [523] = { + [sym_path] = STATE(545), + [sym_comment] = STATE(523), + [aux_sym_cell_path_repeat1] = STATE(523), + [anon_sym_export] = ACTIONS(985), + [anon_sym_alias] = ACTIONS(985), + [anon_sym_let] = ACTIONS(985), + [anon_sym_let_DASHenv] = ACTIONS(985), + [anon_sym_mut] = ACTIONS(985), + [anon_sym_const] = ACTIONS(985), + [sym_cmd_identifier] = ACTIONS(985), + [anon_sym_def] = ACTIONS(985), + [anon_sym_export_DASHenv] = ACTIONS(985), + [anon_sym_extern] = ACTIONS(985), + [anon_sym_module] = ACTIONS(985), + [anon_sym_use] = ACTIONS(985), + [anon_sym_LPAREN] = ACTIONS(987), + [anon_sym_DOLLAR] = ACTIONS(987), + [anon_sym_error] = ACTIONS(985), + [anon_sym_list] = ACTIONS(985), + [anon_sym_GT] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_break] = ACTIONS(985), + [anon_sym_continue] = ACTIONS(985), + [anon_sym_for] = ACTIONS(985), + [anon_sym_in] = ACTIONS(985), + [anon_sym_loop] = ACTIONS(985), + [anon_sym_make] = ACTIONS(985), + [anon_sym_while] = ACTIONS(985), + [anon_sym_do] = ACTIONS(985), + [anon_sym_if] = ACTIONS(985), + [anon_sym_else] = ACTIONS(985), + [anon_sym_match] = ACTIONS(985), + [anon_sym_RBRACE] = ACTIONS(987), + [anon_sym_try] = ACTIONS(985), + [anon_sym_catch] = ACTIONS(985), + [anon_sym_return] = ACTIONS(985), + [anon_sym_source] = ACTIONS(985), + [anon_sym_source_DASHenv] = ACTIONS(985), + [anon_sym_register] = ACTIONS(985), + [anon_sym_hide] = ACTIONS(985), + [anon_sym_hide_DASHenv] = ACTIONS(985), + [anon_sym_overlay] = ACTIONS(985), + [anon_sym_new] = ACTIONS(985), + [anon_sym_as] = ACTIONS(985), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_STAR_STAR] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(987), + [anon_sym_SLASH] = ACTIONS(985), + [anon_sym_mod] = ACTIONS(985), + [anon_sym_SLASH_SLASH] = ACTIONS(987), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_bit_DASHshl] = ACTIONS(985), + [anon_sym_bit_DASHshr] = ACTIONS(985), + [anon_sym_EQ_EQ] = ACTIONS(987), + [anon_sym_BANG_EQ] = ACTIONS(987), + [anon_sym_LT2] = ACTIONS(985), + [anon_sym_LT_EQ] = ACTIONS(987), + [anon_sym_GT_EQ] = ACTIONS(987), + [anon_sym_not_DASHin] = ACTIONS(985), + [anon_sym_starts_DASHwith] = ACTIONS(985), + [anon_sym_ends_DASHwith] = ACTIONS(985), + [anon_sym_EQ_TILDE] = ACTIONS(987), + [anon_sym_BANG_TILDE] = ACTIONS(987), + [anon_sym_bit_DASHand] = ACTIONS(985), + [anon_sym_bit_DASHxor] = ACTIONS(985), + [anon_sym_bit_DASHor] = ACTIONS(985), + [anon_sym_and] = ACTIONS(985), + [anon_sym_xor] = ACTIONS(985), + [anon_sym_or] = ACTIONS(985), + [anon_sym_DOT_DOT2] = ACTIONS(985), + [anon_sym_DOT] = ACTIONS(1423), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(987), + [anon_sym_DOT_DOT_LT2] = ACTIONS(987), + [aux_sym__val_number_decimal_token1] = ACTIONS(985), + [aux_sym__val_number_decimal_token2] = ACTIONS(987), + [anon_sym_DOT2] = ACTIONS(985), + [aux_sym__val_number_decimal_token3] = ACTIONS(987), + [aux_sym__val_number_token1] = ACTIONS(987), + [aux_sym__val_number_token2] = ACTIONS(987), + [aux_sym__val_number_token3] = ACTIONS(987), + [aux_sym__val_number_token4] = ACTIONS(985), + [aux_sym__val_number_token5] = ACTIONS(987), + [aux_sym__val_number_token6] = ACTIONS(985), + [anon_sym_DQUOTE] = ACTIONS(987), + [sym__str_single_quotes] = ACTIONS(987), + [sym__str_back_ticks] = ACTIONS(987), + [aux_sym__record_key_token2] = ACTIONS(985), + [anon_sym_POUND] = ACTIONS(3), + }, + [524] = { + [sym_cell_path] = STATE(572), + [sym_path] = STATE(520), + [sym_comment] = STATE(524), + [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), + [sym_cmd_identifier] = 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(1004), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_list] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = 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(1004), + [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_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_new] = ACTIONS(1002), + [anon_sym_as] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1004), + [anon_sym_PLUS_PLUS] = ACTIONS(1004), + [anon_sym_SLASH] = ACTIONS(1002), + [anon_sym_mod] = ACTIONS(1002), + [anon_sym_SLASH_SLASH] = ACTIONS(1004), + [anon_sym_PLUS] = ACTIONS(1002), + [anon_sym_bit_DASHshl] = ACTIONS(1002), + [anon_sym_bit_DASHshr] = ACTIONS(1002), + [anon_sym_EQ_EQ] = ACTIONS(1004), + [anon_sym_BANG_EQ] = ACTIONS(1004), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ] = ACTIONS(1004), + [anon_sym_GT_EQ] = ACTIONS(1004), + [anon_sym_not_DASHin] = ACTIONS(1002), + [anon_sym_starts_DASHwith] = ACTIONS(1002), + [anon_sym_ends_DASHwith] = ACTIONS(1002), + [anon_sym_EQ_TILDE] = ACTIONS(1004), + [anon_sym_BANG_TILDE] = ACTIONS(1004), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_DOT_DOT2] = ACTIONS(1002), + [anon_sym_DOT] = ACTIONS(1421), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1004), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1004), + [aux_sym__val_number_decimal_token1] = ACTIONS(1002), + [aux_sym__val_number_decimal_token2] = ACTIONS(1004), + [anon_sym_DOT2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = 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(1002), + [aux_sym__val_number_token5] = ACTIONS(1004), + [aux_sym__val_number_token6] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1004), + [sym__str_single_quotes] = ACTIONS(1004), + [sym__str_back_ticks] = ACTIONS(1004), + [aux_sym__record_key_token2] = ACTIONS(1002), + [anon_sym_POUND] = ACTIONS(3), + }, + [525] = { + [sym_comment] = STATE(525), + [anon_sym_export] = ACTIONS(911), + [anon_sym_alias] = ACTIONS(911), + [anon_sym_let] = ACTIONS(911), + [anon_sym_let_DASHenv] = ACTIONS(911), + [anon_sym_mut] = ACTIONS(911), + [anon_sym_const] = ACTIONS(911), + [sym_cmd_identifier] = ACTIONS(911), + [anon_sym_def] = ACTIONS(911), + [anon_sym_export_DASHenv] = ACTIONS(911), + [anon_sym_extern] = ACTIONS(911), + [anon_sym_module] = ACTIONS(911), + [anon_sym_use] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(913), + [anon_sym_DOLLAR] = ACTIONS(913), + [anon_sym_error] = ACTIONS(911), + [anon_sym_list] = ACTIONS(911), + [anon_sym_GT] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_break] = ACTIONS(911), + [anon_sym_continue] = ACTIONS(911), + [anon_sym_for] = ACTIONS(911), + [anon_sym_in] = ACTIONS(911), + [anon_sym_loop] = ACTIONS(911), + [anon_sym_make] = ACTIONS(911), + [anon_sym_while] = ACTIONS(911), + [anon_sym_do] = ACTIONS(911), + [anon_sym_if] = ACTIONS(911), + [anon_sym_else] = ACTIONS(911), + [anon_sym_match] = ACTIONS(911), + [anon_sym_RBRACE] = ACTIONS(913), + [anon_sym_try] = ACTIONS(911), + [anon_sym_catch] = ACTIONS(911), + [anon_sym_return] = ACTIONS(911), + [anon_sym_source] = ACTIONS(911), + [anon_sym_source_DASHenv] = ACTIONS(911), + [anon_sym_register] = ACTIONS(911), + [anon_sym_hide] = ACTIONS(911), + [anon_sym_hide_DASHenv] = ACTIONS(911), + [anon_sym_overlay] = ACTIONS(911), + [anon_sym_new] = ACTIONS(911), + [anon_sym_as] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(911), + [anon_sym_STAR_STAR] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_SLASH] = ACTIONS(911), + [anon_sym_mod] = ACTIONS(911), + [anon_sym_SLASH_SLASH] = ACTIONS(913), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_bit_DASHshl] = ACTIONS(911), + [anon_sym_bit_DASHshr] = ACTIONS(911), + [anon_sym_EQ_EQ] = ACTIONS(913), + [anon_sym_BANG_EQ] = ACTIONS(913), + [anon_sym_LT2] = ACTIONS(911), + [anon_sym_LT_EQ] = ACTIONS(913), + [anon_sym_GT_EQ] = ACTIONS(913), + [anon_sym_not_DASHin] = ACTIONS(911), + [anon_sym_starts_DASHwith] = ACTIONS(911), + [anon_sym_ends_DASHwith] = ACTIONS(911), + [anon_sym_EQ_TILDE] = ACTIONS(913), + [anon_sym_BANG_TILDE] = ACTIONS(913), + [anon_sym_bit_DASHand] = ACTIONS(911), + [anon_sym_bit_DASHxor] = ACTIONS(911), + [anon_sym_bit_DASHor] = ACTIONS(911), + [anon_sym_and] = ACTIONS(911), + [anon_sym_xor] = ACTIONS(911), + [anon_sym_or] = ACTIONS(911), + [anon_sym_DOT_DOT2] = ACTIONS(911), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(913), + [anon_sym_DOT_DOT_LT2] = ACTIONS(913), + [aux_sym__immediate_decimal_token2] = ACTIONS(1401), + [aux_sym__val_number_decimal_token1] = ACTIONS(911), + [aux_sym__val_number_decimal_token2] = ACTIONS(913), + [anon_sym_DOT2] = ACTIONS(911), + [aux_sym__val_number_decimal_token3] = ACTIONS(913), + [aux_sym__val_number_token1] = ACTIONS(913), + [aux_sym__val_number_token2] = ACTIONS(913), + [aux_sym__val_number_token3] = ACTIONS(913), + [aux_sym__val_number_token4] = ACTIONS(911), + [aux_sym__val_number_token5] = ACTIONS(913), + [aux_sym__val_number_token6] = ACTIONS(911), + [sym_filesize_unit] = ACTIONS(911), + [sym_duration_unit] = ACTIONS(911), + [anon_sym_DQUOTE] = ACTIONS(913), + [sym__str_single_quotes] = ACTIONS(913), + [sym__str_back_ticks] = ACTIONS(913), + [aux_sym__record_key_token2] = ACTIONS(911), + [anon_sym_POUND] = ACTIONS(3), + }, + [526] = { + [sym_comment] = STATE(526), + [anon_sym_export] = ACTIONS(1024), + [anon_sym_alias] = ACTIONS(1024), + [anon_sym_let] = ACTIONS(1024), + [anon_sym_let_DASHenv] = ACTIONS(1024), + [anon_sym_mut] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [sym_cmd_identifier] = ACTIONS(1024), + [anon_sym_def] = ACTIONS(1024), + [anon_sym_export_DASHenv] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1024), + [anon_sym_module] = ACTIONS(1024), + [anon_sym_use] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_error] = ACTIONS(1024), + [anon_sym_list] = ACTIONS(1024), + [anon_sym_GT] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_loop] = ACTIONS(1024), + [anon_sym_make] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_else] = ACTIONS(1024), + [anon_sym_match] = ACTIONS(1024), + [anon_sym_RBRACE] = ACTIONS(1024), + [anon_sym_try] = ACTIONS(1024), + [anon_sym_catch] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_source] = ACTIONS(1024), + [anon_sym_source_DASHenv] = ACTIONS(1024), + [anon_sym_register] = ACTIONS(1024), + [anon_sym_hide] = ACTIONS(1024), + [anon_sym_hide_DASHenv] = ACTIONS(1024), + [anon_sym_overlay] = ACTIONS(1024), + [anon_sym_new] = ACTIONS(1024), + [anon_sym_as] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(1411), + [anon_sym_STAR_STAR] = ACTIONS(1024), + [anon_sym_PLUS_PLUS] = ACTIONS(1024), + [anon_sym_SLASH] = ACTIONS(1024), + [anon_sym_mod] = ACTIONS(1024), + [anon_sym_SLASH_SLASH] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_bit_DASHshl] = ACTIONS(1024), + [anon_sym_bit_DASHshr] = ACTIONS(1024), + [anon_sym_EQ_EQ] = ACTIONS(1024), + [anon_sym_BANG_EQ] = ACTIONS(1024), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ] = ACTIONS(1024), + [anon_sym_GT_EQ] = ACTIONS(1024), + [anon_sym_not_DASHin] = ACTIONS(1024), + [anon_sym_starts_DASHwith] = ACTIONS(1024), + [anon_sym_ends_DASHwith] = ACTIONS(1024), + [anon_sym_EQ_TILDE] = ACTIONS(1024), + [anon_sym_BANG_TILDE] = ACTIONS(1024), + [anon_sym_bit_DASHand] = ACTIONS(1024), + [anon_sym_bit_DASHxor] = ACTIONS(1024), + [anon_sym_bit_DASHor] = ACTIONS(1024), + [anon_sym_and] = ACTIONS(1024), + [anon_sym_xor] = ACTIONS(1024), + [anon_sym_or] = ACTIONS(1024), + [anon_sym_DOT_DOT2] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1026), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1024), + [aux_sym__val_number_token1] = ACTIONS(1024), + [aux_sym__val_number_token2] = ACTIONS(1024), + [aux_sym__val_number_token3] = ACTIONS(1024), + [aux_sym__val_number_token4] = ACTIONS(1024), + [aux_sym__val_number_token5] = ACTIONS(1024), + [aux_sym__val_number_token6] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym__str_single_quotes] = ACTIONS(1024), + [sym__str_back_ticks] = ACTIONS(1024), + [sym__entry_separator] = ACTIONS(1026), + [aux_sym__record_key_token2] = ACTIONS(1024), [anon_sym_POUND] = ACTIONS(113), }, + [527] = { + [sym_comment] = STATE(527), + [anon_sym_export] = ACTIONS(893), + [anon_sym_alias] = ACTIONS(893), + [anon_sym_let] = ACTIONS(893), + [anon_sym_let_DASHenv] = ACTIONS(893), + [anon_sym_mut] = ACTIONS(893), + [anon_sym_const] = ACTIONS(893), + [sym_cmd_identifier] = ACTIONS(893), + [anon_sym_def] = ACTIONS(893), + [anon_sym_export_DASHenv] = ACTIONS(893), + [anon_sym_extern] = ACTIONS(893), + [anon_sym_module] = ACTIONS(893), + [anon_sym_use] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(895), + [anon_sym_DOLLAR] = ACTIONS(895), + [anon_sym_error] = ACTIONS(893), + [anon_sym_list] = ACTIONS(893), + [anon_sym_GT] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_break] = ACTIONS(893), + [anon_sym_continue] = ACTIONS(893), + [anon_sym_for] = ACTIONS(893), + [anon_sym_in] = ACTIONS(893), + [anon_sym_loop] = ACTIONS(893), + [anon_sym_make] = ACTIONS(893), + [anon_sym_while] = ACTIONS(893), + [anon_sym_do] = ACTIONS(893), + [anon_sym_if] = ACTIONS(893), + [anon_sym_else] = ACTIONS(893), + [anon_sym_match] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(895), + [anon_sym_try] = ACTIONS(893), + [anon_sym_catch] = ACTIONS(893), + [anon_sym_return] = ACTIONS(893), + [anon_sym_source] = ACTIONS(893), + [anon_sym_source_DASHenv] = ACTIONS(893), + [anon_sym_register] = ACTIONS(893), + [anon_sym_hide] = ACTIONS(893), + [anon_sym_hide_DASHenv] = ACTIONS(893), + [anon_sym_overlay] = ACTIONS(893), + [anon_sym_new] = ACTIONS(893), + [anon_sym_as] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(893), + [anon_sym_STAR_STAR] = ACTIONS(895), + [anon_sym_PLUS_PLUS] = ACTIONS(895), + [anon_sym_SLASH] = ACTIONS(893), + [anon_sym_mod] = ACTIONS(893), + [anon_sym_SLASH_SLASH] = ACTIONS(895), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_bit_DASHshl] = ACTIONS(893), + [anon_sym_bit_DASHshr] = ACTIONS(893), + [anon_sym_EQ_EQ] = ACTIONS(895), + [anon_sym_BANG_EQ] = ACTIONS(895), + [anon_sym_LT2] = ACTIONS(893), + [anon_sym_LT_EQ] = ACTIONS(895), + [anon_sym_GT_EQ] = ACTIONS(895), + [anon_sym_not_DASHin] = ACTIONS(893), + [anon_sym_starts_DASHwith] = ACTIONS(893), + [anon_sym_ends_DASHwith] = ACTIONS(893), + [anon_sym_EQ_TILDE] = ACTIONS(895), + [anon_sym_BANG_TILDE] = ACTIONS(895), + [anon_sym_bit_DASHand] = ACTIONS(893), + [anon_sym_bit_DASHxor] = ACTIONS(893), + [anon_sym_bit_DASHor] = ACTIONS(893), + [anon_sym_and] = ACTIONS(893), + [anon_sym_xor] = ACTIONS(893), + [anon_sym_or] = ACTIONS(893), + [anon_sym_DOT_DOT2] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), + [anon_sym_DOT_DOT_LT2] = ACTIONS(895), + [aux_sym__immediate_decimal_token2] = ACTIONS(1405), + [aux_sym__val_number_decimal_token1] = ACTIONS(893), + [aux_sym__val_number_decimal_token2] = ACTIONS(895), + [anon_sym_DOT2] = ACTIONS(893), + [aux_sym__val_number_decimal_token3] = ACTIONS(895), + [aux_sym__val_number_token1] = ACTIONS(895), + [aux_sym__val_number_token2] = ACTIONS(895), + [aux_sym__val_number_token3] = ACTIONS(895), + [aux_sym__val_number_token4] = ACTIONS(893), + [aux_sym__val_number_token5] = ACTIONS(895), + [aux_sym__val_number_token6] = ACTIONS(893), + [sym_filesize_unit] = ACTIONS(893), + [sym_duration_unit] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(895), + [sym__str_single_quotes] = ACTIONS(895), + [sym__str_back_ticks] = ACTIONS(895), + [aux_sym__record_key_token2] = ACTIONS(893), + [anon_sym_POUND] = ACTIONS(3), + }, [528] = { - [sym_path] = STATE(665), [sym_comment] = STATE(528), - [aux_sym_cell_path_repeat1] = STATE(528), - [ts_builtin_sym_end] = ACTIONS(1001), - [anon_sym_export] = ACTIONS(999), - [anon_sym_alias] = ACTIONS(999), - [anon_sym_let] = ACTIONS(999), - [anon_sym_let_DASHenv] = ACTIONS(999), - [anon_sym_mut] = ACTIONS(999), - [anon_sym_const] = ACTIONS(999), - [anon_sym_SEMI] = ACTIONS(999), - [sym_cmd_identifier] = ACTIONS(999), - [anon_sym_LF] = ACTIONS(1001), - [anon_sym_def] = ACTIONS(999), - [anon_sym_export_DASHenv] = ACTIONS(999), - [anon_sym_extern] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_use] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_error] = ACTIONS(999), - [anon_sym_GT] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_break] = ACTIONS(999), - [anon_sym_continue] = ACTIONS(999), - [anon_sym_for] = ACTIONS(999), - [anon_sym_in] = ACTIONS(999), - [anon_sym_loop] = ACTIONS(999), - [anon_sym_while] = ACTIONS(999), - [anon_sym_do] = ACTIONS(999), - [anon_sym_if] = ACTIONS(999), - [anon_sym_match] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(999), - [anon_sym_DOT_DOT] = ACTIONS(999), - [anon_sym_try] = ACTIONS(999), - [anon_sym_return] = ACTIONS(999), - [anon_sym_source] = ACTIONS(999), - [anon_sym_source_DASHenv] = ACTIONS(999), - [anon_sym_register] = ACTIONS(999), - [anon_sym_hide] = ACTIONS(999), - [anon_sym_hide_DASHenv] = ACTIONS(999), - [anon_sym_overlay] = ACTIONS(999), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_where] = ACTIONS(999), - [anon_sym_STAR_STAR] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(999), - [anon_sym_mod] = ACTIONS(999), - [anon_sym_SLASH_SLASH] = ACTIONS(999), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_bit_DASHshl] = ACTIONS(999), - [anon_sym_bit_DASHshr] = ACTIONS(999), - [anon_sym_EQ_EQ] = ACTIONS(999), - [anon_sym_BANG_EQ] = ACTIONS(999), - [anon_sym_LT2] = ACTIONS(999), - [anon_sym_LT_EQ] = ACTIONS(999), - [anon_sym_GT_EQ] = ACTIONS(999), - [anon_sym_not_DASHin] = ACTIONS(999), - [anon_sym_starts_DASHwith] = ACTIONS(999), - [anon_sym_ends_DASHwith] = ACTIONS(999), - [anon_sym_EQ_TILDE] = ACTIONS(999), - [anon_sym_BANG_TILDE] = ACTIONS(999), - [anon_sym_bit_DASHand] = ACTIONS(999), - [anon_sym_bit_DASHxor] = ACTIONS(999), - [anon_sym_bit_DASHor] = ACTIONS(999), - [anon_sym_and] = ACTIONS(999), - [anon_sym_xor] = ACTIONS(999), - [anon_sym_or] = ACTIONS(999), - [anon_sym_not] = ACTIONS(999), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_DOT_DOT_EQ] = ACTIONS(999), - [anon_sym_DOT_DOT_LT] = ACTIONS(999), - [anon_sym_null] = ACTIONS(999), - [anon_sym_true] = ACTIONS(999), - [anon_sym_false] = ACTIONS(999), - [aux_sym__val_number_decimal_token1] = ACTIONS(999), - [aux_sym__val_number_decimal_token2] = ACTIONS(999), - [anon_sym_DOT2] = ACTIONS(999), - [aux_sym__val_number_decimal_token3] = ACTIONS(999), - [aux_sym__val_number_token1] = ACTIONS(999), - [aux_sym__val_number_token2] = ACTIONS(999), - [aux_sym__val_number_token3] = ACTIONS(999), - [aux_sym__val_number_token4] = ACTIONS(999), - [aux_sym__val_number_token5] = ACTIONS(999), - [aux_sym__val_number_token6] = ACTIONS(999), - [anon_sym_0b] = ACTIONS(999), - [anon_sym_0o] = ACTIONS(999), - [anon_sym_0x] = ACTIONS(999), - [sym_val_date] = ACTIONS(999), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym__str_single_quotes] = ACTIONS(999), - [sym__str_back_ticks] = ACTIONS(999), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(999), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(999), - [anon_sym_CARET] = ACTIONS(999), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(901), + [anon_sym_alias] = ACTIONS(901), + [anon_sym_let] = ACTIONS(901), + [anon_sym_let_DASHenv] = ACTIONS(901), + [anon_sym_mut] = ACTIONS(901), + [anon_sym_const] = ACTIONS(901), + [sym_cmd_identifier] = ACTIONS(901), + [anon_sym_def] = ACTIONS(901), + [anon_sym_export_DASHenv] = ACTIONS(901), + [anon_sym_extern] = ACTIONS(901), + [anon_sym_module] = ACTIONS(901), + [anon_sym_use] = ACTIONS(901), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_DOLLAR] = ACTIONS(903), + [anon_sym_error] = ACTIONS(901), + [anon_sym_list] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_break] = ACTIONS(901), + [anon_sym_continue] = ACTIONS(901), + [anon_sym_for] = ACTIONS(901), + [anon_sym_in] = ACTIONS(901), + [anon_sym_loop] = ACTIONS(901), + [anon_sym_make] = ACTIONS(901), + [anon_sym_while] = ACTIONS(901), + [anon_sym_do] = ACTIONS(901), + [anon_sym_if] = ACTIONS(901), + [anon_sym_else] = ACTIONS(901), + [anon_sym_match] = ACTIONS(901), + [anon_sym_RBRACE] = ACTIONS(903), + [anon_sym_try] = ACTIONS(901), + [anon_sym_catch] = ACTIONS(901), + [anon_sym_return] = ACTIONS(901), + [anon_sym_source] = ACTIONS(901), + [anon_sym_source_DASHenv] = ACTIONS(901), + [anon_sym_register] = ACTIONS(901), + [anon_sym_hide] = ACTIONS(901), + [anon_sym_hide_DASHenv] = ACTIONS(901), + [anon_sym_overlay] = ACTIONS(901), + [anon_sym_new] = ACTIONS(901), + [anon_sym_as] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_STAR_STAR] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_mod] = ACTIONS(901), + [anon_sym_SLASH_SLASH] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_bit_DASHshl] = ACTIONS(901), + [anon_sym_bit_DASHshr] = ACTIONS(901), + [anon_sym_EQ_EQ] = ACTIONS(903), + [anon_sym_BANG_EQ] = ACTIONS(903), + [anon_sym_LT2] = ACTIONS(901), + [anon_sym_LT_EQ] = ACTIONS(903), + [anon_sym_GT_EQ] = ACTIONS(903), + [anon_sym_not_DASHin] = ACTIONS(901), + [anon_sym_starts_DASHwith] = ACTIONS(901), + [anon_sym_ends_DASHwith] = ACTIONS(901), + [anon_sym_EQ_TILDE] = ACTIONS(903), + [anon_sym_BANG_TILDE] = ACTIONS(903), + [anon_sym_bit_DASHand] = ACTIONS(901), + [anon_sym_bit_DASHxor] = ACTIONS(901), + [anon_sym_bit_DASHor] = ACTIONS(901), + [anon_sym_and] = ACTIONS(901), + [anon_sym_xor] = ACTIONS(901), + [anon_sym_or] = ACTIONS(901), + [anon_sym_DOT_DOT2] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(903), + [anon_sym_DOT_DOT_LT2] = ACTIONS(903), + [aux_sym__immediate_decimal_token2] = ACTIONS(1426), + [aux_sym__val_number_decimal_token1] = ACTIONS(901), + [aux_sym__val_number_decimal_token2] = ACTIONS(903), + [anon_sym_DOT2] = ACTIONS(901), + [aux_sym__val_number_decimal_token3] = ACTIONS(903), + [aux_sym__val_number_token1] = ACTIONS(903), + [aux_sym__val_number_token2] = ACTIONS(903), + [aux_sym__val_number_token3] = ACTIONS(903), + [aux_sym__val_number_token4] = ACTIONS(901), + [aux_sym__val_number_token5] = ACTIONS(903), + [aux_sym__val_number_token6] = ACTIONS(901), + [sym_filesize_unit] = ACTIONS(901), + [sym_duration_unit] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(903), + [sym__str_single_quotes] = ACTIONS(903), + [sym__str_back_ticks] = ACTIONS(903), + [aux_sym__record_key_token2] = ACTIONS(901), + [anon_sym_POUND] = ACTIONS(3), }, [529] = { + [sym_cell_path] = STATE(573), + [sym_path] = STATE(520), [sym_comment] = STATE(529), - [ts_builtin_sym_end] = ACTIONS(1261), - [anon_sym_export] = ACTIONS(1259), - [anon_sym_alias] = ACTIONS(1259), - [anon_sym_let] = ACTIONS(1259), - [anon_sym_let_DASHenv] = ACTIONS(1259), - [anon_sym_mut] = ACTIONS(1259), - [anon_sym_const] = ACTIONS(1259), - [anon_sym_SEMI] = ACTIONS(1259), - [sym_cmd_identifier] = ACTIONS(1259), - [anon_sym_LF] = ACTIONS(1261), - [anon_sym_def] = ACTIONS(1259), - [anon_sym_export_DASHenv] = ACTIONS(1259), - [anon_sym_extern] = ACTIONS(1259), - [anon_sym_module] = ACTIONS(1259), - [anon_sym_use] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_DOLLAR] = ACTIONS(1259), - [anon_sym_error] = ACTIONS(1259), - [anon_sym_GT] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_break] = ACTIONS(1259), - [anon_sym_continue] = ACTIONS(1259), - [anon_sym_for] = ACTIONS(1259), - [anon_sym_in] = ACTIONS(1259), - [anon_sym_loop] = ACTIONS(1259), - [anon_sym_while] = ACTIONS(1259), - [anon_sym_do] = ACTIONS(1259), - [anon_sym_if] = ACTIONS(1259), - [anon_sym_match] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1259), - [anon_sym_DOT_DOT] = ACTIONS(1259), - [anon_sym_try] = ACTIONS(1259), - [anon_sym_return] = ACTIONS(1259), - [anon_sym_source] = ACTIONS(1259), - [anon_sym_source_DASHenv] = ACTIONS(1259), - [anon_sym_register] = ACTIONS(1259), - [anon_sym_hide] = ACTIONS(1259), - [anon_sym_hide_DASHenv] = ACTIONS(1259), - [anon_sym_overlay] = ACTIONS(1259), - [anon_sym_as] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1259), - [anon_sym_where] = ACTIONS(1259), - [anon_sym_STAR_STAR] = ACTIONS(1259), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_SLASH] = ACTIONS(1259), - [anon_sym_mod] = ACTIONS(1259), - [anon_sym_SLASH_SLASH] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_bit_DASHshl] = ACTIONS(1259), - [anon_sym_bit_DASHshr] = ACTIONS(1259), - [anon_sym_EQ_EQ] = ACTIONS(1259), - [anon_sym_BANG_EQ] = ACTIONS(1259), - [anon_sym_LT2] = ACTIONS(1259), - [anon_sym_LT_EQ] = ACTIONS(1259), - [anon_sym_GT_EQ] = ACTIONS(1259), - [anon_sym_not_DASHin] = ACTIONS(1259), - [anon_sym_starts_DASHwith] = ACTIONS(1259), - [anon_sym_ends_DASHwith] = ACTIONS(1259), - [anon_sym_EQ_TILDE] = ACTIONS(1259), - [anon_sym_BANG_TILDE] = ACTIONS(1259), - [anon_sym_bit_DASHand] = ACTIONS(1259), - [anon_sym_bit_DASHxor] = ACTIONS(1259), - [anon_sym_bit_DASHor] = ACTIONS(1259), - [anon_sym_and] = ACTIONS(1259), - [anon_sym_xor] = ACTIONS(1259), - [anon_sym_or] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1259), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1259), - [anon_sym_DOT_DOT_LT] = ACTIONS(1259), - [anon_sym_null] = ACTIONS(1259), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [aux_sym__val_number_decimal_token1] = ACTIONS(1259), - [aux_sym__val_number_decimal_token2] = ACTIONS(1259), - [anon_sym_DOT2] = ACTIONS(1259), - [aux_sym__val_number_decimal_token3] = ACTIONS(1259), - [aux_sym__val_number_token1] = ACTIONS(1259), - [aux_sym__val_number_token2] = ACTIONS(1259), - [aux_sym__val_number_token3] = ACTIONS(1259), - [aux_sym__val_number_token4] = ACTIONS(1259), - [aux_sym__val_number_token5] = ACTIONS(1259), - [aux_sym__val_number_token6] = ACTIONS(1259), - [anon_sym_0b] = ACTIONS(1259), - [anon_sym_0o] = ACTIONS(1259), - [anon_sym_0x] = ACTIONS(1259), - [anon_sym_LBRACK2] = ACTIONS(1425), - [sym_val_date] = ACTIONS(1259), - [anon_sym_DQUOTE] = ACTIONS(1259), - [sym__str_single_quotes] = ACTIONS(1259), - [sym__str_back_ticks] = ACTIONS(1259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1259), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1259), - [anon_sym_CARET] = ACTIONS(1259), - [anon_sym_POUND] = ACTIONS(113), + [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), + [sym_cmd_identifier] = 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(994), + [anon_sym_DOLLAR] = ACTIONS(994), + [anon_sym_error] = ACTIONS(992), + [anon_sym_list] = ACTIONS(992), + [anon_sym_GT] = ACTIONS(992), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_break] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_in] = 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_new] = ACTIONS(992), + [anon_sym_as] = ACTIONS(992), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_STAR_STAR] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_SLASH] = ACTIONS(992), + [anon_sym_mod] = ACTIONS(992), + [anon_sym_SLASH_SLASH] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_bit_DASHshl] = ACTIONS(992), + [anon_sym_bit_DASHshr] = ACTIONS(992), + [anon_sym_EQ_EQ] = ACTIONS(994), + [anon_sym_BANG_EQ] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(992), + [anon_sym_LT_EQ] = ACTIONS(994), + [anon_sym_GT_EQ] = ACTIONS(994), + [anon_sym_not_DASHin] = ACTIONS(992), + [anon_sym_starts_DASHwith] = ACTIONS(992), + [anon_sym_ends_DASHwith] = ACTIONS(992), + [anon_sym_EQ_TILDE] = ACTIONS(994), + [anon_sym_BANG_TILDE] = ACTIONS(994), + [anon_sym_bit_DASHand] = ACTIONS(992), + [anon_sym_bit_DASHxor] = ACTIONS(992), + [anon_sym_bit_DASHor] = ACTIONS(992), + [anon_sym_and] = ACTIONS(992), + [anon_sym_xor] = ACTIONS(992), + [anon_sym_or] = ACTIONS(992), + [anon_sym_DOT_DOT2] = ACTIONS(992), + [anon_sym_DOT] = ACTIONS(1421), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(994), + [anon_sym_DOT_DOT_LT2] = ACTIONS(994), + [aux_sym__val_number_decimal_token1] = ACTIONS(992), + [aux_sym__val_number_decimal_token2] = ACTIONS(994), + [anon_sym_DOT2] = ACTIONS(992), + [aux_sym__val_number_decimal_token3] = 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(994), + [aux_sym__val_number_token6] = ACTIONS(992), + [anon_sym_DQUOTE] = ACTIONS(994), + [sym__str_single_quotes] = ACTIONS(994), + [sym__str_back_ticks] = ACTIONS(994), + [aux_sym__record_key_token2] = ACTIONS(992), + [anon_sym_POUND] = ACTIONS(3), }, [530] = { - [sym_cell_path] = STATE(729), - [sym_path] = STATE(526), [sym_comment] = STATE(530), - [ts_builtin_sym_end] = ACTIONS(1012), + [anon_sym_export] = ACTIONS(1033), + [anon_sym_alias] = ACTIONS(1033), + [anon_sym_let] = ACTIONS(1033), + [anon_sym_let_DASHenv] = ACTIONS(1033), + [anon_sym_mut] = ACTIONS(1033), + [anon_sym_const] = ACTIONS(1033), + [sym_cmd_identifier] = ACTIONS(1033), + [anon_sym_def] = ACTIONS(1033), + [anon_sym_export_DASHenv] = ACTIONS(1033), + [anon_sym_extern] = ACTIONS(1033), + [anon_sym_module] = ACTIONS(1033), + [anon_sym_use] = ACTIONS(1033), + [anon_sym_LPAREN] = ACTIONS(1035), + [anon_sym_DOLLAR] = ACTIONS(1035), + [anon_sym_error] = ACTIONS(1033), + [anon_sym_list] = ACTIONS(1033), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1033), + [anon_sym_break] = ACTIONS(1033), + [anon_sym_continue] = ACTIONS(1033), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_in] = ACTIONS(1033), + [anon_sym_loop] = ACTIONS(1033), + [anon_sym_make] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(1033), + [anon_sym_do] = ACTIONS(1033), + [anon_sym_if] = ACTIONS(1033), + [anon_sym_else] = ACTIONS(1033), + [anon_sym_match] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1035), + [anon_sym_try] = ACTIONS(1033), + [anon_sym_catch] = ACTIONS(1033), + [anon_sym_return] = ACTIONS(1033), + [anon_sym_source] = ACTIONS(1033), + [anon_sym_source_DASHenv] = ACTIONS(1033), + [anon_sym_register] = ACTIONS(1033), + [anon_sym_hide] = ACTIONS(1033), + [anon_sym_hide_DASHenv] = ACTIONS(1033), + [anon_sym_overlay] = ACTIONS(1033), + [anon_sym_new] = ACTIONS(1033), + [anon_sym_as] = ACTIONS(1033), + [anon_sym_STAR] = ACTIONS(1033), + [anon_sym_QMARK2] = ACTIONS(1035), + [anon_sym_STAR_STAR] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1035), + [anon_sym_SLASH] = ACTIONS(1033), + [anon_sym_mod] = ACTIONS(1033), + [anon_sym_SLASH_SLASH] = ACTIONS(1035), + [anon_sym_PLUS] = ACTIONS(1033), + [anon_sym_bit_DASHshl] = ACTIONS(1033), + [anon_sym_bit_DASHshr] = ACTIONS(1033), + [anon_sym_EQ_EQ] = ACTIONS(1035), + [anon_sym_BANG_EQ] = ACTIONS(1035), + [anon_sym_LT2] = ACTIONS(1033), + [anon_sym_LT_EQ] = ACTIONS(1035), + [anon_sym_GT_EQ] = ACTIONS(1035), + [anon_sym_not_DASHin] = ACTIONS(1033), + [anon_sym_starts_DASHwith] = ACTIONS(1033), + [anon_sym_ends_DASHwith] = ACTIONS(1033), + [anon_sym_EQ_TILDE] = ACTIONS(1035), + [anon_sym_BANG_TILDE] = ACTIONS(1035), + [anon_sym_bit_DASHand] = ACTIONS(1033), + [anon_sym_bit_DASHxor] = ACTIONS(1033), + [anon_sym_bit_DASHor] = ACTIONS(1033), + [anon_sym_and] = ACTIONS(1033), + [anon_sym_xor] = ACTIONS(1033), + [anon_sym_or] = ACTIONS(1033), + [anon_sym_DOT_DOT2] = ACTIONS(1033), + [anon_sym_DOT] = ACTIONS(1033), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1035), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1035), + [aux_sym__val_number_decimal_token1] = ACTIONS(1033), + [aux_sym__val_number_decimal_token2] = ACTIONS(1035), + [anon_sym_DOT2] = ACTIONS(1033), + [aux_sym__val_number_decimal_token3] = ACTIONS(1035), + [aux_sym__val_number_token1] = ACTIONS(1035), + [aux_sym__val_number_token2] = ACTIONS(1035), + [aux_sym__val_number_token3] = ACTIONS(1035), + [aux_sym__val_number_token4] = ACTIONS(1033), + [aux_sym__val_number_token5] = ACTIONS(1035), + [aux_sym__val_number_token6] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1035), + [sym__str_single_quotes] = ACTIONS(1035), + [sym__str_back_ticks] = ACTIONS(1035), + [aux_sym__record_key_token2] = ACTIONS(1033), + [anon_sym_POUND] = ACTIONS(3), + }, + [531] = { + [sym_comment] = STATE(531), + [anon_sym_export] = ACTIONS(934), + [anon_sym_alias] = ACTIONS(934), + [anon_sym_let] = ACTIONS(934), + [anon_sym_let_DASHenv] = ACTIONS(934), + [anon_sym_mut] = ACTIONS(934), + [anon_sym_const] = ACTIONS(934), + [sym_cmd_identifier] = ACTIONS(934), + [anon_sym_def] = ACTIONS(934), + [anon_sym_export_DASHenv] = ACTIONS(934), + [anon_sym_extern] = ACTIONS(934), + [anon_sym_module] = ACTIONS(934), + [anon_sym_use] = ACTIONS(934), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_DOLLAR] = ACTIONS(936), + [anon_sym_error] = ACTIONS(934), + [anon_sym_list] = ACTIONS(934), + [anon_sym_GT] = ACTIONS(934), + [anon_sym_DASH] = ACTIONS(934), + [anon_sym_break] = ACTIONS(934), + [anon_sym_continue] = ACTIONS(934), + [anon_sym_for] = ACTIONS(934), + [anon_sym_in] = ACTIONS(934), + [anon_sym_loop] = ACTIONS(934), + [anon_sym_make] = ACTIONS(934), + [anon_sym_while] = ACTIONS(934), + [anon_sym_do] = ACTIONS(934), + [anon_sym_if] = ACTIONS(934), + [anon_sym_else] = ACTIONS(934), + [anon_sym_match] = ACTIONS(934), + [anon_sym_RBRACE] = ACTIONS(936), + [anon_sym_try] = ACTIONS(934), + [anon_sym_catch] = ACTIONS(934), + [anon_sym_return] = ACTIONS(934), + [anon_sym_source] = ACTIONS(934), + [anon_sym_source_DASHenv] = ACTIONS(934), + [anon_sym_register] = ACTIONS(934), + [anon_sym_hide] = ACTIONS(934), + [anon_sym_hide_DASHenv] = ACTIONS(934), + [anon_sym_overlay] = ACTIONS(934), + [anon_sym_new] = ACTIONS(934), + [anon_sym_as] = ACTIONS(934), + [anon_sym_STAR] = ACTIONS(934), + [anon_sym_STAR_STAR] = ACTIONS(936), + [anon_sym_PLUS_PLUS] = ACTIONS(936), + [anon_sym_SLASH] = ACTIONS(934), + [anon_sym_mod] = ACTIONS(934), + [anon_sym_SLASH_SLASH] = ACTIONS(936), + [anon_sym_PLUS] = ACTIONS(934), + [anon_sym_bit_DASHshl] = ACTIONS(934), + [anon_sym_bit_DASHshr] = ACTIONS(934), + [anon_sym_EQ_EQ] = ACTIONS(936), + [anon_sym_BANG_EQ] = ACTIONS(936), + [anon_sym_LT2] = ACTIONS(934), + [anon_sym_LT_EQ] = ACTIONS(936), + [anon_sym_GT_EQ] = ACTIONS(936), + [anon_sym_not_DASHin] = ACTIONS(934), + [anon_sym_starts_DASHwith] = ACTIONS(934), + [anon_sym_ends_DASHwith] = ACTIONS(934), + [anon_sym_EQ_TILDE] = ACTIONS(936), + [anon_sym_BANG_TILDE] = ACTIONS(936), + [anon_sym_bit_DASHand] = ACTIONS(934), + [anon_sym_bit_DASHxor] = ACTIONS(934), + [anon_sym_bit_DASHor] = ACTIONS(934), + [anon_sym_and] = ACTIONS(934), + [anon_sym_xor] = ACTIONS(934), + [anon_sym_or] = ACTIONS(934), + [anon_sym_DOT_DOT2] = ACTIONS(934), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(936), + [anon_sym_DOT_DOT_LT2] = ACTIONS(936), + [aux_sym__val_number_decimal_token1] = ACTIONS(934), + [aux_sym__val_number_decimal_token2] = ACTIONS(936), + [anon_sym_DOT2] = ACTIONS(934), + [aux_sym__val_number_decimal_token3] = ACTIONS(936), + [aux_sym__val_number_token1] = ACTIONS(936), + [aux_sym__val_number_token2] = ACTIONS(936), + [aux_sym__val_number_token3] = ACTIONS(936), + [aux_sym__val_number_token4] = ACTIONS(934), + [aux_sym__val_number_token5] = ACTIONS(936), + [aux_sym__val_number_token6] = ACTIONS(934), + [sym_filesize_unit] = ACTIONS(934), + [sym_duration_unit] = ACTIONS(934), + [anon_sym_DQUOTE] = ACTIONS(936), + [sym__str_single_quotes] = ACTIONS(936), + [sym__str_back_ticks] = ACTIONS(936), + [aux_sym__record_key_token2] = ACTIONS(934), + [anon_sym_POUND] = ACTIONS(3), + }, + [532] = { + [sym_comment] = STATE(532), + [anon_sym_export] = ACTIONS(1020), + [anon_sym_alias] = ACTIONS(1020), + [anon_sym_let] = ACTIONS(1020), + [anon_sym_let_DASHenv] = ACTIONS(1020), + [anon_sym_mut] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(1020), + [sym_cmd_identifier] = ACTIONS(1020), + [anon_sym_def] = ACTIONS(1020), + [anon_sym_export_DASHenv] = ACTIONS(1020), + [anon_sym_extern] = ACTIONS(1020), + [anon_sym_module] = ACTIONS(1020), + [anon_sym_use] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_error] = ACTIONS(1020), + [anon_sym_list] = ACTIONS(1020), + [anon_sym_GT] = ACTIONS(1020), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_in] = ACTIONS(1020), + [anon_sym_loop] = ACTIONS(1020), + [anon_sym_make] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_else] = ACTIONS(1020), + [anon_sym_match] = ACTIONS(1020), + [anon_sym_RBRACE] = ACTIONS(1022), + [anon_sym_try] = ACTIONS(1020), + [anon_sym_catch] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_source] = ACTIONS(1020), + [anon_sym_source_DASHenv] = ACTIONS(1020), + [anon_sym_register] = ACTIONS(1020), + [anon_sym_hide] = ACTIONS(1020), + [anon_sym_hide_DASHenv] = ACTIONS(1020), + [anon_sym_overlay] = ACTIONS(1020), + [anon_sym_new] = ACTIONS(1020), + [anon_sym_as] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_QMARK2] = ACTIONS(1022), + [anon_sym_STAR_STAR] = ACTIONS(1022), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_SLASH] = ACTIONS(1020), + [anon_sym_mod] = ACTIONS(1020), + [anon_sym_SLASH_SLASH] = ACTIONS(1022), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_bit_DASHshl] = ACTIONS(1020), + [anon_sym_bit_DASHshr] = ACTIONS(1020), + [anon_sym_EQ_EQ] = ACTIONS(1022), + [anon_sym_BANG_EQ] = ACTIONS(1022), + [anon_sym_LT2] = ACTIONS(1020), + [anon_sym_LT_EQ] = ACTIONS(1022), + [anon_sym_GT_EQ] = ACTIONS(1022), + [anon_sym_not_DASHin] = ACTIONS(1020), + [anon_sym_starts_DASHwith] = ACTIONS(1020), + [anon_sym_ends_DASHwith] = ACTIONS(1020), + [anon_sym_EQ_TILDE] = ACTIONS(1022), + [anon_sym_BANG_TILDE] = ACTIONS(1022), + [anon_sym_bit_DASHand] = ACTIONS(1020), + [anon_sym_bit_DASHxor] = ACTIONS(1020), + [anon_sym_bit_DASHor] = ACTIONS(1020), + [anon_sym_and] = ACTIONS(1020), + [anon_sym_xor] = ACTIONS(1020), + [anon_sym_or] = ACTIONS(1020), + [anon_sym_DOT_DOT2] = ACTIONS(1020), + [anon_sym_DOT] = ACTIONS(1020), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1022), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1022), + [aux_sym__val_number_decimal_token1] = ACTIONS(1020), + [aux_sym__val_number_decimal_token2] = ACTIONS(1022), + [anon_sym_DOT2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1022), + [aux_sym__val_number_token1] = ACTIONS(1022), + [aux_sym__val_number_token2] = ACTIONS(1022), + [aux_sym__val_number_token3] = ACTIONS(1022), + [aux_sym__val_number_token4] = ACTIONS(1020), + [aux_sym__val_number_token5] = ACTIONS(1022), + [aux_sym__val_number_token6] = ACTIONS(1020), + [anon_sym_DQUOTE] = ACTIONS(1022), + [sym__str_single_quotes] = ACTIONS(1022), + [sym__str_back_ticks] = ACTIONS(1022), + [aux_sym__record_key_token2] = ACTIONS(1020), + [anon_sym_POUND] = ACTIONS(3), + }, + [533] = { + [sym_comment] = STATE(533), + [anon_sym_export] = ACTIONS(1024), + [anon_sym_alias] = ACTIONS(1024), + [anon_sym_let] = ACTIONS(1024), + [anon_sym_let_DASHenv] = ACTIONS(1024), + [anon_sym_mut] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [sym_cmd_identifier] = ACTIONS(1024), + [anon_sym_def] = ACTIONS(1024), + [anon_sym_export_DASHenv] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1024), + [anon_sym_module] = ACTIONS(1024), + [anon_sym_use] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1026), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_error] = ACTIONS(1024), + [anon_sym_list] = ACTIONS(1024), + [anon_sym_GT] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_loop] = ACTIONS(1024), + [anon_sym_make] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_else] = ACTIONS(1024), + [anon_sym_match] = ACTIONS(1024), + [anon_sym_RBRACE] = ACTIONS(1026), + [anon_sym_try] = ACTIONS(1024), + [anon_sym_catch] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_source] = ACTIONS(1024), + [anon_sym_source_DASHenv] = ACTIONS(1024), + [anon_sym_register] = ACTIONS(1024), + [anon_sym_hide] = ACTIONS(1024), + [anon_sym_hide_DASHenv] = ACTIONS(1024), + [anon_sym_overlay] = ACTIONS(1024), + [anon_sym_new] = ACTIONS(1024), + [anon_sym_as] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(1428), + [anon_sym_STAR_STAR] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [anon_sym_SLASH] = ACTIONS(1024), + [anon_sym_mod] = ACTIONS(1024), + [anon_sym_SLASH_SLASH] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_bit_DASHshl] = ACTIONS(1024), + [anon_sym_bit_DASHshr] = ACTIONS(1024), + [anon_sym_EQ_EQ] = ACTIONS(1026), + [anon_sym_BANG_EQ] = ACTIONS(1026), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ] = ACTIONS(1026), + [anon_sym_GT_EQ] = ACTIONS(1026), + [anon_sym_not_DASHin] = ACTIONS(1024), + [anon_sym_starts_DASHwith] = ACTIONS(1024), + [anon_sym_ends_DASHwith] = ACTIONS(1024), + [anon_sym_EQ_TILDE] = ACTIONS(1026), + [anon_sym_BANG_TILDE] = ACTIONS(1026), + [anon_sym_bit_DASHand] = ACTIONS(1024), + [anon_sym_bit_DASHxor] = ACTIONS(1024), + [anon_sym_bit_DASHor] = ACTIONS(1024), + [anon_sym_and] = ACTIONS(1024), + [anon_sym_xor] = ACTIONS(1024), + [anon_sym_or] = ACTIONS(1024), + [anon_sym_DOT_DOT2] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1026), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1026), + [aux_sym__val_number_token1] = ACTIONS(1026), + [aux_sym__val_number_token2] = ACTIONS(1026), + [aux_sym__val_number_token3] = ACTIONS(1026), + [aux_sym__val_number_token4] = ACTIONS(1024), + [aux_sym__val_number_token5] = ACTIONS(1026), + [aux_sym__val_number_token6] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1026), + [sym__str_single_quotes] = ACTIONS(1026), + [sym__str_back_ticks] = ACTIONS(1026), + [aux_sym__record_key_token2] = ACTIONS(1024), + [anon_sym_POUND] = ACTIONS(3), + }, + [534] = { + [sym_comment] = STATE(534), + [anon_sym_export] = ACTIONS(1047), + [anon_sym_alias] = ACTIONS(1047), + [anon_sym_let] = ACTIONS(1047), + [anon_sym_let_DASHenv] = ACTIONS(1047), + [anon_sym_mut] = ACTIONS(1047), + [anon_sym_const] = ACTIONS(1047), + [sym_cmd_identifier] = ACTIONS(1047), + [anon_sym_def] = ACTIONS(1047), + [anon_sym_export_DASHenv] = ACTIONS(1047), + [anon_sym_extern] = ACTIONS(1047), + [anon_sym_module] = ACTIONS(1047), + [anon_sym_use] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1047), + [anon_sym_error] = ACTIONS(1047), + [anon_sym_list] = ACTIONS(1047), + [anon_sym_GT] = ACTIONS(1047), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_break] = ACTIONS(1047), + [anon_sym_continue] = ACTIONS(1047), + [anon_sym_for] = ACTIONS(1047), + [anon_sym_in] = ACTIONS(1047), + [anon_sym_loop] = ACTIONS(1047), + [anon_sym_make] = ACTIONS(1047), + [anon_sym_while] = ACTIONS(1047), + [anon_sym_do] = ACTIONS(1047), + [anon_sym_if] = ACTIONS(1047), + [anon_sym_else] = ACTIONS(1047), + [anon_sym_match] = ACTIONS(1047), + [anon_sym_RBRACE] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1047), + [anon_sym_catch] = ACTIONS(1047), + [anon_sym_return] = ACTIONS(1047), + [anon_sym_source] = ACTIONS(1047), + [anon_sym_source_DASHenv] = ACTIONS(1047), + [anon_sym_register] = ACTIONS(1047), + [anon_sym_hide] = ACTIONS(1047), + [anon_sym_hide_DASHenv] = ACTIONS(1047), + [anon_sym_overlay] = ACTIONS(1047), + [anon_sym_new] = ACTIONS(1047), + [anon_sym_as] = ACTIONS(1047), + [anon_sym_STAR] = ACTIONS(1047), + [anon_sym_STAR_STAR] = ACTIONS(1047), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_SLASH] = ACTIONS(1047), + [anon_sym_mod] = ACTIONS(1047), + [anon_sym_SLASH_SLASH] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1047), + [anon_sym_bit_DASHshl] = ACTIONS(1047), + [anon_sym_bit_DASHshr] = ACTIONS(1047), + [anon_sym_EQ_EQ] = ACTIONS(1047), + [anon_sym_BANG_EQ] = ACTIONS(1047), + [anon_sym_LT2] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1047), + [anon_sym_GT_EQ] = ACTIONS(1047), + [anon_sym_not_DASHin] = ACTIONS(1047), + [anon_sym_starts_DASHwith] = ACTIONS(1047), + [anon_sym_ends_DASHwith] = ACTIONS(1047), + [anon_sym_EQ_TILDE] = ACTIONS(1047), + [anon_sym_BANG_TILDE] = ACTIONS(1047), + [anon_sym_bit_DASHand] = ACTIONS(1047), + [anon_sym_bit_DASHxor] = ACTIONS(1047), + [anon_sym_bit_DASHor] = ACTIONS(1047), + [anon_sym_and] = ACTIONS(1047), + [anon_sym_xor] = ACTIONS(1047), + [anon_sym_or] = ACTIONS(1047), + [anon_sym_DOT_DOT2] = ACTIONS(1047), + [anon_sym_DOT] = ACTIONS(1047), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1049), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1049), + [aux_sym__val_number_decimal_token1] = ACTIONS(1047), + [aux_sym__val_number_decimal_token2] = ACTIONS(1047), + [anon_sym_DOT2] = ACTIONS(1047), + [aux_sym__val_number_decimal_token3] = ACTIONS(1047), + [aux_sym__val_number_token1] = ACTIONS(1047), + [aux_sym__val_number_token2] = ACTIONS(1047), + [aux_sym__val_number_token3] = ACTIONS(1047), + [aux_sym__val_number_token4] = ACTIONS(1047), + [aux_sym__val_number_token5] = ACTIONS(1047), + [aux_sym__val_number_token6] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1047), + [sym__str_single_quotes] = ACTIONS(1047), + [sym__str_back_ticks] = ACTIONS(1047), + [sym__entry_separator] = ACTIONS(1049), + [aux_sym__record_key_token2] = ACTIONS(1047), + [anon_sym_POUND] = ACTIONS(113), + }, + [535] = { + [sym_comment] = STATE(535), + [anon_sym_export] = ACTIONS(1037), + [anon_sym_alias] = ACTIONS(1037), + [anon_sym_let] = ACTIONS(1037), + [anon_sym_let_DASHenv] = ACTIONS(1037), + [anon_sym_mut] = ACTIONS(1037), + [anon_sym_const] = ACTIONS(1037), + [sym_cmd_identifier] = ACTIONS(1037), + [anon_sym_def] = ACTIONS(1037), + [anon_sym_export_DASHenv] = ACTIONS(1037), + [anon_sym_extern] = ACTIONS(1037), + [anon_sym_module] = ACTIONS(1037), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_LPAREN] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1037), + [anon_sym_error] = ACTIONS(1037), + [anon_sym_list] = ACTIONS(1037), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_break] = ACTIONS(1037), + [anon_sym_continue] = ACTIONS(1037), + [anon_sym_for] = ACTIONS(1037), + [anon_sym_in] = ACTIONS(1037), + [anon_sym_loop] = ACTIONS(1037), + [anon_sym_make] = ACTIONS(1037), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_do] = ACTIONS(1037), + [anon_sym_if] = ACTIONS(1037), + [anon_sym_else] = ACTIONS(1037), + [anon_sym_match] = ACTIONS(1037), + [anon_sym_RBRACE] = ACTIONS(1037), + [anon_sym_try] = ACTIONS(1037), + [anon_sym_catch] = ACTIONS(1037), + [anon_sym_return] = ACTIONS(1037), + [anon_sym_source] = ACTIONS(1037), + [anon_sym_source_DASHenv] = ACTIONS(1037), + [anon_sym_register] = ACTIONS(1037), + [anon_sym_hide] = ACTIONS(1037), + [anon_sym_hide_DASHenv] = ACTIONS(1037), + [anon_sym_overlay] = ACTIONS(1037), + [anon_sym_new] = ACTIONS(1037), + [anon_sym_as] = ACTIONS(1037), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_STAR_STAR] = ACTIONS(1037), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1037), + [anon_sym_mod] = ACTIONS(1037), + [anon_sym_SLASH_SLASH] = ACTIONS(1037), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_bit_DASHshl] = ACTIONS(1037), + [anon_sym_bit_DASHshr] = ACTIONS(1037), + [anon_sym_EQ_EQ] = ACTIONS(1037), + [anon_sym_BANG_EQ] = ACTIONS(1037), + [anon_sym_LT2] = ACTIONS(1037), + [anon_sym_LT_EQ] = ACTIONS(1037), + [anon_sym_GT_EQ] = ACTIONS(1037), + [anon_sym_not_DASHin] = ACTIONS(1037), + [anon_sym_starts_DASHwith] = ACTIONS(1037), + [anon_sym_ends_DASHwith] = ACTIONS(1037), + [anon_sym_EQ_TILDE] = ACTIONS(1037), + [anon_sym_BANG_TILDE] = ACTIONS(1037), + [anon_sym_bit_DASHand] = ACTIONS(1037), + [anon_sym_bit_DASHxor] = ACTIONS(1037), + [anon_sym_bit_DASHor] = ACTIONS(1037), + [anon_sym_and] = ACTIONS(1037), + [anon_sym_xor] = ACTIONS(1037), + [anon_sym_or] = ACTIONS(1037), + [anon_sym_DOT_DOT2] = ACTIONS(1037), + [anon_sym_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1039), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1039), + [aux_sym__val_number_decimal_token1] = ACTIONS(1037), + [aux_sym__val_number_decimal_token2] = ACTIONS(1037), + [anon_sym_DOT2] = ACTIONS(1037), + [aux_sym__val_number_decimal_token3] = ACTIONS(1037), + [aux_sym__val_number_token1] = ACTIONS(1037), + [aux_sym__val_number_token2] = ACTIONS(1037), + [aux_sym__val_number_token3] = ACTIONS(1037), + [aux_sym__val_number_token4] = ACTIONS(1037), + [aux_sym__val_number_token5] = ACTIONS(1037), + [aux_sym__val_number_token6] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1037), + [sym__str_single_quotes] = ACTIONS(1037), + [sym__str_back_ticks] = ACTIONS(1037), + [sym__entry_separator] = ACTIONS(1039), + [aux_sym__record_key_token2] = ACTIONS(1037), + [anon_sym_POUND] = ACTIONS(113), + }, + [536] = { + [sym_comment] = STATE(536), + [anon_sym_export] = ACTIONS(1024), + [anon_sym_alias] = ACTIONS(1024), + [anon_sym_let] = ACTIONS(1024), + [anon_sym_let_DASHenv] = ACTIONS(1024), + [anon_sym_mut] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [sym_cmd_identifier] = ACTIONS(1024), + [anon_sym_def] = ACTIONS(1024), + [anon_sym_export_DASHenv] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1024), + [anon_sym_module] = ACTIONS(1024), + [anon_sym_use] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1026), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_error] = ACTIONS(1024), + [anon_sym_list] = ACTIONS(1024), + [anon_sym_GT] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_loop] = ACTIONS(1024), + [anon_sym_make] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_else] = ACTIONS(1024), + [anon_sym_match] = ACTIONS(1024), + [anon_sym_RBRACE] = ACTIONS(1026), + [anon_sym_try] = ACTIONS(1024), + [anon_sym_catch] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_source] = ACTIONS(1024), + [anon_sym_source_DASHenv] = ACTIONS(1024), + [anon_sym_register] = ACTIONS(1024), + [anon_sym_hide] = ACTIONS(1024), + [anon_sym_hide_DASHenv] = ACTIONS(1024), + [anon_sym_overlay] = ACTIONS(1024), + [anon_sym_new] = ACTIONS(1024), + [anon_sym_as] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(1428), + [anon_sym_STAR_STAR] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [anon_sym_SLASH] = ACTIONS(1024), + [anon_sym_mod] = ACTIONS(1024), + [anon_sym_SLASH_SLASH] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_bit_DASHshl] = ACTIONS(1024), + [anon_sym_bit_DASHshr] = ACTIONS(1024), + [anon_sym_EQ_EQ] = ACTIONS(1026), + [anon_sym_BANG_EQ] = ACTIONS(1026), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ] = ACTIONS(1026), + [anon_sym_GT_EQ] = ACTIONS(1026), + [anon_sym_not_DASHin] = ACTIONS(1024), + [anon_sym_starts_DASHwith] = ACTIONS(1024), + [anon_sym_ends_DASHwith] = ACTIONS(1024), + [anon_sym_EQ_TILDE] = ACTIONS(1026), + [anon_sym_BANG_TILDE] = ACTIONS(1026), + [anon_sym_bit_DASHand] = ACTIONS(1024), + [anon_sym_bit_DASHxor] = ACTIONS(1024), + [anon_sym_bit_DASHor] = ACTIONS(1024), + [anon_sym_and] = ACTIONS(1024), + [anon_sym_xor] = ACTIONS(1024), + [anon_sym_or] = ACTIONS(1024), + [anon_sym_DOT_DOT2] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1026), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1026), + [aux_sym__val_number_token1] = ACTIONS(1026), + [aux_sym__val_number_token2] = ACTIONS(1026), + [aux_sym__val_number_token3] = ACTIONS(1026), + [aux_sym__val_number_token4] = ACTIONS(1024), + [aux_sym__val_number_token5] = ACTIONS(1026), + [aux_sym__val_number_token6] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1026), + [sym__str_single_quotes] = ACTIONS(1026), + [sym__str_back_ticks] = ACTIONS(1026), + [aux_sym__record_key_token2] = ACTIONS(1024), + [anon_sym_POUND] = ACTIONS(3), + }, + [537] = { + [sym_comment] = STATE(537), + [anon_sym_export] = ACTIONS(1041), + [anon_sym_alias] = ACTIONS(1041), + [anon_sym_let] = ACTIONS(1041), + [anon_sym_let_DASHenv] = ACTIONS(1041), + [anon_sym_mut] = ACTIONS(1041), + [anon_sym_const] = ACTIONS(1041), + [sym_cmd_identifier] = ACTIONS(1041), + [anon_sym_def] = ACTIONS(1041), + [anon_sym_export_DASHenv] = ACTIONS(1041), + [anon_sym_extern] = ACTIONS(1041), + [anon_sym_module] = ACTIONS(1041), + [anon_sym_use] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1041), + [anon_sym_DOLLAR] = ACTIONS(1041), + [anon_sym_error] = ACTIONS(1041), + [anon_sym_list] = ACTIONS(1041), + [anon_sym_GT] = ACTIONS(1041), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_break] = ACTIONS(1041), + [anon_sym_continue] = ACTIONS(1041), + [anon_sym_for] = ACTIONS(1041), + [anon_sym_in] = ACTIONS(1041), + [anon_sym_loop] = ACTIONS(1041), + [anon_sym_make] = ACTIONS(1041), + [anon_sym_while] = ACTIONS(1041), + [anon_sym_do] = ACTIONS(1041), + [anon_sym_if] = ACTIONS(1041), + [anon_sym_else] = ACTIONS(1041), + [anon_sym_match] = ACTIONS(1041), + [anon_sym_RBRACE] = ACTIONS(1041), + [anon_sym_try] = ACTIONS(1041), + [anon_sym_catch] = ACTIONS(1041), + [anon_sym_return] = ACTIONS(1041), + [anon_sym_source] = ACTIONS(1041), + [anon_sym_source_DASHenv] = ACTIONS(1041), + [anon_sym_register] = ACTIONS(1041), + [anon_sym_hide] = ACTIONS(1041), + [anon_sym_hide_DASHenv] = ACTIONS(1041), + [anon_sym_overlay] = ACTIONS(1041), + [anon_sym_new] = ACTIONS(1041), + [anon_sym_as] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_STAR_STAR] = ACTIONS(1041), + [anon_sym_PLUS_PLUS] = ACTIONS(1041), + [anon_sym_SLASH] = ACTIONS(1041), + [anon_sym_mod] = ACTIONS(1041), + [anon_sym_SLASH_SLASH] = ACTIONS(1041), + [anon_sym_PLUS] = ACTIONS(1041), + [anon_sym_bit_DASHshl] = ACTIONS(1041), + [anon_sym_bit_DASHshr] = ACTIONS(1041), + [anon_sym_EQ_EQ] = ACTIONS(1041), + [anon_sym_BANG_EQ] = ACTIONS(1041), + [anon_sym_LT2] = ACTIONS(1041), + [anon_sym_LT_EQ] = ACTIONS(1041), + [anon_sym_GT_EQ] = ACTIONS(1041), + [anon_sym_not_DASHin] = ACTIONS(1041), + [anon_sym_starts_DASHwith] = ACTIONS(1041), + [anon_sym_ends_DASHwith] = ACTIONS(1041), + [anon_sym_EQ_TILDE] = ACTIONS(1041), + [anon_sym_BANG_TILDE] = ACTIONS(1041), + [anon_sym_bit_DASHand] = ACTIONS(1041), + [anon_sym_bit_DASHxor] = ACTIONS(1041), + [anon_sym_bit_DASHor] = ACTIONS(1041), + [anon_sym_and] = ACTIONS(1041), + [anon_sym_xor] = ACTIONS(1041), + [anon_sym_or] = ACTIONS(1041), + [anon_sym_DOT_DOT2] = ACTIONS(1041), + [anon_sym_DOT] = ACTIONS(1041), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1043), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1043), + [aux_sym__val_number_decimal_token1] = ACTIONS(1041), + [aux_sym__val_number_decimal_token2] = ACTIONS(1041), + [anon_sym_DOT2] = ACTIONS(1041), + [aux_sym__val_number_decimal_token3] = ACTIONS(1041), + [aux_sym__val_number_token1] = ACTIONS(1041), + [aux_sym__val_number_token2] = ACTIONS(1041), + [aux_sym__val_number_token3] = ACTIONS(1041), + [aux_sym__val_number_token4] = ACTIONS(1041), + [aux_sym__val_number_token5] = ACTIONS(1041), + [aux_sym__val_number_token6] = ACTIONS(1041), + [anon_sym_DQUOTE] = ACTIONS(1041), + [sym__str_single_quotes] = ACTIONS(1041), + [sym__str_back_ticks] = ACTIONS(1041), + [sym__entry_separator] = ACTIONS(1043), + [aux_sym__record_key_token2] = ACTIONS(1041), + [anon_sym_POUND] = ACTIONS(113), + }, + [538] = { + [sym_comment] = STATE(538), + [anon_sym_export] = ACTIONS(938), + [anon_sym_alias] = ACTIONS(938), + [anon_sym_let] = ACTIONS(938), + [anon_sym_let_DASHenv] = ACTIONS(938), + [anon_sym_mut] = ACTIONS(938), + [anon_sym_const] = ACTIONS(938), + [sym_cmd_identifier] = ACTIONS(938), + [anon_sym_def] = ACTIONS(938), + [anon_sym_export_DASHenv] = ACTIONS(938), + [anon_sym_extern] = ACTIONS(938), + [anon_sym_module] = ACTIONS(938), + [anon_sym_use] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(940), + [anon_sym_DOLLAR] = ACTIONS(940), + [anon_sym_error] = ACTIONS(938), + [anon_sym_list] = ACTIONS(938), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_break] = ACTIONS(938), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_for] = ACTIONS(938), + [anon_sym_in] = ACTIONS(938), + [anon_sym_loop] = ACTIONS(938), + [anon_sym_make] = ACTIONS(938), + [anon_sym_while] = ACTIONS(938), + [anon_sym_do] = ACTIONS(938), + [anon_sym_if] = ACTIONS(938), + [anon_sym_else] = ACTIONS(938), + [anon_sym_match] = ACTIONS(938), + [anon_sym_RBRACE] = ACTIONS(940), + [anon_sym_try] = ACTIONS(938), + [anon_sym_catch] = ACTIONS(938), + [anon_sym_return] = ACTIONS(938), + [anon_sym_source] = ACTIONS(938), + [anon_sym_source_DASHenv] = ACTIONS(938), + [anon_sym_register] = ACTIONS(938), + [anon_sym_hide] = ACTIONS(938), + [anon_sym_hide_DASHenv] = ACTIONS(938), + [anon_sym_overlay] = ACTIONS(938), + [anon_sym_new] = ACTIONS(938), + [anon_sym_as] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_STAR_STAR] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(940), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(938), + [anon_sym_SLASH_SLASH] = ACTIONS(940), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_bit_DASHshl] = ACTIONS(938), + [anon_sym_bit_DASHshr] = ACTIONS(938), + [anon_sym_EQ_EQ] = ACTIONS(940), + [anon_sym_BANG_EQ] = ACTIONS(940), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(940), + [anon_sym_GT_EQ] = ACTIONS(940), + [anon_sym_not_DASHin] = ACTIONS(938), + [anon_sym_starts_DASHwith] = ACTIONS(938), + [anon_sym_ends_DASHwith] = ACTIONS(938), + [anon_sym_EQ_TILDE] = ACTIONS(940), + [anon_sym_BANG_TILDE] = ACTIONS(940), + [anon_sym_bit_DASHand] = ACTIONS(938), + [anon_sym_bit_DASHxor] = ACTIONS(938), + [anon_sym_bit_DASHor] = ACTIONS(938), + [anon_sym_and] = ACTIONS(938), + [anon_sym_xor] = ACTIONS(938), + [anon_sym_or] = ACTIONS(938), + [anon_sym_DOT_DOT2] = ACTIONS(1430), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1432), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1432), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(940), + [anon_sym_DOT2] = ACTIONS(938), + [aux_sym__val_number_decimal_token3] = ACTIONS(940), + [aux_sym__val_number_token1] = ACTIONS(940), + [aux_sym__val_number_token2] = ACTIONS(940), + [aux_sym__val_number_token3] = ACTIONS(940), + [aux_sym__val_number_token4] = ACTIONS(938), + [aux_sym__val_number_token5] = ACTIONS(940), + [aux_sym__val_number_token6] = ACTIONS(938), + [sym_filesize_unit] = ACTIONS(1434), + [sym_duration_unit] = ACTIONS(1436), + [anon_sym_DQUOTE] = ACTIONS(940), + [sym__str_single_quotes] = ACTIONS(940), + [sym__str_back_ticks] = ACTIONS(940), + [aux_sym__record_key_token2] = ACTIONS(938), + [anon_sym_POUND] = ACTIONS(3), + }, + [539] = { + [sym_comment] = STATE(539), + [anon_sym_export] = ACTIONS(893), + [anon_sym_alias] = ACTIONS(893), + [anon_sym_let] = ACTIONS(893), + [anon_sym_let_DASHenv] = ACTIONS(893), + [anon_sym_mut] = ACTIONS(893), + [anon_sym_const] = ACTIONS(893), + [sym_cmd_identifier] = ACTIONS(893), + [anon_sym_def] = ACTIONS(893), + [anon_sym_export_DASHenv] = ACTIONS(893), + [anon_sym_extern] = ACTIONS(893), + [anon_sym_module] = ACTIONS(893), + [anon_sym_use] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(895), + [anon_sym_DOLLAR] = ACTIONS(895), + [anon_sym_error] = ACTIONS(893), + [anon_sym_list] = ACTIONS(893), + [anon_sym_GT] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_break] = ACTIONS(893), + [anon_sym_continue] = ACTIONS(893), + [anon_sym_for] = ACTIONS(893), + [anon_sym_in] = ACTIONS(893), + [anon_sym_loop] = ACTIONS(893), + [anon_sym_make] = ACTIONS(893), + [anon_sym_while] = ACTIONS(893), + [anon_sym_do] = ACTIONS(893), + [anon_sym_if] = ACTIONS(893), + [anon_sym_else] = ACTIONS(893), + [anon_sym_match] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(895), + [anon_sym_try] = ACTIONS(893), + [anon_sym_catch] = ACTIONS(893), + [anon_sym_return] = ACTIONS(893), + [anon_sym_source] = ACTIONS(893), + [anon_sym_source_DASHenv] = ACTIONS(893), + [anon_sym_register] = ACTIONS(893), + [anon_sym_hide] = ACTIONS(893), + [anon_sym_hide_DASHenv] = ACTIONS(893), + [anon_sym_overlay] = ACTIONS(893), + [anon_sym_new] = ACTIONS(893), + [anon_sym_as] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(893), + [anon_sym_STAR_STAR] = ACTIONS(895), + [anon_sym_PLUS_PLUS] = ACTIONS(895), + [anon_sym_SLASH] = ACTIONS(893), + [anon_sym_mod] = ACTIONS(893), + [anon_sym_SLASH_SLASH] = ACTIONS(895), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_bit_DASHshl] = ACTIONS(893), + [anon_sym_bit_DASHshr] = ACTIONS(893), + [anon_sym_EQ_EQ] = ACTIONS(895), + [anon_sym_BANG_EQ] = ACTIONS(895), + [anon_sym_LT2] = ACTIONS(893), + [anon_sym_LT_EQ] = ACTIONS(895), + [anon_sym_GT_EQ] = ACTIONS(895), + [anon_sym_not_DASHin] = ACTIONS(893), + [anon_sym_starts_DASHwith] = ACTIONS(893), + [anon_sym_ends_DASHwith] = ACTIONS(893), + [anon_sym_EQ_TILDE] = ACTIONS(895), + [anon_sym_BANG_TILDE] = ACTIONS(895), + [anon_sym_bit_DASHand] = ACTIONS(893), + [anon_sym_bit_DASHxor] = ACTIONS(893), + [anon_sym_bit_DASHor] = ACTIONS(893), + [anon_sym_and] = ACTIONS(893), + [anon_sym_xor] = ACTIONS(893), + [anon_sym_or] = ACTIONS(893), + [anon_sym_DOT_DOT2] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), + [anon_sym_DOT_DOT_LT2] = ACTIONS(895), + [aux_sym__val_number_decimal_token1] = ACTIONS(893), + [aux_sym__val_number_decimal_token2] = ACTIONS(895), + [anon_sym_DOT2] = ACTIONS(893), + [aux_sym__val_number_decimal_token3] = ACTIONS(895), + [aux_sym__val_number_token1] = ACTIONS(895), + [aux_sym__val_number_token2] = ACTIONS(895), + [aux_sym__val_number_token3] = ACTIONS(895), + [aux_sym__val_number_token4] = ACTIONS(893), + [aux_sym__val_number_token5] = ACTIONS(895), + [aux_sym__val_number_token6] = ACTIONS(893), + [sym_filesize_unit] = ACTIONS(893), + [sym_duration_unit] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(895), + [sym__str_single_quotes] = ACTIONS(895), + [sym__str_back_ticks] = ACTIONS(895), + [aux_sym__record_key_token2] = ACTIONS(893), + [anon_sym_POUND] = ACTIONS(3), + }, + [540] = { + [sym_comment] = STATE(540), + [anon_sym_export] = ACTIONS(901), + [anon_sym_alias] = ACTIONS(901), + [anon_sym_let] = ACTIONS(901), + [anon_sym_let_DASHenv] = ACTIONS(901), + [anon_sym_mut] = ACTIONS(901), + [anon_sym_const] = ACTIONS(901), + [sym_cmd_identifier] = ACTIONS(901), + [anon_sym_def] = ACTIONS(901), + [anon_sym_export_DASHenv] = ACTIONS(901), + [anon_sym_extern] = ACTIONS(901), + [anon_sym_module] = ACTIONS(901), + [anon_sym_use] = ACTIONS(901), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_DOLLAR] = ACTIONS(903), + [anon_sym_error] = ACTIONS(901), + [anon_sym_list] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_break] = ACTIONS(901), + [anon_sym_continue] = ACTIONS(901), + [anon_sym_for] = ACTIONS(901), + [anon_sym_in] = ACTIONS(901), + [anon_sym_loop] = ACTIONS(901), + [anon_sym_make] = ACTIONS(901), + [anon_sym_while] = ACTIONS(901), + [anon_sym_do] = ACTIONS(901), + [anon_sym_if] = ACTIONS(901), + [anon_sym_else] = ACTIONS(901), + [anon_sym_match] = ACTIONS(901), + [anon_sym_RBRACE] = ACTIONS(903), + [anon_sym_try] = ACTIONS(901), + [anon_sym_catch] = ACTIONS(901), + [anon_sym_return] = ACTIONS(901), + [anon_sym_source] = ACTIONS(901), + [anon_sym_source_DASHenv] = ACTIONS(901), + [anon_sym_register] = ACTIONS(901), + [anon_sym_hide] = ACTIONS(901), + [anon_sym_hide_DASHenv] = ACTIONS(901), + [anon_sym_overlay] = ACTIONS(901), + [anon_sym_new] = ACTIONS(901), + [anon_sym_as] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_STAR_STAR] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_mod] = ACTIONS(901), + [anon_sym_SLASH_SLASH] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_bit_DASHshl] = ACTIONS(901), + [anon_sym_bit_DASHshr] = ACTIONS(901), + [anon_sym_EQ_EQ] = ACTIONS(903), + [anon_sym_BANG_EQ] = ACTIONS(903), + [anon_sym_LT2] = ACTIONS(901), + [anon_sym_LT_EQ] = ACTIONS(903), + [anon_sym_GT_EQ] = ACTIONS(903), + [anon_sym_not_DASHin] = ACTIONS(901), + [anon_sym_starts_DASHwith] = ACTIONS(901), + [anon_sym_ends_DASHwith] = ACTIONS(901), + [anon_sym_EQ_TILDE] = ACTIONS(903), + [anon_sym_BANG_TILDE] = ACTIONS(903), + [anon_sym_bit_DASHand] = ACTIONS(901), + [anon_sym_bit_DASHxor] = ACTIONS(901), + [anon_sym_bit_DASHor] = ACTIONS(901), + [anon_sym_and] = ACTIONS(901), + [anon_sym_xor] = ACTIONS(901), + [anon_sym_or] = ACTIONS(901), + [anon_sym_DOT_DOT2] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(903), + [anon_sym_DOT_DOT_LT2] = ACTIONS(903), + [aux_sym__val_number_decimal_token1] = ACTIONS(901), + [aux_sym__val_number_decimal_token2] = ACTIONS(903), + [anon_sym_DOT2] = ACTIONS(901), + [aux_sym__val_number_decimal_token3] = ACTIONS(903), + [aux_sym__val_number_token1] = ACTIONS(903), + [aux_sym__val_number_token2] = ACTIONS(903), + [aux_sym__val_number_token3] = ACTIONS(903), + [aux_sym__val_number_token4] = ACTIONS(901), + [aux_sym__val_number_token5] = ACTIONS(903), + [aux_sym__val_number_token6] = ACTIONS(901), + [sym_filesize_unit] = ACTIONS(901), + [sym_duration_unit] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(903), + [sym__str_single_quotes] = ACTIONS(903), + [sym__str_back_ticks] = ACTIONS(903), + [aux_sym__record_key_token2] = ACTIONS(901), + [anon_sym_POUND] = ACTIONS(3), + }, + [541] = { + [sym_comment] = STATE(541), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_alias] = ACTIONS(1061), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_let_DASHenv] = ACTIONS(1061), + [anon_sym_mut] = ACTIONS(1061), + [anon_sym_const] = ACTIONS(1061), + [sym_cmd_identifier] = ACTIONS(1061), + [anon_sym_def] = ACTIONS(1061), + [anon_sym_export_DASHenv] = ACTIONS(1061), + [anon_sym_extern] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_use] = ACTIONS(1061), + [anon_sym_LPAREN] = ACTIONS(1061), + [anon_sym_DOLLAR] = ACTIONS(1061), + [anon_sym_error] = ACTIONS(1061), + [anon_sym_list] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_DASH] = ACTIONS(1061), + [anon_sym_break] = ACTIONS(1061), + [anon_sym_continue] = ACTIONS(1061), + [anon_sym_for] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1061), + [anon_sym_loop] = ACTIONS(1061), + [anon_sym_make] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(1061), + [anon_sym_do] = ACTIONS(1061), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_else] = ACTIONS(1061), + [anon_sym_match] = ACTIONS(1061), + [anon_sym_RBRACE] = ACTIONS(1061), + [anon_sym_try] = ACTIONS(1061), + [anon_sym_catch] = ACTIONS(1061), + [anon_sym_return] = ACTIONS(1061), + [anon_sym_source] = ACTIONS(1061), + [anon_sym_source_DASHenv] = ACTIONS(1061), + [anon_sym_register] = ACTIONS(1061), + [anon_sym_hide] = ACTIONS(1061), + [anon_sym_hide_DASHenv] = ACTIONS(1061), + [anon_sym_overlay] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_as] = ACTIONS(1061), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_STAR_STAR] = ACTIONS(1061), + [anon_sym_PLUS_PLUS] = ACTIONS(1061), + [anon_sym_SLASH] = ACTIONS(1061), + [anon_sym_mod] = ACTIONS(1061), + [anon_sym_SLASH_SLASH] = ACTIONS(1061), + [anon_sym_PLUS] = ACTIONS(1061), + [anon_sym_bit_DASHshl] = ACTIONS(1061), + [anon_sym_bit_DASHshr] = ACTIONS(1061), + [anon_sym_EQ_EQ] = ACTIONS(1061), + [anon_sym_BANG_EQ] = ACTIONS(1061), + [anon_sym_LT2] = ACTIONS(1061), + [anon_sym_LT_EQ] = ACTIONS(1061), + [anon_sym_GT_EQ] = ACTIONS(1061), + [anon_sym_not_DASHin] = ACTIONS(1061), + [anon_sym_starts_DASHwith] = ACTIONS(1061), + [anon_sym_ends_DASHwith] = ACTIONS(1061), + [anon_sym_EQ_TILDE] = ACTIONS(1061), + [anon_sym_BANG_TILDE] = ACTIONS(1061), + [anon_sym_bit_DASHand] = ACTIONS(1061), + [anon_sym_bit_DASHxor] = ACTIONS(1061), + [anon_sym_bit_DASHor] = ACTIONS(1061), + [anon_sym_and] = ACTIONS(1061), + [anon_sym_xor] = ACTIONS(1061), + [anon_sym_or] = ACTIONS(1061), + [anon_sym_DOT_DOT2] = ACTIONS(1061), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1063), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1063), + [aux_sym__val_number_decimal_token1] = ACTIONS(1061), + [aux_sym__val_number_decimal_token2] = ACTIONS(1061), + [anon_sym_DOT2] = ACTIONS(1061), + [aux_sym__val_number_decimal_token3] = ACTIONS(1061), + [aux_sym__val_number_token1] = ACTIONS(1061), + [aux_sym__val_number_token2] = ACTIONS(1061), + [aux_sym__val_number_token3] = ACTIONS(1061), + [aux_sym__val_number_token4] = ACTIONS(1061), + [aux_sym__val_number_token5] = ACTIONS(1061), + [aux_sym__val_number_token6] = ACTIONS(1061), + [anon_sym_DQUOTE] = ACTIONS(1061), + [sym__str_single_quotes] = ACTIONS(1061), + [sym__str_back_ticks] = ACTIONS(1061), + [sym__entry_separator] = ACTIONS(1063), + [aux_sym__record_key_token2] = ACTIONS(1061), + [anon_sym_POUND] = ACTIONS(113), + }, + [542] = { + [sym_cell_path] = STATE(669), + [sym_path] = STATE(546), + [sym_comment] = STATE(542), + [anon_sym_export] = ACTIONS(1057), + [anon_sym_alias] = ACTIONS(1057), + [anon_sym_let] = ACTIONS(1057), + [anon_sym_let_DASHenv] = ACTIONS(1057), + [anon_sym_mut] = ACTIONS(1057), + [anon_sym_const] = ACTIONS(1057), + [sym_cmd_identifier] = ACTIONS(1057), + [anon_sym_def] = ACTIONS(1057), + [anon_sym_export_DASHenv] = ACTIONS(1057), + [anon_sym_extern] = ACTIONS(1057), + [anon_sym_module] = ACTIONS(1057), + [anon_sym_use] = ACTIONS(1057), + [anon_sym_LPAREN] = ACTIONS(1057), + [anon_sym_DOLLAR] = ACTIONS(1057), + [anon_sym_error] = ACTIONS(1057), + [anon_sym_list] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_break] = ACTIONS(1057), + [anon_sym_continue] = ACTIONS(1057), + [anon_sym_for] = ACTIONS(1057), + [anon_sym_in] = ACTIONS(1057), + [anon_sym_loop] = ACTIONS(1057), + [anon_sym_make] = ACTIONS(1057), + [anon_sym_while] = ACTIONS(1057), + [anon_sym_do] = ACTIONS(1057), + [anon_sym_if] = ACTIONS(1057), + [anon_sym_else] = ACTIONS(1057), + [anon_sym_match] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(1057), + [anon_sym_try] = ACTIONS(1057), + [anon_sym_catch] = ACTIONS(1057), + [anon_sym_return] = ACTIONS(1057), + [anon_sym_source] = ACTIONS(1057), + [anon_sym_source_DASHenv] = ACTIONS(1057), + [anon_sym_register] = ACTIONS(1057), + [anon_sym_hide] = ACTIONS(1057), + [anon_sym_hide_DASHenv] = ACTIONS(1057), + [anon_sym_overlay] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1057), + [anon_sym_as] = ACTIONS(1057), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_mod] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_PLUS] = ACTIONS(1057), + [anon_sym_bit_DASHshl] = ACTIONS(1057), + [anon_sym_bit_DASHshr] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1057), + [anon_sym_LT2] = ACTIONS(1057), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_not_DASHin] = ACTIONS(1057), + [anon_sym_starts_DASHwith] = ACTIONS(1057), + [anon_sym_ends_DASHwith] = ACTIONS(1057), + [anon_sym_EQ_TILDE] = ACTIONS(1057), + [anon_sym_BANG_TILDE] = ACTIONS(1057), + [anon_sym_bit_DASHand] = ACTIONS(1057), + [anon_sym_bit_DASHxor] = ACTIONS(1057), + [anon_sym_bit_DASHor] = ACTIONS(1057), + [anon_sym_and] = ACTIONS(1057), + [anon_sym_xor] = ACTIONS(1057), + [anon_sym_or] = ACTIONS(1057), + [anon_sym_DOT] = ACTIONS(1438), + [aux_sym__val_number_decimal_token1] = ACTIONS(1057), + [aux_sym__val_number_decimal_token2] = ACTIONS(1057), + [anon_sym_DOT2] = ACTIONS(1057), + [aux_sym__val_number_decimal_token3] = ACTIONS(1057), + [aux_sym__val_number_token1] = ACTIONS(1057), + [aux_sym__val_number_token2] = ACTIONS(1057), + [aux_sym__val_number_token3] = ACTIONS(1057), + [aux_sym__val_number_token4] = ACTIONS(1057), + [aux_sym__val_number_token5] = ACTIONS(1057), + [aux_sym__val_number_token6] = ACTIONS(1057), + [anon_sym_DQUOTE] = ACTIONS(1057), + [sym__str_single_quotes] = ACTIONS(1057), + [sym__str_back_ticks] = ACTIONS(1057), + [sym__entry_separator] = ACTIONS(1059), + [aux_sym__record_key_token2] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(113), + }, + [543] = { + [sym_comment] = STATE(543), + [anon_sym_export] = ACTIONS(1047), + [anon_sym_alias] = ACTIONS(1047), + [anon_sym_let] = ACTIONS(1047), + [anon_sym_let_DASHenv] = ACTIONS(1047), + [anon_sym_mut] = ACTIONS(1047), + [anon_sym_const] = ACTIONS(1047), + [sym_cmd_identifier] = ACTIONS(1047), + [anon_sym_def] = ACTIONS(1047), + [anon_sym_export_DASHenv] = ACTIONS(1047), + [anon_sym_extern] = ACTIONS(1047), + [anon_sym_module] = ACTIONS(1047), + [anon_sym_use] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1049), + [anon_sym_DOLLAR] = ACTIONS(1049), + [anon_sym_error] = ACTIONS(1047), + [anon_sym_list] = ACTIONS(1047), + [anon_sym_GT] = ACTIONS(1047), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_break] = ACTIONS(1047), + [anon_sym_continue] = ACTIONS(1047), + [anon_sym_for] = ACTIONS(1047), + [anon_sym_in] = ACTIONS(1047), + [anon_sym_loop] = ACTIONS(1047), + [anon_sym_make] = ACTIONS(1047), + [anon_sym_while] = ACTIONS(1047), + [anon_sym_do] = ACTIONS(1047), + [anon_sym_if] = ACTIONS(1047), + [anon_sym_else] = ACTIONS(1047), + [anon_sym_match] = ACTIONS(1047), + [anon_sym_RBRACE] = ACTIONS(1049), + [anon_sym_try] = ACTIONS(1047), + [anon_sym_catch] = ACTIONS(1047), + [anon_sym_return] = ACTIONS(1047), + [anon_sym_source] = ACTIONS(1047), + [anon_sym_source_DASHenv] = ACTIONS(1047), + [anon_sym_register] = ACTIONS(1047), + [anon_sym_hide] = ACTIONS(1047), + [anon_sym_hide_DASHenv] = ACTIONS(1047), + [anon_sym_overlay] = ACTIONS(1047), + [anon_sym_new] = ACTIONS(1047), + [anon_sym_as] = ACTIONS(1047), + [anon_sym_STAR] = ACTIONS(1047), + [anon_sym_STAR_STAR] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1049), + [anon_sym_SLASH] = ACTIONS(1047), + [anon_sym_mod] = ACTIONS(1047), + [anon_sym_SLASH_SLASH] = ACTIONS(1049), + [anon_sym_PLUS] = ACTIONS(1047), + [anon_sym_bit_DASHshl] = ACTIONS(1047), + [anon_sym_bit_DASHshr] = ACTIONS(1047), + [anon_sym_EQ_EQ] = ACTIONS(1049), + [anon_sym_BANG_EQ] = ACTIONS(1049), + [anon_sym_LT2] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1049), + [anon_sym_GT_EQ] = ACTIONS(1049), + [anon_sym_not_DASHin] = ACTIONS(1047), + [anon_sym_starts_DASHwith] = ACTIONS(1047), + [anon_sym_ends_DASHwith] = ACTIONS(1047), + [anon_sym_EQ_TILDE] = ACTIONS(1049), + [anon_sym_BANG_TILDE] = ACTIONS(1049), + [anon_sym_bit_DASHand] = ACTIONS(1047), + [anon_sym_bit_DASHxor] = ACTIONS(1047), + [anon_sym_bit_DASHor] = ACTIONS(1047), + [anon_sym_and] = ACTIONS(1047), + [anon_sym_xor] = ACTIONS(1047), + [anon_sym_or] = ACTIONS(1047), + [anon_sym_DOT_DOT2] = ACTIONS(1047), + [anon_sym_DOT] = ACTIONS(1047), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1049), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1049), + [aux_sym__val_number_decimal_token1] = ACTIONS(1047), + [aux_sym__val_number_decimal_token2] = ACTIONS(1049), + [anon_sym_DOT2] = ACTIONS(1047), + [aux_sym__val_number_decimal_token3] = ACTIONS(1049), + [aux_sym__val_number_token1] = ACTIONS(1049), + [aux_sym__val_number_token2] = ACTIONS(1049), + [aux_sym__val_number_token3] = ACTIONS(1049), + [aux_sym__val_number_token4] = ACTIONS(1047), + [aux_sym__val_number_token5] = ACTIONS(1049), + [aux_sym__val_number_token6] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1049), + [sym__str_single_quotes] = ACTIONS(1049), + [sym__str_back_ticks] = ACTIONS(1049), + [aux_sym__record_key_token2] = ACTIONS(1047), + [anon_sym_POUND] = ACTIONS(3), + }, + [544] = { + [sym_cell_path] = STATE(637), + [sym_path] = STATE(546), + [sym_comment] = STATE(544), + [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), + [sym_cmd_identifier] = 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_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_list] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = 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_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_new] = ACTIONS(1002), + [anon_sym_as] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_SLASH] = ACTIONS(1002), + [anon_sym_mod] = ACTIONS(1002), + [anon_sym_SLASH_SLASH] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1002), + [anon_sym_bit_DASHshl] = ACTIONS(1002), + [anon_sym_bit_DASHshr] = ACTIONS(1002), + [anon_sym_EQ_EQ] = ACTIONS(1002), + [anon_sym_BANG_EQ] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ] = ACTIONS(1002), + [anon_sym_GT_EQ] = ACTIONS(1002), + [anon_sym_not_DASHin] = ACTIONS(1002), + [anon_sym_starts_DASHwith] = ACTIONS(1002), + [anon_sym_ends_DASHwith] = ACTIONS(1002), + [anon_sym_EQ_TILDE] = ACTIONS(1002), + [anon_sym_BANG_TILDE] = ACTIONS(1002), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_DOT] = ACTIONS(1438), + [aux_sym__val_number_decimal_token1] = ACTIONS(1002), + [aux_sym__val_number_decimal_token2] = ACTIONS(1002), + [anon_sym_DOT2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = 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), + [sym__entry_separator] = ACTIONS(1004), + [aux_sym__record_key_token2] = ACTIONS(1002), + [anon_sym_POUND] = ACTIONS(113), + }, + [545] = { + [sym_comment] = STATE(545), + [anon_sym_export] = ACTIONS(1037), + [anon_sym_alias] = ACTIONS(1037), + [anon_sym_let] = ACTIONS(1037), + [anon_sym_let_DASHenv] = ACTIONS(1037), + [anon_sym_mut] = ACTIONS(1037), + [anon_sym_const] = ACTIONS(1037), + [sym_cmd_identifier] = ACTIONS(1037), + [anon_sym_def] = ACTIONS(1037), + [anon_sym_export_DASHenv] = ACTIONS(1037), + [anon_sym_extern] = ACTIONS(1037), + [anon_sym_module] = ACTIONS(1037), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_LPAREN] = ACTIONS(1039), + [anon_sym_DOLLAR] = ACTIONS(1039), + [anon_sym_error] = ACTIONS(1037), + [anon_sym_list] = ACTIONS(1037), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_break] = ACTIONS(1037), + [anon_sym_continue] = ACTIONS(1037), + [anon_sym_for] = ACTIONS(1037), + [anon_sym_in] = ACTIONS(1037), + [anon_sym_loop] = ACTIONS(1037), + [anon_sym_make] = ACTIONS(1037), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_do] = ACTIONS(1037), + [anon_sym_if] = ACTIONS(1037), + [anon_sym_else] = ACTIONS(1037), + [anon_sym_match] = ACTIONS(1037), + [anon_sym_RBRACE] = ACTIONS(1039), + [anon_sym_try] = ACTIONS(1037), + [anon_sym_catch] = ACTIONS(1037), + [anon_sym_return] = ACTIONS(1037), + [anon_sym_source] = ACTIONS(1037), + [anon_sym_source_DASHenv] = ACTIONS(1037), + [anon_sym_register] = ACTIONS(1037), + [anon_sym_hide] = ACTIONS(1037), + [anon_sym_hide_DASHenv] = ACTIONS(1037), + [anon_sym_overlay] = ACTIONS(1037), + [anon_sym_new] = ACTIONS(1037), + [anon_sym_as] = ACTIONS(1037), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_STAR_STAR] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(1039), + [anon_sym_SLASH] = ACTIONS(1037), + [anon_sym_mod] = ACTIONS(1037), + [anon_sym_SLASH_SLASH] = ACTIONS(1039), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_bit_DASHshl] = ACTIONS(1037), + [anon_sym_bit_DASHshr] = ACTIONS(1037), + [anon_sym_EQ_EQ] = ACTIONS(1039), + [anon_sym_BANG_EQ] = ACTIONS(1039), + [anon_sym_LT2] = ACTIONS(1037), + [anon_sym_LT_EQ] = ACTIONS(1039), + [anon_sym_GT_EQ] = ACTIONS(1039), + [anon_sym_not_DASHin] = ACTIONS(1037), + [anon_sym_starts_DASHwith] = ACTIONS(1037), + [anon_sym_ends_DASHwith] = ACTIONS(1037), + [anon_sym_EQ_TILDE] = ACTIONS(1039), + [anon_sym_BANG_TILDE] = ACTIONS(1039), + [anon_sym_bit_DASHand] = ACTIONS(1037), + [anon_sym_bit_DASHxor] = ACTIONS(1037), + [anon_sym_bit_DASHor] = ACTIONS(1037), + [anon_sym_and] = ACTIONS(1037), + [anon_sym_xor] = ACTIONS(1037), + [anon_sym_or] = ACTIONS(1037), + [anon_sym_DOT_DOT2] = ACTIONS(1037), + [anon_sym_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1039), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1039), + [aux_sym__val_number_decimal_token1] = ACTIONS(1037), + [aux_sym__val_number_decimal_token2] = ACTIONS(1039), + [anon_sym_DOT2] = ACTIONS(1037), + [aux_sym__val_number_decimal_token3] = ACTIONS(1039), + [aux_sym__val_number_token1] = ACTIONS(1039), + [aux_sym__val_number_token2] = ACTIONS(1039), + [aux_sym__val_number_token3] = ACTIONS(1039), + [aux_sym__val_number_token4] = ACTIONS(1037), + [aux_sym__val_number_token5] = ACTIONS(1039), + [aux_sym__val_number_token6] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1039), + [sym__str_single_quotes] = ACTIONS(1039), + [sym__str_back_ticks] = ACTIONS(1039), + [aux_sym__record_key_token2] = ACTIONS(1037), + [anon_sym_POUND] = ACTIONS(3), + }, + [546] = { + [sym_path] = STATE(591), + [sym_comment] = STATE(546), + [aux_sym_cell_path_repeat1] = STATE(550), [anon_sym_export] = ACTIONS(1010), [anon_sym_alias] = ACTIONS(1010), [anon_sym_let] = ACTIONS(1010), [anon_sym_let_DASHenv] = ACTIONS(1010), [anon_sym_mut] = ACTIONS(1010), [anon_sym_const] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1010), [sym_cmd_identifier] = ACTIONS(1010), - [anon_sym_LF] = ACTIONS(1012), [anon_sym_def] = ACTIONS(1010), [anon_sym_export_DASHenv] = ACTIONS(1010), [anon_sym_extern] = ACTIONS(1010), [anon_sym_module] = ACTIONS(1010), [anon_sym_use] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(1010), [anon_sym_LPAREN] = ACTIONS(1010), [anon_sym_DOLLAR] = ACTIONS(1010), [anon_sym_error] = ACTIONS(1010), + [anon_sym_list] = ACTIONS(1010), [anon_sym_GT] = ACTIONS(1010), [anon_sym_DASH] = ACTIONS(1010), [anon_sym_break] = ACTIONS(1010), @@ -152682,13 +150583,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1010), [anon_sym_in] = ACTIONS(1010), [anon_sym_loop] = ACTIONS(1010), + [anon_sym_make] = ACTIONS(1010), [anon_sym_while] = ACTIONS(1010), [anon_sym_do] = ACTIONS(1010), [anon_sym_if] = ACTIONS(1010), + [anon_sym_else] = ACTIONS(1010), [anon_sym_match] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), [anon_sym_try] = ACTIONS(1010), + [anon_sym_catch] = ACTIONS(1010), [anon_sym_return] = ACTIONS(1010), [anon_sym_source] = ACTIONS(1010), [anon_sym_source_DASHenv] = ACTIONS(1010), @@ -152696,8 +150599,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(1010), [anon_sym_hide_DASHenv] = ACTIONS(1010), [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_new] = ACTIONS(1010), + [anon_sym_as] = ACTIONS(1010), [anon_sym_STAR] = ACTIONS(1010), - [anon_sym_where] = ACTIONS(1010), [anon_sym_STAR_STAR] = ACTIONS(1010), [anon_sym_PLUS_PLUS] = ACTIONS(1010), [anon_sym_SLASH] = ACTIONS(1010), @@ -152722,13 +150626,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(1010), [anon_sym_xor] = ACTIONS(1010), [anon_sym_or] = ACTIONS(1010), - [anon_sym_not] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(1306), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT] = ACTIONS(1010), - [anon_sym_null] = ACTIONS(1010), - [anon_sym_true] = ACTIONS(1010), - [anon_sym_false] = ACTIONS(1010), + [anon_sym_DOT] = ACTIONS(1438), [aux_sym__val_number_decimal_token1] = ACTIONS(1010), [aux_sym__val_number_decimal_token2] = ACTIONS(1010), [anon_sym_DOT2] = ACTIONS(1010), @@ -152739,10014 +150637,9309 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token4] = ACTIONS(1010), [aux_sym__val_number_token5] = ACTIONS(1010), [aux_sym__val_number_token6] = ACTIONS(1010), - [anon_sym_0b] = ACTIONS(1010), - [anon_sym_0o] = ACTIONS(1010), - [anon_sym_0x] = ACTIONS(1010), - [sym_val_date] = ACTIONS(1010), [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_CARET] = ACTIONS(1010), + [sym__entry_separator] = ACTIONS(1012), + [aux_sym__record_key_token2] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(113), }, - [531] = { - [sym_cell_path] = STATE(734), - [sym_path] = STATE(526), - [sym_comment] = STATE(531), - [ts_builtin_sym_end] = ACTIONS(1156), - [anon_sym_export] = ACTIONS(1154), - [anon_sym_alias] = ACTIONS(1154), - [anon_sym_let] = ACTIONS(1154), - [anon_sym_let_DASHenv] = ACTIONS(1154), - [anon_sym_mut] = ACTIONS(1154), - [anon_sym_const] = ACTIONS(1154), - [anon_sym_SEMI] = ACTIONS(1154), - [sym_cmd_identifier] = ACTIONS(1154), - [anon_sym_LF] = ACTIONS(1156), - [anon_sym_def] = ACTIONS(1154), - [anon_sym_export_DASHenv] = ACTIONS(1154), - [anon_sym_extern] = ACTIONS(1154), - [anon_sym_module] = ACTIONS(1154), - [anon_sym_use] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_DOLLAR] = ACTIONS(1154), - [anon_sym_error] = ACTIONS(1154), - [anon_sym_GT] = ACTIONS(1154), - [anon_sym_DASH] = ACTIONS(1154), - [anon_sym_break] = ACTIONS(1154), - [anon_sym_continue] = ACTIONS(1154), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_in] = ACTIONS(1154), - [anon_sym_loop] = ACTIONS(1154), - [anon_sym_while] = ACTIONS(1154), - [anon_sym_do] = ACTIONS(1154), - [anon_sym_if] = ACTIONS(1154), - [anon_sym_match] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(1154), - [anon_sym_DOT_DOT] = ACTIONS(1154), - [anon_sym_try] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(1154), - [anon_sym_source] = ACTIONS(1154), - [anon_sym_source_DASHenv] = ACTIONS(1154), - [anon_sym_register] = ACTIONS(1154), - [anon_sym_hide] = ACTIONS(1154), - [anon_sym_hide_DASHenv] = ACTIONS(1154), - [anon_sym_overlay] = ACTIONS(1154), - [anon_sym_STAR] = ACTIONS(1154), - [anon_sym_where] = ACTIONS(1154), - [anon_sym_STAR_STAR] = ACTIONS(1154), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_SLASH] = ACTIONS(1154), - [anon_sym_mod] = ACTIONS(1154), - [anon_sym_SLASH_SLASH] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1154), - [anon_sym_bit_DASHshl] = ACTIONS(1154), - [anon_sym_bit_DASHshr] = ACTIONS(1154), - [anon_sym_EQ_EQ] = ACTIONS(1154), - [anon_sym_BANG_EQ] = ACTIONS(1154), - [anon_sym_LT2] = ACTIONS(1154), - [anon_sym_LT_EQ] = ACTIONS(1154), - [anon_sym_GT_EQ] = ACTIONS(1154), - [anon_sym_not_DASHin] = ACTIONS(1154), - [anon_sym_starts_DASHwith] = ACTIONS(1154), - [anon_sym_ends_DASHwith] = ACTIONS(1154), - [anon_sym_EQ_TILDE] = ACTIONS(1154), - [anon_sym_BANG_TILDE] = ACTIONS(1154), - [anon_sym_bit_DASHand] = ACTIONS(1154), - [anon_sym_bit_DASHxor] = ACTIONS(1154), - [anon_sym_bit_DASHor] = ACTIONS(1154), - [anon_sym_and] = ACTIONS(1154), - [anon_sym_xor] = ACTIONS(1154), - [anon_sym_or] = ACTIONS(1154), - [anon_sym_not] = ACTIONS(1154), - [anon_sym_DOT] = ACTIONS(1306), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1154), - [anon_sym_DOT_DOT_LT] = ACTIONS(1154), - [anon_sym_null] = ACTIONS(1154), - [anon_sym_true] = ACTIONS(1154), - [anon_sym_false] = ACTIONS(1154), - [aux_sym__val_number_decimal_token1] = ACTIONS(1154), - [aux_sym__val_number_decimal_token2] = ACTIONS(1154), - [anon_sym_DOT2] = ACTIONS(1154), - [aux_sym__val_number_decimal_token3] = ACTIONS(1154), - [aux_sym__val_number_token1] = ACTIONS(1154), - [aux_sym__val_number_token2] = ACTIONS(1154), - [aux_sym__val_number_token3] = ACTIONS(1154), - [aux_sym__val_number_token4] = ACTIONS(1154), - [aux_sym__val_number_token5] = ACTIONS(1154), - [aux_sym__val_number_token6] = ACTIONS(1154), - [anon_sym_0b] = ACTIONS(1154), - [anon_sym_0o] = ACTIONS(1154), - [anon_sym_0x] = ACTIONS(1154), - [sym_val_date] = ACTIONS(1154), - [anon_sym_DQUOTE] = ACTIONS(1154), - [sym__str_single_quotes] = ACTIONS(1154), - [sym__str_back_ticks] = ACTIONS(1154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1154), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1154), - [anon_sym_CARET] = ACTIONS(1154), + [547] = { + [sym_cell_path] = STATE(673), + [sym_path] = STATE(546), + [sym_comment] = STATE(547), + [anon_sym_export] = ACTIONS(1051), + [anon_sym_alias] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(1051), + [anon_sym_let_DASHenv] = ACTIONS(1051), + [anon_sym_mut] = ACTIONS(1051), + [anon_sym_const] = ACTIONS(1051), + [sym_cmd_identifier] = ACTIONS(1051), + [anon_sym_def] = ACTIONS(1051), + [anon_sym_export_DASHenv] = ACTIONS(1051), + [anon_sym_extern] = ACTIONS(1051), + [anon_sym_module] = ACTIONS(1051), + [anon_sym_use] = ACTIONS(1051), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_DOLLAR] = ACTIONS(1051), + [anon_sym_error] = ACTIONS(1051), + [anon_sym_list] = ACTIONS(1051), + [anon_sym_GT] = ACTIONS(1051), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_break] = ACTIONS(1051), + [anon_sym_continue] = ACTIONS(1051), + [anon_sym_for] = ACTIONS(1051), + [anon_sym_in] = ACTIONS(1051), + [anon_sym_loop] = ACTIONS(1051), + [anon_sym_make] = ACTIONS(1051), + [anon_sym_while] = ACTIONS(1051), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_if] = ACTIONS(1051), + [anon_sym_else] = ACTIONS(1051), + [anon_sym_match] = ACTIONS(1051), + [anon_sym_RBRACE] = ACTIONS(1051), + [anon_sym_try] = ACTIONS(1051), + [anon_sym_catch] = ACTIONS(1051), + [anon_sym_return] = ACTIONS(1051), + [anon_sym_source] = ACTIONS(1051), + [anon_sym_source_DASHenv] = ACTIONS(1051), + [anon_sym_register] = ACTIONS(1051), + [anon_sym_hide] = ACTIONS(1051), + [anon_sym_hide_DASHenv] = ACTIONS(1051), + [anon_sym_overlay] = ACTIONS(1051), + [anon_sym_new] = ACTIONS(1051), + [anon_sym_as] = ACTIONS(1051), + [anon_sym_STAR] = ACTIONS(1051), + [anon_sym_STAR_STAR] = ACTIONS(1051), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_mod] = ACTIONS(1051), + [anon_sym_SLASH_SLASH] = ACTIONS(1051), + [anon_sym_PLUS] = ACTIONS(1051), + [anon_sym_bit_DASHshl] = ACTIONS(1051), + [anon_sym_bit_DASHshr] = ACTIONS(1051), + [anon_sym_EQ_EQ] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1051), + [anon_sym_LT2] = ACTIONS(1051), + [anon_sym_LT_EQ] = ACTIONS(1051), + [anon_sym_GT_EQ] = ACTIONS(1051), + [anon_sym_not_DASHin] = ACTIONS(1051), + [anon_sym_starts_DASHwith] = ACTIONS(1051), + [anon_sym_ends_DASHwith] = ACTIONS(1051), + [anon_sym_EQ_TILDE] = ACTIONS(1051), + [anon_sym_BANG_TILDE] = ACTIONS(1051), + [anon_sym_bit_DASHand] = ACTIONS(1051), + [anon_sym_bit_DASHxor] = ACTIONS(1051), + [anon_sym_bit_DASHor] = ACTIONS(1051), + [anon_sym_and] = ACTIONS(1051), + [anon_sym_xor] = ACTIONS(1051), + [anon_sym_or] = ACTIONS(1051), + [anon_sym_DOT] = ACTIONS(1438), + [aux_sym__val_number_decimal_token1] = ACTIONS(1051), + [aux_sym__val_number_decimal_token2] = ACTIONS(1051), + [anon_sym_DOT2] = ACTIONS(1051), + [aux_sym__val_number_decimal_token3] = ACTIONS(1051), + [aux_sym__val_number_token1] = ACTIONS(1051), + [aux_sym__val_number_token2] = ACTIONS(1051), + [aux_sym__val_number_token3] = ACTIONS(1051), + [aux_sym__val_number_token4] = ACTIONS(1051), + [aux_sym__val_number_token5] = ACTIONS(1051), + [aux_sym__val_number_token6] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(1051), + [sym__str_single_quotes] = ACTIONS(1051), + [sym__str_back_ticks] = ACTIONS(1051), + [sym__entry_separator] = ACTIONS(1053), + [aux_sym__record_key_token2] = ACTIONS(1051), [anon_sym_POUND] = ACTIONS(113), }, - [532] = { - [sym_comment] = STATE(532), - [ts_builtin_sym_end] = ACTIONS(1416), - [anon_sym_export] = ACTIONS(1414), - [anon_sym_alias] = ACTIONS(1414), - [anon_sym_let] = ACTIONS(1414), - [anon_sym_let_DASHenv] = ACTIONS(1414), - [anon_sym_mut] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_SEMI] = ACTIONS(1414), - [sym_cmd_identifier] = ACTIONS(1414), - [anon_sym_LF] = ACTIONS(1416), - [anon_sym_def] = ACTIONS(1414), - [anon_sym_export_DASHenv] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym_module] = ACTIONS(1414), - [anon_sym_use] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_DOLLAR] = ACTIONS(1414), - [anon_sym_error] = ACTIONS(1414), - [anon_sym_GT] = ACTIONS(1414), - [anon_sym_DASH_DASH] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_in] = ACTIONS(1414), - [anon_sym_loop] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1414), - [anon_sym_DOT_DOT] = ACTIONS(1414), - [anon_sym_try] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_source] = ACTIONS(1414), - [anon_sym_source_DASHenv] = ACTIONS(1414), - [anon_sym_register] = ACTIONS(1414), - [anon_sym_hide] = ACTIONS(1414), - [anon_sym_hide_DASHenv] = ACTIONS(1414), - [anon_sym_overlay] = ACTIONS(1414), - [anon_sym_as] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_where] = ACTIONS(1414), - [anon_sym_STAR_STAR] = ACTIONS(1414), - [anon_sym_PLUS_PLUS] = ACTIONS(1414), - [anon_sym_SLASH] = ACTIONS(1414), - [anon_sym_mod] = ACTIONS(1414), - [anon_sym_SLASH_SLASH] = ACTIONS(1414), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_bit_DASHshl] = ACTIONS(1414), - [anon_sym_bit_DASHshr] = ACTIONS(1414), - [anon_sym_EQ_EQ] = ACTIONS(1414), - [anon_sym_BANG_EQ] = ACTIONS(1414), - [anon_sym_LT2] = ACTIONS(1414), - [anon_sym_LT_EQ] = ACTIONS(1414), - [anon_sym_GT_EQ] = ACTIONS(1414), - [anon_sym_not_DASHin] = ACTIONS(1414), - [anon_sym_starts_DASHwith] = ACTIONS(1414), - [anon_sym_ends_DASHwith] = ACTIONS(1414), - [anon_sym_EQ_TILDE] = ACTIONS(1414), - [anon_sym_BANG_TILDE] = ACTIONS(1414), - [anon_sym_bit_DASHand] = ACTIONS(1414), - [anon_sym_bit_DASHxor] = ACTIONS(1414), - [anon_sym_bit_DASHor] = ACTIONS(1414), - [anon_sym_and] = ACTIONS(1414), - [anon_sym_xor] = ACTIONS(1414), - [anon_sym_or] = ACTIONS(1414), - [anon_sym_not] = ACTIONS(1414), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1414), - [anon_sym_DOT_DOT_LT] = ACTIONS(1414), - [anon_sym_null] = ACTIONS(1414), - [anon_sym_true] = ACTIONS(1414), - [anon_sym_false] = ACTIONS(1414), - [aux_sym__val_number_decimal_token1] = ACTIONS(1414), - [aux_sym__val_number_decimal_token2] = ACTIONS(1414), - [anon_sym_DOT2] = ACTIONS(1414), - [aux_sym__val_number_decimal_token3] = ACTIONS(1414), - [aux_sym__val_number_token1] = ACTIONS(1414), - [aux_sym__val_number_token2] = ACTIONS(1414), - [aux_sym__val_number_token3] = ACTIONS(1414), - [aux_sym__val_number_token4] = ACTIONS(1414), - [aux_sym__val_number_token5] = ACTIONS(1414), - [aux_sym__val_number_token6] = ACTIONS(1414), - [anon_sym_0b] = ACTIONS(1414), - [anon_sym_0o] = ACTIONS(1414), - [anon_sym_0x] = ACTIONS(1414), - [sym_val_date] = ACTIONS(1414), - [anon_sym_DQUOTE] = ACTIONS(1414), - [sym__str_single_quotes] = ACTIONS(1414), - [sym__str_back_ticks] = ACTIONS(1414), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1414), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1414), + [548] = { + [sym_comment] = STATE(548), + [anon_sym_export] = ACTIONS(1072), + [anon_sym_alias] = ACTIONS(1072), + [anon_sym_let] = ACTIONS(1072), + [anon_sym_let_DASHenv] = ACTIONS(1072), + [anon_sym_mut] = ACTIONS(1072), + [anon_sym_const] = ACTIONS(1072), + [sym_cmd_identifier] = ACTIONS(1072), + [anon_sym_def] = ACTIONS(1072), + [anon_sym_export_DASHenv] = ACTIONS(1072), + [anon_sym_extern] = ACTIONS(1072), + [anon_sym_module] = ACTIONS(1072), + [anon_sym_use] = ACTIONS(1072), + [anon_sym_LPAREN] = ACTIONS(1072), + [anon_sym_DOLLAR] = ACTIONS(1072), + [anon_sym_error] = ACTIONS(1072), + [anon_sym_list] = ACTIONS(1072), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_break] = ACTIONS(1072), + [anon_sym_continue] = ACTIONS(1072), + [anon_sym_for] = ACTIONS(1072), + [anon_sym_in] = ACTIONS(1078), + [anon_sym_loop] = ACTIONS(1072), + [anon_sym_make] = ACTIONS(1072), + [anon_sym_while] = ACTIONS(1072), + [anon_sym_do] = ACTIONS(1072), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_else] = ACTIONS(1072), + [anon_sym_match] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1072), + [anon_sym_try] = ACTIONS(1072), + [anon_sym_catch] = ACTIONS(1072), + [anon_sym_return] = ACTIONS(1072), + [anon_sym_source] = ACTIONS(1072), + [anon_sym_source_DASHenv] = ACTIONS(1072), + [anon_sym_register] = ACTIONS(1072), + [anon_sym_hide] = ACTIONS(1072), + [anon_sym_hide_DASHenv] = ACTIONS(1072), + [anon_sym_overlay] = ACTIONS(1072), + [anon_sym_new] = ACTIONS(1072), + [anon_sym_as] = ACTIONS(1072), + [anon_sym_STAR] = ACTIONS(1076), + [anon_sym_STAR_STAR] = ACTIONS(1076), + [anon_sym_PLUS_PLUS] = ACTIONS(1076), + [anon_sym_SLASH] = ACTIONS(1076), + [anon_sym_mod] = ACTIONS(1076), + [anon_sym_SLASH_SLASH] = ACTIONS(1076), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_bit_DASHshl] = ACTIONS(1076), + [anon_sym_bit_DASHshr] = ACTIONS(1076), + [anon_sym_EQ_EQ] = ACTIONS(1076), + [anon_sym_BANG_EQ] = ACTIONS(1076), + [anon_sym_LT2] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1076), + [anon_sym_GT_EQ] = ACTIONS(1076), + [anon_sym_not_DASHin] = ACTIONS(1076), + [anon_sym_starts_DASHwith] = ACTIONS(1076), + [anon_sym_ends_DASHwith] = ACTIONS(1076), + [anon_sym_EQ_TILDE] = ACTIONS(1076), + [anon_sym_BANG_TILDE] = ACTIONS(1076), + [anon_sym_bit_DASHand] = ACTIONS(1076), + [anon_sym_bit_DASHxor] = ACTIONS(1076), + [anon_sym_bit_DASHor] = ACTIONS(1076), + [anon_sym_and] = ACTIONS(1076), + [anon_sym_xor] = ACTIONS(1076), + [anon_sym_or] = ACTIONS(1076), + [anon_sym_DOT_DOT2] = ACTIONS(1440), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1442), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1442), + [aux_sym__val_number_decimal_token1] = ACTIONS(1072), + [aux_sym__val_number_decimal_token2] = ACTIONS(1072), + [anon_sym_DOT2] = ACTIONS(1072), + [aux_sym__val_number_decimal_token3] = ACTIONS(1072), + [aux_sym__val_number_token1] = ACTIONS(1072), + [aux_sym__val_number_token2] = ACTIONS(1072), + [aux_sym__val_number_token3] = ACTIONS(1072), + [aux_sym__val_number_token4] = ACTIONS(1072), + [aux_sym__val_number_token5] = ACTIONS(1072), + [aux_sym__val_number_token6] = ACTIONS(1072), + [anon_sym_DQUOTE] = ACTIONS(1072), + [sym__str_single_quotes] = ACTIONS(1072), + [sym__str_back_ticks] = ACTIONS(1072), + [sym__entry_separator] = ACTIONS(1074), + [aux_sym__record_key_token2] = ACTIONS(1072), [anon_sym_POUND] = ACTIONS(113), }, - [533] = { - [sym_comment] = STATE(533), - [ts_builtin_sym_end] = ACTIONS(938), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_error] = ACTIONS(936), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_where] = ACTIONS(936), - [anon_sym_STAR_STAR] = ACTIONS(936), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(936), - [anon_sym_SLASH_SLASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(936), - [anon_sym_bit_DASHshr] = ACTIONS(936), - [anon_sym_EQ_EQ] = ACTIONS(936), - [anon_sym_BANG_EQ] = ACTIONS(936), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(936), - [anon_sym_GT_EQ] = ACTIONS(936), - [anon_sym_not_DASHin] = ACTIONS(936), - [anon_sym_starts_DASHwith] = ACTIONS(936), - [anon_sym_ends_DASHwith] = ACTIONS(936), - [anon_sym_EQ_TILDE] = ACTIONS(936), - [anon_sym_BANG_TILDE] = ACTIONS(936), - [anon_sym_bit_DASHand] = ACTIONS(936), - [anon_sym_bit_DASHxor] = ACTIONS(936), - [anon_sym_bit_DASHor] = ACTIONS(936), - [anon_sym_and] = ACTIONS(936), - [anon_sym_xor] = ACTIONS(936), - [anon_sym_or] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [aux_sym__immediate_decimal_token1] = ACTIONS(1427), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [aux_sym_unquoted_token2] = ACTIONS(1429), - [anon_sym_POUND] = ACTIONS(113), + [549] = { + [sym_comment] = STATE(549), + [anon_sym_export] = ACTIONS(1041), + [anon_sym_alias] = ACTIONS(1041), + [anon_sym_let] = ACTIONS(1041), + [anon_sym_let_DASHenv] = ACTIONS(1041), + [anon_sym_mut] = ACTIONS(1041), + [anon_sym_const] = ACTIONS(1041), + [sym_cmd_identifier] = ACTIONS(1041), + [anon_sym_def] = ACTIONS(1041), + [anon_sym_export_DASHenv] = ACTIONS(1041), + [anon_sym_extern] = ACTIONS(1041), + [anon_sym_module] = ACTIONS(1041), + [anon_sym_use] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1043), + [anon_sym_error] = ACTIONS(1041), + [anon_sym_list] = ACTIONS(1041), + [anon_sym_GT] = ACTIONS(1041), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_break] = ACTIONS(1041), + [anon_sym_continue] = ACTIONS(1041), + [anon_sym_for] = ACTIONS(1041), + [anon_sym_in] = ACTIONS(1041), + [anon_sym_loop] = ACTIONS(1041), + [anon_sym_make] = ACTIONS(1041), + [anon_sym_while] = ACTIONS(1041), + [anon_sym_do] = ACTIONS(1041), + [anon_sym_if] = ACTIONS(1041), + [anon_sym_else] = ACTIONS(1041), + [anon_sym_match] = ACTIONS(1041), + [anon_sym_RBRACE] = ACTIONS(1043), + [anon_sym_try] = ACTIONS(1041), + [anon_sym_catch] = ACTIONS(1041), + [anon_sym_return] = ACTIONS(1041), + [anon_sym_source] = ACTIONS(1041), + [anon_sym_source_DASHenv] = ACTIONS(1041), + [anon_sym_register] = ACTIONS(1041), + [anon_sym_hide] = ACTIONS(1041), + [anon_sym_hide_DASHenv] = ACTIONS(1041), + [anon_sym_overlay] = ACTIONS(1041), + [anon_sym_new] = ACTIONS(1041), + [anon_sym_as] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_STAR_STAR] = ACTIONS(1043), + [anon_sym_PLUS_PLUS] = ACTIONS(1043), + [anon_sym_SLASH] = ACTIONS(1041), + [anon_sym_mod] = ACTIONS(1041), + [anon_sym_SLASH_SLASH] = ACTIONS(1043), + [anon_sym_PLUS] = ACTIONS(1041), + [anon_sym_bit_DASHshl] = ACTIONS(1041), + [anon_sym_bit_DASHshr] = ACTIONS(1041), + [anon_sym_EQ_EQ] = ACTIONS(1043), + [anon_sym_BANG_EQ] = ACTIONS(1043), + [anon_sym_LT2] = ACTIONS(1041), + [anon_sym_LT_EQ] = ACTIONS(1043), + [anon_sym_GT_EQ] = ACTIONS(1043), + [anon_sym_not_DASHin] = ACTIONS(1041), + [anon_sym_starts_DASHwith] = ACTIONS(1041), + [anon_sym_ends_DASHwith] = ACTIONS(1041), + [anon_sym_EQ_TILDE] = ACTIONS(1043), + [anon_sym_BANG_TILDE] = ACTIONS(1043), + [anon_sym_bit_DASHand] = ACTIONS(1041), + [anon_sym_bit_DASHxor] = ACTIONS(1041), + [anon_sym_bit_DASHor] = ACTIONS(1041), + [anon_sym_and] = ACTIONS(1041), + [anon_sym_xor] = ACTIONS(1041), + [anon_sym_or] = ACTIONS(1041), + [anon_sym_DOT_DOT2] = ACTIONS(1041), + [anon_sym_DOT] = ACTIONS(1041), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1043), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1043), + [aux_sym__val_number_decimal_token1] = ACTIONS(1041), + [aux_sym__val_number_decimal_token2] = ACTIONS(1043), + [anon_sym_DOT2] = ACTIONS(1041), + [aux_sym__val_number_decimal_token3] = ACTIONS(1043), + [aux_sym__val_number_token1] = ACTIONS(1043), + [aux_sym__val_number_token2] = ACTIONS(1043), + [aux_sym__val_number_token3] = ACTIONS(1043), + [aux_sym__val_number_token4] = ACTIONS(1041), + [aux_sym__val_number_token5] = ACTIONS(1043), + [aux_sym__val_number_token6] = ACTIONS(1041), + [anon_sym_DQUOTE] = ACTIONS(1043), + [sym__str_single_quotes] = ACTIONS(1043), + [sym__str_back_ticks] = ACTIONS(1043), + [aux_sym__record_key_token2] = ACTIONS(1041), + [anon_sym_POUND] = ACTIONS(3), }, - [534] = { - [sym_comment] = STATE(534), - [ts_builtin_sym_end] = ACTIONS(1364), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_alias] = ACTIONS(1362), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_let_DASHenv] = ACTIONS(1362), - [anon_sym_mut] = ACTIONS(1362), - [anon_sym_const] = ACTIONS(1362), - [anon_sym_SEMI] = ACTIONS(1362), - [sym_cmd_identifier] = ACTIONS(1362), - [anon_sym_LF] = ACTIONS(1364), - [anon_sym_def] = ACTIONS(1362), - [anon_sym_export_DASHenv] = ACTIONS(1362), - [anon_sym_extern] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_use] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1362), - [anon_sym_LPAREN] = ACTIONS(1362), - [anon_sym_DOLLAR] = ACTIONS(1362), - [anon_sym_error] = ACTIONS(1362), - [anon_sym_GT] = ACTIONS(1362), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_break] = ACTIONS(1362), - [anon_sym_continue] = ACTIONS(1362), - [anon_sym_for] = ACTIONS(1362), - [anon_sym_in] = ACTIONS(1362), - [anon_sym_loop] = ACTIONS(1362), - [anon_sym_while] = ACTIONS(1362), - [anon_sym_do] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1362), - [anon_sym_match] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_DOT_DOT] = ACTIONS(1362), - [anon_sym_try] = ACTIONS(1362), - [anon_sym_return] = ACTIONS(1362), - [anon_sym_source] = ACTIONS(1362), - [anon_sym_source_DASHenv] = ACTIONS(1362), - [anon_sym_register] = ACTIONS(1362), - [anon_sym_hide] = ACTIONS(1362), - [anon_sym_hide_DASHenv] = ACTIONS(1362), - [anon_sym_overlay] = ACTIONS(1362), - [anon_sym_as] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_where] = ACTIONS(1362), - [anon_sym_STAR_STAR] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_SLASH] = ACTIONS(1362), - [anon_sym_mod] = ACTIONS(1362), - [anon_sym_SLASH_SLASH] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_bit_DASHshl] = ACTIONS(1362), - [anon_sym_bit_DASHshr] = ACTIONS(1362), - [anon_sym_EQ_EQ] = ACTIONS(1362), - [anon_sym_BANG_EQ] = ACTIONS(1362), - [anon_sym_LT2] = ACTIONS(1362), - [anon_sym_LT_EQ] = ACTIONS(1362), - [anon_sym_GT_EQ] = ACTIONS(1362), - [anon_sym_not_DASHin] = ACTIONS(1362), - [anon_sym_starts_DASHwith] = ACTIONS(1362), - [anon_sym_ends_DASHwith] = ACTIONS(1362), - [anon_sym_EQ_TILDE] = ACTIONS(1362), - [anon_sym_BANG_TILDE] = ACTIONS(1362), - [anon_sym_bit_DASHand] = ACTIONS(1362), - [anon_sym_bit_DASHxor] = ACTIONS(1362), - [anon_sym_bit_DASHor] = ACTIONS(1362), - [anon_sym_and] = ACTIONS(1362), - [anon_sym_xor] = ACTIONS(1362), - [anon_sym_or] = ACTIONS(1362), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1362), - [anon_sym_DOT_DOT_LT] = ACTIONS(1362), - [anon_sym_null] = ACTIONS(1362), - [anon_sym_true] = ACTIONS(1362), - [anon_sym_false] = ACTIONS(1362), - [aux_sym__val_number_decimal_token1] = ACTIONS(1362), - [aux_sym__val_number_decimal_token2] = ACTIONS(1362), - [anon_sym_DOT2] = ACTIONS(1362), - [aux_sym__val_number_decimal_token3] = ACTIONS(1362), - [aux_sym__val_number_token1] = ACTIONS(1362), - [aux_sym__val_number_token2] = ACTIONS(1362), - [aux_sym__val_number_token3] = ACTIONS(1362), - [aux_sym__val_number_token4] = ACTIONS(1362), - [aux_sym__val_number_token5] = ACTIONS(1362), - [aux_sym__val_number_token6] = ACTIONS(1362), - [anon_sym_0b] = ACTIONS(1362), - [anon_sym_0o] = ACTIONS(1362), - [anon_sym_0x] = ACTIONS(1362), - [sym_val_date] = ACTIONS(1362), - [anon_sym_DQUOTE] = ACTIONS(1362), - [sym__str_single_quotes] = ACTIONS(1362), - [sym__str_back_ticks] = ACTIONS(1362), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1362), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1362), - [anon_sym_CARET] = ACTIONS(1362), + [550] = { + [sym_path] = STATE(591), + [sym_comment] = STATE(550), + [aux_sym_cell_path_repeat1] = STATE(551), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_alias] = ACTIONS(1006), + [anon_sym_let] = ACTIONS(1006), + [anon_sym_let_DASHenv] = ACTIONS(1006), + [anon_sym_mut] = ACTIONS(1006), + [anon_sym_const] = ACTIONS(1006), + [sym_cmd_identifier] = ACTIONS(1006), + [anon_sym_def] = ACTIONS(1006), + [anon_sym_export_DASHenv] = ACTIONS(1006), + [anon_sym_extern] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_use] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_error] = ACTIONS(1006), + [anon_sym_list] = ACTIONS(1006), + [anon_sym_GT] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_break] = ACTIONS(1006), + [anon_sym_continue] = ACTIONS(1006), + [anon_sym_for] = ACTIONS(1006), + [anon_sym_in] = ACTIONS(1006), + [anon_sym_loop] = ACTIONS(1006), + [anon_sym_make] = ACTIONS(1006), + [anon_sym_while] = ACTIONS(1006), + [anon_sym_do] = ACTIONS(1006), + [anon_sym_if] = ACTIONS(1006), + [anon_sym_else] = ACTIONS(1006), + [anon_sym_match] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(1006), + [anon_sym_try] = ACTIONS(1006), + [anon_sym_catch] = ACTIONS(1006), + [anon_sym_return] = ACTIONS(1006), + [anon_sym_source] = ACTIONS(1006), + [anon_sym_source_DASHenv] = ACTIONS(1006), + [anon_sym_register] = ACTIONS(1006), + [anon_sym_hide] = ACTIONS(1006), + [anon_sym_hide_DASHenv] = ACTIONS(1006), + [anon_sym_overlay] = ACTIONS(1006), + [anon_sym_new] = ACTIONS(1006), + [anon_sym_as] = ACTIONS(1006), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_STAR_STAR] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_mod] = ACTIONS(1006), + [anon_sym_SLASH_SLASH] = ACTIONS(1006), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_bit_DASHshl] = ACTIONS(1006), + [anon_sym_bit_DASHshr] = ACTIONS(1006), + [anon_sym_EQ_EQ] = ACTIONS(1006), + [anon_sym_BANG_EQ] = ACTIONS(1006), + [anon_sym_LT2] = ACTIONS(1006), + [anon_sym_LT_EQ] = ACTIONS(1006), + [anon_sym_GT_EQ] = ACTIONS(1006), + [anon_sym_not_DASHin] = ACTIONS(1006), + [anon_sym_starts_DASHwith] = ACTIONS(1006), + [anon_sym_ends_DASHwith] = ACTIONS(1006), + [anon_sym_EQ_TILDE] = ACTIONS(1006), + [anon_sym_BANG_TILDE] = ACTIONS(1006), + [anon_sym_bit_DASHand] = ACTIONS(1006), + [anon_sym_bit_DASHxor] = ACTIONS(1006), + [anon_sym_bit_DASHor] = ACTIONS(1006), + [anon_sym_and] = ACTIONS(1006), + [anon_sym_xor] = ACTIONS(1006), + [anon_sym_or] = ACTIONS(1006), + [anon_sym_DOT] = ACTIONS(1438), + [aux_sym__val_number_decimal_token1] = ACTIONS(1006), + [aux_sym__val_number_decimal_token2] = ACTIONS(1006), + [anon_sym_DOT2] = ACTIONS(1006), + [aux_sym__val_number_decimal_token3] = ACTIONS(1006), + [aux_sym__val_number_token1] = ACTIONS(1006), + [aux_sym__val_number_token2] = ACTIONS(1006), + [aux_sym__val_number_token3] = ACTIONS(1006), + [aux_sym__val_number_token4] = ACTIONS(1006), + [aux_sym__val_number_token5] = ACTIONS(1006), + [aux_sym__val_number_token6] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym__str_single_quotes] = ACTIONS(1006), + [sym__str_back_ticks] = ACTIONS(1006), + [sym__entry_separator] = ACTIONS(1008), + [aux_sym__record_key_token2] = ACTIONS(1006), [anon_sym_POUND] = ACTIONS(113), }, - [535] = { - [sym_comment] = STATE(535), - [anon_sym_export] = ACTIONS(1247), - [anon_sym_alias] = ACTIONS(1247), - [anon_sym_let] = ACTIONS(1247), - [anon_sym_let_DASHenv] = ACTIONS(1247), - [anon_sym_mut] = ACTIONS(1247), - [anon_sym_const] = ACTIONS(1247), - [anon_sym_SEMI] = ACTIONS(1247), - [sym_cmd_identifier] = ACTIONS(1247), - [anon_sym_LF] = ACTIONS(1249), - [anon_sym_def] = ACTIONS(1247), - [anon_sym_export_DASHenv] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1247), - [anon_sym_module] = ACTIONS(1247), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_LBRACK] = ACTIONS(1247), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_RPAREN] = ACTIONS(1247), - [anon_sym_DOLLAR] = ACTIONS(1247), - [anon_sym_error] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1247), - [anon_sym_break] = ACTIONS(1247), - [anon_sym_continue] = ACTIONS(1247), - [anon_sym_for] = ACTIONS(1247), - [anon_sym_in] = ACTIONS(1247), - [anon_sym_loop] = ACTIONS(1247), - [anon_sym_while] = ACTIONS(1247), - [anon_sym_do] = ACTIONS(1247), - [anon_sym_if] = ACTIONS(1247), - [anon_sym_match] = ACTIONS(1247), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_RBRACE] = ACTIONS(1247), - [anon_sym_DOT_DOT] = ACTIONS(1247), - [anon_sym_try] = ACTIONS(1247), - [anon_sym_return] = ACTIONS(1247), - [anon_sym_source] = ACTIONS(1247), - [anon_sym_source_DASHenv] = ACTIONS(1247), - [anon_sym_register] = ACTIONS(1247), - [anon_sym_hide] = ACTIONS(1247), - [anon_sym_hide_DASHenv] = ACTIONS(1247), - [anon_sym_overlay] = ACTIONS(1247), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_where] = ACTIONS(1247), - [anon_sym_STAR_STAR] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_mod] = ACTIONS(1247), - [anon_sym_SLASH_SLASH] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1247), - [anon_sym_bit_DASHshl] = ACTIONS(1247), - [anon_sym_bit_DASHshr] = ACTIONS(1247), - [anon_sym_EQ_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1247), - [anon_sym_LT2] = ACTIONS(1247), - [anon_sym_LT_EQ] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1247), - [anon_sym_not_DASHin] = ACTIONS(1247), - [anon_sym_starts_DASHwith] = ACTIONS(1247), - [anon_sym_ends_DASHwith] = ACTIONS(1247), - [anon_sym_EQ_TILDE] = ACTIONS(1247), - [anon_sym_BANG_TILDE] = ACTIONS(1247), - [anon_sym_bit_DASHand] = ACTIONS(1247), - [anon_sym_bit_DASHxor] = ACTIONS(1247), - [anon_sym_bit_DASHor] = ACTIONS(1247), - [anon_sym_and] = ACTIONS(1247), - [anon_sym_xor] = ACTIONS(1247), - [anon_sym_or] = ACTIONS(1247), - [anon_sym_not] = ACTIONS(1247), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1247), - [anon_sym_DOT_DOT_LT] = ACTIONS(1247), - [anon_sym_null] = ACTIONS(1247), - [anon_sym_true] = ACTIONS(1247), - [anon_sym_false] = ACTIONS(1247), - [aux_sym__val_number_decimal_token1] = ACTIONS(1247), - [aux_sym__val_number_decimal_token2] = ACTIONS(1247), - [anon_sym_DOT2] = ACTIONS(1247), - [aux_sym__val_number_decimal_token3] = ACTIONS(1247), - [aux_sym__val_number_token1] = ACTIONS(1247), - [aux_sym__val_number_token2] = ACTIONS(1247), - [aux_sym__val_number_token3] = ACTIONS(1247), - [aux_sym__val_number_token4] = ACTIONS(1247), - [aux_sym__val_number_token5] = ACTIONS(1247), - [aux_sym__val_number_token6] = ACTIONS(1247), - [anon_sym_0b] = ACTIONS(1247), - [anon_sym_0o] = ACTIONS(1247), - [anon_sym_0x] = ACTIONS(1247), - [sym_val_date] = ACTIONS(1247), - [anon_sym_DQUOTE] = ACTIONS(1247), - [sym__str_single_quotes] = ACTIONS(1247), - [sym__str_back_ticks] = ACTIONS(1247), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1247), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1247), - [anon_sym_CARET] = ACTIONS(1247), - [aux_sym_unquoted_token6] = ACTIONS(1251), + [551] = { + [sym_path] = STATE(591), + [sym_comment] = STATE(551), + [aux_sym_cell_path_repeat1] = STATE(551), + [anon_sym_export] = ACTIONS(985), + [anon_sym_alias] = ACTIONS(985), + [anon_sym_let] = ACTIONS(985), + [anon_sym_let_DASHenv] = ACTIONS(985), + [anon_sym_mut] = ACTIONS(985), + [anon_sym_const] = ACTIONS(985), + [sym_cmd_identifier] = ACTIONS(985), + [anon_sym_def] = ACTIONS(985), + [anon_sym_export_DASHenv] = ACTIONS(985), + [anon_sym_extern] = ACTIONS(985), + [anon_sym_module] = ACTIONS(985), + [anon_sym_use] = ACTIONS(985), + [anon_sym_LPAREN] = ACTIONS(985), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_error] = ACTIONS(985), + [anon_sym_list] = ACTIONS(985), + [anon_sym_GT] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_break] = ACTIONS(985), + [anon_sym_continue] = ACTIONS(985), + [anon_sym_for] = ACTIONS(985), + [anon_sym_in] = ACTIONS(985), + [anon_sym_loop] = ACTIONS(985), + [anon_sym_make] = ACTIONS(985), + [anon_sym_while] = ACTIONS(985), + [anon_sym_do] = ACTIONS(985), + [anon_sym_if] = ACTIONS(985), + [anon_sym_else] = ACTIONS(985), + [anon_sym_match] = ACTIONS(985), + [anon_sym_RBRACE] = ACTIONS(985), + [anon_sym_try] = ACTIONS(985), + [anon_sym_catch] = ACTIONS(985), + [anon_sym_return] = ACTIONS(985), + [anon_sym_source] = ACTIONS(985), + [anon_sym_source_DASHenv] = ACTIONS(985), + [anon_sym_register] = ACTIONS(985), + [anon_sym_hide] = ACTIONS(985), + [anon_sym_hide_DASHenv] = ACTIONS(985), + [anon_sym_overlay] = ACTIONS(985), + [anon_sym_new] = ACTIONS(985), + [anon_sym_as] = ACTIONS(985), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_STAR_STAR] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(985), + [anon_sym_SLASH] = ACTIONS(985), + [anon_sym_mod] = ACTIONS(985), + [anon_sym_SLASH_SLASH] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_bit_DASHshl] = ACTIONS(985), + [anon_sym_bit_DASHshr] = ACTIONS(985), + [anon_sym_EQ_EQ] = ACTIONS(985), + [anon_sym_BANG_EQ] = ACTIONS(985), + [anon_sym_LT2] = ACTIONS(985), + [anon_sym_LT_EQ] = ACTIONS(985), + [anon_sym_GT_EQ] = ACTIONS(985), + [anon_sym_not_DASHin] = ACTIONS(985), + [anon_sym_starts_DASHwith] = ACTIONS(985), + [anon_sym_ends_DASHwith] = ACTIONS(985), + [anon_sym_EQ_TILDE] = ACTIONS(985), + [anon_sym_BANG_TILDE] = ACTIONS(985), + [anon_sym_bit_DASHand] = ACTIONS(985), + [anon_sym_bit_DASHxor] = ACTIONS(985), + [anon_sym_bit_DASHor] = ACTIONS(985), + [anon_sym_and] = ACTIONS(985), + [anon_sym_xor] = ACTIONS(985), + [anon_sym_or] = ACTIONS(985), + [anon_sym_DOT] = ACTIONS(1444), + [aux_sym__val_number_decimal_token1] = ACTIONS(985), + [aux_sym__val_number_decimal_token2] = ACTIONS(985), + [anon_sym_DOT2] = ACTIONS(985), + [aux_sym__val_number_decimal_token3] = ACTIONS(985), + [aux_sym__val_number_token1] = ACTIONS(985), + [aux_sym__val_number_token2] = ACTIONS(985), + [aux_sym__val_number_token3] = ACTIONS(985), + [aux_sym__val_number_token4] = ACTIONS(985), + [aux_sym__val_number_token5] = ACTIONS(985), + [aux_sym__val_number_token6] = ACTIONS(985), + [anon_sym_DQUOTE] = ACTIONS(985), + [sym__str_single_quotes] = ACTIONS(985), + [sym__str_back_ticks] = ACTIONS(985), + [sym__entry_separator] = ACTIONS(987), + [aux_sym__record_key_token2] = ACTIONS(985), [anon_sym_POUND] = ACTIONS(113), }, - [536] = { - [sym_comment] = STATE(536), - [anon_sym_export] = ACTIONS(1253), - [anon_sym_alias] = ACTIONS(1253), - [anon_sym_let] = ACTIONS(1253), - [anon_sym_let_DASHenv] = ACTIONS(1253), - [anon_sym_mut] = ACTIONS(1253), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_SEMI] = ACTIONS(1253), - [sym_cmd_identifier] = ACTIONS(1253), - [anon_sym_LF] = ACTIONS(1255), - [anon_sym_def] = ACTIONS(1253), - [anon_sym_export_DASHenv] = ACTIONS(1253), - [anon_sym_extern] = ACTIONS(1253), - [anon_sym_module] = ACTIONS(1253), - [anon_sym_use] = ACTIONS(1253), - [anon_sym_LBRACK] = ACTIONS(1253), - [anon_sym_LPAREN] = ACTIONS(1253), - [anon_sym_RPAREN] = ACTIONS(1253), - [anon_sym_DOLLAR] = ACTIONS(1253), - [anon_sym_error] = ACTIONS(1253), - [anon_sym_GT] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_break] = ACTIONS(1253), - [anon_sym_continue] = ACTIONS(1253), - [anon_sym_for] = ACTIONS(1253), - [anon_sym_in] = ACTIONS(1253), - [anon_sym_loop] = ACTIONS(1253), - [anon_sym_while] = ACTIONS(1253), - [anon_sym_do] = ACTIONS(1253), - [anon_sym_if] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1253), - [anon_sym_LBRACE] = ACTIONS(1253), - [anon_sym_RBRACE] = ACTIONS(1253), - [anon_sym_DOT_DOT] = ACTIONS(1253), - [anon_sym_try] = ACTIONS(1253), - [anon_sym_return] = ACTIONS(1253), - [anon_sym_source] = ACTIONS(1253), - [anon_sym_source_DASHenv] = ACTIONS(1253), - [anon_sym_register] = ACTIONS(1253), - [anon_sym_hide] = ACTIONS(1253), - [anon_sym_hide_DASHenv] = ACTIONS(1253), - [anon_sym_overlay] = ACTIONS(1253), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_where] = ACTIONS(1253), - [anon_sym_STAR_STAR] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_mod] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_bit_DASHshl] = ACTIONS(1253), - [anon_sym_bit_DASHshr] = ACTIONS(1253), - [anon_sym_EQ_EQ] = ACTIONS(1253), - [anon_sym_BANG_EQ] = ACTIONS(1253), - [anon_sym_LT2] = ACTIONS(1253), - [anon_sym_LT_EQ] = ACTIONS(1253), - [anon_sym_GT_EQ] = ACTIONS(1253), - [anon_sym_not_DASHin] = ACTIONS(1253), - [anon_sym_starts_DASHwith] = ACTIONS(1253), - [anon_sym_ends_DASHwith] = ACTIONS(1253), - [anon_sym_EQ_TILDE] = ACTIONS(1253), - [anon_sym_BANG_TILDE] = ACTIONS(1253), - [anon_sym_bit_DASHand] = ACTIONS(1253), - [anon_sym_bit_DASHxor] = ACTIONS(1253), - [anon_sym_bit_DASHor] = ACTIONS(1253), - [anon_sym_and] = ACTIONS(1253), - [anon_sym_xor] = ACTIONS(1253), - [anon_sym_or] = ACTIONS(1253), - [anon_sym_not] = ACTIONS(1253), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1253), - [anon_sym_DOT_DOT_LT] = ACTIONS(1253), - [anon_sym_null] = ACTIONS(1253), - [anon_sym_true] = ACTIONS(1253), - [anon_sym_false] = ACTIONS(1253), - [aux_sym__val_number_decimal_token1] = ACTIONS(1253), - [aux_sym__val_number_decimal_token2] = ACTIONS(1253), - [anon_sym_DOT2] = ACTIONS(1253), - [aux_sym__val_number_decimal_token3] = ACTIONS(1253), - [aux_sym__val_number_token1] = ACTIONS(1253), - [aux_sym__val_number_token2] = ACTIONS(1253), - [aux_sym__val_number_token3] = ACTIONS(1253), - [aux_sym__val_number_token4] = ACTIONS(1253), - [aux_sym__val_number_token5] = ACTIONS(1253), - [aux_sym__val_number_token6] = ACTIONS(1253), - [anon_sym_0b] = ACTIONS(1253), - [anon_sym_0o] = ACTIONS(1253), - [anon_sym_0x] = ACTIONS(1253), - [sym_val_date] = ACTIONS(1253), - [anon_sym_DQUOTE] = ACTIONS(1253), - [sym__str_single_quotes] = ACTIONS(1253), - [sym__str_back_ticks] = ACTIONS(1253), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1253), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1253), - [anon_sym_CARET] = ACTIONS(1253), - [aux_sym_unquoted_token6] = ACTIONS(1257), + [552] = { + [sym_cell_path] = STATE(619), + [sym_path] = STATE(546), + [sym_comment] = STATE(552), + [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), + [sym_cmd_identifier] = 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_DOLLAR] = ACTIONS(992), + [anon_sym_error] = ACTIONS(992), + [anon_sym_list] = ACTIONS(992), + [anon_sym_GT] = ACTIONS(992), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_break] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_in] = 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_new] = ACTIONS(992), + [anon_sym_as] = ACTIONS(992), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_STAR_STAR] = ACTIONS(992), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_SLASH] = ACTIONS(992), + [anon_sym_mod] = ACTIONS(992), + [anon_sym_SLASH_SLASH] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_bit_DASHshl] = ACTIONS(992), + [anon_sym_bit_DASHshr] = ACTIONS(992), + [anon_sym_EQ_EQ] = ACTIONS(992), + [anon_sym_BANG_EQ] = ACTIONS(992), + [anon_sym_LT2] = ACTIONS(992), + [anon_sym_LT_EQ] = ACTIONS(992), + [anon_sym_GT_EQ] = ACTIONS(992), + [anon_sym_not_DASHin] = ACTIONS(992), + [anon_sym_starts_DASHwith] = ACTIONS(992), + [anon_sym_ends_DASHwith] = ACTIONS(992), + [anon_sym_EQ_TILDE] = ACTIONS(992), + [anon_sym_BANG_TILDE] = ACTIONS(992), + [anon_sym_bit_DASHand] = ACTIONS(992), + [anon_sym_bit_DASHxor] = ACTIONS(992), + [anon_sym_bit_DASHor] = ACTIONS(992), + [anon_sym_and] = ACTIONS(992), + [anon_sym_xor] = ACTIONS(992), + [anon_sym_or] = ACTIONS(992), + [anon_sym_DOT] = ACTIONS(1438), + [aux_sym__val_number_decimal_token1] = ACTIONS(992), + [aux_sym__val_number_decimal_token2] = ACTIONS(992), + [anon_sym_DOT2] = ACTIONS(992), + [aux_sym__val_number_decimal_token3] = 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), + [sym__entry_separator] = ACTIONS(994), + [aux_sym__record_key_token2] = ACTIONS(992), [anon_sym_POUND] = ACTIONS(113), }, - [537] = { - [sym_comment] = STATE(537), - [anon_sym_export] = ACTIONS(1273), - [anon_sym_alias] = ACTIONS(1273), - [anon_sym_let] = ACTIONS(1273), - [anon_sym_let_DASHenv] = ACTIONS(1273), - [anon_sym_mut] = ACTIONS(1273), - [anon_sym_const] = ACTIONS(1273), - [anon_sym_SEMI] = ACTIONS(1273), - [sym_cmd_identifier] = ACTIONS(1273), - [anon_sym_LF] = ACTIONS(1275), - [anon_sym_def] = ACTIONS(1273), - [anon_sym_export_DASHenv] = ACTIONS(1273), - [anon_sym_extern] = ACTIONS(1273), - [anon_sym_module] = ACTIONS(1273), - [anon_sym_use] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1273), - [anon_sym_LPAREN] = ACTIONS(1273), - [anon_sym_RPAREN] = ACTIONS(1273), - [anon_sym_DOLLAR] = ACTIONS(1273), - [anon_sym_error] = ACTIONS(1273), - [anon_sym_GT] = ACTIONS(1273), - [anon_sym_DASH] = ACTIONS(1273), - [anon_sym_break] = ACTIONS(1273), - [anon_sym_continue] = ACTIONS(1273), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_in] = ACTIONS(1273), - [anon_sym_loop] = ACTIONS(1273), - [anon_sym_while] = ACTIONS(1273), - [anon_sym_do] = ACTIONS(1273), - [anon_sym_if] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_RBRACE] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_try] = ACTIONS(1273), - [anon_sym_return] = ACTIONS(1273), - [anon_sym_source] = ACTIONS(1273), - [anon_sym_source_DASHenv] = ACTIONS(1273), - [anon_sym_register] = ACTIONS(1273), - [anon_sym_hide] = ACTIONS(1273), - [anon_sym_hide_DASHenv] = ACTIONS(1273), - [anon_sym_overlay] = ACTIONS(1273), - [anon_sym_STAR] = ACTIONS(1273), - [anon_sym_where] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1273), - [anon_sym_PLUS_PLUS] = ACTIONS(1273), - [anon_sym_SLASH] = ACTIONS(1273), - [anon_sym_mod] = ACTIONS(1273), - [anon_sym_SLASH_SLASH] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(1273), - [anon_sym_bit_DASHshl] = ACTIONS(1273), - [anon_sym_bit_DASHshr] = ACTIONS(1273), - [anon_sym_EQ_EQ] = ACTIONS(1273), - [anon_sym_BANG_EQ] = ACTIONS(1273), - [anon_sym_LT2] = ACTIONS(1273), - [anon_sym_LT_EQ] = ACTIONS(1273), - [anon_sym_GT_EQ] = ACTIONS(1273), - [anon_sym_not_DASHin] = ACTIONS(1273), - [anon_sym_starts_DASHwith] = ACTIONS(1273), - [anon_sym_ends_DASHwith] = ACTIONS(1273), - [anon_sym_EQ_TILDE] = ACTIONS(1273), - [anon_sym_BANG_TILDE] = ACTIONS(1273), - [anon_sym_bit_DASHand] = ACTIONS(1273), - [anon_sym_bit_DASHxor] = ACTIONS(1273), - [anon_sym_bit_DASHor] = ACTIONS(1273), - [anon_sym_and] = ACTIONS(1273), - [anon_sym_xor] = ACTIONS(1273), - [anon_sym_or] = ACTIONS(1273), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1273), - [anon_sym_DOT_DOT_LT] = ACTIONS(1273), - [anon_sym_null] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1273), - [anon_sym_false] = ACTIONS(1273), - [aux_sym__val_number_decimal_token1] = ACTIONS(1273), - [aux_sym__val_number_decimal_token2] = ACTIONS(1273), - [anon_sym_DOT2] = ACTIONS(1273), - [aux_sym__val_number_decimal_token3] = ACTIONS(1273), - [aux_sym__val_number_token1] = ACTIONS(1273), - [aux_sym__val_number_token2] = ACTIONS(1273), - [aux_sym__val_number_token3] = ACTIONS(1273), - [aux_sym__val_number_token4] = ACTIONS(1273), - [aux_sym__val_number_token5] = ACTIONS(1273), - [aux_sym__val_number_token6] = ACTIONS(1273), - [anon_sym_0b] = ACTIONS(1273), - [anon_sym_0o] = ACTIONS(1273), - [anon_sym_0x] = ACTIONS(1273), - [sym_val_date] = ACTIONS(1273), - [anon_sym_DQUOTE] = ACTIONS(1273), - [sym__str_single_quotes] = ACTIONS(1273), - [sym__str_back_ticks] = ACTIONS(1273), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1273), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1273), - [anon_sym_CARET] = ACTIONS(1273), - [aux_sym_unquoted_token6] = ACTIONS(1257), + [553] = { + [sym__match_pattern_expression] = STATE(3963), + [sym__match_pattern_value] = STATE(4065), + [sym__match_pattern_list] = STATE(3899), + [sym__match_pattern_rest] = STATE(10484), + [sym__match_pattern_record] = STATE(4002), + [sym__expr_unary_minus] = STATE(3813), + [sym_expr_parenthesized] = STATE(3469), + [sym_val_range] = STATE(3817), + [sym__val_range] = STATE(10001), + [sym__val_range_with_end] = STATE(10049), + [sym__value] = STATE(9990), + [sym_val_nothing] = STATE(3892), + [sym_val_bool] = STATE(3567), + [sym_val_variable] = STATE(3464), + [sym__var] = STATE(3255), + [sym_val_number] = STATE(3892), + [sym__val_number_decimal] = STATE(3196), + [sym__val_number] = STATE(3845), + [sym_val_duration] = STATE(3892), + [sym_val_filesize] = STATE(3892), + [sym_val_binary] = STATE(3892), + [sym_val_string] = STATE(3892), + [sym__str_double_quotes] = STATE(3859), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(9919), + [sym_list_body] = STATE(10501), + [sym_val_entry] = STATE(9992), + [sym__list_item_expression] = STATE(10082), + [sym__list_item_starts_with_sign] = STATE(3819), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(3892), + [sym_val_closure] = STATE(6041), + [sym_short_flag] = STATE(3819), + [sym_long_flag] = STATE(3819), + [sym_long_flag_equals_value] = STATE(3793), + [sym__unquoted_in_list] = STATE(3568), + [sym__unquoted_in_list_with_expr] = STATE(10149), + [sym__unquoted_anonymous_prefix] = STATE(9874), + [sym_comment] = STATE(553), + [aux_sym__match_pattern_list_repeat1] = STATE(1298), + [aux_sym_list_body_repeat1] = STATE(851), + [anon_sym_LBRACK] = ACTIONS(1447), + [anon_sym_RBRACK] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1451), + [anon_sym_DOLLAR] = ACTIONS(1453), + [anon_sym_DASH_DASH] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_LBRACE] = ACTIONS(1459), + [anon_sym_DOT_DOT] = ACTIONS(1461), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1465), + [anon_sym_DOT_DOT_LT] = ACTIONS(1465), + [anon_sym_null] = ACTIONS(1467), + [anon_sym_true] = ACTIONS(1469), + [anon_sym_false] = ACTIONS(1469), + [aux_sym__val_number_decimal_token1] = ACTIONS(1471), + [aux_sym__val_number_decimal_token2] = ACTIONS(1473), + [anon_sym_DOT2] = ACTIONS(1475), + [aux_sym__val_number_decimal_token3] = ACTIONS(1477), + [aux_sym__val_number_token1] = ACTIONS(1479), + [aux_sym__val_number_token2] = ACTIONS(1479), + [aux_sym__val_number_token3] = ACTIONS(1479), + [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(1483), + [anon_sym_0o] = ACTIONS(1485), + [anon_sym_0x] = ACTIONS(1485), + [sym_val_date] = ACTIONS(1487), + [anon_sym_DQUOTE] = ACTIONS(1489), + [sym__str_single_quotes] = ACTIONS(1491), + [sym__str_back_ticks] = ACTIONS(1491), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(3), + }, + [554] = { + [sym_comment] = STATE(554), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_alias] = ACTIONS(1068), + [anon_sym_let] = ACTIONS(1068), + [anon_sym_let_DASHenv] = ACTIONS(1068), + [anon_sym_mut] = ACTIONS(1068), + [anon_sym_const] = ACTIONS(1068), + [sym_cmd_identifier] = ACTIONS(1068), + [anon_sym_def] = ACTIONS(1068), + [anon_sym_export_DASHenv] = ACTIONS(1068), + [anon_sym_extern] = ACTIONS(1068), + [anon_sym_module] = ACTIONS(1068), + [anon_sym_use] = ACTIONS(1068), + [anon_sym_LPAREN] = ACTIONS(1068), + [anon_sym_DOLLAR] = ACTIONS(1068), + [anon_sym_error] = ACTIONS(1068), + [anon_sym_list] = ACTIONS(1068), + [anon_sym_GT] = ACTIONS(1068), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_break] = ACTIONS(1068), + [anon_sym_continue] = ACTIONS(1068), + [anon_sym_for] = ACTIONS(1068), + [anon_sym_in] = ACTIONS(1068), + [anon_sym_loop] = ACTIONS(1068), + [anon_sym_make] = ACTIONS(1068), + [anon_sym_while] = ACTIONS(1068), + [anon_sym_do] = ACTIONS(1068), + [anon_sym_if] = ACTIONS(1068), + [anon_sym_else] = ACTIONS(1068), + [anon_sym_match] = ACTIONS(1068), + [anon_sym_RBRACE] = ACTIONS(1068), + [anon_sym_try] = ACTIONS(1068), + [anon_sym_catch] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1068), + [anon_sym_source] = ACTIONS(1068), + [anon_sym_source_DASHenv] = ACTIONS(1068), + [anon_sym_register] = ACTIONS(1068), + [anon_sym_hide] = ACTIONS(1068), + [anon_sym_hide_DASHenv] = ACTIONS(1068), + [anon_sym_overlay] = ACTIONS(1068), + [anon_sym_new] = ACTIONS(1068), + [anon_sym_as] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_STAR_STAR] = ACTIONS(1068), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_SLASH] = ACTIONS(1068), + [anon_sym_mod] = ACTIONS(1068), + [anon_sym_SLASH_SLASH] = ACTIONS(1068), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_bit_DASHshl] = ACTIONS(1068), + [anon_sym_bit_DASHshr] = ACTIONS(1068), + [anon_sym_EQ_EQ] = ACTIONS(1068), + [anon_sym_BANG_EQ] = ACTIONS(1068), + [anon_sym_LT2] = ACTIONS(1068), + [anon_sym_LT_EQ] = ACTIONS(1068), + [anon_sym_GT_EQ] = ACTIONS(1068), + [anon_sym_not_DASHin] = ACTIONS(1068), + [anon_sym_starts_DASHwith] = ACTIONS(1068), + [anon_sym_ends_DASHwith] = ACTIONS(1068), + [anon_sym_EQ_TILDE] = ACTIONS(1068), + [anon_sym_BANG_TILDE] = ACTIONS(1068), + [anon_sym_bit_DASHand] = ACTIONS(1068), + [anon_sym_bit_DASHxor] = ACTIONS(1068), + [anon_sym_bit_DASHor] = ACTIONS(1068), + [anon_sym_and] = ACTIONS(1068), + [anon_sym_xor] = ACTIONS(1068), + [anon_sym_or] = ACTIONS(1068), + [anon_sym_DOT_DOT2] = ACTIONS(1068), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1070), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1070), + [aux_sym__val_number_decimal_token1] = ACTIONS(1068), + [aux_sym__val_number_decimal_token2] = ACTIONS(1068), + [anon_sym_DOT2] = ACTIONS(1068), + [aux_sym__val_number_decimal_token3] = ACTIONS(1068), + [aux_sym__val_number_token1] = ACTIONS(1068), + [aux_sym__val_number_token2] = ACTIONS(1068), + [aux_sym__val_number_token3] = ACTIONS(1068), + [aux_sym__val_number_token4] = ACTIONS(1068), + [aux_sym__val_number_token5] = ACTIONS(1068), + [aux_sym__val_number_token6] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(1068), + [sym__str_single_quotes] = ACTIONS(1068), + [sym__str_back_ticks] = ACTIONS(1068), + [sym__entry_separator] = ACTIONS(1070), + [aux_sym__record_key_token2] = ACTIONS(1068), [anon_sym_POUND] = ACTIONS(113), }, - [538] = { - [sym_comment] = STATE(538), - [ts_builtin_sym_end] = ACTIONS(1065), - [anon_sym_export] = ACTIONS(1063), - [anon_sym_alias] = ACTIONS(1063), - [anon_sym_let] = ACTIONS(1063), - [anon_sym_let_DASHenv] = ACTIONS(1063), - [anon_sym_mut] = ACTIONS(1063), - [anon_sym_const] = ACTIONS(1063), - [anon_sym_SEMI] = ACTIONS(1063), - [sym_cmd_identifier] = ACTIONS(1063), - [anon_sym_LF] = ACTIONS(1065), - [anon_sym_def] = ACTIONS(1063), - [anon_sym_export_DASHenv] = ACTIONS(1063), - [anon_sym_extern] = ACTIONS(1063), - [anon_sym_module] = ACTIONS(1063), - [anon_sym_use] = ACTIONS(1063), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_error] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_DASH_DASH] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_break] = ACTIONS(1063), - [anon_sym_continue] = ACTIONS(1063), - [anon_sym_for] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1063), - [anon_sym_loop] = ACTIONS(1063), - [anon_sym_while] = ACTIONS(1063), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_if] = ACTIONS(1063), - [anon_sym_match] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1063), - [anon_sym_return] = ACTIONS(1063), - [anon_sym_source] = ACTIONS(1063), - [anon_sym_source_DASHenv] = ACTIONS(1063), - [anon_sym_register] = ACTIONS(1063), - [anon_sym_hide] = ACTIONS(1063), - [anon_sym_hide_DASHenv] = ACTIONS(1063), - [anon_sym_overlay] = ACTIONS(1063), - [anon_sym_as] = ACTIONS(1063), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_where] = ACTIONS(1063), - [anon_sym_STAR_STAR] = ACTIONS(1063), - [anon_sym_PLUS_PLUS] = ACTIONS(1063), - [anon_sym_SLASH] = ACTIONS(1063), - [anon_sym_mod] = ACTIONS(1063), - [anon_sym_SLASH_SLASH] = ACTIONS(1063), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_bit_DASHshl] = ACTIONS(1063), - [anon_sym_bit_DASHshr] = ACTIONS(1063), - [anon_sym_EQ_EQ] = ACTIONS(1063), - [anon_sym_BANG_EQ] = ACTIONS(1063), - [anon_sym_LT2] = ACTIONS(1063), - [anon_sym_LT_EQ] = ACTIONS(1063), - [anon_sym_GT_EQ] = ACTIONS(1063), - [anon_sym_not_DASHin] = ACTIONS(1063), - [anon_sym_starts_DASHwith] = ACTIONS(1063), - [anon_sym_ends_DASHwith] = ACTIONS(1063), - [anon_sym_EQ_TILDE] = ACTIONS(1063), - [anon_sym_BANG_TILDE] = ACTIONS(1063), - [anon_sym_bit_DASHand] = ACTIONS(1063), - [anon_sym_bit_DASHxor] = ACTIONS(1063), - [anon_sym_bit_DASHor] = ACTIONS(1063), - [anon_sym_and] = ACTIONS(1063), - [anon_sym_xor] = ACTIONS(1063), - [anon_sym_or] = ACTIONS(1063), - [anon_sym_not] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1063), - [anon_sym_DOT_DOT_LT] = ACTIONS(1063), - [anon_sym_null] = ACTIONS(1063), - [anon_sym_true] = ACTIONS(1063), - [anon_sym_false] = ACTIONS(1063), - [aux_sym__val_number_decimal_token1] = ACTIONS(1063), - [aux_sym__val_number_decimal_token2] = ACTIONS(1063), - [anon_sym_DOT2] = ACTIONS(1063), - [aux_sym__val_number_decimal_token3] = ACTIONS(1063), - [aux_sym__val_number_token1] = ACTIONS(1063), - [aux_sym__val_number_token2] = ACTIONS(1063), - [aux_sym__val_number_token3] = ACTIONS(1063), - [aux_sym__val_number_token4] = ACTIONS(1063), - [aux_sym__val_number_token5] = ACTIONS(1063), - [aux_sym__val_number_token6] = ACTIONS(1063), - [anon_sym_0b] = ACTIONS(1063), - [anon_sym_0o] = ACTIONS(1063), - [anon_sym_0x] = ACTIONS(1063), - [sym_val_date] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [sym__str_single_quotes] = ACTIONS(1063), - [sym__str_back_ticks] = ACTIONS(1063), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1063), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1063), - [anon_sym_CARET] = ACTIONS(1063), + [555] = { + [sym_cell_path] = STATE(649), + [sym_path] = STATE(546), + [sym_comment] = STATE(555), + [anon_sym_export] = ACTIONS(1085), + [anon_sym_alias] = ACTIONS(1085), + [anon_sym_let] = ACTIONS(1085), + [anon_sym_let_DASHenv] = ACTIONS(1085), + [anon_sym_mut] = ACTIONS(1085), + [anon_sym_const] = ACTIONS(1085), + [sym_cmd_identifier] = ACTIONS(1085), + [anon_sym_def] = ACTIONS(1085), + [anon_sym_export_DASHenv] = ACTIONS(1085), + [anon_sym_extern] = ACTIONS(1085), + [anon_sym_module] = ACTIONS(1085), + [anon_sym_use] = ACTIONS(1085), + [anon_sym_LPAREN] = ACTIONS(1085), + [anon_sym_DOLLAR] = ACTIONS(1085), + [anon_sym_error] = ACTIONS(1085), + [anon_sym_list] = ACTIONS(1085), + [anon_sym_GT] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_break] = ACTIONS(1085), + [anon_sym_continue] = ACTIONS(1085), + [anon_sym_for] = ACTIONS(1085), + [anon_sym_in] = ACTIONS(1085), + [anon_sym_loop] = ACTIONS(1085), + [anon_sym_make] = ACTIONS(1085), + [anon_sym_while] = ACTIONS(1085), + [anon_sym_do] = ACTIONS(1085), + [anon_sym_if] = ACTIONS(1085), + [anon_sym_else] = ACTIONS(1085), + [anon_sym_match] = ACTIONS(1085), + [anon_sym_RBRACE] = ACTIONS(1085), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_catch] = ACTIONS(1085), + [anon_sym_return] = ACTIONS(1085), + [anon_sym_source] = ACTIONS(1085), + [anon_sym_source_DASHenv] = ACTIONS(1085), + [anon_sym_register] = ACTIONS(1085), + [anon_sym_hide] = ACTIONS(1085), + [anon_sym_hide_DASHenv] = ACTIONS(1085), + [anon_sym_overlay] = ACTIONS(1085), + [anon_sym_new] = ACTIONS(1085), + [anon_sym_as] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(1085), + [anon_sym_STAR_STAR] = ACTIONS(1085), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_SLASH] = ACTIONS(1085), + [anon_sym_mod] = ACTIONS(1085), + [anon_sym_SLASH_SLASH] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_bit_DASHshl] = ACTIONS(1085), + [anon_sym_bit_DASHshr] = ACTIONS(1085), + [anon_sym_EQ_EQ] = ACTIONS(1085), + [anon_sym_BANG_EQ] = ACTIONS(1085), + [anon_sym_LT2] = ACTIONS(1085), + [anon_sym_LT_EQ] = ACTIONS(1085), + [anon_sym_GT_EQ] = ACTIONS(1085), + [anon_sym_not_DASHin] = ACTIONS(1085), + [anon_sym_starts_DASHwith] = ACTIONS(1085), + [anon_sym_ends_DASHwith] = ACTIONS(1085), + [anon_sym_EQ_TILDE] = ACTIONS(1085), + [anon_sym_BANG_TILDE] = ACTIONS(1085), + [anon_sym_bit_DASHand] = ACTIONS(1085), + [anon_sym_bit_DASHxor] = ACTIONS(1085), + [anon_sym_bit_DASHor] = ACTIONS(1085), + [anon_sym_and] = ACTIONS(1085), + [anon_sym_xor] = ACTIONS(1085), + [anon_sym_or] = ACTIONS(1085), + [anon_sym_DOT] = ACTIONS(1438), + [aux_sym__val_number_decimal_token1] = ACTIONS(1085), + [aux_sym__val_number_decimal_token2] = ACTIONS(1085), + [anon_sym_DOT2] = ACTIONS(1085), + [aux_sym__val_number_decimal_token3] = ACTIONS(1085), + [aux_sym__val_number_token1] = ACTIONS(1085), + [aux_sym__val_number_token2] = ACTIONS(1085), + [aux_sym__val_number_token3] = ACTIONS(1085), + [aux_sym__val_number_token4] = ACTIONS(1085), + [aux_sym__val_number_token5] = ACTIONS(1085), + [aux_sym__val_number_token6] = ACTIONS(1085), + [anon_sym_DQUOTE] = ACTIONS(1085), + [sym__str_single_quotes] = ACTIONS(1085), + [sym__str_back_ticks] = ACTIONS(1085), + [sym__entry_separator] = ACTIONS(1087), + [aux_sym__record_key_token2] = ACTIONS(1085), [anon_sym_POUND] = ACTIONS(113), }, - [539] = { - [sym_comment] = STATE(539), - [ts_builtin_sym_end] = ACTIONS(1352), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_alias] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_let_DASHenv] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1350), - [sym_cmd_identifier] = ACTIONS(1350), - [anon_sym_LF] = ACTIONS(1352), - [anon_sym_def] = ACTIONS(1350), - [anon_sym_export_DASHenv] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_LBRACK] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1350), - [anon_sym_DOLLAR] = ACTIONS(1350), - [anon_sym_error] = ACTIONS(1350), - [anon_sym_GT] = ACTIONS(1350), - [anon_sym_DASH_DASH] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_in] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_DOT_DOT] = ACTIONS(1350), - [anon_sym_try] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_source] = ACTIONS(1350), - [anon_sym_source_DASHenv] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_hide] = ACTIONS(1350), - [anon_sym_hide_DASHenv] = ACTIONS(1350), - [anon_sym_overlay] = ACTIONS(1350), - [anon_sym_as] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_where] = ACTIONS(1350), - [anon_sym_STAR_STAR] = ACTIONS(1350), - [anon_sym_PLUS_PLUS] = ACTIONS(1350), - [anon_sym_SLASH] = ACTIONS(1350), - [anon_sym_mod] = ACTIONS(1350), - [anon_sym_SLASH_SLASH] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_bit_DASHshl] = ACTIONS(1350), - [anon_sym_bit_DASHshr] = ACTIONS(1350), - [anon_sym_EQ_EQ] = ACTIONS(1350), - [anon_sym_BANG_EQ] = ACTIONS(1350), - [anon_sym_LT2] = ACTIONS(1350), - [anon_sym_LT_EQ] = ACTIONS(1350), - [anon_sym_GT_EQ] = ACTIONS(1350), - [anon_sym_not_DASHin] = ACTIONS(1350), - [anon_sym_starts_DASHwith] = ACTIONS(1350), - [anon_sym_ends_DASHwith] = ACTIONS(1350), - [anon_sym_EQ_TILDE] = ACTIONS(1350), - [anon_sym_BANG_TILDE] = ACTIONS(1350), - [anon_sym_bit_DASHand] = ACTIONS(1350), - [anon_sym_bit_DASHxor] = ACTIONS(1350), - [anon_sym_bit_DASHor] = ACTIONS(1350), - [anon_sym_and] = ACTIONS(1350), - [anon_sym_xor] = ACTIONS(1350), - [anon_sym_or] = ACTIONS(1350), - [anon_sym_not] = ACTIONS(1350), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1350), - [anon_sym_DOT_DOT_LT] = ACTIONS(1350), - [anon_sym_null] = ACTIONS(1350), - [anon_sym_true] = ACTIONS(1350), - [anon_sym_false] = ACTIONS(1350), - [aux_sym__val_number_decimal_token1] = ACTIONS(1350), - [aux_sym__val_number_decimal_token2] = ACTIONS(1350), - [anon_sym_DOT2] = ACTIONS(1350), - [aux_sym__val_number_decimal_token3] = ACTIONS(1350), - [aux_sym__val_number_token1] = ACTIONS(1350), - [aux_sym__val_number_token2] = ACTIONS(1350), - [aux_sym__val_number_token3] = ACTIONS(1350), - [aux_sym__val_number_token4] = ACTIONS(1350), - [aux_sym__val_number_token5] = ACTIONS(1350), - [aux_sym__val_number_token6] = ACTIONS(1350), - [anon_sym_0b] = ACTIONS(1350), - [anon_sym_0o] = ACTIONS(1350), - [anon_sym_0x] = ACTIONS(1350), - [sym_val_date] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [sym__str_single_quotes] = ACTIONS(1350), - [sym__str_back_ticks] = ACTIONS(1350), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1350), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1350), - [anon_sym_CARET] = ACTIONS(1350), + [556] = { + [sym_comment] = STATE(556), + [anon_sym_export] = ACTIONS(1089), + [anon_sym_alias] = ACTIONS(1089), + [anon_sym_let] = ACTIONS(1089), + [anon_sym_let_DASHenv] = ACTIONS(1089), + [anon_sym_mut] = ACTIONS(1089), + [anon_sym_const] = ACTIONS(1089), + [sym_cmd_identifier] = ACTIONS(1089), + [anon_sym_def] = ACTIONS(1089), + [anon_sym_export_DASHenv] = ACTIONS(1089), + [anon_sym_extern] = ACTIONS(1089), + [anon_sym_module] = ACTIONS(1089), + [anon_sym_use] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1089), + [anon_sym_error] = ACTIONS(1089), + [anon_sym_list] = ACTIONS(1089), + [anon_sym_GT] = ACTIONS(1089), + [anon_sym_DASH] = ACTIONS(1089), + [anon_sym_break] = ACTIONS(1089), + [anon_sym_continue] = ACTIONS(1089), + [anon_sym_for] = ACTIONS(1089), + [anon_sym_in] = ACTIONS(1089), + [anon_sym_loop] = ACTIONS(1089), + [anon_sym_make] = ACTIONS(1089), + [anon_sym_while] = ACTIONS(1089), + [anon_sym_do] = ACTIONS(1089), + [anon_sym_if] = ACTIONS(1089), + [anon_sym_else] = ACTIONS(1089), + [anon_sym_match] = ACTIONS(1089), + [anon_sym_RBRACE] = ACTIONS(1089), + [anon_sym_try] = ACTIONS(1089), + [anon_sym_catch] = ACTIONS(1089), + [anon_sym_return] = ACTIONS(1089), + [anon_sym_source] = ACTIONS(1089), + [anon_sym_source_DASHenv] = ACTIONS(1089), + [anon_sym_register] = ACTIONS(1089), + [anon_sym_hide] = ACTIONS(1089), + [anon_sym_hide_DASHenv] = ACTIONS(1089), + [anon_sym_overlay] = ACTIONS(1089), + [anon_sym_new] = ACTIONS(1089), + [anon_sym_as] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_STAR_STAR] = ACTIONS(1089), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_SLASH] = ACTIONS(1089), + [anon_sym_mod] = ACTIONS(1089), + [anon_sym_SLASH_SLASH] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1089), + [anon_sym_bit_DASHshl] = ACTIONS(1089), + [anon_sym_bit_DASHshr] = ACTIONS(1089), + [anon_sym_EQ_EQ] = ACTIONS(1089), + [anon_sym_BANG_EQ] = ACTIONS(1089), + [anon_sym_LT2] = ACTIONS(1089), + [anon_sym_LT_EQ] = ACTIONS(1089), + [anon_sym_GT_EQ] = ACTIONS(1089), + [anon_sym_not_DASHin] = ACTIONS(1089), + [anon_sym_starts_DASHwith] = ACTIONS(1089), + [anon_sym_ends_DASHwith] = ACTIONS(1089), + [anon_sym_EQ_TILDE] = ACTIONS(1089), + [anon_sym_BANG_TILDE] = ACTIONS(1089), + [anon_sym_bit_DASHand] = ACTIONS(1089), + [anon_sym_bit_DASHxor] = ACTIONS(1089), + [anon_sym_bit_DASHor] = ACTIONS(1089), + [anon_sym_and] = ACTIONS(1089), + [anon_sym_xor] = ACTIONS(1089), + [anon_sym_or] = ACTIONS(1089), + [anon_sym_DOT_DOT2] = ACTIONS(1440), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1442), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1442), + [aux_sym__val_number_decimal_token1] = ACTIONS(1089), + [aux_sym__val_number_decimal_token2] = ACTIONS(1089), + [anon_sym_DOT2] = ACTIONS(1089), + [aux_sym__val_number_decimal_token3] = ACTIONS(1089), + [aux_sym__val_number_token1] = ACTIONS(1089), + [aux_sym__val_number_token2] = ACTIONS(1089), + [aux_sym__val_number_token3] = ACTIONS(1089), + [aux_sym__val_number_token4] = ACTIONS(1089), + [aux_sym__val_number_token5] = ACTIONS(1089), + [aux_sym__val_number_token6] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1089), + [sym__str_single_quotes] = ACTIONS(1089), + [sym__str_back_ticks] = ACTIONS(1089), + [sym__entry_separator] = ACTIONS(1091), + [aux_sym__record_key_token2] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(113), }, - [540] = { - [sym_comment] = STATE(540), - [anon_sym_export] = ACTIONS(1259), - [anon_sym_alias] = ACTIONS(1259), - [anon_sym_let] = ACTIONS(1259), - [anon_sym_let_DASHenv] = ACTIONS(1259), - [anon_sym_mut] = ACTIONS(1259), - [anon_sym_const] = ACTIONS(1259), - [anon_sym_SEMI] = ACTIONS(1259), - [sym_cmd_identifier] = ACTIONS(1259), - [anon_sym_LF] = ACTIONS(1261), - [anon_sym_def] = ACTIONS(1259), - [anon_sym_export_DASHenv] = ACTIONS(1259), - [anon_sym_extern] = ACTIONS(1259), - [anon_sym_module] = ACTIONS(1259), - [anon_sym_use] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_RPAREN] = ACTIONS(1259), - [anon_sym_DOLLAR] = ACTIONS(1259), - [anon_sym_error] = ACTIONS(1259), - [anon_sym_GT] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_break] = ACTIONS(1259), - [anon_sym_continue] = ACTIONS(1259), - [anon_sym_for] = ACTIONS(1259), - [anon_sym_in] = ACTIONS(1259), - [anon_sym_loop] = ACTIONS(1259), - [anon_sym_while] = ACTIONS(1259), - [anon_sym_do] = ACTIONS(1259), - [anon_sym_if] = ACTIONS(1259), - [anon_sym_match] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1259), - [anon_sym_RBRACE] = ACTIONS(1259), - [anon_sym_DOT_DOT] = ACTIONS(1259), - [anon_sym_try] = ACTIONS(1259), - [anon_sym_return] = ACTIONS(1259), - [anon_sym_source] = ACTIONS(1259), - [anon_sym_source_DASHenv] = ACTIONS(1259), - [anon_sym_register] = ACTIONS(1259), - [anon_sym_hide] = ACTIONS(1259), - [anon_sym_hide_DASHenv] = ACTIONS(1259), - [anon_sym_overlay] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1259), - [anon_sym_where] = ACTIONS(1259), - [anon_sym_STAR_STAR] = ACTIONS(1259), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_SLASH] = ACTIONS(1259), - [anon_sym_mod] = ACTIONS(1259), - [anon_sym_SLASH_SLASH] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_bit_DASHshl] = ACTIONS(1259), - [anon_sym_bit_DASHshr] = ACTIONS(1259), - [anon_sym_EQ_EQ] = ACTIONS(1259), - [anon_sym_BANG_EQ] = ACTIONS(1259), - [anon_sym_LT2] = ACTIONS(1259), - [anon_sym_LT_EQ] = ACTIONS(1259), - [anon_sym_GT_EQ] = ACTIONS(1259), - [anon_sym_not_DASHin] = ACTIONS(1259), - [anon_sym_starts_DASHwith] = ACTIONS(1259), - [anon_sym_ends_DASHwith] = ACTIONS(1259), - [anon_sym_EQ_TILDE] = ACTIONS(1259), - [anon_sym_BANG_TILDE] = ACTIONS(1259), - [anon_sym_bit_DASHand] = ACTIONS(1259), - [anon_sym_bit_DASHxor] = ACTIONS(1259), - [anon_sym_bit_DASHor] = ACTIONS(1259), - [anon_sym_and] = ACTIONS(1259), - [anon_sym_xor] = ACTIONS(1259), - [anon_sym_or] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1259), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1259), - [anon_sym_DOT_DOT_LT] = ACTIONS(1259), - [anon_sym_null] = ACTIONS(1259), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [aux_sym__val_number_decimal_token1] = ACTIONS(1259), - [aux_sym__val_number_decimal_token2] = ACTIONS(1259), - [anon_sym_DOT2] = ACTIONS(1259), - [aux_sym__val_number_decimal_token3] = ACTIONS(1259), - [aux_sym__val_number_token1] = ACTIONS(1259), - [aux_sym__val_number_token2] = ACTIONS(1259), - [aux_sym__val_number_token3] = ACTIONS(1259), - [aux_sym__val_number_token4] = ACTIONS(1259), - [aux_sym__val_number_token5] = ACTIONS(1259), - [aux_sym__val_number_token6] = ACTIONS(1259), - [anon_sym_0b] = ACTIONS(1259), - [anon_sym_0o] = ACTIONS(1259), - [anon_sym_0x] = ACTIONS(1259), - [anon_sym_LBRACK2] = ACTIONS(1431), - [sym_val_date] = ACTIONS(1259), - [anon_sym_DQUOTE] = ACTIONS(1259), - [sym__str_single_quotes] = ACTIONS(1259), - [sym__str_back_ticks] = ACTIONS(1259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1259), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1259), - [anon_sym_CARET] = ACTIONS(1259), + [557] = { + [sym_cell_path] = STATE(653), + [sym_path] = STATE(546), + [sym_comment] = STATE(557), + [anon_sym_export] = ACTIONS(1093), + [anon_sym_alias] = ACTIONS(1093), + [anon_sym_let] = ACTIONS(1093), + [anon_sym_let_DASHenv] = ACTIONS(1093), + [anon_sym_mut] = ACTIONS(1093), + [anon_sym_const] = ACTIONS(1093), + [sym_cmd_identifier] = ACTIONS(1093), + [anon_sym_def] = ACTIONS(1093), + [anon_sym_export_DASHenv] = ACTIONS(1093), + [anon_sym_extern] = ACTIONS(1093), + [anon_sym_module] = ACTIONS(1093), + [anon_sym_use] = ACTIONS(1093), + [anon_sym_LPAREN] = ACTIONS(1093), + [anon_sym_DOLLAR] = ACTIONS(1093), + [anon_sym_error] = ACTIONS(1093), + [anon_sym_list] = ACTIONS(1093), + [anon_sym_GT] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_break] = ACTIONS(1093), + [anon_sym_continue] = ACTIONS(1093), + [anon_sym_for] = ACTIONS(1093), + [anon_sym_in] = ACTIONS(1093), + [anon_sym_loop] = ACTIONS(1093), + [anon_sym_make] = ACTIONS(1093), + [anon_sym_while] = ACTIONS(1093), + [anon_sym_do] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1093), + [anon_sym_else] = ACTIONS(1093), + [anon_sym_match] = ACTIONS(1093), + [anon_sym_RBRACE] = ACTIONS(1093), + [anon_sym_try] = ACTIONS(1093), + [anon_sym_catch] = ACTIONS(1093), + [anon_sym_return] = ACTIONS(1093), + [anon_sym_source] = ACTIONS(1093), + [anon_sym_source_DASHenv] = ACTIONS(1093), + [anon_sym_register] = ACTIONS(1093), + [anon_sym_hide] = ACTIONS(1093), + [anon_sym_hide_DASHenv] = ACTIONS(1093), + [anon_sym_overlay] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1093), + [anon_sym_as] = ACTIONS(1093), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_STAR_STAR] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1093), + [anon_sym_SLASH] = ACTIONS(1093), + [anon_sym_mod] = ACTIONS(1093), + [anon_sym_SLASH_SLASH] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_bit_DASHshl] = ACTIONS(1093), + [anon_sym_bit_DASHshr] = ACTIONS(1093), + [anon_sym_EQ_EQ] = ACTIONS(1093), + [anon_sym_BANG_EQ] = ACTIONS(1093), + [anon_sym_LT2] = ACTIONS(1093), + [anon_sym_LT_EQ] = ACTIONS(1093), + [anon_sym_GT_EQ] = ACTIONS(1093), + [anon_sym_not_DASHin] = ACTIONS(1093), + [anon_sym_starts_DASHwith] = ACTIONS(1093), + [anon_sym_ends_DASHwith] = ACTIONS(1093), + [anon_sym_EQ_TILDE] = ACTIONS(1093), + [anon_sym_BANG_TILDE] = ACTIONS(1093), + [anon_sym_bit_DASHand] = ACTIONS(1093), + [anon_sym_bit_DASHxor] = ACTIONS(1093), + [anon_sym_bit_DASHor] = ACTIONS(1093), + [anon_sym_and] = ACTIONS(1093), + [anon_sym_xor] = ACTIONS(1093), + [anon_sym_or] = ACTIONS(1093), + [anon_sym_DOT] = ACTIONS(1438), + [aux_sym__val_number_decimal_token1] = ACTIONS(1093), + [aux_sym__val_number_decimal_token2] = ACTIONS(1093), + [anon_sym_DOT2] = ACTIONS(1093), + [aux_sym__val_number_decimal_token3] = ACTIONS(1093), + [aux_sym__val_number_token1] = ACTIONS(1093), + [aux_sym__val_number_token2] = ACTIONS(1093), + [aux_sym__val_number_token3] = ACTIONS(1093), + [aux_sym__val_number_token4] = ACTIONS(1093), + [aux_sym__val_number_token5] = ACTIONS(1093), + [aux_sym__val_number_token6] = ACTIONS(1093), + [anon_sym_DQUOTE] = ACTIONS(1093), + [sym__str_single_quotes] = ACTIONS(1093), + [sym__str_back_ticks] = ACTIONS(1093), + [sym__entry_separator] = ACTIONS(1095), + [aux_sym__record_key_token2] = ACTIONS(1093), [anon_sym_POUND] = ACTIONS(113), }, - [541] = { - [sym_comment] = STATE(541), - [anon_sym_export] = ACTIONS(1113), - [anon_sym_alias] = ACTIONS(1113), - [anon_sym_let] = ACTIONS(1113), - [anon_sym_let_DASHenv] = ACTIONS(1113), - [anon_sym_mut] = ACTIONS(1113), - [anon_sym_const] = ACTIONS(1113), - [anon_sym_SEMI] = ACTIONS(1113), - [sym_cmd_identifier] = ACTIONS(1113), - [anon_sym_LF] = ACTIONS(1115), - [anon_sym_def] = ACTIONS(1113), - [anon_sym_export_DASHenv] = ACTIONS(1113), - [anon_sym_extern] = ACTIONS(1113), - [anon_sym_module] = ACTIONS(1113), - [anon_sym_use] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_RPAREN] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1113), - [anon_sym_error] = ACTIONS(1113), - [anon_sym_GT] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_in] = ACTIONS(1113), - [anon_sym_loop] = ACTIONS(1113), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_RBRACE] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1113), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_source] = ACTIONS(1113), - [anon_sym_source_DASHenv] = ACTIONS(1113), - [anon_sym_register] = ACTIONS(1113), - [anon_sym_hide] = ACTIONS(1113), - [anon_sym_hide_DASHenv] = ACTIONS(1113), - [anon_sym_overlay] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_where] = ACTIONS(1113), - [anon_sym_STAR_STAR] = ACTIONS(1113), - [anon_sym_PLUS_PLUS] = ACTIONS(1113), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_mod] = ACTIONS(1113), - [anon_sym_SLASH_SLASH] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_bit_DASHshl] = ACTIONS(1113), - [anon_sym_bit_DASHshr] = ACTIONS(1113), - [anon_sym_EQ_EQ] = ACTIONS(1113), - [anon_sym_BANG_EQ] = ACTIONS(1113), - [anon_sym_LT2] = ACTIONS(1113), - [anon_sym_LT_EQ] = ACTIONS(1113), - [anon_sym_GT_EQ] = ACTIONS(1113), - [anon_sym_not_DASHin] = ACTIONS(1113), - [anon_sym_starts_DASHwith] = ACTIONS(1113), - [anon_sym_ends_DASHwith] = ACTIONS(1113), - [anon_sym_EQ_TILDE] = ACTIONS(1113), - [anon_sym_BANG_TILDE] = ACTIONS(1113), - [anon_sym_bit_DASHand] = ACTIONS(1113), - [anon_sym_bit_DASHxor] = ACTIONS(1113), - [anon_sym_bit_DASHor] = ACTIONS(1113), - [anon_sym_and] = ACTIONS(1113), - [anon_sym_xor] = ACTIONS(1113), - [anon_sym_or] = ACTIONS(1113), - [anon_sym_not] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1113), - [anon_sym_DOT_DOT_LT] = ACTIONS(1113), - [anon_sym_null] = ACTIONS(1113), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1113), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_decimal_token2] = ACTIONS(1113), - [anon_sym_DOT2] = ACTIONS(1113), - [aux_sym__val_number_decimal_token3] = ACTIONS(1113), - [aux_sym__val_number_token1] = ACTIONS(1113), - [aux_sym__val_number_token2] = ACTIONS(1113), - [aux_sym__val_number_token3] = ACTIONS(1113), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1113), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_0b] = ACTIONS(1113), - [anon_sym_0o] = ACTIONS(1113), - [anon_sym_0x] = ACTIONS(1113), - [sym_val_date] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym__str_single_quotes] = ACTIONS(1113), - [sym__str_back_ticks] = ACTIONS(1113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), - [anon_sym_CARET] = ACTIONS(1113), + [558] = { + [sym_cell_path] = STATE(656), + [sym_path] = STATE(546), + [sym_comment] = STATE(558), + [anon_sym_export] = ACTIONS(1097), + [anon_sym_alias] = ACTIONS(1097), + [anon_sym_let] = ACTIONS(1097), + [anon_sym_let_DASHenv] = ACTIONS(1097), + [anon_sym_mut] = ACTIONS(1097), + [anon_sym_const] = ACTIONS(1097), + [sym_cmd_identifier] = ACTIONS(1097), + [anon_sym_def] = ACTIONS(1097), + [anon_sym_export_DASHenv] = ACTIONS(1097), + [anon_sym_extern] = ACTIONS(1097), + [anon_sym_module] = ACTIONS(1097), + [anon_sym_use] = ACTIONS(1097), + [anon_sym_LPAREN] = ACTIONS(1097), + [anon_sym_DOLLAR] = ACTIONS(1097), + [anon_sym_error] = ACTIONS(1097), + [anon_sym_list] = ACTIONS(1097), + [anon_sym_GT] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_break] = ACTIONS(1097), + [anon_sym_continue] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1097), + [anon_sym_loop] = ACTIONS(1097), + [anon_sym_make] = ACTIONS(1097), + [anon_sym_while] = ACTIONS(1097), + [anon_sym_do] = ACTIONS(1097), + [anon_sym_if] = ACTIONS(1097), + [anon_sym_else] = ACTIONS(1097), + [anon_sym_match] = ACTIONS(1097), + [anon_sym_RBRACE] = ACTIONS(1097), + [anon_sym_try] = ACTIONS(1097), + [anon_sym_catch] = ACTIONS(1097), + [anon_sym_return] = ACTIONS(1097), + [anon_sym_source] = ACTIONS(1097), + [anon_sym_source_DASHenv] = ACTIONS(1097), + [anon_sym_register] = ACTIONS(1097), + [anon_sym_hide] = ACTIONS(1097), + [anon_sym_hide_DASHenv] = ACTIONS(1097), + [anon_sym_overlay] = ACTIONS(1097), + [anon_sym_new] = ACTIONS(1097), + [anon_sym_as] = ACTIONS(1097), + [anon_sym_STAR] = ACTIONS(1097), + [anon_sym_STAR_STAR] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1097), + [anon_sym_SLASH] = ACTIONS(1097), + [anon_sym_mod] = ACTIONS(1097), + [anon_sym_SLASH_SLASH] = ACTIONS(1097), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_bit_DASHshl] = ACTIONS(1097), + [anon_sym_bit_DASHshr] = ACTIONS(1097), + [anon_sym_EQ_EQ] = ACTIONS(1097), + [anon_sym_BANG_EQ] = ACTIONS(1097), + [anon_sym_LT2] = ACTIONS(1097), + [anon_sym_LT_EQ] = ACTIONS(1097), + [anon_sym_GT_EQ] = ACTIONS(1097), + [anon_sym_not_DASHin] = ACTIONS(1097), + [anon_sym_starts_DASHwith] = ACTIONS(1097), + [anon_sym_ends_DASHwith] = ACTIONS(1097), + [anon_sym_EQ_TILDE] = ACTIONS(1097), + [anon_sym_BANG_TILDE] = ACTIONS(1097), + [anon_sym_bit_DASHand] = ACTIONS(1097), + [anon_sym_bit_DASHxor] = ACTIONS(1097), + [anon_sym_bit_DASHor] = ACTIONS(1097), + [anon_sym_and] = ACTIONS(1097), + [anon_sym_xor] = ACTIONS(1097), + [anon_sym_or] = ACTIONS(1097), + [anon_sym_DOT] = ACTIONS(1438), + [aux_sym__val_number_decimal_token1] = ACTIONS(1097), + [aux_sym__val_number_decimal_token2] = ACTIONS(1097), + [anon_sym_DOT2] = ACTIONS(1097), + [aux_sym__val_number_decimal_token3] = ACTIONS(1097), + [aux_sym__val_number_token1] = ACTIONS(1097), + [aux_sym__val_number_token2] = ACTIONS(1097), + [aux_sym__val_number_token3] = ACTIONS(1097), + [aux_sym__val_number_token4] = ACTIONS(1097), + [aux_sym__val_number_token5] = ACTIONS(1097), + [aux_sym__val_number_token6] = ACTIONS(1097), + [anon_sym_DQUOTE] = ACTIONS(1097), + [sym__str_single_quotes] = ACTIONS(1097), + [sym__str_back_ticks] = ACTIONS(1097), + [sym__entry_separator] = ACTIONS(1099), + [aux_sym__record_key_token2] = ACTIONS(1097), [anon_sym_POUND] = ACTIONS(113), }, - [542] = { - [sym_comment] = STATE(542), - [ts_builtin_sym_end] = ACTIONS(1356), - [anon_sym_export] = ACTIONS(1354), - [anon_sym_alias] = ACTIONS(1354), - [anon_sym_let] = ACTIONS(1354), - [anon_sym_let_DASHenv] = ACTIONS(1354), - [anon_sym_mut] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_SEMI] = ACTIONS(1354), - [sym_cmd_identifier] = ACTIONS(1354), - [anon_sym_LF] = ACTIONS(1356), - [anon_sym_def] = ACTIONS(1354), - [anon_sym_export_DASHenv] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym_module] = ACTIONS(1354), - [anon_sym_use] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1354), - [anon_sym_LPAREN] = ACTIONS(1354), - [anon_sym_DOLLAR] = ACTIONS(1354), - [anon_sym_error] = ACTIONS(1354), - [anon_sym_GT] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_in] = ACTIONS(1354), - [anon_sym_loop] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_match] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_DOT_DOT] = ACTIONS(1354), - [anon_sym_try] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_source] = ACTIONS(1354), - [anon_sym_source_DASHenv] = ACTIONS(1354), - [anon_sym_register] = ACTIONS(1354), - [anon_sym_hide] = ACTIONS(1354), - [anon_sym_hide_DASHenv] = ACTIONS(1354), - [anon_sym_overlay] = ACTIONS(1354), - [anon_sym_as] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_where] = ACTIONS(1354), - [anon_sym_STAR_STAR] = ACTIONS(1354), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [anon_sym_SLASH] = ACTIONS(1354), - [anon_sym_mod] = ACTIONS(1354), - [anon_sym_SLASH_SLASH] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_bit_DASHshl] = ACTIONS(1354), - [anon_sym_bit_DASHshr] = ACTIONS(1354), - [anon_sym_EQ_EQ] = ACTIONS(1354), - [anon_sym_BANG_EQ] = ACTIONS(1354), - [anon_sym_LT2] = ACTIONS(1354), - [anon_sym_LT_EQ] = ACTIONS(1354), - [anon_sym_GT_EQ] = ACTIONS(1354), - [anon_sym_not_DASHin] = ACTIONS(1354), - [anon_sym_starts_DASHwith] = ACTIONS(1354), - [anon_sym_ends_DASHwith] = ACTIONS(1354), - [anon_sym_EQ_TILDE] = ACTIONS(1354), - [anon_sym_BANG_TILDE] = ACTIONS(1354), - [anon_sym_bit_DASHand] = ACTIONS(1354), - [anon_sym_bit_DASHxor] = ACTIONS(1354), - [anon_sym_bit_DASHor] = ACTIONS(1354), - [anon_sym_and] = ACTIONS(1354), - [anon_sym_xor] = ACTIONS(1354), - [anon_sym_or] = ACTIONS(1354), - [anon_sym_not] = ACTIONS(1354), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1354), - [anon_sym_DOT_DOT_LT] = ACTIONS(1354), - [anon_sym_null] = ACTIONS(1354), - [anon_sym_true] = ACTIONS(1354), - [anon_sym_false] = ACTIONS(1354), - [aux_sym__val_number_decimal_token1] = ACTIONS(1354), - [aux_sym__val_number_decimal_token2] = ACTIONS(1354), - [anon_sym_DOT2] = ACTIONS(1354), - [aux_sym__val_number_decimal_token3] = ACTIONS(1354), - [aux_sym__val_number_token1] = ACTIONS(1354), - [aux_sym__val_number_token2] = ACTIONS(1354), - [aux_sym__val_number_token3] = ACTIONS(1354), - [aux_sym__val_number_token4] = ACTIONS(1354), - [aux_sym__val_number_token5] = ACTIONS(1354), - [aux_sym__val_number_token6] = ACTIONS(1354), - [anon_sym_0b] = ACTIONS(1354), - [anon_sym_0o] = ACTIONS(1354), - [anon_sym_0x] = ACTIONS(1354), - [sym_val_date] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1354), - [sym__str_single_quotes] = ACTIONS(1354), - [sym__str_back_ticks] = ACTIONS(1354), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1354), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1354), - [anon_sym_CARET] = ACTIONS(1354), + [559] = { + [sym_cell_path] = STATE(657), + [sym_path] = STATE(546), + [sym_comment] = STATE(559), + [anon_sym_export] = ACTIONS(1101), + [anon_sym_alias] = ACTIONS(1101), + [anon_sym_let] = ACTIONS(1101), + [anon_sym_let_DASHenv] = ACTIONS(1101), + [anon_sym_mut] = ACTIONS(1101), + [anon_sym_const] = ACTIONS(1101), + [sym_cmd_identifier] = ACTIONS(1101), + [anon_sym_def] = ACTIONS(1101), + [anon_sym_export_DASHenv] = ACTIONS(1101), + [anon_sym_extern] = ACTIONS(1101), + [anon_sym_module] = ACTIONS(1101), + [anon_sym_use] = ACTIONS(1101), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_DOLLAR] = ACTIONS(1101), + [anon_sym_error] = ACTIONS(1101), + [anon_sym_list] = ACTIONS(1101), + [anon_sym_GT] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_break] = ACTIONS(1101), + [anon_sym_continue] = ACTIONS(1101), + [anon_sym_for] = ACTIONS(1101), + [anon_sym_in] = ACTIONS(1101), + [anon_sym_loop] = ACTIONS(1101), + [anon_sym_make] = ACTIONS(1101), + [anon_sym_while] = ACTIONS(1101), + [anon_sym_do] = ACTIONS(1101), + [anon_sym_if] = ACTIONS(1101), + [anon_sym_else] = ACTIONS(1101), + [anon_sym_match] = ACTIONS(1101), + [anon_sym_RBRACE] = ACTIONS(1101), + [anon_sym_try] = ACTIONS(1101), + [anon_sym_catch] = ACTIONS(1101), + [anon_sym_return] = ACTIONS(1101), + [anon_sym_source] = ACTIONS(1101), + [anon_sym_source_DASHenv] = ACTIONS(1101), + [anon_sym_register] = ACTIONS(1101), + [anon_sym_hide] = ACTIONS(1101), + [anon_sym_hide_DASHenv] = ACTIONS(1101), + [anon_sym_overlay] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1101), + [anon_sym_as] = ACTIONS(1101), + [anon_sym_STAR] = ACTIONS(1101), + [anon_sym_STAR_STAR] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_SLASH] = ACTIONS(1101), + [anon_sym_mod] = ACTIONS(1101), + [anon_sym_SLASH_SLASH] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_bit_DASHshl] = ACTIONS(1101), + [anon_sym_bit_DASHshr] = ACTIONS(1101), + [anon_sym_EQ_EQ] = ACTIONS(1101), + [anon_sym_BANG_EQ] = ACTIONS(1101), + [anon_sym_LT2] = ACTIONS(1101), + [anon_sym_LT_EQ] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1101), + [anon_sym_not_DASHin] = ACTIONS(1101), + [anon_sym_starts_DASHwith] = ACTIONS(1101), + [anon_sym_ends_DASHwith] = ACTIONS(1101), + [anon_sym_EQ_TILDE] = ACTIONS(1101), + [anon_sym_BANG_TILDE] = ACTIONS(1101), + [anon_sym_bit_DASHand] = ACTIONS(1101), + [anon_sym_bit_DASHxor] = ACTIONS(1101), + [anon_sym_bit_DASHor] = ACTIONS(1101), + [anon_sym_and] = ACTIONS(1101), + [anon_sym_xor] = ACTIONS(1101), + [anon_sym_or] = ACTIONS(1101), + [anon_sym_DOT] = ACTIONS(1438), + [aux_sym__val_number_decimal_token1] = ACTIONS(1101), + [aux_sym__val_number_decimal_token2] = ACTIONS(1101), + [anon_sym_DOT2] = ACTIONS(1101), + [aux_sym__val_number_decimal_token3] = ACTIONS(1101), + [aux_sym__val_number_token1] = ACTIONS(1101), + [aux_sym__val_number_token2] = ACTIONS(1101), + [aux_sym__val_number_token3] = ACTIONS(1101), + [aux_sym__val_number_token4] = ACTIONS(1101), + [aux_sym__val_number_token5] = ACTIONS(1101), + [aux_sym__val_number_token6] = ACTIONS(1101), + [anon_sym_DQUOTE] = ACTIONS(1101), + [sym__str_single_quotes] = ACTIONS(1101), + [sym__str_back_ticks] = ACTIONS(1101), + [sym__entry_separator] = ACTIONS(1103), + [aux_sym__record_key_token2] = ACTIONS(1101), [anon_sym_POUND] = ACTIONS(113), }, - [543] = { - [sym_comment] = STATE(543), - [ts_builtin_sym_end] = ACTIONS(1360), - [anon_sym_export] = ACTIONS(1358), - [anon_sym_alias] = ACTIONS(1358), - [anon_sym_let] = ACTIONS(1358), - [anon_sym_let_DASHenv] = ACTIONS(1358), - [anon_sym_mut] = ACTIONS(1358), - [anon_sym_const] = ACTIONS(1358), - [anon_sym_SEMI] = ACTIONS(1358), - [sym_cmd_identifier] = ACTIONS(1358), - [anon_sym_LF] = ACTIONS(1360), - [anon_sym_def] = ACTIONS(1358), - [anon_sym_export_DASHenv] = ACTIONS(1358), - [anon_sym_extern] = ACTIONS(1358), - [anon_sym_module] = ACTIONS(1358), - [anon_sym_use] = ACTIONS(1358), - [anon_sym_LBRACK] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1358), - [anon_sym_DOLLAR] = ACTIONS(1358), - [anon_sym_error] = ACTIONS(1358), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_in] = ACTIONS(1358), - [anon_sym_loop] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_do] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_match] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_DOT_DOT] = ACTIONS(1358), - [anon_sym_try] = ACTIONS(1358), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_source] = ACTIONS(1358), - [anon_sym_source_DASHenv] = ACTIONS(1358), - [anon_sym_register] = ACTIONS(1358), - [anon_sym_hide] = ACTIONS(1358), - [anon_sym_hide_DASHenv] = ACTIONS(1358), - [anon_sym_overlay] = ACTIONS(1358), - [anon_sym_as] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_where] = ACTIONS(1358), - [anon_sym_STAR_STAR] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_SLASH] = ACTIONS(1358), - [anon_sym_mod] = ACTIONS(1358), - [anon_sym_SLASH_SLASH] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_bit_DASHshl] = ACTIONS(1358), - [anon_sym_bit_DASHshr] = ACTIONS(1358), - [anon_sym_EQ_EQ] = ACTIONS(1358), - [anon_sym_BANG_EQ] = ACTIONS(1358), - [anon_sym_LT2] = ACTIONS(1358), - [anon_sym_LT_EQ] = ACTIONS(1358), - [anon_sym_GT_EQ] = ACTIONS(1358), - [anon_sym_not_DASHin] = ACTIONS(1358), - [anon_sym_starts_DASHwith] = ACTIONS(1358), - [anon_sym_ends_DASHwith] = ACTIONS(1358), - [anon_sym_EQ_TILDE] = ACTIONS(1358), - [anon_sym_BANG_TILDE] = ACTIONS(1358), - [anon_sym_bit_DASHand] = ACTIONS(1358), - [anon_sym_bit_DASHxor] = ACTIONS(1358), - [anon_sym_bit_DASHor] = ACTIONS(1358), - [anon_sym_and] = ACTIONS(1358), - [anon_sym_xor] = ACTIONS(1358), - [anon_sym_or] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1358), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1358), - [anon_sym_DOT_DOT_LT] = ACTIONS(1358), - [anon_sym_null] = ACTIONS(1358), - [anon_sym_true] = ACTIONS(1358), - [anon_sym_false] = ACTIONS(1358), - [aux_sym__val_number_decimal_token1] = ACTIONS(1358), - [aux_sym__val_number_decimal_token2] = ACTIONS(1358), - [anon_sym_DOT2] = ACTIONS(1358), - [aux_sym__val_number_decimal_token3] = ACTIONS(1358), - [aux_sym__val_number_token1] = ACTIONS(1358), - [aux_sym__val_number_token2] = ACTIONS(1358), - [aux_sym__val_number_token3] = ACTIONS(1358), - [aux_sym__val_number_token4] = ACTIONS(1358), - [aux_sym__val_number_token5] = ACTIONS(1358), - [aux_sym__val_number_token6] = ACTIONS(1358), - [anon_sym_0b] = ACTIONS(1358), - [anon_sym_0o] = ACTIONS(1358), - [anon_sym_0x] = ACTIONS(1358), - [sym_val_date] = ACTIONS(1358), - [anon_sym_DQUOTE] = ACTIONS(1358), - [sym__str_single_quotes] = ACTIONS(1358), - [sym__str_back_ticks] = ACTIONS(1358), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1358), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1358), - [anon_sym_CARET] = ACTIONS(1358), - [anon_sym_POUND] = ACTIONS(113), - }, - [544] = { - [sym_comment] = STATE(544), - [anon_sym_export] = ACTIONS(1243), - [anon_sym_alias] = ACTIONS(1243), - [anon_sym_let] = ACTIONS(1243), - [anon_sym_let_DASHenv] = ACTIONS(1243), - [anon_sym_mut] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1243), - [sym_cmd_identifier] = ACTIONS(1243), - [anon_sym_LF] = ACTIONS(1243), - [anon_sym_def] = ACTIONS(1243), - [anon_sym_export_DASHenv] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1243), - [anon_sym_module] = ACTIONS(1243), - [anon_sym_use] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_RPAREN] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_error] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_in] = ACTIONS(1243), - [anon_sym_loop] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_match] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_RBRACE] = ACTIONS(1243), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_try] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_source] = ACTIONS(1243), - [anon_sym_source_DASHenv] = ACTIONS(1243), - [anon_sym_register] = ACTIONS(1243), - [anon_sym_hide] = ACTIONS(1243), - [anon_sym_hide_DASHenv] = ACTIONS(1243), - [anon_sym_overlay] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1243), - [anon_sym_where] = ACTIONS(1243), - [anon_sym_STAR_STAR] = ACTIONS(1243), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_SLASH] = ACTIONS(1243), - [anon_sym_mod] = ACTIONS(1243), - [anon_sym_SLASH_SLASH] = ACTIONS(1243), - [anon_sym_PLUS] = ACTIONS(1243), - [anon_sym_bit_DASHshl] = ACTIONS(1243), - [anon_sym_bit_DASHshr] = ACTIONS(1243), - [anon_sym_EQ_EQ] = ACTIONS(1243), - [anon_sym_BANG_EQ] = ACTIONS(1243), - [anon_sym_LT2] = ACTIONS(1243), - [anon_sym_LT_EQ] = ACTIONS(1243), - [anon_sym_GT_EQ] = ACTIONS(1243), - [anon_sym_not_DASHin] = ACTIONS(1243), - [anon_sym_starts_DASHwith] = ACTIONS(1243), - [anon_sym_ends_DASHwith] = ACTIONS(1243), - [anon_sym_EQ_TILDE] = ACTIONS(1243), - [anon_sym_BANG_TILDE] = ACTIONS(1243), - [anon_sym_bit_DASHand] = ACTIONS(1243), - [anon_sym_bit_DASHxor] = ACTIONS(1243), - [anon_sym_bit_DASHor] = ACTIONS(1243), - [anon_sym_and] = ACTIONS(1243), - [anon_sym_xor] = ACTIONS(1243), - [anon_sym_or] = ACTIONS(1243), - [anon_sym_not] = ACTIONS(1243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1243), - [anon_sym_DOT_DOT_LT] = ACTIONS(1243), - [anon_sym_null] = ACTIONS(1243), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_decimal_token2] = ACTIONS(1243), - [anon_sym_DOT2] = ACTIONS(1243), - [aux_sym__val_number_decimal_token3] = ACTIONS(1243), - [aux_sym__val_number_token1] = ACTIONS(1243), - [aux_sym__val_number_token2] = ACTIONS(1243), - [aux_sym__val_number_token3] = ACTIONS(1243), - [aux_sym__val_number_token4] = ACTIONS(1243), - [aux_sym__val_number_token5] = ACTIONS(1243), - [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_0b] = ACTIONS(1243), - [anon_sym_0o] = ACTIONS(1243), - [anon_sym_0x] = ACTIONS(1243), - [sym_val_date] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym__str_single_quotes] = ACTIONS(1243), - [sym__str_back_ticks] = ACTIONS(1243), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1243), - [aux_sym__list_item_starts_with_sign_token1] = ACTIONS(1433), - [anon_sym_CARET] = ACTIONS(1243), - [anon_sym_POUND] = ACTIONS(113), - }, - [545] = { - [sym_comment] = STATE(545), - [ts_builtin_sym_end] = ACTIONS(1282), - [anon_sym_export] = ACTIONS(1280), - [anon_sym_alias] = ACTIONS(1280), - [anon_sym_let] = ACTIONS(1280), - [anon_sym_let_DASHenv] = ACTIONS(1280), - [anon_sym_mut] = ACTIONS(1280), - [anon_sym_const] = ACTIONS(1280), - [anon_sym_SEMI] = ACTIONS(1280), - [sym_cmd_identifier] = ACTIONS(1280), - [anon_sym_LF] = ACTIONS(1282), - [anon_sym_def] = ACTIONS(1280), - [anon_sym_export_DASHenv] = ACTIONS(1280), - [anon_sym_extern] = ACTIONS(1280), - [anon_sym_module] = ACTIONS(1280), - [anon_sym_use] = ACTIONS(1280), - [anon_sym_LBRACK] = ACTIONS(1280), - [anon_sym_LPAREN] = ACTIONS(1280), - [anon_sym_DOLLAR] = ACTIONS(1280), - [anon_sym_error] = ACTIONS(1280), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_DASH_DASH] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_break] = ACTIONS(1280), - [anon_sym_continue] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_in] = ACTIONS(1280), - [anon_sym_loop] = ACTIONS(1280), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1280), - [anon_sym_DOT_DOT] = ACTIONS(1280), - [anon_sym_try] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1280), - [anon_sym_source] = ACTIONS(1280), - [anon_sym_source_DASHenv] = ACTIONS(1280), - [anon_sym_register] = ACTIONS(1280), - [anon_sym_hide] = ACTIONS(1280), - [anon_sym_hide_DASHenv] = ACTIONS(1280), - [anon_sym_overlay] = ACTIONS(1280), - [anon_sym_as] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1280), - [anon_sym_where] = ACTIONS(1280), - [anon_sym_STAR_STAR] = ACTIONS(1280), - [anon_sym_PLUS_PLUS] = ACTIONS(1280), - [anon_sym_SLASH] = ACTIONS(1280), - [anon_sym_mod] = ACTIONS(1280), - [anon_sym_SLASH_SLASH] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_bit_DASHshl] = ACTIONS(1280), - [anon_sym_bit_DASHshr] = ACTIONS(1280), - [anon_sym_EQ_EQ] = ACTIONS(1280), - [anon_sym_BANG_EQ] = ACTIONS(1280), - [anon_sym_LT2] = ACTIONS(1280), - [anon_sym_LT_EQ] = ACTIONS(1280), - [anon_sym_GT_EQ] = ACTIONS(1280), - [anon_sym_not_DASHin] = ACTIONS(1280), - [anon_sym_starts_DASHwith] = ACTIONS(1280), - [anon_sym_ends_DASHwith] = ACTIONS(1280), - [anon_sym_EQ_TILDE] = ACTIONS(1280), - [anon_sym_BANG_TILDE] = ACTIONS(1280), - [anon_sym_bit_DASHand] = ACTIONS(1280), - [anon_sym_bit_DASHxor] = ACTIONS(1280), - [anon_sym_bit_DASHor] = ACTIONS(1280), - [anon_sym_and] = ACTIONS(1280), - [anon_sym_xor] = ACTIONS(1280), - [anon_sym_or] = ACTIONS(1280), - [anon_sym_not] = ACTIONS(1280), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1280), - [anon_sym_DOT_DOT_LT] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1280), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [aux_sym__val_number_decimal_token1] = ACTIONS(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1280), - [anon_sym_DOT2] = ACTIONS(1280), - [aux_sym__val_number_decimal_token3] = ACTIONS(1280), - [aux_sym__val_number_token1] = ACTIONS(1280), - [aux_sym__val_number_token2] = ACTIONS(1280), - [aux_sym__val_number_token3] = ACTIONS(1280), - [aux_sym__val_number_token4] = ACTIONS(1280), - [aux_sym__val_number_token5] = ACTIONS(1280), - [aux_sym__val_number_token6] = ACTIONS(1280), - [anon_sym_0b] = ACTIONS(1280), - [anon_sym_0o] = ACTIONS(1280), - [anon_sym_0x] = ACTIONS(1280), - [sym_val_date] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1280), - [sym__str_single_quotes] = ACTIONS(1280), - [sym__str_back_ticks] = ACTIONS(1280), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1280), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1280), - [anon_sym_CARET] = ACTIONS(1280), - [anon_sym_POUND] = ACTIONS(113), - }, - [546] = { - [sym_comment] = STATE(546), - [ts_builtin_sym_end] = ACTIONS(1366), - [anon_sym_export] = ACTIONS(1198), - [anon_sym_alias] = ACTIONS(1198), - [anon_sym_let] = ACTIONS(1198), - [anon_sym_let_DASHenv] = ACTIONS(1198), - [anon_sym_mut] = ACTIONS(1198), - [anon_sym_const] = ACTIONS(1198), - [anon_sym_SEMI] = ACTIONS(1198), - [sym_cmd_identifier] = ACTIONS(1198), - [anon_sym_LF] = ACTIONS(1366), - [anon_sym_def] = ACTIONS(1198), - [anon_sym_export_DASHenv] = ACTIONS(1198), - [anon_sym_extern] = ACTIONS(1198), - [anon_sym_module] = ACTIONS(1198), - [anon_sym_use] = ACTIONS(1198), - [anon_sym_LBRACK] = ACTIONS(1198), - [anon_sym_LPAREN] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(1198), - [anon_sym_error] = ACTIONS(1198), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1198), - [anon_sym_break] = ACTIONS(1198), - [anon_sym_continue] = ACTIONS(1198), - [anon_sym_for] = ACTIONS(1198), - [anon_sym_in] = ACTIONS(1198), - [anon_sym_loop] = ACTIONS(1198), - [anon_sym_while] = ACTIONS(1198), - [anon_sym_do] = ACTIONS(1198), - [anon_sym_if] = ACTIONS(1198), - [anon_sym_match] = ACTIONS(1198), - [anon_sym_LBRACE] = ACTIONS(1198), - [anon_sym_DOT_DOT] = ACTIONS(1198), - [anon_sym_try] = ACTIONS(1198), - [anon_sym_return] = ACTIONS(1198), - [anon_sym_source] = ACTIONS(1198), - [anon_sym_source_DASHenv] = ACTIONS(1198), - [anon_sym_register] = ACTIONS(1198), - [anon_sym_hide] = ACTIONS(1198), - [anon_sym_hide_DASHenv] = ACTIONS(1198), - [anon_sym_overlay] = ACTIONS(1198), - [anon_sym_as] = ACTIONS(1198), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_where] = ACTIONS(1198), - [anon_sym_STAR_STAR] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_SLASH] = ACTIONS(1198), - [anon_sym_mod] = ACTIONS(1198), - [anon_sym_SLASH_SLASH] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1198), - [anon_sym_bit_DASHshl] = ACTIONS(1198), - [anon_sym_bit_DASHshr] = ACTIONS(1198), - [anon_sym_EQ_EQ] = ACTIONS(1198), - [anon_sym_BANG_EQ] = ACTIONS(1198), - [anon_sym_LT2] = ACTIONS(1198), - [anon_sym_LT_EQ] = ACTIONS(1198), - [anon_sym_GT_EQ] = ACTIONS(1198), - [anon_sym_not_DASHin] = ACTIONS(1198), - [anon_sym_starts_DASHwith] = ACTIONS(1198), - [anon_sym_ends_DASHwith] = ACTIONS(1198), - [anon_sym_EQ_TILDE] = ACTIONS(1198), - [anon_sym_BANG_TILDE] = ACTIONS(1198), - [anon_sym_bit_DASHand] = ACTIONS(1198), - [anon_sym_bit_DASHxor] = ACTIONS(1198), - [anon_sym_bit_DASHor] = ACTIONS(1198), - [anon_sym_and] = ACTIONS(1198), - [anon_sym_xor] = ACTIONS(1198), - [anon_sym_or] = ACTIONS(1198), - [anon_sym_not] = ACTIONS(1198), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1198), - [anon_sym_DOT_DOT_LT] = ACTIONS(1198), - [anon_sym_null] = ACTIONS(1198), - [anon_sym_true] = ACTIONS(1198), - [anon_sym_false] = ACTIONS(1198), - [aux_sym__val_number_decimal_token1] = ACTIONS(1198), - [aux_sym__val_number_decimal_token2] = ACTIONS(1198), - [anon_sym_DOT2] = ACTIONS(1198), - [aux_sym__val_number_decimal_token3] = ACTIONS(1198), - [aux_sym__val_number_token1] = ACTIONS(1198), - [aux_sym__val_number_token2] = ACTIONS(1198), - [aux_sym__val_number_token3] = ACTIONS(1198), - [aux_sym__val_number_token4] = ACTIONS(1198), - [aux_sym__val_number_token5] = ACTIONS(1198), - [aux_sym__val_number_token6] = ACTIONS(1198), - [anon_sym_0b] = ACTIONS(1198), - [anon_sym_0o] = ACTIONS(1198), - [anon_sym_0x] = ACTIONS(1198), - [sym_val_date] = ACTIONS(1198), - [anon_sym_DQUOTE] = ACTIONS(1198), - [sym__str_single_quotes] = ACTIONS(1198), - [sym__str_back_ticks] = ACTIONS(1198), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1198), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1198), - [anon_sym_CARET] = ACTIONS(1198), - [anon_sym_POUND] = ACTIONS(113), - }, - [547] = { - [sym_comment] = STATE(547), - [ts_builtin_sym_end] = ACTIONS(1370), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), - }, - [548] = { - [sym_comment] = STATE(548), - [ts_builtin_sym_end] = ACTIONS(1370), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), - }, - [549] = { - [sym_comment] = STATE(549), - [ts_builtin_sym_end] = ACTIONS(1370), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), - }, - [550] = { - [sym_comment] = STATE(550), - [ts_builtin_sym_end] = ACTIONS(1370), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), - }, - [551] = { - [sym_comment] = STATE(551), - [ts_builtin_sym_end] = ACTIONS(1370), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), - }, - [552] = { - [sym_comment] = STATE(552), - [ts_builtin_sym_end] = ACTIONS(1370), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), - }, - [553] = { - [sym_comment] = STATE(553), - [ts_builtin_sym_end] = ACTIONS(1370), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), - }, - [554] = { - [sym_comment] = STATE(554), - [ts_builtin_sym_end] = ACTIONS(1370), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), - }, - [555] = { - [sym_comment] = STATE(555), - [ts_builtin_sym_end] = ACTIONS(1370), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), - }, - [556] = { - [sym_comment] = STATE(556), - [ts_builtin_sym_end] = ACTIONS(1370), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), - }, - [557] = { - [sym_comment] = STATE(557), - [ts_builtin_sym_end] = ACTIONS(1370), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), - }, - [558] = { - [sym_comment] = STATE(558), - [ts_builtin_sym_end] = ACTIONS(1370), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), - }, - [559] = { - [sym_comment] = STATE(559), - [ts_builtin_sym_end] = ACTIONS(1370), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), - }, - [560] = { - [sym_comment] = STATE(560), - [ts_builtin_sym_end] = ACTIONS(1374), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_alias] = ACTIONS(1372), - [anon_sym_let] = ACTIONS(1372), - [anon_sym_let_DASHenv] = ACTIONS(1372), - [anon_sym_mut] = ACTIONS(1372), - [anon_sym_const] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1372), - [sym_cmd_identifier] = ACTIONS(1372), - [anon_sym_LF] = ACTIONS(1374), - [anon_sym_def] = ACTIONS(1372), - [anon_sym_export_DASHenv] = ACTIONS(1372), - [anon_sym_extern] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_use] = ACTIONS(1372), - [anon_sym_LBRACK] = ACTIONS(1372), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_DOLLAR] = ACTIONS(1372), - [anon_sym_error] = ACTIONS(1372), - [anon_sym_GT] = ACTIONS(1372), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1372), - [anon_sym_break] = ACTIONS(1372), - [anon_sym_continue] = ACTIONS(1372), - [anon_sym_for] = ACTIONS(1372), - [anon_sym_in] = ACTIONS(1372), - [anon_sym_loop] = ACTIONS(1372), - [anon_sym_while] = ACTIONS(1372), - [anon_sym_do] = ACTIONS(1372), - [anon_sym_if] = ACTIONS(1372), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_DOT_DOT] = ACTIONS(1372), - [anon_sym_try] = ACTIONS(1372), - [anon_sym_return] = ACTIONS(1372), - [anon_sym_source] = ACTIONS(1372), - [anon_sym_source_DASHenv] = ACTIONS(1372), - [anon_sym_register] = ACTIONS(1372), - [anon_sym_hide] = ACTIONS(1372), - [anon_sym_hide_DASHenv] = ACTIONS(1372), - [anon_sym_overlay] = ACTIONS(1372), - [anon_sym_as] = ACTIONS(1372), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_where] = ACTIONS(1372), - [anon_sym_STAR_STAR] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_SLASH] = ACTIONS(1372), - [anon_sym_mod] = ACTIONS(1372), - [anon_sym_SLASH_SLASH] = ACTIONS(1372), - [anon_sym_PLUS] = ACTIONS(1372), - [anon_sym_bit_DASHshl] = ACTIONS(1372), - [anon_sym_bit_DASHshr] = ACTIONS(1372), - [anon_sym_EQ_EQ] = ACTIONS(1372), - [anon_sym_BANG_EQ] = ACTIONS(1372), - [anon_sym_LT2] = ACTIONS(1372), - [anon_sym_LT_EQ] = ACTIONS(1372), - [anon_sym_GT_EQ] = ACTIONS(1372), - [anon_sym_not_DASHin] = ACTIONS(1372), - [anon_sym_starts_DASHwith] = ACTIONS(1372), - [anon_sym_ends_DASHwith] = ACTIONS(1372), - [anon_sym_EQ_TILDE] = ACTIONS(1372), - [anon_sym_BANG_TILDE] = ACTIONS(1372), - [anon_sym_bit_DASHand] = ACTIONS(1372), - [anon_sym_bit_DASHxor] = ACTIONS(1372), - [anon_sym_bit_DASHor] = ACTIONS(1372), - [anon_sym_and] = ACTIONS(1372), - [anon_sym_xor] = ACTIONS(1372), - [anon_sym_or] = ACTIONS(1372), - [anon_sym_not] = ACTIONS(1372), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1372), - [anon_sym_DOT_DOT_LT] = ACTIONS(1372), - [anon_sym_null] = ACTIONS(1372), - [anon_sym_true] = ACTIONS(1372), - [anon_sym_false] = ACTIONS(1372), - [aux_sym__val_number_decimal_token1] = ACTIONS(1372), - [aux_sym__val_number_decimal_token2] = ACTIONS(1372), - [anon_sym_DOT2] = ACTIONS(1372), - [aux_sym__val_number_decimal_token3] = ACTIONS(1372), - [aux_sym__val_number_token1] = ACTIONS(1372), - [aux_sym__val_number_token2] = ACTIONS(1372), - [aux_sym__val_number_token3] = ACTIONS(1372), - [aux_sym__val_number_token4] = ACTIONS(1372), - [aux_sym__val_number_token5] = ACTIONS(1372), - [aux_sym__val_number_token6] = ACTIONS(1372), - [anon_sym_0b] = ACTIONS(1372), - [anon_sym_0o] = ACTIONS(1372), - [anon_sym_0x] = ACTIONS(1372), - [sym_val_date] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [sym__str_single_quotes] = ACTIONS(1372), - [sym__str_back_ticks] = ACTIONS(1372), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1372), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1372), - [anon_sym_CARET] = ACTIONS(1372), - [anon_sym_POUND] = ACTIONS(113), - }, - [561] = { - [sym_comment] = STATE(561), - [anon_sym_export] = ACTIONS(1117), - [anon_sym_alias] = ACTIONS(1117), - [anon_sym_let] = ACTIONS(1117), - [anon_sym_let_DASHenv] = ACTIONS(1117), - [anon_sym_mut] = ACTIONS(1117), - [anon_sym_const] = ACTIONS(1117), - [anon_sym_SEMI] = ACTIONS(1117), - [sym_cmd_identifier] = ACTIONS(1117), - [anon_sym_LF] = ACTIONS(1119), - [anon_sym_def] = ACTIONS(1117), - [anon_sym_export_DASHenv] = ACTIONS(1117), - [anon_sym_extern] = ACTIONS(1117), - [anon_sym_module] = ACTIONS(1117), - [anon_sym_use] = ACTIONS(1117), - [anon_sym_LBRACK] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1117), - [anon_sym_RPAREN] = ACTIONS(1117), - [anon_sym_DOLLAR] = ACTIONS(1117), - [anon_sym_error] = ACTIONS(1117), - [anon_sym_GT] = ACTIONS(1117), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_break] = ACTIONS(1117), - [anon_sym_continue] = ACTIONS(1117), - [anon_sym_for] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1117), - [anon_sym_loop] = ACTIONS(1117), - [anon_sym_while] = ACTIONS(1117), - [anon_sym_do] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1117), - [anon_sym_LBRACE] = ACTIONS(1117), - [anon_sym_RBRACE] = ACTIONS(1117), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_try] = ACTIONS(1117), - [anon_sym_return] = ACTIONS(1117), - [anon_sym_source] = ACTIONS(1117), - [anon_sym_source_DASHenv] = ACTIONS(1117), - [anon_sym_register] = ACTIONS(1117), - [anon_sym_hide] = ACTIONS(1117), - [anon_sym_hide_DASHenv] = ACTIONS(1117), - [anon_sym_overlay] = ACTIONS(1117), - [anon_sym_STAR] = ACTIONS(1117), - [anon_sym_where] = ACTIONS(1117), - [anon_sym_STAR_STAR] = ACTIONS(1117), - [anon_sym_PLUS_PLUS] = ACTIONS(1117), - [anon_sym_SLASH] = ACTIONS(1117), - [anon_sym_mod] = ACTIONS(1117), - [anon_sym_SLASH_SLASH] = ACTIONS(1117), - [anon_sym_PLUS] = ACTIONS(1117), - [anon_sym_bit_DASHshl] = ACTIONS(1117), - [anon_sym_bit_DASHshr] = ACTIONS(1117), - [anon_sym_EQ_EQ] = ACTIONS(1117), - [anon_sym_BANG_EQ] = ACTIONS(1117), - [anon_sym_LT2] = ACTIONS(1117), - [anon_sym_LT_EQ] = ACTIONS(1117), - [anon_sym_GT_EQ] = ACTIONS(1117), - [anon_sym_not_DASHin] = ACTIONS(1117), - [anon_sym_starts_DASHwith] = ACTIONS(1117), - [anon_sym_ends_DASHwith] = ACTIONS(1117), - [anon_sym_EQ_TILDE] = ACTIONS(1117), - [anon_sym_BANG_TILDE] = ACTIONS(1117), - [anon_sym_bit_DASHand] = ACTIONS(1117), - [anon_sym_bit_DASHxor] = ACTIONS(1117), - [anon_sym_bit_DASHor] = ACTIONS(1117), - [anon_sym_and] = ACTIONS(1117), - [anon_sym_xor] = ACTIONS(1117), - [anon_sym_or] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1117), - [anon_sym_DOT] = ACTIONS(1117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1117), - [anon_sym_DOT_DOT_LT] = ACTIONS(1117), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_true] = ACTIONS(1117), - [anon_sym_false] = ACTIONS(1117), - [aux_sym__val_number_decimal_token1] = ACTIONS(1117), - [aux_sym__val_number_decimal_token2] = ACTIONS(1117), - [anon_sym_DOT2] = ACTIONS(1117), - [aux_sym__val_number_decimal_token3] = ACTIONS(1117), - [aux_sym__val_number_token1] = ACTIONS(1117), - [aux_sym__val_number_token2] = ACTIONS(1117), - [aux_sym__val_number_token3] = ACTIONS(1117), - [aux_sym__val_number_token4] = ACTIONS(1117), - [aux_sym__val_number_token5] = ACTIONS(1117), - [aux_sym__val_number_token6] = ACTIONS(1117), - [anon_sym_0b] = ACTIONS(1117), - [anon_sym_0o] = ACTIONS(1117), - [anon_sym_0x] = ACTIONS(1117), - [sym_val_date] = ACTIONS(1117), - [anon_sym_DQUOTE] = ACTIONS(1117), - [sym__str_single_quotes] = ACTIONS(1117), - [sym__str_back_ticks] = ACTIONS(1117), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1117), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1117), - [anon_sym_CARET] = ACTIONS(1117), + [560] = { + [sym__match_pattern_expression] = STATE(3963), + [sym__match_pattern_value] = STATE(4065), + [sym__match_pattern_list] = STATE(3899), + [sym__match_pattern_rest] = STATE(10484), + [sym__match_pattern_record] = STATE(4002), + [sym__expr_unary_minus] = STATE(3813), + [sym_expr_parenthesized] = STATE(3469), + [sym_val_range] = STATE(3817), + [sym__val_range] = STATE(10001), + [sym__val_range_with_end] = STATE(10049), + [sym__value] = STATE(9990), + [sym_val_nothing] = STATE(3892), + [sym_val_bool] = STATE(3567), + [sym_val_variable] = STATE(3464), + [sym__var] = STATE(3255), + [sym_val_number] = STATE(3892), + [sym__val_number_decimal] = STATE(3196), + [sym__val_number] = STATE(3845), + [sym_val_duration] = STATE(3892), + [sym_val_filesize] = STATE(3892), + [sym_val_binary] = STATE(3892), + [sym_val_string] = STATE(3892), + [sym__str_double_quotes] = STATE(3859), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(9927), + [sym_list_body] = STATE(10531), + [sym_val_entry] = STATE(9992), + [sym__list_item_expression] = STATE(10082), + [sym__list_item_starts_with_sign] = STATE(3819), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(3892), + [sym_val_closure] = STATE(6041), + [sym_short_flag] = STATE(3819), + [sym_long_flag] = STATE(3819), + [sym_long_flag_equals_value] = STATE(3793), + [sym__unquoted_in_list] = STATE(3568), + [sym__unquoted_in_list_with_expr] = STATE(10149), + [sym__unquoted_anonymous_prefix] = STATE(9874), + [sym_comment] = STATE(560), + [aux_sym__match_pattern_list_repeat1] = STATE(1298), + [aux_sym_list_body_repeat1] = STATE(851), + [anon_sym_LBRACK] = ACTIONS(1447), + [anon_sym_RBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1451), + [anon_sym_DOLLAR] = ACTIONS(1453), + [anon_sym_DASH_DASH] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_LBRACE] = ACTIONS(1459), + [anon_sym_DOT_DOT] = ACTIONS(1461), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1465), + [anon_sym_DOT_DOT_LT] = ACTIONS(1465), + [anon_sym_null] = ACTIONS(1467), + [anon_sym_true] = ACTIONS(1469), + [anon_sym_false] = ACTIONS(1469), + [aux_sym__val_number_decimal_token1] = ACTIONS(1471), + [aux_sym__val_number_decimal_token2] = ACTIONS(1473), + [anon_sym_DOT2] = ACTIONS(1475), + [aux_sym__val_number_decimal_token3] = ACTIONS(1477), + [aux_sym__val_number_token1] = ACTIONS(1479), + [aux_sym__val_number_token2] = ACTIONS(1479), + [aux_sym__val_number_token3] = ACTIONS(1479), + [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(1483), + [anon_sym_0o] = ACTIONS(1485), + [anon_sym_0x] = ACTIONS(1485), + [sym_val_date] = ACTIONS(1487), + [anon_sym_DQUOTE] = ACTIONS(1489), + [sym__str_single_quotes] = ACTIONS(1491), + [sym__str_back_ticks] = ACTIONS(1491), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(3), + }, + [561] = { + [sym_comment] = STATE(561), + [anon_sym_export] = ACTIONS(1024), + [anon_sym_alias] = ACTIONS(1024), + [anon_sym_let] = ACTIONS(1024), + [anon_sym_let_DASHenv] = ACTIONS(1024), + [anon_sym_mut] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [sym_cmd_identifier] = ACTIONS(1024), + [anon_sym_def] = ACTIONS(1024), + [anon_sym_export_DASHenv] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1024), + [anon_sym_module] = ACTIONS(1024), + [anon_sym_use] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_error] = ACTIONS(1024), + [anon_sym_list] = ACTIONS(1024), + [anon_sym_GT] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_loop] = ACTIONS(1024), + [anon_sym_make] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_else] = ACTIONS(1024), + [anon_sym_match] = ACTIONS(1024), + [anon_sym_RBRACE] = ACTIONS(1024), + [anon_sym_try] = ACTIONS(1024), + [anon_sym_catch] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_source] = ACTIONS(1024), + [anon_sym_source_DASHenv] = ACTIONS(1024), + [anon_sym_register] = ACTIONS(1024), + [anon_sym_hide] = ACTIONS(1024), + [anon_sym_hide_DASHenv] = ACTIONS(1024), + [anon_sym_overlay] = ACTIONS(1024), + [anon_sym_new] = ACTIONS(1024), + [anon_sym_as] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(1503), + [anon_sym_STAR_STAR] = ACTIONS(1024), + [anon_sym_PLUS_PLUS] = ACTIONS(1024), + [anon_sym_SLASH] = ACTIONS(1024), + [anon_sym_mod] = ACTIONS(1024), + [anon_sym_SLASH_SLASH] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_bit_DASHshl] = ACTIONS(1024), + [anon_sym_bit_DASHshr] = ACTIONS(1024), + [anon_sym_EQ_EQ] = ACTIONS(1024), + [anon_sym_BANG_EQ] = ACTIONS(1024), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ] = ACTIONS(1024), + [anon_sym_GT_EQ] = ACTIONS(1024), + [anon_sym_not_DASHin] = ACTIONS(1024), + [anon_sym_starts_DASHwith] = ACTIONS(1024), + [anon_sym_ends_DASHwith] = ACTIONS(1024), + [anon_sym_EQ_TILDE] = ACTIONS(1024), + [anon_sym_BANG_TILDE] = ACTIONS(1024), + [anon_sym_bit_DASHand] = ACTIONS(1024), + [anon_sym_bit_DASHxor] = ACTIONS(1024), + [anon_sym_bit_DASHor] = ACTIONS(1024), + [anon_sym_and] = ACTIONS(1024), + [anon_sym_xor] = ACTIONS(1024), + [anon_sym_or] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1026), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1024), + [aux_sym__val_number_token1] = ACTIONS(1024), + [aux_sym__val_number_token2] = ACTIONS(1024), + [aux_sym__val_number_token3] = ACTIONS(1024), + [aux_sym__val_number_token4] = ACTIONS(1024), + [aux_sym__val_number_token5] = ACTIONS(1024), + [aux_sym__val_number_token6] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym__str_single_quotes] = ACTIONS(1024), + [sym__str_back_ticks] = ACTIONS(1024), + [sym__entry_separator] = ACTIONS(1026), + [aux_sym__record_key_token2] = ACTIONS(1024), [anon_sym_POUND] = ACTIONS(113), }, [562] = { + [sym_path] = STATE(627), [sym_comment] = STATE(562), - [ts_builtin_sym_end] = ACTIONS(1196), - [anon_sym_export] = ACTIONS(1194), - [anon_sym_alias] = ACTIONS(1194), - [anon_sym_let] = ACTIONS(1194), - [anon_sym_let_DASHenv] = ACTIONS(1194), - [anon_sym_mut] = ACTIONS(1194), - [anon_sym_const] = ACTIONS(1194), - [anon_sym_SEMI] = ACTIONS(1194), - [sym_cmd_identifier] = ACTIONS(1194), - [anon_sym_LF] = ACTIONS(1196), - [anon_sym_def] = ACTIONS(1194), - [anon_sym_export_DASHenv] = ACTIONS(1194), - [anon_sym_extern] = ACTIONS(1194), - [anon_sym_module] = ACTIONS(1194), - [anon_sym_use] = ACTIONS(1194), - [anon_sym_LBRACK] = ACTIONS(1194), - [anon_sym_LPAREN] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1194), - [anon_sym_error] = ACTIONS(1194), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_break] = ACTIONS(1194), - [anon_sym_continue] = ACTIONS(1194), - [anon_sym_for] = ACTIONS(1194), - [anon_sym_in] = ACTIONS(1198), - [anon_sym_loop] = ACTIONS(1194), - [anon_sym_while] = ACTIONS(1194), - [anon_sym_do] = ACTIONS(1194), - [anon_sym_if] = ACTIONS(1194), - [anon_sym_match] = ACTIONS(1194), - [anon_sym_LBRACE] = ACTIONS(1194), - [anon_sym_DOT_DOT] = ACTIONS(1194), - [anon_sym_try] = ACTIONS(1194), - [anon_sym_return] = ACTIONS(1194), - [anon_sym_source] = ACTIONS(1194), - [anon_sym_source_DASHenv] = ACTIONS(1194), - [anon_sym_register] = ACTIONS(1194), - [anon_sym_hide] = ACTIONS(1194), - [anon_sym_hide_DASHenv] = ACTIONS(1194), - [anon_sym_overlay] = ACTIONS(1194), - [anon_sym_as] = ACTIONS(1194), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_where] = ACTIONS(1194), - [anon_sym_STAR_STAR] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_SLASH] = ACTIONS(1198), - [anon_sym_mod] = ACTIONS(1198), - [anon_sym_SLASH_SLASH] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1198), - [anon_sym_bit_DASHshl] = ACTIONS(1198), - [anon_sym_bit_DASHshr] = ACTIONS(1198), - [anon_sym_EQ_EQ] = ACTIONS(1198), - [anon_sym_BANG_EQ] = ACTIONS(1198), - [anon_sym_LT2] = ACTIONS(1198), - [anon_sym_LT_EQ] = ACTIONS(1198), - [anon_sym_GT_EQ] = ACTIONS(1198), - [anon_sym_not_DASHin] = ACTIONS(1198), - [anon_sym_starts_DASHwith] = ACTIONS(1198), - [anon_sym_ends_DASHwith] = ACTIONS(1198), - [anon_sym_EQ_TILDE] = ACTIONS(1198), - [anon_sym_BANG_TILDE] = ACTIONS(1198), - [anon_sym_bit_DASHand] = ACTIONS(1198), - [anon_sym_bit_DASHxor] = ACTIONS(1198), - [anon_sym_bit_DASHor] = ACTIONS(1198), - [anon_sym_and] = ACTIONS(1198), - [anon_sym_xor] = ACTIONS(1198), - [anon_sym_or] = ACTIONS(1198), - [anon_sym_not] = ACTIONS(1194), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1194), - [anon_sym_DOT_DOT_LT] = ACTIONS(1194), - [anon_sym_null] = ACTIONS(1194), - [anon_sym_true] = ACTIONS(1194), - [anon_sym_false] = ACTIONS(1194), - [aux_sym__val_number_decimal_token1] = ACTIONS(1194), - [aux_sym__val_number_decimal_token2] = ACTIONS(1194), - [anon_sym_DOT2] = ACTIONS(1194), - [aux_sym__val_number_decimal_token3] = ACTIONS(1194), - [aux_sym__val_number_token1] = ACTIONS(1194), - [aux_sym__val_number_token2] = ACTIONS(1194), - [aux_sym__val_number_token3] = ACTIONS(1194), - [aux_sym__val_number_token4] = ACTIONS(1194), - [aux_sym__val_number_token5] = ACTIONS(1194), - [aux_sym__val_number_token6] = ACTIONS(1194), - [anon_sym_0b] = ACTIONS(1194), - [anon_sym_0o] = ACTIONS(1194), - [anon_sym_0x] = ACTIONS(1194), - [sym_val_date] = ACTIONS(1194), - [anon_sym_DQUOTE] = ACTIONS(1194), - [sym__str_single_quotes] = ACTIONS(1194), - [sym__str_back_ticks] = ACTIONS(1194), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1194), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1194), - [anon_sym_CARET] = ACTIONS(1194), - [anon_sym_POUND] = ACTIONS(113), + [aux_sym_cell_path_repeat1] = STATE(563), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_alias] = ACTIONS(1006), + [anon_sym_let] = ACTIONS(1006), + [anon_sym_let_DASHenv] = ACTIONS(1006), + [anon_sym_mut] = ACTIONS(1006), + [anon_sym_const] = ACTIONS(1006), + [sym_cmd_identifier] = ACTIONS(1006), + [anon_sym_def] = ACTIONS(1006), + [anon_sym_export_DASHenv] = ACTIONS(1006), + [anon_sym_extern] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_use] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1008), + [anon_sym_error] = ACTIONS(1006), + [anon_sym_list] = ACTIONS(1006), + [anon_sym_GT] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_break] = ACTIONS(1006), + [anon_sym_continue] = ACTIONS(1006), + [anon_sym_for] = ACTIONS(1006), + [anon_sym_in] = ACTIONS(1006), + [anon_sym_loop] = ACTIONS(1006), + [anon_sym_make] = ACTIONS(1006), + [anon_sym_while] = ACTIONS(1006), + [anon_sym_do] = ACTIONS(1006), + [anon_sym_if] = ACTIONS(1006), + [anon_sym_else] = ACTIONS(1006), + [anon_sym_match] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(1008), + [anon_sym_try] = ACTIONS(1006), + [anon_sym_catch] = ACTIONS(1006), + [anon_sym_return] = ACTIONS(1006), + [anon_sym_source] = ACTIONS(1006), + [anon_sym_source_DASHenv] = ACTIONS(1006), + [anon_sym_register] = ACTIONS(1006), + [anon_sym_hide] = ACTIONS(1006), + [anon_sym_hide_DASHenv] = ACTIONS(1006), + [anon_sym_overlay] = ACTIONS(1006), + [anon_sym_new] = ACTIONS(1006), + [anon_sym_as] = ACTIONS(1006), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_STAR_STAR] = ACTIONS(1008), + [anon_sym_PLUS_PLUS] = ACTIONS(1008), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_mod] = ACTIONS(1006), + [anon_sym_SLASH_SLASH] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_bit_DASHshl] = ACTIONS(1006), + [anon_sym_bit_DASHshr] = ACTIONS(1006), + [anon_sym_EQ_EQ] = ACTIONS(1008), + [anon_sym_BANG_EQ] = ACTIONS(1008), + [anon_sym_LT2] = ACTIONS(1006), + [anon_sym_LT_EQ] = ACTIONS(1008), + [anon_sym_GT_EQ] = ACTIONS(1008), + [anon_sym_not_DASHin] = ACTIONS(1006), + [anon_sym_starts_DASHwith] = ACTIONS(1006), + [anon_sym_ends_DASHwith] = ACTIONS(1006), + [anon_sym_EQ_TILDE] = ACTIONS(1008), + [anon_sym_BANG_TILDE] = ACTIONS(1008), + [anon_sym_bit_DASHand] = ACTIONS(1006), + [anon_sym_bit_DASHxor] = ACTIONS(1006), + [anon_sym_bit_DASHor] = ACTIONS(1006), + [anon_sym_and] = ACTIONS(1006), + [anon_sym_xor] = ACTIONS(1006), + [anon_sym_or] = ACTIONS(1006), + [anon_sym_DOT] = ACTIONS(1505), + [aux_sym__val_number_decimal_token1] = ACTIONS(1006), + [aux_sym__val_number_decimal_token2] = ACTIONS(1008), + [anon_sym_DOT2] = ACTIONS(1006), + [aux_sym__val_number_decimal_token3] = ACTIONS(1008), + [aux_sym__val_number_token1] = ACTIONS(1008), + [aux_sym__val_number_token2] = ACTIONS(1008), + [aux_sym__val_number_token3] = ACTIONS(1008), + [aux_sym__val_number_token4] = ACTIONS(1006), + [aux_sym__val_number_token5] = ACTIONS(1008), + [aux_sym__val_number_token6] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1008), + [sym__str_single_quotes] = ACTIONS(1008), + [sym__str_back_ticks] = ACTIONS(1008), + [aux_sym__record_key_token2] = ACTIONS(1006), + [anon_sym_POUND] = ACTIONS(3), }, [563] = { + [sym_path] = STATE(627), [sym_comment] = STATE(563), - [anon_sym_export] = ACTIONS(1280), - [anon_sym_alias] = ACTIONS(1280), - [anon_sym_let] = ACTIONS(1280), - [anon_sym_let_DASHenv] = ACTIONS(1280), - [anon_sym_mut] = ACTIONS(1280), - [anon_sym_const] = ACTIONS(1280), - [anon_sym_SEMI] = ACTIONS(1280), - [sym_cmd_identifier] = ACTIONS(1280), - [anon_sym_LF] = ACTIONS(1282), - [anon_sym_def] = ACTIONS(1280), - [anon_sym_export_DASHenv] = ACTIONS(1280), - [anon_sym_extern] = ACTIONS(1280), - [anon_sym_module] = ACTIONS(1280), - [anon_sym_use] = ACTIONS(1280), - [anon_sym_LBRACK] = ACTIONS(1280), - [anon_sym_LPAREN] = ACTIONS(1280), - [anon_sym_RPAREN] = ACTIONS(1280), - [anon_sym_DOLLAR] = ACTIONS(1280), - [anon_sym_error] = ACTIONS(1280), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_break] = ACTIONS(1280), - [anon_sym_continue] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_in] = ACTIONS(1280), - [anon_sym_loop] = ACTIONS(1280), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1280), - [anon_sym_RBRACE] = ACTIONS(1280), - [anon_sym_DOT_DOT] = ACTIONS(1280), - [anon_sym_try] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1280), - [anon_sym_source] = ACTIONS(1280), - [anon_sym_source_DASHenv] = ACTIONS(1280), - [anon_sym_register] = ACTIONS(1280), - [anon_sym_hide] = ACTIONS(1280), - [anon_sym_hide_DASHenv] = ACTIONS(1280), - [anon_sym_overlay] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1280), - [anon_sym_where] = ACTIONS(1280), - [anon_sym_STAR_STAR] = ACTIONS(1280), - [anon_sym_PLUS_PLUS] = ACTIONS(1280), - [anon_sym_SLASH] = ACTIONS(1280), - [anon_sym_mod] = ACTIONS(1280), - [anon_sym_SLASH_SLASH] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_bit_DASHshl] = ACTIONS(1280), - [anon_sym_bit_DASHshr] = ACTIONS(1280), - [anon_sym_EQ_EQ] = ACTIONS(1280), - [anon_sym_BANG_EQ] = ACTIONS(1280), - [anon_sym_LT2] = ACTIONS(1280), - [anon_sym_LT_EQ] = ACTIONS(1280), - [anon_sym_GT_EQ] = ACTIONS(1280), - [anon_sym_not_DASHin] = ACTIONS(1280), - [anon_sym_starts_DASHwith] = ACTIONS(1280), - [anon_sym_ends_DASHwith] = ACTIONS(1280), - [anon_sym_EQ_TILDE] = ACTIONS(1280), - [anon_sym_BANG_TILDE] = ACTIONS(1280), - [anon_sym_bit_DASHand] = ACTIONS(1280), - [anon_sym_bit_DASHxor] = ACTIONS(1280), - [anon_sym_bit_DASHor] = ACTIONS(1280), - [anon_sym_and] = ACTIONS(1280), - [anon_sym_xor] = ACTIONS(1280), - [anon_sym_or] = ACTIONS(1280), - [anon_sym_not] = ACTIONS(1280), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1280), - [anon_sym_DOT_DOT_LT] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1280), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [aux_sym__val_number_decimal_token1] = ACTIONS(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1280), - [anon_sym_DOT2] = ACTIONS(1280), - [aux_sym__val_number_decimal_token3] = ACTIONS(1280), - [aux_sym__val_number_token1] = ACTIONS(1280), - [aux_sym__val_number_token2] = ACTIONS(1280), - [aux_sym__val_number_token3] = ACTIONS(1280), - [aux_sym__val_number_token4] = ACTIONS(1280), - [aux_sym__val_number_token5] = ACTIONS(1280), - [aux_sym__val_number_token6] = ACTIONS(1280), - [anon_sym_0b] = ACTIONS(1280), - [anon_sym_0o] = ACTIONS(1280), - [anon_sym_0x] = ACTIONS(1280), - [sym_val_date] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1280), - [sym__str_single_quotes] = ACTIONS(1280), - [sym__str_back_ticks] = ACTIONS(1280), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1280), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1280), - [anon_sym_CARET] = ACTIONS(1280), - [aux_sym_unquoted_token6] = ACTIONS(1280), - [anon_sym_POUND] = ACTIONS(113), + [aux_sym_cell_path_repeat1] = STATE(563), + [anon_sym_export] = ACTIONS(985), + [anon_sym_alias] = ACTIONS(985), + [anon_sym_let] = ACTIONS(985), + [anon_sym_let_DASHenv] = ACTIONS(985), + [anon_sym_mut] = ACTIONS(985), + [anon_sym_const] = ACTIONS(985), + [sym_cmd_identifier] = ACTIONS(985), + [anon_sym_def] = ACTIONS(985), + [anon_sym_export_DASHenv] = ACTIONS(985), + [anon_sym_extern] = ACTIONS(985), + [anon_sym_module] = ACTIONS(985), + [anon_sym_use] = ACTIONS(985), + [anon_sym_LPAREN] = ACTIONS(987), + [anon_sym_DOLLAR] = ACTIONS(987), + [anon_sym_error] = ACTIONS(985), + [anon_sym_list] = ACTIONS(985), + [anon_sym_GT] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_break] = ACTIONS(985), + [anon_sym_continue] = ACTIONS(985), + [anon_sym_for] = ACTIONS(985), + [anon_sym_in] = ACTIONS(985), + [anon_sym_loop] = ACTIONS(985), + [anon_sym_make] = ACTIONS(985), + [anon_sym_while] = ACTIONS(985), + [anon_sym_do] = ACTIONS(985), + [anon_sym_if] = ACTIONS(985), + [anon_sym_else] = ACTIONS(985), + [anon_sym_match] = ACTIONS(985), + [anon_sym_RBRACE] = ACTIONS(987), + [anon_sym_try] = ACTIONS(985), + [anon_sym_catch] = ACTIONS(985), + [anon_sym_return] = ACTIONS(985), + [anon_sym_source] = ACTIONS(985), + [anon_sym_source_DASHenv] = ACTIONS(985), + [anon_sym_register] = ACTIONS(985), + [anon_sym_hide] = ACTIONS(985), + [anon_sym_hide_DASHenv] = ACTIONS(985), + [anon_sym_overlay] = ACTIONS(985), + [anon_sym_new] = ACTIONS(985), + [anon_sym_as] = ACTIONS(985), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_STAR_STAR] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(987), + [anon_sym_SLASH] = ACTIONS(985), + [anon_sym_mod] = ACTIONS(985), + [anon_sym_SLASH_SLASH] = ACTIONS(987), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_bit_DASHshl] = ACTIONS(985), + [anon_sym_bit_DASHshr] = ACTIONS(985), + [anon_sym_EQ_EQ] = ACTIONS(987), + [anon_sym_BANG_EQ] = ACTIONS(987), + [anon_sym_LT2] = ACTIONS(985), + [anon_sym_LT_EQ] = ACTIONS(987), + [anon_sym_GT_EQ] = ACTIONS(987), + [anon_sym_not_DASHin] = ACTIONS(985), + [anon_sym_starts_DASHwith] = ACTIONS(985), + [anon_sym_ends_DASHwith] = ACTIONS(985), + [anon_sym_EQ_TILDE] = ACTIONS(987), + [anon_sym_BANG_TILDE] = ACTIONS(987), + [anon_sym_bit_DASHand] = ACTIONS(985), + [anon_sym_bit_DASHxor] = ACTIONS(985), + [anon_sym_bit_DASHor] = ACTIONS(985), + [anon_sym_and] = ACTIONS(985), + [anon_sym_xor] = ACTIONS(985), + [anon_sym_or] = ACTIONS(985), + [anon_sym_DOT] = ACTIONS(1507), + [aux_sym__val_number_decimal_token1] = ACTIONS(985), + [aux_sym__val_number_decimal_token2] = ACTIONS(987), + [anon_sym_DOT2] = ACTIONS(985), + [aux_sym__val_number_decimal_token3] = ACTIONS(987), + [aux_sym__val_number_token1] = ACTIONS(987), + [aux_sym__val_number_token2] = ACTIONS(987), + [aux_sym__val_number_token3] = ACTIONS(987), + [aux_sym__val_number_token4] = ACTIONS(985), + [aux_sym__val_number_token5] = ACTIONS(987), + [aux_sym__val_number_token6] = ACTIONS(985), + [anon_sym_DQUOTE] = ACTIONS(987), + [sym__str_single_quotes] = ACTIONS(987), + [sym__str_back_ticks] = ACTIONS(987), + [aux_sym__record_key_token2] = ACTIONS(985), + [anon_sym_POUND] = ACTIONS(3), }, [564] = { + [sym_cell_path] = STATE(724), + [sym_path] = STATE(580), [sym_comment] = STATE(564), - [ts_builtin_sym_end] = ACTIONS(1296), - [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), - [anon_sym_SEMI] = ACTIONS(1294), - [sym_cmd_identifier] = ACTIONS(1294), - [anon_sym_LF] = 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(1294), - [anon_sym_LPAREN] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_error] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_in] = 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(1294), - [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_register] = 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_STAR] = ACTIONS(1294), - [anon_sym_where] = ACTIONS(1294), - [anon_sym_STAR_STAR] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_mod] = ACTIONS(1294), - [anon_sym_SLASH_SLASH] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_bit_DASHshl] = ACTIONS(1294), - [anon_sym_bit_DASHshr] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_LT2] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_not_DASHin] = ACTIONS(1294), - [anon_sym_starts_DASHwith] = ACTIONS(1294), - [anon_sym_ends_DASHwith] = ACTIONS(1294), - [anon_sym_EQ_TILDE] = ACTIONS(1294), - [anon_sym_BANG_TILDE] = ACTIONS(1294), - [anon_sym_bit_DASHand] = ACTIONS(1294), - [anon_sym_bit_DASHxor] = ACTIONS(1294), - [anon_sym_bit_DASHor] = ACTIONS(1294), - [anon_sym_and] = ACTIONS(1294), - [anon_sym_xor] = ACTIONS(1294), - [anon_sym_or] = ACTIONS(1294), - [anon_sym_not] = ACTIONS(1294), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1294), - [anon_sym_DOT_DOT_LT] = ACTIONS(1294), - [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(1294), - [anon_sym_DOT2] = ACTIONS(1294), - [aux_sym__val_number_decimal_token3] = ACTIONS(1294), - [aux_sym__val_number_token1] = ACTIONS(1294), - [aux_sym__val_number_token2] = ACTIONS(1294), - [aux_sym__val_number_token3] = ACTIONS(1294), - [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(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym__str_single_quotes] = ACTIONS(1294), - [sym__str_back_ticks] = ACTIONS(1294), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1294), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1294), - [anon_sym_CARET] = ACTIONS(1294), - [anon_sym_POUND] = ACTIONS(113), + [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), + [sym_cmd_identifier] = 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(1004), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_list] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in] = 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(1004), + [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_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_new] = ACTIONS(1002), + [anon_sym_as] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1004), + [anon_sym_PLUS_PLUS] = ACTIONS(1004), + [anon_sym_SLASH] = ACTIONS(1002), + [anon_sym_mod] = ACTIONS(1002), + [anon_sym_SLASH_SLASH] = ACTIONS(1004), + [anon_sym_PLUS] = ACTIONS(1002), + [anon_sym_bit_DASHshl] = ACTIONS(1002), + [anon_sym_bit_DASHshr] = ACTIONS(1002), + [anon_sym_EQ_EQ] = ACTIONS(1004), + [anon_sym_BANG_EQ] = ACTIONS(1004), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ] = ACTIONS(1004), + [anon_sym_GT_EQ] = ACTIONS(1004), + [anon_sym_not_DASHin] = ACTIONS(1002), + [anon_sym_starts_DASHwith] = ACTIONS(1002), + [anon_sym_ends_DASHwith] = ACTIONS(1002), + [anon_sym_EQ_TILDE] = ACTIONS(1004), + [anon_sym_BANG_TILDE] = ACTIONS(1004), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_DOT] = ACTIONS(1505), + [aux_sym__val_number_decimal_token1] = ACTIONS(1002), + [aux_sym__val_number_decimal_token2] = ACTIONS(1004), + [anon_sym_DOT2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = 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(1002), + [aux_sym__val_number_token5] = ACTIONS(1004), + [aux_sym__val_number_token6] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1004), + [sym__str_single_quotes] = ACTIONS(1004), + [sym__str_back_ticks] = ACTIONS(1004), + [aux_sym__record_key_token2] = ACTIONS(1002), + [anon_sym_POUND] = ACTIONS(3), }, [565] = { + [sym_cell_path] = STATE(689), + [sym_path] = STATE(580), [sym_comment] = STATE(565), - [ts_builtin_sym_end] = ACTIONS(1378), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1435), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1439), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1441), - [anon_sym_PLUS_PLUS] = ACTIONS(1441), - [anon_sym_SLASH] = ACTIONS(1439), - [anon_sym_mod] = ACTIONS(1439), - [anon_sym_SLASH_SLASH] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_bit_DASHshl] = ACTIONS(1443), - [anon_sym_bit_DASHshr] = ACTIONS(1443), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_LT2] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_not_DASHin] = ACTIONS(1376), - [anon_sym_starts_DASHwith] = ACTIONS(1376), - [anon_sym_ends_DASHwith] = ACTIONS(1376), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1085), + [anon_sym_alias] = ACTIONS(1085), + [anon_sym_let] = ACTIONS(1085), + [anon_sym_let_DASHenv] = ACTIONS(1085), + [anon_sym_mut] = ACTIONS(1085), + [anon_sym_const] = ACTIONS(1085), + [sym_cmd_identifier] = ACTIONS(1085), + [anon_sym_def] = ACTIONS(1085), + [anon_sym_export_DASHenv] = ACTIONS(1085), + [anon_sym_extern] = ACTIONS(1085), + [anon_sym_module] = ACTIONS(1085), + [anon_sym_use] = ACTIONS(1085), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_DOLLAR] = ACTIONS(1087), + [anon_sym_error] = ACTIONS(1085), + [anon_sym_list] = ACTIONS(1085), + [anon_sym_GT] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_break] = ACTIONS(1085), + [anon_sym_continue] = ACTIONS(1085), + [anon_sym_for] = ACTIONS(1085), + [anon_sym_in] = ACTIONS(1085), + [anon_sym_loop] = ACTIONS(1085), + [anon_sym_make] = ACTIONS(1085), + [anon_sym_while] = ACTIONS(1085), + [anon_sym_do] = ACTIONS(1085), + [anon_sym_if] = ACTIONS(1085), + [anon_sym_else] = ACTIONS(1085), + [anon_sym_match] = ACTIONS(1085), + [anon_sym_RBRACE] = ACTIONS(1087), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_catch] = ACTIONS(1085), + [anon_sym_return] = ACTIONS(1085), + [anon_sym_source] = ACTIONS(1085), + [anon_sym_source_DASHenv] = ACTIONS(1085), + [anon_sym_register] = ACTIONS(1085), + [anon_sym_hide] = ACTIONS(1085), + [anon_sym_hide_DASHenv] = ACTIONS(1085), + [anon_sym_overlay] = ACTIONS(1085), + [anon_sym_new] = ACTIONS(1085), + [anon_sym_as] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(1085), + [anon_sym_STAR_STAR] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(1085), + [anon_sym_mod] = ACTIONS(1085), + [anon_sym_SLASH_SLASH] = ACTIONS(1087), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_bit_DASHshl] = ACTIONS(1085), + [anon_sym_bit_DASHshr] = ACTIONS(1085), + [anon_sym_EQ_EQ] = ACTIONS(1087), + [anon_sym_BANG_EQ] = ACTIONS(1087), + [anon_sym_LT2] = ACTIONS(1085), + [anon_sym_LT_EQ] = ACTIONS(1087), + [anon_sym_GT_EQ] = ACTIONS(1087), + [anon_sym_not_DASHin] = ACTIONS(1085), + [anon_sym_starts_DASHwith] = ACTIONS(1085), + [anon_sym_ends_DASHwith] = ACTIONS(1085), + [anon_sym_EQ_TILDE] = ACTIONS(1087), + [anon_sym_BANG_TILDE] = ACTIONS(1087), + [anon_sym_bit_DASHand] = ACTIONS(1085), + [anon_sym_bit_DASHxor] = ACTIONS(1085), + [anon_sym_bit_DASHor] = ACTIONS(1085), + [anon_sym_and] = ACTIONS(1085), + [anon_sym_xor] = ACTIONS(1085), + [anon_sym_or] = ACTIONS(1085), + [anon_sym_DOT] = ACTIONS(1505), + [aux_sym__val_number_decimal_token1] = ACTIONS(1085), + [aux_sym__val_number_decimal_token2] = ACTIONS(1087), + [anon_sym_DOT2] = ACTIONS(1085), + [aux_sym__val_number_decimal_token3] = ACTIONS(1087), + [aux_sym__val_number_token1] = ACTIONS(1087), + [aux_sym__val_number_token2] = ACTIONS(1087), + [aux_sym__val_number_token3] = ACTIONS(1087), + [aux_sym__val_number_token4] = ACTIONS(1085), + [aux_sym__val_number_token5] = ACTIONS(1087), + [aux_sym__val_number_token6] = ACTIONS(1085), + [anon_sym_DQUOTE] = ACTIONS(1087), + [sym__str_single_quotes] = ACTIONS(1087), + [sym__str_back_ticks] = ACTIONS(1087), + [aux_sym__record_key_token2] = ACTIONS(1085), + [anon_sym_POUND] = ACTIONS(3), }, [566] = { [sym_comment] = STATE(566), - [ts_builtin_sym_end] = ACTIONS(1378), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1439), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1441), - [anon_sym_PLUS_PLUS] = ACTIONS(1441), - [anon_sym_SLASH] = ACTIONS(1439), - [anon_sym_mod] = ACTIONS(1439), - [anon_sym_SLASH_SLASH] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_bit_DASHshl] = ACTIONS(1376), - [anon_sym_bit_DASHshr] = ACTIONS(1376), - [anon_sym_EQ_EQ] = ACTIONS(1376), - [anon_sym_BANG_EQ] = ACTIONS(1376), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1376), - [anon_sym_GT_EQ] = ACTIONS(1376), - [anon_sym_not_DASHin] = ACTIONS(1376), - [anon_sym_starts_DASHwith] = ACTIONS(1376), - [anon_sym_ends_DASHwith] = ACTIONS(1376), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_export] = ACTIONS(1024), + [anon_sym_alias] = ACTIONS(1024), + [anon_sym_let] = ACTIONS(1024), + [anon_sym_let_DASHenv] = ACTIONS(1024), + [anon_sym_mut] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [sym_cmd_identifier] = ACTIONS(1024), + [anon_sym_def] = ACTIONS(1024), + [anon_sym_export_DASHenv] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1024), + [anon_sym_module] = ACTIONS(1024), + [anon_sym_use] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_error] = ACTIONS(1024), + [anon_sym_list] = ACTIONS(1024), + [anon_sym_GT] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_loop] = ACTIONS(1024), + [anon_sym_make] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_else] = ACTIONS(1024), + [anon_sym_match] = ACTIONS(1024), + [anon_sym_RBRACE] = ACTIONS(1024), + [anon_sym_try] = ACTIONS(1024), + [anon_sym_catch] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_source] = ACTIONS(1024), + [anon_sym_source_DASHenv] = ACTIONS(1024), + [anon_sym_register] = ACTIONS(1024), + [anon_sym_hide] = ACTIONS(1024), + [anon_sym_hide_DASHenv] = ACTIONS(1024), + [anon_sym_overlay] = ACTIONS(1024), + [anon_sym_new] = ACTIONS(1024), + [anon_sym_as] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(1503), + [anon_sym_STAR_STAR] = ACTIONS(1024), + [anon_sym_PLUS_PLUS] = ACTIONS(1024), + [anon_sym_SLASH] = ACTIONS(1024), + [anon_sym_mod] = ACTIONS(1024), + [anon_sym_SLASH_SLASH] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_bit_DASHshl] = ACTIONS(1024), + [anon_sym_bit_DASHshr] = ACTIONS(1024), + [anon_sym_EQ_EQ] = ACTIONS(1024), + [anon_sym_BANG_EQ] = ACTIONS(1024), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ] = ACTIONS(1024), + [anon_sym_GT_EQ] = ACTIONS(1024), + [anon_sym_not_DASHin] = ACTIONS(1024), + [anon_sym_starts_DASHwith] = ACTIONS(1024), + [anon_sym_ends_DASHwith] = ACTIONS(1024), + [anon_sym_EQ_TILDE] = ACTIONS(1024), + [anon_sym_BANG_TILDE] = ACTIONS(1024), + [anon_sym_bit_DASHand] = ACTIONS(1024), + [anon_sym_bit_DASHxor] = ACTIONS(1024), + [anon_sym_bit_DASHor] = ACTIONS(1024), + [anon_sym_and] = ACTIONS(1024), + [anon_sym_xor] = ACTIONS(1024), + [anon_sym_or] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1026), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1024), + [aux_sym__val_number_token1] = ACTIONS(1024), + [aux_sym__val_number_token2] = ACTIONS(1024), + [aux_sym__val_number_token3] = ACTIONS(1024), + [aux_sym__val_number_token4] = ACTIONS(1024), + [aux_sym__val_number_token5] = ACTIONS(1024), + [aux_sym__val_number_token6] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym__str_single_quotes] = ACTIONS(1024), + [sym__str_back_ticks] = ACTIONS(1024), + [sym__entry_separator] = ACTIONS(1026), + [aux_sym__record_key_token2] = ACTIONS(1024), [anon_sym_POUND] = ACTIONS(113), }, [567] = { + [sym_cell_path] = STATE(708), + [sym_path] = STATE(580), [sym_comment] = STATE(567), - [ts_builtin_sym_end] = ACTIONS(1378), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1435), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1445), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1439), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1441), - [anon_sym_PLUS_PLUS] = ACTIONS(1441), - [anon_sym_SLASH] = ACTIONS(1439), - [anon_sym_mod] = ACTIONS(1439), - [anon_sym_SLASH_SLASH] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_bit_DASHshl] = ACTIONS(1443), - [anon_sym_bit_DASHshr] = ACTIONS(1443), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_LT2] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_not_DASHin] = ACTIONS(1445), - [anon_sym_starts_DASHwith] = ACTIONS(1445), - [anon_sym_ends_DASHwith] = ACTIONS(1445), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1097), + [anon_sym_alias] = ACTIONS(1097), + [anon_sym_let] = ACTIONS(1097), + [anon_sym_let_DASHenv] = ACTIONS(1097), + [anon_sym_mut] = ACTIONS(1097), + [anon_sym_const] = ACTIONS(1097), + [sym_cmd_identifier] = ACTIONS(1097), + [anon_sym_def] = ACTIONS(1097), + [anon_sym_export_DASHenv] = ACTIONS(1097), + [anon_sym_extern] = ACTIONS(1097), + [anon_sym_module] = ACTIONS(1097), + [anon_sym_use] = ACTIONS(1097), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_DOLLAR] = ACTIONS(1099), + [anon_sym_error] = ACTIONS(1097), + [anon_sym_list] = ACTIONS(1097), + [anon_sym_GT] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_break] = ACTIONS(1097), + [anon_sym_continue] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1097), + [anon_sym_loop] = ACTIONS(1097), + [anon_sym_make] = ACTIONS(1097), + [anon_sym_while] = ACTIONS(1097), + [anon_sym_do] = ACTIONS(1097), + [anon_sym_if] = ACTIONS(1097), + [anon_sym_else] = ACTIONS(1097), + [anon_sym_match] = ACTIONS(1097), + [anon_sym_RBRACE] = ACTIONS(1099), + [anon_sym_try] = ACTIONS(1097), + [anon_sym_catch] = ACTIONS(1097), + [anon_sym_return] = ACTIONS(1097), + [anon_sym_source] = ACTIONS(1097), + [anon_sym_source_DASHenv] = ACTIONS(1097), + [anon_sym_register] = ACTIONS(1097), + [anon_sym_hide] = ACTIONS(1097), + [anon_sym_hide_DASHenv] = ACTIONS(1097), + [anon_sym_overlay] = ACTIONS(1097), + [anon_sym_new] = ACTIONS(1097), + [anon_sym_as] = ACTIONS(1097), + [anon_sym_STAR] = ACTIONS(1097), + [anon_sym_STAR_STAR] = ACTIONS(1099), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_SLASH] = ACTIONS(1097), + [anon_sym_mod] = ACTIONS(1097), + [anon_sym_SLASH_SLASH] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_bit_DASHshl] = ACTIONS(1097), + [anon_sym_bit_DASHshr] = ACTIONS(1097), + [anon_sym_EQ_EQ] = ACTIONS(1099), + [anon_sym_BANG_EQ] = ACTIONS(1099), + [anon_sym_LT2] = ACTIONS(1097), + [anon_sym_LT_EQ] = ACTIONS(1099), + [anon_sym_GT_EQ] = ACTIONS(1099), + [anon_sym_not_DASHin] = ACTIONS(1097), + [anon_sym_starts_DASHwith] = ACTIONS(1097), + [anon_sym_ends_DASHwith] = ACTIONS(1097), + [anon_sym_EQ_TILDE] = ACTIONS(1099), + [anon_sym_BANG_TILDE] = ACTIONS(1099), + [anon_sym_bit_DASHand] = ACTIONS(1097), + [anon_sym_bit_DASHxor] = ACTIONS(1097), + [anon_sym_bit_DASHor] = ACTIONS(1097), + [anon_sym_and] = ACTIONS(1097), + [anon_sym_xor] = ACTIONS(1097), + [anon_sym_or] = ACTIONS(1097), + [anon_sym_DOT] = ACTIONS(1505), + [aux_sym__val_number_decimal_token1] = ACTIONS(1097), + [aux_sym__val_number_decimal_token2] = ACTIONS(1099), + [anon_sym_DOT2] = ACTIONS(1097), + [aux_sym__val_number_decimal_token3] = ACTIONS(1099), + [aux_sym__val_number_token1] = ACTIONS(1099), + [aux_sym__val_number_token2] = ACTIONS(1099), + [aux_sym__val_number_token3] = ACTIONS(1099), + [aux_sym__val_number_token4] = ACTIONS(1097), + [aux_sym__val_number_token5] = ACTIONS(1099), + [aux_sym__val_number_token6] = ACTIONS(1097), + [anon_sym_DQUOTE] = ACTIONS(1099), + [sym__str_single_quotes] = ACTIONS(1099), + [sym__str_back_ticks] = ACTIONS(1099), + [aux_sym__record_key_token2] = ACTIONS(1097), + [anon_sym_POUND] = ACTIONS(3), }, [568] = { + [sym_cell_path] = STATE(714), + [sym_path] = STATE(580), [sym_comment] = STATE(568), - [ts_builtin_sym_end] = ACTIONS(1378), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1439), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1441), - [anon_sym_PLUS_PLUS] = ACTIONS(1441), - [anon_sym_SLASH] = ACTIONS(1439), - [anon_sym_mod] = ACTIONS(1439), - [anon_sym_SLASH_SLASH] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_bit_DASHshl] = ACTIONS(1376), - [anon_sym_bit_DASHshr] = ACTIONS(1376), - [anon_sym_EQ_EQ] = ACTIONS(1376), - [anon_sym_BANG_EQ] = ACTIONS(1376), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1376), - [anon_sym_GT_EQ] = ACTIONS(1376), - [anon_sym_not_DASHin] = ACTIONS(1376), - [anon_sym_starts_DASHwith] = ACTIONS(1376), - [anon_sym_ends_DASHwith] = ACTIONS(1376), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), - }, - [569] = { - [sym_comment] = STATE(569), - [ts_builtin_sym_end] = ACTIONS(1378), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1441), - [anon_sym_PLUS_PLUS] = ACTIONS(1441), - [anon_sym_SLASH] = ACTIONS(1376), - [anon_sym_mod] = ACTIONS(1376), - [anon_sym_SLASH_SLASH] = ACTIONS(1376), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_bit_DASHshl] = ACTIONS(1376), - [anon_sym_bit_DASHshr] = ACTIONS(1376), - [anon_sym_EQ_EQ] = ACTIONS(1376), - [anon_sym_BANG_EQ] = ACTIONS(1376), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1376), - [anon_sym_GT_EQ] = ACTIONS(1376), - [anon_sym_not_DASHin] = ACTIONS(1376), - [anon_sym_starts_DASHwith] = ACTIONS(1376), - [anon_sym_ends_DASHwith] = ACTIONS(1376), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), - }, - [570] = { - [sym_comment] = STATE(570), - [ts_builtin_sym_end] = ACTIONS(1378), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1439), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1441), - [anon_sym_PLUS_PLUS] = ACTIONS(1441), - [anon_sym_SLASH] = ACTIONS(1439), - [anon_sym_mod] = ACTIONS(1439), - [anon_sym_SLASH_SLASH] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_bit_DASHshl] = ACTIONS(1443), - [anon_sym_bit_DASHshr] = ACTIONS(1443), - [anon_sym_EQ_EQ] = ACTIONS(1376), - [anon_sym_BANG_EQ] = ACTIONS(1376), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1376), - [anon_sym_GT_EQ] = ACTIONS(1376), - [anon_sym_not_DASHin] = ACTIONS(1376), - [anon_sym_starts_DASHwith] = ACTIONS(1376), - [anon_sym_ends_DASHwith] = ACTIONS(1376), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), - }, - [571] = { - [sym_comment] = STATE(571), - [ts_builtin_sym_end] = ACTIONS(1378), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1435), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1445), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1439), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1441), - [anon_sym_PLUS_PLUS] = ACTIONS(1441), - [anon_sym_SLASH] = ACTIONS(1439), - [anon_sym_mod] = ACTIONS(1439), - [anon_sym_SLASH_SLASH] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_bit_DASHshl] = ACTIONS(1443), - [anon_sym_bit_DASHshr] = ACTIONS(1443), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_LT2] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_not_DASHin] = ACTIONS(1445), - [anon_sym_starts_DASHwith] = ACTIONS(1445), - [anon_sym_ends_DASHwith] = ACTIONS(1445), - [anon_sym_EQ_TILDE] = ACTIONS(1447), - [anon_sym_BANG_TILDE] = ACTIONS(1447), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), - }, - [572] = { - [sym_comment] = STATE(572), - [anon_sym_export] = ACTIONS(959), - [anon_sym_alias] = ACTIONS(959), - [anon_sym_let] = ACTIONS(959), - [anon_sym_let_DASHenv] = ACTIONS(959), - [anon_sym_mut] = ACTIONS(959), - [anon_sym_const] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(959), - [sym_cmd_identifier] = ACTIONS(959), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_def] = ACTIONS(959), - [anon_sym_export_DASHenv] = ACTIONS(959), - [anon_sym_extern] = ACTIONS(959), - [anon_sym_module] = ACTIONS(959), - [anon_sym_use] = ACTIONS(959), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_RPAREN] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_error] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_break] = ACTIONS(959), - [anon_sym_continue] = ACTIONS(959), - [anon_sym_for] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_loop] = ACTIONS(959), - [anon_sym_while] = ACTIONS(959), - [anon_sym_do] = ACTIONS(959), - [anon_sym_if] = ACTIONS(959), - [anon_sym_match] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_RBRACE] = ACTIONS(959), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_try] = ACTIONS(959), - [anon_sym_return] = ACTIONS(959), - [anon_sym_source] = ACTIONS(959), - [anon_sym_source_DASHenv] = ACTIONS(959), - [anon_sym_register] = ACTIONS(959), - [anon_sym_hide] = ACTIONS(959), - [anon_sym_hide_DASHenv] = ACTIONS(959), - [anon_sym_overlay] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_where] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(959), - [anon_sym_PLUS_PLUS] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(959), - [anon_sym_SLASH_SLASH] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(959), - [anon_sym_bit_DASHshr] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(959), - [anon_sym_BANG_EQ] = ACTIONS(959), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(959), - [anon_sym_GT_EQ] = ACTIONS(959), - [anon_sym_not_DASHin] = ACTIONS(959), - [anon_sym_starts_DASHwith] = ACTIONS(959), - [anon_sym_ends_DASHwith] = ACTIONS(959), - [anon_sym_EQ_TILDE] = ACTIONS(959), - [anon_sym_BANG_TILDE] = ACTIONS(959), - [anon_sym_bit_DASHand] = ACTIONS(959), - [anon_sym_bit_DASHxor] = ACTIONS(959), - [anon_sym_bit_DASHor] = ACTIONS(959), - [anon_sym_and] = ACTIONS(959), - [anon_sym_xor] = ACTIONS(959), - [anon_sym_or] = ACTIONS(959), - [anon_sym_not] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_DOT_DOT_LT] = ACTIONS(959), - [anon_sym_null] = ACTIONS(959), - [anon_sym_true] = ACTIONS(959), - [anon_sym_false] = ACTIONS(959), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(959), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(959), - [aux_sym__val_number_token1] = ACTIONS(959), - [aux_sym__val_number_token2] = ACTIONS(959), - [aux_sym__val_number_token3] = ACTIONS(959), - [aux_sym__val_number_token4] = ACTIONS(959), - [aux_sym__val_number_token5] = ACTIONS(959), - [aux_sym__val_number_token6] = ACTIONS(959), - [anon_sym_0b] = ACTIONS(959), - [anon_sym_0o] = ACTIONS(959), - [anon_sym_0x] = ACTIONS(959), - [sym_val_date] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [sym__str_single_quotes] = ACTIONS(959), - [sym__str_back_ticks] = ACTIONS(959), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(959), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(959), - [anon_sym_CARET] = ACTIONS(959), - [aux_sym_unquoted_token5] = ACTIONS(1057), - [anon_sym_POUND] = ACTIONS(113), - }, - [573] = { - [sym_comment] = STATE(573), - [ts_builtin_sym_end] = ACTIONS(1378), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1435), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1445), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1439), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1441), - [anon_sym_PLUS_PLUS] = ACTIONS(1441), - [anon_sym_SLASH] = ACTIONS(1439), - [anon_sym_mod] = ACTIONS(1439), - [anon_sym_SLASH_SLASH] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_bit_DASHshl] = ACTIONS(1443), - [anon_sym_bit_DASHshr] = ACTIONS(1443), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_LT2] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_not_DASHin] = ACTIONS(1445), - [anon_sym_starts_DASHwith] = ACTIONS(1445), - [anon_sym_ends_DASHwith] = ACTIONS(1445), - [anon_sym_EQ_TILDE] = ACTIONS(1447), - [anon_sym_BANG_TILDE] = ACTIONS(1447), - [anon_sym_bit_DASHand] = ACTIONS(1449), - [anon_sym_bit_DASHxor] = ACTIONS(1451), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), - }, - [574] = { - [sym_comment] = STATE(574), - [ts_builtin_sym_end] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(1059), - [anon_sym_alias] = ACTIONS(1059), - [anon_sym_let] = ACTIONS(1059), - [anon_sym_let_DASHenv] = ACTIONS(1059), - [anon_sym_mut] = ACTIONS(1059), - [anon_sym_const] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [sym_cmd_identifier] = ACTIONS(1059), - [anon_sym_LF] = ACTIONS(1061), - [anon_sym_def] = ACTIONS(1059), - [anon_sym_export_DASHenv] = ACTIONS(1059), - [anon_sym_extern] = ACTIONS(1059), - [anon_sym_module] = ACTIONS(1059), - [anon_sym_use] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_export] = ACTIONS(1057), + [anon_sym_alias] = ACTIONS(1057), + [anon_sym_let] = ACTIONS(1057), + [anon_sym_let_DASHenv] = ACTIONS(1057), + [anon_sym_mut] = ACTIONS(1057), + [anon_sym_const] = ACTIONS(1057), + [sym_cmd_identifier] = ACTIONS(1057), + [anon_sym_def] = ACTIONS(1057), + [anon_sym_export_DASHenv] = ACTIONS(1057), + [anon_sym_extern] = ACTIONS(1057), + [anon_sym_module] = ACTIONS(1057), + [anon_sym_use] = ACTIONS(1057), [anon_sym_LPAREN] = ACTIONS(1059), [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_error] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_DASH_DASH] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_break] = ACTIONS(1059), - [anon_sym_continue] = ACTIONS(1059), - [anon_sym_for] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1059), - [anon_sym_loop] = ACTIONS(1059), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_do] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1059), - [anon_sym_match] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_try] = ACTIONS(1059), - [anon_sym_return] = ACTIONS(1059), - [anon_sym_source] = ACTIONS(1059), - [anon_sym_source_DASHenv] = ACTIONS(1059), - [anon_sym_register] = ACTIONS(1059), - [anon_sym_hide] = ACTIONS(1059), - [anon_sym_hide_DASHenv] = ACTIONS(1059), - [anon_sym_overlay] = ACTIONS(1059), - [anon_sym_as] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(1059), + [anon_sym_error] = ACTIONS(1057), + [anon_sym_list] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_break] = ACTIONS(1057), + [anon_sym_continue] = ACTIONS(1057), + [anon_sym_for] = ACTIONS(1057), + [anon_sym_in] = ACTIONS(1057), + [anon_sym_loop] = ACTIONS(1057), + [anon_sym_make] = ACTIONS(1057), + [anon_sym_while] = ACTIONS(1057), + [anon_sym_do] = ACTIONS(1057), + [anon_sym_if] = ACTIONS(1057), + [anon_sym_else] = ACTIONS(1057), + [anon_sym_match] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(1059), + [anon_sym_try] = ACTIONS(1057), + [anon_sym_catch] = ACTIONS(1057), + [anon_sym_return] = ACTIONS(1057), + [anon_sym_source] = ACTIONS(1057), + [anon_sym_source_DASHenv] = ACTIONS(1057), + [anon_sym_register] = ACTIONS(1057), + [anon_sym_hide] = ACTIONS(1057), + [anon_sym_hide_DASHenv] = ACTIONS(1057), + [anon_sym_overlay] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1057), + [anon_sym_as] = ACTIONS(1057), + [anon_sym_STAR] = ACTIONS(1057), [anon_sym_STAR_STAR] = ACTIONS(1059), [anon_sym_PLUS_PLUS] = ACTIONS(1059), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_mod] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_mod] = ACTIONS(1057), [anon_sym_SLASH_SLASH] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_bit_DASHshl] = ACTIONS(1059), - [anon_sym_bit_DASHshr] = ACTIONS(1059), + [anon_sym_PLUS] = ACTIONS(1057), + [anon_sym_bit_DASHshl] = ACTIONS(1057), + [anon_sym_bit_DASHshr] = ACTIONS(1057), [anon_sym_EQ_EQ] = ACTIONS(1059), [anon_sym_BANG_EQ] = ACTIONS(1059), - [anon_sym_LT2] = ACTIONS(1059), + [anon_sym_LT2] = ACTIONS(1057), [anon_sym_LT_EQ] = ACTIONS(1059), [anon_sym_GT_EQ] = ACTIONS(1059), - [anon_sym_not_DASHin] = ACTIONS(1059), - [anon_sym_starts_DASHwith] = ACTIONS(1059), - [anon_sym_ends_DASHwith] = ACTIONS(1059), + [anon_sym_not_DASHin] = ACTIONS(1057), + [anon_sym_starts_DASHwith] = ACTIONS(1057), + [anon_sym_ends_DASHwith] = ACTIONS(1057), [anon_sym_EQ_TILDE] = ACTIONS(1059), [anon_sym_BANG_TILDE] = ACTIONS(1059), - [anon_sym_bit_DASHand] = ACTIONS(1059), - [anon_sym_bit_DASHxor] = ACTIONS(1059), - [anon_sym_bit_DASHor] = ACTIONS(1059), - [anon_sym_and] = ACTIONS(1059), - [anon_sym_xor] = ACTIONS(1059), - [anon_sym_or] = ACTIONS(1059), - [anon_sym_not] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1059), - [anon_sym_DOT_DOT_LT] = ACTIONS(1059), - [anon_sym_null] = ACTIONS(1059), - [anon_sym_true] = ACTIONS(1059), - [anon_sym_false] = ACTIONS(1059), - [aux_sym__val_number_decimal_token1] = ACTIONS(1059), + [anon_sym_bit_DASHand] = ACTIONS(1057), + [anon_sym_bit_DASHxor] = ACTIONS(1057), + [anon_sym_bit_DASHor] = ACTIONS(1057), + [anon_sym_and] = ACTIONS(1057), + [anon_sym_xor] = ACTIONS(1057), + [anon_sym_or] = ACTIONS(1057), + [anon_sym_DOT] = ACTIONS(1505), + [aux_sym__val_number_decimal_token1] = ACTIONS(1057), [aux_sym__val_number_decimal_token2] = ACTIONS(1059), - [anon_sym_DOT2] = ACTIONS(1059), + [anon_sym_DOT2] = ACTIONS(1057), [aux_sym__val_number_decimal_token3] = ACTIONS(1059), [aux_sym__val_number_token1] = ACTIONS(1059), [aux_sym__val_number_token2] = ACTIONS(1059), [aux_sym__val_number_token3] = ACTIONS(1059), - [aux_sym__val_number_token4] = ACTIONS(1059), + [aux_sym__val_number_token4] = ACTIONS(1057), [aux_sym__val_number_token5] = ACTIONS(1059), - [aux_sym__val_number_token6] = ACTIONS(1059), - [anon_sym_0b] = ACTIONS(1059), - [anon_sym_0o] = ACTIONS(1059), - [anon_sym_0x] = ACTIONS(1059), - [sym_val_date] = ACTIONS(1059), + [aux_sym__val_number_token6] = ACTIONS(1057), [anon_sym_DQUOTE] = ACTIONS(1059), [sym__str_single_quotes] = ACTIONS(1059), [sym__str_back_ticks] = ACTIONS(1059), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1059), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1059), - [anon_sym_CARET] = ACTIONS(1059), + [aux_sym__record_key_token2] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(3), + }, + [569] = { + [sym_cell_path] = STATE(709), + [sym_path] = STATE(580), + [sym_comment] = STATE(569), + [anon_sym_export] = ACTIONS(1101), + [anon_sym_alias] = ACTIONS(1101), + [anon_sym_let] = ACTIONS(1101), + [anon_sym_let_DASHenv] = ACTIONS(1101), + [anon_sym_mut] = ACTIONS(1101), + [anon_sym_const] = ACTIONS(1101), + [sym_cmd_identifier] = ACTIONS(1101), + [anon_sym_def] = ACTIONS(1101), + [anon_sym_export_DASHenv] = ACTIONS(1101), + [anon_sym_extern] = ACTIONS(1101), + [anon_sym_module] = ACTIONS(1101), + [anon_sym_use] = ACTIONS(1101), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_DOLLAR] = ACTIONS(1103), + [anon_sym_error] = ACTIONS(1101), + [anon_sym_list] = ACTIONS(1101), + [anon_sym_GT] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_break] = ACTIONS(1101), + [anon_sym_continue] = ACTIONS(1101), + [anon_sym_for] = ACTIONS(1101), + [anon_sym_in] = ACTIONS(1101), + [anon_sym_loop] = ACTIONS(1101), + [anon_sym_make] = ACTIONS(1101), + [anon_sym_while] = ACTIONS(1101), + [anon_sym_do] = ACTIONS(1101), + [anon_sym_if] = ACTIONS(1101), + [anon_sym_else] = ACTIONS(1101), + [anon_sym_match] = ACTIONS(1101), + [anon_sym_RBRACE] = ACTIONS(1103), + [anon_sym_try] = ACTIONS(1101), + [anon_sym_catch] = ACTIONS(1101), + [anon_sym_return] = ACTIONS(1101), + [anon_sym_source] = ACTIONS(1101), + [anon_sym_source_DASHenv] = ACTIONS(1101), + [anon_sym_register] = ACTIONS(1101), + [anon_sym_hide] = ACTIONS(1101), + [anon_sym_hide_DASHenv] = ACTIONS(1101), + [anon_sym_overlay] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1101), + [anon_sym_as] = ACTIONS(1101), + [anon_sym_STAR] = ACTIONS(1101), + [anon_sym_STAR_STAR] = ACTIONS(1103), + [anon_sym_PLUS_PLUS] = ACTIONS(1103), + [anon_sym_SLASH] = ACTIONS(1101), + [anon_sym_mod] = ACTIONS(1101), + [anon_sym_SLASH_SLASH] = ACTIONS(1103), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_bit_DASHshl] = ACTIONS(1101), + [anon_sym_bit_DASHshr] = ACTIONS(1101), + [anon_sym_EQ_EQ] = ACTIONS(1103), + [anon_sym_BANG_EQ] = ACTIONS(1103), + [anon_sym_LT2] = ACTIONS(1101), + [anon_sym_LT_EQ] = ACTIONS(1103), + [anon_sym_GT_EQ] = ACTIONS(1103), + [anon_sym_not_DASHin] = ACTIONS(1101), + [anon_sym_starts_DASHwith] = ACTIONS(1101), + [anon_sym_ends_DASHwith] = ACTIONS(1101), + [anon_sym_EQ_TILDE] = ACTIONS(1103), + [anon_sym_BANG_TILDE] = ACTIONS(1103), + [anon_sym_bit_DASHand] = ACTIONS(1101), + [anon_sym_bit_DASHxor] = ACTIONS(1101), + [anon_sym_bit_DASHor] = ACTIONS(1101), + [anon_sym_and] = ACTIONS(1101), + [anon_sym_xor] = ACTIONS(1101), + [anon_sym_or] = ACTIONS(1101), + [anon_sym_DOT] = ACTIONS(1505), + [aux_sym__val_number_decimal_token1] = ACTIONS(1101), + [aux_sym__val_number_decimal_token2] = ACTIONS(1103), + [anon_sym_DOT2] = ACTIONS(1101), + [aux_sym__val_number_decimal_token3] = ACTIONS(1103), + [aux_sym__val_number_token1] = ACTIONS(1103), + [aux_sym__val_number_token2] = ACTIONS(1103), + [aux_sym__val_number_token3] = ACTIONS(1103), + [aux_sym__val_number_token4] = ACTIONS(1101), + [aux_sym__val_number_token5] = ACTIONS(1103), + [aux_sym__val_number_token6] = ACTIONS(1101), + [anon_sym_DQUOTE] = ACTIONS(1103), + [sym__str_single_quotes] = ACTIONS(1103), + [sym__str_back_ticks] = ACTIONS(1103), + [aux_sym__record_key_token2] = ACTIONS(1101), + [anon_sym_POUND] = ACTIONS(3), + }, + [570] = { + [sym_comment] = STATE(570), + [anon_sym_export] = ACTIONS(1033), + [anon_sym_alias] = ACTIONS(1033), + [anon_sym_let] = ACTIONS(1033), + [anon_sym_let_DASHenv] = ACTIONS(1033), + [anon_sym_mut] = ACTIONS(1033), + [anon_sym_const] = ACTIONS(1033), + [sym_cmd_identifier] = ACTIONS(1033), + [anon_sym_def] = ACTIONS(1033), + [anon_sym_export_DASHenv] = ACTIONS(1033), + [anon_sym_extern] = ACTIONS(1033), + [anon_sym_module] = ACTIONS(1033), + [anon_sym_use] = ACTIONS(1033), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_error] = ACTIONS(1033), + [anon_sym_list] = ACTIONS(1033), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1033), + [anon_sym_break] = ACTIONS(1033), + [anon_sym_continue] = ACTIONS(1033), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_in] = ACTIONS(1033), + [anon_sym_loop] = ACTIONS(1033), + [anon_sym_make] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(1033), + [anon_sym_do] = ACTIONS(1033), + [anon_sym_if] = ACTIONS(1033), + [anon_sym_else] = ACTIONS(1033), + [anon_sym_match] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1033), + [anon_sym_try] = ACTIONS(1033), + [anon_sym_catch] = ACTIONS(1033), + [anon_sym_return] = ACTIONS(1033), + [anon_sym_source] = ACTIONS(1033), + [anon_sym_source_DASHenv] = ACTIONS(1033), + [anon_sym_register] = ACTIONS(1033), + [anon_sym_hide] = ACTIONS(1033), + [anon_sym_hide_DASHenv] = ACTIONS(1033), + [anon_sym_overlay] = ACTIONS(1033), + [anon_sym_new] = ACTIONS(1033), + [anon_sym_as] = ACTIONS(1033), + [anon_sym_STAR] = ACTIONS(1033), + [anon_sym_QMARK2] = ACTIONS(1033), + [anon_sym_STAR_STAR] = ACTIONS(1033), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_SLASH] = ACTIONS(1033), + [anon_sym_mod] = ACTIONS(1033), + [anon_sym_SLASH_SLASH] = ACTIONS(1033), + [anon_sym_PLUS] = ACTIONS(1033), + [anon_sym_bit_DASHshl] = ACTIONS(1033), + [anon_sym_bit_DASHshr] = ACTIONS(1033), + [anon_sym_EQ_EQ] = ACTIONS(1033), + [anon_sym_BANG_EQ] = ACTIONS(1033), + [anon_sym_LT2] = ACTIONS(1033), + [anon_sym_LT_EQ] = ACTIONS(1033), + [anon_sym_GT_EQ] = ACTIONS(1033), + [anon_sym_not_DASHin] = ACTIONS(1033), + [anon_sym_starts_DASHwith] = ACTIONS(1033), + [anon_sym_ends_DASHwith] = ACTIONS(1033), + [anon_sym_EQ_TILDE] = ACTIONS(1033), + [anon_sym_BANG_TILDE] = ACTIONS(1033), + [anon_sym_bit_DASHand] = ACTIONS(1033), + [anon_sym_bit_DASHxor] = ACTIONS(1033), + [anon_sym_bit_DASHor] = ACTIONS(1033), + [anon_sym_and] = ACTIONS(1033), + [anon_sym_xor] = ACTIONS(1033), + [anon_sym_or] = ACTIONS(1033), + [anon_sym_DOT] = ACTIONS(1035), + [aux_sym__val_number_decimal_token1] = ACTIONS(1033), + [aux_sym__val_number_decimal_token2] = ACTIONS(1033), + [anon_sym_DOT2] = ACTIONS(1033), + [aux_sym__val_number_decimal_token3] = ACTIONS(1033), + [aux_sym__val_number_token1] = ACTIONS(1033), + [aux_sym__val_number_token2] = ACTIONS(1033), + [aux_sym__val_number_token3] = ACTIONS(1033), + [aux_sym__val_number_token4] = ACTIONS(1033), + [aux_sym__val_number_token5] = ACTIONS(1033), + [aux_sym__val_number_token6] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [sym__str_single_quotes] = ACTIONS(1033), + [sym__str_back_ticks] = ACTIONS(1033), + [sym__entry_separator] = ACTIONS(1035), + [aux_sym__record_key_token2] = ACTIONS(1033), + [anon_sym_POUND] = ACTIONS(113), + }, + [571] = { + [sym_comment] = STATE(571), + [anon_sym_export] = ACTIONS(920), + [anon_sym_alias] = ACTIONS(920), + [anon_sym_let] = ACTIONS(920), + [anon_sym_let_DASHenv] = ACTIONS(920), + [anon_sym_mut] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [sym_cmd_identifier] = ACTIONS(920), + [anon_sym_def] = ACTIONS(920), + [anon_sym_export_DASHenv] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym_module] = ACTIONS(920), + [anon_sym_use] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_error] = ACTIONS(920), + [anon_sym_list] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_in] = ACTIONS(920), + [anon_sym_loop] = ACTIONS(920), + [anon_sym_make] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_else] = ACTIONS(920), + [anon_sym_match] = ACTIONS(920), + [anon_sym_RBRACE] = ACTIONS(920), + [anon_sym_try] = ACTIONS(920), + [anon_sym_catch] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_source] = ACTIONS(920), + [anon_sym_source_DASHenv] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_hide] = ACTIONS(920), + [anon_sym_hide_DASHenv] = ACTIONS(920), + [anon_sym_overlay] = ACTIONS(920), + [anon_sym_new] = ACTIONS(920), + [anon_sym_as] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_STAR_STAR] = ACTIONS(920), + [anon_sym_PLUS_PLUS] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_mod] = ACTIONS(920), + [anon_sym_SLASH_SLASH] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_bit_DASHshl] = ACTIONS(920), + [anon_sym_bit_DASHshr] = ACTIONS(920), + [anon_sym_EQ_EQ] = ACTIONS(920), + [anon_sym_BANG_EQ] = ACTIONS(920), + [anon_sym_LT2] = ACTIONS(920), + [anon_sym_LT_EQ] = ACTIONS(920), + [anon_sym_GT_EQ] = ACTIONS(920), + [anon_sym_not_DASHin] = ACTIONS(920), + [anon_sym_starts_DASHwith] = ACTIONS(920), + [anon_sym_ends_DASHwith] = ACTIONS(920), + [anon_sym_EQ_TILDE] = ACTIONS(920), + [anon_sym_BANG_TILDE] = ACTIONS(920), + [anon_sym_bit_DASHand] = ACTIONS(920), + [anon_sym_bit_DASHxor] = ACTIONS(920), + [anon_sym_bit_DASHor] = ACTIONS(920), + [anon_sym_and] = ACTIONS(920), + [anon_sym_xor] = ACTIONS(920), + [anon_sym_or] = ACTIONS(920), + [aux_sym__immediate_decimal_token1] = ACTIONS(1510), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [sym__entry_separator] = ACTIONS(922), + [aux_sym__record_key_token2] = ACTIONS(920), + [aux_sym_unquoted_token2] = ACTIONS(1512), [anon_sym_POUND] = ACTIONS(113), }, + [572] = { + [sym_comment] = STATE(572), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_alias] = ACTIONS(1061), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_let_DASHenv] = ACTIONS(1061), + [anon_sym_mut] = ACTIONS(1061), + [anon_sym_const] = ACTIONS(1061), + [sym_cmd_identifier] = ACTIONS(1061), + [anon_sym_def] = ACTIONS(1061), + [anon_sym_export_DASHenv] = ACTIONS(1061), + [anon_sym_extern] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_use] = ACTIONS(1061), + [anon_sym_LPAREN] = ACTIONS(1063), + [anon_sym_DOLLAR] = ACTIONS(1063), + [anon_sym_error] = ACTIONS(1061), + [anon_sym_list] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_DASH] = ACTIONS(1061), + [anon_sym_break] = ACTIONS(1061), + [anon_sym_continue] = ACTIONS(1061), + [anon_sym_for] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1061), + [anon_sym_loop] = ACTIONS(1061), + [anon_sym_make] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(1061), + [anon_sym_do] = ACTIONS(1061), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_else] = ACTIONS(1061), + [anon_sym_match] = ACTIONS(1061), + [anon_sym_RBRACE] = ACTIONS(1063), + [anon_sym_try] = ACTIONS(1061), + [anon_sym_catch] = ACTIONS(1061), + [anon_sym_return] = ACTIONS(1061), + [anon_sym_source] = ACTIONS(1061), + [anon_sym_source_DASHenv] = ACTIONS(1061), + [anon_sym_register] = ACTIONS(1061), + [anon_sym_hide] = ACTIONS(1061), + [anon_sym_hide_DASHenv] = ACTIONS(1061), + [anon_sym_overlay] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_as] = ACTIONS(1061), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_STAR_STAR] = ACTIONS(1063), + [anon_sym_PLUS_PLUS] = ACTIONS(1063), + [anon_sym_SLASH] = ACTIONS(1061), + [anon_sym_mod] = ACTIONS(1061), + [anon_sym_SLASH_SLASH] = ACTIONS(1063), + [anon_sym_PLUS] = ACTIONS(1061), + [anon_sym_bit_DASHshl] = ACTIONS(1061), + [anon_sym_bit_DASHshr] = ACTIONS(1061), + [anon_sym_EQ_EQ] = ACTIONS(1063), + [anon_sym_BANG_EQ] = ACTIONS(1063), + [anon_sym_LT2] = ACTIONS(1061), + [anon_sym_LT_EQ] = ACTIONS(1063), + [anon_sym_GT_EQ] = ACTIONS(1063), + [anon_sym_not_DASHin] = ACTIONS(1061), + [anon_sym_starts_DASHwith] = ACTIONS(1061), + [anon_sym_ends_DASHwith] = ACTIONS(1061), + [anon_sym_EQ_TILDE] = ACTIONS(1063), + [anon_sym_BANG_TILDE] = ACTIONS(1063), + [anon_sym_bit_DASHand] = ACTIONS(1061), + [anon_sym_bit_DASHxor] = ACTIONS(1061), + [anon_sym_bit_DASHor] = ACTIONS(1061), + [anon_sym_and] = ACTIONS(1061), + [anon_sym_xor] = ACTIONS(1061), + [anon_sym_or] = ACTIONS(1061), + [anon_sym_DOT_DOT2] = ACTIONS(1061), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1063), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1063), + [aux_sym__val_number_decimal_token1] = ACTIONS(1061), + [aux_sym__val_number_decimal_token2] = ACTIONS(1063), + [anon_sym_DOT2] = ACTIONS(1061), + [aux_sym__val_number_decimal_token3] = ACTIONS(1063), + [aux_sym__val_number_token1] = ACTIONS(1063), + [aux_sym__val_number_token2] = ACTIONS(1063), + [aux_sym__val_number_token3] = ACTIONS(1063), + [aux_sym__val_number_token4] = ACTIONS(1061), + [aux_sym__val_number_token5] = ACTIONS(1063), + [aux_sym__val_number_token6] = ACTIONS(1061), + [anon_sym_DQUOTE] = ACTIONS(1063), + [sym__str_single_quotes] = ACTIONS(1063), + [sym__str_back_ticks] = ACTIONS(1063), + [aux_sym__record_key_token2] = ACTIONS(1061), + [anon_sym_POUND] = ACTIONS(3), + }, + [573] = { + [sym_comment] = STATE(573), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_alias] = ACTIONS(1068), + [anon_sym_let] = ACTIONS(1068), + [anon_sym_let_DASHenv] = ACTIONS(1068), + [anon_sym_mut] = ACTIONS(1068), + [anon_sym_const] = ACTIONS(1068), + [sym_cmd_identifier] = ACTIONS(1068), + [anon_sym_def] = ACTIONS(1068), + [anon_sym_export_DASHenv] = ACTIONS(1068), + [anon_sym_extern] = ACTIONS(1068), + [anon_sym_module] = ACTIONS(1068), + [anon_sym_use] = ACTIONS(1068), + [anon_sym_LPAREN] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_error] = ACTIONS(1068), + [anon_sym_list] = ACTIONS(1068), + [anon_sym_GT] = ACTIONS(1068), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_break] = ACTIONS(1068), + [anon_sym_continue] = ACTIONS(1068), + [anon_sym_for] = ACTIONS(1068), + [anon_sym_in] = ACTIONS(1068), + [anon_sym_loop] = ACTIONS(1068), + [anon_sym_make] = ACTIONS(1068), + [anon_sym_while] = ACTIONS(1068), + [anon_sym_do] = ACTIONS(1068), + [anon_sym_if] = ACTIONS(1068), + [anon_sym_else] = ACTIONS(1068), + [anon_sym_match] = ACTIONS(1068), + [anon_sym_RBRACE] = ACTIONS(1070), + [anon_sym_try] = ACTIONS(1068), + [anon_sym_catch] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1068), + [anon_sym_source] = ACTIONS(1068), + [anon_sym_source_DASHenv] = ACTIONS(1068), + [anon_sym_register] = ACTIONS(1068), + [anon_sym_hide] = ACTIONS(1068), + [anon_sym_hide_DASHenv] = ACTIONS(1068), + [anon_sym_overlay] = ACTIONS(1068), + [anon_sym_new] = ACTIONS(1068), + [anon_sym_as] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_STAR_STAR] = ACTIONS(1070), + [anon_sym_PLUS_PLUS] = ACTIONS(1070), + [anon_sym_SLASH] = ACTIONS(1068), + [anon_sym_mod] = ACTIONS(1068), + [anon_sym_SLASH_SLASH] = ACTIONS(1070), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_bit_DASHshl] = ACTIONS(1068), + [anon_sym_bit_DASHshr] = ACTIONS(1068), + [anon_sym_EQ_EQ] = ACTIONS(1070), + [anon_sym_BANG_EQ] = ACTIONS(1070), + [anon_sym_LT2] = ACTIONS(1068), + [anon_sym_LT_EQ] = ACTIONS(1070), + [anon_sym_GT_EQ] = ACTIONS(1070), + [anon_sym_not_DASHin] = ACTIONS(1068), + [anon_sym_starts_DASHwith] = ACTIONS(1068), + [anon_sym_ends_DASHwith] = ACTIONS(1068), + [anon_sym_EQ_TILDE] = ACTIONS(1070), + [anon_sym_BANG_TILDE] = ACTIONS(1070), + [anon_sym_bit_DASHand] = ACTIONS(1068), + [anon_sym_bit_DASHxor] = ACTIONS(1068), + [anon_sym_bit_DASHor] = ACTIONS(1068), + [anon_sym_and] = ACTIONS(1068), + [anon_sym_xor] = ACTIONS(1068), + [anon_sym_or] = ACTIONS(1068), + [anon_sym_DOT_DOT2] = ACTIONS(1068), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1070), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1070), + [aux_sym__val_number_decimal_token1] = ACTIONS(1068), + [aux_sym__val_number_decimal_token2] = ACTIONS(1070), + [anon_sym_DOT2] = ACTIONS(1068), + [aux_sym__val_number_decimal_token3] = ACTIONS(1070), + [aux_sym__val_number_token1] = ACTIONS(1070), + [aux_sym__val_number_token2] = ACTIONS(1070), + [aux_sym__val_number_token3] = ACTIONS(1070), + [aux_sym__val_number_token4] = ACTIONS(1068), + [aux_sym__val_number_token5] = ACTIONS(1070), + [aux_sym__val_number_token6] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(1070), + [sym__str_single_quotes] = ACTIONS(1070), + [sym__str_back_ticks] = ACTIONS(1070), + [aux_sym__record_key_token2] = ACTIONS(1068), + [anon_sym_POUND] = ACTIONS(3), + }, + [574] = { + [sym_cell_path] = STATE(720), + [sym_path] = STATE(580), + [sym_comment] = STATE(574), + [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), + [sym_cmd_identifier] = 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(994), + [anon_sym_DOLLAR] = ACTIONS(994), + [anon_sym_error] = ACTIONS(992), + [anon_sym_list] = ACTIONS(992), + [anon_sym_GT] = ACTIONS(992), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_break] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_in] = 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_new] = ACTIONS(992), + [anon_sym_as] = ACTIONS(992), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_STAR_STAR] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_SLASH] = ACTIONS(992), + [anon_sym_mod] = ACTIONS(992), + [anon_sym_SLASH_SLASH] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_bit_DASHshl] = ACTIONS(992), + [anon_sym_bit_DASHshr] = ACTIONS(992), + [anon_sym_EQ_EQ] = ACTIONS(994), + [anon_sym_BANG_EQ] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(992), + [anon_sym_LT_EQ] = ACTIONS(994), + [anon_sym_GT_EQ] = ACTIONS(994), + [anon_sym_not_DASHin] = ACTIONS(992), + [anon_sym_starts_DASHwith] = ACTIONS(992), + [anon_sym_ends_DASHwith] = ACTIONS(992), + [anon_sym_EQ_TILDE] = ACTIONS(994), + [anon_sym_BANG_TILDE] = ACTIONS(994), + [anon_sym_bit_DASHand] = ACTIONS(992), + [anon_sym_bit_DASHxor] = ACTIONS(992), + [anon_sym_bit_DASHor] = ACTIONS(992), + [anon_sym_and] = ACTIONS(992), + [anon_sym_xor] = ACTIONS(992), + [anon_sym_or] = ACTIONS(992), + [anon_sym_DOT] = ACTIONS(1505), + [aux_sym__val_number_decimal_token1] = ACTIONS(992), + [aux_sym__val_number_decimal_token2] = ACTIONS(994), + [anon_sym_DOT2] = ACTIONS(992), + [aux_sym__val_number_decimal_token3] = 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(994), + [aux_sym__val_number_token6] = ACTIONS(992), + [anon_sym_DQUOTE] = ACTIONS(994), + [sym__str_single_quotes] = ACTIONS(994), + [sym__str_back_ticks] = ACTIONS(994), + [aux_sym__record_key_token2] = ACTIONS(992), + [anon_sym_POUND] = ACTIONS(3), + }, [575] = { + [sym_cell_path] = STATE(690), + [sym_path] = STATE(580), [sym_comment] = STATE(575), - [ts_builtin_sym_end] = ACTIONS(1378), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1435), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1445), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1439), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1441), - [anon_sym_PLUS_PLUS] = ACTIONS(1441), - [anon_sym_SLASH] = ACTIONS(1439), - [anon_sym_mod] = ACTIONS(1439), - [anon_sym_SLASH_SLASH] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_bit_DASHshl] = ACTIONS(1443), - [anon_sym_bit_DASHshr] = ACTIONS(1443), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_LT2] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_not_DASHin] = ACTIONS(1445), - [anon_sym_starts_DASHwith] = ACTIONS(1445), - [anon_sym_ends_DASHwith] = ACTIONS(1445), - [anon_sym_EQ_TILDE] = ACTIONS(1447), - [anon_sym_BANG_TILDE] = ACTIONS(1447), - [anon_sym_bit_DASHand] = ACTIONS(1449), - [anon_sym_bit_DASHxor] = ACTIONS(1451), - [anon_sym_bit_DASHor] = ACTIONS(1453), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1093), + [anon_sym_alias] = ACTIONS(1093), + [anon_sym_let] = ACTIONS(1093), + [anon_sym_let_DASHenv] = ACTIONS(1093), + [anon_sym_mut] = ACTIONS(1093), + [anon_sym_const] = ACTIONS(1093), + [sym_cmd_identifier] = ACTIONS(1093), + [anon_sym_def] = ACTIONS(1093), + [anon_sym_export_DASHenv] = ACTIONS(1093), + [anon_sym_extern] = ACTIONS(1093), + [anon_sym_module] = ACTIONS(1093), + [anon_sym_use] = ACTIONS(1093), + [anon_sym_LPAREN] = ACTIONS(1095), + [anon_sym_DOLLAR] = ACTIONS(1095), + [anon_sym_error] = ACTIONS(1093), + [anon_sym_list] = ACTIONS(1093), + [anon_sym_GT] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_break] = ACTIONS(1093), + [anon_sym_continue] = ACTIONS(1093), + [anon_sym_for] = ACTIONS(1093), + [anon_sym_in] = ACTIONS(1093), + [anon_sym_loop] = ACTIONS(1093), + [anon_sym_make] = ACTIONS(1093), + [anon_sym_while] = ACTIONS(1093), + [anon_sym_do] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1093), + [anon_sym_else] = ACTIONS(1093), + [anon_sym_match] = ACTIONS(1093), + [anon_sym_RBRACE] = ACTIONS(1095), + [anon_sym_try] = ACTIONS(1093), + [anon_sym_catch] = ACTIONS(1093), + [anon_sym_return] = ACTIONS(1093), + [anon_sym_source] = ACTIONS(1093), + [anon_sym_source_DASHenv] = ACTIONS(1093), + [anon_sym_register] = ACTIONS(1093), + [anon_sym_hide] = ACTIONS(1093), + [anon_sym_hide_DASHenv] = ACTIONS(1093), + [anon_sym_overlay] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1093), + [anon_sym_as] = ACTIONS(1093), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_STAR_STAR] = ACTIONS(1095), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_SLASH] = ACTIONS(1093), + [anon_sym_mod] = ACTIONS(1093), + [anon_sym_SLASH_SLASH] = ACTIONS(1095), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_bit_DASHshl] = ACTIONS(1093), + [anon_sym_bit_DASHshr] = ACTIONS(1093), + [anon_sym_EQ_EQ] = ACTIONS(1095), + [anon_sym_BANG_EQ] = ACTIONS(1095), + [anon_sym_LT2] = ACTIONS(1093), + [anon_sym_LT_EQ] = ACTIONS(1095), + [anon_sym_GT_EQ] = ACTIONS(1095), + [anon_sym_not_DASHin] = ACTIONS(1093), + [anon_sym_starts_DASHwith] = ACTIONS(1093), + [anon_sym_ends_DASHwith] = ACTIONS(1093), + [anon_sym_EQ_TILDE] = ACTIONS(1095), + [anon_sym_BANG_TILDE] = ACTIONS(1095), + [anon_sym_bit_DASHand] = ACTIONS(1093), + [anon_sym_bit_DASHxor] = ACTIONS(1093), + [anon_sym_bit_DASHor] = ACTIONS(1093), + [anon_sym_and] = ACTIONS(1093), + [anon_sym_xor] = ACTIONS(1093), + [anon_sym_or] = ACTIONS(1093), + [anon_sym_DOT] = ACTIONS(1505), + [aux_sym__val_number_decimal_token1] = ACTIONS(1093), + [aux_sym__val_number_decimal_token2] = ACTIONS(1095), + [anon_sym_DOT2] = ACTIONS(1093), + [aux_sym__val_number_decimal_token3] = ACTIONS(1095), + [aux_sym__val_number_token1] = ACTIONS(1095), + [aux_sym__val_number_token2] = ACTIONS(1095), + [aux_sym__val_number_token3] = ACTIONS(1095), + [aux_sym__val_number_token4] = ACTIONS(1093), + [aux_sym__val_number_token5] = ACTIONS(1095), + [aux_sym__val_number_token6] = ACTIONS(1093), + [anon_sym_DQUOTE] = ACTIONS(1095), + [sym__str_single_quotes] = ACTIONS(1095), + [sym__str_back_ticks] = ACTIONS(1095), + [aux_sym__record_key_token2] = ACTIONS(1093), + [anon_sym_POUND] = ACTIONS(3), }, [576] = { [sym_comment] = STATE(576), - [ts_builtin_sym_end] = ACTIONS(1378), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1435), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1445), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1439), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1441), - [anon_sym_PLUS_PLUS] = ACTIONS(1441), - [anon_sym_SLASH] = ACTIONS(1439), - [anon_sym_mod] = ACTIONS(1439), - [anon_sym_SLASH_SLASH] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_bit_DASHshl] = ACTIONS(1443), - [anon_sym_bit_DASHshr] = ACTIONS(1443), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_LT2] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_not_DASHin] = ACTIONS(1445), - [anon_sym_starts_DASHwith] = ACTIONS(1445), - [anon_sym_ends_DASHwith] = ACTIONS(1445), - [anon_sym_EQ_TILDE] = ACTIONS(1447), - [anon_sym_BANG_TILDE] = ACTIONS(1447), - [anon_sym_bit_DASHand] = ACTIONS(1449), - [anon_sym_bit_DASHxor] = ACTIONS(1451), - [anon_sym_bit_DASHor] = ACTIONS(1453), - [anon_sym_and] = ACTIONS(1455), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1072), + [anon_sym_alias] = ACTIONS(1072), + [anon_sym_let] = ACTIONS(1072), + [anon_sym_let_DASHenv] = ACTIONS(1072), + [anon_sym_mut] = ACTIONS(1072), + [anon_sym_const] = ACTIONS(1072), + [sym_cmd_identifier] = ACTIONS(1072), + [anon_sym_def] = ACTIONS(1072), + [anon_sym_export_DASHenv] = ACTIONS(1072), + [anon_sym_extern] = ACTIONS(1072), + [anon_sym_module] = ACTIONS(1072), + [anon_sym_use] = ACTIONS(1072), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_DOLLAR] = ACTIONS(1074), + [anon_sym_error] = ACTIONS(1072), + [anon_sym_list] = ACTIONS(1072), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_break] = ACTIONS(1072), + [anon_sym_continue] = ACTIONS(1072), + [anon_sym_for] = ACTIONS(1072), + [anon_sym_in] = ACTIONS(1078), + [anon_sym_loop] = ACTIONS(1072), + [anon_sym_make] = ACTIONS(1072), + [anon_sym_while] = ACTIONS(1072), + [anon_sym_do] = ACTIONS(1072), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_else] = ACTIONS(1072), + [anon_sym_match] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1074), + [anon_sym_try] = ACTIONS(1072), + [anon_sym_catch] = ACTIONS(1072), + [anon_sym_return] = ACTIONS(1072), + [anon_sym_source] = ACTIONS(1072), + [anon_sym_source_DASHenv] = ACTIONS(1072), + [anon_sym_register] = ACTIONS(1072), + [anon_sym_hide] = ACTIONS(1072), + [anon_sym_hide_DASHenv] = ACTIONS(1072), + [anon_sym_overlay] = ACTIONS(1072), + [anon_sym_new] = ACTIONS(1072), + [anon_sym_as] = ACTIONS(1072), + [anon_sym_STAR] = ACTIONS(1076), + [anon_sym_STAR_STAR] = ACTIONS(1169), + [anon_sym_PLUS_PLUS] = ACTIONS(1169), + [anon_sym_SLASH] = ACTIONS(1076), + [anon_sym_mod] = ACTIONS(1076), + [anon_sym_SLASH_SLASH] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_bit_DASHshl] = ACTIONS(1076), + [anon_sym_bit_DASHshr] = ACTIONS(1076), + [anon_sym_EQ_EQ] = ACTIONS(1169), + [anon_sym_BANG_EQ] = ACTIONS(1169), + [anon_sym_LT2] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1169), + [anon_sym_GT_EQ] = ACTIONS(1169), + [anon_sym_not_DASHin] = ACTIONS(1076), + [anon_sym_starts_DASHwith] = ACTIONS(1076), + [anon_sym_ends_DASHwith] = ACTIONS(1076), + [anon_sym_EQ_TILDE] = ACTIONS(1169), + [anon_sym_BANG_TILDE] = ACTIONS(1169), + [anon_sym_bit_DASHand] = ACTIONS(1076), + [anon_sym_bit_DASHxor] = ACTIONS(1076), + [anon_sym_bit_DASHor] = ACTIONS(1076), + [anon_sym_and] = ACTIONS(1076), + [anon_sym_xor] = ACTIONS(1076), + [anon_sym_or] = ACTIONS(1076), + [anon_sym_DOT_DOT2] = ACTIONS(1514), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1516), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token1] = ACTIONS(1072), + [aux_sym__val_number_decimal_token2] = ACTIONS(1074), + [anon_sym_DOT2] = ACTIONS(1072), + [aux_sym__val_number_decimal_token3] = ACTIONS(1074), + [aux_sym__val_number_token1] = ACTIONS(1074), + [aux_sym__val_number_token2] = ACTIONS(1074), + [aux_sym__val_number_token3] = ACTIONS(1074), + [aux_sym__val_number_token4] = ACTIONS(1072), + [aux_sym__val_number_token5] = ACTIONS(1074), + [aux_sym__val_number_token6] = ACTIONS(1072), + [anon_sym_DQUOTE] = ACTIONS(1074), + [sym__str_single_quotes] = ACTIONS(1074), + [sym__str_back_ticks] = ACTIONS(1074), + [aux_sym__record_key_token2] = ACTIONS(1072), + [anon_sym_POUND] = ACTIONS(3), }, [577] = { [sym_comment] = STATE(577), - [ts_builtin_sym_end] = ACTIONS(1378), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1435), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1445), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1439), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1441), - [anon_sym_PLUS_PLUS] = ACTIONS(1441), - [anon_sym_SLASH] = ACTIONS(1439), - [anon_sym_mod] = ACTIONS(1439), - [anon_sym_SLASH_SLASH] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_bit_DASHshl] = ACTIONS(1443), - [anon_sym_bit_DASHshr] = ACTIONS(1443), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_LT2] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_not_DASHin] = ACTIONS(1445), - [anon_sym_starts_DASHwith] = ACTIONS(1445), - [anon_sym_ends_DASHwith] = ACTIONS(1445), - [anon_sym_EQ_TILDE] = ACTIONS(1447), - [anon_sym_BANG_TILDE] = ACTIONS(1447), - [anon_sym_bit_DASHand] = ACTIONS(1449), - [anon_sym_bit_DASHxor] = ACTIONS(1451), - [anon_sym_bit_DASHor] = ACTIONS(1453), - [anon_sym_and] = ACTIONS(1455), - [anon_sym_xor] = ACTIONS(1457), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1089), + [anon_sym_alias] = ACTIONS(1089), + [anon_sym_let] = ACTIONS(1089), + [anon_sym_let_DASHenv] = ACTIONS(1089), + [anon_sym_mut] = ACTIONS(1089), + [anon_sym_const] = ACTIONS(1089), + [sym_cmd_identifier] = ACTIONS(1089), + [anon_sym_def] = ACTIONS(1089), + [anon_sym_export_DASHenv] = ACTIONS(1089), + [anon_sym_extern] = ACTIONS(1089), + [anon_sym_module] = ACTIONS(1089), + [anon_sym_use] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_DOLLAR] = ACTIONS(1091), + [anon_sym_error] = ACTIONS(1089), + [anon_sym_list] = ACTIONS(1089), + [anon_sym_GT] = ACTIONS(1089), + [anon_sym_DASH] = ACTIONS(1089), + [anon_sym_break] = ACTIONS(1089), + [anon_sym_continue] = ACTIONS(1089), + [anon_sym_for] = ACTIONS(1089), + [anon_sym_in] = ACTIONS(1089), + [anon_sym_loop] = ACTIONS(1089), + [anon_sym_make] = ACTIONS(1089), + [anon_sym_while] = ACTIONS(1089), + [anon_sym_do] = ACTIONS(1089), + [anon_sym_if] = ACTIONS(1089), + [anon_sym_else] = ACTIONS(1089), + [anon_sym_match] = ACTIONS(1089), + [anon_sym_RBRACE] = ACTIONS(1091), + [anon_sym_try] = ACTIONS(1089), + [anon_sym_catch] = ACTIONS(1089), + [anon_sym_return] = ACTIONS(1089), + [anon_sym_source] = ACTIONS(1089), + [anon_sym_source_DASHenv] = ACTIONS(1089), + [anon_sym_register] = ACTIONS(1089), + [anon_sym_hide] = ACTIONS(1089), + [anon_sym_hide_DASHenv] = ACTIONS(1089), + [anon_sym_overlay] = ACTIONS(1089), + [anon_sym_new] = ACTIONS(1089), + [anon_sym_as] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_STAR_STAR] = ACTIONS(1091), + [anon_sym_PLUS_PLUS] = ACTIONS(1091), + [anon_sym_SLASH] = ACTIONS(1089), + [anon_sym_mod] = ACTIONS(1089), + [anon_sym_SLASH_SLASH] = ACTIONS(1091), + [anon_sym_PLUS] = ACTIONS(1089), + [anon_sym_bit_DASHshl] = ACTIONS(1089), + [anon_sym_bit_DASHshr] = ACTIONS(1089), + [anon_sym_EQ_EQ] = ACTIONS(1091), + [anon_sym_BANG_EQ] = ACTIONS(1091), + [anon_sym_LT2] = ACTIONS(1089), + [anon_sym_LT_EQ] = ACTIONS(1091), + [anon_sym_GT_EQ] = ACTIONS(1091), + [anon_sym_not_DASHin] = ACTIONS(1089), + [anon_sym_starts_DASHwith] = ACTIONS(1089), + [anon_sym_ends_DASHwith] = ACTIONS(1089), + [anon_sym_EQ_TILDE] = ACTIONS(1091), + [anon_sym_BANG_TILDE] = ACTIONS(1091), + [anon_sym_bit_DASHand] = ACTIONS(1089), + [anon_sym_bit_DASHxor] = ACTIONS(1089), + [anon_sym_bit_DASHor] = ACTIONS(1089), + [anon_sym_and] = ACTIONS(1089), + [anon_sym_xor] = ACTIONS(1089), + [anon_sym_or] = ACTIONS(1089), + [anon_sym_DOT_DOT2] = ACTIONS(1514), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1516), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token1] = ACTIONS(1089), + [aux_sym__val_number_decimal_token2] = ACTIONS(1091), + [anon_sym_DOT2] = ACTIONS(1089), + [aux_sym__val_number_decimal_token3] = ACTIONS(1091), + [aux_sym__val_number_token1] = ACTIONS(1091), + [aux_sym__val_number_token2] = ACTIONS(1091), + [aux_sym__val_number_token3] = ACTIONS(1091), + [aux_sym__val_number_token4] = ACTIONS(1089), + [aux_sym__val_number_token5] = ACTIONS(1091), + [aux_sym__val_number_token6] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1091), + [sym__str_single_quotes] = ACTIONS(1091), + [sym__str_back_ticks] = ACTIONS(1091), + [aux_sym__record_key_token2] = ACTIONS(1089), + [anon_sym_POUND] = ACTIONS(3), }, [578] = { [sym_comment] = STATE(578), - [ts_builtin_sym_end] = ACTIONS(1378), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1435), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1445), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1439), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1441), - [anon_sym_PLUS_PLUS] = ACTIONS(1441), - [anon_sym_SLASH] = ACTIONS(1439), - [anon_sym_mod] = ACTIONS(1439), - [anon_sym_SLASH_SLASH] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_bit_DASHshl] = ACTIONS(1443), - [anon_sym_bit_DASHshr] = ACTIONS(1443), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_LT2] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_not_DASHin] = ACTIONS(1445), - [anon_sym_starts_DASHwith] = ACTIONS(1445), - [anon_sym_ends_DASHwith] = ACTIONS(1445), - [anon_sym_EQ_TILDE] = ACTIONS(1447), - [anon_sym_BANG_TILDE] = ACTIONS(1447), - [anon_sym_bit_DASHand] = ACTIONS(1449), - [anon_sym_bit_DASHxor] = ACTIONS(1451), - [anon_sym_bit_DASHor] = ACTIONS(1453), - [anon_sym_and] = ACTIONS(1455), - [anon_sym_xor] = ACTIONS(1457), - [anon_sym_or] = ACTIONS(1459), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_export] = ACTIONS(1020), + [anon_sym_alias] = ACTIONS(1020), + [anon_sym_let] = ACTIONS(1020), + [anon_sym_let_DASHenv] = ACTIONS(1020), + [anon_sym_mut] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(1020), + [sym_cmd_identifier] = ACTIONS(1020), + [anon_sym_def] = ACTIONS(1020), + [anon_sym_export_DASHenv] = ACTIONS(1020), + [anon_sym_extern] = ACTIONS(1020), + [anon_sym_module] = ACTIONS(1020), + [anon_sym_use] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_error] = ACTIONS(1020), + [anon_sym_list] = ACTIONS(1020), + [anon_sym_GT] = ACTIONS(1020), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_in] = ACTIONS(1020), + [anon_sym_loop] = ACTIONS(1020), + [anon_sym_make] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_else] = ACTIONS(1020), + [anon_sym_match] = ACTIONS(1020), + [anon_sym_RBRACE] = ACTIONS(1020), + [anon_sym_try] = ACTIONS(1020), + [anon_sym_catch] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_source] = ACTIONS(1020), + [anon_sym_source_DASHenv] = ACTIONS(1020), + [anon_sym_register] = ACTIONS(1020), + [anon_sym_hide] = ACTIONS(1020), + [anon_sym_hide_DASHenv] = ACTIONS(1020), + [anon_sym_overlay] = ACTIONS(1020), + [anon_sym_new] = ACTIONS(1020), + [anon_sym_as] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_QMARK2] = ACTIONS(1020), + [anon_sym_STAR_STAR] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1020), + [anon_sym_SLASH] = ACTIONS(1020), + [anon_sym_mod] = ACTIONS(1020), + [anon_sym_SLASH_SLASH] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_bit_DASHshl] = ACTIONS(1020), + [anon_sym_bit_DASHshr] = ACTIONS(1020), + [anon_sym_EQ_EQ] = ACTIONS(1020), + [anon_sym_BANG_EQ] = ACTIONS(1020), + [anon_sym_LT2] = ACTIONS(1020), + [anon_sym_LT_EQ] = ACTIONS(1020), + [anon_sym_GT_EQ] = ACTIONS(1020), + [anon_sym_not_DASHin] = ACTIONS(1020), + [anon_sym_starts_DASHwith] = ACTIONS(1020), + [anon_sym_ends_DASHwith] = ACTIONS(1020), + [anon_sym_EQ_TILDE] = ACTIONS(1020), + [anon_sym_BANG_TILDE] = ACTIONS(1020), + [anon_sym_bit_DASHand] = ACTIONS(1020), + [anon_sym_bit_DASHxor] = ACTIONS(1020), + [anon_sym_bit_DASHor] = ACTIONS(1020), + [anon_sym_and] = ACTIONS(1020), + [anon_sym_xor] = ACTIONS(1020), + [anon_sym_or] = ACTIONS(1020), + [anon_sym_DOT] = ACTIONS(1022), + [aux_sym__val_number_decimal_token1] = ACTIONS(1020), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [anon_sym_DOT2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1020), + [aux_sym__val_number_token1] = ACTIONS(1020), + [aux_sym__val_number_token2] = ACTIONS(1020), + [aux_sym__val_number_token3] = ACTIONS(1020), + [aux_sym__val_number_token4] = ACTIONS(1020), + [aux_sym__val_number_token5] = ACTIONS(1020), + [aux_sym__val_number_token6] = ACTIONS(1020), + [anon_sym_DQUOTE] = ACTIONS(1020), + [sym__str_single_quotes] = ACTIONS(1020), + [sym__str_back_ticks] = ACTIONS(1020), + [sym__entry_separator] = ACTIONS(1022), + [aux_sym__record_key_token2] = ACTIONS(1020), [anon_sym_POUND] = ACTIONS(113), }, [579] = { + [sym_cell_path] = STATE(717), + [sym_path] = STATE(580), [sym_comment] = STATE(579), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_alias] = ACTIONS(1109), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_let_DASHenv] = ACTIONS(1109), - [anon_sym_mut] = ACTIONS(1109), - [anon_sym_const] = ACTIONS(1109), - [anon_sym_SEMI] = ACTIONS(1109), - [sym_cmd_identifier] = ACTIONS(1109), - [anon_sym_LF] = ACTIONS(1111), - [anon_sym_def] = ACTIONS(1109), - [anon_sym_export_DASHenv] = ACTIONS(1109), - [anon_sym_extern] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_use] = ACTIONS(1109), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_RPAREN] = ACTIONS(1109), - [anon_sym_DOLLAR] = ACTIONS(1109), - [anon_sym_error] = ACTIONS(1109), - [anon_sym_GT] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_break] = ACTIONS(1109), - [anon_sym_continue] = ACTIONS(1109), - [anon_sym_for] = ACTIONS(1109), - [anon_sym_in] = ACTIONS(1109), - [anon_sym_loop] = ACTIONS(1109), - [anon_sym_while] = ACTIONS(1109), - [anon_sym_do] = ACTIONS(1109), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_RBRACE] = ACTIONS(1109), - [anon_sym_DOT_DOT] = ACTIONS(1109), - [anon_sym_try] = ACTIONS(1109), - [anon_sym_return] = ACTIONS(1109), - [anon_sym_source] = ACTIONS(1109), - [anon_sym_source_DASHenv] = ACTIONS(1109), - [anon_sym_register] = ACTIONS(1109), - [anon_sym_hide] = ACTIONS(1109), - [anon_sym_hide_DASHenv] = ACTIONS(1109), - [anon_sym_overlay] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_where] = ACTIONS(1109), - [anon_sym_STAR_STAR] = ACTIONS(1109), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_SLASH] = ACTIONS(1109), - [anon_sym_mod] = ACTIONS(1109), - [anon_sym_SLASH_SLASH] = ACTIONS(1109), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_bit_DASHshl] = ACTIONS(1109), - [anon_sym_bit_DASHshr] = ACTIONS(1109), - [anon_sym_EQ_EQ] = ACTIONS(1109), - [anon_sym_BANG_EQ] = ACTIONS(1109), - [anon_sym_LT2] = ACTIONS(1109), - [anon_sym_LT_EQ] = ACTIONS(1109), - [anon_sym_GT_EQ] = ACTIONS(1109), - [anon_sym_not_DASHin] = ACTIONS(1109), - [anon_sym_starts_DASHwith] = ACTIONS(1109), - [anon_sym_ends_DASHwith] = ACTIONS(1109), - [anon_sym_EQ_TILDE] = ACTIONS(1109), - [anon_sym_BANG_TILDE] = ACTIONS(1109), - [anon_sym_bit_DASHand] = ACTIONS(1109), - [anon_sym_bit_DASHxor] = ACTIONS(1109), - [anon_sym_bit_DASHor] = ACTIONS(1109), - [anon_sym_and] = ACTIONS(1109), - [anon_sym_xor] = ACTIONS(1109), - [anon_sym_or] = ACTIONS(1109), - [anon_sym_not] = ACTIONS(1109), - [anon_sym_DOT] = ACTIONS(1109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1109), - [anon_sym_DOT_DOT_LT] = ACTIONS(1109), - [anon_sym_null] = ACTIONS(1109), - [anon_sym_true] = ACTIONS(1109), - [anon_sym_false] = ACTIONS(1109), - [aux_sym__val_number_decimal_token1] = ACTIONS(1109), - [aux_sym__val_number_decimal_token2] = ACTIONS(1109), - [anon_sym_DOT2] = ACTIONS(1109), - [aux_sym__val_number_decimal_token3] = ACTIONS(1109), - [aux_sym__val_number_token1] = ACTIONS(1109), - [aux_sym__val_number_token2] = ACTIONS(1109), - [aux_sym__val_number_token3] = ACTIONS(1109), - [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(1109), - [anon_sym_0o] = ACTIONS(1109), - [anon_sym_0x] = ACTIONS(1109), - [sym_val_date] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(1109), - [sym__str_single_quotes] = ACTIONS(1109), - [sym__str_back_ticks] = ACTIONS(1109), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1109), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1109), - [anon_sym_CARET] = ACTIONS(1109), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1051), + [anon_sym_alias] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(1051), + [anon_sym_let_DASHenv] = ACTIONS(1051), + [anon_sym_mut] = ACTIONS(1051), + [anon_sym_const] = ACTIONS(1051), + [sym_cmd_identifier] = ACTIONS(1051), + [anon_sym_def] = ACTIONS(1051), + [anon_sym_export_DASHenv] = ACTIONS(1051), + [anon_sym_extern] = ACTIONS(1051), + [anon_sym_module] = ACTIONS(1051), + [anon_sym_use] = ACTIONS(1051), + [anon_sym_LPAREN] = ACTIONS(1053), + [anon_sym_DOLLAR] = ACTIONS(1053), + [anon_sym_error] = ACTIONS(1051), + [anon_sym_list] = ACTIONS(1051), + [anon_sym_GT] = ACTIONS(1051), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_break] = ACTIONS(1051), + [anon_sym_continue] = ACTIONS(1051), + [anon_sym_for] = ACTIONS(1051), + [anon_sym_in] = ACTIONS(1051), + [anon_sym_loop] = ACTIONS(1051), + [anon_sym_make] = ACTIONS(1051), + [anon_sym_while] = ACTIONS(1051), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_if] = ACTIONS(1051), + [anon_sym_else] = ACTIONS(1051), + [anon_sym_match] = ACTIONS(1051), + [anon_sym_RBRACE] = ACTIONS(1053), + [anon_sym_try] = ACTIONS(1051), + [anon_sym_catch] = ACTIONS(1051), + [anon_sym_return] = ACTIONS(1051), + [anon_sym_source] = ACTIONS(1051), + [anon_sym_source_DASHenv] = ACTIONS(1051), + [anon_sym_register] = ACTIONS(1051), + [anon_sym_hide] = ACTIONS(1051), + [anon_sym_hide_DASHenv] = ACTIONS(1051), + [anon_sym_overlay] = ACTIONS(1051), + [anon_sym_new] = ACTIONS(1051), + [anon_sym_as] = ACTIONS(1051), + [anon_sym_STAR] = ACTIONS(1051), + [anon_sym_STAR_STAR] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1053), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_mod] = ACTIONS(1051), + [anon_sym_SLASH_SLASH] = ACTIONS(1053), + [anon_sym_PLUS] = ACTIONS(1051), + [anon_sym_bit_DASHshl] = ACTIONS(1051), + [anon_sym_bit_DASHshr] = ACTIONS(1051), + [anon_sym_EQ_EQ] = ACTIONS(1053), + [anon_sym_BANG_EQ] = ACTIONS(1053), + [anon_sym_LT2] = ACTIONS(1051), + [anon_sym_LT_EQ] = ACTIONS(1053), + [anon_sym_GT_EQ] = ACTIONS(1053), + [anon_sym_not_DASHin] = ACTIONS(1051), + [anon_sym_starts_DASHwith] = ACTIONS(1051), + [anon_sym_ends_DASHwith] = ACTIONS(1051), + [anon_sym_EQ_TILDE] = ACTIONS(1053), + [anon_sym_BANG_TILDE] = ACTIONS(1053), + [anon_sym_bit_DASHand] = ACTIONS(1051), + [anon_sym_bit_DASHxor] = ACTIONS(1051), + [anon_sym_bit_DASHor] = ACTIONS(1051), + [anon_sym_and] = ACTIONS(1051), + [anon_sym_xor] = ACTIONS(1051), + [anon_sym_or] = ACTIONS(1051), + [anon_sym_DOT] = ACTIONS(1505), + [aux_sym__val_number_decimal_token1] = ACTIONS(1051), + [aux_sym__val_number_decimal_token2] = ACTIONS(1053), + [anon_sym_DOT2] = ACTIONS(1051), + [aux_sym__val_number_decimal_token3] = ACTIONS(1053), + [aux_sym__val_number_token1] = ACTIONS(1053), + [aux_sym__val_number_token2] = ACTIONS(1053), + [aux_sym__val_number_token3] = ACTIONS(1053), + [aux_sym__val_number_token4] = ACTIONS(1051), + [aux_sym__val_number_token5] = ACTIONS(1053), + [aux_sym__val_number_token6] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(1053), + [sym__str_single_quotes] = ACTIONS(1053), + [sym__str_back_ticks] = ACTIONS(1053), + [aux_sym__record_key_token2] = ACTIONS(1051), + [anon_sym_POUND] = ACTIONS(3), }, [580] = { + [sym_path] = STATE(627), [sym_comment] = STATE(580), - [ts_builtin_sym_end] = ACTIONS(1296), - [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), - [anon_sym_SEMI] = ACTIONS(1294), - [sym_cmd_identifier] = ACTIONS(1294), - [anon_sym_LF] = 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(1294), - [anon_sym_LPAREN] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_error] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_in] = 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(1294), - [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_register] = 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_STAR] = ACTIONS(1294), - [anon_sym_where] = ACTIONS(1294), - [anon_sym_STAR_STAR] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_mod] = ACTIONS(1294), - [anon_sym_SLASH_SLASH] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_bit_DASHshl] = ACTIONS(1294), - [anon_sym_bit_DASHshr] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_LT2] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_not_DASHin] = ACTIONS(1294), - [anon_sym_starts_DASHwith] = ACTIONS(1294), - [anon_sym_ends_DASHwith] = ACTIONS(1294), - [anon_sym_EQ_TILDE] = ACTIONS(1294), - [anon_sym_BANG_TILDE] = ACTIONS(1294), - [anon_sym_bit_DASHand] = ACTIONS(1294), - [anon_sym_bit_DASHxor] = ACTIONS(1294), - [anon_sym_bit_DASHor] = ACTIONS(1294), - [anon_sym_and] = ACTIONS(1294), - [anon_sym_xor] = ACTIONS(1294), - [anon_sym_or] = ACTIONS(1294), - [anon_sym_not] = ACTIONS(1294), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1294), - [anon_sym_DOT_DOT_LT] = ACTIONS(1294), - [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(1294), - [anon_sym_DOT2] = ACTIONS(1294), - [aux_sym__val_number_decimal_token3] = ACTIONS(1294), - [aux_sym__val_number_token1] = ACTIONS(1294), - [aux_sym__val_number_token2] = ACTIONS(1294), - [aux_sym__val_number_token3] = ACTIONS(1294), - [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(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym__str_single_quotes] = ACTIONS(1294), - [sym__str_back_ticks] = ACTIONS(1294), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1294), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1294), - [anon_sym_CARET] = ACTIONS(1294), - [anon_sym_POUND] = ACTIONS(113), + [aux_sym_cell_path_repeat1] = STATE(562), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1012), + [anon_sym_DOLLAR] = ACTIONS(1012), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_list] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_make] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_else] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1012), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_catch] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_new] = ACTIONS(1010), + [anon_sym_as] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1012), + [anon_sym_PLUS_PLUS] = ACTIONS(1012), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1012), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1012), + [anon_sym_BANG_EQ] = ACTIONS(1012), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1012), + [anon_sym_GT_EQ] = ACTIONS(1012), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1012), + [anon_sym_BANG_TILDE] = ACTIONS(1012), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_DOT] = ACTIONS(1505), + [aux_sym__val_number_decimal_token1] = ACTIONS(1010), + [aux_sym__val_number_decimal_token2] = ACTIONS(1012), + [anon_sym_DOT2] = ACTIONS(1010), + [aux_sym__val_number_decimal_token3] = 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(1010), + [aux_sym__val_number_token5] = ACTIONS(1012), + [aux_sym__val_number_token6] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1012), + [sym__str_single_quotes] = ACTIONS(1012), + [sym__str_back_ticks] = ACTIONS(1012), + [aux_sym__record_key_token2] = ACTIONS(1010), + [anon_sym_POUND] = ACTIONS(3), }, [581] = { [sym_comment] = STATE(581), - [ts_builtin_sym_end] = ACTIONS(1338), - [anon_sym_export] = ACTIONS(1336), - [anon_sym_alias] = ACTIONS(1336), - [anon_sym_let] = ACTIONS(1336), - [anon_sym_let_DASHenv] = ACTIONS(1336), - [anon_sym_mut] = ACTIONS(1336), - [anon_sym_const] = ACTIONS(1336), - [anon_sym_SEMI] = ACTIONS(1336), - [sym_cmd_identifier] = ACTIONS(1336), - [anon_sym_LF] = ACTIONS(1338), - [anon_sym_def] = ACTIONS(1336), - [anon_sym_export_DASHenv] = ACTIONS(1336), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym_module] = ACTIONS(1336), - [anon_sym_use] = ACTIONS(1336), - [anon_sym_LBRACK] = ACTIONS(1336), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_DOLLAR] = ACTIONS(1336), - [anon_sym_error] = ACTIONS(1336), - [anon_sym_GT] = ACTIONS(1336), - [anon_sym_DASH_DASH] = ACTIONS(1336), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_break] = ACTIONS(1336), - [anon_sym_continue] = ACTIONS(1336), - [anon_sym_for] = ACTIONS(1336), - [anon_sym_in] = ACTIONS(1336), - [anon_sym_loop] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1336), - [anon_sym_do] = ACTIONS(1336), - [anon_sym_if] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_DOT_DOT] = ACTIONS(1336), - [anon_sym_try] = ACTIONS(1336), - [anon_sym_return] = ACTIONS(1336), - [anon_sym_source] = ACTIONS(1336), - [anon_sym_source_DASHenv] = ACTIONS(1336), - [anon_sym_register] = ACTIONS(1336), - [anon_sym_hide] = ACTIONS(1336), - [anon_sym_hide_DASHenv] = ACTIONS(1336), - [anon_sym_overlay] = ACTIONS(1336), - [anon_sym_as] = ACTIONS(1336), - [anon_sym_STAR] = ACTIONS(1336), - [anon_sym_where] = ACTIONS(1336), - [anon_sym_STAR_STAR] = ACTIONS(1336), - [anon_sym_PLUS_PLUS] = ACTIONS(1336), - [anon_sym_SLASH] = ACTIONS(1336), - [anon_sym_mod] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(1336), - [anon_sym_PLUS] = ACTIONS(1336), - [anon_sym_bit_DASHshl] = ACTIONS(1336), - [anon_sym_bit_DASHshr] = ACTIONS(1336), - [anon_sym_EQ_EQ] = ACTIONS(1336), - [anon_sym_BANG_EQ] = ACTIONS(1336), - [anon_sym_LT2] = ACTIONS(1336), - [anon_sym_LT_EQ] = ACTIONS(1336), - [anon_sym_GT_EQ] = ACTIONS(1336), - [anon_sym_not_DASHin] = ACTIONS(1336), - [anon_sym_starts_DASHwith] = ACTIONS(1336), - [anon_sym_ends_DASHwith] = ACTIONS(1336), - [anon_sym_EQ_TILDE] = ACTIONS(1336), - [anon_sym_BANG_TILDE] = ACTIONS(1336), - [anon_sym_bit_DASHand] = ACTIONS(1336), - [anon_sym_bit_DASHxor] = ACTIONS(1336), - [anon_sym_bit_DASHor] = ACTIONS(1336), - [anon_sym_and] = ACTIONS(1336), - [anon_sym_xor] = ACTIONS(1336), - [anon_sym_or] = ACTIONS(1336), - [anon_sym_not] = ACTIONS(1336), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1336), - [anon_sym_DOT_DOT_LT] = ACTIONS(1336), - [anon_sym_null] = ACTIONS(1336), - [anon_sym_true] = ACTIONS(1336), - [anon_sym_false] = ACTIONS(1336), - [aux_sym__val_number_decimal_token1] = ACTIONS(1336), - [aux_sym__val_number_decimal_token2] = ACTIONS(1336), - [anon_sym_DOT2] = ACTIONS(1336), - [aux_sym__val_number_decimal_token3] = ACTIONS(1336), - [aux_sym__val_number_token1] = ACTIONS(1336), - [aux_sym__val_number_token2] = ACTIONS(1336), - [aux_sym__val_number_token3] = ACTIONS(1336), - [aux_sym__val_number_token4] = ACTIONS(1336), - [aux_sym__val_number_token5] = ACTIONS(1336), - [aux_sym__val_number_token6] = ACTIONS(1336), - [anon_sym_0b] = ACTIONS(1336), - [anon_sym_0o] = ACTIONS(1336), - [anon_sym_0x] = ACTIONS(1336), - [sym_val_date] = ACTIONS(1336), - [anon_sym_DQUOTE] = ACTIONS(1336), - [sym__str_single_quotes] = ACTIONS(1336), - [sym__str_back_ticks] = ACTIONS(1336), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1336), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1336), - [anon_sym_CARET] = ACTIONS(1336), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1024), + [anon_sym_alias] = ACTIONS(1024), + [anon_sym_let] = ACTIONS(1024), + [anon_sym_let_DASHenv] = ACTIONS(1024), + [anon_sym_mut] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [sym_cmd_identifier] = ACTIONS(1024), + [anon_sym_def] = ACTIONS(1024), + [anon_sym_export_DASHenv] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1024), + [anon_sym_module] = ACTIONS(1024), + [anon_sym_use] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1026), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_error] = ACTIONS(1024), + [anon_sym_list] = ACTIONS(1024), + [anon_sym_GT] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_loop] = ACTIONS(1024), + [anon_sym_make] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_else] = ACTIONS(1024), + [anon_sym_match] = ACTIONS(1024), + [anon_sym_RBRACE] = ACTIONS(1026), + [anon_sym_try] = ACTIONS(1024), + [anon_sym_catch] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_source] = ACTIONS(1024), + [anon_sym_source_DASHenv] = ACTIONS(1024), + [anon_sym_register] = ACTIONS(1024), + [anon_sym_hide] = ACTIONS(1024), + [anon_sym_hide_DASHenv] = ACTIONS(1024), + [anon_sym_overlay] = ACTIONS(1024), + [anon_sym_new] = ACTIONS(1024), + [anon_sym_as] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(1518), + [anon_sym_STAR_STAR] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [anon_sym_SLASH] = ACTIONS(1024), + [anon_sym_mod] = ACTIONS(1024), + [anon_sym_SLASH_SLASH] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_bit_DASHshl] = ACTIONS(1024), + [anon_sym_bit_DASHshr] = ACTIONS(1024), + [anon_sym_EQ_EQ] = ACTIONS(1026), + [anon_sym_BANG_EQ] = ACTIONS(1026), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ] = ACTIONS(1026), + [anon_sym_GT_EQ] = ACTIONS(1026), + [anon_sym_not_DASHin] = ACTIONS(1024), + [anon_sym_starts_DASHwith] = ACTIONS(1024), + [anon_sym_ends_DASHwith] = ACTIONS(1024), + [anon_sym_EQ_TILDE] = ACTIONS(1026), + [anon_sym_BANG_TILDE] = ACTIONS(1026), + [anon_sym_bit_DASHand] = ACTIONS(1024), + [anon_sym_bit_DASHxor] = ACTIONS(1024), + [anon_sym_bit_DASHor] = ACTIONS(1024), + [anon_sym_and] = ACTIONS(1024), + [anon_sym_xor] = ACTIONS(1024), + [anon_sym_or] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1026), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1026), + [aux_sym__val_number_token1] = ACTIONS(1026), + [aux_sym__val_number_token2] = ACTIONS(1026), + [aux_sym__val_number_token3] = ACTIONS(1026), + [aux_sym__val_number_token4] = ACTIONS(1024), + [aux_sym__val_number_token5] = ACTIONS(1026), + [aux_sym__val_number_token6] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1026), + [sym__str_single_quotes] = ACTIONS(1026), + [sym__str_back_ticks] = ACTIONS(1026), + [aux_sym__record_key_token2] = ACTIONS(1024), + [anon_sym_POUND] = ACTIONS(3), }, [582] = { [sym_comment] = STATE(582), - [anon_sym_export] = ACTIONS(1168), - [anon_sym_alias] = ACTIONS(1168), - [anon_sym_EQ] = ACTIONS(1168), - [anon_sym_let] = ACTIONS(1168), - [anon_sym_let_DASHenv] = ACTIONS(1168), - [anon_sym_mut] = ACTIONS(1168), - [anon_sym_const] = ACTIONS(1168), - [anon_sym_SEMI] = ACTIONS(1168), - [sym_cmd_identifier] = ACTIONS(1168), - [anon_sym_LF] = ACTIONS(1170), - [anon_sym_def] = ACTIONS(1168), - [anon_sym_export_DASHenv] = ACTIONS(1168), - [anon_sym_extern] = ACTIONS(1168), - [anon_sym_module] = ACTIONS(1168), - [anon_sym_use] = ACTIONS(1168), - [anon_sym_COLON] = ACTIONS(1168), - [anon_sym_COMMA] = ACTIONS(1168), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_PIPE] = ACTIONS(1168), - [anon_sym_DOLLAR] = ACTIONS(1168), - [anon_sym_error] = ACTIONS(1168), - [anon_sym_list] = ACTIONS(1168), - [anon_sym_GT] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1168), - [anon_sym_break] = ACTIONS(1168), - [anon_sym_continue] = ACTIONS(1168), - [anon_sym_for] = ACTIONS(1168), - [anon_sym_in] = ACTIONS(1168), - [anon_sym_loop] = ACTIONS(1168), - [anon_sym_make] = ACTIONS(1168), - [anon_sym_while] = ACTIONS(1168), - [anon_sym_do] = ACTIONS(1168), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_else] = ACTIONS(1168), - [anon_sym_match] = ACTIONS(1168), - [anon_sym_RBRACE] = ACTIONS(1168), - [anon_sym_try] = ACTIONS(1168), - [anon_sym_catch] = ACTIONS(1168), - [anon_sym_return] = ACTIONS(1168), - [anon_sym_source] = ACTIONS(1168), - [anon_sym_source_DASHenv] = ACTIONS(1168), - [anon_sym_register] = ACTIONS(1168), - [anon_sym_hide] = ACTIONS(1168), - [anon_sym_hide_DASHenv] = ACTIONS(1168), - [anon_sym_overlay] = ACTIONS(1168), - [anon_sym_new] = ACTIONS(1168), - [anon_sym_as] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_PLUS_EQ] = ACTIONS(1168), - [anon_sym_DASH_EQ] = ACTIONS(1168), - [anon_sym_STAR_EQ] = ACTIONS(1168), - [anon_sym_SLASH_EQ] = ACTIONS(1168), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1168), - [anon_sym_STAR_STAR] = ACTIONS(1168), - [anon_sym_PLUS_PLUS] = ACTIONS(1168), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_mod] = ACTIONS(1168), - [anon_sym_SLASH_SLASH] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(1168), - [anon_sym_bit_DASHshl] = ACTIONS(1168), - [anon_sym_bit_DASHshr] = ACTIONS(1168), - [anon_sym_EQ_EQ] = ACTIONS(1168), - [anon_sym_BANG_EQ] = ACTIONS(1168), - [anon_sym_LT2] = ACTIONS(1168), - [anon_sym_LT_EQ] = ACTIONS(1168), - [anon_sym_GT_EQ] = ACTIONS(1168), - [anon_sym_not_DASHin] = ACTIONS(1168), - [anon_sym_starts_DASHwith] = ACTIONS(1168), - [anon_sym_ends_DASHwith] = ACTIONS(1168), - [anon_sym_EQ_TILDE] = ACTIONS(1168), - [anon_sym_BANG_TILDE] = ACTIONS(1168), - [anon_sym_bit_DASHand] = ACTIONS(1168), - [anon_sym_bit_DASHxor] = ACTIONS(1168), - [anon_sym_bit_DASHor] = ACTIONS(1168), - [anon_sym_and] = ACTIONS(1168), - [anon_sym_xor] = ACTIONS(1168), - [anon_sym_or] = ACTIONS(1168), - [anon_sym_DOT_DOT2] = ACTIONS(1168), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1170), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1170), - [aux_sym__val_number_decimal_token1] = ACTIONS(1168), - [aux_sym__val_number_decimal_token2] = ACTIONS(1168), - [anon_sym_DOT2] = ACTIONS(1168), - [aux_sym__val_number_decimal_token3] = ACTIONS(1168), - [aux_sym__val_number_token1] = ACTIONS(1168), - [aux_sym__val_number_token2] = ACTIONS(1168), - [aux_sym__val_number_token3] = ACTIONS(1168), - [aux_sym__val_number_token4] = ACTIONS(1168), - [aux_sym__val_number_token5] = ACTIONS(1168), - [aux_sym__val_number_token6] = ACTIONS(1168), - [anon_sym_DQUOTE] = ACTIONS(1168), - [sym__str_single_quotes] = ACTIONS(1168), - [sym__str_back_ticks] = ACTIONS(1168), - [aux_sym__record_key_token2] = ACTIONS(1168), + [anon_sym_export] = ACTIONS(1047), + [anon_sym_alias] = ACTIONS(1047), + [anon_sym_let] = ACTIONS(1047), + [anon_sym_let_DASHenv] = ACTIONS(1047), + [anon_sym_mut] = ACTIONS(1047), + [anon_sym_const] = ACTIONS(1047), + [sym_cmd_identifier] = ACTIONS(1047), + [anon_sym_def] = ACTIONS(1047), + [anon_sym_export_DASHenv] = ACTIONS(1047), + [anon_sym_extern] = ACTIONS(1047), + [anon_sym_module] = ACTIONS(1047), + [anon_sym_use] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1047), + [anon_sym_error] = ACTIONS(1047), + [anon_sym_list] = ACTIONS(1047), + [anon_sym_GT] = ACTIONS(1047), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_break] = ACTIONS(1047), + [anon_sym_continue] = ACTIONS(1047), + [anon_sym_for] = ACTIONS(1047), + [anon_sym_in] = ACTIONS(1047), + [anon_sym_loop] = ACTIONS(1047), + [anon_sym_make] = ACTIONS(1047), + [anon_sym_while] = ACTIONS(1047), + [anon_sym_do] = ACTIONS(1047), + [anon_sym_if] = ACTIONS(1047), + [anon_sym_else] = ACTIONS(1047), + [anon_sym_match] = ACTIONS(1047), + [anon_sym_RBRACE] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1047), + [anon_sym_catch] = ACTIONS(1047), + [anon_sym_return] = ACTIONS(1047), + [anon_sym_source] = ACTIONS(1047), + [anon_sym_source_DASHenv] = ACTIONS(1047), + [anon_sym_register] = ACTIONS(1047), + [anon_sym_hide] = ACTIONS(1047), + [anon_sym_hide_DASHenv] = ACTIONS(1047), + [anon_sym_overlay] = ACTIONS(1047), + [anon_sym_new] = ACTIONS(1047), + [anon_sym_as] = ACTIONS(1047), + [anon_sym_STAR] = ACTIONS(1047), + [anon_sym_STAR_STAR] = ACTIONS(1047), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_SLASH] = ACTIONS(1047), + [anon_sym_mod] = ACTIONS(1047), + [anon_sym_SLASH_SLASH] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1047), + [anon_sym_bit_DASHshl] = ACTIONS(1047), + [anon_sym_bit_DASHshr] = ACTIONS(1047), + [anon_sym_EQ_EQ] = ACTIONS(1047), + [anon_sym_BANG_EQ] = ACTIONS(1047), + [anon_sym_LT2] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1047), + [anon_sym_GT_EQ] = ACTIONS(1047), + [anon_sym_not_DASHin] = ACTIONS(1047), + [anon_sym_starts_DASHwith] = ACTIONS(1047), + [anon_sym_ends_DASHwith] = ACTIONS(1047), + [anon_sym_EQ_TILDE] = ACTIONS(1047), + [anon_sym_BANG_TILDE] = ACTIONS(1047), + [anon_sym_bit_DASHand] = ACTIONS(1047), + [anon_sym_bit_DASHxor] = ACTIONS(1047), + [anon_sym_bit_DASHor] = ACTIONS(1047), + [anon_sym_and] = ACTIONS(1047), + [anon_sym_xor] = ACTIONS(1047), + [anon_sym_or] = ACTIONS(1047), + [anon_sym_DOT] = ACTIONS(1049), + [aux_sym__val_number_decimal_token1] = ACTIONS(1047), + [aux_sym__val_number_decimal_token2] = ACTIONS(1047), + [anon_sym_DOT2] = ACTIONS(1047), + [aux_sym__val_number_decimal_token3] = ACTIONS(1047), + [aux_sym__val_number_token1] = ACTIONS(1047), + [aux_sym__val_number_token2] = ACTIONS(1047), + [aux_sym__val_number_token3] = ACTIONS(1047), + [aux_sym__val_number_token4] = ACTIONS(1047), + [aux_sym__val_number_token5] = ACTIONS(1047), + [aux_sym__val_number_token6] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1047), + [sym__str_single_quotes] = ACTIONS(1047), + [sym__str_back_ticks] = ACTIONS(1047), + [sym__entry_separator] = ACTIONS(1049), + [aux_sym__record_key_token2] = ACTIONS(1047), [anon_sym_POUND] = ACTIONS(113), }, [583] = { [sym_comment] = STATE(583), - [ts_builtin_sym_end] = ACTIONS(1310), - [anon_sym_export] = ACTIONS(1308), - [anon_sym_alias] = ACTIONS(1308), - [anon_sym_let] = ACTIONS(1308), - [anon_sym_let_DASHenv] = ACTIONS(1308), - [anon_sym_mut] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [sym_cmd_identifier] = ACTIONS(1308), - [anon_sym_LF] = ACTIONS(1310), - [anon_sym_def] = ACTIONS(1308), - [anon_sym_export_DASHenv] = ACTIONS(1308), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym_module] = ACTIONS(1308), - [anon_sym_use] = ACTIONS(1308), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_LPAREN] = ACTIONS(1308), - [anon_sym_DOLLAR] = ACTIONS(1308), - [anon_sym_error] = ACTIONS(1308), - [anon_sym_GT] = ACTIONS(1308), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_break] = ACTIONS(1308), - [anon_sym_continue] = ACTIONS(1308), - [anon_sym_for] = ACTIONS(1308), - [anon_sym_in] = ACTIONS(1308), - [anon_sym_loop] = ACTIONS(1308), - [anon_sym_while] = ACTIONS(1308), - [anon_sym_do] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_match] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_DOT_DOT] = ACTIONS(1308), - [anon_sym_try] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1308), - [anon_sym_source] = ACTIONS(1308), - [anon_sym_source_DASHenv] = ACTIONS(1308), - [anon_sym_register] = ACTIONS(1308), - [anon_sym_hide] = ACTIONS(1308), - [anon_sym_hide_DASHenv] = ACTIONS(1308), - [anon_sym_overlay] = ACTIONS(1308), - [anon_sym_as] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_where] = ACTIONS(1308), - [anon_sym_STAR_STAR] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(1308), - [anon_sym_mod] = ACTIONS(1308), - [anon_sym_SLASH_SLASH] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_bit_DASHshl] = ACTIONS(1308), - [anon_sym_bit_DASHshr] = ACTIONS(1308), - [anon_sym_EQ_EQ] = ACTIONS(1308), - [anon_sym_BANG_EQ] = ACTIONS(1308), - [anon_sym_LT2] = ACTIONS(1308), - [anon_sym_LT_EQ] = ACTIONS(1308), - [anon_sym_GT_EQ] = ACTIONS(1308), - [anon_sym_not_DASHin] = ACTIONS(1308), - [anon_sym_starts_DASHwith] = ACTIONS(1308), - [anon_sym_ends_DASHwith] = ACTIONS(1308), - [anon_sym_EQ_TILDE] = ACTIONS(1308), - [anon_sym_BANG_TILDE] = ACTIONS(1308), - [anon_sym_bit_DASHand] = ACTIONS(1308), - [anon_sym_bit_DASHxor] = ACTIONS(1308), - [anon_sym_bit_DASHor] = ACTIONS(1308), - [anon_sym_and] = ACTIONS(1308), - [anon_sym_xor] = ACTIONS(1308), - [anon_sym_or] = ACTIONS(1308), - [anon_sym_not] = ACTIONS(1308), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1308), - [anon_sym_DOT_DOT_LT] = ACTIONS(1308), - [anon_sym_null] = ACTIONS(1308), - [anon_sym_true] = ACTIONS(1308), - [anon_sym_false] = ACTIONS(1308), - [aux_sym__val_number_decimal_token1] = ACTIONS(1308), - [aux_sym__val_number_decimal_token2] = ACTIONS(1308), - [anon_sym_DOT2] = ACTIONS(1308), - [aux_sym__val_number_decimal_token3] = ACTIONS(1308), - [aux_sym__val_number_token1] = ACTIONS(1308), - [aux_sym__val_number_token2] = ACTIONS(1308), - [aux_sym__val_number_token3] = ACTIONS(1308), - [aux_sym__val_number_token4] = ACTIONS(1308), - [aux_sym__val_number_token5] = ACTIONS(1308), - [aux_sym__val_number_token6] = ACTIONS(1308), - [anon_sym_0b] = ACTIONS(1308), - [anon_sym_0o] = ACTIONS(1308), - [anon_sym_0x] = ACTIONS(1308), - [sym_val_date] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym__str_single_quotes] = ACTIONS(1308), - [sym__str_back_ticks] = ACTIONS(1308), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1308), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1308), - [anon_sym_CARET] = ACTIONS(1308), + [anon_sym_export] = ACTIONS(1143), + [anon_sym_alias] = ACTIONS(1143), + [anon_sym_let] = ACTIONS(1143), + [anon_sym_let_DASHenv] = ACTIONS(1143), + [anon_sym_mut] = ACTIONS(1143), + [anon_sym_const] = ACTIONS(1143), + [sym_cmd_identifier] = ACTIONS(1143), + [anon_sym_def] = ACTIONS(1143), + [anon_sym_export_DASHenv] = ACTIONS(1143), + [anon_sym_extern] = ACTIONS(1143), + [anon_sym_module] = ACTIONS(1143), + [anon_sym_use] = ACTIONS(1143), + [anon_sym_LPAREN] = ACTIONS(1143), + [anon_sym_DOLLAR] = ACTIONS(1143), + [anon_sym_error] = ACTIONS(1143), + [anon_sym_list] = ACTIONS(1143), + [anon_sym_GT] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_break] = ACTIONS(1143), + [anon_sym_continue] = ACTIONS(1143), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_loop] = ACTIONS(1143), + [anon_sym_make] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(1143), + [anon_sym_do] = ACTIONS(1143), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_else] = ACTIONS(1143), + [anon_sym_match] = ACTIONS(1143), + [anon_sym_RBRACE] = ACTIONS(1143), + [anon_sym_try] = ACTIONS(1143), + [anon_sym_catch] = ACTIONS(1143), + [anon_sym_return] = ACTIONS(1143), + [anon_sym_source] = ACTIONS(1143), + [anon_sym_source_DASHenv] = ACTIONS(1143), + [anon_sym_register] = ACTIONS(1143), + [anon_sym_hide] = ACTIONS(1143), + [anon_sym_hide_DASHenv] = ACTIONS(1143), + [anon_sym_overlay] = ACTIONS(1143), + [anon_sym_new] = ACTIONS(1143), + [anon_sym_as] = ACTIONS(1143), + [anon_sym_STAR] = ACTIONS(1143), + [anon_sym_STAR_STAR] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(1143), + [anon_sym_mod] = ACTIONS(1143), + [anon_sym_SLASH_SLASH] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_bit_DASHshl] = ACTIONS(1143), + [anon_sym_bit_DASHshr] = ACTIONS(1143), + [anon_sym_EQ_EQ] = ACTIONS(1143), + [anon_sym_BANG_EQ] = ACTIONS(1143), + [anon_sym_LT2] = ACTIONS(1143), + [anon_sym_LT_EQ] = ACTIONS(1143), + [anon_sym_GT_EQ] = ACTIONS(1143), + [anon_sym_not_DASHin] = ACTIONS(1143), + [anon_sym_starts_DASHwith] = ACTIONS(1143), + [anon_sym_ends_DASHwith] = ACTIONS(1143), + [anon_sym_EQ_TILDE] = ACTIONS(1143), + [anon_sym_BANG_TILDE] = ACTIONS(1143), + [anon_sym_bit_DASHand] = ACTIONS(1143), + [anon_sym_bit_DASHxor] = ACTIONS(1143), + [anon_sym_bit_DASHor] = ACTIONS(1143), + [anon_sym_and] = ACTIONS(1143), + [anon_sym_xor] = ACTIONS(1143), + [anon_sym_or] = ACTIONS(1143), + [aux_sym__val_number_decimal_token1] = ACTIONS(1143), + [aux_sym__val_number_decimal_token2] = ACTIONS(1143), + [anon_sym_DOT2] = ACTIONS(1143), + [aux_sym__val_number_decimal_token3] = ACTIONS(1143), + [aux_sym__val_number_token1] = ACTIONS(1143), + [aux_sym__val_number_token2] = ACTIONS(1143), + [aux_sym__val_number_token3] = ACTIONS(1143), + [aux_sym__val_number_token4] = ACTIONS(1143), + [aux_sym__val_number_token5] = ACTIONS(1143), + [aux_sym__val_number_token6] = ACTIONS(1143), + [anon_sym_LBRACK2] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1143), + [sym__str_single_quotes] = ACTIONS(1143), + [sym__str_back_ticks] = ACTIONS(1143), + [sym__entry_separator] = ACTIONS(1145), + [aux_sym__record_key_token2] = ACTIONS(1143), [anon_sym_POUND] = ACTIONS(113), }, [584] = { [sym_comment] = STATE(584), - [ts_builtin_sym_end] = ACTIONS(1314), - [anon_sym_export] = ACTIONS(1312), - [anon_sym_alias] = ACTIONS(1312), - [anon_sym_let] = ACTIONS(1312), - [anon_sym_let_DASHenv] = ACTIONS(1312), - [anon_sym_mut] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [sym_cmd_identifier] = ACTIONS(1312), - [anon_sym_LF] = ACTIONS(1314), - [anon_sym_def] = ACTIONS(1312), - [anon_sym_export_DASHenv] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym_module] = ACTIONS(1312), - [anon_sym_use] = ACTIONS(1312), - [anon_sym_LBRACK] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1312), - [anon_sym_DOLLAR] = ACTIONS(1312), - [anon_sym_error] = ACTIONS(1312), - [anon_sym_GT] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_in] = ACTIONS(1312), - [anon_sym_loop] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_match] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_DOT_DOT] = ACTIONS(1312), - [anon_sym_try] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_source] = ACTIONS(1312), - [anon_sym_source_DASHenv] = ACTIONS(1312), - [anon_sym_register] = ACTIONS(1312), - [anon_sym_hide] = ACTIONS(1312), - [anon_sym_hide_DASHenv] = ACTIONS(1312), - [anon_sym_overlay] = ACTIONS(1312), - [anon_sym_as] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_where] = ACTIONS(1312), - [anon_sym_STAR_STAR] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_SLASH] = ACTIONS(1312), - [anon_sym_mod] = ACTIONS(1312), - [anon_sym_SLASH_SLASH] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_bit_DASHshl] = ACTIONS(1312), - [anon_sym_bit_DASHshr] = ACTIONS(1312), - [anon_sym_EQ_EQ] = ACTIONS(1312), - [anon_sym_BANG_EQ] = ACTIONS(1312), - [anon_sym_LT2] = ACTIONS(1312), - [anon_sym_LT_EQ] = ACTIONS(1312), - [anon_sym_GT_EQ] = ACTIONS(1312), - [anon_sym_not_DASHin] = ACTIONS(1312), - [anon_sym_starts_DASHwith] = ACTIONS(1312), - [anon_sym_ends_DASHwith] = ACTIONS(1312), - [anon_sym_EQ_TILDE] = ACTIONS(1312), - [anon_sym_BANG_TILDE] = ACTIONS(1312), - [anon_sym_bit_DASHand] = ACTIONS(1312), - [anon_sym_bit_DASHxor] = ACTIONS(1312), - [anon_sym_bit_DASHor] = ACTIONS(1312), - [anon_sym_and] = ACTIONS(1312), - [anon_sym_xor] = ACTIONS(1312), - [anon_sym_or] = ACTIONS(1312), - [anon_sym_not] = ACTIONS(1312), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1312), - [anon_sym_DOT_DOT_LT] = ACTIONS(1312), - [anon_sym_null] = ACTIONS(1312), - [anon_sym_true] = ACTIONS(1312), - [anon_sym_false] = ACTIONS(1312), - [aux_sym__val_number_decimal_token1] = ACTIONS(1312), - [aux_sym__val_number_decimal_token2] = ACTIONS(1312), - [anon_sym_DOT2] = ACTIONS(1312), - [aux_sym__val_number_decimal_token3] = ACTIONS(1312), - [aux_sym__val_number_token1] = ACTIONS(1312), - [aux_sym__val_number_token2] = ACTIONS(1312), - [aux_sym__val_number_token3] = ACTIONS(1312), - [aux_sym__val_number_token4] = ACTIONS(1312), - [aux_sym__val_number_token5] = ACTIONS(1312), - [aux_sym__val_number_token6] = ACTIONS(1312), - [anon_sym_0b] = ACTIONS(1312), - [anon_sym_0o] = ACTIONS(1312), - [anon_sym_0x] = ACTIONS(1312), - [sym_val_date] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym__str_single_quotes] = ACTIONS(1312), - [sym__str_back_ticks] = ACTIONS(1312), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1312), - [anon_sym_CARET] = ACTIONS(1312), + [anon_sym_export] = ACTIONS(1135), + [anon_sym_alias] = ACTIONS(1135), + [anon_sym_let] = ACTIONS(1135), + [anon_sym_let_DASHenv] = ACTIONS(1135), + [anon_sym_mut] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [sym_cmd_identifier] = ACTIONS(1135), + [anon_sym_def] = ACTIONS(1135), + [anon_sym_export_DASHenv] = ACTIONS(1135), + [anon_sym_extern] = ACTIONS(1135), + [anon_sym_module] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1135), + [anon_sym_LPAREN] = ACTIONS(1135), + [anon_sym_DOLLAR] = ACTIONS(1135), + [anon_sym_error] = ACTIONS(1135), + [anon_sym_list] = ACTIONS(1135), + [anon_sym_GT] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1135), + [anon_sym_for] = ACTIONS(1135), + [anon_sym_in] = ACTIONS(1135), + [anon_sym_loop] = ACTIONS(1135), + [anon_sym_make] = ACTIONS(1135), + [anon_sym_while] = ACTIONS(1135), + [anon_sym_do] = ACTIONS(1135), + [anon_sym_if] = ACTIONS(1135), + [anon_sym_else] = ACTIONS(1135), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_RBRACE] = ACTIONS(1135), + [anon_sym_try] = ACTIONS(1135), + [anon_sym_catch] = ACTIONS(1135), + [anon_sym_return] = ACTIONS(1135), + [anon_sym_source] = ACTIONS(1135), + [anon_sym_source_DASHenv] = ACTIONS(1135), + [anon_sym_register] = ACTIONS(1135), + [anon_sym_hide] = ACTIONS(1135), + [anon_sym_hide_DASHenv] = ACTIONS(1135), + [anon_sym_overlay] = ACTIONS(1135), + [anon_sym_new] = ACTIONS(1135), + [anon_sym_as] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1135), + [anon_sym_STAR_STAR] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_SLASH] = ACTIONS(1135), + [anon_sym_mod] = ACTIONS(1135), + [anon_sym_SLASH_SLASH] = ACTIONS(1135), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_bit_DASHshl] = ACTIONS(1135), + [anon_sym_bit_DASHshr] = ACTIONS(1135), + [anon_sym_EQ_EQ] = ACTIONS(1135), + [anon_sym_BANG_EQ] = ACTIONS(1135), + [anon_sym_LT2] = ACTIONS(1135), + [anon_sym_LT_EQ] = ACTIONS(1135), + [anon_sym_GT_EQ] = ACTIONS(1135), + [anon_sym_not_DASHin] = ACTIONS(1135), + [anon_sym_starts_DASHwith] = ACTIONS(1135), + [anon_sym_ends_DASHwith] = ACTIONS(1135), + [anon_sym_EQ_TILDE] = ACTIONS(1135), + [anon_sym_BANG_TILDE] = ACTIONS(1135), + [anon_sym_bit_DASHand] = ACTIONS(1135), + [anon_sym_bit_DASHxor] = ACTIONS(1135), + [anon_sym_bit_DASHor] = ACTIONS(1135), + [anon_sym_and] = ACTIONS(1135), + [anon_sym_xor] = ACTIONS(1135), + [anon_sym_or] = ACTIONS(1135), + [aux_sym__val_number_decimal_token1] = ACTIONS(1135), + [aux_sym__val_number_decimal_token2] = ACTIONS(1135), + [anon_sym_DOT2] = ACTIONS(1135), + [aux_sym__val_number_decimal_token3] = ACTIONS(1135), + [aux_sym__val_number_token1] = ACTIONS(1135), + [aux_sym__val_number_token2] = ACTIONS(1135), + [aux_sym__val_number_token3] = ACTIONS(1135), + [aux_sym__val_number_token4] = ACTIONS(1135), + [aux_sym__val_number_token5] = ACTIONS(1135), + [aux_sym__val_number_token6] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1135), + [sym__str_single_quotes] = ACTIONS(1135), + [sym__str_back_ticks] = ACTIONS(1135), + [sym__entry_separator] = ACTIONS(1137), + [aux_sym__record_key_token2] = ACTIONS(1135), + [aux_sym_unquoted_token6] = ACTIONS(1133), [anon_sym_POUND] = ACTIONS(113), }, [585] = { [sym_comment] = STATE(585), - [ts_builtin_sym_end] = ACTIONS(1174), - [anon_sym_export] = ACTIONS(1172), - [anon_sym_alias] = ACTIONS(1172), - [anon_sym_let] = ACTIONS(1172), - [anon_sym_let_DASHenv] = ACTIONS(1172), - [anon_sym_mut] = ACTIONS(1172), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(1172), - [sym_cmd_identifier] = ACTIONS(1172), - [anon_sym_LF] = ACTIONS(1174), - [anon_sym_def] = ACTIONS(1172), - [anon_sym_export_DASHenv] = ACTIONS(1172), - [anon_sym_extern] = ACTIONS(1172), - [anon_sym_module] = ACTIONS(1172), - [anon_sym_use] = ACTIONS(1172), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_LPAREN] = ACTIONS(1172), - [anon_sym_DOLLAR] = ACTIONS(1172), - [anon_sym_error] = ACTIONS(1172), - [anon_sym_GT] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_DASH] = ACTIONS(1172), - [anon_sym_break] = ACTIONS(1172), - [anon_sym_continue] = ACTIONS(1172), - [anon_sym_for] = ACTIONS(1172), - [anon_sym_in] = ACTIONS(1172), - [anon_sym_loop] = ACTIONS(1172), - [anon_sym_while] = ACTIONS(1172), - [anon_sym_do] = ACTIONS(1172), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_match] = ACTIONS(1172), - [anon_sym_LBRACE] = ACTIONS(1172), - [anon_sym_DOT_DOT] = ACTIONS(1172), - [anon_sym_try] = ACTIONS(1172), - [anon_sym_return] = ACTIONS(1172), - [anon_sym_source] = ACTIONS(1172), - [anon_sym_source_DASHenv] = ACTIONS(1172), - [anon_sym_register] = ACTIONS(1172), - [anon_sym_hide] = ACTIONS(1172), - [anon_sym_hide_DASHenv] = ACTIONS(1172), - [anon_sym_overlay] = ACTIONS(1172), - [anon_sym_as] = ACTIONS(1172), - [anon_sym_STAR] = ACTIONS(1172), - [anon_sym_where] = ACTIONS(1172), - [anon_sym_STAR_STAR] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_SLASH] = ACTIONS(1172), - [anon_sym_mod] = ACTIONS(1172), - [anon_sym_SLASH_SLASH] = ACTIONS(1172), - [anon_sym_PLUS] = ACTIONS(1172), - [anon_sym_bit_DASHshl] = ACTIONS(1172), - [anon_sym_bit_DASHshr] = ACTIONS(1172), - [anon_sym_EQ_EQ] = ACTIONS(1172), - [anon_sym_BANG_EQ] = ACTIONS(1172), - [anon_sym_LT2] = ACTIONS(1172), - [anon_sym_LT_EQ] = ACTIONS(1172), - [anon_sym_GT_EQ] = ACTIONS(1172), - [anon_sym_not_DASHin] = ACTIONS(1172), - [anon_sym_starts_DASHwith] = ACTIONS(1172), - [anon_sym_ends_DASHwith] = ACTIONS(1172), - [anon_sym_EQ_TILDE] = ACTIONS(1172), - [anon_sym_BANG_TILDE] = ACTIONS(1172), - [anon_sym_bit_DASHand] = ACTIONS(1172), - [anon_sym_bit_DASHxor] = ACTIONS(1172), - [anon_sym_bit_DASHor] = ACTIONS(1172), - [anon_sym_and] = ACTIONS(1172), - [anon_sym_xor] = ACTIONS(1172), - [anon_sym_or] = ACTIONS(1172), - [anon_sym_not] = ACTIONS(1172), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1172), - [anon_sym_DOT_DOT_LT] = ACTIONS(1172), - [anon_sym_null] = ACTIONS(1172), - [anon_sym_true] = ACTIONS(1172), - [anon_sym_false] = ACTIONS(1172), - [aux_sym__val_number_decimal_token1] = ACTIONS(1172), - [aux_sym__val_number_decimal_token2] = ACTIONS(1172), - [anon_sym_DOT2] = ACTIONS(1172), - [aux_sym__val_number_decimal_token3] = ACTIONS(1172), - [aux_sym__val_number_token1] = ACTIONS(1172), - [aux_sym__val_number_token2] = ACTIONS(1172), - [aux_sym__val_number_token3] = ACTIONS(1172), - [aux_sym__val_number_token4] = ACTIONS(1172), - [aux_sym__val_number_token5] = ACTIONS(1172), - [aux_sym__val_number_token6] = ACTIONS(1172), - [anon_sym_0b] = ACTIONS(1172), - [anon_sym_0o] = ACTIONS(1172), - [anon_sym_0x] = ACTIONS(1172), - [sym_val_date] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(1172), - [sym__str_single_quotes] = ACTIONS(1172), - [sym__str_back_ticks] = ACTIONS(1172), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1172), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1172), - [anon_sym_CARET] = ACTIONS(1172), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1020), + [anon_sym_alias] = ACTIONS(1020), + [anon_sym_let] = ACTIONS(1020), + [anon_sym_let_DASHenv] = ACTIONS(1020), + [anon_sym_mut] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(1020), + [sym_cmd_identifier] = ACTIONS(1020), + [anon_sym_def] = ACTIONS(1020), + [anon_sym_export_DASHenv] = ACTIONS(1020), + [anon_sym_extern] = ACTIONS(1020), + [anon_sym_module] = ACTIONS(1020), + [anon_sym_use] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_error] = ACTIONS(1020), + [anon_sym_list] = ACTIONS(1020), + [anon_sym_GT] = ACTIONS(1020), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_in] = ACTIONS(1020), + [anon_sym_loop] = ACTIONS(1020), + [anon_sym_make] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_else] = ACTIONS(1020), + [anon_sym_match] = ACTIONS(1020), + [anon_sym_RBRACE] = ACTIONS(1022), + [anon_sym_try] = ACTIONS(1020), + [anon_sym_catch] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_source] = ACTIONS(1020), + [anon_sym_source_DASHenv] = ACTIONS(1020), + [anon_sym_register] = ACTIONS(1020), + [anon_sym_hide] = ACTIONS(1020), + [anon_sym_hide_DASHenv] = ACTIONS(1020), + [anon_sym_overlay] = ACTIONS(1020), + [anon_sym_new] = ACTIONS(1020), + [anon_sym_as] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_QMARK2] = ACTIONS(1022), + [anon_sym_STAR_STAR] = ACTIONS(1022), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_SLASH] = ACTIONS(1020), + [anon_sym_mod] = ACTIONS(1020), + [anon_sym_SLASH_SLASH] = ACTIONS(1022), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_bit_DASHshl] = ACTIONS(1020), + [anon_sym_bit_DASHshr] = ACTIONS(1020), + [anon_sym_EQ_EQ] = ACTIONS(1022), + [anon_sym_BANG_EQ] = ACTIONS(1022), + [anon_sym_LT2] = ACTIONS(1020), + [anon_sym_LT_EQ] = ACTIONS(1022), + [anon_sym_GT_EQ] = ACTIONS(1022), + [anon_sym_not_DASHin] = ACTIONS(1020), + [anon_sym_starts_DASHwith] = ACTIONS(1020), + [anon_sym_ends_DASHwith] = ACTIONS(1020), + [anon_sym_EQ_TILDE] = ACTIONS(1022), + [anon_sym_BANG_TILDE] = ACTIONS(1022), + [anon_sym_bit_DASHand] = ACTIONS(1020), + [anon_sym_bit_DASHxor] = ACTIONS(1020), + [anon_sym_bit_DASHor] = ACTIONS(1020), + [anon_sym_and] = ACTIONS(1020), + [anon_sym_xor] = ACTIONS(1020), + [anon_sym_or] = ACTIONS(1020), + [anon_sym_DOT] = ACTIONS(1022), + [aux_sym__val_number_decimal_token1] = ACTIONS(1020), + [aux_sym__val_number_decimal_token2] = ACTIONS(1022), + [anon_sym_DOT2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1022), + [aux_sym__val_number_token1] = ACTIONS(1022), + [aux_sym__val_number_token2] = ACTIONS(1022), + [aux_sym__val_number_token3] = ACTIONS(1022), + [aux_sym__val_number_token4] = ACTIONS(1020), + [aux_sym__val_number_token5] = ACTIONS(1022), + [aux_sym__val_number_token6] = ACTIONS(1020), + [anon_sym_DQUOTE] = ACTIONS(1022), + [sym__str_single_quotes] = ACTIONS(1022), + [sym__str_back_ticks] = ACTIONS(1022), + [aux_sym__record_key_token2] = ACTIONS(1020), + [anon_sym_POUND] = ACTIONS(3), }, [586] = { [sym_comment] = STATE(586), - [ts_builtin_sym_end] = ACTIONS(1188), - [anon_sym_export] = ACTIONS(1186), - [anon_sym_alias] = ACTIONS(1186), - [anon_sym_let] = ACTIONS(1186), - [anon_sym_let_DASHenv] = ACTIONS(1186), - [anon_sym_mut] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1186), - [sym_cmd_identifier] = ACTIONS(1186), - [anon_sym_LF] = ACTIONS(1188), - [anon_sym_def] = ACTIONS(1186), - [anon_sym_export_DASHenv] = ACTIONS(1186), - [anon_sym_extern] = ACTIONS(1186), - [anon_sym_module] = ACTIONS(1186), - [anon_sym_use] = ACTIONS(1186), - [anon_sym_LBRACK] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(1186), - [anon_sym_DOLLAR] = ACTIONS(1186), - [anon_sym_error] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_DASH_DASH] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1186), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1186), - [anon_sym_in] = ACTIONS(1186), - [anon_sym_loop] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_do] = ACTIONS(1186), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_match] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_DOT_DOT] = ACTIONS(1186), - [anon_sym_try] = ACTIONS(1186), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_source] = ACTIONS(1186), - [anon_sym_source_DASHenv] = ACTIONS(1186), - [anon_sym_register] = ACTIONS(1186), - [anon_sym_hide] = ACTIONS(1186), - [anon_sym_hide_DASHenv] = ACTIONS(1186), - [anon_sym_overlay] = ACTIONS(1186), - [anon_sym_as] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_where] = ACTIONS(1186), - [anon_sym_STAR_STAR] = ACTIONS(1186), - [anon_sym_PLUS_PLUS] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_mod] = ACTIONS(1186), - [anon_sym_SLASH_SLASH] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_bit_DASHshl] = ACTIONS(1186), - [anon_sym_bit_DASHshr] = ACTIONS(1186), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_LT2] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1186), - [anon_sym_GT_EQ] = ACTIONS(1186), - [anon_sym_not_DASHin] = ACTIONS(1186), - [anon_sym_starts_DASHwith] = ACTIONS(1186), - [anon_sym_ends_DASHwith] = ACTIONS(1186), - [anon_sym_EQ_TILDE] = ACTIONS(1186), - [anon_sym_BANG_TILDE] = ACTIONS(1186), - [anon_sym_bit_DASHand] = ACTIONS(1186), - [anon_sym_bit_DASHxor] = ACTIONS(1186), - [anon_sym_bit_DASHor] = ACTIONS(1186), - [anon_sym_and] = ACTIONS(1186), - [anon_sym_xor] = ACTIONS(1186), - [anon_sym_or] = ACTIONS(1186), - [anon_sym_not] = ACTIONS(1186), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1186), - [anon_sym_DOT_DOT_LT] = ACTIONS(1186), - [anon_sym_null] = ACTIONS(1186), - [anon_sym_true] = ACTIONS(1186), - [anon_sym_false] = ACTIONS(1186), - [aux_sym__val_number_decimal_token1] = ACTIONS(1186), - [aux_sym__val_number_decimal_token2] = ACTIONS(1186), - [anon_sym_DOT2] = ACTIONS(1186), - [aux_sym__val_number_decimal_token3] = ACTIONS(1186), - [aux_sym__val_number_token1] = ACTIONS(1186), - [aux_sym__val_number_token2] = ACTIONS(1186), - [aux_sym__val_number_token3] = ACTIONS(1186), - [aux_sym__val_number_token4] = ACTIONS(1186), - [aux_sym__val_number_token5] = ACTIONS(1186), - [aux_sym__val_number_token6] = ACTIONS(1186), - [anon_sym_0b] = ACTIONS(1186), - [anon_sym_0o] = ACTIONS(1186), - [anon_sym_0x] = ACTIONS(1186), - [sym_val_date] = ACTIONS(1186), - [anon_sym_DQUOTE] = ACTIONS(1186), - [sym__str_single_quotes] = ACTIONS(1186), - [sym__str_back_ticks] = ACTIONS(1186), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1186), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1186), - [anon_sym_CARET] = ACTIONS(1186), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1033), + [anon_sym_alias] = ACTIONS(1033), + [anon_sym_let] = ACTIONS(1033), + [anon_sym_let_DASHenv] = ACTIONS(1033), + [anon_sym_mut] = ACTIONS(1033), + [anon_sym_const] = ACTIONS(1033), + [sym_cmd_identifier] = ACTIONS(1033), + [anon_sym_def] = ACTIONS(1033), + [anon_sym_export_DASHenv] = ACTIONS(1033), + [anon_sym_extern] = ACTIONS(1033), + [anon_sym_module] = ACTIONS(1033), + [anon_sym_use] = ACTIONS(1033), + [anon_sym_LPAREN] = ACTIONS(1035), + [anon_sym_DOLLAR] = ACTIONS(1035), + [anon_sym_error] = ACTIONS(1033), + [anon_sym_list] = ACTIONS(1033), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1033), + [anon_sym_break] = ACTIONS(1033), + [anon_sym_continue] = ACTIONS(1033), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_in] = ACTIONS(1033), + [anon_sym_loop] = ACTIONS(1033), + [anon_sym_make] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(1033), + [anon_sym_do] = ACTIONS(1033), + [anon_sym_if] = ACTIONS(1033), + [anon_sym_else] = ACTIONS(1033), + [anon_sym_match] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1035), + [anon_sym_try] = ACTIONS(1033), + [anon_sym_catch] = ACTIONS(1033), + [anon_sym_return] = ACTIONS(1033), + [anon_sym_source] = ACTIONS(1033), + [anon_sym_source_DASHenv] = ACTIONS(1033), + [anon_sym_register] = ACTIONS(1033), + [anon_sym_hide] = ACTIONS(1033), + [anon_sym_hide_DASHenv] = ACTIONS(1033), + [anon_sym_overlay] = ACTIONS(1033), + [anon_sym_new] = ACTIONS(1033), + [anon_sym_as] = ACTIONS(1033), + [anon_sym_STAR] = ACTIONS(1033), + [anon_sym_QMARK2] = ACTIONS(1035), + [anon_sym_STAR_STAR] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1035), + [anon_sym_SLASH] = ACTIONS(1033), + [anon_sym_mod] = ACTIONS(1033), + [anon_sym_SLASH_SLASH] = ACTIONS(1035), + [anon_sym_PLUS] = ACTIONS(1033), + [anon_sym_bit_DASHshl] = ACTIONS(1033), + [anon_sym_bit_DASHshr] = ACTIONS(1033), + [anon_sym_EQ_EQ] = ACTIONS(1035), + [anon_sym_BANG_EQ] = ACTIONS(1035), + [anon_sym_LT2] = ACTIONS(1033), + [anon_sym_LT_EQ] = ACTIONS(1035), + [anon_sym_GT_EQ] = ACTIONS(1035), + [anon_sym_not_DASHin] = ACTIONS(1033), + [anon_sym_starts_DASHwith] = ACTIONS(1033), + [anon_sym_ends_DASHwith] = ACTIONS(1033), + [anon_sym_EQ_TILDE] = ACTIONS(1035), + [anon_sym_BANG_TILDE] = ACTIONS(1035), + [anon_sym_bit_DASHand] = ACTIONS(1033), + [anon_sym_bit_DASHxor] = ACTIONS(1033), + [anon_sym_bit_DASHor] = ACTIONS(1033), + [anon_sym_and] = ACTIONS(1033), + [anon_sym_xor] = ACTIONS(1033), + [anon_sym_or] = ACTIONS(1033), + [anon_sym_DOT] = ACTIONS(1035), + [aux_sym__val_number_decimal_token1] = ACTIONS(1033), + [aux_sym__val_number_decimal_token2] = ACTIONS(1035), + [anon_sym_DOT2] = ACTIONS(1033), + [aux_sym__val_number_decimal_token3] = ACTIONS(1035), + [aux_sym__val_number_token1] = ACTIONS(1035), + [aux_sym__val_number_token2] = ACTIONS(1035), + [aux_sym__val_number_token3] = ACTIONS(1035), + [aux_sym__val_number_token4] = ACTIONS(1033), + [aux_sym__val_number_token5] = ACTIONS(1035), + [aux_sym__val_number_token6] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1035), + [sym__str_single_quotes] = ACTIONS(1035), + [sym__str_back_ticks] = ACTIONS(1035), + [aux_sym__record_key_token2] = ACTIONS(1033), + [anon_sym_POUND] = ACTIONS(3), }, [587] = { [sym_comment] = STATE(587), - [ts_builtin_sym_end] = ACTIONS(1334), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_alias] = ACTIONS(1332), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_let_DASHenv] = ACTIONS(1332), - [anon_sym_mut] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1332), - [sym_cmd_identifier] = ACTIONS(1332), - [anon_sym_LF] = ACTIONS(1334), - [anon_sym_def] = ACTIONS(1332), - [anon_sym_export_DASHenv] = ACTIONS(1332), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_use] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1332), - [anon_sym_DOLLAR] = ACTIONS(1332), - [anon_sym_error] = ACTIONS(1332), - [anon_sym_GT] = ACTIONS(1332), - [anon_sym_DASH_DASH] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_in] = ACTIONS(1332), - [anon_sym_loop] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_do] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_match] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_DOT_DOT] = ACTIONS(1332), - [anon_sym_try] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_source] = ACTIONS(1332), - [anon_sym_source_DASHenv] = ACTIONS(1332), - [anon_sym_register] = ACTIONS(1332), - [anon_sym_hide] = ACTIONS(1332), - [anon_sym_hide_DASHenv] = ACTIONS(1332), - [anon_sym_overlay] = ACTIONS(1332), - [anon_sym_as] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_where] = ACTIONS(1332), - [anon_sym_STAR_STAR] = ACTIONS(1332), - [anon_sym_PLUS_PLUS] = ACTIONS(1332), - [anon_sym_SLASH] = ACTIONS(1332), - [anon_sym_mod] = ACTIONS(1332), - [anon_sym_SLASH_SLASH] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_bit_DASHshl] = ACTIONS(1332), - [anon_sym_bit_DASHshr] = ACTIONS(1332), - [anon_sym_EQ_EQ] = ACTIONS(1332), - [anon_sym_BANG_EQ] = ACTIONS(1332), - [anon_sym_LT2] = ACTIONS(1332), - [anon_sym_LT_EQ] = ACTIONS(1332), - [anon_sym_GT_EQ] = ACTIONS(1332), - [anon_sym_not_DASHin] = ACTIONS(1332), - [anon_sym_starts_DASHwith] = ACTIONS(1332), - [anon_sym_ends_DASHwith] = ACTIONS(1332), - [anon_sym_EQ_TILDE] = ACTIONS(1332), - [anon_sym_BANG_TILDE] = ACTIONS(1332), - [anon_sym_bit_DASHand] = ACTIONS(1332), - [anon_sym_bit_DASHxor] = ACTIONS(1332), - [anon_sym_bit_DASHor] = ACTIONS(1332), - [anon_sym_and] = ACTIONS(1332), - [anon_sym_xor] = ACTIONS(1332), - [anon_sym_or] = ACTIONS(1332), - [anon_sym_not] = ACTIONS(1332), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1332), - [anon_sym_DOT_DOT_LT] = ACTIONS(1332), - [anon_sym_null] = ACTIONS(1332), - [anon_sym_true] = ACTIONS(1332), - [anon_sym_false] = ACTIONS(1332), - [aux_sym__val_number_decimal_token1] = ACTIONS(1332), - [aux_sym__val_number_decimal_token2] = ACTIONS(1332), - [anon_sym_DOT2] = ACTIONS(1332), - [aux_sym__val_number_decimal_token3] = ACTIONS(1332), - [aux_sym__val_number_token1] = ACTIONS(1332), - [aux_sym__val_number_token2] = ACTIONS(1332), - [aux_sym__val_number_token3] = ACTIONS(1332), - [aux_sym__val_number_token4] = ACTIONS(1332), - [aux_sym__val_number_token5] = ACTIONS(1332), - [aux_sym__val_number_token6] = ACTIONS(1332), - [anon_sym_0b] = ACTIONS(1332), - [anon_sym_0o] = ACTIONS(1332), - [anon_sym_0x] = ACTIONS(1332), - [sym_val_date] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym__str_single_quotes] = ACTIONS(1332), - [sym__str_back_ticks] = ACTIONS(1332), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1332), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1332), - [anon_sym_CARET] = ACTIONS(1332), + [anon_sym_export] = ACTIONS(1089), + [anon_sym_alias] = ACTIONS(1089), + [anon_sym_let] = ACTIONS(1089), + [anon_sym_let_DASHenv] = ACTIONS(1089), + [anon_sym_mut] = ACTIONS(1089), + [anon_sym_const] = ACTIONS(1089), + [sym_cmd_identifier] = ACTIONS(1089), + [anon_sym_def] = ACTIONS(1089), + [anon_sym_export_DASHenv] = ACTIONS(1089), + [anon_sym_extern] = ACTIONS(1089), + [anon_sym_module] = ACTIONS(1089), + [anon_sym_use] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1089), + [anon_sym_error] = ACTIONS(1089), + [anon_sym_list] = ACTIONS(1089), + [anon_sym_GT] = ACTIONS(1089), + [anon_sym_DASH] = ACTIONS(1089), + [anon_sym_break] = ACTIONS(1089), + [anon_sym_continue] = ACTIONS(1089), + [anon_sym_for] = ACTIONS(1089), + [anon_sym_in] = ACTIONS(1089), + [anon_sym_loop] = ACTIONS(1089), + [anon_sym_make] = ACTIONS(1089), + [anon_sym_while] = ACTIONS(1089), + [anon_sym_do] = ACTIONS(1089), + [anon_sym_if] = ACTIONS(1089), + [anon_sym_else] = ACTIONS(1089), + [anon_sym_match] = ACTIONS(1089), + [anon_sym_RBRACE] = ACTIONS(1089), + [anon_sym_try] = ACTIONS(1089), + [anon_sym_catch] = ACTIONS(1089), + [anon_sym_return] = ACTIONS(1089), + [anon_sym_source] = ACTIONS(1089), + [anon_sym_source_DASHenv] = ACTIONS(1089), + [anon_sym_register] = ACTIONS(1089), + [anon_sym_hide] = ACTIONS(1089), + [anon_sym_hide_DASHenv] = ACTIONS(1089), + [anon_sym_overlay] = ACTIONS(1089), + [anon_sym_new] = ACTIONS(1089), + [anon_sym_as] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_STAR_STAR] = ACTIONS(1089), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_SLASH] = ACTIONS(1089), + [anon_sym_mod] = ACTIONS(1089), + [anon_sym_SLASH_SLASH] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1089), + [anon_sym_bit_DASHshl] = ACTIONS(1089), + [anon_sym_bit_DASHshr] = ACTIONS(1089), + [anon_sym_EQ_EQ] = ACTIONS(1089), + [anon_sym_BANG_EQ] = ACTIONS(1089), + [anon_sym_LT2] = ACTIONS(1089), + [anon_sym_LT_EQ] = ACTIONS(1089), + [anon_sym_GT_EQ] = ACTIONS(1089), + [anon_sym_not_DASHin] = ACTIONS(1089), + [anon_sym_starts_DASHwith] = ACTIONS(1089), + [anon_sym_ends_DASHwith] = ACTIONS(1089), + [anon_sym_EQ_TILDE] = ACTIONS(1089), + [anon_sym_BANG_TILDE] = ACTIONS(1089), + [anon_sym_bit_DASHand] = ACTIONS(1089), + [anon_sym_bit_DASHxor] = ACTIONS(1089), + [anon_sym_bit_DASHor] = ACTIONS(1089), + [anon_sym_and] = ACTIONS(1089), + [anon_sym_xor] = ACTIONS(1089), + [anon_sym_or] = ACTIONS(1089), + [aux_sym__val_number_decimal_token1] = ACTIONS(1089), + [aux_sym__val_number_decimal_token2] = ACTIONS(1089), + [anon_sym_DOT2] = ACTIONS(1089), + [aux_sym__val_number_decimal_token3] = ACTIONS(1089), + [aux_sym__val_number_token1] = ACTIONS(1089), + [aux_sym__val_number_token2] = ACTIONS(1089), + [aux_sym__val_number_token3] = ACTIONS(1089), + [aux_sym__val_number_token4] = ACTIONS(1089), + [aux_sym__val_number_token5] = ACTIONS(1089), + [aux_sym__val_number_token6] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1089), + [sym__str_single_quotes] = ACTIONS(1089), + [sym__str_back_ticks] = ACTIONS(1089), + [sym__entry_separator] = ACTIONS(1091), + [aux_sym__record_key_token2] = ACTIONS(1089), + [aux_sym_unquoted_token6] = ACTIONS(1149), [anon_sym_POUND] = ACTIONS(113), }, [588] = { [sym_comment] = STATE(588), - [ts_builtin_sym_end] = ACTIONS(938), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_error] = ACTIONS(936), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_as] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_where] = ACTIONS(936), - [anon_sym_STAR_STAR] = ACTIONS(936), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(936), - [anon_sym_SLASH_SLASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(936), - [anon_sym_bit_DASHshr] = ACTIONS(936), - [anon_sym_EQ_EQ] = ACTIONS(936), - [anon_sym_BANG_EQ] = ACTIONS(936), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(936), - [anon_sym_GT_EQ] = ACTIONS(936), - [anon_sym_not_DASHin] = ACTIONS(936), - [anon_sym_starts_DASHwith] = ACTIONS(936), - [anon_sym_ends_DASHwith] = ACTIONS(936), - [anon_sym_EQ_TILDE] = ACTIONS(936), - [anon_sym_BANG_TILDE] = ACTIONS(936), - [anon_sym_bit_DASHand] = ACTIONS(936), - [anon_sym_bit_DASHxor] = ACTIONS(936), - [anon_sym_bit_DASHor] = ACTIONS(936), - [anon_sym_and] = ACTIONS(936), - [anon_sym_xor] = ACTIONS(936), - [anon_sym_or] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1024), + [anon_sym_alias] = ACTIONS(1024), + [anon_sym_let] = ACTIONS(1024), + [anon_sym_let_DASHenv] = ACTIONS(1024), + [anon_sym_mut] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [sym_cmd_identifier] = ACTIONS(1024), + [anon_sym_def] = ACTIONS(1024), + [anon_sym_export_DASHenv] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1024), + [anon_sym_module] = ACTIONS(1024), + [anon_sym_use] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1026), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_error] = ACTIONS(1024), + [anon_sym_list] = ACTIONS(1024), + [anon_sym_GT] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_loop] = ACTIONS(1024), + [anon_sym_make] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_else] = ACTIONS(1024), + [anon_sym_match] = ACTIONS(1024), + [anon_sym_RBRACE] = ACTIONS(1026), + [anon_sym_try] = ACTIONS(1024), + [anon_sym_catch] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_source] = ACTIONS(1024), + [anon_sym_source_DASHenv] = ACTIONS(1024), + [anon_sym_register] = ACTIONS(1024), + [anon_sym_hide] = ACTIONS(1024), + [anon_sym_hide_DASHenv] = ACTIONS(1024), + [anon_sym_overlay] = ACTIONS(1024), + [anon_sym_new] = ACTIONS(1024), + [anon_sym_as] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(1518), + [anon_sym_STAR_STAR] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [anon_sym_SLASH] = ACTIONS(1024), + [anon_sym_mod] = ACTIONS(1024), + [anon_sym_SLASH_SLASH] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_bit_DASHshl] = ACTIONS(1024), + [anon_sym_bit_DASHshr] = ACTIONS(1024), + [anon_sym_EQ_EQ] = ACTIONS(1026), + [anon_sym_BANG_EQ] = ACTIONS(1026), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ] = ACTIONS(1026), + [anon_sym_GT_EQ] = ACTIONS(1026), + [anon_sym_not_DASHin] = ACTIONS(1024), + [anon_sym_starts_DASHwith] = ACTIONS(1024), + [anon_sym_ends_DASHwith] = ACTIONS(1024), + [anon_sym_EQ_TILDE] = ACTIONS(1026), + [anon_sym_BANG_TILDE] = ACTIONS(1026), + [anon_sym_bit_DASHand] = ACTIONS(1024), + [anon_sym_bit_DASHxor] = ACTIONS(1024), + [anon_sym_bit_DASHor] = ACTIONS(1024), + [anon_sym_and] = ACTIONS(1024), + [anon_sym_xor] = ACTIONS(1024), + [anon_sym_or] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1026), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1026), + [aux_sym__val_number_token1] = ACTIONS(1026), + [aux_sym__val_number_token2] = ACTIONS(1026), + [aux_sym__val_number_token3] = ACTIONS(1026), + [aux_sym__val_number_token4] = ACTIONS(1024), + [aux_sym__val_number_token5] = ACTIONS(1026), + [aux_sym__val_number_token6] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1026), + [sym__str_single_quotes] = ACTIONS(1026), + [sym__str_back_ticks] = ACTIONS(1026), + [aux_sym__record_key_token2] = ACTIONS(1024), + [anon_sym_POUND] = ACTIONS(3), }, [589] = { [sym_comment] = STATE(589), - [ts_builtin_sym_end] = ACTIONS(1290), - [anon_sym_export] = ACTIONS(1243), - [anon_sym_alias] = ACTIONS(1243), - [anon_sym_let] = ACTIONS(1243), - [anon_sym_let_DASHenv] = ACTIONS(1243), - [anon_sym_mut] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1243), - [sym_cmd_identifier] = ACTIONS(1243), - [anon_sym_LF] = ACTIONS(1290), - [anon_sym_def] = ACTIONS(1243), - [anon_sym_export_DASHenv] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1243), - [anon_sym_module] = ACTIONS(1243), - [anon_sym_use] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_error] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_in] = ACTIONS(1243), - [anon_sym_loop] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_match] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_try] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_source] = ACTIONS(1243), - [anon_sym_source_DASHenv] = ACTIONS(1243), - [anon_sym_register] = ACTIONS(1243), - [anon_sym_hide] = ACTIONS(1243), - [anon_sym_hide_DASHenv] = ACTIONS(1243), - [anon_sym_overlay] = ACTIONS(1243), - [anon_sym_as] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1243), - [anon_sym_where] = ACTIONS(1243), - [anon_sym_STAR_STAR] = ACTIONS(1243), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_SLASH] = ACTIONS(1243), - [anon_sym_mod] = ACTIONS(1243), - [anon_sym_SLASH_SLASH] = ACTIONS(1243), - [anon_sym_PLUS] = ACTIONS(1243), - [anon_sym_bit_DASHshl] = ACTIONS(1243), - [anon_sym_bit_DASHshr] = ACTIONS(1243), - [anon_sym_EQ_EQ] = ACTIONS(1243), - [anon_sym_BANG_EQ] = ACTIONS(1243), - [anon_sym_LT2] = ACTIONS(1243), - [anon_sym_LT_EQ] = ACTIONS(1243), - [anon_sym_GT_EQ] = ACTIONS(1243), - [anon_sym_not_DASHin] = ACTIONS(1243), - [anon_sym_starts_DASHwith] = ACTIONS(1243), - [anon_sym_ends_DASHwith] = ACTIONS(1243), - [anon_sym_EQ_TILDE] = ACTIONS(1243), - [anon_sym_BANG_TILDE] = ACTIONS(1243), - [anon_sym_bit_DASHand] = ACTIONS(1243), - [anon_sym_bit_DASHxor] = ACTIONS(1243), - [anon_sym_bit_DASHor] = ACTIONS(1243), - [anon_sym_and] = ACTIONS(1243), - [anon_sym_xor] = ACTIONS(1243), - [anon_sym_or] = ACTIONS(1243), - [anon_sym_not] = ACTIONS(1243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1243), - [anon_sym_DOT_DOT_LT] = ACTIONS(1243), - [anon_sym_null] = ACTIONS(1243), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_decimal_token2] = ACTIONS(1243), - [anon_sym_DOT2] = ACTIONS(1243), - [aux_sym__val_number_decimal_token3] = ACTIONS(1243), - [aux_sym__val_number_token1] = ACTIONS(1243), - [aux_sym__val_number_token2] = ACTIONS(1243), - [aux_sym__val_number_token3] = ACTIONS(1243), - [aux_sym__val_number_token4] = ACTIONS(1243), - [aux_sym__val_number_token5] = ACTIONS(1243), - [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_0b] = ACTIONS(1243), - [anon_sym_0o] = ACTIONS(1243), - [anon_sym_0x] = ACTIONS(1243), - [sym_val_date] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym__str_single_quotes] = ACTIONS(1243), - [sym__str_back_ticks] = ACTIONS(1243), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1243), - [anon_sym_CARET] = ACTIONS(1243), + [anon_sym_export] = ACTIONS(1139), + [anon_sym_alias] = ACTIONS(1139), + [anon_sym_let] = ACTIONS(1139), + [anon_sym_let_DASHenv] = ACTIONS(1139), + [anon_sym_mut] = ACTIONS(1139), + [anon_sym_const] = ACTIONS(1139), + [sym_cmd_identifier] = ACTIONS(1139), + [anon_sym_def] = ACTIONS(1139), + [anon_sym_export_DASHenv] = ACTIONS(1139), + [anon_sym_extern] = ACTIONS(1139), + [anon_sym_module] = ACTIONS(1139), + [anon_sym_use] = ACTIONS(1139), + [anon_sym_LPAREN] = ACTIONS(1139), + [anon_sym_DOLLAR] = ACTIONS(1139), + [anon_sym_error] = ACTIONS(1139), + [anon_sym_list] = ACTIONS(1139), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_break] = ACTIONS(1139), + [anon_sym_continue] = ACTIONS(1139), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_in] = ACTIONS(1139), + [anon_sym_loop] = ACTIONS(1139), + [anon_sym_make] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1139), + [anon_sym_do] = ACTIONS(1139), + [anon_sym_if] = ACTIONS(1139), + [anon_sym_else] = ACTIONS(1139), + [anon_sym_match] = ACTIONS(1139), + [anon_sym_RBRACE] = ACTIONS(1139), + [anon_sym_try] = ACTIONS(1139), + [anon_sym_catch] = ACTIONS(1139), + [anon_sym_return] = ACTIONS(1139), + [anon_sym_source] = ACTIONS(1139), + [anon_sym_source_DASHenv] = ACTIONS(1139), + [anon_sym_register] = ACTIONS(1139), + [anon_sym_hide] = ACTIONS(1139), + [anon_sym_hide_DASHenv] = ACTIONS(1139), + [anon_sym_overlay] = ACTIONS(1139), + [anon_sym_new] = ACTIONS(1139), + [anon_sym_as] = ACTIONS(1139), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_STAR_STAR] = ACTIONS(1139), + [anon_sym_PLUS_PLUS] = ACTIONS(1139), + [anon_sym_SLASH] = ACTIONS(1139), + [anon_sym_mod] = ACTIONS(1139), + [anon_sym_SLASH_SLASH] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_bit_DASHshl] = ACTIONS(1139), + [anon_sym_bit_DASHshr] = ACTIONS(1139), + [anon_sym_EQ_EQ] = ACTIONS(1139), + [anon_sym_BANG_EQ] = ACTIONS(1139), + [anon_sym_LT2] = ACTIONS(1139), + [anon_sym_LT_EQ] = ACTIONS(1139), + [anon_sym_GT_EQ] = ACTIONS(1139), + [anon_sym_not_DASHin] = ACTIONS(1139), + [anon_sym_starts_DASHwith] = ACTIONS(1139), + [anon_sym_ends_DASHwith] = ACTIONS(1139), + [anon_sym_EQ_TILDE] = ACTIONS(1139), + [anon_sym_BANG_TILDE] = ACTIONS(1139), + [anon_sym_bit_DASHand] = ACTIONS(1139), + [anon_sym_bit_DASHxor] = ACTIONS(1139), + [anon_sym_bit_DASHor] = ACTIONS(1139), + [anon_sym_and] = ACTIONS(1139), + [anon_sym_xor] = ACTIONS(1139), + [anon_sym_or] = ACTIONS(1139), + [aux_sym__val_number_decimal_token1] = ACTIONS(1139), + [aux_sym__val_number_decimal_token2] = ACTIONS(1139), + [anon_sym_DOT2] = ACTIONS(1139), + [aux_sym__val_number_decimal_token3] = ACTIONS(1139), + [aux_sym__val_number_token1] = ACTIONS(1139), + [aux_sym__val_number_token2] = ACTIONS(1139), + [aux_sym__val_number_token3] = ACTIONS(1139), + [aux_sym__val_number_token4] = ACTIONS(1139), + [aux_sym__val_number_token5] = ACTIONS(1139), + [aux_sym__val_number_token6] = ACTIONS(1139), + [anon_sym_DQUOTE] = ACTIONS(1139), + [sym__str_single_quotes] = ACTIONS(1139), + [sym__str_back_ticks] = ACTIONS(1139), + [aux_sym__list_item_starts_with_sign_token1] = ACTIONS(1522), + [sym__entry_separator] = ACTIONS(1139), + [aux_sym__record_key_token2] = ACTIONS(1139), [anon_sym_POUND] = ACTIONS(113), }, [590] = { [sym_comment] = STATE(590), - [ts_builtin_sym_end] = ACTIONS(1420), - [anon_sym_export] = ACTIONS(1418), - [anon_sym_alias] = ACTIONS(1418), - [anon_sym_let] = ACTIONS(1418), - [anon_sym_let_DASHenv] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(1418), - [sym_cmd_identifier] = ACTIONS(1418), - [anon_sym_LF] = ACTIONS(1420), - [anon_sym_def] = ACTIONS(1418), - [anon_sym_export_DASHenv] = ACTIONS(1418), - [anon_sym_extern] = ACTIONS(1418), - [anon_sym_module] = ACTIONS(1418), - [anon_sym_use] = ACTIONS(1418), - [anon_sym_LBRACK] = ACTIONS(1418), - [anon_sym_LPAREN] = ACTIONS(1418), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_error] = ACTIONS(1418), - [anon_sym_GT] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_in] = ACTIONS(1418), - [anon_sym_loop] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_match] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_DOT_DOT] = ACTIONS(1418), - [anon_sym_try] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_source] = ACTIONS(1418), - [anon_sym_source_DASHenv] = ACTIONS(1418), - [anon_sym_register] = ACTIONS(1418), - [anon_sym_hide] = ACTIONS(1418), - [anon_sym_hide_DASHenv] = ACTIONS(1418), - [anon_sym_overlay] = ACTIONS(1418), - [anon_sym_as] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_where] = ACTIONS(1418), - [anon_sym_STAR_STAR] = ACTIONS(1418), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_SLASH] = ACTIONS(1418), - [anon_sym_mod] = ACTIONS(1418), - [anon_sym_SLASH_SLASH] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_bit_DASHshl] = ACTIONS(1418), - [anon_sym_bit_DASHshr] = ACTIONS(1418), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_LT2] = ACTIONS(1418), - [anon_sym_LT_EQ] = ACTIONS(1418), - [anon_sym_GT_EQ] = ACTIONS(1418), - [anon_sym_not_DASHin] = ACTIONS(1418), - [anon_sym_starts_DASHwith] = ACTIONS(1418), - [anon_sym_ends_DASHwith] = ACTIONS(1418), - [anon_sym_EQ_TILDE] = ACTIONS(1418), - [anon_sym_BANG_TILDE] = ACTIONS(1418), - [anon_sym_bit_DASHand] = ACTIONS(1418), - [anon_sym_bit_DASHxor] = ACTIONS(1418), - [anon_sym_bit_DASHor] = ACTIONS(1418), - [anon_sym_and] = ACTIONS(1418), - [anon_sym_xor] = ACTIONS(1418), - [anon_sym_or] = ACTIONS(1418), - [anon_sym_not] = ACTIONS(1418), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1418), - [anon_sym_DOT_DOT_LT] = ACTIONS(1418), - [anon_sym_null] = ACTIONS(1418), - [anon_sym_true] = ACTIONS(1418), - [anon_sym_false] = ACTIONS(1418), - [aux_sym__val_number_decimal_token1] = ACTIONS(1418), - [aux_sym__val_number_decimal_token2] = ACTIONS(1418), - [anon_sym_DOT2] = ACTIONS(1418), - [aux_sym__val_number_decimal_token3] = ACTIONS(1418), - [aux_sym__val_number_token1] = ACTIONS(1418), - [aux_sym__val_number_token2] = ACTIONS(1418), - [aux_sym__val_number_token3] = ACTIONS(1418), - [aux_sym__val_number_token4] = ACTIONS(1418), - [aux_sym__val_number_token5] = ACTIONS(1418), - [aux_sym__val_number_token6] = ACTIONS(1418), - [anon_sym_0b] = ACTIONS(1418), - [anon_sym_0o] = ACTIONS(1418), - [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1418), - [anon_sym_DQUOTE] = ACTIONS(1418), - [sym__str_single_quotes] = ACTIONS(1418), - [sym__str_back_ticks] = ACTIONS(1418), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), + [anon_sym_export] = ACTIONS(1129), + [anon_sym_alias] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_let_DASHenv] = ACTIONS(1129), + [anon_sym_mut] = ACTIONS(1129), + [anon_sym_const] = ACTIONS(1129), + [sym_cmd_identifier] = ACTIONS(1129), + [anon_sym_def] = ACTIONS(1129), + [anon_sym_export_DASHenv] = ACTIONS(1129), + [anon_sym_extern] = ACTIONS(1129), + [anon_sym_module] = ACTIONS(1129), + [anon_sym_use] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(1129), + [anon_sym_DOLLAR] = ACTIONS(1129), + [anon_sym_error] = ACTIONS(1129), + [anon_sym_list] = ACTIONS(1129), + [anon_sym_GT] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_break] = ACTIONS(1129), + [anon_sym_continue] = ACTIONS(1129), + [anon_sym_for] = ACTIONS(1129), + [anon_sym_in] = ACTIONS(1129), + [anon_sym_loop] = ACTIONS(1129), + [anon_sym_make] = ACTIONS(1129), + [anon_sym_while] = ACTIONS(1129), + [anon_sym_do] = ACTIONS(1129), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_else] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1129), + [anon_sym_RBRACE] = ACTIONS(1129), + [anon_sym_try] = ACTIONS(1129), + [anon_sym_catch] = ACTIONS(1129), + [anon_sym_return] = ACTIONS(1129), + [anon_sym_source] = ACTIONS(1129), + [anon_sym_source_DASHenv] = ACTIONS(1129), + [anon_sym_register] = ACTIONS(1129), + [anon_sym_hide] = ACTIONS(1129), + [anon_sym_hide_DASHenv] = ACTIONS(1129), + [anon_sym_overlay] = ACTIONS(1129), + [anon_sym_new] = ACTIONS(1129), + [anon_sym_as] = ACTIONS(1129), + [anon_sym_STAR] = ACTIONS(1129), + [anon_sym_STAR_STAR] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(1129), + [anon_sym_mod] = ACTIONS(1129), + [anon_sym_SLASH_SLASH] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_bit_DASHshl] = ACTIONS(1129), + [anon_sym_bit_DASHshr] = ACTIONS(1129), + [anon_sym_EQ_EQ] = ACTIONS(1129), + [anon_sym_BANG_EQ] = ACTIONS(1129), + [anon_sym_LT2] = ACTIONS(1129), + [anon_sym_LT_EQ] = ACTIONS(1129), + [anon_sym_GT_EQ] = ACTIONS(1129), + [anon_sym_not_DASHin] = ACTIONS(1129), + [anon_sym_starts_DASHwith] = ACTIONS(1129), + [anon_sym_ends_DASHwith] = ACTIONS(1129), + [anon_sym_EQ_TILDE] = ACTIONS(1129), + [anon_sym_BANG_TILDE] = ACTIONS(1129), + [anon_sym_bit_DASHand] = ACTIONS(1129), + [anon_sym_bit_DASHxor] = ACTIONS(1129), + [anon_sym_bit_DASHor] = ACTIONS(1129), + [anon_sym_and] = ACTIONS(1129), + [anon_sym_xor] = ACTIONS(1129), + [anon_sym_or] = ACTIONS(1129), + [aux_sym__val_number_decimal_token1] = ACTIONS(1129), + [aux_sym__val_number_decimal_token2] = ACTIONS(1129), + [anon_sym_DOT2] = ACTIONS(1129), + [aux_sym__val_number_decimal_token3] = ACTIONS(1129), + [aux_sym__val_number_token1] = ACTIONS(1129), + [aux_sym__val_number_token2] = ACTIONS(1129), + [aux_sym__val_number_token3] = ACTIONS(1129), + [aux_sym__val_number_token4] = ACTIONS(1129), + [aux_sym__val_number_token5] = ACTIONS(1129), + [aux_sym__val_number_token6] = ACTIONS(1129), + [anon_sym_DQUOTE] = ACTIONS(1129), + [sym__str_single_quotes] = ACTIONS(1129), + [sym__str_back_ticks] = ACTIONS(1129), + [sym__entry_separator] = ACTIONS(1131), + [aux_sym__record_key_token2] = ACTIONS(1129), + [aux_sym_unquoted_token6] = ACTIONS(1133), [anon_sym_POUND] = ACTIONS(113), }, [591] = { [sym_comment] = STATE(591), - [ts_builtin_sym_end] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(1059), - [anon_sym_alias] = ACTIONS(1059), - [anon_sym_let] = ACTIONS(1059), - [anon_sym_let_DASHenv] = ACTIONS(1059), - [anon_sym_mut] = ACTIONS(1059), - [anon_sym_const] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [sym_cmd_identifier] = ACTIONS(1059), - [anon_sym_LF] = ACTIONS(1061), - [anon_sym_def] = ACTIONS(1059), - [anon_sym_export_DASHenv] = ACTIONS(1059), - [anon_sym_extern] = ACTIONS(1059), - [anon_sym_module] = ACTIONS(1059), - [anon_sym_use] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_error] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_break] = ACTIONS(1059), - [anon_sym_continue] = ACTIONS(1059), - [anon_sym_for] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1059), - [anon_sym_loop] = ACTIONS(1059), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_do] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1059), - [anon_sym_match] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_try] = ACTIONS(1059), - [anon_sym_return] = ACTIONS(1059), - [anon_sym_source] = ACTIONS(1059), - [anon_sym_source_DASHenv] = ACTIONS(1059), - [anon_sym_register] = ACTIONS(1059), - [anon_sym_hide] = ACTIONS(1059), - [anon_sym_hide_DASHenv] = ACTIONS(1059), - [anon_sym_overlay] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(1059), - [anon_sym_QMARK2] = ACTIONS(1059), - [anon_sym_STAR_STAR] = ACTIONS(1059), - [anon_sym_PLUS_PLUS] = ACTIONS(1059), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_mod] = ACTIONS(1059), - [anon_sym_SLASH_SLASH] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_bit_DASHshl] = ACTIONS(1059), - [anon_sym_bit_DASHshr] = ACTIONS(1059), - [anon_sym_EQ_EQ] = ACTIONS(1059), - [anon_sym_BANG_EQ] = ACTIONS(1059), - [anon_sym_LT2] = ACTIONS(1059), - [anon_sym_LT_EQ] = ACTIONS(1059), - [anon_sym_GT_EQ] = ACTIONS(1059), - [anon_sym_not_DASHin] = ACTIONS(1059), - [anon_sym_starts_DASHwith] = ACTIONS(1059), - [anon_sym_ends_DASHwith] = ACTIONS(1059), - [anon_sym_EQ_TILDE] = ACTIONS(1059), - [anon_sym_BANG_TILDE] = ACTIONS(1059), - [anon_sym_bit_DASHand] = ACTIONS(1059), - [anon_sym_bit_DASHxor] = ACTIONS(1059), - [anon_sym_bit_DASHor] = ACTIONS(1059), - [anon_sym_and] = ACTIONS(1059), - [anon_sym_xor] = ACTIONS(1059), - [anon_sym_or] = ACTIONS(1059), - [anon_sym_not] = ACTIONS(1059), - [anon_sym_DOT] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1059), - [anon_sym_DOT_DOT_LT] = ACTIONS(1059), - [anon_sym_null] = ACTIONS(1059), - [anon_sym_true] = ACTIONS(1059), - [anon_sym_false] = ACTIONS(1059), - [aux_sym__val_number_decimal_token1] = ACTIONS(1059), - [aux_sym__val_number_decimal_token2] = ACTIONS(1059), - [anon_sym_DOT2] = ACTIONS(1059), - [aux_sym__val_number_decimal_token3] = ACTIONS(1059), - [aux_sym__val_number_token1] = ACTIONS(1059), - [aux_sym__val_number_token2] = ACTIONS(1059), - [aux_sym__val_number_token3] = ACTIONS(1059), - [aux_sym__val_number_token4] = ACTIONS(1059), - [aux_sym__val_number_token5] = ACTIONS(1059), - [aux_sym__val_number_token6] = ACTIONS(1059), - [anon_sym_0b] = ACTIONS(1059), - [anon_sym_0o] = ACTIONS(1059), - [anon_sym_0x] = ACTIONS(1059), - [sym_val_date] = ACTIONS(1059), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym__str_single_quotes] = ACTIONS(1059), - [sym__str_back_ticks] = ACTIONS(1059), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1059), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1059), - [anon_sym_CARET] = ACTIONS(1059), + [anon_sym_export] = ACTIONS(1037), + [anon_sym_alias] = ACTIONS(1037), + [anon_sym_let] = ACTIONS(1037), + [anon_sym_let_DASHenv] = ACTIONS(1037), + [anon_sym_mut] = ACTIONS(1037), + [anon_sym_const] = ACTIONS(1037), + [sym_cmd_identifier] = ACTIONS(1037), + [anon_sym_def] = ACTIONS(1037), + [anon_sym_export_DASHenv] = ACTIONS(1037), + [anon_sym_extern] = ACTIONS(1037), + [anon_sym_module] = ACTIONS(1037), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_LPAREN] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1037), + [anon_sym_error] = ACTIONS(1037), + [anon_sym_list] = ACTIONS(1037), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_break] = ACTIONS(1037), + [anon_sym_continue] = ACTIONS(1037), + [anon_sym_for] = ACTIONS(1037), + [anon_sym_in] = ACTIONS(1037), + [anon_sym_loop] = ACTIONS(1037), + [anon_sym_make] = ACTIONS(1037), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_do] = ACTIONS(1037), + [anon_sym_if] = ACTIONS(1037), + [anon_sym_else] = ACTIONS(1037), + [anon_sym_match] = ACTIONS(1037), + [anon_sym_RBRACE] = ACTIONS(1037), + [anon_sym_try] = ACTIONS(1037), + [anon_sym_catch] = ACTIONS(1037), + [anon_sym_return] = ACTIONS(1037), + [anon_sym_source] = ACTIONS(1037), + [anon_sym_source_DASHenv] = ACTIONS(1037), + [anon_sym_register] = ACTIONS(1037), + [anon_sym_hide] = ACTIONS(1037), + [anon_sym_hide_DASHenv] = ACTIONS(1037), + [anon_sym_overlay] = ACTIONS(1037), + [anon_sym_new] = ACTIONS(1037), + [anon_sym_as] = ACTIONS(1037), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_STAR_STAR] = ACTIONS(1037), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1037), + [anon_sym_mod] = ACTIONS(1037), + [anon_sym_SLASH_SLASH] = ACTIONS(1037), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_bit_DASHshl] = ACTIONS(1037), + [anon_sym_bit_DASHshr] = ACTIONS(1037), + [anon_sym_EQ_EQ] = ACTIONS(1037), + [anon_sym_BANG_EQ] = ACTIONS(1037), + [anon_sym_LT2] = ACTIONS(1037), + [anon_sym_LT_EQ] = ACTIONS(1037), + [anon_sym_GT_EQ] = ACTIONS(1037), + [anon_sym_not_DASHin] = ACTIONS(1037), + [anon_sym_starts_DASHwith] = ACTIONS(1037), + [anon_sym_ends_DASHwith] = ACTIONS(1037), + [anon_sym_EQ_TILDE] = ACTIONS(1037), + [anon_sym_BANG_TILDE] = ACTIONS(1037), + [anon_sym_bit_DASHand] = ACTIONS(1037), + [anon_sym_bit_DASHxor] = ACTIONS(1037), + [anon_sym_bit_DASHor] = ACTIONS(1037), + [anon_sym_and] = ACTIONS(1037), + [anon_sym_xor] = ACTIONS(1037), + [anon_sym_or] = ACTIONS(1037), + [anon_sym_DOT] = ACTIONS(1039), + [aux_sym__val_number_decimal_token1] = ACTIONS(1037), + [aux_sym__val_number_decimal_token2] = ACTIONS(1037), + [anon_sym_DOT2] = ACTIONS(1037), + [aux_sym__val_number_decimal_token3] = ACTIONS(1037), + [aux_sym__val_number_token1] = ACTIONS(1037), + [aux_sym__val_number_token2] = ACTIONS(1037), + [aux_sym__val_number_token3] = ACTIONS(1037), + [aux_sym__val_number_token4] = ACTIONS(1037), + [aux_sym__val_number_token5] = ACTIONS(1037), + [aux_sym__val_number_token6] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1037), + [sym__str_single_quotes] = ACTIONS(1037), + [sym__str_back_ticks] = ACTIONS(1037), + [sym__entry_separator] = ACTIONS(1039), + [aux_sym__record_key_token2] = ACTIONS(1037), [anon_sym_POUND] = ACTIONS(113), }, [592] = { [sym_comment] = STATE(592), - [anon_sym_export] = ACTIONS(1461), - [anon_sym_alias] = ACTIONS(1461), - [anon_sym_EQ] = ACTIONS(1463), - [anon_sym_let] = ACTIONS(1461), - [anon_sym_let_DASHenv] = ACTIONS(1461), - [anon_sym_mut] = ACTIONS(1461), - [anon_sym_const] = ACTIONS(1461), - [anon_sym_SEMI] = ACTIONS(1158), - [sym_cmd_identifier] = ACTIONS(1461), - [anon_sym_LF] = ACTIONS(1160), - [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_COLON] = ACTIONS(1465), - [anon_sym_COMMA] = ACTIONS(1467), - [anon_sym_LPAREN] = ACTIONS(1461), - [anon_sym_PIPE] = ACTIONS(1158), - [anon_sym_DOLLAR] = ACTIONS(1461), - [anon_sym_error] = ACTIONS(1461), - [anon_sym_list] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_break] = ACTIONS(1461), - [anon_sym_continue] = ACTIONS(1461), - [anon_sym_for] = ACTIONS(1461), - [anon_sym_in] = ACTIONS(1469), - [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(1469), - [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_new] = ACTIONS(1461), - [anon_sym_as] = ACTIONS(1461), - [anon_sym_STAR] = ACTIONS(1158), - [anon_sym_PLUS_EQ] = ACTIONS(1463), - [anon_sym_DASH_EQ] = ACTIONS(1463), - [anon_sym_STAR_EQ] = ACTIONS(1463), - [anon_sym_SLASH_EQ] = ACTIONS(1463), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1463), - [anon_sym_STAR_STAR] = ACTIONS(1158), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_SLASH] = ACTIONS(1158), - [anon_sym_mod] = ACTIONS(1158), - [anon_sym_SLASH_SLASH] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_bit_DASHshl] = ACTIONS(1158), - [anon_sym_bit_DASHshr] = ACTIONS(1158), - [anon_sym_EQ_EQ] = ACTIONS(1158), - [anon_sym_BANG_EQ] = ACTIONS(1158), - [anon_sym_LT2] = ACTIONS(1158), - [anon_sym_LT_EQ] = ACTIONS(1158), - [anon_sym_GT_EQ] = ACTIONS(1158), - [anon_sym_not_DASHin] = ACTIONS(1158), - [anon_sym_starts_DASHwith] = ACTIONS(1158), - [anon_sym_ends_DASHwith] = ACTIONS(1158), - [anon_sym_EQ_TILDE] = ACTIONS(1158), - [anon_sym_BANG_TILDE] = ACTIONS(1158), - [anon_sym_bit_DASHand] = ACTIONS(1158), - [anon_sym_bit_DASHxor] = ACTIONS(1158), - [anon_sym_bit_DASHor] = ACTIONS(1158), - [anon_sym_and] = ACTIONS(1158), - [anon_sym_xor] = ACTIONS(1158), - [anon_sym_or] = ACTIONS(1158), - [anon_sym_DOT_DOT2] = ACTIONS(1472), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1474), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1474), - [aux_sym__val_number_decimal_token1] = ACTIONS(1461), - [aux_sym__val_number_decimal_token2] = ACTIONS(1461), - [anon_sym_DOT2] = ACTIONS(1461), - [aux_sym__val_number_decimal_token3] = 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), - [aux_sym__record_key_token2] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(938), + [anon_sym_alias] = ACTIONS(938), + [anon_sym_let] = ACTIONS(938), + [anon_sym_let_DASHenv] = ACTIONS(938), + [anon_sym_mut] = ACTIONS(938), + [anon_sym_const] = ACTIONS(938), + [sym_cmd_identifier] = ACTIONS(938), + [anon_sym_def] = ACTIONS(938), + [anon_sym_export_DASHenv] = ACTIONS(938), + [anon_sym_extern] = ACTIONS(938), + [anon_sym_module] = ACTIONS(938), + [anon_sym_use] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(938), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_error] = ACTIONS(938), + [anon_sym_list] = ACTIONS(938), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_break] = ACTIONS(938), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_for] = ACTIONS(938), + [anon_sym_in] = ACTIONS(938), + [anon_sym_loop] = ACTIONS(938), + [anon_sym_make] = ACTIONS(938), + [anon_sym_while] = ACTIONS(938), + [anon_sym_do] = ACTIONS(938), + [anon_sym_if] = ACTIONS(938), + [anon_sym_else] = ACTIONS(938), + [anon_sym_match] = ACTIONS(938), + [anon_sym_RBRACE] = ACTIONS(938), + [anon_sym_try] = ACTIONS(938), + [anon_sym_catch] = ACTIONS(938), + [anon_sym_return] = ACTIONS(938), + [anon_sym_source] = ACTIONS(938), + [anon_sym_source_DASHenv] = ACTIONS(938), + [anon_sym_register] = ACTIONS(938), + [anon_sym_hide] = ACTIONS(938), + [anon_sym_hide_DASHenv] = ACTIONS(938), + [anon_sym_overlay] = ACTIONS(938), + [anon_sym_new] = ACTIONS(938), + [anon_sym_as] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_STAR_STAR] = ACTIONS(938), + [anon_sym_PLUS_PLUS] = ACTIONS(938), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(938), + [anon_sym_SLASH_SLASH] = ACTIONS(938), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_bit_DASHshl] = ACTIONS(938), + [anon_sym_bit_DASHshr] = ACTIONS(938), + [anon_sym_EQ_EQ] = ACTIONS(938), + [anon_sym_BANG_EQ] = ACTIONS(938), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(938), + [anon_sym_GT_EQ] = ACTIONS(938), + [anon_sym_not_DASHin] = ACTIONS(938), + [anon_sym_starts_DASHwith] = ACTIONS(938), + [anon_sym_ends_DASHwith] = ACTIONS(938), + [anon_sym_EQ_TILDE] = ACTIONS(938), + [anon_sym_BANG_TILDE] = ACTIONS(938), + [anon_sym_bit_DASHand] = ACTIONS(938), + [anon_sym_bit_DASHxor] = ACTIONS(938), + [anon_sym_bit_DASHor] = ACTIONS(938), + [anon_sym_and] = ACTIONS(938), + [anon_sym_xor] = ACTIONS(938), + [anon_sym_or] = ACTIONS(938), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(938), + [anon_sym_DOT2] = ACTIONS(938), + [aux_sym__val_number_decimal_token3] = ACTIONS(938), + [aux_sym__val_number_token1] = ACTIONS(938), + [aux_sym__val_number_token2] = ACTIONS(938), + [aux_sym__val_number_token3] = ACTIONS(938), + [aux_sym__val_number_token4] = ACTIONS(938), + [aux_sym__val_number_token5] = ACTIONS(938), + [aux_sym__val_number_token6] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym__str_single_quotes] = ACTIONS(938), + [sym__str_back_ticks] = ACTIONS(938), + [sym__entry_separator] = ACTIONS(940), + [aux_sym__record_key_token2] = ACTIONS(938), + [aux_sym_unquoted_token5] = ACTIONS(1359), [anon_sym_POUND] = ACTIONS(113), }, [593] = { [sym_comment] = STATE(593), - [ts_builtin_sym_end] = ACTIONS(1065), - [anon_sym_export] = ACTIONS(1063), - [anon_sym_alias] = ACTIONS(1063), - [anon_sym_let] = ACTIONS(1063), - [anon_sym_let_DASHenv] = ACTIONS(1063), - [anon_sym_mut] = ACTIONS(1063), - [anon_sym_const] = ACTIONS(1063), - [anon_sym_SEMI] = ACTIONS(1063), - [sym_cmd_identifier] = ACTIONS(1063), - [anon_sym_LF] = ACTIONS(1065), - [anon_sym_def] = ACTIONS(1063), - [anon_sym_export_DASHenv] = ACTIONS(1063), - [anon_sym_extern] = ACTIONS(1063), - [anon_sym_module] = ACTIONS(1063), - [anon_sym_use] = ACTIONS(1063), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_error] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_break] = ACTIONS(1063), - [anon_sym_continue] = ACTIONS(1063), - [anon_sym_for] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1063), - [anon_sym_loop] = ACTIONS(1063), - [anon_sym_while] = ACTIONS(1063), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_if] = ACTIONS(1063), - [anon_sym_match] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1063), - [anon_sym_return] = ACTIONS(1063), - [anon_sym_source] = ACTIONS(1063), - [anon_sym_source_DASHenv] = ACTIONS(1063), - [anon_sym_register] = ACTIONS(1063), - [anon_sym_hide] = ACTIONS(1063), - [anon_sym_hide_DASHenv] = ACTIONS(1063), - [anon_sym_overlay] = ACTIONS(1063), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_where] = ACTIONS(1063), - [anon_sym_QMARK2] = ACTIONS(1063), - [anon_sym_STAR_STAR] = ACTIONS(1063), - [anon_sym_PLUS_PLUS] = ACTIONS(1063), - [anon_sym_SLASH] = ACTIONS(1063), - [anon_sym_mod] = ACTIONS(1063), - [anon_sym_SLASH_SLASH] = ACTIONS(1063), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_bit_DASHshl] = ACTIONS(1063), - [anon_sym_bit_DASHshr] = ACTIONS(1063), - [anon_sym_EQ_EQ] = ACTIONS(1063), - [anon_sym_BANG_EQ] = ACTIONS(1063), - [anon_sym_LT2] = ACTIONS(1063), - [anon_sym_LT_EQ] = ACTIONS(1063), - [anon_sym_GT_EQ] = ACTIONS(1063), - [anon_sym_not_DASHin] = ACTIONS(1063), - [anon_sym_starts_DASHwith] = ACTIONS(1063), - [anon_sym_ends_DASHwith] = ACTIONS(1063), - [anon_sym_EQ_TILDE] = ACTIONS(1063), - [anon_sym_BANG_TILDE] = ACTIONS(1063), - [anon_sym_bit_DASHand] = ACTIONS(1063), - [anon_sym_bit_DASHxor] = ACTIONS(1063), - [anon_sym_bit_DASHor] = ACTIONS(1063), - [anon_sym_and] = ACTIONS(1063), - [anon_sym_xor] = ACTIONS(1063), - [anon_sym_or] = ACTIONS(1063), - [anon_sym_not] = ACTIONS(1063), - [anon_sym_DOT] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1063), - [anon_sym_DOT_DOT_LT] = ACTIONS(1063), - [anon_sym_null] = ACTIONS(1063), - [anon_sym_true] = ACTIONS(1063), - [anon_sym_false] = ACTIONS(1063), - [aux_sym__val_number_decimal_token1] = ACTIONS(1063), - [aux_sym__val_number_decimal_token2] = ACTIONS(1063), - [anon_sym_DOT2] = ACTIONS(1063), - [aux_sym__val_number_decimal_token3] = ACTIONS(1063), - [aux_sym__val_number_token1] = ACTIONS(1063), - [aux_sym__val_number_token2] = ACTIONS(1063), - [aux_sym__val_number_token3] = ACTIONS(1063), - [aux_sym__val_number_token4] = ACTIONS(1063), - [aux_sym__val_number_token5] = ACTIONS(1063), - [aux_sym__val_number_token6] = ACTIONS(1063), - [anon_sym_0b] = ACTIONS(1063), - [anon_sym_0o] = ACTIONS(1063), - [anon_sym_0x] = ACTIONS(1063), - [sym_val_date] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [sym__str_single_quotes] = ACTIONS(1063), - [sym__str_back_ticks] = ACTIONS(1063), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1063), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1063), - [anon_sym_CARET] = ACTIONS(1063), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(920), + [anon_sym_alias] = ACTIONS(920), + [anon_sym_let] = ACTIONS(920), + [anon_sym_let_DASHenv] = ACTIONS(920), + [anon_sym_mut] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [sym_cmd_identifier] = ACTIONS(920), + [anon_sym_def] = ACTIONS(920), + [anon_sym_export_DASHenv] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym_module] = ACTIONS(920), + [anon_sym_use] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(922), + [anon_sym_DOLLAR] = ACTIONS(922), + [anon_sym_error] = ACTIONS(920), + [anon_sym_list] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_in] = ACTIONS(920), + [anon_sym_loop] = ACTIONS(920), + [anon_sym_make] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_else] = ACTIONS(920), + [anon_sym_match] = ACTIONS(920), + [anon_sym_RBRACE] = ACTIONS(922), + [anon_sym_try] = ACTIONS(920), + [anon_sym_catch] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_source] = ACTIONS(920), + [anon_sym_source_DASHenv] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_hide] = ACTIONS(920), + [anon_sym_hide_DASHenv] = ACTIONS(920), + [anon_sym_overlay] = ACTIONS(920), + [anon_sym_new] = ACTIONS(920), + [anon_sym_as] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_STAR_STAR] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_mod] = ACTIONS(920), + [anon_sym_SLASH_SLASH] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_bit_DASHshl] = ACTIONS(920), + [anon_sym_bit_DASHshr] = ACTIONS(920), + [anon_sym_EQ_EQ] = ACTIONS(922), + [anon_sym_BANG_EQ] = ACTIONS(922), + [anon_sym_LT2] = ACTIONS(920), + [anon_sym_LT_EQ] = ACTIONS(922), + [anon_sym_GT_EQ] = ACTIONS(922), + [anon_sym_not_DASHin] = ACTIONS(920), + [anon_sym_starts_DASHwith] = ACTIONS(920), + [anon_sym_ends_DASHwith] = ACTIONS(920), + [anon_sym_EQ_TILDE] = ACTIONS(922), + [anon_sym_BANG_TILDE] = ACTIONS(922), + [anon_sym_bit_DASHand] = ACTIONS(920), + [anon_sym_bit_DASHxor] = ACTIONS(920), + [anon_sym_bit_DASHor] = ACTIONS(920), + [anon_sym_and] = ACTIONS(920), + [anon_sym_xor] = ACTIONS(920), + [anon_sym_or] = ACTIONS(920), + [aux_sym__immediate_decimal_token1] = ACTIONS(1524), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(922), + [anon_sym_DOT2] = ACTIONS(922), + [aux_sym__val_number_decimal_token3] = ACTIONS(922), + [aux_sym__val_number_token1] = ACTIONS(922), + [aux_sym__val_number_token2] = ACTIONS(922), + [aux_sym__val_number_token3] = ACTIONS(922), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(922), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(922), + [sym__str_single_quotes] = ACTIONS(922), + [sym__str_back_ticks] = ACTIONS(922), + [aux_sym__record_key_token2] = ACTIONS(920), + [aux_sym_unquoted_token2] = ACTIONS(1526), + [anon_sym_POUND] = ACTIONS(3), }, [594] = { [sym_comment] = STATE(594), - [ts_builtin_sym_end] = ACTIONS(1072), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_alias] = ACTIONS(1070), - [anon_sym_let] = ACTIONS(1070), - [anon_sym_let_DASHenv] = ACTIONS(1070), - [anon_sym_mut] = ACTIONS(1070), - [anon_sym_const] = ACTIONS(1070), - [anon_sym_SEMI] = ACTIONS(1070), - [sym_cmd_identifier] = ACTIONS(1070), - [anon_sym_LF] = ACTIONS(1072), - [anon_sym_def] = ACTIONS(1070), - [anon_sym_export_DASHenv] = ACTIONS(1070), - [anon_sym_extern] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_use] = ACTIONS(1070), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_error] = ACTIONS(1070), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_in] = ACTIONS(1070), - [anon_sym_loop] = ACTIONS(1070), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_do] = ACTIONS(1070), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_match] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_try] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_source] = ACTIONS(1070), - [anon_sym_source_DASHenv] = ACTIONS(1070), - [anon_sym_register] = ACTIONS(1070), - [anon_sym_hide] = ACTIONS(1070), - [anon_sym_hide_DASHenv] = ACTIONS(1070), - [anon_sym_overlay] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_where] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(1476), - [anon_sym_STAR_STAR] = ACTIONS(1070), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_mod] = ACTIONS(1070), - [anon_sym_SLASH_SLASH] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_bit_DASHshl] = ACTIONS(1070), - [anon_sym_bit_DASHshr] = ACTIONS(1070), - [anon_sym_EQ_EQ] = ACTIONS(1070), - [anon_sym_BANG_EQ] = ACTIONS(1070), - [anon_sym_LT2] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1070), - [anon_sym_GT_EQ] = ACTIONS(1070), - [anon_sym_not_DASHin] = ACTIONS(1070), - [anon_sym_starts_DASHwith] = ACTIONS(1070), - [anon_sym_ends_DASHwith] = ACTIONS(1070), - [anon_sym_EQ_TILDE] = ACTIONS(1070), - [anon_sym_BANG_TILDE] = ACTIONS(1070), - [anon_sym_bit_DASHand] = ACTIONS(1070), - [anon_sym_bit_DASHxor] = ACTIONS(1070), - [anon_sym_bit_DASHor] = ACTIONS(1070), - [anon_sym_and] = ACTIONS(1070), - [anon_sym_xor] = ACTIONS(1070), - [anon_sym_or] = ACTIONS(1070), - [anon_sym_not] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_null] = ACTIONS(1070), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1070), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), - [anon_sym_CARET] = ACTIONS(1070), + [anon_sym_export] = ACTIONS(1155), + [anon_sym_alias] = ACTIONS(1155), + [anon_sym_let] = ACTIONS(1155), + [anon_sym_let_DASHenv] = ACTIONS(1155), + [anon_sym_mut] = ACTIONS(1155), + [anon_sym_const] = ACTIONS(1155), + [sym_cmd_identifier] = ACTIONS(1155), + [anon_sym_def] = ACTIONS(1155), + [anon_sym_export_DASHenv] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1155), + [anon_sym_module] = ACTIONS(1155), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_LPAREN] = ACTIONS(1155), + [anon_sym_DOLLAR] = ACTIONS(1155), + [anon_sym_error] = ACTIONS(1155), + [anon_sym_list] = ACTIONS(1155), + [anon_sym_GT] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_break] = ACTIONS(1155), + [anon_sym_continue] = ACTIONS(1155), + [anon_sym_for] = ACTIONS(1155), + [anon_sym_in] = ACTIONS(1155), + [anon_sym_loop] = ACTIONS(1155), + [anon_sym_make] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(1155), + [anon_sym_do] = ACTIONS(1155), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_else] = ACTIONS(1155), + [anon_sym_match] = ACTIONS(1155), + [anon_sym_RBRACE] = ACTIONS(1155), + [anon_sym_try] = ACTIONS(1155), + [anon_sym_catch] = ACTIONS(1155), + [anon_sym_return] = ACTIONS(1155), + [anon_sym_source] = ACTIONS(1155), + [anon_sym_source_DASHenv] = ACTIONS(1155), + [anon_sym_register] = ACTIONS(1155), + [anon_sym_hide] = ACTIONS(1155), + [anon_sym_hide_DASHenv] = ACTIONS(1155), + [anon_sym_overlay] = ACTIONS(1155), + [anon_sym_new] = ACTIONS(1155), + [anon_sym_as] = ACTIONS(1155), + [anon_sym_STAR] = ACTIONS(1155), + [anon_sym_STAR_STAR] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(1155), + [anon_sym_mod] = ACTIONS(1155), + [anon_sym_SLASH_SLASH] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_bit_DASHshl] = ACTIONS(1155), + [anon_sym_bit_DASHshr] = ACTIONS(1155), + [anon_sym_EQ_EQ] = ACTIONS(1155), + [anon_sym_BANG_EQ] = ACTIONS(1155), + [anon_sym_LT2] = ACTIONS(1155), + [anon_sym_LT_EQ] = ACTIONS(1155), + [anon_sym_GT_EQ] = ACTIONS(1155), + [anon_sym_not_DASHin] = ACTIONS(1155), + [anon_sym_starts_DASHwith] = ACTIONS(1155), + [anon_sym_ends_DASHwith] = ACTIONS(1155), + [anon_sym_EQ_TILDE] = ACTIONS(1155), + [anon_sym_BANG_TILDE] = ACTIONS(1155), + [anon_sym_bit_DASHand] = ACTIONS(1155), + [anon_sym_bit_DASHxor] = ACTIONS(1155), + [anon_sym_bit_DASHor] = ACTIONS(1155), + [anon_sym_and] = ACTIONS(1155), + [anon_sym_xor] = ACTIONS(1155), + [anon_sym_or] = ACTIONS(1155), + [aux_sym__val_number_decimal_token1] = ACTIONS(1155), + [aux_sym__val_number_decimal_token2] = ACTIONS(1155), + [anon_sym_DOT2] = ACTIONS(1155), + [aux_sym__val_number_decimal_token3] = ACTIONS(1155), + [aux_sym__val_number_token1] = ACTIONS(1155), + [aux_sym__val_number_token2] = ACTIONS(1155), + [aux_sym__val_number_token3] = ACTIONS(1155), + [aux_sym__val_number_token4] = ACTIONS(1155), + [aux_sym__val_number_token5] = ACTIONS(1155), + [aux_sym__val_number_token6] = ACTIONS(1155), + [anon_sym_DQUOTE] = ACTIONS(1155), + [sym__str_single_quotes] = ACTIONS(1155), + [sym__str_back_ticks] = ACTIONS(1155), + [sym__entry_separator] = ACTIONS(1157), + [aux_sym__record_key_token2] = ACTIONS(1155), + [aux_sym_unquoted_token6] = ACTIONS(1155), [anon_sym_POUND] = ACTIONS(113), }, [595] = { [sym_comment] = STATE(595), - [ts_builtin_sym_end] = ACTIONS(1072), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_alias] = ACTIONS(1070), - [anon_sym_let] = ACTIONS(1070), - [anon_sym_let_DASHenv] = ACTIONS(1070), - [anon_sym_mut] = ACTIONS(1070), - [anon_sym_const] = ACTIONS(1070), - [anon_sym_SEMI] = ACTIONS(1070), - [sym_cmd_identifier] = ACTIONS(1070), - [anon_sym_LF] = ACTIONS(1072), - [anon_sym_def] = ACTIONS(1070), - [anon_sym_export_DASHenv] = ACTIONS(1070), - [anon_sym_extern] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_use] = ACTIONS(1070), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_error] = ACTIONS(1070), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_in] = ACTIONS(1070), - [anon_sym_loop] = ACTIONS(1070), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_do] = ACTIONS(1070), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_match] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_try] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_source] = ACTIONS(1070), - [anon_sym_source_DASHenv] = ACTIONS(1070), - [anon_sym_register] = ACTIONS(1070), - [anon_sym_hide] = ACTIONS(1070), - [anon_sym_hide_DASHenv] = ACTIONS(1070), - [anon_sym_overlay] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_where] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(1476), - [anon_sym_STAR_STAR] = ACTIONS(1070), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_mod] = ACTIONS(1070), - [anon_sym_SLASH_SLASH] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_bit_DASHshl] = ACTIONS(1070), - [anon_sym_bit_DASHshr] = ACTIONS(1070), - [anon_sym_EQ_EQ] = ACTIONS(1070), - [anon_sym_BANG_EQ] = ACTIONS(1070), - [anon_sym_LT2] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1070), - [anon_sym_GT_EQ] = ACTIONS(1070), - [anon_sym_not_DASHin] = ACTIONS(1070), - [anon_sym_starts_DASHwith] = ACTIONS(1070), - [anon_sym_ends_DASHwith] = ACTIONS(1070), - [anon_sym_EQ_TILDE] = ACTIONS(1070), - [anon_sym_BANG_TILDE] = ACTIONS(1070), - [anon_sym_bit_DASHand] = ACTIONS(1070), - [anon_sym_bit_DASHxor] = ACTIONS(1070), - [anon_sym_bit_DASHor] = ACTIONS(1070), - [anon_sym_and] = ACTIONS(1070), - [anon_sym_xor] = ACTIONS(1070), - [anon_sym_or] = ACTIONS(1070), - [anon_sym_not] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_null] = ACTIONS(1070), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1070), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), - [anon_sym_CARET] = ACTIONS(1070), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_alias] = ACTIONS(1159), + [anon_sym_let] = ACTIONS(1159), + [anon_sym_let_DASHenv] = ACTIONS(1159), + [anon_sym_mut] = ACTIONS(1159), + [anon_sym_const] = ACTIONS(1159), + [sym_cmd_identifier] = ACTIONS(1159), + [anon_sym_def] = ACTIONS(1159), + [anon_sym_export_DASHenv] = ACTIONS(1159), + [anon_sym_extern] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_use] = ACTIONS(1159), + [anon_sym_LPAREN] = ACTIONS(1159), + [anon_sym_DOLLAR] = ACTIONS(1159), + [anon_sym_error] = ACTIONS(1159), + [anon_sym_list] = ACTIONS(1159), + [anon_sym_GT] = ACTIONS(1159), + [anon_sym_DASH] = ACTIONS(1159), + [anon_sym_break] = ACTIONS(1159), + [anon_sym_continue] = ACTIONS(1159), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_in] = ACTIONS(1159), + [anon_sym_loop] = ACTIONS(1159), + [anon_sym_make] = ACTIONS(1159), + [anon_sym_while] = ACTIONS(1159), + [anon_sym_do] = ACTIONS(1159), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_else] = ACTIONS(1159), + [anon_sym_match] = ACTIONS(1159), + [anon_sym_RBRACE] = ACTIONS(1159), + [anon_sym_try] = ACTIONS(1159), + [anon_sym_catch] = ACTIONS(1159), + [anon_sym_return] = ACTIONS(1159), + [anon_sym_source] = ACTIONS(1159), + [anon_sym_source_DASHenv] = ACTIONS(1159), + [anon_sym_register] = ACTIONS(1159), + [anon_sym_hide] = ACTIONS(1159), + [anon_sym_hide_DASHenv] = ACTIONS(1159), + [anon_sym_overlay] = ACTIONS(1159), + [anon_sym_new] = ACTIONS(1159), + [anon_sym_as] = ACTIONS(1159), + [anon_sym_STAR] = ACTIONS(1159), + [anon_sym_STAR_STAR] = ACTIONS(1159), + [anon_sym_PLUS_PLUS] = ACTIONS(1159), + [anon_sym_SLASH] = ACTIONS(1159), + [anon_sym_mod] = ACTIONS(1159), + [anon_sym_SLASH_SLASH] = ACTIONS(1159), + [anon_sym_PLUS] = ACTIONS(1159), + [anon_sym_bit_DASHshl] = ACTIONS(1159), + [anon_sym_bit_DASHshr] = ACTIONS(1159), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_LT2] = ACTIONS(1159), + [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_not_DASHin] = ACTIONS(1159), + [anon_sym_starts_DASHwith] = ACTIONS(1159), + [anon_sym_ends_DASHwith] = ACTIONS(1159), + [anon_sym_EQ_TILDE] = ACTIONS(1159), + [anon_sym_BANG_TILDE] = ACTIONS(1159), + [anon_sym_bit_DASHand] = ACTIONS(1159), + [anon_sym_bit_DASHxor] = ACTIONS(1159), + [anon_sym_bit_DASHor] = ACTIONS(1159), + [anon_sym_and] = ACTIONS(1159), + [anon_sym_xor] = ACTIONS(1159), + [anon_sym_or] = ACTIONS(1159), + [aux_sym__val_number_decimal_token1] = ACTIONS(1159), + [aux_sym__val_number_decimal_token2] = ACTIONS(1159), + [anon_sym_DOT2] = ACTIONS(1159), + [aux_sym__val_number_decimal_token3] = ACTIONS(1159), + [aux_sym__val_number_token1] = ACTIONS(1159), + [aux_sym__val_number_token2] = ACTIONS(1159), + [aux_sym__val_number_token3] = ACTIONS(1159), + [aux_sym__val_number_token4] = ACTIONS(1159), + [aux_sym__val_number_token5] = ACTIONS(1159), + [aux_sym__val_number_token6] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(1159), + [sym__str_single_quotes] = ACTIONS(1159), + [sym__str_back_ticks] = ACTIONS(1159), + [sym__entry_separator] = ACTIONS(1161), + [aux_sym__record_key_token2] = ACTIONS(1159), + [aux_sym_unquoted_token6] = ACTIONS(1163), [anon_sym_POUND] = ACTIONS(113), }, [596] = { [sym_comment] = STATE(596), - [ts_builtin_sym_end] = ACTIONS(961), - [anon_sym_export] = ACTIONS(959), - [anon_sym_alias] = ACTIONS(959), - [anon_sym_let] = ACTIONS(959), - [anon_sym_let_DASHenv] = ACTIONS(959), - [anon_sym_mut] = ACTIONS(959), - [anon_sym_const] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(959), - [sym_cmd_identifier] = ACTIONS(959), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_def] = ACTIONS(959), - [anon_sym_export_DASHenv] = ACTIONS(959), - [anon_sym_extern] = ACTIONS(959), - [anon_sym_module] = ACTIONS(959), - [anon_sym_use] = ACTIONS(959), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_error] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH_DASH] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_break] = ACTIONS(959), - [anon_sym_continue] = ACTIONS(959), - [anon_sym_for] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_loop] = ACTIONS(959), - [anon_sym_while] = ACTIONS(959), - [anon_sym_do] = ACTIONS(959), - [anon_sym_if] = ACTIONS(959), - [anon_sym_match] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_try] = ACTIONS(959), - [anon_sym_return] = ACTIONS(959), - [anon_sym_source] = ACTIONS(959), - [anon_sym_source_DASHenv] = ACTIONS(959), - [anon_sym_register] = ACTIONS(959), - [anon_sym_hide] = ACTIONS(959), - [anon_sym_hide_DASHenv] = ACTIONS(959), - [anon_sym_overlay] = ACTIONS(959), - [anon_sym_as] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_where] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(959), - [anon_sym_PLUS_PLUS] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(959), - [anon_sym_SLASH_SLASH] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(959), - [anon_sym_bit_DASHshr] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(959), - [anon_sym_BANG_EQ] = ACTIONS(959), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(959), - [anon_sym_GT_EQ] = ACTIONS(959), - [anon_sym_not_DASHin] = ACTIONS(959), - [anon_sym_starts_DASHwith] = ACTIONS(959), - [anon_sym_ends_DASHwith] = ACTIONS(959), - [anon_sym_EQ_TILDE] = ACTIONS(959), - [anon_sym_BANG_TILDE] = ACTIONS(959), - [anon_sym_bit_DASHand] = ACTIONS(959), - [anon_sym_bit_DASHxor] = ACTIONS(959), - [anon_sym_bit_DASHor] = ACTIONS(959), - [anon_sym_and] = ACTIONS(959), - [anon_sym_xor] = ACTIONS(959), - [anon_sym_or] = ACTIONS(959), - [anon_sym_not] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_DOT_DOT_LT] = ACTIONS(959), - [anon_sym_null] = ACTIONS(959), - [anon_sym_true] = ACTIONS(959), - [anon_sym_false] = ACTIONS(959), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(959), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(959), - [aux_sym__val_number_token1] = ACTIONS(959), - [aux_sym__val_number_token2] = ACTIONS(959), - [aux_sym__val_number_token3] = ACTIONS(959), - [aux_sym__val_number_token4] = ACTIONS(959), - [aux_sym__val_number_token5] = ACTIONS(959), - [aux_sym__val_number_token6] = ACTIONS(959), - [anon_sym_0b] = ACTIONS(959), - [anon_sym_0o] = ACTIONS(959), - [anon_sym_0x] = ACTIONS(959), - [sym_val_date] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [sym__str_single_quotes] = ACTIONS(959), - [sym__str_back_ticks] = ACTIONS(959), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(959), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(959), - [anon_sym_CARET] = ACTIONS(959), + [anon_sym_export] = ACTIONS(1041), + [anon_sym_alias] = ACTIONS(1041), + [anon_sym_let] = ACTIONS(1041), + [anon_sym_let_DASHenv] = ACTIONS(1041), + [anon_sym_mut] = ACTIONS(1041), + [anon_sym_const] = ACTIONS(1041), + [sym_cmd_identifier] = ACTIONS(1041), + [anon_sym_def] = ACTIONS(1041), + [anon_sym_export_DASHenv] = ACTIONS(1041), + [anon_sym_extern] = ACTIONS(1041), + [anon_sym_module] = ACTIONS(1041), + [anon_sym_use] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1041), + [anon_sym_DOLLAR] = ACTIONS(1041), + [anon_sym_error] = ACTIONS(1041), + [anon_sym_list] = ACTIONS(1041), + [anon_sym_GT] = ACTIONS(1041), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_break] = ACTIONS(1041), + [anon_sym_continue] = ACTIONS(1041), + [anon_sym_for] = ACTIONS(1041), + [anon_sym_in] = ACTIONS(1041), + [anon_sym_loop] = ACTIONS(1041), + [anon_sym_make] = ACTIONS(1041), + [anon_sym_while] = ACTIONS(1041), + [anon_sym_do] = ACTIONS(1041), + [anon_sym_if] = ACTIONS(1041), + [anon_sym_else] = ACTIONS(1041), + [anon_sym_match] = ACTIONS(1041), + [anon_sym_RBRACE] = ACTIONS(1041), + [anon_sym_try] = ACTIONS(1041), + [anon_sym_catch] = ACTIONS(1041), + [anon_sym_return] = ACTIONS(1041), + [anon_sym_source] = ACTIONS(1041), + [anon_sym_source_DASHenv] = ACTIONS(1041), + [anon_sym_register] = ACTIONS(1041), + [anon_sym_hide] = ACTIONS(1041), + [anon_sym_hide_DASHenv] = ACTIONS(1041), + [anon_sym_overlay] = ACTIONS(1041), + [anon_sym_new] = ACTIONS(1041), + [anon_sym_as] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_STAR_STAR] = ACTIONS(1041), + [anon_sym_PLUS_PLUS] = ACTIONS(1041), + [anon_sym_SLASH] = ACTIONS(1041), + [anon_sym_mod] = ACTIONS(1041), + [anon_sym_SLASH_SLASH] = ACTIONS(1041), + [anon_sym_PLUS] = ACTIONS(1041), + [anon_sym_bit_DASHshl] = ACTIONS(1041), + [anon_sym_bit_DASHshr] = ACTIONS(1041), + [anon_sym_EQ_EQ] = ACTIONS(1041), + [anon_sym_BANG_EQ] = ACTIONS(1041), + [anon_sym_LT2] = ACTIONS(1041), + [anon_sym_LT_EQ] = ACTIONS(1041), + [anon_sym_GT_EQ] = ACTIONS(1041), + [anon_sym_not_DASHin] = ACTIONS(1041), + [anon_sym_starts_DASHwith] = ACTIONS(1041), + [anon_sym_ends_DASHwith] = ACTIONS(1041), + [anon_sym_EQ_TILDE] = ACTIONS(1041), + [anon_sym_BANG_TILDE] = ACTIONS(1041), + [anon_sym_bit_DASHand] = ACTIONS(1041), + [anon_sym_bit_DASHxor] = ACTIONS(1041), + [anon_sym_bit_DASHor] = ACTIONS(1041), + [anon_sym_and] = ACTIONS(1041), + [anon_sym_xor] = ACTIONS(1041), + [anon_sym_or] = ACTIONS(1041), + [anon_sym_DOT] = ACTIONS(1043), + [aux_sym__val_number_decimal_token1] = ACTIONS(1041), + [aux_sym__val_number_decimal_token2] = ACTIONS(1041), + [anon_sym_DOT2] = ACTIONS(1041), + [aux_sym__val_number_decimal_token3] = ACTIONS(1041), + [aux_sym__val_number_token1] = ACTIONS(1041), + [aux_sym__val_number_token2] = ACTIONS(1041), + [aux_sym__val_number_token3] = ACTIONS(1041), + [aux_sym__val_number_token4] = ACTIONS(1041), + [aux_sym__val_number_token5] = ACTIONS(1041), + [aux_sym__val_number_token6] = ACTIONS(1041), + [anon_sym_DQUOTE] = ACTIONS(1041), + [sym__str_single_quotes] = ACTIONS(1041), + [sym__str_back_ticks] = ACTIONS(1041), + [sym__entry_separator] = ACTIONS(1043), + [aux_sym__record_key_token2] = ACTIONS(1041), [anon_sym_POUND] = ACTIONS(113), }, [597] = { [sym_comment] = STATE(597), - [ts_builtin_sym_end] = ACTIONS(1160), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_alias] = ACTIONS(1158), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_let_DASHenv] = ACTIONS(1158), - [anon_sym_mut] = ACTIONS(1158), - [anon_sym_const] = ACTIONS(1158), - [anon_sym_SEMI] = ACTIONS(1158), - [sym_cmd_identifier] = ACTIONS(1158), - [anon_sym_LF] = ACTIONS(1160), - [anon_sym_def] = ACTIONS(1158), - [anon_sym_export_DASHenv] = ACTIONS(1158), - [anon_sym_extern] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_use] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_LPAREN] = ACTIONS(1158), - [anon_sym_DOLLAR] = ACTIONS(1158), - [anon_sym_error] = ACTIONS(1158), - [anon_sym_GT] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_break] = ACTIONS(1158), - [anon_sym_continue] = ACTIONS(1158), - [anon_sym_for] = ACTIONS(1158), - [anon_sym_in] = ACTIONS(1158), - [anon_sym_loop] = ACTIONS(1158), - [anon_sym_while] = ACTIONS(1158), - [anon_sym_do] = ACTIONS(1158), - [anon_sym_if] = ACTIONS(1158), - [anon_sym_match] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1158), - [anon_sym_DOT_DOT] = ACTIONS(1158), - [anon_sym_try] = ACTIONS(1158), - [anon_sym_return] = ACTIONS(1158), - [anon_sym_source] = ACTIONS(1158), - [anon_sym_source_DASHenv] = ACTIONS(1158), - [anon_sym_register] = ACTIONS(1158), - [anon_sym_hide] = ACTIONS(1158), - [anon_sym_hide_DASHenv] = ACTIONS(1158), - [anon_sym_overlay] = ACTIONS(1158), - [anon_sym_as] = ACTIONS(1158), - [anon_sym_STAR] = ACTIONS(1158), - [anon_sym_where] = ACTIONS(1158), - [anon_sym_STAR_STAR] = ACTIONS(1158), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_SLASH] = ACTIONS(1158), - [anon_sym_mod] = ACTIONS(1158), - [anon_sym_SLASH_SLASH] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1158), - [anon_sym_bit_DASHshl] = ACTIONS(1158), - [anon_sym_bit_DASHshr] = ACTIONS(1158), - [anon_sym_EQ_EQ] = ACTIONS(1158), - [anon_sym_BANG_EQ] = ACTIONS(1158), - [anon_sym_LT2] = ACTIONS(1158), - [anon_sym_LT_EQ] = ACTIONS(1158), - [anon_sym_GT_EQ] = ACTIONS(1158), - [anon_sym_not_DASHin] = ACTIONS(1158), - [anon_sym_starts_DASHwith] = ACTIONS(1158), - [anon_sym_ends_DASHwith] = ACTIONS(1158), - [anon_sym_EQ_TILDE] = ACTIONS(1158), - [anon_sym_BANG_TILDE] = ACTIONS(1158), - [anon_sym_bit_DASHand] = ACTIONS(1158), - [anon_sym_bit_DASHxor] = ACTIONS(1158), - [anon_sym_bit_DASHor] = ACTIONS(1158), - [anon_sym_and] = ACTIONS(1158), - [anon_sym_xor] = ACTIONS(1158), - [anon_sym_or] = ACTIONS(1158), - [anon_sym_not] = ACTIONS(1158), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1158), - [anon_sym_DOT_DOT_LT] = ACTIONS(1158), - [anon_sym_null] = ACTIONS(1158), - [anon_sym_true] = ACTIONS(1158), - [anon_sym_false] = ACTIONS(1158), - [aux_sym__val_number_decimal_token1] = ACTIONS(1158), - [aux_sym__val_number_decimal_token2] = ACTIONS(1158), - [anon_sym_DOT2] = ACTIONS(1158), - [aux_sym__val_number_decimal_token3] = ACTIONS(1158), - [aux_sym__val_number_token1] = ACTIONS(1158), - [aux_sym__val_number_token2] = ACTIONS(1158), - [aux_sym__val_number_token3] = ACTIONS(1158), - [aux_sym__val_number_token4] = ACTIONS(1158), - [aux_sym__val_number_token5] = ACTIONS(1158), - [aux_sym__val_number_token6] = ACTIONS(1158), - [anon_sym_0b] = ACTIONS(1158), - [anon_sym_0o] = ACTIONS(1158), - [anon_sym_0x] = ACTIONS(1158), - [sym_val_date] = ACTIONS(1158), - [anon_sym_DQUOTE] = ACTIONS(1158), - [sym__str_single_quotes] = ACTIONS(1158), - [sym__str_back_ticks] = ACTIONS(1158), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1158), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1158), - [anon_sym_CARET] = ACTIONS(1158), + [anon_sym_export] = ACTIONS(1165), + [anon_sym_alias] = ACTIONS(1165), + [anon_sym_let] = ACTIONS(1165), + [anon_sym_let_DASHenv] = ACTIONS(1165), + [anon_sym_mut] = ACTIONS(1165), + [anon_sym_const] = ACTIONS(1165), + [sym_cmd_identifier] = ACTIONS(1165), + [anon_sym_def] = ACTIONS(1165), + [anon_sym_export_DASHenv] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1165), + [anon_sym_module] = ACTIONS(1165), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_LPAREN] = ACTIONS(1165), + [anon_sym_DOLLAR] = ACTIONS(1165), + [anon_sym_error] = ACTIONS(1165), + [anon_sym_list] = ACTIONS(1165), + [anon_sym_GT] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_break] = ACTIONS(1165), + [anon_sym_continue] = ACTIONS(1165), + [anon_sym_for] = ACTIONS(1165), + [anon_sym_in] = ACTIONS(1165), + [anon_sym_loop] = ACTIONS(1165), + [anon_sym_make] = ACTIONS(1165), + [anon_sym_while] = ACTIONS(1165), + [anon_sym_do] = ACTIONS(1165), + [anon_sym_if] = ACTIONS(1165), + [anon_sym_else] = ACTIONS(1165), + [anon_sym_match] = ACTIONS(1165), + [anon_sym_RBRACE] = ACTIONS(1165), + [anon_sym_try] = ACTIONS(1165), + [anon_sym_catch] = ACTIONS(1165), + [anon_sym_return] = ACTIONS(1165), + [anon_sym_source] = ACTIONS(1165), + [anon_sym_source_DASHenv] = ACTIONS(1165), + [anon_sym_register] = ACTIONS(1165), + [anon_sym_hide] = ACTIONS(1165), + [anon_sym_hide_DASHenv] = ACTIONS(1165), + [anon_sym_overlay] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1165), + [anon_sym_as] = ACTIONS(1165), + [anon_sym_STAR] = ACTIONS(1165), + [anon_sym_STAR_STAR] = ACTIONS(1165), + [anon_sym_PLUS_PLUS] = ACTIONS(1165), + [anon_sym_SLASH] = ACTIONS(1165), + [anon_sym_mod] = ACTIONS(1165), + [anon_sym_SLASH_SLASH] = ACTIONS(1165), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_bit_DASHshl] = ACTIONS(1165), + [anon_sym_bit_DASHshr] = ACTIONS(1165), + [anon_sym_EQ_EQ] = ACTIONS(1165), + [anon_sym_BANG_EQ] = ACTIONS(1165), + [anon_sym_LT2] = ACTIONS(1165), + [anon_sym_LT_EQ] = ACTIONS(1165), + [anon_sym_GT_EQ] = ACTIONS(1165), + [anon_sym_not_DASHin] = ACTIONS(1165), + [anon_sym_starts_DASHwith] = ACTIONS(1165), + [anon_sym_ends_DASHwith] = ACTIONS(1165), + [anon_sym_EQ_TILDE] = ACTIONS(1165), + [anon_sym_BANG_TILDE] = ACTIONS(1165), + [anon_sym_bit_DASHand] = ACTIONS(1165), + [anon_sym_bit_DASHxor] = ACTIONS(1165), + [anon_sym_bit_DASHor] = ACTIONS(1165), + [anon_sym_and] = ACTIONS(1165), + [anon_sym_xor] = ACTIONS(1165), + [anon_sym_or] = ACTIONS(1165), + [aux_sym__val_number_decimal_token1] = ACTIONS(1165), + [aux_sym__val_number_decimal_token2] = ACTIONS(1165), + [anon_sym_DOT2] = ACTIONS(1165), + [aux_sym__val_number_decimal_token3] = ACTIONS(1165), + [aux_sym__val_number_token1] = ACTIONS(1165), + [aux_sym__val_number_token2] = ACTIONS(1165), + [aux_sym__val_number_token3] = ACTIONS(1165), + [aux_sym__val_number_token4] = ACTIONS(1165), + [aux_sym__val_number_token5] = ACTIONS(1165), + [aux_sym__val_number_token6] = ACTIONS(1165), + [anon_sym_DQUOTE] = ACTIONS(1165), + [sym__str_single_quotes] = ACTIONS(1165), + [sym__str_back_ticks] = ACTIONS(1165), + [sym__entry_separator] = ACTIONS(1167), + [aux_sym__record_key_token2] = ACTIONS(1165), [anon_sym_POUND] = ACTIONS(113), }, [598] = { + [sym_pipeline] = STATE(2542), + [sym_pipeline_last] = STATE(9903), + [sym__ctrl_expression] = STATE(8658), + [sym_ctrl_do] = STATE(9613), + [sym_ctrl_if] = STATE(9613), + [sym_ctrl_match] = STATE(9613), + [sym_ctrl_try] = STATE(9613), + [sym_ctrl_return] = STATE(9613), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(9153), + [sym_where_command] = STATE(8524), + [sym__expression] = STATE(8524), + [sym_expr_unary] = STATE(5890), + [sym__expr_unary_minus] = STATE(5878), + [sym_expr_binary] = STATE(5890), + [sym__expr_binary_expression] = STATE(6380), + [sym_expr_parenthesized] = STATE(5154), + [sym_val_range] = STATE(8295), + [sym__value] = STATE(5890), + [sym_val_nothing] = STATE(5931), + [sym_val_bool] = STATE(5931), + [sym_val_variable] = STATE(5103), + [sym__var] = STATE(4428), + [sym_val_number] = STATE(5931), + [sym__val_number_decimal] = STATE(4371), + [sym__val_number] = STATE(5285), + [sym_val_duration] = STATE(5931), + [sym_val_filesize] = STATE(5931), + [sym_val_binary] = STATE(5931), + [sym_val_string] = STATE(5931), + [sym__str_double_quotes] = STATE(5888), + [sym_val_interpolated] = STATE(5931), + [sym__inter_single_quotes] = STATE(5935), + [sym__inter_double_quotes] = STATE(5940), + [sym_val_list] = STATE(5931), + [sym_val_record] = STATE(5931), + [sym_val_table] = STATE(5931), + [sym_val_closure] = STATE(5931), + [sym_command] = STATE(8524), [sym_comment] = STATE(598), - [ts_builtin_sym_end] = ACTIONS(1408), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_alias] = ACTIONS(1406), - [anon_sym_let] = ACTIONS(1406), - [anon_sym_let_DASHenv] = ACTIONS(1406), - [anon_sym_mut] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_SEMI] = ACTIONS(1406), - [sym_cmd_identifier] = ACTIONS(1406), - [anon_sym_LF] = ACTIONS(1408), - [anon_sym_def] = ACTIONS(1406), - [anon_sym_export_DASHenv] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_use] = ACTIONS(1406), - [anon_sym_LBRACK] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1406), - [anon_sym_DOLLAR] = ACTIONS(1406), - [anon_sym_error] = ACTIONS(1406), - [anon_sym_GT] = ACTIONS(1406), - [anon_sym_DASH_DASH] = ACTIONS(1406), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_in] = ACTIONS(1406), - [anon_sym_loop] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_match] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_DOT_DOT] = ACTIONS(1406), - [anon_sym_try] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_source] = ACTIONS(1406), - [anon_sym_source_DASHenv] = ACTIONS(1406), - [anon_sym_register] = ACTIONS(1406), - [anon_sym_hide] = ACTIONS(1406), - [anon_sym_hide_DASHenv] = ACTIONS(1406), - [anon_sym_overlay] = ACTIONS(1406), - [anon_sym_as] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1406), - [anon_sym_where] = ACTIONS(1406), - [anon_sym_STAR_STAR] = ACTIONS(1406), - [anon_sym_PLUS_PLUS] = ACTIONS(1406), - [anon_sym_SLASH] = ACTIONS(1406), - [anon_sym_mod] = ACTIONS(1406), - [anon_sym_SLASH_SLASH] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_bit_DASHshl] = ACTIONS(1406), - [anon_sym_bit_DASHshr] = ACTIONS(1406), - [anon_sym_EQ_EQ] = ACTIONS(1406), - [anon_sym_BANG_EQ] = ACTIONS(1406), - [anon_sym_LT2] = ACTIONS(1406), - [anon_sym_LT_EQ] = ACTIONS(1406), - [anon_sym_GT_EQ] = ACTIONS(1406), - [anon_sym_not_DASHin] = ACTIONS(1406), - [anon_sym_starts_DASHwith] = ACTIONS(1406), - [anon_sym_ends_DASHwith] = ACTIONS(1406), - [anon_sym_EQ_TILDE] = ACTIONS(1406), - [anon_sym_BANG_TILDE] = ACTIONS(1406), - [anon_sym_bit_DASHand] = ACTIONS(1406), - [anon_sym_bit_DASHxor] = ACTIONS(1406), - [anon_sym_bit_DASHor] = ACTIONS(1406), - [anon_sym_and] = ACTIONS(1406), - [anon_sym_xor] = ACTIONS(1406), - [anon_sym_or] = ACTIONS(1406), - [anon_sym_not] = ACTIONS(1406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1406), - [anon_sym_DOT_DOT_LT] = ACTIONS(1406), - [anon_sym_null] = ACTIONS(1406), - [anon_sym_true] = ACTIONS(1406), - [anon_sym_false] = ACTIONS(1406), - [aux_sym__val_number_decimal_token1] = ACTIONS(1406), - [aux_sym__val_number_decimal_token2] = ACTIONS(1406), - [anon_sym_DOT2] = ACTIONS(1406), - [aux_sym__val_number_decimal_token3] = ACTIONS(1406), - [aux_sym__val_number_token1] = ACTIONS(1406), - [aux_sym__val_number_token2] = ACTIONS(1406), - [aux_sym__val_number_token3] = ACTIONS(1406), - [aux_sym__val_number_token4] = ACTIONS(1406), - [aux_sym__val_number_token5] = ACTIONS(1406), - [aux_sym__val_number_token6] = ACTIONS(1406), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1406), - [anon_sym_0x] = ACTIONS(1406), - [sym_val_date] = ACTIONS(1406), - [anon_sym_DQUOTE] = ACTIONS(1406), - [sym__str_single_quotes] = ACTIONS(1406), - [sym__str_back_ticks] = ACTIONS(1406), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1406), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1406), - [anon_sym_CARET] = ACTIONS(1406), - [anon_sym_POUND] = ACTIONS(113), + [aux_sym_pipeline_repeat1] = STATE(766), + [sym_cmd_identifier] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(1528), + [anon_sym_DASH] = ACTIONS(39), + [anon_sym_break] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_match] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_DOT_DOT] = ACTIONS(59), + [anon_sym_try] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_where] = ACTIONS(75), + [anon_sym_not] = ACTIONS(77), + [anon_sym_DOT_DOT_EQ] = ACTIONS(79), + [anon_sym_DOT_DOT_LT] = ACTIONS(79), + [anon_sym_null] = ACTIONS(81), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [aux_sym__val_number_decimal_token1] = ACTIONS(85), + [aux_sym__val_number_decimal_token2] = ACTIONS(87), + [anon_sym_DOT2] = ACTIONS(89), + [aux_sym__val_number_decimal_token3] = ACTIONS(91), + [aux_sym__val_number_token1] = ACTIONS(93), + [aux_sym__val_number_token2] = ACTIONS(93), + [aux_sym__val_number_token3] = ACTIONS(93), + [aux_sym__val_number_token4] = ACTIONS(95), + [aux_sym__val_number_token5] = ACTIONS(93), + [aux_sym__val_number_token6] = ACTIONS(95), + [anon_sym_0b] = ACTIONS(97), + [anon_sym_0o] = ACTIONS(99), + [anon_sym_0x] = ACTIONS(99), + [sym_val_date] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym__str_single_quotes] = ACTIONS(105), + [sym__str_back_ticks] = ACTIONS(105), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(109), + [anon_sym_CARET] = ACTIONS(111), + [anon_sym_POUND] = ACTIONS(3), }, [599] = { [sym_comment] = STATE(599), - [ts_builtin_sym_end] = ACTIONS(1170), - [anon_sym_export] = ACTIONS(1168), - [anon_sym_alias] = ACTIONS(1168), - [anon_sym_let] = ACTIONS(1168), - [anon_sym_let_DASHenv] = ACTIONS(1168), - [anon_sym_mut] = ACTIONS(1168), - [anon_sym_const] = ACTIONS(1168), - [anon_sym_SEMI] = ACTIONS(1168), - [sym_cmd_identifier] = ACTIONS(1168), - [anon_sym_LF] = ACTIONS(1170), - [anon_sym_def] = ACTIONS(1168), - [anon_sym_export_DASHenv] = ACTIONS(1168), - [anon_sym_extern] = ACTIONS(1168), - [anon_sym_module] = ACTIONS(1168), - [anon_sym_use] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_DOLLAR] = ACTIONS(1168), - [anon_sym_error] = ACTIONS(1168), - [anon_sym_GT] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1168), - [anon_sym_break] = ACTIONS(1168), - [anon_sym_continue] = ACTIONS(1168), - [anon_sym_for] = ACTIONS(1168), - [anon_sym_in] = ACTIONS(1168), - [anon_sym_loop] = ACTIONS(1168), - [anon_sym_while] = ACTIONS(1168), - [anon_sym_do] = ACTIONS(1168), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_match] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1168), - [anon_sym_DOT_DOT] = ACTIONS(1168), - [anon_sym_try] = ACTIONS(1168), - [anon_sym_return] = ACTIONS(1168), - [anon_sym_source] = ACTIONS(1168), - [anon_sym_source_DASHenv] = ACTIONS(1168), - [anon_sym_register] = ACTIONS(1168), - [anon_sym_hide] = ACTIONS(1168), - [anon_sym_hide_DASHenv] = ACTIONS(1168), - [anon_sym_overlay] = ACTIONS(1168), - [anon_sym_as] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_where] = ACTIONS(1168), - [anon_sym_STAR_STAR] = ACTIONS(1168), - [anon_sym_PLUS_PLUS] = ACTIONS(1168), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_mod] = ACTIONS(1168), - [anon_sym_SLASH_SLASH] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(1168), - [anon_sym_bit_DASHshl] = ACTIONS(1168), - [anon_sym_bit_DASHshr] = ACTIONS(1168), - [anon_sym_EQ_EQ] = ACTIONS(1168), - [anon_sym_BANG_EQ] = ACTIONS(1168), - [anon_sym_LT2] = ACTIONS(1168), - [anon_sym_LT_EQ] = ACTIONS(1168), - [anon_sym_GT_EQ] = ACTIONS(1168), - [anon_sym_not_DASHin] = ACTIONS(1168), - [anon_sym_starts_DASHwith] = ACTIONS(1168), - [anon_sym_ends_DASHwith] = ACTIONS(1168), - [anon_sym_EQ_TILDE] = ACTIONS(1168), - [anon_sym_BANG_TILDE] = ACTIONS(1168), - [anon_sym_bit_DASHand] = ACTIONS(1168), - [anon_sym_bit_DASHxor] = ACTIONS(1168), - [anon_sym_bit_DASHor] = ACTIONS(1168), - [anon_sym_and] = ACTIONS(1168), - [anon_sym_xor] = ACTIONS(1168), - [anon_sym_or] = ACTIONS(1168), - [anon_sym_not] = ACTIONS(1168), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1168), - [anon_sym_DOT_DOT_LT] = ACTIONS(1168), - [anon_sym_null] = ACTIONS(1168), - [anon_sym_true] = ACTIONS(1168), - [anon_sym_false] = ACTIONS(1168), - [aux_sym__val_number_decimal_token1] = ACTIONS(1168), - [aux_sym__val_number_decimal_token2] = ACTIONS(1168), - [anon_sym_DOT2] = ACTIONS(1168), - [aux_sym__val_number_decimal_token3] = ACTIONS(1168), - [aux_sym__val_number_token1] = ACTIONS(1168), - [aux_sym__val_number_token2] = ACTIONS(1168), - [aux_sym__val_number_token3] = ACTIONS(1168), - [aux_sym__val_number_token4] = ACTIONS(1168), - [aux_sym__val_number_token5] = ACTIONS(1168), - [aux_sym__val_number_token6] = ACTIONS(1168), - [anon_sym_0b] = ACTIONS(1168), - [anon_sym_0o] = ACTIONS(1168), - [anon_sym_0x] = ACTIONS(1168), - [sym_val_date] = ACTIONS(1168), - [anon_sym_DQUOTE] = ACTIONS(1168), - [sym__str_single_quotes] = ACTIONS(1168), - [sym__str_back_ticks] = ACTIONS(1168), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1168), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1168), - [anon_sym_CARET] = ACTIONS(1168), + [anon_sym_export] = ACTIONS(1139), + [anon_sym_alias] = ACTIONS(1139), + [anon_sym_let] = ACTIONS(1139), + [anon_sym_let_DASHenv] = ACTIONS(1139), + [anon_sym_mut] = ACTIONS(1139), + [anon_sym_const] = ACTIONS(1139), + [sym_cmd_identifier] = ACTIONS(1139), + [anon_sym_def] = ACTIONS(1139), + [anon_sym_export_DASHenv] = ACTIONS(1139), + [anon_sym_extern] = ACTIONS(1139), + [anon_sym_module] = ACTIONS(1139), + [anon_sym_use] = ACTIONS(1139), + [anon_sym_LPAREN] = ACTIONS(1139), + [anon_sym_DOLLAR] = ACTIONS(1139), + [anon_sym_error] = ACTIONS(1139), + [anon_sym_list] = ACTIONS(1139), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_break] = ACTIONS(1139), + [anon_sym_continue] = ACTIONS(1139), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_in] = ACTIONS(1139), + [anon_sym_loop] = ACTIONS(1139), + [anon_sym_make] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1139), + [anon_sym_do] = ACTIONS(1139), + [anon_sym_if] = ACTIONS(1139), + [anon_sym_else] = ACTIONS(1139), + [anon_sym_match] = ACTIONS(1139), + [anon_sym_RBRACE] = ACTIONS(1139), + [anon_sym_try] = ACTIONS(1139), + [anon_sym_catch] = ACTIONS(1139), + [anon_sym_return] = ACTIONS(1139), + [anon_sym_source] = ACTIONS(1139), + [anon_sym_source_DASHenv] = ACTIONS(1139), + [anon_sym_register] = ACTIONS(1139), + [anon_sym_hide] = ACTIONS(1139), + [anon_sym_hide_DASHenv] = ACTIONS(1139), + [anon_sym_overlay] = ACTIONS(1139), + [anon_sym_new] = ACTIONS(1139), + [anon_sym_as] = ACTIONS(1139), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_STAR_STAR] = ACTIONS(1139), + [anon_sym_PLUS_PLUS] = ACTIONS(1139), + [anon_sym_SLASH] = ACTIONS(1139), + [anon_sym_mod] = ACTIONS(1139), + [anon_sym_SLASH_SLASH] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_bit_DASHshl] = ACTIONS(1139), + [anon_sym_bit_DASHshr] = ACTIONS(1139), + [anon_sym_EQ_EQ] = ACTIONS(1139), + [anon_sym_BANG_EQ] = ACTIONS(1139), + [anon_sym_LT2] = ACTIONS(1139), + [anon_sym_LT_EQ] = ACTIONS(1139), + [anon_sym_GT_EQ] = ACTIONS(1139), + [anon_sym_not_DASHin] = ACTIONS(1139), + [anon_sym_starts_DASHwith] = ACTIONS(1139), + [anon_sym_ends_DASHwith] = ACTIONS(1139), + [anon_sym_EQ_TILDE] = ACTIONS(1139), + [anon_sym_BANG_TILDE] = ACTIONS(1139), + [anon_sym_bit_DASHand] = ACTIONS(1139), + [anon_sym_bit_DASHxor] = ACTIONS(1139), + [anon_sym_bit_DASHor] = ACTIONS(1139), + [anon_sym_and] = ACTIONS(1139), + [anon_sym_xor] = ACTIONS(1139), + [anon_sym_or] = ACTIONS(1139), + [aux_sym__val_number_decimal_token1] = ACTIONS(1139), + [aux_sym__val_number_decimal_token2] = ACTIONS(1139), + [anon_sym_DOT2] = ACTIONS(1139), + [aux_sym__val_number_decimal_token3] = ACTIONS(1139), + [aux_sym__val_number_token1] = ACTIONS(1139), + [aux_sym__val_number_token2] = ACTIONS(1139), + [aux_sym__val_number_token3] = ACTIONS(1139), + [aux_sym__val_number_token4] = ACTIONS(1139), + [aux_sym__val_number_token5] = ACTIONS(1139), + [aux_sym__val_number_token6] = ACTIONS(1139), + [anon_sym_DQUOTE] = ACTIONS(1139), + [sym__str_single_quotes] = ACTIONS(1139), + [sym__str_back_ticks] = ACTIONS(1139), + [aux_sym__list_item_starts_with_sign_token1] = ACTIONS(1530), + [aux_sym__record_key_token2] = ACTIONS(1139), [anon_sym_POUND] = ACTIONS(113), }, [600] = { [sym_comment] = STATE(600), - [ts_builtin_sym_end] = ACTIONS(1412), - [anon_sym_export] = ACTIONS(1410), - [anon_sym_alias] = ACTIONS(1410), - [anon_sym_let] = ACTIONS(1410), - [anon_sym_let_DASHenv] = ACTIONS(1410), - [anon_sym_mut] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_SEMI] = ACTIONS(1410), - [sym_cmd_identifier] = ACTIONS(1410), - [anon_sym_LF] = ACTIONS(1412), - [anon_sym_def] = ACTIONS(1410), - [anon_sym_export_DASHenv] = ACTIONS(1410), - [anon_sym_extern] = ACTIONS(1410), - [anon_sym_module] = ACTIONS(1410), - [anon_sym_use] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1410), - [anon_sym_LPAREN] = ACTIONS(1410), - [anon_sym_DOLLAR] = ACTIONS(1410), - [anon_sym_error] = ACTIONS(1410), - [anon_sym_GT] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_in] = ACTIONS(1410), - [anon_sym_loop] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1410), - [anon_sym_DOT_DOT] = ACTIONS(1410), - [anon_sym_try] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_source] = ACTIONS(1410), - [anon_sym_source_DASHenv] = ACTIONS(1410), - [anon_sym_register] = ACTIONS(1410), - [anon_sym_hide] = ACTIONS(1410), - [anon_sym_hide_DASHenv] = ACTIONS(1410), - [anon_sym_overlay] = ACTIONS(1410), - [anon_sym_as] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1410), - [anon_sym_where] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1410), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_SLASH] = ACTIONS(1410), - [anon_sym_mod] = ACTIONS(1410), - [anon_sym_SLASH_SLASH] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_bit_DASHshl] = ACTIONS(1410), - [anon_sym_bit_DASHshr] = ACTIONS(1410), - [anon_sym_EQ_EQ] = ACTIONS(1410), - [anon_sym_BANG_EQ] = ACTIONS(1410), - [anon_sym_LT2] = ACTIONS(1410), - [anon_sym_LT_EQ] = ACTIONS(1410), - [anon_sym_GT_EQ] = ACTIONS(1410), - [anon_sym_not_DASHin] = ACTIONS(1410), - [anon_sym_starts_DASHwith] = ACTIONS(1410), - [anon_sym_ends_DASHwith] = ACTIONS(1410), - [anon_sym_EQ_TILDE] = ACTIONS(1410), - [anon_sym_BANG_TILDE] = ACTIONS(1410), - [anon_sym_bit_DASHand] = ACTIONS(1410), - [anon_sym_bit_DASHxor] = ACTIONS(1410), - [anon_sym_bit_DASHor] = ACTIONS(1410), - [anon_sym_and] = ACTIONS(1410), - [anon_sym_xor] = ACTIONS(1410), - [anon_sym_or] = ACTIONS(1410), - [anon_sym_not] = ACTIONS(1410), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1410), - [anon_sym_DOT_DOT_LT] = ACTIONS(1410), - [anon_sym_null] = ACTIONS(1410), - [anon_sym_true] = ACTIONS(1410), - [anon_sym_false] = ACTIONS(1410), - [aux_sym__val_number_decimal_token1] = ACTIONS(1410), - [aux_sym__val_number_decimal_token2] = ACTIONS(1410), - [anon_sym_DOT2] = ACTIONS(1410), - [aux_sym__val_number_decimal_token3] = ACTIONS(1410), - [aux_sym__val_number_token1] = ACTIONS(1410), - [aux_sym__val_number_token2] = ACTIONS(1410), - [aux_sym__val_number_token3] = ACTIONS(1410), - [aux_sym__val_number_token4] = ACTIONS(1410), - [aux_sym__val_number_token5] = ACTIONS(1410), - [aux_sym__val_number_token6] = ACTIONS(1410), - [anon_sym_0b] = ACTIONS(1410), - [anon_sym_0o] = ACTIONS(1410), - [anon_sym_0x] = ACTIONS(1410), - [sym_val_date] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1410), - [sym__str_single_quotes] = ACTIONS(1410), - [sym__str_back_ticks] = ACTIONS(1410), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1410), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1410), - [anon_sym_CARET] = ACTIONS(1410), + [anon_sym_export] = ACTIONS(1287), + [anon_sym_alias] = ACTIONS(1287), + [anon_sym_let] = ACTIONS(1287), + [anon_sym_let_DASHenv] = ACTIONS(1287), + [anon_sym_mut] = ACTIONS(1287), + [anon_sym_const] = ACTIONS(1287), + [sym_cmd_identifier] = ACTIONS(1287), + [anon_sym_def] = ACTIONS(1287), + [anon_sym_export_DASHenv] = ACTIONS(1287), + [anon_sym_extern] = ACTIONS(1287), + [anon_sym_module] = ACTIONS(1287), + [anon_sym_use] = ACTIONS(1287), + [anon_sym_LPAREN] = ACTIONS(1287), + [anon_sym_DOLLAR] = ACTIONS(1287), + [anon_sym_error] = ACTIONS(1287), + [anon_sym_list] = ACTIONS(1287), + [anon_sym_GT] = ACTIONS(1287), + [anon_sym_DASH] = ACTIONS(1287), + [anon_sym_break] = ACTIONS(1287), + [anon_sym_continue] = ACTIONS(1287), + [anon_sym_for] = ACTIONS(1287), + [anon_sym_in] = ACTIONS(1287), + [anon_sym_loop] = ACTIONS(1287), + [anon_sym_make] = ACTIONS(1287), + [anon_sym_while] = ACTIONS(1287), + [anon_sym_do] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1287), + [anon_sym_else] = ACTIONS(1287), + [anon_sym_match] = ACTIONS(1287), + [anon_sym_RBRACE] = ACTIONS(1287), + [anon_sym_try] = ACTIONS(1287), + [anon_sym_catch] = ACTIONS(1287), + [anon_sym_return] = ACTIONS(1287), + [anon_sym_source] = ACTIONS(1287), + [anon_sym_source_DASHenv] = ACTIONS(1287), + [anon_sym_register] = ACTIONS(1287), + [anon_sym_hide] = ACTIONS(1287), + [anon_sym_hide_DASHenv] = ACTIONS(1287), + [anon_sym_overlay] = ACTIONS(1287), + [anon_sym_new] = ACTIONS(1287), + [anon_sym_as] = ACTIONS(1287), + [anon_sym_STAR] = ACTIONS(1287), + [anon_sym_STAR_STAR] = ACTIONS(1287), + [anon_sym_PLUS_PLUS] = ACTIONS(1287), + [anon_sym_SLASH] = ACTIONS(1287), + [anon_sym_mod] = ACTIONS(1287), + [anon_sym_SLASH_SLASH] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1287), + [anon_sym_bit_DASHshl] = ACTIONS(1287), + [anon_sym_bit_DASHshr] = ACTIONS(1287), + [anon_sym_EQ_EQ] = ACTIONS(1287), + [anon_sym_BANG_EQ] = ACTIONS(1287), + [anon_sym_LT2] = ACTIONS(1287), + [anon_sym_LT_EQ] = ACTIONS(1287), + [anon_sym_GT_EQ] = ACTIONS(1287), + [anon_sym_not_DASHin] = ACTIONS(1287), + [anon_sym_starts_DASHwith] = ACTIONS(1287), + [anon_sym_ends_DASHwith] = ACTIONS(1287), + [anon_sym_EQ_TILDE] = ACTIONS(1287), + [anon_sym_BANG_TILDE] = ACTIONS(1287), + [anon_sym_bit_DASHand] = ACTIONS(1287), + [anon_sym_bit_DASHxor] = ACTIONS(1287), + [anon_sym_bit_DASHor] = ACTIONS(1287), + [anon_sym_and] = ACTIONS(1287), + [anon_sym_xor] = ACTIONS(1287), + [anon_sym_or] = ACTIONS(1287), + [aux_sym__val_number_decimal_token1] = ACTIONS(1287), + [aux_sym__val_number_decimal_token2] = ACTIONS(1287), + [anon_sym_DOT2] = ACTIONS(1287), + [aux_sym__val_number_decimal_token3] = ACTIONS(1287), + [aux_sym__val_number_token1] = ACTIONS(1287), + [aux_sym__val_number_token2] = ACTIONS(1287), + [aux_sym__val_number_token3] = ACTIONS(1287), + [aux_sym__val_number_token4] = ACTIONS(1287), + [aux_sym__val_number_token5] = ACTIONS(1287), + [aux_sym__val_number_token6] = ACTIONS(1287), + [anon_sym_DQUOTE] = ACTIONS(1287), + [sym__str_single_quotes] = ACTIONS(1287), + [sym__str_back_ticks] = ACTIONS(1287), + [sym__entry_separator] = ACTIONS(1289), + [aux_sym__record_key_token2] = ACTIONS(1287), [anon_sym_POUND] = ACTIONS(113), }, [601] = { [sym_comment] = STATE(601), - [ts_builtin_sym_end] = ACTIONS(1288), - [anon_sym_export] = ACTIONS(1286), - [anon_sym_alias] = ACTIONS(1286), - [anon_sym_let] = ACTIONS(1286), - [anon_sym_let_DASHenv] = ACTIONS(1286), - [anon_sym_mut] = ACTIONS(1286), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_SEMI] = ACTIONS(1286), - [sym_cmd_identifier] = ACTIONS(1286), - [anon_sym_LF] = ACTIONS(1288), - [anon_sym_def] = ACTIONS(1286), - [anon_sym_export_DASHenv] = ACTIONS(1286), - [anon_sym_extern] = ACTIONS(1286), - [anon_sym_module] = ACTIONS(1286), - [anon_sym_use] = ACTIONS(1286), - [anon_sym_LBRACK] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(1286), - [anon_sym_DOLLAR] = ACTIONS(1286), - [anon_sym_error] = ACTIONS(1286), - [anon_sym_GT] = ACTIONS(1286), - [anon_sym_DASH_DASH] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1286), - [anon_sym_break] = ACTIONS(1286), - [anon_sym_continue] = ACTIONS(1286), - [anon_sym_for] = ACTIONS(1286), - [anon_sym_in] = ACTIONS(1286), - [anon_sym_loop] = ACTIONS(1286), - [anon_sym_while] = ACTIONS(1286), - [anon_sym_do] = ACTIONS(1286), - [anon_sym_if] = ACTIONS(1286), - [anon_sym_match] = ACTIONS(1286), - [anon_sym_LBRACE] = ACTIONS(1286), - [anon_sym_DOT_DOT] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(1286), - [anon_sym_return] = ACTIONS(1286), - [anon_sym_source] = ACTIONS(1286), - [anon_sym_source_DASHenv] = ACTIONS(1286), - [anon_sym_register] = ACTIONS(1286), - [anon_sym_hide] = ACTIONS(1286), - [anon_sym_hide_DASHenv] = ACTIONS(1286), - [anon_sym_overlay] = ACTIONS(1286), - [anon_sym_as] = ACTIONS(1286), - [anon_sym_STAR] = ACTIONS(1286), - [anon_sym_where] = ACTIONS(1286), - [anon_sym_STAR_STAR] = ACTIONS(1286), - [anon_sym_PLUS_PLUS] = ACTIONS(1286), - [anon_sym_SLASH] = ACTIONS(1286), - [anon_sym_mod] = ACTIONS(1286), - [anon_sym_SLASH_SLASH] = ACTIONS(1286), - [anon_sym_PLUS] = ACTIONS(1286), - [anon_sym_bit_DASHshl] = ACTIONS(1286), - [anon_sym_bit_DASHshr] = ACTIONS(1286), - [anon_sym_EQ_EQ] = ACTIONS(1286), - [anon_sym_BANG_EQ] = ACTIONS(1286), - [anon_sym_LT2] = ACTIONS(1286), - [anon_sym_LT_EQ] = ACTIONS(1286), - [anon_sym_GT_EQ] = ACTIONS(1286), - [anon_sym_not_DASHin] = ACTIONS(1286), - [anon_sym_starts_DASHwith] = ACTIONS(1286), - [anon_sym_ends_DASHwith] = ACTIONS(1286), - [anon_sym_EQ_TILDE] = ACTIONS(1286), - [anon_sym_BANG_TILDE] = ACTIONS(1286), - [anon_sym_bit_DASHand] = ACTIONS(1286), - [anon_sym_bit_DASHxor] = ACTIONS(1286), - [anon_sym_bit_DASHor] = ACTIONS(1286), - [anon_sym_and] = ACTIONS(1286), - [anon_sym_xor] = ACTIONS(1286), - [anon_sym_or] = ACTIONS(1286), - [anon_sym_not] = ACTIONS(1286), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1286), - [anon_sym_DOT_DOT_LT] = ACTIONS(1286), - [anon_sym_null] = ACTIONS(1286), - [anon_sym_true] = ACTIONS(1286), - [anon_sym_false] = ACTIONS(1286), - [aux_sym__val_number_decimal_token1] = ACTIONS(1286), - [aux_sym__val_number_decimal_token2] = ACTIONS(1286), - [anon_sym_DOT2] = ACTIONS(1286), - [aux_sym__val_number_decimal_token3] = ACTIONS(1286), - [aux_sym__val_number_token1] = ACTIONS(1286), - [aux_sym__val_number_token2] = ACTIONS(1286), - [aux_sym__val_number_token3] = ACTIONS(1286), - [aux_sym__val_number_token4] = ACTIONS(1286), - [aux_sym__val_number_token5] = ACTIONS(1286), - [aux_sym__val_number_token6] = ACTIONS(1286), - [anon_sym_0b] = ACTIONS(1286), - [anon_sym_0o] = ACTIONS(1286), - [anon_sym_0x] = ACTIONS(1286), - [sym_val_date] = ACTIONS(1286), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym__str_single_quotes] = ACTIONS(1286), - [sym__str_back_ticks] = ACTIONS(1286), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1286), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1286), - [anon_sym_CARET] = ACTIONS(1286), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1143), + [anon_sym_alias] = ACTIONS(1143), + [anon_sym_let] = ACTIONS(1143), + [anon_sym_let_DASHenv] = ACTIONS(1143), + [anon_sym_mut] = ACTIONS(1143), + [anon_sym_const] = ACTIONS(1143), + [sym_cmd_identifier] = ACTIONS(1143), + [anon_sym_def] = ACTIONS(1143), + [anon_sym_export_DASHenv] = ACTIONS(1143), + [anon_sym_extern] = ACTIONS(1143), + [anon_sym_module] = ACTIONS(1143), + [anon_sym_use] = ACTIONS(1143), + [anon_sym_LPAREN] = ACTIONS(1145), + [anon_sym_DOLLAR] = ACTIONS(1145), + [anon_sym_error] = ACTIONS(1143), + [anon_sym_list] = ACTIONS(1143), + [anon_sym_GT] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_break] = ACTIONS(1143), + [anon_sym_continue] = ACTIONS(1143), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_loop] = ACTIONS(1143), + [anon_sym_make] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(1143), + [anon_sym_do] = ACTIONS(1143), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_else] = ACTIONS(1143), + [anon_sym_match] = ACTIONS(1143), + [anon_sym_RBRACE] = ACTIONS(1145), + [anon_sym_try] = ACTIONS(1143), + [anon_sym_catch] = ACTIONS(1143), + [anon_sym_return] = ACTIONS(1143), + [anon_sym_source] = ACTIONS(1143), + [anon_sym_source_DASHenv] = ACTIONS(1143), + [anon_sym_register] = ACTIONS(1143), + [anon_sym_hide] = ACTIONS(1143), + [anon_sym_hide_DASHenv] = ACTIONS(1143), + [anon_sym_overlay] = ACTIONS(1143), + [anon_sym_new] = ACTIONS(1143), + [anon_sym_as] = ACTIONS(1143), + [anon_sym_STAR] = ACTIONS(1143), + [anon_sym_STAR_STAR] = ACTIONS(1145), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_SLASH] = ACTIONS(1143), + [anon_sym_mod] = ACTIONS(1143), + [anon_sym_SLASH_SLASH] = ACTIONS(1145), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_bit_DASHshl] = ACTIONS(1143), + [anon_sym_bit_DASHshr] = ACTIONS(1143), + [anon_sym_EQ_EQ] = ACTIONS(1145), + [anon_sym_BANG_EQ] = ACTIONS(1145), + [anon_sym_LT2] = ACTIONS(1143), + [anon_sym_LT_EQ] = ACTIONS(1145), + [anon_sym_GT_EQ] = ACTIONS(1145), + [anon_sym_not_DASHin] = ACTIONS(1143), + [anon_sym_starts_DASHwith] = ACTIONS(1143), + [anon_sym_ends_DASHwith] = ACTIONS(1143), + [anon_sym_EQ_TILDE] = ACTIONS(1145), + [anon_sym_BANG_TILDE] = ACTIONS(1145), + [anon_sym_bit_DASHand] = ACTIONS(1143), + [anon_sym_bit_DASHxor] = ACTIONS(1143), + [anon_sym_bit_DASHor] = ACTIONS(1143), + [anon_sym_and] = ACTIONS(1143), + [anon_sym_xor] = ACTIONS(1143), + [anon_sym_or] = ACTIONS(1143), + [aux_sym__val_number_decimal_token1] = ACTIONS(1143), + [aux_sym__val_number_decimal_token2] = ACTIONS(1145), + [anon_sym_DOT2] = ACTIONS(1145), + [aux_sym__val_number_decimal_token3] = ACTIONS(1145), + [aux_sym__val_number_token1] = ACTIONS(1145), + [aux_sym__val_number_token2] = ACTIONS(1145), + [aux_sym__val_number_token3] = ACTIONS(1145), + [aux_sym__val_number_token4] = ACTIONS(1143), + [aux_sym__val_number_token5] = ACTIONS(1145), + [aux_sym__val_number_token6] = ACTIONS(1143), + [anon_sym_LBRACK2] = ACTIONS(1532), + [anon_sym_DQUOTE] = ACTIONS(1145), + [sym__str_single_quotes] = ACTIONS(1145), + [sym__str_back_ticks] = ACTIONS(1145), + [aux_sym__record_key_token2] = ACTIONS(1143), + [anon_sym_POUND] = ACTIONS(3), }, [602] = { + [sym_pipeline] = STATE(2595), + [sym_pipeline_last] = STATE(9836), + [sym__ctrl_expression] = STATE(8658), + [sym_ctrl_do] = STATE(9613), + [sym_ctrl_if] = STATE(9613), + [sym_ctrl_match] = STATE(9613), + [sym_ctrl_try] = STATE(9613), + [sym_ctrl_return] = STATE(9613), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(9153), + [sym_where_command] = STATE(8524), + [sym__expression] = STATE(8524), + [sym_expr_unary] = STATE(5890), + [sym__expr_unary_minus] = STATE(5878), + [sym_expr_binary] = STATE(5890), + [sym__expr_binary_expression] = STATE(6380), + [sym_expr_parenthesized] = STATE(5154), + [sym_val_range] = STATE(8295), + [sym__value] = STATE(5890), + [sym_val_nothing] = STATE(5931), + [sym_val_bool] = STATE(5931), + [sym_val_variable] = STATE(5103), + [sym__var] = STATE(4428), + [sym_val_number] = STATE(5931), + [sym__val_number_decimal] = STATE(4371), + [sym__val_number] = STATE(5285), + [sym_val_duration] = STATE(5931), + [sym_val_filesize] = STATE(5931), + [sym_val_binary] = STATE(5931), + [sym_val_string] = STATE(5931), + [sym__str_double_quotes] = STATE(5888), + [sym_val_interpolated] = STATE(5931), + [sym__inter_single_quotes] = STATE(5935), + [sym__inter_double_quotes] = STATE(5940), + [sym_val_list] = STATE(5931), + [sym_val_record] = STATE(5931), + [sym_val_table] = STATE(5931), + [sym_val_closure] = STATE(5931), + [sym_command] = STATE(8524), [sym_comment] = STATE(602), - [ts_builtin_sym_end] = ACTIONS(1192), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_alias] = ACTIONS(1190), - [anon_sym_let] = ACTIONS(1190), - [anon_sym_let_DASHenv] = ACTIONS(1190), - [anon_sym_mut] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1190), - [anon_sym_SEMI] = ACTIONS(1190), - [sym_cmd_identifier] = ACTIONS(1190), - [anon_sym_LF] = ACTIONS(1192), - [anon_sym_def] = ACTIONS(1190), - [anon_sym_export_DASHenv] = ACTIONS(1190), - [anon_sym_extern] = ACTIONS(1190), - [anon_sym_module] = ACTIONS(1190), - [anon_sym_use] = ACTIONS(1190), - [anon_sym_LBRACK] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(1190), - [anon_sym_DOLLAR] = ACTIONS(1190), - [anon_sym_error] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1190), - [anon_sym_DASH_DASH] = ACTIONS(1190), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_in] = ACTIONS(1190), - [anon_sym_loop] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [anon_sym_do] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_match] = ACTIONS(1190), - [anon_sym_LBRACE] = ACTIONS(1190), - [anon_sym_DOT_DOT] = ACTIONS(1190), - [anon_sym_try] = ACTIONS(1190), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_source] = ACTIONS(1190), - [anon_sym_source_DASHenv] = ACTIONS(1190), - [anon_sym_register] = ACTIONS(1190), - [anon_sym_hide] = ACTIONS(1190), - [anon_sym_hide_DASHenv] = ACTIONS(1190), - [anon_sym_overlay] = ACTIONS(1190), - [anon_sym_as] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1190), - [anon_sym_where] = ACTIONS(1190), - [anon_sym_STAR_STAR] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1190), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_mod] = ACTIONS(1190), - [anon_sym_SLASH_SLASH] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_bit_DASHshl] = ACTIONS(1190), - [anon_sym_bit_DASHshr] = ACTIONS(1190), - [anon_sym_EQ_EQ] = ACTIONS(1190), - [anon_sym_BANG_EQ] = ACTIONS(1190), - [anon_sym_LT2] = ACTIONS(1190), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_not_DASHin] = ACTIONS(1190), - [anon_sym_starts_DASHwith] = ACTIONS(1190), - [anon_sym_ends_DASHwith] = ACTIONS(1190), - [anon_sym_EQ_TILDE] = ACTIONS(1190), - [anon_sym_BANG_TILDE] = ACTIONS(1190), - [anon_sym_bit_DASHand] = ACTIONS(1190), - [anon_sym_bit_DASHxor] = ACTIONS(1190), - [anon_sym_bit_DASHor] = ACTIONS(1190), - [anon_sym_and] = ACTIONS(1190), - [anon_sym_xor] = ACTIONS(1190), - [anon_sym_or] = ACTIONS(1190), - [anon_sym_not] = ACTIONS(1190), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1190), - [anon_sym_DOT_DOT_LT] = ACTIONS(1190), - [anon_sym_null] = ACTIONS(1190), - [anon_sym_true] = ACTIONS(1190), - [anon_sym_false] = ACTIONS(1190), - [aux_sym__val_number_decimal_token1] = ACTIONS(1190), - [aux_sym__val_number_decimal_token2] = ACTIONS(1190), - [anon_sym_DOT2] = ACTIONS(1190), - [aux_sym__val_number_decimal_token3] = ACTIONS(1190), - [aux_sym__val_number_token1] = ACTIONS(1190), - [aux_sym__val_number_token2] = ACTIONS(1190), - [aux_sym__val_number_token3] = ACTIONS(1190), - [aux_sym__val_number_token4] = ACTIONS(1190), - [aux_sym__val_number_token5] = ACTIONS(1190), - [aux_sym__val_number_token6] = ACTIONS(1190), - [anon_sym_0b] = ACTIONS(1190), - [anon_sym_0o] = ACTIONS(1190), - [anon_sym_0x] = ACTIONS(1190), - [sym_val_date] = ACTIONS(1190), - [anon_sym_DQUOTE] = ACTIONS(1190), - [sym__str_single_quotes] = ACTIONS(1190), - [sym__str_back_ticks] = ACTIONS(1190), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1190), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1190), - [anon_sym_POUND] = ACTIONS(113), + [aux_sym_pipeline_repeat1] = STATE(766), + [sym_cmd_identifier] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(1528), + [anon_sym_DASH] = ACTIONS(39), + [anon_sym_break] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_match] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_DOT_DOT] = ACTIONS(59), + [anon_sym_try] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_where] = ACTIONS(75), + [anon_sym_not] = ACTIONS(77), + [anon_sym_DOT_DOT_EQ] = ACTIONS(79), + [anon_sym_DOT_DOT_LT] = ACTIONS(79), + [anon_sym_null] = ACTIONS(81), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [aux_sym__val_number_decimal_token1] = ACTIONS(85), + [aux_sym__val_number_decimal_token2] = ACTIONS(87), + [anon_sym_DOT2] = ACTIONS(89), + [aux_sym__val_number_decimal_token3] = ACTIONS(91), + [aux_sym__val_number_token1] = ACTIONS(93), + [aux_sym__val_number_token2] = ACTIONS(93), + [aux_sym__val_number_token3] = ACTIONS(93), + [aux_sym__val_number_token4] = ACTIONS(95), + [aux_sym__val_number_token5] = ACTIONS(93), + [aux_sym__val_number_token6] = ACTIONS(95), + [anon_sym_0b] = ACTIONS(97), + [anon_sym_0o] = ACTIONS(99), + [anon_sym_0x] = ACTIONS(99), + [sym_val_date] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym__str_single_quotes] = ACTIONS(105), + [sym__str_back_ticks] = ACTIONS(105), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(109), + [anon_sym_CARET] = ACTIONS(111), + [anon_sym_POUND] = ACTIONS(3), }, [603] = { [sym_comment] = STATE(603), - [ts_builtin_sym_end] = ACTIONS(1300), - [anon_sym_export] = ACTIONS(1298), - [anon_sym_alias] = ACTIONS(1298), - [anon_sym_let] = ACTIONS(1298), - [anon_sym_let_DASHenv] = ACTIONS(1298), - [anon_sym_mut] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1298), - [sym_cmd_identifier] = ACTIONS(1298), - [anon_sym_LF] = ACTIONS(1300), - [anon_sym_def] = ACTIONS(1298), - [anon_sym_export_DASHenv] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_module] = ACTIONS(1298), - [anon_sym_use] = ACTIONS(1298), - [anon_sym_LBRACK] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1298), - [anon_sym_DOLLAR] = ACTIONS(1298), - [anon_sym_error] = ACTIONS(1298), - [anon_sym_GT] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_in] = ACTIONS(1298), - [anon_sym_loop] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_match] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_DOT_DOT] = ACTIONS(1298), - [anon_sym_try] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_source] = ACTIONS(1298), - [anon_sym_source_DASHenv] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_hide] = ACTIONS(1298), - [anon_sym_hide_DASHenv] = ACTIONS(1298), - [anon_sym_overlay] = ACTIONS(1298), - [anon_sym_as] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_where] = ACTIONS(1298), - [anon_sym_STAR_STAR] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1298), - [anon_sym_SLASH] = ACTIONS(1298), - [anon_sym_mod] = ACTIONS(1298), - [anon_sym_SLASH_SLASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_bit_DASHshl] = ACTIONS(1298), - [anon_sym_bit_DASHshr] = ACTIONS(1298), - [anon_sym_EQ_EQ] = ACTIONS(1298), - [anon_sym_BANG_EQ] = ACTIONS(1298), - [anon_sym_LT2] = ACTIONS(1298), - [anon_sym_LT_EQ] = ACTIONS(1298), - [anon_sym_GT_EQ] = ACTIONS(1298), - [anon_sym_not_DASHin] = ACTIONS(1298), - [anon_sym_starts_DASHwith] = ACTIONS(1298), - [anon_sym_ends_DASHwith] = ACTIONS(1298), - [anon_sym_EQ_TILDE] = ACTIONS(1298), - [anon_sym_BANG_TILDE] = ACTIONS(1298), - [anon_sym_bit_DASHand] = ACTIONS(1298), - [anon_sym_bit_DASHxor] = ACTIONS(1298), - [anon_sym_bit_DASHor] = ACTIONS(1298), - [anon_sym_and] = ACTIONS(1298), - [anon_sym_xor] = ACTIONS(1298), - [anon_sym_or] = ACTIONS(1298), - [anon_sym_not] = ACTIONS(1298), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1298), - [anon_sym_DOT_DOT_LT] = ACTIONS(1298), - [anon_sym_null] = ACTIONS(1298), - [anon_sym_true] = ACTIONS(1298), - [anon_sym_false] = ACTIONS(1298), - [aux_sym__val_number_decimal_token1] = ACTIONS(1298), - [aux_sym__val_number_decimal_token2] = ACTIONS(1298), - [anon_sym_DOT2] = ACTIONS(1298), - [aux_sym__val_number_decimal_token3] = 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(1298), - [aux_sym__val_number_token5] = ACTIONS(1298), - [aux_sym__val_number_token6] = ACTIONS(1298), - [anon_sym_0b] = ACTIONS(1298), - [anon_sym_0o] = ACTIONS(1298), - [anon_sym_0x] = ACTIONS(1298), - [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), + [anon_sym_export] = ACTIONS(1179), + [anon_sym_alias] = ACTIONS(1179), + [anon_sym_let] = ACTIONS(1179), + [anon_sym_let_DASHenv] = ACTIONS(1179), + [anon_sym_mut] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [sym_cmd_identifier] = ACTIONS(1179), + [anon_sym_def] = ACTIONS(1179), + [anon_sym_export_DASHenv] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_use] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_error] = ACTIONS(1179), + [anon_sym_list] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1534), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1179), + [anon_sym_loop] = ACTIONS(1179), + [anon_sym_make] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_else] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1179), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_catch] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_source] = ACTIONS(1179), + [anon_sym_source_DASHenv] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), + [anon_sym_hide_DASHenv] = ACTIONS(1179), + [anon_sym_overlay] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_STAR_STAR] = ACTIONS(1538), + [anon_sym_PLUS_PLUS] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1536), + [anon_sym_mod] = ACTIONS(1536), + [anon_sym_SLASH_SLASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1534), + [anon_sym_bit_DASHshl] = ACTIONS(1179), + [anon_sym_bit_DASHshr] = ACTIONS(1179), + [anon_sym_EQ_EQ] = ACTIONS(1179), + [anon_sym_BANG_EQ] = ACTIONS(1179), + [anon_sym_LT2] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1179), + [anon_sym_GT_EQ] = ACTIONS(1179), + [anon_sym_not_DASHin] = ACTIONS(1179), + [anon_sym_starts_DASHwith] = ACTIONS(1179), + [anon_sym_ends_DASHwith] = ACTIONS(1179), + [anon_sym_EQ_TILDE] = ACTIONS(1179), + [anon_sym_BANG_TILDE] = ACTIONS(1179), + [anon_sym_bit_DASHand] = ACTIONS(1179), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [sym__entry_separator] = ACTIONS(1181), + [aux_sym__record_key_token2] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, [604] = { + [sym_pipeline_parenthesized] = STATE(2626), + [sym_pipeline_parenthesized_last] = STATE(9794), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(4804), + [sym__var] = STATE(4386), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(604), - [ts_builtin_sym_end] = ACTIONS(1304), - [anon_sym_export] = ACTIONS(1302), - [anon_sym_alias] = ACTIONS(1302), - [anon_sym_let] = ACTIONS(1302), - [anon_sym_let_DASHenv] = ACTIONS(1302), - [anon_sym_mut] = ACTIONS(1302), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1302), - [sym_cmd_identifier] = ACTIONS(1302), - [anon_sym_LF] = ACTIONS(1304), - [anon_sym_def] = ACTIONS(1302), - [anon_sym_export_DASHenv] = ACTIONS(1302), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_module] = ACTIONS(1302), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_LBRACK] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_DOLLAR] = ACTIONS(1302), - [anon_sym_error] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_break] = ACTIONS(1302), - [anon_sym_continue] = ACTIONS(1302), - [anon_sym_for] = ACTIONS(1302), - [anon_sym_in] = ACTIONS(1302), - [anon_sym_loop] = ACTIONS(1302), - [anon_sym_while] = ACTIONS(1302), - [anon_sym_do] = ACTIONS(1302), - [anon_sym_if] = ACTIONS(1302), - [anon_sym_match] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_DOT_DOT] = ACTIONS(1302), - [anon_sym_try] = ACTIONS(1302), - [anon_sym_return] = ACTIONS(1302), - [anon_sym_source] = ACTIONS(1302), - [anon_sym_source_DASHenv] = ACTIONS(1302), - [anon_sym_register] = ACTIONS(1302), - [anon_sym_hide] = ACTIONS(1302), - [anon_sym_hide_DASHenv] = ACTIONS(1302), - [anon_sym_overlay] = ACTIONS(1302), - [anon_sym_as] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_where] = ACTIONS(1302), - [anon_sym_STAR_STAR] = ACTIONS(1302), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_SLASH] = ACTIONS(1302), - [anon_sym_mod] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_bit_DASHshl] = ACTIONS(1302), - [anon_sym_bit_DASHshr] = ACTIONS(1302), - [anon_sym_EQ_EQ] = ACTIONS(1302), - [anon_sym_BANG_EQ] = ACTIONS(1302), - [anon_sym_LT2] = ACTIONS(1302), - [anon_sym_LT_EQ] = ACTIONS(1302), - [anon_sym_GT_EQ] = ACTIONS(1302), - [anon_sym_not_DASHin] = ACTIONS(1302), - [anon_sym_starts_DASHwith] = ACTIONS(1302), - [anon_sym_ends_DASHwith] = ACTIONS(1302), - [anon_sym_EQ_TILDE] = ACTIONS(1302), - [anon_sym_BANG_TILDE] = ACTIONS(1302), - [anon_sym_bit_DASHand] = ACTIONS(1302), - [anon_sym_bit_DASHxor] = ACTIONS(1302), - [anon_sym_bit_DASHor] = ACTIONS(1302), - [anon_sym_and] = ACTIONS(1302), - [anon_sym_xor] = ACTIONS(1302), - [anon_sym_or] = ACTIONS(1302), - [anon_sym_not] = ACTIONS(1302), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1302), - [anon_sym_DOT_DOT_LT] = ACTIONS(1302), - [anon_sym_null] = ACTIONS(1302), - [anon_sym_true] = ACTIONS(1302), - [anon_sym_false] = ACTIONS(1302), - [aux_sym__val_number_decimal_token1] = ACTIONS(1302), - [aux_sym__val_number_decimal_token2] = ACTIONS(1302), - [anon_sym_DOT2] = ACTIONS(1302), - [aux_sym__val_number_decimal_token3] = ACTIONS(1302), - [aux_sym__val_number_token1] = ACTIONS(1302), - [aux_sym__val_number_token2] = ACTIONS(1302), - [aux_sym__val_number_token3] = ACTIONS(1302), - [aux_sym__val_number_token4] = ACTIONS(1302), - [aux_sym__val_number_token5] = ACTIONS(1302), - [aux_sym__val_number_token6] = ACTIONS(1302), - [anon_sym_0b] = ACTIONS(1302), - [anon_sym_0o] = ACTIONS(1302), - [anon_sym_0x] = ACTIONS(1302), - [sym_val_date] = ACTIONS(1302), - [anon_sym_DQUOTE] = ACTIONS(1302), - [sym__str_single_quotes] = ACTIONS(1302), - [sym__str_back_ticks] = ACTIONS(1302), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1302), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1302), - [anon_sym_CARET] = ACTIONS(1302), - [anon_sym_POUND] = ACTIONS(113), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_where] = ACTIONS(187), + [anon_sym_not] = ACTIONS(191), + [anon_sym_DOT_DOT_EQ] = ACTIONS(193), + [anon_sym_DOT_DOT_LT] = ACTIONS(193), + [anon_sym_null] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [aux_sym__val_number_decimal_token1] = ACTIONS(199), + [aux_sym__val_number_decimal_token2] = ACTIONS(201), + [anon_sym_DOT2] = ACTIONS(203), + [aux_sym__val_number_decimal_token3] = ACTIONS(205), + [aux_sym__val_number_token1] = ACTIONS(207), + [aux_sym__val_number_token2] = ACTIONS(207), + [aux_sym__val_number_token3] = ACTIONS(207), + [aux_sym__val_number_token4] = ACTIONS(209), + [aux_sym__val_number_token5] = ACTIONS(207), + [aux_sym__val_number_token6] = ACTIONS(209), + [anon_sym_0b] = ACTIONS(211), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym__str_single_quotes] = ACTIONS(219), + [sym__str_back_ticks] = ACTIONS(219), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_POUND] = ACTIONS(3), }, [605] = { + [sym_pipeline_parenthesized] = STATE(2566), + [sym_pipeline_parenthesized_last] = STATE(9736), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(4804), + [sym__var] = STATE(4386), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(605), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_alias] = ACTIONS(1158), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_let_DASHenv] = ACTIONS(1158), - [anon_sym_mut] = ACTIONS(1158), - [anon_sym_const] = ACTIONS(1158), - [anon_sym_SEMI] = ACTIONS(1158), - [sym_cmd_identifier] = ACTIONS(1158), - [anon_sym_LF] = ACTIONS(1160), - [anon_sym_def] = ACTIONS(1158), - [anon_sym_export_DASHenv] = ACTIONS(1158), - [anon_sym_extern] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_use] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_LPAREN] = ACTIONS(1158), - [anon_sym_RPAREN] = ACTIONS(1158), - [anon_sym_DOLLAR] = ACTIONS(1158), - [anon_sym_error] = ACTIONS(1158), - [anon_sym_GT] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_break] = ACTIONS(1158), - [anon_sym_continue] = ACTIONS(1158), - [anon_sym_for] = ACTIONS(1158), - [anon_sym_in] = ACTIONS(1158), - [anon_sym_loop] = ACTIONS(1158), - [anon_sym_while] = ACTIONS(1158), - [anon_sym_do] = ACTIONS(1158), - [anon_sym_if] = ACTIONS(1158), - [anon_sym_match] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1158), - [anon_sym_RBRACE] = ACTIONS(1158), - [anon_sym_DOT_DOT] = ACTIONS(1158), - [anon_sym_try] = ACTIONS(1158), - [anon_sym_return] = ACTIONS(1158), - [anon_sym_source] = ACTIONS(1158), - [anon_sym_source_DASHenv] = ACTIONS(1158), - [anon_sym_register] = ACTIONS(1158), - [anon_sym_hide] = ACTIONS(1158), - [anon_sym_hide_DASHenv] = ACTIONS(1158), - [anon_sym_overlay] = ACTIONS(1158), - [anon_sym_STAR] = ACTIONS(1158), - [anon_sym_where] = ACTIONS(1158), - [anon_sym_STAR_STAR] = ACTIONS(1158), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_SLASH] = ACTIONS(1158), - [anon_sym_mod] = ACTIONS(1158), - [anon_sym_SLASH_SLASH] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1158), - [anon_sym_bit_DASHshl] = ACTIONS(1158), - [anon_sym_bit_DASHshr] = ACTIONS(1158), - [anon_sym_EQ_EQ] = ACTIONS(1158), - [anon_sym_BANG_EQ] = ACTIONS(1158), - [anon_sym_LT2] = ACTIONS(1158), - [anon_sym_LT_EQ] = ACTIONS(1158), - [anon_sym_GT_EQ] = ACTIONS(1158), - [anon_sym_not_DASHin] = ACTIONS(1158), - [anon_sym_starts_DASHwith] = ACTIONS(1158), - [anon_sym_ends_DASHwith] = ACTIONS(1158), - [anon_sym_EQ_TILDE] = ACTIONS(1158), - [anon_sym_BANG_TILDE] = ACTIONS(1158), - [anon_sym_bit_DASHand] = ACTIONS(1158), - [anon_sym_bit_DASHxor] = ACTIONS(1158), - [anon_sym_bit_DASHor] = ACTIONS(1158), - [anon_sym_and] = ACTIONS(1158), - [anon_sym_xor] = ACTIONS(1158), - [anon_sym_or] = ACTIONS(1158), - [anon_sym_not] = ACTIONS(1158), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1158), - [anon_sym_DOT_DOT_LT] = ACTIONS(1158), - [anon_sym_null] = ACTIONS(1158), - [anon_sym_true] = ACTIONS(1158), - [anon_sym_false] = ACTIONS(1158), - [aux_sym__val_number_decimal_token1] = ACTIONS(1158), - [aux_sym__val_number_decimal_token2] = ACTIONS(1158), - [anon_sym_DOT2] = ACTIONS(1158), - [aux_sym__val_number_decimal_token3] = ACTIONS(1158), - [aux_sym__val_number_token1] = ACTIONS(1158), - [aux_sym__val_number_token2] = ACTIONS(1158), - [aux_sym__val_number_token3] = ACTIONS(1158), - [aux_sym__val_number_token4] = ACTIONS(1158), - [aux_sym__val_number_token5] = ACTIONS(1158), - [aux_sym__val_number_token6] = ACTIONS(1158), - [anon_sym_0b] = ACTIONS(1158), - [anon_sym_0o] = ACTIONS(1158), - [anon_sym_0x] = ACTIONS(1158), - [sym_val_date] = ACTIONS(1158), - [anon_sym_DQUOTE] = ACTIONS(1158), - [sym__str_single_quotes] = ACTIONS(1158), - [sym__str_back_ticks] = ACTIONS(1158), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1158), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1158), - [anon_sym_CARET] = ACTIONS(1158), - [aux_sym_unquoted_token6] = ACTIONS(1284), - [anon_sym_POUND] = ACTIONS(113), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_where] = ACTIONS(187), + [anon_sym_not] = ACTIONS(191), + [anon_sym_DOT_DOT_EQ] = ACTIONS(193), + [anon_sym_DOT_DOT_LT] = ACTIONS(193), + [anon_sym_null] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [aux_sym__val_number_decimal_token1] = ACTIONS(199), + [aux_sym__val_number_decimal_token2] = ACTIONS(201), + [anon_sym_DOT2] = ACTIONS(203), + [aux_sym__val_number_decimal_token3] = ACTIONS(205), + [aux_sym__val_number_token1] = ACTIONS(207), + [aux_sym__val_number_token2] = ACTIONS(207), + [aux_sym__val_number_token3] = ACTIONS(207), + [aux_sym__val_number_token4] = ACTIONS(209), + [aux_sym__val_number_token5] = ACTIONS(207), + [aux_sym__val_number_token6] = ACTIONS(209), + [anon_sym_0b] = ACTIONS(211), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym__str_single_quotes] = ACTIONS(219), + [sym__str_back_ticks] = ACTIONS(219), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_POUND] = ACTIONS(3), }, [606] = { [sym_comment] = STATE(606), - [ts_builtin_sym_end] = ACTIONS(1318), - [anon_sym_export] = ACTIONS(1316), - [anon_sym_alias] = ACTIONS(1316), - [anon_sym_let] = ACTIONS(1316), - [anon_sym_let_DASHenv] = ACTIONS(1316), - [anon_sym_mut] = ACTIONS(1316), - [anon_sym_const] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1316), - [sym_cmd_identifier] = ACTIONS(1316), - [anon_sym_LF] = ACTIONS(1318), - [anon_sym_def] = ACTIONS(1316), - [anon_sym_export_DASHenv] = ACTIONS(1316), - [anon_sym_extern] = ACTIONS(1316), - [anon_sym_module] = ACTIONS(1316), - [anon_sym_use] = ACTIONS(1316), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1316), - [anon_sym_DOLLAR] = ACTIONS(1316), - [anon_sym_error] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_break] = ACTIONS(1316), - [anon_sym_continue] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1316), - [anon_sym_in] = ACTIONS(1316), - [anon_sym_loop] = ACTIONS(1316), - [anon_sym_while] = ACTIONS(1316), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_if] = ACTIONS(1316), - [anon_sym_match] = ACTIONS(1316), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_DOT_DOT] = ACTIONS(1316), - [anon_sym_try] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1316), - [anon_sym_source] = ACTIONS(1316), - [anon_sym_source_DASHenv] = ACTIONS(1316), - [anon_sym_register] = ACTIONS(1316), - [anon_sym_hide] = ACTIONS(1316), - [anon_sym_hide_DASHenv] = ACTIONS(1316), - [anon_sym_overlay] = ACTIONS(1316), - [anon_sym_as] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_where] = ACTIONS(1316), - [anon_sym_STAR_STAR] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_SLASH] = ACTIONS(1316), - [anon_sym_mod] = ACTIONS(1316), - [anon_sym_SLASH_SLASH] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_bit_DASHshl] = ACTIONS(1316), - [anon_sym_bit_DASHshr] = ACTIONS(1316), - [anon_sym_EQ_EQ] = ACTIONS(1316), - [anon_sym_BANG_EQ] = ACTIONS(1316), - [anon_sym_LT2] = ACTIONS(1316), - [anon_sym_LT_EQ] = ACTIONS(1316), - [anon_sym_GT_EQ] = ACTIONS(1316), - [anon_sym_not_DASHin] = ACTIONS(1316), - [anon_sym_starts_DASHwith] = ACTIONS(1316), - [anon_sym_ends_DASHwith] = ACTIONS(1316), - [anon_sym_EQ_TILDE] = ACTIONS(1316), - [anon_sym_BANG_TILDE] = ACTIONS(1316), - [anon_sym_bit_DASHand] = ACTIONS(1316), - [anon_sym_bit_DASHxor] = ACTIONS(1316), - [anon_sym_bit_DASHor] = ACTIONS(1316), - [anon_sym_and] = ACTIONS(1316), - [anon_sym_xor] = ACTIONS(1316), - [anon_sym_or] = ACTIONS(1316), - [anon_sym_not] = ACTIONS(1316), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1316), - [anon_sym_DOT_DOT_LT] = ACTIONS(1316), - [anon_sym_null] = ACTIONS(1316), - [anon_sym_true] = ACTIONS(1316), - [anon_sym_false] = ACTIONS(1316), - [aux_sym__val_number_decimal_token1] = ACTIONS(1316), - [aux_sym__val_number_decimal_token2] = ACTIONS(1316), - [anon_sym_DOT2] = ACTIONS(1316), - [aux_sym__val_number_decimal_token3] = ACTIONS(1316), - [aux_sym__val_number_token1] = ACTIONS(1316), - [aux_sym__val_number_token2] = ACTIONS(1316), - [aux_sym__val_number_token3] = ACTIONS(1316), - [aux_sym__val_number_token4] = ACTIONS(1316), - [aux_sym__val_number_token5] = ACTIONS(1316), - [aux_sym__val_number_token6] = ACTIONS(1316), - [anon_sym_0b] = ACTIONS(1316), - [anon_sym_0o] = ACTIONS(1316), - [anon_sym_0x] = ACTIONS(1316), - [sym_val_date] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1316), - [sym__str_single_quotes] = ACTIONS(1316), - [sym__str_back_ticks] = ACTIONS(1316), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1316), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), + [anon_sym_export] = ACTIONS(1221), + [anon_sym_alias] = ACTIONS(1221), + [anon_sym_let] = ACTIONS(1221), + [anon_sym_let_DASHenv] = ACTIONS(1221), + [anon_sym_mut] = ACTIONS(1221), + [anon_sym_const] = ACTIONS(1221), + [sym_cmd_identifier] = ACTIONS(1221), + [anon_sym_def] = ACTIONS(1221), + [anon_sym_export_DASHenv] = ACTIONS(1221), + [anon_sym_extern] = ACTIONS(1221), + [anon_sym_module] = ACTIONS(1221), + [anon_sym_use] = ACTIONS(1221), + [anon_sym_LPAREN] = ACTIONS(1221), + [anon_sym_DOLLAR] = ACTIONS(1221), + [anon_sym_error] = ACTIONS(1221), + [anon_sym_list] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_break] = ACTIONS(1221), + [anon_sym_continue] = ACTIONS(1221), + [anon_sym_for] = ACTIONS(1221), + [anon_sym_in] = ACTIONS(1221), + [anon_sym_loop] = ACTIONS(1221), + [anon_sym_make] = ACTIONS(1221), + [anon_sym_while] = ACTIONS(1221), + [anon_sym_do] = ACTIONS(1221), + [anon_sym_if] = ACTIONS(1221), + [anon_sym_else] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1221), + [anon_sym_RBRACE] = ACTIONS(1221), + [anon_sym_try] = ACTIONS(1221), + [anon_sym_catch] = ACTIONS(1221), + [anon_sym_return] = ACTIONS(1221), + [anon_sym_source] = ACTIONS(1221), + [anon_sym_source_DASHenv] = ACTIONS(1221), + [anon_sym_register] = ACTIONS(1221), + [anon_sym_hide] = ACTIONS(1221), + [anon_sym_hide_DASHenv] = ACTIONS(1221), + [anon_sym_overlay] = ACTIONS(1221), + [anon_sym_new] = ACTIONS(1221), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_STAR_STAR] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_mod] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_bit_DASHshl] = ACTIONS(1221), + [anon_sym_bit_DASHshr] = ACTIONS(1221), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT2] = ACTIONS(1221), + [anon_sym_LT_EQ] = ACTIONS(1221), + [anon_sym_GT_EQ] = ACTIONS(1221), + [anon_sym_not_DASHin] = ACTIONS(1221), + [anon_sym_starts_DASHwith] = ACTIONS(1221), + [anon_sym_ends_DASHwith] = ACTIONS(1221), + [anon_sym_EQ_TILDE] = ACTIONS(1221), + [anon_sym_BANG_TILDE] = ACTIONS(1221), + [anon_sym_bit_DASHand] = ACTIONS(1221), + [anon_sym_bit_DASHxor] = ACTIONS(1221), + [anon_sym_bit_DASHor] = ACTIONS(1221), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_xor] = ACTIONS(1221), + [anon_sym_or] = ACTIONS(1221), + [aux_sym__val_number_decimal_token1] = ACTIONS(1221), + [aux_sym__val_number_decimal_token2] = ACTIONS(1221), + [anon_sym_DOT2] = ACTIONS(1221), + [aux_sym__val_number_decimal_token3] = ACTIONS(1221), + [aux_sym__val_number_token1] = ACTIONS(1221), + [aux_sym__val_number_token2] = ACTIONS(1221), + [aux_sym__val_number_token3] = ACTIONS(1221), + [aux_sym__val_number_token4] = ACTIONS(1221), + [aux_sym__val_number_token5] = ACTIONS(1221), + [aux_sym__val_number_token6] = ACTIONS(1221), + [anon_sym_DQUOTE] = ACTIONS(1221), + [sym__str_single_quotes] = ACTIONS(1221), + [sym__str_back_ticks] = ACTIONS(1221), + [sym__entry_separator] = ACTIONS(1223), + [aux_sym__record_key_token2] = ACTIONS(1221), [anon_sym_POUND] = ACTIONS(113), }, [607] = { [sym_comment] = STATE(607), - [ts_builtin_sym_end] = ACTIONS(1322), - [anon_sym_export] = ACTIONS(1320), - [anon_sym_alias] = ACTIONS(1320), - [anon_sym_let] = ACTIONS(1320), - [anon_sym_let_DASHenv] = ACTIONS(1320), - [anon_sym_mut] = ACTIONS(1320), - [anon_sym_const] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [sym_cmd_identifier] = ACTIONS(1320), - [anon_sym_LF] = ACTIONS(1322), - [anon_sym_def] = ACTIONS(1320), - [anon_sym_export_DASHenv] = ACTIONS(1320), - [anon_sym_extern] = ACTIONS(1320), - [anon_sym_module] = ACTIONS(1320), - [anon_sym_use] = ACTIONS(1320), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_LPAREN] = ACTIONS(1320), - [anon_sym_DOLLAR] = ACTIONS(1320), - [anon_sym_error] = ACTIONS(1320), - [anon_sym_GT] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1320), - [anon_sym_continue] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_in] = ACTIONS(1320), - [anon_sym_loop] = ACTIONS(1320), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_do] = ACTIONS(1320), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_match] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_DOT_DOT] = ACTIONS(1320), - [anon_sym_try] = ACTIONS(1320), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_source] = ACTIONS(1320), - [anon_sym_source_DASHenv] = ACTIONS(1320), - [anon_sym_register] = ACTIONS(1320), - [anon_sym_hide] = ACTIONS(1320), - [anon_sym_hide_DASHenv] = ACTIONS(1320), - [anon_sym_overlay] = ACTIONS(1320), - [anon_sym_as] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_where] = ACTIONS(1320), - [anon_sym_STAR_STAR] = ACTIONS(1320), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_SLASH] = ACTIONS(1320), - [anon_sym_mod] = ACTIONS(1320), - [anon_sym_SLASH_SLASH] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1320), - [anon_sym_bit_DASHshl] = ACTIONS(1320), - [anon_sym_bit_DASHshr] = ACTIONS(1320), - [anon_sym_EQ_EQ] = ACTIONS(1320), - [anon_sym_BANG_EQ] = ACTIONS(1320), - [anon_sym_LT2] = ACTIONS(1320), - [anon_sym_LT_EQ] = ACTIONS(1320), - [anon_sym_GT_EQ] = ACTIONS(1320), - [anon_sym_not_DASHin] = ACTIONS(1320), - [anon_sym_starts_DASHwith] = ACTIONS(1320), - [anon_sym_ends_DASHwith] = ACTIONS(1320), - [anon_sym_EQ_TILDE] = ACTIONS(1320), - [anon_sym_BANG_TILDE] = ACTIONS(1320), - [anon_sym_bit_DASHand] = ACTIONS(1320), - [anon_sym_bit_DASHxor] = ACTIONS(1320), - [anon_sym_bit_DASHor] = ACTIONS(1320), - [anon_sym_and] = ACTIONS(1320), - [anon_sym_xor] = ACTIONS(1320), - [anon_sym_or] = ACTIONS(1320), - [anon_sym_not] = ACTIONS(1320), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1320), - [anon_sym_DOT_DOT_LT] = ACTIONS(1320), - [anon_sym_null] = ACTIONS(1320), - [anon_sym_true] = ACTIONS(1320), - [anon_sym_false] = ACTIONS(1320), - [aux_sym__val_number_decimal_token1] = ACTIONS(1320), - [aux_sym__val_number_decimal_token2] = ACTIONS(1320), - [anon_sym_DOT2] = ACTIONS(1320), - [aux_sym__val_number_decimal_token3] = ACTIONS(1320), - [aux_sym__val_number_token1] = ACTIONS(1320), - [aux_sym__val_number_token2] = ACTIONS(1320), - [aux_sym__val_number_token3] = ACTIONS(1320), - [aux_sym__val_number_token4] = ACTIONS(1320), - [aux_sym__val_number_token5] = ACTIONS(1320), - [aux_sym__val_number_token6] = ACTIONS(1320), - [anon_sym_0b] = ACTIONS(1320), - [anon_sym_0o] = ACTIONS(1320), - [anon_sym_0x] = ACTIONS(1320), - [sym_val_date] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1320), - [sym__str_single_quotes] = ACTIONS(1320), - [sym__str_back_ticks] = ACTIONS(1320), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1320), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1320), - [anon_sym_CARET] = ACTIONS(1320), + [anon_sym_export] = ACTIONS(1089), + [anon_sym_alias] = ACTIONS(1089), + [anon_sym_let] = ACTIONS(1089), + [anon_sym_let_DASHenv] = ACTIONS(1089), + [anon_sym_mut] = ACTIONS(1089), + [anon_sym_const] = ACTIONS(1089), + [sym_cmd_identifier] = ACTIONS(1089), + [anon_sym_def] = ACTIONS(1089), + [anon_sym_export_DASHenv] = ACTIONS(1089), + [anon_sym_extern] = ACTIONS(1089), + [anon_sym_module] = ACTIONS(1089), + [anon_sym_use] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_DOLLAR] = ACTIONS(1089), + [anon_sym_error] = ACTIONS(1089), + [anon_sym_list] = ACTIONS(1089), + [anon_sym_GT] = ACTIONS(1089), + [anon_sym_DASH] = ACTIONS(1089), + [anon_sym_break] = ACTIONS(1089), + [anon_sym_continue] = ACTIONS(1089), + [anon_sym_for] = ACTIONS(1089), + [anon_sym_in] = ACTIONS(1089), + [anon_sym_loop] = ACTIONS(1089), + [anon_sym_make] = ACTIONS(1089), + [anon_sym_while] = ACTIONS(1089), + [anon_sym_do] = ACTIONS(1089), + [anon_sym_if] = ACTIONS(1089), + [anon_sym_else] = ACTIONS(1089), + [anon_sym_match] = ACTIONS(1089), + [anon_sym_RBRACE] = ACTIONS(1091), + [anon_sym_try] = ACTIONS(1089), + [anon_sym_catch] = ACTIONS(1089), + [anon_sym_return] = ACTIONS(1089), + [anon_sym_source] = ACTIONS(1089), + [anon_sym_source_DASHenv] = ACTIONS(1089), + [anon_sym_register] = ACTIONS(1089), + [anon_sym_hide] = ACTIONS(1089), + [anon_sym_hide_DASHenv] = ACTIONS(1089), + [anon_sym_overlay] = ACTIONS(1089), + [anon_sym_new] = ACTIONS(1089), + [anon_sym_as] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_STAR_STAR] = ACTIONS(1089), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_SLASH] = ACTIONS(1089), + [anon_sym_mod] = ACTIONS(1089), + [anon_sym_SLASH_SLASH] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1089), + [anon_sym_bit_DASHshl] = ACTIONS(1089), + [anon_sym_bit_DASHshr] = ACTIONS(1089), + [anon_sym_EQ_EQ] = ACTIONS(1089), + [anon_sym_BANG_EQ] = ACTIONS(1089), + [anon_sym_LT2] = ACTIONS(1089), + [anon_sym_LT_EQ] = ACTIONS(1089), + [anon_sym_GT_EQ] = ACTIONS(1089), + [anon_sym_not_DASHin] = ACTIONS(1089), + [anon_sym_starts_DASHwith] = ACTIONS(1089), + [anon_sym_ends_DASHwith] = ACTIONS(1089), + [anon_sym_EQ_TILDE] = ACTIONS(1089), + [anon_sym_BANG_TILDE] = ACTIONS(1089), + [anon_sym_bit_DASHand] = ACTIONS(1089), + [anon_sym_bit_DASHxor] = ACTIONS(1089), + [anon_sym_bit_DASHor] = ACTIONS(1089), + [anon_sym_and] = ACTIONS(1089), + [anon_sym_xor] = ACTIONS(1089), + [anon_sym_or] = ACTIONS(1089), + [aux_sym__val_number_decimal_token1] = ACTIONS(1089), + [aux_sym__val_number_decimal_token2] = ACTIONS(1089), + [anon_sym_DOT2] = ACTIONS(1089), + [aux_sym__val_number_decimal_token3] = ACTIONS(1089), + [aux_sym__val_number_token1] = ACTIONS(1089), + [aux_sym__val_number_token2] = ACTIONS(1089), + [aux_sym__val_number_token3] = ACTIONS(1089), + [aux_sym__val_number_token4] = ACTIONS(1089), + [aux_sym__val_number_token5] = ACTIONS(1089), + [aux_sym__val_number_token6] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1091), + [sym__str_single_quotes] = ACTIONS(1091), + [sym__str_back_ticks] = ACTIONS(1091), + [aux_sym__record_key_token2] = ACTIONS(1089), + [aux_sym_unquoted_token6] = ACTIONS(1149), [anon_sym_POUND] = ACTIONS(113), }, [608] = { [sym_comment] = STATE(608), - [ts_builtin_sym_end] = ACTIONS(1344), - [anon_sym_export] = ACTIONS(1342), - [anon_sym_alias] = ACTIONS(1342), - [anon_sym_let] = ACTIONS(1342), - [anon_sym_let_DASHenv] = ACTIONS(1342), - [anon_sym_mut] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_SEMI] = ACTIONS(1342), - [sym_cmd_identifier] = ACTIONS(1342), - [anon_sym_LF] = ACTIONS(1344), - [anon_sym_def] = ACTIONS(1342), - [anon_sym_export_DASHenv] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1342), - [anon_sym_module] = ACTIONS(1342), - [anon_sym_use] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_DOLLAR] = ACTIONS(1342), - [anon_sym_error] = ACTIONS(1342), - [anon_sym_GT] = ACTIONS(1342), - [anon_sym_DASH_DASH] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_in] = ACTIONS(1342), - [anon_sym_loop] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_match] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_DOT_DOT] = ACTIONS(1342), - [anon_sym_try] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_source] = ACTIONS(1342), - [anon_sym_source_DASHenv] = ACTIONS(1342), - [anon_sym_register] = ACTIONS(1342), - [anon_sym_hide] = ACTIONS(1342), - [anon_sym_hide_DASHenv] = ACTIONS(1342), - [anon_sym_overlay] = ACTIONS(1342), - [anon_sym_as] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_where] = ACTIONS(1342), - [anon_sym_STAR_STAR] = ACTIONS(1342), - [anon_sym_PLUS_PLUS] = ACTIONS(1342), - [anon_sym_SLASH] = ACTIONS(1342), - [anon_sym_mod] = ACTIONS(1342), - [anon_sym_SLASH_SLASH] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_bit_DASHshl] = ACTIONS(1342), - [anon_sym_bit_DASHshr] = ACTIONS(1342), - [anon_sym_EQ_EQ] = ACTIONS(1342), - [anon_sym_BANG_EQ] = ACTIONS(1342), - [anon_sym_LT2] = ACTIONS(1342), - [anon_sym_LT_EQ] = ACTIONS(1342), - [anon_sym_GT_EQ] = ACTIONS(1342), - [anon_sym_not_DASHin] = ACTIONS(1342), - [anon_sym_starts_DASHwith] = ACTIONS(1342), - [anon_sym_ends_DASHwith] = ACTIONS(1342), - [anon_sym_EQ_TILDE] = ACTIONS(1342), - [anon_sym_BANG_TILDE] = ACTIONS(1342), - [anon_sym_bit_DASHand] = ACTIONS(1342), - [anon_sym_bit_DASHxor] = ACTIONS(1342), - [anon_sym_bit_DASHor] = ACTIONS(1342), - [anon_sym_and] = ACTIONS(1342), - [anon_sym_xor] = ACTIONS(1342), - [anon_sym_or] = ACTIONS(1342), - [anon_sym_not] = ACTIONS(1342), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1342), - [anon_sym_DOT_DOT_LT] = ACTIONS(1342), - [anon_sym_null] = ACTIONS(1342), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym__val_number_decimal_token1] = ACTIONS(1342), - [aux_sym__val_number_decimal_token2] = ACTIONS(1342), - [anon_sym_DOT2] = ACTIONS(1342), - [aux_sym__val_number_decimal_token3] = ACTIONS(1342), - [aux_sym__val_number_token1] = ACTIONS(1342), - [aux_sym__val_number_token2] = ACTIONS(1342), - [aux_sym__val_number_token3] = ACTIONS(1342), - [aux_sym__val_number_token4] = ACTIONS(1342), - [aux_sym__val_number_token5] = ACTIONS(1342), - [aux_sym__val_number_token6] = ACTIONS(1342), - [anon_sym_0b] = ACTIONS(1342), - [anon_sym_0o] = ACTIONS(1342), - [anon_sym_0x] = ACTIONS(1342), - [sym_val_date] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [sym__str_single_quotes] = ACTIONS(1342), - [sym__str_back_ticks] = ACTIONS(1342), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1342), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1342), - [anon_sym_CARET] = ACTIONS(1342), + [anon_sym_export] = ACTIONS(1175), + [anon_sym_alias] = ACTIONS(1175), + [anon_sym_let] = ACTIONS(1175), + [anon_sym_let_DASHenv] = ACTIONS(1175), + [anon_sym_mut] = ACTIONS(1175), + [anon_sym_const] = ACTIONS(1175), + [sym_cmd_identifier] = ACTIONS(1175), + [anon_sym_def] = ACTIONS(1175), + [anon_sym_export_DASHenv] = ACTIONS(1175), + [anon_sym_extern] = ACTIONS(1175), + [anon_sym_module] = ACTIONS(1175), + [anon_sym_use] = ACTIONS(1175), + [anon_sym_LPAREN] = ACTIONS(1175), + [anon_sym_DOLLAR] = ACTIONS(1175), + [anon_sym_error] = ACTIONS(1175), + [anon_sym_list] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [anon_sym_DASH] = ACTIONS(1175), + [anon_sym_break] = ACTIONS(1175), + [anon_sym_continue] = ACTIONS(1175), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_in] = ACTIONS(1175), + [anon_sym_loop] = ACTIONS(1175), + [anon_sym_make] = ACTIONS(1175), + [anon_sym_while] = ACTIONS(1175), + [anon_sym_do] = ACTIONS(1175), + [anon_sym_if] = ACTIONS(1175), + [anon_sym_else] = ACTIONS(1175), + [anon_sym_match] = ACTIONS(1175), + [anon_sym_RBRACE] = ACTIONS(1175), + [anon_sym_try] = ACTIONS(1175), + [anon_sym_catch] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(1175), + [anon_sym_source] = ACTIONS(1175), + [anon_sym_source_DASHenv] = ACTIONS(1175), + [anon_sym_register] = ACTIONS(1175), + [anon_sym_hide] = ACTIONS(1175), + [anon_sym_hide_DASHenv] = ACTIONS(1175), + [anon_sym_overlay] = ACTIONS(1175), + [anon_sym_new] = ACTIONS(1175), + [anon_sym_as] = ACTIONS(1175), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_STAR_STAR] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_mod] = ACTIONS(1175), + [anon_sym_SLASH_SLASH] = ACTIONS(1175), + [anon_sym_PLUS] = ACTIONS(1175), + [anon_sym_bit_DASHshl] = ACTIONS(1175), + [anon_sym_bit_DASHshr] = ACTIONS(1175), + [anon_sym_EQ_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_LT2] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_not_DASHin] = ACTIONS(1175), + [anon_sym_starts_DASHwith] = ACTIONS(1175), + [anon_sym_ends_DASHwith] = ACTIONS(1175), + [anon_sym_EQ_TILDE] = ACTIONS(1175), + [anon_sym_BANG_TILDE] = ACTIONS(1175), + [anon_sym_bit_DASHand] = ACTIONS(1175), + [anon_sym_bit_DASHxor] = ACTIONS(1175), + [anon_sym_bit_DASHor] = ACTIONS(1175), + [anon_sym_and] = ACTIONS(1175), + [anon_sym_xor] = ACTIONS(1175), + [anon_sym_or] = ACTIONS(1175), + [aux_sym__val_number_decimal_token1] = ACTIONS(1175), + [aux_sym__val_number_decimal_token2] = ACTIONS(1175), + [anon_sym_DOT2] = ACTIONS(1175), + [aux_sym__val_number_decimal_token3] = ACTIONS(1175), + [aux_sym__val_number_token1] = ACTIONS(1175), + [aux_sym__val_number_token2] = ACTIONS(1175), + [aux_sym__val_number_token3] = ACTIONS(1175), + [aux_sym__val_number_token4] = ACTIONS(1175), + [aux_sym__val_number_token5] = ACTIONS(1175), + [aux_sym__val_number_token6] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1175), + [sym__str_single_quotes] = ACTIONS(1175), + [sym__str_back_ticks] = ACTIONS(1175), + [sym__entry_separator] = ACTIONS(1177), + [aux_sym__record_key_token2] = ACTIONS(1175), [anon_sym_POUND] = ACTIONS(113), }, [609] = { [sym_comment] = STATE(609), - [ts_builtin_sym_end] = ACTIONS(1348), - [anon_sym_export] = ACTIONS(1346), - [anon_sym_alias] = ACTIONS(1346), - [anon_sym_let] = ACTIONS(1346), - [anon_sym_let_DASHenv] = ACTIONS(1346), - [anon_sym_mut] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_SEMI] = ACTIONS(1346), - [sym_cmd_identifier] = ACTIONS(1346), - [anon_sym_LF] = ACTIONS(1348), - [anon_sym_def] = ACTIONS(1346), - [anon_sym_export_DASHenv] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1346), - [anon_sym_module] = ACTIONS(1346), - [anon_sym_use] = ACTIONS(1346), - [anon_sym_LBRACK] = ACTIONS(1346), - [anon_sym_LPAREN] = ACTIONS(1346), - [anon_sym_DOLLAR] = ACTIONS(1346), - [anon_sym_error] = ACTIONS(1346), - [anon_sym_GT] = ACTIONS(1346), - [anon_sym_DASH_DASH] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_in] = ACTIONS(1346), - [anon_sym_loop] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_match] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_DOT_DOT] = ACTIONS(1346), - [anon_sym_try] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_source] = ACTIONS(1346), - [anon_sym_source_DASHenv] = ACTIONS(1346), - [anon_sym_register] = ACTIONS(1346), - [anon_sym_hide] = ACTIONS(1346), - [anon_sym_hide_DASHenv] = ACTIONS(1346), - [anon_sym_overlay] = ACTIONS(1346), - [anon_sym_as] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_where] = ACTIONS(1346), - [anon_sym_STAR_STAR] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1346), - [anon_sym_SLASH] = ACTIONS(1346), - [anon_sym_mod] = ACTIONS(1346), - [anon_sym_SLASH_SLASH] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_bit_DASHshl] = ACTIONS(1346), - [anon_sym_bit_DASHshr] = ACTIONS(1346), - [anon_sym_EQ_EQ] = ACTIONS(1346), - [anon_sym_BANG_EQ] = ACTIONS(1346), - [anon_sym_LT2] = ACTIONS(1346), - [anon_sym_LT_EQ] = ACTIONS(1346), - [anon_sym_GT_EQ] = ACTIONS(1346), - [anon_sym_not_DASHin] = ACTIONS(1346), - [anon_sym_starts_DASHwith] = ACTIONS(1346), - [anon_sym_ends_DASHwith] = ACTIONS(1346), - [anon_sym_EQ_TILDE] = ACTIONS(1346), - [anon_sym_BANG_TILDE] = ACTIONS(1346), - [anon_sym_bit_DASHand] = ACTIONS(1346), - [anon_sym_bit_DASHxor] = ACTIONS(1346), - [anon_sym_bit_DASHor] = ACTIONS(1346), - [anon_sym_and] = ACTIONS(1346), - [anon_sym_xor] = ACTIONS(1346), - [anon_sym_or] = ACTIONS(1346), - [anon_sym_not] = ACTIONS(1346), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1346), - [anon_sym_DOT_DOT_LT] = ACTIONS(1346), - [anon_sym_null] = ACTIONS(1346), - [anon_sym_true] = ACTIONS(1346), - [anon_sym_false] = ACTIONS(1346), - [aux_sym__val_number_decimal_token1] = ACTIONS(1346), - [aux_sym__val_number_decimal_token2] = ACTIONS(1346), - [anon_sym_DOT2] = ACTIONS(1346), - [aux_sym__val_number_decimal_token3] = ACTIONS(1346), - [aux_sym__val_number_token1] = ACTIONS(1346), - [aux_sym__val_number_token2] = ACTIONS(1346), - [aux_sym__val_number_token3] = ACTIONS(1346), - [aux_sym__val_number_token4] = ACTIONS(1346), - [aux_sym__val_number_token5] = ACTIONS(1346), - [aux_sym__val_number_token6] = ACTIONS(1346), - [anon_sym_0b] = ACTIONS(1346), - [anon_sym_0o] = ACTIONS(1346), - [anon_sym_0x] = ACTIONS(1346), - [sym_val_date] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym__str_single_quotes] = ACTIONS(1346), - [sym__str_back_ticks] = ACTIONS(1346), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1346), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), + [anon_sym_export] = ACTIONS(1076), + [anon_sym_alias] = ACTIONS(1076), + [anon_sym_let] = ACTIONS(1076), + [anon_sym_let_DASHenv] = ACTIONS(1076), + [anon_sym_mut] = ACTIONS(1076), + [anon_sym_const] = ACTIONS(1076), + [sym_cmd_identifier] = ACTIONS(1076), + [anon_sym_def] = ACTIONS(1076), + [anon_sym_export_DASHenv] = ACTIONS(1076), + [anon_sym_extern] = ACTIONS(1076), + [anon_sym_module] = ACTIONS(1076), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(1076), + [anon_sym_DOLLAR] = ACTIONS(1076), + [anon_sym_error] = ACTIONS(1076), + [anon_sym_list] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_DASH] = ACTIONS(1076), + [anon_sym_break] = ACTIONS(1076), + [anon_sym_continue] = ACTIONS(1076), + [anon_sym_for] = ACTIONS(1076), + [anon_sym_in] = ACTIONS(1076), + [anon_sym_loop] = ACTIONS(1076), + [anon_sym_make] = ACTIONS(1076), + [anon_sym_while] = ACTIONS(1076), + [anon_sym_do] = ACTIONS(1076), + [anon_sym_if] = ACTIONS(1076), + [anon_sym_else] = ACTIONS(1076), + [anon_sym_match] = ACTIONS(1076), + [anon_sym_RBRACE] = ACTIONS(1076), + [anon_sym_try] = ACTIONS(1076), + [anon_sym_catch] = ACTIONS(1076), + [anon_sym_return] = ACTIONS(1076), + [anon_sym_source] = ACTIONS(1076), + [anon_sym_source_DASHenv] = ACTIONS(1076), + [anon_sym_register] = ACTIONS(1076), + [anon_sym_hide] = ACTIONS(1076), + [anon_sym_hide_DASHenv] = ACTIONS(1076), + [anon_sym_overlay] = ACTIONS(1076), + [anon_sym_new] = ACTIONS(1076), + [anon_sym_as] = ACTIONS(1076), + [anon_sym_STAR] = ACTIONS(1076), + [anon_sym_STAR_STAR] = ACTIONS(1076), + [anon_sym_PLUS_PLUS] = ACTIONS(1076), + [anon_sym_SLASH] = ACTIONS(1076), + [anon_sym_mod] = ACTIONS(1076), + [anon_sym_SLASH_SLASH] = ACTIONS(1076), + [anon_sym_PLUS] = ACTIONS(1076), + [anon_sym_bit_DASHshl] = ACTIONS(1076), + [anon_sym_bit_DASHshr] = ACTIONS(1076), + [anon_sym_EQ_EQ] = ACTIONS(1076), + [anon_sym_BANG_EQ] = ACTIONS(1076), + [anon_sym_LT2] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1076), + [anon_sym_GT_EQ] = ACTIONS(1076), + [anon_sym_not_DASHin] = ACTIONS(1076), + [anon_sym_starts_DASHwith] = ACTIONS(1076), + [anon_sym_ends_DASHwith] = ACTIONS(1076), + [anon_sym_EQ_TILDE] = ACTIONS(1076), + [anon_sym_BANG_TILDE] = ACTIONS(1076), + [anon_sym_bit_DASHand] = ACTIONS(1076), + [anon_sym_bit_DASHxor] = ACTIONS(1076), + [anon_sym_bit_DASHor] = ACTIONS(1076), + [anon_sym_and] = ACTIONS(1076), + [anon_sym_xor] = ACTIONS(1076), + [anon_sym_or] = ACTIONS(1076), + [aux_sym__val_number_decimal_token1] = ACTIONS(1076), + [aux_sym__val_number_decimal_token2] = ACTIONS(1076), + [anon_sym_DOT2] = ACTIONS(1076), + [aux_sym__val_number_decimal_token3] = ACTIONS(1076), + [aux_sym__val_number_token1] = ACTIONS(1076), + [aux_sym__val_number_token2] = ACTIONS(1076), + [aux_sym__val_number_token3] = ACTIONS(1076), + [aux_sym__val_number_token4] = ACTIONS(1076), + [aux_sym__val_number_token5] = ACTIONS(1076), + [aux_sym__val_number_token6] = ACTIONS(1076), + [anon_sym_DQUOTE] = ACTIONS(1076), + [sym__str_single_quotes] = ACTIONS(1076), + [sym__str_back_ticks] = ACTIONS(1076), + [sym__entry_separator] = ACTIONS(1169), + [aux_sym__record_key_token2] = ACTIONS(1076), [anon_sym_POUND] = ACTIONS(113), }, [610] = { [sym_comment] = STATE(610), - [ts_builtin_sym_end] = ACTIONS(1378), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1435), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1445), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1439), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1441), - [anon_sym_PLUS_PLUS] = ACTIONS(1441), - [anon_sym_SLASH] = ACTIONS(1439), - [anon_sym_mod] = ACTIONS(1439), - [anon_sym_SLASH_SLASH] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_bit_DASHshl] = ACTIONS(1443), - [anon_sym_bit_DASHshr] = ACTIONS(1443), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_LT2] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_not_DASHin] = ACTIONS(1445), - [anon_sym_starts_DASHwith] = ACTIONS(1445), - [anon_sym_ends_DASHwith] = ACTIONS(1445), - [anon_sym_EQ_TILDE] = ACTIONS(1447), - [anon_sym_BANG_TILDE] = ACTIONS(1447), - [anon_sym_bit_DASHand] = ACTIONS(1449), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1047), + [anon_sym_alias] = ACTIONS(1047), + [anon_sym_let] = ACTIONS(1047), + [anon_sym_let_DASHenv] = ACTIONS(1047), + [anon_sym_mut] = ACTIONS(1047), + [anon_sym_const] = ACTIONS(1047), + [sym_cmd_identifier] = ACTIONS(1047), + [anon_sym_def] = ACTIONS(1047), + [anon_sym_export_DASHenv] = ACTIONS(1047), + [anon_sym_extern] = ACTIONS(1047), + [anon_sym_module] = ACTIONS(1047), + [anon_sym_use] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1049), + [anon_sym_DOLLAR] = ACTIONS(1049), + [anon_sym_error] = ACTIONS(1047), + [anon_sym_list] = ACTIONS(1047), + [anon_sym_GT] = ACTIONS(1047), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_break] = ACTIONS(1047), + [anon_sym_continue] = ACTIONS(1047), + [anon_sym_for] = ACTIONS(1047), + [anon_sym_in] = ACTIONS(1047), + [anon_sym_loop] = ACTIONS(1047), + [anon_sym_make] = ACTIONS(1047), + [anon_sym_while] = ACTIONS(1047), + [anon_sym_do] = ACTIONS(1047), + [anon_sym_if] = ACTIONS(1047), + [anon_sym_else] = ACTIONS(1047), + [anon_sym_match] = ACTIONS(1047), + [anon_sym_RBRACE] = ACTIONS(1049), + [anon_sym_try] = ACTIONS(1047), + [anon_sym_catch] = ACTIONS(1047), + [anon_sym_return] = ACTIONS(1047), + [anon_sym_source] = ACTIONS(1047), + [anon_sym_source_DASHenv] = ACTIONS(1047), + [anon_sym_register] = ACTIONS(1047), + [anon_sym_hide] = ACTIONS(1047), + [anon_sym_hide_DASHenv] = ACTIONS(1047), + [anon_sym_overlay] = ACTIONS(1047), + [anon_sym_new] = ACTIONS(1047), + [anon_sym_as] = ACTIONS(1047), + [anon_sym_STAR] = ACTIONS(1047), + [anon_sym_STAR_STAR] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1049), + [anon_sym_SLASH] = ACTIONS(1047), + [anon_sym_mod] = ACTIONS(1047), + [anon_sym_SLASH_SLASH] = ACTIONS(1049), + [anon_sym_PLUS] = ACTIONS(1047), + [anon_sym_bit_DASHshl] = ACTIONS(1047), + [anon_sym_bit_DASHshr] = ACTIONS(1047), + [anon_sym_EQ_EQ] = ACTIONS(1049), + [anon_sym_BANG_EQ] = ACTIONS(1049), + [anon_sym_LT2] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1049), + [anon_sym_GT_EQ] = ACTIONS(1049), + [anon_sym_not_DASHin] = ACTIONS(1047), + [anon_sym_starts_DASHwith] = ACTIONS(1047), + [anon_sym_ends_DASHwith] = ACTIONS(1047), + [anon_sym_EQ_TILDE] = ACTIONS(1049), + [anon_sym_BANG_TILDE] = ACTIONS(1049), + [anon_sym_bit_DASHand] = ACTIONS(1047), + [anon_sym_bit_DASHxor] = ACTIONS(1047), + [anon_sym_bit_DASHor] = ACTIONS(1047), + [anon_sym_and] = ACTIONS(1047), + [anon_sym_xor] = ACTIONS(1047), + [anon_sym_or] = ACTIONS(1047), + [anon_sym_DOT] = ACTIONS(1049), + [aux_sym__val_number_decimal_token1] = ACTIONS(1047), + [aux_sym__val_number_decimal_token2] = ACTIONS(1049), + [anon_sym_DOT2] = ACTIONS(1047), + [aux_sym__val_number_decimal_token3] = ACTIONS(1049), + [aux_sym__val_number_token1] = ACTIONS(1049), + [aux_sym__val_number_token2] = ACTIONS(1049), + [aux_sym__val_number_token3] = ACTIONS(1049), + [aux_sym__val_number_token4] = ACTIONS(1047), + [aux_sym__val_number_token5] = ACTIONS(1049), + [aux_sym__val_number_token6] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1049), + [sym__str_single_quotes] = ACTIONS(1049), + [sym__str_back_ticks] = ACTIONS(1049), + [aux_sym__record_key_token2] = ACTIONS(1047), + [anon_sym_POUND] = ACTIONS(3), }, [611] = { + [sym_pipeline] = STATE(2595), + [sym_pipeline_last] = STATE(9657), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(4804), + [sym__var] = STATE(4386), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(611), - [anon_sym_export] = ACTIONS(1186), - [anon_sym_alias] = ACTIONS(1186), - [anon_sym_let] = ACTIONS(1186), - [anon_sym_let_DASHenv] = ACTIONS(1186), - [anon_sym_mut] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1186), - [sym_cmd_identifier] = ACTIONS(1186), - [anon_sym_LF] = ACTIONS(1188), - [anon_sym_def] = ACTIONS(1186), - [anon_sym_export_DASHenv] = ACTIONS(1186), - [anon_sym_extern] = ACTIONS(1186), - [anon_sym_module] = ACTIONS(1186), - [anon_sym_use] = ACTIONS(1186), - [anon_sym_LBRACK] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(1186), - [anon_sym_RPAREN] = ACTIONS(1186), - [anon_sym_DOLLAR] = ACTIONS(1186), - [anon_sym_error] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1186), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1186), - [anon_sym_in] = ACTIONS(1186), - [anon_sym_loop] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_do] = ACTIONS(1186), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_match] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_RBRACE] = ACTIONS(1186), - [anon_sym_DOT_DOT] = ACTIONS(1186), - [anon_sym_try] = ACTIONS(1186), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_source] = ACTIONS(1186), - [anon_sym_source_DASHenv] = ACTIONS(1186), - [anon_sym_register] = ACTIONS(1186), - [anon_sym_hide] = ACTIONS(1186), - [anon_sym_hide_DASHenv] = ACTIONS(1186), - [anon_sym_overlay] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_where] = ACTIONS(1186), - [anon_sym_STAR_STAR] = ACTIONS(1186), - [anon_sym_PLUS_PLUS] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_mod] = ACTIONS(1186), - [anon_sym_SLASH_SLASH] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_bit_DASHshl] = ACTIONS(1186), - [anon_sym_bit_DASHshr] = ACTIONS(1186), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_LT2] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1186), - [anon_sym_GT_EQ] = ACTIONS(1186), - [anon_sym_not_DASHin] = ACTIONS(1186), - [anon_sym_starts_DASHwith] = ACTIONS(1186), - [anon_sym_ends_DASHwith] = ACTIONS(1186), - [anon_sym_EQ_TILDE] = ACTIONS(1186), - [anon_sym_BANG_TILDE] = ACTIONS(1186), - [anon_sym_bit_DASHand] = ACTIONS(1186), - [anon_sym_bit_DASHxor] = ACTIONS(1186), - [anon_sym_bit_DASHor] = ACTIONS(1186), - [anon_sym_and] = ACTIONS(1186), - [anon_sym_xor] = ACTIONS(1186), - [anon_sym_or] = ACTIONS(1186), - [anon_sym_not] = ACTIONS(1186), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1186), - [anon_sym_DOT_DOT_LT] = ACTIONS(1186), - [anon_sym_null] = ACTIONS(1186), - [anon_sym_true] = ACTIONS(1186), - [anon_sym_false] = ACTIONS(1186), - [aux_sym__val_number_decimal_token1] = ACTIONS(1186), - [aux_sym__val_number_decimal_token2] = ACTIONS(1186), - [anon_sym_DOT2] = ACTIONS(1186), - [aux_sym__val_number_decimal_token3] = ACTIONS(1186), - [aux_sym__val_number_token1] = ACTIONS(1186), - [aux_sym__val_number_token2] = ACTIONS(1186), - [aux_sym__val_number_token3] = ACTIONS(1186), - [aux_sym__val_number_token4] = ACTIONS(1186), - [aux_sym__val_number_token5] = ACTIONS(1186), - [aux_sym__val_number_token6] = ACTIONS(1186), - [anon_sym_0b] = ACTIONS(1186), - [anon_sym_0o] = ACTIONS(1186), - [anon_sym_0x] = ACTIONS(1186), - [sym_val_date] = ACTIONS(1186), - [anon_sym_DQUOTE] = ACTIONS(1186), - [sym__str_single_quotes] = ACTIONS(1186), - [sym__str_back_ticks] = ACTIONS(1186), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1186), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1186), - [anon_sym_CARET] = ACTIONS(1186), - [anon_sym_POUND] = ACTIONS(113), + [aux_sym_pipeline_repeat1] = STATE(764), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_where] = ACTIONS(187), + [anon_sym_not] = ACTIONS(191), + [anon_sym_DOT_DOT_EQ] = ACTIONS(193), + [anon_sym_DOT_DOT_LT] = ACTIONS(193), + [anon_sym_null] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [aux_sym__val_number_decimal_token1] = ACTIONS(199), + [aux_sym__val_number_decimal_token2] = ACTIONS(201), + [anon_sym_DOT2] = ACTIONS(203), + [aux_sym__val_number_decimal_token3] = ACTIONS(205), + [aux_sym__val_number_token1] = ACTIONS(207), + [aux_sym__val_number_token2] = ACTIONS(207), + [aux_sym__val_number_token3] = ACTIONS(207), + [aux_sym__val_number_token4] = ACTIONS(209), + [aux_sym__val_number_token5] = ACTIONS(207), + [aux_sym__val_number_token6] = ACTIONS(209), + [anon_sym_0b] = ACTIONS(211), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym__str_single_quotes] = ACTIONS(219), + [sym__str_back_ticks] = ACTIONS(219), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(227), + [anon_sym_POUND] = ACTIONS(3), }, [612] = { + [sym_pipeline] = STATE(2600), + [sym_pipeline_last] = STATE(9070), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(4804), + [sym__var] = STATE(4386), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(612), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), - }, - [613] = { + [aux_sym_pipeline_repeat1] = STATE(764), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_where] = ACTIONS(187), + [anon_sym_not] = ACTIONS(191), + [anon_sym_DOT_DOT_EQ] = ACTIONS(193), + [anon_sym_DOT_DOT_LT] = ACTIONS(193), + [anon_sym_null] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [aux_sym__val_number_decimal_token1] = ACTIONS(199), + [aux_sym__val_number_decimal_token2] = ACTIONS(201), + [anon_sym_DOT2] = ACTIONS(203), + [aux_sym__val_number_decimal_token3] = ACTIONS(205), + [aux_sym__val_number_token1] = ACTIONS(207), + [aux_sym__val_number_token2] = ACTIONS(207), + [aux_sym__val_number_token3] = ACTIONS(207), + [aux_sym__val_number_token4] = ACTIONS(209), + [aux_sym__val_number_token5] = ACTIONS(207), + [aux_sym__val_number_token6] = ACTIONS(209), + [anon_sym_0b] = ACTIONS(211), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym__str_single_quotes] = ACTIONS(219), + [sym__str_back_ticks] = ACTIONS(219), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(227), + [anon_sym_POUND] = ACTIONS(3), + }, + [613] = { [sym_comment] = STATE(613), - [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), - [anon_sym_SEMI] = ACTIONS(1294), - [sym_cmd_identifier] = ACTIONS(1294), - [anon_sym_LF] = 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(1294), - [anon_sym_LPAREN] = ACTIONS(1294), - [anon_sym_RPAREN] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_error] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_in] = 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(1294), - [anon_sym_RBRACE] = ACTIONS(1294), - [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_register] = ACTIONS(1294), - [anon_sym_hide] = ACTIONS(1294), - [anon_sym_hide_DASHenv] = ACTIONS(1294), - [anon_sym_overlay] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_where] = ACTIONS(1294), - [anon_sym_STAR_STAR] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_mod] = ACTIONS(1294), - [anon_sym_SLASH_SLASH] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_bit_DASHshl] = ACTIONS(1294), - [anon_sym_bit_DASHshr] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_LT2] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_not_DASHin] = ACTIONS(1294), - [anon_sym_starts_DASHwith] = ACTIONS(1294), - [anon_sym_ends_DASHwith] = ACTIONS(1294), - [anon_sym_EQ_TILDE] = ACTIONS(1294), - [anon_sym_BANG_TILDE] = ACTIONS(1294), - [anon_sym_bit_DASHand] = ACTIONS(1294), - [anon_sym_bit_DASHxor] = ACTIONS(1294), - [anon_sym_bit_DASHor] = ACTIONS(1294), - [anon_sym_and] = ACTIONS(1294), - [anon_sym_xor] = ACTIONS(1294), - [anon_sym_or] = ACTIONS(1294), - [anon_sym_not] = ACTIONS(1294), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1294), - [anon_sym_DOT_DOT_LT] = ACTIONS(1294), - [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(1294), - [anon_sym_DOT2] = ACTIONS(1294), - [aux_sym__val_number_decimal_token3] = ACTIONS(1294), - [aux_sym__val_number_token1] = ACTIONS(1294), - [aux_sym__val_number_token2] = ACTIONS(1294), - [aux_sym__val_number_token3] = ACTIONS(1294), - [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(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym__str_single_quotes] = ACTIONS(1294), - [sym__str_back_ticks] = ACTIONS(1294), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1294), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1294), - [anon_sym_CARET] = ACTIONS(1294), + [anon_sym_export] = ACTIONS(1179), + [anon_sym_alias] = ACTIONS(1179), + [anon_sym_let] = ACTIONS(1179), + [anon_sym_let_DASHenv] = ACTIONS(1179), + [anon_sym_mut] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [sym_cmd_identifier] = ACTIONS(1179), + [anon_sym_def] = ACTIONS(1179), + [anon_sym_export_DASHenv] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_use] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_error] = ACTIONS(1179), + [anon_sym_list] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1534), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1544), + [anon_sym_loop] = ACTIONS(1179), + [anon_sym_make] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_else] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1179), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_catch] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_source] = ACTIONS(1179), + [anon_sym_source_DASHenv] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), + [anon_sym_hide_DASHenv] = ACTIONS(1179), + [anon_sym_overlay] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_STAR_STAR] = ACTIONS(1538), + [anon_sym_PLUS_PLUS] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1536), + [anon_sym_mod] = ACTIONS(1536), + [anon_sym_SLASH_SLASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1534), + [anon_sym_bit_DASHshl] = ACTIONS(1546), + [anon_sym_bit_DASHshr] = ACTIONS(1546), + [anon_sym_EQ_EQ] = ACTIONS(1542), + [anon_sym_BANG_EQ] = ACTIONS(1542), + [anon_sym_LT2] = ACTIONS(1542), + [anon_sym_LT_EQ] = ACTIONS(1542), + [anon_sym_GT_EQ] = ACTIONS(1542), + [anon_sym_not_DASHin] = ACTIONS(1544), + [anon_sym_starts_DASHwith] = ACTIONS(1544), + [anon_sym_ends_DASHwith] = ACTIONS(1544), + [anon_sym_EQ_TILDE] = ACTIONS(1179), + [anon_sym_BANG_TILDE] = ACTIONS(1179), + [anon_sym_bit_DASHand] = ACTIONS(1179), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [sym__entry_separator] = ACTIONS(1181), + [aux_sym__record_key_token2] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, [614] = { [sym_comment] = STATE(614), - [anon_sym_export] = ACTIONS(1358), - [anon_sym_alias] = ACTIONS(1358), - [anon_sym_let] = ACTIONS(1358), - [anon_sym_let_DASHenv] = ACTIONS(1358), - [anon_sym_mut] = ACTIONS(1358), - [anon_sym_const] = ACTIONS(1358), - [anon_sym_SEMI] = ACTIONS(1358), - [sym_cmd_identifier] = ACTIONS(1358), - [anon_sym_LF] = ACTIONS(1360), - [anon_sym_def] = ACTIONS(1358), - [anon_sym_export_DASHenv] = ACTIONS(1358), - [anon_sym_extern] = ACTIONS(1358), - [anon_sym_module] = ACTIONS(1358), - [anon_sym_use] = ACTIONS(1358), - [anon_sym_LBRACK] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1358), - [anon_sym_RPAREN] = ACTIONS(1358), - [anon_sym_DOLLAR] = ACTIONS(1358), - [anon_sym_error] = ACTIONS(1358), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_in] = ACTIONS(1358), - [anon_sym_loop] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_do] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_match] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_RBRACE] = ACTIONS(1358), - [anon_sym_DOT_DOT] = ACTIONS(1358), - [anon_sym_try] = ACTIONS(1358), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_source] = ACTIONS(1358), - [anon_sym_source_DASHenv] = ACTIONS(1358), - [anon_sym_register] = ACTIONS(1358), - [anon_sym_hide] = ACTIONS(1358), - [anon_sym_hide_DASHenv] = ACTIONS(1358), - [anon_sym_overlay] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_where] = ACTIONS(1358), - [anon_sym_STAR_STAR] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_SLASH] = ACTIONS(1358), - [anon_sym_mod] = ACTIONS(1358), - [anon_sym_SLASH_SLASH] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_bit_DASHshl] = ACTIONS(1358), - [anon_sym_bit_DASHshr] = ACTIONS(1358), - [anon_sym_EQ_EQ] = ACTIONS(1358), - [anon_sym_BANG_EQ] = ACTIONS(1358), - [anon_sym_LT2] = ACTIONS(1358), - [anon_sym_LT_EQ] = ACTIONS(1358), - [anon_sym_GT_EQ] = ACTIONS(1358), - [anon_sym_not_DASHin] = ACTIONS(1358), - [anon_sym_starts_DASHwith] = ACTIONS(1358), - [anon_sym_ends_DASHwith] = ACTIONS(1358), - [anon_sym_EQ_TILDE] = ACTIONS(1358), - [anon_sym_BANG_TILDE] = ACTIONS(1358), - [anon_sym_bit_DASHand] = ACTIONS(1358), - [anon_sym_bit_DASHxor] = ACTIONS(1358), - [anon_sym_bit_DASHor] = ACTIONS(1358), - [anon_sym_and] = ACTIONS(1358), - [anon_sym_xor] = ACTIONS(1358), - [anon_sym_or] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1358), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1358), - [anon_sym_DOT_DOT_LT] = ACTIONS(1358), - [anon_sym_null] = ACTIONS(1358), - [anon_sym_true] = ACTIONS(1358), - [anon_sym_false] = ACTIONS(1358), - [aux_sym__val_number_decimal_token1] = ACTIONS(1358), - [aux_sym__val_number_decimal_token2] = ACTIONS(1358), - [anon_sym_DOT2] = ACTIONS(1358), - [aux_sym__val_number_decimal_token3] = ACTIONS(1358), - [aux_sym__val_number_token1] = ACTIONS(1358), - [aux_sym__val_number_token2] = ACTIONS(1358), - [aux_sym__val_number_token3] = ACTIONS(1358), - [aux_sym__val_number_token4] = ACTIONS(1358), - [aux_sym__val_number_token5] = ACTIONS(1358), - [aux_sym__val_number_token6] = ACTIONS(1358), - [anon_sym_0b] = ACTIONS(1358), - [anon_sym_0o] = ACTIONS(1358), - [anon_sym_0x] = ACTIONS(1358), - [sym_val_date] = ACTIONS(1358), - [anon_sym_DQUOTE] = ACTIONS(1358), - [sym__str_single_quotes] = ACTIONS(1358), - [sym__str_back_ticks] = ACTIONS(1358), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1358), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1358), - [anon_sym_CARET] = ACTIONS(1358), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_list] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_make] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_else] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_catch] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [sym__entry_separator] = ACTIONS(1173), + [aux_sym__record_key_token2] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, [615] = { [sym_comment] = STATE(615), - [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), - [anon_sym_SEMI] = ACTIONS(1294), - [sym_cmd_identifier] = ACTIONS(1294), - [anon_sym_LF] = 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(1294), - [anon_sym_LPAREN] = ACTIONS(1294), - [anon_sym_RPAREN] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_error] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_in] = 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(1294), - [anon_sym_RBRACE] = ACTIONS(1294), - [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_register] = ACTIONS(1294), - [anon_sym_hide] = ACTIONS(1294), - [anon_sym_hide_DASHenv] = ACTIONS(1294), - [anon_sym_overlay] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_where] = ACTIONS(1294), - [anon_sym_STAR_STAR] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_mod] = ACTIONS(1294), - [anon_sym_SLASH_SLASH] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_bit_DASHshl] = ACTIONS(1294), - [anon_sym_bit_DASHshr] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_LT2] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_not_DASHin] = ACTIONS(1294), - [anon_sym_starts_DASHwith] = ACTIONS(1294), - [anon_sym_ends_DASHwith] = ACTIONS(1294), - [anon_sym_EQ_TILDE] = ACTIONS(1294), - [anon_sym_BANG_TILDE] = ACTIONS(1294), - [anon_sym_bit_DASHand] = ACTIONS(1294), - [anon_sym_bit_DASHxor] = ACTIONS(1294), - [anon_sym_bit_DASHor] = ACTIONS(1294), - [anon_sym_and] = ACTIONS(1294), - [anon_sym_xor] = ACTIONS(1294), - [anon_sym_or] = ACTIONS(1294), - [anon_sym_not] = ACTIONS(1294), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1294), - [anon_sym_DOT_DOT_LT] = ACTIONS(1294), - [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(1294), - [anon_sym_DOT2] = ACTIONS(1294), - [aux_sym__val_number_decimal_token3] = ACTIONS(1294), - [aux_sym__val_number_token1] = ACTIONS(1294), - [aux_sym__val_number_token2] = ACTIONS(1294), - [aux_sym__val_number_token3] = ACTIONS(1294), - [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(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym__str_single_quotes] = ACTIONS(1294), - [sym__str_back_ticks] = ACTIONS(1294), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1294), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1294), - [anon_sym_CARET] = ACTIONS(1294), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(938), + [anon_sym_alias] = ACTIONS(938), + [anon_sym_let] = ACTIONS(938), + [anon_sym_let_DASHenv] = ACTIONS(938), + [anon_sym_mut] = ACTIONS(938), + [anon_sym_const] = ACTIONS(938), + [sym_cmd_identifier] = ACTIONS(938), + [anon_sym_def] = ACTIONS(938), + [anon_sym_export_DASHenv] = ACTIONS(938), + [anon_sym_extern] = ACTIONS(938), + [anon_sym_module] = ACTIONS(938), + [anon_sym_use] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(940), + [anon_sym_DOLLAR] = ACTIONS(940), + [anon_sym_error] = ACTIONS(938), + [anon_sym_list] = ACTIONS(938), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_break] = ACTIONS(938), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_for] = ACTIONS(938), + [anon_sym_in] = ACTIONS(938), + [anon_sym_loop] = ACTIONS(938), + [anon_sym_make] = ACTIONS(938), + [anon_sym_while] = ACTIONS(938), + [anon_sym_do] = ACTIONS(938), + [anon_sym_if] = ACTIONS(938), + [anon_sym_else] = ACTIONS(938), + [anon_sym_match] = ACTIONS(938), + [anon_sym_RBRACE] = ACTIONS(940), + [anon_sym_try] = ACTIONS(938), + [anon_sym_catch] = ACTIONS(938), + [anon_sym_return] = ACTIONS(938), + [anon_sym_source] = ACTIONS(938), + [anon_sym_source_DASHenv] = ACTIONS(938), + [anon_sym_register] = ACTIONS(938), + [anon_sym_hide] = ACTIONS(938), + [anon_sym_hide_DASHenv] = ACTIONS(938), + [anon_sym_overlay] = ACTIONS(938), + [anon_sym_new] = ACTIONS(938), + [anon_sym_as] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_STAR_STAR] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(940), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(938), + [anon_sym_SLASH_SLASH] = ACTIONS(940), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_bit_DASHshl] = ACTIONS(938), + [anon_sym_bit_DASHshr] = ACTIONS(938), + [anon_sym_EQ_EQ] = ACTIONS(940), + [anon_sym_BANG_EQ] = ACTIONS(940), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(940), + [anon_sym_GT_EQ] = ACTIONS(940), + [anon_sym_not_DASHin] = ACTIONS(938), + [anon_sym_starts_DASHwith] = ACTIONS(938), + [anon_sym_ends_DASHwith] = ACTIONS(938), + [anon_sym_EQ_TILDE] = ACTIONS(940), + [anon_sym_BANG_TILDE] = ACTIONS(940), + [anon_sym_bit_DASHand] = ACTIONS(938), + [anon_sym_bit_DASHxor] = ACTIONS(938), + [anon_sym_bit_DASHor] = ACTIONS(938), + [anon_sym_and] = ACTIONS(938), + [anon_sym_xor] = ACTIONS(938), + [anon_sym_or] = ACTIONS(938), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(940), + [anon_sym_DOT2] = ACTIONS(940), + [aux_sym__val_number_decimal_token3] = ACTIONS(940), + [aux_sym__val_number_token1] = ACTIONS(940), + [aux_sym__val_number_token2] = ACTIONS(940), + [aux_sym__val_number_token3] = ACTIONS(940), + [aux_sym__val_number_token4] = ACTIONS(938), + [aux_sym__val_number_token5] = ACTIONS(940), + [aux_sym__val_number_token6] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(940), + [sym__str_single_quotes] = ACTIONS(940), + [sym__str_back_ticks] = ACTIONS(940), + [aux_sym__record_key_token2] = ACTIONS(938), + [aux_sym_unquoted_token5] = ACTIONS(1383), + [anon_sym_POUND] = ACTIONS(3), }, [616] = { [sym_comment] = STATE(616), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), + [anon_sym_export] = ACTIONS(1179), + [anon_sym_alias] = ACTIONS(1179), + [anon_sym_let] = ACTIONS(1179), + [anon_sym_let_DASHenv] = ACTIONS(1179), + [anon_sym_mut] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [sym_cmd_identifier] = ACTIONS(1179), + [anon_sym_def] = ACTIONS(1179), + [anon_sym_export_DASHenv] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_use] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_error] = ACTIONS(1179), + [anon_sym_list] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1179), + [anon_sym_loop] = ACTIONS(1179), + [anon_sym_make] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_else] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1179), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_catch] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_source] = ACTIONS(1179), + [anon_sym_source_DASHenv] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), + [anon_sym_hide_DASHenv] = ACTIONS(1179), + [anon_sym_overlay] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_STAR_STAR] = ACTIONS(1538), + [anon_sym_PLUS_PLUS] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1536), + [anon_sym_mod] = ACTIONS(1536), + [anon_sym_SLASH_SLASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_bit_DASHshl] = ACTIONS(1179), + [anon_sym_bit_DASHshr] = ACTIONS(1179), + [anon_sym_EQ_EQ] = ACTIONS(1179), + [anon_sym_BANG_EQ] = ACTIONS(1179), + [anon_sym_LT2] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1179), + [anon_sym_GT_EQ] = ACTIONS(1179), + [anon_sym_not_DASHin] = ACTIONS(1179), + [anon_sym_starts_DASHwith] = ACTIONS(1179), + [anon_sym_ends_DASHwith] = ACTIONS(1179), + [anon_sym_EQ_TILDE] = ACTIONS(1179), + [anon_sym_BANG_TILDE] = ACTIONS(1179), + [anon_sym_bit_DASHand] = ACTIONS(1179), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [sym__entry_separator] = ACTIONS(1181), + [aux_sym__record_key_token2] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, [617] = { [sym_comment] = STATE(617), - [anon_sym_export] = ACTIONS(1168), - [anon_sym_alias] = ACTIONS(1168), - [anon_sym_let] = ACTIONS(1168), - [anon_sym_let_DASHenv] = ACTIONS(1168), - [anon_sym_mut] = ACTIONS(1168), - [anon_sym_const] = ACTIONS(1168), - [anon_sym_SEMI] = ACTIONS(1168), - [sym_cmd_identifier] = ACTIONS(1168), - [anon_sym_LF] = ACTIONS(1170), - [anon_sym_def] = ACTIONS(1168), - [anon_sym_export_DASHenv] = ACTIONS(1168), - [anon_sym_extern] = ACTIONS(1168), - [anon_sym_module] = ACTIONS(1168), - [anon_sym_use] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_RPAREN] = ACTIONS(1168), - [anon_sym_DOLLAR] = ACTIONS(1168), - [anon_sym_error] = ACTIONS(1168), - [anon_sym_GT] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1168), - [anon_sym_break] = ACTIONS(1168), - [anon_sym_continue] = ACTIONS(1168), - [anon_sym_for] = ACTIONS(1168), - [anon_sym_in] = ACTIONS(1168), - [anon_sym_loop] = ACTIONS(1168), - [anon_sym_while] = ACTIONS(1168), - [anon_sym_do] = ACTIONS(1168), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_match] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1168), - [anon_sym_RBRACE] = ACTIONS(1168), - [anon_sym_DOT_DOT] = ACTIONS(1168), - [anon_sym_try] = ACTIONS(1168), - [anon_sym_return] = ACTIONS(1168), - [anon_sym_source] = ACTIONS(1168), - [anon_sym_source_DASHenv] = ACTIONS(1168), - [anon_sym_register] = ACTIONS(1168), - [anon_sym_hide] = ACTIONS(1168), - [anon_sym_hide_DASHenv] = ACTIONS(1168), - [anon_sym_overlay] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_where] = ACTIONS(1168), - [anon_sym_STAR_STAR] = ACTIONS(1168), - [anon_sym_PLUS_PLUS] = ACTIONS(1168), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_mod] = ACTIONS(1168), - [anon_sym_SLASH_SLASH] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(1168), - [anon_sym_bit_DASHshl] = ACTIONS(1168), - [anon_sym_bit_DASHshr] = ACTIONS(1168), - [anon_sym_EQ_EQ] = ACTIONS(1168), - [anon_sym_BANG_EQ] = ACTIONS(1168), - [anon_sym_LT2] = ACTIONS(1168), - [anon_sym_LT_EQ] = ACTIONS(1168), - [anon_sym_GT_EQ] = ACTIONS(1168), - [anon_sym_not_DASHin] = ACTIONS(1168), - [anon_sym_starts_DASHwith] = ACTIONS(1168), - [anon_sym_ends_DASHwith] = ACTIONS(1168), - [anon_sym_EQ_TILDE] = ACTIONS(1168), - [anon_sym_BANG_TILDE] = ACTIONS(1168), - [anon_sym_bit_DASHand] = ACTIONS(1168), - [anon_sym_bit_DASHxor] = ACTIONS(1168), - [anon_sym_bit_DASHor] = ACTIONS(1168), - [anon_sym_and] = ACTIONS(1168), - [anon_sym_xor] = ACTIONS(1168), - [anon_sym_or] = ACTIONS(1168), - [anon_sym_not] = ACTIONS(1168), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1168), - [anon_sym_DOT_DOT_LT] = ACTIONS(1168), - [anon_sym_null] = ACTIONS(1168), - [anon_sym_true] = ACTIONS(1168), - [anon_sym_false] = ACTIONS(1168), - [aux_sym__val_number_decimal_token1] = ACTIONS(1168), - [aux_sym__val_number_decimal_token2] = ACTIONS(1168), - [anon_sym_DOT2] = ACTIONS(1168), - [aux_sym__val_number_decimal_token3] = ACTIONS(1168), - [aux_sym__val_number_token1] = ACTIONS(1168), - [aux_sym__val_number_token2] = ACTIONS(1168), - [aux_sym__val_number_token3] = ACTIONS(1168), - [aux_sym__val_number_token4] = ACTIONS(1168), - [aux_sym__val_number_token5] = ACTIONS(1168), - [aux_sym__val_number_token6] = ACTIONS(1168), - [anon_sym_0b] = ACTIONS(1168), - [anon_sym_0o] = ACTIONS(1168), - [anon_sym_0x] = ACTIONS(1168), - [sym_val_date] = ACTIONS(1168), - [anon_sym_DQUOTE] = ACTIONS(1168), - [sym__str_single_quotes] = ACTIONS(1168), - [sym__str_back_ticks] = ACTIONS(1168), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1168), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1168), - [anon_sym_CARET] = ACTIONS(1168), + [anon_sym_export] = ACTIONS(1129), + [anon_sym_alias] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_let_DASHenv] = ACTIONS(1129), + [anon_sym_mut] = ACTIONS(1129), + [anon_sym_const] = ACTIONS(1129), + [sym_cmd_identifier] = ACTIONS(1129), + [anon_sym_def] = ACTIONS(1129), + [anon_sym_export_DASHenv] = ACTIONS(1129), + [anon_sym_extern] = ACTIONS(1129), + [anon_sym_module] = ACTIONS(1129), + [anon_sym_use] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(1129), + [anon_sym_DOLLAR] = ACTIONS(1129), + [anon_sym_error] = ACTIONS(1129), + [anon_sym_list] = ACTIONS(1129), + [anon_sym_GT] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_break] = ACTIONS(1129), + [anon_sym_continue] = ACTIONS(1129), + [anon_sym_for] = ACTIONS(1129), + [anon_sym_in] = ACTIONS(1129), + [anon_sym_loop] = ACTIONS(1129), + [anon_sym_make] = ACTIONS(1129), + [anon_sym_while] = ACTIONS(1129), + [anon_sym_do] = ACTIONS(1129), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_else] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1129), + [anon_sym_RBRACE] = ACTIONS(1129), + [anon_sym_try] = ACTIONS(1129), + [anon_sym_catch] = ACTIONS(1129), + [anon_sym_return] = ACTIONS(1129), + [anon_sym_source] = ACTIONS(1129), + [anon_sym_source_DASHenv] = ACTIONS(1129), + [anon_sym_register] = ACTIONS(1129), + [anon_sym_hide] = ACTIONS(1129), + [anon_sym_hide_DASHenv] = ACTIONS(1129), + [anon_sym_overlay] = ACTIONS(1129), + [anon_sym_new] = ACTIONS(1129), + [anon_sym_as] = ACTIONS(1129), + [anon_sym_STAR] = ACTIONS(1129), + [anon_sym_STAR_STAR] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(1129), + [anon_sym_mod] = ACTIONS(1129), + [anon_sym_SLASH_SLASH] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_bit_DASHshl] = ACTIONS(1129), + [anon_sym_bit_DASHshr] = ACTIONS(1129), + [anon_sym_EQ_EQ] = ACTIONS(1129), + [anon_sym_BANG_EQ] = ACTIONS(1129), + [anon_sym_LT2] = ACTIONS(1129), + [anon_sym_LT_EQ] = ACTIONS(1129), + [anon_sym_GT_EQ] = ACTIONS(1129), + [anon_sym_not_DASHin] = ACTIONS(1129), + [anon_sym_starts_DASHwith] = ACTIONS(1129), + [anon_sym_ends_DASHwith] = ACTIONS(1129), + [anon_sym_EQ_TILDE] = ACTIONS(1129), + [anon_sym_BANG_TILDE] = ACTIONS(1129), + [anon_sym_bit_DASHand] = ACTIONS(1129), + [anon_sym_bit_DASHxor] = ACTIONS(1129), + [anon_sym_bit_DASHor] = ACTIONS(1129), + [anon_sym_and] = ACTIONS(1129), + [anon_sym_xor] = ACTIONS(1129), + [anon_sym_or] = ACTIONS(1129), + [aux_sym__val_number_decimal_token1] = ACTIONS(1129), + [aux_sym__val_number_decimal_token2] = ACTIONS(1129), + [anon_sym_DOT2] = ACTIONS(1129), + [aux_sym__val_number_decimal_token3] = ACTIONS(1129), + [aux_sym__val_number_token1] = ACTIONS(1129), + [aux_sym__val_number_token2] = ACTIONS(1129), + [aux_sym__val_number_token3] = ACTIONS(1129), + [aux_sym__val_number_token4] = ACTIONS(1129), + [aux_sym__val_number_token5] = ACTIONS(1129), + [aux_sym__val_number_token6] = ACTIONS(1129), + [anon_sym_DQUOTE] = ACTIONS(1129), + [sym__str_single_quotes] = ACTIONS(1129), + [sym__str_back_ticks] = ACTIONS(1129), + [sym__entry_separator] = ACTIONS(1131), + [aux_sym__record_key_token2] = ACTIONS(1129), [anon_sym_POUND] = ACTIONS(113), }, [618] = { [sym_comment] = STATE(618), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_RPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1480), - [anon_sym_PLUS_PLUS] = ACTIONS(1480), - [anon_sym_SLASH] = ACTIONS(1478), - [anon_sym_mod] = ACTIONS(1478), - [anon_sym_SLASH_SLASH] = ACTIONS(1478), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_bit_DASHshl] = ACTIONS(1376), - [anon_sym_bit_DASHshr] = ACTIONS(1376), - [anon_sym_EQ_EQ] = ACTIONS(1376), - [anon_sym_BANG_EQ] = ACTIONS(1376), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1376), - [anon_sym_GT_EQ] = ACTIONS(1376), - [anon_sym_not_DASHin] = ACTIONS(1376), - [anon_sym_starts_DASHwith] = ACTIONS(1376), - [anon_sym_ends_DASHwith] = ACTIONS(1376), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_export] = ACTIONS(1179), + [anon_sym_alias] = ACTIONS(1179), + [anon_sym_let] = ACTIONS(1179), + [anon_sym_let_DASHenv] = ACTIONS(1179), + [anon_sym_mut] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [sym_cmd_identifier] = ACTIONS(1179), + [anon_sym_def] = ACTIONS(1179), + [anon_sym_export_DASHenv] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_use] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_error] = ACTIONS(1179), + [anon_sym_list] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1179), + [anon_sym_loop] = ACTIONS(1179), + [anon_sym_make] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_else] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1179), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_catch] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_source] = ACTIONS(1179), + [anon_sym_source_DASHenv] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), + [anon_sym_hide_DASHenv] = ACTIONS(1179), + [anon_sym_overlay] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1179), + [anon_sym_STAR_STAR] = ACTIONS(1538), + [anon_sym_PLUS_PLUS] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1179), + [anon_sym_mod] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_bit_DASHshl] = ACTIONS(1179), + [anon_sym_bit_DASHshr] = ACTIONS(1179), + [anon_sym_EQ_EQ] = ACTIONS(1179), + [anon_sym_BANG_EQ] = ACTIONS(1179), + [anon_sym_LT2] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1179), + [anon_sym_GT_EQ] = ACTIONS(1179), + [anon_sym_not_DASHin] = ACTIONS(1179), + [anon_sym_starts_DASHwith] = ACTIONS(1179), + [anon_sym_ends_DASHwith] = ACTIONS(1179), + [anon_sym_EQ_TILDE] = ACTIONS(1179), + [anon_sym_BANG_TILDE] = ACTIONS(1179), + [anon_sym_bit_DASHand] = ACTIONS(1179), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [sym__entry_separator] = ACTIONS(1181), + [aux_sym__record_key_token2] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, [619] = { [sym_comment] = STATE(619), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_RPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1486), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1480), - [anon_sym_PLUS_PLUS] = ACTIONS(1480), - [anon_sym_SLASH] = ACTIONS(1478), - [anon_sym_mod] = ACTIONS(1478), - [anon_sym_SLASH_SLASH] = ACTIONS(1478), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_bit_DASHshl] = ACTIONS(1488), - [anon_sym_bit_DASHshr] = ACTIONS(1488), - [anon_sym_EQ_EQ] = ACTIONS(1482), - [anon_sym_BANG_EQ] = ACTIONS(1482), - [anon_sym_LT2] = ACTIONS(1482), - [anon_sym_LT_EQ] = ACTIONS(1482), - [anon_sym_GT_EQ] = ACTIONS(1482), - [anon_sym_not_DASHin] = ACTIONS(1486), - [anon_sym_starts_DASHwith] = ACTIONS(1486), - [anon_sym_ends_DASHwith] = ACTIONS(1486), - [anon_sym_EQ_TILDE] = ACTIONS(1490), - [anon_sym_BANG_TILDE] = ACTIONS(1490), - [anon_sym_bit_DASHand] = ACTIONS(1492), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_alias] = ACTIONS(1068), + [anon_sym_let] = ACTIONS(1068), + [anon_sym_let_DASHenv] = ACTIONS(1068), + [anon_sym_mut] = ACTIONS(1068), + [anon_sym_const] = ACTIONS(1068), + [sym_cmd_identifier] = ACTIONS(1068), + [anon_sym_def] = ACTIONS(1068), + [anon_sym_export_DASHenv] = ACTIONS(1068), + [anon_sym_extern] = ACTIONS(1068), + [anon_sym_module] = ACTIONS(1068), + [anon_sym_use] = ACTIONS(1068), + [anon_sym_LPAREN] = ACTIONS(1068), + [anon_sym_DOLLAR] = ACTIONS(1068), + [anon_sym_error] = ACTIONS(1068), + [anon_sym_list] = ACTIONS(1068), + [anon_sym_GT] = ACTIONS(1068), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_break] = ACTIONS(1068), + [anon_sym_continue] = ACTIONS(1068), + [anon_sym_for] = ACTIONS(1068), + [anon_sym_in] = ACTIONS(1068), + [anon_sym_loop] = ACTIONS(1068), + [anon_sym_make] = ACTIONS(1068), + [anon_sym_while] = ACTIONS(1068), + [anon_sym_do] = ACTIONS(1068), + [anon_sym_if] = ACTIONS(1068), + [anon_sym_else] = ACTIONS(1068), + [anon_sym_match] = ACTIONS(1068), + [anon_sym_RBRACE] = ACTIONS(1068), + [anon_sym_try] = ACTIONS(1068), + [anon_sym_catch] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1068), + [anon_sym_source] = ACTIONS(1068), + [anon_sym_source_DASHenv] = ACTIONS(1068), + [anon_sym_register] = ACTIONS(1068), + [anon_sym_hide] = ACTIONS(1068), + [anon_sym_hide_DASHenv] = ACTIONS(1068), + [anon_sym_overlay] = ACTIONS(1068), + [anon_sym_new] = ACTIONS(1068), + [anon_sym_as] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_STAR_STAR] = ACTIONS(1068), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_SLASH] = ACTIONS(1068), + [anon_sym_mod] = ACTIONS(1068), + [anon_sym_SLASH_SLASH] = ACTIONS(1068), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_bit_DASHshl] = ACTIONS(1068), + [anon_sym_bit_DASHshr] = ACTIONS(1068), + [anon_sym_EQ_EQ] = ACTIONS(1068), + [anon_sym_BANG_EQ] = ACTIONS(1068), + [anon_sym_LT2] = ACTIONS(1068), + [anon_sym_LT_EQ] = ACTIONS(1068), + [anon_sym_GT_EQ] = ACTIONS(1068), + [anon_sym_not_DASHin] = ACTIONS(1068), + [anon_sym_starts_DASHwith] = ACTIONS(1068), + [anon_sym_ends_DASHwith] = ACTIONS(1068), + [anon_sym_EQ_TILDE] = ACTIONS(1068), + [anon_sym_BANG_TILDE] = ACTIONS(1068), + [anon_sym_bit_DASHand] = ACTIONS(1068), + [anon_sym_bit_DASHxor] = ACTIONS(1068), + [anon_sym_bit_DASHor] = ACTIONS(1068), + [anon_sym_and] = ACTIONS(1068), + [anon_sym_xor] = ACTIONS(1068), + [anon_sym_or] = ACTIONS(1068), + [aux_sym__val_number_decimal_token1] = ACTIONS(1068), + [aux_sym__val_number_decimal_token2] = ACTIONS(1068), + [anon_sym_DOT2] = ACTIONS(1068), + [aux_sym__val_number_decimal_token3] = ACTIONS(1068), + [aux_sym__val_number_token1] = ACTIONS(1068), + [aux_sym__val_number_token2] = ACTIONS(1068), + [aux_sym__val_number_token3] = ACTIONS(1068), + [aux_sym__val_number_token4] = ACTIONS(1068), + [aux_sym__val_number_token5] = ACTIONS(1068), + [aux_sym__val_number_token6] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(1068), + [sym__str_single_quotes] = ACTIONS(1068), + [sym__str_back_ticks] = ACTIONS(1068), + [sym__entry_separator] = ACTIONS(1070), + [aux_sym__record_key_token2] = ACTIONS(1068), [anon_sym_POUND] = ACTIONS(113), }, [620] = { + [sym_pipeline] = STATE(2601), + [sym_pipeline_last] = STATE(9123), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(4804), + [sym__var] = STATE(4386), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(620), - [anon_sym_export] = ACTIONS(1308), - [anon_sym_alias] = ACTIONS(1308), - [anon_sym_let] = ACTIONS(1308), - [anon_sym_let_DASHenv] = ACTIONS(1308), - [anon_sym_mut] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [sym_cmd_identifier] = ACTIONS(1308), - [anon_sym_LF] = ACTIONS(1310), - [anon_sym_def] = ACTIONS(1308), - [anon_sym_export_DASHenv] = ACTIONS(1308), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym_module] = ACTIONS(1308), - [anon_sym_use] = ACTIONS(1308), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_LPAREN] = ACTIONS(1308), - [anon_sym_RPAREN] = ACTIONS(1308), - [anon_sym_DOLLAR] = ACTIONS(1308), - [anon_sym_error] = ACTIONS(1308), - [anon_sym_GT] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_break] = ACTIONS(1308), - [anon_sym_continue] = ACTIONS(1308), - [anon_sym_for] = ACTIONS(1308), - [anon_sym_in] = ACTIONS(1308), - [anon_sym_loop] = ACTIONS(1308), - [anon_sym_while] = ACTIONS(1308), - [anon_sym_do] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_match] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_DOT_DOT] = ACTIONS(1308), - [anon_sym_try] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1308), - [anon_sym_source] = ACTIONS(1308), - [anon_sym_source_DASHenv] = ACTIONS(1308), - [anon_sym_register] = ACTIONS(1308), - [anon_sym_hide] = ACTIONS(1308), - [anon_sym_hide_DASHenv] = ACTIONS(1308), - [anon_sym_overlay] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_where] = ACTIONS(1308), - [anon_sym_STAR_STAR] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(1308), - [anon_sym_mod] = ACTIONS(1308), - [anon_sym_SLASH_SLASH] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_bit_DASHshl] = ACTIONS(1308), - [anon_sym_bit_DASHshr] = ACTIONS(1308), - [anon_sym_EQ_EQ] = ACTIONS(1308), - [anon_sym_BANG_EQ] = ACTIONS(1308), - [anon_sym_LT2] = ACTIONS(1308), - [anon_sym_LT_EQ] = ACTIONS(1308), - [anon_sym_GT_EQ] = ACTIONS(1308), - [anon_sym_not_DASHin] = ACTIONS(1308), - [anon_sym_starts_DASHwith] = ACTIONS(1308), - [anon_sym_ends_DASHwith] = ACTIONS(1308), - [anon_sym_EQ_TILDE] = ACTIONS(1308), - [anon_sym_BANG_TILDE] = ACTIONS(1308), - [anon_sym_bit_DASHand] = ACTIONS(1308), - [anon_sym_bit_DASHxor] = ACTIONS(1308), - [anon_sym_bit_DASHor] = ACTIONS(1308), - [anon_sym_and] = ACTIONS(1308), - [anon_sym_xor] = ACTIONS(1308), - [anon_sym_or] = ACTIONS(1308), - [anon_sym_not] = ACTIONS(1308), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1308), - [anon_sym_DOT_DOT_LT] = ACTIONS(1308), - [anon_sym_null] = ACTIONS(1308), - [anon_sym_true] = ACTIONS(1308), - [anon_sym_false] = ACTIONS(1308), - [aux_sym__val_number_decimal_token1] = ACTIONS(1308), - [aux_sym__val_number_decimal_token2] = ACTIONS(1308), - [anon_sym_DOT2] = ACTIONS(1308), - [aux_sym__val_number_decimal_token3] = ACTIONS(1308), - [aux_sym__val_number_token1] = ACTIONS(1308), - [aux_sym__val_number_token2] = ACTIONS(1308), - [aux_sym__val_number_token3] = ACTIONS(1308), - [aux_sym__val_number_token4] = ACTIONS(1308), - [aux_sym__val_number_token5] = ACTIONS(1308), - [aux_sym__val_number_token6] = ACTIONS(1308), - [anon_sym_0b] = ACTIONS(1308), - [anon_sym_0o] = ACTIONS(1308), - [anon_sym_0x] = ACTIONS(1308), - [sym_val_date] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym__str_single_quotes] = ACTIONS(1308), - [sym__str_back_ticks] = ACTIONS(1308), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1308), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1308), - [anon_sym_CARET] = ACTIONS(1308), - [anon_sym_POUND] = ACTIONS(113), + [aux_sym_pipeline_repeat1] = STATE(764), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_where] = ACTIONS(187), + [anon_sym_not] = ACTIONS(191), + [anon_sym_DOT_DOT_EQ] = ACTIONS(193), + [anon_sym_DOT_DOT_LT] = ACTIONS(193), + [anon_sym_null] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [aux_sym__val_number_decimal_token1] = ACTIONS(199), + [aux_sym__val_number_decimal_token2] = ACTIONS(201), + [anon_sym_DOT2] = ACTIONS(203), + [aux_sym__val_number_decimal_token3] = ACTIONS(205), + [aux_sym__val_number_token1] = ACTIONS(207), + [aux_sym__val_number_token2] = ACTIONS(207), + [aux_sym__val_number_token3] = ACTIONS(207), + [aux_sym__val_number_token4] = ACTIONS(209), + [aux_sym__val_number_token5] = ACTIONS(207), + [aux_sym__val_number_token6] = ACTIONS(209), + [anon_sym_0b] = ACTIONS(211), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym__str_single_quotes] = ACTIONS(219), + [sym__str_back_ticks] = ACTIONS(219), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(227), + [anon_sym_POUND] = ACTIONS(3), }, [621] = { + [sym_pipeline] = STATE(2601), + [sym_pipeline_last] = STATE(9744), + [sym__ctrl_expression] = STATE(8658), + [sym_ctrl_do] = STATE(9613), + [sym_ctrl_if] = STATE(9613), + [sym_ctrl_match] = STATE(9613), + [sym_ctrl_try] = STATE(9613), + [sym_ctrl_return] = STATE(9613), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(9153), + [sym_where_command] = STATE(8524), + [sym__expression] = STATE(8524), + [sym_expr_unary] = STATE(5890), + [sym__expr_unary_minus] = STATE(5878), + [sym_expr_binary] = STATE(5890), + [sym__expr_binary_expression] = STATE(6380), + [sym_expr_parenthesized] = STATE(5154), + [sym_val_range] = STATE(8295), + [sym__value] = STATE(5890), + [sym_val_nothing] = STATE(5931), + [sym_val_bool] = STATE(5931), + [sym_val_variable] = STATE(5103), + [sym__var] = STATE(4428), + [sym_val_number] = STATE(5931), + [sym__val_number_decimal] = STATE(4371), + [sym__val_number] = STATE(5285), + [sym_val_duration] = STATE(5931), + [sym_val_filesize] = STATE(5931), + [sym_val_binary] = STATE(5931), + [sym_val_string] = STATE(5931), + [sym__str_double_quotes] = STATE(5888), + [sym_val_interpolated] = STATE(5931), + [sym__inter_single_quotes] = STATE(5935), + [sym__inter_double_quotes] = STATE(5940), + [sym_val_list] = STATE(5931), + [sym_val_record] = STATE(5931), + [sym_val_table] = STATE(5931), + [sym_val_closure] = STATE(5931), + [sym_command] = STATE(8524), [sym_comment] = STATE(621), - [anon_sym_export] = ACTIONS(1312), - [anon_sym_alias] = ACTIONS(1312), - [anon_sym_let] = ACTIONS(1312), - [anon_sym_let_DASHenv] = ACTIONS(1312), - [anon_sym_mut] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [sym_cmd_identifier] = ACTIONS(1312), - [anon_sym_LF] = ACTIONS(1314), - [anon_sym_def] = ACTIONS(1312), - [anon_sym_export_DASHenv] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym_module] = ACTIONS(1312), - [anon_sym_use] = ACTIONS(1312), - [anon_sym_LBRACK] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1312), - [anon_sym_RPAREN] = ACTIONS(1312), - [anon_sym_DOLLAR] = ACTIONS(1312), - [anon_sym_error] = ACTIONS(1312), - [anon_sym_GT] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_in] = ACTIONS(1312), - [anon_sym_loop] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_match] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_RBRACE] = ACTIONS(1312), - [anon_sym_DOT_DOT] = ACTIONS(1312), - [anon_sym_try] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_source] = ACTIONS(1312), - [anon_sym_source_DASHenv] = ACTIONS(1312), - [anon_sym_register] = ACTIONS(1312), - [anon_sym_hide] = ACTIONS(1312), - [anon_sym_hide_DASHenv] = ACTIONS(1312), - [anon_sym_overlay] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_where] = ACTIONS(1312), - [anon_sym_STAR_STAR] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_SLASH] = ACTIONS(1312), - [anon_sym_mod] = ACTIONS(1312), - [anon_sym_SLASH_SLASH] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_bit_DASHshl] = ACTIONS(1312), - [anon_sym_bit_DASHshr] = ACTIONS(1312), - [anon_sym_EQ_EQ] = ACTIONS(1312), - [anon_sym_BANG_EQ] = ACTIONS(1312), - [anon_sym_LT2] = ACTIONS(1312), - [anon_sym_LT_EQ] = ACTIONS(1312), - [anon_sym_GT_EQ] = ACTIONS(1312), - [anon_sym_not_DASHin] = ACTIONS(1312), - [anon_sym_starts_DASHwith] = ACTIONS(1312), - [anon_sym_ends_DASHwith] = ACTIONS(1312), - [anon_sym_EQ_TILDE] = ACTIONS(1312), - [anon_sym_BANG_TILDE] = ACTIONS(1312), - [anon_sym_bit_DASHand] = ACTIONS(1312), - [anon_sym_bit_DASHxor] = ACTIONS(1312), - [anon_sym_bit_DASHor] = ACTIONS(1312), - [anon_sym_and] = ACTIONS(1312), - [anon_sym_xor] = ACTIONS(1312), - [anon_sym_or] = ACTIONS(1312), - [anon_sym_not] = ACTIONS(1312), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1312), - [anon_sym_DOT_DOT_LT] = ACTIONS(1312), - [anon_sym_null] = ACTIONS(1312), - [anon_sym_true] = ACTIONS(1312), - [anon_sym_false] = ACTIONS(1312), - [aux_sym__val_number_decimal_token1] = ACTIONS(1312), - [aux_sym__val_number_decimal_token2] = ACTIONS(1312), - [anon_sym_DOT2] = ACTIONS(1312), - [aux_sym__val_number_decimal_token3] = ACTIONS(1312), - [aux_sym__val_number_token1] = ACTIONS(1312), - [aux_sym__val_number_token2] = ACTIONS(1312), - [aux_sym__val_number_token3] = ACTIONS(1312), - [aux_sym__val_number_token4] = ACTIONS(1312), - [aux_sym__val_number_token5] = ACTIONS(1312), - [aux_sym__val_number_token6] = ACTIONS(1312), - [anon_sym_0b] = ACTIONS(1312), - [anon_sym_0o] = ACTIONS(1312), - [anon_sym_0x] = ACTIONS(1312), - [sym_val_date] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym__str_single_quotes] = ACTIONS(1312), - [sym__str_back_ticks] = ACTIONS(1312), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1312), - [anon_sym_CARET] = ACTIONS(1312), - [anon_sym_POUND] = ACTIONS(113), + [aux_sym_pipeline_repeat1] = STATE(766), + [sym_cmd_identifier] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(1528), + [anon_sym_DASH] = ACTIONS(39), + [anon_sym_break] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_match] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_DOT_DOT] = ACTIONS(59), + [anon_sym_try] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_where] = ACTIONS(75), + [anon_sym_not] = ACTIONS(77), + [anon_sym_DOT_DOT_EQ] = ACTIONS(79), + [anon_sym_DOT_DOT_LT] = ACTIONS(79), + [anon_sym_null] = ACTIONS(81), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [aux_sym__val_number_decimal_token1] = ACTIONS(85), + [aux_sym__val_number_decimal_token2] = ACTIONS(87), + [anon_sym_DOT2] = ACTIONS(89), + [aux_sym__val_number_decimal_token3] = ACTIONS(91), + [aux_sym__val_number_token1] = ACTIONS(93), + [aux_sym__val_number_token2] = ACTIONS(93), + [aux_sym__val_number_token3] = ACTIONS(93), + [aux_sym__val_number_token4] = ACTIONS(95), + [aux_sym__val_number_token5] = ACTIONS(93), + [aux_sym__val_number_token6] = ACTIONS(95), + [anon_sym_0b] = ACTIONS(97), + [anon_sym_0o] = ACTIONS(99), + [anon_sym_0x] = ACTIONS(99), + [sym_val_date] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym__str_single_quotes] = ACTIONS(105), + [sym__str_back_ticks] = ACTIONS(105), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(109), + [anon_sym_CARET] = ACTIONS(111), + [anon_sym_POUND] = ACTIONS(3), }, [622] = { [sym_comment] = STATE(622), - [anon_sym_export] = ACTIONS(1302), - [anon_sym_alias] = ACTIONS(1302), - [anon_sym_let] = ACTIONS(1302), - [anon_sym_let_DASHenv] = ACTIONS(1302), - [anon_sym_mut] = ACTIONS(1302), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1302), - [sym_cmd_identifier] = ACTIONS(1302), - [anon_sym_LF] = ACTIONS(1304), - [anon_sym_def] = ACTIONS(1302), - [anon_sym_export_DASHenv] = ACTIONS(1302), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_module] = ACTIONS(1302), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_LBRACK] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_RPAREN] = ACTIONS(1302), - [anon_sym_DOLLAR] = ACTIONS(1302), - [anon_sym_error] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_break] = ACTIONS(1302), - [anon_sym_continue] = ACTIONS(1302), - [anon_sym_for] = ACTIONS(1302), - [anon_sym_in] = ACTIONS(1302), - [anon_sym_loop] = ACTIONS(1302), - [anon_sym_while] = ACTIONS(1302), - [anon_sym_do] = ACTIONS(1302), - [anon_sym_if] = ACTIONS(1302), - [anon_sym_match] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_RBRACE] = ACTIONS(1302), - [anon_sym_DOT_DOT] = ACTIONS(1302), - [anon_sym_try] = ACTIONS(1302), - [anon_sym_return] = ACTIONS(1302), - [anon_sym_source] = ACTIONS(1302), - [anon_sym_source_DASHenv] = ACTIONS(1302), - [anon_sym_register] = ACTIONS(1302), - [anon_sym_hide] = ACTIONS(1302), - [anon_sym_hide_DASHenv] = ACTIONS(1302), - [anon_sym_overlay] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_where] = ACTIONS(1302), - [anon_sym_STAR_STAR] = ACTIONS(1302), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_SLASH] = ACTIONS(1302), - [anon_sym_mod] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_bit_DASHshl] = ACTIONS(1302), - [anon_sym_bit_DASHshr] = ACTIONS(1302), - [anon_sym_EQ_EQ] = ACTIONS(1302), - [anon_sym_BANG_EQ] = ACTIONS(1302), - [anon_sym_LT2] = ACTIONS(1302), - [anon_sym_LT_EQ] = ACTIONS(1302), - [anon_sym_GT_EQ] = ACTIONS(1302), - [anon_sym_not_DASHin] = ACTIONS(1302), - [anon_sym_starts_DASHwith] = ACTIONS(1302), - [anon_sym_ends_DASHwith] = ACTIONS(1302), - [anon_sym_EQ_TILDE] = ACTIONS(1302), - [anon_sym_BANG_TILDE] = ACTIONS(1302), - [anon_sym_bit_DASHand] = ACTIONS(1302), - [anon_sym_bit_DASHxor] = ACTIONS(1302), - [anon_sym_bit_DASHor] = ACTIONS(1302), - [anon_sym_and] = ACTIONS(1302), - [anon_sym_xor] = ACTIONS(1302), - [anon_sym_or] = ACTIONS(1302), - [anon_sym_not] = ACTIONS(1302), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1302), - [anon_sym_DOT_DOT_LT] = ACTIONS(1302), - [anon_sym_null] = ACTIONS(1302), - [anon_sym_true] = ACTIONS(1302), - [anon_sym_false] = ACTIONS(1302), - [aux_sym__val_number_decimal_token1] = ACTIONS(1302), - [aux_sym__val_number_decimal_token2] = ACTIONS(1302), - [anon_sym_DOT2] = ACTIONS(1302), - [aux_sym__val_number_decimal_token3] = ACTIONS(1302), - [aux_sym__val_number_token1] = ACTIONS(1302), - [aux_sym__val_number_token2] = ACTIONS(1302), - [aux_sym__val_number_token3] = ACTIONS(1302), - [aux_sym__val_number_token4] = ACTIONS(1302), - [aux_sym__val_number_token5] = ACTIONS(1302), - [aux_sym__val_number_token6] = ACTIONS(1302), - [anon_sym_0b] = ACTIONS(1302), - [anon_sym_0o] = ACTIONS(1302), - [anon_sym_0x] = ACTIONS(1302), - [sym_val_date] = ACTIONS(1302), - [anon_sym_DQUOTE] = ACTIONS(1302), - [sym__str_single_quotes] = ACTIONS(1302), - [sym__str_back_ticks] = ACTIONS(1302), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1302), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1302), - [anon_sym_CARET] = ACTIONS(1302), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_list] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_make] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_else] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_catch] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [sym__entry_separator] = ACTIONS(1173), + [aux_sym__record_key_token2] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, [623] = { + [sym_pipeline] = STATE(2542), + [sym_pipeline_last] = STATE(9393), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(4804), + [sym__var] = STATE(4386), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(623), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), + [aux_sym_pipeline_repeat1] = STATE(764), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_where] = ACTIONS(187), + [anon_sym_not] = ACTIONS(191), + [anon_sym_DOT_DOT_EQ] = ACTIONS(193), + [anon_sym_DOT_DOT_LT] = ACTIONS(193), + [anon_sym_null] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [aux_sym__val_number_decimal_token1] = ACTIONS(199), + [aux_sym__val_number_decimal_token2] = ACTIONS(201), + [anon_sym_DOT2] = ACTIONS(203), + [aux_sym__val_number_decimal_token3] = ACTIONS(205), + [aux_sym__val_number_token1] = ACTIONS(207), + [aux_sym__val_number_token2] = ACTIONS(207), + [aux_sym__val_number_token3] = ACTIONS(207), + [aux_sym__val_number_token4] = ACTIONS(209), + [aux_sym__val_number_token5] = ACTIONS(207), + [aux_sym__val_number_token6] = ACTIONS(209), + [anon_sym_0b] = ACTIONS(211), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym__str_single_quotes] = ACTIONS(219), + [sym__str_back_ticks] = ACTIONS(219), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(227), + [anon_sym_POUND] = ACTIONS(3), }, [624] = { [sym_comment] = STATE(624), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_alias] = ACTIONS(1332), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_let_DASHenv] = ACTIONS(1332), - [anon_sym_mut] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1332), - [sym_cmd_identifier] = ACTIONS(1332), - [anon_sym_LF] = ACTIONS(1334), - [anon_sym_def] = ACTIONS(1332), - [anon_sym_export_DASHenv] = ACTIONS(1332), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_use] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1332), - [anon_sym_RPAREN] = ACTIONS(1332), - [anon_sym_DOLLAR] = ACTIONS(1332), - [anon_sym_error] = ACTIONS(1332), - [anon_sym_GT] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_in] = ACTIONS(1332), - [anon_sym_loop] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_do] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_match] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_RBRACE] = ACTIONS(1332), - [anon_sym_DOT_DOT] = ACTIONS(1332), - [anon_sym_try] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_source] = ACTIONS(1332), - [anon_sym_source_DASHenv] = ACTIONS(1332), - [anon_sym_register] = ACTIONS(1332), - [anon_sym_hide] = ACTIONS(1332), - [anon_sym_hide_DASHenv] = ACTIONS(1332), - [anon_sym_overlay] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_where] = ACTIONS(1332), - [anon_sym_STAR_STAR] = ACTIONS(1332), - [anon_sym_PLUS_PLUS] = ACTIONS(1332), - [anon_sym_SLASH] = ACTIONS(1332), - [anon_sym_mod] = ACTIONS(1332), - [anon_sym_SLASH_SLASH] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_bit_DASHshl] = ACTIONS(1332), - [anon_sym_bit_DASHshr] = ACTIONS(1332), - [anon_sym_EQ_EQ] = ACTIONS(1332), - [anon_sym_BANG_EQ] = ACTIONS(1332), - [anon_sym_LT2] = ACTIONS(1332), - [anon_sym_LT_EQ] = ACTIONS(1332), - [anon_sym_GT_EQ] = ACTIONS(1332), - [anon_sym_not_DASHin] = ACTIONS(1332), - [anon_sym_starts_DASHwith] = ACTIONS(1332), - [anon_sym_ends_DASHwith] = ACTIONS(1332), - [anon_sym_EQ_TILDE] = ACTIONS(1332), - [anon_sym_BANG_TILDE] = ACTIONS(1332), - [anon_sym_bit_DASHand] = ACTIONS(1332), - [anon_sym_bit_DASHxor] = ACTIONS(1332), - [anon_sym_bit_DASHor] = ACTIONS(1332), - [anon_sym_and] = ACTIONS(1332), - [anon_sym_xor] = ACTIONS(1332), - [anon_sym_or] = ACTIONS(1332), - [anon_sym_not] = ACTIONS(1332), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1332), - [anon_sym_DOT_DOT_LT] = ACTIONS(1332), - [anon_sym_null] = ACTIONS(1332), - [anon_sym_true] = ACTIONS(1332), - [anon_sym_false] = ACTIONS(1332), - [aux_sym__val_number_decimal_token1] = ACTIONS(1332), - [aux_sym__val_number_decimal_token2] = ACTIONS(1332), - [anon_sym_DOT2] = ACTIONS(1332), - [aux_sym__val_number_decimal_token3] = ACTIONS(1332), - [aux_sym__val_number_token1] = ACTIONS(1332), - [aux_sym__val_number_token2] = ACTIONS(1332), - [aux_sym__val_number_token3] = ACTIONS(1332), - [aux_sym__val_number_token4] = ACTIONS(1332), - [aux_sym__val_number_token5] = ACTIONS(1332), - [aux_sym__val_number_token6] = ACTIONS(1332), - [anon_sym_0b] = ACTIONS(1332), - [anon_sym_0o] = ACTIONS(1332), - [anon_sym_0x] = ACTIONS(1332), - [sym_val_date] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym__str_single_quotes] = ACTIONS(1332), - [sym__str_back_ticks] = ACTIONS(1332), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1332), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1332), - [anon_sym_CARET] = ACTIONS(1332), + [anon_sym_export] = ACTIONS(1179), + [anon_sym_alias] = ACTIONS(1179), + [anon_sym_let] = ACTIONS(1179), + [anon_sym_let_DASHenv] = ACTIONS(1179), + [anon_sym_mut] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [sym_cmd_identifier] = ACTIONS(1179), + [anon_sym_def] = ACTIONS(1179), + [anon_sym_export_DASHenv] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_use] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_error] = ACTIONS(1179), + [anon_sym_list] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1534), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1179), + [anon_sym_loop] = ACTIONS(1179), + [anon_sym_make] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_else] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1179), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_catch] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_source] = ACTIONS(1179), + [anon_sym_source_DASHenv] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), + [anon_sym_hide_DASHenv] = ACTIONS(1179), + [anon_sym_overlay] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_STAR_STAR] = ACTIONS(1538), + [anon_sym_PLUS_PLUS] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1536), + [anon_sym_mod] = ACTIONS(1536), + [anon_sym_SLASH_SLASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1534), + [anon_sym_bit_DASHshl] = ACTIONS(1546), + [anon_sym_bit_DASHshr] = ACTIONS(1546), + [anon_sym_EQ_EQ] = ACTIONS(1179), + [anon_sym_BANG_EQ] = ACTIONS(1179), + [anon_sym_LT2] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1179), + [anon_sym_GT_EQ] = ACTIONS(1179), + [anon_sym_not_DASHin] = ACTIONS(1179), + [anon_sym_starts_DASHwith] = ACTIONS(1179), + [anon_sym_ends_DASHwith] = ACTIONS(1179), + [anon_sym_EQ_TILDE] = ACTIONS(1179), + [anon_sym_BANG_TILDE] = ACTIONS(1179), + [anon_sym_bit_DASHand] = ACTIONS(1179), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [sym__entry_separator] = ACTIONS(1181), + [aux_sym__record_key_token2] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, [625] = { [sym_comment] = STATE(625), - [anon_sym_export] = ACTIONS(1336), - [anon_sym_alias] = ACTIONS(1336), - [anon_sym_let] = ACTIONS(1336), - [anon_sym_let_DASHenv] = ACTIONS(1336), - [anon_sym_mut] = ACTIONS(1336), - [anon_sym_const] = ACTIONS(1336), - [anon_sym_SEMI] = ACTIONS(1336), - [sym_cmd_identifier] = ACTIONS(1336), - [anon_sym_LF] = ACTIONS(1338), - [anon_sym_def] = ACTIONS(1336), - [anon_sym_export_DASHenv] = ACTIONS(1336), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym_module] = ACTIONS(1336), - [anon_sym_use] = ACTIONS(1336), - [anon_sym_LBRACK] = ACTIONS(1336), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_RPAREN] = ACTIONS(1336), - [anon_sym_DOLLAR] = ACTIONS(1336), - [anon_sym_error] = ACTIONS(1336), - [anon_sym_GT] = ACTIONS(1336), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_break] = ACTIONS(1336), - [anon_sym_continue] = ACTIONS(1336), - [anon_sym_for] = ACTIONS(1336), - [anon_sym_in] = ACTIONS(1336), - [anon_sym_loop] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1336), - [anon_sym_do] = ACTIONS(1336), - [anon_sym_if] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_RBRACE] = ACTIONS(1336), - [anon_sym_DOT_DOT] = ACTIONS(1336), - [anon_sym_try] = ACTIONS(1336), - [anon_sym_return] = ACTIONS(1336), - [anon_sym_source] = ACTIONS(1336), - [anon_sym_source_DASHenv] = ACTIONS(1336), - [anon_sym_register] = ACTIONS(1336), - [anon_sym_hide] = ACTIONS(1336), - [anon_sym_hide_DASHenv] = ACTIONS(1336), - [anon_sym_overlay] = ACTIONS(1336), - [anon_sym_STAR] = ACTIONS(1336), - [anon_sym_where] = ACTIONS(1336), - [anon_sym_STAR_STAR] = ACTIONS(1336), - [anon_sym_PLUS_PLUS] = ACTIONS(1336), - [anon_sym_SLASH] = ACTIONS(1336), - [anon_sym_mod] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(1336), - [anon_sym_PLUS] = ACTIONS(1336), - [anon_sym_bit_DASHshl] = ACTIONS(1336), - [anon_sym_bit_DASHshr] = ACTIONS(1336), - [anon_sym_EQ_EQ] = ACTIONS(1336), - [anon_sym_BANG_EQ] = ACTIONS(1336), - [anon_sym_LT2] = ACTIONS(1336), - [anon_sym_LT_EQ] = ACTIONS(1336), - [anon_sym_GT_EQ] = ACTIONS(1336), - [anon_sym_not_DASHin] = ACTIONS(1336), - [anon_sym_starts_DASHwith] = ACTIONS(1336), - [anon_sym_ends_DASHwith] = ACTIONS(1336), - [anon_sym_EQ_TILDE] = ACTIONS(1336), - [anon_sym_BANG_TILDE] = ACTIONS(1336), - [anon_sym_bit_DASHand] = ACTIONS(1336), - [anon_sym_bit_DASHxor] = ACTIONS(1336), - [anon_sym_bit_DASHor] = ACTIONS(1336), - [anon_sym_and] = ACTIONS(1336), - [anon_sym_xor] = ACTIONS(1336), - [anon_sym_or] = ACTIONS(1336), - [anon_sym_not] = ACTIONS(1336), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1336), - [anon_sym_DOT_DOT_LT] = ACTIONS(1336), - [anon_sym_null] = ACTIONS(1336), - [anon_sym_true] = ACTIONS(1336), - [anon_sym_false] = ACTIONS(1336), - [aux_sym__val_number_decimal_token1] = ACTIONS(1336), - [aux_sym__val_number_decimal_token2] = ACTIONS(1336), - [anon_sym_DOT2] = ACTIONS(1336), - [aux_sym__val_number_decimal_token3] = ACTIONS(1336), - [aux_sym__val_number_token1] = ACTIONS(1336), - [aux_sym__val_number_token2] = ACTIONS(1336), - [aux_sym__val_number_token3] = ACTIONS(1336), - [aux_sym__val_number_token4] = ACTIONS(1336), - [aux_sym__val_number_token5] = ACTIONS(1336), - [aux_sym__val_number_token6] = ACTIONS(1336), - [anon_sym_0b] = ACTIONS(1336), - [anon_sym_0o] = ACTIONS(1336), - [anon_sym_0x] = ACTIONS(1336), - [sym_val_date] = ACTIONS(1336), - [anon_sym_DQUOTE] = ACTIONS(1336), - [sym__str_single_quotes] = ACTIONS(1336), - [sym__str_back_ticks] = ACTIONS(1336), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1336), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1336), - [anon_sym_CARET] = ACTIONS(1336), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_list] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_make] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_else] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_catch] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [sym__entry_separator] = ACTIONS(1173), + [aux_sym__record_key_token2] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, [626] = { [sym_comment] = STATE(626), - [anon_sym_export] = ACTIONS(1320), - [anon_sym_alias] = ACTIONS(1320), - [anon_sym_let] = ACTIONS(1320), - [anon_sym_let_DASHenv] = ACTIONS(1320), - [anon_sym_mut] = ACTIONS(1320), - [anon_sym_const] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [sym_cmd_identifier] = ACTIONS(1320), - [anon_sym_LF] = ACTIONS(1322), - [anon_sym_def] = ACTIONS(1320), - [anon_sym_export_DASHenv] = ACTIONS(1320), - [anon_sym_extern] = ACTIONS(1320), - [anon_sym_module] = ACTIONS(1320), - [anon_sym_use] = ACTIONS(1320), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_LPAREN] = ACTIONS(1320), - [anon_sym_RPAREN] = ACTIONS(1320), - [anon_sym_DOLLAR] = ACTIONS(1320), - [anon_sym_error] = ACTIONS(1320), - [anon_sym_GT] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1320), - [anon_sym_continue] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_in] = ACTIONS(1320), - [anon_sym_loop] = ACTIONS(1320), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_do] = ACTIONS(1320), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_match] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_RBRACE] = ACTIONS(1320), - [anon_sym_DOT_DOT] = ACTIONS(1320), - [anon_sym_try] = ACTIONS(1320), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_source] = ACTIONS(1320), - [anon_sym_source_DASHenv] = ACTIONS(1320), - [anon_sym_register] = ACTIONS(1320), - [anon_sym_hide] = ACTIONS(1320), - [anon_sym_hide_DASHenv] = ACTIONS(1320), - [anon_sym_overlay] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_where] = ACTIONS(1320), - [anon_sym_STAR_STAR] = ACTIONS(1320), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_SLASH] = ACTIONS(1320), - [anon_sym_mod] = ACTIONS(1320), - [anon_sym_SLASH_SLASH] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1320), - [anon_sym_bit_DASHshl] = ACTIONS(1320), - [anon_sym_bit_DASHshr] = ACTIONS(1320), - [anon_sym_EQ_EQ] = ACTIONS(1320), - [anon_sym_BANG_EQ] = ACTIONS(1320), - [anon_sym_LT2] = ACTIONS(1320), - [anon_sym_LT_EQ] = ACTIONS(1320), - [anon_sym_GT_EQ] = ACTIONS(1320), - [anon_sym_not_DASHin] = ACTIONS(1320), - [anon_sym_starts_DASHwith] = ACTIONS(1320), - [anon_sym_ends_DASHwith] = ACTIONS(1320), - [anon_sym_EQ_TILDE] = ACTIONS(1320), - [anon_sym_BANG_TILDE] = ACTIONS(1320), - [anon_sym_bit_DASHand] = ACTIONS(1320), - [anon_sym_bit_DASHxor] = ACTIONS(1320), - [anon_sym_bit_DASHor] = ACTIONS(1320), - [anon_sym_and] = ACTIONS(1320), - [anon_sym_xor] = ACTIONS(1320), - [anon_sym_or] = ACTIONS(1320), - [anon_sym_not] = ACTIONS(1320), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1320), - [anon_sym_DOT_DOT_LT] = ACTIONS(1320), - [anon_sym_null] = ACTIONS(1320), - [anon_sym_true] = ACTIONS(1320), - [anon_sym_false] = ACTIONS(1320), - [aux_sym__val_number_decimal_token1] = ACTIONS(1320), - [aux_sym__val_number_decimal_token2] = ACTIONS(1320), - [anon_sym_DOT2] = ACTIONS(1320), - [aux_sym__val_number_decimal_token3] = ACTIONS(1320), - [aux_sym__val_number_token1] = ACTIONS(1320), - [aux_sym__val_number_token2] = ACTIONS(1320), - [aux_sym__val_number_token3] = ACTIONS(1320), - [aux_sym__val_number_token4] = ACTIONS(1320), - [aux_sym__val_number_token5] = ACTIONS(1320), - [aux_sym__val_number_token6] = ACTIONS(1320), - [anon_sym_0b] = ACTIONS(1320), - [anon_sym_0o] = ACTIONS(1320), - [anon_sym_0x] = ACTIONS(1320), - [sym_val_date] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1320), - [sym__str_single_quotes] = ACTIONS(1320), - [sym__str_back_ticks] = ACTIONS(1320), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1320), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1320), - [anon_sym_CARET] = ACTIONS(1320), + [anon_sym_export] = ACTIONS(1155), + [anon_sym_alias] = ACTIONS(1155), + [anon_sym_let] = ACTIONS(1155), + [anon_sym_let_DASHenv] = ACTIONS(1155), + [anon_sym_mut] = ACTIONS(1155), + [anon_sym_const] = ACTIONS(1155), + [sym_cmd_identifier] = ACTIONS(1155), + [anon_sym_def] = ACTIONS(1155), + [anon_sym_export_DASHenv] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1155), + [anon_sym_module] = ACTIONS(1155), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_LPAREN] = ACTIONS(1155), + [anon_sym_DOLLAR] = ACTIONS(1155), + [anon_sym_error] = ACTIONS(1155), + [anon_sym_list] = ACTIONS(1155), + [anon_sym_GT] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_break] = ACTIONS(1155), + [anon_sym_continue] = ACTIONS(1155), + [anon_sym_for] = ACTIONS(1155), + [anon_sym_in] = ACTIONS(1155), + [anon_sym_loop] = ACTIONS(1155), + [anon_sym_make] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(1155), + [anon_sym_do] = ACTIONS(1155), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_else] = ACTIONS(1155), + [anon_sym_match] = ACTIONS(1155), + [anon_sym_RBRACE] = ACTIONS(1155), + [anon_sym_try] = ACTIONS(1155), + [anon_sym_catch] = ACTIONS(1155), + [anon_sym_return] = ACTIONS(1155), + [anon_sym_source] = ACTIONS(1155), + [anon_sym_source_DASHenv] = ACTIONS(1155), + [anon_sym_register] = ACTIONS(1155), + [anon_sym_hide] = ACTIONS(1155), + [anon_sym_hide_DASHenv] = ACTIONS(1155), + [anon_sym_overlay] = ACTIONS(1155), + [anon_sym_new] = ACTIONS(1155), + [anon_sym_as] = ACTIONS(1155), + [anon_sym_STAR] = ACTIONS(1155), + [anon_sym_STAR_STAR] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(1155), + [anon_sym_mod] = ACTIONS(1155), + [anon_sym_SLASH_SLASH] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_bit_DASHshl] = ACTIONS(1155), + [anon_sym_bit_DASHshr] = ACTIONS(1155), + [anon_sym_EQ_EQ] = ACTIONS(1155), + [anon_sym_BANG_EQ] = ACTIONS(1155), + [anon_sym_LT2] = ACTIONS(1155), + [anon_sym_LT_EQ] = ACTIONS(1155), + [anon_sym_GT_EQ] = ACTIONS(1155), + [anon_sym_not_DASHin] = ACTIONS(1155), + [anon_sym_starts_DASHwith] = ACTIONS(1155), + [anon_sym_ends_DASHwith] = ACTIONS(1155), + [anon_sym_EQ_TILDE] = ACTIONS(1155), + [anon_sym_BANG_TILDE] = ACTIONS(1155), + [anon_sym_bit_DASHand] = ACTIONS(1155), + [anon_sym_bit_DASHxor] = ACTIONS(1155), + [anon_sym_bit_DASHor] = ACTIONS(1155), + [anon_sym_and] = ACTIONS(1155), + [anon_sym_xor] = ACTIONS(1155), + [anon_sym_or] = ACTIONS(1155), + [aux_sym__val_number_decimal_token1] = ACTIONS(1155), + [aux_sym__val_number_decimal_token2] = ACTIONS(1155), + [anon_sym_DOT2] = ACTIONS(1155), + [aux_sym__val_number_decimal_token3] = ACTIONS(1155), + [aux_sym__val_number_token1] = ACTIONS(1155), + [aux_sym__val_number_token2] = ACTIONS(1155), + [aux_sym__val_number_token3] = ACTIONS(1155), + [aux_sym__val_number_token4] = ACTIONS(1155), + [aux_sym__val_number_token5] = ACTIONS(1155), + [aux_sym__val_number_token6] = ACTIONS(1155), + [anon_sym_DQUOTE] = ACTIONS(1155), + [sym__str_single_quotes] = ACTIONS(1155), + [sym__str_back_ticks] = ACTIONS(1155), + [sym__entry_separator] = ACTIONS(1157), + [aux_sym__record_key_token2] = ACTIONS(1155), [anon_sym_POUND] = ACTIONS(113), }, [627] = { [sym_comment] = STATE(627), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_alias] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_let_DASHenv] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1350), - [sym_cmd_identifier] = ACTIONS(1350), - [anon_sym_LF] = ACTIONS(1352), - [anon_sym_def] = ACTIONS(1350), - [anon_sym_export_DASHenv] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_LBRACK] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1350), - [anon_sym_RPAREN] = ACTIONS(1350), - [anon_sym_DOLLAR] = ACTIONS(1350), - [anon_sym_error] = ACTIONS(1350), - [anon_sym_GT] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_in] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1350), - [anon_sym_DOT_DOT] = ACTIONS(1350), - [anon_sym_try] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_source] = ACTIONS(1350), - [anon_sym_source_DASHenv] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_hide] = ACTIONS(1350), - [anon_sym_hide_DASHenv] = ACTIONS(1350), - [anon_sym_overlay] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_where] = ACTIONS(1350), - [anon_sym_STAR_STAR] = ACTIONS(1350), - [anon_sym_PLUS_PLUS] = ACTIONS(1350), - [anon_sym_SLASH] = ACTIONS(1350), - [anon_sym_mod] = ACTIONS(1350), - [anon_sym_SLASH_SLASH] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_bit_DASHshl] = ACTIONS(1350), - [anon_sym_bit_DASHshr] = ACTIONS(1350), - [anon_sym_EQ_EQ] = ACTIONS(1350), - [anon_sym_BANG_EQ] = ACTIONS(1350), - [anon_sym_LT2] = ACTIONS(1350), - [anon_sym_LT_EQ] = ACTIONS(1350), - [anon_sym_GT_EQ] = ACTIONS(1350), - [anon_sym_not_DASHin] = ACTIONS(1350), - [anon_sym_starts_DASHwith] = ACTIONS(1350), - [anon_sym_ends_DASHwith] = ACTIONS(1350), - [anon_sym_EQ_TILDE] = ACTIONS(1350), - [anon_sym_BANG_TILDE] = ACTIONS(1350), - [anon_sym_bit_DASHand] = ACTIONS(1350), - [anon_sym_bit_DASHxor] = ACTIONS(1350), - [anon_sym_bit_DASHor] = ACTIONS(1350), - [anon_sym_and] = ACTIONS(1350), - [anon_sym_xor] = ACTIONS(1350), - [anon_sym_or] = ACTIONS(1350), - [anon_sym_not] = ACTIONS(1350), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1350), - [anon_sym_DOT_DOT_LT] = ACTIONS(1350), - [anon_sym_null] = ACTIONS(1350), - [anon_sym_true] = ACTIONS(1350), - [anon_sym_false] = ACTIONS(1350), - [aux_sym__val_number_decimal_token1] = ACTIONS(1350), - [aux_sym__val_number_decimal_token2] = ACTIONS(1350), - [anon_sym_DOT2] = ACTIONS(1350), - [aux_sym__val_number_decimal_token3] = ACTIONS(1350), - [aux_sym__val_number_token1] = ACTIONS(1350), - [aux_sym__val_number_token2] = ACTIONS(1350), - [aux_sym__val_number_token3] = ACTIONS(1350), - [aux_sym__val_number_token4] = ACTIONS(1350), - [aux_sym__val_number_token5] = ACTIONS(1350), - [aux_sym__val_number_token6] = ACTIONS(1350), - [anon_sym_0b] = ACTIONS(1350), - [anon_sym_0o] = ACTIONS(1350), - [anon_sym_0x] = ACTIONS(1350), - [sym_val_date] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [sym__str_single_quotes] = ACTIONS(1350), - [sym__str_back_ticks] = ACTIONS(1350), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1350), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1350), - [anon_sym_CARET] = ACTIONS(1350), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1037), + [anon_sym_alias] = ACTIONS(1037), + [anon_sym_let] = ACTIONS(1037), + [anon_sym_let_DASHenv] = ACTIONS(1037), + [anon_sym_mut] = ACTIONS(1037), + [anon_sym_const] = ACTIONS(1037), + [sym_cmd_identifier] = ACTIONS(1037), + [anon_sym_def] = ACTIONS(1037), + [anon_sym_export_DASHenv] = ACTIONS(1037), + [anon_sym_extern] = ACTIONS(1037), + [anon_sym_module] = ACTIONS(1037), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_LPAREN] = ACTIONS(1039), + [anon_sym_DOLLAR] = ACTIONS(1039), + [anon_sym_error] = ACTIONS(1037), + [anon_sym_list] = ACTIONS(1037), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_break] = ACTIONS(1037), + [anon_sym_continue] = ACTIONS(1037), + [anon_sym_for] = ACTIONS(1037), + [anon_sym_in] = ACTIONS(1037), + [anon_sym_loop] = ACTIONS(1037), + [anon_sym_make] = ACTIONS(1037), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_do] = ACTIONS(1037), + [anon_sym_if] = ACTIONS(1037), + [anon_sym_else] = ACTIONS(1037), + [anon_sym_match] = ACTIONS(1037), + [anon_sym_RBRACE] = ACTIONS(1039), + [anon_sym_try] = ACTIONS(1037), + [anon_sym_catch] = ACTIONS(1037), + [anon_sym_return] = ACTIONS(1037), + [anon_sym_source] = ACTIONS(1037), + [anon_sym_source_DASHenv] = ACTIONS(1037), + [anon_sym_register] = ACTIONS(1037), + [anon_sym_hide] = ACTIONS(1037), + [anon_sym_hide_DASHenv] = ACTIONS(1037), + [anon_sym_overlay] = ACTIONS(1037), + [anon_sym_new] = ACTIONS(1037), + [anon_sym_as] = ACTIONS(1037), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_STAR_STAR] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(1039), + [anon_sym_SLASH] = ACTIONS(1037), + [anon_sym_mod] = ACTIONS(1037), + [anon_sym_SLASH_SLASH] = ACTIONS(1039), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_bit_DASHshl] = ACTIONS(1037), + [anon_sym_bit_DASHshr] = ACTIONS(1037), + [anon_sym_EQ_EQ] = ACTIONS(1039), + [anon_sym_BANG_EQ] = ACTIONS(1039), + [anon_sym_LT2] = ACTIONS(1037), + [anon_sym_LT_EQ] = ACTIONS(1039), + [anon_sym_GT_EQ] = ACTIONS(1039), + [anon_sym_not_DASHin] = ACTIONS(1037), + [anon_sym_starts_DASHwith] = ACTIONS(1037), + [anon_sym_ends_DASHwith] = ACTIONS(1037), + [anon_sym_EQ_TILDE] = ACTIONS(1039), + [anon_sym_BANG_TILDE] = ACTIONS(1039), + [anon_sym_bit_DASHand] = ACTIONS(1037), + [anon_sym_bit_DASHxor] = ACTIONS(1037), + [anon_sym_bit_DASHor] = ACTIONS(1037), + [anon_sym_and] = ACTIONS(1037), + [anon_sym_xor] = ACTIONS(1037), + [anon_sym_or] = ACTIONS(1037), + [anon_sym_DOT] = ACTIONS(1039), + [aux_sym__val_number_decimal_token1] = ACTIONS(1037), + [aux_sym__val_number_decimal_token2] = ACTIONS(1039), + [anon_sym_DOT2] = ACTIONS(1037), + [aux_sym__val_number_decimal_token3] = ACTIONS(1039), + [aux_sym__val_number_token1] = ACTIONS(1039), + [aux_sym__val_number_token2] = ACTIONS(1039), + [aux_sym__val_number_token3] = ACTIONS(1039), + [aux_sym__val_number_token4] = ACTIONS(1037), + [aux_sym__val_number_token5] = ACTIONS(1039), + [aux_sym__val_number_token6] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1039), + [sym__str_single_quotes] = ACTIONS(1039), + [sym__str_back_ticks] = ACTIONS(1039), + [aux_sym__record_key_token2] = ACTIONS(1037), + [anon_sym_POUND] = ACTIONS(3), }, [628] = { + [sym_pipeline_parenthesized] = STATE(2530), + [sym_pipeline_parenthesized_last] = STATE(9755), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(4804), + [sym__var] = STATE(4386), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(628), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_RPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1480), - [anon_sym_PLUS_PLUS] = ACTIONS(1480), - [anon_sym_SLASH] = ACTIONS(1376), - [anon_sym_mod] = ACTIONS(1376), - [anon_sym_SLASH_SLASH] = ACTIONS(1376), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_bit_DASHshl] = ACTIONS(1376), - [anon_sym_bit_DASHshr] = ACTIONS(1376), - [anon_sym_EQ_EQ] = ACTIONS(1376), - [anon_sym_BANG_EQ] = ACTIONS(1376), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1376), - [anon_sym_GT_EQ] = ACTIONS(1376), - [anon_sym_not_DASHin] = ACTIONS(1376), - [anon_sym_starts_DASHwith] = ACTIONS(1376), - [anon_sym_ends_DASHwith] = ACTIONS(1376), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_where] = ACTIONS(187), + [anon_sym_not] = ACTIONS(191), + [anon_sym_DOT_DOT_EQ] = ACTIONS(193), + [anon_sym_DOT_DOT_LT] = ACTIONS(193), + [anon_sym_null] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [aux_sym__val_number_decimal_token1] = ACTIONS(199), + [aux_sym__val_number_decimal_token2] = ACTIONS(201), + [anon_sym_DOT2] = ACTIONS(203), + [aux_sym__val_number_decimal_token3] = ACTIONS(205), + [aux_sym__val_number_token1] = ACTIONS(207), + [aux_sym__val_number_token2] = ACTIONS(207), + [aux_sym__val_number_token3] = ACTIONS(207), + [aux_sym__val_number_token4] = ACTIONS(209), + [aux_sym__val_number_token5] = ACTIONS(207), + [aux_sym__val_number_token6] = ACTIONS(209), + [anon_sym_0b] = ACTIONS(211), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym__str_single_quotes] = ACTIONS(219), + [sym__str_back_ticks] = ACTIONS(219), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_POUND] = ACTIONS(3), }, [629] = { [sym_comment] = STATE(629), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_error] = ACTIONS(936), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_RBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_where] = ACTIONS(936), - [anon_sym_STAR_STAR] = ACTIONS(936), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(936), - [anon_sym_SLASH_SLASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(936), - [anon_sym_bit_DASHshr] = ACTIONS(936), - [anon_sym_EQ_EQ] = ACTIONS(936), - [anon_sym_BANG_EQ] = ACTIONS(936), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(936), - [anon_sym_GT_EQ] = ACTIONS(936), - [anon_sym_not_DASHin] = ACTIONS(936), - [anon_sym_starts_DASHwith] = ACTIONS(936), - [anon_sym_ends_DASHwith] = ACTIONS(936), - [anon_sym_EQ_TILDE] = ACTIONS(936), - [anon_sym_BANG_TILDE] = ACTIONS(936), - [anon_sym_bit_DASHand] = ACTIONS(936), - [anon_sym_bit_DASHxor] = ACTIONS(936), - [anon_sym_bit_DASHor] = ACTIONS(936), - [anon_sym_and] = ACTIONS(936), - [anon_sym_xor] = ACTIONS(936), - [anon_sym_or] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_list] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_make] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_else] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_catch] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [sym__entry_separator] = ACTIONS(1173), + [aux_sym__record_key_token2] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, [630] = { [sym_comment] = STATE(630), - [anon_sym_export] = ACTIONS(1243), - [anon_sym_alias] = ACTIONS(1243), - [anon_sym_let] = ACTIONS(1243), - [anon_sym_let_DASHenv] = ACTIONS(1243), - [anon_sym_mut] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1243), - [sym_cmd_identifier] = ACTIONS(1243), - [anon_sym_LF] = ACTIONS(1290), - [anon_sym_def] = ACTIONS(1243), - [anon_sym_export_DASHenv] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1243), - [anon_sym_module] = ACTIONS(1243), - [anon_sym_use] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_RPAREN] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_error] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_in] = ACTIONS(1243), - [anon_sym_loop] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_match] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_RBRACE] = ACTIONS(1243), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_try] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_source] = ACTIONS(1243), - [anon_sym_source_DASHenv] = ACTIONS(1243), - [anon_sym_register] = ACTIONS(1243), - [anon_sym_hide] = ACTIONS(1243), - [anon_sym_hide_DASHenv] = ACTIONS(1243), - [anon_sym_overlay] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1243), - [anon_sym_where] = ACTIONS(1243), - [anon_sym_STAR_STAR] = ACTIONS(1243), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_SLASH] = ACTIONS(1243), - [anon_sym_mod] = ACTIONS(1243), - [anon_sym_SLASH_SLASH] = ACTIONS(1243), - [anon_sym_PLUS] = ACTIONS(1243), - [anon_sym_bit_DASHshl] = ACTIONS(1243), - [anon_sym_bit_DASHshr] = ACTIONS(1243), - [anon_sym_EQ_EQ] = ACTIONS(1243), - [anon_sym_BANG_EQ] = ACTIONS(1243), - [anon_sym_LT2] = ACTIONS(1243), - [anon_sym_LT_EQ] = ACTIONS(1243), - [anon_sym_GT_EQ] = ACTIONS(1243), - [anon_sym_not_DASHin] = ACTIONS(1243), - [anon_sym_starts_DASHwith] = ACTIONS(1243), - [anon_sym_ends_DASHwith] = ACTIONS(1243), - [anon_sym_EQ_TILDE] = ACTIONS(1243), - [anon_sym_BANG_TILDE] = ACTIONS(1243), - [anon_sym_bit_DASHand] = ACTIONS(1243), - [anon_sym_bit_DASHxor] = ACTIONS(1243), - [anon_sym_bit_DASHor] = ACTIONS(1243), - [anon_sym_and] = ACTIONS(1243), - [anon_sym_xor] = ACTIONS(1243), - [anon_sym_or] = ACTIONS(1243), - [anon_sym_not] = ACTIONS(1243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1243), - [anon_sym_DOT_DOT_LT] = ACTIONS(1243), - [anon_sym_null] = ACTIONS(1243), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_decimal_token2] = ACTIONS(1243), - [anon_sym_DOT2] = ACTIONS(1243), - [aux_sym__val_number_decimal_token3] = ACTIONS(1243), - [aux_sym__val_number_token1] = ACTIONS(1243), - [aux_sym__val_number_token2] = ACTIONS(1243), - [aux_sym__val_number_token3] = ACTIONS(1243), - [aux_sym__val_number_token4] = ACTIONS(1243), - [aux_sym__val_number_token5] = ACTIONS(1243), - [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_0b] = ACTIONS(1243), - [anon_sym_0o] = ACTIONS(1243), - [anon_sym_0x] = ACTIONS(1243), - [sym_val_date] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym__str_single_quotes] = ACTIONS(1243), - [sym__str_back_ticks] = ACTIONS(1243), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1243), - [anon_sym_CARET] = ACTIONS(1243), + [anon_sym_export] = ACTIONS(1135), + [anon_sym_alias] = ACTIONS(1135), + [anon_sym_let] = ACTIONS(1135), + [anon_sym_let_DASHenv] = ACTIONS(1135), + [anon_sym_mut] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [sym_cmd_identifier] = ACTIONS(1135), + [anon_sym_def] = ACTIONS(1135), + [anon_sym_export_DASHenv] = ACTIONS(1135), + [anon_sym_extern] = ACTIONS(1135), + [anon_sym_module] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1135), + [anon_sym_LPAREN] = ACTIONS(1135), + [anon_sym_DOLLAR] = ACTIONS(1135), + [anon_sym_error] = ACTIONS(1135), + [anon_sym_list] = ACTIONS(1135), + [anon_sym_GT] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1135), + [anon_sym_for] = ACTIONS(1135), + [anon_sym_in] = ACTIONS(1135), + [anon_sym_loop] = ACTIONS(1135), + [anon_sym_make] = ACTIONS(1135), + [anon_sym_while] = ACTIONS(1135), + [anon_sym_do] = ACTIONS(1135), + [anon_sym_if] = ACTIONS(1135), + [anon_sym_else] = ACTIONS(1135), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_RBRACE] = ACTIONS(1135), + [anon_sym_try] = ACTIONS(1135), + [anon_sym_catch] = ACTIONS(1135), + [anon_sym_return] = ACTIONS(1135), + [anon_sym_source] = ACTIONS(1135), + [anon_sym_source_DASHenv] = ACTIONS(1135), + [anon_sym_register] = ACTIONS(1135), + [anon_sym_hide] = ACTIONS(1135), + [anon_sym_hide_DASHenv] = ACTIONS(1135), + [anon_sym_overlay] = ACTIONS(1135), + [anon_sym_new] = ACTIONS(1135), + [anon_sym_as] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1135), + [anon_sym_STAR_STAR] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_SLASH] = ACTIONS(1135), + [anon_sym_mod] = ACTIONS(1135), + [anon_sym_SLASH_SLASH] = ACTIONS(1135), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_bit_DASHshl] = ACTIONS(1135), + [anon_sym_bit_DASHshr] = ACTIONS(1135), + [anon_sym_EQ_EQ] = ACTIONS(1135), + [anon_sym_BANG_EQ] = ACTIONS(1135), + [anon_sym_LT2] = ACTIONS(1135), + [anon_sym_LT_EQ] = ACTIONS(1135), + [anon_sym_GT_EQ] = ACTIONS(1135), + [anon_sym_not_DASHin] = ACTIONS(1135), + [anon_sym_starts_DASHwith] = ACTIONS(1135), + [anon_sym_ends_DASHwith] = ACTIONS(1135), + [anon_sym_EQ_TILDE] = ACTIONS(1135), + [anon_sym_BANG_TILDE] = ACTIONS(1135), + [anon_sym_bit_DASHand] = ACTIONS(1135), + [anon_sym_bit_DASHxor] = ACTIONS(1135), + [anon_sym_bit_DASHor] = ACTIONS(1135), + [anon_sym_and] = ACTIONS(1135), + [anon_sym_xor] = ACTIONS(1135), + [anon_sym_or] = ACTIONS(1135), + [aux_sym__val_number_decimal_token1] = ACTIONS(1135), + [aux_sym__val_number_decimal_token2] = ACTIONS(1135), + [anon_sym_DOT2] = ACTIONS(1135), + [aux_sym__val_number_decimal_token3] = ACTIONS(1135), + [aux_sym__val_number_token1] = ACTIONS(1135), + [aux_sym__val_number_token2] = ACTIONS(1135), + [aux_sym__val_number_token3] = ACTIONS(1135), + [aux_sym__val_number_token4] = ACTIONS(1135), + [aux_sym__val_number_token5] = ACTIONS(1135), + [aux_sym__val_number_token6] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1135), + [sym__str_single_quotes] = ACTIONS(1135), + [sym__str_back_ticks] = ACTIONS(1135), + [sym__entry_separator] = ACTIONS(1137), + [aux_sym__record_key_token2] = ACTIONS(1135), [anon_sym_POUND] = ACTIONS(113), }, [631] = { + [sym_pipeline] = STATE(2543), + [sym_pipeline_last] = STATE(9596), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8738), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(4804), + [sym__var] = STATE(4386), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(631), - [anon_sym_export] = ACTIONS(1414), - [anon_sym_alias] = ACTIONS(1414), - [anon_sym_let] = ACTIONS(1414), - [anon_sym_let_DASHenv] = ACTIONS(1414), - [anon_sym_mut] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_SEMI] = ACTIONS(1414), - [sym_cmd_identifier] = ACTIONS(1414), - [anon_sym_LF] = ACTIONS(1416), - [anon_sym_def] = ACTIONS(1414), - [anon_sym_export_DASHenv] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym_module] = ACTIONS(1414), - [anon_sym_use] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_RPAREN] = ACTIONS(1414), - [anon_sym_DOLLAR] = ACTIONS(1414), - [anon_sym_error] = ACTIONS(1414), - [anon_sym_GT] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_in] = ACTIONS(1414), - [anon_sym_loop] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1414), - [anon_sym_RBRACE] = ACTIONS(1414), - [anon_sym_DOT_DOT] = ACTIONS(1414), - [anon_sym_try] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_source] = ACTIONS(1414), - [anon_sym_source_DASHenv] = ACTIONS(1414), - [anon_sym_register] = ACTIONS(1414), - [anon_sym_hide] = ACTIONS(1414), - [anon_sym_hide_DASHenv] = ACTIONS(1414), - [anon_sym_overlay] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_where] = ACTIONS(1414), - [anon_sym_STAR_STAR] = ACTIONS(1414), - [anon_sym_PLUS_PLUS] = ACTIONS(1414), - [anon_sym_SLASH] = ACTIONS(1414), - [anon_sym_mod] = ACTIONS(1414), - [anon_sym_SLASH_SLASH] = ACTIONS(1414), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_bit_DASHshl] = ACTIONS(1414), - [anon_sym_bit_DASHshr] = ACTIONS(1414), - [anon_sym_EQ_EQ] = ACTIONS(1414), - [anon_sym_BANG_EQ] = ACTIONS(1414), - [anon_sym_LT2] = ACTIONS(1414), - [anon_sym_LT_EQ] = ACTIONS(1414), - [anon_sym_GT_EQ] = ACTIONS(1414), - [anon_sym_not_DASHin] = ACTIONS(1414), - [anon_sym_starts_DASHwith] = ACTIONS(1414), - [anon_sym_ends_DASHwith] = ACTIONS(1414), - [anon_sym_EQ_TILDE] = ACTIONS(1414), - [anon_sym_BANG_TILDE] = ACTIONS(1414), - [anon_sym_bit_DASHand] = ACTIONS(1414), - [anon_sym_bit_DASHxor] = ACTIONS(1414), - [anon_sym_bit_DASHor] = ACTIONS(1414), - [anon_sym_and] = ACTIONS(1414), - [anon_sym_xor] = ACTIONS(1414), - [anon_sym_or] = ACTIONS(1414), - [anon_sym_not] = ACTIONS(1414), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1414), - [anon_sym_DOT_DOT_LT] = ACTIONS(1414), - [anon_sym_null] = ACTIONS(1414), - [anon_sym_true] = ACTIONS(1414), - [anon_sym_false] = ACTIONS(1414), - [aux_sym__val_number_decimal_token1] = ACTIONS(1414), - [aux_sym__val_number_decimal_token2] = ACTIONS(1414), - [anon_sym_DOT2] = ACTIONS(1414), - [aux_sym__val_number_decimal_token3] = ACTIONS(1414), - [aux_sym__val_number_token1] = ACTIONS(1414), - [aux_sym__val_number_token2] = ACTIONS(1414), - [aux_sym__val_number_token3] = ACTIONS(1414), - [aux_sym__val_number_token4] = ACTIONS(1414), - [aux_sym__val_number_token5] = ACTIONS(1414), - [aux_sym__val_number_token6] = ACTIONS(1414), - [anon_sym_0b] = ACTIONS(1414), - [anon_sym_0o] = ACTIONS(1414), - [anon_sym_0x] = ACTIONS(1414), - [sym_val_date] = ACTIONS(1414), - [anon_sym_DQUOTE] = ACTIONS(1414), - [sym__str_single_quotes] = ACTIONS(1414), - [sym__str_back_ticks] = ACTIONS(1414), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1414), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1414), - [anon_sym_POUND] = ACTIONS(113), + [aux_sym_pipeline_repeat1] = STATE(764), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_where] = ACTIONS(187), + [anon_sym_not] = ACTIONS(191), + [anon_sym_DOT_DOT_EQ] = ACTIONS(193), + [anon_sym_DOT_DOT_LT] = ACTIONS(193), + [anon_sym_null] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [aux_sym__val_number_decimal_token1] = ACTIONS(199), + [aux_sym__val_number_decimal_token2] = ACTIONS(201), + [anon_sym_DOT2] = ACTIONS(203), + [aux_sym__val_number_decimal_token3] = ACTIONS(205), + [aux_sym__val_number_token1] = ACTIONS(207), + [aux_sym__val_number_token2] = ACTIONS(207), + [aux_sym__val_number_token3] = ACTIONS(207), + [aux_sym__val_number_token4] = ACTIONS(209), + [aux_sym__val_number_token5] = ACTIONS(207), + [aux_sym__val_number_token6] = ACTIONS(209), + [anon_sym_0b] = ACTIONS(211), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym__str_single_quotes] = ACTIONS(219), + [sym__str_back_ticks] = ACTIONS(219), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(227), + [anon_sym_POUND] = ACTIONS(3), }, [632] = { [sym_comment] = STATE(632), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_alias] = ACTIONS(1159), + [anon_sym_let] = ACTIONS(1159), + [anon_sym_let_DASHenv] = ACTIONS(1159), + [anon_sym_mut] = ACTIONS(1159), + [anon_sym_const] = ACTIONS(1159), + [sym_cmd_identifier] = ACTIONS(1159), + [anon_sym_def] = ACTIONS(1159), + [anon_sym_export_DASHenv] = ACTIONS(1159), + [anon_sym_extern] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_use] = ACTIONS(1159), + [anon_sym_LPAREN] = ACTIONS(1161), + [anon_sym_DOLLAR] = ACTIONS(1159), + [anon_sym_error] = ACTIONS(1159), + [anon_sym_list] = ACTIONS(1159), + [anon_sym_GT] = ACTIONS(1159), + [anon_sym_DASH] = ACTIONS(1159), + [anon_sym_break] = ACTIONS(1159), + [anon_sym_continue] = ACTIONS(1159), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_in] = ACTIONS(1159), + [anon_sym_loop] = ACTIONS(1159), + [anon_sym_make] = ACTIONS(1159), + [anon_sym_while] = ACTIONS(1159), + [anon_sym_do] = ACTIONS(1159), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_else] = ACTIONS(1159), + [anon_sym_match] = ACTIONS(1159), + [anon_sym_RBRACE] = ACTIONS(1161), + [anon_sym_try] = ACTIONS(1159), + [anon_sym_catch] = ACTIONS(1159), + [anon_sym_return] = ACTIONS(1159), + [anon_sym_source] = ACTIONS(1159), + [anon_sym_source_DASHenv] = ACTIONS(1159), + [anon_sym_register] = ACTIONS(1159), + [anon_sym_hide] = ACTIONS(1159), + [anon_sym_hide_DASHenv] = ACTIONS(1159), + [anon_sym_overlay] = ACTIONS(1159), + [anon_sym_new] = ACTIONS(1159), + [anon_sym_as] = ACTIONS(1159), + [anon_sym_STAR] = ACTIONS(1159), + [anon_sym_STAR_STAR] = ACTIONS(1159), + [anon_sym_PLUS_PLUS] = ACTIONS(1159), + [anon_sym_SLASH] = ACTIONS(1159), + [anon_sym_mod] = ACTIONS(1159), + [anon_sym_SLASH_SLASH] = ACTIONS(1159), + [anon_sym_PLUS] = ACTIONS(1159), + [anon_sym_bit_DASHshl] = ACTIONS(1159), + [anon_sym_bit_DASHshr] = ACTIONS(1159), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_LT2] = ACTIONS(1159), + [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_not_DASHin] = ACTIONS(1159), + [anon_sym_starts_DASHwith] = ACTIONS(1159), + [anon_sym_ends_DASHwith] = ACTIONS(1159), + [anon_sym_EQ_TILDE] = ACTIONS(1159), + [anon_sym_BANG_TILDE] = ACTIONS(1159), + [anon_sym_bit_DASHand] = ACTIONS(1159), + [anon_sym_bit_DASHxor] = ACTIONS(1159), + [anon_sym_bit_DASHor] = ACTIONS(1159), + [anon_sym_and] = ACTIONS(1159), + [anon_sym_xor] = ACTIONS(1159), + [anon_sym_or] = ACTIONS(1159), + [aux_sym__val_number_decimal_token1] = ACTIONS(1159), + [aux_sym__val_number_decimal_token2] = ACTIONS(1159), + [anon_sym_DOT2] = ACTIONS(1159), + [aux_sym__val_number_decimal_token3] = ACTIONS(1159), + [aux_sym__val_number_token1] = ACTIONS(1159), + [aux_sym__val_number_token2] = ACTIONS(1159), + [aux_sym__val_number_token3] = ACTIONS(1159), + [aux_sym__val_number_token4] = ACTIONS(1159), + [aux_sym__val_number_token5] = ACTIONS(1159), + [aux_sym__val_number_token6] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(1161), + [sym__str_single_quotes] = ACTIONS(1161), + [sym__str_back_ticks] = ACTIONS(1161), + [aux_sym__record_key_token2] = ACTIONS(1159), + [aux_sym_unquoted_token6] = ACTIONS(1163), [anon_sym_POUND] = ACTIONS(113), }, [633] = { [sym_comment] = STATE(633), + [anon_sym_export] = ACTIONS(1179), + [anon_sym_alias] = ACTIONS(1179), + [anon_sym_let] = ACTIONS(1179), + [anon_sym_let_DASHenv] = ACTIONS(1179), + [anon_sym_mut] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [sym_cmd_identifier] = ACTIONS(1179), + [anon_sym_def] = ACTIONS(1179), + [anon_sym_export_DASHenv] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_use] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_error] = ACTIONS(1179), + [anon_sym_list] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1534), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1544), + [anon_sym_loop] = ACTIONS(1179), + [anon_sym_make] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_else] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1179), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_catch] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_source] = ACTIONS(1179), + [anon_sym_source_DASHenv] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), + [anon_sym_hide_DASHenv] = ACTIONS(1179), + [anon_sym_overlay] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_STAR_STAR] = ACTIONS(1538), + [anon_sym_PLUS_PLUS] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1536), + [anon_sym_mod] = ACTIONS(1536), + [anon_sym_SLASH_SLASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1534), + [anon_sym_bit_DASHshl] = ACTIONS(1546), + [anon_sym_bit_DASHshr] = ACTIONS(1546), + [anon_sym_EQ_EQ] = ACTIONS(1542), + [anon_sym_BANG_EQ] = ACTIONS(1542), + [anon_sym_LT2] = ACTIONS(1542), + [anon_sym_LT_EQ] = ACTIONS(1542), + [anon_sym_GT_EQ] = ACTIONS(1542), + [anon_sym_not_DASHin] = ACTIONS(1544), + [anon_sym_starts_DASHwith] = ACTIONS(1544), + [anon_sym_ends_DASHwith] = ACTIONS(1544), + [anon_sym_EQ_TILDE] = ACTIONS(1548), + [anon_sym_BANG_TILDE] = ACTIONS(1548), + [anon_sym_bit_DASHand] = ACTIONS(1179), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [sym__entry_separator] = ACTIONS(1181), + [aux_sym__record_key_token2] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(113), + }, + [634] = { + [sym_comment] = STATE(634), + [anon_sym_export] = ACTIONS(1155), + [anon_sym_alias] = ACTIONS(1155), + [anon_sym_let] = ACTIONS(1155), + [anon_sym_let_DASHenv] = ACTIONS(1155), + [anon_sym_mut] = ACTIONS(1155), + [anon_sym_const] = ACTIONS(1155), + [sym_cmd_identifier] = ACTIONS(1155), + [anon_sym_def] = ACTIONS(1155), + [anon_sym_export_DASHenv] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1155), + [anon_sym_module] = ACTIONS(1155), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_LPAREN] = ACTIONS(1157), + [anon_sym_DOLLAR] = ACTIONS(1155), + [anon_sym_error] = ACTIONS(1155), + [anon_sym_list] = ACTIONS(1155), + [anon_sym_GT] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_break] = ACTIONS(1155), + [anon_sym_continue] = ACTIONS(1155), + [anon_sym_for] = ACTIONS(1155), + [anon_sym_in] = ACTIONS(1155), + [anon_sym_loop] = ACTIONS(1155), + [anon_sym_make] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(1155), + [anon_sym_do] = ACTIONS(1155), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_else] = ACTIONS(1155), + [anon_sym_match] = ACTIONS(1155), + [anon_sym_RBRACE] = ACTIONS(1157), + [anon_sym_try] = ACTIONS(1155), + [anon_sym_catch] = ACTIONS(1155), + [anon_sym_return] = ACTIONS(1155), + [anon_sym_source] = ACTIONS(1155), + [anon_sym_source_DASHenv] = ACTIONS(1155), + [anon_sym_register] = ACTIONS(1155), + [anon_sym_hide] = ACTIONS(1155), + [anon_sym_hide_DASHenv] = ACTIONS(1155), + [anon_sym_overlay] = ACTIONS(1155), + [anon_sym_new] = ACTIONS(1155), + [anon_sym_as] = ACTIONS(1155), + [anon_sym_STAR] = ACTIONS(1155), + [anon_sym_STAR_STAR] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(1155), + [anon_sym_mod] = ACTIONS(1155), + [anon_sym_SLASH_SLASH] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_bit_DASHshl] = ACTIONS(1155), + [anon_sym_bit_DASHshr] = ACTIONS(1155), + [anon_sym_EQ_EQ] = ACTIONS(1155), + [anon_sym_BANG_EQ] = ACTIONS(1155), + [anon_sym_LT2] = ACTIONS(1155), + [anon_sym_LT_EQ] = ACTIONS(1155), + [anon_sym_GT_EQ] = ACTIONS(1155), + [anon_sym_not_DASHin] = ACTIONS(1155), + [anon_sym_starts_DASHwith] = ACTIONS(1155), + [anon_sym_ends_DASHwith] = ACTIONS(1155), + [anon_sym_EQ_TILDE] = ACTIONS(1155), + [anon_sym_BANG_TILDE] = ACTIONS(1155), + [anon_sym_bit_DASHand] = ACTIONS(1155), + [anon_sym_bit_DASHxor] = ACTIONS(1155), + [anon_sym_bit_DASHor] = ACTIONS(1155), + [anon_sym_and] = ACTIONS(1155), + [anon_sym_xor] = ACTIONS(1155), + [anon_sym_or] = ACTIONS(1155), + [aux_sym__val_number_decimal_token1] = ACTIONS(1155), + [aux_sym__val_number_decimal_token2] = ACTIONS(1155), + [anon_sym_DOT2] = ACTIONS(1155), + [aux_sym__val_number_decimal_token3] = ACTIONS(1155), + [aux_sym__val_number_token1] = ACTIONS(1155), + [aux_sym__val_number_token2] = ACTIONS(1155), + [aux_sym__val_number_token3] = ACTIONS(1155), + [aux_sym__val_number_token4] = ACTIONS(1155), + [aux_sym__val_number_token5] = ACTIONS(1155), + [aux_sym__val_number_token6] = ACTIONS(1155), + [anon_sym_DQUOTE] = ACTIONS(1157), + [sym__str_single_quotes] = ACTIONS(1157), + [sym__str_back_ticks] = ACTIONS(1157), + [aux_sym__record_key_token2] = ACTIONS(1155), + [aux_sym_unquoted_token6] = ACTIONS(1155), + [anon_sym_POUND] = ACTIONS(113), + }, + [635] = { + [sym_comment] = STATE(635), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_list] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_make] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_else] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_catch] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [sym__entry_separator] = ACTIONS(1173), + [aux_sym__record_key_token2] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(113), + }, + [636] = { + [sym_comment] = STATE(636), + [anon_sym_export] = ACTIONS(1041), + [anon_sym_alias] = ACTIONS(1041), + [anon_sym_let] = ACTIONS(1041), + [anon_sym_let_DASHenv] = ACTIONS(1041), + [anon_sym_mut] = ACTIONS(1041), + [anon_sym_const] = ACTIONS(1041), + [sym_cmd_identifier] = ACTIONS(1041), + [anon_sym_def] = ACTIONS(1041), + [anon_sym_export_DASHenv] = ACTIONS(1041), + [anon_sym_extern] = ACTIONS(1041), + [anon_sym_module] = ACTIONS(1041), + [anon_sym_use] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1043), + [anon_sym_error] = ACTIONS(1041), + [anon_sym_list] = ACTIONS(1041), + [anon_sym_GT] = ACTIONS(1041), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_break] = ACTIONS(1041), + [anon_sym_continue] = ACTIONS(1041), + [anon_sym_for] = ACTIONS(1041), + [anon_sym_in] = ACTIONS(1041), + [anon_sym_loop] = ACTIONS(1041), + [anon_sym_make] = ACTIONS(1041), + [anon_sym_while] = ACTIONS(1041), + [anon_sym_do] = ACTIONS(1041), + [anon_sym_if] = ACTIONS(1041), + [anon_sym_else] = ACTIONS(1041), + [anon_sym_match] = ACTIONS(1041), + [anon_sym_RBRACE] = ACTIONS(1043), + [anon_sym_try] = ACTIONS(1041), + [anon_sym_catch] = ACTIONS(1041), + [anon_sym_return] = ACTIONS(1041), + [anon_sym_source] = ACTIONS(1041), + [anon_sym_source_DASHenv] = ACTIONS(1041), + [anon_sym_register] = ACTIONS(1041), + [anon_sym_hide] = ACTIONS(1041), + [anon_sym_hide_DASHenv] = ACTIONS(1041), + [anon_sym_overlay] = ACTIONS(1041), + [anon_sym_new] = ACTIONS(1041), + [anon_sym_as] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_STAR_STAR] = ACTIONS(1043), + [anon_sym_PLUS_PLUS] = ACTIONS(1043), + [anon_sym_SLASH] = ACTIONS(1041), + [anon_sym_mod] = ACTIONS(1041), + [anon_sym_SLASH_SLASH] = ACTIONS(1043), + [anon_sym_PLUS] = ACTIONS(1041), + [anon_sym_bit_DASHshl] = ACTIONS(1041), + [anon_sym_bit_DASHshr] = ACTIONS(1041), + [anon_sym_EQ_EQ] = ACTIONS(1043), + [anon_sym_BANG_EQ] = ACTIONS(1043), + [anon_sym_LT2] = ACTIONS(1041), + [anon_sym_LT_EQ] = ACTIONS(1043), + [anon_sym_GT_EQ] = ACTIONS(1043), + [anon_sym_not_DASHin] = ACTIONS(1041), + [anon_sym_starts_DASHwith] = ACTIONS(1041), + [anon_sym_ends_DASHwith] = ACTIONS(1041), + [anon_sym_EQ_TILDE] = ACTIONS(1043), + [anon_sym_BANG_TILDE] = ACTIONS(1043), + [anon_sym_bit_DASHand] = ACTIONS(1041), + [anon_sym_bit_DASHxor] = ACTIONS(1041), + [anon_sym_bit_DASHor] = ACTIONS(1041), + [anon_sym_and] = ACTIONS(1041), + [anon_sym_xor] = ACTIONS(1041), + [anon_sym_or] = ACTIONS(1041), + [anon_sym_DOT] = ACTIONS(1043), + [aux_sym__val_number_decimal_token1] = ACTIONS(1041), + [aux_sym__val_number_decimal_token2] = ACTIONS(1043), + [anon_sym_DOT2] = ACTIONS(1041), + [aux_sym__val_number_decimal_token3] = ACTIONS(1043), + [aux_sym__val_number_token1] = ACTIONS(1043), + [aux_sym__val_number_token2] = ACTIONS(1043), + [aux_sym__val_number_token3] = ACTIONS(1043), + [aux_sym__val_number_token4] = ACTIONS(1041), + [aux_sym__val_number_token5] = ACTIONS(1043), + [aux_sym__val_number_token6] = ACTIONS(1041), + [anon_sym_DQUOTE] = ACTIONS(1043), + [sym__str_single_quotes] = ACTIONS(1043), + [sym__str_back_ticks] = ACTIONS(1043), + [aux_sym__record_key_token2] = ACTIONS(1041), + [anon_sym_POUND] = ACTIONS(3), + }, + [637] = { + [sym_comment] = STATE(637), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_alias] = ACTIONS(1061), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_let_DASHenv] = ACTIONS(1061), + [anon_sym_mut] = ACTIONS(1061), + [anon_sym_const] = ACTIONS(1061), + [sym_cmd_identifier] = ACTIONS(1061), + [anon_sym_def] = ACTIONS(1061), + [anon_sym_export_DASHenv] = ACTIONS(1061), + [anon_sym_extern] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_use] = ACTIONS(1061), + [anon_sym_LPAREN] = ACTIONS(1061), + [anon_sym_DOLLAR] = ACTIONS(1061), + [anon_sym_error] = ACTIONS(1061), + [anon_sym_list] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_DASH] = ACTIONS(1061), + [anon_sym_break] = ACTIONS(1061), + [anon_sym_continue] = ACTIONS(1061), + [anon_sym_for] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1061), + [anon_sym_loop] = ACTIONS(1061), + [anon_sym_make] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(1061), + [anon_sym_do] = ACTIONS(1061), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_else] = ACTIONS(1061), + [anon_sym_match] = ACTIONS(1061), + [anon_sym_RBRACE] = ACTIONS(1061), + [anon_sym_try] = ACTIONS(1061), + [anon_sym_catch] = ACTIONS(1061), + [anon_sym_return] = ACTIONS(1061), + [anon_sym_source] = ACTIONS(1061), + [anon_sym_source_DASHenv] = ACTIONS(1061), + [anon_sym_register] = ACTIONS(1061), + [anon_sym_hide] = ACTIONS(1061), + [anon_sym_hide_DASHenv] = ACTIONS(1061), + [anon_sym_overlay] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_as] = ACTIONS(1061), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_STAR_STAR] = ACTIONS(1061), + [anon_sym_PLUS_PLUS] = ACTIONS(1061), + [anon_sym_SLASH] = ACTIONS(1061), + [anon_sym_mod] = ACTIONS(1061), + [anon_sym_SLASH_SLASH] = ACTIONS(1061), + [anon_sym_PLUS] = ACTIONS(1061), + [anon_sym_bit_DASHshl] = ACTIONS(1061), + [anon_sym_bit_DASHshr] = ACTIONS(1061), + [anon_sym_EQ_EQ] = ACTIONS(1061), + [anon_sym_BANG_EQ] = ACTIONS(1061), + [anon_sym_LT2] = ACTIONS(1061), + [anon_sym_LT_EQ] = ACTIONS(1061), + [anon_sym_GT_EQ] = ACTIONS(1061), + [anon_sym_not_DASHin] = ACTIONS(1061), + [anon_sym_starts_DASHwith] = ACTIONS(1061), + [anon_sym_ends_DASHwith] = ACTIONS(1061), + [anon_sym_EQ_TILDE] = ACTIONS(1061), + [anon_sym_BANG_TILDE] = ACTIONS(1061), + [anon_sym_bit_DASHand] = ACTIONS(1061), + [anon_sym_bit_DASHxor] = ACTIONS(1061), + [anon_sym_bit_DASHor] = ACTIONS(1061), + [anon_sym_and] = ACTIONS(1061), + [anon_sym_xor] = ACTIONS(1061), + [anon_sym_or] = ACTIONS(1061), + [aux_sym__val_number_decimal_token1] = ACTIONS(1061), + [aux_sym__val_number_decimal_token2] = ACTIONS(1061), + [anon_sym_DOT2] = ACTIONS(1061), + [aux_sym__val_number_decimal_token3] = ACTIONS(1061), + [aux_sym__val_number_token1] = ACTIONS(1061), + [aux_sym__val_number_token2] = ACTIONS(1061), + [aux_sym__val_number_token3] = ACTIONS(1061), + [aux_sym__val_number_token4] = ACTIONS(1061), + [aux_sym__val_number_token5] = ACTIONS(1061), + [aux_sym__val_number_token6] = ACTIONS(1061), + [anon_sym_DQUOTE] = ACTIONS(1061), + [sym__str_single_quotes] = ACTIONS(1061), + [sym__str_back_ticks] = ACTIONS(1061), + [sym__entry_separator] = ACTIONS(1063), + [aux_sym__record_key_token2] = ACTIONS(1061), + [anon_sym_POUND] = ACTIONS(113), + }, + [638] = { + [sym_comment] = STATE(638), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_list] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_make] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_else] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_catch] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [sym__entry_separator] = ACTIONS(1173), + [aux_sym__record_key_token2] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(113), + }, + [639] = { + [sym_comment] = STATE(639), + [anon_sym_export] = ACTIONS(1129), + [anon_sym_alias] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_let_DASHenv] = ACTIONS(1129), + [anon_sym_mut] = ACTIONS(1129), + [anon_sym_const] = ACTIONS(1129), + [sym_cmd_identifier] = ACTIONS(1129), + [anon_sym_def] = ACTIONS(1129), + [anon_sym_export_DASHenv] = ACTIONS(1129), + [anon_sym_extern] = ACTIONS(1129), + [anon_sym_module] = ACTIONS(1129), + [anon_sym_use] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_DOLLAR] = ACTIONS(1129), + [anon_sym_error] = ACTIONS(1129), + [anon_sym_list] = ACTIONS(1129), + [anon_sym_GT] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_break] = ACTIONS(1129), + [anon_sym_continue] = ACTIONS(1129), + [anon_sym_for] = ACTIONS(1129), + [anon_sym_in] = ACTIONS(1129), + [anon_sym_loop] = ACTIONS(1129), + [anon_sym_make] = ACTIONS(1129), + [anon_sym_while] = ACTIONS(1129), + [anon_sym_do] = ACTIONS(1129), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_else] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1129), + [anon_sym_RBRACE] = ACTIONS(1131), + [anon_sym_try] = ACTIONS(1129), + [anon_sym_catch] = ACTIONS(1129), + [anon_sym_return] = ACTIONS(1129), + [anon_sym_source] = ACTIONS(1129), + [anon_sym_source_DASHenv] = ACTIONS(1129), + [anon_sym_register] = ACTIONS(1129), + [anon_sym_hide] = ACTIONS(1129), + [anon_sym_hide_DASHenv] = ACTIONS(1129), + [anon_sym_overlay] = ACTIONS(1129), + [anon_sym_new] = ACTIONS(1129), + [anon_sym_as] = ACTIONS(1129), + [anon_sym_STAR] = ACTIONS(1129), + [anon_sym_STAR_STAR] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(1129), + [anon_sym_mod] = ACTIONS(1129), + [anon_sym_SLASH_SLASH] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_bit_DASHshl] = ACTIONS(1129), + [anon_sym_bit_DASHshr] = ACTIONS(1129), + [anon_sym_EQ_EQ] = ACTIONS(1129), + [anon_sym_BANG_EQ] = ACTIONS(1129), + [anon_sym_LT2] = ACTIONS(1129), + [anon_sym_LT_EQ] = ACTIONS(1129), + [anon_sym_GT_EQ] = ACTIONS(1129), + [anon_sym_not_DASHin] = ACTIONS(1129), + [anon_sym_starts_DASHwith] = ACTIONS(1129), + [anon_sym_ends_DASHwith] = ACTIONS(1129), + [anon_sym_EQ_TILDE] = ACTIONS(1129), + [anon_sym_BANG_TILDE] = ACTIONS(1129), + [anon_sym_bit_DASHand] = ACTIONS(1129), + [anon_sym_bit_DASHxor] = ACTIONS(1129), + [anon_sym_bit_DASHor] = ACTIONS(1129), + [anon_sym_and] = ACTIONS(1129), + [anon_sym_xor] = ACTIONS(1129), + [anon_sym_or] = ACTIONS(1129), + [aux_sym__val_number_decimal_token1] = ACTIONS(1129), + [aux_sym__val_number_decimal_token2] = ACTIONS(1129), + [anon_sym_DOT2] = ACTIONS(1129), + [aux_sym__val_number_decimal_token3] = ACTIONS(1129), + [aux_sym__val_number_token1] = ACTIONS(1129), + [aux_sym__val_number_token2] = ACTIONS(1129), + [aux_sym__val_number_token3] = ACTIONS(1129), + [aux_sym__val_number_token4] = ACTIONS(1129), + [aux_sym__val_number_token5] = ACTIONS(1129), + [aux_sym__val_number_token6] = ACTIONS(1129), + [anon_sym_DQUOTE] = ACTIONS(1131), + [sym__str_single_quotes] = ACTIONS(1131), + [sym__str_back_ticks] = ACTIONS(1131), + [aux_sym__record_key_token2] = ACTIONS(1129), + [aux_sym_unquoted_token6] = ACTIONS(1133), + [anon_sym_POUND] = ACTIONS(113), + }, + [640] = { + [sym_comment] = STATE(640), + [anon_sym_export] = ACTIONS(1135), + [anon_sym_alias] = ACTIONS(1135), + [anon_sym_let] = ACTIONS(1135), + [anon_sym_let_DASHenv] = ACTIONS(1135), + [anon_sym_mut] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [sym_cmd_identifier] = ACTIONS(1135), + [anon_sym_def] = ACTIONS(1135), + [anon_sym_export_DASHenv] = ACTIONS(1135), + [anon_sym_extern] = ACTIONS(1135), + [anon_sym_module] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1135), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_DOLLAR] = ACTIONS(1135), + [anon_sym_error] = ACTIONS(1135), + [anon_sym_list] = ACTIONS(1135), + [anon_sym_GT] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1135), + [anon_sym_for] = ACTIONS(1135), + [anon_sym_in] = ACTIONS(1135), + [anon_sym_loop] = ACTIONS(1135), + [anon_sym_make] = ACTIONS(1135), + [anon_sym_while] = ACTIONS(1135), + [anon_sym_do] = ACTIONS(1135), + [anon_sym_if] = ACTIONS(1135), + [anon_sym_else] = ACTIONS(1135), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_RBRACE] = ACTIONS(1137), + [anon_sym_try] = ACTIONS(1135), + [anon_sym_catch] = ACTIONS(1135), + [anon_sym_return] = ACTIONS(1135), + [anon_sym_source] = ACTIONS(1135), + [anon_sym_source_DASHenv] = ACTIONS(1135), + [anon_sym_register] = ACTIONS(1135), + [anon_sym_hide] = ACTIONS(1135), + [anon_sym_hide_DASHenv] = ACTIONS(1135), + [anon_sym_overlay] = ACTIONS(1135), + [anon_sym_new] = ACTIONS(1135), + [anon_sym_as] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1135), + [anon_sym_STAR_STAR] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_SLASH] = ACTIONS(1135), + [anon_sym_mod] = ACTIONS(1135), + [anon_sym_SLASH_SLASH] = ACTIONS(1135), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_bit_DASHshl] = ACTIONS(1135), + [anon_sym_bit_DASHshr] = ACTIONS(1135), + [anon_sym_EQ_EQ] = ACTIONS(1135), + [anon_sym_BANG_EQ] = ACTIONS(1135), + [anon_sym_LT2] = ACTIONS(1135), + [anon_sym_LT_EQ] = ACTIONS(1135), + [anon_sym_GT_EQ] = ACTIONS(1135), + [anon_sym_not_DASHin] = ACTIONS(1135), + [anon_sym_starts_DASHwith] = ACTIONS(1135), + [anon_sym_ends_DASHwith] = ACTIONS(1135), + [anon_sym_EQ_TILDE] = ACTIONS(1135), + [anon_sym_BANG_TILDE] = ACTIONS(1135), + [anon_sym_bit_DASHand] = ACTIONS(1135), + [anon_sym_bit_DASHxor] = ACTIONS(1135), + [anon_sym_bit_DASHor] = ACTIONS(1135), + [anon_sym_and] = ACTIONS(1135), + [anon_sym_xor] = ACTIONS(1135), + [anon_sym_or] = ACTIONS(1135), + [aux_sym__val_number_decimal_token1] = ACTIONS(1135), + [aux_sym__val_number_decimal_token2] = ACTIONS(1135), + [anon_sym_DOT2] = ACTIONS(1135), + [aux_sym__val_number_decimal_token3] = ACTIONS(1135), + [aux_sym__val_number_token1] = ACTIONS(1135), + [aux_sym__val_number_token2] = ACTIONS(1135), + [aux_sym__val_number_token3] = ACTIONS(1135), + [aux_sym__val_number_token4] = ACTIONS(1135), + [aux_sym__val_number_token5] = ACTIONS(1135), + [aux_sym__val_number_token6] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1137), + [sym__str_single_quotes] = ACTIONS(1137), + [sym__str_back_ticks] = ACTIONS(1137), + [aux_sym__record_key_token2] = ACTIONS(1135), + [aux_sym_unquoted_token6] = ACTIONS(1133), + [anon_sym_POUND] = ACTIONS(113), + }, + [641] = { + [sym_comment] = STATE(641), + [anon_sym_export] = ACTIONS(938), + [anon_sym_alias] = ACTIONS(938), + [anon_sym_let] = ACTIONS(938), + [anon_sym_let_DASHenv] = ACTIONS(938), + [anon_sym_mut] = ACTIONS(938), + [anon_sym_const] = ACTIONS(938), + [sym_cmd_identifier] = ACTIONS(938), + [anon_sym_def] = ACTIONS(938), + [anon_sym_export_DASHenv] = ACTIONS(938), + [anon_sym_extern] = ACTIONS(938), + [anon_sym_module] = ACTIONS(938), + [anon_sym_use] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(938), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_error] = ACTIONS(938), + [anon_sym_list] = ACTIONS(938), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_break] = ACTIONS(938), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_for] = ACTIONS(938), + [anon_sym_in] = ACTIONS(938), + [anon_sym_loop] = ACTIONS(938), + [anon_sym_make] = ACTIONS(938), + [anon_sym_while] = ACTIONS(938), + [anon_sym_do] = ACTIONS(938), + [anon_sym_if] = ACTIONS(938), + [anon_sym_else] = ACTIONS(938), + [anon_sym_match] = ACTIONS(938), + [anon_sym_RBRACE] = ACTIONS(938), + [anon_sym_try] = ACTIONS(938), + [anon_sym_catch] = ACTIONS(938), + [anon_sym_return] = ACTIONS(938), + [anon_sym_source] = ACTIONS(938), + [anon_sym_source_DASHenv] = ACTIONS(938), + [anon_sym_register] = ACTIONS(938), + [anon_sym_hide] = ACTIONS(938), + [anon_sym_hide_DASHenv] = ACTIONS(938), + [anon_sym_overlay] = ACTIONS(938), + [anon_sym_new] = ACTIONS(938), + [anon_sym_as] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_STAR_STAR] = ACTIONS(938), + [anon_sym_PLUS_PLUS] = ACTIONS(938), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(938), + [anon_sym_SLASH_SLASH] = ACTIONS(938), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_bit_DASHshl] = ACTIONS(938), + [anon_sym_bit_DASHshr] = ACTIONS(938), + [anon_sym_EQ_EQ] = ACTIONS(938), + [anon_sym_BANG_EQ] = ACTIONS(938), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(938), + [anon_sym_GT_EQ] = ACTIONS(938), + [anon_sym_not_DASHin] = ACTIONS(938), + [anon_sym_starts_DASHwith] = ACTIONS(938), + [anon_sym_ends_DASHwith] = ACTIONS(938), + [anon_sym_EQ_TILDE] = ACTIONS(938), + [anon_sym_BANG_TILDE] = ACTIONS(938), + [anon_sym_bit_DASHand] = ACTIONS(938), + [anon_sym_bit_DASHxor] = ACTIONS(938), + [anon_sym_bit_DASHor] = ACTIONS(938), + [anon_sym_and] = ACTIONS(938), + [anon_sym_xor] = ACTIONS(938), + [anon_sym_or] = ACTIONS(938), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(938), + [anon_sym_DOT2] = ACTIONS(938), + [aux_sym__val_number_decimal_token3] = ACTIONS(938), + [aux_sym__val_number_token1] = ACTIONS(938), + [aux_sym__val_number_token2] = ACTIONS(938), + [aux_sym__val_number_token3] = ACTIONS(938), + [aux_sym__val_number_token4] = ACTIONS(938), + [aux_sym__val_number_token5] = ACTIONS(938), + [aux_sym__val_number_token6] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym__str_single_quotes] = ACTIONS(938), + [sym__str_back_ticks] = ACTIONS(938), + [sym__entry_separator] = ACTIONS(940), + [aux_sym__record_key_token2] = ACTIONS(938), + [anon_sym_POUND] = ACTIONS(113), + }, + [642] = { + [sym_comment] = STATE(642), + [anon_sym_export] = ACTIONS(1179), + [anon_sym_alias] = ACTIONS(1179), + [anon_sym_let] = ACTIONS(1179), + [anon_sym_let_DASHenv] = ACTIONS(1179), + [anon_sym_mut] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [sym_cmd_identifier] = ACTIONS(1179), + [anon_sym_def] = ACTIONS(1179), + [anon_sym_export_DASHenv] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_use] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_error] = ACTIONS(1179), + [anon_sym_list] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1534), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1544), + [anon_sym_loop] = ACTIONS(1179), + [anon_sym_make] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_else] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1179), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_catch] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_source] = ACTIONS(1179), + [anon_sym_source_DASHenv] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), + [anon_sym_hide_DASHenv] = ACTIONS(1179), + [anon_sym_overlay] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_STAR_STAR] = ACTIONS(1538), + [anon_sym_PLUS_PLUS] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1536), + [anon_sym_mod] = ACTIONS(1536), + [anon_sym_SLASH_SLASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1534), + [anon_sym_bit_DASHshl] = ACTIONS(1546), + [anon_sym_bit_DASHshr] = ACTIONS(1546), + [anon_sym_EQ_EQ] = ACTIONS(1542), + [anon_sym_BANG_EQ] = ACTIONS(1542), + [anon_sym_LT2] = ACTIONS(1542), + [anon_sym_LT_EQ] = ACTIONS(1542), + [anon_sym_GT_EQ] = ACTIONS(1542), + [anon_sym_not_DASHin] = ACTIONS(1544), + [anon_sym_starts_DASHwith] = ACTIONS(1544), + [anon_sym_ends_DASHwith] = ACTIONS(1544), + [anon_sym_EQ_TILDE] = ACTIONS(1548), + [anon_sym_BANG_TILDE] = ACTIONS(1548), + [anon_sym_bit_DASHand] = ACTIONS(1550), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [sym__entry_separator] = ACTIONS(1181), + [aux_sym__record_key_token2] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(113), + }, + [643] = { + [sym_comment] = STATE(643), + [anon_sym_export] = ACTIONS(1089), + [anon_sym_alias] = ACTIONS(1089), + [anon_sym_let] = ACTIONS(1089), + [anon_sym_let_DASHenv] = ACTIONS(1089), + [anon_sym_mut] = ACTIONS(1089), + [anon_sym_const] = ACTIONS(1089), + [sym_cmd_identifier] = ACTIONS(1089), + [anon_sym_def] = ACTIONS(1089), + [anon_sym_export_DASHenv] = ACTIONS(1089), + [anon_sym_extern] = ACTIONS(1089), + [anon_sym_module] = ACTIONS(1089), + [anon_sym_use] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1089), + [anon_sym_error] = ACTIONS(1089), + [anon_sym_list] = ACTIONS(1089), + [anon_sym_GT] = ACTIONS(1089), + [anon_sym_DASH] = ACTIONS(1089), + [anon_sym_break] = ACTIONS(1089), + [anon_sym_continue] = ACTIONS(1089), + [anon_sym_for] = ACTIONS(1089), + [anon_sym_in] = ACTIONS(1089), + [anon_sym_loop] = ACTIONS(1089), + [anon_sym_make] = ACTIONS(1089), + [anon_sym_while] = ACTIONS(1089), + [anon_sym_do] = ACTIONS(1089), + [anon_sym_if] = ACTIONS(1089), + [anon_sym_else] = ACTIONS(1089), + [anon_sym_match] = ACTIONS(1089), + [anon_sym_RBRACE] = ACTIONS(1089), + [anon_sym_try] = ACTIONS(1089), + [anon_sym_catch] = ACTIONS(1089), + [anon_sym_return] = ACTIONS(1089), + [anon_sym_source] = ACTIONS(1089), + [anon_sym_source_DASHenv] = ACTIONS(1089), + [anon_sym_register] = ACTIONS(1089), + [anon_sym_hide] = ACTIONS(1089), + [anon_sym_hide_DASHenv] = ACTIONS(1089), + [anon_sym_overlay] = ACTIONS(1089), + [anon_sym_new] = ACTIONS(1089), + [anon_sym_as] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_STAR_STAR] = ACTIONS(1089), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_SLASH] = ACTIONS(1089), + [anon_sym_mod] = ACTIONS(1089), + [anon_sym_SLASH_SLASH] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1089), + [anon_sym_bit_DASHshl] = ACTIONS(1089), + [anon_sym_bit_DASHshr] = ACTIONS(1089), + [anon_sym_EQ_EQ] = ACTIONS(1089), + [anon_sym_BANG_EQ] = ACTIONS(1089), + [anon_sym_LT2] = ACTIONS(1089), + [anon_sym_LT_EQ] = ACTIONS(1089), + [anon_sym_GT_EQ] = ACTIONS(1089), + [anon_sym_not_DASHin] = ACTIONS(1089), + [anon_sym_starts_DASHwith] = ACTIONS(1089), + [anon_sym_ends_DASHwith] = ACTIONS(1089), + [anon_sym_EQ_TILDE] = ACTIONS(1089), + [anon_sym_BANG_TILDE] = ACTIONS(1089), + [anon_sym_bit_DASHand] = ACTIONS(1089), + [anon_sym_bit_DASHxor] = ACTIONS(1089), + [anon_sym_bit_DASHor] = ACTIONS(1089), + [anon_sym_and] = ACTIONS(1089), + [anon_sym_xor] = ACTIONS(1089), + [anon_sym_or] = ACTIONS(1089), + [aux_sym__val_number_decimal_token1] = ACTIONS(1089), + [aux_sym__val_number_decimal_token2] = ACTIONS(1089), + [anon_sym_DOT2] = ACTIONS(1089), + [aux_sym__val_number_decimal_token3] = ACTIONS(1089), + [aux_sym__val_number_token1] = ACTIONS(1089), + [aux_sym__val_number_token2] = ACTIONS(1089), + [aux_sym__val_number_token3] = ACTIONS(1089), + [aux_sym__val_number_token4] = ACTIONS(1089), + [aux_sym__val_number_token5] = ACTIONS(1089), + [aux_sym__val_number_token6] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1089), + [sym__str_single_quotes] = ACTIONS(1089), + [sym__str_back_ticks] = ACTIONS(1089), + [sym__entry_separator] = ACTIONS(1091), + [aux_sym__record_key_token2] = ACTIONS(1089), + [anon_sym_POUND] = ACTIONS(113), + }, + [644] = { + [sym_comment] = STATE(644), + [anon_sym_export] = ACTIONS(1229), + [anon_sym_alias] = ACTIONS(1229), + [anon_sym_let] = ACTIONS(1229), + [anon_sym_let_DASHenv] = ACTIONS(1229), + [anon_sym_mut] = ACTIONS(1229), + [anon_sym_const] = ACTIONS(1229), + [sym_cmd_identifier] = ACTIONS(1229), + [anon_sym_def] = ACTIONS(1229), + [anon_sym_export_DASHenv] = ACTIONS(1229), + [anon_sym_extern] = ACTIONS(1229), + [anon_sym_module] = ACTIONS(1229), + [anon_sym_use] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_DOLLAR] = ACTIONS(1229), + [anon_sym_error] = ACTIONS(1229), + [anon_sym_list] = ACTIONS(1229), + [anon_sym_GT] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_break] = ACTIONS(1229), + [anon_sym_continue] = ACTIONS(1229), + [anon_sym_for] = ACTIONS(1229), + [anon_sym_in] = ACTIONS(1229), + [anon_sym_loop] = ACTIONS(1229), + [anon_sym_make] = ACTIONS(1229), + [anon_sym_while] = ACTIONS(1229), + [anon_sym_do] = ACTIONS(1229), + [anon_sym_if] = ACTIONS(1229), + [anon_sym_else] = ACTIONS(1229), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_RBRACE] = ACTIONS(1229), + [anon_sym_try] = ACTIONS(1229), + [anon_sym_catch] = ACTIONS(1229), + [anon_sym_return] = ACTIONS(1229), + [anon_sym_source] = ACTIONS(1229), + [anon_sym_source_DASHenv] = ACTIONS(1229), + [anon_sym_register] = ACTIONS(1229), + [anon_sym_hide] = ACTIONS(1229), + [anon_sym_hide_DASHenv] = ACTIONS(1229), + [anon_sym_overlay] = ACTIONS(1229), + [anon_sym_new] = ACTIONS(1229), + [anon_sym_as] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1229), + [anon_sym_STAR_STAR] = ACTIONS(1229), + [anon_sym_PLUS_PLUS] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1229), + [anon_sym_mod] = ACTIONS(1229), + [anon_sym_SLASH_SLASH] = ACTIONS(1229), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_bit_DASHshl] = ACTIONS(1229), + [anon_sym_bit_DASHshr] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1229), + [anon_sym_LT2] = ACTIONS(1229), + [anon_sym_LT_EQ] = ACTIONS(1229), + [anon_sym_GT_EQ] = ACTIONS(1229), + [anon_sym_not_DASHin] = ACTIONS(1229), + [anon_sym_starts_DASHwith] = ACTIONS(1229), + [anon_sym_ends_DASHwith] = ACTIONS(1229), + [anon_sym_EQ_TILDE] = ACTIONS(1229), + [anon_sym_BANG_TILDE] = ACTIONS(1229), + [anon_sym_bit_DASHand] = ACTIONS(1229), + [anon_sym_bit_DASHxor] = ACTIONS(1229), + [anon_sym_bit_DASHor] = ACTIONS(1229), + [anon_sym_and] = ACTIONS(1229), + [anon_sym_xor] = ACTIONS(1229), + [anon_sym_or] = ACTIONS(1229), + [aux_sym__val_number_decimal_token1] = ACTIONS(1229), + [aux_sym__val_number_decimal_token2] = ACTIONS(1229), + [anon_sym_DOT2] = ACTIONS(1229), + [aux_sym__val_number_decimal_token3] = ACTIONS(1229), + [aux_sym__val_number_token1] = ACTIONS(1229), + [aux_sym__val_number_token2] = ACTIONS(1229), + [aux_sym__val_number_token3] = ACTIONS(1229), + [aux_sym__val_number_token4] = ACTIONS(1229), + [aux_sym__val_number_token5] = ACTIONS(1229), + [aux_sym__val_number_token6] = ACTIONS(1229), + [anon_sym_DQUOTE] = ACTIONS(1229), + [sym__str_single_quotes] = ACTIONS(1229), + [sym__str_back_ticks] = ACTIONS(1229), + [sym__entry_separator] = ACTIONS(1231), + [aux_sym__record_key_token2] = ACTIONS(1229), + [anon_sym_POUND] = ACTIONS(113), + }, + [645] = { + [sym_comment] = STATE(645), + [anon_sym_export] = ACTIONS(1072), + [anon_sym_alias] = ACTIONS(1072), + [anon_sym_let] = ACTIONS(1072), + [anon_sym_let_DASHenv] = ACTIONS(1072), + [anon_sym_mut] = ACTIONS(1072), + [anon_sym_const] = ACTIONS(1072), + [sym_cmd_identifier] = ACTIONS(1072), + [anon_sym_def] = ACTIONS(1072), + [anon_sym_export_DASHenv] = ACTIONS(1072), + [anon_sym_extern] = ACTIONS(1072), + [anon_sym_module] = ACTIONS(1072), + [anon_sym_use] = ACTIONS(1072), + [anon_sym_LPAREN] = ACTIONS(1072), + [anon_sym_DOLLAR] = ACTIONS(1072), + [anon_sym_error] = ACTIONS(1072), + [anon_sym_list] = ACTIONS(1072), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_break] = ACTIONS(1072), + [anon_sym_continue] = ACTIONS(1072), + [anon_sym_for] = ACTIONS(1072), + [anon_sym_in] = ACTIONS(1078), + [anon_sym_loop] = ACTIONS(1072), + [anon_sym_make] = ACTIONS(1072), + [anon_sym_while] = ACTIONS(1072), + [anon_sym_do] = ACTIONS(1072), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_else] = ACTIONS(1072), + [anon_sym_match] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1072), + [anon_sym_try] = ACTIONS(1072), + [anon_sym_catch] = ACTIONS(1072), + [anon_sym_return] = ACTIONS(1072), + [anon_sym_source] = ACTIONS(1072), + [anon_sym_source_DASHenv] = ACTIONS(1072), + [anon_sym_register] = ACTIONS(1072), + [anon_sym_hide] = ACTIONS(1072), + [anon_sym_hide_DASHenv] = ACTIONS(1072), + [anon_sym_overlay] = ACTIONS(1072), + [anon_sym_new] = ACTIONS(1072), + [anon_sym_as] = ACTIONS(1072), + [anon_sym_STAR] = ACTIONS(1076), + [anon_sym_STAR_STAR] = ACTIONS(1076), + [anon_sym_PLUS_PLUS] = ACTIONS(1076), + [anon_sym_SLASH] = ACTIONS(1076), + [anon_sym_mod] = ACTIONS(1076), + [anon_sym_SLASH_SLASH] = ACTIONS(1076), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_bit_DASHshl] = ACTIONS(1076), + [anon_sym_bit_DASHshr] = ACTIONS(1076), + [anon_sym_EQ_EQ] = ACTIONS(1076), + [anon_sym_BANG_EQ] = ACTIONS(1076), + [anon_sym_LT2] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1076), + [anon_sym_GT_EQ] = ACTIONS(1076), + [anon_sym_not_DASHin] = ACTIONS(1076), + [anon_sym_starts_DASHwith] = ACTIONS(1076), + [anon_sym_ends_DASHwith] = ACTIONS(1076), + [anon_sym_EQ_TILDE] = ACTIONS(1076), + [anon_sym_BANG_TILDE] = ACTIONS(1076), + [anon_sym_bit_DASHand] = ACTIONS(1076), + [anon_sym_bit_DASHxor] = ACTIONS(1076), + [anon_sym_bit_DASHor] = ACTIONS(1076), + [anon_sym_and] = ACTIONS(1076), + [anon_sym_xor] = ACTIONS(1076), + [anon_sym_or] = ACTIONS(1076), + [aux_sym__val_number_decimal_token1] = ACTIONS(1072), + [aux_sym__val_number_decimal_token2] = ACTIONS(1072), + [anon_sym_DOT2] = ACTIONS(1072), + [aux_sym__val_number_decimal_token3] = ACTIONS(1072), + [aux_sym__val_number_token1] = ACTIONS(1072), + [aux_sym__val_number_token2] = ACTIONS(1072), + [aux_sym__val_number_token3] = ACTIONS(1072), + [aux_sym__val_number_token4] = ACTIONS(1072), + [aux_sym__val_number_token5] = ACTIONS(1072), + [aux_sym__val_number_token6] = ACTIONS(1072), + [anon_sym_DQUOTE] = ACTIONS(1072), + [sym__str_single_quotes] = ACTIONS(1072), + [sym__str_back_ticks] = ACTIONS(1072), + [sym__entry_separator] = ACTIONS(1074), + [aux_sym__record_key_token2] = ACTIONS(1072), + [anon_sym_POUND] = ACTIONS(113), + }, + [646] = { + [sym_pipeline_parenthesized] = STATE(2548), + [sym_pipeline_parenthesized_last] = STATE(9725), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(4804), + [sym__var] = STATE(4386), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), + [sym_comment] = STATE(646), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_where] = ACTIONS(187), + [anon_sym_not] = ACTIONS(191), + [anon_sym_DOT_DOT_EQ] = ACTIONS(193), + [anon_sym_DOT_DOT_LT] = ACTIONS(193), + [anon_sym_null] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [aux_sym__val_number_decimal_token1] = ACTIONS(199), + [aux_sym__val_number_decimal_token2] = ACTIONS(201), + [anon_sym_DOT2] = ACTIONS(203), + [aux_sym__val_number_decimal_token3] = ACTIONS(205), + [aux_sym__val_number_token1] = ACTIONS(207), + [aux_sym__val_number_token2] = ACTIONS(207), + [aux_sym__val_number_token3] = ACTIONS(207), + [aux_sym__val_number_token4] = ACTIONS(209), + [aux_sym__val_number_token5] = ACTIONS(207), + [aux_sym__val_number_token6] = ACTIONS(209), + [anon_sym_0b] = ACTIONS(211), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym__str_single_quotes] = ACTIONS(219), + [sym__str_back_ticks] = ACTIONS(219), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_POUND] = ACTIONS(3), + }, + [647] = { + [sym_comment] = STATE(647), + [anon_sym_export] = ACTIONS(1233), + [anon_sym_alias] = ACTIONS(1233), + [anon_sym_let] = ACTIONS(1233), + [anon_sym_let_DASHenv] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [sym_cmd_identifier] = ACTIONS(1233), + [anon_sym_def] = ACTIONS(1233), + [anon_sym_export_DASHenv] = ACTIONS(1233), + [anon_sym_extern] = ACTIONS(1233), + [anon_sym_module] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(1233), + [anon_sym_DOLLAR] = ACTIONS(1233), + [anon_sym_error] = ACTIONS(1233), + [anon_sym_list] = ACTIONS(1233), + [anon_sym_GT] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_break] = ACTIONS(1233), + [anon_sym_continue] = ACTIONS(1233), + [anon_sym_for] = ACTIONS(1233), + [anon_sym_in] = ACTIONS(1233), + [anon_sym_loop] = ACTIONS(1233), + [anon_sym_make] = ACTIONS(1233), + [anon_sym_while] = ACTIONS(1233), + [anon_sym_do] = ACTIONS(1233), + [anon_sym_if] = ACTIONS(1233), + [anon_sym_else] = ACTIONS(1233), + [anon_sym_match] = ACTIONS(1233), + [anon_sym_RBRACE] = ACTIONS(1233), + [anon_sym_try] = ACTIONS(1233), + [anon_sym_catch] = ACTIONS(1233), + [anon_sym_return] = ACTIONS(1233), + [anon_sym_source] = ACTIONS(1233), + [anon_sym_source_DASHenv] = ACTIONS(1233), + [anon_sym_register] = ACTIONS(1233), + [anon_sym_hide] = ACTIONS(1233), + [anon_sym_hide_DASHenv] = ACTIONS(1233), + [anon_sym_overlay] = ACTIONS(1233), + [anon_sym_new] = ACTIONS(1233), + [anon_sym_as] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1233), + [anon_sym_STAR_STAR] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1233), + [anon_sym_SLASH] = ACTIONS(1233), + [anon_sym_mod] = ACTIONS(1233), + [anon_sym_SLASH_SLASH] = ACTIONS(1233), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_bit_DASHshl] = ACTIONS(1233), + [anon_sym_bit_DASHshr] = ACTIONS(1233), + [anon_sym_EQ_EQ] = ACTIONS(1233), + [anon_sym_BANG_EQ] = ACTIONS(1233), + [anon_sym_LT2] = ACTIONS(1233), + [anon_sym_LT_EQ] = ACTIONS(1233), + [anon_sym_GT_EQ] = ACTIONS(1233), + [anon_sym_not_DASHin] = ACTIONS(1233), + [anon_sym_starts_DASHwith] = ACTIONS(1233), + [anon_sym_ends_DASHwith] = ACTIONS(1233), + [anon_sym_EQ_TILDE] = ACTIONS(1233), + [anon_sym_BANG_TILDE] = ACTIONS(1233), + [anon_sym_bit_DASHand] = ACTIONS(1233), + [anon_sym_bit_DASHxor] = ACTIONS(1233), + [anon_sym_bit_DASHor] = ACTIONS(1233), + [anon_sym_and] = ACTIONS(1233), + [anon_sym_xor] = ACTIONS(1233), + [anon_sym_or] = ACTIONS(1233), + [aux_sym__val_number_decimal_token1] = ACTIONS(1233), + [aux_sym__val_number_decimal_token2] = ACTIONS(1233), + [anon_sym_DOT2] = ACTIONS(1233), + [aux_sym__val_number_decimal_token3] = ACTIONS(1233), + [aux_sym__val_number_token1] = ACTIONS(1233), + [aux_sym__val_number_token2] = ACTIONS(1233), + [aux_sym__val_number_token3] = ACTIONS(1233), + [aux_sym__val_number_token4] = ACTIONS(1233), + [aux_sym__val_number_token5] = ACTIONS(1233), + [aux_sym__val_number_token6] = ACTIONS(1233), + [anon_sym_DQUOTE] = ACTIONS(1233), + [sym__str_single_quotes] = ACTIONS(1233), + [sym__str_back_ticks] = ACTIONS(1233), + [sym__entry_separator] = ACTIONS(1235), + [aux_sym__record_key_token2] = ACTIONS(1233), + [anon_sym_POUND] = ACTIONS(113), + }, + [648] = { + [sym_comment] = STATE(648), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_list] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_make] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_else] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_catch] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [sym__entry_separator] = ACTIONS(1173), + [aux_sym__record_key_token2] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(113), + }, + [649] = { + [sym_comment] = STATE(649), + [anon_sym_export] = ACTIONS(1093), + [anon_sym_alias] = ACTIONS(1093), + [anon_sym_let] = ACTIONS(1093), + [anon_sym_let_DASHenv] = ACTIONS(1093), + [anon_sym_mut] = ACTIONS(1093), + [anon_sym_const] = ACTIONS(1093), + [sym_cmd_identifier] = ACTIONS(1093), + [anon_sym_def] = ACTIONS(1093), + [anon_sym_export_DASHenv] = ACTIONS(1093), + [anon_sym_extern] = ACTIONS(1093), + [anon_sym_module] = ACTIONS(1093), + [anon_sym_use] = ACTIONS(1093), + [anon_sym_LPAREN] = ACTIONS(1093), + [anon_sym_DOLLAR] = ACTIONS(1093), + [anon_sym_error] = ACTIONS(1093), + [anon_sym_list] = ACTIONS(1093), + [anon_sym_GT] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_break] = ACTIONS(1093), + [anon_sym_continue] = ACTIONS(1093), + [anon_sym_for] = ACTIONS(1093), + [anon_sym_in] = ACTIONS(1093), + [anon_sym_loop] = ACTIONS(1093), + [anon_sym_make] = ACTIONS(1093), + [anon_sym_while] = ACTIONS(1093), + [anon_sym_do] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1093), + [anon_sym_else] = ACTIONS(1093), + [anon_sym_match] = ACTIONS(1093), + [anon_sym_RBRACE] = ACTIONS(1093), + [anon_sym_try] = ACTIONS(1093), + [anon_sym_catch] = ACTIONS(1093), + [anon_sym_return] = ACTIONS(1093), + [anon_sym_source] = ACTIONS(1093), + [anon_sym_source_DASHenv] = ACTIONS(1093), + [anon_sym_register] = ACTIONS(1093), + [anon_sym_hide] = ACTIONS(1093), + [anon_sym_hide_DASHenv] = ACTIONS(1093), + [anon_sym_overlay] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1093), + [anon_sym_as] = ACTIONS(1093), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_STAR_STAR] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1093), + [anon_sym_SLASH] = ACTIONS(1093), + [anon_sym_mod] = ACTIONS(1093), + [anon_sym_SLASH_SLASH] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_bit_DASHshl] = ACTIONS(1093), + [anon_sym_bit_DASHshr] = ACTIONS(1093), + [anon_sym_EQ_EQ] = ACTIONS(1093), + [anon_sym_BANG_EQ] = ACTIONS(1093), + [anon_sym_LT2] = ACTIONS(1093), + [anon_sym_LT_EQ] = ACTIONS(1093), + [anon_sym_GT_EQ] = ACTIONS(1093), + [anon_sym_not_DASHin] = ACTIONS(1093), + [anon_sym_starts_DASHwith] = ACTIONS(1093), + [anon_sym_ends_DASHwith] = ACTIONS(1093), + [anon_sym_EQ_TILDE] = ACTIONS(1093), + [anon_sym_BANG_TILDE] = ACTIONS(1093), + [anon_sym_bit_DASHand] = ACTIONS(1093), + [anon_sym_bit_DASHxor] = ACTIONS(1093), + [anon_sym_bit_DASHor] = ACTIONS(1093), + [anon_sym_and] = ACTIONS(1093), + [anon_sym_xor] = ACTIONS(1093), + [anon_sym_or] = ACTIONS(1093), + [aux_sym__val_number_decimal_token1] = ACTIONS(1093), + [aux_sym__val_number_decimal_token2] = ACTIONS(1093), + [anon_sym_DOT2] = ACTIONS(1093), + [aux_sym__val_number_decimal_token3] = ACTIONS(1093), + [aux_sym__val_number_token1] = ACTIONS(1093), + [aux_sym__val_number_token2] = ACTIONS(1093), + [aux_sym__val_number_token3] = ACTIONS(1093), + [aux_sym__val_number_token4] = ACTIONS(1093), + [aux_sym__val_number_token5] = ACTIONS(1093), + [aux_sym__val_number_token6] = ACTIONS(1093), + [anon_sym_DQUOTE] = ACTIONS(1093), + [sym__str_single_quotes] = ACTIONS(1093), + [sym__str_back_ticks] = ACTIONS(1093), + [sym__entry_separator] = ACTIONS(1095), + [aux_sym__record_key_token2] = ACTIONS(1093), + [anon_sym_POUND] = ACTIONS(113), + }, + [650] = { + [sym_comment] = STATE(650), + [anon_sym_export] = ACTIONS(1237), + [anon_sym_alias] = ACTIONS(1237), + [anon_sym_let] = ACTIONS(1237), + [anon_sym_let_DASHenv] = ACTIONS(1237), + [anon_sym_mut] = ACTIONS(1237), + [anon_sym_const] = ACTIONS(1237), + [sym_cmd_identifier] = ACTIONS(1237), + [anon_sym_def] = ACTIONS(1237), + [anon_sym_export_DASHenv] = ACTIONS(1237), + [anon_sym_extern] = ACTIONS(1237), + [anon_sym_module] = ACTIONS(1237), + [anon_sym_use] = ACTIONS(1237), + [anon_sym_LPAREN] = ACTIONS(1237), + [anon_sym_DOLLAR] = ACTIONS(1237), + [anon_sym_error] = ACTIONS(1237), + [anon_sym_list] = ACTIONS(1237), + [anon_sym_GT] = ACTIONS(1237), + [anon_sym_DASH] = ACTIONS(1237), + [anon_sym_break] = ACTIONS(1237), + [anon_sym_continue] = ACTIONS(1237), + [anon_sym_for] = ACTIONS(1237), + [anon_sym_in] = ACTIONS(1237), + [anon_sym_loop] = ACTIONS(1237), + [anon_sym_make] = ACTIONS(1237), + [anon_sym_while] = ACTIONS(1237), + [anon_sym_do] = ACTIONS(1237), + [anon_sym_if] = ACTIONS(1237), + [anon_sym_else] = ACTIONS(1237), + [anon_sym_match] = ACTIONS(1237), + [anon_sym_RBRACE] = ACTIONS(1237), + [anon_sym_try] = ACTIONS(1237), + [anon_sym_catch] = ACTIONS(1237), + [anon_sym_return] = ACTIONS(1237), + [anon_sym_source] = ACTIONS(1237), + [anon_sym_source_DASHenv] = ACTIONS(1237), + [anon_sym_register] = ACTIONS(1237), + [anon_sym_hide] = ACTIONS(1237), + [anon_sym_hide_DASHenv] = ACTIONS(1237), + [anon_sym_overlay] = ACTIONS(1237), + [anon_sym_new] = ACTIONS(1237), + [anon_sym_as] = ACTIONS(1237), + [anon_sym_STAR] = ACTIONS(1237), + [anon_sym_STAR_STAR] = ACTIONS(1237), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_SLASH] = ACTIONS(1237), + [anon_sym_mod] = ACTIONS(1237), + [anon_sym_SLASH_SLASH] = ACTIONS(1237), + [anon_sym_PLUS] = ACTIONS(1237), + [anon_sym_bit_DASHshl] = ACTIONS(1237), + [anon_sym_bit_DASHshr] = ACTIONS(1237), + [anon_sym_EQ_EQ] = ACTIONS(1237), + [anon_sym_BANG_EQ] = ACTIONS(1237), + [anon_sym_LT2] = ACTIONS(1237), + [anon_sym_LT_EQ] = ACTIONS(1237), + [anon_sym_GT_EQ] = ACTIONS(1237), + [anon_sym_not_DASHin] = ACTIONS(1237), + [anon_sym_starts_DASHwith] = ACTIONS(1237), + [anon_sym_ends_DASHwith] = ACTIONS(1237), + [anon_sym_EQ_TILDE] = ACTIONS(1237), + [anon_sym_BANG_TILDE] = ACTIONS(1237), + [anon_sym_bit_DASHand] = ACTIONS(1237), + [anon_sym_bit_DASHxor] = ACTIONS(1237), + [anon_sym_bit_DASHor] = ACTIONS(1237), + [anon_sym_and] = ACTIONS(1237), + [anon_sym_xor] = ACTIONS(1237), + [anon_sym_or] = ACTIONS(1237), + [aux_sym__val_number_decimal_token1] = ACTIONS(1237), + [aux_sym__val_number_decimal_token2] = ACTIONS(1237), + [anon_sym_DOT2] = ACTIONS(1237), + [aux_sym__val_number_decimal_token3] = ACTIONS(1237), + [aux_sym__val_number_token1] = ACTIONS(1237), + [aux_sym__val_number_token2] = ACTIONS(1237), + [aux_sym__val_number_token3] = ACTIONS(1237), + [aux_sym__val_number_token4] = ACTIONS(1237), + [aux_sym__val_number_token5] = ACTIONS(1237), + [aux_sym__val_number_token6] = ACTIONS(1237), + [anon_sym_DQUOTE] = ACTIONS(1237), + [sym__str_single_quotes] = ACTIONS(1237), + [sym__str_back_ticks] = ACTIONS(1237), + [sym__entry_separator] = ACTIONS(1239), + [aux_sym__record_key_token2] = ACTIONS(1237), + [anon_sym_POUND] = ACTIONS(113), + }, + [651] = { + [sym_comment] = STATE(651), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_list] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_make] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_else] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_catch] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [sym__entry_separator] = ACTIONS(1173), + [aux_sym__record_key_token2] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(113), + }, + [652] = { + [sym_comment] = STATE(652), + [anon_sym_export] = ACTIONS(1241), + [anon_sym_alias] = ACTIONS(1241), + [anon_sym_let] = ACTIONS(1241), + [anon_sym_let_DASHenv] = ACTIONS(1241), + [anon_sym_mut] = ACTIONS(1241), + [anon_sym_const] = ACTIONS(1241), + [sym_cmd_identifier] = ACTIONS(1241), + [anon_sym_def] = ACTIONS(1241), + [anon_sym_export_DASHenv] = ACTIONS(1241), + [anon_sym_extern] = ACTIONS(1241), + [anon_sym_module] = ACTIONS(1241), + [anon_sym_use] = ACTIONS(1241), + [anon_sym_LPAREN] = ACTIONS(1241), + [anon_sym_DOLLAR] = ACTIONS(1241), + [anon_sym_error] = ACTIONS(1241), + [anon_sym_list] = ACTIONS(1241), + [anon_sym_GT] = ACTIONS(1241), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_break] = ACTIONS(1241), + [anon_sym_continue] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_in] = ACTIONS(1241), + [anon_sym_loop] = ACTIONS(1241), + [anon_sym_make] = ACTIONS(1241), + [anon_sym_while] = ACTIONS(1241), + [anon_sym_do] = ACTIONS(1241), + [anon_sym_if] = ACTIONS(1241), + [anon_sym_else] = ACTIONS(1241), + [anon_sym_match] = ACTIONS(1241), + [anon_sym_RBRACE] = ACTIONS(1241), + [anon_sym_try] = ACTIONS(1241), + [anon_sym_catch] = ACTIONS(1241), + [anon_sym_return] = ACTIONS(1241), + [anon_sym_source] = ACTIONS(1241), + [anon_sym_source_DASHenv] = ACTIONS(1241), + [anon_sym_register] = ACTIONS(1241), + [anon_sym_hide] = ACTIONS(1241), + [anon_sym_hide_DASHenv] = ACTIONS(1241), + [anon_sym_overlay] = ACTIONS(1241), + [anon_sym_new] = ACTIONS(1241), + [anon_sym_as] = ACTIONS(1241), + [anon_sym_STAR] = ACTIONS(1241), + [anon_sym_STAR_STAR] = ACTIONS(1241), + [anon_sym_PLUS_PLUS] = ACTIONS(1241), + [anon_sym_SLASH] = ACTIONS(1241), + [anon_sym_mod] = ACTIONS(1241), + [anon_sym_SLASH_SLASH] = ACTIONS(1241), + [anon_sym_PLUS] = ACTIONS(1241), + [anon_sym_bit_DASHshl] = ACTIONS(1241), + [anon_sym_bit_DASHshr] = ACTIONS(1241), + [anon_sym_EQ_EQ] = ACTIONS(1241), + [anon_sym_BANG_EQ] = ACTIONS(1241), + [anon_sym_LT2] = ACTIONS(1241), + [anon_sym_LT_EQ] = ACTIONS(1241), + [anon_sym_GT_EQ] = ACTIONS(1241), + [anon_sym_not_DASHin] = ACTIONS(1241), + [anon_sym_starts_DASHwith] = ACTIONS(1241), + [anon_sym_ends_DASHwith] = ACTIONS(1241), + [anon_sym_EQ_TILDE] = ACTIONS(1241), + [anon_sym_BANG_TILDE] = ACTIONS(1241), + [anon_sym_bit_DASHand] = ACTIONS(1241), + [anon_sym_bit_DASHxor] = ACTIONS(1241), + [anon_sym_bit_DASHor] = ACTIONS(1241), + [anon_sym_and] = ACTIONS(1241), + [anon_sym_xor] = ACTIONS(1241), + [anon_sym_or] = ACTIONS(1241), + [aux_sym__val_number_decimal_token1] = ACTIONS(1241), + [aux_sym__val_number_decimal_token2] = ACTIONS(1241), + [anon_sym_DOT2] = ACTIONS(1241), + [aux_sym__val_number_decimal_token3] = ACTIONS(1241), + [aux_sym__val_number_token1] = ACTIONS(1241), + [aux_sym__val_number_token2] = ACTIONS(1241), + [aux_sym__val_number_token3] = ACTIONS(1241), + [aux_sym__val_number_token4] = ACTIONS(1241), + [aux_sym__val_number_token5] = ACTIONS(1241), + [aux_sym__val_number_token6] = ACTIONS(1241), + [anon_sym_DQUOTE] = ACTIONS(1241), + [sym__str_single_quotes] = ACTIONS(1241), + [sym__str_back_ticks] = ACTIONS(1241), + [sym__entry_separator] = ACTIONS(1243), + [aux_sym__record_key_token2] = ACTIONS(1241), + [anon_sym_POUND] = ACTIONS(113), + }, + [653] = { + [sym_comment] = STATE(653), + [anon_sym_export] = ACTIONS(1245), + [anon_sym_alias] = ACTIONS(1245), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_let_DASHenv] = ACTIONS(1245), + [anon_sym_mut] = ACTIONS(1245), + [anon_sym_const] = ACTIONS(1245), + [sym_cmd_identifier] = ACTIONS(1245), + [anon_sym_def] = ACTIONS(1245), + [anon_sym_export_DASHenv] = ACTIONS(1245), + [anon_sym_extern] = ACTIONS(1245), + [anon_sym_module] = ACTIONS(1245), + [anon_sym_use] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_DOLLAR] = ACTIONS(1245), + [anon_sym_error] = ACTIONS(1245), + [anon_sym_list] = ACTIONS(1245), + [anon_sym_GT] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_break] = ACTIONS(1245), + [anon_sym_continue] = ACTIONS(1245), + [anon_sym_for] = ACTIONS(1245), + [anon_sym_in] = ACTIONS(1245), + [anon_sym_loop] = ACTIONS(1245), + [anon_sym_make] = ACTIONS(1245), + [anon_sym_while] = ACTIONS(1245), + [anon_sym_do] = ACTIONS(1245), + [anon_sym_if] = ACTIONS(1245), + [anon_sym_else] = ACTIONS(1245), + [anon_sym_match] = ACTIONS(1245), + [anon_sym_RBRACE] = ACTIONS(1245), + [anon_sym_try] = ACTIONS(1245), + [anon_sym_catch] = ACTIONS(1245), + [anon_sym_return] = ACTIONS(1245), + [anon_sym_source] = ACTIONS(1245), + [anon_sym_source_DASHenv] = ACTIONS(1245), + [anon_sym_register] = ACTIONS(1245), + [anon_sym_hide] = ACTIONS(1245), + [anon_sym_hide_DASHenv] = ACTIONS(1245), + [anon_sym_overlay] = ACTIONS(1245), + [anon_sym_new] = ACTIONS(1245), + [anon_sym_as] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(1245), + [anon_sym_STAR_STAR] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(1245), + [anon_sym_mod] = ACTIONS(1245), + [anon_sym_SLASH_SLASH] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_bit_DASHshl] = ACTIONS(1245), + [anon_sym_bit_DASHshr] = ACTIONS(1245), + [anon_sym_EQ_EQ] = ACTIONS(1245), + [anon_sym_BANG_EQ] = ACTIONS(1245), + [anon_sym_LT2] = ACTIONS(1245), + [anon_sym_LT_EQ] = ACTIONS(1245), + [anon_sym_GT_EQ] = ACTIONS(1245), + [anon_sym_not_DASHin] = ACTIONS(1245), + [anon_sym_starts_DASHwith] = ACTIONS(1245), + [anon_sym_ends_DASHwith] = ACTIONS(1245), + [anon_sym_EQ_TILDE] = ACTIONS(1245), + [anon_sym_BANG_TILDE] = ACTIONS(1245), + [anon_sym_bit_DASHand] = ACTIONS(1245), + [anon_sym_bit_DASHxor] = ACTIONS(1245), + [anon_sym_bit_DASHor] = ACTIONS(1245), + [anon_sym_and] = ACTIONS(1245), + [anon_sym_xor] = ACTIONS(1245), + [anon_sym_or] = ACTIONS(1245), + [aux_sym__val_number_decimal_token1] = ACTIONS(1245), + [aux_sym__val_number_decimal_token2] = ACTIONS(1245), + [anon_sym_DOT2] = ACTIONS(1245), + [aux_sym__val_number_decimal_token3] = ACTIONS(1245), + [aux_sym__val_number_token1] = ACTIONS(1245), + [aux_sym__val_number_token2] = ACTIONS(1245), + [aux_sym__val_number_token3] = ACTIONS(1245), + [aux_sym__val_number_token4] = ACTIONS(1245), + [aux_sym__val_number_token5] = ACTIONS(1245), + [aux_sym__val_number_token6] = ACTIONS(1245), + [anon_sym_DQUOTE] = ACTIONS(1245), + [sym__str_single_quotes] = ACTIONS(1245), + [sym__str_back_ticks] = ACTIONS(1245), + [sym__entry_separator] = ACTIONS(1247), + [aux_sym__record_key_token2] = ACTIONS(1245), + [anon_sym_POUND] = ACTIONS(113), + }, + [654] = { + [sym_comment] = STATE(654), + [anon_sym_export] = ACTIONS(1249), + [anon_sym_alias] = ACTIONS(1249), + [anon_sym_let] = ACTIONS(1249), + [anon_sym_let_DASHenv] = ACTIONS(1249), + [anon_sym_mut] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [sym_cmd_identifier] = ACTIONS(1249), + [anon_sym_def] = ACTIONS(1249), + [anon_sym_export_DASHenv] = ACTIONS(1249), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_module] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1249), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_DOLLAR] = ACTIONS(1249), + [anon_sym_error] = ACTIONS(1249), + [anon_sym_list] = ACTIONS(1249), + [anon_sym_GT] = ACTIONS(1249), + [anon_sym_DASH] = ACTIONS(1249), + [anon_sym_break] = ACTIONS(1249), + [anon_sym_continue] = ACTIONS(1249), + [anon_sym_for] = ACTIONS(1249), + [anon_sym_in] = ACTIONS(1249), + [anon_sym_loop] = ACTIONS(1249), + [anon_sym_make] = ACTIONS(1249), + [anon_sym_while] = ACTIONS(1249), + [anon_sym_do] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1249), + [anon_sym_else] = ACTIONS(1249), + [anon_sym_match] = ACTIONS(1249), + [anon_sym_RBRACE] = ACTIONS(1249), + [anon_sym_try] = ACTIONS(1249), + [anon_sym_catch] = ACTIONS(1249), + [anon_sym_return] = ACTIONS(1249), + [anon_sym_source] = ACTIONS(1249), + [anon_sym_source_DASHenv] = ACTIONS(1249), + [anon_sym_register] = ACTIONS(1249), + [anon_sym_hide] = ACTIONS(1249), + [anon_sym_hide_DASHenv] = ACTIONS(1249), + [anon_sym_overlay] = ACTIONS(1249), + [anon_sym_new] = ACTIONS(1249), + [anon_sym_as] = ACTIONS(1249), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_STAR_STAR] = ACTIONS(1249), + [anon_sym_PLUS_PLUS] = ACTIONS(1249), + [anon_sym_SLASH] = ACTIONS(1249), + [anon_sym_mod] = ACTIONS(1249), + [anon_sym_SLASH_SLASH] = ACTIONS(1249), + [anon_sym_PLUS] = ACTIONS(1249), + [anon_sym_bit_DASHshl] = ACTIONS(1249), + [anon_sym_bit_DASHshr] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1249), + [anon_sym_BANG_EQ] = ACTIONS(1249), + [anon_sym_LT2] = ACTIONS(1249), + [anon_sym_LT_EQ] = ACTIONS(1249), + [anon_sym_GT_EQ] = ACTIONS(1249), + [anon_sym_not_DASHin] = ACTIONS(1249), + [anon_sym_starts_DASHwith] = ACTIONS(1249), + [anon_sym_ends_DASHwith] = ACTIONS(1249), + [anon_sym_EQ_TILDE] = ACTIONS(1249), + [anon_sym_BANG_TILDE] = ACTIONS(1249), + [anon_sym_bit_DASHand] = ACTIONS(1249), + [anon_sym_bit_DASHxor] = ACTIONS(1249), + [anon_sym_bit_DASHor] = ACTIONS(1249), + [anon_sym_and] = ACTIONS(1249), + [anon_sym_xor] = ACTIONS(1249), + [anon_sym_or] = ACTIONS(1249), + [aux_sym__val_number_decimal_token1] = ACTIONS(1249), + [aux_sym__val_number_decimal_token2] = ACTIONS(1249), + [anon_sym_DOT2] = ACTIONS(1249), + [aux_sym__val_number_decimal_token3] = ACTIONS(1249), + [aux_sym__val_number_token1] = ACTIONS(1249), + [aux_sym__val_number_token2] = ACTIONS(1249), + [aux_sym__val_number_token3] = ACTIONS(1249), + [aux_sym__val_number_token4] = ACTIONS(1249), + [aux_sym__val_number_token5] = ACTIONS(1249), + [aux_sym__val_number_token6] = ACTIONS(1249), + [anon_sym_DQUOTE] = ACTIONS(1249), + [sym__str_single_quotes] = ACTIONS(1249), + [sym__str_back_ticks] = ACTIONS(1249), + [sym__entry_separator] = ACTIONS(1251), + [aux_sym__record_key_token2] = ACTIONS(1249), + [anon_sym_POUND] = ACTIONS(113), + }, + [655] = { + [sym_comment] = STATE(655), [anon_sym_export] = ACTIONS(1253), [anon_sym_alias] = ACTIONS(1253), [anon_sym_let] = ACTIONS(1253), [anon_sym_let_DASHenv] = ACTIONS(1253), [anon_sym_mut] = ACTIONS(1253), [anon_sym_const] = ACTIONS(1253), - [anon_sym_SEMI] = ACTIONS(1253), [sym_cmd_identifier] = ACTIONS(1253), - [anon_sym_LF] = ACTIONS(1255), [anon_sym_def] = ACTIONS(1253), [anon_sym_export_DASHenv] = ACTIONS(1253), [anon_sym_extern] = ACTIONS(1253), [anon_sym_module] = ACTIONS(1253), [anon_sym_use] = ACTIONS(1253), - [anon_sym_LBRACK] = ACTIONS(1253), [anon_sym_LPAREN] = ACTIONS(1253), - [anon_sym_RPAREN] = ACTIONS(1253), [anon_sym_DOLLAR] = ACTIONS(1253), [anon_sym_error] = ACTIONS(1253), + [anon_sym_list] = ACTIONS(1253), [anon_sym_GT] = ACTIONS(1253), [anon_sym_DASH] = ACTIONS(1253), [anon_sym_break] = ACTIONS(1253), @@ -162754,14 +159947,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1253), [anon_sym_in] = ACTIONS(1253), [anon_sym_loop] = ACTIONS(1253), + [anon_sym_make] = ACTIONS(1253), [anon_sym_while] = ACTIONS(1253), [anon_sym_do] = ACTIONS(1253), [anon_sym_if] = ACTIONS(1253), + [anon_sym_else] = ACTIONS(1253), [anon_sym_match] = ACTIONS(1253), - [anon_sym_LBRACE] = ACTIONS(1253), [anon_sym_RBRACE] = ACTIONS(1253), - [anon_sym_DOT_DOT] = ACTIONS(1253), [anon_sym_try] = ACTIONS(1253), + [anon_sym_catch] = ACTIONS(1253), [anon_sym_return] = ACTIONS(1253), [anon_sym_source] = ACTIONS(1253), [anon_sym_source_DASHenv] = ACTIONS(1253), @@ -162769,8 +159963,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(1253), [anon_sym_hide_DASHenv] = ACTIONS(1253), [anon_sym_overlay] = ACTIONS(1253), + [anon_sym_new] = ACTIONS(1253), + [anon_sym_as] = ACTIONS(1253), [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_where] = ACTIONS(1253), [anon_sym_STAR_STAR] = ACTIONS(1253), [anon_sym_PLUS_PLUS] = ACTIONS(1253), [anon_sym_SLASH] = ACTIONS(1253), @@ -162795,12 +159990,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(1253), [anon_sym_xor] = ACTIONS(1253), [anon_sym_or] = ACTIONS(1253), - [anon_sym_not] = ACTIONS(1253), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1253), - [anon_sym_DOT_DOT_LT] = ACTIONS(1253), - [anon_sym_null] = ACTIONS(1253), - [anon_sym_true] = ACTIONS(1253), - [anon_sym_false] = ACTIONS(1253), [aux_sym__val_number_decimal_token1] = ACTIONS(1253), [aux_sym__val_number_decimal_token2] = ACTIONS(1253), [anon_sym_DOT2] = ACTIONS(1253), @@ -162811,6235 +160000,4346 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token4] = ACTIONS(1253), [aux_sym__val_number_token5] = ACTIONS(1253), [aux_sym__val_number_token6] = ACTIONS(1253), - [anon_sym_0b] = ACTIONS(1253), - [anon_sym_0o] = ACTIONS(1253), - [anon_sym_0x] = ACTIONS(1253), - [sym_val_date] = ACTIONS(1253), [anon_sym_DQUOTE] = ACTIONS(1253), [sym__str_single_quotes] = ACTIONS(1253), [sym__str_back_ticks] = ACTIONS(1253), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1253), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1253), - [anon_sym_CARET] = ACTIONS(1253), - [anon_sym_POUND] = ACTIONS(113), - }, - [634] = { - [sym_comment] = STATE(634), - [anon_sym_export] = ACTIONS(1418), - [anon_sym_alias] = ACTIONS(1418), - [anon_sym_let] = ACTIONS(1418), - [anon_sym_let_DASHenv] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(1418), - [sym_cmd_identifier] = ACTIONS(1418), - [anon_sym_LF] = ACTIONS(1420), - [anon_sym_def] = ACTIONS(1418), - [anon_sym_export_DASHenv] = ACTIONS(1418), - [anon_sym_extern] = ACTIONS(1418), - [anon_sym_module] = ACTIONS(1418), - [anon_sym_use] = ACTIONS(1418), - [anon_sym_LBRACK] = ACTIONS(1418), - [anon_sym_LPAREN] = ACTIONS(1418), - [anon_sym_RPAREN] = ACTIONS(1418), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_error] = ACTIONS(1418), - [anon_sym_GT] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_in] = ACTIONS(1418), - [anon_sym_loop] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_match] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_RBRACE] = ACTIONS(1418), - [anon_sym_DOT_DOT] = ACTIONS(1418), - [anon_sym_try] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_source] = ACTIONS(1418), - [anon_sym_source_DASHenv] = ACTIONS(1418), - [anon_sym_register] = ACTIONS(1418), - [anon_sym_hide] = ACTIONS(1418), - [anon_sym_hide_DASHenv] = ACTIONS(1418), - [anon_sym_overlay] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_where] = ACTIONS(1418), - [anon_sym_STAR_STAR] = ACTIONS(1418), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_SLASH] = ACTIONS(1418), - [anon_sym_mod] = ACTIONS(1418), - [anon_sym_SLASH_SLASH] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_bit_DASHshl] = ACTIONS(1418), - [anon_sym_bit_DASHshr] = ACTIONS(1418), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_LT2] = ACTIONS(1418), - [anon_sym_LT_EQ] = ACTIONS(1418), - [anon_sym_GT_EQ] = ACTIONS(1418), - [anon_sym_not_DASHin] = ACTIONS(1418), - [anon_sym_starts_DASHwith] = ACTIONS(1418), - [anon_sym_ends_DASHwith] = ACTIONS(1418), - [anon_sym_EQ_TILDE] = ACTIONS(1418), - [anon_sym_BANG_TILDE] = ACTIONS(1418), - [anon_sym_bit_DASHand] = ACTIONS(1418), - [anon_sym_bit_DASHxor] = ACTIONS(1418), - [anon_sym_bit_DASHor] = ACTIONS(1418), - [anon_sym_and] = ACTIONS(1418), - [anon_sym_xor] = ACTIONS(1418), - [anon_sym_or] = ACTIONS(1418), - [anon_sym_not] = ACTIONS(1418), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1418), - [anon_sym_DOT_DOT_LT] = ACTIONS(1418), - [anon_sym_null] = ACTIONS(1418), - [anon_sym_true] = ACTIONS(1418), - [anon_sym_false] = ACTIONS(1418), - [aux_sym__val_number_decimal_token1] = ACTIONS(1418), - [aux_sym__val_number_decimal_token2] = ACTIONS(1418), - [anon_sym_DOT2] = ACTIONS(1418), - [aux_sym__val_number_decimal_token3] = ACTIONS(1418), - [aux_sym__val_number_token1] = ACTIONS(1418), - [aux_sym__val_number_token2] = ACTIONS(1418), - [aux_sym__val_number_token3] = ACTIONS(1418), - [aux_sym__val_number_token4] = ACTIONS(1418), - [aux_sym__val_number_token5] = ACTIONS(1418), - [aux_sym__val_number_token6] = ACTIONS(1418), - [anon_sym_0b] = ACTIONS(1418), - [anon_sym_0o] = ACTIONS(1418), - [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1418), - [anon_sym_DQUOTE] = ACTIONS(1418), - [sym__str_single_quotes] = ACTIONS(1418), - [sym__str_back_ticks] = ACTIONS(1418), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), + [sym__entry_separator] = ACTIONS(1255), + [aux_sym__record_key_token2] = ACTIONS(1253), [anon_sym_POUND] = ACTIONS(113), }, - [635] = { - [sym_comment] = STATE(635), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), - }, - [636] = { - [sym_comment] = STATE(636), - [ts_builtin_sym_end] = ACTIONS(1290), - [anon_sym_export] = ACTIONS(1243), - [anon_sym_alias] = ACTIONS(1243), - [anon_sym_let] = ACTIONS(1243), - [anon_sym_let_DASHenv] = ACTIONS(1243), - [anon_sym_mut] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1243), - [sym_cmd_identifier] = ACTIONS(1243), - [anon_sym_LF] = ACTIONS(1243), - [anon_sym_def] = ACTIONS(1243), - [anon_sym_export_DASHenv] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1243), - [anon_sym_module] = ACTIONS(1243), - [anon_sym_use] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_error] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_in] = ACTIONS(1243), - [anon_sym_loop] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_match] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_try] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_source] = ACTIONS(1243), - [anon_sym_source_DASHenv] = ACTIONS(1243), - [anon_sym_register] = ACTIONS(1243), - [anon_sym_hide] = ACTIONS(1243), - [anon_sym_hide_DASHenv] = ACTIONS(1243), - [anon_sym_overlay] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1243), - [anon_sym_where] = ACTIONS(1243), - [anon_sym_STAR_STAR] = ACTIONS(1243), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_SLASH] = ACTIONS(1243), - [anon_sym_mod] = ACTIONS(1243), - [anon_sym_SLASH_SLASH] = ACTIONS(1243), - [anon_sym_PLUS] = ACTIONS(1243), - [anon_sym_bit_DASHshl] = ACTIONS(1243), - [anon_sym_bit_DASHshr] = ACTIONS(1243), - [anon_sym_EQ_EQ] = ACTIONS(1243), - [anon_sym_BANG_EQ] = ACTIONS(1243), - [anon_sym_LT2] = ACTIONS(1243), - [anon_sym_LT_EQ] = ACTIONS(1243), - [anon_sym_GT_EQ] = ACTIONS(1243), - [anon_sym_not_DASHin] = ACTIONS(1243), - [anon_sym_starts_DASHwith] = ACTIONS(1243), - [anon_sym_ends_DASHwith] = ACTIONS(1243), - [anon_sym_EQ_TILDE] = ACTIONS(1243), - [anon_sym_BANG_TILDE] = ACTIONS(1243), - [anon_sym_bit_DASHand] = ACTIONS(1243), - [anon_sym_bit_DASHxor] = ACTIONS(1243), - [anon_sym_bit_DASHor] = ACTIONS(1243), - [anon_sym_and] = ACTIONS(1243), - [anon_sym_xor] = ACTIONS(1243), - [anon_sym_or] = ACTIONS(1243), - [anon_sym_not] = ACTIONS(1243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1243), - [anon_sym_DOT_DOT_LT] = ACTIONS(1243), - [anon_sym_null] = ACTIONS(1243), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_decimal_token2] = ACTIONS(1243), - [anon_sym_DOT2] = ACTIONS(1243), - [aux_sym__val_number_decimal_token3] = ACTIONS(1243), - [aux_sym__val_number_token1] = ACTIONS(1243), - [aux_sym__val_number_token2] = ACTIONS(1243), - [aux_sym__val_number_token3] = ACTIONS(1243), - [aux_sym__val_number_token4] = ACTIONS(1243), - [aux_sym__val_number_token5] = ACTIONS(1243), - [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_0b] = ACTIONS(1243), - [anon_sym_0o] = ACTIONS(1243), - [anon_sym_0x] = ACTIONS(1243), - [sym_val_date] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym__str_single_quotes] = ACTIONS(1243), - [sym__str_back_ticks] = ACTIONS(1243), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1243), - [aux_sym__list_item_starts_with_sign_token1] = ACTIONS(1494), - [anon_sym_CARET] = ACTIONS(1243), - [anon_sym_POUND] = ACTIONS(113), - }, - [637] = { - [sym_comment] = STATE(637), - [anon_sym_export] = ACTIONS(1273), - [anon_sym_alias] = ACTIONS(1273), - [anon_sym_let] = ACTIONS(1273), - [anon_sym_let_DASHenv] = ACTIONS(1273), - [anon_sym_mut] = ACTIONS(1273), - [anon_sym_const] = ACTIONS(1273), - [anon_sym_SEMI] = ACTIONS(1273), - [sym_cmd_identifier] = ACTIONS(1273), - [anon_sym_LF] = ACTIONS(1275), - [anon_sym_def] = ACTIONS(1273), - [anon_sym_export_DASHenv] = ACTIONS(1273), - [anon_sym_extern] = ACTIONS(1273), - [anon_sym_module] = ACTIONS(1273), - [anon_sym_use] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1273), - [anon_sym_LPAREN] = ACTIONS(1273), - [anon_sym_RPAREN] = ACTIONS(1273), - [anon_sym_DOLLAR] = ACTIONS(1273), - [anon_sym_error] = ACTIONS(1273), - [anon_sym_GT] = ACTIONS(1273), - [anon_sym_DASH] = ACTIONS(1273), - [anon_sym_break] = ACTIONS(1273), - [anon_sym_continue] = ACTIONS(1273), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_in] = ACTIONS(1273), - [anon_sym_loop] = ACTIONS(1273), - [anon_sym_while] = ACTIONS(1273), - [anon_sym_do] = ACTIONS(1273), - [anon_sym_if] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_RBRACE] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_try] = ACTIONS(1273), - [anon_sym_return] = ACTIONS(1273), - [anon_sym_source] = ACTIONS(1273), - [anon_sym_source_DASHenv] = ACTIONS(1273), - [anon_sym_register] = ACTIONS(1273), - [anon_sym_hide] = ACTIONS(1273), - [anon_sym_hide_DASHenv] = ACTIONS(1273), - [anon_sym_overlay] = ACTIONS(1273), - [anon_sym_STAR] = ACTIONS(1273), - [anon_sym_where] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1273), - [anon_sym_PLUS_PLUS] = ACTIONS(1273), - [anon_sym_SLASH] = ACTIONS(1273), - [anon_sym_mod] = ACTIONS(1273), - [anon_sym_SLASH_SLASH] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(1273), - [anon_sym_bit_DASHshl] = ACTIONS(1273), - [anon_sym_bit_DASHshr] = ACTIONS(1273), - [anon_sym_EQ_EQ] = ACTIONS(1273), - [anon_sym_BANG_EQ] = ACTIONS(1273), - [anon_sym_LT2] = ACTIONS(1273), - [anon_sym_LT_EQ] = ACTIONS(1273), - [anon_sym_GT_EQ] = ACTIONS(1273), - [anon_sym_not_DASHin] = ACTIONS(1273), - [anon_sym_starts_DASHwith] = ACTIONS(1273), - [anon_sym_ends_DASHwith] = ACTIONS(1273), - [anon_sym_EQ_TILDE] = ACTIONS(1273), - [anon_sym_BANG_TILDE] = ACTIONS(1273), - [anon_sym_bit_DASHand] = ACTIONS(1273), - [anon_sym_bit_DASHxor] = ACTIONS(1273), - [anon_sym_bit_DASHor] = ACTIONS(1273), - [anon_sym_and] = ACTIONS(1273), - [anon_sym_xor] = ACTIONS(1273), - [anon_sym_or] = ACTIONS(1273), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1273), - [anon_sym_DOT_DOT_LT] = ACTIONS(1273), - [anon_sym_null] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1273), - [anon_sym_false] = ACTIONS(1273), - [aux_sym__val_number_decimal_token1] = ACTIONS(1273), - [aux_sym__val_number_decimal_token2] = ACTIONS(1273), - [anon_sym_DOT2] = ACTIONS(1273), - [aux_sym__val_number_decimal_token3] = ACTIONS(1273), - [aux_sym__val_number_token1] = ACTIONS(1273), - [aux_sym__val_number_token2] = ACTIONS(1273), - [aux_sym__val_number_token3] = ACTIONS(1273), - [aux_sym__val_number_token4] = ACTIONS(1273), - [aux_sym__val_number_token5] = ACTIONS(1273), - [aux_sym__val_number_token6] = ACTIONS(1273), - [anon_sym_0b] = ACTIONS(1273), - [anon_sym_0o] = ACTIONS(1273), - [anon_sym_0x] = ACTIONS(1273), - [sym_val_date] = ACTIONS(1273), - [anon_sym_DQUOTE] = ACTIONS(1273), - [sym__str_single_quotes] = ACTIONS(1273), - [sym__str_back_ticks] = ACTIONS(1273), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1273), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1273), - [anon_sym_CARET] = ACTIONS(1273), - [anon_sym_POUND] = ACTIONS(113), - }, - [638] = { - [sym_comment] = STATE(638), - [anon_sym_export] = ACTIONS(959), - [anon_sym_alias] = ACTIONS(959), - [anon_sym_let] = ACTIONS(959), - [anon_sym_let_DASHenv] = ACTIONS(959), - [anon_sym_mut] = ACTIONS(959), - [anon_sym_const] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(959), - [sym_cmd_identifier] = ACTIONS(959), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_def] = ACTIONS(959), - [anon_sym_export_DASHenv] = ACTIONS(959), - [anon_sym_extern] = ACTIONS(959), - [anon_sym_module] = ACTIONS(959), - [anon_sym_use] = ACTIONS(959), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_RPAREN] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_error] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_break] = ACTIONS(959), - [anon_sym_continue] = ACTIONS(959), - [anon_sym_for] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_loop] = ACTIONS(959), - [anon_sym_while] = ACTIONS(959), - [anon_sym_do] = ACTIONS(959), - [anon_sym_if] = ACTIONS(959), - [anon_sym_match] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_RBRACE] = ACTIONS(959), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_try] = ACTIONS(959), - [anon_sym_return] = ACTIONS(959), - [anon_sym_source] = ACTIONS(959), - [anon_sym_source_DASHenv] = ACTIONS(959), - [anon_sym_register] = ACTIONS(959), - [anon_sym_hide] = ACTIONS(959), - [anon_sym_hide_DASHenv] = ACTIONS(959), - [anon_sym_overlay] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_where] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(959), - [anon_sym_PLUS_PLUS] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(959), - [anon_sym_SLASH_SLASH] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(959), - [anon_sym_bit_DASHshr] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(959), - [anon_sym_BANG_EQ] = ACTIONS(959), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(959), - [anon_sym_GT_EQ] = ACTIONS(959), - [anon_sym_not_DASHin] = ACTIONS(959), - [anon_sym_starts_DASHwith] = ACTIONS(959), - [anon_sym_ends_DASHwith] = ACTIONS(959), - [anon_sym_EQ_TILDE] = ACTIONS(959), - [anon_sym_BANG_TILDE] = ACTIONS(959), - [anon_sym_bit_DASHand] = ACTIONS(959), - [anon_sym_bit_DASHxor] = ACTIONS(959), - [anon_sym_bit_DASHor] = ACTIONS(959), - [anon_sym_and] = ACTIONS(959), - [anon_sym_xor] = ACTIONS(959), - [anon_sym_or] = ACTIONS(959), - [anon_sym_not] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_DOT_DOT_LT] = ACTIONS(959), - [anon_sym_null] = ACTIONS(959), - [anon_sym_true] = ACTIONS(959), - [anon_sym_false] = ACTIONS(959), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(959), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(959), - [aux_sym__val_number_token1] = ACTIONS(959), - [aux_sym__val_number_token2] = ACTIONS(959), - [aux_sym__val_number_token3] = ACTIONS(959), - [aux_sym__val_number_token4] = ACTIONS(959), - [aux_sym__val_number_token5] = ACTIONS(959), - [aux_sym__val_number_token6] = ACTIONS(959), - [anon_sym_0b] = ACTIONS(959), - [anon_sym_0o] = ACTIONS(959), - [anon_sym_0x] = ACTIONS(959), - [sym_val_date] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [sym__str_single_quotes] = ACTIONS(959), - [sym__str_back_ticks] = ACTIONS(959), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(959), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(959), - [anon_sym_CARET] = ACTIONS(959), - [anon_sym_POUND] = ACTIONS(113), - }, - [639] = { - [sym_comment] = STATE(639), - [anon_sym_export] = ACTIONS(1280), - [anon_sym_alias] = ACTIONS(1280), - [anon_sym_let] = ACTIONS(1280), - [anon_sym_let_DASHenv] = ACTIONS(1280), - [anon_sym_mut] = ACTIONS(1280), - [anon_sym_const] = ACTIONS(1280), - [anon_sym_SEMI] = ACTIONS(1280), - [sym_cmd_identifier] = ACTIONS(1280), - [anon_sym_LF] = ACTIONS(1282), - [anon_sym_def] = ACTIONS(1280), - [anon_sym_export_DASHenv] = ACTIONS(1280), - [anon_sym_extern] = ACTIONS(1280), - [anon_sym_module] = ACTIONS(1280), - [anon_sym_use] = ACTIONS(1280), - [anon_sym_LBRACK] = ACTIONS(1280), - [anon_sym_LPAREN] = ACTIONS(1280), - [anon_sym_RPAREN] = ACTIONS(1280), - [anon_sym_DOLLAR] = ACTIONS(1280), - [anon_sym_error] = ACTIONS(1280), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_break] = ACTIONS(1280), - [anon_sym_continue] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_in] = ACTIONS(1280), - [anon_sym_loop] = ACTIONS(1280), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1280), - [anon_sym_RBRACE] = ACTIONS(1280), - [anon_sym_DOT_DOT] = ACTIONS(1280), - [anon_sym_try] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1280), - [anon_sym_source] = ACTIONS(1280), - [anon_sym_source_DASHenv] = ACTIONS(1280), - [anon_sym_register] = ACTIONS(1280), - [anon_sym_hide] = ACTIONS(1280), - [anon_sym_hide_DASHenv] = ACTIONS(1280), - [anon_sym_overlay] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1280), - [anon_sym_where] = ACTIONS(1280), - [anon_sym_STAR_STAR] = ACTIONS(1280), - [anon_sym_PLUS_PLUS] = ACTIONS(1280), - [anon_sym_SLASH] = ACTIONS(1280), - [anon_sym_mod] = ACTIONS(1280), - [anon_sym_SLASH_SLASH] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_bit_DASHshl] = ACTIONS(1280), - [anon_sym_bit_DASHshr] = ACTIONS(1280), - [anon_sym_EQ_EQ] = ACTIONS(1280), - [anon_sym_BANG_EQ] = ACTIONS(1280), - [anon_sym_LT2] = ACTIONS(1280), - [anon_sym_LT_EQ] = ACTIONS(1280), - [anon_sym_GT_EQ] = ACTIONS(1280), - [anon_sym_not_DASHin] = ACTIONS(1280), - [anon_sym_starts_DASHwith] = ACTIONS(1280), - [anon_sym_ends_DASHwith] = ACTIONS(1280), - [anon_sym_EQ_TILDE] = ACTIONS(1280), - [anon_sym_BANG_TILDE] = ACTIONS(1280), - [anon_sym_bit_DASHand] = ACTIONS(1280), - [anon_sym_bit_DASHxor] = ACTIONS(1280), - [anon_sym_bit_DASHor] = ACTIONS(1280), - [anon_sym_and] = ACTIONS(1280), - [anon_sym_xor] = ACTIONS(1280), - [anon_sym_or] = ACTIONS(1280), - [anon_sym_not] = ACTIONS(1280), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1280), - [anon_sym_DOT_DOT_LT] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1280), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [aux_sym__val_number_decimal_token1] = ACTIONS(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1280), - [anon_sym_DOT2] = ACTIONS(1280), - [aux_sym__val_number_decimal_token3] = ACTIONS(1280), - [aux_sym__val_number_token1] = ACTIONS(1280), - [aux_sym__val_number_token2] = ACTIONS(1280), - [aux_sym__val_number_token3] = ACTIONS(1280), - [aux_sym__val_number_token4] = ACTIONS(1280), - [aux_sym__val_number_token5] = ACTIONS(1280), - [aux_sym__val_number_token6] = ACTIONS(1280), - [anon_sym_0b] = ACTIONS(1280), - [anon_sym_0o] = ACTIONS(1280), - [anon_sym_0x] = ACTIONS(1280), - [sym_val_date] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1280), - [sym__str_single_quotes] = ACTIONS(1280), - [sym__str_back_ticks] = ACTIONS(1280), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1280), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1280), - [anon_sym_CARET] = ACTIONS(1280), - [anon_sym_POUND] = ACTIONS(113), - }, - [640] = { - [sym_comment] = STATE(640), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_RPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1486), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1480), - [anon_sym_PLUS_PLUS] = ACTIONS(1480), - [anon_sym_SLASH] = ACTIONS(1478), - [anon_sym_mod] = ACTIONS(1478), - [anon_sym_SLASH_SLASH] = ACTIONS(1478), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_bit_DASHshl] = ACTIONS(1488), - [anon_sym_bit_DASHshr] = ACTIONS(1488), - [anon_sym_EQ_EQ] = ACTIONS(1482), - [anon_sym_BANG_EQ] = ACTIONS(1482), - [anon_sym_LT2] = ACTIONS(1482), - [anon_sym_LT_EQ] = ACTIONS(1482), - [anon_sym_GT_EQ] = ACTIONS(1482), - [anon_sym_not_DASHin] = ACTIONS(1486), - [anon_sym_starts_DASHwith] = ACTIONS(1486), - [anon_sym_ends_DASHwith] = ACTIONS(1486), - [anon_sym_EQ_TILDE] = ACTIONS(1490), - [anon_sym_BANG_TILDE] = ACTIONS(1490), - [anon_sym_bit_DASHand] = ACTIONS(1492), - [anon_sym_bit_DASHxor] = ACTIONS(1496), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), - }, - [641] = { - [sym_comment] = STATE(641), - [anon_sym_export] = ACTIONS(1247), - [anon_sym_alias] = ACTIONS(1247), - [anon_sym_let] = ACTIONS(1247), - [anon_sym_let_DASHenv] = ACTIONS(1247), - [anon_sym_mut] = ACTIONS(1247), - [anon_sym_const] = ACTIONS(1247), - [anon_sym_SEMI] = ACTIONS(1247), - [sym_cmd_identifier] = ACTIONS(1247), - [anon_sym_LF] = ACTIONS(1249), - [anon_sym_def] = ACTIONS(1247), - [anon_sym_export_DASHenv] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1247), - [anon_sym_module] = ACTIONS(1247), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_LBRACK] = ACTIONS(1247), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_RPAREN] = ACTIONS(1247), - [anon_sym_DOLLAR] = ACTIONS(1247), - [anon_sym_error] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1247), - [anon_sym_break] = ACTIONS(1247), - [anon_sym_continue] = ACTIONS(1247), - [anon_sym_for] = ACTIONS(1247), - [anon_sym_in] = ACTIONS(1247), - [anon_sym_loop] = ACTIONS(1247), - [anon_sym_while] = ACTIONS(1247), - [anon_sym_do] = ACTIONS(1247), - [anon_sym_if] = ACTIONS(1247), - [anon_sym_match] = ACTIONS(1247), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_RBRACE] = ACTIONS(1247), - [anon_sym_DOT_DOT] = ACTIONS(1247), - [anon_sym_try] = ACTIONS(1247), - [anon_sym_return] = ACTIONS(1247), - [anon_sym_source] = ACTIONS(1247), - [anon_sym_source_DASHenv] = ACTIONS(1247), - [anon_sym_register] = ACTIONS(1247), - [anon_sym_hide] = ACTIONS(1247), - [anon_sym_hide_DASHenv] = ACTIONS(1247), - [anon_sym_overlay] = ACTIONS(1247), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_where] = ACTIONS(1247), - [anon_sym_STAR_STAR] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_mod] = ACTIONS(1247), - [anon_sym_SLASH_SLASH] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1247), - [anon_sym_bit_DASHshl] = ACTIONS(1247), - [anon_sym_bit_DASHshr] = ACTIONS(1247), - [anon_sym_EQ_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1247), - [anon_sym_LT2] = ACTIONS(1247), - [anon_sym_LT_EQ] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1247), - [anon_sym_not_DASHin] = ACTIONS(1247), - [anon_sym_starts_DASHwith] = ACTIONS(1247), - [anon_sym_ends_DASHwith] = ACTIONS(1247), - [anon_sym_EQ_TILDE] = ACTIONS(1247), - [anon_sym_BANG_TILDE] = ACTIONS(1247), - [anon_sym_bit_DASHand] = ACTIONS(1247), - [anon_sym_bit_DASHxor] = ACTIONS(1247), - [anon_sym_bit_DASHor] = ACTIONS(1247), - [anon_sym_and] = ACTIONS(1247), - [anon_sym_xor] = ACTIONS(1247), - [anon_sym_or] = ACTIONS(1247), - [anon_sym_not] = ACTIONS(1247), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1247), - [anon_sym_DOT_DOT_LT] = ACTIONS(1247), - [anon_sym_null] = ACTIONS(1247), - [anon_sym_true] = ACTIONS(1247), - [anon_sym_false] = ACTIONS(1247), - [aux_sym__val_number_decimal_token1] = ACTIONS(1247), - [aux_sym__val_number_decimal_token2] = ACTIONS(1247), - [anon_sym_DOT2] = ACTIONS(1247), - [aux_sym__val_number_decimal_token3] = ACTIONS(1247), - [aux_sym__val_number_token1] = ACTIONS(1247), - [aux_sym__val_number_token2] = ACTIONS(1247), - [aux_sym__val_number_token3] = ACTIONS(1247), - [aux_sym__val_number_token4] = ACTIONS(1247), - [aux_sym__val_number_token5] = ACTIONS(1247), - [aux_sym__val_number_token6] = ACTIONS(1247), - [anon_sym_0b] = ACTIONS(1247), - [anon_sym_0o] = ACTIONS(1247), - [anon_sym_0x] = ACTIONS(1247), - [sym_val_date] = ACTIONS(1247), - [anon_sym_DQUOTE] = ACTIONS(1247), - [sym__str_single_quotes] = ACTIONS(1247), - [sym__str_back_ticks] = ACTIONS(1247), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1247), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1247), - [anon_sym_CARET] = ACTIONS(1247), - [anon_sym_POUND] = ACTIONS(113), - }, - [642] = { - [sym_comment] = STATE(642), - [anon_sym_export] = ACTIONS(1316), - [anon_sym_alias] = ACTIONS(1316), - [anon_sym_let] = ACTIONS(1316), - [anon_sym_let_DASHenv] = ACTIONS(1316), - [anon_sym_mut] = ACTIONS(1316), - [anon_sym_const] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1316), - [sym_cmd_identifier] = ACTIONS(1316), - [anon_sym_LF] = ACTIONS(1318), - [anon_sym_def] = ACTIONS(1316), - [anon_sym_export_DASHenv] = ACTIONS(1316), - [anon_sym_extern] = ACTIONS(1316), - [anon_sym_module] = ACTIONS(1316), - [anon_sym_use] = ACTIONS(1316), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1316), - [anon_sym_RPAREN] = ACTIONS(1316), - [anon_sym_DOLLAR] = ACTIONS(1316), - [anon_sym_error] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_break] = ACTIONS(1316), - [anon_sym_continue] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1316), - [anon_sym_in] = ACTIONS(1316), - [anon_sym_loop] = ACTIONS(1316), - [anon_sym_while] = ACTIONS(1316), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_if] = ACTIONS(1316), - [anon_sym_match] = ACTIONS(1316), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_RBRACE] = ACTIONS(1316), - [anon_sym_DOT_DOT] = ACTIONS(1316), - [anon_sym_try] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1316), - [anon_sym_source] = ACTIONS(1316), - [anon_sym_source_DASHenv] = ACTIONS(1316), - [anon_sym_register] = ACTIONS(1316), - [anon_sym_hide] = ACTIONS(1316), - [anon_sym_hide_DASHenv] = ACTIONS(1316), - [anon_sym_overlay] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_where] = ACTIONS(1316), - [anon_sym_STAR_STAR] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_SLASH] = ACTIONS(1316), - [anon_sym_mod] = ACTIONS(1316), - [anon_sym_SLASH_SLASH] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_bit_DASHshl] = ACTIONS(1316), - [anon_sym_bit_DASHshr] = ACTIONS(1316), - [anon_sym_EQ_EQ] = ACTIONS(1316), - [anon_sym_BANG_EQ] = ACTIONS(1316), - [anon_sym_LT2] = ACTIONS(1316), - [anon_sym_LT_EQ] = ACTIONS(1316), - [anon_sym_GT_EQ] = ACTIONS(1316), - [anon_sym_not_DASHin] = ACTIONS(1316), - [anon_sym_starts_DASHwith] = ACTIONS(1316), - [anon_sym_ends_DASHwith] = ACTIONS(1316), - [anon_sym_EQ_TILDE] = ACTIONS(1316), - [anon_sym_BANG_TILDE] = ACTIONS(1316), - [anon_sym_bit_DASHand] = ACTIONS(1316), - [anon_sym_bit_DASHxor] = ACTIONS(1316), - [anon_sym_bit_DASHor] = ACTIONS(1316), - [anon_sym_and] = ACTIONS(1316), - [anon_sym_xor] = ACTIONS(1316), - [anon_sym_or] = ACTIONS(1316), - [anon_sym_not] = ACTIONS(1316), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1316), - [anon_sym_DOT_DOT_LT] = ACTIONS(1316), - [anon_sym_null] = ACTIONS(1316), - [anon_sym_true] = ACTIONS(1316), - [anon_sym_false] = ACTIONS(1316), - [aux_sym__val_number_decimal_token1] = ACTIONS(1316), - [aux_sym__val_number_decimal_token2] = ACTIONS(1316), - [anon_sym_DOT2] = ACTIONS(1316), - [aux_sym__val_number_decimal_token3] = ACTIONS(1316), - [aux_sym__val_number_token1] = ACTIONS(1316), - [aux_sym__val_number_token2] = ACTIONS(1316), - [aux_sym__val_number_token3] = ACTIONS(1316), - [aux_sym__val_number_token4] = ACTIONS(1316), - [aux_sym__val_number_token5] = ACTIONS(1316), - [aux_sym__val_number_token6] = ACTIONS(1316), - [anon_sym_0b] = ACTIONS(1316), - [anon_sym_0o] = ACTIONS(1316), - [anon_sym_0x] = ACTIONS(1316), - [sym_val_date] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1316), - [sym__str_single_quotes] = ACTIONS(1316), - [sym__str_back_ticks] = ACTIONS(1316), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1316), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(113), - }, - [643] = { - [sym_comment] = STATE(643), - [ts_builtin_sym_end] = ACTIONS(1261), - [anon_sym_export] = ACTIONS(1259), - [anon_sym_alias] = ACTIONS(1259), - [anon_sym_let] = ACTIONS(1259), - [anon_sym_let_DASHenv] = ACTIONS(1259), - [anon_sym_mut] = ACTIONS(1259), - [anon_sym_const] = ACTIONS(1259), - [anon_sym_SEMI] = ACTIONS(1259), - [sym_cmd_identifier] = ACTIONS(1259), - [anon_sym_LF] = ACTIONS(1261), - [anon_sym_def] = ACTIONS(1259), - [anon_sym_export_DASHenv] = ACTIONS(1259), - [anon_sym_extern] = ACTIONS(1259), - [anon_sym_module] = ACTIONS(1259), - [anon_sym_use] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_DOLLAR] = ACTIONS(1259), - [anon_sym_error] = ACTIONS(1259), - [anon_sym_GT] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_break] = ACTIONS(1259), - [anon_sym_continue] = ACTIONS(1259), - [anon_sym_for] = ACTIONS(1259), - [anon_sym_in] = ACTIONS(1259), - [anon_sym_loop] = ACTIONS(1259), - [anon_sym_while] = ACTIONS(1259), - [anon_sym_do] = ACTIONS(1259), - [anon_sym_if] = ACTIONS(1259), - [anon_sym_match] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1259), - [anon_sym_DOT_DOT] = ACTIONS(1259), - [anon_sym_try] = ACTIONS(1259), - [anon_sym_return] = ACTIONS(1259), - [anon_sym_source] = ACTIONS(1259), - [anon_sym_source_DASHenv] = ACTIONS(1259), - [anon_sym_register] = ACTIONS(1259), - [anon_sym_hide] = ACTIONS(1259), - [anon_sym_hide_DASHenv] = ACTIONS(1259), - [anon_sym_overlay] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1259), - [anon_sym_where] = ACTIONS(1259), - [anon_sym_STAR_STAR] = ACTIONS(1259), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_SLASH] = ACTIONS(1259), - [anon_sym_mod] = ACTIONS(1259), - [anon_sym_SLASH_SLASH] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_bit_DASHshl] = ACTIONS(1259), - [anon_sym_bit_DASHshr] = ACTIONS(1259), - [anon_sym_EQ_EQ] = ACTIONS(1259), - [anon_sym_BANG_EQ] = ACTIONS(1259), - [anon_sym_LT2] = ACTIONS(1259), - [anon_sym_LT_EQ] = ACTIONS(1259), - [anon_sym_GT_EQ] = ACTIONS(1259), - [anon_sym_not_DASHin] = ACTIONS(1259), - [anon_sym_starts_DASHwith] = ACTIONS(1259), - [anon_sym_ends_DASHwith] = ACTIONS(1259), - [anon_sym_EQ_TILDE] = ACTIONS(1259), - [anon_sym_BANG_TILDE] = ACTIONS(1259), - [anon_sym_bit_DASHand] = ACTIONS(1259), - [anon_sym_bit_DASHxor] = ACTIONS(1259), - [anon_sym_bit_DASHor] = ACTIONS(1259), - [anon_sym_and] = ACTIONS(1259), - [anon_sym_xor] = ACTIONS(1259), - [anon_sym_or] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1259), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1259), - [anon_sym_DOT_DOT_LT] = ACTIONS(1259), - [anon_sym_null] = ACTIONS(1259), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [aux_sym__val_number_decimal_token1] = ACTIONS(1259), - [aux_sym__val_number_decimal_token2] = ACTIONS(1259), - [anon_sym_DOT2] = ACTIONS(1259), - [aux_sym__val_number_decimal_token3] = ACTIONS(1259), - [aux_sym__val_number_token1] = ACTIONS(1259), - [aux_sym__val_number_token2] = ACTIONS(1259), - [aux_sym__val_number_token3] = ACTIONS(1259), - [aux_sym__val_number_token4] = ACTIONS(1259), - [aux_sym__val_number_token5] = ACTIONS(1259), - [aux_sym__val_number_token6] = ACTIONS(1259), - [anon_sym_0b] = ACTIONS(1259), - [anon_sym_0o] = ACTIONS(1259), - [anon_sym_0x] = ACTIONS(1259), - [anon_sym_LBRACK2] = ACTIONS(1498), - [sym_val_date] = ACTIONS(1259), - [anon_sym_DQUOTE] = ACTIONS(1259), - [sym__str_single_quotes] = ACTIONS(1259), - [sym__str_back_ticks] = ACTIONS(1259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1259), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1259), - [anon_sym_CARET] = ACTIONS(1259), - [anon_sym_POUND] = ACTIONS(113), - }, - [644] = { - [sym_comment] = STATE(644), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), - }, - [645] = { - [sym_comment] = STATE(645), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_alias] = ACTIONS(1406), - [anon_sym_let] = ACTIONS(1406), - [anon_sym_let_DASHenv] = ACTIONS(1406), - [anon_sym_mut] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_SEMI] = ACTIONS(1406), - [sym_cmd_identifier] = ACTIONS(1406), - [anon_sym_LF] = ACTIONS(1408), - [anon_sym_def] = ACTIONS(1406), - [anon_sym_export_DASHenv] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_use] = ACTIONS(1406), - [anon_sym_LBRACK] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1406), - [anon_sym_RPAREN] = ACTIONS(1406), - [anon_sym_DOLLAR] = ACTIONS(1406), - [anon_sym_error] = ACTIONS(1406), - [anon_sym_GT] = ACTIONS(1406), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_in] = ACTIONS(1406), - [anon_sym_loop] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_match] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_RBRACE] = ACTIONS(1406), - [anon_sym_DOT_DOT] = ACTIONS(1406), - [anon_sym_try] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_source] = ACTIONS(1406), - [anon_sym_source_DASHenv] = ACTIONS(1406), - [anon_sym_register] = ACTIONS(1406), - [anon_sym_hide] = ACTIONS(1406), - [anon_sym_hide_DASHenv] = ACTIONS(1406), - [anon_sym_overlay] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1406), - [anon_sym_where] = ACTIONS(1406), - [anon_sym_STAR_STAR] = ACTIONS(1406), - [anon_sym_PLUS_PLUS] = ACTIONS(1406), - [anon_sym_SLASH] = ACTIONS(1406), - [anon_sym_mod] = ACTIONS(1406), - [anon_sym_SLASH_SLASH] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_bit_DASHshl] = ACTIONS(1406), - [anon_sym_bit_DASHshr] = ACTIONS(1406), - [anon_sym_EQ_EQ] = ACTIONS(1406), - [anon_sym_BANG_EQ] = ACTIONS(1406), - [anon_sym_LT2] = ACTIONS(1406), - [anon_sym_LT_EQ] = ACTIONS(1406), - [anon_sym_GT_EQ] = ACTIONS(1406), - [anon_sym_not_DASHin] = ACTIONS(1406), - [anon_sym_starts_DASHwith] = ACTIONS(1406), - [anon_sym_ends_DASHwith] = ACTIONS(1406), - [anon_sym_EQ_TILDE] = ACTIONS(1406), - [anon_sym_BANG_TILDE] = ACTIONS(1406), - [anon_sym_bit_DASHand] = ACTIONS(1406), - [anon_sym_bit_DASHxor] = ACTIONS(1406), - [anon_sym_bit_DASHor] = ACTIONS(1406), - [anon_sym_and] = ACTIONS(1406), - [anon_sym_xor] = ACTIONS(1406), - [anon_sym_or] = ACTIONS(1406), - [anon_sym_not] = ACTIONS(1406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1406), - [anon_sym_DOT_DOT_LT] = ACTIONS(1406), - [anon_sym_null] = ACTIONS(1406), - [anon_sym_true] = ACTIONS(1406), - [anon_sym_false] = ACTIONS(1406), - [aux_sym__val_number_decimal_token1] = ACTIONS(1406), - [aux_sym__val_number_decimal_token2] = ACTIONS(1406), - [anon_sym_DOT2] = ACTIONS(1406), - [aux_sym__val_number_decimal_token3] = ACTIONS(1406), - [aux_sym__val_number_token1] = ACTIONS(1406), - [aux_sym__val_number_token2] = ACTIONS(1406), - [aux_sym__val_number_token3] = ACTIONS(1406), - [aux_sym__val_number_token4] = ACTIONS(1406), - [aux_sym__val_number_token5] = ACTIONS(1406), - [aux_sym__val_number_token6] = ACTIONS(1406), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1406), - [anon_sym_0x] = ACTIONS(1406), - [sym_val_date] = ACTIONS(1406), - [anon_sym_DQUOTE] = ACTIONS(1406), - [sym__str_single_quotes] = ACTIONS(1406), - [sym__str_back_ticks] = ACTIONS(1406), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1406), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1406), - [anon_sym_CARET] = ACTIONS(1406), - [anon_sym_POUND] = ACTIONS(113), - }, - [646] = { - [sym_comment] = STATE(646), - [anon_sym_export] = ACTIONS(1194), - [anon_sym_alias] = ACTIONS(1194), - [anon_sym_let] = ACTIONS(1194), - [anon_sym_let_DASHenv] = ACTIONS(1194), - [anon_sym_mut] = ACTIONS(1194), - [anon_sym_const] = ACTIONS(1194), - [anon_sym_SEMI] = ACTIONS(1194), - [sym_cmd_identifier] = ACTIONS(1194), - [anon_sym_LF] = ACTIONS(1196), - [anon_sym_def] = ACTIONS(1194), - [anon_sym_export_DASHenv] = ACTIONS(1194), - [anon_sym_extern] = ACTIONS(1194), - [anon_sym_module] = ACTIONS(1194), - [anon_sym_use] = ACTIONS(1194), - [anon_sym_LBRACK] = ACTIONS(1194), - [anon_sym_LPAREN] = ACTIONS(1194), - [anon_sym_RPAREN] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1194), - [anon_sym_error] = ACTIONS(1194), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_break] = ACTIONS(1194), - [anon_sym_continue] = ACTIONS(1194), - [anon_sym_for] = ACTIONS(1194), - [anon_sym_in] = ACTIONS(1198), - [anon_sym_loop] = ACTIONS(1194), - [anon_sym_while] = ACTIONS(1194), - [anon_sym_do] = ACTIONS(1194), - [anon_sym_if] = ACTIONS(1194), - [anon_sym_match] = ACTIONS(1194), - [anon_sym_LBRACE] = ACTIONS(1194), - [anon_sym_RBRACE] = ACTIONS(1194), - [anon_sym_DOT_DOT] = ACTIONS(1194), - [anon_sym_try] = ACTIONS(1194), - [anon_sym_return] = ACTIONS(1194), - [anon_sym_source] = ACTIONS(1194), - [anon_sym_source_DASHenv] = ACTIONS(1194), - [anon_sym_register] = ACTIONS(1194), - [anon_sym_hide] = ACTIONS(1194), - [anon_sym_hide_DASHenv] = ACTIONS(1194), - [anon_sym_overlay] = ACTIONS(1194), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_where] = ACTIONS(1194), - [anon_sym_STAR_STAR] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_SLASH] = ACTIONS(1198), - [anon_sym_mod] = ACTIONS(1198), - [anon_sym_SLASH_SLASH] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1198), - [anon_sym_bit_DASHshl] = ACTIONS(1198), - [anon_sym_bit_DASHshr] = ACTIONS(1198), - [anon_sym_EQ_EQ] = ACTIONS(1198), - [anon_sym_BANG_EQ] = ACTIONS(1198), - [anon_sym_LT2] = ACTIONS(1198), - [anon_sym_LT_EQ] = ACTIONS(1198), - [anon_sym_GT_EQ] = ACTIONS(1198), - [anon_sym_not_DASHin] = ACTIONS(1198), - [anon_sym_starts_DASHwith] = ACTIONS(1198), - [anon_sym_ends_DASHwith] = ACTIONS(1198), - [anon_sym_EQ_TILDE] = ACTIONS(1198), - [anon_sym_BANG_TILDE] = ACTIONS(1198), - [anon_sym_bit_DASHand] = ACTIONS(1198), - [anon_sym_bit_DASHxor] = ACTIONS(1198), - [anon_sym_bit_DASHor] = ACTIONS(1198), - [anon_sym_and] = ACTIONS(1198), - [anon_sym_xor] = ACTIONS(1198), - [anon_sym_or] = ACTIONS(1198), - [anon_sym_not] = ACTIONS(1194), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1194), - [anon_sym_DOT_DOT_LT] = ACTIONS(1194), - [anon_sym_null] = ACTIONS(1194), - [anon_sym_true] = ACTIONS(1194), - [anon_sym_false] = ACTIONS(1194), - [aux_sym__val_number_decimal_token1] = ACTIONS(1194), - [aux_sym__val_number_decimal_token2] = ACTIONS(1194), - [anon_sym_DOT2] = ACTIONS(1194), - [aux_sym__val_number_decimal_token3] = ACTIONS(1194), - [aux_sym__val_number_token1] = ACTIONS(1194), - [aux_sym__val_number_token2] = ACTIONS(1194), - [aux_sym__val_number_token3] = ACTIONS(1194), - [aux_sym__val_number_token4] = ACTIONS(1194), - [aux_sym__val_number_token5] = ACTIONS(1194), - [aux_sym__val_number_token6] = ACTIONS(1194), - [anon_sym_0b] = ACTIONS(1194), - [anon_sym_0o] = ACTIONS(1194), - [anon_sym_0x] = ACTIONS(1194), - [sym_val_date] = ACTIONS(1194), - [anon_sym_DQUOTE] = ACTIONS(1194), - [sym__str_single_quotes] = ACTIONS(1194), - [sym__str_back_ticks] = ACTIONS(1194), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1194), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1194), - [anon_sym_CARET] = ACTIONS(1194), - [anon_sym_POUND] = ACTIONS(113), - }, - [647] = { - [sym_comment] = STATE(647), - [ts_builtin_sym_end] = ACTIONS(1160), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_alias] = ACTIONS(1158), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_let_DASHenv] = ACTIONS(1158), - [anon_sym_mut] = ACTIONS(1158), - [anon_sym_const] = ACTIONS(1158), - [anon_sym_SEMI] = ACTIONS(1158), - [sym_cmd_identifier] = ACTIONS(1158), - [anon_sym_LF] = ACTIONS(1160), - [anon_sym_def] = ACTIONS(1158), - [anon_sym_export_DASHenv] = ACTIONS(1158), - [anon_sym_extern] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_use] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_LPAREN] = ACTIONS(1158), - [anon_sym_DOLLAR] = ACTIONS(1158), - [anon_sym_error] = ACTIONS(1158), - [anon_sym_GT] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_break] = ACTIONS(1158), - [anon_sym_continue] = ACTIONS(1158), - [anon_sym_for] = ACTIONS(1158), - [anon_sym_in] = ACTIONS(1158), - [anon_sym_loop] = ACTIONS(1158), - [anon_sym_while] = ACTIONS(1158), - [anon_sym_do] = ACTIONS(1158), - [anon_sym_if] = ACTIONS(1158), - [anon_sym_match] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1158), - [anon_sym_DOT_DOT] = ACTIONS(1158), - [anon_sym_try] = ACTIONS(1158), - [anon_sym_return] = ACTIONS(1158), - [anon_sym_source] = ACTIONS(1158), - [anon_sym_source_DASHenv] = ACTIONS(1158), - [anon_sym_register] = ACTIONS(1158), - [anon_sym_hide] = ACTIONS(1158), - [anon_sym_hide_DASHenv] = ACTIONS(1158), - [anon_sym_overlay] = ACTIONS(1158), - [anon_sym_STAR] = ACTIONS(1158), - [anon_sym_where] = ACTIONS(1158), - [anon_sym_STAR_STAR] = ACTIONS(1158), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_SLASH] = ACTIONS(1158), - [anon_sym_mod] = ACTIONS(1158), - [anon_sym_SLASH_SLASH] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1158), - [anon_sym_bit_DASHshl] = ACTIONS(1158), - [anon_sym_bit_DASHshr] = ACTIONS(1158), - [anon_sym_EQ_EQ] = ACTIONS(1158), - [anon_sym_BANG_EQ] = ACTIONS(1158), - [anon_sym_LT2] = ACTIONS(1158), - [anon_sym_LT_EQ] = ACTIONS(1158), - [anon_sym_GT_EQ] = ACTIONS(1158), - [anon_sym_not_DASHin] = ACTIONS(1158), - [anon_sym_starts_DASHwith] = ACTIONS(1158), - [anon_sym_ends_DASHwith] = ACTIONS(1158), - [anon_sym_EQ_TILDE] = ACTIONS(1158), - [anon_sym_BANG_TILDE] = ACTIONS(1158), - [anon_sym_bit_DASHand] = ACTIONS(1158), - [anon_sym_bit_DASHxor] = ACTIONS(1158), - [anon_sym_bit_DASHor] = ACTIONS(1158), - [anon_sym_and] = ACTIONS(1158), - [anon_sym_xor] = ACTIONS(1158), - [anon_sym_or] = ACTIONS(1158), - [anon_sym_not] = ACTIONS(1158), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1158), - [anon_sym_DOT_DOT_LT] = ACTIONS(1158), - [anon_sym_null] = ACTIONS(1158), - [anon_sym_true] = ACTIONS(1158), - [anon_sym_false] = ACTIONS(1158), - [aux_sym__val_number_decimal_token1] = ACTIONS(1158), - [aux_sym__val_number_decimal_token2] = ACTIONS(1158), - [anon_sym_DOT2] = ACTIONS(1158), - [aux_sym__val_number_decimal_token3] = ACTIONS(1158), - [aux_sym__val_number_token1] = ACTIONS(1158), - [aux_sym__val_number_token2] = ACTIONS(1158), - [aux_sym__val_number_token3] = ACTIONS(1158), - [aux_sym__val_number_token4] = ACTIONS(1158), - [aux_sym__val_number_token5] = ACTIONS(1158), - [aux_sym__val_number_token6] = ACTIONS(1158), - [anon_sym_0b] = ACTIONS(1158), - [anon_sym_0o] = ACTIONS(1158), - [anon_sym_0x] = ACTIONS(1158), - [sym_val_date] = ACTIONS(1158), - [anon_sym_DQUOTE] = ACTIONS(1158), - [sym__str_single_quotes] = ACTIONS(1158), - [sym__str_back_ticks] = ACTIONS(1158), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1158), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1158), - [anon_sym_CARET] = ACTIONS(1158), - [aux_sym_unquoted_token6] = ACTIONS(1284), - [anon_sym_POUND] = ACTIONS(113), - }, - [648] = { - [sym_comment] = STATE(648), - [anon_sym_export] = ACTIONS(1172), - [anon_sym_alias] = ACTIONS(1172), - [anon_sym_let] = ACTIONS(1172), - [anon_sym_let_DASHenv] = ACTIONS(1172), - [anon_sym_mut] = ACTIONS(1172), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(1172), - [sym_cmd_identifier] = ACTIONS(1172), - [anon_sym_LF] = ACTIONS(1174), - [anon_sym_def] = ACTIONS(1172), - [anon_sym_export_DASHenv] = ACTIONS(1172), - [anon_sym_extern] = ACTIONS(1172), - [anon_sym_module] = ACTIONS(1172), - [anon_sym_use] = ACTIONS(1172), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_LPAREN] = ACTIONS(1172), - [anon_sym_RPAREN] = ACTIONS(1172), - [anon_sym_DOLLAR] = ACTIONS(1172), - [anon_sym_error] = ACTIONS(1172), - [anon_sym_GT] = ACTIONS(1172), - [anon_sym_DASH] = ACTIONS(1172), - [anon_sym_break] = ACTIONS(1172), - [anon_sym_continue] = ACTIONS(1172), - [anon_sym_for] = ACTIONS(1172), - [anon_sym_in] = ACTIONS(1172), - [anon_sym_loop] = ACTIONS(1172), - [anon_sym_while] = ACTIONS(1172), - [anon_sym_do] = ACTIONS(1172), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_match] = ACTIONS(1172), - [anon_sym_LBRACE] = ACTIONS(1172), - [anon_sym_RBRACE] = ACTIONS(1172), - [anon_sym_DOT_DOT] = ACTIONS(1172), - [anon_sym_try] = ACTIONS(1172), - [anon_sym_return] = ACTIONS(1172), - [anon_sym_source] = ACTIONS(1172), - [anon_sym_source_DASHenv] = ACTIONS(1172), - [anon_sym_register] = ACTIONS(1172), - [anon_sym_hide] = ACTIONS(1172), - [anon_sym_hide_DASHenv] = ACTIONS(1172), - [anon_sym_overlay] = ACTIONS(1172), - [anon_sym_STAR] = ACTIONS(1172), - [anon_sym_where] = ACTIONS(1172), - [anon_sym_STAR_STAR] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_SLASH] = ACTIONS(1172), - [anon_sym_mod] = ACTIONS(1172), - [anon_sym_SLASH_SLASH] = ACTIONS(1172), - [anon_sym_PLUS] = ACTIONS(1172), - [anon_sym_bit_DASHshl] = ACTIONS(1172), - [anon_sym_bit_DASHshr] = ACTIONS(1172), - [anon_sym_EQ_EQ] = ACTIONS(1172), - [anon_sym_BANG_EQ] = ACTIONS(1172), - [anon_sym_LT2] = ACTIONS(1172), - [anon_sym_LT_EQ] = ACTIONS(1172), - [anon_sym_GT_EQ] = ACTIONS(1172), - [anon_sym_not_DASHin] = ACTIONS(1172), - [anon_sym_starts_DASHwith] = ACTIONS(1172), - [anon_sym_ends_DASHwith] = ACTIONS(1172), - [anon_sym_EQ_TILDE] = ACTIONS(1172), - [anon_sym_BANG_TILDE] = ACTIONS(1172), - [anon_sym_bit_DASHand] = ACTIONS(1172), - [anon_sym_bit_DASHxor] = ACTIONS(1172), - [anon_sym_bit_DASHor] = ACTIONS(1172), - [anon_sym_and] = ACTIONS(1172), - [anon_sym_xor] = ACTIONS(1172), - [anon_sym_or] = ACTIONS(1172), - [anon_sym_not] = ACTIONS(1172), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1172), - [anon_sym_DOT_DOT_LT] = ACTIONS(1172), - [anon_sym_null] = ACTIONS(1172), - [anon_sym_true] = ACTIONS(1172), - [anon_sym_false] = ACTIONS(1172), - [aux_sym__val_number_decimal_token1] = ACTIONS(1172), - [aux_sym__val_number_decimal_token2] = ACTIONS(1172), - [anon_sym_DOT2] = ACTIONS(1172), - [aux_sym__val_number_decimal_token3] = ACTIONS(1172), - [aux_sym__val_number_token1] = ACTIONS(1172), - [aux_sym__val_number_token2] = ACTIONS(1172), - [aux_sym__val_number_token3] = ACTIONS(1172), - [aux_sym__val_number_token4] = ACTIONS(1172), - [aux_sym__val_number_token5] = ACTIONS(1172), - [aux_sym__val_number_token6] = ACTIONS(1172), - [anon_sym_0b] = ACTIONS(1172), - [anon_sym_0o] = ACTIONS(1172), - [anon_sym_0x] = ACTIONS(1172), - [sym_val_date] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(1172), - [sym__str_single_quotes] = ACTIONS(1172), - [sym__str_back_ticks] = ACTIONS(1172), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1172), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1172), - [anon_sym_CARET] = ACTIONS(1172), - [anon_sym_POUND] = ACTIONS(113), - }, - [649] = { - [sym_comment] = STATE(649), - [anon_sym_export] = ACTIONS(1342), - [anon_sym_alias] = ACTIONS(1342), - [anon_sym_let] = ACTIONS(1342), - [anon_sym_let_DASHenv] = ACTIONS(1342), - [anon_sym_mut] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_SEMI] = ACTIONS(1342), - [sym_cmd_identifier] = ACTIONS(1342), - [anon_sym_LF] = ACTIONS(1344), - [anon_sym_def] = ACTIONS(1342), - [anon_sym_export_DASHenv] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1342), - [anon_sym_module] = ACTIONS(1342), - [anon_sym_use] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_RPAREN] = ACTIONS(1342), - [anon_sym_DOLLAR] = ACTIONS(1342), - [anon_sym_error] = ACTIONS(1342), - [anon_sym_GT] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_in] = ACTIONS(1342), - [anon_sym_loop] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_match] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_RBRACE] = ACTIONS(1342), - [anon_sym_DOT_DOT] = ACTIONS(1342), - [anon_sym_try] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_source] = ACTIONS(1342), - [anon_sym_source_DASHenv] = ACTIONS(1342), - [anon_sym_register] = ACTIONS(1342), - [anon_sym_hide] = ACTIONS(1342), - [anon_sym_hide_DASHenv] = ACTIONS(1342), - [anon_sym_overlay] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_where] = ACTIONS(1342), - [anon_sym_STAR_STAR] = ACTIONS(1342), - [anon_sym_PLUS_PLUS] = ACTIONS(1342), - [anon_sym_SLASH] = ACTIONS(1342), - [anon_sym_mod] = ACTIONS(1342), - [anon_sym_SLASH_SLASH] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_bit_DASHshl] = ACTIONS(1342), - [anon_sym_bit_DASHshr] = ACTIONS(1342), - [anon_sym_EQ_EQ] = ACTIONS(1342), - [anon_sym_BANG_EQ] = ACTIONS(1342), - [anon_sym_LT2] = ACTIONS(1342), - [anon_sym_LT_EQ] = ACTIONS(1342), - [anon_sym_GT_EQ] = ACTIONS(1342), - [anon_sym_not_DASHin] = ACTIONS(1342), - [anon_sym_starts_DASHwith] = ACTIONS(1342), - [anon_sym_ends_DASHwith] = ACTIONS(1342), - [anon_sym_EQ_TILDE] = ACTIONS(1342), - [anon_sym_BANG_TILDE] = ACTIONS(1342), - [anon_sym_bit_DASHand] = ACTIONS(1342), - [anon_sym_bit_DASHxor] = ACTIONS(1342), - [anon_sym_bit_DASHor] = ACTIONS(1342), - [anon_sym_and] = ACTIONS(1342), - [anon_sym_xor] = ACTIONS(1342), - [anon_sym_or] = ACTIONS(1342), - [anon_sym_not] = ACTIONS(1342), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1342), - [anon_sym_DOT_DOT_LT] = ACTIONS(1342), - [anon_sym_null] = ACTIONS(1342), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym__val_number_decimal_token1] = ACTIONS(1342), - [aux_sym__val_number_decimal_token2] = ACTIONS(1342), - [anon_sym_DOT2] = ACTIONS(1342), - [aux_sym__val_number_decimal_token3] = ACTIONS(1342), - [aux_sym__val_number_token1] = ACTIONS(1342), - [aux_sym__val_number_token2] = ACTIONS(1342), - [aux_sym__val_number_token3] = ACTIONS(1342), - [aux_sym__val_number_token4] = ACTIONS(1342), - [aux_sym__val_number_token5] = ACTIONS(1342), - [aux_sym__val_number_token6] = ACTIONS(1342), - [anon_sym_0b] = ACTIONS(1342), - [anon_sym_0o] = ACTIONS(1342), - [anon_sym_0x] = ACTIONS(1342), - [sym_val_date] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [sym__str_single_quotes] = ACTIONS(1342), - [sym__str_back_ticks] = ACTIONS(1342), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1342), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1342), - [anon_sym_CARET] = ACTIONS(1342), - [anon_sym_POUND] = ACTIONS(113), - }, - [650] = { - [sym_comment] = STATE(650), - [anon_sym_export] = ACTIONS(1354), - [anon_sym_alias] = ACTIONS(1354), - [anon_sym_let] = ACTIONS(1354), - [anon_sym_let_DASHenv] = ACTIONS(1354), - [anon_sym_mut] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_SEMI] = ACTIONS(1354), - [sym_cmd_identifier] = ACTIONS(1354), - [anon_sym_LF] = ACTIONS(1356), - [anon_sym_def] = ACTIONS(1354), - [anon_sym_export_DASHenv] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym_module] = ACTIONS(1354), - [anon_sym_use] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1354), - [anon_sym_LPAREN] = ACTIONS(1354), - [anon_sym_RPAREN] = ACTIONS(1354), - [anon_sym_DOLLAR] = ACTIONS(1354), - [anon_sym_error] = ACTIONS(1354), - [anon_sym_GT] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_in] = ACTIONS(1354), - [anon_sym_loop] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_match] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_RBRACE] = ACTIONS(1354), - [anon_sym_DOT_DOT] = ACTIONS(1354), - [anon_sym_try] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_source] = ACTIONS(1354), - [anon_sym_source_DASHenv] = ACTIONS(1354), - [anon_sym_register] = ACTIONS(1354), - [anon_sym_hide] = ACTIONS(1354), - [anon_sym_hide_DASHenv] = ACTIONS(1354), - [anon_sym_overlay] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_where] = ACTIONS(1354), - [anon_sym_STAR_STAR] = ACTIONS(1354), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [anon_sym_SLASH] = ACTIONS(1354), - [anon_sym_mod] = ACTIONS(1354), - [anon_sym_SLASH_SLASH] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_bit_DASHshl] = ACTIONS(1354), - [anon_sym_bit_DASHshr] = ACTIONS(1354), - [anon_sym_EQ_EQ] = ACTIONS(1354), - [anon_sym_BANG_EQ] = ACTIONS(1354), - [anon_sym_LT2] = ACTIONS(1354), - [anon_sym_LT_EQ] = ACTIONS(1354), - [anon_sym_GT_EQ] = ACTIONS(1354), - [anon_sym_not_DASHin] = ACTIONS(1354), - [anon_sym_starts_DASHwith] = ACTIONS(1354), - [anon_sym_ends_DASHwith] = ACTIONS(1354), - [anon_sym_EQ_TILDE] = ACTIONS(1354), - [anon_sym_BANG_TILDE] = ACTIONS(1354), - [anon_sym_bit_DASHand] = ACTIONS(1354), - [anon_sym_bit_DASHxor] = ACTIONS(1354), - [anon_sym_bit_DASHor] = ACTIONS(1354), - [anon_sym_and] = ACTIONS(1354), - [anon_sym_xor] = ACTIONS(1354), - [anon_sym_or] = ACTIONS(1354), - [anon_sym_not] = ACTIONS(1354), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1354), - [anon_sym_DOT_DOT_LT] = ACTIONS(1354), - [anon_sym_null] = ACTIONS(1354), - [anon_sym_true] = ACTIONS(1354), - [anon_sym_false] = ACTIONS(1354), - [aux_sym__val_number_decimal_token1] = ACTIONS(1354), - [aux_sym__val_number_decimal_token2] = ACTIONS(1354), - [anon_sym_DOT2] = ACTIONS(1354), - [aux_sym__val_number_decimal_token3] = ACTIONS(1354), - [aux_sym__val_number_token1] = ACTIONS(1354), - [aux_sym__val_number_token2] = ACTIONS(1354), - [aux_sym__val_number_token3] = ACTIONS(1354), - [aux_sym__val_number_token4] = ACTIONS(1354), - [aux_sym__val_number_token5] = ACTIONS(1354), - [aux_sym__val_number_token6] = ACTIONS(1354), - [anon_sym_0b] = ACTIONS(1354), - [anon_sym_0o] = ACTIONS(1354), - [anon_sym_0x] = ACTIONS(1354), - [sym_val_date] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1354), - [sym__str_single_quotes] = ACTIONS(1354), - [sym__str_back_ticks] = ACTIONS(1354), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1354), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1354), - [anon_sym_CARET] = ACTIONS(1354), - [anon_sym_POUND] = ACTIONS(113), - }, - [651] = { - [sym_comment] = STATE(651), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_RPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1486), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1480), - [anon_sym_PLUS_PLUS] = ACTIONS(1480), - [anon_sym_SLASH] = ACTIONS(1478), - [anon_sym_mod] = ACTIONS(1478), - [anon_sym_SLASH_SLASH] = ACTIONS(1478), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_bit_DASHshl] = ACTIONS(1488), - [anon_sym_bit_DASHshr] = ACTIONS(1488), - [anon_sym_EQ_EQ] = ACTIONS(1482), - [anon_sym_BANG_EQ] = ACTIONS(1482), - [anon_sym_LT2] = ACTIONS(1482), - [anon_sym_LT_EQ] = ACTIONS(1482), - [anon_sym_GT_EQ] = ACTIONS(1482), - [anon_sym_not_DASHin] = ACTIONS(1486), - [anon_sym_starts_DASHwith] = ACTIONS(1486), - [anon_sym_ends_DASHwith] = ACTIONS(1486), - [anon_sym_EQ_TILDE] = ACTIONS(1490), - [anon_sym_BANG_TILDE] = ACTIONS(1490), - [anon_sym_bit_DASHand] = ACTIONS(1492), - [anon_sym_bit_DASHxor] = ACTIONS(1496), - [anon_sym_bit_DASHor] = ACTIONS(1500), - [anon_sym_and] = ACTIONS(1502), - [anon_sym_xor] = ACTIONS(1504), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), - }, - [652] = { - [sym_comment] = STATE(652), - [anon_sym_export] = ACTIONS(1346), - [anon_sym_alias] = ACTIONS(1346), - [anon_sym_let] = ACTIONS(1346), - [anon_sym_let_DASHenv] = ACTIONS(1346), - [anon_sym_mut] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_SEMI] = ACTIONS(1346), - [sym_cmd_identifier] = ACTIONS(1346), - [anon_sym_LF] = ACTIONS(1348), - [anon_sym_def] = ACTIONS(1346), - [anon_sym_export_DASHenv] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1346), - [anon_sym_module] = ACTIONS(1346), - [anon_sym_use] = ACTIONS(1346), - [anon_sym_LBRACK] = ACTIONS(1346), - [anon_sym_LPAREN] = ACTIONS(1346), - [anon_sym_RPAREN] = ACTIONS(1346), - [anon_sym_DOLLAR] = ACTIONS(1346), - [anon_sym_error] = ACTIONS(1346), - [anon_sym_GT] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_in] = ACTIONS(1346), - [anon_sym_loop] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_match] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_RBRACE] = ACTIONS(1346), - [anon_sym_DOT_DOT] = ACTIONS(1346), - [anon_sym_try] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_source] = ACTIONS(1346), - [anon_sym_source_DASHenv] = ACTIONS(1346), - [anon_sym_register] = ACTIONS(1346), - [anon_sym_hide] = ACTIONS(1346), - [anon_sym_hide_DASHenv] = ACTIONS(1346), - [anon_sym_overlay] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_where] = ACTIONS(1346), - [anon_sym_STAR_STAR] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1346), - [anon_sym_SLASH] = ACTIONS(1346), - [anon_sym_mod] = ACTIONS(1346), - [anon_sym_SLASH_SLASH] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_bit_DASHshl] = ACTIONS(1346), - [anon_sym_bit_DASHshr] = ACTIONS(1346), - [anon_sym_EQ_EQ] = ACTIONS(1346), - [anon_sym_BANG_EQ] = ACTIONS(1346), - [anon_sym_LT2] = ACTIONS(1346), - [anon_sym_LT_EQ] = ACTIONS(1346), - [anon_sym_GT_EQ] = ACTIONS(1346), - [anon_sym_not_DASHin] = ACTIONS(1346), - [anon_sym_starts_DASHwith] = ACTIONS(1346), - [anon_sym_ends_DASHwith] = ACTIONS(1346), - [anon_sym_EQ_TILDE] = ACTIONS(1346), - [anon_sym_BANG_TILDE] = ACTIONS(1346), - [anon_sym_bit_DASHand] = ACTIONS(1346), - [anon_sym_bit_DASHxor] = ACTIONS(1346), - [anon_sym_bit_DASHor] = ACTIONS(1346), - [anon_sym_and] = ACTIONS(1346), - [anon_sym_xor] = ACTIONS(1346), - [anon_sym_or] = ACTIONS(1346), - [anon_sym_not] = ACTIONS(1346), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1346), - [anon_sym_DOT_DOT_LT] = ACTIONS(1346), - [anon_sym_null] = ACTIONS(1346), - [anon_sym_true] = ACTIONS(1346), - [anon_sym_false] = ACTIONS(1346), - [aux_sym__val_number_decimal_token1] = ACTIONS(1346), - [aux_sym__val_number_decimal_token2] = ACTIONS(1346), - [anon_sym_DOT2] = ACTIONS(1346), - [aux_sym__val_number_decimal_token3] = ACTIONS(1346), - [aux_sym__val_number_token1] = ACTIONS(1346), - [aux_sym__val_number_token2] = ACTIONS(1346), - [aux_sym__val_number_token3] = ACTIONS(1346), - [aux_sym__val_number_token4] = ACTIONS(1346), - [aux_sym__val_number_token5] = ACTIONS(1346), - [aux_sym__val_number_token6] = ACTIONS(1346), - [anon_sym_0b] = ACTIONS(1346), - [anon_sym_0o] = ACTIONS(1346), - [anon_sym_0x] = ACTIONS(1346), - [sym_val_date] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym__str_single_quotes] = ACTIONS(1346), - [sym__str_back_ticks] = ACTIONS(1346), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1346), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_POUND] = ACTIONS(113), - }, - [653] = { - [sym_comment] = STATE(653), - [ts_builtin_sym_end] = ACTIONS(961), - [anon_sym_export] = ACTIONS(959), - [anon_sym_alias] = ACTIONS(959), - [anon_sym_let] = ACTIONS(959), - [anon_sym_let_DASHenv] = ACTIONS(959), - [anon_sym_mut] = ACTIONS(959), - [anon_sym_const] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(959), - [sym_cmd_identifier] = ACTIONS(959), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_def] = ACTIONS(959), - [anon_sym_export_DASHenv] = ACTIONS(959), - [anon_sym_extern] = ACTIONS(959), - [anon_sym_module] = ACTIONS(959), - [anon_sym_use] = ACTIONS(959), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_error] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_break] = ACTIONS(959), - [anon_sym_continue] = ACTIONS(959), - [anon_sym_for] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_loop] = ACTIONS(959), - [anon_sym_while] = ACTIONS(959), - [anon_sym_do] = ACTIONS(959), - [anon_sym_if] = ACTIONS(959), - [anon_sym_match] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_try] = ACTIONS(959), - [anon_sym_return] = ACTIONS(959), - [anon_sym_source] = ACTIONS(959), - [anon_sym_source_DASHenv] = ACTIONS(959), - [anon_sym_register] = ACTIONS(959), - [anon_sym_hide] = ACTIONS(959), - [anon_sym_hide_DASHenv] = ACTIONS(959), - [anon_sym_overlay] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_where] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(959), - [anon_sym_PLUS_PLUS] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(959), - [anon_sym_SLASH_SLASH] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(959), - [anon_sym_bit_DASHshr] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(959), - [anon_sym_BANG_EQ] = ACTIONS(959), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(959), - [anon_sym_GT_EQ] = ACTIONS(959), - [anon_sym_not_DASHin] = ACTIONS(959), - [anon_sym_starts_DASHwith] = ACTIONS(959), - [anon_sym_ends_DASHwith] = ACTIONS(959), - [anon_sym_EQ_TILDE] = ACTIONS(959), - [anon_sym_BANG_TILDE] = ACTIONS(959), - [anon_sym_bit_DASHand] = ACTIONS(959), - [anon_sym_bit_DASHxor] = ACTIONS(959), - [anon_sym_bit_DASHor] = ACTIONS(959), - [anon_sym_and] = ACTIONS(959), - [anon_sym_xor] = ACTIONS(959), - [anon_sym_or] = ACTIONS(959), - [anon_sym_not] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_DOT_DOT_LT] = ACTIONS(959), - [anon_sym_null] = ACTIONS(959), - [anon_sym_true] = ACTIONS(959), - [anon_sym_false] = ACTIONS(959), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(959), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(959), - [aux_sym__val_number_token1] = ACTIONS(959), - [aux_sym__val_number_token2] = ACTIONS(959), - [aux_sym__val_number_token3] = ACTIONS(959), - [aux_sym__val_number_token4] = ACTIONS(959), - [aux_sym__val_number_token5] = ACTIONS(959), - [aux_sym__val_number_token6] = ACTIONS(959), - [anon_sym_0b] = ACTIONS(959), - [anon_sym_0o] = ACTIONS(959), - [anon_sym_0x] = ACTIONS(959), - [sym_val_date] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [sym__str_single_quotes] = ACTIONS(959), - [sym__str_back_ticks] = ACTIONS(959), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(959), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(959), - [anon_sym_CARET] = ACTIONS(959), - [aux_sym_unquoted_token5] = ACTIONS(1105), - [anon_sym_POUND] = ACTIONS(113), - }, - [654] = { - [sym_comment] = STATE(654), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), - }, - [655] = { - [sym_comment] = STATE(655), - [ts_builtin_sym_end] = ACTIONS(1282), - [anon_sym_export] = ACTIONS(1280), - [anon_sym_alias] = ACTIONS(1280), - [anon_sym_let] = ACTIONS(1280), - [anon_sym_let_DASHenv] = ACTIONS(1280), - [anon_sym_mut] = ACTIONS(1280), - [anon_sym_const] = ACTIONS(1280), - [anon_sym_SEMI] = ACTIONS(1280), - [sym_cmd_identifier] = ACTIONS(1280), - [anon_sym_LF] = ACTIONS(1282), - [anon_sym_def] = ACTIONS(1280), - [anon_sym_export_DASHenv] = ACTIONS(1280), - [anon_sym_extern] = ACTIONS(1280), - [anon_sym_module] = ACTIONS(1280), - [anon_sym_use] = ACTIONS(1280), - [anon_sym_LBRACK] = ACTIONS(1280), - [anon_sym_LPAREN] = ACTIONS(1280), - [anon_sym_DOLLAR] = ACTIONS(1280), - [anon_sym_error] = ACTIONS(1280), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_break] = ACTIONS(1280), - [anon_sym_continue] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_in] = ACTIONS(1280), - [anon_sym_loop] = ACTIONS(1280), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1280), - [anon_sym_DOT_DOT] = ACTIONS(1280), - [anon_sym_try] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1280), - [anon_sym_source] = ACTIONS(1280), - [anon_sym_source_DASHenv] = ACTIONS(1280), - [anon_sym_register] = ACTIONS(1280), - [anon_sym_hide] = ACTIONS(1280), - [anon_sym_hide_DASHenv] = ACTIONS(1280), - [anon_sym_overlay] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1280), - [anon_sym_where] = ACTIONS(1280), - [anon_sym_STAR_STAR] = ACTIONS(1280), - [anon_sym_PLUS_PLUS] = ACTIONS(1280), - [anon_sym_SLASH] = ACTIONS(1280), - [anon_sym_mod] = ACTIONS(1280), - [anon_sym_SLASH_SLASH] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_bit_DASHshl] = ACTIONS(1280), - [anon_sym_bit_DASHshr] = ACTIONS(1280), - [anon_sym_EQ_EQ] = ACTIONS(1280), - [anon_sym_BANG_EQ] = ACTIONS(1280), - [anon_sym_LT2] = ACTIONS(1280), - [anon_sym_LT_EQ] = ACTIONS(1280), - [anon_sym_GT_EQ] = ACTIONS(1280), - [anon_sym_not_DASHin] = ACTIONS(1280), - [anon_sym_starts_DASHwith] = ACTIONS(1280), - [anon_sym_ends_DASHwith] = ACTIONS(1280), - [anon_sym_EQ_TILDE] = ACTIONS(1280), - [anon_sym_BANG_TILDE] = ACTIONS(1280), - [anon_sym_bit_DASHand] = ACTIONS(1280), - [anon_sym_bit_DASHxor] = ACTIONS(1280), - [anon_sym_bit_DASHor] = ACTIONS(1280), - [anon_sym_and] = ACTIONS(1280), - [anon_sym_xor] = ACTIONS(1280), - [anon_sym_or] = ACTIONS(1280), - [anon_sym_not] = ACTIONS(1280), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1280), - [anon_sym_DOT_DOT_LT] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1280), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [aux_sym__val_number_decimal_token1] = ACTIONS(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1280), - [anon_sym_DOT2] = ACTIONS(1280), - [aux_sym__val_number_decimal_token3] = ACTIONS(1280), - [aux_sym__val_number_token1] = ACTIONS(1280), - [aux_sym__val_number_token2] = ACTIONS(1280), - [aux_sym__val_number_token3] = ACTIONS(1280), - [aux_sym__val_number_token4] = ACTIONS(1280), - [aux_sym__val_number_token5] = ACTIONS(1280), - [aux_sym__val_number_token6] = ACTIONS(1280), - [anon_sym_0b] = ACTIONS(1280), - [anon_sym_0o] = ACTIONS(1280), - [anon_sym_0x] = ACTIONS(1280), - [sym_val_date] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1280), - [sym__str_single_quotes] = ACTIONS(1280), - [sym__str_back_ticks] = ACTIONS(1280), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1280), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1280), - [anon_sym_CARET] = ACTIONS(1280), - [aux_sym_unquoted_token6] = ACTIONS(1280), - [anon_sym_POUND] = ACTIONS(113), - }, - [656] = { - [sym_comment] = STATE(656), - [anon_sym_export] = ACTIONS(1059), - [anon_sym_alias] = ACTIONS(1059), - [anon_sym_let] = ACTIONS(1059), - [anon_sym_let_DASHenv] = ACTIONS(1059), - [anon_sym_mut] = ACTIONS(1059), - [anon_sym_const] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [sym_cmd_identifier] = ACTIONS(1059), - [anon_sym_LF] = ACTIONS(1061), - [anon_sym_def] = ACTIONS(1059), - [anon_sym_export_DASHenv] = ACTIONS(1059), - [anon_sym_extern] = ACTIONS(1059), - [anon_sym_module] = ACTIONS(1059), - [anon_sym_use] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_error] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_break] = ACTIONS(1059), - [anon_sym_continue] = ACTIONS(1059), - [anon_sym_for] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1059), - [anon_sym_loop] = ACTIONS(1059), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_do] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1059), - [anon_sym_match] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(1059), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_try] = ACTIONS(1059), - [anon_sym_return] = ACTIONS(1059), - [anon_sym_source] = ACTIONS(1059), - [anon_sym_source_DASHenv] = ACTIONS(1059), - [anon_sym_register] = ACTIONS(1059), - [anon_sym_hide] = ACTIONS(1059), - [anon_sym_hide_DASHenv] = ACTIONS(1059), - [anon_sym_overlay] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(1059), - [anon_sym_STAR_STAR] = ACTIONS(1059), - [anon_sym_PLUS_PLUS] = ACTIONS(1059), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_mod] = ACTIONS(1059), - [anon_sym_SLASH_SLASH] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_bit_DASHshl] = ACTIONS(1059), - [anon_sym_bit_DASHshr] = ACTIONS(1059), - [anon_sym_EQ_EQ] = ACTIONS(1059), - [anon_sym_BANG_EQ] = ACTIONS(1059), - [anon_sym_LT2] = ACTIONS(1059), - [anon_sym_LT_EQ] = ACTIONS(1059), - [anon_sym_GT_EQ] = ACTIONS(1059), - [anon_sym_not_DASHin] = ACTIONS(1059), - [anon_sym_starts_DASHwith] = ACTIONS(1059), - [anon_sym_ends_DASHwith] = ACTIONS(1059), - [anon_sym_EQ_TILDE] = ACTIONS(1059), - [anon_sym_BANG_TILDE] = ACTIONS(1059), - [anon_sym_bit_DASHand] = ACTIONS(1059), - [anon_sym_bit_DASHxor] = ACTIONS(1059), - [anon_sym_bit_DASHor] = ACTIONS(1059), - [anon_sym_and] = ACTIONS(1059), - [anon_sym_xor] = ACTIONS(1059), - [anon_sym_or] = ACTIONS(1059), - [anon_sym_not] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1059), - [anon_sym_DOT_DOT_LT] = ACTIONS(1059), - [anon_sym_null] = ACTIONS(1059), - [anon_sym_true] = ACTIONS(1059), - [anon_sym_false] = ACTIONS(1059), - [aux_sym__val_number_decimal_token1] = ACTIONS(1059), - [aux_sym__val_number_decimal_token2] = ACTIONS(1059), - [anon_sym_DOT2] = ACTIONS(1059), - [aux_sym__val_number_decimal_token3] = ACTIONS(1059), - [aux_sym__val_number_token1] = ACTIONS(1059), - [aux_sym__val_number_token2] = ACTIONS(1059), - [aux_sym__val_number_token3] = ACTIONS(1059), - [aux_sym__val_number_token4] = ACTIONS(1059), - [aux_sym__val_number_token5] = ACTIONS(1059), - [aux_sym__val_number_token6] = ACTIONS(1059), - [anon_sym_0b] = ACTIONS(1059), - [anon_sym_0o] = ACTIONS(1059), - [anon_sym_0x] = ACTIONS(1059), - [sym_val_date] = ACTIONS(1059), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym__str_single_quotes] = ACTIONS(1059), - [sym__str_back_ticks] = ACTIONS(1059), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1059), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1059), - [anon_sym_CARET] = ACTIONS(1059), + [656] = { + [sym_comment] = STATE(656), + [anon_sym_export] = ACTIONS(1257), + [anon_sym_alias] = ACTIONS(1257), + [anon_sym_let] = ACTIONS(1257), + [anon_sym_let_DASHenv] = ACTIONS(1257), + [anon_sym_mut] = ACTIONS(1257), + [anon_sym_const] = ACTIONS(1257), + [sym_cmd_identifier] = ACTIONS(1257), + [anon_sym_def] = ACTIONS(1257), + [anon_sym_export_DASHenv] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(1257), + [anon_sym_module] = ACTIONS(1257), + [anon_sym_use] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_DOLLAR] = ACTIONS(1257), + [anon_sym_error] = ACTIONS(1257), + [anon_sym_list] = ACTIONS(1257), + [anon_sym_GT] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_break] = ACTIONS(1257), + [anon_sym_continue] = ACTIONS(1257), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_in] = ACTIONS(1257), + [anon_sym_loop] = ACTIONS(1257), + [anon_sym_make] = ACTIONS(1257), + [anon_sym_while] = ACTIONS(1257), + [anon_sym_do] = ACTIONS(1257), + [anon_sym_if] = ACTIONS(1257), + [anon_sym_else] = ACTIONS(1257), + [anon_sym_match] = ACTIONS(1257), + [anon_sym_RBRACE] = ACTIONS(1257), + [anon_sym_try] = ACTIONS(1257), + [anon_sym_catch] = ACTIONS(1257), + [anon_sym_return] = ACTIONS(1257), + [anon_sym_source] = ACTIONS(1257), + [anon_sym_source_DASHenv] = ACTIONS(1257), + [anon_sym_register] = ACTIONS(1257), + [anon_sym_hide] = ACTIONS(1257), + [anon_sym_hide_DASHenv] = ACTIONS(1257), + [anon_sym_overlay] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(1257), + [anon_sym_as] = ACTIONS(1257), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_STAR_STAR] = ACTIONS(1257), + [anon_sym_PLUS_PLUS] = ACTIONS(1257), + [anon_sym_SLASH] = ACTIONS(1257), + [anon_sym_mod] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_bit_DASHshl] = ACTIONS(1257), + [anon_sym_bit_DASHshr] = ACTIONS(1257), + [anon_sym_EQ_EQ] = ACTIONS(1257), + [anon_sym_BANG_EQ] = ACTIONS(1257), + [anon_sym_LT2] = ACTIONS(1257), + [anon_sym_LT_EQ] = ACTIONS(1257), + [anon_sym_GT_EQ] = ACTIONS(1257), + [anon_sym_not_DASHin] = ACTIONS(1257), + [anon_sym_starts_DASHwith] = ACTIONS(1257), + [anon_sym_ends_DASHwith] = ACTIONS(1257), + [anon_sym_EQ_TILDE] = ACTIONS(1257), + [anon_sym_BANG_TILDE] = ACTIONS(1257), + [anon_sym_bit_DASHand] = ACTIONS(1257), + [anon_sym_bit_DASHxor] = ACTIONS(1257), + [anon_sym_bit_DASHor] = ACTIONS(1257), + [anon_sym_and] = ACTIONS(1257), + [anon_sym_xor] = ACTIONS(1257), + [anon_sym_or] = ACTIONS(1257), + [aux_sym__val_number_decimal_token1] = ACTIONS(1257), + [aux_sym__val_number_decimal_token2] = ACTIONS(1257), + [anon_sym_DOT2] = ACTIONS(1257), + [aux_sym__val_number_decimal_token3] = ACTIONS(1257), + [aux_sym__val_number_token1] = ACTIONS(1257), + [aux_sym__val_number_token2] = ACTIONS(1257), + [aux_sym__val_number_token3] = ACTIONS(1257), + [aux_sym__val_number_token4] = ACTIONS(1257), + [aux_sym__val_number_token5] = ACTIONS(1257), + [aux_sym__val_number_token6] = ACTIONS(1257), + [anon_sym_DQUOTE] = ACTIONS(1257), + [sym__str_single_quotes] = ACTIONS(1257), + [sym__str_back_ticks] = ACTIONS(1257), + [sym__entry_separator] = ACTIONS(1259), + [aux_sym__record_key_token2] = ACTIONS(1257), [anon_sym_POUND] = ACTIONS(113), }, [657] = { [sym_comment] = STATE(657), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_RPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1480), - [anon_sym_PLUS_PLUS] = ACTIONS(1480), - [anon_sym_SLASH] = ACTIONS(1478), - [anon_sym_mod] = ACTIONS(1478), - [anon_sym_SLASH_SLASH] = ACTIONS(1478), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_bit_DASHshl] = ACTIONS(1488), - [anon_sym_bit_DASHshr] = ACTIONS(1488), - [anon_sym_EQ_EQ] = ACTIONS(1376), - [anon_sym_BANG_EQ] = ACTIONS(1376), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1376), - [anon_sym_GT_EQ] = ACTIONS(1376), - [anon_sym_not_DASHin] = ACTIONS(1376), - [anon_sym_starts_DASHwith] = ACTIONS(1376), - [anon_sym_ends_DASHwith] = ACTIONS(1376), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_export] = ACTIONS(1261), + [anon_sym_alias] = ACTIONS(1261), + [anon_sym_let] = ACTIONS(1261), + [anon_sym_let_DASHenv] = ACTIONS(1261), + [anon_sym_mut] = ACTIONS(1261), + [anon_sym_const] = ACTIONS(1261), + [sym_cmd_identifier] = ACTIONS(1261), + [anon_sym_def] = ACTIONS(1261), + [anon_sym_export_DASHenv] = ACTIONS(1261), + [anon_sym_extern] = ACTIONS(1261), + [anon_sym_module] = ACTIONS(1261), + [anon_sym_use] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_DOLLAR] = ACTIONS(1261), + [anon_sym_error] = ACTIONS(1261), + [anon_sym_list] = ACTIONS(1261), + [anon_sym_GT] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1261), + [anon_sym_break] = ACTIONS(1261), + [anon_sym_continue] = ACTIONS(1261), + [anon_sym_for] = ACTIONS(1261), + [anon_sym_in] = ACTIONS(1261), + [anon_sym_loop] = ACTIONS(1261), + [anon_sym_make] = ACTIONS(1261), + [anon_sym_while] = ACTIONS(1261), + [anon_sym_do] = ACTIONS(1261), + [anon_sym_if] = ACTIONS(1261), + [anon_sym_else] = ACTIONS(1261), + [anon_sym_match] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1261), + [anon_sym_try] = ACTIONS(1261), + [anon_sym_catch] = ACTIONS(1261), + [anon_sym_return] = ACTIONS(1261), + [anon_sym_source] = ACTIONS(1261), + [anon_sym_source_DASHenv] = ACTIONS(1261), + [anon_sym_register] = ACTIONS(1261), + [anon_sym_hide] = ACTIONS(1261), + [anon_sym_hide_DASHenv] = ACTIONS(1261), + [anon_sym_overlay] = ACTIONS(1261), + [anon_sym_new] = ACTIONS(1261), + [anon_sym_as] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_STAR_STAR] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_SLASH] = ACTIONS(1261), + [anon_sym_mod] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(1261), + [anon_sym_PLUS] = ACTIONS(1261), + [anon_sym_bit_DASHshl] = ACTIONS(1261), + [anon_sym_bit_DASHshr] = ACTIONS(1261), + [anon_sym_EQ_EQ] = ACTIONS(1261), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_LT2] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1261), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_not_DASHin] = ACTIONS(1261), + [anon_sym_starts_DASHwith] = ACTIONS(1261), + [anon_sym_ends_DASHwith] = ACTIONS(1261), + [anon_sym_EQ_TILDE] = ACTIONS(1261), + [anon_sym_BANG_TILDE] = ACTIONS(1261), + [anon_sym_bit_DASHand] = ACTIONS(1261), + [anon_sym_bit_DASHxor] = ACTIONS(1261), + [anon_sym_bit_DASHor] = ACTIONS(1261), + [anon_sym_and] = ACTIONS(1261), + [anon_sym_xor] = ACTIONS(1261), + [anon_sym_or] = ACTIONS(1261), + [aux_sym__val_number_decimal_token1] = ACTIONS(1261), + [aux_sym__val_number_decimal_token2] = ACTIONS(1261), + [anon_sym_DOT2] = ACTIONS(1261), + [aux_sym__val_number_decimal_token3] = ACTIONS(1261), + [aux_sym__val_number_token1] = ACTIONS(1261), + [aux_sym__val_number_token2] = ACTIONS(1261), + [aux_sym__val_number_token3] = ACTIONS(1261), + [aux_sym__val_number_token4] = ACTIONS(1261), + [aux_sym__val_number_token5] = ACTIONS(1261), + [aux_sym__val_number_token6] = ACTIONS(1261), + [anon_sym_DQUOTE] = ACTIONS(1261), + [sym__str_single_quotes] = ACTIONS(1261), + [sym__str_back_ticks] = ACTIONS(1261), + [sym__entry_separator] = ACTIONS(1263), + [aux_sym__record_key_token2] = ACTIONS(1261), [anon_sym_POUND] = ACTIONS(113), }, [658] = { + [sym_pipeline_parenthesized] = STATE(2549), + [sym_pipeline_parenthesized_last] = STATE(9881), + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9793), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(4804), + [sym__var] = STATE(4386), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), [sym_comment] = STATE(658), - [anon_sym_export] = ACTIONS(1063), - [anon_sym_alias] = ACTIONS(1063), - [anon_sym_let] = ACTIONS(1063), - [anon_sym_let_DASHenv] = ACTIONS(1063), - [anon_sym_mut] = ACTIONS(1063), - [anon_sym_const] = ACTIONS(1063), - [anon_sym_SEMI] = ACTIONS(1063), - [sym_cmd_identifier] = ACTIONS(1063), - [anon_sym_LF] = ACTIONS(1065), - [anon_sym_def] = ACTIONS(1063), - [anon_sym_export_DASHenv] = ACTIONS(1063), - [anon_sym_extern] = ACTIONS(1063), - [anon_sym_module] = ACTIONS(1063), - [anon_sym_use] = ACTIONS(1063), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_RPAREN] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_error] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_break] = ACTIONS(1063), - [anon_sym_continue] = ACTIONS(1063), - [anon_sym_for] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1063), - [anon_sym_loop] = ACTIONS(1063), - [anon_sym_while] = ACTIONS(1063), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_if] = ACTIONS(1063), - [anon_sym_match] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_RBRACE] = ACTIONS(1063), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1063), - [anon_sym_return] = ACTIONS(1063), - [anon_sym_source] = ACTIONS(1063), - [anon_sym_source_DASHenv] = ACTIONS(1063), - [anon_sym_register] = ACTIONS(1063), - [anon_sym_hide] = ACTIONS(1063), - [anon_sym_hide_DASHenv] = ACTIONS(1063), - [anon_sym_overlay] = ACTIONS(1063), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_where] = ACTIONS(1063), - [anon_sym_STAR_STAR] = ACTIONS(1063), - [anon_sym_PLUS_PLUS] = ACTIONS(1063), - [anon_sym_SLASH] = ACTIONS(1063), - [anon_sym_mod] = ACTIONS(1063), - [anon_sym_SLASH_SLASH] = ACTIONS(1063), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_bit_DASHshl] = ACTIONS(1063), - [anon_sym_bit_DASHshr] = ACTIONS(1063), - [anon_sym_EQ_EQ] = ACTIONS(1063), - [anon_sym_BANG_EQ] = ACTIONS(1063), - [anon_sym_LT2] = ACTIONS(1063), - [anon_sym_LT_EQ] = ACTIONS(1063), - [anon_sym_GT_EQ] = ACTIONS(1063), - [anon_sym_not_DASHin] = ACTIONS(1063), - [anon_sym_starts_DASHwith] = ACTIONS(1063), - [anon_sym_ends_DASHwith] = ACTIONS(1063), - [anon_sym_EQ_TILDE] = ACTIONS(1063), - [anon_sym_BANG_TILDE] = ACTIONS(1063), - [anon_sym_bit_DASHand] = ACTIONS(1063), - [anon_sym_bit_DASHxor] = ACTIONS(1063), - [anon_sym_bit_DASHor] = ACTIONS(1063), - [anon_sym_and] = ACTIONS(1063), - [anon_sym_xor] = ACTIONS(1063), - [anon_sym_or] = ACTIONS(1063), - [anon_sym_not] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1063), - [anon_sym_DOT_DOT_LT] = ACTIONS(1063), - [anon_sym_null] = ACTIONS(1063), - [anon_sym_true] = ACTIONS(1063), - [anon_sym_false] = ACTIONS(1063), - [aux_sym__val_number_decimal_token1] = ACTIONS(1063), - [aux_sym__val_number_decimal_token2] = ACTIONS(1063), - [anon_sym_DOT2] = ACTIONS(1063), - [aux_sym__val_number_decimal_token3] = ACTIONS(1063), - [aux_sym__val_number_token1] = ACTIONS(1063), - [aux_sym__val_number_token2] = ACTIONS(1063), - [aux_sym__val_number_token3] = ACTIONS(1063), - [aux_sym__val_number_token4] = ACTIONS(1063), - [aux_sym__val_number_token5] = ACTIONS(1063), - [aux_sym__val_number_token6] = ACTIONS(1063), - [anon_sym_0b] = ACTIONS(1063), - [anon_sym_0o] = ACTIONS(1063), - [anon_sym_0x] = ACTIONS(1063), - [sym_val_date] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [sym__str_single_quotes] = ACTIONS(1063), - [sym__str_back_ticks] = ACTIONS(1063), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1063), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1063), - [anon_sym_CARET] = ACTIONS(1063), - [anon_sym_POUND] = ACTIONS(113), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(767), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_where] = ACTIONS(187), + [anon_sym_not] = ACTIONS(191), + [anon_sym_DOT_DOT_EQ] = ACTIONS(193), + [anon_sym_DOT_DOT_LT] = ACTIONS(193), + [anon_sym_null] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [aux_sym__val_number_decimal_token1] = ACTIONS(199), + [aux_sym__val_number_decimal_token2] = ACTIONS(201), + [anon_sym_DOT2] = ACTIONS(203), + [aux_sym__val_number_decimal_token3] = ACTIONS(205), + [aux_sym__val_number_token1] = ACTIONS(207), + [aux_sym__val_number_token2] = ACTIONS(207), + [aux_sym__val_number_token3] = ACTIONS(207), + [aux_sym__val_number_token4] = ACTIONS(209), + [aux_sym__val_number_token5] = ACTIONS(207), + [aux_sym__val_number_token6] = ACTIONS(209), + [anon_sym_0b] = ACTIONS(211), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym__str_single_quotes] = ACTIONS(219), + [sym__str_back_ticks] = ACTIONS(219), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_POUND] = ACTIONS(3), }, [659] = { [sym_comment] = STATE(659), - [ts_builtin_sym_end] = ACTIONS(1249), - [anon_sym_export] = ACTIONS(1247), - [anon_sym_alias] = ACTIONS(1247), - [anon_sym_let] = ACTIONS(1247), - [anon_sym_let_DASHenv] = ACTIONS(1247), - [anon_sym_mut] = ACTIONS(1247), - [anon_sym_const] = ACTIONS(1247), - [anon_sym_SEMI] = ACTIONS(1247), - [sym_cmd_identifier] = ACTIONS(1247), - [anon_sym_LF] = ACTIONS(1249), - [anon_sym_def] = ACTIONS(1247), - [anon_sym_export_DASHenv] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1247), - [anon_sym_module] = ACTIONS(1247), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_LBRACK] = ACTIONS(1247), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_DOLLAR] = ACTIONS(1247), - [anon_sym_error] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1247), - [anon_sym_break] = ACTIONS(1247), - [anon_sym_continue] = ACTIONS(1247), - [anon_sym_for] = ACTIONS(1247), - [anon_sym_in] = ACTIONS(1247), - [anon_sym_loop] = ACTIONS(1247), - [anon_sym_while] = ACTIONS(1247), - [anon_sym_do] = ACTIONS(1247), - [anon_sym_if] = ACTIONS(1247), - [anon_sym_match] = ACTIONS(1247), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_DOT_DOT] = ACTIONS(1247), - [anon_sym_try] = ACTIONS(1247), - [anon_sym_return] = ACTIONS(1247), - [anon_sym_source] = ACTIONS(1247), - [anon_sym_source_DASHenv] = ACTIONS(1247), - [anon_sym_register] = ACTIONS(1247), - [anon_sym_hide] = ACTIONS(1247), - [anon_sym_hide_DASHenv] = ACTIONS(1247), - [anon_sym_overlay] = ACTIONS(1247), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_where] = ACTIONS(1247), - [anon_sym_STAR_STAR] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_mod] = ACTIONS(1247), - [anon_sym_SLASH_SLASH] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1247), - [anon_sym_bit_DASHshl] = ACTIONS(1247), - [anon_sym_bit_DASHshr] = ACTIONS(1247), - [anon_sym_EQ_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1247), - [anon_sym_LT2] = ACTIONS(1247), - [anon_sym_LT_EQ] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1247), - [anon_sym_not_DASHin] = ACTIONS(1247), - [anon_sym_starts_DASHwith] = ACTIONS(1247), - [anon_sym_ends_DASHwith] = ACTIONS(1247), - [anon_sym_EQ_TILDE] = ACTIONS(1247), - [anon_sym_BANG_TILDE] = ACTIONS(1247), - [anon_sym_bit_DASHand] = ACTIONS(1247), - [anon_sym_bit_DASHxor] = ACTIONS(1247), - [anon_sym_bit_DASHor] = ACTIONS(1247), - [anon_sym_and] = ACTIONS(1247), - [anon_sym_xor] = ACTIONS(1247), - [anon_sym_or] = ACTIONS(1247), - [anon_sym_not] = ACTIONS(1247), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1247), - [anon_sym_DOT_DOT_LT] = ACTIONS(1247), - [anon_sym_null] = ACTIONS(1247), - [anon_sym_true] = ACTIONS(1247), - [anon_sym_false] = ACTIONS(1247), - [aux_sym__val_number_decimal_token1] = ACTIONS(1247), - [aux_sym__val_number_decimal_token2] = ACTIONS(1247), - [anon_sym_DOT2] = ACTIONS(1247), - [aux_sym__val_number_decimal_token3] = ACTIONS(1247), - [aux_sym__val_number_token1] = ACTIONS(1247), - [aux_sym__val_number_token2] = ACTIONS(1247), - [aux_sym__val_number_token3] = ACTIONS(1247), - [aux_sym__val_number_token4] = ACTIONS(1247), - [aux_sym__val_number_token5] = ACTIONS(1247), - [aux_sym__val_number_token6] = ACTIONS(1247), - [anon_sym_0b] = ACTIONS(1247), - [anon_sym_0o] = ACTIONS(1247), - [anon_sym_0x] = ACTIONS(1247), - [sym_val_date] = ACTIONS(1247), - [anon_sym_DQUOTE] = ACTIONS(1247), - [sym__str_single_quotes] = ACTIONS(1247), - [sym__str_back_ticks] = ACTIONS(1247), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1247), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1247), - [anon_sym_CARET] = ACTIONS(1247), - [aux_sym_unquoted_token6] = ACTIONS(1251), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_list] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_make] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_else] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_catch] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [sym__entry_separator] = ACTIONS(1173), + [aux_sym__record_key_token2] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, [660] = { [sym_comment] = STATE(660), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_RPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1486), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1480), - [anon_sym_PLUS_PLUS] = ACTIONS(1480), - [anon_sym_SLASH] = ACTIONS(1478), - [anon_sym_mod] = ACTIONS(1478), - [anon_sym_SLASH_SLASH] = ACTIONS(1478), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_bit_DASHshl] = ACTIONS(1488), - [anon_sym_bit_DASHshr] = ACTIONS(1488), - [anon_sym_EQ_EQ] = ACTIONS(1482), - [anon_sym_BANG_EQ] = ACTIONS(1482), - [anon_sym_LT2] = ACTIONS(1482), - [anon_sym_LT_EQ] = ACTIONS(1482), - [anon_sym_GT_EQ] = ACTIONS(1482), - [anon_sym_not_DASHin] = ACTIONS(1486), - [anon_sym_starts_DASHwith] = ACTIONS(1486), - [anon_sym_ends_DASHwith] = ACTIONS(1486), - [anon_sym_EQ_TILDE] = ACTIONS(1490), - [anon_sym_BANG_TILDE] = ACTIONS(1490), - [anon_sym_bit_DASHand] = ACTIONS(1492), - [anon_sym_bit_DASHxor] = ACTIONS(1496), - [anon_sym_bit_DASHor] = ACTIONS(1500), - [anon_sym_and] = ACTIONS(1502), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_list] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_make] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_else] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_catch] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [sym__entry_separator] = ACTIONS(1173), + [aux_sym__record_key_token2] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, [661] = { [sym_comment] = STATE(661), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_alias] = ACTIONS(1158), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_let_DASHenv] = ACTIONS(1158), - [anon_sym_mut] = ACTIONS(1158), - [anon_sym_const] = ACTIONS(1158), - [anon_sym_SEMI] = ACTIONS(1158), - [sym_cmd_identifier] = ACTIONS(1158), - [anon_sym_LF] = ACTIONS(1160), - [anon_sym_def] = ACTIONS(1158), - [anon_sym_export_DASHenv] = ACTIONS(1158), - [anon_sym_extern] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_use] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_LPAREN] = ACTIONS(1158), - [anon_sym_RPAREN] = ACTIONS(1158), - [anon_sym_DOLLAR] = ACTIONS(1158), - [anon_sym_error] = ACTIONS(1158), - [anon_sym_GT] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_break] = ACTIONS(1158), - [anon_sym_continue] = ACTIONS(1158), - [anon_sym_for] = ACTIONS(1158), - [anon_sym_in] = ACTIONS(1158), - [anon_sym_loop] = ACTIONS(1158), - [anon_sym_while] = ACTIONS(1158), - [anon_sym_do] = ACTIONS(1158), - [anon_sym_if] = ACTIONS(1158), - [anon_sym_match] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1158), - [anon_sym_RBRACE] = ACTIONS(1158), - [anon_sym_DOT_DOT] = ACTIONS(1158), - [anon_sym_try] = ACTIONS(1158), - [anon_sym_return] = ACTIONS(1158), - [anon_sym_source] = ACTIONS(1158), - [anon_sym_source_DASHenv] = ACTIONS(1158), - [anon_sym_register] = ACTIONS(1158), - [anon_sym_hide] = ACTIONS(1158), - [anon_sym_hide_DASHenv] = ACTIONS(1158), - [anon_sym_overlay] = ACTIONS(1158), - [anon_sym_STAR] = ACTIONS(1158), - [anon_sym_where] = ACTIONS(1158), - [anon_sym_STAR_STAR] = ACTIONS(1158), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_SLASH] = ACTIONS(1158), - [anon_sym_mod] = ACTIONS(1158), - [anon_sym_SLASH_SLASH] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1158), - [anon_sym_bit_DASHshl] = ACTIONS(1158), - [anon_sym_bit_DASHshr] = ACTIONS(1158), - [anon_sym_EQ_EQ] = ACTIONS(1158), - [anon_sym_BANG_EQ] = ACTIONS(1158), - [anon_sym_LT2] = ACTIONS(1158), - [anon_sym_LT_EQ] = ACTIONS(1158), - [anon_sym_GT_EQ] = ACTIONS(1158), - [anon_sym_not_DASHin] = ACTIONS(1158), - [anon_sym_starts_DASHwith] = ACTIONS(1158), - [anon_sym_ends_DASHwith] = ACTIONS(1158), - [anon_sym_EQ_TILDE] = ACTIONS(1158), - [anon_sym_BANG_TILDE] = ACTIONS(1158), - [anon_sym_bit_DASHand] = ACTIONS(1158), - [anon_sym_bit_DASHxor] = ACTIONS(1158), - [anon_sym_bit_DASHor] = ACTIONS(1158), - [anon_sym_and] = ACTIONS(1158), - [anon_sym_xor] = ACTIONS(1158), - [anon_sym_or] = ACTIONS(1158), - [anon_sym_not] = ACTIONS(1158), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1158), - [anon_sym_DOT_DOT_LT] = ACTIONS(1158), - [anon_sym_null] = ACTIONS(1158), - [anon_sym_true] = ACTIONS(1158), - [anon_sym_false] = ACTIONS(1158), - [aux_sym__val_number_decimal_token1] = ACTIONS(1158), - [aux_sym__val_number_decimal_token2] = ACTIONS(1158), - [anon_sym_DOT2] = ACTIONS(1158), - [aux_sym__val_number_decimal_token3] = ACTIONS(1158), - [aux_sym__val_number_token1] = ACTIONS(1158), - [aux_sym__val_number_token2] = ACTIONS(1158), - [aux_sym__val_number_token3] = ACTIONS(1158), - [aux_sym__val_number_token4] = ACTIONS(1158), - [aux_sym__val_number_token5] = ACTIONS(1158), - [aux_sym__val_number_token6] = ACTIONS(1158), - [anon_sym_0b] = ACTIONS(1158), - [anon_sym_0o] = ACTIONS(1158), - [anon_sym_0x] = ACTIONS(1158), - [sym_val_date] = ACTIONS(1158), - [anon_sym_DQUOTE] = ACTIONS(1158), - [sym__str_single_quotes] = ACTIONS(1158), - [sym__str_back_ticks] = ACTIONS(1158), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1158), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1158), - [anon_sym_CARET] = ACTIONS(1158), + [anon_sym_export] = ACTIONS(1225), + [anon_sym_alias] = ACTIONS(1225), + [anon_sym_let] = ACTIONS(1225), + [anon_sym_let_DASHenv] = ACTIONS(1225), + [anon_sym_mut] = ACTIONS(1225), + [anon_sym_const] = ACTIONS(1225), + [sym_cmd_identifier] = ACTIONS(1225), + [anon_sym_def] = ACTIONS(1225), + [anon_sym_export_DASHenv] = ACTIONS(1225), + [anon_sym_extern] = ACTIONS(1225), + [anon_sym_module] = ACTIONS(1225), + [anon_sym_use] = ACTIONS(1225), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_DOLLAR] = ACTIONS(1225), + [anon_sym_error] = ACTIONS(1225), + [anon_sym_list] = ACTIONS(1225), + [anon_sym_GT] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_break] = ACTIONS(1225), + [anon_sym_continue] = ACTIONS(1225), + [anon_sym_for] = ACTIONS(1225), + [anon_sym_in] = ACTIONS(1225), + [anon_sym_loop] = ACTIONS(1225), + [anon_sym_make] = ACTIONS(1225), + [anon_sym_while] = ACTIONS(1225), + [anon_sym_do] = ACTIONS(1225), + [anon_sym_if] = ACTIONS(1225), + [anon_sym_else] = ACTIONS(1225), + [anon_sym_match] = ACTIONS(1225), + [anon_sym_RBRACE] = ACTIONS(1225), + [anon_sym_try] = ACTIONS(1225), + [anon_sym_catch] = ACTIONS(1225), + [anon_sym_return] = ACTIONS(1225), + [anon_sym_source] = ACTIONS(1225), + [anon_sym_source_DASHenv] = ACTIONS(1225), + [anon_sym_register] = ACTIONS(1225), + [anon_sym_hide] = ACTIONS(1225), + [anon_sym_hide_DASHenv] = ACTIONS(1225), + [anon_sym_overlay] = ACTIONS(1225), + [anon_sym_new] = ACTIONS(1225), + [anon_sym_as] = ACTIONS(1225), + [anon_sym_STAR] = ACTIONS(1225), + [anon_sym_STAR_STAR] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(1225), + [anon_sym_mod] = ACTIONS(1225), + [anon_sym_SLASH_SLASH] = ACTIONS(1225), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_bit_DASHshl] = ACTIONS(1225), + [anon_sym_bit_DASHshr] = ACTIONS(1225), + [anon_sym_EQ_EQ] = ACTIONS(1225), + [anon_sym_BANG_EQ] = ACTIONS(1225), + [anon_sym_LT2] = ACTIONS(1225), + [anon_sym_LT_EQ] = ACTIONS(1225), + [anon_sym_GT_EQ] = ACTIONS(1225), + [anon_sym_not_DASHin] = ACTIONS(1225), + [anon_sym_starts_DASHwith] = ACTIONS(1225), + [anon_sym_ends_DASHwith] = ACTIONS(1225), + [anon_sym_EQ_TILDE] = ACTIONS(1225), + [anon_sym_BANG_TILDE] = ACTIONS(1225), + [anon_sym_bit_DASHand] = ACTIONS(1225), + [anon_sym_bit_DASHxor] = ACTIONS(1225), + [anon_sym_bit_DASHor] = ACTIONS(1225), + [anon_sym_and] = ACTIONS(1225), + [anon_sym_xor] = ACTIONS(1225), + [anon_sym_or] = ACTIONS(1225), + [aux_sym__val_number_decimal_token1] = ACTIONS(1225), + [aux_sym__val_number_decimal_token2] = ACTIONS(1225), + [anon_sym_DOT2] = ACTIONS(1225), + [aux_sym__val_number_decimal_token3] = ACTIONS(1225), + [aux_sym__val_number_token1] = ACTIONS(1225), + [aux_sym__val_number_token2] = ACTIONS(1225), + [aux_sym__val_number_token3] = ACTIONS(1225), + [aux_sym__val_number_token4] = ACTIONS(1225), + [aux_sym__val_number_token5] = ACTIONS(1225), + [aux_sym__val_number_token6] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1225), + [sym__str_single_quotes] = ACTIONS(1225), + [sym__str_back_ticks] = ACTIONS(1225), + [sym__entry_separator] = ACTIONS(1227), + [aux_sym__record_key_token2] = ACTIONS(1225), [anon_sym_POUND] = ACTIONS(113), }, [662] = { [sym_comment] = STATE(662), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_alias] = ACTIONS(1362), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_let_DASHenv] = ACTIONS(1362), - [anon_sym_mut] = ACTIONS(1362), - [anon_sym_const] = ACTIONS(1362), - [anon_sym_SEMI] = ACTIONS(1362), - [sym_cmd_identifier] = ACTIONS(1362), - [anon_sym_LF] = ACTIONS(1364), - [anon_sym_def] = ACTIONS(1362), - [anon_sym_export_DASHenv] = ACTIONS(1362), - [anon_sym_extern] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_use] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1362), - [anon_sym_LPAREN] = ACTIONS(1362), - [anon_sym_RPAREN] = ACTIONS(1362), - [anon_sym_DOLLAR] = ACTIONS(1362), - [anon_sym_error] = ACTIONS(1362), - [anon_sym_GT] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_break] = ACTIONS(1362), - [anon_sym_continue] = ACTIONS(1362), - [anon_sym_for] = ACTIONS(1362), - [anon_sym_in] = ACTIONS(1362), - [anon_sym_loop] = ACTIONS(1362), - [anon_sym_while] = ACTIONS(1362), - [anon_sym_do] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1362), - [anon_sym_match] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_RBRACE] = ACTIONS(1362), - [anon_sym_DOT_DOT] = ACTIONS(1362), - [anon_sym_try] = ACTIONS(1362), - [anon_sym_return] = ACTIONS(1362), - [anon_sym_source] = ACTIONS(1362), - [anon_sym_source_DASHenv] = ACTIONS(1362), - [anon_sym_register] = ACTIONS(1362), - [anon_sym_hide] = ACTIONS(1362), - [anon_sym_hide_DASHenv] = ACTIONS(1362), - [anon_sym_overlay] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_where] = ACTIONS(1362), - [anon_sym_STAR_STAR] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_SLASH] = ACTIONS(1362), - [anon_sym_mod] = ACTIONS(1362), - [anon_sym_SLASH_SLASH] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_bit_DASHshl] = ACTIONS(1362), - [anon_sym_bit_DASHshr] = ACTIONS(1362), - [anon_sym_EQ_EQ] = ACTIONS(1362), - [anon_sym_BANG_EQ] = ACTIONS(1362), - [anon_sym_LT2] = ACTIONS(1362), - [anon_sym_LT_EQ] = ACTIONS(1362), - [anon_sym_GT_EQ] = ACTIONS(1362), - [anon_sym_not_DASHin] = ACTIONS(1362), - [anon_sym_starts_DASHwith] = ACTIONS(1362), - [anon_sym_ends_DASHwith] = ACTIONS(1362), - [anon_sym_EQ_TILDE] = ACTIONS(1362), - [anon_sym_BANG_TILDE] = ACTIONS(1362), - [anon_sym_bit_DASHand] = ACTIONS(1362), - [anon_sym_bit_DASHxor] = ACTIONS(1362), - [anon_sym_bit_DASHor] = ACTIONS(1362), - [anon_sym_and] = ACTIONS(1362), - [anon_sym_xor] = ACTIONS(1362), - [anon_sym_or] = ACTIONS(1362), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1362), - [anon_sym_DOT_DOT_LT] = ACTIONS(1362), - [anon_sym_null] = ACTIONS(1362), - [anon_sym_true] = ACTIONS(1362), - [anon_sym_false] = ACTIONS(1362), - [aux_sym__val_number_decimal_token1] = ACTIONS(1362), - [aux_sym__val_number_decimal_token2] = ACTIONS(1362), - [anon_sym_DOT2] = ACTIONS(1362), - [aux_sym__val_number_decimal_token3] = ACTIONS(1362), - [aux_sym__val_number_token1] = ACTIONS(1362), - [aux_sym__val_number_token2] = ACTIONS(1362), - [aux_sym__val_number_token3] = ACTIONS(1362), - [aux_sym__val_number_token4] = ACTIONS(1362), - [aux_sym__val_number_token5] = ACTIONS(1362), - [aux_sym__val_number_token6] = ACTIONS(1362), - [anon_sym_0b] = ACTIONS(1362), - [anon_sym_0o] = ACTIONS(1362), - [anon_sym_0x] = ACTIONS(1362), - [sym_val_date] = ACTIONS(1362), - [anon_sym_DQUOTE] = ACTIONS(1362), - [sym__str_single_quotes] = ACTIONS(1362), - [sym__str_back_ticks] = ACTIONS(1362), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1362), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1362), - [anon_sym_CARET] = ACTIONS(1362), + [anon_sym_export] = ACTIONS(1265), + [anon_sym_alias] = ACTIONS(1265), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_let_DASHenv] = ACTIONS(1265), + [anon_sym_mut] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [sym_cmd_identifier] = ACTIONS(1265), + [anon_sym_def] = ACTIONS(1265), + [anon_sym_export_DASHenv] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_module] = ACTIONS(1265), + [anon_sym_use] = ACTIONS(1265), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_DOLLAR] = ACTIONS(1265), + [anon_sym_error] = ACTIONS(1265), + [anon_sym_list] = ACTIONS(1265), + [anon_sym_GT] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1265), + [anon_sym_break] = ACTIONS(1265), + [anon_sym_continue] = ACTIONS(1265), + [anon_sym_for] = ACTIONS(1265), + [anon_sym_in] = ACTIONS(1265), + [anon_sym_loop] = ACTIONS(1265), + [anon_sym_make] = ACTIONS(1265), + [anon_sym_while] = ACTIONS(1265), + [anon_sym_do] = ACTIONS(1265), + [anon_sym_if] = ACTIONS(1265), + [anon_sym_else] = ACTIONS(1265), + [anon_sym_match] = ACTIONS(1265), + [anon_sym_RBRACE] = ACTIONS(1265), + [anon_sym_try] = ACTIONS(1265), + [anon_sym_catch] = ACTIONS(1265), + [anon_sym_return] = ACTIONS(1265), + [anon_sym_source] = ACTIONS(1265), + [anon_sym_source_DASHenv] = ACTIONS(1265), + [anon_sym_register] = ACTIONS(1265), + [anon_sym_hide] = ACTIONS(1265), + [anon_sym_hide_DASHenv] = ACTIONS(1265), + [anon_sym_overlay] = ACTIONS(1265), + [anon_sym_new] = ACTIONS(1265), + [anon_sym_as] = ACTIONS(1265), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_STAR_STAR] = ACTIONS(1265), + [anon_sym_PLUS_PLUS] = ACTIONS(1265), + [anon_sym_SLASH] = ACTIONS(1265), + [anon_sym_mod] = ACTIONS(1265), + [anon_sym_SLASH_SLASH] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1265), + [anon_sym_bit_DASHshl] = ACTIONS(1265), + [anon_sym_bit_DASHshr] = ACTIONS(1265), + [anon_sym_EQ_EQ] = ACTIONS(1265), + [anon_sym_BANG_EQ] = ACTIONS(1265), + [anon_sym_LT2] = ACTIONS(1265), + [anon_sym_LT_EQ] = ACTIONS(1265), + [anon_sym_GT_EQ] = ACTIONS(1265), + [anon_sym_not_DASHin] = ACTIONS(1265), + [anon_sym_starts_DASHwith] = ACTIONS(1265), + [anon_sym_ends_DASHwith] = ACTIONS(1265), + [anon_sym_EQ_TILDE] = ACTIONS(1265), + [anon_sym_BANG_TILDE] = ACTIONS(1265), + [anon_sym_bit_DASHand] = ACTIONS(1265), + [anon_sym_bit_DASHxor] = ACTIONS(1265), + [anon_sym_bit_DASHor] = ACTIONS(1265), + [anon_sym_and] = ACTIONS(1265), + [anon_sym_xor] = ACTIONS(1265), + [anon_sym_or] = ACTIONS(1265), + [aux_sym__val_number_decimal_token1] = ACTIONS(1265), + [aux_sym__val_number_decimal_token2] = ACTIONS(1265), + [anon_sym_DOT2] = ACTIONS(1265), + [aux_sym__val_number_decimal_token3] = ACTIONS(1265), + [aux_sym__val_number_token1] = ACTIONS(1265), + [aux_sym__val_number_token2] = ACTIONS(1265), + [aux_sym__val_number_token3] = ACTIONS(1265), + [aux_sym__val_number_token4] = ACTIONS(1265), + [aux_sym__val_number_token5] = ACTIONS(1265), + [aux_sym__val_number_token6] = ACTIONS(1265), + [anon_sym_DQUOTE] = ACTIONS(1265), + [sym__str_single_quotes] = ACTIONS(1265), + [sym__str_back_ticks] = ACTIONS(1265), + [sym__entry_separator] = ACTIONS(1267), + [aux_sym__record_key_token2] = ACTIONS(1265), [anon_sym_POUND] = ACTIONS(113), }, [663] = { [sym_comment] = STATE(663), - [anon_sym_export] = ACTIONS(1410), - [anon_sym_alias] = ACTIONS(1410), - [anon_sym_let] = ACTIONS(1410), - [anon_sym_let_DASHenv] = ACTIONS(1410), - [anon_sym_mut] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_SEMI] = ACTIONS(1410), - [sym_cmd_identifier] = ACTIONS(1410), - [anon_sym_LF] = ACTIONS(1412), - [anon_sym_def] = ACTIONS(1410), - [anon_sym_export_DASHenv] = ACTIONS(1410), - [anon_sym_extern] = ACTIONS(1410), - [anon_sym_module] = ACTIONS(1410), - [anon_sym_use] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1410), - [anon_sym_LPAREN] = ACTIONS(1410), - [anon_sym_RPAREN] = ACTIONS(1410), - [anon_sym_DOLLAR] = ACTIONS(1410), - [anon_sym_error] = ACTIONS(1410), - [anon_sym_GT] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_in] = ACTIONS(1410), - [anon_sym_loop] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1410), - [anon_sym_RBRACE] = ACTIONS(1410), - [anon_sym_DOT_DOT] = ACTIONS(1410), - [anon_sym_try] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_source] = ACTIONS(1410), - [anon_sym_source_DASHenv] = ACTIONS(1410), - [anon_sym_register] = ACTIONS(1410), - [anon_sym_hide] = ACTIONS(1410), - [anon_sym_hide_DASHenv] = ACTIONS(1410), - [anon_sym_overlay] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1410), - [anon_sym_where] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1410), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_SLASH] = ACTIONS(1410), - [anon_sym_mod] = ACTIONS(1410), - [anon_sym_SLASH_SLASH] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_bit_DASHshl] = ACTIONS(1410), - [anon_sym_bit_DASHshr] = ACTIONS(1410), - [anon_sym_EQ_EQ] = ACTIONS(1410), - [anon_sym_BANG_EQ] = ACTIONS(1410), - [anon_sym_LT2] = ACTIONS(1410), - [anon_sym_LT_EQ] = ACTIONS(1410), - [anon_sym_GT_EQ] = ACTIONS(1410), - [anon_sym_not_DASHin] = ACTIONS(1410), - [anon_sym_starts_DASHwith] = ACTIONS(1410), - [anon_sym_ends_DASHwith] = ACTIONS(1410), - [anon_sym_EQ_TILDE] = ACTIONS(1410), - [anon_sym_BANG_TILDE] = ACTIONS(1410), - [anon_sym_bit_DASHand] = ACTIONS(1410), - [anon_sym_bit_DASHxor] = ACTIONS(1410), - [anon_sym_bit_DASHor] = ACTIONS(1410), - [anon_sym_and] = ACTIONS(1410), - [anon_sym_xor] = ACTIONS(1410), - [anon_sym_or] = ACTIONS(1410), - [anon_sym_not] = ACTIONS(1410), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1410), - [anon_sym_DOT_DOT_LT] = ACTIONS(1410), - [anon_sym_null] = ACTIONS(1410), - [anon_sym_true] = ACTIONS(1410), - [anon_sym_false] = ACTIONS(1410), - [aux_sym__val_number_decimal_token1] = ACTIONS(1410), - [aux_sym__val_number_decimal_token2] = ACTIONS(1410), - [anon_sym_DOT2] = ACTIONS(1410), - [aux_sym__val_number_decimal_token3] = ACTIONS(1410), - [aux_sym__val_number_token1] = ACTIONS(1410), - [aux_sym__val_number_token2] = ACTIONS(1410), - [aux_sym__val_number_token3] = ACTIONS(1410), - [aux_sym__val_number_token4] = ACTIONS(1410), - [aux_sym__val_number_token5] = ACTIONS(1410), - [aux_sym__val_number_token6] = ACTIONS(1410), - [anon_sym_0b] = ACTIONS(1410), - [anon_sym_0o] = ACTIONS(1410), - [anon_sym_0x] = ACTIONS(1410), - [sym_val_date] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1410), - [sym__str_single_quotes] = ACTIONS(1410), - [sym__str_back_ticks] = ACTIONS(1410), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1410), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1410), - [anon_sym_CARET] = ACTIONS(1410), + [anon_sym_export] = ACTIONS(1265), + [anon_sym_alias] = ACTIONS(1265), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_let_DASHenv] = ACTIONS(1265), + [anon_sym_mut] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [sym_cmd_identifier] = ACTIONS(1265), + [anon_sym_def] = ACTIONS(1265), + [anon_sym_export_DASHenv] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_module] = ACTIONS(1265), + [anon_sym_use] = ACTIONS(1265), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_DOLLAR] = ACTIONS(1265), + [anon_sym_error] = ACTIONS(1265), + [anon_sym_list] = ACTIONS(1265), + [anon_sym_GT] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1265), + [anon_sym_break] = ACTIONS(1265), + [anon_sym_continue] = ACTIONS(1265), + [anon_sym_for] = ACTIONS(1265), + [anon_sym_in] = ACTIONS(1265), + [anon_sym_loop] = ACTIONS(1265), + [anon_sym_make] = ACTIONS(1265), + [anon_sym_while] = ACTIONS(1265), + [anon_sym_do] = ACTIONS(1265), + [anon_sym_if] = ACTIONS(1265), + [anon_sym_else] = ACTIONS(1265), + [anon_sym_match] = ACTIONS(1265), + [anon_sym_RBRACE] = ACTIONS(1265), + [anon_sym_try] = ACTIONS(1265), + [anon_sym_catch] = ACTIONS(1265), + [anon_sym_return] = ACTIONS(1265), + [anon_sym_source] = ACTIONS(1265), + [anon_sym_source_DASHenv] = ACTIONS(1265), + [anon_sym_register] = ACTIONS(1265), + [anon_sym_hide] = ACTIONS(1265), + [anon_sym_hide_DASHenv] = ACTIONS(1265), + [anon_sym_overlay] = ACTIONS(1265), + [anon_sym_new] = ACTIONS(1265), + [anon_sym_as] = ACTIONS(1265), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_STAR_STAR] = ACTIONS(1265), + [anon_sym_PLUS_PLUS] = ACTIONS(1265), + [anon_sym_SLASH] = ACTIONS(1265), + [anon_sym_mod] = ACTIONS(1265), + [anon_sym_SLASH_SLASH] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1265), + [anon_sym_bit_DASHshl] = ACTIONS(1265), + [anon_sym_bit_DASHshr] = ACTIONS(1265), + [anon_sym_EQ_EQ] = ACTIONS(1265), + [anon_sym_BANG_EQ] = ACTIONS(1265), + [anon_sym_LT2] = ACTIONS(1265), + [anon_sym_LT_EQ] = ACTIONS(1265), + [anon_sym_GT_EQ] = ACTIONS(1265), + [anon_sym_not_DASHin] = ACTIONS(1265), + [anon_sym_starts_DASHwith] = ACTIONS(1265), + [anon_sym_ends_DASHwith] = ACTIONS(1265), + [anon_sym_EQ_TILDE] = ACTIONS(1265), + [anon_sym_BANG_TILDE] = ACTIONS(1265), + [anon_sym_bit_DASHand] = ACTIONS(1265), + [anon_sym_bit_DASHxor] = ACTIONS(1265), + [anon_sym_bit_DASHor] = ACTIONS(1265), + [anon_sym_and] = ACTIONS(1265), + [anon_sym_xor] = ACTIONS(1265), + [anon_sym_or] = ACTIONS(1265), + [aux_sym__val_number_decimal_token1] = ACTIONS(1265), + [aux_sym__val_number_decimal_token2] = ACTIONS(1265), + [anon_sym_DOT2] = ACTIONS(1265), + [aux_sym__val_number_decimal_token3] = ACTIONS(1265), + [aux_sym__val_number_token1] = ACTIONS(1265), + [aux_sym__val_number_token2] = ACTIONS(1265), + [aux_sym__val_number_token3] = ACTIONS(1265), + [aux_sym__val_number_token4] = ACTIONS(1265), + [aux_sym__val_number_token5] = ACTIONS(1265), + [aux_sym__val_number_token6] = ACTIONS(1265), + [anon_sym_DQUOTE] = ACTIONS(1265), + [sym__str_single_quotes] = ACTIONS(1265), + [sym__str_back_ticks] = ACTIONS(1265), + [sym__entry_separator] = ACTIONS(1267), + [aux_sym__record_key_token2] = ACTIONS(1265), [anon_sym_POUND] = ACTIONS(113), }, [664] = { [sym_comment] = STATE(664), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), + [anon_sym_export] = ACTIONS(920), + [anon_sym_alias] = ACTIONS(920), + [anon_sym_let] = ACTIONS(920), + [anon_sym_let_DASHenv] = ACTIONS(920), + [anon_sym_mut] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [sym_cmd_identifier] = ACTIONS(920), + [anon_sym_def] = ACTIONS(920), + [anon_sym_export_DASHenv] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym_module] = ACTIONS(920), + [anon_sym_use] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_error] = ACTIONS(920), + [anon_sym_list] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_in] = ACTIONS(920), + [anon_sym_loop] = ACTIONS(920), + [anon_sym_make] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_else] = ACTIONS(920), + [anon_sym_match] = ACTIONS(920), + [anon_sym_RBRACE] = ACTIONS(920), + [anon_sym_try] = ACTIONS(920), + [anon_sym_catch] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_source] = ACTIONS(920), + [anon_sym_source_DASHenv] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_hide] = ACTIONS(920), + [anon_sym_hide_DASHenv] = ACTIONS(920), + [anon_sym_overlay] = ACTIONS(920), + [anon_sym_new] = ACTIONS(920), + [anon_sym_as] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_STAR_STAR] = ACTIONS(920), + [anon_sym_PLUS_PLUS] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_mod] = ACTIONS(920), + [anon_sym_SLASH_SLASH] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_bit_DASHshl] = ACTIONS(920), + [anon_sym_bit_DASHshr] = ACTIONS(920), + [anon_sym_EQ_EQ] = ACTIONS(920), + [anon_sym_BANG_EQ] = ACTIONS(920), + [anon_sym_LT2] = ACTIONS(920), + [anon_sym_LT_EQ] = ACTIONS(920), + [anon_sym_GT_EQ] = ACTIONS(920), + [anon_sym_not_DASHin] = ACTIONS(920), + [anon_sym_starts_DASHwith] = ACTIONS(920), + [anon_sym_ends_DASHwith] = ACTIONS(920), + [anon_sym_EQ_TILDE] = ACTIONS(920), + [anon_sym_BANG_TILDE] = ACTIONS(920), + [anon_sym_bit_DASHand] = ACTIONS(920), + [anon_sym_bit_DASHxor] = ACTIONS(920), + [anon_sym_bit_DASHor] = ACTIONS(920), + [anon_sym_and] = ACTIONS(920), + [anon_sym_xor] = ACTIONS(920), + [anon_sym_or] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [sym__entry_separator] = ACTIONS(922), + [aux_sym__record_key_token2] = ACTIONS(920), [anon_sym_POUND] = ACTIONS(113), }, [665] = { [sym_comment] = STATE(665), - [ts_builtin_sym_end] = ACTIONS(1115), - [anon_sym_export] = ACTIONS(1113), - [anon_sym_alias] = ACTIONS(1113), - [anon_sym_let] = ACTIONS(1113), - [anon_sym_let_DASHenv] = ACTIONS(1113), - [anon_sym_mut] = ACTIONS(1113), - [anon_sym_const] = ACTIONS(1113), - [anon_sym_SEMI] = ACTIONS(1113), - [sym_cmd_identifier] = ACTIONS(1113), - [anon_sym_LF] = ACTIONS(1115), - [anon_sym_def] = ACTIONS(1113), - [anon_sym_export_DASHenv] = ACTIONS(1113), - [anon_sym_extern] = ACTIONS(1113), - [anon_sym_module] = ACTIONS(1113), - [anon_sym_use] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1113), - [anon_sym_error] = ACTIONS(1113), - [anon_sym_GT] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_in] = ACTIONS(1113), - [anon_sym_loop] = ACTIONS(1113), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1113), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_source] = ACTIONS(1113), - [anon_sym_source_DASHenv] = ACTIONS(1113), - [anon_sym_register] = ACTIONS(1113), - [anon_sym_hide] = ACTIONS(1113), - [anon_sym_hide_DASHenv] = ACTIONS(1113), - [anon_sym_overlay] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_where] = ACTIONS(1113), - [anon_sym_STAR_STAR] = ACTIONS(1113), - [anon_sym_PLUS_PLUS] = ACTIONS(1113), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_mod] = ACTIONS(1113), - [anon_sym_SLASH_SLASH] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_bit_DASHshl] = ACTIONS(1113), - [anon_sym_bit_DASHshr] = ACTIONS(1113), - [anon_sym_EQ_EQ] = ACTIONS(1113), - [anon_sym_BANG_EQ] = ACTIONS(1113), - [anon_sym_LT2] = ACTIONS(1113), - [anon_sym_LT_EQ] = ACTIONS(1113), - [anon_sym_GT_EQ] = ACTIONS(1113), - [anon_sym_not_DASHin] = ACTIONS(1113), - [anon_sym_starts_DASHwith] = ACTIONS(1113), - [anon_sym_ends_DASHwith] = ACTIONS(1113), - [anon_sym_EQ_TILDE] = ACTIONS(1113), - [anon_sym_BANG_TILDE] = ACTIONS(1113), - [anon_sym_bit_DASHand] = ACTIONS(1113), - [anon_sym_bit_DASHxor] = ACTIONS(1113), - [anon_sym_bit_DASHor] = ACTIONS(1113), - [anon_sym_and] = ACTIONS(1113), - [anon_sym_xor] = ACTIONS(1113), - [anon_sym_or] = ACTIONS(1113), - [anon_sym_not] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1113), - [anon_sym_DOT_DOT_LT] = ACTIONS(1113), - [anon_sym_null] = ACTIONS(1113), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1113), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_decimal_token2] = ACTIONS(1113), - [anon_sym_DOT2] = ACTIONS(1113), - [aux_sym__val_number_decimal_token3] = ACTIONS(1113), - [aux_sym__val_number_token1] = ACTIONS(1113), - [aux_sym__val_number_token2] = ACTIONS(1113), - [aux_sym__val_number_token3] = ACTIONS(1113), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1113), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_0b] = ACTIONS(1113), - [anon_sym_0o] = ACTIONS(1113), - [anon_sym_0x] = ACTIONS(1113), - [sym_val_date] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym__str_single_quotes] = ACTIONS(1113), - [sym__str_back_ticks] = ACTIONS(1113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), - [anon_sym_CARET] = ACTIONS(1113), + [anon_sym_export] = ACTIONS(1179), + [anon_sym_alias] = ACTIONS(1179), + [anon_sym_let] = ACTIONS(1179), + [anon_sym_let_DASHenv] = ACTIONS(1179), + [anon_sym_mut] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [sym_cmd_identifier] = ACTIONS(1179), + [anon_sym_def] = ACTIONS(1179), + [anon_sym_export_DASHenv] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_use] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_error] = ACTIONS(1179), + [anon_sym_list] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1534), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1544), + [anon_sym_loop] = ACTIONS(1179), + [anon_sym_make] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_else] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1179), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_catch] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_source] = ACTIONS(1179), + [anon_sym_source_DASHenv] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), + [anon_sym_hide_DASHenv] = ACTIONS(1179), + [anon_sym_overlay] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_STAR_STAR] = ACTIONS(1538), + [anon_sym_PLUS_PLUS] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1536), + [anon_sym_mod] = ACTIONS(1536), + [anon_sym_SLASH_SLASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1534), + [anon_sym_bit_DASHshl] = ACTIONS(1546), + [anon_sym_bit_DASHshr] = ACTIONS(1546), + [anon_sym_EQ_EQ] = ACTIONS(1542), + [anon_sym_BANG_EQ] = ACTIONS(1542), + [anon_sym_LT2] = ACTIONS(1542), + [anon_sym_LT_EQ] = ACTIONS(1542), + [anon_sym_GT_EQ] = ACTIONS(1542), + [anon_sym_not_DASHin] = ACTIONS(1544), + [anon_sym_starts_DASHwith] = ACTIONS(1544), + [anon_sym_ends_DASHwith] = ACTIONS(1544), + [anon_sym_EQ_TILDE] = ACTIONS(1548), + [anon_sym_BANG_TILDE] = ACTIONS(1548), + [anon_sym_bit_DASHand] = ACTIONS(1550), + [anon_sym_bit_DASHxor] = ACTIONS(1552), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [sym__entry_separator] = ACTIONS(1181), + [aux_sym__record_key_token2] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, [666] = { [sym_comment] = STATE(666), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), + [anon_sym_export] = ACTIONS(1271), + [anon_sym_alias] = ACTIONS(1271), + [anon_sym_let] = ACTIONS(1271), + [anon_sym_let_DASHenv] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(1271), + [anon_sym_const] = ACTIONS(1271), + [sym_cmd_identifier] = ACTIONS(1271), + [anon_sym_def] = ACTIONS(1271), + [anon_sym_export_DASHenv] = ACTIONS(1271), + [anon_sym_extern] = ACTIONS(1271), + [anon_sym_module] = ACTIONS(1271), + [anon_sym_use] = ACTIONS(1271), + [anon_sym_LPAREN] = ACTIONS(1271), + [anon_sym_DOLLAR] = ACTIONS(1271), + [anon_sym_error] = ACTIONS(1271), + [anon_sym_list] = ACTIONS(1271), + [anon_sym_GT] = ACTIONS(1271), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_break] = ACTIONS(1271), + [anon_sym_continue] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1271), + [anon_sym_in] = ACTIONS(1271), + [anon_sym_loop] = ACTIONS(1271), + [anon_sym_make] = ACTIONS(1271), + [anon_sym_while] = ACTIONS(1271), + [anon_sym_do] = ACTIONS(1271), + [anon_sym_if] = ACTIONS(1271), + [anon_sym_else] = ACTIONS(1271), + [anon_sym_match] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(1271), + [anon_sym_try] = ACTIONS(1271), + [anon_sym_catch] = ACTIONS(1271), + [anon_sym_return] = ACTIONS(1271), + [anon_sym_source] = ACTIONS(1271), + [anon_sym_source_DASHenv] = ACTIONS(1271), + [anon_sym_register] = ACTIONS(1271), + [anon_sym_hide] = ACTIONS(1271), + [anon_sym_hide_DASHenv] = ACTIONS(1271), + [anon_sym_overlay] = ACTIONS(1271), + [anon_sym_new] = ACTIONS(1271), + [anon_sym_as] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(1271), + [anon_sym_STAR_STAR] = ACTIONS(1271), + [anon_sym_PLUS_PLUS] = ACTIONS(1271), + [anon_sym_SLASH] = ACTIONS(1271), + [anon_sym_mod] = ACTIONS(1271), + [anon_sym_SLASH_SLASH] = ACTIONS(1271), + [anon_sym_PLUS] = ACTIONS(1271), + [anon_sym_bit_DASHshl] = ACTIONS(1271), + [anon_sym_bit_DASHshr] = ACTIONS(1271), + [anon_sym_EQ_EQ] = ACTIONS(1271), + [anon_sym_BANG_EQ] = ACTIONS(1271), + [anon_sym_LT2] = ACTIONS(1271), + [anon_sym_LT_EQ] = ACTIONS(1271), + [anon_sym_GT_EQ] = ACTIONS(1271), + [anon_sym_not_DASHin] = ACTIONS(1271), + [anon_sym_starts_DASHwith] = ACTIONS(1271), + [anon_sym_ends_DASHwith] = ACTIONS(1271), + [anon_sym_EQ_TILDE] = ACTIONS(1271), + [anon_sym_BANG_TILDE] = ACTIONS(1271), + [anon_sym_bit_DASHand] = ACTIONS(1271), + [anon_sym_bit_DASHxor] = ACTIONS(1271), + [anon_sym_bit_DASHor] = ACTIONS(1271), + [anon_sym_and] = ACTIONS(1271), + [anon_sym_xor] = ACTIONS(1271), + [anon_sym_or] = ACTIONS(1271), + [aux_sym__val_number_decimal_token1] = ACTIONS(1271), + [aux_sym__val_number_decimal_token2] = ACTIONS(1271), + [anon_sym_DOT2] = ACTIONS(1271), + [aux_sym__val_number_decimal_token3] = ACTIONS(1271), + [aux_sym__val_number_token1] = ACTIONS(1271), + [aux_sym__val_number_token2] = ACTIONS(1271), + [aux_sym__val_number_token3] = ACTIONS(1271), + [aux_sym__val_number_token4] = ACTIONS(1271), + [aux_sym__val_number_token5] = ACTIONS(1271), + [aux_sym__val_number_token6] = ACTIONS(1271), + [anon_sym_DQUOTE] = ACTIONS(1271), + [sym__str_single_quotes] = ACTIONS(1271), + [sym__str_back_ticks] = ACTIONS(1271), + [sym__entry_separator] = ACTIONS(1273), + [aux_sym__record_key_token2] = ACTIONS(1271), [anon_sym_POUND] = ACTIONS(113), }, [667] = { [sym_comment] = STATE(667), - [ts_builtin_sym_end] = ACTIONS(1119), - [anon_sym_export] = ACTIONS(1117), - [anon_sym_alias] = ACTIONS(1117), - [anon_sym_let] = ACTIONS(1117), - [anon_sym_let_DASHenv] = ACTIONS(1117), - [anon_sym_mut] = ACTIONS(1117), - [anon_sym_const] = ACTIONS(1117), - [anon_sym_SEMI] = ACTIONS(1117), - [sym_cmd_identifier] = ACTIONS(1117), - [anon_sym_LF] = ACTIONS(1119), - [anon_sym_def] = ACTIONS(1117), - [anon_sym_export_DASHenv] = ACTIONS(1117), - [anon_sym_extern] = ACTIONS(1117), - [anon_sym_module] = ACTIONS(1117), - [anon_sym_use] = ACTIONS(1117), - [anon_sym_LBRACK] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1117), - [anon_sym_DOLLAR] = ACTIONS(1117), - [anon_sym_error] = ACTIONS(1117), - [anon_sym_GT] = ACTIONS(1117), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_break] = ACTIONS(1117), - [anon_sym_continue] = ACTIONS(1117), - [anon_sym_for] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1117), - [anon_sym_loop] = ACTIONS(1117), - [anon_sym_while] = ACTIONS(1117), - [anon_sym_do] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1117), - [anon_sym_LBRACE] = ACTIONS(1117), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_try] = ACTIONS(1117), - [anon_sym_return] = ACTIONS(1117), - [anon_sym_source] = ACTIONS(1117), - [anon_sym_source_DASHenv] = ACTIONS(1117), - [anon_sym_register] = ACTIONS(1117), - [anon_sym_hide] = ACTIONS(1117), - [anon_sym_hide_DASHenv] = ACTIONS(1117), - [anon_sym_overlay] = ACTIONS(1117), - [anon_sym_STAR] = ACTIONS(1117), - [anon_sym_where] = ACTIONS(1117), - [anon_sym_STAR_STAR] = ACTIONS(1117), - [anon_sym_PLUS_PLUS] = ACTIONS(1117), - [anon_sym_SLASH] = ACTIONS(1117), - [anon_sym_mod] = ACTIONS(1117), - [anon_sym_SLASH_SLASH] = ACTIONS(1117), - [anon_sym_PLUS] = ACTIONS(1117), - [anon_sym_bit_DASHshl] = ACTIONS(1117), - [anon_sym_bit_DASHshr] = ACTIONS(1117), - [anon_sym_EQ_EQ] = ACTIONS(1117), - [anon_sym_BANG_EQ] = ACTIONS(1117), - [anon_sym_LT2] = ACTIONS(1117), - [anon_sym_LT_EQ] = ACTIONS(1117), - [anon_sym_GT_EQ] = ACTIONS(1117), - [anon_sym_not_DASHin] = ACTIONS(1117), - [anon_sym_starts_DASHwith] = ACTIONS(1117), - [anon_sym_ends_DASHwith] = ACTIONS(1117), - [anon_sym_EQ_TILDE] = ACTIONS(1117), - [anon_sym_BANG_TILDE] = ACTIONS(1117), - [anon_sym_bit_DASHand] = ACTIONS(1117), - [anon_sym_bit_DASHxor] = ACTIONS(1117), - [anon_sym_bit_DASHor] = ACTIONS(1117), - [anon_sym_and] = ACTIONS(1117), - [anon_sym_xor] = ACTIONS(1117), - [anon_sym_or] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1117), - [anon_sym_DOT] = ACTIONS(1117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1117), - [anon_sym_DOT_DOT_LT] = ACTIONS(1117), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_true] = ACTIONS(1117), - [anon_sym_false] = ACTIONS(1117), - [aux_sym__val_number_decimal_token1] = ACTIONS(1117), - [aux_sym__val_number_decimal_token2] = ACTIONS(1117), - [anon_sym_DOT2] = ACTIONS(1117), - [aux_sym__val_number_decimal_token3] = ACTIONS(1117), - [aux_sym__val_number_token1] = ACTIONS(1117), - [aux_sym__val_number_token2] = ACTIONS(1117), - [aux_sym__val_number_token3] = ACTIONS(1117), - [aux_sym__val_number_token4] = ACTIONS(1117), - [aux_sym__val_number_token5] = ACTIONS(1117), - [aux_sym__val_number_token6] = ACTIONS(1117), - [anon_sym_0b] = ACTIONS(1117), - [anon_sym_0o] = ACTIONS(1117), - [anon_sym_0x] = ACTIONS(1117), - [sym_val_date] = ACTIONS(1117), - [anon_sym_DQUOTE] = ACTIONS(1117), - [sym__str_single_quotes] = ACTIONS(1117), - [sym__str_back_ticks] = ACTIONS(1117), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1117), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1117), - [anon_sym_CARET] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1275), + [anon_sym_alias] = ACTIONS(1275), + [anon_sym_let] = ACTIONS(1275), + [anon_sym_let_DASHenv] = ACTIONS(1275), + [anon_sym_mut] = ACTIONS(1275), + [anon_sym_const] = ACTIONS(1275), + [sym_cmd_identifier] = ACTIONS(1275), + [anon_sym_def] = ACTIONS(1275), + [anon_sym_export_DASHenv] = ACTIONS(1275), + [anon_sym_extern] = ACTIONS(1275), + [anon_sym_module] = ACTIONS(1275), + [anon_sym_use] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(1275), + [anon_sym_DOLLAR] = ACTIONS(1275), + [anon_sym_error] = ACTIONS(1275), + [anon_sym_list] = ACTIONS(1275), + [anon_sym_GT] = ACTIONS(1275), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_break] = ACTIONS(1275), + [anon_sym_continue] = ACTIONS(1275), + [anon_sym_for] = ACTIONS(1275), + [anon_sym_in] = ACTIONS(1275), + [anon_sym_loop] = ACTIONS(1275), + [anon_sym_make] = ACTIONS(1275), + [anon_sym_while] = ACTIONS(1275), + [anon_sym_do] = ACTIONS(1275), + [anon_sym_if] = ACTIONS(1275), + [anon_sym_else] = ACTIONS(1275), + [anon_sym_match] = ACTIONS(1275), + [anon_sym_RBRACE] = ACTIONS(1275), + [anon_sym_try] = ACTIONS(1275), + [anon_sym_catch] = ACTIONS(1275), + [anon_sym_return] = ACTIONS(1275), + [anon_sym_source] = ACTIONS(1275), + [anon_sym_source_DASHenv] = ACTIONS(1275), + [anon_sym_register] = ACTIONS(1275), + [anon_sym_hide] = ACTIONS(1275), + [anon_sym_hide_DASHenv] = ACTIONS(1275), + [anon_sym_overlay] = ACTIONS(1275), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_as] = ACTIONS(1275), + [anon_sym_STAR] = ACTIONS(1275), + [anon_sym_STAR_STAR] = ACTIONS(1275), + [anon_sym_PLUS_PLUS] = ACTIONS(1275), + [anon_sym_SLASH] = ACTIONS(1275), + [anon_sym_mod] = ACTIONS(1275), + [anon_sym_SLASH_SLASH] = ACTIONS(1275), + [anon_sym_PLUS] = ACTIONS(1275), + [anon_sym_bit_DASHshl] = ACTIONS(1275), + [anon_sym_bit_DASHshr] = ACTIONS(1275), + [anon_sym_EQ_EQ] = ACTIONS(1275), + [anon_sym_BANG_EQ] = ACTIONS(1275), + [anon_sym_LT2] = ACTIONS(1275), + [anon_sym_LT_EQ] = ACTIONS(1275), + [anon_sym_GT_EQ] = ACTIONS(1275), + [anon_sym_not_DASHin] = ACTIONS(1275), + [anon_sym_starts_DASHwith] = ACTIONS(1275), + [anon_sym_ends_DASHwith] = ACTIONS(1275), + [anon_sym_EQ_TILDE] = ACTIONS(1275), + [anon_sym_BANG_TILDE] = ACTIONS(1275), + [anon_sym_bit_DASHand] = ACTIONS(1275), + [anon_sym_bit_DASHxor] = ACTIONS(1275), + [anon_sym_bit_DASHor] = ACTIONS(1275), + [anon_sym_and] = ACTIONS(1275), + [anon_sym_xor] = ACTIONS(1275), + [anon_sym_or] = ACTIONS(1275), + [aux_sym__val_number_decimal_token1] = ACTIONS(1275), + [aux_sym__val_number_decimal_token2] = ACTIONS(1275), + [anon_sym_DOT2] = ACTIONS(1275), + [aux_sym__val_number_decimal_token3] = ACTIONS(1275), + [aux_sym__val_number_token1] = ACTIONS(1275), + [aux_sym__val_number_token2] = ACTIONS(1275), + [aux_sym__val_number_token3] = ACTIONS(1275), + [aux_sym__val_number_token4] = ACTIONS(1275), + [aux_sym__val_number_token5] = ACTIONS(1275), + [aux_sym__val_number_token6] = ACTIONS(1275), + [anon_sym_DQUOTE] = ACTIONS(1275), + [sym__str_single_quotes] = ACTIONS(1275), + [sym__str_back_ticks] = ACTIONS(1275), + [sym__entry_separator] = ACTIONS(1277), + [aux_sym__record_key_token2] = ACTIONS(1275), [anon_sym_POUND] = ACTIONS(113), }, [668] = { [sym_comment] = STATE(668), - [ts_builtin_sym_end] = ACTIONS(1255), - [anon_sym_export] = ACTIONS(1253), - [anon_sym_alias] = ACTIONS(1253), - [anon_sym_let] = ACTIONS(1253), - [anon_sym_let_DASHenv] = ACTIONS(1253), - [anon_sym_mut] = ACTIONS(1253), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_SEMI] = ACTIONS(1253), - [sym_cmd_identifier] = ACTIONS(1253), - [anon_sym_LF] = ACTIONS(1255), - [anon_sym_def] = ACTIONS(1253), - [anon_sym_export_DASHenv] = ACTIONS(1253), - [anon_sym_extern] = ACTIONS(1253), - [anon_sym_module] = ACTIONS(1253), - [anon_sym_use] = ACTIONS(1253), - [anon_sym_LBRACK] = ACTIONS(1253), - [anon_sym_LPAREN] = ACTIONS(1253), - [anon_sym_DOLLAR] = ACTIONS(1253), - [anon_sym_error] = ACTIONS(1253), - [anon_sym_GT] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_break] = ACTIONS(1253), - [anon_sym_continue] = ACTIONS(1253), - [anon_sym_for] = ACTIONS(1253), - [anon_sym_in] = ACTIONS(1253), - [anon_sym_loop] = ACTIONS(1253), - [anon_sym_while] = ACTIONS(1253), - [anon_sym_do] = ACTIONS(1253), - [anon_sym_if] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1253), - [anon_sym_LBRACE] = ACTIONS(1253), - [anon_sym_DOT_DOT] = ACTIONS(1253), - [anon_sym_try] = ACTIONS(1253), - [anon_sym_return] = ACTIONS(1253), - [anon_sym_source] = ACTIONS(1253), - [anon_sym_source_DASHenv] = ACTIONS(1253), - [anon_sym_register] = ACTIONS(1253), - [anon_sym_hide] = ACTIONS(1253), - [anon_sym_hide_DASHenv] = ACTIONS(1253), - [anon_sym_overlay] = ACTIONS(1253), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_where] = ACTIONS(1253), - [anon_sym_STAR_STAR] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_mod] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_bit_DASHshl] = ACTIONS(1253), - [anon_sym_bit_DASHshr] = ACTIONS(1253), - [anon_sym_EQ_EQ] = ACTIONS(1253), - [anon_sym_BANG_EQ] = ACTIONS(1253), - [anon_sym_LT2] = ACTIONS(1253), - [anon_sym_LT_EQ] = ACTIONS(1253), - [anon_sym_GT_EQ] = ACTIONS(1253), - [anon_sym_not_DASHin] = ACTIONS(1253), - [anon_sym_starts_DASHwith] = ACTIONS(1253), - [anon_sym_ends_DASHwith] = ACTIONS(1253), - [anon_sym_EQ_TILDE] = ACTIONS(1253), - [anon_sym_BANG_TILDE] = ACTIONS(1253), - [anon_sym_bit_DASHand] = ACTIONS(1253), - [anon_sym_bit_DASHxor] = ACTIONS(1253), - [anon_sym_bit_DASHor] = ACTIONS(1253), - [anon_sym_and] = ACTIONS(1253), - [anon_sym_xor] = ACTIONS(1253), - [anon_sym_or] = ACTIONS(1253), - [anon_sym_not] = ACTIONS(1253), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1253), - [anon_sym_DOT_DOT_LT] = ACTIONS(1253), - [anon_sym_null] = ACTIONS(1253), - [anon_sym_true] = ACTIONS(1253), - [anon_sym_false] = ACTIONS(1253), - [aux_sym__val_number_decimal_token1] = ACTIONS(1253), - [aux_sym__val_number_decimal_token2] = ACTIONS(1253), - [anon_sym_DOT2] = ACTIONS(1253), - [aux_sym__val_number_decimal_token3] = ACTIONS(1253), - [aux_sym__val_number_token1] = ACTIONS(1253), - [aux_sym__val_number_token2] = ACTIONS(1253), - [aux_sym__val_number_token3] = ACTIONS(1253), - [aux_sym__val_number_token4] = ACTIONS(1253), - [aux_sym__val_number_token5] = ACTIONS(1253), - [aux_sym__val_number_token6] = ACTIONS(1253), - [anon_sym_0b] = ACTIONS(1253), - [anon_sym_0o] = ACTIONS(1253), - [anon_sym_0x] = ACTIONS(1253), - [sym_val_date] = ACTIONS(1253), - [anon_sym_DQUOTE] = ACTIONS(1253), - [sym__str_single_quotes] = ACTIONS(1253), - [sym__str_back_ticks] = ACTIONS(1253), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1253), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1253), - [anon_sym_CARET] = ACTIONS(1253), - [aux_sym_unquoted_token6] = ACTIONS(1257), + [anon_sym_export] = ACTIONS(1033), + [anon_sym_alias] = ACTIONS(1033), + [anon_sym_let] = ACTIONS(1033), + [anon_sym_let_DASHenv] = ACTIONS(1033), + [anon_sym_mut] = ACTIONS(1033), + [anon_sym_const] = ACTIONS(1033), + [sym_cmd_identifier] = ACTIONS(1033), + [anon_sym_def] = ACTIONS(1033), + [anon_sym_export_DASHenv] = ACTIONS(1033), + [anon_sym_extern] = ACTIONS(1033), + [anon_sym_module] = ACTIONS(1033), + [anon_sym_use] = ACTIONS(1033), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_error] = ACTIONS(1033), + [anon_sym_list] = ACTIONS(1033), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1033), + [anon_sym_break] = ACTIONS(1033), + [anon_sym_continue] = ACTIONS(1033), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_in] = ACTIONS(1033), + [anon_sym_loop] = ACTIONS(1033), + [anon_sym_make] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(1033), + [anon_sym_do] = ACTIONS(1033), + [anon_sym_if] = ACTIONS(1033), + [anon_sym_else] = ACTIONS(1033), + [anon_sym_match] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1033), + [anon_sym_try] = ACTIONS(1033), + [anon_sym_catch] = ACTIONS(1033), + [anon_sym_return] = ACTIONS(1033), + [anon_sym_source] = ACTIONS(1033), + [anon_sym_source_DASHenv] = ACTIONS(1033), + [anon_sym_register] = ACTIONS(1033), + [anon_sym_hide] = ACTIONS(1033), + [anon_sym_hide_DASHenv] = ACTIONS(1033), + [anon_sym_overlay] = ACTIONS(1033), + [anon_sym_new] = ACTIONS(1033), + [anon_sym_as] = ACTIONS(1033), + [anon_sym_STAR] = ACTIONS(1033), + [anon_sym_STAR_STAR] = ACTIONS(1033), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_SLASH] = ACTIONS(1033), + [anon_sym_mod] = ACTIONS(1033), + [anon_sym_SLASH_SLASH] = ACTIONS(1033), + [anon_sym_PLUS] = ACTIONS(1033), + [anon_sym_bit_DASHshl] = ACTIONS(1033), + [anon_sym_bit_DASHshr] = ACTIONS(1033), + [anon_sym_EQ_EQ] = ACTIONS(1033), + [anon_sym_BANG_EQ] = ACTIONS(1033), + [anon_sym_LT2] = ACTIONS(1033), + [anon_sym_LT_EQ] = ACTIONS(1033), + [anon_sym_GT_EQ] = ACTIONS(1033), + [anon_sym_not_DASHin] = ACTIONS(1033), + [anon_sym_starts_DASHwith] = ACTIONS(1033), + [anon_sym_ends_DASHwith] = ACTIONS(1033), + [anon_sym_EQ_TILDE] = ACTIONS(1033), + [anon_sym_BANG_TILDE] = ACTIONS(1033), + [anon_sym_bit_DASHand] = ACTIONS(1033), + [anon_sym_bit_DASHxor] = ACTIONS(1033), + [anon_sym_bit_DASHor] = ACTIONS(1033), + [anon_sym_and] = ACTIONS(1033), + [anon_sym_xor] = ACTIONS(1033), + [anon_sym_or] = ACTIONS(1033), + [aux_sym__val_number_decimal_token1] = ACTIONS(1033), + [aux_sym__val_number_decimal_token2] = ACTIONS(1033), + [anon_sym_DOT2] = ACTIONS(1033), + [aux_sym__val_number_decimal_token3] = ACTIONS(1033), + [aux_sym__val_number_token1] = ACTIONS(1033), + [aux_sym__val_number_token2] = ACTIONS(1033), + [aux_sym__val_number_token3] = ACTIONS(1033), + [aux_sym__val_number_token4] = ACTIONS(1033), + [aux_sym__val_number_token5] = ACTIONS(1033), + [aux_sym__val_number_token6] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [sym__str_single_quotes] = ACTIONS(1033), + [sym__str_back_ticks] = ACTIONS(1033), + [sym__entry_separator] = ACTIONS(1035), + [aux_sym__record_key_token2] = ACTIONS(1033), [anon_sym_POUND] = ACTIONS(113), }, [669] = { [sym_comment] = STATE(669), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_RPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1486), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1480), - [anon_sym_PLUS_PLUS] = ACTIONS(1480), - [anon_sym_SLASH] = ACTIONS(1478), - [anon_sym_mod] = ACTIONS(1478), - [anon_sym_SLASH_SLASH] = ACTIONS(1478), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_bit_DASHshl] = ACTIONS(1488), - [anon_sym_bit_DASHshr] = ACTIONS(1488), - [anon_sym_EQ_EQ] = ACTIONS(1482), - [anon_sym_BANG_EQ] = ACTIONS(1482), - [anon_sym_LT2] = ACTIONS(1482), - [anon_sym_LT_EQ] = ACTIONS(1482), - [anon_sym_GT_EQ] = ACTIONS(1482), - [anon_sym_not_DASHin] = ACTIONS(1486), - [anon_sym_starts_DASHwith] = ACTIONS(1486), - [anon_sym_ends_DASHwith] = ACTIONS(1486), - [anon_sym_EQ_TILDE] = ACTIONS(1490), - [anon_sym_BANG_TILDE] = ACTIONS(1490), - [anon_sym_bit_DASHand] = ACTIONS(1492), - [anon_sym_bit_DASHxor] = ACTIONS(1496), - [anon_sym_bit_DASHor] = ACTIONS(1500), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_export] = ACTIONS(1051), + [anon_sym_alias] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(1051), + [anon_sym_let_DASHenv] = ACTIONS(1051), + [anon_sym_mut] = ACTIONS(1051), + [anon_sym_const] = ACTIONS(1051), + [sym_cmd_identifier] = ACTIONS(1051), + [anon_sym_def] = ACTIONS(1051), + [anon_sym_export_DASHenv] = ACTIONS(1051), + [anon_sym_extern] = ACTIONS(1051), + [anon_sym_module] = ACTIONS(1051), + [anon_sym_use] = ACTIONS(1051), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_DOLLAR] = ACTIONS(1051), + [anon_sym_error] = ACTIONS(1051), + [anon_sym_list] = ACTIONS(1051), + [anon_sym_GT] = ACTIONS(1051), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_break] = ACTIONS(1051), + [anon_sym_continue] = ACTIONS(1051), + [anon_sym_for] = ACTIONS(1051), + [anon_sym_in] = ACTIONS(1051), + [anon_sym_loop] = ACTIONS(1051), + [anon_sym_make] = ACTIONS(1051), + [anon_sym_while] = ACTIONS(1051), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_if] = ACTIONS(1051), + [anon_sym_else] = ACTIONS(1051), + [anon_sym_match] = ACTIONS(1051), + [anon_sym_RBRACE] = ACTIONS(1051), + [anon_sym_try] = ACTIONS(1051), + [anon_sym_catch] = ACTIONS(1051), + [anon_sym_return] = ACTIONS(1051), + [anon_sym_source] = ACTIONS(1051), + [anon_sym_source_DASHenv] = ACTIONS(1051), + [anon_sym_register] = ACTIONS(1051), + [anon_sym_hide] = ACTIONS(1051), + [anon_sym_hide_DASHenv] = ACTIONS(1051), + [anon_sym_overlay] = ACTIONS(1051), + [anon_sym_new] = ACTIONS(1051), + [anon_sym_as] = ACTIONS(1051), + [anon_sym_STAR] = ACTIONS(1051), + [anon_sym_STAR_STAR] = ACTIONS(1051), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_mod] = ACTIONS(1051), + [anon_sym_SLASH_SLASH] = ACTIONS(1051), + [anon_sym_PLUS] = ACTIONS(1051), + [anon_sym_bit_DASHshl] = ACTIONS(1051), + [anon_sym_bit_DASHshr] = ACTIONS(1051), + [anon_sym_EQ_EQ] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1051), + [anon_sym_LT2] = ACTIONS(1051), + [anon_sym_LT_EQ] = ACTIONS(1051), + [anon_sym_GT_EQ] = ACTIONS(1051), + [anon_sym_not_DASHin] = ACTIONS(1051), + [anon_sym_starts_DASHwith] = ACTIONS(1051), + [anon_sym_ends_DASHwith] = ACTIONS(1051), + [anon_sym_EQ_TILDE] = ACTIONS(1051), + [anon_sym_BANG_TILDE] = ACTIONS(1051), + [anon_sym_bit_DASHand] = ACTIONS(1051), + [anon_sym_bit_DASHxor] = ACTIONS(1051), + [anon_sym_bit_DASHor] = ACTIONS(1051), + [anon_sym_and] = ACTIONS(1051), + [anon_sym_xor] = ACTIONS(1051), + [anon_sym_or] = ACTIONS(1051), + [aux_sym__val_number_decimal_token1] = ACTIONS(1051), + [aux_sym__val_number_decimal_token2] = ACTIONS(1051), + [anon_sym_DOT2] = ACTIONS(1051), + [aux_sym__val_number_decimal_token3] = ACTIONS(1051), + [aux_sym__val_number_token1] = ACTIONS(1051), + [aux_sym__val_number_token2] = ACTIONS(1051), + [aux_sym__val_number_token3] = ACTIONS(1051), + [aux_sym__val_number_token4] = ACTIONS(1051), + [aux_sym__val_number_token5] = ACTIONS(1051), + [aux_sym__val_number_token6] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(1051), + [sym__str_single_quotes] = ACTIONS(1051), + [sym__str_back_ticks] = ACTIONS(1051), + [sym__entry_separator] = ACTIONS(1053), + [aux_sym__record_key_token2] = ACTIONS(1051), [anon_sym_POUND] = ACTIONS(113), }, [670] = { [sym_comment] = STATE(670), - [ts_builtin_sym_end] = ACTIONS(1275), - [anon_sym_export] = ACTIONS(1273), - [anon_sym_alias] = ACTIONS(1273), - [anon_sym_let] = ACTIONS(1273), - [anon_sym_let_DASHenv] = ACTIONS(1273), - [anon_sym_mut] = ACTIONS(1273), - [anon_sym_const] = ACTIONS(1273), - [anon_sym_SEMI] = ACTIONS(1273), - [sym_cmd_identifier] = ACTIONS(1273), - [anon_sym_LF] = ACTIONS(1275), - [anon_sym_def] = ACTIONS(1273), - [anon_sym_export_DASHenv] = ACTIONS(1273), - [anon_sym_extern] = ACTIONS(1273), - [anon_sym_module] = ACTIONS(1273), - [anon_sym_use] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1273), - [anon_sym_LPAREN] = ACTIONS(1273), - [anon_sym_DOLLAR] = ACTIONS(1273), - [anon_sym_error] = ACTIONS(1273), - [anon_sym_GT] = ACTIONS(1273), - [anon_sym_DASH] = ACTIONS(1273), - [anon_sym_break] = ACTIONS(1273), - [anon_sym_continue] = ACTIONS(1273), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_in] = ACTIONS(1273), - [anon_sym_loop] = ACTIONS(1273), - [anon_sym_while] = ACTIONS(1273), - [anon_sym_do] = ACTIONS(1273), - [anon_sym_if] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_try] = ACTIONS(1273), - [anon_sym_return] = ACTIONS(1273), - [anon_sym_source] = ACTIONS(1273), - [anon_sym_source_DASHenv] = ACTIONS(1273), - [anon_sym_register] = ACTIONS(1273), - [anon_sym_hide] = ACTIONS(1273), - [anon_sym_hide_DASHenv] = ACTIONS(1273), - [anon_sym_overlay] = ACTIONS(1273), - [anon_sym_STAR] = ACTIONS(1273), - [anon_sym_where] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1273), - [anon_sym_PLUS_PLUS] = ACTIONS(1273), - [anon_sym_SLASH] = ACTIONS(1273), - [anon_sym_mod] = ACTIONS(1273), - [anon_sym_SLASH_SLASH] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(1273), - [anon_sym_bit_DASHshl] = ACTIONS(1273), - [anon_sym_bit_DASHshr] = ACTIONS(1273), - [anon_sym_EQ_EQ] = ACTIONS(1273), - [anon_sym_BANG_EQ] = ACTIONS(1273), - [anon_sym_LT2] = ACTIONS(1273), - [anon_sym_LT_EQ] = ACTIONS(1273), - [anon_sym_GT_EQ] = ACTIONS(1273), - [anon_sym_not_DASHin] = ACTIONS(1273), - [anon_sym_starts_DASHwith] = ACTIONS(1273), - [anon_sym_ends_DASHwith] = ACTIONS(1273), - [anon_sym_EQ_TILDE] = ACTIONS(1273), - [anon_sym_BANG_TILDE] = ACTIONS(1273), - [anon_sym_bit_DASHand] = ACTIONS(1273), - [anon_sym_bit_DASHxor] = ACTIONS(1273), - [anon_sym_bit_DASHor] = ACTIONS(1273), - [anon_sym_and] = ACTIONS(1273), - [anon_sym_xor] = ACTIONS(1273), - [anon_sym_or] = ACTIONS(1273), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1273), - [anon_sym_DOT_DOT_LT] = ACTIONS(1273), - [anon_sym_null] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1273), - [anon_sym_false] = ACTIONS(1273), - [aux_sym__val_number_decimal_token1] = ACTIONS(1273), - [aux_sym__val_number_decimal_token2] = ACTIONS(1273), - [anon_sym_DOT2] = ACTIONS(1273), - [aux_sym__val_number_decimal_token3] = ACTIONS(1273), - [aux_sym__val_number_token1] = ACTIONS(1273), - [aux_sym__val_number_token2] = ACTIONS(1273), - [aux_sym__val_number_token3] = ACTIONS(1273), - [aux_sym__val_number_token4] = ACTIONS(1273), - [aux_sym__val_number_token5] = ACTIONS(1273), - [aux_sym__val_number_token6] = ACTIONS(1273), - [anon_sym_0b] = ACTIONS(1273), - [anon_sym_0o] = ACTIONS(1273), - [anon_sym_0x] = ACTIONS(1273), - [sym_val_date] = ACTIONS(1273), - [anon_sym_DQUOTE] = ACTIONS(1273), - [sym__str_single_quotes] = ACTIONS(1273), - [sym__str_back_ticks] = ACTIONS(1273), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1273), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1273), - [anon_sym_CARET] = ACTIONS(1273), - [aux_sym_unquoted_token6] = ACTIONS(1257), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1279), + [anon_sym_let] = ACTIONS(1279), + [anon_sym_let_DASHenv] = ACTIONS(1279), + [anon_sym_mut] = ACTIONS(1279), + [anon_sym_const] = ACTIONS(1279), + [sym_cmd_identifier] = ACTIONS(1279), + [anon_sym_def] = ACTIONS(1279), + [anon_sym_export_DASHenv] = ACTIONS(1279), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_use] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_DOLLAR] = ACTIONS(1279), + [anon_sym_error] = ACTIONS(1279), + [anon_sym_list] = ACTIONS(1279), + [anon_sym_GT] = ACTIONS(1279), + [anon_sym_DASH] = ACTIONS(1279), + [anon_sym_break] = ACTIONS(1279), + [anon_sym_continue] = ACTIONS(1279), + [anon_sym_for] = ACTIONS(1279), + [anon_sym_in] = ACTIONS(1279), + [anon_sym_loop] = ACTIONS(1279), + [anon_sym_make] = ACTIONS(1279), + [anon_sym_while] = ACTIONS(1279), + [anon_sym_do] = ACTIONS(1279), + [anon_sym_if] = ACTIONS(1279), + [anon_sym_else] = ACTIONS(1279), + [anon_sym_match] = ACTIONS(1279), + [anon_sym_RBRACE] = ACTIONS(1279), + [anon_sym_try] = ACTIONS(1279), + [anon_sym_catch] = ACTIONS(1279), + [anon_sym_return] = ACTIONS(1279), + [anon_sym_source] = ACTIONS(1279), + [anon_sym_source_DASHenv] = ACTIONS(1279), + [anon_sym_register] = ACTIONS(1279), + [anon_sym_hide] = ACTIONS(1279), + [anon_sym_hide_DASHenv] = ACTIONS(1279), + [anon_sym_overlay] = ACTIONS(1279), + [anon_sym_new] = ACTIONS(1279), + [anon_sym_as] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1279), + [anon_sym_STAR_STAR] = ACTIONS(1279), + [anon_sym_PLUS_PLUS] = ACTIONS(1279), + [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_mod] = ACTIONS(1279), + [anon_sym_SLASH_SLASH] = ACTIONS(1279), + [anon_sym_PLUS] = ACTIONS(1279), + [anon_sym_bit_DASHshl] = ACTIONS(1279), + [anon_sym_bit_DASHshr] = ACTIONS(1279), + [anon_sym_EQ_EQ] = ACTIONS(1279), + [anon_sym_BANG_EQ] = ACTIONS(1279), + [anon_sym_LT2] = ACTIONS(1279), + [anon_sym_LT_EQ] = ACTIONS(1279), + [anon_sym_GT_EQ] = ACTIONS(1279), + [anon_sym_not_DASHin] = ACTIONS(1279), + [anon_sym_starts_DASHwith] = ACTIONS(1279), + [anon_sym_ends_DASHwith] = ACTIONS(1279), + [anon_sym_EQ_TILDE] = ACTIONS(1279), + [anon_sym_BANG_TILDE] = ACTIONS(1279), + [anon_sym_bit_DASHand] = ACTIONS(1279), + [anon_sym_bit_DASHxor] = ACTIONS(1279), + [anon_sym_bit_DASHor] = ACTIONS(1279), + [anon_sym_and] = ACTIONS(1279), + [anon_sym_xor] = ACTIONS(1279), + [anon_sym_or] = ACTIONS(1279), + [aux_sym__val_number_decimal_token1] = ACTIONS(1279), + [aux_sym__val_number_decimal_token2] = ACTIONS(1279), + [anon_sym_DOT2] = ACTIONS(1279), + [aux_sym__val_number_decimal_token3] = ACTIONS(1279), + [aux_sym__val_number_token1] = ACTIONS(1279), + [aux_sym__val_number_token2] = ACTIONS(1279), + [aux_sym__val_number_token3] = ACTIONS(1279), + [aux_sym__val_number_token4] = ACTIONS(1279), + [aux_sym__val_number_token5] = ACTIONS(1279), + [aux_sym__val_number_token6] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(1279), + [sym__str_single_quotes] = ACTIONS(1279), + [sym__str_back_ticks] = ACTIONS(1279), + [sym__entry_separator] = ACTIONS(1281), + [aux_sym__record_key_token2] = ACTIONS(1279), [anon_sym_POUND] = ACTIONS(113), }, [671] = { [sym_comment] = STATE(671), - [anon_sym_export] = ACTIONS(1198), - [anon_sym_alias] = ACTIONS(1198), - [anon_sym_let] = ACTIONS(1198), - [anon_sym_let_DASHenv] = ACTIONS(1198), - [anon_sym_mut] = ACTIONS(1198), - [anon_sym_const] = ACTIONS(1198), - [anon_sym_SEMI] = ACTIONS(1198), - [sym_cmd_identifier] = ACTIONS(1198), - [anon_sym_LF] = ACTIONS(1366), - [anon_sym_def] = ACTIONS(1198), - [anon_sym_export_DASHenv] = ACTIONS(1198), - [anon_sym_extern] = ACTIONS(1198), - [anon_sym_module] = ACTIONS(1198), - [anon_sym_use] = ACTIONS(1198), - [anon_sym_LBRACK] = ACTIONS(1198), - [anon_sym_LPAREN] = ACTIONS(1198), - [anon_sym_RPAREN] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(1198), - [anon_sym_error] = ACTIONS(1198), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1198), - [anon_sym_break] = ACTIONS(1198), - [anon_sym_continue] = ACTIONS(1198), - [anon_sym_for] = ACTIONS(1198), - [anon_sym_in] = ACTIONS(1198), - [anon_sym_loop] = ACTIONS(1198), - [anon_sym_while] = ACTIONS(1198), - [anon_sym_do] = ACTIONS(1198), - [anon_sym_if] = ACTIONS(1198), - [anon_sym_match] = ACTIONS(1198), - [anon_sym_LBRACE] = ACTIONS(1198), - [anon_sym_RBRACE] = ACTIONS(1198), - [anon_sym_DOT_DOT] = ACTIONS(1198), - [anon_sym_try] = ACTIONS(1198), - [anon_sym_return] = ACTIONS(1198), - [anon_sym_source] = ACTIONS(1198), - [anon_sym_source_DASHenv] = ACTIONS(1198), - [anon_sym_register] = ACTIONS(1198), - [anon_sym_hide] = ACTIONS(1198), - [anon_sym_hide_DASHenv] = ACTIONS(1198), - [anon_sym_overlay] = ACTIONS(1198), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_where] = ACTIONS(1198), - [anon_sym_STAR_STAR] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_SLASH] = ACTIONS(1198), - [anon_sym_mod] = ACTIONS(1198), - [anon_sym_SLASH_SLASH] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1198), - [anon_sym_bit_DASHshl] = ACTIONS(1198), - [anon_sym_bit_DASHshr] = ACTIONS(1198), - [anon_sym_EQ_EQ] = ACTIONS(1198), - [anon_sym_BANG_EQ] = ACTIONS(1198), - [anon_sym_LT2] = ACTIONS(1198), - [anon_sym_LT_EQ] = ACTIONS(1198), - [anon_sym_GT_EQ] = ACTIONS(1198), - [anon_sym_not_DASHin] = ACTIONS(1198), - [anon_sym_starts_DASHwith] = ACTIONS(1198), - [anon_sym_ends_DASHwith] = ACTIONS(1198), - [anon_sym_EQ_TILDE] = ACTIONS(1198), - [anon_sym_BANG_TILDE] = ACTIONS(1198), - [anon_sym_bit_DASHand] = ACTIONS(1198), - [anon_sym_bit_DASHxor] = ACTIONS(1198), - [anon_sym_bit_DASHor] = ACTIONS(1198), - [anon_sym_and] = ACTIONS(1198), - [anon_sym_xor] = ACTIONS(1198), - [anon_sym_or] = ACTIONS(1198), - [anon_sym_not] = ACTIONS(1198), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1198), - [anon_sym_DOT_DOT_LT] = ACTIONS(1198), - [anon_sym_null] = ACTIONS(1198), - [anon_sym_true] = ACTIONS(1198), - [anon_sym_false] = ACTIONS(1198), - [aux_sym__val_number_decimal_token1] = ACTIONS(1198), - [aux_sym__val_number_decimal_token2] = ACTIONS(1198), - [anon_sym_DOT2] = ACTIONS(1198), - [aux_sym__val_number_decimal_token3] = ACTIONS(1198), - [aux_sym__val_number_token1] = ACTIONS(1198), - [aux_sym__val_number_token2] = ACTIONS(1198), - [aux_sym__val_number_token3] = ACTIONS(1198), - [aux_sym__val_number_token4] = ACTIONS(1198), - [aux_sym__val_number_token5] = ACTIONS(1198), - [aux_sym__val_number_token6] = ACTIONS(1198), - [anon_sym_0b] = ACTIONS(1198), - [anon_sym_0o] = ACTIONS(1198), - [anon_sym_0x] = ACTIONS(1198), - [sym_val_date] = ACTIONS(1198), - [anon_sym_DQUOTE] = ACTIONS(1198), - [sym__str_single_quotes] = ACTIONS(1198), - [sym__str_back_ticks] = ACTIONS(1198), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1198), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1198), - [anon_sym_CARET] = ACTIONS(1198), + [anon_sym_export] = ACTIONS(1179), + [anon_sym_alias] = ACTIONS(1179), + [anon_sym_let] = ACTIONS(1179), + [anon_sym_let_DASHenv] = ACTIONS(1179), + [anon_sym_mut] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [sym_cmd_identifier] = ACTIONS(1179), + [anon_sym_def] = ACTIONS(1179), + [anon_sym_export_DASHenv] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_use] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_error] = ACTIONS(1179), + [anon_sym_list] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1534), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1544), + [anon_sym_loop] = ACTIONS(1179), + [anon_sym_make] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_else] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1179), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_catch] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_source] = ACTIONS(1179), + [anon_sym_source_DASHenv] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), + [anon_sym_hide_DASHenv] = ACTIONS(1179), + [anon_sym_overlay] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_STAR_STAR] = ACTIONS(1538), + [anon_sym_PLUS_PLUS] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1536), + [anon_sym_mod] = ACTIONS(1536), + [anon_sym_SLASH_SLASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1534), + [anon_sym_bit_DASHshl] = ACTIONS(1546), + [anon_sym_bit_DASHshr] = ACTIONS(1546), + [anon_sym_EQ_EQ] = ACTIONS(1542), + [anon_sym_BANG_EQ] = ACTIONS(1542), + [anon_sym_LT2] = ACTIONS(1542), + [anon_sym_LT_EQ] = ACTIONS(1542), + [anon_sym_GT_EQ] = ACTIONS(1542), + [anon_sym_not_DASHin] = ACTIONS(1544), + [anon_sym_starts_DASHwith] = ACTIONS(1544), + [anon_sym_ends_DASHwith] = ACTIONS(1544), + [anon_sym_EQ_TILDE] = ACTIONS(1548), + [anon_sym_BANG_TILDE] = ACTIONS(1548), + [anon_sym_bit_DASHand] = ACTIONS(1550), + [anon_sym_bit_DASHxor] = ACTIONS(1552), + [anon_sym_bit_DASHor] = ACTIONS(1554), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [sym__entry_separator] = ACTIONS(1181), + [aux_sym__record_key_token2] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, [672] = { [sym_comment] = STATE(672), - [anon_sym_export] = ACTIONS(1286), - [anon_sym_alias] = ACTIONS(1286), - [anon_sym_let] = ACTIONS(1286), - [anon_sym_let_DASHenv] = ACTIONS(1286), - [anon_sym_mut] = ACTIONS(1286), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_SEMI] = ACTIONS(1286), - [sym_cmd_identifier] = ACTIONS(1286), - [anon_sym_LF] = ACTIONS(1288), - [anon_sym_def] = ACTIONS(1286), - [anon_sym_export_DASHenv] = ACTIONS(1286), - [anon_sym_extern] = ACTIONS(1286), - [anon_sym_module] = ACTIONS(1286), - [anon_sym_use] = ACTIONS(1286), - [anon_sym_LBRACK] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(1286), - [anon_sym_RPAREN] = ACTIONS(1286), - [anon_sym_DOLLAR] = ACTIONS(1286), - [anon_sym_error] = ACTIONS(1286), - [anon_sym_GT] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1286), - [anon_sym_break] = ACTIONS(1286), - [anon_sym_continue] = ACTIONS(1286), - [anon_sym_for] = ACTIONS(1286), - [anon_sym_in] = ACTIONS(1286), - [anon_sym_loop] = ACTIONS(1286), - [anon_sym_while] = ACTIONS(1286), - [anon_sym_do] = ACTIONS(1286), - [anon_sym_if] = ACTIONS(1286), - [anon_sym_match] = ACTIONS(1286), - [anon_sym_LBRACE] = ACTIONS(1286), - [anon_sym_RBRACE] = ACTIONS(1286), - [anon_sym_DOT_DOT] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(1286), - [anon_sym_return] = ACTIONS(1286), - [anon_sym_source] = ACTIONS(1286), - [anon_sym_source_DASHenv] = ACTIONS(1286), - [anon_sym_register] = ACTIONS(1286), - [anon_sym_hide] = ACTIONS(1286), - [anon_sym_hide_DASHenv] = ACTIONS(1286), - [anon_sym_overlay] = ACTIONS(1286), - [anon_sym_STAR] = ACTIONS(1286), - [anon_sym_where] = ACTIONS(1286), - [anon_sym_STAR_STAR] = ACTIONS(1286), - [anon_sym_PLUS_PLUS] = ACTIONS(1286), - [anon_sym_SLASH] = ACTIONS(1286), - [anon_sym_mod] = ACTIONS(1286), - [anon_sym_SLASH_SLASH] = ACTIONS(1286), - [anon_sym_PLUS] = ACTIONS(1286), - [anon_sym_bit_DASHshl] = ACTIONS(1286), - [anon_sym_bit_DASHshr] = ACTIONS(1286), - [anon_sym_EQ_EQ] = ACTIONS(1286), - [anon_sym_BANG_EQ] = ACTIONS(1286), - [anon_sym_LT2] = ACTIONS(1286), - [anon_sym_LT_EQ] = ACTIONS(1286), - [anon_sym_GT_EQ] = ACTIONS(1286), - [anon_sym_not_DASHin] = ACTIONS(1286), - [anon_sym_starts_DASHwith] = ACTIONS(1286), - [anon_sym_ends_DASHwith] = ACTIONS(1286), - [anon_sym_EQ_TILDE] = ACTIONS(1286), - [anon_sym_BANG_TILDE] = ACTIONS(1286), - [anon_sym_bit_DASHand] = ACTIONS(1286), - [anon_sym_bit_DASHxor] = ACTIONS(1286), - [anon_sym_bit_DASHor] = ACTIONS(1286), - [anon_sym_and] = ACTIONS(1286), - [anon_sym_xor] = ACTIONS(1286), - [anon_sym_or] = ACTIONS(1286), - [anon_sym_not] = ACTIONS(1286), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1286), - [anon_sym_DOT_DOT_LT] = ACTIONS(1286), - [anon_sym_null] = ACTIONS(1286), - [anon_sym_true] = ACTIONS(1286), - [anon_sym_false] = ACTIONS(1286), - [aux_sym__val_number_decimal_token1] = ACTIONS(1286), - [aux_sym__val_number_decimal_token2] = ACTIONS(1286), - [anon_sym_DOT2] = ACTIONS(1286), - [aux_sym__val_number_decimal_token3] = ACTIONS(1286), - [aux_sym__val_number_token1] = ACTIONS(1286), - [aux_sym__val_number_token2] = ACTIONS(1286), - [aux_sym__val_number_token3] = ACTIONS(1286), - [aux_sym__val_number_token4] = ACTIONS(1286), - [aux_sym__val_number_token5] = ACTIONS(1286), - [aux_sym__val_number_token6] = ACTIONS(1286), - [anon_sym_0b] = ACTIONS(1286), - [anon_sym_0o] = ACTIONS(1286), - [anon_sym_0x] = ACTIONS(1286), - [sym_val_date] = ACTIONS(1286), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym__str_single_quotes] = ACTIONS(1286), - [sym__str_back_ticks] = ACTIONS(1286), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1286), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1286), - [anon_sym_CARET] = ACTIONS(1286), + [anon_sym_export] = ACTIONS(1020), + [anon_sym_alias] = ACTIONS(1020), + [anon_sym_let] = ACTIONS(1020), + [anon_sym_let_DASHenv] = ACTIONS(1020), + [anon_sym_mut] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(1020), + [sym_cmd_identifier] = ACTIONS(1020), + [anon_sym_def] = ACTIONS(1020), + [anon_sym_export_DASHenv] = ACTIONS(1020), + [anon_sym_extern] = ACTIONS(1020), + [anon_sym_module] = ACTIONS(1020), + [anon_sym_use] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_error] = ACTIONS(1020), + [anon_sym_list] = ACTIONS(1020), + [anon_sym_GT] = ACTIONS(1020), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_in] = ACTIONS(1020), + [anon_sym_loop] = ACTIONS(1020), + [anon_sym_make] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_else] = ACTIONS(1020), + [anon_sym_match] = ACTIONS(1020), + [anon_sym_RBRACE] = ACTIONS(1020), + [anon_sym_try] = ACTIONS(1020), + [anon_sym_catch] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_source] = ACTIONS(1020), + [anon_sym_source_DASHenv] = ACTIONS(1020), + [anon_sym_register] = ACTIONS(1020), + [anon_sym_hide] = ACTIONS(1020), + [anon_sym_hide_DASHenv] = ACTIONS(1020), + [anon_sym_overlay] = ACTIONS(1020), + [anon_sym_new] = ACTIONS(1020), + [anon_sym_as] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_STAR_STAR] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1020), + [anon_sym_SLASH] = ACTIONS(1020), + [anon_sym_mod] = ACTIONS(1020), + [anon_sym_SLASH_SLASH] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_bit_DASHshl] = ACTIONS(1020), + [anon_sym_bit_DASHshr] = ACTIONS(1020), + [anon_sym_EQ_EQ] = ACTIONS(1020), + [anon_sym_BANG_EQ] = ACTIONS(1020), + [anon_sym_LT2] = ACTIONS(1020), + [anon_sym_LT_EQ] = ACTIONS(1020), + [anon_sym_GT_EQ] = ACTIONS(1020), + [anon_sym_not_DASHin] = ACTIONS(1020), + [anon_sym_starts_DASHwith] = ACTIONS(1020), + [anon_sym_ends_DASHwith] = ACTIONS(1020), + [anon_sym_EQ_TILDE] = ACTIONS(1020), + [anon_sym_BANG_TILDE] = ACTIONS(1020), + [anon_sym_bit_DASHand] = ACTIONS(1020), + [anon_sym_bit_DASHxor] = ACTIONS(1020), + [anon_sym_bit_DASHor] = ACTIONS(1020), + [anon_sym_and] = ACTIONS(1020), + [anon_sym_xor] = ACTIONS(1020), + [anon_sym_or] = ACTIONS(1020), + [aux_sym__val_number_decimal_token1] = ACTIONS(1020), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [anon_sym_DOT2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1020), + [aux_sym__val_number_token1] = ACTIONS(1020), + [aux_sym__val_number_token2] = ACTIONS(1020), + [aux_sym__val_number_token3] = ACTIONS(1020), + [aux_sym__val_number_token4] = ACTIONS(1020), + [aux_sym__val_number_token5] = ACTIONS(1020), + [aux_sym__val_number_token6] = ACTIONS(1020), + [anon_sym_DQUOTE] = ACTIONS(1020), + [sym__str_single_quotes] = ACTIONS(1020), + [sym__str_back_ticks] = ACTIONS(1020), + [sym__entry_separator] = ACTIONS(1022), + [aux_sym__record_key_token2] = ACTIONS(1020), [anon_sym_POUND] = ACTIONS(113), }, [673] = { [sym_comment] = STATE(673), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_RPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1480), - [anon_sym_PLUS_PLUS] = ACTIONS(1480), - [anon_sym_SLASH] = ACTIONS(1478), - [anon_sym_mod] = ACTIONS(1478), - [anon_sym_SLASH_SLASH] = ACTIONS(1478), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_bit_DASHshl] = ACTIONS(1488), - [anon_sym_bit_DASHshr] = ACTIONS(1488), - [anon_sym_EQ_EQ] = ACTIONS(1482), - [anon_sym_BANG_EQ] = ACTIONS(1482), - [anon_sym_LT2] = ACTIONS(1482), - [anon_sym_LT_EQ] = ACTIONS(1482), - [anon_sym_GT_EQ] = ACTIONS(1482), - [anon_sym_not_DASHin] = ACTIONS(1376), - [anon_sym_starts_DASHwith] = ACTIONS(1376), - [anon_sym_ends_DASHwith] = ACTIONS(1376), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_export] = ACTIONS(1283), + [anon_sym_alias] = ACTIONS(1283), + [anon_sym_let] = ACTIONS(1283), + [anon_sym_let_DASHenv] = ACTIONS(1283), + [anon_sym_mut] = ACTIONS(1283), + [anon_sym_const] = ACTIONS(1283), + [sym_cmd_identifier] = ACTIONS(1283), + [anon_sym_def] = ACTIONS(1283), + [anon_sym_export_DASHenv] = ACTIONS(1283), + [anon_sym_extern] = ACTIONS(1283), + [anon_sym_module] = ACTIONS(1283), + [anon_sym_use] = ACTIONS(1283), + [anon_sym_LPAREN] = ACTIONS(1283), + [anon_sym_DOLLAR] = ACTIONS(1283), + [anon_sym_error] = ACTIONS(1283), + [anon_sym_list] = ACTIONS(1283), + [anon_sym_GT] = ACTIONS(1283), + [anon_sym_DASH] = ACTIONS(1283), + [anon_sym_break] = ACTIONS(1283), + [anon_sym_continue] = ACTIONS(1283), + [anon_sym_for] = ACTIONS(1283), + [anon_sym_in] = ACTIONS(1283), + [anon_sym_loop] = ACTIONS(1283), + [anon_sym_make] = ACTIONS(1283), + [anon_sym_while] = ACTIONS(1283), + [anon_sym_do] = ACTIONS(1283), + [anon_sym_if] = ACTIONS(1283), + [anon_sym_else] = ACTIONS(1283), + [anon_sym_match] = ACTIONS(1283), + [anon_sym_RBRACE] = ACTIONS(1283), + [anon_sym_try] = ACTIONS(1283), + [anon_sym_catch] = ACTIONS(1283), + [anon_sym_return] = ACTIONS(1283), + [anon_sym_source] = ACTIONS(1283), + [anon_sym_source_DASHenv] = ACTIONS(1283), + [anon_sym_register] = ACTIONS(1283), + [anon_sym_hide] = ACTIONS(1283), + [anon_sym_hide_DASHenv] = ACTIONS(1283), + [anon_sym_overlay] = ACTIONS(1283), + [anon_sym_new] = ACTIONS(1283), + [anon_sym_as] = ACTIONS(1283), + [anon_sym_STAR] = ACTIONS(1283), + [anon_sym_STAR_STAR] = ACTIONS(1283), + [anon_sym_PLUS_PLUS] = ACTIONS(1283), + [anon_sym_SLASH] = ACTIONS(1283), + [anon_sym_mod] = ACTIONS(1283), + [anon_sym_SLASH_SLASH] = ACTIONS(1283), + [anon_sym_PLUS] = ACTIONS(1283), + [anon_sym_bit_DASHshl] = ACTIONS(1283), + [anon_sym_bit_DASHshr] = ACTIONS(1283), + [anon_sym_EQ_EQ] = ACTIONS(1283), + [anon_sym_BANG_EQ] = ACTIONS(1283), + [anon_sym_LT2] = ACTIONS(1283), + [anon_sym_LT_EQ] = ACTIONS(1283), + [anon_sym_GT_EQ] = ACTIONS(1283), + [anon_sym_not_DASHin] = ACTIONS(1283), + [anon_sym_starts_DASHwith] = ACTIONS(1283), + [anon_sym_ends_DASHwith] = ACTIONS(1283), + [anon_sym_EQ_TILDE] = ACTIONS(1283), + [anon_sym_BANG_TILDE] = ACTIONS(1283), + [anon_sym_bit_DASHand] = ACTIONS(1283), + [anon_sym_bit_DASHxor] = ACTIONS(1283), + [anon_sym_bit_DASHor] = ACTIONS(1283), + [anon_sym_and] = ACTIONS(1283), + [anon_sym_xor] = ACTIONS(1283), + [anon_sym_or] = ACTIONS(1283), + [aux_sym__val_number_decimal_token1] = ACTIONS(1283), + [aux_sym__val_number_decimal_token2] = ACTIONS(1283), + [anon_sym_DOT2] = ACTIONS(1283), + [aux_sym__val_number_decimal_token3] = ACTIONS(1283), + [aux_sym__val_number_token1] = ACTIONS(1283), + [aux_sym__val_number_token2] = ACTIONS(1283), + [aux_sym__val_number_token3] = ACTIONS(1283), + [aux_sym__val_number_token4] = ACTIONS(1283), + [aux_sym__val_number_token5] = ACTIONS(1283), + [aux_sym__val_number_token6] = ACTIONS(1283), + [anon_sym_DQUOTE] = ACTIONS(1283), + [sym__str_single_quotes] = ACTIONS(1283), + [sym__str_back_ticks] = ACTIONS(1283), + [sym__entry_separator] = ACTIONS(1285), + [aux_sym__record_key_token2] = ACTIONS(1283), [anon_sym_POUND] = ACTIONS(113), }, [674] = { + [sym_pipeline] = STATE(2543), + [sym_pipeline_last] = STATE(9767), + [sym__ctrl_expression] = STATE(8658), + [sym_ctrl_do] = STATE(9613), + [sym_ctrl_if] = STATE(9613), + [sym_ctrl_match] = STATE(9613), + [sym_ctrl_try] = STATE(9613), + [sym_ctrl_return] = STATE(9613), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(9153), + [sym_where_command] = STATE(8524), + [sym__expression] = STATE(8524), + [sym_expr_unary] = STATE(5890), + [sym__expr_unary_minus] = STATE(5878), + [sym_expr_binary] = STATE(5890), + [sym__expr_binary_expression] = STATE(6380), + [sym_expr_parenthesized] = STATE(5154), + [sym_val_range] = STATE(8295), + [sym__value] = STATE(5890), + [sym_val_nothing] = STATE(5931), + [sym_val_bool] = STATE(5931), + [sym_val_variable] = STATE(5103), + [sym__var] = STATE(4428), + [sym_val_number] = STATE(5931), + [sym__val_number_decimal] = STATE(4371), + [sym__val_number] = STATE(5285), + [sym_val_duration] = STATE(5931), + [sym_val_filesize] = STATE(5931), + [sym_val_binary] = STATE(5931), + [sym_val_string] = STATE(5931), + [sym__str_double_quotes] = STATE(5888), + [sym_val_interpolated] = STATE(5931), + [sym__inter_single_quotes] = STATE(5935), + [sym__inter_double_quotes] = STATE(5940), + [sym_val_list] = STATE(5931), + [sym_val_record] = STATE(5931), + [sym_val_table] = STATE(5931), + [sym_val_closure] = STATE(5931), + [sym_command] = STATE(8524), [sym_comment] = STATE(674), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_RPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1486), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1480), - [anon_sym_PLUS_PLUS] = ACTIONS(1480), - [anon_sym_SLASH] = ACTIONS(1478), - [anon_sym_mod] = ACTIONS(1478), - [anon_sym_SLASH_SLASH] = ACTIONS(1478), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_bit_DASHshl] = ACTIONS(1488), - [anon_sym_bit_DASHshr] = ACTIONS(1488), - [anon_sym_EQ_EQ] = ACTIONS(1482), - [anon_sym_BANG_EQ] = ACTIONS(1482), - [anon_sym_LT2] = ACTIONS(1482), - [anon_sym_LT_EQ] = ACTIONS(1482), - [anon_sym_GT_EQ] = ACTIONS(1482), - [anon_sym_not_DASHin] = ACTIONS(1486), - [anon_sym_starts_DASHwith] = ACTIONS(1486), - [anon_sym_ends_DASHwith] = ACTIONS(1486), - [anon_sym_EQ_TILDE] = ACTIONS(1490), - [anon_sym_BANG_TILDE] = ACTIONS(1490), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), + [aux_sym_pipeline_repeat1] = STATE(766), + [sym_cmd_identifier] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(1528), + [anon_sym_DASH] = ACTIONS(39), + [anon_sym_break] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_match] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_DOT_DOT] = ACTIONS(59), + [anon_sym_try] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_where] = ACTIONS(75), + [anon_sym_not] = ACTIONS(77), + [anon_sym_DOT_DOT_EQ] = ACTIONS(79), + [anon_sym_DOT_DOT_LT] = ACTIONS(79), + [anon_sym_null] = ACTIONS(81), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [aux_sym__val_number_decimal_token1] = ACTIONS(85), + [aux_sym__val_number_decimal_token2] = ACTIONS(87), + [anon_sym_DOT2] = ACTIONS(89), + [aux_sym__val_number_decimal_token3] = ACTIONS(91), + [aux_sym__val_number_token1] = ACTIONS(93), + [aux_sym__val_number_token2] = ACTIONS(93), + [aux_sym__val_number_token3] = ACTIONS(93), + [aux_sym__val_number_token4] = ACTIONS(95), + [aux_sym__val_number_token5] = ACTIONS(93), + [aux_sym__val_number_token6] = ACTIONS(95), + [anon_sym_0b] = ACTIONS(97), + [anon_sym_0o] = ACTIONS(99), + [anon_sym_0x] = ACTIONS(99), + [sym_val_date] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym__str_single_quotes] = ACTIONS(105), + [sym__str_back_ticks] = ACTIONS(105), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(109), + [anon_sym_CARET] = ACTIONS(111), + [anon_sym_POUND] = ACTIONS(3), }, [675] = { [sym_comment] = STATE(675), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_RPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1486), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1480), - [anon_sym_PLUS_PLUS] = ACTIONS(1480), - [anon_sym_SLASH] = ACTIONS(1478), - [anon_sym_mod] = ACTIONS(1478), - [anon_sym_SLASH_SLASH] = ACTIONS(1478), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_bit_DASHshl] = ACTIONS(1488), - [anon_sym_bit_DASHshr] = ACTIONS(1488), - [anon_sym_EQ_EQ] = ACTIONS(1482), - [anon_sym_BANG_EQ] = ACTIONS(1482), - [anon_sym_LT2] = ACTIONS(1482), - [anon_sym_LT_EQ] = ACTIONS(1482), - [anon_sym_GT_EQ] = ACTIONS(1482), - [anon_sym_not_DASHin] = ACTIONS(1486), - [anon_sym_starts_DASHwith] = ACTIONS(1486), - [anon_sym_ends_DASHwith] = ACTIONS(1486), - [anon_sym_EQ_TILDE] = ACTIONS(1490), - [anon_sym_BANG_TILDE] = ACTIONS(1490), - [anon_sym_bit_DASHand] = ACTIONS(1492), - [anon_sym_bit_DASHxor] = ACTIONS(1496), - [anon_sym_bit_DASHor] = ACTIONS(1500), - [anon_sym_and] = ACTIONS(1502), - [anon_sym_xor] = ACTIONS(1504), - [anon_sym_or] = ACTIONS(1506), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_export] = ACTIONS(1179), + [anon_sym_alias] = ACTIONS(1179), + [anon_sym_let] = ACTIONS(1179), + [anon_sym_let_DASHenv] = ACTIONS(1179), + [anon_sym_mut] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [sym_cmd_identifier] = ACTIONS(1179), + [anon_sym_def] = ACTIONS(1179), + [anon_sym_export_DASHenv] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_use] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_error] = ACTIONS(1179), + [anon_sym_list] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1534), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1544), + [anon_sym_loop] = ACTIONS(1179), + [anon_sym_make] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_else] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1179), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_catch] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_source] = ACTIONS(1179), + [anon_sym_source_DASHenv] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), + [anon_sym_hide_DASHenv] = ACTIONS(1179), + [anon_sym_overlay] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_STAR_STAR] = ACTIONS(1538), + [anon_sym_PLUS_PLUS] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1536), + [anon_sym_mod] = ACTIONS(1536), + [anon_sym_SLASH_SLASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1534), + [anon_sym_bit_DASHshl] = ACTIONS(1546), + [anon_sym_bit_DASHshr] = ACTIONS(1546), + [anon_sym_EQ_EQ] = ACTIONS(1542), + [anon_sym_BANG_EQ] = ACTIONS(1542), + [anon_sym_LT2] = ACTIONS(1542), + [anon_sym_LT_EQ] = ACTIONS(1542), + [anon_sym_GT_EQ] = ACTIONS(1542), + [anon_sym_not_DASHin] = ACTIONS(1544), + [anon_sym_starts_DASHwith] = ACTIONS(1544), + [anon_sym_ends_DASHwith] = ACTIONS(1544), + [anon_sym_EQ_TILDE] = ACTIONS(1548), + [anon_sym_BANG_TILDE] = ACTIONS(1548), + [anon_sym_bit_DASHand] = ACTIONS(1550), + [anon_sym_bit_DASHxor] = ACTIONS(1552), + [anon_sym_bit_DASHor] = ACTIONS(1554), + [anon_sym_and] = ACTIONS(1556), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [sym__entry_separator] = ACTIONS(1181), + [aux_sym__record_key_token2] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, [676] = { [sym_comment] = STATE(676), - [ts_builtin_sym_end] = ACTIONS(1111), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_alias] = ACTIONS(1109), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_let_DASHenv] = ACTIONS(1109), - [anon_sym_mut] = ACTIONS(1109), - [anon_sym_const] = ACTIONS(1109), - [anon_sym_SEMI] = ACTIONS(1109), - [sym_cmd_identifier] = ACTIONS(1109), - [anon_sym_LF] = ACTIONS(1111), - [anon_sym_def] = ACTIONS(1109), - [anon_sym_export_DASHenv] = ACTIONS(1109), - [anon_sym_extern] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_use] = ACTIONS(1109), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_DOLLAR] = ACTIONS(1109), - [anon_sym_error] = ACTIONS(1109), - [anon_sym_GT] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_break] = ACTIONS(1109), - [anon_sym_continue] = ACTIONS(1109), - [anon_sym_for] = ACTIONS(1109), - [anon_sym_in] = ACTIONS(1109), - [anon_sym_loop] = ACTIONS(1109), - [anon_sym_while] = ACTIONS(1109), - [anon_sym_do] = ACTIONS(1109), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_DOT_DOT] = ACTIONS(1109), - [anon_sym_try] = ACTIONS(1109), - [anon_sym_return] = ACTIONS(1109), - [anon_sym_source] = ACTIONS(1109), - [anon_sym_source_DASHenv] = ACTIONS(1109), - [anon_sym_register] = ACTIONS(1109), - [anon_sym_hide] = ACTIONS(1109), - [anon_sym_hide_DASHenv] = ACTIONS(1109), - [anon_sym_overlay] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_where] = ACTIONS(1109), - [anon_sym_STAR_STAR] = ACTIONS(1109), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_SLASH] = ACTIONS(1109), - [anon_sym_mod] = ACTIONS(1109), - [anon_sym_SLASH_SLASH] = ACTIONS(1109), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_bit_DASHshl] = ACTIONS(1109), - [anon_sym_bit_DASHshr] = ACTIONS(1109), - [anon_sym_EQ_EQ] = ACTIONS(1109), - [anon_sym_BANG_EQ] = ACTIONS(1109), - [anon_sym_LT2] = ACTIONS(1109), - [anon_sym_LT_EQ] = ACTIONS(1109), - [anon_sym_GT_EQ] = ACTIONS(1109), - [anon_sym_not_DASHin] = ACTIONS(1109), - [anon_sym_starts_DASHwith] = ACTIONS(1109), - [anon_sym_ends_DASHwith] = ACTIONS(1109), - [anon_sym_EQ_TILDE] = ACTIONS(1109), - [anon_sym_BANG_TILDE] = ACTIONS(1109), - [anon_sym_bit_DASHand] = ACTIONS(1109), - [anon_sym_bit_DASHxor] = ACTIONS(1109), - [anon_sym_bit_DASHor] = ACTIONS(1109), - [anon_sym_and] = ACTIONS(1109), - [anon_sym_xor] = ACTIONS(1109), - [anon_sym_or] = ACTIONS(1109), - [anon_sym_not] = ACTIONS(1109), - [anon_sym_DOT] = ACTIONS(1109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1109), - [anon_sym_DOT_DOT_LT] = ACTIONS(1109), - [anon_sym_null] = ACTIONS(1109), - [anon_sym_true] = ACTIONS(1109), - [anon_sym_false] = ACTIONS(1109), - [aux_sym__val_number_decimal_token1] = ACTIONS(1109), - [aux_sym__val_number_decimal_token2] = ACTIONS(1109), - [anon_sym_DOT2] = ACTIONS(1109), - [aux_sym__val_number_decimal_token3] = ACTIONS(1109), - [aux_sym__val_number_token1] = ACTIONS(1109), - [aux_sym__val_number_token2] = ACTIONS(1109), - [aux_sym__val_number_token3] = ACTIONS(1109), - [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(1109), - [anon_sym_0o] = ACTIONS(1109), - [anon_sym_0x] = ACTIONS(1109), - [sym_val_date] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(1109), - [sym__str_single_quotes] = ACTIONS(1109), - [sym__str_back_ticks] = ACTIONS(1109), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1109), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1109), - [anon_sym_CARET] = ACTIONS(1109), + [anon_sym_export] = ACTIONS(1139), + [anon_sym_alias] = ACTIONS(1139), + [anon_sym_let] = ACTIONS(1139), + [anon_sym_let_DASHenv] = ACTIONS(1139), + [anon_sym_mut] = ACTIONS(1139), + [anon_sym_const] = ACTIONS(1139), + [sym_cmd_identifier] = ACTIONS(1139), + [anon_sym_def] = ACTIONS(1139), + [anon_sym_export_DASHenv] = ACTIONS(1139), + [anon_sym_extern] = ACTIONS(1139), + [anon_sym_module] = ACTIONS(1139), + [anon_sym_use] = ACTIONS(1139), + [anon_sym_LPAREN] = ACTIONS(1139), + [anon_sym_DOLLAR] = ACTIONS(1139), + [anon_sym_error] = ACTIONS(1139), + [anon_sym_list] = ACTIONS(1139), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_break] = ACTIONS(1139), + [anon_sym_continue] = ACTIONS(1139), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_in] = ACTIONS(1139), + [anon_sym_loop] = ACTIONS(1139), + [anon_sym_make] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1139), + [anon_sym_do] = ACTIONS(1139), + [anon_sym_if] = ACTIONS(1139), + [anon_sym_else] = ACTIONS(1139), + [anon_sym_match] = ACTIONS(1139), + [anon_sym_RBRACE] = ACTIONS(1139), + [anon_sym_try] = ACTIONS(1139), + [anon_sym_catch] = ACTIONS(1139), + [anon_sym_return] = ACTIONS(1139), + [anon_sym_source] = ACTIONS(1139), + [anon_sym_source_DASHenv] = ACTIONS(1139), + [anon_sym_register] = ACTIONS(1139), + [anon_sym_hide] = ACTIONS(1139), + [anon_sym_hide_DASHenv] = ACTIONS(1139), + [anon_sym_overlay] = ACTIONS(1139), + [anon_sym_new] = ACTIONS(1139), + [anon_sym_as] = ACTIONS(1139), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_STAR_STAR] = ACTIONS(1139), + [anon_sym_PLUS_PLUS] = ACTIONS(1139), + [anon_sym_SLASH] = ACTIONS(1139), + [anon_sym_mod] = ACTIONS(1139), + [anon_sym_SLASH_SLASH] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_bit_DASHshl] = ACTIONS(1139), + [anon_sym_bit_DASHshr] = ACTIONS(1139), + [anon_sym_EQ_EQ] = ACTIONS(1139), + [anon_sym_BANG_EQ] = ACTIONS(1139), + [anon_sym_LT2] = ACTIONS(1139), + [anon_sym_LT_EQ] = ACTIONS(1139), + [anon_sym_GT_EQ] = ACTIONS(1139), + [anon_sym_not_DASHin] = ACTIONS(1139), + [anon_sym_starts_DASHwith] = ACTIONS(1139), + [anon_sym_ends_DASHwith] = ACTIONS(1139), + [anon_sym_EQ_TILDE] = ACTIONS(1139), + [anon_sym_BANG_TILDE] = ACTIONS(1139), + [anon_sym_bit_DASHand] = ACTIONS(1139), + [anon_sym_bit_DASHxor] = ACTIONS(1139), + [anon_sym_bit_DASHor] = ACTIONS(1139), + [anon_sym_and] = ACTIONS(1139), + [anon_sym_xor] = ACTIONS(1139), + [anon_sym_or] = ACTIONS(1139), + [aux_sym__val_number_decimal_token1] = ACTIONS(1139), + [aux_sym__val_number_decimal_token2] = ACTIONS(1139), + [anon_sym_DOT2] = ACTIONS(1139), + [aux_sym__val_number_decimal_token3] = ACTIONS(1139), + [aux_sym__val_number_token1] = ACTIONS(1139), + [aux_sym__val_number_token2] = ACTIONS(1139), + [aux_sym__val_number_token3] = ACTIONS(1139), + [aux_sym__val_number_token4] = ACTIONS(1139), + [aux_sym__val_number_token5] = ACTIONS(1139), + [aux_sym__val_number_token6] = ACTIONS(1139), + [anon_sym_DQUOTE] = ACTIONS(1139), + [sym__str_single_quotes] = ACTIONS(1139), + [sym__str_back_ticks] = ACTIONS(1139), + [sym__entry_separator] = ACTIONS(1209), + [aux_sym__record_key_token2] = ACTIONS(1139), [anon_sym_POUND] = ACTIONS(113), }, [677] = { [sym_comment] = STATE(677), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_alias] = ACTIONS(1190), - [anon_sym_let] = ACTIONS(1190), - [anon_sym_let_DASHenv] = ACTIONS(1190), - [anon_sym_mut] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1190), - [anon_sym_SEMI] = ACTIONS(1190), - [sym_cmd_identifier] = ACTIONS(1190), - [anon_sym_LF] = ACTIONS(1192), - [anon_sym_def] = ACTIONS(1190), - [anon_sym_export_DASHenv] = ACTIONS(1190), - [anon_sym_extern] = ACTIONS(1190), - [anon_sym_module] = ACTIONS(1190), - [anon_sym_use] = ACTIONS(1190), - [anon_sym_LBRACK] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(1190), - [anon_sym_RPAREN] = ACTIONS(1190), - [anon_sym_DOLLAR] = ACTIONS(1190), - [anon_sym_error] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1190), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_in] = ACTIONS(1190), - [anon_sym_loop] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [anon_sym_do] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_match] = ACTIONS(1190), - [anon_sym_LBRACE] = ACTIONS(1190), - [anon_sym_RBRACE] = ACTIONS(1190), - [anon_sym_DOT_DOT] = ACTIONS(1190), - [anon_sym_try] = ACTIONS(1190), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_source] = ACTIONS(1190), - [anon_sym_source_DASHenv] = ACTIONS(1190), - [anon_sym_register] = ACTIONS(1190), - [anon_sym_hide] = ACTIONS(1190), - [anon_sym_hide_DASHenv] = ACTIONS(1190), - [anon_sym_overlay] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1190), - [anon_sym_where] = ACTIONS(1190), - [anon_sym_STAR_STAR] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1190), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_mod] = ACTIONS(1190), - [anon_sym_SLASH_SLASH] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_bit_DASHshl] = ACTIONS(1190), - [anon_sym_bit_DASHshr] = ACTIONS(1190), - [anon_sym_EQ_EQ] = ACTIONS(1190), - [anon_sym_BANG_EQ] = ACTIONS(1190), - [anon_sym_LT2] = ACTIONS(1190), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_not_DASHin] = ACTIONS(1190), - [anon_sym_starts_DASHwith] = ACTIONS(1190), - [anon_sym_ends_DASHwith] = ACTIONS(1190), - [anon_sym_EQ_TILDE] = ACTIONS(1190), - [anon_sym_BANG_TILDE] = ACTIONS(1190), - [anon_sym_bit_DASHand] = ACTIONS(1190), - [anon_sym_bit_DASHxor] = ACTIONS(1190), - [anon_sym_bit_DASHor] = ACTIONS(1190), - [anon_sym_and] = ACTIONS(1190), - [anon_sym_xor] = ACTIONS(1190), - [anon_sym_or] = ACTIONS(1190), - [anon_sym_not] = ACTIONS(1190), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1190), - [anon_sym_DOT_DOT_LT] = ACTIONS(1190), - [anon_sym_null] = ACTIONS(1190), - [anon_sym_true] = ACTIONS(1190), - [anon_sym_false] = ACTIONS(1190), - [aux_sym__val_number_decimal_token1] = ACTIONS(1190), - [aux_sym__val_number_decimal_token2] = ACTIONS(1190), - [anon_sym_DOT2] = ACTIONS(1190), - [aux_sym__val_number_decimal_token3] = ACTIONS(1190), - [aux_sym__val_number_token1] = ACTIONS(1190), - [aux_sym__val_number_token2] = ACTIONS(1190), - [aux_sym__val_number_token3] = ACTIONS(1190), - [aux_sym__val_number_token4] = ACTIONS(1190), - [aux_sym__val_number_token5] = ACTIONS(1190), - [aux_sym__val_number_token6] = ACTIONS(1190), - [anon_sym_0b] = ACTIONS(1190), - [anon_sym_0o] = ACTIONS(1190), - [anon_sym_0x] = ACTIONS(1190), - [sym_val_date] = ACTIONS(1190), - [anon_sym_DQUOTE] = ACTIONS(1190), - [sym__str_single_quotes] = ACTIONS(1190), - [sym__str_back_ticks] = ACTIONS(1190), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1190), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1190), + [anon_sym_export] = ACTIONS(1179), + [anon_sym_alias] = ACTIONS(1179), + [anon_sym_let] = ACTIONS(1179), + [anon_sym_let_DASHenv] = ACTIONS(1179), + [anon_sym_mut] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [sym_cmd_identifier] = ACTIONS(1179), + [anon_sym_def] = ACTIONS(1179), + [anon_sym_export_DASHenv] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_use] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_error] = ACTIONS(1179), + [anon_sym_list] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1534), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1544), + [anon_sym_loop] = ACTIONS(1179), + [anon_sym_make] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_else] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1179), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_catch] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_source] = ACTIONS(1179), + [anon_sym_source_DASHenv] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), + [anon_sym_hide_DASHenv] = ACTIONS(1179), + [anon_sym_overlay] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_STAR_STAR] = ACTIONS(1538), + [anon_sym_PLUS_PLUS] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1536), + [anon_sym_mod] = ACTIONS(1536), + [anon_sym_SLASH_SLASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1534), + [anon_sym_bit_DASHshl] = ACTIONS(1546), + [anon_sym_bit_DASHshr] = ACTIONS(1546), + [anon_sym_EQ_EQ] = ACTIONS(1542), + [anon_sym_BANG_EQ] = ACTIONS(1542), + [anon_sym_LT2] = ACTIONS(1542), + [anon_sym_LT_EQ] = ACTIONS(1542), + [anon_sym_GT_EQ] = ACTIONS(1542), + [anon_sym_not_DASHin] = ACTIONS(1544), + [anon_sym_starts_DASHwith] = ACTIONS(1544), + [anon_sym_ends_DASHwith] = ACTIONS(1544), + [anon_sym_EQ_TILDE] = ACTIONS(1548), + [anon_sym_BANG_TILDE] = ACTIONS(1548), + [anon_sym_bit_DASHand] = ACTIONS(1550), + [anon_sym_bit_DASHxor] = ACTIONS(1552), + [anon_sym_bit_DASHor] = ACTIONS(1554), + [anon_sym_and] = ACTIONS(1556), + [anon_sym_xor] = ACTIONS(1558), + [anon_sym_or] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [sym__entry_separator] = ACTIONS(1181), + [aux_sym__record_key_token2] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, [678] = { [sym_comment] = STATE(678), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_list] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_make] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_else] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_catch] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [sym__entry_separator] = ACTIONS(1173), + [aux_sym__record_key_token2] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, [679] = { [sym_comment] = STATE(679), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), + [anon_sym_export] = ACTIONS(1211), + [anon_sym_alias] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(1211), + [anon_sym_let_DASHenv] = ACTIONS(1211), + [anon_sym_mut] = ACTIONS(1211), + [anon_sym_const] = ACTIONS(1211), + [sym_cmd_identifier] = ACTIONS(1211), + [anon_sym_def] = ACTIONS(1211), + [anon_sym_export_DASHenv] = ACTIONS(1211), + [anon_sym_extern] = ACTIONS(1211), + [anon_sym_module] = ACTIONS(1211), + [anon_sym_use] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(1211), + [anon_sym_DOLLAR] = ACTIONS(1211), + [anon_sym_error] = ACTIONS(1211), + [anon_sym_list] = ACTIONS(1211), + [anon_sym_GT] = ACTIONS(1211), + [anon_sym_DASH] = ACTIONS(1211), + [anon_sym_break] = ACTIONS(1211), + [anon_sym_continue] = ACTIONS(1211), + [anon_sym_for] = ACTIONS(1211), + [anon_sym_in] = ACTIONS(1211), + [anon_sym_loop] = ACTIONS(1211), + [anon_sym_make] = ACTIONS(1211), + [anon_sym_while] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(1211), + [anon_sym_if] = ACTIONS(1211), + [anon_sym_else] = ACTIONS(1211), + [anon_sym_match] = ACTIONS(1211), + [anon_sym_RBRACE] = ACTIONS(1211), + [anon_sym_try] = ACTIONS(1211), + [anon_sym_catch] = ACTIONS(1211), + [anon_sym_return] = ACTIONS(1211), + [anon_sym_source] = ACTIONS(1211), + [anon_sym_source_DASHenv] = ACTIONS(1211), + [anon_sym_register] = ACTIONS(1211), + [anon_sym_hide] = ACTIONS(1211), + [anon_sym_hide_DASHenv] = ACTIONS(1211), + [anon_sym_overlay] = ACTIONS(1211), + [anon_sym_new] = ACTIONS(1211), + [anon_sym_as] = ACTIONS(1211), + [anon_sym_STAR] = ACTIONS(1211), + [anon_sym_STAR_STAR] = ACTIONS(1211), + [anon_sym_PLUS_PLUS] = ACTIONS(1211), + [anon_sym_SLASH] = ACTIONS(1211), + [anon_sym_mod] = ACTIONS(1211), + [anon_sym_SLASH_SLASH] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1211), + [anon_sym_bit_DASHshl] = ACTIONS(1211), + [anon_sym_bit_DASHshr] = ACTIONS(1211), + [anon_sym_EQ_EQ] = ACTIONS(1211), + [anon_sym_BANG_EQ] = ACTIONS(1211), + [anon_sym_LT2] = ACTIONS(1211), + [anon_sym_LT_EQ] = ACTIONS(1211), + [anon_sym_GT_EQ] = ACTIONS(1211), + [anon_sym_not_DASHin] = ACTIONS(1211), + [anon_sym_starts_DASHwith] = ACTIONS(1211), + [anon_sym_ends_DASHwith] = ACTIONS(1211), + [anon_sym_EQ_TILDE] = ACTIONS(1211), + [anon_sym_BANG_TILDE] = ACTIONS(1211), + [anon_sym_bit_DASHand] = ACTIONS(1211), + [anon_sym_bit_DASHxor] = ACTIONS(1211), + [anon_sym_bit_DASHor] = ACTIONS(1211), + [anon_sym_and] = ACTIONS(1211), + [anon_sym_xor] = ACTIONS(1211), + [anon_sym_or] = ACTIONS(1211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1211), + [aux_sym__val_number_decimal_token2] = ACTIONS(1211), + [anon_sym_DOT2] = ACTIONS(1211), + [aux_sym__val_number_decimal_token3] = ACTIONS(1211), + [aux_sym__val_number_token1] = ACTIONS(1211), + [aux_sym__val_number_token2] = ACTIONS(1211), + [aux_sym__val_number_token3] = ACTIONS(1211), + [aux_sym__val_number_token4] = ACTIONS(1211), + [aux_sym__val_number_token5] = ACTIONS(1211), + [aux_sym__val_number_token6] = ACTIONS(1211), + [anon_sym_DQUOTE] = ACTIONS(1211), + [sym__str_single_quotes] = ACTIONS(1211), + [sym__str_back_ticks] = ACTIONS(1211), + [sym__entry_separator] = ACTIONS(1213), + [aux_sym__record_key_token2] = ACTIONS(1211), [anon_sym_POUND] = ACTIONS(113), }, [680] = { [sym_comment] = STATE(680), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_RPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1480), - [anon_sym_PLUS_PLUS] = ACTIONS(1480), - [anon_sym_SLASH] = ACTIONS(1478), - [anon_sym_mod] = ACTIONS(1478), - [anon_sym_SLASH_SLASH] = ACTIONS(1478), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_bit_DASHshl] = ACTIONS(1376), - [anon_sym_bit_DASHshr] = ACTIONS(1376), - [anon_sym_EQ_EQ] = ACTIONS(1376), - [anon_sym_BANG_EQ] = ACTIONS(1376), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1376), - [anon_sym_GT_EQ] = ACTIONS(1376), - [anon_sym_not_DASHin] = ACTIONS(1376), - [anon_sym_starts_DASHwith] = ACTIONS(1376), - [anon_sym_ends_DASHwith] = ACTIONS(1376), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_export] = ACTIONS(1179), + [anon_sym_alias] = ACTIONS(1179), + [anon_sym_let] = ACTIONS(1179), + [anon_sym_let_DASHenv] = ACTIONS(1179), + [anon_sym_mut] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [sym_cmd_identifier] = ACTIONS(1179), + [anon_sym_def] = ACTIONS(1179), + [anon_sym_export_DASHenv] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_use] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_error] = ACTIONS(1179), + [anon_sym_list] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1534), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1544), + [anon_sym_loop] = ACTIONS(1179), + [anon_sym_make] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_else] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1179), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_catch] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_source] = ACTIONS(1179), + [anon_sym_source_DASHenv] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), + [anon_sym_hide_DASHenv] = ACTIONS(1179), + [anon_sym_overlay] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_STAR_STAR] = ACTIONS(1538), + [anon_sym_PLUS_PLUS] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1536), + [anon_sym_mod] = ACTIONS(1536), + [anon_sym_SLASH_SLASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1534), + [anon_sym_bit_DASHshl] = ACTIONS(1546), + [anon_sym_bit_DASHshr] = ACTIONS(1546), + [anon_sym_EQ_EQ] = ACTIONS(1542), + [anon_sym_BANG_EQ] = ACTIONS(1542), + [anon_sym_LT2] = ACTIONS(1542), + [anon_sym_LT_EQ] = ACTIONS(1542), + [anon_sym_GT_EQ] = ACTIONS(1542), + [anon_sym_not_DASHin] = ACTIONS(1544), + [anon_sym_starts_DASHwith] = ACTIONS(1544), + [anon_sym_ends_DASHwith] = ACTIONS(1544), + [anon_sym_EQ_TILDE] = ACTIONS(1548), + [anon_sym_BANG_TILDE] = ACTIONS(1548), + [anon_sym_bit_DASHand] = ACTIONS(1550), + [anon_sym_bit_DASHxor] = ACTIONS(1552), + [anon_sym_bit_DASHor] = ACTIONS(1554), + [anon_sym_and] = ACTIONS(1556), + [anon_sym_xor] = ACTIONS(1558), + [anon_sym_or] = ACTIONS(1560), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [sym__entry_separator] = ACTIONS(1181), + [aux_sym__record_key_token2] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, [681] = { [sym_comment] = STATE(681), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_list] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_make] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_else] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_catch] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [sym__entry_separator] = ACTIONS(1173), + [aux_sym__record_key_token2] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, [682] = { [sym_comment] = STATE(682), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), + [anon_sym_export] = ACTIONS(1215), + [anon_sym_alias] = ACTIONS(1215), + [anon_sym_let] = ACTIONS(1215), + [anon_sym_let_DASHenv] = ACTIONS(1215), + [anon_sym_mut] = ACTIONS(1215), + [anon_sym_const] = ACTIONS(1215), + [sym_cmd_identifier] = ACTIONS(1215), + [anon_sym_def] = ACTIONS(1215), + [anon_sym_export_DASHenv] = ACTIONS(1215), + [anon_sym_extern] = ACTIONS(1215), + [anon_sym_module] = ACTIONS(1215), + [anon_sym_use] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1215), + [anon_sym_DOLLAR] = ACTIONS(1215), + [anon_sym_error] = ACTIONS(1215), + [anon_sym_list] = ACTIONS(1215), + [anon_sym_GT] = ACTIONS(1215), + [anon_sym_DASH] = ACTIONS(1215), + [anon_sym_break] = ACTIONS(1215), + [anon_sym_continue] = ACTIONS(1215), + [anon_sym_for] = ACTIONS(1215), + [anon_sym_in] = ACTIONS(1215), + [anon_sym_loop] = ACTIONS(1215), + [anon_sym_make] = ACTIONS(1215), + [anon_sym_while] = ACTIONS(1215), + [anon_sym_do] = ACTIONS(1215), + [anon_sym_if] = ACTIONS(1215), + [anon_sym_else] = ACTIONS(1215), + [anon_sym_match] = ACTIONS(1215), + [anon_sym_RBRACE] = ACTIONS(1215), + [anon_sym_try] = ACTIONS(1215), + [anon_sym_catch] = ACTIONS(1215), + [anon_sym_return] = ACTIONS(1215), + [anon_sym_source] = ACTIONS(1215), + [anon_sym_source_DASHenv] = ACTIONS(1215), + [anon_sym_register] = ACTIONS(1215), + [anon_sym_hide] = ACTIONS(1215), + [anon_sym_hide_DASHenv] = ACTIONS(1215), + [anon_sym_overlay] = ACTIONS(1215), + [anon_sym_new] = ACTIONS(1215), + [anon_sym_as] = ACTIONS(1215), + [anon_sym_STAR] = ACTIONS(1215), + [anon_sym_STAR_STAR] = ACTIONS(1215), + [anon_sym_PLUS_PLUS] = ACTIONS(1215), + [anon_sym_SLASH] = ACTIONS(1215), + [anon_sym_mod] = ACTIONS(1215), + [anon_sym_SLASH_SLASH] = ACTIONS(1215), + [anon_sym_PLUS] = ACTIONS(1215), + [anon_sym_bit_DASHshl] = ACTIONS(1215), + [anon_sym_bit_DASHshr] = ACTIONS(1215), + [anon_sym_EQ_EQ] = ACTIONS(1215), + [anon_sym_BANG_EQ] = ACTIONS(1215), + [anon_sym_LT2] = ACTIONS(1215), + [anon_sym_LT_EQ] = ACTIONS(1215), + [anon_sym_GT_EQ] = ACTIONS(1215), + [anon_sym_not_DASHin] = ACTIONS(1215), + [anon_sym_starts_DASHwith] = ACTIONS(1215), + [anon_sym_ends_DASHwith] = ACTIONS(1215), + [anon_sym_EQ_TILDE] = ACTIONS(1215), + [anon_sym_BANG_TILDE] = ACTIONS(1215), + [anon_sym_bit_DASHand] = ACTIONS(1215), + [anon_sym_bit_DASHxor] = ACTIONS(1215), + [anon_sym_bit_DASHor] = ACTIONS(1215), + [anon_sym_and] = ACTIONS(1215), + [anon_sym_xor] = ACTIONS(1215), + [anon_sym_or] = ACTIONS(1215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1215), + [aux_sym__val_number_decimal_token2] = ACTIONS(1215), + [anon_sym_DOT2] = ACTIONS(1215), + [aux_sym__val_number_decimal_token3] = ACTIONS(1215), + [aux_sym__val_number_token1] = ACTIONS(1215), + [aux_sym__val_number_token2] = ACTIONS(1215), + [aux_sym__val_number_token3] = ACTIONS(1215), + [aux_sym__val_number_token4] = ACTIONS(1215), + [aux_sym__val_number_token5] = ACTIONS(1215), + [aux_sym__val_number_token6] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1215), + [sym__str_single_quotes] = ACTIONS(1215), + [sym__str_back_ticks] = ACTIONS(1215), + [sym__entry_separator] = ACTIONS(1217), + [aux_sym__record_key_token2] = ACTIONS(1215), [anon_sym_POUND] = ACTIONS(113), }, [683] = { [sym_comment] = STATE(683), - [anon_sym_export] = ACTIONS(1298), - [anon_sym_alias] = ACTIONS(1298), - [anon_sym_let] = ACTIONS(1298), - [anon_sym_let_DASHenv] = ACTIONS(1298), - [anon_sym_mut] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1298), - [sym_cmd_identifier] = ACTIONS(1298), - [anon_sym_LF] = ACTIONS(1300), - [anon_sym_def] = ACTIONS(1298), - [anon_sym_export_DASHenv] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_module] = ACTIONS(1298), - [anon_sym_use] = ACTIONS(1298), - [anon_sym_LBRACK] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1298), - [anon_sym_RPAREN] = ACTIONS(1298), - [anon_sym_DOLLAR] = ACTIONS(1298), - [anon_sym_error] = ACTIONS(1298), - [anon_sym_GT] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_in] = ACTIONS(1298), - [anon_sym_loop] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_match] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1298), - [anon_sym_DOT_DOT] = ACTIONS(1298), - [anon_sym_try] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_source] = ACTIONS(1298), - [anon_sym_source_DASHenv] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_hide] = ACTIONS(1298), - [anon_sym_hide_DASHenv] = ACTIONS(1298), - [anon_sym_overlay] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_where] = ACTIONS(1298), - [anon_sym_STAR_STAR] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1298), - [anon_sym_SLASH] = ACTIONS(1298), - [anon_sym_mod] = ACTIONS(1298), - [anon_sym_SLASH_SLASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_bit_DASHshl] = ACTIONS(1298), - [anon_sym_bit_DASHshr] = ACTIONS(1298), - [anon_sym_EQ_EQ] = ACTIONS(1298), - [anon_sym_BANG_EQ] = ACTIONS(1298), - [anon_sym_LT2] = ACTIONS(1298), - [anon_sym_LT_EQ] = ACTIONS(1298), - [anon_sym_GT_EQ] = ACTIONS(1298), - [anon_sym_not_DASHin] = ACTIONS(1298), - [anon_sym_starts_DASHwith] = ACTIONS(1298), - [anon_sym_ends_DASHwith] = ACTIONS(1298), - [anon_sym_EQ_TILDE] = ACTIONS(1298), - [anon_sym_BANG_TILDE] = ACTIONS(1298), - [anon_sym_bit_DASHand] = ACTIONS(1298), - [anon_sym_bit_DASHxor] = ACTIONS(1298), - [anon_sym_bit_DASHor] = ACTIONS(1298), - [anon_sym_and] = ACTIONS(1298), - [anon_sym_xor] = ACTIONS(1298), - [anon_sym_or] = ACTIONS(1298), - [anon_sym_not] = ACTIONS(1298), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1298), - [anon_sym_DOT_DOT_LT] = ACTIONS(1298), - [anon_sym_null] = ACTIONS(1298), - [anon_sym_true] = ACTIONS(1298), - [anon_sym_false] = ACTIONS(1298), - [aux_sym__val_number_decimal_token1] = ACTIONS(1298), - [aux_sym__val_number_decimal_token2] = ACTIONS(1298), - [anon_sym_DOT2] = ACTIONS(1298), - [aux_sym__val_number_decimal_token3] = 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(1298), - [aux_sym__val_number_token5] = ACTIONS(1298), - [aux_sym__val_number_token6] = ACTIONS(1298), - [anon_sym_0b] = ACTIONS(1298), - [anon_sym_0o] = ACTIONS(1298), - [anon_sym_0x] = ACTIONS(1298), - [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), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_alias] = ACTIONS(1159), + [anon_sym_let] = ACTIONS(1159), + [anon_sym_let_DASHenv] = ACTIONS(1159), + [anon_sym_mut] = ACTIONS(1159), + [anon_sym_const] = ACTIONS(1159), + [sym_cmd_identifier] = ACTIONS(1159), + [anon_sym_def] = ACTIONS(1159), + [anon_sym_export_DASHenv] = ACTIONS(1159), + [anon_sym_extern] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_use] = ACTIONS(1159), + [anon_sym_LPAREN] = ACTIONS(1159), + [anon_sym_DOLLAR] = ACTIONS(1159), + [anon_sym_error] = ACTIONS(1159), + [anon_sym_list] = ACTIONS(1159), + [anon_sym_GT] = ACTIONS(1159), + [anon_sym_DASH] = ACTIONS(1159), + [anon_sym_break] = ACTIONS(1159), + [anon_sym_continue] = ACTIONS(1159), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_in] = ACTIONS(1159), + [anon_sym_loop] = ACTIONS(1159), + [anon_sym_make] = ACTIONS(1159), + [anon_sym_while] = ACTIONS(1159), + [anon_sym_do] = ACTIONS(1159), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_else] = ACTIONS(1159), + [anon_sym_match] = ACTIONS(1159), + [anon_sym_RBRACE] = ACTIONS(1159), + [anon_sym_try] = ACTIONS(1159), + [anon_sym_catch] = ACTIONS(1159), + [anon_sym_return] = ACTIONS(1159), + [anon_sym_source] = ACTIONS(1159), + [anon_sym_source_DASHenv] = ACTIONS(1159), + [anon_sym_register] = ACTIONS(1159), + [anon_sym_hide] = ACTIONS(1159), + [anon_sym_hide_DASHenv] = ACTIONS(1159), + [anon_sym_overlay] = ACTIONS(1159), + [anon_sym_new] = ACTIONS(1159), + [anon_sym_as] = ACTIONS(1159), + [anon_sym_STAR] = ACTIONS(1159), + [anon_sym_STAR_STAR] = ACTIONS(1159), + [anon_sym_PLUS_PLUS] = ACTIONS(1159), + [anon_sym_SLASH] = ACTIONS(1159), + [anon_sym_mod] = ACTIONS(1159), + [anon_sym_SLASH_SLASH] = ACTIONS(1159), + [anon_sym_PLUS] = ACTIONS(1159), + [anon_sym_bit_DASHshl] = ACTIONS(1159), + [anon_sym_bit_DASHshr] = ACTIONS(1159), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_LT2] = ACTIONS(1159), + [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_not_DASHin] = ACTIONS(1159), + [anon_sym_starts_DASHwith] = ACTIONS(1159), + [anon_sym_ends_DASHwith] = ACTIONS(1159), + [anon_sym_EQ_TILDE] = ACTIONS(1159), + [anon_sym_BANG_TILDE] = ACTIONS(1159), + [anon_sym_bit_DASHand] = ACTIONS(1159), + [anon_sym_bit_DASHxor] = ACTIONS(1159), + [anon_sym_bit_DASHor] = ACTIONS(1159), + [anon_sym_and] = ACTIONS(1159), + [anon_sym_xor] = ACTIONS(1159), + [anon_sym_or] = ACTIONS(1159), + [aux_sym__val_number_decimal_token1] = ACTIONS(1159), + [aux_sym__val_number_decimal_token2] = ACTIONS(1159), + [anon_sym_DOT2] = ACTIONS(1159), + [aux_sym__val_number_decimal_token3] = ACTIONS(1159), + [aux_sym__val_number_token1] = ACTIONS(1159), + [aux_sym__val_number_token2] = ACTIONS(1159), + [aux_sym__val_number_token3] = ACTIONS(1159), + [aux_sym__val_number_token4] = ACTIONS(1159), + [aux_sym__val_number_token5] = ACTIONS(1159), + [aux_sym__val_number_token6] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(1159), + [sym__str_single_quotes] = ACTIONS(1159), + [sym__str_back_ticks] = ACTIONS(1159), + [sym__entry_separator] = ACTIONS(1161), + [aux_sym__record_key_token2] = ACTIONS(1159), [anon_sym_POUND] = ACTIONS(113), }, [684] = { [sym_comment] = STATE(684), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_RPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1486), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1480), - [anon_sym_PLUS_PLUS] = ACTIONS(1480), - [anon_sym_SLASH] = ACTIONS(1478), - [anon_sym_mod] = ACTIONS(1478), - [anon_sym_SLASH_SLASH] = ACTIONS(1478), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_bit_DASHshl] = ACTIONS(1488), - [anon_sym_bit_DASHshr] = ACTIONS(1488), - [anon_sym_EQ_EQ] = ACTIONS(1482), - [anon_sym_BANG_EQ] = ACTIONS(1482), - [anon_sym_LT2] = ACTIONS(1482), - [anon_sym_LT_EQ] = ACTIONS(1482), - [anon_sym_GT_EQ] = ACTIONS(1482), - [anon_sym_not_DASHin] = ACTIONS(1486), - [anon_sym_starts_DASHwith] = ACTIONS(1486), - [anon_sym_ends_DASHwith] = ACTIONS(1486), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_list] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_make] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_else] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_catch] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [sym__entry_separator] = ACTIONS(1173), + [aux_sym__record_key_token2] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, [685] = { [sym_comment] = STATE(685), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_alias] = ACTIONS(1372), - [anon_sym_let] = ACTIONS(1372), - [anon_sym_let_DASHenv] = ACTIONS(1372), - [anon_sym_mut] = ACTIONS(1372), - [anon_sym_const] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1372), - [sym_cmd_identifier] = ACTIONS(1372), - [anon_sym_LF] = ACTIONS(1374), - [anon_sym_def] = ACTIONS(1372), - [anon_sym_export_DASHenv] = ACTIONS(1372), - [anon_sym_extern] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_use] = ACTIONS(1372), - [anon_sym_LBRACK] = ACTIONS(1372), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_RPAREN] = ACTIONS(1372), - [anon_sym_DOLLAR] = ACTIONS(1372), - [anon_sym_error] = ACTIONS(1372), - [anon_sym_GT] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1372), - [anon_sym_break] = ACTIONS(1372), - [anon_sym_continue] = ACTIONS(1372), - [anon_sym_for] = ACTIONS(1372), - [anon_sym_in] = ACTIONS(1372), - [anon_sym_loop] = ACTIONS(1372), - [anon_sym_while] = ACTIONS(1372), - [anon_sym_do] = ACTIONS(1372), - [anon_sym_if] = ACTIONS(1372), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_RBRACE] = ACTIONS(1372), - [anon_sym_DOT_DOT] = ACTIONS(1372), - [anon_sym_try] = ACTIONS(1372), - [anon_sym_return] = ACTIONS(1372), - [anon_sym_source] = ACTIONS(1372), - [anon_sym_source_DASHenv] = ACTIONS(1372), - [anon_sym_register] = ACTIONS(1372), - [anon_sym_hide] = ACTIONS(1372), - [anon_sym_hide_DASHenv] = ACTIONS(1372), - [anon_sym_overlay] = ACTIONS(1372), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_where] = ACTIONS(1372), - [anon_sym_STAR_STAR] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_SLASH] = ACTIONS(1372), - [anon_sym_mod] = ACTIONS(1372), - [anon_sym_SLASH_SLASH] = ACTIONS(1372), - [anon_sym_PLUS] = ACTIONS(1372), - [anon_sym_bit_DASHshl] = ACTIONS(1372), - [anon_sym_bit_DASHshr] = ACTIONS(1372), - [anon_sym_EQ_EQ] = ACTIONS(1372), - [anon_sym_BANG_EQ] = ACTIONS(1372), - [anon_sym_LT2] = ACTIONS(1372), - [anon_sym_LT_EQ] = ACTIONS(1372), - [anon_sym_GT_EQ] = ACTIONS(1372), - [anon_sym_not_DASHin] = ACTIONS(1372), - [anon_sym_starts_DASHwith] = ACTIONS(1372), - [anon_sym_ends_DASHwith] = ACTIONS(1372), - [anon_sym_EQ_TILDE] = ACTIONS(1372), - [anon_sym_BANG_TILDE] = ACTIONS(1372), - [anon_sym_bit_DASHand] = ACTIONS(1372), - [anon_sym_bit_DASHxor] = ACTIONS(1372), - [anon_sym_bit_DASHor] = ACTIONS(1372), - [anon_sym_and] = ACTIONS(1372), - [anon_sym_xor] = ACTIONS(1372), - [anon_sym_or] = ACTIONS(1372), - [anon_sym_not] = ACTIONS(1372), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1372), - [anon_sym_DOT_DOT_LT] = ACTIONS(1372), - [anon_sym_null] = ACTIONS(1372), - [anon_sym_true] = ACTIONS(1372), - [anon_sym_false] = ACTIONS(1372), - [aux_sym__val_number_decimal_token1] = ACTIONS(1372), - [aux_sym__val_number_decimal_token2] = ACTIONS(1372), - [anon_sym_DOT2] = ACTIONS(1372), - [aux_sym__val_number_decimal_token3] = ACTIONS(1372), - [aux_sym__val_number_token1] = ACTIONS(1372), - [aux_sym__val_number_token2] = ACTIONS(1372), - [aux_sym__val_number_token3] = ACTIONS(1372), - [aux_sym__val_number_token4] = ACTIONS(1372), - [aux_sym__val_number_token5] = ACTIONS(1372), - [aux_sym__val_number_token6] = ACTIONS(1372), - [anon_sym_0b] = ACTIONS(1372), - [anon_sym_0o] = ACTIONS(1372), - [anon_sym_0x] = ACTIONS(1372), - [sym_val_date] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [sym__str_single_quotes] = ACTIONS(1372), - [sym__str_back_ticks] = ACTIONS(1372), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1372), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1372), - [anon_sym_CARET] = ACTIONS(1372), + [anon_sym_export] = ACTIONS(1179), + [anon_sym_alias] = ACTIONS(1179), + [anon_sym_let] = ACTIONS(1179), + [anon_sym_let_DASHenv] = ACTIONS(1179), + [anon_sym_mut] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [sym_cmd_identifier] = ACTIONS(1179), + [anon_sym_def] = ACTIONS(1179), + [anon_sym_export_DASHenv] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_use] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_error] = ACTIONS(1179), + [anon_sym_list] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1534), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1179), + [anon_sym_loop] = ACTIONS(1179), + [anon_sym_make] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_else] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1179), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_catch] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_source] = ACTIONS(1179), + [anon_sym_source_DASHenv] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), + [anon_sym_hide_DASHenv] = ACTIONS(1179), + [anon_sym_overlay] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_STAR_STAR] = ACTIONS(1538), + [anon_sym_PLUS_PLUS] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1536), + [anon_sym_mod] = ACTIONS(1536), + [anon_sym_SLASH_SLASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1534), + [anon_sym_bit_DASHshl] = ACTIONS(1546), + [anon_sym_bit_DASHshr] = ACTIONS(1546), + [anon_sym_EQ_EQ] = ACTIONS(1542), + [anon_sym_BANG_EQ] = ACTIONS(1542), + [anon_sym_LT2] = ACTIONS(1542), + [anon_sym_LT_EQ] = ACTIONS(1542), + [anon_sym_GT_EQ] = ACTIONS(1542), + [anon_sym_not_DASHin] = ACTIONS(1179), + [anon_sym_starts_DASHwith] = ACTIONS(1179), + [anon_sym_ends_DASHwith] = ACTIONS(1179), + [anon_sym_EQ_TILDE] = ACTIONS(1179), + [anon_sym_BANG_TILDE] = ACTIONS(1179), + [anon_sym_bit_DASHand] = ACTIONS(1179), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [sym__entry_separator] = ACTIONS(1181), + [aux_sym__record_key_token2] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, [686] = { + [sym_pipeline] = STATE(2600), + [sym_pipeline_last] = STATE(9741), + [sym__ctrl_expression] = STATE(8658), + [sym_ctrl_do] = STATE(9613), + [sym_ctrl_if] = STATE(9613), + [sym_ctrl_match] = STATE(9613), + [sym_ctrl_try] = STATE(9613), + [sym_ctrl_return] = STATE(9613), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(9153), + [sym_where_command] = STATE(8524), + [sym__expression] = STATE(8524), + [sym_expr_unary] = STATE(5890), + [sym__expr_unary_minus] = STATE(5878), + [sym_expr_binary] = STATE(5890), + [sym__expr_binary_expression] = STATE(6380), + [sym_expr_parenthesized] = STATE(5154), + [sym_val_range] = STATE(8295), + [sym__value] = STATE(5890), + [sym_val_nothing] = STATE(5931), + [sym_val_bool] = STATE(5931), + [sym_val_variable] = STATE(5103), + [sym__var] = STATE(4428), + [sym_val_number] = STATE(5931), + [sym__val_number_decimal] = STATE(4371), + [sym__val_number] = STATE(5285), + [sym_val_duration] = STATE(5931), + [sym_val_filesize] = STATE(5931), + [sym_val_binary] = STATE(5931), + [sym_val_string] = STATE(5931), + [sym__str_double_quotes] = STATE(5888), + [sym_val_interpolated] = STATE(5931), + [sym__inter_single_quotes] = STATE(5935), + [sym__inter_double_quotes] = STATE(5940), + [sym_val_list] = STATE(5931), + [sym_val_record] = STATE(5931), + [sym_val_table] = STATE(5931), + [sym_val_closure] = STATE(5931), + [sym_command] = STATE(8524), [sym_comment] = STATE(686), - [ts_builtin_sym_end] = ACTIONS(1378), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(1510), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1512), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1514), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1516), - [anon_sym_PLUS_PLUS] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(1514), - [anon_sym_mod] = ACTIONS(1514), - [anon_sym_SLASH_SLASH] = ACTIONS(1514), - [anon_sym_PLUS] = ACTIONS(1510), - [anon_sym_bit_DASHshl] = ACTIONS(1518), - [anon_sym_bit_DASHshr] = ACTIONS(1518), - [anon_sym_EQ_EQ] = ACTIONS(1508), - [anon_sym_BANG_EQ] = ACTIONS(1508), - [anon_sym_LT2] = ACTIONS(1508), - [anon_sym_LT_EQ] = ACTIONS(1508), - [anon_sym_GT_EQ] = ACTIONS(1508), - [anon_sym_not_DASHin] = ACTIONS(1512), - [anon_sym_starts_DASHwith] = ACTIONS(1512), - [anon_sym_ends_DASHwith] = ACTIONS(1512), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), - }, - [687] = { - [sym_comment] = STATE(687), - [ts_builtin_sym_end] = ACTIONS(1322), - [anon_sym_export] = ACTIONS(1320), - [anon_sym_alias] = ACTIONS(1320), - [anon_sym_let] = ACTIONS(1320), - [anon_sym_let_DASHenv] = ACTIONS(1320), - [anon_sym_mut] = ACTIONS(1320), - [anon_sym_const] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [sym_cmd_identifier] = ACTIONS(1320), - [anon_sym_LF] = ACTIONS(1322), - [anon_sym_def] = ACTIONS(1320), - [anon_sym_export_DASHenv] = ACTIONS(1320), - [anon_sym_extern] = ACTIONS(1320), - [anon_sym_module] = ACTIONS(1320), - [anon_sym_use] = ACTIONS(1320), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_LPAREN] = ACTIONS(1320), - [anon_sym_DOLLAR] = ACTIONS(1320), - [anon_sym_error] = ACTIONS(1320), - [anon_sym_GT] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1320), - [anon_sym_continue] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_in] = ACTIONS(1320), - [anon_sym_loop] = ACTIONS(1320), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_do] = ACTIONS(1320), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_match] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_DOT_DOT] = ACTIONS(1320), - [anon_sym_try] = ACTIONS(1320), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_source] = ACTIONS(1320), - [anon_sym_source_DASHenv] = ACTIONS(1320), - [anon_sym_register] = ACTIONS(1320), - [anon_sym_hide] = ACTIONS(1320), - [anon_sym_hide_DASHenv] = ACTIONS(1320), - [anon_sym_overlay] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_where] = ACTIONS(1320), - [anon_sym_STAR_STAR] = ACTIONS(1320), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_SLASH] = ACTIONS(1320), - [anon_sym_mod] = ACTIONS(1320), - [anon_sym_SLASH_SLASH] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1320), - [anon_sym_bit_DASHshl] = ACTIONS(1320), - [anon_sym_bit_DASHshr] = ACTIONS(1320), - [anon_sym_EQ_EQ] = ACTIONS(1320), - [anon_sym_BANG_EQ] = ACTIONS(1320), - [anon_sym_LT2] = ACTIONS(1320), - [anon_sym_LT_EQ] = ACTIONS(1320), - [anon_sym_GT_EQ] = ACTIONS(1320), - [anon_sym_not_DASHin] = ACTIONS(1320), - [anon_sym_starts_DASHwith] = ACTIONS(1320), - [anon_sym_ends_DASHwith] = ACTIONS(1320), - [anon_sym_EQ_TILDE] = ACTIONS(1320), - [anon_sym_BANG_TILDE] = ACTIONS(1320), - [anon_sym_bit_DASHand] = ACTIONS(1320), - [anon_sym_bit_DASHxor] = ACTIONS(1320), - [anon_sym_bit_DASHor] = ACTIONS(1320), - [anon_sym_and] = ACTIONS(1320), - [anon_sym_xor] = ACTIONS(1320), - [anon_sym_or] = ACTIONS(1320), - [anon_sym_not] = ACTIONS(1320), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1320), - [anon_sym_DOT_DOT_LT] = ACTIONS(1320), - [anon_sym_null] = ACTIONS(1320), - [anon_sym_true] = ACTIONS(1320), - [anon_sym_false] = ACTIONS(1320), - [aux_sym__val_number_decimal_token1] = ACTIONS(1320), - [aux_sym__val_number_decimal_token2] = ACTIONS(1320), - [anon_sym_DOT2] = ACTIONS(1320), - [aux_sym__val_number_decimal_token3] = ACTIONS(1320), - [aux_sym__val_number_token1] = ACTIONS(1320), - [aux_sym__val_number_token2] = ACTIONS(1320), - [aux_sym__val_number_token3] = ACTIONS(1320), - [aux_sym__val_number_token4] = ACTIONS(1320), - [aux_sym__val_number_token5] = ACTIONS(1320), - [aux_sym__val_number_token6] = ACTIONS(1320), - [anon_sym_0b] = ACTIONS(1320), - [anon_sym_0o] = ACTIONS(1320), - [anon_sym_0x] = ACTIONS(1320), - [sym_val_date] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1320), - [sym__str_single_quotes] = ACTIONS(1320), - [sym__str_back_ticks] = ACTIONS(1320), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1320), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1320), - [anon_sym_CARET] = ACTIONS(1320), - [anon_sym_POUND] = ACTIONS(113), - }, - [688] = { - [sym_comment] = STATE(688), - [ts_builtin_sym_end] = ACTIONS(938), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_error] = ACTIONS(936), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_where] = ACTIONS(936), - [anon_sym_STAR_STAR] = ACTIONS(936), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(936), - [anon_sym_SLASH_SLASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(936), - [anon_sym_bit_DASHshr] = ACTIONS(936), - [anon_sym_EQ_EQ] = ACTIONS(936), - [anon_sym_BANG_EQ] = ACTIONS(936), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(936), - [anon_sym_GT_EQ] = ACTIONS(936), - [anon_sym_not_DASHin] = ACTIONS(936), - [anon_sym_starts_DASHwith] = ACTIONS(936), - [anon_sym_ends_DASHwith] = ACTIONS(936), - [anon_sym_EQ_TILDE] = ACTIONS(936), - [anon_sym_BANG_TILDE] = ACTIONS(936), - [anon_sym_bit_DASHand] = ACTIONS(936), - [anon_sym_bit_DASHxor] = ACTIONS(936), - [anon_sym_bit_DASHor] = ACTIONS(936), - [anon_sym_and] = ACTIONS(936), - [anon_sym_xor] = ACTIONS(936), - [anon_sym_or] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [anon_sym_POUND] = ACTIONS(113), + [aux_sym_pipeline_repeat1] = STATE(766), + [sym_cmd_identifier] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(1528), + [anon_sym_DASH] = ACTIONS(39), + [anon_sym_break] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_match] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_DOT_DOT] = ACTIONS(59), + [anon_sym_try] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_where] = ACTIONS(75), + [anon_sym_not] = ACTIONS(77), + [anon_sym_DOT_DOT_EQ] = ACTIONS(79), + [anon_sym_DOT_DOT_LT] = ACTIONS(79), + [anon_sym_null] = ACTIONS(81), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [aux_sym__val_number_decimal_token1] = ACTIONS(85), + [aux_sym__val_number_decimal_token2] = ACTIONS(87), + [anon_sym_DOT2] = ACTIONS(89), + [aux_sym__val_number_decimal_token3] = ACTIONS(91), + [aux_sym__val_number_token1] = ACTIONS(93), + [aux_sym__val_number_token2] = ACTIONS(93), + [aux_sym__val_number_token3] = ACTIONS(93), + [aux_sym__val_number_token4] = ACTIONS(95), + [aux_sym__val_number_token5] = ACTIONS(93), + [aux_sym__val_number_token6] = ACTIONS(95), + [anon_sym_0b] = ACTIONS(97), + [anon_sym_0o] = ACTIONS(99), + [anon_sym_0x] = ACTIONS(99), + [sym_val_date] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym__str_single_quotes] = ACTIONS(105), + [sym__str_back_ticks] = ACTIONS(105), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(109), + [anon_sym_CARET] = ACTIONS(111), + [anon_sym_POUND] = ACTIONS(3), + }, + [687] = { + [sym_comment] = STATE(687), + [anon_sym_export] = ACTIONS(1211), + [anon_sym_alias] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(1211), + [anon_sym_let_DASHenv] = ACTIONS(1211), + [anon_sym_mut] = ACTIONS(1211), + [anon_sym_const] = ACTIONS(1211), + [sym_cmd_identifier] = ACTIONS(1211), + [anon_sym_def] = ACTIONS(1211), + [anon_sym_export_DASHenv] = ACTIONS(1211), + [anon_sym_extern] = ACTIONS(1211), + [anon_sym_module] = ACTIONS(1211), + [anon_sym_use] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1213), + [anon_sym_error] = ACTIONS(1211), + [anon_sym_list] = ACTIONS(1211), + [anon_sym_GT] = ACTIONS(1211), + [anon_sym_DASH] = ACTIONS(1211), + [anon_sym_break] = ACTIONS(1211), + [anon_sym_continue] = ACTIONS(1211), + [anon_sym_for] = ACTIONS(1211), + [anon_sym_in] = ACTIONS(1211), + [anon_sym_loop] = ACTIONS(1211), + [anon_sym_make] = ACTIONS(1211), + [anon_sym_while] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(1211), + [anon_sym_if] = ACTIONS(1211), + [anon_sym_else] = ACTIONS(1211), + [anon_sym_match] = ACTIONS(1211), + [anon_sym_RBRACE] = ACTIONS(1213), + [anon_sym_try] = ACTIONS(1211), + [anon_sym_catch] = ACTIONS(1211), + [anon_sym_return] = ACTIONS(1211), + [anon_sym_source] = ACTIONS(1211), + [anon_sym_source_DASHenv] = ACTIONS(1211), + [anon_sym_register] = ACTIONS(1211), + [anon_sym_hide] = ACTIONS(1211), + [anon_sym_hide_DASHenv] = ACTIONS(1211), + [anon_sym_overlay] = ACTIONS(1211), + [anon_sym_new] = ACTIONS(1211), + [anon_sym_as] = ACTIONS(1211), + [anon_sym_STAR] = ACTIONS(1211), + [anon_sym_STAR_STAR] = ACTIONS(1213), + [anon_sym_PLUS_PLUS] = ACTIONS(1213), + [anon_sym_SLASH] = ACTIONS(1211), + [anon_sym_mod] = ACTIONS(1211), + [anon_sym_SLASH_SLASH] = ACTIONS(1213), + [anon_sym_PLUS] = ACTIONS(1211), + [anon_sym_bit_DASHshl] = ACTIONS(1211), + [anon_sym_bit_DASHshr] = ACTIONS(1211), + [anon_sym_EQ_EQ] = ACTIONS(1213), + [anon_sym_BANG_EQ] = ACTIONS(1213), + [anon_sym_LT2] = ACTIONS(1211), + [anon_sym_LT_EQ] = ACTIONS(1213), + [anon_sym_GT_EQ] = ACTIONS(1213), + [anon_sym_not_DASHin] = ACTIONS(1211), + [anon_sym_starts_DASHwith] = ACTIONS(1211), + [anon_sym_ends_DASHwith] = ACTIONS(1211), + [anon_sym_EQ_TILDE] = ACTIONS(1213), + [anon_sym_BANG_TILDE] = ACTIONS(1213), + [anon_sym_bit_DASHand] = ACTIONS(1211), + [anon_sym_bit_DASHxor] = ACTIONS(1211), + [anon_sym_bit_DASHor] = ACTIONS(1211), + [anon_sym_and] = ACTIONS(1211), + [anon_sym_xor] = ACTIONS(1211), + [anon_sym_or] = ACTIONS(1211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1211), + [aux_sym__val_number_decimal_token2] = ACTIONS(1213), + [anon_sym_DOT2] = ACTIONS(1213), + [aux_sym__val_number_decimal_token3] = ACTIONS(1213), + [aux_sym__val_number_token1] = ACTIONS(1213), + [aux_sym__val_number_token2] = ACTIONS(1213), + [aux_sym__val_number_token3] = ACTIONS(1213), + [aux_sym__val_number_token4] = ACTIONS(1211), + [aux_sym__val_number_token5] = ACTIONS(1213), + [aux_sym__val_number_token6] = ACTIONS(1211), + [anon_sym_DQUOTE] = ACTIONS(1213), + [sym__str_single_quotes] = ACTIONS(1213), + [sym__str_back_ticks] = ACTIONS(1213), + [aux_sym__record_key_token2] = ACTIONS(1211), + [anon_sym_POUND] = ACTIONS(3), + }, + [688] = { + [sym_comment] = STATE(688), + [anon_sym_export] = ACTIONS(1175), + [anon_sym_alias] = ACTIONS(1175), + [anon_sym_let] = ACTIONS(1175), + [anon_sym_let_DASHenv] = ACTIONS(1175), + [anon_sym_mut] = ACTIONS(1175), + [anon_sym_const] = ACTIONS(1175), + [sym_cmd_identifier] = ACTIONS(1175), + [anon_sym_def] = ACTIONS(1175), + [anon_sym_export_DASHenv] = ACTIONS(1175), + [anon_sym_extern] = ACTIONS(1175), + [anon_sym_module] = ACTIONS(1175), + [anon_sym_use] = ACTIONS(1175), + [anon_sym_LPAREN] = ACTIONS(1177), + [anon_sym_DOLLAR] = ACTIONS(1177), + [anon_sym_error] = ACTIONS(1175), + [anon_sym_list] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [anon_sym_DASH] = ACTIONS(1175), + [anon_sym_break] = ACTIONS(1175), + [anon_sym_continue] = ACTIONS(1175), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_in] = ACTIONS(1175), + [anon_sym_loop] = ACTIONS(1175), + [anon_sym_make] = ACTIONS(1175), + [anon_sym_while] = ACTIONS(1175), + [anon_sym_do] = ACTIONS(1175), + [anon_sym_if] = ACTIONS(1175), + [anon_sym_else] = ACTIONS(1175), + [anon_sym_match] = ACTIONS(1175), + [anon_sym_RBRACE] = ACTIONS(1177), + [anon_sym_try] = ACTIONS(1175), + [anon_sym_catch] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(1175), + [anon_sym_source] = ACTIONS(1175), + [anon_sym_source_DASHenv] = ACTIONS(1175), + [anon_sym_register] = ACTIONS(1175), + [anon_sym_hide] = ACTIONS(1175), + [anon_sym_hide_DASHenv] = ACTIONS(1175), + [anon_sym_overlay] = ACTIONS(1175), + [anon_sym_new] = ACTIONS(1175), + [anon_sym_as] = ACTIONS(1175), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_STAR_STAR] = ACTIONS(1177), + [anon_sym_PLUS_PLUS] = ACTIONS(1177), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_mod] = ACTIONS(1175), + [anon_sym_SLASH_SLASH] = ACTIONS(1177), + [anon_sym_PLUS] = ACTIONS(1175), + [anon_sym_bit_DASHshl] = ACTIONS(1175), + [anon_sym_bit_DASHshr] = ACTIONS(1175), + [anon_sym_EQ_EQ] = ACTIONS(1177), + [anon_sym_BANG_EQ] = ACTIONS(1177), + [anon_sym_LT2] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1177), + [anon_sym_GT_EQ] = ACTIONS(1177), + [anon_sym_not_DASHin] = ACTIONS(1175), + [anon_sym_starts_DASHwith] = ACTIONS(1175), + [anon_sym_ends_DASHwith] = ACTIONS(1175), + [anon_sym_EQ_TILDE] = ACTIONS(1177), + [anon_sym_BANG_TILDE] = ACTIONS(1177), + [anon_sym_bit_DASHand] = ACTIONS(1175), + [anon_sym_bit_DASHxor] = ACTIONS(1175), + [anon_sym_bit_DASHor] = ACTIONS(1175), + [anon_sym_and] = ACTIONS(1175), + [anon_sym_xor] = ACTIONS(1175), + [anon_sym_or] = ACTIONS(1175), + [aux_sym__val_number_decimal_token1] = ACTIONS(1175), + [aux_sym__val_number_decimal_token2] = ACTIONS(1177), + [anon_sym_DOT2] = ACTIONS(1177), + [aux_sym__val_number_decimal_token3] = ACTIONS(1177), + [aux_sym__val_number_token1] = ACTIONS(1177), + [aux_sym__val_number_token2] = ACTIONS(1177), + [aux_sym__val_number_token3] = ACTIONS(1177), + [aux_sym__val_number_token4] = ACTIONS(1175), + [aux_sym__val_number_token5] = ACTIONS(1177), + [aux_sym__val_number_token6] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1177), + [sym__str_single_quotes] = ACTIONS(1177), + [sym__str_back_ticks] = ACTIONS(1177), + [aux_sym__record_key_token2] = ACTIONS(1175), + [anon_sym_POUND] = ACTIONS(3), }, [689] = { [sym_comment] = STATE(689), - [ts_builtin_sym_end] = ACTIONS(1282), - [anon_sym_export] = ACTIONS(1280), - [anon_sym_alias] = ACTIONS(1280), - [anon_sym_let] = ACTIONS(1280), - [anon_sym_let_DASHenv] = ACTIONS(1280), - [anon_sym_mut] = ACTIONS(1280), - [anon_sym_const] = ACTIONS(1280), - [anon_sym_SEMI] = ACTIONS(1280), - [sym_cmd_identifier] = ACTIONS(1280), - [anon_sym_LF] = ACTIONS(1282), - [anon_sym_def] = ACTIONS(1280), - [anon_sym_export_DASHenv] = ACTIONS(1280), - [anon_sym_extern] = ACTIONS(1280), - [anon_sym_module] = ACTIONS(1280), - [anon_sym_use] = ACTIONS(1280), - [anon_sym_LBRACK] = ACTIONS(1280), - [anon_sym_LPAREN] = ACTIONS(1280), - [anon_sym_DOLLAR] = ACTIONS(1280), - [anon_sym_error] = ACTIONS(1280), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_break] = ACTIONS(1280), - [anon_sym_continue] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_in] = ACTIONS(1280), - [anon_sym_loop] = ACTIONS(1280), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1280), - [anon_sym_DOT_DOT] = ACTIONS(1280), - [anon_sym_try] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1280), - [anon_sym_source] = ACTIONS(1280), - [anon_sym_source_DASHenv] = ACTIONS(1280), - [anon_sym_register] = ACTIONS(1280), - [anon_sym_hide] = ACTIONS(1280), - [anon_sym_hide_DASHenv] = ACTIONS(1280), - [anon_sym_overlay] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1280), - [anon_sym_where] = ACTIONS(1280), - [anon_sym_STAR_STAR] = ACTIONS(1280), - [anon_sym_PLUS_PLUS] = ACTIONS(1280), - [anon_sym_SLASH] = ACTIONS(1280), - [anon_sym_mod] = ACTIONS(1280), - [anon_sym_SLASH_SLASH] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_bit_DASHshl] = ACTIONS(1280), - [anon_sym_bit_DASHshr] = ACTIONS(1280), - [anon_sym_EQ_EQ] = ACTIONS(1280), - [anon_sym_BANG_EQ] = ACTIONS(1280), - [anon_sym_LT2] = ACTIONS(1280), - [anon_sym_LT_EQ] = ACTIONS(1280), - [anon_sym_GT_EQ] = ACTIONS(1280), - [anon_sym_not_DASHin] = ACTIONS(1280), - [anon_sym_starts_DASHwith] = ACTIONS(1280), - [anon_sym_ends_DASHwith] = ACTIONS(1280), - [anon_sym_EQ_TILDE] = ACTIONS(1280), - [anon_sym_BANG_TILDE] = ACTIONS(1280), - [anon_sym_bit_DASHand] = ACTIONS(1280), - [anon_sym_bit_DASHxor] = ACTIONS(1280), - [anon_sym_bit_DASHor] = ACTIONS(1280), - [anon_sym_and] = ACTIONS(1280), - [anon_sym_xor] = ACTIONS(1280), - [anon_sym_or] = ACTIONS(1280), - [anon_sym_not] = ACTIONS(1280), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1280), - [anon_sym_DOT_DOT_LT] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1280), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [aux_sym__val_number_decimal_token1] = ACTIONS(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1280), - [anon_sym_DOT2] = ACTIONS(1280), - [aux_sym__val_number_decimal_token3] = ACTIONS(1280), - [aux_sym__val_number_token1] = ACTIONS(1280), - [aux_sym__val_number_token2] = ACTIONS(1280), - [aux_sym__val_number_token3] = ACTIONS(1280), - [aux_sym__val_number_token4] = ACTIONS(1280), - [aux_sym__val_number_token5] = ACTIONS(1280), - [aux_sym__val_number_token6] = ACTIONS(1280), - [anon_sym_0b] = ACTIONS(1280), - [anon_sym_0o] = ACTIONS(1280), - [anon_sym_0x] = ACTIONS(1280), - [sym_val_date] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1280), - [sym__str_single_quotes] = ACTIONS(1280), - [sym__str_back_ticks] = ACTIONS(1280), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1280), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1280), - [anon_sym_CARET] = ACTIONS(1280), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1093), + [anon_sym_alias] = ACTIONS(1093), + [anon_sym_let] = ACTIONS(1093), + [anon_sym_let_DASHenv] = ACTIONS(1093), + [anon_sym_mut] = ACTIONS(1093), + [anon_sym_const] = ACTIONS(1093), + [sym_cmd_identifier] = ACTIONS(1093), + [anon_sym_def] = ACTIONS(1093), + [anon_sym_export_DASHenv] = ACTIONS(1093), + [anon_sym_extern] = ACTIONS(1093), + [anon_sym_module] = ACTIONS(1093), + [anon_sym_use] = ACTIONS(1093), + [anon_sym_LPAREN] = ACTIONS(1095), + [anon_sym_DOLLAR] = ACTIONS(1095), + [anon_sym_error] = ACTIONS(1093), + [anon_sym_list] = ACTIONS(1093), + [anon_sym_GT] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_break] = ACTIONS(1093), + [anon_sym_continue] = ACTIONS(1093), + [anon_sym_for] = ACTIONS(1093), + [anon_sym_in] = ACTIONS(1093), + [anon_sym_loop] = ACTIONS(1093), + [anon_sym_make] = ACTIONS(1093), + [anon_sym_while] = ACTIONS(1093), + [anon_sym_do] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1093), + [anon_sym_else] = ACTIONS(1093), + [anon_sym_match] = ACTIONS(1093), + [anon_sym_RBRACE] = ACTIONS(1095), + [anon_sym_try] = ACTIONS(1093), + [anon_sym_catch] = ACTIONS(1093), + [anon_sym_return] = ACTIONS(1093), + [anon_sym_source] = ACTIONS(1093), + [anon_sym_source_DASHenv] = ACTIONS(1093), + [anon_sym_register] = ACTIONS(1093), + [anon_sym_hide] = ACTIONS(1093), + [anon_sym_hide_DASHenv] = ACTIONS(1093), + [anon_sym_overlay] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1093), + [anon_sym_as] = ACTIONS(1093), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_STAR_STAR] = ACTIONS(1095), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_SLASH] = ACTIONS(1093), + [anon_sym_mod] = ACTIONS(1093), + [anon_sym_SLASH_SLASH] = ACTIONS(1095), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_bit_DASHshl] = ACTIONS(1093), + [anon_sym_bit_DASHshr] = ACTIONS(1093), + [anon_sym_EQ_EQ] = ACTIONS(1095), + [anon_sym_BANG_EQ] = ACTIONS(1095), + [anon_sym_LT2] = ACTIONS(1093), + [anon_sym_LT_EQ] = ACTIONS(1095), + [anon_sym_GT_EQ] = ACTIONS(1095), + [anon_sym_not_DASHin] = ACTIONS(1093), + [anon_sym_starts_DASHwith] = ACTIONS(1093), + [anon_sym_ends_DASHwith] = ACTIONS(1093), + [anon_sym_EQ_TILDE] = ACTIONS(1095), + [anon_sym_BANG_TILDE] = ACTIONS(1095), + [anon_sym_bit_DASHand] = ACTIONS(1093), + [anon_sym_bit_DASHxor] = ACTIONS(1093), + [anon_sym_bit_DASHor] = ACTIONS(1093), + [anon_sym_and] = ACTIONS(1093), + [anon_sym_xor] = ACTIONS(1093), + [anon_sym_or] = ACTIONS(1093), + [aux_sym__val_number_decimal_token1] = ACTIONS(1093), + [aux_sym__val_number_decimal_token2] = ACTIONS(1095), + [anon_sym_DOT2] = ACTIONS(1095), + [aux_sym__val_number_decimal_token3] = ACTIONS(1095), + [aux_sym__val_number_token1] = ACTIONS(1095), + [aux_sym__val_number_token2] = ACTIONS(1095), + [aux_sym__val_number_token3] = ACTIONS(1095), + [aux_sym__val_number_token4] = ACTIONS(1093), + [aux_sym__val_number_token5] = ACTIONS(1095), + [aux_sym__val_number_token6] = ACTIONS(1093), + [anon_sym_DQUOTE] = ACTIONS(1095), + [sym__str_single_quotes] = ACTIONS(1095), + [sym__str_back_ticks] = ACTIONS(1095), + [aux_sym__record_key_token2] = ACTIONS(1093), + [anon_sym_POUND] = ACTIONS(3), }, [690] = { [sym_comment] = STATE(690), - [ts_builtin_sym_end] = ACTIONS(1196), - [anon_sym_export] = ACTIONS(1194), - [anon_sym_alias] = ACTIONS(1194), - [anon_sym_let] = ACTIONS(1194), - [anon_sym_let_DASHenv] = ACTIONS(1194), - [anon_sym_mut] = ACTIONS(1194), - [anon_sym_const] = ACTIONS(1194), - [anon_sym_SEMI] = ACTIONS(1194), - [sym_cmd_identifier] = ACTIONS(1194), - [anon_sym_LF] = ACTIONS(1196), - [anon_sym_def] = ACTIONS(1194), - [anon_sym_export_DASHenv] = ACTIONS(1194), - [anon_sym_extern] = ACTIONS(1194), - [anon_sym_module] = ACTIONS(1194), - [anon_sym_use] = ACTIONS(1194), - [anon_sym_LBRACK] = ACTIONS(1194), - [anon_sym_LPAREN] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1194), - [anon_sym_error] = ACTIONS(1194), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_break] = ACTIONS(1194), - [anon_sym_continue] = ACTIONS(1194), - [anon_sym_for] = ACTIONS(1194), - [anon_sym_in] = ACTIONS(1198), - [anon_sym_loop] = ACTIONS(1194), - [anon_sym_while] = ACTIONS(1194), - [anon_sym_do] = ACTIONS(1194), - [anon_sym_if] = ACTIONS(1194), - [anon_sym_match] = ACTIONS(1194), - [anon_sym_LBRACE] = ACTIONS(1194), - [anon_sym_DOT_DOT] = ACTIONS(1194), - [anon_sym_try] = ACTIONS(1194), - [anon_sym_return] = ACTIONS(1194), - [anon_sym_source] = ACTIONS(1194), - [anon_sym_source_DASHenv] = ACTIONS(1194), - [anon_sym_register] = ACTIONS(1194), - [anon_sym_hide] = ACTIONS(1194), - [anon_sym_hide_DASHenv] = ACTIONS(1194), - [anon_sym_overlay] = ACTIONS(1194), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_where] = ACTIONS(1194), - [anon_sym_STAR_STAR] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_SLASH] = ACTIONS(1198), - [anon_sym_mod] = ACTIONS(1198), - [anon_sym_SLASH_SLASH] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1198), - [anon_sym_bit_DASHshl] = ACTIONS(1198), - [anon_sym_bit_DASHshr] = ACTIONS(1198), - [anon_sym_EQ_EQ] = ACTIONS(1198), - [anon_sym_BANG_EQ] = ACTIONS(1198), - [anon_sym_LT2] = ACTIONS(1198), - [anon_sym_LT_EQ] = ACTIONS(1198), - [anon_sym_GT_EQ] = ACTIONS(1198), - [anon_sym_not_DASHin] = ACTIONS(1198), - [anon_sym_starts_DASHwith] = ACTIONS(1198), - [anon_sym_ends_DASHwith] = ACTIONS(1198), - [anon_sym_EQ_TILDE] = ACTIONS(1198), - [anon_sym_BANG_TILDE] = ACTIONS(1198), - [anon_sym_bit_DASHand] = ACTIONS(1198), - [anon_sym_bit_DASHxor] = ACTIONS(1198), - [anon_sym_bit_DASHor] = ACTIONS(1198), - [anon_sym_and] = ACTIONS(1198), - [anon_sym_xor] = ACTIONS(1198), - [anon_sym_or] = ACTIONS(1198), - [anon_sym_not] = ACTIONS(1194), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1194), - [anon_sym_DOT_DOT_LT] = ACTIONS(1194), - [anon_sym_null] = ACTIONS(1194), - [anon_sym_true] = ACTIONS(1194), - [anon_sym_false] = ACTIONS(1194), - [aux_sym__val_number_decimal_token1] = ACTIONS(1194), - [aux_sym__val_number_decimal_token2] = ACTIONS(1194), - [anon_sym_DOT2] = ACTIONS(1194), - [aux_sym__val_number_decimal_token3] = ACTIONS(1194), - [aux_sym__val_number_token1] = ACTIONS(1194), - [aux_sym__val_number_token2] = ACTIONS(1194), - [aux_sym__val_number_token3] = ACTIONS(1194), - [aux_sym__val_number_token4] = ACTIONS(1194), - [aux_sym__val_number_token5] = ACTIONS(1194), - [aux_sym__val_number_token6] = ACTIONS(1194), - [anon_sym_0b] = ACTIONS(1194), - [anon_sym_0o] = ACTIONS(1194), - [anon_sym_0x] = ACTIONS(1194), - [sym_val_date] = ACTIONS(1194), - [anon_sym_DQUOTE] = ACTIONS(1194), - [sym__str_single_quotes] = ACTIONS(1194), - [sym__str_back_ticks] = ACTIONS(1194), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1194), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1194), - [anon_sym_CARET] = ACTIONS(1194), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1245), + [anon_sym_alias] = ACTIONS(1245), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_let_DASHenv] = ACTIONS(1245), + [anon_sym_mut] = ACTIONS(1245), + [anon_sym_const] = ACTIONS(1245), + [sym_cmd_identifier] = ACTIONS(1245), + [anon_sym_def] = ACTIONS(1245), + [anon_sym_export_DASHenv] = ACTIONS(1245), + [anon_sym_extern] = ACTIONS(1245), + [anon_sym_module] = ACTIONS(1245), + [anon_sym_use] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1247), + [anon_sym_DOLLAR] = ACTIONS(1247), + [anon_sym_error] = ACTIONS(1245), + [anon_sym_list] = ACTIONS(1245), + [anon_sym_GT] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_break] = ACTIONS(1245), + [anon_sym_continue] = ACTIONS(1245), + [anon_sym_for] = ACTIONS(1245), + [anon_sym_in] = ACTIONS(1245), + [anon_sym_loop] = ACTIONS(1245), + [anon_sym_make] = ACTIONS(1245), + [anon_sym_while] = ACTIONS(1245), + [anon_sym_do] = ACTIONS(1245), + [anon_sym_if] = ACTIONS(1245), + [anon_sym_else] = ACTIONS(1245), + [anon_sym_match] = ACTIONS(1245), + [anon_sym_RBRACE] = ACTIONS(1247), + [anon_sym_try] = ACTIONS(1245), + [anon_sym_catch] = ACTIONS(1245), + [anon_sym_return] = ACTIONS(1245), + [anon_sym_source] = ACTIONS(1245), + [anon_sym_source_DASHenv] = ACTIONS(1245), + [anon_sym_register] = ACTIONS(1245), + [anon_sym_hide] = ACTIONS(1245), + [anon_sym_hide_DASHenv] = ACTIONS(1245), + [anon_sym_overlay] = ACTIONS(1245), + [anon_sym_new] = ACTIONS(1245), + [anon_sym_as] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(1245), + [anon_sym_STAR_STAR] = ACTIONS(1247), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_SLASH] = ACTIONS(1245), + [anon_sym_mod] = ACTIONS(1245), + [anon_sym_SLASH_SLASH] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_bit_DASHshl] = ACTIONS(1245), + [anon_sym_bit_DASHshr] = ACTIONS(1245), + [anon_sym_EQ_EQ] = ACTIONS(1247), + [anon_sym_BANG_EQ] = ACTIONS(1247), + [anon_sym_LT2] = ACTIONS(1245), + [anon_sym_LT_EQ] = ACTIONS(1247), + [anon_sym_GT_EQ] = ACTIONS(1247), + [anon_sym_not_DASHin] = ACTIONS(1245), + [anon_sym_starts_DASHwith] = ACTIONS(1245), + [anon_sym_ends_DASHwith] = ACTIONS(1245), + [anon_sym_EQ_TILDE] = ACTIONS(1247), + [anon_sym_BANG_TILDE] = ACTIONS(1247), + [anon_sym_bit_DASHand] = ACTIONS(1245), + [anon_sym_bit_DASHxor] = ACTIONS(1245), + [anon_sym_bit_DASHor] = ACTIONS(1245), + [anon_sym_and] = ACTIONS(1245), + [anon_sym_xor] = ACTIONS(1245), + [anon_sym_or] = ACTIONS(1245), + [aux_sym__val_number_decimal_token1] = ACTIONS(1245), + [aux_sym__val_number_decimal_token2] = ACTIONS(1247), + [anon_sym_DOT2] = ACTIONS(1247), + [aux_sym__val_number_decimal_token3] = ACTIONS(1247), + [aux_sym__val_number_token1] = ACTIONS(1247), + [aux_sym__val_number_token2] = ACTIONS(1247), + [aux_sym__val_number_token3] = ACTIONS(1247), + [aux_sym__val_number_token4] = ACTIONS(1245), + [aux_sym__val_number_token5] = ACTIONS(1247), + [aux_sym__val_number_token6] = ACTIONS(1245), + [anon_sym_DQUOTE] = ACTIONS(1247), + [sym__str_single_quotes] = ACTIONS(1247), + [sym__str_back_ticks] = ACTIONS(1247), + [aux_sym__record_key_token2] = ACTIONS(1245), + [anon_sym_POUND] = ACTIONS(3), }, [691] = { [sym_comment] = STATE(691), - [ts_builtin_sym_end] = ACTIONS(1290), - [anon_sym_export] = ACTIONS(1243), - [anon_sym_alias] = ACTIONS(1243), - [anon_sym_let] = ACTIONS(1243), - [anon_sym_let_DASHenv] = ACTIONS(1243), - [anon_sym_mut] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1243), - [sym_cmd_identifier] = ACTIONS(1243), - [anon_sym_LF] = ACTIONS(1290), - [anon_sym_def] = ACTIONS(1243), - [anon_sym_export_DASHenv] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1243), - [anon_sym_module] = ACTIONS(1243), - [anon_sym_use] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(1243), + [anon_sym_export] = ACTIONS(1249), + [anon_sym_alias] = ACTIONS(1249), + [anon_sym_let] = ACTIONS(1249), + [anon_sym_let_DASHenv] = ACTIONS(1249), + [anon_sym_mut] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [sym_cmd_identifier] = ACTIONS(1249), + [anon_sym_def] = ACTIONS(1249), + [anon_sym_export_DASHenv] = ACTIONS(1249), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_module] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1249), + [anon_sym_LPAREN] = ACTIONS(1251), + [anon_sym_DOLLAR] = ACTIONS(1251), + [anon_sym_error] = ACTIONS(1249), + [anon_sym_list] = ACTIONS(1249), + [anon_sym_GT] = ACTIONS(1249), + [anon_sym_DASH] = ACTIONS(1249), + [anon_sym_break] = ACTIONS(1249), + [anon_sym_continue] = ACTIONS(1249), + [anon_sym_for] = ACTIONS(1249), + [anon_sym_in] = ACTIONS(1249), + [anon_sym_loop] = ACTIONS(1249), + [anon_sym_make] = ACTIONS(1249), + [anon_sym_while] = ACTIONS(1249), + [anon_sym_do] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1249), + [anon_sym_else] = ACTIONS(1249), + [anon_sym_match] = ACTIONS(1249), + [anon_sym_RBRACE] = ACTIONS(1251), + [anon_sym_try] = ACTIONS(1249), + [anon_sym_catch] = ACTIONS(1249), + [anon_sym_return] = ACTIONS(1249), + [anon_sym_source] = ACTIONS(1249), + [anon_sym_source_DASHenv] = ACTIONS(1249), + [anon_sym_register] = ACTIONS(1249), + [anon_sym_hide] = ACTIONS(1249), + [anon_sym_hide_DASHenv] = ACTIONS(1249), + [anon_sym_overlay] = ACTIONS(1249), + [anon_sym_new] = ACTIONS(1249), + [anon_sym_as] = ACTIONS(1249), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_STAR_STAR] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(1249), + [anon_sym_mod] = ACTIONS(1249), + [anon_sym_SLASH_SLASH] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1249), + [anon_sym_bit_DASHshl] = ACTIONS(1249), + [anon_sym_bit_DASHshr] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1251), + [anon_sym_BANG_EQ] = ACTIONS(1251), + [anon_sym_LT2] = ACTIONS(1249), + [anon_sym_LT_EQ] = ACTIONS(1251), + [anon_sym_GT_EQ] = ACTIONS(1251), + [anon_sym_not_DASHin] = ACTIONS(1249), + [anon_sym_starts_DASHwith] = ACTIONS(1249), + [anon_sym_ends_DASHwith] = ACTIONS(1249), + [anon_sym_EQ_TILDE] = ACTIONS(1251), + [anon_sym_BANG_TILDE] = ACTIONS(1251), + [anon_sym_bit_DASHand] = ACTIONS(1249), + [anon_sym_bit_DASHxor] = ACTIONS(1249), + [anon_sym_bit_DASHor] = ACTIONS(1249), + [anon_sym_and] = ACTIONS(1249), + [anon_sym_xor] = ACTIONS(1249), + [anon_sym_or] = ACTIONS(1249), + [aux_sym__val_number_decimal_token1] = ACTIONS(1249), + [aux_sym__val_number_decimal_token2] = ACTIONS(1251), + [anon_sym_DOT2] = ACTIONS(1251), + [aux_sym__val_number_decimal_token3] = ACTIONS(1251), + [aux_sym__val_number_token1] = ACTIONS(1251), + [aux_sym__val_number_token2] = ACTIONS(1251), + [aux_sym__val_number_token3] = ACTIONS(1251), + [aux_sym__val_number_token4] = ACTIONS(1249), + [aux_sym__val_number_token5] = ACTIONS(1251), + [aux_sym__val_number_token6] = ACTIONS(1249), + [anon_sym_DQUOTE] = ACTIONS(1251), + [sym__str_single_quotes] = ACTIONS(1251), + [sym__str_back_ticks] = ACTIONS(1251), + [aux_sym__record_key_token2] = ACTIONS(1249), + [anon_sym_POUND] = ACTIONS(3), + }, + [692] = { + [sym_comment] = STATE(692), + [anon_sym_export] = ACTIONS(938), + [anon_sym_alias] = ACTIONS(938), + [anon_sym_let] = ACTIONS(938), + [anon_sym_let_DASHenv] = ACTIONS(938), + [anon_sym_mut] = ACTIONS(938), + [anon_sym_const] = ACTIONS(938), + [sym_cmd_identifier] = ACTIONS(938), + [anon_sym_def] = ACTIONS(938), + [anon_sym_export_DASHenv] = ACTIONS(938), + [anon_sym_extern] = ACTIONS(938), + [anon_sym_module] = ACTIONS(938), + [anon_sym_use] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(940), + [anon_sym_DOLLAR] = ACTIONS(940), + [anon_sym_error] = ACTIONS(938), + [anon_sym_list] = ACTIONS(938), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_break] = ACTIONS(938), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_for] = ACTIONS(938), + [anon_sym_in] = ACTIONS(938), + [anon_sym_loop] = ACTIONS(938), + [anon_sym_make] = ACTIONS(938), + [anon_sym_while] = ACTIONS(938), + [anon_sym_do] = ACTIONS(938), + [anon_sym_if] = ACTIONS(938), + [anon_sym_else] = ACTIONS(938), + [anon_sym_match] = ACTIONS(938), + [anon_sym_RBRACE] = ACTIONS(940), + [anon_sym_try] = ACTIONS(938), + [anon_sym_catch] = ACTIONS(938), + [anon_sym_return] = ACTIONS(938), + [anon_sym_source] = ACTIONS(938), + [anon_sym_source_DASHenv] = ACTIONS(938), + [anon_sym_register] = ACTIONS(938), + [anon_sym_hide] = ACTIONS(938), + [anon_sym_hide_DASHenv] = ACTIONS(938), + [anon_sym_overlay] = ACTIONS(938), + [anon_sym_new] = ACTIONS(938), + [anon_sym_as] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_STAR_STAR] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(940), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(938), + [anon_sym_SLASH_SLASH] = ACTIONS(940), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_bit_DASHshl] = ACTIONS(938), + [anon_sym_bit_DASHshr] = ACTIONS(938), + [anon_sym_EQ_EQ] = ACTIONS(940), + [anon_sym_BANG_EQ] = ACTIONS(940), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(940), + [anon_sym_GT_EQ] = ACTIONS(940), + [anon_sym_not_DASHin] = ACTIONS(938), + [anon_sym_starts_DASHwith] = ACTIONS(938), + [anon_sym_ends_DASHwith] = ACTIONS(938), + [anon_sym_EQ_TILDE] = ACTIONS(940), + [anon_sym_BANG_TILDE] = ACTIONS(940), + [anon_sym_bit_DASHand] = ACTIONS(938), + [anon_sym_bit_DASHxor] = ACTIONS(938), + [anon_sym_bit_DASHor] = ACTIONS(938), + [anon_sym_and] = ACTIONS(938), + [anon_sym_xor] = ACTIONS(938), + [anon_sym_or] = ACTIONS(938), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(940), + [anon_sym_DOT2] = ACTIONS(940), + [aux_sym__val_number_decimal_token3] = ACTIONS(940), + [aux_sym__val_number_token1] = ACTIONS(940), + [aux_sym__val_number_token2] = ACTIONS(940), + [aux_sym__val_number_token3] = ACTIONS(940), + [aux_sym__val_number_token4] = ACTIONS(938), + [aux_sym__val_number_token5] = ACTIONS(940), + [aux_sym__val_number_token6] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(940), + [sym__str_single_quotes] = ACTIONS(940), + [sym__str_back_ticks] = ACTIONS(940), + [aux_sym__record_key_token2] = ACTIONS(938), + [anon_sym_POUND] = ACTIONS(3), + }, + [693] = { + [sym_comment] = STATE(693), + [anon_sym_export] = ACTIONS(1225), + [anon_sym_alias] = ACTIONS(1225), + [anon_sym_let] = ACTIONS(1225), + [anon_sym_let_DASHenv] = ACTIONS(1225), + [anon_sym_mut] = ACTIONS(1225), + [anon_sym_const] = ACTIONS(1225), + [sym_cmd_identifier] = ACTIONS(1225), + [anon_sym_def] = ACTIONS(1225), + [anon_sym_export_DASHenv] = ACTIONS(1225), + [anon_sym_extern] = ACTIONS(1225), + [anon_sym_module] = ACTIONS(1225), + [anon_sym_use] = ACTIONS(1225), + [anon_sym_LPAREN] = ACTIONS(1227), + [anon_sym_DOLLAR] = ACTIONS(1227), + [anon_sym_error] = ACTIONS(1225), + [anon_sym_list] = ACTIONS(1225), + [anon_sym_GT] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_break] = ACTIONS(1225), + [anon_sym_continue] = ACTIONS(1225), + [anon_sym_for] = ACTIONS(1225), + [anon_sym_in] = ACTIONS(1225), + [anon_sym_loop] = ACTIONS(1225), + [anon_sym_make] = ACTIONS(1225), + [anon_sym_while] = ACTIONS(1225), + [anon_sym_do] = ACTIONS(1225), + [anon_sym_if] = ACTIONS(1225), + [anon_sym_else] = ACTIONS(1225), + [anon_sym_match] = ACTIONS(1225), + [anon_sym_RBRACE] = ACTIONS(1227), + [anon_sym_try] = ACTIONS(1225), + [anon_sym_catch] = ACTIONS(1225), + [anon_sym_return] = ACTIONS(1225), + [anon_sym_source] = ACTIONS(1225), + [anon_sym_source_DASHenv] = ACTIONS(1225), + [anon_sym_register] = ACTIONS(1225), + [anon_sym_hide] = ACTIONS(1225), + [anon_sym_hide_DASHenv] = ACTIONS(1225), + [anon_sym_overlay] = ACTIONS(1225), + [anon_sym_new] = ACTIONS(1225), + [anon_sym_as] = ACTIONS(1225), + [anon_sym_STAR] = ACTIONS(1225), + [anon_sym_STAR_STAR] = ACTIONS(1227), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_SLASH] = ACTIONS(1225), + [anon_sym_mod] = ACTIONS(1225), + [anon_sym_SLASH_SLASH] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_bit_DASHshl] = ACTIONS(1225), + [anon_sym_bit_DASHshr] = ACTIONS(1225), + [anon_sym_EQ_EQ] = ACTIONS(1227), + [anon_sym_BANG_EQ] = ACTIONS(1227), + [anon_sym_LT2] = ACTIONS(1225), + [anon_sym_LT_EQ] = ACTIONS(1227), + [anon_sym_GT_EQ] = ACTIONS(1227), + [anon_sym_not_DASHin] = ACTIONS(1225), + [anon_sym_starts_DASHwith] = ACTIONS(1225), + [anon_sym_ends_DASHwith] = ACTIONS(1225), + [anon_sym_EQ_TILDE] = ACTIONS(1227), + [anon_sym_BANG_TILDE] = ACTIONS(1227), + [anon_sym_bit_DASHand] = ACTIONS(1225), + [anon_sym_bit_DASHxor] = ACTIONS(1225), + [anon_sym_bit_DASHor] = ACTIONS(1225), + [anon_sym_and] = ACTIONS(1225), + [anon_sym_xor] = ACTIONS(1225), + [anon_sym_or] = ACTIONS(1225), + [aux_sym__val_number_decimal_token1] = ACTIONS(1225), + [aux_sym__val_number_decimal_token2] = ACTIONS(1227), + [anon_sym_DOT2] = ACTIONS(1227), + [aux_sym__val_number_decimal_token3] = ACTIONS(1227), + [aux_sym__val_number_token1] = ACTIONS(1227), + [aux_sym__val_number_token2] = ACTIONS(1227), + [aux_sym__val_number_token3] = ACTIONS(1227), + [aux_sym__val_number_token4] = ACTIONS(1225), + [aux_sym__val_number_token5] = ACTIONS(1227), + [aux_sym__val_number_token6] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1227), + [sym__str_single_quotes] = ACTIONS(1227), + [sym__str_back_ticks] = ACTIONS(1227), + [aux_sym__record_key_token2] = ACTIONS(1225), + [anon_sym_POUND] = ACTIONS(3), + }, + [694] = { + [sym_pipeline] = STATE(2595), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(9749), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(4804), + [sym__var] = STATE(4386), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), + [sym_comment] = STATE(694), + [aux_sym_pipeline_repeat1] = STATE(763), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_where] = ACTIONS(187), + [anon_sym_not] = ACTIONS(191), + [anon_sym_DOT_DOT_EQ] = ACTIONS(193), + [anon_sym_DOT_DOT_LT] = ACTIONS(193), + [anon_sym_null] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [aux_sym__val_number_decimal_token1] = ACTIONS(199), + [aux_sym__val_number_decimal_token2] = ACTIONS(201), + [anon_sym_DOT2] = ACTIONS(203), + [aux_sym__val_number_decimal_token3] = ACTIONS(205), + [aux_sym__val_number_token1] = ACTIONS(207), + [aux_sym__val_number_token2] = ACTIONS(207), + [aux_sym__val_number_token3] = ACTIONS(207), + [aux_sym__val_number_token4] = ACTIONS(209), + [aux_sym__val_number_token5] = ACTIONS(207), + [aux_sym__val_number_token6] = ACTIONS(209), + [anon_sym_0b] = ACTIONS(211), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym__str_single_quotes] = ACTIONS(219), + [sym__str_back_ticks] = ACTIONS(219), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(227), + [anon_sym_POUND] = ACTIONS(3), + }, + [695] = { + [sym_comment] = STATE(695), + [anon_sym_export] = ACTIONS(1229), + [anon_sym_alias] = ACTIONS(1229), + [anon_sym_let] = ACTIONS(1229), + [anon_sym_let_DASHenv] = ACTIONS(1229), + [anon_sym_mut] = ACTIONS(1229), + [anon_sym_const] = ACTIONS(1229), + [sym_cmd_identifier] = ACTIONS(1229), + [anon_sym_def] = ACTIONS(1229), + [anon_sym_export_DASHenv] = ACTIONS(1229), + [anon_sym_extern] = ACTIONS(1229), + [anon_sym_module] = ACTIONS(1229), + [anon_sym_use] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(1231), + [anon_sym_DOLLAR] = ACTIONS(1231), + [anon_sym_error] = ACTIONS(1229), + [anon_sym_list] = ACTIONS(1229), + [anon_sym_GT] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_break] = ACTIONS(1229), + [anon_sym_continue] = ACTIONS(1229), + [anon_sym_for] = ACTIONS(1229), + [anon_sym_in] = ACTIONS(1229), + [anon_sym_loop] = ACTIONS(1229), + [anon_sym_make] = ACTIONS(1229), + [anon_sym_while] = ACTIONS(1229), + [anon_sym_do] = ACTIONS(1229), + [anon_sym_if] = ACTIONS(1229), + [anon_sym_else] = ACTIONS(1229), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_RBRACE] = ACTIONS(1231), + [anon_sym_try] = ACTIONS(1229), + [anon_sym_catch] = ACTIONS(1229), + [anon_sym_return] = ACTIONS(1229), + [anon_sym_source] = ACTIONS(1229), + [anon_sym_source_DASHenv] = ACTIONS(1229), + [anon_sym_register] = ACTIONS(1229), + [anon_sym_hide] = ACTIONS(1229), + [anon_sym_hide_DASHenv] = ACTIONS(1229), + [anon_sym_overlay] = ACTIONS(1229), + [anon_sym_new] = ACTIONS(1229), + [anon_sym_as] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1229), + [anon_sym_STAR_STAR] = ACTIONS(1231), + [anon_sym_PLUS_PLUS] = ACTIONS(1231), + [anon_sym_SLASH] = ACTIONS(1229), + [anon_sym_mod] = ACTIONS(1229), + [anon_sym_SLASH_SLASH] = ACTIONS(1231), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_bit_DASHshl] = ACTIONS(1229), + [anon_sym_bit_DASHshr] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1231), + [anon_sym_BANG_EQ] = ACTIONS(1231), + [anon_sym_LT2] = ACTIONS(1229), + [anon_sym_LT_EQ] = ACTIONS(1231), + [anon_sym_GT_EQ] = ACTIONS(1231), + [anon_sym_not_DASHin] = ACTIONS(1229), + [anon_sym_starts_DASHwith] = ACTIONS(1229), + [anon_sym_ends_DASHwith] = ACTIONS(1229), + [anon_sym_EQ_TILDE] = ACTIONS(1231), + [anon_sym_BANG_TILDE] = ACTIONS(1231), + [anon_sym_bit_DASHand] = ACTIONS(1229), + [anon_sym_bit_DASHxor] = ACTIONS(1229), + [anon_sym_bit_DASHor] = ACTIONS(1229), + [anon_sym_and] = ACTIONS(1229), + [anon_sym_xor] = ACTIONS(1229), + [anon_sym_or] = ACTIONS(1229), + [aux_sym__val_number_decimal_token1] = ACTIONS(1229), + [aux_sym__val_number_decimal_token2] = ACTIONS(1231), + [anon_sym_DOT2] = ACTIONS(1231), + [aux_sym__val_number_decimal_token3] = ACTIONS(1231), + [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(1229), + [aux_sym__val_number_token5] = ACTIONS(1231), + [aux_sym__val_number_token6] = ACTIONS(1229), + [anon_sym_DQUOTE] = ACTIONS(1231), + [sym__str_single_quotes] = ACTIONS(1231), + [sym__str_back_ticks] = ACTIONS(1231), + [aux_sym__record_key_token2] = ACTIONS(1229), + [anon_sym_POUND] = ACTIONS(3), + }, + [696] = { + [sym_comment] = STATE(696), + [anon_sym_export] = ACTIONS(1233), + [anon_sym_alias] = ACTIONS(1233), + [anon_sym_let] = ACTIONS(1233), + [anon_sym_let_DASHenv] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [sym_cmd_identifier] = ACTIONS(1233), + [anon_sym_def] = ACTIONS(1233), + [anon_sym_export_DASHenv] = ACTIONS(1233), + [anon_sym_extern] = ACTIONS(1233), + [anon_sym_module] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(1235), + [anon_sym_DOLLAR] = ACTIONS(1235), + [anon_sym_error] = ACTIONS(1233), + [anon_sym_list] = ACTIONS(1233), + [anon_sym_GT] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_break] = ACTIONS(1233), + [anon_sym_continue] = ACTIONS(1233), + [anon_sym_for] = ACTIONS(1233), + [anon_sym_in] = ACTIONS(1233), + [anon_sym_loop] = ACTIONS(1233), + [anon_sym_make] = ACTIONS(1233), + [anon_sym_while] = ACTIONS(1233), + [anon_sym_do] = ACTIONS(1233), + [anon_sym_if] = ACTIONS(1233), + [anon_sym_else] = ACTIONS(1233), + [anon_sym_match] = ACTIONS(1233), + [anon_sym_RBRACE] = ACTIONS(1235), + [anon_sym_try] = ACTIONS(1233), + [anon_sym_catch] = ACTIONS(1233), + [anon_sym_return] = ACTIONS(1233), + [anon_sym_source] = ACTIONS(1233), + [anon_sym_source_DASHenv] = ACTIONS(1233), + [anon_sym_register] = ACTIONS(1233), + [anon_sym_hide] = ACTIONS(1233), + [anon_sym_hide_DASHenv] = ACTIONS(1233), + [anon_sym_overlay] = ACTIONS(1233), + [anon_sym_new] = ACTIONS(1233), + [anon_sym_as] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1233), + [anon_sym_STAR_STAR] = ACTIONS(1235), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_SLASH] = ACTIONS(1233), + [anon_sym_mod] = ACTIONS(1233), + [anon_sym_SLASH_SLASH] = ACTIONS(1235), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_bit_DASHshl] = ACTIONS(1233), + [anon_sym_bit_DASHshr] = ACTIONS(1233), + [anon_sym_EQ_EQ] = ACTIONS(1235), + [anon_sym_BANG_EQ] = ACTIONS(1235), + [anon_sym_LT2] = ACTIONS(1233), + [anon_sym_LT_EQ] = ACTIONS(1235), + [anon_sym_GT_EQ] = ACTIONS(1235), + [anon_sym_not_DASHin] = ACTIONS(1233), + [anon_sym_starts_DASHwith] = ACTIONS(1233), + [anon_sym_ends_DASHwith] = ACTIONS(1233), + [anon_sym_EQ_TILDE] = ACTIONS(1235), + [anon_sym_BANG_TILDE] = ACTIONS(1235), + [anon_sym_bit_DASHand] = ACTIONS(1233), + [anon_sym_bit_DASHxor] = ACTIONS(1233), + [anon_sym_bit_DASHor] = ACTIONS(1233), + [anon_sym_and] = ACTIONS(1233), + [anon_sym_xor] = ACTIONS(1233), + [anon_sym_or] = ACTIONS(1233), + [aux_sym__val_number_decimal_token1] = ACTIONS(1233), + [aux_sym__val_number_decimal_token2] = ACTIONS(1235), + [anon_sym_DOT2] = ACTIONS(1235), + [aux_sym__val_number_decimal_token3] = ACTIONS(1235), + [aux_sym__val_number_token1] = ACTIONS(1235), + [aux_sym__val_number_token2] = ACTIONS(1235), + [aux_sym__val_number_token3] = ACTIONS(1235), + [aux_sym__val_number_token4] = ACTIONS(1233), + [aux_sym__val_number_token5] = ACTIONS(1235), + [aux_sym__val_number_token6] = ACTIONS(1233), + [anon_sym_DQUOTE] = ACTIONS(1235), + [sym__str_single_quotes] = ACTIONS(1235), + [sym__str_back_ticks] = ACTIONS(1235), + [aux_sym__record_key_token2] = ACTIONS(1233), + [anon_sym_POUND] = ACTIONS(3), + }, + [697] = { + [sym_comment] = STATE(697), + [anon_sym_export] = ACTIONS(1241), + [anon_sym_alias] = ACTIONS(1241), + [anon_sym_let] = ACTIONS(1241), + [anon_sym_let_DASHenv] = ACTIONS(1241), + [anon_sym_mut] = ACTIONS(1241), + [anon_sym_const] = ACTIONS(1241), + [sym_cmd_identifier] = ACTIONS(1241), + [anon_sym_def] = ACTIONS(1241), + [anon_sym_export_DASHenv] = ACTIONS(1241), + [anon_sym_extern] = ACTIONS(1241), + [anon_sym_module] = ACTIONS(1241), + [anon_sym_use] = ACTIONS(1241), [anon_sym_LPAREN] = ACTIONS(1243), [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_error] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_in] = ACTIONS(1243), - [anon_sym_loop] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_match] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_try] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_source] = ACTIONS(1243), - [anon_sym_source_DASHenv] = ACTIONS(1243), - [anon_sym_register] = ACTIONS(1243), - [anon_sym_hide] = ACTIONS(1243), - [anon_sym_hide_DASHenv] = ACTIONS(1243), - [anon_sym_overlay] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1243), - [anon_sym_where] = ACTIONS(1243), + [anon_sym_error] = ACTIONS(1241), + [anon_sym_list] = ACTIONS(1241), + [anon_sym_GT] = ACTIONS(1241), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_break] = ACTIONS(1241), + [anon_sym_continue] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_in] = ACTIONS(1241), + [anon_sym_loop] = ACTIONS(1241), + [anon_sym_make] = ACTIONS(1241), + [anon_sym_while] = ACTIONS(1241), + [anon_sym_do] = ACTIONS(1241), + [anon_sym_if] = ACTIONS(1241), + [anon_sym_else] = ACTIONS(1241), + [anon_sym_match] = ACTIONS(1241), + [anon_sym_RBRACE] = ACTIONS(1243), + [anon_sym_try] = ACTIONS(1241), + [anon_sym_catch] = ACTIONS(1241), + [anon_sym_return] = ACTIONS(1241), + [anon_sym_source] = ACTIONS(1241), + [anon_sym_source_DASHenv] = ACTIONS(1241), + [anon_sym_register] = ACTIONS(1241), + [anon_sym_hide] = ACTIONS(1241), + [anon_sym_hide_DASHenv] = ACTIONS(1241), + [anon_sym_overlay] = ACTIONS(1241), + [anon_sym_new] = ACTIONS(1241), + [anon_sym_as] = ACTIONS(1241), + [anon_sym_STAR] = ACTIONS(1241), [anon_sym_STAR_STAR] = ACTIONS(1243), [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_SLASH] = ACTIONS(1243), - [anon_sym_mod] = ACTIONS(1243), + [anon_sym_SLASH] = ACTIONS(1241), + [anon_sym_mod] = ACTIONS(1241), [anon_sym_SLASH_SLASH] = ACTIONS(1243), - [anon_sym_PLUS] = ACTIONS(1243), - [anon_sym_bit_DASHshl] = ACTIONS(1243), - [anon_sym_bit_DASHshr] = ACTIONS(1243), + [anon_sym_PLUS] = ACTIONS(1241), + [anon_sym_bit_DASHshl] = ACTIONS(1241), + [anon_sym_bit_DASHshr] = ACTIONS(1241), [anon_sym_EQ_EQ] = ACTIONS(1243), [anon_sym_BANG_EQ] = ACTIONS(1243), - [anon_sym_LT2] = ACTIONS(1243), + [anon_sym_LT2] = ACTIONS(1241), [anon_sym_LT_EQ] = ACTIONS(1243), [anon_sym_GT_EQ] = ACTIONS(1243), - [anon_sym_not_DASHin] = ACTIONS(1243), - [anon_sym_starts_DASHwith] = ACTIONS(1243), - [anon_sym_ends_DASHwith] = ACTIONS(1243), + [anon_sym_not_DASHin] = ACTIONS(1241), + [anon_sym_starts_DASHwith] = ACTIONS(1241), + [anon_sym_ends_DASHwith] = ACTIONS(1241), [anon_sym_EQ_TILDE] = ACTIONS(1243), [anon_sym_BANG_TILDE] = ACTIONS(1243), - [anon_sym_bit_DASHand] = ACTIONS(1243), - [anon_sym_bit_DASHxor] = ACTIONS(1243), - [anon_sym_bit_DASHor] = ACTIONS(1243), - [anon_sym_and] = ACTIONS(1243), - [anon_sym_xor] = ACTIONS(1243), - [anon_sym_or] = ACTIONS(1243), - [anon_sym_not] = ACTIONS(1243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1243), - [anon_sym_DOT_DOT_LT] = ACTIONS(1243), - [anon_sym_null] = ACTIONS(1243), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), + [anon_sym_bit_DASHand] = ACTIONS(1241), + [anon_sym_bit_DASHxor] = ACTIONS(1241), + [anon_sym_bit_DASHor] = ACTIONS(1241), + [anon_sym_and] = ACTIONS(1241), + [anon_sym_xor] = ACTIONS(1241), + [anon_sym_or] = ACTIONS(1241), + [aux_sym__val_number_decimal_token1] = ACTIONS(1241), [aux_sym__val_number_decimal_token2] = ACTIONS(1243), [anon_sym_DOT2] = ACTIONS(1243), [aux_sym__val_number_decimal_token3] = ACTIONS(1243), [aux_sym__val_number_token1] = ACTIONS(1243), [aux_sym__val_number_token2] = ACTIONS(1243), [aux_sym__val_number_token3] = ACTIONS(1243), - [aux_sym__val_number_token4] = ACTIONS(1243), + [aux_sym__val_number_token4] = ACTIONS(1241), [aux_sym__val_number_token5] = ACTIONS(1243), - [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_0b] = ACTIONS(1243), - [anon_sym_0o] = ACTIONS(1243), - [anon_sym_0x] = ACTIONS(1243), - [sym_val_date] = ACTIONS(1243), + [aux_sym__val_number_token6] = ACTIONS(1241), [anon_sym_DQUOTE] = ACTIONS(1243), [sym__str_single_quotes] = ACTIONS(1243), [sym__str_back_ticks] = ACTIONS(1243), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1243), - [anon_sym_CARET] = ACTIONS(1243), - [anon_sym_POUND] = ACTIONS(113), + [aux_sym__record_key_token2] = ACTIONS(1241), + [anon_sym_POUND] = ACTIONS(3), }, - [692] = { - [sym_comment] = STATE(692), - [ts_builtin_sym_end] = ACTIONS(1356), - [anon_sym_export] = ACTIONS(1354), - [anon_sym_alias] = ACTIONS(1354), - [anon_sym_let] = ACTIONS(1354), - [anon_sym_let_DASHenv] = ACTIONS(1354), - [anon_sym_mut] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_SEMI] = ACTIONS(1354), - [sym_cmd_identifier] = ACTIONS(1354), - [anon_sym_LF] = ACTIONS(1356), - [anon_sym_def] = ACTIONS(1354), - [anon_sym_export_DASHenv] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym_module] = ACTIONS(1354), - [anon_sym_use] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1354), - [anon_sym_LPAREN] = ACTIONS(1354), - [anon_sym_DOLLAR] = ACTIONS(1354), - [anon_sym_error] = ACTIONS(1354), - [anon_sym_GT] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_in] = ACTIONS(1354), - [anon_sym_loop] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_match] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_DOT_DOT] = ACTIONS(1354), - [anon_sym_try] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_source] = ACTIONS(1354), - [anon_sym_source_DASHenv] = ACTIONS(1354), - [anon_sym_register] = ACTIONS(1354), - [anon_sym_hide] = ACTIONS(1354), - [anon_sym_hide_DASHenv] = ACTIONS(1354), - [anon_sym_overlay] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_where] = ACTIONS(1354), - [anon_sym_STAR_STAR] = ACTIONS(1354), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [anon_sym_SLASH] = ACTIONS(1354), - [anon_sym_mod] = ACTIONS(1354), - [anon_sym_SLASH_SLASH] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_bit_DASHshl] = ACTIONS(1354), - [anon_sym_bit_DASHshr] = ACTIONS(1354), - [anon_sym_EQ_EQ] = ACTIONS(1354), - [anon_sym_BANG_EQ] = ACTIONS(1354), - [anon_sym_LT2] = ACTIONS(1354), - [anon_sym_LT_EQ] = ACTIONS(1354), - [anon_sym_GT_EQ] = ACTIONS(1354), - [anon_sym_not_DASHin] = ACTIONS(1354), - [anon_sym_starts_DASHwith] = ACTIONS(1354), - [anon_sym_ends_DASHwith] = ACTIONS(1354), - [anon_sym_EQ_TILDE] = ACTIONS(1354), - [anon_sym_BANG_TILDE] = ACTIONS(1354), - [anon_sym_bit_DASHand] = ACTIONS(1354), - [anon_sym_bit_DASHxor] = ACTIONS(1354), - [anon_sym_bit_DASHor] = ACTIONS(1354), - [anon_sym_and] = ACTIONS(1354), - [anon_sym_xor] = ACTIONS(1354), - [anon_sym_or] = ACTIONS(1354), - [anon_sym_not] = ACTIONS(1354), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1354), - [anon_sym_DOT_DOT_LT] = ACTIONS(1354), - [anon_sym_null] = ACTIONS(1354), - [anon_sym_true] = ACTIONS(1354), - [anon_sym_false] = ACTIONS(1354), - [aux_sym__val_number_decimal_token1] = ACTIONS(1354), - [aux_sym__val_number_decimal_token2] = ACTIONS(1354), - [anon_sym_DOT2] = ACTIONS(1354), - [aux_sym__val_number_decimal_token3] = ACTIONS(1354), - [aux_sym__val_number_token1] = ACTIONS(1354), - [aux_sym__val_number_token2] = ACTIONS(1354), - [aux_sym__val_number_token3] = ACTIONS(1354), - [aux_sym__val_number_token4] = ACTIONS(1354), - [aux_sym__val_number_token5] = ACTIONS(1354), - [aux_sym__val_number_token6] = ACTIONS(1354), - [anon_sym_0b] = ACTIONS(1354), - [anon_sym_0o] = ACTIONS(1354), - [anon_sym_0x] = ACTIONS(1354), - [sym_val_date] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1354), - [sym__str_single_quotes] = ACTIONS(1354), - [sym__str_back_ticks] = ACTIONS(1354), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1354), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1354), - [anon_sym_CARET] = ACTIONS(1354), - [anon_sym_POUND] = ACTIONS(113), + [698] = { + [sym_pipeline_parenthesized] = STATE(2626), + [sym__ctrl_expression_parenthesized] = STATE(9595), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(10470), + [sym_where_command] = STATE(9598), + [sym__expression] = STATE(9598), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(4804), + [sym__var] = STATE(4386), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(9602), + [sym_comment] = STATE(698), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(762), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_where] = ACTIONS(187), + [anon_sym_not] = ACTIONS(191), + [anon_sym_DOT_DOT_EQ] = ACTIONS(193), + [anon_sym_DOT_DOT_LT] = ACTIONS(193), + [anon_sym_null] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [aux_sym__val_number_decimal_token1] = ACTIONS(199), + [aux_sym__val_number_decimal_token2] = ACTIONS(201), + [anon_sym_DOT2] = ACTIONS(203), + [aux_sym__val_number_decimal_token3] = ACTIONS(205), + [aux_sym__val_number_token1] = ACTIONS(207), + [aux_sym__val_number_token2] = ACTIONS(207), + [aux_sym__val_number_token3] = ACTIONS(207), + [aux_sym__val_number_token4] = ACTIONS(209), + [aux_sym__val_number_token5] = ACTIONS(207), + [aux_sym__val_number_token6] = ACTIONS(209), + [anon_sym_0b] = ACTIONS(211), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym__str_single_quotes] = ACTIONS(219), + [sym__str_back_ticks] = ACTIONS(219), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_POUND] = ACTIONS(3), }, - [693] = { - [sym_comment] = STATE(693), - [ts_builtin_sym_end] = ACTIONS(1416), - [anon_sym_export] = ACTIONS(1414), - [anon_sym_alias] = ACTIONS(1414), - [anon_sym_let] = ACTIONS(1414), - [anon_sym_let_DASHenv] = ACTIONS(1414), - [anon_sym_mut] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_SEMI] = ACTIONS(1414), - [sym_cmd_identifier] = ACTIONS(1414), - [anon_sym_LF] = ACTIONS(1416), - [anon_sym_def] = ACTIONS(1414), - [anon_sym_export_DASHenv] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym_module] = ACTIONS(1414), - [anon_sym_use] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_DOLLAR] = ACTIONS(1414), - [anon_sym_error] = ACTIONS(1414), - [anon_sym_GT] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_in] = ACTIONS(1414), - [anon_sym_loop] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1414), - [anon_sym_DOT_DOT] = ACTIONS(1414), - [anon_sym_try] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_source] = ACTIONS(1414), - [anon_sym_source_DASHenv] = ACTIONS(1414), - [anon_sym_register] = ACTIONS(1414), - [anon_sym_hide] = ACTIONS(1414), - [anon_sym_hide_DASHenv] = ACTIONS(1414), - [anon_sym_overlay] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_where] = ACTIONS(1414), - [anon_sym_STAR_STAR] = ACTIONS(1414), - [anon_sym_PLUS_PLUS] = ACTIONS(1414), - [anon_sym_SLASH] = ACTIONS(1414), - [anon_sym_mod] = ACTIONS(1414), - [anon_sym_SLASH_SLASH] = ACTIONS(1414), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_bit_DASHshl] = ACTIONS(1414), - [anon_sym_bit_DASHshr] = ACTIONS(1414), - [anon_sym_EQ_EQ] = ACTIONS(1414), - [anon_sym_BANG_EQ] = ACTIONS(1414), - [anon_sym_LT2] = ACTIONS(1414), - [anon_sym_LT_EQ] = ACTIONS(1414), - [anon_sym_GT_EQ] = ACTIONS(1414), - [anon_sym_not_DASHin] = ACTIONS(1414), - [anon_sym_starts_DASHwith] = ACTIONS(1414), - [anon_sym_ends_DASHwith] = ACTIONS(1414), - [anon_sym_EQ_TILDE] = ACTIONS(1414), - [anon_sym_BANG_TILDE] = ACTIONS(1414), - [anon_sym_bit_DASHand] = ACTIONS(1414), - [anon_sym_bit_DASHxor] = ACTIONS(1414), - [anon_sym_bit_DASHor] = ACTIONS(1414), - [anon_sym_and] = ACTIONS(1414), - [anon_sym_xor] = ACTIONS(1414), - [anon_sym_or] = ACTIONS(1414), - [anon_sym_not] = ACTIONS(1414), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1414), - [anon_sym_DOT_DOT_LT] = ACTIONS(1414), - [anon_sym_null] = ACTIONS(1414), - [anon_sym_true] = ACTIONS(1414), - [anon_sym_false] = ACTIONS(1414), - [aux_sym__val_number_decimal_token1] = ACTIONS(1414), - [aux_sym__val_number_decimal_token2] = ACTIONS(1414), - [anon_sym_DOT2] = ACTIONS(1414), - [aux_sym__val_number_decimal_token3] = ACTIONS(1414), - [aux_sym__val_number_token1] = ACTIONS(1414), - [aux_sym__val_number_token2] = ACTIONS(1414), - [aux_sym__val_number_token3] = ACTIONS(1414), - [aux_sym__val_number_token4] = ACTIONS(1414), - [aux_sym__val_number_token5] = ACTIONS(1414), - [aux_sym__val_number_token6] = ACTIONS(1414), - [anon_sym_0b] = ACTIONS(1414), - [anon_sym_0o] = ACTIONS(1414), - [anon_sym_0x] = ACTIONS(1414), - [sym_val_date] = ACTIONS(1414), - [anon_sym_DQUOTE] = ACTIONS(1414), - [sym__str_single_quotes] = ACTIONS(1414), - [sym__str_back_ticks] = ACTIONS(1414), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1414), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1414), - [anon_sym_POUND] = ACTIONS(113), + [699] = { + [sym_pipeline] = STATE(2600), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(9749), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(4804), + [sym__var] = STATE(4386), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), + [sym_comment] = STATE(699), + [aux_sym_pipeline_repeat1] = STATE(763), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_where] = ACTIONS(187), + [anon_sym_not] = ACTIONS(191), + [anon_sym_DOT_DOT_EQ] = ACTIONS(193), + [anon_sym_DOT_DOT_LT] = ACTIONS(193), + [anon_sym_null] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [aux_sym__val_number_decimal_token1] = ACTIONS(199), + [aux_sym__val_number_decimal_token2] = ACTIONS(201), + [anon_sym_DOT2] = ACTIONS(203), + [aux_sym__val_number_decimal_token3] = ACTIONS(205), + [aux_sym__val_number_token1] = ACTIONS(207), + [aux_sym__val_number_token2] = ACTIONS(207), + [aux_sym__val_number_token3] = ACTIONS(207), + [aux_sym__val_number_token4] = ACTIONS(209), + [aux_sym__val_number_token5] = ACTIONS(207), + [aux_sym__val_number_token6] = ACTIONS(209), + [anon_sym_0b] = ACTIONS(211), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym__str_single_quotes] = ACTIONS(219), + [sym__str_back_ticks] = ACTIONS(219), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(227), + [anon_sym_POUND] = ACTIONS(3), }, - [694] = { - [sym_comment] = STATE(694), - [ts_builtin_sym_end] = ACTIONS(1420), - [anon_sym_export] = ACTIONS(1418), - [anon_sym_alias] = ACTIONS(1418), - [anon_sym_let] = ACTIONS(1418), - [anon_sym_let_DASHenv] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(1418), - [sym_cmd_identifier] = ACTIONS(1418), - [anon_sym_LF] = ACTIONS(1420), - [anon_sym_def] = ACTIONS(1418), - [anon_sym_export_DASHenv] = ACTIONS(1418), - [anon_sym_extern] = ACTIONS(1418), - [anon_sym_module] = ACTIONS(1418), - [anon_sym_use] = ACTIONS(1418), - [anon_sym_LBRACK] = ACTIONS(1418), - [anon_sym_LPAREN] = ACTIONS(1418), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_error] = ACTIONS(1418), - [anon_sym_GT] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_in] = ACTIONS(1418), - [anon_sym_loop] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_match] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_DOT_DOT] = ACTIONS(1418), - [anon_sym_try] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_source] = ACTIONS(1418), - [anon_sym_source_DASHenv] = ACTIONS(1418), - [anon_sym_register] = ACTIONS(1418), - [anon_sym_hide] = ACTIONS(1418), - [anon_sym_hide_DASHenv] = ACTIONS(1418), - [anon_sym_overlay] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_where] = ACTIONS(1418), - [anon_sym_STAR_STAR] = ACTIONS(1418), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_SLASH] = ACTIONS(1418), - [anon_sym_mod] = ACTIONS(1418), - [anon_sym_SLASH_SLASH] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_bit_DASHshl] = ACTIONS(1418), - [anon_sym_bit_DASHshr] = ACTIONS(1418), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_LT2] = ACTIONS(1418), - [anon_sym_LT_EQ] = ACTIONS(1418), - [anon_sym_GT_EQ] = ACTIONS(1418), - [anon_sym_not_DASHin] = ACTIONS(1418), - [anon_sym_starts_DASHwith] = ACTIONS(1418), - [anon_sym_ends_DASHwith] = ACTIONS(1418), - [anon_sym_EQ_TILDE] = ACTIONS(1418), - [anon_sym_BANG_TILDE] = ACTIONS(1418), - [anon_sym_bit_DASHand] = ACTIONS(1418), - [anon_sym_bit_DASHxor] = ACTIONS(1418), - [anon_sym_bit_DASHor] = ACTIONS(1418), - [anon_sym_and] = ACTIONS(1418), - [anon_sym_xor] = ACTIONS(1418), - [anon_sym_or] = ACTIONS(1418), - [anon_sym_not] = ACTIONS(1418), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1418), - [anon_sym_DOT_DOT_LT] = ACTIONS(1418), - [anon_sym_null] = ACTIONS(1418), - [anon_sym_true] = ACTIONS(1418), - [anon_sym_false] = ACTIONS(1418), - [aux_sym__val_number_decimal_token1] = ACTIONS(1418), - [aux_sym__val_number_decimal_token2] = ACTIONS(1418), - [anon_sym_DOT2] = ACTIONS(1418), - [aux_sym__val_number_decimal_token3] = ACTIONS(1418), - [aux_sym__val_number_token1] = ACTIONS(1418), - [aux_sym__val_number_token2] = ACTIONS(1418), - [aux_sym__val_number_token3] = ACTIONS(1418), - [aux_sym__val_number_token4] = ACTIONS(1418), - [aux_sym__val_number_token5] = ACTIONS(1418), - [aux_sym__val_number_token6] = ACTIONS(1418), - [anon_sym_0b] = ACTIONS(1418), - [anon_sym_0o] = ACTIONS(1418), - [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1418), - [anon_sym_DQUOTE] = ACTIONS(1418), - [sym__str_single_quotes] = ACTIONS(1418), - [sym__str_back_ticks] = ACTIONS(1418), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_POUND] = ACTIONS(113), + [700] = { + [sym_pipeline] = STATE(2601), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(9749), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(4804), + [sym__var] = STATE(4386), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), + [sym_comment] = STATE(700), + [aux_sym_pipeline_repeat1] = STATE(763), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_where] = ACTIONS(187), + [anon_sym_not] = ACTIONS(191), + [anon_sym_DOT_DOT_EQ] = ACTIONS(193), + [anon_sym_DOT_DOT_LT] = ACTIONS(193), + [anon_sym_null] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [aux_sym__val_number_decimal_token1] = ACTIONS(199), + [aux_sym__val_number_decimal_token2] = ACTIONS(201), + [anon_sym_DOT2] = ACTIONS(203), + [aux_sym__val_number_decimal_token3] = ACTIONS(205), + [aux_sym__val_number_token1] = ACTIONS(207), + [aux_sym__val_number_token2] = ACTIONS(207), + [aux_sym__val_number_token3] = ACTIONS(207), + [aux_sym__val_number_token4] = ACTIONS(209), + [aux_sym__val_number_token5] = ACTIONS(207), + [aux_sym__val_number_token6] = ACTIONS(209), + [anon_sym_0b] = ACTIONS(211), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym__str_single_quotes] = ACTIONS(219), + [sym__str_back_ticks] = ACTIONS(219), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(227), + [anon_sym_POUND] = ACTIONS(3), }, - [695] = { - [sym_comment] = STATE(695), - [ts_builtin_sym_end] = ACTIONS(1408), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_alias] = ACTIONS(1406), - [anon_sym_let] = ACTIONS(1406), - [anon_sym_let_DASHenv] = ACTIONS(1406), - [anon_sym_mut] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_SEMI] = ACTIONS(1406), - [sym_cmd_identifier] = ACTIONS(1406), - [anon_sym_LF] = ACTIONS(1408), - [anon_sym_def] = ACTIONS(1406), - [anon_sym_export_DASHenv] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_use] = ACTIONS(1406), - [anon_sym_LBRACK] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1406), - [anon_sym_DOLLAR] = ACTIONS(1406), - [anon_sym_error] = ACTIONS(1406), - [anon_sym_GT] = ACTIONS(1406), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_in] = ACTIONS(1406), - [anon_sym_loop] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_match] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_DOT_DOT] = ACTIONS(1406), - [anon_sym_try] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_source] = ACTIONS(1406), - [anon_sym_source_DASHenv] = ACTIONS(1406), - [anon_sym_register] = ACTIONS(1406), - [anon_sym_hide] = ACTIONS(1406), - [anon_sym_hide_DASHenv] = ACTIONS(1406), - [anon_sym_overlay] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1406), - [anon_sym_where] = ACTIONS(1406), - [anon_sym_STAR_STAR] = ACTIONS(1406), - [anon_sym_PLUS_PLUS] = ACTIONS(1406), - [anon_sym_SLASH] = ACTIONS(1406), - [anon_sym_mod] = ACTIONS(1406), - [anon_sym_SLASH_SLASH] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_bit_DASHshl] = ACTIONS(1406), - [anon_sym_bit_DASHshr] = ACTIONS(1406), - [anon_sym_EQ_EQ] = ACTIONS(1406), - [anon_sym_BANG_EQ] = ACTIONS(1406), - [anon_sym_LT2] = ACTIONS(1406), - [anon_sym_LT_EQ] = ACTIONS(1406), - [anon_sym_GT_EQ] = ACTIONS(1406), - [anon_sym_not_DASHin] = ACTIONS(1406), - [anon_sym_starts_DASHwith] = ACTIONS(1406), - [anon_sym_ends_DASHwith] = ACTIONS(1406), - [anon_sym_EQ_TILDE] = ACTIONS(1406), - [anon_sym_BANG_TILDE] = ACTIONS(1406), - [anon_sym_bit_DASHand] = ACTIONS(1406), - [anon_sym_bit_DASHxor] = ACTIONS(1406), - [anon_sym_bit_DASHor] = ACTIONS(1406), - [anon_sym_and] = ACTIONS(1406), - [anon_sym_xor] = ACTIONS(1406), - [anon_sym_or] = ACTIONS(1406), - [anon_sym_not] = ACTIONS(1406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1406), - [anon_sym_DOT_DOT_LT] = ACTIONS(1406), - [anon_sym_null] = ACTIONS(1406), - [anon_sym_true] = ACTIONS(1406), - [anon_sym_false] = ACTIONS(1406), - [aux_sym__val_number_decimal_token1] = ACTIONS(1406), - [aux_sym__val_number_decimal_token2] = ACTIONS(1406), - [anon_sym_DOT2] = ACTIONS(1406), - [aux_sym__val_number_decimal_token3] = ACTIONS(1406), - [aux_sym__val_number_token1] = ACTIONS(1406), - [aux_sym__val_number_token2] = ACTIONS(1406), - [aux_sym__val_number_token3] = ACTIONS(1406), - [aux_sym__val_number_token4] = ACTIONS(1406), - [aux_sym__val_number_token5] = ACTIONS(1406), - [aux_sym__val_number_token6] = ACTIONS(1406), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1406), - [anon_sym_0x] = ACTIONS(1406), - [sym_val_date] = ACTIONS(1406), - [anon_sym_DQUOTE] = ACTIONS(1406), - [sym__str_single_quotes] = ACTIONS(1406), - [sym__str_back_ticks] = ACTIONS(1406), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1406), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1406), - [anon_sym_CARET] = ACTIONS(1406), - [anon_sym_POUND] = ACTIONS(113), + [701] = { + [sym_pipeline_parenthesized] = STATE(2566), + [sym__ctrl_expression_parenthesized] = STATE(9595), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(10470), + [sym_where_command] = STATE(9598), + [sym__expression] = STATE(9598), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(4804), + [sym__var] = STATE(4386), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(9602), + [sym_comment] = STATE(701), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(762), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_where] = ACTIONS(187), + [anon_sym_not] = ACTIONS(191), + [anon_sym_DOT_DOT_EQ] = ACTIONS(193), + [anon_sym_DOT_DOT_LT] = ACTIONS(193), + [anon_sym_null] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [aux_sym__val_number_decimal_token1] = ACTIONS(199), + [aux_sym__val_number_decimal_token2] = ACTIONS(201), + [anon_sym_DOT2] = ACTIONS(203), + [aux_sym__val_number_decimal_token3] = ACTIONS(205), + [aux_sym__val_number_token1] = ACTIONS(207), + [aux_sym__val_number_token2] = ACTIONS(207), + [aux_sym__val_number_token3] = ACTIONS(207), + [aux_sym__val_number_token4] = ACTIONS(209), + [aux_sym__val_number_token5] = ACTIONS(207), + [aux_sym__val_number_token6] = ACTIONS(209), + [anon_sym_0b] = ACTIONS(211), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym__str_single_quotes] = ACTIONS(219), + [sym__str_back_ticks] = ACTIONS(219), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_POUND] = ACTIONS(3), }, - [696] = { - [sym_comment] = STATE(696), - [ts_builtin_sym_end] = ACTIONS(1360), - [anon_sym_export] = ACTIONS(1358), - [anon_sym_alias] = ACTIONS(1358), - [anon_sym_let] = ACTIONS(1358), - [anon_sym_let_DASHenv] = ACTIONS(1358), - [anon_sym_mut] = ACTIONS(1358), - [anon_sym_const] = ACTIONS(1358), - [anon_sym_SEMI] = ACTIONS(1358), - [sym_cmd_identifier] = ACTIONS(1358), - [anon_sym_LF] = ACTIONS(1360), - [anon_sym_def] = ACTIONS(1358), - [anon_sym_export_DASHenv] = ACTIONS(1358), - [anon_sym_extern] = ACTIONS(1358), - [anon_sym_module] = ACTIONS(1358), - [anon_sym_use] = ACTIONS(1358), - [anon_sym_LBRACK] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1358), - [anon_sym_DOLLAR] = ACTIONS(1358), - [anon_sym_error] = ACTIONS(1358), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_in] = ACTIONS(1358), - [anon_sym_loop] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_do] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_match] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_DOT_DOT] = ACTIONS(1358), - [anon_sym_try] = ACTIONS(1358), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_source] = ACTIONS(1358), - [anon_sym_source_DASHenv] = ACTIONS(1358), - [anon_sym_register] = ACTIONS(1358), - [anon_sym_hide] = ACTIONS(1358), - [anon_sym_hide_DASHenv] = ACTIONS(1358), - [anon_sym_overlay] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_where] = ACTIONS(1358), - [anon_sym_STAR_STAR] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_SLASH] = ACTIONS(1358), - [anon_sym_mod] = ACTIONS(1358), - [anon_sym_SLASH_SLASH] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_bit_DASHshl] = ACTIONS(1358), - [anon_sym_bit_DASHshr] = ACTIONS(1358), - [anon_sym_EQ_EQ] = ACTIONS(1358), - [anon_sym_BANG_EQ] = ACTIONS(1358), - [anon_sym_LT2] = ACTIONS(1358), - [anon_sym_LT_EQ] = ACTIONS(1358), - [anon_sym_GT_EQ] = ACTIONS(1358), - [anon_sym_not_DASHin] = ACTIONS(1358), - [anon_sym_starts_DASHwith] = ACTIONS(1358), - [anon_sym_ends_DASHwith] = ACTIONS(1358), - [anon_sym_EQ_TILDE] = ACTIONS(1358), - [anon_sym_BANG_TILDE] = ACTIONS(1358), - [anon_sym_bit_DASHand] = ACTIONS(1358), - [anon_sym_bit_DASHxor] = ACTIONS(1358), - [anon_sym_bit_DASHor] = ACTIONS(1358), - [anon_sym_and] = ACTIONS(1358), - [anon_sym_xor] = ACTIONS(1358), - [anon_sym_or] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1358), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1358), - [anon_sym_DOT_DOT_LT] = ACTIONS(1358), - [anon_sym_null] = ACTIONS(1358), - [anon_sym_true] = ACTIONS(1358), - [anon_sym_false] = ACTIONS(1358), - [aux_sym__val_number_decimal_token1] = ACTIONS(1358), - [aux_sym__val_number_decimal_token2] = ACTIONS(1358), - [anon_sym_DOT2] = ACTIONS(1358), - [aux_sym__val_number_decimal_token3] = ACTIONS(1358), - [aux_sym__val_number_token1] = ACTIONS(1358), - [aux_sym__val_number_token2] = ACTIONS(1358), - [aux_sym__val_number_token3] = ACTIONS(1358), - [aux_sym__val_number_token4] = ACTIONS(1358), - [aux_sym__val_number_token5] = ACTIONS(1358), - [aux_sym__val_number_token6] = ACTIONS(1358), - [anon_sym_0b] = ACTIONS(1358), - [anon_sym_0o] = ACTIONS(1358), - [anon_sym_0x] = ACTIONS(1358), - [sym_val_date] = ACTIONS(1358), - [anon_sym_DQUOTE] = ACTIONS(1358), - [sym__str_single_quotes] = ACTIONS(1358), - [sym__str_back_ticks] = ACTIONS(1358), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1358), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1358), - [anon_sym_CARET] = ACTIONS(1358), - [anon_sym_POUND] = ACTIONS(113), + [702] = { + [sym_pipeline_parenthesized] = STATE(2530), + [sym__ctrl_expression_parenthesized] = STATE(9595), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(10470), + [sym_where_command] = STATE(9598), + [sym__expression] = STATE(9598), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(4804), + [sym__var] = STATE(4386), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(9602), + [sym_comment] = STATE(702), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(762), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_where] = ACTIONS(187), + [anon_sym_not] = ACTIONS(191), + [anon_sym_DOT_DOT_EQ] = ACTIONS(193), + [anon_sym_DOT_DOT_LT] = ACTIONS(193), + [anon_sym_null] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [aux_sym__val_number_decimal_token1] = ACTIONS(199), + [aux_sym__val_number_decimal_token2] = ACTIONS(201), + [anon_sym_DOT2] = ACTIONS(203), + [aux_sym__val_number_decimal_token3] = ACTIONS(205), + [aux_sym__val_number_token1] = ACTIONS(207), + [aux_sym__val_number_token2] = ACTIONS(207), + [aux_sym__val_number_token3] = ACTIONS(207), + [aux_sym__val_number_token4] = ACTIONS(209), + [aux_sym__val_number_token5] = ACTIONS(207), + [aux_sym__val_number_token6] = ACTIONS(209), + [anon_sym_0b] = ACTIONS(211), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym__str_single_quotes] = ACTIONS(219), + [sym__str_back_ticks] = ACTIONS(219), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_POUND] = ACTIONS(3), }, - [697] = { - [sym_comment] = STATE(697), - [ts_builtin_sym_end] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(1059), - [anon_sym_alias] = ACTIONS(1059), - [anon_sym_let] = ACTIONS(1059), - [anon_sym_let_DASHenv] = ACTIONS(1059), - [anon_sym_mut] = ACTIONS(1059), - [anon_sym_const] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [sym_cmd_identifier] = ACTIONS(1059), - [anon_sym_LF] = ACTIONS(1061), - [anon_sym_def] = ACTIONS(1059), - [anon_sym_export_DASHenv] = ACTIONS(1059), - [anon_sym_extern] = ACTIONS(1059), - [anon_sym_module] = ACTIONS(1059), - [anon_sym_use] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_error] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_break] = ACTIONS(1059), - [anon_sym_continue] = ACTIONS(1059), - [anon_sym_for] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1059), - [anon_sym_loop] = ACTIONS(1059), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_do] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1059), - [anon_sym_match] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_try] = ACTIONS(1059), - [anon_sym_return] = ACTIONS(1059), - [anon_sym_source] = ACTIONS(1059), - [anon_sym_source_DASHenv] = ACTIONS(1059), - [anon_sym_register] = ACTIONS(1059), - [anon_sym_hide] = ACTIONS(1059), - [anon_sym_hide_DASHenv] = ACTIONS(1059), - [anon_sym_overlay] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(1059), - [anon_sym_STAR_STAR] = ACTIONS(1059), - [anon_sym_PLUS_PLUS] = ACTIONS(1059), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_mod] = ACTIONS(1059), - [anon_sym_SLASH_SLASH] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_bit_DASHshl] = ACTIONS(1059), - [anon_sym_bit_DASHshr] = ACTIONS(1059), - [anon_sym_EQ_EQ] = ACTIONS(1059), - [anon_sym_BANG_EQ] = ACTIONS(1059), - [anon_sym_LT2] = ACTIONS(1059), - [anon_sym_LT_EQ] = ACTIONS(1059), - [anon_sym_GT_EQ] = ACTIONS(1059), - [anon_sym_not_DASHin] = ACTIONS(1059), - [anon_sym_starts_DASHwith] = ACTIONS(1059), - [anon_sym_ends_DASHwith] = ACTIONS(1059), - [anon_sym_EQ_TILDE] = ACTIONS(1059), - [anon_sym_BANG_TILDE] = ACTIONS(1059), - [anon_sym_bit_DASHand] = ACTIONS(1059), - [anon_sym_bit_DASHxor] = ACTIONS(1059), - [anon_sym_bit_DASHor] = ACTIONS(1059), - [anon_sym_and] = ACTIONS(1059), - [anon_sym_xor] = ACTIONS(1059), - [anon_sym_or] = ACTIONS(1059), - [anon_sym_not] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1059), - [anon_sym_DOT_DOT_LT] = ACTIONS(1059), - [anon_sym_null] = ACTIONS(1059), - [anon_sym_true] = ACTIONS(1059), - [anon_sym_false] = ACTIONS(1059), - [aux_sym__val_number_decimal_token1] = ACTIONS(1059), - [aux_sym__val_number_decimal_token2] = ACTIONS(1059), - [anon_sym_DOT2] = ACTIONS(1059), - [aux_sym__val_number_decimal_token3] = ACTIONS(1059), - [aux_sym__val_number_token1] = ACTIONS(1059), - [aux_sym__val_number_token2] = ACTIONS(1059), - [aux_sym__val_number_token3] = ACTIONS(1059), - [aux_sym__val_number_token4] = ACTIONS(1059), - [aux_sym__val_number_token5] = ACTIONS(1059), - [aux_sym__val_number_token6] = ACTIONS(1059), - [anon_sym_0b] = ACTIONS(1059), - [anon_sym_0o] = ACTIONS(1059), - [anon_sym_0x] = ACTIONS(1059), - [sym_val_date] = ACTIONS(1059), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym__str_single_quotes] = ACTIONS(1059), - [sym__str_back_ticks] = ACTIONS(1059), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1059), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1059), - [anon_sym_CARET] = ACTIONS(1059), - [anon_sym_POUND] = ACTIONS(113), + [703] = { + [sym_pipeline] = STATE(2542), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(9749), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(4804), + [sym__var] = STATE(4386), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), + [sym_comment] = STATE(703), + [aux_sym_pipeline_repeat1] = STATE(763), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_where] = ACTIONS(187), + [anon_sym_not] = ACTIONS(191), + [anon_sym_DOT_DOT_EQ] = ACTIONS(193), + [anon_sym_DOT_DOT_LT] = ACTIONS(193), + [anon_sym_null] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [aux_sym__val_number_decimal_token1] = ACTIONS(199), + [aux_sym__val_number_decimal_token2] = ACTIONS(201), + [anon_sym_DOT2] = ACTIONS(203), + [aux_sym__val_number_decimal_token3] = ACTIONS(205), + [aux_sym__val_number_token1] = ACTIONS(207), + [aux_sym__val_number_token2] = ACTIONS(207), + [aux_sym__val_number_token3] = ACTIONS(207), + [aux_sym__val_number_token4] = ACTIONS(209), + [aux_sym__val_number_token5] = ACTIONS(207), + [aux_sym__val_number_token6] = ACTIONS(209), + [anon_sym_0b] = ACTIONS(211), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym__str_single_quotes] = ACTIONS(219), + [sym__str_back_ticks] = ACTIONS(219), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(227), + [anon_sym_POUND] = ACTIONS(3), }, - [698] = { - [sym_comment] = STATE(698), - [ts_builtin_sym_end] = ACTIONS(1255), + [704] = { + [sym_pipeline] = STATE(2543), + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(9749), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(4804), + [sym__var] = STATE(4386), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), + [sym_comment] = STATE(704), + [aux_sym_pipeline_repeat1] = STATE(763), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_where] = ACTIONS(187), + [anon_sym_not] = ACTIONS(191), + [anon_sym_DOT_DOT_EQ] = ACTIONS(193), + [anon_sym_DOT_DOT_LT] = ACTIONS(193), + [anon_sym_null] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [aux_sym__val_number_decimal_token1] = ACTIONS(199), + [aux_sym__val_number_decimal_token2] = ACTIONS(201), + [anon_sym_DOT2] = ACTIONS(203), + [aux_sym__val_number_decimal_token3] = ACTIONS(205), + [aux_sym__val_number_token1] = ACTIONS(207), + [aux_sym__val_number_token2] = ACTIONS(207), + [aux_sym__val_number_token3] = ACTIONS(207), + [aux_sym__val_number_token4] = ACTIONS(209), + [aux_sym__val_number_token5] = ACTIONS(207), + [aux_sym__val_number_token6] = ACTIONS(209), + [anon_sym_0b] = ACTIONS(211), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym__str_single_quotes] = ACTIONS(219), + [sym__str_back_ticks] = ACTIONS(219), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(227), + [anon_sym_POUND] = ACTIONS(3), + }, + [705] = { + [sym_pipeline_parenthesized] = STATE(2548), + [sym__ctrl_expression_parenthesized] = STATE(9595), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(10470), + [sym_where_command] = STATE(9598), + [sym__expression] = STATE(9598), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(4804), + [sym__var] = STATE(4386), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(9602), + [sym_comment] = STATE(705), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(762), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_where] = ACTIONS(187), + [anon_sym_not] = ACTIONS(191), + [anon_sym_DOT_DOT_EQ] = ACTIONS(193), + [anon_sym_DOT_DOT_LT] = ACTIONS(193), + [anon_sym_null] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [aux_sym__val_number_decimal_token1] = ACTIONS(199), + [aux_sym__val_number_decimal_token2] = ACTIONS(201), + [anon_sym_DOT2] = ACTIONS(203), + [aux_sym__val_number_decimal_token3] = ACTIONS(205), + [aux_sym__val_number_token1] = ACTIONS(207), + [aux_sym__val_number_token2] = ACTIONS(207), + [aux_sym__val_number_token3] = ACTIONS(207), + [aux_sym__val_number_token4] = ACTIONS(209), + [aux_sym__val_number_token5] = ACTIONS(207), + [aux_sym__val_number_token6] = ACTIONS(209), + [anon_sym_0b] = ACTIONS(211), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym__str_single_quotes] = ACTIONS(219), + [sym__str_back_ticks] = ACTIONS(219), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_POUND] = ACTIONS(3), + }, + [706] = { + [sym_pipeline_parenthesized] = STATE(2549), + [sym__ctrl_expression_parenthesized] = STATE(9595), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(10470), + [sym_where_command] = STATE(9598), + [sym__expression] = STATE(9598), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(4804), + [sym__var] = STATE(4386), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(9602), + [sym_comment] = STATE(706), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(762), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_where] = ACTIONS(187), + [anon_sym_not] = ACTIONS(191), + [anon_sym_DOT_DOT_EQ] = ACTIONS(193), + [anon_sym_DOT_DOT_LT] = ACTIONS(193), + [anon_sym_null] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [aux_sym__val_number_decimal_token1] = ACTIONS(199), + [aux_sym__val_number_decimal_token2] = ACTIONS(201), + [anon_sym_DOT2] = ACTIONS(203), + [aux_sym__val_number_decimal_token3] = ACTIONS(205), + [aux_sym__val_number_token1] = ACTIONS(207), + [aux_sym__val_number_token2] = ACTIONS(207), + [aux_sym__val_number_token3] = ACTIONS(207), + [aux_sym__val_number_token4] = ACTIONS(209), + [aux_sym__val_number_token5] = ACTIONS(207), + [aux_sym__val_number_token6] = ACTIONS(209), + [anon_sym_0b] = ACTIONS(211), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym__str_single_quotes] = ACTIONS(219), + [sym__str_back_ticks] = ACTIONS(219), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_POUND] = ACTIONS(3), + }, + [707] = { + [sym_comment] = STATE(707), [anon_sym_export] = ACTIONS(1253), [anon_sym_alias] = ACTIONS(1253), [anon_sym_let] = ACTIONS(1253), [anon_sym_let_DASHenv] = ACTIONS(1253), [anon_sym_mut] = ACTIONS(1253), [anon_sym_const] = ACTIONS(1253), - [anon_sym_SEMI] = ACTIONS(1253), [sym_cmd_identifier] = ACTIONS(1253), - [anon_sym_LF] = ACTIONS(1255), [anon_sym_def] = ACTIONS(1253), [anon_sym_export_DASHenv] = ACTIONS(1253), [anon_sym_extern] = ACTIONS(1253), [anon_sym_module] = ACTIONS(1253), [anon_sym_use] = ACTIONS(1253), - [anon_sym_LBRACK] = ACTIONS(1253), - [anon_sym_LPAREN] = ACTIONS(1253), - [anon_sym_DOLLAR] = ACTIONS(1253), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_DOLLAR] = ACTIONS(1255), [anon_sym_error] = ACTIONS(1253), + [anon_sym_list] = ACTIONS(1253), [anon_sym_GT] = ACTIONS(1253), [anon_sym_DASH] = ACTIONS(1253), [anon_sym_break] = ACTIONS(1253), @@ -169047,13 +164347,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1253), [anon_sym_in] = ACTIONS(1253), [anon_sym_loop] = ACTIONS(1253), + [anon_sym_make] = ACTIONS(1253), [anon_sym_while] = ACTIONS(1253), [anon_sym_do] = ACTIONS(1253), [anon_sym_if] = ACTIONS(1253), + [anon_sym_else] = ACTIONS(1253), [anon_sym_match] = ACTIONS(1253), - [anon_sym_LBRACE] = ACTIONS(1253), - [anon_sym_DOT_DOT] = ACTIONS(1253), + [anon_sym_RBRACE] = ACTIONS(1255), [anon_sym_try] = ACTIONS(1253), + [anon_sym_catch] = ACTIONS(1253), [anon_sym_return] = ACTIONS(1253), [anon_sym_source] = ACTIONS(1253), [anon_sym_source_DASHenv] = ACTIONS(1253), @@ -169061,11760 +164363,15054 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(1253), [anon_sym_hide_DASHenv] = ACTIONS(1253), [anon_sym_overlay] = ACTIONS(1253), + [anon_sym_new] = ACTIONS(1253), + [anon_sym_as] = ACTIONS(1253), [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_where] = ACTIONS(1253), - [anon_sym_STAR_STAR] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_STAR_STAR] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), [anon_sym_SLASH] = ACTIONS(1253), [anon_sym_mod] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(1255), [anon_sym_PLUS] = ACTIONS(1253), [anon_sym_bit_DASHshl] = ACTIONS(1253), [anon_sym_bit_DASHshr] = ACTIONS(1253), - [anon_sym_EQ_EQ] = ACTIONS(1253), - [anon_sym_BANG_EQ] = ACTIONS(1253), + [anon_sym_EQ_EQ] = ACTIONS(1255), + [anon_sym_BANG_EQ] = ACTIONS(1255), [anon_sym_LT2] = ACTIONS(1253), - [anon_sym_LT_EQ] = ACTIONS(1253), - [anon_sym_GT_EQ] = ACTIONS(1253), + [anon_sym_LT_EQ] = ACTIONS(1255), + [anon_sym_GT_EQ] = ACTIONS(1255), [anon_sym_not_DASHin] = ACTIONS(1253), [anon_sym_starts_DASHwith] = ACTIONS(1253), [anon_sym_ends_DASHwith] = ACTIONS(1253), - [anon_sym_EQ_TILDE] = ACTIONS(1253), - [anon_sym_BANG_TILDE] = ACTIONS(1253), + [anon_sym_EQ_TILDE] = ACTIONS(1255), + [anon_sym_BANG_TILDE] = ACTIONS(1255), [anon_sym_bit_DASHand] = ACTIONS(1253), [anon_sym_bit_DASHxor] = ACTIONS(1253), [anon_sym_bit_DASHor] = ACTIONS(1253), [anon_sym_and] = ACTIONS(1253), [anon_sym_xor] = ACTIONS(1253), [anon_sym_or] = ACTIONS(1253), - [anon_sym_not] = ACTIONS(1253), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1253), - [anon_sym_DOT_DOT_LT] = ACTIONS(1253), - [anon_sym_null] = ACTIONS(1253), - [anon_sym_true] = ACTIONS(1253), - [anon_sym_false] = ACTIONS(1253), [aux_sym__val_number_decimal_token1] = ACTIONS(1253), - [aux_sym__val_number_decimal_token2] = ACTIONS(1253), - [anon_sym_DOT2] = ACTIONS(1253), - [aux_sym__val_number_decimal_token3] = ACTIONS(1253), - [aux_sym__val_number_token1] = ACTIONS(1253), - [aux_sym__val_number_token2] = ACTIONS(1253), - [aux_sym__val_number_token3] = ACTIONS(1253), + [aux_sym__val_number_decimal_token2] = ACTIONS(1255), + [anon_sym_DOT2] = ACTIONS(1255), + [aux_sym__val_number_decimal_token3] = ACTIONS(1255), + [aux_sym__val_number_token1] = ACTIONS(1255), + [aux_sym__val_number_token2] = ACTIONS(1255), + [aux_sym__val_number_token3] = ACTIONS(1255), [aux_sym__val_number_token4] = ACTIONS(1253), - [aux_sym__val_number_token5] = ACTIONS(1253), + [aux_sym__val_number_token5] = ACTIONS(1255), [aux_sym__val_number_token6] = ACTIONS(1253), - [anon_sym_0b] = ACTIONS(1253), - [anon_sym_0o] = ACTIONS(1253), - [anon_sym_0x] = ACTIONS(1253), - [sym_val_date] = ACTIONS(1253), - [anon_sym_DQUOTE] = ACTIONS(1253), - [sym__str_single_quotes] = ACTIONS(1253), - [sym__str_back_ticks] = ACTIONS(1253), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1253), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1253), - [anon_sym_CARET] = ACTIONS(1253), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(1255), + [sym__str_single_quotes] = ACTIONS(1255), + [sym__str_back_ticks] = ACTIONS(1255), + [aux_sym__record_key_token2] = ACTIONS(1253), + [anon_sym_POUND] = ACTIONS(3), }, - [699] = { - [sym_comment] = STATE(699), - [ts_builtin_sym_end] = ACTIONS(1275), - [anon_sym_export] = ACTIONS(1273), - [anon_sym_alias] = ACTIONS(1273), - [anon_sym_let] = ACTIONS(1273), - [anon_sym_let_DASHenv] = ACTIONS(1273), - [anon_sym_mut] = ACTIONS(1273), - [anon_sym_const] = ACTIONS(1273), - [anon_sym_SEMI] = ACTIONS(1273), - [sym_cmd_identifier] = ACTIONS(1273), - [anon_sym_LF] = ACTIONS(1275), - [anon_sym_def] = ACTIONS(1273), - [anon_sym_export_DASHenv] = ACTIONS(1273), - [anon_sym_extern] = ACTIONS(1273), - [anon_sym_module] = ACTIONS(1273), - [anon_sym_use] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1273), + [708] = { + [sym_comment] = STATE(708), + [anon_sym_export] = ACTIONS(1257), + [anon_sym_alias] = ACTIONS(1257), + [anon_sym_let] = ACTIONS(1257), + [anon_sym_let_DASHenv] = ACTIONS(1257), + [anon_sym_mut] = ACTIONS(1257), + [anon_sym_const] = ACTIONS(1257), + [sym_cmd_identifier] = ACTIONS(1257), + [anon_sym_def] = ACTIONS(1257), + [anon_sym_export_DASHenv] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(1257), + [anon_sym_module] = ACTIONS(1257), + [anon_sym_use] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1259), + [anon_sym_DOLLAR] = ACTIONS(1259), + [anon_sym_error] = ACTIONS(1257), + [anon_sym_list] = ACTIONS(1257), + [anon_sym_GT] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_break] = ACTIONS(1257), + [anon_sym_continue] = ACTIONS(1257), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_in] = ACTIONS(1257), + [anon_sym_loop] = ACTIONS(1257), + [anon_sym_make] = ACTIONS(1257), + [anon_sym_while] = ACTIONS(1257), + [anon_sym_do] = ACTIONS(1257), + [anon_sym_if] = ACTIONS(1257), + [anon_sym_else] = ACTIONS(1257), + [anon_sym_match] = ACTIONS(1257), + [anon_sym_RBRACE] = ACTIONS(1259), + [anon_sym_try] = ACTIONS(1257), + [anon_sym_catch] = ACTIONS(1257), + [anon_sym_return] = ACTIONS(1257), + [anon_sym_source] = ACTIONS(1257), + [anon_sym_source_DASHenv] = ACTIONS(1257), + [anon_sym_register] = ACTIONS(1257), + [anon_sym_hide] = ACTIONS(1257), + [anon_sym_hide_DASHenv] = ACTIONS(1257), + [anon_sym_overlay] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(1257), + [anon_sym_as] = ACTIONS(1257), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_STAR_STAR] = ACTIONS(1259), + [anon_sym_PLUS_PLUS] = ACTIONS(1259), + [anon_sym_SLASH] = ACTIONS(1257), + [anon_sym_mod] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(1259), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_bit_DASHshl] = ACTIONS(1257), + [anon_sym_bit_DASHshr] = ACTIONS(1257), + [anon_sym_EQ_EQ] = ACTIONS(1259), + [anon_sym_BANG_EQ] = ACTIONS(1259), + [anon_sym_LT2] = ACTIONS(1257), + [anon_sym_LT_EQ] = ACTIONS(1259), + [anon_sym_GT_EQ] = ACTIONS(1259), + [anon_sym_not_DASHin] = ACTIONS(1257), + [anon_sym_starts_DASHwith] = ACTIONS(1257), + [anon_sym_ends_DASHwith] = ACTIONS(1257), + [anon_sym_EQ_TILDE] = ACTIONS(1259), + [anon_sym_BANG_TILDE] = ACTIONS(1259), + [anon_sym_bit_DASHand] = ACTIONS(1257), + [anon_sym_bit_DASHxor] = ACTIONS(1257), + [anon_sym_bit_DASHor] = ACTIONS(1257), + [anon_sym_and] = ACTIONS(1257), + [anon_sym_xor] = ACTIONS(1257), + [anon_sym_or] = ACTIONS(1257), + [aux_sym__val_number_decimal_token1] = ACTIONS(1257), + [aux_sym__val_number_decimal_token2] = ACTIONS(1259), + [anon_sym_DOT2] = ACTIONS(1259), + [aux_sym__val_number_decimal_token3] = ACTIONS(1259), + [aux_sym__val_number_token1] = ACTIONS(1259), + [aux_sym__val_number_token2] = ACTIONS(1259), + [aux_sym__val_number_token3] = ACTIONS(1259), + [aux_sym__val_number_token4] = ACTIONS(1257), + [aux_sym__val_number_token5] = ACTIONS(1259), + [aux_sym__val_number_token6] = ACTIONS(1257), + [anon_sym_DQUOTE] = ACTIONS(1259), + [sym__str_single_quotes] = ACTIONS(1259), + [sym__str_back_ticks] = ACTIONS(1259), + [aux_sym__record_key_token2] = ACTIONS(1257), + [anon_sym_POUND] = ACTIONS(3), + }, + [709] = { + [sym_comment] = STATE(709), + [anon_sym_export] = ACTIONS(1261), + [anon_sym_alias] = ACTIONS(1261), + [anon_sym_let] = ACTIONS(1261), + [anon_sym_let_DASHenv] = ACTIONS(1261), + [anon_sym_mut] = ACTIONS(1261), + [anon_sym_const] = ACTIONS(1261), + [sym_cmd_identifier] = ACTIONS(1261), + [anon_sym_def] = ACTIONS(1261), + [anon_sym_export_DASHenv] = ACTIONS(1261), + [anon_sym_extern] = ACTIONS(1261), + [anon_sym_module] = ACTIONS(1261), + [anon_sym_use] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_DOLLAR] = ACTIONS(1263), + [anon_sym_error] = ACTIONS(1261), + [anon_sym_list] = ACTIONS(1261), + [anon_sym_GT] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1261), + [anon_sym_break] = ACTIONS(1261), + [anon_sym_continue] = ACTIONS(1261), + [anon_sym_for] = ACTIONS(1261), + [anon_sym_in] = ACTIONS(1261), + [anon_sym_loop] = ACTIONS(1261), + [anon_sym_make] = ACTIONS(1261), + [anon_sym_while] = ACTIONS(1261), + [anon_sym_do] = ACTIONS(1261), + [anon_sym_if] = ACTIONS(1261), + [anon_sym_else] = ACTIONS(1261), + [anon_sym_match] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1261), + [anon_sym_catch] = ACTIONS(1261), + [anon_sym_return] = ACTIONS(1261), + [anon_sym_source] = ACTIONS(1261), + [anon_sym_source_DASHenv] = ACTIONS(1261), + [anon_sym_register] = ACTIONS(1261), + [anon_sym_hide] = ACTIONS(1261), + [anon_sym_hide_DASHenv] = ACTIONS(1261), + [anon_sym_overlay] = ACTIONS(1261), + [anon_sym_new] = ACTIONS(1261), + [anon_sym_as] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_STAR_STAR] = ACTIONS(1263), + [anon_sym_PLUS_PLUS] = ACTIONS(1263), + [anon_sym_SLASH] = ACTIONS(1261), + [anon_sym_mod] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1261), + [anon_sym_bit_DASHshl] = ACTIONS(1261), + [anon_sym_bit_DASHshr] = ACTIONS(1261), + [anon_sym_EQ_EQ] = ACTIONS(1263), + [anon_sym_BANG_EQ] = ACTIONS(1263), + [anon_sym_LT2] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1263), + [anon_sym_not_DASHin] = ACTIONS(1261), + [anon_sym_starts_DASHwith] = ACTIONS(1261), + [anon_sym_ends_DASHwith] = ACTIONS(1261), + [anon_sym_EQ_TILDE] = ACTIONS(1263), + [anon_sym_BANG_TILDE] = ACTIONS(1263), + [anon_sym_bit_DASHand] = ACTIONS(1261), + [anon_sym_bit_DASHxor] = ACTIONS(1261), + [anon_sym_bit_DASHor] = ACTIONS(1261), + [anon_sym_and] = ACTIONS(1261), + [anon_sym_xor] = ACTIONS(1261), + [anon_sym_or] = ACTIONS(1261), + [aux_sym__val_number_decimal_token1] = ACTIONS(1261), + [aux_sym__val_number_decimal_token2] = ACTIONS(1263), + [anon_sym_DOT2] = ACTIONS(1263), + [aux_sym__val_number_decimal_token3] = ACTIONS(1263), + [aux_sym__val_number_token1] = ACTIONS(1263), + [aux_sym__val_number_token2] = ACTIONS(1263), + [aux_sym__val_number_token3] = ACTIONS(1263), + [aux_sym__val_number_token4] = ACTIONS(1261), + [aux_sym__val_number_token5] = ACTIONS(1263), + [aux_sym__val_number_token6] = ACTIONS(1261), + [anon_sym_DQUOTE] = ACTIONS(1263), + [sym__str_single_quotes] = ACTIONS(1263), + [sym__str_back_ticks] = ACTIONS(1263), + [aux_sym__record_key_token2] = ACTIONS(1261), + [anon_sym_POUND] = ACTIONS(3), + }, + [710] = { + [sym_comment] = STATE(710), + [anon_sym_export] = ACTIONS(1265), + [anon_sym_alias] = ACTIONS(1265), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_let_DASHenv] = ACTIONS(1265), + [anon_sym_mut] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [sym_cmd_identifier] = ACTIONS(1265), + [anon_sym_def] = ACTIONS(1265), + [anon_sym_export_DASHenv] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_module] = ACTIONS(1265), + [anon_sym_use] = ACTIONS(1265), + [anon_sym_LPAREN] = ACTIONS(1267), + [anon_sym_DOLLAR] = ACTIONS(1267), + [anon_sym_error] = ACTIONS(1265), + [anon_sym_list] = ACTIONS(1265), + [anon_sym_GT] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1265), + [anon_sym_break] = ACTIONS(1265), + [anon_sym_continue] = ACTIONS(1265), + [anon_sym_for] = ACTIONS(1265), + [anon_sym_in] = ACTIONS(1265), + [anon_sym_loop] = ACTIONS(1265), + [anon_sym_make] = ACTIONS(1265), + [anon_sym_while] = ACTIONS(1265), + [anon_sym_do] = ACTIONS(1265), + [anon_sym_if] = ACTIONS(1265), + [anon_sym_else] = ACTIONS(1265), + [anon_sym_match] = ACTIONS(1265), + [anon_sym_RBRACE] = ACTIONS(1267), + [anon_sym_try] = ACTIONS(1265), + [anon_sym_catch] = ACTIONS(1265), + [anon_sym_return] = ACTIONS(1265), + [anon_sym_source] = ACTIONS(1265), + [anon_sym_source_DASHenv] = ACTIONS(1265), + [anon_sym_register] = ACTIONS(1265), + [anon_sym_hide] = ACTIONS(1265), + [anon_sym_hide_DASHenv] = ACTIONS(1265), + [anon_sym_overlay] = ACTIONS(1265), + [anon_sym_new] = ACTIONS(1265), + [anon_sym_as] = ACTIONS(1265), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_STAR_STAR] = ACTIONS(1267), + [anon_sym_PLUS_PLUS] = ACTIONS(1267), + [anon_sym_SLASH] = ACTIONS(1265), + [anon_sym_mod] = ACTIONS(1265), + [anon_sym_SLASH_SLASH] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1265), + [anon_sym_bit_DASHshl] = ACTIONS(1265), + [anon_sym_bit_DASHshr] = ACTIONS(1265), + [anon_sym_EQ_EQ] = ACTIONS(1267), + [anon_sym_BANG_EQ] = ACTIONS(1267), + [anon_sym_LT2] = ACTIONS(1265), + [anon_sym_LT_EQ] = ACTIONS(1267), + [anon_sym_GT_EQ] = ACTIONS(1267), + [anon_sym_not_DASHin] = ACTIONS(1265), + [anon_sym_starts_DASHwith] = ACTIONS(1265), + [anon_sym_ends_DASHwith] = ACTIONS(1265), + [anon_sym_EQ_TILDE] = ACTIONS(1267), + [anon_sym_BANG_TILDE] = ACTIONS(1267), + [anon_sym_bit_DASHand] = ACTIONS(1265), + [anon_sym_bit_DASHxor] = ACTIONS(1265), + [anon_sym_bit_DASHor] = ACTIONS(1265), + [anon_sym_and] = ACTIONS(1265), + [anon_sym_xor] = ACTIONS(1265), + [anon_sym_or] = ACTIONS(1265), + [aux_sym__val_number_decimal_token1] = ACTIONS(1265), + [aux_sym__val_number_decimal_token2] = ACTIONS(1267), + [anon_sym_DOT2] = ACTIONS(1267), + [aux_sym__val_number_decimal_token3] = ACTIONS(1267), + [aux_sym__val_number_token1] = ACTIONS(1267), + [aux_sym__val_number_token2] = ACTIONS(1267), + [aux_sym__val_number_token3] = ACTIONS(1267), + [aux_sym__val_number_token4] = ACTIONS(1265), + [aux_sym__val_number_token5] = ACTIONS(1267), + [aux_sym__val_number_token6] = ACTIONS(1265), + [anon_sym_DQUOTE] = ACTIONS(1267), + [sym__str_single_quotes] = ACTIONS(1267), + [sym__str_back_ticks] = ACTIONS(1267), + [aux_sym__record_key_token2] = ACTIONS(1265), + [anon_sym_POUND] = ACTIONS(3), + }, + [711] = { + [sym_comment] = STATE(711), + [anon_sym_export] = ACTIONS(1265), + [anon_sym_alias] = ACTIONS(1265), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_let_DASHenv] = ACTIONS(1265), + [anon_sym_mut] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [sym_cmd_identifier] = ACTIONS(1265), + [anon_sym_def] = ACTIONS(1265), + [anon_sym_export_DASHenv] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_module] = ACTIONS(1265), + [anon_sym_use] = ACTIONS(1265), + [anon_sym_LPAREN] = ACTIONS(1267), + [anon_sym_DOLLAR] = ACTIONS(1267), + [anon_sym_error] = ACTIONS(1265), + [anon_sym_list] = ACTIONS(1265), + [anon_sym_GT] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1265), + [anon_sym_break] = ACTIONS(1265), + [anon_sym_continue] = ACTIONS(1265), + [anon_sym_for] = ACTIONS(1265), + [anon_sym_in] = ACTIONS(1265), + [anon_sym_loop] = ACTIONS(1265), + [anon_sym_make] = ACTIONS(1265), + [anon_sym_while] = ACTIONS(1265), + [anon_sym_do] = ACTIONS(1265), + [anon_sym_if] = ACTIONS(1265), + [anon_sym_else] = ACTIONS(1265), + [anon_sym_match] = ACTIONS(1265), + [anon_sym_RBRACE] = ACTIONS(1267), + [anon_sym_try] = ACTIONS(1265), + [anon_sym_catch] = ACTIONS(1265), + [anon_sym_return] = ACTIONS(1265), + [anon_sym_source] = ACTIONS(1265), + [anon_sym_source_DASHenv] = ACTIONS(1265), + [anon_sym_register] = ACTIONS(1265), + [anon_sym_hide] = ACTIONS(1265), + [anon_sym_hide_DASHenv] = ACTIONS(1265), + [anon_sym_overlay] = ACTIONS(1265), + [anon_sym_new] = ACTIONS(1265), + [anon_sym_as] = ACTIONS(1265), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_STAR_STAR] = ACTIONS(1267), + [anon_sym_PLUS_PLUS] = ACTIONS(1267), + [anon_sym_SLASH] = ACTIONS(1265), + [anon_sym_mod] = ACTIONS(1265), + [anon_sym_SLASH_SLASH] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1265), + [anon_sym_bit_DASHshl] = ACTIONS(1265), + [anon_sym_bit_DASHshr] = ACTIONS(1265), + [anon_sym_EQ_EQ] = ACTIONS(1267), + [anon_sym_BANG_EQ] = ACTIONS(1267), + [anon_sym_LT2] = ACTIONS(1265), + [anon_sym_LT_EQ] = ACTIONS(1267), + [anon_sym_GT_EQ] = ACTIONS(1267), + [anon_sym_not_DASHin] = ACTIONS(1265), + [anon_sym_starts_DASHwith] = ACTIONS(1265), + [anon_sym_ends_DASHwith] = ACTIONS(1265), + [anon_sym_EQ_TILDE] = ACTIONS(1267), + [anon_sym_BANG_TILDE] = ACTIONS(1267), + [anon_sym_bit_DASHand] = ACTIONS(1265), + [anon_sym_bit_DASHxor] = ACTIONS(1265), + [anon_sym_bit_DASHor] = ACTIONS(1265), + [anon_sym_and] = ACTIONS(1265), + [anon_sym_xor] = ACTIONS(1265), + [anon_sym_or] = ACTIONS(1265), + [aux_sym__val_number_decimal_token1] = ACTIONS(1265), + [aux_sym__val_number_decimal_token2] = ACTIONS(1267), + [anon_sym_DOT2] = ACTIONS(1267), + [aux_sym__val_number_decimal_token3] = ACTIONS(1267), + [aux_sym__val_number_token1] = ACTIONS(1267), + [aux_sym__val_number_token2] = ACTIONS(1267), + [aux_sym__val_number_token3] = ACTIONS(1267), + [aux_sym__val_number_token4] = ACTIONS(1265), + [aux_sym__val_number_token5] = ACTIONS(1267), + [aux_sym__val_number_token6] = ACTIONS(1265), + [anon_sym_DQUOTE] = ACTIONS(1267), + [sym__str_single_quotes] = ACTIONS(1267), + [sym__str_back_ticks] = ACTIONS(1267), + [aux_sym__record_key_token2] = ACTIONS(1265), + [anon_sym_POUND] = ACTIONS(3), + }, + [712] = { + [sym_comment] = STATE(712), + [anon_sym_export] = ACTIONS(1271), + [anon_sym_alias] = ACTIONS(1271), + [anon_sym_let] = ACTIONS(1271), + [anon_sym_let_DASHenv] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(1271), + [anon_sym_const] = ACTIONS(1271), + [sym_cmd_identifier] = ACTIONS(1271), + [anon_sym_def] = ACTIONS(1271), + [anon_sym_export_DASHenv] = ACTIONS(1271), + [anon_sym_extern] = ACTIONS(1271), + [anon_sym_module] = ACTIONS(1271), + [anon_sym_use] = ACTIONS(1271), [anon_sym_LPAREN] = ACTIONS(1273), [anon_sym_DOLLAR] = ACTIONS(1273), - [anon_sym_error] = ACTIONS(1273), - [anon_sym_GT] = ACTIONS(1273), - [anon_sym_DASH] = ACTIONS(1273), - [anon_sym_break] = ACTIONS(1273), - [anon_sym_continue] = ACTIONS(1273), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_in] = ACTIONS(1273), - [anon_sym_loop] = ACTIONS(1273), - [anon_sym_while] = ACTIONS(1273), - [anon_sym_do] = ACTIONS(1273), - [anon_sym_if] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_try] = ACTIONS(1273), - [anon_sym_return] = ACTIONS(1273), - [anon_sym_source] = ACTIONS(1273), - [anon_sym_source_DASHenv] = ACTIONS(1273), - [anon_sym_register] = ACTIONS(1273), - [anon_sym_hide] = ACTIONS(1273), - [anon_sym_hide_DASHenv] = ACTIONS(1273), - [anon_sym_overlay] = ACTIONS(1273), - [anon_sym_STAR] = ACTIONS(1273), - [anon_sym_where] = ACTIONS(1273), + [anon_sym_error] = ACTIONS(1271), + [anon_sym_list] = ACTIONS(1271), + [anon_sym_GT] = ACTIONS(1271), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_break] = ACTIONS(1271), + [anon_sym_continue] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1271), + [anon_sym_in] = ACTIONS(1271), + [anon_sym_loop] = ACTIONS(1271), + [anon_sym_make] = ACTIONS(1271), + [anon_sym_while] = ACTIONS(1271), + [anon_sym_do] = ACTIONS(1271), + [anon_sym_if] = ACTIONS(1271), + [anon_sym_else] = ACTIONS(1271), + [anon_sym_match] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(1273), + [anon_sym_try] = ACTIONS(1271), + [anon_sym_catch] = ACTIONS(1271), + [anon_sym_return] = ACTIONS(1271), + [anon_sym_source] = ACTIONS(1271), + [anon_sym_source_DASHenv] = ACTIONS(1271), + [anon_sym_register] = ACTIONS(1271), + [anon_sym_hide] = ACTIONS(1271), + [anon_sym_hide_DASHenv] = ACTIONS(1271), + [anon_sym_overlay] = ACTIONS(1271), + [anon_sym_new] = ACTIONS(1271), + [anon_sym_as] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(1271), [anon_sym_STAR_STAR] = ACTIONS(1273), [anon_sym_PLUS_PLUS] = ACTIONS(1273), - [anon_sym_SLASH] = ACTIONS(1273), - [anon_sym_mod] = ACTIONS(1273), + [anon_sym_SLASH] = ACTIONS(1271), + [anon_sym_mod] = ACTIONS(1271), [anon_sym_SLASH_SLASH] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(1273), - [anon_sym_bit_DASHshl] = ACTIONS(1273), - [anon_sym_bit_DASHshr] = ACTIONS(1273), + [anon_sym_PLUS] = ACTIONS(1271), + [anon_sym_bit_DASHshl] = ACTIONS(1271), + [anon_sym_bit_DASHshr] = ACTIONS(1271), [anon_sym_EQ_EQ] = ACTIONS(1273), [anon_sym_BANG_EQ] = ACTIONS(1273), - [anon_sym_LT2] = ACTIONS(1273), + [anon_sym_LT2] = ACTIONS(1271), [anon_sym_LT_EQ] = ACTIONS(1273), [anon_sym_GT_EQ] = ACTIONS(1273), - [anon_sym_not_DASHin] = ACTIONS(1273), - [anon_sym_starts_DASHwith] = ACTIONS(1273), - [anon_sym_ends_DASHwith] = ACTIONS(1273), + [anon_sym_not_DASHin] = ACTIONS(1271), + [anon_sym_starts_DASHwith] = ACTIONS(1271), + [anon_sym_ends_DASHwith] = ACTIONS(1271), [anon_sym_EQ_TILDE] = ACTIONS(1273), [anon_sym_BANG_TILDE] = ACTIONS(1273), - [anon_sym_bit_DASHand] = ACTIONS(1273), - [anon_sym_bit_DASHxor] = ACTIONS(1273), - [anon_sym_bit_DASHor] = ACTIONS(1273), - [anon_sym_and] = ACTIONS(1273), - [anon_sym_xor] = ACTIONS(1273), - [anon_sym_or] = ACTIONS(1273), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1273), - [anon_sym_DOT_DOT_LT] = ACTIONS(1273), - [anon_sym_null] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1273), - [anon_sym_false] = ACTIONS(1273), - [aux_sym__val_number_decimal_token1] = ACTIONS(1273), + [anon_sym_bit_DASHand] = ACTIONS(1271), + [anon_sym_bit_DASHxor] = ACTIONS(1271), + [anon_sym_bit_DASHor] = ACTIONS(1271), + [anon_sym_and] = ACTIONS(1271), + [anon_sym_xor] = ACTIONS(1271), + [anon_sym_or] = ACTIONS(1271), + [aux_sym__val_number_decimal_token1] = ACTIONS(1271), [aux_sym__val_number_decimal_token2] = ACTIONS(1273), [anon_sym_DOT2] = ACTIONS(1273), [aux_sym__val_number_decimal_token3] = ACTIONS(1273), [aux_sym__val_number_token1] = ACTIONS(1273), [aux_sym__val_number_token2] = ACTIONS(1273), [aux_sym__val_number_token3] = ACTIONS(1273), - [aux_sym__val_number_token4] = ACTIONS(1273), + [aux_sym__val_number_token4] = ACTIONS(1271), [aux_sym__val_number_token5] = ACTIONS(1273), - [aux_sym__val_number_token6] = ACTIONS(1273), - [anon_sym_0b] = ACTIONS(1273), - [anon_sym_0o] = ACTIONS(1273), - [anon_sym_0x] = ACTIONS(1273), - [sym_val_date] = ACTIONS(1273), + [aux_sym__val_number_token6] = ACTIONS(1271), [anon_sym_DQUOTE] = ACTIONS(1273), [sym__str_single_quotes] = ACTIONS(1273), [sym__str_back_ticks] = ACTIONS(1273), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1273), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1273), - [anon_sym_CARET] = ACTIONS(1273), - [anon_sym_POUND] = ACTIONS(113), - }, - [700] = { - [sym_comment] = STATE(700), - [ts_builtin_sym_end] = ACTIONS(1366), - [anon_sym_export] = ACTIONS(1198), - [anon_sym_alias] = ACTIONS(1198), - [anon_sym_let] = ACTIONS(1198), - [anon_sym_let_DASHenv] = ACTIONS(1198), - [anon_sym_mut] = ACTIONS(1198), - [anon_sym_const] = ACTIONS(1198), - [anon_sym_SEMI] = ACTIONS(1198), - [sym_cmd_identifier] = ACTIONS(1198), - [anon_sym_LF] = ACTIONS(1366), - [anon_sym_def] = ACTIONS(1198), - [anon_sym_export_DASHenv] = ACTIONS(1198), - [anon_sym_extern] = ACTIONS(1198), - [anon_sym_module] = ACTIONS(1198), - [anon_sym_use] = ACTIONS(1198), - [anon_sym_LBRACK] = ACTIONS(1198), - [anon_sym_LPAREN] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(1198), - [anon_sym_error] = ACTIONS(1198), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1198), - [anon_sym_break] = ACTIONS(1198), - [anon_sym_continue] = ACTIONS(1198), - [anon_sym_for] = ACTIONS(1198), - [anon_sym_in] = ACTIONS(1198), - [anon_sym_loop] = ACTIONS(1198), - [anon_sym_while] = ACTIONS(1198), - [anon_sym_do] = ACTIONS(1198), - [anon_sym_if] = ACTIONS(1198), - [anon_sym_match] = ACTIONS(1198), - [anon_sym_LBRACE] = ACTIONS(1198), - [anon_sym_DOT_DOT] = ACTIONS(1198), - [anon_sym_try] = ACTIONS(1198), - [anon_sym_return] = ACTIONS(1198), - [anon_sym_source] = ACTIONS(1198), - [anon_sym_source_DASHenv] = ACTIONS(1198), - [anon_sym_register] = ACTIONS(1198), - [anon_sym_hide] = ACTIONS(1198), - [anon_sym_hide_DASHenv] = ACTIONS(1198), - [anon_sym_overlay] = ACTIONS(1198), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_where] = ACTIONS(1198), - [anon_sym_STAR_STAR] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_SLASH] = ACTIONS(1198), - [anon_sym_mod] = ACTIONS(1198), - [anon_sym_SLASH_SLASH] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1198), - [anon_sym_bit_DASHshl] = ACTIONS(1198), - [anon_sym_bit_DASHshr] = ACTIONS(1198), - [anon_sym_EQ_EQ] = ACTIONS(1198), - [anon_sym_BANG_EQ] = ACTIONS(1198), - [anon_sym_LT2] = ACTIONS(1198), - [anon_sym_LT_EQ] = ACTIONS(1198), - [anon_sym_GT_EQ] = ACTIONS(1198), - [anon_sym_not_DASHin] = ACTIONS(1198), - [anon_sym_starts_DASHwith] = ACTIONS(1198), - [anon_sym_ends_DASHwith] = ACTIONS(1198), - [anon_sym_EQ_TILDE] = ACTIONS(1198), - [anon_sym_BANG_TILDE] = ACTIONS(1198), - [anon_sym_bit_DASHand] = ACTIONS(1198), - [anon_sym_bit_DASHxor] = ACTIONS(1198), - [anon_sym_bit_DASHor] = ACTIONS(1198), - [anon_sym_and] = ACTIONS(1198), - [anon_sym_xor] = ACTIONS(1198), - [anon_sym_or] = ACTIONS(1198), - [anon_sym_not] = ACTIONS(1198), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1198), - [anon_sym_DOT_DOT_LT] = ACTIONS(1198), - [anon_sym_null] = ACTIONS(1198), - [anon_sym_true] = ACTIONS(1198), - [anon_sym_false] = ACTIONS(1198), - [aux_sym__val_number_decimal_token1] = ACTIONS(1198), - [aux_sym__val_number_decimal_token2] = ACTIONS(1198), - [anon_sym_DOT2] = ACTIONS(1198), - [aux_sym__val_number_decimal_token3] = ACTIONS(1198), - [aux_sym__val_number_token1] = ACTIONS(1198), - [aux_sym__val_number_token2] = ACTIONS(1198), - [aux_sym__val_number_token3] = ACTIONS(1198), - [aux_sym__val_number_token4] = ACTIONS(1198), - [aux_sym__val_number_token5] = ACTIONS(1198), - [aux_sym__val_number_token6] = ACTIONS(1198), - [anon_sym_0b] = ACTIONS(1198), - [anon_sym_0o] = ACTIONS(1198), - [anon_sym_0x] = ACTIONS(1198), - [sym_val_date] = ACTIONS(1198), - [anon_sym_DQUOTE] = ACTIONS(1198), - [sym__str_single_quotes] = ACTIONS(1198), - [sym__str_back_ticks] = ACTIONS(1198), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1198), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1198), - [anon_sym_CARET] = ACTIONS(1198), - [anon_sym_POUND] = ACTIONS(113), - }, - [701] = { - [sym_comment] = STATE(701), - [ts_builtin_sym_end] = ACTIONS(1065), - [anon_sym_export] = ACTIONS(1063), - [anon_sym_alias] = ACTIONS(1063), - [anon_sym_let] = ACTIONS(1063), - [anon_sym_let_DASHenv] = ACTIONS(1063), - [anon_sym_mut] = ACTIONS(1063), - [anon_sym_const] = ACTIONS(1063), - [anon_sym_SEMI] = ACTIONS(1063), - [sym_cmd_identifier] = ACTIONS(1063), - [anon_sym_LF] = ACTIONS(1065), - [anon_sym_def] = ACTIONS(1063), - [anon_sym_export_DASHenv] = ACTIONS(1063), - [anon_sym_extern] = ACTIONS(1063), - [anon_sym_module] = ACTIONS(1063), - [anon_sym_use] = ACTIONS(1063), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_error] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_break] = ACTIONS(1063), - [anon_sym_continue] = ACTIONS(1063), - [anon_sym_for] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1063), - [anon_sym_loop] = ACTIONS(1063), - [anon_sym_while] = ACTIONS(1063), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_if] = ACTIONS(1063), - [anon_sym_match] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1063), - [anon_sym_return] = ACTIONS(1063), - [anon_sym_source] = ACTIONS(1063), - [anon_sym_source_DASHenv] = ACTIONS(1063), - [anon_sym_register] = ACTIONS(1063), - [anon_sym_hide] = ACTIONS(1063), - [anon_sym_hide_DASHenv] = ACTIONS(1063), - [anon_sym_overlay] = ACTIONS(1063), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_where] = ACTIONS(1063), - [anon_sym_STAR_STAR] = ACTIONS(1063), - [anon_sym_PLUS_PLUS] = ACTIONS(1063), - [anon_sym_SLASH] = ACTIONS(1063), - [anon_sym_mod] = ACTIONS(1063), - [anon_sym_SLASH_SLASH] = ACTIONS(1063), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_bit_DASHshl] = ACTIONS(1063), - [anon_sym_bit_DASHshr] = ACTIONS(1063), - [anon_sym_EQ_EQ] = ACTIONS(1063), - [anon_sym_BANG_EQ] = ACTIONS(1063), - [anon_sym_LT2] = ACTIONS(1063), - [anon_sym_LT_EQ] = ACTIONS(1063), - [anon_sym_GT_EQ] = ACTIONS(1063), - [anon_sym_not_DASHin] = ACTIONS(1063), - [anon_sym_starts_DASHwith] = ACTIONS(1063), - [anon_sym_ends_DASHwith] = ACTIONS(1063), - [anon_sym_EQ_TILDE] = ACTIONS(1063), - [anon_sym_BANG_TILDE] = ACTIONS(1063), - [anon_sym_bit_DASHand] = ACTIONS(1063), - [anon_sym_bit_DASHxor] = ACTIONS(1063), - [anon_sym_bit_DASHor] = ACTIONS(1063), - [anon_sym_and] = ACTIONS(1063), - [anon_sym_xor] = ACTIONS(1063), - [anon_sym_or] = ACTIONS(1063), - [anon_sym_not] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1063), - [anon_sym_DOT_DOT_LT] = ACTIONS(1063), - [anon_sym_null] = ACTIONS(1063), - [anon_sym_true] = ACTIONS(1063), - [anon_sym_false] = ACTIONS(1063), - [aux_sym__val_number_decimal_token1] = ACTIONS(1063), - [aux_sym__val_number_decimal_token2] = ACTIONS(1063), - [anon_sym_DOT2] = ACTIONS(1063), - [aux_sym__val_number_decimal_token3] = ACTIONS(1063), - [aux_sym__val_number_token1] = ACTIONS(1063), - [aux_sym__val_number_token2] = ACTIONS(1063), - [aux_sym__val_number_token3] = ACTIONS(1063), - [aux_sym__val_number_token4] = ACTIONS(1063), - [aux_sym__val_number_token5] = ACTIONS(1063), - [aux_sym__val_number_token6] = ACTIONS(1063), - [anon_sym_0b] = ACTIONS(1063), - [anon_sym_0o] = ACTIONS(1063), - [anon_sym_0x] = ACTIONS(1063), - [sym_val_date] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [sym__str_single_quotes] = ACTIONS(1063), - [sym__str_back_ticks] = ACTIONS(1063), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1063), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1063), - [anon_sym_CARET] = ACTIONS(1063), - [anon_sym_POUND] = ACTIONS(113), - }, - [702] = { - [sym_comment] = STATE(702), - [ts_builtin_sym_end] = ACTIONS(1378), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(1510), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1514), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1516), - [anon_sym_PLUS_PLUS] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(1514), - [anon_sym_mod] = ACTIONS(1514), - [anon_sym_SLASH_SLASH] = ACTIONS(1514), - [anon_sym_PLUS] = ACTIONS(1510), - [anon_sym_bit_DASHshl] = ACTIONS(1518), - [anon_sym_bit_DASHshr] = ACTIONS(1518), - [anon_sym_EQ_EQ] = ACTIONS(1508), - [anon_sym_BANG_EQ] = ACTIONS(1508), - [anon_sym_LT2] = ACTIONS(1508), - [anon_sym_LT_EQ] = ACTIONS(1508), - [anon_sym_GT_EQ] = ACTIONS(1508), - [anon_sym_not_DASHin] = ACTIONS(1376), - [anon_sym_starts_DASHwith] = ACTIONS(1376), - [anon_sym_ends_DASHwith] = ACTIONS(1376), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), - }, - [703] = { - [sym_comment] = STATE(703), - [ts_builtin_sym_end] = ACTIONS(1370), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), - }, - [704] = { - [sym_comment] = STATE(704), - [ts_builtin_sym_end] = ACTIONS(1378), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1510), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1514), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1516), - [anon_sym_PLUS_PLUS] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(1514), - [anon_sym_mod] = ACTIONS(1514), - [anon_sym_SLASH_SLASH] = ACTIONS(1514), - [anon_sym_PLUS] = ACTIONS(1510), - [anon_sym_bit_DASHshl] = ACTIONS(1376), - [anon_sym_bit_DASHshr] = ACTIONS(1376), - [anon_sym_EQ_EQ] = ACTIONS(1376), - [anon_sym_BANG_EQ] = ACTIONS(1376), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1376), - [anon_sym_GT_EQ] = ACTIONS(1376), - [anon_sym_not_DASHin] = ACTIONS(1376), - [anon_sym_starts_DASHwith] = ACTIONS(1376), - [anon_sym_ends_DASHwith] = ACTIONS(1376), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), - }, - [705] = { - [sym_comment] = STATE(705), - [ts_builtin_sym_end] = ACTIONS(1370), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), - }, - [706] = { - [sym_comment] = STATE(706), - [ts_builtin_sym_end] = ACTIONS(1370), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), - }, - [707] = { - [sym_comment] = STATE(707), - [ts_builtin_sym_end] = ACTIONS(1378), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1514), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1516), - [anon_sym_PLUS_PLUS] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(1514), - [anon_sym_mod] = ACTIONS(1514), - [anon_sym_SLASH_SLASH] = ACTIONS(1514), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_bit_DASHshl] = ACTIONS(1376), - [anon_sym_bit_DASHshr] = ACTIONS(1376), - [anon_sym_EQ_EQ] = ACTIONS(1376), - [anon_sym_BANG_EQ] = ACTIONS(1376), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1376), - [anon_sym_GT_EQ] = ACTIONS(1376), - [anon_sym_not_DASHin] = ACTIONS(1376), - [anon_sym_starts_DASHwith] = ACTIONS(1376), - [anon_sym_ends_DASHwith] = ACTIONS(1376), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), - }, - [708] = { - [sym_comment] = STATE(708), - [ts_builtin_sym_end] = ACTIONS(1370), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), - }, - [709] = { - [sym_comment] = STATE(709), - [ts_builtin_sym_end] = ACTIONS(1378), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1516), - [anon_sym_PLUS_PLUS] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(1376), - [anon_sym_mod] = ACTIONS(1376), - [anon_sym_SLASH_SLASH] = ACTIONS(1376), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_bit_DASHshl] = ACTIONS(1376), - [anon_sym_bit_DASHshr] = ACTIONS(1376), - [anon_sym_EQ_EQ] = ACTIONS(1376), - [anon_sym_BANG_EQ] = ACTIONS(1376), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1376), - [anon_sym_GT_EQ] = ACTIONS(1376), - [anon_sym_not_DASHin] = ACTIONS(1376), - [anon_sym_starts_DASHwith] = ACTIONS(1376), - [anon_sym_ends_DASHwith] = ACTIONS(1376), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), - }, - [710] = { - [sym_comment] = STATE(710), - [ts_builtin_sym_end] = ACTIONS(1370), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), - }, - [711] = { - [sym_comment] = STATE(711), - [ts_builtin_sym_end] = ACTIONS(1378), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1510), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1514), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1516), - [anon_sym_PLUS_PLUS] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(1514), - [anon_sym_mod] = ACTIONS(1514), - [anon_sym_SLASH_SLASH] = ACTIONS(1514), - [anon_sym_PLUS] = ACTIONS(1510), - [anon_sym_bit_DASHshl] = ACTIONS(1518), - [anon_sym_bit_DASHshr] = ACTIONS(1518), - [anon_sym_EQ_EQ] = ACTIONS(1376), - [anon_sym_BANG_EQ] = ACTIONS(1376), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1376), - [anon_sym_GT_EQ] = ACTIONS(1376), - [anon_sym_not_DASHin] = ACTIONS(1376), - [anon_sym_starts_DASHwith] = ACTIONS(1376), - [anon_sym_ends_DASHwith] = ACTIONS(1376), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), - }, - [712] = { - [sym_comment] = STATE(712), - [ts_builtin_sym_end] = ACTIONS(1370), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), + [aux_sym__record_key_token2] = ACTIONS(1271), + [anon_sym_POUND] = ACTIONS(3), }, [713] = { [sym_comment] = STATE(713), - [ts_builtin_sym_end] = ACTIONS(1378), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(1510), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1512), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1514), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1516), - [anon_sym_PLUS_PLUS] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(1514), - [anon_sym_mod] = ACTIONS(1514), - [anon_sym_SLASH_SLASH] = ACTIONS(1514), - [anon_sym_PLUS] = ACTIONS(1510), - [anon_sym_bit_DASHshl] = ACTIONS(1518), - [anon_sym_bit_DASHshr] = ACTIONS(1518), - [anon_sym_EQ_EQ] = ACTIONS(1508), - [anon_sym_BANG_EQ] = ACTIONS(1508), - [anon_sym_LT2] = ACTIONS(1508), - [anon_sym_LT_EQ] = ACTIONS(1508), - [anon_sym_GT_EQ] = ACTIONS(1508), - [anon_sym_not_DASHin] = ACTIONS(1512), - [anon_sym_starts_DASHwith] = ACTIONS(1512), - [anon_sym_ends_DASHwith] = ACTIONS(1512), - [anon_sym_EQ_TILDE] = ACTIONS(1520), - [anon_sym_BANG_TILDE] = ACTIONS(1520), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1275), + [anon_sym_alias] = ACTIONS(1275), + [anon_sym_let] = ACTIONS(1275), + [anon_sym_let_DASHenv] = ACTIONS(1275), + [anon_sym_mut] = ACTIONS(1275), + [anon_sym_const] = ACTIONS(1275), + [sym_cmd_identifier] = ACTIONS(1275), + [anon_sym_def] = ACTIONS(1275), + [anon_sym_export_DASHenv] = ACTIONS(1275), + [anon_sym_extern] = ACTIONS(1275), + [anon_sym_module] = ACTIONS(1275), + [anon_sym_use] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(1277), + [anon_sym_DOLLAR] = ACTIONS(1277), + [anon_sym_error] = ACTIONS(1275), + [anon_sym_list] = ACTIONS(1275), + [anon_sym_GT] = ACTIONS(1275), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_break] = ACTIONS(1275), + [anon_sym_continue] = ACTIONS(1275), + [anon_sym_for] = ACTIONS(1275), + [anon_sym_in] = ACTIONS(1275), + [anon_sym_loop] = ACTIONS(1275), + [anon_sym_make] = ACTIONS(1275), + [anon_sym_while] = ACTIONS(1275), + [anon_sym_do] = ACTIONS(1275), + [anon_sym_if] = ACTIONS(1275), + [anon_sym_else] = ACTIONS(1275), + [anon_sym_match] = ACTIONS(1275), + [anon_sym_RBRACE] = ACTIONS(1277), + [anon_sym_try] = ACTIONS(1275), + [anon_sym_catch] = ACTIONS(1275), + [anon_sym_return] = ACTIONS(1275), + [anon_sym_source] = ACTIONS(1275), + [anon_sym_source_DASHenv] = ACTIONS(1275), + [anon_sym_register] = ACTIONS(1275), + [anon_sym_hide] = ACTIONS(1275), + [anon_sym_hide_DASHenv] = ACTIONS(1275), + [anon_sym_overlay] = ACTIONS(1275), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_as] = ACTIONS(1275), + [anon_sym_STAR] = ACTIONS(1275), + [anon_sym_STAR_STAR] = ACTIONS(1277), + [anon_sym_PLUS_PLUS] = ACTIONS(1277), + [anon_sym_SLASH] = ACTIONS(1275), + [anon_sym_mod] = ACTIONS(1275), + [anon_sym_SLASH_SLASH] = ACTIONS(1277), + [anon_sym_PLUS] = ACTIONS(1275), + [anon_sym_bit_DASHshl] = ACTIONS(1275), + [anon_sym_bit_DASHshr] = ACTIONS(1275), + [anon_sym_EQ_EQ] = ACTIONS(1277), + [anon_sym_BANG_EQ] = ACTIONS(1277), + [anon_sym_LT2] = ACTIONS(1275), + [anon_sym_LT_EQ] = ACTIONS(1277), + [anon_sym_GT_EQ] = ACTIONS(1277), + [anon_sym_not_DASHin] = ACTIONS(1275), + [anon_sym_starts_DASHwith] = ACTIONS(1275), + [anon_sym_ends_DASHwith] = ACTIONS(1275), + [anon_sym_EQ_TILDE] = ACTIONS(1277), + [anon_sym_BANG_TILDE] = ACTIONS(1277), + [anon_sym_bit_DASHand] = ACTIONS(1275), + [anon_sym_bit_DASHxor] = ACTIONS(1275), + [anon_sym_bit_DASHor] = ACTIONS(1275), + [anon_sym_and] = ACTIONS(1275), + [anon_sym_xor] = ACTIONS(1275), + [anon_sym_or] = ACTIONS(1275), + [aux_sym__val_number_decimal_token1] = ACTIONS(1275), + [aux_sym__val_number_decimal_token2] = ACTIONS(1277), + [anon_sym_DOT2] = ACTIONS(1277), + [aux_sym__val_number_decimal_token3] = ACTIONS(1277), + [aux_sym__val_number_token1] = ACTIONS(1277), + [aux_sym__val_number_token2] = ACTIONS(1277), + [aux_sym__val_number_token3] = ACTIONS(1277), + [aux_sym__val_number_token4] = ACTIONS(1275), + [aux_sym__val_number_token5] = ACTIONS(1277), + [aux_sym__val_number_token6] = ACTIONS(1275), + [anon_sym_DQUOTE] = ACTIONS(1277), + [sym__str_single_quotes] = ACTIONS(1277), + [sym__str_back_ticks] = ACTIONS(1277), + [aux_sym__record_key_token2] = ACTIONS(1275), + [anon_sym_POUND] = ACTIONS(3), }, [714] = { [sym_comment] = STATE(714), - [ts_builtin_sym_end] = ACTIONS(1370), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1051), + [anon_sym_alias] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(1051), + [anon_sym_let_DASHenv] = ACTIONS(1051), + [anon_sym_mut] = ACTIONS(1051), + [anon_sym_const] = ACTIONS(1051), + [sym_cmd_identifier] = ACTIONS(1051), + [anon_sym_def] = ACTIONS(1051), + [anon_sym_export_DASHenv] = ACTIONS(1051), + [anon_sym_extern] = ACTIONS(1051), + [anon_sym_module] = ACTIONS(1051), + [anon_sym_use] = ACTIONS(1051), + [anon_sym_LPAREN] = ACTIONS(1053), + [anon_sym_DOLLAR] = ACTIONS(1053), + [anon_sym_error] = ACTIONS(1051), + [anon_sym_list] = ACTIONS(1051), + [anon_sym_GT] = ACTIONS(1051), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_break] = ACTIONS(1051), + [anon_sym_continue] = ACTIONS(1051), + [anon_sym_for] = ACTIONS(1051), + [anon_sym_in] = ACTIONS(1051), + [anon_sym_loop] = ACTIONS(1051), + [anon_sym_make] = ACTIONS(1051), + [anon_sym_while] = ACTIONS(1051), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_if] = ACTIONS(1051), + [anon_sym_else] = ACTIONS(1051), + [anon_sym_match] = ACTIONS(1051), + [anon_sym_RBRACE] = ACTIONS(1053), + [anon_sym_try] = ACTIONS(1051), + [anon_sym_catch] = ACTIONS(1051), + [anon_sym_return] = ACTIONS(1051), + [anon_sym_source] = ACTIONS(1051), + [anon_sym_source_DASHenv] = ACTIONS(1051), + [anon_sym_register] = ACTIONS(1051), + [anon_sym_hide] = ACTIONS(1051), + [anon_sym_hide_DASHenv] = ACTIONS(1051), + [anon_sym_overlay] = ACTIONS(1051), + [anon_sym_new] = ACTIONS(1051), + [anon_sym_as] = ACTIONS(1051), + [anon_sym_STAR] = ACTIONS(1051), + [anon_sym_STAR_STAR] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1053), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_mod] = ACTIONS(1051), + [anon_sym_SLASH_SLASH] = ACTIONS(1053), + [anon_sym_PLUS] = ACTIONS(1051), + [anon_sym_bit_DASHshl] = ACTIONS(1051), + [anon_sym_bit_DASHshr] = ACTIONS(1051), + [anon_sym_EQ_EQ] = ACTIONS(1053), + [anon_sym_BANG_EQ] = ACTIONS(1053), + [anon_sym_LT2] = ACTIONS(1051), + [anon_sym_LT_EQ] = ACTIONS(1053), + [anon_sym_GT_EQ] = ACTIONS(1053), + [anon_sym_not_DASHin] = ACTIONS(1051), + [anon_sym_starts_DASHwith] = ACTIONS(1051), + [anon_sym_ends_DASHwith] = ACTIONS(1051), + [anon_sym_EQ_TILDE] = ACTIONS(1053), + [anon_sym_BANG_TILDE] = ACTIONS(1053), + [anon_sym_bit_DASHand] = ACTIONS(1051), + [anon_sym_bit_DASHxor] = ACTIONS(1051), + [anon_sym_bit_DASHor] = ACTIONS(1051), + [anon_sym_and] = ACTIONS(1051), + [anon_sym_xor] = ACTIONS(1051), + [anon_sym_or] = ACTIONS(1051), + [aux_sym__val_number_decimal_token1] = ACTIONS(1051), + [aux_sym__val_number_decimal_token2] = ACTIONS(1053), + [anon_sym_DOT2] = ACTIONS(1053), + [aux_sym__val_number_decimal_token3] = ACTIONS(1053), + [aux_sym__val_number_token1] = ACTIONS(1053), + [aux_sym__val_number_token2] = ACTIONS(1053), + [aux_sym__val_number_token3] = ACTIONS(1053), + [aux_sym__val_number_token4] = ACTIONS(1051), + [aux_sym__val_number_token5] = ACTIONS(1053), + [aux_sym__val_number_token6] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(1053), + [sym__str_single_quotes] = ACTIONS(1053), + [sym__str_back_ticks] = ACTIONS(1053), + [aux_sym__record_key_token2] = ACTIONS(1051), + [anon_sym_POUND] = ACTIONS(3), }, [715] = { [sym_comment] = STATE(715), - [ts_builtin_sym_end] = ACTIONS(1378), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(1510), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1512), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1514), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1516), - [anon_sym_PLUS_PLUS] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(1514), - [anon_sym_mod] = ACTIONS(1514), - [anon_sym_SLASH_SLASH] = ACTIONS(1514), - [anon_sym_PLUS] = ACTIONS(1510), - [anon_sym_bit_DASHshl] = ACTIONS(1518), - [anon_sym_bit_DASHshr] = ACTIONS(1518), - [anon_sym_EQ_EQ] = ACTIONS(1508), - [anon_sym_BANG_EQ] = ACTIONS(1508), - [anon_sym_LT2] = ACTIONS(1508), - [anon_sym_LT_EQ] = ACTIONS(1508), - [anon_sym_GT_EQ] = ACTIONS(1508), - [anon_sym_not_DASHin] = ACTIONS(1512), - [anon_sym_starts_DASHwith] = ACTIONS(1512), - [anon_sym_ends_DASHwith] = ACTIONS(1512), - [anon_sym_EQ_TILDE] = ACTIONS(1520), - [anon_sym_BANG_TILDE] = ACTIONS(1520), - [anon_sym_bit_DASHand] = ACTIONS(1522), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1279), + [anon_sym_let] = ACTIONS(1279), + [anon_sym_let_DASHenv] = ACTIONS(1279), + [anon_sym_mut] = ACTIONS(1279), + [anon_sym_const] = ACTIONS(1279), + [sym_cmd_identifier] = ACTIONS(1279), + [anon_sym_def] = ACTIONS(1279), + [anon_sym_export_DASHenv] = ACTIONS(1279), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_use] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1281), + [anon_sym_DOLLAR] = ACTIONS(1281), + [anon_sym_error] = ACTIONS(1279), + [anon_sym_list] = ACTIONS(1279), + [anon_sym_GT] = ACTIONS(1279), + [anon_sym_DASH] = ACTIONS(1279), + [anon_sym_break] = ACTIONS(1279), + [anon_sym_continue] = ACTIONS(1279), + [anon_sym_for] = ACTIONS(1279), + [anon_sym_in] = ACTIONS(1279), + [anon_sym_loop] = ACTIONS(1279), + [anon_sym_make] = ACTIONS(1279), + [anon_sym_while] = ACTIONS(1279), + [anon_sym_do] = ACTIONS(1279), + [anon_sym_if] = ACTIONS(1279), + [anon_sym_else] = ACTIONS(1279), + [anon_sym_match] = ACTIONS(1279), + [anon_sym_RBRACE] = ACTIONS(1281), + [anon_sym_try] = ACTIONS(1279), + [anon_sym_catch] = ACTIONS(1279), + [anon_sym_return] = ACTIONS(1279), + [anon_sym_source] = ACTIONS(1279), + [anon_sym_source_DASHenv] = ACTIONS(1279), + [anon_sym_register] = ACTIONS(1279), + [anon_sym_hide] = ACTIONS(1279), + [anon_sym_hide_DASHenv] = ACTIONS(1279), + [anon_sym_overlay] = ACTIONS(1279), + [anon_sym_new] = ACTIONS(1279), + [anon_sym_as] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1279), + [anon_sym_STAR_STAR] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_mod] = ACTIONS(1279), + [anon_sym_SLASH_SLASH] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1279), + [anon_sym_bit_DASHshl] = ACTIONS(1279), + [anon_sym_bit_DASHshr] = ACTIONS(1279), + [anon_sym_EQ_EQ] = ACTIONS(1281), + [anon_sym_BANG_EQ] = ACTIONS(1281), + [anon_sym_LT2] = ACTIONS(1279), + [anon_sym_LT_EQ] = ACTIONS(1281), + [anon_sym_GT_EQ] = ACTIONS(1281), + [anon_sym_not_DASHin] = ACTIONS(1279), + [anon_sym_starts_DASHwith] = ACTIONS(1279), + [anon_sym_ends_DASHwith] = ACTIONS(1279), + [anon_sym_EQ_TILDE] = ACTIONS(1281), + [anon_sym_BANG_TILDE] = ACTIONS(1281), + [anon_sym_bit_DASHand] = ACTIONS(1279), + [anon_sym_bit_DASHxor] = ACTIONS(1279), + [anon_sym_bit_DASHor] = ACTIONS(1279), + [anon_sym_and] = ACTIONS(1279), + [anon_sym_xor] = ACTIONS(1279), + [anon_sym_or] = ACTIONS(1279), + [aux_sym__val_number_decimal_token1] = ACTIONS(1279), + [aux_sym__val_number_decimal_token2] = ACTIONS(1281), + [anon_sym_DOT2] = ACTIONS(1281), + [aux_sym__val_number_decimal_token3] = ACTIONS(1281), + [aux_sym__val_number_token1] = ACTIONS(1281), + [aux_sym__val_number_token2] = ACTIONS(1281), + [aux_sym__val_number_token3] = ACTIONS(1281), + [aux_sym__val_number_token4] = ACTIONS(1279), + [aux_sym__val_number_token5] = ACTIONS(1281), + [aux_sym__val_number_token6] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(1281), + [sym__str_single_quotes] = ACTIONS(1281), + [sym__str_back_ticks] = ACTIONS(1281), + [aux_sym__record_key_token2] = ACTIONS(1279), + [anon_sym_POUND] = ACTIONS(3), }, [716] = { [sym_comment] = STATE(716), - [ts_builtin_sym_end] = ACTIONS(1370), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1165), + [anon_sym_alias] = ACTIONS(1165), + [anon_sym_let] = ACTIONS(1165), + [anon_sym_let_DASHenv] = ACTIONS(1165), + [anon_sym_mut] = ACTIONS(1165), + [anon_sym_const] = ACTIONS(1165), + [sym_cmd_identifier] = ACTIONS(1165), + [anon_sym_def] = ACTIONS(1165), + [anon_sym_export_DASHenv] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1165), + [anon_sym_module] = ACTIONS(1165), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_DOLLAR] = ACTIONS(1167), + [anon_sym_error] = ACTIONS(1165), + [anon_sym_list] = ACTIONS(1165), + [anon_sym_GT] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_break] = ACTIONS(1165), + [anon_sym_continue] = ACTIONS(1165), + [anon_sym_for] = ACTIONS(1165), + [anon_sym_in] = ACTIONS(1165), + [anon_sym_loop] = ACTIONS(1165), + [anon_sym_make] = ACTIONS(1165), + [anon_sym_while] = ACTIONS(1165), + [anon_sym_do] = ACTIONS(1165), + [anon_sym_if] = ACTIONS(1165), + [anon_sym_else] = ACTIONS(1165), + [anon_sym_match] = ACTIONS(1165), + [anon_sym_RBRACE] = ACTIONS(1167), + [anon_sym_try] = ACTIONS(1165), + [anon_sym_catch] = ACTIONS(1165), + [anon_sym_return] = ACTIONS(1165), + [anon_sym_source] = ACTIONS(1165), + [anon_sym_source_DASHenv] = ACTIONS(1165), + [anon_sym_register] = ACTIONS(1165), + [anon_sym_hide] = ACTIONS(1165), + [anon_sym_hide_DASHenv] = ACTIONS(1165), + [anon_sym_overlay] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1165), + [anon_sym_as] = ACTIONS(1165), + [anon_sym_STAR] = ACTIONS(1165), + [anon_sym_STAR_STAR] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_SLASH] = ACTIONS(1165), + [anon_sym_mod] = ACTIONS(1165), + [anon_sym_SLASH_SLASH] = ACTIONS(1167), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_bit_DASHshl] = ACTIONS(1165), + [anon_sym_bit_DASHshr] = ACTIONS(1165), + [anon_sym_EQ_EQ] = ACTIONS(1167), + [anon_sym_BANG_EQ] = ACTIONS(1167), + [anon_sym_LT2] = ACTIONS(1165), + [anon_sym_LT_EQ] = ACTIONS(1167), + [anon_sym_GT_EQ] = ACTIONS(1167), + [anon_sym_not_DASHin] = ACTIONS(1165), + [anon_sym_starts_DASHwith] = ACTIONS(1165), + [anon_sym_ends_DASHwith] = ACTIONS(1165), + [anon_sym_EQ_TILDE] = ACTIONS(1167), + [anon_sym_BANG_TILDE] = ACTIONS(1167), + [anon_sym_bit_DASHand] = ACTIONS(1165), + [anon_sym_bit_DASHxor] = ACTIONS(1165), + [anon_sym_bit_DASHor] = ACTIONS(1165), + [anon_sym_and] = ACTIONS(1165), + [anon_sym_xor] = ACTIONS(1165), + [anon_sym_or] = ACTIONS(1165), + [aux_sym__val_number_decimal_token1] = ACTIONS(1165), + [aux_sym__val_number_decimal_token2] = ACTIONS(1167), + [anon_sym_DOT2] = ACTIONS(1167), + [aux_sym__val_number_decimal_token3] = ACTIONS(1167), + [aux_sym__val_number_token1] = ACTIONS(1167), + [aux_sym__val_number_token2] = ACTIONS(1167), + [aux_sym__val_number_token3] = ACTIONS(1167), + [aux_sym__val_number_token4] = ACTIONS(1165), + [aux_sym__val_number_token5] = ACTIONS(1167), + [aux_sym__val_number_token6] = ACTIONS(1165), + [anon_sym_DQUOTE] = ACTIONS(1167), + [sym__str_single_quotes] = ACTIONS(1167), + [sym__str_back_ticks] = ACTIONS(1167), + [aux_sym__record_key_token2] = ACTIONS(1165), + [anon_sym_POUND] = ACTIONS(3), }, [717] = { [sym_comment] = STATE(717), - [ts_builtin_sym_end] = ACTIONS(1174), - [anon_sym_export] = ACTIONS(1172), - [anon_sym_alias] = ACTIONS(1172), - [anon_sym_let] = ACTIONS(1172), - [anon_sym_let_DASHenv] = ACTIONS(1172), - [anon_sym_mut] = ACTIONS(1172), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(1172), - [sym_cmd_identifier] = ACTIONS(1172), - [anon_sym_LF] = ACTIONS(1174), - [anon_sym_def] = ACTIONS(1172), - [anon_sym_export_DASHenv] = ACTIONS(1172), - [anon_sym_extern] = ACTIONS(1172), - [anon_sym_module] = ACTIONS(1172), - [anon_sym_use] = ACTIONS(1172), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_LPAREN] = ACTIONS(1172), - [anon_sym_DOLLAR] = ACTIONS(1172), - [anon_sym_error] = ACTIONS(1172), - [anon_sym_GT] = ACTIONS(1172), - [anon_sym_DASH] = ACTIONS(1172), - [anon_sym_break] = ACTIONS(1172), - [anon_sym_continue] = ACTIONS(1172), - [anon_sym_for] = ACTIONS(1172), - [anon_sym_in] = ACTIONS(1172), - [anon_sym_loop] = ACTIONS(1172), - [anon_sym_while] = ACTIONS(1172), - [anon_sym_do] = ACTIONS(1172), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_match] = ACTIONS(1172), - [anon_sym_LBRACE] = ACTIONS(1172), - [anon_sym_DOT_DOT] = ACTIONS(1172), - [anon_sym_try] = ACTIONS(1172), - [anon_sym_return] = ACTIONS(1172), - [anon_sym_source] = ACTIONS(1172), - [anon_sym_source_DASHenv] = ACTIONS(1172), - [anon_sym_register] = ACTIONS(1172), - [anon_sym_hide] = ACTIONS(1172), - [anon_sym_hide_DASHenv] = ACTIONS(1172), - [anon_sym_overlay] = ACTIONS(1172), - [anon_sym_STAR] = ACTIONS(1172), - [anon_sym_where] = ACTIONS(1172), - [anon_sym_STAR_STAR] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_SLASH] = ACTIONS(1172), - [anon_sym_mod] = ACTIONS(1172), - [anon_sym_SLASH_SLASH] = ACTIONS(1172), - [anon_sym_PLUS] = ACTIONS(1172), - [anon_sym_bit_DASHshl] = ACTIONS(1172), - [anon_sym_bit_DASHshr] = ACTIONS(1172), - [anon_sym_EQ_EQ] = ACTIONS(1172), - [anon_sym_BANG_EQ] = ACTIONS(1172), - [anon_sym_LT2] = ACTIONS(1172), - [anon_sym_LT_EQ] = ACTIONS(1172), - [anon_sym_GT_EQ] = ACTIONS(1172), - [anon_sym_not_DASHin] = ACTIONS(1172), - [anon_sym_starts_DASHwith] = ACTIONS(1172), - [anon_sym_ends_DASHwith] = ACTIONS(1172), - [anon_sym_EQ_TILDE] = ACTIONS(1172), - [anon_sym_BANG_TILDE] = ACTIONS(1172), - [anon_sym_bit_DASHand] = ACTIONS(1172), - [anon_sym_bit_DASHxor] = ACTIONS(1172), - [anon_sym_bit_DASHor] = ACTIONS(1172), - [anon_sym_and] = ACTIONS(1172), - [anon_sym_xor] = ACTIONS(1172), - [anon_sym_or] = ACTIONS(1172), - [anon_sym_not] = ACTIONS(1172), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1172), - [anon_sym_DOT_DOT_LT] = ACTIONS(1172), - [anon_sym_null] = ACTIONS(1172), - [anon_sym_true] = ACTIONS(1172), - [anon_sym_false] = ACTIONS(1172), - [aux_sym__val_number_decimal_token1] = ACTIONS(1172), - [aux_sym__val_number_decimal_token2] = ACTIONS(1172), - [anon_sym_DOT2] = ACTIONS(1172), - [aux_sym__val_number_decimal_token3] = ACTIONS(1172), - [aux_sym__val_number_token1] = ACTIONS(1172), - [aux_sym__val_number_token2] = ACTIONS(1172), - [aux_sym__val_number_token3] = ACTIONS(1172), - [aux_sym__val_number_token4] = ACTIONS(1172), - [aux_sym__val_number_token5] = ACTIONS(1172), - [aux_sym__val_number_token6] = ACTIONS(1172), - [anon_sym_0b] = ACTIONS(1172), - [anon_sym_0o] = ACTIONS(1172), - [anon_sym_0x] = ACTIONS(1172), - [sym_val_date] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(1172), - [sym__str_single_quotes] = ACTIONS(1172), - [sym__str_back_ticks] = ACTIONS(1172), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1172), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1172), - [anon_sym_CARET] = ACTIONS(1172), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1283), + [anon_sym_alias] = ACTIONS(1283), + [anon_sym_let] = ACTIONS(1283), + [anon_sym_let_DASHenv] = ACTIONS(1283), + [anon_sym_mut] = ACTIONS(1283), + [anon_sym_const] = ACTIONS(1283), + [sym_cmd_identifier] = ACTIONS(1283), + [anon_sym_def] = ACTIONS(1283), + [anon_sym_export_DASHenv] = ACTIONS(1283), + [anon_sym_extern] = ACTIONS(1283), + [anon_sym_module] = ACTIONS(1283), + [anon_sym_use] = ACTIONS(1283), + [anon_sym_LPAREN] = ACTIONS(1285), + [anon_sym_DOLLAR] = ACTIONS(1285), + [anon_sym_error] = ACTIONS(1283), + [anon_sym_list] = ACTIONS(1283), + [anon_sym_GT] = ACTIONS(1283), + [anon_sym_DASH] = ACTIONS(1283), + [anon_sym_break] = ACTIONS(1283), + [anon_sym_continue] = ACTIONS(1283), + [anon_sym_for] = ACTIONS(1283), + [anon_sym_in] = ACTIONS(1283), + [anon_sym_loop] = ACTIONS(1283), + [anon_sym_make] = ACTIONS(1283), + [anon_sym_while] = ACTIONS(1283), + [anon_sym_do] = ACTIONS(1283), + [anon_sym_if] = ACTIONS(1283), + [anon_sym_else] = ACTIONS(1283), + [anon_sym_match] = ACTIONS(1283), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_try] = ACTIONS(1283), + [anon_sym_catch] = ACTIONS(1283), + [anon_sym_return] = ACTIONS(1283), + [anon_sym_source] = ACTIONS(1283), + [anon_sym_source_DASHenv] = ACTIONS(1283), + [anon_sym_register] = ACTIONS(1283), + [anon_sym_hide] = ACTIONS(1283), + [anon_sym_hide_DASHenv] = ACTIONS(1283), + [anon_sym_overlay] = ACTIONS(1283), + [anon_sym_new] = ACTIONS(1283), + [anon_sym_as] = ACTIONS(1283), + [anon_sym_STAR] = ACTIONS(1283), + [anon_sym_STAR_STAR] = ACTIONS(1285), + [anon_sym_PLUS_PLUS] = ACTIONS(1285), + [anon_sym_SLASH] = ACTIONS(1283), + [anon_sym_mod] = ACTIONS(1283), + [anon_sym_SLASH_SLASH] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1283), + [anon_sym_bit_DASHshl] = ACTIONS(1283), + [anon_sym_bit_DASHshr] = ACTIONS(1283), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT2] = ACTIONS(1283), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_not_DASHin] = ACTIONS(1283), + [anon_sym_starts_DASHwith] = ACTIONS(1283), + [anon_sym_ends_DASHwith] = ACTIONS(1283), + [anon_sym_EQ_TILDE] = ACTIONS(1285), + [anon_sym_BANG_TILDE] = ACTIONS(1285), + [anon_sym_bit_DASHand] = ACTIONS(1283), + [anon_sym_bit_DASHxor] = ACTIONS(1283), + [anon_sym_bit_DASHor] = ACTIONS(1283), + [anon_sym_and] = ACTIONS(1283), + [anon_sym_xor] = ACTIONS(1283), + [anon_sym_or] = ACTIONS(1283), + [aux_sym__val_number_decimal_token1] = ACTIONS(1283), + [aux_sym__val_number_decimal_token2] = ACTIONS(1285), + [anon_sym_DOT2] = ACTIONS(1285), + [aux_sym__val_number_decimal_token3] = 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(1283), + [aux_sym__val_number_token5] = ACTIONS(1285), + [aux_sym__val_number_token6] = ACTIONS(1283), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym__str_single_quotes] = ACTIONS(1285), + [sym__str_back_ticks] = ACTIONS(1285), + [aux_sym__record_key_token2] = ACTIONS(1283), + [anon_sym_POUND] = ACTIONS(3), }, [718] = { [sym_comment] = STATE(718), - [ts_builtin_sym_end] = ACTIONS(1378), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(1510), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1512), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1514), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1516), - [anon_sym_PLUS_PLUS] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(1514), - [anon_sym_mod] = ACTIONS(1514), - [anon_sym_SLASH_SLASH] = ACTIONS(1514), - [anon_sym_PLUS] = ACTIONS(1510), - [anon_sym_bit_DASHshl] = ACTIONS(1518), - [anon_sym_bit_DASHshr] = ACTIONS(1518), - [anon_sym_EQ_EQ] = ACTIONS(1508), - [anon_sym_BANG_EQ] = ACTIONS(1508), - [anon_sym_LT2] = ACTIONS(1508), - [anon_sym_LT_EQ] = ACTIONS(1508), - [anon_sym_GT_EQ] = ACTIONS(1508), - [anon_sym_not_DASHin] = ACTIONS(1512), - [anon_sym_starts_DASHwith] = ACTIONS(1512), - [anon_sym_ends_DASHwith] = ACTIONS(1512), - [anon_sym_EQ_TILDE] = ACTIONS(1520), - [anon_sym_BANG_TILDE] = ACTIONS(1520), - [anon_sym_bit_DASHand] = ACTIONS(1522), - [anon_sym_bit_DASHxor] = ACTIONS(1524), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1033), + [anon_sym_alias] = ACTIONS(1033), + [anon_sym_let] = ACTIONS(1033), + [anon_sym_let_DASHenv] = ACTIONS(1033), + [anon_sym_mut] = ACTIONS(1033), + [anon_sym_const] = ACTIONS(1033), + [sym_cmd_identifier] = ACTIONS(1033), + [anon_sym_def] = ACTIONS(1033), + [anon_sym_export_DASHenv] = ACTIONS(1033), + [anon_sym_extern] = ACTIONS(1033), + [anon_sym_module] = ACTIONS(1033), + [anon_sym_use] = ACTIONS(1033), + [anon_sym_LPAREN] = ACTIONS(1035), + [anon_sym_DOLLAR] = ACTIONS(1035), + [anon_sym_error] = ACTIONS(1033), + [anon_sym_list] = ACTIONS(1033), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1033), + [anon_sym_break] = ACTIONS(1033), + [anon_sym_continue] = ACTIONS(1033), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_in] = ACTIONS(1033), + [anon_sym_loop] = ACTIONS(1033), + [anon_sym_make] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(1033), + [anon_sym_do] = ACTIONS(1033), + [anon_sym_if] = ACTIONS(1033), + [anon_sym_else] = ACTIONS(1033), + [anon_sym_match] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1035), + [anon_sym_try] = ACTIONS(1033), + [anon_sym_catch] = ACTIONS(1033), + [anon_sym_return] = ACTIONS(1033), + [anon_sym_source] = ACTIONS(1033), + [anon_sym_source_DASHenv] = ACTIONS(1033), + [anon_sym_register] = ACTIONS(1033), + [anon_sym_hide] = ACTIONS(1033), + [anon_sym_hide_DASHenv] = ACTIONS(1033), + [anon_sym_overlay] = ACTIONS(1033), + [anon_sym_new] = ACTIONS(1033), + [anon_sym_as] = ACTIONS(1033), + [anon_sym_STAR] = ACTIONS(1033), + [anon_sym_STAR_STAR] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1035), + [anon_sym_SLASH] = ACTIONS(1033), + [anon_sym_mod] = ACTIONS(1033), + [anon_sym_SLASH_SLASH] = ACTIONS(1035), + [anon_sym_PLUS] = ACTIONS(1033), + [anon_sym_bit_DASHshl] = ACTIONS(1033), + [anon_sym_bit_DASHshr] = ACTIONS(1033), + [anon_sym_EQ_EQ] = ACTIONS(1035), + [anon_sym_BANG_EQ] = ACTIONS(1035), + [anon_sym_LT2] = ACTIONS(1033), + [anon_sym_LT_EQ] = ACTIONS(1035), + [anon_sym_GT_EQ] = ACTIONS(1035), + [anon_sym_not_DASHin] = ACTIONS(1033), + [anon_sym_starts_DASHwith] = ACTIONS(1033), + [anon_sym_ends_DASHwith] = ACTIONS(1033), + [anon_sym_EQ_TILDE] = ACTIONS(1035), + [anon_sym_BANG_TILDE] = ACTIONS(1035), + [anon_sym_bit_DASHand] = ACTIONS(1033), + [anon_sym_bit_DASHxor] = ACTIONS(1033), + [anon_sym_bit_DASHor] = ACTIONS(1033), + [anon_sym_and] = ACTIONS(1033), + [anon_sym_xor] = ACTIONS(1033), + [anon_sym_or] = ACTIONS(1033), + [aux_sym__val_number_decimal_token1] = ACTIONS(1033), + [aux_sym__val_number_decimal_token2] = ACTIONS(1035), + [anon_sym_DOT2] = ACTIONS(1035), + [aux_sym__val_number_decimal_token3] = ACTIONS(1035), + [aux_sym__val_number_token1] = ACTIONS(1035), + [aux_sym__val_number_token2] = ACTIONS(1035), + [aux_sym__val_number_token3] = ACTIONS(1035), + [aux_sym__val_number_token4] = ACTIONS(1033), + [aux_sym__val_number_token5] = ACTIONS(1035), + [aux_sym__val_number_token6] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1035), + [sym__str_single_quotes] = ACTIONS(1035), + [sym__str_back_ticks] = ACTIONS(1035), + [aux_sym__record_key_token2] = ACTIONS(1033), + [anon_sym_POUND] = ACTIONS(3), }, [719] = { [sym_comment] = STATE(719), - [ts_builtin_sym_end] = ACTIONS(1370), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1020), + [anon_sym_alias] = ACTIONS(1020), + [anon_sym_let] = ACTIONS(1020), + [anon_sym_let_DASHenv] = ACTIONS(1020), + [anon_sym_mut] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(1020), + [sym_cmd_identifier] = ACTIONS(1020), + [anon_sym_def] = ACTIONS(1020), + [anon_sym_export_DASHenv] = ACTIONS(1020), + [anon_sym_extern] = ACTIONS(1020), + [anon_sym_module] = ACTIONS(1020), + [anon_sym_use] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_error] = ACTIONS(1020), + [anon_sym_list] = ACTIONS(1020), + [anon_sym_GT] = ACTIONS(1020), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_in] = ACTIONS(1020), + [anon_sym_loop] = ACTIONS(1020), + [anon_sym_make] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_else] = ACTIONS(1020), + [anon_sym_match] = ACTIONS(1020), + [anon_sym_RBRACE] = ACTIONS(1022), + [anon_sym_try] = ACTIONS(1020), + [anon_sym_catch] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_source] = ACTIONS(1020), + [anon_sym_source_DASHenv] = ACTIONS(1020), + [anon_sym_register] = ACTIONS(1020), + [anon_sym_hide] = ACTIONS(1020), + [anon_sym_hide_DASHenv] = ACTIONS(1020), + [anon_sym_overlay] = ACTIONS(1020), + [anon_sym_new] = ACTIONS(1020), + [anon_sym_as] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_STAR_STAR] = ACTIONS(1022), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_SLASH] = ACTIONS(1020), + [anon_sym_mod] = ACTIONS(1020), + [anon_sym_SLASH_SLASH] = ACTIONS(1022), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_bit_DASHshl] = ACTIONS(1020), + [anon_sym_bit_DASHshr] = ACTIONS(1020), + [anon_sym_EQ_EQ] = ACTIONS(1022), + [anon_sym_BANG_EQ] = ACTIONS(1022), + [anon_sym_LT2] = ACTIONS(1020), + [anon_sym_LT_EQ] = ACTIONS(1022), + [anon_sym_GT_EQ] = ACTIONS(1022), + [anon_sym_not_DASHin] = ACTIONS(1020), + [anon_sym_starts_DASHwith] = ACTIONS(1020), + [anon_sym_ends_DASHwith] = ACTIONS(1020), + [anon_sym_EQ_TILDE] = ACTIONS(1022), + [anon_sym_BANG_TILDE] = ACTIONS(1022), + [anon_sym_bit_DASHand] = ACTIONS(1020), + [anon_sym_bit_DASHxor] = ACTIONS(1020), + [anon_sym_bit_DASHor] = ACTIONS(1020), + [anon_sym_and] = ACTIONS(1020), + [anon_sym_xor] = ACTIONS(1020), + [anon_sym_or] = ACTIONS(1020), + [aux_sym__val_number_decimal_token1] = ACTIONS(1020), + [aux_sym__val_number_decimal_token2] = ACTIONS(1022), + [anon_sym_DOT2] = ACTIONS(1022), + [aux_sym__val_number_decimal_token3] = ACTIONS(1022), + [aux_sym__val_number_token1] = ACTIONS(1022), + [aux_sym__val_number_token2] = ACTIONS(1022), + [aux_sym__val_number_token3] = ACTIONS(1022), + [aux_sym__val_number_token4] = ACTIONS(1020), + [aux_sym__val_number_token5] = ACTIONS(1022), + [aux_sym__val_number_token6] = ACTIONS(1020), + [anon_sym_DQUOTE] = ACTIONS(1022), + [sym__str_single_quotes] = ACTIONS(1022), + [sym__str_back_ticks] = ACTIONS(1022), + [aux_sym__record_key_token2] = ACTIONS(1020), + [anon_sym_POUND] = ACTIONS(3), }, [720] = { [sym_comment] = STATE(720), - [ts_builtin_sym_end] = ACTIONS(1378), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(1510), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1512), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1514), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1516), - [anon_sym_PLUS_PLUS] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(1514), - [anon_sym_mod] = ACTIONS(1514), - [anon_sym_SLASH_SLASH] = ACTIONS(1514), - [anon_sym_PLUS] = ACTIONS(1510), - [anon_sym_bit_DASHshl] = ACTIONS(1518), - [anon_sym_bit_DASHshr] = ACTIONS(1518), - [anon_sym_EQ_EQ] = ACTIONS(1508), - [anon_sym_BANG_EQ] = ACTIONS(1508), - [anon_sym_LT2] = ACTIONS(1508), - [anon_sym_LT_EQ] = ACTIONS(1508), - [anon_sym_GT_EQ] = ACTIONS(1508), - [anon_sym_not_DASHin] = ACTIONS(1512), - [anon_sym_starts_DASHwith] = ACTIONS(1512), - [anon_sym_ends_DASHwith] = ACTIONS(1512), - [anon_sym_EQ_TILDE] = ACTIONS(1520), - [anon_sym_BANG_TILDE] = ACTIONS(1520), - [anon_sym_bit_DASHand] = ACTIONS(1522), - [anon_sym_bit_DASHxor] = ACTIONS(1524), - [anon_sym_bit_DASHor] = ACTIONS(1526), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_alias] = ACTIONS(1068), + [anon_sym_let] = ACTIONS(1068), + [anon_sym_let_DASHenv] = ACTIONS(1068), + [anon_sym_mut] = ACTIONS(1068), + [anon_sym_const] = ACTIONS(1068), + [sym_cmd_identifier] = ACTIONS(1068), + [anon_sym_def] = ACTIONS(1068), + [anon_sym_export_DASHenv] = ACTIONS(1068), + [anon_sym_extern] = ACTIONS(1068), + [anon_sym_module] = ACTIONS(1068), + [anon_sym_use] = ACTIONS(1068), + [anon_sym_LPAREN] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_error] = ACTIONS(1068), + [anon_sym_list] = ACTIONS(1068), + [anon_sym_GT] = ACTIONS(1068), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_break] = ACTIONS(1068), + [anon_sym_continue] = ACTIONS(1068), + [anon_sym_for] = ACTIONS(1068), + [anon_sym_in] = ACTIONS(1068), + [anon_sym_loop] = ACTIONS(1068), + [anon_sym_make] = ACTIONS(1068), + [anon_sym_while] = ACTIONS(1068), + [anon_sym_do] = ACTIONS(1068), + [anon_sym_if] = ACTIONS(1068), + [anon_sym_else] = ACTIONS(1068), + [anon_sym_match] = ACTIONS(1068), + [anon_sym_RBRACE] = ACTIONS(1070), + [anon_sym_try] = ACTIONS(1068), + [anon_sym_catch] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1068), + [anon_sym_source] = ACTIONS(1068), + [anon_sym_source_DASHenv] = ACTIONS(1068), + [anon_sym_register] = ACTIONS(1068), + [anon_sym_hide] = ACTIONS(1068), + [anon_sym_hide_DASHenv] = ACTIONS(1068), + [anon_sym_overlay] = ACTIONS(1068), + [anon_sym_new] = ACTIONS(1068), + [anon_sym_as] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_STAR_STAR] = ACTIONS(1070), + [anon_sym_PLUS_PLUS] = ACTIONS(1070), + [anon_sym_SLASH] = ACTIONS(1068), + [anon_sym_mod] = ACTIONS(1068), + [anon_sym_SLASH_SLASH] = ACTIONS(1070), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_bit_DASHshl] = ACTIONS(1068), + [anon_sym_bit_DASHshr] = ACTIONS(1068), + [anon_sym_EQ_EQ] = ACTIONS(1070), + [anon_sym_BANG_EQ] = ACTIONS(1070), + [anon_sym_LT2] = ACTIONS(1068), + [anon_sym_LT_EQ] = ACTIONS(1070), + [anon_sym_GT_EQ] = ACTIONS(1070), + [anon_sym_not_DASHin] = ACTIONS(1068), + [anon_sym_starts_DASHwith] = ACTIONS(1068), + [anon_sym_ends_DASHwith] = ACTIONS(1068), + [anon_sym_EQ_TILDE] = ACTIONS(1070), + [anon_sym_BANG_TILDE] = ACTIONS(1070), + [anon_sym_bit_DASHand] = ACTIONS(1068), + [anon_sym_bit_DASHxor] = ACTIONS(1068), + [anon_sym_bit_DASHor] = ACTIONS(1068), + [anon_sym_and] = ACTIONS(1068), + [anon_sym_xor] = ACTIONS(1068), + [anon_sym_or] = ACTIONS(1068), + [aux_sym__val_number_decimal_token1] = ACTIONS(1068), + [aux_sym__val_number_decimal_token2] = ACTIONS(1070), + [anon_sym_DOT2] = ACTIONS(1070), + [aux_sym__val_number_decimal_token3] = ACTIONS(1070), + [aux_sym__val_number_token1] = ACTIONS(1070), + [aux_sym__val_number_token2] = ACTIONS(1070), + [aux_sym__val_number_token3] = ACTIONS(1070), + [aux_sym__val_number_token4] = ACTIONS(1068), + [aux_sym__val_number_token5] = ACTIONS(1070), + [aux_sym__val_number_token6] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(1070), + [sym__str_single_quotes] = ACTIONS(1070), + [sym__str_back_ticks] = ACTIONS(1070), + [aux_sym__record_key_token2] = ACTIONS(1068), + [anon_sym_POUND] = ACTIONS(3), }, [721] = { [sym_comment] = STATE(721), - [ts_builtin_sym_end] = ACTIONS(1370), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(920), + [anon_sym_alias] = ACTIONS(920), + [anon_sym_let] = ACTIONS(920), + [anon_sym_let_DASHenv] = ACTIONS(920), + [anon_sym_mut] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [sym_cmd_identifier] = ACTIONS(920), + [anon_sym_def] = ACTIONS(920), + [anon_sym_export_DASHenv] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym_module] = ACTIONS(920), + [anon_sym_use] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(922), + [anon_sym_DOLLAR] = ACTIONS(922), + [anon_sym_error] = ACTIONS(920), + [anon_sym_list] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_in] = ACTIONS(920), + [anon_sym_loop] = ACTIONS(920), + [anon_sym_make] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_else] = ACTIONS(920), + [anon_sym_match] = ACTIONS(920), + [anon_sym_RBRACE] = ACTIONS(922), + [anon_sym_try] = ACTIONS(920), + [anon_sym_catch] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_source] = ACTIONS(920), + [anon_sym_source_DASHenv] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_hide] = ACTIONS(920), + [anon_sym_hide_DASHenv] = ACTIONS(920), + [anon_sym_overlay] = ACTIONS(920), + [anon_sym_new] = ACTIONS(920), + [anon_sym_as] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_STAR_STAR] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_mod] = ACTIONS(920), + [anon_sym_SLASH_SLASH] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_bit_DASHshl] = ACTIONS(920), + [anon_sym_bit_DASHshr] = ACTIONS(920), + [anon_sym_EQ_EQ] = ACTIONS(922), + [anon_sym_BANG_EQ] = ACTIONS(922), + [anon_sym_LT2] = ACTIONS(920), + [anon_sym_LT_EQ] = ACTIONS(922), + [anon_sym_GT_EQ] = ACTIONS(922), + [anon_sym_not_DASHin] = ACTIONS(920), + [anon_sym_starts_DASHwith] = ACTIONS(920), + [anon_sym_ends_DASHwith] = ACTIONS(920), + [anon_sym_EQ_TILDE] = ACTIONS(922), + [anon_sym_BANG_TILDE] = ACTIONS(922), + [anon_sym_bit_DASHand] = ACTIONS(920), + [anon_sym_bit_DASHxor] = ACTIONS(920), + [anon_sym_bit_DASHor] = ACTIONS(920), + [anon_sym_and] = ACTIONS(920), + [anon_sym_xor] = ACTIONS(920), + [anon_sym_or] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(922), + [anon_sym_DOT2] = ACTIONS(922), + [aux_sym__val_number_decimal_token3] = ACTIONS(922), + [aux_sym__val_number_token1] = ACTIONS(922), + [aux_sym__val_number_token2] = ACTIONS(922), + [aux_sym__val_number_token3] = ACTIONS(922), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(922), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(922), + [sym__str_single_quotes] = ACTIONS(922), + [sym__str_back_ticks] = ACTIONS(922), + [aux_sym__record_key_token2] = ACTIONS(920), + [anon_sym_POUND] = ACTIONS(3), }, [722] = { [sym_comment] = STATE(722), - [ts_builtin_sym_end] = ACTIONS(1378), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(1510), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1512), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1514), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1516), - [anon_sym_PLUS_PLUS] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(1514), - [anon_sym_mod] = ACTIONS(1514), - [anon_sym_SLASH_SLASH] = ACTIONS(1514), - [anon_sym_PLUS] = ACTIONS(1510), - [anon_sym_bit_DASHshl] = ACTIONS(1518), - [anon_sym_bit_DASHshr] = ACTIONS(1518), - [anon_sym_EQ_EQ] = ACTIONS(1508), - [anon_sym_BANG_EQ] = ACTIONS(1508), - [anon_sym_LT2] = ACTIONS(1508), - [anon_sym_LT_EQ] = ACTIONS(1508), - [anon_sym_GT_EQ] = ACTIONS(1508), - [anon_sym_not_DASHin] = ACTIONS(1512), - [anon_sym_starts_DASHwith] = ACTIONS(1512), - [anon_sym_ends_DASHwith] = ACTIONS(1512), - [anon_sym_EQ_TILDE] = ACTIONS(1520), - [anon_sym_BANG_TILDE] = ACTIONS(1520), - [anon_sym_bit_DASHand] = ACTIONS(1522), - [anon_sym_bit_DASHxor] = ACTIONS(1524), - [anon_sym_bit_DASHor] = ACTIONS(1526), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1139), + [anon_sym_alias] = ACTIONS(1139), + [anon_sym_let] = ACTIONS(1139), + [anon_sym_let_DASHenv] = ACTIONS(1139), + [anon_sym_mut] = ACTIONS(1139), + [anon_sym_const] = ACTIONS(1139), + [sym_cmd_identifier] = ACTIONS(1139), + [anon_sym_def] = ACTIONS(1139), + [anon_sym_export_DASHenv] = ACTIONS(1139), + [anon_sym_extern] = ACTIONS(1139), + [anon_sym_module] = ACTIONS(1139), + [anon_sym_use] = ACTIONS(1139), + [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_DOLLAR] = ACTIONS(1209), + [anon_sym_error] = ACTIONS(1139), + [anon_sym_list] = ACTIONS(1139), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_break] = ACTIONS(1139), + [anon_sym_continue] = ACTIONS(1139), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_in] = ACTIONS(1139), + [anon_sym_loop] = ACTIONS(1139), + [anon_sym_make] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1139), + [anon_sym_do] = ACTIONS(1139), + [anon_sym_if] = ACTIONS(1139), + [anon_sym_else] = ACTIONS(1139), + [anon_sym_match] = ACTIONS(1139), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym_try] = ACTIONS(1139), + [anon_sym_catch] = ACTIONS(1139), + [anon_sym_return] = ACTIONS(1139), + [anon_sym_source] = ACTIONS(1139), + [anon_sym_source_DASHenv] = ACTIONS(1139), + [anon_sym_register] = ACTIONS(1139), + [anon_sym_hide] = ACTIONS(1139), + [anon_sym_hide_DASHenv] = ACTIONS(1139), + [anon_sym_overlay] = ACTIONS(1139), + [anon_sym_new] = ACTIONS(1139), + [anon_sym_as] = ACTIONS(1139), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_STAR_STAR] = ACTIONS(1209), + [anon_sym_PLUS_PLUS] = ACTIONS(1209), + [anon_sym_SLASH] = ACTIONS(1139), + [anon_sym_mod] = ACTIONS(1139), + [anon_sym_SLASH_SLASH] = ACTIONS(1209), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_bit_DASHshl] = ACTIONS(1139), + [anon_sym_bit_DASHshr] = ACTIONS(1139), + [anon_sym_EQ_EQ] = ACTIONS(1209), + [anon_sym_BANG_EQ] = ACTIONS(1209), + [anon_sym_LT2] = ACTIONS(1139), + [anon_sym_LT_EQ] = ACTIONS(1209), + [anon_sym_GT_EQ] = ACTIONS(1209), + [anon_sym_not_DASHin] = ACTIONS(1139), + [anon_sym_starts_DASHwith] = ACTIONS(1139), + [anon_sym_ends_DASHwith] = ACTIONS(1139), + [anon_sym_EQ_TILDE] = ACTIONS(1209), + [anon_sym_BANG_TILDE] = ACTIONS(1209), + [anon_sym_bit_DASHand] = ACTIONS(1139), + [anon_sym_bit_DASHxor] = ACTIONS(1139), + [anon_sym_bit_DASHor] = ACTIONS(1139), + [anon_sym_and] = ACTIONS(1139), + [anon_sym_xor] = ACTIONS(1139), + [anon_sym_or] = ACTIONS(1139), + [aux_sym__val_number_decimal_token1] = ACTIONS(1139), + [aux_sym__val_number_decimal_token2] = ACTIONS(1209), + [anon_sym_DOT2] = ACTIONS(1209), + [aux_sym__val_number_decimal_token3] = ACTIONS(1209), + [aux_sym__val_number_token1] = ACTIONS(1209), + [aux_sym__val_number_token2] = ACTIONS(1209), + [aux_sym__val_number_token3] = ACTIONS(1209), + [aux_sym__val_number_token4] = ACTIONS(1139), + [aux_sym__val_number_token5] = ACTIONS(1209), + [aux_sym__val_number_token6] = ACTIONS(1139), + [anon_sym_DQUOTE] = ACTIONS(1209), + [sym__str_single_quotes] = ACTIONS(1209), + [sym__str_back_ticks] = ACTIONS(1209), + [aux_sym__record_key_token2] = ACTIONS(1139), + [anon_sym_POUND] = ACTIONS(3), }, [723] = { [sym_comment] = STATE(723), - [ts_builtin_sym_end] = ACTIONS(1370), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1215), + [anon_sym_alias] = ACTIONS(1215), + [anon_sym_let] = ACTIONS(1215), + [anon_sym_let_DASHenv] = ACTIONS(1215), + [anon_sym_mut] = ACTIONS(1215), + [anon_sym_const] = ACTIONS(1215), + [sym_cmd_identifier] = ACTIONS(1215), + [anon_sym_def] = ACTIONS(1215), + [anon_sym_export_DASHenv] = ACTIONS(1215), + [anon_sym_extern] = ACTIONS(1215), + [anon_sym_module] = ACTIONS(1215), + [anon_sym_use] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_DOLLAR] = ACTIONS(1217), + [anon_sym_error] = ACTIONS(1215), + [anon_sym_list] = ACTIONS(1215), + [anon_sym_GT] = ACTIONS(1215), + [anon_sym_DASH] = ACTIONS(1215), + [anon_sym_break] = ACTIONS(1215), + [anon_sym_continue] = ACTIONS(1215), + [anon_sym_for] = ACTIONS(1215), + [anon_sym_in] = ACTIONS(1215), + [anon_sym_loop] = ACTIONS(1215), + [anon_sym_make] = ACTIONS(1215), + [anon_sym_while] = ACTIONS(1215), + [anon_sym_do] = ACTIONS(1215), + [anon_sym_if] = ACTIONS(1215), + [anon_sym_else] = ACTIONS(1215), + [anon_sym_match] = ACTIONS(1215), + [anon_sym_RBRACE] = ACTIONS(1217), + [anon_sym_try] = ACTIONS(1215), + [anon_sym_catch] = ACTIONS(1215), + [anon_sym_return] = ACTIONS(1215), + [anon_sym_source] = ACTIONS(1215), + [anon_sym_source_DASHenv] = ACTIONS(1215), + [anon_sym_register] = ACTIONS(1215), + [anon_sym_hide] = ACTIONS(1215), + [anon_sym_hide_DASHenv] = ACTIONS(1215), + [anon_sym_overlay] = ACTIONS(1215), + [anon_sym_new] = ACTIONS(1215), + [anon_sym_as] = ACTIONS(1215), + [anon_sym_STAR] = ACTIONS(1215), + [anon_sym_STAR_STAR] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(1215), + [anon_sym_mod] = ACTIONS(1215), + [anon_sym_SLASH_SLASH] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1215), + [anon_sym_bit_DASHshl] = ACTIONS(1215), + [anon_sym_bit_DASHshr] = ACTIONS(1215), + [anon_sym_EQ_EQ] = ACTIONS(1217), + [anon_sym_BANG_EQ] = ACTIONS(1217), + [anon_sym_LT2] = ACTIONS(1215), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT_EQ] = ACTIONS(1217), + [anon_sym_not_DASHin] = ACTIONS(1215), + [anon_sym_starts_DASHwith] = ACTIONS(1215), + [anon_sym_ends_DASHwith] = ACTIONS(1215), + [anon_sym_EQ_TILDE] = ACTIONS(1217), + [anon_sym_BANG_TILDE] = ACTIONS(1217), + [anon_sym_bit_DASHand] = ACTIONS(1215), + [anon_sym_bit_DASHxor] = ACTIONS(1215), + [anon_sym_bit_DASHor] = ACTIONS(1215), + [anon_sym_and] = ACTIONS(1215), + [anon_sym_xor] = ACTIONS(1215), + [anon_sym_or] = ACTIONS(1215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1215), + [aux_sym__val_number_decimal_token2] = ACTIONS(1217), + [anon_sym_DOT2] = ACTIONS(1217), + [aux_sym__val_number_decimal_token3] = ACTIONS(1217), + [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(1215), + [aux_sym__val_number_token5] = ACTIONS(1217), + [aux_sym__val_number_token6] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym__str_single_quotes] = ACTIONS(1217), + [sym__str_back_ticks] = ACTIONS(1217), + [aux_sym__record_key_token2] = ACTIONS(1215), + [anon_sym_POUND] = ACTIONS(3), }, [724] = { [sym_comment] = STATE(724), - [ts_builtin_sym_end] = ACTIONS(1378), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(1510), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1512), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1514), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1516), - [anon_sym_PLUS_PLUS] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(1514), - [anon_sym_mod] = ACTIONS(1514), - [anon_sym_SLASH_SLASH] = ACTIONS(1514), - [anon_sym_PLUS] = ACTIONS(1510), - [anon_sym_bit_DASHshl] = ACTIONS(1518), - [anon_sym_bit_DASHshr] = ACTIONS(1518), - [anon_sym_EQ_EQ] = ACTIONS(1508), - [anon_sym_BANG_EQ] = ACTIONS(1508), - [anon_sym_LT2] = ACTIONS(1508), - [anon_sym_LT_EQ] = ACTIONS(1508), - [anon_sym_GT_EQ] = ACTIONS(1508), - [anon_sym_not_DASHin] = ACTIONS(1512), - [anon_sym_starts_DASHwith] = ACTIONS(1512), - [anon_sym_ends_DASHwith] = ACTIONS(1512), - [anon_sym_EQ_TILDE] = ACTIONS(1520), - [anon_sym_BANG_TILDE] = ACTIONS(1520), - [anon_sym_bit_DASHand] = ACTIONS(1522), - [anon_sym_bit_DASHxor] = ACTIONS(1524), - [anon_sym_bit_DASHor] = ACTIONS(1526), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1530), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_alias] = ACTIONS(1061), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_let_DASHenv] = ACTIONS(1061), + [anon_sym_mut] = ACTIONS(1061), + [anon_sym_const] = ACTIONS(1061), + [sym_cmd_identifier] = ACTIONS(1061), + [anon_sym_def] = ACTIONS(1061), + [anon_sym_export_DASHenv] = ACTIONS(1061), + [anon_sym_extern] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_use] = ACTIONS(1061), + [anon_sym_LPAREN] = ACTIONS(1063), + [anon_sym_DOLLAR] = ACTIONS(1063), + [anon_sym_error] = ACTIONS(1061), + [anon_sym_list] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_DASH] = ACTIONS(1061), + [anon_sym_break] = ACTIONS(1061), + [anon_sym_continue] = ACTIONS(1061), + [anon_sym_for] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1061), + [anon_sym_loop] = ACTIONS(1061), + [anon_sym_make] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(1061), + [anon_sym_do] = ACTIONS(1061), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_else] = ACTIONS(1061), + [anon_sym_match] = ACTIONS(1061), + [anon_sym_RBRACE] = ACTIONS(1063), + [anon_sym_try] = ACTIONS(1061), + [anon_sym_catch] = ACTIONS(1061), + [anon_sym_return] = ACTIONS(1061), + [anon_sym_source] = ACTIONS(1061), + [anon_sym_source_DASHenv] = ACTIONS(1061), + [anon_sym_register] = ACTIONS(1061), + [anon_sym_hide] = ACTIONS(1061), + [anon_sym_hide_DASHenv] = ACTIONS(1061), + [anon_sym_overlay] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_as] = ACTIONS(1061), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_STAR_STAR] = ACTIONS(1063), + [anon_sym_PLUS_PLUS] = ACTIONS(1063), + [anon_sym_SLASH] = ACTIONS(1061), + [anon_sym_mod] = ACTIONS(1061), + [anon_sym_SLASH_SLASH] = ACTIONS(1063), + [anon_sym_PLUS] = ACTIONS(1061), + [anon_sym_bit_DASHshl] = ACTIONS(1061), + [anon_sym_bit_DASHshr] = ACTIONS(1061), + [anon_sym_EQ_EQ] = ACTIONS(1063), + [anon_sym_BANG_EQ] = ACTIONS(1063), + [anon_sym_LT2] = ACTIONS(1061), + [anon_sym_LT_EQ] = ACTIONS(1063), + [anon_sym_GT_EQ] = ACTIONS(1063), + [anon_sym_not_DASHin] = ACTIONS(1061), + [anon_sym_starts_DASHwith] = ACTIONS(1061), + [anon_sym_ends_DASHwith] = ACTIONS(1061), + [anon_sym_EQ_TILDE] = ACTIONS(1063), + [anon_sym_BANG_TILDE] = ACTIONS(1063), + [anon_sym_bit_DASHand] = ACTIONS(1061), + [anon_sym_bit_DASHxor] = ACTIONS(1061), + [anon_sym_bit_DASHor] = ACTIONS(1061), + [anon_sym_and] = ACTIONS(1061), + [anon_sym_xor] = ACTIONS(1061), + [anon_sym_or] = ACTIONS(1061), + [aux_sym__val_number_decimal_token1] = ACTIONS(1061), + [aux_sym__val_number_decimal_token2] = ACTIONS(1063), + [anon_sym_DOT2] = ACTIONS(1063), + [aux_sym__val_number_decimal_token3] = ACTIONS(1063), + [aux_sym__val_number_token1] = ACTIONS(1063), + [aux_sym__val_number_token2] = ACTIONS(1063), + [aux_sym__val_number_token3] = ACTIONS(1063), + [aux_sym__val_number_token4] = ACTIONS(1061), + [aux_sym__val_number_token5] = ACTIONS(1063), + [aux_sym__val_number_token6] = ACTIONS(1061), + [anon_sym_DQUOTE] = ACTIONS(1063), + [sym__str_single_quotes] = ACTIONS(1063), + [sym__str_back_ticks] = ACTIONS(1063), + [aux_sym__record_key_token2] = ACTIONS(1061), + [anon_sym_POUND] = ACTIONS(3), }, [725] = { [sym_comment] = STATE(725), - [ts_builtin_sym_end] = ACTIONS(1370), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1237), + [anon_sym_alias] = ACTIONS(1237), + [anon_sym_let] = ACTIONS(1237), + [anon_sym_let_DASHenv] = ACTIONS(1237), + [anon_sym_mut] = ACTIONS(1237), + [anon_sym_const] = ACTIONS(1237), + [sym_cmd_identifier] = ACTIONS(1237), + [anon_sym_def] = ACTIONS(1237), + [anon_sym_export_DASHenv] = ACTIONS(1237), + [anon_sym_extern] = ACTIONS(1237), + [anon_sym_module] = ACTIONS(1237), + [anon_sym_use] = ACTIONS(1237), + [anon_sym_LPAREN] = ACTIONS(1239), + [anon_sym_DOLLAR] = ACTIONS(1239), + [anon_sym_error] = ACTIONS(1237), + [anon_sym_list] = ACTIONS(1237), + [anon_sym_GT] = ACTIONS(1237), + [anon_sym_DASH] = ACTIONS(1237), + [anon_sym_break] = ACTIONS(1237), + [anon_sym_continue] = ACTIONS(1237), + [anon_sym_for] = ACTIONS(1237), + [anon_sym_in] = ACTIONS(1237), + [anon_sym_loop] = ACTIONS(1237), + [anon_sym_make] = ACTIONS(1237), + [anon_sym_while] = ACTIONS(1237), + [anon_sym_do] = ACTIONS(1237), + [anon_sym_if] = ACTIONS(1237), + [anon_sym_else] = ACTIONS(1237), + [anon_sym_match] = ACTIONS(1237), + [anon_sym_RBRACE] = ACTIONS(1239), + [anon_sym_try] = ACTIONS(1237), + [anon_sym_catch] = ACTIONS(1237), + [anon_sym_return] = ACTIONS(1237), + [anon_sym_source] = ACTIONS(1237), + [anon_sym_source_DASHenv] = ACTIONS(1237), + [anon_sym_register] = ACTIONS(1237), + [anon_sym_hide] = ACTIONS(1237), + [anon_sym_hide_DASHenv] = ACTIONS(1237), + [anon_sym_overlay] = ACTIONS(1237), + [anon_sym_new] = ACTIONS(1237), + [anon_sym_as] = ACTIONS(1237), + [anon_sym_STAR] = ACTIONS(1237), + [anon_sym_STAR_STAR] = ACTIONS(1239), + [anon_sym_PLUS_PLUS] = ACTIONS(1239), + [anon_sym_SLASH] = ACTIONS(1237), + [anon_sym_mod] = ACTIONS(1237), + [anon_sym_SLASH_SLASH] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1237), + [anon_sym_bit_DASHshl] = ACTIONS(1237), + [anon_sym_bit_DASHshr] = ACTIONS(1237), + [anon_sym_EQ_EQ] = ACTIONS(1239), + [anon_sym_BANG_EQ] = ACTIONS(1239), + [anon_sym_LT2] = ACTIONS(1237), + [anon_sym_LT_EQ] = ACTIONS(1239), + [anon_sym_GT_EQ] = ACTIONS(1239), + [anon_sym_not_DASHin] = ACTIONS(1237), + [anon_sym_starts_DASHwith] = ACTIONS(1237), + [anon_sym_ends_DASHwith] = ACTIONS(1237), + [anon_sym_EQ_TILDE] = ACTIONS(1239), + [anon_sym_BANG_TILDE] = ACTIONS(1239), + [anon_sym_bit_DASHand] = ACTIONS(1237), + [anon_sym_bit_DASHxor] = ACTIONS(1237), + [anon_sym_bit_DASHor] = ACTIONS(1237), + [anon_sym_and] = ACTIONS(1237), + [anon_sym_xor] = ACTIONS(1237), + [anon_sym_or] = ACTIONS(1237), + [aux_sym__val_number_decimal_token1] = ACTIONS(1237), + [aux_sym__val_number_decimal_token2] = ACTIONS(1239), + [anon_sym_DOT2] = ACTIONS(1239), + [aux_sym__val_number_decimal_token3] = ACTIONS(1239), + [aux_sym__val_number_token1] = ACTIONS(1239), + [aux_sym__val_number_token2] = ACTIONS(1239), + [aux_sym__val_number_token3] = ACTIONS(1239), + [aux_sym__val_number_token4] = ACTIONS(1237), + [aux_sym__val_number_token5] = ACTIONS(1239), + [aux_sym__val_number_token6] = ACTIONS(1237), + [anon_sym_DQUOTE] = ACTIONS(1239), + [sym__str_single_quotes] = ACTIONS(1239), + [sym__str_back_ticks] = ACTIONS(1239), + [aux_sym__record_key_token2] = ACTIONS(1237), + [anon_sym_POUND] = ACTIONS(3), }, [726] = { [sym_comment] = STATE(726), - [ts_builtin_sym_end] = ACTIONS(1378), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(1510), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1512), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1514), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1516), - [anon_sym_PLUS_PLUS] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(1514), - [anon_sym_mod] = ACTIONS(1514), - [anon_sym_SLASH_SLASH] = ACTIONS(1514), - [anon_sym_PLUS] = ACTIONS(1510), - [anon_sym_bit_DASHshl] = ACTIONS(1518), - [anon_sym_bit_DASHshr] = ACTIONS(1518), - [anon_sym_EQ_EQ] = ACTIONS(1508), - [anon_sym_BANG_EQ] = ACTIONS(1508), - [anon_sym_LT2] = ACTIONS(1508), - [anon_sym_LT_EQ] = ACTIONS(1508), - [anon_sym_GT_EQ] = ACTIONS(1508), - [anon_sym_not_DASHin] = ACTIONS(1512), - [anon_sym_starts_DASHwith] = ACTIONS(1512), - [anon_sym_ends_DASHwith] = ACTIONS(1512), - [anon_sym_EQ_TILDE] = ACTIONS(1520), - [anon_sym_BANG_TILDE] = ACTIONS(1520), - [anon_sym_bit_DASHand] = ACTIONS(1522), - [anon_sym_bit_DASHxor] = ACTIONS(1524), - [anon_sym_bit_DASHor] = ACTIONS(1526), - [anon_sym_and] = ACTIONS(1528), - [anon_sym_xor] = ACTIONS(1530), - [anon_sym_or] = ACTIONS(1532), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_alias] = ACTIONS(1159), + [anon_sym_let] = ACTIONS(1159), + [anon_sym_let_DASHenv] = ACTIONS(1159), + [anon_sym_mut] = ACTIONS(1159), + [anon_sym_const] = ACTIONS(1159), + [sym_cmd_identifier] = ACTIONS(1159), + [anon_sym_def] = ACTIONS(1159), + [anon_sym_export_DASHenv] = ACTIONS(1159), + [anon_sym_extern] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_use] = ACTIONS(1159), + [anon_sym_LPAREN] = ACTIONS(1161), + [anon_sym_DOLLAR] = ACTIONS(1161), + [anon_sym_error] = ACTIONS(1159), + [anon_sym_list] = ACTIONS(1159), + [anon_sym_GT] = ACTIONS(1159), + [anon_sym_DASH] = ACTIONS(1159), + [anon_sym_break] = ACTIONS(1159), + [anon_sym_continue] = ACTIONS(1159), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_in] = ACTIONS(1159), + [anon_sym_loop] = ACTIONS(1159), + [anon_sym_make] = ACTIONS(1159), + [anon_sym_while] = ACTIONS(1159), + [anon_sym_do] = ACTIONS(1159), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_else] = ACTIONS(1159), + [anon_sym_match] = ACTIONS(1159), + [anon_sym_RBRACE] = ACTIONS(1161), + [anon_sym_try] = ACTIONS(1159), + [anon_sym_catch] = ACTIONS(1159), + [anon_sym_return] = ACTIONS(1159), + [anon_sym_source] = ACTIONS(1159), + [anon_sym_source_DASHenv] = ACTIONS(1159), + [anon_sym_register] = ACTIONS(1159), + [anon_sym_hide] = ACTIONS(1159), + [anon_sym_hide_DASHenv] = ACTIONS(1159), + [anon_sym_overlay] = ACTIONS(1159), + [anon_sym_new] = ACTIONS(1159), + [anon_sym_as] = ACTIONS(1159), + [anon_sym_STAR] = ACTIONS(1159), + [anon_sym_STAR_STAR] = ACTIONS(1161), + [anon_sym_PLUS_PLUS] = ACTIONS(1161), + [anon_sym_SLASH] = ACTIONS(1159), + [anon_sym_mod] = ACTIONS(1159), + [anon_sym_SLASH_SLASH] = ACTIONS(1161), + [anon_sym_PLUS] = ACTIONS(1159), + [anon_sym_bit_DASHshl] = ACTIONS(1159), + [anon_sym_bit_DASHshr] = ACTIONS(1159), + [anon_sym_EQ_EQ] = ACTIONS(1161), + [anon_sym_BANG_EQ] = ACTIONS(1161), + [anon_sym_LT2] = ACTIONS(1159), + [anon_sym_LT_EQ] = ACTIONS(1161), + [anon_sym_GT_EQ] = ACTIONS(1161), + [anon_sym_not_DASHin] = ACTIONS(1159), + [anon_sym_starts_DASHwith] = ACTIONS(1159), + [anon_sym_ends_DASHwith] = ACTIONS(1159), + [anon_sym_EQ_TILDE] = ACTIONS(1161), + [anon_sym_BANG_TILDE] = ACTIONS(1161), + [anon_sym_bit_DASHand] = ACTIONS(1159), + [anon_sym_bit_DASHxor] = ACTIONS(1159), + [anon_sym_bit_DASHor] = ACTIONS(1159), + [anon_sym_and] = ACTIONS(1159), + [anon_sym_xor] = ACTIONS(1159), + [anon_sym_or] = ACTIONS(1159), + [aux_sym__val_number_decimal_token1] = ACTIONS(1159), + [aux_sym__val_number_decimal_token2] = ACTIONS(1161), + [anon_sym_DOT2] = ACTIONS(1161), + [aux_sym__val_number_decimal_token3] = ACTIONS(1161), + [aux_sym__val_number_token1] = ACTIONS(1161), + [aux_sym__val_number_token2] = ACTIONS(1161), + [aux_sym__val_number_token3] = ACTIONS(1161), + [aux_sym__val_number_token4] = ACTIONS(1159), + [aux_sym__val_number_token5] = ACTIONS(1161), + [aux_sym__val_number_token6] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(1161), + [sym__str_single_quotes] = ACTIONS(1161), + [sym__str_back_ticks] = ACTIONS(1161), + [aux_sym__record_key_token2] = ACTIONS(1159), + [anon_sym_POUND] = ACTIONS(3), }, [727] = { [sym_comment] = STATE(727), - [ts_builtin_sym_end] = ACTIONS(1370), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_where] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1129), + [anon_sym_alias] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_let_DASHenv] = ACTIONS(1129), + [anon_sym_mut] = ACTIONS(1129), + [anon_sym_const] = ACTIONS(1129), + [sym_cmd_identifier] = ACTIONS(1129), + [anon_sym_def] = ACTIONS(1129), + [anon_sym_export_DASHenv] = ACTIONS(1129), + [anon_sym_extern] = ACTIONS(1129), + [anon_sym_module] = ACTIONS(1129), + [anon_sym_use] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_DOLLAR] = ACTIONS(1131), + [anon_sym_error] = ACTIONS(1129), + [anon_sym_list] = ACTIONS(1129), + [anon_sym_GT] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_break] = ACTIONS(1129), + [anon_sym_continue] = ACTIONS(1129), + [anon_sym_for] = ACTIONS(1129), + [anon_sym_in] = ACTIONS(1129), + [anon_sym_loop] = ACTIONS(1129), + [anon_sym_make] = ACTIONS(1129), + [anon_sym_while] = ACTIONS(1129), + [anon_sym_do] = ACTIONS(1129), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_else] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1129), + [anon_sym_RBRACE] = ACTIONS(1131), + [anon_sym_try] = ACTIONS(1129), + [anon_sym_catch] = ACTIONS(1129), + [anon_sym_return] = ACTIONS(1129), + [anon_sym_source] = ACTIONS(1129), + [anon_sym_source_DASHenv] = ACTIONS(1129), + [anon_sym_register] = ACTIONS(1129), + [anon_sym_hide] = ACTIONS(1129), + [anon_sym_hide_DASHenv] = ACTIONS(1129), + [anon_sym_overlay] = ACTIONS(1129), + [anon_sym_new] = ACTIONS(1129), + [anon_sym_as] = ACTIONS(1129), + [anon_sym_STAR] = ACTIONS(1129), + [anon_sym_STAR_STAR] = ACTIONS(1131), + [anon_sym_PLUS_PLUS] = ACTIONS(1131), + [anon_sym_SLASH] = ACTIONS(1129), + [anon_sym_mod] = ACTIONS(1129), + [anon_sym_SLASH_SLASH] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_bit_DASHshl] = ACTIONS(1129), + [anon_sym_bit_DASHshr] = ACTIONS(1129), + [anon_sym_EQ_EQ] = ACTIONS(1131), + [anon_sym_BANG_EQ] = ACTIONS(1131), + [anon_sym_LT2] = ACTIONS(1129), + [anon_sym_LT_EQ] = ACTIONS(1131), + [anon_sym_GT_EQ] = ACTIONS(1131), + [anon_sym_not_DASHin] = ACTIONS(1129), + [anon_sym_starts_DASHwith] = ACTIONS(1129), + [anon_sym_ends_DASHwith] = ACTIONS(1129), + [anon_sym_EQ_TILDE] = ACTIONS(1131), + [anon_sym_BANG_TILDE] = ACTIONS(1131), + [anon_sym_bit_DASHand] = ACTIONS(1129), + [anon_sym_bit_DASHxor] = ACTIONS(1129), + [anon_sym_bit_DASHor] = ACTIONS(1129), + [anon_sym_and] = ACTIONS(1129), + [anon_sym_xor] = ACTIONS(1129), + [anon_sym_or] = ACTIONS(1129), + [aux_sym__val_number_decimal_token1] = ACTIONS(1129), + [aux_sym__val_number_decimal_token2] = ACTIONS(1131), + [anon_sym_DOT2] = ACTIONS(1131), + [aux_sym__val_number_decimal_token3] = ACTIONS(1131), + [aux_sym__val_number_token1] = ACTIONS(1131), + [aux_sym__val_number_token2] = ACTIONS(1131), + [aux_sym__val_number_token3] = ACTIONS(1131), + [aux_sym__val_number_token4] = ACTIONS(1129), + [aux_sym__val_number_token5] = ACTIONS(1131), + [aux_sym__val_number_token6] = ACTIONS(1129), + [anon_sym_DQUOTE] = ACTIONS(1131), + [sym__str_single_quotes] = ACTIONS(1131), + [sym__str_back_ticks] = ACTIONS(1131), + [aux_sym__record_key_token2] = ACTIONS(1129), + [anon_sym_POUND] = ACTIONS(3), }, [728] = { [sym_comment] = STATE(728), - [ts_builtin_sym_end] = ACTIONS(1374), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_alias] = ACTIONS(1372), - [anon_sym_let] = ACTIONS(1372), - [anon_sym_let_DASHenv] = ACTIONS(1372), - [anon_sym_mut] = ACTIONS(1372), - [anon_sym_const] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1372), - [sym_cmd_identifier] = ACTIONS(1372), - [anon_sym_LF] = ACTIONS(1374), - [anon_sym_def] = ACTIONS(1372), - [anon_sym_export_DASHenv] = ACTIONS(1372), - [anon_sym_extern] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_use] = ACTIONS(1372), - [anon_sym_LBRACK] = ACTIONS(1372), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_DOLLAR] = ACTIONS(1372), - [anon_sym_error] = ACTIONS(1372), - [anon_sym_GT] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1372), - [anon_sym_break] = ACTIONS(1372), - [anon_sym_continue] = ACTIONS(1372), - [anon_sym_for] = ACTIONS(1372), - [anon_sym_in] = ACTIONS(1372), - [anon_sym_loop] = ACTIONS(1372), - [anon_sym_while] = ACTIONS(1372), - [anon_sym_do] = ACTIONS(1372), - [anon_sym_if] = ACTIONS(1372), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_DOT_DOT] = ACTIONS(1372), - [anon_sym_try] = ACTIONS(1372), - [anon_sym_return] = ACTIONS(1372), - [anon_sym_source] = ACTIONS(1372), - [anon_sym_source_DASHenv] = ACTIONS(1372), - [anon_sym_register] = ACTIONS(1372), - [anon_sym_hide] = ACTIONS(1372), - [anon_sym_hide_DASHenv] = ACTIONS(1372), - [anon_sym_overlay] = ACTIONS(1372), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_where] = ACTIONS(1372), - [anon_sym_STAR_STAR] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_SLASH] = ACTIONS(1372), - [anon_sym_mod] = ACTIONS(1372), - [anon_sym_SLASH_SLASH] = ACTIONS(1372), - [anon_sym_PLUS] = ACTIONS(1372), - [anon_sym_bit_DASHshl] = ACTIONS(1372), - [anon_sym_bit_DASHshr] = ACTIONS(1372), - [anon_sym_EQ_EQ] = ACTIONS(1372), - [anon_sym_BANG_EQ] = ACTIONS(1372), - [anon_sym_LT2] = ACTIONS(1372), - [anon_sym_LT_EQ] = ACTIONS(1372), - [anon_sym_GT_EQ] = ACTIONS(1372), - [anon_sym_not_DASHin] = ACTIONS(1372), - [anon_sym_starts_DASHwith] = ACTIONS(1372), - [anon_sym_ends_DASHwith] = ACTIONS(1372), - [anon_sym_EQ_TILDE] = ACTIONS(1372), - [anon_sym_BANG_TILDE] = ACTIONS(1372), - [anon_sym_bit_DASHand] = ACTIONS(1372), - [anon_sym_bit_DASHxor] = ACTIONS(1372), - [anon_sym_bit_DASHor] = ACTIONS(1372), - [anon_sym_and] = ACTIONS(1372), - [anon_sym_xor] = ACTIONS(1372), - [anon_sym_or] = ACTIONS(1372), - [anon_sym_not] = ACTIONS(1372), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1372), - [anon_sym_DOT_DOT_LT] = ACTIONS(1372), - [anon_sym_null] = ACTIONS(1372), - [anon_sym_true] = ACTIONS(1372), - [anon_sym_false] = ACTIONS(1372), - [aux_sym__val_number_decimal_token1] = ACTIONS(1372), - [aux_sym__val_number_decimal_token2] = ACTIONS(1372), - [anon_sym_DOT2] = ACTIONS(1372), - [aux_sym__val_number_decimal_token3] = ACTIONS(1372), - [aux_sym__val_number_token1] = ACTIONS(1372), - [aux_sym__val_number_token2] = ACTIONS(1372), - [aux_sym__val_number_token3] = ACTIONS(1372), - [aux_sym__val_number_token4] = ACTIONS(1372), - [aux_sym__val_number_token5] = ACTIONS(1372), - [aux_sym__val_number_token6] = ACTIONS(1372), - [anon_sym_0b] = ACTIONS(1372), - [anon_sym_0o] = ACTIONS(1372), - [anon_sym_0x] = ACTIONS(1372), - [sym_val_date] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [sym__str_single_quotes] = ACTIONS(1372), - [sym__str_back_ticks] = ACTIONS(1372), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1372), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1372), - [anon_sym_CARET] = ACTIONS(1372), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1135), + [anon_sym_alias] = ACTIONS(1135), + [anon_sym_let] = ACTIONS(1135), + [anon_sym_let_DASHenv] = ACTIONS(1135), + [anon_sym_mut] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [sym_cmd_identifier] = ACTIONS(1135), + [anon_sym_def] = ACTIONS(1135), + [anon_sym_export_DASHenv] = ACTIONS(1135), + [anon_sym_extern] = ACTIONS(1135), + [anon_sym_module] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1135), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_DOLLAR] = ACTIONS(1137), + [anon_sym_error] = ACTIONS(1135), + [anon_sym_list] = ACTIONS(1135), + [anon_sym_GT] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1135), + [anon_sym_for] = ACTIONS(1135), + [anon_sym_in] = ACTIONS(1135), + [anon_sym_loop] = ACTIONS(1135), + [anon_sym_make] = ACTIONS(1135), + [anon_sym_while] = ACTIONS(1135), + [anon_sym_do] = ACTIONS(1135), + [anon_sym_if] = ACTIONS(1135), + [anon_sym_else] = ACTIONS(1135), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_RBRACE] = ACTIONS(1137), + [anon_sym_try] = ACTIONS(1135), + [anon_sym_catch] = ACTIONS(1135), + [anon_sym_return] = ACTIONS(1135), + [anon_sym_source] = ACTIONS(1135), + [anon_sym_source_DASHenv] = ACTIONS(1135), + [anon_sym_register] = ACTIONS(1135), + [anon_sym_hide] = ACTIONS(1135), + [anon_sym_hide_DASHenv] = ACTIONS(1135), + [anon_sym_overlay] = ACTIONS(1135), + [anon_sym_new] = ACTIONS(1135), + [anon_sym_as] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1135), + [anon_sym_STAR_STAR] = ACTIONS(1137), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_SLASH] = ACTIONS(1135), + [anon_sym_mod] = ACTIONS(1135), + [anon_sym_SLASH_SLASH] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_bit_DASHshl] = ACTIONS(1135), + [anon_sym_bit_DASHshr] = ACTIONS(1135), + [anon_sym_EQ_EQ] = ACTIONS(1137), + [anon_sym_BANG_EQ] = ACTIONS(1137), + [anon_sym_LT2] = ACTIONS(1135), + [anon_sym_LT_EQ] = ACTIONS(1137), + [anon_sym_GT_EQ] = ACTIONS(1137), + [anon_sym_not_DASHin] = ACTIONS(1135), + [anon_sym_starts_DASHwith] = ACTIONS(1135), + [anon_sym_ends_DASHwith] = ACTIONS(1135), + [anon_sym_EQ_TILDE] = ACTIONS(1137), + [anon_sym_BANG_TILDE] = ACTIONS(1137), + [anon_sym_bit_DASHand] = ACTIONS(1135), + [anon_sym_bit_DASHxor] = ACTIONS(1135), + [anon_sym_bit_DASHor] = ACTIONS(1135), + [anon_sym_and] = ACTIONS(1135), + [anon_sym_xor] = ACTIONS(1135), + [anon_sym_or] = ACTIONS(1135), + [aux_sym__val_number_decimal_token1] = ACTIONS(1135), + [aux_sym__val_number_decimal_token2] = ACTIONS(1137), + [anon_sym_DOT2] = ACTIONS(1137), + [aux_sym__val_number_decimal_token3] = ACTIONS(1137), + [aux_sym__val_number_token1] = ACTIONS(1137), + [aux_sym__val_number_token2] = ACTIONS(1137), + [aux_sym__val_number_token3] = ACTIONS(1137), + [aux_sym__val_number_token4] = ACTIONS(1135), + [aux_sym__val_number_token5] = ACTIONS(1137), + [aux_sym__val_number_token6] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1137), + [sym__str_single_quotes] = ACTIONS(1137), + [sym__str_back_ticks] = ACTIONS(1137), + [aux_sym__record_key_token2] = ACTIONS(1135), + [anon_sym_POUND] = ACTIONS(3), }, [729] = { [sym_comment] = STATE(729), - [ts_builtin_sym_end] = ACTIONS(1170), - [anon_sym_export] = ACTIONS(1168), - [anon_sym_alias] = ACTIONS(1168), - [anon_sym_let] = ACTIONS(1168), - [anon_sym_let_DASHenv] = ACTIONS(1168), - [anon_sym_mut] = ACTIONS(1168), - [anon_sym_const] = ACTIONS(1168), - [anon_sym_SEMI] = ACTIONS(1168), - [sym_cmd_identifier] = ACTIONS(1168), - [anon_sym_LF] = ACTIONS(1170), - [anon_sym_def] = ACTIONS(1168), - [anon_sym_export_DASHenv] = ACTIONS(1168), - [anon_sym_extern] = ACTIONS(1168), - [anon_sym_module] = ACTIONS(1168), - [anon_sym_use] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_DOLLAR] = ACTIONS(1168), - [anon_sym_error] = ACTIONS(1168), - [anon_sym_GT] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1168), - [anon_sym_break] = ACTIONS(1168), - [anon_sym_continue] = ACTIONS(1168), - [anon_sym_for] = ACTIONS(1168), - [anon_sym_in] = ACTIONS(1168), - [anon_sym_loop] = ACTIONS(1168), - [anon_sym_while] = ACTIONS(1168), - [anon_sym_do] = ACTIONS(1168), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_match] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1168), - [anon_sym_DOT_DOT] = ACTIONS(1168), - [anon_sym_try] = ACTIONS(1168), - [anon_sym_return] = ACTIONS(1168), - [anon_sym_source] = ACTIONS(1168), - [anon_sym_source_DASHenv] = ACTIONS(1168), - [anon_sym_register] = ACTIONS(1168), - [anon_sym_hide] = ACTIONS(1168), - [anon_sym_hide_DASHenv] = ACTIONS(1168), - [anon_sym_overlay] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_where] = ACTIONS(1168), - [anon_sym_STAR_STAR] = ACTIONS(1168), - [anon_sym_PLUS_PLUS] = ACTIONS(1168), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_mod] = ACTIONS(1168), - [anon_sym_SLASH_SLASH] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(1168), - [anon_sym_bit_DASHshl] = ACTIONS(1168), - [anon_sym_bit_DASHshr] = ACTIONS(1168), - [anon_sym_EQ_EQ] = ACTIONS(1168), - [anon_sym_BANG_EQ] = ACTIONS(1168), - [anon_sym_LT2] = ACTIONS(1168), - [anon_sym_LT_EQ] = ACTIONS(1168), - [anon_sym_GT_EQ] = ACTIONS(1168), - [anon_sym_not_DASHin] = ACTIONS(1168), - [anon_sym_starts_DASHwith] = ACTIONS(1168), - [anon_sym_ends_DASHwith] = ACTIONS(1168), - [anon_sym_EQ_TILDE] = ACTIONS(1168), - [anon_sym_BANG_TILDE] = ACTIONS(1168), - [anon_sym_bit_DASHand] = ACTIONS(1168), - [anon_sym_bit_DASHxor] = ACTIONS(1168), - [anon_sym_bit_DASHor] = ACTIONS(1168), - [anon_sym_and] = ACTIONS(1168), - [anon_sym_xor] = ACTIONS(1168), - [anon_sym_or] = ACTIONS(1168), - [anon_sym_not] = ACTIONS(1168), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1168), - [anon_sym_DOT_DOT_LT] = ACTIONS(1168), - [anon_sym_null] = ACTIONS(1168), - [anon_sym_true] = ACTIONS(1168), - [anon_sym_false] = ACTIONS(1168), - [aux_sym__val_number_decimal_token1] = ACTIONS(1168), - [aux_sym__val_number_decimal_token2] = ACTIONS(1168), - [anon_sym_DOT2] = ACTIONS(1168), - [aux_sym__val_number_decimal_token3] = ACTIONS(1168), - [aux_sym__val_number_token1] = ACTIONS(1168), - [aux_sym__val_number_token2] = ACTIONS(1168), - [aux_sym__val_number_token3] = ACTIONS(1168), - [aux_sym__val_number_token4] = ACTIONS(1168), - [aux_sym__val_number_token5] = ACTIONS(1168), - [aux_sym__val_number_token6] = ACTIONS(1168), - [anon_sym_0b] = ACTIONS(1168), - [anon_sym_0o] = ACTIONS(1168), - [anon_sym_0x] = ACTIONS(1168), - [sym_val_date] = ACTIONS(1168), - [anon_sym_DQUOTE] = ACTIONS(1168), - [sym__str_single_quotes] = ACTIONS(1168), - [sym__str_back_ticks] = ACTIONS(1168), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1168), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1168), - [anon_sym_CARET] = ACTIONS(1168), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1072), + [anon_sym_alias] = ACTIONS(1072), + [anon_sym_let] = ACTIONS(1072), + [anon_sym_let_DASHenv] = ACTIONS(1072), + [anon_sym_mut] = ACTIONS(1072), + [anon_sym_const] = ACTIONS(1072), + [sym_cmd_identifier] = ACTIONS(1072), + [anon_sym_def] = ACTIONS(1072), + [anon_sym_export_DASHenv] = ACTIONS(1072), + [anon_sym_extern] = ACTIONS(1072), + [anon_sym_module] = ACTIONS(1072), + [anon_sym_use] = ACTIONS(1072), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_DOLLAR] = ACTIONS(1074), + [anon_sym_error] = ACTIONS(1072), + [anon_sym_list] = ACTIONS(1072), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_break] = ACTIONS(1072), + [anon_sym_continue] = ACTIONS(1072), + [anon_sym_for] = ACTIONS(1072), + [anon_sym_in] = ACTIONS(1078), + [anon_sym_loop] = ACTIONS(1072), + [anon_sym_make] = ACTIONS(1072), + [anon_sym_while] = ACTIONS(1072), + [anon_sym_do] = ACTIONS(1072), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_else] = ACTIONS(1072), + [anon_sym_match] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1074), + [anon_sym_try] = ACTIONS(1072), + [anon_sym_catch] = ACTIONS(1072), + [anon_sym_return] = ACTIONS(1072), + [anon_sym_source] = ACTIONS(1072), + [anon_sym_source_DASHenv] = ACTIONS(1072), + [anon_sym_register] = ACTIONS(1072), + [anon_sym_hide] = ACTIONS(1072), + [anon_sym_hide_DASHenv] = ACTIONS(1072), + [anon_sym_overlay] = ACTIONS(1072), + [anon_sym_new] = ACTIONS(1072), + [anon_sym_as] = ACTIONS(1072), + [anon_sym_STAR] = ACTIONS(1076), + [anon_sym_STAR_STAR] = ACTIONS(1169), + [anon_sym_PLUS_PLUS] = ACTIONS(1169), + [anon_sym_SLASH] = ACTIONS(1076), + [anon_sym_mod] = ACTIONS(1076), + [anon_sym_SLASH_SLASH] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_bit_DASHshl] = ACTIONS(1076), + [anon_sym_bit_DASHshr] = ACTIONS(1076), + [anon_sym_EQ_EQ] = ACTIONS(1169), + [anon_sym_BANG_EQ] = ACTIONS(1169), + [anon_sym_LT2] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1169), + [anon_sym_GT_EQ] = ACTIONS(1169), + [anon_sym_not_DASHin] = ACTIONS(1076), + [anon_sym_starts_DASHwith] = ACTIONS(1076), + [anon_sym_ends_DASHwith] = ACTIONS(1076), + [anon_sym_EQ_TILDE] = ACTIONS(1169), + [anon_sym_BANG_TILDE] = ACTIONS(1169), + [anon_sym_bit_DASHand] = ACTIONS(1076), + [anon_sym_bit_DASHxor] = ACTIONS(1076), + [anon_sym_bit_DASHor] = ACTIONS(1076), + [anon_sym_and] = ACTIONS(1076), + [anon_sym_xor] = ACTIONS(1076), + [anon_sym_or] = ACTIONS(1076), + [aux_sym__val_number_decimal_token1] = ACTIONS(1072), + [aux_sym__val_number_decimal_token2] = ACTIONS(1074), + [anon_sym_DOT2] = ACTIONS(1074), + [aux_sym__val_number_decimal_token3] = ACTIONS(1074), + [aux_sym__val_number_token1] = ACTIONS(1074), + [aux_sym__val_number_token2] = ACTIONS(1074), + [aux_sym__val_number_token3] = ACTIONS(1074), + [aux_sym__val_number_token4] = ACTIONS(1072), + [aux_sym__val_number_token5] = ACTIONS(1074), + [aux_sym__val_number_token6] = ACTIONS(1072), + [anon_sym_DQUOTE] = ACTIONS(1074), + [sym__str_single_quotes] = ACTIONS(1074), + [sym__str_back_ticks] = ACTIONS(1074), + [aux_sym__record_key_token2] = ACTIONS(1072), + [anon_sym_POUND] = ACTIONS(3), }, [730] = { [sym_comment] = STATE(730), - [ts_builtin_sym_end] = ACTIONS(961), - [anon_sym_export] = ACTIONS(959), - [anon_sym_alias] = ACTIONS(959), - [anon_sym_let] = ACTIONS(959), - [anon_sym_let_DASHenv] = ACTIONS(959), - [anon_sym_mut] = ACTIONS(959), - [anon_sym_const] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(959), - [sym_cmd_identifier] = ACTIONS(959), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_def] = ACTIONS(959), - [anon_sym_export_DASHenv] = ACTIONS(959), - [anon_sym_extern] = ACTIONS(959), - [anon_sym_module] = ACTIONS(959), - [anon_sym_use] = ACTIONS(959), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_error] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_break] = ACTIONS(959), - [anon_sym_continue] = ACTIONS(959), - [anon_sym_for] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_loop] = ACTIONS(959), - [anon_sym_while] = ACTIONS(959), - [anon_sym_do] = ACTIONS(959), - [anon_sym_if] = ACTIONS(959), - [anon_sym_match] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_try] = ACTIONS(959), - [anon_sym_return] = ACTIONS(959), - [anon_sym_source] = ACTIONS(959), - [anon_sym_source_DASHenv] = ACTIONS(959), - [anon_sym_register] = ACTIONS(959), - [anon_sym_hide] = ACTIONS(959), - [anon_sym_hide_DASHenv] = ACTIONS(959), - [anon_sym_overlay] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_where] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(959), - [anon_sym_PLUS_PLUS] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(959), - [anon_sym_SLASH_SLASH] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(959), - [anon_sym_bit_DASHshr] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(959), - [anon_sym_BANG_EQ] = ACTIONS(959), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(959), - [anon_sym_GT_EQ] = ACTIONS(959), - [anon_sym_not_DASHin] = ACTIONS(959), - [anon_sym_starts_DASHwith] = ACTIONS(959), - [anon_sym_ends_DASHwith] = ACTIONS(959), - [anon_sym_EQ_TILDE] = ACTIONS(959), - [anon_sym_BANG_TILDE] = ACTIONS(959), - [anon_sym_bit_DASHand] = ACTIONS(959), - [anon_sym_bit_DASHxor] = ACTIONS(959), - [anon_sym_bit_DASHor] = ACTIONS(959), - [anon_sym_and] = ACTIONS(959), - [anon_sym_xor] = ACTIONS(959), - [anon_sym_or] = ACTIONS(959), - [anon_sym_not] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_DOT_DOT_LT] = ACTIONS(959), - [anon_sym_null] = ACTIONS(959), - [anon_sym_true] = ACTIONS(959), - [anon_sym_false] = ACTIONS(959), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(959), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(959), - [aux_sym__val_number_token1] = ACTIONS(959), - [aux_sym__val_number_token2] = ACTIONS(959), - [aux_sym__val_number_token3] = ACTIONS(959), - [aux_sym__val_number_token4] = ACTIONS(959), - [aux_sym__val_number_token5] = ACTIONS(959), - [aux_sym__val_number_token6] = ACTIONS(959), - [anon_sym_0b] = ACTIONS(959), - [anon_sym_0o] = ACTIONS(959), - [anon_sym_0x] = ACTIONS(959), - [sym_val_date] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [sym__str_single_quotes] = ACTIONS(959), - [sym__str_back_ticks] = ACTIONS(959), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(959), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(959), - [anon_sym_CARET] = ACTIONS(959), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1287), + [anon_sym_alias] = ACTIONS(1287), + [anon_sym_let] = ACTIONS(1287), + [anon_sym_let_DASHenv] = ACTIONS(1287), + [anon_sym_mut] = ACTIONS(1287), + [anon_sym_const] = ACTIONS(1287), + [sym_cmd_identifier] = ACTIONS(1287), + [anon_sym_def] = ACTIONS(1287), + [anon_sym_export_DASHenv] = ACTIONS(1287), + [anon_sym_extern] = ACTIONS(1287), + [anon_sym_module] = ACTIONS(1287), + [anon_sym_use] = ACTIONS(1287), + [anon_sym_LPAREN] = ACTIONS(1289), + [anon_sym_DOLLAR] = ACTIONS(1289), + [anon_sym_error] = ACTIONS(1287), + [anon_sym_list] = ACTIONS(1287), + [anon_sym_GT] = ACTIONS(1287), + [anon_sym_DASH] = ACTIONS(1287), + [anon_sym_break] = ACTIONS(1287), + [anon_sym_continue] = ACTIONS(1287), + [anon_sym_for] = ACTIONS(1287), + [anon_sym_in] = ACTIONS(1287), + [anon_sym_loop] = ACTIONS(1287), + [anon_sym_make] = ACTIONS(1287), + [anon_sym_while] = ACTIONS(1287), + [anon_sym_do] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1287), + [anon_sym_else] = ACTIONS(1287), + [anon_sym_match] = ACTIONS(1287), + [anon_sym_RBRACE] = ACTIONS(1289), + [anon_sym_try] = ACTIONS(1287), + [anon_sym_catch] = ACTIONS(1287), + [anon_sym_return] = ACTIONS(1287), + [anon_sym_source] = ACTIONS(1287), + [anon_sym_source_DASHenv] = ACTIONS(1287), + [anon_sym_register] = ACTIONS(1287), + [anon_sym_hide] = ACTIONS(1287), + [anon_sym_hide_DASHenv] = ACTIONS(1287), + [anon_sym_overlay] = ACTIONS(1287), + [anon_sym_new] = ACTIONS(1287), + [anon_sym_as] = ACTIONS(1287), + [anon_sym_STAR] = ACTIONS(1287), + [anon_sym_STAR_STAR] = ACTIONS(1289), + [anon_sym_PLUS_PLUS] = ACTIONS(1289), + [anon_sym_SLASH] = ACTIONS(1287), + [anon_sym_mod] = ACTIONS(1287), + [anon_sym_SLASH_SLASH] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1287), + [anon_sym_bit_DASHshl] = ACTIONS(1287), + [anon_sym_bit_DASHshr] = ACTIONS(1287), + [anon_sym_EQ_EQ] = ACTIONS(1289), + [anon_sym_BANG_EQ] = ACTIONS(1289), + [anon_sym_LT2] = ACTIONS(1287), + [anon_sym_LT_EQ] = ACTIONS(1289), + [anon_sym_GT_EQ] = ACTIONS(1289), + [anon_sym_not_DASHin] = ACTIONS(1287), + [anon_sym_starts_DASHwith] = ACTIONS(1287), + [anon_sym_ends_DASHwith] = ACTIONS(1287), + [anon_sym_EQ_TILDE] = ACTIONS(1289), + [anon_sym_BANG_TILDE] = ACTIONS(1289), + [anon_sym_bit_DASHand] = ACTIONS(1287), + [anon_sym_bit_DASHxor] = ACTIONS(1287), + [anon_sym_bit_DASHor] = ACTIONS(1287), + [anon_sym_and] = ACTIONS(1287), + [anon_sym_xor] = ACTIONS(1287), + [anon_sym_or] = ACTIONS(1287), + [aux_sym__val_number_decimal_token1] = ACTIONS(1287), + [aux_sym__val_number_decimal_token2] = ACTIONS(1289), + [anon_sym_DOT2] = ACTIONS(1289), + [aux_sym__val_number_decimal_token3] = ACTIONS(1289), + [aux_sym__val_number_token1] = ACTIONS(1289), + [aux_sym__val_number_token2] = ACTIONS(1289), + [aux_sym__val_number_token3] = ACTIONS(1289), + [aux_sym__val_number_token4] = ACTIONS(1287), + [aux_sym__val_number_token5] = ACTIONS(1289), + [aux_sym__val_number_token6] = ACTIONS(1287), + [anon_sym_DQUOTE] = ACTIONS(1289), + [sym__str_single_quotes] = ACTIONS(1289), + [sym__str_back_ticks] = ACTIONS(1289), + [aux_sym__record_key_token2] = ACTIONS(1287), + [anon_sym_POUND] = ACTIONS(3), }, [731] = { [sym_comment] = STATE(731), - [ts_builtin_sym_end] = ACTIONS(1160), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_alias] = ACTIONS(1158), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_let_DASHenv] = ACTIONS(1158), - [anon_sym_mut] = ACTIONS(1158), - [anon_sym_const] = ACTIONS(1158), - [anon_sym_SEMI] = ACTIONS(1158), - [sym_cmd_identifier] = ACTIONS(1158), - [anon_sym_LF] = ACTIONS(1160), - [anon_sym_def] = ACTIONS(1158), - [anon_sym_export_DASHenv] = ACTIONS(1158), - [anon_sym_extern] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_use] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_LPAREN] = ACTIONS(1158), - [anon_sym_DOLLAR] = ACTIONS(1158), - [anon_sym_error] = ACTIONS(1158), - [anon_sym_GT] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_break] = ACTIONS(1158), - [anon_sym_continue] = ACTIONS(1158), - [anon_sym_for] = ACTIONS(1158), - [anon_sym_in] = ACTIONS(1158), - [anon_sym_loop] = ACTIONS(1158), - [anon_sym_while] = ACTIONS(1158), - [anon_sym_do] = ACTIONS(1158), - [anon_sym_if] = ACTIONS(1158), - [anon_sym_match] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1158), - [anon_sym_DOT_DOT] = ACTIONS(1158), - [anon_sym_try] = ACTIONS(1158), - [anon_sym_return] = ACTIONS(1158), - [anon_sym_source] = ACTIONS(1158), - [anon_sym_source_DASHenv] = ACTIONS(1158), - [anon_sym_register] = ACTIONS(1158), - [anon_sym_hide] = ACTIONS(1158), - [anon_sym_hide_DASHenv] = ACTIONS(1158), - [anon_sym_overlay] = ACTIONS(1158), - [anon_sym_STAR] = ACTIONS(1158), - [anon_sym_where] = ACTIONS(1158), - [anon_sym_STAR_STAR] = ACTIONS(1158), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_SLASH] = ACTIONS(1158), - [anon_sym_mod] = ACTIONS(1158), - [anon_sym_SLASH_SLASH] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1158), - [anon_sym_bit_DASHshl] = ACTIONS(1158), - [anon_sym_bit_DASHshr] = ACTIONS(1158), - [anon_sym_EQ_EQ] = ACTIONS(1158), - [anon_sym_BANG_EQ] = ACTIONS(1158), - [anon_sym_LT2] = ACTIONS(1158), - [anon_sym_LT_EQ] = ACTIONS(1158), - [anon_sym_GT_EQ] = ACTIONS(1158), - [anon_sym_not_DASHin] = ACTIONS(1158), - [anon_sym_starts_DASHwith] = ACTIONS(1158), - [anon_sym_ends_DASHwith] = ACTIONS(1158), - [anon_sym_EQ_TILDE] = ACTIONS(1158), - [anon_sym_BANG_TILDE] = ACTIONS(1158), - [anon_sym_bit_DASHand] = ACTIONS(1158), - [anon_sym_bit_DASHxor] = ACTIONS(1158), - [anon_sym_bit_DASHor] = ACTIONS(1158), - [anon_sym_and] = ACTIONS(1158), - [anon_sym_xor] = ACTIONS(1158), - [anon_sym_or] = ACTIONS(1158), - [anon_sym_not] = ACTIONS(1158), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1158), - [anon_sym_DOT_DOT_LT] = ACTIONS(1158), - [anon_sym_null] = ACTIONS(1158), - [anon_sym_true] = ACTIONS(1158), - [anon_sym_false] = ACTIONS(1158), - [aux_sym__val_number_decimal_token1] = ACTIONS(1158), - [aux_sym__val_number_decimal_token2] = ACTIONS(1158), - [anon_sym_DOT2] = ACTIONS(1158), - [aux_sym__val_number_decimal_token3] = ACTIONS(1158), - [aux_sym__val_number_token1] = ACTIONS(1158), - [aux_sym__val_number_token2] = ACTIONS(1158), - [aux_sym__val_number_token3] = ACTIONS(1158), - [aux_sym__val_number_token4] = ACTIONS(1158), - [aux_sym__val_number_token5] = ACTIONS(1158), - [aux_sym__val_number_token6] = ACTIONS(1158), - [anon_sym_0b] = ACTIONS(1158), - [anon_sym_0o] = ACTIONS(1158), - [anon_sym_0x] = ACTIONS(1158), - [sym_val_date] = ACTIONS(1158), - [anon_sym_DQUOTE] = ACTIONS(1158), - [sym__str_single_quotes] = ACTIONS(1158), - [sym__str_back_ticks] = ACTIONS(1158), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1158), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1158), - [anon_sym_CARET] = ACTIONS(1158), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1221), + [anon_sym_alias] = ACTIONS(1221), + [anon_sym_let] = ACTIONS(1221), + [anon_sym_let_DASHenv] = ACTIONS(1221), + [anon_sym_mut] = ACTIONS(1221), + [anon_sym_const] = ACTIONS(1221), + [sym_cmd_identifier] = ACTIONS(1221), + [anon_sym_def] = ACTIONS(1221), + [anon_sym_export_DASHenv] = ACTIONS(1221), + [anon_sym_extern] = ACTIONS(1221), + [anon_sym_module] = ACTIONS(1221), + [anon_sym_use] = ACTIONS(1221), + [anon_sym_LPAREN] = ACTIONS(1223), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_error] = ACTIONS(1221), + [anon_sym_list] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_break] = ACTIONS(1221), + [anon_sym_continue] = ACTIONS(1221), + [anon_sym_for] = ACTIONS(1221), + [anon_sym_in] = ACTIONS(1221), + [anon_sym_loop] = ACTIONS(1221), + [anon_sym_make] = ACTIONS(1221), + [anon_sym_while] = ACTIONS(1221), + [anon_sym_do] = ACTIONS(1221), + [anon_sym_if] = ACTIONS(1221), + [anon_sym_else] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1221), + [anon_sym_RBRACE] = ACTIONS(1223), + [anon_sym_try] = ACTIONS(1221), + [anon_sym_catch] = ACTIONS(1221), + [anon_sym_return] = ACTIONS(1221), + [anon_sym_source] = ACTIONS(1221), + [anon_sym_source_DASHenv] = ACTIONS(1221), + [anon_sym_register] = ACTIONS(1221), + [anon_sym_hide] = ACTIONS(1221), + [anon_sym_hide_DASHenv] = ACTIONS(1221), + [anon_sym_overlay] = ACTIONS(1221), + [anon_sym_new] = ACTIONS(1221), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_STAR_STAR] = ACTIONS(1223), + [anon_sym_PLUS_PLUS] = ACTIONS(1223), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_mod] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(1223), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_bit_DASHshl] = ACTIONS(1221), + [anon_sym_bit_DASHshr] = ACTIONS(1221), + [anon_sym_EQ_EQ] = ACTIONS(1223), + [anon_sym_BANG_EQ] = ACTIONS(1223), + [anon_sym_LT2] = ACTIONS(1221), + [anon_sym_LT_EQ] = ACTIONS(1223), + [anon_sym_GT_EQ] = ACTIONS(1223), + [anon_sym_not_DASHin] = ACTIONS(1221), + [anon_sym_starts_DASHwith] = ACTIONS(1221), + [anon_sym_ends_DASHwith] = ACTIONS(1221), + [anon_sym_EQ_TILDE] = ACTIONS(1223), + [anon_sym_BANG_TILDE] = ACTIONS(1223), + [anon_sym_bit_DASHand] = ACTIONS(1221), + [anon_sym_bit_DASHxor] = ACTIONS(1221), + [anon_sym_bit_DASHor] = ACTIONS(1221), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_xor] = ACTIONS(1221), + [anon_sym_or] = ACTIONS(1221), + [aux_sym__val_number_decimal_token1] = ACTIONS(1221), + [aux_sym__val_number_decimal_token2] = ACTIONS(1223), + [anon_sym_DOT2] = ACTIONS(1223), + [aux_sym__val_number_decimal_token3] = ACTIONS(1223), + [aux_sym__val_number_token1] = ACTIONS(1223), + [aux_sym__val_number_token2] = ACTIONS(1223), + [aux_sym__val_number_token3] = ACTIONS(1223), + [aux_sym__val_number_token4] = ACTIONS(1221), + [aux_sym__val_number_token5] = ACTIONS(1223), + [aux_sym__val_number_token6] = ACTIONS(1221), + [anon_sym_DQUOTE] = ACTIONS(1223), + [sym__str_single_quotes] = ACTIONS(1223), + [sym__str_back_ticks] = ACTIONS(1223), + [aux_sym__record_key_token2] = ACTIONS(1221), + [anon_sym_POUND] = ACTIONS(3), }, [732] = { [sym_comment] = STATE(732), - [ts_builtin_sym_end] = ACTIONS(1412), - [anon_sym_export] = ACTIONS(1410), - [anon_sym_alias] = ACTIONS(1410), - [anon_sym_let] = ACTIONS(1410), - [anon_sym_let_DASHenv] = ACTIONS(1410), - [anon_sym_mut] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_SEMI] = ACTIONS(1410), - [sym_cmd_identifier] = ACTIONS(1410), - [anon_sym_LF] = ACTIONS(1412), - [anon_sym_def] = ACTIONS(1410), - [anon_sym_export_DASHenv] = ACTIONS(1410), - [anon_sym_extern] = ACTIONS(1410), - [anon_sym_module] = ACTIONS(1410), - [anon_sym_use] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1410), - [anon_sym_LPAREN] = ACTIONS(1410), - [anon_sym_DOLLAR] = ACTIONS(1410), - [anon_sym_error] = ACTIONS(1410), - [anon_sym_GT] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_in] = ACTIONS(1410), - [anon_sym_loop] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1410), - [anon_sym_DOT_DOT] = ACTIONS(1410), - [anon_sym_try] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_source] = ACTIONS(1410), - [anon_sym_source_DASHenv] = ACTIONS(1410), - [anon_sym_register] = ACTIONS(1410), - [anon_sym_hide] = ACTIONS(1410), - [anon_sym_hide_DASHenv] = ACTIONS(1410), - [anon_sym_overlay] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1410), - [anon_sym_where] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1410), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_SLASH] = ACTIONS(1410), - [anon_sym_mod] = ACTIONS(1410), - [anon_sym_SLASH_SLASH] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_bit_DASHshl] = ACTIONS(1410), - [anon_sym_bit_DASHshr] = ACTIONS(1410), - [anon_sym_EQ_EQ] = ACTIONS(1410), - [anon_sym_BANG_EQ] = ACTIONS(1410), - [anon_sym_LT2] = ACTIONS(1410), - [anon_sym_LT_EQ] = ACTIONS(1410), - [anon_sym_GT_EQ] = ACTIONS(1410), - [anon_sym_not_DASHin] = ACTIONS(1410), - [anon_sym_starts_DASHwith] = ACTIONS(1410), - [anon_sym_ends_DASHwith] = ACTIONS(1410), - [anon_sym_EQ_TILDE] = ACTIONS(1410), - [anon_sym_BANG_TILDE] = ACTIONS(1410), - [anon_sym_bit_DASHand] = ACTIONS(1410), - [anon_sym_bit_DASHxor] = ACTIONS(1410), - [anon_sym_bit_DASHor] = ACTIONS(1410), - [anon_sym_and] = ACTIONS(1410), - [anon_sym_xor] = ACTIONS(1410), - [anon_sym_or] = ACTIONS(1410), - [anon_sym_not] = ACTIONS(1410), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1410), - [anon_sym_DOT_DOT_LT] = ACTIONS(1410), - [anon_sym_null] = ACTIONS(1410), - [anon_sym_true] = ACTIONS(1410), - [anon_sym_false] = ACTIONS(1410), - [aux_sym__val_number_decimal_token1] = ACTIONS(1410), - [aux_sym__val_number_decimal_token2] = ACTIONS(1410), - [anon_sym_DOT2] = ACTIONS(1410), - [aux_sym__val_number_decimal_token3] = ACTIONS(1410), - [aux_sym__val_number_token1] = ACTIONS(1410), - [aux_sym__val_number_token2] = ACTIONS(1410), - [aux_sym__val_number_token3] = ACTIONS(1410), - [aux_sym__val_number_token4] = ACTIONS(1410), - [aux_sym__val_number_token5] = ACTIONS(1410), - [aux_sym__val_number_token6] = ACTIONS(1410), - [anon_sym_0b] = ACTIONS(1410), - [anon_sym_0o] = ACTIONS(1410), - [anon_sym_0x] = ACTIONS(1410), - [sym_val_date] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1410), - [sym__str_single_quotes] = ACTIONS(1410), - [sym__str_back_ticks] = ACTIONS(1410), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1410), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1410), - [anon_sym_CARET] = ACTIONS(1410), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1076), + [anon_sym_alias] = ACTIONS(1076), + [anon_sym_let] = ACTIONS(1076), + [anon_sym_let_DASHenv] = ACTIONS(1076), + [anon_sym_mut] = ACTIONS(1076), + [anon_sym_const] = ACTIONS(1076), + [sym_cmd_identifier] = ACTIONS(1076), + [anon_sym_def] = ACTIONS(1076), + [anon_sym_export_DASHenv] = ACTIONS(1076), + [anon_sym_extern] = ACTIONS(1076), + [anon_sym_module] = ACTIONS(1076), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(1169), + [anon_sym_DOLLAR] = ACTIONS(1169), + [anon_sym_error] = ACTIONS(1076), + [anon_sym_list] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_DASH] = ACTIONS(1076), + [anon_sym_break] = ACTIONS(1076), + [anon_sym_continue] = ACTIONS(1076), + [anon_sym_for] = ACTIONS(1076), + [anon_sym_in] = ACTIONS(1076), + [anon_sym_loop] = ACTIONS(1076), + [anon_sym_make] = ACTIONS(1076), + [anon_sym_while] = ACTIONS(1076), + [anon_sym_do] = ACTIONS(1076), + [anon_sym_if] = ACTIONS(1076), + [anon_sym_else] = ACTIONS(1076), + [anon_sym_match] = ACTIONS(1076), + [anon_sym_RBRACE] = ACTIONS(1169), + [anon_sym_try] = ACTIONS(1076), + [anon_sym_catch] = ACTIONS(1076), + [anon_sym_return] = ACTIONS(1076), + [anon_sym_source] = ACTIONS(1076), + [anon_sym_source_DASHenv] = ACTIONS(1076), + [anon_sym_register] = ACTIONS(1076), + [anon_sym_hide] = ACTIONS(1076), + [anon_sym_hide_DASHenv] = ACTIONS(1076), + [anon_sym_overlay] = ACTIONS(1076), + [anon_sym_new] = ACTIONS(1076), + [anon_sym_as] = ACTIONS(1076), + [anon_sym_STAR] = ACTIONS(1076), + [anon_sym_STAR_STAR] = ACTIONS(1169), + [anon_sym_PLUS_PLUS] = ACTIONS(1169), + [anon_sym_SLASH] = ACTIONS(1076), + [anon_sym_mod] = ACTIONS(1076), + [anon_sym_SLASH_SLASH] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1076), + [anon_sym_bit_DASHshl] = ACTIONS(1076), + [anon_sym_bit_DASHshr] = ACTIONS(1076), + [anon_sym_EQ_EQ] = ACTIONS(1169), + [anon_sym_BANG_EQ] = ACTIONS(1169), + [anon_sym_LT2] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1169), + [anon_sym_GT_EQ] = ACTIONS(1169), + [anon_sym_not_DASHin] = ACTIONS(1076), + [anon_sym_starts_DASHwith] = ACTIONS(1076), + [anon_sym_ends_DASHwith] = ACTIONS(1076), + [anon_sym_EQ_TILDE] = ACTIONS(1169), + [anon_sym_BANG_TILDE] = ACTIONS(1169), + [anon_sym_bit_DASHand] = ACTIONS(1076), + [anon_sym_bit_DASHxor] = ACTIONS(1076), + [anon_sym_bit_DASHor] = ACTIONS(1076), + [anon_sym_and] = ACTIONS(1076), + [anon_sym_xor] = ACTIONS(1076), + [anon_sym_or] = ACTIONS(1076), + [aux_sym__val_number_decimal_token1] = ACTIONS(1076), + [aux_sym__val_number_decimal_token2] = ACTIONS(1169), + [anon_sym_DOT2] = ACTIONS(1169), + [aux_sym__val_number_decimal_token3] = ACTIONS(1169), + [aux_sym__val_number_token1] = ACTIONS(1169), + [aux_sym__val_number_token2] = ACTIONS(1169), + [aux_sym__val_number_token3] = ACTIONS(1169), + [aux_sym__val_number_token4] = ACTIONS(1076), + [aux_sym__val_number_token5] = ACTIONS(1169), + [aux_sym__val_number_token6] = ACTIONS(1076), + [anon_sym_DQUOTE] = ACTIONS(1169), + [sym__str_single_quotes] = ACTIONS(1169), + [sym__str_back_ticks] = ACTIONS(1169), + [aux_sym__record_key_token2] = ACTIONS(1076), + [anon_sym_POUND] = ACTIONS(3), }, [733] = { [sym_comment] = STATE(733), - [ts_builtin_sym_end] = ACTIONS(1288), - [anon_sym_export] = ACTIONS(1286), - [anon_sym_alias] = ACTIONS(1286), - [anon_sym_let] = ACTIONS(1286), - [anon_sym_let_DASHenv] = ACTIONS(1286), - [anon_sym_mut] = ACTIONS(1286), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_SEMI] = ACTIONS(1286), - [sym_cmd_identifier] = ACTIONS(1286), - [anon_sym_LF] = ACTIONS(1288), - [anon_sym_def] = ACTIONS(1286), - [anon_sym_export_DASHenv] = ACTIONS(1286), - [anon_sym_extern] = ACTIONS(1286), - [anon_sym_module] = ACTIONS(1286), - [anon_sym_use] = ACTIONS(1286), - [anon_sym_LBRACK] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(1286), - [anon_sym_DOLLAR] = ACTIONS(1286), - [anon_sym_error] = ACTIONS(1286), - [anon_sym_GT] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1286), - [anon_sym_break] = ACTIONS(1286), - [anon_sym_continue] = ACTIONS(1286), - [anon_sym_for] = ACTIONS(1286), - [anon_sym_in] = ACTIONS(1286), - [anon_sym_loop] = ACTIONS(1286), - [anon_sym_while] = ACTIONS(1286), - [anon_sym_do] = ACTIONS(1286), - [anon_sym_if] = ACTIONS(1286), - [anon_sym_match] = ACTIONS(1286), - [anon_sym_LBRACE] = ACTIONS(1286), - [anon_sym_DOT_DOT] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(1286), - [anon_sym_return] = ACTIONS(1286), - [anon_sym_source] = ACTIONS(1286), - [anon_sym_source_DASHenv] = ACTIONS(1286), - [anon_sym_register] = ACTIONS(1286), - [anon_sym_hide] = ACTIONS(1286), - [anon_sym_hide_DASHenv] = ACTIONS(1286), - [anon_sym_overlay] = ACTIONS(1286), - [anon_sym_STAR] = ACTIONS(1286), - [anon_sym_where] = ACTIONS(1286), - [anon_sym_STAR_STAR] = ACTIONS(1286), - [anon_sym_PLUS_PLUS] = ACTIONS(1286), - [anon_sym_SLASH] = ACTIONS(1286), - [anon_sym_mod] = ACTIONS(1286), - [anon_sym_SLASH_SLASH] = ACTIONS(1286), - [anon_sym_PLUS] = ACTIONS(1286), - [anon_sym_bit_DASHshl] = ACTIONS(1286), - [anon_sym_bit_DASHshr] = ACTIONS(1286), - [anon_sym_EQ_EQ] = ACTIONS(1286), - [anon_sym_BANG_EQ] = ACTIONS(1286), - [anon_sym_LT2] = ACTIONS(1286), - [anon_sym_LT_EQ] = ACTIONS(1286), - [anon_sym_GT_EQ] = ACTIONS(1286), - [anon_sym_not_DASHin] = ACTIONS(1286), - [anon_sym_starts_DASHwith] = ACTIONS(1286), - [anon_sym_ends_DASHwith] = ACTIONS(1286), - [anon_sym_EQ_TILDE] = ACTIONS(1286), - [anon_sym_BANG_TILDE] = ACTIONS(1286), - [anon_sym_bit_DASHand] = ACTIONS(1286), - [anon_sym_bit_DASHxor] = ACTIONS(1286), - [anon_sym_bit_DASHor] = ACTIONS(1286), - [anon_sym_and] = ACTIONS(1286), - [anon_sym_xor] = ACTIONS(1286), - [anon_sym_or] = ACTIONS(1286), - [anon_sym_not] = ACTIONS(1286), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1286), - [anon_sym_DOT_DOT_LT] = ACTIONS(1286), - [anon_sym_null] = ACTIONS(1286), - [anon_sym_true] = ACTIONS(1286), - [anon_sym_false] = ACTIONS(1286), - [aux_sym__val_number_decimal_token1] = ACTIONS(1286), - [aux_sym__val_number_decimal_token2] = ACTIONS(1286), - [anon_sym_DOT2] = ACTIONS(1286), - [aux_sym__val_number_decimal_token3] = ACTIONS(1286), - [aux_sym__val_number_token1] = ACTIONS(1286), - [aux_sym__val_number_token2] = ACTIONS(1286), - [aux_sym__val_number_token3] = ACTIONS(1286), - [aux_sym__val_number_token4] = ACTIONS(1286), - [aux_sym__val_number_token5] = ACTIONS(1286), - [aux_sym__val_number_token6] = ACTIONS(1286), - [anon_sym_0b] = ACTIONS(1286), - [anon_sym_0o] = ACTIONS(1286), - [anon_sym_0x] = ACTIONS(1286), - [sym_val_date] = ACTIONS(1286), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym__str_single_quotes] = ACTIONS(1286), - [sym__str_back_ticks] = ACTIONS(1286), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1286), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1286), - [anon_sym_CARET] = ACTIONS(1286), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_DOLLAR] = ACTIONS(1173), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_list] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_make] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_else] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1173), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_catch] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1173), + [anon_sym_BANG_EQ] = ACTIONS(1173), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1173), + [anon_sym_GT_EQ] = ACTIONS(1173), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1173), + [anon_sym_BANG_TILDE] = ACTIONS(1173), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1173), + [anon_sym_DOT2] = ACTIONS(1173), + [aux_sym__val_number_decimal_token3] = ACTIONS(1173), + [aux_sym__val_number_token1] = ACTIONS(1173), + [aux_sym__val_number_token2] = ACTIONS(1173), + [aux_sym__val_number_token3] = ACTIONS(1173), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1173), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym__str_single_quotes] = ACTIONS(1173), + [sym__str_back_ticks] = ACTIONS(1173), + [aux_sym__record_key_token2] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(3), }, [734] = { [sym_comment] = STATE(734), - [ts_builtin_sym_end] = ACTIONS(1192), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_alias] = ACTIONS(1190), - [anon_sym_let] = ACTIONS(1190), - [anon_sym_let_DASHenv] = ACTIONS(1190), - [anon_sym_mut] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1190), - [anon_sym_SEMI] = ACTIONS(1190), - [sym_cmd_identifier] = ACTIONS(1190), - [anon_sym_LF] = ACTIONS(1192), - [anon_sym_def] = ACTIONS(1190), - [anon_sym_export_DASHenv] = ACTIONS(1190), - [anon_sym_extern] = ACTIONS(1190), - [anon_sym_module] = ACTIONS(1190), - [anon_sym_use] = ACTIONS(1190), - [anon_sym_LBRACK] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(1190), - [anon_sym_DOLLAR] = ACTIONS(1190), - [anon_sym_error] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1190), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_in] = ACTIONS(1190), - [anon_sym_loop] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [anon_sym_do] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_match] = ACTIONS(1190), - [anon_sym_LBRACE] = ACTIONS(1190), - [anon_sym_DOT_DOT] = ACTIONS(1190), - [anon_sym_try] = ACTIONS(1190), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_source] = ACTIONS(1190), - [anon_sym_source_DASHenv] = ACTIONS(1190), - [anon_sym_register] = ACTIONS(1190), - [anon_sym_hide] = ACTIONS(1190), - [anon_sym_hide_DASHenv] = ACTIONS(1190), - [anon_sym_overlay] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1190), - [anon_sym_where] = ACTIONS(1190), - [anon_sym_STAR_STAR] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1190), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_mod] = ACTIONS(1190), - [anon_sym_SLASH_SLASH] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_bit_DASHshl] = ACTIONS(1190), - [anon_sym_bit_DASHshr] = ACTIONS(1190), - [anon_sym_EQ_EQ] = ACTIONS(1190), - [anon_sym_BANG_EQ] = ACTIONS(1190), - [anon_sym_LT2] = ACTIONS(1190), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_not_DASHin] = ACTIONS(1190), - [anon_sym_starts_DASHwith] = ACTIONS(1190), - [anon_sym_ends_DASHwith] = ACTIONS(1190), - [anon_sym_EQ_TILDE] = ACTIONS(1190), - [anon_sym_BANG_TILDE] = ACTIONS(1190), - [anon_sym_bit_DASHand] = ACTIONS(1190), - [anon_sym_bit_DASHxor] = ACTIONS(1190), - [anon_sym_bit_DASHor] = ACTIONS(1190), - [anon_sym_and] = ACTIONS(1190), - [anon_sym_xor] = ACTIONS(1190), - [anon_sym_or] = ACTIONS(1190), - [anon_sym_not] = ACTIONS(1190), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1190), - [anon_sym_DOT_DOT_LT] = ACTIONS(1190), - [anon_sym_null] = ACTIONS(1190), - [anon_sym_true] = ACTIONS(1190), - [anon_sym_false] = ACTIONS(1190), - [aux_sym__val_number_decimal_token1] = ACTIONS(1190), - [aux_sym__val_number_decimal_token2] = ACTIONS(1190), - [anon_sym_DOT2] = ACTIONS(1190), - [aux_sym__val_number_decimal_token3] = ACTIONS(1190), - [aux_sym__val_number_token1] = ACTIONS(1190), - [aux_sym__val_number_token2] = ACTIONS(1190), - [aux_sym__val_number_token3] = ACTIONS(1190), - [aux_sym__val_number_token4] = ACTIONS(1190), - [aux_sym__val_number_token5] = ACTIONS(1190), - [aux_sym__val_number_token6] = ACTIONS(1190), - [anon_sym_0b] = ACTIONS(1190), - [anon_sym_0o] = ACTIONS(1190), - [anon_sym_0x] = ACTIONS(1190), - [sym_val_date] = ACTIONS(1190), - [anon_sym_DQUOTE] = ACTIONS(1190), - [sym__str_single_quotes] = ACTIONS(1190), - [sym__str_back_ticks] = ACTIONS(1190), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1190), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1190), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_DOLLAR] = ACTIONS(1173), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_list] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_make] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_else] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1173), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_catch] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1173), + [anon_sym_BANG_EQ] = ACTIONS(1173), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1173), + [anon_sym_GT_EQ] = ACTIONS(1173), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1173), + [anon_sym_BANG_TILDE] = ACTIONS(1173), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1173), + [anon_sym_DOT2] = ACTIONS(1173), + [aux_sym__val_number_decimal_token3] = ACTIONS(1173), + [aux_sym__val_number_token1] = ACTIONS(1173), + [aux_sym__val_number_token2] = ACTIONS(1173), + [aux_sym__val_number_token3] = ACTIONS(1173), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1173), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym__str_single_quotes] = ACTIONS(1173), + [sym__str_back_ticks] = ACTIONS(1173), + [aux_sym__record_key_token2] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(3), }, [735] = { [sym_comment] = STATE(735), - [ts_builtin_sym_end] = ACTIONS(1300), - [anon_sym_export] = ACTIONS(1298), - [anon_sym_alias] = ACTIONS(1298), - [anon_sym_let] = ACTIONS(1298), - [anon_sym_let_DASHenv] = ACTIONS(1298), - [anon_sym_mut] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1298), - [sym_cmd_identifier] = ACTIONS(1298), - [anon_sym_LF] = ACTIONS(1300), - [anon_sym_def] = ACTIONS(1298), - [anon_sym_export_DASHenv] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_module] = ACTIONS(1298), - [anon_sym_use] = ACTIONS(1298), - [anon_sym_LBRACK] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1298), - [anon_sym_DOLLAR] = ACTIONS(1298), - [anon_sym_error] = ACTIONS(1298), - [anon_sym_GT] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_in] = ACTIONS(1298), - [anon_sym_loop] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_match] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_DOT_DOT] = ACTIONS(1298), - [anon_sym_try] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_source] = ACTIONS(1298), - [anon_sym_source_DASHenv] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_hide] = ACTIONS(1298), - [anon_sym_hide_DASHenv] = ACTIONS(1298), - [anon_sym_overlay] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_where] = ACTIONS(1298), - [anon_sym_STAR_STAR] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1298), - [anon_sym_SLASH] = ACTIONS(1298), - [anon_sym_mod] = ACTIONS(1298), - [anon_sym_SLASH_SLASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_bit_DASHshl] = ACTIONS(1298), - [anon_sym_bit_DASHshr] = ACTIONS(1298), - [anon_sym_EQ_EQ] = ACTIONS(1298), - [anon_sym_BANG_EQ] = ACTIONS(1298), - [anon_sym_LT2] = ACTIONS(1298), - [anon_sym_LT_EQ] = ACTIONS(1298), - [anon_sym_GT_EQ] = ACTIONS(1298), - [anon_sym_not_DASHin] = ACTIONS(1298), - [anon_sym_starts_DASHwith] = ACTIONS(1298), - [anon_sym_ends_DASHwith] = ACTIONS(1298), - [anon_sym_EQ_TILDE] = ACTIONS(1298), - [anon_sym_BANG_TILDE] = ACTIONS(1298), - [anon_sym_bit_DASHand] = ACTIONS(1298), - [anon_sym_bit_DASHxor] = ACTIONS(1298), - [anon_sym_bit_DASHor] = ACTIONS(1298), - [anon_sym_and] = ACTIONS(1298), - [anon_sym_xor] = ACTIONS(1298), - [anon_sym_or] = ACTIONS(1298), - [anon_sym_not] = ACTIONS(1298), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1298), - [anon_sym_DOT_DOT_LT] = ACTIONS(1298), - [anon_sym_null] = ACTIONS(1298), - [anon_sym_true] = ACTIONS(1298), - [anon_sym_false] = ACTIONS(1298), - [aux_sym__val_number_decimal_token1] = ACTIONS(1298), - [aux_sym__val_number_decimal_token2] = ACTIONS(1298), - [anon_sym_DOT2] = ACTIONS(1298), - [aux_sym__val_number_decimal_token3] = 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(1298), - [aux_sym__val_number_token5] = ACTIONS(1298), - [aux_sym__val_number_token6] = ACTIONS(1298), - [anon_sym_0b] = ACTIONS(1298), - [anon_sym_0o] = ACTIONS(1298), - [anon_sym_0x] = ACTIONS(1298), - [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), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_DOLLAR] = ACTIONS(1173), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_list] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_make] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_else] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1173), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_catch] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1173), + [anon_sym_BANG_EQ] = ACTIONS(1173), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1173), + [anon_sym_GT_EQ] = ACTIONS(1173), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1173), + [anon_sym_BANG_TILDE] = ACTIONS(1173), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1173), + [anon_sym_DOT2] = ACTIONS(1173), + [aux_sym__val_number_decimal_token3] = ACTIONS(1173), + [aux_sym__val_number_token1] = ACTIONS(1173), + [aux_sym__val_number_token2] = ACTIONS(1173), + [aux_sym__val_number_token3] = ACTIONS(1173), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1173), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym__str_single_quotes] = ACTIONS(1173), + [sym__str_back_ticks] = ACTIONS(1173), + [aux_sym__record_key_token2] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(3), }, [736] = { [sym_comment] = STATE(736), - [ts_builtin_sym_end] = ACTIONS(1304), - [anon_sym_export] = ACTIONS(1302), - [anon_sym_alias] = ACTIONS(1302), - [anon_sym_let] = ACTIONS(1302), - [anon_sym_let_DASHenv] = ACTIONS(1302), - [anon_sym_mut] = ACTIONS(1302), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1302), - [sym_cmd_identifier] = ACTIONS(1302), - [anon_sym_LF] = ACTIONS(1304), - [anon_sym_def] = ACTIONS(1302), - [anon_sym_export_DASHenv] = ACTIONS(1302), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_module] = ACTIONS(1302), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_LBRACK] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_DOLLAR] = ACTIONS(1302), - [anon_sym_error] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_break] = ACTIONS(1302), - [anon_sym_continue] = ACTIONS(1302), - [anon_sym_for] = ACTIONS(1302), - [anon_sym_in] = ACTIONS(1302), - [anon_sym_loop] = ACTIONS(1302), - [anon_sym_while] = ACTIONS(1302), - [anon_sym_do] = ACTIONS(1302), - [anon_sym_if] = ACTIONS(1302), - [anon_sym_match] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_DOT_DOT] = ACTIONS(1302), - [anon_sym_try] = ACTIONS(1302), - [anon_sym_return] = ACTIONS(1302), - [anon_sym_source] = ACTIONS(1302), - [anon_sym_source_DASHenv] = ACTIONS(1302), - [anon_sym_register] = ACTIONS(1302), - [anon_sym_hide] = ACTIONS(1302), - [anon_sym_hide_DASHenv] = ACTIONS(1302), - [anon_sym_overlay] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_where] = ACTIONS(1302), - [anon_sym_STAR_STAR] = ACTIONS(1302), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_SLASH] = ACTIONS(1302), - [anon_sym_mod] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_bit_DASHshl] = ACTIONS(1302), - [anon_sym_bit_DASHshr] = ACTIONS(1302), - [anon_sym_EQ_EQ] = ACTIONS(1302), - [anon_sym_BANG_EQ] = ACTIONS(1302), - [anon_sym_LT2] = ACTIONS(1302), - [anon_sym_LT_EQ] = ACTIONS(1302), - [anon_sym_GT_EQ] = ACTIONS(1302), - [anon_sym_not_DASHin] = ACTIONS(1302), - [anon_sym_starts_DASHwith] = ACTIONS(1302), - [anon_sym_ends_DASHwith] = ACTIONS(1302), - [anon_sym_EQ_TILDE] = ACTIONS(1302), - [anon_sym_BANG_TILDE] = ACTIONS(1302), - [anon_sym_bit_DASHand] = ACTIONS(1302), - [anon_sym_bit_DASHxor] = ACTIONS(1302), - [anon_sym_bit_DASHor] = ACTIONS(1302), - [anon_sym_and] = ACTIONS(1302), - [anon_sym_xor] = ACTIONS(1302), - [anon_sym_or] = ACTIONS(1302), - [anon_sym_not] = ACTIONS(1302), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1302), - [anon_sym_DOT_DOT_LT] = ACTIONS(1302), - [anon_sym_null] = ACTIONS(1302), - [anon_sym_true] = ACTIONS(1302), - [anon_sym_false] = ACTIONS(1302), - [aux_sym__val_number_decimal_token1] = ACTIONS(1302), - [aux_sym__val_number_decimal_token2] = ACTIONS(1302), - [anon_sym_DOT2] = ACTIONS(1302), - [aux_sym__val_number_decimal_token3] = ACTIONS(1302), - [aux_sym__val_number_token1] = ACTIONS(1302), - [aux_sym__val_number_token2] = ACTIONS(1302), - [aux_sym__val_number_token3] = ACTIONS(1302), - [aux_sym__val_number_token4] = ACTIONS(1302), - [aux_sym__val_number_token5] = ACTIONS(1302), - [aux_sym__val_number_token6] = ACTIONS(1302), - [anon_sym_0b] = ACTIONS(1302), - [anon_sym_0o] = ACTIONS(1302), - [anon_sym_0x] = ACTIONS(1302), - [sym_val_date] = ACTIONS(1302), - [anon_sym_DQUOTE] = ACTIONS(1302), - [sym__str_single_quotes] = ACTIONS(1302), - [sym__str_back_ticks] = ACTIONS(1302), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1302), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1302), - [anon_sym_CARET] = ACTIONS(1302), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_DOLLAR] = ACTIONS(1173), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_list] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_make] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_else] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1173), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_catch] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1173), + [anon_sym_BANG_EQ] = ACTIONS(1173), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1173), + [anon_sym_GT_EQ] = ACTIONS(1173), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1173), + [anon_sym_BANG_TILDE] = ACTIONS(1173), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1173), + [anon_sym_DOT2] = ACTIONS(1173), + [aux_sym__val_number_decimal_token3] = ACTIONS(1173), + [aux_sym__val_number_token1] = ACTIONS(1173), + [aux_sym__val_number_token2] = ACTIONS(1173), + [aux_sym__val_number_token3] = ACTIONS(1173), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1173), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym__str_single_quotes] = ACTIONS(1173), + [sym__str_back_ticks] = ACTIONS(1173), + [aux_sym__record_key_token2] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(3), }, [737] = { [sym_comment] = STATE(737), - [ts_builtin_sym_end] = ACTIONS(1318), - [anon_sym_export] = ACTIONS(1316), - [anon_sym_alias] = ACTIONS(1316), - [anon_sym_let] = ACTIONS(1316), - [anon_sym_let_DASHenv] = ACTIONS(1316), - [anon_sym_mut] = ACTIONS(1316), - [anon_sym_const] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1316), - [sym_cmd_identifier] = ACTIONS(1316), - [anon_sym_LF] = ACTIONS(1318), - [anon_sym_def] = ACTIONS(1316), - [anon_sym_export_DASHenv] = ACTIONS(1316), - [anon_sym_extern] = ACTIONS(1316), - [anon_sym_module] = ACTIONS(1316), - [anon_sym_use] = ACTIONS(1316), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1316), - [anon_sym_DOLLAR] = ACTIONS(1316), - [anon_sym_error] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_break] = ACTIONS(1316), - [anon_sym_continue] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1316), - [anon_sym_in] = ACTIONS(1316), - [anon_sym_loop] = ACTIONS(1316), - [anon_sym_while] = ACTIONS(1316), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_if] = ACTIONS(1316), - [anon_sym_match] = ACTIONS(1316), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_DOT_DOT] = ACTIONS(1316), - [anon_sym_try] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1316), - [anon_sym_source] = ACTIONS(1316), - [anon_sym_source_DASHenv] = ACTIONS(1316), - [anon_sym_register] = ACTIONS(1316), - [anon_sym_hide] = ACTIONS(1316), - [anon_sym_hide_DASHenv] = ACTIONS(1316), - [anon_sym_overlay] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_where] = ACTIONS(1316), - [anon_sym_STAR_STAR] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_SLASH] = ACTIONS(1316), - [anon_sym_mod] = ACTIONS(1316), - [anon_sym_SLASH_SLASH] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_bit_DASHshl] = ACTIONS(1316), - [anon_sym_bit_DASHshr] = ACTIONS(1316), - [anon_sym_EQ_EQ] = ACTIONS(1316), - [anon_sym_BANG_EQ] = ACTIONS(1316), - [anon_sym_LT2] = ACTIONS(1316), - [anon_sym_LT_EQ] = ACTIONS(1316), - [anon_sym_GT_EQ] = ACTIONS(1316), - [anon_sym_not_DASHin] = ACTIONS(1316), - [anon_sym_starts_DASHwith] = ACTIONS(1316), - [anon_sym_ends_DASHwith] = ACTIONS(1316), - [anon_sym_EQ_TILDE] = ACTIONS(1316), - [anon_sym_BANG_TILDE] = ACTIONS(1316), - [anon_sym_bit_DASHand] = ACTIONS(1316), - [anon_sym_bit_DASHxor] = ACTIONS(1316), - [anon_sym_bit_DASHor] = ACTIONS(1316), - [anon_sym_and] = ACTIONS(1316), - [anon_sym_xor] = ACTIONS(1316), - [anon_sym_or] = ACTIONS(1316), - [anon_sym_not] = ACTIONS(1316), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1316), - [anon_sym_DOT_DOT_LT] = ACTIONS(1316), - [anon_sym_null] = ACTIONS(1316), - [anon_sym_true] = ACTIONS(1316), - [anon_sym_false] = ACTIONS(1316), - [aux_sym__val_number_decimal_token1] = ACTIONS(1316), - [aux_sym__val_number_decimal_token2] = ACTIONS(1316), - [anon_sym_DOT2] = ACTIONS(1316), - [aux_sym__val_number_decimal_token3] = ACTIONS(1316), - [aux_sym__val_number_token1] = ACTIONS(1316), - [aux_sym__val_number_token2] = ACTIONS(1316), - [aux_sym__val_number_token3] = ACTIONS(1316), - [aux_sym__val_number_token4] = ACTIONS(1316), - [aux_sym__val_number_token5] = ACTIONS(1316), - [aux_sym__val_number_token6] = ACTIONS(1316), - [anon_sym_0b] = ACTIONS(1316), - [anon_sym_0o] = ACTIONS(1316), - [anon_sym_0x] = ACTIONS(1316), - [sym_val_date] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1316), - [sym__str_single_quotes] = ACTIONS(1316), - [sym__str_back_ticks] = ACTIONS(1316), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1316), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_DOLLAR] = ACTIONS(1173), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_list] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_make] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_else] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1173), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_catch] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1173), + [anon_sym_BANG_EQ] = ACTIONS(1173), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1173), + [anon_sym_GT_EQ] = ACTIONS(1173), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1173), + [anon_sym_BANG_TILDE] = ACTIONS(1173), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1173), + [anon_sym_DOT2] = ACTIONS(1173), + [aux_sym__val_number_decimal_token3] = ACTIONS(1173), + [aux_sym__val_number_token1] = ACTIONS(1173), + [aux_sym__val_number_token2] = ACTIONS(1173), + [aux_sym__val_number_token3] = ACTIONS(1173), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1173), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym__str_single_quotes] = ACTIONS(1173), + [sym__str_back_ticks] = ACTIONS(1173), + [aux_sym__record_key_token2] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(3), }, [738] = { [sym_comment] = STATE(738), - [ts_builtin_sym_end] = ACTIONS(1344), - [anon_sym_export] = ACTIONS(1342), - [anon_sym_alias] = ACTIONS(1342), - [anon_sym_let] = ACTIONS(1342), - [anon_sym_let_DASHenv] = ACTIONS(1342), - [anon_sym_mut] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_SEMI] = ACTIONS(1342), - [sym_cmd_identifier] = ACTIONS(1342), - [anon_sym_LF] = ACTIONS(1344), - [anon_sym_def] = ACTIONS(1342), - [anon_sym_export_DASHenv] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1342), - [anon_sym_module] = ACTIONS(1342), - [anon_sym_use] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_DOLLAR] = ACTIONS(1342), - [anon_sym_error] = ACTIONS(1342), - [anon_sym_GT] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_in] = ACTIONS(1342), - [anon_sym_loop] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_match] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_DOT_DOT] = ACTIONS(1342), - [anon_sym_try] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_source] = ACTIONS(1342), - [anon_sym_source_DASHenv] = ACTIONS(1342), - [anon_sym_register] = ACTIONS(1342), - [anon_sym_hide] = ACTIONS(1342), - [anon_sym_hide_DASHenv] = ACTIONS(1342), - [anon_sym_overlay] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_where] = ACTIONS(1342), - [anon_sym_STAR_STAR] = ACTIONS(1342), - [anon_sym_PLUS_PLUS] = ACTIONS(1342), - [anon_sym_SLASH] = ACTIONS(1342), - [anon_sym_mod] = ACTIONS(1342), - [anon_sym_SLASH_SLASH] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_bit_DASHshl] = ACTIONS(1342), - [anon_sym_bit_DASHshr] = ACTIONS(1342), - [anon_sym_EQ_EQ] = ACTIONS(1342), - [anon_sym_BANG_EQ] = ACTIONS(1342), - [anon_sym_LT2] = ACTIONS(1342), - [anon_sym_LT_EQ] = ACTIONS(1342), - [anon_sym_GT_EQ] = ACTIONS(1342), - [anon_sym_not_DASHin] = ACTIONS(1342), - [anon_sym_starts_DASHwith] = ACTIONS(1342), - [anon_sym_ends_DASHwith] = ACTIONS(1342), - [anon_sym_EQ_TILDE] = ACTIONS(1342), - [anon_sym_BANG_TILDE] = ACTIONS(1342), - [anon_sym_bit_DASHand] = ACTIONS(1342), - [anon_sym_bit_DASHxor] = ACTIONS(1342), - [anon_sym_bit_DASHor] = ACTIONS(1342), - [anon_sym_and] = ACTIONS(1342), - [anon_sym_xor] = ACTIONS(1342), - [anon_sym_or] = ACTIONS(1342), - [anon_sym_not] = ACTIONS(1342), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1342), - [anon_sym_DOT_DOT_LT] = ACTIONS(1342), - [anon_sym_null] = ACTIONS(1342), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym__val_number_decimal_token1] = ACTIONS(1342), - [aux_sym__val_number_decimal_token2] = ACTIONS(1342), - [anon_sym_DOT2] = ACTIONS(1342), - [aux_sym__val_number_decimal_token3] = ACTIONS(1342), - [aux_sym__val_number_token1] = ACTIONS(1342), - [aux_sym__val_number_token2] = ACTIONS(1342), - [aux_sym__val_number_token3] = ACTIONS(1342), - [aux_sym__val_number_token4] = ACTIONS(1342), - [aux_sym__val_number_token5] = ACTIONS(1342), - [aux_sym__val_number_token6] = ACTIONS(1342), - [anon_sym_0b] = ACTIONS(1342), - [anon_sym_0o] = ACTIONS(1342), - [anon_sym_0x] = ACTIONS(1342), - [sym_val_date] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [sym__str_single_quotes] = ACTIONS(1342), - [sym__str_back_ticks] = ACTIONS(1342), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1342), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1342), - [anon_sym_CARET] = ACTIONS(1342), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_DOLLAR] = ACTIONS(1173), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_list] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_make] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_else] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1173), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_catch] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1173), + [anon_sym_BANG_EQ] = ACTIONS(1173), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1173), + [anon_sym_GT_EQ] = ACTIONS(1173), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1173), + [anon_sym_BANG_TILDE] = ACTIONS(1173), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1173), + [anon_sym_DOT2] = ACTIONS(1173), + [aux_sym__val_number_decimal_token3] = ACTIONS(1173), + [aux_sym__val_number_token1] = ACTIONS(1173), + [aux_sym__val_number_token2] = ACTIONS(1173), + [aux_sym__val_number_token3] = ACTIONS(1173), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1173), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym__str_single_quotes] = ACTIONS(1173), + [sym__str_back_ticks] = ACTIONS(1173), + [aux_sym__record_key_token2] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(3), }, [739] = { [sym_comment] = STATE(739), - [ts_builtin_sym_end] = ACTIONS(1348), - [anon_sym_export] = ACTIONS(1346), - [anon_sym_alias] = ACTIONS(1346), - [anon_sym_let] = ACTIONS(1346), - [anon_sym_let_DASHenv] = ACTIONS(1346), - [anon_sym_mut] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_SEMI] = ACTIONS(1346), - [sym_cmd_identifier] = ACTIONS(1346), - [anon_sym_LF] = ACTIONS(1348), - [anon_sym_def] = ACTIONS(1346), - [anon_sym_export_DASHenv] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1346), - [anon_sym_module] = ACTIONS(1346), - [anon_sym_use] = ACTIONS(1346), - [anon_sym_LBRACK] = ACTIONS(1346), - [anon_sym_LPAREN] = ACTIONS(1346), - [anon_sym_DOLLAR] = ACTIONS(1346), - [anon_sym_error] = ACTIONS(1346), - [anon_sym_GT] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_in] = ACTIONS(1346), - [anon_sym_loop] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_match] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_DOT_DOT] = ACTIONS(1346), - [anon_sym_try] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_source] = ACTIONS(1346), - [anon_sym_source_DASHenv] = ACTIONS(1346), - [anon_sym_register] = ACTIONS(1346), - [anon_sym_hide] = ACTIONS(1346), - [anon_sym_hide_DASHenv] = ACTIONS(1346), - [anon_sym_overlay] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_where] = ACTIONS(1346), - [anon_sym_STAR_STAR] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1346), - [anon_sym_SLASH] = ACTIONS(1346), - [anon_sym_mod] = ACTIONS(1346), - [anon_sym_SLASH_SLASH] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_bit_DASHshl] = ACTIONS(1346), - [anon_sym_bit_DASHshr] = ACTIONS(1346), - [anon_sym_EQ_EQ] = ACTIONS(1346), - [anon_sym_BANG_EQ] = ACTIONS(1346), - [anon_sym_LT2] = ACTIONS(1346), - [anon_sym_LT_EQ] = ACTIONS(1346), - [anon_sym_GT_EQ] = ACTIONS(1346), - [anon_sym_not_DASHin] = ACTIONS(1346), - [anon_sym_starts_DASHwith] = ACTIONS(1346), - [anon_sym_ends_DASHwith] = ACTIONS(1346), - [anon_sym_EQ_TILDE] = ACTIONS(1346), - [anon_sym_BANG_TILDE] = ACTIONS(1346), - [anon_sym_bit_DASHand] = ACTIONS(1346), - [anon_sym_bit_DASHxor] = ACTIONS(1346), - [anon_sym_bit_DASHor] = ACTIONS(1346), - [anon_sym_and] = ACTIONS(1346), - [anon_sym_xor] = ACTIONS(1346), - [anon_sym_or] = ACTIONS(1346), - [anon_sym_not] = ACTIONS(1346), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1346), - [anon_sym_DOT_DOT_LT] = ACTIONS(1346), - [anon_sym_null] = ACTIONS(1346), - [anon_sym_true] = ACTIONS(1346), - [anon_sym_false] = ACTIONS(1346), - [aux_sym__val_number_decimal_token1] = ACTIONS(1346), - [aux_sym__val_number_decimal_token2] = ACTIONS(1346), - [anon_sym_DOT2] = ACTIONS(1346), - [aux_sym__val_number_decimal_token3] = ACTIONS(1346), - [aux_sym__val_number_token1] = ACTIONS(1346), - [aux_sym__val_number_token2] = ACTIONS(1346), - [aux_sym__val_number_token3] = ACTIONS(1346), - [aux_sym__val_number_token4] = ACTIONS(1346), - [aux_sym__val_number_token5] = ACTIONS(1346), - [aux_sym__val_number_token6] = ACTIONS(1346), - [anon_sym_0b] = ACTIONS(1346), - [anon_sym_0o] = ACTIONS(1346), - [anon_sym_0x] = ACTIONS(1346), - [sym_val_date] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym__str_single_quotes] = ACTIONS(1346), - [sym__str_back_ticks] = ACTIONS(1346), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1346), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_DOLLAR] = ACTIONS(1173), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_list] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_make] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_else] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1173), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_catch] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1173), + [anon_sym_BANG_EQ] = ACTIONS(1173), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1173), + [anon_sym_GT_EQ] = ACTIONS(1173), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1173), + [anon_sym_BANG_TILDE] = ACTIONS(1173), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1173), + [anon_sym_DOT2] = ACTIONS(1173), + [aux_sym__val_number_decimal_token3] = ACTIONS(1173), + [aux_sym__val_number_token1] = ACTIONS(1173), + [aux_sym__val_number_token2] = ACTIONS(1173), + [aux_sym__val_number_token3] = ACTIONS(1173), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1173), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym__str_single_quotes] = ACTIONS(1173), + [sym__str_back_ticks] = ACTIONS(1173), + [aux_sym__record_key_token2] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(3), }, [740] = { [sym_comment] = STATE(740), - [ts_builtin_sym_end] = ACTIONS(1364), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_alias] = ACTIONS(1362), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_let_DASHenv] = ACTIONS(1362), - [anon_sym_mut] = ACTIONS(1362), - [anon_sym_const] = ACTIONS(1362), - [anon_sym_SEMI] = ACTIONS(1362), - [sym_cmd_identifier] = ACTIONS(1362), - [anon_sym_LF] = ACTIONS(1364), - [anon_sym_def] = ACTIONS(1362), - [anon_sym_export_DASHenv] = ACTIONS(1362), - [anon_sym_extern] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_use] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1362), - [anon_sym_LPAREN] = ACTIONS(1362), - [anon_sym_DOLLAR] = ACTIONS(1362), - [anon_sym_error] = ACTIONS(1362), - [anon_sym_GT] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_break] = ACTIONS(1362), - [anon_sym_continue] = ACTIONS(1362), - [anon_sym_for] = ACTIONS(1362), - [anon_sym_in] = ACTIONS(1362), - [anon_sym_loop] = ACTIONS(1362), - [anon_sym_while] = ACTIONS(1362), - [anon_sym_do] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1362), - [anon_sym_match] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_DOT_DOT] = ACTIONS(1362), - [anon_sym_try] = ACTIONS(1362), - [anon_sym_return] = ACTIONS(1362), - [anon_sym_source] = ACTIONS(1362), - [anon_sym_source_DASHenv] = ACTIONS(1362), - [anon_sym_register] = ACTIONS(1362), - [anon_sym_hide] = ACTIONS(1362), - [anon_sym_hide_DASHenv] = ACTIONS(1362), - [anon_sym_overlay] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_where] = ACTIONS(1362), - [anon_sym_STAR_STAR] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_SLASH] = ACTIONS(1362), - [anon_sym_mod] = ACTIONS(1362), - [anon_sym_SLASH_SLASH] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_bit_DASHshl] = ACTIONS(1362), - [anon_sym_bit_DASHshr] = ACTIONS(1362), - [anon_sym_EQ_EQ] = ACTIONS(1362), - [anon_sym_BANG_EQ] = ACTIONS(1362), - [anon_sym_LT2] = ACTIONS(1362), - [anon_sym_LT_EQ] = ACTIONS(1362), - [anon_sym_GT_EQ] = ACTIONS(1362), - [anon_sym_not_DASHin] = ACTIONS(1362), - [anon_sym_starts_DASHwith] = ACTIONS(1362), - [anon_sym_ends_DASHwith] = ACTIONS(1362), - [anon_sym_EQ_TILDE] = ACTIONS(1362), - [anon_sym_BANG_TILDE] = ACTIONS(1362), - [anon_sym_bit_DASHand] = ACTIONS(1362), - [anon_sym_bit_DASHxor] = ACTIONS(1362), - [anon_sym_bit_DASHor] = ACTIONS(1362), - [anon_sym_and] = ACTIONS(1362), - [anon_sym_xor] = ACTIONS(1362), - [anon_sym_or] = ACTIONS(1362), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1362), - [anon_sym_DOT_DOT_LT] = ACTIONS(1362), - [anon_sym_null] = ACTIONS(1362), - [anon_sym_true] = ACTIONS(1362), - [anon_sym_false] = ACTIONS(1362), - [aux_sym__val_number_decimal_token1] = ACTIONS(1362), - [aux_sym__val_number_decimal_token2] = ACTIONS(1362), - [anon_sym_DOT2] = ACTIONS(1362), - [aux_sym__val_number_decimal_token3] = ACTIONS(1362), - [aux_sym__val_number_token1] = ACTIONS(1362), - [aux_sym__val_number_token2] = ACTIONS(1362), - [aux_sym__val_number_token3] = ACTIONS(1362), - [aux_sym__val_number_token4] = ACTIONS(1362), - [aux_sym__val_number_token5] = ACTIONS(1362), - [aux_sym__val_number_token6] = ACTIONS(1362), - [anon_sym_0b] = ACTIONS(1362), - [anon_sym_0o] = ACTIONS(1362), - [anon_sym_0x] = ACTIONS(1362), - [sym_val_date] = ACTIONS(1362), - [anon_sym_DQUOTE] = ACTIONS(1362), - [sym__str_single_quotes] = ACTIONS(1362), - [sym__str_back_ticks] = ACTIONS(1362), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1362), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1362), - [anon_sym_CARET] = ACTIONS(1362), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_DOLLAR] = ACTIONS(1173), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_list] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_make] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_else] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1173), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_catch] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1173), + [anon_sym_BANG_EQ] = ACTIONS(1173), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1173), + [anon_sym_GT_EQ] = ACTIONS(1173), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1173), + [anon_sym_BANG_TILDE] = ACTIONS(1173), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1173), + [anon_sym_DOT2] = ACTIONS(1173), + [aux_sym__val_number_decimal_token3] = ACTIONS(1173), + [aux_sym__val_number_token1] = ACTIONS(1173), + [aux_sym__val_number_token2] = ACTIONS(1173), + [aux_sym__val_number_token3] = ACTIONS(1173), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1173), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym__str_single_quotes] = ACTIONS(1173), + [sym__str_back_ticks] = ACTIONS(1173), + [aux_sym__record_key_token2] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(3), }, [741] = { [sym_comment] = STATE(741), - [ts_builtin_sym_end] = ACTIONS(1188), - [anon_sym_export] = ACTIONS(1186), - [anon_sym_alias] = ACTIONS(1186), - [anon_sym_let] = ACTIONS(1186), - [anon_sym_let_DASHenv] = ACTIONS(1186), - [anon_sym_mut] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1186), - [sym_cmd_identifier] = ACTIONS(1186), - [anon_sym_LF] = ACTIONS(1188), - [anon_sym_def] = ACTIONS(1186), - [anon_sym_export_DASHenv] = ACTIONS(1186), - [anon_sym_extern] = ACTIONS(1186), - [anon_sym_module] = ACTIONS(1186), - [anon_sym_use] = ACTIONS(1186), - [anon_sym_LBRACK] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(1186), - [anon_sym_DOLLAR] = ACTIONS(1186), - [anon_sym_error] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1186), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1186), - [anon_sym_in] = ACTIONS(1186), - [anon_sym_loop] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_do] = ACTIONS(1186), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_match] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_DOT_DOT] = ACTIONS(1186), - [anon_sym_try] = ACTIONS(1186), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_source] = ACTIONS(1186), - [anon_sym_source_DASHenv] = ACTIONS(1186), - [anon_sym_register] = ACTIONS(1186), - [anon_sym_hide] = ACTIONS(1186), - [anon_sym_hide_DASHenv] = ACTIONS(1186), - [anon_sym_overlay] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_where] = ACTIONS(1186), - [anon_sym_STAR_STAR] = ACTIONS(1186), - [anon_sym_PLUS_PLUS] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_mod] = ACTIONS(1186), - [anon_sym_SLASH_SLASH] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_bit_DASHshl] = ACTIONS(1186), - [anon_sym_bit_DASHshr] = ACTIONS(1186), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_LT2] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1186), - [anon_sym_GT_EQ] = ACTIONS(1186), - [anon_sym_not_DASHin] = ACTIONS(1186), - [anon_sym_starts_DASHwith] = ACTIONS(1186), - [anon_sym_ends_DASHwith] = ACTIONS(1186), - [anon_sym_EQ_TILDE] = ACTIONS(1186), - [anon_sym_BANG_TILDE] = ACTIONS(1186), - [anon_sym_bit_DASHand] = ACTIONS(1186), - [anon_sym_bit_DASHxor] = ACTIONS(1186), - [anon_sym_bit_DASHor] = ACTIONS(1186), - [anon_sym_and] = ACTIONS(1186), - [anon_sym_xor] = ACTIONS(1186), - [anon_sym_or] = ACTIONS(1186), - [anon_sym_not] = ACTIONS(1186), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1186), - [anon_sym_DOT_DOT_LT] = ACTIONS(1186), - [anon_sym_null] = ACTIONS(1186), - [anon_sym_true] = ACTIONS(1186), - [anon_sym_false] = ACTIONS(1186), - [aux_sym__val_number_decimal_token1] = ACTIONS(1186), - [aux_sym__val_number_decimal_token2] = ACTIONS(1186), - [anon_sym_DOT2] = ACTIONS(1186), - [aux_sym__val_number_decimal_token3] = ACTIONS(1186), - [aux_sym__val_number_token1] = ACTIONS(1186), - [aux_sym__val_number_token2] = ACTIONS(1186), - [aux_sym__val_number_token3] = ACTIONS(1186), - [aux_sym__val_number_token4] = ACTIONS(1186), - [aux_sym__val_number_token5] = ACTIONS(1186), - [aux_sym__val_number_token6] = ACTIONS(1186), - [anon_sym_0b] = ACTIONS(1186), - [anon_sym_0o] = ACTIONS(1186), - [anon_sym_0x] = ACTIONS(1186), - [sym_val_date] = ACTIONS(1186), - [anon_sym_DQUOTE] = ACTIONS(1186), - [sym__str_single_quotes] = ACTIONS(1186), - [sym__str_back_ticks] = ACTIONS(1186), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1186), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1186), - [anon_sym_CARET] = ACTIONS(1186), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_DOLLAR] = ACTIONS(1173), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_list] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_make] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_else] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1173), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_catch] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1173), + [anon_sym_BANG_EQ] = ACTIONS(1173), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1173), + [anon_sym_GT_EQ] = ACTIONS(1173), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1173), + [anon_sym_BANG_TILDE] = ACTIONS(1173), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1173), + [anon_sym_DOT2] = ACTIONS(1173), + [aux_sym__val_number_decimal_token3] = ACTIONS(1173), + [aux_sym__val_number_token1] = ACTIONS(1173), + [aux_sym__val_number_token2] = ACTIONS(1173), + [aux_sym__val_number_token3] = ACTIONS(1173), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1173), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym__str_single_quotes] = ACTIONS(1173), + [sym__str_back_ticks] = ACTIONS(1173), + [aux_sym__record_key_token2] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(3), }, [742] = { [sym_comment] = STATE(742), - [ts_builtin_sym_end] = ACTIONS(1352), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_alias] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_let_DASHenv] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1350), - [sym_cmd_identifier] = ACTIONS(1350), - [anon_sym_LF] = ACTIONS(1352), - [anon_sym_def] = ACTIONS(1350), - [anon_sym_export_DASHenv] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_LBRACK] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1350), - [anon_sym_DOLLAR] = ACTIONS(1350), - [anon_sym_error] = ACTIONS(1350), - [anon_sym_GT] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_in] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_DOT_DOT] = ACTIONS(1350), - [anon_sym_try] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_source] = ACTIONS(1350), - [anon_sym_source_DASHenv] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_hide] = ACTIONS(1350), - [anon_sym_hide_DASHenv] = ACTIONS(1350), - [anon_sym_overlay] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_where] = ACTIONS(1350), - [anon_sym_STAR_STAR] = ACTIONS(1350), - [anon_sym_PLUS_PLUS] = ACTIONS(1350), - [anon_sym_SLASH] = ACTIONS(1350), - [anon_sym_mod] = ACTIONS(1350), - [anon_sym_SLASH_SLASH] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_bit_DASHshl] = ACTIONS(1350), - [anon_sym_bit_DASHshr] = ACTIONS(1350), - [anon_sym_EQ_EQ] = ACTIONS(1350), - [anon_sym_BANG_EQ] = ACTIONS(1350), - [anon_sym_LT2] = ACTIONS(1350), - [anon_sym_LT_EQ] = ACTIONS(1350), - [anon_sym_GT_EQ] = ACTIONS(1350), - [anon_sym_not_DASHin] = ACTIONS(1350), - [anon_sym_starts_DASHwith] = ACTIONS(1350), - [anon_sym_ends_DASHwith] = ACTIONS(1350), - [anon_sym_EQ_TILDE] = ACTIONS(1350), - [anon_sym_BANG_TILDE] = ACTIONS(1350), - [anon_sym_bit_DASHand] = ACTIONS(1350), - [anon_sym_bit_DASHxor] = ACTIONS(1350), - [anon_sym_bit_DASHor] = ACTIONS(1350), - [anon_sym_and] = ACTIONS(1350), - [anon_sym_xor] = ACTIONS(1350), - [anon_sym_or] = ACTIONS(1350), - [anon_sym_not] = ACTIONS(1350), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1350), - [anon_sym_DOT_DOT_LT] = ACTIONS(1350), - [anon_sym_null] = ACTIONS(1350), - [anon_sym_true] = ACTIONS(1350), - [anon_sym_false] = ACTIONS(1350), - [aux_sym__val_number_decimal_token1] = ACTIONS(1350), - [aux_sym__val_number_decimal_token2] = ACTIONS(1350), - [anon_sym_DOT2] = ACTIONS(1350), - [aux_sym__val_number_decimal_token3] = ACTIONS(1350), - [aux_sym__val_number_token1] = ACTIONS(1350), - [aux_sym__val_number_token2] = ACTIONS(1350), - [aux_sym__val_number_token3] = ACTIONS(1350), - [aux_sym__val_number_token4] = ACTIONS(1350), - [aux_sym__val_number_token5] = ACTIONS(1350), - [aux_sym__val_number_token6] = ACTIONS(1350), - [anon_sym_0b] = ACTIONS(1350), - [anon_sym_0o] = ACTIONS(1350), - [anon_sym_0x] = ACTIONS(1350), - [sym_val_date] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [sym__str_single_quotes] = ACTIONS(1350), - [sym__str_back_ticks] = ACTIONS(1350), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1350), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1350), - [anon_sym_CARET] = ACTIONS(1350), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_DOLLAR] = ACTIONS(1173), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_list] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_make] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_else] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1173), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_catch] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1173), + [anon_sym_BANG_EQ] = ACTIONS(1173), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1173), + [anon_sym_GT_EQ] = ACTIONS(1173), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1173), + [anon_sym_BANG_TILDE] = ACTIONS(1173), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1173), + [anon_sym_DOT2] = ACTIONS(1173), + [aux_sym__val_number_decimal_token3] = ACTIONS(1173), + [aux_sym__val_number_token1] = ACTIONS(1173), + [aux_sym__val_number_token2] = ACTIONS(1173), + [aux_sym__val_number_token3] = ACTIONS(1173), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1173), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym__str_single_quotes] = ACTIONS(1173), + [sym__str_back_ticks] = ACTIONS(1173), + [aux_sym__record_key_token2] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(3), }, [743] = { [sym_comment] = STATE(743), - [ts_builtin_sym_end] = ACTIONS(1296), - [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), - [anon_sym_SEMI] = ACTIONS(1294), - [sym_cmd_identifier] = ACTIONS(1294), - [anon_sym_LF] = 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(1294), - [anon_sym_LPAREN] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_error] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_in] = 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(1294), - [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_register] = ACTIONS(1294), - [anon_sym_hide] = ACTIONS(1294), - [anon_sym_hide_DASHenv] = ACTIONS(1294), - [anon_sym_overlay] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_where] = ACTIONS(1294), - [anon_sym_STAR_STAR] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_mod] = ACTIONS(1294), - [anon_sym_SLASH_SLASH] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_bit_DASHshl] = ACTIONS(1294), - [anon_sym_bit_DASHshr] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_LT2] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_not_DASHin] = ACTIONS(1294), - [anon_sym_starts_DASHwith] = ACTIONS(1294), - [anon_sym_ends_DASHwith] = ACTIONS(1294), - [anon_sym_EQ_TILDE] = ACTIONS(1294), - [anon_sym_BANG_TILDE] = ACTIONS(1294), - [anon_sym_bit_DASHand] = ACTIONS(1294), - [anon_sym_bit_DASHxor] = ACTIONS(1294), - [anon_sym_bit_DASHor] = ACTIONS(1294), - [anon_sym_and] = ACTIONS(1294), - [anon_sym_xor] = ACTIONS(1294), - [anon_sym_or] = ACTIONS(1294), - [anon_sym_not] = ACTIONS(1294), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1294), - [anon_sym_DOT_DOT_LT] = ACTIONS(1294), - [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(1294), - [anon_sym_DOT2] = ACTIONS(1294), - [aux_sym__val_number_decimal_token3] = ACTIONS(1294), - [aux_sym__val_number_token1] = ACTIONS(1294), - [aux_sym__val_number_token2] = ACTIONS(1294), - [aux_sym__val_number_token3] = ACTIONS(1294), - [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(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym__str_single_quotes] = ACTIONS(1294), - [sym__str_back_ticks] = ACTIONS(1294), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1294), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1294), - [anon_sym_CARET] = ACTIONS(1294), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_DOLLAR] = ACTIONS(1173), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_list] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_make] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_else] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1173), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_catch] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1173), + [anon_sym_BANG_EQ] = ACTIONS(1173), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1173), + [anon_sym_GT_EQ] = ACTIONS(1173), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1173), + [anon_sym_BANG_TILDE] = ACTIONS(1173), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1173), + [anon_sym_DOT2] = ACTIONS(1173), + [aux_sym__val_number_decimal_token3] = ACTIONS(1173), + [aux_sym__val_number_token1] = ACTIONS(1173), + [aux_sym__val_number_token2] = ACTIONS(1173), + [aux_sym__val_number_token3] = ACTIONS(1173), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1173), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym__str_single_quotes] = ACTIONS(1173), + [sym__str_back_ticks] = ACTIONS(1173), + [aux_sym__record_key_token2] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(3), }, [744] = { [sym_comment] = STATE(744), - [ts_builtin_sym_end] = ACTIONS(1296), - [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), - [anon_sym_SEMI] = ACTIONS(1294), - [sym_cmd_identifier] = ACTIONS(1294), - [anon_sym_LF] = 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(1294), - [anon_sym_LPAREN] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_error] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_in] = 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(1294), - [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_register] = ACTIONS(1294), - [anon_sym_hide] = ACTIONS(1294), - [anon_sym_hide_DASHenv] = ACTIONS(1294), - [anon_sym_overlay] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_where] = ACTIONS(1294), - [anon_sym_STAR_STAR] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_mod] = ACTIONS(1294), - [anon_sym_SLASH_SLASH] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_bit_DASHshl] = ACTIONS(1294), - [anon_sym_bit_DASHshr] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_LT2] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_not_DASHin] = ACTIONS(1294), - [anon_sym_starts_DASHwith] = ACTIONS(1294), - [anon_sym_ends_DASHwith] = ACTIONS(1294), - [anon_sym_EQ_TILDE] = ACTIONS(1294), - [anon_sym_BANG_TILDE] = ACTIONS(1294), - [anon_sym_bit_DASHand] = ACTIONS(1294), - [anon_sym_bit_DASHxor] = ACTIONS(1294), - [anon_sym_bit_DASHor] = ACTIONS(1294), - [anon_sym_and] = ACTIONS(1294), - [anon_sym_xor] = ACTIONS(1294), - [anon_sym_or] = ACTIONS(1294), - [anon_sym_not] = ACTIONS(1294), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1294), - [anon_sym_DOT_DOT_LT] = ACTIONS(1294), - [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(1294), - [anon_sym_DOT2] = ACTIONS(1294), - [aux_sym__val_number_decimal_token3] = ACTIONS(1294), - [aux_sym__val_number_token1] = ACTIONS(1294), - [aux_sym__val_number_token2] = ACTIONS(1294), - [aux_sym__val_number_token3] = ACTIONS(1294), - [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(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym__str_single_quotes] = ACTIONS(1294), - [sym__str_back_ticks] = ACTIONS(1294), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1294), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1294), - [anon_sym_CARET] = ACTIONS(1294), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_DOLLAR] = ACTIONS(1173), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_list] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_make] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_else] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1173), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_catch] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1173), + [anon_sym_BANG_EQ] = ACTIONS(1173), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1173), + [anon_sym_GT_EQ] = ACTIONS(1173), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1173), + [anon_sym_BANG_TILDE] = ACTIONS(1173), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1173), + [anon_sym_DOT2] = ACTIONS(1173), + [aux_sym__val_number_decimal_token3] = ACTIONS(1173), + [aux_sym__val_number_token1] = ACTIONS(1173), + [aux_sym__val_number_token2] = ACTIONS(1173), + [aux_sym__val_number_token3] = ACTIONS(1173), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1173), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym__str_single_quotes] = ACTIONS(1173), + [sym__str_back_ticks] = ACTIONS(1173), + [aux_sym__record_key_token2] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(3), }, [745] = { [sym_comment] = STATE(745), - [ts_builtin_sym_end] = ACTIONS(1310), - [anon_sym_export] = ACTIONS(1308), - [anon_sym_alias] = ACTIONS(1308), - [anon_sym_let] = ACTIONS(1308), - [anon_sym_let_DASHenv] = ACTIONS(1308), - [anon_sym_mut] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [sym_cmd_identifier] = ACTIONS(1308), - [anon_sym_LF] = ACTIONS(1310), - [anon_sym_def] = ACTIONS(1308), - [anon_sym_export_DASHenv] = ACTIONS(1308), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym_module] = ACTIONS(1308), - [anon_sym_use] = ACTIONS(1308), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_LPAREN] = ACTIONS(1308), - [anon_sym_DOLLAR] = ACTIONS(1308), - [anon_sym_error] = ACTIONS(1308), - [anon_sym_GT] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_break] = ACTIONS(1308), - [anon_sym_continue] = ACTIONS(1308), - [anon_sym_for] = ACTIONS(1308), - [anon_sym_in] = ACTIONS(1308), - [anon_sym_loop] = ACTIONS(1308), - [anon_sym_while] = ACTIONS(1308), - [anon_sym_do] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_match] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_DOT_DOT] = ACTIONS(1308), - [anon_sym_try] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1308), - [anon_sym_source] = ACTIONS(1308), - [anon_sym_source_DASHenv] = ACTIONS(1308), - [anon_sym_register] = ACTIONS(1308), - [anon_sym_hide] = ACTIONS(1308), - [anon_sym_hide_DASHenv] = ACTIONS(1308), - [anon_sym_overlay] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_where] = ACTIONS(1308), - [anon_sym_STAR_STAR] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(1308), - [anon_sym_mod] = ACTIONS(1308), - [anon_sym_SLASH_SLASH] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_bit_DASHshl] = ACTIONS(1308), - [anon_sym_bit_DASHshr] = ACTIONS(1308), - [anon_sym_EQ_EQ] = ACTIONS(1308), - [anon_sym_BANG_EQ] = ACTIONS(1308), - [anon_sym_LT2] = ACTIONS(1308), - [anon_sym_LT_EQ] = ACTIONS(1308), - [anon_sym_GT_EQ] = ACTIONS(1308), - [anon_sym_not_DASHin] = ACTIONS(1308), - [anon_sym_starts_DASHwith] = ACTIONS(1308), - [anon_sym_ends_DASHwith] = ACTIONS(1308), - [anon_sym_EQ_TILDE] = ACTIONS(1308), - [anon_sym_BANG_TILDE] = ACTIONS(1308), - [anon_sym_bit_DASHand] = ACTIONS(1308), - [anon_sym_bit_DASHxor] = ACTIONS(1308), - [anon_sym_bit_DASHor] = ACTIONS(1308), - [anon_sym_and] = ACTIONS(1308), - [anon_sym_xor] = ACTIONS(1308), - [anon_sym_or] = ACTIONS(1308), - [anon_sym_not] = ACTIONS(1308), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1308), - [anon_sym_DOT_DOT_LT] = ACTIONS(1308), - [anon_sym_null] = ACTIONS(1308), - [anon_sym_true] = ACTIONS(1308), - [anon_sym_false] = ACTIONS(1308), - [aux_sym__val_number_decimal_token1] = ACTIONS(1308), - [aux_sym__val_number_decimal_token2] = ACTIONS(1308), - [anon_sym_DOT2] = ACTIONS(1308), - [aux_sym__val_number_decimal_token3] = ACTIONS(1308), - [aux_sym__val_number_token1] = ACTIONS(1308), - [aux_sym__val_number_token2] = ACTIONS(1308), - [aux_sym__val_number_token3] = ACTIONS(1308), - [aux_sym__val_number_token4] = ACTIONS(1308), - [aux_sym__val_number_token5] = ACTIONS(1308), - [aux_sym__val_number_token6] = ACTIONS(1308), - [anon_sym_0b] = ACTIONS(1308), - [anon_sym_0o] = ACTIONS(1308), - [anon_sym_0x] = ACTIONS(1308), - [sym_val_date] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym__str_single_quotes] = ACTIONS(1308), - [sym__str_back_ticks] = ACTIONS(1308), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1308), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1308), - [anon_sym_CARET] = ACTIONS(1308), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_alias] = ACTIONS(1171), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_let_DASHenv] = ACTIONS(1171), + [anon_sym_mut] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [sym_cmd_identifier] = ACTIONS(1171), + [anon_sym_def] = ACTIONS(1171), + [anon_sym_export_DASHenv] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym_module] = ACTIONS(1171), + [anon_sym_use] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_DOLLAR] = ACTIONS(1173), + [anon_sym_error] = ACTIONS(1171), + [anon_sym_list] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_loop] = ACTIONS(1171), + [anon_sym_make] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_else] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1173), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_catch] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_source] = ACTIONS(1171), + [anon_sym_source_DASHenv] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_hide_DASHenv] = ACTIONS(1171), + [anon_sym_overlay] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1171), + [anon_sym_as] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1173), + [anon_sym_BANG_EQ] = ACTIONS(1173), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1173), + [anon_sym_GT_EQ] = ACTIONS(1173), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1173), + [anon_sym_BANG_TILDE] = ACTIONS(1173), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1173), + [anon_sym_DOT2] = ACTIONS(1173), + [aux_sym__val_number_decimal_token3] = ACTIONS(1173), + [aux_sym__val_number_token1] = ACTIONS(1173), + [aux_sym__val_number_token2] = ACTIONS(1173), + [aux_sym__val_number_token3] = ACTIONS(1173), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1173), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym__str_single_quotes] = ACTIONS(1173), + [sym__str_back_ticks] = ACTIONS(1173), + [aux_sym__record_key_token2] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(3), }, [746] = { [sym_comment] = STATE(746), - [ts_builtin_sym_end] = ACTIONS(1314), - [anon_sym_export] = ACTIONS(1312), - [anon_sym_alias] = ACTIONS(1312), - [anon_sym_let] = ACTIONS(1312), - [anon_sym_let_DASHenv] = ACTIONS(1312), - [anon_sym_mut] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [sym_cmd_identifier] = ACTIONS(1312), - [anon_sym_LF] = ACTIONS(1314), - [anon_sym_def] = ACTIONS(1312), - [anon_sym_export_DASHenv] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym_module] = ACTIONS(1312), - [anon_sym_use] = ACTIONS(1312), - [anon_sym_LBRACK] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1312), - [anon_sym_DOLLAR] = ACTIONS(1312), - [anon_sym_error] = ACTIONS(1312), - [anon_sym_GT] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_in] = ACTIONS(1312), - [anon_sym_loop] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_match] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_DOT_DOT] = ACTIONS(1312), - [anon_sym_try] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_source] = ACTIONS(1312), - [anon_sym_source_DASHenv] = ACTIONS(1312), - [anon_sym_register] = ACTIONS(1312), - [anon_sym_hide] = ACTIONS(1312), - [anon_sym_hide_DASHenv] = ACTIONS(1312), - [anon_sym_overlay] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_where] = ACTIONS(1312), - [anon_sym_STAR_STAR] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_SLASH] = ACTIONS(1312), - [anon_sym_mod] = ACTIONS(1312), - [anon_sym_SLASH_SLASH] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_bit_DASHshl] = ACTIONS(1312), - [anon_sym_bit_DASHshr] = ACTIONS(1312), - [anon_sym_EQ_EQ] = ACTIONS(1312), - [anon_sym_BANG_EQ] = ACTIONS(1312), - [anon_sym_LT2] = ACTIONS(1312), - [anon_sym_LT_EQ] = ACTIONS(1312), - [anon_sym_GT_EQ] = ACTIONS(1312), - [anon_sym_not_DASHin] = ACTIONS(1312), - [anon_sym_starts_DASHwith] = ACTIONS(1312), - [anon_sym_ends_DASHwith] = ACTIONS(1312), - [anon_sym_EQ_TILDE] = ACTIONS(1312), - [anon_sym_BANG_TILDE] = ACTIONS(1312), - [anon_sym_bit_DASHand] = ACTIONS(1312), - [anon_sym_bit_DASHxor] = ACTIONS(1312), - [anon_sym_bit_DASHor] = ACTIONS(1312), - [anon_sym_and] = ACTIONS(1312), - [anon_sym_xor] = ACTIONS(1312), - [anon_sym_or] = ACTIONS(1312), - [anon_sym_not] = ACTIONS(1312), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1312), - [anon_sym_DOT_DOT_LT] = ACTIONS(1312), - [anon_sym_null] = ACTIONS(1312), - [anon_sym_true] = ACTIONS(1312), - [anon_sym_false] = ACTIONS(1312), - [aux_sym__val_number_decimal_token1] = ACTIONS(1312), - [aux_sym__val_number_decimal_token2] = ACTIONS(1312), - [anon_sym_DOT2] = ACTIONS(1312), - [aux_sym__val_number_decimal_token3] = ACTIONS(1312), - [aux_sym__val_number_token1] = ACTIONS(1312), - [aux_sym__val_number_token2] = ACTIONS(1312), - [aux_sym__val_number_token3] = ACTIONS(1312), - [aux_sym__val_number_token4] = ACTIONS(1312), - [aux_sym__val_number_token5] = ACTIONS(1312), - [aux_sym__val_number_token6] = ACTIONS(1312), - [anon_sym_0b] = ACTIONS(1312), - [anon_sym_0o] = ACTIONS(1312), - [anon_sym_0x] = ACTIONS(1312), - [sym_val_date] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym__str_single_quotes] = ACTIONS(1312), - [sym__str_back_ticks] = ACTIONS(1312), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1312), - [anon_sym_CARET] = ACTIONS(1312), - [anon_sym_POUND] = ACTIONS(113), - }, - [747] = { - [sym_comment] = STATE(747), - [ts_builtin_sym_end] = ACTIONS(1334), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_alias] = ACTIONS(1332), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_let_DASHenv] = ACTIONS(1332), - [anon_sym_mut] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1332), - [sym_cmd_identifier] = ACTIONS(1332), - [anon_sym_LF] = ACTIONS(1334), - [anon_sym_def] = ACTIONS(1332), - [anon_sym_export_DASHenv] = ACTIONS(1332), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_use] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1332), - [anon_sym_DOLLAR] = ACTIONS(1332), - [anon_sym_error] = ACTIONS(1332), - [anon_sym_GT] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_in] = ACTIONS(1332), - [anon_sym_loop] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_do] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_match] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_DOT_DOT] = ACTIONS(1332), - [anon_sym_try] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_source] = ACTIONS(1332), - [anon_sym_source_DASHenv] = ACTIONS(1332), - [anon_sym_register] = ACTIONS(1332), - [anon_sym_hide] = ACTIONS(1332), - [anon_sym_hide_DASHenv] = ACTIONS(1332), - [anon_sym_overlay] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_where] = ACTIONS(1332), - [anon_sym_STAR_STAR] = ACTIONS(1332), - [anon_sym_PLUS_PLUS] = ACTIONS(1332), - [anon_sym_SLASH] = ACTIONS(1332), - [anon_sym_mod] = ACTIONS(1332), - [anon_sym_SLASH_SLASH] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_bit_DASHshl] = ACTIONS(1332), - [anon_sym_bit_DASHshr] = ACTIONS(1332), - [anon_sym_EQ_EQ] = ACTIONS(1332), - [anon_sym_BANG_EQ] = ACTIONS(1332), - [anon_sym_LT2] = ACTIONS(1332), - [anon_sym_LT_EQ] = ACTIONS(1332), - [anon_sym_GT_EQ] = ACTIONS(1332), - [anon_sym_not_DASHin] = ACTIONS(1332), - [anon_sym_starts_DASHwith] = ACTIONS(1332), - [anon_sym_ends_DASHwith] = ACTIONS(1332), - [anon_sym_EQ_TILDE] = ACTIONS(1332), - [anon_sym_BANG_TILDE] = ACTIONS(1332), - [anon_sym_bit_DASHand] = ACTIONS(1332), - [anon_sym_bit_DASHxor] = ACTIONS(1332), - [anon_sym_bit_DASHor] = ACTIONS(1332), - [anon_sym_and] = ACTIONS(1332), - [anon_sym_xor] = ACTIONS(1332), - [anon_sym_or] = ACTIONS(1332), - [anon_sym_not] = ACTIONS(1332), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1332), - [anon_sym_DOT_DOT_LT] = ACTIONS(1332), - [anon_sym_null] = ACTIONS(1332), - [anon_sym_true] = ACTIONS(1332), - [anon_sym_false] = ACTIONS(1332), - [aux_sym__val_number_decimal_token1] = ACTIONS(1332), - [aux_sym__val_number_decimal_token2] = ACTIONS(1332), - [anon_sym_DOT2] = ACTIONS(1332), - [aux_sym__val_number_decimal_token3] = ACTIONS(1332), - [aux_sym__val_number_token1] = ACTIONS(1332), - [aux_sym__val_number_token2] = ACTIONS(1332), - [aux_sym__val_number_token3] = ACTIONS(1332), - [aux_sym__val_number_token4] = ACTIONS(1332), - [aux_sym__val_number_token5] = ACTIONS(1332), - [aux_sym__val_number_token6] = ACTIONS(1332), - [anon_sym_0b] = ACTIONS(1332), - [anon_sym_0o] = ACTIONS(1332), - [anon_sym_0x] = ACTIONS(1332), - [sym_val_date] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym__str_single_quotes] = ACTIONS(1332), - [sym__str_back_ticks] = ACTIONS(1332), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1332), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1332), - [anon_sym_CARET] = ACTIONS(1332), - [anon_sym_POUND] = ACTIONS(113), - }, - [748] = { - [sym_comment] = STATE(748), - [ts_builtin_sym_end] = ACTIONS(1338), - [anon_sym_export] = ACTIONS(1336), - [anon_sym_alias] = ACTIONS(1336), - [anon_sym_let] = ACTIONS(1336), - [anon_sym_let_DASHenv] = ACTIONS(1336), - [anon_sym_mut] = ACTIONS(1336), - [anon_sym_const] = ACTIONS(1336), - [anon_sym_SEMI] = ACTIONS(1336), - [sym_cmd_identifier] = ACTIONS(1336), - [anon_sym_LF] = ACTIONS(1338), - [anon_sym_def] = ACTIONS(1336), - [anon_sym_export_DASHenv] = ACTIONS(1336), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym_module] = ACTIONS(1336), - [anon_sym_use] = ACTIONS(1336), - [anon_sym_LBRACK] = ACTIONS(1336), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_DOLLAR] = ACTIONS(1336), - [anon_sym_error] = ACTIONS(1336), - [anon_sym_GT] = ACTIONS(1336), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_break] = ACTIONS(1336), - [anon_sym_continue] = ACTIONS(1336), - [anon_sym_for] = ACTIONS(1336), - [anon_sym_in] = ACTIONS(1336), - [anon_sym_loop] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1336), - [anon_sym_do] = ACTIONS(1336), - [anon_sym_if] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_DOT_DOT] = ACTIONS(1336), - [anon_sym_try] = ACTIONS(1336), - [anon_sym_return] = ACTIONS(1336), - [anon_sym_source] = ACTIONS(1336), - [anon_sym_source_DASHenv] = ACTIONS(1336), - [anon_sym_register] = ACTIONS(1336), - [anon_sym_hide] = ACTIONS(1336), - [anon_sym_hide_DASHenv] = ACTIONS(1336), - [anon_sym_overlay] = ACTIONS(1336), - [anon_sym_STAR] = ACTIONS(1336), - [anon_sym_where] = ACTIONS(1336), - [anon_sym_STAR_STAR] = ACTIONS(1336), - [anon_sym_PLUS_PLUS] = ACTIONS(1336), - [anon_sym_SLASH] = ACTIONS(1336), - [anon_sym_mod] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(1336), - [anon_sym_PLUS] = ACTIONS(1336), - [anon_sym_bit_DASHshl] = ACTIONS(1336), - [anon_sym_bit_DASHshr] = ACTIONS(1336), - [anon_sym_EQ_EQ] = ACTIONS(1336), - [anon_sym_BANG_EQ] = ACTIONS(1336), - [anon_sym_LT2] = ACTIONS(1336), - [anon_sym_LT_EQ] = ACTIONS(1336), - [anon_sym_GT_EQ] = ACTIONS(1336), - [anon_sym_not_DASHin] = ACTIONS(1336), - [anon_sym_starts_DASHwith] = ACTIONS(1336), - [anon_sym_ends_DASHwith] = ACTIONS(1336), - [anon_sym_EQ_TILDE] = ACTIONS(1336), - [anon_sym_BANG_TILDE] = ACTIONS(1336), - [anon_sym_bit_DASHand] = ACTIONS(1336), - [anon_sym_bit_DASHxor] = ACTIONS(1336), - [anon_sym_bit_DASHor] = ACTIONS(1336), - [anon_sym_and] = ACTIONS(1336), - [anon_sym_xor] = ACTIONS(1336), - [anon_sym_or] = ACTIONS(1336), - [anon_sym_not] = ACTIONS(1336), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1336), - [anon_sym_DOT_DOT_LT] = ACTIONS(1336), - [anon_sym_null] = ACTIONS(1336), - [anon_sym_true] = ACTIONS(1336), - [anon_sym_false] = ACTIONS(1336), - [aux_sym__val_number_decimal_token1] = ACTIONS(1336), - [aux_sym__val_number_decimal_token2] = ACTIONS(1336), - [anon_sym_DOT2] = ACTIONS(1336), - [aux_sym__val_number_decimal_token3] = ACTIONS(1336), - [aux_sym__val_number_token1] = ACTIONS(1336), - [aux_sym__val_number_token2] = ACTIONS(1336), - [aux_sym__val_number_token3] = ACTIONS(1336), - [aux_sym__val_number_token4] = ACTIONS(1336), - [aux_sym__val_number_token5] = ACTIONS(1336), - [aux_sym__val_number_token6] = ACTIONS(1336), - [anon_sym_0b] = ACTIONS(1336), - [anon_sym_0o] = ACTIONS(1336), - [anon_sym_0x] = ACTIONS(1336), - [sym_val_date] = ACTIONS(1336), - [anon_sym_DQUOTE] = ACTIONS(1336), - [sym__str_single_quotes] = ACTIONS(1336), - [sym__str_back_ticks] = ACTIONS(1336), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1336), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1336), - [anon_sym_CARET] = ACTIONS(1336), - [anon_sym_POUND] = ACTIONS(113), - }, - [749] = { - [sym_comment] = STATE(749), - [ts_builtin_sym_end] = ACTIONS(1249), - [anon_sym_export] = ACTIONS(1247), - [anon_sym_alias] = ACTIONS(1247), - [anon_sym_let] = ACTIONS(1247), - [anon_sym_let_DASHenv] = ACTIONS(1247), - [anon_sym_mut] = ACTIONS(1247), - [anon_sym_const] = ACTIONS(1247), - [anon_sym_SEMI] = ACTIONS(1247), - [sym_cmd_identifier] = ACTIONS(1247), - [anon_sym_LF] = ACTIONS(1249), - [anon_sym_def] = ACTIONS(1247), - [anon_sym_export_DASHenv] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1247), - [anon_sym_module] = ACTIONS(1247), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_LBRACK] = ACTIONS(1247), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_DOLLAR] = ACTIONS(1247), - [anon_sym_error] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1247), - [anon_sym_break] = ACTIONS(1247), - [anon_sym_continue] = ACTIONS(1247), - [anon_sym_for] = ACTIONS(1247), - [anon_sym_in] = ACTIONS(1247), - [anon_sym_loop] = ACTIONS(1247), - [anon_sym_while] = ACTIONS(1247), - [anon_sym_do] = ACTIONS(1247), - [anon_sym_if] = ACTIONS(1247), - [anon_sym_match] = ACTIONS(1247), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_DOT_DOT] = ACTIONS(1247), - [anon_sym_try] = ACTIONS(1247), - [anon_sym_return] = ACTIONS(1247), - [anon_sym_source] = ACTIONS(1247), - [anon_sym_source_DASHenv] = ACTIONS(1247), - [anon_sym_register] = ACTIONS(1247), - [anon_sym_hide] = ACTIONS(1247), - [anon_sym_hide_DASHenv] = ACTIONS(1247), - [anon_sym_overlay] = ACTIONS(1247), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_where] = ACTIONS(1247), - [anon_sym_STAR_STAR] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_mod] = ACTIONS(1247), - [anon_sym_SLASH_SLASH] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1247), - [anon_sym_bit_DASHshl] = ACTIONS(1247), - [anon_sym_bit_DASHshr] = ACTIONS(1247), - [anon_sym_EQ_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1247), - [anon_sym_LT2] = ACTIONS(1247), - [anon_sym_LT_EQ] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1247), - [anon_sym_not_DASHin] = ACTIONS(1247), - [anon_sym_starts_DASHwith] = ACTIONS(1247), - [anon_sym_ends_DASHwith] = ACTIONS(1247), - [anon_sym_EQ_TILDE] = ACTIONS(1247), - [anon_sym_BANG_TILDE] = ACTIONS(1247), - [anon_sym_bit_DASHand] = ACTIONS(1247), - [anon_sym_bit_DASHxor] = ACTIONS(1247), - [anon_sym_bit_DASHor] = ACTIONS(1247), - [anon_sym_and] = ACTIONS(1247), - [anon_sym_xor] = ACTIONS(1247), - [anon_sym_or] = ACTIONS(1247), - [anon_sym_not] = ACTIONS(1247), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1247), - [anon_sym_DOT_DOT_LT] = ACTIONS(1247), - [anon_sym_null] = ACTIONS(1247), - [anon_sym_true] = ACTIONS(1247), - [anon_sym_false] = ACTIONS(1247), - [aux_sym__val_number_decimal_token1] = ACTIONS(1247), - [aux_sym__val_number_decimal_token2] = ACTIONS(1247), - [anon_sym_DOT2] = ACTIONS(1247), - [aux_sym__val_number_decimal_token3] = ACTIONS(1247), - [aux_sym__val_number_token1] = ACTIONS(1247), - [aux_sym__val_number_token2] = ACTIONS(1247), - [aux_sym__val_number_token3] = ACTIONS(1247), - [aux_sym__val_number_token4] = ACTIONS(1247), - [aux_sym__val_number_token5] = ACTIONS(1247), - [aux_sym__val_number_token6] = ACTIONS(1247), - [anon_sym_0b] = ACTIONS(1247), - [anon_sym_0o] = ACTIONS(1247), - [anon_sym_0x] = ACTIONS(1247), - [sym_val_date] = ACTIONS(1247), - [anon_sym_DQUOTE] = ACTIONS(1247), - [sym__str_single_quotes] = ACTIONS(1247), - [sym__str_back_ticks] = ACTIONS(1247), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1247), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1247), - [anon_sym_CARET] = ACTIONS(1247), - [anon_sym_POUND] = ACTIONS(113), - }, - [750] = { - [sym_comment] = STATE(750), - [anon_sym_export] = ACTIONS(909), - [anon_sym_alias] = ACTIONS(909), - [anon_sym_let] = ACTIONS(909), - [anon_sym_let_DASHenv] = ACTIONS(909), - [anon_sym_mut] = ACTIONS(909), - [anon_sym_const] = ACTIONS(909), - [sym_cmd_identifier] = ACTIONS(909), - [anon_sym_def] = ACTIONS(909), - [anon_sym_export_DASHenv] = ACTIONS(909), - [anon_sym_extern] = ACTIONS(909), - [anon_sym_module] = ACTIONS(909), - [anon_sym_use] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_error] = ACTIONS(909), - [anon_sym_list] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_break] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_for] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_loop] = ACTIONS(909), - [anon_sym_make] = ACTIONS(909), - [anon_sym_while] = ACTIONS(909), - [anon_sym_do] = ACTIONS(909), - [anon_sym_if] = ACTIONS(909), - [anon_sym_else] = ACTIONS(909), - [anon_sym_match] = ACTIONS(909), - [anon_sym_RBRACE] = ACTIONS(909), - [anon_sym_try] = ACTIONS(909), - [anon_sym_catch] = ACTIONS(909), - [anon_sym_return] = ACTIONS(909), - [anon_sym_source] = ACTIONS(909), - [anon_sym_source_DASHenv] = ACTIONS(909), - [anon_sym_register] = ACTIONS(909), - [anon_sym_hide] = ACTIONS(909), - [anon_sym_hide_DASHenv] = ACTIONS(909), - [anon_sym_overlay] = ACTIONS(909), - [anon_sym_new] = ACTIONS(909), - [anon_sym_as] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(909), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(909), - [anon_sym_SLASH_SLASH] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(909), - [anon_sym_bit_DASHshr] = ACTIONS(909), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_not_DASHin] = ACTIONS(909), - [anon_sym_starts_DASHwith] = ACTIONS(909), - [anon_sym_ends_DASHwith] = ACTIONS(909), - [anon_sym_EQ_TILDE] = ACTIONS(909), - [anon_sym_BANG_TILDE] = ACTIONS(909), - [anon_sym_bit_DASHand] = ACTIONS(909), - [anon_sym_bit_DASHxor] = ACTIONS(909), - [anon_sym_bit_DASHor] = ACTIONS(909), - [anon_sym_and] = ACTIONS(909), - [anon_sym_xor] = ACTIONS(909), - [anon_sym_or] = ACTIONS(909), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [aux_sym__immediate_decimal_token1] = ACTIONS(1534), - [aux_sym__immediate_decimal_token2] = ACTIONS(1536), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(909), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(909), - [aux_sym__val_number_token1] = ACTIONS(909), - [aux_sym__val_number_token2] = ACTIONS(909), - [aux_sym__val_number_token3] = ACTIONS(909), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(909), - [aux_sym__val_number_token6] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym__str_single_quotes] = ACTIONS(909), - [sym__str_back_ticks] = ACTIONS(909), - [sym__entry_separator] = ACTIONS(911), - [aux_sym__record_key_token2] = ACTIONS(909), - [aux_sym_unquoted_token5] = ACTIONS(909), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1179), + [anon_sym_alias] = ACTIONS(1179), + [anon_sym_let] = ACTIONS(1179), + [anon_sym_let_DASHenv] = ACTIONS(1179), + [anon_sym_mut] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [sym_cmd_identifier] = ACTIONS(1179), + [anon_sym_def] = ACTIONS(1179), + [anon_sym_export_DASHenv] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_use] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_DOLLAR] = ACTIONS(1181), + [anon_sym_error] = ACTIONS(1179), + [anon_sym_list] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1562), + [anon_sym_DASH] = ACTIONS(1564), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1179), + [anon_sym_loop] = ACTIONS(1179), + [anon_sym_make] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_else] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1181), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_catch] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_source] = ACTIONS(1179), + [anon_sym_source_DASHenv] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), + [anon_sym_hide_DASHenv] = ACTIONS(1179), + [anon_sym_overlay] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1566), + [anon_sym_STAR_STAR] = ACTIONS(1568), + [anon_sym_PLUS_PLUS] = ACTIONS(1568), + [anon_sym_SLASH] = ACTIONS(1566), + [anon_sym_mod] = ACTIONS(1566), + [anon_sym_SLASH_SLASH] = ACTIONS(1570), + [anon_sym_PLUS] = ACTIONS(1564), + [anon_sym_bit_DASHshl] = ACTIONS(1572), + [anon_sym_bit_DASHshr] = ACTIONS(1572), + [anon_sym_EQ_EQ] = ACTIONS(1574), + [anon_sym_BANG_EQ] = ACTIONS(1574), + [anon_sym_LT2] = ACTIONS(1562), + [anon_sym_LT_EQ] = ACTIONS(1574), + [anon_sym_GT_EQ] = ACTIONS(1574), + [anon_sym_not_DASHin] = ACTIONS(1179), + [anon_sym_starts_DASHwith] = ACTIONS(1179), + [anon_sym_ends_DASHwith] = ACTIONS(1179), + [anon_sym_EQ_TILDE] = ACTIONS(1181), + [anon_sym_BANG_TILDE] = ACTIONS(1181), + [anon_sym_bit_DASHand] = ACTIONS(1179), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1181), + [anon_sym_DOT2] = ACTIONS(1181), + [aux_sym__val_number_decimal_token3] = ACTIONS(1181), + [aux_sym__val_number_token1] = ACTIONS(1181), + [aux_sym__val_number_token2] = ACTIONS(1181), + [aux_sym__val_number_token3] = ACTIONS(1181), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1181), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym__str_single_quotes] = ACTIONS(1181), + [sym__str_back_ticks] = ACTIONS(1181), + [aux_sym__record_key_token2] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(3), + }, + [747] = { + [sym_comment] = STATE(747), + [anon_sym_export] = ACTIONS(1179), + [anon_sym_alias] = ACTIONS(1179), + [anon_sym_let] = ACTIONS(1179), + [anon_sym_let_DASHenv] = ACTIONS(1179), + [anon_sym_mut] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [sym_cmd_identifier] = ACTIONS(1179), + [anon_sym_def] = ACTIONS(1179), + [anon_sym_export_DASHenv] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_use] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_DOLLAR] = ACTIONS(1181), + [anon_sym_error] = ACTIONS(1179), + [anon_sym_list] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1564), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1179), + [anon_sym_loop] = ACTIONS(1179), + [anon_sym_make] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_else] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1181), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_catch] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_source] = ACTIONS(1179), + [anon_sym_source_DASHenv] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), + [anon_sym_hide_DASHenv] = ACTIONS(1179), + [anon_sym_overlay] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1566), + [anon_sym_STAR_STAR] = ACTIONS(1568), + [anon_sym_PLUS_PLUS] = ACTIONS(1568), + [anon_sym_SLASH] = ACTIONS(1566), + [anon_sym_mod] = ACTIONS(1566), + [anon_sym_SLASH_SLASH] = ACTIONS(1570), + [anon_sym_PLUS] = ACTIONS(1564), + [anon_sym_bit_DASHshl] = ACTIONS(1179), + [anon_sym_bit_DASHshr] = ACTIONS(1179), + [anon_sym_EQ_EQ] = ACTIONS(1181), + [anon_sym_BANG_EQ] = ACTIONS(1181), + [anon_sym_LT2] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1181), + [anon_sym_GT_EQ] = ACTIONS(1181), + [anon_sym_not_DASHin] = ACTIONS(1179), + [anon_sym_starts_DASHwith] = ACTIONS(1179), + [anon_sym_ends_DASHwith] = ACTIONS(1179), + [anon_sym_EQ_TILDE] = ACTIONS(1181), + [anon_sym_BANG_TILDE] = ACTIONS(1181), + [anon_sym_bit_DASHand] = ACTIONS(1179), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1181), + [anon_sym_DOT2] = ACTIONS(1181), + [aux_sym__val_number_decimal_token3] = ACTIONS(1181), + [aux_sym__val_number_token1] = ACTIONS(1181), + [aux_sym__val_number_token2] = ACTIONS(1181), + [aux_sym__val_number_token3] = ACTIONS(1181), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1181), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym__str_single_quotes] = ACTIONS(1181), + [sym__str_back_ticks] = ACTIONS(1181), + [aux_sym__record_key_token2] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(3), + }, + [748] = { + [sym_comment] = STATE(748), + [anon_sym_export] = ACTIONS(1179), + [anon_sym_alias] = ACTIONS(1179), + [anon_sym_let] = ACTIONS(1179), + [anon_sym_let_DASHenv] = ACTIONS(1179), + [anon_sym_mut] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [sym_cmd_identifier] = ACTIONS(1179), + [anon_sym_def] = ACTIONS(1179), + [anon_sym_export_DASHenv] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_use] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_DOLLAR] = ACTIONS(1181), + [anon_sym_error] = ACTIONS(1179), + [anon_sym_list] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1562), + [anon_sym_DASH] = ACTIONS(1564), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1576), + [anon_sym_loop] = ACTIONS(1179), + [anon_sym_make] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_else] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1181), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_catch] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_source] = ACTIONS(1179), + [anon_sym_source_DASHenv] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), + [anon_sym_hide_DASHenv] = ACTIONS(1179), + [anon_sym_overlay] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1566), + [anon_sym_STAR_STAR] = ACTIONS(1568), + [anon_sym_PLUS_PLUS] = ACTIONS(1568), + [anon_sym_SLASH] = ACTIONS(1566), + [anon_sym_mod] = ACTIONS(1566), + [anon_sym_SLASH_SLASH] = ACTIONS(1570), + [anon_sym_PLUS] = ACTIONS(1564), + [anon_sym_bit_DASHshl] = ACTIONS(1572), + [anon_sym_bit_DASHshr] = ACTIONS(1572), + [anon_sym_EQ_EQ] = ACTIONS(1574), + [anon_sym_BANG_EQ] = ACTIONS(1574), + [anon_sym_LT2] = ACTIONS(1562), + [anon_sym_LT_EQ] = ACTIONS(1574), + [anon_sym_GT_EQ] = ACTIONS(1574), + [anon_sym_not_DASHin] = ACTIONS(1576), + [anon_sym_starts_DASHwith] = ACTIONS(1576), + [anon_sym_ends_DASHwith] = ACTIONS(1576), + [anon_sym_EQ_TILDE] = ACTIONS(1181), + [anon_sym_BANG_TILDE] = ACTIONS(1181), + [anon_sym_bit_DASHand] = ACTIONS(1179), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1181), + [anon_sym_DOT2] = ACTIONS(1181), + [aux_sym__val_number_decimal_token3] = ACTIONS(1181), + [aux_sym__val_number_token1] = ACTIONS(1181), + [aux_sym__val_number_token2] = ACTIONS(1181), + [aux_sym__val_number_token3] = ACTIONS(1181), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1181), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym__str_single_quotes] = ACTIONS(1181), + [sym__str_back_ticks] = ACTIONS(1181), + [aux_sym__record_key_token2] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(3), + }, + [749] = { + [sym_comment] = STATE(749), + [anon_sym_export] = ACTIONS(1179), + [anon_sym_alias] = ACTIONS(1179), + [anon_sym_let] = ACTIONS(1179), + [anon_sym_let_DASHenv] = ACTIONS(1179), + [anon_sym_mut] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [sym_cmd_identifier] = ACTIONS(1179), + [anon_sym_def] = ACTIONS(1179), + [anon_sym_export_DASHenv] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_use] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_DOLLAR] = ACTIONS(1181), + [anon_sym_error] = ACTIONS(1179), + [anon_sym_list] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1179), + [anon_sym_loop] = ACTIONS(1179), + [anon_sym_make] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_else] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1181), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_catch] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_source] = ACTIONS(1179), + [anon_sym_source_DASHenv] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), + [anon_sym_hide_DASHenv] = ACTIONS(1179), + [anon_sym_overlay] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1566), + [anon_sym_STAR_STAR] = ACTIONS(1568), + [anon_sym_PLUS_PLUS] = ACTIONS(1568), + [anon_sym_SLASH] = ACTIONS(1566), + [anon_sym_mod] = ACTIONS(1566), + [anon_sym_SLASH_SLASH] = ACTIONS(1570), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_bit_DASHshl] = ACTIONS(1179), + [anon_sym_bit_DASHshr] = ACTIONS(1179), + [anon_sym_EQ_EQ] = ACTIONS(1181), + [anon_sym_BANG_EQ] = ACTIONS(1181), + [anon_sym_LT2] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1181), + [anon_sym_GT_EQ] = ACTIONS(1181), + [anon_sym_not_DASHin] = ACTIONS(1179), + [anon_sym_starts_DASHwith] = ACTIONS(1179), + [anon_sym_ends_DASHwith] = ACTIONS(1179), + [anon_sym_EQ_TILDE] = ACTIONS(1181), + [anon_sym_BANG_TILDE] = ACTIONS(1181), + [anon_sym_bit_DASHand] = ACTIONS(1179), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1181), + [anon_sym_DOT2] = ACTIONS(1181), + [aux_sym__val_number_decimal_token3] = ACTIONS(1181), + [aux_sym__val_number_token1] = ACTIONS(1181), + [aux_sym__val_number_token2] = ACTIONS(1181), + [aux_sym__val_number_token3] = ACTIONS(1181), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1181), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym__str_single_quotes] = ACTIONS(1181), + [sym__str_back_ticks] = ACTIONS(1181), + [aux_sym__record_key_token2] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(3), + }, + [750] = { + [sym_comment] = STATE(750), + [anon_sym_export] = ACTIONS(1179), + [anon_sym_alias] = ACTIONS(1179), + [anon_sym_let] = ACTIONS(1179), + [anon_sym_let_DASHenv] = ACTIONS(1179), + [anon_sym_mut] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [sym_cmd_identifier] = ACTIONS(1179), + [anon_sym_def] = ACTIONS(1179), + [anon_sym_export_DASHenv] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_use] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_DOLLAR] = ACTIONS(1181), + [anon_sym_error] = ACTIONS(1179), + [anon_sym_list] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1179), + [anon_sym_loop] = ACTIONS(1179), + [anon_sym_make] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_else] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1181), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_catch] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_source] = ACTIONS(1179), + [anon_sym_source_DASHenv] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), + [anon_sym_hide_DASHenv] = ACTIONS(1179), + [anon_sym_overlay] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1179), + [anon_sym_STAR_STAR] = ACTIONS(1568), + [anon_sym_PLUS_PLUS] = ACTIONS(1568), + [anon_sym_SLASH] = ACTIONS(1179), + [anon_sym_mod] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_bit_DASHshl] = ACTIONS(1179), + [anon_sym_bit_DASHshr] = ACTIONS(1179), + [anon_sym_EQ_EQ] = ACTIONS(1181), + [anon_sym_BANG_EQ] = ACTIONS(1181), + [anon_sym_LT2] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1181), + [anon_sym_GT_EQ] = ACTIONS(1181), + [anon_sym_not_DASHin] = ACTIONS(1179), + [anon_sym_starts_DASHwith] = ACTIONS(1179), + [anon_sym_ends_DASHwith] = ACTIONS(1179), + [anon_sym_EQ_TILDE] = ACTIONS(1181), + [anon_sym_BANG_TILDE] = ACTIONS(1181), + [anon_sym_bit_DASHand] = ACTIONS(1179), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1181), + [anon_sym_DOT2] = ACTIONS(1181), + [aux_sym__val_number_decimal_token3] = ACTIONS(1181), + [aux_sym__val_number_token1] = ACTIONS(1181), + [aux_sym__val_number_token2] = ACTIONS(1181), + [aux_sym__val_number_token3] = ACTIONS(1181), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1181), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym__str_single_quotes] = ACTIONS(1181), + [sym__str_back_ticks] = ACTIONS(1181), + [aux_sym__record_key_token2] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(3), }, [751] = { [sym_comment] = STATE(751), - [anon_sym_export] = ACTIONS(923), - [anon_sym_alias] = ACTIONS(923), - [anon_sym_let] = ACTIONS(923), - [anon_sym_let_DASHenv] = ACTIONS(923), - [anon_sym_mut] = ACTIONS(923), - [anon_sym_const] = ACTIONS(923), - [sym_cmd_identifier] = ACTIONS(923), - [anon_sym_def] = ACTIONS(923), - [anon_sym_export_DASHenv] = ACTIONS(923), - [anon_sym_extern] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_use] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_DOLLAR] = ACTIONS(923), - [anon_sym_error] = ACTIONS(923), - [anon_sym_list] = ACTIONS(923), - [anon_sym_GT] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_break] = ACTIONS(923), - [anon_sym_continue] = ACTIONS(923), - [anon_sym_for] = ACTIONS(923), - [anon_sym_in] = ACTIONS(923), - [anon_sym_loop] = ACTIONS(923), - [anon_sym_make] = ACTIONS(923), - [anon_sym_while] = ACTIONS(923), - [anon_sym_do] = ACTIONS(923), - [anon_sym_if] = ACTIONS(923), - [anon_sym_else] = ACTIONS(923), - [anon_sym_match] = ACTIONS(923), - [anon_sym_RBRACE] = ACTIONS(923), - [anon_sym_try] = ACTIONS(923), - [anon_sym_catch] = ACTIONS(923), - [anon_sym_return] = ACTIONS(923), - [anon_sym_source] = ACTIONS(923), - [anon_sym_source_DASHenv] = ACTIONS(923), - [anon_sym_register] = ACTIONS(923), - [anon_sym_hide] = ACTIONS(923), - [anon_sym_hide_DASHenv] = ACTIONS(923), - [anon_sym_overlay] = ACTIONS(923), - [anon_sym_new] = ACTIONS(923), - [anon_sym_as] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_STAR_STAR] = ACTIONS(923), - [anon_sym_PLUS_PLUS] = ACTIONS(923), - [anon_sym_SLASH] = ACTIONS(923), - [anon_sym_mod] = ACTIONS(923), - [anon_sym_SLASH_SLASH] = ACTIONS(923), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_bit_DASHshl] = ACTIONS(923), - [anon_sym_bit_DASHshr] = ACTIONS(923), - [anon_sym_EQ_EQ] = ACTIONS(923), - [anon_sym_BANG_EQ] = ACTIONS(923), - [anon_sym_LT2] = ACTIONS(923), - [anon_sym_LT_EQ] = ACTIONS(923), - [anon_sym_GT_EQ] = ACTIONS(923), - [anon_sym_not_DASHin] = ACTIONS(923), - [anon_sym_starts_DASHwith] = ACTIONS(923), - [anon_sym_ends_DASHwith] = ACTIONS(923), - [anon_sym_EQ_TILDE] = ACTIONS(923), - [anon_sym_BANG_TILDE] = ACTIONS(923), - [anon_sym_bit_DASHand] = ACTIONS(923), - [anon_sym_bit_DASHxor] = ACTIONS(923), - [anon_sym_bit_DASHor] = ACTIONS(923), - [anon_sym_and] = ACTIONS(923), - [anon_sym_xor] = ACTIONS(923), - [anon_sym_or] = ACTIONS(923), - [anon_sym_DOT_DOT2] = ACTIONS(923), - [anon_sym_DOT] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(925), - [anon_sym_DOT_DOT_LT2] = ACTIONS(925), - [aux_sym__immediate_decimal_token2] = ACTIONS(1538), - [aux_sym__val_number_decimal_token1] = ACTIONS(923), - [aux_sym__val_number_decimal_token2] = ACTIONS(923), - [anon_sym_DOT2] = ACTIONS(923), - [aux_sym__val_number_decimal_token3] = ACTIONS(923), - [aux_sym__val_number_token1] = ACTIONS(923), - [aux_sym__val_number_token2] = ACTIONS(923), - [aux_sym__val_number_token3] = ACTIONS(923), - [aux_sym__val_number_token4] = ACTIONS(923), - [aux_sym__val_number_token5] = ACTIONS(923), - [aux_sym__val_number_token6] = ACTIONS(923), - [sym_filesize_unit] = ACTIONS(923), - [sym_duration_unit] = ACTIONS(923), - [anon_sym_DQUOTE] = ACTIONS(923), - [sym__str_single_quotes] = ACTIONS(923), - [sym__str_back_ticks] = ACTIONS(923), - [sym__entry_separator] = ACTIONS(925), - [aux_sym__record_key_token2] = ACTIONS(923), - [aux_sym_unquoted_token5] = ACTIONS(923), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1179), + [anon_sym_alias] = ACTIONS(1179), + [anon_sym_let] = ACTIONS(1179), + [anon_sym_let_DASHenv] = ACTIONS(1179), + [anon_sym_mut] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [sym_cmd_identifier] = ACTIONS(1179), + [anon_sym_def] = ACTIONS(1179), + [anon_sym_export_DASHenv] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_use] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_DOLLAR] = ACTIONS(1181), + [anon_sym_error] = ACTIONS(1179), + [anon_sym_list] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1564), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1179), + [anon_sym_loop] = ACTIONS(1179), + [anon_sym_make] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_else] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1181), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_catch] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_source] = ACTIONS(1179), + [anon_sym_source_DASHenv] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), + [anon_sym_hide_DASHenv] = ACTIONS(1179), + [anon_sym_overlay] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1566), + [anon_sym_STAR_STAR] = ACTIONS(1568), + [anon_sym_PLUS_PLUS] = ACTIONS(1568), + [anon_sym_SLASH] = ACTIONS(1566), + [anon_sym_mod] = ACTIONS(1566), + [anon_sym_SLASH_SLASH] = ACTIONS(1570), + [anon_sym_PLUS] = ACTIONS(1564), + [anon_sym_bit_DASHshl] = ACTIONS(1572), + [anon_sym_bit_DASHshr] = ACTIONS(1572), + [anon_sym_EQ_EQ] = ACTIONS(1181), + [anon_sym_BANG_EQ] = ACTIONS(1181), + [anon_sym_LT2] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1181), + [anon_sym_GT_EQ] = ACTIONS(1181), + [anon_sym_not_DASHin] = ACTIONS(1179), + [anon_sym_starts_DASHwith] = ACTIONS(1179), + [anon_sym_ends_DASHwith] = ACTIONS(1179), + [anon_sym_EQ_TILDE] = ACTIONS(1181), + [anon_sym_BANG_TILDE] = ACTIONS(1181), + [anon_sym_bit_DASHand] = ACTIONS(1179), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1181), + [anon_sym_DOT2] = ACTIONS(1181), + [aux_sym__val_number_decimal_token3] = ACTIONS(1181), + [aux_sym__val_number_token1] = ACTIONS(1181), + [aux_sym__val_number_token2] = ACTIONS(1181), + [aux_sym__val_number_token3] = ACTIONS(1181), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1181), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym__str_single_quotes] = ACTIONS(1181), + [sym__str_back_ticks] = ACTIONS(1181), + [aux_sym__record_key_token2] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(3), }, [752] = { [sym_comment] = STATE(752), - [anon_sym_export] = ACTIONS(909), - [anon_sym_alias] = ACTIONS(909), - [anon_sym_let] = ACTIONS(909), - [anon_sym_let_DASHenv] = ACTIONS(909), - [anon_sym_mut] = ACTIONS(909), - [anon_sym_const] = ACTIONS(909), - [sym_cmd_identifier] = ACTIONS(909), - [anon_sym_def] = ACTIONS(909), - [anon_sym_export_DASHenv] = ACTIONS(909), - [anon_sym_extern] = ACTIONS(909), - [anon_sym_module] = ACTIONS(909), - [anon_sym_use] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(911), - [anon_sym_DOLLAR] = ACTIONS(911), - [anon_sym_error] = ACTIONS(909), - [anon_sym_list] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_break] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_for] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_loop] = ACTIONS(909), - [anon_sym_make] = ACTIONS(909), - [anon_sym_while] = ACTIONS(909), - [anon_sym_do] = ACTIONS(909), - [anon_sym_if] = ACTIONS(909), - [anon_sym_else] = ACTIONS(909), - [anon_sym_match] = ACTIONS(909), - [anon_sym_RBRACE] = ACTIONS(911), - [anon_sym_try] = ACTIONS(909), - [anon_sym_catch] = ACTIONS(909), - [anon_sym_return] = ACTIONS(909), - [anon_sym_source] = ACTIONS(909), - [anon_sym_source_DASHenv] = ACTIONS(909), - [anon_sym_register] = ACTIONS(909), - [anon_sym_hide] = ACTIONS(909), - [anon_sym_hide_DASHenv] = ACTIONS(909), - [anon_sym_overlay] = ACTIONS(909), - [anon_sym_new] = ACTIONS(909), - [anon_sym_as] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(911), - [anon_sym_PLUS_PLUS] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(909), - [anon_sym_SLASH_SLASH] = ACTIONS(911), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(909), - [anon_sym_bit_DASHshr] = ACTIONS(909), - [anon_sym_EQ_EQ] = ACTIONS(911), - [anon_sym_BANG_EQ] = ACTIONS(911), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(911), - [anon_sym_GT_EQ] = ACTIONS(911), - [anon_sym_not_DASHin] = ACTIONS(909), - [anon_sym_starts_DASHwith] = ACTIONS(909), - [anon_sym_ends_DASHwith] = ACTIONS(909), - [anon_sym_EQ_TILDE] = ACTIONS(911), - [anon_sym_BANG_TILDE] = ACTIONS(911), - [anon_sym_bit_DASHand] = ACTIONS(909), - [anon_sym_bit_DASHxor] = ACTIONS(909), - [anon_sym_bit_DASHor] = ACTIONS(909), - [anon_sym_and] = ACTIONS(909), - [anon_sym_xor] = ACTIONS(909), - [anon_sym_or] = ACTIONS(909), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [aux_sym__immediate_decimal_token1] = ACTIONS(1540), - [aux_sym__immediate_decimal_token2] = ACTIONS(1542), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(911), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(911), - [aux_sym__val_number_token1] = ACTIONS(911), - [aux_sym__val_number_token2] = ACTIONS(911), - [aux_sym__val_number_token3] = ACTIONS(911), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(911), - [aux_sym__val_number_token6] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(911), - [sym__str_single_quotes] = ACTIONS(911), - [sym__str_back_ticks] = ACTIONS(911), - [aux_sym__record_key_token2] = ACTIONS(909), - [aux_sym_unquoted_token5] = ACTIONS(909), + [anon_sym_export] = ACTIONS(1179), + [anon_sym_alias] = ACTIONS(1179), + [anon_sym_let] = ACTIONS(1179), + [anon_sym_let_DASHenv] = ACTIONS(1179), + [anon_sym_mut] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [sym_cmd_identifier] = ACTIONS(1179), + [anon_sym_def] = ACTIONS(1179), + [anon_sym_export_DASHenv] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_use] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_DOLLAR] = ACTIONS(1181), + [anon_sym_error] = ACTIONS(1179), + [anon_sym_list] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1562), + [anon_sym_DASH] = ACTIONS(1564), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1576), + [anon_sym_loop] = ACTIONS(1179), + [anon_sym_make] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_else] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1181), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_catch] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_source] = ACTIONS(1179), + [anon_sym_source_DASHenv] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), + [anon_sym_hide_DASHenv] = ACTIONS(1179), + [anon_sym_overlay] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1566), + [anon_sym_STAR_STAR] = ACTIONS(1568), + [anon_sym_PLUS_PLUS] = ACTIONS(1568), + [anon_sym_SLASH] = ACTIONS(1566), + [anon_sym_mod] = ACTIONS(1566), + [anon_sym_SLASH_SLASH] = ACTIONS(1570), + [anon_sym_PLUS] = ACTIONS(1564), + [anon_sym_bit_DASHshl] = ACTIONS(1572), + [anon_sym_bit_DASHshr] = ACTIONS(1572), + [anon_sym_EQ_EQ] = ACTIONS(1574), + [anon_sym_BANG_EQ] = ACTIONS(1574), + [anon_sym_LT2] = ACTIONS(1562), + [anon_sym_LT_EQ] = ACTIONS(1574), + [anon_sym_GT_EQ] = ACTIONS(1574), + [anon_sym_not_DASHin] = ACTIONS(1576), + [anon_sym_starts_DASHwith] = ACTIONS(1576), + [anon_sym_ends_DASHwith] = ACTIONS(1576), + [anon_sym_EQ_TILDE] = ACTIONS(1578), + [anon_sym_BANG_TILDE] = ACTIONS(1578), + [anon_sym_bit_DASHand] = ACTIONS(1179), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1181), + [anon_sym_DOT2] = ACTIONS(1181), + [aux_sym__val_number_decimal_token3] = ACTIONS(1181), + [aux_sym__val_number_token1] = ACTIONS(1181), + [aux_sym__val_number_token2] = ACTIONS(1181), + [aux_sym__val_number_token3] = ACTIONS(1181), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1181), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym__str_single_quotes] = ACTIONS(1181), + [sym__str_back_ticks] = ACTIONS(1181), + [aux_sym__record_key_token2] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(3), }, [753] = { [sym_comment] = STATE(753), - [anon_sym_export] = ACTIONS(909), - [anon_sym_alias] = ACTIONS(909), - [anon_sym_let] = ACTIONS(909), - [anon_sym_let_DASHenv] = ACTIONS(909), - [anon_sym_mut] = ACTIONS(909), - [anon_sym_const] = ACTIONS(909), - [sym_cmd_identifier] = ACTIONS(909), - [anon_sym_def] = ACTIONS(909), - [anon_sym_export_DASHenv] = ACTIONS(909), - [anon_sym_extern] = ACTIONS(909), - [anon_sym_module] = ACTIONS(909), - [anon_sym_use] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_error] = ACTIONS(909), - [anon_sym_list] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_break] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_for] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_loop] = ACTIONS(909), - [anon_sym_make] = ACTIONS(909), - [anon_sym_while] = ACTIONS(909), - [anon_sym_do] = ACTIONS(909), - [anon_sym_if] = ACTIONS(909), - [anon_sym_else] = ACTIONS(909), - [anon_sym_match] = ACTIONS(909), - [anon_sym_RBRACE] = ACTIONS(909), - [anon_sym_try] = ACTIONS(909), - [anon_sym_catch] = ACTIONS(909), - [anon_sym_return] = ACTIONS(909), - [anon_sym_source] = ACTIONS(909), - [anon_sym_source_DASHenv] = ACTIONS(909), - [anon_sym_register] = ACTIONS(909), - [anon_sym_hide] = ACTIONS(909), - [anon_sym_hide_DASHenv] = ACTIONS(909), - [anon_sym_overlay] = ACTIONS(909), - [anon_sym_new] = ACTIONS(909), - [anon_sym_as] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(909), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(909), - [anon_sym_SLASH_SLASH] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(909), - [anon_sym_bit_DASHshr] = ACTIONS(909), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_not_DASHin] = ACTIONS(909), - [anon_sym_starts_DASHwith] = ACTIONS(909), - [anon_sym_ends_DASHwith] = ACTIONS(909), - [anon_sym_EQ_TILDE] = ACTIONS(909), - [anon_sym_BANG_TILDE] = ACTIONS(909), - [anon_sym_bit_DASHand] = ACTIONS(909), - [anon_sym_bit_DASHxor] = ACTIONS(909), - [anon_sym_bit_DASHor] = ACTIONS(909), - [anon_sym_and] = ACTIONS(909), - [anon_sym_xor] = ACTIONS(909), - [anon_sym_or] = ACTIONS(909), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [aux_sym__immediate_decimal_token2] = ACTIONS(1536), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(909), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(909), - [aux_sym__val_number_token1] = ACTIONS(909), - [aux_sym__val_number_token2] = ACTIONS(909), - [aux_sym__val_number_token3] = ACTIONS(909), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(909), - [aux_sym__val_number_token6] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym__str_single_quotes] = ACTIONS(909), - [sym__str_back_ticks] = ACTIONS(909), - [sym__entry_separator] = ACTIONS(911), - [aux_sym__record_key_token2] = ACTIONS(909), - [aux_sym_unquoted_token5] = ACTIONS(909), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1179), + [anon_sym_alias] = ACTIONS(1179), + [anon_sym_let] = ACTIONS(1179), + [anon_sym_let_DASHenv] = ACTIONS(1179), + [anon_sym_mut] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [sym_cmd_identifier] = ACTIONS(1179), + [anon_sym_def] = ACTIONS(1179), + [anon_sym_export_DASHenv] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_use] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_DOLLAR] = ACTIONS(1181), + [anon_sym_error] = ACTIONS(1179), + [anon_sym_list] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1562), + [anon_sym_DASH] = ACTIONS(1564), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1576), + [anon_sym_loop] = ACTIONS(1179), + [anon_sym_make] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_else] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1181), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_catch] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_source] = ACTIONS(1179), + [anon_sym_source_DASHenv] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), + [anon_sym_hide_DASHenv] = ACTIONS(1179), + [anon_sym_overlay] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1566), + [anon_sym_STAR_STAR] = ACTIONS(1568), + [anon_sym_PLUS_PLUS] = ACTIONS(1568), + [anon_sym_SLASH] = ACTIONS(1566), + [anon_sym_mod] = ACTIONS(1566), + [anon_sym_SLASH_SLASH] = ACTIONS(1570), + [anon_sym_PLUS] = ACTIONS(1564), + [anon_sym_bit_DASHshl] = ACTIONS(1572), + [anon_sym_bit_DASHshr] = ACTIONS(1572), + [anon_sym_EQ_EQ] = ACTIONS(1574), + [anon_sym_BANG_EQ] = ACTIONS(1574), + [anon_sym_LT2] = ACTIONS(1562), + [anon_sym_LT_EQ] = ACTIONS(1574), + [anon_sym_GT_EQ] = ACTIONS(1574), + [anon_sym_not_DASHin] = ACTIONS(1576), + [anon_sym_starts_DASHwith] = ACTIONS(1576), + [anon_sym_ends_DASHwith] = ACTIONS(1576), + [anon_sym_EQ_TILDE] = ACTIONS(1578), + [anon_sym_BANG_TILDE] = ACTIONS(1578), + [anon_sym_bit_DASHand] = ACTIONS(1580), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1181), + [anon_sym_DOT2] = ACTIONS(1181), + [aux_sym__val_number_decimal_token3] = ACTIONS(1181), + [aux_sym__val_number_token1] = ACTIONS(1181), + [aux_sym__val_number_token2] = ACTIONS(1181), + [aux_sym__val_number_token3] = ACTIONS(1181), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1181), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym__str_single_quotes] = ACTIONS(1181), + [sym__str_back_ticks] = ACTIONS(1181), + [aux_sym__record_key_token2] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(3), }, [754] = { [sym_comment] = STATE(754), - [anon_sym_export] = ACTIONS(917), - [anon_sym_alias] = ACTIONS(917), - [anon_sym_let] = ACTIONS(917), - [anon_sym_let_DASHenv] = ACTIONS(917), - [anon_sym_mut] = ACTIONS(917), - [anon_sym_const] = ACTIONS(917), - [sym_cmd_identifier] = ACTIONS(917), - [anon_sym_def] = ACTIONS(917), - [anon_sym_export_DASHenv] = ACTIONS(917), - [anon_sym_extern] = ACTIONS(917), - [anon_sym_module] = ACTIONS(917), - [anon_sym_use] = ACTIONS(917), - [anon_sym_LPAREN] = ACTIONS(917), - [anon_sym_DOLLAR] = ACTIONS(917), - [anon_sym_error] = ACTIONS(917), - [anon_sym_list] = ACTIONS(917), - [anon_sym_GT] = ACTIONS(917), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_break] = ACTIONS(917), - [anon_sym_continue] = ACTIONS(917), - [anon_sym_for] = ACTIONS(917), - [anon_sym_in] = ACTIONS(917), - [anon_sym_loop] = ACTIONS(917), - [anon_sym_make] = ACTIONS(917), - [anon_sym_while] = ACTIONS(917), - [anon_sym_do] = ACTIONS(917), - [anon_sym_if] = ACTIONS(917), - [anon_sym_else] = ACTIONS(917), - [anon_sym_match] = ACTIONS(917), - [anon_sym_RBRACE] = ACTIONS(917), - [anon_sym_try] = ACTIONS(917), - [anon_sym_catch] = ACTIONS(917), - [anon_sym_return] = ACTIONS(917), - [anon_sym_source] = ACTIONS(917), - [anon_sym_source_DASHenv] = ACTIONS(917), - [anon_sym_register] = ACTIONS(917), - [anon_sym_hide] = ACTIONS(917), - [anon_sym_hide_DASHenv] = ACTIONS(917), - [anon_sym_overlay] = ACTIONS(917), - [anon_sym_new] = ACTIONS(917), - [anon_sym_as] = ACTIONS(917), - [anon_sym_STAR] = ACTIONS(917), - [anon_sym_STAR_STAR] = ACTIONS(917), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_mod] = ACTIONS(917), - [anon_sym_SLASH_SLASH] = ACTIONS(917), - [anon_sym_PLUS] = ACTIONS(917), - [anon_sym_bit_DASHshl] = ACTIONS(917), - [anon_sym_bit_DASHshr] = ACTIONS(917), - [anon_sym_EQ_EQ] = ACTIONS(917), - [anon_sym_BANG_EQ] = ACTIONS(917), - [anon_sym_LT2] = ACTIONS(917), - [anon_sym_LT_EQ] = ACTIONS(917), - [anon_sym_GT_EQ] = ACTIONS(917), - [anon_sym_not_DASHin] = ACTIONS(917), - [anon_sym_starts_DASHwith] = ACTIONS(917), - [anon_sym_ends_DASHwith] = ACTIONS(917), - [anon_sym_EQ_TILDE] = ACTIONS(917), - [anon_sym_BANG_TILDE] = ACTIONS(917), - [anon_sym_bit_DASHand] = ACTIONS(917), - [anon_sym_bit_DASHxor] = ACTIONS(917), - [anon_sym_bit_DASHor] = ACTIONS(917), - [anon_sym_and] = ACTIONS(917), - [anon_sym_xor] = ACTIONS(917), - [anon_sym_or] = ACTIONS(917), - [anon_sym_DOT_DOT2] = ACTIONS(917), - [anon_sym_DOT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(919), - [anon_sym_DOT_DOT_LT2] = ACTIONS(919), - [aux_sym__immediate_decimal_token2] = ACTIONS(1544), - [aux_sym__val_number_decimal_token1] = ACTIONS(917), - [aux_sym__val_number_decimal_token2] = ACTIONS(917), - [anon_sym_DOT2] = ACTIONS(917), - [aux_sym__val_number_decimal_token3] = ACTIONS(917), - [aux_sym__val_number_token1] = ACTIONS(917), - [aux_sym__val_number_token2] = ACTIONS(917), - [aux_sym__val_number_token3] = ACTIONS(917), - [aux_sym__val_number_token4] = ACTIONS(917), - [aux_sym__val_number_token5] = ACTIONS(917), - [aux_sym__val_number_token6] = ACTIONS(917), - [sym_filesize_unit] = ACTIONS(917), - [sym_duration_unit] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(917), - [sym__str_single_quotes] = ACTIONS(917), - [sym__str_back_ticks] = ACTIONS(917), - [sym__entry_separator] = ACTIONS(919), - [aux_sym__record_key_token2] = ACTIONS(917), - [aux_sym_unquoted_token5] = ACTIONS(917), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1179), + [anon_sym_alias] = ACTIONS(1179), + [anon_sym_let] = ACTIONS(1179), + [anon_sym_let_DASHenv] = ACTIONS(1179), + [anon_sym_mut] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [sym_cmd_identifier] = ACTIONS(1179), + [anon_sym_def] = ACTIONS(1179), + [anon_sym_export_DASHenv] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_use] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_DOLLAR] = ACTIONS(1181), + [anon_sym_error] = ACTIONS(1179), + [anon_sym_list] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1562), + [anon_sym_DASH] = ACTIONS(1564), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1576), + [anon_sym_loop] = ACTIONS(1179), + [anon_sym_make] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_else] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1181), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_catch] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_source] = ACTIONS(1179), + [anon_sym_source_DASHenv] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), + [anon_sym_hide_DASHenv] = ACTIONS(1179), + [anon_sym_overlay] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1566), + [anon_sym_STAR_STAR] = ACTIONS(1568), + [anon_sym_PLUS_PLUS] = ACTIONS(1568), + [anon_sym_SLASH] = ACTIONS(1566), + [anon_sym_mod] = ACTIONS(1566), + [anon_sym_SLASH_SLASH] = ACTIONS(1570), + [anon_sym_PLUS] = ACTIONS(1564), + [anon_sym_bit_DASHshl] = ACTIONS(1572), + [anon_sym_bit_DASHshr] = ACTIONS(1572), + [anon_sym_EQ_EQ] = ACTIONS(1574), + [anon_sym_BANG_EQ] = ACTIONS(1574), + [anon_sym_LT2] = ACTIONS(1562), + [anon_sym_LT_EQ] = ACTIONS(1574), + [anon_sym_GT_EQ] = ACTIONS(1574), + [anon_sym_not_DASHin] = ACTIONS(1576), + [anon_sym_starts_DASHwith] = ACTIONS(1576), + [anon_sym_ends_DASHwith] = ACTIONS(1576), + [anon_sym_EQ_TILDE] = ACTIONS(1578), + [anon_sym_BANG_TILDE] = ACTIONS(1578), + [anon_sym_bit_DASHand] = ACTIONS(1580), + [anon_sym_bit_DASHxor] = ACTIONS(1582), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1181), + [anon_sym_DOT2] = ACTIONS(1181), + [aux_sym__val_number_decimal_token3] = ACTIONS(1181), + [aux_sym__val_number_token1] = ACTIONS(1181), + [aux_sym__val_number_token2] = ACTIONS(1181), + [aux_sym__val_number_token3] = ACTIONS(1181), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1181), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym__str_single_quotes] = ACTIONS(1181), + [sym__str_back_ticks] = ACTIONS(1181), + [aux_sym__record_key_token2] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(3), }, [755] = { [sym_comment] = STATE(755), - [anon_sym_export] = ACTIONS(923), - [anon_sym_alias] = ACTIONS(923), - [anon_sym_let] = ACTIONS(923), - [anon_sym_let_DASHenv] = ACTIONS(923), - [anon_sym_mut] = ACTIONS(923), - [anon_sym_const] = ACTIONS(923), - [sym_cmd_identifier] = ACTIONS(923), - [anon_sym_def] = ACTIONS(923), - [anon_sym_export_DASHenv] = ACTIONS(923), - [anon_sym_extern] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_use] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_DOLLAR] = ACTIONS(923), - [anon_sym_error] = ACTIONS(923), - [anon_sym_list] = ACTIONS(923), - [anon_sym_GT] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_break] = ACTIONS(923), - [anon_sym_continue] = ACTIONS(923), - [anon_sym_for] = ACTIONS(923), - [anon_sym_in] = ACTIONS(923), - [anon_sym_loop] = ACTIONS(923), - [anon_sym_make] = ACTIONS(923), - [anon_sym_while] = ACTIONS(923), - [anon_sym_do] = ACTIONS(923), - [anon_sym_if] = ACTIONS(923), - [anon_sym_else] = ACTIONS(923), - [anon_sym_match] = ACTIONS(923), - [anon_sym_RBRACE] = ACTIONS(923), - [anon_sym_try] = ACTIONS(923), - [anon_sym_catch] = ACTIONS(923), - [anon_sym_return] = ACTIONS(923), - [anon_sym_source] = ACTIONS(923), - [anon_sym_source_DASHenv] = ACTIONS(923), - [anon_sym_register] = ACTIONS(923), - [anon_sym_hide] = ACTIONS(923), - [anon_sym_hide_DASHenv] = ACTIONS(923), - [anon_sym_overlay] = ACTIONS(923), - [anon_sym_new] = ACTIONS(923), - [anon_sym_as] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_STAR_STAR] = ACTIONS(923), - [anon_sym_PLUS_PLUS] = ACTIONS(923), - [anon_sym_SLASH] = ACTIONS(923), - [anon_sym_mod] = ACTIONS(923), - [anon_sym_SLASH_SLASH] = ACTIONS(923), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_bit_DASHshl] = ACTIONS(923), - [anon_sym_bit_DASHshr] = ACTIONS(923), - [anon_sym_EQ_EQ] = ACTIONS(923), - [anon_sym_BANG_EQ] = ACTIONS(923), - [anon_sym_LT2] = ACTIONS(923), - [anon_sym_LT_EQ] = ACTIONS(923), - [anon_sym_GT_EQ] = ACTIONS(923), - [anon_sym_not_DASHin] = ACTIONS(923), - [anon_sym_starts_DASHwith] = ACTIONS(923), - [anon_sym_ends_DASHwith] = ACTIONS(923), - [anon_sym_EQ_TILDE] = ACTIONS(923), - [anon_sym_BANG_TILDE] = ACTIONS(923), - [anon_sym_bit_DASHand] = ACTIONS(923), - [anon_sym_bit_DASHxor] = ACTIONS(923), - [anon_sym_bit_DASHor] = ACTIONS(923), - [anon_sym_and] = ACTIONS(923), - [anon_sym_xor] = ACTIONS(923), - [anon_sym_or] = ACTIONS(923), - [anon_sym_DOT_DOT2] = ACTIONS(923), - [anon_sym_DOT] = ACTIONS(1546), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(925), - [anon_sym_DOT_DOT_LT2] = ACTIONS(925), - [aux_sym__immediate_decimal_token2] = ACTIONS(1538), - [aux_sym__val_number_decimal_token1] = ACTIONS(923), - [aux_sym__val_number_decimal_token2] = ACTIONS(923), - [anon_sym_DOT2] = ACTIONS(923), - [aux_sym__val_number_decimal_token3] = ACTIONS(923), - [aux_sym__val_number_token1] = ACTIONS(923), - [aux_sym__val_number_token2] = ACTIONS(923), - [aux_sym__val_number_token3] = ACTIONS(923), - [aux_sym__val_number_token4] = ACTIONS(923), - [aux_sym__val_number_token5] = ACTIONS(923), - [aux_sym__val_number_token6] = ACTIONS(923), - [sym_filesize_unit] = ACTIONS(923), - [sym_duration_unit] = ACTIONS(923), - [anon_sym_DQUOTE] = ACTIONS(923), - [sym__str_single_quotes] = ACTIONS(923), - [sym__str_back_ticks] = ACTIONS(923), - [sym__entry_separator] = ACTIONS(925), - [aux_sym__record_key_token2] = ACTIONS(923), - [aux_sym_unquoted_token5] = ACTIONS(923), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1179), + [anon_sym_alias] = ACTIONS(1179), + [anon_sym_let] = ACTIONS(1179), + [anon_sym_let_DASHenv] = ACTIONS(1179), + [anon_sym_mut] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [sym_cmd_identifier] = ACTIONS(1179), + [anon_sym_def] = ACTIONS(1179), + [anon_sym_export_DASHenv] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_use] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_DOLLAR] = ACTIONS(1181), + [anon_sym_error] = ACTIONS(1179), + [anon_sym_list] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1562), + [anon_sym_DASH] = ACTIONS(1564), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1576), + [anon_sym_loop] = ACTIONS(1179), + [anon_sym_make] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_else] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1181), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_catch] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_source] = ACTIONS(1179), + [anon_sym_source_DASHenv] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), + [anon_sym_hide_DASHenv] = ACTIONS(1179), + [anon_sym_overlay] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1566), + [anon_sym_STAR_STAR] = ACTIONS(1568), + [anon_sym_PLUS_PLUS] = ACTIONS(1568), + [anon_sym_SLASH] = ACTIONS(1566), + [anon_sym_mod] = ACTIONS(1566), + [anon_sym_SLASH_SLASH] = ACTIONS(1570), + [anon_sym_PLUS] = ACTIONS(1564), + [anon_sym_bit_DASHshl] = ACTIONS(1572), + [anon_sym_bit_DASHshr] = ACTIONS(1572), + [anon_sym_EQ_EQ] = ACTIONS(1574), + [anon_sym_BANG_EQ] = ACTIONS(1574), + [anon_sym_LT2] = ACTIONS(1562), + [anon_sym_LT_EQ] = ACTIONS(1574), + [anon_sym_GT_EQ] = ACTIONS(1574), + [anon_sym_not_DASHin] = ACTIONS(1576), + [anon_sym_starts_DASHwith] = ACTIONS(1576), + [anon_sym_ends_DASHwith] = ACTIONS(1576), + [anon_sym_EQ_TILDE] = ACTIONS(1578), + [anon_sym_BANG_TILDE] = ACTIONS(1578), + [anon_sym_bit_DASHand] = ACTIONS(1580), + [anon_sym_bit_DASHxor] = ACTIONS(1582), + [anon_sym_bit_DASHor] = ACTIONS(1584), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1181), + [anon_sym_DOT2] = ACTIONS(1181), + [aux_sym__val_number_decimal_token3] = ACTIONS(1181), + [aux_sym__val_number_token1] = ACTIONS(1181), + [aux_sym__val_number_token2] = ACTIONS(1181), + [aux_sym__val_number_token3] = ACTIONS(1181), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1181), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym__str_single_quotes] = ACTIONS(1181), + [sym__str_back_ticks] = ACTIONS(1181), + [aux_sym__record_key_token2] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(3), }, [756] = { [sym_comment] = STATE(756), - [anon_sym_export] = ACTIONS(909), - [anon_sym_alias] = ACTIONS(909), - [anon_sym_let] = ACTIONS(909), - [anon_sym_let_DASHenv] = ACTIONS(909), - [anon_sym_mut] = ACTIONS(909), - [anon_sym_const] = ACTIONS(909), - [sym_cmd_identifier] = ACTIONS(909), - [anon_sym_def] = ACTIONS(909), - [anon_sym_export_DASHenv] = ACTIONS(909), - [anon_sym_extern] = ACTIONS(909), - [anon_sym_module] = ACTIONS(909), - [anon_sym_use] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_error] = ACTIONS(909), - [anon_sym_list] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_break] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_for] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_loop] = ACTIONS(909), - [anon_sym_make] = ACTIONS(909), - [anon_sym_while] = ACTIONS(909), - [anon_sym_do] = ACTIONS(909), - [anon_sym_if] = ACTIONS(909), - [anon_sym_else] = ACTIONS(909), - [anon_sym_match] = ACTIONS(909), - [anon_sym_RBRACE] = ACTIONS(909), - [anon_sym_try] = ACTIONS(909), - [anon_sym_catch] = ACTIONS(909), - [anon_sym_return] = ACTIONS(909), - [anon_sym_source] = ACTIONS(909), - [anon_sym_source_DASHenv] = ACTIONS(909), - [anon_sym_register] = ACTIONS(909), - [anon_sym_hide] = ACTIONS(909), - [anon_sym_hide_DASHenv] = ACTIONS(909), - [anon_sym_overlay] = ACTIONS(909), - [anon_sym_new] = ACTIONS(909), - [anon_sym_as] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(909), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(909), - [anon_sym_SLASH_SLASH] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(909), - [anon_sym_bit_DASHshr] = ACTIONS(909), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_not_DASHin] = ACTIONS(909), - [anon_sym_starts_DASHwith] = ACTIONS(909), - [anon_sym_ends_DASHwith] = ACTIONS(909), - [anon_sym_EQ_TILDE] = ACTIONS(909), - [anon_sym_BANG_TILDE] = ACTIONS(909), - [anon_sym_bit_DASHand] = ACTIONS(909), - [anon_sym_bit_DASHxor] = ACTIONS(909), - [anon_sym_bit_DASHor] = ACTIONS(909), - [anon_sym_and] = ACTIONS(909), - [anon_sym_xor] = ACTIONS(909), - [anon_sym_or] = ACTIONS(909), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [aux_sym__immediate_decimal_token1] = ACTIONS(1549), - [aux_sym__immediate_decimal_token2] = ACTIONS(1551), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(909), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(909), - [aux_sym__val_number_token1] = ACTIONS(909), - [aux_sym__val_number_token2] = ACTIONS(909), - [aux_sym__val_number_token3] = ACTIONS(909), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(909), - [aux_sym__val_number_token6] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym__str_single_quotes] = ACTIONS(909), - [sym__str_back_ticks] = ACTIONS(909), - [sym__entry_separator] = ACTIONS(911), - [aux_sym__record_key_token2] = ACTIONS(909), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1179), + [anon_sym_alias] = ACTIONS(1179), + [anon_sym_let] = ACTIONS(1179), + [anon_sym_let_DASHenv] = ACTIONS(1179), + [anon_sym_mut] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [sym_cmd_identifier] = ACTIONS(1179), + [anon_sym_def] = ACTIONS(1179), + [anon_sym_export_DASHenv] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_use] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_DOLLAR] = ACTIONS(1181), + [anon_sym_error] = ACTIONS(1179), + [anon_sym_list] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1562), + [anon_sym_DASH] = ACTIONS(1564), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1576), + [anon_sym_loop] = ACTIONS(1179), + [anon_sym_make] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_else] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1181), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_catch] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_source] = ACTIONS(1179), + [anon_sym_source_DASHenv] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), + [anon_sym_hide_DASHenv] = ACTIONS(1179), + [anon_sym_overlay] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1566), + [anon_sym_STAR_STAR] = ACTIONS(1568), + [anon_sym_PLUS_PLUS] = ACTIONS(1568), + [anon_sym_SLASH] = ACTIONS(1566), + [anon_sym_mod] = ACTIONS(1566), + [anon_sym_SLASH_SLASH] = ACTIONS(1570), + [anon_sym_PLUS] = ACTIONS(1564), + [anon_sym_bit_DASHshl] = ACTIONS(1572), + [anon_sym_bit_DASHshr] = ACTIONS(1572), + [anon_sym_EQ_EQ] = ACTIONS(1574), + [anon_sym_BANG_EQ] = ACTIONS(1574), + [anon_sym_LT2] = ACTIONS(1562), + [anon_sym_LT_EQ] = ACTIONS(1574), + [anon_sym_GT_EQ] = ACTIONS(1574), + [anon_sym_not_DASHin] = ACTIONS(1576), + [anon_sym_starts_DASHwith] = ACTIONS(1576), + [anon_sym_ends_DASHwith] = ACTIONS(1576), + [anon_sym_EQ_TILDE] = ACTIONS(1578), + [anon_sym_BANG_TILDE] = ACTIONS(1578), + [anon_sym_bit_DASHand] = ACTIONS(1580), + [anon_sym_bit_DASHxor] = ACTIONS(1582), + [anon_sym_bit_DASHor] = ACTIONS(1584), + [anon_sym_and] = ACTIONS(1586), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1181), + [anon_sym_DOT2] = ACTIONS(1181), + [aux_sym__val_number_decimal_token3] = ACTIONS(1181), + [aux_sym__val_number_token1] = ACTIONS(1181), + [aux_sym__val_number_token2] = ACTIONS(1181), + [aux_sym__val_number_token3] = ACTIONS(1181), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1181), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym__str_single_quotes] = ACTIONS(1181), + [sym__str_back_ticks] = ACTIONS(1181), + [aux_sym__record_key_token2] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(3), }, [757] = { [sym_comment] = STATE(757), - [anon_sym_export] = ACTIONS(923), - [anon_sym_alias] = ACTIONS(923), - [anon_sym_let] = ACTIONS(923), - [anon_sym_let_DASHenv] = ACTIONS(923), - [anon_sym_mut] = ACTIONS(923), - [anon_sym_const] = ACTIONS(923), - [sym_cmd_identifier] = ACTIONS(923), - [anon_sym_def] = ACTIONS(923), - [anon_sym_export_DASHenv] = ACTIONS(923), - [anon_sym_extern] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_use] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(925), - [anon_sym_DOLLAR] = ACTIONS(925), - [anon_sym_error] = ACTIONS(923), - [anon_sym_list] = ACTIONS(923), - [anon_sym_GT] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_break] = ACTIONS(923), - [anon_sym_continue] = ACTIONS(923), - [anon_sym_for] = ACTIONS(923), - [anon_sym_in] = ACTIONS(923), - [anon_sym_loop] = ACTIONS(923), - [anon_sym_make] = ACTIONS(923), - [anon_sym_while] = ACTIONS(923), - [anon_sym_do] = ACTIONS(923), - [anon_sym_if] = ACTIONS(923), - [anon_sym_else] = ACTIONS(923), - [anon_sym_match] = ACTIONS(923), - [anon_sym_RBRACE] = ACTIONS(925), - [anon_sym_try] = ACTIONS(923), - [anon_sym_catch] = ACTIONS(923), - [anon_sym_return] = ACTIONS(923), - [anon_sym_source] = ACTIONS(923), - [anon_sym_source_DASHenv] = ACTIONS(923), - [anon_sym_register] = ACTIONS(923), - [anon_sym_hide] = ACTIONS(923), - [anon_sym_hide_DASHenv] = ACTIONS(923), - [anon_sym_overlay] = ACTIONS(923), - [anon_sym_new] = ACTIONS(923), - [anon_sym_as] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_STAR_STAR] = ACTIONS(925), - [anon_sym_PLUS_PLUS] = ACTIONS(925), - [anon_sym_SLASH] = ACTIONS(923), - [anon_sym_mod] = ACTIONS(923), - [anon_sym_SLASH_SLASH] = ACTIONS(925), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_bit_DASHshl] = ACTIONS(923), - [anon_sym_bit_DASHshr] = ACTIONS(923), - [anon_sym_EQ_EQ] = ACTIONS(925), - [anon_sym_BANG_EQ] = ACTIONS(925), - [anon_sym_LT2] = ACTIONS(923), - [anon_sym_LT_EQ] = ACTIONS(925), - [anon_sym_GT_EQ] = ACTIONS(925), - [anon_sym_not_DASHin] = ACTIONS(923), - [anon_sym_starts_DASHwith] = ACTIONS(923), - [anon_sym_ends_DASHwith] = ACTIONS(923), - [anon_sym_EQ_TILDE] = ACTIONS(925), - [anon_sym_BANG_TILDE] = ACTIONS(925), - [anon_sym_bit_DASHand] = ACTIONS(923), - [anon_sym_bit_DASHxor] = ACTIONS(923), - [anon_sym_bit_DASHor] = ACTIONS(923), - [anon_sym_and] = ACTIONS(923), - [anon_sym_xor] = ACTIONS(923), - [anon_sym_or] = ACTIONS(923), - [anon_sym_DOT_DOT2] = ACTIONS(923), - [anon_sym_DOT] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(925), - [anon_sym_DOT_DOT_LT2] = ACTIONS(925), - [aux_sym__immediate_decimal_token2] = ACTIONS(1553), - [aux_sym__val_number_decimal_token1] = ACTIONS(923), - [aux_sym__val_number_decimal_token2] = ACTIONS(925), - [anon_sym_DOT2] = ACTIONS(923), - [aux_sym__val_number_decimal_token3] = ACTIONS(925), - [aux_sym__val_number_token1] = ACTIONS(925), - [aux_sym__val_number_token2] = ACTIONS(925), - [aux_sym__val_number_token3] = ACTIONS(925), - [aux_sym__val_number_token4] = ACTIONS(923), - [aux_sym__val_number_token5] = ACTIONS(925), - [aux_sym__val_number_token6] = ACTIONS(923), - [sym_filesize_unit] = ACTIONS(923), - [sym_duration_unit] = ACTIONS(923), - [anon_sym_DQUOTE] = ACTIONS(925), - [sym__str_single_quotes] = ACTIONS(925), - [sym__str_back_ticks] = ACTIONS(925), - [aux_sym__record_key_token2] = ACTIONS(923), - [aux_sym_unquoted_token5] = ACTIONS(923), + [anon_sym_export] = ACTIONS(1089), + [anon_sym_alias] = ACTIONS(1089), + [anon_sym_let] = ACTIONS(1089), + [anon_sym_let_DASHenv] = ACTIONS(1089), + [anon_sym_mut] = ACTIONS(1089), + [anon_sym_const] = ACTIONS(1089), + [sym_cmd_identifier] = ACTIONS(1089), + [anon_sym_def] = ACTIONS(1089), + [anon_sym_export_DASHenv] = ACTIONS(1089), + [anon_sym_extern] = ACTIONS(1089), + [anon_sym_module] = ACTIONS(1089), + [anon_sym_use] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_DOLLAR] = ACTIONS(1091), + [anon_sym_error] = ACTIONS(1089), + [anon_sym_list] = ACTIONS(1089), + [anon_sym_GT] = ACTIONS(1089), + [anon_sym_DASH] = ACTIONS(1089), + [anon_sym_break] = ACTIONS(1089), + [anon_sym_continue] = ACTIONS(1089), + [anon_sym_for] = ACTIONS(1089), + [anon_sym_in] = ACTIONS(1089), + [anon_sym_loop] = ACTIONS(1089), + [anon_sym_make] = ACTIONS(1089), + [anon_sym_while] = ACTIONS(1089), + [anon_sym_do] = ACTIONS(1089), + [anon_sym_if] = ACTIONS(1089), + [anon_sym_else] = ACTIONS(1089), + [anon_sym_match] = ACTIONS(1089), + [anon_sym_RBRACE] = ACTIONS(1091), + [anon_sym_try] = ACTIONS(1089), + [anon_sym_catch] = ACTIONS(1089), + [anon_sym_return] = ACTIONS(1089), + [anon_sym_source] = ACTIONS(1089), + [anon_sym_source_DASHenv] = ACTIONS(1089), + [anon_sym_register] = ACTIONS(1089), + [anon_sym_hide] = ACTIONS(1089), + [anon_sym_hide_DASHenv] = ACTIONS(1089), + [anon_sym_overlay] = ACTIONS(1089), + [anon_sym_new] = ACTIONS(1089), + [anon_sym_as] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_STAR_STAR] = ACTIONS(1091), + [anon_sym_PLUS_PLUS] = ACTIONS(1091), + [anon_sym_SLASH] = ACTIONS(1089), + [anon_sym_mod] = ACTIONS(1089), + [anon_sym_SLASH_SLASH] = ACTIONS(1091), + [anon_sym_PLUS] = ACTIONS(1089), + [anon_sym_bit_DASHshl] = ACTIONS(1089), + [anon_sym_bit_DASHshr] = ACTIONS(1089), + [anon_sym_EQ_EQ] = ACTIONS(1091), + [anon_sym_BANG_EQ] = ACTIONS(1091), + [anon_sym_LT2] = ACTIONS(1089), + [anon_sym_LT_EQ] = ACTIONS(1091), + [anon_sym_GT_EQ] = ACTIONS(1091), + [anon_sym_not_DASHin] = ACTIONS(1089), + [anon_sym_starts_DASHwith] = ACTIONS(1089), + [anon_sym_ends_DASHwith] = ACTIONS(1089), + [anon_sym_EQ_TILDE] = ACTIONS(1091), + [anon_sym_BANG_TILDE] = ACTIONS(1091), + [anon_sym_bit_DASHand] = ACTIONS(1089), + [anon_sym_bit_DASHxor] = ACTIONS(1089), + [anon_sym_bit_DASHor] = ACTIONS(1089), + [anon_sym_and] = ACTIONS(1089), + [anon_sym_xor] = ACTIONS(1089), + [anon_sym_or] = ACTIONS(1089), + [aux_sym__val_number_decimal_token1] = ACTIONS(1089), + [aux_sym__val_number_decimal_token2] = ACTIONS(1091), + [anon_sym_DOT2] = ACTIONS(1091), + [aux_sym__val_number_decimal_token3] = ACTIONS(1091), + [aux_sym__val_number_token1] = ACTIONS(1091), + [aux_sym__val_number_token2] = ACTIONS(1091), + [aux_sym__val_number_token3] = ACTIONS(1091), + [aux_sym__val_number_token4] = ACTIONS(1089), + [aux_sym__val_number_token5] = ACTIONS(1091), + [aux_sym__val_number_token6] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1091), + [sym__str_single_quotes] = ACTIONS(1091), + [sym__str_back_ticks] = ACTIONS(1091), + [aux_sym__record_key_token2] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(3), }, [758] = { [sym_comment] = STATE(758), - [anon_sym_export] = ACTIONS(917), - [anon_sym_alias] = ACTIONS(917), - [anon_sym_let] = ACTIONS(917), - [anon_sym_let_DASHenv] = ACTIONS(917), - [anon_sym_mut] = ACTIONS(917), - [anon_sym_const] = ACTIONS(917), - [sym_cmd_identifier] = ACTIONS(917), - [anon_sym_def] = ACTIONS(917), - [anon_sym_export_DASHenv] = ACTIONS(917), - [anon_sym_extern] = ACTIONS(917), - [anon_sym_module] = ACTIONS(917), - [anon_sym_use] = ACTIONS(917), - [anon_sym_LPAREN] = ACTIONS(919), - [anon_sym_DOLLAR] = ACTIONS(919), - [anon_sym_error] = ACTIONS(917), - [anon_sym_list] = ACTIONS(917), - [anon_sym_GT] = ACTIONS(917), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_break] = ACTIONS(917), - [anon_sym_continue] = ACTIONS(917), - [anon_sym_for] = ACTIONS(917), - [anon_sym_in] = ACTIONS(917), - [anon_sym_loop] = ACTIONS(917), - [anon_sym_make] = ACTIONS(917), - [anon_sym_while] = ACTIONS(917), - [anon_sym_do] = ACTIONS(917), - [anon_sym_if] = ACTIONS(917), - [anon_sym_else] = ACTIONS(917), - [anon_sym_match] = ACTIONS(917), - [anon_sym_RBRACE] = ACTIONS(919), - [anon_sym_try] = ACTIONS(917), - [anon_sym_catch] = ACTIONS(917), - [anon_sym_return] = ACTIONS(917), - [anon_sym_source] = ACTIONS(917), - [anon_sym_source_DASHenv] = ACTIONS(917), - [anon_sym_register] = ACTIONS(917), - [anon_sym_hide] = ACTIONS(917), - [anon_sym_hide_DASHenv] = ACTIONS(917), - [anon_sym_overlay] = ACTIONS(917), - [anon_sym_new] = ACTIONS(917), - [anon_sym_as] = ACTIONS(917), - [anon_sym_STAR] = ACTIONS(917), - [anon_sym_STAR_STAR] = ACTIONS(919), - [anon_sym_PLUS_PLUS] = ACTIONS(919), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_mod] = ACTIONS(917), - [anon_sym_SLASH_SLASH] = ACTIONS(919), - [anon_sym_PLUS] = ACTIONS(917), - [anon_sym_bit_DASHshl] = ACTIONS(917), - [anon_sym_bit_DASHshr] = ACTIONS(917), - [anon_sym_EQ_EQ] = ACTIONS(919), - [anon_sym_BANG_EQ] = ACTIONS(919), - [anon_sym_LT2] = ACTIONS(917), - [anon_sym_LT_EQ] = ACTIONS(919), - [anon_sym_GT_EQ] = ACTIONS(919), - [anon_sym_not_DASHin] = ACTIONS(917), - [anon_sym_starts_DASHwith] = ACTIONS(917), - [anon_sym_ends_DASHwith] = ACTIONS(917), - [anon_sym_EQ_TILDE] = ACTIONS(919), - [anon_sym_BANG_TILDE] = ACTIONS(919), - [anon_sym_bit_DASHand] = ACTIONS(917), - [anon_sym_bit_DASHxor] = ACTIONS(917), - [anon_sym_bit_DASHor] = ACTIONS(917), - [anon_sym_and] = ACTIONS(917), - [anon_sym_xor] = ACTIONS(917), - [anon_sym_or] = ACTIONS(917), - [anon_sym_DOT_DOT2] = ACTIONS(917), - [anon_sym_DOT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(919), - [anon_sym_DOT_DOT_LT2] = ACTIONS(919), - [aux_sym__immediate_decimal_token2] = ACTIONS(1555), - [aux_sym__val_number_decimal_token1] = ACTIONS(917), - [aux_sym__val_number_decimal_token2] = ACTIONS(919), - [anon_sym_DOT2] = ACTIONS(917), - [aux_sym__val_number_decimal_token3] = ACTIONS(919), - [aux_sym__val_number_token1] = ACTIONS(919), - [aux_sym__val_number_token2] = ACTIONS(919), - [aux_sym__val_number_token3] = ACTIONS(919), - [aux_sym__val_number_token4] = ACTIONS(917), - [aux_sym__val_number_token5] = ACTIONS(919), - [aux_sym__val_number_token6] = ACTIONS(917), - [sym_filesize_unit] = ACTIONS(917), - [sym_duration_unit] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(919), - [sym__str_single_quotes] = ACTIONS(919), - [sym__str_back_ticks] = ACTIONS(919), - [aux_sym__record_key_token2] = ACTIONS(917), - [aux_sym_unquoted_token5] = ACTIONS(917), + [anon_sym_export] = ACTIONS(1179), + [anon_sym_alias] = ACTIONS(1179), + [anon_sym_let] = ACTIONS(1179), + [anon_sym_let_DASHenv] = ACTIONS(1179), + [anon_sym_mut] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [sym_cmd_identifier] = ACTIONS(1179), + [anon_sym_def] = ACTIONS(1179), + [anon_sym_export_DASHenv] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_use] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_DOLLAR] = ACTIONS(1181), + [anon_sym_error] = ACTIONS(1179), + [anon_sym_list] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1562), + [anon_sym_DASH] = ACTIONS(1564), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1576), + [anon_sym_loop] = ACTIONS(1179), + [anon_sym_make] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_else] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1181), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_catch] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_source] = ACTIONS(1179), + [anon_sym_source_DASHenv] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), + [anon_sym_hide_DASHenv] = ACTIONS(1179), + [anon_sym_overlay] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1566), + [anon_sym_STAR_STAR] = ACTIONS(1568), + [anon_sym_PLUS_PLUS] = ACTIONS(1568), + [anon_sym_SLASH] = ACTIONS(1566), + [anon_sym_mod] = ACTIONS(1566), + [anon_sym_SLASH_SLASH] = ACTIONS(1570), + [anon_sym_PLUS] = ACTIONS(1564), + [anon_sym_bit_DASHshl] = ACTIONS(1572), + [anon_sym_bit_DASHshr] = ACTIONS(1572), + [anon_sym_EQ_EQ] = ACTIONS(1574), + [anon_sym_BANG_EQ] = ACTIONS(1574), + [anon_sym_LT2] = ACTIONS(1562), + [anon_sym_LT_EQ] = ACTIONS(1574), + [anon_sym_GT_EQ] = ACTIONS(1574), + [anon_sym_not_DASHin] = ACTIONS(1576), + [anon_sym_starts_DASHwith] = ACTIONS(1576), + [anon_sym_ends_DASHwith] = ACTIONS(1576), + [anon_sym_EQ_TILDE] = ACTIONS(1578), + [anon_sym_BANG_TILDE] = ACTIONS(1578), + [anon_sym_bit_DASHand] = ACTIONS(1580), + [anon_sym_bit_DASHxor] = ACTIONS(1582), + [anon_sym_bit_DASHor] = ACTIONS(1584), + [anon_sym_and] = ACTIONS(1586), + [anon_sym_xor] = ACTIONS(1588), + [anon_sym_or] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1181), + [anon_sym_DOT2] = ACTIONS(1181), + [aux_sym__val_number_decimal_token3] = ACTIONS(1181), + [aux_sym__val_number_token1] = ACTIONS(1181), + [aux_sym__val_number_token2] = ACTIONS(1181), + [aux_sym__val_number_token3] = ACTIONS(1181), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1181), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym__str_single_quotes] = ACTIONS(1181), + [sym__str_back_ticks] = ACTIONS(1181), + [aux_sym__record_key_token2] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(3), }, [759] = { [sym_comment] = STATE(759), - [anon_sym_export] = ACTIONS(909), - [anon_sym_alias] = ACTIONS(909), - [anon_sym_let] = ACTIONS(909), - [anon_sym_let_DASHenv] = ACTIONS(909), - [anon_sym_mut] = ACTIONS(909), - [anon_sym_const] = ACTIONS(909), - [sym_cmd_identifier] = ACTIONS(909), - [anon_sym_def] = ACTIONS(909), - [anon_sym_export_DASHenv] = ACTIONS(909), - [anon_sym_extern] = ACTIONS(909), - [anon_sym_module] = ACTIONS(909), - [anon_sym_use] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(911), - [anon_sym_DOLLAR] = ACTIONS(911), - [anon_sym_error] = ACTIONS(909), - [anon_sym_list] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_break] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_for] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_loop] = ACTIONS(909), - [anon_sym_make] = ACTIONS(909), - [anon_sym_while] = ACTIONS(909), - [anon_sym_do] = ACTIONS(909), - [anon_sym_if] = ACTIONS(909), - [anon_sym_else] = ACTIONS(909), - [anon_sym_match] = ACTIONS(909), - [anon_sym_RBRACE] = ACTIONS(911), - [anon_sym_try] = ACTIONS(909), - [anon_sym_catch] = ACTIONS(909), - [anon_sym_return] = ACTIONS(909), - [anon_sym_source] = ACTIONS(909), - [anon_sym_source_DASHenv] = ACTIONS(909), - [anon_sym_register] = ACTIONS(909), - [anon_sym_hide] = ACTIONS(909), - [anon_sym_hide_DASHenv] = ACTIONS(909), - [anon_sym_overlay] = ACTIONS(909), - [anon_sym_new] = ACTIONS(909), - [anon_sym_as] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(911), - [anon_sym_PLUS_PLUS] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(909), - [anon_sym_SLASH_SLASH] = ACTIONS(911), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(909), - [anon_sym_bit_DASHshr] = ACTIONS(909), - [anon_sym_EQ_EQ] = ACTIONS(911), - [anon_sym_BANG_EQ] = ACTIONS(911), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(911), - [anon_sym_GT_EQ] = ACTIONS(911), - [anon_sym_not_DASHin] = ACTIONS(909), - [anon_sym_starts_DASHwith] = ACTIONS(909), - [anon_sym_ends_DASHwith] = ACTIONS(909), - [anon_sym_EQ_TILDE] = ACTIONS(911), - [anon_sym_BANG_TILDE] = ACTIONS(911), - [anon_sym_bit_DASHand] = ACTIONS(909), - [anon_sym_bit_DASHxor] = ACTIONS(909), - [anon_sym_bit_DASHor] = ACTIONS(909), - [anon_sym_and] = ACTIONS(909), - [anon_sym_xor] = ACTIONS(909), - [anon_sym_or] = ACTIONS(909), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [aux_sym__immediate_decimal_token2] = ACTIONS(1542), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(911), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(911), - [aux_sym__val_number_token1] = ACTIONS(911), - [aux_sym__val_number_token2] = ACTIONS(911), - [aux_sym__val_number_token3] = ACTIONS(911), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(911), - [aux_sym__val_number_token6] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(911), - [sym__str_single_quotes] = ACTIONS(911), - [sym__str_back_ticks] = ACTIONS(911), - [aux_sym__record_key_token2] = ACTIONS(909), - [aux_sym_unquoted_token5] = ACTIONS(909), + [anon_sym_export] = ACTIONS(1179), + [anon_sym_alias] = ACTIONS(1179), + [anon_sym_let] = ACTIONS(1179), + [anon_sym_let_DASHenv] = ACTIONS(1179), + [anon_sym_mut] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [sym_cmd_identifier] = ACTIONS(1179), + [anon_sym_def] = ACTIONS(1179), + [anon_sym_export_DASHenv] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_use] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_DOLLAR] = ACTIONS(1181), + [anon_sym_error] = ACTIONS(1179), + [anon_sym_list] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1562), + [anon_sym_DASH] = ACTIONS(1564), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1576), + [anon_sym_loop] = ACTIONS(1179), + [anon_sym_make] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_else] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1181), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_catch] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_source] = ACTIONS(1179), + [anon_sym_source_DASHenv] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), + [anon_sym_hide_DASHenv] = ACTIONS(1179), + [anon_sym_overlay] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1566), + [anon_sym_STAR_STAR] = ACTIONS(1568), + [anon_sym_PLUS_PLUS] = ACTIONS(1568), + [anon_sym_SLASH] = ACTIONS(1566), + [anon_sym_mod] = ACTIONS(1566), + [anon_sym_SLASH_SLASH] = ACTIONS(1570), + [anon_sym_PLUS] = ACTIONS(1564), + [anon_sym_bit_DASHshl] = ACTIONS(1572), + [anon_sym_bit_DASHshr] = ACTIONS(1572), + [anon_sym_EQ_EQ] = ACTIONS(1574), + [anon_sym_BANG_EQ] = ACTIONS(1574), + [anon_sym_LT2] = ACTIONS(1562), + [anon_sym_LT_EQ] = ACTIONS(1574), + [anon_sym_GT_EQ] = ACTIONS(1574), + [anon_sym_not_DASHin] = ACTIONS(1576), + [anon_sym_starts_DASHwith] = ACTIONS(1576), + [anon_sym_ends_DASHwith] = ACTIONS(1576), + [anon_sym_EQ_TILDE] = ACTIONS(1578), + [anon_sym_BANG_TILDE] = ACTIONS(1578), + [anon_sym_bit_DASHand] = ACTIONS(1580), + [anon_sym_bit_DASHxor] = ACTIONS(1582), + [anon_sym_bit_DASHor] = ACTIONS(1584), + [anon_sym_and] = ACTIONS(1586), + [anon_sym_xor] = ACTIONS(1588), + [anon_sym_or] = ACTIONS(1590), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1181), + [anon_sym_DOT2] = ACTIONS(1181), + [aux_sym__val_number_decimal_token3] = ACTIONS(1181), + [aux_sym__val_number_token1] = ACTIONS(1181), + [aux_sym__val_number_token2] = ACTIONS(1181), + [aux_sym__val_number_token3] = ACTIONS(1181), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1181), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym__str_single_quotes] = ACTIONS(1181), + [sym__str_back_ticks] = ACTIONS(1181), + [aux_sym__record_key_token2] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(3), }, [760] = { [sym_comment] = STATE(760), - [anon_sym_export] = ACTIONS(909), - [anon_sym_alias] = ACTIONS(909), - [anon_sym_let] = ACTIONS(909), - [anon_sym_let_DASHenv] = ACTIONS(909), - [anon_sym_mut] = ACTIONS(909), - [anon_sym_const] = ACTIONS(909), - [sym_cmd_identifier] = ACTIONS(909), - [anon_sym_def] = ACTIONS(909), - [anon_sym_export_DASHenv] = ACTIONS(909), - [anon_sym_extern] = ACTIONS(909), - [anon_sym_module] = ACTIONS(909), - [anon_sym_use] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_error] = ACTIONS(909), - [anon_sym_list] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_break] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_for] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_loop] = ACTIONS(909), - [anon_sym_make] = ACTIONS(909), - [anon_sym_while] = ACTIONS(909), - [anon_sym_do] = ACTIONS(909), - [anon_sym_if] = ACTIONS(909), - [anon_sym_else] = ACTIONS(909), - [anon_sym_match] = ACTIONS(909), - [anon_sym_RBRACE] = ACTIONS(909), - [anon_sym_try] = ACTIONS(909), - [anon_sym_catch] = ACTIONS(909), - [anon_sym_return] = ACTIONS(909), - [anon_sym_source] = ACTIONS(909), - [anon_sym_source_DASHenv] = ACTIONS(909), - [anon_sym_register] = ACTIONS(909), - [anon_sym_hide] = ACTIONS(909), - [anon_sym_hide_DASHenv] = ACTIONS(909), - [anon_sym_overlay] = ACTIONS(909), - [anon_sym_new] = ACTIONS(909), - [anon_sym_as] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(909), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(909), - [anon_sym_SLASH_SLASH] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(909), - [anon_sym_bit_DASHshr] = ACTIONS(909), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_not_DASHin] = ACTIONS(909), - [anon_sym_starts_DASHwith] = ACTIONS(909), - [anon_sym_ends_DASHwith] = ACTIONS(909), - [anon_sym_EQ_TILDE] = ACTIONS(909), - [anon_sym_BANG_TILDE] = ACTIONS(909), - [anon_sym_bit_DASHand] = ACTIONS(909), - [anon_sym_bit_DASHxor] = ACTIONS(909), - [anon_sym_bit_DASHor] = ACTIONS(909), - [anon_sym_and] = ACTIONS(909), - [anon_sym_xor] = ACTIONS(909), - [anon_sym_or] = ACTIONS(909), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(909), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(909), - [aux_sym__val_number_token1] = ACTIONS(909), - [aux_sym__val_number_token2] = ACTIONS(909), - [aux_sym__val_number_token3] = ACTIONS(909), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(909), - [aux_sym__val_number_token6] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym__str_single_quotes] = ACTIONS(909), - [sym__str_back_ticks] = ACTIONS(909), - [sym__entry_separator] = ACTIONS(911), - [aux_sym__record_key_token2] = ACTIONS(909), - [aux_sym_unquoted_token5] = ACTIONS(909), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_export] = ACTIONS(1155), + [anon_sym_alias] = ACTIONS(1155), + [anon_sym_let] = ACTIONS(1155), + [anon_sym_let_DASHenv] = ACTIONS(1155), + [anon_sym_mut] = ACTIONS(1155), + [anon_sym_const] = ACTIONS(1155), + [sym_cmd_identifier] = ACTIONS(1155), + [anon_sym_def] = ACTIONS(1155), + [anon_sym_export_DASHenv] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1155), + [anon_sym_module] = ACTIONS(1155), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_LPAREN] = ACTIONS(1157), + [anon_sym_DOLLAR] = ACTIONS(1157), + [anon_sym_error] = ACTIONS(1155), + [anon_sym_list] = ACTIONS(1155), + [anon_sym_GT] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_break] = ACTIONS(1155), + [anon_sym_continue] = ACTIONS(1155), + [anon_sym_for] = ACTIONS(1155), + [anon_sym_in] = ACTIONS(1155), + [anon_sym_loop] = ACTIONS(1155), + [anon_sym_make] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(1155), + [anon_sym_do] = ACTIONS(1155), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_else] = ACTIONS(1155), + [anon_sym_match] = ACTIONS(1155), + [anon_sym_RBRACE] = ACTIONS(1157), + [anon_sym_try] = ACTIONS(1155), + [anon_sym_catch] = ACTIONS(1155), + [anon_sym_return] = ACTIONS(1155), + [anon_sym_source] = ACTIONS(1155), + [anon_sym_source_DASHenv] = ACTIONS(1155), + [anon_sym_register] = ACTIONS(1155), + [anon_sym_hide] = ACTIONS(1155), + [anon_sym_hide_DASHenv] = ACTIONS(1155), + [anon_sym_overlay] = ACTIONS(1155), + [anon_sym_new] = ACTIONS(1155), + [anon_sym_as] = ACTIONS(1155), + [anon_sym_STAR] = ACTIONS(1155), + [anon_sym_STAR_STAR] = ACTIONS(1157), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1155), + [anon_sym_mod] = ACTIONS(1155), + [anon_sym_SLASH_SLASH] = ACTIONS(1157), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_bit_DASHshl] = ACTIONS(1155), + [anon_sym_bit_DASHshr] = ACTIONS(1155), + [anon_sym_EQ_EQ] = ACTIONS(1157), + [anon_sym_BANG_EQ] = ACTIONS(1157), + [anon_sym_LT2] = ACTIONS(1155), + [anon_sym_LT_EQ] = ACTIONS(1157), + [anon_sym_GT_EQ] = ACTIONS(1157), + [anon_sym_not_DASHin] = ACTIONS(1155), + [anon_sym_starts_DASHwith] = ACTIONS(1155), + [anon_sym_ends_DASHwith] = ACTIONS(1155), + [anon_sym_EQ_TILDE] = ACTIONS(1157), + [anon_sym_BANG_TILDE] = ACTIONS(1157), + [anon_sym_bit_DASHand] = ACTIONS(1155), + [anon_sym_bit_DASHxor] = ACTIONS(1155), + [anon_sym_bit_DASHor] = ACTIONS(1155), + [anon_sym_and] = ACTIONS(1155), + [anon_sym_xor] = ACTIONS(1155), + [anon_sym_or] = ACTIONS(1155), + [aux_sym__val_number_decimal_token1] = ACTIONS(1155), + [aux_sym__val_number_decimal_token2] = ACTIONS(1157), + [anon_sym_DOT2] = ACTIONS(1157), + [aux_sym__val_number_decimal_token3] = ACTIONS(1157), + [aux_sym__val_number_token1] = ACTIONS(1157), + [aux_sym__val_number_token2] = ACTIONS(1157), + [aux_sym__val_number_token3] = ACTIONS(1157), + [aux_sym__val_number_token4] = ACTIONS(1155), + [aux_sym__val_number_token5] = ACTIONS(1157), + [aux_sym__val_number_token6] = ACTIONS(1155), + [anon_sym_DQUOTE] = ACTIONS(1157), + [sym__str_single_quotes] = ACTIONS(1157), + [sym__str_back_ticks] = ACTIONS(1157), + [aux_sym__record_key_token2] = ACTIONS(1155), + [anon_sym_POUND] = ACTIONS(3), }, [761] = { + [sym_expr_parenthesized] = STATE(7564), + [sym_val_range] = STATE(8345), + [sym__val_range] = STATE(10084), + [sym__val_range_with_end] = STATE(10188), + [sym__value] = STATE(8345), + [sym_val_nothing] = STATE(5320), + [sym_val_bool] = STATE(7794), + [sym_val_variable] = STATE(4700), + [sym__var] = STATE(4205), + [sym_val_number] = STATE(5320), + [sym__val_number_decimal] = STATE(6556), + [sym__val_number] = STATE(5324), + [sym_val_duration] = STATE(5320), + [sym_val_filesize] = STATE(5320), + [sym_val_binary] = STATE(5320), + [sym_val_string] = STATE(5320), + [sym__str_double_quotes] = STATE(5376), + [sym_val_interpolated] = STATE(5320), + [sym__inter_single_quotes] = STATE(5381), + [sym__inter_double_quotes] = STATE(5382), + [sym_val_list] = STATE(5320), + [sym_val_record] = STATE(5320), + [sym_val_table] = STATE(5320), + [sym_val_closure] = STATE(5320), + [sym__cmd_arg] = STATE(8167), + [sym_redirection] = STATE(8348), + [sym__flag] = STATE(8349), + [sym_short_flag] = STATE(8332), + [sym_long_flag] = STATE(8332), + [sym_long_flag_equals_value] = STATE(8153), + [sym_unquoted] = STATE(7804), + [sym__unquoted_with_expr] = STATE(8351), + [sym__unquoted_anonymous_prefix] = STATE(9898), [sym_comment] = STATE(761), - [anon_sym_export] = ACTIONS(917), - [anon_sym_alias] = ACTIONS(917), - [anon_sym_let] = ACTIONS(917), - [anon_sym_let_DASHenv] = ACTIONS(917), - [anon_sym_mut] = ACTIONS(917), - [anon_sym_const] = ACTIONS(917), - [sym_cmd_identifier] = ACTIONS(917), - [anon_sym_def] = ACTIONS(917), - [anon_sym_export_DASHenv] = ACTIONS(917), - [anon_sym_extern] = ACTIONS(917), - [anon_sym_module] = ACTIONS(917), - [anon_sym_use] = ACTIONS(917), - [anon_sym_LPAREN] = ACTIONS(917), - [anon_sym_DOLLAR] = ACTIONS(917), - [anon_sym_error] = ACTIONS(917), - [anon_sym_list] = ACTIONS(917), - [anon_sym_GT] = ACTIONS(917), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_break] = ACTIONS(917), - [anon_sym_continue] = ACTIONS(917), - [anon_sym_for] = ACTIONS(917), - [anon_sym_in] = ACTIONS(917), - [anon_sym_loop] = ACTIONS(917), - [anon_sym_make] = ACTIONS(917), - [anon_sym_while] = ACTIONS(917), - [anon_sym_do] = ACTIONS(917), - [anon_sym_if] = ACTIONS(917), - [anon_sym_else] = ACTIONS(917), - [anon_sym_match] = ACTIONS(917), - [anon_sym_RBRACE] = ACTIONS(917), - [anon_sym_try] = ACTIONS(917), - [anon_sym_catch] = ACTIONS(917), - [anon_sym_return] = ACTIONS(917), - [anon_sym_source] = ACTIONS(917), - [anon_sym_source_DASHenv] = ACTIONS(917), - [anon_sym_register] = ACTIONS(917), - [anon_sym_hide] = ACTIONS(917), - [anon_sym_hide_DASHenv] = ACTIONS(917), - [anon_sym_overlay] = ACTIONS(917), - [anon_sym_new] = ACTIONS(917), - [anon_sym_as] = ACTIONS(917), - [anon_sym_STAR] = ACTIONS(917), - [anon_sym_STAR_STAR] = ACTIONS(917), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_mod] = ACTIONS(917), - [anon_sym_SLASH_SLASH] = ACTIONS(917), - [anon_sym_PLUS] = ACTIONS(917), - [anon_sym_bit_DASHshl] = ACTIONS(917), - [anon_sym_bit_DASHshr] = ACTIONS(917), - [anon_sym_EQ_EQ] = ACTIONS(917), - [anon_sym_BANG_EQ] = ACTIONS(917), - [anon_sym_LT2] = ACTIONS(917), - [anon_sym_LT_EQ] = ACTIONS(917), - [anon_sym_GT_EQ] = ACTIONS(917), - [anon_sym_not_DASHin] = ACTIONS(917), - [anon_sym_starts_DASHwith] = ACTIONS(917), - [anon_sym_ends_DASHwith] = ACTIONS(917), - [anon_sym_EQ_TILDE] = ACTIONS(917), - [anon_sym_BANG_TILDE] = ACTIONS(917), - [anon_sym_bit_DASHand] = ACTIONS(917), - [anon_sym_bit_DASHxor] = ACTIONS(917), - [anon_sym_bit_DASHor] = ACTIONS(917), - [anon_sym_and] = ACTIONS(917), - [anon_sym_xor] = ACTIONS(917), - [anon_sym_or] = ACTIONS(917), - [anon_sym_DOT_DOT2] = ACTIONS(917), - [anon_sym_DOT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(919), - [anon_sym_DOT_DOT_LT2] = ACTIONS(919), - [aux_sym__val_number_decimal_token1] = ACTIONS(917), - [aux_sym__val_number_decimal_token2] = ACTIONS(917), - [anon_sym_DOT2] = ACTIONS(917), - [aux_sym__val_number_decimal_token3] = ACTIONS(917), - [aux_sym__val_number_token1] = ACTIONS(917), - [aux_sym__val_number_token2] = ACTIONS(917), - [aux_sym__val_number_token3] = ACTIONS(917), - [aux_sym__val_number_token4] = ACTIONS(917), - [aux_sym__val_number_token5] = ACTIONS(917), - [aux_sym__val_number_token6] = ACTIONS(917), - [sym_filesize_unit] = ACTIONS(917), - [sym_duration_unit] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(917), - [sym__str_single_quotes] = ACTIONS(917), - [sym__str_back_ticks] = ACTIONS(917), - [sym__entry_separator] = ACTIONS(919), - [aux_sym__record_key_token2] = ACTIONS(917), - [aux_sym_unquoted_token5] = ACTIONS(917), + [anon_sym_SEMI] = ACTIONS(1592), + [anon_sym_LF] = ACTIONS(1592), + [anon_sym_LBRACK] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(1596), + [anon_sym_RPAREN] = ACTIONS(1592), + [anon_sym_PIPE] = ACTIONS(1592), + [anon_sym_DOLLAR] = ACTIONS(1598), + [anon_sym_DASH_DASH] = ACTIONS(1600), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_LBRACE] = ACTIONS(1604), + [anon_sym_DOT_DOT] = ACTIONS(1606), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1608), + [anon_sym_DOT_DOT_LT] = ACTIONS(1608), + [anon_sym_null] = ACTIONS(1610), + [anon_sym_true] = ACTIONS(1612), + [anon_sym_false] = ACTIONS(1612), + [aux_sym__val_number_decimal_token1] = ACTIONS(1614), + [aux_sym__val_number_decimal_token2] = ACTIONS(1614), + [anon_sym_DOT2] = ACTIONS(1616), + [aux_sym__val_number_decimal_token3] = ACTIONS(1618), + [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(1622), + [aux_sym__val_number_token5] = ACTIONS(1622), + [aux_sym__val_number_token6] = ACTIONS(1622), + [anon_sym_0b] = ACTIONS(1624), + [anon_sym_0o] = ACTIONS(1626), + [anon_sym_0x] = ACTIONS(1626), + [sym_val_date] = ACTIONS(1628), + [anon_sym_DQUOTE] = ACTIONS(1630), + [sym__str_single_quotes] = ACTIONS(1632), + [sym__str_back_ticks] = ACTIONS(1632), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1634), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1636), + [aux_sym_command_token1] = ACTIONS(1638), + [anon_sym_LF2] = ACTIONS(1592), + [anon_sym_err_GT] = ACTIONS(1640), + [anon_sym_out_GT] = ACTIONS(1640), + [anon_sym_e_GT] = ACTIONS(1640), + [anon_sym_o_GT] = ACTIONS(1640), + [anon_sym_err_PLUSout_GT] = ACTIONS(1640), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1640), + [anon_sym_o_PLUSe_GT] = ACTIONS(1640), + [anon_sym_e_PLUSo_GT] = ACTIONS(1640), + [aux_sym_unquoted_token1] = ACTIONS(1642), [anon_sym_POUND] = ACTIONS(113), }, [762] = { + [sym__ctrl_expression_parenthesized] = STATE(9595), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(10450), + [sym_where_command] = STATE(9598), + [sym__expression] = STATE(9598), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(4804), + [sym__var] = STATE(4386), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(9602), [sym_comment] = STATE(762), - [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), - [sym_cmd_identifier] = 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_DOLLAR] = ACTIONS(950), - [anon_sym_error] = ACTIONS(950), - [anon_sym_list] = ACTIONS(950), - [anon_sym_GT] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(950), - [anon_sym_break] = ACTIONS(950), - [anon_sym_continue] = ACTIONS(950), - [anon_sym_for] = ACTIONS(950), - [anon_sym_in] = 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_register] = ACTIONS(950), - [anon_sym_hide] = ACTIONS(950), - [anon_sym_hide_DASHenv] = ACTIONS(950), - [anon_sym_overlay] = ACTIONS(950), - [anon_sym_new] = ACTIONS(950), - [anon_sym_as] = ACTIONS(950), - [anon_sym_STAR] = ACTIONS(950), - [anon_sym_STAR_STAR] = ACTIONS(950), - [anon_sym_PLUS_PLUS] = ACTIONS(950), - [anon_sym_SLASH] = ACTIONS(950), - [anon_sym_mod] = ACTIONS(950), - [anon_sym_SLASH_SLASH] = ACTIONS(950), - [anon_sym_PLUS] = ACTIONS(950), - [anon_sym_bit_DASHshl] = ACTIONS(950), - [anon_sym_bit_DASHshr] = ACTIONS(950), - [anon_sym_EQ_EQ] = ACTIONS(950), - [anon_sym_BANG_EQ] = ACTIONS(950), - [anon_sym_LT2] = ACTIONS(950), - [anon_sym_LT_EQ] = ACTIONS(950), - [anon_sym_GT_EQ] = ACTIONS(950), - [anon_sym_not_DASHin] = ACTIONS(950), - [anon_sym_starts_DASHwith] = ACTIONS(950), - [anon_sym_ends_DASHwith] = ACTIONS(950), - [anon_sym_EQ_TILDE] = ACTIONS(950), - [anon_sym_BANG_TILDE] = ACTIONS(950), - [anon_sym_bit_DASHand] = ACTIONS(950), - [anon_sym_bit_DASHxor] = ACTIONS(950), - [anon_sym_bit_DASHor] = ACTIONS(950), - [anon_sym_and] = ACTIONS(950), - [anon_sym_xor] = ACTIONS(950), - [anon_sym_or] = ACTIONS(950), - [anon_sym_DOT_DOT2] = ACTIONS(950), - [anon_sym_DOT] = ACTIONS(950), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(952), - [anon_sym_DOT_DOT_LT2] = ACTIONS(952), - [aux_sym__val_number_decimal_token1] = ACTIONS(950), - [aux_sym__val_number_decimal_token2] = ACTIONS(950), - [anon_sym_DOT2] = ACTIONS(950), - [aux_sym__val_number_decimal_token3] = ACTIONS(950), - [aux_sym__val_number_token1] = ACTIONS(950), - [aux_sym__val_number_token2] = ACTIONS(950), - [aux_sym__val_number_token3] = ACTIONS(950), - [aux_sym__val_number_token4] = ACTIONS(950), - [aux_sym__val_number_token5] = ACTIONS(950), - [aux_sym__val_number_token6] = ACTIONS(950), - [sym_filesize_unit] = ACTIONS(950), - [sym_duration_unit] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym__str_single_quotes] = ACTIONS(950), - [sym__str_back_ticks] = ACTIONS(950), - [sym__entry_separator] = ACTIONS(952), - [aux_sym__record_key_token2] = ACTIONS(950), - [aux_sym_unquoted_token5] = ACTIONS(950), - [anon_sym_POUND] = ACTIONS(113), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(804), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_where] = ACTIONS(187), + [anon_sym_not] = ACTIONS(191), + [anon_sym_DOT_DOT_EQ] = ACTIONS(193), + [anon_sym_DOT_DOT_LT] = ACTIONS(193), + [anon_sym_null] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [aux_sym__val_number_decimal_token1] = ACTIONS(199), + [aux_sym__val_number_decimal_token2] = ACTIONS(201), + [anon_sym_DOT2] = ACTIONS(203), + [aux_sym__val_number_decimal_token3] = ACTIONS(205), + [aux_sym__val_number_token1] = ACTIONS(207), + [aux_sym__val_number_token2] = ACTIONS(207), + [aux_sym__val_number_token3] = ACTIONS(207), + [aux_sym__val_number_token4] = ACTIONS(209), + [aux_sym__val_number_token5] = ACTIONS(207), + [aux_sym__val_number_token6] = ACTIONS(209), + [anon_sym_0b] = ACTIONS(211), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym__str_single_quotes] = ACTIONS(219), + [sym__str_back_ticks] = ACTIONS(219), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_POUND] = ACTIONS(3), }, [763] = { + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(9856), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(4804), + [sym__var] = STATE(4386), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(763), - [anon_sym_export] = ACTIONS(923), - [anon_sym_alias] = ACTIONS(923), - [anon_sym_let] = ACTIONS(923), - [anon_sym_let_DASHenv] = ACTIONS(923), - [anon_sym_mut] = ACTIONS(923), - [anon_sym_const] = ACTIONS(923), - [sym_cmd_identifier] = ACTIONS(923), - [anon_sym_def] = ACTIONS(923), - [anon_sym_export_DASHenv] = ACTIONS(923), - [anon_sym_extern] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_use] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_DOLLAR] = ACTIONS(923), - [anon_sym_error] = ACTIONS(923), - [anon_sym_list] = ACTIONS(923), - [anon_sym_GT] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_break] = ACTIONS(923), - [anon_sym_continue] = ACTIONS(923), - [anon_sym_for] = ACTIONS(923), - [anon_sym_in] = ACTIONS(923), - [anon_sym_loop] = ACTIONS(923), - [anon_sym_make] = ACTIONS(923), - [anon_sym_while] = ACTIONS(923), - [anon_sym_do] = ACTIONS(923), - [anon_sym_if] = ACTIONS(923), - [anon_sym_else] = ACTIONS(923), - [anon_sym_match] = ACTIONS(923), - [anon_sym_RBRACE] = ACTIONS(923), - [anon_sym_try] = ACTIONS(923), - [anon_sym_catch] = ACTIONS(923), - [anon_sym_return] = ACTIONS(923), - [anon_sym_source] = ACTIONS(923), - [anon_sym_source_DASHenv] = ACTIONS(923), - [anon_sym_register] = ACTIONS(923), - [anon_sym_hide] = ACTIONS(923), - [anon_sym_hide_DASHenv] = ACTIONS(923), - [anon_sym_overlay] = ACTIONS(923), - [anon_sym_new] = ACTIONS(923), - [anon_sym_as] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_STAR_STAR] = ACTIONS(923), - [anon_sym_PLUS_PLUS] = ACTIONS(923), - [anon_sym_SLASH] = ACTIONS(923), - [anon_sym_mod] = ACTIONS(923), - [anon_sym_SLASH_SLASH] = ACTIONS(923), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_bit_DASHshl] = ACTIONS(923), - [anon_sym_bit_DASHshr] = ACTIONS(923), - [anon_sym_EQ_EQ] = ACTIONS(923), - [anon_sym_BANG_EQ] = ACTIONS(923), - [anon_sym_LT2] = ACTIONS(923), - [anon_sym_LT_EQ] = ACTIONS(923), - [anon_sym_GT_EQ] = ACTIONS(923), - [anon_sym_not_DASHin] = ACTIONS(923), - [anon_sym_starts_DASHwith] = ACTIONS(923), - [anon_sym_ends_DASHwith] = ACTIONS(923), - [anon_sym_EQ_TILDE] = ACTIONS(923), - [anon_sym_BANG_TILDE] = ACTIONS(923), - [anon_sym_bit_DASHand] = ACTIONS(923), - [anon_sym_bit_DASHxor] = ACTIONS(923), - [anon_sym_bit_DASHor] = ACTIONS(923), - [anon_sym_and] = ACTIONS(923), - [anon_sym_xor] = ACTIONS(923), - [anon_sym_or] = ACTIONS(923), - [anon_sym_DOT_DOT2] = ACTIONS(923), - [anon_sym_DOT] = ACTIONS(1557), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(925), - [anon_sym_DOT_DOT_LT2] = ACTIONS(925), - [aux_sym__immediate_decimal_token2] = ACTIONS(1559), - [aux_sym__val_number_decimal_token1] = ACTIONS(923), - [aux_sym__val_number_decimal_token2] = ACTIONS(923), - [anon_sym_DOT2] = ACTIONS(923), - [aux_sym__val_number_decimal_token3] = ACTIONS(923), - [aux_sym__val_number_token1] = ACTIONS(923), - [aux_sym__val_number_token2] = ACTIONS(923), - [aux_sym__val_number_token3] = ACTIONS(923), - [aux_sym__val_number_token4] = ACTIONS(923), - [aux_sym__val_number_token5] = ACTIONS(923), - [aux_sym__val_number_token6] = ACTIONS(923), - [sym_filesize_unit] = ACTIONS(923), - [sym_duration_unit] = ACTIONS(923), - [anon_sym_DQUOTE] = ACTIONS(923), - [sym__str_single_quotes] = ACTIONS(923), - [sym__str_back_ticks] = ACTIONS(923), - [sym__entry_separator] = ACTIONS(925), - [aux_sym__record_key_token2] = ACTIONS(923), - [anon_sym_POUND] = ACTIONS(113), + [aux_sym_pipeline_repeat1] = STATE(818), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_where] = ACTIONS(187), + [anon_sym_not] = ACTIONS(191), + [anon_sym_DOT_DOT_EQ] = ACTIONS(193), + [anon_sym_DOT_DOT_LT] = ACTIONS(193), + [anon_sym_null] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [aux_sym__val_number_decimal_token1] = ACTIONS(199), + [aux_sym__val_number_decimal_token2] = ACTIONS(201), + [anon_sym_DOT2] = ACTIONS(203), + [aux_sym__val_number_decimal_token3] = ACTIONS(205), + [aux_sym__val_number_token1] = ACTIONS(207), + [aux_sym__val_number_token2] = ACTIONS(207), + [aux_sym__val_number_token3] = ACTIONS(207), + [aux_sym__val_number_token4] = ACTIONS(209), + [aux_sym__val_number_token5] = ACTIONS(207), + [aux_sym__val_number_token6] = ACTIONS(209), + [anon_sym_0b] = ACTIONS(211), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym__str_single_quotes] = ACTIONS(219), + [sym__str_back_ticks] = ACTIONS(219), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(227), + [anon_sym_POUND] = ACTIONS(3), }, [764] = { + [sym__ctrl_expression] = STATE(8176), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(8916), + [sym_where_command] = STATE(8183), + [sym__expression] = STATE(8183), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(4804), + [sym__var] = STATE(4386), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8183), [sym_comment] = STATE(764), - [anon_sym_export] = ACTIONS(923), - [anon_sym_alias] = ACTIONS(923), - [anon_sym_let] = ACTIONS(923), - [anon_sym_let_DASHenv] = ACTIONS(923), - [anon_sym_mut] = ACTIONS(923), - [anon_sym_const] = ACTIONS(923), - [sym_cmd_identifier] = ACTIONS(923), - [anon_sym_def] = ACTIONS(923), - [anon_sym_export_DASHenv] = ACTIONS(923), - [anon_sym_extern] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_use] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(925), - [anon_sym_DOLLAR] = ACTIONS(925), - [anon_sym_error] = ACTIONS(923), - [anon_sym_list] = ACTIONS(923), - [anon_sym_GT] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_break] = ACTIONS(923), - [anon_sym_continue] = ACTIONS(923), - [anon_sym_for] = ACTIONS(923), - [anon_sym_in] = ACTIONS(923), - [anon_sym_loop] = ACTIONS(923), - [anon_sym_make] = ACTIONS(923), - [anon_sym_while] = ACTIONS(923), - [anon_sym_do] = ACTIONS(923), - [anon_sym_if] = ACTIONS(923), - [anon_sym_else] = ACTIONS(923), - [anon_sym_match] = ACTIONS(923), - [anon_sym_RBRACE] = ACTIONS(925), - [anon_sym_try] = ACTIONS(923), - [anon_sym_catch] = ACTIONS(923), - [anon_sym_return] = ACTIONS(923), - [anon_sym_source] = ACTIONS(923), - [anon_sym_source_DASHenv] = ACTIONS(923), - [anon_sym_register] = ACTIONS(923), - [anon_sym_hide] = ACTIONS(923), - [anon_sym_hide_DASHenv] = ACTIONS(923), - [anon_sym_overlay] = ACTIONS(923), - [anon_sym_new] = ACTIONS(923), - [anon_sym_as] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_STAR_STAR] = ACTIONS(925), - [anon_sym_PLUS_PLUS] = ACTIONS(925), - [anon_sym_SLASH] = ACTIONS(923), - [anon_sym_mod] = ACTIONS(923), - [anon_sym_SLASH_SLASH] = ACTIONS(925), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_bit_DASHshl] = ACTIONS(923), - [anon_sym_bit_DASHshr] = ACTIONS(923), - [anon_sym_EQ_EQ] = ACTIONS(925), - [anon_sym_BANG_EQ] = ACTIONS(925), - [anon_sym_LT2] = ACTIONS(923), - [anon_sym_LT_EQ] = ACTIONS(925), - [anon_sym_GT_EQ] = ACTIONS(925), - [anon_sym_not_DASHin] = ACTIONS(923), - [anon_sym_starts_DASHwith] = ACTIONS(923), - [anon_sym_ends_DASHwith] = ACTIONS(923), - [anon_sym_EQ_TILDE] = ACTIONS(925), - [anon_sym_BANG_TILDE] = ACTIONS(925), - [anon_sym_bit_DASHand] = ACTIONS(923), - [anon_sym_bit_DASHxor] = ACTIONS(923), - [anon_sym_bit_DASHor] = ACTIONS(923), - [anon_sym_and] = ACTIONS(923), - [anon_sym_xor] = ACTIONS(923), - [anon_sym_or] = ACTIONS(923), - [anon_sym_DOT_DOT2] = ACTIONS(923), - [anon_sym_DOT] = ACTIONS(1561), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(925), - [anon_sym_DOT_DOT_LT2] = ACTIONS(925), - [aux_sym__immediate_decimal_token2] = ACTIONS(1553), - [aux_sym__val_number_decimal_token1] = ACTIONS(923), - [aux_sym__val_number_decimal_token2] = ACTIONS(925), - [anon_sym_DOT2] = ACTIONS(923), - [aux_sym__val_number_decimal_token3] = ACTIONS(925), - [aux_sym__val_number_token1] = ACTIONS(925), - [aux_sym__val_number_token2] = ACTIONS(925), - [aux_sym__val_number_token3] = ACTIONS(925), - [aux_sym__val_number_token4] = ACTIONS(923), - [aux_sym__val_number_token5] = ACTIONS(925), - [aux_sym__val_number_token6] = ACTIONS(923), - [sym_filesize_unit] = ACTIONS(923), - [sym_duration_unit] = ACTIONS(923), - [anon_sym_DQUOTE] = ACTIONS(925), - [sym__str_single_quotes] = ACTIONS(925), - [sym__str_back_ticks] = ACTIONS(925), - [aux_sym__record_key_token2] = ACTIONS(923), - [aux_sym_unquoted_token5] = ACTIONS(923), + [aux_sym_pipeline_repeat1] = STATE(818), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_try] = ACTIONS(411), + [anon_sym_return] = ACTIONS(413), + [anon_sym_where] = ACTIONS(187), + [anon_sym_not] = ACTIONS(191), + [anon_sym_DOT_DOT_EQ] = ACTIONS(193), + [anon_sym_DOT_DOT_LT] = ACTIONS(193), + [anon_sym_null] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [aux_sym__val_number_decimal_token1] = ACTIONS(199), + [aux_sym__val_number_decimal_token2] = ACTIONS(201), + [anon_sym_DOT2] = ACTIONS(203), + [aux_sym__val_number_decimal_token3] = ACTIONS(205), + [aux_sym__val_number_token1] = ACTIONS(207), + [aux_sym__val_number_token2] = ACTIONS(207), + [aux_sym__val_number_token3] = ACTIONS(207), + [aux_sym__val_number_token4] = ACTIONS(209), + [aux_sym__val_number_token5] = ACTIONS(207), + [aux_sym__val_number_token6] = ACTIONS(209), + [anon_sym_0b] = ACTIONS(211), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym__str_single_quotes] = ACTIONS(219), + [sym__str_back_ticks] = ACTIONS(219), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(227), [anon_sym_POUND] = ACTIONS(3), }, [765] = { + [sym_expr_parenthesized] = STATE(7509), + [sym_val_range] = STATE(8118), + [sym__val_range] = STATE(10097), + [sym__val_range_with_end] = STATE(10029), + [sym__value] = STATE(8118), + [sym_val_nothing] = STATE(5416), + [sym_val_bool] = STATE(7695), + [sym_val_variable] = STATE(4774), + [sym__var] = STATE(4188), + [sym_val_number] = STATE(5416), + [sym__val_number_decimal] = STATE(6533), + [sym__val_number] = STATE(5419), + [sym_val_duration] = STATE(5416), + [sym_val_filesize] = STATE(5416), + [sym_val_binary] = STATE(5416), + [sym_val_string] = STATE(5416), + [sym__str_double_quotes] = STATE(5513), + [sym_val_interpolated] = STATE(5416), + [sym__inter_single_quotes] = STATE(5443), + [sym__inter_double_quotes] = STATE(5209), + [sym_val_list] = STATE(5416), + [sym_val_record] = STATE(5416), + [sym_val_table] = STATE(5416), + [sym_val_closure] = STATE(5416), + [sym__cmd_arg] = STATE(8347), + [sym_redirection] = STATE(8128), + [sym__flag] = STATE(8129), + [sym_short_flag] = STATE(8270), + [sym_long_flag] = STATE(8270), + [sym_long_flag_equals_value] = STATE(8136), + [sym_unquoted] = STATE(7665), + [sym__unquoted_with_expr] = STATE(8135), + [sym__unquoted_anonymous_prefix] = STATE(9809), [sym_comment] = STATE(765), - [anon_sym_export] = ACTIONS(959), - [anon_sym_alias] = ACTIONS(959), - [anon_sym_let] = ACTIONS(959), - [anon_sym_let_DASHenv] = ACTIONS(959), - [anon_sym_mut] = ACTIONS(959), - [anon_sym_const] = ACTIONS(959), - [sym_cmd_identifier] = ACTIONS(959), - [anon_sym_def] = ACTIONS(959), - [anon_sym_export_DASHenv] = ACTIONS(959), - [anon_sym_extern] = ACTIONS(959), - [anon_sym_module] = ACTIONS(959), - [anon_sym_use] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_error] = ACTIONS(959), - [anon_sym_list] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_break] = ACTIONS(959), - [anon_sym_continue] = ACTIONS(959), - [anon_sym_for] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_loop] = ACTIONS(959), - [anon_sym_make] = ACTIONS(959), - [anon_sym_while] = ACTIONS(959), - [anon_sym_do] = ACTIONS(959), - [anon_sym_if] = ACTIONS(959), - [anon_sym_else] = ACTIONS(959), - [anon_sym_match] = ACTIONS(959), - [anon_sym_RBRACE] = ACTIONS(959), - [anon_sym_try] = ACTIONS(959), - [anon_sym_catch] = ACTIONS(959), - [anon_sym_return] = ACTIONS(959), - [anon_sym_source] = ACTIONS(959), - [anon_sym_source_DASHenv] = ACTIONS(959), - [anon_sym_register] = ACTIONS(959), - [anon_sym_hide] = ACTIONS(959), - [anon_sym_hide_DASHenv] = ACTIONS(959), - [anon_sym_overlay] = ACTIONS(959), - [anon_sym_new] = ACTIONS(959), - [anon_sym_as] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(959), - [anon_sym_PLUS_PLUS] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(959), - [anon_sym_SLASH_SLASH] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(959), - [anon_sym_bit_DASHshr] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(959), - [anon_sym_BANG_EQ] = ACTIONS(959), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(959), - [anon_sym_GT_EQ] = ACTIONS(959), - [anon_sym_not_DASHin] = ACTIONS(959), - [anon_sym_starts_DASHwith] = ACTIONS(959), - [anon_sym_ends_DASHwith] = ACTIONS(959), - [anon_sym_EQ_TILDE] = ACTIONS(959), - [anon_sym_BANG_TILDE] = ACTIONS(959), - [anon_sym_bit_DASHand] = ACTIONS(959), - [anon_sym_bit_DASHxor] = ACTIONS(959), - [anon_sym_bit_DASHor] = ACTIONS(959), - [anon_sym_and] = ACTIONS(959), - [anon_sym_xor] = ACTIONS(959), - [anon_sym_or] = ACTIONS(959), - [anon_sym_DOT_DOT2] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(1564), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(983), - [anon_sym_DOT_DOT_LT2] = ACTIONS(983), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(959), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(959), - [aux_sym__val_number_token1] = ACTIONS(959), - [aux_sym__val_number_token2] = ACTIONS(959), - [aux_sym__val_number_token3] = ACTIONS(959), - [aux_sym__val_number_token4] = ACTIONS(959), - [aux_sym__val_number_token5] = ACTIONS(959), - [aux_sym__val_number_token6] = ACTIONS(959), - [sym_filesize_unit] = ACTIONS(1566), - [sym_duration_unit] = ACTIONS(1568), - [anon_sym_DQUOTE] = ACTIONS(959), - [sym__str_single_quotes] = ACTIONS(959), - [sym__str_back_ticks] = ACTIONS(959), - [sym__entry_separator] = ACTIONS(961), - [aux_sym__record_key_token2] = ACTIONS(959), - [aux_sym_unquoted_token5] = ACTIONS(1570), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LF] = ACTIONS(1644), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(1648), + [anon_sym_RPAREN] = ACTIONS(1644), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_DOLLAR] = ACTIONS(1650), + [anon_sym_DASH_DASH] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1654), + [anon_sym_LBRACE] = ACTIONS(1656), + [anon_sym_RBRACE] = ACTIONS(1644), + [anon_sym_DOT_DOT] = ACTIONS(1658), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1660), + [anon_sym_DOT_DOT_LT] = ACTIONS(1660), + [anon_sym_null] = ACTIONS(1662), + [anon_sym_true] = ACTIONS(1664), + [anon_sym_false] = ACTIONS(1664), + [aux_sym__val_number_decimal_token1] = ACTIONS(1666), + [aux_sym__val_number_decimal_token2] = ACTIONS(1666), + [anon_sym_DOT2] = ACTIONS(1668), + [aux_sym__val_number_decimal_token3] = ACTIONS(1670), + [aux_sym__val_number_token1] = ACTIONS(1672), + [aux_sym__val_number_token2] = ACTIONS(1672), + [aux_sym__val_number_token3] = ACTIONS(1672), + [aux_sym__val_number_token4] = ACTIONS(1674), + [aux_sym__val_number_token5] = ACTIONS(1674), + [aux_sym__val_number_token6] = ACTIONS(1674), + [anon_sym_0b] = ACTIONS(1676), + [anon_sym_0o] = ACTIONS(1678), + [anon_sym_0x] = ACTIONS(1678), + [sym_val_date] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1682), + [sym__str_single_quotes] = ACTIONS(1684), + [sym__str_back_ticks] = ACTIONS(1684), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1686), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1688), + [aux_sym_command_token1] = ACTIONS(1690), + [anon_sym_err_GT] = ACTIONS(1692), + [anon_sym_out_GT] = ACTIONS(1692), + [anon_sym_e_GT] = ACTIONS(1692), + [anon_sym_o_GT] = ACTIONS(1692), + [anon_sym_err_PLUSout_GT] = ACTIONS(1692), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1692), + [anon_sym_o_PLUSe_GT] = ACTIONS(1692), + [anon_sym_e_PLUSo_GT] = ACTIONS(1692), + [aux_sym_unquoted_token1] = ACTIONS(1694), [anon_sym_POUND] = ACTIONS(113), }, [766] = { - [sym__immediate_decimal] = STATE(9346), + [sym__ctrl_expression] = STATE(8658), + [sym_ctrl_do] = STATE(9613), + [sym_ctrl_if] = STATE(9613), + [sym_ctrl_match] = STATE(9613), + [sym_ctrl_try] = STATE(9613), + [sym_ctrl_return] = STATE(9613), + [sym_pipe_element] = STATE(3937), + [sym_pipe_element_last] = STATE(9091), + [sym_where_command] = STATE(8524), + [sym__expression] = STATE(8524), + [sym_expr_unary] = STATE(5890), + [sym__expr_unary_minus] = STATE(5878), + [sym_expr_binary] = STATE(5890), + [sym__expr_binary_expression] = STATE(6380), + [sym_expr_parenthesized] = STATE(5154), + [sym_val_range] = STATE(8295), + [sym__value] = STATE(5890), + [sym_val_nothing] = STATE(5931), + [sym_val_bool] = STATE(5931), + [sym_val_variable] = STATE(5103), + [sym__var] = STATE(4428), + [sym_val_number] = STATE(5931), + [sym__val_number_decimal] = STATE(4371), + [sym__val_number] = STATE(5285), + [sym_val_duration] = STATE(5931), + [sym_val_filesize] = STATE(5931), + [sym_val_binary] = STATE(5931), + [sym_val_string] = STATE(5931), + [sym__str_double_quotes] = STATE(5888), + [sym_val_interpolated] = STATE(5931), + [sym__inter_single_quotes] = STATE(5935), + [sym__inter_double_quotes] = STATE(5940), + [sym_val_list] = STATE(5931), + [sym_val_record] = STATE(5931), + [sym_val_table] = STATE(5931), + [sym_val_closure] = STATE(5931), + [sym_command] = STATE(8524), [sym_comment] = STATE(766), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_error] = ACTIONS(936), - [anon_sym_list] = ACTIONS(936), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_make] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_else] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_RBRACE] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_catch] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_new] = ACTIONS(936), - [anon_sym_as] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_STAR_STAR] = ACTIONS(936), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(936), - [anon_sym_SLASH_SLASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(936), - [anon_sym_bit_DASHshr] = ACTIONS(936), - [anon_sym_EQ_EQ] = ACTIONS(936), - [anon_sym_BANG_EQ] = ACTIONS(936), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(936), - [anon_sym_GT_EQ] = ACTIONS(936), - [anon_sym_not_DASHin] = ACTIONS(936), - [anon_sym_starts_DASHwith] = ACTIONS(936), - [anon_sym_ends_DASHwith] = ACTIONS(936), - [anon_sym_EQ_TILDE] = ACTIONS(936), - [anon_sym_BANG_TILDE] = ACTIONS(936), - [anon_sym_bit_DASHand] = ACTIONS(936), - [anon_sym_bit_DASHxor] = ACTIONS(936), - [anon_sym_bit_DASHor] = ACTIONS(936), - [anon_sym_and] = ACTIONS(936), - [anon_sym_xor] = ACTIONS(936), - [anon_sym_or] = ACTIONS(936), - [anon_sym_DOT] = ACTIONS(1572), - [aux_sym__immediate_decimal_token1] = ACTIONS(942), - [aux_sym__immediate_decimal_token3] = ACTIONS(942), - [aux_sym__immediate_decimal_token4] = ACTIONS(944), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [sym__entry_separator] = ACTIONS(938), - [aux_sym__record_key_token2] = ACTIONS(936), - [aux_sym_unquoted_token3] = ACTIONS(1570), - [aux_sym_unquoted_token5] = ACTIONS(1574), - [anon_sym_POUND] = ACTIONS(113), - }, - [767] = { - [sym_path] = STATE(809), - [sym_comment] = STATE(767), - [aux_sym_cell_path_repeat1] = STATE(775), - [anon_sym_export] = ACTIONS(987), - [anon_sym_alias] = ACTIONS(987), - [anon_sym_let] = ACTIONS(987), - [anon_sym_let_DASHenv] = ACTIONS(987), - [anon_sym_mut] = ACTIONS(987), - [anon_sym_const] = ACTIONS(987), - [sym_cmd_identifier] = ACTIONS(987), - [anon_sym_def] = ACTIONS(987), - [anon_sym_export_DASHenv] = ACTIONS(987), - [anon_sym_extern] = ACTIONS(987), - [anon_sym_module] = ACTIONS(987), - [anon_sym_use] = ACTIONS(987), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_DOLLAR] = ACTIONS(987), - [anon_sym_error] = ACTIONS(987), - [anon_sym_list] = ACTIONS(987), - [anon_sym_GT] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_break] = ACTIONS(987), - [anon_sym_continue] = ACTIONS(987), - [anon_sym_for] = ACTIONS(987), - [anon_sym_in] = ACTIONS(987), - [anon_sym_loop] = ACTIONS(987), - [anon_sym_make] = ACTIONS(987), - [anon_sym_while] = ACTIONS(987), - [anon_sym_do] = ACTIONS(987), - [anon_sym_if] = ACTIONS(987), - [anon_sym_else] = ACTIONS(987), - [anon_sym_match] = ACTIONS(987), - [anon_sym_RBRACE] = ACTIONS(987), - [anon_sym_try] = ACTIONS(987), - [anon_sym_catch] = ACTIONS(987), - [anon_sym_return] = ACTIONS(987), - [anon_sym_source] = ACTIONS(987), - [anon_sym_source_DASHenv] = ACTIONS(987), - [anon_sym_register] = ACTIONS(987), - [anon_sym_hide] = ACTIONS(987), - [anon_sym_hide_DASHenv] = ACTIONS(987), - [anon_sym_overlay] = ACTIONS(987), - [anon_sym_new] = ACTIONS(987), - [anon_sym_as] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(987), - [anon_sym_STAR_STAR] = ACTIONS(987), - [anon_sym_PLUS_PLUS] = ACTIONS(987), - [anon_sym_SLASH] = ACTIONS(987), - [anon_sym_mod] = ACTIONS(987), - [anon_sym_SLASH_SLASH] = ACTIONS(987), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_bit_DASHshl] = ACTIONS(987), - [anon_sym_bit_DASHshr] = ACTIONS(987), - [anon_sym_EQ_EQ] = ACTIONS(987), - [anon_sym_BANG_EQ] = ACTIONS(987), - [anon_sym_LT2] = ACTIONS(987), - [anon_sym_LT_EQ] = ACTIONS(987), - [anon_sym_GT_EQ] = ACTIONS(987), - [anon_sym_not_DASHin] = ACTIONS(987), - [anon_sym_starts_DASHwith] = ACTIONS(987), - [anon_sym_ends_DASHwith] = ACTIONS(987), - [anon_sym_EQ_TILDE] = ACTIONS(987), - [anon_sym_BANG_TILDE] = ACTIONS(987), - [anon_sym_bit_DASHand] = ACTIONS(987), - [anon_sym_bit_DASHxor] = ACTIONS(987), - [anon_sym_bit_DASHor] = ACTIONS(987), - [anon_sym_and] = ACTIONS(987), - [anon_sym_xor] = ACTIONS(987), - [anon_sym_or] = ACTIONS(987), - [anon_sym_DOT_DOT2] = ACTIONS(987), - [anon_sym_DOT] = ACTIONS(1576), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(989), - [anon_sym_DOT_DOT_LT2] = ACTIONS(989), - [aux_sym__val_number_decimal_token1] = ACTIONS(987), - [aux_sym__val_number_decimal_token2] = ACTIONS(987), - [anon_sym_DOT2] = ACTIONS(987), - [aux_sym__val_number_decimal_token3] = ACTIONS(987), - [aux_sym__val_number_token1] = ACTIONS(987), - [aux_sym__val_number_token2] = ACTIONS(987), - [aux_sym__val_number_token3] = ACTIONS(987), - [aux_sym__val_number_token4] = ACTIONS(987), - [aux_sym__val_number_token5] = ACTIONS(987), - [aux_sym__val_number_token6] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(987), - [sym__str_single_quotes] = ACTIONS(987), - [sym__str_back_ticks] = ACTIONS(987), - [sym__entry_separator] = ACTIONS(989), - [aux_sym__record_key_token2] = ACTIONS(987), - [anon_sym_POUND] = ACTIONS(113), + [aux_sym_pipeline_repeat1] = STATE(818), + [sym_cmd_identifier] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(1528), + [anon_sym_DASH] = ACTIONS(39), + [anon_sym_break] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_match] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_DOT_DOT] = ACTIONS(59), + [anon_sym_try] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_where] = ACTIONS(75), + [anon_sym_not] = ACTIONS(77), + [anon_sym_DOT_DOT_EQ] = ACTIONS(79), + [anon_sym_DOT_DOT_LT] = ACTIONS(79), + [anon_sym_null] = ACTIONS(81), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [aux_sym__val_number_decimal_token1] = ACTIONS(85), + [aux_sym__val_number_decimal_token2] = ACTIONS(87), + [anon_sym_DOT2] = ACTIONS(89), + [aux_sym__val_number_decimal_token3] = ACTIONS(91), + [aux_sym__val_number_token1] = ACTIONS(93), + [aux_sym__val_number_token2] = ACTIONS(93), + [aux_sym__val_number_token3] = ACTIONS(93), + [aux_sym__val_number_token4] = ACTIONS(95), + [aux_sym__val_number_token5] = ACTIONS(93), + [aux_sym__val_number_token6] = ACTIONS(95), + [anon_sym_0b] = ACTIONS(97), + [anon_sym_0o] = ACTIONS(99), + [anon_sym_0x] = ACTIONS(99), + [sym_val_date] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym__str_single_quotes] = ACTIONS(105), + [sym__str_back_ticks] = ACTIONS(105), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(109), + [anon_sym_CARET] = ACTIONS(111), + [anon_sym_POUND] = ACTIONS(3), + }, + [767] = { + [sym__ctrl_expression_parenthesized] = STATE(8667), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_pipe_element_parenthesized_last] = STATE(9868), + [sym_where_command] = STATE(8754), + [sym__expression] = STATE(8754), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(4804), + [sym__var] = STATE(4386), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(8788), + [sym_comment] = STATE(767), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(804), + [sym_cmd_identifier] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_break] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(413), + [anon_sym_where] = ACTIONS(187), + [anon_sym_not] = ACTIONS(191), + [anon_sym_DOT_DOT_EQ] = ACTIONS(193), + [anon_sym_DOT_DOT_LT] = ACTIONS(193), + [anon_sym_null] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [aux_sym__val_number_decimal_token1] = ACTIONS(199), + [aux_sym__val_number_decimal_token2] = ACTIONS(201), + [anon_sym_DOT2] = ACTIONS(203), + [aux_sym__val_number_decimal_token3] = ACTIONS(205), + [aux_sym__val_number_token1] = ACTIONS(207), + [aux_sym__val_number_token2] = ACTIONS(207), + [aux_sym__val_number_token3] = ACTIONS(207), + [aux_sym__val_number_token4] = ACTIONS(209), + [aux_sym__val_number_token5] = ACTIONS(207), + [aux_sym__val_number_token6] = ACTIONS(209), + [anon_sym_0b] = ACTIONS(211), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym__str_single_quotes] = ACTIONS(219), + [sym__str_back_ticks] = ACTIONS(219), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_POUND] = ACTIONS(3), }, [768] = { + [sym__expr_parenthesized_immediate] = STATE(1115), + [sym__immediate_decimal] = STATE(943), + [sym_val_variable] = STATE(1115), + [sym__var] = STATE(935), [sym_comment] = STATE(768), - [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), - [sym_cmd_identifier] = 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(952), - [anon_sym_DOLLAR] = ACTIONS(952), - [anon_sym_error] = ACTIONS(950), - [anon_sym_list] = ACTIONS(950), - [anon_sym_GT] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(950), - [anon_sym_break] = ACTIONS(950), - [anon_sym_continue] = ACTIONS(950), - [anon_sym_for] = ACTIONS(950), - [anon_sym_in] = 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_register] = ACTIONS(950), - [anon_sym_hide] = ACTIONS(950), - [anon_sym_hide_DASHenv] = ACTIONS(950), - [anon_sym_overlay] = ACTIONS(950), - [anon_sym_new] = ACTIONS(950), - [anon_sym_as] = ACTIONS(950), - [anon_sym_STAR] = ACTIONS(950), - [anon_sym_STAR_STAR] = ACTIONS(952), - [anon_sym_PLUS_PLUS] = ACTIONS(952), - [anon_sym_SLASH] = ACTIONS(950), - [anon_sym_mod] = ACTIONS(950), - [anon_sym_SLASH_SLASH] = ACTIONS(952), - [anon_sym_PLUS] = ACTIONS(950), - [anon_sym_bit_DASHshl] = ACTIONS(950), - [anon_sym_bit_DASHshr] = ACTIONS(950), - [anon_sym_EQ_EQ] = ACTIONS(952), - [anon_sym_BANG_EQ] = ACTIONS(952), - [anon_sym_LT2] = ACTIONS(950), - [anon_sym_LT_EQ] = ACTIONS(952), - [anon_sym_GT_EQ] = ACTIONS(952), - [anon_sym_not_DASHin] = ACTIONS(950), - [anon_sym_starts_DASHwith] = ACTIONS(950), - [anon_sym_ends_DASHwith] = ACTIONS(950), - [anon_sym_EQ_TILDE] = ACTIONS(952), - [anon_sym_BANG_TILDE] = ACTIONS(952), - [anon_sym_bit_DASHand] = ACTIONS(950), - [anon_sym_bit_DASHxor] = ACTIONS(950), - [anon_sym_bit_DASHor] = ACTIONS(950), - [anon_sym_and] = ACTIONS(950), - [anon_sym_xor] = ACTIONS(950), - [anon_sym_or] = ACTIONS(950), - [anon_sym_DOT_DOT2] = ACTIONS(950), - [anon_sym_DOT] = ACTIONS(950), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(952), - [anon_sym_DOT_DOT_LT2] = ACTIONS(952), - [aux_sym__val_number_decimal_token1] = ACTIONS(950), - [aux_sym__val_number_decimal_token2] = ACTIONS(952), - [anon_sym_DOT2] = ACTIONS(950), - [aux_sym__val_number_decimal_token3] = 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(952), - [aux_sym__val_number_token6] = ACTIONS(950), - [sym_filesize_unit] = ACTIONS(950), - [sym_duration_unit] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(952), - [sym__str_single_quotes] = ACTIONS(952), - [sym__str_back_ticks] = ACTIONS(952), - [aux_sym__record_key_token2] = ACTIONS(950), - [aux_sym_unquoted_token5] = ACTIONS(950), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(920), + [anon_sym_alias] = ACTIONS(920), + [anon_sym_let] = ACTIONS(920), + [anon_sym_let_DASHenv] = ACTIONS(920), + [anon_sym_mut] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(920), + [sym_cmd_identifier] = ACTIONS(920), + [anon_sym_LF] = ACTIONS(922), + [anon_sym_def] = ACTIONS(920), + [anon_sym_export_DASHenv] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym_module] = ACTIONS(920), + [anon_sym_use] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_RPAREN] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(1696), + [anon_sym_error] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_loop] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_match] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_RBRACE] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_try] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_source] = ACTIONS(920), + [anon_sym_source_DASHenv] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_hide] = ACTIONS(920), + [anon_sym_hide_DASHenv] = ACTIONS(920), + [anon_sym_overlay] = ACTIONS(920), + [anon_sym_as] = ACTIONS(920), + [anon_sym_where] = ACTIONS(920), + [anon_sym_not] = ACTIONS(920), + [anon_sym_LPAREN2] = ACTIONS(1698), + [anon_sym_DOT] = ACTIONS(1700), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [aux_sym__immediate_decimal_token1] = ACTIONS(1702), + [aux_sym__immediate_decimal_token3] = ACTIONS(1702), + [aux_sym__immediate_decimal_token4] = ACTIONS(1704), + [anon_sym_null] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), + [anon_sym_CARET] = ACTIONS(920), + [aux_sym_unquoted_token3] = ACTIONS(1706), + [aux_sym_unquoted_token5] = ACTIONS(1708), + [anon_sym_POUND] = ACTIONS(113), }, [769] = { - [sym_cell_path] = STATE(812), - [sym_path] = STATE(767), + [sym__expr_parenthesized_immediate] = STATE(1115), + [sym__immediate_decimal] = STATE(992), + [sym_val_variable] = STATE(1115), + [sym__var] = STATE(935), [sym_comment] = STATE(769), - [anon_sym_export] = ACTIONS(995), - [anon_sym_alias] = ACTIONS(995), - [anon_sym_let] = ACTIONS(995), - [anon_sym_let_DASHenv] = ACTIONS(995), - [anon_sym_mut] = ACTIONS(995), - [anon_sym_const] = ACTIONS(995), - [sym_cmd_identifier] = ACTIONS(995), - [anon_sym_def] = ACTIONS(995), - [anon_sym_export_DASHenv] = ACTIONS(995), - [anon_sym_extern] = ACTIONS(995), - [anon_sym_module] = ACTIONS(995), - [anon_sym_use] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_DOLLAR] = ACTIONS(995), - [anon_sym_error] = ACTIONS(995), - [anon_sym_list] = ACTIONS(995), - [anon_sym_GT] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_break] = ACTIONS(995), - [anon_sym_continue] = ACTIONS(995), - [anon_sym_for] = ACTIONS(995), - [anon_sym_in] = ACTIONS(995), - [anon_sym_loop] = ACTIONS(995), - [anon_sym_make] = ACTIONS(995), - [anon_sym_while] = ACTIONS(995), - [anon_sym_do] = ACTIONS(995), - [anon_sym_if] = ACTIONS(995), - [anon_sym_else] = ACTIONS(995), - [anon_sym_match] = ACTIONS(995), - [anon_sym_RBRACE] = ACTIONS(995), - [anon_sym_try] = ACTIONS(995), - [anon_sym_catch] = ACTIONS(995), - [anon_sym_return] = ACTIONS(995), - [anon_sym_source] = ACTIONS(995), - [anon_sym_source_DASHenv] = ACTIONS(995), - [anon_sym_register] = ACTIONS(995), - [anon_sym_hide] = ACTIONS(995), - [anon_sym_hide_DASHenv] = ACTIONS(995), - [anon_sym_overlay] = ACTIONS(995), - [anon_sym_new] = ACTIONS(995), - [anon_sym_as] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_STAR_STAR] = ACTIONS(995), - [anon_sym_PLUS_PLUS] = ACTIONS(995), - [anon_sym_SLASH] = ACTIONS(995), - [anon_sym_mod] = ACTIONS(995), - [anon_sym_SLASH_SLASH] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_bit_DASHshl] = ACTIONS(995), - [anon_sym_bit_DASHshr] = ACTIONS(995), - [anon_sym_EQ_EQ] = ACTIONS(995), - [anon_sym_BANG_EQ] = ACTIONS(995), - [anon_sym_LT2] = ACTIONS(995), - [anon_sym_LT_EQ] = ACTIONS(995), - [anon_sym_GT_EQ] = ACTIONS(995), - [anon_sym_not_DASHin] = ACTIONS(995), - [anon_sym_starts_DASHwith] = ACTIONS(995), - [anon_sym_ends_DASHwith] = ACTIONS(995), - [anon_sym_EQ_TILDE] = ACTIONS(995), - [anon_sym_BANG_TILDE] = ACTIONS(995), - [anon_sym_bit_DASHand] = ACTIONS(995), - [anon_sym_bit_DASHxor] = ACTIONS(995), - [anon_sym_bit_DASHor] = ACTIONS(995), - [anon_sym_and] = ACTIONS(995), - [anon_sym_xor] = ACTIONS(995), - [anon_sym_or] = ACTIONS(995), - [anon_sym_DOT_DOT2] = ACTIONS(995), - [anon_sym_DOT] = ACTIONS(1576), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(997), - [anon_sym_DOT_DOT_LT2] = ACTIONS(997), - [aux_sym__val_number_decimal_token1] = ACTIONS(995), - [aux_sym__val_number_decimal_token2] = ACTIONS(995), - [anon_sym_DOT2] = ACTIONS(995), - [aux_sym__val_number_decimal_token3] = ACTIONS(995), - [aux_sym__val_number_token1] = ACTIONS(995), - [aux_sym__val_number_token2] = ACTIONS(995), - [aux_sym__val_number_token3] = ACTIONS(995), - [aux_sym__val_number_token4] = ACTIONS(995), - [aux_sym__val_number_token5] = ACTIONS(995), - [aux_sym__val_number_token6] = ACTIONS(995), - [anon_sym_DQUOTE] = ACTIONS(995), - [sym__str_single_quotes] = ACTIONS(995), - [sym__str_back_ticks] = ACTIONS(995), - [sym__entry_separator] = ACTIONS(997), - [aux_sym__record_key_token2] = ACTIONS(995), + [anon_sym_export] = ACTIONS(920), + [anon_sym_alias] = ACTIONS(920), + [anon_sym_let] = ACTIONS(920), + [anon_sym_let_DASHenv] = ACTIONS(920), + [anon_sym_mut] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(920), + [sym_cmd_identifier] = ACTIONS(920), + [anon_sym_LF] = ACTIONS(922), + [anon_sym_def] = ACTIONS(920), + [anon_sym_export_DASHenv] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym_module] = ACTIONS(920), + [anon_sym_use] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_RPAREN] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(1696), + [anon_sym_error] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_loop] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_match] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_RBRACE] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_try] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_source] = ACTIONS(920), + [anon_sym_source_DASHenv] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_hide] = ACTIONS(920), + [anon_sym_hide_DASHenv] = ACTIONS(920), + [anon_sym_overlay] = ACTIONS(920), + [anon_sym_as] = ACTIONS(920), + [anon_sym_where] = ACTIONS(920), + [anon_sym_not] = ACTIONS(920), + [anon_sym_LPAREN2] = ACTIONS(1698), + [anon_sym_DOT] = ACTIONS(1710), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [aux_sym__immediate_decimal_token1] = ACTIONS(1712), + [aux_sym__immediate_decimal_token3] = ACTIONS(1712), + [aux_sym__immediate_decimal_token4] = ACTIONS(1714), + [anon_sym_null] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), + [anon_sym_CARET] = ACTIONS(920), + [aux_sym_unquoted_token3] = ACTIONS(952), + [aux_sym_unquoted_token5] = ACTIONS(1716), [anon_sym_POUND] = ACTIONS(113), }, [770] = { + [sym__expr_unary_minus] = STATE(9980), + [sym_expr_parenthesized] = STATE(8494), + [sym_val_range] = STATE(9990), + [sym__val_range] = STATE(10001), + [sym__val_range_with_end] = STATE(10049), + [sym__value] = STATE(9990), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(9118), + [sym_val_variable] = STATE(5224), + [sym__var] = STATE(4556), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(7035), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(9960), + [sym_list_body] = STATE(10600), + [sym_val_entry] = STATE(9992), + [sym__list_item_expression] = STATE(10082), + [sym__list_item_starts_with_sign] = STATE(10149), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_short_flag] = STATE(10149), + [sym_long_flag] = STATE(10149), + [sym_long_flag_equals_value] = STATE(3793), + [sym__unquoted_in_list] = STATE(9353), + [sym__unquoted_in_list_with_expr] = STATE(10149), + [sym__unquoted_anonymous_prefix] = STATE(9874), [sym_comment] = STATE(770), - [anon_sym_export] = ACTIONS(909), - [anon_sym_alias] = ACTIONS(909), - [anon_sym_let] = ACTIONS(909), - [anon_sym_let_DASHenv] = ACTIONS(909), - [anon_sym_mut] = ACTIONS(909), - [anon_sym_const] = ACTIONS(909), - [sym_cmd_identifier] = ACTIONS(909), - [anon_sym_def] = ACTIONS(909), - [anon_sym_export_DASHenv] = ACTIONS(909), - [anon_sym_extern] = ACTIONS(909), - [anon_sym_module] = ACTIONS(909), - [anon_sym_use] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_error] = ACTIONS(909), - [anon_sym_list] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_break] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_for] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_loop] = ACTIONS(909), - [anon_sym_make] = ACTIONS(909), - [anon_sym_while] = ACTIONS(909), - [anon_sym_do] = ACTIONS(909), - [anon_sym_if] = ACTIONS(909), - [anon_sym_else] = ACTIONS(909), - [anon_sym_match] = ACTIONS(909), - [anon_sym_RBRACE] = ACTIONS(909), - [anon_sym_try] = ACTIONS(909), - [anon_sym_catch] = ACTIONS(909), - [anon_sym_return] = ACTIONS(909), - [anon_sym_source] = ACTIONS(909), - [anon_sym_source_DASHenv] = ACTIONS(909), - [anon_sym_register] = ACTIONS(909), - [anon_sym_hide] = ACTIONS(909), - [anon_sym_hide_DASHenv] = ACTIONS(909), - [anon_sym_overlay] = ACTIONS(909), - [anon_sym_new] = ACTIONS(909), - [anon_sym_as] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(909), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(909), - [anon_sym_SLASH_SLASH] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(909), - [anon_sym_bit_DASHshr] = ACTIONS(909), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_not_DASHin] = ACTIONS(909), - [anon_sym_starts_DASHwith] = ACTIONS(909), - [anon_sym_ends_DASHwith] = ACTIONS(909), - [anon_sym_EQ_TILDE] = ACTIONS(909), - [anon_sym_BANG_TILDE] = ACTIONS(909), - [anon_sym_bit_DASHand] = ACTIONS(909), - [anon_sym_bit_DASHxor] = ACTIONS(909), - [anon_sym_bit_DASHor] = ACTIONS(909), - [anon_sym_and] = ACTIONS(909), - [anon_sym_xor] = ACTIONS(909), - [anon_sym_or] = ACTIONS(909), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [aux_sym__immediate_decimal_token2] = ACTIONS(1551), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(909), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(909), - [aux_sym__val_number_token1] = ACTIONS(909), - [aux_sym__val_number_token2] = ACTIONS(909), - [aux_sym__val_number_token3] = ACTIONS(909), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(909), - [aux_sym__val_number_token6] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym__str_single_quotes] = ACTIONS(909), - [sym__str_back_ticks] = ACTIONS(909), - [sym__entry_separator] = ACTIONS(911), - [aux_sym__record_key_token2] = ACTIONS(909), - [anon_sym_POUND] = ACTIONS(113), + [aux_sym_list_body_repeat1] = STATE(851), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_RBRACK] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1734), + [anon_sym_DOT_DOT_LT] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [aux_sym__val_number_decimal_token1] = ACTIONS(1740), + [aux_sym__val_number_decimal_token2] = ACTIONS(1742), + [anon_sym_DOT2] = ACTIONS(1744), + [aux_sym__val_number_decimal_token3] = ACTIONS(1746), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [aux_sym__val_number_token4] = ACTIONS(1750), + [aux_sym__val_number_token5] = ACTIONS(1750), + [aux_sym__val_number_token6] = ACTIONS(1750), + [anon_sym_0b] = ACTIONS(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(3), }, [771] = { + [sym__expr_unary_minus] = STATE(9980), + [sym_expr_parenthesized] = STATE(8494), + [sym_val_range] = STATE(9990), + [sym__val_range] = STATE(10001), + [sym__val_range_with_end] = STATE(10049), + [sym__value] = STATE(9990), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(9118), + [sym_val_variable] = STATE(5224), + [sym__var] = STATE(4556), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(7035), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(9877), + [sym_list_body] = STATE(10854), + [sym_val_entry] = STATE(9992), + [sym__list_item_expression] = STATE(10082), + [sym__list_item_starts_with_sign] = STATE(10149), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_short_flag] = STATE(10149), + [sym_long_flag] = STATE(10149), + [sym_long_flag_equals_value] = STATE(3793), + [sym__unquoted_in_list] = STATE(9353), + [sym__unquoted_in_list_with_expr] = STATE(10149), + [sym__unquoted_anonymous_prefix] = STATE(9874), [sym_comment] = STATE(771), - [anon_sym_export] = ACTIONS(917), - [anon_sym_alias] = ACTIONS(917), - [anon_sym_let] = ACTIONS(917), - [anon_sym_let_DASHenv] = ACTIONS(917), - [anon_sym_mut] = ACTIONS(917), - [anon_sym_const] = ACTIONS(917), - [sym_cmd_identifier] = ACTIONS(917), - [anon_sym_def] = ACTIONS(917), - [anon_sym_export_DASHenv] = ACTIONS(917), - [anon_sym_extern] = ACTIONS(917), - [anon_sym_module] = ACTIONS(917), - [anon_sym_use] = ACTIONS(917), - [anon_sym_LPAREN] = ACTIONS(917), - [anon_sym_DOLLAR] = ACTIONS(917), - [anon_sym_error] = ACTIONS(917), - [anon_sym_list] = ACTIONS(917), - [anon_sym_GT] = ACTIONS(917), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_break] = ACTIONS(917), - [anon_sym_continue] = ACTIONS(917), - [anon_sym_for] = ACTIONS(917), - [anon_sym_in] = ACTIONS(917), - [anon_sym_loop] = ACTIONS(917), - [anon_sym_make] = ACTIONS(917), - [anon_sym_while] = ACTIONS(917), - [anon_sym_do] = ACTIONS(917), - [anon_sym_if] = ACTIONS(917), - [anon_sym_else] = ACTIONS(917), - [anon_sym_match] = ACTIONS(917), - [anon_sym_RBRACE] = ACTIONS(917), - [anon_sym_try] = ACTIONS(917), - [anon_sym_catch] = ACTIONS(917), - [anon_sym_return] = ACTIONS(917), - [anon_sym_source] = ACTIONS(917), - [anon_sym_source_DASHenv] = ACTIONS(917), - [anon_sym_register] = ACTIONS(917), - [anon_sym_hide] = ACTIONS(917), - [anon_sym_hide_DASHenv] = ACTIONS(917), - [anon_sym_overlay] = ACTIONS(917), - [anon_sym_new] = ACTIONS(917), - [anon_sym_as] = ACTIONS(917), - [anon_sym_STAR] = ACTIONS(917), - [anon_sym_STAR_STAR] = ACTIONS(917), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_mod] = ACTIONS(917), - [anon_sym_SLASH_SLASH] = ACTIONS(917), - [anon_sym_PLUS] = ACTIONS(917), - [anon_sym_bit_DASHshl] = ACTIONS(917), - [anon_sym_bit_DASHshr] = ACTIONS(917), - [anon_sym_EQ_EQ] = ACTIONS(917), - [anon_sym_BANG_EQ] = ACTIONS(917), - [anon_sym_LT2] = ACTIONS(917), - [anon_sym_LT_EQ] = ACTIONS(917), - [anon_sym_GT_EQ] = ACTIONS(917), - [anon_sym_not_DASHin] = ACTIONS(917), - [anon_sym_starts_DASHwith] = ACTIONS(917), - [anon_sym_ends_DASHwith] = ACTIONS(917), - [anon_sym_EQ_TILDE] = ACTIONS(917), - [anon_sym_BANG_TILDE] = ACTIONS(917), - [anon_sym_bit_DASHand] = ACTIONS(917), - [anon_sym_bit_DASHxor] = ACTIONS(917), - [anon_sym_bit_DASHor] = ACTIONS(917), - [anon_sym_and] = ACTIONS(917), - [anon_sym_xor] = ACTIONS(917), - [anon_sym_or] = ACTIONS(917), - [anon_sym_DOT_DOT2] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(919), - [anon_sym_DOT_DOT_LT2] = ACTIONS(919), - [aux_sym__immediate_decimal_token2] = ACTIONS(1578), - [aux_sym__val_number_decimal_token1] = ACTIONS(917), - [aux_sym__val_number_decimal_token2] = ACTIONS(917), - [anon_sym_DOT2] = ACTIONS(917), - [aux_sym__val_number_decimal_token3] = ACTIONS(917), - [aux_sym__val_number_token1] = ACTIONS(917), - [aux_sym__val_number_token2] = ACTIONS(917), - [aux_sym__val_number_token3] = ACTIONS(917), - [aux_sym__val_number_token4] = ACTIONS(917), - [aux_sym__val_number_token5] = ACTIONS(917), - [aux_sym__val_number_token6] = ACTIONS(917), - [sym_filesize_unit] = ACTIONS(917), - [sym_duration_unit] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(917), - [sym__str_single_quotes] = ACTIONS(917), - [sym__str_back_ticks] = ACTIONS(917), - [sym__entry_separator] = ACTIONS(919), - [aux_sym__record_key_token2] = ACTIONS(917), - [anon_sym_POUND] = ACTIONS(113), + [aux_sym_list_body_repeat1] = STATE(851), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_RBRACK] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1734), + [anon_sym_DOT_DOT_LT] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [aux_sym__val_number_decimal_token1] = ACTIONS(1740), + [aux_sym__val_number_decimal_token2] = ACTIONS(1742), + [anon_sym_DOT2] = ACTIONS(1744), + [aux_sym__val_number_decimal_token3] = ACTIONS(1746), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [aux_sym__val_number_token4] = ACTIONS(1750), + [aux_sym__val_number_token5] = ACTIONS(1750), + [aux_sym__val_number_token6] = ACTIONS(1750), + [anon_sym_0b] = ACTIONS(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(3), }, [772] = { + [sym__expr_unary_minus] = STATE(9980), + [sym_expr_parenthesized] = STATE(8494), + [sym_val_range] = STATE(9990), + [sym__val_range] = STATE(10001), + [sym__val_range_with_end] = STATE(10049), + [sym__value] = STATE(9990), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(9118), + [sym_val_variable] = STATE(5224), + [sym__var] = STATE(4556), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(7035), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(9885), + [sym_list_body] = STATE(10407), + [sym_val_entry] = STATE(9992), + [sym__list_item_expression] = STATE(10082), + [sym__list_item_starts_with_sign] = STATE(10149), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_short_flag] = STATE(10149), + [sym_long_flag] = STATE(10149), + [sym_long_flag_equals_value] = STATE(3793), + [sym__unquoted_in_list] = STATE(9353), + [sym__unquoted_in_list_with_expr] = STATE(10149), + [sym__unquoted_anonymous_prefix] = STATE(9874), [sym_comment] = STATE(772), - [anon_sym_export] = ACTIONS(909), - [anon_sym_alias] = ACTIONS(909), - [anon_sym_let] = ACTIONS(909), - [anon_sym_let_DASHenv] = ACTIONS(909), - [anon_sym_mut] = ACTIONS(909), - [anon_sym_const] = ACTIONS(909), - [sym_cmd_identifier] = ACTIONS(909), - [anon_sym_def] = ACTIONS(909), - [anon_sym_export_DASHenv] = ACTIONS(909), - [anon_sym_extern] = ACTIONS(909), - [anon_sym_module] = ACTIONS(909), - [anon_sym_use] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(911), - [anon_sym_DOLLAR] = ACTIONS(911), - [anon_sym_error] = ACTIONS(909), - [anon_sym_list] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_break] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_for] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_loop] = ACTIONS(909), - [anon_sym_make] = ACTIONS(909), - [anon_sym_while] = ACTIONS(909), - [anon_sym_do] = ACTIONS(909), - [anon_sym_if] = ACTIONS(909), - [anon_sym_else] = ACTIONS(909), - [anon_sym_match] = ACTIONS(909), - [anon_sym_RBRACE] = ACTIONS(911), - [anon_sym_try] = ACTIONS(909), - [anon_sym_catch] = ACTIONS(909), - [anon_sym_return] = ACTIONS(909), - [anon_sym_source] = ACTIONS(909), - [anon_sym_source_DASHenv] = ACTIONS(909), - [anon_sym_register] = ACTIONS(909), - [anon_sym_hide] = ACTIONS(909), - [anon_sym_hide_DASHenv] = ACTIONS(909), - [anon_sym_overlay] = ACTIONS(909), - [anon_sym_new] = ACTIONS(909), - [anon_sym_as] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(911), - [anon_sym_PLUS_PLUS] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(909), - [anon_sym_SLASH_SLASH] = ACTIONS(911), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(909), - [anon_sym_bit_DASHshr] = ACTIONS(909), - [anon_sym_EQ_EQ] = ACTIONS(911), - [anon_sym_BANG_EQ] = ACTIONS(911), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(911), - [anon_sym_GT_EQ] = ACTIONS(911), - [anon_sym_not_DASHin] = ACTIONS(909), - [anon_sym_starts_DASHwith] = ACTIONS(909), - [anon_sym_ends_DASHwith] = ACTIONS(909), - [anon_sym_EQ_TILDE] = ACTIONS(911), - [anon_sym_BANG_TILDE] = ACTIONS(911), - [anon_sym_bit_DASHand] = ACTIONS(909), - [anon_sym_bit_DASHxor] = ACTIONS(909), - [anon_sym_bit_DASHor] = ACTIONS(909), - [anon_sym_and] = ACTIONS(909), - [anon_sym_xor] = ACTIONS(909), - [anon_sym_or] = ACTIONS(909), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(911), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(911), - [aux_sym__val_number_token1] = ACTIONS(911), - [aux_sym__val_number_token2] = ACTIONS(911), - [aux_sym__val_number_token3] = ACTIONS(911), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(911), - [aux_sym__val_number_token6] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(911), - [sym__str_single_quotes] = ACTIONS(911), - [sym__str_back_ticks] = ACTIONS(911), - [aux_sym__record_key_token2] = ACTIONS(909), - [aux_sym_unquoted_token5] = ACTIONS(909), + [aux_sym_list_body_repeat1] = STATE(851), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_RBRACK] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1734), + [anon_sym_DOT_DOT_LT] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [aux_sym__val_number_decimal_token1] = ACTIONS(1740), + [aux_sym__val_number_decimal_token2] = ACTIONS(1742), + [anon_sym_DOT2] = ACTIONS(1744), + [aux_sym__val_number_decimal_token3] = ACTIONS(1746), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [aux_sym__val_number_token4] = ACTIONS(1750), + [aux_sym__val_number_token5] = ACTIONS(1750), + [aux_sym__val_number_token6] = ACTIONS(1750), + [anon_sym_0b] = ACTIONS(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1499), [anon_sym_POUND] = ACTIONS(3), }, [773] = { - [sym_cell_path] = STATE(824), - [sym_path] = STATE(767), + [sym__expr_unary_minus] = STATE(9980), + [sym_expr_parenthesized] = STATE(8494), + [sym_val_range] = STATE(9990), + [sym__val_range] = STATE(10001), + [sym__val_range_with_end] = STATE(10049), + [sym__value] = STATE(9990), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(9118), + [sym_val_variable] = STATE(5224), + [sym__var] = STATE(4556), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(7035), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(9892), + [sym_list_body] = STATE(10317), + [sym_val_entry] = STATE(9992), + [sym__list_item_expression] = STATE(10082), + [sym__list_item_starts_with_sign] = STATE(10149), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_short_flag] = STATE(10149), + [sym_long_flag] = STATE(10149), + [sym_long_flag_equals_value] = STATE(3793), + [sym__unquoted_in_list] = STATE(9353), + [sym__unquoted_in_list_with_expr] = STATE(10149), + [sym__unquoted_anonymous_prefix] = STATE(9874), [sym_comment] = STATE(773), - [anon_sym_export] = ACTIONS(1010), - [anon_sym_alias] = ACTIONS(1010), - [anon_sym_let] = ACTIONS(1010), - [anon_sym_let_DASHenv] = ACTIONS(1010), - [anon_sym_mut] = ACTIONS(1010), - [anon_sym_const] = ACTIONS(1010), - [sym_cmd_identifier] = ACTIONS(1010), - [anon_sym_def] = ACTIONS(1010), - [anon_sym_export_DASHenv] = ACTIONS(1010), - [anon_sym_extern] = ACTIONS(1010), - [anon_sym_module] = ACTIONS(1010), - [anon_sym_use] = ACTIONS(1010), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_error] = ACTIONS(1010), - [anon_sym_list] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1010), - [anon_sym_continue] = ACTIONS(1010), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_in] = ACTIONS(1010), - [anon_sym_loop] = ACTIONS(1010), - [anon_sym_make] = ACTIONS(1010), - [anon_sym_while] = ACTIONS(1010), - [anon_sym_do] = ACTIONS(1010), - [anon_sym_if] = ACTIONS(1010), - [anon_sym_else] = ACTIONS(1010), - [anon_sym_match] = ACTIONS(1010), - [anon_sym_RBRACE] = ACTIONS(1010), - [anon_sym_try] = ACTIONS(1010), - [anon_sym_catch] = ACTIONS(1010), - [anon_sym_return] = ACTIONS(1010), - [anon_sym_source] = ACTIONS(1010), - [anon_sym_source_DASHenv] = ACTIONS(1010), - [anon_sym_register] = ACTIONS(1010), - [anon_sym_hide] = ACTIONS(1010), - [anon_sym_hide_DASHenv] = ACTIONS(1010), - [anon_sym_overlay] = ACTIONS(1010), - [anon_sym_new] = ACTIONS(1010), - [anon_sym_as] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1010), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_SLASH] = ACTIONS(1010), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT2] = ACTIONS(1010), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT_EQ] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_DOT_DOT2] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(1576), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), - [aux_sym__val_number_decimal_token1] = ACTIONS(1010), - [aux_sym__val_number_decimal_token2] = ACTIONS(1010), - [anon_sym_DOT2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = 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(1010), - [aux_sym__val_number_token5] = ACTIONS(1010), - [aux_sym__val_number_token6] = ACTIONS(1010), - [anon_sym_DQUOTE] = ACTIONS(1010), - [sym__str_single_quotes] = ACTIONS(1010), - [sym__str_back_ticks] = ACTIONS(1010), - [sym__entry_separator] = ACTIONS(1012), - [aux_sym__record_key_token2] = ACTIONS(1010), - [anon_sym_POUND] = ACTIONS(113), + [aux_sym_list_body_repeat1] = STATE(851), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_RBRACK] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1734), + [anon_sym_DOT_DOT_LT] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [aux_sym__val_number_decimal_token1] = ACTIONS(1740), + [aux_sym__val_number_decimal_token2] = ACTIONS(1742), + [anon_sym_DOT2] = ACTIONS(1744), + [aux_sym__val_number_decimal_token3] = ACTIONS(1746), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [aux_sym__val_number_token4] = ACTIONS(1750), + [aux_sym__val_number_token5] = ACTIONS(1750), + [aux_sym__val_number_token6] = ACTIONS(1750), + [anon_sym_0b] = ACTIONS(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(3), }, [774] = { - [sym__immediate_decimal] = STATE(9346), + [sym__expr_unary_minus] = STATE(9980), + [sym_expr_parenthesized] = STATE(8494), + [sym_val_range] = STATE(9990), + [sym__val_range] = STATE(10001), + [sym__val_range_with_end] = STATE(10049), + [sym__value] = STATE(9990), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(9118), + [sym_val_variable] = STATE(5224), + [sym__var] = STATE(4556), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(7035), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(9902), + [sym_list_body] = STATE(10713), + [sym_val_entry] = STATE(9992), + [sym__list_item_expression] = STATE(10082), + [sym__list_item_starts_with_sign] = STATE(10149), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_short_flag] = STATE(10149), + [sym_long_flag] = STATE(10149), + [sym_long_flag_equals_value] = STATE(3793), + [sym__unquoted_in_list] = STATE(9353), + [sym__unquoted_in_list_with_expr] = STATE(10149), + [sym__unquoted_anonymous_prefix] = STATE(9874), [sym_comment] = STATE(774), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(938), - [anon_sym_error] = ACTIONS(936), - [anon_sym_list] = ACTIONS(936), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_make] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_else] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_RBRACE] = ACTIONS(938), - [anon_sym_try] = ACTIONS(936), - [anon_sym_catch] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_new] = ACTIONS(936), - [anon_sym_as] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_STAR_STAR] = ACTIONS(938), - [anon_sym_PLUS_PLUS] = ACTIONS(938), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(936), - [anon_sym_SLASH_SLASH] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(936), - [anon_sym_bit_DASHshr] = ACTIONS(936), - [anon_sym_EQ_EQ] = ACTIONS(938), - [anon_sym_BANG_EQ] = ACTIONS(938), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(938), - [anon_sym_GT_EQ] = ACTIONS(938), - [anon_sym_not_DASHin] = ACTIONS(936), - [anon_sym_starts_DASHwith] = ACTIONS(936), - [anon_sym_ends_DASHwith] = ACTIONS(936), - [anon_sym_EQ_TILDE] = ACTIONS(938), - [anon_sym_BANG_TILDE] = ACTIONS(938), - [anon_sym_bit_DASHand] = ACTIONS(936), - [anon_sym_bit_DASHxor] = ACTIONS(936), - [anon_sym_bit_DASHor] = ACTIONS(936), - [anon_sym_and] = ACTIONS(936), - [anon_sym_xor] = ACTIONS(936), - [anon_sym_or] = ACTIONS(936), - [anon_sym_DOT] = ACTIONS(1580), - [aux_sym__immediate_decimal_token1] = ACTIONS(942), - [aux_sym__immediate_decimal_token3] = ACTIONS(1582), - [aux_sym__immediate_decimal_token4] = ACTIONS(1584), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(938), - [aux_sym__val_number_token2] = ACTIONS(938), - [aux_sym__val_number_token3] = ACTIONS(938), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(938), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(938), - [sym__str_single_quotes] = ACTIONS(938), - [sym__str_back_ticks] = ACTIONS(938), - [aux_sym__record_key_token2] = ACTIONS(936), - [aux_sym_unquoted_token3] = ACTIONS(1586), - [aux_sym_unquoted_token5] = ACTIONS(1588), + [aux_sym_list_body_repeat1] = STATE(851), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_RBRACK] = ACTIONS(1768), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1734), + [anon_sym_DOT_DOT_LT] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [aux_sym__val_number_decimal_token1] = ACTIONS(1740), + [aux_sym__val_number_decimal_token2] = ACTIONS(1742), + [anon_sym_DOT2] = ACTIONS(1744), + [aux_sym__val_number_decimal_token3] = ACTIONS(1746), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [aux_sym__val_number_token4] = ACTIONS(1750), + [aux_sym__val_number_token5] = ACTIONS(1750), + [aux_sym__val_number_token6] = ACTIONS(1750), + [anon_sym_0b] = ACTIONS(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1499), [anon_sym_POUND] = ACTIONS(3), }, [775] = { - [sym_path] = STATE(809), + [sym__expr_unary_minus] = STATE(9980), + [sym_expr_parenthesized] = STATE(8494), + [sym_val_range] = STATE(9990), + [sym__val_range] = STATE(10001), + [sym__val_range_with_end] = STATE(10049), + [sym__value] = STATE(9990), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(9118), + [sym_val_variable] = STATE(5224), + [sym__var] = STATE(4556), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(7035), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(9904), + [sym_list_body] = STATE(10903), + [sym_val_entry] = STATE(9992), + [sym__list_item_expression] = STATE(10082), + [sym__list_item_starts_with_sign] = STATE(10149), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_short_flag] = STATE(10149), + [sym_long_flag] = STATE(10149), + [sym_long_flag_equals_value] = STATE(3793), + [sym__unquoted_in_list] = STATE(9353), + [sym__unquoted_in_list_with_expr] = STATE(10149), + [sym__unquoted_anonymous_prefix] = STATE(9874), [sym_comment] = STATE(775), - [aux_sym_cell_path_repeat1] = STATE(776), - [anon_sym_export] = ACTIONS(1006), - [anon_sym_alias] = ACTIONS(1006), - [anon_sym_let] = ACTIONS(1006), - [anon_sym_let_DASHenv] = ACTIONS(1006), - [anon_sym_mut] = ACTIONS(1006), - [anon_sym_const] = ACTIONS(1006), - [sym_cmd_identifier] = ACTIONS(1006), - [anon_sym_def] = ACTIONS(1006), - [anon_sym_export_DASHenv] = ACTIONS(1006), - [anon_sym_extern] = ACTIONS(1006), - [anon_sym_module] = ACTIONS(1006), - [anon_sym_use] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_error] = ACTIONS(1006), - [anon_sym_list] = ACTIONS(1006), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_break] = ACTIONS(1006), - [anon_sym_continue] = ACTIONS(1006), - [anon_sym_for] = ACTIONS(1006), - [anon_sym_in] = ACTIONS(1006), - [anon_sym_loop] = ACTIONS(1006), - [anon_sym_make] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(1006), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_else] = ACTIONS(1006), - [anon_sym_match] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1006), - [anon_sym_try] = ACTIONS(1006), - [anon_sym_catch] = ACTIONS(1006), - [anon_sym_return] = ACTIONS(1006), - [anon_sym_source] = ACTIONS(1006), - [anon_sym_source_DASHenv] = ACTIONS(1006), - [anon_sym_register] = ACTIONS(1006), - [anon_sym_hide] = ACTIONS(1006), - [anon_sym_hide_DASHenv] = ACTIONS(1006), - [anon_sym_overlay] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1006), - [anon_sym_as] = ACTIONS(1006), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_STAR_STAR] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_mod] = ACTIONS(1006), - [anon_sym_SLASH_SLASH] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_bit_DASHshl] = ACTIONS(1006), - [anon_sym_bit_DASHshr] = ACTIONS(1006), - [anon_sym_EQ_EQ] = ACTIONS(1006), - [anon_sym_BANG_EQ] = ACTIONS(1006), - [anon_sym_LT2] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1006), - [anon_sym_GT_EQ] = ACTIONS(1006), - [anon_sym_not_DASHin] = ACTIONS(1006), - [anon_sym_starts_DASHwith] = ACTIONS(1006), - [anon_sym_ends_DASHwith] = ACTIONS(1006), - [anon_sym_EQ_TILDE] = ACTIONS(1006), - [anon_sym_BANG_TILDE] = ACTIONS(1006), - [anon_sym_bit_DASHand] = ACTIONS(1006), - [anon_sym_bit_DASHxor] = ACTIONS(1006), - [anon_sym_bit_DASHor] = ACTIONS(1006), - [anon_sym_and] = ACTIONS(1006), - [anon_sym_xor] = ACTIONS(1006), - [anon_sym_or] = ACTIONS(1006), - [anon_sym_DOT_DOT2] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1576), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1006), - [anon_sym_DOT2] = ACTIONS(1006), - [aux_sym__val_number_decimal_token3] = ACTIONS(1006), - [aux_sym__val_number_token1] = ACTIONS(1006), - [aux_sym__val_number_token2] = ACTIONS(1006), - [aux_sym__val_number_token3] = ACTIONS(1006), - [aux_sym__val_number_token4] = ACTIONS(1006), - [aux_sym__val_number_token5] = ACTIONS(1006), - [aux_sym__val_number_token6] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym__str_single_quotes] = ACTIONS(1006), - [sym__str_back_ticks] = ACTIONS(1006), - [sym__entry_separator] = ACTIONS(1008), - [aux_sym__record_key_token2] = ACTIONS(1006), - [anon_sym_POUND] = ACTIONS(113), + [aux_sym_list_body_repeat1] = STATE(851), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_RBRACK] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1734), + [anon_sym_DOT_DOT_LT] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [aux_sym__val_number_decimal_token1] = ACTIONS(1740), + [aux_sym__val_number_decimal_token2] = ACTIONS(1742), + [anon_sym_DOT2] = ACTIONS(1744), + [aux_sym__val_number_decimal_token3] = ACTIONS(1746), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [aux_sym__val_number_token4] = ACTIONS(1750), + [aux_sym__val_number_token5] = ACTIONS(1750), + [aux_sym__val_number_token6] = ACTIONS(1750), + [anon_sym_0b] = ACTIONS(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(3), }, [776] = { - [sym_path] = STATE(809), + [sym__expr_unary_minus] = STATE(9980), + [sym_expr_parenthesized] = STATE(8494), + [sym_val_range] = STATE(9990), + [sym__val_range] = STATE(10001), + [sym__val_range_with_end] = STATE(10049), + [sym__value] = STATE(9990), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(9118), + [sym_val_variable] = STATE(5224), + [sym__var] = STATE(4556), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(7035), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(9908), + [sym_list_body] = STATE(10312), + [sym_val_entry] = STATE(9992), + [sym__list_item_expression] = STATE(10082), + [sym__list_item_starts_with_sign] = STATE(10149), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_short_flag] = STATE(10149), + [sym_long_flag] = STATE(10149), + [sym_long_flag_equals_value] = STATE(3793), + [sym__unquoted_in_list] = STATE(9353), + [sym__unquoted_in_list_with_expr] = STATE(10149), + [sym__unquoted_anonymous_prefix] = STATE(9874), [sym_comment] = STATE(776), - [aux_sym_cell_path_repeat1] = STATE(776), - [anon_sym_export] = ACTIONS(999), - [anon_sym_alias] = ACTIONS(999), - [anon_sym_let] = ACTIONS(999), - [anon_sym_let_DASHenv] = ACTIONS(999), - [anon_sym_mut] = ACTIONS(999), - [anon_sym_const] = ACTIONS(999), - [sym_cmd_identifier] = ACTIONS(999), - [anon_sym_def] = ACTIONS(999), - [anon_sym_export_DASHenv] = ACTIONS(999), - [anon_sym_extern] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_use] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_error] = ACTIONS(999), - [anon_sym_list] = ACTIONS(999), - [anon_sym_GT] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_break] = ACTIONS(999), - [anon_sym_continue] = ACTIONS(999), - [anon_sym_for] = ACTIONS(999), - [anon_sym_in] = ACTIONS(999), - [anon_sym_loop] = ACTIONS(999), - [anon_sym_make] = ACTIONS(999), - [anon_sym_while] = ACTIONS(999), - [anon_sym_do] = ACTIONS(999), - [anon_sym_if] = ACTIONS(999), - [anon_sym_else] = ACTIONS(999), - [anon_sym_match] = ACTIONS(999), - [anon_sym_RBRACE] = ACTIONS(999), - [anon_sym_try] = ACTIONS(999), - [anon_sym_catch] = ACTIONS(999), - [anon_sym_return] = ACTIONS(999), - [anon_sym_source] = ACTIONS(999), - [anon_sym_source_DASHenv] = ACTIONS(999), - [anon_sym_register] = ACTIONS(999), - [anon_sym_hide] = ACTIONS(999), - [anon_sym_hide_DASHenv] = ACTIONS(999), - [anon_sym_overlay] = ACTIONS(999), - [anon_sym_new] = ACTIONS(999), - [anon_sym_as] = ACTIONS(999), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_STAR_STAR] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(999), - [anon_sym_mod] = ACTIONS(999), - [anon_sym_SLASH_SLASH] = ACTIONS(999), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_bit_DASHshl] = ACTIONS(999), - [anon_sym_bit_DASHshr] = ACTIONS(999), - [anon_sym_EQ_EQ] = ACTIONS(999), - [anon_sym_BANG_EQ] = ACTIONS(999), - [anon_sym_LT2] = ACTIONS(999), - [anon_sym_LT_EQ] = ACTIONS(999), - [anon_sym_GT_EQ] = ACTIONS(999), - [anon_sym_not_DASHin] = ACTIONS(999), - [anon_sym_starts_DASHwith] = ACTIONS(999), - [anon_sym_ends_DASHwith] = ACTIONS(999), - [anon_sym_EQ_TILDE] = ACTIONS(999), - [anon_sym_BANG_TILDE] = ACTIONS(999), - [anon_sym_bit_DASHand] = ACTIONS(999), - [anon_sym_bit_DASHxor] = ACTIONS(999), - [anon_sym_bit_DASHor] = ACTIONS(999), - [anon_sym_and] = ACTIONS(999), - [anon_sym_xor] = ACTIONS(999), - [anon_sym_or] = ACTIONS(999), - [anon_sym_DOT_DOT2] = ACTIONS(999), - [anon_sym_DOT] = ACTIONS(1590), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1001), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1001), - [aux_sym__val_number_decimal_token1] = ACTIONS(999), - [aux_sym__val_number_decimal_token2] = ACTIONS(999), - [anon_sym_DOT2] = ACTIONS(999), - [aux_sym__val_number_decimal_token3] = ACTIONS(999), - [aux_sym__val_number_token1] = ACTIONS(999), - [aux_sym__val_number_token2] = ACTIONS(999), - [aux_sym__val_number_token3] = ACTIONS(999), - [aux_sym__val_number_token4] = ACTIONS(999), - [aux_sym__val_number_token5] = ACTIONS(999), - [aux_sym__val_number_token6] = ACTIONS(999), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym__str_single_quotes] = ACTIONS(999), - [sym__str_back_ticks] = ACTIONS(999), - [sym__entry_separator] = ACTIONS(1001), - [aux_sym__record_key_token2] = ACTIONS(999), - [anon_sym_POUND] = ACTIONS(113), + [aux_sym_list_body_repeat1] = STATE(851), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_RBRACK] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1734), + [anon_sym_DOT_DOT_LT] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [aux_sym__val_number_decimal_token1] = ACTIONS(1740), + [aux_sym__val_number_decimal_token2] = ACTIONS(1742), + [anon_sym_DOT2] = ACTIONS(1744), + [aux_sym__val_number_decimal_token3] = ACTIONS(1746), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [aux_sym__val_number_token4] = ACTIONS(1750), + [aux_sym__val_number_token5] = ACTIONS(1750), + [aux_sym__val_number_token6] = ACTIONS(1750), + [anon_sym_0b] = ACTIONS(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(3), }, [777] = { - [sym__immediate_decimal] = STATE(10460), + [sym__expr_unary_minus] = STATE(9980), + [sym_expr_parenthesized] = STATE(8494), + [sym_val_range] = STATE(9990), + [sym__val_range] = STATE(10001), + [sym__val_range_with_end] = STATE(10049), + [sym__value] = STATE(9990), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(9118), + [sym_val_variable] = STATE(5224), + [sym__var] = STATE(4556), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(7035), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(9911), + [sym_list_body] = STATE(10826), + [sym_val_entry] = STATE(9992), + [sym__list_item_expression] = STATE(10082), + [sym__list_item_starts_with_sign] = STATE(10149), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_short_flag] = STATE(10149), + [sym_long_flag] = STATE(10149), + [sym_long_flag_equals_value] = STATE(3793), + [sym__unquoted_in_list] = STATE(9353), + [sym__unquoted_in_list_with_expr] = STATE(10149), + [sym__unquoted_anonymous_prefix] = STATE(9874), [sym_comment] = STATE(777), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_error] = ACTIONS(936), - [anon_sym_list] = ACTIONS(936), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_make] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_else] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_RBRACE] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_catch] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_new] = ACTIONS(936), - [anon_sym_as] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_STAR_STAR] = ACTIONS(936), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(936), - [anon_sym_SLASH_SLASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(936), - [anon_sym_bit_DASHshr] = ACTIONS(936), - [anon_sym_EQ_EQ] = ACTIONS(936), - [anon_sym_BANG_EQ] = ACTIONS(936), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(936), - [anon_sym_GT_EQ] = ACTIONS(936), - [anon_sym_not_DASHin] = ACTIONS(936), - [anon_sym_starts_DASHwith] = ACTIONS(936), - [anon_sym_ends_DASHwith] = ACTIONS(936), - [anon_sym_EQ_TILDE] = ACTIONS(936), - [anon_sym_BANG_TILDE] = ACTIONS(936), - [anon_sym_bit_DASHand] = ACTIONS(936), - [anon_sym_bit_DASHxor] = ACTIONS(936), - [anon_sym_bit_DASHor] = ACTIONS(936), - [anon_sym_and] = ACTIONS(936), - [anon_sym_xor] = ACTIONS(936), - [anon_sym_or] = ACTIONS(936), - [anon_sym_DOT] = ACTIONS(1593), - [aux_sym__immediate_decimal_token1] = ACTIONS(1045), - [aux_sym__immediate_decimal_token3] = ACTIONS(1045), - [aux_sym__immediate_decimal_token4] = ACTIONS(1047), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [sym__entry_separator] = ACTIONS(938), - [aux_sym__record_key_token2] = ACTIONS(936), - [aux_sym_unquoted_token4] = ACTIONS(1570), - [anon_sym_POUND] = ACTIONS(113), + [aux_sym_list_body_repeat1] = STATE(851), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_RBRACK] = ACTIONS(1774), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1734), + [anon_sym_DOT_DOT_LT] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [aux_sym__val_number_decimal_token1] = ACTIONS(1740), + [aux_sym__val_number_decimal_token2] = ACTIONS(1742), + [anon_sym_DOT2] = ACTIONS(1744), + [aux_sym__val_number_decimal_token3] = ACTIONS(1746), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [aux_sym__val_number_token4] = ACTIONS(1750), + [aux_sym__val_number_token5] = ACTIONS(1750), + [aux_sym__val_number_token6] = ACTIONS(1750), + [anon_sym_0b] = ACTIONS(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(3), }, [778] = { + [sym__expr_unary_minus] = STATE(9980), + [sym_expr_parenthesized] = STATE(8494), + [sym_val_range] = STATE(9990), + [sym__val_range] = STATE(10001), + [sym__val_range_with_end] = STATE(10049), + [sym__value] = STATE(9990), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(9118), + [sym_val_variable] = STATE(5224), + [sym__var] = STATE(4556), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(7035), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(9913), + [sym_list_body] = STATE(10283), + [sym_val_entry] = STATE(9992), + [sym__list_item_expression] = STATE(10082), + [sym__list_item_starts_with_sign] = STATE(10149), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_short_flag] = STATE(10149), + [sym_long_flag] = STATE(10149), + [sym_long_flag_equals_value] = STATE(3793), + [sym__unquoted_in_list] = STATE(9353), + [sym__unquoted_in_list_with_expr] = STATE(10149), + [sym__unquoted_anonymous_prefix] = STATE(9874), [sym_comment] = STATE(778), - [anon_sym_export] = ACTIONS(959), - [anon_sym_alias] = ACTIONS(959), - [anon_sym_let] = ACTIONS(959), - [anon_sym_let_DASHenv] = ACTIONS(959), - [anon_sym_mut] = ACTIONS(959), - [anon_sym_const] = ACTIONS(959), - [sym_cmd_identifier] = ACTIONS(959), - [anon_sym_def] = ACTIONS(959), - [anon_sym_export_DASHenv] = ACTIONS(959), - [anon_sym_extern] = ACTIONS(959), - [anon_sym_module] = ACTIONS(959), - [anon_sym_use] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(961), - [anon_sym_DOLLAR] = ACTIONS(961), - [anon_sym_error] = ACTIONS(959), - [anon_sym_list] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_break] = ACTIONS(959), - [anon_sym_continue] = ACTIONS(959), - [anon_sym_for] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_loop] = ACTIONS(959), - [anon_sym_make] = ACTIONS(959), - [anon_sym_while] = ACTIONS(959), - [anon_sym_do] = ACTIONS(959), - [anon_sym_if] = ACTIONS(959), - [anon_sym_else] = ACTIONS(959), - [anon_sym_match] = ACTIONS(959), - [anon_sym_RBRACE] = ACTIONS(961), - [anon_sym_try] = ACTIONS(959), - [anon_sym_catch] = ACTIONS(959), - [anon_sym_return] = ACTIONS(959), - [anon_sym_source] = ACTIONS(959), - [anon_sym_source_DASHenv] = ACTIONS(959), - [anon_sym_register] = ACTIONS(959), - [anon_sym_hide] = ACTIONS(959), - [anon_sym_hide_DASHenv] = ACTIONS(959), - [anon_sym_overlay] = ACTIONS(959), - [anon_sym_new] = ACTIONS(959), - [anon_sym_as] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(959), - [anon_sym_SLASH_SLASH] = ACTIONS(961), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(959), - [anon_sym_bit_DASHshr] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(961), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_not_DASHin] = ACTIONS(959), - [anon_sym_starts_DASHwith] = ACTIONS(959), - [anon_sym_ends_DASHwith] = ACTIONS(959), - [anon_sym_EQ_TILDE] = ACTIONS(961), - [anon_sym_BANG_TILDE] = ACTIONS(961), - [anon_sym_bit_DASHand] = ACTIONS(959), - [anon_sym_bit_DASHxor] = ACTIONS(959), - [anon_sym_bit_DASHor] = ACTIONS(959), - [anon_sym_and] = ACTIONS(959), - [anon_sym_xor] = ACTIONS(959), - [anon_sym_or] = ACTIONS(959), - [anon_sym_DOT_DOT2] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(1595), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(983), - [anon_sym_DOT_DOT_LT2] = ACTIONS(983), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(961), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(961), - [aux_sym__val_number_token1] = ACTIONS(961), - [aux_sym__val_number_token2] = ACTIONS(961), - [aux_sym__val_number_token3] = ACTIONS(961), - [aux_sym__val_number_token4] = ACTIONS(959), - [aux_sym__val_number_token5] = ACTIONS(961), - [aux_sym__val_number_token6] = ACTIONS(959), - [sym_filesize_unit] = ACTIONS(1597), - [sym_duration_unit] = ACTIONS(1599), - [anon_sym_DQUOTE] = ACTIONS(961), - [sym__str_single_quotes] = ACTIONS(961), - [sym__str_back_ticks] = ACTIONS(961), - [aux_sym__record_key_token2] = ACTIONS(959), - [aux_sym_unquoted_token5] = ACTIONS(1586), + [aux_sym_list_body_repeat1] = STATE(851), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1734), + [anon_sym_DOT_DOT_LT] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [aux_sym__val_number_decimal_token1] = ACTIONS(1740), + [aux_sym__val_number_decimal_token2] = ACTIONS(1742), + [anon_sym_DOT2] = ACTIONS(1744), + [aux_sym__val_number_decimal_token3] = ACTIONS(1746), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [aux_sym__val_number_token4] = ACTIONS(1750), + [aux_sym__val_number_token5] = ACTIONS(1750), + [aux_sym__val_number_token6] = ACTIONS(1750), + [anon_sym_0b] = ACTIONS(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1499), [anon_sym_POUND] = ACTIONS(3), }, [779] = { + [sym__expr_unary_minus] = STATE(9980), + [sym_expr_parenthesized] = STATE(8494), + [sym_val_range] = STATE(9990), + [sym__val_range] = STATE(10001), + [sym__val_range_with_end] = STATE(10049), + [sym__value] = STATE(9990), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(9118), + [sym_val_variable] = STATE(5224), + [sym__var] = STATE(4556), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(7035), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(9916), + [sym_list_body] = STATE(10757), + [sym_val_entry] = STATE(9992), + [sym__list_item_expression] = STATE(10082), + [sym__list_item_starts_with_sign] = STATE(10149), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_short_flag] = STATE(10149), + [sym_long_flag] = STATE(10149), + [sym_long_flag_equals_value] = STATE(3793), + [sym__unquoted_in_list] = STATE(9353), + [sym__unquoted_in_list_with_expr] = STATE(10149), + [sym__unquoted_anonymous_prefix] = STATE(9874), [sym_comment] = STATE(779), - [anon_sym_export] = ACTIONS(923), - [anon_sym_alias] = ACTIONS(923), - [anon_sym_let] = ACTIONS(923), - [anon_sym_let_DASHenv] = ACTIONS(923), - [anon_sym_mut] = ACTIONS(923), - [anon_sym_const] = ACTIONS(923), - [sym_cmd_identifier] = ACTIONS(923), - [anon_sym_def] = ACTIONS(923), - [anon_sym_export_DASHenv] = ACTIONS(923), - [anon_sym_extern] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_use] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(925), - [anon_sym_DOLLAR] = ACTIONS(925), - [anon_sym_error] = ACTIONS(923), - [anon_sym_list] = ACTIONS(923), - [anon_sym_GT] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_break] = ACTIONS(923), - [anon_sym_continue] = ACTIONS(923), - [anon_sym_for] = ACTIONS(923), - [anon_sym_in] = ACTIONS(923), - [anon_sym_loop] = ACTIONS(923), - [anon_sym_make] = ACTIONS(923), - [anon_sym_while] = ACTIONS(923), - [anon_sym_do] = ACTIONS(923), - [anon_sym_if] = ACTIONS(923), - [anon_sym_else] = ACTIONS(923), - [anon_sym_match] = ACTIONS(923), - [anon_sym_RBRACE] = ACTIONS(925), - [anon_sym_try] = ACTIONS(923), - [anon_sym_catch] = ACTIONS(923), - [anon_sym_return] = ACTIONS(923), - [anon_sym_source] = ACTIONS(923), - [anon_sym_source_DASHenv] = ACTIONS(923), - [anon_sym_register] = ACTIONS(923), - [anon_sym_hide] = ACTIONS(923), - [anon_sym_hide_DASHenv] = ACTIONS(923), - [anon_sym_overlay] = ACTIONS(923), - [anon_sym_new] = ACTIONS(923), - [anon_sym_as] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_STAR_STAR] = ACTIONS(925), - [anon_sym_PLUS_PLUS] = ACTIONS(925), - [anon_sym_SLASH] = ACTIONS(923), - [anon_sym_mod] = ACTIONS(923), - [anon_sym_SLASH_SLASH] = ACTIONS(925), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_bit_DASHshl] = ACTIONS(923), - [anon_sym_bit_DASHshr] = ACTIONS(923), - [anon_sym_EQ_EQ] = ACTIONS(925), - [anon_sym_BANG_EQ] = ACTIONS(925), - [anon_sym_LT2] = ACTIONS(923), - [anon_sym_LT_EQ] = ACTIONS(925), - [anon_sym_GT_EQ] = ACTIONS(925), - [anon_sym_not_DASHin] = ACTIONS(923), - [anon_sym_starts_DASHwith] = ACTIONS(923), - [anon_sym_ends_DASHwith] = ACTIONS(923), - [anon_sym_EQ_TILDE] = ACTIONS(925), - [anon_sym_BANG_TILDE] = ACTIONS(925), - [anon_sym_bit_DASHand] = ACTIONS(923), - [anon_sym_bit_DASHxor] = ACTIONS(923), - [anon_sym_bit_DASHor] = ACTIONS(923), - [anon_sym_and] = ACTIONS(923), - [anon_sym_xor] = ACTIONS(923), - [anon_sym_or] = ACTIONS(923), - [anon_sym_DOT_DOT2] = ACTIONS(923), - [anon_sym_DOT] = ACTIONS(1601), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(925), - [anon_sym_DOT_DOT_LT2] = ACTIONS(925), - [aux_sym__immediate_decimal_token2] = ACTIONS(1603), - [aux_sym__val_number_decimal_token1] = ACTIONS(923), - [aux_sym__val_number_decimal_token2] = ACTIONS(925), - [anon_sym_DOT2] = ACTIONS(923), - [aux_sym__val_number_decimal_token3] = ACTIONS(925), - [aux_sym__val_number_token1] = ACTIONS(925), - [aux_sym__val_number_token2] = ACTIONS(925), - [aux_sym__val_number_token3] = ACTIONS(925), - [aux_sym__val_number_token4] = ACTIONS(923), - [aux_sym__val_number_token5] = ACTIONS(925), - [aux_sym__val_number_token6] = ACTIONS(923), - [sym_filesize_unit] = ACTIONS(923), - [sym_duration_unit] = ACTIONS(923), - [anon_sym_DQUOTE] = ACTIONS(925), - [sym__str_single_quotes] = ACTIONS(925), - [sym__str_back_ticks] = ACTIONS(925), - [aux_sym__record_key_token2] = ACTIONS(923), + [aux_sym_list_body_repeat1] = STATE(851), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_RBRACK] = ACTIONS(1778), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1734), + [anon_sym_DOT_DOT_LT] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [aux_sym__val_number_decimal_token1] = ACTIONS(1740), + [aux_sym__val_number_decimal_token2] = ACTIONS(1742), + [anon_sym_DOT2] = ACTIONS(1744), + [aux_sym__val_number_decimal_token3] = ACTIONS(1746), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [aux_sym__val_number_token4] = ACTIONS(1750), + [aux_sym__val_number_token5] = ACTIONS(1750), + [aux_sym__val_number_token6] = ACTIONS(1750), + [anon_sym_0b] = ACTIONS(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1499), [anon_sym_POUND] = ACTIONS(3), }, [780] = { + [sym__expr_unary_minus] = STATE(9980), + [sym_expr_parenthesized] = STATE(8494), + [sym_val_range] = STATE(9990), + [sym__val_range] = STATE(10001), + [sym__val_range_with_end] = STATE(10049), + [sym__value] = STATE(9990), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(9118), + [sym_val_variable] = STATE(5224), + [sym__var] = STATE(4556), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(7035), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(9917), + [sym_list_body] = STATE(10456), + [sym_val_entry] = STATE(9992), + [sym__list_item_expression] = STATE(10082), + [sym__list_item_starts_with_sign] = STATE(10149), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_short_flag] = STATE(10149), + [sym_long_flag] = STATE(10149), + [sym_long_flag_equals_value] = STATE(3793), + [sym__unquoted_in_list] = STATE(9353), + [sym__unquoted_in_list_with_expr] = STATE(10149), + [sym__unquoted_anonymous_prefix] = STATE(9874), [sym_comment] = STATE(780), - [anon_sym_export] = ACTIONS(909), - [anon_sym_alias] = ACTIONS(909), - [anon_sym_let] = ACTIONS(909), - [anon_sym_let_DASHenv] = ACTIONS(909), - [anon_sym_mut] = ACTIONS(909), - [anon_sym_const] = ACTIONS(909), - [sym_cmd_identifier] = ACTIONS(909), - [anon_sym_def] = ACTIONS(909), - [anon_sym_export_DASHenv] = ACTIONS(909), - [anon_sym_extern] = ACTIONS(909), - [anon_sym_module] = ACTIONS(909), - [anon_sym_use] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(911), - [anon_sym_DOLLAR] = ACTIONS(911), - [anon_sym_error] = ACTIONS(909), - [anon_sym_list] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_break] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_for] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_loop] = ACTIONS(909), - [anon_sym_make] = ACTIONS(909), - [anon_sym_while] = ACTIONS(909), - [anon_sym_do] = ACTIONS(909), - [anon_sym_if] = ACTIONS(909), - [anon_sym_else] = ACTIONS(909), - [anon_sym_match] = ACTIONS(909), - [anon_sym_RBRACE] = ACTIONS(911), - [anon_sym_try] = ACTIONS(909), - [anon_sym_catch] = ACTIONS(909), - [anon_sym_return] = ACTIONS(909), - [anon_sym_source] = ACTIONS(909), - [anon_sym_source_DASHenv] = ACTIONS(909), - [anon_sym_register] = ACTIONS(909), - [anon_sym_hide] = ACTIONS(909), - [anon_sym_hide_DASHenv] = ACTIONS(909), - [anon_sym_overlay] = ACTIONS(909), - [anon_sym_new] = ACTIONS(909), - [anon_sym_as] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(911), - [anon_sym_PLUS_PLUS] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(909), - [anon_sym_SLASH_SLASH] = ACTIONS(911), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(909), - [anon_sym_bit_DASHshr] = ACTIONS(909), - [anon_sym_EQ_EQ] = ACTIONS(911), - [anon_sym_BANG_EQ] = ACTIONS(911), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(911), - [anon_sym_GT_EQ] = ACTIONS(911), - [anon_sym_not_DASHin] = ACTIONS(909), - [anon_sym_starts_DASHwith] = ACTIONS(909), - [anon_sym_ends_DASHwith] = ACTIONS(909), - [anon_sym_EQ_TILDE] = ACTIONS(911), - [anon_sym_BANG_TILDE] = ACTIONS(911), - [anon_sym_bit_DASHand] = ACTIONS(909), - [anon_sym_bit_DASHxor] = ACTIONS(909), - [anon_sym_bit_DASHor] = ACTIONS(909), - [anon_sym_and] = ACTIONS(909), - [anon_sym_xor] = ACTIONS(909), - [anon_sym_or] = ACTIONS(909), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [aux_sym__immediate_decimal_token1] = ACTIONS(1605), - [aux_sym__immediate_decimal_token2] = ACTIONS(1607), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(911), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(911), - [aux_sym__val_number_token1] = ACTIONS(911), - [aux_sym__val_number_token2] = ACTIONS(911), - [aux_sym__val_number_token3] = ACTIONS(911), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(911), - [aux_sym__val_number_token6] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(911), - [sym__str_single_quotes] = ACTIONS(911), - [sym__str_back_ticks] = ACTIONS(911), - [aux_sym__record_key_token2] = ACTIONS(909), + [aux_sym_list_body_repeat1] = STATE(851), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_RBRACK] = ACTIONS(1780), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1734), + [anon_sym_DOT_DOT_LT] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [aux_sym__val_number_decimal_token1] = ACTIONS(1740), + [aux_sym__val_number_decimal_token2] = ACTIONS(1742), + [anon_sym_DOT2] = ACTIONS(1744), + [aux_sym__val_number_decimal_token3] = ACTIONS(1746), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [aux_sym__val_number_token4] = ACTIONS(1750), + [aux_sym__val_number_token5] = ACTIONS(1750), + [aux_sym__val_number_token6] = ACTIONS(1750), + [anon_sym_0b] = ACTIONS(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1499), [anon_sym_POUND] = ACTIONS(3), }, [781] = { + [sym__expr_unary_minus] = STATE(9980), + [sym_expr_parenthesized] = STATE(8494), + [sym_val_range] = STATE(9990), + [sym__val_range] = STATE(10001), + [sym__val_range_with_end] = STATE(10049), + [sym__value] = STATE(9990), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(9118), + [sym_val_variable] = STATE(5224), + [sym__var] = STATE(4556), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(7035), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(9920), + [sym_list_body] = STATE(10765), + [sym_val_entry] = STATE(9992), + [sym__list_item_expression] = STATE(10082), + [sym__list_item_starts_with_sign] = STATE(10149), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_short_flag] = STATE(10149), + [sym_long_flag] = STATE(10149), + [sym_long_flag_equals_value] = STATE(3793), + [sym__unquoted_in_list] = STATE(9353), + [sym__unquoted_in_list_with_expr] = STATE(10149), + [sym__unquoted_anonymous_prefix] = STATE(9874), [sym_comment] = STATE(781), - [anon_sym_export] = ACTIONS(923), - [anon_sym_alias] = ACTIONS(923), - [anon_sym_let] = ACTIONS(923), - [anon_sym_let_DASHenv] = ACTIONS(923), - [anon_sym_mut] = ACTIONS(923), - [anon_sym_const] = ACTIONS(923), - [sym_cmd_identifier] = ACTIONS(923), - [anon_sym_def] = ACTIONS(923), - [anon_sym_export_DASHenv] = ACTIONS(923), - [anon_sym_extern] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_use] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_DOLLAR] = ACTIONS(923), - [anon_sym_error] = ACTIONS(923), - [anon_sym_list] = ACTIONS(923), - [anon_sym_GT] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_break] = ACTIONS(923), - [anon_sym_continue] = ACTIONS(923), - [anon_sym_for] = ACTIONS(923), - [anon_sym_in] = ACTIONS(923), - [anon_sym_loop] = ACTIONS(923), - [anon_sym_make] = ACTIONS(923), - [anon_sym_while] = ACTIONS(923), - [anon_sym_do] = ACTIONS(923), - [anon_sym_if] = ACTIONS(923), - [anon_sym_else] = ACTIONS(923), - [anon_sym_match] = ACTIONS(923), - [anon_sym_RBRACE] = ACTIONS(923), - [anon_sym_try] = ACTIONS(923), - [anon_sym_catch] = ACTIONS(923), - [anon_sym_return] = ACTIONS(923), - [anon_sym_source] = ACTIONS(923), - [anon_sym_source_DASHenv] = ACTIONS(923), - [anon_sym_register] = ACTIONS(923), - [anon_sym_hide] = ACTIONS(923), - [anon_sym_hide_DASHenv] = ACTIONS(923), - [anon_sym_overlay] = ACTIONS(923), - [anon_sym_new] = ACTIONS(923), - [anon_sym_as] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_STAR_STAR] = ACTIONS(923), - [anon_sym_PLUS_PLUS] = ACTIONS(923), - [anon_sym_SLASH] = ACTIONS(923), - [anon_sym_mod] = ACTIONS(923), - [anon_sym_SLASH_SLASH] = ACTIONS(923), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_bit_DASHshl] = ACTIONS(923), - [anon_sym_bit_DASHshr] = ACTIONS(923), - [anon_sym_EQ_EQ] = ACTIONS(923), - [anon_sym_BANG_EQ] = ACTIONS(923), - [anon_sym_LT2] = ACTIONS(923), - [anon_sym_LT_EQ] = ACTIONS(923), - [anon_sym_GT_EQ] = ACTIONS(923), - [anon_sym_not_DASHin] = ACTIONS(923), - [anon_sym_starts_DASHwith] = ACTIONS(923), - [anon_sym_ends_DASHwith] = ACTIONS(923), - [anon_sym_EQ_TILDE] = ACTIONS(923), - [anon_sym_BANG_TILDE] = ACTIONS(923), - [anon_sym_bit_DASHand] = ACTIONS(923), - [anon_sym_bit_DASHxor] = ACTIONS(923), - [anon_sym_bit_DASHor] = ACTIONS(923), - [anon_sym_and] = ACTIONS(923), - [anon_sym_xor] = ACTIONS(923), - [anon_sym_or] = ACTIONS(923), - [anon_sym_DOT_DOT2] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(925), - [anon_sym_DOT_DOT_LT2] = ACTIONS(925), - [aux_sym__immediate_decimal_token2] = ACTIONS(1559), - [aux_sym__val_number_decimal_token1] = ACTIONS(923), - [aux_sym__val_number_decimal_token2] = ACTIONS(923), - [anon_sym_DOT2] = ACTIONS(923), - [aux_sym__val_number_decimal_token3] = ACTIONS(923), - [aux_sym__val_number_token1] = ACTIONS(923), - [aux_sym__val_number_token2] = ACTIONS(923), - [aux_sym__val_number_token3] = ACTIONS(923), - [aux_sym__val_number_token4] = ACTIONS(923), - [aux_sym__val_number_token5] = ACTIONS(923), - [aux_sym__val_number_token6] = ACTIONS(923), - [sym_filesize_unit] = ACTIONS(923), - [sym_duration_unit] = ACTIONS(923), - [anon_sym_DQUOTE] = ACTIONS(923), - [sym__str_single_quotes] = ACTIONS(923), - [sym__str_back_ticks] = ACTIONS(923), - [sym__entry_separator] = ACTIONS(925), - [aux_sym__record_key_token2] = ACTIONS(923), - [anon_sym_POUND] = ACTIONS(113), + [aux_sym_list_body_repeat1] = STATE(851), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_RBRACK] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1734), + [anon_sym_DOT_DOT_LT] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [aux_sym__val_number_decimal_token1] = ACTIONS(1740), + [aux_sym__val_number_decimal_token2] = ACTIONS(1742), + [anon_sym_DOT2] = ACTIONS(1744), + [aux_sym__val_number_decimal_token3] = ACTIONS(1746), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [aux_sym__val_number_token4] = ACTIONS(1750), + [aux_sym__val_number_token5] = ACTIONS(1750), + [aux_sym__val_number_token6] = ACTIONS(1750), + [anon_sym_0b] = ACTIONS(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(3), }, [782] = { + [sym_expr_parenthesized] = STATE(7709), + [sym_val_range] = STATE(8661), + [sym__val_range] = STATE(10026), + [sym__val_range_with_end] = STATE(10030), + [sym__value] = STATE(8661), + [sym_val_nothing] = STATE(5712), + [sym_val_bool] = STATE(7878), + [sym_val_variable] = STATE(4935), + [sym__var] = STATE(4392), + [sym_val_number] = STATE(5712), + [sym__val_number_decimal] = STATE(6652), + [sym__val_number] = STATE(5721), + [sym_val_duration] = STATE(5712), + [sym_val_filesize] = STATE(5712), + [sym_val_binary] = STATE(5712), + [sym_val_string] = STATE(5712), + [sym__str_double_quotes] = STATE(5860), + [sym_val_interpolated] = STATE(5712), + [sym__inter_single_quotes] = STATE(5666), + [sym__inter_double_quotes] = STATE(5668), + [sym_val_list] = STATE(5712), + [sym_val_record] = STATE(5712), + [sym_val_table] = STATE(5712), + [sym_val_closure] = STATE(5712), + [sym__cmd_arg] = STATE(8668), + [sym_redirection] = STATE(8669), + [sym__flag] = STATE(8672), + [sym_short_flag] = STATE(8859), + [sym_long_flag] = STATE(8859), + [sym_long_flag_equals_value] = STATE(8660), + [sym_unquoted] = STATE(7983), + [sym__unquoted_with_expr] = STATE(8689), + [sym__unquoted_anonymous_prefix] = STATE(9977), [sym_comment] = STATE(782), - [anon_sym_export] = ACTIONS(917), - [anon_sym_alias] = ACTIONS(917), - [anon_sym_let] = ACTIONS(917), - [anon_sym_let_DASHenv] = ACTIONS(917), - [anon_sym_mut] = ACTIONS(917), - [anon_sym_const] = ACTIONS(917), - [sym_cmd_identifier] = ACTIONS(917), - [anon_sym_def] = ACTIONS(917), - [anon_sym_export_DASHenv] = ACTIONS(917), - [anon_sym_extern] = ACTIONS(917), - [anon_sym_module] = ACTIONS(917), - [anon_sym_use] = ACTIONS(917), - [anon_sym_LPAREN] = ACTIONS(919), - [anon_sym_DOLLAR] = ACTIONS(919), - [anon_sym_error] = ACTIONS(917), - [anon_sym_list] = ACTIONS(917), - [anon_sym_GT] = ACTIONS(917), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_break] = ACTIONS(917), - [anon_sym_continue] = ACTIONS(917), - [anon_sym_for] = ACTIONS(917), - [anon_sym_in] = ACTIONS(917), - [anon_sym_loop] = ACTIONS(917), - [anon_sym_make] = ACTIONS(917), - [anon_sym_while] = ACTIONS(917), - [anon_sym_do] = ACTIONS(917), - [anon_sym_if] = ACTIONS(917), - [anon_sym_else] = ACTIONS(917), - [anon_sym_match] = ACTIONS(917), - [anon_sym_RBRACE] = ACTIONS(919), - [anon_sym_try] = ACTIONS(917), - [anon_sym_catch] = ACTIONS(917), - [anon_sym_return] = ACTIONS(917), - [anon_sym_source] = ACTIONS(917), - [anon_sym_source_DASHenv] = ACTIONS(917), - [anon_sym_register] = ACTIONS(917), - [anon_sym_hide] = ACTIONS(917), - [anon_sym_hide_DASHenv] = ACTIONS(917), - [anon_sym_overlay] = ACTIONS(917), - [anon_sym_new] = ACTIONS(917), - [anon_sym_as] = ACTIONS(917), - [anon_sym_STAR] = ACTIONS(917), - [anon_sym_STAR_STAR] = ACTIONS(919), - [anon_sym_PLUS_PLUS] = ACTIONS(919), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_mod] = ACTIONS(917), - [anon_sym_SLASH_SLASH] = ACTIONS(919), - [anon_sym_PLUS] = ACTIONS(917), - [anon_sym_bit_DASHshl] = ACTIONS(917), - [anon_sym_bit_DASHshr] = ACTIONS(917), - [anon_sym_EQ_EQ] = ACTIONS(919), - [anon_sym_BANG_EQ] = ACTIONS(919), - [anon_sym_LT2] = ACTIONS(917), - [anon_sym_LT_EQ] = ACTIONS(919), - [anon_sym_GT_EQ] = ACTIONS(919), - [anon_sym_not_DASHin] = ACTIONS(917), - [anon_sym_starts_DASHwith] = ACTIONS(917), - [anon_sym_ends_DASHwith] = ACTIONS(917), - [anon_sym_EQ_TILDE] = ACTIONS(919), - [anon_sym_BANG_TILDE] = ACTIONS(919), - [anon_sym_bit_DASHand] = ACTIONS(917), - [anon_sym_bit_DASHxor] = ACTIONS(917), - [anon_sym_bit_DASHor] = ACTIONS(917), - [anon_sym_and] = ACTIONS(917), - [anon_sym_xor] = ACTIONS(917), - [anon_sym_or] = ACTIONS(917), - [anon_sym_DOT_DOT2] = ACTIONS(917), - [anon_sym_DOT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(919), - [anon_sym_DOT_DOT_LT2] = ACTIONS(919), - [aux_sym__val_number_decimal_token1] = ACTIONS(917), - [aux_sym__val_number_decimal_token2] = ACTIONS(919), - [anon_sym_DOT2] = ACTIONS(917), - [aux_sym__val_number_decimal_token3] = ACTIONS(919), - [aux_sym__val_number_token1] = ACTIONS(919), - [aux_sym__val_number_token2] = ACTIONS(919), - [aux_sym__val_number_token3] = ACTIONS(919), - [aux_sym__val_number_token4] = ACTIONS(917), - [aux_sym__val_number_token5] = ACTIONS(919), - [aux_sym__val_number_token6] = ACTIONS(917), - [sym_filesize_unit] = ACTIONS(917), - [sym_duration_unit] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(919), - [sym__str_single_quotes] = ACTIONS(919), - [sym__str_back_ticks] = ACTIONS(919), - [aux_sym__record_key_token2] = ACTIONS(917), - [aux_sym_unquoted_token5] = ACTIONS(917), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1690), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LF] = ACTIONS(1644), + [anon_sym_LBRACK] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(1786), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_DOLLAR] = ACTIONS(1788), + [anon_sym_DASH_DASH] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_LBRACE] = ACTIONS(1794), + [anon_sym_DOT_DOT] = ACTIONS(1796), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1798), + [anon_sym_DOT_DOT_LT] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1800), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [aux_sym__val_number_decimal_token1] = ACTIONS(1804), + [aux_sym__val_number_decimal_token2] = ACTIONS(1804), + [anon_sym_DOT2] = ACTIONS(1806), + [aux_sym__val_number_decimal_token3] = ACTIONS(1808), + [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(1812), + [aux_sym__val_number_token5] = ACTIONS(1812), + [aux_sym__val_number_token6] = ACTIONS(1812), + [anon_sym_0b] = ACTIONS(1814), + [anon_sym_0o] = ACTIONS(1816), + [anon_sym_0x] = ACTIONS(1816), + [sym_val_date] = ACTIONS(1818), + [anon_sym_DQUOTE] = ACTIONS(1820), + [sym__str_single_quotes] = ACTIONS(1822), + [sym__str_back_ticks] = ACTIONS(1822), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1824), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1826), + [aux_sym_command_token1] = ACTIONS(1690), + [anon_sym_err_GT] = ACTIONS(1828), + [anon_sym_out_GT] = ACTIONS(1828), + [anon_sym_e_GT] = ACTIONS(1828), + [anon_sym_o_GT] = ACTIONS(1828), + [anon_sym_err_PLUSout_GT] = ACTIONS(1828), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1828), + [anon_sym_o_PLUSe_GT] = ACTIONS(1828), + [anon_sym_e_PLUSo_GT] = ACTIONS(1828), + [aux_sym_unquoted_token1] = ACTIONS(1830), + [anon_sym_POUND] = ACTIONS(113), }, [783] = { + [sym__expr_unary_minus] = STATE(9980), + [sym_expr_parenthesized] = STATE(8494), + [sym_val_range] = STATE(9990), + [sym__val_range] = STATE(10001), + [sym__val_range_with_end] = STATE(10049), + [sym__value] = STATE(9990), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(9118), + [sym_val_variable] = STATE(5224), + [sym__var] = STATE(4556), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(7035), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(9922), + [sym_list_body] = STATE(10501), + [sym_val_entry] = STATE(9992), + [sym__list_item_expression] = STATE(10082), + [sym__list_item_starts_with_sign] = STATE(10149), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_short_flag] = STATE(10149), + [sym_long_flag] = STATE(10149), + [sym_long_flag_equals_value] = STATE(3793), + [sym__unquoted_in_list] = STATE(9353), + [sym__unquoted_in_list_with_expr] = STATE(10149), + [sym__unquoted_anonymous_prefix] = STATE(9874), [sym_comment] = STATE(783), - [anon_sym_export] = ACTIONS(909), - [anon_sym_alias] = ACTIONS(909), - [anon_sym_let] = ACTIONS(909), - [anon_sym_let_DASHenv] = ACTIONS(909), - [anon_sym_mut] = ACTIONS(909), - [anon_sym_const] = ACTIONS(909), - [sym_cmd_identifier] = ACTIONS(909), - [anon_sym_def] = ACTIONS(909), - [anon_sym_export_DASHenv] = ACTIONS(909), - [anon_sym_extern] = ACTIONS(909), - [anon_sym_module] = ACTIONS(909), - [anon_sym_use] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_error] = ACTIONS(909), - [anon_sym_list] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_break] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_for] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_loop] = ACTIONS(909), - [anon_sym_make] = ACTIONS(909), - [anon_sym_while] = ACTIONS(909), - [anon_sym_do] = ACTIONS(909), - [anon_sym_if] = ACTIONS(909), - [anon_sym_else] = ACTIONS(909), - [anon_sym_match] = ACTIONS(909), - [anon_sym_RBRACE] = ACTIONS(909), - [anon_sym_try] = ACTIONS(909), - [anon_sym_catch] = ACTIONS(909), - [anon_sym_return] = ACTIONS(909), - [anon_sym_source] = ACTIONS(909), - [anon_sym_source_DASHenv] = ACTIONS(909), - [anon_sym_register] = ACTIONS(909), - [anon_sym_hide] = ACTIONS(909), - [anon_sym_hide_DASHenv] = ACTIONS(909), - [anon_sym_overlay] = ACTIONS(909), - [anon_sym_new] = ACTIONS(909), - [anon_sym_as] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(909), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(909), - [anon_sym_SLASH_SLASH] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(909), - [anon_sym_bit_DASHshr] = ACTIONS(909), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_not_DASHin] = ACTIONS(909), - [anon_sym_starts_DASHwith] = ACTIONS(909), - [anon_sym_ends_DASHwith] = ACTIONS(909), - [anon_sym_EQ_TILDE] = ACTIONS(909), - [anon_sym_BANG_TILDE] = ACTIONS(909), - [anon_sym_bit_DASHand] = ACTIONS(909), - [anon_sym_bit_DASHxor] = ACTIONS(909), - [anon_sym_bit_DASHor] = ACTIONS(909), - [anon_sym_and] = ACTIONS(909), - [anon_sym_xor] = ACTIONS(909), - [anon_sym_or] = ACTIONS(909), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(909), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(909), - [aux_sym__val_number_token1] = ACTIONS(909), - [aux_sym__val_number_token2] = ACTIONS(909), - [aux_sym__val_number_token3] = ACTIONS(909), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(909), - [aux_sym__val_number_token6] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym__str_single_quotes] = ACTIONS(909), - [sym__str_back_ticks] = ACTIONS(909), - [sym__entry_separator] = ACTIONS(911), - [aux_sym__record_key_token2] = ACTIONS(909), - [anon_sym_POUND] = ACTIONS(113), + [aux_sym_list_body_repeat1] = STATE(851), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_RBRACK] = ACTIONS(1832), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1734), + [anon_sym_DOT_DOT_LT] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [aux_sym__val_number_decimal_token1] = ACTIONS(1740), + [aux_sym__val_number_decimal_token2] = ACTIONS(1742), + [anon_sym_DOT2] = ACTIONS(1744), + [aux_sym__val_number_decimal_token3] = ACTIONS(1746), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [aux_sym__val_number_token4] = ACTIONS(1750), + [aux_sym__val_number_token5] = ACTIONS(1750), + [aux_sym__val_number_token6] = ACTIONS(1750), + [anon_sym_0b] = ACTIONS(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(3), }, [784] = { - [sym__immediate_decimal] = STATE(10460), + [sym__expr_unary_minus] = STATE(9980), + [sym_expr_parenthesized] = STATE(8494), + [sym_val_range] = STATE(9990), + [sym__val_range] = STATE(10001), + [sym__val_range_with_end] = STATE(10049), + [sym__value] = STATE(9990), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(9118), + [sym_val_variable] = STATE(5224), + [sym__var] = STATE(4556), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(7035), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(9923), + [sym_list_body] = STATE(10346), + [sym_val_entry] = STATE(9992), + [sym__list_item_expression] = STATE(10082), + [sym__list_item_starts_with_sign] = STATE(10149), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_short_flag] = STATE(10149), + [sym_long_flag] = STATE(10149), + [sym_long_flag_equals_value] = STATE(3793), + [sym__unquoted_in_list] = STATE(9353), + [sym__unquoted_in_list_with_expr] = STATE(10149), + [sym__unquoted_anonymous_prefix] = STATE(9874), [sym_comment] = STATE(784), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(938), - [anon_sym_error] = ACTIONS(936), - [anon_sym_list] = ACTIONS(936), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_make] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_else] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_RBRACE] = ACTIONS(938), - [anon_sym_try] = ACTIONS(936), - [anon_sym_catch] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_new] = ACTIONS(936), - [anon_sym_as] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_STAR_STAR] = ACTIONS(938), - [anon_sym_PLUS_PLUS] = ACTIONS(938), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(936), - [anon_sym_SLASH_SLASH] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(936), - [anon_sym_bit_DASHshr] = ACTIONS(936), - [anon_sym_EQ_EQ] = ACTIONS(938), - [anon_sym_BANG_EQ] = ACTIONS(938), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(938), - [anon_sym_GT_EQ] = ACTIONS(938), - [anon_sym_not_DASHin] = ACTIONS(936), - [anon_sym_starts_DASHwith] = ACTIONS(936), - [anon_sym_ends_DASHwith] = ACTIONS(936), - [anon_sym_EQ_TILDE] = ACTIONS(938), - [anon_sym_BANG_TILDE] = ACTIONS(938), - [anon_sym_bit_DASHand] = ACTIONS(936), - [anon_sym_bit_DASHxor] = ACTIONS(936), - [anon_sym_bit_DASHor] = ACTIONS(936), - [anon_sym_and] = ACTIONS(936), - [anon_sym_xor] = ACTIONS(936), - [anon_sym_or] = ACTIONS(936), - [anon_sym_DOT] = ACTIONS(1593), - [aux_sym__immediate_decimal_token1] = ACTIONS(1045), - [aux_sym__immediate_decimal_token3] = ACTIONS(1609), - [aux_sym__immediate_decimal_token4] = ACTIONS(1611), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(938), - [aux_sym__val_number_token2] = ACTIONS(938), - [aux_sym__val_number_token3] = ACTIONS(938), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(938), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(938), - [sym__str_single_quotes] = ACTIONS(938), - [sym__str_back_ticks] = ACTIONS(938), - [aux_sym__record_key_token2] = ACTIONS(936), - [aux_sym_unquoted_token4] = ACTIONS(1586), + [aux_sym_list_body_repeat1] = STATE(851), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_RBRACK] = ACTIONS(1834), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1734), + [anon_sym_DOT_DOT_LT] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [aux_sym__val_number_decimal_token1] = ACTIONS(1740), + [aux_sym__val_number_decimal_token2] = ACTIONS(1742), + [anon_sym_DOT2] = ACTIONS(1744), + [aux_sym__val_number_decimal_token3] = ACTIONS(1746), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [aux_sym__val_number_token4] = ACTIONS(1750), + [aux_sym__val_number_token5] = ACTIONS(1750), + [aux_sym__val_number_token6] = ACTIONS(1750), + [anon_sym_0b] = ACTIONS(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1499), [anon_sym_POUND] = ACTIONS(3), }, [785] = { + [sym__expr_unary_minus] = STATE(9980), + [sym_expr_parenthesized] = STATE(8494), + [sym_val_range] = STATE(9990), + [sym__val_range] = STATE(10001), + [sym__val_range_with_end] = STATE(10049), + [sym__value] = STATE(9990), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(9118), + [sym_val_variable] = STATE(5224), + [sym__var] = STATE(4556), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(7035), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(9925), + [sym_list_body] = STATE(10543), + [sym_val_entry] = STATE(9992), + [sym__list_item_expression] = STATE(10082), + [sym__list_item_starts_with_sign] = STATE(10149), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_short_flag] = STATE(10149), + [sym_long_flag] = STATE(10149), + [sym_long_flag_equals_value] = STATE(3793), + [sym__unquoted_in_list] = STATE(9353), + [sym__unquoted_in_list_with_expr] = STATE(10149), + [sym__unquoted_anonymous_prefix] = STATE(9874), [sym_comment] = STATE(785), - [anon_sym_export] = ACTIONS(1059), - [anon_sym_alias] = ACTIONS(1059), - [anon_sym_let] = ACTIONS(1059), - [anon_sym_let_DASHenv] = ACTIONS(1059), - [anon_sym_mut] = ACTIONS(1059), - [anon_sym_const] = ACTIONS(1059), - [sym_cmd_identifier] = ACTIONS(1059), - [anon_sym_def] = ACTIONS(1059), - [anon_sym_export_DASHenv] = ACTIONS(1059), - [anon_sym_extern] = ACTIONS(1059), - [anon_sym_module] = ACTIONS(1059), - [anon_sym_use] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_error] = ACTIONS(1059), - [anon_sym_list] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_break] = ACTIONS(1059), - [anon_sym_continue] = ACTIONS(1059), - [anon_sym_for] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1059), - [anon_sym_loop] = ACTIONS(1059), - [anon_sym_make] = ACTIONS(1059), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_do] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1059), - [anon_sym_else] = ACTIONS(1059), - [anon_sym_match] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(1059), - [anon_sym_try] = ACTIONS(1059), - [anon_sym_catch] = ACTIONS(1059), - [anon_sym_return] = ACTIONS(1059), - [anon_sym_source] = ACTIONS(1059), - [anon_sym_source_DASHenv] = ACTIONS(1059), - [anon_sym_register] = ACTIONS(1059), - [anon_sym_hide] = ACTIONS(1059), - [anon_sym_hide_DASHenv] = ACTIONS(1059), - [anon_sym_overlay] = ACTIONS(1059), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_as] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_QMARK2] = ACTIONS(1059), - [anon_sym_STAR_STAR] = ACTIONS(1059), - [anon_sym_PLUS_PLUS] = ACTIONS(1059), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_mod] = ACTIONS(1059), - [anon_sym_SLASH_SLASH] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_bit_DASHshl] = ACTIONS(1059), - [anon_sym_bit_DASHshr] = ACTIONS(1059), - [anon_sym_EQ_EQ] = ACTIONS(1059), - [anon_sym_BANG_EQ] = ACTIONS(1059), - [anon_sym_LT2] = ACTIONS(1059), - [anon_sym_LT_EQ] = ACTIONS(1059), - [anon_sym_GT_EQ] = ACTIONS(1059), - [anon_sym_not_DASHin] = ACTIONS(1059), - [anon_sym_starts_DASHwith] = ACTIONS(1059), - [anon_sym_ends_DASHwith] = ACTIONS(1059), - [anon_sym_EQ_TILDE] = ACTIONS(1059), - [anon_sym_BANG_TILDE] = ACTIONS(1059), - [anon_sym_bit_DASHand] = ACTIONS(1059), - [anon_sym_bit_DASHxor] = ACTIONS(1059), - [anon_sym_bit_DASHor] = ACTIONS(1059), - [anon_sym_and] = ACTIONS(1059), - [anon_sym_xor] = ACTIONS(1059), - [anon_sym_or] = ACTIONS(1059), - [anon_sym_DOT_DOT2] = ACTIONS(1059), - [anon_sym_DOT] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1061), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1061), - [aux_sym__val_number_decimal_token1] = ACTIONS(1059), - [aux_sym__val_number_decimal_token2] = ACTIONS(1059), - [anon_sym_DOT2] = ACTIONS(1059), - [aux_sym__val_number_decimal_token3] = ACTIONS(1059), - [aux_sym__val_number_token1] = ACTIONS(1059), - [aux_sym__val_number_token2] = ACTIONS(1059), - [aux_sym__val_number_token3] = ACTIONS(1059), - [aux_sym__val_number_token4] = ACTIONS(1059), - [aux_sym__val_number_token5] = ACTIONS(1059), - [aux_sym__val_number_token6] = ACTIONS(1059), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym__str_single_quotes] = ACTIONS(1059), - [sym__str_back_ticks] = ACTIONS(1059), - [sym__entry_separator] = ACTIONS(1061), - [aux_sym__record_key_token2] = ACTIONS(1059), - [anon_sym_POUND] = ACTIONS(113), + [aux_sym_list_body_repeat1] = STATE(851), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_RBRACK] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1734), + [anon_sym_DOT_DOT_LT] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [aux_sym__val_number_decimal_token1] = ACTIONS(1740), + [aux_sym__val_number_decimal_token2] = ACTIONS(1742), + [anon_sym_DOT2] = ACTIONS(1744), + [aux_sym__val_number_decimal_token3] = ACTIONS(1746), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [aux_sym__val_number_token4] = ACTIONS(1750), + [aux_sym__val_number_token5] = ACTIONS(1750), + [aux_sym__val_number_token6] = ACTIONS(1750), + [anon_sym_0b] = ACTIONS(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(3), }, [786] = { + [sym__expr_parenthesized_immediate] = STATE(1097), + [sym__immediate_decimal] = STATE(991), + [sym_val_variable] = STATE(1097), + [sym__var] = STATE(935), [sym_comment] = STATE(786), - [anon_sym_export] = ACTIONS(1063), - [anon_sym_alias] = ACTIONS(1063), - [anon_sym_let] = ACTIONS(1063), - [anon_sym_let_DASHenv] = ACTIONS(1063), - [anon_sym_mut] = ACTIONS(1063), - [anon_sym_const] = ACTIONS(1063), - [sym_cmd_identifier] = ACTIONS(1063), - [anon_sym_def] = ACTIONS(1063), - [anon_sym_export_DASHenv] = ACTIONS(1063), - [anon_sym_extern] = ACTIONS(1063), - [anon_sym_module] = ACTIONS(1063), - [anon_sym_use] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_error] = ACTIONS(1063), - [anon_sym_list] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_break] = ACTIONS(1063), - [anon_sym_continue] = ACTIONS(1063), - [anon_sym_for] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1063), - [anon_sym_loop] = ACTIONS(1063), - [anon_sym_make] = ACTIONS(1063), - [anon_sym_while] = ACTIONS(1063), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_if] = ACTIONS(1063), - [anon_sym_else] = ACTIONS(1063), - [anon_sym_match] = ACTIONS(1063), - [anon_sym_RBRACE] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1063), - [anon_sym_catch] = ACTIONS(1063), - [anon_sym_return] = ACTIONS(1063), - [anon_sym_source] = ACTIONS(1063), - [anon_sym_source_DASHenv] = ACTIONS(1063), - [anon_sym_register] = ACTIONS(1063), - [anon_sym_hide] = ACTIONS(1063), - [anon_sym_hide_DASHenv] = ACTIONS(1063), - [anon_sym_overlay] = ACTIONS(1063), - [anon_sym_new] = ACTIONS(1063), - [anon_sym_as] = ACTIONS(1063), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_QMARK2] = ACTIONS(1063), - [anon_sym_STAR_STAR] = ACTIONS(1063), - [anon_sym_PLUS_PLUS] = ACTIONS(1063), - [anon_sym_SLASH] = ACTIONS(1063), - [anon_sym_mod] = ACTIONS(1063), - [anon_sym_SLASH_SLASH] = ACTIONS(1063), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_bit_DASHshl] = ACTIONS(1063), - [anon_sym_bit_DASHshr] = ACTIONS(1063), - [anon_sym_EQ_EQ] = ACTIONS(1063), - [anon_sym_BANG_EQ] = ACTIONS(1063), - [anon_sym_LT2] = ACTIONS(1063), - [anon_sym_LT_EQ] = ACTIONS(1063), - [anon_sym_GT_EQ] = ACTIONS(1063), - [anon_sym_not_DASHin] = ACTIONS(1063), - [anon_sym_starts_DASHwith] = ACTIONS(1063), - [anon_sym_ends_DASHwith] = ACTIONS(1063), - [anon_sym_EQ_TILDE] = ACTIONS(1063), - [anon_sym_BANG_TILDE] = ACTIONS(1063), - [anon_sym_bit_DASHand] = ACTIONS(1063), - [anon_sym_bit_DASHxor] = ACTIONS(1063), - [anon_sym_bit_DASHor] = ACTIONS(1063), - [anon_sym_and] = ACTIONS(1063), - [anon_sym_xor] = ACTIONS(1063), - [anon_sym_or] = ACTIONS(1063), - [anon_sym_DOT_DOT2] = ACTIONS(1063), - [anon_sym_DOT] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1065), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1065), - [aux_sym__val_number_decimal_token1] = ACTIONS(1063), - [aux_sym__val_number_decimal_token2] = ACTIONS(1063), - [anon_sym_DOT2] = ACTIONS(1063), - [aux_sym__val_number_decimal_token3] = ACTIONS(1063), - [aux_sym__val_number_token1] = ACTIONS(1063), - [aux_sym__val_number_token2] = ACTIONS(1063), - [aux_sym__val_number_token3] = ACTIONS(1063), - [aux_sym__val_number_token4] = ACTIONS(1063), - [aux_sym__val_number_token5] = ACTIONS(1063), - [aux_sym__val_number_token6] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [sym__str_single_quotes] = ACTIONS(1063), - [sym__str_back_ticks] = ACTIONS(1063), - [sym__entry_separator] = ACTIONS(1065), - [aux_sym__record_key_token2] = ACTIONS(1063), + [anon_sym_export] = ACTIONS(1838), + [anon_sym_alias] = ACTIONS(1838), + [anon_sym_let] = ACTIONS(1838), + [anon_sym_let_DASHenv] = ACTIONS(1838), + [anon_sym_mut] = ACTIONS(1838), + [anon_sym_const] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(1838), + [sym_cmd_identifier] = ACTIONS(1838), + [anon_sym_LF] = ACTIONS(1840), + [anon_sym_def] = ACTIONS(1838), + [anon_sym_export_DASHenv] = ACTIONS(1838), + [anon_sym_extern] = ACTIONS(1838), + [anon_sym_module] = ACTIONS(1838), + [anon_sym_use] = ACTIONS(1838), + [anon_sym_LBRACK] = ACTIONS(1838), + [anon_sym_LPAREN] = ACTIONS(1838), + [anon_sym_RPAREN] = ACTIONS(1838), + [anon_sym_DOLLAR] = ACTIONS(1696), + [anon_sym_error] = ACTIONS(1838), + [anon_sym_DASH_DASH] = ACTIONS(1838), + [anon_sym_DASH] = ACTIONS(1838), + [anon_sym_break] = ACTIONS(1838), + [anon_sym_continue] = ACTIONS(1838), + [anon_sym_for] = ACTIONS(1838), + [anon_sym_loop] = ACTIONS(1838), + [anon_sym_while] = ACTIONS(1838), + [anon_sym_do] = ACTIONS(1838), + [anon_sym_if] = ACTIONS(1838), + [anon_sym_match] = ACTIONS(1838), + [anon_sym_LBRACE] = ACTIONS(1838), + [anon_sym_RBRACE] = ACTIONS(1838), + [anon_sym_DOT_DOT] = ACTIONS(1838), + [anon_sym_try] = ACTIONS(1838), + [anon_sym_return] = ACTIONS(1838), + [anon_sym_source] = ACTIONS(1838), + [anon_sym_source_DASHenv] = ACTIONS(1838), + [anon_sym_register] = ACTIONS(1838), + [anon_sym_hide] = ACTIONS(1838), + [anon_sym_hide_DASHenv] = ACTIONS(1838), + [anon_sym_overlay] = ACTIONS(1838), + [anon_sym_as] = ACTIONS(1838), + [anon_sym_where] = ACTIONS(1838), + [anon_sym_not] = ACTIONS(1838), + [anon_sym_LPAREN2] = ACTIONS(1698), + [anon_sym_DOT] = ACTIONS(1842), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1838), + [anon_sym_DOT_DOT_LT] = ACTIONS(1838), + [aux_sym__immediate_decimal_token1] = ACTIONS(1712), + [aux_sym__immediate_decimal_token3] = ACTIONS(1712), + [aux_sym__immediate_decimal_token4] = ACTIONS(1714), + [anon_sym_null] = ACTIONS(1838), + [anon_sym_true] = ACTIONS(1838), + [anon_sym_false] = ACTIONS(1838), + [aux_sym__val_number_decimal_token1] = ACTIONS(1838), + [aux_sym__val_number_decimal_token2] = ACTIONS(1838), + [anon_sym_DOT2] = ACTIONS(1838), + [aux_sym__val_number_decimal_token3] = ACTIONS(1838), + [aux_sym__val_number_token1] = ACTIONS(1838), + [aux_sym__val_number_token2] = ACTIONS(1838), + [aux_sym__val_number_token3] = ACTIONS(1838), + [aux_sym__val_number_token4] = ACTIONS(1838), + [aux_sym__val_number_token5] = ACTIONS(1838), + [aux_sym__val_number_token6] = ACTIONS(1838), + [anon_sym_0b] = ACTIONS(1838), + [anon_sym_0o] = ACTIONS(1838), + [anon_sym_0x] = ACTIONS(1838), + [sym_val_date] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym__str_single_quotes] = ACTIONS(1838), + [sym__str_back_ticks] = ACTIONS(1838), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1838), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1838), + [anon_sym_CARET] = ACTIONS(1838), + [aux_sym_unquoted_token2] = ACTIONS(1844), [anon_sym_POUND] = ACTIONS(113), }, [787] = { + [sym__expr_parenthesized_immediate] = STATE(1272), + [sym__immediate_decimal] = STATE(995), + [sym_val_variable] = STATE(1272), + [sym__var] = STATE(967), [sym_comment] = STATE(787), - [anon_sym_export] = ACTIONS(959), - [anon_sym_alias] = ACTIONS(959), - [anon_sym_let] = ACTIONS(959), - [anon_sym_let_DASHenv] = ACTIONS(959), - [anon_sym_mut] = ACTIONS(959), - [anon_sym_const] = ACTIONS(959), - [sym_cmd_identifier] = ACTIONS(959), - [anon_sym_def] = ACTIONS(959), - [anon_sym_export_DASHenv] = ACTIONS(959), - [anon_sym_extern] = ACTIONS(959), - [anon_sym_module] = ACTIONS(959), - [anon_sym_use] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_error] = ACTIONS(959), - [anon_sym_list] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_break] = ACTIONS(959), - [anon_sym_continue] = ACTIONS(959), - [anon_sym_for] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_loop] = ACTIONS(959), - [anon_sym_make] = ACTIONS(959), - [anon_sym_while] = ACTIONS(959), - [anon_sym_do] = ACTIONS(959), - [anon_sym_if] = ACTIONS(959), - [anon_sym_else] = ACTIONS(959), - [anon_sym_match] = ACTIONS(959), - [anon_sym_RBRACE] = ACTIONS(959), - [anon_sym_try] = ACTIONS(959), - [anon_sym_catch] = ACTIONS(959), - [anon_sym_return] = ACTIONS(959), - [anon_sym_source] = ACTIONS(959), - [anon_sym_source_DASHenv] = ACTIONS(959), - [anon_sym_register] = ACTIONS(959), - [anon_sym_hide] = ACTIONS(959), - [anon_sym_hide_DASHenv] = ACTIONS(959), - [anon_sym_overlay] = ACTIONS(959), - [anon_sym_new] = ACTIONS(959), - [anon_sym_as] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(959), - [anon_sym_PLUS_PLUS] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(959), - [anon_sym_SLASH_SLASH] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(959), - [anon_sym_bit_DASHshr] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(959), - [anon_sym_BANG_EQ] = ACTIONS(959), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(959), - [anon_sym_GT_EQ] = ACTIONS(959), - [anon_sym_not_DASHin] = ACTIONS(959), - [anon_sym_starts_DASHwith] = ACTIONS(959), - [anon_sym_ends_DASHwith] = ACTIONS(959), - [anon_sym_EQ_TILDE] = ACTIONS(959), - [anon_sym_BANG_TILDE] = ACTIONS(959), - [anon_sym_bit_DASHand] = ACTIONS(959), - [anon_sym_bit_DASHxor] = ACTIONS(959), - [anon_sym_bit_DASHor] = ACTIONS(959), - [anon_sym_and] = ACTIONS(959), - [anon_sym_xor] = ACTIONS(959), - [anon_sym_or] = ACTIONS(959), - [anon_sym_DOT_DOT2] = ACTIONS(1613), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1615), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1615), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(959), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(959), - [aux_sym__val_number_token1] = ACTIONS(959), - [aux_sym__val_number_token2] = ACTIONS(959), - [aux_sym__val_number_token3] = ACTIONS(959), - [aux_sym__val_number_token4] = ACTIONS(959), - [aux_sym__val_number_token5] = ACTIONS(959), - [aux_sym__val_number_token6] = ACTIONS(959), - [sym_filesize_unit] = ACTIONS(1617), - [sym_duration_unit] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(959), - [sym__str_single_quotes] = ACTIONS(959), - [sym__str_back_ticks] = ACTIONS(959), - [sym__entry_separator] = ACTIONS(961), - [aux_sym__record_key_token2] = ACTIONS(959), + [ts_builtin_sym_end] = ACTIONS(922), + [anon_sym_export] = ACTIONS(920), + [anon_sym_alias] = ACTIONS(920), + [anon_sym_let] = ACTIONS(920), + [anon_sym_let_DASHenv] = ACTIONS(920), + [anon_sym_mut] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(920), + [sym_cmd_identifier] = ACTIONS(920), + [anon_sym_LF] = ACTIONS(922), + [anon_sym_def] = ACTIONS(920), + [anon_sym_export_DASHenv] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym_module] = ACTIONS(920), + [anon_sym_use] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_error] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_loop] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_match] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_try] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_source] = ACTIONS(920), + [anon_sym_source_DASHenv] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_hide] = ACTIONS(920), + [anon_sym_hide_DASHenv] = ACTIONS(920), + [anon_sym_overlay] = ACTIONS(920), + [anon_sym_as] = ACTIONS(920), + [anon_sym_where] = ACTIONS(920), + [anon_sym_not] = ACTIONS(920), + [anon_sym_LPAREN2] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1850), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [aux_sym__immediate_decimal_token1] = ACTIONS(1852), + [aux_sym__immediate_decimal_token3] = ACTIONS(1852), + [aux_sym__immediate_decimal_token4] = ACTIONS(1854), + [anon_sym_null] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), + [anon_sym_CARET] = ACTIONS(920), + [aux_sym_unquoted_token3] = ACTIONS(1856), + [aux_sym_unquoted_token5] = ACTIONS(1858), [anon_sym_POUND] = ACTIONS(113), }, [788] = { + [sym__expr_unary_minus] = STATE(9980), + [sym_expr_parenthesized] = STATE(8494), + [sym_val_range] = STATE(9990), + [sym__val_range] = STATE(10001), + [sym__val_range_with_end] = STATE(10049), + [sym__value] = STATE(9990), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(9118), + [sym_val_variable] = STATE(5224), + [sym__var] = STATE(4556), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(7035), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(9930), + [sym_list_body] = STATE(10740), + [sym_val_entry] = STATE(9992), + [sym__list_item_expression] = STATE(10082), + [sym__list_item_starts_with_sign] = STATE(10149), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_short_flag] = STATE(10149), + [sym_long_flag] = STATE(10149), + [sym_long_flag_equals_value] = STATE(3793), + [sym__unquoted_in_list] = STATE(9353), + [sym__unquoted_in_list_with_expr] = STATE(10149), + [sym__unquoted_anonymous_prefix] = STATE(9874), [sym_comment] = STATE(788), - [anon_sym_export] = ACTIONS(917), - [anon_sym_alias] = ACTIONS(917), - [anon_sym_let] = ACTIONS(917), - [anon_sym_let_DASHenv] = ACTIONS(917), - [anon_sym_mut] = ACTIONS(917), - [anon_sym_const] = ACTIONS(917), - [sym_cmd_identifier] = ACTIONS(917), - [anon_sym_def] = ACTIONS(917), - [anon_sym_export_DASHenv] = ACTIONS(917), - [anon_sym_extern] = ACTIONS(917), - [anon_sym_module] = ACTIONS(917), - [anon_sym_use] = ACTIONS(917), - [anon_sym_LPAREN] = ACTIONS(917), - [anon_sym_DOLLAR] = ACTIONS(917), - [anon_sym_error] = ACTIONS(917), - [anon_sym_list] = ACTIONS(917), - [anon_sym_GT] = ACTIONS(917), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_break] = ACTIONS(917), - [anon_sym_continue] = ACTIONS(917), - [anon_sym_for] = ACTIONS(917), - [anon_sym_in] = ACTIONS(917), - [anon_sym_loop] = ACTIONS(917), - [anon_sym_make] = ACTIONS(917), - [anon_sym_while] = ACTIONS(917), - [anon_sym_do] = ACTIONS(917), - [anon_sym_if] = ACTIONS(917), - [anon_sym_else] = ACTIONS(917), - [anon_sym_match] = ACTIONS(917), - [anon_sym_RBRACE] = ACTIONS(917), - [anon_sym_try] = ACTIONS(917), - [anon_sym_catch] = ACTIONS(917), - [anon_sym_return] = ACTIONS(917), - [anon_sym_source] = ACTIONS(917), - [anon_sym_source_DASHenv] = ACTIONS(917), - [anon_sym_register] = ACTIONS(917), - [anon_sym_hide] = ACTIONS(917), - [anon_sym_hide_DASHenv] = ACTIONS(917), - [anon_sym_overlay] = ACTIONS(917), - [anon_sym_new] = ACTIONS(917), - [anon_sym_as] = ACTIONS(917), - [anon_sym_STAR] = ACTIONS(917), - [anon_sym_STAR_STAR] = ACTIONS(917), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_mod] = ACTIONS(917), - [anon_sym_SLASH_SLASH] = ACTIONS(917), - [anon_sym_PLUS] = ACTIONS(917), - [anon_sym_bit_DASHshl] = ACTIONS(917), - [anon_sym_bit_DASHshr] = ACTIONS(917), - [anon_sym_EQ_EQ] = ACTIONS(917), - [anon_sym_BANG_EQ] = ACTIONS(917), - [anon_sym_LT2] = ACTIONS(917), - [anon_sym_LT_EQ] = ACTIONS(917), - [anon_sym_GT_EQ] = ACTIONS(917), - [anon_sym_not_DASHin] = ACTIONS(917), - [anon_sym_starts_DASHwith] = ACTIONS(917), - [anon_sym_ends_DASHwith] = ACTIONS(917), - [anon_sym_EQ_TILDE] = ACTIONS(917), - [anon_sym_BANG_TILDE] = ACTIONS(917), - [anon_sym_bit_DASHand] = ACTIONS(917), - [anon_sym_bit_DASHxor] = ACTIONS(917), - [anon_sym_bit_DASHor] = ACTIONS(917), - [anon_sym_and] = ACTIONS(917), - [anon_sym_xor] = ACTIONS(917), - [anon_sym_or] = ACTIONS(917), - [anon_sym_DOT_DOT2] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(919), - [anon_sym_DOT_DOT_LT2] = ACTIONS(919), - [aux_sym__val_number_decimal_token1] = ACTIONS(917), - [aux_sym__val_number_decimal_token2] = ACTIONS(917), - [anon_sym_DOT2] = ACTIONS(917), - [aux_sym__val_number_decimal_token3] = ACTIONS(917), - [aux_sym__val_number_token1] = ACTIONS(917), - [aux_sym__val_number_token2] = ACTIONS(917), - [aux_sym__val_number_token3] = ACTIONS(917), - [aux_sym__val_number_token4] = ACTIONS(917), - [aux_sym__val_number_token5] = ACTIONS(917), - [aux_sym__val_number_token6] = ACTIONS(917), - [sym_filesize_unit] = ACTIONS(917), - [sym_duration_unit] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(917), - [sym__str_single_quotes] = ACTIONS(917), - [sym__str_back_ticks] = ACTIONS(917), - [sym__entry_separator] = ACTIONS(919), - [aux_sym__record_key_token2] = ACTIONS(917), - [anon_sym_POUND] = ACTIONS(113), + [aux_sym_list_body_repeat1] = STATE(851), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_RBRACK] = ACTIONS(1860), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1734), + [anon_sym_DOT_DOT_LT] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [aux_sym__val_number_decimal_token1] = ACTIONS(1740), + [aux_sym__val_number_decimal_token2] = ACTIONS(1742), + [anon_sym_DOT2] = ACTIONS(1744), + [aux_sym__val_number_decimal_token3] = ACTIONS(1746), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [aux_sym__val_number_token4] = ACTIONS(1750), + [aux_sym__val_number_token5] = ACTIONS(1750), + [aux_sym__val_number_token6] = ACTIONS(1750), + [anon_sym_0b] = ACTIONS(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(3), }, [789] = { - [sym_cell_path] = STATE(837), - [sym_path] = STATE(798), + [sym__expr_unary_minus] = STATE(9980), + [sym_expr_parenthesized] = STATE(8494), + [sym_val_range] = STATE(9990), + [sym__val_range] = STATE(10001), + [sym__val_range_with_end] = STATE(10049), + [sym__value] = STATE(9990), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(9118), + [sym_val_variable] = STATE(5224), + [sym__var] = STATE(4556), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(7035), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(9934), + [sym_list_body] = STATE(10875), + [sym_val_entry] = STATE(9992), + [sym__list_item_expression] = STATE(10082), + [sym__list_item_starts_with_sign] = STATE(10149), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_short_flag] = STATE(10149), + [sym_long_flag] = STATE(10149), + [sym_long_flag_equals_value] = STATE(3793), + [sym__unquoted_in_list] = STATE(9353), + [sym__unquoted_in_list_with_expr] = STATE(10149), + [sym__unquoted_anonymous_prefix] = STATE(9874), [sym_comment] = STATE(789), - [anon_sym_export] = ACTIONS(995), - [anon_sym_alias] = ACTIONS(995), - [anon_sym_let] = ACTIONS(995), - [anon_sym_let_DASHenv] = ACTIONS(995), - [anon_sym_mut] = ACTIONS(995), - [anon_sym_const] = ACTIONS(995), - [sym_cmd_identifier] = ACTIONS(995), - [anon_sym_def] = ACTIONS(995), - [anon_sym_export_DASHenv] = ACTIONS(995), - [anon_sym_extern] = ACTIONS(995), - [anon_sym_module] = ACTIONS(995), - [anon_sym_use] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_DOLLAR] = ACTIONS(997), - [anon_sym_error] = ACTIONS(995), - [anon_sym_list] = ACTIONS(995), - [anon_sym_GT] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_break] = ACTIONS(995), - [anon_sym_continue] = ACTIONS(995), - [anon_sym_for] = ACTIONS(995), - [anon_sym_in] = ACTIONS(995), - [anon_sym_loop] = ACTIONS(995), - [anon_sym_make] = ACTIONS(995), - [anon_sym_while] = ACTIONS(995), - [anon_sym_do] = ACTIONS(995), - [anon_sym_if] = ACTIONS(995), - [anon_sym_else] = ACTIONS(995), - [anon_sym_match] = ACTIONS(995), - [anon_sym_RBRACE] = ACTIONS(997), - [anon_sym_try] = ACTIONS(995), - [anon_sym_catch] = ACTIONS(995), - [anon_sym_return] = ACTIONS(995), - [anon_sym_source] = ACTIONS(995), - [anon_sym_source_DASHenv] = ACTIONS(995), - [anon_sym_register] = ACTIONS(995), - [anon_sym_hide] = ACTIONS(995), - [anon_sym_hide_DASHenv] = ACTIONS(995), - [anon_sym_overlay] = ACTIONS(995), - [anon_sym_new] = ACTIONS(995), - [anon_sym_as] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_STAR_STAR] = ACTIONS(997), - [anon_sym_PLUS_PLUS] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(995), - [anon_sym_mod] = ACTIONS(995), - [anon_sym_SLASH_SLASH] = ACTIONS(997), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_bit_DASHshl] = ACTIONS(995), - [anon_sym_bit_DASHshr] = ACTIONS(995), - [anon_sym_EQ_EQ] = ACTIONS(997), - [anon_sym_BANG_EQ] = ACTIONS(997), - [anon_sym_LT2] = ACTIONS(995), - [anon_sym_LT_EQ] = ACTIONS(997), - [anon_sym_GT_EQ] = ACTIONS(997), - [anon_sym_not_DASHin] = ACTIONS(995), - [anon_sym_starts_DASHwith] = ACTIONS(995), - [anon_sym_ends_DASHwith] = ACTIONS(995), - [anon_sym_EQ_TILDE] = ACTIONS(997), - [anon_sym_BANG_TILDE] = ACTIONS(997), - [anon_sym_bit_DASHand] = ACTIONS(995), - [anon_sym_bit_DASHxor] = ACTIONS(995), - [anon_sym_bit_DASHor] = ACTIONS(995), - [anon_sym_and] = ACTIONS(995), - [anon_sym_xor] = ACTIONS(995), - [anon_sym_or] = ACTIONS(995), - [anon_sym_DOT_DOT2] = ACTIONS(995), - [anon_sym_DOT] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(997), - [anon_sym_DOT_DOT_LT2] = ACTIONS(997), - [aux_sym__val_number_decimal_token1] = ACTIONS(995), - [aux_sym__val_number_decimal_token2] = ACTIONS(997), - [anon_sym_DOT2] = ACTIONS(995), - [aux_sym__val_number_decimal_token3] = ACTIONS(997), - [aux_sym__val_number_token1] = ACTIONS(997), - [aux_sym__val_number_token2] = ACTIONS(997), - [aux_sym__val_number_token3] = ACTIONS(997), - [aux_sym__val_number_token4] = ACTIONS(995), - [aux_sym__val_number_token5] = ACTIONS(997), - [aux_sym__val_number_token6] = ACTIONS(995), - [anon_sym_DQUOTE] = ACTIONS(997), - [sym__str_single_quotes] = ACTIONS(997), - [sym__str_back_ticks] = ACTIONS(997), - [aux_sym__record_key_token2] = ACTIONS(995), + [aux_sym_list_body_repeat1] = STATE(851), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_RBRACK] = ACTIONS(1862), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1734), + [anon_sym_DOT_DOT_LT] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [aux_sym__val_number_decimal_token1] = ACTIONS(1740), + [aux_sym__val_number_decimal_token2] = ACTIONS(1742), + [anon_sym_DOT2] = ACTIONS(1744), + [aux_sym__val_number_decimal_token3] = ACTIONS(1746), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [aux_sym__val_number_token4] = ACTIONS(1750), + [aux_sym__val_number_token5] = ACTIONS(1750), + [aux_sym__val_number_token6] = ACTIONS(1750), + [anon_sym_0b] = ACTIONS(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1499), [anon_sym_POUND] = ACTIONS(3), }, [790] = { + [sym__expr_unary_minus] = STATE(9980), + [sym_expr_parenthesized] = STATE(8494), + [sym_val_range] = STATE(9990), + [sym__val_range] = STATE(10001), + [sym__val_range_with_end] = STATE(10049), + [sym__value] = STATE(9990), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(9118), + [sym_val_variable] = STATE(5224), + [sym__var] = STATE(4556), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(7035), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(9937), + [sym_list_body] = STATE(10367), + [sym_val_entry] = STATE(9992), + [sym__list_item_expression] = STATE(10082), + [sym__list_item_starts_with_sign] = STATE(10149), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_short_flag] = STATE(10149), + [sym_long_flag] = STATE(10149), + [sym_long_flag_equals_value] = STATE(3793), + [sym__unquoted_in_list] = STATE(9353), + [sym__unquoted_in_list_with_expr] = STATE(10149), + [sym__unquoted_anonymous_prefix] = STATE(9874), [sym_comment] = STATE(790), - [anon_sym_export] = ACTIONS(909), - [anon_sym_alias] = ACTIONS(909), - [anon_sym_let] = ACTIONS(909), - [anon_sym_let_DASHenv] = ACTIONS(909), - [anon_sym_mut] = ACTIONS(909), - [anon_sym_const] = ACTIONS(909), - [sym_cmd_identifier] = ACTIONS(909), - [anon_sym_def] = ACTIONS(909), - [anon_sym_export_DASHenv] = ACTIONS(909), - [anon_sym_extern] = ACTIONS(909), - [anon_sym_module] = ACTIONS(909), - [anon_sym_use] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(911), - [anon_sym_DOLLAR] = ACTIONS(911), - [anon_sym_error] = ACTIONS(909), - [anon_sym_list] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_break] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_for] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_loop] = ACTIONS(909), - [anon_sym_make] = ACTIONS(909), - [anon_sym_while] = ACTIONS(909), - [anon_sym_do] = ACTIONS(909), - [anon_sym_if] = ACTIONS(909), - [anon_sym_else] = ACTIONS(909), - [anon_sym_match] = ACTIONS(909), - [anon_sym_RBRACE] = ACTIONS(911), - [anon_sym_try] = ACTIONS(909), - [anon_sym_catch] = ACTIONS(909), - [anon_sym_return] = ACTIONS(909), - [anon_sym_source] = ACTIONS(909), - [anon_sym_source_DASHenv] = ACTIONS(909), - [anon_sym_register] = ACTIONS(909), - [anon_sym_hide] = ACTIONS(909), - [anon_sym_hide_DASHenv] = ACTIONS(909), - [anon_sym_overlay] = ACTIONS(909), - [anon_sym_new] = ACTIONS(909), - [anon_sym_as] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(911), - [anon_sym_PLUS_PLUS] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(909), - [anon_sym_SLASH_SLASH] = ACTIONS(911), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(909), - [anon_sym_bit_DASHshr] = ACTIONS(909), - [anon_sym_EQ_EQ] = ACTIONS(911), - [anon_sym_BANG_EQ] = ACTIONS(911), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(911), - [anon_sym_GT_EQ] = ACTIONS(911), - [anon_sym_not_DASHin] = ACTIONS(909), - [anon_sym_starts_DASHwith] = ACTIONS(909), - [anon_sym_ends_DASHwith] = ACTIONS(909), - [anon_sym_EQ_TILDE] = ACTIONS(911), - [anon_sym_BANG_TILDE] = ACTIONS(911), - [anon_sym_bit_DASHand] = ACTIONS(909), - [anon_sym_bit_DASHxor] = ACTIONS(909), - [anon_sym_bit_DASHor] = ACTIONS(909), - [anon_sym_and] = ACTIONS(909), - [anon_sym_xor] = ACTIONS(909), - [anon_sym_or] = ACTIONS(909), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [aux_sym__immediate_decimal_token2] = ACTIONS(1607), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(911), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(911), - [aux_sym__val_number_token1] = ACTIONS(911), - [aux_sym__val_number_token2] = ACTIONS(911), - [aux_sym__val_number_token3] = ACTIONS(911), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(911), - [aux_sym__val_number_token6] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(911), - [sym__str_single_quotes] = ACTIONS(911), - [sym__str_back_ticks] = ACTIONS(911), - [aux_sym__record_key_token2] = ACTIONS(909), + [aux_sym_list_body_repeat1] = STATE(851), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_RBRACK] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1734), + [anon_sym_DOT_DOT_LT] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [aux_sym__val_number_decimal_token1] = ACTIONS(1740), + [aux_sym__val_number_decimal_token2] = ACTIONS(1742), + [anon_sym_DOT2] = ACTIONS(1744), + [aux_sym__val_number_decimal_token3] = ACTIONS(1746), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [aux_sym__val_number_token4] = ACTIONS(1750), + [aux_sym__val_number_token5] = ACTIONS(1750), + [aux_sym__val_number_token6] = ACTIONS(1750), + [anon_sym_0b] = ACTIONS(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1499), [anon_sym_POUND] = ACTIONS(3), }, [791] = { + [sym__expr_parenthesized_immediate] = STATE(1536), + [sym__immediate_decimal] = STATE(1266), + [sym_val_variable] = STATE(1536), + [sym__var] = STATE(1105), [sym_comment] = STATE(791), - [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), - [sym_cmd_identifier] = 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_DOLLAR] = ACTIONS(950), - [anon_sym_error] = ACTIONS(950), - [anon_sym_list] = ACTIONS(950), - [anon_sym_GT] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(950), - [anon_sym_break] = ACTIONS(950), - [anon_sym_continue] = ACTIONS(950), - [anon_sym_for] = ACTIONS(950), - [anon_sym_in] = 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_register] = ACTIONS(950), - [anon_sym_hide] = ACTIONS(950), - [anon_sym_hide_DASHenv] = ACTIONS(950), - [anon_sym_overlay] = ACTIONS(950), - [anon_sym_new] = ACTIONS(950), - [anon_sym_as] = ACTIONS(950), - [anon_sym_STAR] = ACTIONS(950), - [anon_sym_STAR_STAR] = ACTIONS(950), - [anon_sym_PLUS_PLUS] = ACTIONS(950), - [anon_sym_SLASH] = ACTIONS(950), - [anon_sym_mod] = ACTIONS(950), - [anon_sym_SLASH_SLASH] = ACTIONS(950), - [anon_sym_PLUS] = ACTIONS(950), - [anon_sym_bit_DASHshl] = ACTIONS(950), - [anon_sym_bit_DASHshr] = ACTIONS(950), - [anon_sym_EQ_EQ] = ACTIONS(950), - [anon_sym_BANG_EQ] = ACTIONS(950), - [anon_sym_LT2] = ACTIONS(950), - [anon_sym_LT_EQ] = ACTIONS(950), - [anon_sym_GT_EQ] = ACTIONS(950), - [anon_sym_not_DASHin] = ACTIONS(950), - [anon_sym_starts_DASHwith] = ACTIONS(950), - [anon_sym_ends_DASHwith] = ACTIONS(950), - [anon_sym_EQ_TILDE] = ACTIONS(950), - [anon_sym_BANG_TILDE] = ACTIONS(950), - [anon_sym_bit_DASHand] = ACTIONS(950), - [anon_sym_bit_DASHxor] = ACTIONS(950), - [anon_sym_bit_DASHor] = ACTIONS(950), - [anon_sym_and] = ACTIONS(950), - [anon_sym_xor] = ACTIONS(950), - [anon_sym_or] = ACTIONS(950), - [anon_sym_DOT_DOT2] = ACTIONS(950), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(952), - [anon_sym_DOT_DOT_LT2] = ACTIONS(952), - [aux_sym__val_number_decimal_token1] = ACTIONS(950), - [aux_sym__val_number_decimal_token2] = ACTIONS(950), - [anon_sym_DOT2] = ACTIONS(950), - [aux_sym__val_number_decimal_token3] = ACTIONS(950), - [aux_sym__val_number_token1] = ACTIONS(950), - [aux_sym__val_number_token2] = ACTIONS(950), - [aux_sym__val_number_token3] = ACTIONS(950), - [aux_sym__val_number_token4] = ACTIONS(950), - [aux_sym__val_number_token5] = ACTIONS(950), - [aux_sym__val_number_token6] = ACTIONS(950), - [sym_filesize_unit] = ACTIONS(950), - [sym_duration_unit] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym__str_single_quotes] = ACTIONS(950), - [sym__str_back_ticks] = ACTIONS(950), - [sym__entry_separator] = ACTIONS(952), - [aux_sym__record_key_token2] = ACTIONS(950), + [anon_sym_export] = ACTIONS(1838), + [anon_sym_alias] = ACTIONS(1838), + [anon_sym_let] = ACTIONS(1838), + [anon_sym_let_DASHenv] = ACTIONS(1838), + [anon_sym_mut] = ACTIONS(1838), + [anon_sym_const] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(1838), + [sym_cmd_identifier] = ACTIONS(1838), + [anon_sym_LF] = ACTIONS(1840), + [anon_sym_def] = ACTIONS(1838), + [anon_sym_export_DASHenv] = ACTIONS(1838), + [anon_sym_extern] = ACTIONS(1838), + [anon_sym_module] = ACTIONS(1838), + [anon_sym_use] = ACTIONS(1838), + [anon_sym_LBRACK] = ACTIONS(1838), + [anon_sym_LPAREN] = ACTIONS(1838), + [anon_sym_RPAREN] = ACTIONS(1838), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_error] = ACTIONS(1838), + [anon_sym_DASH_DASH] = ACTIONS(1838), + [anon_sym_DASH] = ACTIONS(1838), + [anon_sym_break] = ACTIONS(1838), + [anon_sym_continue] = ACTIONS(1838), + [anon_sym_for] = ACTIONS(1838), + [anon_sym_loop] = ACTIONS(1838), + [anon_sym_while] = ACTIONS(1838), + [anon_sym_do] = ACTIONS(1838), + [anon_sym_if] = ACTIONS(1838), + [anon_sym_match] = ACTIONS(1838), + [anon_sym_LBRACE] = ACTIONS(1838), + [anon_sym_RBRACE] = ACTIONS(1838), + [anon_sym_DOT_DOT] = ACTIONS(1838), + [anon_sym_try] = ACTIONS(1838), + [anon_sym_return] = ACTIONS(1838), + [anon_sym_source] = ACTIONS(1838), + [anon_sym_source_DASHenv] = ACTIONS(1838), + [anon_sym_register] = ACTIONS(1838), + [anon_sym_hide] = ACTIONS(1838), + [anon_sym_hide_DASHenv] = ACTIONS(1838), + [anon_sym_overlay] = ACTIONS(1838), + [anon_sym_as] = ACTIONS(1838), + [anon_sym_where] = ACTIONS(1838), + [anon_sym_not] = ACTIONS(1838), + [anon_sym_LPAREN2] = ACTIONS(1868), + [anon_sym_DOT] = ACTIONS(1870), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1838), + [anon_sym_DOT_DOT_LT] = ACTIONS(1838), + [aux_sym__immediate_decimal_token1] = ACTIONS(1872), + [aux_sym__immediate_decimal_token3] = ACTIONS(1872), + [aux_sym__immediate_decimal_token4] = ACTIONS(1874), + [anon_sym_null] = ACTIONS(1838), + [anon_sym_true] = ACTIONS(1838), + [anon_sym_false] = ACTIONS(1838), + [aux_sym__val_number_decimal_token1] = ACTIONS(1838), + [aux_sym__val_number_decimal_token2] = ACTIONS(1838), + [anon_sym_DOT2] = ACTIONS(1838), + [aux_sym__val_number_decimal_token3] = ACTIONS(1838), + [aux_sym__val_number_token1] = ACTIONS(1838), + [aux_sym__val_number_token2] = ACTIONS(1838), + [aux_sym__val_number_token3] = ACTIONS(1838), + [aux_sym__val_number_token4] = ACTIONS(1838), + [aux_sym__val_number_token5] = ACTIONS(1838), + [aux_sym__val_number_token6] = ACTIONS(1838), + [anon_sym_0b] = ACTIONS(1838), + [anon_sym_0o] = ACTIONS(1838), + [anon_sym_0x] = ACTIONS(1838), + [sym_val_date] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym__str_single_quotes] = ACTIONS(1838), + [sym__str_back_ticks] = ACTIONS(1838), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1838), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1838), + [anon_sym_CARET] = ACTIONS(1838), + [aux_sym_unquoted_token2] = ACTIONS(1844), [anon_sym_POUND] = ACTIONS(113), }, [792] = { + [sym__expr_unary_minus] = STATE(9980), + [sym_expr_parenthesized] = STATE(8494), + [sym_val_range] = STATE(9990), + [sym__val_range] = STATE(10001), + [sym__val_range_with_end] = STATE(10049), + [sym__value] = STATE(9990), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(9118), + [sym_val_variable] = STATE(5224), + [sym__var] = STATE(4556), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(7035), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(9940), + [sym_list_body] = STATE(10463), + [sym_val_entry] = STATE(9992), + [sym__list_item_expression] = STATE(10082), + [sym__list_item_starts_with_sign] = STATE(10149), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_short_flag] = STATE(10149), + [sym_long_flag] = STATE(10149), + [sym_long_flag_equals_value] = STATE(3793), + [sym__unquoted_in_list] = STATE(9353), + [sym__unquoted_in_list_with_expr] = STATE(10149), + [sym__unquoted_anonymous_prefix] = STATE(9874), [sym_comment] = STATE(792), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_alias] = ACTIONS(1070), - [anon_sym_let] = ACTIONS(1070), - [anon_sym_let_DASHenv] = ACTIONS(1070), - [anon_sym_mut] = ACTIONS(1070), - [anon_sym_const] = ACTIONS(1070), - [sym_cmd_identifier] = ACTIONS(1070), - [anon_sym_def] = ACTIONS(1070), - [anon_sym_export_DASHenv] = ACTIONS(1070), - [anon_sym_extern] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_use] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_error] = ACTIONS(1070), - [anon_sym_list] = ACTIONS(1070), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_in] = ACTIONS(1070), - [anon_sym_loop] = ACTIONS(1070), - [anon_sym_make] = ACTIONS(1070), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_do] = ACTIONS(1070), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_else] = ACTIONS(1070), - [anon_sym_match] = ACTIONS(1070), - [anon_sym_RBRACE] = ACTIONS(1070), - [anon_sym_try] = ACTIONS(1070), - [anon_sym_catch] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_source] = ACTIONS(1070), - [anon_sym_source_DASHenv] = ACTIONS(1070), - [anon_sym_register] = ACTIONS(1070), - [anon_sym_hide] = ACTIONS(1070), - [anon_sym_hide_DASHenv] = ACTIONS(1070), - [anon_sym_overlay] = ACTIONS(1070), - [anon_sym_new] = ACTIONS(1070), - [anon_sym_as] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(1623), - [anon_sym_STAR_STAR] = ACTIONS(1070), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_mod] = ACTIONS(1070), - [anon_sym_SLASH_SLASH] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_bit_DASHshl] = ACTIONS(1070), - [anon_sym_bit_DASHshr] = ACTIONS(1070), - [anon_sym_EQ_EQ] = ACTIONS(1070), - [anon_sym_BANG_EQ] = ACTIONS(1070), - [anon_sym_LT2] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1070), - [anon_sym_GT_EQ] = ACTIONS(1070), - [anon_sym_not_DASHin] = ACTIONS(1070), - [anon_sym_starts_DASHwith] = ACTIONS(1070), - [anon_sym_ends_DASHwith] = ACTIONS(1070), - [anon_sym_EQ_TILDE] = ACTIONS(1070), - [anon_sym_BANG_TILDE] = ACTIONS(1070), - [anon_sym_bit_DASHand] = ACTIONS(1070), - [anon_sym_bit_DASHxor] = ACTIONS(1070), - [anon_sym_bit_DASHor] = ACTIONS(1070), - [anon_sym_and] = ACTIONS(1070), - [anon_sym_xor] = ACTIONS(1070), - [anon_sym_or] = ACTIONS(1070), - [anon_sym_DOT_DOT2] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1072), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1070), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [sym__entry_separator] = ACTIONS(1072), - [aux_sym__record_key_token2] = ACTIONS(1070), - [anon_sym_POUND] = ACTIONS(113), + [aux_sym_list_body_repeat1] = STATE(851), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_RBRACK] = ACTIONS(1876), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1734), + [anon_sym_DOT_DOT_LT] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [aux_sym__val_number_decimal_token1] = ACTIONS(1740), + [aux_sym__val_number_decimal_token2] = ACTIONS(1742), + [anon_sym_DOT2] = ACTIONS(1744), + [aux_sym__val_number_decimal_token3] = ACTIONS(1746), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [aux_sym__val_number_token4] = ACTIONS(1750), + [aux_sym__val_number_token5] = ACTIONS(1750), + [aux_sym__val_number_token6] = ACTIONS(1750), + [anon_sym_0b] = ACTIONS(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(3), }, [793] = { - [sym_path] = STATE(814), + [sym__expr_unary_minus] = STATE(9980), + [sym_expr_parenthesized] = STATE(8494), + [sym_val_range] = STATE(9990), + [sym__val_range] = STATE(10001), + [sym__val_range_with_end] = STATE(10049), + [sym__value] = STATE(9990), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(9118), + [sym_val_variable] = STATE(5224), + [sym__var] = STATE(4556), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(7035), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(9942), + [sym_list_body] = STATE(10569), + [sym_val_entry] = STATE(9992), + [sym__list_item_expression] = STATE(10082), + [sym__list_item_starts_with_sign] = STATE(10149), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_short_flag] = STATE(10149), + [sym_long_flag] = STATE(10149), + [sym_long_flag_equals_value] = STATE(3793), + [sym__unquoted_in_list] = STATE(9353), + [sym__unquoted_in_list_with_expr] = STATE(10149), + [sym__unquoted_anonymous_prefix] = STATE(9874), [sym_comment] = STATE(793), - [aux_sym_cell_path_repeat1] = STATE(796), - [anon_sym_export] = ACTIONS(1006), - [anon_sym_alias] = ACTIONS(1006), - [anon_sym_let] = ACTIONS(1006), - [anon_sym_let_DASHenv] = ACTIONS(1006), - [anon_sym_mut] = ACTIONS(1006), - [anon_sym_const] = ACTIONS(1006), - [sym_cmd_identifier] = ACTIONS(1006), - [anon_sym_def] = ACTIONS(1006), - [anon_sym_export_DASHenv] = ACTIONS(1006), - [anon_sym_extern] = ACTIONS(1006), - [anon_sym_module] = ACTIONS(1006), - [anon_sym_use] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1008), - [anon_sym_DOLLAR] = ACTIONS(1008), - [anon_sym_error] = ACTIONS(1006), - [anon_sym_list] = ACTIONS(1006), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_break] = ACTIONS(1006), - [anon_sym_continue] = ACTIONS(1006), - [anon_sym_for] = ACTIONS(1006), - [anon_sym_in] = ACTIONS(1006), - [anon_sym_loop] = ACTIONS(1006), - [anon_sym_make] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(1006), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_else] = ACTIONS(1006), - [anon_sym_match] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1008), - [anon_sym_try] = ACTIONS(1006), - [anon_sym_catch] = ACTIONS(1006), - [anon_sym_return] = ACTIONS(1006), - [anon_sym_source] = ACTIONS(1006), - [anon_sym_source_DASHenv] = ACTIONS(1006), - [anon_sym_register] = ACTIONS(1006), - [anon_sym_hide] = ACTIONS(1006), - [anon_sym_hide_DASHenv] = ACTIONS(1006), - [anon_sym_overlay] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1006), - [anon_sym_as] = ACTIONS(1006), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_STAR_STAR] = ACTIONS(1008), - [anon_sym_PLUS_PLUS] = ACTIONS(1008), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_mod] = ACTIONS(1006), - [anon_sym_SLASH_SLASH] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_bit_DASHshl] = ACTIONS(1006), - [anon_sym_bit_DASHshr] = ACTIONS(1006), - [anon_sym_EQ_EQ] = ACTIONS(1008), - [anon_sym_BANG_EQ] = ACTIONS(1008), - [anon_sym_LT2] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1008), - [anon_sym_GT_EQ] = ACTIONS(1008), - [anon_sym_not_DASHin] = ACTIONS(1006), - [anon_sym_starts_DASHwith] = ACTIONS(1006), - [anon_sym_ends_DASHwith] = ACTIONS(1006), - [anon_sym_EQ_TILDE] = ACTIONS(1008), - [anon_sym_BANG_TILDE] = ACTIONS(1008), - [anon_sym_bit_DASHand] = ACTIONS(1006), - [anon_sym_bit_DASHxor] = ACTIONS(1006), - [anon_sym_bit_DASHor] = ACTIONS(1006), - [anon_sym_and] = ACTIONS(1006), - [anon_sym_xor] = ACTIONS(1006), - [anon_sym_or] = ACTIONS(1006), - [anon_sym_DOT_DOT2] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1008), - [anon_sym_DOT2] = ACTIONS(1006), - [aux_sym__val_number_decimal_token3] = ACTIONS(1008), - [aux_sym__val_number_token1] = ACTIONS(1008), - [aux_sym__val_number_token2] = ACTIONS(1008), - [aux_sym__val_number_token3] = ACTIONS(1008), - [aux_sym__val_number_token4] = ACTIONS(1006), - [aux_sym__val_number_token5] = ACTIONS(1008), - [aux_sym__val_number_token6] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1008), - [sym__str_single_quotes] = ACTIONS(1008), - [sym__str_back_ticks] = ACTIONS(1008), - [aux_sym__record_key_token2] = ACTIONS(1006), + [aux_sym_list_body_repeat1] = STATE(851), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_RBRACK] = ACTIONS(1878), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1734), + [anon_sym_DOT_DOT_LT] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [aux_sym__val_number_decimal_token1] = ACTIONS(1740), + [aux_sym__val_number_decimal_token2] = ACTIONS(1742), + [anon_sym_DOT2] = ACTIONS(1744), + [aux_sym__val_number_decimal_token3] = ACTIONS(1746), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [aux_sym__val_number_token4] = ACTIONS(1750), + [aux_sym__val_number_token5] = ACTIONS(1750), + [aux_sym__val_number_token6] = ACTIONS(1750), + [anon_sym_0b] = ACTIONS(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1499), [anon_sym_POUND] = ACTIONS(3), }, [794] = { + [sym__expr_unary_minus] = STATE(9980), + [sym_expr_parenthesized] = STATE(8494), + [sym_val_range] = STATE(9990), + [sym__val_range] = STATE(10001), + [sym__val_range_with_end] = STATE(10049), + [sym__value] = STATE(9990), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(9118), + [sym_val_variable] = STATE(5224), + [sym__var] = STATE(4556), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(7035), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(9943), + [sym_list_body] = STATE(10680), + [sym_val_entry] = STATE(9992), + [sym__list_item_expression] = STATE(10082), + [sym__list_item_starts_with_sign] = STATE(10149), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_short_flag] = STATE(10149), + [sym_long_flag] = STATE(10149), + [sym_long_flag_equals_value] = STATE(3793), + [sym__unquoted_in_list] = STATE(9353), + [sym__unquoted_in_list_with_expr] = STATE(10149), + [sym__unquoted_anonymous_prefix] = STATE(9874), [sym_comment] = STATE(794), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_alias] = ACTIONS(1070), - [anon_sym_let] = ACTIONS(1070), - [anon_sym_let_DASHenv] = ACTIONS(1070), - [anon_sym_mut] = ACTIONS(1070), - [anon_sym_const] = ACTIONS(1070), - [sym_cmd_identifier] = ACTIONS(1070), - [anon_sym_def] = ACTIONS(1070), - [anon_sym_export_DASHenv] = ACTIONS(1070), - [anon_sym_extern] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_use] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_error] = ACTIONS(1070), - [anon_sym_list] = ACTIONS(1070), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_in] = ACTIONS(1070), - [anon_sym_loop] = ACTIONS(1070), - [anon_sym_make] = ACTIONS(1070), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_do] = ACTIONS(1070), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_else] = ACTIONS(1070), - [anon_sym_match] = ACTIONS(1070), - [anon_sym_RBRACE] = ACTIONS(1070), - [anon_sym_try] = ACTIONS(1070), - [anon_sym_catch] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_source] = ACTIONS(1070), - [anon_sym_source_DASHenv] = ACTIONS(1070), - [anon_sym_register] = ACTIONS(1070), - [anon_sym_hide] = ACTIONS(1070), - [anon_sym_hide_DASHenv] = ACTIONS(1070), - [anon_sym_overlay] = ACTIONS(1070), - [anon_sym_new] = ACTIONS(1070), - [anon_sym_as] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(1623), - [anon_sym_STAR_STAR] = ACTIONS(1070), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_mod] = ACTIONS(1070), - [anon_sym_SLASH_SLASH] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_bit_DASHshl] = ACTIONS(1070), - [anon_sym_bit_DASHshr] = ACTIONS(1070), - [anon_sym_EQ_EQ] = ACTIONS(1070), - [anon_sym_BANG_EQ] = ACTIONS(1070), - [anon_sym_LT2] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1070), - [anon_sym_GT_EQ] = ACTIONS(1070), - [anon_sym_not_DASHin] = ACTIONS(1070), - [anon_sym_starts_DASHwith] = ACTIONS(1070), - [anon_sym_ends_DASHwith] = ACTIONS(1070), - [anon_sym_EQ_TILDE] = ACTIONS(1070), - [anon_sym_BANG_TILDE] = ACTIONS(1070), - [anon_sym_bit_DASHand] = ACTIONS(1070), - [anon_sym_bit_DASHxor] = ACTIONS(1070), - [anon_sym_bit_DASHor] = ACTIONS(1070), - [anon_sym_and] = ACTIONS(1070), - [anon_sym_xor] = ACTIONS(1070), - [anon_sym_or] = ACTIONS(1070), - [anon_sym_DOT_DOT2] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1072), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1070), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [sym__entry_separator] = ACTIONS(1072), - [aux_sym__record_key_token2] = ACTIONS(1070), - [anon_sym_POUND] = ACTIONS(113), + [aux_sym_list_body_repeat1] = STATE(851), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_RBRACK] = ACTIONS(1880), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1734), + [anon_sym_DOT_DOT_LT] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [aux_sym__val_number_decimal_token1] = ACTIONS(1740), + [aux_sym__val_number_decimal_token2] = ACTIONS(1742), + [anon_sym_DOT2] = ACTIONS(1744), + [aux_sym__val_number_decimal_token3] = ACTIONS(1746), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [aux_sym__val_number_token4] = ACTIONS(1750), + [aux_sym__val_number_token5] = ACTIONS(1750), + [aux_sym__val_number_token6] = ACTIONS(1750), + [anon_sym_0b] = ACTIONS(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(3), }, [795] = { + [sym__expr_parenthesized_immediate] = STATE(1600), + [sym__immediate_decimal] = STATE(1151), + [sym_val_variable] = STATE(1600), + [sym__var] = STATE(1105), [sym_comment] = STATE(795), - [anon_sym_export] = ACTIONS(923), - [anon_sym_alias] = ACTIONS(923), - [anon_sym_let] = ACTIONS(923), - [anon_sym_let_DASHenv] = ACTIONS(923), - [anon_sym_mut] = ACTIONS(923), - [anon_sym_const] = ACTIONS(923), - [sym_cmd_identifier] = ACTIONS(923), - [anon_sym_def] = ACTIONS(923), - [anon_sym_export_DASHenv] = ACTIONS(923), - [anon_sym_extern] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_use] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(925), - [anon_sym_DOLLAR] = ACTIONS(925), - [anon_sym_error] = ACTIONS(923), - [anon_sym_list] = ACTIONS(923), - [anon_sym_GT] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_break] = ACTIONS(923), - [anon_sym_continue] = ACTIONS(923), - [anon_sym_for] = ACTIONS(923), - [anon_sym_in] = ACTIONS(923), - [anon_sym_loop] = ACTIONS(923), - [anon_sym_make] = ACTIONS(923), - [anon_sym_while] = ACTIONS(923), - [anon_sym_do] = ACTIONS(923), - [anon_sym_if] = ACTIONS(923), - [anon_sym_else] = ACTIONS(923), - [anon_sym_match] = ACTIONS(923), - [anon_sym_RBRACE] = ACTIONS(925), - [anon_sym_try] = ACTIONS(923), - [anon_sym_catch] = ACTIONS(923), - [anon_sym_return] = ACTIONS(923), - [anon_sym_source] = ACTIONS(923), - [anon_sym_source_DASHenv] = ACTIONS(923), - [anon_sym_register] = ACTIONS(923), - [anon_sym_hide] = ACTIONS(923), - [anon_sym_hide_DASHenv] = ACTIONS(923), - [anon_sym_overlay] = ACTIONS(923), - [anon_sym_new] = ACTIONS(923), - [anon_sym_as] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_STAR_STAR] = ACTIONS(925), - [anon_sym_PLUS_PLUS] = ACTIONS(925), - [anon_sym_SLASH] = ACTIONS(923), - [anon_sym_mod] = ACTIONS(923), - [anon_sym_SLASH_SLASH] = ACTIONS(925), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_bit_DASHshl] = ACTIONS(923), - [anon_sym_bit_DASHshr] = ACTIONS(923), - [anon_sym_EQ_EQ] = ACTIONS(925), - [anon_sym_BANG_EQ] = ACTIONS(925), - [anon_sym_LT2] = ACTIONS(923), - [anon_sym_LT_EQ] = ACTIONS(925), - [anon_sym_GT_EQ] = ACTIONS(925), - [anon_sym_not_DASHin] = ACTIONS(923), - [anon_sym_starts_DASHwith] = ACTIONS(923), - [anon_sym_ends_DASHwith] = ACTIONS(923), - [anon_sym_EQ_TILDE] = ACTIONS(925), - [anon_sym_BANG_TILDE] = ACTIONS(925), - [anon_sym_bit_DASHand] = ACTIONS(923), - [anon_sym_bit_DASHxor] = ACTIONS(923), - [anon_sym_bit_DASHor] = ACTIONS(923), - [anon_sym_and] = ACTIONS(923), - [anon_sym_xor] = ACTIONS(923), - [anon_sym_or] = ACTIONS(923), - [anon_sym_DOT_DOT2] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(925), - [anon_sym_DOT_DOT_LT2] = ACTIONS(925), - [aux_sym__immediate_decimal_token2] = ACTIONS(1603), - [aux_sym__val_number_decimal_token1] = ACTIONS(923), - [aux_sym__val_number_decimal_token2] = ACTIONS(925), - [anon_sym_DOT2] = ACTIONS(923), - [aux_sym__val_number_decimal_token3] = ACTIONS(925), - [aux_sym__val_number_token1] = ACTIONS(925), - [aux_sym__val_number_token2] = ACTIONS(925), - [aux_sym__val_number_token3] = ACTIONS(925), - [aux_sym__val_number_token4] = ACTIONS(923), - [aux_sym__val_number_token5] = ACTIONS(925), - [aux_sym__val_number_token6] = ACTIONS(923), - [sym_filesize_unit] = ACTIONS(923), - [sym_duration_unit] = ACTIONS(923), - [anon_sym_DQUOTE] = ACTIONS(925), - [sym__str_single_quotes] = ACTIONS(925), - [sym__str_back_ticks] = ACTIONS(925), - [aux_sym__record_key_token2] = ACTIONS(923), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1882), + [anon_sym_alias] = ACTIONS(1882), + [anon_sym_let] = ACTIONS(1882), + [anon_sym_let_DASHenv] = ACTIONS(1882), + [anon_sym_mut] = ACTIONS(1882), + [anon_sym_const] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1882), + [sym_cmd_identifier] = ACTIONS(1882), + [anon_sym_LF] = ACTIONS(1884), + [anon_sym_def] = ACTIONS(1882), + [anon_sym_export_DASHenv] = ACTIONS(1882), + [anon_sym_extern] = ACTIONS(1882), + [anon_sym_module] = ACTIONS(1882), + [anon_sym_use] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1882), + [anon_sym_LPAREN] = ACTIONS(1882), + [anon_sym_RPAREN] = ACTIONS(1882), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_error] = ACTIONS(1882), + [anon_sym_DASH_DASH] = ACTIONS(1882), + [anon_sym_DASH] = ACTIONS(1882), + [anon_sym_break] = ACTIONS(1882), + [anon_sym_continue] = ACTIONS(1882), + [anon_sym_for] = ACTIONS(1882), + [anon_sym_loop] = ACTIONS(1882), + [anon_sym_while] = ACTIONS(1882), + [anon_sym_do] = ACTIONS(1882), + [anon_sym_if] = ACTIONS(1882), + [anon_sym_match] = ACTIONS(1882), + [anon_sym_LBRACE] = ACTIONS(1882), + [anon_sym_RBRACE] = ACTIONS(1882), + [anon_sym_DOT_DOT] = ACTIONS(1882), + [anon_sym_try] = ACTIONS(1882), + [anon_sym_return] = ACTIONS(1882), + [anon_sym_source] = ACTIONS(1882), + [anon_sym_source_DASHenv] = ACTIONS(1882), + [anon_sym_register] = ACTIONS(1882), + [anon_sym_hide] = ACTIONS(1882), + [anon_sym_hide_DASHenv] = ACTIONS(1882), + [anon_sym_overlay] = ACTIONS(1882), + [anon_sym_as] = ACTIONS(1882), + [anon_sym_where] = ACTIONS(1882), + [anon_sym_not] = ACTIONS(1882), + [anon_sym_LPAREN2] = ACTIONS(1868), + [anon_sym_DOT] = ACTIONS(1870), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1882), + [anon_sym_DOT_DOT_LT] = ACTIONS(1882), + [aux_sym__immediate_decimal_token1] = ACTIONS(1872), + [aux_sym__immediate_decimal_token3] = ACTIONS(1872), + [aux_sym__immediate_decimal_token4] = ACTIONS(1874), + [anon_sym_null] = ACTIONS(1882), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [aux_sym__val_number_decimal_token1] = ACTIONS(1882), + [aux_sym__val_number_decimal_token2] = ACTIONS(1882), + [anon_sym_DOT2] = ACTIONS(1882), + [aux_sym__val_number_decimal_token3] = ACTIONS(1882), + [aux_sym__val_number_token1] = ACTIONS(1882), + [aux_sym__val_number_token2] = ACTIONS(1882), + [aux_sym__val_number_token3] = ACTIONS(1882), + [aux_sym__val_number_token4] = ACTIONS(1882), + [aux_sym__val_number_token5] = ACTIONS(1882), + [aux_sym__val_number_token6] = ACTIONS(1882), + [anon_sym_0b] = ACTIONS(1882), + [anon_sym_0o] = ACTIONS(1882), + [anon_sym_0x] = ACTIONS(1882), + [sym_val_date] = ACTIONS(1882), + [anon_sym_DQUOTE] = ACTIONS(1882), + [sym__str_single_quotes] = ACTIONS(1882), + [sym__str_back_ticks] = ACTIONS(1882), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1882), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1882), + [anon_sym_CARET] = ACTIONS(1882), + [aux_sym_unquoted_token2] = ACTIONS(1886), + [anon_sym_POUND] = ACTIONS(113), }, [796] = { - [sym_path] = STATE(814), [sym_comment] = STATE(796), - [aux_sym_cell_path_repeat1] = STATE(796), - [anon_sym_export] = ACTIONS(999), - [anon_sym_alias] = ACTIONS(999), - [anon_sym_let] = ACTIONS(999), - [anon_sym_let_DASHenv] = ACTIONS(999), - [anon_sym_mut] = ACTIONS(999), - [anon_sym_const] = ACTIONS(999), - [sym_cmd_identifier] = ACTIONS(999), - [anon_sym_def] = ACTIONS(999), - [anon_sym_export_DASHenv] = ACTIONS(999), - [anon_sym_extern] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_use] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(1001), - [anon_sym_DOLLAR] = ACTIONS(1001), - [anon_sym_error] = ACTIONS(999), - [anon_sym_list] = ACTIONS(999), - [anon_sym_GT] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_break] = ACTIONS(999), - [anon_sym_continue] = ACTIONS(999), - [anon_sym_for] = ACTIONS(999), - [anon_sym_in] = ACTIONS(999), - [anon_sym_loop] = ACTIONS(999), - [anon_sym_make] = ACTIONS(999), - [anon_sym_while] = ACTIONS(999), - [anon_sym_do] = ACTIONS(999), - [anon_sym_if] = ACTIONS(999), - [anon_sym_else] = ACTIONS(999), - [anon_sym_match] = ACTIONS(999), - [anon_sym_RBRACE] = ACTIONS(1001), - [anon_sym_try] = ACTIONS(999), - [anon_sym_catch] = ACTIONS(999), - [anon_sym_return] = ACTIONS(999), - [anon_sym_source] = ACTIONS(999), - [anon_sym_source_DASHenv] = ACTIONS(999), - [anon_sym_register] = ACTIONS(999), - [anon_sym_hide] = ACTIONS(999), - [anon_sym_hide_DASHenv] = ACTIONS(999), - [anon_sym_overlay] = ACTIONS(999), - [anon_sym_new] = ACTIONS(999), - [anon_sym_as] = ACTIONS(999), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_STAR_STAR] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(999), - [anon_sym_mod] = ACTIONS(999), - [anon_sym_SLASH_SLASH] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_bit_DASHshl] = ACTIONS(999), - [anon_sym_bit_DASHshr] = ACTIONS(999), - [anon_sym_EQ_EQ] = ACTIONS(1001), - [anon_sym_BANG_EQ] = ACTIONS(1001), - [anon_sym_LT2] = ACTIONS(999), - [anon_sym_LT_EQ] = ACTIONS(1001), - [anon_sym_GT_EQ] = ACTIONS(1001), - [anon_sym_not_DASHin] = ACTIONS(999), - [anon_sym_starts_DASHwith] = ACTIONS(999), - [anon_sym_ends_DASHwith] = ACTIONS(999), - [anon_sym_EQ_TILDE] = ACTIONS(1001), - [anon_sym_BANG_TILDE] = ACTIONS(1001), - [anon_sym_bit_DASHand] = ACTIONS(999), - [anon_sym_bit_DASHxor] = ACTIONS(999), - [anon_sym_bit_DASHor] = ACTIONS(999), - [anon_sym_and] = ACTIONS(999), - [anon_sym_xor] = ACTIONS(999), - [anon_sym_or] = ACTIONS(999), - [anon_sym_DOT_DOT2] = ACTIONS(999), - [anon_sym_DOT] = ACTIONS(1625), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1001), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1001), - [aux_sym__val_number_decimal_token1] = ACTIONS(999), - [aux_sym__val_number_decimal_token2] = ACTIONS(1001), - [anon_sym_DOT2] = ACTIONS(999), - [aux_sym__val_number_decimal_token3] = ACTIONS(1001), - [aux_sym__val_number_token1] = ACTIONS(1001), - [aux_sym__val_number_token2] = ACTIONS(1001), - [aux_sym__val_number_token3] = ACTIONS(1001), - [aux_sym__val_number_token4] = ACTIONS(999), - [aux_sym__val_number_token5] = ACTIONS(1001), - [aux_sym__val_number_token6] = ACTIONS(999), - [anon_sym_DQUOTE] = ACTIONS(1001), - [sym__str_single_quotes] = ACTIONS(1001), - [sym__str_back_ticks] = ACTIONS(1001), - [aux_sym__record_key_token2] = ACTIONS(999), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(893), + [anon_sym_alias] = ACTIONS(893), + [anon_sym_let] = ACTIONS(893), + [anon_sym_let_DASHenv] = ACTIONS(893), + [anon_sym_mut] = ACTIONS(893), + [anon_sym_const] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(893), + [sym_cmd_identifier] = ACTIONS(893), + [anon_sym_LF] = ACTIONS(895), + [anon_sym_def] = ACTIONS(893), + [anon_sym_export_DASHenv] = ACTIONS(893), + [anon_sym_extern] = ACTIONS(893), + [anon_sym_module] = ACTIONS(893), + [anon_sym_use] = ACTIONS(893), + [anon_sym_LBRACK] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(893), + [anon_sym_RPAREN] = ACTIONS(893), + [anon_sym_DOLLAR] = ACTIONS(893), + [anon_sym_error] = ACTIONS(893), + [anon_sym_DASH_DASH] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_break] = ACTIONS(893), + [anon_sym_continue] = ACTIONS(893), + [anon_sym_for] = ACTIONS(893), + [anon_sym_loop] = ACTIONS(893), + [anon_sym_while] = ACTIONS(893), + [anon_sym_do] = ACTIONS(893), + [anon_sym_if] = ACTIONS(893), + [anon_sym_match] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(893), + [anon_sym_DOT_DOT] = ACTIONS(893), + [anon_sym_try] = ACTIONS(893), + [anon_sym_return] = ACTIONS(893), + [anon_sym_source] = ACTIONS(893), + [anon_sym_source_DASHenv] = ACTIONS(893), + [anon_sym_register] = ACTIONS(893), + [anon_sym_hide] = ACTIONS(893), + [anon_sym_hide_DASHenv] = ACTIONS(893), + [anon_sym_overlay] = ACTIONS(893), + [anon_sym_as] = ACTIONS(893), + [anon_sym_where] = ACTIONS(893), + [anon_sym_not] = ACTIONS(893), + [anon_sym_LPAREN2] = ACTIONS(895), + [anon_sym_DOT_DOT2] = ACTIONS(893), + [anon_sym_DOT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ] = ACTIONS(893), + [anon_sym_DOT_DOT_LT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), + [anon_sym_DOT_DOT_LT2] = ACTIONS(895), + [aux_sym__immediate_decimal_token1] = ACTIONS(1888), + [aux_sym__immediate_decimal_token2] = ACTIONS(1890), + [anon_sym_null] = ACTIONS(893), + [anon_sym_true] = ACTIONS(893), + [anon_sym_false] = ACTIONS(893), + [aux_sym__val_number_decimal_token1] = ACTIONS(893), + [aux_sym__val_number_decimal_token2] = ACTIONS(893), + [anon_sym_DOT2] = ACTIONS(893), + [aux_sym__val_number_decimal_token3] = ACTIONS(893), + [aux_sym__val_number_token1] = ACTIONS(893), + [aux_sym__val_number_token2] = ACTIONS(893), + [aux_sym__val_number_token3] = ACTIONS(893), + [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(893), + [sym_filesize_unit] = ACTIONS(893), + [sym_duration_unit] = ACTIONS(893), + [anon_sym_0o] = ACTIONS(893), + [anon_sym_0x] = ACTIONS(893), + [sym_val_date] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(893), + [sym__str_single_quotes] = ACTIONS(893), + [sym__str_back_ticks] = ACTIONS(893), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(893), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(893), + [anon_sym_CARET] = ACTIONS(893), + [aux_sym_unquoted_token5] = ACTIONS(893), + [anon_sym_POUND] = ACTIONS(113), }, [797] = { - [sym_cell_path] = STATE(847), - [sym_path] = STATE(798), + [sym__expr_unary_minus] = STATE(9980), + [sym_expr_parenthesized] = STATE(8494), + [sym_val_range] = STATE(9990), + [sym__val_range] = STATE(10001), + [sym__val_range_with_end] = STATE(10049), + [sym__value] = STATE(9990), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(9118), + [sym_val_variable] = STATE(5224), + [sym__var] = STATE(4556), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(7035), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(9945), + [sym_list_body] = STATE(10792), + [sym_val_entry] = STATE(9992), + [sym__list_item_expression] = STATE(10082), + [sym__list_item_starts_with_sign] = STATE(10149), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_short_flag] = STATE(10149), + [sym_long_flag] = STATE(10149), + [sym_long_flag_equals_value] = STATE(3793), + [sym__unquoted_in_list] = STATE(9353), + [sym__unquoted_in_list_with_expr] = STATE(10149), + [sym__unquoted_anonymous_prefix] = STATE(9874), [sym_comment] = STATE(797), - [anon_sym_export] = ACTIONS(1010), - [anon_sym_alias] = ACTIONS(1010), - [anon_sym_let] = ACTIONS(1010), - [anon_sym_let_DASHenv] = ACTIONS(1010), - [anon_sym_mut] = ACTIONS(1010), - [anon_sym_const] = ACTIONS(1010), - [sym_cmd_identifier] = ACTIONS(1010), - [anon_sym_def] = ACTIONS(1010), - [anon_sym_export_DASHenv] = ACTIONS(1010), - [anon_sym_extern] = ACTIONS(1010), - [anon_sym_module] = ACTIONS(1010), - [anon_sym_use] = ACTIONS(1010), - [anon_sym_LPAREN] = ACTIONS(1012), - [anon_sym_DOLLAR] = ACTIONS(1012), - [anon_sym_error] = ACTIONS(1010), - [anon_sym_list] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1010), - [anon_sym_continue] = ACTIONS(1010), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_in] = ACTIONS(1010), - [anon_sym_loop] = ACTIONS(1010), - [anon_sym_make] = ACTIONS(1010), - [anon_sym_while] = ACTIONS(1010), - [anon_sym_do] = ACTIONS(1010), - [anon_sym_if] = ACTIONS(1010), - [anon_sym_else] = ACTIONS(1010), - [anon_sym_match] = ACTIONS(1010), - [anon_sym_RBRACE] = ACTIONS(1012), - [anon_sym_try] = ACTIONS(1010), - [anon_sym_catch] = ACTIONS(1010), - [anon_sym_return] = ACTIONS(1010), - [anon_sym_source] = ACTIONS(1010), - [anon_sym_source_DASHenv] = ACTIONS(1010), - [anon_sym_register] = ACTIONS(1010), - [anon_sym_hide] = ACTIONS(1010), - [anon_sym_hide_DASHenv] = ACTIONS(1010), - [anon_sym_overlay] = ACTIONS(1010), - [anon_sym_new] = ACTIONS(1010), - [anon_sym_as] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1010), - [anon_sym_STAR_STAR] = ACTIONS(1012), - [anon_sym_PLUS_PLUS] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1010), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1012), - [anon_sym_PLUS] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1012), - [anon_sym_BANG_EQ] = ACTIONS(1012), - [anon_sym_LT2] = ACTIONS(1010), - [anon_sym_LT_EQ] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1012), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1012), - [anon_sym_BANG_TILDE] = ACTIONS(1012), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_DOT_DOT2] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), - [aux_sym__val_number_decimal_token1] = ACTIONS(1010), - [aux_sym__val_number_decimal_token2] = ACTIONS(1012), - [anon_sym_DOT2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = 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(1010), - [aux_sym__val_number_token5] = ACTIONS(1012), - [aux_sym__val_number_token6] = ACTIONS(1010), - [anon_sym_DQUOTE] = ACTIONS(1012), - [sym__str_single_quotes] = ACTIONS(1012), - [sym__str_back_ticks] = ACTIONS(1012), - [aux_sym__record_key_token2] = ACTIONS(1010), + [aux_sym_list_body_repeat1] = STATE(851), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_RBRACK] = ACTIONS(1892), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1734), + [anon_sym_DOT_DOT_LT] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [aux_sym__val_number_decimal_token1] = ACTIONS(1740), + [aux_sym__val_number_decimal_token2] = ACTIONS(1742), + [anon_sym_DOT2] = ACTIONS(1744), + [aux_sym__val_number_decimal_token3] = ACTIONS(1746), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [aux_sym__val_number_token4] = ACTIONS(1750), + [aux_sym__val_number_token5] = ACTIONS(1750), + [aux_sym__val_number_token6] = ACTIONS(1750), + [anon_sym_0b] = ACTIONS(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1499), [anon_sym_POUND] = ACTIONS(3), }, [798] = { - [sym_path] = STATE(814), + [sym__expr_unary_minus] = STATE(9980), + [sym_expr_parenthesized] = STATE(8494), + [sym_val_range] = STATE(9990), + [sym__val_range] = STATE(10001), + [sym__val_range_with_end] = STATE(10049), + [sym__value] = STATE(9990), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(9118), + [sym_val_variable] = STATE(5224), + [sym__var] = STATE(4556), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(7035), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(9947), + [sym_list_body] = STATE(10270), + [sym_val_entry] = STATE(9992), + [sym__list_item_expression] = STATE(10082), + [sym__list_item_starts_with_sign] = STATE(10149), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_short_flag] = STATE(10149), + [sym_long_flag] = STATE(10149), + [sym_long_flag_equals_value] = STATE(3793), + [sym__unquoted_in_list] = STATE(9353), + [sym__unquoted_in_list_with_expr] = STATE(10149), + [sym__unquoted_anonymous_prefix] = STATE(9874), [sym_comment] = STATE(798), - [aux_sym_cell_path_repeat1] = STATE(793), - [anon_sym_export] = ACTIONS(987), - [anon_sym_alias] = ACTIONS(987), - [anon_sym_let] = ACTIONS(987), - [anon_sym_let_DASHenv] = ACTIONS(987), - [anon_sym_mut] = ACTIONS(987), - [anon_sym_const] = ACTIONS(987), - [sym_cmd_identifier] = ACTIONS(987), - [anon_sym_def] = ACTIONS(987), - [anon_sym_export_DASHenv] = ACTIONS(987), - [anon_sym_extern] = ACTIONS(987), - [anon_sym_module] = ACTIONS(987), - [anon_sym_use] = ACTIONS(987), - [anon_sym_LPAREN] = ACTIONS(989), - [anon_sym_DOLLAR] = ACTIONS(989), - [anon_sym_error] = ACTIONS(987), - [anon_sym_list] = ACTIONS(987), - [anon_sym_GT] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_break] = ACTIONS(987), - [anon_sym_continue] = ACTIONS(987), - [anon_sym_for] = ACTIONS(987), - [anon_sym_in] = ACTIONS(987), - [anon_sym_loop] = ACTIONS(987), - [anon_sym_make] = ACTIONS(987), - [anon_sym_while] = ACTIONS(987), - [anon_sym_do] = ACTIONS(987), - [anon_sym_if] = ACTIONS(987), - [anon_sym_else] = ACTIONS(987), - [anon_sym_match] = ACTIONS(987), - [anon_sym_RBRACE] = ACTIONS(989), - [anon_sym_try] = ACTIONS(987), - [anon_sym_catch] = ACTIONS(987), - [anon_sym_return] = ACTIONS(987), - [anon_sym_source] = ACTIONS(987), - [anon_sym_source_DASHenv] = ACTIONS(987), - [anon_sym_register] = ACTIONS(987), - [anon_sym_hide] = ACTIONS(987), - [anon_sym_hide_DASHenv] = ACTIONS(987), - [anon_sym_overlay] = ACTIONS(987), - [anon_sym_new] = ACTIONS(987), - [anon_sym_as] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(987), - [anon_sym_STAR_STAR] = ACTIONS(989), - [anon_sym_PLUS_PLUS] = ACTIONS(989), - [anon_sym_SLASH] = ACTIONS(987), - [anon_sym_mod] = ACTIONS(987), - [anon_sym_SLASH_SLASH] = ACTIONS(989), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_bit_DASHshl] = ACTIONS(987), - [anon_sym_bit_DASHshr] = ACTIONS(987), - [anon_sym_EQ_EQ] = ACTIONS(989), - [anon_sym_BANG_EQ] = ACTIONS(989), - [anon_sym_LT2] = ACTIONS(987), - [anon_sym_LT_EQ] = ACTIONS(989), - [anon_sym_GT_EQ] = ACTIONS(989), - [anon_sym_not_DASHin] = ACTIONS(987), - [anon_sym_starts_DASHwith] = ACTIONS(987), - [anon_sym_ends_DASHwith] = ACTIONS(987), - [anon_sym_EQ_TILDE] = ACTIONS(989), - [anon_sym_BANG_TILDE] = ACTIONS(989), - [anon_sym_bit_DASHand] = ACTIONS(987), - [anon_sym_bit_DASHxor] = ACTIONS(987), - [anon_sym_bit_DASHor] = ACTIONS(987), - [anon_sym_and] = ACTIONS(987), - [anon_sym_xor] = ACTIONS(987), - [anon_sym_or] = ACTIONS(987), - [anon_sym_DOT_DOT2] = ACTIONS(987), - [anon_sym_DOT] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(989), - [anon_sym_DOT_DOT_LT2] = ACTIONS(989), - [aux_sym__val_number_decimal_token1] = ACTIONS(987), - [aux_sym__val_number_decimal_token2] = ACTIONS(989), - [anon_sym_DOT2] = ACTIONS(987), - [aux_sym__val_number_decimal_token3] = ACTIONS(989), - [aux_sym__val_number_token1] = ACTIONS(989), - [aux_sym__val_number_token2] = ACTIONS(989), - [aux_sym__val_number_token3] = ACTIONS(989), - [aux_sym__val_number_token4] = ACTIONS(987), - [aux_sym__val_number_token5] = ACTIONS(989), - [aux_sym__val_number_token6] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(989), - [sym__str_single_quotes] = ACTIONS(989), - [sym__str_back_ticks] = ACTIONS(989), - [aux_sym__record_key_token2] = ACTIONS(987), + [aux_sym_list_body_repeat1] = STATE(851), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_RBRACK] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1734), + [anon_sym_DOT_DOT_LT] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [aux_sym__val_number_decimal_token1] = ACTIONS(1740), + [aux_sym__val_number_decimal_token2] = ACTIONS(1742), + [anon_sym_DOT2] = ACTIONS(1744), + [aux_sym__val_number_decimal_token3] = ACTIONS(1746), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [aux_sym__val_number_token4] = ACTIONS(1750), + [aux_sym__val_number_token5] = ACTIONS(1750), + [aux_sym__val_number_token6] = ACTIONS(1750), + [anon_sym_0b] = ACTIONS(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1499), [anon_sym_POUND] = ACTIONS(3), }, [799] = { + [sym__expr_unary_minus] = STATE(9980), + [sym_expr_parenthesized] = STATE(8494), + [sym_val_range] = STATE(9990), + [sym__val_range] = STATE(10001), + [sym__val_range_with_end] = STATE(10049), + [sym__value] = STATE(9990), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(9118), + [sym_val_variable] = STATE(5224), + [sym__var] = STATE(4556), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(7035), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(9949), + [sym_list_body] = STATE(10320), + [sym_val_entry] = STATE(9992), + [sym__list_item_expression] = STATE(10082), + [sym__list_item_starts_with_sign] = STATE(10149), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_short_flag] = STATE(10149), + [sym_long_flag] = STATE(10149), + [sym_long_flag_equals_value] = STATE(3793), + [sym__unquoted_in_list] = STATE(9353), + [sym__unquoted_in_list_with_expr] = STATE(10149), + [sym__unquoted_anonymous_prefix] = STATE(9874), [sym_comment] = STATE(799), - [anon_sym_export] = ACTIONS(917), - [anon_sym_alias] = ACTIONS(917), - [anon_sym_let] = ACTIONS(917), - [anon_sym_let_DASHenv] = ACTIONS(917), - [anon_sym_mut] = ACTIONS(917), - [anon_sym_const] = ACTIONS(917), - [sym_cmd_identifier] = ACTIONS(917), - [anon_sym_def] = ACTIONS(917), - [anon_sym_export_DASHenv] = ACTIONS(917), - [anon_sym_extern] = ACTIONS(917), - [anon_sym_module] = ACTIONS(917), - [anon_sym_use] = ACTIONS(917), - [anon_sym_LPAREN] = ACTIONS(919), - [anon_sym_DOLLAR] = ACTIONS(919), - [anon_sym_error] = ACTIONS(917), - [anon_sym_list] = ACTIONS(917), - [anon_sym_GT] = ACTIONS(917), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_break] = ACTIONS(917), - [anon_sym_continue] = ACTIONS(917), - [anon_sym_for] = ACTIONS(917), - [anon_sym_in] = ACTIONS(917), - [anon_sym_loop] = ACTIONS(917), - [anon_sym_make] = ACTIONS(917), - [anon_sym_while] = ACTIONS(917), - [anon_sym_do] = ACTIONS(917), - [anon_sym_if] = ACTIONS(917), - [anon_sym_else] = ACTIONS(917), - [anon_sym_match] = ACTIONS(917), - [anon_sym_RBRACE] = ACTIONS(919), - [anon_sym_try] = ACTIONS(917), - [anon_sym_catch] = ACTIONS(917), - [anon_sym_return] = ACTIONS(917), - [anon_sym_source] = ACTIONS(917), - [anon_sym_source_DASHenv] = ACTIONS(917), - [anon_sym_register] = ACTIONS(917), - [anon_sym_hide] = ACTIONS(917), - [anon_sym_hide_DASHenv] = ACTIONS(917), - [anon_sym_overlay] = ACTIONS(917), - [anon_sym_new] = ACTIONS(917), - [anon_sym_as] = ACTIONS(917), - [anon_sym_STAR] = ACTIONS(917), - [anon_sym_STAR_STAR] = ACTIONS(919), - [anon_sym_PLUS_PLUS] = ACTIONS(919), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_mod] = ACTIONS(917), - [anon_sym_SLASH_SLASH] = ACTIONS(919), - [anon_sym_PLUS] = ACTIONS(917), - [anon_sym_bit_DASHshl] = ACTIONS(917), - [anon_sym_bit_DASHshr] = ACTIONS(917), - [anon_sym_EQ_EQ] = ACTIONS(919), - [anon_sym_BANG_EQ] = ACTIONS(919), - [anon_sym_LT2] = ACTIONS(917), - [anon_sym_LT_EQ] = ACTIONS(919), - [anon_sym_GT_EQ] = ACTIONS(919), - [anon_sym_not_DASHin] = ACTIONS(917), - [anon_sym_starts_DASHwith] = ACTIONS(917), - [anon_sym_ends_DASHwith] = ACTIONS(917), - [anon_sym_EQ_TILDE] = ACTIONS(919), - [anon_sym_BANG_TILDE] = ACTIONS(919), - [anon_sym_bit_DASHand] = ACTIONS(917), - [anon_sym_bit_DASHxor] = ACTIONS(917), - [anon_sym_bit_DASHor] = ACTIONS(917), - [anon_sym_and] = ACTIONS(917), - [anon_sym_xor] = ACTIONS(917), - [anon_sym_or] = ACTIONS(917), - [anon_sym_DOT_DOT2] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(919), - [anon_sym_DOT_DOT_LT2] = ACTIONS(919), - [aux_sym__immediate_decimal_token2] = ACTIONS(1628), - [aux_sym__val_number_decimal_token1] = ACTIONS(917), - [aux_sym__val_number_decimal_token2] = ACTIONS(919), - [anon_sym_DOT2] = ACTIONS(917), - [aux_sym__val_number_decimal_token3] = ACTIONS(919), - [aux_sym__val_number_token1] = ACTIONS(919), - [aux_sym__val_number_token2] = ACTIONS(919), - [aux_sym__val_number_token3] = ACTIONS(919), - [aux_sym__val_number_token4] = ACTIONS(917), - [aux_sym__val_number_token5] = ACTIONS(919), - [aux_sym__val_number_token6] = ACTIONS(917), - [sym_filesize_unit] = ACTIONS(917), - [sym_duration_unit] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(919), - [sym__str_single_quotes] = ACTIONS(919), - [sym__str_back_ticks] = ACTIONS(919), - [aux_sym__record_key_token2] = ACTIONS(917), + [aux_sym_list_body_repeat1] = STATE(851), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_RBRACK] = ACTIONS(1896), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1734), + [anon_sym_DOT_DOT_LT] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [aux_sym__val_number_decimal_token1] = ACTIONS(1740), + [aux_sym__val_number_decimal_token2] = ACTIONS(1742), + [anon_sym_DOT2] = ACTIONS(1744), + [aux_sym__val_number_decimal_token3] = ACTIONS(1746), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [aux_sym__val_number_token4] = ACTIONS(1750), + [aux_sym__val_number_token5] = ACTIONS(1750), + [aux_sym__val_number_token6] = ACTIONS(1750), + [anon_sym_0b] = ACTIONS(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1499), [anon_sym_POUND] = ACTIONS(3), }, [800] = { + [sym__expr_unary_minus] = STATE(9980), + [sym_expr_parenthesized] = STATE(8494), + [sym_val_range] = STATE(9990), + [sym__val_range] = STATE(10001), + [sym__val_range_with_end] = STATE(10049), + [sym__value] = STATE(9990), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(9118), + [sym_val_variable] = STATE(5224), + [sym__var] = STATE(4556), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(7035), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(9919), + [sym_list_body] = STATE(10349), + [sym_val_entry] = STATE(9992), + [sym__list_item_expression] = STATE(10082), + [sym__list_item_starts_with_sign] = STATE(10149), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_short_flag] = STATE(10149), + [sym_long_flag] = STATE(10149), + [sym_long_flag_equals_value] = STATE(3793), + [sym__unquoted_in_list] = STATE(9353), + [sym__unquoted_in_list_with_expr] = STATE(10149), + [sym__unquoted_anonymous_prefix] = STATE(9874), [sym_comment] = STATE(800), - [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), - [sym_cmd_identifier] = 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(952), - [anon_sym_DOLLAR] = ACTIONS(952), - [anon_sym_error] = ACTIONS(950), - [anon_sym_list] = ACTIONS(950), - [anon_sym_GT] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(950), - [anon_sym_break] = ACTIONS(950), - [anon_sym_continue] = ACTIONS(950), - [anon_sym_for] = ACTIONS(950), - [anon_sym_in] = 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_register] = ACTIONS(950), - [anon_sym_hide] = ACTIONS(950), - [anon_sym_hide_DASHenv] = ACTIONS(950), - [anon_sym_overlay] = ACTIONS(950), - [anon_sym_new] = ACTIONS(950), - [anon_sym_as] = ACTIONS(950), - [anon_sym_STAR] = ACTIONS(950), - [anon_sym_STAR_STAR] = ACTIONS(952), - [anon_sym_PLUS_PLUS] = ACTIONS(952), - [anon_sym_SLASH] = ACTIONS(950), - [anon_sym_mod] = ACTIONS(950), - [anon_sym_SLASH_SLASH] = ACTIONS(952), - [anon_sym_PLUS] = ACTIONS(950), - [anon_sym_bit_DASHshl] = ACTIONS(950), - [anon_sym_bit_DASHshr] = ACTIONS(950), - [anon_sym_EQ_EQ] = ACTIONS(952), - [anon_sym_BANG_EQ] = ACTIONS(952), - [anon_sym_LT2] = ACTIONS(950), - [anon_sym_LT_EQ] = ACTIONS(952), - [anon_sym_GT_EQ] = ACTIONS(952), - [anon_sym_not_DASHin] = ACTIONS(950), - [anon_sym_starts_DASHwith] = ACTIONS(950), - [anon_sym_ends_DASHwith] = ACTIONS(950), - [anon_sym_EQ_TILDE] = ACTIONS(952), - [anon_sym_BANG_TILDE] = ACTIONS(952), - [anon_sym_bit_DASHand] = ACTIONS(950), - [anon_sym_bit_DASHxor] = ACTIONS(950), - [anon_sym_bit_DASHor] = ACTIONS(950), - [anon_sym_and] = ACTIONS(950), - [anon_sym_xor] = ACTIONS(950), - [anon_sym_or] = ACTIONS(950), - [anon_sym_DOT_DOT2] = ACTIONS(950), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(952), - [anon_sym_DOT_DOT_LT2] = ACTIONS(952), - [aux_sym__val_number_decimal_token1] = ACTIONS(950), - [aux_sym__val_number_decimal_token2] = ACTIONS(952), - [anon_sym_DOT2] = ACTIONS(950), - [aux_sym__val_number_decimal_token3] = 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(952), - [aux_sym__val_number_token6] = ACTIONS(950), - [sym_filesize_unit] = ACTIONS(950), - [sym_duration_unit] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(952), - [sym__str_single_quotes] = ACTIONS(952), - [sym__str_back_ticks] = ACTIONS(952), - [aux_sym__record_key_token2] = ACTIONS(950), + [aux_sym_list_body_repeat1] = STATE(851), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_RBRACK] = ACTIONS(1898), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1734), + [anon_sym_DOT_DOT_LT] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [aux_sym__val_number_decimal_token1] = ACTIONS(1740), + [aux_sym__val_number_decimal_token2] = ACTIONS(1742), + [anon_sym_DOT2] = ACTIONS(1744), + [aux_sym__val_number_decimal_token3] = ACTIONS(1746), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [aux_sym__val_number_token4] = ACTIONS(1750), + [aux_sym__val_number_token5] = ACTIONS(1750), + [aux_sym__val_number_token6] = ACTIONS(1750), + [anon_sym_0b] = ACTIONS(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1499), [anon_sym_POUND] = ACTIONS(3), }, [801] = { + [sym__expr_unary_minus] = STATE(9980), + [sym_expr_parenthesized] = STATE(8494), + [sym_val_range] = STATE(9990), + [sym__val_range] = STATE(10001), + [sym__val_range_with_end] = STATE(10049), + [sym__value] = STATE(9990), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(9118), + [sym_val_variable] = STATE(5224), + [sym__var] = STATE(4556), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(7035), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(9950), + [sym_list_body] = STATE(10377), + [sym_val_entry] = STATE(9992), + [sym__list_item_expression] = STATE(10082), + [sym__list_item_starts_with_sign] = STATE(10149), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_short_flag] = STATE(10149), + [sym_long_flag] = STATE(10149), + [sym_long_flag_equals_value] = STATE(3793), + [sym__unquoted_in_list] = STATE(9353), + [sym__unquoted_in_list_with_expr] = STATE(10149), + [sym__unquoted_anonymous_prefix] = STATE(9874), [sym_comment] = STATE(801), - [anon_sym_export] = ACTIONS(917), - [anon_sym_alias] = ACTIONS(917), - [anon_sym_let] = ACTIONS(917), - [anon_sym_let_DASHenv] = ACTIONS(917), - [anon_sym_mut] = ACTIONS(917), - [anon_sym_const] = ACTIONS(917), - [sym_cmd_identifier] = ACTIONS(917), - [anon_sym_def] = ACTIONS(917), - [anon_sym_export_DASHenv] = ACTIONS(917), - [anon_sym_extern] = ACTIONS(917), - [anon_sym_module] = ACTIONS(917), - [anon_sym_use] = ACTIONS(917), - [anon_sym_LPAREN] = ACTIONS(919), - [anon_sym_DOLLAR] = ACTIONS(919), - [anon_sym_error] = ACTIONS(917), - [anon_sym_list] = ACTIONS(917), - [anon_sym_GT] = ACTIONS(917), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_break] = ACTIONS(917), - [anon_sym_continue] = ACTIONS(917), - [anon_sym_for] = ACTIONS(917), - [anon_sym_in] = ACTIONS(917), - [anon_sym_loop] = ACTIONS(917), - [anon_sym_make] = ACTIONS(917), - [anon_sym_while] = ACTIONS(917), - [anon_sym_do] = ACTIONS(917), - [anon_sym_if] = ACTIONS(917), - [anon_sym_else] = ACTIONS(917), - [anon_sym_match] = ACTIONS(917), - [anon_sym_RBRACE] = ACTIONS(919), - [anon_sym_try] = ACTIONS(917), - [anon_sym_catch] = ACTIONS(917), - [anon_sym_return] = ACTIONS(917), - [anon_sym_source] = ACTIONS(917), - [anon_sym_source_DASHenv] = ACTIONS(917), - [anon_sym_register] = ACTIONS(917), - [anon_sym_hide] = ACTIONS(917), - [anon_sym_hide_DASHenv] = ACTIONS(917), - [anon_sym_overlay] = ACTIONS(917), - [anon_sym_new] = ACTIONS(917), - [anon_sym_as] = ACTIONS(917), - [anon_sym_STAR] = ACTIONS(917), - [anon_sym_STAR_STAR] = ACTIONS(919), - [anon_sym_PLUS_PLUS] = ACTIONS(919), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_mod] = ACTIONS(917), - [anon_sym_SLASH_SLASH] = ACTIONS(919), - [anon_sym_PLUS] = ACTIONS(917), - [anon_sym_bit_DASHshl] = ACTIONS(917), - [anon_sym_bit_DASHshr] = ACTIONS(917), - [anon_sym_EQ_EQ] = ACTIONS(919), - [anon_sym_BANG_EQ] = ACTIONS(919), - [anon_sym_LT2] = ACTIONS(917), - [anon_sym_LT_EQ] = ACTIONS(919), - [anon_sym_GT_EQ] = ACTIONS(919), - [anon_sym_not_DASHin] = ACTIONS(917), - [anon_sym_starts_DASHwith] = ACTIONS(917), - [anon_sym_ends_DASHwith] = ACTIONS(917), - [anon_sym_EQ_TILDE] = ACTIONS(919), - [anon_sym_BANG_TILDE] = ACTIONS(919), - [anon_sym_bit_DASHand] = ACTIONS(917), - [anon_sym_bit_DASHxor] = ACTIONS(917), - [anon_sym_bit_DASHor] = ACTIONS(917), - [anon_sym_and] = ACTIONS(917), - [anon_sym_xor] = ACTIONS(917), - [anon_sym_or] = ACTIONS(917), - [anon_sym_DOT_DOT2] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(919), - [anon_sym_DOT_DOT_LT2] = ACTIONS(919), - [aux_sym__val_number_decimal_token1] = ACTIONS(917), - [aux_sym__val_number_decimal_token2] = ACTIONS(919), - [anon_sym_DOT2] = ACTIONS(917), - [aux_sym__val_number_decimal_token3] = ACTIONS(919), - [aux_sym__val_number_token1] = ACTIONS(919), - [aux_sym__val_number_token2] = ACTIONS(919), - [aux_sym__val_number_token3] = ACTIONS(919), - [aux_sym__val_number_token4] = ACTIONS(917), - [aux_sym__val_number_token5] = ACTIONS(919), - [aux_sym__val_number_token6] = ACTIONS(917), - [sym_filesize_unit] = ACTIONS(917), - [sym_duration_unit] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(919), - [sym__str_single_quotes] = ACTIONS(919), - [sym__str_back_ticks] = ACTIONS(919), - [aux_sym__record_key_token2] = ACTIONS(917), + [aux_sym_list_body_repeat1] = STATE(851), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_RBRACK] = ACTIONS(1900), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1734), + [anon_sym_DOT_DOT_LT] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [aux_sym__val_number_decimal_token1] = ACTIONS(1740), + [aux_sym__val_number_decimal_token2] = ACTIONS(1742), + [anon_sym_DOT2] = ACTIONS(1744), + [aux_sym__val_number_decimal_token3] = ACTIONS(1746), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [aux_sym__val_number_token4] = ACTIONS(1750), + [aux_sym__val_number_token5] = ACTIONS(1750), + [aux_sym__val_number_token6] = ACTIONS(1750), + [anon_sym_0b] = ACTIONS(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1499), [anon_sym_POUND] = ACTIONS(3), }, [802] = { + [sym__expr_unary_minus] = STATE(9980), + [sym_expr_parenthesized] = STATE(8494), + [sym_val_range] = STATE(9990), + [sym__val_range] = STATE(10001), + [sym__val_range_with_end] = STATE(10049), + [sym__value] = STATE(9990), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(9118), + [sym_val_variable] = STATE(5224), + [sym__var] = STATE(4556), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(7035), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(9952), + [sym_list_body] = STATE(10412), + [sym_val_entry] = STATE(9992), + [sym__list_item_expression] = STATE(10082), + [sym__list_item_starts_with_sign] = STATE(10149), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_short_flag] = STATE(10149), + [sym_long_flag] = STATE(10149), + [sym_long_flag_equals_value] = STATE(3793), + [sym__unquoted_in_list] = STATE(9353), + [sym__unquoted_in_list_with_expr] = STATE(10149), + [sym__unquoted_anonymous_prefix] = STATE(9874), [sym_comment] = STATE(802), - [anon_sym_export] = ACTIONS(959), - [anon_sym_alias] = ACTIONS(959), - [anon_sym_let] = ACTIONS(959), - [anon_sym_let_DASHenv] = ACTIONS(959), - [anon_sym_mut] = ACTIONS(959), - [anon_sym_const] = ACTIONS(959), - [sym_cmd_identifier] = ACTIONS(959), - [anon_sym_def] = ACTIONS(959), - [anon_sym_export_DASHenv] = ACTIONS(959), - [anon_sym_extern] = ACTIONS(959), - [anon_sym_module] = ACTIONS(959), - [anon_sym_use] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(961), - [anon_sym_DOLLAR] = ACTIONS(961), - [anon_sym_error] = ACTIONS(959), - [anon_sym_list] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_break] = ACTIONS(959), - [anon_sym_continue] = ACTIONS(959), - [anon_sym_for] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_loop] = ACTIONS(959), - [anon_sym_make] = ACTIONS(959), - [anon_sym_while] = ACTIONS(959), - [anon_sym_do] = ACTIONS(959), - [anon_sym_if] = ACTIONS(959), - [anon_sym_else] = ACTIONS(959), - [anon_sym_match] = ACTIONS(959), - [anon_sym_RBRACE] = ACTIONS(961), - [anon_sym_try] = ACTIONS(959), - [anon_sym_catch] = ACTIONS(959), - [anon_sym_return] = ACTIONS(959), - [anon_sym_source] = ACTIONS(959), - [anon_sym_source_DASHenv] = ACTIONS(959), - [anon_sym_register] = ACTIONS(959), - [anon_sym_hide] = ACTIONS(959), - [anon_sym_hide_DASHenv] = ACTIONS(959), - [anon_sym_overlay] = ACTIONS(959), - [anon_sym_new] = ACTIONS(959), - [anon_sym_as] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(959), - [anon_sym_SLASH_SLASH] = ACTIONS(961), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(959), - [anon_sym_bit_DASHshr] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(961), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_not_DASHin] = ACTIONS(959), - [anon_sym_starts_DASHwith] = ACTIONS(959), - [anon_sym_ends_DASHwith] = ACTIONS(959), - [anon_sym_EQ_TILDE] = ACTIONS(961), - [anon_sym_BANG_TILDE] = ACTIONS(961), - [anon_sym_bit_DASHand] = ACTIONS(959), - [anon_sym_bit_DASHxor] = ACTIONS(959), - [anon_sym_bit_DASHor] = ACTIONS(959), - [anon_sym_and] = ACTIONS(959), - [anon_sym_xor] = ACTIONS(959), - [anon_sym_or] = ACTIONS(959), - [anon_sym_DOT_DOT2] = ACTIONS(1630), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1632), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1632), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(961), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(961), - [aux_sym__val_number_token1] = ACTIONS(961), - [aux_sym__val_number_token2] = ACTIONS(961), - [aux_sym__val_number_token3] = ACTIONS(961), - [aux_sym__val_number_token4] = ACTIONS(959), - [aux_sym__val_number_token5] = ACTIONS(961), - [aux_sym__val_number_token6] = ACTIONS(959), - [sym_filesize_unit] = ACTIONS(1634), - [sym_duration_unit] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(961), - [sym__str_single_quotes] = ACTIONS(961), - [sym__str_back_ticks] = ACTIONS(961), - [aux_sym__record_key_token2] = ACTIONS(959), + [aux_sym_list_body_repeat1] = STATE(851), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_RBRACK] = ACTIONS(1902), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1734), + [anon_sym_DOT_DOT_LT] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [aux_sym__val_number_decimal_token1] = ACTIONS(1740), + [aux_sym__val_number_decimal_token2] = ACTIONS(1742), + [anon_sym_DOT2] = ACTIONS(1744), + [aux_sym__val_number_decimal_token3] = ACTIONS(1746), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [aux_sym__val_number_token4] = ACTIONS(1750), + [aux_sym__val_number_token5] = ACTIONS(1750), + [aux_sym__val_number_token6] = ACTIONS(1750), + [anon_sym_0b] = ACTIONS(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1499), [anon_sym_POUND] = ACTIONS(3), }, [803] = { + [sym__expr_unary_minus] = STATE(9980), + [sym_expr_parenthesized] = STATE(8494), + [sym_val_range] = STATE(9990), + [sym__val_range] = STATE(10001), + [sym__val_range_with_end] = STATE(10049), + [sym__value] = STATE(9990), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(9118), + [sym_val_variable] = STATE(5224), + [sym__var] = STATE(4556), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(7035), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(9955), + [sym_list_body] = STATE(10443), + [sym_val_entry] = STATE(9992), + [sym__list_item_expression] = STATE(10082), + [sym__list_item_starts_with_sign] = STATE(10149), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_short_flag] = STATE(10149), + [sym_long_flag] = STATE(10149), + [sym_long_flag_equals_value] = STATE(3793), + [sym__unquoted_in_list] = STATE(9353), + [sym__unquoted_in_list_with_expr] = STATE(10149), + [sym__unquoted_anonymous_prefix] = STATE(9874), [sym_comment] = STATE(803), - [anon_sym_export] = ACTIONS(1059), - [anon_sym_alias] = ACTIONS(1059), - [anon_sym_let] = ACTIONS(1059), - [anon_sym_let_DASHenv] = ACTIONS(1059), - [anon_sym_mut] = ACTIONS(1059), - [anon_sym_const] = ACTIONS(1059), - [sym_cmd_identifier] = ACTIONS(1059), - [anon_sym_def] = ACTIONS(1059), - [anon_sym_export_DASHenv] = ACTIONS(1059), - [anon_sym_extern] = ACTIONS(1059), - [anon_sym_module] = ACTIONS(1059), - [anon_sym_use] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [anon_sym_DOLLAR] = ACTIONS(1061), - [anon_sym_error] = ACTIONS(1059), - [anon_sym_list] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_break] = ACTIONS(1059), - [anon_sym_continue] = ACTIONS(1059), - [anon_sym_for] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1059), - [anon_sym_loop] = ACTIONS(1059), - [anon_sym_make] = ACTIONS(1059), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_do] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1059), - [anon_sym_else] = ACTIONS(1059), - [anon_sym_match] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(1061), - [anon_sym_try] = ACTIONS(1059), - [anon_sym_catch] = ACTIONS(1059), - [anon_sym_return] = ACTIONS(1059), - [anon_sym_source] = ACTIONS(1059), - [anon_sym_source_DASHenv] = ACTIONS(1059), - [anon_sym_register] = ACTIONS(1059), - [anon_sym_hide] = ACTIONS(1059), - [anon_sym_hide_DASHenv] = ACTIONS(1059), - [anon_sym_overlay] = ACTIONS(1059), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_as] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_QMARK2] = ACTIONS(1061), - [anon_sym_STAR_STAR] = ACTIONS(1061), - [anon_sym_PLUS_PLUS] = ACTIONS(1061), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_mod] = ACTIONS(1059), - [anon_sym_SLASH_SLASH] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_bit_DASHshl] = ACTIONS(1059), - [anon_sym_bit_DASHshr] = ACTIONS(1059), - [anon_sym_EQ_EQ] = ACTIONS(1061), - [anon_sym_BANG_EQ] = ACTIONS(1061), - [anon_sym_LT2] = ACTIONS(1059), - [anon_sym_LT_EQ] = ACTIONS(1061), - [anon_sym_GT_EQ] = ACTIONS(1061), - [anon_sym_not_DASHin] = ACTIONS(1059), - [anon_sym_starts_DASHwith] = ACTIONS(1059), - [anon_sym_ends_DASHwith] = ACTIONS(1059), - [anon_sym_EQ_TILDE] = ACTIONS(1061), - [anon_sym_BANG_TILDE] = ACTIONS(1061), - [anon_sym_bit_DASHand] = ACTIONS(1059), - [anon_sym_bit_DASHxor] = ACTIONS(1059), - [anon_sym_bit_DASHor] = ACTIONS(1059), - [anon_sym_and] = ACTIONS(1059), - [anon_sym_xor] = ACTIONS(1059), - [anon_sym_or] = ACTIONS(1059), - [anon_sym_DOT_DOT2] = ACTIONS(1059), - [anon_sym_DOT] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1061), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1061), - [aux_sym__val_number_decimal_token1] = ACTIONS(1059), - [aux_sym__val_number_decimal_token2] = ACTIONS(1061), - [anon_sym_DOT2] = ACTIONS(1059), - [aux_sym__val_number_decimal_token3] = ACTIONS(1061), - [aux_sym__val_number_token1] = ACTIONS(1061), - [aux_sym__val_number_token2] = ACTIONS(1061), - [aux_sym__val_number_token3] = ACTIONS(1061), - [aux_sym__val_number_token4] = ACTIONS(1059), - [aux_sym__val_number_token5] = ACTIONS(1061), - [aux_sym__val_number_token6] = ACTIONS(1059), - [anon_sym_DQUOTE] = ACTIONS(1061), - [sym__str_single_quotes] = ACTIONS(1061), - [sym__str_back_ticks] = ACTIONS(1061), - [aux_sym__record_key_token2] = ACTIONS(1059), + [aux_sym_list_body_repeat1] = STATE(851), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_RBRACK] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1734), + [anon_sym_DOT_DOT_LT] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [aux_sym__val_number_decimal_token1] = ACTIONS(1740), + [aux_sym__val_number_decimal_token2] = ACTIONS(1742), + [anon_sym_DOT2] = ACTIONS(1744), + [aux_sym__val_number_decimal_token3] = ACTIONS(1746), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [aux_sym__val_number_token4] = ACTIONS(1750), + [aux_sym__val_number_token5] = ACTIONS(1750), + [aux_sym__val_number_token6] = ACTIONS(1750), + [anon_sym_0b] = ACTIONS(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1499), [anon_sym_POUND] = ACTIONS(3), }, [804] = { + [sym__ctrl_expression_parenthesized] = STATE(9802), + [sym_ctrl_do] = STATE(9239), + [sym_ctrl_if_parenthesized] = STATE(9239), + [sym_ctrl_match] = STATE(9239), + [sym_ctrl_try_parenthesized] = STATE(9239), + [sym_ctrl_return] = STATE(9239), + [sym_pipe_element_parenthesized] = STATE(3939), + [sym_where_command] = STATE(9803), + [sym__expression] = STATE(9803), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(4804), + [sym__var] = STATE(4386), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__command_parenthesized_body] = STATE(9812), [sym_comment] = STATE(804), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_alias] = ACTIONS(1109), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_let_DASHenv] = ACTIONS(1109), - [anon_sym_mut] = ACTIONS(1109), - [anon_sym_const] = ACTIONS(1109), - [sym_cmd_identifier] = ACTIONS(1109), - [anon_sym_def] = ACTIONS(1109), - [anon_sym_export_DASHenv] = ACTIONS(1109), - [anon_sym_extern] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_use] = ACTIONS(1109), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_DOLLAR] = ACTIONS(1109), - [anon_sym_error] = ACTIONS(1109), - [anon_sym_list] = ACTIONS(1109), - [anon_sym_GT] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_break] = ACTIONS(1109), - [anon_sym_continue] = ACTIONS(1109), - [anon_sym_for] = ACTIONS(1109), - [anon_sym_in] = ACTIONS(1109), - [anon_sym_loop] = ACTIONS(1109), - [anon_sym_make] = ACTIONS(1109), - [anon_sym_while] = ACTIONS(1109), - [anon_sym_do] = ACTIONS(1109), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_else] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_RBRACE] = ACTIONS(1109), - [anon_sym_try] = ACTIONS(1109), - [anon_sym_catch] = ACTIONS(1109), - [anon_sym_return] = ACTIONS(1109), - [anon_sym_source] = ACTIONS(1109), - [anon_sym_source_DASHenv] = ACTIONS(1109), - [anon_sym_register] = ACTIONS(1109), - [anon_sym_hide] = ACTIONS(1109), - [anon_sym_hide_DASHenv] = ACTIONS(1109), - [anon_sym_overlay] = ACTIONS(1109), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_as] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_STAR_STAR] = ACTIONS(1109), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_SLASH] = ACTIONS(1109), - [anon_sym_mod] = ACTIONS(1109), - [anon_sym_SLASH_SLASH] = ACTIONS(1109), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_bit_DASHshl] = ACTIONS(1109), - [anon_sym_bit_DASHshr] = ACTIONS(1109), - [anon_sym_EQ_EQ] = ACTIONS(1109), - [anon_sym_BANG_EQ] = ACTIONS(1109), - [anon_sym_LT2] = ACTIONS(1109), - [anon_sym_LT_EQ] = ACTIONS(1109), - [anon_sym_GT_EQ] = ACTIONS(1109), - [anon_sym_not_DASHin] = ACTIONS(1109), - [anon_sym_starts_DASHwith] = ACTIONS(1109), - [anon_sym_ends_DASHwith] = ACTIONS(1109), - [anon_sym_EQ_TILDE] = ACTIONS(1109), - [anon_sym_BANG_TILDE] = ACTIONS(1109), - [anon_sym_bit_DASHand] = ACTIONS(1109), - [anon_sym_bit_DASHxor] = ACTIONS(1109), - [anon_sym_bit_DASHor] = ACTIONS(1109), - [anon_sym_and] = ACTIONS(1109), - [anon_sym_xor] = ACTIONS(1109), - [anon_sym_or] = ACTIONS(1109), - [anon_sym_DOT_DOT2] = ACTIONS(1109), - [anon_sym_DOT] = ACTIONS(1109), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1111), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1111), - [aux_sym__val_number_decimal_token1] = ACTIONS(1109), - [aux_sym__val_number_decimal_token2] = ACTIONS(1109), - [anon_sym_DOT2] = ACTIONS(1109), - [aux_sym__val_number_decimal_token3] = ACTIONS(1109), - [aux_sym__val_number_token1] = ACTIONS(1109), - [aux_sym__val_number_token2] = ACTIONS(1109), - [aux_sym__val_number_token3] = ACTIONS(1109), - [aux_sym__val_number_token4] = ACTIONS(1109), - [aux_sym__val_number_token5] = ACTIONS(1109), - [aux_sym__val_number_token6] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(1109), - [sym__str_single_quotes] = ACTIONS(1109), - [sym__str_back_ticks] = ACTIONS(1109), - [sym__entry_separator] = ACTIONS(1111), - [aux_sym__record_key_token2] = ACTIONS(1109), - [anon_sym_POUND] = ACTIONS(113), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(804), + [sym_cmd_identifier] = ACTIONS(1906), + [anon_sym_LBRACK] = ACTIONS(1909), + [anon_sym_LPAREN] = ACTIONS(1912), + [anon_sym_DOLLAR] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_break] = ACTIONS(1921), + [anon_sym_continue] = ACTIONS(1924), + [anon_sym_do] = ACTIONS(1927), + [anon_sym_if] = ACTIONS(1930), + [anon_sym_match] = ACTIONS(1933), + [anon_sym_LBRACE] = ACTIONS(1936), + [anon_sym_DOT_DOT] = ACTIONS(1939), + [anon_sym_try] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1945), + [anon_sym_where] = ACTIONS(1948), + [anon_sym_not] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1954), + [anon_sym_DOT_DOT_LT] = ACTIONS(1954), + [anon_sym_null] = ACTIONS(1957), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [aux_sym__val_number_decimal_token1] = ACTIONS(1963), + [aux_sym__val_number_decimal_token2] = ACTIONS(1966), + [anon_sym_DOT2] = ACTIONS(1969), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [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(1978), + [aux_sym__val_number_token5] = ACTIONS(1975), + [aux_sym__val_number_token6] = ACTIONS(1978), + [anon_sym_0b] = ACTIONS(1981), + [anon_sym_0o] = ACTIONS(1984), + [anon_sym_0x] = ACTIONS(1984), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(1990), + [sym__str_single_quotes] = ACTIONS(1993), + [sym__str_back_ticks] = ACTIONS(1993), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1996), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1999), + [anon_sym_CARET] = ACTIONS(2002), + [anon_sym_POUND] = ACTIONS(3), }, [805] = { + [sym__expr_unary_minus] = STATE(9980), + [sym_expr_parenthesized] = STATE(8494), + [sym_val_range] = STATE(9990), + [sym__val_range] = STATE(10001), + [sym__val_range_with_end] = STATE(10049), + [sym__value] = STATE(9990), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(9118), + [sym_val_variable] = STATE(5224), + [sym__var] = STATE(4556), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(7035), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(9927), + [sym_list_body] = STATE(10476), + [sym_val_entry] = STATE(9992), + [sym__list_item_expression] = STATE(10082), + [sym__list_item_starts_with_sign] = STATE(10149), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_short_flag] = STATE(10149), + [sym_long_flag] = STATE(10149), + [sym_long_flag_equals_value] = STATE(3793), + [sym__unquoted_in_list] = STATE(9353), + [sym__unquoted_in_list_with_expr] = STATE(10149), + [sym__unquoted_anonymous_prefix] = STATE(9874), [sym_comment] = STATE(805), - [anon_sym_export] = ACTIONS(909), - [anon_sym_alias] = ACTIONS(909), - [anon_sym_let] = ACTIONS(909), - [anon_sym_let_DASHenv] = ACTIONS(909), - [anon_sym_mut] = ACTIONS(909), - [anon_sym_const] = ACTIONS(909), - [sym_cmd_identifier] = ACTIONS(909), - [anon_sym_def] = ACTIONS(909), - [anon_sym_export_DASHenv] = ACTIONS(909), - [anon_sym_extern] = ACTIONS(909), - [anon_sym_module] = ACTIONS(909), - [anon_sym_use] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(911), - [anon_sym_DOLLAR] = ACTIONS(911), - [anon_sym_error] = ACTIONS(909), - [anon_sym_list] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_break] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_for] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_loop] = ACTIONS(909), - [anon_sym_make] = ACTIONS(909), - [anon_sym_while] = ACTIONS(909), - [anon_sym_do] = ACTIONS(909), - [anon_sym_if] = ACTIONS(909), - [anon_sym_else] = ACTIONS(909), - [anon_sym_match] = ACTIONS(909), - [anon_sym_RBRACE] = ACTIONS(911), - [anon_sym_try] = ACTIONS(909), - [anon_sym_catch] = ACTIONS(909), - [anon_sym_return] = ACTIONS(909), - [anon_sym_source] = ACTIONS(909), - [anon_sym_source_DASHenv] = ACTIONS(909), - [anon_sym_register] = ACTIONS(909), - [anon_sym_hide] = ACTIONS(909), - [anon_sym_hide_DASHenv] = ACTIONS(909), - [anon_sym_overlay] = ACTIONS(909), - [anon_sym_new] = ACTIONS(909), - [anon_sym_as] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(911), - [anon_sym_PLUS_PLUS] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(909), - [anon_sym_SLASH_SLASH] = ACTIONS(911), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(909), - [anon_sym_bit_DASHshr] = ACTIONS(909), - [anon_sym_EQ_EQ] = ACTIONS(911), - [anon_sym_BANG_EQ] = ACTIONS(911), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(911), - [anon_sym_GT_EQ] = ACTIONS(911), - [anon_sym_not_DASHin] = ACTIONS(909), - [anon_sym_starts_DASHwith] = ACTIONS(909), - [anon_sym_ends_DASHwith] = ACTIONS(909), - [anon_sym_EQ_TILDE] = ACTIONS(911), - [anon_sym_BANG_TILDE] = ACTIONS(911), - [anon_sym_bit_DASHand] = ACTIONS(909), - [anon_sym_bit_DASHxor] = ACTIONS(909), - [anon_sym_bit_DASHor] = ACTIONS(909), - [anon_sym_and] = ACTIONS(909), - [anon_sym_xor] = ACTIONS(909), - [anon_sym_or] = ACTIONS(909), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(911), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(911), - [aux_sym__val_number_token1] = ACTIONS(911), - [aux_sym__val_number_token2] = ACTIONS(911), - [aux_sym__val_number_token3] = ACTIONS(911), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(911), - [aux_sym__val_number_token6] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(911), - [sym__str_single_quotes] = ACTIONS(911), - [sym__str_back_ticks] = ACTIONS(911), - [aux_sym__record_key_token2] = ACTIONS(909), + [aux_sym_list_body_repeat1] = STATE(851), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_RBRACK] = ACTIONS(2005), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1734), + [anon_sym_DOT_DOT_LT] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [aux_sym__val_number_decimal_token1] = ACTIONS(1740), + [aux_sym__val_number_decimal_token2] = ACTIONS(1742), + [anon_sym_DOT2] = ACTIONS(1744), + [aux_sym__val_number_decimal_token3] = ACTIONS(1746), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [aux_sym__val_number_token4] = ACTIONS(1750), + [aux_sym__val_number_token5] = ACTIONS(1750), + [aux_sym__val_number_token6] = ACTIONS(1750), + [anon_sym_0b] = ACTIONS(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1499), [anon_sym_POUND] = ACTIONS(3), }, [806] = { + [sym__expr_unary_minus] = STATE(9980), + [sym_expr_parenthesized] = STATE(8494), + [sym_val_range] = STATE(9990), + [sym__val_range] = STATE(10001), + [sym__val_range_with_end] = STATE(10049), + [sym__value] = STATE(9990), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(9118), + [sym_val_variable] = STATE(5224), + [sym__var] = STATE(4556), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(7035), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(9957), + [sym_list_body] = STATE(10517), + [sym_val_entry] = STATE(9992), + [sym__list_item_expression] = STATE(10082), + [sym__list_item_starts_with_sign] = STATE(10149), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_short_flag] = STATE(10149), + [sym_long_flag] = STATE(10149), + [sym_long_flag_equals_value] = STATE(3793), + [sym__unquoted_in_list] = STATE(9353), + [sym__unquoted_in_list_with_expr] = STATE(10149), + [sym__unquoted_anonymous_prefix] = STATE(9874), [sym_comment] = STATE(806), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_alias] = ACTIONS(1070), - [anon_sym_let] = ACTIONS(1070), - [anon_sym_let_DASHenv] = ACTIONS(1070), - [anon_sym_mut] = ACTIONS(1070), - [anon_sym_const] = ACTIONS(1070), - [sym_cmd_identifier] = ACTIONS(1070), - [anon_sym_def] = ACTIONS(1070), - [anon_sym_export_DASHenv] = ACTIONS(1070), - [anon_sym_extern] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_use] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_DOLLAR] = ACTIONS(1072), - [anon_sym_error] = ACTIONS(1070), - [anon_sym_list] = ACTIONS(1070), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_in] = ACTIONS(1070), - [anon_sym_loop] = ACTIONS(1070), - [anon_sym_make] = ACTIONS(1070), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_do] = ACTIONS(1070), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_else] = ACTIONS(1070), - [anon_sym_match] = ACTIONS(1070), - [anon_sym_RBRACE] = ACTIONS(1072), - [anon_sym_try] = ACTIONS(1070), - [anon_sym_catch] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_source] = ACTIONS(1070), - [anon_sym_source_DASHenv] = ACTIONS(1070), - [anon_sym_register] = ACTIONS(1070), - [anon_sym_hide] = ACTIONS(1070), - [anon_sym_hide_DASHenv] = ACTIONS(1070), - [anon_sym_overlay] = ACTIONS(1070), - [anon_sym_new] = ACTIONS(1070), - [anon_sym_as] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(1638), - [anon_sym_STAR_STAR] = ACTIONS(1072), - [anon_sym_PLUS_PLUS] = ACTIONS(1072), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_mod] = ACTIONS(1070), - [anon_sym_SLASH_SLASH] = ACTIONS(1072), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_bit_DASHshl] = ACTIONS(1070), - [anon_sym_bit_DASHshr] = ACTIONS(1070), - [anon_sym_EQ_EQ] = ACTIONS(1072), - [anon_sym_BANG_EQ] = ACTIONS(1072), - [anon_sym_LT2] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1072), - [anon_sym_GT_EQ] = ACTIONS(1072), - [anon_sym_not_DASHin] = ACTIONS(1070), - [anon_sym_starts_DASHwith] = ACTIONS(1070), - [anon_sym_ends_DASHwith] = ACTIONS(1070), - [anon_sym_EQ_TILDE] = ACTIONS(1072), - [anon_sym_BANG_TILDE] = ACTIONS(1072), - [anon_sym_bit_DASHand] = ACTIONS(1070), - [anon_sym_bit_DASHxor] = ACTIONS(1070), - [anon_sym_bit_DASHor] = ACTIONS(1070), - [anon_sym_and] = ACTIONS(1070), - [anon_sym_xor] = ACTIONS(1070), - [anon_sym_or] = ACTIONS(1070), - [anon_sym_DOT_DOT2] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1072), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1072), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1072), - [aux_sym__val_number_token1] = ACTIONS(1072), - [aux_sym__val_number_token2] = ACTIONS(1072), - [aux_sym__val_number_token3] = ACTIONS(1072), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1072), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [sym__str_single_quotes] = ACTIONS(1072), - [sym__str_back_ticks] = ACTIONS(1072), - [aux_sym__record_key_token2] = ACTIONS(1070), + [aux_sym_list_body_repeat1] = STATE(851), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_RBRACK] = ACTIONS(2007), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1734), + [anon_sym_DOT_DOT_LT] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [aux_sym__val_number_decimal_token1] = ACTIONS(1740), + [aux_sym__val_number_decimal_token2] = ACTIONS(1742), + [anon_sym_DOT2] = ACTIONS(1744), + [aux_sym__val_number_decimal_token3] = ACTIONS(1746), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [aux_sym__val_number_token4] = ACTIONS(1750), + [aux_sym__val_number_token5] = ACTIONS(1750), + [aux_sym__val_number_token6] = ACTIONS(1750), + [anon_sym_0b] = ACTIONS(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1499), [anon_sym_POUND] = ACTIONS(3), }, [807] = { + [sym__expr_unary_minus] = STATE(9980), + [sym_expr_parenthesized] = STATE(8494), + [sym_val_range] = STATE(9990), + [sym__val_range] = STATE(10001), + [sym__val_range_with_end] = STATE(10049), + [sym__value] = STATE(9990), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(9118), + [sym_val_variable] = STATE(5224), + [sym__var] = STATE(4556), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(7035), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(9958), + [sym_list_body] = STATE(10550), + [sym_val_entry] = STATE(9992), + [sym__list_item_expression] = STATE(10082), + [sym__list_item_starts_with_sign] = STATE(10149), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_short_flag] = STATE(10149), + [sym_long_flag] = STATE(10149), + [sym_long_flag_equals_value] = STATE(3793), + [sym__unquoted_in_list] = STATE(9353), + [sym__unquoted_in_list_with_expr] = STATE(10149), + [sym__unquoted_anonymous_prefix] = STATE(9874), [sym_comment] = STATE(807), - [anon_sym_export] = ACTIONS(1063), - [anon_sym_alias] = ACTIONS(1063), - [anon_sym_let] = ACTIONS(1063), - [anon_sym_let_DASHenv] = ACTIONS(1063), - [anon_sym_mut] = ACTIONS(1063), - [anon_sym_const] = ACTIONS(1063), - [sym_cmd_identifier] = ACTIONS(1063), - [anon_sym_def] = ACTIONS(1063), - [anon_sym_export_DASHenv] = ACTIONS(1063), - [anon_sym_extern] = ACTIONS(1063), - [anon_sym_module] = ACTIONS(1063), - [anon_sym_use] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1065), - [anon_sym_DOLLAR] = ACTIONS(1065), - [anon_sym_error] = ACTIONS(1063), - [anon_sym_list] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_break] = ACTIONS(1063), - [anon_sym_continue] = ACTIONS(1063), - [anon_sym_for] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1063), - [anon_sym_loop] = ACTIONS(1063), - [anon_sym_make] = ACTIONS(1063), - [anon_sym_while] = ACTIONS(1063), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_if] = ACTIONS(1063), - [anon_sym_else] = ACTIONS(1063), - [anon_sym_match] = ACTIONS(1063), - [anon_sym_RBRACE] = ACTIONS(1065), - [anon_sym_try] = ACTIONS(1063), - [anon_sym_catch] = ACTIONS(1063), - [anon_sym_return] = ACTIONS(1063), - [anon_sym_source] = ACTIONS(1063), - [anon_sym_source_DASHenv] = ACTIONS(1063), - [anon_sym_register] = ACTIONS(1063), - [anon_sym_hide] = ACTIONS(1063), - [anon_sym_hide_DASHenv] = ACTIONS(1063), - [anon_sym_overlay] = ACTIONS(1063), - [anon_sym_new] = ACTIONS(1063), - [anon_sym_as] = ACTIONS(1063), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_QMARK2] = ACTIONS(1065), - [anon_sym_STAR_STAR] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_SLASH] = ACTIONS(1063), - [anon_sym_mod] = ACTIONS(1063), - [anon_sym_SLASH_SLASH] = ACTIONS(1065), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_bit_DASHshl] = ACTIONS(1063), - [anon_sym_bit_DASHshr] = ACTIONS(1063), - [anon_sym_EQ_EQ] = ACTIONS(1065), - [anon_sym_BANG_EQ] = ACTIONS(1065), - [anon_sym_LT2] = ACTIONS(1063), - [anon_sym_LT_EQ] = ACTIONS(1065), - [anon_sym_GT_EQ] = ACTIONS(1065), - [anon_sym_not_DASHin] = ACTIONS(1063), - [anon_sym_starts_DASHwith] = ACTIONS(1063), - [anon_sym_ends_DASHwith] = ACTIONS(1063), - [anon_sym_EQ_TILDE] = ACTIONS(1065), - [anon_sym_BANG_TILDE] = ACTIONS(1065), - [anon_sym_bit_DASHand] = ACTIONS(1063), - [anon_sym_bit_DASHxor] = ACTIONS(1063), - [anon_sym_bit_DASHor] = ACTIONS(1063), - [anon_sym_and] = ACTIONS(1063), - [anon_sym_xor] = ACTIONS(1063), - [anon_sym_or] = ACTIONS(1063), - [anon_sym_DOT_DOT2] = ACTIONS(1063), - [anon_sym_DOT] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1065), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1065), - [aux_sym__val_number_decimal_token1] = ACTIONS(1063), - [aux_sym__val_number_decimal_token2] = ACTIONS(1065), - [anon_sym_DOT2] = ACTIONS(1063), - [aux_sym__val_number_decimal_token3] = ACTIONS(1065), - [aux_sym__val_number_token1] = ACTIONS(1065), - [aux_sym__val_number_token2] = ACTIONS(1065), - [aux_sym__val_number_token3] = ACTIONS(1065), - [aux_sym__val_number_token4] = ACTIONS(1063), - [aux_sym__val_number_token5] = ACTIONS(1065), - [aux_sym__val_number_token6] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1065), - [sym__str_single_quotes] = ACTIONS(1065), - [sym__str_back_ticks] = ACTIONS(1065), - [aux_sym__record_key_token2] = ACTIONS(1063), + [aux_sym_list_body_repeat1] = STATE(851), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_RBRACK] = ACTIONS(2009), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1734), + [anon_sym_DOT_DOT_LT] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [aux_sym__val_number_decimal_token1] = ACTIONS(1740), + [aux_sym__val_number_decimal_token2] = ACTIONS(1742), + [anon_sym_DOT2] = ACTIONS(1744), + [aux_sym__val_number_decimal_token3] = ACTIONS(1746), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [aux_sym__val_number_token4] = ACTIONS(1750), + [aux_sym__val_number_token5] = ACTIONS(1750), + [aux_sym__val_number_token6] = ACTIONS(1750), + [anon_sym_0b] = ACTIONS(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1499), [anon_sym_POUND] = ACTIONS(3), }, [808] = { + [sym__expr_unary_minus] = STATE(9980), + [sym_expr_parenthesized] = STATE(8494), + [sym_val_range] = STATE(9990), + [sym__val_range] = STATE(10001), + [sym__val_range_with_end] = STATE(10049), + [sym__value] = STATE(9990), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(9118), + [sym_val_variable] = STATE(5224), + [sym__var] = STATE(4556), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(7035), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(9959), + [sym_list_body] = STATE(10576), + [sym_val_entry] = STATE(9992), + [sym__list_item_expression] = STATE(10082), + [sym__list_item_starts_with_sign] = STATE(10149), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_short_flag] = STATE(10149), + [sym_long_flag] = STATE(10149), + [sym_long_flag_equals_value] = STATE(3793), + [sym__unquoted_in_list] = STATE(9353), + [sym__unquoted_in_list_with_expr] = STATE(10149), + [sym__unquoted_anonymous_prefix] = STATE(9874), [sym_comment] = STATE(808), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_alias] = ACTIONS(1070), - [anon_sym_let] = ACTIONS(1070), - [anon_sym_let_DASHenv] = ACTIONS(1070), - [anon_sym_mut] = ACTIONS(1070), - [anon_sym_const] = ACTIONS(1070), - [sym_cmd_identifier] = ACTIONS(1070), - [anon_sym_def] = ACTIONS(1070), - [anon_sym_export_DASHenv] = ACTIONS(1070), - [anon_sym_extern] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_use] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_DOLLAR] = ACTIONS(1072), - [anon_sym_error] = ACTIONS(1070), - [anon_sym_list] = ACTIONS(1070), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_in] = ACTIONS(1070), - [anon_sym_loop] = ACTIONS(1070), - [anon_sym_make] = ACTIONS(1070), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_do] = ACTIONS(1070), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_else] = ACTIONS(1070), - [anon_sym_match] = ACTIONS(1070), - [anon_sym_RBRACE] = ACTIONS(1072), - [anon_sym_try] = ACTIONS(1070), - [anon_sym_catch] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_source] = ACTIONS(1070), - [anon_sym_source_DASHenv] = ACTIONS(1070), - [anon_sym_register] = ACTIONS(1070), - [anon_sym_hide] = ACTIONS(1070), - [anon_sym_hide_DASHenv] = ACTIONS(1070), - [anon_sym_overlay] = ACTIONS(1070), - [anon_sym_new] = ACTIONS(1070), - [anon_sym_as] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(1638), - [anon_sym_STAR_STAR] = ACTIONS(1072), - [anon_sym_PLUS_PLUS] = ACTIONS(1072), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_mod] = ACTIONS(1070), - [anon_sym_SLASH_SLASH] = ACTIONS(1072), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_bit_DASHshl] = ACTIONS(1070), - [anon_sym_bit_DASHshr] = ACTIONS(1070), - [anon_sym_EQ_EQ] = ACTIONS(1072), - [anon_sym_BANG_EQ] = ACTIONS(1072), - [anon_sym_LT2] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1072), - [anon_sym_GT_EQ] = ACTIONS(1072), - [anon_sym_not_DASHin] = ACTIONS(1070), - [anon_sym_starts_DASHwith] = ACTIONS(1070), - [anon_sym_ends_DASHwith] = ACTIONS(1070), - [anon_sym_EQ_TILDE] = ACTIONS(1072), - [anon_sym_BANG_TILDE] = ACTIONS(1072), - [anon_sym_bit_DASHand] = ACTIONS(1070), - [anon_sym_bit_DASHxor] = ACTIONS(1070), - [anon_sym_bit_DASHor] = ACTIONS(1070), - [anon_sym_and] = ACTIONS(1070), - [anon_sym_xor] = ACTIONS(1070), - [anon_sym_or] = ACTIONS(1070), - [anon_sym_DOT_DOT2] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1072), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1072), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1072), - [aux_sym__val_number_token1] = ACTIONS(1072), - [aux_sym__val_number_token2] = ACTIONS(1072), - [aux_sym__val_number_token3] = ACTIONS(1072), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1072), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [sym__str_single_quotes] = ACTIONS(1072), - [sym__str_back_ticks] = ACTIONS(1072), - [aux_sym__record_key_token2] = ACTIONS(1070), + [aux_sym_list_body_repeat1] = STATE(851), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_RBRACK] = ACTIONS(2011), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1734), + [anon_sym_DOT_DOT_LT] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [aux_sym__val_number_decimal_token1] = ACTIONS(1740), + [aux_sym__val_number_decimal_token2] = ACTIONS(1742), + [anon_sym_DOT2] = ACTIONS(1744), + [aux_sym__val_number_decimal_token3] = ACTIONS(1746), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [aux_sym__val_number_token4] = ACTIONS(1750), + [aux_sym__val_number_token5] = ACTIONS(1750), + [aux_sym__val_number_token6] = ACTIONS(1750), + [anon_sym_0b] = ACTIONS(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1499), [anon_sym_POUND] = ACTIONS(3), }, [809] = { + [sym__expr_unary_minus] = STATE(9980), + [sym_expr_parenthesized] = STATE(8494), + [sym_val_range] = STATE(9990), + [sym__val_range] = STATE(10001), + [sym__val_range_with_end] = STATE(10049), + [sym__value] = STATE(9990), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(9118), + [sym_val_variable] = STATE(5224), + [sym__var] = STATE(4556), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(7035), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(9961), + [sym_list_body] = STATE(10616), + [sym_val_entry] = STATE(9992), + [sym__list_item_expression] = STATE(10082), + [sym__list_item_starts_with_sign] = STATE(10149), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_short_flag] = STATE(10149), + [sym_long_flag] = STATE(10149), + [sym_long_flag_equals_value] = STATE(3793), + [sym__unquoted_in_list] = STATE(9353), + [sym__unquoted_in_list_with_expr] = STATE(10149), + [sym__unquoted_anonymous_prefix] = STATE(9874), [sym_comment] = STATE(809), - [anon_sym_export] = ACTIONS(1113), - [anon_sym_alias] = ACTIONS(1113), - [anon_sym_let] = ACTIONS(1113), - [anon_sym_let_DASHenv] = ACTIONS(1113), - [anon_sym_mut] = ACTIONS(1113), - [anon_sym_const] = ACTIONS(1113), - [sym_cmd_identifier] = ACTIONS(1113), - [anon_sym_def] = ACTIONS(1113), - [anon_sym_export_DASHenv] = ACTIONS(1113), - [anon_sym_extern] = ACTIONS(1113), - [anon_sym_module] = ACTIONS(1113), - [anon_sym_use] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1113), - [anon_sym_error] = ACTIONS(1113), - [anon_sym_list] = ACTIONS(1113), - [anon_sym_GT] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_in] = ACTIONS(1113), - [anon_sym_loop] = ACTIONS(1113), - [anon_sym_make] = ACTIONS(1113), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_else] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1113), - [anon_sym_RBRACE] = ACTIONS(1113), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_catch] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_source] = ACTIONS(1113), - [anon_sym_source_DASHenv] = ACTIONS(1113), - [anon_sym_register] = ACTIONS(1113), - [anon_sym_hide] = ACTIONS(1113), - [anon_sym_hide_DASHenv] = ACTIONS(1113), - [anon_sym_overlay] = ACTIONS(1113), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_as] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_STAR_STAR] = ACTIONS(1113), - [anon_sym_PLUS_PLUS] = ACTIONS(1113), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_mod] = ACTIONS(1113), - [anon_sym_SLASH_SLASH] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_bit_DASHshl] = ACTIONS(1113), - [anon_sym_bit_DASHshr] = ACTIONS(1113), - [anon_sym_EQ_EQ] = ACTIONS(1113), - [anon_sym_BANG_EQ] = ACTIONS(1113), - [anon_sym_LT2] = ACTIONS(1113), - [anon_sym_LT_EQ] = ACTIONS(1113), - [anon_sym_GT_EQ] = ACTIONS(1113), - [anon_sym_not_DASHin] = ACTIONS(1113), - [anon_sym_starts_DASHwith] = ACTIONS(1113), - [anon_sym_ends_DASHwith] = ACTIONS(1113), - [anon_sym_EQ_TILDE] = ACTIONS(1113), - [anon_sym_BANG_TILDE] = ACTIONS(1113), - [anon_sym_bit_DASHand] = ACTIONS(1113), - [anon_sym_bit_DASHxor] = ACTIONS(1113), - [anon_sym_bit_DASHor] = ACTIONS(1113), - [anon_sym_and] = ACTIONS(1113), - [anon_sym_xor] = ACTIONS(1113), - [anon_sym_or] = ACTIONS(1113), - [anon_sym_DOT_DOT2] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1115), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1115), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_decimal_token2] = ACTIONS(1113), - [anon_sym_DOT2] = ACTIONS(1113), - [aux_sym__val_number_decimal_token3] = ACTIONS(1113), - [aux_sym__val_number_token1] = ACTIONS(1113), - [aux_sym__val_number_token2] = ACTIONS(1113), - [aux_sym__val_number_token3] = ACTIONS(1113), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1113), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym__str_single_quotes] = ACTIONS(1113), - [sym__str_back_ticks] = ACTIONS(1113), - [sym__entry_separator] = ACTIONS(1115), - [aux_sym__record_key_token2] = ACTIONS(1113), - [anon_sym_POUND] = ACTIONS(113), + [aux_sym_list_body_repeat1] = STATE(851), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_RBRACK] = ACTIONS(2013), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1734), + [anon_sym_DOT_DOT_LT] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [aux_sym__val_number_decimal_token1] = ACTIONS(1740), + [aux_sym__val_number_decimal_token2] = ACTIONS(1742), + [anon_sym_DOT2] = ACTIONS(1744), + [aux_sym__val_number_decimal_token3] = ACTIONS(1746), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [aux_sym__val_number_token4] = ACTIONS(1750), + [aux_sym__val_number_token5] = ACTIONS(1750), + [aux_sym__val_number_token6] = ACTIONS(1750), + [anon_sym_0b] = ACTIONS(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(3), }, [810] = { + [sym__expr_unary_minus] = STATE(9980), + [sym_expr_parenthesized] = STATE(8494), + [sym_val_range] = STATE(9990), + [sym__val_range] = STATE(10001), + [sym__val_range_with_end] = STATE(10049), + [sym__value] = STATE(9990), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(9118), + [sym_val_variable] = STATE(5224), + [sym__var] = STATE(4556), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(7035), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(6041), + [sym_list_body] = STATE(10501), + [sym_val_entry] = STATE(9992), + [sym__list_item_expression] = STATE(10082), + [sym__list_item_starts_with_sign] = STATE(10149), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_short_flag] = STATE(10149), + [sym_long_flag] = STATE(10149), + [sym_long_flag_equals_value] = STATE(3793), + [sym__unquoted_in_list] = STATE(9353), + [sym__unquoted_in_list_with_expr] = STATE(10149), + [sym__unquoted_anonymous_prefix] = STATE(9874), [sym_comment] = STATE(810), - [anon_sym_export] = ACTIONS(1117), - [anon_sym_alias] = ACTIONS(1117), - [anon_sym_let] = ACTIONS(1117), - [anon_sym_let_DASHenv] = ACTIONS(1117), - [anon_sym_mut] = ACTIONS(1117), - [anon_sym_const] = ACTIONS(1117), - [sym_cmd_identifier] = ACTIONS(1117), - [anon_sym_def] = ACTIONS(1117), - [anon_sym_export_DASHenv] = ACTIONS(1117), - [anon_sym_extern] = ACTIONS(1117), - [anon_sym_module] = ACTIONS(1117), - [anon_sym_use] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1117), - [anon_sym_DOLLAR] = ACTIONS(1117), - [anon_sym_error] = ACTIONS(1117), - [anon_sym_list] = ACTIONS(1117), - [anon_sym_GT] = ACTIONS(1117), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_break] = ACTIONS(1117), - [anon_sym_continue] = ACTIONS(1117), - [anon_sym_for] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1117), - [anon_sym_loop] = ACTIONS(1117), - [anon_sym_make] = ACTIONS(1117), - [anon_sym_while] = ACTIONS(1117), - [anon_sym_do] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_else] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1117), - [anon_sym_RBRACE] = ACTIONS(1117), - [anon_sym_try] = ACTIONS(1117), - [anon_sym_catch] = ACTIONS(1117), - [anon_sym_return] = ACTIONS(1117), - [anon_sym_source] = ACTIONS(1117), - [anon_sym_source_DASHenv] = ACTIONS(1117), - [anon_sym_register] = ACTIONS(1117), - [anon_sym_hide] = ACTIONS(1117), - [anon_sym_hide_DASHenv] = ACTIONS(1117), - [anon_sym_overlay] = ACTIONS(1117), - [anon_sym_new] = ACTIONS(1117), - [anon_sym_as] = ACTIONS(1117), - [anon_sym_STAR] = ACTIONS(1117), - [anon_sym_STAR_STAR] = ACTIONS(1117), - [anon_sym_PLUS_PLUS] = ACTIONS(1117), - [anon_sym_SLASH] = ACTIONS(1117), - [anon_sym_mod] = ACTIONS(1117), - [anon_sym_SLASH_SLASH] = ACTIONS(1117), - [anon_sym_PLUS] = ACTIONS(1117), - [anon_sym_bit_DASHshl] = ACTIONS(1117), - [anon_sym_bit_DASHshr] = ACTIONS(1117), - [anon_sym_EQ_EQ] = ACTIONS(1117), - [anon_sym_BANG_EQ] = ACTIONS(1117), - [anon_sym_LT2] = ACTIONS(1117), - [anon_sym_LT_EQ] = ACTIONS(1117), - [anon_sym_GT_EQ] = ACTIONS(1117), - [anon_sym_not_DASHin] = ACTIONS(1117), - [anon_sym_starts_DASHwith] = ACTIONS(1117), - [anon_sym_ends_DASHwith] = ACTIONS(1117), - [anon_sym_EQ_TILDE] = ACTIONS(1117), - [anon_sym_BANG_TILDE] = ACTIONS(1117), - [anon_sym_bit_DASHand] = ACTIONS(1117), - [anon_sym_bit_DASHxor] = ACTIONS(1117), - [anon_sym_bit_DASHor] = ACTIONS(1117), - [anon_sym_and] = ACTIONS(1117), - [anon_sym_xor] = ACTIONS(1117), - [anon_sym_or] = ACTIONS(1117), - [anon_sym_DOT_DOT2] = ACTIONS(1117), - [anon_sym_DOT] = ACTIONS(1117), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1119), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1119), - [aux_sym__val_number_decimal_token1] = ACTIONS(1117), - [aux_sym__val_number_decimal_token2] = ACTIONS(1117), - [anon_sym_DOT2] = ACTIONS(1117), - [aux_sym__val_number_decimal_token3] = ACTIONS(1117), - [aux_sym__val_number_token1] = ACTIONS(1117), - [aux_sym__val_number_token2] = ACTIONS(1117), - [aux_sym__val_number_token3] = ACTIONS(1117), - [aux_sym__val_number_token4] = ACTIONS(1117), - [aux_sym__val_number_token5] = ACTIONS(1117), - [aux_sym__val_number_token6] = ACTIONS(1117), - [anon_sym_DQUOTE] = ACTIONS(1117), - [sym__str_single_quotes] = ACTIONS(1117), - [sym__str_back_ticks] = ACTIONS(1117), - [sym__entry_separator] = ACTIONS(1119), - [aux_sym__record_key_token2] = ACTIONS(1117), - [anon_sym_POUND] = ACTIONS(113), + [aux_sym_list_body_repeat1] = STATE(851), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_RBRACK] = ACTIONS(1832), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1734), + [anon_sym_DOT_DOT_LT] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [aux_sym__val_number_decimal_token1] = ACTIONS(1740), + [aux_sym__val_number_decimal_token2] = ACTIONS(1742), + [anon_sym_DOT2] = ACTIONS(1744), + [aux_sym__val_number_decimal_token3] = ACTIONS(1746), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [aux_sym__val_number_token4] = ACTIONS(1750), + [aux_sym__val_number_token5] = ACTIONS(1750), + [aux_sym__val_number_token6] = ACTIONS(1750), + [anon_sym_0b] = ACTIONS(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(3), }, [811] = { + [sym__expr_parenthesized_immediate] = STATE(1272), + [sym__immediate_decimal] = STATE(1041), + [sym_val_variable] = STATE(1272), + [sym__var] = STATE(967), [sym_comment] = STATE(811), - [anon_sym_export] = ACTIONS(1194), - [anon_sym_alias] = ACTIONS(1194), - [anon_sym_let] = ACTIONS(1194), - [anon_sym_let_DASHenv] = ACTIONS(1194), - [anon_sym_mut] = ACTIONS(1194), - [anon_sym_const] = ACTIONS(1194), - [sym_cmd_identifier] = ACTIONS(1194), - [anon_sym_def] = ACTIONS(1194), - [anon_sym_export_DASHenv] = ACTIONS(1194), - [anon_sym_extern] = ACTIONS(1194), - [anon_sym_module] = ACTIONS(1194), - [anon_sym_use] = ACTIONS(1194), - [anon_sym_LPAREN] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1194), - [anon_sym_error] = ACTIONS(1194), - [anon_sym_list] = ACTIONS(1194), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_break] = ACTIONS(1194), - [anon_sym_continue] = ACTIONS(1194), - [anon_sym_for] = ACTIONS(1194), - [anon_sym_in] = ACTIONS(1200), - [anon_sym_loop] = ACTIONS(1194), - [anon_sym_make] = ACTIONS(1194), - [anon_sym_while] = ACTIONS(1194), - [anon_sym_do] = ACTIONS(1194), - [anon_sym_if] = ACTIONS(1194), - [anon_sym_else] = ACTIONS(1194), - [anon_sym_match] = ACTIONS(1194), - [anon_sym_RBRACE] = ACTIONS(1194), - [anon_sym_try] = ACTIONS(1194), - [anon_sym_catch] = ACTIONS(1194), - [anon_sym_return] = ACTIONS(1194), - [anon_sym_source] = ACTIONS(1194), - [anon_sym_source_DASHenv] = ACTIONS(1194), - [anon_sym_register] = ACTIONS(1194), - [anon_sym_hide] = ACTIONS(1194), - [anon_sym_hide_DASHenv] = ACTIONS(1194), - [anon_sym_overlay] = ACTIONS(1194), - [anon_sym_new] = ACTIONS(1194), - [anon_sym_as] = ACTIONS(1194), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_STAR_STAR] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_SLASH] = ACTIONS(1198), - [anon_sym_mod] = ACTIONS(1198), - [anon_sym_SLASH_SLASH] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1200), - [anon_sym_bit_DASHshl] = ACTIONS(1198), - [anon_sym_bit_DASHshr] = ACTIONS(1198), - [anon_sym_EQ_EQ] = ACTIONS(1198), - [anon_sym_BANG_EQ] = ACTIONS(1198), - [anon_sym_LT2] = ACTIONS(1198), - [anon_sym_LT_EQ] = ACTIONS(1198), - [anon_sym_GT_EQ] = ACTIONS(1198), - [anon_sym_not_DASHin] = ACTIONS(1198), - [anon_sym_starts_DASHwith] = ACTIONS(1198), - [anon_sym_ends_DASHwith] = ACTIONS(1198), - [anon_sym_EQ_TILDE] = ACTIONS(1198), - [anon_sym_BANG_TILDE] = ACTIONS(1198), - [anon_sym_bit_DASHand] = ACTIONS(1198), - [anon_sym_bit_DASHxor] = ACTIONS(1198), - [anon_sym_bit_DASHor] = ACTIONS(1198), - [anon_sym_and] = ACTIONS(1198), - [anon_sym_xor] = ACTIONS(1198), - [anon_sym_or] = ACTIONS(1198), - [anon_sym_DOT_DOT2] = ACTIONS(1640), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1642), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1642), - [aux_sym__val_number_decimal_token1] = ACTIONS(1194), - [aux_sym__val_number_decimal_token2] = ACTIONS(1194), - [anon_sym_DOT2] = ACTIONS(1194), - [aux_sym__val_number_decimal_token3] = ACTIONS(1194), - [aux_sym__val_number_token1] = ACTIONS(1194), - [aux_sym__val_number_token2] = ACTIONS(1194), - [aux_sym__val_number_token3] = ACTIONS(1194), - [aux_sym__val_number_token4] = ACTIONS(1194), - [aux_sym__val_number_token5] = ACTIONS(1194), - [aux_sym__val_number_token6] = ACTIONS(1194), - [anon_sym_DQUOTE] = ACTIONS(1194), - [sym__str_single_quotes] = ACTIONS(1194), - [sym__str_back_ticks] = ACTIONS(1194), - [sym__entry_separator] = ACTIONS(1196), - [aux_sym__record_key_token2] = ACTIONS(1194), + [ts_builtin_sym_end] = ACTIONS(922), + [anon_sym_export] = ACTIONS(920), + [anon_sym_alias] = ACTIONS(920), + [anon_sym_let] = ACTIONS(920), + [anon_sym_let_DASHenv] = ACTIONS(920), + [anon_sym_mut] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(920), + [sym_cmd_identifier] = ACTIONS(920), + [anon_sym_LF] = ACTIONS(922), + [anon_sym_def] = ACTIONS(920), + [anon_sym_export_DASHenv] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym_module] = ACTIONS(920), + [anon_sym_use] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_error] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_loop] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_match] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_try] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_source] = ACTIONS(920), + [anon_sym_source_DASHenv] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_hide] = ACTIONS(920), + [anon_sym_hide_DASHenv] = ACTIONS(920), + [anon_sym_overlay] = ACTIONS(920), + [anon_sym_as] = ACTIONS(920), + [anon_sym_where] = ACTIONS(920), + [anon_sym_not] = ACTIONS(920), + [anon_sym_LPAREN2] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(2015), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [aux_sym__immediate_decimal_token1] = ACTIONS(2017), + [aux_sym__immediate_decimal_token3] = ACTIONS(2017), + [aux_sym__immediate_decimal_token4] = ACTIONS(2019), + [anon_sym_null] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), + [anon_sym_CARET] = ACTIONS(920), + [aux_sym_unquoted_token3] = ACTIONS(983), + [aux_sym_unquoted_token5] = ACTIONS(2021), [anon_sym_POUND] = ACTIONS(113), }, [812] = { + [sym__expr_parenthesized_immediate] = STATE(1504), + [sym__immediate_decimal] = STATE(1127), + [sym_val_variable] = STATE(1504), + [sym__var] = STATE(1105), [sym_comment] = STATE(812), - [anon_sym_export] = ACTIONS(1172), - [anon_sym_alias] = ACTIONS(1172), - [anon_sym_let] = ACTIONS(1172), - [anon_sym_let_DASHenv] = ACTIONS(1172), - [anon_sym_mut] = ACTIONS(1172), - [anon_sym_const] = ACTIONS(1172), - [sym_cmd_identifier] = ACTIONS(1172), - [anon_sym_def] = ACTIONS(1172), - [anon_sym_export_DASHenv] = ACTIONS(1172), - [anon_sym_extern] = ACTIONS(1172), - [anon_sym_module] = ACTIONS(1172), - [anon_sym_use] = ACTIONS(1172), - [anon_sym_LPAREN] = ACTIONS(1172), - [anon_sym_DOLLAR] = ACTIONS(1172), - [anon_sym_error] = ACTIONS(1172), - [anon_sym_list] = ACTIONS(1172), - [anon_sym_GT] = ACTIONS(1172), - [anon_sym_DASH] = ACTIONS(1172), - [anon_sym_break] = ACTIONS(1172), - [anon_sym_continue] = ACTIONS(1172), - [anon_sym_for] = ACTIONS(1172), - [anon_sym_in] = ACTIONS(1172), - [anon_sym_loop] = ACTIONS(1172), - [anon_sym_make] = ACTIONS(1172), - [anon_sym_while] = ACTIONS(1172), - [anon_sym_do] = ACTIONS(1172), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_else] = ACTIONS(1172), - [anon_sym_match] = ACTIONS(1172), - [anon_sym_RBRACE] = ACTIONS(1172), - [anon_sym_try] = ACTIONS(1172), - [anon_sym_catch] = ACTIONS(1172), - [anon_sym_return] = ACTIONS(1172), - [anon_sym_source] = ACTIONS(1172), - [anon_sym_source_DASHenv] = ACTIONS(1172), - [anon_sym_register] = ACTIONS(1172), - [anon_sym_hide] = ACTIONS(1172), - [anon_sym_hide_DASHenv] = ACTIONS(1172), - [anon_sym_overlay] = ACTIONS(1172), - [anon_sym_new] = ACTIONS(1172), - [anon_sym_as] = ACTIONS(1172), - [anon_sym_STAR] = ACTIONS(1172), - [anon_sym_STAR_STAR] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_SLASH] = ACTIONS(1172), - [anon_sym_mod] = ACTIONS(1172), - [anon_sym_SLASH_SLASH] = ACTIONS(1172), - [anon_sym_PLUS] = ACTIONS(1172), - [anon_sym_bit_DASHshl] = ACTIONS(1172), - [anon_sym_bit_DASHshr] = ACTIONS(1172), - [anon_sym_EQ_EQ] = ACTIONS(1172), - [anon_sym_BANG_EQ] = ACTIONS(1172), - [anon_sym_LT2] = ACTIONS(1172), - [anon_sym_LT_EQ] = ACTIONS(1172), - [anon_sym_GT_EQ] = ACTIONS(1172), - [anon_sym_not_DASHin] = ACTIONS(1172), - [anon_sym_starts_DASHwith] = ACTIONS(1172), - [anon_sym_ends_DASHwith] = ACTIONS(1172), - [anon_sym_EQ_TILDE] = ACTIONS(1172), - [anon_sym_BANG_TILDE] = ACTIONS(1172), - [anon_sym_bit_DASHand] = ACTIONS(1172), - [anon_sym_bit_DASHxor] = ACTIONS(1172), - [anon_sym_bit_DASHor] = ACTIONS(1172), - [anon_sym_and] = ACTIONS(1172), - [anon_sym_xor] = ACTIONS(1172), - [anon_sym_or] = ACTIONS(1172), - [anon_sym_DOT_DOT2] = ACTIONS(1172), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1174), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1174), - [aux_sym__val_number_decimal_token1] = ACTIONS(1172), - [aux_sym__val_number_decimal_token2] = ACTIONS(1172), - [anon_sym_DOT2] = ACTIONS(1172), - [aux_sym__val_number_decimal_token3] = ACTIONS(1172), - [aux_sym__val_number_token1] = ACTIONS(1172), - [aux_sym__val_number_token2] = ACTIONS(1172), - [aux_sym__val_number_token3] = ACTIONS(1172), - [aux_sym__val_number_token4] = ACTIONS(1172), - [aux_sym__val_number_token5] = ACTIONS(1172), - [aux_sym__val_number_token6] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(1172), - [sym__str_single_quotes] = ACTIONS(1172), - [sym__str_back_ticks] = ACTIONS(1172), - [sym__entry_separator] = ACTIONS(1174), - [aux_sym__record_key_token2] = ACTIONS(1172), + [anon_sym_export] = ACTIONS(920), + [anon_sym_alias] = ACTIONS(920), + [anon_sym_let] = ACTIONS(920), + [anon_sym_let_DASHenv] = ACTIONS(920), + [anon_sym_mut] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(920), + [sym_cmd_identifier] = ACTIONS(920), + [anon_sym_LF] = ACTIONS(922), + [anon_sym_def] = ACTIONS(920), + [anon_sym_export_DASHenv] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym_module] = ACTIONS(920), + [anon_sym_use] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_RPAREN] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_error] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_loop] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_match] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_RBRACE] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_try] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_source] = ACTIONS(920), + [anon_sym_source_DASHenv] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_hide] = ACTIONS(920), + [anon_sym_hide_DASHenv] = ACTIONS(920), + [anon_sym_overlay] = ACTIONS(920), + [anon_sym_as] = ACTIONS(920), + [anon_sym_where] = ACTIONS(920), + [anon_sym_not] = ACTIONS(920), + [anon_sym_LPAREN2] = ACTIONS(1868), + [anon_sym_DOT] = ACTIONS(2023), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [aux_sym__immediate_decimal_token1] = ACTIONS(2025), + [aux_sym__immediate_decimal_token3] = ACTIONS(2025), + [aux_sym__immediate_decimal_token4] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), + [anon_sym_CARET] = ACTIONS(920), + [aux_sym_unquoted_token4] = ACTIONS(1706), [anon_sym_POUND] = ACTIONS(113), }, [813] = { + [sym__expr_unary_minus] = STATE(9980), + [sym_expr_parenthesized] = STATE(8494), + [sym_val_range] = STATE(9990), + [sym__val_range] = STATE(10001), + [sym__val_range_with_end] = STATE(10049), + [sym__value] = STATE(9990), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(9118), + [sym_val_variable] = STATE(5224), + [sym__var] = STATE(4556), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(7035), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(9735), + [sym_list_body] = STATE(10706), + [sym_val_entry] = STATE(9992), + [sym__list_item_expression] = STATE(10082), + [sym__list_item_starts_with_sign] = STATE(10149), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_short_flag] = STATE(10149), + [sym_long_flag] = STATE(10149), + [sym_long_flag_equals_value] = STATE(3793), + [sym__unquoted_in_list] = STATE(9353), + [sym__unquoted_in_list_with_expr] = STATE(10149), + [sym__unquoted_anonymous_prefix] = STATE(9874), [sym_comment] = STATE(813), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_alias] = ACTIONS(1109), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_let_DASHenv] = ACTIONS(1109), - [anon_sym_mut] = ACTIONS(1109), - [anon_sym_const] = ACTIONS(1109), - [sym_cmd_identifier] = ACTIONS(1109), - [anon_sym_def] = ACTIONS(1109), - [anon_sym_export_DASHenv] = ACTIONS(1109), - [anon_sym_extern] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_use] = ACTIONS(1109), - [anon_sym_LPAREN] = ACTIONS(1111), - [anon_sym_DOLLAR] = ACTIONS(1111), - [anon_sym_error] = ACTIONS(1109), - [anon_sym_list] = ACTIONS(1109), - [anon_sym_GT] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_break] = ACTIONS(1109), - [anon_sym_continue] = ACTIONS(1109), - [anon_sym_for] = ACTIONS(1109), - [anon_sym_in] = ACTIONS(1109), - [anon_sym_loop] = ACTIONS(1109), - [anon_sym_make] = ACTIONS(1109), - [anon_sym_while] = ACTIONS(1109), - [anon_sym_do] = ACTIONS(1109), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_else] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_RBRACE] = ACTIONS(1111), - [anon_sym_try] = ACTIONS(1109), - [anon_sym_catch] = ACTIONS(1109), - [anon_sym_return] = ACTIONS(1109), - [anon_sym_source] = ACTIONS(1109), - [anon_sym_source_DASHenv] = ACTIONS(1109), - [anon_sym_register] = ACTIONS(1109), - [anon_sym_hide] = ACTIONS(1109), - [anon_sym_hide_DASHenv] = ACTIONS(1109), - [anon_sym_overlay] = ACTIONS(1109), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_as] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_STAR_STAR] = ACTIONS(1111), - [anon_sym_PLUS_PLUS] = ACTIONS(1111), - [anon_sym_SLASH] = ACTIONS(1109), - [anon_sym_mod] = ACTIONS(1109), - [anon_sym_SLASH_SLASH] = ACTIONS(1111), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_bit_DASHshl] = ACTIONS(1109), - [anon_sym_bit_DASHshr] = ACTIONS(1109), - [anon_sym_EQ_EQ] = ACTIONS(1111), - [anon_sym_BANG_EQ] = ACTIONS(1111), - [anon_sym_LT2] = ACTIONS(1109), - [anon_sym_LT_EQ] = ACTIONS(1111), - [anon_sym_GT_EQ] = ACTIONS(1111), - [anon_sym_not_DASHin] = ACTIONS(1109), - [anon_sym_starts_DASHwith] = ACTIONS(1109), - [anon_sym_ends_DASHwith] = ACTIONS(1109), - [anon_sym_EQ_TILDE] = ACTIONS(1111), - [anon_sym_BANG_TILDE] = ACTIONS(1111), - [anon_sym_bit_DASHand] = ACTIONS(1109), - [anon_sym_bit_DASHxor] = ACTIONS(1109), - [anon_sym_bit_DASHor] = ACTIONS(1109), - [anon_sym_and] = ACTIONS(1109), - [anon_sym_xor] = ACTIONS(1109), - [anon_sym_or] = ACTIONS(1109), - [anon_sym_DOT_DOT2] = ACTIONS(1109), - [anon_sym_DOT] = ACTIONS(1109), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1111), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1111), - [aux_sym__val_number_decimal_token1] = ACTIONS(1109), - [aux_sym__val_number_decimal_token2] = ACTIONS(1111), - [anon_sym_DOT2] = ACTIONS(1109), - [aux_sym__val_number_decimal_token3] = ACTIONS(1111), - [aux_sym__val_number_token1] = ACTIONS(1111), - [aux_sym__val_number_token2] = ACTIONS(1111), - [aux_sym__val_number_token3] = ACTIONS(1111), - [aux_sym__val_number_token4] = ACTIONS(1109), - [aux_sym__val_number_token5] = ACTIONS(1111), - [aux_sym__val_number_token6] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(1111), - [sym__str_single_quotes] = ACTIONS(1111), - [sym__str_back_ticks] = ACTIONS(1111), - [aux_sym__record_key_token2] = ACTIONS(1109), + [aux_sym_list_body_repeat1] = STATE(851), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_RBRACK] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1734), + [anon_sym_DOT_DOT_LT] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [aux_sym__val_number_decimal_token1] = ACTIONS(1740), + [aux_sym__val_number_decimal_token2] = ACTIONS(1742), + [anon_sym_DOT2] = ACTIONS(1744), + [aux_sym__val_number_decimal_token3] = ACTIONS(1746), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [aux_sym__val_number_token4] = ACTIONS(1750), + [aux_sym__val_number_token5] = ACTIONS(1750), + [aux_sym__val_number_token6] = ACTIONS(1750), + [anon_sym_0b] = ACTIONS(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1499), [anon_sym_POUND] = ACTIONS(3), }, [814] = { + [sym__expr_parenthesized_immediate] = STATE(1504), + [sym__immediate_decimal] = STATE(1276), + [sym_val_variable] = STATE(1504), + [sym__var] = STATE(1105), [sym_comment] = STATE(814), - [anon_sym_export] = ACTIONS(1113), - [anon_sym_alias] = ACTIONS(1113), - [anon_sym_let] = ACTIONS(1113), - [anon_sym_let_DASHenv] = ACTIONS(1113), - [anon_sym_mut] = ACTIONS(1113), - [anon_sym_const] = ACTIONS(1113), - [sym_cmd_identifier] = ACTIONS(1113), - [anon_sym_def] = ACTIONS(1113), - [anon_sym_export_DASHenv] = ACTIONS(1113), - [anon_sym_extern] = ACTIONS(1113), - [anon_sym_module] = ACTIONS(1113), - [anon_sym_use] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_DOLLAR] = ACTIONS(1115), - [anon_sym_error] = ACTIONS(1113), - [anon_sym_list] = ACTIONS(1113), - [anon_sym_GT] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_in] = ACTIONS(1113), - [anon_sym_loop] = ACTIONS(1113), - [anon_sym_make] = ACTIONS(1113), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_else] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1113), - [anon_sym_RBRACE] = ACTIONS(1115), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_catch] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_source] = ACTIONS(1113), - [anon_sym_source_DASHenv] = ACTIONS(1113), - [anon_sym_register] = ACTIONS(1113), - [anon_sym_hide] = ACTIONS(1113), - [anon_sym_hide_DASHenv] = ACTIONS(1113), - [anon_sym_overlay] = ACTIONS(1113), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_as] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_STAR_STAR] = ACTIONS(1115), - [anon_sym_PLUS_PLUS] = ACTIONS(1115), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_mod] = ACTIONS(1113), - [anon_sym_SLASH_SLASH] = ACTIONS(1115), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_bit_DASHshl] = ACTIONS(1113), - [anon_sym_bit_DASHshr] = ACTIONS(1113), - [anon_sym_EQ_EQ] = ACTIONS(1115), - [anon_sym_BANG_EQ] = ACTIONS(1115), - [anon_sym_LT2] = ACTIONS(1113), - [anon_sym_LT_EQ] = ACTIONS(1115), - [anon_sym_GT_EQ] = ACTIONS(1115), - [anon_sym_not_DASHin] = ACTIONS(1113), - [anon_sym_starts_DASHwith] = ACTIONS(1113), - [anon_sym_ends_DASHwith] = ACTIONS(1113), - [anon_sym_EQ_TILDE] = ACTIONS(1115), - [anon_sym_BANG_TILDE] = ACTIONS(1115), - [anon_sym_bit_DASHand] = ACTIONS(1113), - [anon_sym_bit_DASHxor] = ACTIONS(1113), - [anon_sym_bit_DASHor] = ACTIONS(1113), - [anon_sym_and] = ACTIONS(1113), - [anon_sym_xor] = ACTIONS(1113), - [anon_sym_or] = ACTIONS(1113), - [anon_sym_DOT_DOT2] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1115), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1115), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_decimal_token2] = ACTIONS(1115), - [anon_sym_DOT2] = ACTIONS(1113), - [aux_sym__val_number_decimal_token3] = ACTIONS(1115), - [aux_sym__val_number_token1] = ACTIONS(1115), - [aux_sym__val_number_token2] = ACTIONS(1115), - [aux_sym__val_number_token3] = ACTIONS(1115), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1115), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1115), - [sym__str_single_quotes] = ACTIONS(1115), - [sym__str_back_ticks] = ACTIONS(1115), - [aux_sym__record_key_token2] = ACTIONS(1113), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(920), + [anon_sym_alias] = ACTIONS(920), + [anon_sym_let] = ACTIONS(920), + [anon_sym_let_DASHenv] = ACTIONS(920), + [anon_sym_mut] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(920), + [sym_cmd_identifier] = ACTIONS(920), + [anon_sym_LF] = ACTIONS(922), + [anon_sym_def] = ACTIONS(920), + [anon_sym_export_DASHenv] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym_module] = ACTIONS(920), + [anon_sym_use] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_RPAREN] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_error] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_loop] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_match] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_RBRACE] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_try] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_source] = ACTIONS(920), + [anon_sym_source_DASHenv] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_hide] = ACTIONS(920), + [anon_sym_hide_DASHenv] = ACTIONS(920), + [anon_sym_overlay] = ACTIONS(920), + [anon_sym_as] = ACTIONS(920), + [anon_sym_where] = ACTIONS(920), + [anon_sym_not] = ACTIONS(920), + [anon_sym_LPAREN2] = ACTIONS(1868), + [anon_sym_DOT] = ACTIONS(1870), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [aux_sym__immediate_decimal_token1] = ACTIONS(1872), + [aux_sym__immediate_decimal_token3] = ACTIONS(1872), + [aux_sym__immediate_decimal_token4] = ACTIONS(1874), + [anon_sym_null] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), + [anon_sym_CARET] = ACTIONS(920), + [aux_sym_unquoted_token4] = ACTIONS(952), + [anon_sym_POUND] = ACTIONS(113), }, [815] = { + [sym__expr_parenthesized_immediate] = STATE(1097), + [sym__immediate_decimal] = STATE(945), + [sym_val_variable] = STATE(1097), + [sym__var] = STATE(935), [sym_comment] = STATE(815), - [anon_sym_export] = ACTIONS(1117), - [anon_sym_alias] = ACTIONS(1117), - [anon_sym_let] = ACTIONS(1117), - [anon_sym_let_DASHenv] = ACTIONS(1117), - [anon_sym_mut] = ACTIONS(1117), - [anon_sym_const] = ACTIONS(1117), - [sym_cmd_identifier] = ACTIONS(1117), - [anon_sym_def] = ACTIONS(1117), - [anon_sym_export_DASHenv] = ACTIONS(1117), - [anon_sym_extern] = ACTIONS(1117), - [anon_sym_module] = ACTIONS(1117), - [anon_sym_use] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1119), - [anon_sym_DOLLAR] = ACTIONS(1119), - [anon_sym_error] = ACTIONS(1117), - [anon_sym_list] = ACTIONS(1117), - [anon_sym_GT] = ACTIONS(1117), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_break] = ACTIONS(1117), - [anon_sym_continue] = ACTIONS(1117), - [anon_sym_for] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1117), - [anon_sym_loop] = ACTIONS(1117), - [anon_sym_make] = ACTIONS(1117), - [anon_sym_while] = ACTIONS(1117), - [anon_sym_do] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_else] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1117), - [anon_sym_RBRACE] = ACTIONS(1119), - [anon_sym_try] = ACTIONS(1117), - [anon_sym_catch] = ACTIONS(1117), - [anon_sym_return] = ACTIONS(1117), - [anon_sym_source] = ACTIONS(1117), - [anon_sym_source_DASHenv] = ACTIONS(1117), - [anon_sym_register] = ACTIONS(1117), - [anon_sym_hide] = ACTIONS(1117), - [anon_sym_hide_DASHenv] = ACTIONS(1117), - [anon_sym_overlay] = ACTIONS(1117), - [anon_sym_new] = ACTIONS(1117), - [anon_sym_as] = ACTIONS(1117), - [anon_sym_STAR] = ACTIONS(1117), - [anon_sym_STAR_STAR] = ACTIONS(1119), - [anon_sym_PLUS_PLUS] = ACTIONS(1119), - [anon_sym_SLASH] = ACTIONS(1117), - [anon_sym_mod] = ACTIONS(1117), - [anon_sym_SLASH_SLASH] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1117), - [anon_sym_bit_DASHshl] = ACTIONS(1117), - [anon_sym_bit_DASHshr] = ACTIONS(1117), - [anon_sym_EQ_EQ] = ACTIONS(1119), - [anon_sym_BANG_EQ] = ACTIONS(1119), - [anon_sym_LT2] = ACTIONS(1117), - [anon_sym_LT_EQ] = ACTIONS(1119), - [anon_sym_GT_EQ] = ACTIONS(1119), - [anon_sym_not_DASHin] = ACTIONS(1117), - [anon_sym_starts_DASHwith] = ACTIONS(1117), - [anon_sym_ends_DASHwith] = ACTIONS(1117), - [anon_sym_EQ_TILDE] = ACTIONS(1119), - [anon_sym_BANG_TILDE] = ACTIONS(1119), - [anon_sym_bit_DASHand] = ACTIONS(1117), - [anon_sym_bit_DASHxor] = ACTIONS(1117), - [anon_sym_bit_DASHor] = ACTIONS(1117), - [anon_sym_and] = ACTIONS(1117), - [anon_sym_xor] = ACTIONS(1117), - [anon_sym_or] = ACTIONS(1117), - [anon_sym_DOT_DOT2] = ACTIONS(1117), - [anon_sym_DOT] = ACTIONS(1117), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1119), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1119), - [aux_sym__val_number_decimal_token1] = ACTIONS(1117), - [aux_sym__val_number_decimal_token2] = ACTIONS(1119), - [anon_sym_DOT2] = ACTIONS(1117), - [aux_sym__val_number_decimal_token3] = ACTIONS(1119), - [aux_sym__val_number_token1] = ACTIONS(1119), - [aux_sym__val_number_token2] = ACTIONS(1119), - [aux_sym__val_number_token3] = ACTIONS(1119), - [aux_sym__val_number_token4] = ACTIONS(1117), - [aux_sym__val_number_token5] = ACTIONS(1119), - [aux_sym__val_number_token6] = ACTIONS(1117), - [anon_sym_DQUOTE] = ACTIONS(1119), - [sym__str_single_quotes] = ACTIONS(1119), - [sym__str_back_ticks] = ACTIONS(1119), - [aux_sym__record_key_token2] = ACTIONS(1117), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1838), + [anon_sym_alias] = ACTIONS(1838), + [anon_sym_let] = ACTIONS(1838), + [anon_sym_let_DASHenv] = ACTIONS(1838), + [anon_sym_mut] = ACTIONS(1838), + [anon_sym_const] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(1838), + [sym_cmd_identifier] = ACTIONS(1838), + [anon_sym_LF] = ACTIONS(1840), + [anon_sym_def] = ACTIONS(1838), + [anon_sym_export_DASHenv] = ACTIONS(1838), + [anon_sym_extern] = ACTIONS(1838), + [anon_sym_module] = ACTIONS(1838), + [anon_sym_use] = ACTIONS(1838), + [anon_sym_LBRACK] = ACTIONS(1838), + [anon_sym_LPAREN] = ACTIONS(1838), + [anon_sym_RPAREN] = ACTIONS(1838), + [anon_sym_DOLLAR] = ACTIONS(1696), + [anon_sym_error] = ACTIONS(1838), + [anon_sym_DASH_DASH] = ACTIONS(1838), + [anon_sym_DASH] = ACTIONS(1838), + [anon_sym_break] = ACTIONS(1838), + [anon_sym_continue] = ACTIONS(1838), + [anon_sym_for] = ACTIONS(1838), + [anon_sym_loop] = ACTIONS(1838), + [anon_sym_while] = ACTIONS(1838), + [anon_sym_do] = ACTIONS(1838), + [anon_sym_if] = ACTIONS(1838), + [anon_sym_match] = ACTIONS(1838), + [anon_sym_LBRACE] = ACTIONS(1838), + [anon_sym_RBRACE] = ACTIONS(1838), + [anon_sym_DOT_DOT] = ACTIONS(1838), + [anon_sym_try] = ACTIONS(1838), + [anon_sym_return] = ACTIONS(1838), + [anon_sym_source] = ACTIONS(1838), + [anon_sym_source_DASHenv] = ACTIONS(1838), + [anon_sym_register] = ACTIONS(1838), + [anon_sym_hide] = ACTIONS(1838), + [anon_sym_hide_DASHenv] = ACTIONS(1838), + [anon_sym_overlay] = ACTIONS(1838), + [anon_sym_as] = ACTIONS(1838), + [anon_sym_where] = ACTIONS(1838), + [anon_sym_not] = ACTIONS(1838), + [anon_sym_LPAREN2] = ACTIONS(1698), + [anon_sym_DOT] = ACTIONS(2031), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1838), + [anon_sym_DOT_DOT_LT] = ACTIONS(1838), + [aux_sym__immediate_decimal_token1] = ACTIONS(1702), + [aux_sym__immediate_decimal_token3] = ACTIONS(1702), + [aux_sym__immediate_decimal_token4] = ACTIONS(1704), + [anon_sym_null] = ACTIONS(1838), + [anon_sym_true] = ACTIONS(1838), + [anon_sym_false] = ACTIONS(1838), + [aux_sym__val_number_decimal_token1] = ACTIONS(1838), + [aux_sym__val_number_decimal_token2] = ACTIONS(1838), + [anon_sym_DOT2] = ACTIONS(1838), + [aux_sym__val_number_decimal_token3] = ACTIONS(1838), + [aux_sym__val_number_token1] = ACTIONS(1838), + [aux_sym__val_number_token2] = ACTIONS(1838), + [aux_sym__val_number_token3] = ACTIONS(1838), + [aux_sym__val_number_token4] = ACTIONS(1838), + [aux_sym__val_number_token5] = ACTIONS(1838), + [aux_sym__val_number_token6] = ACTIONS(1838), + [anon_sym_0b] = ACTIONS(1838), + [anon_sym_0o] = ACTIONS(1838), + [anon_sym_0x] = ACTIONS(1838), + [sym_val_date] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym__str_single_quotes] = ACTIONS(1838), + [sym__str_back_ticks] = ACTIONS(1838), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1838), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1838), + [anon_sym_CARET] = ACTIONS(1838), + [aux_sym_unquoted_token2] = ACTIONS(1844), + [anon_sym_POUND] = ACTIONS(113), }, [816] = { - [sym_cell_path] = STATE(938), - [sym_path] = STATE(826), + [sym__expr_parenthesized_immediate] = STATE(1536), + [sym__immediate_decimal] = STATE(1138), + [sym_val_variable] = STATE(1536), + [sym__var] = STATE(1105), [sym_comment] = STATE(816), - [anon_sym_export] = ACTIONS(1154), - [anon_sym_alias] = ACTIONS(1154), - [anon_sym_let] = ACTIONS(1154), - [anon_sym_let_DASHenv] = ACTIONS(1154), - [anon_sym_mut] = ACTIONS(1154), - [anon_sym_const] = ACTIONS(1154), - [sym_cmd_identifier] = ACTIONS(1154), - [anon_sym_def] = ACTIONS(1154), - [anon_sym_export_DASHenv] = ACTIONS(1154), - [anon_sym_extern] = ACTIONS(1154), - [anon_sym_module] = ACTIONS(1154), - [anon_sym_use] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_DOLLAR] = ACTIONS(1154), - [anon_sym_error] = ACTIONS(1154), - [anon_sym_list] = ACTIONS(1154), - [anon_sym_GT] = ACTIONS(1154), - [anon_sym_DASH] = ACTIONS(1154), - [anon_sym_break] = ACTIONS(1154), - [anon_sym_continue] = ACTIONS(1154), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_in] = ACTIONS(1154), - [anon_sym_loop] = ACTIONS(1154), - [anon_sym_make] = ACTIONS(1154), - [anon_sym_while] = ACTIONS(1154), - [anon_sym_do] = ACTIONS(1154), - [anon_sym_if] = ACTIONS(1154), - [anon_sym_else] = ACTIONS(1154), - [anon_sym_match] = ACTIONS(1154), - [anon_sym_RBRACE] = ACTIONS(1154), - [anon_sym_try] = ACTIONS(1154), - [anon_sym_catch] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(1154), - [anon_sym_source] = ACTIONS(1154), - [anon_sym_source_DASHenv] = ACTIONS(1154), - [anon_sym_register] = ACTIONS(1154), - [anon_sym_hide] = ACTIONS(1154), - [anon_sym_hide_DASHenv] = ACTIONS(1154), - [anon_sym_overlay] = ACTIONS(1154), - [anon_sym_new] = ACTIONS(1154), - [anon_sym_as] = ACTIONS(1154), - [anon_sym_STAR] = ACTIONS(1154), - [anon_sym_STAR_STAR] = ACTIONS(1154), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_SLASH] = ACTIONS(1154), - [anon_sym_mod] = ACTIONS(1154), - [anon_sym_SLASH_SLASH] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1154), - [anon_sym_bit_DASHshl] = ACTIONS(1154), - [anon_sym_bit_DASHshr] = ACTIONS(1154), - [anon_sym_EQ_EQ] = ACTIONS(1154), - [anon_sym_BANG_EQ] = ACTIONS(1154), - [anon_sym_LT2] = ACTIONS(1154), - [anon_sym_LT_EQ] = ACTIONS(1154), - [anon_sym_GT_EQ] = ACTIONS(1154), - [anon_sym_not_DASHin] = ACTIONS(1154), - [anon_sym_starts_DASHwith] = ACTIONS(1154), - [anon_sym_ends_DASHwith] = ACTIONS(1154), - [anon_sym_EQ_TILDE] = ACTIONS(1154), - [anon_sym_BANG_TILDE] = ACTIONS(1154), - [anon_sym_bit_DASHand] = ACTIONS(1154), - [anon_sym_bit_DASHxor] = ACTIONS(1154), - [anon_sym_bit_DASHor] = ACTIONS(1154), - [anon_sym_and] = ACTIONS(1154), - [anon_sym_xor] = ACTIONS(1154), - [anon_sym_or] = ACTIONS(1154), - [anon_sym_DOT] = ACTIONS(1644), - [aux_sym__val_number_decimal_token1] = ACTIONS(1154), - [aux_sym__val_number_decimal_token2] = ACTIONS(1154), - [anon_sym_DOT2] = ACTIONS(1154), - [aux_sym__val_number_decimal_token3] = ACTIONS(1154), - [aux_sym__val_number_token1] = ACTIONS(1154), - [aux_sym__val_number_token2] = ACTIONS(1154), - [aux_sym__val_number_token3] = ACTIONS(1154), - [aux_sym__val_number_token4] = ACTIONS(1154), - [aux_sym__val_number_token5] = ACTIONS(1154), - [aux_sym__val_number_token6] = ACTIONS(1154), - [anon_sym_DQUOTE] = ACTIONS(1154), - [sym__str_single_quotes] = ACTIONS(1154), - [sym__str_back_ticks] = ACTIONS(1154), - [sym__entry_separator] = ACTIONS(1156), - [aux_sym__record_key_token2] = ACTIONS(1154), + [anon_sym_export] = ACTIONS(1838), + [anon_sym_alias] = ACTIONS(1838), + [anon_sym_let] = ACTIONS(1838), + [anon_sym_let_DASHenv] = ACTIONS(1838), + [anon_sym_mut] = ACTIONS(1838), + [anon_sym_const] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(1838), + [sym_cmd_identifier] = ACTIONS(1838), + [anon_sym_LF] = ACTIONS(1840), + [anon_sym_def] = ACTIONS(1838), + [anon_sym_export_DASHenv] = ACTIONS(1838), + [anon_sym_extern] = ACTIONS(1838), + [anon_sym_module] = ACTIONS(1838), + [anon_sym_use] = ACTIONS(1838), + [anon_sym_LBRACK] = ACTIONS(1838), + [anon_sym_LPAREN] = ACTIONS(1838), + [anon_sym_RPAREN] = ACTIONS(1838), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_error] = ACTIONS(1838), + [anon_sym_DASH_DASH] = ACTIONS(1838), + [anon_sym_DASH] = ACTIONS(1838), + [anon_sym_break] = ACTIONS(1838), + [anon_sym_continue] = ACTIONS(1838), + [anon_sym_for] = ACTIONS(1838), + [anon_sym_loop] = ACTIONS(1838), + [anon_sym_while] = ACTIONS(1838), + [anon_sym_do] = ACTIONS(1838), + [anon_sym_if] = ACTIONS(1838), + [anon_sym_match] = ACTIONS(1838), + [anon_sym_LBRACE] = ACTIONS(1838), + [anon_sym_RBRACE] = ACTIONS(1838), + [anon_sym_DOT_DOT] = ACTIONS(1838), + [anon_sym_try] = ACTIONS(1838), + [anon_sym_return] = ACTIONS(1838), + [anon_sym_source] = ACTIONS(1838), + [anon_sym_source_DASHenv] = ACTIONS(1838), + [anon_sym_register] = ACTIONS(1838), + [anon_sym_hide] = ACTIONS(1838), + [anon_sym_hide_DASHenv] = ACTIONS(1838), + [anon_sym_overlay] = ACTIONS(1838), + [anon_sym_as] = ACTIONS(1838), + [anon_sym_where] = ACTIONS(1838), + [anon_sym_not] = ACTIONS(1838), + [anon_sym_LPAREN2] = ACTIONS(1868), + [anon_sym_DOT] = ACTIONS(2023), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1838), + [anon_sym_DOT_DOT_LT] = ACTIONS(1838), + [aux_sym__immediate_decimal_token1] = ACTIONS(2025), + [aux_sym__immediate_decimal_token3] = ACTIONS(2025), + [aux_sym__immediate_decimal_token4] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(1838), + [anon_sym_true] = ACTIONS(1838), + [anon_sym_false] = ACTIONS(1838), + [aux_sym__val_number_decimal_token1] = ACTIONS(1838), + [aux_sym__val_number_decimal_token2] = ACTIONS(1838), + [anon_sym_DOT2] = ACTIONS(1838), + [aux_sym__val_number_decimal_token3] = ACTIONS(1838), + [aux_sym__val_number_token1] = ACTIONS(1838), + [aux_sym__val_number_token2] = ACTIONS(1838), + [aux_sym__val_number_token3] = ACTIONS(1838), + [aux_sym__val_number_token4] = ACTIONS(1838), + [aux_sym__val_number_token5] = ACTIONS(1838), + [aux_sym__val_number_token6] = ACTIONS(1838), + [anon_sym_0b] = ACTIONS(1838), + [anon_sym_0o] = ACTIONS(1838), + [anon_sym_0x] = ACTIONS(1838), + [sym_val_date] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym__str_single_quotes] = ACTIONS(1838), + [sym__str_back_ticks] = ACTIONS(1838), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1838), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1838), + [anon_sym_CARET] = ACTIONS(1838), + [aux_sym_unquoted_token2] = ACTIONS(1844), [anon_sym_POUND] = ACTIONS(113), }, [817] = { + [sym__expr_unary_minus] = STATE(9980), + [sym_expr_parenthesized] = STATE(8494), + [sym_val_range] = STATE(9990), + [sym__val_range] = STATE(10001), + [sym__val_range_with_end] = STATE(10049), + [sym__value] = STATE(9990), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(9118), + [sym_val_variable] = STATE(5224), + [sym__var] = STATE(4556), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(7035), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(9817), + [sym_list_body] = STATE(10531), + [sym_val_entry] = STATE(9992), + [sym__list_item_expression] = STATE(10082), + [sym__list_item_starts_with_sign] = STATE(10149), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_short_flag] = STATE(10149), + [sym_long_flag] = STATE(10149), + [sym_long_flag_equals_value] = STATE(3793), + [sym__unquoted_in_list] = STATE(9353), + [sym__unquoted_in_list_with_expr] = STATE(10149), + [sym__unquoted_anonymous_prefix] = STATE(9874), [sym_comment] = STATE(817), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_alias] = ACTIONS(1158), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_let_DASHenv] = ACTIONS(1158), - [anon_sym_mut] = ACTIONS(1158), - [anon_sym_const] = ACTIONS(1158), - [sym_cmd_identifier] = ACTIONS(1158), - [anon_sym_def] = ACTIONS(1158), - [anon_sym_export_DASHenv] = ACTIONS(1158), - [anon_sym_extern] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_use] = ACTIONS(1158), - [anon_sym_LPAREN] = ACTIONS(1158), - [anon_sym_DOLLAR] = ACTIONS(1158), - [anon_sym_error] = ACTIONS(1158), - [anon_sym_list] = ACTIONS(1158), - [anon_sym_GT] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_break] = ACTIONS(1158), - [anon_sym_continue] = ACTIONS(1158), - [anon_sym_for] = ACTIONS(1158), - [anon_sym_in] = ACTIONS(1158), - [anon_sym_loop] = ACTIONS(1158), - [anon_sym_make] = ACTIONS(1158), - [anon_sym_while] = ACTIONS(1158), - [anon_sym_do] = ACTIONS(1158), - [anon_sym_if] = ACTIONS(1158), - [anon_sym_else] = ACTIONS(1158), - [anon_sym_match] = ACTIONS(1158), - [anon_sym_RBRACE] = ACTIONS(1158), - [anon_sym_try] = ACTIONS(1158), - [anon_sym_catch] = ACTIONS(1158), - [anon_sym_return] = ACTIONS(1158), - [anon_sym_source] = ACTIONS(1158), - [anon_sym_source_DASHenv] = ACTIONS(1158), - [anon_sym_register] = ACTIONS(1158), - [anon_sym_hide] = ACTIONS(1158), - [anon_sym_hide_DASHenv] = ACTIONS(1158), - [anon_sym_overlay] = ACTIONS(1158), - [anon_sym_new] = ACTIONS(1158), - [anon_sym_as] = ACTIONS(1158), - [anon_sym_STAR] = ACTIONS(1158), - [anon_sym_STAR_STAR] = ACTIONS(1158), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_SLASH] = ACTIONS(1158), - [anon_sym_mod] = ACTIONS(1158), - [anon_sym_SLASH_SLASH] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1158), - [anon_sym_bit_DASHshl] = ACTIONS(1158), - [anon_sym_bit_DASHshr] = ACTIONS(1158), - [anon_sym_EQ_EQ] = ACTIONS(1158), - [anon_sym_BANG_EQ] = ACTIONS(1158), - [anon_sym_LT2] = ACTIONS(1158), - [anon_sym_LT_EQ] = ACTIONS(1158), - [anon_sym_GT_EQ] = ACTIONS(1158), - [anon_sym_not_DASHin] = ACTIONS(1158), - [anon_sym_starts_DASHwith] = ACTIONS(1158), - [anon_sym_ends_DASHwith] = ACTIONS(1158), - [anon_sym_EQ_TILDE] = ACTIONS(1158), - [anon_sym_BANG_TILDE] = ACTIONS(1158), - [anon_sym_bit_DASHand] = ACTIONS(1158), - [anon_sym_bit_DASHxor] = ACTIONS(1158), - [anon_sym_bit_DASHor] = ACTIONS(1158), - [anon_sym_and] = ACTIONS(1158), - [anon_sym_xor] = ACTIONS(1158), - [anon_sym_or] = ACTIONS(1158), - [anon_sym_DOT_DOT2] = ACTIONS(1640), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1642), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1642), - [aux_sym__val_number_decimal_token1] = ACTIONS(1158), - [aux_sym__val_number_decimal_token2] = ACTIONS(1158), - [anon_sym_DOT2] = ACTIONS(1158), - [aux_sym__val_number_decimal_token3] = ACTIONS(1158), - [aux_sym__val_number_token1] = ACTIONS(1158), - [aux_sym__val_number_token2] = ACTIONS(1158), - [aux_sym__val_number_token3] = ACTIONS(1158), - [aux_sym__val_number_token4] = ACTIONS(1158), - [aux_sym__val_number_token5] = ACTIONS(1158), - [aux_sym__val_number_token6] = ACTIONS(1158), - [anon_sym_DQUOTE] = ACTIONS(1158), - [sym__str_single_quotes] = ACTIONS(1158), - [sym__str_back_ticks] = ACTIONS(1158), - [sym__entry_separator] = ACTIONS(1160), - [aux_sym__record_key_token2] = ACTIONS(1158), - [anon_sym_POUND] = ACTIONS(113), + [aux_sym_list_body_repeat1] = STATE(851), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_RBRACK] = ACTIONS(2033), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1734), + [anon_sym_DOT_DOT_LT] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [aux_sym__val_number_decimal_token1] = ACTIONS(1740), + [aux_sym__val_number_decimal_token2] = ACTIONS(1742), + [anon_sym_DOT2] = ACTIONS(1744), + [aux_sym__val_number_decimal_token3] = ACTIONS(1746), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [aux_sym__val_number_token4] = ACTIONS(1750), + [aux_sym__val_number_token5] = ACTIONS(1750), + [aux_sym__val_number_token6] = ACTIONS(1750), + [anon_sym_0b] = ACTIONS(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(3), }, [818] = { - [sym_cell_path] = STATE(911), - [sym_path] = STATE(826), + [sym__ctrl_expression] = STATE(9906), + [sym_ctrl_do] = STATE(8737), + [sym_ctrl_if] = STATE(8737), + [sym_ctrl_match] = STATE(8737), + [sym_ctrl_try] = STATE(8737), + [sym_ctrl_return] = STATE(8737), + [sym_pipe_element] = STATE(3937), + [sym_where_command] = STATE(9926), + [sym__expression] = STATE(9926), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(4804), + [sym__var] = STATE(4386), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(9926), [sym_comment] = STATE(818), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_alias] = ACTIONS(1190), - [anon_sym_let] = ACTIONS(1190), - [anon_sym_let_DASHenv] = ACTIONS(1190), - [anon_sym_mut] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1190), - [sym_cmd_identifier] = ACTIONS(1190), - [anon_sym_def] = ACTIONS(1190), - [anon_sym_export_DASHenv] = ACTIONS(1190), - [anon_sym_extern] = ACTIONS(1190), - [anon_sym_module] = ACTIONS(1190), - [anon_sym_use] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(1190), - [anon_sym_DOLLAR] = ACTIONS(1190), - [anon_sym_error] = ACTIONS(1190), - [anon_sym_list] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1190), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_in] = ACTIONS(1190), - [anon_sym_loop] = ACTIONS(1190), - [anon_sym_make] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [anon_sym_do] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_else] = ACTIONS(1190), - [anon_sym_match] = ACTIONS(1190), - [anon_sym_RBRACE] = ACTIONS(1190), - [anon_sym_try] = ACTIONS(1190), - [anon_sym_catch] = ACTIONS(1190), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_source] = ACTIONS(1190), - [anon_sym_source_DASHenv] = ACTIONS(1190), - [anon_sym_register] = ACTIONS(1190), - [anon_sym_hide] = ACTIONS(1190), - [anon_sym_hide_DASHenv] = ACTIONS(1190), - [anon_sym_overlay] = ACTIONS(1190), - [anon_sym_new] = ACTIONS(1190), - [anon_sym_as] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1190), - [anon_sym_STAR_STAR] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1190), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_mod] = ACTIONS(1190), - [anon_sym_SLASH_SLASH] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_bit_DASHshl] = ACTIONS(1190), - [anon_sym_bit_DASHshr] = ACTIONS(1190), - [anon_sym_EQ_EQ] = ACTIONS(1190), - [anon_sym_BANG_EQ] = ACTIONS(1190), - [anon_sym_LT2] = ACTIONS(1190), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_not_DASHin] = ACTIONS(1190), - [anon_sym_starts_DASHwith] = ACTIONS(1190), - [anon_sym_ends_DASHwith] = ACTIONS(1190), - [anon_sym_EQ_TILDE] = ACTIONS(1190), - [anon_sym_BANG_TILDE] = ACTIONS(1190), - [anon_sym_bit_DASHand] = ACTIONS(1190), - [anon_sym_bit_DASHxor] = ACTIONS(1190), - [anon_sym_bit_DASHor] = ACTIONS(1190), - [anon_sym_and] = ACTIONS(1190), - [anon_sym_xor] = ACTIONS(1190), - [anon_sym_or] = ACTIONS(1190), - [anon_sym_DOT] = ACTIONS(1644), - [aux_sym__val_number_decimal_token1] = ACTIONS(1190), - [aux_sym__val_number_decimal_token2] = ACTIONS(1190), - [anon_sym_DOT2] = ACTIONS(1190), - [aux_sym__val_number_decimal_token3] = ACTIONS(1190), - [aux_sym__val_number_token1] = ACTIONS(1190), - [aux_sym__val_number_token2] = ACTIONS(1190), - [aux_sym__val_number_token3] = ACTIONS(1190), - [aux_sym__val_number_token4] = ACTIONS(1190), - [aux_sym__val_number_token5] = ACTIONS(1190), - [aux_sym__val_number_token6] = ACTIONS(1190), - [anon_sym_DQUOTE] = ACTIONS(1190), - [sym__str_single_quotes] = ACTIONS(1190), - [sym__str_back_ticks] = ACTIONS(1190), - [sym__entry_separator] = ACTIONS(1192), - [aux_sym__record_key_token2] = ACTIONS(1190), - [anon_sym_POUND] = ACTIONS(113), + [aux_sym_pipeline_repeat1] = STATE(818), + [sym_cmd_identifier] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2038), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_DOLLAR] = ACTIONS(2044), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_break] = ACTIONS(2050), + [anon_sym_continue] = ACTIONS(2053), + [anon_sym_do] = ACTIONS(2056), + [anon_sym_if] = ACTIONS(2059), + [anon_sym_match] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2065), + [anon_sym_DOT_DOT] = ACTIONS(2068), + [anon_sym_try] = ACTIONS(2071), + [anon_sym_return] = ACTIONS(2074), + [anon_sym_where] = ACTIONS(2077), + [anon_sym_not] = ACTIONS(2080), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2083), + [anon_sym_DOT_DOT_LT] = ACTIONS(2083), + [anon_sym_null] = ACTIONS(2086), + [anon_sym_true] = ACTIONS(2089), + [anon_sym_false] = ACTIONS(2089), + [aux_sym__val_number_decimal_token1] = ACTIONS(2092), + [aux_sym__val_number_decimal_token2] = ACTIONS(2095), + [anon_sym_DOT2] = ACTIONS(2098), + [aux_sym__val_number_decimal_token3] = ACTIONS(2101), + [aux_sym__val_number_token1] = ACTIONS(2104), + [aux_sym__val_number_token2] = ACTIONS(2104), + [aux_sym__val_number_token3] = ACTIONS(2104), + [aux_sym__val_number_token4] = ACTIONS(2107), + [aux_sym__val_number_token5] = ACTIONS(2104), + [aux_sym__val_number_token6] = ACTIONS(2107), + [anon_sym_0b] = ACTIONS(2110), + [anon_sym_0o] = ACTIONS(2113), + [anon_sym_0x] = ACTIONS(2113), + [sym_val_date] = ACTIONS(2116), + [anon_sym_DQUOTE] = ACTIONS(2119), + [sym__str_single_quotes] = ACTIONS(2122), + [sym__str_back_ticks] = ACTIONS(2122), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2125), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2128), + [anon_sym_CARET] = ACTIONS(2131), + [anon_sym_POUND] = ACTIONS(3), }, [819] = { - [sym_cell_path] = STATE(889), - [sym_path] = STATE(826), + [sym__expr_parenthesized_immediate] = STATE(1600), + [sym__immediate_decimal] = STATE(1079), + [sym_val_variable] = STATE(1600), + [sym__var] = STATE(1105), [sym_comment] = STATE(819), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_alias] = ACTIONS(1148), - [anon_sym_let] = ACTIONS(1148), - [anon_sym_let_DASHenv] = ACTIONS(1148), - [anon_sym_mut] = ACTIONS(1148), - [anon_sym_const] = ACTIONS(1148), - [sym_cmd_identifier] = ACTIONS(1148), - [anon_sym_def] = ACTIONS(1148), - [anon_sym_export_DASHenv] = ACTIONS(1148), - [anon_sym_extern] = ACTIONS(1148), - [anon_sym_module] = ACTIONS(1148), - [anon_sym_use] = ACTIONS(1148), - [anon_sym_LPAREN] = ACTIONS(1148), - [anon_sym_DOLLAR] = ACTIONS(1148), - [anon_sym_error] = ACTIONS(1148), - [anon_sym_list] = ACTIONS(1148), - [anon_sym_GT] = ACTIONS(1148), - [anon_sym_DASH] = ACTIONS(1148), - [anon_sym_break] = ACTIONS(1148), - [anon_sym_continue] = ACTIONS(1148), - [anon_sym_for] = ACTIONS(1148), - [anon_sym_in] = ACTIONS(1148), - [anon_sym_loop] = ACTIONS(1148), - [anon_sym_make] = ACTIONS(1148), - [anon_sym_while] = ACTIONS(1148), - [anon_sym_do] = ACTIONS(1148), - [anon_sym_if] = ACTIONS(1148), - [anon_sym_else] = ACTIONS(1148), - [anon_sym_match] = ACTIONS(1148), - [anon_sym_RBRACE] = ACTIONS(1148), - [anon_sym_try] = ACTIONS(1148), - [anon_sym_catch] = ACTIONS(1148), - [anon_sym_return] = ACTIONS(1148), - [anon_sym_source] = ACTIONS(1148), - [anon_sym_source_DASHenv] = ACTIONS(1148), - [anon_sym_register] = ACTIONS(1148), - [anon_sym_hide] = ACTIONS(1148), - [anon_sym_hide_DASHenv] = ACTIONS(1148), - [anon_sym_overlay] = ACTIONS(1148), - [anon_sym_new] = ACTIONS(1148), - [anon_sym_as] = ACTIONS(1148), - [anon_sym_STAR] = ACTIONS(1148), - [anon_sym_STAR_STAR] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_SLASH] = ACTIONS(1148), - [anon_sym_mod] = ACTIONS(1148), - [anon_sym_SLASH_SLASH] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1148), - [anon_sym_bit_DASHshl] = ACTIONS(1148), - [anon_sym_bit_DASHshr] = ACTIONS(1148), - [anon_sym_EQ_EQ] = ACTIONS(1148), - [anon_sym_BANG_EQ] = ACTIONS(1148), - [anon_sym_LT2] = ACTIONS(1148), - [anon_sym_LT_EQ] = ACTIONS(1148), - [anon_sym_GT_EQ] = ACTIONS(1148), - [anon_sym_not_DASHin] = ACTIONS(1148), - [anon_sym_starts_DASHwith] = ACTIONS(1148), - [anon_sym_ends_DASHwith] = ACTIONS(1148), - [anon_sym_EQ_TILDE] = ACTIONS(1148), - [anon_sym_BANG_TILDE] = ACTIONS(1148), - [anon_sym_bit_DASHand] = ACTIONS(1148), - [anon_sym_bit_DASHxor] = ACTIONS(1148), - [anon_sym_bit_DASHor] = ACTIONS(1148), - [anon_sym_and] = ACTIONS(1148), - [anon_sym_xor] = ACTIONS(1148), - [anon_sym_or] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1644), - [aux_sym__val_number_decimal_token1] = ACTIONS(1148), - [aux_sym__val_number_decimal_token2] = ACTIONS(1148), - [anon_sym_DOT2] = ACTIONS(1148), - [aux_sym__val_number_decimal_token3] = ACTIONS(1148), - [aux_sym__val_number_token1] = ACTIONS(1148), - [aux_sym__val_number_token2] = ACTIONS(1148), - [aux_sym__val_number_token3] = ACTIONS(1148), - [aux_sym__val_number_token4] = ACTIONS(1148), - [aux_sym__val_number_token5] = ACTIONS(1148), - [aux_sym__val_number_token6] = ACTIONS(1148), - [anon_sym_DQUOTE] = ACTIONS(1148), - [sym__str_single_quotes] = ACTIONS(1148), - [sym__str_back_ticks] = ACTIONS(1148), - [sym__entry_separator] = ACTIONS(1150), - [aux_sym__record_key_token2] = ACTIONS(1148), + [anon_sym_export] = ACTIONS(1882), + [anon_sym_alias] = ACTIONS(1882), + [anon_sym_let] = ACTIONS(1882), + [anon_sym_let_DASHenv] = ACTIONS(1882), + [anon_sym_mut] = ACTIONS(1882), + [anon_sym_const] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1882), + [sym_cmd_identifier] = ACTIONS(1882), + [anon_sym_LF] = ACTIONS(1884), + [anon_sym_def] = ACTIONS(1882), + [anon_sym_export_DASHenv] = ACTIONS(1882), + [anon_sym_extern] = ACTIONS(1882), + [anon_sym_module] = ACTIONS(1882), + [anon_sym_use] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1882), + [anon_sym_LPAREN] = ACTIONS(1882), + [anon_sym_RPAREN] = ACTIONS(1882), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_error] = ACTIONS(1882), + [anon_sym_DASH_DASH] = ACTIONS(1882), + [anon_sym_DASH] = ACTIONS(1882), + [anon_sym_break] = ACTIONS(1882), + [anon_sym_continue] = ACTIONS(1882), + [anon_sym_for] = ACTIONS(1882), + [anon_sym_loop] = ACTIONS(1882), + [anon_sym_while] = ACTIONS(1882), + [anon_sym_do] = ACTIONS(1882), + [anon_sym_if] = ACTIONS(1882), + [anon_sym_match] = ACTIONS(1882), + [anon_sym_LBRACE] = ACTIONS(1882), + [anon_sym_RBRACE] = ACTIONS(1882), + [anon_sym_DOT_DOT] = ACTIONS(1882), + [anon_sym_try] = ACTIONS(1882), + [anon_sym_return] = ACTIONS(1882), + [anon_sym_source] = ACTIONS(1882), + [anon_sym_source_DASHenv] = ACTIONS(1882), + [anon_sym_register] = ACTIONS(1882), + [anon_sym_hide] = ACTIONS(1882), + [anon_sym_hide_DASHenv] = ACTIONS(1882), + [anon_sym_overlay] = ACTIONS(1882), + [anon_sym_as] = ACTIONS(1882), + [anon_sym_where] = ACTIONS(1882), + [anon_sym_not] = ACTIONS(1882), + [anon_sym_LPAREN2] = ACTIONS(1868), + [anon_sym_DOT] = ACTIONS(2023), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1882), + [anon_sym_DOT_DOT_LT] = ACTIONS(1882), + [aux_sym__immediate_decimal_token1] = ACTIONS(2025), + [aux_sym__immediate_decimal_token3] = ACTIONS(2025), + [aux_sym__immediate_decimal_token4] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(1882), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [aux_sym__val_number_decimal_token1] = ACTIONS(1882), + [aux_sym__val_number_decimal_token2] = ACTIONS(1882), + [anon_sym_DOT2] = ACTIONS(1882), + [aux_sym__val_number_decimal_token3] = ACTIONS(1882), + [aux_sym__val_number_token1] = ACTIONS(1882), + [aux_sym__val_number_token2] = ACTIONS(1882), + [aux_sym__val_number_token3] = ACTIONS(1882), + [aux_sym__val_number_token4] = ACTIONS(1882), + [aux_sym__val_number_token5] = ACTIONS(1882), + [aux_sym__val_number_token6] = ACTIONS(1882), + [anon_sym_0b] = ACTIONS(1882), + [anon_sym_0o] = ACTIONS(1882), + [anon_sym_0x] = ACTIONS(1882), + [sym_val_date] = ACTIONS(1882), + [anon_sym_DQUOTE] = ACTIONS(1882), + [sym__str_single_quotes] = ACTIONS(1882), + [sym__str_back_ticks] = ACTIONS(1882), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1882), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1882), + [anon_sym_CARET] = ACTIONS(1882), + [aux_sym_unquoted_token2] = ACTIONS(1886), [anon_sym_POUND] = ACTIONS(113), }, [820] = { - [sym_cell_path] = STATE(942), - [sym_path] = STATE(826), + [sym__expr_unary_minus] = STATE(9980), + [sym_expr_parenthesized] = STATE(8494), + [sym_val_range] = STATE(9990), + [sym__val_range] = STATE(10001), + [sym__val_range_with_end] = STATE(10049), + [sym__value] = STATE(9990), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(9118), + [sym_val_variable] = STATE(5224), + [sym__var] = STATE(4556), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(7035), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(9899), + [sym_list_body] = STATE(10811), + [sym_val_entry] = STATE(9992), + [sym__list_item_expression] = STATE(10082), + [sym__list_item_starts_with_sign] = STATE(10149), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_short_flag] = STATE(10149), + [sym_long_flag] = STATE(10149), + [sym_long_flag_equals_value] = STATE(3793), + [sym__unquoted_in_list] = STATE(9353), + [sym__unquoted_in_list_with_expr] = STATE(10149), + [sym__unquoted_anonymous_prefix] = STATE(9874), [sym_comment] = STATE(820), - [anon_sym_export] = ACTIONS(1179), - [anon_sym_alias] = ACTIONS(1179), - [anon_sym_let] = ACTIONS(1179), - [anon_sym_let_DASHenv] = ACTIONS(1179), - [anon_sym_mut] = ACTIONS(1179), - [anon_sym_const] = ACTIONS(1179), - [sym_cmd_identifier] = ACTIONS(1179), - [anon_sym_def] = ACTIONS(1179), - [anon_sym_export_DASHenv] = ACTIONS(1179), - [anon_sym_extern] = ACTIONS(1179), - [anon_sym_module] = ACTIONS(1179), - [anon_sym_use] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1179), - [anon_sym_DOLLAR] = ACTIONS(1179), - [anon_sym_error] = ACTIONS(1179), - [anon_sym_list] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_DASH] = ACTIONS(1179), - [anon_sym_break] = ACTIONS(1179), - [anon_sym_continue] = ACTIONS(1179), - [anon_sym_for] = ACTIONS(1179), - [anon_sym_in] = ACTIONS(1179), - [anon_sym_loop] = ACTIONS(1179), - [anon_sym_make] = ACTIONS(1179), - [anon_sym_while] = ACTIONS(1179), - [anon_sym_do] = ACTIONS(1179), - [anon_sym_if] = ACTIONS(1179), - [anon_sym_else] = ACTIONS(1179), - [anon_sym_match] = ACTIONS(1179), - [anon_sym_RBRACE] = ACTIONS(1179), - [anon_sym_try] = ACTIONS(1179), - [anon_sym_catch] = ACTIONS(1179), - [anon_sym_return] = ACTIONS(1179), - [anon_sym_source] = ACTIONS(1179), - [anon_sym_source_DASHenv] = ACTIONS(1179), - [anon_sym_register] = ACTIONS(1179), - [anon_sym_hide] = ACTIONS(1179), - [anon_sym_hide_DASHenv] = ACTIONS(1179), - [anon_sym_overlay] = ACTIONS(1179), - [anon_sym_new] = ACTIONS(1179), - [anon_sym_as] = ACTIONS(1179), - [anon_sym_STAR] = ACTIONS(1179), - [anon_sym_STAR_STAR] = ACTIONS(1179), - [anon_sym_PLUS_PLUS] = ACTIONS(1179), - [anon_sym_SLASH] = ACTIONS(1179), - [anon_sym_mod] = ACTIONS(1179), - [anon_sym_SLASH_SLASH] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1179), - [anon_sym_bit_DASHshl] = ACTIONS(1179), - [anon_sym_bit_DASHshr] = ACTIONS(1179), - [anon_sym_EQ_EQ] = ACTIONS(1179), - [anon_sym_BANG_EQ] = ACTIONS(1179), - [anon_sym_LT2] = ACTIONS(1179), - [anon_sym_LT_EQ] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(1179), - [anon_sym_not_DASHin] = ACTIONS(1179), - [anon_sym_starts_DASHwith] = ACTIONS(1179), - [anon_sym_ends_DASHwith] = ACTIONS(1179), - [anon_sym_EQ_TILDE] = ACTIONS(1179), - [anon_sym_BANG_TILDE] = ACTIONS(1179), - [anon_sym_bit_DASHand] = ACTIONS(1179), - [anon_sym_bit_DASHxor] = ACTIONS(1179), - [anon_sym_bit_DASHor] = ACTIONS(1179), - [anon_sym_and] = ACTIONS(1179), - [anon_sym_xor] = ACTIONS(1179), - [anon_sym_or] = ACTIONS(1179), - [anon_sym_DOT] = ACTIONS(1644), - [aux_sym__val_number_decimal_token1] = ACTIONS(1179), - [aux_sym__val_number_decimal_token2] = ACTIONS(1179), - [anon_sym_DOT2] = ACTIONS(1179), - [aux_sym__val_number_decimal_token3] = ACTIONS(1179), - [aux_sym__val_number_token1] = ACTIONS(1179), - [aux_sym__val_number_token2] = ACTIONS(1179), - [aux_sym__val_number_token3] = ACTIONS(1179), - [aux_sym__val_number_token4] = ACTIONS(1179), - [aux_sym__val_number_token5] = ACTIONS(1179), - [aux_sym__val_number_token6] = ACTIONS(1179), - [anon_sym_DQUOTE] = ACTIONS(1179), - [sym__str_single_quotes] = ACTIONS(1179), - [sym__str_back_ticks] = ACTIONS(1179), - [sym__entry_separator] = ACTIONS(1181), - [aux_sym__record_key_token2] = ACTIONS(1179), - [anon_sym_POUND] = ACTIONS(113), + [aux_sym_list_body_repeat1] = STATE(851), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_RBRACK] = ACTIONS(2134), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1734), + [anon_sym_DOT_DOT_LT] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [aux_sym__val_number_decimal_token1] = ACTIONS(1740), + [aux_sym__val_number_decimal_token2] = ACTIONS(1742), + [anon_sym_DOT2] = ACTIONS(1744), + [aux_sym__val_number_decimal_token3] = ACTIONS(1746), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [aux_sym__val_number_token4] = ACTIONS(1750), + [aux_sym__val_number_token5] = ACTIONS(1750), + [aux_sym__val_number_token6] = ACTIONS(1750), + [anon_sym_0b] = ACTIONS(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(3), }, [821] = { - [sym_cell_path] = STATE(892), - [sym_path] = STATE(826), + [sym__expr_parenthesized_immediate] = STATE(1570), + [sym__immediate_decimal] = STATE(1597), + [sym_val_variable] = STATE(1570), + [sym__var] = STATE(1105), [sym_comment] = STATE(821), - [anon_sym_export] = ACTIONS(995), - [anon_sym_alias] = ACTIONS(995), - [anon_sym_let] = ACTIONS(995), - [anon_sym_let_DASHenv] = ACTIONS(995), - [anon_sym_mut] = ACTIONS(995), - [anon_sym_const] = ACTIONS(995), - [sym_cmd_identifier] = ACTIONS(995), - [anon_sym_def] = ACTIONS(995), - [anon_sym_export_DASHenv] = ACTIONS(995), - [anon_sym_extern] = ACTIONS(995), - [anon_sym_module] = ACTIONS(995), - [anon_sym_use] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_DOLLAR] = ACTIONS(995), - [anon_sym_error] = ACTIONS(995), - [anon_sym_list] = ACTIONS(995), - [anon_sym_GT] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_break] = ACTIONS(995), - [anon_sym_continue] = ACTIONS(995), - [anon_sym_for] = ACTIONS(995), - [anon_sym_in] = ACTIONS(995), - [anon_sym_loop] = ACTIONS(995), - [anon_sym_make] = ACTIONS(995), - [anon_sym_while] = ACTIONS(995), - [anon_sym_do] = ACTIONS(995), - [anon_sym_if] = ACTIONS(995), - [anon_sym_else] = ACTIONS(995), - [anon_sym_match] = ACTIONS(995), - [anon_sym_RBRACE] = ACTIONS(995), - [anon_sym_try] = ACTIONS(995), - [anon_sym_catch] = ACTIONS(995), - [anon_sym_return] = ACTIONS(995), - [anon_sym_source] = ACTIONS(995), - [anon_sym_source_DASHenv] = ACTIONS(995), - [anon_sym_register] = ACTIONS(995), - [anon_sym_hide] = ACTIONS(995), - [anon_sym_hide_DASHenv] = ACTIONS(995), - [anon_sym_overlay] = ACTIONS(995), - [anon_sym_new] = ACTIONS(995), - [anon_sym_as] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_STAR_STAR] = ACTIONS(995), - [anon_sym_PLUS_PLUS] = ACTIONS(995), - [anon_sym_SLASH] = ACTIONS(995), - [anon_sym_mod] = ACTIONS(995), - [anon_sym_SLASH_SLASH] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_bit_DASHshl] = ACTIONS(995), - [anon_sym_bit_DASHshr] = ACTIONS(995), - [anon_sym_EQ_EQ] = ACTIONS(995), - [anon_sym_BANG_EQ] = ACTIONS(995), - [anon_sym_LT2] = ACTIONS(995), - [anon_sym_LT_EQ] = ACTIONS(995), - [anon_sym_GT_EQ] = ACTIONS(995), - [anon_sym_not_DASHin] = ACTIONS(995), - [anon_sym_starts_DASHwith] = ACTIONS(995), - [anon_sym_ends_DASHwith] = ACTIONS(995), - [anon_sym_EQ_TILDE] = ACTIONS(995), - [anon_sym_BANG_TILDE] = ACTIONS(995), - [anon_sym_bit_DASHand] = ACTIONS(995), - [anon_sym_bit_DASHxor] = ACTIONS(995), - [anon_sym_bit_DASHor] = ACTIONS(995), - [anon_sym_and] = ACTIONS(995), - [anon_sym_xor] = ACTIONS(995), - [anon_sym_or] = ACTIONS(995), - [anon_sym_DOT] = ACTIONS(1644), - [aux_sym__val_number_decimal_token1] = ACTIONS(995), - [aux_sym__val_number_decimal_token2] = ACTIONS(995), - [anon_sym_DOT2] = ACTIONS(995), - [aux_sym__val_number_decimal_token3] = ACTIONS(995), - [aux_sym__val_number_token1] = ACTIONS(995), - [aux_sym__val_number_token2] = ACTIONS(995), - [aux_sym__val_number_token3] = ACTIONS(995), - [aux_sym__val_number_token4] = ACTIONS(995), - [aux_sym__val_number_token5] = ACTIONS(995), - [aux_sym__val_number_token6] = ACTIONS(995), - [anon_sym_DQUOTE] = ACTIONS(995), - [sym__str_single_quotes] = ACTIONS(995), - [sym__str_back_ticks] = ACTIONS(995), - [sym__entry_separator] = ACTIONS(997), - [aux_sym__record_key_token2] = ACTIONS(995), + [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), + [anon_sym_SEMI] = ACTIONS(2136), + [sym_cmd_identifier] = ACTIONS(2136), + [anon_sym_LF] = ACTIONS(2138), + [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_LBRACK] = ACTIONS(2136), + [anon_sym_LPAREN] = ACTIONS(2136), + [anon_sym_RPAREN] = ACTIONS(2136), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_error] = ACTIONS(2136), + [anon_sym_DASH_DASH] = ACTIONS(2136), + [anon_sym_DASH] = ACTIONS(2136), + [anon_sym_break] = ACTIONS(2136), + [anon_sym_continue] = ACTIONS(2136), + [anon_sym_for] = ACTIONS(2136), + [anon_sym_loop] = ACTIONS(2136), + [anon_sym_while] = ACTIONS(2136), + [anon_sym_do] = ACTIONS(2136), + [anon_sym_if] = ACTIONS(2136), + [anon_sym_match] = ACTIONS(2136), + [anon_sym_LBRACE] = ACTIONS(2136), + [anon_sym_RBRACE] = ACTIONS(2136), + [anon_sym_DOT_DOT] = ACTIONS(2136), + [anon_sym_try] = 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_where] = ACTIONS(2136), + [anon_sym_not] = ACTIONS(2136), + [anon_sym_LPAREN2] = ACTIONS(1868), + [anon_sym_DOT] = ACTIONS(2140), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2136), + [anon_sym_DOT_DOT_LT] = ACTIONS(2136), + [aux_sym__immediate_decimal_token1] = ACTIONS(2142), + [aux_sym__immediate_decimal_token3] = ACTIONS(2142), + [aux_sym__immediate_decimal_token4] = ACTIONS(2144), + [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), + [anon_sym_DOT2] = ACTIONS(2136), + [aux_sym__val_number_decimal_token3] = 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(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_CARET] = ACTIONS(2136), [anon_sym_POUND] = ACTIONS(113), }, [822] = { - [sym_cell_path] = STATE(882), - [sym_path] = STATE(826), + [sym__expr_parenthesized_immediate] = STATE(1598), + [sym__immediate_decimal] = STATE(1599), + [sym_val_variable] = STATE(1598), + [sym__var] = STATE(1105), [sym_comment] = STATE(822), - [anon_sym_export] = ACTIONS(1203), - [anon_sym_alias] = ACTIONS(1203), - [anon_sym_let] = ACTIONS(1203), - [anon_sym_let_DASHenv] = ACTIONS(1203), - [anon_sym_mut] = ACTIONS(1203), - [anon_sym_const] = ACTIONS(1203), - [sym_cmd_identifier] = ACTIONS(1203), - [anon_sym_def] = ACTIONS(1203), - [anon_sym_export_DASHenv] = ACTIONS(1203), - [anon_sym_extern] = ACTIONS(1203), - [anon_sym_module] = ACTIONS(1203), - [anon_sym_use] = ACTIONS(1203), - [anon_sym_LPAREN] = ACTIONS(1203), - [anon_sym_DOLLAR] = ACTIONS(1203), - [anon_sym_error] = ACTIONS(1203), - [anon_sym_list] = ACTIONS(1203), - [anon_sym_GT] = ACTIONS(1203), - [anon_sym_DASH] = ACTIONS(1203), - [anon_sym_break] = ACTIONS(1203), - [anon_sym_continue] = ACTIONS(1203), - [anon_sym_for] = ACTIONS(1203), - [anon_sym_in] = ACTIONS(1203), - [anon_sym_loop] = ACTIONS(1203), - [anon_sym_make] = ACTIONS(1203), - [anon_sym_while] = ACTIONS(1203), - [anon_sym_do] = ACTIONS(1203), - [anon_sym_if] = ACTIONS(1203), - [anon_sym_else] = ACTIONS(1203), - [anon_sym_match] = ACTIONS(1203), - [anon_sym_RBRACE] = ACTIONS(1203), - [anon_sym_try] = ACTIONS(1203), - [anon_sym_catch] = ACTIONS(1203), - [anon_sym_return] = ACTIONS(1203), - [anon_sym_source] = ACTIONS(1203), - [anon_sym_source_DASHenv] = ACTIONS(1203), - [anon_sym_register] = ACTIONS(1203), - [anon_sym_hide] = ACTIONS(1203), - [anon_sym_hide_DASHenv] = ACTIONS(1203), - [anon_sym_overlay] = ACTIONS(1203), - [anon_sym_new] = ACTIONS(1203), - [anon_sym_as] = ACTIONS(1203), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_STAR_STAR] = ACTIONS(1203), - [anon_sym_PLUS_PLUS] = ACTIONS(1203), - [anon_sym_SLASH] = ACTIONS(1203), - [anon_sym_mod] = ACTIONS(1203), - [anon_sym_SLASH_SLASH] = ACTIONS(1203), - [anon_sym_PLUS] = ACTIONS(1203), - [anon_sym_bit_DASHshl] = ACTIONS(1203), - [anon_sym_bit_DASHshr] = ACTIONS(1203), - [anon_sym_EQ_EQ] = ACTIONS(1203), - [anon_sym_BANG_EQ] = ACTIONS(1203), - [anon_sym_LT2] = ACTIONS(1203), - [anon_sym_LT_EQ] = ACTIONS(1203), - [anon_sym_GT_EQ] = ACTIONS(1203), - [anon_sym_not_DASHin] = ACTIONS(1203), - [anon_sym_starts_DASHwith] = ACTIONS(1203), - [anon_sym_ends_DASHwith] = ACTIONS(1203), - [anon_sym_EQ_TILDE] = ACTIONS(1203), - [anon_sym_BANG_TILDE] = ACTIONS(1203), - [anon_sym_bit_DASHand] = ACTIONS(1203), - [anon_sym_bit_DASHxor] = ACTIONS(1203), - [anon_sym_bit_DASHor] = ACTIONS(1203), - [anon_sym_and] = ACTIONS(1203), - [anon_sym_xor] = ACTIONS(1203), - [anon_sym_or] = ACTIONS(1203), - [anon_sym_DOT] = ACTIONS(1644), - [aux_sym__val_number_decimal_token1] = ACTIONS(1203), - [aux_sym__val_number_decimal_token2] = ACTIONS(1203), - [anon_sym_DOT2] = ACTIONS(1203), - [aux_sym__val_number_decimal_token3] = ACTIONS(1203), - [aux_sym__val_number_token1] = ACTIONS(1203), - [aux_sym__val_number_token2] = ACTIONS(1203), - [aux_sym__val_number_token3] = ACTIONS(1203), - [aux_sym__val_number_token4] = ACTIONS(1203), - [aux_sym__val_number_token5] = ACTIONS(1203), - [aux_sym__val_number_token6] = ACTIONS(1203), - [anon_sym_DQUOTE] = ACTIONS(1203), - [sym__str_single_quotes] = ACTIONS(1203), - [sym__str_back_ticks] = ACTIONS(1203), - [sym__entry_separator] = ACTIONS(1205), - [aux_sym__record_key_token2] = ACTIONS(1203), + [anon_sym_export] = ACTIONS(2146), + [anon_sym_alias] = ACTIONS(2146), + [anon_sym_let] = ACTIONS(2146), + [anon_sym_let_DASHenv] = ACTIONS(2146), + [anon_sym_mut] = ACTIONS(2146), + [anon_sym_const] = ACTIONS(2146), + [anon_sym_SEMI] = ACTIONS(2146), + [sym_cmd_identifier] = ACTIONS(2146), + [anon_sym_LF] = ACTIONS(2148), + [anon_sym_def] = ACTIONS(2146), + [anon_sym_export_DASHenv] = ACTIONS(2146), + [anon_sym_extern] = ACTIONS(2146), + [anon_sym_module] = ACTIONS(2146), + [anon_sym_use] = ACTIONS(2146), + [anon_sym_LBRACK] = ACTIONS(2146), + [anon_sym_LPAREN] = ACTIONS(2146), + [anon_sym_RPAREN] = ACTIONS(2146), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_error] = ACTIONS(2146), + [anon_sym_DASH_DASH] = ACTIONS(2146), + [anon_sym_DASH] = ACTIONS(2146), + [anon_sym_break] = ACTIONS(2146), + [anon_sym_continue] = ACTIONS(2146), + [anon_sym_for] = ACTIONS(2146), + [anon_sym_loop] = ACTIONS(2146), + [anon_sym_while] = ACTIONS(2146), + [anon_sym_do] = ACTIONS(2146), + [anon_sym_if] = ACTIONS(2146), + [anon_sym_match] = ACTIONS(2146), + [anon_sym_LBRACE] = ACTIONS(2146), + [anon_sym_RBRACE] = ACTIONS(2146), + [anon_sym_DOT_DOT] = ACTIONS(2146), + [anon_sym_try] = ACTIONS(2146), + [anon_sym_return] = ACTIONS(2146), + [anon_sym_source] = ACTIONS(2146), + [anon_sym_source_DASHenv] = ACTIONS(2146), + [anon_sym_register] = ACTIONS(2146), + [anon_sym_hide] = ACTIONS(2146), + [anon_sym_hide_DASHenv] = ACTIONS(2146), + [anon_sym_overlay] = ACTIONS(2146), + [anon_sym_as] = ACTIONS(2146), + [anon_sym_where] = ACTIONS(2146), + [anon_sym_not] = ACTIONS(2146), + [anon_sym_LPAREN2] = ACTIONS(1868), + [anon_sym_DOT] = ACTIONS(2140), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2146), + [anon_sym_DOT_DOT_LT] = ACTIONS(2146), + [aux_sym__immediate_decimal_token1] = ACTIONS(2142), + [aux_sym__immediate_decimal_token3] = ACTIONS(2142), + [aux_sym__immediate_decimal_token4] = ACTIONS(2144), + [anon_sym_null] = ACTIONS(2146), + [anon_sym_true] = ACTIONS(2146), + [anon_sym_false] = ACTIONS(2146), + [aux_sym__val_number_decimal_token1] = ACTIONS(2146), + [aux_sym__val_number_decimal_token2] = ACTIONS(2146), + [anon_sym_DOT2] = ACTIONS(2146), + [aux_sym__val_number_decimal_token3] = ACTIONS(2146), + [aux_sym__val_number_token1] = ACTIONS(2146), + [aux_sym__val_number_token2] = ACTIONS(2146), + [aux_sym__val_number_token3] = ACTIONS(2146), + [aux_sym__val_number_token4] = ACTIONS(2146), + [aux_sym__val_number_token5] = ACTIONS(2146), + [aux_sym__val_number_token6] = ACTIONS(2146), + [anon_sym_0b] = ACTIONS(2146), + [anon_sym_0o] = ACTIONS(2146), + [anon_sym_0x] = ACTIONS(2146), + [sym_val_date] = ACTIONS(2146), + [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_CARET] = ACTIONS(2146), [anon_sym_POUND] = ACTIONS(113), }, [823] = { - [sym_cell_path] = STATE(887), - [sym_path] = STATE(826), [sym_comment] = STATE(823), - [anon_sym_export] = ACTIONS(1186), - [anon_sym_alias] = ACTIONS(1186), - [anon_sym_let] = ACTIONS(1186), - [anon_sym_let_DASHenv] = ACTIONS(1186), - [anon_sym_mut] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1186), - [sym_cmd_identifier] = ACTIONS(1186), - [anon_sym_def] = ACTIONS(1186), - [anon_sym_export_DASHenv] = ACTIONS(1186), - [anon_sym_extern] = ACTIONS(1186), - [anon_sym_module] = ACTIONS(1186), - [anon_sym_use] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(1186), - [anon_sym_DOLLAR] = ACTIONS(1186), - [anon_sym_error] = ACTIONS(1186), - [anon_sym_list] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1186), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1186), - [anon_sym_in] = ACTIONS(1186), - [anon_sym_loop] = ACTIONS(1186), - [anon_sym_make] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_do] = ACTIONS(1186), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_else] = ACTIONS(1186), - [anon_sym_match] = ACTIONS(1186), - [anon_sym_RBRACE] = ACTIONS(1186), - [anon_sym_try] = ACTIONS(1186), - [anon_sym_catch] = ACTIONS(1186), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_source] = ACTIONS(1186), - [anon_sym_source_DASHenv] = ACTIONS(1186), - [anon_sym_register] = ACTIONS(1186), - [anon_sym_hide] = ACTIONS(1186), - [anon_sym_hide_DASHenv] = ACTIONS(1186), - [anon_sym_overlay] = ACTIONS(1186), - [anon_sym_new] = ACTIONS(1186), - [anon_sym_as] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_STAR_STAR] = ACTIONS(1186), - [anon_sym_PLUS_PLUS] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_mod] = ACTIONS(1186), - [anon_sym_SLASH_SLASH] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_bit_DASHshl] = ACTIONS(1186), - [anon_sym_bit_DASHshr] = ACTIONS(1186), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_LT2] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1186), - [anon_sym_GT_EQ] = ACTIONS(1186), - [anon_sym_not_DASHin] = ACTIONS(1186), - [anon_sym_starts_DASHwith] = ACTIONS(1186), - [anon_sym_ends_DASHwith] = ACTIONS(1186), - [anon_sym_EQ_TILDE] = ACTIONS(1186), - [anon_sym_BANG_TILDE] = ACTIONS(1186), - [anon_sym_bit_DASHand] = ACTIONS(1186), - [anon_sym_bit_DASHxor] = ACTIONS(1186), - [anon_sym_bit_DASHor] = ACTIONS(1186), - [anon_sym_and] = ACTIONS(1186), - [anon_sym_xor] = ACTIONS(1186), - [anon_sym_or] = ACTIONS(1186), - [anon_sym_DOT] = ACTIONS(1644), - [aux_sym__val_number_decimal_token1] = ACTIONS(1186), - [aux_sym__val_number_decimal_token2] = ACTIONS(1186), - [anon_sym_DOT2] = ACTIONS(1186), - [aux_sym__val_number_decimal_token3] = ACTIONS(1186), - [aux_sym__val_number_token1] = ACTIONS(1186), - [aux_sym__val_number_token2] = ACTIONS(1186), - [aux_sym__val_number_token3] = ACTIONS(1186), - [aux_sym__val_number_token4] = ACTIONS(1186), - [aux_sym__val_number_token5] = ACTIONS(1186), - [aux_sym__val_number_token6] = ACTIONS(1186), - [anon_sym_DQUOTE] = ACTIONS(1186), - [sym__str_single_quotes] = ACTIONS(1186), - [sym__str_back_ticks] = ACTIONS(1186), - [sym__entry_separator] = ACTIONS(1188), - [aux_sym__record_key_token2] = ACTIONS(1186), - [anon_sym_POUND] = ACTIONS(113), - }, - [824] = { - [sym_comment] = STATE(824), - [anon_sym_export] = ACTIONS(1168), - [anon_sym_alias] = ACTIONS(1168), - [anon_sym_let] = ACTIONS(1168), - [anon_sym_let_DASHenv] = ACTIONS(1168), - [anon_sym_mut] = ACTIONS(1168), - [anon_sym_const] = ACTIONS(1168), - [sym_cmd_identifier] = ACTIONS(1168), - [anon_sym_def] = ACTIONS(1168), - [anon_sym_export_DASHenv] = ACTIONS(1168), - [anon_sym_extern] = ACTIONS(1168), - [anon_sym_module] = ACTIONS(1168), - [anon_sym_use] = ACTIONS(1168), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_DOLLAR] = ACTIONS(1168), - [anon_sym_error] = ACTIONS(1168), - [anon_sym_list] = ACTIONS(1168), - [anon_sym_GT] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1168), - [anon_sym_break] = ACTIONS(1168), - [anon_sym_continue] = ACTIONS(1168), - [anon_sym_for] = ACTIONS(1168), - [anon_sym_in] = ACTIONS(1168), - [anon_sym_loop] = ACTIONS(1168), - [anon_sym_make] = ACTIONS(1168), - [anon_sym_while] = ACTIONS(1168), - [anon_sym_do] = ACTIONS(1168), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_else] = ACTIONS(1168), - [anon_sym_match] = ACTIONS(1168), - [anon_sym_RBRACE] = ACTIONS(1168), - [anon_sym_try] = ACTIONS(1168), - [anon_sym_catch] = ACTIONS(1168), - [anon_sym_return] = ACTIONS(1168), - [anon_sym_source] = ACTIONS(1168), - [anon_sym_source_DASHenv] = ACTIONS(1168), - [anon_sym_register] = ACTIONS(1168), - [anon_sym_hide] = ACTIONS(1168), - [anon_sym_hide_DASHenv] = ACTIONS(1168), - [anon_sym_overlay] = ACTIONS(1168), - [anon_sym_new] = ACTIONS(1168), - [anon_sym_as] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_STAR_STAR] = ACTIONS(1168), - [anon_sym_PLUS_PLUS] = ACTIONS(1168), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_mod] = ACTIONS(1168), - [anon_sym_SLASH_SLASH] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(1168), - [anon_sym_bit_DASHshl] = ACTIONS(1168), - [anon_sym_bit_DASHshr] = ACTIONS(1168), - [anon_sym_EQ_EQ] = ACTIONS(1168), - [anon_sym_BANG_EQ] = ACTIONS(1168), - [anon_sym_LT2] = ACTIONS(1168), - [anon_sym_LT_EQ] = ACTIONS(1168), - [anon_sym_GT_EQ] = ACTIONS(1168), - [anon_sym_not_DASHin] = ACTIONS(1168), - [anon_sym_starts_DASHwith] = ACTIONS(1168), - [anon_sym_ends_DASHwith] = ACTIONS(1168), - [anon_sym_EQ_TILDE] = ACTIONS(1168), - [anon_sym_BANG_TILDE] = ACTIONS(1168), - [anon_sym_bit_DASHand] = ACTIONS(1168), - [anon_sym_bit_DASHxor] = ACTIONS(1168), - [anon_sym_bit_DASHor] = ACTIONS(1168), - [anon_sym_and] = ACTIONS(1168), - [anon_sym_xor] = ACTIONS(1168), - [anon_sym_or] = ACTIONS(1168), - [anon_sym_DOT_DOT2] = ACTIONS(1168), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1170), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1170), - [aux_sym__val_number_decimal_token1] = ACTIONS(1168), - [aux_sym__val_number_decimal_token2] = ACTIONS(1168), - [anon_sym_DOT2] = ACTIONS(1168), - [aux_sym__val_number_decimal_token3] = ACTIONS(1168), - [aux_sym__val_number_token1] = ACTIONS(1168), - [aux_sym__val_number_token2] = ACTIONS(1168), - [aux_sym__val_number_token3] = ACTIONS(1168), - [aux_sym__val_number_token4] = ACTIONS(1168), - [aux_sym__val_number_token5] = ACTIONS(1168), - [aux_sym__val_number_token6] = ACTIONS(1168), - [anon_sym_DQUOTE] = ACTIONS(1168), - [sym__str_single_quotes] = ACTIONS(1168), - [sym__str_back_ticks] = ACTIONS(1168), - [sym__entry_separator] = ACTIONS(1170), - [aux_sym__record_key_token2] = ACTIONS(1168), - [anon_sym_POUND] = ACTIONS(113), - }, - [825] = { - [sym_cell_path] = STATE(886), - [sym_path] = STATE(826), - [sym_comment] = STATE(825), + [anon_sym_export] = ACTIONS(911), + [anon_sym_alias] = ACTIONS(911), + [anon_sym_let] = ACTIONS(911), + [anon_sym_let_DASHenv] = ACTIONS(911), + [anon_sym_mut] = ACTIONS(911), + [anon_sym_const] = ACTIONS(911), + [anon_sym_SEMI] = ACTIONS(911), + [sym_cmd_identifier] = ACTIONS(911), + [anon_sym_LF] = ACTIONS(913), + [anon_sym_def] = ACTIONS(911), + [anon_sym_export_DASHenv] = ACTIONS(911), + [anon_sym_extern] = ACTIONS(911), + [anon_sym_module] = ACTIONS(911), + [anon_sym_use] = ACTIONS(911), + [anon_sym_LBRACK] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_RPAREN] = ACTIONS(911), + [anon_sym_DOLLAR] = ACTIONS(911), + [anon_sym_error] = ACTIONS(911), + [anon_sym_DASH_DASH] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_break] = ACTIONS(911), + [anon_sym_continue] = ACTIONS(911), + [anon_sym_for] = ACTIONS(911), + [anon_sym_loop] = ACTIONS(911), + [anon_sym_while] = ACTIONS(911), + [anon_sym_do] = ACTIONS(911), + [anon_sym_if] = ACTIONS(911), + [anon_sym_match] = ACTIONS(911), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_RBRACE] = ACTIONS(911), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_try] = ACTIONS(911), + [anon_sym_return] = ACTIONS(911), + [anon_sym_source] = ACTIONS(911), + [anon_sym_source_DASHenv] = ACTIONS(911), + [anon_sym_register] = ACTIONS(911), + [anon_sym_hide] = ACTIONS(911), + [anon_sym_hide_DASHenv] = ACTIONS(911), + [anon_sym_overlay] = ACTIONS(911), + [anon_sym_as] = ACTIONS(911), + [anon_sym_where] = ACTIONS(911), + [anon_sym_not] = ACTIONS(911), + [anon_sym_LPAREN2] = ACTIONS(913), + [anon_sym_DOT_DOT2] = ACTIONS(911), + [anon_sym_DOT] = ACTIONS(2150), + [anon_sym_DOT_DOT_EQ] = ACTIONS(911), + [anon_sym_DOT_DOT_LT] = ACTIONS(911), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(913), + [anon_sym_DOT_DOT_LT2] = ACTIONS(913), + [aux_sym__immediate_decimal_token2] = ACTIONS(2153), + [anon_sym_null] = ACTIONS(911), + [anon_sym_true] = ACTIONS(911), + [anon_sym_false] = ACTIONS(911), + [aux_sym__val_number_decimal_token1] = ACTIONS(911), + [aux_sym__val_number_decimal_token2] = ACTIONS(911), + [anon_sym_DOT2] = ACTIONS(911), + [aux_sym__val_number_decimal_token3] = ACTIONS(911), + [aux_sym__val_number_token1] = ACTIONS(911), + [aux_sym__val_number_token2] = ACTIONS(911), + [aux_sym__val_number_token3] = ACTIONS(911), + [aux_sym__val_number_token4] = ACTIONS(911), + [aux_sym__val_number_token5] = ACTIONS(911), + [aux_sym__val_number_token6] = ACTIONS(911), + [anon_sym_0b] = ACTIONS(911), + [sym_filesize_unit] = ACTIONS(911), + [sym_duration_unit] = ACTIONS(911), + [anon_sym_0o] = ACTIONS(911), + [anon_sym_0x] = ACTIONS(911), + [sym_val_date] = ACTIONS(911), + [anon_sym_DQUOTE] = ACTIONS(911), + [sym__str_single_quotes] = ACTIONS(911), + [sym__str_back_ticks] = ACTIONS(911), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(911), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(911), + [anon_sym_CARET] = ACTIONS(911), + [aux_sym_unquoted_token5] = ACTIONS(911), + [anon_sym_POUND] = ACTIONS(113), + }, + [824] = { + [sym__expr_parenthesized_immediate] = STATE(2054), + [sym__immediate_decimal] = STATE(1274), + [sym_val_variable] = STATE(2054), + [sym__var] = STATE(1191), + [sym_comment] = STATE(824), + [ts_builtin_sym_end] = ACTIONS(922), + [anon_sym_export] = ACTIONS(920), + [anon_sym_alias] = ACTIONS(920), + [anon_sym_let] = ACTIONS(920), + [anon_sym_let_DASHenv] = ACTIONS(920), + [anon_sym_mut] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(920), + [sym_cmd_identifier] = ACTIONS(920), + [anon_sym_LF] = ACTIONS(922), + [anon_sym_def] = ACTIONS(920), + [anon_sym_export_DASHenv] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym_module] = ACTIONS(920), + [anon_sym_use] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(2155), + [anon_sym_error] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_loop] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_match] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_try] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_source] = ACTIONS(920), + [anon_sym_source_DASHenv] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_hide] = ACTIONS(920), + [anon_sym_hide_DASHenv] = ACTIONS(920), + [anon_sym_overlay] = ACTIONS(920), + [anon_sym_as] = ACTIONS(920), + [anon_sym_where] = ACTIONS(920), + [anon_sym_not] = ACTIONS(920), + [anon_sym_LPAREN2] = ACTIONS(2157), + [anon_sym_DOT] = ACTIONS(2159), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [aux_sym__immediate_decimal_token1] = ACTIONS(2161), + [aux_sym__immediate_decimal_token3] = ACTIONS(2161), + [aux_sym__immediate_decimal_token4] = ACTIONS(2163), + [anon_sym_null] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), + [anon_sym_CARET] = ACTIONS(920), + [aux_sym_unquoted_token4] = ACTIONS(1856), + [anon_sym_POUND] = ACTIONS(113), + }, + [825] = { + [sym_comment] = STATE(825), + [anon_sym_LBRACK] = ACTIONS(893), + [anon_sym_COMMA] = ACTIONS(893), + [anon_sym_RBRACK] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(893), + [anon_sym_DOLLAR] = ACTIONS(893), + [anon_sym_GT] = ACTIONS(893), + [anon_sym_DASH_DASH] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_in] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_DOT_DOT] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(893), + [anon_sym_STAR_STAR] = ACTIONS(893), + [anon_sym_PLUS_PLUS] = ACTIONS(893), + [anon_sym_SLASH] = ACTIONS(893), + [anon_sym_mod] = ACTIONS(893), + [anon_sym_SLASH_SLASH] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_bit_DASHshl] = ACTIONS(893), + [anon_sym_bit_DASHshr] = ACTIONS(893), + [anon_sym_EQ_EQ] = ACTIONS(893), + [anon_sym_BANG_EQ] = ACTIONS(893), + [anon_sym_LT2] = ACTIONS(893), + [anon_sym_LT_EQ] = ACTIONS(893), + [anon_sym_GT_EQ] = ACTIONS(893), + [anon_sym_not_DASHin] = ACTIONS(893), + [anon_sym_starts_DASHwith] = ACTIONS(893), + [anon_sym_ends_DASHwith] = ACTIONS(893), + [anon_sym_EQ_TILDE] = ACTIONS(893), + [anon_sym_BANG_TILDE] = ACTIONS(893), + [anon_sym_bit_DASHand] = ACTIONS(893), + [anon_sym_bit_DASHxor] = ACTIONS(893), + [anon_sym_bit_DASHor] = ACTIONS(893), + [anon_sym_and] = ACTIONS(893), + [anon_sym_xor] = ACTIONS(893), + [anon_sym_or] = ACTIONS(893), + [anon_sym_DOT_DOT2] = ACTIONS(893), + [anon_sym_DOT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ] = ACTIONS(893), + [anon_sym_DOT_DOT_LT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), + [anon_sym_DOT_DOT_LT2] = ACTIONS(895), + [aux_sym__immediate_decimal_token1] = ACTIONS(2165), + [aux_sym__immediate_decimal_token2] = ACTIONS(2167), + [anon_sym_null] = ACTIONS(893), + [anon_sym_true] = ACTIONS(893), + [anon_sym_false] = ACTIONS(893), + [aux_sym__val_number_decimal_token1] = ACTIONS(893), + [aux_sym__val_number_decimal_token2] = ACTIONS(893), + [anon_sym_DOT2] = ACTIONS(893), + [aux_sym__val_number_decimal_token3] = ACTIONS(893), + [aux_sym__val_number_token1] = ACTIONS(893), + [aux_sym__val_number_token2] = ACTIONS(893), + [aux_sym__val_number_token3] = ACTIONS(893), + [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(893), + [sym_filesize_unit] = ACTIONS(893), + [sym_duration_unit] = ACTIONS(895), + [anon_sym_0o] = ACTIONS(893), + [anon_sym_0x] = ACTIONS(893), + [sym_val_date] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(893), + [sym__str_single_quotes] = ACTIONS(893), + [sym__str_back_ticks] = ACTIONS(893), + [sym__entry_separator] = ACTIONS(895), + [anon_sym_err_GT] = ACTIONS(893), + [anon_sym_out_GT] = ACTIONS(893), + [anon_sym_e_GT] = ACTIONS(893), + [anon_sym_o_GT] = ACTIONS(893), + [anon_sym_err_PLUSout_GT] = ACTIONS(893), + [anon_sym_out_PLUSerr_GT] = ACTIONS(893), + [anon_sym_o_PLUSe_GT] = ACTIONS(893), + [anon_sym_e_PLUSo_GT] = ACTIONS(893), + [aux_sym_unquoted_token5] = ACTIONS(893), + [aux_sym__unquoted_in_list_token1] = ACTIONS(893), + [anon_sym_POUND] = ACTIONS(113), + }, + [826] = { + [sym_comment] = STATE(826), + [anon_sym_export] = ACTIONS(911), + [anon_sym_alias] = ACTIONS(911), + [anon_sym_let] = ACTIONS(911), + [anon_sym_let_DASHenv] = ACTIONS(911), + [anon_sym_mut] = ACTIONS(911), + [anon_sym_const] = ACTIONS(911), + [anon_sym_SEMI] = ACTIONS(911), + [sym_cmd_identifier] = ACTIONS(911), + [anon_sym_LF] = ACTIONS(913), + [anon_sym_def] = ACTIONS(911), + [anon_sym_export_DASHenv] = ACTIONS(911), + [anon_sym_extern] = ACTIONS(911), + [anon_sym_module] = ACTIONS(911), + [anon_sym_use] = ACTIONS(911), + [anon_sym_LBRACK] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_RPAREN] = ACTIONS(911), + [anon_sym_DOLLAR] = ACTIONS(911), + [anon_sym_error] = ACTIONS(911), + [anon_sym_DASH_DASH] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_break] = ACTIONS(911), + [anon_sym_continue] = ACTIONS(911), + [anon_sym_for] = ACTIONS(911), + [anon_sym_loop] = ACTIONS(911), + [anon_sym_while] = ACTIONS(911), + [anon_sym_do] = ACTIONS(911), + [anon_sym_if] = ACTIONS(911), + [anon_sym_match] = ACTIONS(911), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_RBRACE] = ACTIONS(911), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_try] = ACTIONS(911), + [anon_sym_return] = ACTIONS(911), + [anon_sym_source] = ACTIONS(911), + [anon_sym_source_DASHenv] = ACTIONS(911), + [anon_sym_register] = ACTIONS(911), + [anon_sym_hide] = ACTIONS(911), + [anon_sym_hide_DASHenv] = ACTIONS(911), + [anon_sym_overlay] = ACTIONS(911), + [anon_sym_as] = ACTIONS(911), + [anon_sym_where] = ACTIONS(911), + [anon_sym_not] = ACTIONS(911), + [anon_sym_LPAREN2] = ACTIONS(913), + [anon_sym_DOT_DOT2] = ACTIONS(911), + [anon_sym_DOT] = ACTIONS(911), + [anon_sym_DOT_DOT_EQ] = ACTIONS(911), + [anon_sym_DOT_DOT_LT] = ACTIONS(911), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(913), + [anon_sym_DOT_DOT_LT2] = ACTIONS(913), + [aux_sym__immediate_decimal_token2] = ACTIONS(2153), + [anon_sym_null] = ACTIONS(911), + [anon_sym_true] = ACTIONS(911), + [anon_sym_false] = ACTIONS(911), + [aux_sym__val_number_decimal_token1] = ACTIONS(911), + [aux_sym__val_number_decimal_token2] = ACTIONS(911), + [anon_sym_DOT2] = ACTIONS(911), + [aux_sym__val_number_decimal_token3] = ACTIONS(911), + [aux_sym__val_number_token1] = ACTIONS(911), + [aux_sym__val_number_token2] = ACTIONS(911), + [aux_sym__val_number_token3] = ACTIONS(911), + [aux_sym__val_number_token4] = ACTIONS(911), + [aux_sym__val_number_token5] = ACTIONS(911), + [aux_sym__val_number_token6] = ACTIONS(911), + [anon_sym_0b] = ACTIONS(911), + [sym_filesize_unit] = ACTIONS(911), + [sym_duration_unit] = ACTIONS(911), + [anon_sym_0o] = ACTIONS(911), + [anon_sym_0x] = ACTIONS(911), + [sym_val_date] = ACTIONS(911), + [anon_sym_DQUOTE] = ACTIONS(911), + [sym__str_single_quotes] = ACTIONS(911), + [sym__str_back_ticks] = ACTIONS(911), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(911), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(911), + [anon_sym_CARET] = ACTIONS(911), + [aux_sym_unquoted_token5] = ACTIONS(911), + [anon_sym_POUND] = ACTIONS(113), + }, + [827] = { + [sym__expr_parenthesized_immediate] = STATE(1524), + [sym__immediate_decimal] = STATE(1527), + [sym_val_variable] = STATE(1524), + [sym__var] = STATE(1105), + [sym_comment] = STATE(827), + [anon_sym_export] = ACTIONS(2169), + [anon_sym_alias] = ACTIONS(2169), + [anon_sym_let] = ACTIONS(2169), + [anon_sym_let_DASHenv] = ACTIONS(2169), + [anon_sym_mut] = ACTIONS(2169), + [anon_sym_const] = ACTIONS(2169), + [anon_sym_SEMI] = ACTIONS(2169), + [sym_cmd_identifier] = ACTIONS(2169), + [anon_sym_LF] = ACTIONS(2171), + [anon_sym_def] = ACTIONS(2169), + [anon_sym_export_DASHenv] = ACTIONS(2169), + [anon_sym_extern] = ACTIONS(2169), + [anon_sym_module] = ACTIONS(2169), + [anon_sym_use] = ACTIONS(2169), + [anon_sym_LBRACK] = ACTIONS(2169), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_RPAREN] = ACTIONS(2169), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_error] = ACTIONS(2169), + [anon_sym_DASH_DASH] = ACTIONS(2169), + [anon_sym_DASH] = ACTIONS(2169), + [anon_sym_break] = ACTIONS(2169), + [anon_sym_continue] = ACTIONS(2169), + [anon_sym_for] = ACTIONS(2169), + [anon_sym_loop] = ACTIONS(2169), + [anon_sym_while] = ACTIONS(2169), + [anon_sym_do] = ACTIONS(2169), + [anon_sym_if] = ACTIONS(2169), + [anon_sym_match] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2169), + [anon_sym_RBRACE] = ACTIONS(2169), + [anon_sym_DOT_DOT] = ACTIONS(2169), + [anon_sym_try] = ACTIONS(2169), + [anon_sym_return] = ACTIONS(2169), + [anon_sym_source] = ACTIONS(2169), + [anon_sym_source_DASHenv] = ACTIONS(2169), + [anon_sym_register] = ACTIONS(2169), + [anon_sym_hide] = ACTIONS(2169), + [anon_sym_hide_DASHenv] = ACTIONS(2169), + [anon_sym_overlay] = ACTIONS(2169), + [anon_sym_as] = ACTIONS(2169), + [anon_sym_where] = ACTIONS(2169), + [anon_sym_not] = ACTIONS(2169), + [anon_sym_LPAREN2] = ACTIONS(1868), + [anon_sym_DOT] = ACTIONS(2140), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2169), + [anon_sym_DOT_DOT_LT] = ACTIONS(2169), + [aux_sym__immediate_decimal_token1] = ACTIONS(2142), + [aux_sym__immediate_decimal_token3] = ACTIONS(2142), + [aux_sym__immediate_decimal_token4] = ACTIONS(2144), + [anon_sym_null] = ACTIONS(2169), + [anon_sym_true] = ACTIONS(2169), + [anon_sym_false] = ACTIONS(2169), + [aux_sym__val_number_decimal_token1] = ACTIONS(2169), + [aux_sym__val_number_decimal_token2] = ACTIONS(2169), + [anon_sym_DOT2] = ACTIONS(2169), + [aux_sym__val_number_decimal_token3] = ACTIONS(2169), + [aux_sym__val_number_token1] = ACTIONS(2169), + [aux_sym__val_number_token2] = ACTIONS(2169), + [aux_sym__val_number_token3] = ACTIONS(2169), + [aux_sym__val_number_token4] = ACTIONS(2169), + [aux_sym__val_number_token5] = ACTIONS(2169), + [aux_sym__val_number_token6] = ACTIONS(2169), + [anon_sym_0b] = ACTIONS(2169), + [anon_sym_0o] = ACTIONS(2169), + [anon_sym_0x] = ACTIONS(2169), + [sym_val_date] = ACTIONS(2169), + [anon_sym_DQUOTE] = ACTIONS(2169), + [sym__str_single_quotes] = ACTIONS(2169), + [sym__str_back_ticks] = ACTIONS(2169), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2169), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2169), + [anon_sym_CARET] = ACTIONS(2169), + [anon_sym_POUND] = ACTIONS(113), + }, + [828] = { + [sym__expr_parenthesized_immediate] = STATE(1093), + [sym__immediate_decimal] = STATE(1094), + [sym_val_variable] = STATE(1093), + [sym__var] = STATE(935), + [sym_comment] = STATE(828), + [anon_sym_export] = ACTIONS(2169), + [anon_sym_alias] = ACTIONS(2169), + [anon_sym_let] = ACTIONS(2169), + [anon_sym_let_DASHenv] = ACTIONS(2169), + [anon_sym_mut] = ACTIONS(2169), + [anon_sym_const] = ACTIONS(2169), + [anon_sym_SEMI] = ACTIONS(2169), + [sym_cmd_identifier] = ACTIONS(2169), + [anon_sym_LF] = ACTIONS(2171), + [anon_sym_def] = ACTIONS(2169), + [anon_sym_export_DASHenv] = ACTIONS(2169), + [anon_sym_extern] = ACTIONS(2169), + [anon_sym_module] = ACTIONS(2169), + [anon_sym_use] = ACTIONS(2169), + [anon_sym_LBRACK] = ACTIONS(2169), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_RPAREN] = ACTIONS(2169), + [anon_sym_DOLLAR] = ACTIONS(1696), + [anon_sym_error] = ACTIONS(2169), + [anon_sym_DASH_DASH] = ACTIONS(2169), + [anon_sym_DASH] = ACTIONS(2169), + [anon_sym_break] = ACTIONS(2169), + [anon_sym_continue] = ACTIONS(2169), + [anon_sym_for] = ACTIONS(2169), + [anon_sym_loop] = ACTIONS(2169), + [anon_sym_while] = ACTIONS(2169), + [anon_sym_do] = ACTIONS(2169), + [anon_sym_if] = ACTIONS(2169), + [anon_sym_match] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2169), + [anon_sym_RBRACE] = ACTIONS(2169), + [anon_sym_DOT_DOT] = ACTIONS(2169), + [anon_sym_try] = ACTIONS(2169), + [anon_sym_return] = ACTIONS(2169), + [anon_sym_source] = ACTIONS(2169), + [anon_sym_source_DASHenv] = ACTIONS(2169), + [anon_sym_register] = ACTIONS(2169), + [anon_sym_hide] = ACTIONS(2169), + [anon_sym_hide_DASHenv] = ACTIONS(2169), + [anon_sym_overlay] = ACTIONS(2169), + [anon_sym_as] = ACTIONS(2169), + [anon_sym_where] = ACTIONS(2169), + [anon_sym_not] = ACTIONS(2169), + [anon_sym_LPAREN2] = ACTIONS(1698), + [anon_sym_DOT] = ACTIONS(2173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2169), + [anon_sym_DOT_DOT_LT] = ACTIONS(2169), + [aux_sym__immediate_decimal_token1] = ACTIONS(2175), + [aux_sym__immediate_decimal_token3] = ACTIONS(2175), + [aux_sym__immediate_decimal_token4] = ACTIONS(2177), + [anon_sym_null] = ACTIONS(2169), + [anon_sym_true] = ACTIONS(2169), + [anon_sym_false] = ACTIONS(2169), + [aux_sym__val_number_decimal_token1] = ACTIONS(2169), + [aux_sym__val_number_decimal_token2] = ACTIONS(2169), + [anon_sym_DOT2] = ACTIONS(2169), + [aux_sym__val_number_decimal_token3] = ACTIONS(2169), + [aux_sym__val_number_token1] = ACTIONS(2169), + [aux_sym__val_number_token2] = ACTIONS(2169), + [aux_sym__val_number_token3] = ACTIONS(2169), + [aux_sym__val_number_token4] = ACTIONS(2169), + [aux_sym__val_number_token5] = ACTIONS(2169), + [aux_sym__val_number_token6] = ACTIONS(2169), + [anon_sym_0b] = ACTIONS(2169), + [anon_sym_0o] = ACTIONS(2169), + [anon_sym_0x] = ACTIONS(2169), + [sym_val_date] = ACTIONS(2169), + [anon_sym_DQUOTE] = ACTIONS(2169), + [sym__str_single_quotes] = ACTIONS(2169), + [sym__str_back_ticks] = ACTIONS(2169), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2169), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2169), + [anon_sym_CARET] = ACTIONS(2169), + [anon_sym_POUND] = ACTIONS(113), + }, + [829] = { + [sym_comment] = STATE(829), + [anon_sym_export] = ACTIONS(893), + [anon_sym_alias] = ACTIONS(893), + [anon_sym_let] = ACTIONS(893), + [anon_sym_let_DASHenv] = ACTIONS(893), + [anon_sym_mut] = ACTIONS(893), + [anon_sym_const] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(893), + [sym_cmd_identifier] = ACTIONS(893), + [anon_sym_LF] = ACTIONS(895), + [anon_sym_def] = ACTIONS(893), + [anon_sym_export_DASHenv] = ACTIONS(893), + [anon_sym_extern] = ACTIONS(893), + [anon_sym_module] = ACTIONS(893), + [anon_sym_use] = ACTIONS(893), + [anon_sym_LBRACK] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(893), + [anon_sym_RPAREN] = ACTIONS(893), + [anon_sym_DOLLAR] = ACTIONS(893), + [anon_sym_error] = ACTIONS(893), + [anon_sym_DASH_DASH] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_break] = ACTIONS(893), + [anon_sym_continue] = ACTIONS(893), + [anon_sym_for] = ACTIONS(893), + [anon_sym_loop] = ACTIONS(893), + [anon_sym_while] = ACTIONS(893), + [anon_sym_do] = ACTIONS(893), + [anon_sym_if] = ACTIONS(893), + [anon_sym_match] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(893), + [anon_sym_DOT_DOT] = ACTIONS(893), + [anon_sym_try] = ACTIONS(893), + [anon_sym_return] = ACTIONS(893), + [anon_sym_source] = ACTIONS(893), + [anon_sym_source_DASHenv] = ACTIONS(893), + [anon_sym_register] = ACTIONS(893), + [anon_sym_hide] = ACTIONS(893), + [anon_sym_hide_DASHenv] = ACTIONS(893), + [anon_sym_overlay] = ACTIONS(893), + [anon_sym_as] = ACTIONS(893), + [anon_sym_where] = ACTIONS(893), + [anon_sym_not] = ACTIONS(893), + [anon_sym_LPAREN2] = ACTIONS(895), + [anon_sym_DOT_DOT2] = ACTIONS(893), + [anon_sym_DOT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ] = ACTIONS(893), + [anon_sym_DOT_DOT_LT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), + [anon_sym_DOT_DOT_LT2] = ACTIONS(895), + [aux_sym__immediate_decimal_token2] = ACTIONS(1890), + [anon_sym_null] = ACTIONS(893), + [anon_sym_true] = ACTIONS(893), + [anon_sym_false] = ACTIONS(893), + [aux_sym__val_number_decimal_token1] = ACTIONS(893), + [aux_sym__val_number_decimal_token2] = ACTIONS(893), + [anon_sym_DOT2] = ACTIONS(893), + [aux_sym__val_number_decimal_token3] = ACTIONS(893), + [aux_sym__val_number_token1] = ACTIONS(893), + [aux_sym__val_number_token2] = ACTIONS(893), + [aux_sym__val_number_token3] = ACTIONS(893), + [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(893), + [sym_filesize_unit] = ACTIONS(893), + [sym_duration_unit] = ACTIONS(893), + [anon_sym_0o] = ACTIONS(893), + [anon_sym_0x] = ACTIONS(893), + [sym_val_date] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(893), + [sym__str_single_quotes] = ACTIONS(893), + [sym__str_back_ticks] = ACTIONS(893), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(893), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(893), + [anon_sym_CARET] = ACTIONS(893), + [aux_sym_unquoted_token5] = ACTIONS(893), + [anon_sym_POUND] = ACTIONS(113), + }, + [830] = { + [sym__expr_parenthesized_immediate] = STATE(2054), + [sym__immediate_decimal] = STATE(1362), + [sym_val_variable] = STATE(2054), + [sym__var] = STATE(1191), + [sym_comment] = STATE(830), + [ts_builtin_sym_end] = ACTIONS(922), + [anon_sym_export] = ACTIONS(920), + [anon_sym_alias] = ACTIONS(920), + [anon_sym_let] = ACTIONS(920), + [anon_sym_let_DASHenv] = ACTIONS(920), + [anon_sym_mut] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(920), + [sym_cmd_identifier] = ACTIONS(920), + [anon_sym_LF] = ACTIONS(922), + [anon_sym_def] = ACTIONS(920), + [anon_sym_export_DASHenv] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym_module] = ACTIONS(920), + [anon_sym_use] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(2155), + [anon_sym_error] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_loop] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_match] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_try] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_source] = ACTIONS(920), + [anon_sym_source_DASHenv] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_hide] = ACTIONS(920), + [anon_sym_hide_DASHenv] = ACTIONS(920), + [anon_sym_overlay] = ACTIONS(920), + [anon_sym_as] = ACTIONS(920), + [anon_sym_where] = ACTIONS(920), + [anon_sym_not] = ACTIONS(920), + [anon_sym_LPAREN2] = ACTIONS(2157), + [anon_sym_DOT] = ACTIONS(2179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [aux_sym__immediate_decimal_token1] = ACTIONS(2181), + [aux_sym__immediate_decimal_token3] = ACTIONS(2181), + [aux_sym__immediate_decimal_token4] = ACTIONS(2183), + [anon_sym_null] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), + [anon_sym_CARET] = ACTIONS(920), + [aux_sym_unquoted_token4] = ACTIONS(983), + [anon_sym_POUND] = ACTIONS(113), + }, + [831] = { + [sym_comment] = STATE(831), + [anon_sym_export] = ACTIONS(901), + [anon_sym_alias] = ACTIONS(901), + [anon_sym_let] = ACTIONS(901), + [anon_sym_let_DASHenv] = ACTIONS(901), + [anon_sym_mut] = ACTIONS(901), + [anon_sym_const] = ACTIONS(901), + [anon_sym_SEMI] = ACTIONS(901), + [sym_cmd_identifier] = ACTIONS(901), + [anon_sym_LF] = ACTIONS(903), + [anon_sym_def] = ACTIONS(901), + [anon_sym_export_DASHenv] = ACTIONS(901), + [anon_sym_extern] = ACTIONS(901), + [anon_sym_module] = ACTIONS(901), + [anon_sym_use] = ACTIONS(901), + [anon_sym_LBRACK] = ACTIONS(901), + [anon_sym_LPAREN] = ACTIONS(901), + [anon_sym_RPAREN] = ACTIONS(901), + [anon_sym_DOLLAR] = ACTIONS(901), + [anon_sym_error] = ACTIONS(901), + [anon_sym_DASH_DASH] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_break] = ACTIONS(901), + [anon_sym_continue] = ACTIONS(901), + [anon_sym_for] = ACTIONS(901), + [anon_sym_loop] = ACTIONS(901), + [anon_sym_while] = ACTIONS(901), + [anon_sym_do] = ACTIONS(901), + [anon_sym_if] = ACTIONS(901), + [anon_sym_match] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(901), + [anon_sym_RBRACE] = ACTIONS(901), + [anon_sym_DOT_DOT] = ACTIONS(901), + [anon_sym_try] = ACTIONS(901), + [anon_sym_return] = ACTIONS(901), + [anon_sym_source] = ACTIONS(901), + [anon_sym_source_DASHenv] = ACTIONS(901), + [anon_sym_register] = ACTIONS(901), + [anon_sym_hide] = ACTIONS(901), + [anon_sym_hide_DASHenv] = ACTIONS(901), + [anon_sym_overlay] = ACTIONS(901), + [anon_sym_as] = ACTIONS(901), + [anon_sym_where] = ACTIONS(901), + [anon_sym_not] = ACTIONS(901), + [anon_sym_LPAREN2] = ACTIONS(903), + [anon_sym_DOT_DOT2] = ACTIONS(901), + [anon_sym_DOT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ] = ACTIONS(901), + [anon_sym_DOT_DOT_LT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(903), + [anon_sym_DOT_DOT_LT2] = ACTIONS(903), + [aux_sym__immediate_decimal_token2] = ACTIONS(2185), + [anon_sym_null] = ACTIONS(901), + [anon_sym_true] = ACTIONS(901), + [anon_sym_false] = ACTIONS(901), + [aux_sym__val_number_decimal_token1] = ACTIONS(901), + [aux_sym__val_number_decimal_token2] = ACTIONS(901), + [anon_sym_DOT2] = ACTIONS(901), + [aux_sym__val_number_decimal_token3] = ACTIONS(901), + [aux_sym__val_number_token1] = ACTIONS(901), + [aux_sym__val_number_token2] = ACTIONS(901), + [aux_sym__val_number_token3] = ACTIONS(901), + [aux_sym__val_number_token4] = ACTIONS(901), + [aux_sym__val_number_token5] = ACTIONS(901), + [aux_sym__val_number_token6] = ACTIONS(901), + [anon_sym_0b] = ACTIONS(901), + [sym_filesize_unit] = ACTIONS(901), + [sym_duration_unit] = ACTIONS(901), + [anon_sym_0o] = ACTIONS(901), + [anon_sym_0x] = ACTIONS(901), + [sym_val_date] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [sym__str_single_quotes] = ACTIONS(901), + [sym__str_back_ticks] = ACTIONS(901), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(901), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(901), + [anon_sym_CARET] = ACTIONS(901), + [aux_sym_unquoted_token5] = ACTIONS(901), + [anon_sym_POUND] = ACTIONS(113), + }, + [832] = { + [sym__expr_parenthesized_immediate] = STATE(10022), + [sym_comment] = STATE(832), + [anon_sym_export] = ACTIONS(938), + [anon_sym_alias] = ACTIONS(938), + [anon_sym_let] = ACTIONS(938), + [anon_sym_let_DASHenv] = ACTIONS(938), + [anon_sym_mut] = ACTIONS(938), + [anon_sym_const] = ACTIONS(938), + [anon_sym_SEMI] = ACTIONS(938), + [sym_cmd_identifier] = ACTIONS(938), + [anon_sym_LF] = ACTIONS(940), + [anon_sym_def] = ACTIONS(938), + [anon_sym_export_DASHenv] = ACTIONS(938), + [anon_sym_extern] = ACTIONS(938), + [anon_sym_module] = ACTIONS(938), + [anon_sym_use] = ACTIONS(938), + [anon_sym_LBRACK] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(938), + [anon_sym_RPAREN] = ACTIONS(938), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_error] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_break] = ACTIONS(938), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_for] = ACTIONS(938), + [anon_sym_loop] = ACTIONS(938), + [anon_sym_while] = ACTIONS(938), + [anon_sym_do] = ACTIONS(938), + [anon_sym_if] = ACTIONS(938), + [anon_sym_match] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_RBRACE] = ACTIONS(938), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_try] = ACTIONS(938), + [anon_sym_return] = ACTIONS(938), + [anon_sym_source] = ACTIONS(938), + [anon_sym_source_DASHenv] = ACTIONS(938), + [anon_sym_register] = ACTIONS(938), + [anon_sym_hide] = ACTIONS(938), + [anon_sym_hide_DASHenv] = ACTIONS(938), + [anon_sym_overlay] = ACTIONS(938), + [anon_sym_as] = ACTIONS(938), + [anon_sym_where] = ACTIONS(938), + [anon_sym_not] = ACTIONS(938), + [anon_sym_LPAREN2] = ACTIONS(2187), + [anon_sym_DOT_DOT2] = ACTIONS(2189), + [anon_sym_DOT] = ACTIONS(2191), + [anon_sym_DOT_DOT_EQ] = ACTIONS(938), + [anon_sym_DOT_DOT_LT] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2193), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2193), + [anon_sym_null] = ACTIONS(938), + [anon_sym_true] = ACTIONS(938), + [anon_sym_false] = ACTIONS(938), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(938), + [anon_sym_DOT2] = ACTIONS(938), + [aux_sym__val_number_decimal_token3] = ACTIONS(938), + [aux_sym__val_number_token1] = ACTIONS(938), + [aux_sym__val_number_token2] = ACTIONS(938), + [aux_sym__val_number_token3] = ACTIONS(938), + [aux_sym__val_number_token4] = ACTIONS(938), + [aux_sym__val_number_token5] = ACTIONS(938), + [aux_sym__val_number_token6] = ACTIONS(938), + [anon_sym_0b] = ACTIONS(938), + [sym_filesize_unit] = ACTIONS(2195), + [sym_duration_unit] = ACTIONS(2197), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym__str_single_quotes] = ACTIONS(938), + [sym__str_back_ticks] = ACTIONS(938), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(938), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(938), + [anon_sym_CARET] = ACTIONS(938), + [aux_sym_unquoted_token5] = ACTIONS(1706), + [anon_sym_POUND] = ACTIONS(113), + }, + [833] = { + [sym__expr_parenthesized_immediate] = STATE(1263), + [sym__immediate_decimal] = STATE(996), + [sym_val_variable] = STATE(1263), + [sym__var] = STATE(967), + [sym_comment] = STATE(833), + [ts_builtin_sym_end] = ACTIONS(1840), + [anon_sym_export] = ACTIONS(1838), + [anon_sym_alias] = ACTIONS(1838), + [anon_sym_let] = ACTIONS(1838), + [anon_sym_let_DASHenv] = ACTIONS(1838), + [anon_sym_mut] = ACTIONS(1838), + [anon_sym_const] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(1838), + [sym_cmd_identifier] = ACTIONS(1838), + [anon_sym_LF] = ACTIONS(1840), + [anon_sym_def] = ACTIONS(1838), + [anon_sym_export_DASHenv] = ACTIONS(1838), + [anon_sym_extern] = ACTIONS(1838), + [anon_sym_module] = ACTIONS(1838), + [anon_sym_use] = ACTIONS(1838), + [anon_sym_LBRACK] = ACTIONS(1838), + [anon_sym_LPAREN] = ACTIONS(1838), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_error] = ACTIONS(1838), + [anon_sym_DASH_DASH] = ACTIONS(1838), + [anon_sym_DASH] = ACTIONS(1838), + [anon_sym_break] = ACTIONS(1838), + [anon_sym_continue] = ACTIONS(1838), + [anon_sym_for] = ACTIONS(1838), + [anon_sym_loop] = ACTIONS(1838), + [anon_sym_while] = ACTIONS(1838), + [anon_sym_do] = ACTIONS(1838), + [anon_sym_if] = ACTIONS(1838), + [anon_sym_match] = ACTIONS(1838), + [anon_sym_LBRACE] = ACTIONS(1838), + [anon_sym_DOT_DOT] = ACTIONS(1838), + [anon_sym_try] = ACTIONS(1838), + [anon_sym_return] = ACTIONS(1838), + [anon_sym_source] = ACTIONS(1838), + [anon_sym_source_DASHenv] = ACTIONS(1838), + [anon_sym_register] = ACTIONS(1838), + [anon_sym_hide] = ACTIONS(1838), + [anon_sym_hide_DASHenv] = ACTIONS(1838), + [anon_sym_overlay] = ACTIONS(1838), + [anon_sym_as] = ACTIONS(1838), + [anon_sym_where] = ACTIONS(1838), + [anon_sym_not] = ACTIONS(1838), + [anon_sym_LPAREN2] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(2199), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1838), + [anon_sym_DOT_DOT_LT] = ACTIONS(1838), + [aux_sym__immediate_decimal_token1] = ACTIONS(1852), + [aux_sym__immediate_decimal_token3] = ACTIONS(1852), + [aux_sym__immediate_decimal_token4] = ACTIONS(1854), + [anon_sym_null] = ACTIONS(1838), + [anon_sym_true] = ACTIONS(1838), + [anon_sym_false] = ACTIONS(1838), + [aux_sym__val_number_decimal_token1] = ACTIONS(1838), + [aux_sym__val_number_decimal_token2] = ACTIONS(1838), + [anon_sym_DOT2] = ACTIONS(1838), + [aux_sym__val_number_decimal_token3] = ACTIONS(1838), + [aux_sym__val_number_token1] = ACTIONS(1838), + [aux_sym__val_number_token2] = ACTIONS(1838), + [aux_sym__val_number_token3] = ACTIONS(1838), + [aux_sym__val_number_token4] = ACTIONS(1838), + [aux_sym__val_number_token5] = ACTIONS(1838), + [aux_sym__val_number_token6] = ACTIONS(1838), + [anon_sym_0b] = ACTIONS(1838), + [anon_sym_0o] = ACTIONS(1838), + [anon_sym_0x] = ACTIONS(1838), + [sym_val_date] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym__str_single_quotes] = ACTIONS(1838), + [sym__str_back_ticks] = ACTIONS(1838), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1838), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1838), + [anon_sym_CARET] = ACTIONS(1838), + [aux_sym_unquoted_token2] = ACTIONS(1844), + [anon_sym_POUND] = ACTIONS(113), + }, + [834] = { + [sym__expr_parenthesized_immediate] = STATE(2081), + [sym__immediate_decimal] = STATE(1277), + [sym_val_variable] = STATE(2081), + [sym__var] = STATE(1191), + [sym_comment] = STATE(834), + [ts_builtin_sym_end] = ACTIONS(1840), + [anon_sym_export] = ACTIONS(1838), + [anon_sym_alias] = ACTIONS(1838), + [anon_sym_let] = ACTIONS(1838), + [anon_sym_let_DASHenv] = ACTIONS(1838), + [anon_sym_mut] = ACTIONS(1838), + [anon_sym_const] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(1838), + [sym_cmd_identifier] = ACTIONS(1838), + [anon_sym_LF] = ACTIONS(1840), + [anon_sym_def] = ACTIONS(1838), + [anon_sym_export_DASHenv] = ACTIONS(1838), + [anon_sym_extern] = ACTIONS(1838), + [anon_sym_module] = ACTIONS(1838), + [anon_sym_use] = ACTIONS(1838), + [anon_sym_LBRACK] = ACTIONS(1838), + [anon_sym_LPAREN] = ACTIONS(1838), + [anon_sym_DOLLAR] = ACTIONS(2155), + [anon_sym_error] = ACTIONS(1838), + [anon_sym_DASH_DASH] = ACTIONS(1838), + [anon_sym_DASH] = ACTIONS(1838), + [anon_sym_break] = ACTIONS(1838), + [anon_sym_continue] = ACTIONS(1838), + [anon_sym_for] = ACTIONS(1838), + [anon_sym_loop] = ACTIONS(1838), + [anon_sym_while] = ACTIONS(1838), + [anon_sym_do] = ACTIONS(1838), + [anon_sym_if] = ACTIONS(1838), + [anon_sym_match] = ACTIONS(1838), + [anon_sym_LBRACE] = ACTIONS(1838), + [anon_sym_DOT_DOT] = ACTIONS(1838), + [anon_sym_try] = ACTIONS(1838), + [anon_sym_return] = ACTIONS(1838), + [anon_sym_source] = ACTIONS(1838), + [anon_sym_source_DASHenv] = ACTIONS(1838), + [anon_sym_register] = ACTIONS(1838), + [anon_sym_hide] = ACTIONS(1838), + [anon_sym_hide_DASHenv] = ACTIONS(1838), + [anon_sym_overlay] = ACTIONS(1838), + [anon_sym_as] = ACTIONS(1838), + [anon_sym_where] = ACTIONS(1838), + [anon_sym_not] = ACTIONS(1838), + [anon_sym_LPAREN2] = ACTIONS(2157), + [anon_sym_DOT] = ACTIONS(2159), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1838), + [anon_sym_DOT_DOT_LT] = ACTIONS(1838), + [aux_sym__immediate_decimal_token1] = ACTIONS(2161), + [aux_sym__immediate_decimal_token3] = ACTIONS(2161), + [aux_sym__immediate_decimal_token4] = ACTIONS(2163), + [anon_sym_null] = ACTIONS(1838), + [anon_sym_true] = ACTIONS(1838), + [anon_sym_false] = ACTIONS(1838), + [aux_sym__val_number_decimal_token1] = ACTIONS(1838), + [aux_sym__val_number_decimal_token2] = ACTIONS(1838), + [anon_sym_DOT2] = ACTIONS(1838), + [aux_sym__val_number_decimal_token3] = ACTIONS(1838), + [aux_sym__val_number_token1] = ACTIONS(1838), + [aux_sym__val_number_token2] = ACTIONS(1838), + [aux_sym__val_number_token3] = ACTIONS(1838), + [aux_sym__val_number_token4] = ACTIONS(1838), + [aux_sym__val_number_token5] = ACTIONS(1838), + [aux_sym__val_number_token6] = ACTIONS(1838), + [anon_sym_0b] = ACTIONS(1838), + [anon_sym_0o] = ACTIONS(1838), + [anon_sym_0x] = ACTIONS(1838), + [sym_val_date] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym__str_single_quotes] = ACTIONS(1838), + [sym__str_back_ticks] = ACTIONS(1838), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1838), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1838), + [anon_sym_CARET] = ACTIONS(1838), + [aux_sym_unquoted_token2] = ACTIONS(1844), + [anon_sym_POUND] = ACTIONS(113), + }, + [835] = { + [sym__expr_parenthesized_immediate] = STATE(2103), + [sym__immediate_decimal] = STATE(1282), + [sym_val_variable] = STATE(2103), + [sym__var] = STATE(1191), + [sym_comment] = STATE(835), + [ts_builtin_sym_end] = ACTIONS(1884), + [anon_sym_export] = ACTIONS(1882), + [anon_sym_alias] = ACTIONS(1882), + [anon_sym_let] = ACTIONS(1882), + [anon_sym_let_DASHenv] = ACTIONS(1882), + [anon_sym_mut] = ACTIONS(1882), + [anon_sym_const] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1882), + [sym_cmd_identifier] = ACTIONS(1882), + [anon_sym_LF] = ACTIONS(1884), + [anon_sym_def] = ACTIONS(1882), + [anon_sym_export_DASHenv] = ACTIONS(1882), + [anon_sym_extern] = ACTIONS(1882), + [anon_sym_module] = ACTIONS(1882), + [anon_sym_use] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1882), + [anon_sym_LPAREN] = ACTIONS(1882), + [anon_sym_DOLLAR] = ACTIONS(2155), + [anon_sym_error] = ACTIONS(1882), + [anon_sym_DASH_DASH] = ACTIONS(1882), + [anon_sym_DASH] = ACTIONS(1882), + [anon_sym_break] = ACTIONS(1882), + [anon_sym_continue] = ACTIONS(1882), + [anon_sym_for] = ACTIONS(1882), + [anon_sym_loop] = ACTIONS(1882), + [anon_sym_while] = ACTIONS(1882), + [anon_sym_do] = ACTIONS(1882), + [anon_sym_if] = ACTIONS(1882), + [anon_sym_match] = ACTIONS(1882), + [anon_sym_LBRACE] = ACTIONS(1882), + [anon_sym_DOT_DOT] = ACTIONS(1882), + [anon_sym_try] = ACTIONS(1882), + [anon_sym_return] = ACTIONS(1882), + [anon_sym_source] = ACTIONS(1882), + [anon_sym_source_DASHenv] = ACTIONS(1882), + [anon_sym_register] = ACTIONS(1882), + [anon_sym_hide] = ACTIONS(1882), + [anon_sym_hide_DASHenv] = ACTIONS(1882), + [anon_sym_overlay] = ACTIONS(1882), + [anon_sym_as] = ACTIONS(1882), + [anon_sym_where] = ACTIONS(1882), + [anon_sym_not] = ACTIONS(1882), + [anon_sym_LPAREN2] = ACTIONS(2157), + [anon_sym_DOT] = ACTIONS(2159), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1882), + [anon_sym_DOT_DOT_LT] = ACTIONS(1882), + [aux_sym__immediate_decimal_token1] = ACTIONS(2161), + [aux_sym__immediate_decimal_token3] = ACTIONS(2161), + [aux_sym__immediate_decimal_token4] = ACTIONS(2163), + [anon_sym_null] = ACTIONS(1882), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [aux_sym__val_number_decimal_token1] = ACTIONS(1882), + [aux_sym__val_number_decimal_token2] = ACTIONS(1882), + [anon_sym_DOT2] = ACTIONS(1882), + [aux_sym__val_number_decimal_token3] = ACTIONS(1882), + [aux_sym__val_number_token1] = ACTIONS(1882), + [aux_sym__val_number_token2] = ACTIONS(1882), + [aux_sym__val_number_token3] = ACTIONS(1882), + [aux_sym__val_number_token4] = ACTIONS(1882), + [aux_sym__val_number_token5] = ACTIONS(1882), + [aux_sym__val_number_token6] = ACTIONS(1882), + [anon_sym_0b] = ACTIONS(1882), + [anon_sym_0o] = ACTIONS(1882), + [anon_sym_0x] = ACTIONS(1882), + [sym_val_date] = ACTIONS(1882), + [anon_sym_DQUOTE] = ACTIONS(1882), + [sym__str_single_quotes] = ACTIONS(1882), + [sym__str_back_ticks] = ACTIONS(1882), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1882), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1882), + [anon_sym_CARET] = ACTIONS(1882), + [aux_sym_unquoted_token2] = ACTIONS(1886), + [anon_sym_POUND] = ACTIONS(113), + }, + [836] = { + [sym__expr_parenthesized_immediate] = STATE(1263), + [sym__immediate_decimal] = STATE(1043), + [sym_val_variable] = STATE(1263), + [sym__var] = STATE(967), + [sym_comment] = STATE(836), + [ts_builtin_sym_end] = ACTIONS(1840), + [anon_sym_export] = ACTIONS(1838), + [anon_sym_alias] = ACTIONS(1838), + [anon_sym_let] = ACTIONS(1838), + [anon_sym_let_DASHenv] = ACTIONS(1838), + [anon_sym_mut] = ACTIONS(1838), + [anon_sym_const] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(1838), + [sym_cmd_identifier] = ACTIONS(1838), + [anon_sym_LF] = ACTIONS(1840), + [anon_sym_def] = ACTIONS(1838), + [anon_sym_export_DASHenv] = ACTIONS(1838), + [anon_sym_extern] = ACTIONS(1838), + [anon_sym_module] = ACTIONS(1838), + [anon_sym_use] = ACTIONS(1838), + [anon_sym_LBRACK] = ACTIONS(1838), + [anon_sym_LPAREN] = ACTIONS(1838), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_error] = ACTIONS(1838), + [anon_sym_DASH_DASH] = ACTIONS(1838), + [anon_sym_DASH] = ACTIONS(1838), + [anon_sym_break] = ACTIONS(1838), + [anon_sym_continue] = ACTIONS(1838), + [anon_sym_for] = ACTIONS(1838), + [anon_sym_loop] = ACTIONS(1838), + [anon_sym_while] = ACTIONS(1838), + [anon_sym_do] = ACTIONS(1838), + [anon_sym_if] = ACTIONS(1838), + [anon_sym_match] = ACTIONS(1838), + [anon_sym_LBRACE] = ACTIONS(1838), + [anon_sym_DOT_DOT] = ACTIONS(1838), + [anon_sym_try] = ACTIONS(1838), + [anon_sym_return] = ACTIONS(1838), + [anon_sym_source] = ACTIONS(1838), + [anon_sym_source_DASHenv] = ACTIONS(1838), + [anon_sym_register] = ACTIONS(1838), + [anon_sym_hide] = ACTIONS(1838), + [anon_sym_hide_DASHenv] = ACTIONS(1838), + [anon_sym_overlay] = ACTIONS(1838), + [anon_sym_as] = ACTIONS(1838), + [anon_sym_where] = ACTIONS(1838), + [anon_sym_not] = ACTIONS(1838), + [anon_sym_LPAREN2] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(2201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1838), + [anon_sym_DOT_DOT_LT] = ACTIONS(1838), + [aux_sym__immediate_decimal_token1] = ACTIONS(2017), + [aux_sym__immediate_decimal_token3] = ACTIONS(2017), + [aux_sym__immediate_decimal_token4] = ACTIONS(2019), + [anon_sym_null] = ACTIONS(1838), + [anon_sym_true] = ACTIONS(1838), + [anon_sym_false] = ACTIONS(1838), + [aux_sym__val_number_decimal_token1] = ACTIONS(1838), + [aux_sym__val_number_decimal_token2] = ACTIONS(1838), + [anon_sym_DOT2] = ACTIONS(1838), + [aux_sym__val_number_decimal_token3] = ACTIONS(1838), + [aux_sym__val_number_token1] = ACTIONS(1838), + [aux_sym__val_number_token2] = ACTIONS(1838), + [aux_sym__val_number_token3] = ACTIONS(1838), + [aux_sym__val_number_token4] = ACTIONS(1838), + [aux_sym__val_number_token5] = ACTIONS(1838), + [aux_sym__val_number_token6] = ACTIONS(1838), + [anon_sym_0b] = ACTIONS(1838), + [anon_sym_0o] = ACTIONS(1838), + [anon_sym_0x] = ACTIONS(1838), + [sym_val_date] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym__str_single_quotes] = ACTIONS(1838), + [sym__str_back_ticks] = ACTIONS(1838), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1838), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1838), + [anon_sym_CARET] = ACTIONS(1838), + [aux_sym_unquoted_token2] = ACTIONS(1844), + [anon_sym_POUND] = ACTIONS(113), + }, + [837] = { + [sym__expr_parenthesized_immediate] = STATE(2081), + [sym__immediate_decimal] = STATE(1365), + [sym_val_variable] = STATE(2081), + [sym__var] = STATE(1191), + [sym_comment] = STATE(837), + [ts_builtin_sym_end] = ACTIONS(1840), + [anon_sym_export] = ACTIONS(1838), + [anon_sym_alias] = ACTIONS(1838), + [anon_sym_let] = ACTIONS(1838), + [anon_sym_let_DASHenv] = ACTIONS(1838), + [anon_sym_mut] = ACTIONS(1838), + [anon_sym_const] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(1838), + [sym_cmd_identifier] = ACTIONS(1838), + [anon_sym_LF] = ACTIONS(1840), + [anon_sym_def] = ACTIONS(1838), + [anon_sym_export_DASHenv] = ACTIONS(1838), + [anon_sym_extern] = ACTIONS(1838), + [anon_sym_module] = ACTIONS(1838), + [anon_sym_use] = ACTIONS(1838), + [anon_sym_LBRACK] = ACTIONS(1838), + [anon_sym_LPAREN] = ACTIONS(1838), + [anon_sym_DOLLAR] = ACTIONS(2155), + [anon_sym_error] = ACTIONS(1838), + [anon_sym_DASH_DASH] = ACTIONS(1838), + [anon_sym_DASH] = ACTIONS(1838), + [anon_sym_break] = ACTIONS(1838), + [anon_sym_continue] = ACTIONS(1838), + [anon_sym_for] = ACTIONS(1838), + [anon_sym_loop] = ACTIONS(1838), + [anon_sym_while] = ACTIONS(1838), + [anon_sym_do] = ACTIONS(1838), + [anon_sym_if] = ACTIONS(1838), + [anon_sym_match] = ACTIONS(1838), + [anon_sym_LBRACE] = ACTIONS(1838), + [anon_sym_DOT_DOT] = ACTIONS(1838), + [anon_sym_try] = ACTIONS(1838), + [anon_sym_return] = ACTIONS(1838), + [anon_sym_source] = ACTIONS(1838), + [anon_sym_source_DASHenv] = ACTIONS(1838), + [anon_sym_register] = ACTIONS(1838), + [anon_sym_hide] = ACTIONS(1838), + [anon_sym_hide_DASHenv] = ACTIONS(1838), + [anon_sym_overlay] = ACTIONS(1838), + [anon_sym_as] = ACTIONS(1838), + [anon_sym_where] = ACTIONS(1838), + [anon_sym_not] = ACTIONS(1838), + [anon_sym_LPAREN2] = ACTIONS(2157), + [anon_sym_DOT] = ACTIONS(2179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1838), + [anon_sym_DOT_DOT_LT] = ACTIONS(1838), + [aux_sym__immediate_decimal_token1] = ACTIONS(2181), + [aux_sym__immediate_decimal_token3] = ACTIONS(2181), + [aux_sym__immediate_decimal_token4] = ACTIONS(2183), + [anon_sym_null] = ACTIONS(1838), + [anon_sym_true] = ACTIONS(1838), + [anon_sym_false] = ACTIONS(1838), + [aux_sym__val_number_decimal_token1] = ACTIONS(1838), + [aux_sym__val_number_decimal_token2] = ACTIONS(1838), + [anon_sym_DOT2] = ACTIONS(1838), + [aux_sym__val_number_decimal_token3] = ACTIONS(1838), + [aux_sym__val_number_token1] = ACTIONS(1838), + [aux_sym__val_number_token2] = ACTIONS(1838), + [aux_sym__val_number_token3] = ACTIONS(1838), + [aux_sym__val_number_token4] = ACTIONS(1838), + [aux_sym__val_number_token5] = ACTIONS(1838), + [aux_sym__val_number_token6] = ACTIONS(1838), + [anon_sym_0b] = ACTIONS(1838), + [anon_sym_0o] = ACTIONS(1838), + [anon_sym_0x] = ACTIONS(1838), + [sym_val_date] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym__str_single_quotes] = ACTIONS(1838), + [sym__str_back_ticks] = ACTIONS(1838), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1838), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1838), + [anon_sym_CARET] = ACTIONS(1838), + [aux_sym_unquoted_token2] = ACTIONS(1844), + [anon_sym_POUND] = ACTIONS(113), + }, + [838] = { + [sym__expr_parenthesized_immediate] = STATE(2103), + [sym__immediate_decimal] = STATE(1367), + [sym_val_variable] = STATE(2103), + [sym__var] = STATE(1191), + [sym_comment] = STATE(838), + [ts_builtin_sym_end] = ACTIONS(1884), + [anon_sym_export] = ACTIONS(1882), + [anon_sym_alias] = ACTIONS(1882), + [anon_sym_let] = ACTIONS(1882), + [anon_sym_let_DASHenv] = ACTIONS(1882), + [anon_sym_mut] = ACTIONS(1882), + [anon_sym_const] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1882), + [sym_cmd_identifier] = ACTIONS(1882), + [anon_sym_LF] = ACTIONS(1884), + [anon_sym_def] = ACTIONS(1882), + [anon_sym_export_DASHenv] = ACTIONS(1882), + [anon_sym_extern] = ACTIONS(1882), + [anon_sym_module] = ACTIONS(1882), + [anon_sym_use] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1882), + [anon_sym_LPAREN] = ACTIONS(1882), + [anon_sym_DOLLAR] = ACTIONS(2155), + [anon_sym_error] = ACTIONS(1882), + [anon_sym_DASH_DASH] = ACTIONS(1882), + [anon_sym_DASH] = ACTIONS(1882), + [anon_sym_break] = ACTIONS(1882), + [anon_sym_continue] = ACTIONS(1882), + [anon_sym_for] = ACTIONS(1882), + [anon_sym_loop] = ACTIONS(1882), + [anon_sym_while] = ACTIONS(1882), + [anon_sym_do] = ACTIONS(1882), + [anon_sym_if] = ACTIONS(1882), + [anon_sym_match] = ACTIONS(1882), + [anon_sym_LBRACE] = ACTIONS(1882), + [anon_sym_DOT_DOT] = ACTIONS(1882), + [anon_sym_try] = ACTIONS(1882), + [anon_sym_return] = ACTIONS(1882), + [anon_sym_source] = ACTIONS(1882), + [anon_sym_source_DASHenv] = ACTIONS(1882), + [anon_sym_register] = ACTIONS(1882), + [anon_sym_hide] = ACTIONS(1882), + [anon_sym_hide_DASHenv] = ACTIONS(1882), + [anon_sym_overlay] = ACTIONS(1882), + [anon_sym_as] = ACTIONS(1882), + [anon_sym_where] = ACTIONS(1882), + [anon_sym_not] = ACTIONS(1882), + [anon_sym_LPAREN2] = ACTIONS(2157), + [anon_sym_DOT] = ACTIONS(2179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1882), + [anon_sym_DOT_DOT_LT] = ACTIONS(1882), + [aux_sym__immediate_decimal_token1] = ACTIONS(2181), + [aux_sym__immediate_decimal_token3] = ACTIONS(2181), + [aux_sym__immediate_decimal_token4] = ACTIONS(2183), + [anon_sym_null] = ACTIONS(1882), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [aux_sym__val_number_decimal_token1] = ACTIONS(1882), + [aux_sym__val_number_decimal_token2] = ACTIONS(1882), + [anon_sym_DOT2] = ACTIONS(1882), + [aux_sym__val_number_decimal_token3] = ACTIONS(1882), + [aux_sym__val_number_token1] = ACTIONS(1882), + [aux_sym__val_number_token2] = ACTIONS(1882), + [aux_sym__val_number_token3] = ACTIONS(1882), + [aux_sym__val_number_token4] = ACTIONS(1882), + [aux_sym__val_number_token5] = ACTIONS(1882), + [aux_sym__val_number_token6] = ACTIONS(1882), + [anon_sym_0b] = ACTIONS(1882), + [anon_sym_0o] = ACTIONS(1882), + [anon_sym_0x] = ACTIONS(1882), + [sym_val_date] = ACTIONS(1882), + [anon_sym_DQUOTE] = ACTIONS(1882), + [sym__str_single_quotes] = ACTIONS(1882), + [sym__str_back_ticks] = ACTIONS(1882), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1882), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1882), + [anon_sym_CARET] = ACTIONS(1882), + [aux_sym_unquoted_token2] = ACTIONS(1886), + [anon_sym_POUND] = ACTIONS(113), + }, + [839] = { + [sym_comment] = STATE(839), + [ts_builtin_sym_end] = ACTIONS(895), + [anon_sym_export] = ACTIONS(893), + [anon_sym_alias] = ACTIONS(893), + [anon_sym_let] = ACTIONS(893), + [anon_sym_let_DASHenv] = ACTIONS(893), + [anon_sym_mut] = ACTIONS(893), + [anon_sym_const] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(893), + [sym_cmd_identifier] = ACTIONS(893), + [anon_sym_LF] = ACTIONS(895), + [anon_sym_def] = ACTIONS(893), + [anon_sym_export_DASHenv] = ACTIONS(893), + [anon_sym_extern] = ACTIONS(893), + [anon_sym_module] = ACTIONS(893), + [anon_sym_use] = ACTIONS(893), + [anon_sym_LBRACK] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(893), + [anon_sym_DOLLAR] = ACTIONS(893), + [anon_sym_error] = ACTIONS(893), + [anon_sym_DASH_DASH] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_break] = ACTIONS(893), + [anon_sym_continue] = ACTIONS(893), + [anon_sym_for] = ACTIONS(893), + [anon_sym_loop] = ACTIONS(893), + [anon_sym_while] = ACTIONS(893), + [anon_sym_do] = ACTIONS(893), + [anon_sym_if] = ACTIONS(893), + [anon_sym_match] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_DOT_DOT] = ACTIONS(893), + [anon_sym_try] = ACTIONS(893), + [anon_sym_return] = ACTIONS(893), + [anon_sym_source] = ACTIONS(893), + [anon_sym_source_DASHenv] = ACTIONS(893), + [anon_sym_register] = ACTIONS(893), + [anon_sym_hide] = ACTIONS(893), + [anon_sym_hide_DASHenv] = ACTIONS(893), + [anon_sym_overlay] = ACTIONS(893), + [anon_sym_as] = ACTIONS(893), + [anon_sym_where] = ACTIONS(893), + [anon_sym_not] = ACTIONS(893), + [anon_sym_LPAREN2] = ACTIONS(895), + [anon_sym_DOT_DOT2] = ACTIONS(893), + [anon_sym_DOT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ] = ACTIONS(893), + [anon_sym_DOT_DOT_LT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), + [anon_sym_DOT_DOT_LT2] = ACTIONS(895), + [aux_sym__immediate_decimal_token1] = ACTIONS(2203), + [aux_sym__immediate_decimal_token2] = ACTIONS(2205), + [anon_sym_null] = ACTIONS(893), + [anon_sym_true] = ACTIONS(893), + [anon_sym_false] = ACTIONS(893), + [aux_sym__val_number_decimal_token1] = ACTIONS(893), + [aux_sym__val_number_decimal_token2] = ACTIONS(893), + [anon_sym_DOT2] = ACTIONS(893), + [aux_sym__val_number_decimal_token3] = ACTIONS(893), + [aux_sym__val_number_token1] = ACTIONS(893), + [aux_sym__val_number_token2] = ACTIONS(893), + [aux_sym__val_number_token3] = ACTIONS(893), + [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(893), + [sym_filesize_unit] = ACTIONS(893), + [sym_duration_unit] = ACTIONS(893), + [anon_sym_0o] = ACTIONS(893), + [anon_sym_0x] = ACTIONS(893), + [sym_val_date] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(893), + [sym__str_single_quotes] = ACTIONS(893), + [sym__str_back_ticks] = ACTIONS(893), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(893), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(893), + [anon_sym_CARET] = ACTIONS(893), + [aux_sym_unquoted_token5] = ACTIONS(893), + [anon_sym_POUND] = ACTIONS(113), + }, + [840] = { + [sym__expr_parenthesized_immediate] = STATE(1568), + [sym__immediate_decimal] = STATE(1569), + [sym_val_variable] = STATE(1568), + [sym__var] = STATE(1105), + [sym_comment] = STATE(840), + [anon_sym_export] = ACTIONS(2207), + [anon_sym_alias] = ACTIONS(2207), + [anon_sym_let] = ACTIONS(2207), + [anon_sym_let_DASHenv] = ACTIONS(2207), + [anon_sym_mut] = ACTIONS(2207), + [anon_sym_const] = ACTIONS(2207), + [anon_sym_SEMI] = ACTIONS(2207), + [sym_cmd_identifier] = ACTIONS(2207), + [anon_sym_LF] = ACTIONS(2209), + [anon_sym_def] = ACTIONS(2207), + [anon_sym_export_DASHenv] = ACTIONS(2207), + [anon_sym_extern] = ACTIONS(2207), + [anon_sym_module] = ACTIONS(2207), + [anon_sym_use] = ACTIONS(2207), + [anon_sym_LBRACK] = ACTIONS(2207), + [anon_sym_LPAREN] = ACTIONS(2207), + [anon_sym_RPAREN] = ACTIONS(2207), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_error] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2207), + [anon_sym_DASH] = ACTIONS(2207), + [anon_sym_break] = ACTIONS(2207), + [anon_sym_continue] = ACTIONS(2207), + [anon_sym_for] = ACTIONS(2207), + [anon_sym_loop] = ACTIONS(2207), + [anon_sym_while] = ACTIONS(2207), + [anon_sym_do] = ACTIONS(2207), + [anon_sym_if] = ACTIONS(2207), + [anon_sym_match] = ACTIONS(2207), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_RBRACE] = ACTIONS(2207), + [anon_sym_DOT_DOT] = ACTIONS(2207), + [anon_sym_try] = ACTIONS(2207), + [anon_sym_return] = ACTIONS(2207), + [anon_sym_source] = ACTIONS(2207), + [anon_sym_source_DASHenv] = ACTIONS(2207), + [anon_sym_register] = ACTIONS(2207), + [anon_sym_hide] = ACTIONS(2207), + [anon_sym_hide_DASHenv] = ACTIONS(2207), + [anon_sym_overlay] = ACTIONS(2207), + [anon_sym_as] = ACTIONS(2207), + [anon_sym_where] = ACTIONS(2207), + [anon_sym_not] = ACTIONS(2207), + [anon_sym_LPAREN2] = ACTIONS(1868), + [anon_sym_DOT] = ACTIONS(2140), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2207), + [anon_sym_DOT_DOT_LT] = ACTIONS(2207), + [aux_sym__immediate_decimal_token1] = ACTIONS(2142), + [aux_sym__immediate_decimal_token3] = ACTIONS(2142), + [aux_sym__immediate_decimal_token4] = ACTIONS(2144), + [anon_sym_null] = ACTIONS(2207), + [anon_sym_true] = ACTIONS(2207), + [anon_sym_false] = ACTIONS(2207), + [aux_sym__val_number_decimal_token1] = ACTIONS(2207), + [aux_sym__val_number_decimal_token2] = ACTIONS(2207), + [anon_sym_DOT2] = ACTIONS(2207), + [aux_sym__val_number_decimal_token3] = ACTIONS(2207), + [aux_sym__val_number_token1] = ACTIONS(2207), + [aux_sym__val_number_token2] = ACTIONS(2207), + [aux_sym__val_number_token3] = ACTIONS(2207), + [aux_sym__val_number_token4] = ACTIONS(2207), + [aux_sym__val_number_token5] = ACTIONS(2207), + [aux_sym__val_number_token6] = ACTIONS(2207), + [anon_sym_0b] = ACTIONS(2207), + [anon_sym_0o] = ACTIONS(2207), + [anon_sym_0x] = ACTIONS(2207), + [sym_val_date] = ACTIONS(2207), + [anon_sym_DQUOTE] = ACTIONS(2207), + [sym__str_single_quotes] = ACTIONS(2207), + [sym__str_back_ticks] = ACTIONS(2207), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2207), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2207), + [anon_sym_CARET] = ACTIONS(2207), + [anon_sym_POUND] = ACTIONS(113), + }, + [841] = { + [sym__expr_parenthesized_immediate] = STATE(10115), + [sym_comment] = STATE(841), + [ts_builtin_sym_end] = ACTIONS(940), + [anon_sym_export] = ACTIONS(938), + [anon_sym_alias] = ACTIONS(938), + [anon_sym_let] = ACTIONS(938), + [anon_sym_let_DASHenv] = ACTIONS(938), + [anon_sym_mut] = ACTIONS(938), + [anon_sym_const] = ACTIONS(938), + [anon_sym_SEMI] = ACTIONS(938), + [sym_cmd_identifier] = ACTIONS(938), + [anon_sym_LF] = ACTIONS(940), + [anon_sym_def] = ACTIONS(938), + [anon_sym_export_DASHenv] = ACTIONS(938), + [anon_sym_extern] = ACTIONS(938), + [anon_sym_module] = ACTIONS(938), + [anon_sym_use] = ACTIONS(938), + [anon_sym_LBRACK] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(938), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_error] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_break] = ACTIONS(938), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_for] = ACTIONS(938), + [anon_sym_loop] = ACTIONS(938), + [anon_sym_while] = ACTIONS(938), + [anon_sym_do] = ACTIONS(938), + [anon_sym_if] = ACTIONS(938), + [anon_sym_match] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_try] = ACTIONS(938), + [anon_sym_return] = ACTIONS(938), + [anon_sym_source] = ACTIONS(938), + [anon_sym_source_DASHenv] = ACTIONS(938), + [anon_sym_register] = ACTIONS(938), + [anon_sym_hide] = ACTIONS(938), + [anon_sym_hide_DASHenv] = ACTIONS(938), + [anon_sym_overlay] = ACTIONS(938), + [anon_sym_as] = ACTIONS(938), + [anon_sym_where] = ACTIONS(938), + [anon_sym_not] = ACTIONS(938), + [anon_sym_LPAREN2] = ACTIONS(2187), + [anon_sym_DOT_DOT2] = ACTIONS(2211), + [anon_sym_DOT] = ACTIONS(2213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(938), + [anon_sym_DOT_DOT_LT] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2215), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2215), + [anon_sym_null] = ACTIONS(938), + [anon_sym_true] = ACTIONS(938), + [anon_sym_false] = ACTIONS(938), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(938), + [anon_sym_DOT2] = ACTIONS(938), + [aux_sym__val_number_decimal_token3] = ACTIONS(938), + [aux_sym__val_number_token1] = ACTIONS(938), + [aux_sym__val_number_token2] = ACTIONS(938), + [aux_sym__val_number_token3] = ACTIONS(938), + [aux_sym__val_number_token4] = ACTIONS(938), + [aux_sym__val_number_token5] = ACTIONS(938), + [aux_sym__val_number_token6] = ACTIONS(938), + [anon_sym_0b] = ACTIONS(938), + [sym_filesize_unit] = ACTIONS(2217), + [sym_duration_unit] = ACTIONS(2219), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym__str_single_quotes] = ACTIONS(938), + [sym__str_back_ticks] = ACTIONS(938), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(938), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(938), + [anon_sym_CARET] = ACTIONS(938), + [aux_sym_unquoted_token5] = ACTIONS(1856), + [anon_sym_POUND] = ACTIONS(113), + }, + [842] = { + [sym_comment] = STATE(842), + [anon_sym_LBRACK] = ACTIONS(895), + [anon_sym_COMMA] = ACTIONS(895), + [anon_sym_LPAREN] = ACTIONS(895), + [anon_sym_DOLLAR] = ACTIONS(895), + [anon_sym_GT] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_in] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(895), + [anon_sym_RBRACE] = ACTIONS(895), + [anon_sym__] = ACTIONS(893), + [anon_sym_DOT_DOT] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(893), + [anon_sym_STAR_STAR] = ACTIONS(895), + [anon_sym_PLUS_PLUS] = ACTIONS(895), + [anon_sym_SLASH] = ACTIONS(893), + [anon_sym_mod] = ACTIONS(895), + [anon_sym_SLASH_SLASH] = ACTIONS(895), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_bit_DASHshl] = ACTIONS(895), + [anon_sym_bit_DASHshr] = ACTIONS(895), + [anon_sym_EQ_EQ] = ACTIONS(895), + [anon_sym_BANG_EQ] = ACTIONS(895), + [anon_sym_LT2] = ACTIONS(893), + [anon_sym_LT_EQ] = ACTIONS(895), + [anon_sym_GT_EQ] = ACTIONS(895), + [anon_sym_not_DASHin] = ACTIONS(895), + [anon_sym_starts_DASHwith] = ACTIONS(895), + [anon_sym_ends_DASHwith] = ACTIONS(895), + [anon_sym_EQ_TILDE] = ACTIONS(895), + [anon_sym_BANG_TILDE] = ACTIONS(895), + [anon_sym_bit_DASHand] = ACTIONS(895), + [anon_sym_bit_DASHxor] = ACTIONS(895), + [anon_sym_bit_DASHor] = ACTIONS(895), + [anon_sym_and] = ACTIONS(895), + [anon_sym_xor] = ACTIONS(895), + [anon_sym_or] = ACTIONS(895), + [anon_sym_DOT_DOT2] = ACTIONS(893), + [anon_sym_DOT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ] = ACTIONS(893), + [anon_sym_DOT_DOT_LT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), + [anon_sym_DOT_DOT_LT2] = ACTIONS(895), + [aux_sym__immediate_decimal_token1] = ACTIONS(2221), + [aux_sym__immediate_decimal_token2] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(895), + [anon_sym_true] = ACTIONS(895), + [anon_sym_false] = ACTIONS(895), + [aux_sym__val_number_decimal_token1] = ACTIONS(893), + [aux_sym__val_number_decimal_token2] = ACTIONS(895), + [anon_sym_DOT2] = ACTIONS(893), + [aux_sym__val_number_decimal_token3] = ACTIONS(895), + [aux_sym__val_number_token1] = ACTIONS(895), + [aux_sym__val_number_token2] = ACTIONS(895), + [aux_sym__val_number_token3] = ACTIONS(895), + [aux_sym__val_number_token4] = ACTIONS(895), + [aux_sym__val_number_token5] = ACTIONS(895), + [aux_sym__val_number_token6] = ACTIONS(895), + [anon_sym_0b] = ACTIONS(893), + [sym_filesize_unit] = ACTIONS(893), + [sym_duration_unit] = ACTIONS(895), + [anon_sym_0o] = ACTIONS(893), + [anon_sym_0x] = ACTIONS(893), + [sym_val_date] = ACTIONS(895), + [anon_sym_DQUOTE] = ACTIONS(895), + [sym__str_single_quotes] = ACTIONS(895), + [sym__str_back_ticks] = ACTIONS(895), + [anon_sym_err_GT] = ACTIONS(895), + [anon_sym_out_GT] = ACTIONS(895), + [anon_sym_e_GT] = ACTIONS(895), + [anon_sym_o_GT] = ACTIONS(895), + [anon_sym_err_PLUSout_GT] = ACTIONS(895), + [anon_sym_out_PLUSerr_GT] = ACTIONS(895), + [anon_sym_o_PLUSe_GT] = ACTIONS(895), + [anon_sym_e_PLUSo_GT] = ACTIONS(895), + [aux_sym_unquoted_token1] = ACTIONS(893), + [aux_sym_unquoted_token5] = ACTIONS(893), + [anon_sym_POUND] = ACTIONS(3), + }, + [843] = { + [sym_comment] = STATE(843), + [anon_sym_LBRACK] = ACTIONS(893), + [anon_sym_COMMA] = ACTIONS(893), + [anon_sym_RBRACK] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(893), + [anon_sym_DOLLAR] = ACTIONS(893), + [anon_sym_GT] = ACTIONS(893), + [anon_sym_DASH_DASH] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_in] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_DOT_DOT] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(893), + [anon_sym_STAR_STAR] = ACTIONS(893), + [anon_sym_PLUS_PLUS] = ACTIONS(893), + [anon_sym_SLASH] = ACTIONS(893), + [anon_sym_mod] = ACTIONS(893), + [anon_sym_SLASH_SLASH] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_bit_DASHshl] = ACTIONS(893), + [anon_sym_bit_DASHshr] = ACTIONS(893), + [anon_sym_EQ_EQ] = ACTIONS(893), + [anon_sym_BANG_EQ] = ACTIONS(893), + [anon_sym_LT2] = ACTIONS(893), + [anon_sym_LT_EQ] = ACTIONS(893), + [anon_sym_GT_EQ] = ACTIONS(893), + [anon_sym_not_DASHin] = ACTIONS(893), + [anon_sym_starts_DASHwith] = ACTIONS(893), + [anon_sym_ends_DASHwith] = ACTIONS(893), + [anon_sym_EQ_TILDE] = ACTIONS(893), + [anon_sym_BANG_TILDE] = ACTIONS(893), + [anon_sym_bit_DASHand] = ACTIONS(893), + [anon_sym_bit_DASHxor] = ACTIONS(893), + [anon_sym_bit_DASHor] = ACTIONS(893), + [anon_sym_and] = ACTIONS(893), + [anon_sym_xor] = ACTIONS(893), + [anon_sym_or] = ACTIONS(893), + [anon_sym_DOT_DOT2] = ACTIONS(893), + [anon_sym_DOT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ] = ACTIONS(893), + [anon_sym_DOT_DOT_LT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), + [anon_sym_DOT_DOT_LT2] = ACTIONS(895), + [aux_sym__immediate_decimal_token2] = ACTIONS(2167), + [anon_sym_null] = ACTIONS(893), + [anon_sym_true] = ACTIONS(893), + [anon_sym_false] = ACTIONS(893), + [aux_sym__val_number_decimal_token1] = ACTIONS(893), + [aux_sym__val_number_decimal_token2] = ACTIONS(893), + [anon_sym_DOT2] = ACTIONS(893), + [aux_sym__val_number_decimal_token3] = ACTIONS(893), + [aux_sym__val_number_token1] = ACTIONS(893), + [aux_sym__val_number_token2] = ACTIONS(893), + [aux_sym__val_number_token3] = ACTIONS(893), + [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(893), + [sym_filesize_unit] = ACTIONS(893), + [sym_duration_unit] = ACTIONS(895), + [anon_sym_0o] = ACTIONS(893), + [anon_sym_0x] = ACTIONS(893), + [sym_val_date] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(893), + [sym__str_single_quotes] = ACTIONS(893), + [sym__str_back_ticks] = ACTIONS(893), + [sym__entry_separator] = ACTIONS(895), + [anon_sym_err_GT] = ACTIONS(893), + [anon_sym_out_GT] = ACTIONS(893), + [anon_sym_e_GT] = ACTIONS(893), + [anon_sym_o_GT] = ACTIONS(893), + [anon_sym_err_PLUSout_GT] = ACTIONS(893), + [anon_sym_out_PLUSerr_GT] = ACTIONS(893), + [anon_sym_o_PLUSe_GT] = ACTIONS(893), + [anon_sym_e_PLUSo_GT] = ACTIONS(893), + [aux_sym_unquoted_token5] = ACTIONS(893), + [aux_sym__unquoted_in_list_token1] = ACTIONS(893), + [anon_sym_POUND] = ACTIONS(113), + }, + [844] = { + [sym_comment] = STATE(844), + [ts_builtin_sym_end] = ACTIONS(913), + [anon_sym_export] = ACTIONS(911), + [anon_sym_alias] = ACTIONS(911), + [anon_sym_let] = ACTIONS(911), + [anon_sym_let_DASHenv] = ACTIONS(911), + [anon_sym_mut] = ACTIONS(911), + [anon_sym_const] = ACTIONS(911), + [anon_sym_SEMI] = ACTIONS(911), + [sym_cmd_identifier] = ACTIONS(911), + [anon_sym_LF] = ACTIONS(913), + [anon_sym_def] = ACTIONS(911), + [anon_sym_export_DASHenv] = ACTIONS(911), + [anon_sym_extern] = ACTIONS(911), + [anon_sym_module] = ACTIONS(911), + [anon_sym_use] = ACTIONS(911), + [anon_sym_LBRACK] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_DOLLAR] = ACTIONS(911), + [anon_sym_error] = ACTIONS(911), + [anon_sym_DASH_DASH] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_break] = ACTIONS(911), + [anon_sym_continue] = ACTIONS(911), + [anon_sym_for] = ACTIONS(911), + [anon_sym_loop] = ACTIONS(911), + [anon_sym_while] = ACTIONS(911), + [anon_sym_do] = ACTIONS(911), + [anon_sym_if] = ACTIONS(911), + [anon_sym_match] = ACTIONS(911), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_try] = ACTIONS(911), + [anon_sym_return] = ACTIONS(911), + [anon_sym_source] = ACTIONS(911), + [anon_sym_source_DASHenv] = ACTIONS(911), + [anon_sym_register] = ACTIONS(911), + [anon_sym_hide] = ACTIONS(911), + [anon_sym_hide_DASHenv] = ACTIONS(911), + [anon_sym_overlay] = ACTIONS(911), + [anon_sym_as] = ACTIONS(911), + [anon_sym_where] = ACTIONS(911), + [anon_sym_not] = ACTIONS(911), + [anon_sym_LPAREN2] = ACTIONS(913), + [anon_sym_DOT_DOT2] = ACTIONS(911), + [anon_sym_DOT] = ACTIONS(911), + [anon_sym_DOT_DOT_EQ] = ACTIONS(911), + [anon_sym_DOT_DOT_LT] = ACTIONS(911), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(913), + [anon_sym_DOT_DOT_LT2] = ACTIONS(913), + [aux_sym__immediate_decimal_token2] = ACTIONS(2225), + [anon_sym_null] = ACTIONS(911), + [anon_sym_true] = ACTIONS(911), + [anon_sym_false] = ACTIONS(911), + [aux_sym__val_number_decimal_token1] = ACTIONS(911), + [aux_sym__val_number_decimal_token2] = ACTIONS(911), + [anon_sym_DOT2] = ACTIONS(911), + [aux_sym__val_number_decimal_token3] = ACTIONS(911), + [aux_sym__val_number_token1] = ACTIONS(911), + [aux_sym__val_number_token2] = ACTIONS(911), + [aux_sym__val_number_token3] = ACTIONS(911), + [aux_sym__val_number_token4] = ACTIONS(911), + [aux_sym__val_number_token5] = ACTIONS(911), + [aux_sym__val_number_token6] = ACTIONS(911), + [anon_sym_0b] = ACTIONS(911), + [sym_filesize_unit] = ACTIONS(911), + [sym_duration_unit] = ACTIONS(911), + [anon_sym_0o] = ACTIONS(911), + [anon_sym_0x] = ACTIONS(911), + [sym_val_date] = ACTIONS(911), + [anon_sym_DQUOTE] = ACTIONS(911), + [sym__str_single_quotes] = ACTIONS(911), + [sym__str_back_ticks] = ACTIONS(911), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(911), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(911), + [anon_sym_CARET] = ACTIONS(911), + [aux_sym_unquoted_token5] = ACTIONS(911), + [anon_sym_POUND] = ACTIONS(113), + }, + [845] = { + [sym_comment] = STATE(845), + [anon_sym_LBRACK] = ACTIONS(901), + [anon_sym_COMMA] = ACTIONS(901), + [anon_sym_RBRACK] = ACTIONS(901), + [anon_sym_LPAREN] = ACTIONS(901), + [anon_sym_DOLLAR] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_DASH_DASH] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_in] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(901), + [anon_sym_DOT_DOT] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_STAR_STAR] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(901), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_mod] = ACTIONS(901), + [anon_sym_SLASH_SLASH] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_bit_DASHshl] = ACTIONS(901), + [anon_sym_bit_DASHshr] = ACTIONS(901), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT2] = ACTIONS(901), + [anon_sym_LT_EQ] = ACTIONS(901), + [anon_sym_GT_EQ] = ACTIONS(901), + [anon_sym_not_DASHin] = ACTIONS(901), + [anon_sym_starts_DASHwith] = ACTIONS(901), + [anon_sym_ends_DASHwith] = ACTIONS(901), + [anon_sym_EQ_TILDE] = ACTIONS(901), + [anon_sym_BANG_TILDE] = ACTIONS(901), + [anon_sym_bit_DASHand] = ACTIONS(901), + [anon_sym_bit_DASHxor] = ACTIONS(901), + [anon_sym_bit_DASHor] = ACTIONS(901), + [anon_sym_and] = ACTIONS(901), + [anon_sym_xor] = ACTIONS(901), + [anon_sym_or] = ACTIONS(901), + [anon_sym_DOT_DOT2] = ACTIONS(901), + [anon_sym_DOT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ] = ACTIONS(901), + [anon_sym_DOT_DOT_LT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(903), + [anon_sym_DOT_DOT_LT2] = ACTIONS(903), + [aux_sym__immediate_decimal_token2] = ACTIONS(2227), + [anon_sym_null] = ACTIONS(901), + [anon_sym_true] = ACTIONS(901), + [anon_sym_false] = ACTIONS(901), + [aux_sym__val_number_decimal_token1] = ACTIONS(901), + [aux_sym__val_number_decimal_token2] = ACTIONS(901), + [anon_sym_DOT2] = ACTIONS(901), + [aux_sym__val_number_decimal_token3] = ACTIONS(901), + [aux_sym__val_number_token1] = ACTIONS(901), + [aux_sym__val_number_token2] = ACTIONS(901), + [aux_sym__val_number_token3] = ACTIONS(901), + [aux_sym__val_number_token4] = ACTIONS(901), + [aux_sym__val_number_token5] = ACTIONS(901), + [aux_sym__val_number_token6] = ACTIONS(901), + [anon_sym_0b] = ACTIONS(901), + [sym_filesize_unit] = ACTIONS(901), + [sym_duration_unit] = ACTIONS(903), + [anon_sym_0o] = ACTIONS(901), + [anon_sym_0x] = ACTIONS(901), + [sym_val_date] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [sym__str_single_quotes] = ACTIONS(901), + [sym__str_back_ticks] = ACTIONS(901), + [sym__entry_separator] = ACTIONS(903), + [anon_sym_err_GT] = ACTIONS(901), + [anon_sym_out_GT] = ACTIONS(901), + [anon_sym_e_GT] = ACTIONS(901), + [anon_sym_o_GT] = ACTIONS(901), + [anon_sym_err_PLUSout_GT] = ACTIONS(901), + [anon_sym_out_PLUSerr_GT] = ACTIONS(901), + [anon_sym_o_PLUSe_GT] = ACTIONS(901), + [anon_sym_e_PLUSo_GT] = ACTIONS(901), + [aux_sym_unquoted_token5] = ACTIONS(901), + [aux_sym__unquoted_in_list_token1] = ACTIONS(901), + [anon_sym_POUND] = ACTIONS(113), + }, + [846] = { + [sym_comment] = STATE(846), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_alias] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_let_DASHenv] = ACTIONS(2229), + [anon_sym_mut] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2229), + [sym_cmd_identifier] = ACTIONS(2229), + [anon_sym_LF] = ACTIONS(2231), + [anon_sym_def] = ACTIONS(2229), + [anon_sym_export_DASHenv] = ACTIONS(2229), + [anon_sym_extern] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_RPAREN] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2229), + [anon_sym_error] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_loop] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_RBRACE] = ACTIONS(2229), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_source] = ACTIONS(2229), + [anon_sym_source_DASHenv] = ACTIONS(2229), + [anon_sym_register] = ACTIONS(2229), + [anon_sym_hide] = ACTIONS(2229), + [anon_sym_hide_DASHenv] = ACTIONS(2229), + [anon_sym_overlay] = ACTIONS(2229), + [anon_sym_as] = ACTIONS(2229), + [anon_sym_where] = ACTIONS(2229), + [anon_sym_not] = ACTIONS(2229), + [anon_sym_LPAREN2] = ACTIONS(2231), + [anon_sym_DOT_DOT2] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2229), + [anon_sym_DOT_DOT_LT] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2231), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2231), + [aux_sym__immediate_decimal_token1] = ACTIONS(2233), + [aux_sym__immediate_decimal_token2] = ACTIONS(2235), + [anon_sym_null] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [aux_sym__val_number_decimal_token1] = ACTIONS(2229), + [aux_sym__val_number_decimal_token2] = ACTIONS(2229), + [anon_sym_DOT2] = ACTIONS(2229), + [aux_sym__val_number_decimal_token3] = ACTIONS(2229), + [aux_sym__val_number_token1] = ACTIONS(2229), + [aux_sym__val_number_token2] = ACTIONS(2229), + [aux_sym__val_number_token3] = ACTIONS(2229), + [aux_sym__val_number_token4] = ACTIONS(2229), + [aux_sym__val_number_token5] = ACTIONS(2229), + [aux_sym__val_number_token6] = ACTIONS(2229), + [anon_sym_0b] = ACTIONS(2229), + [anon_sym_0o] = ACTIONS(2229), + [anon_sym_0x] = ACTIONS(2229), + [sym_val_date] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2229), + [anon_sym_CARET] = ACTIONS(2229), + [aux_sym_unquoted_token2] = ACTIONS(2229), + [anon_sym_POUND] = ACTIONS(113), + }, + [847] = { + [sym_comment] = STATE(847), + [ts_builtin_sym_end] = ACTIONS(913), + [anon_sym_export] = ACTIONS(911), + [anon_sym_alias] = ACTIONS(911), + [anon_sym_let] = ACTIONS(911), + [anon_sym_let_DASHenv] = ACTIONS(911), + [anon_sym_mut] = ACTIONS(911), + [anon_sym_const] = ACTIONS(911), + [anon_sym_SEMI] = ACTIONS(911), + [sym_cmd_identifier] = ACTIONS(911), + [anon_sym_LF] = ACTIONS(913), + [anon_sym_def] = ACTIONS(911), + [anon_sym_export_DASHenv] = ACTIONS(911), + [anon_sym_extern] = ACTIONS(911), + [anon_sym_module] = ACTIONS(911), + [anon_sym_use] = ACTIONS(911), + [anon_sym_LBRACK] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_DOLLAR] = ACTIONS(911), + [anon_sym_error] = ACTIONS(911), + [anon_sym_DASH_DASH] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_break] = ACTIONS(911), + [anon_sym_continue] = ACTIONS(911), + [anon_sym_for] = ACTIONS(911), + [anon_sym_loop] = ACTIONS(911), + [anon_sym_while] = ACTIONS(911), + [anon_sym_do] = ACTIONS(911), + [anon_sym_if] = ACTIONS(911), + [anon_sym_match] = ACTIONS(911), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_try] = ACTIONS(911), + [anon_sym_return] = ACTIONS(911), + [anon_sym_source] = ACTIONS(911), + [anon_sym_source_DASHenv] = ACTIONS(911), + [anon_sym_register] = ACTIONS(911), + [anon_sym_hide] = ACTIONS(911), + [anon_sym_hide_DASHenv] = ACTIONS(911), + [anon_sym_overlay] = ACTIONS(911), + [anon_sym_as] = ACTIONS(911), + [anon_sym_where] = ACTIONS(911), + [anon_sym_not] = ACTIONS(911), + [anon_sym_LPAREN2] = ACTIONS(913), + [anon_sym_DOT_DOT2] = ACTIONS(911), + [anon_sym_DOT] = ACTIONS(2237), + [anon_sym_DOT_DOT_EQ] = ACTIONS(911), + [anon_sym_DOT_DOT_LT] = ACTIONS(911), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(913), + [anon_sym_DOT_DOT_LT2] = ACTIONS(913), + [aux_sym__immediate_decimal_token2] = ACTIONS(2225), + [anon_sym_null] = ACTIONS(911), + [anon_sym_true] = ACTIONS(911), + [anon_sym_false] = ACTIONS(911), + [aux_sym__val_number_decimal_token1] = ACTIONS(911), + [aux_sym__val_number_decimal_token2] = ACTIONS(911), + [anon_sym_DOT2] = ACTIONS(911), + [aux_sym__val_number_decimal_token3] = ACTIONS(911), + [aux_sym__val_number_token1] = ACTIONS(911), + [aux_sym__val_number_token2] = ACTIONS(911), + [aux_sym__val_number_token3] = ACTIONS(911), + [aux_sym__val_number_token4] = ACTIONS(911), + [aux_sym__val_number_token5] = ACTIONS(911), + [aux_sym__val_number_token6] = ACTIONS(911), + [anon_sym_0b] = ACTIONS(911), + [sym_filesize_unit] = ACTIONS(911), + [sym_duration_unit] = ACTIONS(911), + [anon_sym_0o] = ACTIONS(911), + [anon_sym_0x] = ACTIONS(911), + [sym_val_date] = ACTIONS(911), + [anon_sym_DQUOTE] = ACTIONS(911), + [sym__str_single_quotes] = ACTIONS(911), + [sym__str_back_ticks] = ACTIONS(911), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(911), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(911), + [anon_sym_CARET] = ACTIONS(911), + [aux_sym_unquoted_token5] = ACTIONS(911), + [anon_sym_POUND] = ACTIONS(113), + }, + [848] = { + [sym__expr_unary_minus] = STATE(9980), + [sym_expr_parenthesized] = STATE(8494), + [sym_val_range] = STATE(9990), + [sym__val_range] = STATE(10001), + [sym__val_range_with_end] = STATE(10049), + [sym__value] = STATE(9990), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(9118), + [sym_val_variable] = STATE(5224), + [sym__var] = STATE(4556), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(7035), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(6041), + [sym_val_entry] = STATE(10737), + [sym__list_item_expression] = STATE(10082), + [sym__list_item_starts_with_sign] = STATE(10149), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_short_flag] = STATE(10149), + [sym_long_flag] = STATE(10149), + [sym_long_flag_equals_value] = STATE(3793), + [sym__unquoted_in_list] = STATE(9353), + [sym__unquoted_in_list_with_expr] = STATE(10149), + [sym__unquoted_anonymous_prefix] = STATE(9874), + [sym_comment] = STATE(848), + [aux_sym_list_body_repeat1] = STATE(848), + [anon_sym_LBRACK] = ACTIONS(2240), + [anon_sym_LPAREN] = ACTIONS(2243), + [anon_sym_DOLLAR] = ACTIONS(2246), + [anon_sym_DASH_DASH] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2252), + [anon_sym_LBRACE] = ACTIONS(2255), + [anon_sym_DOT_DOT] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2261), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2264), + [anon_sym_DOT_DOT_LT] = ACTIONS(2264), + [anon_sym_null] = ACTIONS(2267), + [anon_sym_true] = ACTIONS(2270), + [anon_sym_false] = ACTIONS(2270), + [aux_sym__val_number_decimal_token1] = ACTIONS(2273), + [aux_sym__val_number_decimal_token2] = ACTIONS(2276), + [anon_sym_DOT2] = ACTIONS(2279), + [aux_sym__val_number_decimal_token3] = ACTIONS(2282), + [aux_sym__val_number_token1] = ACTIONS(2285), + [aux_sym__val_number_token2] = ACTIONS(2285), + [aux_sym__val_number_token3] = ACTIONS(2285), + [aux_sym__val_number_token4] = ACTIONS(2288), + [aux_sym__val_number_token5] = ACTIONS(2288), + [aux_sym__val_number_token6] = ACTIONS(2288), + [anon_sym_0b] = ACTIONS(2291), + [anon_sym_0o] = ACTIONS(2294), + [anon_sym_0x] = ACTIONS(2294), + [sym_val_date] = ACTIONS(2297), + [anon_sym_DQUOTE] = ACTIONS(2300), + [sym__str_single_quotes] = ACTIONS(2303), + [sym__str_back_ticks] = ACTIONS(2303), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2306), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2309), + [anon_sym_err_GT] = ACTIONS(2312), + [anon_sym_out_GT] = ACTIONS(2312), + [anon_sym_e_GT] = ACTIONS(2312), + [anon_sym_o_GT] = ACTIONS(2312), + [anon_sym_err_PLUSout_GT] = ACTIONS(2312), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2312), + [anon_sym_o_PLUSe_GT] = ACTIONS(2312), + [anon_sym_e_PLUSo_GT] = ACTIONS(2312), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2315), + [anon_sym_POUND] = ACTIONS(3), + }, + [849] = { + [sym_comment] = STATE(849), + [anon_sym_LBRACK] = ACTIONS(911), + [anon_sym_COMMA] = ACTIONS(911), + [anon_sym_RBRACK] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_DOLLAR] = ACTIONS(911), + [anon_sym_GT] = ACTIONS(911), + [anon_sym_DASH_DASH] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_in] = ACTIONS(911), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(911), + [anon_sym_STAR_STAR] = ACTIONS(911), + [anon_sym_PLUS_PLUS] = ACTIONS(911), + [anon_sym_SLASH] = ACTIONS(911), + [anon_sym_mod] = ACTIONS(911), + [anon_sym_SLASH_SLASH] = ACTIONS(911), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_bit_DASHshl] = ACTIONS(911), + [anon_sym_bit_DASHshr] = ACTIONS(911), + [anon_sym_EQ_EQ] = ACTIONS(911), + [anon_sym_BANG_EQ] = ACTIONS(911), + [anon_sym_LT2] = ACTIONS(911), + [anon_sym_LT_EQ] = ACTIONS(911), + [anon_sym_GT_EQ] = ACTIONS(911), + [anon_sym_not_DASHin] = ACTIONS(911), + [anon_sym_starts_DASHwith] = ACTIONS(911), + [anon_sym_ends_DASHwith] = ACTIONS(911), + [anon_sym_EQ_TILDE] = ACTIONS(911), + [anon_sym_BANG_TILDE] = ACTIONS(911), + [anon_sym_bit_DASHand] = ACTIONS(911), + [anon_sym_bit_DASHxor] = ACTIONS(911), + [anon_sym_bit_DASHor] = ACTIONS(911), + [anon_sym_and] = ACTIONS(911), + [anon_sym_xor] = ACTIONS(911), + [anon_sym_or] = ACTIONS(911), + [anon_sym_DOT_DOT2] = ACTIONS(911), + [anon_sym_DOT] = ACTIONS(911), + [anon_sym_DOT_DOT_EQ] = ACTIONS(911), + [anon_sym_DOT_DOT_LT] = ACTIONS(911), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(913), + [anon_sym_DOT_DOT_LT2] = ACTIONS(913), + [aux_sym__immediate_decimal_token2] = ACTIONS(2318), + [anon_sym_null] = ACTIONS(911), + [anon_sym_true] = ACTIONS(911), + [anon_sym_false] = ACTIONS(911), + [aux_sym__val_number_decimal_token1] = ACTIONS(911), + [aux_sym__val_number_decimal_token2] = ACTIONS(911), + [anon_sym_DOT2] = ACTIONS(911), + [aux_sym__val_number_decimal_token3] = ACTIONS(911), + [aux_sym__val_number_token1] = ACTIONS(911), + [aux_sym__val_number_token2] = ACTIONS(911), + [aux_sym__val_number_token3] = ACTIONS(911), + [aux_sym__val_number_token4] = ACTIONS(911), + [aux_sym__val_number_token5] = ACTIONS(911), + [aux_sym__val_number_token6] = ACTIONS(911), + [anon_sym_0b] = ACTIONS(911), + [sym_filesize_unit] = ACTIONS(911), + [sym_duration_unit] = ACTIONS(913), + [anon_sym_0o] = ACTIONS(911), + [anon_sym_0x] = ACTIONS(911), + [sym_val_date] = ACTIONS(911), + [anon_sym_DQUOTE] = ACTIONS(911), + [sym__str_single_quotes] = ACTIONS(911), + [sym__str_back_ticks] = ACTIONS(911), + [sym__entry_separator] = ACTIONS(913), + [anon_sym_err_GT] = ACTIONS(911), + [anon_sym_out_GT] = ACTIONS(911), + [anon_sym_e_GT] = ACTIONS(911), + [anon_sym_o_GT] = ACTIONS(911), + [anon_sym_err_PLUSout_GT] = ACTIONS(911), + [anon_sym_out_PLUSerr_GT] = ACTIONS(911), + [anon_sym_o_PLUSe_GT] = ACTIONS(911), + [anon_sym_e_PLUSo_GT] = ACTIONS(911), + [aux_sym_unquoted_token5] = ACTIONS(911), + [aux_sym__unquoted_in_list_token1] = ACTIONS(911), + [anon_sym_POUND] = ACTIONS(113), + }, + [850] = { + [sym_comment] = STATE(850), + [anon_sym_export] = ACTIONS(893), + [anon_sym_alias] = ACTIONS(893), + [anon_sym_let] = ACTIONS(893), + [anon_sym_let_DASHenv] = ACTIONS(893), + [anon_sym_mut] = ACTIONS(893), + [anon_sym_const] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(893), + [sym_cmd_identifier] = ACTIONS(893), + [anon_sym_LF] = ACTIONS(895), + [anon_sym_def] = ACTIONS(893), + [anon_sym_export_DASHenv] = ACTIONS(893), + [anon_sym_extern] = ACTIONS(893), + [anon_sym_module] = ACTIONS(893), + [anon_sym_use] = ACTIONS(893), + [anon_sym_LBRACK] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(893), + [anon_sym_RPAREN] = ACTIONS(893), + [anon_sym_DOLLAR] = ACTIONS(893), + [anon_sym_error] = ACTIONS(893), + [anon_sym_DASH_DASH] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_break] = ACTIONS(893), + [anon_sym_continue] = ACTIONS(893), + [anon_sym_for] = ACTIONS(893), + [anon_sym_loop] = ACTIONS(893), + [anon_sym_while] = ACTIONS(893), + [anon_sym_do] = ACTIONS(893), + [anon_sym_if] = ACTIONS(893), + [anon_sym_match] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(893), + [anon_sym_DOT_DOT] = ACTIONS(893), + [anon_sym_try] = ACTIONS(893), + [anon_sym_return] = ACTIONS(893), + [anon_sym_source] = ACTIONS(893), + [anon_sym_source_DASHenv] = ACTIONS(893), + [anon_sym_register] = ACTIONS(893), + [anon_sym_hide] = ACTIONS(893), + [anon_sym_hide_DASHenv] = ACTIONS(893), + [anon_sym_overlay] = ACTIONS(893), + [anon_sym_as] = ACTIONS(893), + [anon_sym_where] = ACTIONS(893), + [anon_sym_not] = ACTIONS(893), + [anon_sym_LPAREN2] = ACTIONS(895), + [anon_sym_DOT_DOT2] = ACTIONS(893), + [anon_sym_DOT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ] = ACTIONS(893), + [anon_sym_DOT_DOT_LT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), + [anon_sym_DOT_DOT_LT2] = ACTIONS(895), + [anon_sym_null] = ACTIONS(893), + [anon_sym_true] = ACTIONS(893), + [anon_sym_false] = ACTIONS(893), + [aux_sym__val_number_decimal_token1] = ACTIONS(893), + [aux_sym__val_number_decimal_token2] = ACTIONS(893), + [anon_sym_DOT2] = ACTIONS(893), + [aux_sym__val_number_decimal_token3] = ACTIONS(893), + [aux_sym__val_number_token1] = ACTIONS(893), + [aux_sym__val_number_token2] = ACTIONS(893), + [aux_sym__val_number_token3] = ACTIONS(893), + [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(893), + [sym_filesize_unit] = ACTIONS(893), + [sym_duration_unit] = ACTIONS(893), + [anon_sym_0o] = ACTIONS(893), + [anon_sym_0x] = ACTIONS(893), + [sym_val_date] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(893), + [sym__str_single_quotes] = ACTIONS(893), + [sym__str_back_ticks] = ACTIONS(893), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(893), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(893), + [anon_sym_CARET] = ACTIONS(893), + [aux_sym_unquoted_token5] = ACTIONS(893), + [anon_sym_POUND] = ACTIONS(113), + }, + [851] = { + [sym__expr_unary_minus] = STATE(9980), + [sym_expr_parenthesized] = STATE(8494), + [sym_val_range] = STATE(9990), + [sym__val_range] = STATE(10001), + [sym__val_range_with_end] = STATE(10049), + [sym__value] = STATE(9990), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(9118), + [sym_val_variable] = STATE(5224), + [sym__var] = STATE(4556), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(7035), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(6041), + [sym_val_entry] = STATE(10096), + [sym__list_item_expression] = STATE(10082), + [sym__list_item_starts_with_sign] = STATE(10149), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_short_flag] = STATE(10149), + [sym_long_flag] = STATE(10149), + [sym_long_flag_equals_value] = STATE(3793), + [sym__unquoted_in_list] = STATE(9353), + [sym__unquoted_in_list_with_expr] = STATE(10149), + [sym__unquoted_anonymous_prefix] = STATE(9874), + [sym_comment] = STATE(851), + [aux_sym_list_body_repeat1] = STATE(848), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1734), + [anon_sym_DOT_DOT_LT] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [aux_sym__val_number_decimal_token1] = ACTIONS(1740), + [aux_sym__val_number_decimal_token2] = ACTIONS(1742), + [anon_sym_DOT2] = ACTIONS(1744), + [aux_sym__val_number_decimal_token3] = ACTIONS(1746), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [aux_sym__val_number_token4] = ACTIONS(1750), + [aux_sym__val_number_token5] = ACTIONS(1750), + [aux_sym__val_number_token6] = ACTIONS(1750), + [anon_sym_0b] = ACTIONS(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(3), + }, + [852] = { + [sym_comment] = STATE(852), + [ts_builtin_sym_end] = ACTIONS(895), + [anon_sym_export] = ACTIONS(893), + [anon_sym_alias] = ACTIONS(893), + [anon_sym_let] = ACTIONS(893), + [anon_sym_let_DASHenv] = ACTIONS(893), + [anon_sym_mut] = ACTIONS(893), + [anon_sym_const] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(893), + [sym_cmd_identifier] = ACTIONS(893), + [anon_sym_LF] = ACTIONS(895), + [anon_sym_def] = ACTIONS(893), + [anon_sym_export_DASHenv] = ACTIONS(893), + [anon_sym_extern] = ACTIONS(893), + [anon_sym_module] = ACTIONS(893), + [anon_sym_use] = ACTIONS(893), + [anon_sym_LBRACK] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(893), + [anon_sym_DOLLAR] = ACTIONS(893), + [anon_sym_error] = ACTIONS(893), + [anon_sym_DASH_DASH] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_break] = ACTIONS(893), + [anon_sym_continue] = ACTIONS(893), + [anon_sym_for] = ACTIONS(893), + [anon_sym_loop] = ACTIONS(893), + [anon_sym_while] = ACTIONS(893), + [anon_sym_do] = ACTIONS(893), + [anon_sym_if] = ACTIONS(893), + [anon_sym_match] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_DOT_DOT] = ACTIONS(893), + [anon_sym_try] = ACTIONS(893), + [anon_sym_return] = ACTIONS(893), + [anon_sym_source] = ACTIONS(893), + [anon_sym_source_DASHenv] = ACTIONS(893), + [anon_sym_register] = ACTIONS(893), + [anon_sym_hide] = ACTIONS(893), + [anon_sym_hide_DASHenv] = ACTIONS(893), + [anon_sym_overlay] = ACTIONS(893), + [anon_sym_as] = ACTIONS(893), + [anon_sym_where] = ACTIONS(893), + [anon_sym_not] = ACTIONS(893), + [anon_sym_LPAREN2] = ACTIONS(895), + [anon_sym_DOT_DOT2] = ACTIONS(893), + [anon_sym_DOT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ] = ACTIONS(893), + [anon_sym_DOT_DOT_LT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), + [anon_sym_DOT_DOT_LT2] = ACTIONS(895), + [aux_sym__immediate_decimal_token2] = ACTIONS(2205), + [anon_sym_null] = ACTIONS(893), + [anon_sym_true] = ACTIONS(893), + [anon_sym_false] = ACTIONS(893), + [aux_sym__val_number_decimal_token1] = ACTIONS(893), + [aux_sym__val_number_decimal_token2] = ACTIONS(893), + [anon_sym_DOT2] = ACTIONS(893), + [aux_sym__val_number_decimal_token3] = ACTIONS(893), + [aux_sym__val_number_token1] = ACTIONS(893), + [aux_sym__val_number_token2] = ACTIONS(893), + [aux_sym__val_number_token3] = ACTIONS(893), + [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(893), + [sym_filesize_unit] = ACTIONS(893), + [sym_duration_unit] = ACTIONS(893), + [anon_sym_0o] = ACTIONS(893), + [anon_sym_0x] = ACTIONS(893), + [sym_val_date] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(893), + [sym__str_single_quotes] = ACTIONS(893), + [sym__str_back_ticks] = ACTIONS(893), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(893), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(893), + [anon_sym_CARET] = ACTIONS(893), + [aux_sym_unquoted_token5] = ACTIONS(893), + [anon_sym_POUND] = ACTIONS(113), + }, + [853] = { + [sym__expr_parenthesized_immediate] = STATE(1261), + [sym__immediate_decimal] = STATE(1262), + [sym_val_variable] = STATE(1261), + [sym__var] = STATE(967), + [sym_comment] = STATE(853), + [ts_builtin_sym_end] = ACTIONS(2171), + [anon_sym_export] = ACTIONS(2169), + [anon_sym_alias] = ACTIONS(2169), + [anon_sym_let] = ACTIONS(2169), + [anon_sym_let_DASHenv] = ACTIONS(2169), + [anon_sym_mut] = ACTIONS(2169), + [anon_sym_const] = ACTIONS(2169), + [anon_sym_SEMI] = ACTIONS(2169), + [sym_cmd_identifier] = ACTIONS(2169), + [anon_sym_LF] = ACTIONS(2171), + [anon_sym_def] = ACTIONS(2169), + [anon_sym_export_DASHenv] = ACTIONS(2169), + [anon_sym_extern] = ACTIONS(2169), + [anon_sym_module] = ACTIONS(2169), + [anon_sym_use] = ACTIONS(2169), + [anon_sym_LBRACK] = ACTIONS(2169), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_error] = ACTIONS(2169), + [anon_sym_DASH_DASH] = ACTIONS(2169), + [anon_sym_DASH] = ACTIONS(2169), + [anon_sym_break] = ACTIONS(2169), + [anon_sym_continue] = ACTIONS(2169), + [anon_sym_for] = ACTIONS(2169), + [anon_sym_loop] = ACTIONS(2169), + [anon_sym_while] = ACTIONS(2169), + [anon_sym_do] = ACTIONS(2169), + [anon_sym_if] = ACTIONS(2169), + [anon_sym_match] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2169), + [anon_sym_DOT_DOT] = ACTIONS(2169), + [anon_sym_try] = ACTIONS(2169), + [anon_sym_return] = ACTIONS(2169), + [anon_sym_source] = ACTIONS(2169), + [anon_sym_source_DASHenv] = ACTIONS(2169), + [anon_sym_register] = ACTIONS(2169), + [anon_sym_hide] = ACTIONS(2169), + [anon_sym_hide_DASHenv] = ACTIONS(2169), + [anon_sym_overlay] = ACTIONS(2169), + [anon_sym_as] = ACTIONS(2169), + [anon_sym_where] = ACTIONS(2169), + [anon_sym_not] = ACTIONS(2169), + [anon_sym_LPAREN2] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(2320), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2169), + [anon_sym_DOT_DOT_LT] = ACTIONS(2169), + [aux_sym__immediate_decimal_token1] = ACTIONS(2322), + [aux_sym__immediate_decimal_token3] = ACTIONS(2322), + [aux_sym__immediate_decimal_token4] = ACTIONS(2324), + [anon_sym_null] = ACTIONS(2169), + [anon_sym_true] = ACTIONS(2169), + [anon_sym_false] = ACTIONS(2169), + [aux_sym__val_number_decimal_token1] = ACTIONS(2169), + [aux_sym__val_number_decimal_token2] = ACTIONS(2169), + [anon_sym_DOT2] = ACTIONS(2169), + [aux_sym__val_number_decimal_token3] = ACTIONS(2169), + [aux_sym__val_number_token1] = ACTIONS(2169), + [aux_sym__val_number_token2] = ACTIONS(2169), + [aux_sym__val_number_token3] = ACTIONS(2169), + [aux_sym__val_number_token4] = ACTIONS(2169), + [aux_sym__val_number_token5] = ACTIONS(2169), + [aux_sym__val_number_token6] = ACTIONS(2169), + [anon_sym_0b] = ACTIONS(2169), + [anon_sym_0o] = ACTIONS(2169), + [anon_sym_0x] = ACTIONS(2169), + [sym_val_date] = ACTIONS(2169), + [anon_sym_DQUOTE] = ACTIONS(2169), + [sym__str_single_quotes] = ACTIONS(2169), + [sym__str_back_ticks] = ACTIONS(2169), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2169), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2169), + [anon_sym_CARET] = ACTIONS(2169), + [anon_sym_POUND] = ACTIONS(113), + }, + [854] = { + [sym__expr_parenthesized_immediate] = STATE(2071), + [sym__immediate_decimal] = STATE(2072), + [sym_val_variable] = STATE(2071), + [sym__var] = STATE(1191), + [sym_comment] = STATE(854), + [ts_builtin_sym_end] = ACTIONS(2171), + [anon_sym_export] = ACTIONS(2169), + [anon_sym_alias] = ACTIONS(2169), + [anon_sym_let] = ACTIONS(2169), + [anon_sym_let_DASHenv] = ACTIONS(2169), + [anon_sym_mut] = ACTIONS(2169), + [anon_sym_const] = ACTIONS(2169), + [anon_sym_SEMI] = ACTIONS(2169), + [sym_cmd_identifier] = ACTIONS(2169), + [anon_sym_LF] = ACTIONS(2171), + [anon_sym_def] = ACTIONS(2169), + [anon_sym_export_DASHenv] = ACTIONS(2169), + [anon_sym_extern] = ACTIONS(2169), + [anon_sym_module] = ACTIONS(2169), + [anon_sym_use] = ACTIONS(2169), + [anon_sym_LBRACK] = ACTIONS(2169), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_DOLLAR] = ACTIONS(2155), + [anon_sym_error] = ACTIONS(2169), + [anon_sym_DASH_DASH] = ACTIONS(2169), + [anon_sym_DASH] = ACTIONS(2169), + [anon_sym_break] = ACTIONS(2169), + [anon_sym_continue] = ACTIONS(2169), + [anon_sym_for] = ACTIONS(2169), + [anon_sym_loop] = ACTIONS(2169), + [anon_sym_while] = ACTIONS(2169), + [anon_sym_do] = ACTIONS(2169), + [anon_sym_if] = ACTIONS(2169), + [anon_sym_match] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2169), + [anon_sym_DOT_DOT] = ACTIONS(2169), + [anon_sym_try] = ACTIONS(2169), + [anon_sym_return] = ACTIONS(2169), + [anon_sym_source] = ACTIONS(2169), + [anon_sym_source_DASHenv] = ACTIONS(2169), + [anon_sym_register] = ACTIONS(2169), + [anon_sym_hide] = ACTIONS(2169), + [anon_sym_hide_DASHenv] = ACTIONS(2169), + [anon_sym_overlay] = ACTIONS(2169), + [anon_sym_as] = ACTIONS(2169), + [anon_sym_where] = ACTIONS(2169), + [anon_sym_not] = ACTIONS(2169), + [anon_sym_LPAREN2] = ACTIONS(2157), + [anon_sym_DOT] = ACTIONS(2326), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2169), + [anon_sym_DOT_DOT_LT] = ACTIONS(2169), + [aux_sym__immediate_decimal_token1] = ACTIONS(2328), + [aux_sym__immediate_decimal_token3] = ACTIONS(2328), + [aux_sym__immediate_decimal_token4] = ACTIONS(2330), + [anon_sym_null] = ACTIONS(2169), + [anon_sym_true] = ACTIONS(2169), + [anon_sym_false] = ACTIONS(2169), + [aux_sym__val_number_decimal_token1] = ACTIONS(2169), + [aux_sym__val_number_decimal_token2] = ACTIONS(2169), + [anon_sym_DOT2] = ACTIONS(2169), + [aux_sym__val_number_decimal_token3] = ACTIONS(2169), + [aux_sym__val_number_token1] = ACTIONS(2169), + [aux_sym__val_number_token2] = ACTIONS(2169), + [aux_sym__val_number_token3] = ACTIONS(2169), + [aux_sym__val_number_token4] = ACTIONS(2169), + [aux_sym__val_number_token5] = ACTIONS(2169), + [aux_sym__val_number_token6] = ACTIONS(2169), + [anon_sym_0b] = ACTIONS(2169), + [anon_sym_0o] = ACTIONS(2169), + [anon_sym_0x] = ACTIONS(2169), + [sym_val_date] = ACTIONS(2169), + [anon_sym_DQUOTE] = ACTIONS(2169), + [sym__str_single_quotes] = ACTIONS(2169), + [sym__str_back_ticks] = ACTIONS(2169), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2169), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2169), + [anon_sym_CARET] = ACTIONS(2169), + [anon_sym_POUND] = ACTIONS(113), + }, + [855] = { + [sym_comment] = STATE(855), + [ts_builtin_sym_end] = ACTIONS(903), + [anon_sym_export] = ACTIONS(901), + [anon_sym_alias] = ACTIONS(901), + [anon_sym_let] = ACTIONS(901), + [anon_sym_let_DASHenv] = ACTIONS(901), + [anon_sym_mut] = ACTIONS(901), + [anon_sym_const] = ACTIONS(901), + [anon_sym_SEMI] = ACTIONS(901), + [sym_cmd_identifier] = ACTIONS(901), + [anon_sym_LF] = ACTIONS(903), + [anon_sym_def] = ACTIONS(901), + [anon_sym_export_DASHenv] = ACTIONS(901), + [anon_sym_extern] = ACTIONS(901), + [anon_sym_module] = ACTIONS(901), + [anon_sym_use] = ACTIONS(901), + [anon_sym_LBRACK] = ACTIONS(901), + [anon_sym_LPAREN] = ACTIONS(901), + [anon_sym_DOLLAR] = ACTIONS(901), + [anon_sym_error] = ACTIONS(901), + [anon_sym_DASH_DASH] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_break] = ACTIONS(901), + [anon_sym_continue] = ACTIONS(901), + [anon_sym_for] = ACTIONS(901), + [anon_sym_loop] = ACTIONS(901), + [anon_sym_while] = ACTIONS(901), + [anon_sym_do] = ACTIONS(901), + [anon_sym_if] = ACTIONS(901), + [anon_sym_match] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(901), + [anon_sym_DOT_DOT] = ACTIONS(901), + [anon_sym_try] = ACTIONS(901), + [anon_sym_return] = ACTIONS(901), + [anon_sym_source] = ACTIONS(901), + [anon_sym_source_DASHenv] = ACTIONS(901), + [anon_sym_register] = ACTIONS(901), + [anon_sym_hide] = ACTIONS(901), + [anon_sym_hide_DASHenv] = ACTIONS(901), + [anon_sym_overlay] = ACTIONS(901), + [anon_sym_as] = ACTIONS(901), + [anon_sym_where] = ACTIONS(901), + [anon_sym_not] = ACTIONS(901), + [anon_sym_LPAREN2] = ACTIONS(903), + [anon_sym_DOT_DOT2] = ACTIONS(901), + [anon_sym_DOT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ] = ACTIONS(901), + [anon_sym_DOT_DOT_LT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(903), + [anon_sym_DOT_DOT_LT2] = ACTIONS(903), + [aux_sym__immediate_decimal_token2] = ACTIONS(2332), + [anon_sym_null] = ACTIONS(901), + [anon_sym_true] = ACTIONS(901), + [anon_sym_false] = ACTIONS(901), + [aux_sym__val_number_decimal_token1] = ACTIONS(901), + [aux_sym__val_number_decimal_token2] = ACTIONS(901), + [anon_sym_DOT2] = ACTIONS(901), + [aux_sym__val_number_decimal_token3] = ACTIONS(901), + [aux_sym__val_number_token1] = ACTIONS(901), + [aux_sym__val_number_token2] = ACTIONS(901), + [aux_sym__val_number_token3] = ACTIONS(901), + [aux_sym__val_number_token4] = ACTIONS(901), + [aux_sym__val_number_token5] = ACTIONS(901), + [aux_sym__val_number_token6] = ACTIONS(901), + [anon_sym_0b] = ACTIONS(901), + [sym_filesize_unit] = ACTIONS(901), + [sym_duration_unit] = ACTIONS(901), + [anon_sym_0o] = ACTIONS(901), + [anon_sym_0x] = ACTIONS(901), + [sym_val_date] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [sym__str_single_quotes] = ACTIONS(901), + [sym__str_back_ticks] = ACTIONS(901), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(901), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(901), + [anon_sym_CARET] = ACTIONS(901), + [aux_sym_unquoted_token5] = ACTIONS(901), + [anon_sym_POUND] = ACTIONS(113), + }, + [856] = { + [sym_comment] = STATE(856), + [anon_sym_export] = ACTIONS(934), + [anon_sym_alias] = ACTIONS(934), + [anon_sym_let] = ACTIONS(934), + [anon_sym_let_DASHenv] = ACTIONS(934), + [anon_sym_mut] = ACTIONS(934), + [anon_sym_const] = ACTIONS(934), + [anon_sym_SEMI] = ACTIONS(934), + [sym_cmd_identifier] = ACTIONS(934), + [anon_sym_LF] = ACTIONS(936), + [anon_sym_def] = ACTIONS(934), + [anon_sym_export_DASHenv] = ACTIONS(934), + [anon_sym_extern] = ACTIONS(934), + [anon_sym_module] = ACTIONS(934), + [anon_sym_use] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(934), + [anon_sym_LPAREN] = ACTIONS(934), + [anon_sym_RPAREN] = ACTIONS(934), + [anon_sym_DOLLAR] = ACTIONS(934), + [anon_sym_error] = ACTIONS(934), + [anon_sym_DASH_DASH] = ACTIONS(934), + [anon_sym_DASH] = ACTIONS(934), + [anon_sym_break] = ACTIONS(934), + [anon_sym_continue] = ACTIONS(934), + [anon_sym_for] = ACTIONS(934), + [anon_sym_loop] = ACTIONS(934), + [anon_sym_while] = ACTIONS(934), + [anon_sym_do] = ACTIONS(934), + [anon_sym_if] = ACTIONS(934), + [anon_sym_match] = ACTIONS(934), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_RBRACE] = ACTIONS(934), + [anon_sym_DOT_DOT] = ACTIONS(934), + [anon_sym_try] = ACTIONS(934), + [anon_sym_return] = ACTIONS(934), + [anon_sym_source] = ACTIONS(934), + [anon_sym_source_DASHenv] = ACTIONS(934), + [anon_sym_register] = ACTIONS(934), + [anon_sym_hide] = ACTIONS(934), + [anon_sym_hide_DASHenv] = ACTIONS(934), + [anon_sym_overlay] = ACTIONS(934), + [anon_sym_as] = ACTIONS(934), + [anon_sym_where] = ACTIONS(934), + [anon_sym_not] = ACTIONS(934), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_DOT_DOT2] = ACTIONS(934), + [anon_sym_DOT] = ACTIONS(934), + [anon_sym_DOT_DOT_EQ] = ACTIONS(934), + [anon_sym_DOT_DOT_LT] = ACTIONS(934), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(936), + [anon_sym_DOT_DOT_LT2] = ACTIONS(936), + [anon_sym_null] = ACTIONS(934), + [anon_sym_true] = ACTIONS(934), + [anon_sym_false] = ACTIONS(934), + [aux_sym__val_number_decimal_token1] = ACTIONS(934), + [aux_sym__val_number_decimal_token2] = ACTIONS(934), + [anon_sym_DOT2] = ACTIONS(934), + [aux_sym__val_number_decimal_token3] = ACTIONS(934), + [aux_sym__val_number_token1] = ACTIONS(934), + [aux_sym__val_number_token2] = ACTIONS(934), + [aux_sym__val_number_token3] = ACTIONS(934), + [aux_sym__val_number_token4] = ACTIONS(934), + [aux_sym__val_number_token5] = ACTIONS(934), + [aux_sym__val_number_token6] = ACTIONS(934), + [anon_sym_0b] = ACTIONS(934), + [sym_filesize_unit] = ACTIONS(934), + [sym_duration_unit] = ACTIONS(934), + [anon_sym_0o] = ACTIONS(934), + [anon_sym_0x] = ACTIONS(934), + [sym_val_date] = ACTIONS(934), + [anon_sym_DQUOTE] = ACTIONS(934), + [sym__str_single_quotes] = ACTIONS(934), + [sym__str_back_ticks] = ACTIONS(934), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(934), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(934), + [anon_sym_CARET] = ACTIONS(934), + [aux_sym_unquoted_token5] = ACTIONS(934), + [anon_sym_POUND] = ACTIONS(113), + }, + [857] = { + [sym_comment] = STATE(857), + [anon_sym_LBRACK] = ACTIONS(895), + [anon_sym_COMMA] = ACTIONS(895), + [anon_sym_RBRACK] = ACTIONS(895), + [anon_sym_LPAREN] = ACTIONS(895), + [anon_sym_DOLLAR] = ACTIONS(895), + [anon_sym_GT] = ACTIONS(893), + [anon_sym_DASH_DASH] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_in] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(895), + [anon_sym_DOT_DOT] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(893), + [anon_sym_STAR_STAR] = ACTIONS(895), + [anon_sym_PLUS_PLUS] = ACTIONS(895), + [anon_sym_SLASH] = ACTIONS(893), + [anon_sym_mod] = ACTIONS(895), + [anon_sym_SLASH_SLASH] = ACTIONS(895), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_bit_DASHshl] = ACTIONS(895), + [anon_sym_bit_DASHshr] = ACTIONS(895), + [anon_sym_EQ_EQ] = ACTIONS(895), + [anon_sym_BANG_EQ] = ACTIONS(895), + [anon_sym_LT2] = ACTIONS(893), + [anon_sym_LT_EQ] = ACTIONS(895), + [anon_sym_GT_EQ] = ACTIONS(895), + [anon_sym_not_DASHin] = ACTIONS(895), + [anon_sym_starts_DASHwith] = ACTIONS(895), + [anon_sym_ends_DASHwith] = ACTIONS(895), + [anon_sym_EQ_TILDE] = ACTIONS(895), + [anon_sym_BANG_TILDE] = ACTIONS(895), + [anon_sym_bit_DASHand] = ACTIONS(895), + [anon_sym_bit_DASHxor] = ACTIONS(895), + [anon_sym_bit_DASHor] = ACTIONS(895), + [anon_sym_and] = ACTIONS(895), + [anon_sym_xor] = ACTIONS(895), + [anon_sym_or] = ACTIONS(895), + [anon_sym_DOT_DOT2] = ACTIONS(893), + [anon_sym_DOT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ] = ACTIONS(893), + [anon_sym_DOT_DOT_LT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), + [anon_sym_DOT_DOT_LT2] = ACTIONS(895), + [aux_sym__immediate_decimal_token1] = ACTIONS(2334), + [aux_sym__immediate_decimal_token2] = ACTIONS(2336), + [anon_sym_null] = ACTIONS(895), + [anon_sym_true] = ACTIONS(895), + [anon_sym_false] = ACTIONS(895), + [aux_sym__val_number_decimal_token1] = ACTIONS(893), + [aux_sym__val_number_decimal_token2] = ACTIONS(895), + [anon_sym_DOT2] = ACTIONS(893), + [aux_sym__val_number_decimal_token3] = ACTIONS(895), + [aux_sym__val_number_token1] = ACTIONS(895), + [aux_sym__val_number_token2] = ACTIONS(895), + [aux_sym__val_number_token3] = ACTIONS(895), + [aux_sym__val_number_token4] = ACTIONS(895), + [aux_sym__val_number_token5] = ACTIONS(895), + [aux_sym__val_number_token6] = ACTIONS(895), + [anon_sym_0b] = ACTIONS(893), + [sym_filesize_unit] = ACTIONS(893), + [sym_duration_unit] = ACTIONS(895), + [anon_sym_0o] = ACTIONS(893), + [anon_sym_0x] = ACTIONS(893), + [sym_val_date] = ACTIONS(895), + [anon_sym_DQUOTE] = ACTIONS(895), + [sym__str_single_quotes] = ACTIONS(895), + [sym__str_back_ticks] = ACTIONS(895), + [anon_sym_err_GT] = ACTIONS(895), + [anon_sym_out_GT] = ACTIONS(895), + [anon_sym_e_GT] = ACTIONS(895), + [anon_sym_o_GT] = ACTIONS(895), + [anon_sym_err_PLUSout_GT] = ACTIONS(895), + [anon_sym_out_PLUSerr_GT] = ACTIONS(895), + [anon_sym_o_PLUSe_GT] = ACTIONS(895), + [anon_sym_e_PLUSo_GT] = ACTIONS(895), + [aux_sym_unquoted_token5] = ACTIONS(893), + [aux_sym__unquoted_in_list_token1] = ACTIONS(893), + [anon_sym_POUND] = ACTIONS(3), + }, + [858] = { + [sym_comment] = STATE(858), + [anon_sym_export] = ACTIONS(901), + [anon_sym_alias] = ACTIONS(901), + [anon_sym_let] = ACTIONS(901), + [anon_sym_let_DASHenv] = ACTIONS(901), + [anon_sym_mut] = ACTIONS(901), + [anon_sym_const] = ACTIONS(901), + [anon_sym_SEMI] = ACTIONS(901), + [sym_cmd_identifier] = ACTIONS(901), + [anon_sym_LF] = ACTIONS(903), + [anon_sym_def] = ACTIONS(901), + [anon_sym_export_DASHenv] = ACTIONS(901), + [anon_sym_extern] = ACTIONS(901), + [anon_sym_module] = ACTIONS(901), + [anon_sym_use] = ACTIONS(901), + [anon_sym_LBRACK] = ACTIONS(901), + [anon_sym_LPAREN] = ACTIONS(901), + [anon_sym_RPAREN] = ACTIONS(901), + [anon_sym_DOLLAR] = ACTIONS(901), + [anon_sym_error] = ACTIONS(901), + [anon_sym_DASH_DASH] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_break] = ACTIONS(901), + [anon_sym_continue] = ACTIONS(901), + [anon_sym_for] = ACTIONS(901), + [anon_sym_loop] = ACTIONS(901), + [anon_sym_while] = ACTIONS(901), + [anon_sym_do] = ACTIONS(901), + [anon_sym_if] = ACTIONS(901), + [anon_sym_match] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(901), + [anon_sym_RBRACE] = ACTIONS(901), + [anon_sym_DOT_DOT] = ACTIONS(901), + [anon_sym_try] = ACTIONS(901), + [anon_sym_return] = ACTIONS(901), + [anon_sym_source] = ACTIONS(901), + [anon_sym_source_DASHenv] = ACTIONS(901), + [anon_sym_register] = ACTIONS(901), + [anon_sym_hide] = ACTIONS(901), + [anon_sym_hide_DASHenv] = ACTIONS(901), + [anon_sym_overlay] = ACTIONS(901), + [anon_sym_as] = ACTIONS(901), + [anon_sym_where] = ACTIONS(901), + [anon_sym_not] = ACTIONS(901), + [anon_sym_LPAREN2] = ACTIONS(903), + [anon_sym_DOT_DOT2] = ACTIONS(901), + [anon_sym_DOT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ] = ACTIONS(901), + [anon_sym_DOT_DOT_LT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(903), + [anon_sym_DOT_DOT_LT2] = ACTIONS(903), + [anon_sym_null] = ACTIONS(901), + [anon_sym_true] = ACTIONS(901), + [anon_sym_false] = ACTIONS(901), + [aux_sym__val_number_decimal_token1] = ACTIONS(901), + [aux_sym__val_number_decimal_token2] = ACTIONS(901), + [anon_sym_DOT2] = ACTIONS(901), + [aux_sym__val_number_decimal_token3] = ACTIONS(901), + [aux_sym__val_number_token1] = ACTIONS(901), + [aux_sym__val_number_token2] = ACTIONS(901), + [aux_sym__val_number_token3] = ACTIONS(901), + [aux_sym__val_number_token4] = ACTIONS(901), + [aux_sym__val_number_token5] = ACTIONS(901), + [aux_sym__val_number_token6] = ACTIONS(901), + [anon_sym_0b] = ACTIONS(901), + [sym_filesize_unit] = ACTIONS(901), + [sym_duration_unit] = ACTIONS(901), + [anon_sym_0o] = ACTIONS(901), + [anon_sym_0x] = ACTIONS(901), + [sym_val_date] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [sym__str_single_quotes] = ACTIONS(901), + [sym__str_back_ticks] = ACTIONS(901), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(901), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(901), + [anon_sym_CARET] = ACTIONS(901), + [aux_sym_unquoted_token5] = ACTIONS(901), + [anon_sym_POUND] = ACTIONS(113), + }, + [859] = { + [sym__expr_parenthesized_immediate] = STATE(2089), + [sym__immediate_decimal] = STATE(2090), + [sym_val_variable] = STATE(2089), + [sym__var] = STATE(1191), + [sym_comment] = STATE(859), + [ts_builtin_sym_end] = ACTIONS(2209), + [anon_sym_export] = ACTIONS(2207), + [anon_sym_alias] = ACTIONS(2207), + [anon_sym_let] = ACTIONS(2207), + [anon_sym_let_DASHenv] = ACTIONS(2207), + [anon_sym_mut] = ACTIONS(2207), + [anon_sym_const] = ACTIONS(2207), + [anon_sym_SEMI] = ACTIONS(2207), + [sym_cmd_identifier] = ACTIONS(2207), + [anon_sym_LF] = ACTIONS(2209), + [anon_sym_def] = ACTIONS(2207), + [anon_sym_export_DASHenv] = ACTIONS(2207), + [anon_sym_extern] = ACTIONS(2207), + [anon_sym_module] = ACTIONS(2207), + [anon_sym_use] = ACTIONS(2207), + [anon_sym_LBRACK] = ACTIONS(2207), + [anon_sym_LPAREN] = ACTIONS(2207), + [anon_sym_DOLLAR] = ACTIONS(2155), + [anon_sym_error] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2207), + [anon_sym_DASH] = ACTIONS(2207), + [anon_sym_break] = ACTIONS(2207), + [anon_sym_continue] = ACTIONS(2207), + [anon_sym_for] = ACTIONS(2207), + [anon_sym_loop] = ACTIONS(2207), + [anon_sym_while] = ACTIONS(2207), + [anon_sym_do] = ACTIONS(2207), + [anon_sym_if] = ACTIONS(2207), + [anon_sym_match] = ACTIONS(2207), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_DOT_DOT] = ACTIONS(2207), + [anon_sym_try] = ACTIONS(2207), + [anon_sym_return] = ACTIONS(2207), + [anon_sym_source] = ACTIONS(2207), + [anon_sym_source_DASHenv] = ACTIONS(2207), + [anon_sym_register] = ACTIONS(2207), + [anon_sym_hide] = ACTIONS(2207), + [anon_sym_hide_DASHenv] = ACTIONS(2207), + [anon_sym_overlay] = ACTIONS(2207), + [anon_sym_as] = ACTIONS(2207), + [anon_sym_where] = ACTIONS(2207), + [anon_sym_not] = ACTIONS(2207), + [anon_sym_LPAREN2] = ACTIONS(2157), + [anon_sym_DOT] = ACTIONS(2326), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2207), + [anon_sym_DOT_DOT_LT] = ACTIONS(2207), + [aux_sym__immediate_decimal_token1] = ACTIONS(2328), + [aux_sym__immediate_decimal_token3] = ACTIONS(2328), + [aux_sym__immediate_decimal_token4] = ACTIONS(2330), + [anon_sym_null] = ACTIONS(2207), + [anon_sym_true] = ACTIONS(2207), + [anon_sym_false] = ACTIONS(2207), + [aux_sym__val_number_decimal_token1] = ACTIONS(2207), + [aux_sym__val_number_decimal_token2] = ACTIONS(2207), + [anon_sym_DOT2] = ACTIONS(2207), + [aux_sym__val_number_decimal_token3] = ACTIONS(2207), + [aux_sym__val_number_token1] = ACTIONS(2207), + [aux_sym__val_number_token2] = ACTIONS(2207), + [aux_sym__val_number_token3] = ACTIONS(2207), + [aux_sym__val_number_token4] = ACTIONS(2207), + [aux_sym__val_number_token5] = ACTIONS(2207), + [aux_sym__val_number_token6] = ACTIONS(2207), + [anon_sym_0b] = ACTIONS(2207), + [anon_sym_0o] = ACTIONS(2207), + [anon_sym_0x] = ACTIONS(2207), + [sym_val_date] = ACTIONS(2207), + [anon_sym_DQUOTE] = ACTIONS(2207), + [sym__str_single_quotes] = ACTIONS(2207), + [sym__str_back_ticks] = ACTIONS(2207), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2207), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2207), + [anon_sym_CARET] = ACTIONS(2207), + [anon_sym_POUND] = ACTIONS(113), + }, + [860] = { + [sym__expr_parenthesized_immediate] = STATE(2091), + [sym__immediate_decimal] = STATE(2093), + [sym_val_variable] = STATE(2091), + [sym__var] = STATE(1191), + [sym_comment] = STATE(860), + [ts_builtin_sym_end] = ACTIONS(2138), + [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), + [anon_sym_SEMI] = ACTIONS(2136), + [sym_cmd_identifier] = ACTIONS(2136), + [anon_sym_LF] = ACTIONS(2138), + [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_LBRACK] = ACTIONS(2136), + [anon_sym_LPAREN] = ACTIONS(2136), + [anon_sym_DOLLAR] = ACTIONS(2155), + [anon_sym_error] = ACTIONS(2136), + [anon_sym_DASH_DASH] = ACTIONS(2136), + [anon_sym_DASH] = ACTIONS(2136), + [anon_sym_break] = ACTIONS(2136), + [anon_sym_continue] = ACTIONS(2136), + [anon_sym_for] = ACTIONS(2136), + [anon_sym_loop] = ACTIONS(2136), + [anon_sym_while] = ACTIONS(2136), + [anon_sym_do] = ACTIONS(2136), + [anon_sym_if] = ACTIONS(2136), + [anon_sym_match] = ACTIONS(2136), + [anon_sym_LBRACE] = ACTIONS(2136), + [anon_sym_DOT_DOT] = ACTIONS(2136), + [anon_sym_try] = 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_where] = ACTIONS(2136), + [anon_sym_not] = ACTIONS(2136), + [anon_sym_LPAREN2] = ACTIONS(2157), + [anon_sym_DOT] = ACTIONS(2326), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2136), + [anon_sym_DOT_DOT_LT] = ACTIONS(2136), + [aux_sym__immediate_decimal_token1] = ACTIONS(2328), + [aux_sym__immediate_decimal_token3] = ACTIONS(2328), + [aux_sym__immediate_decimal_token4] = ACTIONS(2330), + [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), + [anon_sym_DOT2] = ACTIONS(2136), + [aux_sym__val_number_decimal_token3] = 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(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_CARET] = ACTIONS(2136), + [anon_sym_POUND] = ACTIONS(113), + }, + [861] = { + [sym__expr_parenthesized_immediate] = STATE(2101), + [sym__immediate_decimal] = STATE(2102), + [sym_val_variable] = STATE(2101), + [sym__var] = STATE(1191), + [sym_comment] = STATE(861), + [ts_builtin_sym_end] = ACTIONS(2148), + [anon_sym_export] = ACTIONS(2146), + [anon_sym_alias] = ACTIONS(2146), + [anon_sym_let] = ACTIONS(2146), + [anon_sym_let_DASHenv] = ACTIONS(2146), + [anon_sym_mut] = ACTIONS(2146), + [anon_sym_const] = ACTIONS(2146), + [anon_sym_SEMI] = ACTIONS(2146), + [sym_cmd_identifier] = ACTIONS(2146), + [anon_sym_LF] = ACTIONS(2148), + [anon_sym_def] = ACTIONS(2146), + [anon_sym_export_DASHenv] = ACTIONS(2146), + [anon_sym_extern] = ACTIONS(2146), + [anon_sym_module] = ACTIONS(2146), + [anon_sym_use] = ACTIONS(2146), + [anon_sym_LBRACK] = ACTIONS(2146), + [anon_sym_LPAREN] = ACTIONS(2146), + [anon_sym_DOLLAR] = ACTIONS(2155), + [anon_sym_error] = ACTIONS(2146), + [anon_sym_DASH_DASH] = ACTIONS(2146), + [anon_sym_DASH] = ACTIONS(2146), + [anon_sym_break] = ACTIONS(2146), + [anon_sym_continue] = ACTIONS(2146), + [anon_sym_for] = ACTIONS(2146), + [anon_sym_loop] = ACTIONS(2146), + [anon_sym_while] = ACTIONS(2146), + [anon_sym_do] = ACTIONS(2146), + [anon_sym_if] = ACTIONS(2146), + [anon_sym_match] = ACTIONS(2146), + [anon_sym_LBRACE] = ACTIONS(2146), + [anon_sym_DOT_DOT] = ACTIONS(2146), + [anon_sym_try] = ACTIONS(2146), + [anon_sym_return] = ACTIONS(2146), + [anon_sym_source] = ACTIONS(2146), + [anon_sym_source_DASHenv] = ACTIONS(2146), + [anon_sym_register] = ACTIONS(2146), + [anon_sym_hide] = ACTIONS(2146), + [anon_sym_hide_DASHenv] = ACTIONS(2146), + [anon_sym_overlay] = ACTIONS(2146), + [anon_sym_as] = ACTIONS(2146), + [anon_sym_where] = ACTIONS(2146), + [anon_sym_not] = ACTIONS(2146), + [anon_sym_LPAREN2] = ACTIONS(2157), + [anon_sym_DOT] = ACTIONS(2326), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2146), + [anon_sym_DOT_DOT_LT] = ACTIONS(2146), + [aux_sym__immediate_decimal_token1] = ACTIONS(2328), + [aux_sym__immediate_decimal_token3] = ACTIONS(2328), + [aux_sym__immediate_decimal_token4] = ACTIONS(2330), + [anon_sym_null] = ACTIONS(2146), + [anon_sym_true] = ACTIONS(2146), + [anon_sym_false] = ACTIONS(2146), + [aux_sym__val_number_decimal_token1] = ACTIONS(2146), + [aux_sym__val_number_decimal_token2] = ACTIONS(2146), + [anon_sym_DOT2] = ACTIONS(2146), + [aux_sym__val_number_decimal_token3] = ACTIONS(2146), + [aux_sym__val_number_token1] = ACTIONS(2146), + [aux_sym__val_number_token2] = ACTIONS(2146), + [aux_sym__val_number_token3] = ACTIONS(2146), + [aux_sym__val_number_token4] = ACTIONS(2146), + [aux_sym__val_number_token5] = ACTIONS(2146), + [aux_sym__val_number_token6] = ACTIONS(2146), + [anon_sym_0b] = ACTIONS(2146), + [anon_sym_0o] = ACTIONS(2146), + [anon_sym_0x] = ACTIONS(2146), + [sym_val_date] = ACTIONS(2146), + [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_CARET] = ACTIONS(2146), + [anon_sym_POUND] = ACTIONS(113), + }, + [862] = { + [sym_comment] = STATE(862), + [anon_sym_LBRACK] = ACTIONS(911), + [anon_sym_COMMA] = ACTIONS(911), + [anon_sym_RBRACK] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_DOLLAR] = ACTIONS(911), + [anon_sym_GT] = ACTIONS(911), + [anon_sym_DASH_DASH] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_in] = ACTIONS(911), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(911), + [anon_sym_STAR_STAR] = ACTIONS(911), + [anon_sym_PLUS_PLUS] = ACTIONS(911), + [anon_sym_SLASH] = ACTIONS(911), + [anon_sym_mod] = ACTIONS(911), + [anon_sym_SLASH_SLASH] = ACTIONS(911), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_bit_DASHshl] = ACTIONS(911), + [anon_sym_bit_DASHshr] = ACTIONS(911), + [anon_sym_EQ_EQ] = ACTIONS(911), + [anon_sym_BANG_EQ] = ACTIONS(911), + [anon_sym_LT2] = ACTIONS(911), + [anon_sym_LT_EQ] = ACTIONS(911), + [anon_sym_GT_EQ] = ACTIONS(911), + [anon_sym_not_DASHin] = ACTIONS(911), + [anon_sym_starts_DASHwith] = ACTIONS(911), + [anon_sym_ends_DASHwith] = ACTIONS(911), + [anon_sym_EQ_TILDE] = ACTIONS(911), + [anon_sym_BANG_TILDE] = ACTIONS(911), + [anon_sym_bit_DASHand] = ACTIONS(911), + [anon_sym_bit_DASHxor] = ACTIONS(911), + [anon_sym_bit_DASHor] = ACTIONS(911), + [anon_sym_and] = ACTIONS(911), + [anon_sym_xor] = ACTIONS(911), + [anon_sym_or] = ACTIONS(911), + [anon_sym_DOT_DOT2] = ACTIONS(911), + [anon_sym_DOT] = ACTIONS(2338), + [anon_sym_DOT_DOT_EQ] = ACTIONS(911), + [anon_sym_DOT_DOT_LT] = ACTIONS(911), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(913), + [anon_sym_DOT_DOT_LT2] = ACTIONS(913), + [aux_sym__immediate_decimal_token2] = ACTIONS(2318), + [anon_sym_null] = ACTIONS(911), + [anon_sym_true] = ACTIONS(911), + [anon_sym_false] = ACTIONS(911), + [aux_sym__val_number_decimal_token1] = ACTIONS(911), + [aux_sym__val_number_decimal_token2] = ACTIONS(911), + [anon_sym_DOT2] = ACTIONS(911), + [aux_sym__val_number_decimal_token3] = ACTIONS(911), + [aux_sym__val_number_token1] = ACTIONS(911), + [aux_sym__val_number_token2] = ACTIONS(911), + [aux_sym__val_number_token3] = ACTIONS(911), + [aux_sym__val_number_token4] = ACTIONS(911), + [aux_sym__val_number_token5] = ACTIONS(911), + [aux_sym__val_number_token6] = ACTIONS(911), + [anon_sym_0b] = ACTIONS(911), + [sym_filesize_unit] = ACTIONS(911), + [sym_duration_unit] = ACTIONS(913), + [anon_sym_0o] = ACTIONS(911), + [anon_sym_0x] = ACTIONS(911), + [sym_val_date] = ACTIONS(911), + [anon_sym_DQUOTE] = ACTIONS(911), + [sym__str_single_quotes] = ACTIONS(911), + [sym__str_back_ticks] = ACTIONS(911), + [sym__entry_separator] = ACTIONS(913), + [anon_sym_err_GT] = ACTIONS(911), + [anon_sym_out_GT] = ACTIONS(911), + [anon_sym_e_GT] = ACTIONS(911), + [anon_sym_o_GT] = ACTIONS(911), + [anon_sym_err_PLUSout_GT] = ACTIONS(911), + [anon_sym_out_PLUSerr_GT] = ACTIONS(911), + [anon_sym_o_PLUSe_GT] = ACTIONS(911), + [anon_sym_e_PLUSo_GT] = ACTIONS(911), + [aux_sym_unquoted_token5] = ACTIONS(911), + [aux_sym__unquoted_in_list_token1] = ACTIONS(911), + [anon_sym_POUND] = ACTIONS(113), + }, + [863] = { + [sym_comment] = STATE(863), + [anon_sym_LBRACK] = ACTIONS(893), + [anon_sym_COMMA] = ACTIONS(893), + [anon_sym_RBRACK] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(893), + [anon_sym_DOLLAR] = ACTIONS(893), + [anon_sym_GT] = ACTIONS(893), + [anon_sym_DASH_DASH] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_in] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_DOT_DOT] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(893), + [anon_sym_STAR_STAR] = ACTIONS(893), + [anon_sym_PLUS_PLUS] = ACTIONS(893), + [anon_sym_SLASH] = ACTIONS(893), + [anon_sym_mod] = ACTIONS(893), + [anon_sym_SLASH_SLASH] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_bit_DASHshl] = ACTIONS(893), + [anon_sym_bit_DASHshr] = ACTIONS(893), + [anon_sym_EQ_EQ] = ACTIONS(893), + [anon_sym_BANG_EQ] = ACTIONS(893), + [anon_sym_LT2] = ACTIONS(893), + [anon_sym_LT_EQ] = ACTIONS(893), + [anon_sym_GT_EQ] = ACTIONS(893), + [anon_sym_not_DASHin] = ACTIONS(893), + [anon_sym_starts_DASHwith] = ACTIONS(893), + [anon_sym_ends_DASHwith] = ACTIONS(893), + [anon_sym_EQ_TILDE] = ACTIONS(893), + [anon_sym_BANG_TILDE] = ACTIONS(893), + [anon_sym_bit_DASHand] = ACTIONS(893), + [anon_sym_bit_DASHxor] = ACTIONS(893), + [anon_sym_bit_DASHor] = ACTIONS(893), + [anon_sym_and] = ACTIONS(893), + [anon_sym_xor] = ACTIONS(893), + [anon_sym_or] = ACTIONS(893), + [anon_sym_DOT_DOT2] = ACTIONS(893), + [anon_sym_DOT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ] = ACTIONS(893), + [anon_sym_DOT_DOT_LT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), + [anon_sym_DOT_DOT_LT2] = ACTIONS(895), + [anon_sym_null] = ACTIONS(893), + [anon_sym_true] = ACTIONS(893), + [anon_sym_false] = ACTIONS(893), + [aux_sym__val_number_decimal_token1] = ACTIONS(893), + [aux_sym__val_number_decimal_token2] = ACTIONS(893), + [anon_sym_DOT2] = ACTIONS(893), + [aux_sym__val_number_decimal_token3] = ACTIONS(893), + [aux_sym__val_number_token1] = ACTIONS(893), + [aux_sym__val_number_token2] = ACTIONS(893), + [aux_sym__val_number_token3] = ACTIONS(893), + [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(893), + [sym_filesize_unit] = ACTIONS(893), + [sym_duration_unit] = ACTIONS(895), + [anon_sym_0o] = ACTIONS(893), + [anon_sym_0x] = ACTIONS(893), + [sym_val_date] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(893), + [sym__str_single_quotes] = ACTIONS(893), + [sym__str_back_ticks] = ACTIONS(893), + [sym__entry_separator] = ACTIONS(895), + [anon_sym_err_GT] = ACTIONS(893), + [anon_sym_out_GT] = ACTIONS(893), + [anon_sym_e_GT] = ACTIONS(893), + [anon_sym_o_GT] = ACTIONS(893), + [anon_sym_err_PLUSout_GT] = ACTIONS(893), + [anon_sym_out_PLUSerr_GT] = ACTIONS(893), + [anon_sym_o_PLUSe_GT] = ACTIONS(893), + [anon_sym_e_PLUSo_GT] = ACTIONS(893), + [aux_sym_unquoted_token5] = ACTIONS(893), + [aux_sym__unquoted_in_list_token1] = ACTIONS(893), + [anon_sym_POUND] = ACTIONS(113), + }, + [864] = { + [sym_comment] = STATE(864), + [anon_sym_LBRACK] = ACTIONS(903), + [anon_sym_COMMA] = ACTIONS(903), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_DOLLAR] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_in] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(903), + [anon_sym_RBRACE] = ACTIONS(903), + [anon_sym__] = ACTIONS(901), + [anon_sym_DOT_DOT] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_STAR_STAR] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_mod] = ACTIONS(903), + [anon_sym_SLASH_SLASH] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_bit_DASHshl] = ACTIONS(903), + [anon_sym_bit_DASHshr] = ACTIONS(903), + [anon_sym_EQ_EQ] = ACTIONS(903), + [anon_sym_BANG_EQ] = ACTIONS(903), + [anon_sym_LT2] = ACTIONS(901), + [anon_sym_LT_EQ] = ACTIONS(903), + [anon_sym_GT_EQ] = ACTIONS(903), + [anon_sym_not_DASHin] = ACTIONS(903), + [anon_sym_starts_DASHwith] = ACTIONS(903), + [anon_sym_ends_DASHwith] = ACTIONS(903), + [anon_sym_EQ_TILDE] = ACTIONS(903), + [anon_sym_BANG_TILDE] = ACTIONS(903), + [anon_sym_bit_DASHand] = ACTIONS(903), + [anon_sym_bit_DASHxor] = ACTIONS(903), + [anon_sym_bit_DASHor] = ACTIONS(903), + [anon_sym_and] = ACTIONS(903), + [anon_sym_xor] = ACTIONS(903), + [anon_sym_or] = ACTIONS(903), + [anon_sym_DOT_DOT2] = ACTIONS(901), + [anon_sym_DOT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ] = ACTIONS(901), + [anon_sym_DOT_DOT_LT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(903), + [anon_sym_DOT_DOT_LT2] = ACTIONS(903), + [aux_sym__immediate_decimal_token2] = ACTIONS(2341), + [anon_sym_null] = ACTIONS(903), + [anon_sym_true] = ACTIONS(903), + [anon_sym_false] = ACTIONS(903), + [aux_sym__val_number_decimal_token1] = ACTIONS(901), + [aux_sym__val_number_decimal_token2] = ACTIONS(903), + [anon_sym_DOT2] = ACTIONS(901), + [aux_sym__val_number_decimal_token3] = ACTIONS(903), + [aux_sym__val_number_token1] = ACTIONS(903), + [aux_sym__val_number_token2] = ACTIONS(903), + [aux_sym__val_number_token3] = ACTIONS(903), + [aux_sym__val_number_token4] = ACTIONS(903), + [aux_sym__val_number_token5] = ACTIONS(903), + [aux_sym__val_number_token6] = ACTIONS(903), + [anon_sym_0b] = ACTIONS(901), + [sym_filesize_unit] = ACTIONS(901), + [sym_duration_unit] = ACTIONS(903), + [anon_sym_0o] = ACTIONS(901), + [anon_sym_0x] = ACTIONS(901), + [sym_val_date] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(903), + [sym__str_single_quotes] = ACTIONS(903), + [sym__str_back_ticks] = ACTIONS(903), + [anon_sym_err_GT] = ACTIONS(903), + [anon_sym_out_GT] = ACTIONS(903), + [anon_sym_e_GT] = ACTIONS(903), + [anon_sym_o_GT] = ACTIONS(903), + [anon_sym_err_PLUSout_GT] = ACTIONS(903), + [anon_sym_out_PLUSerr_GT] = ACTIONS(903), + [anon_sym_o_PLUSe_GT] = ACTIONS(903), + [anon_sym_e_PLUSo_GT] = ACTIONS(903), + [aux_sym_unquoted_token1] = ACTIONS(901), + [aux_sym_unquoted_token5] = ACTIONS(901), + [anon_sym_POUND] = ACTIONS(3), + }, + [865] = { + [sym_comment] = STATE(865), + [anon_sym_LBRACK] = ACTIONS(913), + [anon_sym_COMMA] = ACTIONS(913), + [anon_sym_RBRACK] = ACTIONS(913), + [anon_sym_LPAREN] = ACTIONS(913), + [anon_sym_DOLLAR] = ACTIONS(913), + [anon_sym_GT] = ACTIONS(911), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_in] = ACTIONS(911), + [anon_sym_LBRACE] = ACTIONS(913), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(911), + [anon_sym_STAR_STAR] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_SLASH] = ACTIONS(911), + [anon_sym_mod] = ACTIONS(913), + [anon_sym_SLASH_SLASH] = ACTIONS(913), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_bit_DASHshl] = ACTIONS(913), + [anon_sym_bit_DASHshr] = ACTIONS(913), + [anon_sym_EQ_EQ] = ACTIONS(913), + [anon_sym_BANG_EQ] = ACTIONS(913), + [anon_sym_LT2] = ACTIONS(911), + [anon_sym_LT_EQ] = ACTIONS(913), + [anon_sym_GT_EQ] = ACTIONS(913), + [anon_sym_not_DASHin] = ACTIONS(913), + [anon_sym_starts_DASHwith] = ACTIONS(913), + [anon_sym_ends_DASHwith] = ACTIONS(913), + [anon_sym_EQ_TILDE] = ACTIONS(913), + [anon_sym_BANG_TILDE] = ACTIONS(913), + [anon_sym_bit_DASHand] = ACTIONS(913), + [anon_sym_bit_DASHxor] = ACTIONS(913), + [anon_sym_bit_DASHor] = ACTIONS(913), + [anon_sym_and] = ACTIONS(913), + [anon_sym_xor] = ACTIONS(913), + [anon_sym_or] = ACTIONS(913), + [anon_sym_DOT_DOT2] = ACTIONS(911), + [anon_sym_DOT] = ACTIONS(911), + [anon_sym_DOT_DOT_EQ] = ACTIONS(911), + [anon_sym_DOT_DOT_LT] = ACTIONS(911), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(913), + [anon_sym_DOT_DOT_LT2] = ACTIONS(913), + [aux_sym__immediate_decimal_token2] = ACTIONS(2343), + [anon_sym_null] = ACTIONS(913), + [anon_sym_true] = ACTIONS(913), + [anon_sym_false] = ACTIONS(913), + [aux_sym__val_number_decimal_token1] = ACTIONS(911), + [aux_sym__val_number_decimal_token2] = ACTIONS(913), + [anon_sym_DOT2] = ACTIONS(911), + [aux_sym__val_number_decimal_token3] = ACTIONS(913), + [aux_sym__val_number_token1] = ACTIONS(913), + [aux_sym__val_number_token2] = ACTIONS(913), + [aux_sym__val_number_token3] = ACTIONS(913), + [aux_sym__val_number_token4] = ACTIONS(913), + [aux_sym__val_number_token5] = ACTIONS(913), + [aux_sym__val_number_token6] = ACTIONS(913), + [anon_sym_0b] = ACTIONS(911), + [sym_filesize_unit] = ACTIONS(911), + [sym_duration_unit] = ACTIONS(913), + [anon_sym_0o] = ACTIONS(911), + [anon_sym_0x] = ACTIONS(911), + [sym_val_date] = ACTIONS(913), + [anon_sym_DQUOTE] = ACTIONS(913), + [sym__str_single_quotes] = ACTIONS(913), + [sym__str_back_ticks] = ACTIONS(913), + [anon_sym_err_GT] = ACTIONS(913), + [anon_sym_out_GT] = ACTIONS(913), + [anon_sym_e_GT] = ACTIONS(913), + [anon_sym_o_GT] = ACTIONS(913), + [anon_sym_err_PLUSout_GT] = ACTIONS(913), + [anon_sym_out_PLUSerr_GT] = ACTIONS(913), + [anon_sym_o_PLUSe_GT] = ACTIONS(913), + [anon_sym_e_PLUSo_GT] = ACTIONS(913), + [aux_sym_unquoted_token5] = ACTIONS(911), + [aux_sym__unquoted_in_list_token1] = ACTIONS(911), + [anon_sym_POUND] = ACTIONS(3), + }, + [866] = { + [sym_comment] = STATE(866), + [anon_sym_LBRACK] = ACTIONS(895), + [anon_sym_COMMA] = ACTIONS(895), + [anon_sym_RBRACK] = ACTIONS(895), + [anon_sym_LPAREN] = ACTIONS(895), + [anon_sym_DOLLAR] = ACTIONS(895), + [anon_sym_GT] = ACTIONS(893), + [anon_sym_DASH_DASH] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_in] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(895), + [anon_sym_DOT_DOT] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(893), + [anon_sym_STAR_STAR] = ACTIONS(895), + [anon_sym_PLUS_PLUS] = ACTIONS(895), + [anon_sym_SLASH] = ACTIONS(893), + [anon_sym_mod] = ACTIONS(895), + [anon_sym_SLASH_SLASH] = ACTIONS(895), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_bit_DASHshl] = ACTIONS(895), + [anon_sym_bit_DASHshr] = ACTIONS(895), + [anon_sym_EQ_EQ] = ACTIONS(895), + [anon_sym_BANG_EQ] = ACTIONS(895), + [anon_sym_LT2] = ACTIONS(893), + [anon_sym_LT_EQ] = ACTIONS(895), + [anon_sym_GT_EQ] = ACTIONS(895), + [anon_sym_not_DASHin] = ACTIONS(895), + [anon_sym_starts_DASHwith] = ACTIONS(895), + [anon_sym_ends_DASHwith] = ACTIONS(895), + [anon_sym_EQ_TILDE] = ACTIONS(895), + [anon_sym_BANG_TILDE] = ACTIONS(895), + [anon_sym_bit_DASHand] = ACTIONS(895), + [anon_sym_bit_DASHxor] = ACTIONS(895), + [anon_sym_bit_DASHor] = ACTIONS(895), + [anon_sym_and] = ACTIONS(895), + [anon_sym_xor] = ACTIONS(895), + [anon_sym_or] = ACTIONS(895), + [anon_sym_DOT_DOT2] = ACTIONS(893), + [anon_sym_DOT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ] = ACTIONS(893), + [anon_sym_DOT_DOT_LT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), + [anon_sym_DOT_DOT_LT2] = ACTIONS(895), + [aux_sym__immediate_decimal_token2] = ACTIONS(2336), + [anon_sym_null] = ACTIONS(895), + [anon_sym_true] = ACTIONS(895), + [anon_sym_false] = ACTIONS(895), + [aux_sym__val_number_decimal_token1] = ACTIONS(893), + [aux_sym__val_number_decimal_token2] = ACTIONS(895), + [anon_sym_DOT2] = ACTIONS(893), + [aux_sym__val_number_decimal_token3] = ACTIONS(895), + [aux_sym__val_number_token1] = ACTIONS(895), + [aux_sym__val_number_token2] = ACTIONS(895), + [aux_sym__val_number_token3] = ACTIONS(895), + [aux_sym__val_number_token4] = ACTIONS(895), + [aux_sym__val_number_token5] = ACTIONS(895), + [aux_sym__val_number_token6] = ACTIONS(895), + [anon_sym_0b] = ACTIONS(893), + [sym_filesize_unit] = ACTIONS(893), + [sym_duration_unit] = ACTIONS(895), + [anon_sym_0o] = ACTIONS(893), + [anon_sym_0x] = ACTIONS(893), + [sym_val_date] = ACTIONS(895), + [anon_sym_DQUOTE] = ACTIONS(895), + [sym__str_single_quotes] = ACTIONS(895), + [sym__str_back_ticks] = ACTIONS(895), + [anon_sym_err_GT] = ACTIONS(895), + [anon_sym_out_GT] = ACTIONS(895), + [anon_sym_e_GT] = ACTIONS(895), + [anon_sym_o_GT] = ACTIONS(895), + [anon_sym_err_PLUSout_GT] = ACTIONS(895), + [anon_sym_out_PLUSerr_GT] = ACTIONS(895), + [anon_sym_o_PLUSe_GT] = ACTIONS(895), + [anon_sym_e_PLUSo_GT] = ACTIONS(895), + [aux_sym_unquoted_token5] = ACTIONS(893), + [aux_sym__unquoted_in_list_token1] = ACTIONS(893), + [anon_sym_POUND] = ACTIONS(3), + }, + [867] = { + [sym_comment] = STATE(867), + [ts_builtin_sym_end] = ACTIONS(2231), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_alias] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_let_DASHenv] = ACTIONS(2229), + [anon_sym_mut] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2229), + [sym_cmd_identifier] = ACTIONS(2229), + [anon_sym_LF] = ACTIONS(2231), + [anon_sym_def] = ACTIONS(2229), + [anon_sym_export_DASHenv] = ACTIONS(2229), + [anon_sym_extern] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2229), + [anon_sym_error] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_loop] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_source] = ACTIONS(2229), + [anon_sym_source_DASHenv] = ACTIONS(2229), + [anon_sym_register] = ACTIONS(2229), + [anon_sym_hide] = ACTIONS(2229), + [anon_sym_hide_DASHenv] = ACTIONS(2229), + [anon_sym_overlay] = ACTIONS(2229), + [anon_sym_as] = ACTIONS(2229), + [anon_sym_where] = ACTIONS(2229), + [anon_sym_not] = ACTIONS(2229), + [anon_sym_LPAREN2] = ACTIONS(2231), + [anon_sym_DOT_DOT2] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2229), + [anon_sym_DOT_DOT_LT] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2231), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2231), + [aux_sym__immediate_decimal_token1] = ACTIONS(2345), + [aux_sym__immediate_decimal_token2] = ACTIONS(2347), + [anon_sym_null] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [aux_sym__val_number_decimal_token1] = ACTIONS(2229), + [aux_sym__val_number_decimal_token2] = ACTIONS(2229), + [anon_sym_DOT2] = ACTIONS(2229), + [aux_sym__val_number_decimal_token3] = ACTIONS(2229), + [aux_sym__val_number_token1] = ACTIONS(2229), + [aux_sym__val_number_token2] = ACTIONS(2229), + [aux_sym__val_number_token3] = ACTIONS(2229), + [aux_sym__val_number_token4] = ACTIONS(2229), + [aux_sym__val_number_token5] = ACTIONS(2229), + [aux_sym__val_number_token6] = ACTIONS(2229), + [anon_sym_0b] = ACTIONS(2229), + [anon_sym_0o] = ACTIONS(2229), + [anon_sym_0x] = ACTIONS(2229), + [sym_val_date] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2229), + [anon_sym_CARET] = ACTIONS(2229), + [aux_sym_unquoted_token2] = ACTIONS(2229), + [anon_sym_POUND] = ACTIONS(113), + }, + [868] = { + [sym_comment] = STATE(868), + [anon_sym_LBRACK] = ACTIONS(903), + [anon_sym_COMMA] = ACTIONS(903), + [anon_sym_RBRACK] = ACTIONS(903), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_DOLLAR] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_DASH_DASH] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_in] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(903), + [anon_sym_DOT_DOT] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_STAR_STAR] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_mod] = ACTIONS(903), + [anon_sym_SLASH_SLASH] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_bit_DASHshl] = ACTIONS(903), + [anon_sym_bit_DASHshr] = ACTIONS(903), + [anon_sym_EQ_EQ] = ACTIONS(903), + [anon_sym_BANG_EQ] = ACTIONS(903), + [anon_sym_LT2] = ACTIONS(901), + [anon_sym_LT_EQ] = ACTIONS(903), + [anon_sym_GT_EQ] = ACTIONS(903), + [anon_sym_not_DASHin] = ACTIONS(903), + [anon_sym_starts_DASHwith] = ACTIONS(903), + [anon_sym_ends_DASHwith] = ACTIONS(903), + [anon_sym_EQ_TILDE] = ACTIONS(903), + [anon_sym_BANG_TILDE] = ACTIONS(903), + [anon_sym_bit_DASHand] = ACTIONS(903), + [anon_sym_bit_DASHxor] = ACTIONS(903), + [anon_sym_bit_DASHor] = ACTIONS(903), + [anon_sym_and] = ACTIONS(903), + [anon_sym_xor] = ACTIONS(903), + [anon_sym_or] = ACTIONS(903), + [anon_sym_DOT_DOT2] = ACTIONS(901), + [anon_sym_DOT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ] = ACTIONS(901), + [anon_sym_DOT_DOT_LT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(903), + [anon_sym_DOT_DOT_LT2] = ACTIONS(903), + [aux_sym__immediate_decimal_token2] = ACTIONS(2349), + [anon_sym_null] = ACTIONS(903), + [anon_sym_true] = ACTIONS(903), + [anon_sym_false] = ACTIONS(903), + [aux_sym__val_number_decimal_token1] = ACTIONS(901), + [aux_sym__val_number_decimal_token2] = ACTIONS(903), + [anon_sym_DOT2] = ACTIONS(901), + [aux_sym__val_number_decimal_token3] = ACTIONS(903), + [aux_sym__val_number_token1] = ACTIONS(903), + [aux_sym__val_number_token2] = ACTIONS(903), + [aux_sym__val_number_token3] = ACTIONS(903), + [aux_sym__val_number_token4] = ACTIONS(903), + [aux_sym__val_number_token5] = ACTIONS(903), + [aux_sym__val_number_token6] = ACTIONS(903), + [anon_sym_0b] = ACTIONS(901), + [sym_filesize_unit] = ACTIONS(901), + [sym_duration_unit] = ACTIONS(903), + [anon_sym_0o] = ACTIONS(901), + [anon_sym_0x] = ACTIONS(901), + [sym_val_date] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(903), + [sym__str_single_quotes] = ACTIONS(903), + [sym__str_back_ticks] = ACTIONS(903), + [anon_sym_err_GT] = ACTIONS(903), + [anon_sym_out_GT] = ACTIONS(903), + [anon_sym_e_GT] = ACTIONS(903), + [anon_sym_o_GT] = ACTIONS(903), + [anon_sym_err_PLUSout_GT] = ACTIONS(903), + [anon_sym_out_PLUSerr_GT] = ACTIONS(903), + [anon_sym_o_PLUSe_GT] = ACTIONS(903), + [anon_sym_e_PLUSo_GT] = ACTIONS(903), + [aux_sym_unquoted_token5] = ACTIONS(901), + [aux_sym__unquoted_in_list_token1] = ACTIONS(901), + [anon_sym_POUND] = ACTIONS(3), + }, + [869] = { + [sym_comment] = STATE(869), + [anon_sym_LBRACK] = ACTIONS(913), + [anon_sym_COMMA] = ACTIONS(913), + [anon_sym_LPAREN] = ACTIONS(913), + [anon_sym_DOLLAR] = ACTIONS(913), + [anon_sym_GT] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_in] = ACTIONS(911), + [anon_sym_LBRACE] = ACTIONS(913), + [anon_sym_RBRACE] = ACTIONS(913), + [anon_sym__] = ACTIONS(911), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(911), + [anon_sym_STAR_STAR] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_SLASH] = ACTIONS(911), + [anon_sym_mod] = ACTIONS(913), + [anon_sym_SLASH_SLASH] = ACTIONS(913), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_bit_DASHshl] = ACTIONS(913), + [anon_sym_bit_DASHshr] = ACTIONS(913), + [anon_sym_EQ_EQ] = ACTIONS(913), + [anon_sym_BANG_EQ] = ACTIONS(913), + [anon_sym_LT2] = ACTIONS(911), + [anon_sym_LT_EQ] = ACTIONS(913), + [anon_sym_GT_EQ] = ACTIONS(913), + [anon_sym_not_DASHin] = ACTIONS(913), + [anon_sym_starts_DASHwith] = ACTIONS(913), + [anon_sym_ends_DASHwith] = ACTIONS(913), + [anon_sym_EQ_TILDE] = ACTIONS(913), + [anon_sym_BANG_TILDE] = ACTIONS(913), + [anon_sym_bit_DASHand] = ACTIONS(913), + [anon_sym_bit_DASHxor] = ACTIONS(913), + [anon_sym_bit_DASHor] = ACTIONS(913), + [anon_sym_and] = ACTIONS(913), + [anon_sym_xor] = ACTIONS(913), + [anon_sym_or] = ACTIONS(913), + [anon_sym_DOT_DOT2] = ACTIONS(911), + [anon_sym_DOT] = ACTIONS(2351), + [anon_sym_DOT_DOT_EQ] = ACTIONS(911), + [anon_sym_DOT_DOT_LT] = ACTIONS(911), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(913), + [anon_sym_DOT_DOT_LT2] = ACTIONS(913), + [aux_sym__immediate_decimal_token2] = ACTIONS(2354), + [anon_sym_null] = ACTIONS(913), + [anon_sym_true] = ACTIONS(913), + [anon_sym_false] = ACTIONS(913), + [aux_sym__val_number_decimal_token1] = ACTIONS(911), + [aux_sym__val_number_decimal_token2] = ACTIONS(913), + [anon_sym_DOT2] = ACTIONS(911), + [aux_sym__val_number_decimal_token3] = ACTIONS(913), + [aux_sym__val_number_token1] = ACTIONS(913), + [aux_sym__val_number_token2] = ACTIONS(913), + [aux_sym__val_number_token3] = ACTIONS(913), + [aux_sym__val_number_token4] = ACTIONS(913), + [aux_sym__val_number_token5] = ACTIONS(913), + [aux_sym__val_number_token6] = ACTIONS(913), + [anon_sym_0b] = ACTIONS(911), + [sym_filesize_unit] = ACTIONS(911), + [sym_duration_unit] = ACTIONS(913), + [anon_sym_0o] = ACTIONS(911), + [anon_sym_0x] = ACTIONS(911), + [sym_val_date] = ACTIONS(913), + [anon_sym_DQUOTE] = ACTIONS(913), + [sym__str_single_quotes] = ACTIONS(913), + [sym__str_back_ticks] = ACTIONS(913), + [anon_sym_err_GT] = ACTIONS(913), + [anon_sym_out_GT] = ACTIONS(913), + [anon_sym_e_GT] = ACTIONS(913), + [anon_sym_o_GT] = ACTIONS(913), + [anon_sym_err_PLUSout_GT] = ACTIONS(913), + [anon_sym_out_PLUSerr_GT] = ACTIONS(913), + [anon_sym_o_PLUSe_GT] = ACTIONS(913), + [anon_sym_e_PLUSo_GT] = ACTIONS(913), + [aux_sym_unquoted_token1] = ACTIONS(911), + [aux_sym_unquoted_token5] = ACTIONS(911), + [anon_sym_POUND] = ACTIONS(3), + }, + [870] = { + [sym_comment] = STATE(870), + [anon_sym_LBRACK] = ACTIONS(901), + [anon_sym_COMMA] = ACTIONS(901), + [anon_sym_RBRACK] = ACTIONS(901), + [anon_sym_LPAREN] = ACTIONS(901), + [anon_sym_DOLLAR] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_DASH_DASH] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_in] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(901), + [anon_sym_DOT_DOT] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_STAR_STAR] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(901), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_mod] = ACTIONS(901), + [anon_sym_SLASH_SLASH] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_bit_DASHshl] = ACTIONS(901), + [anon_sym_bit_DASHshr] = ACTIONS(901), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT2] = ACTIONS(901), + [anon_sym_LT_EQ] = ACTIONS(901), + [anon_sym_GT_EQ] = ACTIONS(901), + [anon_sym_not_DASHin] = ACTIONS(901), + [anon_sym_starts_DASHwith] = ACTIONS(901), + [anon_sym_ends_DASHwith] = ACTIONS(901), + [anon_sym_EQ_TILDE] = ACTIONS(901), + [anon_sym_BANG_TILDE] = ACTIONS(901), + [anon_sym_bit_DASHand] = ACTIONS(901), + [anon_sym_bit_DASHxor] = ACTIONS(901), + [anon_sym_bit_DASHor] = ACTIONS(901), + [anon_sym_and] = ACTIONS(901), + [anon_sym_xor] = ACTIONS(901), + [anon_sym_or] = ACTIONS(901), + [anon_sym_DOT_DOT2] = ACTIONS(901), + [anon_sym_DOT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ] = ACTIONS(901), + [anon_sym_DOT_DOT_LT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(903), + [anon_sym_DOT_DOT_LT2] = ACTIONS(903), + [anon_sym_null] = ACTIONS(901), + [anon_sym_true] = ACTIONS(901), + [anon_sym_false] = ACTIONS(901), + [aux_sym__val_number_decimal_token1] = ACTIONS(901), + [aux_sym__val_number_decimal_token2] = ACTIONS(901), + [anon_sym_DOT2] = ACTIONS(901), + [aux_sym__val_number_decimal_token3] = ACTIONS(901), + [aux_sym__val_number_token1] = ACTIONS(901), + [aux_sym__val_number_token2] = ACTIONS(901), + [aux_sym__val_number_token3] = ACTIONS(901), + [aux_sym__val_number_token4] = ACTIONS(901), + [aux_sym__val_number_token5] = ACTIONS(901), + [aux_sym__val_number_token6] = ACTIONS(901), + [anon_sym_0b] = ACTIONS(901), + [sym_filesize_unit] = ACTIONS(901), + [sym_duration_unit] = ACTIONS(903), + [anon_sym_0o] = ACTIONS(901), + [anon_sym_0x] = ACTIONS(901), + [sym_val_date] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [sym__str_single_quotes] = ACTIONS(901), + [sym__str_back_ticks] = ACTIONS(901), + [sym__entry_separator] = ACTIONS(903), + [anon_sym_err_GT] = ACTIONS(901), + [anon_sym_out_GT] = ACTIONS(901), + [anon_sym_e_GT] = ACTIONS(901), + [anon_sym_o_GT] = ACTIONS(901), + [anon_sym_err_PLUSout_GT] = ACTIONS(901), + [anon_sym_out_PLUSerr_GT] = ACTIONS(901), + [anon_sym_o_PLUSe_GT] = ACTIONS(901), + [anon_sym_e_PLUSo_GT] = ACTIONS(901), + [aux_sym_unquoted_token5] = ACTIONS(901), + [aux_sym__unquoted_in_list_token1] = ACTIONS(901), + [anon_sym_POUND] = ACTIONS(113), + }, + [871] = { + [sym_comment] = STATE(871), + [anon_sym_LBRACK] = ACTIONS(934), + [anon_sym_COMMA] = ACTIONS(934), + [anon_sym_RBRACK] = ACTIONS(934), + [anon_sym_LPAREN] = ACTIONS(934), + [anon_sym_DOLLAR] = ACTIONS(934), + [anon_sym_GT] = ACTIONS(934), + [anon_sym_DASH_DASH] = ACTIONS(934), + [anon_sym_DASH] = ACTIONS(934), + [anon_sym_in] = ACTIONS(934), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_DOT_DOT] = ACTIONS(934), + [anon_sym_STAR] = ACTIONS(934), + [anon_sym_STAR_STAR] = ACTIONS(934), + [anon_sym_PLUS_PLUS] = ACTIONS(934), + [anon_sym_SLASH] = ACTIONS(934), + [anon_sym_mod] = ACTIONS(934), + [anon_sym_SLASH_SLASH] = ACTIONS(934), + [anon_sym_PLUS] = ACTIONS(934), + [anon_sym_bit_DASHshl] = ACTIONS(934), + [anon_sym_bit_DASHshr] = ACTIONS(934), + [anon_sym_EQ_EQ] = ACTIONS(934), + [anon_sym_BANG_EQ] = ACTIONS(934), + [anon_sym_LT2] = ACTIONS(934), + [anon_sym_LT_EQ] = ACTIONS(934), + [anon_sym_GT_EQ] = ACTIONS(934), + [anon_sym_not_DASHin] = ACTIONS(934), + [anon_sym_starts_DASHwith] = ACTIONS(934), + [anon_sym_ends_DASHwith] = ACTIONS(934), + [anon_sym_EQ_TILDE] = ACTIONS(934), + [anon_sym_BANG_TILDE] = ACTIONS(934), + [anon_sym_bit_DASHand] = ACTIONS(934), + [anon_sym_bit_DASHxor] = ACTIONS(934), + [anon_sym_bit_DASHor] = ACTIONS(934), + [anon_sym_and] = ACTIONS(934), + [anon_sym_xor] = ACTIONS(934), + [anon_sym_or] = ACTIONS(934), + [anon_sym_DOT_DOT2] = ACTIONS(934), + [anon_sym_DOT] = ACTIONS(934), + [anon_sym_DOT_DOT_EQ] = ACTIONS(934), + [anon_sym_DOT_DOT_LT] = ACTIONS(934), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(936), + [anon_sym_DOT_DOT_LT2] = ACTIONS(936), + [anon_sym_null] = ACTIONS(934), + [anon_sym_true] = ACTIONS(934), + [anon_sym_false] = ACTIONS(934), + [aux_sym__val_number_decimal_token1] = ACTIONS(934), + [aux_sym__val_number_decimal_token2] = ACTIONS(934), + [anon_sym_DOT2] = ACTIONS(934), + [aux_sym__val_number_decimal_token3] = ACTIONS(934), + [aux_sym__val_number_token1] = ACTIONS(934), + [aux_sym__val_number_token2] = ACTIONS(934), + [aux_sym__val_number_token3] = ACTIONS(934), + [aux_sym__val_number_token4] = ACTIONS(934), + [aux_sym__val_number_token5] = ACTIONS(934), + [aux_sym__val_number_token6] = ACTIONS(934), + [anon_sym_0b] = ACTIONS(934), + [sym_filesize_unit] = ACTIONS(934), + [sym_duration_unit] = ACTIONS(936), + [anon_sym_0o] = ACTIONS(934), + [anon_sym_0x] = ACTIONS(934), + [sym_val_date] = ACTIONS(934), + [anon_sym_DQUOTE] = ACTIONS(934), + [sym__str_single_quotes] = ACTIONS(934), + [sym__str_back_ticks] = ACTIONS(934), + [sym__entry_separator] = ACTIONS(936), + [anon_sym_err_GT] = ACTIONS(934), + [anon_sym_out_GT] = ACTIONS(934), + [anon_sym_e_GT] = ACTIONS(934), + [anon_sym_o_GT] = ACTIONS(934), + [anon_sym_err_PLUSout_GT] = ACTIONS(934), + [anon_sym_out_PLUSerr_GT] = ACTIONS(934), + [anon_sym_o_PLUSe_GT] = ACTIONS(934), + [anon_sym_e_PLUSo_GT] = ACTIONS(934), + [aux_sym_unquoted_token5] = ACTIONS(934), + [aux_sym__unquoted_in_list_token1] = ACTIONS(934), + [anon_sym_POUND] = ACTIONS(113), + }, + [872] = { + [sym_comment] = STATE(872), + [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), + [anon_sym_SEMI] = ACTIONS(2356), + [sym_cmd_identifier] = ACTIONS(2356), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2356), + [anon_sym_RPAREN] = ACTIONS(2356), + [anon_sym_DOLLAR] = ACTIONS(2356), + [anon_sym_error] = ACTIONS(2356), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_loop] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_match] = ACTIONS(2356), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_RBRACE] = ACTIONS(2356), + [anon_sym_DOT_DOT] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_source] = ACTIONS(2356), + [anon_sym_source_DASHenv] = ACTIONS(2356), + [anon_sym_register] = 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_where] = ACTIONS(2356), + [anon_sym_not] = ACTIONS(2356), + [anon_sym_LPAREN2] = ACTIONS(2358), + [anon_sym_DOT_DOT2] = ACTIONS(2356), + [anon_sym_DOT] = ACTIONS(2356), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2356), + [anon_sym_DOT_DOT_LT] = ACTIONS(2356), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2358), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2358), + [aux_sym__immediate_decimal_token2] = ACTIONS(2360), + [anon_sym_null] = ACTIONS(2356), + [anon_sym_true] = ACTIONS(2356), + [anon_sym_false] = ACTIONS(2356), + [aux_sym__val_number_decimal_token1] = ACTIONS(2356), + [aux_sym__val_number_decimal_token2] = ACTIONS(2356), + [anon_sym_DOT2] = ACTIONS(2356), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2356), + [anon_sym_0o] = ACTIONS(2356), + [anon_sym_0x] = ACTIONS(2356), + [sym_val_date] = 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_CARET] = ACTIONS(2356), + [aux_sym_unquoted_token2] = ACTIONS(2356), + [anon_sym_POUND] = ACTIONS(113), + }, + [873] = { + [sym_comment] = STATE(873), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_alias] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_let_DASHenv] = ACTIONS(2229), + [anon_sym_mut] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2229), + [sym_cmd_identifier] = ACTIONS(2229), + [anon_sym_LF] = ACTIONS(2231), + [anon_sym_def] = ACTIONS(2229), + [anon_sym_export_DASHenv] = ACTIONS(2229), + [anon_sym_extern] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_RPAREN] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2229), + [anon_sym_error] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_loop] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_RBRACE] = ACTIONS(2229), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_source] = ACTIONS(2229), + [anon_sym_source_DASHenv] = ACTIONS(2229), + [anon_sym_register] = ACTIONS(2229), + [anon_sym_hide] = ACTIONS(2229), + [anon_sym_hide_DASHenv] = ACTIONS(2229), + [anon_sym_overlay] = ACTIONS(2229), + [anon_sym_as] = ACTIONS(2229), + [anon_sym_where] = ACTIONS(2229), + [anon_sym_not] = ACTIONS(2229), + [anon_sym_LPAREN2] = ACTIONS(2231), + [anon_sym_DOT_DOT2] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2229), + [anon_sym_DOT_DOT_LT] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2231), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2231), + [aux_sym__immediate_decimal_token2] = ACTIONS(2235), + [anon_sym_null] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [aux_sym__val_number_decimal_token1] = ACTIONS(2229), + [aux_sym__val_number_decimal_token2] = ACTIONS(2229), + [anon_sym_DOT2] = ACTIONS(2229), + [aux_sym__val_number_decimal_token3] = ACTIONS(2229), + [aux_sym__val_number_token1] = ACTIONS(2229), + [aux_sym__val_number_token2] = ACTIONS(2229), + [aux_sym__val_number_token3] = ACTIONS(2229), + [aux_sym__val_number_token4] = ACTIONS(2229), + [aux_sym__val_number_token5] = ACTIONS(2229), + [aux_sym__val_number_token6] = ACTIONS(2229), + [anon_sym_0b] = ACTIONS(2229), + [anon_sym_0o] = ACTIONS(2229), + [anon_sym_0x] = ACTIONS(2229), + [sym_val_date] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2229), + [anon_sym_CARET] = ACTIONS(2229), + [aux_sym_unquoted_token2] = ACTIONS(2229), + [anon_sym_POUND] = ACTIONS(113), + }, + [874] = { + [sym_comment] = STATE(874), + [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), + [anon_sym_SEMI] = ACTIONS(2362), + [sym_cmd_identifier] = ACTIONS(2362), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2362), + [anon_sym_LPAREN] = ACTIONS(2362), + [anon_sym_RPAREN] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2362), + [anon_sym_error] = ACTIONS(2362), + [anon_sym_DASH_DASH] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_break] = ACTIONS(2362), + [anon_sym_continue] = ACTIONS(2362), + [anon_sym_for] = ACTIONS(2362), + [anon_sym_loop] = ACTIONS(2362), + [anon_sym_while] = ACTIONS(2362), + [anon_sym_do] = ACTIONS(2362), + [anon_sym_if] = ACTIONS(2362), + [anon_sym_match] = ACTIONS(2362), + [anon_sym_LBRACE] = ACTIONS(2362), + [anon_sym_RBRACE] = ACTIONS(2362), + [anon_sym_DOT_DOT] = ACTIONS(2362), + [anon_sym_try] = 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_where] = ACTIONS(2362), + [anon_sym_not] = ACTIONS(2362), + [anon_sym_LPAREN2] = ACTIONS(2364), + [anon_sym_DOT_DOT2] = ACTIONS(2362), + [anon_sym_DOT] = ACTIONS(2362), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2362), + [anon_sym_DOT_DOT_LT] = ACTIONS(2362), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2364), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2364), + [aux_sym__immediate_decimal_token2] = ACTIONS(2366), + [anon_sym_null] = ACTIONS(2362), + [anon_sym_true] = ACTIONS(2362), + [anon_sym_false] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2362), + [aux_sym__val_number_decimal_token2] = ACTIONS(2362), + [anon_sym_DOT2] = ACTIONS(2362), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2362), + [anon_sym_0o] = ACTIONS(2362), + [anon_sym_0x] = ACTIONS(2362), + [sym_val_date] = 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_CARET] = ACTIONS(2362), + [aux_sym_unquoted_token2] = ACTIONS(2362), + [anon_sym_POUND] = ACTIONS(113), + }, + [875] = { + [sym_comment] = STATE(875), + [anon_sym_LBRACK] = ACTIONS(913), + [anon_sym_COMMA] = ACTIONS(913), + [anon_sym_RBRACK] = ACTIONS(913), + [anon_sym_LPAREN] = ACTIONS(913), + [anon_sym_DOLLAR] = ACTIONS(913), + [anon_sym_GT] = ACTIONS(911), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_in] = ACTIONS(911), + [anon_sym_LBRACE] = ACTIONS(913), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(911), + [anon_sym_STAR_STAR] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_SLASH] = ACTIONS(911), + [anon_sym_mod] = ACTIONS(913), + [anon_sym_SLASH_SLASH] = ACTIONS(913), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_bit_DASHshl] = ACTIONS(913), + [anon_sym_bit_DASHshr] = ACTIONS(913), + [anon_sym_EQ_EQ] = ACTIONS(913), + [anon_sym_BANG_EQ] = ACTIONS(913), + [anon_sym_LT2] = ACTIONS(911), + [anon_sym_LT_EQ] = ACTIONS(913), + [anon_sym_GT_EQ] = ACTIONS(913), + [anon_sym_not_DASHin] = ACTIONS(913), + [anon_sym_starts_DASHwith] = ACTIONS(913), + [anon_sym_ends_DASHwith] = ACTIONS(913), + [anon_sym_EQ_TILDE] = ACTIONS(913), + [anon_sym_BANG_TILDE] = ACTIONS(913), + [anon_sym_bit_DASHand] = ACTIONS(913), + [anon_sym_bit_DASHxor] = ACTIONS(913), + [anon_sym_bit_DASHor] = ACTIONS(913), + [anon_sym_and] = ACTIONS(913), + [anon_sym_xor] = ACTIONS(913), + [anon_sym_or] = ACTIONS(913), + [anon_sym_DOT_DOT2] = ACTIONS(911), + [anon_sym_DOT] = ACTIONS(2368), + [anon_sym_DOT_DOT_EQ] = ACTIONS(911), + [anon_sym_DOT_DOT_LT] = ACTIONS(911), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(913), + [anon_sym_DOT_DOT_LT2] = ACTIONS(913), + [aux_sym__immediate_decimal_token2] = ACTIONS(2343), + [anon_sym_null] = ACTIONS(913), + [anon_sym_true] = ACTIONS(913), + [anon_sym_false] = ACTIONS(913), + [aux_sym__val_number_decimal_token1] = ACTIONS(911), + [aux_sym__val_number_decimal_token2] = ACTIONS(913), + [anon_sym_DOT2] = ACTIONS(911), + [aux_sym__val_number_decimal_token3] = ACTIONS(913), + [aux_sym__val_number_token1] = ACTIONS(913), + [aux_sym__val_number_token2] = ACTIONS(913), + [aux_sym__val_number_token3] = ACTIONS(913), + [aux_sym__val_number_token4] = ACTIONS(913), + [aux_sym__val_number_token5] = ACTIONS(913), + [aux_sym__val_number_token6] = ACTIONS(913), + [anon_sym_0b] = ACTIONS(911), + [sym_filesize_unit] = ACTIONS(911), + [sym_duration_unit] = ACTIONS(913), + [anon_sym_0o] = ACTIONS(911), + [anon_sym_0x] = ACTIONS(911), + [sym_val_date] = ACTIONS(913), + [anon_sym_DQUOTE] = ACTIONS(913), + [sym__str_single_quotes] = ACTIONS(913), + [sym__str_back_ticks] = ACTIONS(913), + [anon_sym_err_GT] = ACTIONS(913), + [anon_sym_out_GT] = ACTIONS(913), + [anon_sym_e_GT] = ACTIONS(913), + [anon_sym_o_GT] = ACTIONS(913), + [anon_sym_err_PLUSout_GT] = ACTIONS(913), + [anon_sym_out_PLUSerr_GT] = ACTIONS(913), + [anon_sym_o_PLUSe_GT] = ACTIONS(913), + [anon_sym_e_PLUSo_GT] = ACTIONS(913), + [aux_sym_unquoted_token5] = ACTIONS(911), + [aux_sym__unquoted_in_list_token1] = ACTIONS(911), + [anon_sym_POUND] = ACTIONS(3), + }, + [876] = { + [sym_comment] = STATE(876), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_alias] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_let_DASHenv] = ACTIONS(2229), + [anon_sym_mut] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2229), + [sym_cmd_identifier] = ACTIONS(2229), + [anon_sym_LF] = ACTIONS(2231), + [anon_sym_def] = ACTIONS(2229), + [anon_sym_export_DASHenv] = ACTIONS(2229), + [anon_sym_extern] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_RPAREN] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2229), + [anon_sym_error] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_loop] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_RBRACE] = ACTIONS(2229), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_source] = ACTIONS(2229), + [anon_sym_source_DASHenv] = ACTIONS(2229), + [anon_sym_register] = ACTIONS(2229), + [anon_sym_hide] = ACTIONS(2229), + [anon_sym_hide_DASHenv] = ACTIONS(2229), + [anon_sym_overlay] = ACTIONS(2229), + [anon_sym_as] = ACTIONS(2229), + [anon_sym_where] = ACTIONS(2229), + [anon_sym_not] = ACTIONS(2229), + [anon_sym_DOT_DOT2] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2229), + [anon_sym_DOT_DOT_LT] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2231), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2231), + [aux_sym__immediate_decimal_token1] = ACTIONS(2371), + [aux_sym__immediate_decimal_token2] = ACTIONS(2373), + [anon_sym_null] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [aux_sym__val_number_decimal_token1] = ACTIONS(2229), + [aux_sym__val_number_decimal_token2] = ACTIONS(2229), + [anon_sym_DOT2] = ACTIONS(2229), + [aux_sym__val_number_decimal_token3] = ACTIONS(2229), + [aux_sym__val_number_token1] = ACTIONS(2229), + [aux_sym__val_number_token2] = ACTIONS(2229), + [aux_sym__val_number_token3] = ACTIONS(2229), + [aux_sym__val_number_token4] = ACTIONS(2229), + [aux_sym__val_number_token5] = ACTIONS(2229), + [aux_sym__val_number_token6] = ACTIONS(2229), + [anon_sym_0b] = ACTIONS(2229), + [anon_sym_0o] = ACTIONS(2229), + [anon_sym_0x] = ACTIONS(2229), + [sym_val_date] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2229), + [anon_sym_CARET] = ACTIONS(2229), + [aux_sym_unquoted_token2] = ACTIONS(2229), + [anon_sym_POUND] = ACTIONS(113), + }, + [877] = { + [sym_comment] = STATE(877), + [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), + [anon_sym_SEMI] = ACTIONS(2356), + [sym_cmd_identifier] = ACTIONS(2356), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2356), + [anon_sym_RPAREN] = ACTIONS(2356), + [anon_sym_DOLLAR] = ACTIONS(2356), + [anon_sym_error] = ACTIONS(2356), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_loop] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_match] = ACTIONS(2356), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_RBRACE] = ACTIONS(2356), + [anon_sym_DOT_DOT] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_source] = ACTIONS(2356), + [anon_sym_source_DASHenv] = ACTIONS(2356), + [anon_sym_register] = 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_where] = ACTIONS(2356), + [anon_sym_not] = ACTIONS(2356), + [anon_sym_LPAREN2] = ACTIONS(2358), + [anon_sym_DOT_DOT2] = ACTIONS(2356), + [anon_sym_DOT] = ACTIONS(2375), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2356), + [anon_sym_DOT_DOT_LT] = ACTIONS(2356), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2358), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2358), + [aux_sym__immediate_decimal_token2] = ACTIONS(2360), + [anon_sym_null] = ACTIONS(2356), + [anon_sym_true] = ACTIONS(2356), + [anon_sym_false] = ACTIONS(2356), + [aux_sym__val_number_decimal_token1] = ACTIONS(2356), + [aux_sym__val_number_decimal_token2] = ACTIONS(2356), + [anon_sym_DOT2] = ACTIONS(2356), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2356), + [anon_sym_0o] = ACTIONS(2356), + [anon_sym_0x] = ACTIONS(2356), + [sym_val_date] = 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_CARET] = ACTIONS(2356), + [aux_sym_unquoted_token2] = ACTIONS(2356), + [anon_sym_POUND] = ACTIONS(113), + }, + [878] = { + [sym_comment] = STATE(878), + [anon_sym_LBRACK] = ACTIONS(938), + [anon_sym_COMMA] = ACTIONS(938), + [anon_sym_RBRACK] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(938), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_in] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_STAR_STAR] = ACTIONS(938), + [anon_sym_PLUS_PLUS] = ACTIONS(938), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(938), + [anon_sym_SLASH_SLASH] = ACTIONS(938), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_bit_DASHshl] = ACTIONS(938), + [anon_sym_bit_DASHshr] = ACTIONS(938), + [anon_sym_EQ_EQ] = ACTIONS(938), + [anon_sym_BANG_EQ] = ACTIONS(938), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(938), + [anon_sym_GT_EQ] = ACTIONS(938), + [anon_sym_not_DASHin] = ACTIONS(938), + [anon_sym_starts_DASHwith] = ACTIONS(938), + [anon_sym_ends_DASHwith] = ACTIONS(938), + [anon_sym_EQ_TILDE] = ACTIONS(938), + [anon_sym_BANG_TILDE] = ACTIONS(938), + [anon_sym_bit_DASHand] = ACTIONS(938), + [anon_sym_bit_DASHxor] = ACTIONS(938), + [anon_sym_bit_DASHor] = ACTIONS(938), + [anon_sym_and] = ACTIONS(938), + [anon_sym_xor] = ACTIONS(938), + [anon_sym_or] = ACTIONS(938), + [anon_sym_DOT_DOT2] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(2378), + [anon_sym_DOT_DOT_EQ] = ACTIONS(938), + [anon_sym_DOT_DOT_LT] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(965), + [anon_sym_DOT_DOT_LT2] = ACTIONS(965), + [anon_sym_null] = ACTIONS(938), + [anon_sym_true] = ACTIONS(938), + [anon_sym_false] = ACTIONS(938), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(938), + [anon_sym_DOT2] = ACTIONS(938), + [aux_sym__val_number_decimal_token3] = ACTIONS(938), + [aux_sym__val_number_token1] = ACTIONS(938), + [aux_sym__val_number_token2] = ACTIONS(938), + [aux_sym__val_number_token3] = ACTIONS(938), + [aux_sym__val_number_token4] = ACTIONS(938), + [aux_sym__val_number_token5] = ACTIONS(938), + [aux_sym__val_number_token6] = ACTIONS(938), + [anon_sym_0b] = ACTIONS(938), + [sym_filesize_unit] = ACTIONS(2380), + [sym_duration_unit] = ACTIONS(2382), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym__str_single_quotes] = ACTIONS(938), + [sym__str_back_ticks] = ACTIONS(938), + [sym__entry_separator] = ACTIONS(940), + [anon_sym_err_GT] = ACTIONS(938), + [anon_sym_out_GT] = ACTIONS(938), + [anon_sym_e_GT] = ACTIONS(938), + [anon_sym_o_GT] = ACTIONS(938), + [anon_sym_err_PLUSout_GT] = ACTIONS(938), + [anon_sym_out_PLUSerr_GT] = ACTIONS(938), + [anon_sym_o_PLUSe_GT] = ACTIONS(938), + [anon_sym_e_PLUSo_GT] = ACTIONS(938), + [aux_sym_unquoted_token5] = ACTIONS(2384), + [aux_sym__unquoted_in_list_token1] = ACTIONS(938), + [anon_sym_POUND] = ACTIONS(113), + }, + [879] = { + [sym__immediate_decimal] = STATE(8796), + [sym_comment] = STATE(879), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_COMMA] = ACTIONS(920), + [anon_sym_RBRACK] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_in] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_STAR_STAR] = ACTIONS(920), + [anon_sym_PLUS_PLUS] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_mod] = ACTIONS(920), + [anon_sym_SLASH_SLASH] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_bit_DASHshl] = ACTIONS(920), + [anon_sym_bit_DASHshr] = ACTIONS(920), + [anon_sym_EQ_EQ] = ACTIONS(920), + [anon_sym_BANG_EQ] = ACTIONS(920), + [anon_sym_LT2] = ACTIONS(920), + [anon_sym_LT_EQ] = ACTIONS(920), + [anon_sym_GT_EQ] = ACTIONS(920), + [anon_sym_not_DASHin] = ACTIONS(920), + [anon_sym_starts_DASHwith] = ACTIONS(920), + [anon_sym_ends_DASHwith] = ACTIONS(920), + [anon_sym_EQ_TILDE] = ACTIONS(920), + [anon_sym_BANG_TILDE] = ACTIONS(920), + [anon_sym_bit_DASHand] = ACTIONS(920), + [anon_sym_bit_DASHxor] = ACTIONS(920), + [anon_sym_bit_DASHor] = ACTIONS(920), + [anon_sym_and] = ACTIONS(920), + [anon_sym_xor] = ACTIONS(920), + [anon_sym_or] = ACTIONS(920), + [anon_sym_DOT] = ACTIONS(2386), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [aux_sym__immediate_decimal_token1] = ACTIONS(926), + [aux_sym__immediate_decimal_token3] = ACTIONS(926), + [aux_sym__immediate_decimal_token4] = ACTIONS(928), + [anon_sym_null] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [sym__entry_separator] = ACTIONS(922), + [anon_sym_err_GT] = ACTIONS(920), + [anon_sym_out_GT] = ACTIONS(920), + [anon_sym_e_GT] = ACTIONS(920), + [anon_sym_o_GT] = ACTIONS(920), + [anon_sym_err_PLUSout_GT] = ACTIONS(920), + [anon_sym_out_PLUSerr_GT] = ACTIONS(920), + [anon_sym_o_PLUSe_GT] = ACTIONS(920), + [anon_sym_e_PLUSo_GT] = ACTIONS(920), + [aux_sym_unquoted_token3] = ACTIONS(2384), + [aux_sym_unquoted_token5] = ACTIONS(2388), + [aux_sym__unquoted_in_list_token1] = ACTIONS(920), + [anon_sym_POUND] = ACTIONS(113), + }, + [880] = { + [sym_comment] = STATE(880), + [ts_builtin_sym_end] = ACTIONS(895), + [anon_sym_export] = ACTIONS(893), + [anon_sym_alias] = ACTIONS(893), + [anon_sym_let] = ACTIONS(893), + [anon_sym_let_DASHenv] = ACTIONS(893), + [anon_sym_mut] = ACTIONS(893), + [anon_sym_const] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(893), + [sym_cmd_identifier] = ACTIONS(893), + [anon_sym_LF] = ACTIONS(895), + [anon_sym_def] = ACTIONS(893), + [anon_sym_export_DASHenv] = ACTIONS(893), + [anon_sym_extern] = ACTIONS(893), + [anon_sym_module] = ACTIONS(893), + [anon_sym_use] = ACTIONS(893), + [anon_sym_LBRACK] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(893), + [anon_sym_DOLLAR] = ACTIONS(893), + [anon_sym_error] = ACTIONS(893), + [anon_sym_DASH_DASH] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_break] = ACTIONS(893), + [anon_sym_continue] = ACTIONS(893), + [anon_sym_for] = ACTIONS(893), + [anon_sym_loop] = ACTIONS(893), + [anon_sym_while] = ACTIONS(893), + [anon_sym_do] = ACTIONS(893), + [anon_sym_if] = ACTIONS(893), + [anon_sym_match] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_DOT_DOT] = ACTIONS(893), + [anon_sym_try] = ACTIONS(893), + [anon_sym_return] = ACTIONS(893), + [anon_sym_source] = ACTIONS(893), + [anon_sym_source_DASHenv] = ACTIONS(893), + [anon_sym_register] = ACTIONS(893), + [anon_sym_hide] = ACTIONS(893), + [anon_sym_hide_DASHenv] = ACTIONS(893), + [anon_sym_overlay] = ACTIONS(893), + [anon_sym_as] = ACTIONS(893), + [anon_sym_where] = ACTIONS(893), + [anon_sym_not] = ACTIONS(893), + [anon_sym_LPAREN2] = ACTIONS(895), + [anon_sym_DOT_DOT2] = ACTIONS(893), + [anon_sym_DOT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ] = ACTIONS(893), + [anon_sym_DOT_DOT_LT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), + [anon_sym_DOT_DOT_LT2] = ACTIONS(895), + [anon_sym_null] = ACTIONS(893), + [anon_sym_true] = ACTIONS(893), + [anon_sym_false] = ACTIONS(893), + [aux_sym__val_number_decimal_token1] = ACTIONS(893), + [aux_sym__val_number_decimal_token2] = ACTIONS(893), + [anon_sym_DOT2] = ACTIONS(893), + [aux_sym__val_number_decimal_token3] = ACTIONS(893), + [aux_sym__val_number_token1] = ACTIONS(893), + [aux_sym__val_number_token2] = ACTIONS(893), + [aux_sym__val_number_token3] = ACTIONS(893), + [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(893), + [sym_filesize_unit] = ACTIONS(893), + [sym_duration_unit] = ACTIONS(893), + [anon_sym_0o] = ACTIONS(893), + [anon_sym_0x] = ACTIONS(893), + [sym_val_date] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(893), + [sym__str_single_quotes] = ACTIONS(893), + [sym__str_back_ticks] = ACTIONS(893), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(893), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(893), + [anon_sym_CARET] = ACTIONS(893), + [aux_sym_unquoted_token5] = ACTIONS(893), + [anon_sym_POUND] = ACTIONS(113), + }, + [881] = { + [sym_comment] = STATE(881), + [ts_builtin_sym_end] = ACTIONS(903), + [anon_sym_export] = ACTIONS(901), + [anon_sym_alias] = ACTIONS(901), + [anon_sym_let] = ACTIONS(901), + [anon_sym_let_DASHenv] = ACTIONS(901), + [anon_sym_mut] = ACTIONS(901), + [anon_sym_const] = ACTIONS(901), + [anon_sym_SEMI] = ACTIONS(901), + [sym_cmd_identifier] = ACTIONS(901), + [anon_sym_LF] = ACTIONS(903), + [anon_sym_def] = ACTIONS(901), + [anon_sym_export_DASHenv] = ACTIONS(901), + [anon_sym_extern] = ACTIONS(901), + [anon_sym_module] = ACTIONS(901), + [anon_sym_use] = ACTIONS(901), + [anon_sym_LBRACK] = ACTIONS(901), + [anon_sym_LPAREN] = ACTIONS(901), + [anon_sym_DOLLAR] = ACTIONS(901), + [anon_sym_error] = ACTIONS(901), + [anon_sym_DASH_DASH] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_break] = ACTIONS(901), + [anon_sym_continue] = ACTIONS(901), + [anon_sym_for] = ACTIONS(901), + [anon_sym_loop] = ACTIONS(901), + [anon_sym_while] = ACTIONS(901), + [anon_sym_do] = ACTIONS(901), + [anon_sym_if] = ACTIONS(901), + [anon_sym_match] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(901), + [anon_sym_DOT_DOT] = ACTIONS(901), + [anon_sym_try] = ACTIONS(901), + [anon_sym_return] = ACTIONS(901), + [anon_sym_source] = ACTIONS(901), + [anon_sym_source_DASHenv] = ACTIONS(901), + [anon_sym_register] = ACTIONS(901), + [anon_sym_hide] = ACTIONS(901), + [anon_sym_hide_DASHenv] = ACTIONS(901), + [anon_sym_overlay] = ACTIONS(901), + [anon_sym_as] = ACTIONS(901), + [anon_sym_where] = ACTIONS(901), + [anon_sym_not] = ACTIONS(901), + [anon_sym_LPAREN2] = ACTIONS(903), + [anon_sym_DOT_DOT2] = ACTIONS(901), + [anon_sym_DOT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ] = ACTIONS(901), + [anon_sym_DOT_DOT_LT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(903), + [anon_sym_DOT_DOT_LT2] = ACTIONS(903), + [anon_sym_null] = ACTIONS(901), + [anon_sym_true] = ACTIONS(901), + [anon_sym_false] = ACTIONS(901), + [aux_sym__val_number_decimal_token1] = ACTIONS(901), + [aux_sym__val_number_decimal_token2] = ACTIONS(901), + [anon_sym_DOT2] = ACTIONS(901), + [aux_sym__val_number_decimal_token3] = ACTIONS(901), + [aux_sym__val_number_token1] = ACTIONS(901), + [aux_sym__val_number_token2] = ACTIONS(901), + [aux_sym__val_number_token3] = ACTIONS(901), + [aux_sym__val_number_token4] = ACTIONS(901), + [aux_sym__val_number_token5] = ACTIONS(901), + [aux_sym__val_number_token6] = ACTIONS(901), + [anon_sym_0b] = ACTIONS(901), + [sym_filesize_unit] = ACTIONS(901), + [sym_duration_unit] = ACTIONS(901), + [anon_sym_0o] = ACTIONS(901), + [anon_sym_0x] = ACTIONS(901), + [sym_val_date] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [sym__str_single_quotes] = ACTIONS(901), + [sym__str_back_ticks] = ACTIONS(901), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(901), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(901), + [anon_sym_CARET] = ACTIONS(901), + [aux_sym_unquoted_token5] = ACTIONS(901), + [anon_sym_POUND] = ACTIONS(113), + }, + [882] = { + [sym_comment] = STATE(882), + [ts_builtin_sym_end] = ACTIONS(936), + [anon_sym_export] = ACTIONS(934), + [anon_sym_alias] = ACTIONS(934), + [anon_sym_let] = ACTIONS(934), + [anon_sym_let_DASHenv] = ACTIONS(934), + [anon_sym_mut] = ACTIONS(934), + [anon_sym_const] = ACTIONS(934), + [anon_sym_SEMI] = ACTIONS(934), + [sym_cmd_identifier] = ACTIONS(934), + [anon_sym_LF] = ACTIONS(936), + [anon_sym_def] = ACTIONS(934), + [anon_sym_export_DASHenv] = ACTIONS(934), + [anon_sym_extern] = ACTIONS(934), + [anon_sym_module] = ACTIONS(934), + [anon_sym_use] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(934), + [anon_sym_LPAREN] = ACTIONS(934), + [anon_sym_DOLLAR] = ACTIONS(934), + [anon_sym_error] = ACTIONS(934), + [anon_sym_DASH_DASH] = ACTIONS(934), + [anon_sym_DASH] = ACTIONS(934), + [anon_sym_break] = ACTIONS(934), + [anon_sym_continue] = ACTIONS(934), + [anon_sym_for] = ACTIONS(934), + [anon_sym_loop] = ACTIONS(934), + [anon_sym_while] = ACTIONS(934), + [anon_sym_do] = ACTIONS(934), + [anon_sym_if] = ACTIONS(934), + [anon_sym_match] = ACTIONS(934), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_DOT_DOT] = ACTIONS(934), + [anon_sym_try] = ACTIONS(934), + [anon_sym_return] = ACTIONS(934), + [anon_sym_source] = ACTIONS(934), + [anon_sym_source_DASHenv] = ACTIONS(934), + [anon_sym_register] = ACTIONS(934), + [anon_sym_hide] = ACTIONS(934), + [anon_sym_hide_DASHenv] = ACTIONS(934), + [anon_sym_overlay] = ACTIONS(934), + [anon_sym_as] = ACTIONS(934), + [anon_sym_where] = ACTIONS(934), + [anon_sym_not] = ACTIONS(934), + [anon_sym_LPAREN2] = ACTIONS(936), + [anon_sym_DOT_DOT2] = ACTIONS(934), + [anon_sym_DOT] = ACTIONS(934), + [anon_sym_DOT_DOT_EQ] = ACTIONS(934), + [anon_sym_DOT_DOT_LT] = ACTIONS(934), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(936), + [anon_sym_DOT_DOT_LT2] = ACTIONS(936), + [anon_sym_null] = ACTIONS(934), + [anon_sym_true] = ACTIONS(934), + [anon_sym_false] = ACTIONS(934), + [aux_sym__val_number_decimal_token1] = ACTIONS(934), + [aux_sym__val_number_decimal_token2] = ACTIONS(934), + [anon_sym_DOT2] = ACTIONS(934), + [aux_sym__val_number_decimal_token3] = ACTIONS(934), + [aux_sym__val_number_token1] = ACTIONS(934), + [aux_sym__val_number_token2] = ACTIONS(934), + [aux_sym__val_number_token3] = ACTIONS(934), + [aux_sym__val_number_token4] = ACTIONS(934), + [aux_sym__val_number_token5] = ACTIONS(934), + [aux_sym__val_number_token6] = ACTIONS(934), + [anon_sym_0b] = ACTIONS(934), + [sym_filesize_unit] = ACTIONS(934), + [sym_duration_unit] = ACTIONS(934), + [anon_sym_0o] = ACTIONS(934), + [anon_sym_0x] = ACTIONS(934), + [sym_val_date] = ACTIONS(934), + [anon_sym_DQUOTE] = ACTIONS(934), + [sym__str_single_quotes] = ACTIONS(934), + [sym__str_back_ticks] = ACTIONS(934), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(934), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(934), + [anon_sym_CARET] = ACTIONS(934), + [aux_sym_unquoted_token5] = ACTIONS(934), + [anon_sym_POUND] = ACTIONS(113), + }, + [883] = { + [sym_comment] = STATE(883), + [anon_sym_LBRACK] = ACTIONS(938), + [anon_sym_COMMA] = ACTIONS(938), + [anon_sym_RBRACK] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(938), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_in] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_STAR_STAR] = ACTIONS(938), + [anon_sym_PLUS_PLUS] = ACTIONS(938), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(938), + [anon_sym_SLASH_SLASH] = ACTIONS(938), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_bit_DASHshl] = ACTIONS(938), + [anon_sym_bit_DASHshr] = ACTIONS(938), + [anon_sym_EQ_EQ] = ACTIONS(938), + [anon_sym_BANG_EQ] = ACTIONS(938), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(938), + [anon_sym_GT_EQ] = ACTIONS(938), + [anon_sym_not_DASHin] = ACTIONS(938), + [anon_sym_starts_DASHwith] = ACTIONS(938), + [anon_sym_ends_DASHwith] = ACTIONS(938), + [anon_sym_EQ_TILDE] = ACTIONS(938), + [anon_sym_BANG_TILDE] = ACTIONS(938), + [anon_sym_bit_DASHand] = ACTIONS(938), + [anon_sym_bit_DASHxor] = ACTIONS(938), + [anon_sym_bit_DASHor] = ACTIONS(938), + [anon_sym_and] = ACTIONS(938), + [anon_sym_xor] = ACTIONS(938), + [anon_sym_or] = ACTIONS(938), + [anon_sym_DOT_DOT2] = ACTIONS(2390), + [anon_sym_DOT] = ACTIONS(2392), + [anon_sym_DOT_DOT_EQ] = ACTIONS(938), + [anon_sym_DOT_DOT_LT] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2394), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2394), + [anon_sym_null] = ACTIONS(938), + [anon_sym_true] = ACTIONS(938), + [anon_sym_false] = ACTIONS(938), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(938), + [anon_sym_DOT2] = ACTIONS(938), + [aux_sym__val_number_decimal_token3] = ACTIONS(938), + [aux_sym__val_number_token1] = ACTIONS(938), + [aux_sym__val_number_token2] = ACTIONS(938), + [aux_sym__val_number_token3] = ACTIONS(938), + [aux_sym__val_number_token4] = ACTIONS(938), + [aux_sym__val_number_token5] = ACTIONS(938), + [aux_sym__val_number_token6] = ACTIONS(938), + [anon_sym_0b] = ACTIONS(938), + [sym_filesize_unit] = ACTIONS(2380), + [sym_duration_unit] = ACTIONS(2382), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym__str_single_quotes] = ACTIONS(938), + [sym__str_back_ticks] = ACTIONS(938), + [sym__entry_separator] = ACTIONS(940), + [anon_sym_err_GT] = ACTIONS(938), + [anon_sym_out_GT] = ACTIONS(938), + [anon_sym_e_GT] = ACTIONS(938), + [anon_sym_o_GT] = ACTIONS(938), + [anon_sym_err_PLUSout_GT] = ACTIONS(938), + [anon_sym_out_PLUSerr_GT] = ACTIONS(938), + [anon_sym_o_PLUSe_GT] = ACTIONS(938), + [anon_sym_e_PLUSo_GT] = ACTIONS(938), + [aux_sym_unquoted_token5] = ACTIONS(2396), + [aux_sym__unquoted_in_list_token1] = ACTIONS(938), + [anon_sym_POUND] = ACTIONS(113), + }, + [884] = { + [sym_comment] = STATE(884), + [anon_sym_LBRACK] = ACTIONS(913), + [anon_sym_COMMA] = ACTIONS(913), + [anon_sym_LPAREN] = ACTIONS(913), + [anon_sym_DOLLAR] = ACTIONS(913), + [anon_sym_GT] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_in] = ACTIONS(911), + [anon_sym_LBRACE] = ACTIONS(913), + [anon_sym_RBRACE] = ACTIONS(913), + [anon_sym__] = ACTIONS(911), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(911), + [anon_sym_STAR_STAR] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_SLASH] = ACTIONS(911), + [anon_sym_mod] = ACTIONS(913), + [anon_sym_SLASH_SLASH] = ACTIONS(913), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_bit_DASHshl] = ACTIONS(913), + [anon_sym_bit_DASHshr] = ACTIONS(913), + [anon_sym_EQ_EQ] = ACTIONS(913), + [anon_sym_BANG_EQ] = ACTIONS(913), + [anon_sym_LT2] = ACTIONS(911), + [anon_sym_LT_EQ] = ACTIONS(913), + [anon_sym_GT_EQ] = ACTIONS(913), + [anon_sym_not_DASHin] = ACTIONS(913), + [anon_sym_starts_DASHwith] = ACTIONS(913), + [anon_sym_ends_DASHwith] = ACTIONS(913), + [anon_sym_EQ_TILDE] = ACTIONS(913), + [anon_sym_BANG_TILDE] = ACTIONS(913), + [anon_sym_bit_DASHand] = ACTIONS(913), + [anon_sym_bit_DASHxor] = ACTIONS(913), + [anon_sym_bit_DASHor] = ACTIONS(913), + [anon_sym_and] = ACTIONS(913), + [anon_sym_xor] = ACTIONS(913), + [anon_sym_or] = ACTIONS(913), + [anon_sym_DOT_DOT2] = ACTIONS(911), + [anon_sym_DOT] = ACTIONS(911), + [anon_sym_DOT_DOT_EQ] = ACTIONS(911), + [anon_sym_DOT_DOT_LT] = ACTIONS(911), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(913), + [anon_sym_DOT_DOT_LT2] = ACTIONS(913), + [aux_sym__immediate_decimal_token2] = ACTIONS(2354), + [anon_sym_null] = ACTIONS(913), + [anon_sym_true] = ACTIONS(913), + [anon_sym_false] = ACTIONS(913), + [aux_sym__val_number_decimal_token1] = ACTIONS(911), + [aux_sym__val_number_decimal_token2] = ACTIONS(913), + [anon_sym_DOT2] = ACTIONS(911), + [aux_sym__val_number_decimal_token3] = ACTIONS(913), + [aux_sym__val_number_token1] = ACTIONS(913), + [aux_sym__val_number_token2] = ACTIONS(913), + [aux_sym__val_number_token3] = ACTIONS(913), + [aux_sym__val_number_token4] = ACTIONS(913), + [aux_sym__val_number_token5] = ACTIONS(913), + [aux_sym__val_number_token6] = ACTIONS(913), + [anon_sym_0b] = ACTIONS(911), + [sym_filesize_unit] = ACTIONS(911), + [sym_duration_unit] = ACTIONS(913), + [anon_sym_0o] = ACTIONS(911), + [anon_sym_0x] = ACTIONS(911), + [sym_val_date] = ACTIONS(913), + [anon_sym_DQUOTE] = ACTIONS(913), + [sym__str_single_quotes] = ACTIONS(913), + [sym__str_back_ticks] = ACTIONS(913), + [anon_sym_err_GT] = ACTIONS(913), + [anon_sym_out_GT] = ACTIONS(913), + [anon_sym_e_GT] = ACTIONS(913), + [anon_sym_o_GT] = ACTIONS(913), + [anon_sym_err_PLUSout_GT] = ACTIONS(913), + [anon_sym_out_PLUSerr_GT] = ACTIONS(913), + [anon_sym_o_PLUSe_GT] = ACTIONS(913), + [anon_sym_e_PLUSo_GT] = ACTIONS(913), + [aux_sym_unquoted_token1] = ACTIONS(911), + [aux_sym_unquoted_token5] = ACTIONS(911), + [anon_sym_POUND] = ACTIONS(3), + }, + [885] = { + [sym_comment] = STATE(885), + [anon_sym_LBRACK] = ACTIONS(895), + [anon_sym_COMMA] = ACTIONS(895), + [anon_sym_LPAREN] = ACTIONS(895), + [anon_sym_DOLLAR] = ACTIONS(895), + [anon_sym_GT] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_in] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(895), + [anon_sym_RBRACE] = ACTIONS(895), + [anon_sym__] = ACTIONS(893), + [anon_sym_DOT_DOT] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(893), + [anon_sym_STAR_STAR] = ACTIONS(895), + [anon_sym_PLUS_PLUS] = ACTIONS(895), + [anon_sym_SLASH] = ACTIONS(893), + [anon_sym_mod] = ACTIONS(895), + [anon_sym_SLASH_SLASH] = ACTIONS(895), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_bit_DASHshl] = ACTIONS(895), + [anon_sym_bit_DASHshr] = ACTIONS(895), + [anon_sym_EQ_EQ] = ACTIONS(895), + [anon_sym_BANG_EQ] = ACTIONS(895), + [anon_sym_LT2] = ACTIONS(893), + [anon_sym_LT_EQ] = ACTIONS(895), + [anon_sym_GT_EQ] = ACTIONS(895), + [anon_sym_not_DASHin] = ACTIONS(895), + [anon_sym_starts_DASHwith] = ACTIONS(895), + [anon_sym_ends_DASHwith] = ACTIONS(895), + [anon_sym_EQ_TILDE] = ACTIONS(895), + [anon_sym_BANG_TILDE] = ACTIONS(895), + [anon_sym_bit_DASHand] = ACTIONS(895), + [anon_sym_bit_DASHxor] = ACTIONS(895), + [anon_sym_bit_DASHor] = ACTIONS(895), + [anon_sym_and] = ACTIONS(895), + [anon_sym_xor] = ACTIONS(895), + [anon_sym_or] = ACTIONS(895), + [anon_sym_DOT_DOT2] = ACTIONS(893), + [anon_sym_DOT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ] = ACTIONS(893), + [anon_sym_DOT_DOT_LT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), + [anon_sym_DOT_DOT_LT2] = ACTIONS(895), + [aux_sym__immediate_decimal_token2] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(895), + [anon_sym_true] = ACTIONS(895), + [anon_sym_false] = ACTIONS(895), + [aux_sym__val_number_decimal_token1] = ACTIONS(893), + [aux_sym__val_number_decimal_token2] = ACTIONS(895), + [anon_sym_DOT2] = ACTIONS(893), + [aux_sym__val_number_decimal_token3] = ACTIONS(895), + [aux_sym__val_number_token1] = ACTIONS(895), + [aux_sym__val_number_token2] = ACTIONS(895), + [aux_sym__val_number_token3] = ACTIONS(895), + [aux_sym__val_number_token4] = ACTIONS(895), + [aux_sym__val_number_token5] = ACTIONS(895), + [aux_sym__val_number_token6] = ACTIONS(895), + [anon_sym_0b] = ACTIONS(893), + [sym_filesize_unit] = ACTIONS(893), + [sym_duration_unit] = ACTIONS(895), + [anon_sym_0o] = ACTIONS(893), + [anon_sym_0x] = ACTIONS(893), + [sym_val_date] = ACTIONS(895), + [anon_sym_DQUOTE] = ACTIONS(895), + [sym__str_single_quotes] = ACTIONS(895), + [sym__str_back_ticks] = ACTIONS(895), + [anon_sym_err_GT] = ACTIONS(895), + [anon_sym_out_GT] = ACTIONS(895), + [anon_sym_e_GT] = ACTIONS(895), + [anon_sym_o_GT] = ACTIONS(895), + [anon_sym_err_PLUSout_GT] = ACTIONS(895), + [anon_sym_out_PLUSerr_GT] = ACTIONS(895), + [anon_sym_o_PLUSe_GT] = ACTIONS(895), + [anon_sym_e_PLUSo_GT] = ACTIONS(895), + [aux_sym_unquoted_token1] = ACTIONS(893), + [aux_sym_unquoted_token5] = ACTIONS(893), + [anon_sym_POUND] = ACTIONS(3), + }, + [886] = { + [sym_comment] = STATE(886), + [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), + [anon_sym_SEMI] = ACTIONS(2362), + [sym_cmd_identifier] = ACTIONS(2362), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2362), + [anon_sym_LPAREN] = ACTIONS(2362), + [anon_sym_RPAREN] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2362), + [anon_sym_error] = ACTIONS(2362), + [anon_sym_DASH_DASH] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_break] = ACTIONS(2362), + [anon_sym_continue] = ACTIONS(2362), + [anon_sym_for] = ACTIONS(2362), + [anon_sym_loop] = ACTIONS(2362), + [anon_sym_while] = ACTIONS(2362), + [anon_sym_do] = ACTIONS(2362), + [anon_sym_if] = ACTIONS(2362), + [anon_sym_match] = ACTIONS(2362), + [anon_sym_LBRACE] = ACTIONS(2362), + [anon_sym_RBRACE] = ACTIONS(2362), + [anon_sym_DOT_DOT] = ACTIONS(2362), + [anon_sym_try] = 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_where] = ACTIONS(2362), + [anon_sym_not] = ACTIONS(2362), + [anon_sym_DOT_DOT2] = ACTIONS(2362), + [anon_sym_DOT] = ACTIONS(2362), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2362), + [anon_sym_DOT_DOT_LT] = ACTIONS(2362), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2364), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2364), + [aux_sym__immediate_decimal_token2] = ACTIONS(2398), + [anon_sym_null] = ACTIONS(2362), + [anon_sym_true] = ACTIONS(2362), + [anon_sym_false] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2362), + [aux_sym__val_number_decimal_token2] = ACTIONS(2362), + [anon_sym_DOT2] = ACTIONS(2362), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2362), + [anon_sym_0o] = ACTIONS(2362), + [anon_sym_0x] = ACTIONS(2362), + [sym_val_date] = 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_CARET] = ACTIONS(2362), + [aux_sym_unquoted_token2] = ACTIONS(2362), + [anon_sym_POUND] = ACTIONS(113), + }, + [887] = { + [sym_comment] = STATE(887), + [ts_builtin_sym_end] = ACTIONS(2358), + [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), + [anon_sym_SEMI] = ACTIONS(2356), + [sym_cmd_identifier] = ACTIONS(2356), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2356), + [anon_sym_DOLLAR] = ACTIONS(2356), + [anon_sym_error] = ACTIONS(2356), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_loop] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_match] = ACTIONS(2356), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_DOT_DOT] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_source] = ACTIONS(2356), + [anon_sym_source_DASHenv] = ACTIONS(2356), + [anon_sym_register] = 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_where] = ACTIONS(2356), + [anon_sym_not] = ACTIONS(2356), + [anon_sym_LPAREN2] = ACTIONS(2358), + [anon_sym_DOT_DOT2] = ACTIONS(2356), + [anon_sym_DOT] = ACTIONS(2356), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2356), + [anon_sym_DOT_DOT_LT] = ACTIONS(2356), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2358), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2358), + [aux_sym__immediate_decimal_token2] = ACTIONS(2400), + [anon_sym_null] = ACTIONS(2356), + [anon_sym_true] = ACTIONS(2356), + [anon_sym_false] = ACTIONS(2356), + [aux_sym__val_number_decimal_token1] = ACTIONS(2356), + [aux_sym__val_number_decimal_token2] = ACTIONS(2356), + [anon_sym_DOT2] = ACTIONS(2356), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2356), + [anon_sym_0o] = ACTIONS(2356), + [anon_sym_0x] = ACTIONS(2356), + [sym_val_date] = 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_CARET] = ACTIONS(2356), + [aux_sym_unquoted_token2] = ACTIONS(2356), + [anon_sym_POUND] = ACTIONS(113), + }, + [888] = { + [sym_comment] = STATE(888), + [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), + [anon_sym_SEMI] = ACTIONS(2402), + [sym_cmd_identifier] = ACTIONS(2402), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2402), + [anon_sym_LPAREN] = ACTIONS(2402), + [anon_sym_RPAREN] = ACTIONS(2402), + [anon_sym_DOLLAR] = ACTIONS(2402), + [anon_sym_error] = ACTIONS(2402), + [anon_sym_DASH_DASH] = ACTIONS(2402), + [anon_sym_DASH] = ACTIONS(2402), + [anon_sym_break] = ACTIONS(2402), + [anon_sym_continue] = ACTIONS(2402), + [anon_sym_for] = ACTIONS(2402), + [anon_sym_loop] = ACTIONS(2402), + [anon_sym_while] = ACTIONS(2402), + [anon_sym_do] = ACTIONS(2402), + [anon_sym_if] = ACTIONS(2402), + [anon_sym_match] = ACTIONS(2402), + [anon_sym_LBRACE] = ACTIONS(2402), + [anon_sym_RBRACE] = ACTIONS(2402), + [anon_sym_DOT_DOT] = ACTIONS(2402), + [anon_sym_try] = 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_where] = ACTIONS(2402), + [anon_sym_not] = ACTIONS(2402), + [anon_sym_LPAREN2] = ACTIONS(2404), + [anon_sym_DOT_DOT2] = ACTIONS(2402), + [anon_sym_DOT] = ACTIONS(2402), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2402), + [anon_sym_DOT_DOT_LT] = ACTIONS(2402), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2404), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2404), + [anon_sym_null] = ACTIONS(2402), + [anon_sym_true] = ACTIONS(2402), + [anon_sym_false] = ACTIONS(2402), + [aux_sym__val_number_decimal_token1] = ACTIONS(2402), + [aux_sym__val_number_decimal_token2] = ACTIONS(2402), + [anon_sym_DOT2] = ACTIONS(2402), + [aux_sym__val_number_decimal_token3] = ACTIONS(2402), + [aux_sym__val_number_token1] = ACTIONS(2402), + [aux_sym__val_number_token2] = ACTIONS(2402), + [aux_sym__val_number_token3] = ACTIONS(2402), + [aux_sym__val_number_token4] = ACTIONS(2402), + [aux_sym__val_number_token5] = ACTIONS(2402), + [aux_sym__val_number_token6] = ACTIONS(2402), + [anon_sym_0b] = ACTIONS(2402), + [anon_sym_0o] = ACTIONS(2402), + [anon_sym_0x] = ACTIONS(2402), + [sym_val_date] = 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_CARET] = ACTIONS(2402), + [aux_sym_unquoted_token2] = ACTIONS(2402), + [anon_sym_POUND] = ACTIONS(113), + }, + [889] = { + [sym_expr_parenthesized] = STATE(4343), + [sym_val_range] = STATE(4943), + [sym__val_range] = STATE(10136), + [sym__val_range_with_end] = STATE(10101), + [sym__value] = STATE(4943), + [sym_val_nothing] = STATE(4807), + [sym_val_bool] = STATE(4492), + [sym_val_variable] = STATE(4349), + [sym__var] = STATE(3822), + [sym_val_number] = STATE(4807), + [sym__val_number_decimal] = STATE(3465), + [sym__val_number] = STATE(4799), + [sym_val_duration] = STATE(4807), + [sym_val_filesize] = STATE(4807), + [sym_val_binary] = STATE(4807), + [sym_val_string] = STATE(4807), + [sym__str_double_quotes] = STATE(4947), + [sym_val_interpolated] = STATE(4807), + [sym__inter_single_quotes] = STATE(4961), + [sym__inter_double_quotes] = STATE(4964), + [sym_val_list] = STATE(4807), + [sym_val_record] = STATE(4807), + [sym_val_table] = STATE(4807), + [sym_val_closure] = STATE(4807), + [sym__cmd_arg] = STATE(4898), + [sym_redirection] = STATE(4944), + [sym__flag] = STATE(4945), + [sym_short_flag] = STATE(4939), + [sym_long_flag] = STATE(4939), + [sym_long_flag_equals_value] = STATE(4865), + [sym_long_flag_value] = STATE(4899), + [sym_unquoted] = STATE(4400), + [sym__unquoted_with_expr] = STATE(4946), + [sym__unquoted_anonymous_prefix] = STATE(9837), + [sym_comment] = STATE(889), + [anon_sym_LBRACK] = ACTIONS(2406), + [anon_sym_LPAREN] = ACTIONS(2408), + [anon_sym_DOLLAR] = ACTIONS(2410), + [anon_sym_DASH_DASH] = ACTIONS(2412), + [anon_sym_DASH] = ACTIONS(2414), + [anon_sym_LBRACE] = ACTIONS(2416), + [anon_sym_DOT_DOT] = ACTIONS(2418), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2420), + [anon_sym_DOT_DOT_LT] = ACTIONS(2420), + [anon_sym_null] = ACTIONS(2422), + [anon_sym_true] = ACTIONS(2424), + [anon_sym_false] = ACTIONS(2424), + [aux_sym__val_number_decimal_token1] = ACTIONS(2426), + [aux_sym__val_number_decimal_token2] = ACTIONS(2428), + [anon_sym_DOT2] = ACTIONS(2430), + [aux_sym__val_number_decimal_token3] = ACTIONS(2432), + [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(2436), + [aux_sym__val_number_token5] = ACTIONS(2436), + [aux_sym__val_number_token6] = ACTIONS(2436), + [anon_sym_0b] = ACTIONS(2438), + [anon_sym_0o] = ACTIONS(2440), + [anon_sym_0x] = ACTIONS(2440), + [sym_val_date] = ACTIONS(2442), + [anon_sym_DQUOTE] = ACTIONS(2444), + [sym__str_single_quotes] = ACTIONS(2446), + [sym__str_back_ticks] = ACTIONS(2446), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2448), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2450), + [anon_sym_err_GT] = ACTIONS(2452), + [anon_sym_out_GT] = ACTIONS(2452), + [anon_sym_e_GT] = ACTIONS(2452), + [anon_sym_o_GT] = ACTIONS(2452), + [anon_sym_err_PLUSout_GT] = ACTIONS(2452), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2452), + [anon_sym_o_PLUSe_GT] = ACTIONS(2452), + [anon_sym_e_PLUSo_GT] = ACTIONS(2452), + [aux_sym_unquoted_token1] = ACTIONS(2454), + [anon_sym_POUND] = ACTIONS(3), + }, + [890] = { + [sym_comment] = STATE(890), + [anon_sym_LBRACK] = ACTIONS(895), + [anon_sym_COMMA] = ACTIONS(895), + [anon_sym_RBRACK] = ACTIONS(895), + [anon_sym_LPAREN] = ACTIONS(895), + [anon_sym_DOLLAR] = ACTIONS(895), + [anon_sym_GT] = ACTIONS(893), + [anon_sym_DASH_DASH] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_in] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(895), + [anon_sym_DOT_DOT] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(893), + [anon_sym_STAR_STAR] = ACTIONS(895), + [anon_sym_PLUS_PLUS] = ACTIONS(895), + [anon_sym_SLASH] = ACTIONS(893), + [anon_sym_mod] = ACTIONS(895), + [anon_sym_SLASH_SLASH] = ACTIONS(895), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_bit_DASHshl] = ACTIONS(895), + [anon_sym_bit_DASHshr] = ACTIONS(895), + [anon_sym_EQ_EQ] = ACTIONS(895), + [anon_sym_BANG_EQ] = ACTIONS(895), + [anon_sym_LT2] = ACTIONS(893), + [anon_sym_LT_EQ] = ACTIONS(895), + [anon_sym_GT_EQ] = ACTIONS(895), + [anon_sym_not_DASHin] = ACTIONS(895), + [anon_sym_starts_DASHwith] = ACTIONS(895), + [anon_sym_ends_DASHwith] = ACTIONS(895), + [anon_sym_EQ_TILDE] = ACTIONS(895), + [anon_sym_BANG_TILDE] = ACTIONS(895), + [anon_sym_bit_DASHand] = ACTIONS(895), + [anon_sym_bit_DASHxor] = ACTIONS(895), + [anon_sym_bit_DASHor] = ACTIONS(895), + [anon_sym_and] = ACTIONS(895), + [anon_sym_xor] = ACTIONS(895), + [anon_sym_or] = ACTIONS(895), + [anon_sym_DOT_DOT2] = ACTIONS(893), + [anon_sym_DOT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ] = ACTIONS(893), + [anon_sym_DOT_DOT_LT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), + [anon_sym_DOT_DOT_LT2] = ACTIONS(895), + [anon_sym_null] = ACTIONS(895), + [anon_sym_true] = ACTIONS(895), + [anon_sym_false] = ACTIONS(895), + [aux_sym__val_number_decimal_token1] = ACTIONS(893), + [aux_sym__val_number_decimal_token2] = ACTIONS(895), + [anon_sym_DOT2] = ACTIONS(893), + [aux_sym__val_number_decimal_token3] = ACTIONS(895), + [aux_sym__val_number_token1] = ACTIONS(895), + [aux_sym__val_number_token2] = ACTIONS(895), + [aux_sym__val_number_token3] = ACTIONS(895), + [aux_sym__val_number_token4] = ACTIONS(895), + [aux_sym__val_number_token5] = ACTIONS(895), + [aux_sym__val_number_token6] = ACTIONS(895), + [anon_sym_0b] = ACTIONS(893), + [sym_filesize_unit] = ACTIONS(893), + [sym_duration_unit] = ACTIONS(895), + [anon_sym_0o] = ACTIONS(893), + [anon_sym_0x] = ACTIONS(893), + [sym_val_date] = ACTIONS(895), + [anon_sym_DQUOTE] = ACTIONS(895), + [sym__str_single_quotes] = ACTIONS(895), + [sym__str_back_ticks] = ACTIONS(895), + [anon_sym_err_GT] = ACTIONS(895), + [anon_sym_out_GT] = ACTIONS(895), + [anon_sym_e_GT] = ACTIONS(895), + [anon_sym_o_GT] = ACTIONS(895), + [anon_sym_err_PLUSout_GT] = ACTIONS(895), + [anon_sym_out_PLUSerr_GT] = ACTIONS(895), + [anon_sym_o_PLUSe_GT] = ACTIONS(895), + [anon_sym_e_PLUSo_GT] = ACTIONS(895), + [aux_sym_unquoted_token5] = ACTIONS(893), + [aux_sym__unquoted_in_list_token1] = ACTIONS(893), + [anon_sym_POUND] = ACTIONS(3), + }, + [891] = { + [sym_path] = STATE(1018), + [sym_comment] = STATE(891), + [aux_sym_cell_path_repeat1] = STATE(896), [anon_sym_export] = ACTIONS(1010), [anon_sym_alias] = ACTIONS(1010), [anon_sym_let] = ACTIONS(1010), [anon_sym_let_DASHenv] = ACTIONS(1010), [anon_sym_mut] = ACTIONS(1010), [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), [anon_sym_def] = ACTIONS(1010), [anon_sym_export_DASHenv] = ACTIONS(1010), [anon_sym_extern] = ACTIONS(1010), [anon_sym_module] = ACTIONS(1010), [anon_sym_use] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1010), [anon_sym_DOLLAR] = ACTIONS(1010), [anon_sym_error] = ACTIONS(1010), - [anon_sym_list] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), [anon_sym_DASH] = ACTIONS(1010), [anon_sym_break] = ACTIONS(1010), [anon_sym_continue] = ACTIONS(1010), [anon_sym_for] = ACTIONS(1010), - [anon_sym_in] = ACTIONS(1010), [anon_sym_loop] = ACTIONS(1010), - [anon_sym_make] = ACTIONS(1010), [anon_sym_while] = ACTIONS(1010), [anon_sym_do] = ACTIONS(1010), [anon_sym_if] = ACTIONS(1010), - [anon_sym_else] = ACTIONS(1010), [anon_sym_match] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), [anon_sym_try] = ACTIONS(1010), - [anon_sym_catch] = ACTIONS(1010), [anon_sym_return] = ACTIONS(1010), [anon_sym_source] = ACTIONS(1010), [anon_sym_source_DASHenv] = ACTIONS(1010), @@ -180822,34 +179418,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(1010), [anon_sym_hide_DASHenv] = ACTIONS(1010), [anon_sym_overlay] = ACTIONS(1010), - [anon_sym_new] = ACTIONS(1010), [anon_sym_as] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1010), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_SLASH] = ACTIONS(1010), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT2] = ACTIONS(1010), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT_EQ] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(1644), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT2] = ACTIONS(1010), + [anon_sym_DOT] = ACTIONS(2456), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), + [anon_sym_null] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), [aux_sym__val_number_decimal_token1] = ACTIONS(1010), [aux_sym__val_number_decimal_token2] = ACTIONS(1010), [anon_sym_DOT2] = ACTIONS(1010), @@ -180860,137 +179440,367 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token4] = ACTIONS(1010), [aux_sym__val_number_token5] = ACTIONS(1010), [aux_sym__val_number_token6] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), [anon_sym_DQUOTE] = ACTIONS(1010), [sym__str_single_quotes] = ACTIONS(1010), [sym__str_back_ticks] = ACTIONS(1010), - [sym__entry_separator] = ACTIONS(1012), - [aux_sym__record_key_token2] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_CARET] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(113), }, - [826] = { - [sym_path] = STATE(851), - [sym_comment] = STATE(826), - [aux_sym_cell_path_repeat1] = STATE(827), - [anon_sym_export] = ACTIONS(987), - [anon_sym_alias] = ACTIONS(987), - [anon_sym_let] = ACTIONS(987), - [anon_sym_let_DASHenv] = ACTIONS(987), - [anon_sym_mut] = ACTIONS(987), - [anon_sym_const] = ACTIONS(987), - [sym_cmd_identifier] = ACTIONS(987), - [anon_sym_def] = ACTIONS(987), - [anon_sym_export_DASHenv] = ACTIONS(987), - [anon_sym_extern] = ACTIONS(987), - [anon_sym_module] = ACTIONS(987), - [anon_sym_use] = ACTIONS(987), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_DOLLAR] = ACTIONS(987), - [anon_sym_error] = ACTIONS(987), - [anon_sym_list] = ACTIONS(987), - [anon_sym_GT] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_break] = ACTIONS(987), - [anon_sym_continue] = ACTIONS(987), - [anon_sym_for] = ACTIONS(987), - [anon_sym_in] = ACTIONS(987), - [anon_sym_loop] = ACTIONS(987), - [anon_sym_make] = ACTIONS(987), - [anon_sym_while] = ACTIONS(987), - [anon_sym_do] = ACTIONS(987), - [anon_sym_if] = ACTIONS(987), - [anon_sym_else] = ACTIONS(987), - [anon_sym_match] = ACTIONS(987), - [anon_sym_RBRACE] = ACTIONS(987), - [anon_sym_try] = ACTIONS(987), - [anon_sym_catch] = ACTIONS(987), - [anon_sym_return] = ACTIONS(987), - [anon_sym_source] = ACTIONS(987), - [anon_sym_source_DASHenv] = ACTIONS(987), - [anon_sym_register] = ACTIONS(987), - [anon_sym_hide] = ACTIONS(987), - [anon_sym_hide_DASHenv] = ACTIONS(987), - [anon_sym_overlay] = ACTIONS(987), - [anon_sym_new] = ACTIONS(987), - [anon_sym_as] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(987), - [anon_sym_STAR_STAR] = ACTIONS(987), - [anon_sym_PLUS_PLUS] = ACTIONS(987), - [anon_sym_SLASH] = ACTIONS(987), - [anon_sym_mod] = ACTIONS(987), - [anon_sym_SLASH_SLASH] = ACTIONS(987), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_bit_DASHshl] = ACTIONS(987), - [anon_sym_bit_DASHshr] = ACTIONS(987), - [anon_sym_EQ_EQ] = ACTIONS(987), - [anon_sym_BANG_EQ] = ACTIONS(987), - [anon_sym_LT2] = ACTIONS(987), - [anon_sym_LT_EQ] = ACTIONS(987), - [anon_sym_GT_EQ] = ACTIONS(987), - [anon_sym_not_DASHin] = ACTIONS(987), - [anon_sym_starts_DASHwith] = ACTIONS(987), - [anon_sym_ends_DASHwith] = ACTIONS(987), - [anon_sym_EQ_TILDE] = ACTIONS(987), - [anon_sym_BANG_TILDE] = ACTIONS(987), - [anon_sym_bit_DASHand] = ACTIONS(987), - [anon_sym_bit_DASHxor] = ACTIONS(987), - [anon_sym_bit_DASHor] = ACTIONS(987), - [anon_sym_and] = ACTIONS(987), - [anon_sym_xor] = ACTIONS(987), - [anon_sym_or] = ACTIONS(987), - [anon_sym_DOT] = ACTIONS(1644), - [aux_sym__val_number_decimal_token1] = ACTIONS(987), - [aux_sym__val_number_decimal_token2] = ACTIONS(987), - [anon_sym_DOT2] = ACTIONS(987), - [aux_sym__val_number_decimal_token3] = ACTIONS(987), - [aux_sym__val_number_token1] = ACTIONS(987), - [aux_sym__val_number_token2] = ACTIONS(987), - [aux_sym__val_number_token3] = ACTIONS(987), - [aux_sym__val_number_token4] = ACTIONS(987), - [aux_sym__val_number_token5] = ACTIONS(987), - [aux_sym__val_number_token6] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(987), - [sym__str_single_quotes] = ACTIONS(987), - [sym__str_back_ticks] = ACTIONS(987), - [sym__entry_separator] = ACTIONS(989), - [aux_sym__record_key_token2] = ACTIONS(987), + [892] = { + [sym_comment] = STATE(892), + [anon_sym_LBRACK] = ACTIONS(895), + [anon_sym_COMMA] = ACTIONS(895), + [anon_sym_LPAREN] = ACTIONS(895), + [anon_sym_DOLLAR] = ACTIONS(895), + [anon_sym_GT] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_in] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(895), + [anon_sym_RBRACE] = ACTIONS(895), + [anon_sym__] = ACTIONS(893), + [anon_sym_DOT_DOT] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(893), + [anon_sym_STAR_STAR] = ACTIONS(895), + [anon_sym_PLUS_PLUS] = ACTIONS(895), + [anon_sym_SLASH] = ACTIONS(893), + [anon_sym_mod] = ACTIONS(895), + [anon_sym_SLASH_SLASH] = ACTIONS(895), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_bit_DASHshl] = ACTIONS(895), + [anon_sym_bit_DASHshr] = ACTIONS(895), + [anon_sym_EQ_EQ] = ACTIONS(895), + [anon_sym_BANG_EQ] = ACTIONS(895), + [anon_sym_LT2] = ACTIONS(893), + [anon_sym_LT_EQ] = ACTIONS(895), + [anon_sym_GT_EQ] = ACTIONS(895), + [anon_sym_not_DASHin] = ACTIONS(895), + [anon_sym_starts_DASHwith] = ACTIONS(895), + [anon_sym_ends_DASHwith] = ACTIONS(895), + [anon_sym_EQ_TILDE] = ACTIONS(895), + [anon_sym_BANG_TILDE] = ACTIONS(895), + [anon_sym_bit_DASHand] = ACTIONS(895), + [anon_sym_bit_DASHxor] = ACTIONS(895), + [anon_sym_bit_DASHor] = ACTIONS(895), + [anon_sym_and] = ACTIONS(895), + [anon_sym_xor] = ACTIONS(895), + [anon_sym_or] = ACTIONS(895), + [anon_sym_DOT_DOT2] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ] = ACTIONS(893), + [anon_sym_DOT_DOT_LT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), + [anon_sym_DOT_DOT_LT2] = ACTIONS(895), + [aux_sym__immediate_decimal_token1] = ACTIONS(2458), + [aux_sym__immediate_decimal_token2] = ACTIONS(2460), + [anon_sym_null] = ACTIONS(895), + [anon_sym_true] = ACTIONS(895), + [anon_sym_false] = ACTIONS(895), + [aux_sym__val_number_decimal_token1] = ACTIONS(893), + [aux_sym__val_number_decimal_token2] = ACTIONS(895), + [anon_sym_DOT2] = ACTIONS(893), + [aux_sym__val_number_decimal_token3] = ACTIONS(895), + [aux_sym__val_number_token1] = ACTIONS(895), + [aux_sym__val_number_token2] = ACTIONS(895), + [aux_sym__val_number_token3] = ACTIONS(895), + [aux_sym__val_number_token4] = ACTIONS(895), + [aux_sym__val_number_token5] = ACTIONS(895), + [aux_sym__val_number_token6] = ACTIONS(895), + [anon_sym_0b] = ACTIONS(893), + [sym_filesize_unit] = ACTIONS(893), + [sym_duration_unit] = ACTIONS(895), + [anon_sym_0o] = ACTIONS(893), + [anon_sym_0x] = ACTIONS(893), + [sym_val_date] = ACTIONS(895), + [anon_sym_DQUOTE] = ACTIONS(895), + [sym__str_single_quotes] = ACTIONS(895), + [sym__str_back_ticks] = ACTIONS(895), + [anon_sym_err_GT] = ACTIONS(895), + [anon_sym_out_GT] = ACTIONS(895), + [anon_sym_e_GT] = ACTIONS(895), + [anon_sym_o_GT] = ACTIONS(895), + [anon_sym_err_PLUSout_GT] = ACTIONS(895), + [anon_sym_out_PLUSerr_GT] = ACTIONS(895), + [anon_sym_o_PLUSe_GT] = ACTIONS(895), + [anon_sym_e_PLUSo_GT] = ACTIONS(895), + [aux_sym_unquoted_token1] = ACTIONS(893), + [anon_sym_POUND] = ACTIONS(3), + }, + [893] = { + [sym_comment] = STATE(893), + [ts_builtin_sym_end] = ACTIONS(2231), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_alias] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_let_DASHenv] = ACTIONS(2229), + [anon_sym_mut] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2229), + [sym_cmd_identifier] = ACTIONS(2229), + [anon_sym_LF] = ACTIONS(2231), + [anon_sym_def] = ACTIONS(2229), + [anon_sym_export_DASHenv] = ACTIONS(2229), + [anon_sym_extern] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2229), + [anon_sym_error] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_loop] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_source] = ACTIONS(2229), + [anon_sym_source_DASHenv] = ACTIONS(2229), + [anon_sym_register] = ACTIONS(2229), + [anon_sym_hide] = ACTIONS(2229), + [anon_sym_hide_DASHenv] = ACTIONS(2229), + [anon_sym_overlay] = ACTIONS(2229), + [anon_sym_as] = ACTIONS(2229), + [anon_sym_where] = ACTIONS(2229), + [anon_sym_not] = ACTIONS(2229), + [anon_sym_LPAREN2] = ACTIONS(2231), + [anon_sym_DOT_DOT2] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2229), + [anon_sym_DOT_DOT_LT] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2231), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2231), + [aux_sym__immediate_decimal_token2] = ACTIONS(2347), + [anon_sym_null] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [aux_sym__val_number_decimal_token1] = ACTIONS(2229), + [aux_sym__val_number_decimal_token2] = ACTIONS(2229), + [anon_sym_DOT2] = ACTIONS(2229), + [aux_sym__val_number_decimal_token3] = ACTIONS(2229), + [aux_sym__val_number_token1] = ACTIONS(2229), + [aux_sym__val_number_token2] = ACTIONS(2229), + [aux_sym__val_number_token3] = ACTIONS(2229), + [aux_sym__val_number_token4] = ACTIONS(2229), + [aux_sym__val_number_token5] = ACTIONS(2229), + [aux_sym__val_number_token6] = ACTIONS(2229), + [anon_sym_0b] = ACTIONS(2229), + [anon_sym_0o] = ACTIONS(2229), + [anon_sym_0x] = ACTIONS(2229), + [sym_val_date] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2229), + [anon_sym_CARET] = ACTIONS(2229), + [aux_sym_unquoted_token2] = ACTIONS(2229), [anon_sym_POUND] = ACTIONS(113), }, - [827] = { - [sym_path] = STATE(851), - [sym_comment] = STATE(827), - [aux_sym_cell_path_repeat1] = STATE(828), + [894] = { + [sym_expr_parenthesized] = STATE(7564), + [sym_val_range] = STATE(8345), + [sym__val_range] = STATE(10084), + [sym__val_range_with_end] = STATE(10188), + [sym__value] = STATE(8345), + [sym_val_nothing] = STATE(5320), + [sym_val_bool] = STATE(7794), + [sym_val_variable] = STATE(4700), + [sym__var] = STATE(4205), + [sym_val_number] = STATE(5320), + [sym__val_number_decimal] = STATE(6556), + [sym__val_number] = STATE(5324), + [sym_val_duration] = STATE(5320), + [sym_val_filesize] = STATE(5320), + [sym_val_binary] = STATE(5320), + [sym_val_string] = STATE(5320), + [sym__str_double_quotes] = STATE(5376), + [sym_val_interpolated] = STATE(5320), + [sym__inter_single_quotes] = STATE(5381), + [sym__inter_double_quotes] = STATE(5382), + [sym_val_list] = STATE(5320), + [sym_val_record] = STATE(5320), + [sym_val_table] = STATE(5320), + [sym_val_closure] = STATE(5320), + [sym__cmd_arg] = STATE(8223), + [sym_redirection] = STATE(8348), + [sym__flag] = STATE(8349), + [sym_short_flag] = STATE(8332), + [sym_long_flag] = STATE(8332), + [sym_long_flag_equals_value] = STATE(8153), + [sym_long_flag_value] = STATE(8232), + [sym_unquoted] = STATE(7804), + [sym__unquoted_with_expr] = STATE(8351), + [sym__unquoted_anonymous_prefix] = STATE(9898), + [sym_comment] = STATE(894), + [anon_sym_LBRACK] = ACTIONS(2462), + [anon_sym_LPAREN] = ACTIONS(2464), + [anon_sym_DOLLAR] = ACTIONS(1598), + [anon_sym_DASH_DASH] = ACTIONS(2466), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_DOT_DOT] = ACTIONS(1606), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2470), + [anon_sym_DOT_DOT_LT] = ACTIONS(2470), + [anon_sym_null] = ACTIONS(2472), + [anon_sym_true] = ACTIONS(2474), + [anon_sym_false] = ACTIONS(2474), + [aux_sym__val_number_decimal_token1] = ACTIONS(1614), + [aux_sym__val_number_decimal_token2] = ACTIONS(2476), + [anon_sym_DOT2] = ACTIONS(1616), + [aux_sym__val_number_decimal_token3] = ACTIONS(2478), + [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(2482), + [aux_sym__val_number_token5] = ACTIONS(2482), + [aux_sym__val_number_token6] = ACTIONS(2482), + [anon_sym_0b] = ACTIONS(1624), + [anon_sym_0o] = ACTIONS(1626), + [anon_sym_0x] = ACTIONS(1626), + [sym_val_date] = ACTIONS(2484), + [anon_sym_DQUOTE] = ACTIONS(2486), + [sym__str_single_quotes] = ACTIONS(2488), + [sym__str_back_ticks] = ACTIONS(2488), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2490), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2492), + [anon_sym_err_GT] = ACTIONS(2494), + [anon_sym_out_GT] = ACTIONS(2494), + [anon_sym_e_GT] = ACTIONS(2494), + [anon_sym_o_GT] = ACTIONS(2494), + [anon_sym_err_PLUSout_GT] = ACTIONS(2494), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), + [anon_sym_o_PLUSe_GT] = ACTIONS(2494), + [anon_sym_e_PLUSo_GT] = ACTIONS(2494), + [aux_sym_unquoted_token1] = ACTIONS(1642), + [anon_sym_POUND] = ACTIONS(3), + }, + [895] = { + [sym_expr_parenthesized] = STATE(4230), + [sym_val_range] = STATE(4744), + [sym__val_range] = STATE(10140), + [sym__val_range_with_end] = STATE(10107), + [sym__value] = STATE(4744), + [sym_val_nothing] = STATE(4668), + [sym_val_bool] = STATE(4389), + [sym_val_variable] = STATE(4252), + [sym__var] = STATE(3648), + [sym_val_number] = STATE(4668), + [sym__val_number_decimal] = STATE(3351), + [sym__val_number] = STATE(4715), + [sym_val_duration] = STATE(4668), + [sym_val_filesize] = STATE(4668), + [sym_val_binary] = STATE(4668), + [sym_val_string] = STATE(4668), + [sym__str_double_quotes] = STATE(4536), + [sym_val_interpolated] = STATE(4668), + [sym__inter_single_quotes] = STATE(4537), + [sym__inter_double_quotes] = STATE(4538), + [sym_val_list] = STATE(4668), + [sym_val_record] = STATE(4668), + [sym_val_table] = STATE(4668), + [sym_val_closure] = STATE(4668), + [sym__cmd_arg] = STATE(4731), + [sym_redirection] = STATE(4745), + [sym__flag] = STATE(4746), + [sym_short_flag] = STATE(4674), + [sym_long_flag] = STATE(4674), + [sym_long_flag_equals_value] = STATE(4714), + [sym_long_flag_value] = STATE(4732), + [sym_unquoted] = STATE(4344), + [sym__unquoted_with_expr] = STATE(4747), + [sym__unquoted_anonymous_prefix] = STATE(9739), + [sym_comment] = STATE(895), + [anon_sym_LBRACK] = ACTIONS(2496), + [anon_sym_LPAREN] = ACTIONS(2498), + [anon_sym_DOLLAR] = ACTIONS(2500), + [anon_sym_DASH_DASH] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_LBRACE] = ACTIONS(2506), + [anon_sym_DOT_DOT] = ACTIONS(2508), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2510), + [anon_sym_DOT_DOT_LT] = ACTIONS(2510), + [anon_sym_null] = ACTIONS(2512), + [anon_sym_true] = ACTIONS(2514), + [anon_sym_false] = ACTIONS(2514), + [aux_sym__val_number_decimal_token1] = ACTIONS(2516), + [aux_sym__val_number_decimal_token2] = ACTIONS(2518), + [anon_sym_DOT2] = ACTIONS(2520), + [aux_sym__val_number_decimal_token3] = ACTIONS(2522), + [aux_sym__val_number_token1] = ACTIONS(2524), + [aux_sym__val_number_token2] = ACTIONS(2524), + [aux_sym__val_number_token3] = ACTIONS(2524), + [aux_sym__val_number_token4] = ACTIONS(2526), + [aux_sym__val_number_token5] = ACTIONS(2526), + [aux_sym__val_number_token6] = ACTIONS(2526), + [anon_sym_0b] = ACTIONS(2528), + [anon_sym_0o] = ACTIONS(2530), + [anon_sym_0x] = ACTIONS(2530), + [sym_val_date] = ACTIONS(2532), + [anon_sym_DQUOTE] = ACTIONS(2534), + [sym__str_single_quotes] = ACTIONS(2536), + [sym__str_back_ticks] = ACTIONS(2536), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2538), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2540), + [anon_sym_err_GT] = ACTIONS(2542), + [anon_sym_out_GT] = ACTIONS(2542), + [anon_sym_e_GT] = ACTIONS(2542), + [anon_sym_o_GT] = ACTIONS(2542), + [anon_sym_err_PLUSout_GT] = ACTIONS(2542), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2542), + [anon_sym_o_PLUSe_GT] = ACTIONS(2542), + [anon_sym_e_PLUSo_GT] = ACTIONS(2542), + [aux_sym_unquoted_token1] = ACTIONS(2544), + [anon_sym_POUND] = ACTIONS(3), + }, + [896] = { + [sym_path] = STATE(1018), + [sym_comment] = STATE(896), + [aux_sym_cell_path_repeat1] = STATE(906), [anon_sym_export] = ACTIONS(1006), [anon_sym_alias] = ACTIONS(1006), [anon_sym_let] = ACTIONS(1006), [anon_sym_let_DASHenv] = ACTIONS(1006), [anon_sym_mut] = ACTIONS(1006), [anon_sym_const] = ACTIONS(1006), + [anon_sym_SEMI] = ACTIONS(1006), [sym_cmd_identifier] = ACTIONS(1006), + [anon_sym_LF] = ACTIONS(1008), [anon_sym_def] = ACTIONS(1006), [anon_sym_export_DASHenv] = ACTIONS(1006), [anon_sym_extern] = ACTIONS(1006), [anon_sym_module] = ACTIONS(1006), [anon_sym_use] = ACTIONS(1006), + [anon_sym_LBRACK] = ACTIONS(1006), [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_RPAREN] = ACTIONS(1006), [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_error] = ACTIONS(1006), - [anon_sym_list] = ACTIONS(1006), - [anon_sym_GT] = ACTIONS(1006), + [anon_sym_DASH_DASH] = ACTIONS(1006), [anon_sym_DASH] = ACTIONS(1006), [anon_sym_break] = ACTIONS(1006), [anon_sym_continue] = ACTIONS(1006), [anon_sym_for] = ACTIONS(1006), - [anon_sym_in] = ACTIONS(1006), [anon_sym_loop] = ACTIONS(1006), - [anon_sym_make] = ACTIONS(1006), [anon_sym_while] = ACTIONS(1006), [anon_sym_do] = ACTIONS(1006), [anon_sym_if] = ACTIONS(1006), - [anon_sym_else] = ACTIONS(1006), [anon_sym_match] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(1006), [anon_sym_RBRACE] = ACTIONS(1006), + [anon_sym_DOT_DOT] = ACTIONS(1006), [anon_sym_try] = ACTIONS(1006), - [anon_sym_catch] = ACTIONS(1006), [anon_sym_return] = ACTIONS(1006), [anon_sym_source] = ACTIONS(1006), [anon_sym_source_DASHenv] = ACTIONS(1006), @@ -180998,8 +179808,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(1006), [anon_sym_hide_DASHenv] = ACTIONS(1006), [anon_sym_overlay] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1006), [anon_sym_as] = ACTIONS(1006), + [anon_sym_where] = ACTIONS(1006), + [anon_sym_not] = ACTIONS(1006), + [anon_sym_DOT_DOT2] = ACTIONS(1006), + [anon_sym_DOT] = ACTIONS(2456), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), + [anon_sym_DOT_DOT_LT] = ACTIONS(1006), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), + [anon_sym_null] = ACTIONS(1006), + [anon_sym_true] = ACTIONS(1006), + [anon_sym_false] = ACTIONS(1006), + [aux_sym__val_number_decimal_token1] = ACTIONS(1006), + [aux_sym__val_number_decimal_token2] = ACTIONS(1006), + [anon_sym_DOT2] = ACTIONS(1006), + [aux_sym__val_number_decimal_token3] = ACTIONS(1006), + [aux_sym__val_number_token1] = ACTIONS(1006), + [aux_sym__val_number_token2] = ACTIONS(1006), + [aux_sym__val_number_token3] = ACTIONS(1006), + [aux_sym__val_number_token4] = ACTIONS(1006), + [aux_sym__val_number_token5] = ACTIONS(1006), + [aux_sym__val_number_token6] = ACTIONS(1006), + [anon_sym_0b] = ACTIONS(1006), + [anon_sym_0o] = ACTIONS(1006), + [anon_sym_0x] = ACTIONS(1006), + [sym_val_date] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym__str_single_quotes] = ACTIONS(1006), + [sym__str_back_ticks] = ACTIONS(1006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1006), + [anon_sym_CARET] = ACTIONS(1006), + [anon_sym_POUND] = ACTIONS(113), + }, + [897] = { + [sym_cell_path] = STATE(1098), + [sym_path] = STATE(898), + [sym_comment] = STATE(897), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_SLASH] = ACTIONS(1002), + [anon_sym_mod] = ACTIONS(1002), + [anon_sym_SLASH_SLASH] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1002), + [anon_sym_bit_DASHshl] = ACTIONS(1002), + [anon_sym_bit_DASHshr] = ACTIONS(1002), + [anon_sym_EQ_EQ] = ACTIONS(1002), + [anon_sym_BANG_EQ] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ] = ACTIONS(1002), + [anon_sym_GT_EQ] = ACTIONS(1002), + [anon_sym_not_DASHin] = ACTIONS(1002), + [anon_sym_starts_DASHwith] = ACTIONS(1002), + [anon_sym_ends_DASHwith] = ACTIONS(1002), + [anon_sym_EQ_TILDE] = ACTIONS(1002), + [anon_sym_BANG_TILDE] = ACTIONS(1002), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_DOT_DOT2] = ACTIONS(1002), + [anon_sym_DOT] = ACTIONS(2546), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1004), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1004), + [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), + [anon_sym_DOT2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = 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(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [sym__entry_separator] = ACTIONS(1004), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1002), + [anon_sym_POUND] = ACTIONS(113), + }, + [898] = { + [sym_path] = STATE(1013), + [sym_comment] = STATE(898), + [aux_sym_cell_path_repeat1] = STATE(899), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_COMMA] = ACTIONS(1010), + [anon_sym_RBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_DOT_DOT2] = ACTIONS(1010), + [anon_sym_DOT] = ACTIONS(2546), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), + [anon_sym_null] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym__val_number_decimal_token1] = ACTIONS(1010), + [aux_sym__val_number_decimal_token2] = ACTIONS(1010), + [anon_sym_DOT2] = ACTIONS(1010), + [aux_sym__val_number_decimal_token3] = 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(1010), + [aux_sym__val_number_token5] = ACTIONS(1010), + [aux_sym__val_number_token6] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [sym__entry_separator] = ACTIONS(1012), + [anon_sym_err_GT] = ACTIONS(1010), + [anon_sym_out_GT] = ACTIONS(1010), + [anon_sym_e_GT] = ACTIONS(1010), + [anon_sym_o_GT] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT] = ACTIONS(1010), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1010), + [anon_sym_POUND] = ACTIONS(113), + }, + [899] = { + [sym_path] = STATE(1013), + [sym_comment] = STATE(899), + [aux_sym_cell_path_repeat1] = STATE(900), + [anon_sym_LBRACK] = ACTIONS(1006), + [anon_sym_COMMA] = ACTIONS(1006), + [anon_sym_RBRACK] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_GT] = ACTIONS(1006), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_in] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_DOT_DOT] = ACTIONS(1006), [anon_sym_STAR] = ACTIONS(1006), [anon_sym_STAR_STAR] = ACTIONS(1006), [anon_sym_PLUS_PLUS] = ACTIONS(1006), @@ -181025,7 +180038,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(1006), [anon_sym_xor] = ACTIONS(1006), [anon_sym_or] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1644), + [anon_sym_DOT_DOT2] = ACTIONS(1006), + [anon_sym_DOT] = ACTIONS(2546), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), + [anon_sym_DOT_DOT_LT] = ACTIONS(1006), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), + [anon_sym_null] = ACTIONS(1006), + [anon_sym_true] = ACTIONS(1006), + [anon_sym_false] = ACTIONS(1006), [aux_sym__val_number_decimal_token1] = ACTIONS(1006), [aux_sym__val_number_decimal_token2] = ACTIONS(1006), [anon_sym_DOT2] = ACTIONS(1006), @@ -181036,487 +180057,4343 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token4] = ACTIONS(1006), [aux_sym__val_number_token5] = ACTIONS(1006), [aux_sym__val_number_token6] = ACTIONS(1006), + [anon_sym_0b] = ACTIONS(1006), + [anon_sym_0o] = ACTIONS(1006), + [anon_sym_0x] = ACTIONS(1006), + [sym_val_date] = ACTIONS(1006), [anon_sym_DQUOTE] = ACTIONS(1006), [sym__str_single_quotes] = ACTIONS(1006), [sym__str_back_ticks] = ACTIONS(1006), [sym__entry_separator] = ACTIONS(1008), - [aux_sym__record_key_token2] = ACTIONS(1006), + [anon_sym_err_GT] = ACTIONS(1006), + [anon_sym_out_GT] = ACTIONS(1006), + [anon_sym_e_GT] = ACTIONS(1006), + [anon_sym_o_GT] = ACTIONS(1006), + [anon_sym_err_PLUSout_GT] = ACTIONS(1006), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), + [anon_sym_o_PLUSe_GT] = ACTIONS(1006), + [anon_sym_e_PLUSo_GT] = ACTIONS(1006), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1006), [anon_sym_POUND] = ACTIONS(113), }, - [828] = { - [sym_path] = STATE(851), - [sym_comment] = STATE(828), - [aux_sym_cell_path_repeat1] = STATE(828), - [anon_sym_export] = ACTIONS(999), - [anon_sym_alias] = ACTIONS(999), - [anon_sym_let] = ACTIONS(999), - [anon_sym_let_DASHenv] = ACTIONS(999), - [anon_sym_mut] = ACTIONS(999), - [anon_sym_const] = ACTIONS(999), - [sym_cmd_identifier] = ACTIONS(999), - [anon_sym_def] = ACTIONS(999), - [anon_sym_export_DASHenv] = ACTIONS(999), - [anon_sym_extern] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_use] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_error] = ACTIONS(999), - [anon_sym_list] = ACTIONS(999), - [anon_sym_GT] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_break] = ACTIONS(999), - [anon_sym_continue] = ACTIONS(999), - [anon_sym_for] = ACTIONS(999), - [anon_sym_in] = ACTIONS(999), - [anon_sym_loop] = ACTIONS(999), - [anon_sym_make] = ACTIONS(999), - [anon_sym_while] = ACTIONS(999), - [anon_sym_do] = ACTIONS(999), - [anon_sym_if] = ACTIONS(999), - [anon_sym_else] = ACTIONS(999), - [anon_sym_match] = ACTIONS(999), - [anon_sym_RBRACE] = ACTIONS(999), - [anon_sym_try] = ACTIONS(999), - [anon_sym_catch] = ACTIONS(999), - [anon_sym_return] = ACTIONS(999), - [anon_sym_source] = ACTIONS(999), - [anon_sym_source_DASHenv] = ACTIONS(999), - [anon_sym_register] = ACTIONS(999), - [anon_sym_hide] = ACTIONS(999), - [anon_sym_hide_DASHenv] = ACTIONS(999), - [anon_sym_overlay] = ACTIONS(999), - [anon_sym_new] = ACTIONS(999), - [anon_sym_as] = ACTIONS(999), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_STAR_STAR] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(999), - [anon_sym_mod] = ACTIONS(999), - [anon_sym_SLASH_SLASH] = ACTIONS(999), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_bit_DASHshl] = ACTIONS(999), - [anon_sym_bit_DASHshr] = ACTIONS(999), - [anon_sym_EQ_EQ] = ACTIONS(999), - [anon_sym_BANG_EQ] = ACTIONS(999), - [anon_sym_LT2] = ACTIONS(999), - [anon_sym_LT_EQ] = ACTIONS(999), - [anon_sym_GT_EQ] = ACTIONS(999), - [anon_sym_not_DASHin] = ACTIONS(999), - [anon_sym_starts_DASHwith] = ACTIONS(999), - [anon_sym_ends_DASHwith] = ACTIONS(999), - [anon_sym_EQ_TILDE] = ACTIONS(999), - [anon_sym_BANG_TILDE] = ACTIONS(999), - [anon_sym_bit_DASHand] = ACTIONS(999), - [anon_sym_bit_DASHxor] = ACTIONS(999), - [anon_sym_bit_DASHor] = ACTIONS(999), - [anon_sym_and] = ACTIONS(999), - [anon_sym_xor] = ACTIONS(999), - [anon_sym_or] = ACTIONS(999), - [anon_sym_DOT] = ACTIONS(1646), - [aux_sym__val_number_decimal_token1] = ACTIONS(999), - [aux_sym__val_number_decimal_token2] = ACTIONS(999), - [anon_sym_DOT2] = ACTIONS(999), - [aux_sym__val_number_decimal_token3] = ACTIONS(999), - [aux_sym__val_number_token1] = ACTIONS(999), - [aux_sym__val_number_token2] = ACTIONS(999), - [aux_sym__val_number_token3] = ACTIONS(999), - [aux_sym__val_number_token4] = ACTIONS(999), - [aux_sym__val_number_token5] = ACTIONS(999), - [aux_sym__val_number_token6] = ACTIONS(999), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym__str_single_quotes] = ACTIONS(999), - [sym__str_back_ticks] = ACTIONS(999), - [sym__entry_separator] = ACTIONS(1001), - [aux_sym__record_key_token2] = ACTIONS(999), + [900] = { + [sym_path] = STATE(1013), + [sym_comment] = STATE(900), + [aux_sym_cell_path_repeat1] = STATE(900), + [anon_sym_LBRACK] = ACTIONS(985), + [anon_sym_COMMA] = ACTIONS(985), + [anon_sym_RBRACK] = ACTIONS(985), + [anon_sym_LPAREN] = ACTIONS(985), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_GT] = ACTIONS(985), + [anon_sym_DASH_DASH] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_in] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(985), + [anon_sym_DOT_DOT] = ACTIONS(985), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_STAR_STAR] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(985), + [anon_sym_SLASH] = ACTIONS(985), + [anon_sym_mod] = ACTIONS(985), + [anon_sym_SLASH_SLASH] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_bit_DASHshl] = ACTIONS(985), + [anon_sym_bit_DASHshr] = ACTIONS(985), + [anon_sym_EQ_EQ] = ACTIONS(985), + [anon_sym_BANG_EQ] = ACTIONS(985), + [anon_sym_LT2] = ACTIONS(985), + [anon_sym_LT_EQ] = ACTIONS(985), + [anon_sym_GT_EQ] = ACTIONS(985), + [anon_sym_not_DASHin] = ACTIONS(985), + [anon_sym_starts_DASHwith] = ACTIONS(985), + [anon_sym_ends_DASHwith] = ACTIONS(985), + [anon_sym_EQ_TILDE] = ACTIONS(985), + [anon_sym_BANG_TILDE] = ACTIONS(985), + [anon_sym_bit_DASHand] = ACTIONS(985), + [anon_sym_bit_DASHxor] = ACTIONS(985), + [anon_sym_bit_DASHor] = ACTIONS(985), + [anon_sym_and] = ACTIONS(985), + [anon_sym_xor] = ACTIONS(985), + [anon_sym_or] = ACTIONS(985), + [anon_sym_DOT_DOT2] = ACTIONS(985), + [anon_sym_DOT] = ACTIONS(2548), + [anon_sym_DOT_DOT_EQ] = ACTIONS(985), + [anon_sym_DOT_DOT_LT] = ACTIONS(985), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(987), + [anon_sym_DOT_DOT_LT2] = ACTIONS(987), + [anon_sym_null] = ACTIONS(985), + [anon_sym_true] = ACTIONS(985), + [anon_sym_false] = ACTIONS(985), + [aux_sym__val_number_decimal_token1] = ACTIONS(985), + [aux_sym__val_number_decimal_token2] = ACTIONS(985), + [anon_sym_DOT2] = ACTIONS(985), + [aux_sym__val_number_decimal_token3] = ACTIONS(985), + [aux_sym__val_number_token1] = ACTIONS(985), + [aux_sym__val_number_token2] = ACTIONS(985), + [aux_sym__val_number_token3] = ACTIONS(985), + [aux_sym__val_number_token4] = ACTIONS(985), + [aux_sym__val_number_token5] = ACTIONS(985), + [aux_sym__val_number_token6] = ACTIONS(985), + [anon_sym_0b] = ACTIONS(985), + [anon_sym_0o] = ACTIONS(985), + [anon_sym_0x] = ACTIONS(985), + [sym_val_date] = ACTIONS(985), + [anon_sym_DQUOTE] = ACTIONS(985), + [sym__str_single_quotes] = ACTIONS(985), + [sym__str_back_ticks] = ACTIONS(985), + [sym__entry_separator] = ACTIONS(987), + [anon_sym_err_GT] = ACTIONS(985), + [anon_sym_out_GT] = ACTIONS(985), + [anon_sym_e_GT] = ACTIONS(985), + [anon_sym_o_GT] = ACTIONS(985), + [anon_sym_err_PLUSout_GT] = ACTIONS(985), + [anon_sym_out_PLUSerr_GT] = ACTIONS(985), + [anon_sym_o_PLUSe_GT] = ACTIONS(985), + [anon_sym_e_PLUSo_GT] = ACTIONS(985), + [aux_sym__unquoted_in_list_token1] = ACTIONS(985), [anon_sym_POUND] = ACTIONS(113), }, - [829] = { - [sym__match_pattern_expression] = STATE(4408), - [sym__match_pattern_value] = STATE(4362), - [sym__match_pattern_list] = STATE(4365), - [sym__match_pattern_rest] = STATE(10880), - [sym__match_pattern_record] = STATE(4367), - [sym__expr_unary_minus] = STATE(4192), - [sym_expr_parenthesized] = STATE(3835), - [sym_val_range] = STATE(4195), - [sym__val_range] = STATE(10567), - [sym__val_range_with_end] = STATE(10631), - [sym__value] = STATE(10632), - [sym_val_nothing] = STATE(4199), - [sym_val_bool] = STATE(4003), - [sym_val_variable] = STATE(3836), - [sym__var] = STATE(3701), - [sym_val_number] = STATE(4199), - [sym__val_number_decimal] = STATE(3623), - [sym__val_number] = STATE(4220), - [sym_val_duration] = STATE(4199), - [sym_val_filesize] = STATE(4199), - [sym_val_binary] = STATE(4199), - [sym_val_string] = STATE(4199), - [sym__str_double_quotes] = STATE(4244), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(10411), - [sym_list_body] = STATE(11007), - [sym_val_entry] = STATE(10464), - [sym__list_item_expression] = STATE(10482), - [sym__list_item_starts_with_sign] = STATE(4201), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(4199), - [sym_val_closure] = STATE(6614), - [sym_short_flag] = STATE(4201), - [sym_long_flag] = STATE(4201), - [sym_long_flag_equals_value] = STATE(4310), - [sym__unquoted_in_list] = STATE(4006), - [sym__unquoted_in_list_with_expr] = STATE(10484), - [sym__unquoted_anonymous_prefix] = STATE(10279), - [sym_comment] = STATE(829), - [aux_sym__match_pattern_list_repeat1] = STATE(1654), - [aux_sym_list_body_repeat1] = STATE(1121), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_RBRACK] = ACTIONS(1651), - [anon_sym_LPAREN] = ACTIONS(1653), - [anon_sym_DOLLAR] = ACTIONS(1655), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_DASH] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1667), - [anon_sym_DOT_DOT_LT] = ACTIONS(1667), - [anon_sym_null] = ACTIONS(1669), - [anon_sym_true] = ACTIONS(1671), - [anon_sym_false] = ACTIONS(1671), - [aux_sym__val_number_decimal_token1] = ACTIONS(1673), - [aux_sym__val_number_decimal_token2] = ACTIONS(1675), - [anon_sym_DOT2] = ACTIONS(1677), - [aux_sym__val_number_decimal_token3] = ACTIONS(1679), - [aux_sym__val_number_token1] = ACTIONS(1681), - [aux_sym__val_number_token2] = ACTIONS(1681), - [aux_sym__val_number_token3] = ACTIONS(1681), - [aux_sym__val_number_token4] = ACTIONS(1683), - [aux_sym__val_number_token5] = ACTIONS(1683), - [aux_sym__val_number_token6] = ACTIONS(1683), - [anon_sym_0b] = ACTIONS(1685), - [anon_sym_0o] = ACTIONS(1687), - [anon_sym_0x] = ACTIONS(1687), - [sym_val_date] = ACTIONS(1689), - [anon_sym_DQUOTE] = ACTIONS(1691), - [sym__str_single_quotes] = ACTIONS(1693), - [sym__str_back_ticks] = ACTIONS(1693), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(1699), - [anon_sym_out_GT] = ACTIONS(1699), - [anon_sym_e_GT] = ACTIONS(1699), - [anon_sym_o_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT] = ACTIONS(1699), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1701), + [901] = { + [sym_expr_parenthesized] = STATE(5403), + [sym_val_range] = STATE(6142), + [sym__val_range] = STATE(10143), + [sym__val_range_with_end] = STATE(10113), + [sym__value] = STATE(6142), + [sym_val_nothing] = STATE(6018), + [sym_val_bool] = STATE(5858), + [sym_val_variable] = STATE(5339), + [sym__var] = STATE(4600), + [sym_val_number] = STATE(6018), + [sym__val_number_decimal] = STATE(4101), + [sym__val_number] = STATE(6167), + [sym_val_duration] = STATE(6018), + [sym_val_filesize] = STATE(6018), + [sym_val_binary] = STATE(6018), + [sym_val_string] = STATE(6018), + [sym__str_double_quotes] = STATE(6087), + [sym_val_interpolated] = STATE(6018), + [sym__inter_single_quotes] = STATE(6117), + [sym__inter_double_quotes] = STATE(6118), + [sym_val_list] = STATE(6018), + [sym_val_record] = STATE(6018), + [sym_val_table] = STATE(6018), + [sym_val_closure] = STATE(6018), + [sym__cmd_arg] = STATE(6135), + [sym_redirection] = STATE(6143), + [sym__flag] = STATE(6144), + [sym_short_flag] = STATE(6049), + [sym_long_flag] = STATE(6049), + [sym_long_flag_equals_value] = STATE(6112), + [sym_long_flag_value] = STATE(6136), + [sym_unquoted] = STATE(5755), + [sym__unquoted_with_expr] = STATE(6145), + [sym__unquoted_anonymous_prefix] = STATE(9963), + [sym_comment] = STATE(901), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2553), + [anon_sym_DOLLAR] = ACTIONS(2555), + [anon_sym_DASH_DASH] = ACTIONS(2557), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_DOT_DOT] = ACTIONS(2563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2565), + [anon_sym_DOT_DOT_LT] = ACTIONS(2565), + [anon_sym_null] = ACTIONS(2567), + [anon_sym_true] = ACTIONS(2569), + [anon_sym_false] = ACTIONS(2569), + [aux_sym__val_number_decimal_token1] = ACTIONS(2571), + [aux_sym__val_number_decimal_token2] = ACTIONS(2573), + [anon_sym_DOT2] = ACTIONS(2575), + [aux_sym__val_number_decimal_token3] = ACTIONS(2577), + [aux_sym__val_number_token1] = ACTIONS(2579), + [aux_sym__val_number_token2] = ACTIONS(2579), + [aux_sym__val_number_token3] = ACTIONS(2579), + [aux_sym__val_number_token4] = ACTIONS(2581), + [aux_sym__val_number_token5] = ACTIONS(2581), + [aux_sym__val_number_token6] = ACTIONS(2581), + [anon_sym_0b] = ACTIONS(2583), + [anon_sym_0o] = ACTIONS(2585), + [anon_sym_0x] = ACTIONS(2585), + [sym_val_date] = ACTIONS(2587), + [anon_sym_DQUOTE] = ACTIONS(2589), + [sym__str_single_quotes] = ACTIONS(2591), + [sym__str_back_ticks] = ACTIONS(2591), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2593), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2595), + [anon_sym_err_GT] = ACTIONS(2597), + [anon_sym_out_GT] = ACTIONS(2597), + [anon_sym_e_GT] = ACTIONS(2597), + [anon_sym_o_GT] = ACTIONS(2597), + [anon_sym_err_PLUSout_GT] = ACTIONS(2597), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2597), + [anon_sym_o_PLUSe_GT] = ACTIONS(2597), + [anon_sym_e_PLUSo_GT] = ACTIONS(2597), + [aux_sym_unquoted_token1] = ACTIONS(2599), [anon_sym_POUND] = ACTIONS(3), }, - [830] = { - [sym__match_pattern_expression] = STATE(4408), - [sym__match_pattern_value] = STATE(4362), - [sym__match_pattern_list] = STATE(4365), - [sym__match_pattern_rest] = STATE(10880), - [sym__match_pattern_record] = STATE(4367), - [sym__expr_unary_minus] = STATE(4192), - [sym_expr_parenthesized] = STATE(3835), - [sym_val_range] = STATE(4195), - [sym__val_range] = STATE(10567), - [sym__val_range_with_end] = STATE(10631), - [sym__value] = STATE(10632), - [sym_val_nothing] = STATE(4199), - [sym_val_bool] = STATE(4003), - [sym_val_variable] = STATE(3836), - [sym__var] = STATE(3701), - [sym_val_number] = STATE(4199), - [sym__val_number_decimal] = STATE(3623), - [sym__val_number] = STATE(4220), - [sym_val_duration] = STATE(4199), - [sym_val_filesize] = STATE(4199), - [sym_val_binary] = STATE(4199), - [sym_val_string] = STATE(4199), - [sym__str_double_quotes] = STATE(4244), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(10399), - [sym_list_body] = STATE(11164), - [sym_val_entry] = STATE(10464), - [sym__list_item_expression] = STATE(10482), - [sym__list_item_starts_with_sign] = STATE(4201), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(4199), - [sym_val_closure] = STATE(6614), - [sym_short_flag] = STATE(4201), - [sym_long_flag] = STATE(4201), - [sym_long_flag_equals_value] = STATE(4310), - [sym__unquoted_in_list] = STATE(4006), - [sym__unquoted_in_list_with_expr] = STATE(10484), - [sym__unquoted_anonymous_prefix] = STATE(10279), - [sym_comment] = STATE(830), - [aux_sym__match_pattern_list_repeat1] = STATE(1654), - [aux_sym_list_body_repeat1] = STATE(1121), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_RBRACK] = ACTIONS(1703), - [anon_sym_LPAREN] = ACTIONS(1653), - [anon_sym_DOLLAR] = ACTIONS(1655), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_DASH] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1667), - [anon_sym_DOT_DOT_LT] = ACTIONS(1667), - [anon_sym_null] = ACTIONS(1669), - [anon_sym_true] = ACTIONS(1671), - [anon_sym_false] = ACTIONS(1671), - [aux_sym__val_number_decimal_token1] = ACTIONS(1673), - [aux_sym__val_number_decimal_token2] = ACTIONS(1675), - [anon_sym_DOT2] = ACTIONS(1677), - [aux_sym__val_number_decimal_token3] = ACTIONS(1679), - [aux_sym__val_number_token1] = ACTIONS(1681), - [aux_sym__val_number_token2] = ACTIONS(1681), - [aux_sym__val_number_token3] = ACTIONS(1681), - [aux_sym__val_number_token4] = ACTIONS(1683), - [aux_sym__val_number_token5] = ACTIONS(1683), - [aux_sym__val_number_token6] = ACTIONS(1683), - [anon_sym_0b] = ACTIONS(1685), - [anon_sym_0o] = ACTIONS(1687), - [anon_sym_0x] = ACTIONS(1687), - [sym_val_date] = ACTIONS(1689), - [anon_sym_DQUOTE] = ACTIONS(1691), - [sym__str_single_quotes] = ACTIONS(1693), - [sym__str_back_ticks] = ACTIONS(1693), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(1699), - [anon_sym_out_GT] = ACTIONS(1699), - [anon_sym_e_GT] = ACTIONS(1699), - [anon_sym_o_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT] = ACTIONS(1699), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1701), - [anon_sym_POUND] = ACTIONS(3), + [902] = { + [sym_comment] = STATE(902), + [ts_builtin_sym_end] = ACTIONS(2358), + [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), + [anon_sym_SEMI] = ACTIONS(2356), + [sym_cmd_identifier] = ACTIONS(2356), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2356), + [anon_sym_DOLLAR] = ACTIONS(2356), + [anon_sym_error] = ACTIONS(2356), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_loop] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_match] = ACTIONS(2356), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_DOT_DOT] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_source] = ACTIONS(2356), + [anon_sym_source_DASHenv] = ACTIONS(2356), + [anon_sym_register] = 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_where] = ACTIONS(2356), + [anon_sym_not] = ACTIONS(2356), + [anon_sym_LPAREN2] = ACTIONS(2358), + [anon_sym_DOT_DOT2] = ACTIONS(2356), + [anon_sym_DOT] = ACTIONS(2601), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2356), + [anon_sym_DOT_DOT_LT] = ACTIONS(2356), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2358), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2358), + [aux_sym__immediate_decimal_token2] = ACTIONS(2400), + [anon_sym_null] = ACTIONS(2356), + [anon_sym_true] = ACTIONS(2356), + [anon_sym_false] = ACTIONS(2356), + [aux_sym__val_number_decimal_token1] = ACTIONS(2356), + [aux_sym__val_number_decimal_token2] = ACTIONS(2356), + [anon_sym_DOT2] = ACTIONS(2356), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2356), + [anon_sym_0o] = ACTIONS(2356), + [anon_sym_0x] = ACTIONS(2356), + [sym_val_date] = 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_CARET] = ACTIONS(2356), + [aux_sym_unquoted_token2] = ACTIONS(2356), + [anon_sym_POUND] = ACTIONS(113), }, - [831] = { - [sym_cell_path] = STATE(1008), - [sym_path] = STATE(832), - [sym_comment] = STATE(831), - [anon_sym_export] = ACTIONS(1179), - [anon_sym_alias] = ACTIONS(1179), - [anon_sym_let] = ACTIONS(1179), - [anon_sym_let_DASHenv] = ACTIONS(1179), - [anon_sym_mut] = ACTIONS(1179), - [anon_sym_const] = ACTIONS(1179), - [sym_cmd_identifier] = ACTIONS(1179), - [anon_sym_def] = ACTIONS(1179), - [anon_sym_export_DASHenv] = ACTIONS(1179), - [anon_sym_extern] = ACTIONS(1179), - [anon_sym_module] = ACTIONS(1179), - [anon_sym_use] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_DOLLAR] = ACTIONS(1181), - [anon_sym_error] = ACTIONS(1179), - [anon_sym_list] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_DASH] = ACTIONS(1179), - [anon_sym_break] = ACTIONS(1179), - [anon_sym_continue] = ACTIONS(1179), - [anon_sym_for] = ACTIONS(1179), - [anon_sym_in] = ACTIONS(1179), - [anon_sym_loop] = ACTIONS(1179), - [anon_sym_make] = ACTIONS(1179), - [anon_sym_while] = ACTIONS(1179), - [anon_sym_do] = ACTIONS(1179), - [anon_sym_if] = ACTIONS(1179), - [anon_sym_else] = ACTIONS(1179), - [anon_sym_match] = ACTIONS(1179), - [anon_sym_RBRACE] = ACTIONS(1181), - [anon_sym_try] = ACTIONS(1179), - [anon_sym_catch] = ACTIONS(1179), - [anon_sym_return] = ACTIONS(1179), - [anon_sym_source] = ACTIONS(1179), - [anon_sym_source_DASHenv] = ACTIONS(1179), - [anon_sym_register] = ACTIONS(1179), - [anon_sym_hide] = ACTIONS(1179), - [anon_sym_hide_DASHenv] = ACTIONS(1179), - [anon_sym_overlay] = ACTIONS(1179), - [anon_sym_new] = ACTIONS(1179), - [anon_sym_as] = ACTIONS(1179), - [anon_sym_STAR] = ACTIONS(1179), - [anon_sym_STAR_STAR] = ACTIONS(1181), - [anon_sym_PLUS_PLUS] = ACTIONS(1181), - [anon_sym_SLASH] = ACTIONS(1179), - [anon_sym_mod] = ACTIONS(1179), - [anon_sym_SLASH_SLASH] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1179), - [anon_sym_bit_DASHshl] = ACTIONS(1179), - [anon_sym_bit_DASHshr] = ACTIONS(1179), - [anon_sym_EQ_EQ] = ACTIONS(1181), - [anon_sym_BANG_EQ] = ACTIONS(1181), - [anon_sym_LT2] = ACTIONS(1179), - [anon_sym_LT_EQ] = ACTIONS(1181), - [anon_sym_GT_EQ] = ACTIONS(1181), - [anon_sym_not_DASHin] = ACTIONS(1179), - [anon_sym_starts_DASHwith] = ACTIONS(1179), - [anon_sym_ends_DASHwith] = ACTIONS(1179), - [anon_sym_EQ_TILDE] = ACTIONS(1181), - [anon_sym_BANG_TILDE] = ACTIONS(1181), - [anon_sym_bit_DASHand] = ACTIONS(1179), - [anon_sym_bit_DASHxor] = ACTIONS(1179), - [anon_sym_bit_DASHor] = ACTIONS(1179), - [anon_sym_and] = ACTIONS(1179), - [anon_sym_xor] = ACTIONS(1179), - [anon_sym_or] = ACTIONS(1179), - [anon_sym_DOT] = ACTIONS(1705), - [aux_sym__val_number_decimal_token1] = ACTIONS(1179), - [aux_sym__val_number_decimal_token2] = ACTIONS(1181), - [anon_sym_DOT2] = ACTIONS(1179), - [aux_sym__val_number_decimal_token3] = ACTIONS(1181), - [aux_sym__val_number_token1] = ACTIONS(1181), - [aux_sym__val_number_token2] = ACTIONS(1181), - [aux_sym__val_number_token3] = ACTIONS(1181), - [aux_sym__val_number_token4] = ACTIONS(1179), - [aux_sym__val_number_token5] = ACTIONS(1181), - [aux_sym__val_number_token6] = ACTIONS(1179), - [anon_sym_DQUOTE] = ACTIONS(1181), - [sym__str_single_quotes] = ACTIONS(1181), - [sym__str_back_ticks] = ACTIONS(1181), - [aux_sym__record_key_token2] = ACTIONS(1179), - [anon_sym_POUND] = ACTIONS(3), + [903] = { + [sym_comment] = STATE(903), + [ts_builtin_sym_end] = ACTIONS(2231), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_alias] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_let_DASHenv] = ACTIONS(2229), + [anon_sym_mut] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2229), + [sym_cmd_identifier] = ACTIONS(2229), + [anon_sym_LF] = ACTIONS(2231), + [anon_sym_def] = ACTIONS(2229), + [anon_sym_export_DASHenv] = ACTIONS(2229), + [anon_sym_extern] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2229), + [anon_sym_error] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_loop] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_source] = ACTIONS(2229), + [anon_sym_source_DASHenv] = ACTIONS(2229), + [anon_sym_register] = ACTIONS(2229), + [anon_sym_hide] = ACTIONS(2229), + [anon_sym_hide_DASHenv] = ACTIONS(2229), + [anon_sym_overlay] = ACTIONS(2229), + [anon_sym_as] = ACTIONS(2229), + [anon_sym_where] = ACTIONS(2229), + [anon_sym_not] = ACTIONS(2229), + [anon_sym_DOT_DOT2] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2229), + [anon_sym_DOT_DOT_LT] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2231), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2231), + [aux_sym__immediate_decimal_token1] = ACTIONS(2604), + [aux_sym__immediate_decimal_token2] = ACTIONS(2606), + [anon_sym_null] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [aux_sym__val_number_decimal_token1] = ACTIONS(2229), + [aux_sym__val_number_decimal_token2] = ACTIONS(2229), + [anon_sym_DOT2] = ACTIONS(2229), + [aux_sym__val_number_decimal_token3] = ACTIONS(2229), + [aux_sym__val_number_token1] = ACTIONS(2229), + [aux_sym__val_number_token2] = ACTIONS(2229), + [aux_sym__val_number_token3] = ACTIONS(2229), + [aux_sym__val_number_token4] = ACTIONS(2229), + [aux_sym__val_number_token5] = ACTIONS(2229), + [aux_sym__val_number_token6] = ACTIONS(2229), + [anon_sym_0b] = ACTIONS(2229), + [anon_sym_0o] = ACTIONS(2229), + [anon_sym_0x] = ACTIONS(2229), + [sym_val_date] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2229), + [anon_sym_CARET] = ACTIONS(2229), + [aux_sym_unquoted_token2] = ACTIONS(2229), + [anon_sym_POUND] = ACTIONS(113), }, - [832] = { - [sym_path] = STATE(871), - [sym_comment] = STATE(832), - [aux_sym_cell_path_repeat1] = STATE(833), - [anon_sym_export] = ACTIONS(987), - [anon_sym_alias] = ACTIONS(987), - [anon_sym_let] = ACTIONS(987), - [anon_sym_let_DASHenv] = ACTIONS(987), - [anon_sym_mut] = ACTIONS(987), - [anon_sym_const] = ACTIONS(987), - [sym_cmd_identifier] = ACTIONS(987), - [anon_sym_def] = ACTIONS(987), - [anon_sym_export_DASHenv] = ACTIONS(987), - [anon_sym_extern] = ACTIONS(987), - [anon_sym_module] = ACTIONS(987), - [anon_sym_use] = ACTIONS(987), - [anon_sym_LPAREN] = ACTIONS(989), - [anon_sym_DOLLAR] = ACTIONS(989), - [anon_sym_error] = ACTIONS(987), - [anon_sym_list] = ACTIONS(987), - [anon_sym_GT] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_break] = ACTIONS(987), - [anon_sym_continue] = ACTIONS(987), - [anon_sym_for] = ACTIONS(987), - [anon_sym_in] = ACTIONS(987), - [anon_sym_loop] = ACTIONS(987), - [anon_sym_make] = ACTIONS(987), - [anon_sym_while] = ACTIONS(987), - [anon_sym_do] = ACTIONS(987), - [anon_sym_if] = ACTIONS(987), - [anon_sym_else] = ACTIONS(987), - [anon_sym_match] = ACTIONS(987), - [anon_sym_RBRACE] = ACTIONS(989), - [anon_sym_try] = ACTIONS(987), - [anon_sym_catch] = ACTIONS(987), - [anon_sym_return] = ACTIONS(987), - [anon_sym_source] = ACTIONS(987), - [anon_sym_source_DASHenv] = ACTIONS(987), - [anon_sym_register] = ACTIONS(987), - [anon_sym_hide] = ACTIONS(987), - [anon_sym_hide_DASHenv] = ACTIONS(987), - [anon_sym_overlay] = ACTIONS(987), - [anon_sym_new] = ACTIONS(987), - [anon_sym_as] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(987), - [anon_sym_STAR_STAR] = ACTIONS(989), - [anon_sym_PLUS_PLUS] = ACTIONS(989), - [anon_sym_SLASH] = ACTIONS(987), - [anon_sym_mod] = ACTIONS(987), - [anon_sym_SLASH_SLASH] = ACTIONS(989), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_bit_DASHshl] = ACTIONS(987), - [anon_sym_bit_DASHshr] = ACTIONS(987), - [anon_sym_EQ_EQ] = ACTIONS(989), - [anon_sym_BANG_EQ] = ACTIONS(989), - [anon_sym_LT2] = ACTIONS(987), - [anon_sym_LT_EQ] = ACTIONS(989), - [anon_sym_GT_EQ] = ACTIONS(989), - [anon_sym_not_DASHin] = ACTIONS(987), - [anon_sym_starts_DASHwith] = ACTIONS(987), - [anon_sym_ends_DASHwith] = ACTIONS(987), - [anon_sym_EQ_TILDE] = ACTIONS(989), - [anon_sym_BANG_TILDE] = ACTIONS(989), - [anon_sym_bit_DASHand] = ACTIONS(987), + [904] = { + [sym_comment] = STATE(904), + [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), + [anon_sym_SEMI] = ACTIONS(2356), + [sym_cmd_identifier] = ACTIONS(2356), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2356), + [anon_sym_RPAREN] = ACTIONS(2356), + [anon_sym_DOLLAR] = ACTIONS(2356), + [anon_sym_error] = ACTIONS(2356), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_loop] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_match] = ACTIONS(2356), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_RBRACE] = ACTIONS(2356), + [anon_sym_DOT_DOT] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_source] = ACTIONS(2356), + [anon_sym_source_DASHenv] = ACTIONS(2356), + [anon_sym_register] = 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_where] = ACTIONS(2356), + [anon_sym_not] = ACTIONS(2356), + [anon_sym_DOT_DOT2] = ACTIONS(2356), + [anon_sym_DOT] = ACTIONS(2356), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2356), + [anon_sym_DOT_DOT_LT] = ACTIONS(2356), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2358), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2358), + [aux_sym__immediate_decimal_token2] = ACTIONS(2608), + [anon_sym_null] = ACTIONS(2356), + [anon_sym_true] = ACTIONS(2356), + [anon_sym_false] = ACTIONS(2356), + [aux_sym__val_number_decimal_token1] = ACTIONS(2356), + [aux_sym__val_number_decimal_token2] = ACTIONS(2356), + [anon_sym_DOT2] = ACTIONS(2356), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2356), + [anon_sym_0o] = ACTIONS(2356), + [anon_sym_0x] = ACTIONS(2356), + [sym_val_date] = 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_CARET] = ACTIONS(2356), + [aux_sym_unquoted_token2] = ACTIONS(2356), + [anon_sym_POUND] = ACTIONS(113), + }, + [905] = { + [sym_comment] = STATE(905), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_alias] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_let_DASHenv] = ACTIONS(2229), + [anon_sym_mut] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2229), + [sym_cmd_identifier] = ACTIONS(2229), + [anon_sym_LF] = ACTIONS(2231), + [anon_sym_def] = ACTIONS(2229), + [anon_sym_export_DASHenv] = ACTIONS(2229), + [anon_sym_extern] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_RPAREN] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2229), + [anon_sym_error] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_loop] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_RBRACE] = ACTIONS(2229), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_source] = ACTIONS(2229), + [anon_sym_source_DASHenv] = ACTIONS(2229), + [anon_sym_register] = ACTIONS(2229), + [anon_sym_hide] = ACTIONS(2229), + [anon_sym_hide_DASHenv] = ACTIONS(2229), + [anon_sym_overlay] = ACTIONS(2229), + [anon_sym_as] = ACTIONS(2229), + [anon_sym_where] = ACTIONS(2229), + [anon_sym_not] = ACTIONS(2229), + [anon_sym_DOT_DOT2] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2229), + [anon_sym_DOT_DOT_LT] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2231), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2231), + [aux_sym__immediate_decimal_token2] = ACTIONS(2373), + [anon_sym_null] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [aux_sym__val_number_decimal_token1] = ACTIONS(2229), + [aux_sym__val_number_decimal_token2] = ACTIONS(2229), + [anon_sym_DOT2] = ACTIONS(2229), + [aux_sym__val_number_decimal_token3] = ACTIONS(2229), + [aux_sym__val_number_token1] = ACTIONS(2229), + [aux_sym__val_number_token2] = ACTIONS(2229), + [aux_sym__val_number_token3] = ACTIONS(2229), + [aux_sym__val_number_token4] = ACTIONS(2229), + [aux_sym__val_number_token5] = ACTIONS(2229), + [aux_sym__val_number_token6] = ACTIONS(2229), + [anon_sym_0b] = ACTIONS(2229), + [anon_sym_0o] = ACTIONS(2229), + [anon_sym_0x] = ACTIONS(2229), + [sym_val_date] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2229), + [anon_sym_CARET] = ACTIONS(2229), + [aux_sym_unquoted_token2] = ACTIONS(2229), + [anon_sym_POUND] = ACTIONS(113), + }, + [906] = { + [sym_path] = STATE(1018), + [sym_comment] = STATE(906), + [aux_sym_cell_path_repeat1] = STATE(906), + [anon_sym_export] = ACTIONS(985), + [anon_sym_alias] = ACTIONS(985), + [anon_sym_let] = ACTIONS(985), + [anon_sym_let_DASHenv] = ACTIONS(985), + [anon_sym_mut] = ACTIONS(985), + [anon_sym_const] = ACTIONS(985), + [anon_sym_SEMI] = ACTIONS(985), + [sym_cmd_identifier] = ACTIONS(985), + [anon_sym_LF] = ACTIONS(987), + [anon_sym_def] = ACTIONS(985), + [anon_sym_export_DASHenv] = ACTIONS(985), + [anon_sym_extern] = ACTIONS(985), + [anon_sym_module] = ACTIONS(985), + [anon_sym_use] = ACTIONS(985), + [anon_sym_LBRACK] = ACTIONS(985), + [anon_sym_LPAREN] = ACTIONS(985), + [anon_sym_RPAREN] = ACTIONS(985), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_error] = ACTIONS(985), + [anon_sym_DASH_DASH] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_break] = ACTIONS(985), + [anon_sym_continue] = ACTIONS(985), + [anon_sym_for] = ACTIONS(985), + [anon_sym_loop] = ACTIONS(985), + [anon_sym_while] = ACTIONS(985), + [anon_sym_do] = ACTIONS(985), + [anon_sym_if] = ACTIONS(985), + [anon_sym_match] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(985), + [anon_sym_RBRACE] = ACTIONS(985), + [anon_sym_DOT_DOT] = ACTIONS(985), + [anon_sym_try] = ACTIONS(985), + [anon_sym_return] = ACTIONS(985), + [anon_sym_source] = ACTIONS(985), + [anon_sym_source_DASHenv] = ACTIONS(985), + [anon_sym_register] = ACTIONS(985), + [anon_sym_hide] = ACTIONS(985), + [anon_sym_hide_DASHenv] = ACTIONS(985), + [anon_sym_overlay] = ACTIONS(985), + [anon_sym_as] = ACTIONS(985), + [anon_sym_where] = ACTIONS(985), + [anon_sym_not] = ACTIONS(985), + [anon_sym_DOT_DOT2] = ACTIONS(985), + [anon_sym_DOT] = ACTIONS(2610), + [anon_sym_DOT_DOT_EQ] = ACTIONS(985), + [anon_sym_DOT_DOT_LT] = ACTIONS(985), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(987), + [anon_sym_DOT_DOT_LT2] = ACTIONS(987), + [anon_sym_null] = ACTIONS(985), + [anon_sym_true] = ACTIONS(985), + [anon_sym_false] = ACTIONS(985), + [aux_sym__val_number_decimal_token1] = ACTIONS(985), + [aux_sym__val_number_decimal_token2] = ACTIONS(985), + [anon_sym_DOT2] = ACTIONS(985), + [aux_sym__val_number_decimal_token3] = ACTIONS(985), + [aux_sym__val_number_token1] = ACTIONS(985), + [aux_sym__val_number_token2] = ACTIONS(985), + [aux_sym__val_number_token3] = ACTIONS(985), + [aux_sym__val_number_token4] = ACTIONS(985), + [aux_sym__val_number_token5] = ACTIONS(985), + [aux_sym__val_number_token6] = ACTIONS(985), + [anon_sym_0b] = ACTIONS(985), + [anon_sym_0o] = ACTIONS(985), + [anon_sym_0x] = ACTIONS(985), + [sym_val_date] = ACTIONS(985), + [anon_sym_DQUOTE] = ACTIONS(985), + [sym__str_single_quotes] = ACTIONS(985), + [sym__str_back_ticks] = ACTIONS(985), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(985), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(985), + [anon_sym_POUND] = ACTIONS(113), + }, + [907] = { + [sym_expr_parenthesized] = STATE(7974), + [sym_val_range] = STATE(9068), + [sym__val_range] = STATE(10116), + [sym__val_range_with_end] = STATE(10088), + [sym__value] = STATE(9068), + [sym_val_nothing] = STATE(9633), + [sym_val_bool] = STATE(8698), + [sym_val_variable] = STATE(8035), + [sym__var] = STATE(7135), + [sym_val_number] = STATE(9633), + [sym__val_number_decimal] = STATE(6950), + [sym__val_number] = STATE(9637), + [sym_val_duration] = STATE(9633), + [sym_val_filesize] = STATE(9633), + [sym_val_binary] = STATE(9633), + [sym_val_string] = STATE(9633), + [sym__str_double_quotes] = STATE(6559), + [sym_val_interpolated] = STATE(9633), + [sym__inter_single_quotes] = STATE(9710), + [sym__inter_double_quotes] = STATE(9712), + [sym_val_list] = STATE(9633), + [sym_val_record] = STATE(9633), + [sym_val_table] = STATE(9633), + [sym_val_closure] = STATE(9633), + [sym__cmd_arg] = STATE(9133), + [sym_redirection] = STATE(9087), + [sym__flag] = STATE(9088), + [sym_short_flag] = STATE(8892), + [sym_long_flag] = STATE(8892), + [sym_long_flag_equals_value] = STATE(9246), + [sym_long_flag_value] = STATE(9135), + [sym_unquoted] = STATE(8110), + [sym__unquoted_with_expr] = STATE(9099), + [sym__unquoted_anonymous_prefix] = STATE(9758), + [sym_comment] = STATE(907), + [anon_sym_LBRACK] = ACTIONS(2613), + [anon_sym_LPAREN] = ACTIONS(2615), + [anon_sym_DOLLAR] = ACTIONS(2617), + [anon_sym_DASH_DASH] = ACTIONS(2619), + [anon_sym_DASH] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2623), + [anon_sym_DOT_DOT] = ACTIONS(2625), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2627), + [anon_sym_DOT_DOT_LT] = ACTIONS(2627), + [anon_sym_null] = ACTIONS(2629), + [anon_sym_true] = ACTIONS(2631), + [anon_sym_false] = ACTIONS(2631), + [aux_sym__val_number_decimal_token1] = ACTIONS(2633), + [aux_sym__val_number_decimal_token2] = ACTIONS(2635), + [anon_sym_DOT2] = ACTIONS(2637), + [aux_sym__val_number_decimal_token3] = ACTIONS(2639), + [aux_sym__val_number_token1] = ACTIONS(2641), + [aux_sym__val_number_token2] = ACTIONS(2641), + [aux_sym__val_number_token3] = ACTIONS(2641), + [aux_sym__val_number_token4] = ACTIONS(2643), + [aux_sym__val_number_token5] = ACTIONS(2643), + [aux_sym__val_number_token6] = ACTIONS(2643), + [anon_sym_0b] = ACTIONS(2645), + [anon_sym_0o] = ACTIONS(2647), + [anon_sym_0x] = ACTIONS(2647), + [sym_val_date] = ACTIONS(2649), + [anon_sym_DQUOTE] = ACTIONS(2651), + [sym__str_single_quotes] = ACTIONS(2653), + [sym__str_back_ticks] = ACTIONS(2653), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2655), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2657), + [anon_sym_err_GT] = ACTIONS(2659), + [anon_sym_out_GT] = ACTIONS(2659), + [anon_sym_e_GT] = ACTIONS(2659), + [anon_sym_o_GT] = ACTIONS(2659), + [anon_sym_err_PLUSout_GT] = ACTIONS(2659), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2659), + [anon_sym_o_PLUSe_GT] = ACTIONS(2659), + [anon_sym_e_PLUSo_GT] = ACTIONS(2659), + [aux_sym_unquoted_token1] = ACTIONS(2661), + [anon_sym_POUND] = ACTIONS(3), + }, + [908] = { + [sym_comment] = STATE(908), + [anon_sym_LBRACK] = ACTIONS(903), + [anon_sym_COMMA] = ACTIONS(903), + [anon_sym_RBRACK] = ACTIONS(903), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_DOLLAR] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_DASH_DASH] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_in] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(903), + [anon_sym_DOT_DOT] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_STAR_STAR] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_mod] = ACTIONS(903), + [anon_sym_SLASH_SLASH] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_bit_DASHshl] = ACTIONS(903), + [anon_sym_bit_DASHshr] = ACTIONS(903), + [anon_sym_EQ_EQ] = ACTIONS(903), + [anon_sym_BANG_EQ] = ACTIONS(903), + [anon_sym_LT2] = ACTIONS(901), + [anon_sym_LT_EQ] = ACTIONS(903), + [anon_sym_GT_EQ] = ACTIONS(903), + [anon_sym_not_DASHin] = ACTIONS(903), + [anon_sym_starts_DASHwith] = ACTIONS(903), + [anon_sym_ends_DASHwith] = ACTIONS(903), + [anon_sym_EQ_TILDE] = ACTIONS(903), + [anon_sym_BANG_TILDE] = ACTIONS(903), + [anon_sym_bit_DASHand] = ACTIONS(903), + [anon_sym_bit_DASHxor] = ACTIONS(903), + [anon_sym_bit_DASHor] = ACTIONS(903), + [anon_sym_and] = ACTIONS(903), + [anon_sym_xor] = ACTIONS(903), + [anon_sym_or] = ACTIONS(903), + [anon_sym_DOT_DOT2] = ACTIONS(901), + [anon_sym_DOT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ] = ACTIONS(901), + [anon_sym_DOT_DOT_LT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(903), + [anon_sym_DOT_DOT_LT2] = ACTIONS(903), + [anon_sym_null] = ACTIONS(903), + [anon_sym_true] = ACTIONS(903), + [anon_sym_false] = ACTIONS(903), + [aux_sym__val_number_decimal_token1] = ACTIONS(901), + [aux_sym__val_number_decimal_token2] = ACTIONS(903), + [anon_sym_DOT2] = ACTIONS(901), + [aux_sym__val_number_decimal_token3] = ACTIONS(903), + [aux_sym__val_number_token1] = ACTIONS(903), + [aux_sym__val_number_token2] = ACTIONS(903), + [aux_sym__val_number_token3] = ACTIONS(903), + [aux_sym__val_number_token4] = ACTIONS(903), + [aux_sym__val_number_token5] = ACTIONS(903), + [aux_sym__val_number_token6] = ACTIONS(903), + [anon_sym_0b] = ACTIONS(901), + [sym_filesize_unit] = ACTIONS(901), + [sym_duration_unit] = ACTIONS(903), + [anon_sym_0o] = ACTIONS(901), + [anon_sym_0x] = ACTIONS(901), + [sym_val_date] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(903), + [sym__str_single_quotes] = ACTIONS(903), + [sym__str_back_ticks] = ACTIONS(903), + [anon_sym_err_GT] = ACTIONS(903), + [anon_sym_out_GT] = ACTIONS(903), + [anon_sym_e_GT] = ACTIONS(903), + [anon_sym_o_GT] = ACTIONS(903), + [anon_sym_err_PLUSout_GT] = ACTIONS(903), + [anon_sym_out_PLUSerr_GT] = ACTIONS(903), + [anon_sym_o_PLUSe_GT] = ACTIONS(903), + [anon_sym_e_PLUSo_GT] = ACTIONS(903), + [aux_sym_unquoted_token5] = ACTIONS(901), + [aux_sym__unquoted_in_list_token1] = ACTIONS(901), + [anon_sym_POUND] = ACTIONS(3), + }, + [909] = { + [sym_expr_parenthesized] = STATE(7554), + [sym_val_range] = STATE(8158), + [sym__val_range] = STATE(10121), + [sym__val_range_with_end] = STATE(10118), + [sym__value] = STATE(8158), + [sym_val_nothing] = STATE(5612), + [sym_val_bool] = STATE(7711), + [sym_val_variable] = STATE(4867), + [sym__var] = STATE(4310), + [sym_val_number] = STATE(5612), + [sym__val_number_decimal] = STATE(6569), + [sym__val_number] = STATE(5661), + [sym_val_duration] = STATE(5612), + [sym_val_filesize] = STATE(5612), + [sym_val_binary] = STATE(5612), + [sym_val_string] = STATE(5612), + [sym__str_double_quotes] = STATE(5733), + [sym_val_interpolated] = STATE(5612), + [sym__inter_single_quotes] = STATE(5590), + [sym__inter_double_quotes] = STATE(5591), + [sym_val_list] = STATE(5612), + [sym_val_record] = STATE(5612), + [sym_val_table] = STATE(5612), + [sym_val_closure] = STATE(5612), + [sym__cmd_arg] = STATE(8119), + [sym_redirection] = STATE(8160), + [sym__flag] = STATE(8161), + [sym_short_flag] = STATE(8315), + [sym_long_flag] = STATE(8315), + [sym_long_flag_equals_value] = STATE(8239), + [sym_long_flag_value] = STATE(8120), + [sym_unquoted] = STATE(7728), + [sym__unquoted_with_expr] = STATE(8163), + [sym__unquoted_anonymous_prefix] = STATE(9889), + [sym_comment] = STATE(909), + [anon_sym_LBRACK] = ACTIONS(2663), + [anon_sym_LPAREN] = ACTIONS(2665), + [anon_sym_DOLLAR] = ACTIONS(2667), + [anon_sym_DASH_DASH] = ACTIONS(2669), + [anon_sym_DASH] = ACTIONS(2671), + [anon_sym_LBRACE] = ACTIONS(2673), + [anon_sym_DOT_DOT] = ACTIONS(2675), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2677), + [anon_sym_DOT_DOT_LT] = ACTIONS(2677), + [anon_sym_null] = ACTIONS(2679), + [anon_sym_true] = ACTIONS(2681), + [anon_sym_false] = ACTIONS(2681), + [aux_sym__val_number_decimal_token1] = ACTIONS(2683), + [aux_sym__val_number_decimal_token2] = ACTIONS(2685), + [anon_sym_DOT2] = ACTIONS(2687), + [aux_sym__val_number_decimal_token3] = ACTIONS(2689), + [aux_sym__val_number_token1] = ACTIONS(2691), + [aux_sym__val_number_token2] = ACTIONS(2691), + [aux_sym__val_number_token3] = ACTIONS(2691), + [aux_sym__val_number_token4] = ACTIONS(2693), + [aux_sym__val_number_token5] = ACTIONS(2693), + [aux_sym__val_number_token6] = ACTIONS(2693), + [anon_sym_0b] = ACTIONS(2695), + [anon_sym_0o] = ACTIONS(2697), + [anon_sym_0x] = ACTIONS(2697), + [sym_val_date] = ACTIONS(2699), + [anon_sym_DQUOTE] = ACTIONS(2701), + [sym__str_single_quotes] = ACTIONS(2703), + [sym__str_back_ticks] = ACTIONS(2703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2705), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2707), + [anon_sym_err_GT] = ACTIONS(2709), + [anon_sym_out_GT] = ACTIONS(2709), + [anon_sym_e_GT] = ACTIONS(2709), + [anon_sym_o_GT] = ACTIONS(2709), + [anon_sym_err_PLUSout_GT] = ACTIONS(2709), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2709), + [anon_sym_o_PLUSe_GT] = ACTIONS(2709), + [anon_sym_e_PLUSo_GT] = ACTIONS(2709), + [aux_sym_unquoted_token1] = ACTIONS(2711), + [anon_sym_POUND] = ACTIONS(3), + }, + [910] = { + [sym_comment] = STATE(910), + [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), + [anon_sym_SEMI] = ACTIONS(2356), + [sym_cmd_identifier] = ACTIONS(2356), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2356), + [anon_sym_RPAREN] = ACTIONS(2356), + [anon_sym_DOLLAR] = ACTIONS(2356), + [anon_sym_error] = ACTIONS(2356), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_loop] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_match] = ACTIONS(2356), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_RBRACE] = ACTIONS(2356), + [anon_sym_DOT_DOT] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_source] = ACTIONS(2356), + [anon_sym_source_DASHenv] = ACTIONS(2356), + [anon_sym_register] = 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_where] = ACTIONS(2356), + [anon_sym_not] = ACTIONS(2356), + [anon_sym_DOT_DOT2] = ACTIONS(2356), + [anon_sym_DOT] = ACTIONS(2713), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2356), + [anon_sym_DOT_DOT_LT] = ACTIONS(2356), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2358), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2358), + [aux_sym__immediate_decimal_token2] = ACTIONS(2608), + [anon_sym_null] = ACTIONS(2356), + [anon_sym_true] = ACTIONS(2356), + [anon_sym_false] = ACTIONS(2356), + [aux_sym__val_number_decimal_token1] = ACTIONS(2356), + [aux_sym__val_number_decimal_token2] = ACTIONS(2356), + [anon_sym_DOT2] = ACTIONS(2356), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2356), + [anon_sym_0o] = ACTIONS(2356), + [anon_sym_0x] = ACTIONS(2356), + [sym_val_date] = 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_CARET] = ACTIONS(2356), + [aux_sym_unquoted_token2] = ACTIONS(2356), + [anon_sym_POUND] = ACTIONS(113), + }, + [911] = { + [sym_expr_parenthesized] = STATE(7974), + [sym_val_range] = STATE(9068), + [sym__val_range] = STATE(10116), + [sym__val_range_with_end] = STATE(10088), + [sym__value] = STATE(9068), + [sym_val_nothing] = STATE(9633), + [sym_val_bool] = STATE(8905), + [sym_val_variable] = STATE(8035), + [sym__var] = STATE(7135), + [sym_val_number] = STATE(9633), + [sym__val_number_decimal] = STATE(6866), + [sym__val_number] = STATE(9637), + [sym_val_duration] = STATE(9633), + [sym_val_filesize] = STATE(9633), + [sym_val_binary] = STATE(9633), + [sym_val_string] = STATE(9633), + [sym__str_double_quotes] = STATE(6559), + [sym_val_interpolated] = STATE(9633), + [sym__inter_single_quotes] = STATE(9710), + [sym__inter_double_quotes] = STATE(9712), + [sym_val_list] = STATE(9633), + [sym_val_record] = STATE(9633), + [sym_val_table] = STATE(9633), + [sym_val_closure] = STATE(9633), + [sym__cmd_arg] = STATE(9133), + [sym_redirection] = STATE(9087), + [sym__flag] = STATE(9088), + [sym_short_flag] = STATE(8892), + [sym_long_flag] = STATE(8892), + [sym_long_flag_equals_value] = STATE(9246), + [sym_long_flag_value] = STATE(9135), + [sym_unquoted] = STATE(8110), + [sym__unquoted_with_expr] = STATE(9099), + [sym__unquoted_anonymous_prefix] = STATE(9758), + [sym_comment] = STATE(911), + [anon_sym_LBRACK] = ACTIONS(2613), + [anon_sym_LPAREN] = ACTIONS(2615), + [anon_sym_DOLLAR] = ACTIONS(2617), + [anon_sym_DASH_DASH] = ACTIONS(2716), + [anon_sym_DASH] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2623), + [anon_sym_DOT_DOT] = ACTIONS(2718), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2720), + [anon_sym_DOT_DOT_LT] = ACTIONS(2720), + [anon_sym_null] = ACTIONS(2722), + [anon_sym_true] = ACTIONS(2724), + [anon_sym_false] = ACTIONS(2724), + [aux_sym__val_number_decimal_token1] = ACTIONS(2726), + [aux_sym__val_number_decimal_token2] = ACTIONS(2728), + [anon_sym_DOT2] = ACTIONS(2730), + [aux_sym__val_number_decimal_token3] = ACTIONS(2732), + [aux_sym__val_number_token1] = ACTIONS(2641), + [aux_sym__val_number_token2] = ACTIONS(2641), + [aux_sym__val_number_token3] = ACTIONS(2641), + [aux_sym__val_number_token4] = ACTIONS(2734), + [aux_sym__val_number_token5] = ACTIONS(2734), + [aux_sym__val_number_token6] = ACTIONS(2734), + [anon_sym_0b] = ACTIONS(2645), + [anon_sym_0o] = ACTIONS(2647), + [anon_sym_0x] = ACTIONS(2647), + [sym_val_date] = ACTIONS(2736), + [anon_sym_DQUOTE] = ACTIONS(2651), + [sym__str_single_quotes] = ACTIONS(2653), + [sym__str_back_ticks] = ACTIONS(2653), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2655), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2657), + [anon_sym_err_GT] = ACTIONS(2738), + [anon_sym_out_GT] = ACTIONS(2738), + [anon_sym_e_GT] = ACTIONS(2738), + [anon_sym_o_GT] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT] = ACTIONS(2738), + [aux_sym_unquoted_token1] = ACTIONS(2661), + [anon_sym_POUND] = ACTIONS(3), + }, + [912] = { + [sym_expr_parenthesized] = STATE(7509), + [sym_val_range] = STATE(8118), + [sym__val_range] = STATE(10097), + [sym__val_range_with_end] = STATE(10029), + [sym__value] = STATE(8118), + [sym_val_nothing] = STATE(5416), + [sym_val_bool] = STATE(7695), + [sym_val_variable] = STATE(4774), + [sym__var] = STATE(4188), + [sym_val_number] = STATE(5416), + [sym__val_number_decimal] = STATE(6533), + [sym__val_number] = STATE(5419), + [sym_val_duration] = STATE(5416), + [sym_val_filesize] = STATE(5416), + [sym_val_binary] = STATE(5416), + [sym_val_string] = STATE(5416), + [sym__str_double_quotes] = STATE(5513), + [sym_val_interpolated] = STATE(5416), + [sym__inter_single_quotes] = STATE(5443), + [sym__inter_double_quotes] = STATE(5209), + [sym_val_list] = STATE(5416), + [sym_val_record] = STATE(5416), + [sym_val_table] = STATE(5416), + [sym_val_closure] = STATE(5416), + [sym__cmd_arg] = STATE(8268), + [sym_redirection] = STATE(8128), + [sym__flag] = STATE(8129), + [sym_short_flag] = STATE(8270), + [sym_long_flag] = STATE(8270), + [sym_long_flag_equals_value] = STATE(8136), + [sym_long_flag_value] = STATE(8271), + [sym_unquoted] = STATE(7665), + [sym__unquoted_with_expr] = STATE(8135), + [sym__unquoted_anonymous_prefix] = STATE(9809), + [sym_comment] = STATE(912), + [anon_sym_LBRACK] = ACTIONS(2740), + [anon_sym_LPAREN] = ACTIONS(2742), + [anon_sym_DOLLAR] = ACTIONS(1650), + [anon_sym_DASH_DASH] = ACTIONS(2744), + [anon_sym_DASH] = ACTIONS(1654), + [anon_sym_LBRACE] = ACTIONS(2746), + [anon_sym_DOT_DOT] = ACTIONS(1658), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2748), + [anon_sym_DOT_DOT_LT] = ACTIONS(2748), + [anon_sym_null] = ACTIONS(2750), + [anon_sym_true] = ACTIONS(2752), + [anon_sym_false] = ACTIONS(2752), + [aux_sym__val_number_decimal_token1] = ACTIONS(1666), + [aux_sym__val_number_decimal_token2] = ACTIONS(2754), + [anon_sym_DOT2] = ACTIONS(1668), + [aux_sym__val_number_decimal_token3] = ACTIONS(2756), + [aux_sym__val_number_token1] = ACTIONS(2758), + [aux_sym__val_number_token2] = ACTIONS(2758), + [aux_sym__val_number_token3] = ACTIONS(2758), + [aux_sym__val_number_token4] = ACTIONS(2760), + [aux_sym__val_number_token5] = ACTIONS(2760), + [aux_sym__val_number_token6] = ACTIONS(2760), + [anon_sym_0b] = ACTIONS(1676), + [anon_sym_0o] = ACTIONS(1678), + [anon_sym_0x] = ACTIONS(1678), + [sym_val_date] = ACTIONS(2762), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym__str_single_quotes] = ACTIONS(2766), + [sym__str_back_ticks] = ACTIONS(2766), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2770), + [anon_sym_err_GT] = ACTIONS(2772), + [anon_sym_out_GT] = ACTIONS(2772), + [anon_sym_e_GT] = ACTIONS(2772), + [anon_sym_o_GT] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT] = ACTIONS(2772), + [aux_sym_unquoted_token1] = ACTIONS(1694), + [anon_sym_POUND] = ACTIONS(3), + }, + [913] = { + [sym_expr_parenthesized] = STATE(7636), + [sym_val_range] = STATE(4744), + [sym__val_range] = STATE(10091), + [sym__val_range_with_end] = STATE(10107), + [sym__value] = STATE(4744), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(8036), + [sym_val_variable] = STATE(4804), + [sym__var] = STATE(7099), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(6649), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym__cmd_arg] = STATE(4731), + [sym_redirection] = STATE(4745), + [sym__flag] = STATE(4746), + [sym_short_flag] = STATE(4674), + [sym_long_flag] = STATE(4674), + [sym_long_flag_equals_value] = STATE(4714), + [sym_long_flag_value] = STATE(4732), + [sym_unquoted] = STATE(4344), + [sym__unquoted_with_expr] = STATE(4747), + [sym__unquoted_anonymous_prefix] = STATE(9865), + [sym_comment] = STATE(913), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(2774), + [anon_sym_DOLLAR] = ACTIONS(251), + [anon_sym_DASH_DASH] = ACTIONS(2776), + [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2778), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2780), + [anon_sym_DOT_DOT_LT] = ACTIONS(2780), + [anon_sym_null] = ACTIONS(2782), + [anon_sym_true] = ACTIONS(2784), + [anon_sym_false] = ACTIONS(2784), + [aux_sym__val_number_decimal_token1] = ACTIONS(2786), + [aux_sym__val_number_decimal_token2] = ACTIONS(2788), + [anon_sym_DOT2] = ACTIONS(2790), + [aux_sym__val_number_decimal_token3] = ACTIONS(2792), + [aux_sym__val_number_token1] = ACTIONS(207), + [aux_sym__val_number_token2] = ACTIONS(207), + [aux_sym__val_number_token3] = ACTIONS(207), + [aux_sym__val_number_token4] = ACTIONS(2794), + [aux_sym__val_number_token5] = ACTIONS(2794), + [aux_sym__val_number_token6] = ACTIONS(2794), + [anon_sym_0b] = ACTIONS(211), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(2796), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym__str_single_quotes] = ACTIONS(219), + [sym__str_back_ticks] = ACTIONS(219), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), + [anon_sym_err_GT] = ACTIONS(2798), + [anon_sym_out_GT] = ACTIONS(2798), + [anon_sym_e_GT] = ACTIONS(2798), + [anon_sym_o_GT] = ACTIONS(2798), + [anon_sym_err_PLUSout_GT] = ACTIONS(2798), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2798), + [anon_sym_o_PLUSe_GT] = ACTIONS(2798), + [anon_sym_e_PLUSo_GT] = ACTIONS(2798), + [aux_sym_unquoted_token1] = ACTIONS(2800), + [anon_sym_POUND] = ACTIONS(3), + }, + [914] = { + [sym_expr_parenthesized] = STATE(7845), + [sym_val_range] = STATE(7724), + [sym__val_range] = STATE(10104), + [sym__val_range_with_end] = STATE(10053), + [sym__value] = STATE(7724), + [sym_val_nothing] = STATE(6108), + [sym_val_bool] = STATE(8292), + [sym_val_variable] = STATE(5385), + [sym__var] = STATE(7203), + [sym_val_number] = STATE(6108), + [sym__val_number_decimal] = STATE(6718), + [sym__val_number] = STATE(6110), + [sym_val_duration] = STATE(6108), + [sym_val_filesize] = STATE(6108), + [sym_val_binary] = STATE(6108), + [sym_val_string] = STATE(6108), + [sym__str_double_quotes] = STATE(6592), + [sym_val_interpolated] = STATE(6108), + [sym__inter_single_quotes] = STATE(6197), + [sym__inter_double_quotes] = STATE(6198), + [sym_val_list] = STATE(6108), + [sym_val_record] = STATE(6108), + [sym_val_table] = STATE(6108), + [sym_val_closure] = STATE(6108), + [sym__cmd_arg] = STATE(7776), + [sym_redirection] = STATE(7725), + [sym__flag] = STATE(7726), + [sym_short_flag] = STATE(8892), + [sym_long_flag] = STATE(8892), + [sym_long_flag_equals_value] = STATE(7692), + [sym_long_flag_value] = STATE(7777), + [sym_unquoted] = STATE(7212), + [sym__unquoted_with_expr] = STATE(7727), + [sym__unquoted_anonymous_prefix] = STATE(9974), + [sym_comment] = STATE(914), + [anon_sym_LBRACK] = ACTIONS(2802), + [anon_sym_LPAREN] = ACTIONS(2804), + [anon_sym_DOLLAR] = ACTIONS(2806), + [anon_sym_DASH_DASH] = ACTIONS(2808), + [anon_sym_DASH] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_DOT_DOT] = ACTIONS(2812), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2814), + [anon_sym_DOT_DOT_LT] = ACTIONS(2814), + [anon_sym_null] = ACTIONS(2816), + [anon_sym_true] = ACTIONS(2818), + [anon_sym_false] = ACTIONS(2818), + [aux_sym__val_number_decimal_token1] = ACTIONS(2820), + [aux_sym__val_number_decimal_token2] = ACTIONS(2822), + [anon_sym_DOT2] = ACTIONS(2824), + [aux_sym__val_number_decimal_token3] = ACTIONS(2826), + [aux_sym__val_number_token1] = ACTIONS(2828), + [aux_sym__val_number_token2] = ACTIONS(2828), + [aux_sym__val_number_token3] = ACTIONS(2828), + [aux_sym__val_number_token4] = ACTIONS(2830), + [aux_sym__val_number_token5] = ACTIONS(2830), + [aux_sym__val_number_token6] = ACTIONS(2830), + [anon_sym_0b] = ACTIONS(2832), + [anon_sym_0o] = ACTIONS(2834), + [anon_sym_0x] = ACTIONS(2834), + [sym_val_date] = ACTIONS(2836), + [anon_sym_DQUOTE] = ACTIONS(2838), + [sym__str_single_quotes] = ACTIONS(2840), + [sym__str_back_ticks] = ACTIONS(2840), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2844), + [anon_sym_err_GT] = ACTIONS(2846), + [anon_sym_out_GT] = ACTIONS(2846), + [anon_sym_e_GT] = ACTIONS(2846), + [anon_sym_o_GT] = ACTIONS(2846), + [anon_sym_err_PLUSout_GT] = ACTIONS(2846), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2846), + [anon_sym_o_PLUSe_GT] = ACTIONS(2846), + [anon_sym_e_PLUSo_GT] = ACTIONS(2846), + [aux_sym_unquoted_token1] = ACTIONS(2848), + [anon_sym_POUND] = ACTIONS(3), + }, + [915] = { + [sym_expr_parenthesized] = STATE(1237), + [sym_val_range] = STATE(2243), + [sym__val_range] = STATE(10150), + [sym__val_range_with_end] = STATE(10124), + [sym__value] = STATE(2243), + [sym_val_nothing] = STATE(2010), + [sym_val_bool] = STATE(1338), + [sym_val_variable] = STATE(1168), + [sym__var] = STATE(967), + [sym_val_number] = STATE(2010), + [sym__val_number_decimal] = STATE(841), + [sym__val_number] = STATE(2185), + [sym_val_duration] = STATE(2010), + [sym_val_filesize] = STATE(2010), + [sym_val_binary] = STATE(2010), + [sym_val_string] = STATE(2010), + [sym__str_double_quotes] = STATE(2191), + [sym_val_interpolated] = STATE(2010), + [sym__inter_single_quotes] = STATE(2212), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2010), + [sym_val_record] = STATE(2010), + [sym_val_table] = STATE(2010), + [sym_val_closure] = STATE(2010), + [sym__cmd_arg] = STATE(2075), + [sym_redirection] = STATE(2244), + [sym__flag] = STATE(2245), + [sym_short_flag] = STATE(2106), + [sym_long_flag] = STATE(2106), + [sym_long_flag_equals_value] = STATE(2237), + [sym_long_flag_value] = STATE(2077), + [sym_unquoted] = STATE(1356), + [sym__unquoted_with_expr] = STATE(2246), + [sym__unquoted_anonymous_prefix] = STATE(9773), + [sym_comment] = STATE(915), + [anon_sym_LBRACK] = ACTIONS(2850), + [anon_sym_LPAREN] = ACTIONS(2852), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_DASH_DASH] = ACTIONS(2854), + [anon_sym_DASH] = ACTIONS(2856), + [anon_sym_LBRACE] = ACTIONS(2858), + [anon_sym_DOT_DOT] = ACTIONS(2860), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2862), + [anon_sym_DOT_DOT_LT] = ACTIONS(2862), + [anon_sym_null] = ACTIONS(2864), + [anon_sym_true] = ACTIONS(2866), + [anon_sym_false] = ACTIONS(2866), + [aux_sym__val_number_decimal_token1] = ACTIONS(2868), + [aux_sym__val_number_decimal_token2] = ACTIONS(2870), + [anon_sym_DOT2] = ACTIONS(2872), + [aux_sym__val_number_decimal_token3] = ACTIONS(2874), + [aux_sym__val_number_token1] = ACTIONS(2876), + [aux_sym__val_number_token2] = ACTIONS(2876), + [aux_sym__val_number_token3] = ACTIONS(2876), + [aux_sym__val_number_token4] = ACTIONS(2878), + [aux_sym__val_number_token5] = ACTIONS(2878), + [aux_sym__val_number_token6] = ACTIONS(2878), + [anon_sym_0b] = ACTIONS(2880), + [anon_sym_0o] = ACTIONS(2882), + [anon_sym_0x] = ACTIONS(2882), + [sym_val_date] = ACTIONS(2884), + [anon_sym_DQUOTE] = ACTIONS(2886), + [sym__str_single_quotes] = ACTIONS(2888), + [sym__str_back_ticks] = ACTIONS(2888), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2890), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2892), + [anon_sym_err_GT] = ACTIONS(2894), + [anon_sym_out_GT] = ACTIONS(2894), + [anon_sym_e_GT] = ACTIONS(2894), + [anon_sym_o_GT] = ACTIONS(2894), + [anon_sym_err_PLUSout_GT] = ACTIONS(2894), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2894), + [anon_sym_o_PLUSe_GT] = ACTIONS(2894), + [anon_sym_e_PLUSo_GT] = ACTIONS(2894), + [aux_sym_unquoted_token1] = ACTIONS(2896), + [anon_sym_POUND] = ACTIONS(3), + }, + [916] = { + [sym_expr_parenthesized] = STATE(7859), + [sym_val_range] = STATE(4943), + [sym__val_range] = STATE(10069), + [sym__val_range_with_end] = STATE(10101), + [sym__value] = STATE(4943), + [sym_val_nothing] = STATE(5931), + [sym_val_bool] = STATE(8205), + [sym_val_variable] = STATE(5103), + [sym__var] = STATE(7390), + [sym_val_number] = STATE(5931), + [sym__val_number_decimal] = STATE(6726), + [sym__val_number] = STATE(5285), + [sym_val_duration] = STATE(5931), + [sym_val_filesize] = STATE(5931), + [sym_val_binary] = STATE(5931), + [sym_val_string] = STATE(5931), + [sym__str_double_quotes] = STATE(5888), + [sym_val_interpolated] = STATE(5931), + [sym__inter_single_quotes] = STATE(5935), + [sym__inter_double_quotes] = STATE(5940), + [sym_val_list] = STATE(5931), + [sym_val_record] = STATE(5931), + [sym_val_table] = STATE(5931), + [sym_val_closure] = STATE(5931), + [sym__cmd_arg] = STATE(4898), + [sym_redirection] = STATE(4944), + [sym__flag] = STATE(4945), + [sym_short_flag] = STATE(4939), + [sym_long_flag] = STATE(4939), + [sym_long_flag_equals_value] = STATE(4865), + [sym_long_flag_value] = STATE(4899), + [sym_unquoted] = STATE(4400), + [sym__unquoted_with_expr] = STATE(4946), + [sym__unquoted_anonymous_prefix] = STATE(9818), + [sym_comment] = STATE(916), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(2898), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(2900), + [anon_sym_DASH] = ACTIONS(2414), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_DOT_DOT] = ACTIONS(2902), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2904), + [anon_sym_DOT_DOT_LT] = ACTIONS(2904), + [anon_sym_null] = ACTIONS(2906), + [anon_sym_true] = ACTIONS(2908), + [anon_sym_false] = ACTIONS(2908), + [aux_sym__val_number_decimal_token1] = ACTIONS(2910), + [aux_sym__val_number_decimal_token2] = ACTIONS(2912), + [anon_sym_DOT2] = ACTIONS(2914), + [aux_sym__val_number_decimal_token3] = ACTIONS(2916), + [aux_sym__val_number_token1] = ACTIONS(93), + [aux_sym__val_number_token2] = ACTIONS(93), + [aux_sym__val_number_token3] = ACTIONS(93), + [aux_sym__val_number_token4] = ACTIONS(2918), + [aux_sym__val_number_token5] = ACTIONS(2918), + [aux_sym__val_number_token6] = ACTIONS(2918), + [anon_sym_0b] = ACTIONS(97), + [anon_sym_0o] = ACTIONS(99), + [anon_sym_0x] = ACTIONS(99), + [sym_val_date] = ACTIONS(2920), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym__str_single_quotes] = ACTIONS(105), + [sym__str_back_ticks] = ACTIONS(105), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(109), + [anon_sym_err_GT] = ACTIONS(2922), + [anon_sym_out_GT] = ACTIONS(2922), + [anon_sym_e_GT] = ACTIONS(2922), + [anon_sym_o_GT] = ACTIONS(2922), + [anon_sym_err_PLUSout_GT] = ACTIONS(2922), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2922), + [anon_sym_o_PLUSe_GT] = ACTIONS(2922), + [anon_sym_e_PLUSo_GT] = ACTIONS(2922), + [aux_sym_unquoted_token1] = ACTIONS(2924), + [anon_sym_POUND] = ACTIONS(3), + }, + [917] = { + [sym_expr_parenthesized] = STATE(8950), + [sym_val_range] = STATE(3887), + [sym__val_range] = STATE(10109), + [sym__val_range_with_end] = STATE(10073), + [sym__value] = STATE(3887), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(9059), + [sym_val_variable] = STATE(5224), + [sym__var] = STATE(4556), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(6957), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(6041), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym__cmd_arg] = STATE(3836), + [sym_redirection] = STATE(3889), + [sym__flag] = STATE(3818), + [sym_short_flag] = STATE(3847), + [sym_long_flag] = STATE(3847), + [sym_long_flag_equals_value] = STATE(3793), + [sym_long_flag_value] = STATE(3837), + [sym_unquoted] = STATE(3591), + [sym__unquoted_with_expr] = STATE(3732), + [sym__unquoted_anonymous_prefix] = STATE(9811), + [sym_comment] = STATE(917), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(2926), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(2928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2930), + [anon_sym_DOT_DOT_LT] = ACTIONS(2930), + [anon_sym_null] = ACTIONS(2932), + [anon_sym_true] = ACTIONS(2934), + [anon_sym_false] = ACTIONS(2934), + [aux_sym__val_number_decimal_token1] = ACTIONS(2936), + [aux_sym__val_number_decimal_token2] = ACTIONS(2938), + [anon_sym_DOT2] = ACTIONS(2940), + [aux_sym__val_number_decimal_token3] = ACTIONS(2942), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [aux_sym__val_number_token4] = ACTIONS(2944), + [aux_sym__val_number_token5] = ACTIONS(2944), + [aux_sym__val_number_token6] = ACTIONS(2944), + [anon_sym_0b] = ACTIONS(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(2946), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(2948), + [anon_sym_out_GT] = ACTIONS(2948), + [anon_sym_e_GT] = ACTIONS(2948), + [anon_sym_o_GT] = ACTIONS(2948), + [anon_sym_err_PLUSout_GT] = ACTIONS(2948), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2948), + [anon_sym_o_PLUSe_GT] = ACTIONS(2948), + [anon_sym_e_PLUSo_GT] = ACTIONS(2948), + [aux_sym_unquoted_token1] = ACTIONS(2950), + [anon_sym_POUND] = ACTIONS(3), + }, + [918] = { + [sym_comment] = STATE(918), + [anon_sym_LBRACK] = ACTIONS(940), + [anon_sym_COMMA] = ACTIONS(940), + [anon_sym_RBRACK] = ACTIONS(940), + [anon_sym_LPAREN] = ACTIONS(940), + [anon_sym_DOLLAR] = ACTIONS(940), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(940), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_in] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(940), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_STAR_STAR] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(940), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(940), + [anon_sym_SLASH_SLASH] = ACTIONS(940), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_bit_DASHshl] = ACTIONS(940), + [anon_sym_bit_DASHshr] = ACTIONS(940), + [anon_sym_EQ_EQ] = ACTIONS(940), + [anon_sym_BANG_EQ] = ACTIONS(940), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(940), + [anon_sym_GT_EQ] = ACTIONS(940), + [anon_sym_not_DASHin] = ACTIONS(940), + [anon_sym_starts_DASHwith] = ACTIONS(940), + [anon_sym_ends_DASHwith] = ACTIONS(940), + [anon_sym_EQ_TILDE] = ACTIONS(940), + [anon_sym_BANG_TILDE] = ACTIONS(940), + [anon_sym_bit_DASHand] = ACTIONS(940), + [anon_sym_bit_DASHxor] = ACTIONS(940), + [anon_sym_bit_DASHor] = ACTIONS(940), + [anon_sym_and] = ACTIONS(940), + [anon_sym_xor] = ACTIONS(940), + [anon_sym_or] = ACTIONS(940), + [anon_sym_DOT_DOT2] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(2952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(938), + [anon_sym_DOT_DOT_LT] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(965), + [anon_sym_DOT_DOT_LT2] = ACTIONS(965), + [anon_sym_null] = ACTIONS(940), + [anon_sym_true] = ACTIONS(940), + [anon_sym_false] = ACTIONS(940), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(940), + [anon_sym_DOT2] = ACTIONS(938), + [aux_sym__val_number_decimal_token3] = ACTIONS(940), + [aux_sym__val_number_token1] = ACTIONS(940), + [aux_sym__val_number_token2] = ACTIONS(940), + [aux_sym__val_number_token3] = ACTIONS(940), + [aux_sym__val_number_token4] = ACTIONS(940), + [aux_sym__val_number_token5] = ACTIONS(940), + [aux_sym__val_number_token6] = ACTIONS(940), + [anon_sym_0b] = ACTIONS(938), + [sym_filesize_unit] = ACTIONS(2954), + [sym_duration_unit] = ACTIONS(2956), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = ACTIONS(940), + [anon_sym_DQUOTE] = ACTIONS(940), + [sym__str_single_quotes] = ACTIONS(940), + [sym__str_back_ticks] = ACTIONS(940), + [anon_sym_err_GT] = ACTIONS(940), + [anon_sym_out_GT] = ACTIONS(940), + [anon_sym_e_GT] = ACTIONS(940), + [anon_sym_o_GT] = ACTIONS(940), + [anon_sym_err_PLUSout_GT] = ACTIONS(940), + [anon_sym_out_PLUSerr_GT] = ACTIONS(940), + [anon_sym_o_PLUSe_GT] = ACTIONS(940), + [anon_sym_e_PLUSo_GT] = ACTIONS(940), + [aux_sym_unquoted_token5] = ACTIONS(2958), + [aux_sym__unquoted_in_list_token1] = ACTIONS(938), + [anon_sym_POUND] = ACTIONS(3), + }, + [919] = { + [sym_comment] = STATE(919), + [ts_builtin_sym_end] = ACTIONS(2364), + [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), + [anon_sym_SEMI] = ACTIONS(2362), + [sym_cmd_identifier] = ACTIONS(2362), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2362), + [anon_sym_LPAREN] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2362), + [anon_sym_error] = ACTIONS(2362), + [anon_sym_DASH_DASH] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_break] = ACTIONS(2362), + [anon_sym_continue] = ACTIONS(2362), + [anon_sym_for] = ACTIONS(2362), + [anon_sym_loop] = ACTIONS(2362), + [anon_sym_while] = ACTIONS(2362), + [anon_sym_do] = ACTIONS(2362), + [anon_sym_if] = ACTIONS(2362), + [anon_sym_match] = ACTIONS(2362), + [anon_sym_LBRACE] = ACTIONS(2362), + [anon_sym_DOT_DOT] = ACTIONS(2362), + [anon_sym_try] = 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_where] = ACTIONS(2362), + [anon_sym_not] = ACTIONS(2362), + [anon_sym_LPAREN2] = ACTIONS(2364), + [anon_sym_DOT_DOT2] = ACTIONS(2362), + [anon_sym_DOT] = ACTIONS(2362), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2362), + [anon_sym_DOT_DOT_LT] = ACTIONS(2362), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2364), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2364), + [aux_sym__immediate_decimal_token2] = ACTIONS(2960), + [anon_sym_null] = ACTIONS(2362), + [anon_sym_true] = ACTIONS(2362), + [anon_sym_false] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2362), + [aux_sym__val_number_decimal_token2] = ACTIONS(2362), + [anon_sym_DOT2] = ACTIONS(2362), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2362), + [anon_sym_0o] = ACTIONS(2362), + [anon_sym_0x] = ACTIONS(2362), + [sym_val_date] = 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_CARET] = ACTIONS(2362), + [aux_sym_unquoted_token2] = ACTIONS(2362), + [anon_sym_POUND] = ACTIONS(113), + }, + [920] = { + [sym__immediate_decimal] = STATE(10080), + [sym_comment] = STATE(920), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_COMMA] = ACTIONS(920), + [anon_sym_RBRACK] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_in] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_STAR_STAR] = ACTIONS(920), + [anon_sym_PLUS_PLUS] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_mod] = ACTIONS(920), + [anon_sym_SLASH_SLASH] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_bit_DASHshl] = ACTIONS(920), + [anon_sym_bit_DASHshr] = ACTIONS(920), + [anon_sym_EQ_EQ] = ACTIONS(920), + [anon_sym_BANG_EQ] = ACTIONS(920), + [anon_sym_LT2] = ACTIONS(920), + [anon_sym_LT_EQ] = ACTIONS(920), + [anon_sym_GT_EQ] = ACTIONS(920), + [anon_sym_not_DASHin] = ACTIONS(920), + [anon_sym_starts_DASHwith] = ACTIONS(920), + [anon_sym_ends_DASHwith] = ACTIONS(920), + [anon_sym_EQ_TILDE] = ACTIONS(920), + [anon_sym_BANG_TILDE] = ACTIONS(920), + [anon_sym_bit_DASHand] = ACTIONS(920), + [anon_sym_bit_DASHxor] = ACTIONS(920), + [anon_sym_bit_DASHor] = ACTIONS(920), + [anon_sym_and] = ACTIONS(920), + [anon_sym_xor] = ACTIONS(920), + [anon_sym_or] = ACTIONS(920), + [anon_sym_DOT] = ACTIONS(967), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [aux_sym__immediate_decimal_token1] = ACTIONS(969), + [aux_sym__immediate_decimal_token3] = ACTIONS(969), + [aux_sym__immediate_decimal_token4] = ACTIONS(971), + [anon_sym_null] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [sym__entry_separator] = ACTIONS(922), + [anon_sym_err_GT] = ACTIONS(920), + [anon_sym_out_GT] = ACTIONS(920), + [anon_sym_e_GT] = ACTIONS(920), + [anon_sym_o_GT] = ACTIONS(920), + [anon_sym_err_PLUSout_GT] = ACTIONS(920), + [anon_sym_out_PLUSerr_GT] = ACTIONS(920), + [anon_sym_o_PLUSe_GT] = ACTIONS(920), + [anon_sym_e_PLUSo_GT] = ACTIONS(920), + [aux_sym_unquoted_token4] = ACTIONS(2384), + [aux_sym__unquoted_in_list_token1] = ACTIONS(920), + [anon_sym_POUND] = ACTIONS(113), + }, + [921] = { + [sym_comment] = STATE(921), + [anon_sym_LBRACK] = ACTIONS(913), + [anon_sym_COMMA] = ACTIONS(913), + [anon_sym_LPAREN] = ACTIONS(913), + [anon_sym_DOLLAR] = ACTIONS(913), + [anon_sym_GT] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_in] = ACTIONS(911), + [anon_sym_LBRACE] = ACTIONS(913), + [anon_sym_RBRACE] = ACTIONS(913), + [anon_sym__] = ACTIONS(911), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(911), + [anon_sym_STAR_STAR] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_SLASH] = ACTIONS(911), + [anon_sym_mod] = ACTIONS(913), + [anon_sym_SLASH_SLASH] = ACTIONS(913), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_bit_DASHshl] = ACTIONS(913), + [anon_sym_bit_DASHshr] = ACTIONS(913), + [anon_sym_EQ_EQ] = ACTIONS(913), + [anon_sym_BANG_EQ] = ACTIONS(913), + [anon_sym_LT2] = ACTIONS(911), + [anon_sym_LT_EQ] = ACTIONS(913), + [anon_sym_GT_EQ] = ACTIONS(913), + [anon_sym_not_DASHin] = ACTIONS(913), + [anon_sym_starts_DASHwith] = ACTIONS(913), + [anon_sym_ends_DASHwith] = ACTIONS(913), + [anon_sym_EQ_TILDE] = ACTIONS(913), + [anon_sym_BANG_TILDE] = ACTIONS(913), + [anon_sym_bit_DASHand] = ACTIONS(913), + [anon_sym_bit_DASHxor] = ACTIONS(913), + [anon_sym_bit_DASHor] = ACTIONS(913), + [anon_sym_and] = ACTIONS(913), + [anon_sym_xor] = ACTIONS(913), + [anon_sym_or] = ACTIONS(913), + [anon_sym_DOT_DOT2] = ACTIONS(911), + [anon_sym_DOT] = ACTIONS(2962), + [anon_sym_DOT_DOT_EQ] = ACTIONS(911), + [anon_sym_DOT_DOT_LT] = ACTIONS(911), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(913), + [anon_sym_DOT_DOT_LT2] = ACTIONS(913), + [aux_sym__immediate_decimal_token2] = ACTIONS(2964), + [anon_sym_null] = ACTIONS(913), + [anon_sym_true] = ACTIONS(913), + [anon_sym_false] = ACTIONS(913), + [aux_sym__val_number_decimal_token1] = ACTIONS(911), + [aux_sym__val_number_decimal_token2] = ACTIONS(913), + [anon_sym_DOT2] = ACTIONS(911), + [aux_sym__val_number_decimal_token3] = ACTIONS(913), + [aux_sym__val_number_token1] = ACTIONS(913), + [aux_sym__val_number_token2] = ACTIONS(913), + [aux_sym__val_number_token3] = ACTIONS(913), + [aux_sym__val_number_token4] = ACTIONS(913), + [aux_sym__val_number_token5] = ACTIONS(913), + [aux_sym__val_number_token6] = ACTIONS(913), + [anon_sym_0b] = ACTIONS(911), + [sym_filesize_unit] = ACTIONS(911), + [sym_duration_unit] = ACTIONS(913), + [anon_sym_0o] = ACTIONS(911), + [anon_sym_0x] = ACTIONS(911), + [sym_val_date] = ACTIONS(913), + [anon_sym_DQUOTE] = ACTIONS(913), + [sym__str_single_quotes] = ACTIONS(913), + [sym__str_back_ticks] = ACTIONS(913), + [anon_sym_err_GT] = ACTIONS(913), + [anon_sym_out_GT] = ACTIONS(913), + [anon_sym_e_GT] = ACTIONS(913), + [anon_sym_o_GT] = ACTIONS(913), + [anon_sym_err_PLUSout_GT] = ACTIONS(913), + [anon_sym_out_PLUSerr_GT] = ACTIONS(913), + [anon_sym_o_PLUSe_GT] = ACTIONS(913), + [anon_sym_e_PLUSo_GT] = ACTIONS(913), + [aux_sym_unquoted_token1] = ACTIONS(911), + [anon_sym_POUND] = ACTIONS(3), + }, + [922] = { + [sym__immediate_decimal] = STATE(8796), + [sym_comment] = STATE(922), + [anon_sym_LBRACK] = ACTIONS(922), + [anon_sym_COMMA] = ACTIONS(922), + [anon_sym_RBRACK] = ACTIONS(922), + [anon_sym_LPAREN] = ACTIONS(922), + [anon_sym_DOLLAR] = ACTIONS(922), + [anon_sym_GT] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_in] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_STAR_STAR] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_mod] = ACTIONS(922), + [anon_sym_SLASH_SLASH] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_bit_DASHshl] = ACTIONS(922), + [anon_sym_bit_DASHshr] = ACTIONS(922), + [anon_sym_EQ_EQ] = ACTIONS(922), + [anon_sym_BANG_EQ] = ACTIONS(922), + [anon_sym_LT2] = ACTIONS(920), + [anon_sym_LT_EQ] = ACTIONS(922), + [anon_sym_GT_EQ] = ACTIONS(922), + [anon_sym_not_DASHin] = ACTIONS(922), + [anon_sym_starts_DASHwith] = ACTIONS(922), + [anon_sym_ends_DASHwith] = ACTIONS(922), + [anon_sym_EQ_TILDE] = ACTIONS(922), + [anon_sym_BANG_TILDE] = ACTIONS(922), + [anon_sym_bit_DASHand] = ACTIONS(922), + [anon_sym_bit_DASHxor] = ACTIONS(922), + [anon_sym_bit_DASHor] = ACTIONS(922), + [anon_sym_and] = ACTIONS(922), + [anon_sym_xor] = ACTIONS(922), + [anon_sym_or] = ACTIONS(922), + [anon_sym_DOT] = ACTIONS(2966), + [anon_sym_DOT_DOT_EQ] = ACTIONS(922), + [anon_sym_DOT_DOT_LT] = ACTIONS(922), + [aux_sym__immediate_decimal_token1] = ACTIONS(926), + [aux_sym__immediate_decimal_token3] = ACTIONS(1379), + [aux_sym__immediate_decimal_token4] = ACTIONS(1381), + [anon_sym_null] = ACTIONS(922), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(922), + [aux_sym__val_number_token2] = ACTIONS(922), + [aux_sym__val_number_token3] = ACTIONS(922), + [aux_sym__val_number_token4] = ACTIONS(922), + [aux_sym__val_number_token5] = ACTIONS(922), + [aux_sym__val_number_token6] = ACTIONS(922), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(922), + [anon_sym_DQUOTE] = ACTIONS(922), + [sym__str_single_quotes] = ACTIONS(922), + [sym__str_back_ticks] = ACTIONS(922), + [anon_sym_err_GT] = ACTIONS(922), + [anon_sym_out_GT] = ACTIONS(922), + [anon_sym_e_GT] = ACTIONS(922), + [anon_sym_o_GT] = ACTIONS(922), + [anon_sym_err_PLUSout_GT] = ACTIONS(922), + [anon_sym_out_PLUSerr_GT] = ACTIONS(922), + [anon_sym_o_PLUSe_GT] = ACTIONS(922), + [anon_sym_e_PLUSo_GT] = ACTIONS(922), + [aux_sym_unquoted_token3] = ACTIONS(2958), + [aux_sym_unquoted_token5] = ACTIONS(2968), + [aux_sym__unquoted_in_list_token1] = ACTIONS(920), + [anon_sym_POUND] = ACTIONS(3), + }, + [923] = { + [sym_comment] = STATE(923), + [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_COMMA] = ACTIONS(936), + [anon_sym_RBRACK] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_DOLLAR] = ACTIONS(936), + [anon_sym_GT] = ACTIONS(934), + [anon_sym_DASH_DASH] = ACTIONS(936), + [anon_sym_DASH] = ACTIONS(934), + [anon_sym_in] = ACTIONS(934), + [anon_sym_LBRACE] = ACTIONS(936), + [anon_sym_DOT_DOT] = ACTIONS(934), + [anon_sym_STAR] = ACTIONS(934), + [anon_sym_STAR_STAR] = ACTIONS(936), + [anon_sym_PLUS_PLUS] = ACTIONS(936), + [anon_sym_SLASH] = ACTIONS(934), + [anon_sym_mod] = ACTIONS(936), + [anon_sym_SLASH_SLASH] = ACTIONS(936), + [anon_sym_PLUS] = ACTIONS(934), + [anon_sym_bit_DASHshl] = ACTIONS(936), + [anon_sym_bit_DASHshr] = ACTIONS(936), + [anon_sym_EQ_EQ] = ACTIONS(936), + [anon_sym_BANG_EQ] = ACTIONS(936), + [anon_sym_LT2] = ACTIONS(934), + [anon_sym_LT_EQ] = ACTIONS(936), + [anon_sym_GT_EQ] = ACTIONS(936), + [anon_sym_not_DASHin] = ACTIONS(936), + [anon_sym_starts_DASHwith] = ACTIONS(936), + [anon_sym_ends_DASHwith] = ACTIONS(936), + [anon_sym_EQ_TILDE] = ACTIONS(936), + [anon_sym_BANG_TILDE] = ACTIONS(936), + [anon_sym_bit_DASHand] = ACTIONS(936), + [anon_sym_bit_DASHxor] = ACTIONS(936), + [anon_sym_bit_DASHor] = ACTIONS(936), + [anon_sym_and] = ACTIONS(936), + [anon_sym_xor] = ACTIONS(936), + [anon_sym_or] = ACTIONS(936), + [anon_sym_DOT_DOT2] = ACTIONS(934), + [anon_sym_DOT] = ACTIONS(934), + [anon_sym_DOT_DOT_EQ] = ACTIONS(934), + [anon_sym_DOT_DOT_LT] = ACTIONS(934), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(936), + [anon_sym_DOT_DOT_LT2] = ACTIONS(936), + [anon_sym_null] = ACTIONS(936), + [anon_sym_true] = ACTIONS(936), + [anon_sym_false] = ACTIONS(936), + [aux_sym__val_number_decimal_token1] = ACTIONS(934), + [aux_sym__val_number_decimal_token2] = ACTIONS(936), + [anon_sym_DOT2] = ACTIONS(934), + [aux_sym__val_number_decimal_token3] = ACTIONS(936), + [aux_sym__val_number_token1] = ACTIONS(936), + [aux_sym__val_number_token2] = ACTIONS(936), + [aux_sym__val_number_token3] = ACTIONS(936), + [aux_sym__val_number_token4] = ACTIONS(936), + [aux_sym__val_number_token5] = ACTIONS(936), + [aux_sym__val_number_token6] = ACTIONS(936), + [anon_sym_0b] = ACTIONS(934), + [sym_filesize_unit] = ACTIONS(934), + [sym_duration_unit] = ACTIONS(936), + [anon_sym_0o] = ACTIONS(934), + [anon_sym_0x] = ACTIONS(934), + [sym_val_date] = ACTIONS(936), + [anon_sym_DQUOTE] = ACTIONS(936), + [sym__str_single_quotes] = ACTIONS(936), + [sym__str_back_ticks] = ACTIONS(936), + [anon_sym_err_GT] = ACTIONS(936), + [anon_sym_out_GT] = ACTIONS(936), + [anon_sym_e_GT] = ACTIONS(936), + [anon_sym_o_GT] = ACTIONS(936), + [anon_sym_err_PLUSout_GT] = ACTIONS(936), + [anon_sym_out_PLUSerr_GT] = ACTIONS(936), + [anon_sym_o_PLUSe_GT] = ACTIONS(936), + [anon_sym_e_PLUSo_GT] = ACTIONS(936), + [aux_sym_unquoted_token5] = ACTIONS(934), + [aux_sym__unquoted_in_list_token1] = ACTIONS(934), + [anon_sym_POUND] = ACTIONS(3), + }, + [924] = { + [sym_expr_parenthesized] = STATE(7723), + [sym_val_range] = STATE(7724), + [sym__val_range] = STATE(10104), + [sym__val_range_with_end] = STATE(10053), + [sym__value] = STATE(7724), + [sym_val_nothing] = STATE(8686), + [sym_val_bool] = STATE(7874), + [sym_val_variable] = STATE(7719), + [sym__var] = STATE(7002), + [sym_val_number] = STATE(8686), + [sym__val_number_decimal] = STATE(6623), + [sym__val_number] = STATE(8692), + [sym_val_duration] = STATE(8686), + [sym_val_filesize] = STATE(8686), + [sym_val_binary] = STATE(8686), + [sym_val_string] = STATE(8686), + [sym__str_double_quotes] = STATE(6592), + [sym_val_interpolated] = STATE(8686), + [sym__inter_single_quotes] = STATE(8511), + [sym__inter_double_quotes] = STATE(8512), + [sym_val_list] = STATE(8686), + [sym_val_record] = STATE(8686), + [sym_val_table] = STATE(8686), + [sym_val_closure] = STATE(8686), + [sym__cmd_arg] = STATE(7776), + [sym_redirection] = STATE(7725), + [sym__flag] = STATE(7726), + [sym_short_flag] = STATE(8701), + [sym_long_flag] = STATE(8701), + [sym_long_flag_equals_value] = STATE(7692), + [sym_long_flag_value] = STATE(7777), + [sym_unquoted] = STATE(7212), + [sym__unquoted_with_expr] = STATE(7727), + [sym__unquoted_anonymous_prefix] = STATE(9974), + [sym_comment] = STATE(924), + [anon_sym_LBRACK] = ACTIONS(2970), + [anon_sym_LPAREN] = ACTIONS(2972), + [anon_sym_DOLLAR] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2978), + [anon_sym_LBRACE] = ACTIONS(2980), + [anon_sym_DOT_DOT] = ACTIONS(2982), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2984), + [anon_sym_DOT_DOT_LT] = ACTIONS(2984), + [anon_sym_null] = ACTIONS(2986), + [anon_sym_true] = ACTIONS(2988), + [anon_sym_false] = ACTIONS(2988), + [aux_sym__val_number_decimal_token1] = ACTIONS(2990), + [aux_sym__val_number_decimal_token2] = ACTIONS(2992), + [anon_sym_DOT2] = ACTIONS(2994), + [aux_sym__val_number_decimal_token3] = ACTIONS(2996), + [aux_sym__val_number_token1] = ACTIONS(2998), + [aux_sym__val_number_token2] = ACTIONS(2998), + [aux_sym__val_number_token3] = ACTIONS(2998), + [aux_sym__val_number_token4] = ACTIONS(3000), + [aux_sym__val_number_token5] = ACTIONS(3000), + [aux_sym__val_number_token6] = ACTIONS(3000), + [anon_sym_0b] = ACTIONS(3002), + [anon_sym_0o] = ACTIONS(3004), + [anon_sym_0x] = ACTIONS(3004), + [sym_val_date] = ACTIONS(3006), + [anon_sym_DQUOTE] = ACTIONS(2838), + [sym__str_single_quotes] = ACTIONS(2840), + [sym__str_back_ticks] = ACTIONS(2840), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3008), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3010), + [anon_sym_err_GT] = ACTIONS(3012), + [anon_sym_out_GT] = ACTIONS(3012), + [anon_sym_e_GT] = ACTIONS(3012), + [anon_sym_o_GT] = ACTIONS(3012), + [anon_sym_err_PLUSout_GT] = ACTIONS(3012), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3012), + [anon_sym_o_PLUSe_GT] = ACTIONS(3012), + [anon_sym_e_PLUSo_GT] = ACTIONS(3012), + [aux_sym_unquoted_token1] = ACTIONS(2848), + [anon_sym_POUND] = ACTIONS(3), + }, + [925] = { + [sym_expr_parenthesized] = STATE(7709), + [sym_val_range] = STATE(8661), + [sym__val_range] = STATE(10026), + [sym__val_range_with_end] = STATE(10030), + [sym__value] = STATE(8661), + [sym_val_nothing] = STATE(5712), + [sym_val_bool] = STATE(7878), + [sym_val_variable] = STATE(4935), + [sym__var] = STATE(4392), + [sym_val_number] = STATE(5712), + [sym__val_number_decimal] = STATE(6652), + [sym__val_number] = STATE(5721), + [sym_val_duration] = STATE(5712), + [sym_val_filesize] = STATE(5712), + [sym_val_binary] = STATE(5712), + [sym_val_string] = STATE(5712), + [sym__str_double_quotes] = STATE(5860), + [sym_val_interpolated] = STATE(5712), + [sym__inter_single_quotes] = STATE(5666), + [sym__inter_double_quotes] = STATE(5668), + [sym_val_list] = STATE(5712), + [sym_val_record] = STATE(5712), + [sym_val_table] = STATE(5712), + [sym_val_closure] = STATE(5712), + [sym__cmd_arg] = STATE(8880), + [sym_redirection] = STATE(8669), + [sym__flag] = STATE(8672), + [sym_short_flag] = STATE(8859), + [sym_long_flag] = STATE(8859), + [sym_long_flag_equals_value] = STATE(8660), + [sym_long_flag_value] = STATE(8881), + [sym_unquoted] = STATE(7983), + [sym__unquoted_with_expr] = STATE(8689), + [sym__unquoted_anonymous_prefix] = STATE(9977), + [sym_comment] = STATE(925), + [anon_sym_LBRACK] = ACTIONS(3014), + [anon_sym_LPAREN] = ACTIONS(3016), + [anon_sym_DOLLAR] = ACTIONS(1788), + [anon_sym_DASH_DASH] = ACTIONS(3018), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_LBRACE] = ACTIONS(3020), + [anon_sym_DOT_DOT] = ACTIONS(1796), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3022), + [anon_sym_DOT_DOT_LT] = ACTIONS(3022), + [anon_sym_null] = ACTIONS(3024), + [anon_sym_true] = ACTIONS(3026), + [anon_sym_false] = ACTIONS(3026), + [aux_sym__val_number_decimal_token1] = ACTIONS(1804), + [aux_sym__val_number_decimal_token2] = ACTIONS(3028), + [anon_sym_DOT2] = ACTIONS(1806), + [aux_sym__val_number_decimal_token3] = ACTIONS(3030), + [aux_sym__val_number_token1] = ACTIONS(3032), + [aux_sym__val_number_token2] = ACTIONS(3032), + [aux_sym__val_number_token3] = ACTIONS(3032), + [aux_sym__val_number_token4] = ACTIONS(3034), + [aux_sym__val_number_token5] = ACTIONS(3034), + [aux_sym__val_number_token6] = ACTIONS(3034), + [anon_sym_0b] = ACTIONS(1814), + [anon_sym_0o] = ACTIONS(1816), + [anon_sym_0x] = ACTIONS(1816), + [sym_val_date] = ACTIONS(3036), + [anon_sym_DQUOTE] = ACTIONS(3038), + [sym__str_single_quotes] = ACTIONS(3040), + [sym__str_back_ticks] = ACTIONS(3040), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3042), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3044), + [anon_sym_err_GT] = ACTIONS(3046), + [anon_sym_out_GT] = ACTIONS(3046), + [anon_sym_e_GT] = ACTIONS(3046), + [anon_sym_o_GT] = ACTIONS(3046), + [anon_sym_err_PLUSout_GT] = ACTIONS(3046), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3046), + [anon_sym_o_PLUSe_GT] = ACTIONS(3046), + [anon_sym_e_PLUSo_GT] = ACTIONS(3046), + [aux_sym_unquoted_token1] = ACTIONS(1830), + [anon_sym_POUND] = ACTIONS(3), + }, + [926] = { + [sym_expr_parenthesized] = STATE(7355), + [sym_val_range] = STATE(7944), + [sym__val_range] = STATE(10125), + [sym__val_range_with_end] = STATE(10129), + [sym__value] = STATE(7944), + [sym_val_nothing] = STATE(5350), + [sym_val_bool] = STATE(7496), + [sym_val_variable] = STATE(4717), + [sym__var] = STATE(4193), + [sym_val_number] = STATE(5350), + [sym__val_number_decimal] = STATE(6510), + [sym__val_number] = STATE(5351), + [sym_val_duration] = STATE(5350), + [sym_val_filesize] = STATE(5350), + [sym_val_binary] = STATE(5350), + [sym_val_string] = STATE(5350), + [sym__str_double_quotes] = STATE(5502), + [sym_val_interpolated] = STATE(5350), + [sym__inter_single_quotes] = STATE(5420), + [sym__inter_double_quotes] = STATE(5421), + [sym_val_list] = STATE(5350), + [sym_val_record] = STATE(5350), + [sym_val_table] = STATE(5350), + [sym_val_closure] = STATE(5350), + [sym__cmd_arg] = STATE(7837), + [sym_redirection] = STATE(7966), + [sym__flag] = STATE(7970), + [sym_short_flag] = STATE(8027), + [sym_long_flag] = STATE(8027), + [sym_long_flag_equals_value] = STATE(7909), + [sym_long_flag_value] = STATE(7840), + [sym_unquoted] = STATE(7420), + [sym__unquoted_with_expr] = STATE(7987), + [sym__unquoted_anonymous_prefix] = STATE(9851), + [sym_comment] = STATE(926), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_LPAREN] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_DASH_DASH] = ACTIONS(3054), + [anon_sym_DASH] = ACTIONS(3056), + [anon_sym_LBRACE] = ACTIONS(3058), + [anon_sym_DOT_DOT] = ACTIONS(3060), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3062), + [anon_sym_DOT_DOT_LT] = ACTIONS(3062), + [anon_sym_null] = ACTIONS(3064), + [anon_sym_true] = ACTIONS(3066), + [anon_sym_false] = ACTIONS(3066), + [aux_sym__val_number_decimal_token1] = ACTIONS(3068), + [aux_sym__val_number_decimal_token2] = ACTIONS(3070), + [anon_sym_DOT2] = ACTIONS(3072), + [aux_sym__val_number_decimal_token3] = ACTIONS(3074), + [aux_sym__val_number_token1] = ACTIONS(3076), + [aux_sym__val_number_token2] = ACTIONS(3076), + [aux_sym__val_number_token3] = ACTIONS(3076), + [aux_sym__val_number_token4] = ACTIONS(3078), + [aux_sym__val_number_token5] = ACTIONS(3078), + [aux_sym__val_number_token6] = ACTIONS(3078), + [anon_sym_0b] = ACTIONS(3080), + [anon_sym_0o] = ACTIONS(3082), + [anon_sym_0x] = ACTIONS(3082), + [sym_val_date] = ACTIONS(3084), + [anon_sym_DQUOTE] = ACTIONS(3086), + [sym__str_single_quotes] = ACTIONS(3088), + [sym__str_back_ticks] = ACTIONS(3088), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3092), + [anon_sym_err_GT] = ACTIONS(3094), + [anon_sym_out_GT] = ACTIONS(3094), + [anon_sym_e_GT] = ACTIONS(3094), + [anon_sym_o_GT] = ACTIONS(3094), + [anon_sym_err_PLUSout_GT] = ACTIONS(3094), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3094), + [anon_sym_o_PLUSe_GT] = ACTIONS(3094), + [anon_sym_e_PLUSo_GT] = ACTIONS(3094), + [aux_sym_unquoted_token1] = ACTIONS(3096), + [anon_sym_POUND] = ACTIONS(3), + }, + [927] = { + [sym_cell_path] = STATE(1101), + [sym_path] = STATE(898), + [sym_comment] = STATE(927), + [anon_sym_LBRACK] = ACTIONS(992), + [anon_sym_COMMA] = ACTIONS(992), + [anon_sym_RBRACK] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(992), + [anon_sym_DOLLAR] = ACTIONS(992), + [anon_sym_GT] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_in] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(992), + [anon_sym_DOT_DOT] = ACTIONS(992), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_STAR_STAR] = ACTIONS(992), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_SLASH] = ACTIONS(992), + [anon_sym_mod] = ACTIONS(992), + [anon_sym_SLASH_SLASH] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_bit_DASHshl] = ACTIONS(992), + [anon_sym_bit_DASHshr] = ACTIONS(992), + [anon_sym_EQ_EQ] = ACTIONS(992), + [anon_sym_BANG_EQ] = ACTIONS(992), + [anon_sym_LT2] = ACTIONS(992), + [anon_sym_LT_EQ] = ACTIONS(992), + [anon_sym_GT_EQ] = ACTIONS(992), + [anon_sym_not_DASHin] = ACTIONS(992), + [anon_sym_starts_DASHwith] = ACTIONS(992), + [anon_sym_ends_DASHwith] = ACTIONS(992), + [anon_sym_EQ_TILDE] = ACTIONS(992), + [anon_sym_BANG_TILDE] = ACTIONS(992), + [anon_sym_bit_DASHand] = ACTIONS(992), + [anon_sym_bit_DASHxor] = ACTIONS(992), + [anon_sym_bit_DASHor] = ACTIONS(992), + [anon_sym_and] = ACTIONS(992), + [anon_sym_xor] = ACTIONS(992), + [anon_sym_or] = ACTIONS(992), + [anon_sym_DOT_DOT2] = ACTIONS(992), + [anon_sym_DOT] = ACTIONS(2546), + [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(992), + [anon_sym_true] = ACTIONS(992), + [anon_sym_false] = ACTIONS(992), + [aux_sym__val_number_decimal_token1] = ACTIONS(992), + [aux_sym__val_number_decimal_token2] = ACTIONS(992), + [anon_sym_DOT2] = ACTIONS(992), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(992), + [anon_sym_0o] = ACTIONS(992), + [anon_sym_0x] = ACTIONS(992), + [sym_val_date] = ACTIONS(992), + [anon_sym_DQUOTE] = ACTIONS(992), + [sym__str_single_quotes] = ACTIONS(992), + [sym__str_back_ticks] = ACTIONS(992), + [sym__entry_separator] = ACTIONS(994), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(992), + [anon_sym_POUND] = ACTIONS(113), + }, + [928] = { + [sym_expr_parenthesized] = STATE(9684), + [sym_val_range] = STATE(7724), + [sym__val_range] = STATE(10105), + [sym__val_range_with_end] = STATE(10053), + [sym__value] = STATE(7724), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(9752), + [sym_val_variable] = STATE(5903), + [sym__var] = STATE(6987), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(7123), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(6592), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym__cmd_arg] = STATE(7776), + [sym_redirection] = STATE(7725), + [sym__flag] = STATE(7726), + [sym_short_flag] = STATE(8892), + [sym_long_flag] = STATE(8892), + [sym_long_flag_equals_value] = STATE(7692), + [sym_long_flag_value] = STATE(7777), + [sym_unquoted] = STATE(7212), + [sym__unquoted_with_expr] = STATE(7727), + [sym__unquoted_anonymous_prefix] = STATE(9871), + [sym_comment] = STATE(928), + [anon_sym_LBRACK] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(3100), + [anon_sym_DOLLAR] = ACTIONS(3102), + [anon_sym_DASH_DASH] = ACTIONS(3104), + [anon_sym_DASH] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(3106), + [anon_sym_DOT_DOT] = ACTIONS(3108), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3110), + [anon_sym_DOT_DOT_LT] = ACTIONS(3110), + [anon_sym_null] = ACTIONS(3112), + [anon_sym_true] = ACTIONS(3114), + [anon_sym_false] = ACTIONS(3114), + [aux_sym__val_number_decimal_token1] = ACTIONS(3116), + [aux_sym__val_number_decimal_token2] = ACTIONS(3118), + [anon_sym_DOT2] = ACTIONS(3120), + [aux_sym__val_number_decimal_token3] = ACTIONS(3122), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(3126), + [aux_sym__val_number_token5] = ACTIONS(3126), + [aux_sym__val_number_token6] = ACTIONS(3126), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(3132), + [anon_sym_DQUOTE] = ACTIONS(2838), + [sym__str_single_quotes] = ACTIONS(2840), + [sym__str_back_ticks] = ACTIONS(2840), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3138), + [anon_sym_out_GT] = ACTIONS(3138), + [anon_sym_e_GT] = ACTIONS(3138), + [anon_sym_o_GT] = ACTIONS(3138), + [anon_sym_err_PLUSout_GT] = ACTIONS(3138), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3138), + [anon_sym_o_PLUSe_GT] = ACTIONS(3138), + [anon_sym_e_PLUSo_GT] = ACTIONS(3138), + [aux_sym_unquoted_token1] = ACTIONS(3140), + [anon_sym_POUND] = ACTIONS(3), + }, + [929] = { + [sym_cell_path] = STATE(1060), + [sym_path] = STATE(891), + [sym_comment] = STATE(929), + [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), + [anon_sym_SEMI] = ACTIONS(992), + [sym_cmd_identifier] = ACTIONS(992), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(992), + [anon_sym_RPAREN] = ACTIONS(992), + [anon_sym_DOLLAR] = ACTIONS(992), + [anon_sym_error] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_break] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_loop] = ACTIONS(992), + [anon_sym_while] = ACTIONS(992), + [anon_sym_do] = ACTIONS(992), + [anon_sym_if] = ACTIONS(992), + [anon_sym_match] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(992), + [anon_sym_RBRACE] = ACTIONS(992), + [anon_sym_DOT_DOT] = ACTIONS(992), + [anon_sym_try] = 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_where] = ACTIONS(992), + [anon_sym_not] = ACTIONS(992), + [anon_sym_DOT_DOT2] = ACTIONS(992), + [anon_sym_DOT] = ACTIONS(2456), + [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(992), + [anon_sym_true] = ACTIONS(992), + [anon_sym_false] = ACTIONS(992), + [aux_sym__val_number_decimal_token1] = ACTIONS(992), + [aux_sym__val_number_decimal_token2] = ACTIONS(992), + [anon_sym_DOT2] = ACTIONS(992), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(992), + [anon_sym_0o] = ACTIONS(992), + [anon_sym_0x] = ACTIONS(992), + [sym_val_date] = ACTIONS(992), + [anon_sym_DQUOTE] = ACTIONS(992), + [sym__str_single_quotes] = ACTIONS(992), + [sym__str_back_ticks] = ACTIONS(992), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(992), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(992), + [anon_sym_CARET] = ACTIONS(992), + [anon_sym_POUND] = ACTIONS(113), + }, + [930] = { + [sym_comment] = STATE(930), + [anon_sym_LBRACK] = ACTIONS(940), + [anon_sym_COMMA] = ACTIONS(940), + [anon_sym_RBRACK] = ACTIONS(940), + [anon_sym_LPAREN] = ACTIONS(940), + [anon_sym_DOLLAR] = ACTIONS(940), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(940), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_in] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(940), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_STAR_STAR] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(940), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(940), + [anon_sym_SLASH_SLASH] = ACTIONS(940), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_bit_DASHshl] = ACTIONS(940), + [anon_sym_bit_DASHshr] = ACTIONS(940), + [anon_sym_EQ_EQ] = ACTIONS(940), + [anon_sym_BANG_EQ] = ACTIONS(940), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(940), + [anon_sym_GT_EQ] = ACTIONS(940), + [anon_sym_not_DASHin] = ACTIONS(940), + [anon_sym_starts_DASHwith] = ACTIONS(940), + [anon_sym_ends_DASHwith] = ACTIONS(940), + [anon_sym_EQ_TILDE] = ACTIONS(940), + [anon_sym_BANG_TILDE] = ACTIONS(940), + [anon_sym_bit_DASHand] = ACTIONS(940), + [anon_sym_bit_DASHxor] = ACTIONS(940), + [anon_sym_bit_DASHor] = ACTIONS(940), + [anon_sym_and] = ACTIONS(940), + [anon_sym_xor] = ACTIONS(940), + [anon_sym_or] = ACTIONS(940), + [anon_sym_DOT_DOT2] = ACTIONS(3142), + [anon_sym_DOT] = ACTIONS(3144), + [anon_sym_DOT_DOT_EQ] = ACTIONS(938), + [anon_sym_DOT_DOT_LT] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3146), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3146), + [anon_sym_null] = ACTIONS(940), + [anon_sym_true] = ACTIONS(940), + [anon_sym_false] = ACTIONS(940), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(940), + [anon_sym_DOT2] = ACTIONS(938), + [aux_sym__val_number_decimal_token3] = ACTIONS(940), + [aux_sym__val_number_token1] = ACTIONS(940), + [aux_sym__val_number_token2] = ACTIONS(940), + [aux_sym__val_number_token3] = ACTIONS(940), + [aux_sym__val_number_token4] = ACTIONS(940), + [aux_sym__val_number_token5] = ACTIONS(940), + [aux_sym__val_number_token6] = ACTIONS(940), + [anon_sym_0b] = ACTIONS(938), + [sym_filesize_unit] = ACTIONS(2954), + [sym_duration_unit] = ACTIONS(2956), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = ACTIONS(940), + [anon_sym_DQUOTE] = ACTIONS(940), + [sym__str_single_quotes] = ACTIONS(940), + [sym__str_back_ticks] = ACTIONS(940), + [anon_sym_err_GT] = ACTIONS(940), + [anon_sym_out_GT] = ACTIONS(940), + [anon_sym_e_GT] = ACTIONS(940), + [anon_sym_o_GT] = ACTIONS(940), + [anon_sym_err_PLUSout_GT] = ACTIONS(940), + [anon_sym_out_PLUSerr_GT] = ACTIONS(940), + [anon_sym_o_PLUSe_GT] = ACTIONS(940), + [anon_sym_e_PLUSo_GT] = ACTIONS(940), + [aux_sym_unquoted_token5] = ACTIONS(3148), + [aux_sym__unquoted_in_list_token1] = ACTIONS(938), + [anon_sym_POUND] = ACTIONS(3), + }, + [931] = { + [sym_expr_parenthesized] = STATE(9618), + [sym_val_range] = STATE(10700), + [sym__val_range] = STATE(10105), + [sym__val_range_with_end] = STATE(10095), + [sym__value] = STATE(10700), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(9799), + [sym_val_variable] = STATE(6050), + [sym__var] = STATE(6987), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(7387), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym__cmd_arg] = STATE(10342), + [sym_redirection] = STATE(10860), + [sym__flag] = STATE(10864), + [sym_short_flag] = STATE(10275), + [sym_long_flag] = STATE(10275), + [sym_long_flag_equals_value] = STATE(10628), + [sym_long_flag_value] = STATE(10437), + [sym_unquoted] = STATE(9860), + [sym__unquoted_with_expr] = STATE(10901), + [sym__unquoted_anonymous_prefix] = STATE(9936), + [sym_comment] = STATE(931), + [anon_sym_LBRACK] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3100), + [anon_sym_DOLLAR] = ACTIONS(3102), + [anon_sym_DASH_DASH] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3154), + [anon_sym_LBRACE] = ACTIONS(3156), + [anon_sym_DOT_DOT] = ACTIONS(3158), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3160), + [anon_sym_DOT_DOT_LT] = ACTIONS(3160), + [anon_sym_null] = ACTIONS(3162), + [anon_sym_true] = ACTIONS(3164), + [anon_sym_false] = ACTIONS(3164), + [aux_sym__val_number_decimal_token1] = ACTIONS(3166), + [aux_sym__val_number_decimal_token2] = ACTIONS(3168), + [anon_sym_DOT2] = ACTIONS(3170), + [aux_sym__val_number_decimal_token3] = ACTIONS(3172), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(3174), + [aux_sym__val_number_token5] = ACTIONS(3174), + [aux_sym__val_number_token6] = ACTIONS(3174), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(3176), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3182), + [anon_sym_out_GT] = ACTIONS(3182), + [anon_sym_e_GT] = ACTIONS(3182), + [anon_sym_o_GT] = ACTIONS(3182), + [anon_sym_err_PLUSout_GT] = ACTIONS(3182), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3182), + [anon_sym_o_PLUSe_GT] = ACTIONS(3182), + [anon_sym_e_PLUSo_GT] = ACTIONS(3182), + [aux_sym_unquoted_token1] = ACTIONS(3140), + [anon_sym_POUND] = ACTIONS(3), + }, + [932] = { + [sym_expr_parenthesized] = STATE(1122), + [sym_val_range] = STATE(1649), + [sym__val_range] = STATE(10154), + [sym__val_range_with_end] = STATE(10263), + [sym__value] = STATE(1649), + [sym_val_nothing] = STATE(1471), + [sym_val_bool] = STATE(1146), + [sym_val_variable] = STATE(1068), + [sym__var] = STATE(935), + [sym_val_number] = STATE(1471), + [sym__val_number_decimal] = STATE(832), + [sym__val_number] = STATE(1938), + [sym_val_duration] = STATE(1471), + [sym_val_filesize] = STATE(1471), + [sym_val_binary] = STATE(1471), + [sym_val_string] = STATE(1471), + [sym__str_double_quotes] = STATE(1791), + [sym_val_interpolated] = STATE(1471), + [sym__inter_single_quotes] = STATE(1435), + [sym__inter_double_quotes] = STATE(1436), + [sym_val_list] = STATE(1471), + [sym_val_record] = STATE(1471), + [sym_val_table] = STATE(1471), + [sym_val_closure] = STATE(1471), + [sym__cmd_arg] = STATE(1730), + [sym_redirection] = STATE(1650), + [sym__flag] = STATE(1665), + [sym_short_flag] = STATE(1648), + [sym_long_flag] = STATE(1648), + [sym_long_flag_equals_value] = STATE(1632), + [sym_long_flag_value] = STATE(1731), + [sym_unquoted] = STATE(1241), + [sym__unquoted_with_expr] = STATE(1667), + [sym__unquoted_anonymous_prefix] = STATE(9972), + [sym_comment] = STATE(932), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(3186), + [anon_sym_DOLLAR] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(3188), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [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), + [anon_sym_DOT2] = ACTIONS(3206), + [aux_sym__val_number_decimal_token3] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(3210), + [aux_sym__val_number_token2] = ACTIONS(3210), + [aux_sym__val_number_token3] = ACTIONS(3210), + [aux_sym__val_number_token4] = ACTIONS(3212), + [aux_sym__val_number_token5] = ACTIONS(3212), + [aux_sym__val_number_token6] = ACTIONS(3212), + [anon_sym_0b] = ACTIONS(3214), + [anon_sym_0o] = ACTIONS(3216), + [anon_sym_0x] = ACTIONS(3216), + [sym_val_date] = ACTIONS(3218), + [anon_sym_DQUOTE] = ACTIONS(3220), + [sym__str_single_quotes] = ACTIONS(3222), + [sym__str_back_ticks] = ACTIONS(3222), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3224), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(3228), + [anon_sym_out_GT] = ACTIONS(3228), + [anon_sym_e_GT] = ACTIONS(3228), + [anon_sym_o_GT] = ACTIONS(3228), + [anon_sym_err_PLUSout_GT] = ACTIONS(3228), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3228), + [anon_sym_o_PLUSe_GT] = ACTIONS(3228), + [anon_sym_e_PLUSo_GT] = ACTIONS(3228), + [aux_sym_unquoted_token1] = ACTIONS(3230), + [anon_sym_POUND] = ACTIONS(3), + }, + [933] = { + [sym_comment] = STATE(933), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_alias] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_let_DASHenv] = ACTIONS(2229), + [anon_sym_mut] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2229), + [sym_cmd_identifier] = ACTIONS(2229), + [anon_sym_LF] = ACTIONS(2231), + [anon_sym_def] = ACTIONS(2229), + [anon_sym_export_DASHenv] = ACTIONS(2229), + [anon_sym_extern] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_RPAREN] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2229), + [anon_sym_error] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_loop] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_RBRACE] = ACTIONS(2229), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_source] = ACTIONS(2229), + [anon_sym_source_DASHenv] = ACTIONS(2229), + [anon_sym_register] = ACTIONS(2229), + [anon_sym_hide] = ACTIONS(2229), + [anon_sym_hide_DASHenv] = ACTIONS(2229), + [anon_sym_overlay] = ACTIONS(2229), + [anon_sym_as] = ACTIONS(2229), + [anon_sym_where] = ACTIONS(2229), + [anon_sym_not] = ACTIONS(2229), + [anon_sym_LPAREN2] = ACTIONS(2231), + [anon_sym_DOT_DOT2] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2229), + [anon_sym_DOT_DOT_LT] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2231), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2231), + [anon_sym_null] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [aux_sym__val_number_decimal_token1] = ACTIONS(2229), + [aux_sym__val_number_decimal_token2] = ACTIONS(2229), + [anon_sym_DOT2] = ACTIONS(2229), + [aux_sym__val_number_decimal_token3] = ACTIONS(2229), + [aux_sym__val_number_token1] = ACTIONS(2229), + [aux_sym__val_number_token2] = ACTIONS(2229), + [aux_sym__val_number_token3] = ACTIONS(2229), + [aux_sym__val_number_token4] = ACTIONS(2229), + [aux_sym__val_number_token5] = ACTIONS(2229), + [aux_sym__val_number_token6] = ACTIONS(2229), + [anon_sym_0b] = ACTIONS(2229), + [anon_sym_0o] = ACTIONS(2229), + [anon_sym_0x] = ACTIONS(2229), + [sym_val_date] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2229), + [anon_sym_CARET] = ACTIONS(2229), + [aux_sym_unquoted_token2] = ACTIONS(2229), + [anon_sym_POUND] = ACTIONS(113), + }, + [934] = { + [sym_comment] = STATE(934), + [anon_sym_LBRACK] = ACTIONS(895), + [anon_sym_COMMA] = ACTIONS(895), + [anon_sym_LPAREN] = ACTIONS(895), + [anon_sym_DOLLAR] = ACTIONS(895), + [anon_sym_GT] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_in] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(895), + [anon_sym_RBRACE] = ACTIONS(895), + [anon_sym__] = ACTIONS(893), + [anon_sym_DOT_DOT] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(893), + [anon_sym_STAR_STAR] = ACTIONS(895), + [anon_sym_PLUS_PLUS] = ACTIONS(895), + [anon_sym_SLASH] = ACTIONS(893), + [anon_sym_mod] = ACTIONS(895), + [anon_sym_SLASH_SLASH] = ACTIONS(895), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_bit_DASHshl] = ACTIONS(895), + [anon_sym_bit_DASHshr] = ACTIONS(895), + [anon_sym_EQ_EQ] = ACTIONS(895), + [anon_sym_BANG_EQ] = ACTIONS(895), + [anon_sym_LT2] = ACTIONS(893), + [anon_sym_LT_EQ] = ACTIONS(895), + [anon_sym_GT_EQ] = ACTIONS(895), + [anon_sym_not_DASHin] = ACTIONS(895), + [anon_sym_starts_DASHwith] = ACTIONS(895), + [anon_sym_ends_DASHwith] = ACTIONS(895), + [anon_sym_EQ_TILDE] = ACTIONS(895), + [anon_sym_BANG_TILDE] = ACTIONS(895), + [anon_sym_bit_DASHand] = ACTIONS(895), + [anon_sym_bit_DASHxor] = ACTIONS(895), + [anon_sym_bit_DASHor] = ACTIONS(895), + [anon_sym_and] = ACTIONS(895), + [anon_sym_xor] = ACTIONS(895), + [anon_sym_or] = ACTIONS(895), + [anon_sym_DOT_DOT2] = ACTIONS(893), + [anon_sym_DOT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ] = ACTIONS(893), + [anon_sym_DOT_DOT_LT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), + [anon_sym_DOT_DOT_LT2] = ACTIONS(895), + [anon_sym_null] = ACTIONS(895), + [anon_sym_true] = ACTIONS(895), + [anon_sym_false] = ACTIONS(895), + [aux_sym__val_number_decimal_token1] = ACTIONS(893), + [aux_sym__val_number_decimal_token2] = ACTIONS(895), + [anon_sym_DOT2] = ACTIONS(893), + [aux_sym__val_number_decimal_token3] = ACTIONS(895), + [aux_sym__val_number_token1] = ACTIONS(895), + [aux_sym__val_number_token2] = ACTIONS(895), + [aux_sym__val_number_token3] = ACTIONS(895), + [aux_sym__val_number_token4] = ACTIONS(895), + [aux_sym__val_number_token5] = ACTIONS(895), + [aux_sym__val_number_token6] = ACTIONS(895), + [anon_sym_0b] = ACTIONS(893), + [sym_filesize_unit] = ACTIONS(893), + [sym_duration_unit] = ACTIONS(895), + [anon_sym_0o] = ACTIONS(893), + [anon_sym_0x] = ACTIONS(893), + [sym_val_date] = ACTIONS(895), + [anon_sym_DQUOTE] = ACTIONS(895), + [sym__str_single_quotes] = ACTIONS(895), + [sym__str_back_ticks] = ACTIONS(895), + [anon_sym_err_GT] = ACTIONS(895), + [anon_sym_out_GT] = ACTIONS(895), + [anon_sym_e_GT] = ACTIONS(895), + [anon_sym_o_GT] = ACTIONS(895), + [anon_sym_err_PLUSout_GT] = ACTIONS(895), + [anon_sym_out_PLUSerr_GT] = ACTIONS(895), + [anon_sym_o_PLUSe_GT] = ACTIONS(895), + [anon_sym_e_PLUSo_GT] = ACTIONS(895), + [aux_sym_unquoted_token1] = ACTIONS(893), + [aux_sym_unquoted_token5] = ACTIONS(893), + [anon_sym_POUND] = ACTIONS(3), + }, + [935] = { + [sym_cell_path] = STATE(1103), + [sym_path] = STATE(891), + [sym_comment] = STATE(935), + [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), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [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_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = 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_where] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT2] = ACTIONS(1002), + [anon_sym_DOT] = ACTIONS(2456), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1004), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1004), + [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), + [anon_sym_DOT2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = 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(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_CARET] = ACTIONS(1002), + [anon_sym_POUND] = ACTIONS(113), + }, + [936] = { + [sym_comment] = STATE(936), + [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), + [anon_sym_SEMI] = ACTIONS(2362), + [sym_cmd_identifier] = ACTIONS(2362), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2362), + [anon_sym_LPAREN] = ACTIONS(2362), + [anon_sym_RPAREN] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2362), + [anon_sym_error] = ACTIONS(2362), + [anon_sym_DASH_DASH] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_break] = ACTIONS(2362), + [anon_sym_continue] = ACTIONS(2362), + [anon_sym_for] = ACTIONS(2362), + [anon_sym_loop] = ACTIONS(2362), + [anon_sym_while] = ACTIONS(2362), + [anon_sym_do] = ACTIONS(2362), + [anon_sym_if] = ACTIONS(2362), + [anon_sym_match] = ACTIONS(2362), + [anon_sym_LBRACE] = ACTIONS(2362), + [anon_sym_RBRACE] = ACTIONS(2362), + [anon_sym_DOT_DOT] = ACTIONS(2362), + [anon_sym_try] = 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_where] = ACTIONS(2362), + [anon_sym_not] = ACTIONS(2362), + [anon_sym_LPAREN2] = ACTIONS(2364), + [anon_sym_DOT_DOT2] = ACTIONS(2362), + [anon_sym_DOT] = ACTIONS(2362), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2362), + [anon_sym_DOT_DOT_LT] = ACTIONS(2362), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2364), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2364), + [anon_sym_null] = ACTIONS(2362), + [anon_sym_true] = ACTIONS(2362), + [anon_sym_false] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2362), + [aux_sym__val_number_decimal_token2] = ACTIONS(2362), + [anon_sym_DOT2] = ACTIONS(2362), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2362), + [anon_sym_0o] = ACTIONS(2362), + [anon_sym_0x] = ACTIONS(2362), + [sym_val_date] = 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_CARET] = ACTIONS(2362), + [aux_sym_unquoted_token2] = ACTIONS(2362), + [anon_sym_POUND] = ACTIONS(113), + }, + [937] = { + [sym_expr_parenthesized] = STATE(8488), + [sym_val_range] = STATE(7724), + [sym__val_range] = STATE(10105), + [sym__val_range_with_end] = STATE(10053), + [sym__value] = STATE(7724), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(8698), + [sym_val_variable] = STATE(5562), + [sym__var] = STATE(6987), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(6983), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(6592), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym__cmd_arg] = STATE(7776), + [sym_redirection] = STATE(7725), + [sym__flag] = STATE(7726), + [sym_short_flag] = STATE(8892), + [sym_long_flag] = STATE(8892), + [sym_long_flag_equals_value] = STATE(7692), + [sym_long_flag_value] = STATE(7777), + [sym_unquoted] = STATE(7212), + [sym__unquoted_with_expr] = STATE(7727), + [sym__unquoted_anonymous_prefix] = STATE(9871), + [sym_comment] = STATE(937), + [anon_sym_LBRACK] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(3100), + [anon_sym_DOLLAR] = ACTIONS(3102), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_DASH] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(3106), + [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(2629), + [anon_sym_true] = ACTIONS(2631), + [anon_sym_false] = ACTIONS(2631), + [aux_sym__val_number_decimal_token1] = ACTIONS(3238), + [aux_sym__val_number_decimal_token2] = ACTIONS(3240), + [anon_sym_DOT2] = ACTIONS(3242), + [aux_sym__val_number_decimal_token3] = ACTIONS(3244), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(3246), + [aux_sym__val_number_token5] = ACTIONS(3246), + [aux_sym__val_number_token6] = ACTIONS(3246), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(2649), + [anon_sym_DQUOTE] = ACTIONS(2838), + [sym__str_single_quotes] = ACTIONS(2840), + [sym__str_back_ticks] = ACTIONS(2840), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3248), + [anon_sym_out_GT] = ACTIONS(3248), + [anon_sym_e_GT] = ACTIONS(3248), + [anon_sym_o_GT] = ACTIONS(3248), + [anon_sym_err_PLUSout_GT] = ACTIONS(3248), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3248), + [anon_sym_o_PLUSe_GT] = ACTIONS(3248), + [anon_sym_e_PLUSo_GT] = ACTIONS(3248), + [aux_sym_unquoted_token1] = ACTIONS(3140), + [anon_sym_POUND] = ACTIONS(3), + }, + [938] = { + [sym_comment] = STATE(938), + [anon_sym_LBRACK] = ACTIONS(903), + [anon_sym_COMMA] = ACTIONS(903), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_DOLLAR] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_in] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(903), + [anon_sym_RBRACE] = ACTIONS(903), + [anon_sym__] = ACTIONS(901), + [anon_sym_DOT_DOT] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_STAR_STAR] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_mod] = ACTIONS(903), + [anon_sym_SLASH_SLASH] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_bit_DASHshl] = ACTIONS(903), + [anon_sym_bit_DASHshr] = ACTIONS(903), + [anon_sym_EQ_EQ] = ACTIONS(903), + [anon_sym_BANG_EQ] = ACTIONS(903), + [anon_sym_LT2] = ACTIONS(901), + [anon_sym_LT_EQ] = ACTIONS(903), + [anon_sym_GT_EQ] = ACTIONS(903), + [anon_sym_not_DASHin] = ACTIONS(903), + [anon_sym_starts_DASHwith] = ACTIONS(903), + [anon_sym_ends_DASHwith] = ACTIONS(903), + [anon_sym_EQ_TILDE] = ACTIONS(903), + [anon_sym_BANG_TILDE] = ACTIONS(903), + [anon_sym_bit_DASHand] = ACTIONS(903), + [anon_sym_bit_DASHxor] = ACTIONS(903), + [anon_sym_bit_DASHor] = ACTIONS(903), + [anon_sym_and] = ACTIONS(903), + [anon_sym_xor] = ACTIONS(903), + [anon_sym_or] = ACTIONS(903), + [anon_sym_DOT_DOT2] = ACTIONS(901), + [anon_sym_DOT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ] = ACTIONS(901), + [anon_sym_DOT_DOT_LT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(903), + [anon_sym_DOT_DOT_LT2] = ACTIONS(903), + [anon_sym_null] = ACTIONS(903), + [anon_sym_true] = ACTIONS(903), + [anon_sym_false] = ACTIONS(903), + [aux_sym__val_number_decimal_token1] = ACTIONS(901), + [aux_sym__val_number_decimal_token2] = ACTIONS(903), + [anon_sym_DOT2] = ACTIONS(901), + [aux_sym__val_number_decimal_token3] = ACTIONS(903), + [aux_sym__val_number_token1] = ACTIONS(903), + [aux_sym__val_number_token2] = ACTIONS(903), + [aux_sym__val_number_token3] = ACTIONS(903), + [aux_sym__val_number_token4] = ACTIONS(903), + [aux_sym__val_number_token5] = ACTIONS(903), + [aux_sym__val_number_token6] = ACTIONS(903), + [anon_sym_0b] = ACTIONS(901), + [sym_filesize_unit] = ACTIONS(901), + [sym_duration_unit] = ACTIONS(903), + [anon_sym_0o] = ACTIONS(901), + [anon_sym_0x] = ACTIONS(901), + [sym_val_date] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(903), + [sym__str_single_quotes] = ACTIONS(903), + [sym__str_back_ticks] = ACTIONS(903), + [anon_sym_err_GT] = ACTIONS(903), + [anon_sym_out_GT] = ACTIONS(903), + [anon_sym_e_GT] = ACTIONS(903), + [anon_sym_o_GT] = ACTIONS(903), + [anon_sym_err_PLUSout_GT] = ACTIONS(903), + [anon_sym_out_PLUSerr_GT] = ACTIONS(903), + [anon_sym_o_PLUSe_GT] = ACTIONS(903), + [anon_sym_e_PLUSo_GT] = ACTIONS(903), + [aux_sym_unquoted_token1] = ACTIONS(901), + [aux_sym_unquoted_token5] = ACTIONS(901), + [anon_sym_POUND] = ACTIONS(3), + }, + [939] = { + [sym__immediate_decimal] = STATE(8796), + [sym_comment] = STATE(939), + [anon_sym_LBRACK] = ACTIONS(922), + [anon_sym_COMMA] = ACTIONS(922), + [anon_sym_LPAREN] = ACTIONS(922), + [anon_sym_DOLLAR] = ACTIONS(922), + [anon_sym_GT] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_in] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_RBRACE] = ACTIONS(922), + [anon_sym__] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_STAR_STAR] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_mod] = ACTIONS(922), + [anon_sym_SLASH_SLASH] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_bit_DASHshl] = ACTIONS(922), + [anon_sym_bit_DASHshr] = ACTIONS(922), + [anon_sym_EQ_EQ] = ACTIONS(922), + [anon_sym_BANG_EQ] = ACTIONS(922), + [anon_sym_LT2] = ACTIONS(920), + [anon_sym_LT_EQ] = ACTIONS(922), + [anon_sym_GT_EQ] = ACTIONS(922), + [anon_sym_not_DASHin] = ACTIONS(922), + [anon_sym_starts_DASHwith] = ACTIONS(922), + [anon_sym_ends_DASHwith] = ACTIONS(922), + [anon_sym_EQ_TILDE] = ACTIONS(922), + [anon_sym_BANG_TILDE] = ACTIONS(922), + [anon_sym_bit_DASHand] = ACTIONS(922), + [anon_sym_bit_DASHxor] = ACTIONS(922), + [anon_sym_bit_DASHor] = ACTIONS(922), + [anon_sym_and] = ACTIONS(922), + [anon_sym_xor] = ACTIONS(922), + [anon_sym_or] = ACTIONS(922), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_DOT_DOT_EQ] = ACTIONS(922), + [anon_sym_DOT_DOT_LT] = ACTIONS(922), + [aux_sym__immediate_decimal_token1] = ACTIONS(926), + [aux_sym__immediate_decimal_token3] = ACTIONS(1379), + [aux_sym__immediate_decimal_token4] = ACTIONS(1381), + [anon_sym_null] = ACTIONS(922), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(922), + [aux_sym__val_number_token2] = ACTIONS(922), + [aux_sym__val_number_token3] = ACTIONS(922), + [aux_sym__val_number_token4] = ACTIONS(922), + [aux_sym__val_number_token5] = ACTIONS(922), + [aux_sym__val_number_token6] = ACTIONS(922), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(922), + [anon_sym_DQUOTE] = ACTIONS(922), + [sym__str_single_quotes] = ACTIONS(922), + [sym__str_back_ticks] = ACTIONS(922), + [anon_sym_err_GT] = ACTIONS(922), + [anon_sym_out_GT] = ACTIONS(922), + [anon_sym_e_GT] = ACTIONS(922), + [anon_sym_o_GT] = ACTIONS(922), + [anon_sym_err_PLUSout_GT] = ACTIONS(922), + [anon_sym_out_PLUSerr_GT] = ACTIONS(922), + [anon_sym_o_PLUSe_GT] = ACTIONS(922), + [anon_sym_e_PLUSo_GT] = ACTIONS(922), + [aux_sym_unquoted_token1] = ACTIONS(920), + [aux_sym_unquoted_token3] = ACTIONS(3252), + [aux_sym_unquoted_token5] = ACTIONS(3254), + [anon_sym_POUND] = ACTIONS(3), + }, + [940] = { + [sym_comment] = STATE(940), + [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_COMMA] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_DOLLAR] = ACTIONS(936), + [anon_sym_GT] = ACTIONS(934), + [anon_sym_DASH] = ACTIONS(934), + [anon_sym_in] = ACTIONS(934), + [anon_sym_LBRACE] = ACTIONS(936), + [anon_sym_RBRACE] = ACTIONS(936), + [anon_sym__] = ACTIONS(934), + [anon_sym_DOT_DOT] = ACTIONS(934), + [anon_sym_STAR] = ACTIONS(934), + [anon_sym_STAR_STAR] = ACTIONS(936), + [anon_sym_PLUS_PLUS] = ACTIONS(936), + [anon_sym_SLASH] = ACTIONS(934), + [anon_sym_mod] = ACTIONS(936), + [anon_sym_SLASH_SLASH] = ACTIONS(936), + [anon_sym_PLUS] = ACTIONS(934), + [anon_sym_bit_DASHshl] = ACTIONS(936), + [anon_sym_bit_DASHshr] = ACTIONS(936), + [anon_sym_EQ_EQ] = ACTIONS(936), + [anon_sym_BANG_EQ] = ACTIONS(936), + [anon_sym_LT2] = ACTIONS(934), + [anon_sym_LT_EQ] = ACTIONS(936), + [anon_sym_GT_EQ] = ACTIONS(936), + [anon_sym_not_DASHin] = ACTIONS(936), + [anon_sym_starts_DASHwith] = ACTIONS(936), + [anon_sym_ends_DASHwith] = ACTIONS(936), + [anon_sym_EQ_TILDE] = ACTIONS(936), + [anon_sym_BANG_TILDE] = ACTIONS(936), + [anon_sym_bit_DASHand] = ACTIONS(936), + [anon_sym_bit_DASHxor] = ACTIONS(936), + [anon_sym_bit_DASHor] = ACTIONS(936), + [anon_sym_and] = ACTIONS(936), + [anon_sym_xor] = ACTIONS(936), + [anon_sym_or] = ACTIONS(936), + [anon_sym_DOT_DOT2] = ACTIONS(934), + [anon_sym_DOT] = ACTIONS(934), + [anon_sym_DOT_DOT_EQ] = ACTIONS(934), + [anon_sym_DOT_DOT_LT] = ACTIONS(934), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(936), + [anon_sym_DOT_DOT_LT2] = ACTIONS(936), + [anon_sym_null] = ACTIONS(936), + [anon_sym_true] = ACTIONS(936), + [anon_sym_false] = ACTIONS(936), + [aux_sym__val_number_decimal_token1] = ACTIONS(934), + [aux_sym__val_number_decimal_token2] = ACTIONS(936), + [anon_sym_DOT2] = ACTIONS(934), + [aux_sym__val_number_decimal_token3] = ACTIONS(936), + [aux_sym__val_number_token1] = ACTIONS(936), + [aux_sym__val_number_token2] = ACTIONS(936), + [aux_sym__val_number_token3] = ACTIONS(936), + [aux_sym__val_number_token4] = ACTIONS(936), + [aux_sym__val_number_token5] = ACTIONS(936), + [aux_sym__val_number_token6] = ACTIONS(936), + [anon_sym_0b] = ACTIONS(934), + [sym_filesize_unit] = ACTIONS(934), + [sym_duration_unit] = ACTIONS(936), + [anon_sym_0o] = ACTIONS(934), + [anon_sym_0x] = ACTIONS(934), + [sym_val_date] = ACTIONS(936), + [anon_sym_DQUOTE] = ACTIONS(936), + [sym__str_single_quotes] = ACTIONS(936), + [sym__str_back_ticks] = ACTIONS(936), + [anon_sym_err_GT] = ACTIONS(936), + [anon_sym_out_GT] = ACTIONS(936), + [anon_sym_e_GT] = ACTIONS(936), + [anon_sym_o_GT] = ACTIONS(936), + [anon_sym_err_PLUSout_GT] = ACTIONS(936), + [anon_sym_out_PLUSerr_GT] = ACTIONS(936), + [anon_sym_o_PLUSe_GT] = ACTIONS(936), + [anon_sym_e_PLUSo_GT] = ACTIONS(936), + [aux_sym_unquoted_token1] = ACTIONS(934), + [aux_sym_unquoted_token5] = ACTIONS(934), + [anon_sym_POUND] = ACTIONS(3), + }, + [941] = { + [sym_expr_parenthesized] = STATE(3533), + [sym_val_range] = STATE(4025), + [sym__val_range] = STATE(10166), + [sym__val_range_with_end] = STATE(10138), + [sym__value] = STATE(4025), + [sym_val_nothing] = STATE(3978), + [sym_val_bool] = STATE(3705), + [sym_val_variable] = STATE(3483), + [sym__var] = STATE(3303), + [sym_val_number] = STATE(3978), + [sym__val_number_decimal] = STATE(3219), + [sym__val_number] = STATE(4008), + [sym_val_duration] = STATE(3978), + [sym_val_filesize] = STATE(3978), + [sym_val_binary] = STATE(3978), + [sym_val_string] = STATE(3978), + [sym__str_double_quotes] = STATE(3913), + [sym_val_interpolated] = STATE(3978), + [sym__inter_single_quotes] = STATE(3940), + [sym__inter_double_quotes] = STATE(3942), + [sym_val_list] = STATE(3978), + [sym_val_record] = STATE(3978), + [sym_val_table] = STATE(3978), + [sym_val_closure] = STATE(3978), + [sym__cmd_arg] = STATE(4026), + [sym_redirection] = STATE(3901), + [sym__flag] = STATE(3907), + [sym_short_flag] = STATE(4070), + [sym_long_flag] = STATE(4070), + [sym_long_flag_equals_value] = STATE(4030), + [sym_long_flag_value] = STATE(4027), + [sym_unquoted] = STATE(3638), + [sym__unquoted_with_expr] = STATE(3988), + [sym__unquoted_anonymous_prefix] = STATE(9754), + [sym_comment] = STATE(941), + [anon_sym_LBRACK] = ACTIONS(3256), + [anon_sym_LPAREN] = ACTIONS(3258), + [anon_sym_DOLLAR] = ACTIONS(3260), + [anon_sym_DASH_DASH] = ACTIONS(3262), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_DOT_DOT] = ACTIONS(3268), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3270), + [anon_sym_DOT_DOT_LT] = ACTIONS(3270), + [anon_sym_null] = ACTIONS(3272), + [anon_sym_true] = ACTIONS(3274), + [anon_sym_false] = ACTIONS(3274), + [aux_sym__val_number_decimal_token1] = ACTIONS(3276), + [aux_sym__val_number_decimal_token2] = ACTIONS(3278), + [anon_sym_DOT2] = ACTIONS(3280), + [aux_sym__val_number_decimal_token3] = ACTIONS(3282), + [aux_sym__val_number_token1] = ACTIONS(3284), + [aux_sym__val_number_token2] = ACTIONS(3284), + [aux_sym__val_number_token3] = ACTIONS(3284), + [aux_sym__val_number_token4] = ACTIONS(3286), + [aux_sym__val_number_token5] = ACTIONS(3286), + [aux_sym__val_number_token6] = ACTIONS(3286), + [anon_sym_0b] = ACTIONS(3288), + [anon_sym_0o] = ACTIONS(3290), + [anon_sym_0x] = ACTIONS(3290), + [sym_val_date] = ACTIONS(3292), + [anon_sym_DQUOTE] = ACTIONS(3294), + [sym__str_single_quotes] = ACTIONS(3296), + [sym__str_back_ticks] = ACTIONS(3296), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3300), + [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), + [aux_sym_unquoted_token1] = ACTIONS(3304), + [anon_sym_POUND] = ACTIONS(3), + }, + [942] = { + [sym__immediate_decimal] = STATE(8796), + [sym_comment] = STATE(942), + [anon_sym_export] = ACTIONS(920), + [anon_sym_alias] = ACTIONS(920), + [anon_sym_let] = ACTIONS(920), + [anon_sym_let_DASHenv] = ACTIONS(920), + [anon_sym_mut] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(920), + [sym_cmd_identifier] = ACTIONS(920), + [anon_sym_LF] = ACTIONS(922), + [anon_sym_def] = ACTIONS(920), + [anon_sym_export_DASHenv] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym_module] = ACTIONS(920), + [anon_sym_use] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_RPAREN] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_error] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_loop] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_match] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_RBRACE] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_try] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_source] = ACTIONS(920), + [anon_sym_source_DASHenv] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_hide] = ACTIONS(920), + [anon_sym_hide_DASHenv] = ACTIONS(920), + [anon_sym_overlay] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_where] = ACTIONS(920), + [anon_sym_not] = ACTIONS(920), + [anon_sym_DOT] = ACTIONS(3306), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [aux_sym__immediate_decimal_token1] = ACTIONS(926), + [aux_sym__immediate_decimal_token3] = ACTIONS(926), + [aux_sym__immediate_decimal_token4] = ACTIONS(928), + [anon_sym_null] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), + [anon_sym_CARET] = ACTIONS(920), + [aux_sym_unquoted_token3] = ACTIONS(3308), + [aux_sym_unquoted_token5] = ACTIONS(3310), + [anon_sym_POUND] = ACTIONS(113), + }, + [943] = { + [sym_comment] = STATE(943), + [anon_sym_export] = ACTIONS(3312), + [anon_sym_alias] = ACTIONS(3312), + [anon_sym_let] = ACTIONS(3312), + [anon_sym_let_DASHenv] = ACTIONS(3312), + [anon_sym_mut] = ACTIONS(3312), + [anon_sym_const] = ACTIONS(3312), + [anon_sym_SEMI] = ACTIONS(3312), + [sym_cmd_identifier] = ACTIONS(3312), + [anon_sym_LF] = ACTIONS(3314), + [anon_sym_def] = ACTIONS(3312), + [anon_sym_export_DASHenv] = ACTIONS(3312), + [anon_sym_extern] = ACTIONS(3312), + [anon_sym_module] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3312), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_RPAREN] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3312), + [anon_sym_error] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [anon_sym_DASH] = ACTIONS(3312), + [anon_sym_break] = ACTIONS(3312), + [anon_sym_continue] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3312), + [anon_sym_loop] = ACTIONS(3312), + [anon_sym_while] = ACTIONS(3312), + [anon_sym_do] = ACTIONS(3312), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_match] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_DOT_DOT] = ACTIONS(3312), + [anon_sym_try] = ACTIONS(3312), + [anon_sym_return] = ACTIONS(3312), + [anon_sym_source] = ACTIONS(3312), + [anon_sym_source_DASHenv] = ACTIONS(3312), + [anon_sym_register] = ACTIONS(3312), + [anon_sym_hide] = ACTIONS(3312), + [anon_sym_hide_DASHenv] = ACTIONS(3312), + [anon_sym_overlay] = ACTIONS(3312), + [anon_sym_as] = ACTIONS(3312), + [anon_sym_where] = ACTIONS(3312), + [anon_sym_not] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3316), + [anon_sym_DOT_DOT2] = ACTIONS(3318), + [anon_sym_DOT] = ACTIONS(1844), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3312), + [anon_sym_DOT_DOT_LT] = ACTIONS(3312), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3320), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3320), + [anon_sym_null] = ACTIONS(3312), + [anon_sym_true] = ACTIONS(3312), + [anon_sym_false] = ACTIONS(3312), + [aux_sym__val_number_decimal_token1] = ACTIONS(3312), + [aux_sym__val_number_decimal_token2] = ACTIONS(3312), + [anon_sym_DOT2] = ACTIONS(3312), + [aux_sym__val_number_decimal_token3] = ACTIONS(3312), + [aux_sym__val_number_token1] = ACTIONS(3312), + [aux_sym__val_number_token2] = ACTIONS(3312), + [aux_sym__val_number_token3] = ACTIONS(3312), + [aux_sym__val_number_token4] = ACTIONS(3312), + [aux_sym__val_number_token5] = ACTIONS(3312), + [aux_sym__val_number_token6] = ACTIONS(3312), + [anon_sym_0b] = ACTIONS(3312), + [anon_sym_0o] = ACTIONS(3312), + [anon_sym_0x] = ACTIONS(3312), + [sym_val_date] = ACTIONS(3312), + [anon_sym_DQUOTE] = ACTIONS(3312), + [sym__str_single_quotes] = ACTIONS(3312), + [sym__str_back_ticks] = ACTIONS(3312), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3312), + [anon_sym_CARET] = ACTIONS(3312), + [aux_sym_unquoted_token2] = ACTIONS(1844), + [anon_sym_POUND] = ACTIONS(113), + }, + [944] = { + [sym_expr_parenthesized] = STATE(3463), + [sym_val_range] = STATE(3887), + [sym__val_range] = STATE(10194), + [sym__val_range_with_end] = STATE(10073), + [sym__value] = STATE(3887), + [sym_val_nothing] = STATE(3806), + [sym_val_bool] = STATE(3509), + [sym_val_variable] = STATE(3441), + [sym__var] = STATE(3255), + [sym_val_number] = STATE(3806), + [sym__val_number_decimal] = STATE(3192), + [sym__val_number] = STATE(3845), + [sym_val_duration] = STATE(3806), + [sym_val_filesize] = STATE(3806), + [sym_val_binary] = STATE(3806), + [sym_val_string] = STATE(3806), + [sym__str_double_quotes] = STATE(3859), + [sym_val_interpolated] = STATE(3806), + [sym__inter_single_quotes] = STATE(3868), + [sym__inter_double_quotes] = STATE(3869), + [sym_val_list] = STATE(3806), + [sym_val_record] = STATE(3806), + [sym_val_table] = STATE(3806), + [sym_val_closure] = STATE(3806), + [sym__cmd_arg] = STATE(3836), + [sym_redirection] = STATE(3889), + [sym__flag] = STATE(3818), + [sym_short_flag] = STATE(3847), + [sym_long_flag] = STATE(3847), + [sym_long_flag_equals_value] = STATE(3793), + [sym_long_flag_value] = STATE(3837), + [sym_unquoted] = STATE(3591), + [sym__unquoted_with_expr] = STATE(3732), + [sym__unquoted_anonymous_prefix] = STATE(9787), + [sym_comment] = STATE(944), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_LPAREN] = ACTIONS(1451), + [anon_sym_DOLLAR] = ACTIONS(1453), + [anon_sym_DASH_DASH] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(2926), + [anon_sym_LBRACE] = ACTIONS(3324), + [anon_sym_DOT_DOT] = ACTIONS(3326), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3328), + [anon_sym_DOT_DOT_LT] = ACTIONS(3328), + [anon_sym_null] = ACTIONS(3330), + [anon_sym_true] = ACTIONS(3332), + [anon_sym_false] = ACTIONS(3332), + [aux_sym__val_number_decimal_token1] = ACTIONS(3334), + [aux_sym__val_number_decimal_token2] = ACTIONS(3336), + [anon_sym_DOT2] = ACTIONS(3338), + [aux_sym__val_number_decimal_token3] = ACTIONS(3340), + [aux_sym__val_number_token1] = ACTIONS(1479), + [aux_sym__val_number_token2] = ACTIONS(1479), + [aux_sym__val_number_token3] = ACTIONS(1479), + [aux_sym__val_number_token4] = ACTIONS(3342), + [aux_sym__val_number_token5] = ACTIONS(3342), + [aux_sym__val_number_token6] = ACTIONS(3342), + [anon_sym_0b] = ACTIONS(1483), + [anon_sym_0o] = ACTIONS(1485), + [anon_sym_0x] = ACTIONS(1485), + [sym_val_date] = ACTIONS(3344), + [anon_sym_DQUOTE] = ACTIONS(1489), + [sym__str_single_quotes] = ACTIONS(1491), + [sym__str_back_ticks] = ACTIONS(1491), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3346), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3348), + [anon_sym_err_GT] = ACTIONS(3350), + [anon_sym_out_GT] = ACTIONS(3350), + [anon_sym_e_GT] = ACTIONS(3350), + [anon_sym_o_GT] = ACTIONS(3350), + [anon_sym_err_PLUSout_GT] = ACTIONS(3350), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3350), + [anon_sym_o_PLUSe_GT] = ACTIONS(3350), + [anon_sym_e_PLUSo_GT] = ACTIONS(3350), + [aux_sym_unquoted_token1] = ACTIONS(3352), + [anon_sym_POUND] = ACTIONS(3), + }, + [945] = { + [sym_comment] = STATE(945), + [anon_sym_export] = ACTIONS(3354), + [anon_sym_alias] = ACTIONS(3354), + [anon_sym_let] = ACTIONS(3354), + [anon_sym_let_DASHenv] = ACTIONS(3354), + [anon_sym_mut] = ACTIONS(3354), + [anon_sym_const] = ACTIONS(3354), + [anon_sym_SEMI] = ACTIONS(3354), + [sym_cmd_identifier] = ACTIONS(3354), + [anon_sym_LF] = ACTIONS(3356), + [anon_sym_def] = ACTIONS(3354), + [anon_sym_export_DASHenv] = ACTIONS(3354), + [anon_sym_extern] = ACTIONS(3354), + [anon_sym_module] = ACTIONS(3354), + [anon_sym_use] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3354), + [anon_sym_RPAREN] = ACTIONS(3354), + [anon_sym_DOLLAR] = ACTIONS(3354), + [anon_sym_error] = ACTIONS(3354), + [anon_sym_DASH_DASH] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_loop] = ACTIONS(3354), + [anon_sym_while] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_match] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3354), + [anon_sym_RBRACE] = ACTIONS(3354), + [anon_sym_DOT_DOT] = ACTIONS(3354), + [anon_sym_try] = ACTIONS(3354), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_source] = ACTIONS(3354), + [anon_sym_source_DASHenv] = ACTIONS(3354), + [anon_sym_register] = ACTIONS(3354), + [anon_sym_hide] = ACTIONS(3354), + [anon_sym_hide_DASHenv] = ACTIONS(3354), + [anon_sym_overlay] = ACTIONS(3354), + [anon_sym_as] = ACTIONS(3354), + [anon_sym_where] = ACTIONS(3354), + [anon_sym_not] = ACTIONS(3354), + [anon_sym_LPAREN2] = ACTIONS(3358), + [anon_sym_DOT_DOT2] = ACTIONS(3360), + [anon_sym_DOT] = ACTIONS(3362), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3354), + [anon_sym_DOT_DOT_LT] = ACTIONS(3354), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3364), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3364), + [anon_sym_null] = ACTIONS(3354), + [anon_sym_true] = ACTIONS(3354), + [anon_sym_false] = ACTIONS(3354), + [aux_sym__val_number_decimal_token1] = ACTIONS(3354), + [aux_sym__val_number_decimal_token2] = ACTIONS(3354), + [anon_sym_DOT2] = ACTIONS(3354), + [aux_sym__val_number_decimal_token3] = ACTIONS(3354), + [aux_sym__val_number_token1] = ACTIONS(3354), + [aux_sym__val_number_token2] = ACTIONS(3354), + [aux_sym__val_number_token3] = ACTIONS(3354), + [aux_sym__val_number_token4] = ACTIONS(3354), + [aux_sym__val_number_token5] = ACTIONS(3354), + [aux_sym__val_number_token6] = ACTIONS(3354), + [anon_sym_0b] = ACTIONS(3354), + [anon_sym_0o] = ACTIONS(3354), + [anon_sym_0x] = ACTIONS(3354), + [sym_val_date] = ACTIONS(3354), + [anon_sym_DQUOTE] = ACTIONS(3354), + [sym__str_single_quotes] = ACTIONS(3354), + [sym__str_back_ticks] = ACTIONS(3354), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3354), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3354), + [anon_sym_CARET] = ACTIONS(3354), + [aux_sym_unquoted_token2] = ACTIONS(3362), + [anon_sym_POUND] = ACTIONS(113), + }, + [946] = { + [sym_comment] = STATE(946), + [anon_sym_LBRACK] = ACTIONS(940), + [anon_sym_COMMA] = ACTIONS(940), + [anon_sym_LPAREN] = ACTIONS(940), + [anon_sym_DOLLAR] = ACTIONS(940), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_in] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(940), + [anon_sym_RBRACE] = ACTIONS(940), + [anon_sym__] = ACTIONS(938), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_STAR_STAR] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(940), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(940), + [anon_sym_SLASH_SLASH] = ACTIONS(940), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_bit_DASHshl] = ACTIONS(940), + [anon_sym_bit_DASHshr] = ACTIONS(940), + [anon_sym_EQ_EQ] = ACTIONS(940), + [anon_sym_BANG_EQ] = ACTIONS(940), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(940), + [anon_sym_GT_EQ] = ACTIONS(940), + [anon_sym_not_DASHin] = ACTIONS(940), + [anon_sym_starts_DASHwith] = ACTIONS(940), + [anon_sym_ends_DASHwith] = ACTIONS(940), + [anon_sym_EQ_TILDE] = ACTIONS(940), + [anon_sym_BANG_TILDE] = ACTIONS(940), + [anon_sym_bit_DASHand] = ACTIONS(940), + [anon_sym_bit_DASHxor] = ACTIONS(940), + [anon_sym_bit_DASHor] = ACTIONS(940), + [anon_sym_and] = ACTIONS(940), + [anon_sym_xor] = ACTIONS(940), + [anon_sym_or] = ACTIONS(940), + [anon_sym_DOT_DOT2] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(3366), + [anon_sym_DOT_DOT_EQ] = ACTIONS(938), + [anon_sym_DOT_DOT_LT] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(965), + [anon_sym_DOT_DOT_LT2] = ACTIONS(965), + [anon_sym_null] = ACTIONS(940), + [anon_sym_true] = ACTIONS(940), + [anon_sym_false] = ACTIONS(940), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(940), + [anon_sym_DOT2] = ACTIONS(938), + [aux_sym__val_number_decimal_token3] = ACTIONS(940), + [aux_sym__val_number_token1] = ACTIONS(940), + [aux_sym__val_number_token2] = ACTIONS(940), + [aux_sym__val_number_token3] = ACTIONS(940), + [aux_sym__val_number_token4] = ACTIONS(940), + [aux_sym__val_number_token5] = ACTIONS(940), + [aux_sym__val_number_token6] = ACTIONS(940), + [anon_sym_0b] = ACTIONS(938), + [sym_filesize_unit] = ACTIONS(3368), + [sym_duration_unit] = ACTIONS(3370), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = ACTIONS(940), + [anon_sym_DQUOTE] = ACTIONS(940), + [sym__str_single_quotes] = ACTIONS(940), + [sym__str_back_ticks] = ACTIONS(940), + [anon_sym_err_GT] = ACTIONS(940), + [anon_sym_out_GT] = ACTIONS(940), + [anon_sym_e_GT] = ACTIONS(940), + [anon_sym_o_GT] = ACTIONS(940), + [anon_sym_err_PLUSout_GT] = ACTIONS(940), + [anon_sym_out_PLUSerr_GT] = ACTIONS(940), + [anon_sym_o_PLUSe_GT] = ACTIONS(940), + [anon_sym_e_PLUSo_GT] = ACTIONS(940), + [aux_sym_unquoted_token1] = ACTIONS(938), + [aux_sym_unquoted_token5] = ACTIONS(3252), + [anon_sym_POUND] = ACTIONS(3), + }, + [947] = { + [sym__immediate_decimal] = STATE(10080), + [sym_comment] = STATE(947), + [anon_sym_export] = ACTIONS(920), + [anon_sym_alias] = ACTIONS(920), + [anon_sym_let] = ACTIONS(920), + [anon_sym_let_DASHenv] = ACTIONS(920), + [anon_sym_mut] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(920), + [sym_cmd_identifier] = ACTIONS(920), + [anon_sym_LF] = ACTIONS(922), + [anon_sym_def] = ACTIONS(920), + [anon_sym_export_DASHenv] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym_module] = ACTIONS(920), + [anon_sym_use] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_RPAREN] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_error] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_loop] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_match] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_RBRACE] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_try] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_source] = ACTIONS(920), + [anon_sym_source_DASHenv] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_hide] = ACTIONS(920), + [anon_sym_hide_DASHenv] = ACTIONS(920), + [anon_sym_overlay] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_where] = ACTIONS(920), + [anon_sym_not] = ACTIONS(920), + [anon_sym_DOT] = ACTIONS(967), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [aux_sym__immediate_decimal_token1] = ACTIONS(969), + [aux_sym__immediate_decimal_token3] = ACTIONS(969), + [aux_sym__immediate_decimal_token4] = ACTIONS(971), + [anon_sym_null] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), + [anon_sym_CARET] = ACTIONS(920), + [aux_sym_unquoted_token4] = ACTIONS(3308), + [anon_sym_POUND] = ACTIONS(113), + }, + [948] = { + [sym__command_name] = STATE(2317), + [sym_scope_pattern] = STATE(2359), + [sym_wild_card] = STATE(2361), + [sym_command_list] = STATE(2391), + [sym_val_string] = STATE(2033), + [sym__str_double_quotes] = STATE(2196), + [sym_comment] = STATE(948), + [anon_sym_export] = ACTIONS(3372), + [anon_sym_alias] = ACTIONS(3372), + [anon_sym_let] = ACTIONS(3372), + [anon_sym_let_DASHenv] = ACTIONS(3372), + [anon_sym_mut] = ACTIONS(3372), + [anon_sym_const] = ACTIONS(3372), + [anon_sym_SEMI] = ACTIONS(3372), + [sym_cmd_identifier] = ACTIONS(3374), + [anon_sym_LF] = ACTIONS(3376), + [anon_sym_def] = ACTIONS(3372), + [anon_sym_export_DASHenv] = ACTIONS(3372), + [anon_sym_extern] = ACTIONS(3372), + [anon_sym_module] = ACTIONS(3372), + [anon_sym_use] = ACTIONS(3372), + [anon_sym_LBRACK] = ACTIONS(3378), + [anon_sym_LPAREN] = ACTIONS(3372), + [anon_sym_RPAREN] = ACTIONS(3372), + [anon_sym_DOLLAR] = ACTIONS(3372), + [anon_sym_error] = ACTIONS(3372), + [anon_sym_DASH] = ACTIONS(3372), + [anon_sym_break] = ACTIONS(3372), + [anon_sym_continue] = ACTIONS(3372), + [anon_sym_for] = ACTIONS(3372), + [anon_sym_loop] = ACTIONS(3372), + [anon_sym_while] = ACTIONS(3372), + [anon_sym_do] = ACTIONS(3372), + [anon_sym_if] = ACTIONS(3372), + [anon_sym_match] = ACTIONS(3372), + [anon_sym_LBRACE] = ACTIONS(3372), + [anon_sym_RBRACE] = ACTIONS(3372), + [anon_sym_DOT_DOT] = ACTIONS(3372), + [anon_sym_try] = ACTIONS(3372), + [anon_sym_return] = ACTIONS(3372), + [anon_sym_source] = ACTIONS(3372), + [anon_sym_source_DASHenv] = ACTIONS(3372), + [anon_sym_register] = ACTIONS(3372), + [anon_sym_hide] = ACTIONS(3372), + [anon_sym_hide_DASHenv] = ACTIONS(3372), + [anon_sym_overlay] = ACTIONS(3372), + [anon_sym_STAR] = ACTIONS(3380), + [anon_sym_where] = ACTIONS(3372), + [anon_sym_not] = ACTIONS(3372), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3372), + [anon_sym_DOT_DOT_LT] = ACTIONS(3372), + [anon_sym_null] = ACTIONS(3372), + [anon_sym_true] = ACTIONS(3372), + [anon_sym_false] = ACTIONS(3372), + [aux_sym__val_number_decimal_token1] = ACTIONS(3372), + [aux_sym__val_number_decimal_token2] = ACTIONS(3372), + [anon_sym_DOT2] = ACTIONS(3372), + [aux_sym__val_number_decimal_token3] = ACTIONS(3372), + [aux_sym__val_number_token1] = ACTIONS(3372), + [aux_sym__val_number_token2] = ACTIONS(3372), + [aux_sym__val_number_token3] = ACTIONS(3372), + [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(3372), + [anon_sym_0o] = ACTIONS(3372), + [anon_sym_0x] = ACTIONS(3372), + [sym_val_date] = ACTIONS(3372), + [anon_sym_DQUOTE] = ACTIONS(3382), + [sym__str_single_quotes] = ACTIONS(3384), + [sym__str_back_ticks] = ACTIONS(3384), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3372), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3372), + [anon_sym_CARET] = ACTIONS(3372), + [anon_sym_POUND] = ACTIONS(113), + }, + [949] = { + [sym_cell_path] = STATE(1176), + [sym_path] = STATE(950), + [sym_comment] = STATE(949), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_COMMA] = ACTIONS(1004), + [anon_sym_RBRACK] = ACTIONS(1004), + [anon_sym_LPAREN] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1004), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1004), + [anon_sym_PLUS_PLUS] = ACTIONS(1004), + [anon_sym_SLASH] = ACTIONS(1002), + [anon_sym_mod] = ACTIONS(1004), + [anon_sym_SLASH_SLASH] = ACTIONS(1004), + [anon_sym_PLUS] = ACTIONS(1002), + [anon_sym_bit_DASHshl] = ACTIONS(1004), + [anon_sym_bit_DASHshr] = ACTIONS(1004), + [anon_sym_EQ_EQ] = ACTIONS(1004), + [anon_sym_BANG_EQ] = ACTIONS(1004), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ] = ACTIONS(1004), + [anon_sym_GT_EQ] = ACTIONS(1004), + [anon_sym_not_DASHin] = ACTIONS(1004), + [anon_sym_starts_DASHwith] = ACTIONS(1004), + [anon_sym_ends_DASHwith] = ACTIONS(1004), + [anon_sym_EQ_TILDE] = ACTIONS(1004), + [anon_sym_BANG_TILDE] = ACTIONS(1004), + [anon_sym_bit_DASHand] = ACTIONS(1004), + [anon_sym_bit_DASHxor] = ACTIONS(1004), + [anon_sym_bit_DASHor] = ACTIONS(1004), + [anon_sym_and] = ACTIONS(1004), + [anon_sym_xor] = ACTIONS(1004), + [anon_sym_or] = ACTIONS(1004), + [anon_sym_DOT_DOT2] = ACTIONS(1002), + [anon_sym_DOT] = ACTIONS(3386), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1004), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1004), + [anon_sym_null] = ACTIONS(1004), + [anon_sym_true] = ACTIONS(1004), + [anon_sym_false] = ACTIONS(1004), + [aux_sym__val_number_decimal_token1] = ACTIONS(1002), + [aux_sym__val_number_decimal_token2] = ACTIONS(1004), + [anon_sym_DOT2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1004), + [anon_sym_DQUOTE] = ACTIONS(1004), + [sym__str_single_quotes] = ACTIONS(1004), + [sym__str_back_ticks] = ACTIONS(1004), + [anon_sym_err_GT] = ACTIONS(1004), + [anon_sym_out_GT] = ACTIONS(1004), + [anon_sym_e_GT] = ACTIONS(1004), + [anon_sym_o_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT] = ACTIONS(1004), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1002), + [anon_sym_POUND] = ACTIONS(3), + }, + [950] = { + [sym_path] = STATE(1077), + [sym_comment] = STATE(950), + [aux_sym_cell_path_repeat1] = STATE(951), + [anon_sym_LBRACK] = ACTIONS(1012), + [anon_sym_COMMA] = ACTIONS(1012), + [anon_sym_RBRACK] = ACTIONS(1012), + [anon_sym_LPAREN] = ACTIONS(1012), + [anon_sym_DOLLAR] = ACTIONS(1012), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1012), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1012), + [anon_sym_PLUS_PLUS] = ACTIONS(1012), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1012), + [anon_sym_SLASH_SLASH] = ACTIONS(1012), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1012), + [anon_sym_bit_DASHshr] = ACTIONS(1012), + [anon_sym_EQ_EQ] = ACTIONS(1012), + [anon_sym_BANG_EQ] = ACTIONS(1012), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1012), + [anon_sym_GT_EQ] = ACTIONS(1012), + [anon_sym_not_DASHin] = ACTIONS(1012), + [anon_sym_starts_DASHwith] = ACTIONS(1012), + [anon_sym_ends_DASHwith] = ACTIONS(1012), + [anon_sym_EQ_TILDE] = ACTIONS(1012), + [anon_sym_BANG_TILDE] = ACTIONS(1012), + [anon_sym_bit_DASHand] = ACTIONS(1012), + [anon_sym_bit_DASHxor] = ACTIONS(1012), + [anon_sym_bit_DASHor] = ACTIONS(1012), + [anon_sym_and] = ACTIONS(1012), + [anon_sym_xor] = ACTIONS(1012), + [anon_sym_or] = ACTIONS(1012), + [anon_sym_DOT_DOT2] = ACTIONS(1010), + [anon_sym_DOT] = ACTIONS(3386), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), + [anon_sym_null] = ACTIONS(1012), + [anon_sym_true] = ACTIONS(1012), + [anon_sym_false] = ACTIONS(1012), + [aux_sym__val_number_decimal_token1] = ACTIONS(1010), + [aux_sym__val_number_decimal_token2] = ACTIONS(1012), + [anon_sym_DOT2] = ACTIONS(1010), + [aux_sym__val_number_decimal_token3] = 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(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1012), + [anon_sym_DQUOTE] = ACTIONS(1012), + [sym__str_single_quotes] = ACTIONS(1012), + [sym__str_back_ticks] = ACTIONS(1012), + [anon_sym_err_GT] = ACTIONS(1012), + [anon_sym_out_GT] = ACTIONS(1012), + [anon_sym_e_GT] = ACTIONS(1012), + [anon_sym_o_GT] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT] = ACTIONS(1012), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1010), + [anon_sym_POUND] = ACTIONS(3), + }, + [951] = { + [sym_path] = STATE(1077), + [sym_comment] = STATE(951), + [aux_sym_cell_path_repeat1] = STATE(952), + [anon_sym_LBRACK] = ACTIONS(1008), + [anon_sym_COMMA] = ACTIONS(1008), + [anon_sym_RBRACK] = ACTIONS(1008), + [anon_sym_LPAREN] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1008), + [anon_sym_GT] = ACTIONS(1006), + [anon_sym_DASH_DASH] = ACTIONS(1008), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_in] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(1008), + [anon_sym_DOT_DOT] = ACTIONS(1006), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_STAR_STAR] = ACTIONS(1008), + [anon_sym_PLUS_PLUS] = ACTIONS(1008), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_mod] = ACTIONS(1008), + [anon_sym_SLASH_SLASH] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_bit_DASHshl] = ACTIONS(1008), + [anon_sym_bit_DASHshr] = ACTIONS(1008), + [anon_sym_EQ_EQ] = ACTIONS(1008), + [anon_sym_BANG_EQ] = ACTIONS(1008), + [anon_sym_LT2] = ACTIONS(1006), + [anon_sym_LT_EQ] = ACTIONS(1008), + [anon_sym_GT_EQ] = ACTIONS(1008), + [anon_sym_not_DASHin] = ACTIONS(1008), + [anon_sym_starts_DASHwith] = ACTIONS(1008), + [anon_sym_ends_DASHwith] = ACTIONS(1008), + [anon_sym_EQ_TILDE] = ACTIONS(1008), + [anon_sym_BANG_TILDE] = ACTIONS(1008), + [anon_sym_bit_DASHand] = ACTIONS(1008), + [anon_sym_bit_DASHxor] = ACTIONS(1008), + [anon_sym_bit_DASHor] = ACTIONS(1008), + [anon_sym_and] = ACTIONS(1008), + [anon_sym_xor] = ACTIONS(1008), + [anon_sym_or] = ACTIONS(1008), + [anon_sym_DOT_DOT2] = ACTIONS(1006), + [anon_sym_DOT] = ACTIONS(3386), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), + [anon_sym_DOT_DOT_LT] = ACTIONS(1006), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), + [anon_sym_null] = ACTIONS(1008), + [anon_sym_true] = ACTIONS(1008), + [anon_sym_false] = ACTIONS(1008), + [aux_sym__val_number_decimal_token1] = ACTIONS(1006), + [aux_sym__val_number_decimal_token2] = ACTIONS(1008), + [anon_sym_DOT2] = ACTIONS(1006), + [aux_sym__val_number_decimal_token3] = ACTIONS(1008), + [aux_sym__val_number_token1] = ACTIONS(1008), + [aux_sym__val_number_token2] = ACTIONS(1008), + [aux_sym__val_number_token3] = ACTIONS(1008), + [aux_sym__val_number_token4] = ACTIONS(1008), + [aux_sym__val_number_token5] = ACTIONS(1008), + [aux_sym__val_number_token6] = ACTIONS(1008), + [anon_sym_0b] = ACTIONS(1006), + [anon_sym_0o] = ACTIONS(1006), + [anon_sym_0x] = ACTIONS(1006), + [sym_val_date] = ACTIONS(1008), + [anon_sym_DQUOTE] = ACTIONS(1008), + [sym__str_single_quotes] = ACTIONS(1008), + [sym__str_back_ticks] = ACTIONS(1008), + [anon_sym_err_GT] = ACTIONS(1008), + [anon_sym_out_GT] = ACTIONS(1008), + [anon_sym_e_GT] = ACTIONS(1008), + [anon_sym_o_GT] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT] = ACTIONS(1008), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1006), + [anon_sym_POUND] = ACTIONS(3), + }, + [952] = { + [sym_path] = STATE(1077), + [sym_comment] = STATE(952), + [aux_sym_cell_path_repeat1] = STATE(952), + [anon_sym_LBRACK] = ACTIONS(987), + [anon_sym_COMMA] = ACTIONS(987), + [anon_sym_RBRACK] = ACTIONS(987), + [anon_sym_LPAREN] = ACTIONS(987), + [anon_sym_DOLLAR] = ACTIONS(987), + [anon_sym_GT] = ACTIONS(985), + [anon_sym_DASH_DASH] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_in] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(987), + [anon_sym_DOT_DOT] = ACTIONS(985), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_STAR_STAR] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(987), + [anon_sym_SLASH] = ACTIONS(985), + [anon_sym_mod] = ACTIONS(987), + [anon_sym_SLASH_SLASH] = ACTIONS(987), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_bit_DASHshl] = ACTIONS(987), + [anon_sym_bit_DASHshr] = ACTIONS(987), + [anon_sym_EQ_EQ] = ACTIONS(987), + [anon_sym_BANG_EQ] = ACTIONS(987), + [anon_sym_LT2] = ACTIONS(985), + [anon_sym_LT_EQ] = ACTIONS(987), + [anon_sym_GT_EQ] = ACTIONS(987), + [anon_sym_not_DASHin] = ACTIONS(987), + [anon_sym_starts_DASHwith] = ACTIONS(987), + [anon_sym_ends_DASHwith] = ACTIONS(987), + [anon_sym_EQ_TILDE] = ACTIONS(987), + [anon_sym_BANG_TILDE] = ACTIONS(987), + [anon_sym_bit_DASHand] = ACTIONS(987), [anon_sym_bit_DASHxor] = ACTIONS(987), [anon_sym_bit_DASHor] = ACTIONS(987), [anon_sym_and] = ACTIONS(987), [anon_sym_xor] = ACTIONS(987), [anon_sym_or] = ACTIONS(987), - [anon_sym_DOT] = ACTIONS(1705), - [aux_sym__val_number_decimal_token1] = ACTIONS(987), - [aux_sym__val_number_decimal_token2] = ACTIONS(989), - [anon_sym_DOT2] = ACTIONS(987), - [aux_sym__val_number_decimal_token3] = ACTIONS(989), - [aux_sym__val_number_token1] = ACTIONS(989), - [aux_sym__val_number_token2] = ACTIONS(989), - [aux_sym__val_number_token3] = ACTIONS(989), + [anon_sym_DOT_DOT2] = ACTIONS(985), + [anon_sym_DOT] = ACTIONS(3388), + [anon_sym_DOT_DOT_EQ] = ACTIONS(985), + [anon_sym_DOT_DOT_LT] = ACTIONS(985), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(987), + [anon_sym_DOT_DOT_LT2] = ACTIONS(987), + [anon_sym_null] = ACTIONS(987), + [anon_sym_true] = ACTIONS(987), + [anon_sym_false] = ACTIONS(987), + [aux_sym__val_number_decimal_token1] = ACTIONS(985), + [aux_sym__val_number_decimal_token2] = ACTIONS(987), + [anon_sym_DOT2] = ACTIONS(985), + [aux_sym__val_number_decimal_token3] = ACTIONS(987), + [aux_sym__val_number_token1] = ACTIONS(987), + [aux_sym__val_number_token2] = ACTIONS(987), + [aux_sym__val_number_token3] = ACTIONS(987), [aux_sym__val_number_token4] = ACTIONS(987), - [aux_sym__val_number_token5] = ACTIONS(989), + [aux_sym__val_number_token5] = ACTIONS(987), [aux_sym__val_number_token6] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(989), - [sym__str_single_quotes] = ACTIONS(989), - [sym__str_back_ticks] = ACTIONS(989), - [aux_sym__record_key_token2] = ACTIONS(987), + [anon_sym_0b] = ACTIONS(985), + [anon_sym_0o] = ACTIONS(985), + [anon_sym_0x] = ACTIONS(985), + [sym_val_date] = ACTIONS(987), + [anon_sym_DQUOTE] = ACTIONS(987), + [sym__str_single_quotes] = ACTIONS(987), + [sym__str_back_ticks] = ACTIONS(987), + [anon_sym_err_GT] = ACTIONS(987), + [anon_sym_out_GT] = ACTIONS(987), + [anon_sym_e_GT] = ACTIONS(987), + [anon_sym_o_GT] = ACTIONS(987), + [anon_sym_err_PLUSout_GT] = ACTIONS(987), + [anon_sym_out_PLUSerr_GT] = ACTIONS(987), + [anon_sym_o_PLUSe_GT] = ACTIONS(987), + [anon_sym_e_PLUSo_GT] = ACTIONS(987), + [aux_sym__unquoted_in_list_token1] = ACTIONS(985), [anon_sym_POUND] = ACTIONS(3), }, - [833] = { - [sym_path] = STATE(871), - [sym_comment] = STATE(833), - [aux_sym_cell_path_repeat1] = STATE(834), + [953] = { + [sym_comment] = STATE(953), + [anon_sym_LBRACK] = ACTIONS(1024), + [anon_sym_COMMA] = ACTIONS(1024), + [anon_sym_RBRACK] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_GT] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym_DOT_DOT] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(3391), + [anon_sym_STAR_STAR] = ACTIONS(1024), + [anon_sym_PLUS_PLUS] = ACTIONS(1024), + [anon_sym_SLASH] = ACTIONS(1024), + [anon_sym_mod] = ACTIONS(1024), + [anon_sym_SLASH_SLASH] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_bit_DASHshl] = ACTIONS(1024), + [anon_sym_bit_DASHshr] = ACTIONS(1024), + [anon_sym_EQ_EQ] = ACTIONS(1024), + [anon_sym_BANG_EQ] = ACTIONS(1024), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ] = ACTIONS(1024), + [anon_sym_GT_EQ] = ACTIONS(1024), + [anon_sym_not_DASHin] = ACTIONS(1024), + [anon_sym_starts_DASHwith] = ACTIONS(1024), + [anon_sym_ends_DASHwith] = ACTIONS(1024), + [anon_sym_EQ_TILDE] = ACTIONS(1024), + [anon_sym_BANG_TILDE] = ACTIONS(1024), + [anon_sym_bit_DASHand] = ACTIONS(1024), + [anon_sym_bit_DASHxor] = ACTIONS(1024), + [anon_sym_bit_DASHor] = ACTIONS(1024), + [anon_sym_and] = ACTIONS(1024), + [anon_sym_xor] = ACTIONS(1024), + [anon_sym_or] = ACTIONS(1024), + [anon_sym_DOT_DOT2] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1026), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1026), + [anon_sym_null] = ACTIONS(1024), + [anon_sym_true] = ACTIONS(1024), + [anon_sym_false] = ACTIONS(1024), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1024), + [aux_sym__val_number_token1] = ACTIONS(1024), + [aux_sym__val_number_token2] = ACTIONS(1024), + [aux_sym__val_number_token3] = ACTIONS(1024), + [aux_sym__val_number_token4] = ACTIONS(1024), + [aux_sym__val_number_token5] = ACTIONS(1024), + [aux_sym__val_number_token6] = ACTIONS(1024), + [anon_sym_0b] = ACTIONS(1024), + [anon_sym_0o] = ACTIONS(1024), + [anon_sym_0x] = ACTIONS(1024), + [sym_val_date] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym__str_single_quotes] = ACTIONS(1024), + [sym__str_back_ticks] = ACTIONS(1024), + [sym__entry_separator] = ACTIONS(1026), + [anon_sym_err_GT] = ACTIONS(1024), + [anon_sym_out_GT] = ACTIONS(1024), + [anon_sym_e_GT] = ACTIONS(1024), + [anon_sym_o_GT] = ACTIONS(1024), + [anon_sym_err_PLUSout_GT] = ACTIONS(1024), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1024), + [anon_sym_o_PLUSe_GT] = ACTIONS(1024), + [anon_sym_e_PLUSo_GT] = ACTIONS(1024), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1024), + [anon_sym_POUND] = ACTIONS(113), + }, + [954] = { + [sym_comment] = STATE(954), + [anon_sym_LBRACK] = ACTIONS(1024), + [anon_sym_COMMA] = ACTIONS(1024), + [anon_sym_RBRACK] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_GT] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym_DOT_DOT] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(3391), + [anon_sym_STAR_STAR] = ACTIONS(1024), + [anon_sym_PLUS_PLUS] = ACTIONS(1024), + [anon_sym_SLASH] = ACTIONS(1024), + [anon_sym_mod] = ACTIONS(1024), + [anon_sym_SLASH_SLASH] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_bit_DASHshl] = ACTIONS(1024), + [anon_sym_bit_DASHshr] = ACTIONS(1024), + [anon_sym_EQ_EQ] = ACTIONS(1024), + [anon_sym_BANG_EQ] = ACTIONS(1024), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ] = ACTIONS(1024), + [anon_sym_GT_EQ] = ACTIONS(1024), + [anon_sym_not_DASHin] = ACTIONS(1024), + [anon_sym_starts_DASHwith] = ACTIONS(1024), + [anon_sym_ends_DASHwith] = ACTIONS(1024), + [anon_sym_EQ_TILDE] = ACTIONS(1024), + [anon_sym_BANG_TILDE] = ACTIONS(1024), + [anon_sym_bit_DASHand] = ACTIONS(1024), + [anon_sym_bit_DASHxor] = ACTIONS(1024), + [anon_sym_bit_DASHor] = ACTIONS(1024), + [anon_sym_and] = ACTIONS(1024), + [anon_sym_xor] = ACTIONS(1024), + [anon_sym_or] = ACTIONS(1024), + [anon_sym_DOT_DOT2] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1026), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1026), + [anon_sym_null] = ACTIONS(1024), + [anon_sym_true] = ACTIONS(1024), + [anon_sym_false] = ACTIONS(1024), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1024), + [aux_sym__val_number_token1] = ACTIONS(1024), + [aux_sym__val_number_token2] = ACTIONS(1024), + [aux_sym__val_number_token3] = ACTIONS(1024), + [aux_sym__val_number_token4] = ACTIONS(1024), + [aux_sym__val_number_token5] = ACTIONS(1024), + [aux_sym__val_number_token6] = ACTIONS(1024), + [anon_sym_0b] = ACTIONS(1024), + [anon_sym_0o] = ACTIONS(1024), + [anon_sym_0x] = ACTIONS(1024), + [sym_val_date] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym__str_single_quotes] = ACTIONS(1024), + [sym__str_back_ticks] = ACTIONS(1024), + [sym__entry_separator] = ACTIONS(1026), + [anon_sym_err_GT] = ACTIONS(1024), + [anon_sym_out_GT] = ACTIONS(1024), + [anon_sym_e_GT] = ACTIONS(1024), + [anon_sym_o_GT] = ACTIONS(1024), + [anon_sym_err_PLUSout_GT] = ACTIONS(1024), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1024), + [anon_sym_o_PLUSe_GT] = ACTIONS(1024), + [anon_sym_e_PLUSo_GT] = ACTIONS(1024), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1024), + [anon_sym_POUND] = ACTIONS(113), + }, + [955] = { + [sym_path] = STATE(1083), + [sym_comment] = STATE(955), + [aux_sym_cell_path_repeat1] = STATE(958), + [ts_builtin_sym_end] = ACTIONS(1008), [anon_sym_export] = ACTIONS(1006), [anon_sym_alias] = ACTIONS(1006), [anon_sym_let] = ACTIONS(1006), [anon_sym_let_DASHenv] = ACTIONS(1006), [anon_sym_mut] = ACTIONS(1006), [anon_sym_const] = ACTIONS(1006), + [anon_sym_SEMI] = ACTIONS(1006), [sym_cmd_identifier] = ACTIONS(1006), + [anon_sym_LF] = ACTIONS(1008), [anon_sym_def] = ACTIONS(1006), [anon_sym_export_DASHenv] = ACTIONS(1006), [anon_sym_extern] = ACTIONS(1006), [anon_sym_module] = ACTIONS(1006), [anon_sym_use] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1008), - [anon_sym_DOLLAR] = ACTIONS(1008), + [anon_sym_LBRACK] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_error] = ACTIONS(1006), - [anon_sym_list] = ACTIONS(1006), - [anon_sym_GT] = ACTIONS(1006), + [anon_sym_DASH_DASH] = ACTIONS(1006), [anon_sym_DASH] = ACTIONS(1006), [anon_sym_break] = ACTIONS(1006), [anon_sym_continue] = ACTIONS(1006), [anon_sym_for] = ACTIONS(1006), - [anon_sym_in] = ACTIONS(1006), [anon_sym_loop] = ACTIONS(1006), - [anon_sym_make] = ACTIONS(1006), [anon_sym_while] = ACTIONS(1006), [anon_sym_do] = ACTIONS(1006), [anon_sym_if] = ACTIONS(1006), - [anon_sym_else] = ACTIONS(1006), [anon_sym_match] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1008), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_DOT_DOT] = ACTIONS(1006), [anon_sym_try] = ACTIONS(1006), - [anon_sym_catch] = ACTIONS(1006), [anon_sym_return] = ACTIONS(1006), [anon_sym_source] = ACTIONS(1006), [anon_sym_source_DASHenv] = ACTIONS(1006), @@ -181524,34 +184401,2553 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(1006), [anon_sym_hide_DASHenv] = ACTIONS(1006), [anon_sym_overlay] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1006), [anon_sym_as] = ACTIONS(1006), + [anon_sym_where] = ACTIONS(1006), + [anon_sym_not] = ACTIONS(1006), + [anon_sym_DOT_DOT2] = ACTIONS(1006), + [anon_sym_DOT] = ACTIONS(3393), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), + [anon_sym_DOT_DOT_LT] = ACTIONS(1006), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), + [anon_sym_null] = ACTIONS(1006), + [anon_sym_true] = ACTIONS(1006), + [anon_sym_false] = ACTIONS(1006), + [aux_sym__val_number_decimal_token1] = ACTIONS(1006), + [aux_sym__val_number_decimal_token2] = ACTIONS(1006), + [anon_sym_DOT2] = ACTIONS(1006), + [aux_sym__val_number_decimal_token3] = ACTIONS(1006), + [aux_sym__val_number_token1] = ACTIONS(1006), + [aux_sym__val_number_token2] = ACTIONS(1006), + [aux_sym__val_number_token3] = ACTIONS(1006), + [aux_sym__val_number_token4] = ACTIONS(1006), + [aux_sym__val_number_token5] = ACTIONS(1006), + [aux_sym__val_number_token6] = ACTIONS(1006), + [anon_sym_0b] = ACTIONS(1006), + [anon_sym_0o] = ACTIONS(1006), + [anon_sym_0x] = ACTIONS(1006), + [sym_val_date] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym__str_single_quotes] = ACTIONS(1006), + [sym__str_back_ticks] = ACTIONS(1006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1006), + [anon_sym_CARET] = ACTIONS(1006), + [anon_sym_POUND] = ACTIONS(113), + }, + [956] = { + [sym__command_name] = STATE(2317), + [sym_scope_pattern] = STATE(2274), + [sym_wild_card] = STATE(2361), + [sym_command_list] = STATE(2391), + [sym_val_string] = STATE(2033), + [sym__str_double_quotes] = STATE(2196), + [sym_comment] = STATE(956), + [anon_sym_export] = ACTIONS(3395), + [anon_sym_alias] = ACTIONS(3395), + [anon_sym_let] = ACTIONS(3395), + [anon_sym_let_DASHenv] = ACTIONS(3395), + [anon_sym_mut] = ACTIONS(3395), + [anon_sym_const] = ACTIONS(3395), + [anon_sym_SEMI] = ACTIONS(3395), + [sym_cmd_identifier] = ACTIONS(3374), + [anon_sym_LF] = ACTIONS(3397), + [anon_sym_def] = ACTIONS(3395), + [anon_sym_export_DASHenv] = ACTIONS(3395), + [anon_sym_extern] = ACTIONS(3395), + [anon_sym_module] = ACTIONS(3395), + [anon_sym_use] = ACTIONS(3395), + [anon_sym_LBRACK] = ACTIONS(3378), + [anon_sym_LPAREN] = ACTIONS(3395), + [anon_sym_RPAREN] = ACTIONS(3395), + [anon_sym_DOLLAR] = ACTIONS(3395), + [anon_sym_error] = ACTIONS(3395), + [anon_sym_DASH] = ACTIONS(3395), + [anon_sym_break] = ACTIONS(3395), + [anon_sym_continue] = ACTIONS(3395), + [anon_sym_for] = ACTIONS(3395), + [anon_sym_loop] = ACTIONS(3395), + [anon_sym_while] = ACTIONS(3395), + [anon_sym_do] = ACTIONS(3395), + [anon_sym_if] = ACTIONS(3395), + [anon_sym_match] = ACTIONS(3395), + [anon_sym_LBRACE] = ACTIONS(3395), + [anon_sym_RBRACE] = ACTIONS(3395), + [anon_sym_DOT_DOT] = ACTIONS(3395), + [anon_sym_try] = ACTIONS(3395), + [anon_sym_return] = ACTIONS(3395), + [anon_sym_source] = ACTIONS(3395), + [anon_sym_source_DASHenv] = ACTIONS(3395), + [anon_sym_register] = ACTIONS(3395), + [anon_sym_hide] = ACTIONS(3395), + [anon_sym_hide_DASHenv] = ACTIONS(3395), + [anon_sym_overlay] = ACTIONS(3395), + [anon_sym_STAR] = ACTIONS(3380), + [anon_sym_where] = ACTIONS(3395), + [anon_sym_not] = ACTIONS(3395), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3395), + [anon_sym_DOT_DOT_LT] = ACTIONS(3395), + [anon_sym_null] = ACTIONS(3395), + [anon_sym_true] = ACTIONS(3395), + [anon_sym_false] = ACTIONS(3395), + [aux_sym__val_number_decimal_token1] = ACTIONS(3395), + [aux_sym__val_number_decimal_token2] = ACTIONS(3395), + [anon_sym_DOT2] = ACTIONS(3395), + [aux_sym__val_number_decimal_token3] = ACTIONS(3395), + [aux_sym__val_number_token1] = ACTIONS(3395), + [aux_sym__val_number_token2] = ACTIONS(3395), + [aux_sym__val_number_token3] = ACTIONS(3395), + [aux_sym__val_number_token4] = ACTIONS(3395), + [aux_sym__val_number_token5] = ACTIONS(3395), + [aux_sym__val_number_token6] = ACTIONS(3395), + [anon_sym_0b] = ACTIONS(3395), + [anon_sym_0o] = ACTIONS(3395), + [anon_sym_0x] = ACTIONS(3395), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(3382), + [sym__str_single_quotes] = ACTIONS(3384), + [sym__str_back_ticks] = ACTIONS(3384), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3395), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3395), + [anon_sym_CARET] = ACTIONS(3395), + [anon_sym_POUND] = ACTIONS(113), + }, + [957] = { + [sym_comment] = STATE(957), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_alias] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_let_DASHenv] = ACTIONS(2229), + [anon_sym_mut] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2229), + [sym_cmd_identifier] = ACTIONS(2229), + [anon_sym_LF] = ACTIONS(2231), + [anon_sym_def] = ACTIONS(2229), + [anon_sym_export_DASHenv] = ACTIONS(2229), + [anon_sym_extern] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_RPAREN] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2229), + [anon_sym_error] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_loop] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_RBRACE] = ACTIONS(2229), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_source] = ACTIONS(2229), + [anon_sym_source_DASHenv] = ACTIONS(2229), + [anon_sym_register] = ACTIONS(2229), + [anon_sym_hide] = ACTIONS(2229), + [anon_sym_hide_DASHenv] = ACTIONS(2229), + [anon_sym_overlay] = ACTIONS(2229), + [anon_sym_as] = ACTIONS(2229), + [anon_sym_where] = ACTIONS(2229), + [anon_sym_not] = ACTIONS(2229), + [anon_sym_DOT_DOT2] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2229), + [anon_sym_DOT_DOT_LT] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2231), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2231), + [aux_sym__immediate_decimal_token1] = ACTIONS(3399), + [aux_sym__immediate_decimal_token2] = ACTIONS(3401), + [anon_sym_null] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [aux_sym__val_number_decimal_token1] = ACTIONS(2229), + [aux_sym__val_number_decimal_token2] = ACTIONS(2229), + [anon_sym_DOT2] = ACTIONS(2229), + [aux_sym__val_number_decimal_token3] = ACTIONS(2229), + [aux_sym__val_number_token1] = ACTIONS(2229), + [aux_sym__val_number_token2] = ACTIONS(2229), + [aux_sym__val_number_token3] = ACTIONS(2229), + [aux_sym__val_number_token4] = ACTIONS(2229), + [aux_sym__val_number_token5] = ACTIONS(2229), + [aux_sym__val_number_token6] = ACTIONS(2229), + [anon_sym_0b] = ACTIONS(2229), + [anon_sym_0o] = ACTIONS(2229), + [anon_sym_0x] = ACTIONS(2229), + [sym_val_date] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2229), + [anon_sym_CARET] = ACTIONS(2229), + [anon_sym_POUND] = ACTIONS(113), + }, + [958] = { + [sym_path] = STATE(1083), + [sym_comment] = STATE(958), + [aux_sym_cell_path_repeat1] = STATE(958), + [ts_builtin_sym_end] = ACTIONS(987), + [anon_sym_export] = ACTIONS(985), + [anon_sym_alias] = ACTIONS(985), + [anon_sym_let] = ACTIONS(985), + [anon_sym_let_DASHenv] = ACTIONS(985), + [anon_sym_mut] = ACTIONS(985), + [anon_sym_const] = ACTIONS(985), + [anon_sym_SEMI] = ACTIONS(985), + [sym_cmd_identifier] = ACTIONS(985), + [anon_sym_LF] = ACTIONS(987), + [anon_sym_def] = ACTIONS(985), + [anon_sym_export_DASHenv] = ACTIONS(985), + [anon_sym_extern] = ACTIONS(985), + [anon_sym_module] = ACTIONS(985), + [anon_sym_use] = ACTIONS(985), + [anon_sym_LBRACK] = ACTIONS(985), + [anon_sym_LPAREN] = ACTIONS(985), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_error] = ACTIONS(985), + [anon_sym_DASH_DASH] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_break] = ACTIONS(985), + [anon_sym_continue] = ACTIONS(985), + [anon_sym_for] = ACTIONS(985), + [anon_sym_loop] = ACTIONS(985), + [anon_sym_while] = ACTIONS(985), + [anon_sym_do] = ACTIONS(985), + [anon_sym_if] = ACTIONS(985), + [anon_sym_match] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(985), + [anon_sym_DOT_DOT] = ACTIONS(985), + [anon_sym_try] = ACTIONS(985), + [anon_sym_return] = ACTIONS(985), + [anon_sym_source] = ACTIONS(985), + [anon_sym_source_DASHenv] = ACTIONS(985), + [anon_sym_register] = ACTIONS(985), + [anon_sym_hide] = ACTIONS(985), + [anon_sym_hide_DASHenv] = ACTIONS(985), + [anon_sym_overlay] = ACTIONS(985), + [anon_sym_as] = ACTIONS(985), + [anon_sym_where] = ACTIONS(985), + [anon_sym_not] = ACTIONS(985), + [anon_sym_DOT_DOT2] = ACTIONS(985), + [anon_sym_DOT] = ACTIONS(3403), + [anon_sym_DOT_DOT_EQ] = ACTIONS(985), + [anon_sym_DOT_DOT_LT] = ACTIONS(985), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(987), + [anon_sym_DOT_DOT_LT2] = ACTIONS(987), + [anon_sym_null] = ACTIONS(985), + [anon_sym_true] = ACTIONS(985), + [anon_sym_false] = ACTIONS(985), + [aux_sym__val_number_decimal_token1] = ACTIONS(985), + [aux_sym__val_number_decimal_token2] = ACTIONS(985), + [anon_sym_DOT2] = ACTIONS(985), + [aux_sym__val_number_decimal_token3] = ACTIONS(985), + [aux_sym__val_number_token1] = ACTIONS(985), + [aux_sym__val_number_token2] = ACTIONS(985), + [aux_sym__val_number_token3] = ACTIONS(985), + [aux_sym__val_number_token4] = ACTIONS(985), + [aux_sym__val_number_token5] = ACTIONS(985), + [aux_sym__val_number_token6] = ACTIONS(985), + [anon_sym_0b] = ACTIONS(985), + [anon_sym_0o] = ACTIONS(985), + [anon_sym_0x] = ACTIONS(985), + [sym_val_date] = ACTIONS(985), + [anon_sym_DQUOTE] = ACTIONS(985), + [sym__str_single_quotes] = ACTIONS(985), + [sym__str_back_ticks] = ACTIONS(985), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(985), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(985), + [anon_sym_POUND] = ACTIONS(113), + }, + [959] = { + [sym_comment] = STATE(959), + [anon_sym_LBRACK] = ACTIONS(1033), + [anon_sym_COMMA] = ACTIONS(1033), + [anon_sym_RBRACK] = ACTIONS(1033), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1033), + [anon_sym_in] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_DOT_DOT] = ACTIONS(1033), + [anon_sym_STAR] = ACTIONS(1033), + [anon_sym_QMARK2] = ACTIONS(1033), + [anon_sym_STAR_STAR] = ACTIONS(1033), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_SLASH] = ACTIONS(1033), + [anon_sym_mod] = ACTIONS(1033), + [anon_sym_SLASH_SLASH] = ACTIONS(1033), + [anon_sym_PLUS] = ACTIONS(1033), + [anon_sym_bit_DASHshl] = ACTIONS(1033), + [anon_sym_bit_DASHshr] = ACTIONS(1033), + [anon_sym_EQ_EQ] = ACTIONS(1033), + [anon_sym_BANG_EQ] = ACTIONS(1033), + [anon_sym_LT2] = ACTIONS(1033), + [anon_sym_LT_EQ] = ACTIONS(1033), + [anon_sym_GT_EQ] = ACTIONS(1033), + [anon_sym_not_DASHin] = ACTIONS(1033), + [anon_sym_starts_DASHwith] = ACTIONS(1033), + [anon_sym_ends_DASHwith] = ACTIONS(1033), + [anon_sym_EQ_TILDE] = ACTIONS(1033), + [anon_sym_BANG_TILDE] = ACTIONS(1033), + [anon_sym_bit_DASHand] = ACTIONS(1033), + [anon_sym_bit_DASHxor] = ACTIONS(1033), + [anon_sym_bit_DASHor] = ACTIONS(1033), + [anon_sym_and] = ACTIONS(1033), + [anon_sym_xor] = ACTIONS(1033), + [anon_sym_or] = ACTIONS(1033), + [anon_sym_DOT_DOT2] = ACTIONS(1033), + [anon_sym_DOT] = ACTIONS(1033), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1033), + [anon_sym_DOT_DOT_LT] = ACTIONS(1033), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1035), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1035), + [anon_sym_null] = ACTIONS(1033), + [anon_sym_true] = ACTIONS(1033), + [anon_sym_false] = ACTIONS(1033), + [aux_sym__val_number_decimal_token1] = ACTIONS(1033), + [aux_sym__val_number_decimal_token2] = ACTIONS(1033), + [anon_sym_DOT2] = ACTIONS(1033), + [aux_sym__val_number_decimal_token3] = ACTIONS(1033), + [aux_sym__val_number_token1] = ACTIONS(1033), + [aux_sym__val_number_token2] = ACTIONS(1033), + [aux_sym__val_number_token3] = ACTIONS(1033), + [aux_sym__val_number_token4] = ACTIONS(1033), + [aux_sym__val_number_token5] = ACTIONS(1033), + [aux_sym__val_number_token6] = ACTIONS(1033), + [anon_sym_0b] = ACTIONS(1033), + [anon_sym_0o] = ACTIONS(1033), + [anon_sym_0x] = ACTIONS(1033), + [sym_val_date] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [sym__str_single_quotes] = ACTIONS(1033), + [sym__str_back_ticks] = ACTIONS(1033), + [sym__entry_separator] = ACTIONS(1035), + [anon_sym_err_GT] = ACTIONS(1033), + [anon_sym_out_GT] = ACTIONS(1033), + [anon_sym_e_GT] = ACTIONS(1033), + [anon_sym_o_GT] = ACTIONS(1033), + [anon_sym_err_PLUSout_GT] = ACTIONS(1033), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1033), + [anon_sym_o_PLUSe_GT] = ACTIONS(1033), + [anon_sym_e_PLUSo_GT] = ACTIONS(1033), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1033), + [anon_sym_POUND] = ACTIONS(113), + }, + [960] = { + [sym_comment] = STATE(960), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_alias] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_let_DASHenv] = ACTIONS(2229), + [anon_sym_mut] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2229), + [sym_cmd_identifier] = ACTIONS(2229), + [anon_sym_LF] = ACTIONS(2231), + [anon_sym_def] = ACTIONS(2229), + [anon_sym_export_DASHenv] = ACTIONS(2229), + [anon_sym_extern] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_RPAREN] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2229), + [anon_sym_error] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_loop] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_RBRACE] = ACTIONS(2229), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_source] = ACTIONS(2229), + [anon_sym_source_DASHenv] = ACTIONS(2229), + [anon_sym_register] = ACTIONS(2229), + [anon_sym_hide] = ACTIONS(2229), + [anon_sym_hide_DASHenv] = ACTIONS(2229), + [anon_sym_overlay] = ACTIONS(2229), + [anon_sym_as] = ACTIONS(2229), + [anon_sym_where] = ACTIONS(2229), + [anon_sym_not] = ACTIONS(2229), + [anon_sym_DOT_DOT2] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2229), + [anon_sym_DOT_DOT_LT] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2231), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2231), + [anon_sym_null] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [aux_sym__val_number_decimal_token1] = ACTIONS(2229), + [aux_sym__val_number_decimal_token2] = ACTIONS(2229), + [anon_sym_DOT2] = ACTIONS(2229), + [aux_sym__val_number_decimal_token3] = ACTIONS(2229), + [aux_sym__val_number_token1] = ACTIONS(2229), + [aux_sym__val_number_token2] = ACTIONS(2229), + [aux_sym__val_number_token3] = ACTIONS(2229), + [aux_sym__val_number_token4] = ACTIONS(2229), + [aux_sym__val_number_token5] = ACTIONS(2229), + [aux_sym__val_number_token6] = ACTIONS(2229), + [anon_sym_0b] = ACTIONS(2229), + [anon_sym_0o] = ACTIONS(2229), + [anon_sym_0x] = ACTIONS(2229), + [sym_val_date] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2229), + [anon_sym_CARET] = ACTIONS(2229), + [aux_sym_unquoted_token2] = ACTIONS(2229), + [anon_sym_POUND] = ACTIONS(113), + }, + [961] = { + [sym_comment] = STATE(961), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_COMMA] = ACTIONS(1020), + [anon_sym_RBRACK] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_GT] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1020), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_in] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_DOT_DOT] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_QMARK2] = ACTIONS(1020), + [anon_sym_STAR_STAR] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1020), + [anon_sym_SLASH] = ACTIONS(1020), + [anon_sym_mod] = ACTIONS(1020), + [anon_sym_SLASH_SLASH] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_bit_DASHshl] = ACTIONS(1020), + [anon_sym_bit_DASHshr] = ACTIONS(1020), + [anon_sym_EQ_EQ] = ACTIONS(1020), + [anon_sym_BANG_EQ] = ACTIONS(1020), + [anon_sym_LT2] = ACTIONS(1020), + [anon_sym_LT_EQ] = ACTIONS(1020), + [anon_sym_GT_EQ] = ACTIONS(1020), + [anon_sym_not_DASHin] = ACTIONS(1020), + [anon_sym_starts_DASHwith] = ACTIONS(1020), + [anon_sym_ends_DASHwith] = ACTIONS(1020), + [anon_sym_EQ_TILDE] = ACTIONS(1020), + [anon_sym_BANG_TILDE] = ACTIONS(1020), + [anon_sym_bit_DASHand] = ACTIONS(1020), + [anon_sym_bit_DASHxor] = ACTIONS(1020), + [anon_sym_bit_DASHor] = ACTIONS(1020), + [anon_sym_and] = ACTIONS(1020), + [anon_sym_xor] = ACTIONS(1020), + [anon_sym_or] = ACTIONS(1020), + [anon_sym_DOT_DOT2] = ACTIONS(1020), + [anon_sym_DOT] = ACTIONS(1020), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1020), + [anon_sym_DOT_DOT_LT] = ACTIONS(1020), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1022), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1022), + [anon_sym_null] = ACTIONS(1020), + [anon_sym_true] = ACTIONS(1020), + [anon_sym_false] = ACTIONS(1020), + [aux_sym__val_number_decimal_token1] = ACTIONS(1020), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [anon_sym_DOT2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1020), + [aux_sym__val_number_token1] = ACTIONS(1020), + [aux_sym__val_number_token2] = ACTIONS(1020), + [aux_sym__val_number_token3] = ACTIONS(1020), + [aux_sym__val_number_token4] = ACTIONS(1020), + [aux_sym__val_number_token5] = ACTIONS(1020), + [aux_sym__val_number_token6] = ACTIONS(1020), + [anon_sym_0b] = ACTIONS(1020), + [anon_sym_0o] = ACTIONS(1020), + [anon_sym_0x] = ACTIONS(1020), + [sym_val_date] = ACTIONS(1020), + [anon_sym_DQUOTE] = ACTIONS(1020), + [sym__str_single_quotes] = ACTIONS(1020), + [sym__str_back_ticks] = ACTIONS(1020), + [sym__entry_separator] = ACTIONS(1022), + [anon_sym_err_GT] = ACTIONS(1020), + [anon_sym_out_GT] = ACTIONS(1020), + [anon_sym_e_GT] = ACTIONS(1020), + [anon_sym_o_GT] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT] = ACTIONS(1020), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1020), + [anon_sym_POUND] = ACTIONS(113), + }, + [962] = { + [sym_comment] = STATE(962), + [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), + [anon_sym_SEMI] = ACTIONS(2362), + [sym_cmd_identifier] = ACTIONS(2362), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2362), + [anon_sym_LPAREN] = ACTIONS(2362), + [anon_sym_RPAREN] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2362), + [anon_sym_error] = ACTIONS(2362), + [anon_sym_DASH_DASH] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_break] = ACTIONS(2362), + [anon_sym_continue] = ACTIONS(2362), + [anon_sym_for] = ACTIONS(2362), + [anon_sym_loop] = ACTIONS(2362), + [anon_sym_while] = ACTIONS(2362), + [anon_sym_do] = ACTIONS(2362), + [anon_sym_if] = ACTIONS(2362), + [anon_sym_match] = ACTIONS(2362), + [anon_sym_LBRACE] = ACTIONS(2362), + [anon_sym_RBRACE] = ACTIONS(2362), + [anon_sym_DOT_DOT] = ACTIONS(2362), + [anon_sym_try] = 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_where] = ACTIONS(2362), + [anon_sym_not] = ACTIONS(2362), + [anon_sym_DOT_DOT2] = ACTIONS(2362), + [anon_sym_DOT] = ACTIONS(2362), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2362), + [anon_sym_DOT_DOT_LT] = ACTIONS(2362), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2364), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2364), + [anon_sym_null] = ACTIONS(2362), + [anon_sym_true] = ACTIONS(2362), + [anon_sym_false] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2362), + [aux_sym__val_number_decimal_token2] = ACTIONS(2362), + [anon_sym_DOT2] = ACTIONS(2362), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2362), + [anon_sym_0o] = ACTIONS(2362), + [anon_sym_0x] = ACTIONS(2362), + [sym_val_date] = 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_CARET] = ACTIONS(2362), + [aux_sym_unquoted_token2] = ACTIONS(2362), + [anon_sym_POUND] = ACTIONS(113), + }, + [963] = { + [sym_comment] = STATE(963), + [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), + [anon_sym_SEMI] = ACTIONS(2402), + [sym_cmd_identifier] = ACTIONS(2402), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2402), + [anon_sym_LPAREN] = ACTIONS(2402), + [anon_sym_RPAREN] = ACTIONS(2402), + [anon_sym_DOLLAR] = ACTIONS(2402), + [anon_sym_error] = ACTIONS(2402), + [anon_sym_DASH_DASH] = ACTIONS(2402), + [anon_sym_DASH] = ACTIONS(2402), + [anon_sym_break] = ACTIONS(2402), + [anon_sym_continue] = ACTIONS(2402), + [anon_sym_for] = ACTIONS(2402), + [anon_sym_loop] = ACTIONS(2402), + [anon_sym_while] = ACTIONS(2402), + [anon_sym_do] = ACTIONS(2402), + [anon_sym_if] = ACTIONS(2402), + [anon_sym_match] = ACTIONS(2402), + [anon_sym_LBRACE] = ACTIONS(2402), + [anon_sym_RBRACE] = ACTIONS(2402), + [anon_sym_DOT_DOT] = ACTIONS(2402), + [anon_sym_try] = 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_where] = ACTIONS(2402), + [anon_sym_not] = ACTIONS(2402), + [anon_sym_DOT_DOT2] = ACTIONS(2402), + [anon_sym_DOT] = ACTIONS(2402), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2402), + [anon_sym_DOT_DOT_LT] = ACTIONS(2402), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2404), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2404), + [anon_sym_null] = ACTIONS(2402), + [anon_sym_true] = ACTIONS(2402), + [anon_sym_false] = ACTIONS(2402), + [aux_sym__val_number_decimal_token1] = ACTIONS(2402), + [aux_sym__val_number_decimal_token2] = ACTIONS(2402), + [anon_sym_DOT2] = ACTIONS(2402), + [aux_sym__val_number_decimal_token3] = ACTIONS(2402), + [aux_sym__val_number_token1] = ACTIONS(2402), + [aux_sym__val_number_token2] = ACTIONS(2402), + [aux_sym__val_number_token3] = ACTIONS(2402), + [aux_sym__val_number_token4] = ACTIONS(2402), + [aux_sym__val_number_token5] = ACTIONS(2402), + [aux_sym__val_number_token6] = ACTIONS(2402), + [anon_sym_0b] = ACTIONS(2402), + [anon_sym_0o] = ACTIONS(2402), + [anon_sym_0x] = ACTIONS(2402), + [sym_val_date] = 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_CARET] = ACTIONS(2402), + [aux_sym_unquoted_token2] = ACTIONS(2402), + [anon_sym_POUND] = ACTIONS(113), + }, + [964] = { + [sym_comment] = STATE(964), + [ts_builtin_sym_end] = ACTIONS(2358), + [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), + [anon_sym_SEMI] = ACTIONS(2356), + [sym_cmd_identifier] = ACTIONS(2356), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2356), + [anon_sym_DOLLAR] = ACTIONS(2356), + [anon_sym_error] = ACTIONS(2356), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_loop] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_match] = ACTIONS(2356), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_DOT_DOT] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_source] = ACTIONS(2356), + [anon_sym_source_DASHenv] = ACTIONS(2356), + [anon_sym_register] = 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_where] = ACTIONS(2356), + [anon_sym_not] = ACTIONS(2356), + [anon_sym_DOT_DOT2] = ACTIONS(2356), + [anon_sym_DOT] = ACTIONS(2356), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2356), + [anon_sym_DOT_DOT_LT] = ACTIONS(2356), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2358), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2358), + [aux_sym__immediate_decimal_token2] = ACTIONS(3406), + [anon_sym_null] = ACTIONS(2356), + [anon_sym_true] = ACTIONS(2356), + [anon_sym_false] = ACTIONS(2356), + [aux_sym__val_number_decimal_token1] = ACTIONS(2356), + [aux_sym__val_number_decimal_token2] = ACTIONS(2356), + [anon_sym_DOT2] = ACTIONS(2356), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2356), + [anon_sym_0o] = ACTIONS(2356), + [anon_sym_0x] = ACTIONS(2356), + [sym_val_date] = 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_CARET] = ACTIONS(2356), + [aux_sym_unquoted_token2] = ACTIONS(2356), + [anon_sym_POUND] = ACTIONS(113), + }, + [965] = { + [sym_comment] = STATE(965), + [ts_builtin_sym_end] = ACTIONS(2231), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_alias] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_let_DASHenv] = ACTIONS(2229), + [anon_sym_mut] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2229), + [sym_cmd_identifier] = ACTIONS(2229), + [anon_sym_LF] = ACTIONS(2231), + [anon_sym_def] = ACTIONS(2229), + [anon_sym_export_DASHenv] = ACTIONS(2229), + [anon_sym_extern] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2229), + [anon_sym_error] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_loop] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_source] = ACTIONS(2229), + [anon_sym_source_DASHenv] = ACTIONS(2229), + [anon_sym_register] = ACTIONS(2229), + [anon_sym_hide] = ACTIONS(2229), + [anon_sym_hide_DASHenv] = ACTIONS(2229), + [anon_sym_overlay] = ACTIONS(2229), + [anon_sym_as] = ACTIONS(2229), + [anon_sym_where] = ACTIONS(2229), + [anon_sym_not] = ACTIONS(2229), + [anon_sym_DOT_DOT2] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2229), + [anon_sym_DOT_DOT_LT] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2231), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2231), + [aux_sym__immediate_decimal_token2] = ACTIONS(2606), + [anon_sym_null] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [aux_sym__val_number_decimal_token1] = ACTIONS(2229), + [aux_sym__val_number_decimal_token2] = ACTIONS(2229), + [anon_sym_DOT2] = ACTIONS(2229), + [aux_sym__val_number_decimal_token3] = ACTIONS(2229), + [aux_sym__val_number_token1] = ACTIONS(2229), + [aux_sym__val_number_token2] = ACTIONS(2229), + [aux_sym__val_number_token3] = ACTIONS(2229), + [aux_sym__val_number_token4] = ACTIONS(2229), + [aux_sym__val_number_token5] = ACTIONS(2229), + [aux_sym__val_number_token6] = ACTIONS(2229), + [anon_sym_0b] = ACTIONS(2229), + [anon_sym_0o] = ACTIONS(2229), + [anon_sym_0x] = ACTIONS(2229), + [sym_val_date] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2229), + [anon_sym_CARET] = ACTIONS(2229), + [aux_sym_unquoted_token2] = ACTIONS(2229), + [anon_sym_POUND] = ACTIONS(113), + }, + [966] = { + [sym_comment] = STATE(966), + [ts_builtin_sym_end] = ACTIONS(2364), + [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), + [anon_sym_SEMI] = ACTIONS(2362), + [sym_cmd_identifier] = ACTIONS(2362), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2362), + [anon_sym_LPAREN] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2362), + [anon_sym_error] = ACTIONS(2362), + [anon_sym_DASH_DASH] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_break] = ACTIONS(2362), + [anon_sym_continue] = ACTIONS(2362), + [anon_sym_for] = ACTIONS(2362), + [anon_sym_loop] = ACTIONS(2362), + [anon_sym_while] = ACTIONS(2362), + [anon_sym_do] = ACTIONS(2362), + [anon_sym_if] = ACTIONS(2362), + [anon_sym_match] = ACTIONS(2362), + [anon_sym_LBRACE] = ACTIONS(2362), + [anon_sym_DOT_DOT] = ACTIONS(2362), + [anon_sym_try] = 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_where] = ACTIONS(2362), + [anon_sym_not] = ACTIONS(2362), + [anon_sym_DOT_DOT2] = ACTIONS(2362), + [anon_sym_DOT] = ACTIONS(2362), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2362), + [anon_sym_DOT_DOT_LT] = ACTIONS(2362), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2364), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2364), + [aux_sym__immediate_decimal_token2] = ACTIONS(3408), + [anon_sym_null] = ACTIONS(2362), + [anon_sym_true] = ACTIONS(2362), + [anon_sym_false] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2362), + [aux_sym__val_number_decimal_token2] = ACTIONS(2362), + [anon_sym_DOT2] = ACTIONS(2362), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2362), + [anon_sym_0o] = ACTIONS(2362), + [anon_sym_0x] = ACTIONS(2362), + [sym_val_date] = 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_CARET] = ACTIONS(2362), + [aux_sym_unquoted_token2] = ACTIONS(2362), + [anon_sym_POUND] = ACTIONS(113), + }, + [967] = { + [sym_cell_path] = STATE(1149), + [sym_path] = STATE(1000), + [sym_comment] = STATE(967), + [ts_builtin_sym_end] = ACTIONS(1004), + [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), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [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_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = 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_where] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT2] = ACTIONS(1002), + [anon_sym_DOT] = ACTIONS(3393), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1004), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1004), + [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), + [anon_sym_DOT2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = 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(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_CARET] = ACTIONS(1002), + [anon_sym_POUND] = ACTIONS(113), + }, + [968] = { + [sym__flag] = STATE(1930), + [sym_short_flag] = STATE(1648), + [sym_long_flag] = STATE(1648), + [sym_long_flag_equals_value] = STATE(1632), + [sym_comment] = STATE(968), + [aux_sym_overlay_use_repeat1] = STATE(968), + [anon_sym_export] = ACTIONS(3410), + [anon_sym_alias] = ACTIONS(3410), + [anon_sym_let] = ACTIONS(3410), + [anon_sym_let_DASHenv] = ACTIONS(3410), + [anon_sym_mut] = ACTIONS(3410), + [anon_sym_const] = ACTIONS(3410), + [anon_sym_SEMI] = ACTIONS(3410), + [sym_cmd_identifier] = ACTIONS(3410), + [anon_sym_LF] = ACTIONS(3412), + [anon_sym_def] = ACTIONS(3410), + [anon_sym_export_DASHenv] = ACTIONS(3410), + [anon_sym_extern] = ACTIONS(3410), + [anon_sym_module] = ACTIONS(3410), + [anon_sym_use] = ACTIONS(3410), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_LPAREN] = ACTIONS(3410), + [anon_sym_RPAREN] = ACTIONS(3410), + [anon_sym_DOLLAR] = ACTIONS(3410), + [anon_sym_error] = ACTIONS(3410), + [anon_sym_DASH_DASH] = ACTIONS(3414), + [anon_sym_DASH] = ACTIONS(3417), + [anon_sym_break] = ACTIONS(3410), + [anon_sym_continue] = ACTIONS(3410), + [anon_sym_for] = ACTIONS(3410), + [anon_sym_loop] = ACTIONS(3410), + [anon_sym_while] = ACTIONS(3410), + [anon_sym_do] = ACTIONS(3410), + [anon_sym_if] = ACTIONS(3410), + [anon_sym_match] = ACTIONS(3410), + [anon_sym_LBRACE] = ACTIONS(3410), + [anon_sym_RBRACE] = ACTIONS(3410), + [anon_sym_DOT_DOT] = ACTIONS(3410), + [anon_sym_try] = ACTIONS(3410), + [anon_sym_return] = ACTIONS(3410), + [anon_sym_source] = ACTIONS(3410), + [anon_sym_source_DASHenv] = ACTIONS(3410), + [anon_sym_register] = ACTIONS(3410), + [anon_sym_hide] = ACTIONS(3410), + [anon_sym_hide_DASHenv] = ACTIONS(3410), + [anon_sym_overlay] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3410), + [anon_sym_where] = ACTIONS(3410), + [anon_sym_not] = ACTIONS(3410), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3410), + [anon_sym_DOT_DOT_LT] = ACTIONS(3410), + [anon_sym_null] = ACTIONS(3410), + [anon_sym_true] = ACTIONS(3410), + [anon_sym_false] = ACTIONS(3410), + [aux_sym__val_number_decimal_token1] = ACTIONS(3410), + [aux_sym__val_number_decimal_token2] = ACTIONS(3410), + [anon_sym_DOT2] = ACTIONS(3410), + [aux_sym__val_number_decimal_token3] = ACTIONS(3410), + [aux_sym__val_number_token1] = ACTIONS(3410), + [aux_sym__val_number_token2] = ACTIONS(3410), + [aux_sym__val_number_token3] = ACTIONS(3410), + [aux_sym__val_number_token4] = ACTIONS(3410), + [aux_sym__val_number_token5] = ACTIONS(3410), + [aux_sym__val_number_token6] = ACTIONS(3410), + [anon_sym_0b] = ACTIONS(3410), + [anon_sym_0o] = ACTIONS(3410), + [anon_sym_0x] = ACTIONS(3410), + [sym_val_date] = ACTIONS(3410), + [anon_sym_DQUOTE] = ACTIONS(3410), + [sym__str_single_quotes] = ACTIONS(3410), + [sym__str_back_ticks] = ACTIONS(3410), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3410), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3410), + [anon_sym_CARET] = ACTIONS(3410), + [anon_sym_POUND] = ACTIONS(113), + }, + [969] = { + [sym_comment] = STATE(969), + [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), + [anon_sym_SEMI] = ACTIONS(2356), + [sym_cmd_identifier] = ACTIONS(2356), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2356), + [anon_sym_RPAREN] = ACTIONS(2356), + [anon_sym_DOLLAR] = ACTIONS(2356), + [anon_sym_error] = ACTIONS(2356), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_loop] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_match] = ACTIONS(2356), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_RBRACE] = ACTIONS(2356), + [anon_sym_DOT_DOT] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_source] = ACTIONS(2356), + [anon_sym_source_DASHenv] = ACTIONS(2356), + [anon_sym_register] = 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_where] = ACTIONS(2356), + [anon_sym_not] = ACTIONS(2356), + [anon_sym_DOT_DOT2] = ACTIONS(2356), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2356), + [anon_sym_DOT_DOT_LT] = ACTIONS(2356), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2358), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2358), + [aux_sym__immediate_decimal_token2] = ACTIONS(3422), + [anon_sym_null] = ACTIONS(2356), + [anon_sym_true] = ACTIONS(2356), + [anon_sym_false] = ACTIONS(2356), + [aux_sym__val_number_decimal_token1] = ACTIONS(2356), + [aux_sym__val_number_decimal_token2] = ACTIONS(2356), + [anon_sym_DOT2] = ACTIONS(2356), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2356), + [anon_sym_0o] = ACTIONS(2356), + [anon_sym_0x] = ACTIONS(2356), + [sym_val_date] = 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_CARET] = ACTIONS(2356), + [anon_sym_POUND] = ACTIONS(113), + }, + [970] = { + [sym_comment] = STATE(970), + [ts_builtin_sym_end] = ACTIONS(2358), + [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), + [anon_sym_SEMI] = ACTIONS(2356), + [sym_cmd_identifier] = ACTIONS(2356), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2356), + [anon_sym_DOLLAR] = ACTIONS(2356), + [anon_sym_error] = ACTIONS(2356), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_loop] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_match] = ACTIONS(2356), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_DOT_DOT] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_source] = ACTIONS(2356), + [anon_sym_source_DASHenv] = ACTIONS(2356), + [anon_sym_register] = 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_where] = ACTIONS(2356), + [anon_sym_not] = ACTIONS(2356), + [anon_sym_DOT_DOT2] = ACTIONS(2356), + [anon_sym_DOT] = ACTIONS(3424), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2356), + [anon_sym_DOT_DOT_LT] = ACTIONS(2356), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2358), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2358), + [aux_sym__immediate_decimal_token2] = ACTIONS(3406), + [anon_sym_null] = ACTIONS(2356), + [anon_sym_true] = ACTIONS(2356), + [anon_sym_false] = ACTIONS(2356), + [aux_sym__val_number_decimal_token1] = ACTIONS(2356), + [aux_sym__val_number_decimal_token2] = ACTIONS(2356), + [anon_sym_DOT2] = ACTIONS(2356), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2356), + [anon_sym_0o] = ACTIONS(2356), + [anon_sym_0x] = ACTIONS(2356), + [sym_val_date] = 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_CARET] = ACTIONS(2356), + [aux_sym_unquoted_token2] = ACTIONS(2356), + [anon_sym_POUND] = ACTIONS(113), + }, + [971] = { + [sym_comment] = STATE(971), + [ts_builtin_sym_end] = ACTIONS(2231), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_alias] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_let_DASHenv] = ACTIONS(2229), + [anon_sym_mut] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2229), + [sym_cmd_identifier] = ACTIONS(2229), + [anon_sym_LF] = ACTIONS(2231), + [anon_sym_def] = ACTIONS(2229), + [anon_sym_export_DASHenv] = ACTIONS(2229), + [anon_sym_extern] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2229), + [anon_sym_error] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_loop] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_source] = ACTIONS(2229), + [anon_sym_source_DASHenv] = ACTIONS(2229), + [anon_sym_register] = ACTIONS(2229), + [anon_sym_hide] = ACTIONS(2229), + [anon_sym_hide_DASHenv] = ACTIONS(2229), + [anon_sym_overlay] = ACTIONS(2229), + [anon_sym_as] = ACTIONS(2229), + [anon_sym_where] = ACTIONS(2229), + [anon_sym_not] = ACTIONS(2229), + [anon_sym_LPAREN2] = ACTIONS(2231), + [anon_sym_DOT_DOT2] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2229), + [anon_sym_DOT_DOT_LT] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2231), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2231), + [anon_sym_null] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [aux_sym__val_number_decimal_token1] = ACTIONS(2229), + [aux_sym__val_number_decimal_token2] = ACTIONS(2229), + [anon_sym_DOT2] = ACTIONS(2229), + [aux_sym__val_number_decimal_token3] = ACTIONS(2229), + [aux_sym__val_number_token1] = ACTIONS(2229), + [aux_sym__val_number_token2] = ACTIONS(2229), + [aux_sym__val_number_token3] = ACTIONS(2229), + [aux_sym__val_number_token4] = ACTIONS(2229), + [aux_sym__val_number_token5] = ACTIONS(2229), + [aux_sym__val_number_token6] = ACTIONS(2229), + [anon_sym_0b] = ACTIONS(2229), + [anon_sym_0o] = ACTIONS(2229), + [anon_sym_0x] = ACTIONS(2229), + [sym_val_date] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2229), + [anon_sym_CARET] = ACTIONS(2229), + [aux_sym_unquoted_token2] = ACTIONS(2229), + [anon_sym_POUND] = ACTIONS(113), + }, + [972] = { + [sym__command_name] = STATE(2317), + [sym_scope_pattern] = STATE(2371), + [sym_wild_card] = STATE(2361), + [sym_command_list] = STATE(2391), + [sym_val_string] = STATE(2033), + [sym__str_double_quotes] = STATE(2196), + [sym_comment] = STATE(972), + [anon_sym_export] = ACTIONS(3427), + [anon_sym_alias] = ACTIONS(3427), + [anon_sym_let] = ACTIONS(3427), + [anon_sym_let_DASHenv] = ACTIONS(3427), + [anon_sym_mut] = ACTIONS(3427), + [anon_sym_const] = ACTIONS(3427), + [anon_sym_SEMI] = ACTIONS(3427), + [sym_cmd_identifier] = ACTIONS(3374), + [anon_sym_LF] = ACTIONS(3429), + [anon_sym_def] = ACTIONS(3427), + [anon_sym_export_DASHenv] = ACTIONS(3427), + [anon_sym_extern] = ACTIONS(3427), + [anon_sym_module] = ACTIONS(3427), + [anon_sym_use] = ACTIONS(3427), + [anon_sym_LBRACK] = ACTIONS(3378), + [anon_sym_LPAREN] = ACTIONS(3427), + [anon_sym_RPAREN] = ACTIONS(3427), + [anon_sym_DOLLAR] = ACTIONS(3427), + [anon_sym_error] = ACTIONS(3427), + [anon_sym_DASH] = ACTIONS(3427), + [anon_sym_break] = ACTIONS(3427), + [anon_sym_continue] = ACTIONS(3427), + [anon_sym_for] = ACTIONS(3427), + [anon_sym_loop] = ACTIONS(3427), + [anon_sym_while] = ACTIONS(3427), + [anon_sym_do] = ACTIONS(3427), + [anon_sym_if] = ACTIONS(3427), + [anon_sym_match] = ACTIONS(3427), + [anon_sym_LBRACE] = ACTIONS(3427), + [anon_sym_RBRACE] = ACTIONS(3427), + [anon_sym_DOT_DOT] = ACTIONS(3427), + [anon_sym_try] = ACTIONS(3427), + [anon_sym_return] = ACTIONS(3427), + [anon_sym_source] = ACTIONS(3427), + [anon_sym_source_DASHenv] = ACTIONS(3427), + [anon_sym_register] = ACTIONS(3427), + [anon_sym_hide] = ACTIONS(3427), + [anon_sym_hide_DASHenv] = ACTIONS(3427), + [anon_sym_overlay] = ACTIONS(3427), + [anon_sym_STAR] = ACTIONS(3380), + [anon_sym_where] = ACTIONS(3427), + [anon_sym_not] = ACTIONS(3427), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3427), + [anon_sym_DOT_DOT_LT] = ACTIONS(3427), + [anon_sym_null] = ACTIONS(3427), + [anon_sym_true] = ACTIONS(3427), + [anon_sym_false] = ACTIONS(3427), + [aux_sym__val_number_decimal_token1] = ACTIONS(3427), + [aux_sym__val_number_decimal_token2] = ACTIONS(3427), + [anon_sym_DOT2] = ACTIONS(3427), + [aux_sym__val_number_decimal_token3] = ACTIONS(3427), + [aux_sym__val_number_token1] = ACTIONS(3427), + [aux_sym__val_number_token2] = ACTIONS(3427), + [aux_sym__val_number_token3] = ACTIONS(3427), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(3427), + [anon_sym_0o] = ACTIONS(3427), + [anon_sym_0x] = ACTIONS(3427), + [sym_val_date] = ACTIONS(3427), + [anon_sym_DQUOTE] = ACTIONS(3382), + [sym__str_single_quotes] = ACTIONS(3384), + [sym__str_back_ticks] = ACTIONS(3384), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3427), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3427), + [anon_sym_CARET] = ACTIONS(3427), + [anon_sym_POUND] = ACTIONS(113), + }, + [973] = { + [sym__immediate_decimal] = STATE(8796), + [sym_comment] = STATE(973), + [ts_builtin_sym_end] = ACTIONS(922), + [anon_sym_export] = ACTIONS(920), + [anon_sym_alias] = ACTIONS(920), + [anon_sym_let] = ACTIONS(920), + [anon_sym_let_DASHenv] = ACTIONS(920), + [anon_sym_mut] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(920), + [sym_cmd_identifier] = ACTIONS(920), + [anon_sym_LF] = ACTIONS(922), + [anon_sym_def] = ACTIONS(920), + [anon_sym_export_DASHenv] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym_module] = ACTIONS(920), + [anon_sym_use] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_error] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_loop] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_match] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_try] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_source] = ACTIONS(920), + [anon_sym_source_DASHenv] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_hide] = ACTIONS(920), + [anon_sym_hide_DASHenv] = ACTIONS(920), + [anon_sym_overlay] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_where] = ACTIONS(920), + [anon_sym_not] = ACTIONS(920), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [aux_sym__immediate_decimal_token1] = ACTIONS(926), + [aux_sym__immediate_decimal_token3] = ACTIONS(926), + [aux_sym__immediate_decimal_token4] = ACTIONS(928), + [anon_sym_null] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), + [anon_sym_CARET] = ACTIONS(920), + [aux_sym_unquoted_token3] = ACTIONS(3433), + [aux_sym_unquoted_token5] = ACTIONS(3435), + [anon_sym_POUND] = ACTIONS(113), + }, + [974] = { + [sym_comment] = STATE(974), + [anon_sym_LBRACK] = ACTIONS(913), + [anon_sym_COMMA] = ACTIONS(913), + [anon_sym_LPAREN] = ACTIONS(913), + [anon_sym_DOLLAR] = ACTIONS(913), + [anon_sym_GT] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_in] = ACTIONS(911), + [anon_sym_LBRACE] = ACTIONS(913), + [anon_sym_RBRACE] = ACTIONS(913), + [anon_sym__] = ACTIONS(911), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(911), + [anon_sym_STAR_STAR] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_SLASH] = ACTIONS(911), + [anon_sym_mod] = ACTIONS(913), + [anon_sym_SLASH_SLASH] = ACTIONS(913), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_bit_DASHshl] = ACTIONS(913), + [anon_sym_bit_DASHshr] = ACTIONS(913), + [anon_sym_EQ_EQ] = ACTIONS(913), + [anon_sym_BANG_EQ] = ACTIONS(913), + [anon_sym_LT2] = ACTIONS(911), + [anon_sym_LT_EQ] = ACTIONS(913), + [anon_sym_GT_EQ] = ACTIONS(913), + [anon_sym_not_DASHin] = ACTIONS(913), + [anon_sym_starts_DASHwith] = ACTIONS(913), + [anon_sym_ends_DASHwith] = ACTIONS(913), + [anon_sym_EQ_TILDE] = ACTIONS(913), + [anon_sym_BANG_TILDE] = ACTIONS(913), + [anon_sym_bit_DASHand] = ACTIONS(913), + [anon_sym_bit_DASHxor] = ACTIONS(913), + [anon_sym_bit_DASHor] = ACTIONS(913), + [anon_sym_and] = ACTIONS(913), + [anon_sym_xor] = ACTIONS(913), + [anon_sym_or] = ACTIONS(913), + [anon_sym_DOT_DOT2] = ACTIONS(911), + [anon_sym_DOT_DOT_EQ] = ACTIONS(911), + [anon_sym_DOT_DOT_LT] = ACTIONS(911), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(913), + [anon_sym_DOT_DOT_LT2] = ACTIONS(913), + [aux_sym__immediate_decimal_token2] = ACTIONS(2964), + [anon_sym_null] = ACTIONS(913), + [anon_sym_true] = ACTIONS(913), + [anon_sym_false] = ACTIONS(913), + [aux_sym__val_number_decimal_token1] = ACTIONS(911), + [aux_sym__val_number_decimal_token2] = ACTIONS(913), + [anon_sym_DOT2] = ACTIONS(911), + [aux_sym__val_number_decimal_token3] = ACTIONS(913), + [aux_sym__val_number_token1] = ACTIONS(913), + [aux_sym__val_number_token2] = ACTIONS(913), + [aux_sym__val_number_token3] = ACTIONS(913), + [aux_sym__val_number_token4] = ACTIONS(913), + [aux_sym__val_number_token5] = ACTIONS(913), + [aux_sym__val_number_token6] = ACTIONS(913), + [anon_sym_0b] = ACTIONS(911), + [sym_filesize_unit] = ACTIONS(911), + [sym_duration_unit] = ACTIONS(913), + [anon_sym_0o] = ACTIONS(911), + [anon_sym_0x] = ACTIONS(911), + [sym_val_date] = ACTIONS(913), + [anon_sym_DQUOTE] = ACTIONS(913), + [sym__str_single_quotes] = ACTIONS(913), + [sym__str_back_ticks] = ACTIONS(913), + [anon_sym_err_GT] = ACTIONS(913), + [anon_sym_out_GT] = ACTIONS(913), + [anon_sym_e_GT] = ACTIONS(913), + [anon_sym_o_GT] = ACTIONS(913), + [anon_sym_err_PLUSout_GT] = ACTIONS(913), + [anon_sym_out_PLUSerr_GT] = ACTIONS(913), + [anon_sym_o_PLUSe_GT] = ACTIONS(913), + [anon_sym_e_PLUSo_GT] = ACTIONS(913), + [aux_sym_unquoted_token1] = ACTIONS(911), + [anon_sym_POUND] = ACTIONS(3), + }, + [975] = { + [sym_comment] = STATE(975), + [anon_sym_LBRACK] = ACTIONS(903), + [anon_sym_COMMA] = ACTIONS(903), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_DOLLAR] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_in] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(903), + [anon_sym_RBRACE] = ACTIONS(903), + [anon_sym__] = ACTIONS(901), + [anon_sym_DOT_DOT] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_STAR_STAR] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_mod] = ACTIONS(903), + [anon_sym_SLASH_SLASH] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_bit_DASHshl] = ACTIONS(903), + [anon_sym_bit_DASHshr] = ACTIONS(903), + [anon_sym_EQ_EQ] = ACTIONS(903), + [anon_sym_BANG_EQ] = ACTIONS(903), + [anon_sym_LT2] = ACTIONS(901), + [anon_sym_LT_EQ] = ACTIONS(903), + [anon_sym_GT_EQ] = ACTIONS(903), + [anon_sym_not_DASHin] = ACTIONS(903), + [anon_sym_starts_DASHwith] = ACTIONS(903), + [anon_sym_ends_DASHwith] = ACTIONS(903), + [anon_sym_EQ_TILDE] = ACTIONS(903), + [anon_sym_BANG_TILDE] = ACTIONS(903), + [anon_sym_bit_DASHand] = ACTIONS(903), + [anon_sym_bit_DASHxor] = ACTIONS(903), + [anon_sym_bit_DASHor] = ACTIONS(903), + [anon_sym_and] = ACTIONS(903), + [anon_sym_xor] = ACTIONS(903), + [anon_sym_or] = ACTIONS(903), + [anon_sym_DOT_DOT2] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ] = ACTIONS(901), + [anon_sym_DOT_DOT_LT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(903), + [anon_sym_DOT_DOT_LT2] = ACTIONS(903), + [aux_sym__immediate_decimal_token2] = ACTIONS(3437), + [anon_sym_null] = ACTIONS(903), + [anon_sym_true] = ACTIONS(903), + [anon_sym_false] = ACTIONS(903), + [aux_sym__val_number_decimal_token1] = ACTIONS(901), + [aux_sym__val_number_decimal_token2] = ACTIONS(903), + [anon_sym_DOT2] = ACTIONS(901), + [aux_sym__val_number_decimal_token3] = ACTIONS(903), + [aux_sym__val_number_token1] = ACTIONS(903), + [aux_sym__val_number_token2] = ACTIONS(903), + [aux_sym__val_number_token3] = ACTIONS(903), + [aux_sym__val_number_token4] = ACTIONS(903), + [aux_sym__val_number_token5] = ACTIONS(903), + [aux_sym__val_number_token6] = ACTIONS(903), + [anon_sym_0b] = ACTIONS(901), + [sym_filesize_unit] = ACTIONS(901), + [sym_duration_unit] = ACTIONS(903), + [anon_sym_0o] = ACTIONS(901), + [anon_sym_0x] = ACTIONS(901), + [sym_val_date] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(903), + [sym__str_single_quotes] = ACTIONS(903), + [sym__str_back_ticks] = ACTIONS(903), + [anon_sym_err_GT] = ACTIONS(903), + [anon_sym_out_GT] = ACTIONS(903), + [anon_sym_e_GT] = ACTIONS(903), + [anon_sym_o_GT] = ACTIONS(903), + [anon_sym_err_PLUSout_GT] = ACTIONS(903), + [anon_sym_out_PLUSerr_GT] = ACTIONS(903), + [anon_sym_o_PLUSe_GT] = ACTIONS(903), + [anon_sym_e_PLUSo_GT] = ACTIONS(903), + [aux_sym_unquoted_token1] = ACTIONS(901), + [anon_sym_POUND] = ACTIONS(3), + }, + [976] = { + [sym__flag] = STATE(1930), + [sym_short_flag] = STATE(1648), + [sym_long_flag] = STATE(1648), + [sym_long_flag_equals_value] = STATE(1632), + [sym_comment] = STATE(976), + [aux_sym_overlay_use_repeat1] = STATE(979), + [anon_sym_export] = ACTIONS(3439), + [anon_sym_alias] = ACTIONS(3439), + [anon_sym_let] = ACTIONS(3439), + [anon_sym_let_DASHenv] = ACTIONS(3439), + [anon_sym_mut] = ACTIONS(3439), + [anon_sym_const] = ACTIONS(3439), + [anon_sym_SEMI] = ACTIONS(3439), + [sym_cmd_identifier] = ACTIONS(3439), + [anon_sym_LF] = ACTIONS(3441), + [anon_sym_def] = ACTIONS(3439), + [anon_sym_export_DASHenv] = ACTIONS(3439), + [anon_sym_extern] = ACTIONS(3439), + [anon_sym_module] = ACTIONS(3439), + [anon_sym_use] = ACTIONS(3439), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_LPAREN] = ACTIONS(3439), + [anon_sym_RPAREN] = ACTIONS(3439), + [anon_sym_DOLLAR] = ACTIONS(3439), + [anon_sym_error] = ACTIONS(3439), + [anon_sym_DASH_DASH] = ACTIONS(3443), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_break] = ACTIONS(3439), + [anon_sym_continue] = ACTIONS(3439), + [anon_sym_for] = ACTIONS(3439), + [anon_sym_loop] = ACTIONS(3439), + [anon_sym_while] = ACTIONS(3439), + [anon_sym_do] = ACTIONS(3439), + [anon_sym_if] = ACTIONS(3439), + [anon_sym_match] = ACTIONS(3439), + [anon_sym_LBRACE] = ACTIONS(3439), + [anon_sym_RBRACE] = ACTIONS(3439), + [anon_sym_DOT_DOT] = ACTIONS(3439), + [anon_sym_try] = ACTIONS(3439), + [anon_sym_return] = ACTIONS(3439), + [anon_sym_source] = ACTIONS(3439), + [anon_sym_source_DASHenv] = ACTIONS(3439), + [anon_sym_register] = ACTIONS(3439), + [anon_sym_hide] = ACTIONS(3439), + [anon_sym_hide_DASHenv] = ACTIONS(3439), + [anon_sym_overlay] = ACTIONS(3439), + [anon_sym_as] = ACTIONS(3445), + [anon_sym_where] = ACTIONS(3439), + [anon_sym_not] = ACTIONS(3439), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3439), + [anon_sym_DOT_DOT_LT] = ACTIONS(3439), + [anon_sym_null] = ACTIONS(3439), + [anon_sym_true] = ACTIONS(3439), + [anon_sym_false] = ACTIONS(3439), + [aux_sym__val_number_decimal_token1] = ACTIONS(3439), + [aux_sym__val_number_decimal_token2] = ACTIONS(3439), + [anon_sym_DOT2] = ACTIONS(3439), + [aux_sym__val_number_decimal_token3] = ACTIONS(3439), + [aux_sym__val_number_token1] = ACTIONS(3439), + [aux_sym__val_number_token2] = ACTIONS(3439), + [aux_sym__val_number_token3] = ACTIONS(3439), + [aux_sym__val_number_token4] = ACTIONS(3439), + [aux_sym__val_number_token5] = ACTIONS(3439), + [aux_sym__val_number_token6] = ACTIONS(3439), + [anon_sym_0b] = ACTIONS(3439), + [anon_sym_0o] = ACTIONS(3439), + [anon_sym_0x] = ACTIONS(3439), + [sym_val_date] = ACTIONS(3439), + [anon_sym_DQUOTE] = ACTIONS(3439), + [sym__str_single_quotes] = ACTIONS(3439), + [sym__str_back_ticks] = ACTIONS(3439), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3439), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3439), + [anon_sym_CARET] = ACTIONS(3439), + [anon_sym_POUND] = ACTIONS(113), + }, + [977] = { + [sym_cell_path] = STATE(1285), + [sym_path] = STATE(987), + [sym_comment] = STATE(977), + [anon_sym_LBRACK] = ACTIONS(994), + [anon_sym_COMMA] = ACTIONS(994), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_DOLLAR] = ACTIONS(994), + [anon_sym_GT] = ACTIONS(992), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_in] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [anon_sym__] = ACTIONS(992), + [anon_sym_DOT_DOT] = ACTIONS(992), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_STAR_STAR] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_SLASH] = ACTIONS(992), + [anon_sym_mod] = ACTIONS(994), + [anon_sym_SLASH_SLASH] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_bit_DASHshl] = ACTIONS(994), + [anon_sym_bit_DASHshr] = ACTIONS(994), + [anon_sym_EQ_EQ] = ACTIONS(994), + [anon_sym_BANG_EQ] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(992), + [anon_sym_LT_EQ] = ACTIONS(994), + [anon_sym_GT_EQ] = ACTIONS(994), + [anon_sym_not_DASHin] = ACTIONS(994), + [anon_sym_starts_DASHwith] = ACTIONS(994), + [anon_sym_ends_DASHwith] = ACTIONS(994), + [anon_sym_EQ_TILDE] = ACTIONS(994), + [anon_sym_BANG_TILDE] = ACTIONS(994), + [anon_sym_bit_DASHand] = ACTIONS(994), + [anon_sym_bit_DASHxor] = ACTIONS(994), + [anon_sym_bit_DASHor] = ACTIONS(994), + [anon_sym_and] = ACTIONS(994), + [anon_sym_xor] = ACTIONS(994), + [anon_sym_or] = ACTIONS(994), + [anon_sym_DOT_DOT2] = ACTIONS(992), + [anon_sym_DOT] = ACTIONS(3447), + [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), + [anon_sym_DOT2] = ACTIONS(992), + [aux_sym__val_number_decimal_token3] = 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_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [aux_sym_unquoted_token1] = ACTIONS(992), + [anon_sym_POUND] = ACTIONS(3), + }, + [978] = { + [sym_comment] = STATE(978), + [anon_sym_export] = ACTIONS(1024), + [anon_sym_alias] = ACTIONS(1024), + [anon_sym_let] = ACTIONS(1024), + [anon_sym_let_DASHenv] = ACTIONS(1024), + [anon_sym_mut] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1024), + [sym_cmd_identifier] = ACTIONS(1024), + [anon_sym_LF] = ACTIONS(1026), + [anon_sym_def] = ACTIONS(1024), + [anon_sym_export_DASHenv] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1024), + [anon_sym_module] = ACTIONS(1024), + [anon_sym_use] = ACTIONS(1024), + [anon_sym_LBRACK] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_RPAREN] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_error] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_loop] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_match] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym_RBRACE] = ACTIONS(1024), + [anon_sym_DOT_DOT] = ACTIONS(1024), + [anon_sym_try] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_source] = ACTIONS(1024), + [anon_sym_source_DASHenv] = ACTIONS(1024), + [anon_sym_register] = ACTIONS(1024), + [anon_sym_hide] = ACTIONS(1024), + [anon_sym_hide_DASHenv] = ACTIONS(1024), + [anon_sym_overlay] = ACTIONS(1024), + [anon_sym_as] = ACTIONS(1024), + [anon_sym_where] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(3449), + [anon_sym_not] = ACTIONS(1024), + [anon_sym_DOT_DOT2] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1026), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1026), + [anon_sym_null] = ACTIONS(1024), + [anon_sym_true] = ACTIONS(1024), + [anon_sym_false] = ACTIONS(1024), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1024), + [aux_sym__val_number_token1] = ACTIONS(1024), + [aux_sym__val_number_token2] = ACTIONS(1024), + [aux_sym__val_number_token3] = ACTIONS(1024), + [aux_sym__val_number_token4] = ACTIONS(1024), + [aux_sym__val_number_token5] = ACTIONS(1024), + [aux_sym__val_number_token6] = ACTIONS(1024), + [anon_sym_0b] = ACTIONS(1024), + [anon_sym_0o] = ACTIONS(1024), + [anon_sym_0x] = ACTIONS(1024), + [sym_val_date] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym__str_single_quotes] = ACTIONS(1024), + [sym__str_back_ticks] = ACTIONS(1024), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1024), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1024), + [anon_sym_CARET] = ACTIONS(1024), + [anon_sym_POUND] = ACTIONS(113), + }, + [979] = { + [sym__flag] = STATE(1930), + [sym_short_flag] = STATE(1648), + [sym_long_flag] = STATE(1648), + [sym_long_flag_equals_value] = STATE(1632), + [sym_comment] = STATE(979), + [aux_sym_overlay_use_repeat1] = STATE(968), + [anon_sym_export] = ACTIONS(3451), + [anon_sym_alias] = ACTIONS(3451), + [anon_sym_let] = ACTIONS(3451), + [anon_sym_let_DASHenv] = ACTIONS(3451), + [anon_sym_mut] = ACTIONS(3451), + [anon_sym_const] = ACTIONS(3451), + [anon_sym_SEMI] = ACTIONS(3451), + [sym_cmd_identifier] = ACTIONS(3451), + [anon_sym_LF] = ACTIONS(3453), + [anon_sym_def] = ACTIONS(3451), + [anon_sym_export_DASHenv] = ACTIONS(3451), + [anon_sym_extern] = ACTIONS(3451), + [anon_sym_module] = ACTIONS(3451), + [anon_sym_use] = ACTIONS(3451), + [anon_sym_LBRACK] = ACTIONS(3451), + [anon_sym_LPAREN] = ACTIONS(3451), + [anon_sym_RPAREN] = ACTIONS(3451), + [anon_sym_DOLLAR] = ACTIONS(3451), + [anon_sym_error] = ACTIONS(3451), + [anon_sym_DASH_DASH] = ACTIONS(3443), + [anon_sym_DASH] = ACTIONS(3451), + [anon_sym_break] = ACTIONS(3451), + [anon_sym_continue] = ACTIONS(3451), + [anon_sym_for] = ACTIONS(3451), + [anon_sym_loop] = ACTIONS(3451), + [anon_sym_while] = ACTIONS(3451), + [anon_sym_do] = ACTIONS(3451), + [anon_sym_if] = ACTIONS(3451), + [anon_sym_match] = ACTIONS(3451), + [anon_sym_LBRACE] = ACTIONS(3451), + [anon_sym_RBRACE] = ACTIONS(3451), + [anon_sym_DOT_DOT] = ACTIONS(3451), + [anon_sym_try] = ACTIONS(3451), + [anon_sym_return] = ACTIONS(3451), + [anon_sym_source] = ACTIONS(3451), + [anon_sym_source_DASHenv] = ACTIONS(3451), + [anon_sym_register] = ACTIONS(3451), + [anon_sym_hide] = ACTIONS(3451), + [anon_sym_hide_DASHenv] = ACTIONS(3451), + [anon_sym_overlay] = ACTIONS(3451), + [anon_sym_as] = ACTIONS(3455), + [anon_sym_where] = ACTIONS(3451), + [anon_sym_not] = ACTIONS(3451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3451), + [anon_sym_DOT_DOT_LT] = ACTIONS(3451), + [anon_sym_null] = ACTIONS(3451), + [anon_sym_true] = ACTIONS(3451), + [anon_sym_false] = ACTIONS(3451), + [aux_sym__val_number_decimal_token1] = ACTIONS(3451), + [aux_sym__val_number_decimal_token2] = ACTIONS(3451), + [anon_sym_DOT2] = ACTIONS(3451), + [aux_sym__val_number_decimal_token3] = ACTIONS(3451), + [aux_sym__val_number_token1] = ACTIONS(3451), + [aux_sym__val_number_token2] = ACTIONS(3451), + [aux_sym__val_number_token3] = ACTIONS(3451), + [aux_sym__val_number_token4] = ACTIONS(3451), + [aux_sym__val_number_token5] = ACTIONS(3451), + [aux_sym__val_number_token6] = ACTIONS(3451), + [anon_sym_0b] = ACTIONS(3451), + [anon_sym_0o] = ACTIONS(3451), + [anon_sym_0x] = ACTIONS(3451), + [sym_val_date] = ACTIONS(3451), + [anon_sym_DQUOTE] = ACTIONS(3451), + [sym__str_single_quotes] = ACTIONS(3451), + [sym__str_back_ticks] = ACTIONS(3451), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3451), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3451), + [anon_sym_CARET] = ACTIONS(3451), + [anon_sym_POUND] = ACTIONS(113), + }, + [980] = { + [sym__flag] = STATE(1930), + [sym_short_flag] = STATE(1648), + [sym_long_flag] = STATE(1648), + [sym_long_flag_equals_value] = STATE(1632), + [sym_comment] = STATE(980), + [aux_sym_overlay_use_repeat1] = STATE(982), + [anon_sym_export] = ACTIONS(3457), + [anon_sym_alias] = ACTIONS(3457), + [anon_sym_let] = ACTIONS(3457), + [anon_sym_let_DASHenv] = ACTIONS(3457), + [anon_sym_mut] = ACTIONS(3457), + [anon_sym_const] = ACTIONS(3457), + [anon_sym_SEMI] = ACTIONS(3457), + [sym_cmd_identifier] = ACTIONS(3457), + [anon_sym_LF] = ACTIONS(3459), + [anon_sym_def] = ACTIONS(3457), + [anon_sym_export_DASHenv] = ACTIONS(3457), + [anon_sym_extern] = ACTIONS(3457), + [anon_sym_module] = ACTIONS(3457), + [anon_sym_use] = ACTIONS(3457), + [anon_sym_LBRACK] = ACTIONS(3457), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_RPAREN] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3457), + [anon_sym_error] = ACTIONS(3457), + [anon_sym_DASH_DASH] = ACTIONS(3443), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_break] = ACTIONS(3457), + [anon_sym_continue] = ACTIONS(3457), + [anon_sym_for] = ACTIONS(3457), + [anon_sym_loop] = ACTIONS(3457), + [anon_sym_while] = ACTIONS(3457), + [anon_sym_do] = ACTIONS(3457), + [anon_sym_if] = ACTIONS(3457), + [anon_sym_match] = ACTIONS(3457), + [anon_sym_LBRACE] = ACTIONS(3457), + [anon_sym_RBRACE] = ACTIONS(3457), + [anon_sym_DOT_DOT] = ACTIONS(3457), + [anon_sym_try] = ACTIONS(3457), + [anon_sym_return] = ACTIONS(3457), + [anon_sym_source] = ACTIONS(3457), + [anon_sym_source_DASHenv] = ACTIONS(3457), + [anon_sym_register] = ACTIONS(3457), + [anon_sym_hide] = ACTIONS(3457), + [anon_sym_hide_DASHenv] = ACTIONS(3457), + [anon_sym_overlay] = ACTIONS(3457), + [anon_sym_as] = ACTIONS(3461), + [anon_sym_where] = ACTIONS(3457), + [anon_sym_not] = ACTIONS(3457), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), + [anon_sym_DOT_DOT_LT] = ACTIONS(3457), + [anon_sym_null] = ACTIONS(3457), + [anon_sym_true] = ACTIONS(3457), + [anon_sym_false] = ACTIONS(3457), + [aux_sym__val_number_decimal_token1] = ACTIONS(3457), + [aux_sym__val_number_decimal_token2] = ACTIONS(3457), + [anon_sym_DOT2] = ACTIONS(3457), + [aux_sym__val_number_decimal_token3] = ACTIONS(3457), + [aux_sym__val_number_token1] = ACTIONS(3457), + [aux_sym__val_number_token2] = ACTIONS(3457), + [aux_sym__val_number_token3] = ACTIONS(3457), + [aux_sym__val_number_token4] = ACTIONS(3457), + [aux_sym__val_number_token5] = ACTIONS(3457), + [aux_sym__val_number_token6] = ACTIONS(3457), + [anon_sym_0b] = ACTIONS(3457), + [anon_sym_0o] = ACTIONS(3457), + [anon_sym_0x] = ACTIONS(3457), + [sym_val_date] = ACTIONS(3457), + [anon_sym_DQUOTE] = ACTIONS(3457), + [sym__str_single_quotes] = ACTIONS(3457), + [sym__str_back_ticks] = ACTIONS(3457), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3457), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3457), + [anon_sym_CARET] = ACTIONS(3457), + [anon_sym_POUND] = ACTIONS(113), + }, + [981] = { + [sym__immediate_decimal] = STATE(10080), + [sym_comment] = STATE(981), + [anon_sym_LBRACK] = ACTIONS(922), + [anon_sym_COMMA] = ACTIONS(922), + [anon_sym_RBRACK] = ACTIONS(922), + [anon_sym_LPAREN] = ACTIONS(922), + [anon_sym_DOLLAR] = ACTIONS(922), + [anon_sym_GT] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_in] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_STAR_STAR] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_mod] = ACTIONS(922), + [anon_sym_SLASH_SLASH] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_bit_DASHshl] = ACTIONS(922), + [anon_sym_bit_DASHshr] = ACTIONS(922), + [anon_sym_EQ_EQ] = ACTIONS(922), + [anon_sym_BANG_EQ] = ACTIONS(922), + [anon_sym_LT2] = ACTIONS(920), + [anon_sym_LT_EQ] = ACTIONS(922), + [anon_sym_GT_EQ] = ACTIONS(922), + [anon_sym_not_DASHin] = ACTIONS(922), + [anon_sym_starts_DASHwith] = ACTIONS(922), + [anon_sym_ends_DASHwith] = ACTIONS(922), + [anon_sym_EQ_TILDE] = ACTIONS(922), + [anon_sym_BANG_TILDE] = ACTIONS(922), + [anon_sym_bit_DASHand] = ACTIONS(922), + [anon_sym_bit_DASHxor] = ACTIONS(922), + [anon_sym_bit_DASHor] = ACTIONS(922), + [anon_sym_and] = ACTIONS(922), + [anon_sym_xor] = ACTIONS(922), + [anon_sym_or] = ACTIONS(922), + [anon_sym_DOT] = ACTIONS(967), + [anon_sym_DOT_DOT_EQ] = ACTIONS(922), + [anon_sym_DOT_DOT_LT] = ACTIONS(922), + [aux_sym__immediate_decimal_token1] = ACTIONS(969), + [aux_sym__immediate_decimal_token3] = ACTIONS(1407), + [aux_sym__immediate_decimal_token4] = ACTIONS(1409), + [anon_sym_null] = ACTIONS(922), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(922), + [aux_sym__val_number_token2] = ACTIONS(922), + [aux_sym__val_number_token3] = ACTIONS(922), + [aux_sym__val_number_token4] = ACTIONS(922), + [aux_sym__val_number_token5] = ACTIONS(922), + [aux_sym__val_number_token6] = ACTIONS(922), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(922), + [anon_sym_DQUOTE] = ACTIONS(922), + [sym__str_single_quotes] = ACTIONS(922), + [sym__str_back_ticks] = ACTIONS(922), + [anon_sym_err_GT] = ACTIONS(922), + [anon_sym_out_GT] = ACTIONS(922), + [anon_sym_e_GT] = ACTIONS(922), + [anon_sym_o_GT] = ACTIONS(922), + [anon_sym_err_PLUSout_GT] = ACTIONS(922), + [anon_sym_out_PLUSerr_GT] = ACTIONS(922), + [anon_sym_o_PLUSe_GT] = ACTIONS(922), + [anon_sym_e_PLUSo_GT] = ACTIONS(922), + [aux_sym_unquoted_token4] = ACTIONS(2958), + [aux_sym__unquoted_in_list_token1] = ACTIONS(920), + [anon_sym_POUND] = ACTIONS(3), + }, + [982] = { + [sym__flag] = STATE(1930), + [sym_short_flag] = STATE(1648), + [sym_long_flag] = STATE(1648), + [sym_long_flag_equals_value] = STATE(1632), + [sym_comment] = STATE(982), + [aux_sym_overlay_use_repeat1] = STATE(968), + [anon_sym_export] = ACTIONS(3463), + [anon_sym_alias] = ACTIONS(3463), + [anon_sym_let] = ACTIONS(3463), + [anon_sym_let_DASHenv] = ACTIONS(3463), + [anon_sym_mut] = ACTIONS(3463), + [anon_sym_const] = ACTIONS(3463), + [anon_sym_SEMI] = ACTIONS(3463), + [sym_cmd_identifier] = ACTIONS(3463), + [anon_sym_LF] = ACTIONS(3465), + [anon_sym_def] = ACTIONS(3463), + [anon_sym_export_DASHenv] = ACTIONS(3463), + [anon_sym_extern] = ACTIONS(3463), + [anon_sym_module] = ACTIONS(3463), + [anon_sym_use] = ACTIONS(3463), + [anon_sym_LBRACK] = ACTIONS(3463), + [anon_sym_LPAREN] = ACTIONS(3463), + [anon_sym_RPAREN] = ACTIONS(3463), + [anon_sym_DOLLAR] = ACTIONS(3463), + [anon_sym_error] = ACTIONS(3463), + [anon_sym_DASH_DASH] = ACTIONS(3443), + [anon_sym_DASH] = ACTIONS(3463), + [anon_sym_break] = ACTIONS(3463), + [anon_sym_continue] = ACTIONS(3463), + [anon_sym_for] = ACTIONS(3463), + [anon_sym_loop] = ACTIONS(3463), + [anon_sym_while] = ACTIONS(3463), + [anon_sym_do] = ACTIONS(3463), + [anon_sym_if] = ACTIONS(3463), + [anon_sym_match] = ACTIONS(3463), + [anon_sym_LBRACE] = ACTIONS(3463), + [anon_sym_RBRACE] = ACTIONS(3463), + [anon_sym_DOT_DOT] = ACTIONS(3463), + [anon_sym_try] = ACTIONS(3463), + [anon_sym_return] = ACTIONS(3463), + [anon_sym_source] = ACTIONS(3463), + [anon_sym_source_DASHenv] = ACTIONS(3463), + [anon_sym_register] = ACTIONS(3463), + [anon_sym_hide] = ACTIONS(3463), + [anon_sym_hide_DASHenv] = ACTIONS(3463), + [anon_sym_overlay] = ACTIONS(3463), + [anon_sym_as] = ACTIONS(3467), + [anon_sym_where] = ACTIONS(3463), + [anon_sym_not] = ACTIONS(3463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3463), + [anon_sym_DOT_DOT_LT] = ACTIONS(3463), + [anon_sym_null] = ACTIONS(3463), + [anon_sym_true] = ACTIONS(3463), + [anon_sym_false] = ACTIONS(3463), + [aux_sym__val_number_decimal_token1] = ACTIONS(3463), + [aux_sym__val_number_decimal_token2] = ACTIONS(3463), + [anon_sym_DOT2] = ACTIONS(3463), + [aux_sym__val_number_decimal_token3] = ACTIONS(3463), + [aux_sym__val_number_token1] = ACTIONS(3463), + [aux_sym__val_number_token2] = ACTIONS(3463), + [aux_sym__val_number_token3] = ACTIONS(3463), + [aux_sym__val_number_token4] = ACTIONS(3463), + [aux_sym__val_number_token5] = ACTIONS(3463), + [aux_sym__val_number_token6] = ACTIONS(3463), + [anon_sym_0b] = ACTIONS(3463), + [anon_sym_0o] = ACTIONS(3463), + [anon_sym_0x] = ACTIONS(3463), + [sym_val_date] = ACTIONS(3463), + [anon_sym_DQUOTE] = ACTIONS(3463), + [sym__str_single_quotes] = ACTIONS(3463), + [sym__str_back_ticks] = ACTIONS(3463), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3463), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3463), + [anon_sym_CARET] = ACTIONS(3463), + [anon_sym_POUND] = ACTIONS(113), + }, + [983] = { + [sym_comment] = STATE(983), + [ts_builtin_sym_end] = ACTIONS(2364), + [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), + [anon_sym_SEMI] = ACTIONS(2362), + [sym_cmd_identifier] = ACTIONS(2362), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2362), + [anon_sym_LPAREN] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2362), + [anon_sym_error] = ACTIONS(2362), + [anon_sym_DASH_DASH] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_break] = ACTIONS(2362), + [anon_sym_continue] = ACTIONS(2362), + [anon_sym_for] = ACTIONS(2362), + [anon_sym_loop] = ACTIONS(2362), + [anon_sym_while] = ACTIONS(2362), + [anon_sym_do] = ACTIONS(2362), + [anon_sym_if] = ACTIONS(2362), + [anon_sym_match] = ACTIONS(2362), + [anon_sym_LBRACE] = ACTIONS(2362), + [anon_sym_DOT_DOT] = ACTIONS(2362), + [anon_sym_try] = 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_where] = ACTIONS(2362), + [anon_sym_not] = ACTIONS(2362), + [anon_sym_LPAREN2] = ACTIONS(2364), + [anon_sym_DOT_DOT2] = ACTIONS(2362), + [anon_sym_DOT] = ACTIONS(2362), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2362), + [anon_sym_DOT_DOT_LT] = ACTIONS(2362), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2364), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2364), + [anon_sym_null] = ACTIONS(2362), + [anon_sym_true] = ACTIONS(2362), + [anon_sym_false] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2362), + [aux_sym__val_number_decimal_token2] = ACTIONS(2362), + [anon_sym_DOT2] = ACTIONS(2362), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2362), + [anon_sym_0o] = ACTIONS(2362), + [anon_sym_0x] = ACTIONS(2362), + [sym_val_date] = 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_CARET] = ACTIONS(2362), + [aux_sym_unquoted_token2] = ACTIONS(2362), + [anon_sym_POUND] = ACTIONS(113), + }, + [984] = { + [sym_cell_path] = STATE(1194), + [sym_path] = STATE(987), + [sym_comment] = STATE(984), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_COMMA] = ACTIONS(1004), + [anon_sym_LPAREN] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1004), + [anon_sym_RBRACE] = ACTIONS(1004), + [anon_sym__] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1004), + [anon_sym_PLUS_PLUS] = ACTIONS(1004), + [anon_sym_SLASH] = ACTIONS(1002), + [anon_sym_mod] = ACTIONS(1004), + [anon_sym_SLASH_SLASH] = ACTIONS(1004), + [anon_sym_PLUS] = ACTIONS(1002), + [anon_sym_bit_DASHshl] = ACTIONS(1004), + [anon_sym_bit_DASHshr] = ACTIONS(1004), + [anon_sym_EQ_EQ] = ACTIONS(1004), + [anon_sym_BANG_EQ] = ACTIONS(1004), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ] = ACTIONS(1004), + [anon_sym_GT_EQ] = ACTIONS(1004), + [anon_sym_not_DASHin] = ACTIONS(1004), + [anon_sym_starts_DASHwith] = ACTIONS(1004), + [anon_sym_ends_DASHwith] = ACTIONS(1004), + [anon_sym_EQ_TILDE] = ACTIONS(1004), + [anon_sym_BANG_TILDE] = ACTIONS(1004), + [anon_sym_bit_DASHand] = ACTIONS(1004), + [anon_sym_bit_DASHxor] = ACTIONS(1004), + [anon_sym_bit_DASHor] = ACTIONS(1004), + [anon_sym_and] = ACTIONS(1004), + [anon_sym_xor] = ACTIONS(1004), + [anon_sym_or] = ACTIONS(1004), + [anon_sym_DOT_DOT2] = ACTIONS(1002), + [anon_sym_DOT] = ACTIONS(3447), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1004), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1004), + [anon_sym_null] = ACTIONS(1004), + [anon_sym_true] = ACTIONS(1004), + [anon_sym_false] = ACTIONS(1004), + [aux_sym__val_number_decimal_token1] = ACTIONS(1002), + [aux_sym__val_number_decimal_token2] = ACTIONS(1004), + [anon_sym_DOT2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1004), + [anon_sym_DQUOTE] = ACTIONS(1004), + [sym__str_single_quotes] = ACTIONS(1004), + [sym__str_back_ticks] = ACTIONS(1004), + [anon_sym_err_GT] = ACTIONS(1004), + [anon_sym_out_GT] = ACTIONS(1004), + [anon_sym_e_GT] = ACTIONS(1004), + [anon_sym_o_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT] = ACTIONS(1004), + [aux_sym_unquoted_token1] = ACTIONS(1002), + [anon_sym_POUND] = ACTIONS(3), + }, + [985] = { + [sym_comment] = STATE(985), + [anon_sym_LBRACK] = ACTIONS(895), + [anon_sym_COMMA] = ACTIONS(895), + [anon_sym_LPAREN] = ACTIONS(895), + [anon_sym_DOLLAR] = ACTIONS(895), + [anon_sym_GT] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_in] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(895), + [anon_sym_RBRACE] = ACTIONS(895), + [anon_sym__] = ACTIONS(893), + [anon_sym_DOT_DOT] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(893), + [anon_sym_STAR_STAR] = ACTIONS(895), + [anon_sym_PLUS_PLUS] = ACTIONS(895), + [anon_sym_SLASH] = ACTIONS(893), + [anon_sym_mod] = ACTIONS(895), + [anon_sym_SLASH_SLASH] = ACTIONS(895), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_bit_DASHshl] = ACTIONS(895), + [anon_sym_bit_DASHshr] = ACTIONS(895), + [anon_sym_EQ_EQ] = ACTIONS(895), + [anon_sym_BANG_EQ] = ACTIONS(895), + [anon_sym_LT2] = ACTIONS(893), + [anon_sym_LT_EQ] = ACTIONS(895), + [anon_sym_GT_EQ] = ACTIONS(895), + [anon_sym_not_DASHin] = ACTIONS(895), + [anon_sym_starts_DASHwith] = ACTIONS(895), + [anon_sym_ends_DASHwith] = ACTIONS(895), + [anon_sym_EQ_TILDE] = ACTIONS(895), + [anon_sym_BANG_TILDE] = ACTIONS(895), + [anon_sym_bit_DASHand] = ACTIONS(895), + [anon_sym_bit_DASHxor] = ACTIONS(895), + [anon_sym_bit_DASHor] = ACTIONS(895), + [anon_sym_and] = ACTIONS(895), + [anon_sym_xor] = ACTIONS(895), + [anon_sym_or] = ACTIONS(895), + [anon_sym_DOT_DOT2] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ] = ACTIONS(893), + [anon_sym_DOT_DOT_LT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), + [anon_sym_DOT_DOT_LT2] = ACTIONS(895), + [aux_sym__immediate_decimal_token2] = ACTIONS(2460), + [anon_sym_null] = ACTIONS(895), + [anon_sym_true] = ACTIONS(895), + [anon_sym_false] = ACTIONS(895), + [aux_sym__val_number_decimal_token1] = ACTIONS(893), + [aux_sym__val_number_decimal_token2] = ACTIONS(895), + [anon_sym_DOT2] = ACTIONS(893), + [aux_sym__val_number_decimal_token3] = ACTIONS(895), + [aux_sym__val_number_token1] = ACTIONS(895), + [aux_sym__val_number_token2] = ACTIONS(895), + [aux_sym__val_number_token3] = ACTIONS(895), + [aux_sym__val_number_token4] = ACTIONS(895), + [aux_sym__val_number_token5] = ACTIONS(895), + [aux_sym__val_number_token6] = ACTIONS(895), + [anon_sym_0b] = ACTIONS(893), + [sym_filesize_unit] = ACTIONS(893), + [sym_duration_unit] = ACTIONS(895), + [anon_sym_0o] = ACTIONS(893), + [anon_sym_0x] = ACTIONS(893), + [sym_val_date] = ACTIONS(895), + [anon_sym_DQUOTE] = ACTIONS(895), + [sym__str_single_quotes] = ACTIONS(895), + [sym__str_back_ticks] = ACTIONS(895), + [anon_sym_err_GT] = ACTIONS(895), + [anon_sym_out_GT] = ACTIONS(895), + [anon_sym_e_GT] = ACTIONS(895), + [anon_sym_o_GT] = ACTIONS(895), + [anon_sym_err_PLUSout_GT] = ACTIONS(895), + [anon_sym_out_PLUSerr_GT] = ACTIONS(895), + [anon_sym_o_PLUSe_GT] = ACTIONS(895), + [anon_sym_e_PLUSo_GT] = ACTIONS(895), + [aux_sym_unquoted_token1] = ACTIONS(893), + [anon_sym_POUND] = ACTIONS(3), + }, + [986] = { + [sym__immediate_decimal] = STATE(8796), + [sym_comment] = STATE(986), + [anon_sym_export] = ACTIONS(920), + [anon_sym_alias] = ACTIONS(920), + [anon_sym_let] = ACTIONS(920), + [anon_sym_let_DASHenv] = ACTIONS(920), + [anon_sym_mut] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(920), + [sym_cmd_identifier] = ACTIONS(920), + [anon_sym_LF] = ACTIONS(922), + [anon_sym_def] = ACTIONS(920), + [anon_sym_export_DASHenv] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym_module] = ACTIONS(920), + [anon_sym_use] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_RPAREN] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_error] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_loop] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_match] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_RBRACE] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_try] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_source] = ACTIONS(920), + [anon_sym_source_DASHenv] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_hide] = ACTIONS(920), + [anon_sym_hide_DASHenv] = ACTIONS(920), + [anon_sym_overlay] = ACTIONS(920), + [anon_sym_where] = ACTIONS(920), + [anon_sym_not] = ACTIONS(920), + [anon_sym_DOT] = ACTIONS(3306), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [aux_sym__immediate_decimal_token1] = ACTIONS(926), + [aux_sym__immediate_decimal_token3] = ACTIONS(926), + [aux_sym__immediate_decimal_token4] = ACTIONS(928), + [anon_sym_null] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), + [anon_sym_CARET] = ACTIONS(920), + [aux_sym_unquoted_token3] = ACTIONS(3308), + [aux_sym_unquoted_token5] = ACTIONS(3310), + [anon_sym_POUND] = ACTIONS(113), + }, + [987] = { + [sym_path] = STATE(1073), + [sym_comment] = STATE(987), + [aux_sym_cell_path_repeat1] = STATE(988), + [anon_sym_LBRACK] = ACTIONS(1012), + [anon_sym_COMMA] = ACTIONS(1012), + [anon_sym_LPAREN] = ACTIONS(1012), + [anon_sym_DOLLAR] = ACTIONS(1012), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_RBRACE] = ACTIONS(1012), + [anon_sym__] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1012), + [anon_sym_PLUS_PLUS] = ACTIONS(1012), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1012), + [anon_sym_SLASH_SLASH] = ACTIONS(1012), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1012), + [anon_sym_bit_DASHshr] = ACTIONS(1012), + [anon_sym_EQ_EQ] = ACTIONS(1012), + [anon_sym_BANG_EQ] = ACTIONS(1012), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1012), + [anon_sym_GT_EQ] = ACTIONS(1012), + [anon_sym_not_DASHin] = ACTIONS(1012), + [anon_sym_starts_DASHwith] = ACTIONS(1012), + [anon_sym_ends_DASHwith] = ACTIONS(1012), + [anon_sym_EQ_TILDE] = ACTIONS(1012), + [anon_sym_BANG_TILDE] = ACTIONS(1012), + [anon_sym_bit_DASHand] = ACTIONS(1012), + [anon_sym_bit_DASHxor] = ACTIONS(1012), + [anon_sym_bit_DASHor] = ACTIONS(1012), + [anon_sym_and] = ACTIONS(1012), + [anon_sym_xor] = ACTIONS(1012), + [anon_sym_or] = ACTIONS(1012), + [anon_sym_DOT_DOT2] = ACTIONS(1010), + [anon_sym_DOT] = ACTIONS(3447), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), + [anon_sym_null] = ACTIONS(1012), + [anon_sym_true] = ACTIONS(1012), + [anon_sym_false] = ACTIONS(1012), + [aux_sym__val_number_decimal_token1] = ACTIONS(1010), + [aux_sym__val_number_decimal_token2] = ACTIONS(1012), + [anon_sym_DOT2] = ACTIONS(1010), + [aux_sym__val_number_decimal_token3] = 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(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1012), + [anon_sym_DQUOTE] = ACTIONS(1012), + [sym__str_single_quotes] = ACTIONS(1012), + [sym__str_back_ticks] = ACTIONS(1012), + [anon_sym_err_GT] = ACTIONS(1012), + [anon_sym_out_GT] = ACTIONS(1012), + [anon_sym_e_GT] = ACTIONS(1012), + [anon_sym_o_GT] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT] = ACTIONS(1012), + [aux_sym_unquoted_token1] = ACTIONS(1010), + [anon_sym_POUND] = ACTIONS(3), + }, + [988] = { + [sym_path] = STATE(1073), + [sym_comment] = STATE(988), + [aux_sym_cell_path_repeat1] = STATE(989), + [anon_sym_LBRACK] = ACTIONS(1008), + [anon_sym_COMMA] = ACTIONS(1008), + [anon_sym_LPAREN] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1008), + [anon_sym_GT] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_in] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(1008), + [anon_sym_RBRACE] = ACTIONS(1008), + [anon_sym__] = ACTIONS(1006), + [anon_sym_DOT_DOT] = ACTIONS(1006), [anon_sym_STAR] = ACTIONS(1006), [anon_sym_STAR_STAR] = ACTIONS(1008), [anon_sym_PLUS_PLUS] = ACTIONS(1008), [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_mod] = ACTIONS(1006), + [anon_sym_mod] = ACTIONS(1008), [anon_sym_SLASH_SLASH] = ACTIONS(1008), [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_bit_DASHshl] = ACTIONS(1006), - [anon_sym_bit_DASHshr] = ACTIONS(1006), + [anon_sym_bit_DASHshl] = ACTIONS(1008), + [anon_sym_bit_DASHshr] = ACTIONS(1008), [anon_sym_EQ_EQ] = ACTIONS(1008), [anon_sym_BANG_EQ] = ACTIONS(1008), [anon_sym_LT2] = ACTIONS(1006), [anon_sym_LT_EQ] = ACTIONS(1008), [anon_sym_GT_EQ] = ACTIONS(1008), - [anon_sym_not_DASHin] = ACTIONS(1006), - [anon_sym_starts_DASHwith] = ACTIONS(1006), - [anon_sym_ends_DASHwith] = ACTIONS(1006), + [anon_sym_not_DASHin] = ACTIONS(1008), + [anon_sym_starts_DASHwith] = ACTIONS(1008), + [anon_sym_ends_DASHwith] = ACTIONS(1008), [anon_sym_EQ_TILDE] = ACTIONS(1008), [anon_sym_BANG_TILDE] = ACTIONS(1008), - [anon_sym_bit_DASHand] = ACTIONS(1006), - [anon_sym_bit_DASHxor] = ACTIONS(1006), - [anon_sym_bit_DASHor] = ACTIONS(1006), - [anon_sym_and] = ACTIONS(1006), - [anon_sym_xor] = ACTIONS(1006), - [anon_sym_or] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1705), + [anon_sym_bit_DASHand] = ACTIONS(1008), + [anon_sym_bit_DASHxor] = ACTIONS(1008), + [anon_sym_bit_DASHor] = ACTIONS(1008), + [anon_sym_and] = ACTIONS(1008), + [anon_sym_xor] = ACTIONS(1008), + [anon_sym_or] = ACTIONS(1008), + [anon_sym_DOT_DOT2] = ACTIONS(1006), + [anon_sym_DOT] = ACTIONS(3447), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), + [anon_sym_DOT_DOT_LT] = ACTIONS(1006), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), + [anon_sym_null] = ACTIONS(1008), + [anon_sym_true] = ACTIONS(1008), + [anon_sym_false] = ACTIONS(1008), [aux_sym__val_number_decimal_token1] = ACTIONS(1006), [aux_sym__val_number_decimal_token2] = ACTIONS(1008), [anon_sym_DOT2] = ACTIONS(1006), @@ -181559,138 +186955,910 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token1] = ACTIONS(1008), [aux_sym__val_number_token2] = ACTIONS(1008), [aux_sym__val_number_token3] = ACTIONS(1008), - [aux_sym__val_number_token4] = ACTIONS(1006), + [aux_sym__val_number_token4] = ACTIONS(1008), [aux_sym__val_number_token5] = ACTIONS(1008), - [aux_sym__val_number_token6] = ACTIONS(1006), + [aux_sym__val_number_token6] = ACTIONS(1008), + [anon_sym_0b] = ACTIONS(1006), + [anon_sym_0o] = ACTIONS(1006), + [anon_sym_0x] = ACTIONS(1006), + [sym_val_date] = ACTIONS(1008), [anon_sym_DQUOTE] = ACTIONS(1008), [sym__str_single_quotes] = ACTIONS(1008), [sym__str_back_ticks] = ACTIONS(1008), - [aux_sym__record_key_token2] = ACTIONS(1006), + [anon_sym_err_GT] = ACTIONS(1008), + [anon_sym_out_GT] = ACTIONS(1008), + [anon_sym_e_GT] = ACTIONS(1008), + [anon_sym_o_GT] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT] = ACTIONS(1008), + [aux_sym_unquoted_token1] = ACTIONS(1006), [anon_sym_POUND] = ACTIONS(3), }, - [834] = { - [sym_path] = STATE(871), - [sym_comment] = STATE(834), - [aux_sym_cell_path_repeat1] = STATE(834), - [anon_sym_export] = ACTIONS(999), - [anon_sym_alias] = ACTIONS(999), - [anon_sym_let] = ACTIONS(999), - [anon_sym_let_DASHenv] = ACTIONS(999), - [anon_sym_mut] = ACTIONS(999), - [anon_sym_const] = ACTIONS(999), - [sym_cmd_identifier] = ACTIONS(999), - [anon_sym_def] = ACTIONS(999), - [anon_sym_export_DASHenv] = ACTIONS(999), - [anon_sym_extern] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_use] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(1001), - [anon_sym_DOLLAR] = ACTIONS(1001), - [anon_sym_error] = ACTIONS(999), - [anon_sym_list] = ACTIONS(999), - [anon_sym_GT] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_break] = ACTIONS(999), - [anon_sym_continue] = ACTIONS(999), - [anon_sym_for] = ACTIONS(999), - [anon_sym_in] = ACTIONS(999), - [anon_sym_loop] = ACTIONS(999), - [anon_sym_make] = ACTIONS(999), - [anon_sym_while] = ACTIONS(999), - [anon_sym_do] = ACTIONS(999), - [anon_sym_if] = ACTIONS(999), - [anon_sym_else] = ACTIONS(999), - [anon_sym_match] = ACTIONS(999), - [anon_sym_RBRACE] = ACTIONS(1001), - [anon_sym_try] = ACTIONS(999), - [anon_sym_catch] = ACTIONS(999), - [anon_sym_return] = ACTIONS(999), - [anon_sym_source] = ACTIONS(999), - [anon_sym_source_DASHenv] = ACTIONS(999), - [anon_sym_register] = ACTIONS(999), - [anon_sym_hide] = ACTIONS(999), - [anon_sym_hide_DASHenv] = ACTIONS(999), - [anon_sym_overlay] = ACTIONS(999), - [anon_sym_new] = ACTIONS(999), - [anon_sym_as] = ACTIONS(999), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_STAR_STAR] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(999), - [anon_sym_mod] = ACTIONS(999), - [anon_sym_SLASH_SLASH] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_bit_DASHshl] = ACTIONS(999), - [anon_sym_bit_DASHshr] = ACTIONS(999), - [anon_sym_EQ_EQ] = ACTIONS(1001), - [anon_sym_BANG_EQ] = ACTIONS(1001), - [anon_sym_LT2] = ACTIONS(999), - [anon_sym_LT_EQ] = ACTIONS(1001), - [anon_sym_GT_EQ] = ACTIONS(1001), - [anon_sym_not_DASHin] = ACTIONS(999), - [anon_sym_starts_DASHwith] = ACTIONS(999), - [anon_sym_ends_DASHwith] = ACTIONS(999), - [anon_sym_EQ_TILDE] = ACTIONS(1001), - [anon_sym_BANG_TILDE] = ACTIONS(1001), - [anon_sym_bit_DASHand] = ACTIONS(999), - [anon_sym_bit_DASHxor] = ACTIONS(999), - [anon_sym_bit_DASHor] = ACTIONS(999), - [anon_sym_and] = ACTIONS(999), - [anon_sym_xor] = ACTIONS(999), - [anon_sym_or] = ACTIONS(999), - [anon_sym_DOT] = ACTIONS(1707), - [aux_sym__val_number_decimal_token1] = ACTIONS(999), - [aux_sym__val_number_decimal_token2] = ACTIONS(1001), - [anon_sym_DOT2] = ACTIONS(999), - [aux_sym__val_number_decimal_token3] = ACTIONS(1001), - [aux_sym__val_number_token1] = ACTIONS(1001), - [aux_sym__val_number_token2] = ACTIONS(1001), - [aux_sym__val_number_token3] = ACTIONS(1001), - [aux_sym__val_number_token4] = ACTIONS(999), - [aux_sym__val_number_token5] = ACTIONS(1001), - [aux_sym__val_number_token6] = ACTIONS(999), - [anon_sym_DQUOTE] = ACTIONS(1001), - [sym__str_single_quotes] = ACTIONS(1001), - [sym__str_back_ticks] = ACTIONS(1001), - [aux_sym__record_key_token2] = ACTIONS(999), + [989] = { + [sym_path] = STATE(1073), + [sym_comment] = STATE(989), + [aux_sym_cell_path_repeat1] = STATE(989), + [anon_sym_LBRACK] = ACTIONS(987), + [anon_sym_COMMA] = ACTIONS(987), + [anon_sym_LPAREN] = ACTIONS(987), + [anon_sym_DOLLAR] = ACTIONS(987), + [anon_sym_GT] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_in] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(987), + [anon_sym_RBRACE] = ACTIONS(987), + [anon_sym__] = ACTIONS(985), + [anon_sym_DOT_DOT] = ACTIONS(985), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_STAR_STAR] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(987), + [anon_sym_SLASH] = ACTIONS(985), + [anon_sym_mod] = ACTIONS(987), + [anon_sym_SLASH_SLASH] = ACTIONS(987), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_bit_DASHshl] = ACTIONS(987), + [anon_sym_bit_DASHshr] = ACTIONS(987), + [anon_sym_EQ_EQ] = ACTIONS(987), + [anon_sym_BANG_EQ] = ACTIONS(987), + [anon_sym_LT2] = ACTIONS(985), + [anon_sym_LT_EQ] = ACTIONS(987), + [anon_sym_GT_EQ] = ACTIONS(987), + [anon_sym_not_DASHin] = ACTIONS(987), + [anon_sym_starts_DASHwith] = ACTIONS(987), + [anon_sym_ends_DASHwith] = ACTIONS(987), + [anon_sym_EQ_TILDE] = ACTIONS(987), + [anon_sym_BANG_TILDE] = ACTIONS(987), + [anon_sym_bit_DASHand] = ACTIONS(987), + [anon_sym_bit_DASHxor] = ACTIONS(987), + [anon_sym_bit_DASHor] = ACTIONS(987), + [anon_sym_and] = ACTIONS(987), + [anon_sym_xor] = ACTIONS(987), + [anon_sym_or] = ACTIONS(987), + [anon_sym_DOT_DOT2] = ACTIONS(985), + [anon_sym_DOT] = ACTIONS(3469), + [anon_sym_DOT_DOT_EQ] = ACTIONS(985), + [anon_sym_DOT_DOT_LT] = ACTIONS(985), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(987), + [anon_sym_DOT_DOT_LT2] = ACTIONS(987), + [anon_sym_null] = ACTIONS(987), + [anon_sym_true] = ACTIONS(987), + [anon_sym_false] = ACTIONS(987), + [aux_sym__val_number_decimal_token1] = ACTIONS(985), + [aux_sym__val_number_decimal_token2] = ACTIONS(987), + [anon_sym_DOT2] = ACTIONS(985), + [aux_sym__val_number_decimal_token3] = ACTIONS(987), + [aux_sym__val_number_token1] = ACTIONS(987), + [aux_sym__val_number_token2] = ACTIONS(987), + [aux_sym__val_number_token3] = ACTIONS(987), + [aux_sym__val_number_token4] = ACTIONS(987), + [aux_sym__val_number_token5] = ACTIONS(987), + [aux_sym__val_number_token6] = ACTIONS(987), + [anon_sym_0b] = ACTIONS(985), + [anon_sym_0o] = ACTIONS(985), + [anon_sym_0x] = ACTIONS(985), + [sym_val_date] = ACTIONS(987), + [anon_sym_DQUOTE] = ACTIONS(987), + [sym__str_single_quotes] = ACTIONS(987), + [sym__str_back_ticks] = ACTIONS(987), + [anon_sym_err_GT] = ACTIONS(987), + [anon_sym_out_GT] = ACTIONS(987), + [anon_sym_e_GT] = ACTIONS(987), + [anon_sym_o_GT] = ACTIONS(987), + [anon_sym_err_PLUSout_GT] = ACTIONS(987), + [anon_sym_out_PLUSerr_GT] = ACTIONS(987), + [anon_sym_o_PLUSe_GT] = ACTIONS(987), + [anon_sym_e_PLUSo_GT] = ACTIONS(987), + [aux_sym_unquoted_token1] = ACTIONS(985), [anon_sym_POUND] = ACTIONS(3), }, - [835] = { - [sym_cell_path] = STATE(976), - [sym_path] = STATE(832), - [sym_comment] = STATE(835), + [990] = { + [sym_cell_path] = STATE(1221), + [sym_path] = STATE(1000), + [sym_comment] = STATE(990), + [ts_builtin_sym_end] = ACTIONS(994), + [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), + [anon_sym_SEMI] = ACTIONS(992), + [sym_cmd_identifier] = ACTIONS(992), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(992), + [anon_sym_DOLLAR] = ACTIONS(992), + [anon_sym_error] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_break] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_loop] = ACTIONS(992), + [anon_sym_while] = ACTIONS(992), + [anon_sym_do] = ACTIONS(992), + [anon_sym_if] = ACTIONS(992), + [anon_sym_match] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(992), + [anon_sym_DOT_DOT] = ACTIONS(992), + [anon_sym_try] = 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_where] = ACTIONS(992), + [anon_sym_not] = ACTIONS(992), + [anon_sym_DOT_DOT2] = ACTIONS(992), + [anon_sym_DOT] = ACTIONS(3393), + [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(992), + [anon_sym_true] = ACTIONS(992), + [anon_sym_false] = ACTIONS(992), + [aux_sym__val_number_decimal_token1] = ACTIONS(992), + [aux_sym__val_number_decimal_token2] = ACTIONS(992), + [anon_sym_DOT2] = ACTIONS(992), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(992), + [anon_sym_0o] = ACTIONS(992), + [anon_sym_0x] = ACTIONS(992), + [sym_val_date] = ACTIONS(992), + [anon_sym_DQUOTE] = ACTIONS(992), + [sym__str_single_quotes] = ACTIONS(992), + [sym__str_back_ticks] = ACTIONS(992), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(992), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(992), + [anon_sym_CARET] = ACTIONS(992), + [anon_sym_POUND] = ACTIONS(113), + }, + [991] = { + [sym_comment] = STATE(991), + [anon_sym_export] = ACTIONS(3354), + [anon_sym_alias] = ACTIONS(3354), + [anon_sym_let] = ACTIONS(3354), + [anon_sym_let_DASHenv] = ACTIONS(3354), + [anon_sym_mut] = ACTIONS(3354), + [anon_sym_const] = ACTIONS(3354), + [anon_sym_SEMI] = ACTIONS(3354), + [sym_cmd_identifier] = ACTIONS(3354), + [anon_sym_LF] = ACTIONS(3356), + [anon_sym_def] = ACTIONS(3354), + [anon_sym_export_DASHenv] = ACTIONS(3354), + [anon_sym_extern] = ACTIONS(3354), + [anon_sym_module] = ACTIONS(3354), + [anon_sym_use] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3354), + [anon_sym_RPAREN] = ACTIONS(3354), + [anon_sym_DOLLAR] = ACTIONS(3354), + [anon_sym_error] = ACTIONS(3354), + [anon_sym_DASH_DASH] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_loop] = ACTIONS(3354), + [anon_sym_while] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_match] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3354), + [anon_sym_RBRACE] = ACTIONS(3354), + [anon_sym_DOT_DOT] = ACTIONS(3354), + [anon_sym_try] = ACTIONS(3354), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_source] = ACTIONS(3354), + [anon_sym_source_DASHenv] = ACTIONS(3354), + [anon_sym_register] = ACTIONS(3354), + [anon_sym_hide] = ACTIONS(3354), + [anon_sym_hide_DASHenv] = ACTIONS(3354), + [anon_sym_overlay] = ACTIONS(3354), + [anon_sym_as] = ACTIONS(3354), + [anon_sym_where] = ACTIONS(3354), + [anon_sym_not] = ACTIONS(3354), + [anon_sym_DOT_DOT2] = ACTIONS(3472), + [anon_sym_DOT] = ACTIONS(3362), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3354), + [anon_sym_DOT_DOT_LT] = ACTIONS(3354), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3474), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3474), + [anon_sym_null] = ACTIONS(3354), + [anon_sym_true] = ACTIONS(3354), + [anon_sym_false] = ACTIONS(3354), + [aux_sym__val_number_decimal_token1] = ACTIONS(3354), + [aux_sym__val_number_decimal_token2] = ACTIONS(3354), + [anon_sym_DOT2] = ACTIONS(3354), + [aux_sym__val_number_decimal_token3] = ACTIONS(3354), + [aux_sym__val_number_token1] = ACTIONS(3354), + [aux_sym__val_number_token2] = ACTIONS(3354), + [aux_sym__val_number_token3] = ACTIONS(3354), + [aux_sym__val_number_token4] = ACTIONS(3354), + [aux_sym__val_number_token5] = ACTIONS(3354), + [aux_sym__val_number_token6] = ACTIONS(3354), + [anon_sym_0b] = ACTIONS(3354), + [anon_sym_0o] = ACTIONS(3354), + [anon_sym_0x] = ACTIONS(3354), + [sym_val_date] = ACTIONS(3354), + [anon_sym_DQUOTE] = ACTIONS(3354), + [sym__str_single_quotes] = ACTIONS(3354), + [sym__str_back_ticks] = ACTIONS(3354), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3354), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3354), + [anon_sym_CARET] = ACTIONS(3354), + [aux_sym_unquoted_token2] = ACTIONS(3362), + [anon_sym_POUND] = ACTIONS(113), + }, + [992] = { + [sym_comment] = STATE(992), + [anon_sym_export] = ACTIONS(3312), + [anon_sym_alias] = ACTIONS(3312), + [anon_sym_let] = ACTIONS(3312), + [anon_sym_let_DASHenv] = ACTIONS(3312), + [anon_sym_mut] = ACTIONS(3312), + [anon_sym_const] = ACTIONS(3312), + [anon_sym_SEMI] = ACTIONS(3312), + [sym_cmd_identifier] = ACTIONS(3312), + [anon_sym_LF] = ACTIONS(3314), + [anon_sym_def] = ACTIONS(3312), + [anon_sym_export_DASHenv] = ACTIONS(3312), + [anon_sym_extern] = ACTIONS(3312), + [anon_sym_module] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3312), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_RPAREN] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3312), + [anon_sym_error] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [anon_sym_DASH] = ACTIONS(3312), + [anon_sym_break] = ACTIONS(3312), + [anon_sym_continue] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3312), + [anon_sym_loop] = ACTIONS(3312), + [anon_sym_while] = ACTIONS(3312), + [anon_sym_do] = ACTIONS(3312), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_match] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_DOT_DOT] = ACTIONS(3312), + [anon_sym_try] = ACTIONS(3312), + [anon_sym_return] = ACTIONS(3312), + [anon_sym_source] = ACTIONS(3312), + [anon_sym_source_DASHenv] = ACTIONS(3312), + [anon_sym_register] = ACTIONS(3312), + [anon_sym_hide] = ACTIONS(3312), + [anon_sym_hide_DASHenv] = ACTIONS(3312), + [anon_sym_overlay] = ACTIONS(3312), + [anon_sym_as] = ACTIONS(3312), + [anon_sym_where] = ACTIONS(3312), + [anon_sym_not] = ACTIONS(3312), + [anon_sym_DOT_DOT2] = ACTIONS(3476), + [anon_sym_DOT] = ACTIONS(1844), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3312), + [anon_sym_DOT_DOT_LT] = ACTIONS(3312), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3478), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3478), + [anon_sym_null] = ACTIONS(3312), + [anon_sym_true] = ACTIONS(3312), + [anon_sym_false] = ACTIONS(3312), + [aux_sym__val_number_decimal_token1] = ACTIONS(3312), + [aux_sym__val_number_decimal_token2] = ACTIONS(3312), + [anon_sym_DOT2] = ACTIONS(3312), + [aux_sym__val_number_decimal_token3] = ACTIONS(3312), + [aux_sym__val_number_token1] = ACTIONS(3312), + [aux_sym__val_number_token2] = ACTIONS(3312), + [aux_sym__val_number_token3] = ACTIONS(3312), + [aux_sym__val_number_token4] = ACTIONS(3312), + [aux_sym__val_number_token5] = ACTIONS(3312), + [aux_sym__val_number_token6] = ACTIONS(3312), + [anon_sym_0b] = ACTIONS(3312), + [anon_sym_0o] = ACTIONS(3312), + [anon_sym_0x] = ACTIONS(3312), + [sym_val_date] = ACTIONS(3312), + [anon_sym_DQUOTE] = ACTIONS(3312), + [sym__str_single_quotes] = ACTIONS(3312), + [sym__str_back_ticks] = ACTIONS(3312), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3312), + [anon_sym_CARET] = ACTIONS(3312), + [aux_sym_unquoted_token2] = ACTIONS(1844), + [anon_sym_POUND] = ACTIONS(113), + }, + [993] = { + [sym_comment] = STATE(993), + [ts_builtin_sym_end] = ACTIONS(2404), + [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), + [anon_sym_SEMI] = ACTIONS(2402), + [sym_cmd_identifier] = ACTIONS(2402), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2402), + [anon_sym_LPAREN] = ACTIONS(2402), + [anon_sym_DOLLAR] = ACTIONS(2402), + [anon_sym_error] = ACTIONS(2402), + [anon_sym_DASH_DASH] = ACTIONS(2402), + [anon_sym_DASH] = ACTIONS(2402), + [anon_sym_break] = ACTIONS(2402), + [anon_sym_continue] = ACTIONS(2402), + [anon_sym_for] = ACTIONS(2402), + [anon_sym_loop] = ACTIONS(2402), + [anon_sym_while] = ACTIONS(2402), + [anon_sym_do] = ACTIONS(2402), + [anon_sym_if] = ACTIONS(2402), + [anon_sym_match] = ACTIONS(2402), + [anon_sym_LBRACE] = ACTIONS(2402), + [anon_sym_DOT_DOT] = ACTIONS(2402), + [anon_sym_try] = 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_where] = ACTIONS(2402), + [anon_sym_not] = ACTIONS(2402), + [anon_sym_LPAREN2] = ACTIONS(2404), + [anon_sym_DOT_DOT2] = ACTIONS(2402), + [anon_sym_DOT] = ACTIONS(2402), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2402), + [anon_sym_DOT_DOT_LT] = ACTIONS(2402), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2404), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2404), + [anon_sym_null] = ACTIONS(2402), + [anon_sym_true] = ACTIONS(2402), + [anon_sym_false] = ACTIONS(2402), + [aux_sym__val_number_decimal_token1] = ACTIONS(2402), + [aux_sym__val_number_decimal_token2] = ACTIONS(2402), + [anon_sym_DOT2] = ACTIONS(2402), + [aux_sym__val_number_decimal_token3] = ACTIONS(2402), + [aux_sym__val_number_token1] = ACTIONS(2402), + [aux_sym__val_number_token2] = ACTIONS(2402), + [aux_sym__val_number_token3] = ACTIONS(2402), + [aux_sym__val_number_token4] = ACTIONS(2402), + [aux_sym__val_number_token5] = ACTIONS(2402), + [aux_sym__val_number_token6] = ACTIONS(2402), + [anon_sym_0b] = ACTIONS(2402), + [anon_sym_0o] = ACTIONS(2402), + [anon_sym_0x] = ACTIONS(2402), + [sym_val_date] = 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_CARET] = ACTIONS(2402), + [aux_sym_unquoted_token2] = ACTIONS(2402), + [anon_sym_POUND] = ACTIONS(113), + }, + [994] = { + [sym_cell_path] = STATE(1161), + [sym_path] = STATE(950), + [sym_comment] = STATE(994), + [anon_sym_LBRACK] = ACTIONS(994), + [anon_sym_COMMA] = ACTIONS(994), + [anon_sym_RBRACK] = ACTIONS(994), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_DOLLAR] = ACTIONS(994), + [anon_sym_GT] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_in] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_DOT_DOT] = ACTIONS(992), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_STAR_STAR] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_SLASH] = ACTIONS(992), + [anon_sym_mod] = ACTIONS(994), + [anon_sym_SLASH_SLASH] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_bit_DASHshl] = ACTIONS(994), + [anon_sym_bit_DASHshr] = ACTIONS(994), + [anon_sym_EQ_EQ] = ACTIONS(994), + [anon_sym_BANG_EQ] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(992), + [anon_sym_LT_EQ] = ACTIONS(994), + [anon_sym_GT_EQ] = ACTIONS(994), + [anon_sym_not_DASHin] = ACTIONS(994), + [anon_sym_starts_DASHwith] = ACTIONS(994), + [anon_sym_ends_DASHwith] = ACTIONS(994), + [anon_sym_EQ_TILDE] = ACTIONS(994), + [anon_sym_BANG_TILDE] = ACTIONS(994), + [anon_sym_bit_DASHand] = ACTIONS(994), + [anon_sym_bit_DASHxor] = ACTIONS(994), + [anon_sym_bit_DASHor] = ACTIONS(994), + [anon_sym_and] = ACTIONS(994), + [anon_sym_xor] = ACTIONS(994), + [anon_sym_or] = ACTIONS(994), + [anon_sym_DOT_DOT2] = ACTIONS(992), + [anon_sym_DOT] = ACTIONS(3386), + [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), + [anon_sym_DOT2] = ACTIONS(992), + [aux_sym__val_number_decimal_token3] = 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_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [aux_sym__unquoted_in_list_token1] = ACTIONS(992), + [anon_sym_POUND] = ACTIONS(3), + }, + [995] = { + [sym_comment] = STATE(995), + [ts_builtin_sym_end] = ACTIONS(3314), + [anon_sym_export] = ACTIONS(3312), + [anon_sym_alias] = ACTIONS(3312), + [anon_sym_let] = ACTIONS(3312), + [anon_sym_let_DASHenv] = ACTIONS(3312), + [anon_sym_mut] = ACTIONS(3312), + [anon_sym_const] = ACTIONS(3312), + [anon_sym_SEMI] = ACTIONS(3312), + [sym_cmd_identifier] = ACTIONS(3312), + [anon_sym_LF] = ACTIONS(3314), + [anon_sym_def] = ACTIONS(3312), + [anon_sym_export_DASHenv] = ACTIONS(3312), + [anon_sym_extern] = ACTIONS(3312), + [anon_sym_module] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3312), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3312), + [anon_sym_error] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [anon_sym_DASH] = ACTIONS(3312), + [anon_sym_break] = ACTIONS(3312), + [anon_sym_continue] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3312), + [anon_sym_loop] = ACTIONS(3312), + [anon_sym_while] = ACTIONS(3312), + [anon_sym_do] = ACTIONS(3312), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_match] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_DOT_DOT] = ACTIONS(3312), + [anon_sym_try] = ACTIONS(3312), + [anon_sym_return] = ACTIONS(3312), + [anon_sym_source] = ACTIONS(3312), + [anon_sym_source_DASHenv] = ACTIONS(3312), + [anon_sym_register] = ACTIONS(3312), + [anon_sym_hide] = ACTIONS(3312), + [anon_sym_hide_DASHenv] = ACTIONS(3312), + [anon_sym_overlay] = ACTIONS(3312), + [anon_sym_as] = ACTIONS(3312), + [anon_sym_where] = ACTIONS(3312), + [anon_sym_not] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3316), + [anon_sym_DOT_DOT2] = ACTIONS(3480), + [anon_sym_DOT] = ACTIONS(1844), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3312), + [anon_sym_DOT_DOT_LT] = ACTIONS(3312), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3482), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3482), + [anon_sym_null] = ACTIONS(3312), + [anon_sym_true] = ACTIONS(3312), + [anon_sym_false] = ACTIONS(3312), + [aux_sym__val_number_decimal_token1] = ACTIONS(3312), + [aux_sym__val_number_decimal_token2] = ACTIONS(3312), + [anon_sym_DOT2] = ACTIONS(3312), + [aux_sym__val_number_decimal_token3] = ACTIONS(3312), + [aux_sym__val_number_token1] = ACTIONS(3312), + [aux_sym__val_number_token2] = ACTIONS(3312), + [aux_sym__val_number_token3] = ACTIONS(3312), + [aux_sym__val_number_token4] = ACTIONS(3312), + [aux_sym__val_number_token5] = ACTIONS(3312), + [aux_sym__val_number_token6] = ACTIONS(3312), + [anon_sym_0b] = ACTIONS(3312), + [anon_sym_0o] = ACTIONS(3312), + [anon_sym_0x] = ACTIONS(3312), + [sym_val_date] = ACTIONS(3312), + [anon_sym_DQUOTE] = ACTIONS(3312), + [sym__str_single_quotes] = ACTIONS(3312), + [sym__str_back_ticks] = ACTIONS(3312), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3312), + [anon_sym_CARET] = ACTIONS(3312), + [aux_sym_unquoted_token2] = ACTIONS(1844), + [anon_sym_POUND] = ACTIONS(113), + }, + [996] = { + [sym_comment] = STATE(996), + [ts_builtin_sym_end] = ACTIONS(3356), + [anon_sym_export] = ACTIONS(3354), + [anon_sym_alias] = ACTIONS(3354), + [anon_sym_let] = ACTIONS(3354), + [anon_sym_let_DASHenv] = ACTIONS(3354), + [anon_sym_mut] = ACTIONS(3354), + [anon_sym_const] = ACTIONS(3354), + [anon_sym_SEMI] = ACTIONS(3354), + [sym_cmd_identifier] = ACTIONS(3354), + [anon_sym_LF] = ACTIONS(3356), + [anon_sym_def] = ACTIONS(3354), + [anon_sym_export_DASHenv] = ACTIONS(3354), + [anon_sym_extern] = ACTIONS(3354), + [anon_sym_module] = ACTIONS(3354), + [anon_sym_use] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3354), + [anon_sym_DOLLAR] = ACTIONS(3354), + [anon_sym_error] = ACTIONS(3354), + [anon_sym_DASH_DASH] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_loop] = ACTIONS(3354), + [anon_sym_while] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_match] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3354), + [anon_sym_DOT_DOT] = ACTIONS(3354), + [anon_sym_try] = ACTIONS(3354), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_source] = ACTIONS(3354), + [anon_sym_source_DASHenv] = ACTIONS(3354), + [anon_sym_register] = ACTIONS(3354), + [anon_sym_hide] = ACTIONS(3354), + [anon_sym_hide_DASHenv] = ACTIONS(3354), + [anon_sym_overlay] = ACTIONS(3354), + [anon_sym_as] = ACTIONS(3354), + [anon_sym_where] = ACTIONS(3354), + [anon_sym_not] = ACTIONS(3354), + [anon_sym_LPAREN2] = ACTIONS(3358), + [anon_sym_DOT_DOT2] = ACTIONS(3484), + [anon_sym_DOT] = ACTIONS(3362), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3354), + [anon_sym_DOT_DOT_LT] = ACTIONS(3354), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3486), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3486), + [anon_sym_null] = ACTIONS(3354), + [anon_sym_true] = ACTIONS(3354), + [anon_sym_false] = ACTIONS(3354), + [aux_sym__val_number_decimal_token1] = ACTIONS(3354), + [aux_sym__val_number_decimal_token2] = ACTIONS(3354), + [anon_sym_DOT2] = ACTIONS(3354), + [aux_sym__val_number_decimal_token3] = ACTIONS(3354), + [aux_sym__val_number_token1] = ACTIONS(3354), + [aux_sym__val_number_token2] = ACTIONS(3354), + [aux_sym__val_number_token3] = ACTIONS(3354), + [aux_sym__val_number_token4] = ACTIONS(3354), + [aux_sym__val_number_token5] = ACTIONS(3354), + [aux_sym__val_number_token6] = ACTIONS(3354), + [anon_sym_0b] = ACTIONS(3354), + [anon_sym_0o] = ACTIONS(3354), + [anon_sym_0x] = ACTIONS(3354), + [sym_val_date] = ACTIONS(3354), + [anon_sym_DQUOTE] = ACTIONS(3354), + [sym__str_single_quotes] = ACTIONS(3354), + [sym__str_back_ticks] = ACTIONS(3354), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3354), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3354), + [anon_sym_CARET] = ACTIONS(3354), + [aux_sym_unquoted_token2] = ACTIONS(3362), + [anon_sym_POUND] = ACTIONS(113), + }, + [997] = { + [sym_comment] = STATE(997), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_alias] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_let_DASHenv] = ACTIONS(2229), + [anon_sym_mut] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2229), + [sym_cmd_identifier] = ACTIONS(2229), + [anon_sym_LF] = ACTIONS(2231), + [anon_sym_def] = ACTIONS(2229), + [anon_sym_export_DASHenv] = ACTIONS(2229), + [anon_sym_extern] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_RPAREN] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2229), + [anon_sym_error] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_loop] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_RBRACE] = ACTIONS(2229), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_source] = ACTIONS(2229), + [anon_sym_source_DASHenv] = ACTIONS(2229), + [anon_sym_register] = ACTIONS(2229), + [anon_sym_hide] = ACTIONS(2229), + [anon_sym_hide_DASHenv] = ACTIONS(2229), + [anon_sym_overlay] = ACTIONS(2229), + [anon_sym_as] = ACTIONS(2229), + [anon_sym_where] = ACTIONS(2229), + [anon_sym_not] = ACTIONS(2229), + [anon_sym_LPAREN2] = ACTIONS(2231), + [anon_sym_DOT] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2229), + [anon_sym_DOT_DOT_LT] = ACTIONS(2229), + [aux_sym__immediate_decimal_token1] = ACTIONS(3488), + [aux_sym__immediate_decimal_token2] = ACTIONS(3490), + [anon_sym_null] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [aux_sym__val_number_decimal_token1] = ACTIONS(2229), + [aux_sym__val_number_decimal_token2] = ACTIONS(2229), + [anon_sym_DOT2] = ACTIONS(2229), + [aux_sym__val_number_decimal_token3] = ACTIONS(2229), + [aux_sym__val_number_token1] = ACTIONS(2229), + [aux_sym__val_number_token2] = ACTIONS(2229), + [aux_sym__val_number_token3] = ACTIONS(2229), + [aux_sym__val_number_token4] = ACTIONS(2229), + [aux_sym__val_number_token5] = ACTIONS(2229), + [aux_sym__val_number_token6] = ACTIONS(2229), + [anon_sym_0b] = ACTIONS(2229), + [anon_sym_0o] = ACTIONS(2229), + [anon_sym_0x] = ACTIONS(2229), + [sym_val_date] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2229), + [anon_sym_CARET] = ACTIONS(2229), + [aux_sym_unquoted_token2] = ACTIONS(2229), + [anon_sym_POUND] = ACTIONS(113), + }, + [998] = { + [sym__immediate_decimal] = STATE(10080), + [sym_comment] = STATE(998), + [anon_sym_LBRACK] = ACTIONS(922), + [anon_sym_COMMA] = ACTIONS(922), + [anon_sym_LPAREN] = ACTIONS(922), + [anon_sym_DOLLAR] = ACTIONS(922), + [anon_sym_GT] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_in] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_RBRACE] = ACTIONS(922), + [anon_sym__] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_STAR_STAR] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_mod] = ACTIONS(922), + [anon_sym_SLASH_SLASH] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_bit_DASHshl] = ACTIONS(922), + [anon_sym_bit_DASHshr] = ACTIONS(922), + [anon_sym_EQ_EQ] = ACTIONS(922), + [anon_sym_BANG_EQ] = ACTIONS(922), + [anon_sym_LT2] = ACTIONS(920), + [anon_sym_LT_EQ] = ACTIONS(922), + [anon_sym_GT_EQ] = ACTIONS(922), + [anon_sym_not_DASHin] = ACTIONS(922), + [anon_sym_starts_DASHwith] = ACTIONS(922), + [anon_sym_ends_DASHwith] = ACTIONS(922), + [anon_sym_EQ_TILDE] = ACTIONS(922), + [anon_sym_BANG_TILDE] = ACTIONS(922), + [anon_sym_bit_DASHand] = ACTIONS(922), + [anon_sym_bit_DASHxor] = ACTIONS(922), + [anon_sym_bit_DASHor] = ACTIONS(922), + [anon_sym_and] = ACTIONS(922), + [anon_sym_xor] = ACTIONS(922), + [anon_sym_or] = ACTIONS(922), + [anon_sym_DOT] = ACTIONS(967), + [anon_sym_DOT_DOT_EQ] = ACTIONS(922), + [anon_sym_DOT_DOT_LT] = ACTIONS(922), + [aux_sym__immediate_decimal_token1] = ACTIONS(969), + [aux_sym__immediate_decimal_token3] = ACTIONS(1407), + [aux_sym__immediate_decimal_token4] = ACTIONS(1409), + [anon_sym_null] = ACTIONS(922), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(922), + [aux_sym__val_number_token2] = ACTIONS(922), + [aux_sym__val_number_token3] = ACTIONS(922), + [aux_sym__val_number_token4] = ACTIONS(922), + [aux_sym__val_number_token5] = ACTIONS(922), + [aux_sym__val_number_token6] = ACTIONS(922), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(922), + [anon_sym_DQUOTE] = ACTIONS(922), + [sym__str_single_quotes] = ACTIONS(922), + [sym__str_back_ticks] = ACTIONS(922), + [anon_sym_err_GT] = ACTIONS(922), + [anon_sym_out_GT] = ACTIONS(922), + [anon_sym_e_GT] = ACTIONS(922), + [anon_sym_o_GT] = ACTIONS(922), + [anon_sym_err_PLUSout_GT] = ACTIONS(922), + [anon_sym_out_PLUSerr_GT] = ACTIONS(922), + [anon_sym_o_PLUSe_GT] = ACTIONS(922), + [anon_sym_e_PLUSo_GT] = ACTIONS(922), + [aux_sym_unquoted_token1] = ACTIONS(920), + [aux_sym_unquoted_token4] = ACTIONS(3252), + [anon_sym_POUND] = ACTIONS(3), + }, + [999] = { + [sym_comment] = STATE(999), + [anon_sym_SEMI] = ACTIONS(893), + [anon_sym_LF] = ACTIONS(895), + [anon_sym_LBRACK] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(893), + [anon_sym_RPAREN] = ACTIONS(893), + [anon_sym_PIPE] = ACTIONS(893), + [anon_sym_DOLLAR] = ACTIONS(893), + [anon_sym_GT] = ACTIONS(893), + [anon_sym_DASH_DASH] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_in] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(893), + [anon_sym_DOT_DOT] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(893), + [anon_sym_STAR_STAR] = ACTIONS(893), + [anon_sym_PLUS_PLUS] = ACTIONS(893), + [anon_sym_SLASH] = ACTIONS(893), + [anon_sym_mod] = ACTIONS(893), + [anon_sym_SLASH_SLASH] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_bit_DASHshl] = ACTIONS(893), + [anon_sym_bit_DASHshr] = ACTIONS(893), + [anon_sym_EQ_EQ] = ACTIONS(893), + [anon_sym_BANG_EQ] = ACTIONS(893), + [anon_sym_LT2] = ACTIONS(893), + [anon_sym_LT_EQ] = ACTIONS(893), + [anon_sym_GT_EQ] = ACTIONS(893), + [anon_sym_not_DASHin] = ACTIONS(893), + [anon_sym_starts_DASHwith] = ACTIONS(893), + [anon_sym_ends_DASHwith] = ACTIONS(893), + [anon_sym_EQ_TILDE] = ACTIONS(893), + [anon_sym_BANG_TILDE] = ACTIONS(893), + [anon_sym_bit_DASHand] = ACTIONS(893), + [anon_sym_bit_DASHxor] = ACTIONS(893), + [anon_sym_bit_DASHor] = ACTIONS(893), + [anon_sym_and] = ACTIONS(893), + [anon_sym_xor] = ACTIONS(893), + [anon_sym_or] = ACTIONS(893), + [anon_sym_not] = ACTIONS(893), + [anon_sym_DOT_DOT2] = ACTIONS(893), + [anon_sym_DOT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ] = ACTIONS(893), + [anon_sym_DOT_DOT_LT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), + [anon_sym_DOT_DOT_LT2] = ACTIONS(895), + [aux_sym__immediate_decimal_token1] = ACTIONS(3492), + [aux_sym__immediate_decimal_token2] = ACTIONS(3494), + [anon_sym_null] = ACTIONS(893), + [anon_sym_true] = ACTIONS(893), + [anon_sym_false] = ACTIONS(893), + [aux_sym__val_number_decimal_token1] = ACTIONS(893), + [aux_sym__val_number_decimal_token2] = ACTIONS(893), + [anon_sym_DOT2] = ACTIONS(893), + [aux_sym__val_number_decimal_token3] = ACTIONS(893), + [aux_sym__val_number_token1] = ACTIONS(893), + [aux_sym__val_number_token2] = ACTIONS(893), + [aux_sym__val_number_token3] = ACTIONS(893), + [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(893), + [sym_filesize_unit] = ACTIONS(893), + [sym_duration_unit] = ACTIONS(895), + [anon_sym_0o] = ACTIONS(893), + [anon_sym_0x] = ACTIONS(893), + [sym_val_date] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(893), + [sym__str_single_quotes] = ACTIONS(893), + [sym__str_back_ticks] = ACTIONS(893), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(893), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(893), + [aux_sym_unquoted_token5] = ACTIONS(893), + [anon_sym_POUND] = ACTIONS(113), + }, + [1000] = { + [sym_path] = STATE(1083), + [sym_comment] = STATE(1000), + [aux_sym_cell_path_repeat1] = STATE(955), + [ts_builtin_sym_end] = ACTIONS(1012), [anon_sym_export] = ACTIONS(1010), [anon_sym_alias] = ACTIONS(1010), [anon_sym_let] = ACTIONS(1010), [anon_sym_let_DASHenv] = ACTIONS(1010), [anon_sym_mut] = ACTIONS(1010), [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), [anon_sym_def] = ACTIONS(1010), [anon_sym_export_DASHenv] = ACTIONS(1010), [anon_sym_extern] = ACTIONS(1010), [anon_sym_module] = ACTIONS(1010), [anon_sym_use] = ACTIONS(1010), - [anon_sym_LPAREN] = ACTIONS(1012), - [anon_sym_DOLLAR] = ACTIONS(1012), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), [anon_sym_error] = ACTIONS(1010), - [anon_sym_list] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), [anon_sym_DASH] = ACTIONS(1010), [anon_sym_break] = ACTIONS(1010), [anon_sym_continue] = ACTIONS(1010), [anon_sym_for] = ACTIONS(1010), - [anon_sym_in] = ACTIONS(1010), [anon_sym_loop] = ACTIONS(1010), - [anon_sym_make] = ACTIONS(1010), [anon_sym_while] = ACTIONS(1010), [anon_sym_do] = ACTIONS(1010), [anon_sym_if] = ACTIONS(1010), - [anon_sym_else] = ACTIONS(1010), [anon_sym_match] = ACTIONS(1010), - [anon_sym_RBRACE] = ACTIONS(1012), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), [anon_sym_try] = ACTIONS(1010), - [anon_sym_catch] = ACTIONS(1010), [anon_sym_return] = ACTIONS(1010), [anon_sym_source] = ACTIONS(1010), [anon_sym_source_DASHenv] = ACTIONS(1010), @@ -181698,105 +187866,828 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(1010), [anon_sym_hide_DASHenv] = ACTIONS(1010), [anon_sym_overlay] = ACTIONS(1010), - [anon_sym_new] = ACTIONS(1010), [anon_sym_as] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1010), - [anon_sym_STAR_STAR] = ACTIONS(1012), - [anon_sym_PLUS_PLUS] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1010), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1012), - [anon_sym_PLUS] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1012), - [anon_sym_BANG_EQ] = ACTIONS(1012), - [anon_sym_LT2] = ACTIONS(1010), - [anon_sym_LT_EQ] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1012), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1012), - [anon_sym_BANG_TILDE] = ACTIONS(1012), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(1705), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT2] = ACTIONS(1010), + [anon_sym_DOT] = ACTIONS(3393), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), + [anon_sym_null] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), [aux_sym__val_number_decimal_token1] = ACTIONS(1010), - [aux_sym__val_number_decimal_token2] = ACTIONS(1012), + [aux_sym__val_number_decimal_token2] = ACTIONS(1010), [anon_sym_DOT2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = 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_decimal_token3] = 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(1010), - [aux_sym__val_number_token5] = ACTIONS(1012), + [aux_sym__val_number_token5] = ACTIONS(1010), [aux_sym__val_number_token6] = ACTIONS(1010), - [anon_sym_DQUOTE] = ACTIONS(1012), - [sym__str_single_quotes] = ACTIONS(1012), - [sym__str_back_ticks] = ACTIONS(1012), - [aux_sym__record_key_token2] = ACTIONS(1010), - [anon_sym_POUND] = ACTIONS(3), - }, - [836] = { - [sym_comment] = STATE(836), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [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_CARET] = ACTIONS(1010), + [anon_sym_POUND] = ACTIONS(113), + }, + [1001] = { + [sym_comment] = STATE(1001), + [anon_sym_export] = ACTIONS(1033), + [anon_sym_alias] = ACTIONS(1033), + [anon_sym_let] = ACTIONS(1033), + [anon_sym_let_DASHenv] = ACTIONS(1033), + [anon_sym_mut] = ACTIONS(1033), + [anon_sym_const] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(1033), + [sym_cmd_identifier] = ACTIONS(1033), + [anon_sym_LF] = ACTIONS(1035), + [anon_sym_def] = ACTIONS(1033), + [anon_sym_export_DASHenv] = ACTIONS(1033), + [anon_sym_extern] = ACTIONS(1033), + [anon_sym_module] = ACTIONS(1033), + [anon_sym_use] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1033), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_RPAREN] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_error] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1033), + [anon_sym_break] = ACTIONS(1033), + [anon_sym_continue] = ACTIONS(1033), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_loop] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(1033), + [anon_sym_do] = ACTIONS(1033), + [anon_sym_if] = ACTIONS(1033), + [anon_sym_match] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1033), + [anon_sym_DOT_DOT] = ACTIONS(1033), + [anon_sym_try] = ACTIONS(1033), + [anon_sym_return] = ACTIONS(1033), + [anon_sym_source] = ACTIONS(1033), + [anon_sym_source_DASHenv] = ACTIONS(1033), + [anon_sym_register] = ACTIONS(1033), + [anon_sym_hide] = ACTIONS(1033), + [anon_sym_hide_DASHenv] = ACTIONS(1033), + [anon_sym_overlay] = ACTIONS(1033), + [anon_sym_as] = ACTIONS(1033), + [anon_sym_where] = ACTIONS(1033), + [anon_sym_QMARK2] = ACTIONS(1033), + [anon_sym_not] = ACTIONS(1033), + [anon_sym_DOT_DOT2] = ACTIONS(1033), + [anon_sym_DOT] = ACTIONS(1033), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1033), + [anon_sym_DOT_DOT_LT] = ACTIONS(1033), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1035), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1035), + [anon_sym_null] = ACTIONS(1033), + [anon_sym_true] = ACTIONS(1033), + [anon_sym_false] = ACTIONS(1033), + [aux_sym__val_number_decimal_token1] = ACTIONS(1033), + [aux_sym__val_number_decimal_token2] = ACTIONS(1033), + [anon_sym_DOT2] = ACTIONS(1033), + [aux_sym__val_number_decimal_token3] = ACTIONS(1033), + [aux_sym__val_number_token1] = ACTIONS(1033), + [aux_sym__val_number_token2] = ACTIONS(1033), + [aux_sym__val_number_token3] = ACTIONS(1033), + [aux_sym__val_number_token4] = ACTIONS(1033), + [aux_sym__val_number_token5] = ACTIONS(1033), + [aux_sym__val_number_token6] = ACTIONS(1033), + [anon_sym_0b] = ACTIONS(1033), + [anon_sym_0o] = ACTIONS(1033), + [anon_sym_0x] = ACTIONS(1033), + [sym_val_date] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [sym__str_single_quotes] = ACTIONS(1033), + [sym__str_back_ticks] = ACTIONS(1033), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1033), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1033), + [anon_sym_CARET] = ACTIONS(1033), + [anon_sym_POUND] = ACTIONS(113), + }, + [1002] = { + [sym_comment] = STATE(1002), + [anon_sym_export] = ACTIONS(1020), + [anon_sym_alias] = ACTIONS(1020), + [anon_sym_let] = ACTIONS(1020), + [anon_sym_let_DASHenv] = ACTIONS(1020), + [anon_sym_mut] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1020), + [sym_cmd_identifier] = ACTIONS(1020), + [anon_sym_LF] = ACTIONS(1022), + [anon_sym_def] = ACTIONS(1020), + [anon_sym_export_DASHenv] = ACTIONS(1020), + [anon_sym_extern] = ACTIONS(1020), + [anon_sym_module] = ACTIONS(1020), + [anon_sym_use] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1020), + [anon_sym_RPAREN] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_error] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1020), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_loop] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_match] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_RBRACE] = ACTIONS(1020), + [anon_sym_DOT_DOT] = ACTIONS(1020), + [anon_sym_try] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_source] = ACTIONS(1020), + [anon_sym_source_DASHenv] = ACTIONS(1020), + [anon_sym_register] = ACTIONS(1020), + [anon_sym_hide] = ACTIONS(1020), + [anon_sym_hide_DASHenv] = ACTIONS(1020), + [anon_sym_overlay] = ACTIONS(1020), + [anon_sym_as] = ACTIONS(1020), + [anon_sym_where] = ACTIONS(1020), + [anon_sym_QMARK2] = ACTIONS(1020), + [anon_sym_not] = ACTIONS(1020), + [anon_sym_DOT_DOT2] = ACTIONS(1020), + [anon_sym_DOT] = ACTIONS(1020), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1020), + [anon_sym_DOT_DOT_LT] = ACTIONS(1020), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1022), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1022), + [anon_sym_null] = ACTIONS(1020), + [anon_sym_true] = ACTIONS(1020), + [anon_sym_false] = ACTIONS(1020), + [aux_sym__val_number_decimal_token1] = ACTIONS(1020), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [anon_sym_DOT2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1020), + [aux_sym__val_number_token1] = ACTIONS(1020), + [aux_sym__val_number_token2] = ACTIONS(1020), + [aux_sym__val_number_token3] = ACTIONS(1020), + [aux_sym__val_number_token4] = ACTIONS(1020), + [aux_sym__val_number_token5] = ACTIONS(1020), + [aux_sym__val_number_token6] = ACTIONS(1020), + [anon_sym_0b] = ACTIONS(1020), + [anon_sym_0o] = ACTIONS(1020), + [anon_sym_0x] = ACTIONS(1020), + [sym_val_date] = ACTIONS(1020), + [anon_sym_DQUOTE] = ACTIONS(1020), + [sym__str_single_quotes] = ACTIONS(1020), + [sym__str_back_ticks] = ACTIONS(1020), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1020), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1020), + [anon_sym_CARET] = ACTIONS(1020), + [anon_sym_POUND] = ACTIONS(113), + }, + [1003] = { + [sym_comment] = STATE(1003), + [anon_sym_export] = ACTIONS(1024), + [anon_sym_alias] = ACTIONS(1024), + [anon_sym_let] = ACTIONS(1024), + [anon_sym_let_DASHenv] = ACTIONS(1024), + [anon_sym_mut] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1024), + [sym_cmd_identifier] = ACTIONS(1024), + [anon_sym_LF] = ACTIONS(1026), + [anon_sym_def] = ACTIONS(1024), + [anon_sym_export_DASHenv] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1024), + [anon_sym_module] = ACTIONS(1024), + [anon_sym_use] = ACTIONS(1024), + [anon_sym_LBRACK] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_RPAREN] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_error] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_loop] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_match] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym_RBRACE] = ACTIONS(1024), + [anon_sym_DOT_DOT] = ACTIONS(1024), + [anon_sym_try] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_source] = ACTIONS(1024), + [anon_sym_source_DASHenv] = ACTIONS(1024), + [anon_sym_register] = ACTIONS(1024), + [anon_sym_hide] = ACTIONS(1024), + [anon_sym_hide_DASHenv] = ACTIONS(1024), + [anon_sym_overlay] = ACTIONS(1024), + [anon_sym_as] = ACTIONS(1024), + [anon_sym_where] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(3449), + [anon_sym_not] = ACTIONS(1024), + [anon_sym_DOT_DOT2] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1026), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1026), + [anon_sym_null] = ACTIONS(1024), + [anon_sym_true] = ACTIONS(1024), + [anon_sym_false] = ACTIONS(1024), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1024), + [aux_sym__val_number_token1] = ACTIONS(1024), + [aux_sym__val_number_token2] = ACTIONS(1024), + [aux_sym__val_number_token3] = ACTIONS(1024), + [aux_sym__val_number_token4] = ACTIONS(1024), + [aux_sym__val_number_token5] = ACTIONS(1024), + [aux_sym__val_number_token6] = ACTIONS(1024), + [anon_sym_0b] = ACTIONS(1024), + [anon_sym_0o] = ACTIONS(1024), + [anon_sym_0x] = ACTIONS(1024), + [sym_val_date] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym__str_single_quotes] = ACTIONS(1024), + [sym__str_back_ticks] = ACTIONS(1024), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1024), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1024), + [anon_sym_CARET] = ACTIONS(1024), + [anon_sym_POUND] = ACTIONS(113), + }, + [1004] = { + [sym__flag] = STATE(2100), + [sym_short_flag] = STATE(2106), + [sym_long_flag] = STATE(2106), + [sym_long_flag_equals_value] = STATE(2237), + [sym_comment] = STATE(1004), + [aux_sym_overlay_use_repeat1] = STATE(1017), + [ts_builtin_sym_end] = ACTIONS(3465), + [anon_sym_export] = ACTIONS(3463), + [anon_sym_alias] = ACTIONS(3463), + [anon_sym_let] = ACTIONS(3463), + [anon_sym_let_DASHenv] = ACTIONS(3463), + [anon_sym_mut] = ACTIONS(3463), + [anon_sym_const] = ACTIONS(3463), + [anon_sym_SEMI] = ACTIONS(3463), + [sym_cmd_identifier] = ACTIONS(3463), + [anon_sym_LF] = ACTIONS(3465), + [anon_sym_def] = ACTIONS(3463), + [anon_sym_export_DASHenv] = ACTIONS(3463), + [anon_sym_extern] = ACTIONS(3463), + [anon_sym_module] = ACTIONS(3463), + [anon_sym_use] = ACTIONS(3463), + [anon_sym_LBRACK] = ACTIONS(3463), + [anon_sym_LPAREN] = ACTIONS(3463), + [anon_sym_DOLLAR] = ACTIONS(3463), + [anon_sym_error] = ACTIONS(3463), + [anon_sym_DASH_DASH] = ACTIONS(3496), + [anon_sym_DASH] = ACTIONS(3463), + [anon_sym_break] = ACTIONS(3463), + [anon_sym_continue] = ACTIONS(3463), + [anon_sym_for] = ACTIONS(3463), + [anon_sym_loop] = ACTIONS(3463), + [anon_sym_while] = ACTIONS(3463), + [anon_sym_do] = ACTIONS(3463), + [anon_sym_if] = ACTIONS(3463), + [anon_sym_match] = ACTIONS(3463), + [anon_sym_LBRACE] = ACTIONS(3463), + [anon_sym_DOT_DOT] = ACTIONS(3463), + [anon_sym_try] = ACTIONS(3463), + [anon_sym_return] = ACTIONS(3463), + [anon_sym_source] = ACTIONS(3463), + [anon_sym_source_DASHenv] = ACTIONS(3463), + [anon_sym_register] = ACTIONS(3463), + [anon_sym_hide] = ACTIONS(3463), + [anon_sym_hide_DASHenv] = ACTIONS(3463), + [anon_sym_overlay] = ACTIONS(3463), + [anon_sym_as] = ACTIONS(3498), + [anon_sym_where] = ACTIONS(3463), + [anon_sym_not] = ACTIONS(3463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3463), + [anon_sym_DOT_DOT_LT] = ACTIONS(3463), + [anon_sym_null] = ACTIONS(3463), + [anon_sym_true] = ACTIONS(3463), + [anon_sym_false] = ACTIONS(3463), + [aux_sym__val_number_decimal_token1] = ACTIONS(3463), + [aux_sym__val_number_decimal_token2] = ACTIONS(3463), + [anon_sym_DOT2] = ACTIONS(3463), + [aux_sym__val_number_decimal_token3] = ACTIONS(3463), + [aux_sym__val_number_token1] = ACTIONS(3463), + [aux_sym__val_number_token2] = ACTIONS(3463), + [aux_sym__val_number_token3] = ACTIONS(3463), + [aux_sym__val_number_token4] = ACTIONS(3463), + [aux_sym__val_number_token5] = ACTIONS(3463), + [aux_sym__val_number_token6] = ACTIONS(3463), + [anon_sym_0b] = ACTIONS(3463), + [anon_sym_0o] = ACTIONS(3463), + [anon_sym_0x] = ACTIONS(3463), + [sym_val_date] = ACTIONS(3463), + [anon_sym_DQUOTE] = ACTIONS(3463), + [sym__str_single_quotes] = ACTIONS(3463), + [sym__str_back_ticks] = ACTIONS(3463), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3463), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3463), + [anon_sym_CARET] = ACTIONS(3463), + [anon_sym_POUND] = ACTIONS(113), + }, + [1005] = { + [sym_comment] = STATE(1005), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_COMMA] = ACTIONS(1047), + [anon_sym_RBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1047), + [anon_sym_GT] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_in] = ACTIONS(1047), + [anon_sym_LBRACE] = ACTIONS(1047), + [anon_sym_DOT_DOT] = ACTIONS(1047), + [anon_sym_STAR] = ACTIONS(1047), + [anon_sym_STAR_STAR] = ACTIONS(1047), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_SLASH] = ACTIONS(1047), + [anon_sym_mod] = ACTIONS(1047), + [anon_sym_SLASH_SLASH] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1047), + [anon_sym_bit_DASHshl] = ACTIONS(1047), + [anon_sym_bit_DASHshr] = ACTIONS(1047), + [anon_sym_EQ_EQ] = ACTIONS(1047), + [anon_sym_BANG_EQ] = ACTIONS(1047), + [anon_sym_LT2] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1047), + [anon_sym_GT_EQ] = ACTIONS(1047), + [anon_sym_not_DASHin] = ACTIONS(1047), + [anon_sym_starts_DASHwith] = ACTIONS(1047), + [anon_sym_ends_DASHwith] = ACTIONS(1047), + [anon_sym_EQ_TILDE] = ACTIONS(1047), + [anon_sym_BANG_TILDE] = ACTIONS(1047), + [anon_sym_bit_DASHand] = ACTIONS(1047), + [anon_sym_bit_DASHxor] = ACTIONS(1047), + [anon_sym_bit_DASHor] = ACTIONS(1047), + [anon_sym_and] = ACTIONS(1047), + [anon_sym_xor] = ACTIONS(1047), + [anon_sym_or] = ACTIONS(1047), + [anon_sym_DOT_DOT2] = ACTIONS(1047), + [anon_sym_DOT] = ACTIONS(1047), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1047), + [anon_sym_DOT_DOT_LT] = ACTIONS(1047), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1049), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1049), + [anon_sym_null] = ACTIONS(1047), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [aux_sym__val_number_decimal_token1] = ACTIONS(1047), + [aux_sym__val_number_decimal_token2] = ACTIONS(1047), + [anon_sym_DOT2] = ACTIONS(1047), + [aux_sym__val_number_decimal_token3] = ACTIONS(1047), + [aux_sym__val_number_token1] = ACTIONS(1047), + [aux_sym__val_number_token2] = ACTIONS(1047), + [aux_sym__val_number_token3] = ACTIONS(1047), + [aux_sym__val_number_token4] = ACTIONS(1047), + [aux_sym__val_number_token5] = ACTIONS(1047), + [aux_sym__val_number_token6] = ACTIONS(1047), + [anon_sym_0b] = ACTIONS(1047), + [anon_sym_0o] = ACTIONS(1047), + [anon_sym_0x] = ACTIONS(1047), + [sym_val_date] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1047), + [sym__str_single_quotes] = ACTIONS(1047), + [sym__str_back_ticks] = ACTIONS(1047), + [sym__entry_separator] = ACTIONS(1049), + [anon_sym_err_GT] = ACTIONS(1047), + [anon_sym_out_GT] = ACTIONS(1047), + [anon_sym_e_GT] = ACTIONS(1047), + [anon_sym_o_GT] = ACTIONS(1047), + [anon_sym_err_PLUSout_GT] = ACTIONS(1047), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1047), + [anon_sym_o_PLUSe_GT] = ACTIONS(1047), + [anon_sym_e_PLUSo_GT] = ACTIONS(1047), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1047), + [anon_sym_POUND] = ACTIONS(113), + }, + [1006] = { + [sym_comment] = STATE(1006), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_alias] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_let_DASHenv] = ACTIONS(2229), + [anon_sym_mut] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2229), + [sym_cmd_identifier] = ACTIONS(2229), + [anon_sym_LF] = ACTIONS(2231), + [anon_sym_def] = ACTIONS(2229), + [anon_sym_export_DASHenv] = ACTIONS(2229), + [anon_sym_extern] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_RPAREN] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2229), + [anon_sym_error] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_loop] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_RBRACE] = ACTIONS(2229), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_source] = ACTIONS(2229), + [anon_sym_source_DASHenv] = ACTIONS(2229), + [anon_sym_register] = ACTIONS(2229), + [anon_sym_hide] = ACTIONS(2229), + [anon_sym_hide_DASHenv] = ACTIONS(2229), + [anon_sym_overlay] = ACTIONS(2229), + [anon_sym_as] = ACTIONS(2229), + [anon_sym_where] = ACTIONS(2229), + [anon_sym_not] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2229), + [anon_sym_DOT_DOT_LT] = ACTIONS(2229), + [aux_sym__immediate_decimal_token1] = ACTIONS(3500), + [aux_sym__immediate_decimal_token2] = ACTIONS(3502), + [anon_sym_null] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [aux_sym__val_number_decimal_token1] = ACTIONS(2229), + [aux_sym__val_number_decimal_token2] = ACTIONS(2229), + [anon_sym_DOT2] = ACTIONS(2229), + [aux_sym__val_number_decimal_token3] = ACTIONS(2229), + [aux_sym__val_number_token1] = ACTIONS(2229), + [aux_sym__val_number_token2] = ACTIONS(2229), + [aux_sym__val_number_token3] = ACTIONS(2229), + [aux_sym__val_number_token4] = ACTIONS(2229), + [aux_sym__val_number_token5] = ACTIONS(2229), + [aux_sym__val_number_token6] = ACTIONS(2229), + [anon_sym_0b] = ACTIONS(2229), + [anon_sym_0o] = ACTIONS(2229), + [anon_sym_0x] = ACTIONS(2229), + [sym_val_date] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2229), + [anon_sym_CARET] = ACTIONS(2229), + [aux_sym_unquoted_token2] = ACTIONS(2229), + [anon_sym_POUND] = ACTIONS(113), + }, + [1007] = { + [sym_comment] = STATE(1007), + [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), + [anon_sym_SEMI] = ACTIONS(2356), + [sym_cmd_identifier] = ACTIONS(2356), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2356), + [anon_sym_RPAREN] = ACTIONS(2356), + [anon_sym_DOLLAR] = ACTIONS(2356), + [anon_sym_error] = ACTIONS(2356), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_loop] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_match] = ACTIONS(2356), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_RBRACE] = ACTIONS(2356), + [anon_sym_DOT_DOT] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_source] = ACTIONS(2356), + [anon_sym_source_DASHenv] = ACTIONS(2356), + [anon_sym_register] = 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_where] = ACTIONS(2356), + [anon_sym_not] = ACTIONS(2356), + [anon_sym_LPAREN2] = ACTIONS(2358), + [anon_sym_DOT] = ACTIONS(3504), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2356), + [anon_sym_DOT_DOT_LT] = ACTIONS(2356), + [aux_sym__immediate_decimal_token2] = ACTIONS(3507), + [anon_sym_null] = ACTIONS(2356), + [anon_sym_true] = ACTIONS(2356), + [anon_sym_false] = ACTIONS(2356), + [aux_sym__val_number_decimal_token1] = ACTIONS(2356), + [aux_sym__val_number_decimal_token2] = ACTIONS(2356), + [anon_sym_DOT2] = ACTIONS(2356), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2356), + [anon_sym_0o] = ACTIONS(2356), + [anon_sym_0x] = ACTIONS(2356), + [sym_val_date] = 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_CARET] = ACTIONS(2356), + [aux_sym_unquoted_token2] = ACTIONS(2356), + [anon_sym_POUND] = ACTIONS(113), + }, + [1008] = { + [sym_comment] = STATE(1008), + [ts_builtin_sym_end] = ACTIONS(2231), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_alias] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_let_DASHenv] = ACTIONS(2229), + [anon_sym_mut] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2229), + [sym_cmd_identifier] = ACTIONS(2229), + [anon_sym_LF] = ACTIONS(2231), + [anon_sym_def] = ACTIONS(2229), + [anon_sym_export_DASHenv] = ACTIONS(2229), + [anon_sym_extern] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2229), + [anon_sym_error] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_loop] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_source] = ACTIONS(2229), + [anon_sym_source_DASHenv] = ACTIONS(2229), + [anon_sym_register] = ACTIONS(2229), + [anon_sym_hide] = ACTIONS(2229), + [anon_sym_hide_DASHenv] = ACTIONS(2229), + [anon_sym_overlay] = ACTIONS(2229), + [anon_sym_as] = ACTIONS(2229), + [anon_sym_where] = ACTIONS(2229), + [anon_sym_not] = ACTIONS(2229), + [anon_sym_LPAREN2] = ACTIONS(2231), + [anon_sym_DOT] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2229), + [anon_sym_DOT_DOT_LT] = ACTIONS(2229), + [aux_sym__immediate_decimal_token1] = ACTIONS(3509), + [aux_sym__immediate_decimal_token2] = ACTIONS(3511), + [anon_sym_null] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [aux_sym__val_number_decimal_token1] = ACTIONS(2229), + [aux_sym__val_number_decimal_token2] = ACTIONS(2229), + [anon_sym_DOT2] = ACTIONS(2229), + [aux_sym__val_number_decimal_token3] = ACTIONS(2229), + [aux_sym__val_number_token1] = ACTIONS(2229), + [aux_sym__val_number_token2] = ACTIONS(2229), + [aux_sym__val_number_token3] = ACTIONS(2229), + [aux_sym__val_number_token4] = ACTIONS(2229), + [aux_sym__val_number_token5] = ACTIONS(2229), + [aux_sym__val_number_token6] = ACTIONS(2229), + [anon_sym_0b] = ACTIONS(2229), + [anon_sym_0o] = ACTIONS(2229), + [anon_sym_0x] = ACTIONS(2229), + [sym_val_date] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2229), + [anon_sym_CARET] = ACTIONS(2229), + [aux_sym_unquoted_token2] = ACTIONS(2229), + [anon_sym_POUND] = ACTIONS(113), + }, + [1009] = { + [sym_comment] = STATE(1009), + [anon_sym_LBRACK] = ACTIONS(1026), + [anon_sym_COMMA] = ACTIONS(1026), + [anon_sym_RBRACK] = ACTIONS(1026), + [anon_sym_LPAREN] = ACTIONS(1026), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_GT] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1026), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1026), + [anon_sym_DOT_DOT] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(3513), + [anon_sym_STAR_STAR] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [anon_sym_SLASH] = ACTIONS(1024), + [anon_sym_mod] = ACTIONS(1026), + [anon_sym_SLASH_SLASH] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_bit_DASHshl] = ACTIONS(1026), + [anon_sym_bit_DASHshr] = ACTIONS(1026), + [anon_sym_EQ_EQ] = ACTIONS(1026), + [anon_sym_BANG_EQ] = ACTIONS(1026), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ] = ACTIONS(1026), + [anon_sym_GT_EQ] = ACTIONS(1026), + [anon_sym_not_DASHin] = ACTIONS(1026), + [anon_sym_starts_DASHwith] = ACTIONS(1026), + [anon_sym_ends_DASHwith] = ACTIONS(1026), + [anon_sym_EQ_TILDE] = ACTIONS(1026), + [anon_sym_BANG_TILDE] = ACTIONS(1026), + [anon_sym_bit_DASHand] = ACTIONS(1026), + [anon_sym_bit_DASHxor] = ACTIONS(1026), + [anon_sym_bit_DASHor] = ACTIONS(1026), + [anon_sym_and] = ACTIONS(1026), + [anon_sym_xor] = ACTIONS(1026), + [anon_sym_or] = ACTIONS(1026), + [anon_sym_DOT_DOT2] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1026), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1026), + [anon_sym_null] = ACTIONS(1026), + [anon_sym_true] = ACTIONS(1026), + [anon_sym_false] = ACTIONS(1026), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1026), + [aux_sym__val_number_token1] = ACTIONS(1026), + [aux_sym__val_number_token2] = ACTIONS(1026), + [aux_sym__val_number_token3] = ACTIONS(1026), + [aux_sym__val_number_token4] = ACTIONS(1026), + [aux_sym__val_number_token5] = ACTIONS(1026), + [aux_sym__val_number_token6] = ACTIONS(1026), + [anon_sym_0b] = ACTIONS(1024), + [anon_sym_0o] = ACTIONS(1024), + [anon_sym_0x] = ACTIONS(1024), + [sym_val_date] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(1026), + [sym__str_single_quotes] = ACTIONS(1026), + [sym__str_back_ticks] = ACTIONS(1026), + [anon_sym_err_GT] = ACTIONS(1026), + [anon_sym_out_GT] = ACTIONS(1026), + [anon_sym_e_GT] = ACTIONS(1026), + [anon_sym_o_GT] = ACTIONS(1026), + [anon_sym_err_PLUSout_GT] = ACTIONS(1026), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1026), + [anon_sym_o_PLUSe_GT] = ACTIONS(1026), + [anon_sym_e_PLUSo_GT] = ACTIONS(1026), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1024), + [anon_sym_POUND] = ACTIONS(3), + }, + [1010] = { + [sym_comment] = STATE(1010), + [anon_sym_LBRACK] = ACTIONS(1026), + [anon_sym_COMMA] = ACTIONS(1026), + [anon_sym_RBRACK] = ACTIONS(1026), + [anon_sym_LPAREN] = ACTIONS(1026), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_GT] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1026), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1026), + [anon_sym_DOT_DOT] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(3513), + [anon_sym_STAR_STAR] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [anon_sym_SLASH] = ACTIONS(1024), + [anon_sym_mod] = ACTIONS(1026), + [anon_sym_SLASH_SLASH] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_bit_DASHshl] = ACTIONS(1026), + [anon_sym_bit_DASHshr] = ACTIONS(1026), + [anon_sym_EQ_EQ] = ACTIONS(1026), + [anon_sym_BANG_EQ] = ACTIONS(1026), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ] = ACTIONS(1026), + [anon_sym_GT_EQ] = ACTIONS(1026), + [anon_sym_not_DASHin] = ACTIONS(1026), + [anon_sym_starts_DASHwith] = ACTIONS(1026), + [anon_sym_ends_DASHwith] = ACTIONS(1026), + [anon_sym_EQ_TILDE] = ACTIONS(1026), + [anon_sym_BANG_TILDE] = ACTIONS(1026), + [anon_sym_bit_DASHand] = ACTIONS(1026), + [anon_sym_bit_DASHxor] = ACTIONS(1026), + [anon_sym_bit_DASHor] = ACTIONS(1026), + [anon_sym_and] = ACTIONS(1026), + [anon_sym_xor] = ACTIONS(1026), + [anon_sym_or] = ACTIONS(1026), + [anon_sym_DOT_DOT2] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1026), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1026), + [anon_sym_null] = ACTIONS(1026), + [anon_sym_true] = ACTIONS(1026), + [anon_sym_false] = ACTIONS(1026), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1026), + [aux_sym__val_number_token1] = ACTIONS(1026), + [aux_sym__val_number_token2] = ACTIONS(1026), + [aux_sym__val_number_token3] = ACTIONS(1026), + [aux_sym__val_number_token4] = ACTIONS(1026), + [aux_sym__val_number_token5] = ACTIONS(1026), + [aux_sym__val_number_token6] = ACTIONS(1026), + [anon_sym_0b] = ACTIONS(1024), + [anon_sym_0o] = ACTIONS(1024), + [anon_sym_0x] = ACTIONS(1024), + [sym_val_date] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(1026), + [sym__str_single_quotes] = ACTIONS(1026), + [sym__str_back_ticks] = ACTIONS(1026), + [anon_sym_err_GT] = ACTIONS(1026), + [anon_sym_out_GT] = ACTIONS(1026), + [anon_sym_e_GT] = ACTIONS(1026), + [anon_sym_o_GT] = ACTIONS(1026), + [anon_sym_err_PLUSout_GT] = ACTIONS(1026), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1026), + [anon_sym_o_PLUSe_GT] = ACTIONS(1026), + [anon_sym_e_PLUSo_GT] = ACTIONS(1026), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1024), + [anon_sym_POUND] = ACTIONS(3), + }, + [1011] = { + [sym_comment] = STATE(1011), + [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_COMMA] = ACTIONS(936), [anon_sym_LPAREN] = ACTIONS(936), [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_error] = ACTIONS(936), - [anon_sym_list] = ACTIONS(936), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_make] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_else] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), + [anon_sym_GT] = ACTIONS(934), + [anon_sym_DASH] = ACTIONS(934), + [anon_sym_in] = ACTIONS(934), + [anon_sym_LBRACE] = ACTIONS(936), [anon_sym_RBRACE] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_catch] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_new] = ACTIONS(936), - [anon_sym_as] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), + [anon_sym__] = ACTIONS(934), + [anon_sym_DOT_DOT] = ACTIONS(934), + [anon_sym_STAR] = ACTIONS(934), [anon_sym_STAR_STAR] = ACTIONS(936), [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(936), + [anon_sym_SLASH] = ACTIONS(934), [anon_sym_mod] = ACTIONS(936), [anon_sym_SLASH_SLASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), + [anon_sym_PLUS] = ACTIONS(934), [anon_sym_bit_DASHshl] = ACTIONS(936), [anon_sym_bit_DASHshr] = ACTIONS(936), [anon_sym_EQ_EQ] = ACTIONS(936), [anon_sym_BANG_EQ] = ACTIONS(936), - [anon_sym_LT2] = ACTIONS(936), + [anon_sym_LT2] = ACTIONS(934), [anon_sym_LT_EQ] = ACTIONS(936), [anon_sym_GT_EQ] = ACTIONS(936), [anon_sym_not_DASHin] = ACTIONS(936), @@ -181810,10 +188701,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(936), [anon_sym_xor] = ACTIONS(936), [anon_sym_or] = ACTIONS(936), - [aux_sym__immediate_decimal_token1] = ACTIONS(1710), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), + [anon_sym_DOT_DOT2] = ACTIONS(934), + [anon_sym_DOT_DOT_EQ] = ACTIONS(934), + [anon_sym_DOT_DOT_LT] = ACTIONS(934), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(936), + [anon_sym_DOT_DOT_LT2] = ACTIONS(936), + [anon_sym_null] = ACTIONS(936), + [anon_sym_true] = ACTIONS(936), + [anon_sym_false] = ACTIONS(936), + [aux_sym__val_number_decimal_token1] = ACTIONS(934), [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), + [anon_sym_DOT2] = ACTIONS(934), [aux_sym__val_number_decimal_token3] = ACTIONS(936), [aux_sym__val_number_token1] = ACTIONS(936), [aux_sym__val_number_token2] = ACTIONS(936), @@ -181821,37479 +188719,36032 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token4] = ACTIONS(936), [aux_sym__val_number_token5] = ACTIONS(936), [aux_sym__val_number_token6] = ACTIONS(936), + [anon_sym_0b] = ACTIONS(934), + [sym_filesize_unit] = ACTIONS(934), + [sym_duration_unit] = ACTIONS(936), + [anon_sym_0o] = ACTIONS(934), + [anon_sym_0x] = ACTIONS(934), + [sym_val_date] = ACTIONS(936), [anon_sym_DQUOTE] = ACTIONS(936), [sym__str_single_quotes] = ACTIONS(936), [sym__str_back_ticks] = ACTIONS(936), - [sym__entry_separator] = ACTIONS(938), - [aux_sym__record_key_token2] = ACTIONS(936), - [aux_sym_unquoted_token2] = ACTIONS(1712), + [anon_sym_err_GT] = ACTIONS(936), + [anon_sym_out_GT] = ACTIONS(936), + [anon_sym_e_GT] = ACTIONS(936), + [anon_sym_o_GT] = ACTIONS(936), + [anon_sym_err_PLUSout_GT] = ACTIONS(936), + [anon_sym_out_PLUSerr_GT] = ACTIONS(936), + [anon_sym_o_PLUSe_GT] = ACTIONS(936), + [anon_sym_e_PLUSo_GT] = ACTIONS(936), + [aux_sym_unquoted_token1] = ACTIONS(934), + [anon_sym_POUND] = ACTIONS(3), + }, + [1012] = { + [sym__command_name] = STATE(2457), + [sym_scope_pattern] = STATE(2476), + [sym_wild_card] = STATE(2459), + [sym_command_list] = STATE(2518), + [sym_val_string] = STATE(2364), + [sym__str_double_quotes] = STATE(2294), + [sym_comment] = STATE(1012), + [ts_builtin_sym_end] = ACTIONS(3397), + [anon_sym_export] = ACTIONS(3395), + [anon_sym_alias] = ACTIONS(3395), + [anon_sym_let] = ACTIONS(3395), + [anon_sym_let_DASHenv] = ACTIONS(3395), + [anon_sym_mut] = ACTIONS(3395), + [anon_sym_const] = ACTIONS(3395), + [anon_sym_SEMI] = ACTIONS(3395), + [sym_cmd_identifier] = ACTIONS(3515), + [anon_sym_LF] = ACTIONS(3397), + [anon_sym_def] = ACTIONS(3395), + [anon_sym_export_DASHenv] = ACTIONS(3395), + [anon_sym_extern] = ACTIONS(3395), + [anon_sym_module] = ACTIONS(3395), + [anon_sym_use] = ACTIONS(3395), + [anon_sym_LBRACK] = ACTIONS(3517), + [anon_sym_LPAREN] = ACTIONS(3395), + [anon_sym_DOLLAR] = ACTIONS(3395), + [anon_sym_error] = ACTIONS(3395), + [anon_sym_DASH] = ACTIONS(3395), + [anon_sym_break] = ACTIONS(3395), + [anon_sym_continue] = ACTIONS(3395), + [anon_sym_for] = ACTIONS(3395), + [anon_sym_loop] = ACTIONS(3395), + [anon_sym_while] = ACTIONS(3395), + [anon_sym_do] = ACTIONS(3395), + [anon_sym_if] = ACTIONS(3395), + [anon_sym_match] = ACTIONS(3395), + [anon_sym_LBRACE] = ACTIONS(3395), + [anon_sym_DOT_DOT] = ACTIONS(3395), + [anon_sym_try] = ACTIONS(3395), + [anon_sym_return] = ACTIONS(3395), + [anon_sym_source] = ACTIONS(3395), + [anon_sym_source_DASHenv] = ACTIONS(3395), + [anon_sym_register] = ACTIONS(3395), + [anon_sym_hide] = ACTIONS(3395), + [anon_sym_hide_DASHenv] = ACTIONS(3395), + [anon_sym_overlay] = ACTIONS(3395), + [anon_sym_STAR] = ACTIONS(3519), + [anon_sym_where] = ACTIONS(3395), + [anon_sym_not] = ACTIONS(3395), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3395), + [anon_sym_DOT_DOT_LT] = ACTIONS(3395), + [anon_sym_null] = ACTIONS(3395), + [anon_sym_true] = ACTIONS(3395), + [anon_sym_false] = ACTIONS(3395), + [aux_sym__val_number_decimal_token1] = ACTIONS(3395), + [aux_sym__val_number_decimal_token2] = ACTIONS(3395), + [anon_sym_DOT2] = ACTIONS(3395), + [aux_sym__val_number_decimal_token3] = ACTIONS(3395), + [aux_sym__val_number_token1] = ACTIONS(3395), + [aux_sym__val_number_token2] = ACTIONS(3395), + [aux_sym__val_number_token3] = ACTIONS(3395), + [aux_sym__val_number_token4] = ACTIONS(3395), + [aux_sym__val_number_token5] = ACTIONS(3395), + [aux_sym__val_number_token6] = ACTIONS(3395), + [anon_sym_0b] = ACTIONS(3395), + [anon_sym_0o] = ACTIONS(3395), + [anon_sym_0x] = ACTIONS(3395), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(3521), + [sym__str_single_quotes] = ACTIONS(3523), + [sym__str_back_ticks] = ACTIONS(3523), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3395), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3395), + [anon_sym_CARET] = ACTIONS(3395), [anon_sym_POUND] = ACTIONS(113), }, - [837] = { - [sym_comment] = STATE(837), - [anon_sym_export] = ACTIONS(1172), - [anon_sym_alias] = ACTIONS(1172), - [anon_sym_let] = ACTIONS(1172), - [anon_sym_let_DASHenv] = ACTIONS(1172), - [anon_sym_mut] = ACTIONS(1172), - [anon_sym_const] = ACTIONS(1172), - [sym_cmd_identifier] = ACTIONS(1172), - [anon_sym_def] = ACTIONS(1172), - [anon_sym_export_DASHenv] = ACTIONS(1172), - [anon_sym_extern] = ACTIONS(1172), - [anon_sym_module] = ACTIONS(1172), - [anon_sym_use] = ACTIONS(1172), - [anon_sym_LPAREN] = ACTIONS(1174), - [anon_sym_DOLLAR] = ACTIONS(1174), - [anon_sym_error] = ACTIONS(1172), - [anon_sym_list] = ACTIONS(1172), - [anon_sym_GT] = ACTIONS(1172), - [anon_sym_DASH] = ACTIONS(1172), - [anon_sym_break] = ACTIONS(1172), - [anon_sym_continue] = ACTIONS(1172), - [anon_sym_for] = ACTIONS(1172), - [anon_sym_in] = ACTIONS(1172), - [anon_sym_loop] = ACTIONS(1172), - [anon_sym_make] = ACTIONS(1172), - [anon_sym_while] = ACTIONS(1172), - [anon_sym_do] = ACTIONS(1172), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_else] = ACTIONS(1172), - [anon_sym_match] = ACTIONS(1172), - [anon_sym_RBRACE] = ACTIONS(1174), - [anon_sym_try] = ACTIONS(1172), - [anon_sym_catch] = ACTIONS(1172), - [anon_sym_return] = ACTIONS(1172), - [anon_sym_source] = ACTIONS(1172), - [anon_sym_source_DASHenv] = ACTIONS(1172), - [anon_sym_register] = ACTIONS(1172), - [anon_sym_hide] = ACTIONS(1172), - [anon_sym_hide_DASHenv] = ACTIONS(1172), - [anon_sym_overlay] = ACTIONS(1172), - [anon_sym_new] = ACTIONS(1172), - [anon_sym_as] = ACTIONS(1172), - [anon_sym_STAR] = ACTIONS(1172), - [anon_sym_STAR_STAR] = ACTIONS(1174), - [anon_sym_PLUS_PLUS] = ACTIONS(1174), - [anon_sym_SLASH] = ACTIONS(1172), - [anon_sym_mod] = ACTIONS(1172), - [anon_sym_SLASH_SLASH] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1172), - [anon_sym_bit_DASHshl] = ACTIONS(1172), - [anon_sym_bit_DASHshr] = ACTIONS(1172), - [anon_sym_EQ_EQ] = ACTIONS(1174), - [anon_sym_BANG_EQ] = ACTIONS(1174), - [anon_sym_LT2] = ACTIONS(1172), - [anon_sym_LT_EQ] = ACTIONS(1174), - [anon_sym_GT_EQ] = ACTIONS(1174), - [anon_sym_not_DASHin] = ACTIONS(1172), - [anon_sym_starts_DASHwith] = ACTIONS(1172), - [anon_sym_ends_DASHwith] = ACTIONS(1172), - [anon_sym_EQ_TILDE] = ACTIONS(1174), - [anon_sym_BANG_TILDE] = ACTIONS(1174), - [anon_sym_bit_DASHand] = ACTIONS(1172), - [anon_sym_bit_DASHxor] = ACTIONS(1172), - [anon_sym_bit_DASHor] = ACTIONS(1172), - [anon_sym_and] = ACTIONS(1172), - [anon_sym_xor] = ACTIONS(1172), - [anon_sym_or] = ACTIONS(1172), - [anon_sym_DOT_DOT2] = ACTIONS(1172), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1174), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1174), - [aux_sym__val_number_decimal_token1] = ACTIONS(1172), - [aux_sym__val_number_decimal_token2] = ACTIONS(1174), - [anon_sym_DOT2] = ACTIONS(1172), - [aux_sym__val_number_decimal_token3] = ACTIONS(1174), - [aux_sym__val_number_token1] = ACTIONS(1174), - [aux_sym__val_number_token2] = ACTIONS(1174), - [aux_sym__val_number_token3] = ACTIONS(1174), - [aux_sym__val_number_token4] = ACTIONS(1172), - [aux_sym__val_number_token5] = ACTIONS(1174), - [aux_sym__val_number_token6] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(1174), - [sym__str_single_quotes] = ACTIONS(1174), - [sym__str_back_ticks] = ACTIONS(1174), - [aux_sym__record_key_token2] = ACTIONS(1172), - [anon_sym_POUND] = ACTIONS(3), + [1013] = { + [sym_comment] = STATE(1013), + [anon_sym_LBRACK] = ACTIONS(1037), + [anon_sym_COMMA] = ACTIONS(1037), + [anon_sym_RBRACK] = ACTIONS(1037), + [anon_sym_LPAREN] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1037), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_in] = ACTIONS(1037), + [anon_sym_LBRACE] = ACTIONS(1037), + [anon_sym_DOT_DOT] = ACTIONS(1037), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_STAR_STAR] = ACTIONS(1037), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1037), + [anon_sym_mod] = ACTIONS(1037), + [anon_sym_SLASH_SLASH] = ACTIONS(1037), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_bit_DASHshl] = ACTIONS(1037), + [anon_sym_bit_DASHshr] = ACTIONS(1037), + [anon_sym_EQ_EQ] = ACTIONS(1037), + [anon_sym_BANG_EQ] = ACTIONS(1037), + [anon_sym_LT2] = ACTIONS(1037), + [anon_sym_LT_EQ] = ACTIONS(1037), + [anon_sym_GT_EQ] = ACTIONS(1037), + [anon_sym_not_DASHin] = ACTIONS(1037), + [anon_sym_starts_DASHwith] = ACTIONS(1037), + [anon_sym_ends_DASHwith] = ACTIONS(1037), + [anon_sym_EQ_TILDE] = ACTIONS(1037), + [anon_sym_BANG_TILDE] = ACTIONS(1037), + [anon_sym_bit_DASHand] = ACTIONS(1037), + [anon_sym_bit_DASHxor] = ACTIONS(1037), + [anon_sym_bit_DASHor] = ACTIONS(1037), + [anon_sym_and] = ACTIONS(1037), + [anon_sym_xor] = ACTIONS(1037), + [anon_sym_or] = ACTIONS(1037), + [anon_sym_DOT_DOT2] = ACTIONS(1037), + [anon_sym_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1037), + [anon_sym_DOT_DOT_LT] = ACTIONS(1037), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1039), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1039), + [anon_sym_null] = ACTIONS(1037), + [anon_sym_true] = ACTIONS(1037), + [anon_sym_false] = ACTIONS(1037), + [aux_sym__val_number_decimal_token1] = ACTIONS(1037), + [aux_sym__val_number_decimal_token2] = ACTIONS(1037), + [anon_sym_DOT2] = ACTIONS(1037), + [aux_sym__val_number_decimal_token3] = ACTIONS(1037), + [aux_sym__val_number_token1] = ACTIONS(1037), + [aux_sym__val_number_token2] = ACTIONS(1037), + [aux_sym__val_number_token3] = ACTIONS(1037), + [aux_sym__val_number_token4] = ACTIONS(1037), + [aux_sym__val_number_token5] = ACTIONS(1037), + [aux_sym__val_number_token6] = ACTIONS(1037), + [anon_sym_0b] = ACTIONS(1037), + [anon_sym_0o] = ACTIONS(1037), + [anon_sym_0x] = ACTIONS(1037), + [sym_val_date] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1037), + [sym__str_single_quotes] = ACTIONS(1037), + [sym__str_back_ticks] = ACTIONS(1037), + [sym__entry_separator] = ACTIONS(1039), + [anon_sym_err_GT] = ACTIONS(1037), + [anon_sym_out_GT] = ACTIONS(1037), + [anon_sym_e_GT] = ACTIONS(1037), + [anon_sym_o_GT] = ACTIONS(1037), + [anon_sym_err_PLUSout_GT] = ACTIONS(1037), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1037), + [anon_sym_o_PLUSe_GT] = ACTIONS(1037), + [anon_sym_e_PLUSo_GT] = ACTIONS(1037), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1037), + [anon_sym_POUND] = ACTIONS(113), }, - [838] = { - [sym_comment] = STATE(838), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_alias] = ACTIONS(1070), - [anon_sym_let] = ACTIONS(1070), - [anon_sym_let_DASHenv] = ACTIONS(1070), - [anon_sym_mut] = ACTIONS(1070), - [anon_sym_const] = ACTIONS(1070), - [sym_cmd_identifier] = ACTIONS(1070), - [anon_sym_def] = ACTIONS(1070), - [anon_sym_export_DASHenv] = ACTIONS(1070), - [anon_sym_extern] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_use] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_error] = ACTIONS(1070), - [anon_sym_list] = ACTIONS(1070), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_in] = ACTIONS(1070), - [anon_sym_loop] = ACTIONS(1070), - [anon_sym_make] = ACTIONS(1070), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_do] = ACTIONS(1070), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_else] = ACTIONS(1070), - [anon_sym_match] = ACTIONS(1070), - [anon_sym_RBRACE] = ACTIONS(1070), - [anon_sym_try] = ACTIONS(1070), - [anon_sym_catch] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_source] = ACTIONS(1070), - [anon_sym_source_DASHenv] = ACTIONS(1070), - [anon_sym_register] = ACTIONS(1070), - [anon_sym_hide] = ACTIONS(1070), - [anon_sym_hide_DASHenv] = ACTIONS(1070), - [anon_sym_overlay] = ACTIONS(1070), - [anon_sym_new] = ACTIONS(1070), - [anon_sym_as] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(1714), - [anon_sym_STAR_STAR] = ACTIONS(1070), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_mod] = ACTIONS(1070), - [anon_sym_SLASH_SLASH] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_bit_DASHshl] = ACTIONS(1070), - [anon_sym_bit_DASHshr] = ACTIONS(1070), - [anon_sym_EQ_EQ] = ACTIONS(1070), - [anon_sym_BANG_EQ] = ACTIONS(1070), - [anon_sym_LT2] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1070), - [anon_sym_GT_EQ] = ACTIONS(1070), - [anon_sym_not_DASHin] = ACTIONS(1070), - [anon_sym_starts_DASHwith] = ACTIONS(1070), - [anon_sym_ends_DASHwith] = ACTIONS(1070), - [anon_sym_EQ_TILDE] = ACTIONS(1070), - [anon_sym_BANG_TILDE] = ACTIONS(1070), - [anon_sym_bit_DASHand] = ACTIONS(1070), - [anon_sym_bit_DASHxor] = ACTIONS(1070), - [anon_sym_bit_DASHor] = ACTIONS(1070), - [anon_sym_and] = ACTIONS(1070), - [anon_sym_xor] = ACTIONS(1070), - [anon_sym_or] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1072), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1070), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [sym__entry_separator] = ACTIONS(1072), - [aux_sym__record_key_token2] = ACTIONS(1070), + [1014] = { + [sym_comment] = STATE(1014), + [anon_sym_LBRACK] = ACTIONS(1041), + [anon_sym_COMMA] = ACTIONS(1041), + [anon_sym_RBRACK] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1041), + [anon_sym_DOLLAR] = ACTIONS(1041), + [anon_sym_GT] = ACTIONS(1041), + [anon_sym_DASH_DASH] = ACTIONS(1041), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_in] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_DOT_DOT] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_STAR_STAR] = ACTIONS(1041), + [anon_sym_PLUS_PLUS] = ACTIONS(1041), + [anon_sym_SLASH] = ACTIONS(1041), + [anon_sym_mod] = ACTIONS(1041), + [anon_sym_SLASH_SLASH] = ACTIONS(1041), + [anon_sym_PLUS] = ACTIONS(1041), + [anon_sym_bit_DASHshl] = ACTIONS(1041), + [anon_sym_bit_DASHshr] = ACTIONS(1041), + [anon_sym_EQ_EQ] = ACTIONS(1041), + [anon_sym_BANG_EQ] = ACTIONS(1041), + [anon_sym_LT2] = ACTIONS(1041), + [anon_sym_LT_EQ] = ACTIONS(1041), + [anon_sym_GT_EQ] = ACTIONS(1041), + [anon_sym_not_DASHin] = ACTIONS(1041), + [anon_sym_starts_DASHwith] = ACTIONS(1041), + [anon_sym_ends_DASHwith] = ACTIONS(1041), + [anon_sym_EQ_TILDE] = ACTIONS(1041), + [anon_sym_BANG_TILDE] = ACTIONS(1041), + [anon_sym_bit_DASHand] = ACTIONS(1041), + [anon_sym_bit_DASHxor] = ACTIONS(1041), + [anon_sym_bit_DASHor] = ACTIONS(1041), + [anon_sym_and] = ACTIONS(1041), + [anon_sym_xor] = ACTIONS(1041), + [anon_sym_or] = ACTIONS(1041), + [anon_sym_DOT_DOT2] = ACTIONS(1041), + [anon_sym_DOT] = ACTIONS(1041), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1041), + [anon_sym_DOT_DOT_LT] = ACTIONS(1041), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1043), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1043), + [anon_sym_null] = ACTIONS(1041), + [anon_sym_true] = ACTIONS(1041), + [anon_sym_false] = ACTIONS(1041), + [aux_sym__val_number_decimal_token1] = ACTIONS(1041), + [aux_sym__val_number_decimal_token2] = ACTIONS(1041), + [anon_sym_DOT2] = ACTIONS(1041), + [aux_sym__val_number_decimal_token3] = ACTIONS(1041), + [aux_sym__val_number_token1] = ACTIONS(1041), + [aux_sym__val_number_token2] = ACTIONS(1041), + [aux_sym__val_number_token3] = ACTIONS(1041), + [aux_sym__val_number_token4] = ACTIONS(1041), + [aux_sym__val_number_token5] = ACTIONS(1041), + [aux_sym__val_number_token6] = ACTIONS(1041), + [anon_sym_0b] = ACTIONS(1041), + [anon_sym_0o] = ACTIONS(1041), + [anon_sym_0x] = ACTIONS(1041), + [sym_val_date] = ACTIONS(1041), + [anon_sym_DQUOTE] = ACTIONS(1041), + [sym__str_single_quotes] = ACTIONS(1041), + [sym__str_back_ticks] = ACTIONS(1041), + [sym__entry_separator] = ACTIONS(1043), + [anon_sym_err_GT] = ACTIONS(1041), + [anon_sym_out_GT] = ACTIONS(1041), + [anon_sym_e_GT] = ACTIONS(1041), + [anon_sym_o_GT] = ACTIONS(1041), + [anon_sym_err_PLUSout_GT] = ACTIONS(1041), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1041), + [anon_sym_o_PLUSe_GT] = ACTIONS(1041), + [anon_sym_e_PLUSo_GT] = ACTIONS(1041), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1041), [anon_sym_POUND] = ACTIONS(113), }, - [839] = { - [sym_comment] = STATE(839), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_alias] = ACTIONS(1070), - [anon_sym_let] = ACTIONS(1070), - [anon_sym_let_DASHenv] = ACTIONS(1070), - [anon_sym_mut] = ACTIONS(1070), - [anon_sym_const] = ACTIONS(1070), - [sym_cmd_identifier] = ACTIONS(1070), - [anon_sym_def] = ACTIONS(1070), - [anon_sym_export_DASHenv] = ACTIONS(1070), - [anon_sym_extern] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_use] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_error] = ACTIONS(1070), - [anon_sym_list] = ACTIONS(1070), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_in] = ACTIONS(1070), - [anon_sym_loop] = ACTIONS(1070), - [anon_sym_make] = ACTIONS(1070), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_do] = ACTIONS(1070), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_else] = ACTIONS(1070), - [anon_sym_match] = ACTIONS(1070), - [anon_sym_RBRACE] = ACTIONS(1070), - [anon_sym_try] = ACTIONS(1070), - [anon_sym_catch] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_source] = ACTIONS(1070), - [anon_sym_source_DASHenv] = ACTIONS(1070), - [anon_sym_register] = ACTIONS(1070), - [anon_sym_hide] = ACTIONS(1070), - [anon_sym_hide_DASHenv] = ACTIONS(1070), - [anon_sym_overlay] = ACTIONS(1070), - [anon_sym_new] = ACTIONS(1070), - [anon_sym_as] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(1714), - [anon_sym_STAR_STAR] = ACTIONS(1070), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_mod] = ACTIONS(1070), - [anon_sym_SLASH_SLASH] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_bit_DASHshl] = ACTIONS(1070), - [anon_sym_bit_DASHshr] = ACTIONS(1070), - [anon_sym_EQ_EQ] = ACTIONS(1070), - [anon_sym_BANG_EQ] = ACTIONS(1070), - [anon_sym_LT2] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1070), - [anon_sym_GT_EQ] = ACTIONS(1070), - [anon_sym_not_DASHin] = ACTIONS(1070), - [anon_sym_starts_DASHwith] = ACTIONS(1070), - [anon_sym_ends_DASHwith] = ACTIONS(1070), - [anon_sym_EQ_TILDE] = ACTIONS(1070), - [anon_sym_BANG_TILDE] = ACTIONS(1070), - [anon_sym_bit_DASHand] = ACTIONS(1070), - [anon_sym_bit_DASHxor] = ACTIONS(1070), - [anon_sym_bit_DASHor] = ACTIONS(1070), - [anon_sym_and] = ACTIONS(1070), - [anon_sym_xor] = ACTIONS(1070), - [anon_sym_or] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1072), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1070), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [sym__entry_separator] = ACTIONS(1072), - [aux_sym__record_key_token2] = ACTIONS(1070), + [1015] = { + [sym_comment] = STATE(1015), + [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), + [anon_sym_SEMI] = ACTIONS(2356), + [sym_cmd_identifier] = ACTIONS(2356), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2356), + [anon_sym_RPAREN] = ACTIONS(2356), + [anon_sym_DOLLAR] = ACTIONS(2356), + [anon_sym_error] = ACTIONS(2356), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_loop] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_match] = ACTIONS(2356), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_RBRACE] = ACTIONS(2356), + [anon_sym_DOT_DOT] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_source] = ACTIONS(2356), + [anon_sym_source_DASHenv] = ACTIONS(2356), + [anon_sym_register] = 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_where] = ACTIONS(2356), + [anon_sym_not] = ACTIONS(2356), + [anon_sym_DOT_DOT2] = ACTIONS(2356), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2356), + [anon_sym_DOT_DOT_LT] = ACTIONS(2356), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2358), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2358), + [aux_sym__immediate_decimal_token2] = ACTIONS(3422), + [anon_sym_null] = ACTIONS(2356), + [anon_sym_true] = ACTIONS(2356), + [anon_sym_false] = ACTIONS(2356), + [aux_sym__val_number_decimal_token1] = ACTIONS(2356), + [aux_sym__val_number_decimal_token2] = ACTIONS(2356), + [anon_sym_DOT2] = ACTIONS(2356), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2356), + [anon_sym_0o] = ACTIONS(2356), + [anon_sym_0x] = ACTIONS(2356), + [sym_val_date] = 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_CARET] = ACTIONS(2356), [anon_sym_POUND] = ACTIONS(113), }, - [840] = { - [sym_comment] = STATE(840), - [anon_sym_export] = ACTIONS(1059), - [anon_sym_alias] = ACTIONS(1059), - [anon_sym_let] = ACTIONS(1059), - [anon_sym_let_DASHenv] = ACTIONS(1059), - [anon_sym_mut] = ACTIONS(1059), - [anon_sym_const] = ACTIONS(1059), - [sym_cmd_identifier] = ACTIONS(1059), - [anon_sym_def] = ACTIONS(1059), - [anon_sym_export_DASHenv] = ACTIONS(1059), - [anon_sym_extern] = ACTIONS(1059), - [anon_sym_module] = ACTIONS(1059), - [anon_sym_use] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_error] = ACTIONS(1059), - [anon_sym_list] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_break] = ACTIONS(1059), - [anon_sym_continue] = ACTIONS(1059), - [anon_sym_for] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1059), - [anon_sym_loop] = ACTIONS(1059), - [anon_sym_make] = ACTIONS(1059), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_do] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1059), - [anon_sym_else] = ACTIONS(1059), - [anon_sym_match] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(1059), - [anon_sym_try] = ACTIONS(1059), - [anon_sym_catch] = ACTIONS(1059), - [anon_sym_return] = ACTIONS(1059), - [anon_sym_source] = ACTIONS(1059), - [anon_sym_source_DASHenv] = ACTIONS(1059), - [anon_sym_register] = ACTIONS(1059), - [anon_sym_hide] = ACTIONS(1059), - [anon_sym_hide_DASHenv] = ACTIONS(1059), - [anon_sym_overlay] = ACTIONS(1059), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_as] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_QMARK2] = ACTIONS(1059), - [anon_sym_STAR_STAR] = ACTIONS(1059), - [anon_sym_PLUS_PLUS] = ACTIONS(1059), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_mod] = ACTIONS(1059), - [anon_sym_SLASH_SLASH] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_bit_DASHshl] = ACTIONS(1059), - [anon_sym_bit_DASHshr] = ACTIONS(1059), - [anon_sym_EQ_EQ] = ACTIONS(1059), - [anon_sym_BANG_EQ] = ACTIONS(1059), - [anon_sym_LT2] = ACTIONS(1059), - [anon_sym_LT_EQ] = ACTIONS(1059), - [anon_sym_GT_EQ] = ACTIONS(1059), - [anon_sym_not_DASHin] = ACTIONS(1059), - [anon_sym_starts_DASHwith] = ACTIONS(1059), - [anon_sym_ends_DASHwith] = ACTIONS(1059), - [anon_sym_EQ_TILDE] = ACTIONS(1059), - [anon_sym_BANG_TILDE] = ACTIONS(1059), - [anon_sym_bit_DASHand] = ACTIONS(1059), - [anon_sym_bit_DASHxor] = ACTIONS(1059), - [anon_sym_bit_DASHor] = ACTIONS(1059), - [anon_sym_and] = ACTIONS(1059), - [anon_sym_xor] = ACTIONS(1059), - [anon_sym_or] = ACTIONS(1059), - [anon_sym_DOT] = ACTIONS(1061), - [aux_sym__val_number_decimal_token1] = ACTIONS(1059), - [aux_sym__val_number_decimal_token2] = ACTIONS(1059), - [anon_sym_DOT2] = ACTIONS(1059), - [aux_sym__val_number_decimal_token3] = ACTIONS(1059), - [aux_sym__val_number_token1] = ACTIONS(1059), - [aux_sym__val_number_token2] = ACTIONS(1059), - [aux_sym__val_number_token3] = ACTIONS(1059), - [aux_sym__val_number_token4] = ACTIONS(1059), - [aux_sym__val_number_token5] = ACTIONS(1059), - [aux_sym__val_number_token6] = ACTIONS(1059), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym__str_single_quotes] = ACTIONS(1059), - [sym__str_back_ticks] = ACTIONS(1059), - [sym__entry_separator] = ACTIONS(1061), - [aux_sym__record_key_token2] = ACTIONS(1059), + [1016] = { + [sym_comment] = STATE(1016), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_alias] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_let_DASHenv] = ACTIONS(2229), + [anon_sym_mut] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2229), + [sym_cmd_identifier] = ACTIONS(2229), + [anon_sym_LF] = ACTIONS(2231), + [anon_sym_def] = ACTIONS(2229), + [anon_sym_export_DASHenv] = ACTIONS(2229), + [anon_sym_extern] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_RPAREN] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2229), + [anon_sym_error] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_loop] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_RBRACE] = ACTIONS(2229), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_source] = ACTIONS(2229), + [anon_sym_source_DASHenv] = ACTIONS(2229), + [anon_sym_register] = ACTIONS(2229), + [anon_sym_hide] = ACTIONS(2229), + [anon_sym_hide_DASHenv] = ACTIONS(2229), + [anon_sym_overlay] = ACTIONS(2229), + [anon_sym_as] = ACTIONS(2229), + [anon_sym_where] = ACTIONS(2229), + [anon_sym_not] = ACTIONS(2229), + [anon_sym_DOT_DOT2] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2229), + [anon_sym_DOT_DOT_LT] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2231), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2231), + [aux_sym__immediate_decimal_token2] = ACTIONS(3401), + [anon_sym_null] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [aux_sym__val_number_decimal_token1] = ACTIONS(2229), + [aux_sym__val_number_decimal_token2] = ACTIONS(2229), + [anon_sym_DOT2] = ACTIONS(2229), + [aux_sym__val_number_decimal_token3] = ACTIONS(2229), + [aux_sym__val_number_token1] = ACTIONS(2229), + [aux_sym__val_number_token2] = ACTIONS(2229), + [aux_sym__val_number_token3] = ACTIONS(2229), + [aux_sym__val_number_token4] = ACTIONS(2229), + [aux_sym__val_number_token5] = ACTIONS(2229), + [aux_sym__val_number_token6] = ACTIONS(2229), + [anon_sym_0b] = ACTIONS(2229), + [anon_sym_0o] = ACTIONS(2229), + [anon_sym_0x] = ACTIONS(2229), + [sym_val_date] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2229), + [anon_sym_CARET] = ACTIONS(2229), [anon_sym_POUND] = ACTIONS(113), }, - [841] = { - [sym_comment] = STATE(841), - [anon_sym_export] = ACTIONS(1063), - [anon_sym_alias] = ACTIONS(1063), - [anon_sym_let] = ACTIONS(1063), - [anon_sym_let_DASHenv] = ACTIONS(1063), - [anon_sym_mut] = ACTIONS(1063), - [anon_sym_const] = ACTIONS(1063), - [sym_cmd_identifier] = ACTIONS(1063), - [anon_sym_def] = ACTIONS(1063), - [anon_sym_export_DASHenv] = ACTIONS(1063), - [anon_sym_extern] = ACTIONS(1063), - [anon_sym_module] = ACTIONS(1063), - [anon_sym_use] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_error] = ACTIONS(1063), - [anon_sym_list] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_break] = ACTIONS(1063), - [anon_sym_continue] = ACTIONS(1063), - [anon_sym_for] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1063), - [anon_sym_loop] = ACTIONS(1063), - [anon_sym_make] = ACTIONS(1063), - [anon_sym_while] = ACTIONS(1063), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_if] = ACTIONS(1063), - [anon_sym_else] = ACTIONS(1063), - [anon_sym_match] = ACTIONS(1063), - [anon_sym_RBRACE] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1063), - [anon_sym_catch] = ACTIONS(1063), - [anon_sym_return] = ACTIONS(1063), - [anon_sym_source] = ACTIONS(1063), - [anon_sym_source_DASHenv] = ACTIONS(1063), - [anon_sym_register] = ACTIONS(1063), - [anon_sym_hide] = ACTIONS(1063), - [anon_sym_hide_DASHenv] = ACTIONS(1063), - [anon_sym_overlay] = ACTIONS(1063), - [anon_sym_new] = ACTIONS(1063), - [anon_sym_as] = ACTIONS(1063), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_QMARK2] = ACTIONS(1063), - [anon_sym_STAR_STAR] = ACTIONS(1063), - [anon_sym_PLUS_PLUS] = ACTIONS(1063), - [anon_sym_SLASH] = ACTIONS(1063), - [anon_sym_mod] = ACTIONS(1063), - [anon_sym_SLASH_SLASH] = ACTIONS(1063), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_bit_DASHshl] = ACTIONS(1063), - [anon_sym_bit_DASHshr] = ACTIONS(1063), - [anon_sym_EQ_EQ] = ACTIONS(1063), - [anon_sym_BANG_EQ] = ACTIONS(1063), - [anon_sym_LT2] = ACTIONS(1063), - [anon_sym_LT_EQ] = ACTIONS(1063), - [anon_sym_GT_EQ] = ACTIONS(1063), - [anon_sym_not_DASHin] = ACTIONS(1063), - [anon_sym_starts_DASHwith] = ACTIONS(1063), - [anon_sym_ends_DASHwith] = ACTIONS(1063), - [anon_sym_EQ_TILDE] = ACTIONS(1063), - [anon_sym_BANG_TILDE] = ACTIONS(1063), - [anon_sym_bit_DASHand] = ACTIONS(1063), - [anon_sym_bit_DASHxor] = ACTIONS(1063), - [anon_sym_bit_DASHor] = ACTIONS(1063), - [anon_sym_and] = ACTIONS(1063), - [anon_sym_xor] = ACTIONS(1063), - [anon_sym_or] = ACTIONS(1063), - [anon_sym_DOT] = ACTIONS(1065), - [aux_sym__val_number_decimal_token1] = ACTIONS(1063), - [aux_sym__val_number_decimal_token2] = ACTIONS(1063), - [anon_sym_DOT2] = ACTIONS(1063), - [aux_sym__val_number_decimal_token3] = ACTIONS(1063), - [aux_sym__val_number_token1] = ACTIONS(1063), - [aux_sym__val_number_token2] = ACTIONS(1063), - [aux_sym__val_number_token3] = ACTIONS(1063), - [aux_sym__val_number_token4] = ACTIONS(1063), - [aux_sym__val_number_token5] = ACTIONS(1063), - [aux_sym__val_number_token6] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [sym__str_single_quotes] = ACTIONS(1063), - [sym__str_back_ticks] = ACTIONS(1063), - [sym__entry_separator] = ACTIONS(1065), - [aux_sym__record_key_token2] = ACTIONS(1063), + [1017] = { + [sym__flag] = STATE(2100), + [sym_short_flag] = STATE(2106), + [sym_long_flag] = STATE(2106), + [sym_long_flag_equals_value] = STATE(2237), + [sym_comment] = STATE(1017), + [aux_sym_overlay_use_repeat1] = STATE(1017), + [ts_builtin_sym_end] = ACTIONS(3412), + [anon_sym_export] = ACTIONS(3410), + [anon_sym_alias] = ACTIONS(3410), + [anon_sym_let] = ACTIONS(3410), + [anon_sym_let_DASHenv] = ACTIONS(3410), + [anon_sym_mut] = ACTIONS(3410), + [anon_sym_const] = ACTIONS(3410), + [anon_sym_SEMI] = ACTIONS(3410), + [sym_cmd_identifier] = ACTIONS(3410), + [anon_sym_LF] = ACTIONS(3412), + [anon_sym_def] = ACTIONS(3410), + [anon_sym_export_DASHenv] = ACTIONS(3410), + [anon_sym_extern] = ACTIONS(3410), + [anon_sym_module] = ACTIONS(3410), + [anon_sym_use] = ACTIONS(3410), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_LPAREN] = ACTIONS(3410), + [anon_sym_DOLLAR] = ACTIONS(3410), + [anon_sym_error] = ACTIONS(3410), + [anon_sym_DASH_DASH] = ACTIONS(3525), + [anon_sym_DASH] = ACTIONS(3528), + [anon_sym_break] = ACTIONS(3410), + [anon_sym_continue] = ACTIONS(3410), + [anon_sym_for] = ACTIONS(3410), + [anon_sym_loop] = ACTIONS(3410), + [anon_sym_while] = ACTIONS(3410), + [anon_sym_do] = ACTIONS(3410), + [anon_sym_if] = ACTIONS(3410), + [anon_sym_match] = ACTIONS(3410), + [anon_sym_LBRACE] = ACTIONS(3410), + [anon_sym_DOT_DOT] = ACTIONS(3410), + [anon_sym_try] = ACTIONS(3410), + [anon_sym_return] = ACTIONS(3410), + [anon_sym_source] = ACTIONS(3410), + [anon_sym_source_DASHenv] = ACTIONS(3410), + [anon_sym_register] = ACTIONS(3410), + [anon_sym_hide] = ACTIONS(3410), + [anon_sym_hide_DASHenv] = ACTIONS(3410), + [anon_sym_overlay] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3410), + [anon_sym_where] = ACTIONS(3410), + [anon_sym_not] = ACTIONS(3410), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3410), + [anon_sym_DOT_DOT_LT] = ACTIONS(3410), + [anon_sym_null] = ACTIONS(3410), + [anon_sym_true] = ACTIONS(3410), + [anon_sym_false] = ACTIONS(3410), + [aux_sym__val_number_decimal_token1] = ACTIONS(3410), + [aux_sym__val_number_decimal_token2] = ACTIONS(3410), + [anon_sym_DOT2] = ACTIONS(3410), + [aux_sym__val_number_decimal_token3] = ACTIONS(3410), + [aux_sym__val_number_token1] = ACTIONS(3410), + [aux_sym__val_number_token2] = ACTIONS(3410), + [aux_sym__val_number_token3] = ACTIONS(3410), + [aux_sym__val_number_token4] = ACTIONS(3410), + [aux_sym__val_number_token5] = ACTIONS(3410), + [aux_sym__val_number_token6] = ACTIONS(3410), + [anon_sym_0b] = ACTIONS(3410), + [anon_sym_0o] = ACTIONS(3410), + [anon_sym_0x] = ACTIONS(3410), + [sym_val_date] = ACTIONS(3410), + [anon_sym_DQUOTE] = ACTIONS(3410), + [sym__str_single_quotes] = ACTIONS(3410), + [sym__str_back_ticks] = ACTIONS(3410), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3410), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3410), + [anon_sym_CARET] = ACTIONS(3410), [anon_sym_POUND] = ACTIONS(113), }, - [842] = { - [sym_cell_path] = STATE(967), - [sym_path] = STATE(832), - [sym_comment] = STATE(842), - [anon_sym_export] = ACTIONS(1154), - [anon_sym_alias] = ACTIONS(1154), - [anon_sym_let] = ACTIONS(1154), - [anon_sym_let_DASHenv] = ACTIONS(1154), - [anon_sym_mut] = ACTIONS(1154), - [anon_sym_const] = ACTIONS(1154), - [sym_cmd_identifier] = ACTIONS(1154), - [anon_sym_def] = ACTIONS(1154), - [anon_sym_export_DASHenv] = ACTIONS(1154), - [anon_sym_extern] = ACTIONS(1154), - [anon_sym_module] = ACTIONS(1154), - [anon_sym_use] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1156), - [anon_sym_DOLLAR] = ACTIONS(1156), - [anon_sym_error] = ACTIONS(1154), - [anon_sym_list] = ACTIONS(1154), - [anon_sym_GT] = ACTIONS(1154), - [anon_sym_DASH] = ACTIONS(1154), - [anon_sym_break] = ACTIONS(1154), - [anon_sym_continue] = ACTIONS(1154), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_in] = ACTIONS(1154), - [anon_sym_loop] = ACTIONS(1154), - [anon_sym_make] = ACTIONS(1154), - [anon_sym_while] = ACTIONS(1154), - [anon_sym_do] = ACTIONS(1154), - [anon_sym_if] = ACTIONS(1154), - [anon_sym_else] = ACTIONS(1154), - [anon_sym_match] = ACTIONS(1154), - [anon_sym_RBRACE] = ACTIONS(1156), - [anon_sym_try] = ACTIONS(1154), - [anon_sym_catch] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(1154), - [anon_sym_source] = ACTIONS(1154), - [anon_sym_source_DASHenv] = ACTIONS(1154), - [anon_sym_register] = ACTIONS(1154), - [anon_sym_hide] = ACTIONS(1154), - [anon_sym_hide_DASHenv] = ACTIONS(1154), - [anon_sym_overlay] = ACTIONS(1154), - [anon_sym_new] = ACTIONS(1154), - [anon_sym_as] = ACTIONS(1154), - [anon_sym_STAR] = ACTIONS(1154), - [anon_sym_STAR_STAR] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1156), - [anon_sym_SLASH] = ACTIONS(1154), - [anon_sym_mod] = ACTIONS(1154), - [anon_sym_SLASH_SLASH] = ACTIONS(1156), - [anon_sym_PLUS] = ACTIONS(1154), - [anon_sym_bit_DASHshl] = ACTIONS(1154), - [anon_sym_bit_DASHshr] = ACTIONS(1154), - [anon_sym_EQ_EQ] = ACTIONS(1156), - [anon_sym_BANG_EQ] = ACTIONS(1156), - [anon_sym_LT2] = ACTIONS(1154), - [anon_sym_LT_EQ] = ACTIONS(1156), - [anon_sym_GT_EQ] = ACTIONS(1156), - [anon_sym_not_DASHin] = ACTIONS(1154), - [anon_sym_starts_DASHwith] = ACTIONS(1154), - [anon_sym_ends_DASHwith] = ACTIONS(1154), - [anon_sym_EQ_TILDE] = ACTIONS(1156), - [anon_sym_BANG_TILDE] = ACTIONS(1156), - [anon_sym_bit_DASHand] = ACTIONS(1154), - [anon_sym_bit_DASHxor] = ACTIONS(1154), - [anon_sym_bit_DASHor] = ACTIONS(1154), - [anon_sym_and] = ACTIONS(1154), - [anon_sym_xor] = ACTIONS(1154), - [anon_sym_or] = ACTIONS(1154), - [anon_sym_DOT] = ACTIONS(1705), - [aux_sym__val_number_decimal_token1] = ACTIONS(1154), - [aux_sym__val_number_decimal_token2] = ACTIONS(1156), - [anon_sym_DOT2] = ACTIONS(1154), - [aux_sym__val_number_decimal_token3] = ACTIONS(1156), - [aux_sym__val_number_token1] = ACTIONS(1156), - [aux_sym__val_number_token2] = ACTIONS(1156), - [aux_sym__val_number_token3] = ACTIONS(1156), - [aux_sym__val_number_token4] = ACTIONS(1154), - [aux_sym__val_number_token5] = ACTIONS(1156), - [aux_sym__val_number_token6] = ACTIONS(1154), - [anon_sym_DQUOTE] = ACTIONS(1156), - [sym__str_single_quotes] = ACTIONS(1156), - [sym__str_back_ticks] = ACTIONS(1156), - [aux_sym__record_key_token2] = ACTIONS(1154), - [anon_sym_POUND] = ACTIONS(3), + [1018] = { + [sym_comment] = STATE(1018), + [anon_sym_export] = ACTIONS(1037), + [anon_sym_alias] = ACTIONS(1037), + [anon_sym_let] = ACTIONS(1037), + [anon_sym_let_DASHenv] = ACTIONS(1037), + [anon_sym_mut] = ACTIONS(1037), + [anon_sym_const] = ACTIONS(1037), + [anon_sym_SEMI] = ACTIONS(1037), + [sym_cmd_identifier] = ACTIONS(1037), + [anon_sym_LF] = ACTIONS(1039), + [anon_sym_def] = ACTIONS(1037), + [anon_sym_export_DASHenv] = ACTIONS(1037), + [anon_sym_extern] = ACTIONS(1037), + [anon_sym_module] = ACTIONS(1037), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_LBRACK] = ACTIONS(1037), + [anon_sym_LPAREN] = ACTIONS(1037), + [anon_sym_RPAREN] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1037), + [anon_sym_error] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_break] = ACTIONS(1037), + [anon_sym_continue] = ACTIONS(1037), + [anon_sym_for] = ACTIONS(1037), + [anon_sym_loop] = ACTIONS(1037), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_do] = ACTIONS(1037), + [anon_sym_if] = ACTIONS(1037), + [anon_sym_match] = ACTIONS(1037), + [anon_sym_LBRACE] = ACTIONS(1037), + [anon_sym_RBRACE] = ACTIONS(1037), + [anon_sym_DOT_DOT] = ACTIONS(1037), + [anon_sym_try] = ACTIONS(1037), + [anon_sym_return] = ACTIONS(1037), + [anon_sym_source] = ACTIONS(1037), + [anon_sym_source_DASHenv] = ACTIONS(1037), + [anon_sym_register] = ACTIONS(1037), + [anon_sym_hide] = ACTIONS(1037), + [anon_sym_hide_DASHenv] = ACTIONS(1037), + [anon_sym_overlay] = ACTIONS(1037), + [anon_sym_as] = ACTIONS(1037), + [anon_sym_where] = ACTIONS(1037), + [anon_sym_not] = ACTIONS(1037), + [anon_sym_DOT_DOT2] = ACTIONS(1037), + [anon_sym_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1037), + [anon_sym_DOT_DOT_LT] = ACTIONS(1037), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1039), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1039), + [anon_sym_null] = ACTIONS(1037), + [anon_sym_true] = ACTIONS(1037), + [anon_sym_false] = ACTIONS(1037), + [aux_sym__val_number_decimal_token1] = ACTIONS(1037), + [aux_sym__val_number_decimal_token2] = ACTIONS(1037), + [anon_sym_DOT2] = ACTIONS(1037), + [aux_sym__val_number_decimal_token3] = ACTIONS(1037), + [aux_sym__val_number_token1] = ACTIONS(1037), + [aux_sym__val_number_token2] = ACTIONS(1037), + [aux_sym__val_number_token3] = ACTIONS(1037), + [aux_sym__val_number_token4] = ACTIONS(1037), + [aux_sym__val_number_token5] = ACTIONS(1037), + [aux_sym__val_number_token6] = ACTIONS(1037), + [anon_sym_0b] = ACTIONS(1037), + [anon_sym_0o] = ACTIONS(1037), + [anon_sym_0x] = ACTIONS(1037), + [sym_val_date] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1037), + [sym__str_single_quotes] = ACTIONS(1037), + [sym__str_back_ticks] = ACTIONS(1037), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1037), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1037), + [anon_sym_CARET] = ACTIONS(1037), + [anon_sym_POUND] = ACTIONS(113), }, - [843] = { - [sym_comment] = STATE(843), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_alias] = ACTIONS(1158), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_let_DASHenv] = ACTIONS(1158), - [anon_sym_mut] = ACTIONS(1158), - [anon_sym_const] = ACTIONS(1158), - [sym_cmd_identifier] = ACTIONS(1158), - [anon_sym_def] = ACTIONS(1158), - [anon_sym_export_DASHenv] = ACTIONS(1158), - [anon_sym_extern] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_use] = ACTIONS(1158), - [anon_sym_LPAREN] = ACTIONS(1160), - [anon_sym_DOLLAR] = ACTIONS(1160), - [anon_sym_error] = ACTIONS(1158), - [anon_sym_list] = ACTIONS(1158), - [anon_sym_GT] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_break] = ACTIONS(1158), - [anon_sym_continue] = ACTIONS(1158), - [anon_sym_for] = ACTIONS(1158), - [anon_sym_in] = ACTIONS(1158), - [anon_sym_loop] = ACTIONS(1158), - [anon_sym_make] = ACTIONS(1158), - [anon_sym_while] = ACTIONS(1158), - [anon_sym_do] = ACTIONS(1158), - [anon_sym_if] = ACTIONS(1158), - [anon_sym_else] = ACTIONS(1158), - [anon_sym_match] = ACTIONS(1158), - [anon_sym_RBRACE] = ACTIONS(1160), - [anon_sym_try] = ACTIONS(1158), - [anon_sym_catch] = ACTIONS(1158), - [anon_sym_return] = ACTIONS(1158), - [anon_sym_source] = ACTIONS(1158), - [anon_sym_source_DASHenv] = ACTIONS(1158), - [anon_sym_register] = ACTIONS(1158), - [anon_sym_hide] = ACTIONS(1158), - [anon_sym_hide_DASHenv] = ACTIONS(1158), - [anon_sym_overlay] = ACTIONS(1158), - [anon_sym_new] = ACTIONS(1158), - [anon_sym_as] = ACTIONS(1158), - [anon_sym_STAR] = ACTIONS(1158), - [anon_sym_STAR_STAR] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1160), - [anon_sym_SLASH] = ACTIONS(1158), - [anon_sym_mod] = ACTIONS(1158), - [anon_sym_SLASH_SLASH] = ACTIONS(1160), - [anon_sym_PLUS] = ACTIONS(1158), - [anon_sym_bit_DASHshl] = ACTIONS(1158), - [anon_sym_bit_DASHshr] = ACTIONS(1158), - [anon_sym_EQ_EQ] = ACTIONS(1160), - [anon_sym_BANG_EQ] = ACTIONS(1160), - [anon_sym_LT2] = ACTIONS(1158), - [anon_sym_LT_EQ] = ACTIONS(1160), - [anon_sym_GT_EQ] = ACTIONS(1160), - [anon_sym_not_DASHin] = ACTIONS(1158), - [anon_sym_starts_DASHwith] = ACTIONS(1158), - [anon_sym_ends_DASHwith] = ACTIONS(1158), - [anon_sym_EQ_TILDE] = ACTIONS(1160), - [anon_sym_BANG_TILDE] = ACTIONS(1160), - [anon_sym_bit_DASHand] = ACTIONS(1158), - [anon_sym_bit_DASHxor] = ACTIONS(1158), - [anon_sym_bit_DASHor] = ACTIONS(1158), - [anon_sym_and] = ACTIONS(1158), - [anon_sym_xor] = ACTIONS(1158), - [anon_sym_or] = ACTIONS(1158), - [anon_sym_DOT_DOT2] = ACTIONS(1716), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1718), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1718), - [aux_sym__val_number_decimal_token1] = ACTIONS(1158), - [aux_sym__val_number_decimal_token2] = ACTIONS(1160), - [anon_sym_DOT2] = ACTIONS(1158), - [aux_sym__val_number_decimal_token3] = ACTIONS(1160), - [aux_sym__val_number_token1] = ACTIONS(1160), - [aux_sym__val_number_token2] = ACTIONS(1160), - [aux_sym__val_number_token3] = ACTIONS(1160), - [aux_sym__val_number_token4] = ACTIONS(1158), - [aux_sym__val_number_token5] = ACTIONS(1160), - [aux_sym__val_number_token6] = ACTIONS(1158), - [anon_sym_DQUOTE] = ACTIONS(1160), - [sym__str_single_quotes] = ACTIONS(1160), - [sym__str_back_ticks] = ACTIONS(1160), - [aux_sym__record_key_token2] = ACTIONS(1158), - [anon_sym_POUND] = ACTIONS(3), + [1019] = { + [sym_comment] = STATE(1019), + [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), + [anon_sym_SEMI] = ACTIONS(2362), + [sym_cmd_identifier] = ACTIONS(2362), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2362), + [anon_sym_LPAREN] = ACTIONS(2362), + [anon_sym_RPAREN] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2362), + [anon_sym_error] = ACTIONS(2362), + [anon_sym_DASH_DASH] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_break] = ACTIONS(2362), + [anon_sym_continue] = ACTIONS(2362), + [anon_sym_for] = ACTIONS(2362), + [anon_sym_loop] = ACTIONS(2362), + [anon_sym_while] = ACTIONS(2362), + [anon_sym_do] = ACTIONS(2362), + [anon_sym_if] = ACTIONS(2362), + [anon_sym_match] = ACTIONS(2362), + [anon_sym_LBRACE] = ACTIONS(2362), + [anon_sym_RBRACE] = ACTIONS(2362), + [anon_sym_DOT_DOT] = ACTIONS(2362), + [anon_sym_try] = 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_where] = ACTIONS(2362), + [anon_sym_not] = ACTIONS(2362), + [anon_sym_DOT_DOT2] = ACTIONS(2362), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2362), + [anon_sym_DOT_DOT_LT] = ACTIONS(2362), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2364), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2364), + [aux_sym__immediate_decimal_token2] = ACTIONS(3531), + [anon_sym_null] = ACTIONS(2362), + [anon_sym_true] = ACTIONS(2362), + [anon_sym_false] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2362), + [aux_sym__val_number_decimal_token2] = ACTIONS(2362), + [anon_sym_DOT2] = ACTIONS(2362), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2362), + [anon_sym_0o] = ACTIONS(2362), + [anon_sym_0x] = ACTIONS(2362), + [sym_val_date] = 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_CARET] = ACTIONS(2362), + [anon_sym_POUND] = ACTIONS(113), }, - [844] = { - [sym_cell_path] = STATE(983), - [sym_path] = STATE(832), - [sym_comment] = STATE(844), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_alias] = ACTIONS(1190), - [anon_sym_let] = ACTIONS(1190), - [anon_sym_let_DASHenv] = ACTIONS(1190), - [anon_sym_mut] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1190), - [sym_cmd_identifier] = ACTIONS(1190), - [anon_sym_def] = ACTIONS(1190), - [anon_sym_export_DASHenv] = ACTIONS(1190), - [anon_sym_extern] = ACTIONS(1190), - [anon_sym_module] = ACTIONS(1190), - [anon_sym_use] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_DOLLAR] = ACTIONS(1192), - [anon_sym_error] = ACTIONS(1190), - [anon_sym_list] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1190), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_in] = ACTIONS(1190), - [anon_sym_loop] = ACTIONS(1190), - [anon_sym_make] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [anon_sym_do] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_else] = ACTIONS(1190), - [anon_sym_match] = ACTIONS(1190), - [anon_sym_RBRACE] = ACTIONS(1192), - [anon_sym_try] = ACTIONS(1190), - [anon_sym_catch] = ACTIONS(1190), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_source] = ACTIONS(1190), - [anon_sym_source_DASHenv] = ACTIONS(1190), - [anon_sym_register] = ACTIONS(1190), - [anon_sym_hide] = ACTIONS(1190), - [anon_sym_hide_DASHenv] = ACTIONS(1190), - [anon_sym_overlay] = ACTIONS(1190), - [anon_sym_new] = ACTIONS(1190), - [anon_sym_as] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1190), - [anon_sym_STAR_STAR] = ACTIONS(1192), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_mod] = ACTIONS(1190), - [anon_sym_SLASH_SLASH] = ACTIONS(1192), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_bit_DASHshl] = ACTIONS(1190), - [anon_sym_bit_DASHshr] = ACTIONS(1190), - [anon_sym_EQ_EQ] = ACTIONS(1192), - [anon_sym_BANG_EQ] = ACTIONS(1192), - [anon_sym_LT2] = ACTIONS(1190), - [anon_sym_LT_EQ] = ACTIONS(1192), - [anon_sym_GT_EQ] = ACTIONS(1192), - [anon_sym_not_DASHin] = ACTIONS(1190), - [anon_sym_starts_DASHwith] = ACTIONS(1190), - [anon_sym_ends_DASHwith] = ACTIONS(1190), - [anon_sym_EQ_TILDE] = ACTIONS(1192), - [anon_sym_BANG_TILDE] = ACTIONS(1192), - [anon_sym_bit_DASHand] = ACTIONS(1190), - [anon_sym_bit_DASHxor] = ACTIONS(1190), - [anon_sym_bit_DASHor] = ACTIONS(1190), - [anon_sym_and] = ACTIONS(1190), - [anon_sym_xor] = ACTIONS(1190), - [anon_sym_or] = ACTIONS(1190), - [anon_sym_DOT] = ACTIONS(1705), - [aux_sym__val_number_decimal_token1] = ACTIONS(1190), - [aux_sym__val_number_decimal_token2] = ACTIONS(1192), - [anon_sym_DOT2] = ACTIONS(1190), - [aux_sym__val_number_decimal_token3] = ACTIONS(1192), - [aux_sym__val_number_token1] = ACTIONS(1192), - [aux_sym__val_number_token2] = ACTIONS(1192), - [aux_sym__val_number_token3] = ACTIONS(1192), - [aux_sym__val_number_token4] = ACTIONS(1190), - [aux_sym__val_number_token5] = ACTIONS(1192), - [aux_sym__val_number_token6] = ACTIONS(1190), - [anon_sym_DQUOTE] = ACTIONS(1192), - [sym__str_single_quotes] = ACTIONS(1192), - [sym__str_back_ticks] = ACTIONS(1192), - [aux_sym__record_key_token2] = ACTIONS(1190), - [anon_sym_POUND] = ACTIONS(3), + [1020] = { + [sym_comment] = STATE(1020), + [anon_sym_export] = ACTIONS(1041), + [anon_sym_alias] = ACTIONS(1041), + [anon_sym_let] = ACTIONS(1041), + [anon_sym_let_DASHenv] = ACTIONS(1041), + [anon_sym_mut] = ACTIONS(1041), + [anon_sym_const] = ACTIONS(1041), + [anon_sym_SEMI] = ACTIONS(1041), + [sym_cmd_identifier] = ACTIONS(1041), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_def] = ACTIONS(1041), + [anon_sym_export_DASHenv] = ACTIONS(1041), + [anon_sym_extern] = ACTIONS(1041), + [anon_sym_module] = ACTIONS(1041), + [anon_sym_use] = ACTIONS(1041), + [anon_sym_LBRACK] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1041), + [anon_sym_RPAREN] = ACTIONS(1041), + [anon_sym_DOLLAR] = ACTIONS(1041), + [anon_sym_error] = ACTIONS(1041), + [anon_sym_DASH_DASH] = ACTIONS(1041), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_break] = ACTIONS(1041), + [anon_sym_continue] = ACTIONS(1041), + [anon_sym_for] = ACTIONS(1041), + [anon_sym_loop] = ACTIONS(1041), + [anon_sym_while] = ACTIONS(1041), + [anon_sym_do] = ACTIONS(1041), + [anon_sym_if] = ACTIONS(1041), + [anon_sym_match] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_RBRACE] = ACTIONS(1041), + [anon_sym_DOT_DOT] = ACTIONS(1041), + [anon_sym_try] = ACTIONS(1041), + [anon_sym_return] = ACTIONS(1041), + [anon_sym_source] = ACTIONS(1041), + [anon_sym_source_DASHenv] = ACTIONS(1041), + [anon_sym_register] = ACTIONS(1041), + [anon_sym_hide] = ACTIONS(1041), + [anon_sym_hide_DASHenv] = ACTIONS(1041), + [anon_sym_overlay] = ACTIONS(1041), + [anon_sym_as] = ACTIONS(1041), + [anon_sym_where] = ACTIONS(1041), + [anon_sym_not] = ACTIONS(1041), + [anon_sym_DOT_DOT2] = ACTIONS(1041), + [anon_sym_DOT] = ACTIONS(1041), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1041), + [anon_sym_DOT_DOT_LT] = ACTIONS(1041), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1043), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1043), + [anon_sym_null] = ACTIONS(1041), + [anon_sym_true] = ACTIONS(1041), + [anon_sym_false] = ACTIONS(1041), + [aux_sym__val_number_decimal_token1] = ACTIONS(1041), + [aux_sym__val_number_decimal_token2] = ACTIONS(1041), + [anon_sym_DOT2] = ACTIONS(1041), + [aux_sym__val_number_decimal_token3] = ACTIONS(1041), + [aux_sym__val_number_token1] = ACTIONS(1041), + [aux_sym__val_number_token2] = ACTIONS(1041), + [aux_sym__val_number_token3] = ACTIONS(1041), + [aux_sym__val_number_token4] = ACTIONS(1041), + [aux_sym__val_number_token5] = ACTIONS(1041), + [aux_sym__val_number_token6] = ACTIONS(1041), + [anon_sym_0b] = ACTIONS(1041), + [anon_sym_0o] = ACTIONS(1041), + [anon_sym_0x] = ACTIONS(1041), + [sym_val_date] = ACTIONS(1041), + [anon_sym_DQUOTE] = ACTIONS(1041), + [sym__str_single_quotes] = ACTIONS(1041), + [sym__str_back_ticks] = ACTIONS(1041), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1041), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1041), + [anon_sym_CARET] = ACTIONS(1041), + [anon_sym_POUND] = ACTIONS(113), }, - [845] = { - [sym_cell_path] = STATE(959), - [sym_path] = STATE(832), - [sym_comment] = STATE(845), - [anon_sym_export] = ACTIONS(995), - [anon_sym_alias] = ACTIONS(995), - [anon_sym_let] = ACTIONS(995), - [anon_sym_let_DASHenv] = ACTIONS(995), - [anon_sym_mut] = ACTIONS(995), - [anon_sym_const] = ACTIONS(995), - [sym_cmd_identifier] = ACTIONS(995), - [anon_sym_def] = ACTIONS(995), - [anon_sym_export_DASHenv] = ACTIONS(995), - [anon_sym_extern] = ACTIONS(995), - [anon_sym_module] = ACTIONS(995), - [anon_sym_use] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_DOLLAR] = ACTIONS(997), - [anon_sym_error] = ACTIONS(995), - [anon_sym_list] = ACTIONS(995), - [anon_sym_GT] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_break] = ACTIONS(995), - [anon_sym_continue] = ACTIONS(995), - [anon_sym_for] = ACTIONS(995), - [anon_sym_in] = ACTIONS(995), - [anon_sym_loop] = ACTIONS(995), - [anon_sym_make] = ACTIONS(995), - [anon_sym_while] = ACTIONS(995), - [anon_sym_do] = ACTIONS(995), - [anon_sym_if] = ACTIONS(995), - [anon_sym_else] = ACTIONS(995), - [anon_sym_match] = ACTIONS(995), - [anon_sym_RBRACE] = ACTIONS(997), - [anon_sym_try] = ACTIONS(995), - [anon_sym_catch] = ACTIONS(995), - [anon_sym_return] = ACTIONS(995), - [anon_sym_source] = ACTIONS(995), - [anon_sym_source_DASHenv] = ACTIONS(995), - [anon_sym_register] = ACTIONS(995), - [anon_sym_hide] = ACTIONS(995), - [anon_sym_hide_DASHenv] = ACTIONS(995), - [anon_sym_overlay] = ACTIONS(995), - [anon_sym_new] = ACTIONS(995), - [anon_sym_as] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_STAR_STAR] = ACTIONS(997), - [anon_sym_PLUS_PLUS] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(995), - [anon_sym_mod] = ACTIONS(995), - [anon_sym_SLASH_SLASH] = ACTIONS(997), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_bit_DASHshl] = ACTIONS(995), - [anon_sym_bit_DASHshr] = ACTIONS(995), - [anon_sym_EQ_EQ] = ACTIONS(997), - [anon_sym_BANG_EQ] = ACTIONS(997), - [anon_sym_LT2] = ACTIONS(995), - [anon_sym_LT_EQ] = ACTIONS(997), - [anon_sym_GT_EQ] = ACTIONS(997), - [anon_sym_not_DASHin] = ACTIONS(995), - [anon_sym_starts_DASHwith] = ACTIONS(995), - [anon_sym_ends_DASHwith] = ACTIONS(995), - [anon_sym_EQ_TILDE] = ACTIONS(997), - [anon_sym_BANG_TILDE] = ACTIONS(997), - [anon_sym_bit_DASHand] = ACTIONS(995), - [anon_sym_bit_DASHxor] = ACTIONS(995), - [anon_sym_bit_DASHor] = ACTIONS(995), - [anon_sym_and] = ACTIONS(995), - [anon_sym_xor] = ACTIONS(995), - [anon_sym_or] = ACTIONS(995), - [anon_sym_DOT] = ACTIONS(1705), - [aux_sym__val_number_decimal_token1] = ACTIONS(995), - [aux_sym__val_number_decimal_token2] = ACTIONS(997), - [anon_sym_DOT2] = ACTIONS(995), - [aux_sym__val_number_decimal_token3] = ACTIONS(997), - [aux_sym__val_number_token1] = ACTIONS(997), - [aux_sym__val_number_token2] = ACTIONS(997), - [aux_sym__val_number_token3] = ACTIONS(997), - [aux_sym__val_number_token4] = ACTIONS(995), - [aux_sym__val_number_token5] = ACTIONS(997), - [aux_sym__val_number_token6] = ACTIONS(995), - [anon_sym_DQUOTE] = ACTIONS(997), - [sym__str_single_quotes] = ACTIONS(997), - [sym__str_back_ticks] = ACTIONS(997), - [aux_sym__record_key_token2] = ACTIONS(995), + [1021] = { + [sym_comment] = STATE(1021), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_COMMA] = ACTIONS(1035), + [anon_sym_LPAREN] = ACTIONS(1035), + [anon_sym_DOLLAR] = ACTIONS(1035), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1033), + [anon_sym_in] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(1035), + [anon_sym_RBRACE] = ACTIONS(1035), + [anon_sym__] = ACTIONS(1033), + [anon_sym_DOT_DOT] = ACTIONS(1033), + [anon_sym_STAR] = ACTIONS(1033), + [anon_sym_QMARK2] = ACTIONS(1035), + [anon_sym_STAR_STAR] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1035), + [anon_sym_SLASH] = ACTIONS(1033), + [anon_sym_mod] = ACTIONS(1035), + [anon_sym_SLASH_SLASH] = ACTIONS(1035), + [anon_sym_PLUS] = ACTIONS(1033), + [anon_sym_bit_DASHshl] = ACTIONS(1035), + [anon_sym_bit_DASHshr] = ACTIONS(1035), + [anon_sym_EQ_EQ] = ACTIONS(1035), + [anon_sym_BANG_EQ] = ACTIONS(1035), + [anon_sym_LT2] = ACTIONS(1033), + [anon_sym_LT_EQ] = ACTIONS(1035), + [anon_sym_GT_EQ] = ACTIONS(1035), + [anon_sym_not_DASHin] = ACTIONS(1035), + [anon_sym_starts_DASHwith] = ACTIONS(1035), + [anon_sym_ends_DASHwith] = ACTIONS(1035), + [anon_sym_EQ_TILDE] = ACTIONS(1035), + [anon_sym_BANG_TILDE] = ACTIONS(1035), + [anon_sym_bit_DASHand] = ACTIONS(1035), + [anon_sym_bit_DASHxor] = ACTIONS(1035), + [anon_sym_bit_DASHor] = ACTIONS(1035), + [anon_sym_and] = ACTIONS(1035), + [anon_sym_xor] = ACTIONS(1035), + [anon_sym_or] = ACTIONS(1035), + [anon_sym_DOT_DOT2] = ACTIONS(1033), + [anon_sym_DOT] = ACTIONS(1033), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1033), + [anon_sym_DOT_DOT_LT] = ACTIONS(1033), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1035), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1035), + [anon_sym_null] = ACTIONS(1035), + [anon_sym_true] = ACTIONS(1035), + [anon_sym_false] = ACTIONS(1035), + [aux_sym__val_number_decimal_token1] = ACTIONS(1033), + [aux_sym__val_number_decimal_token2] = ACTIONS(1035), + [anon_sym_DOT2] = ACTIONS(1033), + [aux_sym__val_number_decimal_token3] = ACTIONS(1035), + [aux_sym__val_number_token1] = ACTIONS(1035), + [aux_sym__val_number_token2] = ACTIONS(1035), + [aux_sym__val_number_token3] = ACTIONS(1035), + [aux_sym__val_number_token4] = ACTIONS(1035), + [aux_sym__val_number_token5] = ACTIONS(1035), + [aux_sym__val_number_token6] = ACTIONS(1035), + [anon_sym_0b] = ACTIONS(1033), + [anon_sym_0o] = ACTIONS(1033), + [anon_sym_0x] = ACTIONS(1033), + [sym_val_date] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(1035), + [sym__str_single_quotes] = ACTIONS(1035), + [sym__str_back_ticks] = ACTIONS(1035), + [anon_sym_err_GT] = ACTIONS(1035), + [anon_sym_out_GT] = ACTIONS(1035), + [anon_sym_e_GT] = ACTIONS(1035), + [anon_sym_o_GT] = ACTIONS(1035), + [anon_sym_err_PLUSout_GT] = ACTIONS(1035), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1035), + [anon_sym_o_PLUSe_GT] = ACTIONS(1035), + [anon_sym_e_PLUSo_GT] = ACTIONS(1035), + [aux_sym_unquoted_token1] = ACTIONS(1033), [anon_sym_POUND] = ACTIONS(3), }, - [846] = { - [sym_cell_path] = STATE(1013), - [sym_path] = STATE(832), - [sym_comment] = STATE(846), - [anon_sym_export] = ACTIONS(1203), - [anon_sym_alias] = ACTIONS(1203), - [anon_sym_let] = ACTIONS(1203), - [anon_sym_let_DASHenv] = ACTIONS(1203), - [anon_sym_mut] = ACTIONS(1203), - [anon_sym_const] = ACTIONS(1203), - [sym_cmd_identifier] = ACTIONS(1203), - [anon_sym_def] = ACTIONS(1203), - [anon_sym_export_DASHenv] = ACTIONS(1203), - [anon_sym_extern] = ACTIONS(1203), - [anon_sym_module] = ACTIONS(1203), - [anon_sym_use] = ACTIONS(1203), - [anon_sym_LPAREN] = ACTIONS(1205), - [anon_sym_DOLLAR] = ACTIONS(1205), - [anon_sym_error] = ACTIONS(1203), - [anon_sym_list] = ACTIONS(1203), - [anon_sym_GT] = ACTIONS(1203), - [anon_sym_DASH] = ACTIONS(1203), - [anon_sym_break] = ACTIONS(1203), - [anon_sym_continue] = ACTIONS(1203), - [anon_sym_for] = ACTIONS(1203), - [anon_sym_in] = ACTIONS(1203), - [anon_sym_loop] = ACTIONS(1203), - [anon_sym_make] = ACTIONS(1203), - [anon_sym_while] = ACTIONS(1203), - [anon_sym_do] = ACTIONS(1203), - [anon_sym_if] = ACTIONS(1203), - [anon_sym_else] = ACTIONS(1203), - [anon_sym_match] = ACTIONS(1203), - [anon_sym_RBRACE] = ACTIONS(1205), - [anon_sym_try] = ACTIONS(1203), - [anon_sym_catch] = ACTIONS(1203), - [anon_sym_return] = ACTIONS(1203), - [anon_sym_source] = ACTIONS(1203), - [anon_sym_source_DASHenv] = ACTIONS(1203), - [anon_sym_register] = ACTIONS(1203), - [anon_sym_hide] = ACTIONS(1203), - [anon_sym_hide_DASHenv] = ACTIONS(1203), - [anon_sym_overlay] = ACTIONS(1203), - [anon_sym_new] = ACTIONS(1203), - [anon_sym_as] = ACTIONS(1203), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_STAR_STAR] = ACTIONS(1205), - [anon_sym_PLUS_PLUS] = ACTIONS(1205), - [anon_sym_SLASH] = ACTIONS(1203), - [anon_sym_mod] = ACTIONS(1203), - [anon_sym_SLASH_SLASH] = ACTIONS(1205), - [anon_sym_PLUS] = ACTIONS(1203), - [anon_sym_bit_DASHshl] = ACTIONS(1203), - [anon_sym_bit_DASHshr] = ACTIONS(1203), - [anon_sym_EQ_EQ] = ACTIONS(1205), - [anon_sym_BANG_EQ] = ACTIONS(1205), - [anon_sym_LT2] = ACTIONS(1203), - [anon_sym_LT_EQ] = ACTIONS(1205), - [anon_sym_GT_EQ] = ACTIONS(1205), - [anon_sym_not_DASHin] = ACTIONS(1203), - [anon_sym_starts_DASHwith] = ACTIONS(1203), - [anon_sym_ends_DASHwith] = ACTIONS(1203), - [anon_sym_EQ_TILDE] = ACTIONS(1205), - [anon_sym_BANG_TILDE] = ACTIONS(1205), - [anon_sym_bit_DASHand] = ACTIONS(1203), - [anon_sym_bit_DASHxor] = ACTIONS(1203), - [anon_sym_bit_DASHor] = ACTIONS(1203), - [anon_sym_and] = ACTIONS(1203), - [anon_sym_xor] = ACTIONS(1203), - [anon_sym_or] = ACTIONS(1203), - [anon_sym_DOT] = ACTIONS(1705), - [aux_sym__val_number_decimal_token1] = ACTIONS(1203), - [aux_sym__val_number_decimal_token2] = ACTIONS(1205), - [anon_sym_DOT2] = ACTIONS(1203), - [aux_sym__val_number_decimal_token3] = ACTIONS(1205), - [aux_sym__val_number_token1] = ACTIONS(1205), - [aux_sym__val_number_token2] = ACTIONS(1205), - [aux_sym__val_number_token3] = ACTIONS(1205), - [aux_sym__val_number_token4] = ACTIONS(1203), - [aux_sym__val_number_token5] = ACTIONS(1205), - [aux_sym__val_number_token6] = ACTIONS(1203), - [anon_sym_DQUOTE] = ACTIONS(1205), - [sym__str_single_quotes] = ACTIONS(1205), - [sym__str_back_ticks] = ACTIONS(1205), - [aux_sym__record_key_token2] = ACTIONS(1203), + [1022] = { + [sym_comment] = STATE(1022), + [anon_sym_LBRACK] = ACTIONS(1022), + [anon_sym_COMMA] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_GT] = ACTIONS(1020), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_in] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1022), + [anon_sym_RBRACE] = ACTIONS(1022), + [anon_sym__] = ACTIONS(1020), + [anon_sym_DOT_DOT] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_QMARK2] = ACTIONS(1022), + [anon_sym_STAR_STAR] = ACTIONS(1022), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_SLASH] = ACTIONS(1020), + [anon_sym_mod] = ACTIONS(1022), + [anon_sym_SLASH_SLASH] = ACTIONS(1022), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_bit_DASHshl] = ACTIONS(1022), + [anon_sym_bit_DASHshr] = ACTIONS(1022), + [anon_sym_EQ_EQ] = ACTIONS(1022), + [anon_sym_BANG_EQ] = ACTIONS(1022), + [anon_sym_LT2] = ACTIONS(1020), + [anon_sym_LT_EQ] = ACTIONS(1022), + [anon_sym_GT_EQ] = ACTIONS(1022), + [anon_sym_not_DASHin] = ACTIONS(1022), + [anon_sym_starts_DASHwith] = ACTIONS(1022), + [anon_sym_ends_DASHwith] = ACTIONS(1022), + [anon_sym_EQ_TILDE] = ACTIONS(1022), + [anon_sym_BANG_TILDE] = ACTIONS(1022), + [anon_sym_bit_DASHand] = ACTIONS(1022), + [anon_sym_bit_DASHxor] = ACTIONS(1022), + [anon_sym_bit_DASHor] = ACTIONS(1022), + [anon_sym_and] = ACTIONS(1022), + [anon_sym_xor] = ACTIONS(1022), + [anon_sym_or] = ACTIONS(1022), + [anon_sym_DOT_DOT2] = ACTIONS(1020), + [anon_sym_DOT] = ACTIONS(1020), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1020), + [anon_sym_DOT_DOT_LT] = ACTIONS(1020), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1022), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1022), + [anon_sym_null] = ACTIONS(1022), + [anon_sym_true] = ACTIONS(1022), + [anon_sym_false] = ACTIONS(1022), + [aux_sym__val_number_decimal_token1] = ACTIONS(1020), + [aux_sym__val_number_decimal_token2] = ACTIONS(1022), + [anon_sym_DOT2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1022), + [aux_sym__val_number_token1] = ACTIONS(1022), + [aux_sym__val_number_token2] = ACTIONS(1022), + [aux_sym__val_number_token3] = ACTIONS(1022), + [aux_sym__val_number_token4] = ACTIONS(1022), + [aux_sym__val_number_token5] = ACTIONS(1022), + [aux_sym__val_number_token6] = ACTIONS(1022), + [anon_sym_0b] = ACTIONS(1020), + [anon_sym_0o] = ACTIONS(1020), + [anon_sym_0x] = ACTIONS(1020), + [sym_val_date] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1022), + [sym__str_single_quotes] = ACTIONS(1022), + [sym__str_back_ticks] = ACTIONS(1022), + [anon_sym_err_GT] = ACTIONS(1022), + [anon_sym_out_GT] = ACTIONS(1022), + [anon_sym_e_GT] = ACTIONS(1022), + [anon_sym_o_GT] = ACTIONS(1022), + [anon_sym_err_PLUSout_GT] = ACTIONS(1022), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1022), + [anon_sym_o_PLUSe_GT] = ACTIONS(1022), + [anon_sym_e_PLUSo_GT] = ACTIONS(1022), + [aux_sym_unquoted_token1] = ACTIONS(1020), [anon_sym_POUND] = ACTIONS(3), }, - [847] = { - [sym_comment] = STATE(847), - [anon_sym_export] = ACTIONS(1168), - [anon_sym_alias] = ACTIONS(1168), - [anon_sym_let] = ACTIONS(1168), - [anon_sym_let_DASHenv] = ACTIONS(1168), - [anon_sym_mut] = ACTIONS(1168), - [anon_sym_const] = ACTIONS(1168), - [sym_cmd_identifier] = ACTIONS(1168), - [anon_sym_def] = ACTIONS(1168), - [anon_sym_export_DASHenv] = ACTIONS(1168), - [anon_sym_extern] = ACTIONS(1168), - [anon_sym_module] = ACTIONS(1168), - [anon_sym_use] = ACTIONS(1168), - [anon_sym_LPAREN] = ACTIONS(1170), - [anon_sym_DOLLAR] = ACTIONS(1170), - [anon_sym_error] = ACTIONS(1168), - [anon_sym_list] = ACTIONS(1168), - [anon_sym_GT] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1168), - [anon_sym_break] = ACTIONS(1168), - [anon_sym_continue] = ACTIONS(1168), - [anon_sym_for] = ACTIONS(1168), - [anon_sym_in] = ACTIONS(1168), - [anon_sym_loop] = ACTIONS(1168), - [anon_sym_make] = ACTIONS(1168), - [anon_sym_while] = ACTIONS(1168), - [anon_sym_do] = ACTIONS(1168), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_else] = ACTIONS(1168), - [anon_sym_match] = ACTIONS(1168), - [anon_sym_RBRACE] = ACTIONS(1170), - [anon_sym_try] = ACTIONS(1168), - [anon_sym_catch] = ACTIONS(1168), - [anon_sym_return] = ACTIONS(1168), - [anon_sym_source] = ACTIONS(1168), - [anon_sym_source_DASHenv] = ACTIONS(1168), - [anon_sym_register] = ACTIONS(1168), - [anon_sym_hide] = ACTIONS(1168), - [anon_sym_hide_DASHenv] = ACTIONS(1168), - [anon_sym_overlay] = ACTIONS(1168), - [anon_sym_new] = ACTIONS(1168), - [anon_sym_as] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_STAR_STAR] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1170), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_mod] = ACTIONS(1168), - [anon_sym_SLASH_SLASH] = ACTIONS(1170), - [anon_sym_PLUS] = ACTIONS(1168), - [anon_sym_bit_DASHshl] = ACTIONS(1168), - [anon_sym_bit_DASHshr] = ACTIONS(1168), - [anon_sym_EQ_EQ] = ACTIONS(1170), - [anon_sym_BANG_EQ] = ACTIONS(1170), - [anon_sym_LT2] = ACTIONS(1168), - [anon_sym_LT_EQ] = ACTIONS(1170), - [anon_sym_GT_EQ] = ACTIONS(1170), - [anon_sym_not_DASHin] = ACTIONS(1168), - [anon_sym_starts_DASHwith] = ACTIONS(1168), - [anon_sym_ends_DASHwith] = ACTIONS(1168), - [anon_sym_EQ_TILDE] = ACTIONS(1170), - [anon_sym_BANG_TILDE] = ACTIONS(1170), - [anon_sym_bit_DASHand] = ACTIONS(1168), - [anon_sym_bit_DASHxor] = ACTIONS(1168), - [anon_sym_bit_DASHor] = ACTIONS(1168), - [anon_sym_and] = ACTIONS(1168), - [anon_sym_xor] = ACTIONS(1168), - [anon_sym_or] = ACTIONS(1168), - [anon_sym_DOT_DOT2] = ACTIONS(1168), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1170), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1170), - [aux_sym__val_number_decimal_token1] = ACTIONS(1168), - [aux_sym__val_number_decimal_token2] = ACTIONS(1170), - [anon_sym_DOT2] = ACTIONS(1168), - [aux_sym__val_number_decimal_token3] = ACTIONS(1170), - [aux_sym__val_number_token1] = ACTIONS(1170), - [aux_sym__val_number_token2] = ACTIONS(1170), - [aux_sym__val_number_token3] = ACTIONS(1170), - [aux_sym__val_number_token4] = ACTIONS(1168), - [aux_sym__val_number_token5] = ACTIONS(1170), - [aux_sym__val_number_token6] = ACTIONS(1168), - [anon_sym_DQUOTE] = ACTIONS(1170), - [sym__str_single_quotes] = ACTIONS(1170), - [sym__str_back_ticks] = ACTIONS(1170), - [aux_sym__record_key_token2] = ACTIONS(1168), - [anon_sym_POUND] = ACTIONS(3), + [1023] = { + [sym_comment] = STATE(1023), + [ts_builtin_sym_end] = ACTIONS(1026), + [anon_sym_export] = ACTIONS(1024), + [anon_sym_alias] = ACTIONS(1024), + [anon_sym_let] = ACTIONS(1024), + [anon_sym_let_DASHenv] = ACTIONS(1024), + [anon_sym_mut] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1024), + [sym_cmd_identifier] = ACTIONS(1024), + [anon_sym_LF] = ACTIONS(1026), + [anon_sym_def] = ACTIONS(1024), + [anon_sym_export_DASHenv] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1024), + [anon_sym_module] = ACTIONS(1024), + [anon_sym_use] = ACTIONS(1024), + [anon_sym_LBRACK] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_error] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_loop] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_match] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym_DOT_DOT] = ACTIONS(1024), + [anon_sym_try] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_source] = ACTIONS(1024), + [anon_sym_source_DASHenv] = ACTIONS(1024), + [anon_sym_register] = ACTIONS(1024), + [anon_sym_hide] = ACTIONS(1024), + [anon_sym_hide_DASHenv] = ACTIONS(1024), + [anon_sym_overlay] = ACTIONS(1024), + [anon_sym_as] = ACTIONS(1024), + [anon_sym_where] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(3533), + [anon_sym_not] = ACTIONS(1024), + [anon_sym_DOT_DOT2] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1026), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1026), + [anon_sym_null] = ACTIONS(1024), + [anon_sym_true] = ACTIONS(1024), + [anon_sym_false] = ACTIONS(1024), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1024), + [aux_sym__val_number_token1] = ACTIONS(1024), + [aux_sym__val_number_token2] = ACTIONS(1024), + [aux_sym__val_number_token3] = ACTIONS(1024), + [aux_sym__val_number_token4] = ACTIONS(1024), + [aux_sym__val_number_token5] = ACTIONS(1024), + [aux_sym__val_number_token6] = ACTIONS(1024), + [anon_sym_0b] = ACTIONS(1024), + [anon_sym_0o] = ACTIONS(1024), + [anon_sym_0x] = ACTIONS(1024), + [sym_val_date] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym__str_single_quotes] = ACTIONS(1024), + [sym__str_back_ticks] = ACTIONS(1024), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1024), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1024), + [anon_sym_CARET] = ACTIONS(1024), + [anon_sym_POUND] = ACTIONS(113), }, - [848] = { - [sym_cell_path] = STATE(1021), - [sym_path] = STATE(832), - [sym_comment] = STATE(848), - [anon_sym_export] = ACTIONS(1186), - [anon_sym_alias] = ACTIONS(1186), - [anon_sym_let] = ACTIONS(1186), - [anon_sym_let_DASHenv] = ACTIONS(1186), - [anon_sym_mut] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1186), - [sym_cmd_identifier] = ACTIONS(1186), - [anon_sym_def] = ACTIONS(1186), - [anon_sym_export_DASHenv] = ACTIONS(1186), - [anon_sym_extern] = ACTIONS(1186), - [anon_sym_module] = ACTIONS(1186), - [anon_sym_use] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(1188), - [anon_sym_DOLLAR] = ACTIONS(1188), - [anon_sym_error] = ACTIONS(1186), - [anon_sym_list] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1186), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1186), - [anon_sym_in] = ACTIONS(1186), - [anon_sym_loop] = ACTIONS(1186), - [anon_sym_make] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_do] = ACTIONS(1186), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_else] = ACTIONS(1186), - [anon_sym_match] = ACTIONS(1186), - [anon_sym_RBRACE] = ACTIONS(1188), - [anon_sym_try] = ACTIONS(1186), - [anon_sym_catch] = ACTIONS(1186), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_source] = ACTIONS(1186), - [anon_sym_source_DASHenv] = ACTIONS(1186), - [anon_sym_register] = ACTIONS(1186), - [anon_sym_hide] = ACTIONS(1186), - [anon_sym_hide_DASHenv] = ACTIONS(1186), - [anon_sym_overlay] = ACTIONS(1186), - [anon_sym_new] = ACTIONS(1186), - [anon_sym_as] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_STAR_STAR] = ACTIONS(1188), - [anon_sym_PLUS_PLUS] = ACTIONS(1188), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_mod] = ACTIONS(1186), - [anon_sym_SLASH_SLASH] = ACTIONS(1188), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_bit_DASHshl] = ACTIONS(1186), - [anon_sym_bit_DASHshr] = ACTIONS(1186), - [anon_sym_EQ_EQ] = ACTIONS(1188), - [anon_sym_BANG_EQ] = ACTIONS(1188), - [anon_sym_LT2] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1188), - [anon_sym_GT_EQ] = ACTIONS(1188), - [anon_sym_not_DASHin] = ACTIONS(1186), - [anon_sym_starts_DASHwith] = ACTIONS(1186), - [anon_sym_ends_DASHwith] = ACTIONS(1186), - [anon_sym_EQ_TILDE] = ACTIONS(1188), - [anon_sym_BANG_TILDE] = ACTIONS(1188), - [anon_sym_bit_DASHand] = ACTIONS(1186), - [anon_sym_bit_DASHxor] = ACTIONS(1186), - [anon_sym_bit_DASHor] = ACTIONS(1186), - [anon_sym_and] = ACTIONS(1186), - [anon_sym_xor] = ACTIONS(1186), - [anon_sym_or] = ACTIONS(1186), - [anon_sym_DOT] = ACTIONS(1705), - [aux_sym__val_number_decimal_token1] = ACTIONS(1186), - [aux_sym__val_number_decimal_token2] = ACTIONS(1188), - [anon_sym_DOT2] = ACTIONS(1186), - [aux_sym__val_number_decimal_token3] = ACTIONS(1188), - [aux_sym__val_number_token1] = ACTIONS(1188), - [aux_sym__val_number_token2] = ACTIONS(1188), - [aux_sym__val_number_token3] = ACTIONS(1188), - [aux_sym__val_number_token4] = ACTIONS(1186), - [aux_sym__val_number_token5] = ACTIONS(1188), - [aux_sym__val_number_token6] = ACTIONS(1186), - [anon_sym_DQUOTE] = ACTIONS(1188), - [sym__str_single_quotes] = ACTIONS(1188), - [sym__str_back_ticks] = ACTIONS(1188), - [aux_sym__record_key_token2] = ACTIONS(1186), + [1024] = { + [sym_comment] = STATE(1024), + [ts_builtin_sym_end] = ACTIONS(2231), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_alias] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_let_DASHenv] = ACTIONS(2229), + [anon_sym_mut] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2229), + [sym_cmd_identifier] = ACTIONS(2229), + [anon_sym_LF] = ACTIONS(2231), + [anon_sym_def] = ACTIONS(2229), + [anon_sym_export_DASHenv] = ACTIONS(2229), + [anon_sym_extern] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2229), + [anon_sym_error] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_loop] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_source] = ACTIONS(2229), + [anon_sym_source_DASHenv] = ACTIONS(2229), + [anon_sym_register] = ACTIONS(2229), + [anon_sym_hide] = ACTIONS(2229), + [anon_sym_hide_DASHenv] = ACTIONS(2229), + [anon_sym_overlay] = ACTIONS(2229), + [anon_sym_as] = ACTIONS(2229), + [anon_sym_where] = ACTIONS(2229), + [anon_sym_not] = ACTIONS(2229), + [anon_sym_DOT_DOT2] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2229), + [anon_sym_DOT_DOT_LT] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2231), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2231), + [anon_sym_null] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [aux_sym__val_number_decimal_token1] = ACTIONS(2229), + [aux_sym__val_number_decimal_token2] = ACTIONS(2229), + [anon_sym_DOT2] = ACTIONS(2229), + [aux_sym__val_number_decimal_token3] = ACTIONS(2229), + [aux_sym__val_number_token1] = ACTIONS(2229), + [aux_sym__val_number_token2] = ACTIONS(2229), + [aux_sym__val_number_token3] = ACTIONS(2229), + [aux_sym__val_number_token4] = ACTIONS(2229), + [aux_sym__val_number_token5] = ACTIONS(2229), + [aux_sym__val_number_token6] = ACTIONS(2229), + [anon_sym_0b] = ACTIONS(2229), + [anon_sym_0o] = ACTIONS(2229), + [anon_sym_0x] = ACTIONS(2229), + [sym_val_date] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2229), + [anon_sym_CARET] = ACTIONS(2229), + [aux_sym_unquoted_token2] = ACTIONS(2229), + [anon_sym_POUND] = ACTIONS(113), + }, + [1025] = { + [sym_comment] = STATE(1025), + [anon_sym_LBRACK] = ACTIONS(940), + [anon_sym_COMMA] = ACTIONS(940), + [anon_sym_LPAREN] = ACTIONS(940), + [anon_sym_DOLLAR] = ACTIONS(940), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_in] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(940), + [anon_sym_RBRACE] = ACTIONS(940), + [anon_sym__] = ACTIONS(938), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_STAR_STAR] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(940), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(940), + [anon_sym_SLASH_SLASH] = ACTIONS(940), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_bit_DASHshl] = ACTIONS(940), + [anon_sym_bit_DASHshr] = ACTIONS(940), + [anon_sym_EQ_EQ] = ACTIONS(940), + [anon_sym_BANG_EQ] = ACTIONS(940), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(940), + [anon_sym_GT_EQ] = ACTIONS(940), + [anon_sym_not_DASHin] = ACTIONS(940), + [anon_sym_starts_DASHwith] = ACTIONS(940), + [anon_sym_ends_DASHwith] = ACTIONS(940), + [anon_sym_EQ_TILDE] = ACTIONS(940), + [anon_sym_BANG_TILDE] = ACTIONS(940), + [anon_sym_bit_DASHand] = ACTIONS(940), + [anon_sym_bit_DASHxor] = ACTIONS(940), + [anon_sym_bit_DASHor] = ACTIONS(940), + [anon_sym_and] = ACTIONS(940), + [anon_sym_xor] = ACTIONS(940), + [anon_sym_or] = ACTIONS(940), + [anon_sym_DOT_DOT2] = ACTIONS(3535), + [anon_sym_DOT_DOT_EQ] = ACTIONS(938), + [anon_sym_DOT_DOT_LT] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3537), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3537), + [anon_sym_null] = ACTIONS(940), + [anon_sym_true] = ACTIONS(940), + [anon_sym_false] = ACTIONS(940), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(940), + [anon_sym_DOT2] = ACTIONS(938), + [aux_sym__val_number_decimal_token3] = ACTIONS(940), + [aux_sym__val_number_token1] = ACTIONS(940), + [aux_sym__val_number_token2] = ACTIONS(940), + [aux_sym__val_number_token3] = ACTIONS(940), + [aux_sym__val_number_token4] = ACTIONS(940), + [aux_sym__val_number_token5] = ACTIONS(940), + [aux_sym__val_number_token6] = ACTIONS(940), + [anon_sym_0b] = ACTIONS(938), + [sym_filesize_unit] = ACTIONS(3539), + [sym_duration_unit] = ACTIONS(3541), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = ACTIONS(940), + [anon_sym_DQUOTE] = ACTIONS(940), + [sym__str_single_quotes] = ACTIONS(940), + [sym__str_back_ticks] = ACTIONS(940), + [anon_sym_err_GT] = ACTIONS(940), + [anon_sym_out_GT] = ACTIONS(940), + [anon_sym_e_GT] = ACTIONS(940), + [anon_sym_o_GT] = ACTIONS(940), + [anon_sym_err_PLUSout_GT] = ACTIONS(940), + [anon_sym_out_PLUSerr_GT] = ACTIONS(940), + [anon_sym_o_PLUSe_GT] = ACTIONS(940), + [anon_sym_e_PLUSo_GT] = ACTIONS(940), + [aux_sym_unquoted_token1] = ACTIONS(938), [anon_sym_POUND] = ACTIONS(3), }, - [849] = { - [sym_cell_path] = STATE(1007), - [sym_path] = STATE(832), - [sym_comment] = STATE(849), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_alias] = ACTIONS(1148), - [anon_sym_let] = ACTIONS(1148), - [anon_sym_let_DASHenv] = ACTIONS(1148), - [anon_sym_mut] = ACTIONS(1148), - [anon_sym_const] = ACTIONS(1148), - [sym_cmd_identifier] = ACTIONS(1148), - [anon_sym_def] = ACTIONS(1148), - [anon_sym_export_DASHenv] = ACTIONS(1148), - [anon_sym_extern] = ACTIONS(1148), - [anon_sym_module] = ACTIONS(1148), - [anon_sym_use] = ACTIONS(1148), - [anon_sym_LPAREN] = ACTIONS(1150), - [anon_sym_DOLLAR] = ACTIONS(1150), - [anon_sym_error] = ACTIONS(1148), - [anon_sym_list] = ACTIONS(1148), - [anon_sym_GT] = ACTIONS(1148), - [anon_sym_DASH] = ACTIONS(1148), - [anon_sym_break] = ACTIONS(1148), - [anon_sym_continue] = ACTIONS(1148), - [anon_sym_for] = ACTIONS(1148), - [anon_sym_in] = ACTIONS(1148), - [anon_sym_loop] = ACTIONS(1148), - [anon_sym_make] = ACTIONS(1148), - [anon_sym_while] = ACTIONS(1148), - [anon_sym_do] = ACTIONS(1148), - [anon_sym_if] = ACTIONS(1148), - [anon_sym_else] = ACTIONS(1148), - [anon_sym_match] = ACTIONS(1148), - [anon_sym_RBRACE] = ACTIONS(1150), - [anon_sym_try] = ACTIONS(1148), - [anon_sym_catch] = ACTIONS(1148), - [anon_sym_return] = ACTIONS(1148), - [anon_sym_source] = ACTIONS(1148), - [anon_sym_source_DASHenv] = ACTIONS(1148), - [anon_sym_register] = ACTIONS(1148), - [anon_sym_hide] = ACTIONS(1148), - [anon_sym_hide_DASHenv] = ACTIONS(1148), - [anon_sym_overlay] = ACTIONS(1148), - [anon_sym_new] = ACTIONS(1148), - [anon_sym_as] = ACTIONS(1148), - [anon_sym_STAR] = ACTIONS(1148), - [anon_sym_STAR_STAR] = ACTIONS(1150), - [anon_sym_PLUS_PLUS] = ACTIONS(1150), - [anon_sym_SLASH] = ACTIONS(1148), - [anon_sym_mod] = ACTIONS(1148), - [anon_sym_SLASH_SLASH] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(1148), - [anon_sym_bit_DASHshl] = ACTIONS(1148), - [anon_sym_bit_DASHshr] = ACTIONS(1148), - [anon_sym_EQ_EQ] = ACTIONS(1150), - [anon_sym_BANG_EQ] = ACTIONS(1150), - [anon_sym_LT2] = ACTIONS(1148), - [anon_sym_LT_EQ] = ACTIONS(1150), - [anon_sym_GT_EQ] = ACTIONS(1150), - [anon_sym_not_DASHin] = ACTIONS(1148), - [anon_sym_starts_DASHwith] = ACTIONS(1148), - [anon_sym_ends_DASHwith] = ACTIONS(1148), - [anon_sym_EQ_TILDE] = ACTIONS(1150), - [anon_sym_BANG_TILDE] = ACTIONS(1150), - [anon_sym_bit_DASHand] = ACTIONS(1148), - [anon_sym_bit_DASHxor] = ACTIONS(1148), - [anon_sym_bit_DASHor] = ACTIONS(1148), - [anon_sym_and] = ACTIONS(1148), - [anon_sym_xor] = ACTIONS(1148), - [anon_sym_or] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1705), - [aux_sym__val_number_decimal_token1] = ACTIONS(1148), - [aux_sym__val_number_decimal_token2] = ACTIONS(1150), - [anon_sym_DOT2] = ACTIONS(1148), - [aux_sym__val_number_decimal_token3] = ACTIONS(1150), - [aux_sym__val_number_token1] = ACTIONS(1150), - [aux_sym__val_number_token2] = ACTIONS(1150), - [aux_sym__val_number_token3] = ACTIONS(1150), - [aux_sym__val_number_token4] = ACTIONS(1148), - [aux_sym__val_number_token5] = ACTIONS(1150), - [aux_sym__val_number_token6] = ACTIONS(1148), - [anon_sym_DQUOTE] = ACTIONS(1150), - [sym__str_single_quotes] = ACTIONS(1150), - [sym__str_back_ticks] = ACTIONS(1150), - [aux_sym__record_key_token2] = ACTIONS(1148), + [1026] = { + [sym_comment] = STATE(1026), + [anon_sym_LBRACK] = ACTIONS(1026), + [anon_sym_COMMA] = ACTIONS(1026), + [anon_sym_LPAREN] = ACTIONS(1026), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_GT] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1026), + [anon_sym_RBRACE] = ACTIONS(1026), + [anon_sym__] = ACTIONS(1024), + [anon_sym_DOT_DOT] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(3543), + [anon_sym_STAR_STAR] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [anon_sym_SLASH] = ACTIONS(1024), + [anon_sym_mod] = ACTIONS(1026), + [anon_sym_SLASH_SLASH] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_bit_DASHshl] = ACTIONS(1026), + [anon_sym_bit_DASHshr] = ACTIONS(1026), + [anon_sym_EQ_EQ] = ACTIONS(1026), + [anon_sym_BANG_EQ] = ACTIONS(1026), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ] = ACTIONS(1026), + [anon_sym_GT_EQ] = ACTIONS(1026), + [anon_sym_not_DASHin] = ACTIONS(1026), + [anon_sym_starts_DASHwith] = ACTIONS(1026), + [anon_sym_ends_DASHwith] = ACTIONS(1026), + [anon_sym_EQ_TILDE] = ACTIONS(1026), + [anon_sym_BANG_TILDE] = ACTIONS(1026), + [anon_sym_bit_DASHand] = ACTIONS(1026), + [anon_sym_bit_DASHxor] = ACTIONS(1026), + [anon_sym_bit_DASHor] = ACTIONS(1026), + [anon_sym_and] = ACTIONS(1026), + [anon_sym_xor] = ACTIONS(1026), + [anon_sym_or] = ACTIONS(1026), + [anon_sym_DOT_DOT2] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1026), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1026), + [anon_sym_null] = ACTIONS(1026), + [anon_sym_true] = ACTIONS(1026), + [anon_sym_false] = ACTIONS(1026), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1026), + [aux_sym__val_number_token1] = ACTIONS(1026), + [aux_sym__val_number_token2] = ACTIONS(1026), + [aux_sym__val_number_token3] = ACTIONS(1026), + [aux_sym__val_number_token4] = ACTIONS(1026), + [aux_sym__val_number_token5] = ACTIONS(1026), + [aux_sym__val_number_token6] = ACTIONS(1026), + [anon_sym_0b] = ACTIONS(1024), + [anon_sym_0o] = ACTIONS(1024), + [anon_sym_0x] = ACTIONS(1024), + [sym_val_date] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(1026), + [sym__str_single_quotes] = ACTIONS(1026), + [sym__str_back_ticks] = ACTIONS(1026), + [anon_sym_err_GT] = ACTIONS(1026), + [anon_sym_out_GT] = ACTIONS(1026), + [anon_sym_e_GT] = ACTIONS(1026), + [anon_sym_o_GT] = ACTIONS(1026), + [anon_sym_err_PLUSout_GT] = ACTIONS(1026), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1026), + [anon_sym_o_PLUSe_GT] = ACTIONS(1026), + [anon_sym_e_PLUSo_GT] = ACTIONS(1026), + [aux_sym_unquoted_token1] = ACTIONS(1024), [anon_sym_POUND] = ACTIONS(3), }, - [850] = { - [sym_comment] = STATE(850), - [anon_sym_export] = ACTIONS(1194), - [anon_sym_alias] = ACTIONS(1194), - [anon_sym_let] = ACTIONS(1194), - [anon_sym_let_DASHenv] = ACTIONS(1194), - [anon_sym_mut] = ACTIONS(1194), - [anon_sym_const] = ACTIONS(1194), - [sym_cmd_identifier] = ACTIONS(1194), - [anon_sym_def] = ACTIONS(1194), - [anon_sym_export_DASHenv] = ACTIONS(1194), - [anon_sym_extern] = ACTIONS(1194), - [anon_sym_module] = ACTIONS(1194), - [anon_sym_use] = ACTIONS(1194), - [anon_sym_LPAREN] = ACTIONS(1196), - [anon_sym_DOLLAR] = ACTIONS(1196), - [anon_sym_error] = ACTIONS(1194), - [anon_sym_list] = ACTIONS(1194), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_break] = ACTIONS(1194), - [anon_sym_continue] = ACTIONS(1194), - [anon_sym_for] = ACTIONS(1194), - [anon_sym_in] = ACTIONS(1200), - [anon_sym_loop] = ACTIONS(1194), - [anon_sym_make] = ACTIONS(1194), - [anon_sym_while] = ACTIONS(1194), - [anon_sym_do] = ACTIONS(1194), - [anon_sym_if] = ACTIONS(1194), - [anon_sym_else] = ACTIONS(1194), - [anon_sym_match] = ACTIONS(1194), - [anon_sym_RBRACE] = ACTIONS(1196), - [anon_sym_try] = ACTIONS(1194), - [anon_sym_catch] = ACTIONS(1194), - [anon_sym_return] = ACTIONS(1194), - [anon_sym_source] = ACTIONS(1194), - [anon_sym_source_DASHenv] = ACTIONS(1194), - [anon_sym_register] = ACTIONS(1194), - [anon_sym_hide] = ACTIONS(1194), - [anon_sym_hide_DASHenv] = ACTIONS(1194), - [anon_sym_overlay] = ACTIONS(1194), - [anon_sym_new] = ACTIONS(1194), - [anon_sym_as] = ACTIONS(1194), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_STAR_STAR] = ACTIONS(1366), - [anon_sym_PLUS_PLUS] = ACTIONS(1366), - [anon_sym_SLASH] = ACTIONS(1198), - [anon_sym_mod] = ACTIONS(1198), - [anon_sym_SLASH_SLASH] = ACTIONS(1366), - [anon_sym_PLUS] = ACTIONS(1200), - [anon_sym_bit_DASHshl] = ACTIONS(1198), - [anon_sym_bit_DASHshr] = ACTIONS(1198), - [anon_sym_EQ_EQ] = ACTIONS(1366), - [anon_sym_BANG_EQ] = ACTIONS(1366), - [anon_sym_LT2] = ACTIONS(1198), - [anon_sym_LT_EQ] = ACTIONS(1366), - [anon_sym_GT_EQ] = ACTIONS(1366), - [anon_sym_not_DASHin] = ACTIONS(1198), - [anon_sym_starts_DASHwith] = ACTIONS(1198), - [anon_sym_ends_DASHwith] = ACTIONS(1198), - [anon_sym_EQ_TILDE] = ACTIONS(1366), - [anon_sym_BANG_TILDE] = ACTIONS(1366), - [anon_sym_bit_DASHand] = ACTIONS(1198), - [anon_sym_bit_DASHxor] = ACTIONS(1198), - [anon_sym_bit_DASHor] = ACTIONS(1198), - [anon_sym_and] = ACTIONS(1198), - [anon_sym_xor] = ACTIONS(1198), - [anon_sym_or] = ACTIONS(1198), - [anon_sym_DOT_DOT2] = ACTIONS(1716), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1718), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1718), - [aux_sym__val_number_decimal_token1] = ACTIONS(1194), - [aux_sym__val_number_decimal_token2] = ACTIONS(1196), - [anon_sym_DOT2] = ACTIONS(1194), - [aux_sym__val_number_decimal_token3] = ACTIONS(1196), - [aux_sym__val_number_token1] = ACTIONS(1196), - [aux_sym__val_number_token2] = ACTIONS(1196), - [aux_sym__val_number_token3] = ACTIONS(1196), - [aux_sym__val_number_token4] = ACTIONS(1194), - [aux_sym__val_number_token5] = ACTIONS(1196), - [aux_sym__val_number_token6] = ACTIONS(1194), - [anon_sym_DQUOTE] = ACTIONS(1196), - [sym__str_single_quotes] = ACTIONS(1196), - [sym__str_back_ticks] = ACTIONS(1196), - [aux_sym__record_key_token2] = ACTIONS(1194), + [1027] = { + [sym_comment] = STATE(1027), + [anon_sym_LBRACK] = ACTIONS(1026), + [anon_sym_COMMA] = ACTIONS(1026), + [anon_sym_LPAREN] = ACTIONS(1026), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_GT] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1026), + [anon_sym_RBRACE] = ACTIONS(1026), + [anon_sym__] = ACTIONS(1024), + [anon_sym_DOT_DOT] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(3543), + [anon_sym_STAR_STAR] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [anon_sym_SLASH] = ACTIONS(1024), + [anon_sym_mod] = ACTIONS(1026), + [anon_sym_SLASH_SLASH] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_bit_DASHshl] = ACTIONS(1026), + [anon_sym_bit_DASHshr] = ACTIONS(1026), + [anon_sym_EQ_EQ] = ACTIONS(1026), + [anon_sym_BANG_EQ] = ACTIONS(1026), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ] = ACTIONS(1026), + [anon_sym_GT_EQ] = ACTIONS(1026), + [anon_sym_not_DASHin] = ACTIONS(1026), + [anon_sym_starts_DASHwith] = ACTIONS(1026), + [anon_sym_ends_DASHwith] = ACTIONS(1026), + [anon_sym_EQ_TILDE] = ACTIONS(1026), + [anon_sym_BANG_TILDE] = ACTIONS(1026), + [anon_sym_bit_DASHand] = ACTIONS(1026), + [anon_sym_bit_DASHxor] = ACTIONS(1026), + [anon_sym_bit_DASHor] = ACTIONS(1026), + [anon_sym_and] = ACTIONS(1026), + [anon_sym_xor] = ACTIONS(1026), + [anon_sym_or] = ACTIONS(1026), + [anon_sym_DOT_DOT2] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1026), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1026), + [anon_sym_null] = ACTIONS(1026), + [anon_sym_true] = ACTIONS(1026), + [anon_sym_false] = ACTIONS(1026), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1026), + [aux_sym__val_number_token1] = ACTIONS(1026), + [aux_sym__val_number_token2] = ACTIONS(1026), + [aux_sym__val_number_token3] = ACTIONS(1026), + [aux_sym__val_number_token4] = ACTIONS(1026), + [aux_sym__val_number_token5] = ACTIONS(1026), + [aux_sym__val_number_token6] = ACTIONS(1026), + [anon_sym_0b] = ACTIONS(1024), + [anon_sym_0o] = ACTIONS(1024), + [anon_sym_0x] = ACTIONS(1024), + [sym_val_date] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(1026), + [sym__str_single_quotes] = ACTIONS(1026), + [sym__str_back_ticks] = ACTIONS(1026), + [anon_sym_err_GT] = ACTIONS(1026), + [anon_sym_out_GT] = ACTIONS(1026), + [anon_sym_e_GT] = ACTIONS(1026), + [anon_sym_o_GT] = ACTIONS(1026), + [anon_sym_err_PLUSout_GT] = ACTIONS(1026), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1026), + [anon_sym_o_PLUSe_GT] = ACTIONS(1026), + [anon_sym_e_PLUSo_GT] = ACTIONS(1026), + [aux_sym_unquoted_token1] = ACTIONS(1024), [anon_sym_POUND] = ACTIONS(3), }, - [851] = { - [sym_comment] = STATE(851), - [anon_sym_export] = ACTIONS(1113), - [anon_sym_alias] = ACTIONS(1113), - [anon_sym_let] = ACTIONS(1113), - [anon_sym_let_DASHenv] = ACTIONS(1113), - [anon_sym_mut] = ACTIONS(1113), - [anon_sym_const] = ACTIONS(1113), - [sym_cmd_identifier] = ACTIONS(1113), - [anon_sym_def] = ACTIONS(1113), - [anon_sym_export_DASHenv] = ACTIONS(1113), - [anon_sym_extern] = ACTIONS(1113), - [anon_sym_module] = ACTIONS(1113), - [anon_sym_use] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1113), - [anon_sym_error] = ACTIONS(1113), - [anon_sym_list] = ACTIONS(1113), - [anon_sym_GT] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_in] = ACTIONS(1113), - [anon_sym_loop] = ACTIONS(1113), - [anon_sym_make] = ACTIONS(1113), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_else] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1113), - [anon_sym_RBRACE] = ACTIONS(1113), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_catch] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_source] = ACTIONS(1113), - [anon_sym_source_DASHenv] = ACTIONS(1113), - [anon_sym_register] = ACTIONS(1113), - [anon_sym_hide] = ACTIONS(1113), - [anon_sym_hide_DASHenv] = ACTIONS(1113), - [anon_sym_overlay] = ACTIONS(1113), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_as] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_STAR_STAR] = ACTIONS(1113), - [anon_sym_PLUS_PLUS] = ACTIONS(1113), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_mod] = ACTIONS(1113), - [anon_sym_SLASH_SLASH] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_bit_DASHshl] = ACTIONS(1113), - [anon_sym_bit_DASHshr] = ACTIONS(1113), - [anon_sym_EQ_EQ] = ACTIONS(1113), - [anon_sym_BANG_EQ] = ACTIONS(1113), - [anon_sym_LT2] = ACTIONS(1113), - [anon_sym_LT_EQ] = ACTIONS(1113), - [anon_sym_GT_EQ] = ACTIONS(1113), - [anon_sym_not_DASHin] = ACTIONS(1113), - [anon_sym_starts_DASHwith] = ACTIONS(1113), - [anon_sym_ends_DASHwith] = ACTIONS(1113), - [anon_sym_EQ_TILDE] = ACTIONS(1113), - [anon_sym_BANG_TILDE] = ACTIONS(1113), - [anon_sym_bit_DASHand] = ACTIONS(1113), - [anon_sym_bit_DASHxor] = ACTIONS(1113), - [anon_sym_bit_DASHor] = ACTIONS(1113), - [anon_sym_and] = ACTIONS(1113), - [anon_sym_xor] = ACTIONS(1113), - [anon_sym_or] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1115), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_decimal_token2] = ACTIONS(1113), - [anon_sym_DOT2] = ACTIONS(1113), - [aux_sym__val_number_decimal_token3] = ACTIONS(1113), - [aux_sym__val_number_token1] = ACTIONS(1113), - [aux_sym__val_number_token2] = ACTIONS(1113), - [aux_sym__val_number_token3] = ACTIONS(1113), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1113), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym__str_single_quotes] = ACTIONS(1113), - [sym__str_back_ticks] = ACTIONS(1113), - [sym__entry_separator] = ACTIONS(1115), - [aux_sym__record_key_token2] = ACTIONS(1113), + [1028] = { + [sym_comment] = STATE(1028), + [ts_builtin_sym_end] = ACTIONS(2364), + [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), + [anon_sym_SEMI] = ACTIONS(2362), + [sym_cmd_identifier] = ACTIONS(2362), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2362), + [anon_sym_LPAREN] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2362), + [anon_sym_error] = ACTIONS(2362), + [anon_sym_DASH_DASH] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_break] = ACTIONS(2362), + [anon_sym_continue] = ACTIONS(2362), + [anon_sym_for] = ACTIONS(2362), + [anon_sym_loop] = ACTIONS(2362), + [anon_sym_while] = ACTIONS(2362), + [anon_sym_do] = ACTIONS(2362), + [anon_sym_if] = ACTIONS(2362), + [anon_sym_match] = ACTIONS(2362), + [anon_sym_LBRACE] = ACTIONS(2362), + [anon_sym_DOT_DOT] = ACTIONS(2362), + [anon_sym_try] = 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_where] = ACTIONS(2362), + [anon_sym_not] = ACTIONS(2362), + [anon_sym_DOT_DOT2] = ACTIONS(2362), + [anon_sym_DOT] = ACTIONS(2362), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2362), + [anon_sym_DOT_DOT_LT] = ACTIONS(2362), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2364), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2364), + [anon_sym_null] = ACTIONS(2362), + [anon_sym_true] = ACTIONS(2362), + [anon_sym_false] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2362), + [aux_sym__val_number_decimal_token2] = ACTIONS(2362), + [anon_sym_DOT2] = ACTIONS(2362), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2362), + [anon_sym_0o] = ACTIONS(2362), + [anon_sym_0x] = ACTIONS(2362), + [sym_val_date] = 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_CARET] = ACTIONS(2362), + [aux_sym_unquoted_token2] = ACTIONS(2362), [anon_sym_POUND] = ACTIONS(113), }, - [852] = { - [sym_comment] = STATE(852), - [anon_sym_export] = ACTIONS(1247), - [anon_sym_alias] = ACTIONS(1247), - [anon_sym_let] = ACTIONS(1247), - [anon_sym_let_DASHenv] = ACTIONS(1247), - [anon_sym_mut] = ACTIONS(1247), - [anon_sym_const] = ACTIONS(1247), - [sym_cmd_identifier] = ACTIONS(1247), - [anon_sym_def] = ACTIONS(1247), - [anon_sym_export_DASHenv] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1247), - [anon_sym_module] = ACTIONS(1247), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_DOLLAR] = ACTIONS(1247), - [anon_sym_error] = ACTIONS(1247), - [anon_sym_list] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1247), - [anon_sym_break] = ACTIONS(1247), - [anon_sym_continue] = ACTIONS(1247), - [anon_sym_for] = ACTIONS(1247), - [anon_sym_in] = ACTIONS(1247), - [anon_sym_loop] = ACTIONS(1247), - [anon_sym_make] = ACTIONS(1247), - [anon_sym_while] = ACTIONS(1247), - [anon_sym_do] = ACTIONS(1247), - [anon_sym_if] = ACTIONS(1247), - [anon_sym_else] = ACTIONS(1247), - [anon_sym_match] = ACTIONS(1247), - [anon_sym_RBRACE] = ACTIONS(1247), - [anon_sym_try] = ACTIONS(1247), - [anon_sym_catch] = ACTIONS(1247), - [anon_sym_return] = ACTIONS(1247), - [anon_sym_source] = ACTIONS(1247), - [anon_sym_source_DASHenv] = ACTIONS(1247), - [anon_sym_register] = ACTIONS(1247), - [anon_sym_hide] = ACTIONS(1247), - [anon_sym_hide_DASHenv] = ACTIONS(1247), - [anon_sym_overlay] = ACTIONS(1247), - [anon_sym_new] = ACTIONS(1247), - [anon_sym_as] = ACTIONS(1247), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_STAR_STAR] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_mod] = ACTIONS(1247), - [anon_sym_SLASH_SLASH] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1247), - [anon_sym_bit_DASHshl] = ACTIONS(1247), - [anon_sym_bit_DASHshr] = ACTIONS(1247), - [anon_sym_EQ_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1247), - [anon_sym_LT2] = ACTIONS(1247), - [anon_sym_LT_EQ] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1247), - [anon_sym_not_DASHin] = ACTIONS(1247), - [anon_sym_starts_DASHwith] = ACTIONS(1247), - [anon_sym_ends_DASHwith] = ACTIONS(1247), - [anon_sym_EQ_TILDE] = ACTIONS(1247), - [anon_sym_BANG_TILDE] = ACTIONS(1247), - [anon_sym_bit_DASHand] = ACTIONS(1247), - [anon_sym_bit_DASHxor] = ACTIONS(1247), - [anon_sym_bit_DASHor] = ACTIONS(1247), - [anon_sym_and] = ACTIONS(1247), - [anon_sym_xor] = ACTIONS(1247), - [anon_sym_or] = ACTIONS(1247), - [aux_sym__val_number_decimal_token1] = ACTIONS(1247), - [aux_sym__val_number_decimal_token2] = ACTIONS(1247), - [anon_sym_DOT2] = ACTIONS(1247), - [aux_sym__val_number_decimal_token3] = ACTIONS(1247), - [aux_sym__val_number_token1] = ACTIONS(1247), - [aux_sym__val_number_token2] = ACTIONS(1247), - [aux_sym__val_number_token3] = ACTIONS(1247), - [aux_sym__val_number_token4] = ACTIONS(1247), - [aux_sym__val_number_token5] = ACTIONS(1247), - [aux_sym__val_number_token6] = ACTIONS(1247), - [anon_sym_DQUOTE] = ACTIONS(1247), - [sym__str_single_quotes] = ACTIONS(1247), - [sym__str_back_ticks] = ACTIONS(1247), - [sym__entry_separator] = ACTIONS(1249), - [aux_sym__record_key_token2] = ACTIONS(1247), - [aux_sym_unquoted_token6] = ACTIONS(1251), + [1029] = { + [sym_comment] = STATE(1029), + [ts_builtin_sym_end] = ACTIONS(2404), + [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), + [anon_sym_SEMI] = ACTIONS(2402), + [sym_cmd_identifier] = ACTIONS(2402), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2402), + [anon_sym_LPAREN] = ACTIONS(2402), + [anon_sym_DOLLAR] = ACTIONS(2402), + [anon_sym_error] = ACTIONS(2402), + [anon_sym_DASH_DASH] = ACTIONS(2402), + [anon_sym_DASH] = ACTIONS(2402), + [anon_sym_break] = ACTIONS(2402), + [anon_sym_continue] = ACTIONS(2402), + [anon_sym_for] = ACTIONS(2402), + [anon_sym_loop] = ACTIONS(2402), + [anon_sym_while] = ACTIONS(2402), + [anon_sym_do] = ACTIONS(2402), + [anon_sym_if] = ACTIONS(2402), + [anon_sym_match] = ACTIONS(2402), + [anon_sym_LBRACE] = ACTIONS(2402), + [anon_sym_DOT_DOT] = ACTIONS(2402), + [anon_sym_try] = 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_where] = ACTIONS(2402), + [anon_sym_not] = ACTIONS(2402), + [anon_sym_DOT_DOT2] = ACTIONS(2402), + [anon_sym_DOT] = ACTIONS(2402), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2402), + [anon_sym_DOT_DOT_LT] = ACTIONS(2402), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2404), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2404), + [anon_sym_null] = ACTIONS(2402), + [anon_sym_true] = ACTIONS(2402), + [anon_sym_false] = ACTIONS(2402), + [aux_sym__val_number_decimal_token1] = ACTIONS(2402), + [aux_sym__val_number_decimal_token2] = ACTIONS(2402), + [anon_sym_DOT2] = ACTIONS(2402), + [aux_sym__val_number_decimal_token3] = ACTIONS(2402), + [aux_sym__val_number_token1] = ACTIONS(2402), + [aux_sym__val_number_token2] = ACTIONS(2402), + [aux_sym__val_number_token3] = ACTIONS(2402), + [aux_sym__val_number_token4] = ACTIONS(2402), + [aux_sym__val_number_token5] = ACTIONS(2402), + [aux_sym__val_number_token6] = ACTIONS(2402), + [anon_sym_0b] = ACTIONS(2402), + [anon_sym_0o] = ACTIONS(2402), + [anon_sym_0x] = ACTIONS(2402), + [sym_val_date] = 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_CARET] = ACTIONS(2402), + [aux_sym_unquoted_token2] = ACTIONS(2402), [anon_sym_POUND] = ACTIONS(113), }, - [853] = { - [sym_comment] = STATE(853), - [anon_sym_export] = ACTIONS(1117), - [anon_sym_alias] = ACTIONS(1117), - [anon_sym_let] = ACTIONS(1117), - [anon_sym_let_DASHenv] = ACTIONS(1117), - [anon_sym_mut] = ACTIONS(1117), - [anon_sym_const] = ACTIONS(1117), - [sym_cmd_identifier] = ACTIONS(1117), - [anon_sym_def] = ACTIONS(1117), - [anon_sym_export_DASHenv] = ACTIONS(1117), - [anon_sym_extern] = ACTIONS(1117), - [anon_sym_module] = ACTIONS(1117), - [anon_sym_use] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1117), - [anon_sym_DOLLAR] = ACTIONS(1117), - [anon_sym_error] = ACTIONS(1117), - [anon_sym_list] = ACTIONS(1117), - [anon_sym_GT] = ACTIONS(1117), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_break] = ACTIONS(1117), - [anon_sym_continue] = ACTIONS(1117), - [anon_sym_for] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1117), - [anon_sym_loop] = ACTIONS(1117), - [anon_sym_make] = ACTIONS(1117), - [anon_sym_while] = ACTIONS(1117), - [anon_sym_do] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_else] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1117), - [anon_sym_RBRACE] = ACTIONS(1117), - [anon_sym_try] = ACTIONS(1117), - [anon_sym_catch] = ACTIONS(1117), - [anon_sym_return] = ACTIONS(1117), - [anon_sym_source] = ACTIONS(1117), - [anon_sym_source_DASHenv] = ACTIONS(1117), - [anon_sym_register] = ACTIONS(1117), - [anon_sym_hide] = ACTIONS(1117), - [anon_sym_hide_DASHenv] = ACTIONS(1117), - [anon_sym_overlay] = ACTIONS(1117), - [anon_sym_new] = ACTIONS(1117), - [anon_sym_as] = ACTIONS(1117), - [anon_sym_STAR] = ACTIONS(1117), - [anon_sym_STAR_STAR] = ACTIONS(1117), - [anon_sym_PLUS_PLUS] = ACTIONS(1117), - [anon_sym_SLASH] = ACTIONS(1117), - [anon_sym_mod] = ACTIONS(1117), - [anon_sym_SLASH_SLASH] = ACTIONS(1117), - [anon_sym_PLUS] = ACTIONS(1117), - [anon_sym_bit_DASHshl] = ACTIONS(1117), - [anon_sym_bit_DASHshr] = ACTIONS(1117), - [anon_sym_EQ_EQ] = ACTIONS(1117), - [anon_sym_BANG_EQ] = ACTIONS(1117), - [anon_sym_LT2] = ACTIONS(1117), - [anon_sym_LT_EQ] = ACTIONS(1117), - [anon_sym_GT_EQ] = ACTIONS(1117), - [anon_sym_not_DASHin] = ACTIONS(1117), - [anon_sym_starts_DASHwith] = ACTIONS(1117), - [anon_sym_ends_DASHwith] = ACTIONS(1117), - [anon_sym_EQ_TILDE] = ACTIONS(1117), - [anon_sym_BANG_TILDE] = ACTIONS(1117), - [anon_sym_bit_DASHand] = ACTIONS(1117), - [anon_sym_bit_DASHxor] = ACTIONS(1117), - [anon_sym_bit_DASHor] = ACTIONS(1117), - [anon_sym_and] = ACTIONS(1117), - [anon_sym_xor] = ACTIONS(1117), - [anon_sym_or] = ACTIONS(1117), - [anon_sym_DOT] = ACTIONS(1119), - [aux_sym__val_number_decimal_token1] = ACTIONS(1117), - [aux_sym__val_number_decimal_token2] = ACTIONS(1117), - [anon_sym_DOT2] = ACTIONS(1117), - [aux_sym__val_number_decimal_token3] = ACTIONS(1117), - [aux_sym__val_number_token1] = ACTIONS(1117), - [aux_sym__val_number_token2] = ACTIONS(1117), - [aux_sym__val_number_token3] = ACTIONS(1117), - [aux_sym__val_number_token4] = ACTIONS(1117), - [aux_sym__val_number_token5] = ACTIONS(1117), - [aux_sym__val_number_token6] = ACTIONS(1117), - [anon_sym_DQUOTE] = ACTIONS(1117), - [sym__str_single_quotes] = ACTIONS(1117), - [sym__str_back_ticks] = ACTIONS(1117), - [sym__entry_separator] = ACTIONS(1119), - [aux_sym__record_key_token2] = ACTIONS(1117), + [1030] = { + [sym__flag] = STATE(2100), + [sym_short_flag] = STATE(2106), + [sym_long_flag] = STATE(2106), + [sym_long_flag_equals_value] = STATE(2237), + [sym_comment] = STATE(1030), + [aux_sym_overlay_use_repeat1] = STATE(1017), + [ts_builtin_sym_end] = ACTIONS(3453), + [anon_sym_export] = ACTIONS(3451), + [anon_sym_alias] = ACTIONS(3451), + [anon_sym_let] = ACTIONS(3451), + [anon_sym_let_DASHenv] = ACTIONS(3451), + [anon_sym_mut] = ACTIONS(3451), + [anon_sym_const] = ACTIONS(3451), + [anon_sym_SEMI] = ACTIONS(3451), + [sym_cmd_identifier] = ACTIONS(3451), + [anon_sym_LF] = ACTIONS(3453), + [anon_sym_def] = ACTIONS(3451), + [anon_sym_export_DASHenv] = ACTIONS(3451), + [anon_sym_extern] = ACTIONS(3451), + [anon_sym_module] = ACTIONS(3451), + [anon_sym_use] = ACTIONS(3451), + [anon_sym_LBRACK] = ACTIONS(3451), + [anon_sym_LPAREN] = ACTIONS(3451), + [anon_sym_DOLLAR] = ACTIONS(3451), + [anon_sym_error] = ACTIONS(3451), + [anon_sym_DASH_DASH] = ACTIONS(3496), + [anon_sym_DASH] = ACTIONS(3451), + [anon_sym_break] = ACTIONS(3451), + [anon_sym_continue] = ACTIONS(3451), + [anon_sym_for] = ACTIONS(3451), + [anon_sym_loop] = ACTIONS(3451), + [anon_sym_while] = ACTIONS(3451), + [anon_sym_do] = ACTIONS(3451), + [anon_sym_if] = ACTIONS(3451), + [anon_sym_match] = ACTIONS(3451), + [anon_sym_LBRACE] = ACTIONS(3451), + [anon_sym_DOT_DOT] = ACTIONS(3451), + [anon_sym_try] = ACTIONS(3451), + [anon_sym_return] = ACTIONS(3451), + [anon_sym_source] = ACTIONS(3451), + [anon_sym_source_DASHenv] = ACTIONS(3451), + [anon_sym_register] = ACTIONS(3451), + [anon_sym_hide] = ACTIONS(3451), + [anon_sym_hide_DASHenv] = ACTIONS(3451), + [anon_sym_overlay] = ACTIONS(3451), + [anon_sym_as] = ACTIONS(3545), + [anon_sym_where] = ACTIONS(3451), + [anon_sym_not] = ACTIONS(3451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3451), + [anon_sym_DOT_DOT_LT] = ACTIONS(3451), + [anon_sym_null] = ACTIONS(3451), + [anon_sym_true] = ACTIONS(3451), + [anon_sym_false] = ACTIONS(3451), + [aux_sym__val_number_decimal_token1] = ACTIONS(3451), + [aux_sym__val_number_decimal_token2] = ACTIONS(3451), + [anon_sym_DOT2] = ACTIONS(3451), + [aux_sym__val_number_decimal_token3] = ACTIONS(3451), + [aux_sym__val_number_token1] = ACTIONS(3451), + [aux_sym__val_number_token2] = ACTIONS(3451), + [aux_sym__val_number_token3] = ACTIONS(3451), + [aux_sym__val_number_token4] = ACTIONS(3451), + [aux_sym__val_number_token5] = ACTIONS(3451), + [aux_sym__val_number_token6] = ACTIONS(3451), + [anon_sym_0b] = ACTIONS(3451), + [anon_sym_0o] = ACTIONS(3451), + [anon_sym_0x] = ACTIONS(3451), + [sym_val_date] = ACTIONS(3451), + [anon_sym_DQUOTE] = ACTIONS(3451), + [sym__str_single_quotes] = ACTIONS(3451), + [sym__str_back_ticks] = ACTIONS(3451), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3451), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3451), + [anon_sym_CARET] = ACTIONS(3451), [anon_sym_POUND] = ACTIONS(113), }, - [854] = { - [sym_comment] = STATE(854), - [anon_sym_export] = ACTIONS(1253), - [anon_sym_alias] = ACTIONS(1253), - [anon_sym_let] = ACTIONS(1253), - [anon_sym_let_DASHenv] = ACTIONS(1253), - [anon_sym_mut] = ACTIONS(1253), - [anon_sym_const] = ACTIONS(1253), - [sym_cmd_identifier] = ACTIONS(1253), - [anon_sym_def] = ACTIONS(1253), - [anon_sym_export_DASHenv] = ACTIONS(1253), - [anon_sym_extern] = ACTIONS(1253), - [anon_sym_module] = ACTIONS(1253), - [anon_sym_use] = ACTIONS(1253), - [anon_sym_LPAREN] = ACTIONS(1253), - [anon_sym_DOLLAR] = ACTIONS(1253), - [anon_sym_error] = ACTIONS(1253), - [anon_sym_list] = ACTIONS(1253), - [anon_sym_GT] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_break] = ACTIONS(1253), - [anon_sym_continue] = ACTIONS(1253), - [anon_sym_for] = ACTIONS(1253), - [anon_sym_in] = ACTIONS(1253), - [anon_sym_loop] = ACTIONS(1253), - [anon_sym_make] = ACTIONS(1253), - [anon_sym_while] = ACTIONS(1253), - [anon_sym_do] = ACTIONS(1253), - [anon_sym_if] = ACTIONS(1253), - [anon_sym_else] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1253), - [anon_sym_RBRACE] = ACTIONS(1253), - [anon_sym_try] = ACTIONS(1253), - [anon_sym_catch] = ACTIONS(1253), - [anon_sym_return] = ACTIONS(1253), - [anon_sym_source] = ACTIONS(1253), - [anon_sym_source_DASHenv] = ACTIONS(1253), - [anon_sym_register] = ACTIONS(1253), - [anon_sym_hide] = ACTIONS(1253), - [anon_sym_hide_DASHenv] = ACTIONS(1253), - [anon_sym_overlay] = ACTIONS(1253), - [anon_sym_new] = ACTIONS(1253), - [anon_sym_as] = ACTIONS(1253), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_STAR_STAR] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_mod] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_bit_DASHshl] = ACTIONS(1253), - [anon_sym_bit_DASHshr] = ACTIONS(1253), - [anon_sym_EQ_EQ] = ACTIONS(1253), - [anon_sym_BANG_EQ] = ACTIONS(1253), - [anon_sym_LT2] = ACTIONS(1253), - [anon_sym_LT_EQ] = ACTIONS(1253), - [anon_sym_GT_EQ] = ACTIONS(1253), - [anon_sym_not_DASHin] = ACTIONS(1253), - [anon_sym_starts_DASHwith] = ACTIONS(1253), - [anon_sym_ends_DASHwith] = ACTIONS(1253), - [anon_sym_EQ_TILDE] = ACTIONS(1253), - [anon_sym_BANG_TILDE] = ACTIONS(1253), - [anon_sym_bit_DASHand] = ACTIONS(1253), - [anon_sym_bit_DASHxor] = ACTIONS(1253), - [anon_sym_bit_DASHor] = ACTIONS(1253), - [anon_sym_and] = ACTIONS(1253), - [anon_sym_xor] = ACTIONS(1253), - [anon_sym_or] = ACTIONS(1253), - [aux_sym__val_number_decimal_token1] = ACTIONS(1253), - [aux_sym__val_number_decimal_token2] = ACTIONS(1253), - [anon_sym_DOT2] = ACTIONS(1253), - [aux_sym__val_number_decimal_token3] = ACTIONS(1253), - [aux_sym__val_number_token1] = ACTIONS(1253), - [aux_sym__val_number_token2] = ACTIONS(1253), - [aux_sym__val_number_token3] = ACTIONS(1253), - [aux_sym__val_number_token4] = ACTIONS(1253), - [aux_sym__val_number_token5] = ACTIONS(1253), - [aux_sym__val_number_token6] = ACTIONS(1253), - [anon_sym_DQUOTE] = ACTIONS(1253), - [sym__str_single_quotes] = ACTIONS(1253), - [sym__str_back_ticks] = ACTIONS(1253), - [sym__entry_separator] = ACTIONS(1255), - [aux_sym__record_key_token2] = ACTIONS(1253), - [aux_sym_unquoted_token6] = ACTIONS(1257), + [1031] = { + [sym__flag] = STATE(2100), + [sym_short_flag] = STATE(2106), + [sym_long_flag] = STATE(2106), + [sym_long_flag_equals_value] = STATE(2237), + [sym_comment] = STATE(1031), + [aux_sym_overlay_use_repeat1] = STATE(1004), + [ts_builtin_sym_end] = ACTIONS(3459), + [anon_sym_export] = ACTIONS(3457), + [anon_sym_alias] = ACTIONS(3457), + [anon_sym_let] = ACTIONS(3457), + [anon_sym_let_DASHenv] = ACTIONS(3457), + [anon_sym_mut] = ACTIONS(3457), + [anon_sym_const] = ACTIONS(3457), + [anon_sym_SEMI] = ACTIONS(3457), + [sym_cmd_identifier] = ACTIONS(3457), + [anon_sym_LF] = ACTIONS(3459), + [anon_sym_def] = ACTIONS(3457), + [anon_sym_export_DASHenv] = ACTIONS(3457), + [anon_sym_extern] = ACTIONS(3457), + [anon_sym_module] = ACTIONS(3457), + [anon_sym_use] = ACTIONS(3457), + [anon_sym_LBRACK] = ACTIONS(3457), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3457), + [anon_sym_error] = ACTIONS(3457), + [anon_sym_DASH_DASH] = ACTIONS(3496), + [anon_sym_DASH] = ACTIONS(2856), + [anon_sym_break] = ACTIONS(3457), + [anon_sym_continue] = ACTIONS(3457), + [anon_sym_for] = ACTIONS(3457), + [anon_sym_loop] = ACTIONS(3457), + [anon_sym_while] = ACTIONS(3457), + [anon_sym_do] = ACTIONS(3457), + [anon_sym_if] = ACTIONS(3457), + [anon_sym_match] = ACTIONS(3457), + [anon_sym_LBRACE] = ACTIONS(3457), + [anon_sym_DOT_DOT] = ACTIONS(3457), + [anon_sym_try] = ACTIONS(3457), + [anon_sym_return] = ACTIONS(3457), + [anon_sym_source] = ACTIONS(3457), + [anon_sym_source_DASHenv] = ACTIONS(3457), + [anon_sym_register] = ACTIONS(3457), + [anon_sym_hide] = ACTIONS(3457), + [anon_sym_hide_DASHenv] = ACTIONS(3457), + [anon_sym_overlay] = ACTIONS(3457), + [anon_sym_as] = ACTIONS(3547), + [anon_sym_where] = ACTIONS(3457), + [anon_sym_not] = ACTIONS(3457), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), + [anon_sym_DOT_DOT_LT] = ACTIONS(3457), + [anon_sym_null] = ACTIONS(3457), + [anon_sym_true] = ACTIONS(3457), + [anon_sym_false] = ACTIONS(3457), + [aux_sym__val_number_decimal_token1] = ACTIONS(3457), + [aux_sym__val_number_decimal_token2] = ACTIONS(3457), + [anon_sym_DOT2] = ACTIONS(3457), + [aux_sym__val_number_decimal_token3] = ACTIONS(3457), + [aux_sym__val_number_token1] = ACTIONS(3457), + [aux_sym__val_number_token2] = ACTIONS(3457), + [aux_sym__val_number_token3] = ACTIONS(3457), + [aux_sym__val_number_token4] = ACTIONS(3457), + [aux_sym__val_number_token5] = ACTIONS(3457), + [aux_sym__val_number_token6] = ACTIONS(3457), + [anon_sym_0b] = ACTIONS(3457), + [anon_sym_0o] = ACTIONS(3457), + [anon_sym_0x] = ACTIONS(3457), + [sym_val_date] = ACTIONS(3457), + [anon_sym_DQUOTE] = ACTIONS(3457), + [sym__str_single_quotes] = ACTIONS(3457), + [sym__str_back_ticks] = ACTIONS(3457), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3457), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3457), + [anon_sym_CARET] = ACTIONS(3457), [anon_sym_POUND] = ACTIONS(113), }, - [855] = { - [sym_comment] = STATE(855), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_alias] = ACTIONS(1070), - [anon_sym_let] = ACTIONS(1070), - [anon_sym_let_DASHenv] = ACTIONS(1070), - [anon_sym_mut] = ACTIONS(1070), - [anon_sym_const] = ACTIONS(1070), - [sym_cmd_identifier] = ACTIONS(1070), - [anon_sym_def] = ACTIONS(1070), - [anon_sym_export_DASHenv] = ACTIONS(1070), - [anon_sym_extern] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_use] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_DOLLAR] = ACTIONS(1072), - [anon_sym_error] = ACTIONS(1070), - [anon_sym_list] = ACTIONS(1070), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_in] = ACTIONS(1070), - [anon_sym_loop] = ACTIONS(1070), - [anon_sym_make] = ACTIONS(1070), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_do] = ACTIONS(1070), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_else] = ACTIONS(1070), - [anon_sym_match] = ACTIONS(1070), - [anon_sym_RBRACE] = ACTIONS(1072), - [anon_sym_try] = ACTIONS(1070), - [anon_sym_catch] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_source] = ACTIONS(1070), - [anon_sym_source_DASHenv] = ACTIONS(1070), - [anon_sym_register] = ACTIONS(1070), - [anon_sym_hide] = ACTIONS(1070), - [anon_sym_hide_DASHenv] = ACTIONS(1070), - [anon_sym_overlay] = ACTIONS(1070), - [anon_sym_new] = ACTIONS(1070), - [anon_sym_as] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1072), - [anon_sym_PLUS_PLUS] = ACTIONS(1072), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_mod] = ACTIONS(1070), - [anon_sym_SLASH_SLASH] = ACTIONS(1072), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_bit_DASHshl] = ACTIONS(1070), - [anon_sym_bit_DASHshr] = ACTIONS(1070), - [anon_sym_EQ_EQ] = ACTIONS(1072), - [anon_sym_BANG_EQ] = ACTIONS(1072), - [anon_sym_LT2] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1072), - [anon_sym_GT_EQ] = ACTIONS(1072), - [anon_sym_not_DASHin] = ACTIONS(1070), - [anon_sym_starts_DASHwith] = ACTIONS(1070), - [anon_sym_ends_DASHwith] = ACTIONS(1070), - [anon_sym_EQ_TILDE] = ACTIONS(1072), - [anon_sym_BANG_TILDE] = ACTIONS(1072), - [anon_sym_bit_DASHand] = ACTIONS(1070), - [anon_sym_bit_DASHxor] = ACTIONS(1070), - [anon_sym_bit_DASHor] = ACTIONS(1070), - [anon_sym_and] = ACTIONS(1070), - [anon_sym_xor] = ACTIONS(1070), - [anon_sym_or] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1072), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1072), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1072), - [aux_sym__val_number_token1] = ACTIONS(1072), - [aux_sym__val_number_token2] = ACTIONS(1072), - [aux_sym__val_number_token3] = ACTIONS(1072), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1072), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [sym__str_single_quotes] = ACTIONS(1072), - [sym__str_back_ticks] = ACTIONS(1072), - [aux_sym__record_key_token2] = ACTIONS(1070), - [anon_sym_POUND] = ACTIONS(3), + [1032] = { + [sym__flag] = STATE(2100), + [sym_short_flag] = STATE(2106), + [sym_long_flag] = STATE(2106), + [sym_long_flag_equals_value] = STATE(2237), + [sym_comment] = STATE(1032), + [aux_sym_overlay_use_repeat1] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(3441), + [anon_sym_export] = ACTIONS(3439), + [anon_sym_alias] = ACTIONS(3439), + [anon_sym_let] = ACTIONS(3439), + [anon_sym_let_DASHenv] = ACTIONS(3439), + [anon_sym_mut] = ACTIONS(3439), + [anon_sym_const] = ACTIONS(3439), + [anon_sym_SEMI] = ACTIONS(3439), + [sym_cmd_identifier] = ACTIONS(3439), + [anon_sym_LF] = ACTIONS(3441), + [anon_sym_def] = ACTIONS(3439), + [anon_sym_export_DASHenv] = ACTIONS(3439), + [anon_sym_extern] = ACTIONS(3439), + [anon_sym_module] = ACTIONS(3439), + [anon_sym_use] = ACTIONS(3439), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_LPAREN] = ACTIONS(3439), + [anon_sym_DOLLAR] = ACTIONS(3439), + [anon_sym_error] = ACTIONS(3439), + [anon_sym_DASH_DASH] = ACTIONS(3496), + [anon_sym_DASH] = ACTIONS(2856), + [anon_sym_break] = ACTIONS(3439), + [anon_sym_continue] = ACTIONS(3439), + [anon_sym_for] = ACTIONS(3439), + [anon_sym_loop] = ACTIONS(3439), + [anon_sym_while] = ACTIONS(3439), + [anon_sym_do] = ACTIONS(3439), + [anon_sym_if] = ACTIONS(3439), + [anon_sym_match] = ACTIONS(3439), + [anon_sym_LBRACE] = ACTIONS(3439), + [anon_sym_DOT_DOT] = ACTIONS(3439), + [anon_sym_try] = ACTIONS(3439), + [anon_sym_return] = ACTIONS(3439), + [anon_sym_source] = ACTIONS(3439), + [anon_sym_source_DASHenv] = ACTIONS(3439), + [anon_sym_register] = ACTIONS(3439), + [anon_sym_hide] = ACTIONS(3439), + [anon_sym_hide_DASHenv] = ACTIONS(3439), + [anon_sym_overlay] = ACTIONS(3439), + [anon_sym_as] = ACTIONS(3549), + [anon_sym_where] = ACTIONS(3439), + [anon_sym_not] = ACTIONS(3439), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3439), + [anon_sym_DOT_DOT_LT] = ACTIONS(3439), + [anon_sym_null] = ACTIONS(3439), + [anon_sym_true] = ACTIONS(3439), + [anon_sym_false] = ACTIONS(3439), + [aux_sym__val_number_decimal_token1] = ACTIONS(3439), + [aux_sym__val_number_decimal_token2] = ACTIONS(3439), + [anon_sym_DOT2] = ACTIONS(3439), + [aux_sym__val_number_decimal_token3] = ACTIONS(3439), + [aux_sym__val_number_token1] = ACTIONS(3439), + [aux_sym__val_number_token2] = ACTIONS(3439), + [aux_sym__val_number_token3] = ACTIONS(3439), + [aux_sym__val_number_token4] = ACTIONS(3439), + [aux_sym__val_number_token5] = ACTIONS(3439), + [aux_sym__val_number_token6] = ACTIONS(3439), + [anon_sym_0b] = ACTIONS(3439), + [anon_sym_0o] = ACTIONS(3439), + [anon_sym_0x] = ACTIONS(3439), + [sym_val_date] = ACTIONS(3439), + [anon_sym_DQUOTE] = ACTIONS(3439), + [sym__str_single_quotes] = ACTIONS(3439), + [sym__str_back_ticks] = ACTIONS(3439), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3439), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3439), + [anon_sym_CARET] = ACTIONS(3439), + [anon_sym_POUND] = ACTIONS(113), }, - [856] = { - [sym_comment] = STATE(856), - [anon_sym_export] = ACTIONS(959), - [anon_sym_alias] = ACTIONS(959), - [anon_sym_let] = ACTIONS(959), - [anon_sym_let_DASHenv] = ACTIONS(959), - [anon_sym_mut] = ACTIONS(959), - [anon_sym_const] = ACTIONS(959), - [sym_cmd_identifier] = ACTIONS(959), - [anon_sym_def] = ACTIONS(959), - [anon_sym_export_DASHenv] = ACTIONS(959), - [anon_sym_extern] = ACTIONS(959), - [anon_sym_module] = ACTIONS(959), - [anon_sym_use] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_error] = ACTIONS(959), - [anon_sym_list] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_break] = ACTIONS(959), - [anon_sym_continue] = ACTIONS(959), - [anon_sym_for] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_loop] = ACTIONS(959), - [anon_sym_make] = ACTIONS(959), - [anon_sym_while] = ACTIONS(959), - [anon_sym_do] = ACTIONS(959), - [anon_sym_if] = ACTIONS(959), - [anon_sym_else] = ACTIONS(959), - [anon_sym_match] = ACTIONS(959), - [anon_sym_RBRACE] = ACTIONS(959), - [anon_sym_try] = ACTIONS(959), - [anon_sym_catch] = ACTIONS(959), - [anon_sym_return] = ACTIONS(959), - [anon_sym_source] = ACTIONS(959), - [anon_sym_source_DASHenv] = ACTIONS(959), - [anon_sym_register] = ACTIONS(959), - [anon_sym_hide] = ACTIONS(959), - [anon_sym_hide_DASHenv] = ACTIONS(959), - [anon_sym_overlay] = ACTIONS(959), - [anon_sym_new] = ACTIONS(959), - [anon_sym_as] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(959), - [anon_sym_PLUS_PLUS] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(959), - [anon_sym_SLASH_SLASH] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(959), - [anon_sym_bit_DASHshr] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(959), - [anon_sym_BANG_EQ] = ACTIONS(959), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(959), - [anon_sym_GT_EQ] = ACTIONS(959), - [anon_sym_not_DASHin] = ACTIONS(959), - [anon_sym_starts_DASHwith] = ACTIONS(959), - [anon_sym_ends_DASHwith] = ACTIONS(959), - [anon_sym_EQ_TILDE] = ACTIONS(959), - [anon_sym_BANG_TILDE] = ACTIONS(959), - [anon_sym_bit_DASHand] = ACTIONS(959), - [anon_sym_bit_DASHxor] = ACTIONS(959), - [anon_sym_bit_DASHor] = ACTIONS(959), - [anon_sym_and] = ACTIONS(959), - [anon_sym_xor] = ACTIONS(959), - [anon_sym_or] = ACTIONS(959), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(959), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(959), - [aux_sym__val_number_token1] = ACTIONS(959), - [aux_sym__val_number_token2] = ACTIONS(959), - [aux_sym__val_number_token3] = ACTIONS(959), - [aux_sym__val_number_token4] = ACTIONS(959), - [aux_sym__val_number_token5] = ACTIONS(959), - [aux_sym__val_number_token6] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [sym__str_single_quotes] = ACTIONS(959), - [sym__str_back_ticks] = ACTIONS(959), - [sym__entry_separator] = ACTIONS(961), - [aux_sym__record_key_token2] = ACTIONS(959), - [aux_sym_unquoted_token5] = ACTIONS(1570), + [1033] = { + [sym_comment] = STATE(1033), + [anon_sym_SEMI] = ACTIONS(911), + [anon_sym_LF] = ACTIONS(913), + [anon_sym_LBRACK] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_RPAREN] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(911), + [anon_sym_DOLLAR] = ACTIONS(911), + [anon_sym_GT] = ACTIONS(911), + [anon_sym_DASH_DASH] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_in] = ACTIONS(911), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_RBRACE] = ACTIONS(911), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(911), + [anon_sym_STAR_STAR] = ACTIONS(911), + [anon_sym_PLUS_PLUS] = ACTIONS(911), + [anon_sym_SLASH] = ACTIONS(911), + [anon_sym_mod] = ACTIONS(911), + [anon_sym_SLASH_SLASH] = ACTIONS(911), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_bit_DASHshl] = ACTIONS(911), + [anon_sym_bit_DASHshr] = ACTIONS(911), + [anon_sym_EQ_EQ] = ACTIONS(911), + [anon_sym_BANG_EQ] = ACTIONS(911), + [anon_sym_LT2] = ACTIONS(911), + [anon_sym_LT_EQ] = ACTIONS(911), + [anon_sym_GT_EQ] = ACTIONS(911), + [anon_sym_not_DASHin] = ACTIONS(911), + [anon_sym_starts_DASHwith] = ACTIONS(911), + [anon_sym_ends_DASHwith] = ACTIONS(911), + [anon_sym_EQ_TILDE] = ACTIONS(911), + [anon_sym_BANG_TILDE] = ACTIONS(911), + [anon_sym_bit_DASHand] = ACTIONS(911), + [anon_sym_bit_DASHxor] = ACTIONS(911), + [anon_sym_bit_DASHor] = ACTIONS(911), + [anon_sym_and] = ACTIONS(911), + [anon_sym_xor] = ACTIONS(911), + [anon_sym_or] = ACTIONS(911), + [anon_sym_not] = ACTIONS(911), + [anon_sym_DOT_DOT2] = ACTIONS(911), + [anon_sym_DOT] = ACTIONS(3551), + [anon_sym_DOT_DOT_EQ] = ACTIONS(911), + [anon_sym_DOT_DOT_LT] = ACTIONS(911), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(913), + [anon_sym_DOT_DOT_LT2] = ACTIONS(913), + [aux_sym__immediate_decimal_token2] = ACTIONS(3554), + [anon_sym_null] = ACTIONS(911), + [anon_sym_true] = ACTIONS(911), + [anon_sym_false] = ACTIONS(911), + [aux_sym__val_number_decimal_token1] = ACTIONS(911), + [aux_sym__val_number_decimal_token2] = ACTIONS(911), + [anon_sym_DOT2] = ACTIONS(911), + [aux_sym__val_number_decimal_token3] = ACTIONS(911), + [aux_sym__val_number_token1] = ACTIONS(911), + [aux_sym__val_number_token2] = ACTIONS(911), + [aux_sym__val_number_token3] = ACTIONS(911), + [aux_sym__val_number_token4] = ACTIONS(911), + [aux_sym__val_number_token5] = ACTIONS(911), + [aux_sym__val_number_token6] = ACTIONS(911), + [anon_sym_0b] = ACTIONS(911), + [sym_filesize_unit] = ACTIONS(911), + [sym_duration_unit] = ACTIONS(913), + [anon_sym_0o] = ACTIONS(911), + [anon_sym_0x] = ACTIONS(911), + [sym_val_date] = ACTIONS(911), + [anon_sym_DQUOTE] = ACTIONS(911), + [sym__str_single_quotes] = ACTIONS(911), + [sym__str_back_ticks] = ACTIONS(911), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(911), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(911), + [aux_sym_unquoted_token5] = ACTIONS(911), [anon_sym_POUND] = ACTIONS(113), }, - [857] = { - [sym_comment] = STATE(857), - [anon_sym_export] = ACTIONS(1273), - [anon_sym_alias] = ACTIONS(1273), - [anon_sym_let] = ACTIONS(1273), - [anon_sym_let_DASHenv] = ACTIONS(1273), - [anon_sym_mut] = ACTIONS(1273), - [anon_sym_const] = ACTIONS(1273), - [sym_cmd_identifier] = ACTIONS(1273), - [anon_sym_def] = ACTIONS(1273), - [anon_sym_export_DASHenv] = ACTIONS(1273), - [anon_sym_extern] = ACTIONS(1273), - [anon_sym_module] = ACTIONS(1273), - [anon_sym_use] = ACTIONS(1273), - [anon_sym_LPAREN] = ACTIONS(1273), - [anon_sym_DOLLAR] = ACTIONS(1273), - [anon_sym_error] = ACTIONS(1273), - [anon_sym_list] = ACTIONS(1273), - [anon_sym_GT] = ACTIONS(1273), - [anon_sym_DASH] = ACTIONS(1273), - [anon_sym_break] = ACTIONS(1273), - [anon_sym_continue] = ACTIONS(1273), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_in] = ACTIONS(1273), - [anon_sym_loop] = ACTIONS(1273), - [anon_sym_make] = ACTIONS(1273), - [anon_sym_while] = ACTIONS(1273), - [anon_sym_do] = ACTIONS(1273), - [anon_sym_if] = ACTIONS(1273), - [anon_sym_else] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_RBRACE] = ACTIONS(1273), - [anon_sym_try] = ACTIONS(1273), - [anon_sym_catch] = ACTIONS(1273), - [anon_sym_return] = ACTIONS(1273), - [anon_sym_source] = ACTIONS(1273), - [anon_sym_source_DASHenv] = ACTIONS(1273), - [anon_sym_register] = ACTIONS(1273), - [anon_sym_hide] = ACTIONS(1273), - [anon_sym_hide_DASHenv] = ACTIONS(1273), - [anon_sym_overlay] = ACTIONS(1273), - [anon_sym_new] = ACTIONS(1273), - [anon_sym_as] = ACTIONS(1273), - [anon_sym_STAR] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1273), - [anon_sym_PLUS_PLUS] = ACTIONS(1273), - [anon_sym_SLASH] = ACTIONS(1273), - [anon_sym_mod] = ACTIONS(1273), - [anon_sym_SLASH_SLASH] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(1273), - [anon_sym_bit_DASHshl] = ACTIONS(1273), - [anon_sym_bit_DASHshr] = ACTIONS(1273), - [anon_sym_EQ_EQ] = ACTIONS(1273), - [anon_sym_BANG_EQ] = ACTIONS(1273), - [anon_sym_LT2] = ACTIONS(1273), - [anon_sym_LT_EQ] = ACTIONS(1273), - [anon_sym_GT_EQ] = ACTIONS(1273), - [anon_sym_not_DASHin] = ACTIONS(1273), - [anon_sym_starts_DASHwith] = ACTIONS(1273), - [anon_sym_ends_DASHwith] = ACTIONS(1273), - [anon_sym_EQ_TILDE] = ACTIONS(1273), - [anon_sym_BANG_TILDE] = ACTIONS(1273), - [anon_sym_bit_DASHand] = ACTIONS(1273), - [anon_sym_bit_DASHxor] = ACTIONS(1273), - [anon_sym_bit_DASHor] = ACTIONS(1273), - [anon_sym_and] = ACTIONS(1273), - [anon_sym_xor] = ACTIONS(1273), - [anon_sym_or] = ACTIONS(1273), - [aux_sym__val_number_decimal_token1] = ACTIONS(1273), - [aux_sym__val_number_decimal_token2] = ACTIONS(1273), - [anon_sym_DOT2] = ACTIONS(1273), - [aux_sym__val_number_decimal_token3] = ACTIONS(1273), - [aux_sym__val_number_token1] = ACTIONS(1273), - [aux_sym__val_number_token2] = ACTIONS(1273), - [aux_sym__val_number_token3] = ACTIONS(1273), - [aux_sym__val_number_token4] = ACTIONS(1273), - [aux_sym__val_number_token5] = ACTIONS(1273), - [aux_sym__val_number_token6] = ACTIONS(1273), - [anon_sym_DQUOTE] = ACTIONS(1273), - [sym__str_single_quotes] = ACTIONS(1273), - [sym__str_back_ticks] = ACTIONS(1273), - [sym__entry_separator] = ACTIONS(1275), - [aux_sym__record_key_token2] = ACTIONS(1273), - [aux_sym_unquoted_token6] = ACTIONS(1257), + [1034] = { + [sym_comment] = STATE(1034), + [ts_builtin_sym_end] = ACTIONS(2231), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_alias] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_let_DASHenv] = ACTIONS(2229), + [anon_sym_mut] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2229), + [sym_cmd_identifier] = ACTIONS(2229), + [anon_sym_LF] = ACTIONS(2231), + [anon_sym_def] = ACTIONS(2229), + [anon_sym_export_DASHenv] = ACTIONS(2229), + [anon_sym_extern] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2229), + [anon_sym_error] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_loop] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_source] = ACTIONS(2229), + [anon_sym_source_DASHenv] = ACTIONS(2229), + [anon_sym_register] = ACTIONS(2229), + [anon_sym_hide] = ACTIONS(2229), + [anon_sym_hide_DASHenv] = ACTIONS(2229), + [anon_sym_overlay] = ACTIONS(2229), + [anon_sym_as] = ACTIONS(2229), + [anon_sym_where] = ACTIONS(2229), + [anon_sym_not] = ACTIONS(2229), + [anon_sym_DOT_DOT2] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2229), + [anon_sym_DOT_DOT_LT] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2231), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2231), + [aux_sym__immediate_decimal_token1] = ACTIONS(3556), + [aux_sym__immediate_decimal_token2] = ACTIONS(3558), + [anon_sym_null] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [aux_sym__val_number_decimal_token1] = ACTIONS(2229), + [aux_sym__val_number_decimal_token2] = ACTIONS(2229), + [anon_sym_DOT2] = ACTIONS(2229), + [aux_sym__val_number_decimal_token3] = ACTIONS(2229), + [aux_sym__val_number_token1] = ACTIONS(2229), + [aux_sym__val_number_token2] = ACTIONS(2229), + [aux_sym__val_number_token3] = ACTIONS(2229), + [aux_sym__val_number_token4] = ACTIONS(2229), + [aux_sym__val_number_token5] = ACTIONS(2229), + [aux_sym__val_number_token6] = ACTIONS(2229), + [anon_sym_0b] = ACTIONS(2229), + [anon_sym_0o] = ACTIONS(2229), + [anon_sym_0x] = ACTIONS(2229), + [sym_val_date] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2229), + [anon_sym_CARET] = ACTIONS(2229), [anon_sym_POUND] = ACTIONS(113), }, - [858] = { - [sym_comment] = STATE(858), - [anon_sym_export] = ACTIONS(1243), - [anon_sym_alias] = ACTIONS(1243), - [anon_sym_let] = ACTIONS(1243), - [anon_sym_let_DASHenv] = ACTIONS(1243), - [anon_sym_mut] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [sym_cmd_identifier] = ACTIONS(1243), - [anon_sym_def] = ACTIONS(1243), - [anon_sym_export_DASHenv] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1243), - [anon_sym_module] = ACTIONS(1243), - [anon_sym_use] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_error] = ACTIONS(1243), - [anon_sym_list] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_in] = ACTIONS(1243), - [anon_sym_loop] = ACTIONS(1243), - [anon_sym_make] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_else] = ACTIONS(1243), - [anon_sym_match] = ACTIONS(1243), - [anon_sym_RBRACE] = ACTIONS(1243), - [anon_sym_try] = ACTIONS(1243), - [anon_sym_catch] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_source] = ACTIONS(1243), - [anon_sym_source_DASHenv] = ACTIONS(1243), - [anon_sym_register] = ACTIONS(1243), - [anon_sym_hide] = ACTIONS(1243), - [anon_sym_hide_DASHenv] = ACTIONS(1243), - [anon_sym_overlay] = ACTIONS(1243), - [anon_sym_new] = ACTIONS(1243), - [anon_sym_as] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1243), - [anon_sym_STAR_STAR] = ACTIONS(1243), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_SLASH] = ACTIONS(1243), - [anon_sym_mod] = ACTIONS(1243), - [anon_sym_SLASH_SLASH] = ACTIONS(1243), - [anon_sym_PLUS] = ACTIONS(1243), - [anon_sym_bit_DASHshl] = ACTIONS(1243), - [anon_sym_bit_DASHshr] = ACTIONS(1243), - [anon_sym_EQ_EQ] = ACTIONS(1243), - [anon_sym_BANG_EQ] = ACTIONS(1243), - [anon_sym_LT2] = ACTIONS(1243), - [anon_sym_LT_EQ] = ACTIONS(1243), - [anon_sym_GT_EQ] = ACTIONS(1243), - [anon_sym_not_DASHin] = ACTIONS(1243), - [anon_sym_starts_DASHwith] = ACTIONS(1243), - [anon_sym_ends_DASHwith] = ACTIONS(1243), - [anon_sym_EQ_TILDE] = ACTIONS(1243), - [anon_sym_BANG_TILDE] = ACTIONS(1243), - [anon_sym_bit_DASHand] = ACTIONS(1243), - [anon_sym_bit_DASHxor] = ACTIONS(1243), - [anon_sym_bit_DASHor] = ACTIONS(1243), - [anon_sym_and] = ACTIONS(1243), - [anon_sym_xor] = ACTIONS(1243), - [anon_sym_or] = ACTIONS(1243), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_decimal_token2] = ACTIONS(1243), - [anon_sym_DOT2] = ACTIONS(1243), - [aux_sym__val_number_decimal_token3] = ACTIONS(1243), - [aux_sym__val_number_token1] = ACTIONS(1243), - [aux_sym__val_number_token2] = ACTIONS(1243), - [aux_sym__val_number_token3] = ACTIONS(1243), - [aux_sym__val_number_token4] = ACTIONS(1243), - [aux_sym__val_number_token5] = ACTIONS(1243), - [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym__str_single_quotes] = ACTIONS(1243), - [sym__str_back_ticks] = ACTIONS(1243), - [aux_sym__list_item_starts_with_sign_token1] = ACTIONS(1722), - [sym__entry_separator] = ACTIONS(1243), - [aux_sym__record_key_token2] = ACTIONS(1243), + [1035] = { + [sym_comment] = STATE(1035), + [ts_builtin_sym_end] = ACTIONS(895), + [anon_sym_SEMI] = ACTIONS(893), + [anon_sym_LF] = ACTIONS(895), + [anon_sym_LBRACK] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(893), + [anon_sym_PIPE] = ACTIONS(893), + [anon_sym_DOLLAR] = ACTIONS(893), + [anon_sym_GT] = ACTIONS(893), + [anon_sym_DASH_DASH] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_in] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_DOT_DOT] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(893), + [anon_sym_STAR_STAR] = ACTIONS(893), + [anon_sym_PLUS_PLUS] = ACTIONS(893), + [anon_sym_SLASH] = ACTIONS(893), + [anon_sym_mod] = ACTIONS(893), + [anon_sym_SLASH_SLASH] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_bit_DASHshl] = ACTIONS(893), + [anon_sym_bit_DASHshr] = ACTIONS(893), + [anon_sym_EQ_EQ] = ACTIONS(893), + [anon_sym_BANG_EQ] = ACTIONS(893), + [anon_sym_LT2] = ACTIONS(893), + [anon_sym_LT_EQ] = ACTIONS(893), + [anon_sym_GT_EQ] = ACTIONS(893), + [anon_sym_not_DASHin] = ACTIONS(893), + [anon_sym_starts_DASHwith] = ACTIONS(893), + [anon_sym_ends_DASHwith] = ACTIONS(893), + [anon_sym_EQ_TILDE] = ACTIONS(893), + [anon_sym_BANG_TILDE] = ACTIONS(893), + [anon_sym_bit_DASHand] = ACTIONS(893), + [anon_sym_bit_DASHxor] = ACTIONS(893), + [anon_sym_bit_DASHor] = ACTIONS(893), + [anon_sym_and] = ACTIONS(893), + [anon_sym_xor] = ACTIONS(893), + [anon_sym_or] = ACTIONS(893), + [anon_sym_not] = ACTIONS(893), + [anon_sym_DOT_DOT2] = ACTIONS(893), + [anon_sym_DOT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ] = ACTIONS(893), + [anon_sym_DOT_DOT_LT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), + [anon_sym_DOT_DOT_LT2] = ACTIONS(895), + [aux_sym__immediate_decimal_token1] = ACTIONS(3560), + [aux_sym__immediate_decimal_token2] = ACTIONS(3562), + [anon_sym_null] = ACTIONS(893), + [anon_sym_true] = ACTIONS(893), + [anon_sym_false] = ACTIONS(893), + [aux_sym__val_number_decimal_token1] = ACTIONS(893), + [aux_sym__val_number_decimal_token2] = ACTIONS(893), + [anon_sym_DOT2] = ACTIONS(893), + [aux_sym__val_number_decimal_token3] = ACTIONS(893), + [aux_sym__val_number_token1] = ACTIONS(893), + [aux_sym__val_number_token2] = ACTIONS(893), + [aux_sym__val_number_token3] = ACTIONS(893), + [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(893), + [sym_filesize_unit] = ACTIONS(893), + [sym_duration_unit] = ACTIONS(895), + [anon_sym_0o] = ACTIONS(893), + [anon_sym_0x] = ACTIONS(893), + [sym_val_date] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(893), + [sym__str_single_quotes] = ACTIONS(893), + [sym__str_back_ticks] = ACTIONS(893), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(893), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(893), + [aux_sym_unquoted_token5] = ACTIONS(893), [anon_sym_POUND] = ACTIONS(113), }, - [859] = { - [sym_comment] = STATE(859), - [anon_sym_export] = ACTIONS(1280), - [anon_sym_alias] = ACTIONS(1280), - [anon_sym_let] = ACTIONS(1280), - [anon_sym_let_DASHenv] = ACTIONS(1280), - [anon_sym_mut] = ACTIONS(1280), - [anon_sym_const] = ACTIONS(1280), - [sym_cmd_identifier] = ACTIONS(1280), - [anon_sym_def] = ACTIONS(1280), - [anon_sym_export_DASHenv] = ACTIONS(1280), - [anon_sym_extern] = ACTIONS(1280), - [anon_sym_module] = ACTIONS(1280), - [anon_sym_use] = ACTIONS(1280), - [anon_sym_LPAREN] = ACTIONS(1280), - [anon_sym_DOLLAR] = ACTIONS(1280), - [anon_sym_error] = ACTIONS(1280), - [anon_sym_list] = ACTIONS(1280), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_break] = ACTIONS(1280), - [anon_sym_continue] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_in] = ACTIONS(1280), - [anon_sym_loop] = ACTIONS(1280), - [anon_sym_make] = ACTIONS(1280), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_else] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1280), - [anon_sym_RBRACE] = ACTIONS(1280), - [anon_sym_try] = ACTIONS(1280), - [anon_sym_catch] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1280), - [anon_sym_source] = ACTIONS(1280), - [anon_sym_source_DASHenv] = ACTIONS(1280), - [anon_sym_register] = ACTIONS(1280), - [anon_sym_hide] = ACTIONS(1280), - [anon_sym_hide_DASHenv] = ACTIONS(1280), - [anon_sym_overlay] = ACTIONS(1280), - [anon_sym_new] = ACTIONS(1280), - [anon_sym_as] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1280), - [anon_sym_STAR_STAR] = ACTIONS(1280), - [anon_sym_PLUS_PLUS] = ACTIONS(1280), - [anon_sym_SLASH] = ACTIONS(1280), - [anon_sym_mod] = ACTIONS(1280), - [anon_sym_SLASH_SLASH] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_bit_DASHshl] = ACTIONS(1280), - [anon_sym_bit_DASHshr] = ACTIONS(1280), - [anon_sym_EQ_EQ] = ACTIONS(1280), - [anon_sym_BANG_EQ] = ACTIONS(1280), - [anon_sym_LT2] = ACTIONS(1280), - [anon_sym_LT_EQ] = ACTIONS(1280), - [anon_sym_GT_EQ] = ACTIONS(1280), - [anon_sym_not_DASHin] = ACTIONS(1280), - [anon_sym_starts_DASHwith] = ACTIONS(1280), - [anon_sym_ends_DASHwith] = ACTIONS(1280), - [anon_sym_EQ_TILDE] = ACTIONS(1280), - [anon_sym_BANG_TILDE] = ACTIONS(1280), - [anon_sym_bit_DASHand] = ACTIONS(1280), - [anon_sym_bit_DASHxor] = ACTIONS(1280), - [anon_sym_bit_DASHor] = ACTIONS(1280), - [anon_sym_and] = ACTIONS(1280), - [anon_sym_xor] = ACTIONS(1280), - [anon_sym_or] = ACTIONS(1280), - [aux_sym__val_number_decimal_token1] = ACTIONS(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1280), - [anon_sym_DOT2] = ACTIONS(1280), - [aux_sym__val_number_decimal_token3] = ACTIONS(1280), - [aux_sym__val_number_token1] = ACTIONS(1280), - [aux_sym__val_number_token2] = ACTIONS(1280), - [aux_sym__val_number_token3] = ACTIONS(1280), - [aux_sym__val_number_token4] = ACTIONS(1280), - [aux_sym__val_number_token5] = ACTIONS(1280), - [aux_sym__val_number_token6] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1280), - [sym__str_single_quotes] = ACTIONS(1280), - [sym__str_back_ticks] = ACTIONS(1280), - [sym__entry_separator] = ACTIONS(1282), - [aux_sym__record_key_token2] = ACTIONS(1280), - [aux_sym_unquoted_token6] = ACTIONS(1280), + [1036] = { + [sym__immediate_decimal] = STATE(10080), + [sym_comment] = STATE(1036), + [anon_sym_export] = ACTIONS(920), + [anon_sym_alias] = ACTIONS(920), + [anon_sym_let] = ACTIONS(920), + [anon_sym_let_DASHenv] = ACTIONS(920), + [anon_sym_mut] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(920), + [sym_cmd_identifier] = ACTIONS(920), + [anon_sym_LF] = ACTIONS(922), + [anon_sym_def] = ACTIONS(920), + [anon_sym_export_DASHenv] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym_module] = ACTIONS(920), + [anon_sym_use] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_RPAREN] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_error] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_loop] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_match] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_RBRACE] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_try] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_source] = ACTIONS(920), + [anon_sym_source_DASHenv] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_hide] = ACTIONS(920), + [anon_sym_hide_DASHenv] = ACTIONS(920), + [anon_sym_overlay] = ACTIONS(920), + [anon_sym_where] = ACTIONS(920), + [anon_sym_not] = ACTIONS(920), + [anon_sym_DOT] = ACTIONS(967), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [aux_sym__immediate_decimal_token1] = ACTIONS(969), + [aux_sym__immediate_decimal_token3] = ACTIONS(969), + [aux_sym__immediate_decimal_token4] = ACTIONS(971), + [anon_sym_null] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), + [anon_sym_CARET] = ACTIONS(920), + [aux_sym_unquoted_token4] = ACTIONS(3308), [anon_sym_POUND] = ACTIONS(113), }, - [860] = { - [sym_comment] = STATE(860), - [anon_sym_export] = ACTIONS(1259), - [anon_sym_alias] = ACTIONS(1259), - [anon_sym_let] = ACTIONS(1259), - [anon_sym_let_DASHenv] = ACTIONS(1259), - [anon_sym_mut] = ACTIONS(1259), - [anon_sym_const] = ACTIONS(1259), - [sym_cmd_identifier] = ACTIONS(1259), - [anon_sym_def] = ACTIONS(1259), - [anon_sym_export_DASHenv] = ACTIONS(1259), - [anon_sym_extern] = ACTIONS(1259), - [anon_sym_module] = ACTIONS(1259), - [anon_sym_use] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_DOLLAR] = ACTIONS(1259), - [anon_sym_error] = ACTIONS(1259), - [anon_sym_list] = ACTIONS(1259), - [anon_sym_GT] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_break] = ACTIONS(1259), - [anon_sym_continue] = ACTIONS(1259), - [anon_sym_for] = ACTIONS(1259), - [anon_sym_in] = ACTIONS(1259), - [anon_sym_loop] = ACTIONS(1259), - [anon_sym_make] = ACTIONS(1259), - [anon_sym_while] = ACTIONS(1259), - [anon_sym_do] = ACTIONS(1259), - [anon_sym_if] = ACTIONS(1259), - [anon_sym_else] = ACTIONS(1259), - [anon_sym_match] = ACTIONS(1259), - [anon_sym_RBRACE] = ACTIONS(1259), - [anon_sym_try] = ACTIONS(1259), - [anon_sym_catch] = ACTIONS(1259), - [anon_sym_return] = ACTIONS(1259), - [anon_sym_source] = ACTIONS(1259), - [anon_sym_source_DASHenv] = ACTIONS(1259), - [anon_sym_register] = ACTIONS(1259), - [anon_sym_hide] = ACTIONS(1259), - [anon_sym_hide_DASHenv] = ACTIONS(1259), - [anon_sym_overlay] = ACTIONS(1259), - [anon_sym_new] = ACTIONS(1259), - [anon_sym_as] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1259), - [anon_sym_STAR_STAR] = ACTIONS(1259), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_SLASH] = ACTIONS(1259), - [anon_sym_mod] = ACTIONS(1259), - [anon_sym_SLASH_SLASH] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_bit_DASHshl] = ACTIONS(1259), - [anon_sym_bit_DASHshr] = ACTIONS(1259), - [anon_sym_EQ_EQ] = ACTIONS(1259), - [anon_sym_BANG_EQ] = ACTIONS(1259), - [anon_sym_LT2] = ACTIONS(1259), - [anon_sym_LT_EQ] = ACTIONS(1259), - [anon_sym_GT_EQ] = ACTIONS(1259), - [anon_sym_not_DASHin] = ACTIONS(1259), - [anon_sym_starts_DASHwith] = ACTIONS(1259), - [anon_sym_ends_DASHwith] = ACTIONS(1259), - [anon_sym_EQ_TILDE] = ACTIONS(1259), - [anon_sym_BANG_TILDE] = ACTIONS(1259), - [anon_sym_bit_DASHand] = ACTIONS(1259), - [anon_sym_bit_DASHxor] = ACTIONS(1259), - [anon_sym_bit_DASHor] = ACTIONS(1259), - [anon_sym_and] = ACTIONS(1259), - [anon_sym_xor] = ACTIONS(1259), - [anon_sym_or] = ACTIONS(1259), - [aux_sym__val_number_decimal_token1] = ACTIONS(1259), - [aux_sym__val_number_decimal_token2] = ACTIONS(1259), - [anon_sym_DOT2] = ACTIONS(1259), - [aux_sym__val_number_decimal_token3] = ACTIONS(1259), - [aux_sym__val_number_token1] = ACTIONS(1259), - [aux_sym__val_number_token2] = ACTIONS(1259), - [aux_sym__val_number_token3] = ACTIONS(1259), - [aux_sym__val_number_token4] = ACTIONS(1259), - [aux_sym__val_number_token5] = ACTIONS(1259), - [aux_sym__val_number_token6] = ACTIONS(1259), - [anon_sym_LBRACK2] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1259), - [sym__str_single_quotes] = ACTIONS(1259), - [sym__str_back_ticks] = ACTIONS(1259), - [sym__entry_separator] = ACTIONS(1261), - [aux_sym__record_key_token2] = ACTIONS(1259), + [1037] = { + [sym__immediate_decimal] = STATE(8796), + [sym_comment] = STATE(1037), + [ts_builtin_sym_end] = ACTIONS(922), + [anon_sym_export] = ACTIONS(920), + [anon_sym_alias] = ACTIONS(920), + [anon_sym_let] = ACTIONS(920), + [anon_sym_let_DASHenv] = ACTIONS(920), + [anon_sym_mut] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(920), + [sym_cmd_identifier] = ACTIONS(920), + [anon_sym_LF] = ACTIONS(922), + [anon_sym_def] = ACTIONS(920), + [anon_sym_export_DASHenv] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym_module] = ACTIONS(920), + [anon_sym_use] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_error] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_loop] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_match] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_try] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_source] = ACTIONS(920), + [anon_sym_source_DASHenv] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_hide] = ACTIONS(920), + [anon_sym_hide_DASHenv] = ACTIONS(920), + [anon_sym_overlay] = ACTIONS(920), + [anon_sym_where] = ACTIONS(920), + [anon_sym_not] = ACTIONS(920), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [aux_sym__immediate_decimal_token1] = ACTIONS(926), + [aux_sym__immediate_decimal_token3] = ACTIONS(926), + [aux_sym__immediate_decimal_token4] = ACTIONS(928), + [anon_sym_null] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), + [anon_sym_CARET] = ACTIONS(920), + [aux_sym_unquoted_token3] = ACTIONS(3433), + [aux_sym_unquoted_token5] = ACTIONS(3435), [anon_sym_POUND] = ACTIONS(113), }, - [861] = { - [sym_comment] = STATE(861), - [anon_sym_export] = ACTIONS(1059), - [anon_sym_alias] = ACTIONS(1059), - [anon_sym_let] = ACTIONS(1059), - [anon_sym_let_DASHenv] = ACTIONS(1059), - [anon_sym_mut] = ACTIONS(1059), - [anon_sym_const] = ACTIONS(1059), - [sym_cmd_identifier] = ACTIONS(1059), - [anon_sym_def] = ACTIONS(1059), - [anon_sym_export_DASHenv] = ACTIONS(1059), - [anon_sym_extern] = ACTIONS(1059), - [anon_sym_module] = ACTIONS(1059), - [anon_sym_use] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [anon_sym_DOLLAR] = ACTIONS(1061), - [anon_sym_error] = ACTIONS(1059), - [anon_sym_list] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_break] = ACTIONS(1059), - [anon_sym_continue] = ACTIONS(1059), - [anon_sym_for] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1059), - [anon_sym_loop] = ACTIONS(1059), - [anon_sym_make] = ACTIONS(1059), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_do] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1059), - [anon_sym_else] = ACTIONS(1059), - [anon_sym_match] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(1061), - [anon_sym_try] = ACTIONS(1059), - [anon_sym_catch] = ACTIONS(1059), - [anon_sym_return] = ACTIONS(1059), - [anon_sym_source] = ACTIONS(1059), - [anon_sym_source_DASHenv] = ACTIONS(1059), - [anon_sym_register] = ACTIONS(1059), - [anon_sym_hide] = ACTIONS(1059), - [anon_sym_hide_DASHenv] = ACTIONS(1059), - [anon_sym_overlay] = ACTIONS(1059), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_as] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_QMARK2] = ACTIONS(1061), - [anon_sym_STAR_STAR] = ACTIONS(1061), - [anon_sym_PLUS_PLUS] = ACTIONS(1061), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_mod] = ACTIONS(1059), - [anon_sym_SLASH_SLASH] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_bit_DASHshl] = ACTIONS(1059), - [anon_sym_bit_DASHshr] = ACTIONS(1059), - [anon_sym_EQ_EQ] = ACTIONS(1061), - [anon_sym_BANG_EQ] = ACTIONS(1061), - [anon_sym_LT2] = ACTIONS(1059), - [anon_sym_LT_EQ] = ACTIONS(1061), - [anon_sym_GT_EQ] = ACTIONS(1061), - [anon_sym_not_DASHin] = ACTIONS(1059), - [anon_sym_starts_DASHwith] = ACTIONS(1059), - [anon_sym_ends_DASHwith] = ACTIONS(1059), - [anon_sym_EQ_TILDE] = ACTIONS(1061), - [anon_sym_BANG_TILDE] = ACTIONS(1061), - [anon_sym_bit_DASHand] = ACTIONS(1059), - [anon_sym_bit_DASHxor] = ACTIONS(1059), - [anon_sym_bit_DASHor] = ACTIONS(1059), - [anon_sym_and] = ACTIONS(1059), - [anon_sym_xor] = ACTIONS(1059), - [anon_sym_or] = ACTIONS(1059), - [anon_sym_DOT] = ACTIONS(1061), - [aux_sym__val_number_decimal_token1] = ACTIONS(1059), - [aux_sym__val_number_decimal_token2] = ACTIONS(1061), - [anon_sym_DOT2] = ACTIONS(1059), - [aux_sym__val_number_decimal_token3] = ACTIONS(1061), - [aux_sym__val_number_token1] = ACTIONS(1061), - [aux_sym__val_number_token2] = ACTIONS(1061), - [aux_sym__val_number_token3] = ACTIONS(1061), - [aux_sym__val_number_token4] = ACTIONS(1059), - [aux_sym__val_number_token5] = ACTIONS(1061), - [aux_sym__val_number_token6] = ACTIONS(1059), - [anon_sym_DQUOTE] = ACTIONS(1061), - [sym__str_single_quotes] = ACTIONS(1061), - [sym__str_back_ticks] = ACTIONS(1061), - [aux_sym__record_key_token2] = ACTIONS(1059), + [1038] = { + [sym_comment] = STATE(1038), + [anon_sym_LBRACK] = ACTIONS(903), + [anon_sym_COMMA] = ACTIONS(903), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_DOLLAR] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_in] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(903), + [anon_sym_RBRACE] = ACTIONS(903), + [anon_sym__] = ACTIONS(901), + [anon_sym_DOT_DOT] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_STAR_STAR] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_mod] = ACTIONS(903), + [anon_sym_SLASH_SLASH] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_bit_DASHshl] = ACTIONS(903), + [anon_sym_bit_DASHshr] = ACTIONS(903), + [anon_sym_EQ_EQ] = ACTIONS(903), + [anon_sym_BANG_EQ] = ACTIONS(903), + [anon_sym_LT2] = ACTIONS(901), + [anon_sym_LT_EQ] = ACTIONS(903), + [anon_sym_GT_EQ] = ACTIONS(903), + [anon_sym_not_DASHin] = ACTIONS(903), + [anon_sym_starts_DASHwith] = ACTIONS(903), + [anon_sym_ends_DASHwith] = ACTIONS(903), + [anon_sym_EQ_TILDE] = ACTIONS(903), + [anon_sym_BANG_TILDE] = ACTIONS(903), + [anon_sym_bit_DASHand] = ACTIONS(903), + [anon_sym_bit_DASHxor] = ACTIONS(903), + [anon_sym_bit_DASHor] = ACTIONS(903), + [anon_sym_and] = ACTIONS(903), + [anon_sym_xor] = ACTIONS(903), + [anon_sym_or] = ACTIONS(903), + [anon_sym_DOT_DOT2] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ] = ACTIONS(901), + [anon_sym_DOT_DOT_LT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(903), + [anon_sym_DOT_DOT_LT2] = ACTIONS(903), + [anon_sym_null] = ACTIONS(903), + [anon_sym_true] = ACTIONS(903), + [anon_sym_false] = ACTIONS(903), + [aux_sym__val_number_decimal_token1] = ACTIONS(901), + [aux_sym__val_number_decimal_token2] = ACTIONS(903), + [anon_sym_DOT2] = ACTIONS(901), + [aux_sym__val_number_decimal_token3] = ACTIONS(903), + [aux_sym__val_number_token1] = ACTIONS(903), + [aux_sym__val_number_token2] = ACTIONS(903), + [aux_sym__val_number_token3] = ACTIONS(903), + [aux_sym__val_number_token4] = ACTIONS(903), + [aux_sym__val_number_token5] = ACTIONS(903), + [aux_sym__val_number_token6] = ACTIONS(903), + [anon_sym_0b] = ACTIONS(901), + [sym_filesize_unit] = ACTIONS(901), + [sym_duration_unit] = ACTIONS(903), + [anon_sym_0o] = ACTIONS(901), + [anon_sym_0x] = ACTIONS(901), + [sym_val_date] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(903), + [sym__str_single_quotes] = ACTIONS(903), + [sym__str_back_ticks] = ACTIONS(903), + [anon_sym_err_GT] = ACTIONS(903), + [anon_sym_out_GT] = ACTIONS(903), + [anon_sym_e_GT] = ACTIONS(903), + [anon_sym_o_GT] = ACTIONS(903), + [anon_sym_err_PLUSout_GT] = ACTIONS(903), + [anon_sym_out_PLUSerr_GT] = ACTIONS(903), + [anon_sym_o_PLUSe_GT] = ACTIONS(903), + [anon_sym_e_PLUSo_GT] = ACTIONS(903), + [aux_sym_unquoted_token1] = ACTIONS(901), [anon_sym_POUND] = ACTIONS(3), }, - [862] = { - [sym_comment] = STATE(862), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_alias] = ACTIONS(1109), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_let_DASHenv] = ACTIONS(1109), - [anon_sym_mut] = ACTIONS(1109), - [anon_sym_const] = ACTIONS(1109), - [sym_cmd_identifier] = ACTIONS(1109), - [anon_sym_def] = ACTIONS(1109), - [anon_sym_export_DASHenv] = ACTIONS(1109), - [anon_sym_extern] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_use] = ACTIONS(1109), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_DOLLAR] = ACTIONS(1109), - [anon_sym_error] = ACTIONS(1109), - [anon_sym_list] = ACTIONS(1109), - [anon_sym_GT] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_break] = ACTIONS(1109), - [anon_sym_continue] = ACTIONS(1109), - [anon_sym_for] = ACTIONS(1109), - [anon_sym_in] = ACTIONS(1109), - [anon_sym_loop] = ACTIONS(1109), - [anon_sym_make] = ACTIONS(1109), - [anon_sym_while] = ACTIONS(1109), - [anon_sym_do] = ACTIONS(1109), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_else] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_RBRACE] = ACTIONS(1109), - [anon_sym_try] = ACTIONS(1109), - [anon_sym_catch] = ACTIONS(1109), - [anon_sym_return] = ACTIONS(1109), - [anon_sym_source] = ACTIONS(1109), - [anon_sym_source_DASHenv] = ACTIONS(1109), - [anon_sym_register] = ACTIONS(1109), - [anon_sym_hide] = ACTIONS(1109), - [anon_sym_hide_DASHenv] = ACTIONS(1109), - [anon_sym_overlay] = ACTIONS(1109), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_as] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_STAR_STAR] = ACTIONS(1109), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_SLASH] = ACTIONS(1109), - [anon_sym_mod] = ACTIONS(1109), - [anon_sym_SLASH_SLASH] = ACTIONS(1109), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_bit_DASHshl] = ACTIONS(1109), - [anon_sym_bit_DASHshr] = ACTIONS(1109), - [anon_sym_EQ_EQ] = ACTIONS(1109), - [anon_sym_BANG_EQ] = ACTIONS(1109), - [anon_sym_LT2] = ACTIONS(1109), - [anon_sym_LT_EQ] = ACTIONS(1109), - [anon_sym_GT_EQ] = ACTIONS(1109), - [anon_sym_not_DASHin] = ACTIONS(1109), - [anon_sym_starts_DASHwith] = ACTIONS(1109), - [anon_sym_ends_DASHwith] = ACTIONS(1109), - [anon_sym_EQ_TILDE] = ACTIONS(1109), - [anon_sym_BANG_TILDE] = ACTIONS(1109), - [anon_sym_bit_DASHand] = ACTIONS(1109), - [anon_sym_bit_DASHxor] = ACTIONS(1109), - [anon_sym_bit_DASHor] = ACTIONS(1109), - [anon_sym_and] = ACTIONS(1109), - [anon_sym_xor] = ACTIONS(1109), - [anon_sym_or] = ACTIONS(1109), - [anon_sym_DOT] = ACTIONS(1111), - [aux_sym__val_number_decimal_token1] = ACTIONS(1109), - [aux_sym__val_number_decimal_token2] = ACTIONS(1109), - [anon_sym_DOT2] = ACTIONS(1109), - [aux_sym__val_number_decimal_token3] = ACTIONS(1109), - [aux_sym__val_number_token1] = ACTIONS(1109), - [aux_sym__val_number_token2] = ACTIONS(1109), - [aux_sym__val_number_token3] = ACTIONS(1109), - [aux_sym__val_number_token4] = ACTIONS(1109), - [aux_sym__val_number_token5] = ACTIONS(1109), - [aux_sym__val_number_token6] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(1109), - [sym__str_single_quotes] = ACTIONS(1109), - [sym__str_back_ticks] = ACTIONS(1109), - [sym__entry_separator] = ACTIONS(1111), - [aux_sym__record_key_token2] = ACTIONS(1109), + [1039] = { + [sym_comment] = STATE(1039), + [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), + [anon_sym_SEMI] = ACTIONS(2356), + [sym_cmd_identifier] = ACTIONS(2356), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2356), + [anon_sym_RPAREN] = ACTIONS(2356), + [anon_sym_DOLLAR] = ACTIONS(2356), + [anon_sym_error] = ACTIONS(2356), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_loop] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_match] = ACTIONS(2356), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_RBRACE] = ACTIONS(2356), + [anon_sym_DOT_DOT] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_source] = ACTIONS(2356), + [anon_sym_source_DASHenv] = ACTIONS(2356), + [anon_sym_register] = 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_where] = ACTIONS(2356), + [anon_sym_not] = ACTIONS(2356), + [anon_sym_LPAREN2] = ACTIONS(2358), + [anon_sym_DOT] = ACTIONS(2356), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2356), + [anon_sym_DOT_DOT_LT] = ACTIONS(2356), + [aux_sym__immediate_decimal_token2] = ACTIONS(3507), + [anon_sym_null] = ACTIONS(2356), + [anon_sym_true] = ACTIONS(2356), + [anon_sym_false] = ACTIONS(2356), + [aux_sym__val_number_decimal_token1] = ACTIONS(2356), + [aux_sym__val_number_decimal_token2] = ACTIONS(2356), + [anon_sym_DOT2] = ACTIONS(2356), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2356), + [anon_sym_0o] = ACTIONS(2356), + [anon_sym_0x] = ACTIONS(2356), + [sym_val_date] = 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_CARET] = ACTIONS(2356), + [aux_sym_unquoted_token2] = ACTIONS(2356), [anon_sym_POUND] = ACTIONS(113), }, - [863] = { - [sym_comment] = STATE(863), - [anon_sym_export] = ACTIONS(1063), - [anon_sym_alias] = ACTIONS(1063), - [anon_sym_let] = ACTIONS(1063), - [anon_sym_let_DASHenv] = ACTIONS(1063), - [anon_sym_mut] = ACTIONS(1063), - [anon_sym_const] = ACTIONS(1063), - [sym_cmd_identifier] = ACTIONS(1063), - [anon_sym_def] = ACTIONS(1063), - [anon_sym_export_DASHenv] = ACTIONS(1063), - [anon_sym_extern] = ACTIONS(1063), - [anon_sym_module] = ACTIONS(1063), - [anon_sym_use] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1065), - [anon_sym_DOLLAR] = ACTIONS(1065), - [anon_sym_error] = ACTIONS(1063), - [anon_sym_list] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_break] = ACTIONS(1063), - [anon_sym_continue] = ACTIONS(1063), - [anon_sym_for] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1063), - [anon_sym_loop] = ACTIONS(1063), - [anon_sym_make] = ACTIONS(1063), - [anon_sym_while] = ACTIONS(1063), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_if] = ACTIONS(1063), - [anon_sym_else] = ACTIONS(1063), - [anon_sym_match] = ACTIONS(1063), - [anon_sym_RBRACE] = ACTIONS(1065), - [anon_sym_try] = ACTIONS(1063), - [anon_sym_catch] = ACTIONS(1063), - [anon_sym_return] = ACTIONS(1063), - [anon_sym_source] = ACTIONS(1063), - [anon_sym_source_DASHenv] = ACTIONS(1063), - [anon_sym_register] = ACTIONS(1063), - [anon_sym_hide] = ACTIONS(1063), - [anon_sym_hide_DASHenv] = ACTIONS(1063), - [anon_sym_overlay] = ACTIONS(1063), - [anon_sym_new] = ACTIONS(1063), - [anon_sym_as] = ACTIONS(1063), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_QMARK2] = ACTIONS(1065), - [anon_sym_STAR_STAR] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_SLASH] = ACTIONS(1063), - [anon_sym_mod] = ACTIONS(1063), - [anon_sym_SLASH_SLASH] = ACTIONS(1065), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_bit_DASHshl] = ACTIONS(1063), - [anon_sym_bit_DASHshr] = ACTIONS(1063), - [anon_sym_EQ_EQ] = ACTIONS(1065), - [anon_sym_BANG_EQ] = ACTIONS(1065), - [anon_sym_LT2] = ACTIONS(1063), - [anon_sym_LT_EQ] = ACTIONS(1065), - [anon_sym_GT_EQ] = ACTIONS(1065), - [anon_sym_not_DASHin] = ACTIONS(1063), - [anon_sym_starts_DASHwith] = ACTIONS(1063), - [anon_sym_ends_DASHwith] = ACTIONS(1063), - [anon_sym_EQ_TILDE] = ACTIONS(1065), - [anon_sym_BANG_TILDE] = ACTIONS(1065), - [anon_sym_bit_DASHand] = ACTIONS(1063), - [anon_sym_bit_DASHxor] = ACTIONS(1063), - [anon_sym_bit_DASHor] = ACTIONS(1063), - [anon_sym_and] = ACTIONS(1063), - [anon_sym_xor] = ACTIONS(1063), - [anon_sym_or] = ACTIONS(1063), - [anon_sym_DOT] = ACTIONS(1065), - [aux_sym__val_number_decimal_token1] = ACTIONS(1063), - [aux_sym__val_number_decimal_token2] = ACTIONS(1065), - [anon_sym_DOT2] = ACTIONS(1063), - [aux_sym__val_number_decimal_token3] = ACTIONS(1065), - [aux_sym__val_number_token1] = ACTIONS(1065), - [aux_sym__val_number_token2] = ACTIONS(1065), - [aux_sym__val_number_token3] = ACTIONS(1065), - [aux_sym__val_number_token4] = ACTIONS(1063), - [aux_sym__val_number_token5] = ACTIONS(1065), - [aux_sym__val_number_token6] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1065), - [sym__str_single_quotes] = ACTIONS(1065), - [sym__str_back_ticks] = ACTIONS(1065), - [aux_sym__record_key_token2] = ACTIONS(1063), + [1040] = { + [sym_comment] = STATE(1040), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_alias] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_let_DASHenv] = ACTIONS(2229), + [anon_sym_mut] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2229), + [sym_cmd_identifier] = ACTIONS(2229), + [anon_sym_LF] = ACTIONS(2231), + [anon_sym_def] = ACTIONS(2229), + [anon_sym_export_DASHenv] = ACTIONS(2229), + [anon_sym_extern] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_RPAREN] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2229), + [anon_sym_error] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_loop] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_RBRACE] = ACTIONS(2229), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_source] = ACTIONS(2229), + [anon_sym_source_DASHenv] = ACTIONS(2229), + [anon_sym_register] = ACTIONS(2229), + [anon_sym_hide] = ACTIONS(2229), + [anon_sym_hide_DASHenv] = ACTIONS(2229), + [anon_sym_overlay] = ACTIONS(2229), + [anon_sym_as] = ACTIONS(2229), + [anon_sym_where] = ACTIONS(2229), + [anon_sym_not] = ACTIONS(2229), + [anon_sym_LPAREN2] = ACTIONS(2231), + [anon_sym_DOT] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2229), + [anon_sym_DOT_DOT_LT] = ACTIONS(2229), + [aux_sym__immediate_decimal_token2] = ACTIONS(3490), + [anon_sym_null] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [aux_sym__val_number_decimal_token1] = ACTIONS(2229), + [aux_sym__val_number_decimal_token2] = ACTIONS(2229), + [anon_sym_DOT2] = ACTIONS(2229), + [aux_sym__val_number_decimal_token3] = ACTIONS(2229), + [aux_sym__val_number_token1] = ACTIONS(2229), + [aux_sym__val_number_token2] = ACTIONS(2229), + [aux_sym__val_number_token3] = ACTIONS(2229), + [aux_sym__val_number_token4] = ACTIONS(2229), + [aux_sym__val_number_token5] = ACTIONS(2229), + [aux_sym__val_number_token6] = ACTIONS(2229), + [anon_sym_0b] = ACTIONS(2229), + [anon_sym_0o] = ACTIONS(2229), + [anon_sym_0x] = ACTIONS(2229), + [sym_val_date] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2229), + [anon_sym_CARET] = ACTIONS(2229), + [aux_sym_unquoted_token2] = ACTIONS(2229), + [anon_sym_POUND] = ACTIONS(113), + }, + [1041] = { + [sym_comment] = STATE(1041), + [ts_builtin_sym_end] = ACTIONS(3314), + [anon_sym_export] = ACTIONS(3312), + [anon_sym_alias] = ACTIONS(3312), + [anon_sym_let] = ACTIONS(3312), + [anon_sym_let_DASHenv] = ACTIONS(3312), + [anon_sym_mut] = ACTIONS(3312), + [anon_sym_const] = ACTIONS(3312), + [anon_sym_SEMI] = ACTIONS(3312), + [sym_cmd_identifier] = ACTIONS(3312), + [anon_sym_LF] = ACTIONS(3314), + [anon_sym_def] = ACTIONS(3312), + [anon_sym_export_DASHenv] = ACTIONS(3312), + [anon_sym_extern] = ACTIONS(3312), + [anon_sym_module] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3312), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3312), + [anon_sym_error] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [anon_sym_DASH] = ACTIONS(3312), + [anon_sym_break] = ACTIONS(3312), + [anon_sym_continue] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3312), + [anon_sym_loop] = ACTIONS(3312), + [anon_sym_while] = ACTIONS(3312), + [anon_sym_do] = ACTIONS(3312), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_match] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_DOT_DOT] = ACTIONS(3312), + [anon_sym_try] = ACTIONS(3312), + [anon_sym_return] = ACTIONS(3312), + [anon_sym_source] = ACTIONS(3312), + [anon_sym_source_DASHenv] = ACTIONS(3312), + [anon_sym_register] = ACTIONS(3312), + [anon_sym_hide] = ACTIONS(3312), + [anon_sym_hide_DASHenv] = ACTIONS(3312), + [anon_sym_overlay] = ACTIONS(3312), + [anon_sym_as] = ACTIONS(3312), + [anon_sym_where] = ACTIONS(3312), + [anon_sym_not] = ACTIONS(3312), + [anon_sym_DOT_DOT2] = ACTIONS(3564), + [anon_sym_DOT] = ACTIONS(1844), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3312), + [anon_sym_DOT_DOT_LT] = ACTIONS(3312), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3566), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3566), + [anon_sym_null] = ACTIONS(3312), + [anon_sym_true] = ACTIONS(3312), + [anon_sym_false] = ACTIONS(3312), + [aux_sym__val_number_decimal_token1] = ACTIONS(3312), + [aux_sym__val_number_decimal_token2] = ACTIONS(3312), + [anon_sym_DOT2] = ACTIONS(3312), + [aux_sym__val_number_decimal_token3] = ACTIONS(3312), + [aux_sym__val_number_token1] = ACTIONS(3312), + [aux_sym__val_number_token2] = ACTIONS(3312), + [aux_sym__val_number_token3] = ACTIONS(3312), + [aux_sym__val_number_token4] = ACTIONS(3312), + [aux_sym__val_number_token5] = ACTIONS(3312), + [aux_sym__val_number_token6] = ACTIONS(3312), + [anon_sym_0b] = ACTIONS(3312), + [anon_sym_0o] = ACTIONS(3312), + [anon_sym_0x] = ACTIONS(3312), + [sym_val_date] = ACTIONS(3312), + [anon_sym_DQUOTE] = ACTIONS(3312), + [sym__str_single_quotes] = ACTIONS(3312), + [sym__str_back_ticks] = ACTIONS(3312), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3312), + [anon_sym_CARET] = ACTIONS(3312), + [aux_sym_unquoted_token2] = ACTIONS(1844), + [anon_sym_POUND] = ACTIONS(113), + }, + [1042] = { + [sym_comment] = STATE(1042), + [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), + [anon_sym_SEMI] = ACTIONS(2362), + [sym_cmd_identifier] = ACTIONS(2362), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2362), + [anon_sym_LPAREN] = ACTIONS(2362), + [anon_sym_RPAREN] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2362), + [anon_sym_error] = ACTIONS(2362), + [anon_sym_DASH_DASH] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_break] = ACTIONS(2362), + [anon_sym_continue] = ACTIONS(2362), + [anon_sym_for] = ACTIONS(2362), + [anon_sym_loop] = ACTIONS(2362), + [anon_sym_while] = ACTIONS(2362), + [anon_sym_do] = ACTIONS(2362), + [anon_sym_if] = ACTIONS(2362), + [anon_sym_match] = ACTIONS(2362), + [anon_sym_LBRACE] = ACTIONS(2362), + [anon_sym_RBRACE] = ACTIONS(2362), + [anon_sym_DOT_DOT] = ACTIONS(2362), + [anon_sym_try] = 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_where] = ACTIONS(2362), + [anon_sym_not] = ACTIONS(2362), + [anon_sym_LPAREN2] = ACTIONS(2364), + [anon_sym_DOT] = ACTIONS(2362), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2362), + [anon_sym_DOT_DOT_LT] = ACTIONS(2362), + [aux_sym__immediate_decimal_token2] = ACTIONS(3568), + [anon_sym_null] = ACTIONS(2362), + [anon_sym_true] = ACTIONS(2362), + [anon_sym_false] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2362), + [aux_sym__val_number_decimal_token2] = ACTIONS(2362), + [anon_sym_DOT2] = ACTIONS(2362), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2362), + [anon_sym_0o] = ACTIONS(2362), + [anon_sym_0x] = ACTIONS(2362), + [sym_val_date] = 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_CARET] = ACTIONS(2362), + [aux_sym_unquoted_token2] = ACTIONS(2362), + [anon_sym_POUND] = ACTIONS(113), + }, + [1043] = { + [sym_comment] = STATE(1043), + [ts_builtin_sym_end] = ACTIONS(3356), + [anon_sym_export] = ACTIONS(3354), + [anon_sym_alias] = ACTIONS(3354), + [anon_sym_let] = ACTIONS(3354), + [anon_sym_let_DASHenv] = ACTIONS(3354), + [anon_sym_mut] = ACTIONS(3354), + [anon_sym_const] = ACTIONS(3354), + [anon_sym_SEMI] = ACTIONS(3354), + [sym_cmd_identifier] = ACTIONS(3354), + [anon_sym_LF] = ACTIONS(3356), + [anon_sym_def] = ACTIONS(3354), + [anon_sym_export_DASHenv] = ACTIONS(3354), + [anon_sym_extern] = ACTIONS(3354), + [anon_sym_module] = ACTIONS(3354), + [anon_sym_use] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3354), + [anon_sym_DOLLAR] = ACTIONS(3354), + [anon_sym_error] = ACTIONS(3354), + [anon_sym_DASH_DASH] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_loop] = ACTIONS(3354), + [anon_sym_while] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_match] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3354), + [anon_sym_DOT_DOT] = ACTIONS(3354), + [anon_sym_try] = ACTIONS(3354), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_source] = ACTIONS(3354), + [anon_sym_source_DASHenv] = ACTIONS(3354), + [anon_sym_register] = ACTIONS(3354), + [anon_sym_hide] = ACTIONS(3354), + [anon_sym_hide_DASHenv] = ACTIONS(3354), + [anon_sym_overlay] = ACTIONS(3354), + [anon_sym_as] = ACTIONS(3354), + [anon_sym_where] = ACTIONS(3354), + [anon_sym_not] = ACTIONS(3354), + [anon_sym_DOT_DOT2] = ACTIONS(3570), + [anon_sym_DOT] = ACTIONS(3362), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3354), + [anon_sym_DOT_DOT_LT] = ACTIONS(3354), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3572), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3572), + [anon_sym_null] = ACTIONS(3354), + [anon_sym_true] = ACTIONS(3354), + [anon_sym_false] = ACTIONS(3354), + [aux_sym__val_number_decimal_token1] = ACTIONS(3354), + [aux_sym__val_number_decimal_token2] = ACTIONS(3354), + [anon_sym_DOT2] = ACTIONS(3354), + [aux_sym__val_number_decimal_token3] = ACTIONS(3354), + [aux_sym__val_number_token1] = ACTIONS(3354), + [aux_sym__val_number_token2] = ACTIONS(3354), + [aux_sym__val_number_token3] = ACTIONS(3354), + [aux_sym__val_number_token4] = ACTIONS(3354), + [aux_sym__val_number_token5] = ACTIONS(3354), + [aux_sym__val_number_token6] = ACTIONS(3354), + [anon_sym_0b] = ACTIONS(3354), + [anon_sym_0o] = ACTIONS(3354), + [anon_sym_0x] = ACTIONS(3354), + [sym_val_date] = ACTIONS(3354), + [anon_sym_DQUOTE] = ACTIONS(3354), + [sym__str_single_quotes] = ACTIONS(3354), + [sym__str_back_ticks] = ACTIONS(3354), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3354), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3354), + [anon_sym_CARET] = ACTIONS(3354), + [aux_sym_unquoted_token2] = ACTIONS(3362), + [anon_sym_POUND] = ACTIONS(113), + }, + [1044] = { + [sym_comment] = STATE(1044), + [ts_builtin_sym_end] = ACTIONS(1035), + [anon_sym_export] = ACTIONS(1033), + [anon_sym_alias] = ACTIONS(1033), + [anon_sym_let] = ACTIONS(1033), + [anon_sym_let_DASHenv] = ACTIONS(1033), + [anon_sym_mut] = ACTIONS(1033), + [anon_sym_const] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(1033), + [sym_cmd_identifier] = ACTIONS(1033), + [anon_sym_LF] = ACTIONS(1035), + [anon_sym_def] = ACTIONS(1033), + [anon_sym_export_DASHenv] = ACTIONS(1033), + [anon_sym_extern] = ACTIONS(1033), + [anon_sym_module] = ACTIONS(1033), + [anon_sym_use] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1033), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_error] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1033), + [anon_sym_break] = ACTIONS(1033), + [anon_sym_continue] = ACTIONS(1033), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_loop] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(1033), + [anon_sym_do] = ACTIONS(1033), + [anon_sym_if] = ACTIONS(1033), + [anon_sym_match] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_DOT_DOT] = ACTIONS(1033), + [anon_sym_try] = ACTIONS(1033), + [anon_sym_return] = ACTIONS(1033), + [anon_sym_source] = ACTIONS(1033), + [anon_sym_source_DASHenv] = ACTIONS(1033), + [anon_sym_register] = ACTIONS(1033), + [anon_sym_hide] = ACTIONS(1033), + [anon_sym_hide_DASHenv] = ACTIONS(1033), + [anon_sym_overlay] = ACTIONS(1033), + [anon_sym_as] = ACTIONS(1033), + [anon_sym_where] = ACTIONS(1033), + [anon_sym_QMARK2] = ACTIONS(1033), + [anon_sym_not] = ACTIONS(1033), + [anon_sym_DOT_DOT2] = ACTIONS(1033), + [anon_sym_DOT] = ACTIONS(1033), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1033), + [anon_sym_DOT_DOT_LT] = ACTIONS(1033), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1035), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1035), + [anon_sym_null] = ACTIONS(1033), + [anon_sym_true] = ACTIONS(1033), + [anon_sym_false] = ACTIONS(1033), + [aux_sym__val_number_decimal_token1] = ACTIONS(1033), + [aux_sym__val_number_decimal_token2] = ACTIONS(1033), + [anon_sym_DOT2] = ACTIONS(1033), + [aux_sym__val_number_decimal_token3] = ACTIONS(1033), + [aux_sym__val_number_token1] = ACTIONS(1033), + [aux_sym__val_number_token2] = ACTIONS(1033), + [aux_sym__val_number_token3] = ACTIONS(1033), + [aux_sym__val_number_token4] = ACTIONS(1033), + [aux_sym__val_number_token5] = ACTIONS(1033), + [aux_sym__val_number_token6] = ACTIONS(1033), + [anon_sym_0b] = ACTIONS(1033), + [anon_sym_0o] = ACTIONS(1033), + [anon_sym_0x] = ACTIONS(1033), + [sym_val_date] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [sym__str_single_quotes] = ACTIONS(1033), + [sym__str_back_ticks] = ACTIONS(1033), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1033), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1033), + [anon_sym_CARET] = ACTIONS(1033), + [anon_sym_POUND] = ACTIONS(113), + }, + [1045] = { + [sym_comment] = STATE(1045), + [ts_builtin_sym_end] = ACTIONS(1022), + [anon_sym_export] = ACTIONS(1020), + [anon_sym_alias] = ACTIONS(1020), + [anon_sym_let] = ACTIONS(1020), + [anon_sym_let_DASHenv] = ACTIONS(1020), + [anon_sym_mut] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1020), + [sym_cmd_identifier] = ACTIONS(1020), + [anon_sym_LF] = ACTIONS(1022), + [anon_sym_def] = ACTIONS(1020), + [anon_sym_export_DASHenv] = ACTIONS(1020), + [anon_sym_extern] = ACTIONS(1020), + [anon_sym_module] = ACTIONS(1020), + [anon_sym_use] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_error] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1020), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_loop] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_match] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_DOT_DOT] = ACTIONS(1020), + [anon_sym_try] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_source] = ACTIONS(1020), + [anon_sym_source_DASHenv] = ACTIONS(1020), + [anon_sym_register] = ACTIONS(1020), + [anon_sym_hide] = ACTIONS(1020), + [anon_sym_hide_DASHenv] = ACTIONS(1020), + [anon_sym_overlay] = ACTIONS(1020), + [anon_sym_as] = ACTIONS(1020), + [anon_sym_where] = ACTIONS(1020), + [anon_sym_QMARK2] = ACTIONS(1020), + [anon_sym_not] = ACTIONS(1020), + [anon_sym_DOT_DOT2] = ACTIONS(1020), + [anon_sym_DOT] = ACTIONS(1020), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1020), + [anon_sym_DOT_DOT_LT] = ACTIONS(1020), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1022), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1022), + [anon_sym_null] = ACTIONS(1020), + [anon_sym_true] = ACTIONS(1020), + [anon_sym_false] = ACTIONS(1020), + [aux_sym__val_number_decimal_token1] = ACTIONS(1020), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [anon_sym_DOT2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1020), + [aux_sym__val_number_token1] = ACTIONS(1020), + [aux_sym__val_number_token2] = ACTIONS(1020), + [aux_sym__val_number_token3] = ACTIONS(1020), + [aux_sym__val_number_token4] = ACTIONS(1020), + [aux_sym__val_number_token5] = ACTIONS(1020), + [aux_sym__val_number_token6] = ACTIONS(1020), + [anon_sym_0b] = ACTIONS(1020), + [anon_sym_0o] = ACTIONS(1020), + [anon_sym_0x] = ACTIONS(1020), + [sym_val_date] = ACTIONS(1020), + [anon_sym_DQUOTE] = ACTIONS(1020), + [sym__str_single_quotes] = ACTIONS(1020), + [sym__str_back_ticks] = ACTIONS(1020), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1020), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1020), + [anon_sym_CARET] = ACTIONS(1020), + [anon_sym_POUND] = ACTIONS(113), + }, + [1046] = { + [sym_comment] = STATE(1046), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_COMMA] = ACTIONS(1035), + [anon_sym_RBRACK] = ACTIONS(1035), + [anon_sym_LPAREN] = ACTIONS(1035), + [anon_sym_DOLLAR] = ACTIONS(1035), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1033), + [anon_sym_in] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(1035), + [anon_sym_DOT_DOT] = ACTIONS(1033), + [anon_sym_STAR] = ACTIONS(1033), + [anon_sym_QMARK2] = ACTIONS(1035), + [anon_sym_STAR_STAR] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1035), + [anon_sym_SLASH] = ACTIONS(1033), + [anon_sym_mod] = ACTIONS(1035), + [anon_sym_SLASH_SLASH] = ACTIONS(1035), + [anon_sym_PLUS] = ACTIONS(1033), + [anon_sym_bit_DASHshl] = ACTIONS(1035), + [anon_sym_bit_DASHshr] = ACTIONS(1035), + [anon_sym_EQ_EQ] = ACTIONS(1035), + [anon_sym_BANG_EQ] = ACTIONS(1035), + [anon_sym_LT2] = ACTIONS(1033), + [anon_sym_LT_EQ] = ACTIONS(1035), + [anon_sym_GT_EQ] = ACTIONS(1035), + [anon_sym_not_DASHin] = ACTIONS(1035), + [anon_sym_starts_DASHwith] = ACTIONS(1035), + [anon_sym_ends_DASHwith] = ACTIONS(1035), + [anon_sym_EQ_TILDE] = ACTIONS(1035), + [anon_sym_BANG_TILDE] = ACTIONS(1035), + [anon_sym_bit_DASHand] = ACTIONS(1035), + [anon_sym_bit_DASHxor] = ACTIONS(1035), + [anon_sym_bit_DASHor] = ACTIONS(1035), + [anon_sym_and] = ACTIONS(1035), + [anon_sym_xor] = ACTIONS(1035), + [anon_sym_or] = ACTIONS(1035), + [anon_sym_DOT_DOT2] = ACTIONS(1033), + [anon_sym_DOT] = ACTIONS(1033), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1033), + [anon_sym_DOT_DOT_LT] = ACTIONS(1033), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1035), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1035), + [anon_sym_null] = ACTIONS(1035), + [anon_sym_true] = ACTIONS(1035), + [anon_sym_false] = ACTIONS(1035), + [aux_sym__val_number_decimal_token1] = ACTIONS(1033), + [aux_sym__val_number_decimal_token2] = ACTIONS(1035), + [anon_sym_DOT2] = ACTIONS(1033), + [aux_sym__val_number_decimal_token3] = ACTIONS(1035), + [aux_sym__val_number_token1] = ACTIONS(1035), + [aux_sym__val_number_token2] = ACTIONS(1035), + [aux_sym__val_number_token3] = ACTIONS(1035), + [aux_sym__val_number_token4] = ACTIONS(1035), + [aux_sym__val_number_token5] = ACTIONS(1035), + [aux_sym__val_number_token6] = ACTIONS(1035), + [anon_sym_0b] = ACTIONS(1033), + [anon_sym_0o] = ACTIONS(1033), + [anon_sym_0x] = ACTIONS(1033), + [sym_val_date] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(1035), + [sym__str_single_quotes] = ACTIONS(1035), + [sym__str_back_ticks] = ACTIONS(1035), + [anon_sym_err_GT] = ACTIONS(1035), + [anon_sym_out_GT] = ACTIONS(1035), + [anon_sym_e_GT] = ACTIONS(1035), + [anon_sym_o_GT] = ACTIONS(1035), + [anon_sym_err_PLUSout_GT] = ACTIONS(1035), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1035), + [anon_sym_o_PLUSe_GT] = ACTIONS(1035), + [anon_sym_e_PLUSo_GT] = ACTIONS(1035), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1033), [anon_sym_POUND] = ACTIONS(3), }, - [864] = { - [sym_comment] = STATE(864), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_alias] = ACTIONS(1070), - [anon_sym_let] = ACTIONS(1070), - [anon_sym_let_DASHenv] = ACTIONS(1070), - [anon_sym_mut] = ACTIONS(1070), - [anon_sym_const] = ACTIONS(1070), - [sym_cmd_identifier] = ACTIONS(1070), - [anon_sym_def] = ACTIONS(1070), - [anon_sym_export_DASHenv] = ACTIONS(1070), - [anon_sym_extern] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_use] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_DOLLAR] = ACTIONS(1072), - [anon_sym_error] = ACTIONS(1070), - [anon_sym_list] = ACTIONS(1070), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_in] = ACTIONS(1070), - [anon_sym_loop] = ACTIONS(1070), - [anon_sym_make] = ACTIONS(1070), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_do] = ACTIONS(1070), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_else] = ACTIONS(1070), - [anon_sym_match] = ACTIONS(1070), - [anon_sym_RBRACE] = ACTIONS(1072), - [anon_sym_try] = ACTIONS(1070), - [anon_sym_catch] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_source] = ACTIONS(1070), - [anon_sym_source_DASHenv] = ACTIONS(1070), - [anon_sym_register] = ACTIONS(1070), - [anon_sym_hide] = ACTIONS(1070), - [anon_sym_hide_DASHenv] = ACTIONS(1070), - [anon_sym_overlay] = ACTIONS(1070), - [anon_sym_new] = ACTIONS(1070), - [anon_sym_as] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1072), - [anon_sym_PLUS_PLUS] = ACTIONS(1072), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_mod] = ACTIONS(1070), - [anon_sym_SLASH_SLASH] = ACTIONS(1072), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_bit_DASHshl] = ACTIONS(1070), - [anon_sym_bit_DASHshr] = ACTIONS(1070), - [anon_sym_EQ_EQ] = ACTIONS(1072), - [anon_sym_BANG_EQ] = ACTIONS(1072), - [anon_sym_LT2] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1072), - [anon_sym_GT_EQ] = ACTIONS(1072), - [anon_sym_not_DASHin] = ACTIONS(1070), - [anon_sym_starts_DASHwith] = ACTIONS(1070), - [anon_sym_ends_DASHwith] = ACTIONS(1070), - [anon_sym_EQ_TILDE] = ACTIONS(1072), - [anon_sym_BANG_TILDE] = ACTIONS(1072), - [anon_sym_bit_DASHand] = ACTIONS(1070), - [anon_sym_bit_DASHxor] = ACTIONS(1070), - [anon_sym_bit_DASHor] = ACTIONS(1070), - [anon_sym_and] = ACTIONS(1070), - [anon_sym_xor] = ACTIONS(1070), - [anon_sym_or] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1072), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1072), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1072), - [aux_sym__val_number_token1] = ACTIONS(1072), - [aux_sym__val_number_token2] = ACTIONS(1072), - [aux_sym__val_number_token3] = ACTIONS(1072), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1072), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [sym__str_single_quotes] = ACTIONS(1072), - [sym__str_back_ticks] = ACTIONS(1072), - [aux_sym__record_key_token2] = ACTIONS(1070), + [1047] = { + [sym_comment] = STATE(1047), + [anon_sym_LBRACK] = ACTIONS(1022), + [anon_sym_COMMA] = ACTIONS(1022), + [anon_sym_RBRACK] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_GT] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_in] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1022), + [anon_sym_DOT_DOT] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_QMARK2] = ACTIONS(1022), + [anon_sym_STAR_STAR] = ACTIONS(1022), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_SLASH] = ACTIONS(1020), + [anon_sym_mod] = ACTIONS(1022), + [anon_sym_SLASH_SLASH] = ACTIONS(1022), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_bit_DASHshl] = ACTIONS(1022), + [anon_sym_bit_DASHshr] = ACTIONS(1022), + [anon_sym_EQ_EQ] = ACTIONS(1022), + [anon_sym_BANG_EQ] = ACTIONS(1022), + [anon_sym_LT2] = ACTIONS(1020), + [anon_sym_LT_EQ] = ACTIONS(1022), + [anon_sym_GT_EQ] = ACTIONS(1022), + [anon_sym_not_DASHin] = ACTIONS(1022), + [anon_sym_starts_DASHwith] = ACTIONS(1022), + [anon_sym_ends_DASHwith] = ACTIONS(1022), + [anon_sym_EQ_TILDE] = ACTIONS(1022), + [anon_sym_BANG_TILDE] = ACTIONS(1022), + [anon_sym_bit_DASHand] = ACTIONS(1022), + [anon_sym_bit_DASHxor] = ACTIONS(1022), + [anon_sym_bit_DASHor] = ACTIONS(1022), + [anon_sym_and] = ACTIONS(1022), + [anon_sym_xor] = ACTIONS(1022), + [anon_sym_or] = ACTIONS(1022), + [anon_sym_DOT_DOT2] = ACTIONS(1020), + [anon_sym_DOT] = ACTIONS(1020), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1020), + [anon_sym_DOT_DOT_LT] = ACTIONS(1020), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1022), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1022), + [anon_sym_null] = ACTIONS(1022), + [anon_sym_true] = ACTIONS(1022), + [anon_sym_false] = ACTIONS(1022), + [aux_sym__val_number_decimal_token1] = ACTIONS(1020), + [aux_sym__val_number_decimal_token2] = ACTIONS(1022), + [anon_sym_DOT2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1022), + [aux_sym__val_number_token1] = ACTIONS(1022), + [aux_sym__val_number_token2] = ACTIONS(1022), + [aux_sym__val_number_token3] = ACTIONS(1022), + [aux_sym__val_number_token4] = ACTIONS(1022), + [aux_sym__val_number_token5] = ACTIONS(1022), + [aux_sym__val_number_token6] = ACTIONS(1022), + [anon_sym_0b] = ACTIONS(1020), + [anon_sym_0o] = ACTIONS(1020), + [anon_sym_0x] = ACTIONS(1020), + [sym_val_date] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1022), + [sym__str_single_quotes] = ACTIONS(1022), + [sym__str_back_ticks] = ACTIONS(1022), + [anon_sym_err_GT] = ACTIONS(1022), + [anon_sym_out_GT] = ACTIONS(1022), + [anon_sym_e_GT] = ACTIONS(1022), + [anon_sym_o_GT] = ACTIONS(1022), + [anon_sym_err_PLUSout_GT] = ACTIONS(1022), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1022), + [anon_sym_o_PLUSe_GT] = ACTIONS(1022), + [anon_sym_e_PLUSo_GT] = ACTIONS(1022), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1020), [anon_sym_POUND] = ACTIONS(3), }, - [865] = { - [sym_comment] = STATE(865), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_alias] = ACTIONS(1158), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_let_DASHenv] = ACTIONS(1158), - [anon_sym_mut] = ACTIONS(1158), - [anon_sym_const] = ACTIONS(1158), - [sym_cmd_identifier] = ACTIONS(1158), - [anon_sym_def] = ACTIONS(1158), - [anon_sym_export_DASHenv] = ACTIONS(1158), - [anon_sym_extern] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_use] = ACTIONS(1158), - [anon_sym_LPAREN] = ACTIONS(1158), - [anon_sym_DOLLAR] = ACTIONS(1158), - [anon_sym_error] = ACTIONS(1158), - [anon_sym_list] = ACTIONS(1158), - [anon_sym_GT] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_break] = ACTIONS(1158), - [anon_sym_continue] = ACTIONS(1158), - [anon_sym_for] = ACTIONS(1158), - [anon_sym_in] = ACTIONS(1158), - [anon_sym_loop] = ACTIONS(1158), - [anon_sym_make] = ACTIONS(1158), - [anon_sym_while] = ACTIONS(1158), - [anon_sym_do] = ACTIONS(1158), - [anon_sym_if] = ACTIONS(1158), - [anon_sym_else] = ACTIONS(1158), - [anon_sym_match] = ACTIONS(1158), - [anon_sym_RBRACE] = ACTIONS(1158), - [anon_sym_try] = ACTIONS(1158), - [anon_sym_catch] = ACTIONS(1158), - [anon_sym_return] = ACTIONS(1158), - [anon_sym_source] = ACTIONS(1158), - [anon_sym_source_DASHenv] = ACTIONS(1158), - [anon_sym_register] = ACTIONS(1158), - [anon_sym_hide] = ACTIONS(1158), - [anon_sym_hide_DASHenv] = ACTIONS(1158), - [anon_sym_overlay] = ACTIONS(1158), - [anon_sym_new] = ACTIONS(1158), - [anon_sym_as] = ACTIONS(1158), - [anon_sym_STAR] = ACTIONS(1158), - [anon_sym_STAR_STAR] = ACTIONS(1158), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_SLASH] = ACTIONS(1158), - [anon_sym_mod] = ACTIONS(1158), - [anon_sym_SLASH_SLASH] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1158), - [anon_sym_bit_DASHshl] = ACTIONS(1158), - [anon_sym_bit_DASHshr] = ACTIONS(1158), - [anon_sym_EQ_EQ] = ACTIONS(1158), - [anon_sym_BANG_EQ] = ACTIONS(1158), - [anon_sym_LT2] = ACTIONS(1158), - [anon_sym_LT_EQ] = ACTIONS(1158), - [anon_sym_GT_EQ] = ACTIONS(1158), - [anon_sym_not_DASHin] = ACTIONS(1158), - [anon_sym_starts_DASHwith] = ACTIONS(1158), - [anon_sym_ends_DASHwith] = ACTIONS(1158), - [anon_sym_EQ_TILDE] = ACTIONS(1158), - [anon_sym_BANG_TILDE] = ACTIONS(1158), - [anon_sym_bit_DASHand] = ACTIONS(1158), - [anon_sym_bit_DASHxor] = ACTIONS(1158), - [anon_sym_bit_DASHor] = ACTIONS(1158), - [anon_sym_and] = ACTIONS(1158), - [anon_sym_xor] = ACTIONS(1158), - [anon_sym_or] = ACTIONS(1158), - [aux_sym__val_number_decimal_token1] = ACTIONS(1158), - [aux_sym__val_number_decimal_token2] = ACTIONS(1158), - [anon_sym_DOT2] = ACTIONS(1158), - [aux_sym__val_number_decimal_token3] = ACTIONS(1158), - [aux_sym__val_number_token1] = ACTIONS(1158), - [aux_sym__val_number_token2] = ACTIONS(1158), - [aux_sym__val_number_token3] = ACTIONS(1158), - [aux_sym__val_number_token4] = ACTIONS(1158), - [aux_sym__val_number_token5] = ACTIONS(1158), - [aux_sym__val_number_token6] = ACTIONS(1158), - [anon_sym_DQUOTE] = ACTIONS(1158), - [sym__str_single_quotes] = ACTIONS(1158), - [sym__str_back_ticks] = ACTIONS(1158), - [sym__entry_separator] = ACTIONS(1160), - [aux_sym__record_key_token2] = ACTIONS(1158), - [aux_sym_unquoted_token6] = ACTIONS(1284), + [1048] = { + [sym_comment] = STATE(1048), + [anon_sym_SEMI] = ACTIONS(911), + [anon_sym_LF] = ACTIONS(913), + [anon_sym_LBRACK] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_RPAREN] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(911), + [anon_sym_DOLLAR] = ACTIONS(911), + [anon_sym_GT] = ACTIONS(911), + [anon_sym_DASH_DASH] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_in] = ACTIONS(911), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_RBRACE] = ACTIONS(911), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(911), + [anon_sym_STAR_STAR] = ACTIONS(911), + [anon_sym_PLUS_PLUS] = ACTIONS(911), + [anon_sym_SLASH] = ACTIONS(911), + [anon_sym_mod] = ACTIONS(911), + [anon_sym_SLASH_SLASH] = ACTIONS(911), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_bit_DASHshl] = ACTIONS(911), + [anon_sym_bit_DASHshr] = ACTIONS(911), + [anon_sym_EQ_EQ] = ACTIONS(911), + [anon_sym_BANG_EQ] = ACTIONS(911), + [anon_sym_LT2] = ACTIONS(911), + [anon_sym_LT_EQ] = ACTIONS(911), + [anon_sym_GT_EQ] = ACTIONS(911), + [anon_sym_not_DASHin] = ACTIONS(911), + [anon_sym_starts_DASHwith] = ACTIONS(911), + [anon_sym_ends_DASHwith] = ACTIONS(911), + [anon_sym_EQ_TILDE] = ACTIONS(911), + [anon_sym_BANG_TILDE] = ACTIONS(911), + [anon_sym_bit_DASHand] = ACTIONS(911), + [anon_sym_bit_DASHxor] = ACTIONS(911), + [anon_sym_bit_DASHor] = ACTIONS(911), + [anon_sym_and] = ACTIONS(911), + [anon_sym_xor] = ACTIONS(911), + [anon_sym_or] = ACTIONS(911), + [anon_sym_not] = ACTIONS(911), + [anon_sym_DOT_DOT2] = ACTIONS(911), + [anon_sym_DOT] = ACTIONS(911), + [anon_sym_DOT_DOT_EQ] = ACTIONS(911), + [anon_sym_DOT_DOT_LT] = ACTIONS(911), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(913), + [anon_sym_DOT_DOT_LT2] = ACTIONS(913), + [aux_sym__immediate_decimal_token2] = ACTIONS(3554), + [anon_sym_null] = ACTIONS(911), + [anon_sym_true] = ACTIONS(911), + [anon_sym_false] = ACTIONS(911), + [aux_sym__val_number_decimal_token1] = ACTIONS(911), + [aux_sym__val_number_decimal_token2] = ACTIONS(911), + [anon_sym_DOT2] = ACTIONS(911), + [aux_sym__val_number_decimal_token3] = ACTIONS(911), + [aux_sym__val_number_token1] = ACTIONS(911), + [aux_sym__val_number_token2] = ACTIONS(911), + [aux_sym__val_number_token3] = ACTIONS(911), + [aux_sym__val_number_token4] = ACTIONS(911), + [aux_sym__val_number_token5] = ACTIONS(911), + [aux_sym__val_number_token6] = ACTIONS(911), + [anon_sym_0b] = ACTIONS(911), + [sym_filesize_unit] = ACTIONS(911), + [sym_duration_unit] = ACTIONS(913), + [anon_sym_0o] = ACTIONS(911), + [anon_sym_0x] = ACTIONS(911), + [sym_val_date] = ACTIONS(911), + [anon_sym_DQUOTE] = ACTIONS(911), + [sym__str_single_quotes] = ACTIONS(911), + [sym__str_back_ticks] = ACTIONS(911), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(911), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(911), + [aux_sym_unquoted_token5] = ACTIONS(911), [anon_sym_POUND] = ACTIONS(113), }, - [866] = { - [sym_comment] = STATE(866), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), + [1049] = { + [sym__immediate_decimal] = STATE(10080), + [sym_comment] = STATE(1049), + [ts_builtin_sym_end] = ACTIONS(922), + [anon_sym_export] = ACTIONS(920), + [anon_sym_alias] = ACTIONS(920), + [anon_sym_let] = ACTIONS(920), + [anon_sym_let_DASHenv] = ACTIONS(920), + [anon_sym_mut] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(920), + [sym_cmd_identifier] = ACTIONS(920), + [anon_sym_LF] = ACTIONS(922), + [anon_sym_def] = ACTIONS(920), + [anon_sym_export_DASHenv] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym_module] = ACTIONS(920), + [anon_sym_use] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_error] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_loop] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_match] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_try] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_source] = ACTIONS(920), + [anon_sym_source_DASHenv] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_hide] = ACTIONS(920), + [anon_sym_hide_DASHenv] = ACTIONS(920), + [anon_sym_overlay] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_where] = ACTIONS(920), + [anon_sym_not] = ACTIONS(920), + [anon_sym_DOT] = ACTIONS(967), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [aux_sym__immediate_decimal_token1] = ACTIONS(969), + [aux_sym__immediate_decimal_token3] = ACTIONS(969), + [aux_sym__immediate_decimal_token4] = ACTIONS(971), + [anon_sym_null] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), + [anon_sym_CARET] = ACTIONS(920), + [aux_sym_unquoted_token4] = ACTIONS(3433), + [anon_sym_POUND] = ACTIONS(113), + }, + [1050] = { + [sym_comment] = STATE(1050), + [anon_sym_SEMI] = ACTIONS(893), + [anon_sym_LF] = ACTIONS(895), + [anon_sym_LBRACK] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(893), + [anon_sym_RPAREN] = ACTIONS(893), + [anon_sym_PIPE] = ACTIONS(893), + [anon_sym_DOLLAR] = ACTIONS(893), + [anon_sym_GT] = ACTIONS(893), + [anon_sym_DASH_DASH] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_in] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(893), + [anon_sym_DOT_DOT] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(893), + [anon_sym_STAR_STAR] = ACTIONS(893), + [anon_sym_PLUS_PLUS] = ACTIONS(893), + [anon_sym_SLASH] = ACTIONS(893), + [anon_sym_mod] = ACTIONS(893), + [anon_sym_SLASH_SLASH] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_bit_DASHshl] = ACTIONS(893), + [anon_sym_bit_DASHshr] = ACTIONS(893), + [anon_sym_EQ_EQ] = ACTIONS(893), + [anon_sym_BANG_EQ] = ACTIONS(893), + [anon_sym_LT2] = ACTIONS(893), + [anon_sym_LT_EQ] = ACTIONS(893), + [anon_sym_GT_EQ] = ACTIONS(893), + [anon_sym_not_DASHin] = ACTIONS(893), + [anon_sym_starts_DASHwith] = ACTIONS(893), + [anon_sym_ends_DASHwith] = ACTIONS(893), + [anon_sym_EQ_TILDE] = ACTIONS(893), + [anon_sym_BANG_TILDE] = ACTIONS(893), + [anon_sym_bit_DASHand] = ACTIONS(893), + [anon_sym_bit_DASHxor] = ACTIONS(893), + [anon_sym_bit_DASHor] = ACTIONS(893), + [anon_sym_and] = ACTIONS(893), + [anon_sym_xor] = ACTIONS(893), + [anon_sym_or] = ACTIONS(893), + [anon_sym_not] = ACTIONS(893), + [anon_sym_DOT_DOT2] = ACTIONS(893), + [anon_sym_DOT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ] = ACTIONS(893), + [anon_sym_DOT_DOT_LT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), + [anon_sym_DOT_DOT_LT2] = ACTIONS(895), + [aux_sym__immediate_decimal_token2] = ACTIONS(3494), + [anon_sym_null] = ACTIONS(893), + [anon_sym_true] = ACTIONS(893), + [anon_sym_false] = ACTIONS(893), + [aux_sym__val_number_decimal_token1] = ACTIONS(893), + [aux_sym__val_number_decimal_token2] = ACTIONS(893), + [anon_sym_DOT2] = ACTIONS(893), + [aux_sym__val_number_decimal_token3] = ACTIONS(893), + [aux_sym__val_number_token1] = ACTIONS(893), + [aux_sym__val_number_token2] = ACTIONS(893), + [aux_sym__val_number_token3] = ACTIONS(893), + [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(893), + [sym_filesize_unit] = ACTIONS(893), + [sym_duration_unit] = ACTIONS(895), + [anon_sym_0o] = ACTIONS(893), + [anon_sym_0x] = ACTIONS(893), + [sym_val_date] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(893), + [sym__str_single_quotes] = ACTIONS(893), + [sym__str_back_ticks] = ACTIONS(893), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(893), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(893), + [aux_sym_unquoted_token5] = ACTIONS(893), + [anon_sym_POUND] = ACTIONS(113), + }, + [1051] = { + [sym__command_name] = STATE(2457), + [sym_scope_pattern] = STATE(2487), + [sym_wild_card] = STATE(2459), + [sym_command_list] = STATE(2518), + [sym_val_string] = STATE(2364), + [sym__str_double_quotes] = STATE(2294), + [sym_comment] = STATE(1051), + [ts_builtin_sym_end] = ACTIONS(3429), + [anon_sym_export] = ACTIONS(3427), + [anon_sym_alias] = ACTIONS(3427), + [anon_sym_let] = ACTIONS(3427), + [anon_sym_let_DASHenv] = ACTIONS(3427), + [anon_sym_mut] = ACTIONS(3427), + [anon_sym_const] = ACTIONS(3427), + [anon_sym_SEMI] = ACTIONS(3427), + [sym_cmd_identifier] = ACTIONS(3515), + [anon_sym_LF] = ACTIONS(3429), + [anon_sym_def] = ACTIONS(3427), + [anon_sym_export_DASHenv] = ACTIONS(3427), + [anon_sym_extern] = ACTIONS(3427), + [anon_sym_module] = ACTIONS(3427), + [anon_sym_use] = ACTIONS(3427), + [anon_sym_LBRACK] = ACTIONS(3517), + [anon_sym_LPAREN] = ACTIONS(3427), + [anon_sym_DOLLAR] = ACTIONS(3427), + [anon_sym_error] = ACTIONS(3427), + [anon_sym_DASH] = ACTIONS(3427), + [anon_sym_break] = ACTIONS(3427), + [anon_sym_continue] = ACTIONS(3427), + [anon_sym_for] = ACTIONS(3427), + [anon_sym_loop] = ACTIONS(3427), + [anon_sym_while] = ACTIONS(3427), + [anon_sym_do] = ACTIONS(3427), + [anon_sym_if] = ACTIONS(3427), + [anon_sym_match] = ACTIONS(3427), + [anon_sym_LBRACE] = ACTIONS(3427), + [anon_sym_DOT_DOT] = ACTIONS(3427), + [anon_sym_try] = ACTIONS(3427), + [anon_sym_return] = ACTIONS(3427), + [anon_sym_source] = ACTIONS(3427), + [anon_sym_source_DASHenv] = ACTIONS(3427), + [anon_sym_register] = ACTIONS(3427), + [anon_sym_hide] = ACTIONS(3427), + [anon_sym_hide_DASHenv] = ACTIONS(3427), + [anon_sym_overlay] = ACTIONS(3427), + [anon_sym_STAR] = ACTIONS(3519), + [anon_sym_where] = ACTIONS(3427), + [anon_sym_not] = ACTIONS(3427), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3427), + [anon_sym_DOT_DOT_LT] = ACTIONS(3427), + [anon_sym_null] = ACTIONS(3427), + [anon_sym_true] = ACTIONS(3427), + [anon_sym_false] = ACTIONS(3427), + [aux_sym__val_number_decimal_token1] = ACTIONS(3427), + [aux_sym__val_number_decimal_token2] = ACTIONS(3427), + [anon_sym_DOT2] = ACTIONS(3427), + [aux_sym__val_number_decimal_token3] = ACTIONS(3427), + [aux_sym__val_number_token1] = ACTIONS(3427), + [aux_sym__val_number_token2] = ACTIONS(3427), + [aux_sym__val_number_token3] = ACTIONS(3427), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(3427), + [anon_sym_0o] = ACTIONS(3427), + [anon_sym_0x] = ACTIONS(3427), + [sym_val_date] = ACTIONS(3427), + [anon_sym_DQUOTE] = ACTIONS(3521), + [sym__str_single_quotes] = ACTIONS(3523), + [sym__str_back_ticks] = ACTIONS(3523), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3427), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3427), + [anon_sym_CARET] = ACTIONS(3427), + [anon_sym_POUND] = ACTIONS(113), + }, + [1052] = { + [sym__command_name] = STATE(2457), + [sym_scope_pattern] = STATE(2458), + [sym_wild_card] = STATE(2459), + [sym_command_list] = STATE(2518), + [sym_val_string] = STATE(2364), + [sym__str_double_quotes] = STATE(2294), + [sym_comment] = STATE(1052), + [ts_builtin_sym_end] = ACTIONS(3376), + [anon_sym_export] = ACTIONS(3372), + [anon_sym_alias] = ACTIONS(3372), + [anon_sym_let] = ACTIONS(3372), + [anon_sym_let_DASHenv] = ACTIONS(3372), + [anon_sym_mut] = ACTIONS(3372), + [anon_sym_const] = ACTIONS(3372), + [anon_sym_SEMI] = ACTIONS(3372), + [sym_cmd_identifier] = ACTIONS(3515), + [anon_sym_LF] = ACTIONS(3376), + [anon_sym_def] = ACTIONS(3372), + [anon_sym_export_DASHenv] = ACTIONS(3372), + [anon_sym_extern] = ACTIONS(3372), + [anon_sym_module] = ACTIONS(3372), + [anon_sym_use] = ACTIONS(3372), + [anon_sym_LBRACK] = ACTIONS(3517), + [anon_sym_LPAREN] = ACTIONS(3372), + [anon_sym_DOLLAR] = ACTIONS(3372), + [anon_sym_error] = ACTIONS(3372), + [anon_sym_DASH] = ACTIONS(3372), + [anon_sym_break] = ACTIONS(3372), + [anon_sym_continue] = ACTIONS(3372), + [anon_sym_for] = ACTIONS(3372), + [anon_sym_loop] = ACTIONS(3372), + [anon_sym_while] = ACTIONS(3372), + [anon_sym_do] = ACTIONS(3372), + [anon_sym_if] = ACTIONS(3372), + [anon_sym_match] = ACTIONS(3372), + [anon_sym_LBRACE] = ACTIONS(3372), + [anon_sym_DOT_DOT] = ACTIONS(3372), + [anon_sym_try] = ACTIONS(3372), + [anon_sym_return] = ACTIONS(3372), + [anon_sym_source] = ACTIONS(3372), + [anon_sym_source_DASHenv] = ACTIONS(3372), + [anon_sym_register] = ACTIONS(3372), + [anon_sym_hide] = ACTIONS(3372), + [anon_sym_hide_DASHenv] = ACTIONS(3372), + [anon_sym_overlay] = ACTIONS(3372), + [anon_sym_STAR] = ACTIONS(3519), + [anon_sym_where] = ACTIONS(3372), + [anon_sym_not] = ACTIONS(3372), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3372), + [anon_sym_DOT_DOT_LT] = ACTIONS(3372), + [anon_sym_null] = ACTIONS(3372), + [anon_sym_true] = ACTIONS(3372), + [anon_sym_false] = ACTIONS(3372), + [aux_sym__val_number_decimal_token1] = ACTIONS(3372), + [aux_sym__val_number_decimal_token2] = ACTIONS(3372), + [anon_sym_DOT2] = ACTIONS(3372), + [aux_sym__val_number_decimal_token3] = ACTIONS(3372), + [aux_sym__val_number_token1] = ACTIONS(3372), + [aux_sym__val_number_token2] = ACTIONS(3372), + [aux_sym__val_number_token3] = ACTIONS(3372), + [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(3372), + [anon_sym_0o] = ACTIONS(3372), + [anon_sym_0x] = ACTIONS(3372), + [sym_val_date] = ACTIONS(3372), + [anon_sym_DQUOTE] = ACTIONS(3521), + [sym__str_single_quotes] = ACTIONS(3523), + [sym__str_back_ticks] = ACTIONS(3523), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3372), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3372), + [anon_sym_CARET] = ACTIONS(3372), + [anon_sym_POUND] = ACTIONS(113), + }, + [1053] = { + [sym_comment] = STATE(1053), + [anon_sym_export] = ACTIONS(3574), + [anon_sym_alias] = ACTIONS(3574), + [anon_sym_let] = ACTIONS(3574), + [anon_sym_let_DASHenv] = ACTIONS(3574), + [anon_sym_mut] = ACTIONS(3574), + [anon_sym_const] = ACTIONS(3574), + [anon_sym_SEMI] = ACTIONS(3574), + [sym_cmd_identifier] = ACTIONS(3574), + [anon_sym_LF] = ACTIONS(3576), + [anon_sym_def] = ACTIONS(3574), + [anon_sym_export_DASHenv] = ACTIONS(3574), + [anon_sym_extern] = ACTIONS(3574), + [anon_sym_module] = ACTIONS(3574), + [anon_sym_use] = ACTIONS(3574), + [anon_sym_LBRACK] = ACTIONS(3574), + [anon_sym_LPAREN] = ACTIONS(3574), + [anon_sym_RPAREN] = ACTIONS(3574), + [anon_sym_DOLLAR] = ACTIONS(3574), + [anon_sym_error] = ACTIONS(3574), + [anon_sym_DASH_DASH] = ACTIONS(3574), + [anon_sym_DASH] = ACTIONS(3574), + [anon_sym_break] = ACTIONS(3574), + [anon_sym_continue] = ACTIONS(3574), + [anon_sym_for] = ACTIONS(3574), + [anon_sym_loop] = ACTIONS(3574), + [anon_sym_while] = ACTIONS(3574), + [anon_sym_do] = ACTIONS(3574), + [anon_sym_if] = ACTIONS(3574), + [anon_sym_match] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(3574), + [anon_sym_RBRACE] = ACTIONS(3574), + [anon_sym_DOT_DOT] = ACTIONS(3574), + [anon_sym_try] = ACTIONS(3574), + [anon_sym_return] = ACTIONS(3574), + [anon_sym_source] = ACTIONS(3574), + [anon_sym_source_DASHenv] = ACTIONS(3574), + [anon_sym_register] = ACTIONS(3574), + [anon_sym_hide] = ACTIONS(3574), + [anon_sym_hide_DASHenv] = ACTIONS(3574), + [anon_sym_overlay] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_where] = ACTIONS(3574), + [anon_sym_not] = ACTIONS(3574), + [anon_sym_LPAREN2] = ACTIONS(3358), + [anon_sym_DOT] = ACTIONS(3362), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3574), + [anon_sym_DOT_DOT_LT] = ACTIONS(3574), + [aux_sym__immediate_decimal_token1] = ACTIONS(3578), + [anon_sym_null] = ACTIONS(3574), + [anon_sym_true] = ACTIONS(3574), + [anon_sym_false] = ACTIONS(3574), + [aux_sym__val_number_decimal_token1] = ACTIONS(3574), + [aux_sym__val_number_decimal_token2] = ACTIONS(3574), + [anon_sym_DOT2] = ACTIONS(3574), + [aux_sym__val_number_decimal_token3] = ACTIONS(3574), + [aux_sym__val_number_token1] = ACTIONS(3574), + [aux_sym__val_number_token2] = ACTIONS(3574), + [aux_sym__val_number_token3] = ACTIONS(3574), + [aux_sym__val_number_token4] = ACTIONS(3574), + [aux_sym__val_number_token5] = ACTIONS(3574), + [aux_sym__val_number_token6] = ACTIONS(3574), + [anon_sym_0b] = ACTIONS(3574), + [anon_sym_0o] = ACTIONS(3574), + [anon_sym_0x] = ACTIONS(3574), + [sym_val_date] = ACTIONS(3574), + [anon_sym_DQUOTE] = ACTIONS(3574), + [sym__str_single_quotes] = ACTIONS(3574), + [sym__str_back_ticks] = ACTIONS(3574), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3574), + [anon_sym_CARET] = ACTIONS(3574), + [aux_sym_unquoted_token2] = ACTIONS(3362), + [anon_sym_POUND] = ACTIONS(113), + }, + [1054] = { + [sym_comment] = STATE(1054), + [anon_sym_LBRACK] = ACTIONS(895), + [anon_sym_COMMA] = ACTIONS(895), + [anon_sym_LPAREN] = ACTIONS(895), + [anon_sym_DOLLAR] = ACTIONS(895), + [anon_sym_GT] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_in] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(895), + [anon_sym_RBRACE] = ACTIONS(895), + [anon_sym__] = ACTIONS(893), + [anon_sym_DOT_DOT] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(893), + [anon_sym_STAR_STAR] = ACTIONS(895), + [anon_sym_PLUS_PLUS] = ACTIONS(895), + [anon_sym_SLASH] = ACTIONS(893), + [anon_sym_mod] = ACTIONS(895), + [anon_sym_SLASH_SLASH] = ACTIONS(895), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_bit_DASHshl] = ACTIONS(895), + [anon_sym_bit_DASHshr] = ACTIONS(895), + [anon_sym_EQ_EQ] = ACTIONS(895), + [anon_sym_BANG_EQ] = ACTIONS(895), + [anon_sym_LT2] = ACTIONS(893), + [anon_sym_LT_EQ] = ACTIONS(895), + [anon_sym_GT_EQ] = ACTIONS(895), + [anon_sym_not_DASHin] = ACTIONS(895), + [anon_sym_starts_DASHwith] = ACTIONS(895), + [anon_sym_ends_DASHwith] = ACTIONS(895), + [anon_sym_EQ_TILDE] = ACTIONS(895), + [anon_sym_BANG_TILDE] = ACTIONS(895), + [anon_sym_bit_DASHand] = ACTIONS(895), + [anon_sym_bit_DASHxor] = ACTIONS(895), + [anon_sym_bit_DASHor] = ACTIONS(895), + [anon_sym_and] = ACTIONS(895), + [anon_sym_xor] = ACTIONS(895), + [anon_sym_or] = ACTIONS(895), + [anon_sym_DOT_DOT2] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ] = ACTIONS(893), + [anon_sym_DOT_DOT_LT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), + [anon_sym_DOT_DOT_LT2] = ACTIONS(895), + [anon_sym_null] = ACTIONS(895), + [anon_sym_true] = ACTIONS(895), + [anon_sym_false] = ACTIONS(895), + [aux_sym__val_number_decimal_token1] = ACTIONS(893), + [aux_sym__val_number_decimal_token2] = ACTIONS(895), + [anon_sym_DOT2] = ACTIONS(893), + [aux_sym__val_number_decimal_token3] = ACTIONS(895), + [aux_sym__val_number_token1] = ACTIONS(895), + [aux_sym__val_number_token2] = ACTIONS(895), + [aux_sym__val_number_token3] = ACTIONS(895), + [aux_sym__val_number_token4] = ACTIONS(895), + [aux_sym__val_number_token5] = ACTIONS(895), + [aux_sym__val_number_token6] = ACTIONS(895), + [anon_sym_0b] = ACTIONS(893), + [sym_filesize_unit] = ACTIONS(893), + [sym_duration_unit] = ACTIONS(895), + [anon_sym_0o] = ACTIONS(893), + [anon_sym_0x] = ACTIONS(893), + [sym_val_date] = ACTIONS(895), + [anon_sym_DQUOTE] = ACTIONS(895), + [sym__str_single_quotes] = ACTIONS(895), + [sym__str_back_ticks] = ACTIONS(895), + [anon_sym_err_GT] = ACTIONS(895), + [anon_sym_out_GT] = ACTIONS(895), + [anon_sym_e_GT] = ACTIONS(895), + [anon_sym_o_GT] = ACTIONS(895), + [anon_sym_err_PLUSout_GT] = ACTIONS(895), + [anon_sym_out_PLUSerr_GT] = ACTIONS(895), + [anon_sym_o_PLUSe_GT] = ACTIONS(895), + [anon_sym_e_PLUSo_GT] = ACTIONS(895), + [aux_sym_unquoted_token1] = ACTIONS(893), + [anon_sym_POUND] = ACTIONS(3), + }, + [1055] = { + [sym_comment] = STATE(1055), + [ts_builtin_sym_end] = ACTIONS(1026), + [anon_sym_export] = ACTIONS(1024), + [anon_sym_alias] = ACTIONS(1024), + [anon_sym_let] = ACTIONS(1024), + [anon_sym_let_DASHenv] = ACTIONS(1024), + [anon_sym_mut] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1024), + [sym_cmd_identifier] = ACTIONS(1024), + [anon_sym_LF] = ACTIONS(1026), + [anon_sym_def] = ACTIONS(1024), + [anon_sym_export_DASHenv] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1024), + [anon_sym_module] = ACTIONS(1024), + [anon_sym_use] = ACTIONS(1024), + [anon_sym_LBRACK] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_error] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_loop] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_match] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym_DOT_DOT] = ACTIONS(1024), + [anon_sym_try] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_source] = ACTIONS(1024), + [anon_sym_source_DASHenv] = ACTIONS(1024), + [anon_sym_register] = ACTIONS(1024), + [anon_sym_hide] = ACTIONS(1024), + [anon_sym_hide_DASHenv] = ACTIONS(1024), + [anon_sym_overlay] = ACTIONS(1024), + [anon_sym_as] = ACTIONS(1024), + [anon_sym_where] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(3533), + [anon_sym_not] = ACTIONS(1024), + [anon_sym_DOT_DOT2] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1026), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1026), + [anon_sym_null] = ACTIONS(1024), + [anon_sym_true] = ACTIONS(1024), + [anon_sym_false] = ACTIONS(1024), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1024), + [aux_sym__val_number_token1] = ACTIONS(1024), + [aux_sym__val_number_token2] = ACTIONS(1024), + [aux_sym__val_number_token3] = ACTIONS(1024), + [aux_sym__val_number_token4] = ACTIONS(1024), + [aux_sym__val_number_token5] = ACTIONS(1024), + [aux_sym__val_number_token6] = ACTIONS(1024), + [anon_sym_0b] = ACTIONS(1024), + [anon_sym_0o] = ACTIONS(1024), + [anon_sym_0x] = ACTIONS(1024), + [sym_val_date] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym__str_single_quotes] = ACTIONS(1024), + [sym__str_back_ticks] = ACTIONS(1024), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1024), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1024), + [anon_sym_CARET] = ACTIONS(1024), + [anon_sym_POUND] = ACTIONS(113), + }, + [1056] = { + [sym_comment] = STATE(1056), + [anon_sym_SEMI] = ACTIONS(901), + [anon_sym_LF] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(901), + [anon_sym_LPAREN] = ACTIONS(901), + [anon_sym_RPAREN] = ACTIONS(901), + [anon_sym_PIPE] = ACTIONS(901), + [anon_sym_DOLLAR] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_DASH_DASH] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_in] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(901), + [anon_sym_RBRACE] = ACTIONS(901), + [anon_sym_DOT_DOT] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_STAR_STAR] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(901), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_mod] = ACTIONS(901), + [anon_sym_SLASH_SLASH] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_bit_DASHshl] = ACTIONS(901), + [anon_sym_bit_DASHshr] = ACTIONS(901), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT2] = ACTIONS(901), + [anon_sym_LT_EQ] = ACTIONS(901), + [anon_sym_GT_EQ] = ACTIONS(901), + [anon_sym_not_DASHin] = ACTIONS(901), + [anon_sym_starts_DASHwith] = ACTIONS(901), + [anon_sym_ends_DASHwith] = ACTIONS(901), + [anon_sym_EQ_TILDE] = ACTIONS(901), + [anon_sym_BANG_TILDE] = ACTIONS(901), + [anon_sym_bit_DASHand] = ACTIONS(901), + [anon_sym_bit_DASHxor] = ACTIONS(901), + [anon_sym_bit_DASHor] = ACTIONS(901), + [anon_sym_and] = ACTIONS(901), + [anon_sym_xor] = ACTIONS(901), + [anon_sym_or] = ACTIONS(901), + [anon_sym_not] = ACTIONS(901), + [anon_sym_DOT_DOT2] = ACTIONS(901), + [anon_sym_DOT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ] = ACTIONS(901), + [anon_sym_DOT_DOT_LT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(903), + [anon_sym_DOT_DOT_LT2] = ACTIONS(903), + [aux_sym__immediate_decimal_token2] = ACTIONS(3580), + [anon_sym_null] = ACTIONS(901), + [anon_sym_true] = ACTIONS(901), + [anon_sym_false] = ACTIONS(901), + [aux_sym__val_number_decimal_token1] = ACTIONS(901), + [aux_sym__val_number_decimal_token2] = ACTIONS(901), + [anon_sym_DOT2] = ACTIONS(901), + [aux_sym__val_number_decimal_token3] = ACTIONS(901), + [aux_sym__val_number_token1] = ACTIONS(901), + [aux_sym__val_number_token2] = ACTIONS(901), + [aux_sym__val_number_token3] = ACTIONS(901), + [aux_sym__val_number_token4] = ACTIONS(901), + [aux_sym__val_number_token5] = ACTIONS(901), + [aux_sym__val_number_token6] = ACTIONS(901), + [anon_sym_0b] = ACTIONS(901), + [sym_filesize_unit] = ACTIONS(901), + [sym_duration_unit] = ACTIONS(903), + [anon_sym_0o] = ACTIONS(901), + [anon_sym_0x] = ACTIONS(901), + [sym_val_date] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [sym__str_single_quotes] = ACTIONS(901), + [sym__str_back_ticks] = ACTIONS(901), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(901), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(901), + [aux_sym_unquoted_token5] = ACTIONS(901), + [anon_sym_POUND] = ACTIONS(113), + }, + [1057] = { + [sym_comment] = STATE(1057), + [anon_sym_export] = ACTIONS(1047), + [anon_sym_alias] = ACTIONS(1047), + [anon_sym_let] = ACTIONS(1047), + [anon_sym_let_DASHenv] = ACTIONS(1047), + [anon_sym_mut] = ACTIONS(1047), + [anon_sym_const] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1047), + [sym_cmd_identifier] = ACTIONS(1047), + [anon_sym_LF] = ACTIONS(1049), + [anon_sym_def] = ACTIONS(1047), + [anon_sym_export_DASHenv] = ACTIONS(1047), + [anon_sym_extern] = ACTIONS(1047), + [anon_sym_module] = ACTIONS(1047), + [anon_sym_use] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1047), + [anon_sym_RPAREN] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1047), + [anon_sym_error] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_break] = ACTIONS(1047), + [anon_sym_continue] = ACTIONS(1047), + [anon_sym_for] = ACTIONS(1047), + [anon_sym_loop] = ACTIONS(1047), + [anon_sym_while] = ACTIONS(1047), + [anon_sym_do] = ACTIONS(1047), + [anon_sym_if] = ACTIONS(1047), + [anon_sym_match] = ACTIONS(1047), + [anon_sym_LBRACE] = ACTIONS(1047), + [anon_sym_RBRACE] = ACTIONS(1047), + [anon_sym_DOT_DOT] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1047), + [anon_sym_return] = ACTIONS(1047), + [anon_sym_source] = ACTIONS(1047), + [anon_sym_source_DASHenv] = ACTIONS(1047), + [anon_sym_register] = ACTIONS(1047), + [anon_sym_hide] = ACTIONS(1047), + [anon_sym_hide_DASHenv] = ACTIONS(1047), + [anon_sym_overlay] = ACTIONS(1047), + [anon_sym_as] = ACTIONS(1047), + [anon_sym_where] = ACTIONS(1047), + [anon_sym_not] = ACTIONS(1047), + [anon_sym_DOT_DOT2] = ACTIONS(1047), + [anon_sym_DOT] = ACTIONS(1047), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1047), + [anon_sym_DOT_DOT_LT] = ACTIONS(1047), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1049), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1049), + [anon_sym_null] = ACTIONS(1047), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [aux_sym__val_number_decimal_token1] = ACTIONS(1047), + [aux_sym__val_number_decimal_token2] = ACTIONS(1047), + [anon_sym_DOT2] = ACTIONS(1047), + [aux_sym__val_number_decimal_token3] = ACTIONS(1047), + [aux_sym__val_number_token1] = ACTIONS(1047), + [aux_sym__val_number_token2] = ACTIONS(1047), + [aux_sym__val_number_token3] = ACTIONS(1047), + [aux_sym__val_number_token4] = ACTIONS(1047), + [aux_sym__val_number_token5] = ACTIONS(1047), + [aux_sym__val_number_token6] = ACTIONS(1047), + [anon_sym_0b] = ACTIONS(1047), + [anon_sym_0o] = ACTIONS(1047), + [anon_sym_0x] = ACTIONS(1047), + [sym_val_date] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1047), + [sym__str_single_quotes] = ACTIONS(1047), + [sym__str_back_ticks] = ACTIONS(1047), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1047), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1047), + [anon_sym_CARET] = ACTIONS(1047), + [anon_sym_POUND] = ACTIONS(113), + }, + [1058] = { + [sym_comment] = STATE(1058), + [ts_builtin_sym_end] = ACTIONS(2358), + [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), + [anon_sym_SEMI] = ACTIONS(2356), + [sym_cmd_identifier] = ACTIONS(2356), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2356), + [anon_sym_DOLLAR] = ACTIONS(2356), + [anon_sym_error] = ACTIONS(2356), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_loop] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_match] = ACTIONS(2356), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_DOT_DOT] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_source] = ACTIONS(2356), + [anon_sym_source_DASHenv] = ACTIONS(2356), + [anon_sym_register] = 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_where] = ACTIONS(2356), + [anon_sym_not] = ACTIONS(2356), + [anon_sym_DOT_DOT2] = ACTIONS(2356), + [anon_sym_DOT] = ACTIONS(3582), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2356), + [anon_sym_DOT_DOT_LT] = ACTIONS(2356), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2358), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2358), + [aux_sym__immediate_decimal_token2] = ACTIONS(3584), + [anon_sym_null] = ACTIONS(2356), + [anon_sym_true] = ACTIONS(2356), + [anon_sym_false] = ACTIONS(2356), + [aux_sym__val_number_decimal_token1] = ACTIONS(2356), + [aux_sym__val_number_decimal_token2] = ACTIONS(2356), + [anon_sym_DOT2] = ACTIONS(2356), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2356), + [anon_sym_0o] = ACTIONS(2356), + [anon_sym_0x] = ACTIONS(2356), + [sym_val_date] = 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_CARET] = ACTIONS(2356), + [anon_sym_POUND] = ACTIONS(113), + }, + [1059] = { + [sym_ctrl_do] = STATE(8871), + [sym_ctrl_if] = STATE(8871), + [sym_ctrl_match] = STATE(8871), + [sym_ctrl_try] = STATE(8871), + [sym__expression] = STATE(8871), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(4804), + [sym__var] = STATE(4386), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_comment] = STATE(1059), + [anon_sym_SEMI] = ACTIONS(3586), + [anon_sym_LF] = ACTIONS(3588), + [anon_sym_COLON] = ACTIONS(3590), + [anon_sym_LBRACK] = ACTIONS(3592), + [anon_sym_LPAREN] = ACTIONS(3594), + [anon_sym_PIPE] = ACTIONS(3586), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(3596), + [anon_sym_RBRACE] = ACTIONS(3586), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_try] = ACTIONS(411), + [anon_sym_not] = ACTIONS(191), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3598), + [anon_sym_DOT_DOT_LT] = ACTIONS(3598), + [anon_sym_null] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [aux_sym__val_number_decimal_token1] = ACTIONS(199), + [aux_sym__val_number_decimal_token2] = ACTIONS(199), + [anon_sym_DOT2] = ACTIONS(203), + [aux_sym__val_number_decimal_token3] = ACTIONS(3600), + [aux_sym__val_number_token1] = ACTIONS(209), + [aux_sym__val_number_token2] = ACTIONS(209), + [aux_sym__val_number_token3] = ACTIONS(209), + [aux_sym__val_number_token4] = ACTIONS(209), + [aux_sym__val_number_token5] = ACTIONS(209), + [aux_sym__val_number_token6] = ACTIONS(209), + [anon_sym_0b] = ACTIONS(211), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(3602), + [anon_sym_DQUOTE] = ACTIONS(3604), + [sym__str_single_quotes] = ACTIONS(3606), + [sym__str_back_ticks] = ACTIONS(3606), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3608), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3610), + [anon_sym_POUND] = ACTIONS(113), + }, + [1060] = { + [sym_comment] = STATE(1060), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_alias] = ACTIONS(1068), + [anon_sym_let] = ACTIONS(1068), + [anon_sym_let_DASHenv] = ACTIONS(1068), + [anon_sym_mut] = ACTIONS(1068), + [anon_sym_const] = ACTIONS(1068), + [anon_sym_SEMI] = ACTIONS(1068), + [sym_cmd_identifier] = ACTIONS(1068), + [anon_sym_LF] = ACTIONS(1070), + [anon_sym_def] = ACTIONS(1068), + [anon_sym_export_DASHenv] = ACTIONS(1068), + [anon_sym_extern] = ACTIONS(1068), + [anon_sym_module] = ACTIONS(1068), + [anon_sym_use] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(1068), + [anon_sym_LPAREN] = ACTIONS(1068), + [anon_sym_RPAREN] = ACTIONS(1068), + [anon_sym_DOLLAR] = ACTIONS(1068), + [anon_sym_error] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1068), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_break] = ACTIONS(1068), + [anon_sym_continue] = ACTIONS(1068), + [anon_sym_for] = ACTIONS(1068), + [anon_sym_loop] = ACTIONS(1068), + [anon_sym_while] = ACTIONS(1068), + [anon_sym_do] = ACTIONS(1068), + [anon_sym_if] = ACTIONS(1068), + [anon_sym_match] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_RBRACE] = ACTIONS(1068), + [anon_sym_DOT_DOT] = ACTIONS(1068), + [anon_sym_try] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1068), + [anon_sym_source] = ACTIONS(1068), + [anon_sym_source_DASHenv] = ACTIONS(1068), + [anon_sym_register] = ACTIONS(1068), + [anon_sym_hide] = ACTIONS(1068), + [anon_sym_hide_DASHenv] = ACTIONS(1068), + [anon_sym_overlay] = ACTIONS(1068), + [anon_sym_as] = ACTIONS(1068), + [anon_sym_where] = ACTIONS(1068), + [anon_sym_not] = ACTIONS(1068), + [anon_sym_DOT_DOT2] = ACTIONS(1068), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1068), + [anon_sym_DOT_DOT_LT] = ACTIONS(1068), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1070), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1070), + [anon_sym_null] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1068), + [anon_sym_false] = ACTIONS(1068), + [aux_sym__val_number_decimal_token1] = ACTIONS(1068), + [aux_sym__val_number_decimal_token2] = ACTIONS(1068), + [anon_sym_DOT2] = ACTIONS(1068), + [aux_sym__val_number_decimal_token3] = ACTIONS(1068), + [aux_sym__val_number_token1] = ACTIONS(1068), + [aux_sym__val_number_token2] = ACTIONS(1068), + [aux_sym__val_number_token3] = ACTIONS(1068), + [aux_sym__val_number_token4] = ACTIONS(1068), + [aux_sym__val_number_token5] = ACTIONS(1068), + [aux_sym__val_number_token6] = ACTIONS(1068), + [anon_sym_0b] = ACTIONS(1068), + [anon_sym_0o] = ACTIONS(1068), + [anon_sym_0x] = ACTIONS(1068), + [sym_val_date] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(1068), + [sym__str_single_quotes] = ACTIONS(1068), + [sym__str_back_ticks] = ACTIONS(1068), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1068), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1068), + [anon_sym_CARET] = ACTIONS(1068), + [anon_sym_POUND] = ACTIONS(113), + }, + [1061] = { + [sym_comment] = STATE(1061), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_alias] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_let_DASHenv] = ACTIONS(2229), + [anon_sym_mut] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2229), + [sym_cmd_identifier] = ACTIONS(2229), + [anon_sym_LF] = ACTIONS(2231), + [anon_sym_def] = ACTIONS(2229), + [anon_sym_export_DASHenv] = ACTIONS(2229), + [anon_sym_extern] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_RPAREN] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2229), + [anon_sym_error] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_loop] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_RBRACE] = ACTIONS(2229), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_source] = ACTIONS(2229), + [anon_sym_source_DASHenv] = ACTIONS(2229), + [anon_sym_register] = ACTIONS(2229), + [anon_sym_hide] = ACTIONS(2229), + [anon_sym_hide_DASHenv] = ACTIONS(2229), + [anon_sym_overlay] = ACTIONS(2229), + [anon_sym_as] = ACTIONS(2229), + [anon_sym_where] = ACTIONS(2229), + [anon_sym_not] = ACTIONS(2229), + [anon_sym_LPAREN2] = ACTIONS(2231), + [anon_sym_DOT] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2229), + [anon_sym_DOT_DOT_LT] = ACTIONS(2229), + [anon_sym_null] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [aux_sym__val_number_decimal_token1] = ACTIONS(2229), + [aux_sym__val_number_decimal_token2] = ACTIONS(2229), + [anon_sym_DOT2] = ACTIONS(2229), + [aux_sym__val_number_decimal_token3] = ACTIONS(2229), + [aux_sym__val_number_token1] = ACTIONS(2229), + [aux_sym__val_number_token2] = ACTIONS(2229), + [aux_sym__val_number_token3] = ACTIONS(2229), + [aux_sym__val_number_token4] = ACTIONS(2229), + [aux_sym__val_number_token5] = ACTIONS(2229), + [aux_sym__val_number_token6] = ACTIONS(2229), + [anon_sym_0b] = ACTIONS(2229), + [anon_sym_0o] = ACTIONS(2229), + [anon_sym_0x] = ACTIONS(2229), + [sym_val_date] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2229), + [anon_sym_CARET] = ACTIONS(2229), + [aux_sym_unquoted_token2] = ACTIONS(2229), + [anon_sym_POUND] = ACTIONS(113), + }, + [1062] = { + [sym_path] = STATE(1344), + [sym_comment] = STATE(1062), + [aux_sym_cell_path_repeat1] = STATE(1062), + [anon_sym_LBRACK] = ACTIONS(985), + [anon_sym_COMMA] = ACTIONS(985), + [anon_sym_RBRACK] = ACTIONS(985), + [anon_sym_LPAREN] = ACTIONS(985), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_GT] = ACTIONS(985), + [anon_sym_DASH_DASH] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_in] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(985), + [anon_sym_DOT_DOT] = ACTIONS(985), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_STAR_STAR] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(985), + [anon_sym_SLASH] = ACTIONS(985), + [anon_sym_mod] = ACTIONS(985), + [anon_sym_SLASH_SLASH] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_bit_DASHshl] = ACTIONS(985), + [anon_sym_bit_DASHshr] = ACTIONS(985), + [anon_sym_EQ_EQ] = ACTIONS(985), + [anon_sym_BANG_EQ] = ACTIONS(985), + [anon_sym_LT2] = ACTIONS(985), + [anon_sym_LT_EQ] = ACTIONS(985), + [anon_sym_GT_EQ] = ACTIONS(985), + [anon_sym_not_DASHin] = ACTIONS(985), + [anon_sym_starts_DASHwith] = ACTIONS(985), + [anon_sym_ends_DASHwith] = ACTIONS(985), + [anon_sym_EQ_TILDE] = ACTIONS(985), + [anon_sym_BANG_TILDE] = ACTIONS(985), + [anon_sym_bit_DASHand] = ACTIONS(985), + [anon_sym_bit_DASHxor] = ACTIONS(985), + [anon_sym_bit_DASHor] = ACTIONS(985), + [anon_sym_and] = ACTIONS(985), + [anon_sym_xor] = ACTIONS(985), + [anon_sym_or] = ACTIONS(985), + [anon_sym_DOT] = ACTIONS(3612), + [anon_sym_DOT_DOT_EQ] = ACTIONS(985), + [anon_sym_DOT_DOT_LT] = ACTIONS(985), + [anon_sym_null] = ACTIONS(985), + [anon_sym_true] = ACTIONS(985), + [anon_sym_false] = ACTIONS(985), + [aux_sym__val_number_decimal_token1] = ACTIONS(985), + [aux_sym__val_number_decimal_token2] = ACTIONS(985), + [anon_sym_DOT2] = ACTIONS(985), + [aux_sym__val_number_decimal_token3] = ACTIONS(985), + [aux_sym__val_number_token1] = ACTIONS(985), + [aux_sym__val_number_token2] = ACTIONS(985), + [aux_sym__val_number_token3] = ACTIONS(985), + [aux_sym__val_number_token4] = ACTIONS(985), + [aux_sym__val_number_token5] = ACTIONS(985), + [aux_sym__val_number_token6] = ACTIONS(985), + [anon_sym_0b] = ACTIONS(985), + [anon_sym_0o] = ACTIONS(985), + [anon_sym_0x] = ACTIONS(985), + [sym_val_date] = ACTIONS(985), + [anon_sym_DQUOTE] = ACTIONS(985), + [sym__str_single_quotes] = ACTIONS(985), + [sym__str_back_ticks] = ACTIONS(985), + [sym__entry_separator] = ACTIONS(987), + [anon_sym_err_GT] = ACTIONS(985), + [anon_sym_out_GT] = ACTIONS(985), + [anon_sym_e_GT] = ACTIONS(985), + [anon_sym_o_GT] = ACTIONS(985), + [anon_sym_err_PLUSout_GT] = ACTIONS(985), + [anon_sym_out_PLUSerr_GT] = ACTIONS(985), + [anon_sym_o_PLUSe_GT] = ACTIONS(985), + [anon_sym_e_PLUSo_GT] = ACTIONS(985), + [aux_sym__unquoted_in_list_token1] = ACTIONS(985), + [anon_sym_POUND] = ACTIONS(113), + }, + [1063] = { + [sym_comment] = STATE(1063), + [anon_sym_LBRACK] = ACTIONS(1049), + [anon_sym_COMMA] = ACTIONS(1049), + [anon_sym_LPAREN] = ACTIONS(1049), + [anon_sym_DOLLAR] = ACTIONS(1049), + [anon_sym_GT] = ACTIONS(1047), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_in] = ACTIONS(1047), + [anon_sym_LBRACE] = ACTIONS(1049), + [anon_sym_RBRACE] = ACTIONS(1049), + [anon_sym__] = ACTIONS(1047), + [anon_sym_DOT_DOT] = ACTIONS(1047), + [anon_sym_STAR] = ACTIONS(1047), + [anon_sym_STAR_STAR] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1049), + [anon_sym_SLASH] = ACTIONS(1047), + [anon_sym_mod] = ACTIONS(1049), + [anon_sym_SLASH_SLASH] = ACTIONS(1049), + [anon_sym_PLUS] = ACTIONS(1047), + [anon_sym_bit_DASHshl] = ACTIONS(1049), + [anon_sym_bit_DASHshr] = ACTIONS(1049), + [anon_sym_EQ_EQ] = ACTIONS(1049), + [anon_sym_BANG_EQ] = ACTIONS(1049), + [anon_sym_LT2] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1049), + [anon_sym_GT_EQ] = ACTIONS(1049), + [anon_sym_not_DASHin] = ACTIONS(1049), + [anon_sym_starts_DASHwith] = ACTIONS(1049), + [anon_sym_ends_DASHwith] = ACTIONS(1049), + [anon_sym_EQ_TILDE] = ACTIONS(1049), + [anon_sym_BANG_TILDE] = ACTIONS(1049), + [anon_sym_bit_DASHand] = ACTIONS(1049), + [anon_sym_bit_DASHxor] = ACTIONS(1049), + [anon_sym_bit_DASHor] = ACTIONS(1049), + [anon_sym_and] = ACTIONS(1049), + [anon_sym_xor] = ACTIONS(1049), + [anon_sym_or] = ACTIONS(1049), + [anon_sym_DOT_DOT2] = ACTIONS(1047), + [anon_sym_DOT] = ACTIONS(1047), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1047), + [anon_sym_DOT_DOT_LT] = ACTIONS(1047), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1049), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1049), + [anon_sym_null] = ACTIONS(1049), + [anon_sym_true] = ACTIONS(1049), + [anon_sym_false] = ACTIONS(1049), + [aux_sym__val_number_decimal_token1] = ACTIONS(1047), + [aux_sym__val_number_decimal_token2] = ACTIONS(1049), + [anon_sym_DOT2] = ACTIONS(1047), + [aux_sym__val_number_decimal_token3] = ACTIONS(1049), + [aux_sym__val_number_token1] = ACTIONS(1049), + [aux_sym__val_number_token2] = ACTIONS(1049), + [aux_sym__val_number_token3] = ACTIONS(1049), + [aux_sym__val_number_token4] = ACTIONS(1049), + [aux_sym__val_number_token5] = ACTIONS(1049), + [aux_sym__val_number_token6] = ACTIONS(1049), + [anon_sym_0b] = ACTIONS(1047), + [anon_sym_0o] = ACTIONS(1047), + [anon_sym_0x] = ACTIONS(1047), + [sym_val_date] = ACTIONS(1049), + [anon_sym_DQUOTE] = ACTIONS(1049), + [sym__str_single_quotes] = ACTIONS(1049), + [sym__str_back_ticks] = ACTIONS(1049), + [anon_sym_err_GT] = ACTIONS(1049), + [anon_sym_out_GT] = ACTIONS(1049), + [anon_sym_e_GT] = ACTIONS(1049), + [anon_sym_o_GT] = ACTIONS(1049), + [anon_sym_err_PLUSout_GT] = ACTIONS(1049), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1049), + [anon_sym_o_PLUSe_GT] = ACTIONS(1049), + [anon_sym_e_PLUSo_GT] = ACTIONS(1049), + [aux_sym_unquoted_token1] = ACTIONS(1047), + [anon_sym_POUND] = ACTIONS(3), + }, + [1064] = { + [sym_comment] = STATE(1064), + [anon_sym_SEMI] = ACTIONS(938), + [anon_sym_LF] = ACTIONS(940), + [anon_sym_LBRACK] = ACTIONS(938), [anon_sym_LPAREN] = ACTIONS(938), + [anon_sym_RPAREN] = ACTIONS(938), + [anon_sym_PIPE] = ACTIONS(938), [anon_sym_DOLLAR] = ACTIONS(938), - [anon_sym_error] = ACTIONS(936), - [anon_sym_list] = ACTIONS(936), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_make] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_else] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_in] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(938), [anon_sym_RBRACE] = ACTIONS(938), - [anon_sym_try] = ACTIONS(936), - [anon_sym_catch] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_new] = ACTIONS(936), - [anon_sym_as] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), [anon_sym_STAR_STAR] = ACTIONS(938), [anon_sym_PLUS_PLUS] = ACTIONS(938), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(936), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(938), [anon_sym_SLASH_SLASH] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(936), - [anon_sym_bit_DASHshr] = ACTIONS(936), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_bit_DASHshl] = ACTIONS(938), + [anon_sym_bit_DASHshr] = ACTIONS(938), [anon_sym_EQ_EQ] = ACTIONS(938), [anon_sym_BANG_EQ] = ACTIONS(938), - [anon_sym_LT2] = ACTIONS(936), + [anon_sym_LT2] = ACTIONS(938), [anon_sym_LT_EQ] = ACTIONS(938), [anon_sym_GT_EQ] = ACTIONS(938), - [anon_sym_not_DASHin] = ACTIONS(936), - [anon_sym_starts_DASHwith] = ACTIONS(936), - [anon_sym_ends_DASHwith] = ACTIONS(936), + [anon_sym_not_DASHin] = ACTIONS(938), + [anon_sym_starts_DASHwith] = ACTIONS(938), + [anon_sym_ends_DASHwith] = ACTIONS(938), [anon_sym_EQ_TILDE] = ACTIONS(938), [anon_sym_BANG_TILDE] = ACTIONS(938), - [anon_sym_bit_DASHand] = ACTIONS(936), - [anon_sym_bit_DASHxor] = ACTIONS(936), - [anon_sym_bit_DASHor] = ACTIONS(936), - [anon_sym_and] = ACTIONS(936), - [anon_sym_xor] = ACTIONS(936), - [anon_sym_or] = ACTIONS(936), - [aux_sym__immediate_decimal_token1] = ACTIONS(1726), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), + [anon_sym_bit_DASHand] = ACTIONS(938), + [anon_sym_bit_DASHxor] = ACTIONS(938), + [anon_sym_bit_DASHor] = ACTIONS(938), + [anon_sym_and] = ACTIONS(938), + [anon_sym_xor] = ACTIONS(938), + [anon_sym_or] = ACTIONS(938), + [anon_sym_not] = ACTIONS(938), + [anon_sym_DOT_DOT2] = ACTIONS(3615), + [anon_sym_DOT] = ACTIONS(3617), + [anon_sym_DOT_DOT_EQ] = ACTIONS(938), + [anon_sym_DOT_DOT_LT] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3619), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3619), + [anon_sym_null] = ACTIONS(938), + [anon_sym_true] = ACTIONS(938), + [anon_sym_false] = ACTIONS(938), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), [aux_sym__val_number_decimal_token2] = ACTIONS(938), [anon_sym_DOT2] = ACTIONS(938), [aux_sym__val_number_decimal_token3] = ACTIONS(938), [aux_sym__val_number_token1] = ACTIONS(938), [aux_sym__val_number_token2] = ACTIONS(938), [aux_sym__val_number_token3] = ACTIONS(938), - [aux_sym__val_number_token4] = ACTIONS(936), + [aux_sym__val_number_token4] = ACTIONS(938), [aux_sym__val_number_token5] = ACTIONS(938), - [aux_sym__val_number_token6] = ACTIONS(936), + [aux_sym__val_number_token6] = ACTIONS(938), + [anon_sym_0b] = ACTIONS(938), + [sym_filesize_unit] = ACTIONS(3621), + [sym_duration_unit] = ACTIONS(3623), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = ACTIONS(938), [anon_sym_DQUOTE] = ACTIONS(938), [sym__str_single_quotes] = ACTIONS(938), [sym__str_back_ticks] = ACTIONS(938), - [aux_sym__record_key_token2] = ACTIONS(936), - [aux_sym_unquoted_token2] = ACTIONS(1728), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(938), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(938), + [aux_sym_unquoted_token5] = ACTIONS(3625), + [anon_sym_POUND] = ACTIONS(113), }, - [867] = { - [sym_comment] = STATE(867), - [anon_sym_export] = ACTIONS(1308), - [anon_sym_alias] = ACTIONS(1308), - [anon_sym_let] = ACTIONS(1308), - [anon_sym_let_DASHenv] = ACTIONS(1308), - [anon_sym_mut] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [sym_cmd_identifier] = ACTIONS(1308), - [anon_sym_def] = ACTIONS(1308), - [anon_sym_export_DASHenv] = ACTIONS(1308), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym_module] = ACTIONS(1308), - [anon_sym_use] = ACTIONS(1308), - [anon_sym_LPAREN] = ACTIONS(1308), - [anon_sym_DOLLAR] = ACTIONS(1308), - [anon_sym_error] = ACTIONS(1308), - [anon_sym_list] = ACTIONS(1308), - [anon_sym_GT] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_break] = ACTIONS(1308), - [anon_sym_continue] = ACTIONS(1308), - [anon_sym_for] = ACTIONS(1308), - [anon_sym_in] = ACTIONS(1308), - [anon_sym_loop] = ACTIONS(1308), - [anon_sym_make] = ACTIONS(1308), - [anon_sym_while] = ACTIONS(1308), - [anon_sym_do] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_else] = ACTIONS(1308), - [anon_sym_match] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_try] = ACTIONS(1308), - [anon_sym_catch] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1308), - [anon_sym_source] = ACTIONS(1308), - [anon_sym_source_DASHenv] = ACTIONS(1308), - [anon_sym_register] = ACTIONS(1308), - [anon_sym_hide] = ACTIONS(1308), - [anon_sym_hide_DASHenv] = ACTIONS(1308), - [anon_sym_overlay] = ACTIONS(1308), - [anon_sym_new] = ACTIONS(1308), - [anon_sym_as] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_STAR_STAR] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(1308), - [anon_sym_mod] = ACTIONS(1308), - [anon_sym_SLASH_SLASH] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_bit_DASHshl] = ACTIONS(1308), - [anon_sym_bit_DASHshr] = ACTIONS(1308), - [anon_sym_EQ_EQ] = ACTIONS(1308), - [anon_sym_BANG_EQ] = ACTIONS(1308), - [anon_sym_LT2] = ACTIONS(1308), - [anon_sym_LT_EQ] = ACTIONS(1308), - [anon_sym_GT_EQ] = ACTIONS(1308), - [anon_sym_not_DASHin] = ACTIONS(1308), - [anon_sym_starts_DASHwith] = ACTIONS(1308), - [anon_sym_ends_DASHwith] = ACTIONS(1308), - [anon_sym_EQ_TILDE] = ACTIONS(1308), - [anon_sym_BANG_TILDE] = ACTIONS(1308), - [anon_sym_bit_DASHand] = ACTIONS(1308), - [anon_sym_bit_DASHxor] = ACTIONS(1308), - [anon_sym_bit_DASHor] = ACTIONS(1308), - [anon_sym_and] = ACTIONS(1308), - [anon_sym_xor] = ACTIONS(1308), - [anon_sym_or] = ACTIONS(1308), - [aux_sym__val_number_decimal_token1] = ACTIONS(1308), - [aux_sym__val_number_decimal_token2] = ACTIONS(1308), - [anon_sym_DOT2] = ACTIONS(1308), - [aux_sym__val_number_decimal_token3] = ACTIONS(1308), - [aux_sym__val_number_token1] = ACTIONS(1308), - [aux_sym__val_number_token2] = ACTIONS(1308), - [aux_sym__val_number_token3] = ACTIONS(1308), - [aux_sym__val_number_token4] = ACTIONS(1308), - [aux_sym__val_number_token5] = ACTIONS(1308), - [aux_sym__val_number_token6] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym__str_single_quotes] = ACTIONS(1308), - [sym__str_back_ticks] = ACTIONS(1308), - [sym__entry_separator] = ACTIONS(1310), - [aux_sym__record_key_token2] = ACTIONS(1308), + [1065] = { + [sym_comment] = STATE(1065), + [ts_builtin_sym_end] = ACTIONS(913), + [anon_sym_SEMI] = ACTIONS(911), + [anon_sym_LF] = ACTIONS(913), + [anon_sym_LBRACK] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(911), + [anon_sym_DOLLAR] = ACTIONS(911), + [anon_sym_GT] = ACTIONS(911), + [anon_sym_DASH_DASH] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_in] = ACTIONS(911), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(911), + [anon_sym_STAR_STAR] = ACTIONS(911), + [anon_sym_PLUS_PLUS] = ACTIONS(911), + [anon_sym_SLASH] = ACTIONS(911), + [anon_sym_mod] = ACTIONS(911), + [anon_sym_SLASH_SLASH] = ACTIONS(911), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_bit_DASHshl] = ACTIONS(911), + [anon_sym_bit_DASHshr] = ACTIONS(911), + [anon_sym_EQ_EQ] = ACTIONS(911), + [anon_sym_BANG_EQ] = ACTIONS(911), + [anon_sym_LT2] = ACTIONS(911), + [anon_sym_LT_EQ] = ACTIONS(911), + [anon_sym_GT_EQ] = ACTIONS(911), + [anon_sym_not_DASHin] = ACTIONS(911), + [anon_sym_starts_DASHwith] = ACTIONS(911), + [anon_sym_ends_DASHwith] = ACTIONS(911), + [anon_sym_EQ_TILDE] = ACTIONS(911), + [anon_sym_BANG_TILDE] = ACTIONS(911), + [anon_sym_bit_DASHand] = ACTIONS(911), + [anon_sym_bit_DASHxor] = ACTIONS(911), + [anon_sym_bit_DASHor] = ACTIONS(911), + [anon_sym_and] = ACTIONS(911), + [anon_sym_xor] = ACTIONS(911), + [anon_sym_or] = ACTIONS(911), + [anon_sym_not] = ACTIONS(911), + [anon_sym_DOT_DOT2] = ACTIONS(911), + [anon_sym_DOT] = ACTIONS(3627), + [anon_sym_DOT_DOT_EQ] = ACTIONS(911), + [anon_sym_DOT_DOT_LT] = ACTIONS(911), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(913), + [anon_sym_DOT_DOT_LT2] = ACTIONS(913), + [aux_sym__immediate_decimal_token2] = ACTIONS(3630), + [anon_sym_null] = ACTIONS(911), + [anon_sym_true] = ACTIONS(911), + [anon_sym_false] = ACTIONS(911), + [aux_sym__val_number_decimal_token1] = ACTIONS(911), + [aux_sym__val_number_decimal_token2] = ACTIONS(911), + [anon_sym_DOT2] = ACTIONS(911), + [aux_sym__val_number_decimal_token3] = ACTIONS(911), + [aux_sym__val_number_token1] = ACTIONS(911), + [aux_sym__val_number_token2] = ACTIONS(911), + [aux_sym__val_number_token3] = ACTIONS(911), + [aux_sym__val_number_token4] = ACTIONS(911), + [aux_sym__val_number_token5] = ACTIONS(911), + [aux_sym__val_number_token6] = ACTIONS(911), + [anon_sym_0b] = ACTIONS(911), + [sym_filesize_unit] = ACTIONS(911), + [sym_duration_unit] = ACTIONS(913), + [anon_sym_0o] = ACTIONS(911), + [anon_sym_0x] = ACTIONS(911), + [sym_val_date] = ACTIONS(911), + [anon_sym_DQUOTE] = ACTIONS(911), + [sym__str_single_quotes] = ACTIONS(911), + [sym__str_back_ticks] = ACTIONS(911), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(911), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(911), + [aux_sym_unquoted_token5] = ACTIONS(911), [anon_sym_POUND] = ACTIONS(113), }, - [868] = { - [sym_comment] = STATE(868), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_alias] = ACTIONS(1406), - [anon_sym_let] = ACTIONS(1406), - [anon_sym_let_DASHenv] = ACTIONS(1406), - [anon_sym_mut] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [sym_cmd_identifier] = ACTIONS(1406), - [anon_sym_def] = ACTIONS(1406), - [anon_sym_export_DASHenv] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_use] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1406), - [anon_sym_DOLLAR] = ACTIONS(1406), - [anon_sym_error] = ACTIONS(1406), - [anon_sym_list] = ACTIONS(1406), - [anon_sym_GT] = ACTIONS(1406), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_in] = ACTIONS(1406), - [anon_sym_loop] = ACTIONS(1406), - [anon_sym_make] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_else] = ACTIONS(1406), - [anon_sym_match] = ACTIONS(1406), - [anon_sym_RBRACE] = ACTIONS(1406), - [anon_sym_try] = ACTIONS(1406), - [anon_sym_catch] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_source] = ACTIONS(1406), - [anon_sym_source_DASHenv] = ACTIONS(1406), - [anon_sym_register] = ACTIONS(1406), - [anon_sym_hide] = ACTIONS(1406), - [anon_sym_hide_DASHenv] = ACTIONS(1406), - [anon_sym_overlay] = ACTIONS(1406), - [anon_sym_new] = ACTIONS(1406), - [anon_sym_as] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1406), - [anon_sym_STAR_STAR] = ACTIONS(1406), - [anon_sym_PLUS_PLUS] = ACTIONS(1406), - [anon_sym_SLASH] = ACTIONS(1406), - [anon_sym_mod] = ACTIONS(1406), - [anon_sym_SLASH_SLASH] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_bit_DASHshl] = ACTIONS(1406), - [anon_sym_bit_DASHshr] = ACTIONS(1406), - [anon_sym_EQ_EQ] = ACTIONS(1406), - [anon_sym_BANG_EQ] = ACTIONS(1406), - [anon_sym_LT2] = ACTIONS(1406), - [anon_sym_LT_EQ] = ACTIONS(1406), - [anon_sym_GT_EQ] = ACTIONS(1406), - [anon_sym_not_DASHin] = ACTIONS(1406), - [anon_sym_starts_DASHwith] = ACTIONS(1406), - [anon_sym_ends_DASHwith] = ACTIONS(1406), - [anon_sym_EQ_TILDE] = ACTIONS(1406), - [anon_sym_BANG_TILDE] = ACTIONS(1406), - [anon_sym_bit_DASHand] = ACTIONS(1406), - [anon_sym_bit_DASHxor] = ACTIONS(1406), - [anon_sym_bit_DASHor] = ACTIONS(1406), - [anon_sym_and] = ACTIONS(1406), - [anon_sym_xor] = ACTIONS(1406), - [anon_sym_or] = ACTIONS(1406), - [aux_sym__val_number_decimal_token1] = ACTIONS(1406), - [aux_sym__val_number_decimal_token2] = ACTIONS(1406), - [anon_sym_DOT2] = ACTIONS(1406), - [aux_sym__val_number_decimal_token3] = ACTIONS(1406), - [aux_sym__val_number_token1] = ACTIONS(1406), - [aux_sym__val_number_token2] = ACTIONS(1406), - [aux_sym__val_number_token3] = ACTIONS(1406), - [aux_sym__val_number_token4] = ACTIONS(1406), - [aux_sym__val_number_token5] = ACTIONS(1406), - [aux_sym__val_number_token6] = ACTIONS(1406), - [anon_sym_DQUOTE] = ACTIONS(1406), - [sym__str_single_quotes] = ACTIONS(1406), - [sym__str_back_ticks] = ACTIONS(1406), - [sym__entry_separator] = ACTIONS(1408), - [aux_sym__record_key_token2] = ACTIONS(1406), + [1066] = { + [sym_cell_path] = STATE(1419), + [sym_path] = STATE(1108), + [sym_comment] = STATE(1066), + [anon_sym_export] = ACTIONS(1085), + [anon_sym_alias] = ACTIONS(1085), + [anon_sym_let] = ACTIONS(1085), + [anon_sym_let_DASHenv] = ACTIONS(1085), + [anon_sym_mut] = ACTIONS(1085), + [anon_sym_const] = ACTIONS(1085), + [anon_sym_SEMI] = ACTIONS(1085), + [sym_cmd_identifier] = ACTIONS(1085), + [anon_sym_LF] = ACTIONS(1087), + [anon_sym_def] = ACTIONS(1085), + [anon_sym_export_DASHenv] = ACTIONS(1085), + [anon_sym_extern] = ACTIONS(1085), + [anon_sym_module] = ACTIONS(1085), + [anon_sym_use] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LPAREN] = ACTIONS(1085), + [anon_sym_RPAREN] = ACTIONS(1085), + [anon_sym_DOLLAR] = ACTIONS(1085), + [anon_sym_error] = ACTIONS(1085), + [anon_sym_DASH_DASH] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_break] = ACTIONS(1085), + [anon_sym_continue] = ACTIONS(1085), + [anon_sym_for] = ACTIONS(1085), + [anon_sym_loop] = ACTIONS(1085), + [anon_sym_while] = ACTIONS(1085), + [anon_sym_do] = ACTIONS(1085), + [anon_sym_if] = ACTIONS(1085), + [anon_sym_match] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_RBRACE] = ACTIONS(1085), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_return] = ACTIONS(1085), + [anon_sym_source] = ACTIONS(1085), + [anon_sym_source_DASHenv] = ACTIONS(1085), + [anon_sym_register] = ACTIONS(1085), + [anon_sym_hide] = ACTIONS(1085), + [anon_sym_hide_DASHenv] = ACTIONS(1085), + [anon_sym_overlay] = ACTIONS(1085), + [anon_sym_as] = ACTIONS(1085), + [anon_sym_where] = ACTIONS(1085), + [anon_sym_not] = ACTIONS(1085), + [anon_sym_DOT] = ACTIONS(3632), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1085), + [anon_sym_DOT_DOT_LT] = ACTIONS(1085), + [anon_sym_null] = ACTIONS(1085), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [aux_sym__val_number_decimal_token1] = ACTIONS(1085), + [aux_sym__val_number_decimal_token2] = ACTIONS(1085), + [anon_sym_DOT2] = ACTIONS(1085), + [aux_sym__val_number_decimal_token3] = ACTIONS(1085), + [aux_sym__val_number_token1] = ACTIONS(1085), + [aux_sym__val_number_token2] = ACTIONS(1085), + [aux_sym__val_number_token3] = ACTIONS(1085), + [aux_sym__val_number_token4] = ACTIONS(1085), + [aux_sym__val_number_token5] = ACTIONS(1085), + [aux_sym__val_number_token6] = ACTIONS(1085), + [anon_sym_0b] = ACTIONS(1085), + [anon_sym_0o] = ACTIONS(1085), + [anon_sym_0x] = ACTIONS(1085), + [sym_val_date] = ACTIONS(1085), + [anon_sym_DQUOTE] = ACTIONS(1085), + [sym__str_single_quotes] = ACTIONS(1085), + [sym__str_back_ticks] = ACTIONS(1085), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1085), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), [anon_sym_POUND] = ACTIONS(113), }, - [869] = { - [sym_comment] = STATE(869), - [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), - [sym_cmd_identifier] = ACTIONS(1294), - [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(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_error] = ACTIONS(1294), - [anon_sym_list] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_in] = 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_RBRACE] = 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_register] = ACTIONS(1294), - [anon_sym_hide] = ACTIONS(1294), - [anon_sym_hide_DASHenv] = ACTIONS(1294), - [anon_sym_overlay] = ACTIONS(1294), - [anon_sym_new] = ACTIONS(1294), - [anon_sym_as] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_STAR_STAR] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_mod] = ACTIONS(1294), - [anon_sym_SLASH_SLASH] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_bit_DASHshl] = ACTIONS(1294), - [anon_sym_bit_DASHshr] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_LT2] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_not_DASHin] = ACTIONS(1294), - [anon_sym_starts_DASHwith] = ACTIONS(1294), - [anon_sym_ends_DASHwith] = ACTIONS(1294), - [anon_sym_EQ_TILDE] = ACTIONS(1294), - [anon_sym_BANG_TILDE] = ACTIONS(1294), - [anon_sym_bit_DASHand] = ACTIONS(1294), - [anon_sym_bit_DASHxor] = ACTIONS(1294), - [anon_sym_bit_DASHor] = ACTIONS(1294), - [anon_sym_and] = ACTIONS(1294), - [anon_sym_xor] = ACTIONS(1294), - [anon_sym_or] = ACTIONS(1294), - [aux_sym__val_number_decimal_token1] = ACTIONS(1294), - [aux_sym__val_number_decimal_token2] = ACTIONS(1294), - [anon_sym_DOT2] = ACTIONS(1294), - [aux_sym__val_number_decimal_token3] = ACTIONS(1294), - [aux_sym__val_number_token1] = ACTIONS(1294), - [aux_sym__val_number_token2] = ACTIONS(1294), - [aux_sym__val_number_token3] = ACTIONS(1294), - [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(1294), - [sym__str_single_quotes] = ACTIONS(1294), - [sym__str_back_ticks] = ACTIONS(1294), - [sym__entry_separator] = ACTIONS(1296), - [aux_sym__record_key_token2] = ACTIONS(1294), + [1067] = { + [sym_comment] = STATE(1067), + [ts_builtin_sym_end] = ACTIONS(2358), + [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), + [anon_sym_SEMI] = ACTIONS(2356), + [sym_cmd_identifier] = ACTIONS(2356), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2356), + [anon_sym_DOLLAR] = ACTIONS(2356), + [anon_sym_error] = ACTIONS(2356), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_loop] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_match] = ACTIONS(2356), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_DOT_DOT] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_source] = ACTIONS(2356), + [anon_sym_source_DASHenv] = ACTIONS(2356), + [anon_sym_register] = 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_where] = ACTIONS(2356), + [anon_sym_not] = ACTIONS(2356), + [anon_sym_LPAREN2] = ACTIONS(2358), + [anon_sym_DOT] = ACTIONS(2356), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2356), + [anon_sym_DOT_DOT_LT] = ACTIONS(2356), + [aux_sym__immediate_decimal_token2] = ACTIONS(3634), + [anon_sym_null] = ACTIONS(2356), + [anon_sym_true] = ACTIONS(2356), + [anon_sym_false] = ACTIONS(2356), + [aux_sym__val_number_decimal_token1] = ACTIONS(2356), + [aux_sym__val_number_decimal_token2] = ACTIONS(2356), + [anon_sym_DOT2] = ACTIONS(2356), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2356), + [anon_sym_0o] = ACTIONS(2356), + [anon_sym_0x] = ACTIONS(2356), + [sym_val_date] = 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_CARET] = ACTIONS(2356), + [aux_sym_unquoted_token2] = ACTIONS(2356), [anon_sym_POUND] = ACTIONS(113), }, - [870] = { - [sym_comment] = STATE(870), - [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), - [sym_cmd_identifier] = ACTIONS(1294), - [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(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_error] = ACTIONS(1294), - [anon_sym_list] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_in] = 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_RBRACE] = 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_register] = ACTIONS(1294), - [anon_sym_hide] = ACTIONS(1294), - [anon_sym_hide_DASHenv] = ACTIONS(1294), - [anon_sym_overlay] = ACTIONS(1294), - [anon_sym_new] = ACTIONS(1294), - [anon_sym_as] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_STAR_STAR] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_mod] = ACTIONS(1294), - [anon_sym_SLASH_SLASH] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_bit_DASHshl] = ACTIONS(1294), - [anon_sym_bit_DASHshr] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_LT2] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_not_DASHin] = ACTIONS(1294), - [anon_sym_starts_DASHwith] = ACTIONS(1294), - [anon_sym_ends_DASHwith] = ACTIONS(1294), - [anon_sym_EQ_TILDE] = ACTIONS(1294), - [anon_sym_BANG_TILDE] = ACTIONS(1294), - [anon_sym_bit_DASHand] = ACTIONS(1294), - [anon_sym_bit_DASHxor] = ACTIONS(1294), - [anon_sym_bit_DASHor] = ACTIONS(1294), - [anon_sym_and] = ACTIONS(1294), - [anon_sym_xor] = ACTIONS(1294), - [anon_sym_or] = ACTIONS(1294), - [aux_sym__val_number_decimal_token1] = ACTIONS(1294), - [aux_sym__val_number_decimal_token2] = ACTIONS(1294), - [anon_sym_DOT2] = ACTIONS(1294), - [aux_sym__val_number_decimal_token3] = ACTIONS(1294), - [aux_sym__val_number_token1] = ACTIONS(1294), - [aux_sym__val_number_token2] = ACTIONS(1294), - [aux_sym__val_number_token3] = ACTIONS(1294), - [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(1294), - [sym__str_single_quotes] = ACTIONS(1294), - [sym__str_back_ticks] = ACTIONS(1294), - [sym__entry_separator] = ACTIONS(1296), - [aux_sym__record_key_token2] = ACTIONS(1294), + [1068] = { + [sym_comment] = STATE(1068), + [anon_sym_export] = ACTIONS(1089), + [anon_sym_alias] = ACTIONS(1089), + [anon_sym_let] = ACTIONS(1089), + [anon_sym_let_DASHenv] = ACTIONS(1089), + [anon_sym_mut] = ACTIONS(1089), + [anon_sym_const] = ACTIONS(1089), + [anon_sym_SEMI] = ACTIONS(1089), + [sym_cmd_identifier] = ACTIONS(1089), + [anon_sym_LF] = ACTIONS(1091), + [anon_sym_def] = ACTIONS(1089), + [anon_sym_export_DASHenv] = ACTIONS(1089), + [anon_sym_extern] = ACTIONS(1089), + [anon_sym_module] = ACTIONS(1089), + [anon_sym_use] = ACTIONS(1089), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1089), + [anon_sym_RPAREN] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1089), + [anon_sym_error] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_DASH] = ACTIONS(1089), + [anon_sym_break] = ACTIONS(1089), + [anon_sym_continue] = ACTIONS(1089), + [anon_sym_for] = ACTIONS(1089), + [anon_sym_loop] = ACTIONS(1089), + [anon_sym_while] = ACTIONS(1089), + [anon_sym_do] = ACTIONS(1089), + [anon_sym_if] = ACTIONS(1089), + [anon_sym_match] = ACTIONS(1089), + [anon_sym_LBRACE] = ACTIONS(1089), + [anon_sym_RBRACE] = ACTIONS(1089), + [anon_sym_DOT_DOT] = ACTIONS(1089), + [anon_sym_try] = ACTIONS(1089), + [anon_sym_return] = ACTIONS(1089), + [anon_sym_source] = ACTIONS(1089), + [anon_sym_source_DASHenv] = ACTIONS(1089), + [anon_sym_register] = ACTIONS(1089), + [anon_sym_hide] = ACTIONS(1089), + [anon_sym_hide_DASHenv] = ACTIONS(1089), + [anon_sym_overlay] = ACTIONS(1089), + [anon_sym_as] = ACTIONS(1089), + [anon_sym_where] = ACTIONS(1089), + [anon_sym_not] = ACTIONS(1089), + [anon_sym_DOT_DOT2] = ACTIONS(1081), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_DOT_DOT_LT] = ACTIONS(1089), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1083), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1083), + [anon_sym_null] = ACTIONS(1089), + [anon_sym_true] = ACTIONS(1089), + [anon_sym_false] = ACTIONS(1089), + [aux_sym__val_number_decimal_token1] = ACTIONS(1089), + [aux_sym__val_number_decimal_token2] = ACTIONS(1089), + [anon_sym_DOT2] = ACTIONS(1089), + [aux_sym__val_number_decimal_token3] = ACTIONS(1089), + [aux_sym__val_number_token1] = ACTIONS(1089), + [aux_sym__val_number_token2] = ACTIONS(1089), + [aux_sym__val_number_token3] = ACTIONS(1089), + [aux_sym__val_number_token4] = ACTIONS(1089), + [aux_sym__val_number_token5] = ACTIONS(1089), + [aux_sym__val_number_token6] = ACTIONS(1089), + [anon_sym_0b] = ACTIONS(1089), + [anon_sym_0o] = ACTIONS(1089), + [anon_sym_0x] = ACTIONS(1089), + [sym_val_date] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1089), + [sym__str_single_quotes] = ACTIONS(1089), + [sym__str_back_ticks] = ACTIONS(1089), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1089), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1089), + [anon_sym_CARET] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(113), }, - [871] = { - [sym_comment] = STATE(871), - [anon_sym_export] = ACTIONS(1113), - [anon_sym_alias] = ACTIONS(1113), - [anon_sym_let] = ACTIONS(1113), - [anon_sym_let_DASHenv] = ACTIONS(1113), - [anon_sym_mut] = ACTIONS(1113), - [anon_sym_const] = ACTIONS(1113), - [sym_cmd_identifier] = ACTIONS(1113), - [anon_sym_def] = ACTIONS(1113), - [anon_sym_export_DASHenv] = ACTIONS(1113), - [anon_sym_extern] = ACTIONS(1113), - [anon_sym_module] = ACTIONS(1113), - [anon_sym_use] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_DOLLAR] = ACTIONS(1115), - [anon_sym_error] = ACTIONS(1113), - [anon_sym_list] = ACTIONS(1113), - [anon_sym_GT] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_in] = ACTIONS(1113), - [anon_sym_loop] = ACTIONS(1113), - [anon_sym_make] = ACTIONS(1113), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_else] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1113), - [anon_sym_RBRACE] = ACTIONS(1115), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_catch] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_source] = ACTIONS(1113), - [anon_sym_source_DASHenv] = ACTIONS(1113), - [anon_sym_register] = ACTIONS(1113), - [anon_sym_hide] = ACTIONS(1113), - [anon_sym_hide_DASHenv] = ACTIONS(1113), - [anon_sym_overlay] = ACTIONS(1113), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_as] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_STAR_STAR] = ACTIONS(1115), - [anon_sym_PLUS_PLUS] = ACTIONS(1115), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_mod] = ACTIONS(1113), - [anon_sym_SLASH_SLASH] = ACTIONS(1115), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_bit_DASHshl] = ACTIONS(1113), - [anon_sym_bit_DASHshr] = ACTIONS(1113), - [anon_sym_EQ_EQ] = ACTIONS(1115), - [anon_sym_BANG_EQ] = ACTIONS(1115), - [anon_sym_LT2] = ACTIONS(1113), - [anon_sym_LT_EQ] = ACTIONS(1115), - [anon_sym_GT_EQ] = ACTIONS(1115), - [anon_sym_not_DASHin] = ACTIONS(1113), - [anon_sym_starts_DASHwith] = ACTIONS(1113), - [anon_sym_ends_DASHwith] = ACTIONS(1113), - [anon_sym_EQ_TILDE] = ACTIONS(1115), - [anon_sym_BANG_TILDE] = ACTIONS(1115), - [anon_sym_bit_DASHand] = ACTIONS(1113), - [anon_sym_bit_DASHxor] = ACTIONS(1113), - [anon_sym_bit_DASHor] = ACTIONS(1113), - [anon_sym_and] = ACTIONS(1113), - [anon_sym_xor] = ACTIONS(1113), - [anon_sym_or] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1115), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_decimal_token2] = ACTIONS(1115), - [anon_sym_DOT2] = ACTIONS(1113), - [aux_sym__val_number_decimal_token3] = ACTIONS(1115), - [aux_sym__val_number_token1] = ACTIONS(1115), - [aux_sym__val_number_token2] = ACTIONS(1115), - [aux_sym__val_number_token3] = ACTIONS(1115), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1115), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1115), - [sym__str_single_quotes] = ACTIONS(1115), - [sym__str_back_ticks] = ACTIONS(1115), - [aux_sym__record_key_token2] = ACTIONS(1113), + [1069] = { + [sym_comment] = STATE(1069), + [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), + [anon_sym_SEMI] = ACTIONS(2362), + [sym_cmd_identifier] = ACTIONS(2362), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2362), + [anon_sym_LPAREN] = ACTIONS(2362), + [anon_sym_RPAREN] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2362), + [anon_sym_error] = ACTIONS(2362), + [anon_sym_DASH_DASH] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_break] = ACTIONS(2362), + [anon_sym_continue] = ACTIONS(2362), + [anon_sym_for] = ACTIONS(2362), + [anon_sym_loop] = ACTIONS(2362), + [anon_sym_while] = ACTIONS(2362), + [anon_sym_do] = ACTIONS(2362), + [anon_sym_if] = ACTIONS(2362), + [anon_sym_match] = ACTIONS(2362), + [anon_sym_LBRACE] = ACTIONS(2362), + [anon_sym_RBRACE] = ACTIONS(2362), + [anon_sym_DOT_DOT] = ACTIONS(2362), + [anon_sym_try] = 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_where] = ACTIONS(2362), + [anon_sym_not] = ACTIONS(2362), + [anon_sym_LPAREN2] = ACTIONS(2364), + [anon_sym_DOT] = ACTIONS(2362), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2362), + [anon_sym_DOT_DOT_LT] = ACTIONS(2362), + [anon_sym_null] = ACTIONS(2362), + [anon_sym_true] = ACTIONS(2362), + [anon_sym_false] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2362), + [aux_sym__val_number_decimal_token2] = ACTIONS(2362), + [anon_sym_DOT2] = ACTIONS(2362), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2362), + [anon_sym_0o] = ACTIONS(2362), + [anon_sym_0x] = ACTIONS(2362), + [sym_val_date] = 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_CARET] = ACTIONS(2362), + [aux_sym_unquoted_token2] = ACTIONS(2362), + [anon_sym_POUND] = ACTIONS(113), + }, + [1070] = { + [sym_cell_path] = STATE(1431), + [sym_path] = STATE(1108), + [sym_comment] = STATE(1070), + [anon_sym_export] = ACTIONS(1097), + [anon_sym_alias] = ACTIONS(1097), + [anon_sym_let] = ACTIONS(1097), + [anon_sym_let_DASHenv] = ACTIONS(1097), + [anon_sym_mut] = ACTIONS(1097), + [anon_sym_const] = ACTIONS(1097), + [anon_sym_SEMI] = ACTIONS(1097), + [sym_cmd_identifier] = ACTIONS(1097), + [anon_sym_LF] = ACTIONS(1099), + [anon_sym_def] = ACTIONS(1097), + [anon_sym_export_DASHenv] = ACTIONS(1097), + [anon_sym_extern] = ACTIONS(1097), + [anon_sym_module] = ACTIONS(1097), + [anon_sym_use] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1097), + [anon_sym_LPAREN] = ACTIONS(1097), + [anon_sym_RPAREN] = ACTIONS(1097), + [anon_sym_DOLLAR] = ACTIONS(1097), + [anon_sym_error] = ACTIONS(1097), + [anon_sym_DASH_DASH] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_break] = ACTIONS(1097), + [anon_sym_continue] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1097), + [anon_sym_loop] = ACTIONS(1097), + [anon_sym_while] = ACTIONS(1097), + [anon_sym_do] = ACTIONS(1097), + [anon_sym_if] = ACTIONS(1097), + [anon_sym_match] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_RBRACE] = ACTIONS(1097), + [anon_sym_DOT_DOT] = ACTIONS(1097), + [anon_sym_try] = ACTIONS(1097), + [anon_sym_return] = ACTIONS(1097), + [anon_sym_source] = ACTIONS(1097), + [anon_sym_source_DASHenv] = ACTIONS(1097), + [anon_sym_register] = ACTIONS(1097), + [anon_sym_hide] = ACTIONS(1097), + [anon_sym_hide_DASHenv] = ACTIONS(1097), + [anon_sym_overlay] = ACTIONS(1097), + [anon_sym_as] = ACTIONS(1097), + [anon_sym_where] = ACTIONS(1097), + [anon_sym_not] = ACTIONS(1097), + [anon_sym_DOT] = ACTIONS(3632), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1097), + [anon_sym_DOT_DOT_LT] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1097), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), + [aux_sym__val_number_decimal_token1] = ACTIONS(1097), + [aux_sym__val_number_decimal_token2] = ACTIONS(1097), + [anon_sym_DOT2] = ACTIONS(1097), + [aux_sym__val_number_decimal_token3] = ACTIONS(1097), + [aux_sym__val_number_token1] = ACTIONS(1097), + [aux_sym__val_number_token2] = ACTIONS(1097), + [aux_sym__val_number_token3] = ACTIONS(1097), + [aux_sym__val_number_token4] = ACTIONS(1097), + [aux_sym__val_number_token5] = ACTIONS(1097), + [aux_sym__val_number_token6] = ACTIONS(1097), + [anon_sym_0b] = ACTIONS(1097), + [anon_sym_0o] = ACTIONS(1097), + [anon_sym_0x] = ACTIONS(1097), + [sym_val_date] = ACTIONS(1097), + [anon_sym_DQUOTE] = ACTIONS(1097), + [sym__str_single_quotes] = ACTIONS(1097), + [sym__str_back_ticks] = ACTIONS(1097), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1097), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1097), + [anon_sym_CARET] = ACTIONS(1097), + [anon_sym_POUND] = ACTIONS(113), + }, + [1071] = { + [sym_comment] = STATE(1071), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_alias] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_let_DASHenv] = ACTIONS(2229), + [anon_sym_mut] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2229), + [sym_cmd_identifier] = ACTIONS(2229), + [anon_sym_LF] = ACTIONS(2231), + [anon_sym_def] = ACTIONS(2229), + [anon_sym_export_DASHenv] = ACTIONS(2229), + [anon_sym_extern] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_RPAREN] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2229), + [anon_sym_error] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_loop] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_RBRACE] = ACTIONS(2229), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_source] = ACTIONS(2229), + [anon_sym_source_DASHenv] = ACTIONS(2229), + [anon_sym_register] = ACTIONS(2229), + [anon_sym_hide] = ACTIONS(2229), + [anon_sym_hide_DASHenv] = ACTIONS(2229), + [anon_sym_overlay] = ACTIONS(2229), + [anon_sym_as] = ACTIONS(2229), + [anon_sym_where] = ACTIONS(2229), + [anon_sym_not] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2229), + [anon_sym_DOT_DOT_LT] = ACTIONS(2229), + [aux_sym__immediate_decimal_token2] = ACTIONS(3502), + [anon_sym_null] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [aux_sym__val_number_decimal_token1] = ACTIONS(2229), + [aux_sym__val_number_decimal_token2] = ACTIONS(2229), + [anon_sym_DOT2] = ACTIONS(2229), + [aux_sym__val_number_decimal_token3] = ACTIONS(2229), + [aux_sym__val_number_token1] = ACTIONS(2229), + [aux_sym__val_number_token2] = ACTIONS(2229), + [aux_sym__val_number_token3] = ACTIONS(2229), + [aux_sym__val_number_token4] = ACTIONS(2229), + [aux_sym__val_number_token5] = ACTIONS(2229), + [aux_sym__val_number_token6] = ACTIONS(2229), + [anon_sym_0b] = ACTIONS(2229), + [anon_sym_0o] = ACTIONS(2229), + [anon_sym_0x] = ACTIONS(2229), + [sym_val_date] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2229), + [anon_sym_CARET] = ACTIONS(2229), + [aux_sym_unquoted_token2] = ACTIONS(2229), + [anon_sym_POUND] = ACTIONS(113), + }, + [1072] = { + [sym_cell_path] = STATE(1433), + [sym_path] = STATE(1108), + [sym_comment] = STATE(1072), + [anon_sym_export] = ACTIONS(1101), + [anon_sym_alias] = ACTIONS(1101), + [anon_sym_let] = ACTIONS(1101), + [anon_sym_let_DASHenv] = ACTIONS(1101), + [anon_sym_mut] = ACTIONS(1101), + [anon_sym_const] = ACTIONS(1101), + [anon_sym_SEMI] = ACTIONS(1101), + [sym_cmd_identifier] = ACTIONS(1101), + [anon_sym_LF] = ACTIONS(1103), + [anon_sym_def] = ACTIONS(1101), + [anon_sym_export_DASHenv] = ACTIONS(1101), + [anon_sym_extern] = ACTIONS(1101), + [anon_sym_module] = ACTIONS(1101), + [anon_sym_use] = ACTIONS(1101), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_RPAREN] = ACTIONS(1101), + [anon_sym_DOLLAR] = ACTIONS(1101), + [anon_sym_error] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_break] = ACTIONS(1101), + [anon_sym_continue] = ACTIONS(1101), + [anon_sym_for] = ACTIONS(1101), + [anon_sym_loop] = ACTIONS(1101), + [anon_sym_while] = ACTIONS(1101), + [anon_sym_do] = ACTIONS(1101), + [anon_sym_if] = ACTIONS(1101), + [anon_sym_match] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_RBRACE] = ACTIONS(1101), + [anon_sym_DOT_DOT] = ACTIONS(1101), + [anon_sym_try] = ACTIONS(1101), + [anon_sym_return] = ACTIONS(1101), + [anon_sym_source] = ACTIONS(1101), + [anon_sym_source_DASHenv] = ACTIONS(1101), + [anon_sym_register] = ACTIONS(1101), + [anon_sym_hide] = ACTIONS(1101), + [anon_sym_hide_DASHenv] = ACTIONS(1101), + [anon_sym_overlay] = ACTIONS(1101), + [anon_sym_as] = ACTIONS(1101), + [anon_sym_where] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_DOT] = ACTIONS(3632), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1101), + [anon_sym_DOT_DOT_LT] = ACTIONS(1101), + [anon_sym_null] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(1101), + [anon_sym_false] = ACTIONS(1101), + [aux_sym__val_number_decimal_token1] = ACTIONS(1101), + [aux_sym__val_number_decimal_token2] = ACTIONS(1101), + [anon_sym_DOT2] = ACTIONS(1101), + [aux_sym__val_number_decimal_token3] = ACTIONS(1101), + [aux_sym__val_number_token1] = ACTIONS(1101), + [aux_sym__val_number_token2] = ACTIONS(1101), + [aux_sym__val_number_token3] = ACTIONS(1101), + [aux_sym__val_number_token4] = ACTIONS(1101), + [aux_sym__val_number_token5] = ACTIONS(1101), + [aux_sym__val_number_token6] = ACTIONS(1101), + [anon_sym_0b] = ACTIONS(1101), + [anon_sym_0o] = ACTIONS(1101), + [anon_sym_0x] = ACTIONS(1101), + [sym_val_date] = ACTIONS(1101), + [anon_sym_DQUOTE] = ACTIONS(1101), + [sym__str_single_quotes] = ACTIONS(1101), + [sym__str_back_ticks] = ACTIONS(1101), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1101), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_POUND] = ACTIONS(113), + }, + [1073] = { + [sym_comment] = STATE(1073), + [anon_sym_LBRACK] = ACTIONS(1039), + [anon_sym_COMMA] = ACTIONS(1039), + [anon_sym_LPAREN] = ACTIONS(1039), + [anon_sym_DOLLAR] = ACTIONS(1039), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_in] = ACTIONS(1037), + [anon_sym_LBRACE] = ACTIONS(1039), + [anon_sym_RBRACE] = ACTIONS(1039), + [anon_sym__] = ACTIONS(1037), + [anon_sym_DOT_DOT] = ACTIONS(1037), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_STAR_STAR] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(1039), + [anon_sym_SLASH] = ACTIONS(1037), + [anon_sym_mod] = ACTIONS(1039), + [anon_sym_SLASH_SLASH] = ACTIONS(1039), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_bit_DASHshl] = ACTIONS(1039), + [anon_sym_bit_DASHshr] = ACTIONS(1039), + [anon_sym_EQ_EQ] = ACTIONS(1039), + [anon_sym_BANG_EQ] = ACTIONS(1039), + [anon_sym_LT2] = ACTIONS(1037), + [anon_sym_LT_EQ] = ACTIONS(1039), + [anon_sym_GT_EQ] = ACTIONS(1039), + [anon_sym_not_DASHin] = ACTIONS(1039), + [anon_sym_starts_DASHwith] = ACTIONS(1039), + [anon_sym_ends_DASHwith] = ACTIONS(1039), + [anon_sym_EQ_TILDE] = ACTIONS(1039), + [anon_sym_BANG_TILDE] = ACTIONS(1039), + [anon_sym_bit_DASHand] = ACTIONS(1039), + [anon_sym_bit_DASHxor] = ACTIONS(1039), + [anon_sym_bit_DASHor] = ACTIONS(1039), + [anon_sym_and] = ACTIONS(1039), + [anon_sym_xor] = ACTIONS(1039), + [anon_sym_or] = ACTIONS(1039), + [anon_sym_DOT_DOT2] = ACTIONS(1037), + [anon_sym_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1037), + [anon_sym_DOT_DOT_LT] = ACTIONS(1037), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1039), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1039), + [anon_sym_null] = ACTIONS(1039), + [anon_sym_true] = ACTIONS(1039), + [anon_sym_false] = ACTIONS(1039), + [aux_sym__val_number_decimal_token1] = ACTIONS(1037), + [aux_sym__val_number_decimal_token2] = ACTIONS(1039), + [anon_sym_DOT2] = ACTIONS(1037), + [aux_sym__val_number_decimal_token3] = ACTIONS(1039), + [aux_sym__val_number_token1] = ACTIONS(1039), + [aux_sym__val_number_token2] = ACTIONS(1039), + [aux_sym__val_number_token3] = ACTIONS(1039), + [aux_sym__val_number_token4] = ACTIONS(1039), + [aux_sym__val_number_token5] = ACTIONS(1039), + [aux_sym__val_number_token6] = ACTIONS(1039), + [anon_sym_0b] = ACTIONS(1037), + [anon_sym_0o] = ACTIONS(1037), + [anon_sym_0x] = ACTIONS(1037), + [sym_val_date] = ACTIONS(1039), + [anon_sym_DQUOTE] = ACTIONS(1039), + [sym__str_single_quotes] = ACTIONS(1039), + [sym__str_back_ticks] = ACTIONS(1039), + [anon_sym_err_GT] = ACTIONS(1039), + [anon_sym_out_GT] = ACTIONS(1039), + [anon_sym_e_GT] = ACTIONS(1039), + [anon_sym_o_GT] = ACTIONS(1039), + [anon_sym_err_PLUSout_GT] = ACTIONS(1039), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1039), + [anon_sym_o_PLUSe_GT] = ACTIONS(1039), + [anon_sym_e_PLUSo_GT] = ACTIONS(1039), + [aux_sym_unquoted_token1] = ACTIONS(1037), [anon_sym_POUND] = ACTIONS(3), }, - [872] = { - [sym_comment] = STATE(872), - [anon_sym_export] = ACTIONS(1253), - [anon_sym_alias] = ACTIONS(1253), - [anon_sym_let] = ACTIONS(1253), - [anon_sym_let_DASHenv] = ACTIONS(1253), - [anon_sym_mut] = ACTIONS(1253), - [anon_sym_const] = ACTIONS(1253), - [sym_cmd_identifier] = ACTIONS(1253), - [anon_sym_def] = ACTIONS(1253), - [anon_sym_export_DASHenv] = ACTIONS(1253), - [anon_sym_extern] = ACTIONS(1253), - [anon_sym_module] = ACTIONS(1253), - [anon_sym_use] = ACTIONS(1253), - [anon_sym_LPAREN] = ACTIONS(1253), - [anon_sym_DOLLAR] = ACTIONS(1253), - [anon_sym_error] = ACTIONS(1253), - [anon_sym_list] = ACTIONS(1253), - [anon_sym_GT] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_break] = ACTIONS(1253), - [anon_sym_continue] = ACTIONS(1253), - [anon_sym_for] = ACTIONS(1253), - [anon_sym_in] = ACTIONS(1253), - [anon_sym_loop] = ACTIONS(1253), - [anon_sym_make] = ACTIONS(1253), - [anon_sym_while] = ACTIONS(1253), - [anon_sym_do] = ACTIONS(1253), - [anon_sym_if] = ACTIONS(1253), - [anon_sym_else] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1253), - [anon_sym_RBRACE] = ACTIONS(1253), - [anon_sym_try] = ACTIONS(1253), - [anon_sym_catch] = ACTIONS(1253), - [anon_sym_return] = ACTIONS(1253), - [anon_sym_source] = ACTIONS(1253), - [anon_sym_source_DASHenv] = ACTIONS(1253), - [anon_sym_register] = ACTIONS(1253), - [anon_sym_hide] = ACTIONS(1253), - [anon_sym_hide_DASHenv] = ACTIONS(1253), - [anon_sym_overlay] = ACTIONS(1253), - [anon_sym_new] = ACTIONS(1253), - [anon_sym_as] = ACTIONS(1253), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_STAR_STAR] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_mod] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_bit_DASHshl] = ACTIONS(1253), - [anon_sym_bit_DASHshr] = ACTIONS(1253), - [anon_sym_EQ_EQ] = ACTIONS(1253), - [anon_sym_BANG_EQ] = ACTIONS(1253), - [anon_sym_LT2] = ACTIONS(1253), - [anon_sym_LT_EQ] = ACTIONS(1253), - [anon_sym_GT_EQ] = ACTIONS(1253), - [anon_sym_not_DASHin] = ACTIONS(1253), - [anon_sym_starts_DASHwith] = ACTIONS(1253), - [anon_sym_ends_DASHwith] = ACTIONS(1253), - [anon_sym_EQ_TILDE] = ACTIONS(1253), - [anon_sym_BANG_TILDE] = ACTIONS(1253), - [anon_sym_bit_DASHand] = ACTIONS(1253), - [anon_sym_bit_DASHxor] = ACTIONS(1253), - [anon_sym_bit_DASHor] = ACTIONS(1253), - [anon_sym_and] = ACTIONS(1253), - [anon_sym_xor] = ACTIONS(1253), - [anon_sym_or] = ACTIONS(1253), - [aux_sym__val_number_decimal_token1] = ACTIONS(1253), - [aux_sym__val_number_decimal_token2] = ACTIONS(1253), - [anon_sym_DOT2] = ACTIONS(1253), - [aux_sym__val_number_decimal_token3] = ACTIONS(1253), - [aux_sym__val_number_token1] = ACTIONS(1253), - [aux_sym__val_number_token2] = ACTIONS(1253), - [aux_sym__val_number_token3] = ACTIONS(1253), - [aux_sym__val_number_token4] = ACTIONS(1253), - [aux_sym__val_number_token5] = ACTIONS(1253), - [aux_sym__val_number_token6] = ACTIONS(1253), - [anon_sym_DQUOTE] = ACTIONS(1253), - [sym__str_single_quotes] = ACTIONS(1253), - [sym__str_back_ticks] = ACTIONS(1253), - [sym__entry_separator] = ACTIONS(1255), - [aux_sym__record_key_token2] = ACTIONS(1253), + [1074] = { + [sym__immediate_decimal] = STATE(8796), + [sym_comment] = STATE(1074), + [anon_sym_SEMI] = ACTIONS(920), + [anon_sym_LF] = ACTIONS(922), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_RPAREN] = ACTIONS(920), + [anon_sym_PIPE] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_in] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_RBRACE] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_STAR_STAR] = ACTIONS(920), + [anon_sym_PLUS_PLUS] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_mod] = ACTIONS(920), + [anon_sym_SLASH_SLASH] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_bit_DASHshl] = ACTIONS(920), + [anon_sym_bit_DASHshr] = ACTIONS(920), + [anon_sym_EQ_EQ] = ACTIONS(920), + [anon_sym_BANG_EQ] = ACTIONS(920), + [anon_sym_LT2] = ACTIONS(920), + [anon_sym_LT_EQ] = ACTIONS(920), + [anon_sym_GT_EQ] = ACTIONS(920), + [anon_sym_not_DASHin] = ACTIONS(920), + [anon_sym_starts_DASHwith] = ACTIONS(920), + [anon_sym_ends_DASHwith] = ACTIONS(920), + [anon_sym_EQ_TILDE] = ACTIONS(920), + [anon_sym_BANG_TILDE] = ACTIONS(920), + [anon_sym_bit_DASHand] = ACTIONS(920), + [anon_sym_bit_DASHxor] = ACTIONS(920), + [anon_sym_bit_DASHor] = ACTIONS(920), + [anon_sym_and] = ACTIONS(920), + [anon_sym_xor] = ACTIONS(920), + [anon_sym_or] = ACTIONS(920), + [anon_sym_not] = ACTIONS(920), + [anon_sym_DOT] = ACTIONS(3636), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [aux_sym__immediate_decimal_token1] = ACTIONS(926), + [aux_sym__immediate_decimal_token3] = ACTIONS(926), + [aux_sym__immediate_decimal_token4] = ACTIONS(928), + [anon_sym_null] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), + [aux_sym_unquoted_token3] = ACTIONS(3638), + [aux_sym_unquoted_token5] = ACTIONS(3640), [anon_sym_POUND] = ACTIONS(113), }, - [873] = { - [sym_comment] = STATE(873), - [anon_sym_export] = ACTIONS(1117), - [anon_sym_alias] = ACTIONS(1117), - [anon_sym_let] = ACTIONS(1117), - [anon_sym_let_DASHenv] = ACTIONS(1117), - [anon_sym_mut] = ACTIONS(1117), - [anon_sym_const] = ACTIONS(1117), - [sym_cmd_identifier] = ACTIONS(1117), - [anon_sym_def] = ACTIONS(1117), - [anon_sym_export_DASHenv] = ACTIONS(1117), - [anon_sym_extern] = ACTIONS(1117), - [anon_sym_module] = ACTIONS(1117), - [anon_sym_use] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1119), - [anon_sym_DOLLAR] = ACTIONS(1119), - [anon_sym_error] = ACTIONS(1117), - [anon_sym_list] = ACTIONS(1117), - [anon_sym_GT] = ACTIONS(1117), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_break] = ACTIONS(1117), - [anon_sym_continue] = ACTIONS(1117), - [anon_sym_for] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1117), - [anon_sym_loop] = ACTIONS(1117), - [anon_sym_make] = ACTIONS(1117), - [anon_sym_while] = ACTIONS(1117), - [anon_sym_do] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_else] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1117), - [anon_sym_RBRACE] = ACTIONS(1119), - [anon_sym_try] = ACTIONS(1117), - [anon_sym_catch] = ACTIONS(1117), - [anon_sym_return] = ACTIONS(1117), - [anon_sym_source] = ACTIONS(1117), - [anon_sym_source_DASHenv] = ACTIONS(1117), - [anon_sym_register] = ACTIONS(1117), - [anon_sym_hide] = ACTIONS(1117), - [anon_sym_hide_DASHenv] = ACTIONS(1117), - [anon_sym_overlay] = ACTIONS(1117), - [anon_sym_new] = ACTIONS(1117), - [anon_sym_as] = ACTIONS(1117), - [anon_sym_STAR] = ACTIONS(1117), - [anon_sym_STAR_STAR] = ACTIONS(1119), - [anon_sym_PLUS_PLUS] = ACTIONS(1119), - [anon_sym_SLASH] = ACTIONS(1117), - [anon_sym_mod] = ACTIONS(1117), - [anon_sym_SLASH_SLASH] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1117), - [anon_sym_bit_DASHshl] = ACTIONS(1117), - [anon_sym_bit_DASHshr] = ACTIONS(1117), - [anon_sym_EQ_EQ] = ACTIONS(1119), - [anon_sym_BANG_EQ] = ACTIONS(1119), - [anon_sym_LT2] = ACTIONS(1117), - [anon_sym_LT_EQ] = ACTIONS(1119), - [anon_sym_GT_EQ] = ACTIONS(1119), - [anon_sym_not_DASHin] = ACTIONS(1117), - [anon_sym_starts_DASHwith] = ACTIONS(1117), - [anon_sym_ends_DASHwith] = ACTIONS(1117), - [anon_sym_EQ_TILDE] = ACTIONS(1119), - [anon_sym_BANG_TILDE] = ACTIONS(1119), - [anon_sym_bit_DASHand] = ACTIONS(1117), - [anon_sym_bit_DASHxor] = ACTIONS(1117), - [anon_sym_bit_DASHor] = ACTIONS(1117), - [anon_sym_and] = ACTIONS(1117), - [anon_sym_xor] = ACTIONS(1117), - [anon_sym_or] = ACTIONS(1117), - [anon_sym_DOT] = ACTIONS(1119), - [aux_sym__val_number_decimal_token1] = ACTIONS(1117), - [aux_sym__val_number_decimal_token2] = ACTIONS(1119), - [anon_sym_DOT2] = ACTIONS(1117), - [aux_sym__val_number_decimal_token3] = ACTIONS(1119), - [aux_sym__val_number_token1] = ACTIONS(1119), - [aux_sym__val_number_token2] = ACTIONS(1119), - [aux_sym__val_number_token3] = ACTIONS(1119), - [aux_sym__val_number_token4] = ACTIONS(1117), - [aux_sym__val_number_token5] = ACTIONS(1119), - [aux_sym__val_number_token6] = ACTIONS(1117), - [anon_sym_DQUOTE] = ACTIONS(1119), - [sym__str_single_quotes] = ACTIONS(1119), - [sym__str_back_ticks] = ACTIONS(1119), - [aux_sym__record_key_token2] = ACTIONS(1117), - [anon_sym_POUND] = ACTIONS(3), - }, - [874] = { - [sym_comment] = STATE(874), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_alias] = ACTIONS(1372), - [anon_sym_let] = ACTIONS(1372), - [anon_sym_let_DASHenv] = ACTIONS(1372), - [anon_sym_mut] = ACTIONS(1372), - [anon_sym_const] = ACTIONS(1372), - [sym_cmd_identifier] = ACTIONS(1372), - [anon_sym_def] = ACTIONS(1372), - [anon_sym_export_DASHenv] = ACTIONS(1372), - [anon_sym_extern] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_use] = ACTIONS(1372), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_DOLLAR] = ACTIONS(1372), - [anon_sym_error] = ACTIONS(1372), - [anon_sym_list] = ACTIONS(1372), - [anon_sym_GT] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1372), - [anon_sym_break] = ACTIONS(1372), - [anon_sym_continue] = ACTIONS(1372), - [anon_sym_for] = ACTIONS(1372), - [anon_sym_in] = ACTIONS(1372), - [anon_sym_loop] = ACTIONS(1372), - [anon_sym_make] = ACTIONS(1372), - [anon_sym_while] = ACTIONS(1372), - [anon_sym_do] = ACTIONS(1372), - [anon_sym_if] = ACTIONS(1372), - [anon_sym_else] = ACTIONS(1372), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_RBRACE] = ACTIONS(1372), - [anon_sym_try] = ACTIONS(1372), - [anon_sym_catch] = ACTIONS(1372), - [anon_sym_return] = ACTIONS(1372), - [anon_sym_source] = ACTIONS(1372), - [anon_sym_source_DASHenv] = ACTIONS(1372), - [anon_sym_register] = ACTIONS(1372), - [anon_sym_hide] = ACTIONS(1372), - [anon_sym_hide_DASHenv] = ACTIONS(1372), - [anon_sym_overlay] = ACTIONS(1372), - [anon_sym_new] = ACTIONS(1372), - [anon_sym_as] = ACTIONS(1372), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_STAR_STAR] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_SLASH] = ACTIONS(1372), - [anon_sym_mod] = ACTIONS(1372), - [anon_sym_SLASH_SLASH] = ACTIONS(1372), - [anon_sym_PLUS] = ACTIONS(1372), - [anon_sym_bit_DASHshl] = ACTIONS(1372), - [anon_sym_bit_DASHshr] = ACTIONS(1372), - [anon_sym_EQ_EQ] = ACTIONS(1372), - [anon_sym_BANG_EQ] = ACTIONS(1372), - [anon_sym_LT2] = ACTIONS(1372), - [anon_sym_LT_EQ] = ACTIONS(1372), - [anon_sym_GT_EQ] = ACTIONS(1372), - [anon_sym_not_DASHin] = ACTIONS(1372), - [anon_sym_starts_DASHwith] = ACTIONS(1372), - [anon_sym_ends_DASHwith] = ACTIONS(1372), - [anon_sym_EQ_TILDE] = ACTIONS(1372), - [anon_sym_BANG_TILDE] = ACTIONS(1372), - [anon_sym_bit_DASHand] = ACTIONS(1372), - [anon_sym_bit_DASHxor] = ACTIONS(1372), - [anon_sym_bit_DASHor] = ACTIONS(1372), - [anon_sym_and] = ACTIONS(1372), - [anon_sym_xor] = ACTIONS(1372), - [anon_sym_or] = ACTIONS(1372), - [aux_sym__val_number_decimal_token1] = ACTIONS(1372), - [aux_sym__val_number_decimal_token2] = ACTIONS(1372), - [anon_sym_DOT2] = ACTIONS(1372), - [aux_sym__val_number_decimal_token3] = ACTIONS(1372), - [aux_sym__val_number_token1] = ACTIONS(1372), - [aux_sym__val_number_token2] = ACTIONS(1372), - [aux_sym__val_number_token3] = ACTIONS(1372), - [aux_sym__val_number_token4] = ACTIONS(1372), - [aux_sym__val_number_token5] = ACTIONS(1372), - [aux_sym__val_number_token6] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [sym__str_single_quotes] = ACTIONS(1372), - [sym__str_back_ticks] = ACTIONS(1372), - [sym__entry_separator] = ACTIONS(1374), - [aux_sym__record_key_token2] = ACTIONS(1372), + [1075] = { + [sym_comment] = STATE(1075), + [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), + [anon_sym_SEMI] = ACTIONS(2402), + [sym_cmd_identifier] = ACTIONS(2402), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2402), + [anon_sym_LPAREN] = ACTIONS(2402), + [anon_sym_RPAREN] = ACTIONS(2402), + [anon_sym_DOLLAR] = ACTIONS(2402), + [anon_sym_error] = ACTIONS(2402), + [anon_sym_DASH_DASH] = ACTIONS(2402), + [anon_sym_DASH] = ACTIONS(2402), + [anon_sym_break] = ACTIONS(2402), + [anon_sym_continue] = ACTIONS(2402), + [anon_sym_for] = ACTIONS(2402), + [anon_sym_loop] = ACTIONS(2402), + [anon_sym_while] = ACTIONS(2402), + [anon_sym_do] = ACTIONS(2402), + [anon_sym_if] = ACTIONS(2402), + [anon_sym_match] = ACTIONS(2402), + [anon_sym_LBRACE] = ACTIONS(2402), + [anon_sym_RBRACE] = ACTIONS(2402), + [anon_sym_DOT_DOT] = ACTIONS(2402), + [anon_sym_try] = 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_where] = ACTIONS(2402), + [anon_sym_not] = ACTIONS(2402), + [anon_sym_LPAREN2] = ACTIONS(2404), + [anon_sym_DOT] = ACTIONS(2402), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2402), + [anon_sym_DOT_DOT_LT] = ACTIONS(2402), + [anon_sym_null] = ACTIONS(2402), + [anon_sym_true] = ACTIONS(2402), + [anon_sym_false] = ACTIONS(2402), + [aux_sym__val_number_decimal_token1] = ACTIONS(2402), + [aux_sym__val_number_decimal_token2] = ACTIONS(2402), + [anon_sym_DOT2] = ACTIONS(2402), + [aux_sym__val_number_decimal_token3] = ACTIONS(2402), + [aux_sym__val_number_token1] = ACTIONS(2402), + [aux_sym__val_number_token2] = ACTIONS(2402), + [aux_sym__val_number_token3] = ACTIONS(2402), + [aux_sym__val_number_token4] = ACTIONS(2402), + [aux_sym__val_number_token5] = ACTIONS(2402), + [aux_sym__val_number_token6] = ACTIONS(2402), + [anon_sym_0b] = ACTIONS(2402), + [anon_sym_0o] = ACTIONS(2402), + [anon_sym_0x] = ACTIONS(2402), + [sym_val_date] = 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_CARET] = ACTIONS(2402), + [aux_sym_unquoted_token2] = ACTIONS(2402), [anon_sym_POUND] = ACTIONS(113), }, - [875] = { - [sym_comment] = STATE(875), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_alias] = ACTIONS(1109), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_let_DASHenv] = ACTIONS(1109), - [anon_sym_mut] = ACTIONS(1109), - [anon_sym_const] = ACTIONS(1109), - [sym_cmd_identifier] = ACTIONS(1109), - [anon_sym_def] = ACTIONS(1109), - [anon_sym_export_DASHenv] = ACTIONS(1109), - [anon_sym_extern] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_use] = ACTIONS(1109), - [anon_sym_LPAREN] = ACTIONS(1111), - [anon_sym_DOLLAR] = ACTIONS(1111), - [anon_sym_error] = ACTIONS(1109), - [anon_sym_list] = ACTIONS(1109), - [anon_sym_GT] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_break] = ACTIONS(1109), - [anon_sym_continue] = ACTIONS(1109), - [anon_sym_for] = ACTIONS(1109), - [anon_sym_in] = ACTIONS(1109), - [anon_sym_loop] = ACTIONS(1109), - [anon_sym_make] = ACTIONS(1109), - [anon_sym_while] = ACTIONS(1109), - [anon_sym_do] = ACTIONS(1109), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_else] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_RBRACE] = ACTIONS(1111), - [anon_sym_try] = ACTIONS(1109), - [anon_sym_catch] = ACTIONS(1109), - [anon_sym_return] = ACTIONS(1109), - [anon_sym_source] = ACTIONS(1109), - [anon_sym_source_DASHenv] = ACTIONS(1109), - [anon_sym_register] = ACTIONS(1109), - [anon_sym_hide] = ACTIONS(1109), - [anon_sym_hide_DASHenv] = ACTIONS(1109), - [anon_sym_overlay] = ACTIONS(1109), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_as] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_STAR_STAR] = ACTIONS(1111), - [anon_sym_PLUS_PLUS] = ACTIONS(1111), - [anon_sym_SLASH] = ACTIONS(1109), - [anon_sym_mod] = ACTIONS(1109), - [anon_sym_SLASH_SLASH] = ACTIONS(1111), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_bit_DASHshl] = ACTIONS(1109), - [anon_sym_bit_DASHshr] = ACTIONS(1109), - [anon_sym_EQ_EQ] = ACTIONS(1111), - [anon_sym_BANG_EQ] = ACTIONS(1111), - [anon_sym_LT2] = ACTIONS(1109), - [anon_sym_LT_EQ] = ACTIONS(1111), - [anon_sym_GT_EQ] = ACTIONS(1111), - [anon_sym_not_DASHin] = ACTIONS(1109), - [anon_sym_starts_DASHwith] = ACTIONS(1109), - [anon_sym_ends_DASHwith] = ACTIONS(1109), - [anon_sym_EQ_TILDE] = ACTIONS(1111), - [anon_sym_BANG_TILDE] = ACTIONS(1111), - [anon_sym_bit_DASHand] = ACTIONS(1109), - [anon_sym_bit_DASHxor] = ACTIONS(1109), - [anon_sym_bit_DASHor] = ACTIONS(1109), - [anon_sym_and] = ACTIONS(1109), - [anon_sym_xor] = ACTIONS(1109), - [anon_sym_or] = ACTIONS(1109), - [anon_sym_DOT] = ACTIONS(1111), - [aux_sym__val_number_decimal_token1] = ACTIONS(1109), - [aux_sym__val_number_decimal_token2] = ACTIONS(1111), - [anon_sym_DOT2] = ACTIONS(1109), - [aux_sym__val_number_decimal_token3] = ACTIONS(1111), - [aux_sym__val_number_token1] = ACTIONS(1111), - [aux_sym__val_number_token2] = ACTIONS(1111), - [aux_sym__val_number_token3] = ACTIONS(1111), - [aux_sym__val_number_token4] = ACTIONS(1109), - [aux_sym__val_number_token5] = ACTIONS(1111), - [aux_sym__val_number_token6] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(1111), - [sym__str_single_quotes] = ACTIONS(1111), - [sym__str_back_ticks] = ACTIONS(1111), - [aux_sym__record_key_token2] = ACTIONS(1109), + [1076] = { + [sym_comment] = STATE(1076), + [anon_sym_LBRACK] = ACTIONS(1043), + [anon_sym_COMMA] = ACTIONS(1043), + [anon_sym_LPAREN] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1043), + [anon_sym_GT] = ACTIONS(1041), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_in] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(1043), + [anon_sym_RBRACE] = ACTIONS(1043), + [anon_sym__] = ACTIONS(1041), + [anon_sym_DOT_DOT] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_STAR_STAR] = ACTIONS(1043), + [anon_sym_PLUS_PLUS] = ACTIONS(1043), + [anon_sym_SLASH] = ACTIONS(1041), + [anon_sym_mod] = ACTIONS(1043), + [anon_sym_SLASH_SLASH] = ACTIONS(1043), + [anon_sym_PLUS] = ACTIONS(1041), + [anon_sym_bit_DASHshl] = ACTIONS(1043), + [anon_sym_bit_DASHshr] = ACTIONS(1043), + [anon_sym_EQ_EQ] = ACTIONS(1043), + [anon_sym_BANG_EQ] = ACTIONS(1043), + [anon_sym_LT2] = ACTIONS(1041), + [anon_sym_LT_EQ] = ACTIONS(1043), + [anon_sym_GT_EQ] = ACTIONS(1043), + [anon_sym_not_DASHin] = ACTIONS(1043), + [anon_sym_starts_DASHwith] = ACTIONS(1043), + [anon_sym_ends_DASHwith] = ACTIONS(1043), + [anon_sym_EQ_TILDE] = ACTIONS(1043), + [anon_sym_BANG_TILDE] = ACTIONS(1043), + [anon_sym_bit_DASHand] = ACTIONS(1043), + [anon_sym_bit_DASHxor] = ACTIONS(1043), + [anon_sym_bit_DASHor] = ACTIONS(1043), + [anon_sym_and] = ACTIONS(1043), + [anon_sym_xor] = ACTIONS(1043), + [anon_sym_or] = ACTIONS(1043), + [anon_sym_DOT_DOT2] = ACTIONS(1041), + [anon_sym_DOT] = ACTIONS(1041), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1041), + [anon_sym_DOT_DOT_LT] = ACTIONS(1041), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1043), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1043), + [anon_sym_null] = ACTIONS(1043), + [anon_sym_true] = ACTIONS(1043), + [anon_sym_false] = ACTIONS(1043), + [aux_sym__val_number_decimal_token1] = ACTIONS(1041), + [aux_sym__val_number_decimal_token2] = ACTIONS(1043), + [anon_sym_DOT2] = ACTIONS(1041), + [aux_sym__val_number_decimal_token3] = ACTIONS(1043), + [aux_sym__val_number_token1] = ACTIONS(1043), + [aux_sym__val_number_token2] = ACTIONS(1043), + [aux_sym__val_number_token3] = ACTIONS(1043), + [aux_sym__val_number_token4] = ACTIONS(1043), + [aux_sym__val_number_token5] = ACTIONS(1043), + [aux_sym__val_number_token6] = ACTIONS(1043), + [anon_sym_0b] = ACTIONS(1041), + [anon_sym_0o] = ACTIONS(1041), + [anon_sym_0x] = ACTIONS(1041), + [sym_val_date] = ACTIONS(1043), + [anon_sym_DQUOTE] = ACTIONS(1043), + [sym__str_single_quotes] = ACTIONS(1043), + [sym__str_back_ticks] = ACTIONS(1043), + [anon_sym_err_GT] = ACTIONS(1043), + [anon_sym_out_GT] = ACTIONS(1043), + [anon_sym_e_GT] = ACTIONS(1043), + [anon_sym_o_GT] = ACTIONS(1043), + [anon_sym_err_PLUSout_GT] = ACTIONS(1043), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1043), + [anon_sym_o_PLUSe_GT] = ACTIONS(1043), + [anon_sym_e_PLUSo_GT] = ACTIONS(1043), + [aux_sym_unquoted_token1] = ACTIONS(1041), [anon_sym_POUND] = ACTIONS(3), }, - [876] = { - [sym_comment] = STATE(876), - [anon_sym_export] = ACTIONS(1243), - [anon_sym_alias] = ACTIONS(1243), - [anon_sym_let] = ACTIONS(1243), - [anon_sym_let_DASHenv] = ACTIONS(1243), - [anon_sym_mut] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [sym_cmd_identifier] = ACTIONS(1243), - [anon_sym_def] = ACTIONS(1243), - [anon_sym_export_DASHenv] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1243), - [anon_sym_module] = ACTIONS(1243), - [anon_sym_use] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_error] = ACTIONS(1243), - [anon_sym_list] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_in] = ACTIONS(1243), - [anon_sym_loop] = ACTIONS(1243), - [anon_sym_make] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_else] = ACTIONS(1243), - [anon_sym_match] = ACTIONS(1243), - [anon_sym_RBRACE] = ACTIONS(1243), - [anon_sym_try] = ACTIONS(1243), - [anon_sym_catch] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_source] = ACTIONS(1243), - [anon_sym_source_DASHenv] = ACTIONS(1243), - [anon_sym_register] = ACTIONS(1243), - [anon_sym_hide] = ACTIONS(1243), - [anon_sym_hide_DASHenv] = ACTIONS(1243), - [anon_sym_overlay] = ACTIONS(1243), - [anon_sym_new] = ACTIONS(1243), - [anon_sym_as] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1243), - [anon_sym_STAR_STAR] = ACTIONS(1243), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_SLASH] = ACTIONS(1243), - [anon_sym_mod] = ACTIONS(1243), - [anon_sym_SLASH_SLASH] = ACTIONS(1243), - [anon_sym_PLUS] = ACTIONS(1243), - [anon_sym_bit_DASHshl] = ACTIONS(1243), - [anon_sym_bit_DASHshr] = ACTIONS(1243), - [anon_sym_EQ_EQ] = ACTIONS(1243), - [anon_sym_BANG_EQ] = ACTIONS(1243), - [anon_sym_LT2] = ACTIONS(1243), - [anon_sym_LT_EQ] = ACTIONS(1243), - [anon_sym_GT_EQ] = ACTIONS(1243), - [anon_sym_not_DASHin] = ACTIONS(1243), - [anon_sym_starts_DASHwith] = ACTIONS(1243), - [anon_sym_ends_DASHwith] = ACTIONS(1243), - [anon_sym_EQ_TILDE] = ACTIONS(1243), - [anon_sym_BANG_TILDE] = ACTIONS(1243), - [anon_sym_bit_DASHand] = ACTIONS(1243), - [anon_sym_bit_DASHxor] = ACTIONS(1243), - [anon_sym_bit_DASHor] = ACTIONS(1243), - [anon_sym_and] = ACTIONS(1243), - [anon_sym_xor] = ACTIONS(1243), - [anon_sym_or] = ACTIONS(1243), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_decimal_token2] = ACTIONS(1243), - [anon_sym_DOT2] = ACTIONS(1243), - [aux_sym__val_number_decimal_token3] = ACTIONS(1243), - [aux_sym__val_number_token1] = ACTIONS(1243), - [aux_sym__val_number_token2] = ACTIONS(1243), - [aux_sym__val_number_token3] = ACTIONS(1243), - [aux_sym__val_number_token4] = ACTIONS(1243), - [aux_sym__val_number_token5] = ACTIONS(1243), - [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym__str_single_quotes] = ACTIONS(1243), - [sym__str_back_ticks] = ACTIONS(1243), - [aux_sym__list_item_starts_with_sign_token1] = ACTIONS(1730), - [aux_sym__record_key_token2] = ACTIONS(1243), + [1077] = { + [sym_comment] = STATE(1077), + [anon_sym_LBRACK] = ACTIONS(1039), + [anon_sym_COMMA] = ACTIONS(1039), + [anon_sym_RBRACK] = ACTIONS(1039), + [anon_sym_LPAREN] = ACTIONS(1039), + [anon_sym_DOLLAR] = ACTIONS(1039), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_in] = ACTIONS(1037), + [anon_sym_LBRACE] = ACTIONS(1039), + [anon_sym_DOT_DOT] = ACTIONS(1037), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_STAR_STAR] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(1039), + [anon_sym_SLASH] = ACTIONS(1037), + [anon_sym_mod] = ACTIONS(1039), + [anon_sym_SLASH_SLASH] = ACTIONS(1039), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_bit_DASHshl] = ACTIONS(1039), + [anon_sym_bit_DASHshr] = ACTIONS(1039), + [anon_sym_EQ_EQ] = ACTIONS(1039), + [anon_sym_BANG_EQ] = ACTIONS(1039), + [anon_sym_LT2] = ACTIONS(1037), + [anon_sym_LT_EQ] = ACTIONS(1039), + [anon_sym_GT_EQ] = ACTIONS(1039), + [anon_sym_not_DASHin] = ACTIONS(1039), + [anon_sym_starts_DASHwith] = ACTIONS(1039), + [anon_sym_ends_DASHwith] = ACTIONS(1039), + [anon_sym_EQ_TILDE] = ACTIONS(1039), + [anon_sym_BANG_TILDE] = ACTIONS(1039), + [anon_sym_bit_DASHand] = ACTIONS(1039), + [anon_sym_bit_DASHxor] = ACTIONS(1039), + [anon_sym_bit_DASHor] = ACTIONS(1039), + [anon_sym_and] = ACTIONS(1039), + [anon_sym_xor] = ACTIONS(1039), + [anon_sym_or] = ACTIONS(1039), + [anon_sym_DOT_DOT2] = ACTIONS(1037), + [anon_sym_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1037), + [anon_sym_DOT_DOT_LT] = ACTIONS(1037), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1039), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1039), + [anon_sym_null] = ACTIONS(1039), + [anon_sym_true] = ACTIONS(1039), + [anon_sym_false] = ACTIONS(1039), + [aux_sym__val_number_decimal_token1] = ACTIONS(1037), + [aux_sym__val_number_decimal_token2] = ACTIONS(1039), + [anon_sym_DOT2] = ACTIONS(1037), + [aux_sym__val_number_decimal_token3] = ACTIONS(1039), + [aux_sym__val_number_token1] = ACTIONS(1039), + [aux_sym__val_number_token2] = ACTIONS(1039), + [aux_sym__val_number_token3] = ACTIONS(1039), + [aux_sym__val_number_token4] = ACTIONS(1039), + [aux_sym__val_number_token5] = ACTIONS(1039), + [aux_sym__val_number_token6] = ACTIONS(1039), + [anon_sym_0b] = ACTIONS(1037), + [anon_sym_0o] = ACTIONS(1037), + [anon_sym_0x] = ACTIONS(1037), + [sym_val_date] = ACTIONS(1039), + [anon_sym_DQUOTE] = ACTIONS(1039), + [sym__str_single_quotes] = ACTIONS(1039), + [sym__str_back_ticks] = ACTIONS(1039), + [anon_sym_err_GT] = ACTIONS(1039), + [anon_sym_out_GT] = ACTIONS(1039), + [anon_sym_e_GT] = ACTIONS(1039), + [anon_sym_o_GT] = ACTIONS(1039), + [anon_sym_err_PLUSout_GT] = ACTIONS(1039), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1039), + [anon_sym_o_PLUSe_GT] = ACTIONS(1039), + [anon_sym_e_PLUSo_GT] = ACTIONS(1039), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1037), + [anon_sym_POUND] = ACTIONS(3), + }, + [1078] = { + [sym_comment] = STATE(1078), + [anon_sym_export] = ACTIONS(3574), + [anon_sym_alias] = ACTIONS(3574), + [anon_sym_let] = ACTIONS(3574), + [anon_sym_let_DASHenv] = ACTIONS(3574), + [anon_sym_mut] = ACTIONS(3574), + [anon_sym_const] = ACTIONS(3574), + [anon_sym_SEMI] = ACTIONS(3574), + [sym_cmd_identifier] = ACTIONS(3574), + [anon_sym_LF] = ACTIONS(3576), + [anon_sym_def] = ACTIONS(3574), + [anon_sym_export_DASHenv] = ACTIONS(3574), + [anon_sym_extern] = ACTIONS(3574), + [anon_sym_module] = ACTIONS(3574), + [anon_sym_use] = ACTIONS(3574), + [anon_sym_LBRACK] = ACTIONS(3574), + [anon_sym_LPAREN] = ACTIONS(3574), + [anon_sym_RPAREN] = ACTIONS(3574), + [anon_sym_DOLLAR] = ACTIONS(3574), + [anon_sym_error] = ACTIONS(3574), + [anon_sym_DASH_DASH] = ACTIONS(3574), + [anon_sym_DASH] = ACTIONS(3574), + [anon_sym_break] = ACTIONS(3574), + [anon_sym_continue] = ACTIONS(3574), + [anon_sym_for] = ACTIONS(3574), + [anon_sym_loop] = ACTIONS(3574), + [anon_sym_while] = ACTIONS(3574), + [anon_sym_do] = ACTIONS(3574), + [anon_sym_if] = ACTIONS(3574), + [anon_sym_match] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(3574), + [anon_sym_RBRACE] = ACTIONS(3574), + [anon_sym_DOT_DOT] = ACTIONS(3574), + [anon_sym_try] = ACTIONS(3574), + [anon_sym_return] = ACTIONS(3574), + [anon_sym_source] = ACTIONS(3574), + [anon_sym_source_DASHenv] = ACTIONS(3574), + [anon_sym_register] = ACTIONS(3574), + [anon_sym_hide] = ACTIONS(3574), + [anon_sym_hide_DASHenv] = ACTIONS(3574), + [anon_sym_overlay] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_where] = ACTIONS(3574), + [anon_sym_not] = ACTIONS(3574), + [anon_sym_DOT] = ACTIONS(3362), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3574), + [anon_sym_DOT_DOT_LT] = ACTIONS(3574), + [aux_sym__immediate_decimal_token1] = ACTIONS(3642), + [anon_sym_null] = ACTIONS(3574), + [anon_sym_true] = ACTIONS(3574), + [anon_sym_false] = ACTIONS(3574), + [aux_sym__val_number_decimal_token1] = ACTIONS(3574), + [aux_sym__val_number_decimal_token2] = ACTIONS(3574), + [anon_sym_DOT2] = ACTIONS(3574), + [aux_sym__val_number_decimal_token3] = ACTIONS(3574), + [aux_sym__val_number_token1] = ACTIONS(3574), + [aux_sym__val_number_token2] = ACTIONS(3574), + [aux_sym__val_number_token3] = ACTIONS(3574), + [aux_sym__val_number_token4] = ACTIONS(3574), + [aux_sym__val_number_token5] = ACTIONS(3574), + [aux_sym__val_number_token6] = ACTIONS(3574), + [anon_sym_0b] = ACTIONS(3574), + [anon_sym_0o] = ACTIONS(3574), + [anon_sym_0x] = ACTIONS(3574), + [sym_val_date] = ACTIONS(3574), + [anon_sym_DQUOTE] = ACTIONS(3574), + [sym__str_single_quotes] = ACTIONS(3574), + [sym__str_back_ticks] = ACTIONS(3574), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3574), + [anon_sym_CARET] = ACTIONS(3574), + [aux_sym_unquoted_token2] = ACTIONS(3362), [anon_sym_POUND] = ACTIONS(113), }, - [877] = { - [sym_comment] = STATE(877), - [anon_sym_export] = ACTIONS(1273), - [anon_sym_alias] = ACTIONS(1273), - [anon_sym_let] = ACTIONS(1273), - [anon_sym_let_DASHenv] = ACTIONS(1273), - [anon_sym_mut] = ACTIONS(1273), - [anon_sym_const] = ACTIONS(1273), - [sym_cmd_identifier] = ACTIONS(1273), - [anon_sym_def] = ACTIONS(1273), - [anon_sym_export_DASHenv] = ACTIONS(1273), - [anon_sym_extern] = ACTIONS(1273), - [anon_sym_module] = ACTIONS(1273), - [anon_sym_use] = ACTIONS(1273), - [anon_sym_LPAREN] = ACTIONS(1273), - [anon_sym_DOLLAR] = ACTIONS(1273), - [anon_sym_error] = ACTIONS(1273), - [anon_sym_list] = ACTIONS(1273), - [anon_sym_GT] = ACTIONS(1273), - [anon_sym_DASH] = ACTIONS(1273), - [anon_sym_break] = ACTIONS(1273), - [anon_sym_continue] = ACTIONS(1273), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_in] = ACTIONS(1273), - [anon_sym_loop] = ACTIONS(1273), - [anon_sym_make] = ACTIONS(1273), - [anon_sym_while] = ACTIONS(1273), - [anon_sym_do] = ACTIONS(1273), - [anon_sym_if] = ACTIONS(1273), - [anon_sym_else] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_RBRACE] = ACTIONS(1273), - [anon_sym_try] = ACTIONS(1273), - [anon_sym_catch] = ACTIONS(1273), - [anon_sym_return] = ACTIONS(1273), - [anon_sym_source] = ACTIONS(1273), - [anon_sym_source_DASHenv] = ACTIONS(1273), - [anon_sym_register] = ACTIONS(1273), - [anon_sym_hide] = ACTIONS(1273), - [anon_sym_hide_DASHenv] = ACTIONS(1273), - [anon_sym_overlay] = ACTIONS(1273), - [anon_sym_new] = ACTIONS(1273), - [anon_sym_as] = ACTIONS(1273), - [anon_sym_STAR] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1273), - [anon_sym_PLUS_PLUS] = ACTIONS(1273), - [anon_sym_SLASH] = ACTIONS(1273), - [anon_sym_mod] = ACTIONS(1273), - [anon_sym_SLASH_SLASH] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(1273), - [anon_sym_bit_DASHshl] = ACTIONS(1273), - [anon_sym_bit_DASHshr] = ACTIONS(1273), - [anon_sym_EQ_EQ] = ACTIONS(1273), - [anon_sym_BANG_EQ] = ACTIONS(1273), - [anon_sym_LT2] = ACTIONS(1273), - [anon_sym_LT_EQ] = ACTIONS(1273), - [anon_sym_GT_EQ] = ACTIONS(1273), - [anon_sym_not_DASHin] = ACTIONS(1273), - [anon_sym_starts_DASHwith] = ACTIONS(1273), - [anon_sym_ends_DASHwith] = ACTIONS(1273), - [anon_sym_EQ_TILDE] = ACTIONS(1273), - [anon_sym_BANG_TILDE] = ACTIONS(1273), - [anon_sym_bit_DASHand] = ACTIONS(1273), - [anon_sym_bit_DASHxor] = ACTIONS(1273), - [anon_sym_bit_DASHor] = ACTIONS(1273), - [anon_sym_and] = ACTIONS(1273), - [anon_sym_xor] = ACTIONS(1273), - [anon_sym_or] = ACTIONS(1273), - [aux_sym__val_number_decimal_token1] = ACTIONS(1273), - [aux_sym__val_number_decimal_token2] = ACTIONS(1273), - [anon_sym_DOT2] = ACTIONS(1273), - [aux_sym__val_number_decimal_token3] = ACTIONS(1273), - [aux_sym__val_number_token1] = ACTIONS(1273), - [aux_sym__val_number_token2] = ACTIONS(1273), - [aux_sym__val_number_token3] = ACTIONS(1273), - [aux_sym__val_number_token4] = ACTIONS(1273), - [aux_sym__val_number_token5] = ACTIONS(1273), - [aux_sym__val_number_token6] = ACTIONS(1273), - [anon_sym_DQUOTE] = ACTIONS(1273), - [sym__str_single_quotes] = ACTIONS(1273), - [sym__str_back_ticks] = ACTIONS(1273), - [sym__entry_separator] = ACTIONS(1275), - [aux_sym__record_key_token2] = ACTIONS(1273), + [1079] = { + [sym_comment] = STATE(1079), + [anon_sym_export] = ACTIONS(3644), + [anon_sym_alias] = ACTIONS(3644), + [anon_sym_let] = ACTIONS(3644), + [anon_sym_let_DASHenv] = ACTIONS(3644), + [anon_sym_mut] = ACTIONS(3644), + [anon_sym_const] = ACTIONS(3644), + [anon_sym_SEMI] = ACTIONS(3644), + [sym_cmd_identifier] = ACTIONS(3644), + [anon_sym_LF] = ACTIONS(3646), + [anon_sym_def] = ACTIONS(3644), + [anon_sym_export_DASHenv] = ACTIONS(3644), + [anon_sym_extern] = ACTIONS(3644), + [anon_sym_module] = ACTIONS(3644), + [anon_sym_use] = ACTIONS(3644), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_LPAREN] = ACTIONS(3644), + [anon_sym_RPAREN] = ACTIONS(3644), + [anon_sym_DOLLAR] = ACTIONS(3644), + [anon_sym_error] = ACTIONS(3644), + [anon_sym_DASH_DASH] = ACTIONS(3644), + [anon_sym_DASH] = ACTIONS(3644), + [anon_sym_break] = ACTIONS(3644), + [anon_sym_continue] = ACTIONS(3644), + [anon_sym_for] = ACTIONS(3644), + [anon_sym_loop] = ACTIONS(3644), + [anon_sym_while] = ACTIONS(3644), + [anon_sym_do] = ACTIONS(3644), + [anon_sym_if] = ACTIONS(3644), + [anon_sym_match] = ACTIONS(3644), + [anon_sym_LBRACE] = ACTIONS(3644), + [anon_sym_RBRACE] = ACTIONS(3644), + [anon_sym_DOT_DOT] = ACTIONS(3644), + [anon_sym_try] = ACTIONS(3644), + [anon_sym_return] = ACTIONS(3644), + [anon_sym_source] = ACTIONS(3644), + [anon_sym_source_DASHenv] = ACTIONS(3644), + [anon_sym_register] = ACTIONS(3644), + [anon_sym_hide] = ACTIONS(3644), + [anon_sym_hide_DASHenv] = ACTIONS(3644), + [anon_sym_overlay] = ACTIONS(3644), + [anon_sym_as] = ACTIONS(3644), + [anon_sym_where] = ACTIONS(3644), + [anon_sym_not] = ACTIONS(3644), + [anon_sym_LPAREN2] = ACTIONS(3648), + [anon_sym_DOT] = ACTIONS(3650), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3644), + [anon_sym_DOT_DOT_LT] = ACTIONS(3644), + [anon_sym_null] = ACTIONS(3644), + [anon_sym_true] = ACTIONS(3644), + [anon_sym_false] = ACTIONS(3644), + [aux_sym__val_number_decimal_token1] = ACTIONS(3644), + [aux_sym__val_number_decimal_token2] = ACTIONS(3644), + [anon_sym_DOT2] = ACTIONS(3644), + [aux_sym__val_number_decimal_token3] = ACTIONS(3644), + [aux_sym__val_number_token1] = ACTIONS(3644), + [aux_sym__val_number_token2] = ACTIONS(3644), + [aux_sym__val_number_token3] = ACTIONS(3644), + [aux_sym__val_number_token4] = ACTIONS(3644), + [aux_sym__val_number_token5] = ACTIONS(3644), + [aux_sym__val_number_token6] = ACTIONS(3644), + [anon_sym_0b] = ACTIONS(3644), + [anon_sym_0o] = ACTIONS(3644), + [anon_sym_0x] = ACTIONS(3644), + [sym_val_date] = ACTIONS(3644), + [anon_sym_DQUOTE] = ACTIONS(3644), + [sym__str_single_quotes] = ACTIONS(3644), + [sym__str_back_ticks] = ACTIONS(3644), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3644), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3644), + [anon_sym_CARET] = ACTIONS(3644), + [aux_sym_unquoted_token2] = ACTIONS(3650), [anon_sym_POUND] = ACTIONS(113), }, - [878] = { - [sym_comment] = STATE(878), - [anon_sym_export] = ACTIONS(1312), - [anon_sym_alias] = ACTIONS(1312), - [anon_sym_let] = ACTIONS(1312), - [anon_sym_let_DASHenv] = ACTIONS(1312), - [anon_sym_mut] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [sym_cmd_identifier] = ACTIONS(1312), - [anon_sym_def] = ACTIONS(1312), - [anon_sym_export_DASHenv] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym_module] = ACTIONS(1312), - [anon_sym_use] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1312), - [anon_sym_DOLLAR] = ACTIONS(1312), - [anon_sym_error] = ACTIONS(1312), - [anon_sym_list] = ACTIONS(1312), - [anon_sym_GT] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_in] = ACTIONS(1312), - [anon_sym_loop] = ACTIONS(1312), - [anon_sym_make] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_else] = ACTIONS(1312), - [anon_sym_match] = ACTIONS(1312), - [anon_sym_RBRACE] = ACTIONS(1312), - [anon_sym_try] = ACTIONS(1312), - [anon_sym_catch] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_source] = ACTIONS(1312), - [anon_sym_source_DASHenv] = ACTIONS(1312), - [anon_sym_register] = ACTIONS(1312), - [anon_sym_hide] = ACTIONS(1312), - [anon_sym_hide_DASHenv] = ACTIONS(1312), - [anon_sym_overlay] = ACTIONS(1312), - [anon_sym_new] = ACTIONS(1312), - [anon_sym_as] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_STAR_STAR] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_SLASH] = ACTIONS(1312), - [anon_sym_mod] = ACTIONS(1312), - [anon_sym_SLASH_SLASH] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_bit_DASHshl] = ACTIONS(1312), - [anon_sym_bit_DASHshr] = ACTIONS(1312), - [anon_sym_EQ_EQ] = ACTIONS(1312), - [anon_sym_BANG_EQ] = ACTIONS(1312), - [anon_sym_LT2] = ACTIONS(1312), - [anon_sym_LT_EQ] = ACTIONS(1312), - [anon_sym_GT_EQ] = ACTIONS(1312), - [anon_sym_not_DASHin] = ACTIONS(1312), - [anon_sym_starts_DASHwith] = ACTIONS(1312), - [anon_sym_ends_DASHwith] = ACTIONS(1312), - [anon_sym_EQ_TILDE] = ACTIONS(1312), - [anon_sym_BANG_TILDE] = ACTIONS(1312), - [anon_sym_bit_DASHand] = ACTIONS(1312), - [anon_sym_bit_DASHxor] = ACTIONS(1312), - [anon_sym_bit_DASHor] = ACTIONS(1312), - [anon_sym_and] = ACTIONS(1312), - [anon_sym_xor] = ACTIONS(1312), - [anon_sym_or] = ACTIONS(1312), - [aux_sym__val_number_decimal_token1] = ACTIONS(1312), - [aux_sym__val_number_decimal_token2] = ACTIONS(1312), - [anon_sym_DOT2] = ACTIONS(1312), - [aux_sym__val_number_decimal_token3] = ACTIONS(1312), - [aux_sym__val_number_token1] = ACTIONS(1312), - [aux_sym__val_number_token2] = ACTIONS(1312), - [aux_sym__val_number_token3] = ACTIONS(1312), - [aux_sym__val_number_token4] = ACTIONS(1312), - [aux_sym__val_number_token5] = ACTIONS(1312), - [aux_sym__val_number_token6] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym__str_single_quotes] = ACTIONS(1312), - [sym__str_back_ticks] = ACTIONS(1312), - [sym__entry_separator] = ACTIONS(1314), - [aux_sym__record_key_token2] = ACTIONS(1312), + [1080] = { + [sym_comment] = STATE(1080), + [ts_builtin_sym_end] = ACTIONS(2358), + [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), + [anon_sym_SEMI] = ACTIONS(2356), + [sym_cmd_identifier] = ACTIONS(2356), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2356), + [anon_sym_DOLLAR] = ACTIONS(2356), + [anon_sym_error] = ACTIONS(2356), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_loop] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_match] = ACTIONS(2356), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_DOT_DOT] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_source] = ACTIONS(2356), + [anon_sym_source_DASHenv] = ACTIONS(2356), + [anon_sym_register] = 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_where] = ACTIONS(2356), + [anon_sym_not] = ACTIONS(2356), + [anon_sym_LPAREN2] = ACTIONS(2358), + [anon_sym_DOT] = ACTIONS(3652), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2356), + [anon_sym_DOT_DOT_LT] = ACTIONS(2356), + [aux_sym__immediate_decimal_token2] = ACTIONS(3634), + [anon_sym_null] = ACTIONS(2356), + [anon_sym_true] = ACTIONS(2356), + [anon_sym_false] = ACTIONS(2356), + [aux_sym__val_number_decimal_token1] = ACTIONS(2356), + [aux_sym__val_number_decimal_token2] = ACTIONS(2356), + [anon_sym_DOT2] = ACTIONS(2356), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2356), + [anon_sym_0o] = ACTIONS(2356), + [anon_sym_0x] = ACTIONS(2356), + [sym_val_date] = 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_CARET] = ACTIONS(2356), + [aux_sym_unquoted_token2] = ACTIONS(2356), [anon_sym_POUND] = ACTIONS(113), }, - [879] = { - [sym_comment] = STATE(879), - [anon_sym_export] = ACTIONS(1320), - [anon_sym_alias] = ACTIONS(1320), - [anon_sym_let] = ACTIONS(1320), - [anon_sym_let_DASHenv] = ACTIONS(1320), - [anon_sym_mut] = ACTIONS(1320), - [anon_sym_const] = ACTIONS(1320), - [sym_cmd_identifier] = ACTIONS(1320), - [anon_sym_def] = ACTIONS(1320), - [anon_sym_export_DASHenv] = ACTIONS(1320), - [anon_sym_extern] = ACTIONS(1320), - [anon_sym_module] = ACTIONS(1320), - [anon_sym_use] = ACTIONS(1320), - [anon_sym_LPAREN] = ACTIONS(1320), - [anon_sym_DOLLAR] = ACTIONS(1320), - [anon_sym_error] = ACTIONS(1320), - [anon_sym_list] = ACTIONS(1320), - [anon_sym_GT] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1320), - [anon_sym_continue] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_in] = ACTIONS(1320), - [anon_sym_loop] = ACTIONS(1320), - [anon_sym_make] = ACTIONS(1320), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_do] = ACTIONS(1320), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_else] = ACTIONS(1320), - [anon_sym_match] = ACTIONS(1320), - [anon_sym_RBRACE] = ACTIONS(1320), - [anon_sym_try] = ACTIONS(1320), - [anon_sym_catch] = ACTIONS(1320), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_source] = ACTIONS(1320), - [anon_sym_source_DASHenv] = ACTIONS(1320), - [anon_sym_register] = ACTIONS(1320), - [anon_sym_hide] = ACTIONS(1320), - [anon_sym_hide_DASHenv] = ACTIONS(1320), - [anon_sym_overlay] = ACTIONS(1320), - [anon_sym_new] = ACTIONS(1320), - [anon_sym_as] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_STAR_STAR] = ACTIONS(1320), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_SLASH] = ACTIONS(1320), - [anon_sym_mod] = ACTIONS(1320), - [anon_sym_SLASH_SLASH] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1320), - [anon_sym_bit_DASHshl] = ACTIONS(1320), - [anon_sym_bit_DASHshr] = ACTIONS(1320), - [anon_sym_EQ_EQ] = ACTIONS(1320), - [anon_sym_BANG_EQ] = ACTIONS(1320), - [anon_sym_LT2] = ACTIONS(1320), - [anon_sym_LT_EQ] = ACTIONS(1320), - [anon_sym_GT_EQ] = ACTIONS(1320), - [anon_sym_not_DASHin] = ACTIONS(1320), - [anon_sym_starts_DASHwith] = ACTIONS(1320), - [anon_sym_ends_DASHwith] = ACTIONS(1320), - [anon_sym_EQ_TILDE] = ACTIONS(1320), - [anon_sym_BANG_TILDE] = ACTIONS(1320), - [anon_sym_bit_DASHand] = ACTIONS(1320), - [anon_sym_bit_DASHxor] = ACTIONS(1320), - [anon_sym_bit_DASHor] = ACTIONS(1320), - [anon_sym_and] = ACTIONS(1320), - [anon_sym_xor] = ACTIONS(1320), - [anon_sym_or] = ACTIONS(1320), - [aux_sym__val_number_decimal_token1] = ACTIONS(1320), - [aux_sym__val_number_decimal_token2] = ACTIONS(1320), - [anon_sym_DOT2] = ACTIONS(1320), - [aux_sym__val_number_decimal_token3] = ACTIONS(1320), - [aux_sym__val_number_token1] = ACTIONS(1320), - [aux_sym__val_number_token2] = ACTIONS(1320), - [aux_sym__val_number_token3] = ACTIONS(1320), - [aux_sym__val_number_token4] = ACTIONS(1320), - [aux_sym__val_number_token5] = ACTIONS(1320), - [aux_sym__val_number_token6] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1320), - [sym__str_single_quotes] = ACTIONS(1320), - [sym__str_back_ticks] = ACTIONS(1320), - [sym__entry_separator] = ACTIONS(1322), - [aux_sym__record_key_token2] = ACTIONS(1320), + [1081] = { + [sym_cell_path] = STATE(1523), + [sym_path] = STATE(1108), + [sym_comment] = STATE(1081), + [anon_sym_export] = ACTIONS(1093), + [anon_sym_alias] = ACTIONS(1093), + [anon_sym_let] = ACTIONS(1093), + [anon_sym_let_DASHenv] = ACTIONS(1093), + [anon_sym_mut] = ACTIONS(1093), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_SEMI] = ACTIONS(1093), + [sym_cmd_identifier] = ACTIONS(1093), + [anon_sym_LF] = ACTIONS(1095), + [anon_sym_def] = ACTIONS(1093), + [anon_sym_export_DASHenv] = ACTIONS(1093), + [anon_sym_extern] = ACTIONS(1093), + [anon_sym_module] = ACTIONS(1093), + [anon_sym_use] = ACTIONS(1093), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_LPAREN] = ACTIONS(1093), + [anon_sym_RPAREN] = ACTIONS(1093), + [anon_sym_DOLLAR] = ACTIONS(1093), + [anon_sym_error] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_break] = ACTIONS(1093), + [anon_sym_continue] = ACTIONS(1093), + [anon_sym_for] = ACTIONS(1093), + [anon_sym_loop] = ACTIONS(1093), + [anon_sym_while] = ACTIONS(1093), + [anon_sym_do] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1093), + [anon_sym_match] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1093), + [anon_sym_RBRACE] = ACTIONS(1093), + [anon_sym_DOT_DOT] = ACTIONS(1093), + [anon_sym_try] = ACTIONS(1093), + [anon_sym_return] = ACTIONS(1093), + [anon_sym_source] = ACTIONS(1093), + [anon_sym_source_DASHenv] = ACTIONS(1093), + [anon_sym_register] = ACTIONS(1093), + [anon_sym_hide] = ACTIONS(1093), + [anon_sym_hide_DASHenv] = ACTIONS(1093), + [anon_sym_overlay] = ACTIONS(1093), + [anon_sym_as] = ACTIONS(1093), + [anon_sym_where] = ACTIONS(1093), + [anon_sym_not] = ACTIONS(1093), + [anon_sym_DOT] = ACTIONS(3632), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1093), + [anon_sym_DOT_DOT_LT] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1093), + [anon_sym_true] = ACTIONS(1093), + [anon_sym_false] = ACTIONS(1093), + [aux_sym__val_number_decimal_token1] = ACTIONS(1093), + [aux_sym__val_number_decimal_token2] = ACTIONS(1093), + [anon_sym_DOT2] = ACTIONS(1093), + [aux_sym__val_number_decimal_token3] = ACTIONS(1093), + [aux_sym__val_number_token1] = ACTIONS(1093), + [aux_sym__val_number_token2] = ACTIONS(1093), + [aux_sym__val_number_token3] = ACTIONS(1093), + [aux_sym__val_number_token4] = ACTIONS(1093), + [aux_sym__val_number_token5] = ACTIONS(1093), + [aux_sym__val_number_token6] = ACTIONS(1093), + [anon_sym_0b] = ACTIONS(1093), + [anon_sym_0o] = ACTIONS(1093), + [anon_sym_0x] = ACTIONS(1093), + [sym_val_date] = ACTIONS(1093), + [anon_sym_DQUOTE] = ACTIONS(1093), + [sym__str_single_quotes] = ACTIONS(1093), + [sym__str_back_ticks] = ACTIONS(1093), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1093), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1093), + [anon_sym_CARET] = ACTIONS(1093), [anon_sym_POUND] = ACTIONS(113), }, - [880] = { - [sym_comment] = STATE(880), - [anon_sym_export] = ACTIONS(1280), - [anon_sym_alias] = ACTIONS(1280), - [anon_sym_let] = ACTIONS(1280), - [anon_sym_let_DASHenv] = ACTIONS(1280), - [anon_sym_mut] = ACTIONS(1280), - [anon_sym_const] = ACTIONS(1280), - [sym_cmd_identifier] = ACTIONS(1280), - [anon_sym_def] = ACTIONS(1280), - [anon_sym_export_DASHenv] = ACTIONS(1280), - [anon_sym_extern] = ACTIONS(1280), - [anon_sym_module] = ACTIONS(1280), - [anon_sym_use] = ACTIONS(1280), - [anon_sym_LPAREN] = ACTIONS(1280), - [anon_sym_DOLLAR] = ACTIONS(1280), - [anon_sym_error] = ACTIONS(1280), - [anon_sym_list] = ACTIONS(1280), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_break] = ACTIONS(1280), - [anon_sym_continue] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_in] = ACTIONS(1280), - [anon_sym_loop] = ACTIONS(1280), - [anon_sym_make] = ACTIONS(1280), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_else] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1280), - [anon_sym_RBRACE] = ACTIONS(1280), - [anon_sym_try] = ACTIONS(1280), - [anon_sym_catch] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1280), - [anon_sym_source] = ACTIONS(1280), - [anon_sym_source_DASHenv] = ACTIONS(1280), - [anon_sym_register] = ACTIONS(1280), - [anon_sym_hide] = ACTIONS(1280), - [anon_sym_hide_DASHenv] = ACTIONS(1280), - [anon_sym_overlay] = ACTIONS(1280), - [anon_sym_new] = ACTIONS(1280), - [anon_sym_as] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1280), - [anon_sym_STAR_STAR] = ACTIONS(1280), - [anon_sym_PLUS_PLUS] = ACTIONS(1280), - [anon_sym_SLASH] = ACTIONS(1280), - [anon_sym_mod] = ACTIONS(1280), - [anon_sym_SLASH_SLASH] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_bit_DASHshl] = ACTIONS(1280), - [anon_sym_bit_DASHshr] = ACTIONS(1280), - [anon_sym_EQ_EQ] = ACTIONS(1280), - [anon_sym_BANG_EQ] = ACTIONS(1280), - [anon_sym_LT2] = ACTIONS(1280), - [anon_sym_LT_EQ] = ACTIONS(1280), - [anon_sym_GT_EQ] = ACTIONS(1280), - [anon_sym_not_DASHin] = ACTIONS(1280), - [anon_sym_starts_DASHwith] = ACTIONS(1280), - [anon_sym_ends_DASHwith] = ACTIONS(1280), - [anon_sym_EQ_TILDE] = ACTIONS(1280), - [anon_sym_BANG_TILDE] = ACTIONS(1280), - [anon_sym_bit_DASHand] = ACTIONS(1280), - [anon_sym_bit_DASHxor] = ACTIONS(1280), - [anon_sym_bit_DASHor] = ACTIONS(1280), - [anon_sym_and] = ACTIONS(1280), - [anon_sym_xor] = ACTIONS(1280), - [anon_sym_or] = ACTIONS(1280), - [aux_sym__val_number_decimal_token1] = ACTIONS(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1280), - [anon_sym_DOT2] = ACTIONS(1280), - [aux_sym__val_number_decimal_token3] = ACTIONS(1280), - [aux_sym__val_number_token1] = ACTIONS(1280), - [aux_sym__val_number_token2] = ACTIONS(1280), - [aux_sym__val_number_token3] = ACTIONS(1280), - [aux_sym__val_number_token4] = ACTIONS(1280), - [aux_sym__val_number_token5] = ACTIONS(1280), - [aux_sym__val_number_token6] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1280), - [sym__str_single_quotes] = ACTIONS(1280), - [sym__str_back_ticks] = ACTIONS(1280), - [sym__entry_separator] = ACTIONS(1282), - [aux_sym__record_key_token2] = ACTIONS(1280), + [1082] = { + [sym_comment] = STATE(1082), + [ts_builtin_sym_end] = ACTIONS(2358), + [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), + [anon_sym_SEMI] = ACTIONS(2356), + [sym_cmd_identifier] = ACTIONS(2356), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2356), + [anon_sym_DOLLAR] = ACTIONS(2356), + [anon_sym_error] = ACTIONS(2356), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_loop] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_match] = ACTIONS(2356), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_DOT_DOT] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_source] = ACTIONS(2356), + [anon_sym_source_DASHenv] = ACTIONS(2356), + [anon_sym_register] = 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_where] = ACTIONS(2356), + [anon_sym_not] = ACTIONS(2356), + [anon_sym_DOT_DOT2] = ACTIONS(2356), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2356), + [anon_sym_DOT_DOT_LT] = ACTIONS(2356), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2358), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2358), + [aux_sym__immediate_decimal_token2] = ACTIONS(3584), + [anon_sym_null] = ACTIONS(2356), + [anon_sym_true] = ACTIONS(2356), + [anon_sym_false] = ACTIONS(2356), + [aux_sym__val_number_decimal_token1] = ACTIONS(2356), + [aux_sym__val_number_decimal_token2] = ACTIONS(2356), + [anon_sym_DOT2] = ACTIONS(2356), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2356), + [anon_sym_0o] = ACTIONS(2356), + [anon_sym_0x] = ACTIONS(2356), + [sym_val_date] = 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_CARET] = ACTIONS(2356), [anon_sym_POUND] = ACTIONS(113), }, - [881] = { - [sym_comment] = STATE(881), - [anon_sym_export] = ACTIONS(1280), - [anon_sym_alias] = ACTIONS(1280), - [anon_sym_let] = ACTIONS(1280), - [anon_sym_let_DASHenv] = ACTIONS(1280), - [anon_sym_mut] = ACTIONS(1280), - [anon_sym_const] = ACTIONS(1280), - [sym_cmd_identifier] = ACTIONS(1280), - [anon_sym_def] = ACTIONS(1280), - [anon_sym_export_DASHenv] = ACTIONS(1280), - [anon_sym_extern] = ACTIONS(1280), - [anon_sym_module] = ACTIONS(1280), - [anon_sym_use] = ACTIONS(1280), - [anon_sym_LPAREN] = ACTIONS(1282), - [anon_sym_DOLLAR] = ACTIONS(1280), - [anon_sym_error] = ACTIONS(1280), - [anon_sym_list] = ACTIONS(1280), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_break] = ACTIONS(1280), - [anon_sym_continue] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_in] = ACTIONS(1280), - [anon_sym_loop] = ACTIONS(1280), - [anon_sym_make] = ACTIONS(1280), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_else] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1280), - [anon_sym_RBRACE] = ACTIONS(1282), - [anon_sym_try] = ACTIONS(1280), - [anon_sym_catch] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1280), - [anon_sym_source] = ACTIONS(1280), - [anon_sym_source_DASHenv] = ACTIONS(1280), - [anon_sym_register] = ACTIONS(1280), - [anon_sym_hide] = ACTIONS(1280), - [anon_sym_hide_DASHenv] = ACTIONS(1280), - [anon_sym_overlay] = ACTIONS(1280), - [anon_sym_new] = ACTIONS(1280), - [anon_sym_as] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1280), - [anon_sym_STAR_STAR] = ACTIONS(1280), - [anon_sym_PLUS_PLUS] = ACTIONS(1280), - [anon_sym_SLASH] = ACTIONS(1280), - [anon_sym_mod] = ACTIONS(1280), - [anon_sym_SLASH_SLASH] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_bit_DASHshl] = ACTIONS(1280), - [anon_sym_bit_DASHshr] = ACTIONS(1280), - [anon_sym_EQ_EQ] = ACTIONS(1280), - [anon_sym_BANG_EQ] = ACTIONS(1280), - [anon_sym_LT2] = ACTIONS(1280), - [anon_sym_LT_EQ] = ACTIONS(1280), - [anon_sym_GT_EQ] = ACTIONS(1280), - [anon_sym_not_DASHin] = ACTIONS(1280), - [anon_sym_starts_DASHwith] = ACTIONS(1280), - [anon_sym_ends_DASHwith] = ACTIONS(1280), - [anon_sym_EQ_TILDE] = ACTIONS(1280), - [anon_sym_BANG_TILDE] = ACTIONS(1280), - [anon_sym_bit_DASHand] = ACTIONS(1280), - [anon_sym_bit_DASHxor] = ACTIONS(1280), - [anon_sym_bit_DASHor] = ACTIONS(1280), - [anon_sym_and] = ACTIONS(1280), - [anon_sym_xor] = ACTIONS(1280), - [anon_sym_or] = ACTIONS(1280), - [aux_sym__val_number_decimal_token1] = ACTIONS(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1280), - [anon_sym_DOT2] = ACTIONS(1280), - [aux_sym__val_number_decimal_token3] = ACTIONS(1280), - [aux_sym__val_number_token1] = ACTIONS(1280), - [aux_sym__val_number_token2] = ACTIONS(1280), - [aux_sym__val_number_token3] = ACTIONS(1280), - [aux_sym__val_number_token4] = ACTIONS(1280), - [aux_sym__val_number_token5] = ACTIONS(1280), - [aux_sym__val_number_token6] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1282), - [sym__str_single_quotes] = ACTIONS(1282), - [sym__str_back_ticks] = ACTIONS(1282), - [aux_sym__record_key_token2] = ACTIONS(1280), - [aux_sym_unquoted_token6] = ACTIONS(1280), + [1083] = { + [sym_comment] = STATE(1083), + [ts_builtin_sym_end] = ACTIONS(1039), + [anon_sym_export] = ACTIONS(1037), + [anon_sym_alias] = ACTIONS(1037), + [anon_sym_let] = ACTIONS(1037), + [anon_sym_let_DASHenv] = ACTIONS(1037), + [anon_sym_mut] = ACTIONS(1037), + [anon_sym_const] = ACTIONS(1037), + [anon_sym_SEMI] = ACTIONS(1037), + [sym_cmd_identifier] = ACTIONS(1037), + [anon_sym_LF] = ACTIONS(1039), + [anon_sym_def] = ACTIONS(1037), + [anon_sym_export_DASHenv] = ACTIONS(1037), + [anon_sym_extern] = ACTIONS(1037), + [anon_sym_module] = ACTIONS(1037), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_LBRACK] = ACTIONS(1037), + [anon_sym_LPAREN] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1037), + [anon_sym_error] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_break] = ACTIONS(1037), + [anon_sym_continue] = ACTIONS(1037), + [anon_sym_for] = ACTIONS(1037), + [anon_sym_loop] = ACTIONS(1037), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_do] = ACTIONS(1037), + [anon_sym_if] = ACTIONS(1037), + [anon_sym_match] = ACTIONS(1037), + [anon_sym_LBRACE] = ACTIONS(1037), + [anon_sym_DOT_DOT] = ACTIONS(1037), + [anon_sym_try] = ACTIONS(1037), + [anon_sym_return] = ACTIONS(1037), + [anon_sym_source] = ACTIONS(1037), + [anon_sym_source_DASHenv] = ACTIONS(1037), + [anon_sym_register] = ACTIONS(1037), + [anon_sym_hide] = ACTIONS(1037), + [anon_sym_hide_DASHenv] = ACTIONS(1037), + [anon_sym_overlay] = ACTIONS(1037), + [anon_sym_as] = ACTIONS(1037), + [anon_sym_where] = ACTIONS(1037), + [anon_sym_not] = ACTIONS(1037), + [anon_sym_DOT_DOT2] = ACTIONS(1037), + [anon_sym_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1037), + [anon_sym_DOT_DOT_LT] = ACTIONS(1037), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1039), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1039), + [anon_sym_null] = ACTIONS(1037), + [anon_sym_true] = ACTIONS(1037), + [anon_sym_false] = ACTIONS(1037), + [aux_sym__val_number_decimal_token1] = ACTIONS(1037), + [aux_sym__val_number_decimal_token2] = ACTIONS(1037), + [anon_sym_DOT2] = ACTIONS(1037), + [aux_sym__val_number_decimal_token3] = ACTIONS(1037), + [aux_sym__val_number_token1] = ACTIONS(1037), + [aux_sym__val_number_token2] = ACTIONS(1037), + [aux_sym__val_number_token3] = ACTIONS(1037), + [aux_sym__val_number_token4] = ACTIONS(1037), + [aux_sym__val_number_token5] = ACTIONS(1037), + [aux_sym__val_number_token6] = ACTIONS(1037), + [anon_sym_0b] = ACTIONS(1037), + [anon_sym_0o] = ACTIONS(1037), + [anon_sym_0x] = ACTIONS(1037), + [sym_val_date] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1037), + [sym__str_single_quotes] = ACTIONS(1037), + [sym__str_back_ticks] = ACTIONS(1037), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1037), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1037), + [anon_sym_CARET] = ACTIONS(1037), [anon_sym_POUND] = ACTIONS(113), }, - [882] = { - [sym_comment] = STATE(882), - [anon_sym_export] = ACTIONS(1186), - [anon_sym_alias] = ACTIONS(1186), - [anon_sym_let] = ACTIONS(1186), - [anon_sym_let_DASHenv] = ACTIONS(1186), - [anon_sym_mut] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1186), - [sym_cmd_identifier] = ACTIONS(1186), - [anon_sym_def] = ACTIONS(1186), - [anon_sym_export_DASHenv] = ACTIONS(1186), - [anon_sym_extern] = ACTIONS(1186), - [anon_sym_module] = ACTIONS(1186), - [anon_sym_use] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(1186), - [anon_sym_DOLLAR] = ACTIONS(1186), - [anon_sym_error] = ACTIONS(1186), - [anon_sym_list] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1186), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1186), - [anon_sym_in] = ACTIONS(1186), - [anon_sym_loop] = ACTIONS(1186), - [anon_sym_make] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_do] = ACTIONS(1186), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_else] = ACTIONS(1186), - [anon_sym_match] = ACTIONS(1186), - [anon_sym_RBRACE] = ACTIONS(1186), - [anon_sym_try] = ACTIONS(1186), - [anon_sym_catch] = ACTIONS(1186), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_source] = ACTIONS(1186), - [anon_sym_source_DASHenv] = ACTIONS(1186), - [anon_sym_register] = ACTIONS(1186), - [anon_sym_hide] = ACTIONS(1186), - [anon_sym_hide_DASHenv] = ACTIONS(1186), - [anon_sym_overlay] = ACTIONS(1186), - [anon_sym_new] = ACTIONS(1186), - [anon_sym_as] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_STAR_STAR] = ACTIONS(1186), - [anon_sym_PLUS_PLUS] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_mod] = ACTIONS(1186), - [anon_sym_SLASH_SLASH] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_bit_DASHshl] = ACTIONS(1186), - [anon_sym_bit_DASHshr] = ACTIONS(1186), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_LT2] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1186), - [anon_sym_GT_EQ] = ACTIONS(1186), - [anon_sym_not_DASHin] = ACTIONS(1186), - [anon_sym_starts_DASHwith] = ACTIONS(1186), - [anon_sym_ends_DASHwith] = ACTIONS(1186), - [anon_sym_EQ_TILDE] = ACTIONS(1186), - [anon_sym_BANG_TILDE] = ACTIONS(1186), - [anon_sym_bit_DASHand] = ACTIONS(1186), - [anon_sym_bit_DASHxor] = ACTIONS(1186), - [anon_sym_bit_DASHor] = ACTIONS(1186), - [anon_sym_and] = ACTIONS(1186), - [anon_sym_xor] = ACTIONS(1186), - [anon_sym_or] = ACTIONS(1186), - [aux_sym__val_number_decimal_token1] = ACTIONS(1186), - [aux_sym__val_number_decimal_token2] = ACTIONS(1186), - [anon_sym_DOT2] = ACTIONS(1186), - [aux_sym__val_number_decimal_token3] = ACTIONS(1186), - [aux_sym__val_number_token1] = ACTIONS(1186), - [aux_sym__val_number_token2] = ACTIONS(1186), - [aux_sym__val_number_token3] = ACTIONS(1186), - [aux_sym__val_number_token4] = ACTIONS(1186), - [aux_sym__val_number_token5] = ACTIONS(1186), - [aux_sym__val_number_token6] = ACTIONS(1186), - [anon_sym_DQUOTE] = ACTIONS(1186), - [sym__str_single_quotes] = ACTIONS(1186), - [sym__str_back_ticks] = ACTIONS(1186), - [sym__entry_separator] = ACTIONS(1188), - [aux_sym__record_key_token2] = ACTIONS(1186), + [1084] = { + [sym__expression] = STATE(10405), + [sym_expr_unary] = STATE(5743), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5743), + [sym__expr_binary_expression] = STATE(6383), + [sym_expr_parenthesized] = STATE(5960), + [sym_val_range] = STATE(6728), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5743), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6234), + [sym_val_variable] = STATE(5903), + [sym__var] = STATE(3929), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4844), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(10406), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1084), + [anon_sym_COLON] = ACTIONS(3655), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(3100), + [anon_sym_DOLLAR] = ACTIONS(3102), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(3663), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3667), + [anon_sym_DOT_DOT_LT] = ACTIONS(3667), + [anon_sym_null] = ACTIONS(3669), + [anon_sym_true] = ACTIONS(3671), + [anon_sym_false] = ACTIONS(3671), + [aux_sym__val_number_decimal_token1] = ACTIONS(3673), + [aux_sym__val_number_decimal_token2] = ACTIONS(3675), + [anon_sym_DOT2] = ACTIONS(3677), + [aux_sym__val_number_decimal_token3] = ACTIONS(3679), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(3681), + [aux_sym__val_number_token5] = ACTIONS(3681), + [aux_sym__val_number_token6] = ACTIONS(3681), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(3683), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), + [anon_sym_POUND] = ACTIONS(3), + }, + [1085] = { + [sym_ctrl_do] = STATE(8871), + [sym_ctrl_if] = STATE(8871), + [sym_ctrl_match] = STATE(8871), + [sym_ctrl_try] = STATE(8871), + [sym__expression] = STATE(8871), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(4804), + [sym__var] = STATE(4386), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_comment] = STATE(1085), + [anon_sym_SEMI] = ACTIONS(3586), + [anon_sym_LF] = ACTIONS(3588), + [anon_sym_LBRACK] = ACTIONS(3592), + [anon_sym_LPAREN] = ACTIONS(3594), + [anon_sym_RPAREN] = ACTIONS(3586), + [anon_sym_PIPE] = ACTIONS(3586), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(3596), + [anon_sym_RBRACE] = ACTIONS(3586), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_try] = ACTIONS(411), + [anon_sym_not] = ACTIONS(191), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3598), + [anon_sym_DOT_DOT_LT] = ACTIONS(3598), + [anon_sym_null] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [aux_sym__val_number_decimal_token1] = ACTIONS(199), + [aux_sym__val_number_decimal_token2] = ACTIONS(199), + [anon_sym_DOT2] = ACTIONS(203), + [aux_sym__val_number_decimal_token3] = ACTIONS(3600), + [aux_sym__val_number_token1] = ACTIONS(209), + [aux_sym__val_number_token2] = ACTIONS(209), + [aux_sym__val_number_token3] = ACTIONS(209), + [aux_sym__val_number_token4] = ACTIONS(209), + [aux_sym__val_number_token5] = ACTIONS(209), + [aux_sym__val_number_token6] = ACTIONS(209), + [anon_sym_0b] = ACTIONS(211), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(3602), + [anon_sym_DQUOTE] = ACTIONS(3604), + [sym__str_single_quotes] = ACTIONS(3606), + [sym__str_back_ticks] = ACTIONS(3606), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3608), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3610), [anon_sym_POUND] = ACTIONS(113), }, - [883] = { - [sym_comment] = STATE(883), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_alias] = ACTIONS(1332), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_let_DASHenv] = ACTIONS(1332), - [anon_sym_mut] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [sym_cmd_identifier] = ACTIONS(1332), - [anon_sym_def] = ACTIONS(1332), - [anon_sym_export_DASHenv] = ACTIONS(1332), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_use] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1332), - [anon_sym_DOLLAR] = ACTIONS(1332), - [anon_sym_error] = ACTIONS(1332), - [anon_sym_list] = ACTIONS(1332), - [anon_sym_GT] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_in] = ACTIONS(1332), - [anon_sym_loop] = ACTIONS(1332), - [anon_sym_make] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_do] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_else] = ACTIONS(1332), - [anon_sym_match] = ACTIONS(1332), - [anon_sym_RBRACE] = ACTIONS(1332), - [anon_sym_try] = ACTIONS(1332), - [anon_sym_catch] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_source] = ACTIONS(1332), - [anon_sym_source_DASHenv] = ACTIONS(1332), - [anon_sym_register] = ACTIONS(1332), - [anon_sym_hide] = ACTIONS(1332), - [anon_sym_hide_DASHenv] = ACTIONS(1332), - [anon_sym_overlay] = ACTIONS(1332), - [anon_sym_new] = ACTIONS(1332), - [anon_sym_as] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_STAR_STAR] = ACTIONS(1332), - [anon_sym_PLUS_PLUS] = ACTIONS(1332), - [anon_sym_SLASH] = ACTIONS(1332), - [anon_sym_mod] = ACTIONS(1332), - [anon_sym_SLASH_SLASH] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_bit_DASHshl] = ACTIONS(1332), - [anon_sym_bit_DASHshr] = ACTIONS(1332), - [anon_sym_EQ_EQ] = ACTIONS(1332), - [anon_sym_BANG_EQ] = ACTIONS(1332), - [anon_sym_LT2] = ACTIONS(1332), - [anon_sym_LT_EQ] = ACTIONS(1332), - [anon_sym_GT_EQ] = ACTIONS(1332), - [anon_sym_not_DASHin] = ACTIONS(1332), - [anon_sym_starts_DASHwith] = ACTIONS(1332), - [anon_sym_ends_DASHwith] = ACTIONS(1332), - [anon_sym_EQ_TILDE] = ACTIONS(1332), - [anon_sym_BANG_TILDE] = ACTIONS(1332), - [anon_sym_bit_DASHand] = ACTIONS(1332), - [anon_sym_bit_DASHxor] = ACTIONS(1332), - [anon_sym_bit_DASHor] = ACTIONS(1332), - [anon_sym_and] = ACTIONS(1332), - [anon_sym_xor] = ACTIONS(1332), - [anon_sym_or] = ACTIONS(1332), - [aux_sym__val_number_decimal_token1] = ACTIONS(1332), - [aux_sym__val_number_decimal_token2] = ACTIONS(1332), - [anon_sym_DOT2] = ACTIONS(1332), - [aux_sym__val_number_decimal_token3] = ACTIONS(1332), - [aux_sym__val_number_token1] = ACTIONS(1332), - [aux_sym__val_number_token2] = ACTIONS(1332), - [aux_sym__val_number_token3] = ACTIONS(1332), - [aux_sym__val_number_token4] = ACTIONS(1332), - [aux_sym__val_number_token5] = ACTIONS(1332), - [aux_sym__val_number_token6] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym__str_single_quotes] = ACTIONS(1332), - [sym__str_back_ticks] = ACTIONS(1332), - [sym__entry_separator] = ACTIONS(1334), - [aux_sym__record_key_token2] = ACTIONS(1332), + [1086] = { + [sym_comment] = STATE(1086), + [ts_builtin_sym_end] = ACTIONS(2231), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_alias] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_let_DASHenv] = ACTIONS(2229), + [anon_sym_mut] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2229), + [sym_cmd_identifier] = ACTIONS(2229), + [anon_sym_LF] = ACTIONS(2231), + [anon_sym_def] = ACTIONS(2229), + [anon_sym_export_DASHenv] = ACTIONS(2229), + [anon_sym_extern] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2229), + [anon_sym_error] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_loop] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_source] = ACTIONS(2229), + [anon_sym_source_DASHenv] = ACTIONS(2229), + [anon_sym_register] = ACTIONS(2229), + [anon_sym_hide] = ACTIONS(2229), + [anon_sym_hide_DASHenv] = ACTIONS(2229), + [anon_sym_overlay] = ACTIONS(2229), + [anon_sym_as] = ACTIONS(2229), + [anon_sym_where] = ACTIONS(2229), + [anon_sym_not] = ACTIONS(2229), + [anon_sym_DOT_DOT2] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2229), + [anon_sym_DOT_DOT_LT] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2231), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2231), + [aux_sym__immediate_decimal_token2] = ACTIONS(3558), + [anon_sym_null] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [aux_sym__val_number_decimal_token1] = ACTIONS(2229), + [aux_sym__val_number_decimal_token2] = ACTIONS(2229), + [anon_sym_DOT2] = ACTIONS(2229), + [aux_sym__val_number_decimal_token3] = ACTIONS(2229), + [aux_sym__val_number_token1] = ACTIONS(2229), + [aux_sym__val_number_token2] = ACTIONS(2229), + [aux_sym__val_number_token3] = ACTIONS(2229), + [aux_sym__val_number_token4] = ACTIONS(2229), + [aux_sym__val_number_token5] = ACTIONS(2229), + [aux_sym__val_number_token6] = ACTIONS(2229), + [anon_sym_0b] = ACTIONS(2229), + [anon_sym_0o] = ACTIONS(2229), + [anon_sym_0x] = ACTIONS(2229), + [sym_val_date] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2229), + [anon_sym_CARET] = ACTIONS(2229), [anon_sym_POUND] = ACTIONS(113), }, - [884] = { - [sym_comment] = STATE(884), - [anon_sym_export] = ACTIONS(959), - [anon_sym_alias] = ACTIONS(959), - [anon_sym_let] = ACTIONS(959), - [anon_sym_let_DASHenv] = ACTIONS(959), - [anon_sym_mut] = ACTIONS(959), - [anon_sym_const] = ACTIONS(959), - [sym_cmd_identifier] = ACTIONS(959), - [anon_sym_def] = ACTIONS(959), - [anon_sym_export_DASHenv] = ACTIONS(959), - [anon_sym_extern] = ACTIONS(959), - [anon_sym_module] = ACTIONS(959), - [anon_sym_use] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_error] = ACTIONS(959), - [anon_sym_list] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_break] = ACTIONS(959), - [anon_sym_continue] = ACTIONS(959), - [anon_sym_for] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_loop] = ACTIONS(959), - [anon_sym_make] = ACTIONS(959), - [anon_sym_while] = ACTIONS(959), - [anon_sym_do] = ACTIONS(959), - [anon_sym_if] = ACTIONS(959), - [anon_sym_else] = ACTIONS(959), - [anon_sym_match] = ACTIONS(959), - [anon_sym_RBRACE] = ACTIONS(959), - [anon_sym_try] = ACTIONS(959), - [anon_sym_catch] = ACTIONS(959), - [anon_sym_return] = ACTIONS(959), - [anon_sym_source] = ACTIONS(959), - [anon_sym_source_DASHenv] = ACTIONS(959), - [anon_sym_register] = ACTIONS(959), - [anon_sym_hide] = ACTIONS(959), - [anon_sym_hide_DASHenv] = ACTIONS(959), - [anon_sym_overlay] = ACTIONS(959), - [anon_sym_new] = ACTIONS(959), - [anon_sym_as] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(959), - [anon_sym_PLUS_PLUS] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(959), - [anon_sym_SLASH_SLASH] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(959), - [anon_sym_bit_DASHshr] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(959), - [anon_sym_BANG_EQ] = ACTIONS(959), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(959), - [anon_sym_GT_EQ] = ACTIONS(959), - [anon_sym_not_DASHin] = ACTIONS(959), - [anon_sym_starts_DASHwith] = ACTIONS(959), - [anon_sym_ends_DASHwith] = ACTIONS(959), - [anon_sym_EQ_TILDE] = ACTIONS(959), - [anon_sym_BANG_TILDE] = ACTIONS(959), - [anon_sym_bit_DASHand] = ACTIONS(959), - [anon_sym_bit_DASHxor] = ACTIONS(959), - [anon_sym_bit_DASHor] = ACTIONS(959), - [anon_sym_and] = ACTIONS(959), - [anon_sym_xor] = ACTIONS(959), - [anon_sym_or] = ACTIONS(959), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(959), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(959), - [aux_sym__val_number_token1] = ACTIONS(959), - [aux_sym__val_number_token2] = ACTIONS(959), - [aux_sym__val_number_token3] = ACTIONS(959), - [aux_sym__val_number_token4] = ACTIONS(959), - [aux_sym__val_number_token5] = ACTIONS(959), - [aux_sym__val_number_token6] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [sym__str_single_quotes] = ACTIONS(959), - [sym__str_back_ticks] = ACTIONS(959), - [sym__entry_separator] = ACTIONS(961), - [aux_sym__record_key_token2] = ACTIONS(959), + [1087] = { + [sym_comment] = STATE(1087), + [ts_builtin_sym_end] = ACTIONS(1043), + [anon_sym_export] = ACTIONS(1041), + [anon_sym_alias] = ACTIONS(1041), + [anon_sym_let] = ACTIONS(1041), + [anon_sym_let_DASHenv] = ACTIONS(1041), + [anon_sym_mut] = ACTIONS(1041), + [anon_sym_const] = ACTIONS(1041), + [anon_sym_SEMI] = ACTIONS(1041), + [sym_cmd_identifier] = ACTIONS(1041), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_def] = ACTIONS(1041), + [anon_sym_export_DASHenv] = ACTIONS(1041), + [anon_sym_extern] = ACTIONS(1041), + [anon_sym_module] = ACTIONS(1041), + [anon_sym_use] = ACTIONS(1041), + [anon_sym_LBRACK] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1041), + [anon_sym_DOLLAR] = ACTIONS(1041), + [anon_sym_error] = ACTIONS(1041), + [anon_sym_DASH_DASH] = ACTIONS(1041), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_break] = ACTIONS(1041), + [anon_sym_continue] = ACTIONS(1041), + [anon_sym_for] = ACTIONS(1041), + [anon_sym_loop] = ACTIONS(1041), + [anon_sym_while] = ACTIONS(1041), + [anon_sym_do] = ACTIONS(1041), + [anon_sym_if] = ACTIONS(1041), + [anon_sym_match] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_DOT_DOT] = ACTIONS(1041), + [anon_sym_try] = ACTIONS(1041), + [anon_sym_return] = ACTIONS(1041), + [anon_sym_source] = ACTIONS(1041), + [anon_sym_source_DASHenv] = ACTIONS(1041), + [anon_sym_register] = ACTIONS(1041), + [anon_sym_hide] = ACTIONS(1041), + [anon_sym_hide_DASHenv] = ACTIONS(1041), + [anon_sym_overlay] = ACTIONS(1041), + [anon_sym_as] = ACTIONS(1041), + [anon_sym_where] = ACTIONS(1041), + [anon_sym_not] = ACTIONS(1041), + [anon_sym_DOT_DOT2] = ACTIONS(1041), + [anon_sym_DOT] = ACTIONS(1041), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1041), + [anon_sym_DOT_DOT_LT] = ACTIONS(1041), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1043), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1043), + [anon_sym_null] = ACTIONS(1041), + [anon_sym_true] = ACTIONS(1041), + [anon_sym_false] = ACTIONS(1041), + [aux_sym__val_number_decimal_token1] = ACTIONS(1041), + [aux_sym__val_number_decimal_token2] = ACTIONS(1041), + [anon_sym_DOT2] = ACTIONS(1041), + [aux_sym__val_number_decimal_token3] = ACTIONS(1041), + [aux_sym__val_number_token1] = ACTIONS(1041), + [aux_sym__val_number_token2] = ACTIONS(1041), + [aux_sym__val_number_token3] = ACTIONS(1041), + [aux_sym__val_number_token4] = ACTIONS(1041), + [aux_sym__val_number_token5] = ACTIONS(1041), + [aux_sym__val_number_token6] = ACTIONS(1041), + [anon_sym_0b] = ACTIONS(1041), + [anon_sym_0o] = ACTIONS(1041), + [anon_sym_0x] = ACTIONS(1041), + [sym_val_date] = ACTIONS(1041), + [anon_sym_DQUOTE] = ACTIONS(1041), + [sym__str_single_quotes] = ACTIONS(1041), + [sym__str_back_ticks] = ACTIONS(1041), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1041), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1041), + [anon_sym_CARET] = ACTIONS(1041), [anon_sym_POUND] = ACTIONS(113), }, - [885] = { - [sym_comment] = STATE(885), - [anon_sym_export] = ACTIONS(1336), - [anon_sym_alias] = ACTIONS(1336), - [anon_sym_let] = ACTIONS(1336), - [anon_sym_let_DASHenv] = ACTIONS(1336), - [anon_sym_mut] = ACTIONS(1336), - [anon_sym_const] = ACTIONS(1336), - [sym_cmd_identifier] = ACTIONS(1336), - [anon_sym_def] = ACTIONS(1336), - [anon_sym_export_DASHenv] = ACTIONS(1336), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym_module] = ACTIONS(1336), - [anon_sym_use] = ACTIONS(1336), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_DOLLAR] = ACTIONS(1336), - [anon_sym_error] = ACTIONS(1336), - [anon_sym_list] = ACTIONS(1336), - [anon_sym_GT] = ACTIONS(1336), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_break] = ACTIONS(1336), - [anon_sym_continue] = ACTIONS(1336), - [anon_sym_for] = ACTIONS(1336), - [anon_sym_in] = ACTIONS(1336), - [anon_sym_loop] = ACTIONS(1336), - [anon_sym_make] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1336), - [anon_sym_do] = ACTIONS(1336), - [anon_sym_if] = ACTIONS(1336), - [anon_sym_else] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1336), - [anon_sym_RBRACE] = ACTIONS(1336), - [anon_sym_try] = ACTIONS(1336), - [anon_sym_catch] = ACTIONS(1336), - [anon_sym_return] = ACTIONS(1336), - [anon_sym_source] = ACTIONS(1336), - [anon_sym_source_DASHenv] = ACTIONS(1336), - [anon_sym_register] = ACTIONS(1336), - [anon_sym_hide] = ACTIONS(1336), - [anon_sym_hide_DASHenv] = ACTIONS(1336), - [anon_sym_overlay] = ACTIONS(1336), - [anon_sym_new] = ACTIONS(1336), - [anon_sym_as] = ACTIONS(1336), - [anon_sym_STAR] = ACTIONS(1336), - [anon_sym_STAR_STAR] = ACTIONS(1336), - [anon_sym_PLUS_PLUS] = ACTIONS(1336), - [anon_sym_SLASH] = ACTIONS(1336), - [anon_sym_mod] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(1336), - [anon_sym_PLUS] = ACTIONS(1336), - [anon_sym_bit_DASHshl] = ACTIONS(1336), - [anon_sym_bit_DASHshr] = ACTIONS(1336), - [anon_sym_EQ_EQ] = ACTIONS(1336), - [anon_sym_BANG_EQ] = ACTIONS(1336), - [anon_sym_LT2] = ACTIONS(1336), - [anon_sym_LT_EQ] = ACTIONS(1336), - [anon_sym_GT_EQ] = ACTIONS(1336), - [anon_sym_not_DASHin] = ACTIONS(1336), - [anon_sym_starts_DASHwith] = ACTIONS(1336), - [anon_sym_ends_DASHwith] = ACTIONS(1336), - [anon_sym_EQ_TILDE] = ACTIONS(1336), - [anon_sym_BANG_TILDE] = ACTIONS(1336), - [anon_sym_bit_DASHand] = ACTIONS(1336), - [anon_sym_bit_DASHxor] = ACTIONS(1336), - [anon_sym_bit_DASHor] = ACTIONS(1336), - [anon_sym_and] = ACTIONS(1336), - [anon_sym_xor] = ACTIONS(1336), - [anon_sym_or] = ACTIONS(1336), - [aux_sym__val_number_decimal_token1] = ACTIONS(1336), - [aux_sym__val_number_decimal_token2] = ACTIONS(1336), - [anon_sym_DOT2] = ACTIONS(1336), - [aux_sym__val_number_decimal_token3] = ACTIONS(1336), - [aux_sym__val_number_token1] = ACTIONS(1336), - [aux_sym__val_number_token2] = ACTIONS(1336), - [aux_sym__val_number_token3] = ACTIONS(1336), - [aux_sym__val_number_token4] = ACTIONS(1336), - [aux_sym__val_number_token5] = ACTIONS(1336), - [aux_sym__val_number_token6] = ACTIONS(1336), - [anon_sym_DQUOTE] = ACTIONS(1336), - [sym__str_single_quotes] = ACTIONS(1336), - [sym__str_back_ticks] = ACTIONS(1336), - [sym__entry_separator] = ACTIONS(1338), - [aux_sym__record_key_token2] = ACTIONS(1336), + [1088] = { + [sym_comment] = STATE(1088), + [anon_sym_LBRACK] = ACTIONS(1049), + [anon_sym_COMMA] = ACTIONS(1049), + [anon_sym_RBRACK] = ACTIONS(1049), + [anon_sym_LPAREN] = ACTIONS(1049), + [anon_sym_DOLLAR] = ACTIONS(1049), + [anon_sym_GT] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_in] = ACTIONS(1047), + [anon_sym_LBRACE] = ACTIONS(1049), + [anon_sym_DOT_DOT] = ACTIONS(1047), + [anon_sym_STAR] = ACTIONS(1047), + [anon_sym_STAR_STAR] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1049), + [anon_sym_SLASH] = ACTIONS(1047), + [anon_sym_mod] = ACTIONS(1049), + [anon_sym_SLASH_SLASH] = ACTIONS(1049), + [anon_sym_PLUS] = ACTIONS(1047), + [anon_sym_bit_DASHshl] = ACTIONS(1049), + [anon_sym_bit_DASHshr] = ACTIONS(1049), + [anon_sym_EQ_EQ] = ACTIONS(1049), + [anon_sym_BANG_EQ] = ACTIONS(1049), + [anon_sym_LT2] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1049), + [anon_sym_GT_EQ] = ACTIONS(1049), + [anon_sym_not_DASHin] = ACTIONS(1049), + [anon_sym_starts_DASHwith] = ACTIONS(1049), + [anon_sym_ends_DASHwith] = ACTIONS(1049), + [anon_sym_EQ_TILDE] = ACTIONS(1049), + [anon_sym_BANG_TILDE] = ACTIONS(1049), + [anon_sym_bit_DASHand] = ACTIONS(1049), + [anon_sym_bit_DASHxor] = ACTIONS(1049), + [anon_sym_bit_DASHor] = ACTIONS(1049), + [anon_sym_and] = ACTIONS(1049), + [anon_sym_xor] = ACTIONS(1049), + [anon_sym_or] = ACTIONS(1049), + [anon_sym_DOT_DOT2] = ACTIONS(1047), + [anon_sym_DOT] = ACTIONS(1047), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1047), + [anon_sym_DOT_DOT_LT] = ACTIONS(1047), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1049), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1049), + [anon_sym_null] = ACTIONS(1049), + [anon_sym_true] = ACTIONS(1049), + [anon_sym_false] = ACTIONS(1049), + [aux_sym__val_number_decimal_token1] = ACTIONS(1047), + [aux_sym__val_number_decimal_token2] = ACTIONS(1049), + [anon_sym_DOT2] = ACTIONS(1047), + [aux_sym__val_number_decimal_token3] = ACTIONS(1049), + [aux_sym__val_number_token1] = ACTIONS(1049), + [aux_sym__val_number_token2] = ACTIONS(1049), + [aux_sym__val_number_token3] = ACTIONS(1049), + [aux_sym__val_number_token4] = ACTIONS(1049), + [aux_sym__val_number_token5] = ACTIONS(1049), + [aux_sym__val_number_token6] = ACTIONS(1049), + [anon_sym_0b] = ACTIONS(1047), + [anon_sym_0o] = ACTIONS(1047), + [anon_sym_0x] = ACTIONS(1047), + [sym_val_date] = ACTIONS(1049), + [anon_sym_DQUOTE] = ACTIONS(1049), + [sym__str_single_quotes] = ACTIONS(1049), + [sym__str_back_ticks] = ACTIONS(1049), + [anon_sym_err_GT] = ACTIONS(1049), + [anon_sym_out_GT] = ACTIONS(1049), + [anon_sym_e_GT] = ACTIONS(1049), + [anon_sym_o_GT] = ACTIONS(1049), + [anon_sym_err_PLUSout_GT] = ACTIONS(1049), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1049), + [anon_sym_o_PLUSe_GT] = ACTIONS(1049), + [anon_sym_e_PLUSo_GT] = ACTIONS(1049), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1047), + [anon_sym_POUND] = ACTIONS(3), + }, + [1089] = { + [sym_cell_path] = STATE(1446), + [sym_path] = STATE(1108), + [sym_comment] = STATE(1089), + [anon_sym_export] = ACTIONS(1057), + [anon_sym_alias] = ACTIONS(1057), + [anon_sym_let] = ACTIONS(1057), + [anon_sym_let_DASHenv] = ACTIONS(1057), + [anon_sym_mut] = ACTIONS(1057), + [anon_sym_const] = ACTIONS(1057), + [anon_sym_SEMI] = ACTIONS(1057), + [sym_cmd_identifier] = ACTIONS(1057), + [anon_sym_LF] = ACTIONS(1059), + [anon_sym_def] = ACTIONS(1057), + [anon_sym_export_DASHenv] = ACTIONS(1057), + [anon_sym_extern] = ACTIONS(1057), + [anon_sym_module] = ACTIONS(1057), + [anon_sym_use] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_LPAREN] = ACTIONS(1057), + [anon_sym_RPAREN] = ACTIONS(1057), + [anon_sym_DOLLAR] = ACTIONS(1057), + [anon_sym_error] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_break] = ACTIONS(1057), + [anon_sym_continue] = ACTIONS(1057), + [anon_sym_for] = ACTIONS(1057), + [anon_sym_loop] = ACTIONS(1057), + [anon_sym_while] = ACTIONS(1057), + [anon_sym_do] = ACTIONS(1057), + [anon_sym_if] = ACTIONS(1057), + [anon_sym_match] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_try] = ACTIONS(1057), + [anon_sym_return] = ACTIONS(1057), + [anon_sym_source] = ACTIONS(1057), + [anon_sym_source_DASHenv] = ACTIONS(1057), + [anon_sym_register] = ACTIONS(1057), + [anon_sym_hide] = ACTIONS(1057), + [anon_sym_hide_DASHenv] = ACTIONS(1057), + [anon_sym_overlay] = ACTIONS(1057), + [anon_sym_as] = ACTIONS(1057), + [anon_sym_where] = ACTIONS(1057), + [anon_sym_not] = ACTIONS(1057), + [anon_sym_DOT] = ACTIONS(3632), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1057), + [anon_sym_DOT_DOT_LT] = ACTIONS(1057), + [anon_sym_null] = ACTIONS(1057), + [anon_sym_true] = ACTIONS(1057), + [anon_sym_false] = ACTIONS(1057), + [aux_sym__val_number_decimal_token1] = ACTIONS(1057), + [aux_sym__val_number_decimal_token2] = ACTIONS(1057), + [anon_sym_DOT2] = ACTIONS(1057), + [aux_sym__val_number_decimal_token3] = ACTIONS(1057), + [aux_sym__val_number_token1] = ACTIONS(1057), + [aux_sym__val_number_token2] = ACTIONS(1057), + [aux_sym__val_number_token3] = ACTIONS(1057), + [aux_sym__val_number_token4] = ACTIONS(1057), + [aux_sym__val_number_token5] = ACTIONS(1057), + [aux_sym__val_number_token6] = ACTIONS(1057), + [anon_sym_0b] = ACTIONS(1057), + [anon_sym_0o] = ACTIONS(1057), + [anon_sym_0x] = ACTIONS(1057), + [sym_val_date] = ACTIONS(1057), + [anon_sym_DQUOTE] = ACTIONS(1057), + [sym__str_single_quotes] = ACTIONS(1057), + [sym__str_back_ticks] = ACTIONS(1057), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1057), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1057), + [anon_sym_CARET] = ACTIONS(1057), [anon_sym_POUND] = ACTIONS(113), }, - [886] = { - [sym_comment] = STATE(886), - [anon_sym_export] = ACTIONS(1168), - [anon_sym_alias] = ACTIONS(1168), - [anon_sym_let] = ACTIONS(1168), - [anon_sym_let_DASHenv] = ACTIONS(1168), - [anon_sym_mut] = ACTIONS(1168), - [anon_sym_const] = ACTIONS(1168), - [sym_cmd_identifier] = ACTIONS(1168), - [anon_sym_def] = ACTIONS(1168), - [anon_sym_export_DASHenv] = ACTIONS(1168), - [anon_sym_extern] = ACTIONS(1168), - [anon_sym_module] = ACTIONS(1168), - [anon_sym_use] = ACTIONS(1168), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_DOLLAR] = ACTIONS(1168), - [anon_sym_error] = ACTIONS(1168), - [anon_sym_list] = ACTIONS(1168), - [anon_sym_GT] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1168), - [anon_sym_break] = ACTIONS(1168), - [anon_sym_continue] = ACTIONS(1168), - [anon_sym_for] = ACTIONS(1168), - [anon_sym_in] = ACTIONS(1168), - [anon_sym_loop] = ACTIONS(1168), - [anon_sym_make] = ACTIONS(1168), - [anon_sym_while] = ACTIONS(1168), - [anon_sym_do] = ACTIONS(1168), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_else] = ACTIONS(1168), - [anon_sym_match] = ACTIONS(1168), - [anon_sym_RBRACE] = ACTIONS(1168), - [anon_sym_try] = ACTIONS(1168), - [anon_sym_catch] = ACTIONS(1168), - [anon_sym_return] = ACTIONS(1168), - [anon_sym_source] = ACTIONS(1168), - [anon_sym_source_DASHenv] = ACTIONS(1168), - [anon_sym_register] = ACTIONS(1168), - [anon_sym_hide] = ACTIONS(1168), - [anon_sym_hide_DASHenv] = ACTIONS(1168), - [anon_sym_overlay] = ACTIONS(1168), - [anon_sym_new] = ACTIONS(1168), - [anon_sym_as] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_STAR_STAR] = ACTIONS(1168), - [anon_sym_PLUS_PLUS] = ACTIONS(1168), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_mod] = ACTIONS(1168), - [anon_sym_SLASH_SLASH] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(1168), - [anon_sym_bit_DASHshl] = ACTIONS(1168), - [anon_sym_bit_DASHshr] = ACTIONS(1168), - [anon_sym_EQ_EQ] = ACTIONS(1168), - [anon_sym_BANG_EQ] = ACTIONS(1168), - [anon_sym_LT2] = ACTIONS(1168), - [anon_sym_LT_EQ] = ACTIONS(1168), - [anon_sym_GT_EQ] = ACTIONS(1168), - [anon_sym_not_DASHin] = ACTIONS(1168), - [anon_sym_starts_DASHwith] = ACTIONS(1168), - [anon_sym_ends_DASHwith] = ACTIONS(1168), - [anon_sym_EQ_TILDE] = ACTIONS(1168), - [anon_sym_BANG_TILDE] = ACTIONS(1168), - [anon_sym_bit_DASHand] = ACTIONS(1168), - [anon_sym_bit_DASHxor] = ACTIONS(1168), - [anon_sym_bit_DASHor] = ACTIONS(1168), - [anon_sym_and] = ACTIONS(1168), - [anon_sym_xor] = ACTIONS(1168), - [anon_sym_or] = ACTIONS(1168), - [aux_sym__val_number_decimal_token1] = ACTIONS(1168), - [aux_sym__val_number_decimal_token2] = ACTIONS(1168), - [anon_sym_DOT2] = ACTIONS(1168), - [aux_sym__val_number_decimal_token3] = ACTIONS(1168), - [aux_sym__val_number_token1] = ACTIONS(1168), - [aux_sym__val_number_token2] = ACTIONS(1168), - [aux_sym__val_number_token3] = ACTIONS(1168), - [aux_sym__val_number_token4] = ACTIONS(1168), - [aux_sym__val_number_token5] = ACTIONS(1168), - [aux_sym__val_number_token6] = ACTIONS(1168), - [anon_sym_DQUOTE] = ACTIONS(1168), - [sym__str_single_quotes] = ACTIONS(1168), - [sym__str_back_ticks] = ACTIONS(1168), - [sym__entry_separator] = ACTIONS(1170), - [aux_sym__record_key_token2] = ACTIONS(1168), + [1090] = { + [sym_comment] = STATE(1090), + [ts_builtin_sym_end] = ACTIONS(2364), + [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), + [anon_sym_SEMI] = ACTIONS(2362), + [sym_cmd_identifier] = ACTIONS(2362), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2362), + [anon_sym_LPAREN] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2362), + [anon_sym_error] = ACTIONS(2362), + [anon_sym_DASH_DASH] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_break] = ACTIONS(2362), + [anon_sym_continue] = ACTIONS(2362), + [anon_sym_for] = ACTIONS(2362), + [anon_sym_loop] = ACTIONS(2362), + [anon_sym_while] = ACTIONS(2362), + [anon_sym_do] = ACTIONS(2362), + [anon_sym_if] = ACTIONS(2362), + [anon_sym_match] = ACTIONS(2362), + [anon_sym_LBRACE] = ACTIONS(2362), + [anon_sym_DOT_DOT] = ACTIONS(2362), + [anon_sym_try] = 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_where] = ACTIONS(2362), + [anon_sym_not] = ACTIONS(2362), + [anon_sym_DOT_DOT2] = ACTIONS(2362), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2362), + [anon_sym_DOT_DOT_LT] = ACTIONS(2362), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2364), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2364), + [aux_sym__immediate_decimal_token2] = ACTIONS(3687), + [anon_sym_null] = ACTIONS(2362), + [anon_sym_true] = ACTIONS(2362), + [anon_sym_false] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2362), + [aux_sym__val_number_decimal_token2] = ACTIONS(2362), + [anon_sym_DOT2] = ACTIONS(2362), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2362), + [anon_sym_0o] = ACTIONS(2362), + [anon_sym_0x] = ACTIONS(2362), + [sym_val_date] = 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_CARET] = ACTIONS(2362), [anon_sym_POUND] = ACTIONS(113), }, - [887] = { - [sym_comment] = STATE(887), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_alias] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_let_DASHenv] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [sym_cmd_identifier] = ACTIONS(1350), - [anon_sym_def] = ACTIONS(1350), - [anon_sym_export_DASHenv] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1350), - [anon_sym_DOLLAR] = ACTIONS(1350), - [anon_sym_error] = ACTIONS(1350), - [anon_sym_list] = ACTIONS(1350), - [anon_sym_GT] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_in] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_make] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_else] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1350), - [anon_sym_try] = ACTIONS(1350), - [anon_sym_catch] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_source] = ACTIONS(1350), - [anon_sym_source_DASHenv] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_hide] = ACTIONS(1350), - [anon_sym_hide_DASHenv] = ACTIONS(1350), - [anon_sym_overlay] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1350), - [anon_sym_as] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_STAR_STAR] = ACTIONS(1350), - [anon_sym_PLUS_PLUS] = ACTIONS(1350), - [anon_sym_SLASH] = ACTIONS(1350), - [anon_sym_mod] = ACTIONS(1350), - [anon_sym_SLASH_SLASH] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_bit_DASHshl] = ACTIONS(1350), - [anon_sym_bit_DASHshr] = ACTIONS(1350), - [anon_sym_EQ_EQ] = ACTIONS(1350), - [anon_sym_BANG_EQ] = ACTIONS(1350), - [anon_sym_LT2] = ACTIONS(1350), - [anon_sym_LT_EQ] = ACTIONS(1350), - [anon_sym_GT_EQ] = ACTIONS(1350), - [anon_sym_not_DASHin] = ACTIONS(1350), - [anon_sym_starts_DASHwith] = ACTIONS(1350), - [anon_sym_ends_DASHwith] = ACTIONS(1350), - [anon_sym_EQ_TILDE] = ACTIONS(1350), - [anon_sym_BANG_TILDE] = ACTIONS(1350), - [anon_sym_bit_DASHand] = ACTIONS(1350), - [anon_sym_bit_DASHxor] = ACTIONS(1350), - [anon_sym_bit_DASHor] = ACTIONS(1350), - [anon_sym_and] = ACTIONS(1350), - [anon_sym_xor] = ACTIONS(1350), - [anon_sym_or] = ACTIONS(1350), - [aux_sym__val_number_decimal_token1] = ACTIONS(1350), - [aux_sym__val_number_decimal_token2] = ACTIONS(1350), - [anon_sym_DOT2] = ACTIONS(1350), - [aux_sym__val_number_decimal_token3] = ACTIONS(1350), - [aux_sym__val_number_token1] = ACTIONS(1350), - [aux_sym__val_number_token2] = ACTIONS(1350), - [aux_sym__val_number_token3] = ACTIONS(1350), - [aux_sym__val_number_token4] = ACTIONS(1350), - [aux_sym__val_number_token5] = ACTIONS(1350), - [aux_sym__val_number_token6] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [sym__str_single_quotes] = ACTIONS(1350), - [sym__str_back_ticks] = ACTIONS(1350), - [sym__entry_separator] = ACTIONS(1352), - [aux_sym__record_key_token2] = ACTIONS(1350), + [1091] = { + [sym_comment] = STATE(1091), + [ts_builtin_sym_end] = ACTIONS(913), + [anon_sym_SEMI] = ACTIONS(911), + [anon_sym_LF] = ACTIONS(913), + [anon_sym_LBRACK] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(911), + [anon_sym_DOLLAR] = ACTIONS(911), + [anon_sym_GT] = ACTIONS(911), + [anon_sym_DASH_DASH] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_in] = ACTIONS(911), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(911), + [anon_sym_STAR_STAR] = ACTIONS(911), + [anon_sym_PLUS_PLUS] = ACTIONS(911), + [anon_sym_SLASH] = ACTIONS(911), + [anon_sym_mod] = ACTIONS(911), + [anon_sym_SLASH_SLASH] = ACTIONS(911), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_bit_DASHshl] = ACTIONS(911), + [anon_sym_bit_DASHshr] = ACTIONS(911), + [anon_sym_EQ_EQ] = ACTIONS(911), + [anon_sym_BANG_EQ] = ACTIONS(911), + [anon_sym_LT2] = ACTIONS(911), + [anon_sym_LT_EQ] = ACTIONS(911), + [anon_sym_GT_EQ] = ACTIONS(911), + [anon_sym_not_DASHin] = ACTIONS(911), + [anon_sym_starts_DASHwith] = ACTIONS(911), + [anon_sym_ends_DASHwith] = ACTIONS(911), + [anon_sym_EQ_TILDE] = ACTIONS(911), + [anon_sym_BANG_TILDE] = ACTIONS(911), + [anon_sym_bit_DASHand] = ACTIONS(911), + [anon_sym_bit_DASHxor] = ACTIONS(911), + [anon_sym_bit_DASHor] = ACTIONS(911), + [anon_sym_and] = ACTIONS(911), + [anon_sym_xor] = ACTIONS(911), + [anon_sym_or] = ACTIONS(911), + [anon_sym_not] = ACTIONS(911), + [anon_sym_DOT_DOT2] = ACTIONS(911), + [anon_sym_DOT] = ACTIONS(911), + [anon_sym_DOT_DOT_EQ] = ACTIONS(911), + [anon_sym_DOT_DOT_LT] = ACTIONS(911), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(913), + [anon_sym_DOT_DOT_LT2] = ACTIONS(913), + [aux_sym__immediate_decimal_token2] = ACTIONS(3630), + [anon_sym_null] = ACTIONS(911), + [anon_sym_true] = ACTIONS(911), + [anon_sym_false] = ACTIONS(911), + [aux_sym__val_number_decimal_token1] = ACTIONS(911), + [aux_sym__val_number_decimal_token2] = ACTIONS(911), + [anon_sym_DOT2] = ACTIONS(911), + [aux_sym__val_number_decimal_token3] = ACTIONS(911), + [aux_sym__val_number_token1] = ACTIONS(911), + [aux_sym__val_number_token2] = ACTIONS(911), + [aux_sym__val_number_token3] = ACTIONS(911), + [aux_sym__val_number_token4] = ACTIONS(911), + [aux_sym__val_number_token5] = ACTIONS(911), + [aux_sym__val_number_token6] = ACTIONS(911), + [anon_sym_0b] = ACTIONS(911), + [sym_filesize_unit] = ACTIONS(911), + [sym_duration_unit] = ACTIONS(913), + [anon_sym_0o] = ACTIONS(911), + [anon_sym_0x] = ACTIONS(911), + [sym_val_date] = ACTIONS(911), + [anon_sym_DQUOTE] = ACTIONS(911), + [sym__str_single_quotes] = ACTIONS(911), + [sym__str_back_ticks] = ACTIONS(911), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(911), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(911), + [aux_sym_unquoted_token5] = ACTIONS(911), [anon_sym_POUND] = ACTIONS(113), }, - [888] = { - [sym_comment] = STATE(888), - [anon_sym_export] = ACTIONS(1342), - [anon_sym_alias] = ACTIONS(1342), - [anon_sym_let] = ACTIONS(1342), - [anon_sym_let_DASHenv] = ACTIONS(1342), - [anon_sym_mut] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [sym_cmd_identifier] = ACTIONS(1342), - [anon_sym_def] = ACTIONS(1342), - [anon_sym_export_DASHenv] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1342), - [anon_sym_module] = ACTIONS(1342), - [anon_sym_use] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_DOLLAR] = ACTIONS(1342), - [anon_sym_error] = ACTIONS(1342), - [anon_sym_list] = ACTIONS(1342), - [anon_sym_GT] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_in] = ACTIONS(1342), - [anon_sym_loop] = ACTIONS(1342), - [anon_sym_make] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_else] = ACTIONS(1342), - [anon_sym_match] = ACTIONS(1342), - [anon_sym_RBRACE] = ACTIONS(1342), - [anon_sym_try] = ACTIONS(1342), - [anon_sym_catch] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_source] = ACTIONS(1342), - [anon_sym_source_DASHenv] = ACTIONS(1342), - [anon_sym_register] = ACTIONS(1342), - [anon_sym_hide] = ACTIONS(1342), - [anon_sym_hide_DASHenv] = ACTIONS(1342), - [anon_sym_overlay] = ACTIONS(1342), - [anon_sym_new] = ACTIONS(1342), - [anon_sym_as] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_STAR_STAR] = ACTIONS(1342), - [anon_sym_PLUS_PLUS] = ACTIONS(1342), - [anon_sym_SLASH] = ACTIONS(1342), - [anon_sym_mod] = ACTIONS(1342), - [anon_sym_SLASH_SLASH] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_bit_DASHshl] = ACTIONS(1342), - [anon_sym_bit_DASHshr] = ACTIONS(1342), - [anon_sym_EQ_EQ] = ACTIONS(1342), - [anon_sym_BANG_EQ] = ACTIONS(1342), - [anon_sym_LT2] = ACTIONS(1342), - [anon_sym_LT_EQ] = ACTIONS(1342), - [anon_sym_GT_EQ] = ACTIONS(1342), - [anon_sym_not_DASHin] = ACTIONS(1342), - [anon_sym_starts_DASHwith] = ACTIONS(1342), - [anon_sym_ends_DASHwith] = ACTIONS(1342), - [anon_sym_EQ_TILDE] = ACTIONS(1342), - [anon_sym_BANG_TILDE] = ACTIONS(1342), - [anon_sym_bit_DASHand] = ACTIONS(1342), - [anon_sym_bit_DASHxor] = ACTIONS(1342), - [anon_sym_bit_DASHor] = ACTIONS(1342), - [anon_sym_and] = ACTIONS(1342), - [anon_sym_xor] = ACTIONS(1342), - [anon_sym_or] = ACTIONS(1342), - [aux_sym__val_number_decimal_token1] = ACTIONS(1342), - [aux_sym__val_number_decimal_token2] = ACTIONS(1342), - [anon_sym_DOT2] = ACTIONS(1342), - [aux_sym__val_number_decimal_token3] = ACTIONS(1342), - [aux_sym__val_number_token1] = ACTIONS(1342), - [aux_sym__val_number_token2] = ACTIONS(1342), - [aux_sym__val_number_token3] = ACTIONS(1342), - [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(1342), - [sym__str_single_quotes] = ACTIONS(1342), - [sym__str_back_ticks] = ACTIONS(1342), - [sym__entry_separator] = ACTIONS(1344), - [aux_sym__record_key_token2] = ACTIONS(1342), + [1092] = { + [sym_cell_path] = STATE(1425), + [sym_path] = STATE(1107), + [sym_comment] = STATE(1092), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_RBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_SLASH] = ACTIONS(1002), + [anon_sym_mod] = ACTIONS(1002), + [anon_sym_SLASH_SLASH] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1002), + [anon_sym_bit_DASHshl] = ACTIONS(1002), + [anon_sym_bit_DASHshr] = ACTIONS(1002), + [anon_sym_EQ_EQ] = ACTIONS(1002), + [anon_sym_BANG_EQ] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ] = ACTIONS(1002), + [anon_sym_GT_EQ] = ACTIONS(1002), + [anon_sym_not_DASHin] = ACTIONS(1002), + [anon_sym_starts_DASHwith] = ACTIONS(1002), + [anon_sym_ends_DASHwith] = ACTIONS(1002), + [anon_sym_EQ_TILDE] = ACTIONS(1002), + [anon_sym_BANG_TILDE] = ACTIONS(1002), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_DOT] = ACTIONS(3689), + [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), + [anon_sym_DOT2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = 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(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [sym__entry_separator] = ACTIONS(1004), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(113), }, - [889] = { - [sym_comment] = STATE(889), - [anon_sym_export] = ACTIONS(1346), - [anon_sym_alias] = ACTIONS(1346), - [anon_sym_let] = ACTIONS(1346), - [anon_sym_let_DASHenv] = ACTIONS(1346), - [anon_sym_mut] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [sym_cmd_identifier] = ACTIONS(1346), - [anon_sym_def] = ACTIONS(1346), - [anon_sym_export_DASHenv] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1346), - [anon_sym_module] = ACTIONS(1346), - [anon_sym_use] = ACTIONS(1346), - [anon_sym_LPAREN] = ACTIONS(1346), - [anon_sym_DOLLAR] = ACTIONS(1346), - [anon_sym_error] = ACTIONS(1346), - [anon_sym_list] = ACTIONS(1346), - [anon_sym_GT] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_in] = ACTIONS(1346), - [anon_sym_loop] = ACTIONS(1346), - [anon_sym_make] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_else] = ACTIONS(1346), - [anon_sym_match] = ACTIONS(1346), - [anon_sym_RBRACE] = ACTIONS(1346), - [anon_sym_try] = ACTIONS(1346), - [anon_sym_catch] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_source] = ACTIONS(1346), - [anon_sym_source_DASHenv] = ACTIONS(1346), - [anon_sym_register] = ACTIONS(1346), - [anon_sym_hide] = ACTIONS(1346), - [anon_sym_hide_DASHenv] = ACTIONS(1346), - [anon_sym_overlay] = ACTIONS(1346), - [anon_sym_new] = ACTIONS(1346), - [anon_sym_as] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_STAR_STAR] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1346), - [anon_sym_SLASH] = ACTIONS(1346), - [anon_sym_mod] = ACTIONS(1346), - [anon_sym_SLASH_SLASH] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_bit_DASHshl] = ACTIONS(1346), - [anon_sym_bit_DASHshr] = ACTIONS(1346), - [anon_sym_EQ_EQ] = ACTIONS(1346), - [anon_sym_BANG_EQ] = ACTIONS(1346), - [anon_sym_LT2] = ACTIONS(1346), - [anon_sym_LT_EQ] = ACTIONS(1346), - [anon_sym_GT_EQ] = ACTIONS(1346), - [anon_sym_not_DASHin] = ACTIONS(1346), - [anon_sym_starts_DASHwith] = ACTIONS(1346), - [anon_sym_ends_DASHwith] = ACTIONS(1346), - [anon_sym_EQ_TILDE] = ACTIONS(1346), - [anon_sym_BANG_TILDE] = ACTIONS(1346), - [anon_sym_bit_DASHand] = ACTIONS(1346), - [anon_sym_bit_DASHxor] = ACTIONS(1346), - [anon_sym_bit_DASHor] = ACTIONS(1346), - [anon_sym_and] = ACTIONS(1346), - [anon_sym_xor] = ACTIONS(1346), - [anon_sym_or] = ACTIONS(1346), - [aux_sym__val_number_decimal_token1] = ACTIONS(1346), - [aux_sym__val_number_decimal_token2] = ACTIONS(1346), - [anon_sym_DOT2] = ACTIONS(1346), - [aux_sym__val_number_decimal_token3] = ACTIONS(1346), - [aux_sym__val_number_token1] = ACTIONS(1346), - [aux_sym__val_number_token2] = ACTIONS(1346), - [aux_sym__val_number_token3] = ACTIONS(1346), - [aux_sym__val_number_token4] = ACTIONS(1346), - [aux_sym__val_number_token5] = ACTIONS(1346), - [aux_sym__val_number_token6] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym__str_single_quotes] = ACTIONS(1346), - [sym__str_back_ticks] = ACTIONS(1346), - [sym__entry_separator] = ACTIONS(1348), - [aux_sym__record_key_token2] = ACTIONS(1346), + [1093] = { + [sym_comment] = STATE(1093), + [anon_sym_export] = ACTIONS(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_let] = ACTIONS(3691), + [anon_sym_let_DASHenv] = ACTIONS(3691), + [anon_sym_mut] = ACTIONS(3691), + [anon_sym_const] = ACTIONS(3691), + [anon_sym_SEMI] = ACTIONS(3691), + [sym_cmd_identifier] = ACTIONS(3691), + [anon_sym_LF] = ACTIONS(3693), + [anon_sym_def] = ACTIONS(3691), + [anon_sym_export_DASHenv] = ACTIONS(3691), + [anon_sym_extern] = ACTIONS(3691), + [anon_sym_module] = ACTIONS(3691), + [anon_sym_use] = ACTIONS(3691), + [anon_sym_LBRACK] = ACTIONS(3691), + [anon_sym_LPAREN] = ACTIONS(3691), + [anon_sym_RPAREN] = ACTIONS(3691), + [anon_sym_DOLLAR] = ACTIONS(3691), + [anon_sym_error] = ACTIONS(3691), + [anon_sym_DASH_DASH] = ACTIONS(3691), + [anon_sym_DASH] = ACTIONS(3691), + [anon_sym_break] = ACTIONS(3691), + [anon_sym_continue] = ACTIONS(3691), + [anon_sym_for] = ACTIONS(3691), + [anon_sym_loop] = ACTIONS(3691), + [anon_sym_while] = ACTIONS(3691), + [anon_sym_do] = ACTIONS(3691), + [anon_sym_if] = ACTIONS(3691), + [anon_sym_match] = ACTIONS(3691), + [anon_sym_LBRACE] = ACTIONS(3691), + [anon_sym_RBRACE] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3691), + [anon_sym_try] = ACTIONS(3691), + [anon_sym_return] = ACTIONS(3691), + [anon_sym_source] = ACTIONS(3691), + [anon_sym_source_DASHenv] = ACTIONS(3691), + [anon_sym_register] = ACTIONS(3691), + [anon_sym_hide] = ACTIONS(3691), + [anon_sym_hide_DASHenv] = ACTIONS(3691), + [anon_sym_overlay] = ACTIONS(3691), + [anon_sym_as] = ACTIONS(3691), + [anon_sym_where] = ACTIONS(3691), + [anon_sym_not] = ACTIONS(3691), + [anon_sym_DOT_DOT2] = ACTIONS(3695), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3691), + [anon_sym_DOT_DOT_LT] = ACTIONS(3691), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3697), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3697), + [anon_sym_null] = ACTIONS(3691), + [anon_sym_true] = ACTIONS(3691), + [anon_sym_false] = ACTIONS(3691), + [aux_sym__val_number_decimal_token1] = ACTIONS(3691), + [aux_sym__val_number_decimal_token2] = ACTIONS(3691), + [anon_sym_DOT2] = ACTIONS(3691), + [aux_sym__val_number_decimal_token3] = ACTIONS(3691), + [aux_sym__val_number_token1] = ACTIONS(3691), + [aux_sym__val_number_token2] = ACTIONS(3691), + [aux_sym__val_number_token3] = ACTIONS(3691), + [aux_sym__val_number_token4] = ACTIONS(3691), + [aux_sym__val_number_token5] = ACTIONS(3691), + [aux_sym__val_number_token6] = ACTIONS(3691), + [anon_sym_0b] = ACTIONS(3691), + [anon_sym_0o] = ACTIONS(3691), + [anon_sym_0x] = ACTIONS(3691), + [sym_val_date] = ACTIONS(3691), + [anon_sym_DQUOTE] = ACTIONS(3691), + [sym__str_single_quotes] = ACTIONS(3691), + [sym__str_back_ticks] = ACTIONS(3691), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3691), + [anon_sym_CARET] = ACTIONS(3691), [anon_sym_POUND] = ACTIONS(113), }, - [890] = { - [sym_comment] = STATE(890), - [anon_sym_export] = ACTIONS(1059), - [anon_sym_alias] = ACTIONS(1059), - [anon_sym_let] = ACTIONS(1059), - [anon_sym_let_DASHenv] = ACTIONS(1059), - [anon_sym_mut] = ACTIONS(1059), - [anon_sym_const] = ACTIONS(1059), - [sym_cmd_identifier] = ACTIONS(1059), - [anon_sym_def] = ACTIONS(1059), - [anon_sym_export_DASHenv] = ACTIONS(1059), - [anon_sym_extern] = ACTIONS(1059), - [anon_sym_module] = ACTIONS(1059), - [anon_sym_use] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_error] = ACTIONS(1059), - [anon_sym_list] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_break] = ACTIONS(1059), - [anon_sym_continue] = ACTIONS(1059), - [anon_sym_for] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1059), - [anon_sym_loop] = ACTIONS(1059), - [anon_sym_make] = ACTIONS(1059), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_do] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1059), - [anon_sym_else] = ACTIONS(1059), - [anon_sym_match] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(1059), - [anon_sym_try] = ACTIONS(1059), - [anon_sym_catch] = ACTIONS(1059), - [anon_sym_return] = ACTIONS(1059), - [anon_sym_source] = ACTIONS(1059), - [anon_sym_source_DASHenv] = ACTIONS(1059), - [anon_sym_register] = ACTIONS(1059), - [anon_sym_hide] = ACTIONS(1059), - [anon_sym_hide_DASHenv] = ACTIONS(1059), - [anon_sym_overlay] = ACTIONS(1059), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_as] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_STAR_STAR] = ACTIONS(1059), - [anon_sym_PLUS_PLUS] = ACTIONS(1059), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_mod] = ACTIONS(1059), - [anon_sym_SLASH_SLASH] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_bit_DASHshl] = ACTIONS(1059), - [anon_sym_bit_DASHshr] = ACTIONS(1059), - [anon_sym_EQ_EQ] = ACTIONS(1059), - [anon_sym_BANG_EQ] = ACTIONS(1059), - [anon_sym_LT2] = ACTIONS(1059), - [anon_sym_LT_EQ] = ACTIONS(1059), - [anon_sym_GT_EQ] = ACTIONS(1059), - [anon_sym_not_DASHin] = ACTIONS(1059), - [anon_sym_starts_DASHwith] = ACTIONS(1059), - [anon_sym_ends_DASHwith] = ACTIONS(1059), - [anon_sym_EQ_TILDE] = ACTIONS(1059), - [anon_sym_BANG_TILDE] = ACTIONS(1059), - [anon_sym_bit_DASHand] = ACTIONS(1059), - [anon_sym_bit_DASHxor] = ACTIONS(1059), - [anon_sym_bit_DASHor] = ACTIONS(1059), - [anon_sym_and] = ACTIONS(1059), - [anon_sym_xor] = ACTIONS(1059), - [anon_sym_or] = ACTIONS(1059), - [aux_sym__val_number_decimal_token1] = ACTIONS(1059), - [aux_sym__val_number_decimal_token2] = ACTIONS(1059), - [anon_sym_DOT2] = ACTIONS(1059), - [aux_sym__val_number_decimal_token3] = ACTIONS(1059), - [aux_sym__val_number_token1] = ACTIONS(1059), - [aux_sym__val_number_token2] = ACTIONS(1059), - [aux_sym__val_number_token3] = ACTIONS(1059), - [aux_sym__val_number_token4] = ACTIONS(1059), - [aux_sym__val_number_token5] = ACTIONS(1059), - [aux_sym__val_number_token6] = ACTIONS(1059), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym__str_single_quotes] = ACTIONS(1059), - [sym__str_back_ticks] = ACTIONS(1059), - [sym__entry_separator] = ACTIONS(1061), - [aux_sym__record_key_token2] = ACTIONS(1059), + [1094] = { + [sym_comment] = STATE(1094), + [anon_sym_export] = ACTIONS(3699), + [anon_sym_alias] = ACTIONS(3699), + [anon_sym_let] = ACTIONS(3699), + [anon_sym_let_DASHenv] = ACTIONS(3699), + [anon_sym_mut] = ACTIONS(3699), + [anon_sym_const] = ACTIONS(3699), + [anon_sym_SEMI] = ACTIONS(3699), + [sym_cmd_identifier] = ACTIONS(3699), + [anon_sym_LF] = ACTIONS(3701), + [anon_sym_def] = ACTIONS(3699), + [anon_sym_export_DASHenv] = ACTIONS(3699), + [anon_sym_extern] = ACTIONS(3699), + [anon_sym_module] = ACTIONS(3699), + [anon_sym_use] = ACTIONS(3699), + [anon_sym_LBRACK] = ACTIONS(3699), + [anon_sym_LPAREN] = ACTIONS(3699), + [anon_sym_RPAREN] = ACTIONS(3699), + [anon_sym_DOLLAR] = ACTIONS(3699), + [anon_sym_error] = ACTIONS(3699), + [anon_sym_DASH_DASH] = ACTIONS(3699), + [anon_sym_DASH] = ACTIONS(3699), + [anon_sym_break] = ACTIONS(3699), + [anon_sym_continue] = ACTIONS(3699), + [anon_sym_for] = ACTIONS(3699), + [anon_sym_loop] = ACTIONS(3699), + [anon_sym_while] = ACTIONS(3699), + [anon_sym_do] = ACTIONS(3699), + [anon_sym_if] = ACTIONS(3699), + [anon_sym_match] = ACTIONS(3699), + [anon_sym_LBRACE] = ACTIONS(3699), + [anon_sym_RBRACE] = ACTIONS(3699), + [anon_sym_DOT_DOT] = ACTIONS(3699), + [anon_sym_try] = ACTIONS(3699), + [anon_sym_return] = ACTIONS(3699), + [anon_sym_source] = ACTIONS(3699), + [anon_sym_source_DASHenv] = ACTIONS(3699), + [anon_sym_register] = ACTIONS(3699), + [anon_sym_hide] = ACTIONS(3699), + [anon_sym_hide_DASHenv] = ACTIONS(3699), + [anon_sym_overlay] = ACTIONS(3699), + [anon_sym_as] = ACTIONS(3699), + [anon_sym_where] = ACTIONS(3699), + [anon_sym_not] = ACTIONS(3699), + [anon_sym_DOT_DOT2] = ACTIONS(3703), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3699), + [anon_sym_DOT_DOT_LT] = ACTIONS(3699), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3705), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3705), + [anon_sym_null] = ACTIONS(3699), + [anon_sym_true] = ACTIONS(3699), + [anon_sym_false] = ACTIONS(3699), + [aux_sym__val_number_decimal_token1] = ACTIONS(3699), + [aux_sym__val_number_decimal_token2] = ACTIONS(3699), + [anon_sym_DOT2] = ACTIONS(3699), + [aux_sym__val_number_decimal_token3] = ACTIONS(3699), + [aux_sym__val_number_token1] = ACTIONS(3699), + [aux_sym__val_number_token2] = ACTIONS(3699), + [aux_sym__val_number_token3] = ACTIONS(3699), + [aux_sym__val_number_token4] = ACTIONS(3699), + [aux_sym__val_number_token5] = ACTIONS(3699), + [aux_sym__val_number_token6] = ACTIONS(3699), + [anon_sym_0b] = ACTIONS(3699), + [anon_sym_0o] = ACTIONS(3699), + [anon_sym_0x] = ACTIONS(3699), + [sym_val_date] = ACTIONS(3699), + [anon_sym_DQUOTE] = ACTIONS(3699), + [sym__str_single_quotes] = ACTIONS(3699), + [sym__str_back_ticks] = ACTIONS(3699), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3699), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3699), + [anon_sym_CARET] = ACTIONS(3699), [anon_sym_POUND] = ACTIONS(113), }, - [891] = { - [sym_comment] = STATE(891), - [anon_sym_export] = ACTIONS(1063), - [anon_sym_alias] = ACTIONS(1063), - [anon_sym_let] = ACTIONS(1063), - [anon_sym_let_DASHenv] = ACTIONS(1063), - [anon_sym_mut] = ACTIONS(1063), - [anon_sym_const] = ACTIONS(1063), - [sym_cmd_identifier] = ACTIONS(1063), - [anon_sym_def] = ACTIONS(1063), - [anon_sym_export_DASHenv] = ACTIONS(1063), - [anon_sym_extern] = ACTIONS(1063), - [anon_sym_module] = ACTIONS(1063), - [anon_sym_use] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_error] = ACTIONS(1063), - [anon_sym_list] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_break] = ACTIONS(1063), - [anon_sym_continue] = ACTIONS(1063), - [anon_sym_for] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1063), - [anon_sym_loop] = ACTIONS(1063), - [anon_sym_make] = ACTIONS(1063), - [anon_sym_while] = ACTIONS(1063), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_if] = ACTIONS(1063), - [anon_sym_else] = ACTIONS(1063), - [anon_sym_match] = ACTIONS(1063), - [anon_sym_RBRACE] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1063), - [anon_sym_catch] = ACTIONS(1063), - [anon_sym_return] = ACTIONS(1063), - [anon_sym_source] = ACTIONS(1063), - [anon_sym_source_DASHenv] = ACTIONS(1063), - [anon_sym_register] = ACTIONS(1063), - [anon_sym_hide] = ACTIONS(1063), - [anon_sym_hide_DASHenv] = ACTIONS(1063), - [anon_sym_overlay] = ACTIONS(1063), - [anon_sym_new] = ACTIONS(1063), - [anon_sym_as] = ACTIONS(1063), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_STAR_STAR] = ACTIONS(1063), - [anon_sym_PLUS_PLUS] = ACTIONS(1063), - [anon_sym_SLASH] = ACTIONS(1063), - [anon_sym_mod] = ACTIONS(1063), - [anon_sym_SLASH_SLASH] = ACTIONS(1063), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_bit_DASHshl] = ACTIONS(1063), - [anon_sym_bit_DASHshr] = ACTIONS(1063), - [anon_sym_EQ_EQ] = ACTIONS(1063), - [anon_sym_BANG_EQ] = ACTIONS(1063), - [anon_sym_LT2] = ACTIONS(1063), - [anon_sym_LT_EQ] = ACTIONS(1063), - [anon_sym_GT_EQ] = ACTIONS(1063), - [anon_sym_not_DASHin] = ACTIONS(1063), - [anon_sym_starts_DASHwith] = ACTIONS(1063), - [anon_sym_ends_DASHwith] = ACTIONS(1063), - [anon_sym_EQ_TILDE] = ACTIONS(1063), - [anon_sym_BANG_TILDE] = ACTIONS(1063), - [anon_sym_bit_DASHand] = ACTIONS(1063), - [anon_sym_bit_DASHxor] = ACTIONS(1063), - [anon_sym_bit_DASHor] = ACTIONS(1063), - [anon_sym_and] = ACTIONS(1063), - [anon_sym_xor] = ACTIONS(1063), - [anon_sym_or] = ACTIONS(1063), - [aux_sym__val_number_decimal_token1] = ACTIONS(1063), - [aux_sym__val_number_decimal_token2] = ACTIONS(1063), - [anon_sym_DOT2] = ACTIONS(1063), - [aux_sym__val_number_decimal_token3] = ACTIONS(1063), - [aux_sym__val_number_token1] = ACTIONS(1063), - [aux_sym__val_number_token2] = ACTIONS(1063), - [aux_sym__val_number_token3] = ACTIONS(1063), - [aux_sym__val_number_token4] = ACTIONS(1063), - [aux_sym__val_number_token5] = ACTIONS(1063), - [aux_sym__val_number_token6] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [sym__str_single_quotes] = ACTIONS(1063), - [sym__str_back_ticks] = ACTIONS(1063), - [sym__entry_separator] = ACTIONS(1065), - [aux_sym__record_key_token2] = ACTIONS(1063), + [1095] = { + [sym__expression] = STATE(10405), + [sym_expr_unary] = STATE(5743), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5743), + [sym__expr_binary_expression] = STATE(6383), + [sym_expr_parenthesized] = STATE(5960), + [sym_val_range] = STATE(6728), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5743), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6234), + [sym_val_variable] = STATE(5903), + [sym__var] = STATE(3929), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4844), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(10406), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1095), + [anon_sym_COLON] = ACTIONS(3707), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(3100), + [anon_sym_DOLLAR] = ACTIONS(3102), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(3663), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3667), + [anon_sym_DOT_DOT_LT] = ACTIONS(3667), + [anon_sym_null] = ACTIONS(3669), + [anon_sym_true] = ACTIONS(3671), + [anon_sym_false] = ACTIONS(3671), + [aux_sym__val_number_decimal_token1] = ACTIONS(3673), + [aux_sym__val_number_decimal_token2] = ACTIONS(3675), + [anon_sym_DOT2] = ACTIONS(3677), + [aux_sym__val_number_decimal_token3] = ACTIONS(3679), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(3681), + [aux_sym__val_number_token5] = ACTIONS(3681), + [aux_sym__val_number_token6] = ACTIONS(3681), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(3683), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), + [anon_sym_POUND] = ACTIONS(3), + }, + [1096] = { + [sym_ctrl_do] = STATE(8871), + [sym_ctrl_if] = STATE(8871), + [sym_ctrl_match] = STATE(8871), + [sym_ctrl_try] = STATE(8871), + [sym__expression] = STATE(8871), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(4804), + [sym__var] = STATE(4386), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_comment] = STATE(1096), + [anon_sym_SEMI] = ACTIONS(3586), + [anon_sym_LF] = ACTIONS(3588), + [anon_sym_COLON] = ACTIONS(3709), + [anon_sym_LBRACK] = ACTIONS(3592), + [anon_sym_LPAREN] = ACTIONS(3594), + [anon_sym_PIPE] = ACTIONS(3586), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_do] = ACTIONS(403), + [anon_sym_if] = ACTIONS(405), + [anon_sym_match] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(3596), + [anon_sym_RBRACE] = ACTIONS(3586), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_try] = ACTIONS(411), + [anon_sym_not] = ACTIONS(191), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3598), + [anon_sym_DOT_DOT_LT] = ACTIONS(3598), + [anon_sym_null] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [aux_sym__val_number_decimal_token1] = ACTIONS(199), + [aux_sym__val_number_decimal_token2] = ACTIONS(199), + [anon_sym_DOT2] = ACTIONS(203), + [aux_sym__val_number_decimal_token3] = ACTIONS(3600), + [aux_sym__val_number_token1] = ACTIONS(209), + [aux_sym__val_number_token2] = ACTIONS(209), + [aux_sym__val_number_token3] = ACTIONS(209), + [aux_sym__val_number_token4] = ACTIONS(209), + [aux_sym__val_number_token5] = ACTIONS(209), + [aux_sym__val_number_token6] = ACTIONS(209), + [anon_sym_0b] = ACTIONS(211), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(3602), + [anon_sym_DQUOTE] = ACTIONS(3604), + [sym__str_single_quotes] = ACTIONS(3606), + [sym__str_back_ticks] = ACTIONS(3606), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3608), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3610), [anon_sym_POUND] = ACTIONS(113), }, - [892] = { - [sym_comment] = STATE(892), - [anon_sym_export] = ACTIONS(1172), - [anon_sym_alias] = ACTIONS(1172), - [anon_sym_let] = ACTIONS(1172), - [anon_sym_let_DASHenv] = ACTIONS(1172), - [anon_sym_mut] = ACTIONS(1172), - [anon_sym_const] = ACTIONS(1172), - [sym_cmd_identifier] = ACTIONS(1172), - [anon_sym_def] = ACTIONS(1172), - [anon_sym_export_DASHenv] = ACTIONS(1172), - [anon_sym_extern] = ACTIONS(1172), - [anon_sym_module] = ACTIONS(1172), - [anon_sym_use] = ACTIONS(1172), - [anon_sym_LPAREN] = ACTIONS(1172), - [anon_sym_DOLLAR] = ACTIONS(1172), - [anon_sym_error] = ACTIONS(1172), - [anon_sym_list] = ACTIONS(1172), - [anon_sym_GT] = ACTIONS(1172), - [anon_sym_DASH] = ACTIONS(1172), - [anon_sym_break] = ACTIONS(1172), - [anon_sym_continue] = ACTIONS(1172), - [anon_sym_for] = ACTIONS(1172), - [anon_sym_in] = ACTIONS(1172), - [anon_sym_loop] = ACTIONS(1172), - [anon_sym_make] = ACTIONS(1172), - [anon_sym_while] = ACTIONS(1172), - [anon_sym_do] = ACTIONS(1172), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_else] = ACTIONS(1172), - [anon_sym_match] = ACTIONS(1172), - [anon_sym_RBRACE] = ACTIONS(1172), - [anon_sym_try] = ACTIONS(1172), - [anon_sym_catch] = ACTIONS(1172), - [anon_sym_return] = ACTIONS(1172), - [anon_sym_source] = ACTIONS(1172), - [anon_sym_source_DASHenv] = ACTIONS(1172), - [anon_sym_register] = ACTIONS(1172), - [anon_sym_hide] = ACTIONS(1172), - [anon_sym_hide_DASHenv] = ACTIONS(1172), - [anon_sym_overlay] = ACTIONS(1172), - [anon_sym_new] = ACTIONS(1172), - [anon_sym_as] = ACTIONS(1172), - [anon_sym_STAR] = ACTIONS(1172), - [anon_sym_STAR_STAR] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_SLASH] = ACTIONS(1172), - [anon_sym_mod] = ACTIONS(1172), - [anon_sym_SLASH_SLASH] = ACTIONS(1172), - [anon_sym_PLUS] = ACTIONS(1172), - [anon_sym_bit_DASHshl] = ACTIONS(1172), - [anon_sym_bit_DASHshr] = ACTIONS(1172), - [anon_sym_EQ_EQ] = ACTIONS(1172), - [anon_sym_BANG_EQ] = ACTIONS(1172), - [anon_sym_LT2] = ACTIONS(1172), - [anon_sym_LT_EQ] = ACTIONS(1172), - [anon_sym_GT_EQ] = ACTIONS(1172), - [anon_sym_not_DASHin] = ACTIONS(1172), - [anon_sym_starts_DASHwith] = ACTIONS(1172), - [anon_sym_ends_DASHwith] = ACTIONS(1172), - [anon_sym_EQ_TILDE] = ACTIONS(1172), - [anon_sym_BANG_TILDE] = ACTIONS(1172), - [anon_sym_bit_DASHand] = ACTIONS(1172), - [anon_sym_bit_DASHxor] = ACTIONS(1172), - [anon_sym_bit_DASHor] = ACTIONS(1172), - [anon_sym_and] = ACTIONS(1172), - [anon_sym_xor] = ACTIONS(1172), - [anon_sym_or] = ACTIONS(1172), - [aux_sym__val_number_decimal_token1] = ACTIONS(1172), - [aux_sym__val_number_decimal_token2] = ACTIONS(1172), - [anon_sym_DOT2] = ACTIONS(1172), - [aux_sym__val_number_decimal_token3] = ACTIONS(1172), - [aux_sym__val_number_token1] = ACTIONS(1172), - [aux_sym__val_number_token2] = ACTIONS(1172), - [aux_sym__val_number_token3] = ACTIONS(1172), - [aux_sym__val_number_token4] = ACTIONS(1172), - [aux_sym__val_number_token5] = ACTIONS(1172), - [aux_sym__val_number_token6] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(1172), - [sym__str_single_quotes] = ACTIONS(1172), - [sym__str_back_ticks] = ACTIONS(1172), - [sym__entry_separator] = ACTIONS(1174), - [aux_sym__record_key_token2] = ACTIONS(1172), + [1097] = { + [sym_comment] = STATE(1097), + [anon_sym_export] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_let] = ACTIONS(3711), + [anon_sym_let_DASHenv] = ACTIONS(3711), + [anon_sym_mut] = ACTIONS(3711), + [anon_sym_const] = ACTIONS(3711), + [anon_sym_SEMI] = ACTIONS(3711), + [sym_cmd_identifier] = ACTIONS(3711), + [anon_sym_LF] = ACTIONS(3713), + [anon_sym_def] = ACTIONS(3711), + [anon_sym_export_DASHenv] = ACTIONS(3711), + [anon_sym_extern] = ACTIONS(3711), + [anon_sym_module] = ACTIONS(3711), + [anon_sym_use] = ACTIONS(3711), + [anon_sym_LBRACK] = ACTIONS(3711), + [anon_sym_LPAREN] = ACTIONS(3711), + [anon_sym_RPAREN] = ACTIONS(3711), + [anon_sym_DOLLAR] = ACTIONS(3711), + [anon_sym_error] = ACTIONS(3711), + [anon_sym_DASH_DASH] = ACTIONS(3711), + [anon_sym_DASH] = ACTIONS(3711), + [anon_sym_break] = ACTIONS(3711), + [anon_sym_continue] = ACTIONS(3711), + [anon_sym_for] = ACTIONS(3711), + [anon_sym_loop] = ACTIONS(3711), + [anon_sym_while] = ACTIONS(3711), + [anon_sym_do] = ACTIONS(3711), + [anon_sym_if] = ACTIONS(3711), + [anon_sym_match] = ACTIONS(3711), + [anon_sym_LBRACE] = ACTIONS(3711), + [anon_sym_RBRACE] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3711), + [anon_sym_try] = ACTIONS(3711), + [anon_sym_return] = ACTIONS(3711), + [anon_sym_source] = ACTIONS(3711), + [anon_sym_source_DASHenv] = ACTIONS(3711), + [anon_sym_register] = ACTIONS(3711), + [anon_sym_hide] = ACTIONS(3711), + [anon_sym_hide_DASHenv] = ACTIONS(3711), + [anon_sym_overlay] = ACTIONS(3711), + [anon_sym_as] = ACTIONS(3711), + [anon_sym_where] = ACTIONS(3711), + [anon_sym_not] = ACTIONS(3711), + [anon_sym_DOT_DOT2] = ACTIONS(3715), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3711), + [anon_sym_DOT_DOT_LT] = ACTIONS(3711), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3717), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3717), + [anon_sym_null] = ACTIONS(3711), + [anon_sym_true] = ACTIONS(3711), + [anon_sym_false] = ACTIONS(3711), + [aux_sym__val_number_decimal_token1] = ACTIONS(3711), + [aux_sym__val_number_decimal_token2] = ACTIONS(3711), + [anon_sym_DOT2] = ACTIONS(3711), + [aux_sym__val_number_decimal_token3] = ACTIONS(3711), + [aux_sym__val_number_token1] = ACTIONS(3711), + [aux_sym__val_number_token2] = ACTIONS(3711), + [aux_sym__val_number_token3] = ACTIONS(3711), + [aux_sym__val_number_token4] = ACTIONS(3711), + [aux_sym__val_number_token5] = ACTIONS(3711), + [aux_sym__val_number_token6] = ACTIONS(3711), + [anon_sym_0b] = ACTIONS(3711), + [anon_sym_0o] = ACTIONS(3711), + [anon_sym_0x] = ACTIONS(3711), + [sym_val_date] = ACTIONS(3711), + [anon_sym_DQUOTE] = ACTIONS(3711), + [sym__str_single_quotes] = ACTIONS(3711), + [sym__str_back_ticks] = ACTIONS(3711), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3711), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), + [anon_sym_CARET] = ACTIONS(3711), [anon_sym_POUND] = ACTIONS(113), }, - [893] = { - [sym_comment] = STATE(893), - [anon_sym_export] = ACTIONS(1354), - [anon_sym_alias] = ACTIONS(1354), - [anon_sym_let] = ACTIONS(1354), - [anon_sym_let_DASHenv] = ACTIONS(1354), - [anon_sym_mut] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [sym_cmd_identifier] = ACTIONS(1354), - [anon_sym_def] = ACTIONS(1354), - [anon_sym_export_DASHenv] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym_module] = ACTIONS(1354), - [anon_sym_use] = ACTIONS(1354), - [anon_sym_LPAREN] = ACTIONS(1354), - [anon_sym_DOLLAR] = ACTIONS(1354), - [anon_sym_error] = ACTIONS(1354), - [anon_sym_list] = ACTIONS(1354), - [anon_sym_GT] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_in] = ACTIONS(1354), - [anon_sym_loop] = ACTIONS(1354), - [anon_sym_make] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_else] = ACTIONS(1354), - [anon_sym_match] = ACTIONS(1354), - [anon_sym_RBRACE] = ACTIONS(1354), - [anon_sym_try] = ACTIONS(1354), - [anon_sym_catch] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_source] = ACTIONS(1354), - [anon_sym_source_DASHenv] = ACTIONS(1354), - [anon_sym_register] = ACTIONS(1354), - [anon_sym_hide] = ACTIONS(1354), - [anon_sym_hide_DASHenv] = ACTIONS(1354), - [anon_sym_overlay] = ACTIONS(1354), - [anon_sym_new] = ACTIONS(1354), - [anon_sym_as] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_STAR_STAR] = ACTIONS(1354), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [anon_sym_SLASH] = ACTIONS(1354), - [anon_sym_mod] = ACTIONS(1354), - [anon_sym_SLASH_SLASH] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_bit_DASHshl] = ACTIONS(1354), - [anon_sym_bit_DASHshr] = ACTIONS(1354), - [anon_sym_EQ_EQ] = ACTIONS(1354), - [anon_sym_BANG_EQ] = ACTIONS(1354), - [anon_sym_LT2] = ACTIONS(1354), - [anon_sym_LT_EQ] = ACTIONS(1354), - [anon_sym_GT_EQ] = ACTIONS(1354), - [anon_sym_not_DASHin] = ACTIONS(1354), - [anon_sym_starts_DASHwith] = ACTIONS(1354), - [anon_sym_ends_DASHwith] = ACTIONS(1354), - [anon_sym_EQ_TILDE] = ACTIONS(1354), - [anon_sym_BANG_TILDE] = ACTIONS(1354), - [anon_sym_bit_DASHand] = ACTIONS(1354), - [anon_sym_bit_DASHxor] = ACTIONS(1354), - [anon_sym_bit_DASHor] = ACTIONS(1354), - [anon_sym_and] = ACTIONS(1354), - [anon_sym_xor] = ACTIONS(1354), - [anon_sym_or] = ACTIONS(1354), - [aux_sym__val_number_decimal_token1] = ACTIONS(1354), - [aux_sym__val_number_decimal_token2] = ACTIONS(1354), - [anon_sym_DOT2] = ACTIONS(1354), - [aux_sym__val_number_decimal_token3] = ACTIONS(1354), - [aux_sym__val_number_token1] = ACTIONS(1354), - [aux_sym__val_number_token2] = ACTIONS(1354), - [aux_sym__val_number_token3] = ACTIONS(1354), - [aux_sym__val_number_token4] = ACTIONS(1354), - [aux_sym__val_number_token5] = ACTIONS(1354), - [aux_sym__val_number_token6] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1354), - [sym__str_single_quotes] = ACTIONS(1354), - [sym__str_back_ticks] = ACTIONS(1354), - [sym__entry_separator] = ACTIONS(1356), - [aux_sym__record_key_token2] = ACTIONS(1354), + [1098] = { + [sym_comment] = STATE(1098), + [anon_sym_LBRACK] = ACTIONS(1061), + [anon_sym_COMMA] = ACTIONS(1061), + [anon_sym_RBRACK] = ACTIONS(1061), + [anon_sym_LPAREN] = ACTIONS(1061), + [anon_sym_DOLLAR] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_DASH_DASH] = ACTIONS(1061), + [anon_sym_DASH] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(1061), + [anon_sym_DOT_DOT] = ACTIONS(1061), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_STAR_STAR] = ACTIONS(1061), + [anon_sym_PLUS_PLUS] = ACTIONS(1061), + [anon_sym_SLASH] = ACTIONS(1061), + [anon_sym_mod] = ACTIONS(1061), + [anon_sym_SLASH_SLASH] = ACTIONS(1061), + [anon_sym_PLUS] = ACTIONS(1061), + [anon_sym_bit_DASHshl] = ACTIONS(1061), + [anon_sym_bit_DASHshr] = ACTIONS(1061), + [anon_sym_EQ_EQ] = ACTIONS(1061), + [anon_sym_BANG_EQ] = ACTIONS(1061), + [anon_sym_LT2] = ACTIONS(1061), + [anon_sym_LT_EQ] = ACTIONS(1061), + [anon_sym_GT_EQ] = ACTIONS(1061), + [anon_sym_not_DASHin] = ACTIONS(1061), + [anon_sym_starts_DASHwith] = ACTIONS(1061), + [anon_sym_ends_DASHwith] = ACTIONS(1061), + [anon_sym_EQ_TILDE] = ACTIONS(1061), + [anon_sym_BANG_TILDE] = ACTIONS(1061), + [anon_sym_bit_DASHand] = ACTIONS(1061), + [anon_sym_bit_DASHxor] = ACTIONS(1061), + [anon_sym_bit_DASHor] = ACTIONS(1061), + [anon_sym_and] = ACTIONS(1061), + [anon_sym_xor] = ACTIONS(1061), + [anon_sym_or] = ACTIONS(1061), + [anon_sym_DOT_DOT2] = ACTIONS(1061), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1061), + [anon_sym_DOT_DOT_LT] = ACTIONS(1061), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1063), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1063), + [anon_sym_null] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1061), + [anon_sym_false] = ACTIONS(1061), + [aux_sym__val_number_decimal_token1] = ACTIONS(1061), + [aux_sym__val_number_decimal_token2] = ACTIONS(1061), + [anon_sym_DOT2] = ACTIONS(1061), + [aux_sym__val_number_decimal_token3] = ACTIONS(1061), + [aux_sym__val_number_token1] = ACTIONS(1061), + [aux_sym__val_number_token2] = ACTIONS(1061), + [aux_sym__val_number_token3] = ACTIONS(1061), + [aux_sym__val_number_token4] = ACTIONS(1061), + [aux_sym__val_number_token5] = ACTIONS(1061), + [aux_sym__val_number_token6] = ACTIONS(1061), + [anon_sym_0b] = ACTIONS(1061), + [anon_sym_0o] = ACTIONS(1061), + [anon_sym_0x] = ACTIONS(1061), + [sym_val_date] = ACTIONS(1061), + [anon_sym_DQUOTE] = ACTIONS(1061), + [sym__str_single_quotes] = ACTIONS(1061), + [sym__str_back_ticks] = ACTIONS(1061), + [sym__entry_separator] = ACTIONS(1063), + [anon_sym_err_GT] = ACTIONS(1061), + [anon_sym_out_GT] = ACTIONS(1061), + [anon_sym_e_GT] = ACTIONS(1061), + [anon_sym_o_GT] = ACTIONS(1061), + [anon_sym_err_PLUSout_GT] = ACTIONS(1061), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1061), + [anon_sym_o_PLUSe_GT] = ACTIONS(1061), + [anon_sym_e_PLUSo_GT] = ACTIONS(1061), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1061), [anon_sym_POUND] = ACTIONS(113), }, - [894] = { - [sym_comment] = STATE(894), - [anon_sym_export] = ACTIONS(1358), - [anon_sym_alias] = ACTIONS(1358), - [anon_sym_let] = ACTIONS(1358), - [anon_sym_let_DASHenv] = ACTIONS(1358), - [anon_sym_mut] = ACTIONS(1358), - [anon_sym_const] = ACTIONS(1358), - [sym_cmd_identifier] = ACTIONS(1358), - [anon_sym_def] = ACTIONS(1358), - [anon_sym_export_DASHenv] = ACTIONS(1358), - [anon_sym_extern] = ACTIONS(1358), - [anon_sym_module] = ACTIONS(1358), - [anon_sym_use] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1358), - [anon_sym_DOLLAR] = ACTIONS(1358), - [anon_sym_error] = ACTIONS(1358), - [anon_sym_list] = ACTIONS(1358), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_in] = ACTIONS(1358), - [anon_sym_loop] = ACTIONS(1358), - [anon_sym_make] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_do] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_else] = ACTIONS(1358), - [anon_sym_match] = ACTIONS(1358), - [anon_sym_RBRACE] = ACTIONS(1358), - [anon_sym_try] = ACTIONS(1358), - [anon_sym_catch] = ACTIONS(1358), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_source] = ACTIONS(1358), - [anon_sym_source_DASHenv] = ACTIONS(1358), - [anon_sym_register] = ACTIONS(1358), - [anon_sym_hide] = ACTIONS(1358), - [anon_sym_hide_DASHenv] = ACTIONS(1358), - [anon_sym_overlay] = ACTIONS(1358), - [anon_sym_new] = ACTIONS(1358), - [anon_sym_as] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_STAR_STAR] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_SLASH] = ACTIONS(1358), - [anon_sym_mod] = ACTIONS(1358), - [anon_sym_SLASH_SLASH] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_bit_DASHshl] = ACTIONS(1358), - [anon_sym_bit_DASHshr] = ACTIONS(1358), - [anon_sym_EQ_EQ] = ACTIONS(1358), - [anon_sym_BANG_EQ] = ACTIONS(1358), - [anon_sym_LT2] = ACTIONS(1358), - [anon_sym_LT_EQ] = ACTIONS(1358), - [anon_sym_GT_EQ] = ACTIONS(1358), - [anon_sym_not_DASHin] = ACTIONS(1358), - [anon_sym_starts_DASHwith] = ACTIONS(1358), - [anon_sym_ends_DASHwith] = ACTIONS(1358), - [anon_sym_EQ_TILDE] = ACTIONS(1358), - [anon_sym_BANG_TILDE] = ACTIONS(1358), - [anon_sym_bit_DASHand] = ACTIONS(1358), - [anon_sym_bit_DASHxor] = ACTIONS(1358), - [anon_sym_bit_DASHor] = ACTIONS(1358), - [anon_sym_and] = ACTIONS(1358), - [anon_sym_xor] = ACTIONS(1358), - [anon_sym_or] = ACTIONS(1358), - [aux_sym__val_number_decimal_token1] = ACTIONS(1358), - [aux_sym__val_number_decimal_token2] = ACTIONS(1358), - [anon_sym_DOT2] = ACTIONS(1358), - [aux_sym__val_number_decimal_token3] = ACTIONS(1358), - [aux_sym__val_number_token1] = ACTIONS(1358), - [aux_sym__val_number_token2] = ACTIONS(1358), - [aux_sym__val_number_token3] = ACTIONS(1358), - [aux_sym__val_number_token4] = ACTIONS(1358), - [aux_sym__val_number_token5] = ACTIONS(1358), - [aux_sym__val_number_token6] = ACTIONS(1358), - [anon_sym_DQUOTE] = ACTIONS(1358), - [sym__str_single_quotes] = ACTIONS(1358), - [sym__str_back_ticks] = ACTIONS(1358), - [sym__entry_separator] = ACTIONS(1360), - [aux_sym__record_key_token2] = ACTIONS(1358), + [1099] = { + [sym_comment] = STATE(1099), + [ts_builtin_sym_end] = ACTIONS(895), + [anon_sym_SEMI] = ACTIONS(893), + [anon_sym_LF] = ACTIONS(895), + [anon_sym_LBRACK] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(893), + [anon_sym_PIPE] = ACTIONS(893), + [anon_sym_DOLLAR] = ACTIONS(893), + [anon_sym_GT] = ACTIONS(893), + [anon_sym_DASH_DASH] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_in] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_DOT_DOT] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(893), + [anon_sym_STAR_STAR] = ACTIONS(893), + [anon_sym_PLUS_PLUS] = ACTIONS(893), + [anon_sym_SLASH] = ACTIONS(893), + [anon_sym_mod] = ACTIONS(893), + [anon_sym_SLASH_SLASH] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_bit_DASHshl] = ACTIONS(893), + [anon_sym_bit_DASHshr] = ACTIONS(893), + [anon_sym_EQ_EQ] = ACTIONS(893), + [anon_sym_BANG_EQ] = ACTIONS(893), + [anon_sym_LT2] = ACTIONS(893), + [anon_sym_LT_EQ] = ACTIONS(893), + [anon_sym_GT_EQ] = ACTIONS(893), + [anon_sym_not_DASHin] = ACTIONS(893), + [anon_sym_starts_DASHwith] = ACTIONS(893), + [anon_sym_ends_DASHwith] = ACTIONS(893), + [anon_sym_EQ_TILDE] = ACTIONS(893), + [anon_sym_BANG_TILDE] = ACTIONS(893), + [anon_sym_bit_DASHand] = ACTIONS(893), + [anon_sym_bit_DASHxor] = ACTIONS(893), + [anon_sym_bit_DASHor] = ACTIONS(893), + [anon_sym_and] = ACTIONS(893), + [anon_sym_xor] = ACTIONS(893), + [anon_sym_or] = ACTIONS(893), + [anon_sym_not] = ACTIONS(893), + [anon_sym_DOT_DOT2] = ACTIONS(893), + [anon_sym_DOT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ] = ACTIONS(893), + [anon_sym_DOT_DOT_LT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), + [anon_sym_DOT_DOT_LT2] = ACTIONS(895), + [aux_sym__immediate_decimal_token2] = ACTIONS(3562), + [anon_sym_null] = ACTIONS(893), + [anon_sym_true] = ACTIONS(893), + [anon_sym_false] = ACTIONS(893), + [aux_sym__val_number_decimal_token1] = ACTIONS(893), + [aux_sym__val_number_decimal_token2] = ACTIONS(893), + [anon_sym_DOT2] = ACTIONS(893), + [aux_sym__val_number_decimal_token3] = ACTIONS(893), + [aux_sym__val_number_token1] = ACTIONS(893), + [aux_sym__val_number_token2] = ACTIONS(893), + [aux_sym__val_number_token3] = ACTIONS(893), + [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(893), + [sym_filesize_unit] = ACTIONS(893), + [sym_duration_unit] = ACTIONS(895), + [anon_sym_0o] = ACTIONS(893), + [anon_sym_0x] = ACTIONS(893), + [sym_val_date] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(893), + [sym__str_single_quotes] = ACTIONS(893), + [sym__str_back_ticks] = ACTIONS(893), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(893), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(893), + [aux_sym_unquoted_token5] = ACTIONS(893), [anon_sym_POUND] = ACTIONS(113), }, - [895] = { - [sym_comment] = STATE(895), - [anon_sym_export] = ACTIONS(1198), - [anon_sym_alias] = ACTIONS(1198), - [anon_sym_let] = ACTIONS(1198), - [anon_sym_let_DASHenv] = ACTIONS(1198), - [anon_sym_mut] = ACTIONS(1198), - [anon_sym_const] = ACTIONS(1198), - [sym_cmd_identifier] = ACTIONS(1198), - [anon_sym_def] = ACTIONS(1198), - [anon_sym_export_DASHenv] = ACTIONS(1198), - [anon_sym_extern] = ACTIONS(1198), - [anon_sym_module] = ACTIONS(1198), - [anon_sym_use] = ACTIONS(1198), - [anon_sym_LPAREN] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(1198), - [anon_sym_error] = ACTIONS(1198), - [anon_sym_list] = ACTIONS(1198), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1198), - [anon_sym_break] = ACTIONS(1198), - [anon_sym_continue] = ACTIONS(1198), - [anon_sym_for] = ACTIONS(1198), - [anon_sym_in] = ACTIONS(1198), - [anon_sym_loop] = ACTIONS(1198), - [anon_sym_make] = ACTIONS(1198), - [anon_sym_while] = ACTIONS(1198), - [anon_sym_do] = ACTIONS(1198), - [anon_sym_if] = ACTIONS(1198), - [anon_sym_else] = ACTIONS(1198), - [anon_sym_match] = ACTIONS(1198), - [anon_sym_RBRACE] = ACTIONS(1198), - [anon_sym_try] = ACTIONS(1198), - [anon_sym_catch] = ACTIONS(1198), - [anon_sym_return] = ACTIONS(1198), - [anon_sym_source] = ACTIONS(1198), - [anon_sym_source_DASHenv] = ACTIONS(1198), - [anon_sym_register] = ACTIONS(1198), - [anon_sym_hide] = ACTIONS(1198), - [anon_sym_hide_DASHenv] = ACTIONS(1198), - [anon_sym_overlay] = ACTIONS(1198), - [anon_sym_new] = ACTIONS(1198), - [anon_sym_as] = ACTIONS(1198), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_STAR_STAR] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_SLASH] = ACTIONS(1198), - [anon_sym_mod] = ACTIONS(1198), - [anon_sym_SLASH_SLASH] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1198), - [anon_sym_bit_DASHshl] = ACTIONS(1198), - [anon_sym_bit_DASHshr] = ACTIONS(1198), - [anon_sym_EQ_EQ] = ACTIONS(1198), - [anon_sym_BANG_EQ] = ACTIONS(1198), - [anon_sym_LT2] = ACTIONS(1198), - [anon_sym_LT_EQ] = ACTIONS(1198), - [anon_sym_GT_EQ] = ACTIONS(1198), - [anon_sym_not_DASHin] = ACTIONS(1198), - [anon_sym_starts_DASHwith] = ACTIONS(1198), - [anon_sym_ends_DASHwith] = ACTIONS(1198), - [anon_sym_EQ_TILDE] = ACTIONS(1198), - [anon_sym_BANG_TILDE] = ACTIONS(1198), - [anon_sym_bit_DASHand] = ACTIONS(1198), - [anon_sym_bit_DASHxor] = ACTIONS(1198), - [anon_sym_bit_DASHor] = ACTIONS(1198), - [anon_sym_and] = ACTIONS(1198), - [anon_sym_xor] = ACTIONS(1198), - [anon_sym_or] = ACTIONS(1198), - [aux_sym__val_number_decimal_token1] = ACTIONS(1198), - [aux_sym__val_number_decimal_token2] = ACTIONS(1198), - [anon_sym_DOT2] = ACTIONS(1198), - [aux_sym__val_number_decimal_token3] = ACTIONS(1198), - [aux_sym__val_number_token1] = ACTIONS(1198), - [aux_sym__val_number_token2] = ACTIONS(1198), - [aux_sym__val_number_token3] = ACTIONS(1198), - [aux_sym__val_number_token4] = ACTIONS(1198), - [aux_sym__val_number_token5] = ACTIONS(1198), - [aux_sym__val_number_token6] = ACTIONS(1198), - [anon_sym_DQUOTE] = ACTIONS(1198), - [sym__str_single_quotes] = ACTIONS(1198), - [sym__str_back_ticks] = ACTIONS(1198), - [sym__entry_separator] = ACTIONS(1366), - [aux_sym__record_key_token2] = ACTIONS(1198), + [1100] = { + [sym_comment] = STATE(1100), + [ts_builtin_sym_end] = ACTIONS(903), + [anon_sym_SEMI] = ACTIONS(901), + [anon_sym_LF] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(901), + [anon_sym_LPAREN] = ACTIONS(901), + [anon_sym_PIPE] = ACTIONS(901), + [anon_sym_DOLLAR] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_DASH_DASH] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_in] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(901), + [anon_sym_DOT_DOT] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_STAR_STAR] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(901), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_mod] = ACTIONS(901), + [anon_sym_SLASH_SLASH] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_bit_DASHshl] = ACTIONS(901), + [anon_sym_bit_DASHshr] = ACTIONS(901), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT2] = ACTIONS(901), + [anon_sym_LT_EQ] = ACTIONS(901), + [anon_sym_GT_EQ] = ACTIONS(901), + [anon_sym_not_DASHin] = ACTIONS(901), + [anon_sym_starts_DASHwith] = ACTIONS(901), + [anon_sym_ends_DASHwith] = ACTIONS(901), + [anon_sym_EQ_TILDE] = ACTIONS(901), + [anon_sym_BANG_TILDE] = ACTIONS(901), + [anon_sym_bit_DASHand] = ACTIONS(901), + [anon_sym_bit_DASHxor] = ACTIONS(901), + [anon_sym_bit_DASHor] = ACTIONS(901), + [anon_sym_and] = ACTIONS(901), + [anon_sym_xor] = ACTIONS(901), + [anon_sym_or] = ACTIONS(901), + [anon_sym_not] = ACTIONS(901), + [anon_sym_DOT_DOT2] = ACTIONS(901), + [anon_sym_DOT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ] = ACTIONS(901), + [anon_sym_DOT_DOT_LT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(903), + [anon_sym_DOT_DOT_LT2] = ACTIONS(903), + [aux_sym__immediate_decimal_token2] = ACTIONS(3719), + [anon_sym_null] = ACTIONS(901), + [anon_sym_true] = ACTIONS(901), + [anon_sym_false] = ACTIONS(901), + [aux_sym__val_number_decimal_token1] = ACTIONS(901), + [aux_sym__val_number_decimal_token2] = ACTIONS(901), + [anon_sym_DOT2] = ACTIONS(901), + [aux_sym__val_number_decimal_token3] = ACTIONS(901), + [aux_sym__val_number_token1] = ACTIONS(901), + [aux_sym__val_number_token2] = ACTIONS(901), + [aux_sym__val_number_token3] = ACTIONS(901), + [aux_sym__val_number_token4] = ACTIONS(901), + [aux_sym__val_number_token5] = ACTIONS(901), + [aux_sym__val_number_token6] = ACTIONS(901), + [anon_sym_0b] = ACTIONS(901), + [sym_filesize_unit] = ACTIONS(901), + [sym_duration_unit] = ACTIONS(903), + [anon_sym_0o] = ACTIONS(901), + [anon_sym_0x] = ACTIONS(901), + [sym_val_date] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [sym__str_single_quotes] = ACTIONS(901), + [sym__str_back_ticks] = ACTIONS(901), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(901), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(901), + [aux_sym_unquoted_token5] = ACTIONS(901), [anon_sym_POUND] = ACTIONS(113), }, - [896] = { - [sym_comment] = STATE(896), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_list] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_make] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_else] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_catch] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_new] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [sym__entry_separator] = ACTIONS(1370), - [aux_sym__record_key_token2] = ACTIONS(1368), + [1101] = { + [sym_comment] = STATE(1101), + [anon_sym_LBRACK] = ACTIONS(1068), + [anon_sym_COMMA] = ACTIONS(1068), + [anon_sym_RBRACK] = ACTIONS(1068), + [anon_sym_LPAREN] = ACTIONS(1068), + [anon_sym_DOLLAR] = ACTIONS(1068), + [anon_sym_GT] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1068), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_in] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_DOT_DOT] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_STAR_STAR] = ACTIONS(1068), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_SLASH] = ACTIONS(1068), + [anon_sym_mod] = ACTIONS(1068), + [anon_sym_SLASH_SLASH] = ACTIONS(1068), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_bit_DASHshl] = ACTIONS(1068), + [anon_sym_bit_DASHshr] = ACTIONS(1068), + [anon_sym_EQ_EQ] = ACTIONS(1068), + [anon_sym_BANG_EQ] = ACTIONS(1068), + [anon_sym_LT2] = ACTIONS(1068), + [anon_sym_LT_EQ] = ACTIONS(1068), + [anon_sym_GT_EQ] = ACTIONS(1068), + [anon_sym_not_DASHin] = ACTIONS(1068), + [anon_sym_starts_DASHwith] = ACTIONS(1068), + [anon_sym_ends_DASHwith] = ACTIONS(1068), + [anon_sym_EQ_TILDE] = ACTIONS(1068), + [anon_sym_BANG_TILDE] = ACTIONS(1068), + [anon_sym_bit_DASHand] = ACTIONS(1068), + [anon_sym_bit_DASHxor] = ACTIONS(1068), + [anon_sym_bit_DASHor] = ACTIONS(1068), + [anon_sym_and] = ACTIONS(1068), + [anon_sym_xor] = ACTIONS(1068), + [anon_sym_or] = ACTIONS(1068), + [anon_sym_DOT_DOT2] = ACTIONS(1068), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1068), + [anon_sym_DOT_DOT_LT] = ACTIONS(1068), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1070), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1070), + [anon_sym_null] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1068), + [anon_sym_false] = ACTIONS(1068), + [aux_sym__val_number_decimal_token1] = ACTIONS(1068), + [aux_sym__val_number_decimal_token2] = ACTIONS(1068), + [anon_sym_DOT2] = ACTIONS(1068), + [aux_sym__val_number_decimal_token3] = ACTIONS(1068), + [aux_sym__val_number_token1] = ACTIONS(1068), + [aux_sym__val_number_token2] = ACTIONS(1068), + [aux_sym__val_number_token3] = ACTIONS(1068), + [aux_sym__val_number_token4] = ACTIONS(1068), + [aux_sym__val_number_token5] = ACTIONS(1068), + [aux_sym__val_number_token6] = ACTIONS(1068), + [anon_sym_0b] = ACTIONS(1068), + [anon_sym_0o] = ACTIONS(1068), + [anon_sym_0x] = ACTIONS(1068), + [sym_val_date] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(1068), + [sym__str_single_quotes] = ACTIONS(1068), + [sym__str_back_ticks] = ACTIONS(1068), + [sym__entry_separator] = ACTIONS(1070), + [anon_sym_err_GT] = ACTIONS(1068), + [anon_sym_out_GT] = ACTIONS(1068), + [anon_sym_e_GT] = ACTIONS(1068), + [anon_sym_o_GT] = ACTIONS(1068), + [anon_sym_err_PLUSout_GT] = ACTIONS(1068), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1068), + [anon_sym_o_PLUSe_GT] = ACTIONS(1068), + [anon_sym_e_PLUSo_GT] = ACTIONS(1068), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1068), [anon_sym_POUND] = ACTIONS(113), }, - [897] = { - [sym_comment] = STATE(897), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_list] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_make] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_else] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_catch] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_new] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [sym__entry_separator] = ACTIONS(1370), - [aux_sym__record_key_token2] = ACTIONS(1368), + [1102] = { + [sym_comment] = STATE(1102), + [anon_sym_export] = ACTIONS(3721), + [anon_sym_alias] = ACTIONS(3721), + [anon_sym_let] = ACTIONS(3721), + [anon_sym_let_DASHenv] = ACTIONS(3721), + [anon_sym_mut] = ACTIONS(3721), + [anon_sym_const] = ACTIONS(3721), + [anon_sym_SEMI] = ACTIONS(3721), + [sym_cmd_identifier] = ACTIONS(3721), + [anon_sym_LF] = ACTIONS(3723), + [anon_sym_def] = ACTIONS(3721), + [anon_sym_export_DASHenv] = ACTIONS(3721), + [anon_sym_extern] = ACTIONS(3721), + [anon_sym_module] = ACTIONS(3721), + [anon_sym_use] = ACTIONS(3721), + [anon_sym_LBRACK] = ACTIONS(3721), + [anon_sym_LPAREN] = ACTIONS(3721), + [anon_sym_RPAREN] = ACTIONS(3721), + [anon_sym_DOLLAR] = ACTIONS(3721), + [anon_sym_error] = ACTIONS(3721), + [anon_sym_DASH_DASH] = ACTIONS(3721), + [anon_sym_DASH] = ACTIONS(3721), + [anon_sym_break] = ACTIONS(3721), + [anon_sym_continue] = ACTIONS(3721), + [anon_sym_for] = ACTIONS(3721), + [anon_sym_loop] = ACTIONS(3721), + [anon_sym_while] = ACTIONS(3721), + [anon_sym_do] = ACTIONS(3721), + [anon_sym_if] = ACTIONS(3721), + [anon_sym_match] = ACTIONS(3721), + [anon_sym_LBRACE] = ACTIONS(3721), + [anon_sym_RBRACE] = ACTIONS(3721), + [anon_sym_DOT_DOT] = ACTIONS(3721), + [anon_sym_try] = ACTIONS(3721), + [anon_sym_return] = ACTIONS(3721), + [anon_sym_source] = ACTIONS(3721), + [anon_sym_source_DASHenv] = ACTIONS(3721), + [anon_sym_register] = ACTIONS(3721), + [anon_sym_hide] = ACTIONS(3721), + [anon_sym_hide_DASHenv] = ACTIONS(3721), + [anon_sym_overlay] = ACTIONS(3721), + [anon_sym_as] = ACTIONS(3721), + [anon_sym_where] = ACTIONS(3721), + [anon_sym_not] = ACTIONS(3721), + [anon_sym_DOT_DOT2] = ACTIONS(3721), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3721), + [anon_sym_DOT_DOT_LT] = ACTIONS(3721), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3723), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3723), + [anon_sym_null] = ACTIONS(3721), + [anon_sym_true] = ACTIONS(3721), + [anon_sym_false] = ACTIONS(3721), + [aux_sym__val_number_decimal_token1] = ACTIONS(3721), + [aux_sym__val_number_decimal_token2] = ACTIONS(3721), + [anon_sym_DOT2] = ACTIONS(3721), + [aux_sym__val_number_decimal_token3] = ACTIONS(3721), + [aux_sym__val_number_token1] = ACTIONS(3721), + [aux_sym__val_number_token2] = ACTIONS(3721), + [aux_sym__val_number_token3] = ACTIONS(3721), + [aux_sym__val_number_token4] = ACTIONS(3721), + [aux_sym__val_number_token5] = ACTIONS(3721), + [aux_sym__val_number_token6] = ACTIONS(3721), + [anon_sym_0b] = ACTIONS(3721), + [anon_sym_0o] = ACTIONS(3721), + [anon_sym_0x] = ACTIONS(3721), + [sym_val_date] = ACTIONS(3721), + [anon_sym_DQUOTE] = ACTIONS(3721), + [sym__str_single_quotes] = ACTIONS(3721), + [sym__str_back_ticks] = ACTIONS(3721), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3721), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3721), + [anon_sym_CARET] = ACTIONS(3721), [anon_sym_POUND] = ACTIONS(113), }, - [898] = { - [sym_comment] = STATE(898), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_list] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_make] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_else] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_catch] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_new] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [sym__entry_separator] = ACTIONS(1370), - [aux_sym__record_key_token2] = ACTIONS(1368), + [1103] = { + [sym_comment] = STATE(1103), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_alias] = ACTIONS(1061), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_let_DASHenv] = ACTIONS(1061), + [anon_sym_mut] = ACTIONS(1061), + [anon_sym_const] = ACTIONS(1061), + [anon_sym_SEMI] = ACTIONS(1061), + [sym_cmd_identifier] = ACTIONS(1061), + [anon_sym_LF] = ACTIONS(1063), + [anon_sym_def] = ACTIONS(1061), + [anon_sym_export_DASHenv] = ACTIONS(1061), + [anon_sym_extern] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_use] = ACTIONS(1061), + [anon_sym_LBRACK] = ACTIONS(1061), + [anon_sym_LPAREN] = ACTIONS(1061), + [anon_sym_RPAREN] = ACTIONS(1061), + [anon_sym_DOLLAR] = ACTIONS(1061), + [anon_sym_error] = ACTIONS(1061), + [anon_sym_DASH_DASH] = ACTIONS(1061), + [anon_sym_DASH] = ACTIONS(1061), + [anon_sym_break] = ACTIONS(1061), + [anon_sym_continue] = ACTIONS(1061), + [anon_sym_for] = ACTIONS(1061), + [anon_sym_loop] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(1061), + [anon_sym_do] = ACTIONS(1061), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_match] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(1061), + [anon_sym_RBRACE] = ACTIONS(1061), + [anon_sym_DOT_DOT] = ACTIONS(1061), + [anon_sym_try] = ACTIONS(1061), + [anon_sym_return] = ACTIONS(1061), + [anon_sym_source] = ACTIONS(1061), + [anon_sym_source_DASHenv] = ACTIONS(1061), + [anon_sym_register] = ACTIONS(1061), + [anon_sym_hide] = ACTIONS(1061), + [anon_sym_hide_DASHenv] = ACTIONS(1061), + [anon_sym_overlay] = ACTIONS(1061), + [anon_sym_as] = ACTIONS(1061), + [anon_sym_where] = ACTIONS(1061), + [anon_sym_not] = ACTIONS(1061), + [anon_sym_DOT_DOT2] = ACTIONS(1061), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1061), + [anon_sym_DOT_DOT_LT] = ACTIONS(1061), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1063), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1063), + [anon_sym_null] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1061), + [anon_sym_false] = ACTIONS(1061), + [aux_sym__val_number_decimal_token1] = ACTIONS(1061), + [aux_sym__val_number_decimal_token2] = ACTIONS(1061), + [anon_sym_DOT2] = ACTIONS(1061), + [aux_sym__val_number_decimal_token3] = ACTIONS(1061), + [aux_sym__val_number_token1] = ACTIONS(1061), + [aux_sym__val_number_token2] = ACTIONS(1061), + [aux_sym__val_number_token3] = ACTIONS(1061), + [aux_sym__val_number_token4] = ACTIONS(1061), + [aux_sym__val_number_token5] = ACTIONS(1061), + [aux_sym__val_number_token6] = ACTIONS(1061), + [anon_sym_0b] = ACTIONS(1061), + [anon_sym_0o] = ACTIONS(1061), + [anon_sym_0x] = ACTIONS(1061), + [sym_val_date] = ACTIONS(1061), + [anon_sym_DQUOTE] = ACTIONS(1061), + [sym__str_single_quotes] = ACTIONS(1061), + [sym__str_back_ticks] = ACTIONS(1061), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1061), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1061), + [anon_sym_CARET] = ACTIONS(1061), [anon_sym_POUND] = ACTIONS(113), }, - [899] = { - [sym_comment] = STATE(899), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_list] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_make] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_else] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_catch] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_new] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [sym__entry_separator] = ACTIONS(1370), - [aux_sym__record_key_token2] = ACTIONS(1368), + [1104] = { + [sym_comment] = STATE(1104), + [anon_sym_export] = ACTIONS(3725), + [anon_sym_alias] = ACTIONS(3725), + [anon_sym_let] = ACTIONS(3725), + [anon_sym_let_DASHenv] = ACTIONS(3725), + [anon_sym_mut] = ACTIONS(3725), + [anon_sym_const] = ACTIONS(3725), + [anon_sym_SEMI] = ACTIONS(3725), + [sym_cmd_identifier] = ACTIONS(3725), + [anon_sym_LF] = ACTIONS(3725), + [anon_sym_def] = ACTIONS(3725), + [anon_sym_export_DASHenv] = ACTIONS(3725), + [anon_sym_extern] = ACTIONS(3725), + [anon_sym_module] = ACTIONS(3725), + [anon_sym_use] = ACTIONS(3725), + [anon_sym_LBRACK] = ACTIONS(3725), + [anon_sym_LPAREN] = ACTIONS(3725), + [anon_sym_RPAREN] = ACTIONS(3725), + [anon_sym_DOLLAR] = ACTIONS(3725), + [anon_sym_error] = ACTIONS(3725), + [anon_sym_DASH_DASH] = ACTIONS(3725), + [anon_sym_DASH] = ACTIONS(3725), + [anon_sym_break] = ACTIONS(3725), + [anon_sym_continue] = ACTIONS(3725), + [anon_sym_for] = ACTIONS(3725), + [anon_sym_loop] = ACTIONS(3725), + [anon_sym_while] = ACTIONS(3725), + [anon_sym_do] = ACTIONS(3725), + [anon_sym_if] = ACTIONS(3725), + [anon_sym_match] = ACTIONS(3725), + [anon_sym_LBRACE] = ACTIONS(3725), + [anon_sym_RBRACE] = ACTIONS(3725), + [anon_sym_DOT_DOT] = ACTIONS(3725), + [anon_sym_try] = ACTIONS(3725), + [anon_sym_return] = ACTIONS(3725), + [anon_sym_source] = ACTIONS(3725), + [anon_sym_source_DASHenv] = ACTIONS(3725), + [anon_sym_register] = ACTIONS(3725), + [anon_sym_hide] = ACTIONS(3725), + [anon_sym_hide_DASHenv] = ACTIONS(3725), + [anon_sym_overlay] = ACTIONS(3725), + [anon_sym_as] = ACTIONS(3725), + [anon_sym_where] = ACTIONS(3725), + [anon_sym_not] = ACTIONS(3725), + [anon_sym_LPAREN2] = ACTIONS(3727), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3725), + [anon_sym_DOT_DOT_LT] = ACTIONS(3725), + [anon_sym_null] = ACTIONS(3725), + [anon_sym_true] = ACTIONS(3725), + [anon_sym_false] = ACTIONS(3725), + [aux_sym__val_number_decimal_token1] = ACTIONS(3725), + [aux_sym__val_number_decimal_token2] = ACTIONS(3725), + [anon_sym_DOT2] = ACTIONS(3725), + [aux_sym__val_number_decimal_token3] = ACTIONS(3725), + [aux_sym__val_number_token1] = ACTIONS(3725), + [aux_sym__val_number_token2] = ACTIONS(3725), + [aux_sym__val_number_token3] = ACTIONS(3725), + [aux_sym__val_number_token4] = ACTIONS(3725), + [aux_sym__val_number_token5] = ACTIONS(3725), + [aux_sym__val_number_token6] = ACTIONS(3725), + [anon_sym_0b] = ACTIONS(3725), + [anon_sym_0o] = ACTIONS(3725), + [anon_sym_0x] = ACTIONS(3725), + [sym_val_date] = ACTIONS(3725), + [anon_sym_DQUOTE] = ACTIONS(3725), + [sym__str_single_quotes] = ACTIONS(3725), + [sym__str_back_ticks] = ACTIONS(3725), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3725), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3725), + [anon_sym_CARET] = ACTIONS(3725), + [aux_sym_command_token1] = ACTIONS(3729), + [aux_sym_unquoted_token6] = ACTIONS(1163), [anon_sym_POUND] = ACTIONS(113), }, - [900] = { - [sym_comment] = STATE(900), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_list] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_make] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_else] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_catch] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_new] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [sym__entry_separator] = ACTIONS(1370), - [aux_sym__record_key_token2] = ACTIONS(1368), + [1105] = { + [sym_cell_path] = STATE(1500), + [sym_path] = STATE(1108), + [sym_comment] = STATE(1105), + [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), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [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_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = 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_where] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT] = ACTIONS(3632), + [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), + [anon_sym_DOT2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = 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(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_CARET] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(113), }, - [901] = { - [sym_comment] = STATE(901), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_list] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_make] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_else] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_catch] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_new] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [sym__entry_separator] = ACTIONS(1370), - [aux_sym__record_key_token2] = ACTIONS(1368), + [1106] = { + [sym_comment] = STATE(1106), + [anon_sym_LBRACK] = ACTIONS(1072), + [anon_sym_COMMA] = ACTIONS(1072), + [anon_sym_RBRACK] = ACTIONS(1072), + [anon_sym_LPAREN] = ACTIONS(1072), + [anon_sym_DOLLAR] = ACTIONS(1072), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_DASH_DASH] = ACTIONS(1072), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_in] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_DOT_DOT] = ACTIONS(1072), + [anon_sym_STAR] = ACTIONS(1076), + [anon_sym_STAR_STAR] = ACTIONS(1076), + [anon_sym_PLUS_PLUS] = ACTIONS(1076), + [anon_sym_SLASH] = ACTIONS(1076), + [anon_sym_mod] = ACTIONS(1076), + [anon_sym_SLASH_SLASH] = ACTIONS(1076), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_bit_DASHshl] = ACTIONS(1076), + [anon_sym_bit_DASHshr] = ACTIONS(1076), + [anon_sym_EQ_EQ] = ACTIONS(1076), + [anon_sym_BANG_EQ] = ACTIONS(1076), + [anon_sym_LT2] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1076), + [anon_sym_GT_EQ] = ACTIONS(1076), + [anon_sym_not_DASHin] = ACTIONS(1076), + [anon_sym_starts_DASHwith] = ACTIONS(1076), + [anon_sym_ends_DASHwith] = ACTIONS(1076), + [anon_sym_EQ_TILDE] = ACTIONS(1076), + [anon_sym_BANG_TILDE] = ACTIONS(1076), + [anon_sym_bit_DASHand] = ACTIONS(1076), + [anon_sym_bit_DASHxor] = ACTIONS(1076), + [anon_sym_bit_DASHor] = ACTIONS(1076), + [anon_sym_and] = ACTIONS(1076), + [anon_sym_xor] = ACTIONS(1076), + [anon_sym_or] = ACTIONS(1076), + [anon_sym_DOT_DOT2] = ACTIONS(3731), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1072), + [anon_sym_DOT_DOT_LT] = ACTIONS(1072), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3733), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3733), + [anon_sym_null] = ACTIONS(1072), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [aux_sym__val_number_decimal_token1] = ACTIONS(1072), + [aux_sym__val_number_decimal_token2] = ACTIONS(1072), + [anon_sym_DOT2] = ACTIONS(1072), + [aux_sym__val_number_decimal_token3] = ACTIONS(1072), + [aux_sym__val_number_token1] = ACTIONS(1072), + [aux_sym__val_number_token2] = ACTIONS(1072), + [aux_sym__val_number_token3] = ACTIONS(1072), + [aux_sym__val_number_token4] = ACTIONS(1072), + [aux_sym__val_number_token5] = ACTIONS(1072), + [aux_sym__val_number_token6] = ACTIONS(1072), + [anon_sym_0b] = ACTIONS(1072), + [anon_sym_0o] = ACTIONS(1072), + [anon_sym_0x] = ACTIONS(1072), + [sym_val_date] = ACTIONS(1072), + [anon_sym_DQUOTE] = ACTIONS(1072), + [sym__str_single_quotes] = ACTIONS(1072), + [sym__str_back_ticks] = ACTIONS(1072), + [sym__entry_separator] = ACTIONS(1074), + [anon_sym_err_GT] = ACTIONS(1072), + [anon_sym_out_GT] = ACTIONS(1072), + [anon_sym_e_GT] = ACTIONS(1072), + [anon_sym_o_GT] = ACTIONS(1072), + [anon_sym_err_PLUSout_GT] = ACTIONS(1072), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1072), + [anon_sym_o_PLUSe_GT] = ACTIONS(1072), + [anon_sym_e_PLUSo_GT] = ACTIONS(1072), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1072), [anon_sym_POUND] = ACTIONS(113), }, - [902] = { - [sym_comment] = STATE(902), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_list] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_make] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_else] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_catch] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_new] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [sym__entry_separator] = ACTIONS(1370), - [aux_sym__record_key_token2] = ACTIONS(1368), + [1107] = { + [sym_path] = STATE(1344), + [sym_comment] = STATE(1107), + [aux_sym_cell_path_repeat1] = STATE(1128), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_COMMA] = ACTIONS(1010), + [anon_sym_RBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_DOT] = ACTIONS(3689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_null] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym__val_number_decimal_token1] = ACTIONS(1010), + [aux_sym__val_number_decimal_token2] = ACTIONS(1010), + [anon_sym_DOT2] = ACTIONS(1010), + [aux_sym__val_number_decimal_token3] = 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(1010), + [aux_sym__val_number_token5] = ACTIONS(1010), + [aux_sym__val_number_token6] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [sym__entry_separator] = ACTIONS(1012), + [anon_sym_err_GT] = ACTIONS(1010), + [anon_sym_out_GT] = ACTIONS(1010), + [anon_sym_e_GT] = ACTIONS(1010), + [anon_sym_o_GT] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT] = ACTIONS(1010), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(113), }, - [903] = { - [sym_comment] = STATE(903), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_list] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_make] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_else] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_catch] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_new] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [sym__entry_separator] = ACTIONS(1370), - [aux_sym__record_key_token2] = ACTIONS(1368), + [1108] = { + [sym_path] = STATE(1306), + [sym_comment] = STATE(1108), + [aux_sym_cell_path_repeat1] = STATE(1113), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_as] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT] = ACTIONS(3632), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_null] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym__val_number_decimal_token1] = ACTIONS(1010), + [aux_sym__val_number_decimal_token2] = ACTIONS(1010), + [anon_sym_DOT2] = ACTIONS(1010), + [aux_sym__val_number_decimal_token3] = 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(1010), + [aux_sym__val_number_token5] = ACTIONS(1010), + [aux_sym__val_number_token6] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [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_CARET] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(113), }, - [904] = { - [sym_comment] = STATE(904), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_list] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_make] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_else] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_catch] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_new] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [sym__entry_separator] = ACTIONS(1370), - [aux_sym__record_key_token2] = ACTIONS(1368), + [1109] = { + [sym_comment] = STATE(1109), + [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), + [anon_sym_SEMI] = ACTIONS(2362), + [sym_cmd_identifier] = ACTIONS(2362), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2362), + [anon_sym_LPAREN] = ACTIONS(2362), + [anon_sym_RPAREN] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2362), + [anon_sym_error] = ACTIONS(2362), + [anon_sym_DASH_DASH] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_break] = ACTIONS(2362), + [anon_sym_continue] = ACTIONS(2362), + [anon_sym_for] = ACTIONS(2362), + [anon_sym_loop] = ACTIONS(2362), + [anon_sym_while] = ACTIONS(2362), + [anon_sym_do] = ACTIONS(2362), + [anon_sym_if] = ACTIONS(2362), + [anon_sym_match] = ACTIONS(2362), + [anon_sym_LBRACE] = ACTIONS(2362), + [anon_sym_RBRACE] = ACTIONS(2362), + [anon_sym_DOT_DOT] = ACTIONS(2362), + [anon_sym_try] = 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_where] = ACTIONS(2362), + [anon_sym_not] = ACTIONS(2362), + [anon_sym_DOT] = ACTIONS(2362), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2362), + [anon_sym_DOT_DOT_LT] = ACTIONS(2362), + [aux_sym__immediate_decimal_token2] = ACTIONS(3735), + [anon_sym_null] = ACTIONS(2362), + [anon_sym_true] = ACTIONS(2362), + [anon_sym_false] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2362), + [aux_sym__val_number_decimal_token2] = ACTIONS(2362), + [anon_sym_DOT2] = ACTIONS(2362), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2362), + [anon_sym_0o] = ACTIONS(2362), + [anon_sym_0x] = ACTIONS(2362), + [sym_val_date] = 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_CARET] = ACTIONS(2362), + [aux_sym_unquoted_token2] = ACTIONS(2362), [anon_sym_POUND] = ACTIONS(113), }, - [905] = { - [sym_comment] = STATE(905), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_list] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_make] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_else] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_catch] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_new] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [sym__entry_separator] = ACTIONS(1370), - [aux_sym__record_key_token2] = ACTIONS(1368), + [1110] = { + [sym_comment] = STATE(1110), + [ts_builtin_sym_end] = ACTIONS(3576), + [anon_sym_export] = ACTIONS(3574), + [anon_sym_alias] = ACTIONS(3574), + [anon_sym_let] = ACTIONS(3574), + [anon_sym_let_DASHenv] = ACTIONS(3574), + [anon_sym_mut] = ACTIONS(3574), + [anon_sym_const] = ACTIONS(3574), + [anon_sym_SEMI] = ACTIONS(3574), + [sym_cmd_identifier] = ACTIONS(3574), + [anon_sym_LF] = ACTIONS(3576), + [anon_sym_def] = ACTIONS(3574), + [anon_sym_export_DASHenv] = ACTIONS(3574), + [anon_sym_extern] = ACTIONS(3574), + [anon_sym_module] = ACTIONS(3574), + [anon_sym_use] = ACTIONS(3574), + [anon_sym_LBRACK] = ACTIONS(3574), + [anon_sym_LPAREN] = ACTIONS(3574), + [anon_sym_DOLLAR] = ACTIONS(3574), + [anon_sym_error] = ACTIONS(3574), + [anon_sym_DASH_DASH] = ACTIONS(3574), + [anon_sym_DASH] = ACTIONS(3574), + [anon_sym_break] = ACTIONS(3574), + [anon_sym_continue] = ACTIONS(3574), + [anon_sym_for] = ACTIONS(3574), + [anon_sym_loop] = ACTIONS(3574), + [anon_sym_while] = ACTIONS(3574), + [anon_sym_do] = ACTIONS(3574), + [anon_sym_if] = ACTIONS(3574), + [anon_sym_match] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(3574), + [anon_sym_DOT_DOT] = ACTIONS(3574), + [anon_sym_try] = ACTIONS(3574), + [anon_sym_return] = ACTIONS(3574), + [anon_sym_source] = ACTIONS(3574), + [anon_sym_source_DASHenv] = ACTIONS(3574), + [anon_sym_register] = ACTIONS(3574), + [anon_sym_hide] = ACTIONS(3574), + [anon_sym_hide_DASHenv] = ACTIONS(3574), + [anon_sym_overlay] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_where] = ACTIONS(3574), + [anon_sym_not] = ACTIONS(3574), + [anon_sym_LPAREN2] = ACTIONS(3358), + [anon_sym_DOT] = ACTIONS(3362), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3574), + [anon_sym_DOT_DOT_LT] = ACTIONS(3574), + [aux_sym__immediate_decimal_token1] = ACTIONS(3737), + [anon_sym_null] = ACTIONS(3574), + [anon_sym_true] = ACTIONS(3574), + [anon_sym_false] = ACTIONS(3574), + [aux_sym__val_number_decimal_token1] = ACTIONS(3574), + [aux_sym__val_number_decimal_token2] = ACTIONS(3574), + [anon_sym_DOT2] = ACTIONS(3574), + [aux_sym__val_number_decimal_token3] = ACTIONS(3574), + [aux_sym__val_number_token1] = ACTIONS(3574), + [aux_sym__val_number_token2] = ACTIONS(3574), + [aux_sym__val_number_token3] = ACTIONS(3574), + [aux_sym__val_number_token4] = ACTIONS(3574), + [aux_sym__val_number_token5] = ACTIONS(3574), + [aux_sym__val_number_token6] = ACTIONS(3574), + [anon_sym_0b] = ACTIONS(3574), + [anon_sym_0o] = ACTIONS(3574), + [anon_sym_0x] = ACTIONS(3574), + [sym_val_date] = ACTIONS(3574), + [anon_sym_DQUOTE] = ACTIONS(3574), + [sym__str_single_quotes] = ACTIONS(3574), + [sym__str_back_ticks] = ACTIONS(3574), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3574), + [anon_sym_CARET] = ACTIONS(3574), + [aux_sym_unquoted_token2] = ACTIONS(3362), [anon_sym_POUND] = ACTIONS(113), }, - [906] = { - [sym_comment] = STATE(906), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_list] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_make] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_else] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_catch] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_new] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [sym__entry_separator] = ACTIONS(1370), - [aux_sym__record_key_token2] = ACTIONS(1368), + [1111] = { + [sym_comment] = STATE(1111), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_alias] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_let_DASHenv] = ACTIONS(2229), + [anon_sym_mut] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2229), + [sym_cmd_identifier] = ACTIONS(2229), + [anon_sym_LF] = ACTIONS(2231), + [anon_sym_def] = ACTIONS(2229), + [anon_sym_export_DASHenv] = ACTIONS(2229), + [anon_sym_extern] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_RPAREN] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2229), + [anon_sym_error] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_loop] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_RBRACE] = ACTIONS(2229), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_source] = ACTIONS(2229), + [anon_sym_source_DASHenv] = ACTIONS(2229), + [anon_sym_register] = ACTIONS(2229), + [anon_sym_hide] = ACTIONS(2229), + [anon_sym_hide_DASHenv] = ACTIONS(2229), + [anon_sym_overlay] = ACTIONS(2229), + [anon_sym_as] = ACTIONS(2229), + [anon_sym_where] = ACTIONS(2229), + [anon_sym_not] = ACTIONS(2229), + [anon_sym_DOT_DOT2] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2229), + [anon_sym_DOT_DOT_LT] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2231), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2231), + [anon_sym_null] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [aux_sym__val_number_decimal_token1] = ACTIONS(2229), + [aux_sym__val_number_decimal_token2] = ACTIONS(2229), + [anon_sym_DOT2] = ACTIONS(2229), + [aux_sym__val_number_decimal_token3] = ACTIONS(2229), + [aux_sym__val_number_token1] = ACTIONS(2229), + [aux_sym__val_number_token2] = ACTIONS(2229), + [aux_sym__val_number_token3] = ACTIONS(2229), + [aux_sym__val_number_token4] = ACTIONS(2229), + [aux_sym__val_number_token5] = ACTIONS(2229), + [aux_sym__val_number_token6] = ACTIONS(2229), + [anon_sym_0b] = ACTIONS(2229), + [anon_sym_0o] = ACTIONS(2229), + [anon_sym_0x] = ACTIONS(2229), + [sym_val_date] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2229), + [anon_sym_CARET] = ACTIONS(2229), [anon_sym_POUND] = ACTIONS(113), }, - [907] = { - [sym_comment] = STATE(907), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_list] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_make] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_else] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_catch] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_new] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [sym__entry_separator] = ACTIONS(1370), - [aux_sym__record_key_token2] = ACTIONS(1368), + [1112] = { + [sym_comment] = STATE(1112), + [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), + [anon_sym_SEMI] = ACTIONS(2362), + [sym_cmd_identifier] = ACTIONS(2362), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2362), + [anon_sym_LPAREN] = ACTIONS(2362), + [anon_sym_RPAREN] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2362), + [anon_sym_error] = ACTIONS(2362), + [anon_sym_DASH_DASH] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_break] = ACTIONS(2362), + [anon_sym_continue] = ACTIONS(2362), + [anon_sym_for] = ACTIONS(2362), + [anon_sym_loop] = ACTIONS(2362), + [anon_sym_while] = ACTIONS(2362), + [anon_sym_do] = ACTIONS(2362), + [anon_sym_if] = ACTIONS(2362), + [anon_sym_match] = ACTIONS(2362), + [anon_sym_LBRACE] = ACTIONS(2362), + [anon_sym_RBRACE] = ACTIONS(2362), + [anon_sym_DOT_DOT] = ACTIONS(2362), + [anon_sym_try] = 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_where] = ACTIONS(2362), + [anon_sym_not] = ACTIONS(2362), + [anon_sym_DOT_DOT2] = ACTIONS(2362), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2362), + [anon_sym_DOT_DOT_LT] = ACTIONS(2362), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2364), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2364), + [anon_sym_null] = ACTIONS(2362), + [anon_sym_true] = ACTIONS(2362), + [anon_sym_false] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2362), + [aux_sym__val_number_decimal_token2] = ACTIONS(2362), + [anon_sym_DOT2] = ACTIONS(2362), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2362), + [anon_sym_0o] = ACTIONS(2362), + [anon_sym_0x] = ACTIONS(2362), + [sym_val_date] = 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_CARET] = ACTIONS(2362), [anon_sym_POUND] = ACTIONS(113), }, - [908] = { - [sym_comment] = STATE(908), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_list] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_make] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_else] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_catch] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_new] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [sym__entry_separator] = ACTIONS(1370), - [aux_sym__record_key_token2] = ACTIONS(1368), + [1113] = { + [sym_path] = STATE(1306), + [sym_comment] = STATE(1113), + [aux_sym_cell_path_repeat1] = STATE(1119), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_alias] = ACTIONS(1006), + [anon_sym_let] = ACTIONS(1006), + [anon_sym_let_DASHenv] = ACTIONS(1006), + [anon_sym_mut] = ACTIONS(1006), + [anon_sym_const] = ACTIONS(1006), + [anon_sym_SEMI] = ACTIONS(1006), + [sym_cmd_identifier] = ACTIONS(1006), + [anon_sym_LF] = ACTIONS(1008), + [anon_sym_def] = ACTIONS(1006), + [anon_sym_export_DASHenv] = ACTIONS(1006), + [anon_sym_extern] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_use] = ACTIONS(1006), + [anon_sym_LBRACK] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_RPAREN] = ACTIONS(1006), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_error] = ACTIONS(1006), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_break] = ACTIONS(1006), + [anon_sym_continue] = ACTIONS(1006), + [anon_sym_for] = ACTIONS(1006), + [anon_sym_loop] = ACTIONS(1006), + [anon_sym_while] = ACTIONS(1006), + [anon_sym_do] = ACTIONS(1006), + [anon_sym_if] = ACTIONS(1006), + [anon_sym_match] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(1006), + [anon_sym_DOT_DOT] = ACTIONS(1006), + [anon_sym_try] = ACTIONS(1006), + [anon_sym_return] = ACTIONS(1006), + [anon_sym_source] = ACTIONS(1006), + [anon_sym_source_DASHenv] = ACTIONS(1006), + [anon_sym_register] = ACTIONS(1006), + [anon_sym_hide] = ACTIONS(1006), + [anon_sym_hide_DASHenv] = ACTIONS(1006), + [anon_sym_overlay] = ACTIONS(1006), + [anon_sym_as] = ACTIONS(1006), + [anon_sym_where] = ACTIONS(1006), + [anon_sym_not] = ACTIONS(1006), + [anon_sym_DOT] = ACTIONS(3632), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), + [anon_sym_DOT_DOT_LT] = ACTIONS(1006), + [anon_sym_null] = ACTIONS(1006), + [anon_sym_true] = ACTIONS(1006), + [anon_sym_false] = ACTIONS(1006), + [aux_sym__val_number_decimal_token1] = ACTIONS(1006), + [aux_sym__val_number_decimal_token2] = ACTIONS(1006), + [anon_sym_DOT2] = ACTIONS(1006), + [aux_sym__val_number_decimal_token3] = ACTIONS(1006), + [aux_sym__val_number_token1] = ACTIONS(1006), + [aux_sym__val_number_token2] = ACTIONS(1006), + [aux_sym__val_number_token3] = ACTIONS(1006), + [aux_sym__val_number_token4] = ACTIONS(1006), + [aux_sym__val_number_token5] = ACTIONS(1006), + [aux_sym__val_number_token6] = ACTIONS(1006), + [anon_sym_0b] = ACTIONS(1006), + [anon_sym_0o] = ACTIONS(1006), + [anon_sym_0x] = ACTIONS(1006), + [sym_val_date] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym__str_single_quotes] = ACTIONS(1006), + [sym__str_back_ticks] = ACTIONS(1006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1006), + [anon_sym_CARET] = ACTIONS(1006), [anon_sym_POUND] = ACTIONS(113), }, - [909] = { - [sym_comment] = STATE(909), - [anon_sym_export] = ACTIONS(1194), - [anon_sym_alias] = ACTIONS(1194), - [anon_sym_let] = ACTIONS(1194), - [anon_sym_let_DASHenv] = ACTIONS(1194), - [anon_sym_mut] = ACTIONS(1194), - [anon_sym_const] = ACTIONS(1194), - [sym_cmd_identifier] = ACTIONS(1194), - [anon_sym_def] = ACTIONS(1194), - [anon_sym_export_DASHenv] = ACTIONS(1194), - [anon_sym_extern] = ACTIONS(1194), - [anon_sym_module] = ACTIONS(1194), - [anon_sym_use] = ACTIONS(1194), - [anon_sym_LPAREN] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1194), - [anon_sym_error] = ACTIONS(1194), - [anon_sym_list] = ACTIONS(1194), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_break] = ACTIONS(1194), - [anon_sym_continue] = ACTIONS(1194), - [anon_sym_for] = ACTIONS(1194), - [anon_sym_in] = ACTIONS(1200), - [anon_sym_loop] = ACTIONS(1194), - [anon_sym_make] = ACTIONS(1194), - [anon_sym_while] = ACTIONS(1194), - [anon_sym_do] = ACTIONS(1194), - [anon_sym_if] = ACTIONS(1194), - [anon_sym_else] = ACTIONS(1194), - [anon_sym_match] = ACTIONS(1194), - [anon_sym_RBRACE] = ACTIONS(1194), - [anon_sym_try] = ACTIONS(1194), - [anon_sym_catch] = ACTIONS(1194), - [anon_sym_return] = ACTIONS(1194), - [anon_sym_source] = ACTIONS(1194), - [anon_sym_source_DASHenv] = ACTIONS(1194), - [anon_sym_register] = ACTIONS(1194), - [anon_sym_hide] = ACTIONS(1194), - [anon_sym_hide_DASHenv] = ACTIONS(1194), - [anon_sym_overlay] = ACTIONS(1194), - [anon_sym_new] = ACTIONS(1194), - [anon_sym_as] = ACTIONS(1194), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_STAR_STAR] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_SLASH] = ACTIONS(1198), - [anon_sym_mod] = ACTIONS(1198), - [anon_sym_SLASH_SLASH] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1200), - [anon_sym_bit_DASHshl] = ACTIONS(1198), - [anon_sym_bit_DASHshr] = ACTIONS(1198), - [anon_sym_EQ_EQ] = ACTIONS(1198), - [anon_sym_BANG_EQ] = ACTIONS(1198), - [anon_sym_LT2] = ACTIONS(1198), - [anon_sym_LT_EQ] = ACTIONS(1198), - [anon_sym_GT_EQ] = ACTIONS(1198), - [anon_sym_not_DASHin] = ACTIONS(1198), - [anon_sym_starts_DASHwith] = ACTIONS(1198), - [anon_sym_ends_DASHwith] = ACTIONS(1198), - [anon_sym_EQ_TILDE] = ACTIONS(1198), - [anon_sym_BANG_TILDE] = ACTIONS(1198), - [anon_sym_bit_DASHand] = ACTIONS(1198), - [anon_sym_bit_DASHxor] = ACTIONS(1198), - [anon_sym_bit_DASHor] = ACTIONS(1198), - [anon_sym_and] = ACTIONS(1198), - [anon_sym_xor] = ACTIONS(1198), - [anon_sym_or] = ACTIONS(1198), - [aux_sym__val_number_decimal_token1] = ACTIONS(1194), - [aux_sym__val_number_decimal_token2] = ACTIONS(1194), - [anon_sym_DOT2] = ACTIONS(1194), - [aux_sym__val_number_decimal_token3] = ACTIONS(1194), - [aux_sym__val_number_token1] = ACTIONS(1194), - [aux_sym__val_number_token2] = ACTIONS(1194), - [aux_sym__val_number_token3] = ACTIONS(1194), - [aux_sym__val_number_token4] = ACTIONS(1194), - [aux_sym__val_number_token5] = ACTIONS(1194), - [aux_sym__val_number_token6] = ACTIONS(1194), - [anon_sym_DQUOTE] = ACTIONS(1194), - [sym__str_single_quotes] = ACTIONS(1194), - [sym__str_back_ticks] = ACTIONS(1194), - [sym__entry_separator] = ACTIONS(1196), - [aux_sym__record_key_token2] = ACTIONS(1194), + [1114] = { + [sym_comment] = STATE(1114), + [anon_sym_SEMI] = ACTIONS(938), + [anon_sym_LF] = ACTIONS(940), + [anon_sym_LBRACK] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(938), + [anon_sym_RPAREN] = ACTIONS(938), + [anon_sym_PIPE] = ACTIONS(938), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_in] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_RBRACE] = ACTIONS(938), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_STAR_STAR] = ACTIONS(938), + [anon_sym_PLUS_PLUS] = ACTIONS(938), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(938), + [anon_sym_SLASH_SLASH] = ACTIONS(938), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_bit_DASHshl] = ACTIONS(938), + [anon_sym_bit_DASHshr] = ACTIONS(938), + [anon_sym_EQ_EQ] = ACTIONS(938), + [anon_sym_BANG_EQ] = ACTIONS(938), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(938), + [anon_sym_GT_EQ] = ACTIONS(938), + [anon_sym_not_DASHin] = ACTIONS(938), + [anon_sym_starts_DASHwith] = ACTIONS(938), + [anon_sym_ends_DASHwith] = ACTIONS(938), + [anon_sym_EQ_TILDE] = ACTIONS(938), + [anon_sym_BANG_TILDE] = ACTIONS(938), + [anon_sym_bit_DASHand] = ACTIONS(938), + [anon_sym_bit_DASHxor] = ACTIONS(938), + [anon_sym_bit_DASHor] = ACTIONS(938), + [anon_sym_and] = ACTIONS(938), + [anon_sym_xor] = ACTIONS(938), + [anon_sym_or] = ACTIONS(938), + [anon_sym_not] = ACTIONS(938), + [anon_sym_DOT_DOT2] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(3739), + [anon_sym_DOT_DOT_EQ] = ACTIONS(938), + [anon_sym_DOT_DOT_LT] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(965), + [anon_sym_DOT_DOT_LT2] = ACTIONS(965), + [anon_sym_null] = ACTIONS(938), + [anon_sym_true] = ACTIONS(938), + [anon_sym_false] = ACTIONS(938), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(938), + [anon_sym_DOT2] = ACTIONS(938), + [aux_sym__val_number_decimal_token3] = ACTIONS(938), + [aux_sym__val_number_token1] = ACTIONS(938), + [aux_sym__val_number_token2] = ACTIONS(938), + [aux_sym__val_number_token3] = ACTIONS(938), + [aux_sym__val_number_token4] = ACTIONS(938), + [aux_sym__val_number_token5] = ACTIONS(938), + [aux_sym__val_number_token6] = ACTIONS(938), + [anon_sym_0b] = ACTIONS(938), + [sym_filesize_unit] = ACTIONS(3621), + [sym_duration_unit] = ACTIONS(3623), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym__str_single_quotes] = ACTIONS(938), + [sym__str_back_ticks] = ACTIONS(938), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(938), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(938), + [aux_sym_unquoted_token5] = ACTIONS(3638), [anon_sym_POUND] = ACTIONS(113), }, - [910] = { - [sym_comment] = STATE(910), - [anon_sym_export] = ACTIONS(1302), - [anon_sym_alias] = ACTIONS(1302), - [anon_sym_let] = ACTIONS(1302), - [anon_sym_let_DASHenv] = ACTIONS(1302), - [anon_sym_mut] = ACTIONS(1302), - [anon_sym_const] = ACTIONS(1302), - [sym_cmd_identifier] = ACTIONS(1302), - [anon_sym_def] = ACTIONS(1302), - [anon_sym_export_DASHenv] = ACTIONS(1302), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_module] = ACTIONS(1302), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_DOLLAR] = ACTIONS(1302), - [anon_sym_error] = ACTIONS(1302), - [anon_sym_list] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_break] = ACTIONS(1302), - [anon_sym_continue] = ACTIONS(1302), - [anon_sym_for] = ACTIONS(1302), - [anon_sym_in] = ACTIONS(1302), - [anon_sym_loop] = ACTIONS(1302), - [anon_sym_make] = ACTIONS(1302), - [anon_sym_while] = ACTIONS(1302), - [anon_sym_do] = ACTIONS(1302), - [anon_sym_if] = ACTIONS(1302), - [anon_sym_else] = ACTIONS(1302), - [anon_sym_match] = ACTIONS(1302), - [anon_sym_RBRACE] = ACTIONS(1302), - [anon_sym_try] = ACTIONS(1302), - [anon_sym_catch] = ACTIONS(1302), - [anon_sym_return] = ACTIONS(1302), - [anon_sym_source] = ACTIONS(1302), - [anon_sym_source_DASHenv] = ACTIONS(1302), - [anon_sym_register] = ACTIONS(1302), - [anon_sym_hide] = ACTIONS(1302), - [anon_sym_hide_DASHenv] = ACTIONS(1302), - [anon_sym_overlay] = ACTIONS(1302), - [anon_sym_new] = ACTIONS(1302), - [anon_sym_as] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_STAR_STAR] = ACTIONS(1302), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_SLASH] = ACTIONS(1302), - [anon_sym_mod] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_bit_DASHshl] = ACTIONS(1302), - [anon_sym_bit_DASHshr] = ACTIONS(1302), - [anon_sym_EQ_EQ] = ACTIONS(1302), - [anon_sym_BANG_EQ] = ACTIONS(1302), - [anon_sym_LT2] = ACTIONS(1302), - [anon_sym_LT_EQ] = ACTIONS(1302), - [anon_sym_GT_EQ] = ACTIONS(1302), - [anon_sym_not_DASHin] = ACTIONS(1302), - [anon_sym_starts_DASHwith] = ACTIONS(1302), - [anon_sym_ends_DASHwith] = ACTIONS(1302), - [anon_sym_EQ_TILDE] = ACTIONS(1302), - [anon_sym_BANG_TILDE] = ACTIONS(1302), - [anon_sym_bit_DASHand] = ACTIONS(1302), - [anon_sym_bit_DASHxor] = ACTIONS(1302), - [anon_sym_bit_DASHor] = ACTIONS(1302), - [anon_sym_and] = ACTIONS(1302), - [anon_sym_xor] = ACTIONS(1302), - [anon_sym_or] = ACTIONS(1302), - [aux_sym__val_number_decimal_token1] = ACTIONS(1302), - [aux_sym__val_number_decimal_token2] = ACTIONS(1302), - [anon_sym_DOT2] = ACTIONS(1302), - [aux_sym__val_number_decimal_token3] = ACTIONS(1302), - [aux_sym__val_number_token1] = ACTIONS(1302), - [aux_sym__val_number_token2] = ACTIONS(1302), - [aux_sym__val_number_token3] = ACTIONS(1302), - [aux_sym__val_number_token4] = ACTIONS(1302), - [aux_sym__val_number_token5] = ACTIONS(1302), - [aux_sym__val_number_token6] = ACTIONS(1302), - [anon_sym_DQUOTE] = ACTIONS(1302), - [sym__str_single_quotes] = ACTIONS(1302), - [sym__str_back_ticks] = ACTIONS(1302), - [sym__entry_separator] = ACTIONS(1304), - [aux_sym__record_key_token2] = ACTIONS(1302), + [1115] = { + [sym_comment] = STATE(1115), + [anon_sym_export] = ACTIONS(3741), + [anon_sym_alias] = ACTIONS(3741), + [anon_sym_let] = ACTIONS(3741), + [anon_sym_let_DASHenv] = ACTIONS(3741), + [anon_sym_mut] = ACTIONS(3741), + [anon_sym_const] = ACTIONS(3741), + [anon_sym_SEMI] = ACTIONS(3741), + [sym_cmd_identifier] = ACTIONS(3741), + [anon_sym_LF] = ACTIONS(3743), + [anon_sym_def] = ACTIONS(3741), + [anon_sym_export_DASHenv] = ACTIONS(3741), + [anon_sym_extern] = ACTIONS(3741), + [anon_sym_module] = ACTIONS(3741), + [anon_sym_use] = ACTIONS(3741), + [anon_sym_LBRACK] = ACTIONS(3741), + [anon_sym_LPAREN] = ACTIONS(3741), + [anon_sym_RPAREN] = ACTIONS(3741), + [anon_sym_DOLLAR] = ACTIONS(3741), + [anon_sym_error] = ACTIONS(3741), + [anon_sym_DASH_DASH] = ACTIONS(3741), + [anon_sym_DASH] = ACTIONS(3741), + [anon_sym_break] = ACTIONS(3741), + [anon_sym_continue] = ACTIONS(3741), + [anon_sym_for] = ACTIONS(3741), + [anon_sym_loop] = ACTIONS(3741), + [anon_sym_while] = ACTIONS(3741), + [anon_sym_do] = ACTIONS(3741), + [anon_sym_if] = ACTIONS(3741), + [anon_sym_match] = ACTIONS(3741), + [anon_sym_LBRACE] = ACTIONS(3741), + [anon_sym_RBRACE] = ACTIONS(3741), + [anon_sym_DOT_DOT] = ACTIONS(3741), + [anon_sym_try] = ACTIONS(3741), + [anon_sym_return] = ACTIONS(3741), + [anon_sym_source] = ACTIONS(3741), + [anon_sym_source_DASHenv] = ACTIONS(3741), + [anon_sym_register] = ACTIONS(3741), + [anon_sym_hide] = ACTIONS(3741), + [anon_sym_hide_DASHenv] = ACTIONS(3741), + [anon_sym_overlay] = ACTIONS(3741), + [anon_sym_as] = ACTIONS(3741), + [anon_sym_where] = ACTIONS(3741), + [anon_sym_not] = ACTIONS(3741), + [anon_sym_DOT_DOT2] = ACTIONS(3745), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3741), + [anon_sym_DOT_DOT_LT] = ACTIONS(3741), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3747), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3747), + [anon_sym_null] = ACTIONS(3741), + [anon_sym_true] = ACTIONS(3741), + [anon_sym_false] = ACTIONS(3741), + [aux_sym__val_number_decimal_token1] = ACTIONS(3741), + [aux_sym__val_number_decimal_token2] = ACTIONS(3741), + [anon_sym_DOT2] = ACTIONS(3741), + [aux_sym__val_number_decimal_token3] = ACTIONS(3741), + [aux_sym__val_number_token1] = ACTIONS(3741), + [aux_sym__val_number_token2] = ACTIONS(3741), + [aux_sym__val_number_token3] = ACTIONS(3741), + [aux_sym__val_number_token4] = ACTIONS(3741), + [aux_sym__val_number_token5] = ACTIONS(3741), + [aux_sym__val_number_token6] = ACTIONS(3741), + [anon_sym_0b] = ACTIONS(3741), + [anon_sym_0o] = ACTIONS(3741), + [anon_sym_0x] = ACTIONS(3741), + [sym_val_date] = ACTIONS(3741), + [anon_sym_DQUOTE] = ACTIONS(3741), + [sym__str_single_quotes] = ACTIONS(3741), + [sym__str_back_ticks] = ACTIONS(3741), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3741), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3741), + [anon_sym_CARET] = ACTIONS(3741), [anon_sym_POUND] = ACTIONS(113), }, - [911] = { - [sym_comment] = STATE(911), - [anon_sym_export] = ACTIONS(1316), - [anon_sym_alias] = ACTIONS(1316), - [anon_sym_let] = ACTIONS(1316), - [anon_sym_let_DASHenv] = ACTIONS(1316), - [anon_sym_mut] = ACTIONS(1316), - [anon_sym_const] = ACTIONS(1316), - [sym_cmd_identifier] = ACTIONS(1316), - [anon_sym_def] = ACTIONS(1316), - [anon_sym_export_DASHenv] = ACTIONS(1316), - [anon_sym_extern] = ACTIONS(1316), - [anon_sym_module] = ACTIONS(1316), - [anon_sym_use] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1316), - [anon_sym_DOLLAR] = ACTIONS(1316), - [anon_sym_error] = ACTIONS(1316), - [anon_sym_list] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_break] = ACTIONS(1316), - [anon_sym_continue] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1316), - [anon_sym_in] = ACTIONS(1316), - [anon_sym_loop] = ACTIONS(1316), - [anon_sym_make] = ACTIONS(1316), - [anon_sym_while] = ACTIONS(1316), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_if] = ACTIONS(1316), - [anon_sym_else] = ACTIONS(1316), - [anon_sym_match] = ACTIONS(1316), - [anon_sym_RBRACE] = ACTIONS(1316), - [anon_sym_try] = ACTIONS(1316), - [anon_sym_catch] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1316), - [anon_sym_source] = ACTIONS(1316), - [anon_sym_source_DASHenv] = ACTIONS(1316), - [anon_sym_register] = ACTIONS(1316), - [anon_sym_hide] = ACTIONS(1316), - [anon_sym_hide_DASHenv] = ACTIONS(1316), - [anon_sym_overlay] = ACTIONS(1316), - [anon_sym_new] = ACTIONS(1316), - [anon_sym_as] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_STAR_STAR] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_SLASH] = ACTIONS(1316), - [anon_sym_mod] = ACTIONS(1316), - [anon_sym_SLASH_SLASH] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_bit_DASHshl] = ACTIONS(1316), - [anon_sym_bit_DASHshr] = ACTIONS(1316), - [anon_sym_EQ_EQ] = ACTIONS(1316), - [anon_sym_BANG_EQ] = ACTIONS(1316), - [anon_sym_LT2] = ACTIONS(1316), - [anon_sym_LT_EQ] = ACTIONS(1316), - [anon_sym_GT_EQ] = ACTIONS(1316), - [anon_sym_not_DASHin] = ACTIONS(1316), - [anon_sym_starts_DASHwith] = ACTIONS(1316), - [anon_sym_ends_DASHwith] = ACTIONS(1316), - [anon_sym_EQ_TILDE] = ACTIONS(1316), - [anon_sym_BANG_TILDE] = ACTIONS(1316), - [anon_sym_bit_DASHand] = ACTIONS(1316), - [anon_sym_bit_DASHxor] = ACTIONS(1316), - [anon_sym_bit_DASHor] = ACTIONS(1316), - [anon_sym_and] = ACTIONS(1316), - [anon_sym_xor] = ACTIONS(1316), - [anon_sym_or] = ACTIONS(1316), - [aux_sym__val_number_decimal_token1] = ACTIONS(1316), - [aux_sym__val_number_decimal_token2] = ACTIONS(1316), - [anon_sym_DOT2] = ACTIONS(1316), - [aux_sym__val_number_decimal_token3] = ACTIONS(1316), - [aux_sym__val_number_token1] = ACTIONS(1316), - [aux_sym__val_number_token2] = ACTIONS(1316), - [aux_sym__val_number_token3] = ACTIONS(1316), - [aux_sym__val_number_token4] = ACTIONS(1316), - [aux_sym__val_number_token5] = ACTIONS(1316), - [aux_sym__val_number_token6] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1316), - [sym__str_single_quotes] = ACTIONS(1316), - [sym__str_back_ticks] = ACTIONS(1316), - [sym__entry_separator] = ACTIONS(1318), - [aux_sym__record_key_token2] = ACTIONS(1316), + [1116] = { + [sym_comment] = STATE(1116), + [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), + [anon_sym_SEMI] = ACTIONS(2356), + [sym_cmd_identifier] = ACTIONS(2356), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2356), + [anon_sym_RPAREN] = ACTIONS(2356), + [anon_sym_DOLLAR] = ACTIONS(2356), + [anon_sym_error] = ACTIONS(2356), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_loop] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_match] = ACTIONS(2356), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_RBRACE] = ACTIONS(2356), + [anon_sym_DOT_DOT] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_source] = ACTIONS(2356), + [anon_sym_source_DASHenv] = ACTIONS(2356), + [anon_sym_register] = 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_where] = ACTIONS(2356), + [anon_sym_not] = ACTIONS(2356), + [anon_sym_DOT] = ACTIONS(3749), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2356), + [anon_sym_DOT_DOT_LT] = ACTIONS(2356), + [aux_sym__immediate_decimal_token2] = ACTIONS(3752), + [anon_sym_null] = ACTIONS(2356), + [anon_sym_true] = ACTIONS(2356), + [anon_sym_false] = ACTIONS(2356), + [aux_sym__val_number_decimal_token1] = ACTIONS(2356), + [aux_sym__val_number_decimal_token2] = ACTIONS(2356), + [anon_sym_DOT2] = ACTIONS(2356), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2356), + [anon_sym_0o] = ACTIONS(2356), + [anon_sym_0x] = ACTIONS(2356), + [sym_val_date] = 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_CARET] = ACTIONS(2356), + [aux_sym_unquoted_token2] = ACTIONS(2356), [anon_sym_POUND] = ACTIONS(113), }, - [912] = { - [sym_comment] = STATE(912), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_list] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_make] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_else] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_catch] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_new] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1736), - [anon_sym_STAR_STAR] = ACTIONS(1738), - [anon_sym_PLUS_PLUS] = ACTIONS(1738), - [anon_sym_SLASH] = ACTIONS(1736), - [anon_sym_mod] = ACTIONS(1736), - [anon_sym_SLASH_SLASH] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_bit_DASHshl] = ACTIONS(1740), - [anon_sym_bit_DASHshr] = ACTIONS(1740), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_LT2] = ACTIONS(1732), - [anon_sym_LT_EQ] = ACTIONS(1732), - [anon_sym_GT_EQ] = ACTIONS(1732), - [anon_sym_not_DASHin] = ACTIONS(1376), - [anon_sym_starts_DASHwith] = ACTIONS(1376), - [anon_sym_ends_DASHwith] = ACTIONS(1376), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [sym__entry_separator] = ACTIONS(1378), - [aux_sym__record_key_token2] = ACTIONS(1376), + [1117] = { + [sym_comment] = STATE(1117), + [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), + [anon_sym_SEMI] = ACTIONS(2356), + [sym_cmd_identifier] = ACTIONS(2356), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2356), + [anon_sym_RPAREN] = ACTIONS(2356), + [anon_sym_DOLLAR] = ACTIONS(2356), + [anon_sym_error] = ACTIONS(2356), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_loop] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_match] = ACTIONS(2356), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_RBRACE] = ACTIONS(2356), + [anon_sym_DOT_DOT] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_source] = ACTIONS(2356), + [anon_sym_source_DASHenv] = ACTIONS(2356), + [anon_sym_register] = 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_where] = ACTIONS(2356), + [anon_sym_not] = ACTIONS(2356), + [anon_sym_DOT] = ACTIONS(2356), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2356), + [anon_sym_DOT_DOT_LT] = ACTIONS(2356), + [aux_sym__immediate_decimal_token2] = ACTIONS(3752), + [anon_sym_null] = ACTIONS(2356), + [anon_sym_true] = ACTIONS(2356), + [anon_sym_false] = ACTIONS(2356), + [aux_sym__val_number_decimal_token1] = ACTIONS(2356), + [aux_sym__val_number_decimal_token2] = ACTIONS(2356), + [anon_sym_DOT2] = ACTIONS(2356), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2356), + [anon_sym_0o] = ACTIONS(2356), + [anon_sym_0x] = ACTIONS(2356), + [sym_val_date] = 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_CARET] = ACTIONS(2356), + [aux_sym_unquoted_token2] = ACTIONS(2356), [anon_sym_POUND] = ACTIONS(113), }, - [913] = { - [sym_comment] = STATE(913), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_list] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_make] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_else] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_catch] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_new] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1736), - [anon_sym_STAR_STAR] = ACTIONS(1738), - [anon_sym_PLUS_PLUS] = ACTIONS(1738), - [anon_sym_SLASH] = ACTIONS(1736), - [anon_sym_mod] = ACTIONS(1736), - [anon_sym_SLASH_SLASH] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_bit_DASHshl] = ACTIONS(1376), - [anon_sym_bit_DASHshr] = ACTIONS(1376), - [anon_sym_EQ_EQ] = ACTIONS(1376), - [anon_sym_BANG_EQ] = ACTIONS(1376), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1376), - [anon_sym_GT_EQ] = ACTIONS(1376), - [anon_sym_not_DASHin] = ACTIONS(1376), - [anon_sym_starts_DASHwith] = ACTIONS(1376), - [anon_sym_ends_DASHwith] = ACTIONS(1376), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [sym__entry_separator] = ACTIONS(1378), - [aux_sym__record_key_token2] = ACTIONS(1376), + [1118] = { + [sym__immediate_decimal] = STATE(10080), + [sym_comment] = STATE(1118), + [ts_builtin_sym_end] = ACTIONS(922), + [anon_sym_export] = ACTIONS(920), + [anon_sym_alias] = ACTIONS(920), + [anon_sym_let] = ACTIONS(920), + [anon_sym_let_DASHenv] = ACTIONS(920), + [anon_sym_mut] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(920), + [sym_cmd_identifier] = ACTIONS(920), + [anon_sym_LF] = ACTIONS(922), + [anon_sym_def] = ACTIONS(920), + [anon_sym_export_DASHenv] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym_module] = ACTIONS(920), + [anon_sym_use] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_error] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_loop] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_match] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_try] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_source] = ACTIONS(920), + [anon_sym_source_DASHenv] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_hide] = ACTIONS(920), + [anon_sym_hide_DASHenv] = ACTIONS(920), + [anon_sym_overlay] = ACTIONS(920), + [anon_sym_where] = ACTIONS(920), + [anon_sym_not] = ACTIONS(920), + [anon_sym_DOT] = ACTIONS(967), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [aux_sym__immediate_decimal_token1] = ACTIONS(969), + [aux_sym__immediate_decimal_token3] = ACTIONS(969), + [aux_sym__immediate_decimal_token4] = ACTIONS(971), + [anon_sym_null] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), + [anon_sym_CARET] = ACTIONS(920), + [aux_sym_unquoted_token4] = ACTIONS(3433), [anon_sym_POUND] = ACTIONS(113), }, - [914] = { - [sym_pipeline] = STATE(2963), - [sym_pipeline_last] = STATE(10453), - [sym__ctrl_expression] = STATE(9270), - [sym_ctrl_do] = STATE(9515), - [sym_ctrl_if] = STATE(9515), - [sym_ctrl_match] = STATE(9515), - [sym_ctrl_try] = STATE(9515), - [sym_ctrl_return] = STATE(9515), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9536), - [sym_where_command] = STATE(8865), - [sym__expression] = STATE(8865), - [sym_expr_unary] = STATE(6379), - [sym__expr_unary_minus] = STATE(6347), - [sym_expr_binary] = STATE(6379), - [sym__expr_binary_expression] = STATE(6784), - [sym_expr_parenthesized] = STATE(5573), - [sym_val_range] = STATE(8689), - [sym__value] = STATE(6379), - [sym_val_nothing] = STATE(6374), - [sym_val_bool] = STATE(6374), - [sym_val_variable] = STATE(5610), - [sym__var] = STATE(4886), - [sym_val_number] = STATE(6374), - [sym__val_number_decimal] = STATE(4698), - [sym__val_number] = STATE(5769), - [sym_val_duration] = STATE(6374), - [sym_val_filesize] = STATE(6374), - [sym_val_binary] = STATE(6374), - [sym_val_string] = STATE(6374), - [sym__str_double_quotes] = STATE(6386), - [sym_val_interpolated] = STATE(6374), - [sym__inter_single_quotes] = STATE(6363), - [sym__inter_double_quotes] = STATE(6365), - [sym_val_list] = STATE(6374), - [sym_val_record] = STATE(6374), - [sym_val_table] = STATE(6374), - [sym_val_closure] = STATE(6374), - [sym_command] = STATE(8865), - [sym_comment] = STATE(914), - [aux_sym_pipeline_repeat1] = STATE(1031), - [sym_cmd_identifier] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(1742), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_do] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_match] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_DOT_DOT] = ACTIONS(59), - [anon_sym_try] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_where] = ACTIONS(75), - [anon_sym_not] = ACTIONS(77), - [anon_sym_DOT_DOT_EQ] = ACTIONS(79), - [anon_sym_DOT_DOT_LT] = ACTIONS(79), - [anon_sym_null] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym__val_number_decimal_token1] = ACTIONS(85), - [aux_sym__val_number_decimal_token2] = ACTIONS(87), - [anon_sym_DOT2] = ACTIONS(89), - [aux_sym__val_number_decimal_token3] = ACTIONS(91), - [aux_sym__val_number_token1] = ACTIONS(93), - [aux_sym__val_number_token2] = ACTIONS(93), - [aux_sym__val_number_token3] = ACTIONS(93), - [aux_sym__val_number_token4] = ACTIONS(95), - [aux_sym__val_number_token5] = ACTIONS(93), - [aux_sym__val_number_token6] = ACTIONS(95), - [anon_sym_0b] = ACTIONS(97), - [anon_sym_0o] = ACTIONS(99), - [anon_sym_0x] = ACTIONS(99), - [sym_val_date] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym__str_single_quotes] = ACTIONS(105), - [sym__str_back_ticks] = ACTIONS(105), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(111), + [1119] = { + [sym_path] = STATE(1306), + [sym_comment] = STATE(1119), + [aux_sym_cell_path_repeat1] = STATE(1119), + [anon_sym_export] = ACTIONS(985), + [anon_sym_alias] = ACTIONS(985), + [anon_sym_let] = ACTIONS(985), + [anon_sym_let_DASHenv] = ACTIONS(985), + [anon_sym_mut] = ACTIONS(985), + [anon_sym_const] = ACTIONS(985), + [anon_sym_SEMI] = ACTIONS(985), + [sym_cmd_identifier] = ACTIONS(985), + [anon_sym_LF] = ACTIONS(987), + [anon_sym_def] = ACTIONS(985), + [anon_sym_export_DASHenv] = ACTIONS(985), + [anon_sym_extern] = ACTIONS(985), + [anon_sym_module] = ACTIONS(985), + [anon_sym_use] = ACTIONS(985), + [anon_sym_LBRACK] = ACTIONS(985), + [anon_sym_LPAREN] = ACTIONS(985), + [anon_sym_RPAREN] = ACTIONS(985), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_error] = ACTIONS(985), + [anon_sym_DASH_DASH] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_break] = ACTIONS(985), + [anon_sym_continue] = ACTIONS(985), + [anon_sym_for] = ACTIONS(985), + [anon_sym_loop] = ACTIONS(985), + [anon_sym_while] = ACTIONS(985), + [anon_sym_do] = ACTIONS(985), + [anon_sym_if] = ACTIONS(985), + [anon_sym_match] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(985), + [anon_sym_RBRACE] = ACTIONS(985), + [anon_sym_DOT_DOT] = ACTIONS(985), + [anon_sym_try] = ACTIONS(985), + [anon_sym_return] = ACTIONS(985), + [anon_sym_source] = ACTIONS(985), + [anon_sym_source_DASHenv] = ACTIONS(985), + [anon_sym_register] = ACTIONS(985), + [anon_sym_hide] = ACTIONS(985), + [anon_sym_hide_DASHenv] = ACTIONS(985), + [anon_sym_overlay] = ACTIONS(985), + [anon_sym_as] = ACTIONS(985), + [anon_sym_where] = ACTIONS(985), + [anon_sym_not] = ACTIONS(985), + [anon_sym_DOT] = ACTIONS(3754), + [anon_sym_DOT_DOT_EQ] = ACTIONS(985), + [anon_sym_DOT_DOT_LT] = ACTIONS(985), + [anon_sym_null] = ACTIONS(985), + [anon_sym_true] = ACTIONS(985), + [anon_sym_false] = ACTIONS(985), + [aux_sym__val_number_decimal_token1] = ACTIONS(985), + [aux_sym__val_number_decimal_token2] = ACTIONS(985), + [anon_sym_DOT2] = ACTIONS(985), + [aux_sym__val_number_decimal_token3] = ACTIONS(985), + [aux_sym__val_number_token1] = ACTIONS(985), + [aux_sym__val_number_token2] = ACTIONS(985), + [aux_sym__val_number_token3] = ACTIONS(985), + [aux_sym__val_number_token4] = ACTIONS(985), + [aux_sym__val_number_token5] = ACTIONS(985), + [aux_sym__val_number_token6] = ACTIONS(985), + [anon_sym_0b] = ACTIONS(985), + [anon_sym_0o] = ACTIONS(985), + [anon_sym_0x] = ACTIONS(985), + [sym_val_date] = ACTIONS(985), + [anon_sym_DQUOTE] = ACTIONS(985), + [sym__str_single_quotes] = ACTIONS(985), + [sym__str_back_ticks] = ACTIONS(985), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(985), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(985), + [anon_sym_POUND] = ACTIONS(113), + }, + [1120] = { + [sym_comment] = STATE(1120), + [anon_sym_LBRACK] = ACTIONS(1043), + [anon_sym_COMMA] = ACTIONS(1043), + [anon_sym_RBRACK] = ACTIONS(1043), + [anon_sym_LPAREN] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1043), + [anon_sym_GT] = ACTIONS(1041), + [anon_sym_DASH_DASH] = ACTIONS(1043), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_in] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(1043), + [anon_sym_DOT_DOT] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_STAR_STAR] = ACTIONS(1043), + [anon_sym_PLUS_PLUS] = ACTIONS(1043), + [anon_sym_SLASH] = ACTIONS(1041), + [anon_sym_mod] = ACTIONS(1043), + [anon_sym_SLASH_SLASH] = ACTIONS(1043), + [anon_sym_PLUS] = ACTIONS(1041), + [anon_sym_bit_DASHshl] = ACTIONS(1043), + [anon_sym_bit_DASHshr] = ACTIONS(1043), + [anon_sym_EQ_EQ] = ACTIONS(1043), + [anon_sym_BANG_EQ] = ACTIONS(1043), + [anon_sym_LT2] = ACTIONS(1041), + [anon_sym_LT_EQ] = ACTIONS(1043), + [anon_sym_GT_EQ] = ACTIONS(1043), + [anon_sym_not_DASHin] = ACTIONS(1043), + [anon_sym_starts_DASHwith] = ACTIONS(1043), + [anon_sym_ends_DASHwith] = ACTIONS(1043), + [anon_sym_EQ_TILDE] = ACTIONS(1043), + [anon_sym_BANG_TILDE] = ACTIONS(1043), + [anon_sym_bit_DASHand] = ACTIONS(1043), + [anon_sym_bit_DASHxor] = ACTIONS(1043), + [anon_sym_bit_DASHor] = ACTIONS(1043), + [anon_sym_and] = ACTIONS(1043), + [anon_sym_xor] = ACTIONS(1043), + [anon_sym_or] = ACTIONS(1043), + [anon_sym_DOT_DOT2] = ACTIONS(1041), + [anon_sym_DOT] = ACTIONS(1041), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1041), + [anon_sym_DOT_DOT_LT] = ACTIONS(1041), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1043), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1043), + [anon_sym_null] = ACTIONS(1043), + [anon_sym_true] = ACTIONS(1043), + [anon_sym_false] = ACTIONS(1043), + [aux_sym__val_number_decimal_token1] = ACTIONS(1041), + [aux_sym__val_number_decimal_token2] = ACTIONS(1043), + [anon_sym_DOT2] = ACTIONS(1041), + [aux_sym__val_number_decimal_token3] = ACTIONS(1043), + [aux_sym__val_number_token1] = ACTIONS(1043), + [aux_sym__val_number_token2] = ACTIONS(1043), + [aux_sym__val_number_token3] = ACTIONS(1043), + [aux_sym__val_number_token4] = ACTIONS(1043), + [aux_sym__val_number_token5] = ACTIONS(1043), + [aux_sym__val_number_token6] = ACTIONS(1043), + [anon_sym_0b] = ACTIONS(1041), + [anon_sym_0o] = ACTIONS(1041), + [anon_sym_0x] = ACTIONS(1041), + [sym_val_date] = ACTIONS(1043), + [anon_sym_DQUOTE] = ACTIONS(1043), + [sym__str_single_quotes] = ACTIONS(1043), + [sym__str_back_ticks] = ACTIONS(1043), + [anon_sym_err_GT] = ACTIONS(1043), + [anon_sym_out_GT] = ACTIONS(1043), + [anon_sym_e_GT] = ACTIONS(1043), + [anon_sym_o_GT] = ACTIONS(1043), + [anon_sym_err_PLUSout_GT] = ACTIONS(1043), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1043), + [anon_sym_o_PLUSe_GT] = ACTIONS(1043), + [anon_sym_e_PLUSo_GT] = ACTIONS(1043), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1041), [anon_sym_POUND] = ACTIONS(3), }, - [915] = { - [sym_comment] = STATE(915), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_list] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1744), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_make] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_else] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_catch] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_new] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1736), - [anon_sym_STAR_STAR] = ACTIONS(1738), - [anon_sym_PLUS_PLUS] = ACTIONS(1738), - [anon_sym_SLASH] = ACTIONS(1736), - [anon_sym_mod] = ACTIONS(1736), - [anon_sym_SLASH_SLASH] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_bit_DASHshl] = ACTIONS(1740), - [anon_sym_bit_DASHshr] = ACTIONS(1740), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_LT2] = ACTIONS(1732), - [anon_sym_LT_EQ] = ACTIONS(1732), - [anon_sym_GT_EQ] = ACTIONS(1732), - [anon_sym_not_DASHin] = ACTIONS(1744), - [anon_sym_starts_DASHwith] = ACTIONS(1744), - [anon_sym_ends_DASHwith] = ACTIONS(1744), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [sym__entry_separator] = ACTIONS(1378), - [aux_sym__record_key_token2] = ACTIONS(1376), + [1121] = { + [sym_cell_path] = STATE(1976), + [sym_path] = STATE(1107), + [sym_comment] = STATE(1121), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_COMMA] = ACTIONS(1085), + [anon_sym_RBRACK] = ACTIONS(1085), + [anon_sym_LPAREN] = ACTIONS(1085), + [anon_sym_DOLLAR] = ACTIONS(1085), + [anon_sym_GT] = ACTIONS(1085), + [anon_sym_DASH_DASH] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_in] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(1085), + [anon_sym_STAR_STAR] = ACTIONS(1085), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_SLASH] = ACTIONS(1085), + [anon_sym_mod] = ACTIONS(1085), + [anon_sym_SLASH_SLASH] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_bit_DASHshl] = ACTIONS(1085), + [anon_sym_bit_DASHshr] = ACTIONS(1085), + [anon_sym_EQ_EQ] = ACTIONS(1085), + [anon_sym_BANG_EQ] = ACTIONS(1085), + [anon_sym_LT2] = ACTIONS(1085), + [anon_sym_LT_EQ] = ACTIONS(1085), + [anon_sym_GT_EQ] = ACTIONS(1085), + [anon_sym_not_DASHin] = ACTIONS(1085), + [anon_sym_starts_DASHwith] = ACTIONS(1085), + [anon_sym_ends_DASHwith] = ACTIONS(1085), + [anon_sym_EQ_TILDE] = ACTIONS(1085), + [anon_sym_BANG_TILDE] = ACTIONS(1085), + [anon_sym_bit_DASHand] = ACTIONS(1085), + [anon_sym_bit_DASHxor] = ACTIONS(1085), + [anon_sym_bit_DASHor] = ACTIONS(1085), + [anon_sym_and] = ACTIONS(1085), + [anon_sym_xor] = ACTIONS(1085), + [anon_sym_or] = ACTIONS(1085), + [anon_sym_DOT] = ACTIONS(3689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1085), + [anon_sym_DOT_DOT_LT] = ACTIONS(1085), + [anon_sym_null] = ACTIONS(1085), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [aux_sym__val_number_decimal_token1] = ACTIONS(1085), + [aux_sym__val_number_decimal_token2] = ACTIONS(1085), + [anon_sym_DOT2] = ACTIONS(1085), + [aux_sym__val_number_decimal_token3] = ACTIONS(1085), + [aux_sym__val_number_token1] = ACTIONS(1085), + [aux_sym__val_number_token2] = ACTIONS(1085), + [aux_sym__val_number_token3] = ACTIONS(1085), + [aux_sym__val_number_token4] = ACTIONS(1085), + [aux_sym__val_number_token5] = ACTIONS(1085), + [aux_sym__val_number_token6] = ACTIONS(1085), + [anon_sym_0b] = ACTIONS(1085), + [anon_sym_0o] = ACTIONS(1085), + [anon_sym_0x] = ACTIONS(1085), + [sym_val_date] = ACTIONS(1085), + [anon_sym_DQUOTE] = ACTIONS(1085), + [sym__str_single_quotes] = ACTIONS(1085), + [sym__str_back_ticks] = ACTIONS(1085), + [sym__entry_separator] = ACTIONS(1087), + [anon_sym_err_GT] = ACTIONS(1085), + [anon_sym_out_GT] = ACTIONS(1085), + [anon_sym_e_GT] = ACTIONS(1085), + [anon_sym_o_GT] = ACTIONS(1085), + [anon_sym_err_PLUSout_GT] = ACTIONS(1085), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1085), + [anon_sym_o_PLUSe_GT] = ACTIONS(1085), + [anon_sym_e_PLUSo_GT] = ACTIONS(1085), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1085), [anon_sym_POUND] = ACTIONS(113), }, - [916] = { - [sym_comment] = STATE(916), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_list] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_make] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_else] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_catch] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_new] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1736), - [anon_sym_STAR_STAR] = ACTIONS(1738), - [anon_sym_PLUS_PLUS] = ACTIONS(1738), - [anon_sym_SLASH] = ACTIONS(1736), - [anon_sym_mod] = ACTIONS(1736), - [anon_sym_SLASH_SLASH] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_bit_DASHshl] = ACTIONS(1376), - [anon_sym_bit_DASHshr] = ACTIONS(1376), - [anon_sym_EQ_EQ] = ACTIONS(1376), - [anon_sym_BANG_EQ] = ACTIONS(1376), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1376), - [anon_sym_GT_EQ] = ACTIONS(1376), - [anon_sym_not_DASHin] = ACTIONS(1376), - [anon_sym_starts_DASHwith] = ACTIONS(1376), - [anon_sym_ends_DASHwith] = ACTIONS(1376), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [sym__entry_separator] = ACTIONS(1378), - [aux_sym__record_key_token2] = ACTIONS(1376), + [1122] = { + [sym_comment] = STATE(1122), + [anon_sym_export] = ACTIONS(3757), + [anon_sym_alias] = ACTIONS(3757), + [anon_sym_let] = ACTIONS(3757), + [anon_sym_let_DASHenv] = ACTIONS(3757), + [anon_sym_mut] = ACTIONS(3757), + [anon_sym_const] = ACTIONS(3757), + [anon_sym_SEMI] = ACTIONS(3757), + [sym_cmd_identifier] = ACTIONS(3757), + [anon_sym_LF] = ACTIONS(3759), + [anon_sym_def] = ACTIONS(3757), + [anon_sym_export_DASHenv] = ACTIONS(3757), + [anon_sym_extern] = ACTIONS(3757), + [anon_sym_module] = ACTIONS(3757), + [anon_sym_use] = ACTIONS(3757), + [anon_sym_LBRACK] = ACTIONS(3757), + [anon_sym_LPAREN] = ACTIONS(3757), + [anon_sym_RPAREN] = ACTIONS(3757), + [anon_sym_DOLLAR] = ACTIONS(3757), + [anon_sym_error] = ACTIONS(3757), + [anon_sym_DASH_DASH] = ACTIONS(3757), + [anon_sym_DASH] = ACTIONS(3757), + [anon_sym_break] = ACTIONS(3757), + [anon_sym_continue] = ACTIONS(3757), + [anon_sym_for] = ACTIONS(3757), + [anon_sym_loop] = ACTIONS(3757), + [anon_sym_while] = ACTIONS(3757), + [anon_sym_do] = ACTIONS(3757), + [anon_sym_if] = ACTIONS(3757), + [anon_sym_match] = ACTIONS(3757), + [anon_sym_LBRACE] = ACTIONS(3757), + [anon_sym_RBRACE] = ACTIONS(3757), + [anon_sym_DOT_DOT] = ACTIONS(3757), + [anon_sym_try] = ACTIONS(3757), + [anon_sym_return] = ACTIONS(3757), + [anon_sym_source] = ACTIONS(3757), + [anon_sym_source_DASHenv] = ACTIONS(3757), + [anon_sym_register] = ACTIONS(3757), + [anon_sym_hide] = ACTIONS(3757), + [anon_sym_hide_DASHenv] = ACTIONS(3757), + [anon_sym_overlay] = ACTIONS(3757), + [anon_sym_as] = ACTIONS(3757), + [anon_sym_where] = ACTIONS(3757), + [anon_sym_not] = ACTIONS(3757), + [anon_sym_DOT_DOT2] = ACTIONS(1081), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3757), + [anon_sym_DOT_DOT_LT] = ACTIONS(3757), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1083), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1083), + [anon_sym_null] = ACTIONS(3757), + [anon_sym_true] = ACTIONS(3757), + [anon_sym_false] = ACTIONS(3757), + [aux_sym__val_number_decimal_token1] = ACTIONS(3757), + [aux_sym__val_number_decimal_token2] = ACTIONS(3757), + [anon_sym_DOT2] = ACTIONS(3757), + [aux_sym__val_number_decimal_token3] = ACTIONS(3757), + [aux_sym__val_number_token1] = ACTIONS(3757), + [aux_sym__val_number_token2] = ACTIONS(3757), + [aux_sym__val_number_token3] = ACTIONS(3757), + [aux_sym__val_number_token4] = ACTIONS(3757), + [aux_sym__val_number_token5] = ACTIONS(3757), + [aux_sym__val_number_token6] = ACTIONS(3757), + [anon_sym_0b] = ACTIONS(3757), + [anon_sym_0o] = ACTIONS(3757), + [anon_sym_0x] = ACTIONS(3757), + [sym_val_date] = ACTIONS(3757), + [anon_sym_DQUOTE] = ACTIONS(3757), + [sym__str_single_quotes] = ACTIONS(3757), + [sym__str_back_ticks] = ACTIONS(3757), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3757), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3757), + [anon_sym_CARET] = ACTIONS(3757), [anon_sym_POUND] = ACTIONS(113), }, - [917] = { - [sym_comment] = STATE(917), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_list] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_make] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_else] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_catch] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_new] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1738), - [anon_sym_PLUS_PLUS] = ACTIONS(1738), - [anon_sym_SLASH] = ACTIONS(1376), - [anon_sym_mod] = ACTIONS(1376), - [anon_sym_SLASH_SLASH] = ACTIONS(1376), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_bit_DASHshl] = ACTIONS(1376), - [anon_sym_bit_DASHshr] = ACTIONS(1376), - [anon_sym_EQ_EQ] = ACTIONS(1376), - [anon_sym_BANG_EQ] = ACTIONS(1376), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1376), - [anon_sym_GT_EQ] = ACTIONS(1376), - [anon_sym_not_DASHin] = ACTIONS(1376), - [anon_sym_starts_DASHwith] = ACTIONS(1376), - [anon_sym_ends_DASHwith] = ACTIONS(1376), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [sym__entry_separator] = ACTIONS(1378), - [aux_sym__record_key_token2] = ACTIONS(1376), + [1123] = { + [sym_comment] = STATE(1123), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_COMMA] = ACTIONS(1089), + [anon_sym_RBRACK] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1089), + [anon_sym_GT] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_DASH] = ACTIONS(1089), + [anon_sym_in] = ACTIONS(1089), + [anon_sym_LBRACE] = ACTIONS(1089), + [anon_sym_DOT_DOT] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_STAR_STAR] = ACTIONS(1089), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_SLASH] = ACTIONS(1089), + [anon_sym_mod] = ACTIONS(1089), + [anon_sym_SLASH_SLASH] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1089), + [anon_sym_bit_DASHshl] = ACTIONS(1089), + [anon_sym_bit_DASHshr] = ACTIONS(1089), + [anon_sym_EQ_EQ] = ACTIONS(1089), + [anon_sym_BANG_EQ] = ACTIONS(1089), + [anon_sym_LT2] = ACTIONS(1089), + [anon_sym_LT_EQ] = ACTIONS(1089), + [anon_sym_GT_EQ] = ACTIONS(1089), + [anon_sym_not_DASHin] = ACTIONS(1089), + [anon_sym_starts_DASHwith] = ACTIONS(1089), + [anon_sym_ends_DASHwith] = ACTIONS(1089), + [anon_sym_EQ_TILDE] = ACTIONS(1089), + [anon_sym_BANG_TILDE] = ACTIONS(1089), + [anon_sym_bit_DASHand] = ACTIONS(1089), + [anon_sym_bit_DASHxor] = ACTIONS(1089), + [anon_sym_bit_DASHor] = ACTIONS(1089), + [anon_sym_and] = ACTIONS(1089), + [anon_sym_xor] = ACTIONS(1089), + [anon_sym_or] = ACTIONS(1089), + [anon_sym_DOT_DOT2] = ACTIONS(3731), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_DOT_DOT_LT] = ACTIONS(1089), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3733), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3733), + [anon_sym_null] = ACTIONS(1089), + [anon_sym_true] = ACTIONS(1089), + [anon_sym_false] = ACTIONS(1089), + [aux_sym__val_number_decimal_token1] = ACTIONS(1089), + [aux_sym__val_number_decimal_token2] = ACTIONS(1089), + [anon_sym_DOT2] = ACTIONS(1089), + [aux_sym__val_number_decimal_token3] = ACTIONS(1089), + [aux_sym__val_number_token1] = ACTIONS(1089), + [aux_sym__val_number_token2] = ACTIONS(1089), + [aux_sym__val_number_token3] = ACTIONS(1089), + [aux_sym__val_number_token4] = ACTIONS(1089), + [aux_sym__val_number_token5] = ACTIONS(1089), + [aux_sym__val_number_token6] = ACTIONS(1089), + [anon_sym_0b] = ACTIONS(1089), + [anon_sym_0o] = ACTIONS(1089), + [anon_sym_0x] = ACTIONS(1089), + [sym_val_date] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1089), + [sym__str_single_quotes] = ACTIONS(1089), + [sym__str_back_ticks] = ACTIONS(1089), + [sym__entry_separator] = ACTIONS(1091), + [anon_sym_err_GT] = ACTIONS(1089), + [anon_sym_out_GT] = ACTIONS(1089), + [anon_sym_e_GT] = ACTIONS(1089), + [anon_sym_o_GT] = ACTIONS(1089), + [anon_sym_err_PLUSout_GT] = ACTIONS(1089), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1089), + [anon_sym_o_PLUSe_GT] = ACTIONS(1089), + [anon_sym_e_PLUSo_GT] = ACTIONS(1089), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(113), }, - [918] = { - [sym_comment] = STATE(918), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_list] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_make] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_else] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_catch] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_new] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1736), - [anon_sym_STAR_STAR] = ACTIONS(1738), - [anon_sym_PLUS_PLUS] = ACTIONS(1738), - [anon_sym_SLASH] = ACTIONS(1736), - [anon_sym_mod] = ACTIONS(1736), - [anon_sym_SLASH_SLASH] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_bit_DASHshl] = ACTIONS(1740), - [anon_sym_bit_DASHshr] = ACTIONS(1740), - [anon_sym_EQ_EQ] = ACTIONS(1376), - [anon_sym_BANG_EQ] = ACTIONS(1376), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1376), - [anon_sym_GT_EQ] = ACTIONS(1376), - [anon_sym_not_DASHin] = ACTIONS(1376), - [anon_sym_starts_DASHwith] = ACTIONS(1376), - [anon_sym_ends_DASHwith] = ACTIONS(1376), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [sym__entry_separator] = ACTIONS(1378), - [aux_sym__record_key_token2] = ACTIONS(1376), + [1124] = { + [sym_comment] = STATE(1124), + [anon_sym_SEMI] = ACTIONS(934), + [anon_sym_LF] = ACTIONS(936), + [anon_sym_LBRACK] = ACTIONS(934), + [anon_sym_LPAREN] = ACTIONS(934), + [anon_sym_RPAREN] = ACTIONS(934), + [anon_sym_PIPE] = ACTIONS(934), + [anon_sym_DOLLAR] = ACTIONS(934), + [anon_sym_GT] = ACTIONS(934), + [anon_sym_DASH_DASH] = ACTIONS(934), + [anon_sym_DASH] = ACTIONS(934), + [anon_sym_in] = ACTIONS(934), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_RBRACE] = ACTIONS(934), + [anon_sym_DOT_DOT] = ACTIONS(934), + [anon_sym_STAR] = ACTIONS(934), + [anon_sym_STAR_STAR] = ACTIONS(934), + [anon_sym_PLUS_PLUS] = ACTIONS(934), + [anon_sym_SLASH] = ACTIONS(934), + [anon_sym_mod] = ACTIONS(934), + [anon_sym_SLASH_SLASH] = ACTIONS(934), + [anon_sym_PLUS] = ACTIONS(934), + [anon_sym_bit_DASHshl] = ACTIONS(934), + [anon_sym_bit_DASHshr] = ACTIONS(934), + [anon_sym_EQ_EQ] = ACTIONS(934), + [anon_sym_BANG_EQ] = ACTIONS(934), + [anon_sym_LT2] = ACTIONS(934), + [anon_sym_LT_EQ] = ACTIONS(934), + [anon_sym_GT_EQ] = ACTIONS(934), + [anon_sym_not_DASHin] = ACTIONS(934), + [anon_sym_starts_DASHwith] = ACTIONS(934), + [anon_sym_ends_DASHwith] = ACTIONS(934), + [anon_sym_EQ_TILDE] = ACTIONS(934), + [anon_sym_BANG_TILDE] = ACTIONS(934), + [anon_sym_bit_DASHand] = ACTIONS(934), + [anon_sym_bit_DASHxor] = ACTIONS(934), + [anon_sym_bit_DASHor] = ACTIONS(934), + [anon_sym_and] = ACTIONS(934), + [anon_sym_xor] = ACTIONS(934), + [anon_sym_or] = ACTIONS(934), + [anon_sym_not] = ACTIONS(934), + [anon_sym_DOT_DOT2] = ACTIONS(934), + [anon_sym_DOT] = ACTIONS(934), + [anon_sym_DOT_DOT_EQ] = ACTIONS(934), + [anon_sym_DOT_DOT_LT] = ACTIONS(934), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(936), + [anon_sym_DOT_DOT_LT2] = ACTIONS(936), + [anon_sym_null] = ACTIONS(934), + [anon_sym_true] = ACTIONS(934), + [anon_sym_false] = ACTIONS(934), + [aux_sym__val_number_decimal_token1] = ACTIONS(934), + [aux_sym__val_number_decimal_token2] = ACTIONS(934), + [anon_sym_DOT2] = ACTIONS(934), + [aux_sym__val_number_decimal_token3] = ACTIONS(934), + [aux_sym__val_number_token1] = ACTIONS(934), + [aux_sym__val_number_token2] = ACTIONS(934), + [aux_sym__val_number_token3] = ACTIONS(934), + [aux_sym__val_number_token4] = ACTIONS(934), + [aux_sym__val_number_token5] = ACTIONS(934), + [aux_sym__val_number_token6] = ACTIONS(934), + [anon_sym_0b] = ACTIONS(934), + [sym_filesize_unit] = ACTIONS(934), + [sym_duration_unit] = ACTIONS(936), + [anon_sym_0o] = ACTIONS(934), + [anon_sym_0x] = ACTIONS(934), + [sym_val_date] = ACTIONS(934), + [anon_sym_DQUOTE] = ACTIONS(934), + [sym__str_single_quotes] = ACTIONS(934), + [sym__str_back_ticks] = ACTIONS(934), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(934), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(934), + [aux_sym_unquoted_token5] = ACTIONS(934), [anon_sym_POUND] = ACTIONS(113), }, - [919] = { - [sym_comment] = STATE(919), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_list] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1744), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_make] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_else] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_catch] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_new] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1736), - [anon_sym_STAR_STAR] = ACTIONS(1738), - [anon_sym_PLUS_PLUS] = ACTIONS(1738), - [anon_sym_SLASH] = ACTIONS(1736), - [anon_sym_mod] = ACTIONS(1736), - [anon_sym_SLASH_SLASH] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_bit_DASHshl] = ACTIONS(1740), - [anon_sym_bit_DASHshr] = ACTIONS(1740), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_LT2] = ACTIONS(1732), - [anon_sym_LT_EQ] = ACTIONS(1732), - [anon_sym_GT_EQ] = ACTIONS(1732), - [anon_sym_not_DASHin] = ACTIONS(1744), - [anon_sym_starts_DASHwith] = ACTIONS(1744), - [anon_sym_ends_DASHwith] = ACTIONS(1744), - [anon_sym_EQ_TILDE] = ACTIONS(1746), - [anon_sym_BANG_TILDE] = ACTIONS(1746), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [sym__entry_separator] = ACTIONS(1378), - [aux_sym__record_key_token2] = ACTIONS(1376), + [1125] = { + [sym_cell_path] = STATE(1478), + [sym_path] = STATE(1108), + [sym_comment] = STATE(1125), + [anon_sym_export] = ACTIONS(1051), + [anon_sym_alias] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(1051), + [anon_sym_let_DASHenv] = ACTIONS(1051), + [anon_sym_mut] = ACTIONS(1051), + [anon_sym_const] = ACTIONS(1051), + [anon_sym_SEMI] = ACTIONS(1051), + [sym_cmd_identifier] = ACTIONS(1051), + [anon_sym_LF] = ACTIONS(1053), + [anon_sym_def] = ACTIONS(1051), + [anon_sym_export_DASHenv] = ACTIONS(1051), + [anon_sym_extern] = ACTIONS(1051), + [anon_sym_module] = ACTIONS(1051), + [anon_sym_use] = ACTIONS(1051), + [anon_sym_LBRACK] = ACTIONS(1051), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_RPAREN] = ACTIONS(1051), + [anon_sym_DOLLAR] = ACTIONS(1051), + [anon_sym_error] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_break] = ACTIONS(1051), + [anon_sym_continue] = ACTIONS(1051), + [anon_sym_for] = ACTIONS(1051), + [anon_sym_loop] = ACTIONS(1051), + [anon_sym_while] = ACTIONS(1051), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_if] = ACTIONS(1051), + [anon_sym_match] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(1051), + [anon_sym_RBRACE] = ACTIONS(1051), + [anon_sym_DOT_DOT] = ACTIONS(1051), + [anon_sym_try] = ACTIONS(1051), + [anon_sym_return] = ACTIONS(1051), + [anon_sym_source] = ACTIONS(1051), + [anon_sym_source_DASHenv] = ACTIONS(1051), + [anon_sym_register] = ACTIONS(1051), + [anon_sym_hide] = ACTIONS(1051), + [anon_sym_hide_DASHenv] = ACTIONS(1051), + [anon_sym_overlay] = ACTIONS(1051), + [anon_sym_as] = ACTIONS(1051), + [anon_sym_where] = ACTIONS(1051), + [anon_sym_not] = ACTIONS(1051), + [anon_sym_DOT] = ACTIONS(3632), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1051), + [anon_sym_DOT_DOT_LT] = ACTIONS(1051), + [anon_sym_null] = ACTIONS(1051), + [anon_sym_true] = ACTIONS(1051), + [anon_sym_false] = ACTIONS(1051), + [aux_sym__val_number_decimal_token1] = ACTIONS(1051), + [aux_sym__val_number_decimal_token2] = ACTIONS(1051), + [anon_sym_DOT2] = ACTIONS(1051), + [aux_sym__val_number_decimal_token3] = ACTIONS(1051), + [aux_sym__val_number_token1] = ACTIONS(1051), + [aux_sym__val_number_token2] = ACTIONS(1051), + [aux_sym__val_number_token3] = ACTIONS(1051), + [aux_sym__val_number_token4] = ACTIONS(1051), + [aux_sym__val_number_token5] = ACTIONS(1051), + [aux_sym__val_number_token6] = ACTIONS(1051), + [anon_sym_0b] = ACTIONS(1051), + [anon_sym_0o] = ACTIONS(1051), + [anon_sym_0x] = ACTIONS(1051), + [sym_val_date] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(1051), + [sym__str_single_quotes] = ACTIONS(1051), + [sym__str_back_ticks] = ACTIONS(1051), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1051), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1051), + [anon_sym_CARET] = ACTIONS(1051), [anon_sym_POUND] = ACTIONS(113), }, - [920] = { - [sym_comment] = STATE(920), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_alias] = ACTIONS(1158), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_let_DASHenv] = ACTIONS(1158), - [anon_sym_mut] = ACTIONS(1158), - [anon_sym_const] = ACTIONS(1158), - [sym_cmd_identifier] = ACTIONS(1158), - [anon_sym_def] = ACTIONS(1158), - [anon_sym_export_DASHenv] = ACTIONS(1158), - [anon_sym_extern] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_use] = ACTIONS(1158), - [anon_sym_LPAREN] = ACTIONS(1158), - [anon_sym_DOLLAR] = ACTIONS(1158), - [anon_sym_error] = ACTIONS(1158), - [anon_sym_list] = ACTIONS(1158), - [anon_sym_GT] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_break] = ACTIONS(1158), - [anon_sym_continue] = ACTIONS(1158), - [anon_sym_for] = ACTIONS(1158), - [anon_sym_in] = ACTIONS(1158), - [anon_sym_loop] = ACTIONS(1158), - [anon_sym_make] = ACTIONS(1158), - [anon_sym_while] = ACTIONS(1158), - [anon_sym_do] = ACTIONS(1158), - [anon_sym_if] = ACTIONS(1158), - [anon_sym_else] = ACTIONS(1158), - [anon_sym_match] = ACTIONS(1158), - [anon_sym_RBRACE] = ACTIONS(1158), - [anon_sym_try] = ACTIONS(1158), - [anon_sym_catch] = ACTIONS(1158), - [anon_sym_return] = ACTIONS(1158), - [anon_sym_source] = ACTIONS(1158), - [anon_sym_source_DASHenv] = ACTIONS(1158), - [anon_sym_register] = ACTIONS(1158), - [anon_sym_hide] = ACTIONS(1158), - [anon_sym_hide_DASHenv] = ACTIONS(1158), - [anon_sym_overlay] = ACTIONS(1158), - [anon_sym_new] = ACTIONS(1158), - [anon_sym_as] = ACTIONS(1158), - [anon_sym_STAR] = ACTIONS(1158), - [anon_sym_STAR_STAR] = ACTIONS(1158), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_SLASH] = ACTIONS(1158), - [anon_sym_mod] = ACTIONS(1158), - [anon_sym_SLASH_SLASH] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1158), - [anon_sym_bit_DASHshl] = ACTIONS(1158), - [anon_sym_bit_DASHshr] = ACTIONS(1158), - [anon_sym_EQ_EQ] = ACTIONS(1158), - [anon_sym_BANG_EQ] = ACTIONS(1158), - [anon_sym_LT2] = ACTIONS(1158), - [anon_sym_LT_EQ] = ACTIONS(1158), - [anon_sym_GT_EQ] = ACTIONS(1158), - [anon_sym_not_DASHin] = ACTIONS(1158), - [anon_sym_starts_DASHwith] = ACTIONS(1158), - [anon_sym_ends_DASHwith] = ACTIONS(1158), - [anon_sym_EQ_TILDE] = ACTIONS(1158), - [anon_sym_BANG_TILDE] = ACTIONS(1158), - [anon_sym_bit_DASHand] = ACTIONS(1158), - [anon_sym_bit_DASHxor] = ACTIONS(1158), - [anon_sym_bit_DASHor] = ACTIONS(1158), - [anon_sym_and] = ACTIONS(1158), - [anon_sym_xor] = ACTIONS(1158), - [anon_sym_or] = ACTIONS(1158), - [aux_sym__val_number_decimal_token1] = ACTIONS(1158), - [aux_sym__val_number_decimal_token2] = ACTIONS(1158), - [anon_sym_DOT2] = ACTIONS(1158), - [aux_sym__val_number_decimal_token3] = ACTIONS(1158), - [aux_sym__val_number_token1] = ACTIONS(1158), - [aux_sym__val_number_token2] = ACTIONS(1158), - [aux_sym__val_number_token3] = ACTIONS(1158), - [aux_sym__val_number_token4] = ACTIONS(1158), - [aux_sym__val_number_token5] = ACTIONS(1158), - [aux_sym__val_number_token6] = ACTIONS(1158), - [anon_sym_DQUOTE] = ACTIONS(1158), - [sym__str_single_quotes] = ACTIONS(1158), - [sym__str_back_ticks] = ACTIONS(1158), - [sym__entry_separator] = ACTIONS(1160), - [aux_sym__record_key_token2] = ACTIONS(1158), + [1126] = { + [sym_cell_path] = STATE(1981), + [sym_path] = STATE(1107), + [sym_comment] = STATE(1126), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_COMMA] = ACTIONS(1093), + [anon_sym_RBRACK] = ACTIONS(1093), + [anon_sym_LPAREN] = ACTIONS(1093), + [anon_sym_DOLLAR] = ACTIONS(1093), + [anon_sym_GT] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_in] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1093), + [anon_sym_DOT_DOT] = ACTIONS(1093), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_STAR_STAR] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1093), + [anon_sym_SLASH] = ACTIONS(1093), + [anon_sym_mod] = ACTIONS(1093), + [anon_sym_SLASH_SLASH] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_bit_DASHshl] = ACTIONS(1093), + [anon_sym_bit_DASHshr] = ACTIONS(1093), + [anon_sym_EQ_EQ] = ACTIONS(1093), + [anon_sym_BANG_EQ] = ACTIONS(1093), + [anon_sym_LT2] = ACTIONS(1093), + [anon_sym_LT_EQ] = ACTIONS(1093), + [anon_sym_GT_EQ] = ACTIONS(1093), + [anon_sym_not_DASHin] = ACTIONS(1093), + [anon_sym_starts_DASHwith] = ACTIONS(1093), + [anon_sym_ends_DASHwith] = ACTIONS(1093), + [anon_sym_EQ_TILDE] = ACTIONS(1093), + [anon_sym_BANG_TILDE] = ACTIONS(1093), + [anon_sym_bit_DASHand] = ACTIONS(1093), + [anon_sym_bit_DASHxor] = ACTIONS(1093), + [anon_sym_bit_DASHor] = ACTIONS(1093), + [anon_sym_and] = ACTIONS(1093), + [anon_sym_xor] = ACTIONS(1093), + [anon_sym_or] = ACTIONS(1093), + [anon_sym_DOT] = ACTIONS(3689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1093), + [anon_sym_DOT_DOT_LT] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1093), + [anon_sym_true] = ACTIONS(1093), + [anon_sym_false] = ACTIONS(1093), + [aux_sym__val_number_decimal_token1] = ACTIONS(1093), + [aux_sym__val_number_decimal_token2] = ACTIONS(1093), + [anon_sym_DOT2] = ACTIONS(1093), + [aux_sym__val_number_decimal_token3] = ACTIONS(1093), + [aux_sym__val_number_token1] = ACTIONS(1093), + [aux_sym__val_number_token2] = ACTIONS(1093), + [aux_sym__val_number_token3] = ACTIONS(1093), + [aux_sym__val_number_token4] = ACTIONS(1093), + [aux_sym__val_number_token5] = ACTIONS(1093), + [aux_sym__val_number_token6] = ACTIONS(1093), + [anon_sym_0b] = ACTIONS(1093), + [anon_sym_0o] = ACTIONS(1093), + [anon_sym_0x] = ACTIONS(1093), + [sym_val_date] = ACTIONS(1093), + [anon_sym_DQUOTE] = ACTIONS(1093), + [sym__str_single_quotes] = ACTIONS(1093), + [sym__str_back_ticks] = ACTIONS(1093), + [sym__entry_separator] = ACTIONS(1095), + [anon_sym_err_GT] = ACTIONS(1093), + [anon_sym_out_GT] = ACTIONS(1093), + [anon_sym_e_GT] = ACTIONS(1093), + [anon_sym_o_GT] = ACTIONS(1093), + [anon_sym_err_PLUSout_GT] = ACTIONS(1093), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1093), + [anon_sym_o_PLUSe_GT] = ACTIONS(1093), + [anon_sym_e_PLUSo_GT] = ACTIONS(1093), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1093), [anon_sym_POUND] = ACTIONS(113), }, - [921] = { - [sym_comment] = STATE(921), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_list] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1744), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_make] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_else] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_catch] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_new] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1736), - [anon_sym_STAR_STAR] = ACTIONS(1738), - [anon_sym_PLUS_PLUS] = ACTIONS(1738), - [anon_sym_SLASH] = ACTIONS(1736), - [anon_sym_mod] = ACTIONS(1736), - [anon_sym_SLASH_SLASH] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_bit_DASHshl] = ACTIONS(1740), - [anon_sym_bit_DASHshr] = ACTIONS(1740), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_LT2] = ACTIONS(1732), - [anon_sym_LT_EQ] = ACTIONS(1732), - [anon_sym_GT_EQ] = ACTIONS(1732), - [anon_sym_not_DASHin] = ACTIONS(1744), - [anon_sym_starts_DASHwith] = ACTIONS(1744), - [anon_sym_ends_DASHwith] = ACTIONS(1744), - [anon_sym_EQ_TILDE] = ACTIONS(1746), - [anon_sym_BANG_TILDE] = ACTIONS(1746), - [anon_sym_bit_DASHand] = ACTIONS(1748), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [sym__entry_separator] = ACTIONS(1378), - [aux_sym__record_key_token2] = ACTIONS(1376), + [1127] = { + [sym_comment] = STATE(1127), + [anon_sym_export] = ACTIONS(3312), + [anon_sym_alias] = ACTIONS(3312), + [anon_sym_let] = ACTIONS(3312), + [anon_sym_let_DASHenv] = ACTIONS(3312), + [anon_sym_mut] = ACTIONS(3312), + [anon_sym_const] = ACTIONS(3312), + [anon_sym_SEMI] = ACTIONS(3312), + [sym_cmd_identifier] = ACTIONS(3312), + [anon_sym_LF] = ACTIONS(3314), + [anon_sym_def] = ACTIONS(3312), + [anon_sym_export_DASHenv] = ACTIONS(3312), + [anon_sym_extern] = ACTIONS(3312), + [anon_sym_module] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3312), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_RPAREN] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3312), + [anon_sym_error] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [anon_sym_DASH] = ACTIONS(3312), + [anon_sym_break] = ACTIONS(3312), + [anon_sym_continue] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3312), + [anon_sym_loop] = ACTIONS(3312), + [anon_sym_while] = ACTIONS(3312), + [anon_sym_do] = ACTIONS(3312), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_match] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_DOT_DOT] = ACTIONS(3312), + [anon_sym_try] = ACTIONS(3312), + [anon_sym_return] = ACTIONS(3312), + [anon_sym_source] = ACTIONS(3312), + [anon_sym_source_DASHenv] = ACTIONS(3312), + [anon_sym_register] = ACTIONS(3312), + [anon_sym_hide] = ACTIONS(3312), + [anon_sym_hide_DASHenv] = ACTIONS(3312), + [anon_sym_overlay] = ACTIONS(3312), + [anon_sym_as] = ACTIONS(3312), + [anon_sym_where] = ACTIONS(3312), + [anon_sym_not] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3316), + [anon_sym_DOT] = ACTIONS(1844), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3312), + [anon_sym_DOT_DOT_LT] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3312), + [anon_sym_true] = ACTIONS(3312), + [anon_sym_false] = ACTIONS(3312), + [aux_sym__val_number_decimal_token1] = ACTIONS(3312), + [aux_sym__val_number_decimal_token2] = ACTIONS(3312), + [anon_sym_DOT2] = ACTIONS(3312), + [aux_sym__val_number_decimal_token3] = ACTIONS(3312), + [aux_sym__val_number_token1] = ACTIONS(3312), + [aux_sym__val_number_token2] = ACTIONS(3312), + [aux_sym__val_number_token3] = ACTIONS(3312), + [aux_sym__val_number_token4] = ACTIONS(3312), + [aux_sym__val_number_token5] = ACTIONS(3312), + [aux_sym__val_number_token6] = ACTIONS(3312), + [anon_sym_0b] = ACTIONS(3312), + [anon_sym_0o] = ACTIONS(3312), + [anon_sym_0x] = ACTIONS(3312), + [sym_val_date] = ACTIONS(3312), + [anon_sym_DQUOTE] = ACTIONS(3312), + [sym__str_single_quotes] = ACTIONS(3312), + [sym__str_back_ticks] = ACTIONS(3312), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3312), + [anon_sym_CARET] = ACTIONS(3312), + [aux_sym_unquoted_token2] = ACTIONS(1844), [anon_sym_POUND] = ACTIONS(113), }, - [922] = { - [sym_comment] = STATE(922), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_list] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1744), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_make] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_else] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_catch] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_new] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1736), - [anon_sym_STAR_STAR] = ACTIONS(1738), - [anon_sym_PLUS_PLUS] = ACTIONS(1738), - [anon_sym_SLASH] = ACTIONS(1736), - [anon_sym_mod] = ACTIONS(1736), - [anon_sym_SLASH_SLASH] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_bit_DASHshl] = ACTIONS(1740), - [anon_sym_bit_DASHshr] = ACTIONS(1740), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_LT2] = ACTIONS(1732), - [anon_sym_LT_EQ] = ACTIONS(1732), - [anon_sym_GT_EQ] = ACTIONS(1732), - [anon_sym_not_DASHin] = ACTIONS(1744), - [anon_sym_starts_DASHwith] = ACTIONS(1744), - [anon_sym_ends_DASHwith] = ACTIONS(1744), - [anon_sym_EQ_TILDE] = ACTIONS(1746), - [anon_sym_BANG_TILDE] = ACTIONS(1746), - [anon_sym_bit_DASHand] = ACTIONS(1748), - [anon_sym_bit_DASHxor] = ACTIONS(1750), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [sym__entry_separator] = ACTIONS(1378), - [aux_sym__record_key_token2] = ACTIONS(1376), + [1128] = { + [sym_path] = STATE(1344), + [sym_comment] = STATE(1128), + [aux_sym_cell_path_repeat1] = STATE(1062), + [anon_sym_LBRACK] = ACTIONS(1006), + [anon_sym_COMMA] = ACTIONS(1006), + [anon_sym_RBRACK] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_GT] = ACTIONS(1006), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_in] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_DOT_DOT] = ACTIONS(1006), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_STAR_STAR] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_mod] = ACTIONS(1006), + [anon_sym_SLASH_SLASH] = ACTIONS(1006), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_bit_DASHshl] = ACTIONS(1006), + [anon_sym_bit_DASHshr] = ACTIONS(1006), + [anon_sym_EQ_EQ] = ACTIONS(1006), + [anon_sym_BANG_EQ] = ACTIONS(1006), + [anon_sym_LT2] = ACTIONS(1006), + [anon_sym_LT_EQ] = ACTIONS(1006), + [anon_sym_GT_EQ] = ACTIONS(1006), + [anon_sym_not_DASHin] = ACTIONS(1006), + [anon_sym_starts_DASHwith] = ACTIONS(1006), + [anon_sym_ends_DASHwith] = ACTIONS(1006), + [anon_sym_EQ_TILDE] = ACTIONS(1006), + [anon_sym_BANG_TILDE] = ACTIONS(1006), + [anon_sym_bit_DASHand] = ACTIONS(1006), + [anon_sym_bit_DASHxor] = ACTIONS(1006), + [anon_sym_bit_DASHor] = ACTIONS(1006), + [anon_sym_and] = ACTIONS(1006), + [anon_sym_xor] = ACTIONS(1006), + [anon_sym_or] = ACTIONS(1006), + [anon_sym_DOT] = ACTIONS(3689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), + [anon_sym_DOT_DOT_LT] = ACTIONS(1006), + [anon_sym_null] = ACTIONS(1006), + [anon_sym_true] = ACTIONS(1006), + [anon_sym_false] = ACTIONS(1006), + [aux_sym__val_number_decimal_token1] = ACTIONS(1006), + [aux_sym__val_number_decimal_token2] = ACTIONS(1006), + [anon_sym_DOT2] = ACTIONS(1006), + [aux_sym__val_number_decimal_token3] = ACTIONS(1006), + [aux_sym__val_number_token1] = ACTIONS(1006), + [aux_sym__val_number_token2] = ACTIONS(1006), + [aux_sym__val_number_token3] = ACTIONS(1006), + [aux_sym__val_number_token4] = ACTIONS(1006), + [aux_sym__val_number_token5] = ACTIONS(1006), + [aux_sym__val_number_token6] = ACTIONS(1006), + [anon_sym_0b] = ACTIONS(1006), + [anon_sym_0o] = ACTIONS(1006), + [anon_sym_0x] = ACTIONS(1006), + [sym_val_date] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym__str_single_quotes] = ACTIONS(1006), + [sym__str_back_ticks] = ACTIONS(1006), + [sym__entry_separator] = ACTIONS(1008), + [anon_sym_err_GT] = ACTIONS(1006), + [anon_sym_out_GT] = ACTIONS(1006), + [anon_sym_e_GT] = ACTIONS(1006), + [anon_sym_o_GT] = ACTIONS(1006), + [anon_sym_err_PLUSout_GT] = ACTIONS(1006), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), + [anon_sym_o_PLUSe_GT] = ACTIONS(1006), + [anon_sym_e_PLUSo_GT] = ACTIONS(1006), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1006), [anon_sym_POUND] = ACTIONS(113), }, - [923] = { - [sym_comment] = STATE(923), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_list] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1744), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_make] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_else] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_catch] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_new] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1736), - [anon_sym_STAR_STAR] = ACTIONS(1738), - [anon_sym_PLUS_PLUS] = ACTIONS(1738), - [anon_sym_SLASH] = ACTIONS(1736), - [anon_sym_mod] = ACTIONS(1736), - [anon_sym_SLASH_SLASH] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_bit_DASHshl] = ACTIONS(1740), - [anon_sym_bit_DASHshr] = ACTIONS(1740), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_LT2] = ACTIONS(1732), - [anon_sym_LT_EQ] = ACTIONS(1732), - [anon_sym_GT_EQ] = ACTIONS(1732), - [anon_sym_not_DASHin] = ACTIONS(1744), - [anon_sym_starts_DASHwith] = ACTIONS(1744), - [anon_sym_ends_DASHwith] = ACTIONS(1744), - [anon_sym_EQ_TILDE] = ACTIONS(1746), - [anon_sym_BANG_TILDE] = ACTIONS(1746), - [anon_sym_bit_DASHand] = ACTIONS(1748), - [anon_sym_bit_DASHxor] = ACTIONS(1750), - [anon_sym_bit_DASHor] = ACTIONS(1752), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [sym__entry_separator] = ACTIONS(1378), - [aux_sym__record_key_token2] = ACTIONS(1376), + [1129] = { + [sym_comment] = STATE(1129), + [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), + [anon_sym_SEMI] = ACTIONS(2402), + [sym_cmd_identifier] = ACTIONS(2402), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2402), + [anon_sym_LPAREN] = ACTIONS(2402), + [anon_sym_RPAREN] = ACTIONS(2402), + [anon_sym_DOLLAR] = ACTIONS(2402), + [anon_sym_error] = ACTIONS(2402), + [anon_sym_DASH_DASH] = ACTIONS(2402), + [anon_sym_DASH] = ACTIONS(2402), + [anon_sym_break] = ACTIONS(2402), + [anon_sym_continue] = ACTIONS(2402), + [anon_sym_for] = ACTIONS(2402), + [anon_sym_loop] = ACTIONS(2402), + [anon_sym_while] = ACTIONS(2402), + [anon_sym_do] = ACTIONS(2402), + [anon_sym_if] = ACTIONS(2402), + [anon_sym_match] = ACTIONS(2402), + [anon_sym_LBRACE] = ACTIONS(2402), + [anon_sym_RBRACE] = ACTIONS(2402), + [anon_sym_DOT_DOT] = ACTIONS(2402), + [anon_sym_try] = 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_where] = ACTIONS(2402), + [anon_sym_not] = ACTIONS(2402), + [anon_sym_DOT_DOT2] = ACTIONS(2402), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2402), + [anon_sym_DOT_DOT_LT] = ACTIONS(2402), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2404), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2404), + [anon_sym_null] = ACTIONS(2402), + [anon_sym_true] = ACTIONS(2402), + [anon_sym_false] = ACTIONS(2402), + [aux_sym__val_number_decimal_token1] = ACTIONS(2402), + [aux_sym__val_number_decimal_token2] = ACTIONS(2402), + [anon_sym_DOT2] = ACTIONS(2402), + [aux_sym__val_number_decimal_token3] = ACTIONS(2402), + [aux_sym__val_number_token1] = ACTIONS(2402), + [aux_sym__val_number_token2] = ACTIONS(2402), + [aux_sym__val_number_token3] = ACTIONS(2402), + [aux_sym__val_number_token4] = ACTIONS(2402), + [aux_sym__val_number_token5] = ACTIONS(2402), + [aux_sym__val_number_token6] = ACTIONS(2402), + [anon_sym_0b] = ACTIONS(2402), + [anon_sym_0o] = ACTIONS(2402), + [anon_sym_0x] = ACTIONS(2402), + [sym_val_date] = 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_CARET] = ACTIONS(2402), [anon_sym_POUND] = ACTIONS(113), }, - [924] = { - [sym_comment] = STATE(924), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_list] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1744), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_make] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_else] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_catch] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_new] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1736), - [anon_sym_STAR_STAR] = ACTIONS(1738), - [anon_sym_PLUS_PLUS] = ACTIONS(1738), - [anon_sym_SLASH] = ACTIONS(1736), - [anon_sym_mod] = ACTIONS(1736), - [anon_sym_SLASH_SLASH] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_bit_DASHshl] = ACTIONS(1740), - [anon_sym_bit_DASHshr] = ACTIONS(1740), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_LT2] = ACTIONS(1732), - [anon_sym_LT_EQ] = ACTIONS(1732), - [anon_sym_GT_EQ] = ACTIONS(1732), - [anon_sym_not_DASHin] = ACTIONS(1744), - [anon_sym_starts_DASHwith] = ACTIONS(1744), - [anon_sym_ends_DASHwith] = ACTIONS(1744), - [anon_sym_EQ_TILDE] = ACTIONS(1746), - [anon_sym_BANG_TILDE] = ACTIONS(1746), - [anon_sym_bit_DASHand] = ACTIONS(1748), - [anon_sym_bit_DASHxor] = ACTIONS(1750), - [anon_sym_bit_DASHor] = ACTIONS(1752), - [anon_sym_and] = ACTIONS(1754), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [sym__entry_separator] = ACTIONS(1378), - [aux_sym__record_key_token2] = ACTIONS(1376), + [1130] = { + [sym_comment] = STATE(1130), + [anon_sym_SEMI] = ACTIONS(893), + [anon_sym_LF] = ACTIONS(895), + [anon_sym_LBRACK] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(893), + [anon_sym_RPAREN] = ACTIONS(893), + [anon_sym_PIPE] = ACTIONS(893), + [anon_sym_DOLLAR] = ACTIONS(893), + [anon_sym_GT] = ACTIONS(893), + [anon_sym_DASH_DASH] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_in] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(893), + [anon_sym_DOT_DOT] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(893), + [anon_sym_STAR_STAR] = ACTIONS(893), + [anon_sym_PLUS_PLUS] = ACTIONS(893), + [anon_sym_SLASH] = ACTIONS(893), + [anon_sym_mod] = ACTIONS(893), + [anon_sym_SLASH_SLASH] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_bit_DASHshl] = ACTIONS(893), + [anon_sym_bit_DASHshr] = ACTIONS(893), + [anon_sym_EQ_EQ] = ACTIONS(893), + [anon_sym_BANG_EQ] = ACTIONS(893), + [anon_sym_LT2] = ACTIONS(893), + [anon_sym_LT_EQ] = ACTIONS(893), + [anon_sym_GT_EQ] = ACTIONS(893), + [anon_sym_not_DASHin] = ACTIONS(893), + [anon_sym_starts_DASHwith] = ACTIONS(893), + [anon_sym_ends_DASHwith] = ACTIONS(893), + [anon_sym_EQ_TILDE] = ACTIONS(893), + [anon_sym_BANG_TILDE] = ACTIONS(893), + [anon_sym_bit_DASHand] = ACTIONS(893), + [anon_sym_bit_DASHxor] = ACTIONS(893), + [anon_sym_bit_DASHor] = ACTIONS(893), + [anon_sym_and] = ACTIONS(893), + [anon_sym_xor] = ACTIONS(893), + [anon_sym_or] = ACTIONS(893), + [anon_sym_not] = ACTIONS(893), + [anon_sym_DOT_DOT2] = ACTIONS(893), + [anon_sym_DOT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ] = ACTIONS(893), + [anon_sym_DOT_DOT_LT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), + [anon_sym_DOT_DOT_LT2] = ACTIONS(895), + [anon_sym_null] = ACTIONS(893), + [anon_sym_true] = ACTIONS(893), + [anon_sym_false] = ACTIONS(893), + [aux_sym__val_number_decimal_token1] = ACTIONS(893), + [aux_sym__val_number_decimal_token2] = ACTIONS(893), + [anon_sym_DOT2] = ACTIONS(893), + [aux_sym__val_number_decimal_token3] = ACTIONS(893), + [aux_sym__val_number_token1] = ACTIONS(893), + [aux_sym__val_number_token2] = ACTIONS(893), + [aux_sym__val_number_token3] = ACTIONS(893), + [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(893), + [sym_filesize_unit] = ACTIONS(893), + [sym_duration_unit] = ACTIONS(895), + [anon_sym_0o] = ACTIONS(893), + [anon_sym_0x] = ACTIONS(893), + [sym_val_date] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(893), + [sym__str_single_quotes] = ACTIONS(893), + [sym__str_back_ticks] = ACTIONS(893), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(893), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(893), + [aux_sym_unquoted_token5] = ACTIONS(893), [anon_sym_POUND] = ACTIONS(113), }, - [925] = { - [sym_comment] = STATE(925), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_list] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1744), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_make] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_else] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_catch] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_new] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1736), - [anon_sym_STAR_STAR] = ACTIONS(1738), - [anon_sym_PLUS_PLUS] = ACTIONS(1738), - [anon_sym_SLASH] = ACTIONS(1736), - [anon_sym_mod] = ACTIONS(1736), - [anon_sym_SLASH_SLASH] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_bit_DASHshl] = ACTIONS(1740), - [anon_sym_bit_DASHshr] = ACTIONS(1740), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_LT2] = ACTIONS(1732), - [anon_sym_LT_EQ] = ACTIONS(1732), - [anon_sym_GT_EQ] = ACTIONS(1732), - [anon_sym_not_DASHin] = ACTIONS(1744), - [anon_sym_starts_DASHwith] = ACTIONS(1744), - [anon_sym_ends_DASHwith] = ACTIONS(1744), - [anon_sym_EQ_TILDE] = ACTIONS(1746), - [anon_sym_BANG_TILDE] = ACTIONS(1746), - [anon_sym_bit_DASHand] = ACTIONS(1748), - [anon_sym_bit_DASHxor] = ACTIONS(1750), - [anon_sym_bit_DASHor] = ACTIONS(1752), - [anon_sym_and] = ACTIONS(1754), - [anon_sym_xor] = ACTIONS(1756), - [anon_sym_or] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [sym__entry_separator] = ACTIONS(1378), - [aux_sym__record_key_token2] = ACTIONS(1376), + [1131] = { + [sym_cell_path] = STATE(1985), + [sym_path] = STATE(1107), + [sym_comment] = STATE(1131), + [anon_sym_LBRACK] = ACTIONS(1097), + [anon_sym_COMMA] = ACTIONS(1097), + [anon_sym_RBRACK] = ACTIONS(1097), + [anon_sym_LPAREN] = ACTIONS(1097), + [anon_sym_DOLLAR] = ACTIONS(1097), + [anon_sym_GT] = ACTIONS(1097), + [anon_sym_DASH_DASH] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_DOT_DOT] = ACTIONS(1097), + [anon_sym_STAR] = ACTIONS(1097), + [anon_sym_STAR_STAR] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1097), + [anon_sym_SLASH] = ACTIONS(1097), + [anon_sym_mod] = ACTIONS(1097), + [anon_sym_SLASH_SLASH] = ACTIONS(1097), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_bit_DASHshl] = ACTIONS(1097), + [anon_sym_bit_DASHshr] = ACTIONS(1097), + [anon_sym_EQ_EQ] = ACTIONS(1097), + [anon_sym_BANG_EQ] = ACTIONS(1097), + [anon_sym_LT2] = ACTIONS(1097), + [anon_sym_LT_EQ] = ACTIONS(1097), + [anon_sym_GT_EQ] = ACTIONS(1097), + [anon_sym_not_DASHin] = ACTIONS(1097), + [anon_sym_starts_DASHwith] = ACTIONS(1097), + [anon_sym_ends_DASHwith] = ACTIONS(1097), + [anon_sym_EQ_TILDE] = ACTIONS(1097), + [anon_sym_BANG_TILDE] = ACTIONS(1097), + [anon_sym_bit_DASHand] = ACTIONS(1097), + [anon_sym_bit_DASHxor] = ACTIONS(1097), + [anon_sym_bit_DASHor] = ACTIONS(1097), + [anon_sym_and] = ACTIONS(1097), + [anon_sym_xor] = ACTIONS(1097), + [anon_sym_or] = ACTIONS(1097), + [anon_sym_DOT] = ACTIONS(3689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1097), + [anon_sym_DOT_DOT_LT] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1097), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), + [aux_sym__val_number_decimal_token1] = ACTIONS(1097), + [aux_sym__val_number_decimal_token2] = ACTIONS(1097), + [anon_sym_DOT2] = ACTIONS(1097), + [aux_sym__val_number_decimal_token3] = ACTIONS(1097), + [aux_sym__val_number_token1] = ACTIONS(1097), + [aux_sym__val_number_token2] = ACTIONS(1097), + [aux_sym__val_number_token3] = ACTIONS(1097), + [aux_sym__val_number_token4] = ACTIONS(1097), + [aux_sym__val_number_token5] = ACTIONS(1097), + [aux_sym__val_number_token6] = ACTIONS(1097), + [anon_sym_0b] = ACTIONS(1097), + [anon_sym_0o] = ACTIONS(1097), + [anon_sym_0x] = ACTIONS(1097), + [sym_val_date] = ACTIONS(1097), + [anon_sym_DQUOTE] = ACTIONS(1097), + [sym__str_single_quotes] = ACTIONS(1097), + [sym__str_back_ticks] = ACTIONS(1097), + [sym__entry_separator] = ACTIONS(1099), + [anon_sym_err_GT] = ACTIONS(1097), + [anon_sym_out_GT] = ACTIONS(1097), + [anon_sym_e_GT] = ACTIONS(1097), + [anon_sym_o_GT] = ACTIONS(1097), + [anon_sym_err_PLUSout_GT] = ACTIONS(1097), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1097), + [anon_sym_o_PLUSe_GT] = ACTIONS(1097), + [anon_sym_e_PLUSo_GT] = ACTIONS(1097), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1097), [anon_sym_POUND] = ACTIONS(113), }, - [926] = { - [sym_pipeline] = STATE(3009), - [sym_pipeline_last] = STATE(10447), - [sym__ctrl_expression] = STATE(9270), - [sym_ctrl_do] = STATE(9515), - [sym_ctrl_if] = STATE(9515), - [sym_ctrl_match] = STATE(9515), - [sym_ctrl_try] = STATE(9515), - [sym_ctrl_return] = STATE(9515), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9536), - [sym_where_command] = STATE(8865), - [sym__expression] = STATE(8865), - [sym_expr_unary] = STATE(6379), - [sym__expr_unary_minus] = STATE(6347), - [sym_expr_binary] = STATE(6379), - [sym__expr_binary_expression] = STATE(6784), - [sym_expr_parenthesized] = STATE(5573), - [sym_val_range] = STATE(8689), - [sym__value] = STATE(6379), - [sym_val_nothing] = STATE(6374), - [sym_val_bool] = STATE(6374), - [sym_val_variable] = STATE(5610), - [sym__var] = STATE(4886), - [sym_val_number] = STATE(6374), - [sym__val_number_decimal] = STATE(4698), - [sym__val_number] = STATE(5769), - [sym_val_duration] = STATE(6374), - [sym_val_filesize] = STATE(6374), - [sym_val_binary] = STATE(6374), - [sym_val_string] = STATE(6374), - [sym__str_double_quotes] = STATE(6386), - [sym_val_interpolated] = STATE(6374), - [sym__inter_single_quotes] = STATE(6363), - [sym__inter_double_quotes] = STATE(6365), - [sym_val_list] = STATE(6374), - [sym_val_record] = STATE(6374), - [sym_val_table] = STATE(6374), - [sym_val_closure] = STATE(6374), - [sym_command] = STATE(8865), - [sym_comment] = STATE(926), - [aux_sym_pipeline_repeat1] = STATE(1031), - [sym_cmd_identifier] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(1742), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_do] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_match] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_DOT_DOT] = ACTIONS(59), - [anon_sym_try] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_where] = ACTIONS(75), - [anon_sym_not] = ACTIONS(77), - [anon_sym_DOT_DOT_EQ] = ACTIONS(79), - [anon_sym_DOT_DOT_LT] = ACTIONS(79), - [anon_sym_null] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym__val_number_decimal_token1] = ACTIONS(85), - [aux_sym__val_number_decimal_token2] = ACTIONS(87), - [anon_sym_DOT2] = ACTIONS(89), - [aux_sym__val_number_decimal_token3] = ACTIONS(91), - [aux_sym__val_number_token1] = ACTIONS(93), - [aux_sym__val_number_token2] = ACTIONS(93), - [aux_sym__val_number_token3] = ACTIONS(93), - [aux_sym__val_number_token4] = ACTIONS(95), - [aux_sym__val_number_token5] = ACTIONS(93), - [aux_sym__val_number_token6] = ACTIONS(95), - [anon_sym_0b] = ACTIONS(97), - [anon_sym_0o] = ACTIONS(99), - [anon_sym_0x] = ACTIONS(99), - [sym_val_date] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym__str_single_quotes] = ACTIONS(105), - [sym__str_back_ticks] = ACTIONS(105), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(111), - [anon_sym_POUND] = ACTIONS(3), - }, - [927] = { - [sym_comment] = STATE(927), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_list] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1744), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_make] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_else] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_catch] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_new] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1736), - [anon_sym_STAR_STAR] = ACTIONS(1738), - [anon_sym_PLUS_PLUS] = ACTIONS(1738), - [anon_sym_SLASH] = ACTIONS(1736), - [anon_sym_mod] = ACTIONS(1736), - [anon_sym_SLASH_SLASH] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_bit_DASHshl] = ACTIONS(1740), - [anon_sym_bit_DASHshr] = ACTIONS(1740), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_LT2] = ACTIONS(1732), - [anon_sym_LT_EQ] = ACTIONS(1732), - [anon_sym_GT_EQ] = ACTIONS(1732), - [anon_sym_not_DASHin] = ACTIONS(1744), - [anon_sym_starts_DASHwith] = ACTIONS(1744), - [anon_sym_ends_DASHwith] = ACTIONS(1744), - [anon_sym_EQ_TILDE] = ACTIONS(1746), - [anon_sym_BANG_TILDE] = ACTIONS(1746), - [anon_sym_bit_DASHand] = ACTIONS(1748), - [anon_sym_bit_DASHxor] = ACTIONS(1750), - [anon_sym_bit_DASHor] = ACTIONS(1752), - [anon_sym_and] = ACTIONS(1754), - [anon_sym_xor] = ACTIONS(1756), - [anon_sym_or] = ACTIONS(1758), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [sym__entry_separator] = ACTIONS(1378), - [aux_sym__record_key_token2] = ACTIONS(1376), + [1132] = { + [sym_cell_path] = STATE(1596), + [sym_path] = STATE(1107), + [sym_comment] = STATE(1132), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_COMMA] = ACTIONS(1101), + [anon_sym_RBRACK] = ACTIONS(1101), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_DOLLAR] = ACTIONS(1101), + [anon_sym_GT] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_in] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_DOT_DOT] = ACTIONS(1101), + [anon_sym_STAR] = ACTIONS(1101), + [anon_sym_STAR_STAR] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_SLASH] = ACTIONS(1101), + [anon_sym_mod] = ACTIONS(1101), + [anon_sym_SLASH_SLASH] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_bit_DASHshl] = ACTIONS(1101), + [anon_sym_bit_DASHshr] = ACTIONS(1101), + [anon_sym_EQ_EQ] = ACTIONS(1101), + [anon_sym_BANG_EQ] = ACTIONS(1101), + [anon_sym_LT2] = ACTIONS(1101), + [anon_sym_LT_EQ] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1101), + [anon_sym_not_DASHin] = ACTIONS(1101), + [anon_sym_starts_DASHwith] = ACTIONS(1101), + [anon_sym_ends_DASHwith] = ACTIONS(1101), + [anon_sym_EQ_TILDE] = ACTIONS(1101), + [anon_sym_BANG_TILDE] = ACTIONS(1101), + [anon_sym_bit_DASHand] = ACTIONS(1101), + [anon_sym_bit_DASHxor] = ACTIONS(1101), + [anon_sym_bit_DASHor] = ACTIONS(1101), + [anon_sym_and] = ACTIONS(1101), + [anon_sym_xor] = ACTIONS(1101), + [anon_sym_or] = ACTIONS(1101), + [anon_sym_DOT] = ACTIONS(3689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1101), + [anon_sym_DOT_DOT_LT] = ACTIONS(1101), + [anon_sym_null] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(1101), + [anon_sym_false] = ACTIONS(1101), + [aux_sym__val_number_decimal_token1] = ACTIONS(1101), + [aux_sym__val_number_decimal_token2] = ACTIONS(1101), + [anon_sym_DOT2] = ACTIONS(1101), + [aux_sym__val_number_decimal_token3] = ACTIONS(1101), + [aux_sym__val_number_token1] = ACTIONS(1101), + [aux_sym__val_number_token2] = ACTIONS(1101), + [aux_sym__val_number_token3] = ACTIONS(1101), + [aux_sym__val_number_token4] = ACTIONS(1101), + [aux_sym__val_number_token5] = ACTIONS(1101), + [aux_sym__val_number_token6] = ACTIONS(1101), + [anon_sym_0b] = ACTIONS(1101), + [anon_sym_0o] = ACTIONS(1101), + [anon_sym_0x] = ACTIONS(1101), + [sym_val_date] = ACTIONS(1101), + [anon_sym_DQUOTE] = ACTIONS(1101), + [sym__str_single_quotes] = ACTIONS(1101), + [sym__str_back_ticks] = ACTIONS(1101), + [sym__entry_separator] = ACTIONS(1103), + [anon_sym_err_GT] = ACTIONS(1101), + [anon_sym_out_GT] = ACTIONS(1101), + [anon_sym_e_GT] = ACTIONS(1101), + [anon_sym_o_GT] = ACTIONS(1101), + [anon_sym_err_PLUSout_GT] = ACTIONS(1101), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1101), + [anon_sym_o_PLUSe_GT] = ACTIONS(1101), + [anon_sym_e_PLUSo_GT] = ACTIONS(1101), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1101), [anon_sym_POUND] = ACTIONS(113), }, - [928] = { - [sym_pipeline] = STATE(2982), - [sym_pipeline_last] = STATE(10373), - [sym__ctrl_expression] = STATE(9270), - [sym_ctrl_do] = STATE(9515), - [sym_ctrl_if] = STATE(9515), - [sym_ctrl_match] = STATE(9515), - [sym_ctrl_try] = STATE(9515), - [sym_ctrl_return] = STATE(9515), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9536), - [sym_where_command] = STATE(8865), - [sym__expression] = STATE(8865), - [sym_expr_unary] = STATE(6379), - [sym__expr_unary_minus] = STATE(6347), - [sym_expr_binary] = STATE(6379), - [sym__expr_binary_expression] = STATE(6784), - [sym_expr_parenthesized] = STATE(5573), - [sym_val_range] = STATE(8689), - [sym__value] = STATE(6379), - [sym_val_nothing] = STATE(6374), - [sym_val_bool] = STATE(6374), - [sym_val_variable] = STATE(5610), - [sym__var] = STATE(4886), - [sym_val_number] = STATE(6374), - [sym__val_number_decimal] = STATE(4698), - [sym__val_number] = STATE(5769), - [sym_val_duration] = STATE(6374), - [sym_val_filesize] = STATE(6374), - [sym_val_binary] = STATE(6374), - [sym_val_string] = STATE(6374), - [sym__str_double_quotes] = STATE(6386), - [sym_val_interpolated] = STATE(6374), - [sym__inter_single_quotes] = STATE(6363), - [sym__inter_double_quotes] = STATE(6365), - [sym_val_list] = STATE(6374), - [sym_val_record] = STATE(6374), - [sym_val_table] = STATE(6374), - [sym_val_closure] = STATE(6374), - [sym_command] = STATE(8865), - [sym_comment] = STATE(928), - [aux_sym_pipeline_repeat1] = STATE(1031), - [sym_cmd_identifier] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(1742), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_do] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_match] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_DOT_DOT] = ACTIONS(59), - [anon_sym_try] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_where] = ACTIONS(75), - [anon_sym_not] = ACTIONS(77), - [anon_sym_DOT_DOT_EQ] = ACTIONS(79), - [anon_sym_DOT_DOT_LT] = ACTIONS(79), - [anon_sym_null] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym__val_number_decimal_token1] = ACTIONS(85), - [aux_sym__val_number_decimal_token2] = ACTIONS(87), - [anon_sym_DOT2] = ACTIONS(89), - [aux_sym__val_number_decimal_token3] = ACTIONS(91), - [aux_sym__val_number_token1] = ACTIONS(93), - [aux_sym__val_number_token2] = ACTIONS(93), - [aux_sym__val_number_token3] = ACTIONS(93), - [aux_sym__val_number_token4] = ACTIONS(95), - [aux_sym__val_number_token5] = ACTIONS(93), - [aux_sym__val_number_token6] = ACTIONS(95), - [anon_sym_0b] = ACTIONS(97), - [anon_sym_0o] = ACTIONS(99), - [anon_sym_0x] = ACTIONS(99), - [sym_val_date] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym__str_single_quotes] = ACTIONS(105), - [sym__str_back_ticks] = ACTIONS(105), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(111), - [anon_sym_POUND] = ACTIONS(3), - }, - [929] = { - [sym_comment] = STATE(929), - [anon_sym_export] = ACTIONS(1259), - [anon_sym_alias] = ACTIONS(1259), - [anon_sym_let] = ACTIONS(1259), - [anon_sym_let_DASHenv] = ACTIONS(1259), - [anon_sym_mut] = ACTIONS(1259), - [anon_sym_const] = ACTIONS(1259), - [sym_cmd_identifier] = ACTIONS(1259), - [anon_sym_def] = ACTIONS(1259), - [anon_sym_export_DASHenv] = ACTIONS(1259), - [anon_sym_extern] = ACTIONS(1259), - [anon_sym_module] = ACTIONS(1259), - [anon_sym_use] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(1261), - [anon_sym_DOLLAR] = ACTIONS(1261), - [anon_sym_error] = ACTIONS(1259), - [anon_sym_list] = ACTIONS(1259), - [anon_sym_GT] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_break] = ACTIONS(1259), - [anon_sym_continue] = ACTIONS(1259), - [anon_sym_for] = ACTIONS(1259), - [anon_sym_in] = ACTIONS(1259), - [anon_sym_loop] = ACTIONS(1259), - [anon_sym_make] = ACTIONS(1259), - [anon_sym_while] = ACTIONS(1259), - [anon_sym_do] = ACTIONS(1259), - [anon_sym_if] = ACTIONS(1259), - [anon_sym_else] = ACTIONS(1259), - [anon_sym_match] = ACTIONS(1259), - [anon_sym_RBRACE] = ACTIONS(1261), - [anon_sym_try] = ACTIONS(1259), - [anon_sym_catch] = ACTIONS(1259), - [anon_sym_return] = ACTIONS(1259), - [anon_sym_source] = ACTIONS(1259), - [anon_sym_source_DASHenv] = ACTIONS(1259), - [anon_sym_register] = ACTIONS(1259), - [anon_sym_hide] = ACTIONS(1259), - [anon_sym_hide_DASHenv] = ACTIONS(1259), - [anon_sym_overlay] = ACTIONS(1259), - [anon_sym_new] = ACTIONS(1259), - [anon_sym_as] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1259), - [anon_sym_STAR_STAR] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(1261), - [anon_sym_SLASH] = ACTIONS(1259), - [anon_sym_mod] = ACTIONS(1259), - [anon_sym_SLASH_SLASH] = ACTIONS(1261), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_bit_DASHshl] = ACTIONS(1259), - [anon_sym_bit_DASHshr] = ACTIONS(1259), - [anon_sym_EQ_EQ] = ACTIONS(1261), - [anon_sym_BANG_EQ] = ACTIONS(1261), - [anon_sym_LT2] = ACTIONS(1259), - [anon_sym_LT_EQ] = ACTIONS(1261), - [anon_sym_GT_EQ] = ACTIONS(1261), - [anon_sym_not_DASHin] = ACTIONS(1259), - [anon_sym_starts_DASHwith] = ACTIONS(1259), - [anon_sym_ends_DASHwith] = ACTIONS(1259), - [anon_sym_EQ_TILDE] = ACTIONS(1261), - [anon_sym_BANG_TILDE] = ACTIONS(1261), - [anon_sym_bit_DASHand] = ACTIONS(1259), - [anon_sym_bit_DASHxor] = ACTIONS(1259), - [anon_sym_bit_DASHor] = ACTIONS(1259), - [anon_sym_and] = ACTIONS(1259), - [anon_sym_xor] = ACTIONS(1259), - [anon_sym_or] = ACTIONS(1259), - [aux_sym__val_number_decimal_token1] = ACTIONS(1259), - [aux_sym__val_number_decimal_token2] = ACTIONS(1261), - [anon_sym_DOT2] = ACTIONS(1261), - [aux_sym__val_number_decimal_token3] = ACTIONS(1261), - [aux_sym__val_number_token1] = ACTIONS(1261), - [aux_sym__val_number_token2] = ACTIONS(1261), - [aux_sym__val_number_token3] = ACTIONS(1261), - [aux_sym__val_number_token4] = ACTIONS(1259), - [aux_sym__val_number_token5] = ACTIONS(1261), - [aux_sym__val_number_token6] = ACTIONS(1259), - [anon_sym_LBRACK2] = ACTIONS(1760), - [anon_sym_DQUOTE] = ACTIONS(1261), - [sym__str_single_quotes] = ACTIONS(1261), - [sym__str_back_ticks] = ACTIONS(1261), - [aux_sym__record_key_token2] = ACTIONS(1259), - [anon_sym_POUND] = ACTIONS(3), - }, - [930] = { - [sym_pipeline_parenthesized] = STATE(3039), - [sym_pipeline_parenthesized_last] = STATE(10292), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(5342), - [sym__var] = STATE(4755), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), - [sym_comment] = STATE(930), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(1762), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_where] = ACTIONS(187), - [anon_sym_not] = ACTIONS(191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(193), - [anon_sym_DOT_DOT_LT] = ACTIONS(193), - [anon_sym_null] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [aux_sym__val_number_decimal_token1] = ACTIONS(199), - [aux_sym__val_number_decimal_token2] = ACTIONS(201), - [anon_sym_DOT2] = ACTIONS(203), - [aux_sym__val_number_decimal_token3] = ACTIONS(205), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(209), - [aux_sym__val_number_token5] = ACTIONS(207), - [aux_sym__val_number_token6] = ACTIONS(209), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), - [anon_sym_POUND] = ACTIONS(3), - }, - [931] = { - [sym_pipeline_parenthesized] = STATE(3046), - [sym_pipeline_parenthesized_last] = STATE(10294), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(5342), - [sym__var] = STATE(4755), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), - [sym_comment] = STATE(931), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(1762), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_where] = ACTIONS(187), - [anon_sym_not] = ACTIONS(191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(193), - [anon_sym_DOT_DOT_LT] = ACTIONS(193), - [anon_sym_null] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [aux_sym__val_number_decimal_token1] = ACTIONS(199), - [aux_sym__val_number_decimal_token2] = ACTIONS(201), - [anon_sym_DOT2] = ACTIONS(203), - [aux_sym__val_number_decimal_token3] = ACTIONS(205), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(209), - [aux_sym__val_number_token5] = ACTIONS(207), - [aux_sym__val_number_token6] = ACTIONS(209), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), - [anon_sym_POUND] = ACTIONS(3), - }, - [932] = { - [sym_pipeline_parenthesized] = STATE(3041), - [sym_pipeline_parenthesized_last] = STATE(10220), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(5342), - [sym__var] = STATE(4755), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), - [sym_comment] = STATE(932), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(1762), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_where] = ACTIONS(187), - [anon_sym_not] = ACTIONS(191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(193), - [anon_sym_DOT_DOT_LT] = ACTIONS(193), - [anon_sym_null] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [aux_sym__val_number_decimal_token1] = ACTIONS(199), - [aux_sym__val_number_decimal_token2] = ACTIONS(201), - [anon_sym_DOT2] = ACTIONS(203), - [aux_sym__val_number_decimal_token3] = ACTIONS(205), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(209), - [aux_sym__val_number_token5] = ACTIONS(207), - [aux_sym__val_number_token6] = ACTIONS(209), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), - [anon_sym_POUND] = ACTIONS(3), - }, - [933] = { - [sym_pipeline_parenthesized] = STATE(3016), - [sym_pipeline_parenthesized_last] = STATE(10224), - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10217), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(5342), - [sym__var] = STATE(4755), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), - [sym_comment] = STATE(933), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1029), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(1762), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_where] = ACTIONS(187), - [anon_sym_not] = ACTIONS(191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(193), - [anon_sym_DOT_DOT_LT] = ACTIONS(193), - [anon_sym_null] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [aux_sym__val_number_decimal_token1] = ACTIONS(199), - [aux_sym__val_number_decimal_token2] = ACTIONS(201), - [anon_sym_DOT2] = ACTIONS(203), - [aux_sym__val_number_decimal_token3] = ACTIONS(205), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(209), - [aux_sym__val_number_token5] = ACTIONS(207), - [aux_sym__val_number_token6] = ACTIONS(209), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), - [anon_sym_POUND] = ACTIONS(3), - }, - [934] = { - [sym_comment] = STATE(934), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_alias] = ACTIONS(1158), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_let_DASHenv] = ACTIONS(1158), - [anon_sym_mut] = ACTIONS(1158), - [anon_sym_const] = ACTIONS(1158), - [sym_cmd_identifier] = ACTIONS(1158), - [anon_sym_def] = ACTIONS(1158), - [anon_sym_export_DASHenv] = ACTIONS(1158), - [anon_sym_extern] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_use] = ACTIONS(1158), - [anon_sym_LPAREN] = ACTIONS(1160), - [anon_sym_DOLLAR] = ACTIONS(1158), - [anon_sym_error] = ACTIONS(1158), - [anon_sym_list] = ACTIONS(1158), - [anon_sym_GT] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_break] = ACTIONS(1158), - [anon_sym_continue] = ACTIONS(1158), - [anon_sym_for] = ACTIONS(1158), - [anon_sym_in] = ACTIONS(1158), - [anon_sym_loop] = ACTIONS(1158), - [anon_sym_make] = ACTIONS(1158), - [anon_sym_while] = ACTIONS(1158), - [anon_sym_do] = ACTIONS(1158), - [anon_sym_if] = ACTIONS(1158), - [anon_sym_else] = ACTIONS(1158), - [anon_sym_match] = ACTIONS(1158), - [anon_sym_RBRACE] = ACTIONS(1160), - [anon_sym_try] = ACTIONS(1158), - [anon_sym_catch] = ACTIONS(1158), - [anon_sym_return] = ACTIONS(1158), - [anon_sym_source] = ACTIONS(1158), - [anon_sym_source_DASHenv] = ACTIONS(1158), - [anon_sym_register] = ACTIONS(1158), - [anon_sym_hide] = ACTIONS(1158), - [anon_sym_hide_DASHenv] = ACTIONS(1158), - [anon_sym_overlay] = ACTIONS(1158), - [anon_sym_new] = ACTIONS(1158), - [anon_sym_as] = ACTIONS(1158), - [anon_sym_STAR] = ACTIONS(1158), - [anon_sym_STAR_STAR] = ACTIONS(1158), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_SLASH] = ACTIONS(1158), - [anon_sym_mod] = ACTIONS(1158), - [anon_sym_SLASH_SLASH] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1158), - [anon_sym_bit_DASHshl] = ACTIONS(1158), - [anon_sym_bit_DASHshr] = ACTIONS(1158), - [anon_sym_EQ_EQ] = ACTIONS(1158), - [anon_sym_BANG_EQ] = ACTIONS(1158), - [anon_sym_LT2] = ACTIONS(1158), - [anon_sym_LT_EQ] = ACTIONS(1158), - [anon_sym_GT_EQ] = ACTIONS(1158), - [anon_sym_not_DASHin] = ACTIONS(1158), - [anon_sym_starts_DASHwith] = ACTIONS(1158), - [anon_sym_ends_DASHwith] = ACTIONS(1158), - [anon_sym_EQ_TILDE] = ACTIONS(1158), - [anon_sym_BANG_TILDE] = ACTIONS(1158), - [anon_sym_bit_DASHand] = ACTIONS(1158), - [anon_sym_bit_DASHxor] = ACTIONS(1158), - [anon_sym_bit_DASHor] = ACTIONS(1158), - [anon_sym_and] = ACTIONS(1158), - [anon_sym_xor] = ACTIONS(1158), - [anon_sym_or] = ACTIONS(1158), - [aux_sym__val_number_decimal_token1] = ACTIONS(1158), - [aux_sym__val_number_decimal_token2] = ACTIONS(1158), - [anon_sym_DOT2] = ACTIONS(1158), - [aux_sym__val_number_decimal_token3] = ACTIONS(1158), - [aux_sym__val_number_token1] = ACTIONS(1158), - [aux_sym__val_number_token2] = ACTIONS(1158), - [aux_sym__val_number_token3] = ACTIONS(1158), - [aux_sym__val_number_token4] = ACTIONS(1158), - [aux_sym__val_number_token5] = ACTIONS(1158), - [aux_sym__val_number_token6] = ACTIONS(1158), - [anon_sym_DQUOTE] = ACTIONS(1160), - [sym__str_single_quotes] = ACTIONS(1160), - [sym__str_back_ticks] = ACTIONS(1160), - [aux_sym__record_key_token2] = ACTIONS(1158), - [aux_sym_unquoted_token6] = ACTIONS(1284), + [1133] = { + [sym_comment] = STATE(1133), + [ts_builtin_sym_end] = ACTIONS(1049), + [anon_sym_export] = ACTIONS(1047), + [anon_sym_alias] = ACTIONS(1047), + [anon_sym_let] = ACTIONS(1047), + [anon_sym_let_DASHenv] = ACTIONS(1047), + [anon_sym_mut] = ACTIONS(1047), + [anon_sym_const] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1047), + [sym_cmd_identifier] = ACTIONS(1047), + [anon_sym_LF] = ACTIONS(1049), + [anon_sym_def] = ACTIONS(1047), + [anon_sym_export_DASHenv] = ACTIONS(1047), + [anon_sym_extern] = ACTIONS(1047), + [anon_sym_module] = ACTIONS(1047), + [anon_sym_use] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1047), + [anon_sym_error] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_break] = ACTIONS(1047), + [anon_sym_continue] = ACTIONS(1047), + [anon_sym_for] = ACTIONS(1047), + [anon_sym_loop] = ACTIONS(1047), + [anon_sym_while] = ACTIONS(1047), + [anon_sym_do] = ACTIONS(1047), + [anon_sym_if] = ACTIONS(1047), + [anon_sym_match] = ACTIONS(1047), + [anon_sym_LBRACE] = ACTIONS(1047), + [anon_sym_DOT_DOT] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1047), + [anon_sym_return] = ACTIONS(1047), + [anon_sym_source] = ACTIONS(1047), + [anon_sym_source_DASHenv] = ACTIONS(1047), + [anon_sym_register] = ACTIONS(1047), + [anon_sym_hide] = ACTIONS(1047), + [anon_sym_hide_DASHenv] = ACTIONS(1047), + [anon_sym_overlay] = ACTIONS(1047), + [anon_sym_as] = ACTIONS(1047), + [anon_sym_where] = ACTIONS(1047), + [anon_sym_not] = ACTIONS(1047), + [anon_sym_DOT_DOT2] = ACTIONS(1047), + [anon_sym_DOT] = ACTIONS(1047), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1047), + [anon_sym_DOT_DOT_LT] = ACTIONS(1047), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1049), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1049), + [anon_sym_null] = ACTIONS(1047), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [aux_sym__val_number_decimal_token1] = ACTIONS(1047), + [aux_sym__val_number_decimal_token2] = ACTIONS(1047), + [anon_sym_DOT2] = ACTIONS(1047), + [aux_sym__val_number_decimal_token3] = ACTIONS(1047), + [aux_sym__val_number_token1] = ACTIONS(1047), + [aux_sym__val_number_token2] = ACTIONS(1047), + [aux_sym__val_number_token3] = ACTIONS(1047), + [aux_sym__val_number_token4] = ACTIONS(1047), + [aux_sym__val_number_token5] = ACTIONS(1047), + [aux_sym__val_number_token6] = ACTIONS(1047), + [anon_sym_0b] = ACTIONS(1047), + [anon_sym_0o] = ACTIONS(1047), + [anon_sym_0x] = ACTIONS(1047), + [sym_val_date] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1047), + [sym__str_single_quotes] = ACTIONS(1047), + [sym__str_back_ticks] = ACTIONS(1047), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1047), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1047), + [anon_sym_CARET] = ACTIONS(1047), [anon_sym_POUND] = ACTIONS(113), }, - [935] = { - [sym_comment] = STATE(935), - [anon_sym_export] = ACTIONS(1410), - [anon_sym_alias] = ACTIONS(1410), - [anon_sym_let] = ACTIONS(1410), - [anon_sym_let_DASHenv] = ACTIONS(1410), - [anon_sym_mut] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [sym_cmd_identifier] = ACTIONS(1410), - [anon_sym_def] = ACTIONS(1410), - [anon_sym_export_DASHenv] = ACTIONS(1410), - [anon_sym_extern] = ACTIONS(1410), - [anon_sym_module] = ACTIONS(1410), - [anon_sym_use] = ACTIONS(1410), - [anon_sym_LPAREN] = ACTIONS(1410), - [anon_sym_DOLLAR] = ACTIONS(1410), - [anon_sym_error] = ACTIONS(1410), - [anon_sym_list] = ACTIONS(1410), - [anon_sym_GT] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_in] = ACTIONS(1410), - [anon_sym_loop] = ACTIONS(1410), - [anon_sym_make] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_else] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_RBRACE] = ACTIONS(1410), - [anon_sym_try] = ACTIONS(1410), - [anon_sym_catch] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_source] = ACTIONS(1410), - [anon_sym_source_DASHenv] = ACTIONS(1410), - [anon_sym_register] = ACTIONS(1410), - [anon_sym_hide] = ACTIONS(1410), - [anon_sym_hide_DASHenv] = ACTIONS(1410), - [anon_sym_overlay] = ACTIONS(1410), - [anon_sym_new] = ACTIONS(1410), - [anon_sym_as] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1410), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_SLASH] = ACTIONS(1410), - [anon_sym_mod] = ACTIONS(1410), - [anon_sym_SLASH_SLASH] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_bit_DASHshl] = ACTIONS(1410), - [anon_sym_bit_DASHshr] = ACTIONS(1410), - [anon_sym_EQ_EQ] = ACTIONS(1410), - [anon_sym_BANG_EQ] = ACTIONS(1410), - [anon_sym_LT2] = ACTIONS(1410), - [anon_sym_LT_EQ] = ACTIONS(1410), - [anon_sym_GT_EQ] = ACTIONS(1410), - [anon_sym_not_DASHin] = ACTIONS(1410), - [anon_sym_starts_DASHwith] = ACTIONS(1410), - [anon_sym_ends_DASHwith] = ACTIONS(1410), - [anon_sym_EQ_TILDE] = ACTIONS(1410), - [anon_sym_BANG_TILDE] = ACTIONS(1410), - [anon_sym_bit_DASHand] = ACTIONS(1410), - [anon_sym_bit_DASHxor] = ACTIONS(1410), - [anon_sym_bit_DASHor] = ACTIONS(1410), - [anon_sym_and] = ACTIONS(1410), - [anon_sym_xor] = ACTIONS(1410), - [anon_sym_or] = ACTIONS(1410), - [aux_sym__val_number_decimal_token1] = ACTIONS(1410), - [aux_sym__val_number_decimal_token2] = ACTIONS(1410), - [anon_sym_DOT2] = ACTIONS(1410), - [aux_sym__val_number_decimal_token3] = ACTIONS(1410), - [aux_sym__val_number_token1] = ACTIONS(1410), - [aux_sym__val_number_token2] = ACTIONS(1410), - [aux_sym__val_number_token3] = ACTIONS(1410), - [aux_sym__val_number_token4] = ACTIONS(1410), - [aux_sym__val_number_token5] = ACTIONS(1410), - [aux_sym__val_number_token6] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1410), - [sym__str_single_quotes] = ACTIONS(1410), - [sym__str_back_ticks] = ACTIONS(1410), - [sym__entry_separator] = ACTIONS(1412), - [aux_sym__record_key_token2] = ACTIONS(1410), + [1134] = { + [sym_comment] = STATE(1134), + [ts_builtin_sym_end] = ACTIONS(2364), + [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), + [anon_sym_SEMI] = ACTIONS(2362), + [sym_cmd_identifier] = ACTIONS(2362), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2362), + [anon_sym_LPAREN] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2362), + [anon_sym_error] = ACTIONS(2362), + [anon_sym_DASH_DASH] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_break] = ACTIONS(2362), + [anon_sym_continue] = ACTIONS(2362), + [anon_sym_for] = ACTIONS(2362), + [anon_sym_loop] = ACTIONS(2362), + [anon_sym_while] = ACTIONS(2362), + [anon_sym_do] = ACTIONS(2362), + [anon_sym_if] = ACTIONS(2362), + [anon_sym_match] = ACTIONS(2362), + [anon_sym_LBRACE] = ACTIONS(2362), + [anon_sym_DOT_DOT] = ACTIONS(2362), + [anon_sym_try] = 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_where] = ACTIONS(2362), + [anon_sym_not] = ACTIONS(2362), + [anon_sym_LPAREN2] = ACTIONS(2364), + [anon_sym_DOT] = ACTIONS(2362), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2362), + [anon_sym_DOT_DOT_LT] = ACTIONS(2362), + [aux_sym__immediate_decimal_token2] = ACTIONS(3761), + [anon_sym_null] = ACTIONS(2362), + [anon_sym_true] = ACTIONS(2362), + [anon_sym_false] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2362), + [aux_sym__val_number_decimal_token2] = ACTIONS(2362), + [anon_sym_DOT2] = ACTIONS(2362), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2362), + [anon_sym_0o] = ACTIONS(2362), + [anon_sym_0x] = ACTIONS(2362), + [sym_val_date] = 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_CARET] = ACTIONS(2362), + [aux_sym_unquoted_token2] = ACTIONS(2362), [anon_sym_POUND] = ACTIONS(113), }, - [936] = { - [sym_comment] = STATE(936), - [anon_sym_export] = ACTIONS(1286), - [anon_sym_alias] = ACTIONS(1286), - [anon_sym_let] = ACTIONS(1286), - [anon_sym_let_DASHenv] = ACTIONS(1286), - [anon_sym_mut] = ACTIONS(1286), - [anon_sym_const] = ACTIONS(1286), - [sym_cmd_identifier] = ACTIONS(1286), - [anon_sym_def] = ACTIONS(1286), - [anon_sym_export_DASHenv] = ACTIONS(1286), - [anon_sym_extern] = ACTIONS(1286), - [anon_sym_module] = ACTIONS(1286), - [anon_sym_use] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(1286), - [anon_sym_DOLLAR] = ACTIONS(1286), - [anon_sym_error] = ACTIONS(1286), - [anon_sym_list] = ACTIONS(1286), - [anon_sym_GT] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1286), - [anon_sym_break] = ACTIONS(1286), - [anon_sym_continue] = ACTIONS(1286), - [anon_sym_for] = ACTIONS(1286), - [anon_sym_in] = ACTIONS(1286), - [anon_sym_loop] = ACTIONS(1286), - [anon_sym_make] = ACTIONS(1286), - [anon_sym_while] = ACTIONS(1286), - [anon_sym_do] = ACTIONS(1286), - [anon_sym_if] = ACTIONS(1286), - [anon_sym_else] = ACTIONS(1286), - [anon_sym_match] = ACTIONS(1286), - [anon_sym_RBRACE] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(1286), - [anon_sym_catch] = ACTIONS(1286), - [anon_sym_return] = ACTIONS(1286), - [anon_sym_source] = ACTIONS(1286), - [anon_sym_source_DASHenv] = ACTIONS(1286), - [anon_sym_register] = ACTIONS(1286), - [anon_sym_hide] = ACTIONS(1286), - [anon_sym_hide_DASHenv] = ACTIONS(1286), - [anon_sym_overlay] = ACTIONS(1286), - [anon_sym_new] = ACTIONS(1286), - [anon_sym_as] = ACTIONS(1286), - [anon_sym_STAR] = ACTIONS(1286), - [anon_sym_STAR_STAR] = ACTIONS(1286), - [anon_sym_PLUS_PLUS] = ACTIONS(1286), - [anon_sym_SLASH] = ACTIONS(1286), - [anon_sym_mod] = ACTIONS(1286), - [anon_sym_SLASH_SLASH] = ACTIONS(1286), - [anon_sym_PLUS] = ACTIONS(1286), - [anon_sym_bit_DASHshl] = ACTIONS(1286), - [anon_sym_bit_DASHshr] = ACTIONS(1286), - [anon_sym_EQ_EQ] = ACTIONS(1286), - [anon_sym_BANG_EQ] = ACTIONS(1286), - [anon_sym_LT2] = ACTIONS(1286), - [anon_sym_LT_EQ] = ACTIONS(1286), - [anon_sym_GT_EQ] = ACTIONS(1286), - [anon_sym_not_DASHin] = ACTIONS(1286), - [anon_sym_starts_DASHwith] = ACTIONS(1286), - [anon_sym_ends_DASHwith] = ACTIONS(1286), - [anon_sym_EQ_TILDE] = ACTIONS(1286), - [anon_sym_BANG_TILDE] = ACTIONS(1286), - [anon_sym_bit_DASHand] = ACTIONS(1286), - [anon_sym_bit_DASHxor] = ACTIONS(1286), - [anon_sym_bit_DASHor] = ACTIONS(1286), - [anon_sym_and] = ACTIONS(1286), - [anon_sym_xor] = ACTIONS(1286), - [anon_sym_or] = ACTIONS(1286), - [aux_sym__val_number_decimal_token1] = ACTIONS(1286), - [aux_sym__val_number_decimal_token2] = ACTIONS(1286), - [anon_sym_DOT2] = ACTIONS(1286), - [aux_sym__val_number_decimal_token3] = ACTIONS(1286), - [aux_sym__val_number_token1] = ACTIONS(1286), - [aux_sym__val_number_token2] = ACTIONS(1286), - [aux_sym__val_number_token3] = ACTIONS(1286), - [aux_sym__val_number_token4] = ACTIONS(1286), - [aux_sym__val_number_token5] = ACTIONS(1286), - [aux_sym__val_number_token6] = ACTIONS(1286), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym__str_single_quotes] = ACTIONS(1286), - [sym__str_back_ticks] = ACTIONS(1286), - [sym__entry_separator] = ACTIONS(1288), - [aux_sym__record_key_token2] = ACTIONS(1286), + [1135] = { + [sym_comment] = STATE(1135), + [ts_builtin_sym_end] = ACTIONS(2231), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_alias] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_let_DASHenv] = ACTIONS(2229), + [anon_sym_mut] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2229), + [sym_cmd_identifier] = ACTIONS(2229), + [anon_sym_LF] = ACTIONS(2231), + [anon_sym_def] = ACTIONS(2229), + [anon_sym_export_DASHenv] = ACTIONS(2229), + [anon_sym_extern] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2229), + [anon_sym_error] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_loop] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_source] = ACTIONS(2229), + [anon_sym_source_DASHenv] = ACTIONS(2229), + [anon_sym_register] = ACTIONS(2229), + [anon_sym_hide] = ACTIONS(2229), + [anon_sym_hide_DASHenv] = ACTIONS(2229), + [anon_sym_overlay] = ACTIONS(2229), + [anon_sym_as] = ACTIONS(2229), + [anon_sym_where] = ACTIONS(2229), + [anon_sym_not] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2229), + [anon_sym_DOT_DOT_LT] = ACTIONS(2229), + [aux_sym__immediate_decimal_token1] = ACTIONS(3763), + [aux_sym__immediate_decimal_token2] = ACTIONS(3765), + [anon_sym_null] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [aux_sym__val_number_decimal_token1] = ACTIONS(2229), + [aux_sym__val_number_decimal_token2] = ACTIONS(2229), + [anon_sym_DOT2] = ACTIONS(2229), + [aux_sym__val_number_decimal_token3] = ACTIONS(2229), + [aux_sym__val_number_token1] = ACTIONS(2229), + [aux_sym__val_number_token2] = ACTIONS(2229), + [aux_sym__val_number_token3] = ACTIONS(2229), + [aux_sym__val_number_token4] = ACTIONS(2229), + [aux_sym__val_number_token5] = ACTIONS(2229), + [aux_sym__val_number_token6] = ACTIONS(2229), + [anon_sym_0b] = ACTIONS(2229), + [anon_sym_0o] = ACTIONS(2229), + [anon_sym_0x] = ACTIONS(2229), + [sym_val_date] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2229), + [anon_sym_CARET] = ACTIONS(2229), + [aux_sym_unquoted_token2] = ACTIONS(2229), [anon_sym_POUND] = ACTIONS(113), }, - [937] = { - [sym_pipeline] = STATE(2962), - [sym_pipeline_last] = STATE(9810), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(5342), - [sym__var] = STATE(4755), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), - [sym_comment] = STATE(937), - [aux_sym_pipeline_repeat1] = STATE(1033), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(1762), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_where] = ACTIONS(187), - [anon_sym_not] = ACTIONS(191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(193), - [anon_sym_DOT_DOT_LT] = ACTIONS(193), - [anon_sym_null] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [aux_sym__val_number_decimal_token1] = ACTIONS(199), - [aux_sym__val_number_decimal_token2] = ACTIONS(201), - [anon_sym_DOT2] = ACTIONS(203), - [aux_sym__val_number_decimal_token3] = ACTIONS(205), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(209), - [aux_sym__val_number_token5] = ACTIONS(207), - [aux_sym__val_number_token6] = ACTIONS(209), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_POUND] = ACTIONS(3), - }, - [938] = { - [sym_comment] = STATE(938), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_alias] = ACTIONS(1190), - [anon_sym_let] = ACTIONS(1190), - [anon_sym_let_DASHenv] = ACTIONS(1190), - [anon_sym_mut] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1190), - [sym_cmd_identifier] = ACTIONS(1190), - [anon_sym_def] = ACTIONS(1190), - [anon_sym_export_DASHenv] = ACTIONS(1190), - [anon_sym_extern] = ACTIONS(1190), - [anon_sym_module] = ACTIONS(1190), - [anon_sym_use] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(1190), - [anon_sym_DOLLAR] = ACTIONS(1190), - [anon_sym_error] = ACTIONS(1190), - [anon_sym_list] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1190), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_in] = ACTIONS(1190), - [anon_sym_loop] = ACTIONS(1190), - [anon_sym_make] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [anon_sym_do] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_else] = ACTIONS(1190), - [anon_sym_match] = ACTIONS(1190), - [anon_sym_RBRACE] = ACTIONS(1190), - [anon_sym_try] = ACTIONS(1190), - [anon_sym_catch] = ACTIONS(1190), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_source] = ACTIONS(1190), - [anon_sym_source_DASHenv] = ACTIONS(1190), - [anon_sym_register] = ACTIONS(1190), - [anon_sym_hide] = ACTIONS(1190), - [anon_sym_hide_DASHenv] = ACTIONS(1190), - [anon_sym_overlay] = ACTIONS(1190), - [anon_sym_new] = ACTIONS(1190), - [anon_sym_as] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1190), - [anon_sym_STAR_STAR] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1190), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_mod] = ACTIONS(1190), - [anon_sym_SLASH_SLASH] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_bit_DASHshl] = ACTIONS(1190), - [anon_sym_bit_DASHshr] = ACTIONS(1190), - [anon_sym_EQ_EQ] = ACTIONS(1190), - [anon_sym_BANG_EQ] = ACTIONS(1190), - [anon_sym_LT2] = ACTIONS(1190), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_not_DASHin] = ACTIONS(1190), - [anon_sym_starts_DASHwith] = ACTIONS(1190), - [anon_sym_ends_DASHwith] = ACTIONS(1190), - [anon_sym_EQ_TILDE] = ACTIONS(1190), - [anon_sym_BANG_TILDE] = ACTIONS(1190), - [anon_sym_bit_DASHand] = ACTIONS(1190), - [anon_sym_bit_DASHxor] = ACTIONS(1190), - [anon_sym_bit_DASHor] = ACTIONS(1190), - [anon_sym_and] = ACTIONS(1190), - [anon_sym_xor] = ACTIONS(1190), - [anon_sym_or] = ACTIONS(1190), - [aux_sym__val_number_decimal_token1] = ACTIONS(1190), - [aux_sym__val_number_decimal_token2] = ACTIONS(1190), - [anon_sym_DOT2] = ACTIONS(1190), - [aux_sym__val_number_decimal_token3] = ACTIONS(1190), - [aux_sym__val_number_token1] = ACTIONS(1190), - [aux_sym__val_number_token2] = ACTIONS(1190), - [aux_sym__val_number_token3] = ACTIONS(1190), - [aux_sym__val_number_token4] = ACTIONS(1190), - [aux_sym__val_number_token5] = ACTIONS(1190), - [aux_sym__val_number_token6] = ACTIONS(1190), - [anon_sym_DQUOTE] = ACTIONS(1190), - [sym__str_single_quotes] = ACTIONS(1190), - [sym__str_back_ticks] = ACTIONS(1190), - [sym__entry_separator] = ACTIONS(1192), - [aux_sym__record_key_token2] = ACTIONS(1190), + [1136] = { + [sym_comment] = STATE(1136), + [anon_sym_export] = ACTIONS(3767), + [anon_sym_alias] = ACTIONS(3767), + [anon_sym_let] = ACTIONS(3767), + [anon_sym_let_DASHenv] = ACTIONS(3767), + [anon_sym_mut] = ACTIONS(3767), + [anon_sym_const] = ACTIONS(3767), + [anon_sym_SEMI] = ACTIONS(3767), + [sym_cmd_identifier] = ACTIONS(3767), + [anon_sym_LF] = ACTIONS(3769), + [anon_sym_def] = ACTIONS(3767), + [anon_sym_export_DASHenv] = ACTIONS(3767), + [anon_sym_extern] = ACTIONS(3767), + [anon_sym_module] = ACTIONS(3767), + [anon_sym_use] = ACTIONS(3767), + [anon_sym_LBRACK] = ACTIONS(3767), + [anon_sym_LPAREN] = ACTIONS(3767), + [anon_sym_RPAREN] = ACTIONS(3767), + [anon_sym_DOLLAR] = ACTIONS(3767), + [anon_sym_error] = ACTIONS(3767), + [anon_sym_DASH_DASH] = ACTIONS(3767), + [anon_sym_DASH] = ACTIONS(3767), + [anon_sym_break] = ACTIONS(3767), + [anon_sym_continue] = ACTIONS(3767), + [anon_sym_for] = ACTIONS(3767), + [anon_sym_loop] = ACTIONS(3767), + [anon_sym_while] = ACTIONS(3767), + [anon_sym_do] = ACTIONS(3767), + [anon_sym_if] = ACTIONS(3767), + [anon_sym_match] = ACTIONS(3767), + [anon_sym_LBRACE] = ACTIONS(3767), + [anon_sym_RBRACE] = ACTIONS(3767), + [anon_sym_DOT_DOT] = ACTIONS(3767), + [anon_sym_try] = ACTIONS(3767), + [anon_sym_return] = ACTIONS(3767), + [anon_sym_source] = ACTIONS(3767), + [anon_sym_source_DASHenv] = ACTIONS(3767), + [anon_sym_register] = ACTIONS(3767), + [anon_sym_hide] = ACTIONS(3767), + [anon_sym_hide_DASHenv] = ACTIONS(3767), + [anon_sym_overlay] = ACTIONS(3767), + [anon_sym_as] = ACTIONS(3767), + [anon_sym_where] = ACTIONS(3767), + [anon_sym_not] = ACTIONS(3767), + [anon_sym_DOT_DOT2] = ACTIONS(3767), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3767), + [anon_sym_DOT_DOT_LT] = ACTIONS(3767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3769), + [anon_sym_null] = ACTIONS(3767), + [anon_sym_true] = ACTIONS(3767), + [anon_sym_false] = ACTIONS(3767), + [aux_sym__val_number_decimal_token1] = ACTIONS(3767), + [aux_sym__val_number_decimal_token2] = ACTIONS(3767), + [anon_sym_DOT2] = ACTIONS(3767), + [aux_sym__val_number_decimal_token3] = ACTIONS(3767), + [aux_sym__val_number_token1] = ACTIONS(3767), + [aux_sym__val_number_token2] = ACTIONS(3767), + [aux_sym__val_number_token3] = ACTIONS(3767), + [aux_sym__val_number_token4] = ACTIONS(3767), + [aux_sym__val_number_token5] = ACTIONS(3767), + [aux_sym__val_number_token6] = ACTIONS(3767), + [anon_sym_0b] = ACTIONS(3767), + [anon_sym_0o] = ACTIONS(3767), + [anon_sym_0x] = ACTIONS(3767), + [sym_val_date] = ACTIONS(3767), + [anon_sym_DQUOTE] = ACTIONS(3767), + [sym__str_single_quotes] = ACTIONS(3767), + [sym__str_back_ticks] = ACTIONS(3767), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3767), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3767), + [anon_sym_CARET] = ACTIONS(3767), [anon_sym_POUND] = ACTIONS(113), }, - [939] = { - [sym_pipeline] = STATE(2963), - [sym_pipeline_last] = STATE(9811), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(5342), - [sym__var] = STATE(4755), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), - [sym_comment] = STATE(939), - [aux_sym_pipeline_repeat1] = STATE(1033), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(1762), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_where] = ACTIONS(187), - [anon_sym_not] = ACTIONS(191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(193), - [anon_sym_DOT_DOT_LT] = ACTIONS(193), - [anon_sym_null] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [aux_sym__val_number_decimal_token1] = ACTIONS(199), - [aux_sym__val_number_decimal_token2] = ACTIONS(201), - [anon_sym_DOT2] = ACTIONS(203), - [aux_sym__val_number_decimal_token3] = ACTIONS(205), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(209), - [aux_sym__val_number_token5] = ACTIONS(207), - [aux_sym__val_number_token6] = ACTIONS(209), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_POUND] = ACTIONS(3), + [1137] = { + [sym_cell_path] = STATE(1915), + [sym_path] = STATE(1107), + [sym_comment] = STATE(1137), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_COMMA] = ACTIONS(1057), + [anon_sym_RBRACK] = ACTIONS(1057), + [anon_sym_LPAREN] = ACTIONS(1057), + [anon_sym_DOLLAR] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_in] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_mod] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_PLUS] = ACTIONS(1057), + [anon_sym_bit_DASHshl] = ACTIONS(1057), + [anon_sym_bit_DASHshr] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1057), + [anon_sym_LT2] = ACTIONS(1057), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_not_DASHin] = ACTIONS(1057), + [anon_sym_starts_DASHwith] = ACTIONS(1057), + [anon_sym_ends_DASHwith] = ACTIONS(1057), + [anon_sym_EQ_TILDE] = ACTIONS(1057), + [anon_sym_BANG_TILDE] = ACTIONS(1057), + [anon_sym_bit_DASHand] = ACTIONS(1057), + [anon_sym_bit_DASHxor] = ACTIONS(1057), + [anon_sym_bit_DASHor] = ACTIONS(1057), + [anon_sym_and] = ACTIONS(1057), + [anon_sym_xor] = ACTIONS(1057), + [anon_sym_or] = ACTIONS(1057), + [anon_sym_DOT] = ACTIONS(3689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1057), + [anon_sym_DOT_DOT_LT] = ACTIONS(1057), + [anon_sym_null] = ACTIONS(1057), + [anon_sym_true] = ACTIONS(1057), + [anon_sym_false] = ACTIONS(1057), + [aux_sym__val_number_decimal_token1] = ACTIONS(1057), + [aux_sym__val_number_decimal_token2] = ACTIONS(1057), + [anon_sym_DOT2] = ACTIONS(1057), + [aux_sym__val_number_decimal_token3] = ACTIONS(1057), + [aux_sym__val_number_token1] = ACTIONS(1057), + [aux_sym__val_number_token2] = ACTIONS(1057), + [aux_sym__val_number_token3] = ACTIONS(1057), + [aux_sym__val_number_token4] = ACTIONS(1057), + [aux_sym__val_number_token5] = ACTIONS(1057), + [aux_sym__val_number_token6] = ACTIONS(1057), + [anon_sym_0b] = ACTIONS(1057), + [anon_sym_0o] = ACTIONS(1057), + [anon_sym_0x] = ACTIONS(1057), + [sym_val_date] = ACTIONS(1057), + [anon_sym_DQUOTE] = ACTIONS(1057), + [sym__str_single_quotes] = ACTIONS(1057), + [sym__str_back_ticks] = ACTIONS(1057), + [sym__entry_separator] = ACTIONS(1059), + [anon_sym_err_GT] = ACTIONS(1057), + [anon_sym_out_GT] = ACTIONS(1057), + [anon_sym_e_GT] = ACTIONS(1057), + [anon_sym_o_GT] = ACTIONS(1057), + [anon_sym_err_PLUSout_GT] = ACTIONS(1057), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1057), + [anon_sym_o_PLUSe_GT] = ACTIONS(1057), + [anon_sym_e_PLUSo_GT] = ACTIONS(1057), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(113), }, - [940] = { - [sym_comment] = STATE(940), - [anon_sym_export] = ACTIONS(1298), - [anon_sym_alias] = ACTIONS(1298), - [anon_sym_let] = ACTIONS(1298), - [anon_sym_let_DASHenv] = ACTIONS(1298), - [anon_sym_mut] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [sym_cmd_identifier] = ACTIONS(1298), - [anon_sym_def] = ACTIONS(1298), - [anon_sym_export_DASHenv] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_module] = ACTIONS(1298), - [anon_sym_use] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1298), - [anon_sym_DOLLAR] = ACTIONS(1298), - [anon_sym_error] = ACTIONS(1298), - [anon_sym_list] = ACTIONS(1298), - [anon_sym_GT] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_in] = ACTIONS(1298), - [anon_sym_loop] = ACTIONS(1298), - [anon_sym_make] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_match] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1298), - [anon_sym_try] = ACTIONS(1298), - [anon_sym_catch] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_source] = ACTIONS(1298), - [anon_sym_source_DASHenv] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_hide] = ACTIONS(1298), - [anon_sym_hide_DASHenv] = ACTIONS(1298), - [anon_sym_overlay] = ACTIONS(1298), - [anon_sym_new] = ACTIONS(1298), - [anon_sym_as] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_STAR_STAR] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1298), - [anon_sym_SLASH] = ACTIONS(1298), - [anon_sym_mod] = ACTIONS(1298), - [anon_sym_SLASH_SLASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_bit_DASHshl] = ACTIONS(1298), - [anon_sym_bit_DASHshr] = ACTIONS(1298), - [anon_sym_EQ_EQ] = ACTIONS(1298), - [anon_sym_BANG_EQ] = ACTIONS(1298), - [anon_sym_LT2] = ACTIONS(1298), - [anon_sym_LT_EQ] = ACTIONS(1298), - [anon_sym_GT_EQ] = ACTIONS(1298), - [anon_sym_not_DASHin] = ACTIONS(1298), - [anon_sym_starts_DASHwith] = ACTIONS(1298), - [anon_sym_ends_DASHwith] = ACTIONS(1298), - [anon_sym_EQ_TILDE] = ACTIONS(1298), - [anon_sym_BANG_TILDE] = ACTIONS(1298), - [anon_sym_bit_DASHand] = ACTIONS(1298), - [anon_sym_bit_DASHxor] = ACTIONS(1298), - [anon_sym_bit_DASHor] = ACTIONS(1298), - [anon_sym_and] = ACTIONS(1298), - [anon_sym_xor] = ACTIONS(1298), - [anon_sym_or] = ACTIONS(1298), - [aux_sym__val_number_decimal_token1] = ACTIONS(1298), - [aux_sym__val_number_decimal_token2] = ACTIONS(1298), - [anon_sym_DOT2] = ACTIONS(1298), - [aux_sym__val_number_decimal_token3] = 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(1298), - [aux_sym__val_number_token5] = ACTIONS(1298), - [aux_sym__val_number_token6] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1298), - [sym__str_single_quotes] = ACTIONS(1298), - [sym__str_back_ticks] = ACTIONS(1298), - [sym__entry_separator] = ACTIONS(1300), - [aux_sym__record_key_token2] = ACTIONS(1298), + [1138] = { + [sym_comment] = STATE(1138), + [anon_sym_export] = ACTIONS(3354), + [anon_sym_alias] = ACTIONS(3354), + [anon_sym_let] = ACTIONS(3354), + [anon_sym_let_DASHenv] = ACTIONS(3354), + [anon_sym_mut] = ACTIONS(3354), + [anon_sym_const] = ACTIONS(3354), + [anon_sym_SEMI] = ACTIONS(3354), + [sym_cmd_identifier] = ACTIONS(3354), + [anon_sym_LF] = ACTIONS(3356), + [anon_sym_def] = ACTIONS(3354), + [anon_sym_export_DASHenv] = ACTIONS(3354), + [anon_sym_extern] = ACTIONS(3354), + [anon_sym_module] = ACTIONS(3354), + [anon_sym_use] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3354), + [anon_sym_RPAREN] = ACTIONS(3354), + [anon_sym_DOLLAR] = ACTIONS(3354), + [anon_sym_error] = ACTIONS(3354), + [anon_sym_DASH_DASH] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_loop] = ACTIONS(3354), + [anon_sym_while] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_match] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3354), + [anon_sym_RBRACE] = ACTIONS(3354), + [anon_sym_DOT_DOT] = ACTIONS(3354), + [anon_sym_try] = ACTIONS(3354), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_source] = ACTIONS(3354), + [anon_sym_source_DASHenv] = ACTIONS(3354), + [anon_sym_register] = ACTIONS(3354), + [anon_sym_hide] = ACTIONS(3354), + [anon_sym_hide_DASHenv] = ACTIONS(3354), + [anon_sym_overlay] = ACTIONS(3354), + [anon_sym_as] = ACTIONS(3354), + [anon_sym_where] = ACTIONS(3354), + [anon_sym_not] = ACTIONS(3354), + [anon_sym_LPAREN2] = ACTIONS(3358), + [anon_sym_DOT] = ACTIONS(3362), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3354), + [anon_sym_DOT_DOT_LT] = ACTIONS(3354), + [anon_sym_null] = ACTIONS(3354), + [anon_sym_true] = ACTIONS(3354), + [anon_sym_false] = ACTIONS(3354), + [aux_sym__val_number_decimal_token1] = ACTIONS(3354), + [aux_sym__val_number_decimal_token2] = ACTIONS(3354), + [anon_sym_DOT2] = ACTIONS(3354), + [aux_sym__val_number_decimal_token3] = ACTIONS(3354), + [aux_sym__val_number_token1] = ACTIONS(3354), + [aux_sym__val_number_token2] = ACTIONS(3354), + [aux_sym__val_number_token3] = ACTIONS(3354), + [aux_sym__val_number_token4] = ACTIONS(3354), + [aux_sym__val_number_token5] = ACTIONS(3354), + [aux_sym__val_number_token6] = ACTIONS(3354), + [anon_sym_0b] = ACTIONS(3354), + [anon_sym_0o] = ACTIONS(3354), + [anon_sym_0x] = ACTIONS(3354), + [sym_val_date] = ACTIONS(3354), + [anon_sym_DQUOTE] = ACTIONS(3354), + [sym__str_single_quotes] = ACTIONS(3354), + [sym__str_back_ticks] = ACTIONS(3354), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3354), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3354), + [anon_sym_CARET] = ACTIONS(3354), + [aux_sym_unquoted_token2] = ACTIONS(3362), [anon_sym_POUND] = ACTIONS(113), }, - [941] = { - [sym_comment] = STATE(941), - [anon_sym_export] = ACTIONS(959), - [anon_sym_alias] = ACTIONS(959), - [anon_sym_let] = ACTIONS(959), - [anon_sym_let_DASHenv] = ACTIONS(959), - [anon_sym_mut] = ACTIONS(959), - [anon_sym_const] = ACTIONS(959), - [sym_cmd_identifier] = ACTIONS(959), - [anon_sym_def] = ACTIONS(959), - [anon_sym_export_DASHenv] = ACTIONS(959), - [anon_sym_extern] = ACTIONS(959), - [anon_sym_module] = ACTIONS(959), - [anon_sym_use] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(961), - [anon_sym_DOLLAR] = ACTIONS(961), - [anon_sym_error] = ACTIONS(959), - [anon_sym_list] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_break] = ACTIONS(959), - [anon_sym_continue] = ACTIONS(959), - [anon_sym_for] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_loop] = ACTIONS(959), - [anon_sym_make] = ACTIONS(959), - [anon_sym_while] = ACTIONS(959), - [anon_sym_do] = ACTIONS(959), - [anon_sym_if] = ACTIONS(959), - [anon_sym_else] = ACTIONS(959), - [anon_sym_match] = ACTIONS(959), - [anon_sym_RBRACE] = ACTIONS(961), - [anon_sym_try] = ACTIONS(959), - [anon_sym_catch] = ACTIONS(959), - [anon_sym_return] = ACTIONS(959), - [anon_sym_source] = ACTIONS(959), - [anon_sym_source_DASHenv] = ACTIONS(959), - [anon_sym_register] = ACTIONS(959), - [anon_sym_hide] = ACTIONS(959), - [anon_sym_hide_DASHenv] = ACTIONS(959), - [anon_sym_overlay] = ACTIONS(959), - [anon_sym_new] = ACTIONS(959), - [anon_sym_as] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(959), - [anon_sym_SLASH_SLASH] = ACTIONS(961), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(959), - [anon_sym_bit_DASHshr] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(961), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_not_DASHin] = ACTIONS(959), - [anon_sym_starts_DASHwith] = ACTIONS(959), - [anon_sym_ends_DASHwith] = ACTIONS(959), - [anon_sym_EQ_TILDE] = ACTIONS(961), - [anon_sym_BANG_TILDE] = ACTIONS(961), - [anon_sym_bit_DASHand] = ACTIONS(959), - [anon_sym_bit_DASHxor] = ACTIONS(959), - [anon_sym_bit_DASHor] = ACTIONS(959), - [anon_sym_and] = ACTIONS(959), - [anon_sym_xor] = ACTIONS(959), - [anon_sym_or] = ACTIONS(959), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(961), - [anon_sym_DOT2] = ACTIONS(961), - [aux_sym__val_number_decimal_token3] = ACTIONS(961), - [aux_sym__val_number_token1] = ACTIONS(961), - [aux_sym__val_number_token2] = ACTIONS(961), - [aux_sym__val_number_token3] = ACTIONS(961), - [aux_sym__val_number_token4] = ACTIONS(959), - [aux_sym__val_number_token5] = ACTIONS(961), - [aux_sym__val_number_token6] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(961), - [sym__str_single_quotes] = ACTIONS(961), - [sym__str_back_ticks] = ACTIONS(961), - [aux_sym__record_key_token2] = ACTIONS(959), - [aux_sym_unquoted_token5] = ACTIONS(1586), - [anon_sym_POUND] = ACTIONS(3), + [1139] = { + [sym_cell_path] = STATE(1385), + [sym_path] = STATE(1107), + [sym_comment] = STATE(1139), + [anon_sym_LBRACK] = ACTIONS(1051), + [anon_sym_COMMA] = ACTIONS(1051), + [anon_sym_RBRACK] = ACTIONS(1051), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_DOLLAR] = ACTIONS(1051), + [anon_sym_GT] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_in] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(1051), + [anon_sym_DOT_DOT] = ACTIONS(1051), + [anon_sym_STAR] = ACTIONS(1051), + [anon_sym_STAR_STAR] = ACTIONS(1051), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_mod] = ACTIONS(1051), + [anon_sym_SLASH_SLASH] = ACTIONS(1051), + [anon_sym_PLUS] = ACTIONS(1051), + [anon_sym_bit_DASHshl] = ACTIONS(1051), + [anon_sym_bit_DASHshr] = ACTIONS(1051), + [anon_sym_EQ_EQ] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1051), + [anon_sym_LT2] = ACTIONS(1051), + [anon_sym_LT_EQ] = ACTIONS(1051), + [anon_sym_GT_EQ] = ACTIONS(1051), + [anon_sym_not_DASHin] = ACTIONS(1051), + [anon_sym_starts_DASHwith] = ACTIONS(1051), + [anon_sym_ends_DASHwith] = ACTIONS(1051), + [anon_sym_EQ_TILDE] = ACTIONS(1051), + [anon_sym_BANG_TILDE] = ACTIONS(1051), + [anon_sym_bit_DASHand] = ACTIONS(1051), + [anon_sym_bit_DASHxor] = ACTIONS(1051), + [anon_sym_bit_DASHor] = ACTIONS(1051), + [anon_sym_and] = ACTIONS(1051), + [anon_sym_xor] = ACTIONS(1051), + [anon_sym_or] = ACTIONS(1051), + [anon_sym_DOT] = ACTIONS(3689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1051), + [anon_sym_DOT_DOT_LT] = ACTIONS(1051), + [anon_sym_null] = ACTIONS(1051), + [anon_sym_true] = ACTIONS(1051), + [anon_sym_false] = ACTIONS(1051), + [aux_sym__val_number_decimal_token1] = ACTIONS(1051), + [aux_sym__val_number_decimal_token2] = ACTIONS(1051), + [anon_sym_DOT2] = ACTIONS(1051), + [aux_sym__val_number_decimal_token3] = ACTIONS(1051), + [aux_sym__val_number_token1] = ACTIONS(1051), + [aux_sym__val_number_token2] = ACTIONS(1051), + [aux_sym__val_number_token3] = ACTIONS(1051), + [aux_sym__val_number_token4] = ACTIONS(1051), + [aux_sym__val_number_token5] = ACTIONS(1051), + [aux_sym__val_number_token6] = ACTIONS(1051), + [anon_sym_0b] = ACTIONS(1051), + [anon_sym_0o] = ACTIONS(1051), + [anon_sym_0x] = ACTIONS(1051), + [sym_val_date] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(1051), + [sym__str_single_quotes] = ACTIONS(1051), + [sym__str_back_ticks] = ACTIONS(1051), + [sym__entry_separator] = ACTIONS(1053), + [anon_sym_err_GT] = ACTIONS(1051), + [anon_sym_out_GT] = ACTIONS(1051), + [anon_sym_e_GT] = ACTIONS(1051), + [anon_sym_o_GT] = ACTIONS(1051), + [anon_sym_err_PLUSout_GT] = ACTIONS(1051), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1051), + [anon_sym_o_PLUSe_GT] = ACTIONS(1051), + [anon_sym_e_PLUSo_GT] = ACTIONS(1051), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1051), + [anon_sym_POUND] = ACTIONS(113), }, - [942] = { - [sym_comment] = STATE(942), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_alias] = ACTIONS(1362), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_let_DASHenv] = ACTIONS(1362), - [anon_sym_mut] = ACTIONS(1362), - [anon_sym_const] = ACTIONS(1362), - [sym_cmd_identifier] = ACTIONS(1362), - [anon_sym_def] = ACTIONS(1362), - [anon_sym_export_DASHenv] = ACTIONS(1362), - [anon_sym_extern] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_use] = ACTIONS(1362), - [anon_sym_LPAREN] = ACTIONS(1362), - [anon_sym_DOLLAR] = ACTIONS(1362), - [anon_sym_error] = ACTIONS(1362), - [anon_sym_list] = ACTIONS(1362), - [anon_sym_GT] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_break] = ACTIONS(1362), - [anon_sym_continue] = ACTIONS(1362), - [anon_sym_for] = ACTIONS(1362), - [anon_sym_in] = ACTIONS(1362), - [anon_sym_loop] = ACTIONS(1362), - [anon_sym_make] = ACTIONS(1362), - [anon_sym_while] = ACTIONS(1362), - [anon_sym_do] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1362), - [anon_sym_else] = ACTIONS(1362), - [anon_sym_match] = ACTIONS(1362), - [anon_sym_RBRACE] = ACTIONS(1362), - [anon_sym_try] = ACTIONS(1362), - [anon_sym_catch] = ACTIONS(1362), - [anon_sym_return] = ACTIONS(1362), - [anon_sym_source] = ACTIONS(1362), - [anon_sym_source_DASHenv] = ACTIONS(1362), - [anon_sym_register] = ACTIONS(1362), - [anon_sym_hide] = ACTIONS(1362), - [anon_sym_hide_DASHenv] = ACTIONS(1362), - [anon_sym_overlay] = ACTIONS(1362), - [anon_sym_new] = ACTIONS(1362), - [anon_sym_as] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_STAR_STAR] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_SLASH] = ACTIONS(1362), - [anon_sym_mod] = ACTIONS(1362), - [anon_sym_SLASH_SLASH] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_bit_DASHshl] = ACTIONS(1362), - [anon_sym_bit_DASHshr] = ACTIONS(1362), - [anon_sym_EQ_EQ] = ACTIONS(1362), - [anon_sym_BANG_EQ] = ACTIONS(1362), - [anon_sym_LT2] = ACTIONS(1362), - [anon_sym_LT_EQ] = ACTIONS(1362), - [anon_sym_GT_EQ] = ACTIONS(1362), - [anon_sym_not_DASHin] = ACTIONS(1362), - [anon_sym_starts_DASHwith] = ACTIONS(1362), - [anon_sym_ends_DASHwith] = ACTIONS(1362), - [anon_sym_EQ_TILDE] = ACTIONS(1362), - [anon_sym_BANG_TILDE] = ACTIONS(1362), - [anon_sym_bit_DASHand] = ACTIONS(1362), - [anon_sym_bit_DASHxor] = ACTIONS(1362), - [anon_sym_bit_DASHor] = ACTIONS(1362), - [anon_sym_and] = ACTIONS(1362), - [anon_sym_xor] = ACTIONS(1362), - [anon_sym_or] = ACTIONS(1362), - [aux_sym__val_number_decimal_token1] = ACTIONS(1362), - [aux_sym__val_number_decimal_token2] = ACTIONS(1362), - [anon_sym_DOT2] = ACTIONS(1362), - [aux_sym__val_number_decimal_token3] = ACTIONS(1362), - [aux_sym__val_number_token1] = ACTIONS(1362), - [aux_sym__val_number_token2] = ACTIONS(1362), - [aux_sym__val_number_token3] = ACTIONS(1362), - [aux_sym__val_number_token4] = ACTIONS(1362), - [aux_sym__val_number_token5] = ACTIONS(1362), - [aux_sym__val_number_token6] = ACTIONS(1362), - [anon_sym_DQUOTE] = ACTIONS(1362), - [sym__str_single_quotes] = ACTIONS(1362), - [sym__str_back_ticks] = ACTIONS(1362), - [sym__entry_separator] = ACTIONS(1364), - [aux_sym__record_key_token2] = ACTIONS(1362), + [1140] = { + [sym_cell_path] = STATE(1519), + [sym_path] = STATE(1107), + [sym_comment] = STATE(1140), + [anon_sym_LBRACK] = ACTIONS(992), + [anon_sym_COMMA] = ACTIONS(992), + [anon_sym_RBRACK] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(992), + [anon_sym_DOLLAR] = ACTIONS(992), + [anon_sym_GT] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_in] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(992), + [anon_sym_DOT_DOT] = ACTIONS(992), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_STAR_STAR] = ACTIONS(992), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_SLASH] = ACTIONS(992), + [anon_sym_mod] = ACTIONS(992), + [anon_sym_SLASH_SLASH] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_bit_DASHshl] = ACTIONS(992), + [anon_sym_bit_DASHshr] = ACTIONS(992), + [anon_sym_EQ_EQ] = ACTIONS(992), + [anon_sym_BANG_EQ] = ACTIONS(992), + [anon_sym_LT2] = ACTIONS(992), + [anon_sym_LT_EQ] = ACTIONS(992), + [anon_sym_GT_EQ] = ACTIONS(992), + [anon_sym_not_DASHin] = ACTIONS(992), + [anon_sym_starts_DASHwith] = ACTIONS(992), + [anon_sym_ends_DASHwith] = ACTIONS(992), + [anon_sym_EQ_TILDE] = ACTIONS(992), + [anon_sym_BANG_TILDE] = ACTIONS(992), + [anon_sym_bit_DASHand] = ACTIONS(992), + [anon_sym_bit_DASHxor] = ACTIONS(992), + [anon_sym_bit_DASHor] = ACTIONS(992), + [anon_sym_and] = ACTIONS(992), + [anon_sym_xor] = ACTIONS(992), + [anon_sym_or] = ACTIONS(992), + [anon_sym_DOT] = ACTIONS(3689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(992), + [anon_sym_DOT_DOT_LT] = ACTIONS(992), + [anon_sym_null] = ACTIONS(992), + [anon_sym_true] = ACTIONS(992), + [anon_sym_false] = ACTIONS(992), + [aux_sym__val_number_decimal_token1] = ACTIONS(992), + [aux_sym__val_number_decimal_token2] = ACTIONS(992), + [anon_sym_DOT2] = ACTIONS(992), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(992), + [anon_sym_0o] = ACTIONS(992), + [anon_sym_0x] = ACTIONS(992), + [sym_val_date] = ACTIONS(992), + [anon_sym_DQUOTE] = ACTIONS(992), + [sym__str_single_quotes] = ACTIONS(992), + [sym__str_back_ticks] = ACTIONS(992), + [sym__entry_separator] = ACTIONS(994), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(992), [anon_sym_POUND] = ACTIONS(113), }, - [943] = { - [sym_comment] = STATE(943), - [anon_sym_export] = ACTIONS(1247), - [anon_sym_alias] = ACTIONS(1247), - [anon_sym_let] = ACTIONS(1247), - [anon_sym_let_DASHenv] = ACTIONS(1247), - [anon_sym_mut] = ACTIONS(1247), - [anon_sym_const] = ACTIONS(1247), - [sym_cmd_identifier] = ACTIONS(1247), - [anon_sym_def] = ACTIONS(1247), - [anon_sym_export_DASHenv] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1247), - [anon_sym_module] = ACTIONS(1247), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_LPAREN] = ACTIONS(1249), - [anon_sym_DOLLAR] = ACTIONS(1247), - [anon_sym_error] = ACTIONS(1247), - [anon_sym_list] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1247), - [anon_sym_break] = ACTIONS(1247), - [anon_sym_continue] = ACTIONS(1247), - [anon_sym_for] = ACTIONS(1247), - [anon_sym_in] = ACTIONS(1247), - [anon_sym_loop] = ACTIONS(1247), - [anon_sym_make] = ACTIONS(1247), - [anon_sym_while] = ACTIONS(1247), - [anon_sym_do] = ACTIONS(1247), - [anon_sym_if] = ACTIONS(1247), - [anon_sym_else] = ACTIONS(1247), - [anon_sym_match] = ACTIONS(1247), - [anon_sym_RBRACE] = ACTIONS(1249), - [anon_sym_try] = ACTIONS(1247), - [anon_sym_catch] = ACTIONS(1247), - [anon_sym_return] = ACTIONS(1247), - [anon_sym_source] = ACTIONS(1247), - [anon_sym_source_DASHenv] = ACTIONS(1247), - [anon_sym_register] = ACTIONS(1247), - [anon_sym_hide] = ACTIONS(1247), - [anon_sym_hide_DASHenv] = ACTIONS(1247), - [anon_sym_overlay] = ACTIONS(1247), - [anon_sym_new] = ACTIONS(1247), - [anon_sym_as] = ACTIONS(1247), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_STAR_STAR] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_mod] = ACTIONS(1247), - [anon_sym_SLASH_SLASH] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1247), - [anon_sym_bit_DASHshl] = ACTIONS(1247), - [anon_sym_bit_DASHshr] = ACTIONS(1247), - [anon_sym_EQ_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1247), - [anon_sym_LT2] = ACTIONS(1247), - [anon_sym_LT_EQ] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1247), - [anon_sym_not_DASHin] = ACTIONS(1247), - [anon_sym_starts_DASHwith] = ACTIONS(1247), - [anon_sym_ends_DASHwith] = ACTIONS(1247), - [anon_sym_EQ_TILDE] = ACTIONS(1247), - [anon_sym_BANG_TILDE] = ACTIONS(1247), - [anon_sym_bit_DASHand] = ACTIONS(1247), - [anon_sym_bit_DASHxor] = ACTIONS(1247), - [anon_sym_bit_DASHor] = ACTIONS(1247), - [anon_sym_and] = ACTIONS(1247), - [anon_sym_xor] = ACTIONS(1247), - [anon_sym_or] = ACTIONS(1247), - [aux_sym__val_number_decimal_token1] = ACTIONS(1247), - [aux_sym__val_number_decimal_token2] = ACTIONS(1247), - [anon_sym_DOT2] = ACTIONS(1247), - [aux_sym__val_number_decimal_token3] = ACTIONS(1247), - [aux_sym__val_number_token1] = ACTIONS(1247), - [aux_sym__val_number_token2] = ACTIONS(1247), - [aux_sym__val_number_token3] = ACTIONS(1247), - [aux_sym__val_number_token4] = ACTIONS(1247), - [aux_sym__val_number_token5] = ACTIONS(1247), - [aux_sym__val_number_token6] = ACTIONS(1247), - [anon_sym_DQUOTE] = ACTIONS(1249), - [sym__str_single_quotes] = ACTIONS(1249), - [sym__str_back_ticks] = ACTIONS(1249), - [aux_sym__record_key_token2] = ACTIONS(1247), - [aux_sym_unquoted_token6] = ACTIONS(1251), + [1141] = { + [sym_comment] = STATE(1141), + [anon_sym_SEMI] = ACTIONS(901), + [anon_sym_LF] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(901), + [anon_sym_LPAREN] = ACTIONS(901), + [anon_sym_RPAREN] = ACTIONS(901), + [anon_sym_PIPE] = ACTIONS(901), + [anon_sym_DOLLAR] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_DASH_DASH] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_in] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(901), + [anon_sym_RBRACE] = ACTIONS(901), + [anon_sym_DOT_DOT] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_STAR_STAR] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(901), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_mod] = ACTIONS(901), + [anon_sym_SLASH_SLASH] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_bit_DASHshl] = ACTIONS(901), + [anon_sym_bit_DASHshr] = ACTIONS(901), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT2] = ACTIONS(901), + [anon_sym_LT_EQ] = ACTIONS(901), + [anon_sym_GT_EQ] = ACTIONS(901), + [anon_sym_not_DASHin] = ACTIONS(901), + [anon_sym_starts_DASHwith] = ACTIONS(901), + [anon_sym_ends_DASHwith] = ACTIONS(901), + [anon_sym_EQ_TILDE] = ACTIONS(901), + [anon_sym_BANG_TILDE] = ACTIONS(901), + [anon_sym_bit_DASHand] = ACTIONS(901), + [anon_sym_bit_DASHxor] = ACTIONS(901), + [anon_sym_bit_DASHor] = ACTIONS(901), + [anon_sym_and] = ACTIONS(901), + [anon_sym_xor] = ACTIONS(901), + [anon_sym_or] = ACTIONS(901), + [anon_sym_not] = ACTIONS(901), + [anon_sym_DOT_DOT2] = ACTIONS(901), + [anon_sym_DOT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ] = ACTIONS(901), + [anon_sym_DOT_DOT_LT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(903), + [anon_sym_DOT_DOT_LT2] = ACTIONS(903), + [anon_sym_null] = ACTIONS(901), + [anon_sym_true] = ACTIONS(901), + [anon_sym_false] = ACTIONS(901), + [aux_sym__val_number_decimal_token1] = ACTIONS(901), + [aux_sym__val_number_decimal_token2] = ACTIONS(901), + [anon_sym_DOT2] = ACTIONS(901), + [aux_sym__val_number_decimal_token3] = ACTIONS(901), + [aux_sym__val_number_token1] = ACTIONS(901), + [aux_sym__val_number_token2] = ACTIONS(901), + [aux_sym__val_number_token3] = ACTIONS(901), + [aux_sym__val_number_token4] = ACTIONS(901), + [aux_sym__val_number_token5] = ACTIONS(901), + [aux_sym__val_number_token6] = ACTIONS(901), + [anon_sym_0b] = ACTIONS(901), + [sym_filesize_unit] = ACTIONS(901), + [sym_duration_unit] = ACTIONS(903), + [anon_sym_0o] = ACTIONS(901), + [anon_sym_0x] = ACTIONS(901), + [sym_val_date] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [sym__str_single_quotes] = ACTIONS(901), + [sym__str_back_ticks] = ACTIONS(901), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(901), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(901), + [aux_sym_unquoted_token5] = ACTIONS(901), [anon_sym_POUND] = ACTIONS(113), }, - [944] = { - [sym_comment] = STATE(944), - [anon_sym_export] = ACTIONS(1247), - [anon_sym_alias] = ACTIONS(1247), - [anon_sym_let] = ACTIONS(1247), - [anon_sym_let_DASHenv] = ACTIONS(1247), - [anon_sym_mut] = ACTIONS(1247), - [anon_sym_const] = ACTIONS(1247), - [sym_cmd_identifier] = ACTIONS(1247), - [anon_sym_def] = ACTIONS(1247), - [anon_sym_export_DASHenv] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1247), - [anon_sym_module] = ACTIONS(1247), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_DOLLAR] = ACTIONS(1247), - [anon_sym_error] = ACTIONS(1247), - [anon_sym_list] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1247), - [anon_sym_break] = ACTIONS(1247), - [anon_sym_continue] = ACTIONS(1247), - [anon_sym_for] = ACTIONS(1247), - [anon_sym_in] = ACTIONS(1247), - [anon_sym_loop] = ACTIONS(1247), - [anon_sym_make] = ACTIONS(1247), - [anon_sym_while] = ACTIONS(1247), - [anon_sym_do] = ACTIONS(1247), - [anon_sym_if] = ACTIONS(1247), - [anon_sym_else] = ACTIONS(1247), - [anon_sym_match] = ACTIONS(1247), - [anon_sym_RBRACE] = ACTIONS(1247), - [anon_sym_try] = ACTIONS(1247), - [anon_sym_catch] = ACTIONS(1247), - [anon_sym_return] = ACTIONS(1247), - [anon_sym_source] = ACTIONS(1247), - [anon_sym_source_DASHenv] = ACTIONS(1247), - [anon_sym_register] = ACTIONS(1247), - [anon_sym_hide] = ACTIONS(1247), - [anon_sym_hide_DASHenv] = ACTIONS(1247), - [anon_sym_overlay] = ACTIONS(1247), - [anon_sym_new] = ACTIONS(1247), - [anon_sym_as] = ACTIONS(1247), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_STAR_STAR] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_mod] = ACTIONS(1247), - [anon_sym_SLASH_SLASH] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1247), - [anon_sym_bit_DASHshl] = ACTIONS(1247), - [anon_sym_bit_DASHshr] = ACTIONS(1247), - [anon_sym_EQ_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1247), - [anon_sym_LT2] = ACTIONS(1247), - [anon_sym_LT_EQ] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1247), - [anon_sym_not_DASHin] = ACTIONS(1247), - [anon_sym_starts_DASHwith] = ACTIONS(1247), - [anon_sym_ends_DASHwith] = ACTIONS(1247), - [anon_sym_EQ_TILDE] = ACTIONS(1247), - [anon_sym_BANG_TILDE] = ACTIONS(1247), - [anon_sym_bit_DASHand] = ACTIONS(1247), - [anon_sym_bit_DASHxor] = ACTIONS(1247), - [anon_sym_bit_DASHor] = ACTIONS(1247), - [anon_sym_and] = ACTIONS(1247), - [anon_sym_xor] = ACTIONS(1247), - [anon_sym_or] = ACTIONS(1247), - [aux_sym__val_number_decimal_token1] = ACTIONS(1247), - [aux_sym__val_number_decimal_token2] = ACTIONS(1247), - [anon_sym_DOT2] = ACTIONS(1247), - [aux_sym__val_number_decimal_token3] = ACTIONS(1247), - [aux_sym__val_number_token1] = ACTIONS(1247), - [aux_sym__val_number_token2] = ACTIONS(1247), - [aux_sym__val_number_token3] = ACTIONS(1247), - [aux_sym__val_number_token4] = ACTIONS(1247), - [aux_sym__val_number_token5] = ACTIONS(1247), - [aux_sym__val_number_token6] = ACTIONS(1247), - [anon_sym_DQUOTE] = ACTIONS(1247), - [sym__str_single_quotes] = ACTIONS(1247), - [sym__str_back_ticks] = ACTIONS(1247), - [sym__entry_separator] = ACTIONS(1249), - [aux_sym__record_key_token2] = ACTIONS(1247), + [1142] = { + [sym_comment] = STATE(1142), + [anon_sym_export] = ACTIONS(3771), + [anon_sym_alias] = ACTIONS(3771), + [anon_sym_let] = ACTIONS(3771), + [anon_sym_let_DASHenv] = ACTIONS(3771), + [anon_sym_mut] = ACTIONS(3771), + [anon_sym_const] = ACTIONS(3771), + [anon_sym_SEMI] = ACTIONS(3771), + [sym_cmd_identifier] = ACTIONS(3771), + [anon_sym_LF] = ACTIONS(3773), + [anon_sym_def] = ACTIONS(3771), + [anon_sym_export_DASHenv] = ACTIONS(3771), + [anon_sym_extern] = ACTIONS(3771), + [anon_sym_module] = ACTIONS(3771), + [anon_sym_use] = ACTIONS(3771), + [anon_sym_LBRACK] = ACTIONS(3771), + [anon_sym_LPAREN] = ACTIONS(3771), + [anon_sym_RPAREN] = ACTIONS(3771), + [anon_sym_DOLLAR] = ACTIONS(3771), + [anon_sym_error] = ACTIONS(3771), + [anon_sym_DASH_DASH] = ACTIONS(3771), + [anon_sym_DASH] = ACTIONS(3771), + [anon_sym_break] = ACTIONS(3771), + [anon_sym_continue] = ACTIONS(3771), + [anon_sym_for] = ACTIONS(3771), + [anon_sym_loop] = ACTIONS(3771), + [anon_sym_while] = ACTIONS(3771), + [anon_sym_do] = ACTIONS(3771), + [anon_sym_if] = ACTIONS(3771), + [anon_sym_match] = ACTIONS(3771), + [anon_sym_LBRACE] = ACTIONS(3771), + [anon_sym_RBRACE] = ACTIONS(3771), + [anon_sym_DOT_DOT] = ACTIONS(3771), + [anon_sym_try] = ACTIONS(3771), + [anon_sym_return] = ACTIONS(3771), + [anon_sym_source] = ACTIONS(3771), + [anon_sym_source_DASHenv] = ACTIONS(3771), + [anon_sym_register] = ACTIONS(3771), + [anon_sym_hide] = ACTIONS(3771), + [anon_sym_hide_DASHenv] = ACTIONS(3771), + [anon_sym_overlay] = ACTIONS(3771), + [anon_sym_as] = ACTIONS(3771), + [anon_sym_where] = ACTIONS(3771), + [anon_sym_not] = ACTIONS(3771), + [anon_sym_LPAREN2] = ACTIONS(3775), + [anon_sym_DOT] = ACTIONS(1886), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3771), + [anon_sym_DOT_DOT_LT] = ACTIONS(3771), + [anon_sym_null] = ACTIONS(3771), + [anon_sym_true] = ACTIONS(3771), + [anon_sym_false] = ACTIONS(3771), + [aux_sym__val_number_decimal_token1] = ACTIONS(3771), + [aux_sym__val_number_decimal_token2] = ACTIONS(3771), + [anon_sym_DOT2] = ACTIONS(3771), + [aux_sym__val_number_decimal_token3] = ACTIONS(3771), + [aux_sym__val_number_token1] = ACTIONS(3771), + [aux_sym__val_number_token2] = ACTIONS(3771), + [aux_sym__val_number_token3] = ACTIONS(3771), + [aux_sym__val_number_token4] = ACTIONS(3771), + [aux_sym__val_number_token5] = ACTIONS(3771), + [aux_sym__val_number_token6] = ACTIONS(3771), + [anon_sym_0b] = ACTIONS(3771), + [anon_sym_0o] = ACTIONS(3771), + [anon_sym_0x] = ACTIONS(3771), + [sym_val_date] = ACTIONS(3771), + [anon_sym_DQUOTE] = ACTIONS(3771), + [sym__str_single_quotes] = ACTIONS(3771), + [sym__str_back_ticks] = ACTIONS(3771), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3771), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3771), + [anon_sym_CARET] = ACTIONS(3771), + [aux_sym_unquoted_token2] = ACTIONS(1886), [anon_sym_POUND] = ACTIONS(113), }, - [945] = { - [sym_comment] = STATE(945), - [anon_sym_export] = ACTIONS(1253), - [anon_sym_alias] = ACTIONS(1253), - [anon_sym_let] = ACTIONS(1253), - [anon_sym_let_DASHenv] = ACTIONS(1253), - [anon_sym_mut] = ACTIONS(1253), - [anon_sym_const] = ACTIONS(1253), - [sym_cmd_identifier] = ACTIONS(1253), - [anon_sym_def] = ACTIONS(1253), - [anon_sym_export_DASHenv] = ACTIONS(1253), - [anon_sym_extern] = ACTIONS(1253), - [anon_sym_module] = ACTIONS(1253), - [anon_sym_use] = ACTIONS(1253), - [anon_sym_LPAREN] = ACTIONS(1255), - [anon_sym_DOLLAR] = ACTIONS(1253), - [anon_sym_error] = ACTIONS(1253), - [anon_sym_list] = ACTIONS(1253), - [anon_sym_GT] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_break] = ACTIONS(1253), - [anon_sym_continue] = ACTIONS(1253), - [anon_sym_for] = ACTIONS(1253), - [anon_sym_in] = ACTIONS(1253), - [anon_sym_loop] = ACTIONS(1253), - [anon_sym_make] = ACTIONS(1253), - [anon_sym_while] = ACTIONS(1253), - [anon_sym_do] = ACTIONS(1253), - [anon_sym_if] = ACTIONS(1253), - [anon_sym_else] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1253), - [anon_sym_RBRACE] = ACTIONS(1255), - [anon_sym_try] = ACTIONS(1253), - [anon_sym_catch] = ACTIONS(1253), - [anon_sym_return] = ACTIONS(1253), - [anon_sym_source] = ACTIONS(1253), - [anon_sym_source_DASHenv] = ACTIONS(1253), - [anon_sym_register] = ACTIONS(1253), - [anon_sym_hide] = ACTIONS(1253), - [anon_sym_hide_DASHenv] = ACTIONS(1253), - [anon_sym_overlay] = ACTIONS(1253), - [anon_sym_new] = ACTIONS(1253), - [anon_sym_as] = ACTIONS(1253), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_STAR_STAR] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_mod] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_bit_DASHshl] = ACTIONS(1253), - [anon_sym_bit_DASHshr] = ACTIONS(1253), - [anon_sym_EQ_EQ] = ACTIONS(1253), - [anon_sym_BANG_EQ] = ACTIONS(1253), - [anon_sym_LT2] = ACTIONS(1253), - [anon_sym_LT_EQ] = ACTIONS(1253), - [anon_sym_GT_EQ] = ACTIONS(1253), - [anon_sym_not_DASHin] = ACTIONS(1253), - [anon_sym_starts_DASHwith] = ACTIONS(1253), - [anon_sym_ends_DASHwith] = ACTIONS(1253), - [anon_sym_EQ_TILDE] = ACTIONS(1253), - [anon_sym_BANG_TILDE] = ACTIONS(1253), - [anon_sym_bit_DASHand] = ACTIONS(1253), - [anon_sym_bit_DASHxor] = ACTIONS(1253), - [anon_sym_bit_DASHor] = ACTIONS(1253), - [anon_sym_and] = ACTIONS(1253), - [anon_sym_xor] = ACTIONS(1253), - [anon_sym_or] = ACTIONS(1253), - [aux_sym__val_number_decimal_token1] = ACTIONS(1253), - [aux_sym__val_number_decimal_token2] = ACTIONS(1253), - [anon_sym_DOT2] = ACTIONS(1253), - [aux_sym__val_number_decimal_token3] = ACTIONS(1253), - [aux_sym__val_number_token1] = ACTIONS(1253), - [aux_sym__val_number_token2] = ACTIONS(1253), - [aux_sym__val_number_token3] = ACTIONS(1253), - [aux_sym__val_number_token4] = ACTIONS(1253), - [aux_sym__val_number_token5] = ACTIONS(1253), - [aux_sym__val_number_token6] = ACTIONS(1253), - [anon_sym_DQUOTE] = ACTIONS(1255), - [sym__str_single_quotes] = ACTIONS(1255), - [sym__str_back_ticks] = ACTIONS(1255), - [aux_sym__record_key_token2] = ACTIONS(1253), - [aux_sym_unquoted_token6] = ACTIONS(1257), + [1143] = { + [sym_comment] = STATE(1143), + [anon_sym_export] = ACTIONS(920), + [anon_sym_alias] = ACTIONS(920), + [anon_sym_let] = ACTIONS(920), + [anon_sym_let_DASHenv] = ACTIONS(920), + [anon_sym_mut] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(920), + [sym_cmd_identifier] = ACTIONS(920), + [anon_sym_LF] = ACTIONS(922), + [anon_sym_def] = ACTIONS(920), + [anon_sym_export_DASHenv] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym_module] = ACTIONS(920), + [anon_sym_use] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_RPAREN] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_error] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_loop] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_match] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_RBRACE] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_try] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_source] = ACTIONS(920), + [anon_sym_source_DASHenv] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_hide] = ACTIONS(920), + [anon_sym_hide_DASHenv] = ACTIONS(920), + [anon_sym_overlay] = ACTIONS(920), + [anon_sym_as] = ACTIONS(920), + [anon_sym_where] = ACTIONS(920), + [anon_sym_not] = ACTIONS(920), + [anon_sym_LPAREN2] = ACTIONS(922), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [aux_sym__immediate_decimal_token1] = ACTIONS(3777), + [anon_sym_null] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), + [anon_sym_CARET] = ACTIONS(920), + [aux_sym_unquoted_token2] = ACTIONS(3779), [anon_sym_POUND] = ACTIONS(113), }, - [946] = { - [sym_comment] = STATE(946), - [anon_sym_export] = ACTIONS(1273), - [anon_sym_alias] = ACTIONS(1273), - [anon_sym_let] = ACTIONS(1273), - [anon_sym_let_DASHenv] = ACTIONS(1273), - [anon_sym_mut] = ACTIONS(1273), - [anon_sym_const] = ACTIONS(1273), - [sym_cmd_identifier] = ACTIONS(1273), - [anon_sym_def] = ACTIONS(1273), - [anon_sym_export_DASHenv] = ACTIONS(1273), - [anon_sym_extern] = ACTIONS(1273), - [anon_sym_module] = ACTIONS(1273), - [anon_sym_use] = ACTIONS(1273), - [anon_sym_LPAREN] = ACTIONS(1275), - [anon_sym_DOLLAR] = ACTIONS(1273), - [anon_sym_error] = ACTIONS(1273), - [anon_sym_list] = ACTIONS(1273), - [anon_sym_GT] = ACTIONS(1273), - [anon_sym_DASH] = ACTIONS(1273), - [anon_sym_break] = ACTIONS(1273), - [anon_sym_continue] = ACTIONS(1273), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_in] = ACTIONS(1273), - [anon_sym_loop] = ACTIONS(1273), - [anon_sym_make] = ACTIONS(1273), - [anon_sym_while] = ACTIONS(1273), - [anon_sym_do] = ACTIONS(1273), - [anon_sym_if] = ACTIONS(1273), - [anon_sym_else] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_RBRACE] = ACTIONS(1275), - [anon_sym_try] = ACTIONS(1273), - [anon_sym_catch] = ACTIONS(1273), - [anon_sym_return] = ACTIONS(1273), - [anon_sym_source] = ACTIONS(1273), - [anon_sym_source_DASHenv] = ACTIONS(1273), - [anon_sym_register] = ACTIONS(1273), - [anon_sym_hide] = ACTIONS(1273), - [anon_sym_hide_DASHenv] = ACTIONS(1273), - [anon_sym_overlay] = ACTIONS(1273), - [anon_sym_new] = ACTIONS(1273), - [anon_sym_as] = ACTIONS(1273), - [anon_sym_STAR] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1273), - [anon_sym_PLUS_PLUS] = ACTIONS(1273), - [anon_sym_SLASH] = ACTIONS(1273), - [anon_sym_mod] = ACTIONS(1273), - [anon_sym_SLASH_SLASH] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(1273), - [anon_sym_bit_DASHshl] = ACTIONS(1273), - [anon_sym_bit_DASHshr] = ACTIONS(1273), - [anon_sym_EQ_EQ] = ACTIONS(1273), - [anon_sym_BANG_EQ] = ACTIONS(1273), - [anon_sym_LT2] = ACTIONS(1273), - [anon_sym_LT_EQ] = ACTIONS(1273), - [anon_sym_GT_EQ] = ACTIONS(1273), - [anon_sym_not_DASHin] = ACTIONS(1273), - [anon_sym_starts_DASHwith] = ACTIONS(1273), - [anon_sym_ends_DASHwith] = ACTIONS(1273), - [anon_sym_EQ_TILDE] = ACTIONS(1273), - [anon_sym_BANG_TILDE] = ACTIONS(1273), - [anon_sym_bit_DASHand] = ACTIONS(1273), - [anon_sym_bit_DASHxor] = ACTIONS(1273), - [anon_sym_bit_DASHor] = ACTIONS(1273), - [anon_sym_and] = ACTIONS(1273), - [anon_sym_xor] = ACTIONS(1273), - [anon_sym_or] = ACTIONS(1273), - [aux_sym__val_number_decimal_token1] = ACTIONS(1273), - [aux_sym__val_number_decimal_token2] = ACTIONS(1273), - [anon_sym_DOT2] = ACTIONS(1273), - [aux_sym__val_number_decimal_token3] = ACTIONS(1273), - [aux_sym__val_number_token1] = ACTIONS(1273), - [aux_sym__val_number_token2] = ACTIONS(1273), - [aux_sym__val_number_token3] = ACTIONS(1273), - [aux_sym__val_number_token4] = ACTIONS(1273), - [aux_sym__val_number_token5] = ACTIONS(1273), - [aux_sym__val_number_token6] = ACTIONS(1273), - [anon_sym_DQUOTE] = ACTIONS(1275), - [sym__str_single_quotes] = ACTIONS(1275), - [sym__str_back_ticks] = ACTIONS(1275), - [aux_sym__record_key_token2] = ACTIONS(1273), - [aux_sym_unquoted_token6] = ACTIONS(1257), + [1144] = { + [sym_comment] = STATE(1144), + [ts_builtin_sym_end] = ACTIONS(2231), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_alias] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_let_DASHenv] = ACTIONS(2229), + [anon_sym_mut] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2229), + [sym_cmd_identifier] = ACTIONS(2229), + [anon_sym_LF] = ACTIONS(2231), + [anon_sym_def] = ACTIONS(2229), + [anon_sym_export_DASHenv] = ACTIONS(2229), + [anon_sym_extern] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2229), + [anon_sym_error] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_loop] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_source] = ACTIONS(2229), + [anon_sym_source_DASHenv] = ACTIONS(2229), + [anon_sym_register] = ACTIONS(2229), + [anon_sym_hide] = ACTIONS(2229), + [anon_sym_hide_DASHenv] = ACTIONS(2229), + [anon_sym_overlay] = ACTIONS(2229), + [anon_sym_as] = ACTIONS(2229), + [anon_sym_where] = ACTIONS(2229), + [anon_sym_not] = ACTIONS(2229), + [anon_sym_LPAREN2] = ACTIONS(2231), + [anon_sym_DOT] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2229), + [anon_sym_DOT_DOT_LT] = ACTIONS(2229), + [aux_sym__immediate_decimal_token2] = ACTIONS(3511), + [anon_sym_null] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [aux_sym__val_number_decimal_token1] = ACTIONS(2229), + [aux_sym__val_number_decimal_token2] = ACTIONS(2229), + [anon_sym_DOT2] = ACTIONS(2229), + [aux_sym__val_number_decimal_token3] = ACTIONS(2229), + [aux_sym__val_number_token1] = ACTIONS(2229), + [aux_sym__val_number_token2] = ACTIONS(2229), + [aux_sym__val_number_token3] = ACTIONS(2229), + [aux_sym__val_number_token4] = ACTIONS(2229), + [aux_sym__val_number_token5] = ACTIONS(2229), + [aux_sym__val_number_token6] = ACTIONS(2229), + [anon_sym_0b] = ACTIONS(2229), + [anon_sym_0o] = ACTIONS(2229), + [anon_sym_0x] = ACTIONS(2229), + [sym_val_date] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2229), + [anon_sym_CARET] = ACTIONS(2229), + [aux_sym_unquoted_token2] = ACTIONS(2229), [anon_sym_POUND] = ACTIONS(113), }, - [947] = { - [sym_pipeline] = STATE(3009), - [sym_pipeline_last] = STATE(10171), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(5342), - [sym__var] = STATE(4755), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), - [sym_comment] = STATE(947), - [aux_sym_pipeline_repeat1] = STATE(1033), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(1762), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_where] = ACTIONS(187), - [anon_sym_not] = ACTIONS(191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(193), - [anon_sym_DOT_DOT_LT] = ACTIONS(193), - [anon_sym_null] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [aux_sym__val_number_decimal_token1] = ACTIONS(199), - [aux_sym__val_number_decimal_token2] = ACTIONS(201), - [anon_sym_DOT2] = ACTIONS(203), - [aux_sym__val_number_decimal_token3] = ACTIONS(205), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(209), - [aux_sym__val_number_token5] = ACTIONS(207), - [aux_sym__val_number_token6] = ACTIONS(209), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(227), + [1145] = { + [sym_cell_path] = STATE(2013), + [sym_path] = STATE(1212), + [sym_comment] = STATE(1145), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_COMMA] = ACTIONS(1004), + [anon_sym_RBRACK] = ACTIONS(1004), + [anon_sym_LPAREN] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1004), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1004), + [anon_sym_PLUS_PLUS] = ACTIONS(1004), + [anon_sym_SLASH] = ACTIONS(1002), + [anon_sym_mod] = ACTIONS(1004), + [anon_sym_SLASH_SLASH] = ACTIONS(1004), + [anon_sym_PLUS] = ACTIONS(1002), + [anon_sym_bit_DASHshl] = ACTIONS(1004), + [anon_sym_bit_DASHshr] = ACTIONS(1004), + [anon_sym_EQ_EQ] = ACTIONS(1004), + [anon_sym_BANG_EQ] = ACTIONS(1004), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ] = ACTIONS(1004), + [anon_sym_GT_EQ] = ACTIONS(1004), + [anon_sym_not_DASHin] = ACTIONS(1004), + [anon_sym_starts_DASHwith] = ACTIONS(1004), + [anon_sym_ends_DASHwith] = ACTIONS(1004), + [anon_sym_EQ_TILDE] = ACTIONS(1004), + [anon_sym_BANG_TILDE] = ACTIONS(1004), + [anon_sym_bit_DASHand] = ACTIONS(1004), + [anon_sym_bit_DASHxor] = ACTIONS(1004), + [anon_sym_bit_DASHor] = ACTIONS(1004), + [anon_sym_and] = ACTIONS(1004), + [anon_sym_xor] = ACTIONS(1004), + [anon_sym_or] = ACTIONS(1004), + [anon_sym_DOT] = ACTIONS(3781), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1004), + [anon_sym_DOT_DOT_LT] = ACTIONS(1004), + [anon_sym_null] = ACTIONS(1004), + [anon_sym_true] = ACTIONS(1004), + [anon_sym_false] = ACTIONS(1004), + [aux_sym__val_number_decimal_token1] = ACTIONS(1002), + [aux_sym__val_number_decimal_token2] = ACTIONS(1004), + [anon_sym_DOT2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1004), + [anon_sym_DQUOTE] = ACTIONS(1004), + [sym__str_single_quotes] = ACTIONS(1004), + [sym__str_back_ticks] = ACTIONS(1004), + [anon_sym_err_GT] = ACTIONS(1004), + [anon_sym_out_GT] = ACTIONS(1004), + [anon_sym_e_GT] = ACTIONS(1004), + [anon_sym_o_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT] = ACTIONS(1004), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [948] = { - [sym_comment] = STATE(948), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_error] = ACTIONS(936), - [anon_sym_list] = ACTIONS(936), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_make] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_else] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_RBRACE] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_catch] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_new] = ACTIONS(936), - [anon_sym_as] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_STAR_STAR] = ACTIONS(936), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(936), - [anon_sym_SLASH_SLASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(936), - [anon_sym_bit_DASHshr] = ACTIONS(936), - [anon_sym_EQ_EQ] = ACTIONS(936), - [anon_sym_BANG_EQ] = ACTIONS(936), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(936), - [anon_sym_GT_EQ] = ACTIONS(936), - [anon_sym_not_DASHin] = ACTIONS(936), - [anon_sym_starts_DASHwith] = ACTIONS(936), - [anon_sym_ends_DASHwith] = ACTIONS(936), - [anon_sym_EQ_TILDE] = ACTIONS(936), - [anon_sym_BANG_TILDE] = ACTIONS(936), - [anon_sym_bit_DASHand] = ACTIONS(936), - [anon_sym_bit_DASHxor] = ACTIONS(936), - [anon_sym_bit_DASHor] = ACTIONS(936), - [anon_sym_and] = ACTIONS(936), - [anon_sym_xor] = ACTIONS(936), - [anon_sym_or] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [sym__entry_separator] = ACTIONS(938), - [aux_sym__record_key_token2] = ACTIONS(936), + [1146] = { + [sym_comment] = STATE(1146), + [anon_sym_export] = ACTIONS(1089), + [anon_sym_alias] = ACTIONS(1089), + [anon_sym_let] = ACTIONS(1089), + [anon_sym_let_DASHenv] = ACTIONS(1089), + [anon_sym_mut] = ACTIONS(1089), + [anon_sym_const] = ACTIONS(1089), + [anon_sym_SEMI] = ACTIONS(1089), + [sym_cmd_identifier] = ACTIONS(1089), + [anon_sym_LF] = ACTIONS(1091), + [anon_sym_def] = ACTIONS(1089), + [anon_sym_export_DASHenv] = ACTIONS(1089), + [anon_sym_extern] = ACTIONS(1089), + [anon_sym_module] = ACTIONS(1089), + [anon_sym_use] = ACTIONS(1089), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1089), + [anon_sym_RPAREN] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1089), + [anon_sym_error] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_DASH] = ACTIONS(1089), + [anon_sym_break] = ACTIONS(1089), + [anon_sym_continue] = ACTIONS(1089), + [anon_sym_for] = ACTIONS(1089), + [anon_sym_loop] = ACTIONS(1089), + [anon_sym_while] = ACTIONS(1089), + [anon_sym_do] = ACTIONS(1089), + [anon_sym_if] = ACTIONS(1089), + [anon_sym_match] = ACTIONS(1089), + [anon_sym_LBRACE] = ACTIONS(1089), + [anon_sym_RBRACE] = ACTIONS(1089), + [anon_sym_DOT_DOT] = ACTIONS(1089), + [anon_sym_try] = ACTIONS(1089), + [anon_sym_return] = ACTIONS(1089), + [anon_sym_source] = ACTIONS(1089), + [anon_sym_source_DASHenv] = ACTIONS(1089), + [anon_sym_register] = ACTIONS(1089), + [anon_sym_hide] = ACTIONS(1089), + [anon_sym_hide_DASHenv] = ACTIONS(1089), + [anon_sym_overlay] = ACTIONS(1089), + [anon_sym_as] = ACTIONS(1089), + [anon_sym_where] = ACTIONS(1089), + [anon_sym_not] = ACTIONS(1089), + [anon_sym_LPAREN2] = ACTIONS(3783), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_DOT_DOT_LT] = ACTIONS(1089), + [anon_sym_null] = ACTIONS(1089), + [anon_sym_true] = ACTIONS(1089), + [anon_sym_false] = ACTIONS(1089), + [aux_sym__val_number_decimal_token1] = ACTIONS(1089), + [aux_sym__val_number_decimal_token2] = ACTIONS(1089), + [anon_sym_DOT2] = ACTIONS(1089), + [aux_sym__val_number_decimal_token3] = ACTIONS(1089), + [aux_sym__val_number_token1] = ACTIONS(1089), + [aux_sym__val_number_token2] = ACTIONS(1089), + [aux_sym__val_number_token3] = ACTIONS(1089), + [aux_sym__val_number_token4] = ACTIONS(1089), + [aux_sym__val_number_token5] = ACTIONS(1089), + [aux_sym__val_number_token6] = ACTIONS(1089), + [anon_sym_0b] = ACTIONS(1089), + [anon_sym_0o] = ACTIONS(1089), + [anon_sym_0x] = ACTIONS(1089), + [sym_val_date] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1089), + [sym__str_single_quotes] = ACTIONS(1089), + [sym__str_back_ticks] = ACTIONS(1089), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1089), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1089), + [anon_sym_CARET] = ACTIONS(1089), + [aux_sym_unquoted_token6] = ACTIONS(1149), [anon_sym_POUND] = ACTIONS(113), }, - [949] = { - [sym_pipeline] = STATE(2982), - [sym_pipeline_last] = STATE(10175), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9368), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(5342), - [sym__var] = STATE(4755), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), - [sym_comment] = STATE(949), - [aux_sym_pipeline_repeat1] = STATE(1033), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(1762), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_where] = ACTIONS(187), - [anon_sym_not] = ACTIONS(191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(193), - [anon_sym_DOT_DOT_LT] = ACTIONS(193), - [anon_sym_null] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [aux_sym__val_number_decimal_token1] = ACTIONS(199), - [aux_sym__val_number_decimal_token2] = ACTIONS(201), - [anon_sym_DOT2] = ACTIONS(203), - [aux_sym__val_number_decimal_token3] = ACTIONS(205), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(209), - [aux_sym__val_number_token5] = ACTIONS(207), - [aux_sym__val_number_token6] = ACTIONS(209), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(227), + [1147] = { + [sym_cell_path] = STATE(2211), + [sym_path] = STATE(1212), + [sym_comment] = STATE(1147), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_COMMA] = ACTIONS(1059), + [anon_sym_RBRACK] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1059), + [anon_sym_DOLLAR] = ACTIONS(1059), + [anon_sym_GT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1059), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_in] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_STAR_STAR] = ACTIONS(1059), + [anon_sym_PLUS_PLUS] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_mod] = ACTIONS(1059), + [anon_sym_SLASH_SLASH] = ACTIONS(1059), + [anon_sym_PLUS] = ACTIONS(1057), + [anon_sym_bit_DASHshl] = ACTIONS(1059), + [anon_sym_bit_DASHshr] = ACTIONS(1059), + [anon_sym_EQ_EQ] = ACTIONS(1059), + [anon_sym_BANG_EQ] = ACTIONS(1059), + [anon_sym_LT2] = ACTIONS(1057), + [anon_sym_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_EQ] = ACTIONS(1059), + [anon_sym_not_DASHin] = ACTIONS(1059), + [anon_sym_starts_DASHwith] = ACTIONS(1059), + [anon_sym_ends_DASHwith] = ACTIONS(1059), + [anon_sym_EQ_TILDE] = ACTIONS(1059), + [anon_sym_BANG_TILDE] = ACTIONS(1059), + [anon_sym_bit_DASHand] = ACTIONS(1059), + [anon_sym_bit_DASHxor] = ACTIONS(1059), + [anon_sym_bit_DASHor] = ACTIONS(1059), + [anon_sym_and] = ACTIONS(1059), + [anon_sym_xor] = ACTIONS(1059), + [anon_sym_or] = ACTIONS(1059), + [anon_sym_DOT] = ACTIONS(3781), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1059), + [anon_sym_DOT_DOT_LT] = ACTIONS(1059), + [anon_sym_null] = ACTIONS(1059), + [anon_sym_true] = ACTIONS(1059), + [anon_sym_false] = ACTIONS(1059), + [aux_sym__val_number_decimal_token1] = ACTIONS(1057), + [aux_sym__val_number_decimal_token2] = ACTIONS(1059), + [anon_sym_DOT2] = ACTIONS(1057), + [aux_sym__val_number_decimal_token3] = ACTIONS(1059), + [aux_sym__val_number_token1] = ACTIONS(1059), + [aux_sym__val_number_token2] = ACTIONS(1059), + [aux_sym__val_number_token3] = ACTIONS(1059), + [aux_sym__val_number_token4] = ACTIONS(1059), + [aux_sym__val_number_token5] = ACTIONS(1059), + [aux_sym__val_number_token6] = ACTIONS(1059), + [anon_sym_0b] = ACTIONS(1057), + [anon_sym_0o] = ACTIONS(1057), + [anon_sym_0x] = ACTIONS(1057), + [sym_val_date] = ACTIONS(1059), + [anon_sym_DQUOTE] = ACTIONS(1059), + [sym__str_single_quotes] = ACTIONS(1059), + [sym__str_back_ticks] = ACTIONS(1059), + [anon_sym_err_GT] = ACTIONS(1059), + [anon_sym_out_GT] = ACTIONS(1059), + [anon_sym_e_GT] = ACTIONS(1059), + [anon_sym_o_GT] = ACTIONS(1059), + [anon_sym_err_PLUSout_GT] = ACTIONS(1059), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1059), + [anon_sym_o_PLUSe_GT] = ACTIONS(1059), + [anon_sym_e_PLUSo_GT] = ACTIONS(1059), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1057), [anon_sym_POUND] = ACTIONS(3), }, - [950] = { - [sym_comment] = STATE(950), - [anon_sym_export] = ACTIONS(1243), - [anon_sym_alias] = ACTIONS(1243), - [anon_sym_let] = ACTIONS(1243), - [anon_sym_let_DASHenv] = ACTIONS(1243), - [anon_sym_mut] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [sym_cmd_identifier] = ACTIONS(1243), - [anon_sym_def] = ACTIONS(1243), - [anon_sym_export_DASHenv] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1243), - [anon_sym_module] = ACTIONS(1243), - [anon_sym_use] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_error] = ACTIONS(1243), - [anon_sym_list] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_in] = ACTIONS(1243), - [anon_sym_loop] = ACTIONS(1243), - [anon_sym_make] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_else] = ACTIONS(1243), - [anon_sym_match] = ACTIONS(1243), - [anon_sym_RBRACE] = ACTIONS(1243), - [anon_sym_try] = ACTIONS(1243), - [anon_sym_catch] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_source] = ACTIONS(1243), - [anon_sym_source_DASHenv] = ACTIONS(1243), - [anon_sym_register] = ACTIONS(1243), - [anon_sym_hide] = ACTIONS(1243), - [anon_sym_hide_DASHenv] = ACTIONS(1243), - [anon_sym_overlay] = ACTIONS(1243), - [anon_sym_new] = ACTIONS(1243), - [anon_sym_as] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1243), - [anon_sym_STAR_STAR] = ACTIONS(1243), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_SLASH] = ACTIONS(1243), - [anon_sym_mod] = ACTIONS(1243), - [anon_sym_SLASH_SLASH] = ACTIONS(1243), - [anon_sym_PLUS] = ACTIONS(1243), - [anon_sym_bit_DASHshl] = ACTIONS(1243), - [anon_sym_bit_DASHshr] = ACTIONS(1243), - [anon_sym_EQ_EQ] = ACTIONS(1243), - [anon_sym_BANG_EQ] = ACTIONS(1243), - [anon_sym_LT2] = ACTIONS(1243), - [anon_sym_LT_EQ] = ACTIONS(1243), - [anon_sym_GT_EQ] = ACTIONS(1243), - [anon_sym_not_DASHin] = ACTIONS(1243), - [anon_sym_starts_DASHwith] = ACTIONS(1243), - [anon_sym_ends_DASHwith] = ACTIONS(1243), - [anon_sym_EQ_TILDE] = ACTIONS(1243), - [anon_sym_BANG_TILDE] = ACTIONS(1243), - [anon_sym_bit_DASHand] = ACTIONS(1243), - [anon_sym_bit_DASHxor] = ACTIONS(1243), - [anon_sym_bit_DASHor] = ACTIONS(1243), - [anon_sym_and] = ACTIONS(1243), - [anon_sym_xor] = ACTIONS(1243), - [anon_sym_or] = ACTIONS(1243), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_decimal_token2] = ACTIONS(1243), - [anon_sym_DOT2] = ACTIONS(1243), - [aux_sym__val_number_decimal_token3] = ACTIONS(1243), - [aux_sym__val_number_token1] = ACTIONS(1243), - [aux_sym__val_number_token2] = ACTIONS(1243), - [aux_sym__val_number_token3] = ACTIONS(1243), - [aux_sym__val_number_token4] = ACTIONS(1243), - [aux_sym__val_number_token5] = ACTIONS(1243), - [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym__str_single_quotes] = ACTIONS(1243), - [sym__str_back_ticks] = ACTIONS(1243), - [sym__entry_separator] = ACTIONS(1290), - [aux_sym__record_key_token2] = ACTIONS(1243), + [1148] = { + [sym_cell_path] = STATE(2226), + [sym_path] = STATE(1212), + [sym_comment] = STATE(1148), + [anon_sym_LBRACK] = ACTIONS(1053), + [anon_sym_COMMA] = ACTIONS(1053), + [anon_sym_RBRACK] = ACTIONS(1053), + [anon_sym_LPAREN] = ACTIONS(1053), + [anon_sym_DOLLAR] = ACTIONS(1053), + [anon_sym_GT] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_in] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(1051), + [anon_sym_STAR] = ACTIONS(1051), + [anon_sym_STAR_STAR] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1053), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_mod] = ACTIONS(1053), + [anon_sym_SLASH_SLASH] = ACTIONS(1053), + [anon_sym_PLUS] = ACTIONS(1051), + [anon_sym_bit_DASHshl] = ACTIONS(1053), + [anon_sym_bit_DASHshr] = ACTIONS(1053), + [anon_sym_EQ_EQ] = ACTIONS(1053), + [anon_sym_BANG_EQ] = ACTIONS(1053), + [anon_sym_LT2] = ACTIONS(1051), + [anon_sym_LT_EQ] = ACTIONS(1053), + [anon_sym_GT_EQ] = ACTIONS(1053), + [anon_sym_not_DASHin] = ACTIONS(1053), + [anon_sym_starts_DASHwith] = ACTIONS(1053), + [anon_sym_ends_DASHwith] = ACTIONS(1053), + [anon_sym_EQ_TILDE] = ACTIONS(1053), + [anon_sym_BANG_TILDE] = ACTIONS(1053), + [anon_sym_bit_DASHand] = ACTIONS(1053), + [anon_sym_bit_DASHxor] = ACTIONS(1053), + [anon_sym_bit_DASHor] = ACTIONS(1053), + [anon_sym_and] = ACTIONS(1053), + [anon_sym_xor] = ACTIONS(1053), + [anon_sym_or] = ACTIONS(1053), + [anon_sym_DOT] = ACTIONS(3781), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1053), + [anon_sym_DOT_DOT_LT] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1053), + [anon_sym_true] = ACTIONS(1053), + [anon_sym_false] = ACTIONS(1053), + [aux_sym__val_number_decimal_token1] = ACTIONS(1051), + [aux_sym__val_number_decimal_token2] = ACTIONS(1053), + [anon_sym_DOT2] = ACTIONS(1051), + [aux_sym__val_number_decimal_token3] = ACTIONS(1053), + [aux_sym__val_number_token1] = ACTIONS(1053), + [aux_sym__val_number_token2] = ACTIONS(1053), + [aux_sym__val_number_token3] = ACTIONS(1053), + [aux_sym__val_number_token4] = ACTIONS(1053), + [aux_sym__val_number_token5] = ACTIONS(1053), + [aux_sym__val_number_token6] = ACTIONS(1053), + [anon_sym_0b] = ACTIONS(1051), + [anon_sym_0o] = ACTIONS(1051), + [anon_sym_0x] = ACTIONS(1051), + [sym_val_date] = ACTIONS(1053), + [anon_sym_DQUOTE] = ACTIONS(1053), + [sym__str_single_quotes] = ACTIONS(1053), + [sym__str_back_ticks] = ACTIONS(1053), + [anon_sym_err_GT] = ACTIONS(1053), + [anon_sym_out_GT] = ACTIONS(1053), + [anon_sym_e_GT] = ACTIONS(1053), + [anon_sym_o_GT] = ACTIONS(1053), + [anon_sym_err_PLUSout_GT] = ACTIONS(1053), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1053), + [anon_sym_o_PLUSe_GT] = ACTIONS(1053), + [anon_sym_e_PLUSo_GT] = ACTIONS(1053), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1051), + [anon_sym_POUND] = ACTIONS(3), + }, + [1149] = { + [sym_comment] = STATE(1149), + [ts_builtin_sym_end] = ACTIONS(1063), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_alias] = ACTIONS(1061), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_let_DASHenv] = ACTIONS(1061), + [anon_sym_mut] = ACTIONS(1061), + [anon_sym_const] = ACTIONS(1061), + [anon_sym_SEMI] = ACTIONS(1061), + [sym_cmd_identifier] = ACTIONS(1061), + [anon_sym_LF] = ACTIONS(1063), + [anon_sym_def] = ACTIONS(1061), + [anon_sym_export_DASHenv] = ACTIONS(1061), + [anon_sym_extern] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_use] = ACTIONS(1061), + [anon_sym_LBRACK] = ACTIONS(1061), + [anon_sym_LPAREN] = ACTIONS(1061), + [anon_sym_DOLLAR] = ACTIONS(1061), + [anon_sym_error] = ACTIONS(1061), + [anon_sym_DASH_DASH] = ACTIONS(1061), + [anon_sym_DASH] = ACTIONS(1061), + [anon_sym_break] = ACTIONS(1061), + [anon_sym_continue] = ACTIONS(1061), + [anon_sym_for] = ACTIONS(1061), + [anon_sym_loop] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(1061), + [anon_sym_do] = ACTIONS(1061), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_match] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(1061), + [anon_sym_DOT_DOT] = ACTIONS(1061), + [anon_sym_try] = ACTIONS(1061), + [anon_sym_return] = ACTIONS(1061), + [anon_sym_source] = ACTIONS(1061), + [anon_sym_source_DASHenv] = ACTIONS(1061), + [anon_sym_register] = ACTIONS(1061), + [anon_sym_hide] = ACTIONS(1061), + [anon_sym_hide_DASHenv] = ACTIONS(1061), + [anon_sym_overlay] = ACTIONS(1061), + [anon_sym_as] = ACTIONS(1061), + [anon_sym_where] = ACTIONS(1061), + [anon_sym_not] = ACTIONS(1061), + [anon_sym_DOT_DOT2] = ACTIONS(1061), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1061), + [anon_sym_DOT_DOT_LT] = ACTIONS(1061), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1063), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1063), + [anon_sym_null] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1061), + [anon_sym_false] = ACTIONS(1061), + [aux_sym__val_number_decimal_token1] = ACTIONS(1061), + [aux_sym__val_number_decimal_token2] = ACTIONS(1061), + [anon_sym_DOT2] = ACTIONS(1061), + [aux_sym__val_number_decimal_token3] = ACTIONS(1061), + [aux_sym__val_number_token1] = ACTIONS(1061), + [aux_sym__val_number_token2] = ACTIONS(1061), + [aux_sym__val_number_token3] = ACTIONS(1061), + [aux_sym__val_number_token4] = ACTIONS(1061), + [aux_sym__val_number_token5] = ACTIONS(1061), + [aux_sym__val_number_token6] = ACTIONS(1061), + [anon_sym_0b] = ACTIONS(1061), + [anon_sym_0o] = ACTIONS(1061), + [anon_sym_0x] = ACTIONS(1061), + [sym_val_date] = ACTIONS(1061), + [anon_sym_DQUOTE] = ACTIONS(1061), + [sym__str_single_quotes] = ACTIONS(1061), + [sym__str_back_ticks] = ACTIONS(1061), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1061), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1061), + [anon_sym_CARET] = ACTIONS(1061), [anon_sym_POUND] = ACTIONS(113), }, - [951] = { - [sym_comment] = STATE(951), - [anon_sym_export] = ACTIONS(1414), - [anon_sym_alias] = ACTIONS(1414), - [anon_sym_let] = ACTIONS(1414), - [anon_sym_let_DASHenv] = ACTIONS(1414), - [anon_sym_mut] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [sym_cmd_identifier] = ACTIONS(1414), - [anon_sym_def] = ACTIONS(1414), - [anon_sym_export_DASHenv] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym_module] = ACTIONS(1414), - [anon_sym_use] = ACTIONS(1414), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_DOLLAR] = ACTIONS(1414), - [anon_sym_error] = ACTIONS(1414), - [anon_sym_list] = ACTIONS(1414), - [anon_sym_GT] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_in] = ACTIONS(1414), - [anon_sym_loop] = ACTIONS(1414), - [anon_sym_make] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_else] = ACTIONS(1414), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_RBRACE] = ACTIONS(1414), - [anon_sym_try] = ACTIONS(1414), - [anon_sym_catch] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_source] = ACTIONS(1414), - [anon_sym_source_DASHenv] = ACTIONS(1414), - [anon_sym_register] = ACTIONS(1414), - [anon_sym_hide] = ACTIONS(1414), - [anon_sym_hide_DASHenv] = ACTIONS(1414), - [anon_sym_overlay] = ACTIONS(1414), - [anon_sym_new] = ACTIONS(1414), - [anon_sym_as] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_STAR_STAR] = ACTIONS(1414), - [anon_sym_PLUS_PLUS] = ACTIONS(1414), - [anon_sym_SLASH] = ACTIONS(1414), - [anon_sym_mod] = ACTIONS(1414), - [anon_sym_SLASH_SLASH] = ACTIONS(1414), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_bit_DASHshl] = ACTIONS(1414), - [anon_sym_bit_DASHshr] = ACTIONS(1414), - [anon_sym_EQ_EQ] = ACTIONS(1414), - [anon_sym_BANG_EQ] = ACTIONS(1414), - [anon_sym_LT2] = ACTIONS(1414), - [anon_sym_LT_EQ] = ACTIONS(1414), - [anon_sym_GT_EQ] = ACTIONS(1414), - [anon_sym_not_DASHin] = ACTIONS(1414), - [anon_sym_starts_DASHwith] = ACTIONS(1414), - [anon_sym_ends_DASHwith] = ACTIONS(1414), - [anon_sym_EQ_TILDE] = ACTIONS(1414), - [anon_sym_BANG_TILDE] = ACTIONS(1414), - [anon_sym_bit_DASHand] = ACTIONS(1414), - [anon_sym_bit_DASHxor] = ACTIONS(1414), - [anon_sym_bit_DASHor] = ACTIONS(1414), - [anon_sym_and] = ACTIONS(1414), - [anon_sym_xor] = ACTIONS(1414), - [anon_sym_or] = ACTIONS(1414), - [aux_sym__val_number_decimal_token1] = ACTIONS(1414), - [aux_sym__val_number_decimal_token2] = ACTIONS(1414), - [anon_sym_DOT2] = ACTIONS(1414), - [aux_sym__val_number_decimal_token3] = ACTIONS(1414), - [aux_sym__val_number_token1] = ACTIONS(1414), - [aux_sym__val_number_token2] = ACTIONS(1414), - [aux_sym__val_number_token3] = ACTIONS(1414), - [aux_sym__val_number_token4] = ACTIONS(1414), - [aux_sym__val_number_token5] = ACTIONS(1414), - [aux_sym__val_number_token6] = ACTIONS(1414), - [anon_sym_DQUOTE] = ACTIONS(1414), - [sym__str_single_quotes] = ACTIONS(1414), - [sym__str_back_ticks] = ACTIONS(1414), - [sym__entry_separator] = ACTIONS(1416), - [aux_sym__record_key_token2] = ACTIONS(1414), + [1150] = { + [sym_comment] = STATE(1150), + [anon_sym_export] = ACTIONS(3771), + [anon_sym_alias] = ACTIONS(3771), + [anon_sym_let] = ACTIONS(3771), + [anon_sym_let_DASHenv] = ACTIONS(3771), + [anon_sym_mut] = ACTIONS(3771), + [anon_sym_const] = ACTIONS(3771), + [anon_sym_SEMI] = ACTIONS(3771), + [sym_cmd_identifier] = ACTIONS(3771), + [anon_sym_LF] = ACTIONS(3773), + [anon_sym_def] = ACTIONS(3771), + [anon_sym_export_DASHenv] = ACTIONS(3771), + [anon_sym_extern] = ACTIONS(3771), + [anon_sym_module] = ACTIONS(3771), + [anon_sym_use] = ACTIONS(3771), + [anon_sym_LBRACK] = ACTIONS(3771), + [anon_sym_LPAREN] = ACTIONS(3771), + [anon_sym_RPAREN] = ACTIONS(3771), + [anon_sym_DOLLAR] = ACTIONS(3771), + [anon_sym_error] = ACTIONS(3771), + [anon_sym_DASH_DASH] = ACTIONS(3771), + [anon_sym_DASH] = ACTIONS(3771), + [anon_sym_break] = ACTIONS(3771), + [anon_sym_continue] = ACTIONS(3771), + [anon_sym_for] = ACTIONS(3771), + [anon_sym_loop] = ACTIONS(3771), + [anon_sym_while] = ACTIONS(3771), + [anon_sym_do] = ACTIONS(3771), + [anon_sym_if] = ACTIONS(3771), + [anon_sym_match] = ACTIONS(3771), + [anon_sym_LBRACE] = ACTIONS(3771), + [anon_sym_RBRACE] = ACTIONS(3771), + [anon_sym_DOT_DOT] = ACTIONS(3771), + [anon_sym_try] = ACTIONS(3771), + [anon_sym_return] = ACTIONS(3771), + [anon_sym_source] = ACTIONS(3771), + [anon_sym_source_DASHenv] = ACTIONS(3771), + [anon_sym_register] = ACTIONS(3771), + [anon_sym_hide] = ACTIONS(3771), + [anon_sym_hide_DASHenv] = ACTIONS(3771), + [anon_sym_overlay] = ACTIONS(3771), + [anon_sym_as] = ACTIONS(3771), + [anon_sym_where] = ACTIONS(3771), + [anon_sym_not] = ACTIONS(3771), + [anon_sym_DOT] = ACTIONS(1886), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3771), + [anon_sym_DOT_DOT_LT] = ACTIONS(3771), + [anon_sym_null] = ACTIONS(3771), + [anon_sym_true] = ACTIONS(3771), + [anon_sym_false] = ACTIONS(3771), + [aux_sym__val_number_decimal_token1] = ACTIONS(3771), + [aux_sym__val_number_decimal_token2] = ACTIONS(3771), + [anon_sym_DOT2] = ACTIONS(3771), + [aux_sym__val_number_decimal_token3] = ACTIONS(3771), + [aux_sym__val_number_token1] = ACTIONS(3771), + [aux_sym__val_number_token2] = ACTIONS(3771), + [aux_sym__val_number_token3] = ACTIONS(3771), + [aux_sym__val_number_token4] = ACTIONS(3771), + [aux_sym__val_number_token5] = ACTIONS(3771), + [aux_sym__val_number_token6] = ACTIONS(3771), + [anon_sym_0b] = ACTIONS(3771), + [anon_sym_0o] = ACTIONS(3771), + [anon_sym_0x] = ACTIONS(3771), + [sym_val_date] = ACTIONS(3771), + [anon_sym_DQUOTE] = ACTIONS(3771), + [sym__str_single_quotes] = ACTIONS(3771), + [sym__str_back_ticks] = ACTIONS(3771), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3771), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3771), + [anon_sym_CARET] = ACTIONS(3771), + [aux_sym_unquoted_token2] = ACTIONS(1886), [anon_sym_POUND] = ACTIONS(113), }, - [952] = { - [sym_comment] = STATE(952), - [anon_sym_export] = ACTIONS(1418), - [anon_sym_alias] = ACTIONS(1418), - [anon_sym_let] = ACTIONS(1418), - [anon_sym_let_DASHenv] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [sym_cmd_identifier] = ACTIONS(1418), - [anon_sym_def] = ACTIONS(1418), - [anon_sym_export_DASHenv] = ACTIONS(1418), - [anon_sym_extern] = ACTIONS(1418), - [anon_sym_module] = ACTIONS(1418), - [anon_sym_use] = ACTIONS(1418), - [anon_sym_LPAREN] = ACTIONS(1418), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_error] = ACTIONS(1418), - [anon_sym_list] = ACTIONS(1418), - [anon_sym_GT] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_in] = ACTIONS(1418), - [anon_sym_loop] = ACTIONS(1418), - [anon_sym_make] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_else] = ACTIONS(1418), - [anon_sym_match] = ACTIONS(1418), - [anon_sym_RBRACE] = ACTIONS(1418), - [anon_sym_try] = ACTIONS(1418), - [anon_sym_catch] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_source] = ACTIONS(1418), - [anon_sym_source_DASHenv] = ACTIONS(1418), - [anon_sym_register] = ACTIONS(1418), - [anon_sym_hide] = ACTIONS(1418), - [anon_sym_hide_DASHenv] = ACTIONS(1418), - [anon_sym_overlay] = ACTIONS(1418), - [anon_sym_new] = ACTIONS(1418), - [anon_sym_as] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_STAR_STAR] = ACTIONS(1418), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_SLASH] = ACTIONS(1418), - [anon_sym_mod] = ACTIONS(1418), - [anon_sym_SLASH_SLASH] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_bit_DASHshl] = ACTIONS(1418), - [anon_sym_bit_DASHshr] = ACTIONS(1418), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_LT2] = ACTIONS(1418), - [anon_sym_LT_EQ] = ACTIONS(1418), - [anon_sym_GT_EQ] = ACTIONS(1418), - [anon_sym_not_DASHin] = ACTIONS(1418), - [anon_sym_starts_DASHwith] = ACTIONS(1418), - [anon_sym_ends_DASHwith] = ACTIONS(1418), - [anon_sym_EQ_TILDE] = ACTIONS(1418), - [anon_sym_BANG_TILDE] = ACTIONS(1418), - [anon_sym_bit_DASHand] = ACTIONS(1418), - [anon_sym_bit_DASHxor] = ACTIONS(1418), - [anon_sym_bit_DASHor] = ACTIONS(1418), - [anon_sym_and] = ACTIONS(1418), - [anon_sym_xor] = ACTIONS(1418), - [anon_sym_or] = ACTIONS(1418), - [aux_sym__val_number_decimal_token1] = ACTIONS(1418), - [aux_sym__val_number_decimal_token2] = ACTIONS(1418), - [anon_sym_DOT2] = ACTIONS(1418), - [aux_sym__val_number_decimal_token3] = ACTIONS(1418), - [aux_sym__val_number_token1] = ACTIONS(1418), - [aux_sym__val_number_token2] = ACTIONS(1418), - [aux_sym__val_number_token3] = ACTIONS(1418), - [aux_sym__val_number_token4] = ACTIONS(1418), - [aux_sym__val_number_token5] = ACTIONS(1418), - [aux_sym__val_number_token6] = ACTIONS(1418), - [anon_sym_DQUOTE] = ACTIONS(1418), - [sym__str_single_quotes] = ACTIONS(1418), - [sym__str_back_ticks] = ACTIONS(1418), - [sym__entry_separator] = ACTIONS(1420), - [aux_sym__record_key_token2] = ACTIONS(1418), + [1151] = { + [sym_comment] = STATE(1151), + [anon_sym_export] = ACTIONS(3644), + [anon_sym_alias] = ACTIONS(3644), + [anon_sym_let] = ACTIONS(3644), + [anon_sym_let_DASHenv] = ACTIONS(3644), + [anon_sym_mut] = ACTIONS(3644), + [anon_sym_const] = ACTIONS(3644), + [anon_sym_SEMI] = ACTIONS(3644), + [sym_cmd_identifier] = ACTIONS(3644), + [anon_sym_LF] = ACTIONS(3646), + [anon_sym_def] = ACTIONS(3644), + [anon_sym_export_DASHenv] = ACTIONS(3644), + [anon_sym_extern] = ACTIONS(3644), + [anon_sym_module] = ACTIONS(3644), + [anon_sym_use] = ACTIONS(3644), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_LPAREN] = ACTIONS(3644), + [anon_sym_RPAREN] = ACTIONS(3644), + [anon_sym_DOLLAR] = ACTIONS(3644), + [anon_sym_error] = ACTIONS(3644), + [anon_sym_DASH_DASH] = ACTIONS(3644), + [anon_sym_DASH] = ACTIONS(3644), + [anon_sym_break] = ACTIONS(3644), + [anon_sym_continue] = ACTIONS(3644), + [anon_sym_for] = ACTIONS(3644), + [anon_sym_loop] = ACTIONS(3644), + [anon_sym_while] = ACTIONS(3644), + [anon_sym_do] = ACTIONS(3644), + [anon_sym_if] = ACTIONS(3644), + [anon_sym_match] = ACTIONS(3644), + [anon_sym_LBRACE] = ACTIONS(3644), + [anon_sym_RBRACE] = ACTIONS(3644), + [anon_sym_DOT_DOT] = ACTIONS(3644), + [anon_sym_try] = ACTIONS(3644), + [anon_sym_return] = ACTIONS(3644), + [anon_sym_source] = ACTIONS(3644), + [anon_sym_source_DASHenv] = ACTIONS(3644), + [anon_sym_register] = ACTIONS(3644), + [anon_sym_hide] = ACTIONS(3644), + [anon_sym_hide_DASHenv] = ACTIONS(3644), + [anon_sym_overlay] = ACTIONS(3644), + [anon_sym_as] = ACTIONS(3644), + [anon_sym_where] = ACTIONS(3644), + [anon_sym_not] = ACTIONS(3644), + [anon_sym_DOT] = ACTIONS(3650), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3644), + [anon_sym_DOT_DOT_LT] = ACTIONS(3644), + [anon_sym_null] = ACTIONS(3644), + [anon_sym_true] = ACTIONS(3644), + [anon_sym_false] = ACTIONS(3644), + [aux_sym__val_number_decimal_token1] = ACTIONS(3644), + [aux_sym__val_number_decimal_token2] = ACTIONS(3644), + [anon_sym_DOT2] = ACTIONS(3644), + [aux_sym__val_number_decimal_token3] = ACTIONS(3644), + [aux_sym__val_number_token1] = ACTIONS(3644), + [aux_sym__val_number_token2] = ACTIONS(3644), + [aux_sym__val_number_token3] = ACTIONS(3644), + [aux_sym__val_number_token4] = ACTIONS(3644), + [aux_sym__val_number_token5] = ACTIONS(3644), + [aux_sym__val_number_token6] = ACTIONS(3644), + [anon_sym_0b] = ACTIONS(3644), + [anon_sym_0o] = ACTIONS(3644), + [anon_sym_0x] = ACTIONS(3644), + [sym_val_date] = ACTIONS(3644), + [anon_sym_DQUOTE] = ACTIONS(3644), + [sym__str_single_quotes] = ACTIONS(3644), + [sym__str_back_ticks] = ACTIONS(3644), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3644), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3644), + [anon_sym_CARET] = ACTIONS(3644), + [aux_sym_unquoted_token2] = ACTIONS(3650), [anon_sym_POUND] = ACTIONS(113), }, - [953] = { - [sym_pipeline] = STATE(2962), - [sym_pipeline_last] = STATE(10451), - [sym__ctrl_expression] = STATE(9270), - [sym_ctrl_do] = STATE(9515), - [sym_ctrl_if] = STATE(9515), - [sym_ctrl_match] = STATE(9515), - [sym_ctrl_try] = STATE(9515), - [sym_ctrl_return] = STATE(9515), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9536), - [sym_where_command] = STATE(8865), - [sym__expression] = STATE(8865), - [sym_expr_unary] = STATE(6379), - [sym__expr_unary_minus] = STATE(6347), - [sym_expr_binary] = STATE(6379), - [sym__expr_binary_expression] = STATE(6784), - [sym_expr_parenthesized] = STATE(5573), - [sym_val_range] = STATE(8689), - [sym__value] = STATE(6379), - [sym_val_nothing] = STATE(6374), - [sym_val_bool] = STATE(6374), - [sym_val_variable] = STATE(5610), - [sym__var] = STATE(4886), - [sym_val_number] = STATE(6374), - [sym__val_number_decimal] = STATE(4698), - [sym__val_number] = STATE(5769), - [sym_val_duration] = STATE(6374), - [sym_val_filesize] = STATE(6374), - [sym_val_binary] = STATE(6374), - [sym_val_string] = STATE(6374), - [sym__str_double_quotes] = STATE(6386), - [sym_val_interpolated] = STATE(6374), - [sym__inter_single_quotes] = STATE(6363), - [sym__inter_double_quotes] = STATE(6365), - [sym_val_list] = STATE(6374), - [sym_val_record] = STATE(6374), - [sym_val_table] = STATE(6374), - [sym_val_closure] = STATE(6374), - [sym_command] = STATE(8865), - [sym_comment] = STATE(953), - [aux_sym_pipeline_repeat1] = STATE(1031), - [sym_cmd_identifier] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(1742), + [1152] = { + [sym_cell_path] = STATE(2062), + [sym_path] = STATE(1192), + [sym_comment] = STATE(1152), + [ts_builtin_sym_end] = ACTIONS(1059), + [anon_sym_export] = ACTIONS(1057), + [anon_sym_alias] = ACTIONS(1057), + [anon_sym_let] = ACTIONS(1057), + [anon_sym_let_DASHenv] = ACTIONS(1057), + [anon_sym_mut] = ACTIONS(1057), + [anon_sym_const] = ACTIONS(1057), + [anon_sym_SEMI] = ACTIONS(1057), + [sym_cmd_identifier] = ACTIONS(1057), + [anon_sym_LF] = ACTIONS(1059), + [anon_sym_def] = ACTIONS(1057), + [anon_sym_export_DASHenv] = ACTIONS(1057), + [anon_sym_extern] = ACTIONS(1057), + [anon_sym_module] = ACTIONS(1057), + [anon_sym_use] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_LPAREN] = ACTIONS(1057), + [anon_sym_DOLLAR] = ACTIONS(1057), + [anon_sym_error] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_break] = ACTIONS(1057), + [anon_sym_continue] = ACTIONS(1057), + [anon_sym_for] = ACTIONS(1057), + [anon_sym_loop] = ACTIONS(1057), + [anon_sym_while] = ACTIONS(1057), + [anon_sym_do] = ACTIONS(1057), + [anon_sym_if] = ACTIONS(1057), + [anon_sym_match] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_try] = ACTIONS(1057), + [anon_sym_return] = ACTIONS(1057), + [anon_sym_source] = ACTIONS(1057), + [anon_sym_source_DASHenv] = ACTIONS(1057), + [anon_sym_register] = ACTIONS(1057), + [anon_sym_hide] = ACTIONS(1057), + [anon_sym_hide_DASHenv] = ACTIONS(1057), + [anon_sym_overlay] = ACTIONS(1057), + [anon_sym_as] = ACTIONS(1057), + [anon_sym_where] = ACTIONS(1057), + [anon_sym_not] = ACTIONS(1057), + [anon_sym_DOT] = ACTIONS(3785), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1057), + [anon_sym_DOT_DOT_LT] = ACTIONS(1057), + [anon_sym_null] = ACTIONS(1057), + [anon_sym_true] = ACTIONS(1057), + [anon_sym_false] = ACTIONS(1057), + [aux_sym__val_number_decimal_token1] = ACTIONS(1057), + [aux_sym__val_number_decimal_token2] = ACTIONS(1057), + [anon_sym_DOT2] = ACTIONS(1057), + [aux_sym__val_number_decimal_token3] = ACTIONS(1057), + [aux_sym__val_number_token1] = ACTIONS(1057), + [aux_sym__val_number_token2] = ACTIONS(1057), + [aux_sym__val_number_token3] = ACTIONS(1057), + [aux_sym__val_number_token4] = ACTIONS(1057), + [aux_sym__val_number_token5] = ACTIONS(1057), + [aux_sym__val_number_token6] = ACTIONS(1057), + [anon_sym_0b] = ACTIONS(1057), + [anon_sym_0o] = ACTIONS(1057), + [anon_sym_0x] = ACTIONS(1057), + [sym_val_date] = ACTIONS(1057), + [anon_sym_DQUOTE] = ACTIONS(1057), + [sym__str_single_quotes] = ACTIONS(1057), + [sym__str_back_ticks] = ACTIONS(1057), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1057), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1057), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(113), + }, + [1153] = { + [sym_ctrl_do] = STATE(9042), + [sym_ctrl_if] = STATE(9042), + [sym_ctrl_match] = STATE(9042), + [sym_ctrl_try] = STATE(9042), + [sym__expression] = STATE(9042), + [sym_expr_unary] = STATE(5890), + [sym__expr_unary_minus] = STATE(5878), + [sym_expr_binary] = STATE(5890), + [sym__expr_binary_expression] = STATE(6380), + [sym_expr_parenthesized] = STATE(5154), + [sym_val_range] = STATE(8295), + [sym__value] = STATE(5890), + [sym_val_nothing] = STATE(5931), + [sym_val_bool] = STATE(5931), + [sym_val_variable] = STATE(5103), + [sym__var] = STATE(4428), + [sym_val_number] = STATE(5931), + [sym__val_number_decimal] = STATE(4371), + [sym__val_number] = STATE(5285), + [sym_val_duration] = STATE(5931), + [sym_val_filesize] = STATE(5931), + [sym_val_binary] = STATE(5931), + [sym_val_string] = STATE(5931), + [sym__str_double_quotes] = STATE(5888), + [sym_val_interpolated] = STATE(5931), + [sym__inter_single_quotes] = STATE(5935), + [sym__inter_double_quotes] = STATE(5940), + [sym_val_list] = STATE(5931), + [sym_val_record] = STATE(5931), + [sym_val_table] = STATE(5931), + [sym_val_closure] = STATE(5931), + [sym_comment] = STATE(1153), + [ts_builtin_sym_end] = ACTIONS(3588), + [anon_sym_SEMI] = ACTIONS(3586), + [anon_sym_LF] = ACTIONS(3588), + [anon_sym_LBRACK] = ACTIONS(3787), + [anon_sym_LPAREN] = ACTIONS(3789), + [anon_sym_PIPE] = ACTIONS(3586), + [anon_sym_DOLLAR] = ACTIONS(1528), [anon_sym_DASH] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), [anon_sym_do] = ACTIONS(51), [anon_sym_if] = ACTIONS(53), [anon_sym_match] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACE] = ACTIONS(3791), [anon_sym_DOT_DOT] = ACTIONS(59), [anon_sym_try] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_where] = ACTIONS(75), [anon_sym_not] = ACTIONS(77), - [anon_sym_DOT_DOT_EQ] = ACTIONS(79), - [anon_sym_DOT_DOT_LT] = ACTIONS(79), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3793), + [anon_sym_DOT_DOT_LT] = ACTIONS(3793), [anon_sym_null] = ACTIONS(81), [anon_sym_true] = ACTIONS(83), [anon_sym_false] = ACTIONS(83), [aux_sym__val_number_decimal_token1] = ACTIONS(85), - [aux_sym__val_number_decimal_token2] = ACTIONS(87), + [aux_sym__val_number_decimal_token2] = ACTIONS(85), [anon_sym_DOT2] = ACTIONS(89), - [aux_sym__val_number_decimal_token3] = ACTIONS(91), - [aux_sym__val_number_token1] = ACTIONS(93), - [aux_sym__val_number_token2] = ACTIONS(93), - [aux_sym__val_number_token3] = ACTIONS(93), + [aux_sym__val_number_decimal_token3] = ACTIONS(3795), + [aux_sym__val_number_token1] = ACTIONS(95), + [aux_sym__val_number_token2] = ACTIONS(95), + [aux_sym__val_number_token3] = ACTIONS(95), [aux_sym__val_number_token4] = ACTIONS(95), - [aux_sym__val_number_token5] = ACTIONS(93), + [aux_sym__val_number_token5] = ACTIONS(95), [aux_sym__val_number_token6] = ACTIONS(95), [anon_sym_0b] = ACTIONS(97), [anon_sym_0o] = ACTIONS(99), [anon_sym_0x] = ACTIONS(99), - [sym_val_date] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym__str_single_quotes] = ACTIONS(105), - [sym__str_back_ticks] = ACTIONS(105), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(111), - [anon_sym_POUND] = ACTIONS(3), + [sym_val_date] = ACTIONS(3797), + [anon_sym_DQUOTE] = ACTIONS(3799), + [sym__str_single_quotes] = ACTIONS(3801), + [sym__str_back_ticks] = ACTIONS(3801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3803), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3805), + [anon_sym_POUND] = ACTIONS(113), }, - [954] = { - [sym_comment] = STATE(954), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_list] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_make] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_else] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_catch] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_new] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1370), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1370), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [aux_sym__record_key_token2] = ACTIONS(1368), + [1154] = { + [sym_cell_path] = STATE(2166), + [sym_path] = STATE(1169), + [sym_comment] = STATE(1154), + [anon_sym_LBRACK] = ACTIONS(994), + [anon_sym_COMMA] = ACTIONS(994), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_DOLLAR] = ACTIONS(994), + [anon_sym_GT] = ACTIONS(992), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_in] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [anon_sym__] = ACTIONS(992), + [anon_sym_DOT_DOT] = ACTIONS(992), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_STAR_STAR] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_SLASH] = ACTIONS(992), + [anon_sym_mod] = ACTIONS(994), + [anon_sym_SLASH_SLASH] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_bit_DASHshl] = ACTIONS(994), + [anon_sym_bit_DASHshr] = ACTIONS(994), + [anon_sym_EQ_EQ] = ACTIONS(994), + [anon_sym_BANG_EQ] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(992), + [anon_sym_LT_EQ] = ACTIONS(994), + [anon_sym_GT_EQ] = ACTIONS(994), + [anon_sym_not_DASHin] = ACTIONS(994), + [anon_sym_starts_DASHwith] = ACTIONS(994), + [anon_sym_ends_DASHwith] = ACTIONS(994), + [anon_sym_EQ_TILDE] = ACTIONS(994), + [anon_sym_BANG_TILDE] = ACTIONS(994), + [anon_sym_bit_DASHand] = ACTIONS(994), + [anon_sym_bit_DASHxor] = ACTIONS(994), + [anon_sym_bit_DASHor] = ACTIONS(994), + [anon_sym_and] = ACTIONS(994), + [anon_sym_xor] = ACTIONS(994), + [anon_sym_or] = ACTIONS(994), + [anon_sym_DOT] = ACTIONS(3807), + [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), + [anon_sym_DOT2] = ACTIONS(992), + [aux_sym__val_number_decimal_token3] = 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_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [aux_sym_unquoted_token1] = ACTIONS(992), [anon_sym_POUND] = ACTIONS(3), }, - [955] = { - [sym_comment] = STATE(955), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_list] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_make] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_else] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_catch] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_new] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1370), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1370), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [aux_sym__record_key_token2] = ACTIONS(1368), + [1155] = { + [sym__expression] = STATE(8497), + [sym_expr_unary] = STATE(5584), + [sym__expr_unary_minus] = STATE(5585), + [sym_expr_binary] = STATE(5584), + [sym__expr_binary_expression] = STATE(6376), + [sym_expr_parenthesized] = STATE(4932), + [sym_val_range] = STATE(8902), + [sym__val_range] = STATE(10026), + [sym__value] = STATE(5584), + [sym_val_nothing] = STATE(5712), + [sym_val_bool] = STATE(5355), + [sym_val_variable] = STATE(4935), + [sym__var] = STATE(4392), + [sym_val_number] = STATE(5712), + [sym__val_number_decimal] = STATE(4180), + [sym__val_number] = STATE(5721), + [sym_val_duration] = STATE(5712), + [sym_val_filesize] = STATE(5712), + [sym_val_binary] = STATE(5712), + [sym_val_string] = STATE(5712), + [sym__str_double_quotes] = STATE(5860), + [sym_val_interpolated] = STATE(5712), + [sym__inter_single_quotes] = STATE(5666), + [sym__inter_double_quotes] = STATE(5668), + [sym_val_list] = STATE(5712), + [sym_val_record] = STATE(5712), + [sym_val_table] = STATE(5712), + [sym_val_closure] = STATE(5712), + [sym_unquoted] = STATE(8506), + [sym__unquoted_anonymous_prefix] = STATE(10802), + [sym_comment] = STATE(1155), + [anon_sym_LBRACK] = ACTIONS(3014), + [anon_sym_LPAREN] = ACTIONS(3016), + [anon_sym_DOLLAR] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(3809), + [anon_sym_LBRACE] = ACTIONS(3020), + [anon_sym_DOT_DOT] = ACTIONS(3811), + [anon_sym_not] = ACTIONS(3813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3815), + [anon_sym_DOT_DOT_LT] = ACTIONS(3815), + [anon_sym_null] = ACTIONS(3817), + [anon_sym_true] = ACTIONS(3819), + [anon_sym_false] = ACTIONS(3819), + [aux_sym__val_number_decimal_token1] = ACTIONS(3821), + [aux_sym__val_number_decimal_token2] = ACTIONS(3823), + [anon_sym_DOT2] = ACTIONS(3825), + [aux_sym__val_number_decimal_token3] = ACTIONS(3827), + [aux_sym__val_number_token1] = ACTIONS(3032), + [aux_sym__val_number_token2] = ACTIONS(3032), + [aux_sym__val_number_token3] = ACTIONS(3032), + [aux_sym__val_number_token4] = ACTIONS(3829), + [aux_sym__val_number_token5] = ACTIONS(3829), + [aux_sym__val_number_token6] = ACTIONS(3829), + [anon_sym_0b] = ACTIONS(1814), + [anon_sym_0o] = ACTIONS(1816), + [anon_sym_0x] = ACTIONS(1816), + [sym_val_date] = ACTIONS(3831), + [anon_sym_DQUOTE] = ACTIONS(3038), + [sym__str_single_quotes] = ACTIONS(3040), + [sym__str_back_ticks] = ACTIONS(3040), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3042), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3044), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(1830), [anon_sym_POUND] = ACTIONS(3), }, - [956] = { - [sym_comment] = STATE(956), - [anon_sym_export] = ACTIONS(1059), - [anon_sym_alias] = ACTIONS(1059), - [anon_sym_let] = ACTIONS(1059), - [anon_sym_let_DASHenv] = ACTIONS(1059), - [anon_sym_mut] = ACTIONS(1059), - [anon_sym_const] = ACTIONS(1059), - [sym_cmd_identifier] = ACTIONS(1059), - [anon_sym_def] = ACTIONS(1059), - [anon_sym_export_DASHenv] = ACTIONS(1059), - [anon_sym_extern] = ACTIONS(1059), - [anon_sym_module] = ACTIONS(1059), - [anon_sym_use] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [anon_sym_DOLLAR] = ACTIONS(1061), - [anon_sym_error] = ACTIONS(1059), - [anon_sym_list] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_break] = ACTIONS(1059), - [anon_sym_continue] = ACTIONS(1059), - [anon_sym_for] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1059), - [anon_sym_loop] = ACTIONS(1059), - [anon_sym_make] = ACTIONS(1059), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_do] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1059), - [anon_sym_else] = ACTIONS(1059), - [anon_sym_match] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(1061), - [anon_sym_try] = ACTIONS(1059), - [anon_sym_catch] = ACTIONS(1059), - [anon_sym_return] = ACTIONS(1059), - [anon_sym_source] = ACTIONS(1059), - [anon_sym_source_DASHenv] = ACTIONS(1059), - [anon_sym_register] = ACTIONS(1059), - [anon_sym_hide] = ACTIONS(1059), - [anon_sym_hide_DASHenv] = ACTIONS(1059), - [anon_sym_overlay] = ACTIONS(1059), - [anon_sym_new] = ACTIONS(1059), - [anon_sym_as] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_STAR_STAR] = ACTIONS(1061), - [anon_sym_PLUS_PLUS] = ACTIONS(1061), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_mod] = ACTIONS(1059), - [anon_sym_SLASH_SLASH] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_bit_DASHshl] = ACTIONS(1059), - [anon_sym_bit_DASHshr] = ACTIONS(1059), - [anon_sym_EQ_EQ] = ACTIONS(1061), - [anon_sym_BANG_EQ] = ACTIONS(1061), - [anon_sym_LT2] = ACTIONS(1059), - [anon_sym_LT_EQ] = ACTIONS(1061), - [anon_sym_GT_EQ] = ACTIONS(1061), - [anon_sym_not_DASHin] = ACTIONS(1059), - [anon_sym_starts_DASHwith] = ACTIONS(1059), - [anon_sym_ends_DASHwith] = ACTIONS(1059), - [anon_sym_EQ_TILDE] = ACTIONS(1061), - [anon_sym_BANG_TILDE] = ACTIONS(1061), - [anon_sym_bit_DASHand] = ACTIONS(1059), - [anon_sym_bit_DASHxor] = ACTIONS(1059), - [anon_sym_bit_DASHor] = ACTIONS(1059), - [anon_sym_and] = ACTIONS(1059), - [anon_sym_xor] = ACTIONS(1059), - [anon_sym_or] = ACTIONS(1059), - [aux_sym__val_number_decimal_token1] = ACTIONS(1059), - [aux_sym__val_number_decimal_token2] = ACTIONS(1061), - [anon_sym_DOT2] = ACTIONS(1061), - [aux_sym__val_number_decimal_token3] = ACTIONS(1061), - [aux_sym__val_number_token1] = ACTIONS(1061), - [aux_sym__val_number_token2] = ACTIONS(1061), - [aux_sym__val_number_token3] = ACTIONS(1061), - [aux_sym__val_number_token4] = ACTIONS(1059), - [aux_sym__val_number_token5] = ACTIONS(1061), - [aux_sym__val_number_token6] = ACTIONS(1059), - [anon_sym_DQUOTE] = ACTIONS(1061), - [sym__str_single_quotes] = ACTIONS(1061), - [sym__str_back_ticks] = ACTIONS(1061), - [aux_sym__record_key_token2] = ACTIONS(1059), - [anon_sym_POUND] = ACTIONS(3), + [1156] = { + [sym_comment] = STATE(1156), + [ts_builtin_sym_end] = ACTIONS(940), + [anon_sym_SEMI] = ACTIONS(938), + [anon_sym_LF] = ACTIONS(940), + [anon_sym_LBRACK] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(938), + [anon_sym_PIPE] = ACTIONS(938), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_in] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_STAR_STAR] = ACTIONS(938), + [anon_sym_PLUS_PLUS] = ACTIONS(938), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(938), + [anon_sym_SLASH_SLASH] = ACTIONS(938), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_bit_DASHshl] = ACTIONS(938), + [anon_sym_bit_DASHshr] = ACTIONS(938), + [anon_sym_EQ_EQ] = ACTIONS(938), + [anon_sym_BANG_EQ] = ACTIONS(938), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(938), + [anon_sym_GT_EQ] = ACTIONS(938), + [anon_sym_not_DASHin] = ACTIONS(938), + [anon_sym_starts_DASHwith] = ACTIONS(938), + [anon_sym_ends_DASHwith] = ACTIONS(938), + [anon_sym_EQ_TILDE] = ACTIONS(938), + [anon_sym_BANG_TILDE] = ACTIONS(938), + [anon_sym_bit_DASHand] = ACTIONS(938), + [anon_sym_bit_DASHxor] = ACTIONS(938), + [anon_sym_bit_DASHor] = ACTIONS(938), + [anon_sym_and] = ACTIONS(938), + [anon_sym_xor] = ACTIONS(938), + [anon_sym_or] = ACTIONS(938), + [anon_sym_not] = ACTIONS(938), + [anon_sym_DOT_DOT2] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(3833), + [anon_sym_DOT_DOT_EQ] = ACTIONS(938), + [anon_sym_DOT_DOT_LT] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(965), + [anon_sym_DOT_DOT_LT2] = ACTIONS(965), + [anon_sym_null] = ACTIONS(938), + [anon_sym_true] = ACTIONS(938), + [anon_sym_false] = ACTIONS(938), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(938), + [anon_sym_DOT2] = ACTIONS(938), + [aux_sym__val_number_decimal_token3] = ACTIONS(938), + [aux_sym__val_number_token1] = ACTIONS(938), + [aux_sym__val_number_token2] = ACTIONS(938), + [aux_sym__val_number_token3] = ACTIONS(938), + [aux_sym__val_number_token4] = ACTIONS(938), + [aux_sym__val_number_token5] = ACTIONS(938), + [aux_sym__val_number_token6] = ACTIONS(938), + [anon_sym_0b] = ACTIONS(938), + [sym_filesize_unit] = ACTIONS(3835), + [sym_duration_unit] = ACTIONS(3837), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym__str_single_quotes] = ACTIONS(938), + [sym__str_back_ticks] = ACTIONS(938), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(938), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(938), + [aux_sym_unquoted_token5] = ACTIONS(3839), + [anon_sym_POUND] = ACTIONS(113), }, - [957] = { - [sym_comment] = STATE(957), - [anon_sym_export] = ACTIONS(1298), - [anon_sym_alias] = ACTIONS(1298), - [anon_sym_let] = ACTIONS(1298), - [anon_sym_let_DASHenv] = ACTIONS(1298), - [anon_sym_mut] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [sym_cmd_identifier] = ACTIONS(1298), - [anon_sym_def] = ACTIONS(1298), - [anon_sym_export_DASHenv] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_module] = ACTIONS(1298), - [anon_sym_use] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1300), - [anon_sym_DOLLAR] = ACTIONS(1300), - [anon_sym_error] = ACTIONS(1298), - [anon_sym_list] = ACTIONS(1298), - [anon_sym_GT] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_in] = ACTIONS(1298), - [anon_sym_loop] = ACTIONS(1298), - [anon_sym_make] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_match] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_try] = ACTIONS(1298), - [anon_sym_catch] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_source] = ACTIONS(1298), - [anon_sym_source_DASHenv] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_hide] = ACTIONS(1298), - [anon_sym_hide_DASHenv] = ACTIONS(1298), - [anon_sym_overlay] = ACTIONS(1298), - [anon_sym_new] = ACTIONS(1298), - [anon_sym_as] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_STAR_STAR] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_SLASH] = ACTIONS(1298), - [anon_sym_mod] = ACTIONS(1298), - [anon_sym_SLASH_SLASH] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_bit_DASHshl] = ACTIONS(1298), - [anon_sym_bit_DASHshr] = ACTIONS(1298), - [anon_sym_EQ_EQ] = ACTIONS(1300), - [anon_sym_BANG_EQ] = ACTIONS(1300), - [anon_sym_LT2] = ACTIONS(1298), - [anon_sym_LT_EQ] = ACTIONS(1300), - [anon_sym_GT_EQ] = ACTIONS(1300), - [anon_sym_not_DASHin] = ACTIONS(1298), - [anon_sym_starts_DASHwith] = ACTIONS(1298), - [anon_sym_ends_DASHwith] = ACTIONS(1298), - [anon_sym_EQ_TILDE] = ACTIONS(1300), - [anon_sym_BANG_TILDE] = ACTIONS(1300), - [anon_sym_bit_DASHand] = ACTIONS(1298), - [anon_sym_bit_DASHxor] = ACTIONS(1298), - [anon_sym_bit_DASHor] = ACTIONS(1298), - [anon_sym_and] = ACTIONS(1298), - [anon_sym_xor] = ACTIONS(1298), - [anon_sym_or] = ACTIONS(1298), - [aux_sym__val_number_decimal_token1] = ACTIONS(1298), - [aux_sym__val_number_decimal_token2] = ACTIONS(1300), - [anon_sym_DOT2] = ACTIONS(1300), - [aux_sym__val_number_decimal_token3] = ACTIONS(1300), - [aux_sym__val_number_token1] = ACTIONS(1300), - [aux_sym__val_number_token2] = ACTIONS(1300), - [aux_sym__val_number_token3] = ACTIONS(1300), - [aux_sym__val_number_token4] = ACTIONS(1298), - [aux_sym__val_number_token5] = ACTIONS(1300), - [aux_sym__val_number_token6] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym__str_single_quotes] = ACTIONS(1300), - [sym__str_back_ticks] = ACTIONS(1300), - [aux_sym__record_key_token2] = ACTIONS(1298), - [anon_sym_POUND] = ACTIONS(3), + [1157] = { + [sym_comment] = STATE(1157), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_alias] = ACTIONS(1159), + [anon_sym_let] = ACTIONS(1159), + [anon_sym_let_DASHenv] = ACTIONS(1159), + [anon_sym_mut] = ACTIONS(1159), + [anon_sym_const] = ACTIONS(1159), + [anon_sym_SEMI] = ACTIONS(1159), + [sym_cmd_identifier] = ACTIONS(1159), + [anon_sym_LF] = ACTIONS(1161), + [anon_sym_def] = ACTIONS(1159), + [anon_sym_export_DASHenv] = ACTIONS(1159), + [anon_sym_extern] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_use] = ACTIONS(1159), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LPAREN] = ACTIONS(1159), + [anon_sym_RPAREN] = ACTIONS(1159), + [anon_sym_DOLLAR] = ACTIONS(1159), + [anon_sym_error] = ACTIONS(1159), + [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_DASH] = ACTIONS(1159), + [anon_sym_break] = ACTIONS(1159), + [anon_sym_continue] = ACTIONS(1159), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_loop] = ACTIONS(1159), + [anon_sym_while] = ACTIONS(1159), + [anon_sym_do] = ACTIONS(1159), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_match] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(1159), + [anon_sym_RBRACE] = ACTIONS(1159), + [anon_sym_DOT_DOT] = ACTIONS(1159), + [anon_sym_try] = ACTIONS(1159), + [anon_sym_return] = ACTIONS(1159), + [anon_sym_source] = ACTIONS(1159), + [anon_sym_source_DASHenv] = ACTIONS(1159), + [anon_sym_register] = ACTIONS(1159), + [anon_sym_hide] = ACTIONS(1159), + [anon_sym_hide_DASHenv] = ACTIONS(1159), + [anon_sym_overlay] = ACTIONS(1159), + [anon_sym_as] = ACTIONS(1159), + [anon_sym_where] = ACTIONS(1159), + [anon_sym_not] = ACTIONS(1159), + [anon_sym_LPAREN2] = ACTIONS(3727), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1159), + [anon_sym_DOT_DOT_LT] = ACTIONS(1159), + [anon_sym_null] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1159), + [anon_sym_false] = ACTIONS(1159), + [aux_sym__val_number_decimal_token1] = ACTIONS(1159), + [aux_sym__val_number_decimal_token2] = ACTIONS(1159), + [anon_sym_DOT2] = ACTIONS(1159), + [aux_sym__val_number_decimal_token3] = ACTIONS(1159), + [aux_sym__val_number_token1] = ACTIONS(1159), + [aux_sym__val_number_token2] = ACTIONS(1159), + [aux_sym__val_number_token3] = ACTIONS(1159), + [aux_sym__val_number_token4] = ACTIONS(1159), + [aux_sym__val_number_token5] = ACTIONS(1159), + [aux_sym__val_number_token6] = ACTIONS(1159), + [anon_sym_0b] = ACTIONS(1159), + [anon_sym_0o] = ACTIONS(1159), + [anon_sym_0x] = ACTIONS(1159), + [sym_val_date] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(1159), + [sym__str_single_quotes] = ACTIONS(1159), + [sym__str_back_ticks] = ACTIONS(1159), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1159), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1159), + [anon_sym_CARET] = ACTIONS(1159), + [aux_sym_unquoted_token6] = ACTIONS(1163), + [anon_sym_POUND] = ACTIONS(113), }, - [958] = { - [sym_comment] = STATE(958), - [anon_sym_export] = ACTIONS(1247), - [anon_sym_alias] = ACTIONS(1247), - [anon_sym_let] = ACTIONS(1247), - [anon_sym_let_DASHenv] = ACTIONS(1247), - [anon_sym_mut] = ACTIONS(1247), - [anon_sym_const] = ACTIONS(1247), - [sym_cmd_identifier] = ACTIONS(1247), - [anon_sym_def] = ACTIONS(1247), - [anon_sym_export_DASHenv] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1247), - [anon_sym_module] = ACTIONS(1247), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_LPAREN] = ACTIONS(1249), - [anon_sym_DOLLAR] = ACTIONS(1249), - [anon_sym_error] = ACTIONS(1247), - [anon_sym_list] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1247), - [anon_sym_break] = ACTIONS(1247), - [anon_sym_continue] = ACTIONS(1247), - [anon_sym_for] = ACTIONS(1247), - [anon_sym_in] = ACTIONS(1247), - [anon_sym_loop] = ACTIONS(1247), - [anon_sym_make] = ACTIONS(1247), - [anon_sym_while] = ACTIONS(1247), - [anon_sym_do] = ACTIONS(1247), - [anon_sym_if] = ACTIONS(1247), - [anon_sym_else] = ACTIONS(1247), - [anon_sym_match] = ACTIONS(1247), - [anon_sym_RBRACE] = ACTIONS(1249), - [anon_sym_try] = ACTIONS(1247), - [anon_sym_catch] = ACTIONS(1247), - [anon_sym_return] = ACTIONS(1247), - [anon_sym_source] = ACTIONS(1247), - [anon_sym_source_DASHenv] = ACTIONS(1247), - [anon_sym_register] = ACTIONS(1247), - [anon_sym_hide] = ACTIONS(1247), - [anon_sym_hide_DASHenv] = ACTIONS(1247), - [anon_sym_overlay] = ACTIONS(1247), - [anon_sym_new] = ACTIONS(1247), - [anon_sym_as] = ACTIONS(1247), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_STAR_STAR] = ACTIONS(1249), - [anon_sym_PLUS_PLUS] = ACTIONS(1249), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_mod] = ACTIONS(1247), - [anon_sym_SLASH_SLASH] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1247), - [anon_sym_bit_DASHshl] = ACTIONS(1247), - [anon_sym_bit_DASHshr] = ACTIONS(1247), - [anon_sym_EQ_EQ] = ACTIONS(1249), - [anon_sym_BANG_EQ] = ACTIONS(1249), - [anon_sym_LT2] = ACTIONS(1247), - [anon_sym_LT_EQ] = ACTIONS(1249), - [anon_sym_GT_EQ] = ACTIONS(1249), - [anon_sym_not_DASHin] = ACTIONS(1247), - [anon_sym_starts_DASHwith] = ACTIONS(1247), - [anon_sym_ends_DASHwith] = ACTIONS(1247), - [anon_sym_EQ_TILDE] = ACTIONS(1249), - [anon_sym_BANG_TILDE] = ACTIONS(1249), - [anon_sym_bit_DASHand] = ACTIONS(1247), - [anon_sym_bit_DASHxor] = ACTIONS(1247), - [anon_sym_bit_DASHor] = ACTIONS(1247), - [anon_sym_and] = ACTIONS(1247), - [anon_sym_xor] = ACTIONS(1247), - [anon_sym_or] = ACTIONS(1247), - [aux_sym__val_number_decimal_token1] = ACTIONS(1247), - [aux_sym__val_number_decimal_token2] = ACTIONS(1249), - [anon_sym_DOT2] = ACTIONS(1249), - [aux_sym__val_number_decimal_token3] = ACTIONS(1249), - [aux_sym__val_number_token1] = ACTIONS(1249), - [aux_sym__val_number_token2] = ACTIONS(1249), - [aux_sym__val_number_token3] = ACTIONS(1249), - [aux_sym__val_number_token4] = ACTIONS(1247), - [aux_sym__val_number_token5] = ACTIONS(1249), - [aux_sym__val_number_token6] = ACTIONS(1247), - [anon_sym_DQUOTE] = ACTIONS(1249), - [sym__str_single_quotes] = ACTIONS(1249), - [sym__str_back_ticks] = ACTIONS(1249), - [aux_sym__record_key_token2] = ACTIONS(1247), - [anon_sym_POUND] = ACTIONS(3), + [1158] = { + [sym_comment] = STATE(1158), + [anon_sym_export] = ACTIONS(1129), + [anon_sym_alias] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_let_DASHenv] = ACTIONS(1129), + [anon_sym_mut] = ACTIONS(1129), + [anon_sym_const] = ACTIONS(1129), + [anon_sym_SEMI] = ACTIONS(1129), + [sym_cmd_identifier] = ACTIONS(1129), + [anon_sym_LF] = ACTIONS(1131), + [anon_sym_def] = ACTIONS(1129), + [anon_sym_export_DASHenv] = ACTIONS(1129), + [anon_sym_extern] = ACTIONS(1129), + [anon_sym_module] = ACTIONS(1129), + [anon_sym_use] = ACTIONS(1129), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(1129), + [anon_sym_RPAREN] = ACTIONS(1129), + [anon_sym_DOLLAR] = ACTIONS(1129), + [anon_sym_error] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_break] = ACTIONS(1129), + [anon_sym_continue] = ACTIONS(1129), + [anon_sym_for] = ACTIONS(1129), + [anon_sym_loop] = ACTIONS(1129), + [anon_sym_while] = ACTIONS(1129), + [anon_sym_do] = ACTIONS(1129), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(1129), + [anon_sym_RBRACE] = ACTIONS(1129), + [anon_sym_DOT_DOT] = ACTIONS(1129), + [anon_sym_try] = ACTIONS(1129), + [anon_sym_return] = ACTIONS(1129), + [anon_sym_source] = ACTIONS(1129), + [anon_sym_source_DASHenv] = ACTIONS(1129), + [anon_sym_register] = ACTIONS(1129), + [anon_sym_hide] = ACTIONS(1129), + [anon_sym_hide_DASHenv] = ACTIONS(1129), + [anon_sym_overlay] = ACTIONS(1129), + [anon_sym_as] = ACTIONS(1129), + [anon_sym_where] = ACTIONS(1129), + [anon_sym_not] = ACTIONS(1129), + [anon_sym_LPAREN2] = ACTIONS(3841), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1129), + [anon_sym_DOT_DOT_LT] = ACTIONS(1129), + [anon_sym_null] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1129), + [anon_sym_false] = ACTIONS(1129), + [aux_sym__val_number_decimal_token1] = ACTIONS(1129), + [aux_sym__val_number_decimal_token2] = ACTIONS(1129), + [anon_sym_DOT2] = ACTIONS(1129), + [aux_sym__val_number_decimal_token3] = ACTIONS(1129), + [aux_sym__val_number_token1] = ACTIONS(1129), + [aux_sym__val_number_token2] = ACTIONS(1129), + [aux_sym__val_number_token3] = ACTIONS(1129), + [aux_sym__val_number_token4] = ACTIONS(1129), + [aux_sym__val_number_token5] = ACTIONS(1129), + [aux_sym__val_number_token6] = ACTIONS(1129), + [anon_sym_0b] = ACTIONS(1129), + [anon_sym_0o] = ACTIONS(1129), + [anon_sym_0x] = ACTIONS(1129), + [sym_val_date] = ACTIONS(1129), + [anon_sym_DQUOTE] = ACTIONS(1129), + [sym__str_single_quotes] = ACTIONS(1129), + [sym__str_back_ticks] = ACTIONS(1129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1129), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1129), + [anon_sym_CARET] = ACTIONS(1129), + [aux_sym_unquoted_token6] = ACTIONS(1133), + [anon_sym_POUND] = ACTIONS(113), }, - [959] = { - [sym_comment] = STATE(959), - [anon_sym_export] = ACTIONS(1172), - [anon_sym_alias] = ACTIONS(1172), - [anon_sym_let] = ACTIONS(1172), - [anon_sym_let_DASHenv] = ACTIONS(1172), - [anon_sym_mut] = ACTIONS(1172), - [anon_sym_const] = ACTIONS(1172), - [sym_cmd_identifier] = ACTIONS(1172), - [anon_sym_def] = ACTIONS(1172), - [anon_sym_export_DASHenv] = ACTIONS(1172), - [anon_sym_extern] = ACTIONS(1172), - [anon_sym_module] = ACTIONS(1172), - [anon_sym_use] = ACTIONS(1172), - [anon_sym_LPAREN] = ACTIONS(1174), - [anon_sym_DOLLAR] = ACTIONS(1174), - [anon_sym_error] = ACTIONS(1172), - [anon_sym_list] = ACTIONS(1172), - [anon_sym_GT] = ACTIONS(1172), - [anon_sym_DASH] = ACTIONS(1172), - [anon_sym_break] = ACTIONS(1172), - [anon_sym_continue] = ACTIONS(1172), - [anon_sym_for] = ACTIONS(1172), - [anon_sym_in] = ACTIONS(1172), - [anon_sym_loop] = ACTIONS(1172), - [anon_sym_make] = ACTIONS(1172), - [anon_sym_while] = ACTIONS(1172), - [anon_sym_do] = ACTIONS(1172), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_else] = ACTIONS(1172), - [anon_sym_match] = ACTIONS(1172), - [anon_sym_RBRACE] = ACTIONS(1174), - [anon_sym_try] = ACTIONS(1172), - [anon_sym_catch] = ACTIONS(1172), - [anon_sym_return] = ACTIONS(1172), - [anon_sym_source] = ACTIONS(1172), - [anon_sym_source_DASHenv] = ACTIONS(1172), - [anon_sym_register] = ACTIONS(1172), - [anon_sym_hide] = ACTIONS(1172), - [anon_sym_hide_DASHenv] = ACTIONS(1172), - [anon_sym_overlay] = ACTIONS(1172), - [anon_sym_new] = ACTIONS(1172), - [anon_sym_as] = ACTIONS(1172), - [anon_sym_STAR] = ACTIONS(1172), - [anon_sym_STAR_STAR] = ACTIONS(1174), - [anon_sym_PLUS_PLUS] = ACTIONS(1174), - [anon_sym_SLASH] = ACTIONS(1172), - [anon_sym_mod] = ACTIONS(1172), - [anon_sym_SLASH_SLASH] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1172), - [anon_sym_bit_DASHshl] = ACTIONS(1172), - [anon_sym_bit_DASHshr] = ACTIONS(1172), - [anon_sym_EQ_EQ] = ACTIONS(1174), - [anon_sym_BANG_EQ] = ACTIONS(1174), - [anon_sym_LT2] = ACTIONS(1172), - [anon_sym_LT_EQ] = ACTIONS(1174), - [anon_sym_GT_EQ] = ACTIONS(1174), - [anon_sym_not_DASHin] = ACTIONS(1172), - [anon_sym_starts_DASHwith] = ACTIONS(1172), - [anon_sym_ends_DASHwith] = ACTIONS(1172), - [anon_sym_EQ_TILDE] = ACTIONS(1174), - [anon_sym_BANG_TILDE] = ACTIONS(1174), - [anon_sym_bit_DASHand] = ACTIONS(1172), - [anon_sym_bit_DASHxor] = ACTIONS(1172), - [anon_sym_bit_DASHor] = ACTIONS(1172), - [anon_sym_and] = ACTIONS(1172), - [anon_sym_xor] = ACTIONS(1172), - [anon_sym_or] = ACTIONS(1172), - [aux_sym__val_number_decimal_token1] = ACTIONS(1172), - [aux_sym__val_number_decimal_token2] = ACTIONS(1174), - [anon_sym_DOT2] = ACTIONS(1174), - [aux_sym__val_number_decimal_token3] = ACTIONS(1174), - [aux_sym__val_number_token1] = ACTIONS(1174), - [aux_sym__val_number_token2] = ACTIONS(1174), - [aux_sym__val_number_token3] = ACTIONS(1174), - [aux_sym__val_number_token4] = ACTIONS(1172), - [aux_sym__val_number_token5] = ACTIONS(1174), - [aux_sym__val_number_token6] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(1174), - [sym__str_single_quotes] = ACTIONS(1174), - [sym__str_back_ticks] = ACTIONS(1174), - [aux_sym__record_key_token2] = ACTIONS(1172), - [anon_sym_POUND] = ACTIONS(3), + [1159] = { + [sym_comment] = STATE(1159), + [anon_sym_export] = ACTIONS(1135), + [anon_sym_alias] = ACTIONS(1135), + [anon_sym_let] = ACTIONS(1135), + [anon_sym_let_DASHenv] = ACTIONS(1135), + [anon_sym_mut] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_SEMI] = ACTIONS(1135), + [sym_cmd_identifier] = ACTIONS(1135), + [anon_sym_LF] = ACTIONS(1137), + [anon_sym_def] = ACTIONS(1135), + [anon_sym_export_DASHenv] = ACTIONS(1135), + [anon_sym_extern] = ACTIONS(1135), + [anon_sym_module] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1135), + [anon_sym_LPAREN] = ACTIONS(1135), + [anon_sym_RPAREN] = ACTIONS(1135), + [anon_sym_DOLLAR] = ACTIONS(1135), + [anon_sym_error] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1135), + [anon_sym_for] = ACTIONS(1135), + [anon_sym_loop] = ACTIONS(1135), + [anon_sym_while] = ACTIONS(1135), + [anon_sym_do] = ACTIONS(1135), + [anon_sym_if] = ACTIONS(1135), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1135), + [anon_sym_RBRACE] = ACTIONS(1135), + [anon_sym_DOT_DOT] = ACTIONS(1135), + [anon_sym_try] = ACTIONS(1135), + [anon_sym_return] = ACTIONS(1135), + [anon_sym_source] = ACTIONS(1135), + [anon_sym_source_DASHenv] = ACTIONS(1135), + [anon_sym_register] = ACTIONS(1135), + [anon_sym_hide] = ACTIONS(1135), + [anon_sym_hide_DASHenv] = ACTIONS(1135), + [anon_sym_overlay] = ACTIONS(1135), + [anon_sym_as] = ACTIONS(1135), + [anon_sym_where] = ACTIONS(1135), + [anon_sym_not] = ACTIONS(1135), + [anon_sym_LPAREN2] = ACTIONS(3841), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1135), + [anon_sym_DOT_DOT_LT] = ACTIONS(1135), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_true] = ACTIONS(1135), + [anon_sym_false] = ACTIONS(1135), + [aux_sym__val_number_decimal_token1] = ACTIONS(1135), + [aux_sym__val_number_decimal_token2] = ACTIONS(1135), + [anon_sym_DOT2] = ACTIONS(1135), + [aux_sym__val_number_decimal_token3] = ACTIONS(1135), + [aux_sym__val_number_token1] = ACTIONS(1135), + [aux_sym__val_number_token2] = ACTIONS(1135), + [aux_sym__val_number_token3] = ACTIONS(1135), + [aux_sym__val_number_token4] = ACTIONS(1135), + [aux_sym__val_number_token5] = ACTIONS(1135), + [aux_sym__val_number_token6] = ACTIONS(1135), + [anon_sym_0b] = ACTIONS(1135), + [anon_sym_0o] = ACTIONS(1135), + [anon_sym_0x] = ACTIONS(1135), + [sym_val_date] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1135), + [sym__str_single_quotes] = ACTIONS(1135), + [sym__str_back_ticks] = ACTIONS(1135), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1135), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1135), + [anon_sym_CARET] = ACTIONS(1135), + [aux_sym_unquoted_token6] = ACTIONS(1133), + [anon_sym_POUND] = ACTIONS(113), }, - [960] = { - [sym_comment] = STATE(960), - [anon_sym_export] = ACTIONS(1063), - [anon_sym_alias] = ACTIONS(1063), - [anon_sym_let] = ACTIONS(1063), - [anon_sym_let_DASHenv] = ACTIONS(1063), - [anon_sym_mut] = ACTIONS(1063), - [anon_sym_const] = ACTIONS(1063), - [sym_cmd_identifier] = ACTIONS(1063), - [anon_sym_def] = ACTIONS(1063), - [anon_sym_export_DASHenv] = ACTIONS(1063), - [anon_sym_extern] = ACTIONS(1063), - [anon_sym_module] = ACTIONS(1063), - [anon_sym_use] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1065), - [anon_sym_DOLLAR] = ACTIONS(1065), - [anon_sym_error] = ACTIONS(1063), - [anon_sym_list] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_break] = ACTIONS(1063), - [anon_sym_continue] = ACTIONS(1063), - [anon_sym_for] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1063), - [anon_sym_loop] = ACTIONS(1063), - [anon_sym_make] = ACTIONS(1063), - [anon_sym_while] = ACTIONS(1063), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_if] = ACTIONS(1063), - [anon_sym_else] = ACTIONS(1063), - [anon_sym_match] = ACTIONS(1063), - [anon_sym_RBRACE] = ACTIONS(1065), - [anon_sym_try] = ACTIONS(1063), - [anon_sym_catch] = ACTIONS(1063), - [anon_sym_return] = ACTIONS(1063), - [anon_sym_source] = ACTIONS(1063), - [anon_sym_source_DASHenv] = ACTIONS(1063), - [anon_sym_register] = ACTIONS(1063), - [anon_sym_hide] = ACTIONS(1063), - [anon_sym_hide_DASHenv] = ACTIONS(1063), - [anon_sym_overlay] = ACTIONS(1063), - [anon_sym_new] = ACTIONS(1063), - [anon_sym_as] = ACTIONS(1063), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_STAR_STAR] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_SLASH] = ACTIONS(1063), - [anon_sym_mod] = ACTIONS(1063), - [anon_sym_SLASH_SLASH] = ACTIONS(1065), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_bit_DASHshl] = ACTIONS(1063), - [anon_sym_bit_DASHshr] = ACTIONS(1063), - [anon_sym_EQ_EQ] = ACTIONS(1065), - [anon_sym_BANG_EQ] = ACTIONS(1065), - [anon_sym_LT2] = ACTIONS(1063), - [anon_sym_LT_EQ] = ACTIONS(1065), - [anon_sym_GT_EQ] = ACTIONS(1065), - [anon_sym_not_DASHin] = ACTIONS(1063), - [anon_sym_starts_DASHwith] = ACTIONS(1063), - [anon_sym_ends_DASHwith] = ACTIONS(1063), - [anon_sym_EQ_TILDE] = ACTIONS(1065), - [anon_sym_BANG_TILDE] = ACTIONS(1065), - [anon_sym_bit_DASHand] = ACTIONS(1063), - [anon_sym_bit_DASHxor] = ACTIONS(1063), - [anon_sym_bit_DASHor] = ACTIONS(1063), - [anon_sym_and] = ACTIONS(1063), - [anon_sym_xor] = ACTIONS(1063), - [anon_sym_or] = ACTIONS(1063), - [aux_sym__val_number_decimal_token1] = ACTIONS(1063), - [aux_sym__val_number_decimal_token2] = ACTIONS(1065), - [anon_sym_DOT2] = ACTIONS(1065), - [aux_sym__val_number_decimal_token3] = ACTIONS(1065), - [aux_sym__val_number_token1] = ACTIONS(1065), - [aux_sym__val_number_token2] = ACTIONS(1065), - [aux_sym__val_number_token3] = ACTIONS(1065), - [aux_sym__val_number_token4] = ACTIONS(1063), - [aux_sym__val_number_token5] = ACTIONS(1065), - [aux_sym__val_number_token6] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1065), - [sym__str_single_quotes] = ACTIONS(1065), - [sym__str_back_ticks] = ACTIONS(1065), - [aux_sym__record_key_token2] = ACTIONS(1063), + [1160] = { + [sym__match_pattern_expression] = STATE(3963), + [sym__match_pattern_value] = STATE(4065), + [sym__match_pattern_list] = STATE(3899), + [sym__match_pattern_rest] = STATE(10573), + [sym__match_pattern_record] = STATE(4002), + [sym__expr_unary_minus] = STATE(4029), + [sym_expr_parenthesized] = STATE(3478), + [sym_val_range] = STATE(4065), + [sym__val_range] = STATE(10108), + [sym_val_nothing] = STATE(3928), + [sym_val_bool] = STATE(3848), + [sym_val_variable] = STATE(3481), + [sym__var] = STATE(3303), + [sym_val_number] = STATE(3928), + [sym__val_number_decimal] = STATE(3274), + [sym__val_number] = STATE(4008), + [sym_val_duration] = STATE(3928), + [sym_val_filesize] = STATE(3928), + [sym_val_binary] = STATE(3928), + [sym_val_string] = STATE(3928), + [sym__str_double_quotes] = STATE(3913), + [sym_val_list] = STATE(10905), + [sym__list_item_starts_with_sign] = STATE(3915), + [sym_val_table] = STATE(3928), + [sym_short_flag] = STATE(3915), + [sym_long_flag] = STATE(3915), + [sym_long_flag_equals_value] = STATE(4030), + [sym__unquoted_in_list] = STATE(3915), + [sym__unquoted_anonymous_prefix] = STATE(10784), + [sym_comment] = STATE(1160), + [aux_sym__match_pattern_list_repeat1] = STATE(1287), + [anon_sym_LBRACK] = ACTIONS(3843), + [anon_sym_RBRACK] = ACTIONS(3845), + [anon_sym_LPAREN] = ACTIONS(3258), + [anon_sym_DOLLAR] = ACTIONS(3847), + [anon_sym_DASH_DASH] = ACTIONS(3262), + [anon_sym_DASH] = ACTIONS(3849), + [anon_sym_LBRACE] = ACTIONS(3851), + [anon_sym_DOT_DOT] = ACTIONS(3853), + [anon_sym_PLUS] = ACTIONS(3855), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3857), + [anon_sym_DOT_DOT_LT] = ACTIONS(3857), + [anon_sym_null] = ACTIONS(3859), + [anon_sym_true] = ACTIONS(3861), + [anon_sym_false] = ACTIONS(3861), + [aux_sym__val_number_decimal_token1] = ACTIONS(3863), + [aux_sym__val_number_decimal_token2] = ACTIONS(3865), + [anon_sym_DOT2] = ACTIONS(3867), + [aux_sym__val_number_decimal_token3] = ACTIONS(3869), + [aux_sym__val_number_token1] = ACTIONS(3284), + [aux_sym__val_number_token2] = ACTIONS(3284), + [aux_sym__val_number_token3] = ACTIONS(3284), + [aux_sym__val_number_token4] = ACTIONS(3871), + [aux_sym__val_number_token5] = ACTIONS(3871), + [aux_sym__val_number_token6] = ACTIONS(3871), + [anon_sym_0b] = ACTIONS(3288), + [anon_sym_0o] = ACTIONS(3290), + [anon_sym_0x] = ACTIONS(3290), + [sym_val_date] = ACTIONS(3873), + [anon_sym_DQUOTE] = ACTIONS(3294), + [sym__str_single_quotes] = ACTIONS(3296), + [sym__str_back_ticks] = ACTIONS(3296), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3875), [anon_sym_POUND] = ACTIONS(3), }, - [961] = { - [sym_comment] = STATE(961), - [anon_sym_export] = ACTIONS(1273), - [anon_sym_alias] = ACTIONS(1273), - [anon_sym_let] = ACTIONS(1273), - [anon_sym_let_DASHenv] = ACTIONS(1273), - [anon_sym_mut] = ACTIONS(1273), - [anon_sym_const] = ACTIONS(1273), - [sym_cmd_identifier] = ACTIONS(1273), - [anon_sym_def] = ACTIONS(1273), - [anon_sym_export_DASHenv] = ACTIONS(1273), - [anon_sym_extern] = ACTIONS(1273), - [anon_sym_module] = ACTIONS(1273), - [anon_sym_use] = ACTIONS(1273), - [anon_sym_LPAREN] = ACTIONS(1275), - [anon_sym_DOLLAR] = ACTIONS(1275), - [anon_sym_error] = ACTIONS(1273), - [anon_sym_list] = ACTIONS(1273), - [anon_sym_GT] = ACTIONS(1273), - [anon_sym_DASH] = ACTIONS(1273), - [anon_sym_break] = ACTIONS(1273), - [anon_sym_continue] = ACTIONS(1273), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_in] = ACTIONS(1273), - [anon_sym_loop] = ACTIONS(1273), - [anon_sym_make] = ACTIONS(1273), - [anon_sym_while] = ACTIONS(1273), - [anon_sym_do] = ACTIONS(1273), - [anon_sym_if] = ACTIONS(1273), - [anon_sym_else] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_RBRACE] = ACTIONS(1275), - [anon_sym_try] = ACTIONS(1273), - [anon_sym_catch] = ACTIONS(1273), - [anon_sym_return] = ACTIONS(1273), - [anon_sym_source] = ACTIONS(1273), - [anon_sym_source_DASHenv] = ACTIONS(1273), - [anon_sym_register] = ACTIONS(1273), - [anon_sym_hide] = ACTIONS(1273), - [anon_sym_hide_DASHenv] = ACTIONS(1273), - [anon_sym_overlay] = ACTIONS(1273), - [anon_sym_new] = ACTIONS(1273), - [anon_sym_as] = ACTIONS(1273), - [anon_sym_STAR] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_PLUS_PLUS] = ACTIONS(1275), - [anon_sym_SLASH] = ACTIONS(1273), - [anon_sym_mod] = ACTIONS(1273), - [anon_sym_SLASH_SLASH] = ACTIONS(1275), - [anon_sym_PLUS] = ACTIONS(1273), - [anon_sym_bit_DASHshl] = ACTIONS(1273), - [anon_sym_bit_DASHshr] = ACTIONS(1273), - [anon_sym_EQ_EQ] = ACTIONS(1275), - [anon_sym_BANG_EQ] = ACTIONS(1275), - [anon_sym_LT2] = ACTIONS(1273), - [anon_sym_LT_EQ] = ACTIONS(1275), - [anon_sym_GT_EQ] = ACTIONS(1275), - [anon_sym_not_DASHin] = ACTIONS(1273), - [anon_sym_starts_DASHwith] = ACTIONS(1273), - [anon_sym_ends_DASHwith] = ACTIONS(1273), - [anon_sym_EQ_TILDE] = ACTIONS(1275), - [anon_sym_BANG_TILDE] = ACTIONS(1275), - [anon_sym_bit_DASHand] = ACTIONS(1273), - [anon_sym_bit_DASHxor] = ACTIONS(1273), - [anon_sym_bit_DASHor] = ACTIONS(1273), - [anon_sym_and] = ACTIONS(1273), - [anon_sym_xor] = ACTIONS(1273), - [anon_sym_or] = ACTIONS(1273), - [aux_sym__val_number_decimal_token1] = ACTIONS(1273), - [aux_sym__val_number_decimal_token2] = ACTIONS(1275), - [anon_sym_DOT2] = ACTIONS(1275), - [aux_sym__val_number_decimal_token3] = ACTIONS(1275), - [aux_sym__val_number_token1] = ACTIONS(1275), - [aux_sym__val_number_token2] = ACTIONS(1275), - [aux_sym__val_number_token3] = ACTIONS(1275), - [aux_sym__val_number_token4] = ACTIONS(1273), - [aux_sym__val_number_token5] = ACTIONS(1275), - [aux_sym__val_number_token6] = ACTIONS(1273), - [anon_sym_DQUOTE] = ACTIONS(1275), - [sym__str_single_quotes] = ACTIONS(1275), - [sym__str_back_ticks] = ACTIONS(1275), - [aux_sym__record_key_token2] = ACTIONS(1273), + [1161] = { + [sym_comment] = STATE(1161), + [anon_sym_LBRACK] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(1070), + [anon_sym_RBRACK] = ACTIONS(1070), + [anon_sym_LPAREN] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_GT] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_in] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_DOT_DOT] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_STAR_STAR] = ACTIONS(1070), + [anon_sym_PLUS_PLUS] = ACTIONS(1070), + [anon_sym_SLASH] = ACTIONS(1068), + [anon_sym_mod] = ACTIONS(1070), + [anon_sym_SLASH_SLASH] = ACTIONS(1070), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_bit_DASHshl] = ACTIONS(1070), + [anon_sym_bit_DASHshr] = ACTIONS(1070), + [anon_sym_EQ_EQ] = ACTIONS(1070), + [anon_sym_BANG_EQ] = ACTIONS(1070), + [anon_sym_LT2] = ACTIONS(1068), + [anon_sym_LT_EQ] = ACTIONS(1070), + [anon_sym_GT_EQ] = ACTIONS(1070), + [anon_sym_not_DASHin] = ACTIONS(1070), + [anon_sym_starts_DASHwith] = ACTIONS(1070), + [anon_sym_ends_DASHwith] = ACTIONS(1070), + [anon_sym_EQ_TILDE] = ACTIONS(1070), + [anon_sym_BANG_TILDE] = ACTIONS(1070), + [anon_sym_bit_DASHand] = ACTIONS(1070), + [anon_sym_bit_DASHxor] = ACTIONS(1070), + [anon_sym_bit_DASHor] = ACTIONS(1070), + [anon_sym_and] = ACTIONS(1070), + [anon_sym_xor] = ACTIONS(1070), + [anon_sym_or] = ACTIONS(1070), + [anon_sym_DOT_DOT2] = ACTIONS(1068), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1068), + [anon_sym_DOT_DOT_LT] = ACTIONS(1068), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1070), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1070), + [anon_sym_null] = ACTIONS(1070), + [anon_sym_true] = ACTIONS(1070), + [anon_sym_false] = ACTIONS(1070), + [aux_sym__val_number_decimal_token1] = ACTIONS(1068), + [aux_sym__val_number_decimal_token2] = ACTIONS(1070), + [anon_sym_DOT2] = ACTIONS(1068), + [aux_sym__val_number_decimal_token3] = ACTIONS(1070), + [aux_sym__val_number_token1] = ACTIONS(1070), + [aux_sym__val_number_token2] = ACTIONS(1070), + [aux_sym__val_number_token3] = ACTIONS(1070), + [aux_sym__val_number_token4] = ACTIONS(1070), + [aux_sym__val_number_token5] = ACTIONS(1070), + [aux_sym__val_number_token6] = ACTIONS(1070), + [anon_sym_0b] = ACTIONS(1068), + [anon_sym_0o] = ACTIONS(1068), + [anon_sym_0x] = ACTIONS(1068), + [sym_val_date] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1070), + [sym__str_single_quotes] = ACTIONS(1070), + [sym__str_back_ticks] = ACTIONS(1070), + [anon_sym_err_GT] = ACTIONS(1070), + [anon_sym_out_GT] = ACTIONS(1070), + [anon_sym_e_GT] = ACTIONS(1070), + [anon_sym_o_GT] = ACTIONS(1070), + [anon_sym_err_PLUSout_GT] = ACTIONS(1070), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1070), + [anon_sym_o_PLUSe_GT] = ACTIONS(1070), + [anon_sym_e_PLUSo_GT] = ACTIONS(1070), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1068), [anon_sym_POUND] = ACTIONS(3), }, - [962] = { - [sym_comment] = STATE(962), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_list] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1766), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_make] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_else] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_catch] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_new] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1768), - [anon_sym_STAR_STAR] = ACTIONS(1770), - [anon_sym_PLUS_PLUS] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1768), - [anon_sym_mod] = ACTIONS(1768), - [anon_sym_SLASH_SLASH] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1766), - [anon_sym_bit_DASHshl] = ACTIONS(1774), - [anon_sym_bit_DASHshr] = ACTIONS(1774), - [anon_sym_EQ_EQ] = ACTIONS(1776), - [anon_sym_BANG_EQ] = ACTIONS(1776), - [anon_sym_LT2] = ACTIONS(1764), - [anon_sym_LT_EQ] = ACTIONS(1776), - [anon_sym_GT_EQ] = ACTIONS(1776), - [anon_sym_not_DASHin] = ACTIONS(1376), - [anon_sym_starts_DASHwith] = ACTIONS(1376), - [anon_sym_ends_DASHwith] = ACTIONS(1376), - [anon_sym_EQ_TILDE] = ACTIONS(1378), - [anon_sym_BANG_TILDE] = ACTIONS(1378), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1378), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1378), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [aux_sym__record_key_token2] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(3), + [1162] = { + [sym_comment] = STATE(1162), + [ts_builtin_sym_end] = ACTIONS(895), + [anon_sym_SEMI] = ACTIONS(893), + [anon_sym_LF] = ACTIONS(895), + [anon_sym_LBRACK] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(893), + [anon_sym_PIPE] = ACTIONS(893), + [anon_sym_DOLLAR] = ACTIONS(893), + [anon_sym_GT] = ACTIONS(893), + [anon_sym_DASH_DASH] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_in] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_DOT_DOT] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(893), + [anon_sym_STAR_STAR] = ACTIONS(893), + [anon_sym_PLUS_PLUS] = ACTIONS(893), + [anon_sym_SLASH] = ACTIONS(893), + [anon_sym_mod] = ACTIONS(893), + [anon_sym_SLASH_SLASH] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_bit_DASHshl] = ACTIONS(893), + [anon_sym_bit_DASHshr] = ACTIONS(893), + [anon_sym_EQ_EQ] = ACTIONS(893), + [anon_sym_BANG_EQ] = ACTIONS(893), + [anon_sym_LT2] = ACTIONS(893), + [anon_sym_LT_EQ] = ACTIONS(893), + [anon_sym_GT_EQ] = ACTIONS(893), + [anon_sym_not_DASHin] = ACTIONS(893), + [anon_sym_starts_DASHwith] = ACTIONS(893), + [anon_sym_ends_DASHwith] = ACTIONS(893), + [anon_sym_EQ_TILDE] = ACTIONS(893), + [anon_sym_BANG_TILDE] = ACTIONS(893), + [anon_sym_bit_DASHand] = ACTIONS(893), + [anon_sym_bit_DASHxor] = ACTIONS(893), + [anon_sym_bit_DASHor] = ACTIONS(893), + [anon_sym_and] = ACTIONS(893), + [anon_sym_xor] = ACTIONS(893), + [anon_sym_or] = ACTIONS(893), + [anon_sym_not] = ACTIONS(893), + [anon_sym_DOT_DOT2] = ACTIONS(893), + [anon_sym_DOT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ] = ACTIONS(893), + [anon_sym_DOT_DOT_LT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), + [anon_sym_DOT_DOT_LT2] = ACTIONS(895), + [anon_sym_null] = ACTIONS(893), + [anon_sym_true] = ACTIONS(893), + [anon_sym_false] = ACTIONS(893), + [aux_sym__val_number_decimal_token1] = ACTIONS(893), + [aux_sym__val_number_decimal_token2] = ACTIONS(893), + [anon_sym_DOT2] = ACTIONS(893), + [aux_sym__val_number_decimal_token3] = ACTIONS(893), + [aux_sym__val_number_token1] = ACTIONS(893), + [aux_sym__val_number_token2] = ACTIONS(893), + [aux_sym__val_number_token3] = ACTIONS(893), + [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(893), + [sym_filesize_unit] = ACTIONS(893), + [sym_duration_unit] = ACTIONS(895), + [anon_sym_0o] = ACTIONS(893), + [anon_sym_0x] = ACTIONS(893), + [sym_val_date] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(893), + [sym__str_single_quotes] = ACTIONS(893), + [sym__str_back_ticks] = ACTIONS(893), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(893), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(893), + [aux_sym_unquoted_token5] = ACTIONS(893), + [anon_sym_POUND] = ACTIONS(113), }, - [963] = { - [sym_comment] = STATE(963), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_alias] = ACTIONS(1158), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_let_DASHenv] = ACTIONS(1158), - [anon_sym_mut] = ACTIONS(1158), - [anon_sym_const] = ACTIONS(1158), - [sym_cmd_identifier] = ACTIONS(1158), - [anon_sym_def] = ACTIONS(1158), - [anon_sym_export_DASHenv] = ACTIONS(1158), - [anon_sym_extern] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_use] = ACTIONS(1158), - [anon_sym_LPAREN] = ACTIONS(1160), - [anon_sym_DOLLAR] = ACTIONS(1160), - [anon_sym_error] = ACTIONS(1158), - [anon_sym_list] = ACTIONS(1158), - [anon_sym_GT] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_break] = ACTIONS(1158), - [anon_sym_continue] = ACTIONS(1158), - [anon_sym_for] = ACTIONS(1158), - [anon_sym_in] = ACTIONS(1158), - [anon_sym_loop] = ACTIONS(1158), - [anon_sym_make] = ACTIONS(1158), - [anon_sym_while] = ACTIONS(1158), - [anon_sym_do] = ACTIONS(1158), - [anon_sym_if] = ACTIONS(1158), - [anon_sym_else] = ACTIONS(1158), - [anon_sym_match] = ACTIONS(1158), - [anon_sym_RBRACE] = ACTIONS(1160), - [anon_sym_try] = ACTIONS(1158), - [anon_sym_catch] = ACTIONS(1158), - [anon_sym_return] = ACTIONS(1158), - [anon_sym_source] = ACTIONS(1158), - [anon_sym_source_DASHenv] = ACTIONS(1158), - [anon_sym_register] = ACTIONS(1158), - [anon_sym_hide] = ACTIONS(1158), - [anon_sym_hide_DASHenv] = ACTIONS(1158), - [anon_sym_overlay] = ACTIONS(1158), - [anon_sym_new] = ACTIONS(1158), - [anon_sym_as] = ACTIONS(1158), - [anon_sym_STAR] = ACTIONS(1158), - [anon_sym_STAR_STAR] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1160), - [anon_sym_SLASH] = ACTIONS(1158), - [anon_sym_mod] = ACTIONS(1158), - [anon_sym_SLASH_SLASH] = ACTIONS(1160), - [anon_sym_PLUS] = ACTIONS(1158), - [anon_sym_bit_DASHshl] = ACTIONS(1158), - [anon_sym_bit_DASHshr] = ACTIONS(1158), - [anon_sym_EQ_EQ] = ACTIONS(1160), - [anon_sym_BANG_EQ] = ACTIONS(1160), - [anon_sym_LT2] = ACTIONS(1158), - [anon_sym_LT_EQ] = ACTIONS(1160), - [anon_sym_GT_EQ] = ACTIONS(1160), - [anon_sym_not_DASHin] = ACTIONS(1158), - [anon_sym_starts_DASHwith] = ACTIONS(1158), - [anon_sym_ends_DASHwith] = ACTIONS(1158), - [anon_sym_EQ_TILDE] = ACTIONS(1160), - [anon_sym_BANG_TILDE] = ACTIONS(1160), - [anon_sym_bit_DASHand] = ACTIONS(1158), - [anon_sym_bit_DASHxor] = ACTIONS(1158), - [anon_sym_bit_DASHor] = ACTIONS(1158), - [anon_sym_and] = ACTIONS(1158), - [anon_sym_xor] = ACTIONS(1158), - [anon_sym_or] = ACTIONS(1158), - [aux_sym__val_number_decimal_token1] = ACTIONS(1158), - [aux_sym__val_number_decimal_token2] = ACTIONS(1160), - [anon_sym_DOT2] = ACTIONS(1160), - [aux_sym__val_number_decimal_token3] = ACTIONS(1160), - [aux_sym__val_number_token1] = ACTIONS(1160), - [aux_sym__val_number_token2] = ACTIONS(1160), - [aux_sym__val_number_token3] = ACTIONS(1160), - [aux_sym__val_number_token4] = ACTIONS(1158), - [aux_sym__val_number_token5] = ACTIONS(1160), - [aux_sym__val_number_token6] = ACTIONS(1158), - [anon_sym_DQUOTE] = ACTIONS(1160), - [sym__str_single_quotes] = ACTIONS(1160), - [sym__str_back_ticks] = ACTIONS(1160), - [aux_sym__record_key_token2] = ACTIONS(1158), - [anon_sym_POUND] = ACTIONS(3), + [1163] = { + [sym_comment] = STATE(1163), + [ts_builtin_sym_end] = ACTIONS(903), + [anon_sym_SEMI] = ACTIONS(901), + [anon_sym_LF] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(901), + [anon_sym_LPAREN] = ACTIONS(901), + [anon_sym_PIPE] = ACTIONS(901), + [anon_sym_DOLLAR] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_DASH_DASH] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_in] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(901), + [anon_sym_DOT_DOT] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_STAR_STAR] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(901), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_mod] = ACTIONS(901), + [anon_sym_SLASH_SLASH] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_bit_DASHshl] = ACTIONS(901), + [anon_sym_bit_DASHshr] = ACTIONS(901), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT2] = ACTIONS(901), + [anon_sym_LT_EQ] = ACTIONS(901), + [anon_sym_GT_EQ] = ACTIONS(901), + [anon_sym_not_DASHin] = ACTIONS(901), + [anon_sym_starts_DASHwith] = ACTIONS(901), + [anon_sym_ends_DASHwith] = ACTIONS(901), + [anon_sym_EQ_TILDE] = ACTIONS(901), + [anon_sym_BANG_TILDE] = ACTIONS(901), + [anon_sym_bit_DASHand] = ACTIONS(901), + [anon_sym_bit_DASHxor] = ACTIONS(901), + [anon_sym_bit_DASHor] = ACTIONS(901), + [anon_sym_and] = ACTIONS(901), + [anon_sym_xor] = ACTIONS(901), + [anon_sym_or] = ACTIONS(901), + [anon_sym_not] = ACTIONS(901), + [anon_sym_DOT_DOT2] = ACTIONS(901), + [anon_sym_DOT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ] = ACTIONS(901), + [anon_sym_DOT_DOT_LT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(903), + [anon_sym_DOT_DOT_LT2] = ACTIONS(903), + [anon_sym_null] = ACTIONS(901), + [anon_sym_true] = ACTIONS(901), + [anon_sym_false] = ACTIONS(901), + [aux_sym__val_number_decimal_token1] = ACTIONS(901), + [aux_sym__val_number_decimal_token2] = ACTIONS(901), + [anon_sym_DOT2] = ACTIONS(901), + [aux_sym__val_number_decimal_token3] = ACTIONS(901), + [aux_sym__val_number_token1] = ACTIONS(901), + [aux_sym__val_number_token2] = ACTIONS(901), + [aux_sym__val_number_token3] = ACTIONS(901), + [aux_sym__val_number_token4] = ACTIONS(901), + [aux_sym__val_number_token5] = ACTIONS(901), + [aux_sym__val_number_token6] = ACTIONS(901), + [anon_sym_0b] = ACTIONS(901), + [sym_filesize_unit] = ACTIONS(901), + [sym_duration_unit] = ACTIONS(903), + [anon_sym_0o] = ACTIONS(901), + [anon_sym_0x] = ACTIONS(901), + [sym_val_date] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [sym__str_single_quotes] = ACTIONS(901), + [sym__str_back_ticks] = ACTIONS(901), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(901), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(901), + [aux_sym_unquoted_token5] = ACTIONS(901), + [anon_sym_POUND] = ACTIONS(113), }, - [964] = { - [sym_comment] = STATE(964), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_list] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1766), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_make] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_else] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_catch] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_new] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1768), - [anon_sym_STAR_STAR] = ACTIONS(1770), - [anon_sym_PLUS_PLUS] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1768), - [anon_sym_mod] = ACTIONS(1768), - [anon_sym_SLASH_SLASH] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1766), - [anon_sym_bit_DASHshl] = ACTIONS(1376), - [anon_sym_bit_DASHshr] = ACTIONS(1376), - [anon_sym_EQ_EQ] = ACTIONS(1378), - [anon_sym_BANG_EQ] = ACTIONS(1378), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1378), - [anon_sym_GT_EQ] = ACTIONS(1378), - [anon_sym_not_DASHin] = ACTIONS(1376), - [anon_sym_starts_DASHwith] = ACTIONS(1376), - [anon_sym_ends_DASHwith] = ACTIONS(1376), - [anon_sym_EQ_TILDE] = ACTIONS(1378), - [anon_sym_BANG_TILDE] = ACTIONS(1378), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1378), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1378), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [aux_sym__record_key_token2] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(3), + [1164] = { + [sym_comment] = STATE(1164), + [ts_builtin_sym_end] = ACTIONS(936), + [anon_sym_SEMI] = ACTIONS(934), + [anon_sym_LF] = ACTIONS(936), + [anon_sym_LBRACK] = ACTIONS(934), + [anon_sym_LPAREN] = ACTIONS(934), + [anon_sym_PIPE] = ACTIONS(934), + [anon_sym_DOLLAR] = ACTIONS(934), + [anon_sym_GT] = ACTIONS(934), + [anon_sym_DASH_DASH] = ACTIONS(934), + [anon_sym_DASH] = ACTIONS(934), + [anon_sym_in] = ACTIONS(934), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_DOT_DOT] = ACTIONS(934), + [anon_sym_STAR] = ACTIONS(934), + [anon_sym_STAR_STAR] = ACTIONS(934), + [anon_sym_PLUS_PLUS] = ACTIONS(934), + [anon_sym_SLASH] = ACTIONS(934), + [anon_sym_mod] = ACTIONS(934), + [anon_sym_SLASH_SLASH] = ACTIONS(934), + [anon_sym_PLUS] = ACTIONS(934), + [anon_sym_bit_DASHshl] = ACTIONS(934), + [anon_sym_bit_DASHshr] = ACTIONS(934), + [anon_sym_EQ_EQ] = ACTIONS(934), + [anon_sym_BANG_EQ] = ACTIONS(934), + [anon_sym_LT2] = ACTIONS(934), + [anon_sym_LT_EQ] = ACTIONS(934), + [anon_sym_GT_EQ] = ACTIONS(934), + [anon_sym_not_DASHin] = ACTIONS(934), + [anon_sym_starts_DASHwith] = ACTIONS(934), + [anon_sym_ends_DASHwith] = ACTIONS(934), + [anon_sym_EQ_TILDE] = ACTIONS(934), + [anon_sym_BANG_TILDE] = ACTIONS(934), + [anon_sym_bit_DASHand] = ACTIONS(934), + [anon_sym_bit_DASHxor] = ACTIONS(934), + [anon_sym_bit_DASHor] = ACTIONS(934), + [anon_sym_and] = ACTIONS(934), + [anon_sym_xor] = ACTIONS(934), + [anon_sym_or] = ACTIONS(934), + [anon_sym_not] = ACTIONS(934), + [anon_sym_DOT_DOT2] = ACTIONS(934), + [anon_sym_DOT] = ACTIONS(934), + [anon_sym_DOT_DOT_EQ] = ACTIONS(934), + [anon_sym_DOT_DOT_LT] = ACTIONS(934), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(936), + [anon_sym_DOT_DOT_LT2] = ACTIONS(936), + [anon_sym_null] = ACTIONS(934), + [anon_sym_true] = ACTIONS(934), + [anon_sym_false] = ACTIONS(934), + [aux_sym__val_number_decimal_token1] = ACTIONS(934), + [aux_sym__val_number_decimal_token2] = ACTIONS(934), + [anon_sym_DOT2] = ACTIONS(934), + [aux_sym__val_number_decimal_token3] = ACTIONS(934), + [aux_sym__val_number_token1] = ACTIONS(934), + [aux_sym__val_number_token2] = ACTIONS(934), + [aux_sym__val_number_token3] = ACTIONS(934), + [aux_sym__val_number_token4] = ACTIONS(934), + [aux_sym__val_number_token5] = ACTIONS(934), + [aux_sym__val_number_token6] = ACTIONS(934), + [anon_sym_0b] = ACTIONS(934), + [sym_filesize_unit] = ACTIONS(934), + [sym_duration_unit] = ACTIONS(936), + [anon_sym_0o] = ACTIONS(934), + [anon_sym_0x] = ACTIONS(934), + [sym_val_date] = ACTIONS(934), + [anon_sym_DQUOTE] = ACTIONS(934), + [sym__str_single_quotes] = ACTIONS(934), + [sym__str_back_ticks] = ACTIONS(934), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(934), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(934), + [aux_sym_unquoted_token5] = ACTIONS(934), + [anon_sym_POUND] = ACTIONS(113), }, - [965] = { - [sym_comment] = STATE(965), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_list] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1766), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1778), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_make] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_else] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_catch] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_new] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1768), - [anon_sym_STAR_STAR] = ACTIONS(1770), - [anon_sym_PLUS_PLUS] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1768), - [anon_sym_mod] = ACTIONS(1768), - [anon_sym_SLASH_SLASH] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1766), - [anon_sym_bit_DASHshl] = ACTIONS(1774), - [anon_sym_bit_DASHshr] = ACTIONS(1774), - [anon_sym_EQ_EQ] = ACTIONS(1776), - [anon_sym_BANG_EQ] = ACTIONS(1776), - [anon_sym_LT2] = ACTIONS(1764), - [anon_sym_LT_EQ] = ACTIONS(1776), - [anon_sym_GT_EQ] = ACTIONS(1776), - [anon_sym_not_DASHin] = ACTIONS(1778), - [anon_sym_starts_DASHwith] = ACTIONS(1778), - [anon_sym_ends_DASHwith] = ACTIONS(1778), - [anon_sym_EQ_TILDE] = ACTIONS(1378), - [anon_sym_BANG_TILDE] = ACTIONS(1378), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1378), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1378), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [aux_sym__record_key_token2] = ACTIONS(1376), + [1165] = { + [sym_comment] = STATE(1165), + [anon_sym_export] = ACTIONS(1139), + [anon_sym_alias] = ACTIONS(1139), + [anon_sym_let] = ACTIONS(1139), + [anon_sym_let_DASHenv] = ACTIONS(1139), + [anon_sym_mut] = ACTIONS(1139), + [anon_sym_const] = ACTIONS(1139), + [anon_sym_SEMI] = ACTIONS(1139), + [sym_cmd_identifier] = ACTIONS(1139), + [anon_sym_LF] = ACTIONS(1139), + [anon_sym_def] = ACTIONS(1139), + [anon_sym_export_DASHenv] = ACTIONS(1139), + [anon_sym_extern] = ACTIONS(1139), + [anon_sym_module] = ACTIONS(1139), + [anon_sym_use] = ACTIONS(1139), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LPAREN] = ACTIONS(1139), + [anon_sym_RPAREN] = ACTIONS(1139), + [anon_sym_DOLLAR] = ACTIONS(1139), + [anon_sym_error] = ACTIONS(1139), + [anon_sym_DASH_DASH] = ACTIONS(1139), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_break] = ACTIONS(1139), + [anon_sym_continue] = ACTIONS(1139), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_loop] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1139), + [anon_sym_do] = ACTIONS(1139), + [anon_sym_if] = ACTIONS(1139), + [anon_sym_match] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1139), + [anon_sym_RBRACE] = ACTIONS(1139), + [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_try] = ACTIONS(1139), + [anon_sym_return] = ACTIONS(1139), + [anon_sym_source] = ACTIONS(1139), + [anon_sym_source_DASHenv] = ACTIONS(1139), + [anon_sym_register] = ACTIONS(1139), + [anon_sym_hide] = ACTIONS(1139), + [anon_sym_hide_DASHenv] = ACTIONS(1139), + [anon_sym_overlay] = ACTIONS(1139), + [anon_sym_as] = ACTIONS(1139), + [anon_sym_where] = ACTIONS(1139), + [anon_sym_not] = ACTIONS(1139), + [anon_sym_LPAREN2] = ACTIONS(1209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1139), + [anon_sym_DOT_DOT_LT] = ACTIONS(1139), + [anon_sym_null] = ACTIONS(1139), + [anon_sym_true] = ACTIONS(1139), + [anon_sym_false] = ACTIONS(1139), + [aux_sym__val_number_decimal_token1] = ACTIONS(1139), + [aux_sym__val_number_decimal_token2] = ACTIONS(1139), + [anon_sym_DOT2] = ACTIONS(1139), + [aux_sym__val_number_decimal_token3] = ACTIONS(1139), + [aux_sym__val_number_token1] = ACTIONS(1139), + [aux_sym__val_number_token2] = ACTIONS(1139), + [aux_sym__val_number_token3] = ACTIONS(1139), + [aux_sym__val_number_token4] = ACTIONS(1139), + [aux_sym__val_number_token5] = ACTIONS(1139), + [aux_sym__val_number_token6] = ACTIONS(1139), + [anon_sym_0b] = ACTIONS(1139), + [anon_sym_0o] = ACTIONS(1139), + [anon_sym_0x] = ACTIONS(1139), + [sym_val_date] = ACTIONS(1139), + [anon_sym_DQUOTE] = ACTIONS(1139), + [sym__str_single_quotes] = ACTIONS(1139), + [sym__str_back_ticks] = ACTIONS(1139), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1139), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1139), + [aux_sym__list_item_starts_with_sign_token1] = ACTIONS(3877), + [anon_sym_CARET] = ACTIONS(1139), + [anon_sym_POUND] = ACTIONS(113), + }, + [1166] = { + [sym_cell_path] = STATE(2222), + [sym_path] = STATE(1197), + [sym_comment] = STATE(1166), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym_LF] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(992), + [anon_sym_RPAREN] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(992), + [anon_sym_DOLLAR] = ACTIONS(992), + [anon_sym_GT] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_in] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(992), + [anon_sym_RBRACE] = ACTIONS(992), + [anon_sym_DOT_DOT] = ACTIONS(992), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_STAR_STAR] = ACTIONS(992), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_SLASH] = ACTIONS(992), + [anon_sym_mod] = ACTIONS(992), + [anon_sym_SLASH_SLASH] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_bit_DASHshl] = ACTIONS(992), + [anon_sym_bit_DASHshr] = ACTIONS(992), + [anon_sym_EQ_EQ] = ACTIONS(992), + [anon_sym_BANG_EQ] = ACTIONS(992), + [anon_sym_LT2] = ACTIONS(992), + [anon_sym_LT_EQ] = ACTIONS(992), + [anon_sym_GT_EQ] = ACTIONS(992), + [anon_sym_not_DASHin] = ACTIONS(992), + [anon_sym_starts_DASHwith] = ACTIONS(992), + [anon_sym_ends_DASHwith] = ACTIONS(992), + [anon_sym_EQ_TILDE] = ACTIONS(992), + [anon_sym_BANG_TILDE] = ACTIONS(992), + [anon_sym_bit_DASHand] = ACTIONS(992), + [anon_sym_bit_DASHxor] = ACTIONS(992), + [anon_sym_bit_DASHor] = ACTIONS(992), + [anon_sym_and] = ACTIONS(992), + [anon_sym_xor] = ACTIONS(992), + [anon_sym_or] = ACTIONS(992), + [anon_sym_not] = ACTIONS(992), + [anon_sym_DOT_DOT2] = ACTIONS(992), + [anon_sym_DOT] = ACTIONS(3879), + [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(992), + [anon_sym_true] = ACTIONS(992), + [anon_sym_false] = ACTIONS(992), + [aux_sym__val_number_decimal_token1] = ACTIONS(992), + [aux_sym__val_number_decimal_token2] = ACTIONS(992), + [anon_sym_DOT2] = ACTIONS(992), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(992), + [anon_sym_0o] = ACTIONS(992), + [anon_sym_0x] = ACTIONS(992), + [sym_val_date] = ACTIONS(992), + [anon_sym_DQUOTE] = ACTIONS(992), + [sym__str_single_quotes] = ACTIONS(992), + [sym__str_back_ticks] = ACTIONS(992), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(992), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(992), + [anon_sym_POUND] = ACTIONS(113), + }, + [1167] = { + [sym_cell_path] = STATE(2015), + [sym_path] = STATE(1192), + [sym_comment] = STATE(1167), + [ts_builtin_sym_end] = ACTIONS(1087), + [anon_sym_export] = ACTIONS(1085), + [anon_sym_alias] = ACTIONS(1085), + [anon_sym_let] = ACTIONS(1085), + [anon_sym_let_DASHenv] = ACTIONS(1085), + [anon_sym_mut] = ACTIONS(1085), + [anon_sym_const] = ACTIONS(1085), + [anon_sym_SEMI] = ACTIONS(1085), + [sym_cmd_identifier] = ACTIONS(1085), + [anon_sym_LF] = ACTIONS(1087), + [anon_sym_def] = ACTIONS(1085), + [anon_sym_export_DASHenv] = ACTIONS(1085), + [anon_sym_extern] = ACTIONS(1085), + [anon_sym_module] = ACTIONS(1085), + [anon_sym_use] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LPAREN] = ACTIONS(1085), + [anon_sym_DOLLAR] = ACTIONS(1085), + [anon_sym_error] = ACTIONS(1085), + [anon_sym_DASH_DASH] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_break] = ACTIONS(1085), + [anon_sym_continue] = ACTIONS(1085), + [anon_sym_for] = ACTIONS(1085), + [anon_sym_loop] = ACTIONS(1085), + [anon_sym_while] = ACTIONS(1085), + [anon_sym_do] = ACTIONS(1085), + [anon_sym_if] = ACTIONS(1085), + [anon_sym_match] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_return] = ACTIONS(1085), + [anon_sym_source] = ACTIONS(1085), + [anon_sym_source_DASHenv] = ACTIONS(1085), + [anon_sym_register] = ACTIONS(1085), + [anon_sym_hide] = ACTIONS(1085), + [anon_sym_hide_DASHenv] = ACTIONS(1085), + [anon_sym_overlay] = ACTIONS(1085), + [anon_sym_as] = ACTIONS(1085), + [anon_sym_where] = ACTIONS(1085), + [anon_sym_not] = ACTIONS(1085), + [anon_sym_DOT] = ACTIONS(3785), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1085), + [anon_sym_DOT_DOT_LT] = ACTIONS(1085), + [anon_sym_null] = ACTIONS(1085), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [aux_sym__val_number_decimal_token1] = ACTIONS(1085), + [aux_sym__val_number_decimal_token2] = ACTIONS(1085), + [anon_sym_DOT2] = ACTIONS(1085), + [aux_sym__val_number_decimal_token3] = ACTIONS(1085), + [aux_sym__val_number_token1] = ACTIONS(1085), + [aux_sym__val_number_token2] = ACTIONS(1085), + [aux_sym__val_number_token3] = ACTIONS(1085), + [aux_sym__val_number_token4] = ACTIONS(1085), + [aux_sym__val_number_token5] = ACTIONS(1085), + [aux_sym__val_number_token6] = ACTIONS(1085), + [anon_sym_0b] = ACTIONS(1085), + [anon_sym_0o] = ACTIONS(1085), + [anon_sym_0x] = ACTIONS(1085), + [sym_val_date] = ACTIONS(1085), + [anon_sym_DQUOTE] = ACTIONS(1085), + [sym__str_single_quotes] = ACTIONS(1085), + [sym__str_back_ticks] = ACTIONS(1085), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1085), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_POUND] = ACTIONS(113), + }, + [1168] = { + [sym_comment] = STATE(1168), + [ts_builtin_sym_end] = ACTIONS(1091), + [anon_sym_export] = ACTIONS(1089), + [anon_sym_alias] = ACTIONS(1089), + [anon_sym_let] = ACTIONS(1089), + [anon_sym_let_DASHenv] = ACTIONS(1089), + [anon_sym_mut] = ACTIONS(1089), + [anon_sym_const] = ACTIONS(1089), + [anon_sym_SEMI] = ACTIONS(1089), + [sym_cmd_identifier] = ACTIONS(1089), + [anon_sym_LF] = ACTIONS(1091), + [anon_sym_def] = ACTIONS(1089), + [anon_sym_export_DASHenv] = ACTIONS(1089), + [anon_sym_extern] = ACTIONS(1089), + [anon_sym_module] = ACTIONS(1089), + [anon_sym_use] = ACTIONS(1089), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1089), + [anon_sym_error] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_DASH] = ACTIONS(1089), + [anon_sym_break] = ACTIONS(1089), + [anon_sym_continue] = ACTIONS(1089), + [anon_sym_for] = ACTIONS(1089), + [anon_sym_loop] = ACTIONS(1089), + [anon_sym_while] = ACTIONS(1089), + [anon_sym_do] = ACTIONS(1089), + [anon_sym_if] = ACTIONS(1089), + [anon_sym_match] = ACTIONS(1089), + [anon_sym_LBRACE] = ACTIONS(1089), + [anon_sym_DOT_DOT] = ACTIONS(1089), + [anon_sym_try] = ACTIONS(1089), + [anon_sym_return] = ACTIONS(1089), + [anon_sym_source] = ACTIONS(1089), + [anon_sym_source_DASHenv] = ACTIONS(1089), + [anon_sym_register] = ACTIONS(1089), + [anon_sym_hide] = ACTIONS(1089), + [anon_sym_hide_DASHenv] = ACTIONS(1089), + [anon_sym_overlay] = ACTIONS(1089), + [anon_sym_as] = ACTIONS(1089), + [anon_sym_where] = ACTIONS(1089), + [anon_sym_not] = ACTIONS(1089), + [anon_sym_DOT_DOT2] = ACTIONS(1114), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_DOT_DOT_LT] = ACTIONS(1089), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1116), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1116), + [anon_sym_null] = ACTIONS(1089), + [anon_sym_true] = ACTIONS(1089), + [anon_sym_false] = ACTIONS(1089), + [aux_sym__val_number_decimal_token1] = ACTIONS(1089), + [aux_sym__val_number_decimal_token2] = ACTIONS(1089), + [anon_sym_DOT2] = ACTIONS(1089), + [aux_sym__val_number_decimal_token3] = ACTIONS(1089), + [aux_sym__val_number_token1] = ACTIONS(1089), + [aux_sym__val_number_token2] = ACTIONS(1089), + [aux_sym__val_number_token3] = ACTIONS(1089), + [aux_sym__val_number_token4] = ACTIONS(1089), + [aux_sym__val_number_token5] = ACTIONS(1089), + [aux_sym__val_number_token6] = ACTIONS(1089), + [anon_sym_0b] = ACTIONS(1089), + [anon_sym_0o] = ACTIONS(1089), + [anon_sym_0x] = ACTIONS(1089), + [sym_val_date] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1089), + [sym__str_single_quotes] = ACTIONS(1089), + [sym__str_back_ticks] = ACTIONS(1089), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1089), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1089), + [anon_sym_CARET] = ACTIONS(1089), + [anon_sym_POUND] = ACTIONS(113), + }, + [1169] = { + [sym_path] = STATE(1821), + [sym_comment] = STATE(1169), + [aux_sym_cell_path_repeat1] = STATE(1170), + [anon_sym_LBRACK] = ACTIONS(1012), + [anon_sym_COMMA] = ACTIONS(1012), + [anon_sym_LPAREN] = ACTIONS(1012), + [anon_sym_DOLLAR] = ACTIONS(1012), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_RBRACE] = ACTIONS(1012), + [anon_sym__] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1012), + [anon_sym_PLUS_PLUS] = ACTIONS(1012), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1012), + [anon_sym_SLASH_SLASH] = ACTIONS(1012), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1012), + [anon_sym_bit_DASHshr] = ACTIONS(1012), + [anon_sym_EQ_EQ] = ACTIONS(1012), + [anon_sym_BANG_EQ] = ACTIONS(1012), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1012), + [anon_sym_GT_EQ] = ACTIONS(1012), + [anon_sym_not_DASHin] = ACTIONS(1012), + [anon_sym_starts_DASHwith] = ACTIONS(1012), + [anon_sym_ends_DASHwith] = ACTIONS(1012), + [anon_sym_EQ_TILDE] = ACTIONS(1012), + [anon_sym_BANG_TILDE] = ACTIONS(1012), + [anon_sym_bit_DASHand] = ACTIONS(1012), + [anon_sym_bit_DASHxor] = ACTIONS(1012), + [anon_sym_bit_DASHor] = ACTIONS(1012), + [anon_sym_and] = ACTIONS(1012), + [anon_sym_xor] = ACTIONS(1012), + [anon_sym_or] = ACTIONS(1012), + [anon_sym_DOT] = ACTIONS(3807), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1012), + [anon_sym_DOT_DOT_LT] = ACTIONS(1012), + [anon_sym_null] = ACTIONS(1012), + [anon_sym_true] = ACTIONS(1012), + [anon_sym_false] = ACTIONS(1012), + [aux_sym__val_number_decimal_token1] = ACTIONS(1010), + [aux_sym__val_number_decimal_token2] = ACTIONS(1012), + [anon_sym_DOT2] = ACTIONS(1010), + [aux_sym__val_number_decimal_token3] = 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(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1012), + [anon_sym_DQUOTE] = ACTIONS(1012), + [sym__str_single_quotes] = ACTIONS(1012), + [sym__str_back_ticks] = ACTIONS(1012), + [anon_sym_err_GT] = ACTIONS(1012), + [anon_sym_out_GT] = ACTIONS(1012), + [anon_sym_e_GT] = ACTIONS(1012), + [anon_sym_o_GT] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT] = ACTIONS(1012), + [aux_sym_unquoted_token1] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [966] = { - [sym_comment] = STATE(966), - [anon_sym_export] = ACTIONS(1194), - [anon_sym_alias] = ACTIONS(1194), - [anon_sym_let] = ACTIONS(1194), - [anon_sym_let_DASHenv] = ACTIONS(1194), - [anon_sym_mut] = ACTIONS(1194), - [anon_sym_const] = ACTIONS(1194), - [sym_cmd_identifier] = ACTIONS(1194), - [anon_sym_def] = ACTIONS(1194), - [anon_sym_export_DASHenv] = ACTIONS(1194), - [anon_sym_extern] = ACTIONS(1194), - [anon_sym_module] = ACTIONS(1194), - [anon_sym_use] = ACTIONS(1194), - [anon_sym_LPAREN] = ACTIONS(1196), - [anon_sym_DOLLAR] = ACTIONS(1196), - [anon_sym_error] = ACTIONS(1194), - [anon_sym_list] = ACTIONS(1194), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_break] = ACTIONS(1194), - [anon_sym_continue] = ACTIONS(1194), - [anon_sym_for] = ACTIONS(1194), - [anon_sym_in] = ACTIONS(1200), - [anon_sym_loop] = ACTIONS(1194), - [anon_sym_make] = ACTIONS(1194), - [anon_sym_while] = ACTIONS(1194), - [anon_sym_do] = ACTIONS(1194), - [anon_sym_if] = ACTIONS(1194), - [anon_sym_else] = ACTIONS(1194), - [anon_sym_match] = ACTIONS(1194), - [anon_sym_RBRACE] = ACTIONS(1196), - [anon_sym_try] = ACTIONS(1194), - [anon_sym_catch] = ACTIONS(1194), - [anon_sym_return] = ACTIONS(1194), - [anon_sym_source] = ACTIONS(1194), - [anon_sym_source_DASHenv] = ACTIONS(1194), - [anon_sym_register] = ACTIONS(1194), - [anon_sym_hide] = ACTIONS(1194), - [anon_sym_hide_DASHenv] = ACTIONS(1194), - [anon_sym_overlay] = ACTIONS(1194), - [anon_sym_new] = ACTIONS(1194), - [anon_sym_as] = ACTIONS(1194), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_STAR_STAR] = ACTIONS(1366), - [anon_sym_PLUS_PLUS] = ACTIONS(1366), - [anon_sym_SLASH] = ACTIONS(1198), - [anon_sym_mod] = ACTIONS(1198), - [anon_sym_SLASH_SLASH] = ACTIONS(1366), - [anon_sym_PLUS] = ACTIONS(1200), - [anon_sym_bit_DASHshl] = ACTIONS(1198), - [anon_sym_bit_DASHshr] = ACTIONS(1198), - [anon_sym_EQ_EQ] = ACTIONS(1366), - [anon_sym_BANG_EQ] = ACTIONS(1366), - [anon_sym_LT2] = ACTIONS(1198), - [anon_sym_LT_EQ] = ACTIONS(1366), - [anon_sym_GT_EQ] = ACTIONS(1366), - [anon_sym_not_DASHin] = ACTIONS(1198), - [anon_sym_starts_DASHwith] = ACTIONS(1198), - [anon_sym_ends_DASHwith] = ACTIONS(1198), - [anon_sym_EQ_TILDE] = ACTIONS(1366), - [anon_sym_BANG_TILDE] = ACTIONS(1366), - [anon_sym_bit_DASHand] = ACTIONS(1198), - [anon_sym_bit_DASHxor] = ACTIONS(1198), - [anon_sym_bit_DASHor] = ACTIONS(1198), - [anon_sym_and] = ACTIONS(1198), - [anon_sym_xor] = ACTIONS(1198), - [anon_sym_or] = ACTIONS(1198), - [aux_sym__val_number_decimal_token1] = ACTIONS(1194), - [aux_sym__val_number_decimal_token2] = ACTIONS(1196), - [anon_sym_DOT2] = ACTIONS(1196), - [aux_sym__val_number_decimal_token3] = ACTIONS(1196), - [aux_sym__val_number_token1] = ACTIONS(1196), - [aux_sym__val_number_token2] = ACTIONS(1196), - [aux_sym__val_number_token3] = ACTIONS(1196), - [aux_sym__val_number_token4] = ACTIONS(1194), - [aux_sym__val_number_token5] = ACTIONS(1196), - [aux_sym__val_number_token6] = ACTIONS(1194), - [anon_sym_DQUOTE] = ACTIONS(1196), - [sym__str_single_quotes] = ACTIONS(1196), - [sym__str_back_ticks] = ACTIONS(1196), - [aux_sym__record_key_token2] = ACTIONS(1194), + [1170] = { + [sym_path] = STATE(1821), + [sym_comment] = STATE(1170), + [aux_sym_cell_path_repeat1] = STATE(1171), + [anon_sym_LBRACK] = ACTIONS(1008), + [anon_sym_COMMA] = ACTIONS(1008), + [anon_sym_LPAREN] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1008), + [anon_sym_GT] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_in] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(1008), + [anon_sym_RBRACE] = ACTIONS(1008), + [anon_sym__] = ACTIONS(1006), + [anon_sym_DOT_DOT] = ACTIONS(1006), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_STAR_STAR] = ACTIONS(1008), + [anon_sym_PLUS_PLUS] = ACTIONS(1008), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_mod] = ACTIONS(1008), + [anon_sym_SLASH_SLASH] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_bit_DASHshl] = ACTIONS(1008), + [anon_sym_bit_DASHshr] = ACTIONS(1008), + [anon_sym_EQ_EQ] = ACTIONS(1008), + [anon_sym_BANG_EQ] = ACTIONS(1008), + [anon_sym_LT2] = ACTIONS(1006), + [anon_sym_LT_EQ] = ACTIONS(1008), + [anon_sym_GT_EQ] = ACTIONS(1008), + [anon_sym_not_DASHin] = ACTIONS(1008), + [anon_sym_starts_DASHwith] = ACTIONS(1008), + [anon_sym_ends_DASHwith] = ACTIONS(1008), + [anon_sym_EQ_TILDE] = ACTIONS(1008), + [anon_sym_BANG_TILDE] = ACTIONS(1008), + [anon_sym_bit_DASHand] = ACTIONS(1008), + [anon_sym_bit_DASHxor] = ACTIONS(1008), + [anon_sym_bit_DASHor] = ACTIONS(1008), + [anon_sym_and] = ACTIONS(1008), + [anon_sym_xor] = ACTIONS(1008), + [anon_sym_or] = ACTIONS(1008), + [anon_sym_DOT] = ACTIONS(3807), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1008), + [anon_sym_DOT_DOT_LT] = ACTIONS(1008), + [anon_sym_null] = ACTIONS(1008), + [anon_sym_true] = ACTIONS(1008), + [anon_sym_false] = ACTIONS(1008), + [aux_sym__val_number_decimal_token1] = ACTIONS(1006), + [aux_sym__val_number_decimal_token2] = ACTIONS(1008), + [anon_sym_DOT2] = ACTIONS(1006), + [aux_sym__val_number_decimal_token3] = ACTIONS(1008), + [aux_sym__val_number_token1] = ACTIONS(1008), + [aux_sym__val_number_token2] = ACTIONS(1008), + [aux_sym__val_number_token3] = ACTIONS(1008), + [aux_sym__val_number_token4] = ACTIONS(1008), + [aux_sym__val_number_token5] = ACTIONS(1008), + [aux_sym__val_number_token6] = ACTIONS(1008), + [anon_sym_0b] = ACTIONS(1006), + [anon_sym_0o] = ACTIONS(1006), + [anon_sym_0x] = ACTIONS(1006), + [sym_val_date] = ACTIONS(1008), + [anon_sym_DQUOTE] = ACTIONS(1008), + [sym__str_single_quotes] = ACTIONS(1008), + [sym__str_back_ticks] = ACTIONS(1008), + [anon_sym_err_GT] = ACTIONS(1008), + [anon_sym_out_GT] = ACTIONS(1008), + [anon_sym_e_GT] = ACTIONS(1008), + [anon_sym_o_GT] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT] = ACTIONS(1008), + [aux_sym_unquoted_token1] = ACTIONS(1006), [anon_sym_POUND] = ACTIONS(3), }, - [967] = { - [sym_comment] = STATE(967), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_alias] = ACTIONS(1190), - [anon_sym_let] = ACTIONS(1190), - [anon_sym_let_DASHenv] = ACTIONS(1190), - [anon_sym_mut] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1190), - [sym_cmd_identifier] = ACTIONS(1190), - [anon_sym_def] = ACTIONS(1190), - [anon_sym_export_DASHenv] = ACTIONS(1190), - [anon_sym_extern] = ACTIONS(1190), - [anon_sym_module] = ACTIONS(1190), - [anon_sym_use] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_DOLLAR] = ACTIONS(1192), - [anon_sym_error] = ACTIONS(1190), - [anon_sym_list] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1190), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_in] = ACTIONS(1190), - [anon_sym_loop] = ACTIONS(1190), - [anon_sym_make] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [anon_sym_do] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_else] = ACTIONS(1190), - [anon_sym_match] = ACTIONS(1190), - [anon_sym_RBRACE] = ACTIONS(1192), - [anon_sym_try] = ACTIONS(1190), - [anon_sym_catch] = ACTIONS(1190), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_source] = ACTIONS(1190), - [anon_sym_source_DASHenv] = ACTIONS(1190), - [anon_sym_register] = ACTIONS(1190), - [anon_sym_hide] = ACTIONS(1190), - [anon_sym_hide_DASHenv] = ACTIONS(1190), - [anon_sym_overlay] = ACTIONS(1190), - [anon_sym_new] = ACTIONS(1190), - [anon_sym_as] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1190), - [anon_sym_STAR_STAR] = ACTIONS(1192), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_mod] = ACTIONS(1190), - [anon_sym_SLASH_SLASH] = ACTIONS(1192), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_bit_DASHshl] = ACTIONS(1190), - [anon_sym_bit_DASHshr] = ACTIONS(1190), - [anon_sym_EQ_EQ] = ACTIONS(1192), - [anon_sym_BANG_EQ] = ACTIONS(1192), - [anon_sym_LT2] = ACTIONS(1190), - [anon_sym_LT_EQ] = ACTIONS(1192), - [anon_sym_GT_EQ] = ACTIONS(1192), - [anon_sym_not_DASHin] = ACTIONS(1190), - [anon_sym_starts_DASHwith] = ACTIONS(1190), - [anon_sym_ends_DASHwith] = ACTIONS(1190), - [anon_sym_EQ_TILDE] = ACTIONS(1192), - [anon_sym_BANG_TILDE] = ACTIONS(1192), - [anon_sym_bit_DASHand] = ACTIONS(1190), - [anon_sym_bit_DASHxor] = ACTIONS(1190), - [anon_sym_bit_DASHor] = ACTIONS(1190), - [anon_sym_and] = ACTIONS(1190), - [anon_sym_xor] = ACTIONS(1190), - [anon_sym_or] = ACTIONS(1190), - [aux_sym__val_number_decimal_token1] = ACTIONS(1190), - [aux_sym__val_number_decimal_token2] = ACTIONS(1192), - [anon_sym_DOT2] = ACTIONS(1192), - [aux_sym__val_number_decimal_token3] = ACTIONS(1192), - [aux_sym__val_number_token1] = ACTIONS(1192), - [aux_sym__val_number_token2] = ACTIONS(1192), - [aux_sym__val_number_token3] = ACTIONS(1192), - [aux_sym__val_number_token4] = ACTIONS(1190), - [aux_sym__val_number_token5] = ACTIONS(1192), - [aux_sym__val_number_token6] = ACTIONS(1190), - [anon_sym_DQUOTE] = ACTIONS(1192), - [sym__str_single_quotes] = ACTIONS(1192), - [sym__str_back_ticks] = ACTIONS(1192), - [aux_sym__record_key_token2] = ACTIONS(1190), + [1171] = { + [sym_path] = STATE(1821), + [sym_comment] = STATE(1171), + [aux_sym_cell_path_repeat1] = STATE(1171), + [anon_sym_LBRACK] = ACTIONS(987), + [anon_sym_COMMA] = ACTIONS(987), + [anon_sym_LPAREN] = ACTIONS(987), + [anon_sym_DOLLAR] = ACTIONS(987), + [anon_sym_GT] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_in] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(987), + [anon_sym_RBRACE] = ACTIONS(987), + [anon_sym__] = ACTIONS(985), + [anon_sym_DOT_DOT] = ACTIONS(985), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_STAR_STAR] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(987), + [anon_sym_SLASH] = ACTIONS(985), + [anon_sym_mod] = ACTIONS(987), + [anon_sym_SLASH_SLASH] = ACTIONS(987), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_bit_DASHshl] = ACTIONS(987), + [anon_sym_bit_DASHshr] = ACTIONS(987), + [anon_sym_EQ_EQ] = ACTIONS(987), + [anon_sym_BANG_EQ] = ACTIONS(987), + [anon_sym_LT2] = ACTIONS(985), + [anon_sym_LT_EQ] = ACTIONS(987), + [anon_sym_GT_EQ] = ACTIONS(987), + [anon_sym_not_DASHin] = ACTIONS(987), + [anon_sym_starts_DASHwith] = ACTIONS(987), + [anon_sym_ends_DASHwith] = ACTIONS(987), + [anon_sym_EQ_TILDE] = ACTIONS(987), + [anon_sym_BANG_TILDE] = ACTIONS(987), + [anon_sym_bit_DASHand] = ACTIONS(987), + [anon_sym_bit_DASHxor] = ACTIONS(987), + [anon_sym_bit_DASHor] = ACTIONS(987), + [anon_sym_and] = ACTIONS(987), + [anon_sym_xor] = ACTIONS(987), + [anon_sym_or] = ACTIONS(987), + [anon_sym_DOT] = ACTIONS(3881), + [anon_sym_DOT_DOT_EQ] = ACTIONS(987), + [anon_sym_DOT_DOT_LT] = ACTIONS(987), + [anon_sym_null] = ACTIONS(987), + [anon_sym_true] = ACTIONS(987), + [anon_sym_false] = ACTIONS(987), + [aux_sym__val_number_decimal_token1] = ACTIONS(985), + [aux_sym__val_number_decimal_token2] = ACTIONS(987), + [anon_sym_DOT2] = ACTIONS(985), + [aux_sym__val_number_decimal_token3] = ACTIONS(987), + [aux_sym__val_number_token1] = ACTIONS(987), + [aux_sym__val_number_token2] = ACTIONS(987), + [aux_sym__val_number_token3] = ACTIONS(987), + [aux_sym__val_number_token4] = ACTIONS(987), + [aux_sym__val_number_token5] = ACTIONS(987), + [aux_sym__val_number_token6] = ACTIONS(987), + [anon_sym_0b] = ACTIONS(985), + [anon_sym_0o] = ACTIONS(985), + [anon_sym_0x] = ACTIONS(985), + [sym_val_date] = ACTIONS(987), + [anon_sym_DQUOTE] = ACTIONS(987), + [sym__str_single_quotes] = ACTIONS(987), + [sym__str_back_ticks] = ACTIONS(987), + [anon_sym_err_GT] = ACTIONS(987), + [anon_sym_out_GT] = ACTIONS(987), + [anon_sym_e_GT] = ACTIONS(987), + [anon_sym_o_GT] = ACTIONS(987), + [anon_sym_err_PLUSout_GT] = ACTIONS(987), + [anon_sym_out_PLUSerr_GT] = ACTIONS(987), + [anon_sym_o_PLUSe_GT] = ACTIONS(987), + [anon_sym_e_PLUSo_GT] = ACTIONS(987), + [aux_sym_unquoted_token1] = ACTIONS(985), [anon_sym_POUND] = ACTIONS(3), }, - [968] = { - [sym_comment] = STATE(968), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_list] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_make] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_else] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_catch] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_new] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1370), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1370), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [aux_sym__record_key_token2] = ACTIONS(1368), + [1172] = { + [sym_cell_path] = STATE(2248), + [sym_path] = STATE(1169), + [sym_comment] = STATE(1172), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_COMMA] = ACTIONS(1004), + [anon_sym_LPAREN] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1004), + [anon_sym_RBRACE] = ACTIONS(1004), + [anon_sym__] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1004), + [anon_sym_PLUS_PLUS] = ACTIONS(1004), + [anon_sym_SLASH] = ACTIONS(1002), + [anon_sym_mod] = ACTIONS(1004), + [anon_sym_SLASH_SLASH] = ACTIONS(1004), + [anon_sym_PLUS] = ACTIONS(1002), + [anon_sym_bit_DASHshl] = ACTIONS(1004), + [anon_sym_bit_DASHshr] = ACTIONS(1004), + [anon_sym_EQ_EQ] = ACTIONS(1004), + [anon_sym_BANG_EQ] = ACTIONS(1004), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ] = ACTIONS(1004), + [anon_sym_GT_EQ] = ACTIONS(1004), + [anon_sym_not_DASHin] = ACTIONS(1004), + [anon_sym_starts_DASHwith] = ACTIONS(1004), + [anon_sym_ends_DASHwith] = ACTIONS(1004), + [anon_sym_EQ_TILDE] = ACTIONS(1004), + [anon_sym_BANG_TILDE] = ACTIONS(1004), + [anon_sym_bit_DASHand] = ACTIONS(1004), + [anon_sym_bit_DASHxor] = ACTIONS(1004), + [anon_sym_bit_DASHor] = ACTIONS(1004), + [anon_sym_and] = ACTIONS(1004), + [anon_sym_xor] = ACTIONS(1004), + [anon_sym_or] = ACTIONS(1004), + [anon_sym_DOT] = ACTIONS(3807), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1004), + [anon_sym_DOT_DOT_LT] = ACTIONS(1004), + [anon_sym_null] = ACTIONS(1004), + [anon_sym_true] = ACTIONS(1004), + [anon_sym_false] = ACTIONS(1004), + [aux_sym__val_number_decimal_token1] = ACTIONS(1002), + [aux_sym__val_number_decimal_token2] = ACTIONS(1004), + [anon_sym_DOT2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1004), + [anon_sym_DQUOTE] = ACTIONS(1004), + [sym__str_single_quotes] = ACTIONS(1004), + [sym__str_back_ticks] = ACTIONS(1004), + [anon_sym_err_GT] = ACTIONS(1004), + [anon_sym_out_GT] = ACTIONS(1004), + [anon_sym_e_GT] = ACTIONS(1004), + [anon_sym_o_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT] = ACTIONS(1004), + [aux_sym_unquoted_token1] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), }, - [969] = { - [sym_comment] = STATE(969), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_list] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_make] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_else] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_catch] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_new] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1768), - [anon_sym_STAR_STAR] = ACTIONS(1770), - [anon_sym_PLUS_PLUS] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1768), - [anon_sym_mod] = ACTIONS(1768), - [anon_sym_SLASH_SLASH] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_bit_DASHshl] = ACTIONS(1376), - [anon_sym_bit_DASHshr] = ACTIONS(1376), - [anon_sym_EQ_EQ] = ACTIONS(1378), - [anon_sym_BANG_EQ] = ACTIONS(1378), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1378), - [anon_sym_GT_EQ] = ACTIONS(1378), - [anon_sym_not_DASHin] = ACTIONS(1376), - [anon_sym_starts_DASHwith] = ACTIONS(1376), - [anon_sym_ends_DASHwith] = ACTIONS(1376), - [anon_sym_EQ_TILDE] = ACTIONS(1378), - [anon_sym_BANG_TILDE] = ACTIONS(1378), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1378), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1378), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [aux_sym__record_key_token2] = ACTIONS(1376), + [1173] = { + [sym__expression] = STATE(10455), + [sym_expr_unary] = STATE(6385), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(6385), + [sym__expr_binary_expression] = STATE(6383), + [sym_expr_parenthesized] = STATE(5992), + [sym_val_range] = STATE(10344), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(6385), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6234), + [sym_val_variable] = STATE(6050), + [sym__var] = STATE(3929), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(5098), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(10483), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1173), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(3100), + [anon_sym_DOLLAR] = ACTIONS(3102), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(3884), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3886), + [anon_sym_DOT_DOT_LT] = ACTIONS(3886), + [anon_sym_null] = ACTIONS(3669), + [anon_sym_true] = ACTIONS(3671), + [anon_sym_false] = ACTIONS(3671), + [aux_sym__val_number_decimal_token1] = ACTIONS(3673), + [aux_sym__val_number_decimal_token2] = ACTIONS(3675), + [anon_sym_DOT2] = ACTIONS(3888), + [aux_sym__val_number_decimal_token3] = ACTIONS(3679), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(3681), + [aux_sym__val_number_token5] = ACTIONS(3681), + [aux_sym__val_number_token6] = ACTIONS(3681), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(3683), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), [anon_sym_POUND] = ACTIONS(3), }, - [970] = { - [sym_comment] = STATE(970), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_list] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_make] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_else] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_catch] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_new] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1770), - [anon_sym_PLUS_PLUS] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1376), - [anon_sym_mod] = ACTIONS(1376), - [anon_sym_SLASH_SLASH] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_bit_DASHshl] = ACTIONS(1376), - [anon_sym_bit_DASHshr] = ACTIONS(1376), - [anon_sym_EQ_EQ] = ACTIONS(1378), - [anon_sym_BANG_EQ] = ACTIONS(1378), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1378), - [anon_sym_GT_EQ] = ACTIONS(1378), - [anon_sym_not_DASHin] = ACTIONS(1376), - [anon_sym_starts_DASHwith] = ACTIONS(1376), - [anon_sym_ends_DASHwith] = ACTIONS(1376), - [anon_sym_EQ_TILDE] = ACTIONS(1378), - [anon_sym_BANG_TILDE] = ACTIONS(1378), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1378), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1378), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [aux_sym__record_key_token2] = ACTIONS(1376), + [1174] = { + [sym__expression] = STATE(10478), + [sym_expr_unary] = STATE(5743), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5743), + [sym__expr_binary_expression] = STATE(6383), + [sym_expr_parenthesized] = STATE(5960), + [sym_val_range] = STATE(6728), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5743), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6234), + [sym_val_variable] = STATE(5903), + [sym__var] = STATE(3929), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4844), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(10559), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1174), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(3100), + [anon_sym_DOLLAR] = ACTIONS(3102), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(3663), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3667), + [anon_sym_DOT_DOT_LT] = ACTIONS(3667), + [anon_sym_null] = ACTIONS(3669), + [anon_sym_true] = ACTIONS(3671), + [anon_sym_false] = ACTIONS(3671), + [aux_sym__val_number_decimal_token1] = ACTIONS(3673), + [aux_sym__val_number_decimal_token2] = ACTIONS(3675), + [anon_sym_DOT2] = ACTIONS(3677), + [aux_sym__val_number_decimal_token3] = ACTIONS(3679), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(3681), + [aux_sym__val_number_token5] = ACTIONS(3681), + [aux_sym__val_number_token6] = ACTIONS(3681), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(3683), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), [anon_sym_POUND] = ACTIONS(3), }, - [971] = { - [sym_comment] = STATE(971), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_list] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1766), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_make] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_else] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_catch] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_new] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1768), - [anon_sym_STAR_STAR] = ACTIONS(1770), - [anon_sym_PLUS_PLUS] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1768), - [anon_sym_mod] = ACTIONS(1768), - [anon_sym_SLASH_SLASH] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1766), - [anon_sym_bit_DASHshl] = ACTIONS(1774), - [anon_sym_bit_DASHshr] = ACTIONS(1774), - [anon_sym_EQ_EQ] = ACTIONS(1378), - [anon_sym_BANG_EQ] = ACTIONS(1378), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1378), - [anon_sym_GT_EQ] = ACTIONS(1378), - [anon_sym_not_DASHin] = ACTIONS(1376), - [anon_sym_starts_DASHwith] = ACTIONS(1376), - [anon_sym_ends_DASHwith] = ACTIONS(1376), - [anon_sym_EQ_TILDE] = ACTIONS(1378), - [anon_sym_BANG_TILDE] = ACTIONS(1378), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1378), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1378), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [aux_sym__record_key_token2] = ACTIONS(1376), + [1175] = { + [sym_comment] = STATE(1175), + [anon_sym_export] = ACTIONS(1155), + [anon_sym_alias] = ACTIONS(1155), + [anon_sym_let] = ACTIONS(1155), + [anon_sym_let_DASHenv] = ACTIONS(1155), + [anon_sym_mut] = ACTIONS(1155), + [anon_sym_const] = ACTIONS(1155), + [anon_sym_SEMI] = ACTIONS(1155), + [sym_cmd_identifier] = ACTIONS(1155), + [anon_sym_LF] = ACTIONS(1157), + [anon_sym_def] = ACTIONS(1155), + [anon_sym_export_DASHenv] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1155), + [anon_sym_module] = ACTIONS(1155), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1155), + [anon_sym_LPAREN] = ACTIONS(1155), + [anon_sym_RPAREN] = ACTIONS(1155), + [anon_sym_DOLLAR] = ACTIONS(1155), + [anon_sym_error] = ACTIONS(1155), + [anon_sym_DASH_DASH] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_break] = ACTIONS(1155), + [anon_sym_continue] = ACTIONS(1155), + [anon_sym_for] = ACTIONS(1155), + [anon_sym_loop] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(1155), + [anon_sym_do] = ACTIONS(1155), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_match] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_RBRACE] = ACTIONS(1155), + [anon_sym_DOT_DOT] = ACTIONS(1155), + [anon_sym_try] = ACTIONS(1155), + [anon_sym_return] = ACTIONS(1155), + [anon_sym_source] = ACTIONS(1155), + [anon_sym_source_DASHenv] = ACTIONS(1155), + [anon_sym_register] = ACTIONS(1155), + [anon_sym_hide] = ACTIONS(1155), + [anon_sym_hide_DASHenv] = ACTIONS(1155), + [anon_sym_overlay] = ACTIONS(1155), + [anon_sym_as] = ACTIONS(1155), + [anon_sym_where] = ACTIONS(1155), + [anon_sym_not] = ACTIONS(1155), + [anon_sym_LPAREN2] = ACTIONS(1157), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1155), + [anon_sym_DOT_DOT_LT] = ACTIONS(1155), + [anon_sym_null] = ACTIONS(1155), + [anon_sym_true] = ACTIONS(1155), + [anon_sym_false] = ACTIONS(1155), + [aux_sym__val_number_decimal_token1] = ACTIONS(1155), + [aux_sym__val_number_decimal_token2] = ACTIONS(1155), + [anon_sym_DOT2] = ACTIONS(1155), + [aux_sym__val_number_decimal_token3] = ACTIONS(1155), + [aux_sym__val_number_token1] = ACTIONS(1155), + [aux_sym__val_number_token2] = ACTIONS(1155), + [aux_sym__val_number_token3] = ACTIONS(1155), + [aux_sym__val_number_token4] = ACTIONS(1155), + [aux_sym__val_number_token5] = ACTIONS(1155), + [aux_sym__val_number_token6] = ACTIONS(1155), + [anon_sym_0b] = ACTIONS(1155), + [anon_sym_0o] = ACTIONS(1155), + [anon_sym_0x] = ACTIONS(1155), + [sym_val_date] = ACTIONS(1155), + [anon_sym_DQUOTE] = ACTIONS(1155), + [sym__str_single_quotes] = ACTIONS(1155), + [sym__str_back_ticks] = ACTIONS(1155), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1155), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1155), + [anon_sym_CARET] = ACTIONS(1155), + [aux_sym_unquoted_token6] = ACTIONS(1155), + [anon_sym_POUND] = ACTIONS(113), + }, + [1176] = { + [sym_comment] = STATE(1176), + [anon_sym_LBRACK] = ACTIONS(1063), + [anon_sym_COMMA] = ACTIONS(1063), + [anon_sym_RBRACK] = ACTIONS(1063), + [anon_sym_LPAREN] = ACTIONS(1063), + [anon_sym_DOLLAR] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_DASH_DASH] = ACTIONS(1063), + [anon_sym_DASH] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(1063), + [anon_sym_DOT_DOT] = ACTIONS(1061), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_STAR_STAR] = ACTIONS(1063), + [anon_sym_PLUS_PLUS] = ACTIONS(1063), + [anon_sym_SLASH] = ACTIONS(1061), + [anon_sym_mod] = ACTIONS(1063), + [anon_sym_SLASH_SLASH] = ACTIONS(1063), + [anon_sym_PLUS] = ACTIONS(1061), + [anon_sym_bit_DASHshl] = ACTIONS(1063), + [anon_sym_bit_DASHshr] = ACTIONS(1063), + [anon_sym_EQ_EQ] = ACTIONS(1063), + [anon_sym_BANG_EQ] = ACTIONS(1063), + [anon_sym_LT2] = ACTIONS(1061), + [anon_sym_LT_EQ] = ACTIONS(1063), + [anon_sym_GT_EQ] = ACTIONS(1063), + [anon_sym_not_DASHin] = ACTIONS(1063), + [anon_sym_starts_DASHwith] = ACTIONS(1063), + [anon_sym_ends_DASHwith] = ACTIONS(1063), + [anon_sym_EQ_TILDE] = ACTIONS(1063), + [anon_sym_BANG_TILDE] = ACTIONS(1063), + [anon_sym_bit_DASHand] = ACTIONS(1063), + [anon_sym_bit_DASHxor] = ACTIONS(1063), + [anon_sym_bit_DASHor] = ACTIONS(1063), + [anon_sym_and] = ACTIONS(1063), + [anon_sym_xor] = ACTIONS(1063), + [anon_sym_or] = ACTIONS(1063), + [anon_sym_DOT_DOT2] = ACTIONS(1061), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1061), + [anon_sym_DOT_DOT_LT] = ACTIONS(1061), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1063), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1063), + [anon_sym_null] = ACTIONS(1063), + [anon_sym_true] = ACTIONS(1063), + [anon_sym_false] = ACTIONS(1063), + [aux_sym__val_number_decimal_token1] = ACTIONS(1061), + [aux_sym__val_number_decimal_token2] = ACTIONS(1063), + [anon_sym_DOT2] = ACTIONS(1061), + [aux_sym__val_number_decimal_token3] = ACTIONS(1063), + [aux_sym__val_number_token1] = ACTIONS(1063), + [aux_sym__val_number_token2] = ACTIONS(1063), + [aux_sym__val_number_token3] = ACTIONS(1063), + [aux_sym__val_number_token4] = ACTIONS(1063), + [aux_sym__val_number_token5] = ACTIONS(1063), + [aux_sym__val_number_token6] = ACTIONS(1063), + [anon_sym_0b] = ACTIONS(1061), + [anon_sym_0o] = ACTIONS(1061), + [anon_sym_0x] = ACTIONS(1061), + [sym_val_date] = ACTIONS(1063), + [anon_sym_DQUOTE] = ACTIONS(1063), + [sym__str_single_quotes] = ACTIONS(1063), + [sym__str_back_ticks] = ACTIONS(1063), + [anon_sym_err_GT] = ACTIONS(1063), + [anon_sym_out_GT] = ACTIONS(1063), + [anon_sym_e_GT] = ACTIONS(1063), + [anon_sym_o_GT] = ACTIONS(1063), + [anon_sym_err_PLUSout_GT] = ACTIONS(1063), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1063), + [anon_sym_o_PLUSe_GT] = ACTIONS(1063), + [anon_sym_e_PLUSo_GT] = ACTIONS(1063), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1061), [anon_sym_POUND] = ACTIONS(3), }, - [972] = { - [sym_comment] = STATE(972), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_list] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1766), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1778), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_make] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_else] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_catch] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_new] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1768), - [anon_sym_STAR_STAR] = ACTIONS(1770), - [anon_sym_PLUS_PLUS] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1768), - [anon_sym_mod] = ACTIONS(1768), - [anon_sym_SLASH_SLASH] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1766), - [anon_sym_bit_DASHshl] = ACTIONS(1774), - [anon_sym_bit_DASHshr] = ACTIONS(1774), - [anon_sym_EQ_EQ] = ACTIONS(1776), - [anon_sym_BANG_EQ] = ACTIONS(1776), - [anon_sym_LT2] = ACTIONS(1764), - [anon_sym_LT_EQ] = ACTIONS(1776), - [anon_sym_GT_EQ] = ACTIONS(1776), - [anon_sym_not_DASHin] = ACTIONS(1778), - [anon_sym_starts_DASHwith] = ACTIONS(1778), - [anon_sym_ends_DASHwith] = ACTIONS(1778), - [anon_sym_EQ_TILDE] = ACTIONS(1780), - [anon_sym_BANG_TILDE] = ACTIONS(1780), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1378), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1378), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [aux_sym__record_key_token2] = ACTIONS(1376), + [1177] = { + [sym_cell_path] = STATE(2213), + [sym_path] = STATE(1169), + [sym_comment] = STATE(1177), + [anon_sym_LBRACK] = ACTIONS(3890), + [anon_sym_COMMA] = ACTIONS(3890), + [anon_sym_LPAREN] = ACTIONS(3890), + [anon_sym_DOLLAR] = ACTIONS(3890), + [anon_sym_GT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_in] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(3890), + [anon_sym_RBRACE] = ACTIONS(3890), + [anon_sym__] = ACTIONS(3893), + [anon_sym_DOT_DOT] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_STAR_STAR] = ACTIONS(1059), + [anon_sym_PLUS_PLUS] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_mod] = ACTIONS(1059), + [anon_sym_SLASH_SLASH] = ACTIONS(1059), + [anon_sym_PLUS] = ACTIONS(1057), + [anon_sym_bit_DASHshl] = ACTIONS(1059), + [anon_sym_bit_DASHshr] = ACTIONS(1059), + [anon_sym_EQ_EQ] = ACTIONS(1059), + [anon_sym_BANG_EQ] = ACTIONS(1059), + [anon_sym_LT2] = ACTIONS(1057), + [anon_sym_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_EQ] = ACTIONS(1059), + [anon_sym_not_DASHin] = ACTIONS(1059), + [anon_sym_starts_DASHwith] = ACTIONS(1059), + [anon_sym_ends_DASHwith] = ACTIONS(1059), + [anon_sym_EQ_TILDE] = ACTIONS(1059), + [anon_sym_BANG_TILDE] = ACTIONS(1059), + [anon_sym_bit_DASHand] = ACTIONS(1059), + [anon_sym_bit_DASHxor] = ACTIONS(1059), + [anon_sym_bit_DASHor] = ACTIONS(1059), + [anon_sym_and] = ACTIONS(1059), + [anon_sym_xor] = ACTIONS(1059), + [anon_sym_or] = ACTIONS(1059), + [anon_sym_DOT] = ACTIONS(3807), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3890), + [anon_sym_DOT_DOT_LT] = ACTIONS(3890), + [anon_sym_null] = ACTIONS(3890), + [anon_sym_true] = ACTIONS(3890), + [anon_sym_false] = ACTIONS(3890), + [aux_sym__val_number_decimal_token1] = ACTIONS(3893), + [aux_sym__val_number_decimal_token2] = ACTIONS(3890), + [anon_sym_DOT2] = ACTIONS(3893), + [aux_sym__val_number_decimal_token3] = ACTIONS(3890), + [aux_sym__val_number_token1] = ACTIONS(3890), + [aux_sym__val_number_token2] = ACTIONS(3890), + [aux_sym__val_number_token3] = ACTIONS(3890), + [aux_sym__val_number_token4] = ACTIONS(3890), + [aux_sym__val_number_token5] = ACTIONS(3890), + [aux_sym__val_number_token6] = ACTIONS(3890), + [anon_sym_0b] = ACTIONS(3893), + [anon_sym_0o] = ACTIONS(3893), + [anon_sym_0x] = ACTIONS(3893), + [sym_val_date] = ACTIONS(3890), + [anon_sym_DQUOTE] = ACTIONS(3890), + [sym__str_single_quotes] = ACTIONS(3890), + [sym__str_back_ticks] = ACTIONS(3890), + [anon_sym_err_GT] = ACTIONS(3890), + [anon_sym_out_GT] = ACTIONS(3890), + [anon_sym_e_GT] = ACTIONS(3890), + [anon_sym_o_GT] = ACTIONS(3890), + [anon_sym_err_PLUSout_GT] = ACTIONS(3890), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3890), + [anon_sym_o_PLUSe_GT] = ACTIONS(3890), + [anon_sym_e_PLUSo_GT] = ACTIONS(3890), + [aux_sym_unquoted_token1] = ACTIONS(3893), [anon_sym_POUND] = ACTIONS(3), }, - [973] = { - [sym_comment] = STATE(973), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_list] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1766), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1778), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_make] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_else] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_catch] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_new] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1768), - [anon_sym_STAR_STAR] = ACTIONS(1770), - [anon_sym_PLUS_PLUS] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1768), - [anon_sym_mod] = ACTIONS(1768), - [anon_sym_SLASH_SLASH] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1766), - [anon_sym_bit_DASHshl] = ACTIONS(1774), - [anon_sym_bit_DASHshr] = ACTIONS(1774), - [anon_sym_EQ_EQ] = ACTIONS(1776), - [anon_sym_BANG_EQ] = ACTIONS(1776), - [anon_sym_LT2] = ACTIONS(1764), - [anon_sym_LT_EQ] = ACTIONS(1776), - [anon_sym_GT_EQ] = ACTIONS(1776), - [anon_sym_not_DASHin] = ACTIONS(1778), - [anon_sym_starts_DASHwith] = ACTIONS(1778), - [anon_sym_ends_DASHwith] = ACTIONS(1778), - [anon_sym_EQ_TILDE] = ACTIONS(1780), - [anon_sym_BANG_TILDE] = ACTIONS(1780), - [anon_sym_bit_DASHand] = ACTIONS(1782), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1378), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1378), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [aux_sym__record_key_token2] = ACTIONS(1376), + [1178] = { + [sym__expression] = STATE(7774), + [sym_expr_unary] = STATE(5743), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5743), + [sym__expr_binary_expression] = STATE(6359), + [sym_expr_parenthesized] = STATE(5567), + [sym_val_range] = STATE(6728), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5743), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6013), + [sym_val_variable] = STATE(5562), + [sym__var] = STATE(3929), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4541), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(7775), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1178), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(3100), + [anon_sym_DOLLAR] = ACTIONS(3102), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(3896), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3898), + [anon_sym_DOT_DOT_LT] = ACTIONS(3898), + [anon_sym_null] = ACTIONS(3900), + [anon_sym_true] = ACTIONS(3902), + [anon_sym_false] = ACTIONS(3902), + [aux_sym__val_number_decimal_token1] = ACTIONS(3904), + [aux_sym__val_number_decimal_token2] = ACTIONS(3906), + [anon_sym_DOT2] = ACTIONS(3908), + [aux_sym__val_number_decimal_token3] = ACTIONS(3910), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(3912), + [aux_sym__val_number_token5] = ACTIONS(3912), + [aux_sym__val_number_token6] = ACTIONS(3912), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(3914), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), [anon_sym_POUND] = ACTIONS(3), }, - [974] = { - [sym_comment] = STATE(974), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_list] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1766), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1778), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_make] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_else] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_catch] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_new] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1768), - [anon_sym_STAR_STAR] = ACTIONS(1770), - [anon_sym_PLUS_PLUS] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1768), - [anon_sym_mod] = ACTIONS(1768), - [anon_sym_SLASH_SLASH] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1766), - [anon_sym_bit_DASHshl] = ACTIONS(1774), - [anon_sym_bit_DASHshr] = ACTIONS(1774), - [anon_sym_EQ_EQ] = ACTIONS(1776), - [anon_sym_BANG_EQ] = ACTIONS(1776), - [anon_sym_LT2] = ACTIONS(1764), - [anon_sym_LT_EQ] = ACTIONS(1776), - [anon_sym_GT_EQ] = ACTIONS(1776), - [anon_sym_not_DASHin] = ACTIONS(1778), - [anon_sym_starts_DASHwith] = ACTIONS(1778), - [anon_sym_ends_DASHwith] = ACTIONS(1778), - [anon_sym_EQ_TILDE] = ACTIONS(1780), - [anon_sym_BANG_TILDE] = ACTIONS(1780), - [anon_sym_bit_DASHand] = ACTIONS(1782), - [anon_sym_bit_DASHxor] = ACTIONS(1784), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1378), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1378), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [aux_sym__record_key_token2] = ACTIONS(1376), + [1179] = { + [sym_cell_path] = STATE(2136), + [sym_path] = STATE(1192), + [sym_comment] = STATE(1179), + [ts_builtin_sym_end] = ACTIONS(1053), + [anon_sym_export] = ACTIONS(1051), + [anon_sym_alias] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(1051), + [anon_sym_let_DASHenv] = ACTIONS(1051), + [anon_sym_mut] = ACTIONS(1051), + [anon_sym_const] = ACTIONS(1051), + [anon_sym_SEMI] = ACTIONS(1051), + [sym_cmd_identifier] = ACTIONS(1051), + [anon_sym_LF] = ACTIONS(1053), + [anon_sym_def] = ACTIONS(1051), + [anon_sym_export_DASHenv] = ACTIONS(1051), + [anon_sym_extern] = ACTIONS(1051), + [anon_sym_module] = ACTIONS(1051), + [anon_sym_use] = ACTIONS(1051), + [anon_sym_LBRACK] = ACTIONS(1051), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_DOLLAR] = ACTIONS(1051), + [anon_sym_error] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_break] = ACTIONS(1051), + [anon_sym_continue] = ACTIONS(1051), + [anon_sym_for] = ACTIONS(1051), + [anon_sym_loop] = ACTIONS(1051), + [anon_sym_while] = ACTIONS(1051), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_if] = ACTIONS(1051), + [anon_sym_match] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(1051), + [anon_sym_DOT_DOT] = ACTIONS(1051), + [anon_sym_try] = ACTIONS(1051), + [anon_sym_return] = ACTIONS(1051), + [anon_sym_source] = ACTIONS(1051), + [anon_sym_source_DASHenv] = ACTIONS(1051), + [anon_sym_register] = ACTIONS(1051), + [anon_sym_hide] = ACTIONS(1051), + [anon_sym_hide_DASHenv] = ACTIONS(1051), + [anon_sym_overlay] = ACTIONS(1051), + [anon_sym_as] = ACTIONS(1051), + [anon_sym_where] = ACTIONS(1051), + [anon_sym_not] = ACTIONS(1051), + [anon_sym_DOT] = ACTIONS(3785), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1051), + [anon_sym_DOT_DOT_LT] = ACTIONS(1051), + [anon_sym_null] = ACTIONS(1051), + [anon_sym_true] = ACTIONS(1051), + [anon_sym_false] = ACTIONS(1051), + [aux_sym__val_number_decimal_token1] = ACTIONS(1051), + [aux_sym__val_number_decimal_token2] = ACTIONS(1051), + [anon_sym_DOT2] = ACTIONS(1051), + [aux_sym__val_number_decimal_token3] = ACTIONS(1051), + [aux_sym__val_number_token1] = ACTIONS(1051), + [aux_sym__val_number_token2] = ACTIONS(1051), + [aux_sym__val_number_token3] = ACTIONS(1051), + [aux_sym__val_number_token4] = ACTIONS(1051), + [aux_sym__val_number_token5] = ACTIONS(1051), + [aux_sym__val_number_token6] = ACTIONS(1051), + [anon_sym_0b] = ACTIONS(1051), + [anon_sym_0o] = ACTIONS(1051), + [anon_sym_0x] = ACTIONS(1051), + [sym_val_date] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(1051), + [sym__str_single_quotes] = ACTIONS(1051), + [sym__str_back_ticks] = ACTIONS(1051), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1051), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1051), + [anon_sym_CARET] = ACTIONS(1051), + [anon_sym_POUND] = ACTIONS(113), + }, + [1180] = { + [sym_comment] = STATE(1180), + [ts_builtin_sym_end] = ACTIONS(2231), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_alias] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_let_DASHenv] = ACTIONS(2229), + [anon_sym_mut] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2229), + [sym_cmd_identifier] = ACTIONS(2229), + [anon_sym_LF] = ACTIONS(2231), + [anon_sym_def] = ACTIONS(2229), + [anon_sym_export_DASHenv] = ACTIONS(2229), + [anon_sym_extern] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2229), + [anon_sym_error] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_loop] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_source] = ACTIONS(2229), + [anon_sym_source_DASHenv] = ACTIONS(2229), + [anon_sym_register] = ACTIONS(2229), + [anon_sym_hide] = ACTIONS(2229), + [anon_sym_hide_DASHenv] = ACTIONS(2229), + [anon_sym_overlay] = ACTIONS(2229), + [anon_sym_as] = ACTIONS(2229), + [anon_sym_where] = ACTIONS(2229), + [anon_sym_not] = ACTIONS(2229), + [anon_sym_LPAREN2] = ACTIONS(2231), + [anon_sym_DOT] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2229), + [anon_sym_DOT_DOT_LT] = ACTIONS(2229), + [anon_sym_null] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [aux_sym__val_number_decimal_token1] = ACTIONS(2229), + [aux_sym__val_number_decimal_token2] = ACTIONS(2229), + [anon_sym_DOT2] = ACTIONS(2229), + [aux_sym__val_number_decimal_token3] = ACTIONS(2229), + [aux_sym__val_number_token1] = ACTIONS(2229), + [aux_sym__val_number_token2] = ACTIONS(2229), + [aux_sym__val_number_token3] = ACTIONS(2229), + [aux_sym__val_number_token4] = ACTIONS(2229), + [aux_sym__val_number_token5] = ACTIONS(2229), + [aux_sym__val_number_token6] = ACTIONS(2229), + [anon_sym_0b] = ACTIONS(2229), + [anon_sym_0o] = ACTIONS(2229), + [anon_sym_0x] = ACTIONS(2229), + [sym_val_date] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2229), + [anon_sym_CARET] = ACTIONS(2229), + [aux_sym_unquoted_token2] = ACTIONS(2229), + [anon_sym_POUND] = ACTIONS(113), + }, + [1181] = { + [sym_comment] = STATE(1181), + [ts_builtin_sym_end] = ACTIONS(2364), + [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), + [anon_sym_SEMI] = ACTIONS(2362), + [sym_cmd_identifier] = ACTIONS(2362), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2362), + [anon_sym_LPAREN] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2362), + [anon_sym_error] = ACTIONS(2362), + [anon_sym_DASH_DASH] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_break] = ACTIONS(2362), + [anon_sym_continue] = ACTIONS(2362), + [anon_sym_for] = ACTIONS(2362), + [anon_sym_loop] = ACTIONS(2362), + [anon_sym_while] = ACTIONS(2362), + [anon_sym_do] = ACTIONS(2362), + [anon_sym_if] = ACTIONS(2362), + [anon_sym_match] = ACTIONS(2362), + [anon_sym_LBRACE] = ACTIONS(2362), + [anon_sym_DOT_DOT] = ACTIONS(2362), + [anon_sym_try] = 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_where] = ACTIONS(2362), + [anon_sym_not] = ACTIONS(2362), + [anon_sym_LPAREN2] = ACTIONS(2364), + [anon_sym_DOT] = ACTIONS(2362), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2362), + [anon_sym_DOT_DOT_LT] = ACTIONS(2362), + [anon_sym_null] = ACTIONS(2362), + [anon_sym_true] = ACTIONS(2362), + [anon_sym_false] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2362), + [aux_sym__val_number_decimal_token2] = ACTIONS(2362), + [anon_sym_DOT2] = ACTIONS(2362), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2362), + [anon_sym_0o] = ACTIONS(2362), + [anon_sym_0x] = ACTIONS(2362), + [sym_val_date] = 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_CARET] = ACTIONS(2362), + [aux_sym_unquoted_token2] = ACTIONS(2362), + [anon_sym_POUND] = ACTIONS(113), + }, + [1182] = { + [sym__expression] = STATE(4962), + [sym_expr_unary] = STATE(5890), + [sym__expr_unary_minus] = STATE(5878), + [sym_expr_binary] = STATE(5890), + [sym__expr_binary_expression] = STATE(6380), + [sym_expr_parenthesized] = STATE(5154), + [sym_val_range] = STATE(8295), + [sym__val_range] = STATE(10155), + [sym__value] = STATE(5890), + [sym_val_nothing] = STATE(5931), + [sym_val_bool] = STATE(5739), + [sym_val_variable] = STATE(5103), + [sym__var] = STATE(4428), + [sym_val_number] = STATE(5931), + [sym__val_number_decimal] = STATE(4384), + [sym__val_number] = STATE(5285), + [sym_val_duration] = STATE(5931), + [sym_val_filesize] = STATE(5931), + [sym_val_binary] = STATE(5931), + [sym_val_string] = STATE(5931), + [sym__str_double_quotes] = STATE(5888), + [sym_val_interpolated] = STATE(5931), + [sym__inter_single_quotes] = STATE(5935), + [sym__inter_double_quotes] = STATE(5940), + [sym_val_list] = STATE(5931), + [sym_val_record] = STATE(5931), + [sym_val_table] = STATE(5931), + [sym_val_closure] = STATE(5931), + [sym_unquoted] = STATE(4963), + [sym__unquoted_anonymous_prefix] = STATE(10439), + [sym_comment] = STATE(1182), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(1528), + [anon_sym_DASH] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_DOT_DOT] = ACTIONS(3916), + [anon_sym_not] = ACTIONS(3918), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3920), + [anon_sym_DOT_DOT_LT] = ACTIONS(3920), + [anon_sym_null] = ACTIONS(3922), + [anon_sym_true] = ACTIONS(3924), + [anon_sym_false] = ACTIONS(3924), + [aux_sym__val_number_decimal_token1] = ACTIONS(3926), + [aux_sym__val_number_decimal_token2] = ACTIONS(3928), + [anon_sym_DOT2] = ACTIONS(3930), + [aux_sym__val_number_decimal_token3] = ACTIONS(3932), + [aux_sym__val_number_token1] = ACTIONS(93), + [aux_sym__val_number_token2] = ACTIONS(93), + [aux_sym__val_number_token3] = ACTIONS(93), + [aux_sym__val_number_token4] = ACTIONS(3934), + [aux_sym__val_number_token5] = ACTIONS(3934), + [aux_sym__val_number_token6] = ACTIONS(3934), + [anon_sym_0b] = ACTIONS(97), + [anon_sym_0o] = ACTIONS(99), + [anon_sym_0x] = ACTIONS(99), + [sym_val_date] = ACTIONS(3936), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym__str_single_quotes] = ACTIONS(105), + [sym__str_back_ticks] = ACTIONS(105), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(109), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3938), [anon_sym_POUND] = ACTIONS(3), }, - [975] = { - [sym_comment] = STATE(975), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_list] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1766), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1778), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_make] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_else] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_catch] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_new] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1768), - [anon_sym_STAR_STAR] = ACTIONS(1770), - [anon_sym_PLUS_PLUS] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1768), - [anon_sym_mod] = ACTIONS(1768), - [anon_sym_SLASH_SLASH] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1766), - [anon_sym_bit_DASHshl] = ACTIONS(1774), - [anon_sym_bit_DASHshr] = ACTIONS(1774), - [anon_sym_EQ_EQ] = ACTIONS(1776), - [anon_sym_BANG_EQ] = ACTIONS(1776), - [anon_sym_LT2] = ACTIONS(1764), - [anon_sym_LT_EQ] = ACTIONS(1776), - [anon_sym_GT_EQ] = ACTIONS(1776), - [anon_sym_not_DASHin] = ACTIONS(1778), - [anon_sym_starts_DASHwith] = ACTIONS(1778), - [anon_sym_ends_DASHwith] = ACTIONS(1778), - [anon_sym_EQ_TILDE] = ACTIONS(1780), - [anon_sym_BANG_TILDE] = ACTIONS(1780), - [anon_sym_bit_DASHand] = ACTIONS(1782), - [anon_sym_bit_DASHxor] = ACTIONS(1784), - [anon_sym_bit_DASHor] = ACTIONS(1786), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1378), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1378), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [aux_sym__record_key_token2] = ACTIONS(1376), + [1183] = { + [sym_comment] = STATE(1183), + [ts_builtin_sym_end] = ACTIONS(2404), + [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), + [anon_sym_SEMI] = ACTIONS(2402), + [sym_cmd_identifier] = ACTIONS(2402), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2402), + [anon_sym_LPAREN] = ACTIONS(2402), + [anon_sym_DOLLAR] = ACTIONS(2402), + [anon_sym_error] = ACTIONS(2402), + [anon_sym_DASH_DASH] = ACTIONS(2402), + [anon_sym_DASH] = ACTIONS(2402), + [anon_sym_break] = ACTIONS(2402), + [anon_sym_continue] = ACTIONS(2402), + [anon_sym_for] = ACTIONS(2402), + [anon_sym_loop] = ACTIONS(2402), + [anon_sym_while] = ACTIONS(2402), + [anon_sym_do] = ACTIONS(2402), + [anon_sym_if] = ACTIONS(2402), + [anon_sym_match] = ACTIONS(2402), + [anon_sym_LBRACE] = ACTIONS(2402), + [anon_sym_DOT_DOT] = ACTIONS(2402), + [anon_sym_try] = 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_where] = ACTIONS(2402), + [anon_sym_not] = ACTIONS(2402), + [anon_sym_LPAREN2] = ACTIONS(2404), + [anon_sym_DOT] = ACTIONS(2402), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2402), + [anon_sym_DOT_DOT_LT] = ACTIONS(2402), + [anon_sym_null] = ACTIONS(2402), + [anon_sym_true] = ACTIONS(2402), + [anon_sym_false] = ACTIONS(2402), + [aux_sym__val_number_decimal_token1] = ACTIONS(2402), + [aux_sym__val_number_decimal_token2] = ACTIONS(2402), + [anon_sym_DOT2] = ACTIONS(2402), + [aux_sym__val_number_decimal_token3] = ACTIONS(2402), + [aux_sym__val_number_token1] = ACTIONS(2402), + [aux_sym__val_number_token2] = ACTIONS(2402), + [aux_sym__val_number_token3] = ACTIONS(2402), + [aux_sym__val_number_token4] = ACTIONS(2402), + [aux_sym__val_number_token5] = ACTIONS(2402), + [aux_sym__val_number_token6] = ACTIONS(2402), + [anon_sym_0b] = ACTIONS(2402), + [anon_sym_0o] = ACTIONS(2402), + [anon_sym_0x] = ACTIONS(2402), + [sym_val_date] = 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_CARET] = ACTIONS(2402), + [aux_sym_unquoted_token2] = ACTIONS(2402), + [anon_sym_POUND] = ACTIONS(113), + }, + [1184] = { + [sym_comment] = STATE(1184), + [anon_sym_export] = ACTIONS(1033), + [anon_sym_alias] = ACTIONS(1033), + [anon_sym_let] = ACTIONS(1033), + [anon_sym_let_DASHenv] = ACTIONS(1033), + [anon_sym_mut] = ACTIONS(1033), + [anon_sym_const] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(1033), + [sym_cmd_identifier] = ACTIONS(1033), + [anon_sym_LF] = ACTIONS(1035), + [anon_sym_def] = ACTIONS(1033), + [anon_sym_export_DASHenv] = ACTIONS(1033), + [anon_sym_extern] = ACTIONS(1033), + [anon_sym_module] = ACTIONS(1033), + [anon_sym_use] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1033), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_RPAREN] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_error] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1033), + [anon_sym_break] = ACTIONS(1033), + [anon_sym_continue] = ACTIONS(1033), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_loop] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(1033), + [anon_sym_do] = ACTIONS(1033), + [anon_sym_if] = ACTIONS(1033), + [anon_sym_match] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1033), + [anon_sym_DOT_DOT] = ACTIONS(1033), + [anon_sym_try] = ACTIONS(1033), + [anon_sym_return] = ACTIONS(1033), + [anon_sym_source] = ACTIONS(1033), + [anon_sym_source_DASHenv] = ACTIONS(1033), + [anon_sym_register] = ACTIONS(1033), + [anon_sym_hide] = ACTIONS(1033), + [anon_sym_hide_DASHenv] = ACTIONS(1033), + [anon_sym_overlay] = ACTIONS(1033), + [anon_sym_as] = ACTIONS(1033), + [anon_sym_where] = ACTIONS(1033), + [anon_sym_QMARK2] = ACTIONS(1033), + [anon_sym_not] = ACTIONS(1033), + [anon_sym_DOT] = ACTIONS(1033), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1033), + [anon_sym_DOT_DOT_LT] = ACTIONS(1033), + [anon_sym_null] = ACTIONS(1033), + [anon_sym_true] = ACTIONS(1033), + [anon_sym_false] = ACTIONS(1033), + [aux_sym__val_number_decimal_token1] = ACTIONS(1033), + [aux_sym__val_number_decimal_token2] = ACTIONS(1033), + [anon_sym_DOT2] = ACTIONS(1033), + [aux_sym__val_number_decimal_token3] = ACTIONS(1033), + [aux_sym__val_number_token1] = ACTIONS(1033), + [aux_sym__val_number_token2] = ACTIONS(1033), + [aux_sym__val_number_token3] = ACTIONS(1033), + [aux_sym__val_number_token4] = ACTIONS(1033), + [aux_sym__val_number_token5] = ACTIONS(1033), + [aux_sym__val_number_token6] = ACTIONS(1033), + [anon_sym_0b] = ACTIONS(1033), + [anon_sym_0o] = ACTIONS(1033), + [anon_sym_0x] = ACTIONS(1033), + [sym_val_date] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [sym__str_single_quotes] = ACTIONS(1033), + [sym__str_back_ticks] = ACTIONS(1033), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1033), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1033), + [anon_sym_CARET] = ACTIONS(1033), + [anon_sym_POUND] = ACTIONS(113), + }, + [1185] = { + [sym_comment] = STATE(1185), + [anon_sym_export] = ACTIONS(1020), + [anon_sym_alias] = ACTIONS(1020), + [anon_sym_let] = ACTIONS(1020), + [anon_sym_let_DASHenv] = ACTIONS(1020), + [anon_sym_mut] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1020), + [sym_cmd_identifier] = ACTIONS(1020), + [anon_sym_LF] = ACTIONS(1022), + [anon_sym_def] = ACTIONS(1020), + [anon_sym_export_DASHenv] = ACTIONS(1020), + [anon_sym_extern] = ACTIONS(1020), + [anon_sym_module] = ACTIONS(1020), + [anon_sym_use] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1020), + [anon_sym_RPAREN] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_error] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1020), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_loop] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_match] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_RBRACE] = ACTIONS(1020), + [anon_sym_DOT_DOT] = ACTIONS(1020), + [anon_sym_try] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_source] = ACTIONS(1020), + [anon_sym_source_DASHenv] = ACTIONS(1020), + [anon_sym_register] = ACTIONS(1020), + [anon_sym_hide] = ACTIONS(1020), + [anon_sym_hide_DASHenv] = ACTIONS(1020), + [anon_sym_overlay] = ACTIONS(1020), + [anon_sym_as] = ACTIONS(1020), + [anon_sym_where] = ACTIONS(1020), + [anon_sym_QMARK2] = ACTIONS(1020), + [anon_sym_not] = ACTIONS(1020), + [anon_sym_DOT] = ACTIONS(1020), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1020), + [anon_sym_DOT_DOT_LT] = ACTIONS(1020), + [anon_sym_null] = ACTIONS(1020), + [anon_sym_true] = ACTIONS(1020), + [anon_sym_false] = ACTIONS(1020), + [aux_sym__val_number_decimal_token1] = ACTIONS(1020), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [anon_sym_DOT2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1020), + [aux_sym__val_number_token1] = ACTIONS(1020), + [aux_sym__val_number_token2] = ACTIONS(1020), + [aux_sym__val_number_token3] = ACTIONS(1020), + [aux_sym__val_number_token4] = ACTIONS(1020), + [aux_sym__val_number_token5] = ACTIONS(1020), + [aux_sym__val_number_token6] = ACTIONS(1020), + [anon_sym_0b] = ACTIONS(1020), + [anon_sym_0o] = ACTIONS(1020), + [anon_sym_0x] = ACTIONS(1020), + [sym_val_date] = ACTIONS(1020), + [anon_sym_DQUOTE] = ACTIONS(1020), + [sym__str_single_quotes] = ACTIONS(1020), + [sym__str_back_ticks] = ACTIONS(1020), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1020), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1020), + [anon_sym_CARET] = ACTIONS(1020), + [anon_sym_POUND] = ACTIONS(113), + }, + [1186] = { + [sym_comment] = STATE(1186), + [anon_sym_export] = ACTIONS(920), + [anon_sym_alias] = ACTIONS(920), + [anon_sym_let] = ACTIONS(920), + [anon_sym_let_DASHenv] = ACTIONS(920), + [anon_sym_mut] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(920), + [sym_cmd_identifier] = ACTIONS(920), + [anon_sym_LF] = ACTIONS(922), + [anon_sym_def] = ACTIONS(920), + [anon_sym_export_DASHenv] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym_module] = ACTIONS(920), + [anon_sym_use] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_RPAREN] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_error] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_loop] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_match] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_RBRACE] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_try] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_source] = ACTIONS(920), + [anon_sym_source_DASHenv] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_hide] = ACTIONS(920), + [anon_sym_hide_DASHenv] = ACTIONS(920), + [anon_sym_overlay] = ACTIONS(920), + [anon_sym_as] = ACTIONS(920), + [anon_sym_where] = ACTIONS(920), + [anon_sym_not] = ACTIONS(920), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [aux_sym__immediate_decimal_token1] = ACTIONS(1118), + [anon_sym_null] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), + [anon_sym_CARET] = ACTIONS(920), + [aux_sym_unquoted_token2] = ACTIONS(3940), + [anon_sym_POUND] = ACTIONS(113), + }, + [1187] = { + [sym_cell_path] = STATE(1999), + [sym_path] = STATE(1192), + [sym_comment] = STATE(1187), + [ts_builtin_sym_end] = ACTIONS(1099), + [anon_sym_export] = ACTIONS(1097), + [anon_sym_alias] = ACTIONS(1097), + [anon_sym_let] = ACTIONS(1097), + [anon_sym_let_DASHenv] = ACTIONS(1097), + [anon_sym_mut] = ACTIONS(1097), + [anon_sym_const] = ACTIONS(1097), + [anon_sym_SEMI] = ACTIONS(1097), + [sym_cmd_identifier] = ACTIONS(1097), + [anon_sym_LF] = ACTIONS(1099), + [anon_sym_def] = ACTIONS(1097), + [anon_sym_export_DASHenv] = ACTIONS(1097), + [anon_sym_extern] = ACTIONS(1097), + [anon_sym_module] = ACTIONS(1097), + [anon_sym_use] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1097), + [anon_sym_LPAREN] = ACTIONS(1097), + [anon_sym_DOLLAR] = ACTIONS(1097), + [anon_sym_error] = ACTIONS(1097), + [anon_sym_DASH_DASH] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_break] = ACTIONS(1097), + [anon_sym_continue] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1097), + [anon_sym_loop] = ACTIONS(1097), + [anon_sym_while] = ACTIONS(1097), + [anon_sym_do] = ACTIONS(1097), + [anon_sym_if] = ACTIONS(1097), + [anon_sym_match] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_DOT_DOT] = ACTIONS(1097), + [anon_sym_try] = ACTIONS(1097), + [anon_sym_return] = ACTIONS(1097), + [anon_sym_source] = ACTIONS(1097), + [anon_sym_source_DASHenv] = ACTIONS(1097), + [anon_sym_register] = ACTIONS(1097), + [anon_sym_hide] = ACTIONS(1097), + [anon_sym_hide_DASHenv] = ACTIONS(1097), + [anon_sym_overlay] = ACTIONS(1097), + [anon_sym_as] = ACTIONS(1097), + [anon_sym_where] = ACTIONS(1097), + [anon_sym_not] = ACTIONS(1097), + [anon_sym_DOT] = ACTIONS(3785), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1097), + [anon_sym_DOT_DOT_LT] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1097), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), + [aux_sym__val_number_decimal_token1] = ACTIONS(1097), + [aux_sym__val_number_decimal_token2] = ACTIONS(1097), + [anon_sym_DOT2] = ACTIONS(1097), + [aux_sym__val_number_decimal_token3] = ACTIONS(1097), + [aux_sym__val_number_token1] = ACTIONS(1097), + [aux_sym__val_number_token2] = ACTIONS(1097), + [aux_sym__val_number_token3] = ACTIONS(1097), + [aux_sym__val_number_token4] = ACTIONS(1097), + [aux_sym__val_number_token5] = ACTIONS(1097), + [aux_sym__val_number_token6] = ACTIONS(1097), + [anon_sym_0b] = ACTIONS(1097), + [anon_sym_0o] = ACTIONS(1097), + [anon_sym_0x] = ACTIONS(1097), + [sym_val_date] = ACTIONS(1097), + [anon_sym_DQUOTE] = ACTIONS(1097), + [sym__str_single_quotes] = ACTIONS(1097), + [sym__str_back_ticks] = ACTIONS(1097), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1097), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1097), + [anon_sym_CARET] = ACTIONS(1097), + [anon_sym_POUND] = ACTIONS(113), + }, + [1188] = { + [sym_cell_path] = STATE(2011), + [sym_path] = STATE(1192), + [sym_comment] = STATE(1188), + [ts_builtin_sym_end] = ACTIONS(1103), + [anon_sym_export] = ACTIONS(1101), + [anon_sym_alias] = ACTIONS(1101), + [anon_sym_let] = ACTIONS(1101), + [anon_sym_let_DASHenv] = ACTIONS(1101), + [anon_sym_mut] = ACTIONS(1101), + [anon_sym_const] = ACTIONS(1101), + [anon_sym_SEMI] = ACTIONS(1101), + [sym_cmd_identifier] = ACTIONS(1101), + [anon_sym_LF] = ACTIONS(1103), + [anon_sym_def] = ACTIONS(1101), + [anon_sym_export_DASHenv] = ACTIONS(1101), + [anon_sym_extern] = ACTIONS(1101), + [anon_sym_module] = ACTIONS(1101), + [anon_sym_use] = ACTIONS(1101), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_DOLLAR] = ACTIONS(1101), + [anon_sym_error] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_break] = ACTIONS(1101), + [anon_sym_continue] = ACTIONS(1101), + [anon_sym_for] = ACTIONS(1101), + [anon_sym_loop] = ACTIONS(1101), + [anon_sym_while] = ACTIONS(1101), + [anon_sym_do] = ACTIONS(1101), + [anon_sym_if] = ACTIONS(1101), + [anon_sym_match] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_DOT_DOT] = ACTIONS(1101), + [anon_sym_try] = ACTIONS(1101), + [anon_sym_return] = ACTIONS(1101), + [anon_sym_source] = ACTIONS(1101), + [anon_sym_source_DASHenv] = ACTIONS(1101), + [anon_sym_register] = ACTIONS(1101), + [anon_sym_hide] = ACTIONS(1101), + [anon_sym_hide_DASHenv] = ACTIONS(1101), + [anon_sym_overlay] = ACTIONS(1101), + [anon_sym_as] = ACTIONS(1101), + [anon_sym_where] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_DOT] = ACTIONS(3785), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1101), + [anon_sym_DOT_DOT_LT] = ACTIONS(1101), + [anon_sym_null] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(1101), + [anon_sym_false] = ACTIONS(1101), + [aux_sym__val_number_decimal_token1] = ACTIONS(1101), + [aux_sym__val_number_decimal_token2] = ACTIONS(1101), + [anon_sym_DOT2] = ACTIONS(1101), + [aux_sym__val_number_decimal_token3] = ACTIONS(1101), + [aux_sym__val_number_token1] = ACTIONS(1101), + [aux_sym__val_number_token2] = ACTIONS(1101), + [aux_sym__val_number_token3] = ACTIONS(1101), + [aux_sym__val_number_token4] = ACTIONS(1101), + [aux_sym__val_number_token5] = ACTIONS(1101), + [aux_sym__val_number_token6] = ACTIONS(1101), + [anon_sym_0b] = ACTIONS(1101), + [anon_sym_0o] = ACTIONS(1101), + [anon_sym_0x] = ACTIONS(1101), + [sym_val_date] = ACTIONS(1101), + [anon_sym_DQUOTE] = ACTIONS(1101), + [sym__str_single_quotes] = ACTIONS(1101), + [sym__str_back_ticks] = ACTIONS(1101), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1101), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_POUND] = ACTIONS(113), + }, + [1189] = { + [sym_cell_path] = STATE(1993), + [sym_path] = STATE(1212), + [sym_comment] = STATE(1189), + [anon_sym_LBRACK] = ACTIONS(994), + [anon_sym_COMMA] = ACTIONS(994), + [anon_sym_RBRACK] = ACTIONS(994), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_DOLLAR] = ACTIONS(994), + [anon_sym_GT] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_in] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_DOT_DOT] = ACTIONS(992), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_STAR_STAR] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_SLASH] = ACTIONS(992), + [anon_sym_mod] = ACTIONS(994), + [anon_sym_SLASH_SLASH] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_bit_DASHshl] = ACTIONS(994), + [anon_sym_bit_DASHshr] = ACTIONS(994), + [anon_sym_EQ_EQ] = ACTIONS(994), + [anon_sym_BANG_EQ] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(992), + [anon_sym_LT_EQ] = ACTIONS(994), + [anon_sym_GT_EQ] = ACTIONS(994), + [anon_sym_not_DASHin] = ACTIONS(994), + [anon_sym_starts_DASHwith] = ACTIONS(994), + [anon_sym_ends_DASHwith] = ACTIONS(994), + [anon_sym_EQ_TILDE] = ACTIONS(994), + [anon_sym_BANG_TILDE] = ACTIONS(994), + [anon_sym_bit_DASHand] = ACTIONS(994), + [anon_sym_bit_DASHxor] = ACTIONS(994), + [anon_sym_bit_DASHor] = ACTIONS(994), + [anon_sym_and] = ACTIONS(994), + [anon_sym_xor] = ACTIONS(994), + [anon_sym_or] = ACTIONS(994), + [anon_sym_DOT] = ACTIONS(3781), + [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), + [anon_sym_DOT2] = ACTIONS(992), + [aux_sym__val_number_decimal_token3] = 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_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [aux_sym__unquoted_in_list_token1] = ACTIONS(992), [anon_sym_POUND] = ACTIONS(3), }, - [976] = { - [sym_comment] = STATE(976), - [anon_sym_export] = ACTIONS(1168), - [anon_sym_alias] = ACTIONS(1168), - [anon_sym_let] = ACTIONS(1168), - [anon_sym_let_DASHenv] = ACTIONS(1168), - [anon_sym_mut] = ACTIONS(1168), - [anon_sym_const] = ACTIONS(1168), - [sym_cmd_identifier] = ACTIONS(1168), - [anon_sym_def] = ACTIONS(1168), - [anon_sym_export_DASHenv] = ACTIONS(1168), - [anon_sym_extern] = ACTIONS(1168), - [anon_sym_module] = ACTIONS(1168), - [anon_sym_use] = ACTIONS(1168), - [anon_sym_LPAREN] = ACTIONS(1170), - [anon_sym_DOLLAR] = ACTIONS(1170), - [anon_sym_error] = ACTIONS(1168), - [anon_sym_list] = ACTIONS(1168), - [anon_sym_GT] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1168), - [anon_sym_break] = ACTIONS(1168), - [anon_sym_continue] = ACTIONS(1168), - [anon_sym_for] = ACTIONS(1168), - [anon_sym_in] = ACTIONS(1168), - [anon_sym_loop] = ACTIONS(1168), - [anon_sym_make] = ACTIONS(1168), - [anon_sym_while] = ACTIONS(1168), - [anon_sym_do] = ACTIONS(1168), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_else] = ACTIONS(1168), - [anon_sym_match] = ACTIONS(1168), - [anon_sym_RBRACE] = ACTIONS(1170), - [anon_sym_try] = ACTIONS(1168), - [anon_sym_catch] = ACTIONS(1168), - [anon_sym_return] = ACTIONS(1168), - [anon_sym_source] = ACTIONS(1168), - [anon_sym_source_DASHenv] = ACTIONS(1168), - [anon_sym_register] = ACTIONS(1168), - [anon_sym_hide] = ACTIONS(1168), - [anon_sym_hide_DASHenv] = ACTIONS(1168), - [anon_sym_overlay] = ACTIONS(1168), - [anon_sym_new] = ACTIONS(1168), - [anon_sym_as] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_STAR_STAR] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1170), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_mod] = ACTIONS(1168), - [anon_sym_SLASH_SLASH] = ACTIONS(1170), - [anon_sym_PLUS] = ACTIONS(1168), - [anon_sym_bit_DASHshl] = ACTIONS(1168), - [anon_sym_bit_DASHshr] = ACTIONS(1168), - [anon_sym_EQ_EQ] = ACTIONS(1170), - [anon_sym_BANG_EQ] = ACTIONS(1170), - [anon_sym_LT2] = ACTIONS(1168), - [anon_sym_LT_EQ] = ACTIONS(1170), - [anon_sym_GT_EQ] = ACTIONS(1170), - [anon_sym_not_DASHin] = ACTIONS(1168), - [anon_sym_starts_DASHwith] = ACTIONS(1168), - [anon_sym_ends_DASHwith] = ACTIONS(1168), - [anon_sym_EQ_TILDE] = ACTIONS(1170), - [anon_sym_BANG_TILDE] = ACTIONS(1170), - [anon_sym_bit_DASHand] = ACTIONS(1168), - [anon_sym_bit_DASHxor] = ACTIONS(1168), - [anon_sym_bit_DASHor] = ACTIONS(1168), - [anon_sym_and] = ACTIONS(1168), - [anon_sym_xor] = ACTIONS(1168), - [anon_sym_or] = ACTIONS(1168), - [aux_sym__val_number_decimal_token1] = ACTIONS(1168), - [aux_sym__val_number_decimal_token2] = ACTIONS(1170), - [anon_sym_DOT2] = ACTIONS(1170), - [aux_sym__val_number_decimal_token3] = ACTIONS(1170), - [aux_sym__val_number_token1] = ACTIONS(1170), - [aux_sym__val_number_token2] = ACTIONS(1170), - [aux_sym__val_number_token3] = ACTIONS(1170), - [aux_sym__val_number_token4] = ACTIONS(1168), - [aux_sym__val_number_token5] = ACTIONS(1170), - [aux_sym__val_number_token6] = ACTIONS(1168), - [anon_sym_DQUOTE] = ACTIONS(1170), - [sym__str_single_quotes] = ACTIONS(1170), - [sym__str_back_ticks] = ACTIONS(1170), - [aux_sym__record_key_token2] = ACTIONS(1168), + [1190] = { + [sym_comment] = STATE(1190), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_COMMA] = ACTIONS(1074), + [anon_sym_RBRACK] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_DOLLAR] = ACTIONS(1074), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_DASH_DASH] = ACTIONS(1074), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_in] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_DOT_DOT] = ACTIONS(1072), + [anon_sym_STAR] = ACTIONS(1076), + [anon_sym_STAR_STAR] = ACTIONS(1169), + [anon_sym_PLUS_PLUS] = ACTIONS(1169), + [anon_sym_SLASH] = ACTIONS(1076), + [anon_sym_mod] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_bit_DASHshl] = ACTIONS(1169), + [anon_sym_bit_DASHshr] = ACTIONS(1169), + [anon_sym_EQ_EQ] = ACTIONS(1169), + [anon_sym_BANG_EQ] = ACTIONS(1169), + [anon_sym_LT2] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1169), + [anon_sym_GT_EQ] = ACTIONS(1169), + [anon_sym_not_DASHin] = ACTIONS(1169), + [anon_sym_starts_DASHwith] = ACTIONS(1169), + [anon_sym_ends_DASHwith] = ACTIONS(1169), + [anon_sym_EQ_TILDE] = ACTIONS(1169), + [anon_sym_BANG_TILDE] = ACTIONS(1169), + [anon_sym_bit_DASHand] = ACTIONS(1169), + [anon_sym_bit_DASHxor] = ACTIONS(1169), + [anon_sym_bit_DASHor] = ACTIONS(1169), + [anon_sym_and] = ACTIONS(1169), + [anon_sym_xor] = ACTIONS(1169), + [anon_sym_or] = ACTIONS(1169), + [anon_sym_DOT_DOT2] = ACTIONS(3942), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1072), + [anon_sym_DOT_DOT_LT] = ACTIONS(1072), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3944), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3944), + [anon_sym_null] = ACTIONS(1074), + [anon_sym_true] = ACTIONS(1074), + [anon_sym_false] = ACTIONS(1074), + [aux_sym__val_number_decimal_token1] = ACTIONS(1072), + [aux_sym__val_number_decimal_token2] = ACTIONS(1074), + [anon_sym_DOT2] = ACTIONS(1072), + [aux_sym__val_number_decimal_token3] = ACTIONS(1074), + [aux_sym__val_number_token1] = ACTIONS(1074), + [aux_sym__val_number_token2] = ACTIONS(1074), + [aux_sym__val_number_token3] = ACTIONS(1074), + [aux_sym__val_number_token4] = ACTIONS(1074), + [aux_sym__val_number_token5] = ACTIONS(1074), + [aux_sym__val_number_token6] = ACTIONS(1074), + [anon_sym_0b] = ACTIONS(1072), + [anon_sym_0o] = ACTIONS(1072), + [anon_sym_0x] = ACTIONS(1072), + [sym_val_date] = ACTIONS(1074), + [anon_sym_DQUOTE] = ACTIONS(1074), + [sym__str_single_quotes] = ACTIONS(1074), + [sym__str_back_ticks] = ACTIONS(1074), + [anon_sym_err_GT] = ACTIONS(1074), + [anon_sym_out_GT] = ACTIONS(1074), + [anon_sym_e_GT] = ACTIONS(1074), + [anon_sym_o_GT] = ACTIONS(1074), + [anon_sym_err_PLUSout_GT] = ACTIONS(1074), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1074), + [anon_sym_o_PLUSe_GT] = ACTIONS(1074), + [anon_sym_e_PLUSo_GT] = ACTIONS(1074), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1072), [anon_sym_POUND] = ACTIONS(3), }, - [977] = { - [sym_comment] = STATE(977), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_list] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1766), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1778), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_make] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_else] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_catch] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_new] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1768), - [anon_sym_STAR_STAR] = ACTIONS(1770), - [anon_sym_PLUS_PLUS] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1768), - [anon_sym_mod] = ACTIONS(1768), - [anon_sym_SLASH_SLASH] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1766), - [anon_sym_bit_DASHshl] = ACTIONS(1774), - [anon_sym_bit_DASHshr] = ACTIONS(1774), - [anon_sym_EQ_EQ] = ACTIONS(1776), - [anon_sym_BANG_EQ] = ACTIONS(1776), - [anon_sym_LT2] = ACTIONS(1764), - [anon_sym_LT_EQ] = ACTIONS(1776), - [anon_sym_GT_EQ] = ACTIONS(1776), - [anon_sym_not_DASHin] = ACTIONS(1778), - [anon_sym_starts_DASHwith] = ACTIONS(1778), - [anon_sym_ends_DASHwith] = ACTIONS(1778), - [anon_sym_EQ_TILDE] = ACTIONS(1780), - [anon_sym_BANG_TILDE] = ACTIONS(1780), - [anon_sym_bit_DASHand] = ACTIONS(1782), - [anon_sym_bit_DASHxor] = ACTIONS(1784), - [anon_sym_bit_DASHor] = ACTIONS(1786), - [anon_sym_and] = ACTIONS(1788), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1378), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1378), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [aux_sym__record_key_token2] = ACTIONS(1376), + [1191] = { + [sym_cell_path] = STATE(2059), + [sym_path] = STATE(1192), + [sym_comment] = STATE(1191), + [ts_builtin_sym_end] = ACTIONS(1004), + [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), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [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_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = 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_where] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT] = ACTIONS(3785), + [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), + [anon_sym_DOT2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = 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(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_CARET] = ACTIONS(1002), + [anon_sym_POUND] = ACTIONS(113), + }, + [1192] = { + [sym_path] = STATE(1441), + [sym_comment] = STATE(1192), + [aux_sym_cell_path_repeat1] = STATE(1193), + [ts_builtin_sym_end] = ACTIONS(1012), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_as] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT] = ACTIONS(3785), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_null] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym__val_number_decimal_token1] = ACTIONS(1010), + [aux_sym__val_number_decimal_token2] = ACTIONS(1010), + [anon_sym_DOT2] = ACTIONS(1010), + [aux_sym__val_number_decimal_token3] = 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(1010), + [aux_sym__val_number_token5] = ACTIONS(1010), + [aux_sym__val_number_token6] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [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_CARET] = ACTIONS(1010), + [anon_sym_POUND] = ACTIONS(113), + }, + [1193] = { + [sym_path] = STATE(1441), + [sym_comment] = STATE(1193), + [aux_sym_cell_path_repeat1] = STATE(1195), + [ts_builtin_sym_end] = ACTIONS(1008), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_alias] = ACTIONS(1006), + [anon_sym_let] = ACTIONS(1006), + [anon_sym_let_DASHenv] = ACTIONS(1006), + [anon_sym_mut] = ACTIONS(1006), + [anon_sym_const] = ACTIONS(1006), + [anon_sym_SEMI] = ACTIONS(1006), + [sym_cmd_identifier] = ACTIONS(1006), + [anon_sym_LF] = ACTIONS(1008), + [anon_sym_def] = ACTIONS(1006), + [anon_sym_export_DASHenv] = ACTIONS(1006), + [anon_sym_extern] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_use] = ACTIONS(1006), + [anon_sym_LBRACK] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_error] = ACTIONS(1006), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_break] = ACTIONS(1006), + [anon_sym_continue] = ACTIONS(1006), + [anon_sym_for] = ACTIONS(1006), + [anon_sym_loop] = ACTIONS(1006), + [anon_sym_while] = ACTIONS(1006), + [anon_sym_do] = ACTIONS(1006), + [anon_sym_if] = ACTIONS(1006), + [anon_sym_match] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_DOT_DOT] = ACTIONS(1006), + [anon_sym_try] = ACTIONS(1006), + [anon_sym_return] = ACTIONS(1006), + [anon_sym_source] = ACTIONS(1006), + [anon_sym_source_DASHenv] = ACTIONS(1006), + [anon_sym_register] = ACTIONS(1006), + [anon_sym_hide] = ACTIONS(1006), + [anon_sym_hide_DASHenv] = ACTIONS(1006), + [anon_sym_overlay] = ACTIONS(1006), + [anon_sym_as] = ACTIONS(1006), + [anon_sym_where] = ACTIONS(1006), + [anon_sym_not] = ACTIONS(1006), + [anon_sym_DOT] = ACTIONS(3785), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), + [anon_sym_DOT_DOT_LT] = ACTIONS(1006), + [anon_sym_null] = ACTIONS(1006), + [anon_sym_true] = ACTIONS(1006), + [anon_sym_false] = ACTIONS(1006), + [aux_sym__val_number_decimal_token1] = ACTIONS(1006), + [aux_sym__val_number_decimal_token2] = ACTIONS(1006), + [anon_sym_DOT2] = ACTIONS(1006), + [aux_sym__val_number_decimal_token3] = ACTIONS(1006), + [aux_sym__val_number_token1] = ACTIONS(1006), + [aux_sym__val_number_token2] = ACTIONS(1006), + [aux_sym__val_number_token3] = ACTIONS(1006), + [aux_sym__val_number_token4] = ACTIONS(1006), + [aux_sym__val_number_token5] = ACTIONS(1006), + [aux_sym__val_number_token6] = ACTIONS(1006), + [anon_sym_0b] = ACTIONS(1006), + [anon_sym_0o] = ACTIONS(1006), + [anon_sym_0x] = ACTIONS(1006), + [sym_val_date] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym__str_single_quotes] = ACTIONS(1006), + [sym__str_back_ticks] = ACTIONS(1006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1006), + [anon_sym_CARET] = ACTIONS(1006), + [anon_sym_POUND] = ACTIONS(113), + }, + [1194] = { + [sym_comment] = STATE(1194), + [anon_sym_LBRACK] = ACTIONS(1063), + [anon_sym_COMMA] = ACTIONS(1063), + [anon_sym_LPAREN] = ACTIONS(1063), + [anon_sym_DOLLAR] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_DASH] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(1063), + [anon_sym_RBRACE] = ACTIONS(1063), + [anon_sym__] = ACTIONS(1061), + [anon_sym_DOT_DOT] = ACTIONS(1061), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_STAR_STAR] = ACTIONS(1063), + [anon_sym_PLUS_PLUS] = ACTIONS(1063), + [anon_sym_SLASH] = ACTIONS(1061), + [anon_sym_mod] = ACTIONS(1063), + [anon_sym_SLASH_SLASH] = ACTIONS(1063), + [anon_sym_PLUS] = ACTIONS(1061), + [anon_sym_bit_DASHshl] = ACTIONS(1063), + [anon_sym_bit_DASHshr] = ACTIONS(1063), + [anon_sym_EQ_EQ] = ACTIONS(1063), + [anon_sym_BANG_EQ] = ACTIONS(1063), + [anon_sym_LT2] = ACTIONS(1061), + [anon_sym_LT_EQ] = ACTIONS(1063), + [anon_sym_GT_EQ] = ACTIONS(1063), + [anon_sym_not_DASHin] = ACTIONS(1063), + [anon_sym_starts_DASHwith] = ACTIONS(1063), + [anon_sym_ends_DASHwith] = ACTIONS(1063), + [anon_sym_EQ_TILDE] = ACTIONS(1063), + [anon_sym_BANG_TILDE] = ACTIONS(1063), + [anon_sym_bit_DASHand] = ACTIONS(1063), + [anon_sym_bit_DASHxor] = ACTIONS(1063), + [anon_sym_bit_DASHor] = ACTIONS(1063), + [anon_sym_and] = ACTIONS(1063), + [anon_sym_xor] = ACTIONS(1063), + [anon_sym_or] = ACTIONS(1063), + [anon_sym_DOT_DOT2] = ACTIONS(1061), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1061), + [anon_sym_DOT_DOT_LT] = ACTIONS(1061), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1063), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1063), + [anon_sym_null] = ACTIONS(1063), + [anon_sym_true] = ACTIONS(1063), + [anon_sym_false] = ACTIONS(1063), + [aux_sym__val_number_decimal_token1] = ACTIONS(1061), + [aux_sym__val_number_decimal_token2] = ACTIONS(1063), + [anon_sym_DOT2] = ACTIONS(1061), + [aux_sym__val_number_decimal_token3] = ACTIONS(1063), + [aux_sym__val_number_token1] = ACTIONS(1063), + [aux_sym__val_number_token2] = ACTIONS(1063), + [aux_sym__val_number_token3] = ACTIONS(1063), + [aux_sym__val_number_token4] = ACTIONS(1063), + [aux_sym__val_number_token5] = ACTIONS(1063), + [aux_sym__val_number_token6] = ACTIONS(1063), + [anon_sym_0b] = ACTIONS(1061), + [anon_sym_0o] = ACTIONS(1061), + [anon_sym_0x] = ACTIONS(1061), + [sym_val_date] = ACTIONS(1063), + [anon_sym_DQUOTE] = ACTIONS(1063), + [sym__str_single_quotes] = ACTIONS(1063), + [sym__str_back_ticks] = ACTIONS(1063), + [anon_sym_err_GT] = ACTIONS(1063), + [anon_sym_out_GT] = ACTIONS(1063), + [anon_sym_e_GT] = ACTIONS(1063), + [anon_sym_o_GT] = ACTIONS(1063), + [anon_sym_err_PLUSout_GT] = ACTIONS(1063), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1063), + [anon_sym_o_PLUSe_GT] = ACTIONS(1063), + [anon_sym_e_PLUSo_GT] = ACTIONS(1063), + [aux_sym_unquoted_token1] = ACTIONS(1061), [anon_sym_POUND] = ACTIONS(3), }, - [978] = { - [sym_comment] = STATE(978), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_list] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1766), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1778), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_make] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_else] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_catch] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_new] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1768), - [anon_sym_STAR_STAR] = ACTIONS(1770), - [anon_sym_PLUS_PLUS] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1768), - [anon_sym_mod] = ACTIONS(1768), - [anon_sym_SLASH_SLASH] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1766), - [anon_sym_bit_DASHshl] = ACTIONS(1774), - [anon_sym_bit_DASHshr] = ACTIONS(1774), - [anon_sym_EQ_EQ] = ACTIONS(1776), - [anon_sym_BANG_EQ] = ACTIONS(1776), - [anon_sym_LT2] = ACTIONS(1764), - [anon_sym_LT_EQ] = ACTIONS(1776), - [anon_sym_GT_EQ] = ACTIONS(1776), - [anon_sym_not_DASHin] = ACTIONS(1778), - [anon_sym_starts_DASHwith] = ACTIONS(1778), - [anon_sym_ends_DASHwith] = ACTIONS(1778), - [anon_sym_EQ_TILDE] = ACTIONS(1780), - [anon_sym_BANG_TILDE] = ACTIONS(1780), - [anon_sym_bit_DASHand] = ACTIONS(1782), - [anon_sym_bit_DASHxor] = ACTIONS(1784), - [anon_sym_bit_DASHor] = ACTIONS(1786), - [anon_sym_and] = ACTIONS(1788), - [anon_sym_xor] = ACTIONS(1790), - [anon_sym_or] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1378), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1378), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [aux_sym__record_key_token2] = ACTIONS(1376), + [1195] = { + [sym_path] = STATE(1441), + [sym_comment] = STATE(1195), + [aux_sym_cell_path_repeat1] = STATE(1195), + [ts_builtin_sym_end] = ACTIONS(987), + [anon_sym_export] = ACTIONS(985), + [anon_sym_alias] = ACTIONS(985), + [anon_sym_let] = ACTIONS(985), + [anon_sym_let_DASHenv] = ACTIONS(985), + [anon_sym_mut] = ACTIONS(985), + [anon_sym_const] = ACTIONS(985), + [anon_sym_SEMI] = ACTIONS(985), + [sym_cmd_identifier] = ACTIONS(985), + [anon_sym_LF] = ACTIONS(987), + [anon_sym_def] = ACTIONS(985), + [anon_sym_export_DASHenv] = ACTIONS(985), + [anon_sym_extern] = ACTIONS(985), + [anon_sym_module] = ACTIONS(985), + [anon_sym_use] = ACTIONS(985), + [anon_sym_LBRACK] = ACTIONS(985), + [anon_sym_LPAREN] = ACTIONS(985), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_error] = ACTIONS(985), + [anon_sym_DASH_DASH] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_break] = ACTIONS(985), + [anon_sym_continue] = ACTIONS(985), + [anon_sym_for] = ACTIONS(985), + [anon_sym_loop] = ACTIONS(985), + [anon_sym_while] = ACTIONS(985), + [anon_sym_do] = ACTIONS(985), + [anon_sym_if] = ACTIONS(985), + [anon_sym_match] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(985), + [anon_sym_DOT_DOT] = ACTIONS(985), + [anon_sym_try] = ACTIONS(985), + [anon_sym_return] = ACTIONS(985), + [anon_sym_source] = ACTIONS(985), + [anon_sym_source_DASHenv] = ACTIONS(985), + [anon_sym_register] = ACTIONS(985), + [anon_sym_hide] = ACTIONS(985), + [anon_sym_hide_DASHenv] = ACTIONS(985), + [anon_sym_overlay] = ACTIONS(985), + [anon_sym_as] = ACTIONS(985), + [anon_sym_where] = ACTIONS(985), + [anon_sym_not] = ACTIONS(985), + [anon_sym_DOT] = ACTIONS(3946), + [anon_sym_DOT_DOT_EQ] = ACTIONS(985), + [anon_sym_DOT_DOT_LT] = ACTIONS(985), + [anon_sym_null] = ACTIONS(985), + [anon_sym_true] = ACTIONS(985), + [anon_sym_false] = ACTIONS(985), + [aux_sym__val_number_decimal_token1] = ACTIONS(985), + [aux_sym__val_number_decimal_token2] = ACTIONS(985), + [anon_sym_DOT2] = ACTIONS(985), + [aux_sym__val_number_decimal_token3] = ACTIONS(985), + [aux_sym__val_number_token1] = ACTIONS(985), + [aux_sym__val_number_token2] = ACTIONS(985), + [aux_sym__val_number_token3] = ACTIONS(985), + [aux_sym__val_number_token4] = ACTIONS(985), + [aux_sym__val_number_token5] = ACTIONS(985), + [aux_sym__val_number_token6] = ACTIONS(985), + [anon_sym_0b] = ACTIONS(985), + [anon_sym_0o] = ACTIONS(985), + [anon_sym_0x] = ACTIONS(985), + [sym_val_date] = ACTIONS(985), + [anon_sym_DQUOTE] = ACTIONS(985), + [sym__str_single_quotes] = ACTIONS(985), + [sym__str_back_ticks] = ACTIONS(985), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(985), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(985), + [anon_sym_POUND] = ACTIONS(113), + }, + [1196] = { + [sym_cell_path] = STATE(2184), + [sym_path] = STATE(1197), + [sym_comment] = STATE(1196), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_SLASH] = ACTIONS(1002), + [anon_sym_mod] = ACTIONS(1002), + [anon_sym_SLASH_SLASH] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1002), + [anon_sym_bit_DASHshl] = ACTIONS(1002), + [anon_sym_bit_DASHshr] = ACTIONS(1002), + [anon_sym_EQ_EQ] = ACTIONS(1002), + [anon_sym_BANG_EQ] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ] = ACTIONS(1002), + [anon_sym_GT_EQ] = ACTIONS(1002), + [anon_sym_not_DASHin] = ACTIONS(1002), + [anon_sym_starts_DASHwith] = ACTIONS(1002), + [anon_sym_ends_DASHwith] = ACTIONS(1002), + [anon_sym_EQ_TILDE] = ACTIONS(1002), + [anon_sym_BANG_TILDE] = ACTIONS(1002), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT2] = ACTIONS(1002), + [anon_sym_DOT] = ACTIONS(3879), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1004), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1004), + [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), + [anon_sym_DOT2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = 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(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_POUND] = ACTIONS(113), + }, + [1197] = { + [sym_path] = STATE(1450), + [sym_comment] = STATE(1197), + [aux_sym_cell_path_repeat1] = STATE(1199), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT2] = ACTIONS(1010), + [anon_sym_DOT] = ACTIONS(3879), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), + [anon_sym_null] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym__val_number_decimal_token1] = ACTIONS(1010), + [aux_sym__val_number_decimal_token2] = ACTIONS(1010), + [anon_sym_DOT2] = ACTIONS(1010), + [aux_sym__val_number_decimal_token3] = 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(1010), + [aux_sym__val_number_token5] = ACTIONS(1010), + [aux_sym__val_number_token6] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [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_POUND] = ACTIONS(113), + }, + [1198] = { + [sym_comment] = STATE(1198), + [ts_builtin_sym_end] = ACTIONS(3769), + [anon_sym_export] = ACTIONS(3767), + [anon_sym_alias] = ACTIONS(3767), + [anon_sym_let] = ACTIONS(3767), + [anon_sym_let_DASHenv] = ACTIONS(3767), + [anon_sym_mut] = ACTIONS(3767), + [anon_sym_const] = ACTIONS(3767), + [anon_sym_SEMI] = ACTIONS(3767), + [sym_cmd_identifier] = ACTIONS(3767), + [anon_sym_LF] = ACTIONS(3769), + [anon_sym_def] = ACTIONS(3767), + [anon_sym_export_DASHenv] = ACTIONS(3767), + [anon_sym_extern] = ACTIONS(3767), + [anon_sym_module] = ACTIONS(3767), + [anon_sym_use] = ACTIONS(3767), + [anon_sym_LBRACK] = ACTIONS(3767), + [anon_sym_LPAREN] = ACTIONS(3767), + [anon_sym_DOLLAR] = ACTIONS(3767), + [anon_sym_error] = ACTIONS(3767), + [anon_sym_DASH_DASH] = ACTIONS(3767), + [anon_sym_DASH] = ACTIONS(3767), + [anon_sym_break] = ACTIONS(3767), + [anon_sym_continue] = ACTIONS(3767), + [anon_sym_for] = ACTIONS(3767), + [anon_sym_loop] = ACTIONS(3767), + [anon_sym_while] = ACTIONS(3767), + [anon_sym_do] = ACTIONS(3767), + [anon_sym_if] = ACTIONS(3767), + [anon_sym_match] = ACTIONS(3767), + [anon_sym_LBRACE] = ACTIONS(3767), + [anon_sym_DOT_DOT] = ACTIONS(3767), + [anon_sym_try] = ACTIONS(3767), + [anon_sym_return] = ACTIONS(3767), + [anon_sym_source] = ACTIONS(3767), + [anon_sym_source_DASHenv] = ACTIONS(3767), + [anon_sym_register] = ACTIONS(3767), + [anon_sym_hide] = ACTIONS(3767), + [anon_sym_hide_DASHenv] = ACTIONS(3767), + [anon_sym_overlay] = ACTIONS(3767), + [anon_sym_as] = ACTIONS(3767), + [anon_sym_where] = ACTIONS(3767), + [anon_sym_not] = ACTIONS(3767), + [anon_sym_DOT_DOT2] = ACTIONS(3767), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3767), + [anon_sym_DOT_DOT_LT] = ACTIONS(3767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3769), + [anon_sym_null] = ACTIONS(3767), + [anon_sym_true] = ACTIONS(3767), + [anon_sym_false] = ACTIONS(3767), + [aux_sym__val_number_decimal_token1] = ACTIONS(3767), + [aux_sym__val_number_decimal_token2] = ACTIONS(3767), + [anon_sym_DOT2] = ACTIONS(3767), + [aux_sym__val_number_decimal_token3] = ACTIONS(3767), + [aux_sym__val_number_token1] = ACTIONS(3767), + [aux_sym__val_number_token2] = ACTIONS(3767), + [aux_sym__val_number_token3] = ACTIONS(3767), + [aux_sym__val_number_token4] = ACTIONS(3767), + [aux_sym__val_number_token5] = ACTIONS(3767), + [aux_sym__val_number_token6] = ACTIONS(3767), + [anon_sym_0b] = ACTIONS(3767), + [anon_sym_0o] = ACTIONS(3767), + [anon_sym_0x] = ACTIONS(3767), + [sym_val_date] = ACTIONS(3767), + [anon_sym_DQUOTE] = ACTIONS(3767), + [sym__str_single_quotes] = ACTIONS(3767), + [sym__str_back_ticks] = ACTIONS(3767), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3767), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3767), + [anon_sym_CARET] = ACTIONS(3767), + [anon_sym_POUND] = ACTIONS(113), + }, + [1199] = { + [sym_path] = STATE(1450), + [sym_comment] = STATE(1199), + [aux_sym_cell_path_repeat1] = STATE(1200), + [anon_sym_SEMI] = ACTIONS(1006), + [anon_sym_LF] = ACTIONS(1008), + [anon_sym_LBRACK] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_RPAREN] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1006), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_GT] = ACTIONS(1006), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_in] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(1006), + [anon_sym_DOT_DOT] = ACTIONS(1006), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_STAR_STAR] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_mod] = ACTIONS(1006), + [anon_sym_SLASH_SLASH] = ACTIONS(1006), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_bit_DASHshl] = ACTIONS(1006), + [anon_sym_bit_DASHshr] = ACTIONS(1006), + [anon_sym_EQ_EQ] = ACTIONS(1006), + [anon_sym_BANG_EQ] = ACTIONS(1006), + [anon_sym_LT2] = ACTIONS(1006), + [anon_sym_LT_EQ] = ACTIONS(1006), + [anon_sym_GT_EQ] = ACTIONS(1006), + [anon_sym_not_DASHin] = ACTIONS(1006), + [anon_sym_starts_DASHwith] = ACTIONS(1006), + [anon_sym_ends_DASHwith] = ACTIONS(1006), + [anon_sym_EQ_TILDE] = ACTIONS(1006), + [anon_sym_BANG_TILDE] = ACTIONS(1006), + [anon_sym_bit_DASHand] = ACTIONS(1006), + [anon_sym_bit_DASHxor] = ACTIONS(1006), + [anon_sym_bit_DASHor] = ACTIONS(1006), + [anon_sym_and] = ACTIONS(1006), + [anon_sym_xor] = ACTIONS(1006), + [anon_sym_or] = ACTIONS(1006), + [anon_sym_not] = ACTIONS(1006), + [anon_sym_DOT_DOT2] = ACTIONS(1006), + [anon_sym_DOT] = ACTIONS(3879), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), + [anon_sym_DOT_DOT_LT] = ACTIONS(1006), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), + [anon_sym_null] = ACTIONS(1006), + [anon_sym_true] = ACTIONS(1006), + [anon_sym_false] = ACTIONS(1006), + [aux_sym__val_number_decimal_token1] = ACTIONS(1006), + [aux_sym__val_number_decimal_token2] = ACTIONS(1006), + [anon_sym_DOT2] = ACTIONS(1006), + [aux_sym__val_number_decimal_token3] = ACTIONS(1006), + [aux_sym__val_number_token1] = ACTIONS(1006), + [aux_sym__val_number_token2] = ACTIONS(1006), + [aux_sym__val_number_token3] = ACTIONS(1006), + [aux_sym__val_number_token4] = ACTIONS(1006), + [aux_sym__val_number_token5] = ACTIONS(1006), + [aux_sym__val_number_token6] = ACTIONS(1006), + [anon_sym_0b] = ACTIONS(1006), + [anon_sym_0o] = ACTIONS(1006), + [anon_sym_0x] = ACTIONS(1006), + [sym_val_date] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym__str_single_quotes] = ACTIONS(1006), + [sym__str_back_ticks] = ACTIONS(1006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1006), + [anon_sym_POUND] = ACTIONS(113), + }, + [1200] = { + [sym_path] = STATE(1450), + [sym_comment] = STATE(1200), + [aux_sym_cell_path_repeat1] = STATE(1200), + [anon_sym_SEMI] = ACTIONS(985), + [anon_sym_LF] = ACTIONS(987), + [anon_sym_LBRACK] = ACTIONS(985), + [anon_sym_LPAREN] = ACTIONS(985), + [anon_sym_RPAREN] = ACTIONS(985), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_GT] = ACTIONS(985), + [anon_sym_DASH_DASH] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_in] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(985), + [anon_sym_RBRACE] = ACTIONS(985), + [anon_sym_DOT_DOT] = ACTIONS(985), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_STAR_STAR] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(985), + [anon_sym_SLASH] = ACTIONS(985), + [anon_sym_mod] = ACTIONS(985), + [anon_sym_SLASH_SLASH] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_bit_DASHshl] = ACTIONS(985), + [anon_sym_bit_DASHshr] = ACTIONS(985), + [anon_sym_EQ_EQ] = ACTIONS(985), + [anon_sym_BANG_EQ] = ACTIONS(985), + [anon_sym_LT2] = ACTIONS(985), + [anon_sym_LT_EQ] = ACTIONS(985), + [anon_sym_GT_EQ] = ACTIONS(985), + [anon_sym_not_DASHin] = ACTIONS(985), + [anon_sym_starts_DASHwith] = ACTIONS(985), + [anon_sym_ends_DASHwith] = ACTIONS(985), + [anon_sym_EQ_TILDE] = ACTIONS(985), + [anon_sym_BANG_TILDE] = ACTIONS(985), + [anon_sym_bit_DASHand] = ACTIONS(985), + [anon_sym_bit_DASHxor] = ACTIONS(985), + [anon_sym_bit_DASHor] = ACTIONS(985), + [anon_sym_and] = ACTIONS(985), + [anon_sym_xor] = ACTIONS(985), + [anon_sym_or] = ACTIONS(985), + [anon_sym_not] = ACTIONS(985), + [anon_sym_DOT_DOT2] = ACTIONS(985), + [anon_sym_DOT] = ACTIONS(3949), + [anon_sym_DOT_DOT_EQ] = ACTIONS(985), + [anon_sym_DOT_DOT_LT] = ACTIONS(985), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(987), + [anon_sym_DOT_DOT_LT2] = ACTIONS(987), + [anon_sym_null] = ACTIONS(985), + [anon_sym_true] = ACTIONS(985), + [anon_sym_false] = ACTIONS(985), + [aux_sym__val_number_decimal_token1] = ACTIONS(985), + [aux_sym__val_number_decimal_token2] = ACTIONS(985), + [anon_sym_DOT2] = ACTIONS(985), + [aux_sym__val_number_decimal_token3] = ACTIONS(985), + [aux_sym__val_number_token1] = ACTIONS(985), + [aux_sym__val_number_token2] = ACTIONS(985), + [aux_sym__val_number_token3] = ACTIONS(985), + [aux_sym__val_number_token4] = ACTIONS(985), + [aux_sym__val_number_token5] = ACTIONS(985), + [aux_sym__val_number_token6] = ACTIONS(985), + [anon_sym_0b] = ACTIONS(985), + [anon_sym_0o] = ACTIONS(985), + [anon_sym_0x] = ACTIONS(985), + [sym_val_date] = ACTIONS(985), + [anon_sym_DQUOTE] = ACTIONS(985), + [sym__str_single_quotes] = ACTIONS(985), + [sym__str_back_ticks] = ACTIONS(985), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(985), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(985), + [anon_sym_POUND] = ACTIONS(113), + }, + [1201] = { + [sym_cell_path] = STATE(2240), + [sym_path] = STATE(1192), + [sym_comment] = STATE(1201), + [ts_builtin_sym_end] = ACTIONS(1095), + [anon_sym_export] = ACTIONS(1093), + [anon_sym_alias] = ACTIONS(1093), + [anon_sym_let] = ACTIONS(1093), + [anon_sym_let_DASHenv] = ACTIONS(1093), + [anon_sym_mut] = ACTIONS(1093), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_SEMI] = ACTIONS(1093), + [sym_cmd_identifier] = ACTIONS(1093), + [anon_sym_LF] = ACTIONS(1095), + [anon_sym_def] = ACTIONS(1093), + [anon_sym_export_DASHenv] = ACTIONS(1093), + [anon_sym_extern] = ACTIONS(1093), + [anon_sym_module] = ACTIONS(1093), + [anon_sym_use] = ACTIONS(1093), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_LPAREN] = ACTIONS(1093), + [anon_sym_DOLLAR] = ACTIONS(1093), + [anon_sym_error] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_break] = ACTIONS(1093), + [anon_sym_continue] = ACTIONS(1093), + [anon_sym_for] = ACTIONS(1093), + [anon_sym_loop] = ACTIONS(1093), + [anon_sym_while] = ACTIONS(1093), + [anon_sym_do] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1093), + [anon_sym_match] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1093), + [anon_sym_DOT_DOT] = ACTIONS(1093), + [anon_sym_try] = ACTIONS(1093), + [anon_sym_return] = ACTIONS(1093), + [anon_sym_source] = ACTIONS(1093), + [anon_sym_source_DASHenv] = ACTIONS(1093), + [anon_sym_register] = ACTIONS(1093), + [anon_sym_hide] = ACTIONS(1093), + [anon_sym_hide_DASHenv] = ACTIONS(1093), + [anon_sym_overlay] = ACTIONS(1093), + [anon_sym_as] = ACTIONS(1093), + [anon_sym_where] = ACTIONS(1093), + [anon_sym_not] = ACTIONS(1093), + [anon_sym_DOT] = ACTIONS(3785), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1093), + [anon_sym_DOT_DOT_LT] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1093), + [anon_sym_true] = ACTIONS(1093), + [anon_sym_false] = ACTIONS(1093), + [aux_sym__val_number_decimal_token1] = ACTIONS(1093), + [aux_sym__val_number_decimal_token2] = ACTIONS(1093), + [anon_sym_DOT2] = ACTIONS(1093), + [aux_sym__val_number_decimal_token3] = ACTIONS(1093), + [aux_sym__val_number_token1] = ACTIONS(1093), + [aux_sym__val_number_token2] = ACTIONS(1093), + [aux_sym__val_number_token3] = ACTIONS(1093), + [aux_sym__val_number_token4] = ACTIONS(1093), + [aux_sym__val_number_token5] = ACTIONS(1093), + [aux_sym__val_number_token6] = ACTIONS(1093), + [anon_sym_0b] = ACTIONS(1093), + [anon_sym_0o] = ACTIONS(1093), + [anon_sym_0x] = ACTIONS(1093), + [sym_val_date] = ACTIONS(1093), + [anon_sym_DQUOTE] = ACTIONS(1093), + [sym__str_single_quotes] = ACTIONS(1093), + [sym__str_back_ticks] = ACTIONS(1093), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1093), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1093), + [anon_sym_CARET] = ACTIONS(1093), + [anon_sym_POUND] = ACTIONS(113), + }, + [1202] = { + [sym_comment] = STATE(1202), + [anon_sym_export] = ACTIONS(1024), + [anon_sym_alias] = ACTIONS(1024), + [anon_sym_let] = ACTIONS(1024), + [anon_sym_let_DASHenv] = ACTIONS(1024), + [anon_sym_mut] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1024), + [sym_cmd_identifier] = ACTIONS(1024), + [anon_sym_LF] = ACTIONS(1026), + [anon_sym_def] = ACTIONS(1024), + [anon_sym_export_DASHenv] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1024), + [anon_sym_module] = ACTIONS(1024), + [anon_sym_use] = ACTIONS(1024), + [anon_sym_LBRACK] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_RPAREN] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_error] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_loop] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_match] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym_RBRACE] = ACTIONS(1024), + [anon_sym_DOT_DOT] = ACTIONS(1024), + [anon_sym_try] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_source] = ACTIONS(1024), + [anon_sym_source_DASHenv] = ACTIONS(1024), + [anon_sym_register] = ACTIONS(1024), + [anon_sym_hide] = ACTIONS(1024), + [anon_sym_hide_DASHenv] = ACTIONS(1024), + [anon_sym_overlay] = ACTIONS(1024), + [anon_sym_as] = ACTIONS(1024), + [anon_sym_where] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(3952), + [anon_sym_not] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT] = ACTIONS(1024), + [anon_sym_null] = ACTIONS(1024), + [anon_sym_true] = ACTIONS(1024), + [anon_sym_false] = ACTIONS(1024), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1024), + [aux_sym__val_number_token1] = ACTIONS(1024), + [aux_sym__val_number_token2] = ACTIONS(1024), + [aux_sym__val_number_token3] = ACTIONS(1024), + [aux_sym__val_number_token4] = ACTIONS(1024), + [aux_sym__val_number_token5] = ACTIONS(1024), + [aux_sym__val_number_token6] = ACTIONS(1024), + [anon_sym_0b] = ACTIONS(1024), + [anon_sym_0o] = ACTIONS(1024), + [anon_sym_0x] = ACTIONS(1024), + [sym_val_date] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym__str_single_quotes] = ACTIONS(1024), + [sym__str_back_ticks] = ACTIONS(1024), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1024), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1024), + [anon_sym_CARET] = ACTIONS(1024), + [anon_sym_POUND] = ACTIONS(113), + }, + [1203] = { + [sym_comment] = STATE(1203), + [anon_sym_export] = ACTIONS(1024), + [anon_sym_alias] = ACTIONS(1024), + [anon_sym_let] = ACTIONS(1024), + [anon_sym_let_DASHenv] = ACTIONS(1024), + [anon_sym_mut] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1024), + [sym_cmd_identifier] = ACTIONS(1024), + [anon_sym_LF] = ACTIONS(1026), + [anon_sym_def] = ACTIONS(1024), + [anon_sym_export_DASHenv] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1024), + [anon_sym_module] = ACTIONS(1024), + [anon_sym_use] = ACTIONS(1024), + [anon_sym_LBRACK] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_RPAREN] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_error] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_loop] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_match] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym_RBRACE] = ACTIONS(1024), + [anon_sym_DOT_DOT] = ACTIONS(1024), + [anon_sym_try] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_source] = ACTIONS(1024), + [anon_sym_source_DASHenv] = ACTIONS(1024), + [anon_sym_register] = ACTIONS(1024), + [anon_sym_hide] = ACTIONS(1024), + [anon_sym_hide_DASHenv] = ACTIONS(1024), + [anon_sym_overlay] = ACTIONS(1024), + [anon_sym_as] = ACTIONS(1024), + [anon_sym_where] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(3952), + [anon_sym_not] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT] = ACTIONS(1024), + [anon_sym_null] = ACTIONS(1024), + [anon_sym_true] = ACTIONS(1024), + [anon_sym_false] = ACTIONS(1024), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1024), + [aux_sym__val_number_token1] = ACTIONS(1024), + [aux_sym__val_number_token2] = ACTIONS(1024), + [aux_sym__val_number_token3] = ACTIONS(1024), + [aux_sym__val_number_token4] = ACTIONS(1024), + [aux_sym__val_number_token5] = ACTIONS(1024), + [aux_sym__val_number_token6] = ACTIONS(1024), + [anon_sym_0b] = ACTIONS(1024), + [anon_sym_0o] = ACTIONS(1024), + [anon_sym_0x] = ACTIONS(1024), + [sym_val_date] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym__str_single_quotes] = ACTIONS(1024), + [sym__str_back_ticks] = ACTIONS(1024), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1024), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1024), + [anon_sym_CARET] = ACTIONS(1024), + [anon_sym_POUND] = ACTIONS(113), + }, + [1204] = { + [sym_cell_path] = STATE(2168), + [sym_path] = STATE(1265), + [sym_comment] = STATE(1204), + [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), + [anon_sym_SEMI] = ACTIONS(992), + [sym_cmd_identifier] = ACTIONS(992), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(992), + [anon_sym_RPAREN] = ACTIONS(992), + [anon_sym_DOLLAR] = ACTIONS(992), + [anon_sym_error] = ACTIONS(992), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_break] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_loop] = ACTIONS(992), + [anon_sym_while] = ACTIONS(992), + [anon_sym_do] = ACTIONS(992), + [anon_sym_if] = ACTIONS(992), + [anon_sym_match] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(992), + [anon_sym_RBRACE] = ACTIONS(992), + [anon_sym_DOT_DOT] = ACTIONS(992), + [anon_sym_try] = 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_STAR] = ACTIONS(992), + [anon_sym_where] = ACTIONS(992), + [anon_sym_not] = ACTIONS(992), + [anon_sym_DOT] = ACTIONS(3954), + [anon_sym_DOT_DOT_EQ] = ACTIONS(992), + [anon_sym_DOT_DOT_LT] = ACTIONS(992), + [anon_sym_null] = ACTIONS(992), + [anon_sym_true] = ACTIONS(992), + [anon_sym_false] = ACTIONS(992), + [aux_sym__val_number_decimal_token1] = ACTIONS(992), + [aux_sym__val_number_decimal_token2] = ACTIONS(992), + [anon_sym_DOT2] = ACTIONS(992), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(992), + [anon_sym_0o] = ACTIONS(992), + [anon_sym_0x] = ACTIONS(992), + [sym_val_date] = ACTIONS(992), + [anon_sym_DQUOTE] = ACTIONS(992), + [sym__str_single_quotes] = ACTIONS(992), + [sym__str_back_ticks] = ACTIONS(992), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(992), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(992), + [anon_sym_CARET] = ACTIONS(992), + [anon_sym_POUND] = ACTIONS(113), + }, + [1205] = { + [sym_comment] = STATE(1205), + [ts_builtin_sym_end] = ACTIONS(2231), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_alias] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_let_DASHenv] = ACTIONS(2229), + [anon_sym_mut] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2229), + [sym_cmd_identifier] = ACTIONS(2229), + [anon_sym_LF] = ACTIONS(2231), + [anon_sym_def] = ACTIONS(2229), + [anon_sym_export_DASHenv] = ACTIONS(2229), + [anon_sym_extern] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2229), + [anon_sym_error] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_loop] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_source] = ACTIONS(2229), + [anon_sym_source_DASHenv] = ACTIONS(2229), + [anon_sym_register] = ACTIONS(2229), + [anon_sym_hide] = ACTIONS(2229), + [anon_sym_hide_DASHenv] = ACTIONS(2229), + [anon_sym_overlay] = ACTIONS(2229), + [anon_sym_as] = ACTIONS(2229), + [anon_sym_where] = ACTIONS(2229), + [anon_sym_not] = ACTIONS(2229), + [anon_sym_DOT_DOT2] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2229), + [anon_sym_DOT_DOT_LT] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2231), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2231), + [anon_sym_null] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [aux_sym__val_number_decimal_token1] = ACTIONS(2229), + [aux_sym__val_number_decimal_token2] = ACTIONS(2229), + [anon_sym_DOT2] = ACTIONS(2229), + [aux_sym__val_number_decimal_token3] = ACTIONS(2229), + [aux_sym__val_number_token1] = ACTIONS(2229), + [aux_sym__val_number_token2] = ACTIONS(2229), + [aux_sym__val_number_token3] = ACTIONS(2229), + [aux_sym__val_number_token4] = ACTIONS(2229), + [aux_sym__val_number_token5] = ACTIONS(2229), + [aux_sym__val_number_token6] = ACTIONS(2229), + [anon_sym_0b] = ACTIONS(2229), + [anon_sym_0o] = ACTIONS(2229), + [anon_sym_0x] = ACTIONS(2229), + [sym_val_date] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2229), + [anon_sym_CARET] = ACTIONS(2229), + [anon_sym_POUND] = ACTIONS(113), + }, + [1206] = { + [sym_comment] = STATE(1206), + [ts_builtin_sym_end] = ACTIONS(2364), + [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), + [anon_sym_SEMI] = ACTIONS(2362), + [sym_cmd_identifier] = ACTIONS(2362), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2362), + [anon_sym_LPAREN] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2362), + [anon_sym_error] = ACTIONS(2362), + [anon_sym_DASH_DASH] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_break] = ACTIONS(2362), + [anon_sym_continue] = ACTIONS(2362), + [anon_sym_for] = ACTIONS(2362), + [anon_sym_loop] = ACTIONS(2362), + [anon_sym_while] = ACTIONS(2362), + [anon_sym_do] = ACTIONS(2362), + [anon_sym_if] = ACTIONS(2362), + [anon_sym_match] = ACTIONS(2362), + [anon_sym_LBRACE] = ACTIONS(2362), + [anon_sym_DOT_DOT] = ACTIONS(2362), + [anon_sym_try] = 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_where] = ACTIONS(2362), + [anon_sym_not] = ACTIONS(2362), + [anon_sym_DOT_DOT2] = ACTIONS(2362), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2362), + [anon_sym_DOT_DOT_LT] = ACTIONS(2362), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2364), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2364), + [anon_sym_null] = ACTIONS(2362), + [anon_sym_true] = ACTIONS(2362), + [anon_sym_false] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2362), + [aux_sym__val_number_decimal_token2] = ACTIONS(2362), + [anon_sym_DOT2] = ACTIONS(2362), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2362), + [anon_sym_0o] = ACTIONS(2362), + [anon_sym_0x] = ACTIONS(2362), + [sym_val_date] = 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_CARET] = ACTIONS(2362), + [anon_sym_POUND] = ACTIONS(113), + }, + [1207] = { + [sym_comment] = STATE(1207), + [ts_builtin_sym_end] = ACTIONS(2404), + [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), + [anon_sym_SEMI] = ACTIONS(2402), + [sym_cmd_identifier] = ACTIONS(2402), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2402), + [anon_sym_LPAREN] = ACTIONS(2402), + [anon_sym_DOLLAR] = ACTIONS(2402), + [anon_sym_error] = ACTIONS(2402), + [anon_sym_DASH_DASH] = ACTIONS(2402), + [anon_sym_DASH] = ACTIONS(2402), + [anon_sym_break] = ACTIONS(2402), + [anon_sym_continue] = ACTIONS(2402), + [anon_sym_for] = ACTIONS(2402), + [anon_sym_loop] = ACTIONS(2402), + [anon_sym_while] = ACTIONS(2402), + [anon_sym_do] = ACTIONS(2402), + [anon_sym_if] = ACTIONS(2402), + [anon_sym_match] = ACTIONS(2402), + [anon_sym_LBRACE] = ACTIONS(2402), + [anon_sym_DOT_DOT] = ACTIONS(2402), + [anon_sym_try] = 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_where] = ACTIONS(2402), + [anon_sym_not] = ACTIONS(2402), + [anon_sym_DOT_DOT2] = ACTIONS(2402), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2402), + [anon_sym_DOT_DOT_LT] = ACTIONS(2402), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2404), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2404), + [anon_sym_null] = ACTIONS(2402), + [anon_sym_true] = ACTIONS(2402), + [anon_sym_false] = ACTIONS(2402), + [aux_sym__val_number_decimal_token1] = ACTIONS(2402), + [aux_sym__val_number_decimal_token2] = ACTIONS(2402), + [anon_sym_DOT2] = ACTIONS(2402), + [aux_sym__val_number_decimal_token3] = ACTIONS(2402), + [aux_sym__val_number_token1] = ACTIONS(2402), + [aux_sym__val_number_token2] = ACTIONS(2402), + [aux_sym__val_number_token3] = ACTIONS(2402), + [aux_sym__val_number_token4] = ACTIONS(2402), + [aux_sym__val_number_token5] = ACTIONS(2402), + [aux_sym__val_number_token6] = ACTIONS(2402), + [anon_sym_0b] = ACTIONS(2402), + [anon_sym_0o] = ACTIONS(2402), + [anon_sym_0x] = ACTIONS(2402), + [sym_val_date] = 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_CARET] = ACTIONS(2402), + [anon_sym_POUND] = ACTIONS(113), + }, + [1208] = { + [sym_comment] = STATE(1208), + [ts_builtin_sym_end] = ACTIONS(3723), + [anon_sym_export] = ACTIONS(3721), + [anon_sym_alias] = ACTIONS(3721), + [anon_sym_let] = ACTIONS(3721), + [anon_sym_let_DASHenv] = ACTIONS(3721), + [anon_sym_mut] = ACTIONS(3721), + [anon_sym_const] = ACTIONS(3721), + [anon_sym_SEMI] = ACTIONS(3721), + [sym_cmd_identifier] = ACTIONS(3721), + [anon_sym_LF] = ACTIONS(3723), + [anon_sym_def] = ACTIONS(3721), + [anon_sym_export_DASHenv] = ACTIONS(3721), + [anon_sym_extern] = ACTIONS(3721), + [anon_sym_module] = ACTIONS(3721), + [anon_sym_use] = ACTIONS(3721), + [anon_sym_LBRACK] = ACTIONS(3721), + [anon_sym_LPAREN] = ACTIONS(3721), + [anon_sym_DOLLAR] = ACTIONS(3721), + [anon_sym_error] = ACTIONS(3721), + [anon_sym_DASH_DASH] = ACTIONS(3721), + [anon_sym_DASH] = ACTIONS(3721), + [anon_sym_break] = ACTIONS(3721), + [anon_sym_continue] = ACTIONS(3721), + [anon_sym_for] = ACTIONS(3721), + [anon_sym_loop] = ACTIONS(3721), + [anon_sym_while] = ACTIONS(3721), + [anon_sym_do] = ACTIONS(3721), + [anon_sym_if] = ACTIONS(3721), + [anon_sym_match] = ACTIONS(3721), + [anon_sym_LBRACE] = ACTIONS(3721), + [anon_sym_DOT_DOT] = ACTIONS(3721), + [anon_sym_try] = ACTIONS(3721), + [anon_sym_return] = ACTIONS(3721), + [anon_sym_source] = ACTIONS(3721), + [anon_sym_source_DASHenv] = ACTIONS(3721), + [anon_sym_register] = ACTIONS(3721), + [anon_sym_hide] = ACTIONS(3721), + [anon_sym_hide_DASHenv] = ACTIONS(3721), + [anon_sym_overlay] = ACTIONS(3721), + [anon_sym_as] = ACTIONS(3721), + [anon_sym_where] = ACTIONS(3721), + [anon_sym_not] = ACTIONS(3721), + [anon_sym_DOT_DOT2] = ACTIONS(3721), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3721), + [anon_sym_DOT_DOT_LT] = ACTIONS(3721), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3723), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3723), + [anon_sym_null] = ACTIONS(3721), + [anon_sym_true] = ACTIONS(3721), + [anon_sym_false] = ACTIONS(3721), + [aux_sym__val_number_decimal_token1] = ACTIONS(3721), + [aux_sym__val_number_decimal_token2] = ACTIONS(3721), + [anon_sym_DOT2] = ACTIONS(3721), + [aux_sym__val_number_decimal_token3] = ACTIONS(3721), + [aux_sym__val_number_token1] = ACTIONS(3721), + [aux_sym__val_number_token2] = ACTIONS(3721), + [aux_sym__val_number_token3] = ACTIONS(3721), + [aux_sym__val_number_token4] = ACTIONS(3721), + [aux_sym__val_number_token5] = ACTIONS(3721), + [aux_sym__val_number_token6] = ACTIONS(3721), + [anon_sym_0b] = ACTIONS(3721), + [anon_sym_0o] = ACTIONS(3721), + [anon_sym_0x] = ACTIONS(3721), + [sym_val_date] = ACTIONS(3721), + [anon_sym_DQUOTE] = ACTIONS(3721), + [sym__str_single_quotes] = ACTIONS(3721), + [sym__str_back_ticks] = ACTIONS(3721), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3721), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3721), + [anon_sym_CARET] = ACTIONS(3721), + [anon_sym_POUND] = ACTIONS(113), + }, + [1209] = { + [sym_comment] = STATE(1209), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_COMMA] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_DOLLAR] = ACTIONS(1074), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_in] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(1074), + [anon_sym__] = ACTIONS(1072), + [anon_sym_DOT_DOT] = ACTIONS(1072), + [anon_sym_STAR] = ACTIONS(1076), + [anon_sym_STAR_STAR] = ACTIONS(1169), + [anon_sym_PLUS_PLUS] = ACTIONS(1169), + [anon_sym_SLASH] = ACTIONS(1076), + [anon_sym_mod] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1076), + [anon_sym_bit_DASHshl] = ACTIONS(1169), + [anon_sym_bit_DASHshr] = ACTIONS(1169), + [anon_sym_EQ_EQ] = ACTIONS(1169), + [anon_sym_BANG_EQ] = ACTIONS(1169), + [anon_sym_LT2] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1169), + [anon_sym_GT_EQ] = ACTIONS(1169), + [anon_sym_not_DASHin] = ACTIONS(1169), + [anon_sym_starts_DASHwith] = ACTIONS(1169), + [anon_sym_ends_DASHwith] = ACTIONS(1169), + [anon_sym_EQ_TILDE] = ACTIONS(1169), + [anon_sym_BANG_TILDE] = ACTIONS(1169), + [anon_sym_bit_DASHand] = ACTIONS(1169), + [anon_sym_bit_DASHxor] = ACTIONS(1169), + [anon_sym_bit_DASHor] = ACTIONS(1169), + [anon_sym_and] = ACTIONS(1169), + [anon_sym_xor] = ACTIONS(1169), + [anon_sym_or] = ACTIONS(1169), + [anon_sym_DOT_DOT2] = ACTIONS(3956), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1072), + [anon_sym_DOT_DOT_LT] = ACTIONS(1072), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3958), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3958), + [anon_sym_null] = ACTIONS(1074), + [anon_sym_true] = ACTIONS(1074), + [anon_sym_false] = ACTIONS(1074), + [aux_sym__val_number_decimal_token1] = ACTIONS(1072), + [aux_sym__val_number_decimal_token2] = ACTIONS(1074), + [anon_sym_DOT2] = ACTIONS(1072), + [aux_sym__val_number_decimal_token3] = ACTIONS(1074), + [aux_sym__val_number_token1] = ACTIONS(1074), + [aux_sym__val_number_token2] = ACTIONS(1074), + [aux_sym__val_number_token3] = ACTIONS(1074), + [aux_sym__val_number_token4] = ACTIONS(1074), + [aux_sym__val_number_token5] = ACTIONS(1074), + [aux_sym__val_number_token6] = ACTIONS(1074), + [anon_sym_0b] = ACTIONS(1072), + [anon_sym_0o] = ACTIONS(1072), + [anon_sym_0x] = ACTIONS(1072), + [sym_val_date] = ACTIONS(1074), + [anon_sym_DQUOTE] = ACTIONS(1074), + [sym__str_single_quotes] = ACTIONS(1074), + [sym__str_back_ticks] = ACTIONS(1074), + [anon_sym_err_GT] = ACTIONS(1074), + [anon_sym_out_GT] = ACTIONS(1074), + [anon_sym_e_GT] = ACTIONS(1074), + [anon_sym_o_GT] = ACTIONS(1074), + [anon_sym_err_PLUSout_GT] = ACTIONS(1074), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1074), + [anon_sym_o_PLUSe_GT] = ACTIONS(1074), + [anon_sym_e_PLUSo_GT] = ACTIONS(1074), + [aux_sym_unquoted_token1] = ACTIONS(1072), [anon_sym_POUND] = ACTIONS(3), }, - [979] = { - [sym_comment] = STATE(979), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), + [1210] = { + [sym_comment] = STATE(1210), + [ts_builtin_sym_end] = ACTIONS(940), + [anon_sym_SEMI] = ACTIONS(938), + [anon_sym_LF] = ACTIONS(940), + [anon_sym_LBRACK] = ACTIONS(938), [anon_sym_LPAREN] = ACTIONS(938), + [anon_sym_PIPE] = ACTIONS(938), [anon_sym_DOLLAR] = ACTIONS(938), - [anon_sym_error] = ACTIONS(936), - [anon_sym_list] = ACTIONS(936), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_make] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_else] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_RBRACE] = ACTIONS(938), - [anon_sym_try] = ACTIONS(936), - [anon_sym_catch] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_new] = ACTIONS(936), - [anon_sym_as] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_in] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), [anon_sym_STAR_STAR] = ACTIONS(938), [anon_sym_PLUS_PLUS] = ACTIONS(938), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(936), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(938), [anon_sym_SLASH_SLASH] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(936), - [anon_sym_bit_DASHshr] = ACTIONS(936), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_bit_DASHshl] = ACTIONS(938), + [anon_sym_bit_DASHshr] = ACTIONS(938), [anon_sym_EQ_EQ] = ACTIONS(938), [anon_sym_BANG_EQ] = ACTIONS(938), - [anon_sym_LT2] = ACTIONS(936), + [anon_sym_LT2] = ACTIONS(938), [anon_sym_LT_EQ] = ACTIONS(938), [anon_sym_GT_EQ] = ACTIONS(938), - [anon_sym_not_DASHin] = ACTIONS(936), - [anon_sym_starts_DASHwith] = ACTIONS(936), - [anon_sym_ends_DASHwith] = ACTIONS(936), + [anon_sym_not_DASHin] = ACTIONS(938), + [anon_sym_starts_DASHwith] = ACTIONS(938), + [anon_sym_ends_DASHwith] = ACTIONS(938), [anon_sym_EQ_TILDE] = ACTIONS(938), [anon_sym_BANG_TILDE] = ACTIONS(938), - [anon_sym_bit_DASHand] = ACTIONS(936), - [anon_sym_bit_DASHxor] = ACTIONS(936), - [anon_sym_bit_DASHor] = ACTIONS(936), - [anon_sym_and] = ACTIONS(936), - [anon_sym_xor] = ACTIONS(936), - [anon_sym_or] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), + [anon_sym_bit_DASHand] = ACTIONS(938), + [anon_sym_bit_DASHxor] = ACTIONS(938), + [anon_sym_bit_DASHor] = ACTIONS(938), + [anon_sym_and] = ACTIONS(938), + [anon_sym_xor] = ACTIONS(938), + [anon_sym_or] = ACTIONS(938), + [anon_sym_not] = ACTIONS(938), + [anon_sym_DOT_DOT2] = ACTIONS(3960), + [anon_sym_DOT] = ACTIONS(3962), + [anon_sym_DOT_DOT_EQ] = ACTIONS(938), + [anon_sym_DOT_DOT_LT] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3964), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3964), + [anon_sym_null] = ACTIONS(938), + [anon_sym_true] = ACTIONS(938), + [anon_sym_false] = ACTIONS(938), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), [aux_sym__val_number_decimal_token2] = ACTIONS(938), [anon_sym_DOT2] = ACTIONS(938), [aux_sym__val_number_decimal_token3] = ACTIONS(938), [aux_sym__val_number_token1] = ACTIONS(938), [aux_sym__val_number_token2] = ACTIONS(938), [aux_sym__val_number_token3] = ACTIONS(938), - [aux_sym__val_number_token4] = ACTIONS(936), + [aux_sym__val_number_token4] = ACTIONS(938), [aux_sym__val_number_token5] = ACTIONS(938), - [aux_sym__val_number_token6] = ACTIONS(936), + [aux_sym__val_number_token6] = ACTIONS(938), + [anon_sym_0b] = ACTIONS(938), + [sym_filesize_unit] = ACTIONS(3835), + [sym_duration_unit] = ACTIONS(3837), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = ACTIONS(938), [anon_sym_DQUOTE] = ACTIONS(938), [sym__str_single_quotes] = ACTIONS(938), [sym__str_back_ticks] = ACTIONS(938), - [aux_sym__record_key_token2] = ACTIONS(936), - [anon_sym_POUND] = ACTIONS(3), - }, - [980] = { - [sym_comment] = STATE(980), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [sym_cmd_identifier] = ACTIONS(1376), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_list] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1766), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1778), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_make] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_else] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_catch] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_new] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1768), - [anon_sym_STAR_STAR] = ACTIONS(1770), - [anon_sym_PLUS_PLUS] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1768), - [anon_sym_mod] = ACTIONS(1768), - [anon_sym_SLASH_SLASH] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1766), - [anon_sym_bit_DASHshl] = ACTIONS(1774), - [anon_sym_bit_DASHshr] = ACTIONS(1774), - [anon_sym_EQ_EQ] = ACTIONS(1776), - [anon_sym_BANG_EQ] = ACTIONS(1776), - [anon_sym_LT2] = ACTIONS(1764), - [anon_sym_LT_EQ] = ACTIONS(1776), - [anon_sym_GT_EQ] = ACTIONS(1776), - [anon_sym_not_DASHin] = ACTIONS(1778), - [anon_sym_starts_DASHwith] = ACTIONS(1778), - [anon_sym_ends_DASHwith] = ACTIONS(1778), - [anon_sym_EQ_TILDE] = ACTIONS(1780), - [anon_sym_BANG_TILDE] = ACTIONS(1780), - [anon_sym_bit_DASHand] = ACTIONS(1782), - [anon_sym_bit_DASHxor] = ACTIONS(1784), - [anon_sym_bit_DASHor] = ACTIONS(1786), - [anon_sym_and] = ACTIONS(1788), - [anon_sym_xor] = ACTIONS(1790), - [anon_sym_or] = ACTIONS(1792), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1378), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1378), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [aux_sym__record_key_token2] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(938), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(938), + [aux_sym_unquoted_token5] = ACTIONS(3966), + [anon_sym_POUND] = ACTIONS(113), }, - [981] = { - [sym_comment] = STATE(981), - [anon_sym_export] = ACTIONS(1372), - [anon_sym_alias] = ACTIONS(1372), - [anon_sym_let] = ACTIONS(1372), - [anon_sym_let_DASHenv] = ACTIONS(1372), - [anon_sym_mut] = ACTIONS(1372), - [anon_sym_const] = ACTIONS(1372), - [sym_cmd_identifier] = ACTIONS(1372), - [anon_sym_def] = ACTIONS(1372), - [anon_sym_export_DASHenv] = ACTIONS(1372), - [anon_sym_extern] = ACTIONS(1372), - [anon_sym_module] = ACTIONS(1372), - [anon_sym_use] = ACTIONS(1372), - [anon_sym_LPAREN] = ACTIONS(1374), - [anon_sym_DOLLAR] = ACTIONS(1374), - [anon_sym_error] = ACTIONS(1372), - [anon_sym_list] = ACTIONS(1372), - [anon_sym_GT] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1372), - [anon_sym_break] = ACTIONS(1372), - [anon_sym_continue] = ACTIONS(1372), - [anon_sym_for] = ACTIONS(1372), - [anon_sym_in] = ACTIONS(1372), - [anon_sym_loop] = ACTIONS(1372), - [anon_sym_make] = ACTIONS(1372), - [anon_sym_while] = ACTIONS(1372), - [anon_sym_do] = ACTIONS(1372), - [anon_sym_if] = ACTIONS(1372), - [anon_sym_else] = ACTIONS(1372), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_RBRACE] = ACTIONS(1374), - [anon_sym_try] = ACTIONS(1372), - [anon_sym_catch] = ACTIONS(1372), - [anon_sym_return] = ACTIONS(1372), - [anon_sym_source] = ACTIONS(1372), - [anon_sym_source_DASHenv] = ACTIONS(1372), - [anon_sym_register] = ACTIONS(1372), - [anon_sym_hide] = ACTIONS(1372), - [anon_sym_hide_DASHenv] = ACTIONS(1372), - [anon_sym_overlay] = ACTIONS(1372), - [anon_sym_new] = ACTIONS(1372), - [anon_sym_as] = ACTIONS(1372), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_STAR_STAR] = ACTIONS(1374), - [anon_sym_PLUS_PLUS] = ACTIONS(1374), - [anon_sym_SLASH] = ACTIONS(1372), - [anon_sym_mod] = ACTIONS(1372), - [anon_sym_SLASH_SLASH] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1372), - [anon_sym_bit_DASHshl] = ACTIONS(1372), - [anon_sym_bit_DASHshr] = ACTIONS(1372), - [anon_sym_EQ_EQ] = ACTIONS(1374), - [anon_sym_BANG_EQ] = ACTIONS(1374), - [anon_sym_LT2] = ACTIONS(1372), - [anon_sym_LT_EQ] = ACTIONS(1374), - [anon_sym_GT_EQ] = ACTIONS(1374), - [anon_sym_not_DASHin] = ACTIONS(1372), - [anon_sym_starts_DASHwith] = ACTIONS(1372), - [anon_sym_ends_DASHwith] = ACTIONS(1372), - [anon_sym_EQ_TILDE] = ACTIONS(1374), - [anon_sym_BANG_TILDE] = ACTIONS(1374), - [anon_sym_bit_DASHand] = ACTIONS(1372), - [anon_sym_bit_DASHxor] = ACTIONS(1372), - [anon_sym_bit_DASHor] = ACTIONS(1372), - [anon_sym_and] = ACTIONS(1372), - [anon_sym_xor] = ACTIONS(1372), - [anon_sym_or] = ACTIONS(1372), - [aux_sym__val_number_decimal_token1] = ACTIONS(1372), - [aux_sym__val_number_decimal_token2] = ACTIONS(1374), - [anon_sym_DOT2] = ACTIONS(1374), - [aux_sym__val_number_decimal_token3] = ACTIONS(1374), - [aux_sym__val_number_token1] = ACTIONS(1374), - [aux_sym__val_number_token2] = ACTIONS(1374), - [aux_sym__val_number_token3] = ACTIONS(1374), - [aux_sym__val_number_token4] = ACTIONS(1372), - [aux_sym__val_number_token5] = ACTIONS(1374), - [aux_sym__val_number_token6] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1374), - [sym__str_single_quotes] = ACTIONS(1374), - [sym__str_back_ticks] = ACTIONS(1374), - [aux_sym__record_key_token2] = ACTIONS(1372), - [anon_sym_POUND] = ACTIONS(3), + [1211] = { + [sym_comment] = STATE(1211), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_COMMA] = ACTIONS(920), + [anon_sym_RBRACK] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_in] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_STAR_STAR] = ACTIONS(920), + [anon_sym_PLUS_PLUS] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_mod] = ACTIONS(920), + [anon_sym_SLASH_SLASH] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_bit_DASHshl] = ACTIONS(920), + [anon_sym_bit_DASHshr] = ACTIONS(920), + [anon_sym_EQ_EQ] = ACTIONS(920), + [anon_sym_BANG_EQ] = ACTIONS(920), + [anon_sym_LT2] = ACTIONS(920), + [anon_sym_LT_EQ] = ACTIONS(920), + [anon_sym_GT_EQ] = ACTIONS(920), + [anon_sym_not_DASHin] = ACTIONS(920), + [anon_sym_starts_DASHwith] = ACTIONS(920), + [anon_sym_ends_DASHwith] = ACTIONS(920), + [anon_sym_EQ_TILDE] = ACTIONS(920), + [anon_sym_BANG_TILDE] = ACTIONS(920), + [anon_sym_bit_DASHand] = ACTIONS(920), + [anon_sym_bit_DASHxor] = ACTIONS(920), + [anon_sym_bit_DASHor] = ACTIONS(920), + [anon_sym_and] = ACTIONS(920), + [anon_sym_xor] = ACTIONS(920), + [anon_sym_or] = ACTIONS(920), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [aux_sym__immediate_decimal_token1] = ACTIONS(3968), + [anon_sym_null] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [sym__entry_separator] = ACTIONS(922), + [anon_sym_err_GT] = ACTIONS(920), + [anon_sym_out_GT] = ACTIONS(920), + [anon_sym_e_GT] = ACTIONS(920), + [anon_sym_o_GT] = ACTIONS(920), + [anon_sym_err_PLUSout_GT] = ACTIONS(920), + [anon_sym_out_PLUSerr_GT] = ACTIONS(920), + [anon_sym_o_PLUSe_GT] = ACTIONS(920), + [anon_sym_e_PLUSo_GT] = ACTIONS(920), + [aux_sym_unquoted_token2] = ACTIONS(3970), + [aux_sym__unquoted_in_list_token1] = ACTIONS(920), + [anon_sym_POUND] = ACTIONS(113), }, - [982] = { - [sym_comment] = STATE(982), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_list] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_make] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_else] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_catch] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_new] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1370), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1370), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [aux_sym__record_key_token2] = ACTIONS(1368), + [1212] = { + [sym_path] = STATE(1496), + [sym_comment] = STATE(1212), + [aux_sym_cell_path_repeat1] = STATE(1213), + [anon_sym_LBRACK] = ACTIONS(1012), + [anon_sym_COMMA] = ACTIONS(1012), + [anon_sym_RBRACK] = ACTIONS(1012), + [anon_sym_LPAREN] = ACTIONS(1012), + [anon_sym_DOLLAR] = ACTIONS(1012), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1012), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1012), + [anon_sym_PLUS_PLUS] = ACTIONS(1012), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1012), + [anon_sym_SLASH_SLASH] = ACTIONS(1012), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1012), + [anon_sym_bit_DASHshr] = ACTIONS(1012), + [anon_sym_EQ_EQ] = ACTIONS(1012), + [anon_sym_BANG_EQ] = ACTIONS(1012), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1012), + [anon_sym_GT_EQ] = ACTIONS(1012), + [anon_sym_not_DASHin] = ACTIONS(1012), + [anon_sym_starts_DASHwith] = ACTIONS(1012), + [anon_sym_ends_DASHwith] = ACTIONS(1012), + [anon_sym_EQ_TILDE] = ACTIONS(1012), + [anon_sym_BANG_TILDE] = ACTIONS(1012), + [anon_sym_bit_DASHand] = ACTIONS(1012), + [anon_sym_bit_DASHxor] = ACTIONS(1012), + [anon_sym_bit_DASHor] = ACTIONS(1012), + [anon_sym_and] = ACTIONS(1012), + [anon_sym_xor] = ACTIONS(1012), + [anon_sym_or] = ACTIONS(1012), + [anon_sym_DOT] = ACTIONS(3781), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1012), + [anon_sym_DOT_DOT_LT] = ACTIONS(1012), + [anon_sym_null] = ACTIONS(1012), + [anon_sym_true] = ACTIONS(1012), + [anon_sym_false] = ACTIONS(1012), + [aux_sym__val_number_decimal_token1] = ACTIONS(1010), + [aux_sym__val_number_decimal_token2] = ACTIONS(1012), + [anon_sym_DOT2] = ACTIONS(1010), + [aux_sym__val_number_decimal_token3] = 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(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1012), + [anon_sym_DQUOTE] = ACTIONS(1012), + [sym__str_single_quotes] = ACTIONS(1012), + [sym__str_back_ticks] = ACTIONS(1012), + [anon_sym_err_GT] = ACTIONS(1012), + [anon_sym_out_GT] = ACTIONS(1012), + [anon_sym_e_GT] = ACTIONS(1012), + [anon_sym_o_GT] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT] = ACTIONS(1012), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), }, - [983] = { - [sym_comment] = STATE(983), - [anon_sym_export] = ACTIONS(1316), - [anon_sym_alias] = ACTIONS(1316), - [anon_sym_let] = ACTIONS(1316), - [anon_sym_let_DASHenv] = ACTIONS(1316), - [anon_sym_mut] = ACTIONS(1316), - [anon_sym_const] = ACTIONS(1316), - [sym_cmd_identifier] = ACTIONS(1316), - [anon_sym_def] = ACTIONS(1316), - [anon_sym_export_DASHenv] = ACTIONS(1316), - [anon_sym_extern] = ACTIONS(1316), - [anon_sym_module] = ACTIONS(1316), - [anon_sym_use] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_DOLLAR] = ACTIONS(1318), - [anon_sym_error] = ACTIONS(1316), - [anon_sym_list] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_break] = ACTIONS(1316), - [anon_sym_continue] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1316), - [anon_sym_in] = ACTIONS(1316), - [anon_sym_loop] = ACTIONS(1316), - [anon_sym_make] = ACTIONS(1316), - [anon_sym_while] = ACTIONS(1316), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_if] = ACTIONS(1316), - [anon_sym_else] = ACTIONS(1316), - [anon_sym_match] = ACTIONS(1316), - [anon_sym_RBRACE] = ACTIONS(1318), - [anon_sym_try] = ACTIONS(1316), - [anon_sym_catch] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1316), - [anon_sym_source] = ACTIONS(1316), - [anon_sym_source_DASHenv] = ACTIONS(1316), - [anon_sym_register] = ACTIONS(1316), - [anon_sym_hide] = ACTIONS(1316), - [anon_sym_hide_DASHenv] = ACTIONS(1316), - [anon_sym_overlay] = ACTIONS(1316), - [anon_sym_new] = ACTIONS(1316), - [anon_sym_as] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_STAR_STAR] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(1316), - [anon_sym_mod] = ACTIONS(1316), - [anon_sym_SLASH_SLASH] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_bit_DASHshl] = ACTIONS(1316), - [anon_sym_bit_DASHshr] = ACTIONS(1316), - [anon_sym_EQ_EQ] = ACTIONS(1318), - [anon_sym_BANG_EQ] = ACTIONS(1318), - [anon_sym_LT2] = ACTIONS(1316), - [anon_sym_LT_EQ] = ACTIONS(1318), - [anon_sym_GT_EQ] = ACTIONS(1318), - [anon_sym_not_DASHin] = ACTIONS(1316), - [anon_sym_starts_DASHwith] = ACTIONS(1316), - [anon_sym_ends_DASHwith] = ACTIONS(1316), - [anon_sym_EQ_TILDE] = ACTIONS(1318), - [anon_sym_BANG_TILDE] = ACTIONS(1318), - [anon_sym_bit_DASHand] = ACTIONS(1316), - [anon_sym_bit_DASHxor] = ACTIONS(1316), - [anon_sym_bit_DASHor] = ACTIONS(1316), - [anon_sym_and] = ACTIONS(1316), - [anon_sym_xor] = ACTIONS(1316), - [anon_sym_or] = ACTIONS(1316), - [aux_sym__val_number_decimal_token1] = ACTIONS(1316), - [aux_sym__val_number_decimal_token2] = ACTIONS(1318), - [anon_sym_DOT2] = ACTIONS(1318), - [aux_sym__val_number_decimal_token3] = ACTIONS(1318), - [aux_sym__val_number_token1] = ACTIONS(1318), - [aux_sym__val_number_token2] = ACTIONS(1318), - [aux_sym__val_number_token3] = ACTIONS(1318), - [aux_sym__val_number_token4] = ACTIONS(1316), - [aux_sym__val_number_token5] = ACTIONS(1318), - [aux_sym__val_number_token6] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1318), - [sym__str_single_quotes] = ACTIONS(1318), - [sym__str_back_ticks] = ACTIONS(1318), - [aux_sym__record_key_token2] = ACTIONS(1316), + [1213] = { + [sym_path] = STATE(1496), + [sym_comment] = STATE(1213), + [aux_sym_cell_path_repeat1] = STATE(1214), + [anon_sym_LBRACK] = ACTIONS(1008), + [anon_sym_COMMA] = ACTIONS(1008), + [anon_sym_RBRACK] = ACTIONS(1008), + [anon_sym_LPAREN] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1008), + [anon_sym_GT] = ACTIONS(1006), + [anon_sym_DASH_DASH] = ACTIONS(1008), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_in] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(1008), + [anon_sym_DOT_DOT] = ACTIONS(1006), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_STAR_STAR] = ACTIONS(1008), + [anon_sym_PLUS_PLUS] = ACTIONS(1008), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_mod] = ACTIONS(1008), + [anon_sym_SLASH_SLASH] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_bit_DASHshl] = ACTIONS(1008), + [anon_sym_bit_DASHshr] = ACTIONS(1008), + [anon_sym_EQ_EQ] = ACTIONS(1008), + [anon_sym_BANG_EQ] = ACTIONS(1008), + [anon_sym_LT2] = ACTIONS(1006), + [anon_sym_LT_EQ] = ACTIONS(1008), + [anon_sym_GT_EQ] = ACTIONS(1008), + [anon_sym_not_DASHin] = ACTIONS(1008), + [anon_sym_starts_DASHwith] = ACTIONS(1008), + [anon_sym_ends_DASHwith] = ACTIONS(1008), + [anon_sym_EQ_TILDE] = ACTIONS(1008), + [anon_sym_BANG_TILDE] = ACTIONS(1008), + [anon_sym_bit_DASHand] = ACTIONS(1008), + [anon_sym_bit_DASHxor] = ACTIONS(1008), + [anon_sym_bit_DASHor] = ACTIONS(1008), + [anon_sym_and] = ACTIONS(1008), + [anon_sym_xor] = ACTIONS(1008), + [anon_sym_or] = ACTIONS(1008), + [anon_sym_DOT] = ACTIONS(3781), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1008), + [anon_sym_DOT_DOT_LT] = ACTIONS(1008), + [anon_sym_null] = ACTIONS(1008), + [anon_sym_true] = ACTIONS(1008), + [anon_sym_false] = ACTIONS(1008), + [aux_sym__val_number_decimal_token1] = ACTIONS(1006), + [aux_sym__val_number_decimal_token2] = ACTIONS(1008), + [anon_sym_DOT2] = ACTIONS(1006), + [aux_sym__val_number_decimal_token3] = ACTIONS(1008), + [aux_sym__val_number_token1] = ACTIONS(1008), + [aux_sym__val_number_token2] = ACTIONS(1008), + [aux_sym__val_number_token3] = ACTIONS(1008), + [aux_sym__val_number_token4] = ACTIONS(1008), + [aux_sym__val_number_token5] = ACTIONS(1008), + [aux_sym__val_number_token6] = ACTIONS(1008), + [anon_sym_0b] = ACTIONS(1006), + [anon_sym_0o] = ACTIONS(1006), + [anon_sym_0x] = ACTIONS(1006), + [sym_val_date] = ACTIONS(1008), + [anon_sym_DQUOTE] = ACTIONS(1008), + [sym__str_single_quotes] = ACTIONS(1008), + [sym__str_back_ticks] = ACTIONS(1008), + [anon_sym_err_GT] = ACTIONS(1008), + [anon_sym_out_GT] = ACTIONS(1008), + [anon_sym_e_GT] = ACTIONS(1008), + [anon_sym_o_GT] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT] = ACTIONS(1008), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1006), [anon_sym_POUND] = ACTIONS(3), }, - [984] = { - [sym_comment] = STATE(984), - [anon_sym_export] = ACTIONS(1320), - [anon_sym_alias] = ACTIONS(1320), - [anon_sym_let] = ACTIONS(1320), - [anon_sym_let_DASHenv] = ACTIONS(1320), - [anon_sym_mut] = ACTIONS(1320), - [anon_sym_const] = ACTIONS(1320), - [sym_cmd_identifier] = ACTIONS(1320), - [anon_sym_def] = ACTIONS(1320), - [anon_sym_export_DASHenv] = ACTIONS(1320), - [anon_sym_extern] = ACTIONS(1320), - [anon_sym_module] = ACTIONS(1320), - [anon_sym_use] = ACTIONS(1320), - [anon_sym_LPAREN] = ACTIONS(1322), - [anon_sym_DOLLAR] = ACTIONS(1322), - [anon_sym_error] = ACTIONS(1320), - [anon_sym_list] = ACTIONS(1320), - [anon_sym_GT] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1320), - [anon_sym_continue] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_in] = ACTIONS(1320), - [anon_sym_loop] = ACTIONS(1320), - [anon_sym_make] = ACTIONS(1320), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_do] = ACTIONS(1320), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_else] = ACTIONS(1320), - [anon_sym_match] = ACTIONS(1320), - [anon_sym_RBRACE] = ACTIONS(1322), - [anon_sym_try] = ACTIONS(1320), - [anon_sym_catch] = ACTIONS(1320), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_source] = ACTIONS(1320), - [anon_sym_source_DASHenv] = ACTIONS(1320), - [anon_sym_register] = ACTIONS(1320), - [anon_sym_hide] = ACTIONS(1320), - [anon_sym_hide_DASHenv] = ACTIONS(1320), - [anon_sym_overlay] = ACTIONS(1320), - [anon_sym_new] = ACTIONS(1320), - [anon_sym_as] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_STAR_STAR] = ACTIONS(1322), - [anon_sym_PLUS_PLUS] = ACTIONS(1322), - [anon_sym_SLASH] = ACTIONS(1320), - [anon_sym_mod] = ACTIONS(1320), - [anon_sym_SLASH_SLASH] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1320), - [anon_sym_bit_DASHshl] = ACTIONS(1320), - [anon_sym_bit_DASHshr] = ACTIONS(1320), - [anon_sym_EQ_EQ] = ACTIONS(1322), - [anon_sym_BANG_EQ] = ACTIONS(1322), - [anon_sym_LT2] = ACTIONS(1320), - [anon_sym_LT_EQ] = ACTIONS(1322), - [anon_sym_GT_EQ] = ACTIONS(1322), - [anon_sym_not_DASHin] = ACTIONS(1320), - [anon_sym_starts_DASHwith] = ACTIONS(1320), - [anon_sym_ends_DASHwith] = ACTIONS(1320), - [anon_sym_EQ_TILDE] = ACTIONS(1322), - [anon_sym_BANG_TILDE] = ACTIONS(1322), - [anon_sym_bit_DASHand] = ACTIONS(1320), - [anon_sym_bit_DASHxor] = ACTIONS(1320), - [anon_sym_bit_DASHor] = ACTIONS(1320), - [anon_sym_and] = ACTIONS(1320), - [anon_sym_xor] = ACTIONS(1320), - [anon_sym_or] = ACTIONS(1320), - [aux_sym__val_number_decimal_token1] = ACTIONS(1320), - [aux_sym__val_number_decimal_token2] = ACTIONS(1322), - [anon_sym_DOT2] = ACTIONS(1322), - [aux_sym__val_number_decimal_token3] = ACTIONS(1322), - [aux_sym__val_number_token1] = ACTIONS(1322), - [aux_sym__val_number_token2] = ACTIONS(1322), - [aux_sym__val_number_token3] = ACTIONS(1322), - [aux_sym__val_number_token4] = ACTIONS(1320), - [aux_sym__val_number_token5] = ACTIONS(1322), - [aux_sym__val_number_token6] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1322), - [sym__str_single_quotes] = ACTIONS(1322), - [sym__str_back_ticks] = ACTIONS(1322), - [aux_sym__record_key_token2] = ACTIONS(1320), + [1214] = { + [sym_path] = STATE(1496), + [sym_comment] = STATE(1214), + [aux_sym_cell_path_repeat1] = STATE(1214), + [anon_sym_LBRACK] = ACTIONS(987), + [anon_sym_COMMA] = ACTIONS(987), + [anon_sym_RBRACK] = ACTIONS(987), + [anon_sym_LPAREN] = ACTIONS(987), + [anon_sym_DOLLAR] = ACTIONS(987), + [anon_sym_GT] = ACTIONS(985), + [anon_sym_DASH_DASH] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_in] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(987), + [anon_sym_DOT_DOT] = ACTIONS(985), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_STAR_STAR] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(987), + [anon_sym_SLASH] = ACTIONS(985), + [anon_sym_mod] = ACTIONS(987), + [anon_sym_SLASH_SLASH] = ACTIONS(987), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_bit_DASHshl] = ACTIONS(987), + [anon_sym_bit_DASHshr] = ACTIONS(987), + [anon_sym_EQ_EQ] = ACTIONS(987), + [anon_sym_BANG_EQ] = ACTIONS(987), + [anon_sym_LT2] = ACTIONS(985), + [anon_sym_LT_EQ] = ACTIONS(987), + [anon_sym_GT_EQ] = ACTIONS(987), + [anon_sym_not_DASHin] = ACTIONS(987), + [anon_sym_starts_DASHwith] = ACTIONS(987), + [anon_sym_ends_DASHwith] = ACTIONS(987), + [anon_sym_EQ_TILDE] = ACTIONS(987), + [anon_sym_BANG_TILDE] = ACTIONS(987), + [anon_sym_bit_DASHand] = ACTIONS(987), + [anon_sym_bit_DASHxor] = ACTIONS(987), + [anon_sym_bit_DASHor] = ACTIONS(987), + [anon_sym_and] = ACTIONS(987), + [anon_sym_xor] = ACTIONS(987), + [anon_sym_or] = ACTIONS(987), + [anon_sym_DOT] = ACTIONS(3972), + [anon_sym_DOT_DOT_EQ] = ACTIONS(987), + [anon_sym_DOT_DOT_LT] = ACTIONS(987), + [anon_sym_null] = ACTIONS(987), + [anon_sym_true] = ACTIONS(987), + [anon_sym_false] = ACTIONS(987), + [aux_sym__val_number_decimal_token1] = ACTIONS(985), + [aux_sym__val_number_decimal_token2] = ACTIONS(987), + [anon_sym_DOT2] = ACTIONS(985), + [aux_sym__val_number_decimal_token3] = ACTIONS(987), + [aux_sym__val_number_token1] = ACTIONS(987), + [aux_sym__val_number_token2] = ACTIONS(987), + [aux_sym__val_number_token3] = ACTIONS(987), + [aux_sym__val_number_token4] = ACTIONS(987), + [aux_sym__val_number_token5] = ACTIONS(987), + [aux_sym__val_number_token6] = ACTIONS(987), + [anon_sym_0b] = ACTIONS(985), + [anon_sym_0o] = ACTIONS(985), + [anon_sym_0x] = ACTIONS(985), + [sym_val_date] = ACTIONS(987), + [anon_sym_DQUOTE] = ACTIONS(987), + [sym__str_single_quotes] = ACTIONS(987), + [sym__str_back_ticks] = ACTIONS(987), + [anon_sym_err_GT] = ACTIONS(987), + [anon_sym_out_GT] = ACTIONS(987), + [anon_sym_e_GT] = ACTIONS(987), + [anon_sym_o_GT] = ACTIONS(987), + [anon_sym_err_PLUSout_GT] = ACTIONS(987), + [anon_sym_out_PLUSerr_GT] = ACTIONS(987), + [anon_sym_o_PLUSe_GT] = ACTIONS(987), + [anon_sym_e_PLUSo_GT] = ACTIONS(987), + [aux_sym__unquoted_in_list_token1] = ACTIONS(985), [anon_sym_POUND] = ACTIONS(3), }, - [985] = { - [sym_comment] = STATE(985), - [anon_sym_export] = ACTIONS(959), - [anon_sym_alias] = ACTIONS(959), - [anon_sym_let] = ACTIONS(959), - [anon_sym_let_DASHenv] = ACTIONS(959), - [anon_sym_mut] = ACTIONS(959), - [anon_sym_const] = ACTIONS(959), - [sym_cmd_identifier] = ACTIONS(959), - [anon_sym_def] = ACTIONS(959), - [anon_sym_export_DASHenv] = ACTIONS(959), - [anon_sym_extern] = ACTIONS(959), - [anon_sym_module] = ACTIONS(959), - [anon_sym_use] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(961), - [anon_sym_DOLLAR] = ACTIONS(961), - [anon_sym_error] = ACTIONS(959), - [anon_sym_list] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_break] = ACTIONS(959), - [anon_sym_continue] = ACTIONS(959), - [anon_sym_for] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_loop] = ACTIONS(959), - [anon_sym_make] = ACTIONS(959), - [anon_sym_while] = ACTIONS(959), - [anon_sym_do] = ACTIONS(959), - [anon_sym_if] = ACTIONS(959), - [anon_sym_else] = ACTIONS(959), - [anon_sym_match] = ACTIONS(959), - [anon_sym_RBRACE] = ACTIONS(961), - [anon_sym_try] = ACTIONS(959), - [anon_sym_catch] = ACTIONS(959), - [anon_sym_return] = ACTIONS(959), - [anon_sym_source] = ACTIONS(959), - [anon_sym_source_DASHenv] = ACTIONS(959), - [anon_sym_register] = ACTIONS(959), - [anon_sym_hide] = ACTIONS(959), - [anon_sym_hide_DASHenv] = ACTIONS(959), - [anon_sym_overlay] = ACTIONS(959), - [anon_sym_new] = ACTIONS(959), - [anon_sym_as] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(959), - [anon_sym_SLASH_SLASH] = ACTIONS(961), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(959), - [anon_sym_bit_DASHshr] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(961), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_not_DASHin] = ACTIONS(959), - [anon_sym_starts_DASHwith] = ACTIONS(959), - [anon_sym_ends_DASHwith] = ACTIONS(959), - [anon_sym_EQ_TILDE] = ACTIONS(961), - [anon_sym_BANG_TILDE] = ACTIONS(961), - [anon_sym_bit_DASHand] = ACTIONS(959), - [anon_sym_bit_DASHxor] = ACTIONS(959), - [anon_sym_bit_DASHor] = ACTIONS(959), - [anon_sym_and] = ACTIONS(959), - [anon_sym_xor] = ACTIONS(959), - [anon_sym_or] = ACTIONS(959), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(961), - [anon_sym_DOT2] = ACTIONS(961), - [aux_sym__val_number_decimal_token3] = ACTIONS(961), - [aux_sym__val_number_token1] = ACTIONS(961), - [aux_sym__val_number_token2] = ACTIONS(961), - [aux_sym__val_number_token3] = ACTIONS(961), - [aux_sym__val_number_token4] = ACTIONS(959), - [aux_sym__val_number_token5] = ACTIONS(961), - [aux_sym__val_number_token6] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(961), - [sym__str_single_quotes] = ACTIONS(961), - [sym__str_back_ticks] = ACTIONS(961), - [aux_sym__record_key_token2] = ACTIONS(959), - [anon_sym_POUND] = ACTIONS(3), + [1215] = { + [sym__immediate_decimal] = STATE(8796), + [sym_comment] = STATE(1215), + [ts_builtin_sym_end] = ACTIONS(922), + [anon_sym_SEMI] = ACTIONS(920), + [anon_sym_LF] = ACTIONS(922), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_PIPE] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_in] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_STAR_STAR] = ACTIONS(920), + [anon_sym_PLUS_PLUS] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_mod] = ACTIONS(920), + [anon_sym_SLASH_SLASH] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_bit_DASHshl] = ACTIONS(920), + [anon_sym_bit_DASHshr] = ACTIONS(920), + [anon_sym_EQ_EQ] = ACTIONS(920), + [anon_sym_BANG_EQ] = ACTIONS(920), + [anon_sym_LT2] = ACTIONS(920), + [anon_sym_LT_EQ] = ACTIONS(920), + [anon_sym_GT_EQ] = ACTIONS(920), + [anon_sym_not_DASHin] = ACTIONS(920), + [anon_sym_starts_DASHwith] = ACTIONS(920), + [anon_sym_ends_DASHwith] = ACTIONS(920), + [anon_sym_EQ_TILDE] = ACTIONS(920), + [anon_sym_BANG_TILDE] = ACTIONS(920), + [anon_sym_bit_DASHand] = ACTIONS(920), + [anon_sym_bit_DASHxor] = ACTIONS(920), + [anon_sym_bit_DASHor] = ACTIONS(920), + [anon_sym_and] = ACTIONS(920), + [anon_sym_xor] = ACTIONS(920), + [anon_sym_or] = ACTIONS(920), + [anon_sym_not] = ACTIONS(920), + [anon_sym_DOT] = ACTIONS(3975), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [aux_sym__immediate_decimal_token1] = ACTIONS(926), + [aux_sym__immediate_decimal_token3] = ACTIONS(926), + [aux_sym__immediate_decimal_token4] = ACTIONS(928), + [anon_sym_null] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), + [aux_sym_unquoted_token3] = ACTIONS(3839), + [aux_sym_unquoted_token5] = ACTIONS(3977), + [anon_sym_POUND] = ACTIONS(113), }, - [986] = { - [sym_comment] = STATE(986), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_alias] = ACTIONS(1406), - [anon_sym_let] = ACTIONS(1406), - [anon_sym_let_DASHenv] = ACTIONS(1406), - [anon_sym_mut] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [sym_cmd_identifier] = ACTIONS(1406), - [anon_sym_def] = ACTIONS(1406), - [anon_sym_export_DASHenv] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_use] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1408), - [anon_sym_DOLLAR] = ACTIONS(1408), - [anon_sym_error] = ACTIONS(1406), - [anon_sym_list] = ACTIONS(1406), - [anon_sym_GT] = ACTIONS(1406), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_in] = ACTIONS(1406), - [anon_sym_loop] = ACTIONS(1406), - [anon_sym_make] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_else] = ACTIONS(1406), - [anon_sym_match] = ACTIONS(1406), - [anon_sym_RBRACE] = ACTIONS(1408), - [anon_sym_try] = ACTIONS(1406), - [anon_sym_catch] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_source] = ACTIONS(1406), - [anon_sym_source_DASHenv] = ACTIONS(1406), - [anon_sym_register] = ACTIONS(1406), - [anon_sym_hide] = ACTIONS(1406), - [anon_sym_hide_DASHenv] = ACTIONS(1406), - [anon_sym_overlay] = ACTIONS(1406), - [anon_sym_new] = ACTIONS(1406), - [anon_sym_as] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1406), - [anon_sym_STAR_STAR] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1408), - [anon_sym_SLASH] = ACTIONS(1406), - [anon_sym_mod] = ACTIONS(1406), - [anon_sym_SLASH_SLASH] = ACTIONS(1408), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_bit_DASHshl] = ACTIONS(1406), - [anon_sym_bit_DASHshr] = ACTIONS(1406), - [anon_sym_EQ_EQ] = ACTIONS(1408), - [anon_sym_BANG_EQ] = ACTIONS(1408), - [anon_sym_LT2] = ACTIONS(1406), - [anon_sym_LT_EQ] = ACTIONS(1408), - [anon_sym_GT_EQ] = ACTIONS(1408), - [anon_sym_not_DASHin] = ACTIONS(1406), - [anon_sym_starts_DASHwith] = ACTIONS(1406), - [anon_sym_ends_DASHwith] = ACTIONS(1406), - [anon_sym_EQ_TILDE] = ACTIONS(1408), - [anon_sym_BANG_TILDE] = ACTIONS(1408), - [anon_sym_bit_DASHand] = ACTIONS(1406), - [anon_sym_bit_DASHxor] = ACTIONS(1406), - [anon_sym_bit_DASHor] = ACTIONS(1406), - [anon_sym_and] = ACTIONS(1406), - [anon_sym_xor] = ACTIONS(1406), - [anon_sym_or] = ACTIONS(1406), - [aux_sym__val_number_decimal_token1] = ACTIONS(1406), - [aux_sym__val_number_decimal_token2] = ACTIONS(1408), - [anon_sym_DOT2] = ACTIONS(1408), - [aux_sym__val_number_decimal_token3] = ACTIONS(1408), - [aux_sym__val_number_token1] = ACTIONS(1408), - [aux_sym__val_number_token2] = ACTIONS(1408), - [aux_sym__val_number_token3] = ACTIONS(1408), - [aux_sym__val_number_token4] = ACTIONS(1406), - [aux_sym__val_number_token5] = ACTIONS(1408), - [aux_sym__val_number_token6] = ACTIONS(1406), - [anon_sym_DQUOTE] = ACTIONS(1408), - [sym__str_single_quotes] = ACTIONS(1408), - [sym__str_back_ticks] = ACTIONS(1408), - [aux_sym__record_key_token2] = ACTIONS(1406), - [anon_sym_POUND] = ACTIONS(3), + [1216] = { + [sym_comment] = STATE(1216), + [anon_sym_LBRACK] = ACTIONS(1024), + [anon_sym_COMMA] = ACTIONS(1024), + [anon_sym_RBRACK] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_GT] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym_DOT_DOT] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(3979), + [anon_sym_STAR_STAR] = ACTIONS(1024), + [anon_sym_PLUS_PLUS] = ACTIONS(1024), + [anon_sym_SLASH] = ACTIONS(1024), + [anon_sym_mod] = ACTIONS(1024), + [anon_sym_SLASH_SLASH] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_bit_DASHshl] = ACTIONS(1024), + [anon_sym_bit_DASHshr] = ACTIONS(1024), + [anon_sym_EQ_EQ] = ACTIONS(1024), + [anon_sym_BANG_EQ] = ACTIONS(1024), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ] = ACTIONS(1024), + [anon_sym_GT_EQ] = ACTIONS(1024), + [anon_sym_not_DASHin] = ACTIONS(1024), + [anon_sym_starts_DASHwith] = ACTIONS(1024), + [anon_sym_ends_DASHwith] = ACTIONS(1024), + [anon_sym_EQ_TILDE] = ACTIONS(1024), + [anon_sym_BANG_TILDE] = ACTIONS(1024), + [anon_sym_bit_DASHand] = ACTIONS(1024), + [anon_sym_bit_DASHxor] = ACTIONS(1024), + [anon_sym_bit_DASHor] = ACTIONS(1024), + [anon_sym_and] = ACTIONS(1024), + [anon_sym_xor] = ACTIONS(1024), + [anon_sym_or] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT] = ACTIONS(1024), + [anon_sym_null] = ACTIONS(1024), + [anon_sym_true] = ACTIONS(1024), + [anon_sym_false] = ACTIONS(1024), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1024), + [aux_sym__val_number_token1] = ACTIONS(1024), + [aux_sym__val_number_token2] = ACTIONS(1024), + [aux_sym__val_number_token3] = ACTIONS(1024), + [aux_sym__val_number_token4] = ACTIONS(1024), + [aux_sym__val_number_token5] = ACTIONS(1024), + [aux_sym__val_number_token6] = ACTIONS(1024), + [anon_sym_0b] = ACTIONS(1024), + [anon_sym_0o] = ACTIONS(1024), + [anon_sym_0x] = ACTIONS(1024), + [sym_val_date] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym__str_single_quotes] = ACTIONS(1024), + [sym__str_back_ticks] = ACTIONS(1024), + [sym__entry_separator] = ACTIONS(1026), + [anon_sym_err_GT] = ACTIONS(1024), + [anon_sym_out_GT] = ACTIONS(1024), + [anon_sym_e_GT] = ACTIONS(1024), + [anon_sym_o_GT] = ACTIONS(1024), + [anon_sym_err_PLUSout_GT] = ACTIONS(1024), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1024), + [anon_sym_o_PLUSe_GT] = ACTIONS(1024), + [anon_sym_e_PLUSo_GT] = ACTIONS(1024), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1024), + [anon_sym_POUND] = ACTIONS(113), }, - [987] = { - [sym_comment] = STATE(987), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_list] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_make] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_else] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_catch] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_new] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1370), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1370), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [aux_sym__record_key_token2] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), + [1217] = { + [sym_comment] = STATE(1217), + [anon_sym_LBRACK] = ACTIONS(1024), + [anon_sym_COMMA] = ACTIONS(1024), + [anon_sym_RBRACK] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_GT] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym_DOT_DOT] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(3979), + [anon_sym_STAR_STAR] = ACTIONS(1024), + [anon_sym_PLUS_PLUS] = ACTIONS(1024), + [anon_sym_SLASH] = ACTIONS(1024), + [anon_sym_mod] = ACTIONS(1024), + [anon_sym_SLASH_SLASH] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_bit_DASHshl] = ACTIONS(1024), + [anon_sym_bit_DASHshr] = ACTIONS(1024), + [anon_sym_EQ_EQ] = ACTIONS(1024), + [anon_sym_BANG_EQ] = ACTIONS(1024), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ] = ACTIONS(1024), + [anon_sym_GT_EQ] = ACTIONS(1024), + [anon_sym_not_DASHin] = ACTIONS(1024), + [anon_sym_starts_DASHwith] = ACTIONS(1024), + [anon_sym_ends_DASHwith] = ACTIONS(1024), + [anon_sym_EQ_TILDE] = ACTIONS(1024), + [anon_sym_BANG_TILDE] = ACTIONS(1024), + [anon_sym_bit_DASHand] = ACTIONS(1024), + [anon_sym_bit_DASHxor] = ACTIONS(1024), + [anon_sym_bit_DASHor] = ACTIONS(1024), + [anon_sym_and] = ACTIONS(1024), + [anon_sym_xor] = ACTIONS(1024), + [anon_sym_or] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT] = ACTIONS(1024), + [anon_sym_null] = ACTIONS(1024), + [anon_sym_true] = ACTIONS(1024), + [anon_sym_false] = ACTIONS(1024), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1024), + [aux_sym__val_number_token1] = ACTIONS(1024), + [aux_sym__val_number_token2] = ACTIONS(1024), + [aux_sym__val_number_token3] = ACTIONS(1024), + [aux_sym__val_number_token4] = ACTIONS(1024), + [aux_sym__val_number_token5] = ACTIONS(1024), + [aux_sym__val_number_token6] = ACTIONS(1024), + [anon_sym_0b] = ACTIONS(1024), + [anon_sym_0o] = ACTIONS(1024), + [anon_sym_0x] = ACTIONS(1024), + [sym_val_date] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym__str_single_quotes] = ACTIONS(1024), + [sym__str_back_ticks] = ACTIONS(1024), + [sym__entry_separator] = ACTIONS(1026), + [anon_sym_err_GT] = ACTIONS(1024), + [anon_sym_out_GT] = ACTIONS(1024), + [anon_sym_e_GT] = ACTIONS(1024), + [anon_sym_o_GT] = ACTIONS(1024), + [anon_sym_err_PLUSout_GT] = ACTIONS(1024), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1024), + [anon_sym_o_PLUSe_GT] = ACTIONS(1024), + [anon_sym_e_PLUSo_GT] = ACTIONS(1024), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1024), + [anon_sym_POUND] = ACTIONS(113), }, - [988] = { - [sym_comment] = STATE(988), - [anon_sym_export] = ACTIONS(1410), - [anon_sym_alias] = ACTIONS(1410), - [anon_sym_let] = ACTIONS(1410), - [anon_sym_let_DASHenv] = ACTIONS(1410), - [anon_sym_mut] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [sym_cmd_identifier] = ACTIONS(1410), - [anon_sym_def] = ACTIONS(1410), - [anon_sym_export_DASHenv] = ACTIONS(1410), - [anon_sym_extern] = ACTIONS(1410), - [anon_sym_module] = ACTIONS(1410), - [anon_sym_use] = ACTIONS(1410), - [anon_sym_LPAREN] = ACTIONS(1412), - [anon_sym_DOLLAR] = ACTIONS(1412), - [anon_sym_error] = ACTIONS(1410), - [anon_sym_list] = ACTIONS(1410), - [anon_sym_GT] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_in] = ACTIONS(1410), - [anon_sym_loop] = ACTIONS(1410), - [anon_sym_make] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_else] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_RBRACE] = ACTIONS(1412), - [anon_sym_try] = ACTIONS(1410), - [anon_sym_catch] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_source] = ACTIONS(1410), - [anon_sym_source_DASHenv] = ACTIONS(1410), - [anon_sym_register] = ACTIONS(1410), - [anon_sym_hide] = ACTIONS(1410), - [anon_sym_hide_DASHenv] = ACTIONS(1410), - [anon_sym_overlay] = ACTIONS(1410), - [anon_sym_new] = ACTIONS(1410), - [anon_sym_as] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_SLASH] = ACTIONS(1410), - [anon_sym_mod] = ACTIONS(1410), - [anon_sym_SLASH_SLASH] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_bit_DASHshl] = ACTIONS(1410), - [anon_sym_bit_DASHshr] = ACTIONS(1410), - [anon_sym_EQ_EQ] = ACTIONS(1412), - [anon_sym_BANG_EQ] = ACTIONS(1412), - [anon_sym_LT2] = ACTIONS(1410), - [anon_sym_LT_EQ] = ACTIONS(1412), - [anon_sym_GT_EQ] = ACTIONS(1412), - [anon_sym_not_DASHin] = ACTIONS(1410), - [anon_sym_starts_DASHwith] = ACTIONS(1410), - [anon_sym_ends_DASHwith] = ACTIONS(1410), - [anon_sym_EQ_TILDE] = ACTIONS(1412), - [anon_sym_BANG_TILDE] = ACTIONS(1412), - [anon_sym_bit_DASHand] = ACTIONS(1410), - [anon_sym_bit_DASHxor] = ACTIONS(1410), - [anon_sym_bit_DASHor] = ACTIONS(1410), - [anon_sym_and] = ACTIONS(1410), - [anon_sym_xor] = ACTIONS(1410), - [anon_sym_or] = ACTIONS(1410), - [aux_sym__val_number_decimal_token1] = ACTIONS(1410), - [aux_sym__val_number_decimal_token2] = ACTIONS(1412), - [anon_sym_DOT2] = ACTIONS(1412), - [aux_sym__val_number_decimal_token3] = ACTIONS(1412), - [aux_sym__val_number_token1] = ACTIONS(1412), - [aux_sym__val_number_token2] = ACTIONS(1412), - [aux_sym__val_number_token3] = ACTIONS(1412), - [aux_sym__val_number_token4] = ACTIONS(1410), - [aux_sym__val_number_token5] = ACTIONS(1412), - [aux_sym__val_number_token6] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1412), - [sym__str_single_quotes] = ACTIONS(1412), - [sym__str_back_ticks] = ACTIONS(1412), - [aux_sym__record_key_token2] = ACTIONS(1410), + [1218] = { + [sym__expression] = STATE(10405), + [sym_expr_unary] = STATE(5743), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5743), + [sym__expr_binary_expression] = STATE(6383), + [sym_expr_parenthesized] = STATE(5960), + [sym_val_range] = STATE(6728), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5743), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6234), + [sym_val_variable] = STATE(5903), + [sym__var] = STATE(3929), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4844), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(10406), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1218), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(3100), + [anon_sym_DOLLAR] = ACTIONS(3102), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(3663), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3667), + [anon_sym_DOT_DOT_LT] = ACTIONS(3667), + [anon_sym_null] = ACTIONS(3669), + [anon_sym_true] = ACTIONS(3671), + [anon_sym_false] = ACTIONS(3671), + [aux_sym__val_number_decimal_token1] = ACTIONS(3673), + [aux_sym__val_number_decimal_token2] = ACTIONS(3675), + [anon_sym_DOT2] = ACTIONS(3677), + [aux_sym__val_number_decimal_token3] = ACTIONS(3679), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(3681), + [aux_sym__val_number_token5] = ACTIONS(3681), + [aux_sym__val_number_token6] = ACTIONS(3681), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(3683), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), [anon_sym_POUND] = ACTIONS(3), }, - [989] = { - [sym_comment] = STATE(989), - [anon_sym_export] = ACTIONS(1286), - [anon_sym_alias] = ACTIONS(1286), - [anon_sym_let] = ACTIONS(1286), - [anon_sym_let_DASHenv] = ACTIONS(1286), - [anon_sym_mut] = ACTIONS(1286), - [anon_sym_const] = ACTIONS(1286), - [sym_cmd_identifier] = ACTIONS(1286), - [anon_sym_def] = ACTIONS(1286), - [anon_sym_export_DASHenv] = ACTIONS(1286), - [anon_sym_extern] = ACTIONS(1286), - [anon_sym_module] = ACTIONS(1286), - [anon_sym_use] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(1288), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_error] = ACTIONS(1286), - [anon_sym_list] = ACTIONS(1286), - [anon_sym_GT] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1286), - [anon_sym_break] = ACTIONS(1286), - [anon_sym_continue] = ACTIONS(1286), - [anon_sym_for] = ACTIONS(1286), - [anon_sym_in] = ACTIONS(1286), - [anon_sym_loop] = ACTIONS(1286), - [anon_sym_make] = ACTIONS(1286), - [anon_sym_while] = ACTIONS(1286), - [anon_sym_do] = ACTIONS(1286), - [anon_sym_if] = ACTIONS(1286), - [anon_sym_else] = ACTIONS(1286), - [anon_sym_match] = ACTIONS(1286), - [anon_sym_RBRACE] = ACTIONS(1288), - [anon_sym_try] = ACTIONS(1286), - [anon_sym_catch] = ACTIONS(1286), - [anon_sym_return] = ACTIONS(1286), - [anon_sym_source] = ACTIONS(1286), - [anon_sym_source_DASHenv] = ACTIONS(1286), - [anon_sym_register] = ACTIONS(1286), - [anon_sym_hide] = ACTIONS(1286), - [anon_sym_hide_DASHenv] = ACTIONS(1286), - [anon_sym_overlay] = ACTIONS(1286), - [anon_sym_new] = ACTIONS(1286), - [anon_sym_as] = ACTIONS(1286), - [anon_sym_STAR] = ACTIONS(1286), - [anon_sym_STAR_STAR] = ACTIONS(1288), - [anon_sym_PLUS_PLUS] = ACTIONS(1288), - [anon_sym_SLASH] = ACTIONS(1286), - [anon_sym_mod] = ACTIONS(1286), - [anon_sym_SLASH_SLASH] = ACTIONS(1288), - [anon_sym_PLUS] = ACTIONS(1286), - [anon_sym_bit_DASHshl] = ACTIONS(1286), - [anon_sym_bit_DASHshr] = ACTIONS(1286), - [anon_sym_EQ_EQ] = ACTIONS(1288), - [anon_sym_BANG_EQ] = ACTIONS(1288), - [anon_sym_LT2] = ACTIONS(1286), - [anon_sym_LT_EQ] = ACTIONS(1288), - [anon_sym_GT_EQ] = ACTIONS(1288), - [anon_sym_not_DASHin] = ACTIONS(1286), - [anon_sym_starts_DASHwith] = ACTIONS(1286), - [anon_sym_ends_DASHwith] = ACTIONS(1286), - [anon_sym_EQ_TILDE] = ACTIONS(1288), - [anon_sym_BANG_TILDE] = ACTIONS(1288), - [anon_sym_bit_DASHand] = ACTIONS(1286), - [anon_sym_bit_DASHxor] = ACTIONS(1286), - [anon_sym_bit_DASHor] = ACTIONS(1286), - [anon_sym_and] = ACTIONS(1286), - [anon_sym_xor] = ACTIONS(1286), - [anon_sym_or] = ACTIONS(1286), - [aux_sym__val_number_decimal_token1] = ACTIONS(1286), - [aux_sym__val_number_decimal_token2] = ACTIONS(1288), - [anon_sym_DOT2] = ACTIONS(1288), - [aux_sym__val_number_decimal_token3] = 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(1286), - [aux_sym__val_number_token5] = ACTIONS(1288), - [aux_sym__val_number_token6] = ACTIONS(1286), - [anon_sym_DQUOTE] = ACTIONS(1288), - [sym__str_single_quotes] = ACTIONS(1288), - [sym__str_back_ticks] = ACTIONS(1288), - [aux_sym__record_key_token2] = ACTIONS(1286), - [anon_sym_POUND] = ACTIONS(3), + [1219] = { + [sym_comment] = STATE(1219), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_alias] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_let_DASHenv] = ACTIONS(2229), + [anon_sym_mut] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2229), + [sym_cmd_identifier] = ACTIONS(2229), + [anon_sym_LF] = ACTIONS(2231), + [anon_sym_def] = ACTIONS(2229), + [anon_sym_export_DASHenv] = ACTIONS(2229), + [anon_sym_extern] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_RPAREN] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2229), + [anon_sym_error] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_loop] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_RBRACE] = ACTIONS(2229), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_source] = ACTIONS(2229), + [anon_sym_source_DASHenv] = ACTIONS(2229), + [anon_sym_register] = ACTIONS(2229), + [anon_sym_hide] = ACTIONS(2229), + [anon_sym_hide_DASHenv] = ACTIONS(2229), + [anon_sym_overlay] = ACTIONS(2229), + [anon_sym_as] = ACTIONS(2229), + [anon_sym_where] = ACTIONS(2229), + [anon_sym_not] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2229), + [anon_sym_DOT_DOT_LT] = ACTIONS(2229), + [aux_sym__immediate_decimal_token1] = ACTIONS(3981), + [aux_sym__immediate_decimal_token2] = ACTIONS(3983), + [anon_sym_null] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [aux_sym__val_number_decimal_token1] = ACTIONS(2229), + [aux_sym__val_number_decimal_token2] = ACTIONS(2229), + [anon_sym_DOT2] = ACTIONS(2229), + [aux_sym__val_number_decimal_token3] = ACTIONS(2229), + [aux_sym__val_number_token1] = ACTIONS(2229), + [aux_sym__val_number_token2] = ACTIONS(2229), + [aux_sym__val_number_token3] = ACTIONS(2229), + [aux_sym__val_number_token4] = ACTIONS(2229), + [aux_sym__val_number_token5] = ACTIONS(2229), + [aux_sym__val_number_token6] = ACTIONS(2229), + [anon_sym_0b] = ACTIONS(2229), + [anon_sym_0o] = ACTIONS(2229), + [anon_sym_0x] = ACTIONS(2229), + [sym_val_date] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2229), + [anon_sym_CARET] = ACTIONS(2229), + [anon_sym_POUND] = ACTIONS(113), }, - [990] = { - [sym_comment] = STATE(990), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_list] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_make] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_else] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_catch] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_new] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1370), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1370), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [aux_sym__record_key_token2] = ACTIONS(1368), + [1220] = { + [sym__match_pattern_expression] = STATE(3963), + [sym__match_pattern_value] = STATE(4065), + [sym__match_pattern_list] = STATE(3899), + [sym__match_pattern_rest] = STATE(10573), + [sym__match_pattern_record] = STATE(4002), + [sym__expr_unary_minus] = STATE(4029), + [sym_expr_parenthesized] = STATE(3478), + [sym_val_range] = STATE(4065), + [sym__val_range] = STATE(10108), + [sym_val_nothing] = STATE(3928), + [sym_val_bool] = STATE(3848), + [sym_val_variable] = STATE(3481), + [sym__var] = STATE(3303), + [sym_val_number] = STATE(3928), + [sym__val_number_decimal] = STATE(3274), + [sym__val_number] = STATE(4008), + [sym_val_duration] = STATE(3928), + [sym_val_filesize] = STATE(3928), + [sym_val_binary] = STATE(3928), + [sym_val_string] = STATE(3928), + [sym__str_double_quotes] = STATE(3913), + [sym_val_list] = STATE(10665), + [sym__list_item_starts_with_sign] = STATE(3915), + [sym_val_table] = STATE(3928), + [sym_short_flag] = STATE(3915), + [sym_long_flag] = STATE(3915), + [sym_long_flag_equals_value] = STATE(4030), + [sym__unquoted_in_list] = STATE(3915), + [sym__unquoted_anonymous_prefix] = STATE(10784), + [sym_comment] = STATE(1220), + [aux_sym__match_pattern_list_repeat1] = STATE(1287), + [anon_sym_LBRACK] = ACTIONS(3843), + [anon_sym_RBRACK] = ACTIONS(3845), + [anon_sym_LPAREN] = ACTIONS(3258), + [anon_sym_DOLLAR] = ACTIONS(3847), + [anon_sym_DASH_DASH] = ACTIONS(3262), + [anon_sym_DASH] = ACTIONS(3849), + [anon_sym_LBRACE] = ACTIONS(3851), + [anon_sym_DOT_DOT] = ACTIONS(3853), + [anon_sym_PLUS] = ACTIONS(3855), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3857), + [anon_sym_DOT_DOT_LT] = ACTIONS(3857), + [anon_sym_null] = ACTIONS(3859), + [anon_sym_true] = ACTIONS(3861), + [anon_sym_false] = ACTIONS(3861), + [aux_sym__val_number_decimal_token1] = ACTIONS(3863), + [aux_sym__val_number_decimal_token2] = ACTIONS(3865), + [anon_sym_DOT2] = ACTIONS(3867), + [aux_sym__val_number_decimal_token3] = ACTIONS(3869), + [aux_sym__val_number_token1] = ACTIONS(3284), + [aux_sym__val_number_token2] = ACTIONS(3284), + [aux_sym__val_number_token3] = ACTIONS(3284), + [aux_sym__val_number_token4] = ACTIONS(3871), + [aux_sym__val_number_token5] = ACTIONS(3871), + [aux_sym__val_number_token6] = ACTIONS(3871), + [anon_sym_0b] = ACTIONS(3288), + [anon_sym_0o] = ACTIONS(3290), + [anon_sym_0x] = ACTIONS(3290), + [sym_val_date] = ACTIONS(3873), + [anon_sym_DQUOTE] = ACTIONS(3294), + [sym__str_single_quotes] = ACTIONS(3296), + [sym__str_back_ticks] = ACTIONS(3296), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3875), [anon_sym_POUND] = ACTIONS(3), }, - [991] = { - [sym_comment] = STATE(991), - [anon_sym_export] = ACTIONS(1243), - [anon_sym_alias] = ACTIONS(1243), - [anon_sym_let] = ACTIONS(1243), - [anon_sym_let_DASHenv] = ACTIONS(1243), - [anon_sym_mut] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [sym_cmd_identifier] = ACTIONS(1243), - [anon_sym_def] = ACTIONS(1243), - [anon_sym_export_DASHenv] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1243), - [anon_sym_module] = ACTIONS(1243), - [anon_sym_use] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1290), - [anon_sym_DOLLAR] = ACTIONS(1290), - [anon_sym_error] = ACTIONS(1243), - [anon_sym_list] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_in] = ACTIONS(1243), - [anon_sym_loop] = ACTIONS(1243), - [anon_sym_make] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_else] = ACTIONS(1243), - [anon_sym_match] = ACTIONS(1243), - [anon_sym_RBRACE] = ACTIONS(1290), - [anon_sym_try] = ACTIONS(1243), - [anon_sym_catch] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_source] = ACTIONS(1243), - [anon_sym_source_DASHenv] = ACTIONS(1243), - [anon_sym_register] = ACTIONS(1243), - [anon_sym_hide] = ACTIONS(1243), - [anon_sym_hide_DASHenv] = ACTIONS(1243), - [anon_sym_overlay] = ACTIONS(1243), - [anon_sym_new] = ACTIONS(1243), - [anon_sym_as] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1243), - [anon_sym_STAR_STAR] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1290), - [anon_sym_SLASH] = ACTIONS(1243), - [anon_sym_mod] = ACTIONS(1243), - [anon_sym_SLASH_SLASH] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1243), - [anon_sym_bit_DASHshl] = ACTIONS(1243), - [anon_sym_bit_DASHshr] = ACTIONS(1243), - [anon_sym_EQ_EQ] = ACTIONS(1290), - [anon_sym_BANG_EQ] = ACTIONS(1290), - [anon_sym_LT2] = ACTIONS(1243), - [anon_sym_LT_EQ] = ACTIONS(1290), - [anon_sym_GT_EQ] = ACTIONS(1290), - [anon_sym_not_DASHin] = ACTIONS(1243), - [anon_sym_starts_DASHwith] = ACTIONS(1243), - [anon_sym_ends_DASHwith] = ACTIONS(1243), - [anon_sym_EQ_TILDE] = ACTIONS(1290), - [anon_sym_BANG_TILDE] = ACTIONS(1290), - [anon_sym_bit_DASHand] = ACTIONS(1243), - [anon_sym_bit_DASHxor] = ACTIONS(1243), - [anon_sym_bit_DASHor] = ACTIONS(1243), - [anon_sym_and] = ACTIONS(1243), - [anon_sym_xor] = ACTIONS(1243), - [anon_sym_or] = ACTIONS(1243), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_decimal_token2] = ACTIONS(1290), - [anon_sym_DOT2] = ACTIONS(1290), - [aux_sym__val_number_decimal_token3] = ACTIONS(1290), - [aux_sym__val_number_token1] = ACTIONS(1290), - [aux_sym__val_number_token2] = ACTIONS(1290), - [aux_sym__val_number_token3] = ACTIONS(1290), - [aux_sym__val_number_token4] = ACTIONS(1243), - [aux_sym__val_number_token5] = ACTIONS(1290), - [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1290), - [sym__str_single_quotes] = ACTIONS(1290), - [sym__str_back_ticks] = ACTIONS(1290), - [aux_sym__record_key_token2] = ACTIONS(1243), - [anon_sym_POUND] = ACTIONS(3), + [1221] = { + [sym_comment] = STATE(1221), + [ts_builtin_sym_end] = ACTIONS(1070), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_alias] = ACTIONS(1068), + [anon_sym_let] = ACTIONS(1068), + [anon_sym_let_DASHenv] = ACTIONS(1068), + [anon_sym_mut] = ACTIONS(1068), + [anon_sym_const] = ACTIONS(1068), + [anon_sym_SEMI] = ACTIONS(1068), + [sym_cmd_identifier] = ACTIONS(1068), + [anon_sym_LF] = ACTIONS(1070), + [anon_sym_def] = ACTIONS(1068), + [anon_sym_export_DASHenv] = ACTIONS(1068), + [anon_sym_extern] = ACTIONS(1068), + [anon_sym_module] = ACTIONS(1068), + [anon_sym_use] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(1068), + [anon_sym_LPAREN] = ACTIONS(1068), + [anon_sym_DOLLAR] = ACTIONS(1068), + [anon_sym_error] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1068), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_break] = ACTIONS(1068), + [anon_sym_continue] = ACTIONS(1068), + [anon_sym_for] = ACTIONS(1068), + [anon_sym_loop] = ACTIONS(1068), + [anon_sym_while] = ACTIONS(1068), + [anon_sym_do] = ACTIONS(1068), + [anon_sym_if] = ACTIONS(1068), + [anon_sym_match] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_DOT_DOT] = ACTIONS(1068), + [anon_sym_try] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1068), + [anon_sym_source] = ACTIONS(1068), + [anon_sym_source_DASHenv] = ACTIONS(1068), + [anon_sym_register] = ACTIONS(1068), + [anon_sym_hide] = ACTIONS(1068), + [anon_sym_hide_DASHenv] = ACTIONS(1068), + [anon_sym_overlay] = ACTIONS(1068), + [anon_sym_as] = ACTIONS(1068), + [anon_sym_where] = ACTIONS(1068), + [anon_sym_not] = ACTIONS(1068), + [anon_sym_DOT_DOT2] = ACTIONS(1068), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1068), + [anon_sym_DOT_DOT_LT] = ACTIONS(1068), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1070), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1070), + [anon_sym_null] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1068), + [anon_sym_false] = ACTIONS(1068), + [aux_sym__val_number_decimal_token1] = ACTIONS(1068), + [aux_sym__val_number_decimal_token2] = ACTIONS(1068), + [anon_sym_DOT2] = ACTIONS(1068), + [aux_sym__val_number_decimal_token3] = ACTIONS(1068), + [aux_sym__val_number_token1] = ACTIONS(1068), + [aux_sym__val_number_token2] = ACTIONS(1068), + [aux_sym__val_number_token3] = ACTIONS(1068), + [aux_sym__val_number_token4] = ACTIONS(1068), + [aux_sym__val_number_token5] = ACTIONS(1068), + [aux_sym__val_number_token6] = ACTIONS(1068), + [anon_sym_0b] = ACTIONS(1068), + [anon_sym_0o] = ACTIONS(1068), + [anon_sym_0x] = ACTIONS(1068), + [sym_val_date] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(1068), + [sym__str_single_quotes] = ACTIONS(1068), + [sym__str_back_ticks] = ACTIONS(1068), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1068), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1068), + [anon_sym_CARET] = ACTIONS(1068), + [anon_sym_POUND] = ACTIONS(113), }, - [992] = { - [sym_comment] = STATE(992), - [anon_sym_export] = ACTIONS(1414), - [anon_sym_alias] = ACTIONS(1414), - [anon_sym_let] = ACTIONS(1414), - [anon_sym_let_DASHenv] = ACTIONS(1414), - [anon_sym_mut] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [sym_cmd_identifier] = ACTIONS(1414), - [anon_sym_def] = ACTIONS(1414), - [anon_sym_export_DASHenv] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym_module] = ACTIONS(1414), - [anon_sym_use] = ACTIONS(1414), - [anon_sym_LPAREN] = ACTIONS(1416), - [anon_sym_DOLLAR] = ACTIONS(1416), - [anon_sym_error] = ACTIONS(1414), - [anon_sym_list] = ACTIONS(1414), - [anon_sym_GT] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_in] = ACTIONS(1414), - [anon_sym_loop] = ACTIONS(1414), - [anon_sym_make] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_else] = ACTIONS(1414), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_RBRACE] = ACTIONS(1416), - [anon_sym_try] = ACTIONS(1414), - [anon_sym_catch] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_source] = ACTIONS(1414), - [anon_sym_source_DASHenv] = ACTIONS(1414), - [anon_sym_register] = ACTIONS(1414), - [anon_sym_hide] = ACTIONS(1414), - [anon_sym_hide_DASHenv] = ACTIONS(1414), - [anon_sym_overlay] = ACTIONS(1414), - [anon_sym_new] = ACTIONS(1414), - [anon_sym_as] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_STAR_STAR] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(1414), - [anon_sym_mod] = ACTIONS(1414), - [anon_sym_SLASH_SLASH] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_bit_DASHshl] = ACTIONS(1414), - [anon_sym_bit_DASHshr] = ACTIONS(1414), - [anon_sym_EQ_EQ] = ACTIONS(1416), - [anon_sym_BANG_EQ] = ACTIONS(1416), - [anon_sym_LT2] = ACTIONS(1414), - [anon_sym_LT_EQ] = ACTIONS(1416), - [anon_sym_GT_EQ] = ACTIONS(1416), - [anon_sym_not_DASHin] = ACTIONS(1414), - [anon_sym_starts_DASHwith] = ACTIONS(1414), - [anon_sym_ends_DASHwith] = ACTIONS(1414), - [anon_sym_EQ_TILDE] = ACTIONS(1416), - [anon_sym_BANG_TILDE] = ACTIONS(1416), - [anon_sym_bit_DASHand] = ACTIONS(1414), - [anon_sym_bit_DASHxor] = ACTIONS(1414), - [anon_sym_bit_DASHor] = ACTIONS(1414), - [anon_sym_and] = ACTIONS(1414), - [anon_sym_xor] = ACTIONS(1414), - [anon_sym_or] = ACTIONS(1414), - [aux_sym__val_number_decimal_token1] = ACTIONS(1414), - [aux_sym__val_number_decimal_token2] = ACTIONS(1416), - [anon_sym_DOT2] = ACTIONS(1416), - [aux_sym__val_number_decimal_token3] = ACTIONS(1416), - [aux_sym__val_number_token1] = ACTIONS(1416), - [aux_sym__val_number_token2] = ACTIONS(1416), - [aux_sym__val_number_token3] = ACTIONS(1416), - [aux_sym__val_number_token4] = ACTIONS(1414), - [aux_sym__val_number_token5] = ACTIONS(1416), - [aux_sym__val_number_token6] = ACTIONS(1414), - [anon_sym_DQUOTE] = ACTIONS(1416), - [sym__str_single_quotes] = ACTIONS(1416), - [sym__str_back_ticks] = ACTIONS(1416), - [aux_sym__record_key_token2] = ACTIONS(1414), - [anon_sym_POUND] = ACTIONS(3), + [1222] = { + [sym__immediate_decimal] = STATE(10080), + [sym_comment] = STATE(1222), + [anon_sym_SEMI] = ACTIONS(920), + [anon_sym_LF] = ACTIONS(922), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_RPAREN] = ACTIONS(920), + [anon_sym_PIPE] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_in] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_RBRACE] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_STAR_STAR] = ACTIONS(920), + [anon_sym_PLUS_PLUS] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_mod] = ACTIONS(920), + [anon_sym_SLASH_SLASH] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_bit_DASHshl] = ACTIONS(920), + [anon_sym_bit_DASHshr] = ACTIONS(920), + [anon_sym_EQ_EQ] = ACTIONS(920), + [anon_sym_BANG_EQ] = ACTIONS(920), + [anon_sym_LT2] = ACTIONS(920), + [anon_sym_LT_EQ] = ACTIONS(920), + [anon_sym_GT_EQ] = ACTIONS(920), + [anon_sym_not_DASHin] = ACTIONS(920), + [anon_sym_starts_DASHwith] = ACTIONS(920), + [anon_sym_ends_DASHwith] = ACTIONS(920), + [anon_sym_EQ_TILDE] = ACTIONS(920), + [anon_sym_BANG_TILDE] = ACTIONS(920), + [anon_sym_bit_DASHand] = ACTIONS(920), + [anon_sym_bit_DASHxor] = ACTIONS(920), + [anon_sym_bit_DASHor] = ACTIONS(920), + [anon_sym_and] = ACTIONS(920), + [anon_sym_xor] = ACTIONS(920), + [anon_sym_or] = ACTIONS(920), + [anon_sym_not] = ACTIONS(920), + [anon_sym_DOT] = ACTIONS(967), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [aux_sym__immediate_decimal_token1] = ACTIONS(969), + [aux_sym__immediate_decimal_token3] = ACTIONS(969), + [aux_sym__immediate_decimal_token4] = ACTIONS(971), + [anon_sym_null] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), + [aux_sym_unquoted_token4] = ACTIONS(3638), + [anon_sym_POUND] = ACTIONS(113), }, - [993] = { - [sym_comment] = STATE(993), - [anon_sym_export] = ACTIONS(1302), - [anon_sym_alias] = ACTIONS(1302), - [anon_sym_let] = ACTIONS(1302), - [anon_sym_let_DASHenv] = ACTIONS(1302), - [anon_sym_mut] = ACTIONS(1302), - [anon_sym_const] = ACTIONS(1302), - [sym_cmd_identifier] = ACTIONS(1302), - [anon_sym_def] = ACTIONS(1302), - [anon_sym_export_DASHenv] = ACTIONS(1302), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_module] = ACTIONS(1302), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1304), - [anon_sym_DOLLAR] = ACTIONS(1304), - [anon_sym_error] = ACTIONS(1302), - [anon_sym_list] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_break] = ACTIONS(1302), - [anon_sym_continue] = ACTIONS(1302), - [anon_sym_for] = ACTIONS(1302), - [anon_sym_in] = ACTIONS(1302), - [anon_sym_loop] = ACTIONS(1302), - [anon_sym_make] = ACTIONS(1302), - [anon_sym_while] = ACTIONS(1302), - [anon_sym_do] = ACTIONS(1302), - [anon_sym_if] = ACTIONS(1302), - [anon_sym_else] = ACTIONS(1302), - [anon_sym_match] = ACTIONS(1302), - [anon_sym_RBRACE] = ACTIONS(1304), - [anon_sym_try] = ACTIONS(1302), - [anon_sym_catch] = ACTIONS(1302), - [anon_sym_return] = ACTIONS(1302), - [anon_sym_source] = ACTIONS(1302), - [anon_sym_source_DASHenv] = ACTIONS(1302), - [anon_sym_register] = ACTIONS(1302), - [anon_sym_hide] = ACTIONS(1302), - [anon_sym_hide_DASHenv] = ACTIONS(1302), - [anon_sym_overlay] = ACTIONS(1302), - [anon_sym_new] = ACTIONS(1302), - [anon_sym_as] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_STAR_STAR] = ACTIONS(1304), - [anon_sym_PLUS_PLUS] = ACTIONS(1304), - [anon_sym_SLASH] = ACTIONS(1302), - [anon_sym_mod] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_bit_DASHshl] = ACTIONS(1302), - [anon_sym_bit_DASHshr] = ACTIONS(1302), - [anon_sym_EQ_EQ] = ACTIONS(1304), - [anon_sym_BANG_EQ] = ACTIONS(1304), - [anon_sym_LT2] = ACTIONS(1302), - [anon_sym_LT_EQ] = ACTIONS(1304), - [anon_sym_GT_EQ] = ACTIONS(1304), - [anon_sym_not_DASHin] = ACTIONS(1302), - [anon_sym_starts_DASHwith] = ACTIONS(1302), - [anon_sym_ends_DASHwith] = ACTIONS(1302), - [anon_sym_EQ_TILDE] = ACTIONS(1304), - [anon_sym_BANG_TILDE] = ACTIONS(1304), - [anon_sym_bit_DASHand] = ACTIONS(1302), - [anon_sym_bit_DASHxor] = ACTIONS(1302), - [anon_sym_bit_DASHor] = ACTIONS(1302), - [anon_sym_and] = ACTIONS(1302), - [anon_sym_xor] = ACTIONS(1302), - [anon_sym_or] = ACTIONS(1302), - [aux_sym__val_number_decimal_token1] = ACTIONS(1302), - [aux_sym__val_number_decimal_token2] = ACTIONS(1304), - [anon_sym_DOT2] = ACTIONS(1304), - [aux_sym__val_number_decimal_token3] = ACTIONS(1304), - [aux_sym__val_number_token1] = ACTIONS(1304), - [aux_sym__val_number_token2] = ACTIONS(1304), - [aux_sym__val_number_token3] = ACTIONS(1304), - [aux_sym__val_number_token4] = ACTIONS(1302), - [aux_sym__val_number_token5] = ACTIONS(1304), - [aux_sym__val_number_token6] = ACTIONS(1302), - [anon_sym_DQUOTE] = ACTIONS(1304), - [sym__str_single_quotes] = ACTIONS(1304), - [sym__str_back_ticks] = ACTIONS(1304), - [aux_sym__record_key_token2] = ACTIONS(1302), - [anon_sym_POUND] = ACTIONS(3), + [1223] = { + [sym_comment] = STATE(1223), + [anon_sym_LBRACK] = ACTIONS(1033), + [anon_sym_COMMA] = ACTIONS(1033), + [anon_sym_RBRACK] = ACTIONS(1033), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1033), + [anon_sym_in] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_DOT_DOT] = ACTIONS(1033), + [anon_sym_STAR] = ACTIONS(1033), + [anon_sym_QMARK2] = ACTIONS(1033), + [anon_sym_STAR_STAR] = ACTIONS(1033), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_SLASH] = ACTIONS(1033), + [anon_sym_mod] = ACTIONS(1033), + [anon_sym_SLASH_SLASH] = ACTIONS(1033), + [anon_sym_PLUS] = ACTIONS(1033), + [anon_sym_bit_DASHshl] = ACTIONS(1033), + [anon_sym_bit_DASHshr] = ACTIONS(1033), + [anon_sym_EQ_EQ] = ACTIONS(1033), + [anon_sym_BANG_EQ] = ACTIONS(1033), + [anon_sym_LT2] = ACTIONS(1033), + [anon_sym_LT_EQ] = ACTIONS(1033), + [anon_sym_GT_EQ] = ACTIONS(1033), + [anon_sym_not_DASHin] = ACTIONS(1033), + [anon_sym_starts_DASHwith] = ACTIONS(1033), + [anon_sym_ends_DASHwith] = ACTIONS(1033), + [anon_sym_EQ_TILDE] = ACTIONS(1033), + [anon_sym_BANG_TILDE] = ACTIONS(1033), + [anon_sym_bit_DASHand] = ACTIONS(1033), + [anon_sym_bit_DASHxor] = ACTIONS(1033), + [anon_sym_bit_DASHor] = ACTIONS(1033), + [anon_sym_and] = ACTIONS(1033), + [anon_sym_xor] = ACTIONS(1033), + [anon_sym_or] = ACTIONS(1033), + [anon_sym_DOT] = ACTIONS(1033), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1033), + [anon_sym_DOT_DOT_LT] = ACTIONS(1033), + [anon_sym_null] = ACTIONS(1033), + [anon_sym_true] = ACTIONS(1033), + [anon_sym_false] = ACTIONS(1033), + [aux_sym__val_number_decimal_token1] = ACTIONS(1033), + [aux_sym__val_number_decimal_token2] = ACTIONS(1033), + [anon_sym_DOT2] = ACTIONS(1033), + [aux_sym__val_number_decimal_token3] = ACTIONS(1033), + [aux_sym__val_number_token1] = ACTIONS(1033), + [aux_sym__val_number_token2] = ACTIONS(1033), + [aux_sym__val_number_token3] = ACTIONS(1033), + [aux_sym__val_number_token4] = ACTIONS(1033), + [aux_sym__val_number_token5] = ACTIONS(1033), + [aux_sym__val_number_token6] = ACTIONS(1033), + [anon_sym_0b] = ACTIONS(1033), + [anon_sym_0o] = ACTIONS(1033), + [anon_sym_0x] = ACTIONS(1033), + [sym_val_date] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [sym__str_single_quotes] = ACTIONS(1033), + [sym__str_back_ticks] = ACTIONS(1033), + [sym__entry_separator] = ACTIONS(1035), + [anon_sym_err_GT] = ACTIONS(1033), + [anon_sym_out_GT] = ACTIONS(1033), + [anon_sym_e_GT] = ACTIONS(1033), + [anon_sym_o_GT] = ACTIONS(1033), + [anon_sym_err_PLUSout_GT] = ACTIONS(1033), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1033), + [anon_sym_o_PLUSe_GT] = ACTIONS(1033), + [anon_sym_e_PLUSo_GT] = ACTIONS(1033), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1033), + [anon_sym_POUND] = ACTIONS(113), }, - [994] = { - [sym_comment] = STATE(994), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_list] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_make] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_else] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_catch] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_new] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1370), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1370), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [aux_sym__record_key_token2] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), + [1224] = { + [sym_comment] = STATE(1224), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_alias] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_let_DASHenv] = ACTIONS(2229), + [anon_sym_mut] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2229), + [sym_cmd_identifier] = ACTIONS(2229), + [anon_sym_LF] = ACTIONS(2231), + [anon_sym_def] = ACTIONS(2229), + [anon_sym_export_DASHenv] = ACTIONS(2229), + [anon_sym_extern] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_RPAREN] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2229), + [anon_sym_error] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_loop] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_RBRACE] = ACTIONS(2229), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_source] = ACTIONS(2229), + [anon_sym_source_DASHenv] = ACTIONS(2229), + [anon_sym_register] = ACTIONS(2229), + [anon_sym_hide] = ACTIONS(2229), + [anon_sym_hide_DASHenv] = ACTIONS(2229), + [anon_sym_overlay] = ACTIONS(2229), + [anon_sym_as] = ACTIONS(2229), + [anon_sym_where] = ACTIONS(2229), + [anon_sym_not] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2229), + [anon_sym_DOT_DOT_LT] = ACTIONS(2229), + [anon_sym_null] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [aux_sym__val_number_decimal_token1] = ACTIONS(2229), + [aux_sym__val_number_decimal_token2] = ACTIONS(2229), + [anon_sym_DOT2] = ACTIONS(2229), + [aux_sym__val_number_decimal_token3] = ACTIONS(2229), + [aux_sym__val_number_token1] = ACTIONS(2229), + [aux_sym__val_number_token2] = ACTIONS(2229), + [aux_sym__val_number_token3] = ACTIONS(2229), + [aux_sym__val_number_token4] = ACTIONS(2229), + [aux_sym__val_number_token5] = ACTIONS(2229), + [aux_sym__val_number_token6] = ACTIONS(2229), + [anon_sym_0b] = ACTIONS(2229), + [anon_sym_0o] = ACTIONS(2229), + [anon_sym_0x] = ACTIONS(2229), + [sym_val_date] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2229), + [anon_sym_CARET] = ACTIONS(2229), + [aux_sym_unquoted_token2] = ACTIONS(2229), + [anon_sym_POUND] = ACTIONS(113), }, - [995] = { - [sym_comment] = STATE(995), - [anon_sym_export] = ACTIONS(1418), - [anon_sym_alias] = ACTIONS(1418), - [anon_sym_let] = ACTIONS(1418), - [anon_sym_let_DASHenv] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [sym_cmd_identifier] = ACTIONS(1418), - [anon_sym_def] = ACTIONS(1418), - [anon_sym_export_DASHenv] = ACTIONS(1418), - [anon_sym_extern] = ACTIONS(1418), - [anon_sym_module] = ACTIONS(1418), - [anon_sym_use] = ACTIONS(1418), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_DOLLAR] = ACTIONS(1420), - [anon_sym_error] = ACTIONS(1418), - [anon_sym_list] = ACTIONS(1418), - [anon_sym_GT] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_in] = ACTIONS(1418), - [anon_sym_loop] = ACTIONS(1418), - [anon_sym_make] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_else] = ACTIONS(1418), - [anon_sym_match] = ACTIONS(1418), - [anon_sym_RBRACE] = ACTIONS(1420), - [anon_sym_try] = ACTIONS(1418), - [anon_sym_catch] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_source] = ACTIONS(1418), - [anon_sym_source_DASHenv] = ACTIONS(1418), - [anon_sym_register] = ACTIONS(1418), - [anon_sym_hide] = ACTIONS(1418), - [anon_sym_hide_DASHenv] = ACTIONS(1418), - [anon_sym_overlay] = ACTIONS(1418), - [anon_sym_new] = ACTIONS(1418), - [anon_sym_as] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_STAR_STAR] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_SLASH] = ACTIONS(1418), - [anon_sym_mod] = ACTIONS(1418), - [anon_sym_SLASH_SLASH] = ACTIONS(1420), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_bit_DASHshl] = ACTIONS(1418), - [anon_sym_bit_DASHshr] = ACTIONS(1418), - [anon_sym_EQ_EQ] = ACTIONS(1420), - [anon_sym_BANG_EQ] = ACTIONS(1420), - [anon_sym_LT2] = ACTIONS(1418), - [anon_sym_LT_EQ] = ACTIONS(1420), - [anon_sym_GT_EQ] = ACTIONS(1420), - [anon_sym_not_DASHin] = ACTIONS(1418), - [anon_sym_starts_DASHwith] = ACTIONS(1418), - [anon_sym_ends_DASHwith] = ACTIONS(1418), - [anon_sym_EQ_TILDE] = ACTIONS(1420), - [anon_sym_BANG_TILDE] = ACTIONS(1420), - [anon_sym_bit_DASHand] = ACTIONS(1418), - [anon_sym_bit_DASHxor] = ACTIONS(1418), - [anon_sym_bit_DASHor] = ACTIONS(1418), - [anon_sym_and] = ACTIONS(1418), - [anon_sym_xor] = ACTIONS(1418), - [anon_sym_or] = ACTIONS(1418), - [aux_sym__val_number_decimal_token1] = ACTIONS(1418), - [aux_sym__val_number_decimal_token2] = ACTIONS(1420), - [anon_sym_DOT2] = ACTIONS(1420), - [aux_sym__val_number_decimal_token3] = ACTIONS(1420), - [aux_sym__val_number_token1] = ACTIONS(1420), - [aux_sym__val_number_token2] = ACTIONS(1420), - [aux_sym__val_number_token3] = ACTIONS(1420), - [aux_sym__val_number_token4] = ACTIONS(1418), - [aux_sym__val_number_token5] = ACTIONS(1420), - [aux_sym__val_number_token6] = ACTIONS(1418), - [anon_sym_DQUOTE] = ACTIONS(1420), - [sym__str_single_quotes] = ACTIONS(1420), - [sym__str_back_ticks] = ACTIONS(1420), - [aux_sym__record_key_token2] = ACTIONS(1418), - [anon_sym_POUND] = ACTIONS(3), + [1225] = { + [sym_comment] = STATE(1225), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_COMMA] = ACTIONS(1020), + [anon_sym_RBRACK] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_GT] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1020), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_in] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_DOT_DOT] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_QMARK2] = ACTIONS(1020), + [anon_sym_STAR_STAR] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1020), + [anon_sym_SLASH] = ACTIONS(1020), + [anon_sym_mod] = ACTIONS(1020), + [anon_sym_SLASH_SLASH] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_bit_DASHshl] = ACTIONS(1020), + [anon_sym_bit_DASHshr] = ACTIONS(1020), + [anon_sym_EQ_EQ] = ACTIONS(1020), + [anon_sym_BANG_EQ] = ACTIONS(1020), + [anon_sym_LT2] = ACTIONS(1020), + [anon_sym_LT_EQ] = ACTIONS(1020), + [anon_sym_GT_EQ] = ACTIONS(1020), + [anon_sym_not_DASHin] = ACTIONS(1020), + [anon_sym_starts_DASHwith] = ACTIONS(1020), + [anon_sym_ends_DASHwith] = ACTIONS(1020), + [anon_sym_EQ_TILDE] = ACTIONS(1020), + [anon_sym_BANG_TILDE] = ACTIONS(1020), + [anon_sym_bit_DASHand] = ACTIONS(1020), + [anon_sym_bit_DASHxor] = ACTIONS(1020), + [anon_sym_bit_DASHor] = ACTIONS(1020), + [anon_sym_and] = ACTIONS(1020), + [anon_sym_xor] = ACTIONS(1020), + [anon_sym_or] = ACTIONS(1020), + [anon_sym_DOT] = ACTIONS(1020), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1020), + [anon_sym_DOT_DOT_LT] = ACTIONS(1020), + [anon_sym_null] = ACTIONS(1020), + [anon_sym_true] = ACTIONS(1020), + [anon_sym_false] = ACTIONS(1020), + [aux_sym__val_number_decimal_token1] = ACTIONS(1020), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [anon_sym_DOT2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1020), + [aux_sym__val_number_token1] = ACTIONS(1020), + [aux_sym__val_number_token2] = ACTIONS(1020), + [aux_sym__val_number_token3] = ACTIONS(1020), + [aux_sym__val_number_token4] = ACTIONS(1020), + [aux_sym__val_number_token5] = ACTIONS(1020), + [aux_sym__val_number_token6] = ACTIONS(1020), + [anon_sym_0b] = ACTIONS(1020), + [anon_sym_0o] = ACTIONS(1020), + [anon_sym_0x] = ACTIONS(1020), + [sym_val_date] = ACTIONS(1020), + [anon_sym_DQUOTE] = ACTIONS(1020), + [sym__str_single_quotes] = ACTIONS(1020), + [sym__str_back_ticks] = ACTIONS(1020), + [sym__entry_separator] = ACTIONS(1022), + [anon_sym_err_GT] = ACTIONS(1020), + [anon_sym_out_GT] = ACTIONS(1020), + [anon_sym_e_GT] = ACTIONS(1020), + [anon_sym_o_GT] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT] = ACTIONS(1020), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1020), + [anon_sym_POUND] = ACTIONS(113), }, - [996] = { - [sym_pipeline] = STATE(2962), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(10427), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(5342), - [sym__var] = STATE(4755), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), - [sym_comment] = STATE(996), - [aux_sym_pipeline_repeat1] = STATE(1030), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(1762), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_where] = ACTIONS(187), - [anon_sym_not] = ACTIONS(191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(193), - [anon_sym_DOT_DOT_LT] = ACTIONS(193), - [anon_sym_null] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [aux_sym__val_number_decimal_token1] = ACTIONS(199), - [aux_sym__val_number_decimal_token2] = ACTIONS(201), - [anon_sym_DOT2] = ACTIONS(203), - [aux_sym__val_number_decimal_token3] = ACTIONS(205), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(209), - [aux_sym__val_number_token5] = ACTIONS(207), - [aux_sym__val_number_token6] = ACTIONS(209), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_POUND] = ACTIONS(3), + [1226] = { + [sym_comment] = STATE(1226), + [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), + [anon_sym_SEMI] = ACTIONS(2362), + [sym_cmd_identifier] = ACTIONS(2362), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2362), + [anon_sym_LPAREN] = ACTIONS(2362), + [anon_sym_RPAREN] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2362), + [anon_sym_error] = ACTIONS(2362), + [anon_sym_DASH_DASH] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_break] = ACTIONS(2362), + [anon_sym_continue] = ACTIONS(2362), + [anon_sym_for] = ACTIONS(2362), + [anon_sym_loop] = ACTIONS(2362), + [anon_sym_while] = ACTIONS(2362), + [anon_sym_do] = ACTIONS(2362), + [anon_sym_if] = ACTIONS(2362), + [anon_sym_match] = ACTIONS(2362), + [anon_sym_LBRACE] = ACTIONS(2362), + [anon_sym_RBRACE] = ACTIONS(2362), + [anon_sym_DOT_DOT] = ACTIONS(2362), + [anon_sym_try] = 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_where] = ACTIONS(2362), + [anon_sym_not] = ACTIONS(2362), + [anon_sym_DOT] = ACTIONS(2362), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2362), + [anon_sym_DOT_DOT_LT] = ACTIONS(2362), + [anon_sym_null] = ACTIONS(2362), + [anon_sym_true] = ACTIONS(2362), + [anon_sym_false] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2362), + [aux_sym__val_number_decimal_token2] = ACTIONS(2362), + [anon_sym_DOT2] = ACTIONS(2362), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2362), + [anon_sym_0o] = ACTIONS(2362), + [anon_sym_0x] = ACTIONS(2362), + [sym_val_date] = 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_CARET] = ACTIONS(2362), + [aux_sym_unquoted_token2] = ACTIONS(2362), + [anon_sym_POUND] = ACTIONS(113), }, - [997] = { - [sym_pipeline] = STATE(2963), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(10427), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(5342), - [sym__var] = STATE(4755), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), - [sym_comment] = STATE(997), - [aux_sym_pipeline_repeat1] = STATE(1030), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(1762), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_where] = ACTIONS(187), - [anon_sym_not] = ACTIONS(191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(193), - [anon_sym_DOT_DOT_LT] = ACTIONS(193), - [anon_sym_null] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [aux_sym__val_number_decimal_token1] = ACTIONS(199), - [aux_sym__val_number_decimal_token2] = ACTIONS(201), - [anon_sym_DOT2] = ACTIONS(203), - [aux_sym__val_number_decimal_token3] = ACTIONS(205), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(209), - [aux_sym__val_number_token5] = ACTIONS(207), - [aux_sym__val_number_token6] = ACTIONS(209), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_POUND] = ACTIONS(3), + [1227] = { + [sym_comment] = STATE(1227), + [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), + [anon_sym_SEMI] = ACTIONS(2402), + [sym_cmd_identifier] = ACTIONS(2402), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2402), + [anon_sym_LPAREN] = ACTIONS(2402), + [anon_sym_RPAREN] = ACTIONS(2402), + [anon_sym_DOLLAR] = ACTIONS(2402), + [anon_sym_error] = ACTIONS(2402), + [anon_sym_DASH_DASH] = ACTIONS(2402), + [anon_sym_DASH] = ACTIONS(2402), + [anon_sym_break] = ACTIONS(2402), + [anon_sym_continue] = ACTIONS(2402), + [anon_sym_for] = ACTIONS(2402), + [anon_sym_loop] = ACTIONS(2402), + [anon_sym_while] = ACTIONS(2402), + [anon_sym_do] = ACTIONS(2402), + [anon_sym_if] = ACTIONS(2402), + [anon_sym_match] = ACTIONS(2402), + [anon_sym_LBRACE] = ACTIONS(2402), + [anon_sym_RBRACE] = ACTIONS(2402), + [anon_sym_DOT_DOT] = ACTIONS(2402), + [anon_sym_try] = 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_where] = ACTIONS(2402), + [anon_sym_not] = ACTIONS(2402), + [anon_sym_DOT] = ACTIONS(2402), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2402), + [anon_sym_DOT_DOT_LT] = ACTIONS(2402), + [anon_sym_null] = ACTIONS(2402), + [anon_sym_true] = ACTIONS(2402), + [anon_sym_false] = ACTIONS(2402), + [aux_sym__val_number_decimal_token1] = ACTIONS(2402), + [aux_sym__val_number_decimal_token2] = ACTIONS(2402), + [anon_sym_DOT2] = ACTIONS(2402), + [aux_sym__val_number_decimal_token3] = ACTIONS(2402), + [aux_sym__val_number_token1] = ACTIONS(2402), + [aux_sym__val_number_token2] = ACTIONS(2402), + [aux_sym__val_number_token3] = ACTIONS(2402), + [aux_sym__val_number_token4] = ACTIONS(2402), + [aux_sym__val_number_token5] = ACTIONS(2402), + [aux_sym__val_number_token6] = ACTIONS(2402), + [anon_sym_0b] = ACTIONS(2402), + [anon_sym_0o] = ACTIONS(2402), + [anon_sym_0x] = ACTIONS(2402), + [sym_val_date] = 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_CARET] = ACTIONS(2402), + [aux_sym_unquoted_token2] = ACTIONS(2402), + [anon_sym_POUND] = ACTIONS(113), }, - [998] = { - [sym_pipeline_parenthesized] = STATE(3039), - [sym__ctrl_expression_parenthesized] = STATE(9506), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(11177), - [sym_where_command] = STATE(9507), - [sym__expression] = STATE(9507), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(5342), - [sym__var] = STATE(4755), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9509), - [sym_comment] = STATE(998), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1032), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(1762), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_where] = ACTIONS(187), - [anon_sym_not] = ACTIONS(191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(193), - [anon_sym_DOT_DOT_LT] = ACTIONS(193), - [anon_sym_null] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [aux_sym__val_number_decimal_token1] = ACTIONS(199), - [aux_sym__val_number_decimal_token2] = ACTIONS(201), - [anon_sym_DOT2] = ACTIONS(203), - [aux_sym__val_number_decimal_token3] = ACTIONS(205), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(209), - [aux_sym__val_number_token5] = ACTIONS(207), - [aux_sym__val_number_token6] = ACTIONS(209), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), - [anon_sym_POUND] = ACTIONS(3), + [1228] = { + [sym_comment] = STATE(1228), + [ts_builtin_sym_end] = ACTIONS(2358), + [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), + [anon_sym_SEMI] = ACTIONS(2356), + [sym_cmd_identifier] = ACTIONS(2356), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2356), + [anon_sym_DOLLAR] = ACTIONS(2356), + [anon_sym_error] = ACTIONS(2356), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_loop] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_match] = ACTIONS(2356), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_DOT_DOT] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_source] = ACTIONS(2356), + [anon_sym_source_DASHenv] = ACTIONS(2356), + [anon_sym_register] = 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_where] = ACTIONS(2356), + [anon_sym_not] = ACTIONS(2356), + [anon_sym_DOT] = ACTIONS(2356), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2356), + [anon_sym_DOT_DOT_LT] = ACTIONS(2356), + [aux_sym__immediate_decimal_token2] = ACTIONS(3985), + [anon_sym_null] = ACTIONS(2356), + [anon_sym_true] = ACTIONS(2356), + [anon_sym_false] = ACTIONS(2356), + [aux_sym__val_number_decimal_token1] = ACTIONS(2356), + [aux_sym__val_number_decimal_token2] = ACTIONS(2356), + [anon_sym_DOT2] = ACTIONS(2356), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2356), + [anon_sym_0o] = ACTIONS(2356), + [anon_sym_0x] = ACTIONS(2356), + [sym_val_date] = 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_CARET] = ACTIONS(2356), + [aux_sym_unquoted_token2] = ACTIONS(2356), + [anon_sym_POUND] = ACTIONS(113), }, - [999] = { - [sym_pipeline_parenthesized] = STATE(3046), - [sym__ctrl_expression_parenthesized] = STATE(9506), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(11177), - [sym_where_command] = STATE(9507), - [sym__expression] = STATE(9507), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(5342), - [sym__var] = STATE(4755), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9509), - [sym_comment] = STATE(999), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1032), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(1762), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_where] = ACTIONS(187), - [anon_sym_not] = ACTIONS(191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(193), - [anon_sym_DOT_DOT_LT] = ACTIONS(193), - [anon_sym_null] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [aux_sym__val_number_decimal_token1] = ACTIONS(199), - [aux_sym__val_number_decimal_token2] = ACTIONS(201), - [anon_sym_DOT2] = ACTIONS(203), - [aux_sym__val_number_decimal_token3] = ACTIONS(205), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(209), - [aux_sym__val_number_token5] = ACTIONS(207), - [aux_sym__val_number_token6] = ACTIONS(209), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), - [anon_sym_POUND] = ACTIONS(3), + [1229] = { + [sym_comment] = STATE(1229), + [ts_builtin_sym_end] = ACTIONS(2231), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_alias] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_let_DASHenv] = ACTIONS(2229), + [anon_sym_mut] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2229), + [sym_cmd_identifier] = ACTIONS(2229), + [anon_sym_LF] = ACTIONS(2231), + [anon_sym_def] = ACTIONS(2229), + [anon_sym_export_DASHenv] = ACTIONS(2229), + [anon_sym_extern] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2229), + [anon_sym_error] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_loop] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_source] = ACTIONS(2229), + [anon_sym_source_DASHenv] = ACTIONS(2229), + [anon_sym_register] = ACTIONS(2229), + [anon_sym_hide] = ACTIONS(2229), + [anon_sym_hide_DASHenv] = ACTIONS(2229), + [anon_sym_overlay] = ACTIONS(2229), + [anon_sym_as] = ACTIONS(2229), + [anon_sym_where] = ACTIONS(2229), + [anon_sym_not] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2229), + [anon_sym_DOT_DOT_LT] = ACTIONS(2229), + [aux_sym__immediate_decimal_token2] = ACTIONS(3765), + [anon_sym_null] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [aux_sym__val_number_decimal_token1] = ACTIONS(2229), + [aux_sym__val_number_decimal_token2] = ACTIONS(2229), + [anon_sym_DOT2] = ACTIONS(2229), + [aux_sym__val_number_decimal_token3] = ACTIONS(2229), + [aux_sym__val_number_token1] = ACTIONS(2229), + [aux_sym__val_number_token2] = ACTIONS(2229), + [aux_sym__val_number_token3] = ACTIONS(2229), + [aux_sym__val_number_token4] = ACTIONS(2229), + [aux_sym__val_number_token5] = ACTIONS(2229), + [aux_sym__val_number_token6] = ACTIONS(2229), + [anon_sym_0b] = ACTIONS(2229), + [anon_sym_0o] = ACTIONS(2229), + [anon_sym_0x] = ACTIONS(2229), + [sym_val_date] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2229), + [anon_sym_CARET] = ACTIONS(2229), + [aux_sym_unquoted_token2] = ACTIONS(2229), + [anon_sym_POUND] = ACTIONS(113), }, - [1000] = { - [sym_pipeline] = STATE(3009), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(10427), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(5342), - [sym__var] = STATE(4755), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), - [sym_comment] = STATE(1000), - [aux_sym_pipeline_repeat1] = STATE(1030), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(1762), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_where] = ACTIONS(187), - [anon_sym_not] = ACTIONS(191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(193), - [anon_sym_DOT_DOT_LT] = ACTIONS(193), - [anon_sym_null] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [aux_sym__val_number_decimal_token1] = ACTIONS(199), - [aux_sym__val_number_decimal_token2] = ACTIONS(201), - [anon_sym_DOT2] = ACTIONS(203), - [aux_sym__val_number_decimal_token3] = ACTIONS(205), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(209), - [aux_sym__val_number_token5] = ACTIONS(207), - [aux_sym__val_number_token6] = ACTIONS(209), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_POUND] = ACTIONS(3), + [1230] = { + [sym_comment] = STATE(1230), + [ts_builtin_sym_end] = ACTIONS(2364), + [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), + [anon_sym_SEMI] = ACTIONS(2362), + [sym_cmd_identifier] = ACTIONS(2362), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2362), + [anon_sym_LPAREN] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2362), + [anon_sym_error] = ACTIONS(2362), + [anon_sym_DASH_DASH] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_break] = ACTIONS(2362), + [anon_sym_continue] = ACTIONS(2362), + [anon_sym_for] = ACTIONS(2362), + [anon_sym_loop] = ACTIONS(2362), + [anon_sym_while] = ACTIONS(2362), + [anon_sym_do] = ACTIONS(2362), + [anon_sym_if] = ACTIONS(2362), + [anon_sym_match] = ACTIONS(2362), + [anon_sym_LBRACE] = ACTIONS(2362), + [anon_sym_DOT_DOT] = ACTIONS(2362), + [anon_sym_try] = 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_where] = ACTIONS(2362), + [anon_sym_not] = ACTIONS(2362), + [anon_sym_DOT] = ACTIONS(2362), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2362), + [anon_sym_DOT_DOT_LT] = ACTIONS(2362), + [aux_sym__immediate_decimal_token2] = ACTIONS(3987), + [anon_sym_null] = ACTIONS(2362), + [anon_sym_true] = ACTIONS(2362), + [anon_sym_false] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2362), + [aux_sym__val_number_decimal_token2] = ACTIONS(2362), + [anon_sym_DOT2] = ACTIONS(2362), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2362), + [anon_sym_0o] = ACTIONS(2362), + [anon_sym_0x] = ACTIONS(2362), + [sym_val_date] = 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_CARET] = ACTIONS(2362), + [aux_sym_unquoted_token2] = ACTIONS(2362), + [anon_sym_POUND] = ACTIONS(113), }, - [1001] = { - [sym_pipeline] = STATE(2982), - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(10427), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(5342), - [sym__var] = STATE(4755), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), - [sym_comment] = STATE(1001), - [aux_sym_pipeline_repeat1] = STATE(1030), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(1762), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_where] = ACTIONS(187), - [anon_sym_not] = ACTIONS(191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(193), - [anon_sym_DOT_DOT_LT] = ACTIONS(193), - [anon_sym_null] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [aux_sym__val_number_decimal_token1] = ACTIONS(199), - [aux_sym__val_number_decimal_token2] = ACTIONS(201), - [anon_sym_DOT2] = ACTIONS(203), - [aux_sym__val_number_decimal_token3] = ACTIONS(205), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(209), - [aux_sym__val_number_token5] = ACTIONS(207), - [aux_sym__val_number_token6] = ACTIONS(209), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_POUND] = ACTIONS(3), + [1231] = { + [sym_comment] = STATE(1231), + [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), + [anon_sym_SEMI] = ACTIONS(2356), + [sym_cmd_identifier] = ACTIONS(2356), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2356), + [anon_sym_RPAREN] = ACTIONS(2356), + [anon_sym_DOLLAR] = ACTIONS(2356), + [anon_sym_error] = ACTIONS(2356), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_loop] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_match] = ACTIONS(2356), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_RBRACE] = ACTIONS(2356), + [anon_sym_DOT_DOT] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_source] = ACTIONS(2356), + [anon_sym_source_DASHenv] = ACTIONS(2356), + [anon_sym_register] = 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_where] = ACTIONS(2356), + [anon_sym_not] = ACTIONS(2356), + [anon_sym_DOT] = ACTIONS(3989), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2356), + [anon_sym_DOT_DOT_LT] = ACTIONS(2356), + [aux_sym__immediate_decimal_token2] = ACTIONS(3991), + [anon_sym_null] = ACTIONS(2356), + [anon_sym_true] = ACTIONS(2356), + [anon_sym_false] = ACTIONS(2356), + [aux_sym__val_number_decimal_token1] = ACTIONS(2356), + [aux_sym__val_number_decimal_token2] = ACTIONS(2356), + [anon_sym_DOT2] = ACTIONS(2356), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2356), + [anon_sym_0o] = ACTIONS(2356), + [anon_sym_0x] = ACTIONS(2356), + [sym_val_date] = 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_CARET] = ACTIONS(2356), + [anon_sym_POUND] = ACTIONS(113), }, - [1002] = { - [sym_pipeline_parenthesized] = STATE(3041), - [sym__ctrl_expression_parenthesized] = STATE(9506), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(11177), - [sym_where_command] = STATE(9507), - [sym__expression] = STATE(9507), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(5342), - [sym__var] = STATE(4755), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9509), - [sym_comment] = STATE(1002), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1032), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(1762), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_where] = ACTIONS(187), - [anon_sym_not] = ACTIONS(191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(193), - [anon_sym_DOT_DOT_LT] = ACTIONS(193), - [anon_sym_null] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [aux_sym__val_number_decimal_token1] = ACTIONS(199), - [aux_sym__val_number_decimal_token2] = ACTIONS(201), - [anon_sym_DOT2] = ACTIONS(203), - [aux_sym__val_number_decimal_token3] = ACTIONS(205), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(209), - [aux_sym__val_number_token5] = ACTIONS(207), - [aux_sym__val_number_token6] = ACTIONS(209), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), - [anon_sym_POUND] = ACTIONS(3), + [1232] = { + [sym_comment] = STATE(1232), + [ts_builtin_sym_end] = ACTIONS(2358), + [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), + [anon_sym_SEMI] = ACTIONS(2356), + [sym_cmd_identifier] = ACTIONS(2356), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2356), + [anon_sym_DOLLAR] = ACTIONS(2356), + [anon_sym_error] = ACTIONS(2356), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_loop] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_match] = ACTIONS(2356), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_DOT_DOT] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_source] = ACTIONS(2356), + [anon_sym_source_DASHenv] = ACTIONS(2356), + [anon_sym_register] = 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_where] = ACTIONS(2356), + [anon_sym_not] = ACTIONS(2356), + [anon_sym_DOT] = ACTIONS(3993), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2356), + [anon_sym_DOT_DOT_LT] = ACTIONS(2356), + [aux_sym__immediate_decimal_token2] = ACTIONS(3985), + [anon_sym_null] = ACTIONS(2356), + [anon_sym_true] = ACTIONS(2356), + [anon_sym_false] = ACTIONS(2356), + [aux_sym__val_number_decimal_token1] = ACTIONS(2356), + [aux_sym__val_number_decimal_token2] = ACTIONS(2356), + [anon_sym_DOT2] = ACTIONS(2356), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2356), + [anon_sym_0o] = ACTIONS(2356), + [anon_sym_0x] = ACTIONS(2356), + [sym_val_date] = 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_CARET] = ACTIONS(2356), + [aux_sym_unquoted_token2] = ACTIONS(2356), + [anon_sym_POUND] = ACTIONS(113), }, - [1003] = { - [sym_pipeline_parenthesized] = STATE(3016), - [sym__ctrl_expression_parenthesized] = STATE(9506), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(11177), - [sym_where_command] = STATE(9507), - [sym__expression] = STATE(9507), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(5342), - [sym__var] = STATE(4755), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9509), - [sym_comment] = STATE(1003), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1032), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(1762), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_where] = ACTIONS(187), - [anon_sym_not] = ACTIONS(191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(193), - [anon_sym_DOT_DOT_LT] = ACTIONS(193), - [anon_sym_null] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [aux_sym__val_number_decimal_token1] = ACTIONS(199), - [aux_sym__val_number_decimal_token2] = ACTIONS(201), - [anon_sym_DOT2] = ACTIONS(203), - [aux_sym__val_number_decimal_token3] = ACTIONS(205), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(209), - [aux_sym__val_number_token5] = ACTIONS(207), - [aux_sym__val_number_token6] = ACTIONS(209), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [1233] = { + [sym__expression] = STATE(8100), + [sym_expr_unary] = STATE(5417), + [sym__expr_unary_minus] = STATE(5208), + [sym_expr_binary] = STATE(5417), + [sym__expr_binary_expression] = STATE(6375), + [sym_expr_parenthesized] = STATE(4769), + [sym_val_range] = STATE(8336), + [sym__val_range] = STATE(10084), + [sym__value] = STATE(5417), + [sym_val_nothing] = STATE(5320), + [sym_val_bool] = STATE(5090), + [sym_val_variable] = STATE(4700), + [sym__var] = STATE(4205), + [sym_val_number] = STATE(5320), + [sym__val_number_decimal] = STATE(4074), + [sym__val_number] = STATE(5324), + [sym_val_duration] = STATE(5320), + [sym_val_filesize] = STATE(5320), + [sym_val_binary] = STATE(5320), + [sym_val_string] = STATE(5320), + [sym__str_double_quotes] = STATE(5376), + [sym_val_interpolated] = STATE(5320), + [sym__inter_single_quotes] = STATE(5381), + [sym__inter_double_quotes] = STATE(5382), + [sym_val_list] = STATE(5320), + [sym_val_record] = STATE(5320), + [sym_val_table] = STATE(5320), + [sym_val_closure] = STATE(5320), + [sym_unquoted] = STATE(8115), + [sym__unquoted_anonymous_prefix] = STATE(10712), + [sym_comment] = STATE(1233), + [anon_sym_LBRACK] = ACTIONS(2462), + [anon_sym_LPAREN] = ACTIONS(2464), + [anon_sym_DOLLAR] = ACTIONS(1598), + [anon_sym_DASH] = ACTIONS(3996), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_DOT_DOT] = ACTIONS(3998), + [anon_sym_not] = ACTIONS(4000), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4002), + [anon_sym_DOT_DOT_LT] = ACTIONS(4002), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_true] = ACTIONS(4006), + [anon_sym_false] = ACTIONS(4006), + [aux_sym__val_number_decimal_token1] = ACTIONS(4008), + [aux_sym__val_number_decimal_token2] = ACTIONS(4010), + [anon_sym_DOT2] = ACTIONS(4012), + [aux_sym__val_number_decimal_token3] = ACTIONS(4014), + [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(4016), + [aux_sym__val_number_token5] = ACTIONS(4016), + [aux_sym__val_number_token6] = ACTIONS(4016), + [anon_sym_0b] = ACTIONS(1624), + [anon_sym_0o] = ACTIONS(1626), + [anon_sym_0x] = ACTIONS(1626), + [sym_val_date] = ACTIONS(4018), + [anon_sym_DQUOTE] = ACTIONS(2486), + [sym__str_single_quotes] = ACTIONS(2488), + [sym__str_back_ticks] = ACTIONS(2488), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2490), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2492), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(1642), [anon_sym_POUND] = ACTIONS(3), }, - [1004] = { - [sym_comment] = STATE(1004), - [anon_sym_export] = ACTIONS(1280), - [anon_sym_alias] = ACTIONS(1280), - [anon_sym_let] = ACTIONS(1280), - [anon_sym_let_DASHenv] = ACTIONS(1280), - [anon_sym_mut] = ACTIONS(1280), - [anon_sym_const] = ACTIONS(1280), - [sym_cmd_identifier] = ACTIONS(1280), - [anon_sym_def] = ACTIONS(1280), - [anon_sym_export_DASHenv] = ACTIONS(1280), - [anon_sym_extern] = ACTIONS(1280), - [anon_sym_module] = ACTIONS(1280), - [anon_sym_use] = ACTIONS(1280), - [anon_sym_LPAREN] = ACTIONS(1282), - [anon_sym_DOLLAR] = ACTIONS(1282), - [anon_sym_error] = ACTIONS(1280), - [anon_sym_list] = ACTIONS(1280), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_break] = ACTIONS(1280), - [anon_sym_continue] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_in] = ACTIONS(1280), - [anon_sym_loop] = ACTIONS(1280), - [anon_sym_make] = ACTIONS(1280), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_else] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1280), - [anon_sym_RBRACE] = ACTIONS(1282), - [anon_sym_try] = ACTIONS(1280), - [anon_sym_catch] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1280), - [anon_sym_source] = ACTIONS(1280), - [anon_sym_source_DASHenv] = ACTIONS(1280), - [anon_sym_register] = ACTIONS(1280), - [anon_sym_hide] = ACTIONS(1280), - [anon_sym_hide_DASHenv] = ACTIONS(1280), - [anon_sym_overlay] = ACTIONS(1280), - [anon_sym_new] = ACTIONS(1280), - [anon_sym_as] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1280), - [anon_sym_STAR_STAR] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(1280), - [anon_sym_mod] = ACTIONS(1280), - [anon_sym_SLASH_SLASH] = ACTIONS(1282), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_bit_DASHshl] = ACTIONS(1280), - [anon_sym_bit_DASHshr] = ACTIONS(1280), - [anon_sym_EQ_EQ] = ACTIONS(1282), - [anon_sym_BANG_EQ] = ACTIONS(1282), - [anon_sym_LT2] = ACTIONS(1280), - [anon_sym_LT_EQ] = ACTIONS(1282), - [anon_sym_GT_EQ] = ACTIONS(1282), - [anon_sym_not_DASHin] = ACTIONS(1280), - [anon_sym_starts_DASHwith] = ACTIONS(1280), - [anon_sym_ends_DASHwith] = ACTIONS(1280), - [anon_sym_EQ_TILDE] = ACTIONS(1282), - [anon_sym_BANG_TILDE] = ACTIONS(1282), - [anon_sym_bit_DASHand] = ACTIONS(1280), - [anon_sym_bit_DASHxor] = ACTIONS(1280), - [anon_sym_bit_DASHor] = ACTIONS(1280), - [anon_sym_and] = ACTIONS(1280), - [anon_sym_xor] = ACTIONS(1280), - [anon_sym_or] = ACTIONS(1280), - [aux_sym__val_number_decimal_token1] = ACTIONS(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1282), - [anon_sym_DOT2] = ACTIONS(1282), - [aux_sym__val_number_decimal_token3] = ACTIONS(1282), - [aux_sym__val_number_token1] = ACTIONS(1282), - [aux_sym__val_number_token2] = ACTIONS(1282), - [aux_sym__val_number_token3] = ACTIONS(1282), - [aux_sym__val_number_token4] = ACTIONS(1280), - [aux_sym__val_number_token5] = ACTIONS(1282), - [aux_sym__val_number_token6] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1282), - [sym__str_single_quotes] = ACTIONS(1282), - [sym__str_back_ticks] = ACTIONS(1282), - [aux_sym__record_key_token2] = ACTIONS(1280), + [1234] = { + [sym__match_pattern_expression] = STATE(3963), + [sym__match_pattern_value] = STATE(4065), + [sym__match_pattern_list] = STATE(3899), + [sym__match_pattern_rest] = STATE(10484), + [sym__match_pattern_record] = STATE(4002), + [sym__expr_unary_minus] = STATE(4029), + [sym_expr_parenthesized] = STATE(3478), + [sym_val_range] = STATE(4065), + [sym__val_range] = STATE(10108), + [sym_val_nothing] = STATE(3928), + [sym_val_bool] = STATE(3848), + [sym_val_variable] = STATE(3481), + [sym__var] = STATE(3303), + [sym_val_number] = STATE(3928), + [sym__val_number_decimal] = STATE(3274), + [sym__val_number] = STATE(4008), + [sym_val_duration] = STATE(3928), + [sym_val_filesize] = STATE(3928), + [sym_val_binary] = STATE(3928), + [sym_val_string] = STATE(3928), + [sym__str_double_quotes] = STATE(3913), + [sym_val_list] = STATE(10464), + [sym__list_item_starts_with_sign] = STATE(3915), + [sym_val_table] = STATE(3928), + [sym_short_flag] = STATE(3915), + [sym_long_flag] = STATE(3915), + [sym_long_flag_equals_value] = STATE(4030), + [sym__unquoted_in_list] = STATE(3915), + [sym__unquoted_anonymous_prefix] = STATE(10784), + [sym_comment] = STATE(1234), + [aux_sym__match_pattern_list_repeat1] = STATE(1298), + [anon_sym_LBRACK] = ACTIONS(3843), + [anon_sym_RBRACK] = ACTIONS(4020), + [anon_sym_LPAREN] = ACTIONS(3258), + [anon_sym_DOLLAR] = ACTIONS(3847), + [anon_sym_DASH_DASH] = ACTIONS(3262), + [anon_sym_DASH] = ACTIONS(3849), + [anon_sym_LBRACE] = ACTIONS(3851), + [anon_sym_DOT_DOT] = ACTIONS(4022), + [anon_sym_PLUS] = ACTIONS(3855), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3857), + [anon_sym_DOT_DOT_LT] = ACTIONS(3857), + [anon_sym_null] = ACTIONS(3859), + [anon_sym_true] = ACTIONS(3861), + [anon_sym_false] = ACTIONS(3861), + [aux_sym__val_number_decimal_token1] = ACTIONS(3863), + [aux_sym__val_number_decimal_token2] = ACTIONS(3865), + [anon_sym_DOT2] = ACTIONS(3867), + [aux_sym__val_number_decimal_token3] = ACTIONS(3869), + [aux_sym__val_number_token1] = ACTIONS(3284), + [aux_sym__val_number_token2] = ACTIONS(3284), + [aux_sym__val_number_token3] = ACTIONS(3284), + [aux_sym__val_number_token4] = ACTIONS(3871), + [aux_sym__val_number_token5] = ACTIONS(3871), + [aux_sym__val_number_token6] = ACTIONS(3871), + [anon_sym_0b] = ACTIONS(3288), + [anon_sym_0o] = ACTIONS(3290), + [anon_sym_0x] = ACTIONS(3290), + [sym_val_date] = ACTIONS(3873), + [anon_sym_DQUOTE] = ACTIONS(3294), + [sym__str_single_quotes] = ACTIONS(3296), + [sym__str_back_ticks] = ACTIONS(3296), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3875), [anon_sym_POUND] = ACTIONS(3), }, - [1005] = { - [sym_comment] = STATE(1005), - [anon_sym_export] = ACTIONS(1253), - [anon_sym_alias] = ACTIONS(1253), - [anon_sym_let] = ACTIONS(1253), - [anon_sym_let_DASHenv] = ACTIONS(1253), - [anon_sym_mut] = ACTIONS(1253), - [anon_sym_const] = ACTIONS(1253), - [sym_cmd_identifier] = ACTIONS(1253), - [anon_sym_def] = ACTIONS(1253), - [anon_sym_export_DASHenv] = ACTIONS(1253), - [anon_sym_extern] = ACTIONS(1253), - [anon_sym_module] = ACTIONS(1253), - [anon_sym_use] = ACTIONS(1253), - [anon_sym_LPAREN] = ACTIONS(1255), - [anon_sym_DOLLAR] = ACTIONS(1255), - [anon_sym_error] = ACTIONS(1253), - [anon_sym_list] = ACTIONS(1253), - [anon_sym_GT] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_break] = ACTIONS(1253), - [anon_sym_continue] = ACTIONS(1253), - [anon_sym_for] = ACTIONS(1253), - [anon_sym_in] = ACTIONS(1253), - [anon_sym_loop] = ACTIONS(1253), - [anon_sym_make] = ACTIONS(1253), - [anon_sym_while] = ACTIONS(1253), - [anon_sym_do] = ACTIONS(1253), - [anon_sym_if] = ACTIONS(1253), - [anon_sym_else] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1253), - [anon_sym_RBRACE] = ACTIONS(1255), - [anon_sym_try] = ACTIONS(1253), - [anon_sym_catch] = ACTIONS(1253), - [anon_sym_return] = ACTIONS(1253), - [anon_sym_source] = ACTIONS(1253), - [anon_sym_source_DASHenv] = ACTIONS(1253), - [anon_sym_register] = ACTIONS(1253), - [anon_sym_hide] = ACTIONS(1253), - [anon_sym_hide_DASHenv] = ACTIONS(1253), - [anon_sym_overlay] = ACTIONS(1253), - [anon_sym_new] = ACTIONS(1253), - [anon_sym_as] = ACTIONS(1253), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_STAR_STAR] = ACTIONS(1255), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_mod] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_bit_DASHshl] = ACTIONS(1253), - [anon_sym_bit_DASHshr] = ACTIONS(1253), - [anon_sym_EQ_EQ] = ACTIONS(1255), - [anon_sym_BANG_EQ] = ACTIONS(1255), - [anon_sym_LT2] = ACTIONS(1253), - [anon_sym_LT_EQ] = ACTIONS(1255), - [anon_sym_GT_EQ] = ACTIONS(1255), - [anon_sym_not_DASHin] = ACTIONS(1253), - [anon_sym_starts_DASHwith] = ACTIONS(1253), - [anon_sym_ends_DASHwith] = ACTIONS(1253), - [anon_sym_EQ_TILDE] = ACTIONS(1255), - [anon_sym_BANG_TILDE] = ACTIONS(1255), - [anon_sym_bit_DASHand] = ACTIONS(1253), - [anon_sym_bit_DASHxor] = ACTIONS(1253), - [anon_sym_bit_DASHor] = ACTIONS(1253), - [anon_sym_and] = ACTIONS(1253), - [anon_sym_xor] = ACTIONS(1253), - [anon_sym_or] = ACTIONS(1253), - [aux_sym__val_number_decimal_token1] = ACTIONS(1253), - [aux_sym__val_number_decimal_token2] = ACTIONS(1255), - [anon_sym_DOT2] = ACTIONS(1255), - [aux_sym__val_number_decimal_token3] = ACTIONS(1255), - [aux_sym__val_number_token1] = ACTIONS(1255), - [aux_sym__val_number_token2] = ACTIONS(1255), - [aux_sym__val_number_token3] = ACTIONS(1255), - [aux_sym__val_number_token4] = ACTIONS(1253), - [aux_sym__val_number_token5] = ACTIONS(1255), - [aux_sym__val_number_token6] = ACTIONS(1253), - [anon_sym_DQUOTE] = ACTIONS(1255), - [sym__str_single_quotes] = ACTIONS(1255), - [sym__str_back_ticks] = ACTIONS(1255), - [aux_sym__record_key_token2] = ACTIONS(1253), + [1235] = { + [sym__expression] = STATE(8363), + [sym_expr_unary] = STATE(5519), + [sym__expr_unary_minus] = STATE(5522), + [sym_expr_binary] = STATE(5519), + [sym__expr_binary_expression] = STATE(6387), + [sym_expr_parenthesized] = STATE(4796), + [sym_val_range] = STATE(8077), + [sym__val_range] = STATE(10097), + [sym__value] = STATE(5519), + [sym_val_nothing] = STATE(5416), + [sym_val_bool] = STATE(5140), + [sym_val_variable] = STATE(4774), + [sym__var] = STATE(4188), + [sym_val_number] = STATE(5416), + [sym__val_number_decimal] = STATE(3983), + [sym__val_number] = STATE(5419), + [sym_val_duration] = STATE(5416), + [sym_val_filesize] = STATE(5416), + [sym_val_binary] = STATE(5416), + [sym_val_string] = STATE(5416), + [sym__str_double_quotes] = STATE(5513), + [sym_val_interpolated] = STATE(5416), + [sym__inter_single_quotes] = STATE(5443), + [sym__inter_double_quotes] = STATE(5209), + [sym_val_list] = STATE(5416), + [sym_val_record] = STATE(5416), + [sym_val_table] = STATE(5416), + [sym_val_closure] = STATE(5416), + [sym_unquoted] = STATE(8366), + [sym__unquoted_anonymous_prefix] = STATE(10282), + [sym_comment] = STATE(1235), + [anon_sym_LBRACK] = ACTIONS(2740), + [anon_sym_LPAREN] = ACTIONS(2742), + [anon_sym_DOLLAR] = ACTIONS(1650), + [anon_sym_DASH] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(2746), + [anon_sym_DOT_DOT] = ACTIONS(4026), + [anon_sym_not] = ACTIONS(4028), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4030), + [anon_sym_DOT_DOT_LT] = ACTIONS(4030), + [anon_sym_null] = ACTIONS(4032), + [anon_sym_true] = ACTIONS(4034), + [anon_sym_false] = ACTIONS(4034), + [aux_sym__val_number_decimal_token1] = ACTIONS(4036), + [aux_sym__val_number_decimal_token2] = ACTIONS(4038), + [anon_sym_DOT2] = ACTIONS(4040), + [aux_sym__val_number_decimal_token3] = ACTIONS(4042), + [aux_sym__val_number_token1] = ACTIONS(2758), + [aux_sym__val_number_token2] = ACTIONS(2758), + [aux_sym__val_number_token3] = ACTIONS(2758), + [aux_sym__val_number_token4] = ACTIONS(4044), + [aux_sym__val_number_token5] = ACTIONS(4044), + [aux_sym__val_number_token6] = ACTIONS(4044), + [anon_sym_0b] = ACTIONS(1676), + [anon_sym_0o] = ACTIONS(1678), + [anon_sym_0x] = ACTIONS(1678), + [sym_val_date] = ACTIONS(4046), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym__str_single_quotes] = ACTIONS(2766), + [sym__str_back_ticks] = ACTIONS(2766), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2770), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(1694), [anon_sym_POUND] = ACTIONS(3), }, - [1006] = { - [sym_comment] = STATE(1006), - [anon_sym_export] = ACTIONS(1342), - [anon_sym_alias] = ACTIONS(1342), - [anon_sym_let] = ACTIONS(1342), - [anon_sym_let_DASHenv] = ACTIONS(1342), - [anon_sym_mut] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [sym_cmd_identifier] = ACTIONS(1342), - [anon_sym_def] = ACTIONS(1342), - [anon_sym_export_DASHenv] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1342), - [anon_sym_module] = ACTIONS(1342), - [anon_sym_use] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1344), - [anon_sym_DOLLAR] = ACTIONS(1344), - [anon_sym_error] = ACTIONS(1342), - [anon_sym_list] = ACTIONS(1342), - [anon_sym_GT] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_in] = ACTIONS(1342), - [anon_sym_loop] = ACTIONS(1342), - [anon_sym_make] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_else] = ACTIONS(1342), - [anon_sym_match] = ACTIONS(1342), - [anon_sym_RBRACE] = ACTIONS(1344), - [anon_sym_try] = ACTIONS(1342), - [anon_sym_catch] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_source] = ACTIONS(1342), - [anon_sym_source_DASHenv] = ACTIONS(1342), - [anon_sym_register] = ACTIONS(1342), - [anon_sym_hide] = ACTIONS(1342), - [anon_sym_hide_DASHenv] = ACTIONS(1342), - [anon_sym_overlay] = ACTIONS(1342), - [anon_sym_new] = ACTIONS(1342), - [anon_sym_as] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_STAR_STAR] = ACTIONS(1344), - [anon_sym_PLUS_PLUS] = ACTIONS(1344), - [anon_sym_SLASH] = ACTIONS(1342), - [anon_sym_mod] = ACTIONS(1342), - [anon_sym_SLASH_SLASH] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_bit_DASHshl] = ACTIONS(1342), - [anon_sym_bit_DASHshr] = ACTIONS(1342), - [anon_sym_EQ_EQ] = ACTIONS(1344), - [anon_sym_BANG_EQ] = ACTIONS(1344), - [anon_sym_LT2] = ACTIONS(1342), - [anon_sym_LT_EQ] = ACTIONS(1344), - [anon_sym_GT_EQ] = ACTIONS(1344), - [anon_sym_not_DASHin] = ACTIONS(1342), - [anon_sym_starts_DASHwith] = ACTIONS(1342), - [anon_sym_ends_DASHwith] = ACTIONS(1342), - [anon_sym_EQ_TILDE] = ACTIONS(1344), - [anon_sym_BANG_TILDE] = ACTIONS(1344), - [anon_sym_bit_DASHand] = ACTIONS(1342), - [anon_sym_bit_DASHxor] = ACTIONS(1342), - [anon_sym_bit_DASHor] = ACTIONS(1342), - [anon_sym_and] = ACTIONS(1342), - [anon_sym_xor] = ACTIONS(1342), - [anon_sym_or] = ACTIONS(1342), - [aux_sym__val_number_decimal_token1] = ACTIONS(1342), - [aux_sym__val_number_decimal_token2] = ACTIONS(1344), - [anon_sym_DOT2] = ACTIONS(1344), - [aux_sym__val_number_decimal_token3] = ACTIONS(1344), - [aux_sym__val_number_token1] = ACTIONS(1344), - [aux_sym__val_number_token2] = ACTIONS(1344), - [aux_sym__val_number_token3] = ACTIONS(1344), - [aux_sym__val_number_token4] = ACTIONS(1342), - [aux_sym__val_number_token5] = ACTIONS(1344), - [aux_sym__val_number_token6] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1344), - [sym__str_single_quotes] = ACTIONS(1344), - [sym__str_back_ticks] = ACTIONS(1344), - [aux_sym__record_key_token2] = ACTIONS(1342), + [1236] = { + [sym__expression] = STATE(7774), + [sym_expr_unary] = STATE(5851), + [sym__expr_unary_minus] = STATE(5853), + [sym_expr_binary] = STATE(5851), + [sym__expr_binary_expression] = STATE(6378), + [sym_expr_parenthesized] = STATE(5044), + [sym_val_range] = STATE(8705), + [sym__val_range] = STATE(10104), + [sym__value] = STATE(5851), + [sym_val_nothing] = STATE(5750), + [sym_val_bool] = STATE(5489), + [sym_val_variable] = STATE(4976), + [sym__var] = STATE(4315), + [sym_val_number] = STATE(5750), + [sym__val_number_decimal] = STATE(4197), + [sym__val_number] = STATE(5565), + [sym_val_duration] = STATE(5750), + [sym_val_filesize] = STATE(5750), + [sym_val_binary] = STATE(5750), + [sym_val_string] = STATE(5750), + [sym__str_double_quotes] = STATE(5570), + [sym_val_interpolated] = STATE(5750), + [sym__inter_single_quotes] = STATE(5595), + [sym__inter_double_quotes] = STATE(5600), + [sym_val_list] = STATE(5750), + [sym_val_record] = STATE(5750), + [sym_val_table] = STATE(5750), + [sym_val_closure] = STATE(5750), + [sym_unquoted] = STATE(7775), + [sym__unquoted_anonymous_prefix] = STATE(10755), + [sym_comment] = STATE(1236), + [anon_sym_LBRACK] = ACTIONS(4048), + [anon_sym_LPAREN] = ACTIONS(4050), + [anon_sym_DOLLAR] = ACTIONS(4052), + [anon_sym_DASH] = ACTIONS(4054), + [anon_sym_LBRACE] = ACTIONS(4056), + [anon_sym_DOT_DOT] = ACTIONS(4058), + [anon_sym_not] = ACTIONS(4060), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4062), + [anon_sym_DOT_DOT_LT] = ACTIONS(4062), + [anon_sym_null] = ACTIONS(4064), + [anon_sym_true] = ACTIONS(4066), + [anon_sym_false] = ACTIONS(4066), + [aux_sym__val_number_decimal_token1] = ACTIONS(4068), + [aux_sym__val_number_decimal_token2] = ACTIONS(4070), + [anon_sym_DOT2] = ACTIONS(4072), + [aux_sym__val_number_decimal_token3] = ACTIONS(4074), + [aux_sym__val_number_token1] = ACTIONS(4076), + [aux_sym__val_number_token2] = ACTIONS(4076), + [aux_sym__val_number_token3] = ACTIONS(4076), + [aux_sym__val_number_token4] = ACTIONS(4078), + [aux_sym__val_number_token5] = ACTIONS(4078), + [aux_sym__val_number_token6] = ACTIONS(4078), + [anon_sym_0b] = ACTIONS(4080), + [anon_sym_0o] = ACTIONS(4082), + [anon_sym_0x] = ACTIONS(4082), + [sym_val_date] = ACTIONS(4084), + [anon_sym_DQUOTE] = ACTIONS(4086), + [sym__str_single_quotes] = ACTIONS(4088), + [sym__str_back_ticks] = ACTIONS(4088), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4092), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2848), [anon_sym_POUND] = ACTIONS(3), }, - [1007] = { - [sym_comment] = STATE(1007), - [anon_sym_export] = ACTIONS(1346), - [anon_sym_alias] = ACTIONS(1346), - [anon_sym_let] = ACTIONS(1346), - [anon_sym_let_DASHenv] = ACTIONS(1346), - [anon_sym_mut] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [sym_cmd_identifier] = ACTIONS(1346), - [anon_sym_def] = ACTIONS(1346), - [anon_sym_export_DASHenv] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1346), - [anon_sym_module] = ACTIONS(1346), - [anon_sym_use] = ACTIONS(1346), - [anon_sym_LPAREN] = ACTIONS(1348), - [anon_sym_DOLLAR] = ACTIONS(1348), - [anon_sym_error] = ACTIONS(1346), - [anon_sym_list] = ACTIONS(1346), - [anon_sym_GT] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_in] = ACTIONS(1346), - [anon_sym_loop] = ACTIONS(1346), - [anon_sym_make] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_else] = ACTIONS(1346), - [anon_sym_match] = ACTIONS(1346), - [anon_sym_RBRACE] = ACTIONS(1348), - [anon_sym_try] = ACTIONS(1346), - [anon_sym_catch] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_source] = ACTIONS(1346), - [anon_sym_source_DASHenv] = ACTIONS(1346), - [anon_sym_register] = ACTIONS(1346), - [anon_sym_hide] = ACTIONS(1346), - [anon_sym_hide_DASHenv] = ACTIONS(1346), - [anon_sym_overlay] = ACTIONS(1346), - [anon_sym_new] = ACTIONS(1346), - [anon_sym_as] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_STAR_STAR] = ACTIONS(1348), - [anon_sym_PLUS_PLUS] = ACTIONS(1348), - [anon_sym_SLASH] = ACTIONS(1346), - [anon_sym_mod] = ACTIONS(1346), - [anon_sym_SLASH_SLASH] = ACTIONS(1348), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_bit_DASHshl] = ACTIONS(1346), - [anon_sym_bit_DASHshr] = ACTIONS(1346), - [anon_sym_EQ_EQ] = ACTIONS(1348), - [anon_sym_BANG_EQ] = ACTIONS(1348), - [anon_sym_LT2] = ACTIONS(1346), - [anon_sym_LT_EQ] = ACTIONS(1348), - [anon_sym_GT_EQ] = ACTIONS(1348), - [anon_sym_not_DASHin] = ACTIONS(1346), - [anon_sym_starts_DASHwith] = ACTIONS(1346), - [anon_sym_ends_DASHwith] = ACTIONS(1346), - [anon_sym_EQ_TILDE] = ACTIONS(1348), - [anon_sym_BANG_TILDE] = ACTIONS(1348), - [anon_sym_bit_DASHand] = ACTIONS(1346), - [anon_sym_bit_DASHxor] = ACTIONS(1346), - [anon_sym_bit_DASHor] = ACTIONS(1346), - [anon_sym_and] = ACTIONS(1346), - [anon_sym_xor] = ACTIONS(1346), - [anon_sym_or] = ACTIONS(1346), - [aux_sym__val_number_decimal_token1] = ACTIONS(1346), - [aux_sym__val_number_decimal_token2] = ACTIONS(1348), - [anon_sym_DOT2] = ACTIONS(1348), - [aux_sym__val_number_decimal_token3] = ACTIONS(1348), - [aux_sym__val_number_token1] = ACTIONS(1348), - [aux_sym__val_number_token2] = ACTIONS(1348), - [aux_sym__val_number_token3] = ACTIONS(1348), - [aux_sym__val_number_token4] = ACTIONS(1346), - [aux_sym__val_number_token5] = ACTIONS(1348), - [aux_sym__val_number_token6] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1348), - [sym__str_single_quotes] = ACTIONS(1348), - [sym__str_back_ticks] = ACTIONS(1348), - [aux_sym__record_key_token2] = ACTIONS(1346), - [anon_sym_POUND] = ACTIONS(3), + [1237] = { + [sym_comment] = STATE(1237), + [ts_builtin_sym_end] = ACTIONS(3759), + [anon_sym_export] = ACTIONS(3757), + [anon_sym_alias] = ACTIONS(3757), + [anon_sym_let] = ACTIONS(3757), + [anon_sym_let_DASHenv] = ACTIONS(3757), + [anon_sym_mut] = ACTIONS(3757), + [anon_sym_const] = ACTIONS(3757), + [anon_sym_SEMI] = ACTIONS(3757), + [sym_cmd_identifier] = ACTIONS(3757), + [anon_sym_LF] = ACTIONS(3759), + [anon_sym_def] = ACTIONS(3757), + [anon_sym_export_DASHenv] = ACTIONS(3757), + [anon_sym_extern] = ACTIONS(3757), + [anon_sym_module] = ACTIONS(3757), + [anon_sym_use] = ACTIONS(3757), + [anon_sym_LBRACK] = ACTIONS(3757), + [anon_sym_LPAREN] = ACTIONS(3757), + [anon_sym_DOLLAR] = ACTIONS(3757), + [anon_sym_error] = ACTIONS(3757), + [anon_sym_DASH_DASH] = ACTIONS(3757), + [anon_sym_DASH] = ACTIONS(3757), + [anon_sym_break] = ACTIONS(3757), + [anon_sym_continue] = ACTIONS(3757), + [anon_sym_for] = ACTIONS(3757), + [anon_sym_loop] = ACTIONS(3757), + [anon_sym_while] = ACTIONS(3757), + [anon_sym_do] = ACTIONS(3757), + [anon_sym_if] = ACTIONS(3757), + [anon_sym_match] = ACTIONS(3757), + [anon_sym_LBRACE] = ACTIONS(3757), + [anon_sym_DOT_DOT] = ACTIONS(3757), + [anon_sym_try] = ACTIONS(3757), + [anon_sym_return] = ACTIONS(3757), + [anon_sym_source] = ACTIONS(3757), + [anon_sym_source_DASHenv] = ACTIONS(3757), + [anon_sym_register] = ACTIONS(3757), + [anon_sym_hide] = ACTIONS(3757), + [anon_sym_hide_DASHenv] = ACTIONS(3757), + [anon_sym_overlay] = ACTIONS(3757), + [anon_sym_as] = ACTIONS(3757), + [anon_sym_where] = ACTIONS(3757), + [anon_sym_not] = ACTIONS(3757), + [anon_sym_DOT_DOT2] = ACTIONS(1114), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3757), + [anon_sym_DOT_DOT_LT] = ACTIONS(3757), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1116), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1116), + [anon_sym_null] = ACTIONS(3757), + [anon_sym_true] = ACTIONS(3757), + [anon_sym_false] = ACTIONS(3757), + [aux_sym__val_number_decimal_token1] = ACTIONS(3757), + [aux_sym__val_number_decimal_token2] = ACTIONS(3757), + [anon_sym_DOT2] = ACTIONS(3757), + [aux_sym__val_number_decimal_token3] = ACTIONS(3757), + [aux_sym__val_number_token1] = ACTIONS(3757), + [aux_sym__val_number_token2] = ACTIONS(3757), + [aux_sym__val_number_token3] = ACTIONS(3757), + [aux_sym__val_number_token4] = ACTIONS(3757), + [aux_sym__val_number_token5] = ACTIONS(3757), + [aux_sym__val_number_token6] = ACTIONS(3757), + [anon_sym_0b] = ACTIONS(3757), + [anon_sym_0o] = ACTIONS(3757), + [anon_sym_0x] = ACTIONS(3757), + [sym_val_date] = ACTIONS(3757), + [anon_sym_DQUOTE] = ACTIONS(3757), + [sym__str_single_quotes] = ACTIONS(3757), + [sym__str_back_ticks] = ACTIONS(3757), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3757), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3757), + [anon_sym_CARET] = ACTIONS(3757), + [anon_sym_POUND] = ACTIONS(113), }, - [1008] = { - [sym_comment] = STATE(1008), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_alias] = ACTIONS(1362), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_let_DASHenv] = ACTIONS(1362), - [anon_sym_mut] = ACTIONS(1362), - [anon_sym_const] = ACTIONS(1362), - [sym_cmd_identifier] = ACTIONS(1362), - [anon_sym_def] = ACTIONS(1362), - [anon_sym_export_DASHenv] = ACTIONS(1362), - [anon_sym_extern] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_use] = ACTIONS(1362), - [anon_sym_LPAREN] = ACTIONS(1364), - [anon_sym_DOLLAR] = ACTIONS(1364), - [anon_sym_error] = ACTIONS(1362), - [anon_sym_list] = ACTIONS(1362), - [anon_sym_GT] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_break] = ACTIONS(1362), - [anon_sym_continue] = ACTIONS(1362), - [anon_sym_for] = ACTIONS(1362), - [anon_sym_in] = ACTIONS(1362), - [anon_sym_loop] = ACTIONS(1362), - [anon_sym_make] = ACTIONS(1362), - [anon_sym_while] = ACTIONS(1362), - [anon_sym_do] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1362), - [anon_sym_else] = ACTIONS(1362), - [anon_sym_match] = ACTIONS(1362), - [anon_sym_RBRACE] = ACTIONS(1364), - [anon_sym_try] = ACTIONS(1362), - [anon_sym_catch] = ACTIONS(1362), - [anon_sym_return] = ACTIONS(1362), - [anon_sym_source] = ACTIONS(1362), - [anon_sym_source_DASHenv] = ACTIONS(1362), - [anon_sym_register] = ACTIONS(1362), - [anon_sym_hide] = ACTIONS(1362), - [anon_sym_hide_DASHenv] = ACTIONS(1362), - [anon_sym_overlay] = ACTIONS(1362), - [anon_sym_new] = ACTIONS(1362), - [anon_sym_as] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_STAR_STAR] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_SLASH] = ACTIONS(1362), - [anon_sym_mod] = ACTIONS(1362), - [anon_sym_SLASH_SLASH] = ACTIONS(1364), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_bit_DASHshl] = ACTIONS(1362), - [anon_sym_bit_DASHshr] = ACTIONS(1362), - [anon_sym_EQ_EQ] = ACTIONS(1364), - [anon_sym_BANG_EQ] = ACTIONS(1364), - [anon_sym_LT2] = ACTIONS(1362), - [anon_sym_LT_EQ] = ACTIONS(1364), - [anon_sym_GT_EQ] = ACTIONS(1364), - [anon_sym_not_DASHin] = ACTIONS(1362), - [anon_sym_starts_DASHwith] = ACTIONS(1362), - [anon_sym_ends_DASHwith] = ACTIONS(1362), - [anon_sym_EQ_TILDE] = ACTIONS(1364), - [anon_sym_BANG_TILDE] = ACTIONS(1364), - [anon_sym_bit_DASHand] = ACTIONS(1362), - [anon_sym_bit_DASHxor] = ACTIONS(1362), - [anon_sym_bit_DASHor] = ACTIONS(1362), - [anon_sym_and] = ACTIONS(1362), - [anon_sym_xor] = ACTIONS(1362), - [anon_sym_or] = ACTIONS(1362), - [aux_sym__val_number_decimal_token1] = ACTIONS(1362), - [aux_sym__val_number_decimal_token2] = ACTIONS(1364), - [anon_sym_DOT2] = ACTIONS(1364), - [aux_sym__val_number_decimal_token3] = ACTIONS(1364), - [aux_sym__val_number_token1] = ACTIONS(1364), - [aux_sym__val_number_token2] = ACTIONS(1364), - [aux_sym__val_number_token3] = ACTIONS(1364), - [aux_sym__val_number_token4] = ACTIONS(1362), - [aux_sym__val_number_token5] = ACTIONS(1364), - [aux_sym__val_number_token6] = ACTIONS(1362), - [anon_sym_DQUOTE] = ACTIONS(1364), - [sym__str_single_quotes] = ACTIONS(1364), - [sym__str_back_ticks] = ACTIONS(1364), - [aux_sym__record_key_token2] = ACTIONS(1362), + [1238] = { + [sym__expression] = STATE(3760), + [sym_expr_unary] = STATE(6044), + [sym__expr_unary_minus] = STATE(6045), + [sym_expr_binary] = STATE(6044), + [sym__expr_binary_expression] = STATE(6373), + [sym_expr_parenthesized] = STATE(5322), + [sym_val_range] = STATE(3078), + [sym__val_range] = STATE(10109), + [sym__value] = STATE(6044), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(5958), + [sym_val_variable] = STATE(5224), + [sym__var] = STATE(4556), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(4718), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(6041), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_unquoted] = STATE(3761), + [sym__unquoted_anonymous_prefix] = STATE(10819), + [sym_comment] = STATE(1238), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_DASH] = ACTIONS(4094), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(4096), + [anon_sym_not] = ACTIONS(4098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4100), + [anon_sym_DOT_DOT_LT] = ACTIONS(4100), + [anon_sym_null] = ACTIONS(4102), + [anon_sym_true] = ACTIONS(4104), + [anon_sym_false] = ACTIONS(4104), + [aux_sym__val_number_decimal_token1] = ACTIONS(4106), + [aux_sym__val_number_decimal_token2] = ACTIONS(4108), + [anon_sym_DOT2] = ACTIONS(4110), + [aux_sym__val_number_decimal_token3] = ACTIONS(4112), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [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(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(4116), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2950), [anon_sym_POUND] = ACTIONS(3), }, - [1009] = { - [sym_comment] = STATE(1009), - [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), - [sym_cmd_identifier] = ACTIONS(1294), - [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(1296), - [anon_sym_error] = ACTIONS(1294), - [anon_sym_list] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_in] = 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_RBRACE] = ACTIONS(1296), - [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_register] = ACTIONS(1294), - [anon_sym_hide] = ACTIONS(1294), - [anon_sym_hide_DASHenv] = ACTIONS(1294), - [anon_sym_overlay] = ACTIONS(1294), - [anon_sym_new] = ACTIONS(1294), - [anon_sym_as] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_STAR_STAR] = ACTIONS(1296), - [anon_sym_PLUS_PLUS] = ACTIONS(1296), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_mod] = ACTIONS(1294), - [anon_sym_SLASH_SLASH] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_bit_DASHshl] = ACTIONS(1294), - [anon_sym_bit_DASHshr] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1296), - [anon_sym_BANG_EQ] = ACTIONS(1296), - [anon_sym_LT2] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1296), - [anon_sym_GT_EQ] = ACTIONS(1296), - [anon_sym_not_DASHin] = ACTIONS(1294), - [anon_sym_starts_DASHwith] = ACTIONS(1294), - [anon_sym_ends_DASHwith] = ACTIONS(1294), - [anon_sym_EQ_TILDE] = ACTIONS(1296), - [anon_sym_BANG_TILDE] = ACTIONS(1296), - [anon_sym_bit_DASHand] = ACTIONS(1294), - [anon_sym_bit_DASHxor] = ACTIONS(1294), - [anon_sym_bit_DASHor] = ACTIONS(1294), - [anon_sym_and] = ACTIONS(1294), - [anon_sym_xor] = ACTIONS(1294), - [anon_sym_or] = ACTIONS(1294), - [aux_sym__val_number_decimal_token1] = ACTIONS(1294), - [aux_sym__val_number_decimal_token2] = ACTIONS(1296), - [anon_sym_DOT2] = ACTIONS(1296), - [aux_sym__val_number_decimal_token3] = 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(1296), - [aux_sym__val_number_token6] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1296), - [sym__str_single_quotes] = ACTIONS(1296), - [sym__str_back_ticks] = ACTIONS(1296), - [aux_sym__record_key_token2] = ACTIONS(1294), + [1239] = { + [sym__expression] = STATE(9108), + [sym_expr_unary] = STATE(6227), + [sym__expr_unary_minus] = STATE(6230), + [sym_expr_binary] = STATE(6227), + [sym__expr_binary_expression] = STATE(6386), + [sym_expr_parenthesized] = STATE(5772), + [sym_val_range] = STATE(6728), + [sym__val_range] = STATE(10116), + [sym__value] = STATE(6227), + [sym_val_nothing] = STATE(6331), + [sym_val_bool] = STATE(6034), + [sym_val_variable] = STATE(5665), + [sym__var] = STATE(4839), + [sym_val_number] = STATE(6331), + [sym__val_number_decimal] = STATE(4738), + [sym__val_number] = STATE(6217), + [sym_val_duration] = STATE(6331), + [sym_val_filesize] = STATE(6331), + [sym_val_binary] = STATE(6331), + [sym_val_string] = STATE(6331), + [sym__str_double_quotes] = STATE(6261), + [sym_val_interpolated] = STATE(6331), + [sym__inter_single_quotes] = STATE(6276), + [sym__inter_double_quotes] = STATE(6278), + [sym_val_list] = STATE(6331), + [sym_val_record] = STATE(6331), + [sym_val_table] = STATE(6331), + [sym_val_closure] = STATE(6331), + [sym_unquoted] = STATE(9126), + [sym__unquoted_anonymous_prefix] = STATE(10454), + [sym_comment] = STATE(1239), + [anon_sym_LBRACK] = ACTIONS(4118), + [anon_sym_LPAREN] = ACTIONS(4120), + [anon_sym_DOLLAR] = ACTIONS(4122), + [anon_sym_DASH] = ACTIONS(4124), + [anon_sym_LBRACE] = ACTIONS(4126), + [anon_sym_DOT_DOT] = ACTIONS(4128), + [anon_sym_not] = ACTIONS(4130), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4132), + [anon_sym_DOT_DOT_LT] = ACTIONS(4132), + [anon_sym_null] = ACTIONS(4134), + [anon_sym_true] = ACTIONS(4136), + [anon_sym_false] = ACTIONS(4136), + [aux_sym__val_number_decimal_token1] = ACTIONS(4138), + [aux_sym__val_number_decimal_token2] = ACTIONS(4140), + [anon_sym_DOT2] = ACTIONS(4142), + [aux_sym__val_number_decimal_token3] = ACTIONS(4144), + [aux_sym__val_number_token1] = ACTIONS(4146), + [aux_sym__val_number_token2] = ACTIONS(4146), + [aux_sym__val_number_token3] = ACTIONS(4146), + [aux_sym__val_number_token4] = ACTIONS(4148), + [aux_sym__val_number_token5] = ACTIONS(4148), + [aux_sym__val_number_token6] = ACTIONS(4148), + [anon_sym_0b] = ACTIONS(4150), + [anon_sym_0o] = ACTIONS(4152), + [anon_sym_0x] = ACTIONS(4152), + [sym_val_date] = ACTIONS(4154), + [anon_sym_DQUOTE] = ACTIONS(4156), + [sym__str_single_quotes] = ACTIONS(4158), + [sym__str_back_ticks] = ACTIONS(4158), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4160), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4162), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2661), [anon_sym_POUND] = ACTIONS(3), }, - [1010] = { - [sym_comment] = STATE(1010), - [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), - [sym_cmd_identifier] = ACTIONS(1294), - [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(1296), - [anon_sym_error] = ACTIONS(1294), - [anon_sym_list] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_in] = 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_RBRACE] = ACTIONS(1296), - [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_register] = ACTIONS(1294), - [anon_sym_hide] = ACTIONS(1294), - [anon_sym_hide_DASHenv] = ACTIONS(1294), - [anon_sym_overlay] = ACTIONS(1294), - [anon_sym_new] = ACTIONS(1294), - [anon_sym_as] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_STAR_STAR] = ACTIONS(1296), - [anon_sym_PLUS_PLUS] = ACTIONS(1296), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_mod] = ACTIONS(1294), - [anon_sym_SLASH_SLASH] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_bit_DASHshl] = ACTIONS(1294), - [anon_sym_bit_DASHshr] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1296), - [anon_sym_BANG_EQ] = ACTIONS(1296), - [anon_sym_LT2] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1296), - [anon_sym_GT_EQ] = ACTIONS(1296), - [anon_sym_not_DASHin] = ACTIONS(1294), - [anon_sym_starts_DASHwith] = ACTIONS(1294), - [anon_sym_ends_DASHwith] = ACTIONS(1294), - [anon_sym_EQ_TILDE] = ACTIONS(1296), - [anon_sym_BANG_TILDE] = ACTIONS(1296), - [anon_sym_bit_DASHand] = ACTIONS(1294), - [anon_sym_bit_DASHxor] = ACTIONS(1294), - [anon_sym_bit_DASHor] = ACTIONS(1294), - [anon_sym_and] = ACTIONS(1294), - [anon_sym_xor] = ACTIONS(1294), - [anon_sym_or] = ACTIONS(1294), - [aux_sym__val_number_decimal_token1] = ACTIONS(1294), - [aux_sym__val_number_decimal_token2] = ACTIONS(1296), - [anon_sym_DOT2] = ACTIONS(1296), - [aux_sym__val_number_decimal_token3] = 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(1296), - [aux_sym__val_number_token6] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1296), - [sym__str_single_quotes] = ACTIONS(1296), - [sym__str_back_ticks] = ACTIONS(1296), - [aux_sym__record_key_token2] = ACTIONS(1294), + [1240] = { + [sym__expression] = STATE(7774), + [sym_expr_unary] = STATE(5998), + [sym__expr_unary_minus] = STATE(5999), + [sym_expr_binary] = STATE(5998), + [sym__expr_binary_expression] = STATE(6390), + [sym_expr_parenthesized] = STATE(5273), + [sym_val_range] = STATE(6728), + [sym__val_range] = STATE(10104), + [sym__value] = STATE(5998), + [sym_val_nothing] = STATE(6108), + [sym_val_bool] = STATE(5928), + [sym_val_variable] = STATE(5385), + [sym__var] = STATE(4639), + [sym_val_number] = STATE(6108), + [sym__val_number_decimal] = STATE(4456), + [sym__val_number] = STATE(6110), + [sym_val_duration] = STATE(6108), + [sym_val_filesize] = STATE(6108), + [sym_val_binary] = STATE(6108), + [sym_val_string] = STATE(6108), + [sym__str_double_quotes] = STATE(6195), + [sym_val_interpolated] = STATE(6108), + [sym__inter_single_quotes] = STATE(6197), + [sym__inter_double_quotes] = STATE(6198), + [sym_val_list] = STATE(6108), + [sym_val_record] = STATE(6108), + [sym_val_table] = STATE(6108), + [sym_val_closure] = STATE(6108), + [sym_unquoted] = STATE(7775), + [sym__unquoted_anonymous_prefix] = STATE(10755), + [sym_comment] = STATE(1240), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(2804), + [anon_sym_DOLLAR] = ACTIONS(2806), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_DOT_DOT] = ACTIONS(4170), + [anon_sym_not] = ACTIONS(4172), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4174), + [anon_sym_DOT_DOT_LT] = ACTIONS(4174), + [anon_sym_null] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [aux_sym__val_number_decimal_token1] = ACTIONS(4180), + [aux_sym__val_number_decimal_token2] = ACTIONS(4182), + [anon_sym_DOT2] = ACTIONS(4184), + [aux_sym__val_number_decimal_token3] = ACTIONS(4186), + [aux_sym__val_number_token1] = ACTIONS(2828), + [aux_sym__val_number_token2] = ACTIONS(2828), + [aux_sym__val_number_token3] = ACTIONS(2828), + [aux_sym__val_number_token4] = ACTIONS(4188), + [aux_sym__val_number_token5] = ACTIONS(4188), + [aux_sym__val_number_token6] = ACTIONS(4188), + [anon_sym_0b] = ACTIONS(2832), + [anon_sym_0o] = ACTIONS(2834), + [anon_sym_0x] = ACTIONS(2834), + [sym_val_date] = ACTIONS(4190), + [anon_sym_DQUOTE] = ACTIONS(4192), + [sym__str_single_quotes] = ACTIONS(4194), + [sym__str_back_ticks] = ACTIONS(4194), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2844), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2848), [anon_sym_POUND] = ACTIONS(3), }, - [1011] = { - [sym_comment] = STATE(1011), - [anon_sym_export] = ACTIONS(1308), - [anon_sym_alias] = ACTIONS(1308), - [anon_sym_let] = ACTIONS(1308), - [anon_sym_let_DASHenv] = ACTIONS(1308), - [anon_sym_mut] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [sym_cmd_identifier] = ACTIONS(1308), - [anon_sym_def] = ACTIONS(1308), - [anon_sym_export_DASHenv] = ACTIONS(1308), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym_module] = ACTIONS(1308), - [anon_sym_use] = ACTIONS(1308), - [anon_sym_LPAREN] = ACTIONS(1310), - [anon_sym_DOLLAR] = ACTIONS(1310), - [anon_sym_error] = ACTIONS(1308), - [anon_sym_list] = ACTIONS(1308), - [anon_sym_GT] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_break] = ACTIONS(1308), - [anon_sym_continue] = ACTIONS(1308), - [anon_sym_for] = ACTIONS(1308), - [anon_sym_in] = ACTIONS(1308), - [anon_sym_loop] = ACTIONS(1308), - [anon_sym_make] = ACTIONS(1308), - [anon_sym_while] = ACTIONS(1308), - [anon_sym_do] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_else] = ACTIONS(1308), - [anon_sym_match] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1310), - [anon_sym_try] = ACTIONS(1308), - [anon_sym_catch] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1308), - [anon_sym_source] = ACTIONS(1308), - [anon_sym_source_DASHenv] = ACTIONS(1308), - [anon_sym_register] = ACTIONS(1308), - [anon_sym_hide] = ACTIONS(1308), - [anon_sym_hide_DASHenv] = ACTIONS(1308), - [anon_sym_overlay] = ACTIONS(1308), - [anon_sym_new] = ACTIONS(1308), - [anon_sym_as] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_STAR_STAR] = ACTIONS(1310), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_SLASH] = ACTIONS(1308), - [anon_sym_mod] = ACTIONS(1308), - [anon_sym_SLASH_SLASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_bit_DASHshl] = ACTIONS(1308), - [anon_sym_bit_DASHshr] = ACTIONS(1308), - [anon_sym_EQ_EQ] = ACTIONS(1310), - [anon_sym_BANG_EQ] = ACTIONS(1310), - [anon_sym_LT2] = ACTIONS(1308), - [anon_sym_LT_EQ] = ACTIONS(1310), - [anon_sym_GT_EQ] = ACTIONS(1310), - [anon_sym_not_DASHin] = ACTIONS(1308), - [anon_sym_starts_DASHwith] = ACTIONS(1308), - [anon_sym_ends_DASHwith] = ACTIONS(1308), - [anon_sym_EQ_TILDE] = ACTIONS(1310), - [anon_sym_BANG_TILDE] = ACTIONS(1310), - [anon_sym_bit_DASHand] = ACTIONS(1308), - [anon_sym_bit_DASHxor] = ACTIONS(1308), - [anon_sym_bit_DASHor] = ACTIONS(1308), - [anon_sym_and] = ACTIONS(1308), - [anon_sym_xor] = ACTIONS(1308), - [anon_sym_or] = ACTIONS(1308), - [aux_sym__val_number_decimal_token1] = ACTIONS(1308), - [aux_sym__val_number_decimal_token2] = ACTIONS(1310), - [anon_sym_DOT2] = ACTIONS(1310), - [aux_sym__val_number_decimal_token3] = ACTIONS(1310), - [aux_sym__val_number_token1] = ACTIONS(1310), - [aux_sym__val_number_token2] = ACTIONS(1310), - [aux_sym__val_number_token3] = ACTIONS(1310), - [aux_sym__val_number_token4] = ACTIONS(1308), - [aux_sym__val_number_token5] = ACTIONS(1310), - [aux_sym__val_number_token6] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1310), - [sym__str_single_quotes] = ACTIONS(1310), - [sym__str_back_ticks] = ACTIONS(1310), - [aux_sym__record_key_token2] = ACTIONS(1308), - [anon_sym_POUND] = ACTIONS(3), + [1241] = { + [sym__expr_parenthesized_immediate] = STATE(10023), + [sym_comment] = STATE(1241), + [anon_sym_export] = ACTIONS(4196), + [anon_sym_alias] = ACTIONS(4196), + [anon_sym_let] = ACTIONS(4196), + [anon_sym_let_DASHenv] = ACTIONS(4196), + [anon_sym_mut] = ACTIONS(4196), + [anon_sym_const] = ACTIONS(4196), + [anon_sym_SEMI] = ACTIONS(4196), + [sym_cmd_identifier] = ACTIONS(4196), + [anon_sym_LF] = ACTIONS(4198), + [anon_sym_def] = ACTIONS(4196), + [anon_sym_export_DASHenv] = ACTIONS(4196), + [anon_sym_extern] = ACTIONS(4196), + [anon_sym_module] = ACTIONS(4196), + [anon_sym_use] = ACTIONS(4196), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_RPAREN] = ACTIONS(4196), + [anon_sym_DOLLAR] = ACTIONS(4196), + [anon_sym_error] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_break] = ACTIONS(4196), + [anon_sym_continue] = ACTIONS(4196), + [anon_sym_for] = ACTIONS(4196), + [anon_sym_loop] = ACTIONS(4196), + [anon_sym_while] = ACTIONS(4196), + [anon_sym_do] = ACTIONS(4196), + [anon_sym_if] = ACTIONS(4196), + [anon_sym_match] = ACTIONS(4196), + [anon_sym_LBRACE] = ACTIONS(4196), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_try] = ACTIONS(4196), + [anon_sym_return] = ACTIONS(4196), + [anon_sym_source] = ACTIONS(4196), + [anon_sym_source_DASHenv] = ACTIONS(4196), + [anon_sym_register] = ACTIONS(4196), + [anon_sym_hide] = ACTIONS(4196), + [anon_sym_hide_DASHenv] = ACTIONS(4196), + [anon_sym_overlay] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_where] = ACTIONS(4196), + [anon_sym_not] = ACTIONS(4196), + [anon_sym_LPAREN2] = ACTIONS(2187), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4196), + [anon_sym_DOT_DOT_LT] = ACTIONS(4196), + [anon_sym_null] = ACTIONS(4196), + [anon_sym_true] = ACTIONS(4196), + [anon_sym_false] = ACTIONS(4196), + [aux_sym__val_number_decimal_token1] = ACTIONS(4196), + [aux_sym__val_number_decimal_token2] = ACTIONS(4196), + [anon_sym_DOT2] = ACTIONS(4196), + [aux_sym__val_number_decimal_token3] = ACTIONS(4196), + [aux_sym__val_number_token1] = ACTIONS(4196), + [aux_sym__val_number_token2] = ACTIONS(4196), + [aux_sym__val_number_token3] = ACTIONS(4196), + [aux_sym__val_number_token4] = ACTIONS(4196), + [aux_sym__val_number_token5] = ACTIONS(4196), + [aux_sym__val_number_token6] = ACTIONS(4196), + [anon_sym_0b] = ACTIONS(4196), + [anon_sym_0o] = ACTIONS(4196), + [anon_sym_0x] = ACTIONS(4196), + [sym_val_date] = ACTIONS(4196), + [anon_sym_DQUOTE] = ACTIONS(4196), + [sym__str_single_quotes] = ACTIONS(4196), + [sym__str_back_ticks] = ACTIONS(4196), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4196), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4196), + [anon_sym_CARET] = ACTIONS(4196), + [anon_sym_POUND] = ACTIONS(113), }, - [1012] = { - [sym_comment] = STATE(1012), - [anon_sym_export] = ACTIONS(1312), - [anon_sym_alias] = ACTIONS(1312), - [anon_sym_let] = ACTIONS(1312), - [anon_sym_let_DASHenv] = ACTIONS(1312), - [anon_sym_mut] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [sym_cmd_identifier] = ACTIONS(1312), - [anon_sym_def] = ACTIONS(1312), - [anon_sym_export_DASHenv] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym_module] = ACTIONS(1312), - [anon_sym_use] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_DOLLAR] = ACTIONS(1314), - [anon_sym_error] = ACTIONS(1312), - [anon_sym_list] = ACTIONS(1312), - [anon_sym_GT] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_in] = ACTIONS(1312), - [anon_sym_loop] = ACTIONS(1312), - [anon_sym_make] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_else] = ACTIONS(1312), - [anon_sym_match] = ACTIONS(1312), - [anon_sym_RBRACE] = ACTIONS(1314), - [anon_sym_try] = ACTIONS(1312), - [anon_sym_catch] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_source] = ACTIONS(1312), - [anon_sym_source_DASHenv] = ACTIONS(1312), - [anon_sym_register] = ACTIONS(1312), - [anon_sym_hide] = ACTIONS(1312), - [anon_sym_hide_DASHenv] = ACTIONS(1312), - [anon_sym_overlay] = ACTIONS(1312), - [anon_sym_new] = ACTIONS(1312), - [anon_sym_as] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_STAR_STAR] = ACTIONS(1314), - [anon_sym_PLUS_PLUS] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(1312), - [anon_sym_mod] = ACTIONS(1312), - [anon_sym_SLASH_SLASH] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_bit_DASHshl] = ACTIONS(1312), - [anon_sym_bit_DASHshr] = ACTIONS(1312), - [anon_sym_EQ_EQ] = ACTIONS(1314), - [anon_sym_BANG_EQ] = ACTIONS(1314), - [anon_sym_LT2] = ACTIONS(1312), - [anon_sym_LT_EQ] = ACTIONS(1314), - [anon_sym_GT_EQ] = ACTIONS(1314), - [anon_sym_not_DASHin] = ACTIONS(1312), - [anon_sym_starts_DASHwith] = ACTIONS(1312), - [anon_sym_ends_DASHwith] = ACTIONS(1312), - [anon_sym_EQ_TILDE] = ACTIONS(1314), - [anon_sym_BANG_TILDE] = ACTIONS(1314), - [anon_sym_bit_DASHand] = ACTIONS(1312), - [anon_sym_bit_DASHxor] = ACTIONS(1312), - [anon_sym_bit_DASHor] = ACTIONS(1312), - [anon_sym_and] = ACTIONS(1312), - [anon_sym_xor] = ACTIONS(1312), - [anon_sym_or] = ACTIONS(1312), - [aux_sym__val_number_decimal_token1] = ACTIONS(1312), - [aux_sym__val_number_decimal_token2] = ACTIONS(1314), - [anon_sym_DOT2] = ACTIONS(1314), - [aux_sym__val_number_decimal_token3] = ACTIONS(1314), - [aux_sym__val_number_token1] = ACTIONS(1314), - [aux_sym__val_number_token2] = ACTIONS(1314), - [aux_sym__val_number_token3] = ACTIONS(1314), - [aux_sym__val_number_token4] = ACTIONS(1312), - [aux_sym__val_number_token5] = ACTIONS(1314), - [aux_sym__val_number_token6] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1314), - [sym__str_single_quotes] = ACTIONS(1314), - [sym__str_back_ticks] = ACTIONS(1314), - [aux_sym__record_key_token2] = ACTIONS(1312), + [1242] = { + [sym__expression] = STATE(4962), + [sym_expr_unary] = STATE(2648), + [sym__expr_unary_minus] = STATE(2647), + [sym_expr_binary] = STATE(2648), + [sym__expr_binary_expression] = STATE(6369), + [sym_expr_parenthesized] = STATE(2301), + [sym_val_range] = STATE(4933), + [sym__val_range] = STATE(10160), + [sym__value] = STATE(2648), + [sym_val_nothing] = STATE(2681), + [sym_val_bool] = STATE(2639), + [sym_val_variable] = STATE(2332), + [sym__var] = STATE(1317), + [sym_val_number] = STATE(2681), + [sym__val_number_decimal] = STATE(1210), + [sym__val_number] = STATE(2705), + [sym_val_duration] = STATE(2681), + [sym_val_filesize] = STATE(2681), + [sym_val_binary] = STATE(2681), + [sym_val_string] = STATE(2681), + [sym__str_double_quotes] = STATE(2701), + [sym_val_interpolated] = STATE(2681), + [sym__inter_single_quotes] = STATE(2654), + [sym__inter_double_quotes] = STATE(2655), + [sym_val_list] = STATE(2681), + [sym_val_record] = STATE(2681), + [sym_val_table] = STATE(2681), + [sym_val_closure] = STATE(2681), + [sym_unquoted] = STATE(4963), + [sym__unquoted_anonymous_prefix] = STATE(10345), + [sym_comment] = STATE(1242), + [anon_sym_LBRACK] = ACTIONS(4200), + [anon_sym_LPAREN] = ACTIONS(4202), + [anon_sym_DOLLAR] = ACTIONS(4204), + [anon_sym_DASH] = ACTIONS(4206), + [anon_sym_LBRACE] = ACTIONS(4208), + [anon_sym_DOT_DOT] = ACTIONS(4210), + [anon_sym_not] = ACTIONS(4212), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4214), + [anon_sym_DOT_DOT_LT] = ACTIONS(4214), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_true] = ACTIONS(4218), + [anon_sym_false] = ACTIONS(4218), + [aux_sym__val_number_decimal_token1] = ACTIONS(4220), + [aux_sym__val_number_decimal_token2] = ACTIONS(4222), + [anon_sym_DOT2] = ACTIONS(4224), + [aux_sym__val_number_decimal_token3] = ACTIONS(4226), + [aux_sym__val_number_token1] = ACTIONS(4228), + [aux_sym__val_number_token2] = ACTIONS(4228), + [aux_sym__val_number_token3] = ACTIONS(4228), + [aux_sym__val_number_token4] = ACTIONS(4230), + [aux_sym__val_number_token5] = ACTIONS(4230), + [aux_sym__val_number_token6] = ACTIONS(4230), + [anon_sym_0b] = ACTIONS(4232), + [anon_sym_0o] = ACTIONS(4234), + [anon_sym_0x] = ACTIONS(4234), + [sym_val_date] = ACTIONS(4236), + [anon_sym_DQUOTE] = ACTIONS(4238), + [sym__str_single_quotes] = ACTIONS(4240), + [sym__str_back_ticks] = ACTIONS(4240), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4242), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4244), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(4246), [anon_sym_POUND] = ACTIONS(3), }, - [1013] = { - [sym_comment] = STATE(1013), - [anon_sym_export] = ACTIONS(1186), - [anon_sym_alias] = ACTIONS(1186), - [anon_sym_let] = ACTIONS(1186), - [anon_sym_let_DASHenv] = ACTIONS(1186), - [anon_sym_mut] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1186), - [sym_cmd_identifier] = ACTIONS(1186), - [anon_sym_def] = ACTIONS(1186), - [anon_sym_export_DASHenv] = ACTIONS(1186), - [anon_sym_extern] = ACTIONS(1186), - [anon_sym_module] = ACTIONS(1186), - [anon_sym_use] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(1188), - [anon_sym_DOLLAR] = ACTIONS(1188), - [anon_sym_error] = ACTIONS(1186), - [anon_sym_list] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1186), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1186), - [anon_sym_in] = ACTIONS(1186), - [anon_sym_loop] = ACTIONS(1186), - [anon_sym_make] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_do] = ACTIONS(1186), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_else] = ACTIONS(1186), - [anon_sym_match] = ACTIONS(1186), - [anon_sym_RBRACE] = ACTIONS(1188), - [anon_sym_try] = ACTIONS(1186), - [anon_sym_catch] = ACTIONS(1186), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_source] = ACTIONS(1186), - [anon_sym_source_DASHenv] = ACTIONS(1186), - [anon_sym_register] = ACTIONS(1186), - [anon_sym_hide] = ACTIONS(1186), - [anon_sym_hide_DASHenv] = ACTIONS(1186), - [anon_sym_overlay] = ACTIONS(1186), - [anon_sym_new] = ACTIONS(1186), - [anon_sym_as] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_STAR_STAR] = ACTIONS(1188), - [anon_sym_PLUS_PLUS] = ACTIONS(1188), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_mod] = ACTIONS(1186), - [anon_sym_SLASH_SLASH] = ACTIONS(1188), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_bit_DASHshl] = ACTIONS(1186), - [anon_sym_bit_DASHshr] = ACTIONS(1186), - [anon_sym_EQ_EQ] = ACTIONS(1188), - [anon_sym_BANG_EQ] = ACTIONS(1188), - [anon_sym_LT2] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1188), - [anon_sym_GT_EQ] = ACTIONS(1188), - [anon_sym_not_DASHin] = ACTIONS(1186), - [anon_sym_starts_DASHwith] = ACTIONS(1186), - [anon_sym_ends_DASHwith] = ACTIONS(1186), - [anon_sym_EQ_TILDE] = ACTIONS(1188), - [anon_sym_BANG_TILDE] = ACTIONS(1188), - [anon_sym_bit_DASHand] = ACTIONS(1186), - [anon_sym_bit_DASHxor] = ACTIONS(1186), - [anon_sym_bit_DASHor] = ACTIONS(1186), - [anon_sym_and] = ACTIONS(1186), - [anon_sym_xor] = ACTIONS(1186), - [anon_sym_or] = ACTIONS(1186), - [aux_sym__val_number_decimal_token1] = ACTIONS(1186), - [aux_sym__val_number_decimal_token2] = ACTIONS(1188), - [anon_sym_DOT2] = ACTIONS(1188), - [aux_sym__val_number_decimal_token3] = ACTIONS(1188), - [aux_sym__val_number_token1] = ACTIONS(1188), - [aux_sym__val_number_token2] = ACTIONS(1188), - [aux_sym__val_number_token3] = ACTIONS(1188), - [aux_sym__val_number_token4] = ACTIONS(1186), - [aux_sym__val_number_token5] = ACTIONS(1188), - [aux_sym__val_number_token6] = ACTIONS(1186), - [anon_sym_DQUOTE] = ACTIONS(1188), - [sym__str_single_quotes] = ACTIONS(1188), - [sym__str_back_ticks] = ACTIONS(1188), - [aux_sym__record_key_token2] = ACTIONS(1186), + [1243] = { + [sym__expression] = STATE(9108), + [sym_expr_unary] = STATE(4736), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4736), + [sym__expr_binary_expression] = STATE(6382), + [sym_expr_parenthesized] = STATE(5576), + [sym_val_range] = STATE(6728), + [sym__val_range] = STATE(10116), + [sym__value] = STATE(4736), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(6091), + [sym_val_variable] = STATE(5790), + [sym__var] = STATE(4814), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(4560), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(9126), + [sym__unquoted_anonymous_prefix] = STATE(10454), + [sym_comment] = STATE(1243), + [anon_sym_LBRACK] = ACTIONS(4248), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_DOLLAR] = ACTIONS(4252), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4256), + [anon_sym_DOT_DOT] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4262), + [anon_sym_DOT_DOT_LT] = ACTIONS(4262), + [anon_sym_null] = ACTIONS(4264), + [anon_sym_true] = ACTIONS(4266), + [anon_sym_false] = ACTIONS(4266), + [aux_sym__val_number_decimal_token1] = ACTIONS(4268), + [aux_sym__val_number_decimal_token2] = ACTIONS(4270), + [anon_sym_DOT2] = ACTIONS(4272), + [aux_sym__val_number_decimal_token3] = ACTIONS(4274), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(4278), + [aux_sym__val_number_token5] = ACTIONS(4278), + [aux_sym__val_number_token6] = ACTIONS(4278), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(4284), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2661), [anon_sym_POUND] = ACTIONS(3), }, - [1014] = { - [sym_comment] = STATE(1014), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_list] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_make] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_else] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_catch] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_new] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1370), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1370), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [aux_sym__record_key_token2] = ACTIONS(1368), + [1244] = { + [sym__expression] = STATE(4764), + [sym_expr_unary] = STATE(2616), + [sym__expr_unary_minus] = STATE(2540), + [sym_expr_binary] = STATE(2616), + [sym__expr_binary_expression] = STATE(6389), + [sym_expr_parenthesized] = STATE(2235), + [sym_val_range] = STATE(4770), + [sym__val_range] = STATE(10182), + [sym__value] = STATE(2616), + [sym_val_nothing] = STATE(2556), + [sym_val_bool] = STATE(2480), + [sym_val_variable] = STATE(2220), + [sym__var] = STATE(1196), + [sym_val_number] = STATE(2556), + [sym__val_number_decimal] = STATE(1064), + [sym__val_number] = STATE(2558), + [sym_val_duration] = STATE(2556), + [sym_val_filesize] = STATE(2556), + [sym_val_binary] = STATE(2556), + [sym_val_string] = STATE(2556), + [sym__str_double_quotes] = STATE(2557), + [sym_val_interpolated] = STATE(2556), + [sym__inter_single_quotes] = STATE(2570), + [sym__inter_double_quotes] = STATE(2571), + [sym_val_list] = STATE(2556), + [sym_val_record] = STATE(2556), + [sym_val_table] = STATE(2556), + [sym_val_closure] = STATE(2556), + [sym_unquoted] = STATE(4765), + [sym__unquoted_anonymous_prefix] = STATE(10873), + [sym_comment] = STATE(1244), + [anon_sym_LBRACK] = ACTIONS(4294), + [anon_sym_LPAREN] = ACTIONS(4296), + [anon_sym_DOLLAR] = ACTIONS(4298), + [anon_sym_DASH] = ACTIONS(4300), + [anon_sym_LBRACE] = ACTIONS(4302), + [anon_sym_DOT_DOT] = ACTIONS(4304), + [anon_sym_not] = ACTIONS(4306), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4308), + [anon_sym_DOT_DOT_LT] = ACTIONS(4308), + [anon_sym_null] = ACTIONS(4310), + [anon_sym_true] = ACTIONS(4312), + [anon_sym_false] = ACTIONS(4312), + [aux_sym__val_number_decimal_token1] = ACTIONS(4314), + [aux_sym__val_number_decimal_token2] = ACTIONS(4316), + [anon_sym_DOT2] = ACTIONS(4318), + [aux_sym__val_number_decimal_token3] = ACTIONS(4320), + [aux_sym__val_number_token1] = ACTIONS(4322), + [aux_sym__val_number_token2] = ACTIONS(4322), + [aux_sym__val_number_token3] = ACTIONS(4322), + [aux_sym__val_number_token4] = ACTIONS(4324), + [aux_sym__val_number_token5] = ACTIONS(4324), + [aux_sym__val_number_token6] = ACTIONS(4324), + [anon_sym_0b] = ACTIONS(4326), + [anon_sym_0o] = ACTIONS(4328), + [anon_sym_0x] = ACTIONS(4328), + [sym_val_date] = ACTIONS(4330), + [anon_sym_DQUOTE] = ACTIONS(4332), + [sym__str_single_quotes] = ACTIONS(4334), + [sym__str_back_ticks] = ACTIONS(4334), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4336), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4338), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(4340), [anon_sym_POUND] = ACTIONS(3), }, - [1015] = { - [sym_comment] = STATE(1015), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_alias] = ACTIONS(1332), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_let_DASHenv] = ACTIONS(1332), - [anon_sym_mut] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [sym_cmd_identifier] = ACTIONS(1332), - [anon_sym_def] = ACTIONS(1332), - [anon_sym_export_DASHenv] = ACTIONS(1332), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_use] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1334), - [anon_sym_error] = ACTIONS(1332), - [anon_sym_list] = ACTIONS(1332), - [anon_sym_GT] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_in] = ACTIONS(1332), - [anon_sym_loop] = ACTIONS(1332), - [anon_sym_make] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_do] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_else] = ACTIONS(1332), - [anon_sym_match] = ACTIONS(1332), - [anon_sym_RBRACE] = ACTIONS(1334), - [anon_sym_try] = ACTIONS(1332), - [anon_sym_catch] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_source] = ACTIONS(1332), - [anon_sym_source_DASHenv] = ACTIONS(1332), - [anon_sym_register] = ACTIONS(1332), - [anon_sym_hide] = ACTIONS(1332), - [anon_sym_hide_DASHenv] = ACTIONS(1332), - [anon_sym_overlay] = ACTIONS(1332), - [anon_sym_new] = ACTIONS(1332), - [anon_sym_as] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_STAR_STAR] = ACTIONS(1334), - [anon_sym_PLUS_PLUS] = ACTIONS(1334), - [anon_sym_SLASH] = ACTIONS(1332), - [anon_sym_mod] = ACTIONS(1332), - [anon_sym_SLASH_SLASH] = ACTIONS(1334), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_bit_DASHshl] = ACTIONS(1332), - [anon_sym_bit_DASHshr] = ACTIONS(1332), - [anon_sym_EQ_EQ] = ACTIONS(1334), - [anon_sym_BANG_EQ] = ACTIONS(1334), - [anon_sym_LT2] = ACTIONS(1332), - [anon_sym_LT_EQ] = ACTIONS(1334), - [anon_sym_GT_EQ] = ACTIONS(1334), - [anon_sym_not_DASHin] = ACTIONS(1332), - [anon_sym_starts_DASHwith] = ACTIONS(1332), - [anon_sym_ends_DASHwith] = ACTIONS(1332), - [anon_sym_EQ_TILDE] = ACTIONS(1334), - [anon_sym_BANG_TILDE] = ACTIONS(1334), - [anon_sym_bit_DASHand] = ACTIONS(1332), - [anon_sym_bit_DASHxor] = ACTIONS(1332), - [anon_sym_bit_DASHor] = ACTIONS(1332), - [anon_sym_and] = ACTIONS(1332), - [anon_sym_xor] = ACTIONS(1332), - [anon_sym_or] = ACTIONS(1332), - [aux_sym__val_number_decimal_token1] = ACTIONS(1332), - [aux_sym__val_number_decimal_token2] = ACTIONS(1334), - [anon_sym_DOT2] = ACTIONS(1334), - [aux_sym__val_number_decimal_token3] = ACTIONS(1334), - [aux_sym__val_number_token1] = ACTIONS(1334), - [aux_sym__val_number_token2] = ACTIONS(1334), - [aux_sym__val_number_token3] = ACTIONS(1334), - [aux_sym__val_number_token4] = ACTIONS(1332), - [aux_sym__val_number_token5] = ACTIONS(1334), - [aux_sym__val_number_token6] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1334), - [sym__str_single_quotes] = ACTIONS(1334), - [sym__str_back_ticks] = ACTIONS(1334), - [aux_sym__record_key_token2] = ACTIONS(1332), - [anon_sym_POUND] = ACTIONS(3), + [1245] = { + [sym__expr_parenthesized_immediate] = STATE(10434), + [sym_comment] = STATE(1245), + [anon_sym_export] = ACTIONS(4342), + [anon_sym_alias] = ACTIONS(4342), + [anon_sym_let] = ACTIONS(4342), + [anon_sym_let_DASHenv] = ACTIONS(4342), + [anon_sym_mut] = ACTIONS(4342), + [anon_sym_const] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4342), + [sym_cmd_identifier] = ACTIONS(4342), + [anon_sym_LF] = ACTIONS(4344), + [anon_sym_def] = ACTIONS(4342), + [anon_sym_export_DASHenv] = ACTIONS(4342), + [anon_sym_extern] = ACTIONS(4342), + [anon_sym_module] = ACTIONS(4342), + [anon_sym_use] = ACTIONS(4342), + [anon_sym_LBRACK] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4342), + [anon_sym_RPAREN] = ACTIONS(4342), + [anon_sym_DOLLAR] = ACTIONS(4342), + [anon_sym_error] = ACTIONS(4342), + [anon_sym_DASH_DASH] = ACTIONS(4342), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_break] = ACTIONS(4342), + [anon_sym_continue] = ACTIONS(4342), + [anon_sym_for] = ACTIONS(4342), + [anon_sym_loop] = ACTIONS(4342), + [anon_sym_while] = ACTIONS(4342), + [anon_sym_do] = ACTIONS(4342), + [anon_sym_if] = ACTIONS(4342), + [anon_sym_match] = ACTIONS(4342), + [anon_sym_LBRACE] = ACTIONS(4342), + [anon_sym_RBRACE] = ACTIONS(4342), + [anon_sym_DOT_DOT] = ACTIONS(4342), + [anon_sym_try] = ACTIONS(4342), + [anon_sym_return] = ACTIONS(4342), + [anon_sym_source] = ACTIONS(4342), + [anon_sym_source_DASHenv] = ACTIONS(4342), + [anon_sym_register] = ACTIONS(4342), + [anon_sym_hide] = ACTIONS(4342), + [anon_sym_hide_DASHenv] = ACTIONS(4342), + [anon_sym_overlay] = ACTIONS(4342), + [anon_sym_as] = ACTIONS(4342), + [anon_sym_where] = ACTIONS(4342), + [anon_sym_not] = ACTIONS(4342), + [anon_sym_LPAREN2] = ACTIONS(2187), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4342), + [anon_sym_DOT_DOT_LT] = ACTIONS(4342), + [anon_sym_null] = ACTIONS(4342), + [anon_sym_true] = ACTIONS(4342), + [anon_sym_false] = ACTIONS(4342), + [aux_sym__val_number_decimal_token1] = ACTIONS(4342), + [aux_sym__val_number_decimal_token2] = ACTIONS(4342), + [anon_sym_DOT2] = ACTIONS(4342), + [aux_sym__val_number_decimal_token3] = ACTIONS(4342), + [aux_sym__val_number_token1] = ACTIONS(4342), + [aux_sym__val_number_token2] = ACTIONS(4342), + [aux_sym__val_number_token3] = ACTIONS(4342), + [aux_sym__val_number_token4] = ACTIONS(4342), + [aux_sym__val_number_token5] = ACTIONS(4342), + [aux_sym__val_number_token6] = ACTIONS(4342), + [anon_sym_0b] = ACTIONS(4342), + [anon_sym_0o] = ACTIONS(4342), + [anon_sym_0x] = ACTIONS(4342), + [sym_val_date] = ACTIONS(4342), + [anon_sym_DQUOTE] = ACTIONS(4342), + [sym__str_single_quotes] = ACTIONS(4342), + [sym__str_back_ticks] = ACTIONS(4342), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4342), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4342), + [anon_sym_POUND] = ACTIONS(113), }, - [1016] = { - [sym_comment] = STATE(1016), - [anon_sym_export] = ACTIONS(1336), - [anon_sym_alias] = ACTIONS(1336), - [anon_sym_let] = ACTIONS(1336), - [anon_sym_let_DASHenv] = ACTIONS(1336), - [anon_sym_mut] = ACTIONS(1336), - [anon_sym_const] = ACTIONS(1336), - [sym_cmd_identifier] = ACTIONS(1336), - [anon_sym_def] = ACTIONS(1336), - [anon_sym_export_DASHenv] = ACTIONS(1336), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym_module] = ACTIONS(1336), - [anon_sym_use] = ACTIONS(1336), - [anon_sym_LPAREN] = ACTIONS(1338), - [anon_sym_DOLLAR] = ACTIONS(1338), - [anon_sym_error] = ACTIONS(1336), - [anon_sym_list] = ACTIONS(1336), - [anon_sym_GT] = ACTIONS(1336), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_break] = ACTIONS(1336), - [anon_sym_continue] = ACTIONS(1336), - [anon_sym_for] = ACTIONS(1336), - [anon_sym_in] = ACTIONS(1336), - [anon_sym_loop] = ACTIONS(1336), - [anon_sym_make] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1336), - [anon_sym_do] = ACTIONS(1336), - [anon_sym_if] = ACTIONS(1336), - [anon_sym_else] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1336), - [anon_sym_RBRACE] = ACTIONS(1338), - [anon_sym_try] = ACTIONS(1336), - [anon_sym_catch] = ACTIONS(1336), - [anon_sym_return] = ACTIONS(1336), - [anon_sym_source] = ACTIONS(1336), - [anon_sym_source_DASHenv] = ACTIONS(1336), - [anon_sym_register] = ACTIONS(1336), - [anon_sym_hide] = ACTIONS(1336), - [anon_sym_hide_DASHenv] = ACTIONS(1336), - [anon_sym_overlay] = ACTIONS(1336), - [anon_sym_new] = ACTIONS(1336), - [anon_sym_as] = ACTIONS(1336), - [anon_sym_STAR] = ACTIONS(1336), - [anon_sym_STAR_STAR] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [anon_sym_SLASH] = ACTIONS(1336), - [anon_sym_mod] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1336), - [anon_sym_bit_DASHshl] = ACTIONS(1336), - [anon_sym_bit_DASHshr] = ACTIONS(1336), - [anon_sym_EQ_EQ] = ACTIONS(1338), - [anon_sym_BANG_EQ] = ACTIONS(1338), - [anon_sym_LT2] = ACTIONS(1336), - [anon_sym_LT_EQ] = ACTIONS(1338), - [anon_sym_GT_EQ] = ACTIONS(1338), - [anon_sym_not_DASHin] = ACTIONS(1336), - [anon_sym_starts_DASHwith] = ACTIONS(1336), - [anon_sym_ends_DASHwith] = ACTIONS(1336), - [anon_sym_EQ_TILDE] = ACTIONS(1338), - [anon_sym_BANG_TILDE] = ACTIONS(1338), - [anon_sym_bit_DASHand] = ACTIONS(1336), - [anon_sym_bit_DASHxor] = ACTIONS(1336), - [anon_sym_bit_DASHor] = ACTIONS(1336), - [anon_sym_and] = ACTIONS(1336), - [anon_sym_xor] = ACTIONS(1336), - [anon_sym_or] = ACTIONS(1336), - [aux_sym__val_number_decimal_token1] = ACTIONS(1336), - [aux_sym__val_number_decimal_token2] = ACTIONS(1338), - [anon_sym_DOT2] = ACTIONS(1338), - [aux_sym__val_number_decimal_token3] = ACTIONS(1338), - [aux_sym__val_number_token1] = ACTIONS(1338), - [aux_sym__val_number_token2] = ACTIONS(1338), - [aux_sym__val_number_token3] = ACTIONS(1338), - [aux_sym__val_number_token4] = ACTIONS(1336), - [aux_sym__val_number_token5] = ACTIONS(1338), - [aux_sym__val_number_token6] = ACTIONS(1336), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym__str_single_quotes] = ACTIONS(1338), - [sym__str_back_ticks] = ACTIONS(1338), - [aux_sym__record_key_token2] = ACTIONS(1336), + [1246] = { + [sym__expression] = STATE(6192), + [sym_expr_unary] = STATE(3040), + [sym__expr_unary_minus] = STATE(2996), + [sym_expr_binary] = STATE(3040), + [sym__expr_binary_expression] = STATE(6361), + [sym_expr_parenthesized] = STATE(2740), + [sym_val_range] = STATE(6111), + [sym__val_range] = STATE(10190), + [sym__value] = STATE(3040), + [sym_val_nothing] = STATE(3070), + [sym_val_bool] = STATE(2981), + [sym_val_variable] = STATE(2737), + [sym__var] = STATE(2612), + [sym_val_number] = STATE(3070), + [sym__val_number_decimal] = STATE(2410), + [sym__val_number] = STATE(3072), + [sym_val_duration] = STATE(3070), + [sym_val_filesize] = STATE(3070), + [sym_val_binary] = STATE(3070), + [sym_val_string] = STATE(3070), + [sym__str_double_quotes] = STATE(3071), + [sym_val_interpolated] = STATE(3070), + [sym__inter_single_quotes] = STATE(2991), + [sym__inter_double_quotes] = STATE(2995), + [sym_val_list] = STATE(3070), + [sym_val_record] = STATE(3070), + [sym_val_table] = STATE(3070), + [sym_val_closure] = STATE(3070), + [sym_unquoted] = STATE(6193), + [sym__unquoted_anonymous_prefix] = STATE(10459), + [sym_comment] = STATE(1246), + [anon_sym_LBRACK] = ACTIONS(4346), + [anon_sym_LPAREN] = ACTIONS(4348), + [anon_sym_DOLLAR] = ACTIONS(4350), + [anon_sym_DASH] = ACTIONS(4352), + [anon_sym_LBRACE] = ACTIONS(4354), + [anon_sym_DOT_DOT] = ACTIONS(4356), + [anon_sym_not] = ACTIONS(4358), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4360), + [anon_sym_DOT_DOT_LT] = ACTIONS(4360), + [anon_sym_null] = ACTIONS(4362), + [anon_sym_true] = ACTIONS(4364), + [anon_sym_false] = ACTIONS(4364), + [aux_sym__val_number_decimal_token1] = ACTIONS(4366), + [aux_sym__val_number_decimal_token2] = ACTIONS(4368), + [anon_sym_DOT2] = ACTIONS(4370), + [aux_sym__val_number_decimal_token3] = ACTIONS(4372), + [aux_sym__val_number_token1] = ACTIONS(4374), + [aux_sym__val_number_token2] = ACTIONS(4374), + [aux_sym__val_number_token3] = ACTIONS(4374), + [aux_sym__val_number_token4] = ACTIONS(4376), + [aux_sym__val_number_token5] = ACTIONS(4376), + [aux_sym__val_number_token6] = ACTIONS(4376), + [anon_sym_0b] = ACTIONS(4378), + [anon_sym_0o] = ACTIONS(4380), + [anon_sym_0x] = ACTIONS(4380), + [sym_val_date] = ACTIONS(4382), + [anon_sym_DQUOTE] = ACTIONS(4384), + [sym__str_single_quotes] = ACTIONS(4386), + [sym__str_back_ticks] = ACTIONS(4386), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4388), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4390), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(4392), [anon_sym_POUND] = ACTIONS(3), }, - [1017] = { - [sym_comment] = STATE(1017), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_list] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_make] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_else] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_catch] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_new] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1370), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1370), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [aux_sym__record_key_token2] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), + [1247] = { + [sym__expr_parenthesized_immediate] = STATE(10434), + [sym_comment] = STATE(1247), + [anon_sym_export] = ACTIONS(4394), + [anon_sym_alias] = ACTIONS(4394), + [anon_sym_let] = ACTIONS(4394), + [anon_sym_let_DASHenv] = ACTIONS(4394), + [anon_sym_mut] = ACTIONS(4394), + [anon_sym_const] = ACTIONS(4394), + [anon_sym_SEMI] = ACTIONS(4394), + [sym_cmd_identifier] = ACTIONS(4394), + [anon_sym_LF] = ACTIONS(4396), + [anon_sym_def] = ACTIONS(4394), + [anon_sym_export_DASHenv] = ACTIONS(4394), + [anon_sym_extern] = ACTIONS(4394), + [anon_sym_module] = ACTIONS(4394), + [anon_sym_use] = ACTIONS(4394), + [anon_sym_LBRACK] = ACTIONS(4394), + [anon_sym_LPAREN] = ACTIONS(4394), + [anon_sym_RPAREN] = ACTIONS(4394), + [anon_sym_DOLLAR] = ACTIONS(4394), + [anon_sym_error] = ACTIONS(4394), + [anon_sym_DASH_DASH] = ACTIONS(4394), + [anon_sym_DASH] = ACTIONS(4394), + [anon_sym_break] = ACTIONS(4394), + [anon_sym_continue] = ACTIONS(4394), + [anon_sym_for] = ACTIONS(4394), + [anon_sym_loop] = ACTIONS(4394), + [anon_sym_while] = ACTIONS(4394), + [anon_sym_do] = ACTIONS(4394), + [anon_sym_if] = ACTIONS(4394), + [anon_sym_match] = ACTIONS(4394), + [anon_sym_LBRACE] = ACTIONS(4394), + [anon_sym_RBRACE] = ACTIONS(4394), + [anon_sym_DOT_DOT] = ACTIONS(4394), + [anon_sym_try] = ACTIONS(4394), + [anon_sym_return] = ACTIONS(4394), + [anon_sym_source] = ACTIONS(4394), + [anon_sym_source_DASHenv] = ACTIONS(4394), + [anon_sym_register] = ACTIONS(4394), + [anon_sym_hide] = ACTIONS(4394), + [anon_sym_hide_DASHenv] = ACTIONS(4394), + [anon_sym_overlay] = ACTIONS(4394), + [anon_sym_as] = ACTIONS(4394), + [anon_sym_where] = ACTIONS(4394), + [anon_sym_not] = ACTIONS(4394), + [anon_sym_LPAREN2] = ACTIONS(2187), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4394), + [anon_sym_DOT_DOT_LT] = ACTIONS(4394), + [anon_sym_null] = ACTIONS(4394), + [anon_sym_true] = ACTIONS(4394), + [anon_sym_false] = ACTIONS(4394), + [aux_sym__val_number_decimal_token1] = ACTIONS(4394), + [aux_sym__val_number_decimal_token2] = ACTIONS(4394), + [anon_sym_DOT2] = ACTIONS(4394), + [aux_sym__val_number_decimal_token3] = ACTIONS(4394), + [aux_sym__val_number_token1] = ACTIONS(4394), + [aux_sym__val_number_token2] = ACTIONS(4394), + [aux_sym__val_number_token3] = ACTIONS(4394), + [aux_sym__val_number_token4] = ACTIONS(4394), + [aux_sym__val_number_token5] = ACTIONS(4394), + [aux_sym__val_number_token6] = ACTIONS(4394), + [anon_sym_0b] = ACTIONS(4394), + [anon_sym_0o] = ACTIONS(4394), + [anon_sym_0x] = ACTIONS(4394), + [sym_val_date] = ACTIONS(4394), + [anon_sym_DQUOTE] = ACTIONS(4394), + [sym__str_single_quotes] = ACTIONS(4394), + [sym__str_back_ticks] = ACTIONS(4394), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4394), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4394), + [anon_sym_CARET] = ACTIONS(4394), + [anon_sym_POUND] = ACTIONS(113), }, - [1018] = { - [sym_comment] = STATE(1018), - [anon_sym_export] = ACTIONS(1358), - [anon_sym_alias] = ACTIONS(1358), - [anon_sym_let] = ACTIONS(1358), - [anon_sym_let_DASHenv] = ACTIONS(1358), - [anon_sym_mut] = ACTIONS(1358), - [anon_sym_const] = ACTIONS(1358), - [sym_cmd_identifier] = ACTIONS(1358), - [anon_sym_def] = ACTIONS(1358), - [anon_sym_export_DASHenv] = ACTIONS(1358), - [anon_sym_extern] = ACTIONS(1358), - [anon_sym_module] = ACTIONS(1358), - [anon_sym_use] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_DOLLAR] = ACTIONS(1360), - [anon_sym_error] = ACTIONS(1358), - [anon_sym_list] = ACTIONS(1358), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_in] = ACTIONS(1358), - [anon_sym_loop] = ACTIONS(1358), - [anon_sym_make] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_do] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_else] = ACTIONS(1358), - [anon_sym_match] = ACTIONS(1358), - [anon_sym_RBRACE] = ACTIONS(1360), - [anon_sym_try] = ACTIONS(1358), - [anon_sym_catch] = ACTIONS(1358), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_source] = ACTIONS(1358), - [anon_sym_source_DASHenv] = ACTIONS(1358), - [anon_sym_register] = ACTIONS(1358), - [anon_sym_hide] = ACTIONS(1358), - [anon_sym_hide_DASHenv] = ACTIONS(1358), - [anon_sym_overlay] = ACTIONS(1358), - [anon_sym_new] = ACTIONS(1358), - [anon_sym_as] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_STAR_STAR] = ACTIONS(1360), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_SLASH] = ACTIONS(1358), - [anon_sym_mod] = ACTIONS(1358), - [anon_sym_SLASH_SLASH] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_bit_DASHshl] = ACTIONS(1358), - [anon_sym_bit_DASHshr] = ACTIONS(1358), - [anon_sym_EQ_EQ] = ACTIONS(1360), - [anon_sym_BANG_EQ] = ACTIONS(1360), - [anon_sym_LT2] = ACTIONS(1358), - [anon_sym_LT_EQ] = ACTIONS(1360), - [anon_sym_GT_EQ] = ACTIONS(1360), - [anon_sym_not_DASHin] = ACTIONS(1358), - [anon_sym_starts_DASHwith] = ACTIONS(1358), - [anon_sym_ends_DASHwith] = ACTIONS(1358), - [anon_sym_EQ_TILDE] = ACTIONS(1360), - [anon_sym_BANG_TILDE] = ACTIONS(1360), - [anon_sym_bit_DASHand] = ACTIONS(1358), - [anon_sym_bit_DASHxor] = ACTIONS(1358), - [anon_sym_bit_DASHor] = ACTIONS(1358), - [anon_sym_and] = ACTIONS(1358), - [anon_sym_xor] = ACTIONS(1358), - [anon_sym_or] = ACTIONS(1358), - [aux_sym__val_number_decimal_token1] = ACTIONS(1358), - [aux_sym__val_number_decimal_token2] = ACTIONS(1360), - [anon_sym_DOT2] = ACTIONS(1360), - [aux_sym__val_number_decimal_token3] = ACTIONS(1360), - [aux_sym__val_number_token1] = ACTIONS(1360), - [aux_sym__val_number_token2] = ACTIONS(1360), - [aux_sym__val_number_token3] = ACTIONS(1360), - [aux_sym__val_number_token4] = ACTIONS(1358), - [aux_sym__val_number_token5] = ACTIONS(1360), - [aux_sym__val_number_token6] = ACTIONS(1358), - [anon_sym_DQUOTE] = ACTIONS(1360), - [sym__str_single_quotes] = ACTIONS(1360), - [sym__str_back_ticks] = ACTIONS(1360), - [aux_sym__record_key_token2] = ACTIONS(1358), + [1248] = { + [sym__expression] = STATE(8260), + [sym_expr_unary] = STATE(5677), + [sym__expr_unary_minus] = STATE(5679), + [sym_expr_binary] = STATE(5677), + [sym__expr_binary_expression] = STATE(6377), + [sym_expr_parenthesized] = STATE(4919), + [sym_val_range] = STATE(8295), + [sym__val_range] = STATE(10121), + [sym__value] = STATE(5677), + [sym_val_nothing] = STATE(5612), + [sym_val_bool] = STATE(5297), + [sym_val_variable] = STATE(4867), + [sym__var] = STATE(4310), + [sym_val_number] = STATE(5612), + [sym__val_number_decimal] = STATE(4211), + [sym__val_number] = STATE(5661), + [sym_val_duration] = STATE(5612), + [sym_val_filesize] = STATE(5612), + [sym_val_binary] = STATE(5612), + [sym_val_string] = STATE(5612), + [sym__str_double_quotes] = STATE(5733), + [sym_val_interpolated] = STATE(5612), + [sym__inter_single_quotes] = STATE(5590), + [sym__inter_double_quotes] = STATE(5591), + [sym_val_list] = STATE(5612), + [sym_val_record] = STATE(5612), + [sym_val_table] = STATE(5612), + [sym_val_closure] = STATE(5612), + [sym_unquoted] = STATE(8263), + [sym__unquoted_anonymous_prefix] = STATE(10500), + [sym_comment] = STATE(1248), + [anon_sym_LBRACK] = ACTIONS(2663), + [anon_sym_LPAREN] = ACTIONS(2665), + [anon_sym_DOLLAR] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(4398), + [anon_sym_LBRACE] = ACTIONS(2673), + [anon_sym_DOT_DOT] = ACTIONS(4400), + [anon_sym_not] = ACTIONS(4402), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4404), + [anon_sym_DOT_DOT_LT] = ACTIONS(4404), + [anon_sym_null] = ACTIONS(4406), + [anon_sym_true] = ACTIONS(4408), + [anon_sym_false] = ACTIONS(4408), + [aux_sym__val_number_decimal_token1] = ACTIONS(4410), + [aux_sym__val_number_decimal_token2] = ACTIONS(4412), + [anon_sym_DOT2] = ACTIONS(4414), + [aux_sym__val_number_decimal_token3] = ACTIONS(4416), + [aux_sym__val_number_token1] = ACTIONS(2691), + [aux_sym__val_number_token2] = ACTIONS(2691), + [aux_sym__val_number_token3] = ACTIONS(2691), + [aux_sym__val_number_token4] = ACTIONS(4418), + [aux_sym__val_number_token5] = ACTIONS(4418), + [aux_sym__val_number_token6] = ACTIONS(4418), + [anon_sym_0b] = ACTIONS(2695), + [anon_sym_0o] = ACTIONS(2697), + [anon_sym_0x] = ACTIONS(2697), + [sym_val_date] = ACTIONS(4420), + [anon_sym_DQUOTE] = ACTIONS(2701), + [sym__str_single_quotes] = ACTIONS(2703), + [sym__str_back_ticks] = ACTIONS(2703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2705), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2707), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2711), [anon_sym_POUND] = ACTIONS(3), }, - [1019] = { - [sym_comment] = STATE(1019), - [anon_sym_export] = ACTIONS(1354), - [anon_sym_alias] = ACTIONS(1354), - [anon_sym_let] = ACTIONS(1354), - [anon_sym_let_DASHenv] = ACTIONS(1354), - [anon_sym_mut] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [sym_cmd_identifier] = ACTIONS(1354), - [anon_sym_def] = ACTIONS(1354), - [anon_sym_export_DASHenv] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym_module] = ACTIONS(1354), - [anon_sym_use] = ACTIONS(1354), - [anon_sym_LPAREN] = ACTIONS(1356), - [anon_sym_DOLLAR] = ACTIONS(1356), - [anon_sym_error] = ACTIONS(1354), - [anon_sym_list] = ACTIONS(1354), - [anon_sym_GT] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_in] = ACTIONS(1354), - [anon_sym_loop] = ACTIONS(1354), - [anon_sym_make] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_else] = ACTIONS(1354), - [anon_sym_match] = ACTIONS(1354), - [anon_sym_RBRACE] = ACTIONS(1356), - [anon_sym_try] = ACTIONS(1354), - [anon_sym_catch] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_source] = ACTIONS(1354), - [anon_sym_source_DASHenv] = ACTIONS(1354), - [anon_sym_register] = ACTIONS(1354), - [anon_sym_hide] = ACTIONS(1354), - [anon_sym_hide_DASHenv] = ACTIONS(1354), - [anon_sym_overlay] = ACTIONS(1354), - [anon_sym_new] = ACTIONS(1354), - [anon_sym_as] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_STAR_STAR] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(1354), - [anon_sym_mod] = ACTIONS(1354), - [anon_sym_SLASH_SLASH] = ACTIONS(1356), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_bit_DASHshl] = ACTIONS(1354), - [anon_sym_bit_DASHshr] = ACTIONS(1354), - [anon_sym_EQ_EQ] = ACTIONS(1356), - [anon_sym_BANG_EQ] = ACTIONS(1356), - [anon_sym_LT2] = ACTIONS(1354), - [anon_sym_LT_EQ] = ACTIONS(1356), - [anon_sym_GT_EQ] = ACTIONS(1356), - [anon_sym_not_DASHin] = ACTIONS(1354), - [anon_sym_starts_DASHwith] = ACTIONS(1354), - [anon_sym_ends_DASHwith] = ACTIONS(1354), - [anon_sym_EQ_TILDE] = ACTIONS(1356), - [anon_sym_BANG_TILDE] = ACTIONS(1356), - [anon_sym_bit_DASHand] = ACTIONS(1354), - [anon_sym_bit_DASHxor] = ACTIONS(1354), - [anon_sym_bit_DASHor] = ACTIONS(1354), - [anon_sym_and] = ACTIONS(1354), - [anon_sym_xor] = ACTIONS(1354), - [anon_sym_or] = ACTIONS(1354), - [aux_sym__val_number_decimal_token1] = ACTIONS(1354), - [aux_sym__val_number_decimal_token2] = ACTIONS(1356), - [anon_sym_DOT2] = ACTIONS(1356), - [aux_sym__val_number_decimal_token3] = ACTIONS(1356), - [aux_sym__val_number_token1] = ACTIONS(1356), - [aux_sym__val_number_token2] = ACTIONS(1356), - [aux_sym__val_number_token3] = ACTIONS(1356), - [aux_sym__val_number_token4] = ACTIONS(1354), - [aux_sym__val_number_token5] = ACTIONS(1356), - [aux_sym__val_number_token6] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1356), - [sym__str_single_quotes] = ACTIONS(1356), - [sym__str_back_ticks] = ACTIONS(1356), - [aux_sym__record_key_token2] = ACTIONS(1354), - [anon_sym_POUND] = ACTIONS(3), + [1249] = { + [sym__expr_parenthesized_immediate] = STATE(10434), + [sym_comment] = STATE(1249), + [anon_sym_export] = ACTIONS(4422), + [anon_sym_alias] = ACTIONS(4422), + [anon_sym_let] = ACTIONS(4422), + [anon_sym_let_DASHenv] = ACTIONS(4422), + [anon_sym_mut] = ACTIONS(4422), + [anon_sym_const] = ACTIONS(4422), + [anon_sym_SEMI] = ACTIONS(4422), + [sym_cmd_identifier] = ACTIONS(4422), + [anon_sym_LF] = ACTIONS(4424), + [anon_sym_def] = ACTIONS(4422), + [anon_sym_export_DASHenv] = ACTIONS(4422), + [anon_sym_extern] = ACTIONS(4422), + [anon_sym_module] = ACTIONS(4422), + [anon_sym_use] = ACTIONS(4422), + [anon_sym_LBRACK] = ACTIONS(4422), + [anon_sym_LPAREN] = ACTIONS(4422), + [anon_sym_RPAREN] = ACTIONS(4422), + [anon_sym_DOLLAR] = ACTIONS(4422), + [anon_sym_error] = ACTIONS(4422), + [anon_sym_DASH_DASH] = ACTIONS(4422), + [anon_sym_DASH] = ACTIONS(4422), + [anon_sym_break] = ACTIONS(4422), + [anon_sym_continue] = ACTIONS(4422), + [anon_sym_for] = ACTIONS(4422), + [anon_sym_loop] = ACTIONS(4422), + [anon_sym_while] = ACTIONS(4422), + [anon_sym_do] = ACTIONS(4422), + [anon_sym_if] = ACTIONS(4422), + [anon_sym_match] = ACTIONS(4422), + [anon_sym_LBRACE] = ACTIONS(4422), + [anon_sym_RBRACE] = ACTIONS(4422), + [anon_sym_DOT_DOT] = ACTIONS(4422), + [anon_sym_try] = ACTIONS(4422), + [anon_sym_return] = ACTIONS(4422), + [anon_sym_source] = ACTIONS(4422), + [anon_sym_source_DASHenv] = ACTIONS(4422), + [anon_sym_register] = ACTIONS(4422), + [anon_sym_hide] = ACTIONS(4422), + [anon_sym_hide_DASHenv] = ACTIONS(4422), + [anon_sym_overlay] = ACTIONS(4422), + [anon_sym_as] = ACTIONS(4422), + [anon_sym_where] = ACTIONS(4422), + [anon_sym_not] = ACTIONS(4422), + [anon_sym_LPAREN2] = ACTIONS(2187), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4422), + [anon_sym_DOT_DOT_LT] = ACTIONS(4422), + [anon_sym_null] = ACTIONS(4422), + [anon_sym_true] = ACTIONS(4422), + [anon_sym_false] = ACTIONS(4422), + [aux_sym__val_number_decimal_token1] = ACTIONS(4422), + [aux_sym__val_number_decimal_token2] = ACTIONS(4422), + [anon_sym_DOT2] = ACTIONS(4422), + [aux_sym__val_number_decimal_token3] = ACTIONS(4422), + [aux_sym__val_number_token1] = ACTIONS(4422), + [aux_sym__val_number_token2] = ACTIONS(4422), + [aux_sym__val_number_token3] = ACTIONS(4422), + [aux_sym__val_number_token4] = ACTIONS(4422), + [aux_sym__val_number_token5] = ACTIONS(4422), + [aux_sym__val_number_token6] = ACTIONS(4422), + [anon_sym_0b] = ACTIONS(4422), + [anon_sym_0o] = ACTIONS(4422), + [anon_sym_0x] = ACTIONS(4422), + [sym_val_date] = ACTIONS(4422), + [anon_sym_DQUOTE] = ACTIONS(4422), + [sym__str_single_quotes] = ACTIONS(4422), + [sym__str_back_ticks] = ACTIONS(4422), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4422), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4422), + [anon_sym_CARET] = ACTIONS(4422), + [anon_sym_POUND] = ACTIONS(113), }, - [1020] = { - [sym_comment] = STATE(1020), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_list] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_make] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_else] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_catch] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_new] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1370), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1370), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [aux_sym__record_key_token2] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), + [1250] = { + [sym__expr_parenthesized_immediate] = STATE(10434), + [sym_comment] = STATE(1250), + [anon_sym_export] = ACTIONS(4426), + [anon_sym_alias] = ACTIONS(4426), + [anon_sym_let] = ACTIONS(4426), + [anon_sym_let_DASHenv] = ACTIONS(4426), + [anon_sym_mut] = ACTIONS(4426), + [anon_sym_const] = ACTIONS(4426), + [anon_sym_SEMI] = ACTIONS(4426), + [sym_cmd_identifier] = ACTIONS(4426), + [anon_sym_LF] = ACTIONS(4428), + [anon_sym_def] = ACTIONS(4426), + [anon_sym_export_DASHenv] = ACTIONS(4426), + [anon_sym_extern] = ACTIONS(4426), + [anon_sym_module] = ACTIONS(4426), + [anon_sym_use] = ACTIONS(4426), + [anon_sym_LBRACK] = ACTIONS(4426), + [anon_sym_LPAREN] = ACTIONS(4426), + [anon_sym_RPAREN] = ACTIONS(4426), + [anon_sym_DOLLAR] = ACTIONS(4426), + [anon_sym_error] = ACTIONS(4426), + [anon_sym_DASH_DASH] = ACTIONS(4426), + [anon_sym_DASH] = ACTIONS(4426), + [anon_sym_break] = ACTIONS(4426), + [anon_sym_continue] = ACTIONS(4426), + [anon_sym_for] = ACTIONS(4426), + [anon_sym_loop] = ACTIONS(4426), + [anon_sym_while] = ACTIONS(4426), + [anon_sym_do] = ACTIONS(4426), + [anon_sym_if] = ACTIONS(4426), + [anon_sym_match] = ACTIONS(4426), + [anon_sym_LBRACE] = ACTIONS(4426), + [anon_sym_RBRACE] = ACTIONS(4426), + [anon_sym_DOT_DOT] = ACTIONS(4426), + [anon_sym_try] = ACTIONS(4426), + [anon_sym_return] = ACTIONS(4426), + [anon_sym_source] = ACTIONS(4426), + [anon_sym_source_DASHenv] = ACTIONS(4426), + [anon_sym_register] = ACTIONS(4426), + [anon_sym_hide] = ACTIONS(4426), + [anon_sym_hide_DASHenv] = ACTIONS(4426), + [anon_sym_overlay] = ACTIONS(4426), + [anon_sym_as] = ACTIONS(4426), + [anon_sym_where] = ACTIONS(4426), + [anon_sym_not] = ACTIONS(4426), + [anon_sym_LPAREN2] = ACTIONS(2187), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4426), + [anon_sym_DOT_DOT_LT] = ACTIONS(4426), + [anon_sym_null] = ACTIONS(4426), + [anon_sym_true] = ACTIONS(4426), + [anon_sym_false] = ACTIONS(4426), + [aux_sym__val_number_decimal_token1] = ACTIONS(4426), + [aux_sym__val_number_decimal_token2] = ACTIONS(4426), + [anon_sym_DOT2] = ACTIONS(4426), + [aux_sym__val_number_decimal_token3] = ACTIONS(4426), + [aux_sym__val_number_token1] = ACTIONS(4426), + [aux_sym__val_number_token2] = ACTIONS(4426), + [aux_sym__val_number_token3] = ACTIONS(4426), + [aux_sym__val_number_token4] = ACTIONS(4426), + [aux_sym__val_number_token5] = ACTIONS(4426), + [aux_sym__val_number_token6] = ACTIONS(4426), + [anon_sym_0b] = ACTIONS(4426), + [anon_sym_0o] = ACTIONS(4426), + [anon_sym_0x] = ACTIONS(4426), + [sym_val_date] = ACTIONS(4426), + [anon_sym_DQUOTE] = ACTIONS(4426), + [sym__str_single_quotes] = ACTIONS(4426), + [sym__str_back_ticks] = ACTIONS(4426), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4426), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4426), + [anon_sym_CARET] = ACTIONS(4426), + [anon_sym_POUND] = ACTIONS(113), }, - [1021] = { - [sym_comment] = STATE(1021), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_alias] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_let_DASHenv] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [sym_cmd_identifier] = ACTIONS(1350), - [anon_sym_def] = ACTIONS(1350), - [anon_sym_export_DASHenv] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1352), - [anon_sym_DOLLAR] = ACTIONS(1352), - [anon_sym_error] = ACTIONS(1350), - [anon_sym_list] = ACTIONS(1350), - [anon_sym_GT] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_in] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_make] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_else] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1352), - [anon_sym_try] = ACTIONS(1350), - [anon_sym_catch] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_source] = ACTIONS(1350), - [anon_sym_source_DASHenv] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_hide] = ACTIONS(1350), - [anon_sym_hide_DASHenv] = ACTIONS(1350), - [anon_sym_overlay] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1350), - [anon_sym_as] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_STAR_STAR] = ACTIONS(1352), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [anon_sym_SLASH] = ACTIONS(1350), - [anon_sym_mod] = ACTIONS(1350), - [anon_sym_SLASH_SLASH] = ACTIONS(1352), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_bit_DASHshl] = ACTIONS(1350), - [anon_sym_bit_DASHshr] = ACTIONS(1350), - [anon_sym_EQ_EQ] = ACTIONS(1352), - [anon_sym_BANG_EQ] = ACTIONS(1352), - [anon_sym_LT2] = ACTIONS(1350), - [anon_sym_LT_EQ] = ACTIONS(1352), - [anon_sym_GT_EQ] = ACTIONS(1352), - [anon_sym_not_DASHin] = ACTIONS(1350), - [anon_sym_starts_DASHwith] = ACTIONS(1350), - [anon_sym_ends_DASHwith] = ACTIONS(1350), - [anon_sym_EQ_TILDE] = ACTIONS(1352), - [anon_sym_BANG_TILDE] = ACTIONS(1352), - [anon_sym_bit_DASHand] = ACTIONS(1350), - [anon_sym_bit_DASHxor] = ACTIONS(1350), - [anon_sym_bit_DASHor] = ACTIONS(1350), - [anon_sym_and] = ACTIONS(1350), - [anon_sym_xor] = ACTIONS(1350), - [anon_sym_or] = ACTIONS(1350), - [aux_sym__val_number_decimal_token1] = ACTIONS(1350), - [aux_sym__val_number_decimal_token2] = ACTIONS(1352), - [anon_sym_DOT2] = ACTIONS(1352), - [aux_sym__val_number_decimal_token3] = ACTIONS(1352), - [aux_sym__val_number_token1] = ACTIONS(1352), - [aux_sym__val_number_token2] = ACTIONS(1352), - [aux_sym__val_number_token3] = ACTIONS(1352), - [aux_sym__val_number_token4] = ACTIONS(1350), - [aux_sym__val_number_token5] = ACTIONS(1352), - [aux_sym__val_number_token6] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1352), - [sym__str_single_quotes] = ACTIONS(1352), - [sym__str_back_ticks] = ACTIONS(1352), - [aux_sym__record_key_token2] = ACTIONS(1350), + [1251] = { + [sym__expression] = STATE(2042), + [sym_expr_unary] = STATE(437), + [sym__expr_unary_minus] = STATE(420), + [sym_expr_binary] = STATE(437), + [sym__expr_binary_expression] = STATE(6364), + [sym_expr_parenthesized] = STATE(305), + [sym_val_range] = STATE(1998), + [sym__val_range] = STATE(10201), + [sym__value] = STATE(437), + [sym_val_nothing] = STATE(456), + [sym_val_bool] = STATE(372), + [sym_val_variable] = STATE(308), + [sym__var] = STATE(261), + [sym_val_number] = STATE(456), + [sym__val_number_decimal] = STATE(250), + [sym__val_number] = STATE(458), + [sym_val_duration] = STATE(456), + [sym_val_filesize] = STATE(456), + [sym_val_binary] = STATE(456), + [sym_val_string] = STATE(456), + [sym__str_double_quotes] = STATE(457), + [sym_val_interpolated] = STATE(456), + [sym__inter_single_quotes] = STATE(469), + [sym__inter_double_quotes] = STATE(470), + [sym_val_list] = STATE(456), + [sym_val_record] = STATE(456), + [sym_val_table] = STATE(456), + [sym_val_closure] = STATE(456), + [sym_unquoted] = STATE(2043), + [sym__unquoted_anonymous_prefix] = STATE(10678), + [sym_comment] = STATE(1251), + [anon_sym_LBRACK] = ACTIONS(4430), + [anon_sym_LPAREN] = ACTIONS(4432), + [anon_sym_DOLLAR] = ACTIONS(4434), + [anon_sym_DASH] = ACTIONS(4436), + [anon_sym_LBRACE] = ACTIONS(4438), + [anon_sym_DOT_DOT] = ACTIONS(4440), + [anon_sym_not] = ACTIONS(4442), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4444), + [anon_sym_DOT_DOT_LT] = ACTIONS(4444), + [anon_sym_null] = ACTIONS(4446), + [anon_sym_true] = ACTIONS(4448), + [anon_sym_false] = ACTIONS(4448), + [aux_sym__val_number_decimal_token1] = ACTIONS(4450), + [aux_sym__val_number_decimal_token2] = ACTIONS(4452), + [anon_sym_DOT2] = ACTIONS(4454), + [aux_sym__val_number_decimal_token3] = ACTIONS(4456), + [aux_sym__val_number_token1] = ACTIONS(4458), + [aux_sym__val_number_token2] = ACTIONS(4458), + [aux_sym__val_number_token3] = ACTIONS(4458), + [aux_sym__val_number_token4] = ACTIONS(4460), + [aux_sym__val_number_token5] = ACTIONS(4460), + [aux_sym__val_number_token6] = ACTIONS(4460), + [anon_sym_0b] = ACTIONS(4462), + [anon_sym_0o] = ACTIONS(4464), + [anon_sym_0x] = ACTIONS(4464), + [sym_val_date] = ACTIONS(4466), + [anon_sym_DQUOTE] = ACTIONS(4468), + [sym__str_single_quotes] = ACTIONS(4470), + [sym__str_back_ticks] = ACTIONS(4470), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4472), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4474), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(4476), [anon_sym_POUND] = ACTIONS(3), }, - [1022] = { - [sym_comment] = STATE(1022), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_list] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_make] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_else] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_catch] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_new] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1370), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1370), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [aux_sym__record_key_token2] = ACTIONS(1368), + [1252] = { + [sym__expression] = STATE(7829), + [sym_expr_unary] = STATE(5409), + [sym__expr_unary_minus] = STATE(5410), + [sym_expr_binary] = STATE(5409), + [sym__expr_binary_expression] = STATE(6366), + [sym_expr_parenthesized] = STATE(4635), + [sym_val_range] = STATE(8000), + [sym__val_range] = STATE(10125), + [sym__value] = STATE(5409), + [sym_val_nothing] = STATE(5350), + [sym_val_bool] = STATE(5167), + [sym_val_variable] = STATE(4717), + [sym__var] = STATE(4193), + [sym_val_number] = STATE(5350), + [sym__val_number_decimal] = STATE(3906), + [sym__val_number] = STATE(5351), + [sym_val_duration] = STATE(5350), + [sym_val_filesize] = STATE(5350), + [sym_val_binary] = STATE(5350), + [sym_val_string] = STATE(5350), + [sym__str_double_quotes] = STATE(5502), + [sym_val_interpolated] = STATE(5350), + [sym__inter_single_quotes] = STATE(5420), + [sym__inter_double_quotes] = STATE(5421), + [sym_val_list] = STATE(5350), + [sym_val_record] = STATE(5350), + [sym_val_table] = STATE(5350), + [sym_val_closure] = STATE(5350), + [sym_unquoted] = STATE(7831), + [sym__unquoted_anonymous_prefix] = STATE(10902), + [sym_comment] = STATE(1252), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_LPAREN] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(4478), + [anon_sym_LBRACE] = ACTIONS(3058), + [anon_sym_DOT_DOT] = ACTIONS(4480), + [anon_sym_not] = ACTIONS(4482), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4484), + [anon_sym_DOT_DOT_LT] = ACTIONS(4484), + [anon_sym_null] = ACTIONS(4486), + [anon_sym_true] = ACTIONS(4488), + [anon_sym_false] = ACTIONS(4488), + [aux_sym__val_number_decimal_token1] = ACTIONS(4490), + [aux_sym__val_number_decimal_token2] = ACTIONS(4492), + [anon_sym_DOT2] = ACTIONS(4494), + [aux_sym__val_number_decimal_token3] = ACTIONS(4496), + [aux_sym__val_number_token1] = ACTIONS(3076), + [aux_sym__val_number_token2] = ACTIONS(3076), + [aux_sym__val_number_token3] = ACTIONS(3076), + [aux_sym__val_number_token4] = ACTIONS(4498), + [aux_sym__val_number_token5] = ACTIONS(4498), + [aux_sym__val_number_token6] = ACTIONS(4498), + [anon_sym_0b] = ACTIONS(3080), + [anon_sym_0o] = ACTIONS(3082), + [anon_sym_0x] = ACTIONS(3082), + [sym_val_date] = ACTIONS(4500), + [anon_sym_DQUOTE] = ACTIONS(3086), + [sym__str_single_quotes] = ACTIONS(3088), + [sym__str_back_ticks] = ACTIONS(3088), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3092), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3096), [anon_sym_POUND] = ACTIONS(3), }, - [1023] = { - [sym_comment] = STATE(1023), - [anon_sym_export] = ACTIONS(1198), - [anon_sym_alias] = ACTIONS(1198), - [anon_sym_let] = ACTIONS(1198), - [anon_sym_let_DASHenv] = ACTIONS(1198), - [anon_sym_mut] = ACTIONS(1198), - [anon_sym_const] = ACTIONS(1198), - [sym_cmd_identifier] = ACTIONS(1198), - [anon_sym_def] = ACTIONS(1198), - [anon_sym_export_DASHenv] = ACTIONS(1198), - [anon_sym_extern] = ACTIONS(1198), - [anon_sym_module] = ACTIONS(1198), - [anon_sym_use] = ACTIONS(1198), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_DOLLAR] = ACTIONS(1366), - [anon_sym_error] = ACTIONS(1198), - [anon_sym_list] = ACTIONS(1198), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1198), - [anon_sym_break] = ACTIONS(1198), - [anon_sym_continue] = ACTIONS(1198), - [anon_sym_for] = ACTIONS(1198), - [anon_sym_in] = ACTIONS(1198), - [anon_sym_loop] = ACTIONS(1198), - [anon_sym_make] = ACTIONS(1198), - [anon_sym_while] = ACTIONS(1198), - [anon_sym_do] = ACTIONS(1198), - [anon_sym_if] = ACTIONS(1198), - [anon_sym_else] = ACTIONS(1198), - [anon_sym_match] = ACTIONS(1198), - [anon_sym_RBRACE] = ACTIONS(1366), - [anon_sym_try] = ACTIONS(1198), - [anon_sym_catch] = ACTIONS(1198), - [anon_sym_return] = ACTIONS(1198), - [anon_sym_source] = ACTIONS(1198), - [anon_sym_source_DASHenv] = ACTIONS(1198), - [anon_sym_register] = ACTIONS(1198), - [anon_sym_hide] = ACTIONS(1198), - [anon_sym_hide_DASHenv] = ACTIONS(1198), - [anon_sym_overlay] = ACTIONS(1198), - [anon_sym_new] = ACTIONS(1198), - [anon_sym_as] = ACTIONS(1198), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_STAR_STAR] = ACTIONS(1366), - [anon_sym_PLUS_PLUS] = ACTIONS(1366), - [anon_sym_SLASH] = ACTIONS(1198), - [anon_sym_mod] = ACTIONS(1198), - [anon_sym_SLASH_SLASH] = ACTIONS(1366), - [anon_sym_PLUS] = ACTIONS(1198), - [anon_sym_bit_DASHshl] = ACTIONS(1198), - [anon_sym_bit_DASHshr] = ACTIONS(1198), - [anon_sym_EQ_EQ] = ACTIONS(1366), - [anon_sym_BANG_EQ] = ACTIONS(1366), - [anon_sym_LT2] = ACTIONS(1198), - [anon_sym_LT_EQ] = ACTIONS(1366), - [anon_sym_GT_EQ] = ACTIONS(1366), - [anon_sym_not_DASHin] = ACTIONS(1198), - [anon_sym_starts_DASHwith] = ACTIONS(1198), - [anon_sym_ends_DASHwith] = ACTIONS(1198), - [anon_sym_EQ_TILDE] = ACTIONS(1366), - [anon_sym_BANG_TILDE] = ACTIONS(1366), - [anon_sym_bit_DASHand] = ACTIONS(1198), - [anon_sym_bit_DASHxor] = ACTIONS(1198), - [anon_sym_bit_DASHor] = ACTIONS(1198), - [anon_sym_and] = ACTIONS(1198), - [anon_sym_xor] = ACTIONS(1198), - [anon_sym_or] = ACTIONS(1198), - [aux_sym__val_number_decimal_token1] = ACTIONS(1198), - [aux_sym__val_number_decimal_token2] = ACTIONS(1366), - [anon_sym_DOT2] = ACTIONS(1366), - [aux_sym__val_number_decimal_token3] = ACTIONS(1366), - [aux_sym__val_number_token1] = ACTIONS(1366), - [aux_sym__val_number_token2] = ACTIONS(1366), - [aux_sym__val_number_token3] = ACTIONS(1366), - [aux_sym__val_number_token4] = ACTIONS(1198), - [aux_sym__val_number_token5] = ACTIONS(1366), - [aux_sym__val_number_token6] = ACTIONS(1198), - [anon_sym_DQUOTE] = ACTIONS(1366), - [sym__str_single_quotes] = ACTIONS(1366), - [sym__str_back_ticks] = ACTIONS(1366), - [aux_sym__record_key_token2] = ACTIONS(1198), + [1253] = { + [sym__expression] = STATE(1714), + [sym_expr_unary] = STATE(357), + [sym__expr_unary_minus] = STATE(415), + [sym_expr_binary] = STATE(357), + [sym__expr_binary_expression] = STATE(6365), + [sym_expr_parenthesized] = STATE(289), + [sym_val_range] = STATE(1480), + [sym__val_range] = STATE(10205), + [sym__value] = STATE(357), + [sym_val_nothing] = STATE(382), + [sym_val_bool] = STATE(335), + [sym_val_variable] = STATE(291), + [sym__var] = STATE(255), + [sym_val_number] = STATE(382), + [sym__val_number_decimal] = STATE(242), + [sym__val_number] = STATE(384), + [sym_val_duration] = STATE(382), + [sym_val_filesize] = STATE(382), + [sym_val_binary] = STATE(382), + [sym_val_string] = STATE(382), + [sym__str_double_quotes] = STATE(383), + [sym_val_interpolated] = STATE(382), + [sym__inter_single_quotes] = STATE(399), + [sym__inter_double_quotes] = STATE(400), + [sym_val_list] = STATE(382), + [sym_val_record] = STATE(382), + [sym_val_table] = STATE(382), + [sym_val_closure] = STATE(382), + [sym_unquoted] = STATE(1715), + [sym__unquoted_anonymous_prefix] = STATE(10791), + [sym_comment] = STATE(1253), + [anon_sym_LBRACK] = ACTIONS(4502), + [anon_sym_LPAREN] = ACTIONS(4504), + [anon_sym_DOLLAR] = ACTIONS(4506), + [anon_sym_DASH] = ACTIONS(4508), + [anon_sym_LBRACE] = ACTIONS(4510), + [anon_sym_DOT_DOT] = ACTIONS(4512), + [anon_sym_not] = ACTIONS(4514), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4516), + [anon_sym_DOT_DOT_LT] = ACTIONS(4516), + [anon_sym_null] = ACTIONS(4518), + [anon_sym_true] = ACTIONS(4520), + [anon_sym_false] = ACTIONS(4520), + [aux_sym__val_number_decimal_token1] = ACTIONS(4522), + [aux_sym__val_number_decimal_token2] = ACTIONS(4524), + [anon_sym_DOT2] = ACTIONS(4526), + [aux_sym__val_number_decimal_token3] = ACTIONS(4528), + [aux_sym__val_number_token1] = ACTIONS(4530), + [aux_sym__val_number_token2] = ACTIONS(4530), + [aux_sym__val_number_token3] = ACTIONS(4530), + [aux_sym__val_number_token4] = ACTIONS(4532), + [aux_sym__val_number_token5] = ACTIONS(4532), + [aux_sym__val_number_token6] = ACTIONS(4532), + [anon_sym_0b] = ACTIONS(4534), + [anon_sym_0o] = ACTIONS(4536), + [anon_sym_0x] = ACTIONS(4536), + [sym_val_date] = ACTIONS(4538), + [anon_sym_DQUOTE] = ACTIONS(4540), + [sym__str_single_quotes] = ACTIONS(4542), + [sym__str_back_ticks] = ACTIONS(4542), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4544), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4546), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(4548), [anon_sym_POUND] = ACTIONS(3), }, - [1024] = { - [sym_comment] = STATE(1024), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_list] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_make] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_else] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_catch] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_new] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1370), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1370), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [aux_sym__record_key_token2] = ACTIONS(1368), + [1254] = { + [sym_cell_path] = STATE(2086), + [sym_path] = STATE(1169), + [sym_comment] = STATE(1254), + [anon_sym_LBRACK] = ACTIONS(1087), + [anon_sym_COMMA] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_DOLLAR] = ACTIONS(1087), + [anon_sym_GT] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_in] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1087), + [anon_sym__] = ACTIONS(1085), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(1085), + [anon_sym_STAR_STAR] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(1085), + [anon_sym_mod] = ACTIONS(1087), + [anon_sym_SLASH_SLASH] = ACTIONS(1087), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_bit_DASHshl] = ACTIONS(1087), + [anon_sym_bit_DASHshr] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1087), + [anon_sym_BANG_EQ] = ACTIONS(1087), + [anon_sym_LT2] = ACTIONS(1085), + [anon_sym_LT_EQ] = ACTIONS(1087), + [anon_sym_GT_EQ] = ACTIONS(1087), + [anon_sym_not_DASHin] = ACTIONS(1087), + [anon_sym_starts_DASHwith] = ACTIONS(1087), + [anon_sym_ends_DASHwith] = ACTIONS(1087), + [anon_sym_EQ_TILDE] = ACTIONS(1087), + [anon_sym_BANG_TILDE] = ACTIONS(1087), + [anon_sym_bit_DASHand] = ACTIONS(1087), + [anon_sym_bit_DASHxor] = ACTIONS(1087), + [anon_sym_bit_DASHor] = ACTIONS(1087), + [anon_sym_and] = ACTIONS(1087), + [anon_sym_xor] = ACTIONS(1087), + [anon_sym_or] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(3807), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1087), + [anon_sym_DOT_DOT_LT] = ACTIONS(1087), + [anon_sym_null] = ACTIONS(1087), + [anon_sym_true] = ACTIONS(1087), + [anon_sym_false] = ACTIONS(1087), + [aux_sym__val_number_decimal_token1] = ACTIONS(1085), + [aux_sym__val_number_decimal_token2] = ACTIONS(1087), + [anon_sym_DOT2] = ACTIONS(1085), + [aux_sym__val_number_decimal_token3] = ACTIONS(1087), + [aux_sym__val_number_token1] = ACTIONS(1087), + [aux_sym__val_number_token2] = ACTIONS(1087), + [aux_sym__val_number_token3] = ACTIONS(1087), + [aux_sym__val_number_token4] = ACTIONS(1087), + [aux_sym__val_number_token5] = ACTIONS(1087), + [aux_sym__val_number_token6] = ACTIONS(1087), + [anon_sym_0b] = ACTIONS(1085), + [anon_sym_0o] = ACTIONS(1085), + [anon_sym_0x] = ACTIONS(1085), + [sym_val_date] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1087), + [sym__str_single_quotes] = ACTIONS(1087), + [sym__str_back_ticks] = ACTIONS(1087), + [anon_sym_err_GT] = ACTIONS(1087), + [anon_sym_out_GT] = ACTIONS(1087), + [anon_sym_e_GT] = ACTIONS(1087), + [anon_sym_o_GT] = ACTIONS(1087), + [anon_sym_err_PLUSout_GT] = ACTIONS(1087), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1087), + [anon_sym_o_PLUSe_GT] = ACTIONS(1087), + [anon_sym_e_PLUSo_GT] = ACTIONS(1087), + [aux_sym_unquoted_token1] = ACTIONS(1085), [anon_sym_POUND] = ACTIONS(3), }, - [1025] = { - [sym_comment] = STATE(1025), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [sym_cmd_identifier] = ACTIONS(1368), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_list] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_make] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_else] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_catch] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_new] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1370), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1370), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [aux_sym__record_key_token2] = ACTIONS(1368), + [1255] = { + [sym_comment] = STATE(1255), + [anon_sym_LBRACK] = ACTIONS(1091), + [anon_sym_COMMA] = ACTIONS(1091), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_DOLLAR] = ACTIONS(1091), + [anon_sym_GT] = ACTIONS(1089), + [anon_sym_DASH] = ACTIONS(1089), + [anon_sym_in] = ACTIONS(1089), + [anon_sym_LBRACE] = ACTIONS(1091), + [anon_sym_RBRACE] = ACTIONS(1091), + [anon_sym__] = ACTIONS(1089), + [anon_sym_DOT_DOT] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_STAR_STAR] = ACTIONS(1091), + [anon_sym_PLUS_PLUS] = ACTIONS(1091), + [anon_sym_SLASH] = ACTIONS(1089), + [anon_sym_mod] = ACTIONS(1091), + [anon_sym_SLASH_SLASH] = ACTIONS(1091), + [anon_sym_PLUS] = ACTIONS(1089), + [anon_sym_bit_DASHshl] = ACTIONS(1091), + [anon_sym_bit_DASHshr] = ACTIONS(1091), + [anon_sym_EQ_EQ] = ACTIONS(1091), + [anon_sym_BANG_EQ] = ACTIONS(1091), + [anon_sym_LT2] = ACTIONS(1089), + [anon_sym_LT_EQ] = ACTIONS(1091), + [anon_sym_GT_EQ] = ACTIONS(1091), + [anon_sym_not_DASHin] = ACTIONS(1091), + [anon_sym_starts_DASHwith] = ACTIONS(1091), + [anon_sym_ends_DASHwith] = ACTIONS(1091), + [anon_sym_EQ_TILDE] = ACTIONS(1091), + [anon_sym_BANG_TILDE] = ACTIONS(1091), + [anon_sym_bit_DASHand] = ACTIONS(1091), + [anon_sym_bit_DASHxor] = ACTIONS(1091), + [anon_sym_bit_DASHor] = ACTIONS(1091), + [anon_sym_and] = ACTIONS(1091), + [anon_sym_xor] = ACTIONS(1091), + [anon_sym_or] = ACTIONS(1091), + [anon_sym_DOT_DOT2] = ACTIONS(3956), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_DOT_DOT_LT] = ACTIONS(1089), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3958), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3958), + [anon_sym_null] = ACTIONS(1091), + [anon_sym_true] = ACTIONS(1091), + [anon_sym_false] = ACTIONS(1091), + [aux_sym__val_number_decimal_token1] = ACTIONS(1089), + [aux_sym__val_number_decimal_token2] = ACTIONS(1091), + [anon_sym_DOT2] = ACTIONS(1089), + [aux_sym__val_number_decimal_token3] = ACTIONS(1091), + [aux_sym__val_number_token1] = ACTIONS(1091), + [aux_sym__val_number_token2] = ACTIONS(1091), + [aux_sym__val_number_token3] = ACTIONS(1091), + [aux_sym__val_number_token4] = ACTIONS(1091), + [aux_sym__val_number_token5] = ACTIONS(1091), + [aux_sym__val_number_token6] = ACTIONS(1091), + [anon_sym_0b] = ACTIONS(1089), + [anon_sym_0o] = ACTIONS(1089), + [anon_sym_0x] = ACTIONS(1089), + [sym_val_date] = ACTIONS(1091), + [anon_sym_DQUOTE] = ACTIONS(1091), + [sym__str_single_quotes] = ACTIONS(1091), + [sym__str_back_ticks] = ACTIONS(1091), + [anon_sym_err_GT] = ACTIONS(1091), + [anon_sym_out_GT] = ACTIONS(1091), + [anon_sym_e_GT] = ACTIONS(1091), + [anon_sym_o_GT] = ACTIONS(1091), + [anon_sym_err_PLUSout_GT] = ACTIONS(1091), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1091), + [anon_sym_o_PLUSe_GT] = ACTIONS(1091), + [anon_sym_e_PLUSo_GT] = ACTIONS(1091), + [aux_sym_unquoted_token1] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(3), }, - [1026] = { - [sym__expr_parenthesized_immediate] = STATE(1364), - [sym__immediate_decimal] = STATE(1247), - [sym_val_variable] = STATE(1364), - [sym__var] = STATE(1206), - [sym_comment] = STATE(1026), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(1794), - [anon_sym_error] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_RBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_as] = ACTIONS(936), - [anon_sym_where] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_DOT] = ACTIONS(1798), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [aux_sym__immediate_decimal_token1] = ACTIONS(1800), - [aux_sym__immediate_decimal_token3] = ACTIONS(1800), - [aux_sym__immediate_decimal_token4] = ACTIONS(1802), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [aux_sym_unquoted_token3] = ACTIONS(973), - [aux_sym_unquoted_token5] = ACTIONS(1804), - [anon_sym_POUND] = ACTIONS(113), + [1256] = { + [sym__expression] = STATE(4009), + [sym_expr_unary] = STATE(2053), + [sym__expr_unary_minus] = STATE(2161), + [sym_expr_binary] = STATE(2053), + [sym__expr_binary_expression] = STATE(6368), + [sym_expr_parenthesized] = STATE(1190), + [sym_val_range] = STATE(4080), + [sym__val_range] = STATE(10213), + [sym__value] = STATE(2053), + [sym_val_nothing] = STATE(2024), + [sym_val_bool] = STATE(1948), + [sym_val_variable] = STATE(1269), + [sym__var] = STATE(949), + [sym_val_number] = STATE(2024), + [sym__val_number_decimal] = STATE(930), + [sym__val_number] = STATE(2051), + [sym_val_duration] = STATE(2024), + [sym_val_filesize] = STATE(2024), + [sym_val_binary] = STATE(2024), + [sym_val_string] = STATE(2024), + [sym__str_double_quotes] = STATE(2038), + [sym_val_interpolated] = STATE(2024), + [sym__inter_single_quotes] = STATE(2189), + [sym__inter_double_quotes] = STATE(2190), + [sym_val_list] = STATE(2024), + [sym_val_record] = STATE(2024), + [sym_val_table] = STATE(2024), + [sym_val_closure] = STATE(2024), + [sym_unquoted] = STATE(4011), + [sym__unquoted_anonymous_prefix] = STATE(10319), + [sym_comment] = STATE(1256), + [anon_sym_LBRACK] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(4552), + [anon_sym_DOLLAR] = ACTIONS(4554), + [anon_sym_DASH] = ACTIONS(4556), + [anon_sym_LBRACE] = ACTIONS(4558), + [anon_sym_DOT_DOT] = ACTIONS(4560), + [anon_sym_not] = ACTIONS(4562), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4564), + [anon_sym_DOT_DOT_LT] = ACTIONS(4564), + [anon_sym_null] = ACTIONS(4566), + [anon_sym_true] = ACTIONS(4568), + [anon_sym_false] = ACTIONS(4568), + [aux_sym__val_number_decimal_token1] = ACTIONS(4570), + [aux_sym__val_number_decimal_token2] = ACTIONS(4572), + [anon_sym_DOT2] = ACTIONS(4574), + [aux_sym__val_number_decimal_token3] = ACTIONS(4576), + [aux_sym__val_number_token1] = ACTIONS(4578), + [aux_sym__val_number_token2] = ACTIONS(4578), + [aux_sym__val_number_token3] = ACTIONS(4578), + [aux_sym__val_number_token4] = ACTIONS(4580), + [aux_sym__val_number_token5] = ACTIONS(4580), + [aux_sym__val_number_token6] = ACTIONS(4580), + [anon_sym_0b] = ACTIONS(4582), + [anon_sym_0o] = ACTIONS(4584), + [anon_sym_0x] = ACTIONS(4584), + [sym_val_date] = ACTIONS(4586), + [anon_sym_DQUOTE] = ACTIONS(4588), + [sym__str_single_quotes] = ACTIONS(4590), + [sym__str_back_ticks] = ACTIONS(4590), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4592), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4594), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(4596), + [anon_sym_POUND] = ACTIONS(3), }, - [1027] = { - [sym__expr_parenthesized_immediate] = STATE(1364), - [sym__immediate_decimal] = STATE(1216), - [sym_val_variable] = STATE(1364), - [sym__var] = STATE(1206), - [sym_comment] = STATE(1027), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(1794), - [anon_sym_error] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_RBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_as] = ACTIONS(936), - [anon_sym_where] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_DOT] = ACTIONS(1806), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [aux_sym__immediate_decimal_token1] = ACTIONS(1808), - [aux_sym__immediate_decimal_token3] = ACTIONS(1808), - [aux_sym__immediate_decimal_token4] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [aux_sym_unquoted_token3] = ACTIONS(1812), - [aux_sym_unquoted_token5] = ACTIONS(1814), - [anon_sym_POUND] = ACTIONS(113), + [1257] = { + [sym__expression] = STATE(3760), + [sym_expr_unary] = STATE(1434), + [sym__expr_unary_minus] = STATE(1792), + [sym_expr_binary] = STATE(1434), + [sym__expr_binary_expression] = STATE(6370), + [sym_expr_parenthesized] = STATE(1106), + [sym_val_range] = STATE(3752), + [sym__val_range] = STATE(10222), + [sym__value] = STATE(1434), + [sym_val_nothing] = STATE(1965), + [sym_val_bool] = STATE(1364), + [sym_val_variable] = STATE(1123), + [sym__var] = STATE(897), + [sym_val_number] = STATE(1965), + [sym__val_number_decimal] = STATE(883), + [sym__val_number] = STATE(1966), + [sym_val_duration] = STATE(1965), + [sym_val_filesize] = STATE(1965), + [sym_val_binary] = STATE(1965), + [sym_val_string] = STATE(1965), + [sym__str_double_quotes] = STATE(1487), + [sym_val_interpolated] = STATE(1965), + [sym__inter_single_quotes] = STATE(1494), + [sym__inter_double_quotes] = STATE(1495), + [sym_val_list] = STATE(1965), + [sym_val_record] = STATE(1965), + [sym_val_table] = STATE(1965), + [sym_val_closure] = STATE(1965), + [sym_unquoted] = STATE(3761), + [sym__unquoted_anonymous_prefix] = STATE(10411), + [sym_comment] = STATE(1257), + [anon_sym_LBRACK] = ACTIONS(4598), + [anon_sym_LPAREN] = ACTIONS(4600), + [anon_sym_DOLLAR] = ACTIONS(4602), + [anon_sym_DASH] = ACTIONS(4604), + [anon_sym_LBRACE] = ACTIONS(4606), + [anon_sym_DOT_DOT] = ACTIONS(4608), + [anon_sym_not] = ACTIONS(4610), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4612), + [anon_sym_DOT_DOT_LT] = ACTIONS(4612), + [anon_sym_null] = ACTIONS(4614), + [anon_sym_true] = ACTIONS(4616), + [anon_sym_false] = ACTIONS(4616), + [aux_sym__val_number_decimal_token1] = ACTIONS(4618), + [aux_sym__val_number_decimal_token2] = ACTIONS(4620), + [anon_sym_DOT2] = ACTIONS(4622), + [aux_sym__val_number_decimal_token3] = ACTIONS(4624), + [aux_sym__val_number_token1] = ACTIONS(4626), + [aux_sym__val_number_token2] = ACTIONS(4626), + [aux_sym__val_number_token3] = ACTIONS(4626), + [aux_sym__val_number_token4] = ACTIONS(4628), + [aux_sym__val_number_token5] = ACTIONS(4628), + [aux_sym__val_number_token6] = ACTIONS(4628), + [anon_sym_0b] = ACTIONS(4630), + [anon_sym_0o] = ACTIONS(4632), + [anon_sym_0x] = ACTIONS(4632), + [sym_val_date] = ACTIONS(4634), + [anon_sym_DQUOTE] = ACTIONS(4636), + [sym__str_single_quotes] = ACTIONS(4638), + [sym__str_back_ticks] = ACTIONS(4638), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4642), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(4644), + [anon_sym_POUND] = ACTIONS(3), }, - [1028] = { - [sym_expr_parenthesized] = STATE(7947), - [sym_val_range] = STATE(8752), - [sym__val_range] = STATE(10586), - [sym__val_range_with_end] = STATE(10490), - [sym__value] = STATE(8752), - [sym_val_nothing] = STATE(5948), - [sym_val_bool] = STATE(8170), - [sym_val_variable] = STATE(5150), - [sym__var] = STATE(4594), - [sym_val_number] = STATE(5948), - [sym__val_number_decimal] = STATE(6965), - [sym__val_number] = STATE(5814), - [sym_val_duration] = STATE(5948), - [sym_val_filesize] = STATE(5948), - [sym_val_binary] = STATE(5948), - [sym_val_string] = STATE(5948), - [sym__str_double_quotes] = STATE(5661), - [sym_val_interpolated] = STATE(5948), - [sym__inter_single_quotes] = STATE(5778), - [sym__inter_double_quotes] = STATE(5857), - [sym_val_list] = STATE(5948), - [sym_val_record] = STATE(5948), - [sym_val_table] = STATE(5948), - [sym_val_closure] = STATE(5948), - [sym__cmd_arg] = STATE(8802), - [sym_redirection] = STATE(8790), - [sym__flag] = STATE(8814), - [sym_short_flag] = STATE(8759), - [sym_long_flag] = STATE(8759), - [sym_long_flag_equals_value] = STATE(8753), - [sym_unquoted] = STATE(8253), - [sym__unquoted_with_expr] = STATE(8568), - [sym__unquoted_anonymous_prefix] = STATE(10293), - [sym_comment] = STATE(1028), - [anon_sym_SEMI] = ACTIONS(1816), - [anon_sym_LF] = ACTIONS(1816), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1820), - [anon_sym_RPAREN] = ACTIONS(1816), - [anon_sym_PIPE] = ACTIONS(1816), - [anon_sym_DOLLAR] = ACTIONS(1822), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_DOT_DOT] = ACTIONS(1830), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1832), - [anon_sym_DOT_DOT_LT] = ACTIONS(1832), - [anon_sym_null] = ACTIONS(1834), - [anon_sym_true] = ACTIONS(1836), - [anon_sym_false] = ACTIONS(1836), - [aux_sym__val_number_decimal_token1] = ACTIONS(1838), - [aux_sym__val_number_decimal_token2] = ACTIONS(1838), - [anon_sym_DOT2] = ACTIONS(1840), - [aux_sym__val_number_decimal_token3] = ACTIONS(1842), - [aux_sym__val_number_token1] = ACTIONS(1844), - [aux_sym__val_number_token2] = ACTIONS(1844), - [aux_sym__val_number_token3] = ACTIONS(1844), - [aux_sym__val_number_token4] = ACTIONS(1846), - [aux_sym__val_number_token5] = ACTIONS(1846), - [aux_sym__val_number_token6] = ACTIONS(1846), - [anon_sym_0b] = ACTIONS(1848), - [anon_sym_0o] = ACTIONS(1850), - [anon_sym_0x] = ACTIONS(1850), - [sym_val_date] = ACTIONS(1852), - [anon_sym_DQUOTE] = ACTIONS(1854), - [sym__str_single_quotes] = ACTIONS(1856), - [sym__str_back_ticks] = ACTIONS(1856), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1858), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1860), - [aux_sym_command_token1] = ACTIONS(1862), - [anon_sym_LF2] = ACTIONS(1816), - [anon_sym_err_GT] = ACTIONS(1864), - [anon_sym_out_GT] = ACTIONS(1864), - [anon_sym_e_GT] = ACTIONS(1864), - [anon_sym_o_GT] = ACTIONS(1864), - [anon_sym_err_PLUSout_GT] = ACTIONS(1864), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1864), - [anon_sym_o_PLUSe_GT] = ACTIONS(1864), - [anon_sym_e_PLUSo_GT] = ACTIONS(1864), - [aux_sym_unquoted_token1] = ACTIONS(1866), + [1258] = { + [sym_comment] = STATE(1258), + [ts_builtin_sym_end] = ACTIONS(4646), + [anon_sym_export] = ACTIONS(3725), + [anon_sym_alias] = ACTIONS(3725), + [anon_sym_let] = ACTIONS(3725), + [anon_sym_let_DASHenv] = ACTIONS(3725), + [anon_sym_mut] = ACTIONS(3725), + [anon_sym_const] = ACTIONS(3725), + [anon_sym_SEMI] = ACTIONS(3725), + [sym_cmd_identifier] = ACTIONS(3725), + [anon_sym_LF] = ACTIONS(3725), + [anon_sym_def] = ACTIONS(3725), + [anon_sym_export_DASHenv] = ACTIONS(3725), + [anon_sym_extern] = ACTIONS(3725), + [anon_sym_module] = ACTIONS(3725), + [anon_sym_use] = ACTIONS(3725), + [anon_sym_LBRACK] = ACTIONS(3725), + [anon_sym_LPAREN] = ACTIONS(3725), + [anon_sym_DOLLAR] = ACTIONS(3725), + [anon_sym_error] = ACTIONS(3725), + [anon_sym_DASH_DASH] = ACTIONS(3725), + [anon_sym_DASH] = ACTIONS(3725), + [anon_sym_break] = ACTIONS(3725), + [anon_sym_continue] = ACTIONS(3725), + [anon_sym_for] = ACTIONS(3725), + [anon_sym_loop] = ACTIONS(3725), + [anon_sym_while] = ACTIONS(3725), + [anon_sym_do] = ACTIONS(3725), + [anon_sym_if] = ACTIONS(3725), + [anon_sym_match] = ACTIONS(3725), + [anon_sym_LBRACE] = ACTIONS(3725), + [anon_sym_DOT_DOT] = ACTIONS(3725), + [anon_sym_try] = ACTIONS(3725), + [anon_sym_return] = ACTIONS(3725), + [anon_sym_source] = ACTIONS(3725), + [anon_sym_source_DASHenv] = ACTIONS(3725), + [anon_sym_register] = ACTIONS(3725), + [anon_sym_hide] = ACTIONS(3725), + [anon_sym_hide_DASHenv] = ACTIONS(3725), + [anon_sym_overlay] = ACTIONS(3725), + [anon_sym_as] = ACTIONS(3725), + [anon_sym_where] = ACTIONS(3725), + [anon_sym_not] = ACTIONS(3725), + [anon_sym_LPAREN2] = ACTIONS(3727), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3725), + [anon_sym_DOT_DOT_LT] = ACTIONS(3725), + [anon_sym_null] = ACTIONS(3725), + [anon_sym_true] = ACTIONS(3725), + [anon_sym_false] = ACTIONS(3725), + [aux_sym__val_number_decimal_token1] = ACTIONS(3725), + [aux_sym__val_number_decimal_token2] = ACTIONS(3725), + [anon_sym_DOT2] = ACTIONS(3725), + [aux_sym__val_number_decimal_token3] = ACTIONS(3725), + [aux_sym__val_number_token1] = ACTIONS(3725), + [aux_sym__val_number_token2] = ACTIONS(3725), + [aux_sym__val_number_token3] = ACTIONS(3725), + [aux_sym__val_number_token4] = ACTIONS(3725), + [aux_sym__val_number_token5] = ACTIONS(3725), + [aux_sym__val_number_token6] = ACTIONS(3725), + [anon_sym_0b] = ACTIONS(3725), + [anon_sym_0o] = ACTIONS(3725), + [anon_sym_0x] = ACTIONS(3725), + [sym_val_date] = ACTIONS(3725), + [anon_sym_DQUOTE] = ACTIONS(3725), + [sym__str_single_quotes] = ACTIONS(3725), + [sym__str_back_ticks] = ACTIONS(3725), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3725), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3725), + [anon_sym_CARET] = ACTIONS(3725), + [aux_sym_command_token1] = ACTIONS(4648), + [aux_sym_unquoted_token6] = ACTIONS(1163), [anon_sym_POUND] = ACTIONS(113), }, - [1029] = { - [sym__ctrl_expression_parenthesized] = STATE(9223), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10278), - [sym_where_command] = STATE(9286), - [sym__expression] = STATE(9286), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(5342), - [sym__var] = STATE(4755), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9168), - [sym_comment] = STATE(1029), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1070), - [sym_cmd_identifier] = ACTIONS(445), + [1259] = { + [sym__expression] = STATE(4764), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__val_range] = STATE(10050), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5277), + [sym_val_variable] = STATE(4804), + [sym__var] = STATE(4386), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(4118), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_unquoted] = STATE(4765), + [sym__unquoted_anonymous_prefix] = STATE(10833), + [sym_comment] = STATE(1259), [anon_sym_LBRACK] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(1762), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(391), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_where] = ACTIONS(187), - [anon_sym_not] = ACTIONS(191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(193), - [anon_sym_DOT_DOT_LT] = ACTIONS(193), - [anon_sym_null] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [aux_sym__val_number_decimal_token1] = ACTIONS(199), - [aux_sym__val_number_decimal_token2] = ACTIONS(201), - [anon_sym_DOT2] = ACTIONS(203), - [aux_sym__val_number_decimal_token3] = ACTIONS(205), + [anon_sym_DOT_DOT] = ACTIONS(4650), + [anon_sym_not] = ACTIONS(4652), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4654), + [anon_sym_DOT_DOT_LT] = ACTIONS(4654), + [anon_sym_null] = ACTIONS(4656), + [anon_sym_true] = ACTIONS(4658), + [anon_sym_false] = ACTIONS(4658), + [aux_sym__val_number_decimal_token1] = ACTIONS(4660), + [aux_sym__val_number_decimal_token2] = ACTIONS(4662), + [anon_sym_DOT2] = ACTIONS(4664), + [aux_sym__val_number_decimal_token3] = ACTIONS(4666), [aux_sym__val_number_token1] = ACTIONS(207), [aux_sym__val_number_token2] = ACTIONS(207), [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(209), - [aux_sym__val_number_token5] = ACTIONS(207), - [aux_sym__val_number_token6] = ACTIONS(209), + [aux_sym__val_number_token4] = ACTIONS(4668), + [aux_sym__val_number_token5] = ACTIONS(4668), + [aux_sym__val_number_token6] = ACTIONS(4668), [anon_sym_0b] = ACTIONS(211), [anon_sym_0o] = ACTIONS(213), [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(215), + [sym_val_date] = ACTIONS(4670), [anon_sym_DQUOTE] = ACTIONS(217), [sym__str_single_quotes] = ACTIONS(219), [sym__str_back_ticks] = ACTIONS(219), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(4672), [anon_sym_POUND] = ACTIONS(3), }, - [1030] = { - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(10446), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(5342), - [sym__var] = STATE(4755), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), - [sym_comment] = STATE(1030), - [aux_sym_pipeline_repeat1] = STATE(1074), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(1762), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_where] = ACTIONS(187), - [anon_sym_not] = ACTIONS(191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(193), - [anon_sym_DOT_DOT_LT] = ACTIONS(193), - [anon_sym_null] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [aux_sym__val_number_decimal_token1] = ACTIONS(199), - [aux_sym__val_number_decimal_token2] = ACTIONS(201), - [anon_sym_DOT2] = ACTIONS(203), - [aux_sym__val_number_decimal_token3] = ACTIONS(205), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(209), - [aux_sym__val_number_token5] = ACTIONS(207), - [aux_sym__val_number_token6] = ACTIONS(209), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(227), + [1260] = { + [sym_cell_path] = STATE(2172), + [sym_path] = STATE(1169), + [sym_comment] = STATE(1260), + [anon_sym_LBRACK] = ACTIONS(1095), + [anon_sym_COMMA] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1095), + [anon_sym_DOLLAR] = ACTIONS(1095), + [anon_sym_GT] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_in] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_RBRACE] = ACTIONS(1095), + [anon_sym__] = ACTIONS(1093), + [anon_sym_DOT_DOT] = ACTIONS(1093), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_STAR_STAR] = ACTIONS(1095), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_SLASH] = ACTIONS(1093), + [anon_sym_mod] = ACTIONS(1095), + [anon_sym_SLASH_SLASH] = ACTIONS(1095), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_bit_DASHshl] = ACTIONS(1095), + [anon_sym_bit_DASHshr] = ACTIONS(1095), + [anon_sym_EQ_EQ] = ACTIONS(1095), + [anon_sym_BANG_EQ] = ACTIONS(1095), + [anon_sym_LT2] = ACTIONS(1093), + [anon_sym_LT_EQ] = ACTIONS(1095), + [anon_sym_GT_EQ] = ACTIONS(1095), + [anon_sym_not_DASHin] = ACTIONS(1095), + [anon_sym_starts_DASHwith] = ACTIONS(1095), + [anon_sym_ends_DASHwith] = ACTIONS(1095), + [anon_sym_EQ_TILDE] = ACTIONS(1095), + [anon_sym_BANG_TILDE] = ACTIONS(1095), + [anon_sym_bit_DASHand] = ACTIONS(1095), + [anon_sym_bit_DASHxor] = ACTIONS(1095), + [anon_sym_bit_DASHor] = ACTIONS(1095), + [anon_sym_and] = ACTIONS(1095), + [anon_sym_xor] = ACTIONS(1095), + [anon_sym_or] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(3807), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1095), + [anon_sym_DOT_DOT_LT] = ACTIONS(1095), + [anon_sym_null] = ACTIONS(1095), + [anon_sym_true] = ACTIONS(1095), + [anon_sym_false] = ACTIONS(1095), + [aux_sym__val_number_decimal_token1] = ACTIONS(1093), + [aux_sym__val_number_decimal_token2] = ACTIONS(1095), + [anon_sym_DOT2] = ACTIONS(1093), + [aux_sym__val_number_decimal_token3] = ACTIONS(1095), + [aux_sym__val_number_token1] = ACTIONS(1095), + [aux_sym__val_number_token2] = ACTIONS(1095), + [aux_sym__val_number_token3] = ACTIONS(1095), + [aux_sym__val_number_token4] = ACTIONS(1095), + [aux_sym__val_number_token5] = ACTIONS(1095), + [aux_sym__val_number_token6] = ACTIONS(1095), + [anon_sym_0b] = ACTIONS(1093), + [anon_sym_0o] = ACTIONS(1093), + [anon_sym_0x] = ACTIONS(1093), + [sym_val_date] = ACTIONS(1095), + [anon_sym_DQUOTE] = ACTIONS(1095), + [sym__str_single_quotes] = ACTIONS(1095), + [sym__str_back_ticks] = ACTIONS(1095), + [anon_sym_err_GT] = ACTIONS(1095), + [anon_sym_out_GT] = ACTIONS(1095), + [anon_sym_e_GT] = ACTIONS(1095), + [anon_sym_o_GT] = ACTIONS(1095), + [anon_sym_err_PLUSout_GT] = ACTIONS(1095), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1095), + [anon_sym_o_PLUSe_GT] = ACTIONS(1095), + [anon_sym_e_PLUSo_GT] = ACTIONS(1095), + [aux_sym_unquoted_token1] = ACTIONS(1093), [anon_sym_POUND] = ACTIONS(3), }, - [1031] = { - [sym__ctrl_expression] = STATE(9270), - [sym_ctrl_do] = STATE(9515), - [sym_ctrl_if] = STATE(9515), - [sym_ctrl_match] = STATE(9515), - [sym_ctrl_try] = STATE(9515), - [sym_ctrl_return] = STATE(9515), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(10187), - [sym_where_command] = STATE(8865), - [sym__expression] = STATE(8865), - [sym_expr_unary] = STATE(6379), - [sym__expr_unary_minus] = STATE(6347), - [sym_expr_binary] = STATE(6379), - [sym__expr_binary_expression] = STATE(6784), - [sym_expr_parenthesized] = STATE(5573), - [sym_val_range] = STATE(8689), - [sym__value] = STATE(6379), - [sym_val_nothing] = STATE(6374), - [sym_val_bool] = STATE(6374), - [sym_val_variable] = STATE(5610), - [sym__var] = STATE(4886), - [sym_val_number] = STATE(6374), - [sym__val_number_decimal] = STATE(4698), - [sym__val_number] = STATE(5769), - [sym_val_duration] = STATE(6374), - [sym_val_filesize] = STATE(6374), - [sym_val_binary] = STATE(6374), - [sym_val_string] = STATE(6374), - [sym__str_double_quotes] = STATE(6386), - [sym_val_interpolated] = STATE(6374), - [sym__inter_single_quotes] = STATE(6363), - [sym__inter_double_quotes] = STATE(6365), - [sym_val_list] = STATE(6374), - [sym_val_record] = STATE(6374), - [sym_val_table] = STATE(6374), - [sym_val_closure] = STATE(6374), - [sym_command] = STATE(8865), - [sym_comment] = STATE(1031), - [aux_sym_pipeline_repeat1] = STATE(1074), - [sym_cmd_identifier] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(1742), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_do] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_match] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_DOT_DOT] = ACTIONS(59), - [anon_sym_try] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_where] = ACTIONS(75), - [anon_sym_not] = ACTIONS(77), - [anon_sym_DOT_DOT_EQ] = ACTIONS(79), - [anon_sym_DOT_DOT_LT] = ACTIONS(79), - [anon_sym_null] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym__val_number_decimal_token1] = ACTIONS(85), - [aux_sym__val_number_decimal_token2] = ACTIONS(87), - [anon_sym_DOT2] = ACTIONS(89), - [aux_sym__val_number_decimal_token3] = ACTIONS(91), - [aux_sym__val_number_token1] = ACTIONS(93), - [aux_sym__val_number_token2] = ACTIONS(93), - [aux_sym__val_number_token3] = ACTIONS(93), - [aux_sym__val_number_token4] = ACTIONS(95), - [aux_sym__val_number_token5] = ACTIONS(93), - [aux_sym__val_number_token6] = ACTIONS(95), - [anon_sym_0b] = ACTIONS(97), - [anon_sym_0o] = ACTIONS(99), - [anon_sym_0x] = ACTIONS(99), - [sym_val_date] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym__str_single_quotes] = ACTIONS(105), - [sym__str_back_ticks] = ACTIONS(105), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(111), - [anon_sym_POUND] = ACTIONS(3), + [1261] = { + [sym_comment] = STATE(1261), + [ts_builtin_sym_end] = ACTIONS(3693), + [anon_sym_export] = ACTIONS(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_let] = ACTIONS(3691), + [anon_sym_let_DASHenv] = ACTIONS(3691), + [anon_sym_mut] = ACTIONS(3691), + [anon_sym_const] = ACTIONS(3691), + [anon_sym_SEMI] = ACTIONS(3691), + [sym_cmd_identifier] = ACTIONS(3691), + [anon_sym_LF] = ACTIONS(3693), + [anon_sym_def] = ACTIONS(3691), + [anon_sym_export_DASHenv] = ACTIONS(3691), + [anon_sym_extern] = ACTIONS(3691), + [anon_sym_module] = ACTIONS(3691), + [anon_sym_use] = ACTIONS(3691), + [anon_sym_LBRACK] = ACTIONS(3691), + [anon_sym_LPAREN] = ACTIONS(3691), + [anon_sym_DOLLAR] = ACTIONS(3691), + [anon_sym_error] = ACTIONS(3691), + [anon_sym_DASH_DASH] = ACTIONS(3691), + [anon_sym_DASH] = ACTIONS(3691), + [anon_sym_break] = ACTIONS(3691), + [anon_sym_continue] = ACTIONS(3691), + [anon_sym_for] = ACTIONS(3691), + [anon_sym_loop] = ACTIONS(3691), + [anon_sym_while] = ACTIONS(3691), + [anon_sym_do] = ACTIONS(3691), + [anon_sym_if] = ACTIONS(3691), + [anon_sym_match] = ACTIONS(3691), + [anon_sym_LBRACE] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3691), + [anon_sym_try] = ACTIONS(3691), + [anon_sym_return] = ACTIONS(3691), + [anon_sym_source] = ACTIONS(3691), + [anon_sym_source_DASHenv] = ACTIONS(3691), + [anon_sym_register] = ACTIONS(3691), + [anon_sym_hide] = ACTIONS(3691), + [anon_sym_hide_DASHenv] = ACTIONS(3691), + [anon_sym_overlay] = ACTIONS(3691), + [anon_sym_as] = ACTIONS(3691), + [anon_sym_where] = ACTIONS(3691), + [anon_sym_not] = ACTIONS(3691), + [anon_sym_DOT_DOT2] = ACTIONS(4674), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3691), + [anon_sym_DOT_DOT_LT] = ACTIONS(3691), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4676), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4676), + [anon_sym_null] = ACTIONS(3691), + [anon_sym_true] = ACTIONS(3691), + [anon_sym_false] = ACTIONS(3691), + [aux_sym__val_number_decimal_token1] = ACTIONS(3691), + [aux_sym__val_number_decimal_token2] = ACTIONS(3691), + [anon_sym_DOT2] = ACTIONS(3691), + [aux_sym__val_number_decimal_token3] = ACTIONS(3691), + [aux_sym__val_number_token1] = ACTIONS(3691), + [aux_sym__val_number_token2] = ACTIONS(3691), + [aux_sym__val_number_token3] = ACTIONS(3691), + [aux_sym__val_number_token4] = ACTIONS(3691), + [aux_sym__val_number_token5] = ACTIONS(3691), + [aux_sym__val_number_token6] = ACTIONS(3691), + [anon_sym_0b] = ACTIONS(3691), + [anon_sym_0o] = ACTIONS(3691), + [anon_sym_0x] = ACTIONS(3691), + [sym_val_date] = ACTIONS(3691), + [anon_sym_DQUOTE] = ACTIONS(3691), + [sym__str_single_quotes] = ACTIONS(3691), + [sym__str_back_ticks] = ACTIONS(3691), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3691), + [anon_sym_CARET] = ACTIONS(3691), + [anon_sym_POUND] = ACTIONS(113), }, - [1032] = { - [sym__ctrl_expression_parenthesized] = STATE(9506), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_pipe_element_parenthesized_last] = STATE(10846), - [sym_where_command] = STATE(9507), - [sym__expression] = STATE(9507), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(5342), - [sym__var] = STATE(4755), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(9509), - [sym_comment] = STATE(1032), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1070), - [sym_cmd_identifier] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(1762), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(451), - [anon_sym_match] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(453), - [anon_sym_return] = ACTIONS(417), - [anon_sym_where] = ACTIONS(187), - [anon_sym_not] = ACTIONS(191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(193), - [anon_sym_DOT_DOT_LT] = ACTIONS(193), - [anon_sym_null] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [aux_sym__val_number_decimal_token1] = ACTIONS(199), - [aux_sym__val_number_decimal_token2] = ACTIONS(201), - [anon_sym_DOT2] = ACTIONS(203), - [aux_sym__val_number_decimal_token3] = ACTIONS(205), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(209), - [aux_sym__val_number_token5] = ACTIONS(207), - [aux_sym__val_number_token6] = ACTIONS(209), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(457), - [anon_sym_POUND] = ACTIONS(3), + [1262] = { + [sym_comment] = STATE(1262), + [ts_builtin_sym_end] = ACTIONS(3701), + [anon_sym_export] = ACTIONS(3699), + [anon_sym_alias] = ACTIONS(3699), + [anon_sym_let] = ACTIONS(3699), + [anon_sym_let_DASHenv] = ACTIONS(3699), + [anon_sym_mut] = ACTIONS(3699), + [anon_sym_const] = ACTIONS(3699), + [anon_sym_SEMI] = ACTIONS(3699), + [sym_cmd_identifier] = ACTIONS(3699), + [anon_sym_LF] = ACTIONS(3701), + [anon_sym_def] = ACTIONS(3699), + [anon_sym_export_DASHenv] = ACTIONS(3699), + [anon_sym_extern] = ACTIONS(3699), + [anon_sym_module] = ACTIONS(3699), + [anon_sym_use] = ACTIONS(3699), + [anon_sym_LBRACK] = ACTIONS(3699), + [anon_sym_LPAREN] = ACTIONS(3699), + [anon_sym_DOLLAR] = ACTIONS(3699), + [anon_sym_error] = ACTIONS(3699), + [anon_sym_DASH_DASH] = ACTIONS(3699), + [anon_sym_DASH] = ACTIONS(3699), + [anon_sym_break] = ACTIONS(3699), + [anon_sym_continue] = ACTIONS(3699), + [anon_sym_for] = ACTIONS(3699), + [anon_sym_loop] = ACTIONS(3699), + [anon_sym_while] = ACTIONS(3699), + [anon_sym_do] = ACTIONS(3699), + [anon_sym_if] = ACTIONS(3699), + [anon_sym_match] = ACTIONS(3699), + [anon_sym_LBRACE] = ACTIONS(3699), + [anon_sym_DOT_DOT] = ACTIONS(3699), + [anon_sym_try] = ACTIONS(3699), + [anon_sym_return] = ACTIONS(3699), + [anon_sym_source] = ACTIONS(3699), + [anon_sym_source_DASHenv] = ACTIONS(3699), + [anon_sym_register] = ACTIONS(3699), + [anon_sym_hide] = ACTIONS(3699), + [anon_sym_hide_DASHenv] = ACTIONS(3699), + [anon_sym_overlay] = ACTIONS(3699), + [anon_sym_as] = ACTIONS(3699), + [anon_sym_where] = ACTIONS(3699), + [anon_sym_not] = ACTIONS(3699), + [anon_sym_DOT_DOT2] = ACTIONS(4678), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3699), + [anon_sym_DOT_DOT_LT] = ACTIONS(3699), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4680), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4680), + [anon_sym_null] = ACTIONS(3699), + [anon_sym_true] = ACTIONS(3699), + [anon_sym_false] = ACTIONS(3699), + [aux_sym__val_number_decimal_token1] = ACTIONS(3699), + [aux_sym__val_number_decimal_token2] = ACTIONS(3699), + [anon_sym_DOT2] = ACTIONS(3699), + [aux_sym__val_number_decimal_token3] = ACTIONS(3699), + [aux_sym__val_number_token1] = ACTIONS(3699), + [aux_sym__val_number_token2] = ACTIONS(3699), + [aux_sym__val_number_token3] = ACTIONS(3699), + [aux_sym__val_number_token4] = ACTIONS(3699), + [aux_sym__val_number_token5] = ACTIONS(3699), + [aux_sym__val_number_token6] = ACTIONS(3699), + [anon_sym_0b] = ACTIONS(3699), + [anon_sym_0o] = ACTIONS(3699), + [anon_sym_0x] = ACTIONS(3699), + [sym_val_date] = ACTIONS(3699), + [anon_sym_DQUOTE] = ACTIONS(3699), + [sym__str_single_quotes] = ACTIONS(3699), + [sym__str_back_ticks] = ACTIONS(3699), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3699), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3699), + [anon_sym_CARET] = ACTIONS(3699), + [anon_sym_POUND] = ACTIONS(113), }, - [1033] = { - [sym__ctrl_expression] = STATE(8799), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_pipe_element_last] = STATE(9091), - [sym_where_command] = STATE(8588), - [sym__expression] = STATE(8588), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(5342), - [sym__var] = STATE(4755), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8588), - [sym_comment] = STATE(1033), - [aux_sym_pipeline_repeat1] = STATE(1074), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(1762), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_where] = ACTIONS(187), - [anon_sym_not] = ACTIONS(191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(193), - [anon_sym_DOT_DOT_LT] = ACTIONS(193), - [anon_sym_null] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [aux_sym__val_number_decimal_token1] = ACTIONS(199), - [aux_sym__val_number_decimal_token2] = ACTIONS(201), - [anon_sym_DOT2] = ACTIONS(203), - [aux_sym__val_number_decimal_token3] = ACTIONS(205), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(209), - [aux_sym__val_number_token5] = ACTIONS(207), - [aux_sym__val_number_token6] = ACTIONS(209), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(227), + [1263] = { + [sym_comment] = STATE(1263), + [ts_builtin_sym_end] = ACTIONS(3713), + [anon_sym_export] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_let] = ACTIONS(3711), + [anon_sym_let_DASHenv] = ACTIONS(3711), + [anon_sym_mut] = ACTIONS(3711), + [anon_sym_const] = ACTIONS(3711), + [anon_sym_SEMI] = ACTIONS(3711), + [sym_cmd_identifier] = ACTIONS(3711), + [anon_sym_LF] = ACTIONS(3713), + [anon_sym_def] = ACTIONS(3711), + [anon_sym_export_DASHenv] = ACTIONS(3711), + [anon_sym_extern] = ACTIONS(3711), + [anon_sym_module] = ACTIONS(3711), + [anon_sym_use] = ACTIONS(3711), + [anon_sym_LBRACK] = ACTIONS(3711), + [anon_sym_LPAREN] = ACTIONS(3711), + [anon_sym_DOLLAR] = ACTIONS(3711), + [anon_sym_error] = ACTIONS(3711), + [anon_sym_DASH_DASH] = ACTIONS(3711), + [anon_sym_DASH] = ACTIONS(3711), + [anon_sym_break] = ACTIONS(3711), + [anon_sym_continue] = ACTIONS(3711), + [anon_sym_for] = ACTIONS(3711), + [anon_sym_loop] = ACTIONS(3711), + [anon_sym_while] = ACTIONS(3711), + [anon_sym_do] = ACTIONS(3711), + [anon_sym_if] = ACTIONS(3711), + [anon_sym_match] = ACTIONS(3711), + [anon_sym_LBRACE] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3711), + [anon_sym_try] = ACTIONS(3711), + [anon_sym_return] = ACTIONS(3711), + [anon_sym_source] = ACTIONS(3711), + [anon_sym_source_DASHenv] = ACTIONS(3711), + [anon_sym_register] = ACTIONS(3711), + [anon_sym_hide] = ACTIONS(3711), + [anon_sym_hide_DASHenv] = ACTIONS(3711), + [anon_sym_overlay] = ACTIONS(3711), + [anon_sym_as] = ACTIONS(3711), + [anon_sym_where] = ACTIONS(3711), + [anon_sym_not] = ACTIONS(3711), + [anon_sym_DOT_DOT2] = ACTIONS(4682), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3711), + [anon_sym_DOT_DOT_LT] = ACTIONS(3711), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4684), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4684), + [anon_sym_null] = ACTIONS(3711), + [anon_sym_true] = ACTIONS(3711), + [anon_sym_false] = ACTIONS(3711), + [aux_sym__val_number_decimal_token1] = ACTIONS(3711), + [aux_sym__val_number_decimal_token2] = ACTIONS(3711), + [anon_sym_DOT2] = ACTIONS(3711), + [aux_sym__val_number_decimal_token3] = ACTIONS(3711), + [aux_sym__val_number_token1] = ACTIONS(3711), + [aux_sym__val_number_token2] = ACTIONS(3711), + [aux_sym__val_number_token3] = ACTIONS(3711), + [aux_sym__val_number_token4] = ACTIONS(3711), + [aux_sym__val_number_token5] = ACTIONS(3711), + [aux_sym__val_number_token6] = ACTIONS(3711), + [anon_sym_0b] = ACTIONS(3711), + [anon_sym_0o] = ACTIONS(3711), + [anon_sym_0x] = ACTIONS(3711), + [sym_val_date] = ACTIONS(3711), + [anon_sym_DQUOTE] = ACTIONS(3711), + [sym__str_single_quotes] = ACTIONS(3711), + [sym__str_back_ticks] = ACTIONS(3711), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3711), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), + [anon_sym_CARET] = ACTIONS(3711), + [anon_sym_POUND] = ACTIONS(113), + }, + [1264] = { + [sym__expression] = STATE(7774), + [sym_expr_unary] = STATE(5743), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5743), + [sym__expr_binary_expression] = STATE(6383), + [sym_expr_parenthesized] = STATE(5960), + [sym_val_range] = STATE(6728), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5743), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6234), + [sym_val_variable] = STATE(5903), + [sym__var] = STATE(3929), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4844), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(7775), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1264), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(3100), + [anon_sym_DOLLAR] = ACTIONS(3102), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(3663), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3667), + [anon_sym_DOT_DOT_LT] = ACTIONS(3667), + [anon_sym_null] = ACTIONS(3669), + [anon_sym_true] = ACTIONS(3671), + [anon_sym_false] = ACTIONS(3671), + [aux_sym__val_number_decimal_token1] = ACTIONS(3673), + [aux_sym__val_number_decimal_token2] = ACTIONS(3675), + [anon_sym_DOT2] = ACTIONS(3677), + [aux_sym__val_number_decimal_token3] = ACTIONS(3679), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(3681), + [aux_sym__val_number_token5] = ACTIONS(3681), + [aux_sym__val_number_token6] = ACTIONS(3681), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(3683), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), [anon_sym_POUND] = ACTIONS(3), }, - [1034] = { - [sym_expr_parenthesized] = STATE(7993), - [sym_val_range] = STATE(8791), - [sym__val_range] = STATE(10596), - [sym__val_range_with_end] = STATE(10547), - [sym__value] = STATE(8791), - [sym_val_nothing] = STATE(5674), - [sym_val_bool] = STATE(8245), - [sym_val_variable] = STATE(4982), - [sym__var] = STATE(4676), - [sym_val_number] = STATE(5674), - [sym__val_number_decimal] = STATE(6994), - [sym__val_number] = STATE(5809), - [sym_val_duration] = STATE(5674), - [sym_val_filesize] = STATE(5674), - [sym_val_binary] = STATE(5674), - [sym_val_string] = STATE(5674), - [sym__str_double_quotes] = STATE(5813), - [sym_val_interpolated] = STATE(5674), - [sym__inter_single_quotes] = STATE(5696), - [sym__inter_double_quotes] = STATE(5868), - [sym_val_list] = STATE(5674), - [sym_val_record] = STATE(5674), - [sym_val_table] = STATE(5674), - [sym_val_closure] = STATE(5674), - [sym__cmd_arg] = STATE(8786), - [sym_redirection] = STATE(8793), - [sym__flag] = STATE(8794), - [sym_short_flag] = STATE(8654), - [sym_long_flag] = STATE(8654), - [sym_long_flag_equals_value] = STATE(8663), - [sym_unquoted] = STATE(8227), - [sym__unquoted_with_expr] = STATE(8795), - [sym__unquoted_anonymous_prefix] = STATE(10223), - [sym_comment] = STATE(1034), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_LF] = ACTIONS(1868), - [anon_sym_LBRACK] = ACTIONS(1870), - [anon_sym_LPAREN] = ACTIONS(1872), - [anon_sym_RPAREN] = ACTIONS(1868), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_DOLLAR] = ACTIONS(1874), - [anon_sym_DASH_DASH] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(1880), - [anon_sym_RBRACE] = ACTIONS(1868), - [anon_sym_DOT_DOT] = ACTIONS(1882), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1884), - [anon_sym_DOT_DOT_LT] = ACTIONS(1884), - [anon_sym_null] = ACTIONS(1886), - [anon_sym_true] = ACTIONS(1888), - [anon_sym_false] = ACTIONS(1888), - [aux_sym__val_number_decimal_token1] = ACTIONS(1890), - [aux_sym__val_number_decimal_token2] = ACTIONS(1890), - [anon_sym_DOT2] = ACTIONS(1892), - [aux_sym__val_number_decimal_token3] = ACTIONS(1894), - [aux_sym__val_number_token1] = ACTIONS(1896), - [aux_sym__val_number_token2] = ACTIONS(1896), - [aux_sym__val_number_token3] = ACTIONS(1896), - [aux_sym__val_number_token4] = ACTIONS(1898), - [aux_sym__val_number_token5] = ACTIONS(1898), - [aux_sym__val_number_token6] = ACTIONS(1898), - [anon_sym_0b] = ACTIONS(1900), - [anon_sym_0o] = ACTIONS(1902), - [anon_sym_0x] = ACTIONS(1902), - [sym_val_date] = ACTIONS(1904), - [anon_sym_DQUOTE] = ACTIONS(1906), - [sym__str_single_quotes] = ACTIONS(1908), - [sym__str_back_ticks] = ACTIONS(1908), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1910), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1912), - [aux_sym_command_token1] = ACTIONS(1914), - [anon_sym_err_GT] = ACTIONS(1916), - [anon_sym_out_GT] = ACTIONS(1916), - [anon_sym_e_GT] = ACTIONS(1916), - [anon_sym_o_GT] = ACTIONS(1916), - [anon_sym_err_PLUSout_GT] = ACTIONS(1916), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1916), - [anon_sym_o_PLUSe_GT] = ACTIONS(1916), - [anon_sym_e_PLUSo_GT] = ACTIONS(1916), - [aux_sym_unquoted_token1] = ACTIONS(1918), + [1265] = { + [sym_path] = STATE(1939), + [sym_comment] = STATE(1265), + [aux_sym_cell_path_repeat1] = STATE(1270), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT] = ACTIONS(3954), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_null] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym__val_number_decimal_token1] = ACTIONS(1010), + [aux_sym__val_number_decimal_token2] = ACTIONS(1010), + [anon_sym_DOT2] = ACTIONS(1010), + [aux_sym__val_number_decimal_token3] = 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(1010), + [aux_sym__val_number_token5] = ACTIONS(1010), + [aux_sym__val_number_token6] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [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_CARET] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(113), }, - [1035] = { - [sym__expr_parenthesized_immediate] = STATE(1777), - [sym__immediate_decimal] = STATE(1427), - [sym_val_variable] = STATE(1777), - [sym__var] = STATE(1373), - [sym_comment] = STATE(1035), - [anon_sym_export] = ACTIONS(1920), - [anon_sym_alias] = ACTIONS(1920), - [anon_sym_let] = ACTIONS(1920), - [anon_sym_let_DASHenv] = ACTIONS(1920), - [anon_sym_mut] = ACTIONS(1920), - [anon_sym_const] = ACTIONS(1920), - [anon_sym_SEMI] = ACTIONS(1920), - [sym_cmd_identifier] = ACTIONS(1920), - [anon_sym_LF] = ACTIONS(1922), - [anon_sym_def] = ACTIONS(1920), - [anon_sym_export_DASHenv] = ACTIONS(1920), - [anon_sym_extern] = ACTIONS(1920), - [anon_sym_module] = ACTIONS(1920), - [anon_sym_use] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1920), - [anon_sym_RPAREN] = ACTIONS(1920), - [anon_sym_DOLLAR] = ACTIONS(1924), - [anon_sym_error] = ACTIONS(1920), - [anon_sym_DASH_DASH] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1920), - [anon_sym_break] = ACTIONS(1920), - [anon_sym_continue] = ACTIONS(1920), - [anon_sym_for] = ACTIONS(1920), - [anon_sym_loop] = ACTIONS(1920), - [anon_sym_while] = ACTIONS(1920), - [anon_sym_do] = ACTIONS(1920), - [anon_sym_if] = ACTIONS(1920), - [anon_sym_match] = ACTIONS(1920), - [anon_sym_LBRACE] = ACTIONS(1920), - [anon_sym_RBRACE] = ACTIONS(1920), - [anon_sym_DOT_DOT] = ACTIONS(1920), - [anon_sym_try] = ACTIONS(1920), - [anon_sym_return] = ACTIONS(1920), - [anon_sym_source] = ACTIONS(1920), - [anon_sym_source_DASHenv] = ACTIONS(1920), - [anon_sym_register] = ACTIONS(1920), - [anon_sym_hide] = ACTIONS(1920), - [anon_sym_hide_DASHenv] = ACTIONS(1920), - [anon_sym_overlay] = ACTIONS(1920), - [anon_sym_as] = ACTIONS(1920), - [anon_sym_where] = ACTIONS(1920), - [anon_sym_not] = ACTIONS(1920), - [anon_sym_LPAREN2] = ACTIONS(1926), - [anon_sym_DOT] = ACTIONS(1928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1920), - [anon_sym_DOT_DOT_LT] = ACTIONS(1920), - [aux_sym__immediate_decimal_token1] = ACTIONS(1930), - [aux_sym__immediate_decimal_token3] = ACTIONS(1930), - [aux_sym__immediate_decimal_token4] = ACTIONS(1932), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_true] = ACTIONS(1920), - [anon_sym_false] = ACTIONS(1920), - [aux_sym__val_number_decimal_token1] = ACTIONS(1920), - [aux_sym__val_number_decimal_token2] = ACTIONS(1920), - [anon_sym_DOT2] = ACTIONS(1920), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_token1] = ACTIONS(1920), - [aux_sym__val_number_token2] = ACTIONS(1920), - [aux_sym__val_number_token3] = ACTIONS(1920), - [aux_sym__val_number_token4] = ACTIONS(1920), - [aux_sym__val_number_token5] = ACTIONS(1920), - [aux_sym__val_number_token6] = ACTIONS(1920), - [anon_sym_0b] = ACTIONS(1920), - [anon_sym_0o] = ACTIONS(1920), - [anon_sym_0x] = ACTIONS(1920), - [sym_val_date] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym__str_single_quotes] = ACTIONS(1920), - [sym__str_back_ticks] = ACTIONS(1920), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1920), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1920), - [anon_sym_CARET] = ACTIONS(1920), - [aux_sym_unquoted_token2] = ACTIONS(1934), + [1266] = { + [sym_comment] = STATE(1266), + [anon_sym_export] = ACTIONS(3354), + [anon_sym_alias] = ACTIONS(3354), + [anon_sym_let] = ACTIONS(3354), + [anon_sym_let_DASHenv] = ACTIONS(3354), + [anon_sym_mut] = ACTIONS(3354), + [anon_sym_const] = ACTIONS(3354), + [anon_sym_SEMI] = ACTIONS(3354), + [sym_cmd_identifier] = ACTIONS(3354), + [anon_sym_LF] = ACTIONS(3356), + [anon_sym_def] = ACTIONS(3354), + [anon_sym_export_DASHenv] = ACTIONS(3354), + [anon_sym_extern] = ACTIONS(3354), + [anon_sym_module] = ACTIONS(3354), + [anon_sym_use] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3354), + [anon_sym_RPAREN] = ACTIONS(3354), + [anon_sym_DOLLAR] = ACTIONS(3354), + [anon_sym_error] = ACTIONS(3354), + [anon_sym_DASH_DASH] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_loop] = ACTIONS(3354), + [anon_sym_while] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_match] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3354), + [anon_sym_RBRACE] = ACTIONS(3354), + [anon_sym_DOT_DOT] = ACTIONS(3354), + [anon_sym_try] = ACTIONS(3354), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_source] = ACTIONS(3354), + [anon_sym_source_DASHenv] = ACTIONS(3354), + [anon_sym_register] = ACTIONS(3354), + [anon_sym_hide] = ACTIONS(3354), + [anon_sym_hide_DASHenv] = ACTIONS(3354), + [anon_sym_overlay] = ACTIONS(3354), + [anon_sym_as] = ACTIONS(3354), + [anon_sym_where] = ACTIONS(3354), + [anon_sym_not] = ACTIONS(3354), + [anon_sym_DOT] = ACTIONS(3362), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3354), + [anon_sym_DOT_DOT_LT] = ACTIONS(3354), + [anon_sym_null] = ACTIONS(3354), + [anon_sym_true] = ACTIONS(3354), + [anon_sym_false] = ACTIONS(3354), + [aux_sym__val_number_decimal_token1] = ACTIONS(3354), + [aux_sym__val_number_decimal_token2] = ACTIONS(3354), + [anon_sym_DOT2] = ACTIONS(3354), + [aux_sym__val_number_decimal_token3] = ACTIONS(3354), + [aux_sym__val_number_token1] = ACTIONS(3354), + [aux_sym__val_number_token2] = ACTIONS(3354), + [aux_sym__val_number_token3] = ACTIONS(3354), + [aux_sym__val_number_token4] = ACTIONS(3354), + [aux_sym__val_number_token5] = ACTIONS(3354), + [aux_sym__val_number_token6] = ACTIONS(3354), + [anon_sym_0b] = ACTIONS(3354), + [anon_sym_0o] = ACTIONS(3354), + [anon_sym_0x] = ACTIONS(3354), + [sym_val_date] = ACTIONS(3354), + [anon_sym_DQUOTE] = ACTIONS(3354), + [sym__str_single_quotes] = ACTIONS(3354), + [sym__str_back_ticks] = ACTIONS(3354), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3354), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3354), + [anon_sym_CARET] = ACTIONS(3354), + [aux_sym_unquoted_token2] = ACTIONS(3362), [anon_sym_POUND] = ACTIONS(113), }, - [1036] = { - [sym__expr_unary_minus] = STATE(10486), - [sym_expr_parenthesized] = STATE(9327), - [sym_val_range] = STATE(10632), - [sym__val_range] = STATE(10567), - [sym__val_range_with_end] = STATE(10631), - [sym__value] = STATE(10632), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(9687), - [sym_val_variable] = STATE(5789), - [sym__var] = STATE(5205), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(7522), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(10433), - [sym_list_body] = STATE(11208), - [sym_val_entry] = STATE(10464), - [sym__list_item_expression] = STATE(10482), - [sym__list_item_starts_with_sign] = STATE(10484), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_short_flag] = STATE(10484), - [sym_long_flag] = STATE(10484), - [sym_long_flag_equals_value] = STATE(4310), - [sym__unquoted_in_list] = STATE(9820), - [sym__unquoted_in_list_with_expr] = STATE(10484), - [sym__unquoted_anonymous_prefix] = STATE(10279), - [sym_comment] = STATE(1036), - [aux_sym_list_body_repeat1] = STATE(1121), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_RBRACK] = ACTIONS(1938), - [anon_sym_LPAREN] = ACTIONS(1940), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(1950), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1952), - [anon_sym_DOT_DOT_LT] = ACTIONS(1952), - [anon_sym_null] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [aux_sym__val_number_decimal_token1] = ACTIONS(1958), - [aux_sym__val_number_decimal_token2] = ACTIONS(1960), - [anon_sym_DOT2] = ACTIONS(1962), - [aux_sym__val_number_decimal_token3] = ACTIONS(1964), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(1968), - [aux_sym__val_number_token5] = ACTIONS(1968), - [aux_sym__val_number_token6] = ACTIONS(1968), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(1699), - [anon_sym_out_GT] = ACTIONS(1699), - [anon_sym_e_GT] = ACTIONS(1699), - [anon_sym_o_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT] = ACTIONS(1699), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1701), + [1267] = { + [sym_comment] = STATE(1267), + [ts_builtin_sym_end] = ACTIONS(922), + [anon_sym_export] = ACTIONS(920), + [anon_sym_alias] = ACTIONS(920), + [anon_sym_let] = ACTIONS(920), + [anon_sym_let_DASHenv] = ACTIONS(920), + [anon_sym_mut] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(920), + [sym_cmd_identifier] = ACTIONS(920), + [anon_sym_LF] = ACTIONS(922), + [anon_sym_def] = ACTIONS(920), + [anon_sym_export_DASHenv] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym_module] = ACTIONS(920), + [anon_sym_use] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_error] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_loop] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_match] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_try] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_source] = ACTIONS(920), + [anon_sym_source_DASHenv] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_hide] = ACTIONS(920), + [anon_sym_hide_DASHenv] = ACTIONS(920), + [anon_sym_overlay] = ACTIONS(920), + [anon_sym_as] = ACTIONS(920), + [anon_sym_where] = ACTIONS(920), + [anon_sym_not] = ACTIONS(920), + [anon_sym_LPAREN2] = ACTIONS(922), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [aux_sym__immediate_decimal_token1] = ACTIONS(4686), + [anon_sym_null] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), + [anon_sym_CARET] = ACTIONS(920), + [aux_sym_unquoted_token2] = ACTIONS(4688), + [anon_sym_POUND] = ACTIONS(113), + }, + [1268] = { + [sym_cell_path] = STATE(2098), + [sym_path] = STATE(1212), + [sym_comment] = STATE(1268), + [anon_sym_LBRACK] = ACTIONS(1087), + [anon_sym_COMMA] = ACTIONS(1087), + [anon_sym_RBRACK] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_DOLLAR] = ACTIONS(1087), + [anon_sym_GT] = ACTIONS(1085), + [anon_sym_DASH_DASH] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_in] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(1085), + [anon_sym_STAR_STAR] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(1085), + [anon_sym_mod] = ACTIONS(1087), + [anon_sym_SLASH_SLASH] = ACTIONS(1087), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_bit_DASHshl] = ACTIONS(1087), + [anon_sym_bit_DASHshr] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1087), + [anon_sym_BANG_EQ] = ACTIONS(1087), + [anon_sym_LT2] = ACTIONS(1085), + [anon_sym_LT_EQ] = ACTIONS(1087), + [anon_sym_GT_EQ] = ACTIONS(1087), + [anon_sym_not_DASHin] = ACTIONS(1087), + [anon_sym_starts_DASHwith] = ACTIONS(1087), + [anon_sym_ends_DASHwith] = ACTIONS(1087), + [anon_sym_EQ_TILDE] = ACTIONS(1087), + [anon_sym_BANG_TILDE] = ACTIONS(1087), + [anon_sym_bit_DASHand] = ACTIONS(1087), + [anon_sym_bit_DASHxor] = ACTIONS(1087), + [anon_sym_bit_DASHor] = ACTIONS(1087), + [anon_sym_and] = ACTIONS(1087), + [anon_sym_xor] = ACTIONS(1087), + [anon_sym_or] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(3781), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1087), + [anon_sym_DOT_DOT_LT] = ACTIONS(1087), + [anon_sym_null] = ACTIONS(1087), + [anon_sym_true] = ACTIONS(1087), + [anon_sym_false] = ACTIONS(1087), + [aux_sym__val_number_decimal_token1] = ACTIONS(1085), + [aux_sym__val_number_decimal_token2] = ACTIONS(1087), + [anon_sym_DOT2] = ACTIONS(1085), + [aux_sym__val_number_decimal_token3] = ACTIONS(1087), + [aux_sym__val_number_token1] = ACTIONS(1087), + [aux_sym__val_number_token2] = ACTIONS(1087), + [aux_sym__val_number_token3] = ACTIONS(1087), + [aux_sym__val_number_token4] = ACTIONS(1087), + [aux_sym__val_number_token5] = ACTIONS(1087), + [aux_sym__val_number_token6] = ACTIONS(1087), + [anon_sym_0b] = ACTIONS(1085), + [anon_sym_0o] = ACTIONS(1085), + [anon_sym_0x] = ACTIONS(1085), + [sym_val_date] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1087), + [sym__str_single_quotes] = ACTIONS(1087), + [sym__str_back_ticks] = ACTIONS(1087), + [anon_sym_err_GT] = ACTIONS(1087), + [anon_sym_out_GT] = ACTIONS(1087), + [anon_sym_e_GT] = ACTIONS(1087), + [anon_sym_o_GT] = ACTIONS(1087), + [anon_sym_err_PLUSout_GT] = ACTIONS(1087), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1087), + [anon_sym_o_PLUSe_GT] = ACTIONS(1087), + [anon_sym_e_PLUSo_GT] = ACTIONS(1087), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1085), [anon_sym_POUND] = ACTIONS(3), }, - [1037] = { - [sym__expr_unary_minus] = STATE(10486), - [sym_expr_parenthesized] = STATE(9327), - [sym_val_range] = STATE(10632), - [sym__val_range] = STATE(10567), - [sym__val_range_with_end] = STATE(10631), - [sym__value] = STATE(10632), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(9687), - [sym_val_variable] = STATE(5789), - [sym__var] = STATE(5205), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(7522), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(10386), - [sym_list_body] = STATE(10954), - [sym_val_entry] = STATE(10464), - [sym__list_item_expression] = STATE(10482), - [sym__list_item_starts_with_sign] = STATE(10484), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_short_flag] = STATE(10484), - [sym_long_flag] = STATE(10484), - [sym_long_flag_equals_value] = STATE(4310), - [sym__unquoted_in_list] = STATE(9820), - [sym__unquoted_in_list_with_expr] = STATE(10484), - [sym__unquoted_anonymous_prefix] = STATE(10279), - [sym_comment] = STATE(1037), - [aux_sym_list_body_repeat1] = STATE(1121), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_RBRACK] = ACTIONS(1980), - [anon_sym_LPAREN] = ACTIONS(1940), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(1950), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1952), - [anon_sym_DOT_DOT_LT] = ACTIONS(1952), - [anon_sym_null] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [aux_sym__val_number_decimal_token1] = ACTIONS(1958), - [aux_sym__val_number_decimal_token2] = ACTIONS(1960), - [anon_sym_DOT2] = ACTIONS(1962), - [aux_sym__val_number_decimal_token3] = ACTIONS(1964), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(1968), - [aux_sym__val_number_token5] = ACTIONS(1968), - [aux_sym__val_number_token6] = ACTIONS(1968), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(1699), - [anon_sym_out_GT] = ACTIONS(1699), - [anon_sym_e_GT] = ACTIONS(1699), - [anon_sym_o_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT] = ACTIONS(1699), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1701), + [1269] = { + [sym_comment] = STATE(1269), + [anon_sym_LBRACK] = ACTIONS(1091), + [anon_sym_COMMA] = ACTIONS(1091), + [anon_sym_RBRACK] = ACTIONS(1091), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_DOLLAR] = ACTIONS(1091), + [anon_sym_GT] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1089), + [anon_sym_in] = ACTIONS(1089), + [anon_sym_LBRACE] = ACTIONS(1091), + [anon_sym_DOT_DOT] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_STAR_STAR] = ACTIONS(1091), + [anon_sym_PLUS_PLUS] = ACTIONS(1091), + [anon_sym_SLASH] = ACTIONS(1089), + [anon_sym_mod] = ACTIONS(1091), + [anon_sym_SLASH_SLASH] = ACTIONS(1091), + [anon_sym_PLUS] = ACTIONS(1089), + [anon_sym_bit_DASHshl] = ACTIONS(1091), + [anon_sym_bit_DASHshr] = ACTIONS(1091), + [anon_sym_EQ_EQ] = ACTIONS(1091), + [anon_sym_BANG_EQ] = ACTIONS(1091), + [anon_sym_LT2] = ACTIONS(1089), + [anon_sym_LT_EQ] = ACTIONS(1091), + [anon_sym_GT_EQ] = ACTIONS(1091), + [anon_sym_not_DASHin] = ACTIONS(1091), + [anon_sym_starts_DASHwith] = ACTIONS(1091), + [anon_sym_ends_DASHwith] = ACTIONS(1091), + [anon_sym_EQ_TILDE] = ACTIONS(1091), + [anon_sym_BANG_TILDE] = ACTIONS(1091), + [anon_sym_bit_DASHand] = ACTIONS(1091), + [anon_sym_bit_DASHxor] = ACTIONS(1091), + [anon_sym_bit_DASHor] = ACTIONS(1091), + [anon_sym_and] = ACTIONS(1091), + [anon_sym_xor] = ACTIONS(1091), + [anon_sym_or] = ACTIONS(1091), + [anon_sym_DOT_DOT2] = ACTIONS(3942), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_DOT_DOT_LT] = ACTIONS(1089), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3944), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3944), + [anon_sym_null] = ACTIONS(1091), + [anon_sym_true] = ACTIONS(1091), + [anon_sym_false] = ACTIONS(1091), + [aux_sym__val_number_decimal_token1] = ACTIONS(1089), + [aux_sym__val_number_decimal_token2] = ACTIONS(1091), + [anon_sym_DOT2] = ACTIONS(1089), + [aux_sym__val_number_decimal_token3] = ACTIONS(1091), + [aux_sym__val_number_token1] = ACTIONS(1091), + [aux_sym__val_number_token2] = ACTIONS(1091), + [aux_sym__val_number_token3] = ACTIONS(1091), + [aux_sym__val_number_token4] = ACTIONS(1091), + [aux_sym__val_number_token5] = ACTIONS(1091), + [aux_sym__val_number_token6] = ACTIONS(1091), + [anon_sym_0b] = ACTIONS(1089), + [anon_sym_0o] = ACTIONS(1089), + [anon_sym_0x] = ACTIONS(1089), + [sym_val_date] = ACTIONS(1091), + [anon_sym_DQUOTE] = ACTIONS(1091), + [sym__str_single_quotes] = ACTIONS(1091), + [sym__str_back_ticks] = ACTIONS(1091), + [anon_sym_err_GT] = ACTIONS(1091), + [anon_sym_out_GT] = ACTIONS(1091), + [anon_sym_e_GT] = ACTIONS(1091), + [anon_sym_o_GT] = ACTIONS(1091), + [anon_sym_err_PLUSout_GT] = ACTIONS(1091), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1091), + [anon_sym_o_PLUSe_GT] = ACTIONS(1091), + [anon_sym_e_PLUSo_GT] = ACTIONS(1091), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(3), }, - [1038] = { - [sym__expr_parenthesized_immediate] = STATE(1576), - [sym__immediate_decimal] = STATE(1289), - [sym_val_variable] = STATE(1576), - [sym__var] = STATE(1262), - [sym_comment] = STATE(1038), - [ts_builtin_sym_end] = ACTIONS(938), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(1982), - [anon_sym_error] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_as] = ACTIONS(936), - [anon_sym_where] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_LPAREN2] = ACTIONS(1984), - [anon_sym_DOT] = ACTIONS(1986), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [aux_sym__immediate_decimal_token1] = ACTIONS(1988), - [aux_sym__immediate_decimal_token3] = ACTIONS(1988), - [aux_sym__immediate_decimal_token4] = ACTIONS(1990), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [aux_sym_unquoted_token3] = ACTIONS(1024), - [aux_sym_unquoted_token5] = ACTIONS(1992), + [1270] = { + [sym_path] = STATE(1939), + [sym_comment] = STATE(1270), + [aux_sym_cell_path_repeat1] = STATE(1271), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_alias] = ACTIONS(1006), + [anon_sym_let] = ACTIONS(1006), + [anon_sym_let_DASHenv] = ACTIONS(1006), + [anon_sym_mut] = ACTIONS(1006), + [anon_sym_const] = ACTIONS(1006), + [anon_sym_SEMI] = ACTIONS(1006), + [sym_cmd_identifier] = ACTIONS(1006), + [anon_sym_LF] = ACTIONS(1008), + [anon_sym_def] = ACTIONS(1006), + [anon_sym_export_DASHenv] = ACTIONS(1006), + [anon_sym_extern] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_use] = ACTIONS(1006), + [anon_sym_LBRACK] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_RPAREN] = ACTIONS(1006), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_error] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_break] = ACTIONS(1006), + [anon_sym_continue] = ACTIONS(1006), + [anon_sym_for] = ACTIONS(1006), + [anon_sym_loop] = ACTIONS(1006), + [anon_sym_while] = ACTIONS(1006), + [anon_sym_do] = ACTIONS(1006), + [anon_sym_if] = ACTIONS(1006), + [anon_sym_match] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(1006), + [anon_sym_DOT_DOT] = ACTIONS(1006), + [anon_sym_try] = ACTIONS(1006), + [anon_sym_return] = ACTIONS(1006), + [anon_sym_source] = ACTIONS(1006), + [anon_sym_source_DASHenv] = ACTIONS(1006), + [anon_sym_register] = ACTIONS(1006), + [anon_sym_hide] = ACTIONS(1006), + [anon_sym_hide_DASHenv] = ACTIONS(1006), + [anon_sym_overlay] = ACTIONS(1006), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_where] = ACTIONS(1006), + [anon_sym_not] = ACTIONS(1006), + [anon_sym_DOT] = ACTIONS(3954), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), + [anon_sym_DOT_DOT_LT] = ACTIONS(1006), + [anon_sym_null] = ACTIONS(1006), + [anon_sym_true] = ACTIONS(1006), + [anon_sym_false] = ACTIONS(1006), + [aux_sym__val_number_decimal_token1] = ACTIONS(1006), + [aux_sym__val_number_decimal_token2] = ACTIONS(1006), + [anon_sym_DOT2] = ACTIONS(1006), + [aux_sym__val_number_decimal_token3] = ACTIONS(1006), + [aux_sym__val_number_token1] = ACTIONS(1006), + [aux_sym__val_number_token2] = ACTIONS(1006), + [aux_sym__val_number_token3] = ACTIONS(1006), + [aux_sym__val_number_token4] = ACTIONS(1006), + [aux_sym__val_number_token5] = ACTIONS(1006), + [aux_sym__val_number_token6] = ACTIONS(1006), + [anon_sym_0b] = ACTIONS(1006), + [anon_sym_0o] = ACTIONS(1006), + [anon_sym_0x] = ACTIONS(1006), + [sym_val_date] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym__str_single_quotes] = ACTIONS(1006), + [sym__str_back_ticks] = ACTIONS(1006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1006), + [anon_sym_CARET] = ACTIONS(1006), [anon_sym_POUND] = ACTIONS(113), }, - [1039] = { - [sym__expr_unary_minus] = STATE(10486), - [sym_expr_parenthesized] = STATE(9327), - [sym_val_range] = STATE(10632), - [sym__val_range] = STATE(10567), - [sym__val_range_with_end] = STATE(10631), - [sym__value] = STATE(10632), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(9687), - [sym_val_variable] = STATE(5789), - [sym__var] = STATE(5205), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(7522), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(10434), - [sym_list_body] = STATE(11326), - [sym_val_entry] = STATE(10464), - [sym__list_item_expression] = STATE(10482), - [sym__list_item_starts_with_sign] = STATE(10484), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_short_flag] = STATE(10484), - [sym_long_flag] = STATE(10484), - [sym_long_flag_equals_value] = STATE(4310), - [sym__unquoted_in_list] = STATE(9820), - [sym__unquoted_in_list_with_expr] = STATE(10484), - [sym__unquoted_anonymous_prefix] = STATE(10279), - [sym_comment] = STATE(1039), - [aux_sym_list_body_repeat1] = STATE(1121), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_RBRACK] = ACTIONS(1994), - [anon_sym_LPAREN] = ACTIONS(1940), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(1950), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1952), - [anon_sym_DOT_DOT_LT] = ACTIONS(1952), - [anon_sym_null] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [aux_sym__val_number_decimal_token1] = ACTIONS(1958), - [aux_sym__val_number_decimal_token2] = ACTIONS(1960), - [anon_sym_DOT2] = ACTIONS(1962), - [aux_sym__val_number_decimal_token3] = ACTIONS(1964), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(1968), - [aux_sym__val_number_token5] = ACTIONS(1968), - [aux_sym__val_number_token6] = ACTIONS(1968), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(1699), - [anon_sym_out_GT] = ACTIONS(1699), - [anon_sym_e_GT] = ACTIONS(1699), - [anon_sym_o_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT] = ACTIONS(1699), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1701), - [anon_sym_POUND] = ACTIONS(3), + [1271] = { + [sym_path] = STATE(1939), + [sym_comment] = STATE(1271), + [aux_sym_cell_path_repeat1] = STATE(1271), + [anon_sym_export] = ACTIONS(985), + [anon_sym_alias] = ACTIONS(985), + [anon_sym_let] = ACTIONS(985), + [anon_sym_let_DASHenv] = ACTIONS(985), + [anon_sym_mut] = ACTIONS(985), + [anon_sym_const] = ACTIONS(985), + [anon_sym_SEMI] = ACTIONS(985), + [sym_cmd_identifier] = ACTIONS(985), + [anon_sym_LF] = ACTIONS(987), + [anon_sym_def] = ACTIONS(985), + [anon_sym_export_DASHenv] = ACTIONS(985), + [anon_sym_extern] = ACTIONS(985), + [anon_sym_module] = ACTIONS(985), + [anon_sym_use] = ACTIONS(985), + [anon_sym_LBRACK] = ACTIONS(985), + [anon_sym_LPAREN] = ACTIONS(985), + [anon_sym_RPAREN] = ACTIONS(985), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_error] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_break] = ACTIONS(985), + [anon_sym_continue] = ACTIONS(985), + [anon_sym_for] = ACTIONS(985), + [anon_sym_loop] = ACTIONS(985), + [anon_sym_while] = ACTIONS(985), + [anon_sym_do] = ACTIONS(985), + [anon_sym_if] = ACTIONS(985), + [anon_sym_match] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(985), + [anon_sym_RBRACE] = ACTIONS(985), + [anon_sym_DOT_DOT] = ACTIONS(985), + [anon_sym_try] = ACTIONS(985), + [anon_sym_return] = ACTIONS(985), + [anon_sym_source] = ACTIONS(985), + [anon_sym_source_DASHenv] = ACTIONS(985), + [anon_sym_register] = ACTIONS(985), + [anon_sym_hide] = ACTIONS(985), + [anon_sym_hide_DASHenv] = ACTIONS(985), + [anon_sym_overlay] = ACTIONS(985), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_where] = ACTIONS(985), + [anon_sym_not] = ACTIONS(985), + [anon_sym_DOT] = ACTIONS(4690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(985), + [anon_sym_DOT_DOT_LT] = ACTIONS(985), + [anon_sym_null] = ACTIONS(985), + [anon_sym_true] = ACTIONS(985), + [anon_sym_false] = ACTIONS(985), + [aux_sym__val_number_decimal_token1] = ACTIONS(985), + [aux_sym__val_number_decimal_token2] = ACTIONS(985), + [anon_sym_DOT2] = ACTIONS(985), + [aux_sym__val_number_decimal_token3] = ACTIONS(985), + [aux_sym__val_number_token1] = ACTIONS(985), + [aux_sym__val_number_token2] = ACTIONS(985), + [aux_sym__val_number_token3] = ACTIONS(985), + [aux_sym__val_number_token4] = ACTIONS(985), + [aux_sym__val_number_token5] = ACTIONS(985), + [aux_sym__val_number_token6] = ACTIONS(985), + [anon_sym_0b] = ACTIONS(985), + [anon_sym_0o] = ACTIONS(985), + [anon_sym_0x] = ACTIONS(985), + [sym_val_date] = ACTIONS(985), + [anon_sym_DQUOTE] = ACTIONS(985), + [sym__str_single_quotes] = ACTIONS(985), + [sym__str_back_ticks] = ACTIONS(985), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(985), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(985), + [anon_sym_POUND] = ACTIONS(113), }, - [1040] = { - [sym__expr_unary_minus] = STATE(10486), - [sym_expr_parenthesized] = STATE(9327), - [sym_val_range] = STATE(10632), - [sym__val_range] = STATE(10567), - [sym__val_range_with_end] = STATE(10631), - [sym__value] = STATE(10632), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(9687), - [sym_val_variable] = STATE(5789), - [sym__var] = STATE(5205), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(7522), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(10391), - [sym_list_body] = STATE(10928), - [sym_val_entry] = STATE(10464), - [sym__list_item_expression] = STATE(10482), - [sym__list_item_starts_with_sign] = STATE(10484), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_short_flag] = STATE(10484), - [sym_long_flag] = STATE(10484), - [sym_long_flag_equals_value] = STATE(4310), - [sym__unquoted_in_list] = STATE(9820), - [sym__unquoted_in_list_with_expr] = STATE(10484), - [sym__unquoted_anonymous_prefix] = STATE(10279), - [sym_comment] = STATE(1040), - [aux_sym_list_body_repeat1] = STATE(1121), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_RBRACK] = ACTIONS(1996), - [anon_sym_LPAREN] = ACTIONS(1940), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(1950), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1952), - [anon_sym_DOT_DOT_LT] = ACTIONS(1952), - [anon_sym_null] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [aux_sym__val_number_decimal_token1] = ACTIONS(1958), - [aux_sym__val_number_decimal_token2] = ACTIONS(1960), - [anon_sym_DOT2] = ACTIONS(1962), - [aux_sym__val_number_decimal_token3] = ACTIONS(1964), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(1968), - [aux_sym__val_number_token5] = ACTIONS(1968), - [aux_sym__val_number_token6] = ACTIONS(1968), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(1699), - [anon_sym_out_GT] = ACTIONS(1699), - [anon_sym_e_GT] = ACTIONS(1699), - [anon_sym_o_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT] = ACTIONS(1699), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1701), - [anon_sym_POUND] = ACTIONS(3), + [1272] = { + [sym_comment] = STATE(1272), + [ts_builtin_sym_end] = ACTIONS(3743), + [anon_sym_export] = ACTIONS(3741), + [anon_sym_alias] = ACTIONS(3741), + [anon_sym_let] = ACTIONS(3741), + [anon_sym_let_DASHenv] = ACTIONS(3741), + [anon_sym_mut] = ACTIONS(3741), + [anon_sym_const] = ACTIONS(3741), + [anon_sym_SEMI] = ACTIONS(3741), + [sym_cmd_identifier] = ACTIONS(3741), + [anon_sym_LF] = ACTIONS(3743), + [anon_sym_def] = ACTIONS(3741), + [anon_sym_export_DASHenv] = ACTIONS(3741), + [anon_sym_extern] = ACTIONS(3741), + [anon_sym_module] = ACTIONS(3741), + [anon_sym_use] = ACTIONS(3741), + [anon_sym_LBRACK] = ACTIONS(3741), + [anon_sym_LPAREN] = ACTIONS(3741), + [anon_sym_DOLLAR] = ACTIONS(3741), + [anon_sym_error] = ACTIONS(3741), + [anon_sym_DASH_DASH] = ACTIONS(3741), + [anon_sym_DASH] = ACTIONS(3741), + [anon_sym_break] = ACTIONS(3741), + [anon_sym_continue] = ACTIONS(3741), + [anon_sym_for] = ACTIONS(3741), + [anon_sym_loop] = ACTIONS(3741), + [anon_sym_while] = ACTIONS(3741), + [anon_sym_do] = ACTIONS(3741), + [anon_sym_if] = ACTIONS(3741), + [anon_sym_match] = ACTIONS(3741), + [anon_sym_LBRACE] = ACTIONS(3741), + [anon_sym_DOT_DOT] = ACTIONS(3741), + [anon_sym_try] = ACTIONS(3741), + [anon_sym_return] = ACTIONS(3741), + [anon_sym_source] = ACTIONS(3741), + [anon_sym_source_DASHenv] = ACTIONS(3741), + [anon_sym_register] = ACTIONS(3741), + [anon_sym_hide] = ACTIONS(3741), + [anon_sym_hide_DASHenv] = ACTIONS(3741), + [anon_sym_overlay] = ACTIONS(3741), + [anon_sym_as] = ACTIONS(3741), + [anon_sym_where] = ACTIONS(3741), + [anon_sym_not] = ACTIONS(3741), + [anon_sym_DOT_DOT2] = ACTIONS(4693), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3741), + [anon_sym_DOT_DOT_LT] = ACTIONS(3741), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4695), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4695), + [anon_sym_null] = ACTIONS(3741), + [anon_sym_true] = ACTIONS(3741), + [anon_sym_false] = ACTIONS(3741), + [aux_sym__val_number_decimal_token1] = ACTIONS(3741), + [aux_sym__val_number_decimal_token2] = ACTIONS(3741), + [anon_sym_DOT2] = ACTIONS(3741), + [aux_sym__val_number_decimal_token3] = ACTIONS(3741), + [aux_sym__val_number_token1] = ACTIONS(3741), + [aux_sym__val_number_token2] = ACTIONS(3741), + [aux_sym__val_number_token3] = ACTIONS(3741), + [aux_sym__val_number_token4] = ACTIONS(3741), + [aux_sym__val_number_token5] = ACTIONS(3741), + [aux_sym__val_number_token6] = ACTIONS(3741), + [anon_sym_0b] = ACTIONS(3741), + [anon_sym_0o] = ACTIONS(3741), + [anon_sym_0x] = ACTIONS(3741), + [sym_val_date] = ACTIONS(3741), + [anon_sym_DQUOTE] = ACTIONS(3741), + [sym__str_single_quotes] = ACTIONS(3741), + [sym__str_back_ticks] = ACTIONS(3741), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3741), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3741), + [anon_sym_CARET] = ACTIONS(3741), + [anon_sym_POUND] = ACTIONS(113), }, - [1041] = { - [sym__expr_unary_minus] = STATE(10486), - [sym_expr_parenthesized] = STATE(9327), - [sym_val_range] = STATE(10632), - [sym__val_range] = STATE(10567), - [sym__val_range_with_end] = STATE(10631), - [sym__value] = STATE(10632), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(9687), - [sym_val_variable] = STATE(5789), - [sym__var] = STATE(5205), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(7522), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(10353), - [sym_list_body] = STATE(11169), - [sym_val_entry] = STATE(10464), - [sym__list_item_expression] = STATE(10482), - [sym__list_item_starts_with_sign] = STATE(10484), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_short_flag] = STATE(10484), - [sym_long_flag] = STATE(10484), - [sym_long_flag_equals_value] = STATE(4310), - [sym__unquoted_in_list] = STATE(9820), - [sym__unquoted_in_list_with_expr] = STATE(10484), - [sym__unquoted_anonymous_prefix] = STATE(10279), - [sym_comment] = STATE(1041), - [aux_sym_list_body_repeat1] = STATE(1121), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_RBRACK] = ACTIONS(1998), - [anon_sym_LPAREN] = ACTIONS(1940), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(1950), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1952), - [anon_sym_DOT_DOT_LT] = ACTIONS(1952), - [anon_sym_null] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [aux_sym__val_number_decimal_token1] = ACTIONS(1958), - [aux_sym__val_number_decimal_token2] = ACTIONS(1960), - [anon_sym_DOT2] = ACTIONS(1962), - [aux_sym__val_number_decimal_token3] = ACTIONS(1964), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(1968), - [aux_sym__val_number_token5] = ACTIONS(1968), - [aux_sym__val_number_token6] = ACTIONS(1968), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(1699), - [anon_sym_out_GT] = ACTIONS(1699), - [anon_sym_e_GT] = ACTIONS(1699), - [anon_sym_o_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT] = ACTIONS(1699), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1701), + [1273] = { + [sym_cell_path] = STATE(2121), + [sym_path] = STATE(1212), + [sym_comment] = STATE(1273), + [anon_sym_LBRACK] = ACTIONS(1095), + [anon_sym_COMMA] = ACTIONS(1095), + [anon_sym_RBRACK] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1095), + [anon_sym_DOLLAR] = ACTIONS(1095), + [anon_sym_GT] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_in] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_DOT_DOT] = ACTIONS(1093), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_STAR_STAR] = ACTIONS(1095), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_SLASH] = ACTIONS(1093), + [anon_sym_mod] = ACTIONS(1095), + [anon_sym_SLASH_SLASH] = ACTIONS(1095), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_bit_DASHshl] = ACTIONS(1095), + [anon_sym_bit_DASHshr] = ACTIONS(1095), + [anon_sym_EQ_EQ] = ACTIONS(1095), + [anon_sym_BANG_EQ] = ACTIONS(1095), + [anon_sym_LT2] = ACTIONS(1093), + [anon_sym_LT_EQ] = ACTIONS(1095), + [anon_sym_GT_EQ] = ACTIONS(1095), + [anon_sym_not_DASHin] = ACTIONS(1095), + [anon_sym_starts_DASHwith] = ACTIONS(1095), + [anon_sym_ends_DASHwith] = ACTIONS(1095), + [anon_sym_EQ_TILDE] = ACTIONS(1095), + [anon_sym_BANG_TILDE] = ACTIONS(1095), + [anon_sym_bit_DASHand] = ACTIONS(1095), + [anon_sym_bit_DASHxor] = ACTIONS(1095), + [anon_sym_bit_DASHor] = ACTIONS(1095), + [anon_sym_and] = ACTIONS(1095), + [anon_sym_xor] = ACTIONS(1095), + [anon_sym_or] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(3781), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1095), + [anon_sym_DOT_DOT_LT] = ACTIONS(1095), + [anon_sym_null] = ACTIONS(1095), + [anon_sym_true] = ACTIONS(1095), + [anon_sym_false] = ACTIONS(1095), + [aux_sym__val_number_decimal_token1] = ACTIONS(1093), + [aux_sym__val_number_decimal_token2] = ACTIONS(1095), + [anon_sym_DOT2] = ACTIONS(1093), + [aux_sym__val_number_decimal_token3] = ACTIONS(1095), + [aux_sym__val_number_token1] = ACTIONS(1095), + [aux_sym__val_number_token2] = ACTIONS(1095), + [aux_sym__val_number_token3] = ACTIONS(1095), + [aux_sym__val_number_token4] = ACTIONS(1095), + [aux_sym__val_number_token5] = ACTIONS(1095), + [aux_sym__val_number_token6] = ACTIONS(1095), + [anon_sym_0b] = ACTIONS(1093), + [anon_sym_0o] = ACTIONS(1093), + [anon_sym_0x] = ACTIONS(1093), + [sym_val_date] = ACTIONS(1095), + [anon_sym_DQUOTE] = ACTIONS(1095), + [sym__str_single_quotes] = ACTIONS(1095), + [sym__str_back_ticks] = ACTIONS(1095), + [anon_sym_err_GT] = ACTIONS(1095), + [anon_sym_out_GT] = ACTIONS(1095), + [anon_sym_e_GT] = ACTIONS(1095), + [anon_sym_o_GT] = ACTIONS(1095), + [anon_sym_err_PLUSout_GT] = ACTIONS(1095), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1095), + [anon_sym_o_PLUSe_GT] = ACTIONS(1095), + [anon_sym_e_PLUSo_GT] = ACTIONS(1095), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1093), [anon_sym_POUND] = ACTIONS(3), }, - [1042] = { - [sym__expr_unary_minus] = STATE(10486), - [sym_expr_parenthesized] = STATE(9327), - [sym_val_range] = STATE(10632), - [sym__val_range] = STATE(10567), - [sym__val_range_with_end] = STATE(10631), - [sym__value] = STATE(10632), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(9687), - [sym_val_variable] = STATE(5789), - [sym__var] = STATE(5205), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(7522), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(10436), - [sym_list_body] = STATE(10790), - [sym_val_entry] = STATE(10464), - [sym__list_item_expression] = STATE(10482), - [sym__list_item_starts_with_sign] = STATE(10484), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_short_flag] = STATE(10484), - [sym_long_flag] = STATE(10484), - [sym_long_flag_equals_value] = STATE(4310), - [sym__unquoted_in_list] = STATE(9820), - [sym__unquoted_in_list_with_expr] = STATE(10484), - [sym__unquoted_anonymous_prefix] = STATE(10279), - [sym_comment] = STATE(1042), - [aux_sym_list_body_repeat1] = STATE(1121), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_RBRACK] = ACTIONS(2000), - [anon_sym_LPAREN] = ACTIONS(1940), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(1950), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1952), - [anon_sym_DOT_DOT_LT] = ACTIONS(1952), - [anon_sym_null] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [aux_sym__val_number_decimal_token1] = ACTIONS(1958), - [aux_sym__val_number_decimal_token2] = ACTIONS(1960), - [anon_sym_DOT2] = ACTIONS(1962), - [aux_sym__val_number_decimal_token3] = ACTIONS(1964), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(1968), - [aux_sym__val_number_token5] = ACTIONS(1968), - [aux_sym__val_number_token6] = ACTIONS(1968), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(1699), - [anon_sym_out_GT] = ACTIONS(1699), - [anon_sym_e_GT] = ACTIONS(1699), - [anon_sym_o_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT] = ACTIONS(1699), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1701), + [1274] = { + [sym_comment] = STATE(1274), + [ts_builtin_sym_end] = ACTIONS(3314), + [anon_sym_export] = ACTIONS(3312), + [anon_sym_alias] = ACTIONS(3312), + [anon_sym_let] = ACTIONS(3312), + [anon_sym_let_DASHenv] = ACTIONS(3312), + [anon_sym_mut] = ACTIONS(3312), + [anon_sym_const] = ACTIONS(3312), + [anon_sym_SEMI] = ACTIONS(3312), + [sym_cmd_identifier] = ACTIONS(3312), + [anon_sym_LF] = ACTIONS(3314), + [anon_sym_def] = ACTIONS(3312), + [anon_sym_export_DASHenv] = ACTIONS(3312), + [anon_sym_extern] = ACTIONS(3312), + [anon_sym_module] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3312), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3312), + [anon_sym_error] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [anon_sym_DASH] = ACTIONS(3312), + [anon_sym_break] = ACTIONS(3312), + [anon_sym_continue] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3312), + [anon_sym_loop] = ACTIONS(3312), + [anon_sym_while] = ACTIONS(3312), + [anon_sym_do] = ACTIONS(3312), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_match] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_DOT_DOT] = ACTIONS(3312), + [anon_sym_try] = ACTIONS(3312), + [anon_sym_return] = ACTIONS(3312), + [anon_sym_source] = ACTIONS(3312), + [anon_sym_source_DASHenv] = ACTIONS(3312), + [anon_sym_register] = ACTIONS(3312), + [anon_sym_hide] = ACTIONS(3312), + [anon_sym_hide_DASHenv] = ACTIONS(3312), + [anon_sym_overlay] = ACTIONS(3312), + [anon_sym_as] = ACTIONS(3312), + [anon_sym_where] = ACTIONS(3312), + [anon_sym_not] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3316), + [anon_sym_DOT] = ACTIONS(1844), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3312), + [anon_sym_DOT_DOT_LT] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3312), + [anon_sym_true] = ACTIONS(3312), + [anon_sym_false] = ACTIONS(3312), + [aux_sym__val_number_decimal_token1] = ACTIONS(3312), + [aux_sym__val_number_decimal_token2] = ACTIONS(3312), + [anon_sym_DOT2] = ACTIONS(3312), + [aux_sym__val_number_decimal_token3] = ACTIONS(3312), + [aux_sym__val_number_token1] = ACTIONS(3312), + [aux_sym__val_number_token2] = ACTIONS(3312), + [aux_sym__val_number_token3] = ACTIONS(3312), + [aux_sym__val_number_token4] = ACTIONS(3312), + [aux_sym__val_number_token5] = ACTIONS(3312), + [aux_sym__val_number_token6] = ACTIONS(3312), + [anon_sym_0b] = ACTIONS(3312), + [anon_sym_0o] = ACTIONS(3312), + [anon_sym_0x] = ACTIONS(3312), + [sym_val_date] = ACTIONS(3312), + [anon_sym_DQUOTE] = ACTIONS(3312), + [sym__str_single_quotes] = ACTIONS(3312), + [sym__str_back_ticks] = ACTIONS(3312), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3312), + [anon_sym_CARET] = ACTIONS(3312), + [aux_sym_unquoted_token2] = ACTIONS(1844), + [anon_sym_POUND] = ACTIONS(113), + }, + [1275] = { + [sym_cell_path] = STATE(2221), + [sym_path] = STATE(1169), + [sym_comment] = STATE(1275), + [anon_sym_LBRACK] = ACTIONS(1053), + [anon_sym_COMMA] = ACTIONS(1053), + [anon_sym_LPAREN] = ACTIONS(1053), + [anon_sym_DOLLAR] = ACTIONS(1053), + [anon_sym_GT] = ACTIONS(1051), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_in] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(1053), + [anon_sym_RBRACE] = ACTIONS(1053), + [anon_sym__] = ACTIONS(1051), + [anon_sym_DOT_DOT] = ACTIONS(1051), + [anon_sym_STAR] = ACTIONS(1051), + [anon_sym_STAR_STAR] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1053), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_mod] = ACTIONS(1053), + [anon_sym_SLASH_SLASH] = ACTIONS(1053), + [anon_sym_PLUS] = ACTIONS(1051), + [anon_sym_bit_DASHshl] = ACTIONS(1053), + [anon_sym_bit_DASHshr] = ACTIONS(1053), + [anon_sym_EQ_EQ] = ACTIONS(1053), + [anon_sym_BANG_EQ] = ACTIONS(1053), + [anon_sym_LT2] = ACTIONS(1051), + [anon_sym_LT_EQ] = ACTIONS(1053), + [anon_sym_GT_EQ] = ACTIONS(1053), + [anon_sym_not_DASHin] = ACTIONS(1053), + [anon_sym_starts_DASHwith] = ACTIONS(1053), + [anon_sym_ends_DASHwith] = ACTIONS(1053), + [anon_sym_EQ_TILDE] = ACTIONS(1053), + [anon_sym_BANG_TILDE] = ACTIONS(1053), + [anon_sym_bit_DASHand] = ACTIONS(1053), + [anon_sym_bit_DASHxor] = ACTIONS(1053), + [anon_sym_bit_DASHor] = ACTIONS(1053), + [anon_sym_and] = ACTIONS(1053), + [anon_sym_xor] = ACTIONS(1053), + [anon_sym_or] = ACTIONS(1053), + [anon_sym_DOT] = ACTIONS(3807), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1053), + [anon_sym_DOT_DOT_LT] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1053), + [anon_sym_true] = ACTIONS(1053), + [anon_sym_false] = ACTIONS(1053), + [aux_sym__val_number_decimal_token1] = ACTIONS(1051), + [aux_sym__val_number_decimal_token2] = ACTIONS(1053), + [anon_sym_DOT2] = ACTIONS(1051), + [aux_sym__val_number_decimal_token3] = ACTIONS(1053), + [aux_sym__val_number_token1] = ACTIONS(1053), + [aux_sym__val_number_token2] = ACTIONS(1053), + [aux_sym__val_number_token3] = ACTIONS(1053), + [aux_sym__val_number_token4] = ACTIONS(1053), + [aux_sym__val_number_token5] = ACTIONS(1053), + [aux_sym__val_number_token6] = ACTIONS(1053), + [anon_sym_0b] = ACTIONS(1051), + [anon_sym_0o] = ACTIONS(1051), + [anon_sym_0x] = ACTIONS(1051), + [sym_val_date] = ACTIONS(1053), + [anon_sym_DQUOTE] = ACTIONS(1053), + [sym__str_single_quotes] = ACTIONS(1053), + [sym__str_back_ticks] = ACTIONS(1053), + [anon_sym_err_GT] = ACTIONS(1053), + [anon_sym_out_GT] = ACTIONS(1053), + [anon_sym_e_GT] = ACTIONS(1053), + [anon_sym_o_GT] = ACTIONS(1053), + [anon_sym_err_PLUSout_GT] = ACTIONS(1053), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1053), + [anon_sym_o_PLUSe_GT] = ACTIONS(1053), + [anon_sym_e_PLUSo_GT] = ACTIONS(1053), + [aux_sym_unquoted_token1] = ACTIONS(1051), [anon_sym_POUND] = ACTIONS(3), }, - [1043] = { - [sym__expr_parenthesized_immediate] = STATE(1791), - [sym__immediate_decimal] = STATE(1414), - [sym_val_variable] = STATE(1791), - [sym__var] = STATE(1373), - [sym_comment] = STATE(1043), - [anon_sym_export] = ACTIONS(2002), - [anon_sym_alias] = ACTIONS(2002), - [anon_sym_let] = ACTIONS(2002), - [anon_sym_let_DASHenv] = ACTIONS(2002), - [anon_sym_mut] = ACTIONS(2002), - [anon_sym_const] = ACTIONS(2002), - [anon_sym_SEMI] = ACTIONS(2002), - [sym_cmd_identifier] = ACTIONS(2002), - [anon_sym_LF] = ACTIONS(2004), - [anon_sym_def] = ACTIONS(2002), - [anon_sym_export_DASHenv] = ACTIONS(2002), - [anon_sym_extern] = ACTIONS(2002), - [anon_sym_module] = ACTIONS(2002), - [anon_sym_use] = ACTIONS(2002), - [anon_sym_LBRACK] = ACTIONS(2002), - [anon_sym_LPAREN] = ACTIONS(2002), - [anon_sym_RPAREN] = ACTIONS(2002), - [anon_sym_DOLLAR] = ACTIONS(1924), - [anon_sym_error] = ACTIONS(2002), - [anon_sym_DASH_DASH] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2002), - [anon_sym_break] = ACTIONS(2002), - [anon_sym_continue] = ACTIONS(2002), - [anon_sym_for] = ACTIONS(2002), - [anon_sym_loop] = ACTIONS(2002), - [anon_sym_while] = ACTIONS(2002), - [anon_sym_do] = ACTIONS(2002), - [anon_sym_if] = ACTIONS(2002), - [anon_sym_match] = ACTIONS(2002), - [anon_sym_LBRACE] = ACTIONS(2002), - [anon_sym_RBRACE] = ACTIONS(2002), - [anon_sym_DOT_DOT] = ACTIONS(2002), - [anon_sym_try] = ACTIONS(2002), - [anon_sym_return] = ACTIONS(2002), - [anon_sym_source] = ACTIONS(2002), - [anon_sym_source_DASHenv] = ACTIONS(2002), - [anon_sym_register] = ACTIONS(2002), - [anon_sym_hide] = ACTIONS(2002), - [anon_sym_hide_DASHenv] = ACTIONS(2002), - [anon_sym_overlay] = ACTIONS(2002), - [anon_sym_as] = ACTIONS(2002), - [anon_sym_where] = ACTIONS(2002), - [anon_sym_not] = ACTIONS(2002), - [anon_sym_LPAREN2] = ACTIONS(1926), - [anon_sym_DOT] = ACTIONS(1928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2002), - [anon_sym_DOT_DOT_LT] = ACTIONS(2002), - [aux_sym__immediate_decimal_token1] = ACTIONS(1930), - [aux_sym__immediate_decimal_token3] = ACTIONS(1930), - [aux_sym__immediate_decimal_token4] = ACTIONS(1932), - [anon_sym_null] = ACTIONS(2002), - [anon_sym_true] = ACTIONS(2002), - [anon_sym_false] = ACTIONS(2002), - [aux_sym__val_number_decimal_token1] = ACTIONS(2002), - [aux_sym__val_number_decimal_token2] = ACTIONS(2002), - [anon_sym_DOT2] = ACTIONS(2002), - [aux_sym__val_number_decimal_token3] = ACTIONS(2002), - [aux_sym__val_number_token1] = ACTIONS(2002), - [aux_sym__val_number_token2] = ACTIONS(2002), - [aux_sym__val_number_token3] = ACTIONS(2002), - [aux_sym__val_number_token4] = ACTIONS(2002), - [aux_sym__val_number_token5] = ACTIONS(2002), - [aux_sym__val_number_token6] = ACTIONS(2002), - [anon_sym_0b] = ACTIONS(2002), - [anon_sym_0o] = ACTIONS(2002), - [anon_sym_0x] = ACTIONS(2002), - [sym_val_date] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym__str_single_quotes] = ACTIONS(2002), - [sym__str_back_ticks] = ACTIONS(2002), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2002), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2002), - [anon_sym_CARET] = ACTIONS(2002), - [aux_sym_unquoted_token2] = ACTIONS(2006), + [1276] = { + [sym_comment] = STATE(1276), + [anon_sym_export] = ACTIONS(3312), + [anon_sym_alias] = ACTIONS(3312), + [anon_sym_let] = ACTIONS(3312), + [anon_sym_let_DASHenv] = ACTIONS(3312), + [anon_sym_mut] = ACTIONS(3312), + [anon_sym_const] = ACTIONS(3312), + [anon_sym_SEMI] = ACTIONS(3312), + [sym_cmd_identifier] = ACTIONS(3312), + [anon_sym_LF] = ACTIONS(3314), + [anon_sym_def] = ACTIONS(3312), + [anon_sym_export_DASHenv] = ACTIONS(3312), + [anon_sym_extern] = ACTIONS(3312), + [anon_sym_module] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3312), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_RPAREN] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3312), + [anon_sym_error] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [anon_sym_DASH] = ACTIONS(3312), + [anon_sym_break] = ACTIONS(3312), + [anon_sym_continue] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3312), + [anon_sym_loop] = ACTIONS(3312), + [anon_sym_while] = ACTIONS(3312), + [anon_sym_do] = ACTIONS(3312), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_match] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_DOT_DOT] = ACTIONS(3312), + [anon_sym_try] = ACTIONS(3312), + [anon_sym_return] = ACTIONS(3312), + [anon_sym_source] = ACTIONS(3312), + [anon_sym_source_DASHenv] = ACTIONS(3312), + [anon_sym_register] = ACTIONS(3312), + [anon_sym_hide] = ACTIONS(3312), + [anon_sym_hide_DASHenv] = ACTIONS(3312), + [anon_sym_overlay] = ACTIONS(3312), + [anon_sym_as] = ACTIONS(3312), + [anon_sym_where] = ACTIONS(3312), + [anon_sym_not] = ACTIONS(3312), + [anon_sym_DOT] = ACTIONS(1844), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3312), + [anon_sym_DOT_DOT_LT] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3312), + [anon_sym_true] = ACTIONS(3312), + [anon_sym_false] = ACTIONS(3312), + [aux_sym__val_number_decimal_token1] = ACTIONS(3312), + [aux_sym__val_number_decimal_token2] = ACTIONS(3312), + [anon_sym_DOT2] = ACTIONS(3312), + [aux_sym__val_number_decimal_token3] = ACTIONS(3312), + [aux_sym__val_number_token1] = ACTIONS(3312), + [aux_sym__val_number_token2] = ACTIONS(3312), + [aux_sym__val_number_token3] = ACTIONS(3312), + [aux_sym__val_number_token4] = ACTIONS(3312), + [aux_sym__val_number_token5] = ACTIONS(3312), + [aux_sym__val_number_token6] = ACTIONS(3312), + [anon_sym_0b] = ACTIONS(3312), + [anon_sym_0o] = ACTIONS(3312), + [anon_sym_0x] = ACTIONS(3312), + [sym_val_date] = ACTIONS(3312), + [anon_sym_DQUOTE] = ACTIONS(3312), + [sym__str_single_quotes] = ACTIONS(3312), + [sym__str_back_ticks] = ACTIONS(3312), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3312), + [anon_sym_CARET] = ACTIONS(3312), + [aux_sym_unquoted_token2] = ACTIONS(1844), [anon_sym_POUND] = ACTIONS(113), }, - [1044] = { - [sym__expr_parenthesized_immediate] = STATE(1769), - [sym__immediate_decimal] = STATE(1582), - [sym_val_variable] = STATE(1769), - [sym__var] = STATE(1373), - [sym_comment] = STATE(1044), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(1924), - [anon_sym_error] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_RBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_as] = ACTIONS(936), - [anon_sym_where] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_LPAREN2] = ACTIONS(1926), - [anon_sym_DOT] = ACTIONS(2008), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [aux_sym__immediate_decimal_token1] = ACTIONS(2010), - [aux_sym__immediate_decimal_token3] = ACTIONS(2010), - [aux_sym__immediate_decimal_token4] = ACTIONS(2012), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [aux_sym_unquoted_token4] = ACTIONS(973), + [1277] = { + [sym_comment] = STATE(1277), + [ts_builtin_sym_end] = ACTIONS(3356), + [anon_sym_export] = ACTIONS(3354), + [anon_sym_alias] = ACTIONS(3354), + [anon_sym_let] = ACTIONS(3354), + [anon_sym_let_DASHenv] = ACTIONS(3354), + [anon_sym_mut] = ACTIONS(3354), + [anon_sym_const] = ACTIONS(3354), + [anon_sym_SEMI] = ACTIONS(3354), + [sym_cmd_identifier] = ACTIONS(3354), + [anon_sym_LF] = ACTIONS(3356), + [anon_sym_def] = ACTIONS(3354), + [anon_sym_export_DASHenv] = ACTIONS(3354), + [anon_sym_extern] = ACTIONS(3354), + [anon_sym_module] = ACTIONS(3354), + [anon_sym_use] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3354), + [anon_sym_DOLLAR] = ACTIONS(3354), + [anon_sym_error] = ACTIONS(3354), + [anon_sym_DASH_DASH] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_loop] = ACTIONS(3354), + [anon_sym_while] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_match] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3354), + [anon_sym_DOT_DOT] = ACTIONS(3354), + [anon_sym_try] = ACTIONS(3354), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_source] = ACTIONS(3354), + [anon_sym_source_DASHenv] = ACTIONS(3354), + [anon_sym_register] = ACTIONS(3354), + [anon_sym_hide] = ACTIONS(3354), + [anon_sym_hide_DASHenv] = ACTIONS(3354), + [anon_sym_overlay] = ACTIONS(3354), + [anon_sym_as] = ACTIONS(3354), + [anon_sym_where] = ACTIONS(3354), + [anon_sym_not] = ACTIONS(3354), + [anon_sym_LPAREN2] = ACTIONS(3358), + [anon_sym_DOT] = ACTIONS(3362), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3354), + [anon_sym_DOT_DOT_LT] = ACTIONS(3354), + [anon_sym_null] = ACTIONS(3354), + [anon_sym_true] = ACTIONS(3354), + [anon_sym_false] = ACTIONS(3354), + [aux_sym__val_number_decimal_token1] = ACTIONS(3354), + [aux_sym__val_number_decimal_token2] = ACTIONS(3354), + [anon_sym_DOT2] = ACTIONS(3354), + [aux_sym__val_number_decimal_token3] = ACTIONS(3354), + [aux_sym__val_number_token1] = ACTIONS(3354), + [aux_sym__val_number_token2] = ACTIONS(3354), + [aux_sym__val_number_token3] = ACTIONS(3354), + [aux_sym__val_number_token4] = ACTIONS(3354), + [aux_sym__val_number_token5] = ACTIONS(3354), + [aux_sym__val_number_token6] = ACTIONS(3354), + [anon_sym_0b] = ACTIONS(3354), + [anon_sym_0o] = ACTIONS(3354), + [anon_sym_0x] = ACTIONS(3354), + [sym_val_date] = ACTIONS(3354), + [anon_sym_DQUOTE] = ACTIONS(3354), + [sym__str_single_quotes] = ACTIONS(3354), + [sym__str_back_ticks] = ACTIONS(3354), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3354), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3354), + [anon_sym_CARET] = ACTIONS(3354), + [aux_sym_unquoted_token2] = ACTIONS(3362), [anon_sym_POUND] = ACTIONS(113), }, - [1045] = { - [sym__expr_unary_minus] = STATE(10486), - [sym_expr_parenthesized] = STATE(9327), - [sym_val_range] = STATE(10632), - [sym__val_range] = STATE(10567), - [sym__val_range_with_end] = STATE(10631), - [sym__value] = STATE(10632), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(9687), - [sym_val_variable] = STATE(5789), - [sym__var] = STATE(5205), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(7522), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(10411), - [sym_list_body] = STATE(10844), - [sym_val_entry] = STATE(10464), - [sym__list_item_expression] = STATE(10482), - [sym__list_item_starts_with_sign] = STATE(10484), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_short_flag] = STATE(10484), - [sym_long_flag] = STATE(10484), - [sym_long_flag_equals_value] = STATE(4310), - [sym__unquoted_in_list] = STATE(9820), - [sym__unquoted_in_list_with_expr] = STATE(10484), - [sym__unquoted_anonymous_prefix] = STATE(10279), - [sym_comment] = STATE(1045), - [aux_sym_list_body_repeat1] = STATE(1121), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_RBRACK] = ACTIONS(2014), - [anon_sym_LPAREN] = ACTIONS(1940), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(1950), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1952), - [anon_sym_DOT_DOT_LT] = ACTIONS(1952), - [anon_sym_null] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [aux_sym__val_number_decimal_token1] = ACTIONS(1958), - [aux_sym__val_number_decimal_token2] = ACTIONS(1960), - [anon_sym_DOT2] = ACTIONS(1962), - [aux_sym__val_number_decimal_token3] = ACTIONS(1964), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(1968), - [aux_sym__val_number_token5] = ACTIONS(1968), - [aux_sym__val_number_token6] = ACTIONS(1968), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(1699), - [anon_sym_out_GT] = ACTIONS(1699), - [anon_sym_e_GT] = ACTIONS(1699), - [anon_sym_o_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT] = ACTIONS(1699), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1701), + [1278] = { + [sym_cell_path] = STATE(2199), + [sym_path] = STATE(1169), + [sym_comment] = STATE(1278), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_COMMA] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_DOLLAR] = ACTIONS(1099), + [anon_sym_GT] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_RBRACE] = ACTIONS(1099), + [anon_sym__] = ACTIONS(1097), + [anon_sym_DOT_DOT] = ACTIONS(1097), + [anon_sym_STAR] = ACTIONS(1097), + [anon_sym_STAR_STAR] = ACTIONS(1099), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_SLASH] = ACTIONS(1097), + [anon_sym_mod] = ACTIONS(1099), + [anon_sym_SLASH_SLASH] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_bit_DASHshl] = ACTIONS(1099), + [anon_sym_bit_DASHshr] = ACTIONS(1099), + [anon_sym_EQ_EQ] = ACTIONS(1099), + [anon_sym_BANG_EQ] = ACTIONS(1099), + [anon_sym_LT2] = ACTIONS(1097), + [anon_sym_LT_EQ] = ACTIONS(1099), + [anon_sym_GT_EQ] = ACTIONS(1099), + [anon_sym_not_DASHin] = ACTIONS(1099), + [anon_sym_starts_DASHwith] = ACTIONS(1099), + [anon_sym_ends_DASHwith] = ACTIONS(1099), + [anon_sym_EQ_TILDE] = ACTIONS(1099), + [anon_sym_BANG_TILDE] = ACTIONS(1099), + [anon_sym_bit_DASHand] = ACTIONS(1099), + [anon_sym_bit_DASHxor] = ACTIONS(1099), + [anon_sym_bit_DASHor] = ACTIONS(1099), + [anon_sym_and] = ACTIONS(1099), + [anon_sym_xor] = ACTIONS(1099), + [anon_sym_or] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(3807), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1099), + [anon_sym_DOT_DOT_LT] = ACTIONS(1099), + [anon_sym_null] = ACTIONS(1099), + [anon_sym_true] = ACTIONS(1099), + [anon_sym_false] = ACTIONS(1099), + [aux_sym__val_number_decimal_token1] = ACTIONS(1097), + [aux_sym__val_number_decimal_token2] = ACTIONS(1099), + [anon_sym_DOT2] = ACTIONS(1097), + [aux_sym__val_number_decimal_token3] = ACTIONS(1099), + [aux_sym__val_number_token1] = ACTIONS(1099), + [aux_sym__val_number_token2] = ACTIONS(1099), + [aux_sym__val_number_token3] = ACTIONS(1099), + [aux_sym__val_number_token4] = ACTIONS(1099), + [aux_sym__val_number_token5] = ACTIONS(1099), + [aux_sym__val_number_token6] = ACTIONS(1099), + [anon_sym_0b] = ACTIONS(1097), + [anon_sym_0o] = ACTIONS(1097), + [anon_sym_0x] = ACTIONS(1097), + [sym_val_date] = ACTIONS(1099), + [anon_sym_DQUOTE] = ACTIONS(1099), + [sym__str_single_quotes] = ACTIONS(1099), + [sym__str_back_ticks] = ACTIONS(1099), + [anon_sym_err_GT] = ACTIONS(1099), + [anon_sym_out_GT] = ACTIONS(1099), + [anon_sym_e_GT] = ACTIONS(1099), + [anon_sym_o_GT] = ACTIONS(1099), + [anon_sym_err_PLUSout_GT] = ACTIONS(1099), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1099), + [anon_sym_o_PLUSe_GT] = ACTIONS(1099), + [anon_sym_e_PLUSo_GT] = ACTIONS(1099), + [aux_sym_unquoted_token1] = ACTIONS(1097), [anon_sym_POUND] = ACTIONS(3), }, - [1046] = { - [sym__expr_parenthesized_immediate] = STATE(1441), - [sym__immediate_decimal] = STATE(1176), - [sym_val_variable] = STATE(1441), - [sym__var] = STATE(1206), - [sym_comment] = STATE(1046), - [anon_sym_export] = ACTIONS(1920), - [anon_sym_alias] = ACTIONS(1920), - [anon_sym_let] = ACTIONS(1920), - [anon_sym_let_DASHenv] = ACTIONS(1920), - [anon_sym_mut] = ACTIONS(1920), - [anon_sym_const] = ACTIONS(1920), - [anon_sym_SEMI] = ACTIONS(1920), - [sym_cmd_identifier] = ACTIONS(1920), - [anon_sym_LF] = ACTIONS(1922), - [anon_sym_def] = ACTIONS(1920), - [anon_sym_export_DASHenv] = ACTIONS(1920), - [anon_sym_extern] = ACTIONS(1920), - [anon_sym_module] = ACTIONS(1920), - [anon_sym_use] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1920), - [anon_sym_RPAREN] = ACTIONS(1920), - [anon_sym_DOLLAR] = ACTIONS(1794), - [anon_sym_error] = ACTIONS(1920), - [anon_sym_DASH_DASH] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1920), - [anon_sym_break] = ACTIONS(1920), - [anon_sym_continue] = ACTIONS(1920), - [anon_sym_for] = ACTIONS(1920), - [anon_sym_loop] = ACTIONS(1920), - [anon_sym_while] = ACTIONS(1920), - [anon_sym_do] = ACTIONS(1920), - [anon_sym_if] = ACTIONS(1920), - [anon_sym_match] = ACTIONS(1920), - [anon_sym_LBRACE] = ACTIONS(1920), - [anon_sym_RBRACE] = ACTIONS(1920), - [anon_sym_DOT_DOT] = ACTIONS(1920), - [anon_sym_try] = ACTIONS(1920), - [anon_sym_return] = ACTIONS(1920), - [anon_sym_source] = ACTIONS(1920), - [anon_sym_source_DASHenv] = ACTIONS(1920), - [anon_sym_register] = ACTIONS(1920), - [anon_sym_hide] = ACTIONS(1920), - [anon_sym_hide_DASHenv] = ACTIONS(1920), - [anon_sym_overlay] = ACTIONS(1920), - [anon_sym_as] = ACTIONS(1920), - [anon_sym_where] = ACTIONS(1920), - [anon_sym_not] = ACTIONS(1920), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_DOT] = ACTIONS(2016), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1920), - [anon_sym_DOT_DOT_LT] = ACTIONS(1920), - [aux_sym__immediate_decimal_token1] = ACTIONS(1808), - [aux_sym__immediate_decimal_token3] = ACTIONS(1808), - [aux_sym__immediate_decimal_token4] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_true] = ACTIONS(1920), - [anon_sym_false] = ACTIONS(1920), - [aux_sym__val_number_decimal_token1] = ACTIONS(1920), - [aux_sym__val_number_decimal_token2] = ACTIONS(1920), - [anon_sym_DOT2] = ACTIONS(1920), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_token1] = ACTIONS(1920), - [aux_sym__val_number_token2] = ACTIONS(1920), - [aux_sym__val_number_token3] = ACTIONS(1920), - [aux_sym__val_number_token4] = ACTIONS(1920), - [aux_sym__val_number_token5] = ACTIONS(1920), - [aux_sym__val_number_token6] = ACTIONS(1920), - [anon_sym_0b] = ACTIONS(1920), - [anon_sym_0o] = ACTIONS(1920), - [anon_sym_0x] = ACTIONS(1920), - [sym_val_date] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym__str_single_quotes] = ACTIONS(1920), - [sym__str_back_ticks] = ACTIONS(1920), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1920), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1920), - [anon_sym_CARET] = ACTIONS(1920), - [aux_sym_unquoted_token2] = ACTIONS(1934), + [1279] = { + [sym_comment] = STATE(1279), + [ts_builtin_sym_end] = ACTIONS(3773), + [anon_sym_export] = ACTIONS(3771), + [anon_sym_alias] = ACTIONS(3771), + [anon_sym_let] = ACTIONS(3771), + [anon_sym_let_DASHenv] = ACTIONS(3771), + [anon_sym_mut] = ACTIONS(3771), + [anon_sym_const] = ACTIONS(3771), + [anon_sym_SEMI] = ACTIONS(3771), + [sym_cmd_identifier] = ACTIONS(3771), + [anon_sym_LF] = ACTIONS(3773), + [anon_sym_def] = ACTIONS(3771), + [anon_sym_export_DASHenv] = ACTIONS(3771), + [anon_sym_extern] = ACTIONS(3771), + [anon_sym_module] = ACTIONS(3771), + [anon_sym_use] = ACTIONS(3771), + [anon_sym_LBRACK] = ACTIONS(3771), + [anon_sym_LPAREN] = ACTIONS(3771), + [anon_sym_DOLLAR] = ACTIONS(3771), + [anon_sym_error] = ACTIONS(3771), + [anon_sym_DASH_DASH] = ACTIONS(3771), + [anon_sym_DASH] = ACTIONS(3771), + [anon_sym_break] = ACTIONS(3771), + [anon_sym_continue] = ACTIONS(3771), + [anon_sym_for] = ACTIONS(3771), + [anon_sym_loop] = ACTIONS(3771), + [anon_sym_while] = ACTIONS(3771), + [anon_sym_do] = ACTIONS(3771), + [anon_sym_if] = ACTIONS(3771), + [anon_sym_match] = ACTIONS(3771), + [anon_sym_LBRACE] = ACTIONS(3771), + [anon_sym_DOT_DOT] = ACTIONS(3771), + [anon_sym_try] = ACTIONS(3771), + [anon_sym_return] = ACTIONS(3771), + [anon_sym_source] = ACTIONS(3771), + [anon_sym_source_DASHenv] = ACTIONS(3771), + [anon_sym_register] = ACTIONS(3771), + [anon_sym_hide] = ACTIONS(3771), + [anon_sym_hide_DASHenv] = ACTIONS(3771), + [anon_sym_overlay] = ACTIONS(3771), + [anon_sym_as] = ACTIONS(3771), + [anon_sym_where] = ACTIONS(3771), + [anon_sym_not] = ACTIONS(3771), + [anon_sym_LPAREN2] = ACTIONS(3775), + [anon_sym_DOT] = ACTIONS(1886), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3771), + [anon_sym_DOT_DOT_LT] = ACTIONS(3771), + [anon_sym_null] = ACTIONS(3771), + [anon_sym_true] = ACTIONS(3771), + [anon_sym_false] = ACTIONS(3771), + [aux_sym__val_number_decimal_token1] = ACTIONS(3771), + [aux_sym__val_number_decimal_token2] = ACTIONS(3771), + [anon_sym_DOT2] = ACTIONS(3771), + [aux_sym__val_number_decimal_token3] = ACTIONS(3771), + [aux_sym__val_number_token1] = ACTIONS(3771), + [aux_sym__val_number_token2] = ACTIONS(3771), + [aux_sym__val_number_token3] = ACTIONS(3771), + [aux_sym__val_number_token4] = ACTIONS(3771), + [aux_sym__val_number_token5] = ACTIONS(3771), + [aux_sym__val_number_token6] = ACTIONS(3771), + [anon_sym_0b] = ACTIONS(3771), + [anon_sym_0o] = ACTIONS(3771), + [anon_sym_0x] = ACTIONS(3771), + [sym_val_date] = ACTIONS(3771), + [anon_sym_DQUOTE] = ACTIONS(3771), + [sym__str_single_quotes] = ACTIONS(3771), + [sym__str_back_ticks] = ACTIONS(3771), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3771), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3771), + [anon_sym_CARET] = ACTIONS(3771), + [aux_sym_unquoted_token2] = ACTIONS(1886), [anon_sym_POUND] = ACTIONS(113), }, - [1047] = { - [sym__expr_unary_minus] = STATE(10486), - [sym_expr_parenthesized] = STATE(9327), - [sym_val_range] = STATE(10632), - [sym__val_range] = STATE(10567), - [sym__val_range_with_end] = STATE(10631), - [sym__value] = STATE(10632), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(9687), - [sym_val_variable] = STATE(5789), - [sym__var] = STATE(5205), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(7522), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(10361), - [sym_list_body] = STATE(11312), - [sym_val_entry] = STATE(10464), - [sym__list_item_expression] = STATE(10482), - [sym__list_item_starts_with_sign] = STATE(10484), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_short_flag] = STATE(10484), - [sym_long_flag] = STATE(10484), - [sym_long_flag_equals_value] = STATE(4310), - [sym__unquoted_in_list] = STATE(9820), - [sym__unquoted_in_list_with_expr] = STATE(10484), - [sym__unquoted_anonymous_prefix] = STATE(10279), - [sym_comment] = STATE(1047), - [aux_sym_list_body_repeat1] = STATE(1121), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_RBRACK] = ACTIONS(2018), - [anon_sym_LPAREN] = ACTIONS(1940), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(1950), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1952), - [anon_sym_DOT_DOT_LT] = ACTIONS(1952), - [anon_sym_null] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [aux_sym__val_number_decimal_token1] = ACTIONS(1958), - [aux_sym__val_number_decimal_token2] = ACTIONS(1960), - [anon_sym_DOT2] = ACTIONS(1962), - [aux_sym__val_number_decimal_token3] = ACTIONS(1964), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(1968), - [aux_sym__val_number_token5] = ACTIONS(1968), - [aux_sym__val_number_token6] = ACTIONS(1968), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(1699), - [anon_sym_out_GT] = ACTIONS(1699), - [anon_sym_e_GT] = ACTIONS(1699), - [anon_sym_o_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT] = ACTIONS(1699), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1701), + [1280] = { + [sym_cell_path] = STATE(2134), + [sym_path] = STATE(1212), + [sym_comment] = STATE(1280), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_COMMA] = ACTIONS(1099), + [anon_sym_RBRACK] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_DOLLAR] = ACTIONS(1099), + [anon_sym_GT] = ACTIONS(1097), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_DOT_DOT] = ACTIONS(1097), + [anon_sym_STAR] = ACTIONS(1097), + [anon_sym_STAR_STAR] = ACTIONS(1099), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_SLASH] = ACTIONS(1097), + [anon_sym_mod] = ACTIONS(1099), + [anon_sym_SLASH_SLASH] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_bit_DASHshl] = ACTIONS(1099), + [anon_sym_bit_DASHshr] = ACTIONS(1099), + [anon_sym_EQ_EQ] = ACTIONS(1099), + [anon_sym_BANG_EQ] = ACTIONS(1099), + [anon_sym_LT2] = ACTIONS(1097), + [anon_sym_LT_EQ] = ACTIONS(1099), + [anon_sym_GT_EQ] = ACTIONS(1099), + [anon_sym_not_DASHin] = ACTIONS(1099), + [anon_sym_starts_DASHwith] = ACTIONS(1099), + [anon_sym_ends_DASHwith] = ACTIONS(1099), + [anon_sym_EQ_TILDE] = ACTIONS(1099), + [anon_sym_BANG_TILDE] = ACTIONS(1099), + [anon_sym_bit_DASHand] = ACTIONS(1099), + [anon_sym_bit_DASHxor] = ACTIONS(1099), + [anon_sym_bit_DASHor] = ACTIONS(1099), + [anon_sym_and] = ACTIONS(1099), + [anon_sym_xor] = ACTIONS(1099), + [anon_sym_or] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(3781), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1099), + [anon_sym_DOT_DOT_LT] = ACTIONS(1099), + [anon_sym_null] = ACTIONS(1099), + [anon_sym_true] = ACTIONS(1099), + [anon_sym_false] = ACTIONS(1099), + [aux_sym__val_number_decimal_token1] = ACTIONS(1097), + [aux_sym__val_number_decimal_token2] = ACTIONS(1099), + [anon_sym_DOT2] = ACTIONS(1097), + [aux_sym__val_number_decimal_token3] = ACTIONS(1099), + [aux_sym__val_number_token1] = ACTIONS(1099), + [aux_sym__val_number_token2] = ACTIONS(1099), + [aux_sym__val_number_token3] = ACTIONS(1099), + [aux_sym__val_number_token4] = ACTIONS(1099), + [aux_sym__val_number_token5] = ACTIONS(1099), + [aux_sym__val_number_token6] = ACTIONS(1099), + [anon_sym_0b] = ACTIONS(1097), + [anon_sym_0o] = ACTIONS(1097), + [anon_sym_0x] = ACTIONS(1097), + [sym_val_date] = ACTIONS(1099), + [anon_sym_DQUOTE] = ACTIONS(1099), + [sym__str_single_quotes] = ACTIONS(1099), + [sym__str_back_ticks] = ACTIONS(1099), + [anon_sym_err_GT] = ACTIONS(1099), + [anon_sym_out_GT] = ACTIONS(1099), + [anon_sym_e_GT] = ACTIONS(1099), + [anon_sym_o_GT] = ACTIONS(1099), + [anon_sym_err_PLUSout_GT] = ACTIONS(1099), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1099), + [anon_sym_o_PLUSe_GT] = ACTIONS(1099), + [anon_sym_e_PLUSo_GT] = ACTIONS(1099), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1097), [anon_sym_POUND] = ACTIONS(3), }, - [1048] = { - [sym__expr_unary_minus] = STATE(10486), - [sym_expr_parenthesized] = STATE(9327), - [sym_val_range] = STATE(10632), - [sym__val_range] = STATE(10567), - [sym__val_range_with_end] = STATE(10631), - [sym__value] = STATE(10632), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(9687), - [sym_val_variable] = STATE(5789), - [sym__var] = STATE(5205), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(7522), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(10438), - [sym_list_body] = STATE(10895), - [sym_val_entry] = STATE(10464), - [sym__list_item_expression] = STATE(10482), - [sym__list_item_starts_with_sign] = STATE(10484), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_short_flag] = STATE(10484), - [sym_long_flag] = STATE(10484), - [sym_long_flag_equals_value] = STATE(4310), - [sym__unquoted_in_list] = STATE(9820), - [sym__unquoted_in_list_with_expr] = STATE(10484), - [sym__unquoted_anonymous_prefix] = STATE(10279), - [sym_comment] = STATE(1048), - [aux_sym_list_body_repeat1] = STATE(1121), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_RBRACK] = ACTIONS(2020), - [anon_sym_LPAREN] = ACTIONS(1940), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(1950), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1952), - [anon_sym_DOT_DOT_LT] = ACTIONS(1952), - [anon_sym_null] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [aux_sym__val_number_decimal_token1] = ACTIONS(1958), - [aux_sym__val_number_decimal_token2] = ACTIONS(1960), - [anon_sym_DOT2] = ACTIONS(1962), - [aux_sym__val_number_decimal_token3] = ACTIONS(1964), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(1968), - [aux_sym__val_number_token5] = ACTIONS(1968), - [aux_sym__val_number_token6] = ACTIONS(1968), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(1699), - [anon_sym_out_GT] = ACTIONS(1699), - [anon_sym_e_GT] = ACTIONS(1699), - [anon_sym_o_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT] = ACTIONS(1699), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1701), + [1281] = { + [sym_cell_path] = STATE(2200), + [sym_path] = STATE(1169), + [sym_comment] = STATE(1281), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_COMMA] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_DOLLAR] = ACTIONS(1103), + [anon_sym_GT] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_in] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_RBRACE] = ACTIONS(1103), + [anon_sym__] = ACTIONS(1101), + [anon_sym_DOT_DOT] = ACTIONS(1101), + [anon_sym_STAR] = ACTIONS(1101), + [anon_sym_STAR_STAR] = ACTIONS(1103), + [anon_sym_PLUS_PLUS] = ACTIONS(1103), + [anon_sym_SLASH] = ACTIONS(1101), + [anon_sym_mod] = ACTIONS(1103), + [anon_sym_SLASH_SLASH] = ACTIONS(1103), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_bit_DASHshl] = ACTIONS(1103), + [anon_sym_bit_DASHshr] = ACTIONS(1103), + [anon_sym_EQ_EQ] = ACTIONS(1103), + [anon_sym_BANG_EQ] = ACTIONS(1103), + [anon_sym_LT2] = ACTIONS(1101), + [anon_sym_LT_EQ] = ACTIONS(1103), + [anon_sym_GT_EQ] = ACTIONS(1103), + [anon_sym_not_DASHin] = ACTIONS(1103), + [anon_sym_starts_DASHwith] = ACTIONS(1103), + [anon_sym_ends_DASHwith] = ACTIONS(1103), + [anon_sym_EQ_TILDE] = ACTIONS(1103), + [anon_sym_BANG_TILDE] = ACTIONS(1103), + [anon_sym_bit_DASHand] = ACTIONS(1103), + [anon_sym_bit_DASHxor] = ACTIONS(1103), + [anon_sym_bit_DASHor] = ACTIONS(1103), + [anon_sym_and] = ACTIONS(1103), + [anon_sym_xor] = ACTIONS(1103), + [anon_sym_or] = ACTIONS(1103), + [anon_sym_DOT] = ACTIONS(3807), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1103), + [anon_sym_DOT_DOT_LT] = ACTIONS(1103), + [anon_sym_null] = ACTIONS(1103), + [anon_sym_true] = ACTIONS(1103), + [anon_sym_false] = ACTIONS(1103), + [aux_sym__val_number_decimal_token1] = ACTIONS(1101), + [aux_sym__val_number_decimal_token2] = ACTIONS(1103), + [anon_sym_DOT2] = ACTIONS(1101), + [aux_sym__val_number_decimal_token3] = ACTIONS(1103), + [aux_sym__val_number_token1] = ACTIONS(1103), + [aux_sym__val_number_token2] = ACTIONS(1103), + [aux_sym__val_number_token3] = ACTIONS(1103), + [aux_sym__val_number_token4] = ACTIONS(1103), + [aux_sym__val_number_token5] = ACTIONS(1103), + [aux_sym__val_number_token6] = ACTIONS(1103), + [anon_sym_0b] = ACTIONS(1101), + [anon_sym_0o] = ACTIONS(1101), + [anon_sym_0x] = ACTIONS(1101), + [sym_val_date] = ACTIONS(1103), + [anon_sym_DQUOTE] = ACTIONS(1103), + [sym__str_single_quotes] = ACTIONS(1103), + [sym__str_back_ticks] = ACTIONS(1103), + [anon_sym_err_GT] = ACTIONS(1103), + [anon_sym_out_GT] = ACTIONS(1103), + [anon_sym_e_GT] = ACTIONS(1103), + [anon_sym_o_GT] = ACTIONS(1103), + [anon_sym_err_PLUSout_GT] = ACTIONS(1103), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1103), + [anon_sym_o_PLUSe_GT] = ACTIONS(1103), + [anon_sym_e_PLUSo_GT] = ACTIONS(1103), + [aux_sym_unquoted_token1] = ACTIONS(1101), [anon_sym_POUND] = ACTIONS(3), }, - [1049] = { - [sym_comment] = STATE(1049), - [anon_sym_export] = ACTIONS(909), - [anon_sym_alias] = ACTIONS(909), - [anon_sym_let] = ACTIONS(909), - [anon_sym_let_DASHenv] = ACTIONS(909), - [anon_sym_mut] = ACTIONS(909), - [anon_sym_const] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(909), - [sym_cmd_identifier] = ACTIONS(909), - [anon_sym_LF] = ACTIONS(911), - [anon_sym_def] = ACTIONS(909), - [anon_sym_export_DASHenv] = ACTIONS(909), - [anon_sym_extern] = ACTIONS(909), - [anon_sym_module] = ACTIONS(909), - [anon_sym_use] = ACTIONS(909), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_RPAREN] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_error] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_break] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_for] = ACTIONS(909), - [anon_sym_loop] = ACTIONS(909), - [anon_sym_while] = ACTIONS(909), - [anon_sym_do] = ACTIONS(909), - [anon_sym_if] = ACTIONS(909), - [anon_sym_match] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_RBRACE] = ACTIONS(909), - [anon_sym_DOT_DOT] = ACTIONS(909), - [anon_sym_try] = ACTIONS(909), - [anon_sym_return] = ACTIONS(909), - [anon_sym_source] = ACTIONS(909), - [anon_sym_source_DASHenv] = ACTIONS(909), - [anon_sym_register] = ACTIONS(909), - [anon_sym_hide] = ACTIONS(909), - [anon_sym_hide_DASHenv] = ACTIONS(909), - [anon_sym_overlay] = ACTIONS(909), - [anon_sym_as] = ACTIONS(909), - [anon_sym_where] = ACTIONS(909), - [anon_sym_not] = ACTIONS(909), - [anon_sym_LPAREN2] = ACTIONS(911), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [aux_sym__immediate_decimal_token1] = ACTIONS(2022), - [aux_sym__immediate_decimal_token2] = ACTIONS(2024), - [anon_sym_null] = ACTIONS(909), - [anon_sym_true] = ACTIONS(909), - [anon_sym_false] = ACTIONS(909), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(909), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(909), - [aux_sym__val_number_token1] = ACTIONS(909), - [aux_sym__val_number_token2] = ACTIONS(909), - [aux_sym__val_number_token3] = ACTIONS(909), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(909), - [aux_sym__val_number_token6] = ACTIONS(909), - [anon_sym_0b] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(909), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym__str_single_quotes] = ACTIONS(909), - [sym__str_back_ticks] = ACTIONS(909), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), - [anon_sym_CARET] = ACTIONS(909), - [aux_sym_unquoted_token5] = ACTIONS(909), + [1282] = { + [sym_comment] = STATE(1282), + [ts_builtin_sym_end] = ACTIONS(3646), + [anon_sym_export] = ACTIONS(3644), + [anon_sym_alias] = ACTIONS(3644), + [anon_sym_let] = ACTIONS(3644), + [anon_sym_let_DASHenv] = ACTIONS(3644), + [anon_sym_mut] = ACTIONS(3644), + [anon_sym_const] = ACTIONS(3644), + [anon_sym_SEMI] = ACTIONS(3644), + [sym_cmd_identifier] = ACTIONS(3644), + [anon_sym_LF] = ACTIONS(3646), + [anon_sym_def] = ACTIONS(3644), + [anon_sym_export_DASHenv] = ACTIONS(3644), + [anon_sym_extern] = ACTIONS(3644), + [anon_sym_module] = ACTIONS(3644), + [anon_sym_use] = ACTIONS(3644), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_LPAREN] = ACTIONS(3644), + [anon_sym_DOLLAR] = ACTIONS(3644), + [anon_sym_error] = ACTIONS(3644), + [anon_sym_DASH_DASH] = ACTIONS(3644), + [anon_sym_DASH] = ACTIONS(3644), + [anon_sym_break] = ACTIONS(3644), + [anon_sym_continue] = ACTIONS(3644), + [anon_sym_for] = ACTIONS(3644), + [anon_sym_loop] = ACTIONS(3644), + [anon_sym_while] = ACTIONS(3644), + [anon_sym_do] = ACTIONS(3644), + [anon_sym_if] = ACTIONS(3644), + [anon_sym_match] = ACTIONS(3644), + [anon_sym_LBRACE] = ACTIONS(3644), + [anon_sym_DOT_DOT] = ACTIONS(3644), + [anon_sym_try] = ACTIONS(3644), + [anon_sym_return] = ACTIONS(3644), + [anon_sym_source] = ACTIONS(3644), + [anon_sym_source_DASHenv] = ACTIONS(3644), + [anon_sym_register] = ACTIONS(3644), + [anon_sym_hide] = ACTIONS(3644), + [anon_sym_hide_DASHenv] = ACTIONS(3644), + [anon_sym_overlay] = ACTIONS(3644), + [anon_sym_as] = ACTIONS(3644), + [anon_sym_where] = ACTIONS(3644), + [anon_sym_not] = ACTIONS(3644), + [anon_sym_LPAREN2] = ACTIONS(3648), + [anon_sym_DOT] = ACTIONS(3650), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3644), + [anon_sym_DOT_DOT_LT] = ACTIONS(3644), + [anon_sym_null] = ACTIONS(3644), + [anon_sym_true] = ACTIONS(3644), + [anon_sym_false] = ACTIONS(3644), + [aux_sym__val_number_decimal_token1] = ACTIONS(3644), + [aux_sym__val_number_decimal_token2] = ACTIONS(3644), + [anon_sym_DOT2] = ACTIONS(3644), + [aux_sym__val_number_decimal_token3] = ACTIONS(3644), + [aux_sym__val_number_token1] = ACTIONS(3644), + [aux_sym__val_number_token2] = ACTIONS(3644), + [aux_sym__val_number_token3] = ACTIONS(3644), + [aux_sym__val_number_token4] = ACTIONS(3644), + [aux_sym__val_number_token5] = ACTIONS(3644), + [aux_sym__val_number_token6] = ACTIONS(3644), + [anon_sym_0b] = ACTIONS(3644), + [anon_sym_0o] = ACTIONS(3644), + [anon_sym_0x] = ACTIONS(3644), + [sym_val_date] = ACTIONS(3644), + [anon_sym_DQUOTE] = ACTIONS(3644), + [sym__str_single_quotes] = ACTIONS(3644), + [sym__str_back_ticks] = ACTIONS(3644), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3644), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3644), + [anon_sym_CARET] = ACTIONS(3644), + [aux_sym_unquoted_token2] = ACTIONS(3650), [anon_sym_POUND] = ACTIONS(113), }, - [1050] = { - [sym__expr_unary_minus] = STATE(10486), - [sym_expr_parenthesized] = STATE(9327), - [sym_val_range] = STATE(10632), - [sym__val_range] = STATE(10567), - [sym__val_range_with_end] = STATE(10631), - [sym__value] = STATE(10632), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(9687), - [sym_val_variable] = STATE(5789), - [sym__var] = STATE(5205), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(7522), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(10439), - [sym_list_body] = STATE(10957), - [sym_val_entry] = STATE(10464), - [sym__list_item_expression] = STATE(10482), - [sym__list_item_starts_with_sign] = STATE(10484), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_short_flag] = STATE(10484), - [sym_long_flag] = STATE(10484), - [sym_long_flag_equals_value] = STATE(4310), - [sym__unquoted_in_list] = STATE(9820), - [sym__unquoted_in_list_with_expr] = STATE(10484), - [sym__unquoted_anonymous_prefix] = STATE(10279), - [sym_comment] = STATE(1050), - [aux_sym_list_body_repeat1] = STATE(1121), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_RBRACK] = ACTIONS(2026), - [anon_sym_LPAREN] = ACTIONS(1940), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(1950), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1952), - [anon_sym_DOT_DOT_LT] = ACTIONS(1952), - [anon_sym_null] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [aux_sym__val_number_decimal_token1] = ACTIONS(1958), - [aux_sym__val_number_decimal_token2] = ACTIONS(1960), - [anon_sym_DOT2] = ACTIONS(1962), - [aux_sym__val_number_decimal_token3] = ACTIONS(1964), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(1968), - [aux_sym__val_number_token5] = ACTIONS(1968), - [aux_sym__val_number_token6] = ACTIONS(1968), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(1699), - [anon_sym_out_GT] = ACTIONS(1699), - [anon_sym_e_GT] = ACTIONS(1699), - [anon_sym_o_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT] = ACTIONS(1699), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1701), + [1283] = { + [sym_cell_path] = STATE(2147), + [sym_path] = STATE(1212), + [sym_comment] = STATE(1283), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_COMMA] = ACTIONS(1103), + [anon_sym_RBRACK] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_DOLLAR] = ACTIONS(1103), + [anon_sym_GT] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_in] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_DOT_DOT] = ACTIONS(1101), + [anon_sym_STAR] = ACTIONS(1101), + [anon_sym_STAR_STAR] = ACTIONS(1103), + [anon_sym_PLUS_PLUS] = ACTIONS(1103), + [anon_sym_SLASH] = ACTIONS(1101), + [anon_sym_mod] = ACTIONS(1103), + [anon_sym_SLASH_SLASH] = ACTIONS(1103), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_bit_DASHshl] = ACTIONS(1103), + [anon_sym_bit_DASHshr] = ACTIONS(1103), + [anon_sym_EQ_EQ] = ACTIONS(1103), + [anon_sym_BANG_EQ] = ACTIONS(1103), + [anon_sym_LT2] = ACTIONS(1101), + [anon_sym_LT_EQ] = ACTIONS(1103), + [anon_sym_GT_EQ] = ACTIONS(1103), + [anon_sym_not_DASHin] = ACTIONS(1103), + [anon_sym_starts_DASHwith] = ACTIONS(1103), + [anon_sym_ends_DASHwith] = ACTIONS(1103), + [anon_sym_EQ_TILDE] = ACTIONS(1103), + [anon_sym_BANG_TILDE] = ACTIONS(1103), + [anon_sym_bit_DASHand] = ACTIONS(1103), + [anon_sym_bit_DASHxor] = ACTIONS(1103), + [anon_sym_bit_DASHor] = ACTIONS(1103), + [anon_sym_and] = ACTIONS(1103), + [anon_sym_xor] = ACTIONS(1103), + [anon_sym_or] = ACTIONS(1103), + [anon_sym_DOT] = ACTIONS(3781), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1103), + [anon_sym_DOT_DOT_LT] = ACTIONS(1103), + [anon_sym_null] = ACTIONS(1103), + [anon_sym_true] = ACTIONS(1103), + [anon_sym_false] = ACTIONS(1103), + [aux_sym__val_number_decimal_token1] = ACTIONS(1101), + [aux_sym__val_number_decimal_token2] = ACTIONS(1103), + [anon_sym_DOT2] = ACTIONS(1101), + [aux_sym__val_number_decimal_token3] = ACTIONS(1103), + [aux_sym__val_number_token1] = ACTIONS(1103), + [aux_sym__val_number_token2] = ACTIONS(1103), + [aux_sym__val_number_token3] = ACTIONS(1103), + [aux_sym__val_number_token4] = ACTIONS(1103), + [aux_sym__val_number_token5] = ACTIONS(1103), + [aux_sym__val_number_token6] = ACTIONS(1103), + [anon_sym_0b] = ACTIONS(1101), + [anon_sym_0o] = ACTIONS(1101), + [anon_sym_0x] = ACTIONS(1101), + [sym_val_date] = ACTIONS(1103), + [anon_sym_DQUOTE] = ACTIONS(1103), + [sym__str_single_quotes] = ACTIONS(1103), + [sym__str_back_ticks] = ACTIONS(1103), + [anon_sym_err_GT] = ACTIONS(1103), + [anon_sym_out_GT] = ACTIONS(1103), + [anon_sym_e_GT] = ACTIONS(1103), + [anon_sym_o_GT] = ACTIONS(1103), + [anon_sym_err_PLUSout_GT] = ACTIONS(1103), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1103), + [anon_sym_o_PLUSe_GT] = ACTIONS(1103), + [anon_sym_e_PLUSo_GT] = ACTIONS(1103), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1101), [anon_sym_POUND] = ACTIONS(3), }, - [1051] = { - [sym__expr_unary_minus] = STATE(10486), - [sym_expr_parenthesized] = STATE(9327), - [sym_val_range] = STATE(10632), - [sym__val_range] = STATE(10567), - [sym__val_range_with_end] = STATE(10631), - [sym__value] = STATE(10632), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(9687), - [sym_val_variable] = STATE(5789), - [sym__var] = STATE(5205), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(7522), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(10441), - [sym_list_body] = STATE(11001), - [sym_val_entry] = STATE(10464), - [sym__list_item_expression] = STATE(10482), - [sym__list_item_starts_with_sign] = STATE(10484), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_short_flag] = STATE(10484), - [sym_long_flag] = STATE(10484), - [sym_long_flag_equals_value] = STATE(4310), - [sym__unquoted_in_list] = STATE(9820), - [sym__unquoted_in_list_with_expr] = STATE(10484), - [sym__unquoted_anonymous_prefix] = STATE(10279), - [sym_comment] = STATE(1051), - [aux_sym_list_body_repeat1] = STATE(1121), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_RBRACK] = ACTIONS(2028), - [anon_sym_LPAREN] = ACTIONS(1940), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(1950), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1952), - [anon_sym_DOT_DOT_LT] = ACTIONS(1952), - [anon_sym_null] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [aux_sym__val_number_decimal_token1] = ACTIONS(1958), - [aux_sym__val_number_decimal_token2] = ACTIONS(1960), - [anon_sym_DOT2] = ACTIONS(1962), - [aux_sym__val_number_decimal_token3] = ACTIONS(1964), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(1968), - [aux_sym__val_number_token5] = ACTIONS(1968), - [aux_sym__val_number_token6] = ACTIONS(1968), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(1699), - [anon_sym_out_GT] = ACTIONS(1699), - [anon_sym_e_GT] = ACTIONS(1699), - [anon_sym_o_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT] = ACTIONS(1699), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1701), - [anon_sym_POUND] = ACTIONS(3), + [1284] = { + [sym_comment] = STATE(1284), + [ts_builtin_sym_end] = ACTIONS(3576), + [anon_sym_export] = ACTIONS(3574), + [anon_sym_alias] = ACTIONS(3574), + [anon_sym_let] = ACTIONS(3574), + [anon_sym_let_DASHenv] = ACTIONS(3574), + [anon_sym_mut] = ACTIONS(3574), + [anon_sym_const] = ACTIONS(3574), + [anon_sym_SEMI] = ACTIONS(3574), + [sym_cmd_identifier] = ACTIONS(3574), + [anon_sym_LF] = ACTIONS(3576), + [anon_sym_def] = ACTIONS(3574), + [anon_sym_export_DASHenv] = ACTIONS(3574), + [anon_sym_extern] = ACTIONS(3574), + [anon_sym_module] = ACTIONS(3574), + [anon_sym_use] = ACTIONS(3574), + [anon_sym_LBRACK] = ACTIONS(3574), + [anon_sym_LPAREN] = ACTIONS(3574), + [anon_sym_DOLLAR] = ACTIONS(3574), + [anon_sym_error] = ACTIONS(3574), + [anon_sym_DASH_DASH] = ACTIONS(3574), + [anon_sym_DASH] = ACTIONS(3574), + [anon_sym_break] = ACTIONS(3574), + [anon_sym_continue] = ACTIONS(3574), + [anon_sym_for] = ACTIONS(3574), + [anon_sym_loop] = ACTIONS(3574), + [anon_sym_while] = ACTIONS(3574), + [anon_sym_do] = ACTIONS(3574), + [anon_sym_if] = ACTIONS(3574), + [anon_sym_match] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(3574), + [anon_sym_DOT_DOT] = ACTIONS(3574), + [anon_sym_try] = ACTIONS(3574), + [anon_sym_return] = ACTIONS(3574), + [anon_sym_source] = ACTIONS(3574), + [anon_sym_source_DASHenv] = ACTIONS(3574), + [anon_sym_register] = ACTIONS(3574), + [anon_sym_hide] = ACTIONS(3574), + [anon_sym_hide_DASHenv] = ACTIONS(3574), + [anon_sym_overlay] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3574), + [anon_sym_where] = ACTIONS(3574), + [anon_sym_not] = ACTIONS(3574), + [anon_sym_DOT] = ACTIONS(3362), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3574), + [anon_sym_DOT_DOT_LT] = ACTIONS(3574), + [aux_sym__immediate_decimal_token1] = ACTIONS(4697), + [anon_sym_null] = ACTIONS(3574), + [anon_sym_true] = ACTIONS(3574), + [anon_sym_false] = ACTIONS(3574), + [aux_sym__val_number_decimal_token1] = ACTIONS(3574), + [aux_sym__val_number_decimal_token2] = ACTIONS(3574), + [anon_sym_DOT2] = ACTIONS(3574), + [aux_sym__val_number_decimal_token3] = ACTIONS(3574), + [aux_sym__val_number_token1] = ACTIONS(3574), + [aux_sym__val_number_token2] = ACTIONS(3574), + [aux_sym__val_number_token3] = ACTIONS(3574), + [aux_sym__val_number_token4] = ACTIONS(3574), + [aux_sym__val_number_token5] = ACTIONS(3574), + [aux_sym__val_number_token6] = ACTIONS(3574), + [anon_sym_0b] = ACTIONS(3574), + [anon_sym_0o] = ACTIONS(3574), + [anon_sym_0x] = ACTIONS(3574), + [sym_val_date] = ACTIONS(3574), + [anon_sym_DQUOTE] = ACTIONS(3574), + [sym__str_single_quotes] = ACTIONS(3574), + [sym__str_back_ticks] = ACTIONS(3574), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3574), + [anon_sym_CARET] = ACTIONS(3574), + [aux_sym_unquoted_token2] = ACTIONS(3362), + [anon_sym_POUND] = ACTIONS(113), }, - [1052] = { - [sym__expr_unary_minus] = STATE(10486), - [sym_expr_parenthesized] = STATE(9327), - [sym_val_range] = STATE(10632), - [sym__val_range] = STATE(10567), - [sym__val_range_with_end] = STATE(10631), - [sym__value] = STATE(10632), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(9687), - [sym_val_variable] = STATE(5789), - [sym__var] = STATE(5205), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(7522), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(10394), - [sym_list_body] = STATE(11384), - [sym_val_entry] = STATE(10464), - [sym__list_item_expression] = STATE(10482), - [sym__list_item_starts_with_sign] = STATE(10484), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_short_flag] = STATE(10484), - [sym_long_flag] = STATE(10484), - [sym_long_flag_equals_value] = STATE(4310), - [sym__unquoted_in_list] = STATE(9820), - [sym__unquoted_in_list_with_expr] = STATE(10484), - [sym__unquoted_anonymous_prefix] = STATE(10279), - [sym_comment] = STATE(1052), - [aux_sym_list_body_repeat1] = STATE(1121), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_RBRACK] = ACTIONS(2030), - [anon_sym_LPAREN] = ACTIONS(1940), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(1950), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1952), - [anon_sym_DOT_DOT_LT] = ACTIONS(1952), - [anon_sym_null] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [aux_sym__val_number_decimal_token1] = ACTIONS(1958), - [aux_sym__val_number_decimal_token2] = ACTIONS(1960), - [anon_sym_DOT2] = ACTIONS(1962), - [aux_sym__val_number_decimal_token3] = ACTIONS(1964), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(1968), - [aux_sym__val_number_token5] = ACTIONS(1968), - [aux_sym__val_number_token6] = ACTIONS(1968), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(1699), - [anon_sym_out_GT] = ACTIONS(1699), - [anon_sym_e_GT] = ACTIONS(1699), - [anon_sym_o_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT] = ACTIONS(1699), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1701), + [1285] = { + [sym_comment] = STATE(1285), + [anon_sym_LBRACK] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(1070), + [anon_sym_LPAREN] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_GT] = ACTIONS(1068), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_in] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_RBRACE] = ACTIONS(1070), + [anon_sym__] = ACTIONS(1068), + [anon_sym_DOT_DOT] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_STAR_STAR] = ACTIONS(1070), + [anon_sym_PLUS_PLUS] = ACTIONS(1070), + [anon_sym_SLASH] = ACTIONS(1068), + [anon_sym_mod] = ACTIONS(1070), + [anon_sym_SLASH_SLASH] = ACTIONS(1070), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_bit_DASHshl] = ACTIONS(1070), + [anon_sym_bit_DASHshr] = ACTIONS(1070), + [anon_sym_EQ_EQ] = ACTIONS(1070), + [anon_sym_BANG_EQ] = ACTIONS(1070), + [anon_sym_LT2] = ACTIONS(1068), + [anon_sym_LT_EQ] = ACTIONS(1070), + [anon_sym_GT_EQ] = ACTIONS(1070), + [anon_sym_not_DASHin] = ACTIONS(1070), + [anon_sym_starts_DASHwith] = ACTIONS(1070), + [anon_sym_ends_DASHwith] = ACTIONS(1070), + [anon_sym_EQ_TILDE] = ACTIONS(1070), + [anon_sym_BANG_TILDE] = ACTIONS(1070), + [anon_sym_bit_DASHand] = ACTIONS(1070), + [anon_sym_bit_DASHxor] = ACTIONS(1070), + [anon_sym_bit_DASHor] = ACTIONS(1070), + [anon_sym_and] = ACTIONS(1070), + [anon_sym_xor] = ACTIONS(1070), + [anon_sym_or] = ACTIONS(1070), + [anon_sym_DOT_DOT2] = ACTIONS(1068), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1068), + [anon_sym_DOT_DOT_LT] = ACTIONS(1068), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1070), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1070), + [anon_sym_null] = ACTIONS(1070), + [anon_sym_true] = ACTIONS(1070), + [anon_sym_false] = ACTIONS(1070), + [aux_sym__val_number_decimal_token1] = ACTIONS(1068), + [aux_sym__val_number_decimal_token2] = ACTIONS(1070), + [anon_sym_DOT2] = ACTIONS(1068), + [aux_sym__val_number_decimal_token3] = ACTIONS(1070), + [aux_sym__val_number_token1] = ACTIONS(1070), + [aux_sym__val_number_token2] = ACTIONS(1070), + [aux_sym__val_number_token3] = ACTIONS(1070), + [aux_sym__val_number_token4] = ACTIONS(1070), + [aux_sym__val_number_token5] = ACTIONS(1070), + [aux_sym__val_number_token6] = ACTIONS(1070), + [anon_sym_0b] = ACTIONS(1068), + [anon_sym_0o] = ACTIONS(1068), + [anon_sym_0x] = ACTIONS(1068), + [sym_val_date] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1070), + [sym__str_single_quotes] = ACTIONS(1070), + [sym__str_back_ticks] = ACTIONS(1070), + [anon_sym_err_GT] = ACTIONS(1070), + [anon_sym_out_GT] = ACTIONS(1070), + [anon_sym_e_GT] = ACTIONS(1070), + [anon_sym_o_GT] = ACTIONS(1070), + [anon_sym_err_PLUSout_GT] = ACTIONS(1070), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1070), + [anon_sym_o_PLUSe_GT] = ACTIONS(1070), + [anon_sym_e_PLUSo_GT] = ACTIONS(1070), + [aux_sym_unquoted_token1] = ACTIONS(1068), [anon_sym_POUND] = ACTIONS(3), }, - [1053] = { - [sym__expr_unary_minus] = STATE(10486), - [sym_expr_parenthesized] = STATE(9327), - [sym_val_range] = STATE(10632), - [sym__val_range] = STATE(10567), - [sym__val_range_with_end] = STATE(10631), - [sym__value] = STATE(10632), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(9687), - [sym_val_variable] = STATE(5789), - [sym__var] = STATE(5205), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(7522), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(10442), - [sym_list_body] = STATE(11039), - [sym_val_entry] = STATE(10464), - [sym__list_item_expression] = STATE(10482), - [sym__list_item_starts_with_sign] = STATE(10484), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_short_flag] = STATE(10484), - [sym_long_flag] = STATE(10484), - [sym_long_flag_equals_value] = STATE(4310), - [sym__unquoted_in_list] = STATE(9820), - [sym__unquoted_in_list_with_expr] = STATE(10484), - [sym__unquoted_anonymous_prefix] = STATE(10279), - [sym_comment] = STATE(1053), - [aux_sym_list_body_repeat1] = STATE(1121), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_RBRACK] = ACTIONS(2032), - [anon_sym_LPAREN] = ACTIONS(1940), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(1950), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1952), - [anon_sym_DOT_DOT_LT] = ACTIONS(1952), - [anon_sym_null] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [aux_sym__val_number_decimal_token1] = ACTIONS(1958), - [aux_sym__val_number_decimal_token2] = ACTIONS(1960), - [anon_sym_DOT2] = ACTIONS(1962), - [aux_sym__val_number_decimal_token3] = ACTIONS(1964), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(1968), - [aux_sym__val_number_token5] = ACTIONS(1968), - [aux_sym__val_number_token6] = ACTIONS(1968), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(1699), - [anon_sym_out_GT] = ACTIONS(1699), - [anon_sym_e_GT] = ACTIONS(1699), - [anon_sym_o_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT] = ACTIONS(1699), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1701), + [1286] = { + [sym_cell_path] = STATE(2213), + [sym_path] = STATE(1169), + [sym_comment] = STATE(1286), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_COMMA] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1059), + [anon_sym_DOLLAR] = ACTIONS(1059), + [anon_sym_GT] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_in] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_RBRACE] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_STAR_STAR] = ACTIONS(1059), + [anon_sym_PLUS_PLUS] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_mod] = ACTIONS(1059), + [anon_sym_SLASH_SLASH] = ACTIONS(1059), + [anon_sym_PLUS] = ACTIONS(1057), + [anon_sym_bit_DASHshl] = ACTIONS(1059), + [anon_sym_bit_DASHshr] = ACTIONS(1059), + [anon_sym_EQ_EQ] = ACTIONS(1059), + [anon_sym_BANG_EQ] = ACTIONS(1059), + [anon_sym_LT2] = ACTIONS(1057), + [anon_sym_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_EQ] = ACTIONS(1059), + [anon_sym_not_DASHin] = ACTIONS(1059), + [anon_sym_starts_DASHwith] = ACTIONS(1059), + [anon_sym_ends_DASHwith] = ACTIONS(1059), + [anon_sym_EQ_TILDE] = ACTIONS(1059), + [anon_sym_BANG_TILDE] = ACTIONS(1059), + [anon_sym_bit_DASHand] = ACTIONS(1059), + [anon_sym_bit_DASHxor] = ACTIONS(1059), + [anon_sym_bit_DASHor] = ACTIONS(1059), + [anon_sym_and] = ACTIONS(1059), + [anon_sym_xor] = ACTIONS(1059), + [anon_sym_or] = ACTIONS(1059), + [anon_sym_DOT] = ACTIONS(3807), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1059), + [anon_sym_DOT_DOT_LT] = ACTIONS(1059), + [anon_sym_null] = ACTIONS(1059), + [anon_sym_true] = ACTIONS(1059), + [anon_sym_false] = ACTIONS(1059), + [aux_sym__val_number_decimal_token1] = ACTIONS(1057), + [aux_sym__val_number_decimal_token2] = ACTIONS(1059), + [anon_sym_DOT2] = ACTIONS(1057), + [aux_sym__val_number_decimal_token3] = ACTIONS(1059), + [aux_sym__val_number_token1] = ACTIONS(1059), + [aux_sym__val_number_token2] = ACTIONS(1059), + [aux_sym__val_number_token3] = ACTIONS(1059), + [aux_sym__val_number_token4] = ACTIONS(1059), + [aux_sym__val_number_token5] = ACTIONS(1059), + [aux_sym__val_number_token6] = ACTIONS(1059), + [anon_sym_0b] = ACTIONS(1057), + [anon_sym_0o] = ACTIONS(1057), + [anon_sym_0x] = ACTIONS(1057), + [sym_val_date] = ACTIONS(1059), + [anon_sym_DQUOTE] = ACTIONS(1059), + [sym__str_single_quotes] = ACTIONS(1059), + [sym__str_back_ticks] = ACTIONS(1059), + [anon_sym_err_GT] = ACTIONS(1059), + [anon_sym_out_GT] = ACTIONS(1059), + [anon_sym_e_GT] = ACTIONS(1059), + [anon_sym_o_GT] = ACTIONS(1059), + [anon_sym_err_PLUSout_GT] = ACTIONS(1059), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1059), + [anon_sym_o_PLUSe_GT] = ACTIONS(1059), + [anon_sym_e_PLUSo_GT] = ACTIONS(1059), + [aux_sym_unquoted_token1] = ACTIONS(1057), [anon_sym_POUND] = ACTIONS(3), }, - [1054] = { - [sym__expr_unary_minus] = STATE(10486), - [sym_expr_parenthesized] = STATE(9327), - [sym_val_range] = STATE(10632), - [sym__val_range] = STATE(10567), - [sym__val_range_with_end] = STATE(10631), - [sym__value] = STATE(10632), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(9687), - [sym_val_variable] = STATE(5789), - [sym__var] = STATE(5205), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(7522), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(10429), - [sym_list_body] = STATE(10927), - [sym_val_entry] = STATE(10464), - [sym__list_item_expression] = STATE(10482), - [sym__list_item_starts_with_sign] = STATE(10484), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_short_flag] = STATE(10484), - [sym_long_flag] = STATE(10484), - [sym_long_flag_equals_value] = STATE(4310), - [sym__unquoted_in_list] = STATE(9820), - [sym__unquoted_in_list_with_expr] = STATE(10484), - [sym__unquoted_anonymous_prefix] = STATE(10279), - [sym_comment] = STATE(1054), - [aux_sym_list_body_repeat1] = STATE(1121), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_RBRACK] = ACTIONS(2034), - [anon_sym_LPAREN] = ACTIONS(1940), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(1950), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1952), - [anon_sym_DOT_DOT_LT] = ACTIONS(1952), - [anon_sym_null] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [aux_sym__val_number_decimal_token1] = ACTIONS(1958), - [aux_sym__val_number_decimal_token2] = ACTIONS(1960), - [anon_sym_DOT2] = ACTIONS(1962), - [aux_sym__val_number_decimal_token3] = ACTIONS(1964), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(1968), - [aux_sym__val_number_token5] = ACTIONS(1968), - [aux_sym__val_number_token6] = ACTIONS(1968), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(1699), - [anon_sym_out_GT] = ACTIONS(1699), - [anon_sym_e_GT] = ACTIONS(1699), - [anon_sym_o_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT] = ACTIONS(1699), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1701), + [1287] = { + [sym__match_pattern_expression] = STATE(3963), + [sym__match_pattern_value] = STATE(4065), + [sym__match_pattern_list] = STATE(3899), + [sym__match_pattern_rest] = STATE(10599), + [sym__match_pattern_record] = STATE(4002), + [sym__expr_unary_minus] = STATE(4029), + [sym_expr_parenthesized] = STATE(3478), + [sym_val_range] = STATE(4065), + [sym__val_range] = STATE(10108), + [sym_val_nothing] = STATE(3928), + [sym_val_bool] = STATE(3848), + [sym_val_variable] = STATE(3481), + [sym__var] = STATE(3303), + [sym_val_number] = STATE(3928), + [sym__val_number_decimal] = STATE(3274), + [sym__val_number] = STATE(4008), + [sym_val_duration] = STATE(3928), + [sym_val_filesize] = STATE(3928), + [sym_val_binary] = STATE(3928), + [sym_val_string] = STATE(3928), + [sym__str_double_quotes] = STATE(3913), + [sym__list_item_starts_with_sign] = STATE(3915), + [sym_val_table] = STATE(3928), + [sym_short_flag] = STATE(3915), + [sym_long_flag] = STATE(3915), + [sym_long_flag_equals_value] = STATE(4030), + [sym__unquoted_in_list] = STATE(3915), + [sym__unquoted_anonymous_prefix] = STATE(10784), + [sym_comment] = STATE(1287), + [aux_sym__match_pattern_list_repeat1] = STATE(1849), + [anon_sym_LBRACK] = ACTIONS(4699), + [anon_sym_RBRACK] = ACTIONS(4701), + [anon_sym_LPAREN] = ACTIONS(3258), + [anon_sym_DOLLAR] = ACTIONS(3847), + [anon_sym_DASH_DASH] = ACTIONS(3262), + [anon_sym_DASH] = ACTIONS(3849), + [anon_sym_LBRACE] = ACTIONS(3851), + [anon_sym_DOT_DOT] = ACTIONS(4703), + [anon_sym_PLUS] = ACTIONS(3855), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3857), + [anon_sym_DOT_DOT_LT] = ACTIONS(3857), + [anon_sym_null] = ACTIONS(3859), + [anon_sym_true] = ACTIONS(3861), + [anon_sym_false] = ACTIONS(3861), + [aux_sym__val_number_decimal_token1] = ACTIONS(3863), + [aux_sym__val_number_decimal_token2] = ACTIONS(3865), + [anon_sym_DOT2] = ACTIONS(3867), + [aux_sym__val_number_decimal_token3] = ACTIONS(3869), + [aux_sym__val_number_token1] = ACTIONS(3284), + [aux_sym__val_number_token2] = ACTIONS(3284), + [aux_sym__val_number_token3] = ACTIONS(3284), + [aux_sym__val_number_token4] = ACTIONS(3871), + [aux_sym__val_number_token5] = ACTIONS(3871), + [aux_sym__val_number_token6] = ACTIONS(3871), + [anon_sym_0b] = ACTIONS(3288), + [anon_sym_0o] = ACTIONS(3290), + [anon_sym_0x] = ACTIONS(3290), + [sym_val_date] = ACTIONS(3873), + [anon_sym_DQUOTE] = ACTIONS(3294), + [sym__str_single_quotes] = ACTIONS(3296), + [sym__str_back_ticks] = ACTIONS(3296), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3875), [anon_sym_POUND] = ACTIONS(3), }, - [1055] = { - [sym__expr_unary_minus] = STATE(10486), - [sym_expr_parenthesized] = STATE(9327), - [sym_val_range] = STATE(10632), - [sym__val_range] = STATE(10567), - [sym__val_range_with_end] = STATE(10631), - [sym__value] = STATE(10632), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(9687), - [sym_val_variable] = STATE(5789), - [sym__var] = STATE(5205), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(7522), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(10444), - [sym_list_body] = STATE(11061), - [sym_val_entry] = STATE(10464), - [sym__list_item_expression] = STATE(10482), - [sym__list_item_starts_with_sign] = STATE(10484), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_short_flag] = STATE(10484), - [sym_long_flag] = STATE(10484), - [sym_long_flag_equals_value] = STATE(4310), - [sym__unquoted_in_list] = STATE(9820), - [sym__unquoted_in_list_with_expr] = STATE(10484), - [sym__unquoted_anonymous_prefix] = STATE(10279), - [sym_comment] = STATE(1055), - [aux_sym_list_body_repeat1] = STATE(1121), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_RBRACK] = ACTIONS(2036), - [anon_sym_LPAREN] = ACTIONS(1940), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(1950), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1952), - [anon_sym_DOT_DOT_LT] = ACTIONS(1952), - [anon_sym_null] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [aux_sym__val_number_decimal_token1] = ACTIONS(1958), - [aux_sym__val_number_decimal_token2] = ACTIONS(1960), - [anon_sym_DOT2] = ACTIONS(1962), - [aux_sym__val_number_decimal_token3] = ACTIONS(1964), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(1968), - [aux_sym__val_number_token5] = ACTIONS(1968), - [aux_sym__val_number_token6] = ACTIONS(1968), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(1699), - [anon_sym_out_GT] = ACTIONS(1699), - [anon_sym_e_GT] = ACTIONS(1699), - [anon_sym_o_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT] = ACTIONS(1699), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1701), - [anon_sym_POUND] = ACTIONS(3), + [1288] = { + [sym_comment] = STATE(1288), + [ts_builtin_sym_end] = ACTIONS(1022), + [anon_sym_export] = ACTIONS(1020), + [anon_sym_alias] = ACTIONS(1020), + [anon_sym_let] = ACTIONS(1020), + [anon_sym_let_DASHenv] = ACTIONS(1020), + [anon_sym_mut] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1020), + [sym_cmd_identifier] = ACTIONS(1020), + [anon_sym_LF] = ACTIONS(1022), + [anon_sym_def] = ACTIONS(1020), + [anon_sym_export_DASHenv] = ACTIONS(1020), + [anon_sym_extern] = ACTIONS(1020), + [anon_sym_module] = ACTIONS(1020), + [anon_sym_use] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_error] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1020), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_loop] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_match] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_DOT_DOT] = ACTIONS(1020), + [anon_sym_try] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_source] = ACTIONS(1020), + [anon_sym_source_DASHenv] = ACTIONS(1020), + [anon_sym_register] = ACTIONS(1020), + [anon_sym_hide] = ACTIONS(1020), + [anon_sym_hide_DASHenv] = ACTIONS(1020), + [anon_sym_overlay] = ACTIONS(1020), + [anon_sym_as] = ACTIONS(1020), + [anon_sym_where] = ACTIONS(1020), + [anon_sym_QMARK2] = ACTIONS(1020), + [anon_sym_not] = ACTIONS(1020), + [anon_sym_DOT] = ACTIONS(1020), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1020), + [anon_sym_DOT_DOT_LT] = ACTIONS(1020), + [anon_sym_null] = ACTIONS(1020), + [anon_sym_true] = ACTIONS(1020), + [anon_sym_false] = ACTIONS(1020), + [aux_sym__val_number_decimal_token1] = ACTIONS(1020), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [anon_sym_DOT2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1020), + [aux_sym__val_number_token1] = ACTIONS(1020), + [aux_sym__val_number_token2] = ACTIONS(1020), + [aux_sym__val_number_token3] = ACTIONS(1020), + [aux_sym__val_number_token4] = ACTIONS(1020), + [aux_sym__val_number_token5] = ACTIONS(1020), + [aux_sym__val_number_token6] = ACTIONS(1020), + [anon_sym_0b] = ACTIONS(1020), + [anon_sym_0o] = ACTIONS(1020), + [anon_sym_0x] = ACTIONS(1020), + [sym_val_date] = ACTIONS(1020), + [anon_sym_DQUOTE] = ACTIONS(1020), + [sym__str_single_quotes] = ACTIONS(1020), + [sym__str_back_ticks] = ACTIONS(1020), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1020), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1020), + [anon_sym_CARET] = ACTIONS(1020), + [anon_sym_POUND] = ACTIONS(113), }, - [1056] = { - [sym__expr_unary_minus] = STATE(10486), - [sym_expr_parenthesized] = STATE(9327), - [sym_val_range] = STATE(10632), - [sym__val_range] = STATE(10567), - [sym__val_range_with_end] = STATE(10631), - [sym__value] = STATE(10632), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(9687), - [sym_val_variable] = STATE(5789), - [sym__var] = STATE(5205), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(7522), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(6614), - [sym_list_body] = STATE(11164), - [sym_val_entry] = STATE(10464), - [sym__list_item_expression] = STATE(10482), - [sym__list_item_starts_with_sign] = STATE(10484), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_short_flag] = STATE(10484), - [sym_long_flag] = STATE(10484), - [sym_long_flag_equals_value] = STATE(4310), - [sym__unquoted_in_list] = STATE(9820), - [sym__unquoted_in_list_with_expr] = STATE(10484), - [sym__unquoted_anonymous_prefix] = STATE(10279), - [sym_comment] = STATE(1056), - [aux_sym_list_body_repeat1] = STATE(1121), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_RBRACK] = ACTIONS(2038), - [anon_sym_LPAREN] = ACTIONS(1940), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(1950), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1952), - [anon_sym_DOT_DOT_LT] = ACTIONS(1952), - [anon_sym_null] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [aux_sym__val_number_decimal_token1] = ACTIONS(1958), - [aux_sym__val_number_decimal_token2] = ACTIONS(1960), - [anon_sym_DOT2] = ACTIONS(1962), - [aux_sym__val_number_decimal_token3] = ACTIONS(1964), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(1968), - [aux_sym__val_number_token5] = ACTIONS(1968), - [aux_sym__val_number_token6] = ACTIONS(1968), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(1699), - [anon_sym_out_GT] = ACTIONS(1699), - [anon_sym_e_GT] = ACTIONS(1699), - [anon_sym_o_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT] = ACTIONS(1699), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1701), - [anon_sym_POUND] = ACTIONS(3), + [1289] = { + [sym_comment] = STATE(1289), + [ts_builtin_sym_end] = ACTIONS(1131), + [anon_sym_export] = ACTIONS(1129), + [anon_sym_alias] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_let_DASHenv] = ACTIONS(1129), + [anon_sym_mut] = ACTIONS(1129), + [anon_sym_const] = ACTIONS(1129), + [anon_sym_SEMI] = ACTIONS(1129), + [sym_cmd_identifier] = ACTIONS(1129), + [anon_sym_LF] = ACTIONS(1131), + [anon_sym_def] = ACTIONS(1129), + [anon_sym_export_DASHenv] = ACTIONS(1129), + [anon_sym_extern] = ACTIONS(1129), + [anon_sym_module] = ACTIONS(1129), + [anon_sym_use] = ACTIONS(1129), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(1129), + [anon_sym_DOLLAR] = ACTIONS(1129), + [anon_sym_error] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_break] = ACTIONS(1129), + [anon_sym_continue] = ACTIONS(1129), + [anon_sym_for] = ACTIONS(1129), + [anon_sym_loop] = ACTIONS(1129), + [anon_sym_while] = ACTIONS(1129), + [anon_sym_do] = ACTIONS(1129), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(1129), + [anon_sym_DOT_DOT] = ACTIONS(1129), + [anon_sym_try] = ACTIONS(1129), + [anon_sym_return] = ACTIONS(1129), + [anon_sym_source] = ACTIONS(1129), + [anon_sym_source_DASHenv] = ACTIONS(1129), + [anon_sym_register] = ACTIONS(1129), + [anon_sym_hide] = ACTIONS(1129), + [anon_sym_hide_DASHenv] = ACTIONS(1129), + [anon_sym_overlay] = ACTIONS(1129), + [anon_sym_as] = ACTIONS(1129), + [anon_sym_where] = ACTIONS(1129), + [anon_sym_not] = ACTIONS(1129), + [anon_sym_LPAREN2] = ACTIONS(3841), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1129), + [anon_sym_DOT_DOT_LT] = ACTIONS(1129), + [anon_sym_null] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1129), + [anon_sym_false] = ACTIONS(1129), + [aux_sym__val_number_decimal_token1] = ACTIONS(1129), + [aux_sym__val_number_decimal_token2] = ACTIONS(1129), + [anon_sym_DOT2] = ACTIONS(1129), + [aux_sym__val_number_decimal_token3] = ACTIONS(1129), + [aux_sym__val_number_token1] = ACTIONS(1129), + [aux_sym__val_number_token2] = ACTIONS(1129), + [aux_sym__val_number_token3] = ACTIONS(1129), + [aux_sym__val_number_token4] = ACTIONS(1129), + [aux_sym__val_number_token5] = ACTIONS(1129), + [aux_sym__val_number_token6] = ACTIONS(1129), + [anon_sym_0b] = ACTIONS(1129), + [anon_sym_0o] = ACTIONS(1129), + [anon_sym_0x] = ACTIONS(1129), + [sym_val_date] = ACTIONS(1129), + [anon_sym_DQUOTE] = ACTIONS(1129), + [sym__str_single_quotes] = ACTIONS(1129), + [sym__str_back_ticks] = ACTIONS(1129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1129), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1129), + [anon_sym_CARET] = ACTIONS(1129), + [aux_sym_unquoted_token6] = ACTIONS(1133), + [anon_sym_POUND] = ACTIONS(113), }, - [1057] = { - [sym__expr_unary_minus] = STATE(10486), - [sym_expr_parenthesized] = STATE(9327), - [sym_val_range] = STATE(10632), - [sym__val_range] = STATE(10567), - [sym__val_range_with_end] = STATE(10631), - [sym__value] = STATE(10632), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(9687), - [sym_val_variable] = STATE(5789), - [sym__var] = STATE(5205), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(7522), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(10431), - [sym_list_body] = STATE(10876), - [sym_val_entry] = STATE(10464), - [sym__list_item_expression] = STATE(10482), - [sym__list_item_starts_with_sign] = STATE(10484), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_short_flag] = STATE(10484), - [sym_long_flag] = STATE(10484), - [sym_long_flag_equals_value] = STATE(4310), - [sym__unquoted_in_list] = STATE(9820), - [sym__unquoted_in_list_with_expr] = STATE(10484), - [sym__unquoted_anonymous_prefix] = STATE(10279), - [sym_comment] = STATE(1057), - [aux_sym_list_body_repeat1] = STATE(1121), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_RBRACK] = ACTIONS(2040), - [anon_sym_LPAREN] = ACTIONS(1940), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(1950), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1952), - [anon_sym_DOT_DOT_LT] = ACTIONS(1952), - [anon_sym_null] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [aux_sym__val_number_decimal_token1] = ACTIONS(1958), - [aux_sym__val_number_decimal_token2] = ACTIONS(1960), - [anon_sym_DOT2] = ACTIONS(1962), - [aux_sym__val_number_decimal_token3] = ACTIONS(1964), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(1968), - [aux_sym__val_number_token5] = ACTIONS(1968), - [aux_sym__val_number_token6] = ACTIONS(1968), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(1699), - [anon_sym_out_GT] = ACTIONS(1699), - [anon_sym_e_GT] = ACTIONS(1699), - [anon_sym_o_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT] = ACTIONS(1699), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1701), + [1290] = { + [sym_comment] = STATE(1290), + [anon_sym_LBRACK] = ACTIONS(1026), + [anon_sym_COMMA] = ACTIONS(1026), + [anon_sym_LPAREN] = ACTIONS(1026), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_GT] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1026), + [anon_sym_RBRACE] = ACTIONS(1026), + [anon_sym__] = ACTIONS(1024), + [anon_sym_DOT_DOT] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(4705), + [anon_sym_STAR_STAR] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [anon_sym_SLASH] = ACTIONS(1024), + [anon_sym_mod] = ACTIONS(1026), + [anon_sym_SLASH_SLASH] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_bit_DASHshl] = ACTIONS(1026), + [anon_sym_bit_DASHshr] = ACTIONS(1026), + [anon_sym_EQ_EQ] = ACTIONS(1026), + [anon_sym_BANG_EQ] = ACTIONS(1026), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ] = ACTIONS(1026), + [anon_sym_GT_EQ] = ACTIONS(1026), + [anon_sym_not_DASHin] = ACTIONS(1026), + [anon_sym_starts_DASHwith] = ACTIONS(1026), + [anon_sym_ends_DASHwith] = ACTIONS(1026), + [anon_sym_EQ_TILDE] = ACTIONS(1026), + [anon_sym_BANG_TILDE] = ACTIONS(1026), + [anon_sym_bit_DASHand] = ACTIONS(1026), + [anon_sym_bit_DASHxor] = ACTIONS(1026), + [anon_sym_bit_DASHor] = ACTIONS(1026), + [anon_sym_and] = ACTIONS(1026), + [anon_sym_xor] = ACTIONS(1026), + [anon_sym_or] = ACTIONS(1026), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1026), + [anon_sym_DOT_DOT_LT] = ACTIONS(1026), + [anon_sym_null] = ACTIONS(1026), + [anon_sym_true] = ACTIONS(1026), + [anon_sym_false] = ACTIONS(1026), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1026), + [aux_sym__val_number_token1] = ACTIONS(1026), + [aux_sym__val_number_token2] = ACTIONS(1026), + [aux_sym__val_number_token3] = ACTIONS(1026), + [aux_sym__val_number_token4] = ACTIONS(1026), + [aux_sym__val_number_token5] = ACTIONS(1026), + [aux_sym__val_number_token6] = ACTIONS(1026), + [anon_sym_0b] = ACTIONS(1024), + [anon_sym_0o] = ACTIONS(1024), + [anon_sym_0x] = ACTIONS(1024), + [sym_val_date] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(1026), + [sym__str_single_quotes] = ACTIONS(1026), + [sym__str_back_ticks] = ACTIONS(1026), + [anon_sym_err_GT] = ACTIONS(1026), + [anon_sym_out_GT] = ACTIONS(1026), + [anon_sym_e_GT] = ACTIONS(1026), + [anon_sym_o_GT] = ACTIONS(1026), + [anon_sym_err_PLUSout_GT] = ACTIONS(1026), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1026), + [anon_sym_o_PLUSe_GT] = ACTIONS(1026), + [anon_sym_e_PLUSo_GT] = ACTIONS(1026), + [aux_sym_unquoted_token1] = ACTIONS(1024), [anon_sym_POUND] = ACTIONS(3), }, - [1058] = { - [sym__expr_unary_minus] = STATE(10486), - [sym_expr_parenthesized] = STATE(9327), - [sym_val_range] = STATE(10632), - [sym__val_range] = STATE(10567), - [sym__val_range_with_end] = STATE(10631), - [sym__value] = STATE(10632), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(9687), - [sym_val_variable] = STATE(5789), - [sym__var] = STATE(5205), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(7522), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(10369), - [sym_list_body] = STATE(10941), - [sym_val_entry] = STATE(10464), - [sym__list_item_expression] = STATE(10482), - [sym__list_item_starts_with_sign] = STATE(10484), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_short_flag] = STATE(10484), - [sym_long_flag] = STATE(10484), - [sym_long_flag_equals_value] = STATE(4310), - [sym__unquoted_in_list] = STATE(9820), - [sym__unquoted_in_list_with_expr] = STATE(10484), - [sym__unquoted_anonymous_prefix] = STATE(10279), - [sym_comment] = STATE(1058), - [aux_sym_list_body_repeat1] = STATE(1121), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_RBRACK] = ACTIONS(2042), - [anon_sym_LPAREN] = ACTIONS(1940), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(1950), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1952), - [anon_sym_DOT_DOT_LT] = ACTIONS(1952), - [anon_sym_null] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [aux_sym__val_number_decimal_token1] = ACTIONS(1958), - [aux_sym__val_number_decimal_token2] = ACTIONS(1960), - [anon_sym_DOT2] = ACTIONS(1962), - [aux_sym__val_number_decimal_token3] = ACTIONS(1964), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(1968), - [aux_sym__val_number_token5] = ACTIONS(1968), - [aux_sym__val_number_token6] = ACTIONS(1968), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(1699), - [anon_sym_out_GT] = ACTIONS(1699), - [anon_sym_e_GT] = ACTIONS(1699), - [anon_sym_o_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT] = ACTIONS(1699), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1701), - [anon_sym_POUND] = ACTIONS(3), + [1291] = { + [sym_comment] = STATE(1291), + [anon_sym_SEMI] = ACTIONS(1024), + [anon_sym_LF] = ACTIONS(1026), + [anon_sym_LBRACK] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_RPAREN] = ACTIONS(1024), + [anon_sym_PIPE] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_GT] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym_RBRACE] = ACTIONS(1024), + [anon_sym_DOT_DOT] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(4707), + [anon_sym_STAR_STAR] = ACTIONS(1024), + [anon_sym_PLUS_PLUS] = ACTIONS(1024), + [anon_sym_SLASH] = ACTIONS(1024), + [anon_sym_mod] = ACTIONS(1024), + [anon_sym_SLASH_SLASH] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_bit_DASHshl] = ACTIONS(1024), + [anon_sym_bit_DASHshr] = ACTIONS(1024), + [anon_sym_EQ_EQ] = ACTIONS(1024), + [anon_sym_BANG_EQ] = ACTIONS(1024), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ] = ACTIONS(1024), + [anon_sym_GT_EQ] = ACTIONS(1024), + [anon_sym_not_DASHin] = ACTIONS(1024), + [anon_sym_starts_DASHwith] = ACTIONS(1024), + [anon_sym_ends_DASHwith] = ACTIONS(1024), + [anon_sym_EQ_TILDE] = ACTIONS(1024), + [anon_sym_BANG_TILDE] = ACTIONS(1024), + [anon_sym_bit_DASHand] = ACTIONS(1024), + [anon_sym_bit_DASHxor] = ACTIONS(1024), + [anon_sym_bit_DASHor] = ACTIONS(1024), + [anon_sym_and] = ACTIONS(1024), + [anon_sym_xor] = ACTIONS(1024), + [anon_sym_or] = ACTIONS(1024), + [anon_sym_not] = ACTIONS(1024), + [anon_sym_DOT_DOT2] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1026), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1026), + [anon_sym_null] = ACTIONS(1024), + [anon_sym_true] = ACTIONS(1024), + [anon_sym_false] = ACTIONS(1024), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1024), + [aux_sym__val_number_token1] = ACTIONS(1024), + [aux_sym__val_number_token2] = ACTIONS(1024), + [aux_sym__val_number_token3] = ACTIONS(1024), + [aux_sym__val_number_token4] = ACTIONS(1024), + [aux_sym__val_number_token5] = ACTIONS(1024), + [aux_sym__val_number_token6] = ACTIONS(1024), + [anon_sym_0b] = ACTIONS(1024), + [anon_sym_0o] = ACTIONS(1024), + [anon_sym_0x] = ACTIONS(1024), + [sym_val_date] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym__str_single_quotes] = ACTIONS(1024), + [sym__str_back_ticks] = ACTIONS(1024), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1024), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1024), + [anon_sym_POUND] = ACTIONS(113), }, - [1059] = { - [sym__expr_unary_minus] = STATE(10486), - [sym_expr_parenthesized] = STATE(9327), - [sym_val_range] = STATE(10632), - [sym__val_range] = STATE(10567), - [sym__val_range_with_end] = STATE(10631), - [sym__value] = STATE(10632), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(9687), - [sym_val_variable] = STATE(5789), - [sym__var] = STATE(5205), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(7522), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(10430), - [sym_list_body] = STATE(11146), - [sym_val_entry] = STATE(10464), - [sym__list_item_expression] = STATE(10482), - [sym__list_item_starts_with_sign] = STATE(10484), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_short_flag] = STATE(10484), - [sym_long_flag] = STATE(10484), - [sym_long_flag_equals_value] = STATE(4310), - [sym__unquoted_in_list] = STATE(9820), - [sym__unquoted_in_list_with_expr] = STATE(10484), - [sym__unquoted_anonymous_prefix] = STATE(10279), - [sym_comment] = STATE(1059), - [aux_sym_list_body_repeat1] = STATE(1121), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_RBRACK] = ACTIONS(2044), - [anon_sym_LPAREN] = ACTIONS(1940), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(1950), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1952), - [anon_sym_DOT_DOT_LT] = ACTIONS(1952), - [anon_sym_null] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [aux_sym__val_number_decimal_token1] = ACTIONS(1958), - [aux_sym__val_number_decimal_token2] = ACTIONS(1960), - [anon_sym_DOT2] = ACTIONS(1962), - [aux_sym__val_number_decimal_token3] = ACTIONS(1964), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(1968), - [aux_sym__val_number_token5] = ACTIONS(1968), - [aux_sym__val_number_token6] = ACTIONS(1968), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(1699), - [anon_sym_out_GT] = ACTIONS(1699), - [anon_sym_e_GT] = ACTIONS(1699), - [anon_sym_o_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT] = ACTIONS(1699), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1701), - [anon_sym_POUND] = ACTIONS(3), + [1292] = { + [sym_comment] = STATE(1292), + [ts_builtin_sym_end] = ACTIONS(2358), + [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), + [anon_sym_SEMI] = ACTIONS(2356), + [sym_cmd_identifier] = ACTIONS(2356), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2356), + [anon_sym_DOLLAR] = ACTIONS(2356), + [anon_sym_error] = ACTIONS(2356), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_loop] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_match] = ACTIONS(2356), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_DOT_DOT] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_source] = ACTIONS(2356), + [anon_sym_source_DASHenv] = ACTIONS(2356), + [anon_sym_register] = 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_where] = ACTIONS(2356), + [anon_sym_not] = ACTIONS(2356), + [anon_sym_DOT] = ACTIONS(4709), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2356), + [anon_sym_DOT_DOT_LT] = ACTIONS(2356), + [aux_sym__immediate_decimal_token2] = ACTIONS(4711), + [anon_sym_null] = ACTIONS(2356), + [anon_sym_true] = ACTIONS(2356), + [anon_sym_false] = ACTIONS(2356), + [aux_sym__val_number_decimal_token1] = ACTIONS(2356), + [aux_sym__val_number_decimal_token2] = ACTIONS(2356), + [anon_sym_DOT2] = ACTIONS(2356), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2356), + [anon_sym_0o] = ACTIONS(2356), + [anon_sym_0x] = ACTIONS(2356), + [sym_val_date] = 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_CARET] = ACTIONS(2356), + [anon_sym_POUND] = ACTIONS(113), }, - [1060] = { - [sym__expr_unary_minus] = STATE(10486), - [sym_expr_parenthesized] = STATE(9327), - [sym_val_range] = STATE(10632), - [sym__val_range] = STATE(10567), - [sym__val_range_with_end] = STATE(10631), - [sym__value] = STATE(10632), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(9687), - [sym_val_variable] = STATE(5789), - [sym__var] = STATE(5205), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(7522), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(10396), - [sym_list_body] = STATE(11231), - [sym_val_entry] = STATE(10464), - [sym__list_item_expression] = STATE(10482), - [sym__list_item_starts_with_sign] = STATE(10484), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_short_flag] = STATE(10484), - [sym_long_flag] = STATE(10484), - [sym_long_flag_equals_value] = STATE(4310), - [sym__unquoted_in_list] = STATE(9820), - [sym__unquoted_in_list_with_expr] = STATE(10484), - [sym__unquoted_anonymous_prefix] = STATE(10279), - [sym_comment] = STATE(1060), - [aux_sym_list_body_repeat1] = STATE(1121), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_RBRACK] = ACTIONS(2046), - [anon_sym_LPAREN] = ACTIONS(1940), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(1950), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1952), - [anon_sym_DOT_DOT_LT] = ACTIONS(1952), - [anon_sym_null] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [aux_sym__val_number_decimal_token1] = ACTIONS(1958), - [aux_sym__val_number_decimal_token2] = ACTIONS(1960), - [anon_sym_DOT2] = ACTIONS(1962), - [aux_sym__val_number_decimal_token3] = ACTIONS(1964), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(1968), - [aux_sym__val_number_token5] = ACTIONS(1968), - [aux_sym__val_number_token6] = ACTIONS(1968), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(1699), - [anon_sym_out_GT] = ACTIONS(1699), - [anon_sym_e_GT] = ACTIONS(1699), - [anon_sym_o_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT] = ACTIONS(1699), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1701), - [anon_sym_POUND] = ACTIONS(3), + [1293] = { + [sym_comment] = STATE(1293), + [anon_sym_SEMI] = ACTIONS(1024), + [anon_sym_LF] = ACTIONS(1026), + [anon_sym_LBRACK] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_RPAREN] = ACTIONS(1024), + [anon_sym_PIPE] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_GT] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym_RBRACE] = ACTIONS(1024), + [anon_sym_DOT_DOT] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(4707), + [anon_sym_STAR_STAR] = ACTIONS(1024), + [anon_sym_PLUS_PLUS] = ACTIONS(1024), + [anon_sym_SLASH] = ACTIONS(1024), + [anon_sym_mod] = ACTIONS(1024), + [anon_sym_SLASH_SLASH] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_bit_DASHshl] = ACTIONS(1024), + [anon_sym_bit_DASHshr] = ACTIONS(1024), + [anon_sym_EQ_EQ] = ACTIONS(1024), + [anon_sym_BANG_EQ] = ACTIONS(1024), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ] = ACTIONS(1024), + [anon_sym_GT_EQ] = ACTIONS(1024), + [anon_sym_not_DASHin] = ACTIONS(1024), + [anon_sym_starts_DASHwith] = ACTIONS(1024), + [anon_sym_ends_DASHwith] = ACTIONS(1024), + [anon_sym_EQ_TILDE] = ACTIONS(1024), + [anon_sym_BANG_TILDE] = ACTIONS(1024), + [anon_sym_bit_DASHand] = ACTIONS(1024), + [anon_sym_bit_DASHxor] = ACTIONS(1024), + [anon_sym_bit_DASHor] = ACTIONS(1024), + [anon_sym_and] = ACTIONS(1024), + [anon_sym_xor] = ACTIONS(1024), + [anon_sym_or] = ACTIONS(1024), + [anon_sym_not] = ACTIONS(1024), + [anon_sym_DOT_DOT2] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1026), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1026), + [anon_sym_null] = ACTIONS(1024), + [anon_sym_true] = ACTIONS(1024), + [anon_sym_false] = ACTIONS(1024), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1024), + [aux_sym__val_number_token1] = ACTIONS(1024), + [aux_sym__val_number_token2] = ACTIONS(1024), + [aux_sym__val_number_token3] = ACTIONS(1024), + [aux_sym__val_number_token4] = ACTIONS(1024), + [aux_sym__val_number_token5] = ACTIONS(1024), + [aux_sym__val_number_token6] = ACTIONS(1024), + [anon_sym_0b] = ACTIONS(1024), + [anon_sym_0o] = ACTIONS(1024), + [anon_sym_0x] = ACTIONS(1024), + [sym_val_date] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym__str_single_quotes] = ACTIONS(1024), + [sym__str_back_ticks] = ACTIONS(1024), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1024), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1024), + [anon_sym_POUND] = ACTIONS(113), }, - [1061] = { - [sym__expr_unary_minus] = STATE(10486), - [sym_expr_parenthesized] = STATE(9327), - [sym_val_range] = STATE(10632), - [sym__val_range] = STATE(10567), - [sym__val_range_with_end] = STATE(10631), - [sym__value] = STATE(10632), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(9687), - [sym_val_variable] = STATE(5789), - [sym__var] = STATE(5205), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(7522), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(10388), - [sym_list_body] = STATE(11334), - [sym_val_entry] = STATE(10464), - [sym__list_item_expression] = STATE(10482), - [sym__list_item_starts_with_sign] = STATE(10484), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_short_flag] = STATE(10484), - [sym_long_flag] = STATE(10484), - [sym_long_flag_equals_value] = STATE(4310), - [sym__unquoted_in_list] = STATE(9820), - [sym__unquoted_in_list_with_expr] = STATE(10484), - [sym__unquoted_anonymous_prefix] = STATE(10279), - [sym_comment] = STATE(1061), - [aux_sym_list_body_repeat1] = STATE(1121), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_RBRACK] = ACTIONS(2048), - [anon_sym_LPAREN] = ACTIONS(1940), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(1950), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1952), - [anon_sym_DOT_DOT_LT] = ACTIONS(1952), - [anon_sym_null] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [aux_sym__val_number_decimal_token1] = ACTIONS(1958), - [aux_sym__val_number_decimal_token2] = ACTIONS(1960), - [anon_sym_DOT2] = ACTIONS(1962), - [aux_sym__val_number_decimal_token3] = ACTIONS(1964), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(1968), - [aux_sym__val_number_token5] = ACTIONS(1968), - [aux_sym__val_number_token6] = ACTIONS(1968), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(1699), - [anon_sym_out_GT] = ACTIONS(1699), - [anon_sym_e_GT] = ACTIONS(1699), - [anon_sym_o_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT] = ACTIONS(1699), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1701), + [1294] = { + [sym_comment] = STATE(1294), + [anon_sym_LBRACK] = ACTIONS(1026), + [anon_sym_COMMA] = ACTIONS(1026), + [anon_sym_LPAREN] = ACTIONS(1026), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_GT] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1026), + [anon_sym_RBRACE] = ACTIONS(1026), + [anon_sym__] = ACTIONS(1024), + [anon_sym_DOT_DOT] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(4705), + [anon_sym_STAR_STAR] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [anon_sym_SLASH] = ACTIONS(1024), + [anon_sym_mod] = ACTIONS(1026), + [anon_sym_SLASH_SLASH] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_bit_DASHshl] = ACTIONS(1026), + [anon_sym_bit_DASHshr] = ACTIONS(1026), + [anon_sym_EQ_EQ] = ACTIONS(1026), + [anon_sym_BANG_EQ] = ACTIONS(1026), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ] = ACTIONS(1026), + [anon_sym_GT_EQ] = ACTIONS(1026), + [anon_sym_not_DASHin] = ACTIONS(1026), + [anon_sym_starts_DASHwith] = ACTIONS(1026), + [anon_sym_ends_DASHwith] = ACTIONS(1026), + [anon_sym_EQ_TILDE] = ACTIONS(1026), + [anon_sym_BANG_TILDE] = ACTIONS(1026), + [anon_sym_bit_DASHand] = ACTIONS(1026), + [anon_sym_bit_DASHxor] = ACTIONS(1026), + [anon_sym_bit_DASHor] = ACTIONS(1026), + [anon_sym_and] = ACTIONS(1026), + [anon_sym_xor] = ACTIONS(1026), + [anon_sym_or] = ACTIONS(1026), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1026), + [anon_sym_DOT_DOT_LT] = ACTIONS(1026), + [anon_sym_null] = ACTIONS(1026), + [anon_sym_true] = ACTIONS(1026), + [anon_sym_false] = ACTIONS(1026), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1026), + [aux_sym__val_number_token1] = ACTIONS(1026), + [aux_sym__val_number_token2] = ACTIONS(1026), + [aux_sym__val_number_token3] = ACTIONS(1026), + [aux_sym__val_number_token4] = ACTIONS(1026), + [aux_sym__val_number_token5] = ACTIONS(1026), + [aux_sym__val_number_token6] = ACTIONS(1026), + [anon_sym_0b] = ACTIONS(1024), + [anon_sym_0o] = ACTIONS(1024), + [anon_sym_0x] = ACTIONS(1024), + [sym_val_date] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(1026), + [sym__str_single_quotes] = ACTIONS(1026), + [sym__str_back_ticks] = ACTIONS(1026), + [anon_sym_err_GT] = ACTIONS(1026), + [anon_sym_out_GT] = ACTIONS(1026), + [anon_sym_e_GT] = ACTIONS(1026), + [anon_sym_o_GT] = ACTIONS(1026), + [anon_sym_err_PLUSout_GT] = ACTIONS(1026), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1026), + [anon_sym_o_PLUSe_GT] = ACTIONS(1026), + [anon_sym_e_PLUSo_GT] = ACTIONS(1026), + [aux_sym_unquoted_token1] = ACTIONS(1024), [anon_sym_POUND] = ACTIONS(3), }, - [1062] = { - [sym__expr_unary_minus] = STATE(10486), - [sym_expr_parenthesized] = STATE(9327), - [sym_val_range] = STATE(10632), - [sym__val_range] = STATE(10567), - [sym__val_range_with_end] = STATE(10631), - [sym__value] = STATE(10632), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(9687), - [sym_val_variable] = STATE(5789), - [sym__var] = STATE(5205), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(7522), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(10400), - [sym_list_body] = STATE(10970), - [sym_val_entry] = STATE(10464), - [sym__list_item_expression] = STATE(10482), - [sym__list_item_starts_with_sign] = STATE(10484), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_short_flag] = STATE(10484), - [sym_long_flag] = STATE(10484), - [sym_long_flag_equals_value] = STATE(4310), - [sym__unquoted_in_list] = STATE(9820), - [sym__unquoted_in_list_with_expr] = STATE(10484), - [sym__unquoted_anonymous_prefix] = STATE(10279), - [sym_comment] = STATE(1062), - [aux_sym_list_body_repeat1] = STATE(1121), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_RBRACK] = ACTIONS(2050), - [anon_sym_LPAREN] = ACTIONS(1940), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(1950), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1952), - [anon_sym_DOT_DOT_LT] = ACTIONS(1952), - [anon_sym_null] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [aux_sym__val_number_decimal_token1] = ACTIONS(1958), - [aux_sym__val_number_decimal_token2] = ACTIONS(1960), - [anon_sym_DOT2] = ACTIONS(1962), - [aux_sym__val_number_decimal_token3] = ACTIONS(1964), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(1968), - [aux_sym__val_number_token5] = ACTIONS(1968), - [aux_sym__val_number_token6] = ACTIONS(1968), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(1699), - [anon_sym_out_GT] = ACTIONS(1699), - [anon_sym_e_GT] = ACTIONS(1699), - [anon_sym_o_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT] = ACTIONS(1699), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1701), + [1295] = { + [sym_comment] = STATE(1295), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_COMMA] = ACTIONS(1035), + [anon_sym_LPAREN] = ACTIONS(1035), + [anon_sym_DOLLAR] = ACTIONS(1035), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1033), + [anon_sym_in] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(1035), + [anon_sym_RBRACE] = ACTIONS(1035), + [anon_sym__] = ACTIONS(1033), + [anon_sym_DOT_DOT] = ACTIONS(1033), + [anon_sym_STAR] = ACTIONS(1033), + [anon_sym_QMARK2] = ACTIONS(1035), + [anon_sym_STAR_STAR] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1035), + [anon_sym_SLASH] = ACTIONS(1033), + [anon_sym_mod] = ACTIONS(1035), + [anon_sym_SLASH_SLASH] = ACTIONS(1035), + [anon_sym_PLUS] = ACTIONS(1033), + [anon_sym_bit_DASHshl] = ACTIONS(1035), + [anon_sym_bit_DASHshr] = ACTIONS(1035), + [anon_sym_EQ_EQ] = ACTIONS(1035), + [anon_sym_BANG_EQ] = ACTIONS(1035), + [anon_sym_LT2] = ACTIONS(1033), + [anon_sym_LT_EQ] = ACTIONS(1035), + [anon_sym_GT_EQ] = ACTIONS(1035), + [anon_sym_not_DASHin] = ACTIONS(1035), + [anon_sym_starts_DASHwith] = ACTIONS(1035), + [anon_sym_ends_DASHwith] = ACTIONS(1035), + [anon_sym_EQ_TILDE] = ACTIONS(1035), + [anon_sym_BANG_TILDE] = ACTIONS(1035), + [anon_sym_bit_DASHand] = ACTIONS(1035), + [anon_sym_bit_DASHxor] = ACTIONS(1035), + [anon_sym_bit_DASHor] = ACTIONS(1035), + [anon_sym_and] = ACTIONS(1035), + [anon_sym_xor] = ACTIONS(1035), + [anon_sym_or] = ACTIONS(1035), + [anon_sym_DOT] = ACTIONS(1033), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1035), + [anon_sym_DOT_DOT_LT] = ACTIONS(1035), + [anon_sym_null] = ACTIONS(1035), + [anon_sym_true] = ACTIONS(1035), + [anon_sym_false] = ACTIONS(1035), + [aux_sym__val_number_decimal_token1] = ACTIONS(1033), + [aux_sym__val_number_decimal_token2] = ACTIONS(1035), + [anon_sym_DOT2] = ACTIONS(1033), + [aux_sym__val_number_decimal_token3] = ACTIONS(1035), + [aux_sym__val_number_token1] = ACTIONS(1035), + [aux_sym__val_number_token2] = ACTIONS(1035), + [aux_sym__val_number_token3] = ACTIONS(1035), + [aux_sym__val_number_token4] = ACTIONS(1035), + [aux_sym__val_number_token5] = ACTIONS(1035), + [aux_sym__val_number_token6] = ACTIONS(1035), + [anon_sym_0b] = ACTIONS(1033), + [anon_sym_0o] = ACTIONS(1033), + [anon_sym_0x] = ACTIONS(1033), + [sym_val_date] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(1035), + [sym__str_single_quotes] = ACTIONS(1035), + [sym__str_back_ticks] = ACTIONS(1035), + [anon_sym_err_GT] = ACTIONS(1035), + [anon_sym_out_GT] = ACTIONS(1035), + [anon_sym_e_GT] = ACTIONS(1035), + [anon_sym_o_GT] = ACTIONS(1035), + [anon_sym_err_PLUSout_GT] = ACTIONS(1035), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1035), + [anon_sym_o_PLUSe_GT] = ACTIONS(1035), + [anon_sym_e_PLUSo_GT] = ACTIONS(1035), + [aux_sym_unquoted_token1] = ACTIONS(1033), [anon_sym_POUND] = ACTIONS(3), }, - [1063] = { - [sym__expr_parenthesized_immediate] = STATE(1441), - [sym__immediate_decimal] = STATE(1248), - [sym_val_variable] = STATE(1441), - [sym__var] = STATE(1206), - [sym_comment] = STATE(1063), - [anon_sym_export] = ACTIONS(1920), - [anon_sym_alias] = ACTIONS(1920), - [anon_sym_let] = ACTIONS(1920), - [anon_sym_let_DASHenv] = ACTIONS(1920), - [anon_sym_mut] = ACTIONS(1920), - [anon_sym_const] = ACTIONS(1920), - [anon_sym_SEMI] = ACTIONS(1920), - [sym_cmd_identifier] = ACTIONS(1920), - [anon_sym_LF] = ACTIONS(1922), - [anon_sym_def] = ACTIONS(1920), - [anon_sym_export_DASHenv] = ACTIONS(1920), - [anon_sym_extern] = ACTIONS(1920), - [anon_sym_module] = ACTIONS(1920), - [anon_sym_use] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1920), - [anon_sym_RPAREN] = ACTIONS(1920), - [anon_sym_DOLLAR] = ACTIONS(1794), - [anon_sym_error] = ACTIONS(1920), - [anon_sym_DASH_DASH] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1920), - [anon_sym_break] = ACTIONS(1920), - [anon_sym_continue] = ACTIONS(1920), - [anon_sym_for] = ACTIONS(1920), - [anon_sym_loop] = ACTIONS(1920), - [anon_sym_while] = ACTIONS(1920), - [anon_sym_do] = ACTIONS(1920), - [anon_sym_if] = ACTIONS(1920), - [anon_sym_match] = ACTIONS(1920), - [anon_sym_LBRACE] = ACTIONS(1920), - [anon_sym_RBRACE] = ACTIONS(1920), - [anon_sym_DOT_DOT] = ACTIONS(1920), - [anon_sym_try] = ACTIONS(1920), - [anon_sym_return] = ACTIONS(1920), - [anon_sym_source] = ACTIONS(1920), - [anon_sym_source_DASHenv] = ACTIONS(1920), - [anon_sym_register] = ACTIONS(1920), - [anon_sym_hide] = ACTIONS(1920), - [anon_sym_hide_DASHenv] = ACTIONS(1920), - [anon_sym_overlay] = ACTIONS(1920), - [anon_sym_as] = ACTIONS(1920), - [anon_sym_where] = ACTIONS(1920), - [anon_sym_not] = ACTIONS(1920), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_DOT] = ACTIONS(2052), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1920), - [anon_sym_DOT_DOT_LT] = ACTIONS(1920), - [aux_sym__immediate_decimal_token1] = ACTIONS(1800), - [aux_sym__immediate_decimal_token3] = ACTIONS(1800), - [aux_sym__immediate_decimal_token4] = ACTIONS(1802), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_true] = ACTIONS(1920), - [anon_sym_false] = ACTIONS(1920), - [aux_sym__val_number_decimal_token1] = ACTIONS(1920), - [aux_sym__val_number_decimal_token2] = ACTIONS(1920), - [anon_sym_DOT2] = ACTIONS(1920), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_token1] = ACTIONS(1920), - [aux_sym__val_number_token2] = ACTIONS(1920), - [aux_sym__val_number_token3] = ACTIONS(1920), - [aux_sym__val_number_token4] = ACTIONS(1920), - [aux_sym__val_number_token5] = ACTIONS(1920), - [aux_sym__val_number_token6] = ACTIONS(1920), - [anon_sym_0b] = ACTIONS(1920), - [anon_sym_0o] = ACTIONS(1920), - [anon_sym_0x] = ACTIONS(1920), - [sym_val_date] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym__str_single_quotes] = ACTIONS(1920), - [sym__str_back_ticks] = ACTIONS(1920), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1920), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1920), - [anon_sym_CARET] = ACTIONS(1920), - [aux_sym_unquoted_token2] = ACTIONS(1934), + [1296] = { + [sym_comment] = STATE(1296), + [anon_sym_export] = ACTIONS(1047), + [anon_sym_alias] = ACTIONS(1047), + [anon_sym_let] = ACTIONS(1047), + [anon_sym_let_DASHenv] = ACTIONS(1047), + [anon_sym_mut] = ACTIONS(1047), + [anon_sym_const] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1047), + [sym_cmd_identifier] = ACTIONS(1047), + [anon_sym_LF] = ACTIONS(1049), + [anon_sym_def] = ACTIONS(1047), + [anon_sym_export_DASHenv] = ACTIONS(1047), + [anon_sym_extern] = ACTIONS(1047), + [anon_sym_module] = ACTIONS(1047), + [anon_sym_use] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1047), + [anon_sym_RPAREN] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1047), + [anon_sym_error] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_break] = ACTIONS(1047), + [anon_sym_continue] = ACTIONS(1047), + [anon_sym_for] = ACTIONS(1047), + [anon_sym_loop] = ACTIONS(1047), + [anon_sym_while] = ACTIONS(1047), + [anon_sym_do] = ACTIONS(1047), + [anon_sym_if] = ACTIONS(1047), + [anon_sym_match] = ACTIONS(1047), + [anon_sym_LBRACE] = ACTIONS(1047), + [anon_sym_RBRACE] = ACTIONS(1047), + [anon_sym_DOT_DOT] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1047), + [anon_sym_return] = ACTIONS(1047), + [anon_sym_source] = ACTIONS(1047), + [anon_sym_source_DASHenv] = ACTIONS(1047), + [anon_sym_register] = ACTIONS(1047), + [anon_sym_hide] = ACTIONS(1047), + [anon_sym_hide_DASHenv] = ACTIONS(1047), + [anon_sym_overlay] = ACTIONS(1047), + [anon_sym_as] = ACTIONS(1047), + [anon_sym_where] = ACTIONS(1047), + [anon_sym_not] = ACTIONS(1047), + [anon_sym_DOT] = ACTIONS(1047), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1047), + [anon_sym_DOT_DOT_LT] = ACTIONS(1047), + [anon_sym_null] = ACTIONS(1047), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [aux_sym__val_number_decimal_token1] = ACTIONS(1047), + [aux_sym__val_number_decimal_token2] = ACTIONS(1047), + [anon_sym_DOT2] = ACTIONS(1047), + [aux_sym__val_number_decimal_token3] = ACTIONS(1047), + [aux_sym__val_number_token1] = ACTIONS(1047), + [aux_sym__val_number_token2] = ACTIONS(1047), + [aux_sym__val_number_token3] = ACTIONS(1047), + [aux_sym__val_number_token4] = ACTIONS(1047), + [aux_sym__val_number_token5] = ACTIONS(1047), + [aux_sym__val_number_token6] = ACTIONS(1047), + [anon_sym_0b] = ACTIONS(1047), + [anon_sym_0o] = ACTIONS(1047), + [anon_sym_0x] = ACTIONS(1047), + [sym_val_date] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1047), + [sym__str_single_quotes] = ACTIONS(1047), + [sym__str_back_ticks] = ACTIONS(1047), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1047), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1047), + [anon_sym_CARET] = ACTIONS(1047), [anon_sym_POUND] = ACTIONS(113), }, - [1064] = { - [sym__expr_unary_minus] = STATE(10486), - [sym_expr_parenthesized] = STATE(9327), - [sym_val_range] = STATE(10632), - [sym__val_range] = STATE(10567), - [sym__val_range_with_end] = STATE(10631), - [sym__value] = STATE(10632), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(9687), - [sym_val_variable] = STATE(5789), - [sym__var] = STATE(5205), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(7522), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(10402), - [sym_list_body] = STATE(11164), - [sym_val_entry] = STATE(10464), - [sym__list_item_expression] = STATE(10482), - [sym__list_item_starts_with_sign] = STATE(10484), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_short_flag] = STATE(10484), - [sym_long_flag] = STATE(10484), - [sym_long_flag_equals_value] = STATE(4310), - [sym__unquoted_in_list] = STATE(9820), - [sym__unquoted_in_list_with_expr] = STATE(10484), - [sym__unquoted_anonymous_prefix] = STATE(10279), - [sym_comment] = STATE(1064), - [aux_sym_list_body_repeat1] = STATE(1121), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_RBRACK] = ACTIONS(2038), - [anon_sym_LPAREN] = ACTIONS(1940), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(1950), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1952), - [anon_sym_DOT_DOT_LT] = ACTIONS(1952), - [anon_sym_null] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [aux_sym__val_number_decimal_token1] = ACTIONS(1958), - [aux_sym__val_number_decimal_token2] = ACTIONS(1960), - [anon_sym_DOT2] = ACTIONS(1962), - [aux_sym__val_number_decimal_token3] = ACTIONS(1964), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(1968), - [aux_sym__val_number_token5] = ACTIONS(1968), - [aux_sym__val_number_token6] = ACTIONS(1968), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(1699), - [anon_sym_out_GT] = ACTIONS(1699), - [anon_sym_e_GT] = ACTIONS(1699), - [anon_sym_o_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT] = ACTIONS(1699), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1701), - [anon_sym_POUND] = ACTIONS(3), + [1297] = { + [sym__expr_parenthesized_immediate] = STATE(10434), + [sym_comment] = STATE(1297), + [ts_builtin_sym_end] = ACTIONS(4344), + [anon_sym_export] = ACTIONS(4342), + [anon_sym_alias] = ACTIONS(4342), + [anon_sym_let] = ACTIONS(4342), + [anon_sym_let_DASHenv] = ACTIONS(4342), + [anon_sym_mut] = ACTIONS(4342), + [anon_sym_const] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4342), + [sym_cmd_identifier] = ACTIONS(4342), + [anon_sym_LF] = ACTIONS(4344), + [anon_sym_def] = ACTIONS(4342), + [anon_sym_export_DASHenv] = ACTIONS(4342), + [anon_sym_extern] = ACTIONS(4342), + [anon_sym_module] = ACTIONS(4342), + [anon_sym_use] = ACTIONS(4342), + [anon_sym_LBRACK] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4342), + [anon_sym_DOLLAR] = ACTIONS(4342), + [anon_sym_error] = ACTIONS(4342), + [anon_sym_DASH_DASH] = ACTIONS(4342), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_break] = ACTIONS(4342), + [anon_sym_continue] = ACTIONS(4342), + [anon_sym_for] = ACTIONS(4342), + [anon_sym_loop] = ACTIONS(4342), + [anon_sym_while] = ACTIONS(4342), + [anon_sym_do] = ACTIONS(4342), + [anon_sym_if] = ACTIONS(4342), + [anon_sym_match] = ACTIONS(4342), + [anon_sym_LBRACE] = ACTIONS(4342), + [anon_sym_DOT_DOT] = ACTIONS(4342), + [anon_sym_try] = ACTIONS(4342), + [anon_sym_return] = ACTIONS(4342), + [anon_sym_source] = ACTIONS(4342), + [anon_sym_source_DASHenv] = ACTIONS(4342), + [anon_sym_register] = ACTIONS(4342), + [anon_sym_hide] = ACTIONS(4342), + [anon_sym_hide_DASHenv] = ACTIONS(4342), + [anon_sym_overlay] = ACTIONS(4342), + [anon_sym_as] = ACTIONS(4342), + [anon_sym_where] = ACTIONS(4342), + [anon_sym_not] = ACTIONS(4342), + [anon_sym_LPAREN2] = ACTIONS(2187), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4342), + [anon_sym_DOT_DOT_LT] = ACTIONS(4342), + [anon_sym_null] = ACTIONS(4342), + [anon_sym_true] = ACTIONS(4342), + [anon_sym_false] = ACTIONS(4342), + [aux_sym__val_number_decimal_token1] = ACTIONS(4342), + [aux_sym__val_number_decimal_token2] = ACTIONS(4342), + [anon_sym_DOT2] = ACTIONS(4342), + [aux_sym__val_number_decimal_token3] = ACTIONS(4342), + [aux_sym__val_number_token1] = ACTIONS(4342), + [aux_sym__val_number_token2] = ACTIONS(4342), + [aux_sym__val_number_token3] = ACTIONS(4342), + [aux_sym__val_number_token4] = ACTIONS(4342), + [aux_sym__val_number_token5] = ACTIONS(4342), + [aux_sym__val_number_token6] = ACTIONS(4342), + [anon_sym_0b] = ACTIONS(4342), + [anon_sym_0o] = ACTIONS(4342), + [anon_sym_0x] = ACTIONS(4342), + [sym_val_date] = ACTIONS(4342), + [anon_sym_DQUOTE] = ACTIONS(4342), + [sym__str_single_quotes] = ACTIONS(4342), + [sym__str_back_ticks] = ACTIONS(4342), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4342), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4342), + [anon_sym_POUND] = ACTIONS(113), }, - [1065] = { - [sym__expr_unary_minus] = STATE(10486), - [sym_expr_parenthesized] = STATE(9327), - [sym_val_range] = STATE(10632), - [sym__val_range] = STATE(10567), - [sym__val_range_with_end] = STATE(10631), - [sym__value] = STATE(10632), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(9687), - [sym_val_variable] = STATE(5789), - [sym__var] = STATE(5205), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(7522), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(10405), - [sym_list_body] = STATE(11195), - [sym_val_entry] = STATE(10464), - [sym__list_item_expression] = STATE(10482), - [sym__list_item_starts_with_sign] = STATE(10484), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_short_flag] = STATE(10484), - [sym_long_flag] = STATE(10484), - [sym_long_flag_equals_value] = STATE(4310), - [sym__unquoted_in_list] = STATE(9820), - [sym__unquoted_in_list_with_expr] = STATE(10484), - [sym__unquoted_anonymous_prefix] = STATE(10279), - [sym_comment] = STATE(1065), - [aux_sym_list_body_repeat1] = STATE(1121), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_RBRACK] = ACTIONS(2054), - [anon_sym_LPAREN] = ACTIONS(1940), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(1950), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1952), - [anon_sym_DOT_DOT_LT] = ACTIONS(1952), - [anon_sym_null] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [aux_sym__val_number_decimal_token1] = ACTIONS(1958), - [aux_sym__val_number_decimal_token2] = ACTIONS(1960), - [anon_sym_DOT2] = ACTIONS(1962), - [aux_sym__val_number_decimal_token3] = ACTIONS(1964), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(1968), - [aux_sym__val_number_token5] = ACTIONS(1968), - [aux_sym__val_number_token6] = ACTIONS(1968), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(1699), - [anon_sym_out_GT] = ACTIONS(1699), - [anon_sym_e_GT] = ACTIONS(1699), - [anon_sym_o_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT] = ACTIONS(1699), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1701), + [1298] = { + [sym__match_pattern_expression] = STATE(3963), + [sym__match_pattern_value] = STATE(4065), + [sym__match_pattern_list] = STATE(3899), + [sym__match_pattern_rest] = STATE(10625), + [sym__match_pattern_record] = STATE(4002), + [sym__expr_unary_minus] = STATE(4029), + [sym_expr_parenthesized] = STATE(3478), + [sym_val_range] = STATE(4065), + [sym__val_range] = STATE(10108), + [sym_val_nothing] = STATE(3928), + [sym_val_bool] = STATE(3848), + [sym_val_variable] = STATE(3481), + [sym__var] = STATE(3303), + [sym_val_number] = STATE(3928), + [sym__val_number_decimal] = STATE(3274), + [sym__val_number] = STATE(4008), + [sym_val_duration] = STATE(3928), + [sym_val_filesize] = STATE(3928), + [sym_val_binary] = STATE(3928), + [sym_val_string] = STATE(3928), + [sym__str_double_quotes] = STATE(3913), + [sym__list_item_starts_with_sign] = STATE(3915), + [sym_val_table] = STATE(3928), + [sym_short_flag] = STATE(3915), + [sym_long_flag] = STATE(3915), + [sym_long_flag_equals_value] = STATE(4030), + [sym__unquoted_in_list] = STATE(3915), + [sym__unquoted_anonymous_prefix] = STATE(10784), + [sym_comment] = STATE(1298), + [aux_sym__match_pattern_list_repeat1] = STATE(1849), + [anon_sym_LBRACK] = ACTIONS(4699), + [anon_sym_RBRACK] = ACTIONS(4713), + [anon_sym_LPAREN] = ACTIONS(3258), + [anon_sym_DOLLAR] = ACTIONS(3847), + [anon_sym_DASH_DASH] = ACTIONS(3262), + [anon_sym_DASH] = ACTIONS(3849), + [anon_sym_LBRACE] = ACTIONS(3851), + [anon_sym_DOT_DOT] = ACTIONS(4715), + [anon_sym_PLUS] = ACTIONS(3855), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3857), + [anon_sym_DOT_DOT_LT] = ACTIONS(3857), + [anon_sym_null] = ACTIONS(3859), + [anon_sym_true] = ACTIONS(3861), + [anon_sym_false] = ACTIONS(3861), + [aux_sym__val_number_decimal_token1] = ACTIONS(3863), + [aux_sym__val_number_decimal_token2] = ACTIONS(3865), + [anon_sym_DOT2] = ACTIONS(3867), + [aux_sym__val_number_decimal_token3] = ACTIONS(3869), + [aux_sym__val_number_token1] = ACTIONS(3284), + [aux_sym__val_number_token2] = ACTIONS(3284), + [aux_sym__val_number_token3] = ACTIONS(3284), + [aux_sym__val_number_token4] = ACTIONS(3871), + [aux_sym__val_number_token5] = ACTIONS(3871), + [aux_sym__val_number_token6] = ACTIONS(3871), + [anon_sym_0b] = ACTIONS(3288), + [anon_sym_0o] = ACTIONS(3290), + [anon_sym_0x] = ACTIONS(3290), + [sym_val_date] = ACTIONS(3873), + [anon_sym_DQUOTE] = ACTIONS(3294), + [sym__str_single_quotes] = ACTIONS(3296), + [sym__str_back_ticks] = ACTIONS(3296), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3875), [anon_sym_POUND] = ACTIONS(3), }, - [1066] = { - [sym__expr_unary_minus] = STATE(10486), - [sym_expr_parenthesized] = STATE(9327), - [sym_val_range] = STATE(10632), - [sym__val_range] = STATE(10567), - [sym__val_range_with_end] = STATE(10631), - [sym__value] = STATE(10632), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(9687), - [sym_val_variable] = STATE(5789), - [sym__var] = STATE(5205), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(7522), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(10406), - [sym_list_body] = STATE(11358), - [sym_val_entry] = STATE(10464), - [sym__list_item_expression] = STATE(10482), - [sym__list_item_starts_with_sign] = STATE(10484), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_short_flag] = STATE(10484), - [sym_long_flag] = STATE(10484), - [sym_long_flag_equals_value] = STATE(4310), - [sym__unquoted_in_list] = STATE(9820), - [sym__unquoted_in_list_with_expr] = STATE(10484), - [sym__unquoted_anonymous_prefix] = STATE(10279), - [sym_comment] = STATE(1066), - [aux_sym_list_body_repeat1] = STATE(1121), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_RBRACK] = ACTIONS(2056), - [anon_sym_LPAREN] = ACTIONS(1940), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(1950), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1952), - [anon_sym_DOT_DOT_LT] = ACTIONS(1952), - [anon_sym_null] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [aux_sym__val_number_decimal_token1] = ACTIONS(1958), - [aux_sym__val_number_decimal_token2] = ACTIONS(1960), - [anon_sym_DOT2] = ACTIONS(1962), - [aux_sym__val_number_decimal_token3] = ACTIONS(1964), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(1968), - [aux_sym__val_number_token5] = ACTIONS(1968), - [aux_sym__val_number_token6] = ACTIONS(1968), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(1699), - [anon_sym_out_GT] = ACTIONS(1699), - [anon_sym_e_GT] = ACTIONS(1699), - [anon_sym_o_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT] = ACTIONS(1699), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1701), - [anon_sym_POUND] = ACTIONS(3), + [1299] = { + [sym__expr_parenthesized_immediate] = STATE(10434), + [sym_comment] = STATE(1299), + [ts_builtin_sym_end] = ACTIONS(4396), + [anon_sym_export] = ACTIONS(4394), + [anon_sym_alias] = ACTIONS(4394), + [anon_sym_let] = ACTIONS(4394), + [anon_sym_let_DASHenv] = ACTIONS(4394), + [anon_sym_mut] = ACTIONS(4394), + [anon_sym_const] = ACTIONS(4394), + [anon_sym_SEMI] = ACTIONS(4394), + [sym_cmd_identifier] = ACTIONS(4394), + [anon_sym_LF] = ACTIONS(4396), + [anon_sym_def] = ACTIONS(4394), + [anon_sym_export_DASHenv] = ACTIONS(4394), + [anon_sym_extern] = ACTIONS(4394), + [anon_sym_module] = ACTIONS(4394), + [anon_sym_use] = ACTIONS(4394), + [anon_sym_LBRACK] = ACTIONS(4394), + [anon_sym_LPAREN] = ACTIONS(4394), + [anon_sym_DOLLAR] = ACTIONS(4394), + [anon_sym_error] = ACTIONS(4394), + [anon_sym_DASH_DASH] = ACTIONS(4394), + [anon_sym_DASH] = ACTIONS(4394), + [anon_sym_break] = ACTIONS(4394), + [anon_sym_continue] = ACTIONS(4394), + [anon_sym_for] = ACTIONS(4394), + [anon_sym_loop] = ACTIONS(4394), + [anon_sym_while] = ACTIONS(4394), + [anon_sym_do] = ACTIONS(4394), + [anon_sym_if] = ACTIONS(4394), + [anon_sym_match] = ACTIONS(4394), + [anon_sym_LBRACE] = ACTIONS(4394), + [anon_sym_DOT_DOT] = ACTIONS(4394), + [anon_sym_try] = ACTIONS(4394), + [anon_sym_return] = ACTIONS(4394), + [anon_sym_source] = ACTIONS(4394), + [anon_sym_source_DASHenv] = ACTIONS(4394), + [anon_sym_register] = ACTIONS(4394), + [anon_sym_hide] = ACTIONS(4394), + [anon_sym_hide_DASHenv] = ACTIONS(4394), + [anon_sym_overlay] = ACTIONS(4394), + [anon_sym_as] = ACTIONS(4394), + [anon_sym_where] = ACTIONS(4394), + [anon_sym_not] = ACTIONS(4394), + [anon_sym_LPAREN2] = ACTIONS(2187), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4394), + [anon_sym_DOT_DOT_LT] = ACTIONS(4394), + [anon_sym_null] = ACTIONS(4394), + [anon_sym_true] = ACTIONS(4394), + [anon_sym_false] = ACTIONS(4394), + [aux_sym__val_number_decimal_token1] = ACTIONS(4394), + [aux_sym__val_number_decimal_token2] = ACTIONS(4394), + [anon_sym_DOT2] = ACTIONS(4394), + [aux_sym__val_number_decimal_token3] = ACTIONS(4394), + [aux_sym__val_number_token1] = ACTIONS(4394), + [aux_sym__val_number_token2] = ACTIONS(4394), + [aux_sym__val_number_token3] = ACTIONS(4394), + [aux_sym__val_number_token4] = ACTIONS(4394), + [aux_sym__val_number_token5] = ACTIONS(4394), + [aux_sym__val_number_token6] = ACTIONS(4394), + [anon_sym_0b] = ACTIONS(4394), + [anon_sym_0o] = ACTIONS(4394), + [anon_sym_0x] = ACTIONS(4394), + [sym_val_date] = ACTIONS(4394), + [anon_sym_DQUOTE] = ACTIONS(4394), + [sym__str_single_quotes] = ACTIONS(4394), + [sym__str_back_ticks] = ACTIONS(4394), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4394), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4394), + [anon_sym_CARET] = ACTIONS(4394), + [anon_sym_POUND] = ACTIONS(113), }, - [1067] = { - [sym__expr_unary_minus] = STATE(10486), - [sym_expr_parenthesized] = STATE(9327), - [sym_val_range] = STATE(10632), - [sym__val_range] = STATE(10567), - [sym__val_range_with_end] = STATE(10631), - [sym__value] = STATE(10632), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(9687), - [sym_val_variable] = STATE(5789), - [sym__var] = STATE(5205), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(7522), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(10414), - [sym_list_body] = STATE(10798), - [sym_val_entry] = STATE(10464), - [sym__list_item_expression] = STATE(10482), - [sym__list_item_starts_with_sign] = STATE(10484), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_short_flag] = STATE(10484), - [sym_long_flag] = STATE(10484), - [sym_long_flag_equals_value] = STATE(4310), - [sym__unquoted_in_list] = STATE(9820), - [sym__unquoted_in_list_with_expr] = STATE(10484), - [sym__unquoted_anonymous_prefix] = STATE(10279), - [sym_comment] = STATE(1067), - [aux_sym_list_body_repeat1] = STATE(1121), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_RBRACK] = ACTIONS(2058), - [anon_sym_LPAREN] = ACTIONS(1940), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(1950), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1952), - [anon_sym_DOT_DOT_LT] = ACTIONS(1952), - [anon_sym_null] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [aux_sym__val_number_decimal_token1] = ACTIONS(1958), - [aux_sym__val_number_decimal_token2] = ACTIONS(1960), - [anon_sym_DOT2] = ACTIONS(1962), - [aux_sym__val_number_decimal_token3] = ACTIONS(1964), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(1968), - [aux_sym__val_number_token5] = ACTIONS(1968), - [aux_sym__val_number_token6] = ACTIONS(1968), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(1699), - [anon_sym_out_GT] = ACTIONS(1699), - [anon_sym_e_GT] = ACTIONS(1699), - [anon_sym_o_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT] = ACTIONS(1699), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1701), - [anon_sym_POUND] = ACTIONS(3), + [1300] = { + [sym_comment] = STATE(1300), + [ts_builtin_sym_end] = ACTIONS(922), + [anon_sym_export] = ACTIONS(920), + [anon_sym_alias] = ACTIONS(920), + [anon_sym_let] = ACTIONS(920), + [anon_sym_let_DASHenv] = ACTIONS(920), + [anon_sym_mut] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(920), + [sym_cmd_identifier] = ACTIONS(920), + [anon_sym_LF] = ACTIONS(922), + [anon_sym_def] = ACTIONS(920), + [anon_sym_export_DASHenv] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym_module] = ACTIONS(920), + [anon_sym_use] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_error] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_loop] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_match] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_try] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_source] = ACTIONS(920), + [anon_sym_source_DASHenv] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_hide] = ACTIONS(920), + [anon_sym_hide_DASHenv] = ACTIONS(920), + [anon_sym_overlay] = ACTIONS(920), + [anon_sym_as] = ACTIONS(920), + [anon_sym_where] = ACTIONS(920), + [anon_sym_not] = ACTIONS(920), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [aux_sym__immediate_decimal_token1] = ACTIONS(1151), + [anon_sym_null] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), + [anon_sym_CARET] = ACTIONS(920), + [aux_sym_unquoted_token2] = ACTIONS(4717), + [anon_sym_POUND] = ACTIONS(113), }, - [1068] = { - [sym_expr_parenthesized] = STATE(8037), - [sym_val_range] = STATE(9006), - [sym__val_range] = STATE(10544), - [sym__val_range_with_end] = STATE(10550), - [sym__value] = STATE(9006), - [sym_val_nothing] = STATE(6237), - [sym_val_bool] = STATE(8476), - [sym_val_variable] = STATE(5275), - [sym__var] = STATE(4701), - [sym_val_number] = STATE(6237), - [sym__val_number_decimal] = STATE(7007), - [sym__val_number] = STATE(6253), - [sym_val_duration] = STATE(6237), - [sym_val_filesize] = STATE(6237), - [sym_val_binary] = STATE(6237), - [sym_val_string] = STATE(6237), - [sym__str_double_quotes] = STATE(6028), - [sym_val_interpolated] = STATE(6237), - [sym__inter_single_quotes] = STATE(6107), - [sym__inter_double_quotes] = STATE(6113), - [sym_val_list] = STATE(6237), - [sym_val_record] = STATE(6237), - [sym_val_table] = STATE(6237), - [sym_val_closure] = STATE(6237), - [sym__cmd_arg] = STATE(9140), - [sym_redirection] = STATE(9150), - [sym__flag] = STATE(9188), - [sym_short_flag] = STATE(9302), - [sym_long_flag] = STATE(9302), - [sym_long_flag_equals_value] = STATE(8874), - [sym_unquoted] = STATE(8461), - [sym__unquoted_with_expr] = STATE(9277), - [sym__unquoted_anonymous_prefix] = STATE(10227), - [sym_comment] = STATE(1068), - [ts_builtin_sym_end] = ACTIONS(1914), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_LF] = ACTIONS(1868), - [anon_sym_LBRACK] = ACTIONS(2060), - [anon_sym_LPAREN] = ACTIONS(2062), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_DOLLAR] = ACTIONS(2064), - [anon_sym_DASH_DASH] = ACTIONS(2066), - [anon_sym_DASH] = ACTIONS(2068), - [anon_sym_LBRACE] = ACTIONS(2070), - [anon_sym_DOT_DOT] = ACTIONS(2072), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2074), - [anon_sym_DOT_DOT_LT] = ACTIONS(2074), - [anon_sym_null] = ACTIONS(2076), - [anon_sym_true] = ACTIONS(2078), - [anon_sym_false] = ACTIONS(2078), - [aux_sym__val_number_decimal_token1] = ACTIONS(2080), - [aux_sym__val_number_decimal_token2] = ACTIONS(2080), - [anon_sym_DOT2] = ACTIONS(2082), - [aux_sym__val_number_decimal_token3] = ACTIONS(2084), - [aux_sym__val_number_token1] = ACTIONS(2086), - [aux_sym__val_number_token2] = ACTIONS(2086), - [aux_sym__val_number_token3] = ACTIONS(2086), - [aux_sym__val_number_token4] = ACTIONS(2088), - [aux_sym__val_number_token5] = ACTIONS(2088), - [aux_sym__val_number_token6] = ACTIONS(2088), - [anon_sym_0b] = ACTIONS(2090), - [anon_sym_0o] = ACTIONS(2092), - [anon_sym_0x] = ACTIONS(2092), - [sym_val_date] = ACTIONS(2094), - [anon_sym_DQUOTE] = ACTIONS(2096), - [sym__str_single_quotes] = ACTIONS(2098), - [sym__str_back_ticks] = ACTIONS(2098), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2100), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2102), - [aux_sym_command_token1] = ACTIONS(1914), - [anon_sym_err_GT] = ACTIONS(2104), - [anon_sym_out_GT] = ACTIONS(2104), - [anon_sym_e_GT] = ACTIONS(2104), - [anon_sym_o_GT] = ACTIONS(2104), - [anon_sym_err_PLUSout_GT] = ACTIONS(2104), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2104), - [anon_sym_o_PLUSe_GT] = ACTIONS(2104), - [anon_sym_e_PLUSo_GT] = ACTIONS(2104), - [aux_sym_unquoted_token1] = ACTIONS(2106), + [1301] = { + [sym__expr_parenthesized_immediate] = STATE(10434), + [sym_comment] = STATE(1301), + [ts_builtin_sym_end] = ACTIONS(4424), + [anon_sym_export] = ACTIONS(4422), + [anon_sym_alias] = ACTIONS(4422), + [anon_sym_let] = ACTIONS(4422), + [anon_sym_let_DASHenv] = ACTIONS(4422), + [anon_sym_mut] = ACTIONS(4422), + [anon_sym_const] = ACTIONS(4422), + [anon_sym_SEMI] = ACTIONS(4422), + [sym_cmd_identifier] = ACTIONS(4422), + [anon_sym_LF] = ACTIONS(4424), + [anon_sym_def] = ACTIONS(4422), + [anon_sym_export_DASHenv] = ACTIONS(4422), + [anon_sym_extern] = ACTIONS(4422), + [anon_sym_module] = ACTIONS(4422), + [anon_sym_use] = ACTIONS(4422), + [anon_sym_LBRACK] = ACTIONS(4422), + [anon_sym_LPAREN] = ACTIONS(4422), + [anon_sym_DOLLAR] = ACTIONS(4422), + [anon_sym_error] = ACTIONS(4422), + [anon_sym_DASH_DASH] = ACTIONS(4422), + [anon_sym_DASH] = ACTIONS(4422), + [anon_sym_break] = ACTIONS(4422), + [anon_sym_continue] = ACTIONS(4422), + [anon_sym_for] = ACTIONS(4422), + [anon_sym_loop] = ACTIONS(4422), + [anon_sym_while] = ACTIONS(4422), + [anon_sym_do] = ACTIONS(4422), + [anon_sym_if] = ACTIONS(4422), + [anon_sym_match] = ACTIONS(4422), + [anon_sym_LBRACE] = ACTIONS(4422), + [anon_sym_DOT_DOT] = ACTIONS(4422), + [anon_sym_try] = ACTIONS(4422), + [anon_sym_return] = ACTIONS(4422), + [anon_sym_source] = ACTIONS(4422), + [anon_sym_source_DASHenv] = ACTIONS(4422), + [anon_sym_register] = ACTIONS(4422), + [anon_sym_hide] = ACTIONS(4422), + [anon_sym_hide_DASHenv] = ACTIONS(4422), + [anon_sym_overlay] = ACTIONS(4422), + [anon_sym_as] = ACTIONS(4422), + [anon_sym_where] = ACTIONS(4422), + [anon_sym_not] = ACTIONS(4422), + [anon_sym_LPAREN2] = ACTIONS(2187), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4422), + [anon_sym_DOT_DOT_LT] = ACTIONS(4422), + [anon_sym_null] = ACTIONS(4422), + [anon_sym_true] = ACTIONS(4422), + [anon_sym_false] = ACTIONS(4422), + [aux_sym__val_number_decimal_token1] = ACTIONS(4422), + [aux_sym__val_number_decimal_token2] = ACTIONS(4422), + [anon_sym_DOT2] = ACTIONS(4422), + [aux_sym__val_number_decimal_token3] = ACTIONS(4422), + [aux_sym__val_number_token1] = ACTIONS(4422), + [aux_sym__val_number_token2] = ACTIONS(4422), + [aux_sym__val_number_token3] = ACTIONS(4422), + [aux_sym__val_number_token4] = ACTIONS(4422), + [aux_sym__val_number_token5] = ACTIONS(4422), + [aux_sym__val_number_token6] = ACTIONS(4422), + [anon_sym_0b] = ACTIONS(4422), + [anon_sym_0o] = ACTIONS(4422), + [anon_sym_0x] = ACTIONS(4422), + [sym_val_date] = ACTIONS(4422), + [anon_sym_DQUOTE] = ACTIONS(4422), + [sym__str_single_quotes] = ACTIONS(4422), + [sym__str_back_ticks] = ACTIONS(4422), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4422), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4422), + [anon_sym_CARET] = ACTIONS(4422), [anon_sym_POUND] = ACTIONS(113), }, - [1069] = { - [sym__expr_parenthesized_immediate] = STATE(1777), - [sym__immediate_decimal] = STATE(1592), - [sym_val_variable] = STATE(1777), - [sym__var] = STATE(1373), - [sym_comment] = STATE(1069), - [anon_sym_export] = ACTIONS(1920), - [anon_sym_alias] = ACTIONS(1920), - [anon_sym_let] = ACTIONS(1920), - [anon_sym_let_DASHenv] = ACTIONS(1920), - [anon_sym_mut] = ACTIONS(1920), - [anon_sym_const] = ACTIONS(1920), - [anon_sym_SEMI] = ACTIONS(1920), - [sym_cmd_identifier] = ACTIONS(1920), - [anon_sym_LF] = ACTIONS(1922), - [anon_sym_def] = ACTIONS(1920), - [anon_sym_export_DASHenv] = ACTIONS(1920), - [anon_sym_extern] = ACTIONS(1920), - [anon_sym_module] = ACTIONS(1920), - [anon_sym_use] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1920), - [anon_sym_RPAREN] = ACTIONS(1920), - [anon_sym_DOLLAR] = ACTIONS(1924), - [anon_sym_error] = ACTIONS(1920), - [anon_sym_DASH_DASH] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1920), - [anon_sym_break] = ACTIONS(1920), - [anon_sym_continue] = ACTIONS(1920), - [anon_sym_for] = ACTIONS(1920), - [anon_sym_loop] = ACTIONS(1920), - [anon_sym_while] = ACTIONS(1920), - [anon_sym_do] = ACTIONS(1920), - [anon_sym_if] = ACTIONS(1920), - [anon_sym_match] = ACTIONS(1920), - [anon_sym_LBRACE] = ACTIONS(1920), - [anon_sym_RBRACE] = ACTIONS(1920), - [anon_sym_DOT_DOT] = ACTIONS(1920), - [anon_sym_try] = ACTIONS(1920), - [anon_sym_return] = ACTIONS(1920), - [anon_sym_source] = ACTIONS(1920), - [anon_sym_source_DASHenv] = ACTIONS(1920), - [anon_sym_register] = ACTIONS(1920), - [anon_sym_hide] = ACTIONS(1920), - [anon_sym_hide_DASHenv] = ACTIONS(1920), - [anon_sym_overlay] = ACTIONS(1920), - [anon_sym_as] = ACTIONS(1920), - [anon_sym_where] = ACTIONS(1920), - [anon_sym_not] = ACTIONS(1920), - [anon_sym_LPAREN2] = ACTIONS(1926), - [anon_sym_DOT] = ACTIONS(2008), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1920), - [anon_sym_DOT_DOT_LT] = ACTIONS(1920), - [aux_sym__immediate_decimal_token1] = ACTIONS(2010), - [aux_sym__immediate_decimal_token3] = ACTIONS(2010), - [aux_sym__immediate_decimal_token4] = ACTIONS(2012), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_true] = ACTIONS(1920), - [anon_sym_false] = ACTIONS(1920), - [aux_sym__val_number_decimal_token1] = ACTIONS(1920), - [aux_sym__val_number_decimal_token2] = ACTIONS(1920), - [anon_sym_DOT2] = ACTIONS(1920), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_token1] = ACTIONS(1920), - [aux_sym__val_number_token2] = ACTIONS(1920), - [aux_sym__val_number_token3] = ACTIONS(1920), - [aux_sym__val_number_token4] = ACTIONS(1920), - [aux_sym__val_number_token5] = ACTIONS(1920), - [aux_sym__val_number_token6] = ACTIONS(1920), - [anon_sym_0b] = ACTIONS(1920), - [anon_sym_0o] = ACTIONS(1920), - [anon_sym_0x] = ACTIONS(1920), - [sym_val_date] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym__str_single_quotes] = ACTIONS(1920), - [sym__str_back_ticks] = ACTIONS(1920), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1920), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1920), - [anon_sym_CARET] = ACTIONS(1920), - [aux_sym_unquoted_token2] = ACTIONS(1934), + [1302] = { + [sym__expr_parenthesized_immediate] = STATE(10434), + [sym_comment] = STATE(1302), + [ts_builtin_sym_end] = ACTIONS(4428), + [anon_sym_export] = ACTIONS(4426), + [anon_sym_alias] = ACTIONS(4426), + [anon_sym_let] = ACTIONS(4426), + [anon_sym_let_DASHenv] = ACTIONS(4426), + [anon_sym_mut] = ACTIONS(4426), + [anon_sym_const] = ACTIONS(4426), + [anon_sym_SEMI] = ACTIONS(4426), + [sym_cmd_identifier] = ACTIONS(4426), + [anon_sym_LF] = ACTIONS(4428), + [anon_sym_def] = ACTIONS(4426), + [anon_sym_export_DASHenv] = ACTIONS(4426), + [anon_sym_extern] = ACTIONS(4426), + [anon_sym_module] = ACTIONS(4426), + [anon_sym_use] = ACTIONS(4426), + [anon_sym_LBRACK] = ACTIONS(4426), + [anon_sym_LPAREN] = ACTIONS(4426), + [anon_sym_DOLLAR] = ACTIONS(4426), + [anon_sym_error] = ACTIONS(4426), + [anon_sym_DASH_DASH] = ACTIONS(4426), + [anon_sym_DASH] = ACTIONS(4426), + [anon_sym_break] = ACTIONS(4426), + [anon_sym_continue] = ACTIONS(4426), + [anon_sym_for] = ACTIONS(4426), + [anon_sym_loop] = ACTIONS(4426), + [anon_sym_while] = ACTIONS(4426), + [anon_sym_do] = ACTIONS(4426), + [anon_sym_if] = ACTIONS(4426), + [anon_sym_match] = ACTIONS(4426), + [anon_sym_LBRACE] = ACTIONS(4426), + [anon_sym_DOT_DOT] = ACTIONS(4426), + [anon_sym_try] = ACTIONS(4426), + [anon_sym_return] = ACTIONS(4426), + [anon_sym_source] = ACTIONS(4426), + [anon_sym_source_DASHenv] = ACTIONS(4426), + [anon_sym_register] = ACTIONS(4426), + [anon_sym_hide] = ACTIONS(4426), + [anon_sym_hide_DASHenv] = ACTIONS(4426), + [anon_sym_overlay] = ACTIONS(4426), + [anon_sym_as] = ACTIONS(4426), + [anon_sym_where] = ACTIONS(4426), + [anon_sym_not] = ACTIONS(4426), + [anon_sym_LPAREN2] = ACTIONS(2187), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4426), + [anon_sym_DOT_DOT_LT] = ACTIONS(4426), + [anon_sym_null] = ACTIONS(4426), + [anon_sym_true] = ACTIONS(4426), + [anon_sym_false] = ACTIONS(4426), + [aux_sym__val_number_decimal_token1] = ACTIONS(4426), + [aux_sym__val_number_decimal_token2] = ACTIONS(4426), + [anon_sym_DOT2] = ACTIONS(4426), + [aux_sym__val_number_decimal_token3] = ACTIONS(4426), + [aux_sym__val_number_token1] = ACTIONS(4426), + [aux_sym__val_number_token2] = ACTIONS(4426), + [aux_sym__val_number_token3] = ACTIONS(4426), + [aux_sym__val_number_token4] = ACTIONS(4426), + [aux_sym__val_number_token5] = ACTIONS(4426), + [aux_sym__val_number_token6] = ACTIONS(4426), + [anon_sym_0b] = ACTIONS(4426), + [anon_sym_0o] = ACTIONS(4426), + [anon_sym_0x] = ACTIONS(4426), + [sym_val_date] = ACTIONS(4426), + [anon_sym_DQUOTE] = ACTIONS(4426), + [sym__str_single_quotes] = ACTIONS(4426), + [sym__str_back_ticks] = ACTIONS(4426), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4426), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4426), + [anon_sym_CARET] = ACTIONS(4426), [anon_sym_POUND] = ACTIONS(113), }, - [1070] = { - [sym__ctrl_expression_parenthesized] = STATE(10259), - [sym_ctrl_do] = STATE(9529), - [sym_ctrl_if_parenthesized] = STATE(9529), - [sym_ctrl_match] = STATE(9529), - [sym_ctrl_try_parenthesized] = STATE(9529), - [sym_ctrl_return] = STATE(9529), - [sym_pipe_element_parenthesized] = STATE(4338), - [sym_where_command] = STATE(10275), - [sym__expression] = STATE(10275), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(5342), - [sym__var] = STATE(4755), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__command_parenthesized_body] = STATE(10276), - [sym_comment] = STATE(1070), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1070), - [sym_cmd_identifier] = ACTIONS(2108), - [anon_sym_LBRACK] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2114), - [anon_sym_DOLLAR] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2120), - [anon_sym_break] = ACTIONS(2123), - [anon_sym_continue] = ACTIONS(2126), - [anon_sym_do] = ACTIONS(2129), - [anon_sym_if] = ACTIONS(2132), - [anon_sym_match] = ACTIONS(2135), - [anon_sym_LBRACE] = ACTIONS(2138), - [anon_sym_DOT_DOT] = ACTIONS(2141), - [anon_sym_try] = ACTIONS(2144), - [anon_sym_return] = ACTIONS(2147), - [anon_sym_where] = ACTIONS(2150), - [anon_sym_not] = ACTIONS(2153), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2156), - [anon_sym_DOT_DOT_LT] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2159), - [anon_sym_true] = ACTIONS(2162), - [anon_sym_false] = ACTIONS(2162), - [aux_sym__val_number_decimal_token1] = ACTIONS(2165), - [aux_sym__val_number_decimal_token2] = ACTIONS(2168), - [anon_sym_DOT2] = ACTIONS(2171), - [aux_sym__val_number_decimal_token3] = ACTIONS(2174), - [aux_sym__val_number_token1] = ACTIONS(2177), - [aux_sym__val_number_token2] = ACTIONS(2177), - [aux_sym__val_number_token3] = ACTIONS(2177), - [aux_sym__val_number_token4] = ACTIONS(2180), - [aux_sym__val_number_token5] = ACTIONS(2177), - [aux_sym__val_number_token6] = ACTIONS(2180), - [anon_sym_0b] = ACTIONS(2183), - [anon_sym_0o] = ACTIONS(2186), - [anon_sym_0x] = ACTIONS(2186), - [sym_val_date] = ACTIONS(2189), - [anon_sym_DQUOTE] = ACTIONS(2192), - [sym__str_single_quotes] = ACTIONS(2195), - [sym__str_back_ticks] = ACTIONS(2195), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2198), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2201), - [anon_sym_CARET] = ACTIONS(2204), - [anon_sym_POUND] = ACTIONS(3), + [1303] = { + [sym_path] = STATE(2080), + [sym_comment] = STATE(1303), + [aux_sym_cell_path_repeat1] = STATE(1312), + [ts_builtin_sym_end] = ACTIONS(1012), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [sym_cmd_identifier] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT] = ACTIONS(4719), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_null] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym__val_number_decimal_token1] = ACTIONS(1010), + [aux_sym__val_number_decimal_token2] = ACTIONS(1010), + [anon_sym_DOT2] = ACTIONS(1010), + [aux_sym__val_number_decimal_token3] = 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(1010), + [aux_sym__val_number_token5] = ACTIONS(1010), + [aux_sym__val_number_token6] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [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_CARET] = ACTIONS(1010), + [anon_sym_POUND] = ACTIONS(113), }, - [1071] = { - [sym__expr_unary_minus] = STATE(10486), - [sym_expr_parenthesized] = STATE(9327), - [sym_val_range] = STATE(10632), - [sym__val_range] = STATE(10567), - [sym__val_range_with_end] = STATE(10631), - [sym__value] = STATE(10632), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(9687), - [sym_val_variable] = STATE(5789), - [sym__var] = STATE(5205), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(7522), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(10399), - [sym_list_body] = STATE(11048), - [sym_val_entry] = STATE(10464), - [sym__list_item_expression] = STATE(10482), - [sym__list_item_starts_with_sign] = STATE(10484), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_short_flag] = STATE(10484), - [sym_long_flag] = STATE(10484), - [sym_long_flag_equals_value] = STATE(4310), - [sym__unquoted_in_list] = STATE(9820), - [sym__unquoted_in_list_with_expr] = STATE(10484), - [sym__unquoted_anonymous_prefix] = STATE(10279), - [sym_comment] = STATE(1071), - [aux_sym_list_body_repeat1] = STATE(1121), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_RBRACK] = ACTIONS(2207), - [anon_sym_LPAREN] = ACTIONS(1940), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(1950), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1952), - [anon_sym_DOT_DOT_LT] = ACTIONS(1952), - [anon_sym_null] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [aux_sym__val_number_decimal_token1] = ACTIONS(1958), - [aux_sym__val_number_decimal_token2] = ACTIONS(1960), - [anon_sym_DOT2] = ACTIONS(1962), - [aux_sym__val_number_decimal_token3] = ACTIONS(1964), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(1968), - [aux_sym__val_number_token5] = ACTIONS(1968), - [aux_sym__val_number_token6] = ACTIONS(1968), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(1699), - [anon_sym_out_GT] = ACTIONS(1699), - [anon_sym_e_GT] = ACTIONS(1699), - [anon_sym_o_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT] = ACTIONS(1699), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1701), - [anon_sym_POUND] = ACTIONS(3), + [1304] = { + [sym_comment] = STATE(1304), + [anon_sym_LBRACK] = ACTIONS(938), + [anon_sym_COMMA] = ACTIONS(938), + [anon_sym_RBRACK] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(938), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_in] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_STAR_STAR] = ACTIONS(938), + [anon_sym_PLUS_PLUS] = ACTIONS(938), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(938), + [anon_sym_SLASH_SLASH] = ACTIONS(938), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_bit_DASHshl] = ACTIONS(938), + [anon_sym_bit_DASHshr] = ACTIONS(938), + [anon_sym_EQ_EQ] = ACTIONS(938), + [anon_sym_BANG_EQ] = ACTIONS(938), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(938), + [anon_sym_GT_EQ] = ACTIONS(938), + [anon_sym_not_DASHin] = ACTIONS(938), + [anon_sym_starts_DASHwith] = ACTIONS(938), + [anon_sym_ends_DASHwith] = ACTIONS(938), + [anon_sym_EQ_TILDE] = ACTIONS(938), + [anon_sym_BANG_TILDE] = ACTIONS(938), + [anon_sym_bit_DASHand] = ACTIONS(938), + [anon_sym_bit_DASHxor] = ACTIONS(938), + [anon_sym_bit_DASHor] = ACTIONS(938), + [anon_sym_and] = ACTIONS(938), + [anon_sym_xor] = ACTIONS(938), + [anon_sym_or] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ] = ACTIONS(938), + [anon_sym_DOT_DOT_LT] = ACTIONS(938), + [anon_sym_null] = ACTIONS(938), + [anon_sym_true] = ACTIONS(938), + [anon_sym_false] = ACTIONS(938), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(938), + [anon_sym_DOT2] = ACTIONS(938), + [aux_sym__val_number_decimal_token3] = ACTIONS(938), + [aux_sym__val_number_token1] = ACTIONS(938), + [aux_sym__val_number_token2] = ACTIONS(938), + [aux_sym__val_number_token3] = ACTIONS(938), + [aux_sym__val_number_token4] = ACTIONS(938), + [aux_sym__val_number_token5] = ACTIONS(938), + [aux_sym__val_number_token6] = ACTIONS(938), + [anon_sym_0b] = ACTIONS(938), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym__str_single_quotes] = ACTIONS(938), + [sym__str_back_ticks] = ACTIONS(938), + [sym__entry_separator] = ACTIONS(940), + [anon_sym_err_GT] = ACTIONS(938), + [anon_sym_out_GT] = ACTIONS(938), + [anon_sym_e_GT] = ACTIONS(938), + [anon_sym_o_GT] = ACTIONS(938), + [anon_sym_err_PLUSout_GT] = ACTIONS(938), + [anon_sym_out_PLUSerr_GT] = ACTIONS(938), + [anon_sym_o_PLUSe_GT] = ACTIONS(938), + [anon_sym_e_PLUSo_GT] = ACTIONS(938), + [aux_sym_unquoted_token5] = ACTIONS(2396), + [aux_sym__unquoted_in_list_token1] = ACTIONS(938), + [anon_sym_POUND] = ACTIONS(113), }, - [1072] = { - [sym__expr_unary_minus] = STATE(10486), - [sym_expr_parenthesized] = STATE(9327), - [sym_val_range] = STATE(10632), - [sym__val_range] = STATE(10567), - [sym__val_range_with_end] = STATE(10631), - [sym__value] = STATE(10632), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(9687), - [sym_val_variable] = STATE(5789), - [sym__var] = STATE(5205), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(7522), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(10374), - [sym_list_body] = STATE(11011), - [sym_val_entry] = STATE(10464), - [sym__list_item_expression] = STATE(10482), - [sym__list_item_starts_with_sign] = STATE(10484), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_short_flag] = STATE(10484), - [sym_long_flag] = STATE(10484), - [sym_long_flag_equals_value] = STATE(4310), - [sym__unquoted_in_list] = STATE(9820), - [sym__unquoted_in_list_with_expr] = STATE(10484), - [sym__unquoted_anonymous_prefix] = STATE(10279), - [sym_comment] = STATE(1072), - [aux_sym_list_body_repeat1] = STATE(1121), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_RBRACK] = ACTIONS(2209), - [anon_sym_LPAREN] = ACTIONS(1940), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(1950), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1952), - [anon_sym_DOT_DOT_LT] = ACTIONS(1952), - [anon_sym_null] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [aux_sym__val_number_decimal_token1] = ACTIONS(1958), - [aux_sym__val_number_decimal_token2] = ACTIONS(1960), - [anon_sym_DOT2] = ACTIONS(1962), - [aux_sym__val_number_decimal_token3] = ACTIONS(1964), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(1968), - [aux_sym__val_number_token5] = ACTIONS(1968), - [aux_sym__val_number_token6] = ACTIONS(1968), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(1699), - [anon_sym_out_GT] = ACTIONS(1699), - [anon_sym_e_GT] = ACTIONS(1699), - [anon_sym_o_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT] = ACTIONS(1699), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1701), - [anon_sym_POUND] = ACTIONS(3), + [1305] = { + [sym_comment] = STATE(1305), + [anon_sym_SEMI] = ACTIONS(1033), + [anon_sym_LF] = ACTIONS(1035), + [anon_sym_LBRACK] = ACTIONS(1033), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_RPAREN] = ACTIONS(1033), + [anon_sym_PIPE] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1033), + [anon_sym_in] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1033), + [anon_sym_DOT_DOT] = ACTIONS(1033), + [anon_sym_STAR] = ACTIONS(1033), + [anon_sym_QMARK2] = ACTIONS(1033), + [anon_sym_STAR_STAR] = ACTIONS(1033), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_SLASH] = ACTIONS(1033), + [anon_sym_mod] = ACTIONS(1033), + [anon_sym_SLASH_SLASH] = ACTIONS(1033), + [anon_sym_PLUS] = ACTIONS(1033), + [anon_sym_bit_DASHshl] = ACTIONS(1033), + [anon_sym_bit_DASHshr] = ACTIONS(1033), + [anon_sym_EQ_EQ] = ACTIONS(1033), + [anon_sym_BANG_EQ] = ACTIONS(1033), + [anon_sym_LT2] = ACTIONS(1033), + [anon_sym_LT_EQ] = ACTIONS(1033), + [anon_sym_GT_EQ] = ACTIONS(1033), + [anon_sym_not_DASHin] = ACTIONS(1033), + [anon_sym_starts_DASHwith] = ACTIONS(1033), + [anon_sym_ends_DASHwith] = ACTIONS(1033), + [anon_sym_EQ_TILDE] = ACTIONS(1033), + [anon_sym_BANG_TILDE] = ACTIONS(1033), + [anon_sym_bit_DASHand] = ACTIONS(1033), + [anon_sym_bit_DASHxor] = ACTIONS(1033), + [anon_sym_bit_DASHor] = ACTIONS(1033), + [anon_sym_and] = ACTIONS(1033), + [anon_sym_xor] = ACTIONS(1033), + [anon_sym_or] = ACTIONS(1033), + [anon_sym_not] = ACTIONS(1033), + [anon_sym_DOT_DOT2] = ACTIONS(1033), + [anon_sym_DOT] = ACTIONS(1033), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1033), + [anon_sym_DOT_DOT_LT] = ACTIONS(1033), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1035), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1035), + [anon_sym_null] = ACTIONS(1033), + [anon_sym_true] = ACTIONS(1033), + [anon_sym_false] = ACTIONS(1033), + [aux_sym__val_number_decimal_token1] = ACTIONS(1033), + [aux_sym__val_number_decimal_token2] = ACTIONS(1033), + [anon_sym_DOT2] = ACTIONS(1033), + [aux_sym__val_number_decimal_token3] = ACTIONS(1033), + [aux_sym__val_number_token1] = ACTIONS(1033), + [aux_sym__val_number_token2] = ACTIONS(1033), + [aux_sym__val_number_token3] = ACTIONS(1033), + [aux_sym__val_number_token4] = ACTIONS(1033), + [aux_sym__val_number_token5] = ACTIONS(1033), + [aux_sym__val_number_token6] = ACTIONS(1033), + [anon_sym_0b] = ACTIONS(1033), + [anon_sym_0o] = ACTIONS(1033), + [anon_sym_0x] = ACTIONS(1033), + [sym_val_date] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [sym__str_single_quotes] = ACTIONS(1033), + [sym__str_back_ticks] = ACTIONS(1033), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1033), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1033), + [anon_sym_POUND] = ACTIONS(113), }, - [1073] = { - [sym__expr_unary_minus] = STATE(10486), - [sym_expr_parenthesized] = STATE(9327), - [sym_val_range] = STATE(10632), - [sym__val_range] = STATE(10567), - [sym__val_range_with_end] = STATE(10631), - [sym__value] = STATE(10632), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(9687), - [sym_val_variable] = STATE(5789), - [sym__var] = STATE(5205), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(7522), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(10417), - [sym_list_body] = STATE(10854), - [sym_val_entry] = STATE(10464), - [sym__list_item_expression] = STATE(10482), - [sym__list_item_starts_with_sign] = STATE(10484), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_short_flag] = STATE(10484), - [sym_long_flag] = STATE(10484), - [sym_long_flag_equals_value] = STATE(4310), - [sym__unquoted_in_list] = STATE(9820), - [sym__unquoted_in_list_with_expr] = STATE(10484), - [sym__unquoted_anonymous_prefix] = STATE(10279), - [sym_comment] = STATE(1073), - [aux_sym_list_body_repeat1] = STATE(1121), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_RBRACK] = ACTIONS(2211), - [anon_sym_LPAREN] = ACTIONS(1940), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(1950), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1952), - [anon_sym_DOT_DOT_LT] = ACTIONS(1952), - [anon_sym_null] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [aux_sym__val_number_decimal_token1] = ACTIONS(1958), - [aux_sym__val_number_decimal_token2] = ACTIONS(1960), - [anon_sym_DOT2] = ACTIONS(1962), - [aux_sym__val_number_decimal_token3] = ACTIONS(1964), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(1968), - [aux_sym__val_number_token5] = ACTIONS(1968), - [aux_sym__val_number_token6] = ACTIONS(1968), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(1699), - [anon_sym_out_GT] = ACTIONS(1699), - [anon_sym_e_GT] = ACTIONS(1699), - [anon_sym_o_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT] = ACTIONS(1699), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1701), - [anon_sym_POUND] = ACTIONS(3), + [1306] = { + [sym_comment] = STATE(1306), + [anon_sym_export] = ACTIONS(1037), + [anon_sym_alias] = ACTIONS(1037), + [anon_sym_let] = ACTIONS(1037), + [anon_sym_let_DASHenv] = ACTIONS(1037), + [anon_sym_mut] = ACTIONS(1037), + [anon_sym_const] = ACTIONS(1037), + [anon_sym_SEMI] = ACTIONS(1037), + [sym_cmd_identifier] = ACTIONS(1037), + [anon_sym_LF] = ACTIONS(1039), + [anon_sym_def] = ACTIONS(1037), + [anon_sym_export_DASHenv] = ACTIONS(1037), + [anon_sym_extern] = ACTIONS(1037), + [anon_sym_module] = ACTIONS(1037), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_LBRACK] = ACTIONS(1037), + [anon_sym_LPAREN] = ACTIONS(1037), + [anon_sym_RPAREN] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1037), + [anon_sym_error] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_break] = ACTIONS(1037), + [anon_sym_continue] = ACTIONS(1037), + [anon_sym_for] = ACTIONS(1037), + [anon_sym_loop] = ACTIONS(1037), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_do] = ACTIONS(1037), + [anon_sym_if] = ACTIONS(1037), + [anon_sym_match] = ACTIONS(1037), + [anon_sym_LBRACE] = ACTIONS(1037), + [anon_sym_RBRACE] = ACTIONS(1037), + [anon_sym_DOT_DOT] = ACTIONS(1037), + [anon_sym_try] = ACTIONS(1037), + [anon_sym_return] = ACTIONS(1037), + [anon_sym_source] = ACTIONS(1037), + [anon_sym_source_DASHenv] = ACTIONS(1037), + [anon_sym_register] = ACTIONS(1037), + [anon_sym_hide] = ACTIONS(1037), + [anon_sym_hide_DASHenv] = ACTIONS(1037), + [anon_sym_overlay] = ACTIONS(1037), + [anon_sym_as] = ACTIONS(1037), + [anon_sym_where] = ACTIONS(1037), + [anon_sym_not] = ACTIONS(1037), + [anon_sym_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1037), + [anon_sym_DOT_DOT_LT] = ACTIONS(1037), + [anon_sym_null] = ACTIONS(1037), + [anon_sym_true] = ACTIONS(1037), + [anon_sym_false] = ACTIONS(1037), + [aux_sym__val_number_decimal_token1] = ACTIONS(1037), + [aux_sym__val_number_decimal_token2] = ACTIONS(1037), + [anon_sym_DOT2] = ACTIONS(1037), + [aux_sym__val_number_decimal_token3] = ACTIONS(1037), + [aux_sym__val_number_token1] = ACTIONS(1037), + [aux_sym__val_number_token2] = ACTIONS(1037), + [aux_sym__val_number_token3] = ACTIONS(1037), + [aux_sym__val_number_token4] = ACTIONS(1037), + [aux_sym__val_number_token5] = ACTIONS(1037), + [aux_sym__val_number_token6] = ACTIONS(1037), + [anon_sym_0b] = ACTIONS(1037), + [anon_sym_0o] = ACTIONS(1037), + [anon_sym_0x] = ACTIONS(1037), + [sym_val_date] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1037), + [sym__str_single_quotes] = ACTIONS(1037), + [sym__str_back_ticks] = ACTIONS(1037), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1037), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1037), + [anon_sym_CARET] = ACTIONS(1037), + [anon_sym_POUND] = ACTIONS(113), }, - [1074] = { - [sym__ctrl_expression] = STATE(10407), - [sym_ctrl_do] = STATE(9362), - [sym_ctrl_if] = STATE(9362), - [sym_ctrl_match] = STATE(9362), - [sym_ctrl_try] = STATE(9362), - [sym_ctrl_return] = STATE(9362), - [sym_pipe_element] = STATE(4440), - [sym_where_command] = STATE(10408), - [sym__expression] = STATE(10408), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(5342), - [sym__var] = STATE(4755), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(10408), - [sym_comment] = STATE(1074), - [aux_sym_pipeline_repeat1] = STATE(1074), - [sym_cmd_identifier] = ACTIONS(2213), - [anon_sym_LBRACK] = ACTIONS(2216), - [anon_sym_LPAREN] = ACTIONS(2219), - [anon_sym_DOLLAR] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2225), - [anon_sym_break] = ACTIONS(2228), - [anon_sym_continue] = ACTIONS(2231), - [anon_sym_do] = ACTIONS(2234), - [anon_sym_if] = ACTIONS(2237), - [anon_sym_match] = ACTIONS(2240), - [anon_sym_LBRACE] = ACTIONS(2243), - [anon_sym_DOT_DOT] = ACTIONS(2246), - [anon_sym_try] = ACTIONS(2249), - [anon_sym_return] = ACTIONS(2252), - [anon_sym_where] = ACTIONS(2255), - [anon_sym_not] = ACTIONS(2258), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2261), - [anon_sym_DOT_DOT_LT] = ACTIONS(2261), - [anon_sym_null] = ACTIONS(2264), - [anon_sym_true] = ACTIONS(2267), - [anon_sym_false] = ACTIONS(2267), - [aux_sym__val_number_decimal_token1] = ACTIONS(2270), - [aux_sym__val_number_decimal_token2] = ACTIONS(2273), - [anon_sym_DOT2] = ACTIONS(2276), - [aux_sym__val_number_decimal_token3] = ACTIONS(2279), - [aux_sym__val_number_token1] = ACTIONS(2282), - [aux_sym__val_number_token2] = ACTIONS(2282), - [aux_sym__val_number_token3] = ACTIONS(2282), - [aux_sym__val_number_token4] = ACTIONS(2285), - [aux_sym__val_number_token5] = ACTIONS(2282), - [aux_sym__val_number_token6] = ACTIONS(2285), - [anon_sym_0b] = ACTIONS(2288), - [anon_sym_0o] = ACTIONS(2291), - [anon_sym_0x] = ACTIONS(2291), - [sym_val_date] = ACTIONS(2294), - [anon_sym_DQUOTE] = ACTIONS(2297), - [sym__str_single_quotes] = ACTIONS(2300), - [sym__str_back_ticks] = ACTIONS(2300), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2303), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2306), - [anon_sym_CARET] = ACTIONS(2309), - [anon_sym_POUND] = ACTIONS(3), + [1307] = { + [sym_comment] = STATE(1307), + [anon_sym_export] = ACTIONS(1041), + [anon_sym_alias] = ACTIONS(1041), + [anon_sym_let] = ACTIONS(1041), + [anon_sym_let_DASHenv] = ACTIONS(1041), + [anon_sym_mut] = ACTIONS(1041), + [anon_sym_const] = ACTIONS(1041), + [anon_sym_SEMI] = ACTIONS(1041), + [sym_cmd_identifier] = ACTIONS(1041), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_def] = ACTIONS(1041), + [anon_sym_export_DASHenv] = ACTIONS(1041), + [anon_sym_extern] = ACTIONS(1041), + [anon_sym_module] = ACTIONS(1041), + [anon_sym_use] = ACTIONS(1041), + [anon_sym_LBRACK] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1041), + [anon_sym_RPAREN] = ACTIONS(1041), + [anon_sym_DOLLAR] = ACTIONS(1041), + [anon_sym_error] = ACTIONS(1041), + [anon_sym_DASH_DASH] = ACTIONS(1041), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_break] = ACTIONS(1041), + [anon_sym_continue] = ACTIONS(1041), + [anon_sym_for] = ACTIONS(1041), + [anon_sym_loop] = ACTIONS(1041), + [anon_sym_while] = ACTIONS(1041), + [anon_sym_do] = ACTIONS(1041), + [anon_sym_if] = ACTIONS(1041), + [anon_sym_match] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_RBRACE] = ACTIONS(1041), + [anon_sym_DOT_DOT] = ACTIONS(1041), + [anon_sym_try] = ACTIONS(1041), + [anon_sym_return] = ACTIONS(1041), + [anon_sym_source] = ACTIONS(1041), + [anon_sym_source_DASHenv] = ACTIONS(1041), + [anon_sym_register] = ACTIONS(1041), + [anon_sym_hide] = ACTIONS(1041), + [anon_sym_hide_DASHenv] = ACTIONS(1041), + [anon_sym_overlay] = ACTIONS(1041), + [anon_sym_as] = ACTIONS(1041), + [anon_sym_where] = ACTIONS(1041), + [anon_sym_not] = ACTIONS(1041), + [anon_sym_DOT] = ACTIONS(1041), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1041), + [anon_sym_DOT_DOT_LT] = ACTIONS(1041), + [anon_sym_null] = ACTIONS(1041), + [anon_sym_true] = ACTIONS(1041), + [anon_sym_false] = ACTIONS(1041), + [aux_sym__val_number_decimal_token1] = ACTIONS(1041), + [aux_sym__val_number_decimal_token2] = ACTIONS(1041), + [anon_sym_DOT2] = ACTIONS(1041), + [aux_sym__val_number_decimal_token3] = ACTIONS(1041), + [aux_sym__val_number_token1] = ACTIONS(1041), + [aux_sym__val_number_token2] = ACTIONS(1041), + [aux_sym__val_number_token3] = ACTIONS(1041), + [aux_sym__val_number_token4] = ACTIONS(1041), + [aux_sym__val_number_token5] = ACTIONS(1041), + [aux_sym__val_number_token6] = ACTIONS(1041), + [anon_sym_0b] = ACTIONS(1041), + [anon_sym_0o] = ACTIONS(1041), + [anon_sym_0x] = ACTIONS(1041), + [sym_val_date] = ACTIONS(1041), + [anon_sym_DQUOTE] = ACTIONS(1041), + [sym__str_single_quotes] = ACTIONS(1041), + [sym__str_back_ticks] = ACTIONS(1041), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1041), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1041), + [anon_sym_CARET] = ACTIONS(1041), + [anon_sym_POUND] = ACTIONS(113), }, - [1075] = { - [sym__expr_unary_minus] = STATE(10486), - [sym_expr_parenthesized] = STATE(9327), - [sym_val_range] = STATE(10632), - [sym__val_range] = STATE(10567), - [sym__val_range_with_end] = STATE(10631), - [sym__value] = STATE(10632), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(9687), - [sym_val_variable] = STATE(5789), - [sym__var] = STATE(5205), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(7522), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(10377), - [sym_list_body] = STATE(11080), - [sym_val_entry] = STATE(10464), - [sym__list_item_expression] = STATE(10482), - [sym__list_item_starts_with_sign] = STATE(10484), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_short_flag] = STATE(10484), - [sym_long_flag] = STATE(10484), - [sym_long_flag_equals_value] = STATE(4310), - [sym__unquoted_in_list] = STATE(9820), - [sym__unquoted_in_list_with_expr] = STATE(10484), - [sym__unquoted_anonymous_prefix] = STATE(10279), - [sym_comment] = STATE(1075), - [aux_sym_list_body_repeat1] = STATE(1121), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_RBRACK] = ACTIONS(2312), - [anon_sym_LPAREN] = ACTIONS(1940), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(1950), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1952), - [anon_sym_DOT_DOT_LT] = ACTIONS(1952), - [anon_sym_null] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [aux_sym__val_number_decimal_token1] = ACTIONS(1958), - [aux_sym__val_number_decimal_token2] = ACTIONS(1960), - [anon_sym_DOT2] = ACTIONS(1962), - [aux_sym__val_number_decimal_token3] = ACTIONS(1964), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(1968), - [aux_sym__val_number_token5] = ACTIONS(1968), - [aux_sym__val_number_token6] = ACTIONS(1968), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(1699), - [anon_sym_out_GT] = ACTIONS(1699), - [anon_sym_e_GT] = ACTIONS(1699), - [anon_sym_o_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT] = ACTIONS(1699), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1701), - [anon_sym_POUND] = ACTIONS(3), + [1308] = { + [sym_comment] = STATE(1308), + [anon_sym_SEMI] = ACTIONS(1020), + [anon_sym_LF] = ACTIONS(1022), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1020), + [anon_sym_RPAREN] = ACTIONS(1020), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_GT] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1020), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_in] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_RBRACE] = ACTIONS(1020), + [anon_sym_DOT_DOT] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_QMARK2] = ACTIONS(1020), + [anon_sym_STAR_STAR] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1020), + [anon_sym_SLASH] = ACTIONS(1020), + [anon_sym_mod] = ACTIONS(1020), + [anon_sym_SLASH_SLASH] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_bit_DASHshl] = ACTIONS(1020), + [anon_sym_bit_DASHshr] = ACTIONS(1020), + [anon_sym_EQ_EQ] = ACTIONS(1020), + [anon_sym_BANG_EQ] = ACTIONS(1020), + [anon_sym_LT2] = ACTIONS(1020), + [anon_sym_LT_EQ] = ACTIONS(1020), + [anon_sym_GT_EQ] = ACTIONS(1020), + [anon_sym_not_DASHin] = ACTIONS(1020), + [anon_sym_starts_DASHwith] = ACTIONS(1020), + [anon_sym_ends_DASHwith] = ACTIONS(1020), + [anon_sym_EQ_TILDE] = ACTIONS(1020), + [anon_sym_BANG_TILDE] = ACTIONS(1020), + [anon_sym_bit_DASHand] = ACTIONS(1020), + [anon_sym_bit_DASHxor] = ACTIONS(1020), + [anon_sym_bit_DASHor] = ACTIONS(1020), + [anon_sym_and] = ACTIONS(1020), + [anon_sym_xor] = ACTIONS(1020), + [anon_sym_or] = ACTIONS(1020), + [anon_sym_not] = ACTIONS(1020), + [anon_sym_DOT_DOT2] = ACTIONS(1020), + [anon_sym_DOT] = ACTIONS(1020), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1020), + [anon_sym_DOT_DOT_LT] = ACTIONS(1020), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1022), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1022), + [anon_sym_null] = ACTIONS(1020), + [anon_sym_true] = ACTIONS(1020), + [anon_sym_false] = ACTIONS(1020), + [aux_sym__val_number_decimal_token1] = ACTIONS(1020), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [anon_sym_DOT2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1020), + [aux_sym__val_number_token1] = ACTIONS(1020), + [aux_sym__val_number_token2] = ACTIONS(1020), + [aux_sym__val_number_token3] = ACTIONS(1020), + [aux_sym__val_number_token4] = ACTIONS(1020), + [aux_sym__val_number_token5] = ACTIONS(1020), + [aux_sym__val_number_token6] = ACTIONS(1020), + [anon_sym_0b] = ACTIONS(1020), + [anon_sym_0o] = ACTIONS(1020), + [anon_sym_0x] = ACTIONS(1020), + [sym_val_date] = ACTIONS(1020), + [anon_sym_DQUOTE] = ACTIONS(1020), + [sym__str_single_quotes] = ACTIONS(1020), + [sym__str_back_ticks] = ACTIONS(1020), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1020), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1020), + [anon_sym_POUND] = ACTIONS(113), }, - [1076] = { - [sym__expr_parenthesized_immediate] = STATE(1791), - [sym__immediate_decimal] = STATE(1445), - [sym_val_variable] = STATE(1791), - [sym__var] = STATE(1373), - [sym_comment] = STATE(1076), - [anon_sym_export] = ACTIONS(2002), - [anon_sym_alias] = ACTIONS(2002), - [anon_sym_let] = ACTIONS(2002), - [anon_sym_let_DASHenv] = ACTIONS(2002), - [anon_sym_mut] = ACTIONS(2002), - [anon_sym_const] = ACTIONS(2002), - [anon_sym_SEMI] = ACTIONS(2002), - [sym_cmd_identifier] = ACTIONS(2002), - [anon_sym_LF] = ACTIONS(2004), - [anon_sym_def] = ACTIONS(2002), - [anon_sym_export_DASHenv] = ACTIONS(2002), - [anon_sym_extern] = ACTIONS(2002), - [anon_sym_module] = ACTIONS(2002), - [anon_sym_use] = ACTIONS(2002), - [anon_sym_LBRACK] = ACTIONS(2002), - [anon_sym_LPAREN] = ACTIONS(2002), - [anon_sym_RPAREN] = ACTIONS(2002), - [anon_sym_DOLLAR] = ACTIONS(1924), - [anon_sym_error] = ACTIONS(2002), - [anon_sym_DASH_DASH] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2002), - [anon_sym_break] = ACTIONS(2002), - [anon_sym_continue] = ACTIONS(2002), - [anon_sym_for] = ACTIONS(2002), - [anon_sym_loop] = ACTIONS(2002), - [anon_sym_while] = ACTIONS(2002), - [anon_sym_do] = ACTIONS(2002), - [anon_sym_if] = ACTIONS(2002), - [anon_sym_match] = ACTIONS(2002), - [anon_sym_LBRACE] = ACTIONS(2002), - [anon_sym_RBRACE] = ACTIONS(2002), - [anon_sym_DOT_DOT] = ACTIONS(2002), - [anon_sym_try] = ACTIONS(2002), - [anon_sym_return] = ACTIONS(2002), - [anon_sym_source] = ACTIONS(2002), - [anon_sym_source_DASHenv] = ACTIONS(2002), - [anon_sym_register] = ACTIONS(2002), - [anon_sym_hide] = ACTIONS(2002), - [anon_sym_hide_DASHenv] = ACTIONS(2002), - [anon_sym_overlay] = ACTIONS(2002), - [anon_sym_as] = ACTIONS(2002), - [anon_sym_where] = ACTIONS(2002), - [anon_sym_not] = ACTIONS(2002), - [anon_sym_LPAREN2] = ACTIONS(1926), - [anon_sym_DOT] = ACTIONS(2008), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2002), - [anon_sym_DOT_DOT_LT] = ACTIONS(2002), - [aux_sym__immediate_decimal_token1] = ACTIONS(2010), - [aux_sym__immediate_decimal_token3] = ACTIONS(2010), - [aux_sym__immediate_decimal_token4] = ACTIONS(2012), - [anon_sym_null] = ACTIONS(2002), - [anon_sym_true] = ACTIONS(2002), - [anon_sym_false] = ACTIONS(2002), - [aux_sym__val_number_decimal_token1] = ACTIONS(2002), - [aux_sym__val_number_decimal_token2] = ACTIONS(2002), - [anon_sym_DOT2] = ACTIONS(2002), - [aux_sym__val_number_decimal_token3] = ACTIONS(2002), - [aux_sym__val_number_token1] = ACTIONS(2002), - [aux_sym__val_number_token2] = ACTIONS(2002), - [aux_sym__val_number_token3] = ACTIONS(2002), - [aux_sym__val_number_token4] = ACTIONS(2002), - [aux_sym__val_number_token5] = ACTIONS(2002), - [aux_sym__val_number_token6] = ACTIONS(2002), - [anon_sym_0b] = ACTIONS(2002), - [anon_sym_0o] = ACTIONS(2002), - [anon_sym_0x] = ACTIONS(2002), - [sym_val_date] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym__str_single_quotes] = ACTIONS(2002), - [sym__str_back_ticks] = ACTIONS(2002), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2002), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2002), - [anon_sym_CARET] = ACTIONS(2002), - [aux_sym_unquoted_token2] = ACTIONS(2006), + [1309] = { + [sym_cell_path] = STATE(2266), + [sym_path] = STATE(1265), + [sym_comment] = STATE(1309), + [anon_sym_export] = ACTIONS(1051), + [anon_sym_alias] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(1051), + [anon_sym_let_DASHenv] = ACTIONS(1051), + [anon_sym_mut] = ACTIONS(1051), + [anon_sym_const] = ACTIONS(1051), + [anon_sym_SEMI] = ACTIONS(1051), + [sym_cmd_identifier] = ACTIONS(1051), + [anon_sym_LF] = ACTIONS(1053), + [anon_sym_def] = ACTIONS(1051), + [anon_sym_export_DASHenv] = ACTIONS(1051), + [anon_sym_extern] = ACTIONS(1051), + [anon_sym_module] = ACTIONS(1051), + [anon_sym_use] = ACTIONS(1051), + [anon_sym_LBRACK] = ACTIONS(1051), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_RPAREN] = ACTIONS(1051), + [anon_sym_DOLLAR] = ACTIONS(1051), + [anon_sym_error] = ACTIONS(1051), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_break] = ACTIONS(1051), + [anon_sym_continue] = ACTIONS(1051), + [anon_sym_for] = ACTIONS(1051), + [anon_sym_loop] = ACTIONS(1051), + [anon_sym_while] = ACTIONS(1051), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_if] = ACTIONS(1051), + [anon_sym_match] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(1051), + [anon_sym_RBRACE] = ACTIONS(1051), + [anon_sym_DOT_DOT] = ACTIONS(1051), + [anon_sym_try] = ACTIONS(1051), + [anon_sym_return] = ACTIONS(1051), + [anon_sym_source] = ACTIONS(1051), + [anon_sym_source_DASHenv] = ACTIONS(1051), + [anon_sym_register] = ACTIONS(1051), + [anon_sym_hide] = ACTIONS(1051), + [anon_sym_hide_DASHenv] = ACTIONS(1051), + [anon_sym_overlay] = ACTIONS(1051), + [anon_sym_where] = ACTIONS(1051), + [anon_sym_not] = ACTIONS(1051), + [anon_sym_DOT] = ACTIONS(3954), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1051), + [anon_sym_DOT_DOT_LT] = ACTIONS(1051), + [anon_sym_null] = ACTIONS(1051), + [anon_sym_true] = ACTIONS(1051), + [anon_sym_false] = ACTIONS(1051), + [aux_sym__val_number_decimal_token1] = ACTIONS(1051), + [aux_sym__val_number_decimal_token2] = ACTIONS(1051), + [anon_sym_DOT2] = ACTIONS(1051), + [aux_sym__val_number_decimal_token3] = ACTIONS(1051), + [aux_sym__val_number_token1] = ACTIONS(1051), + [aux_sym__val_number_token2] = ACTIONS(1051), + [aux_sym__val_number_token3] = ACTIONS(1051), + [aux_sym__val_number_token4] = ACTIONS(1051), + [aux_sym__val_number_token5] = ACTIONS(1051), + [aux_sym__val_number_token6] = ACTIONS(1051), + [anon_sym_0b] = ACTIONS(1051), + [anon_sym_0o] = ACTIONS(1051), + [anon_sym_0x] = ACTIONS(1051), + [sym_val_date] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(1051), + [sym__str_single_quotes] = ACTIONS(1051), + [sym__str_back_ticks] = ACTIONS(1051), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1051), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1051), + [anon_sym_CARET] = ACTIONS(1051), [anon_sym_POUND] = ACTIONS(113), }, - [1077] = { - [sym__expr_unary_minus] = STATE(10486), - [sym_expr_parenthesized] = STATE(9327), - [sym_val_range] = STATE(10632), - [sym__val_range] = STATE(10567), - [sym__val_range_with_end] = STATE(10631), - [sym__value] = STATE(10632), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(9687), - [sym_val_variable] = STATE(5789), - [sym__var] = STATE(5205), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(7522), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(10419), - [sym_list_body] = STATE(10916), - [sym_val_entry] = STATE(10464), - [sym__list_item_expression] = STATE(10482), - [sym__list_item_starts_with_sign] = STATE(10484), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_short_flag] = STATE(10484), - [sym_long_flag] = STATE(10484), - [sym_long_flag_equals_value] = STATE(4310), - [sym__unquoted_in_list] = STATE(9820), - [sym__unquoted_in_list_with_expr] = STATE(10484), - [sym__unquoted_anonymous_prefix] = STATE(10279), - [sym_comment] = STATE(1077), - [aux_sym_list_body_repeat1] = STATE(1121), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_RBRACK] = ACTIONS(2314), - [anon_sym_LPAREN] = ACTIONS(1940), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(1950), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1952), - [anon_sym_DOT_DOT_LT] = ACTIONS(1952), - [anon_sym_null] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [aux_sym__val_number_decimal_token1] = ACTIONS(1958), - [aux_sym__val_number_decimal_token2] = ACTIONS(1960), - [anon_sym_DOT2] = ACTIONS(1962), - [aux_sym__val_number_decimal_token3] = ACTIONS(1964), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(1968), - [aux_sym__val_number_token5] = ACTIONS(1968), - [aux_sym__val_number_token6] = ACTIONS(1968), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(1699), - [anon_sym_out_GT] = ACTIONS(1699), - [anon_sym_e_GT] = ACTIONS(1699), - [anon_sym_o_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT] = ACTIONS(1699), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1701), - [anon_sym_POUND] = ACTIONS(3), + [1310] = { + [sym_comment] = STATE(1310), + [anon_sym_export] = ACTIONS(4721), + [anon_sym_alias] = ACTIONS(4721), + [anon_sym_EQ] = ACTIONS(4723), + [anon_sym_let] = ACTIONS(4721), + [anon_sym_let_DASHenv] = ACTIONS(4721), + [anon_sym_mut] = ACTIONS(4721), + [anon_sym_const] = ACTIONS(4721), + [anon_sym_SEMI] = ACTIONS(4721), + [sym_cmd_identifier] = ACTIONS(4721), + [anon_sym_LF] = ACTIONS(4725), + [anon_sym_def] = ACTIONS(4721), + [anon_sym_export_DASHenv] = ACTIONS(4721), + [anon_sym_extern] = ACTIONS(4721), + [anon_sym_module] = ACTIONS(4721), + [anon_sym_use] = ACTIONS(4721), + [anon_sym_LBRACK] = ACTIONS(4721), + [anon_sym_LPAREN] = ACTIONS(4721), + [anon_sym_RPAREN] = ACTIONS(4721), + [anon_sym_DOLLAR] = ACTIONS(4721), + [anon_sym_error] = ACTIONS(4721), + [anon_sym_DASH_DASH] = ACTIONS(4721), + [anon_sym_DASH] = ACTIONS(4721), + [anon_sym_break] = ACTIONS(4721), + [anon_sym_continue] = ACTIONS(4721), + [anon_sym_for] = ACTIONS(4721), + [anon_sym_loop] = ACTIONS(4721), + [anon_sym_while] = ACTIONS(4721), + [anon_sym_do] = ACTIONS(4721), + [anon_sym_if] = ACTIONS(4721), + [anon_sym_match] = ACTIONS(4721), + [anon_sym_LBRACE] = ACTIONS(4721), + [anon_sym_RBRACE] = ACTIONS(4721), + [anon_sym_DOT_DOT] = ACTIONS(4721), + [anon_sym_try] = ACTIONS(4721), + [anon_sym_return] = ACTIONS(4721), + [anon_sym_source] = ACTIONS(4721), + [anon_sym_source_DASHenv] = ACTIONS(4721), + [anon_sym_register] = ACTIONS(4721), + [anon_sym_hide] = ACTIONS(4721), + [anon_sym_hide_DASHenv] = ACTIONS(4721), + [anon_sym_overlay] = ACTIONS(4721), + [anon_sym_as] = ACTIONS(4721), + [anon_sym_where] = ACTIONS(4721), + [anon_sym_not] = ACTIONS(4721), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4721), + [anon_sym_DOT_DOT_LT] = ACTIONS(4721), + [anon_sym_null] = ACTIONS(4721), + [anon_sym_true] = ACTIONS(4721), + [anon_sym_false] = ACTIONS(4721), + [aux_sym__val_number_decimal_token1] = ACTIONS(4721), + [aux_sym__val_number_decimal_token2] = ACTIONS(4721), + [anon_sym_DOT2] = ACTIONS(4721), + [aux_sym__val_number_decimal_token3] = ACTIONS(4721), + [aux_sym__val_number_token1] = ACTIONS(4721), + [aux_sym__val_number_token2] = ACTIONS(4721), + [aux_sym__val_number_token3] = ACTIONS(4721), + [aux_sym__val_number_token4] = ACTIONS(4721), + [aux_sym__val_number_token5] = ACTIONS(4721), + [aux_sym__val_number_token6] = ACTIONS(4721), + [anon_sym_0b] = ACTIONS(4721), + [anon_sym_0o] = ACTIONS(4721), + [anon_sym_0x] = ACTIONS(4721), + [sym_val_date] = ACTIONS(4721), + [anon_sym_DQUOTE] = ACTIONS(4721), + [sym__str_single_quotes] = ACTIONS(4721), + [sym__str_back_ticks] = ACTIONS(4721), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4721), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4721), + [anon_sym_CARET] = ACTIONS(4721), + [anon_sym_POUND] = ACTIONS(113), }, - [1078] = { - [sym__expr_unary_minus] = STATE(10486), - [sym_expr_parenthesized] = STATE(9327), - [sym_val_range] = STATE(10632), - [sym__val_range] = STATE(10567), - [sym__val_range_with_end] = STATE(10631), - [sym__value] = STATE(10632), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(9687), - [sym_val_variable] = STATE(5789), - [sym__var] = STATE(5205), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(7522), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(10421), - [sym_list_body] = STATE(10995), - [sym_val_entry] = STATE(10464), - [sym__list_item_expression] = STATE(10482), - [sym__list_item_starts_with_sign] = STATE(10484), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_short_flag] = STATE(10484), - [sym_long_flag] = STATE(10484), - [sym_long_flag_equals_value] = STATE(4310), - [sym__unquoted_in_list] = STATE(9820), - [sym__unquoted_in_list_with_expr] = STATE(10484), - [sym__unquoted_anonymous_prefix] = STATE(10279), - [sym_comment] = STATE(1078), - [aux_sym_list_body_repeat1] = STATE(1121), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_RBRACK] = ACTIONS(2316), - [anon_sym_LPAREN] = ACTIONS(1940), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(1950), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1952), - [anon_sym_DOT_DOT_LT] = ACTIONS(1952), - [anon_sym_null] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [aux_sym__val_number_decimal_token1] = ACTIONS(1958), - [aux_sym__val_number_decimal_token2] = ACTIONS(1960), - [anon_sym_DOT2] = ACTIONS(1962), - [aux_sym__val_number_decimal_token3] = ACTIONS(1964), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(1968), - [aux_sym__val_number_token5] = ACTIONS(1968), - [aux_sym__val_number_token6] = ACTIONS(1968), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(1699), - [anon_sym_out_GT] = ACTIONS(1699), - [anon_sym_e_GT] = ACTIONS(1699), - [anon_sym_o_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT] = ACTIONS(1699), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1701), - [anon_sym_POUND] = ACTIONS(3), + [1311] = { + [sym_comment] = STATE(1311), + [anon_sym_export] = ACTIONS(1139), + [anon_sym_alias] = ACTIONS(1139), + [anon_sym_let] = ACTIONS(1139), + [anon_sym_let_DASHenv] = ACTIONS(1139), + [anon_sym_mut] = ACTIONS(1139), + [anon_sym_const] = ACTIONS(1139), + [anon_sym_SEMI] = ACTIONS(1139), + [sym_cmd_identifier] = ACTIONS(1139), + [anon_sym_LF] = ACTIONS(1139), + [anon_sym_def] = ACTIONS(1139), + [anon_sym_export_DASHenv] = ACTIONS(1139), + [anon_sym_extern] = ACTIONS(1139), + [anon_sym_module] = ACTIONS(1139), + [anon_sym_use] = ACTIONS(1139), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LPAREN] = ACTIONS(1139), + [anon_sym_RPAREN] = ACTIONS(1139), + [anon_sym_DOLLAR] = ACTIONS(1139), + [anon_sym_error] = ACTIONS(1139), + [anon_sym_DASH_DASH] = ACTIONS(1139), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_break] = ACTIONS(1139), + [anon_sym_continue] = ACTIONS(1139), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_loop] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1139), + [anon_sym_do] = ACTIONS(1139), + [anon_sym_if] = ACTIONS(1139), + [anon_sym_match] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1139), + [anon_sym_RBRACE] = ACTIONS(1139), + [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_try] = ACTIONS(1139), + [anon_sym_return] = ACTIONS(1139), + [anon_sym_source] = ACTIONS(1139), + [anon_sym_source_DASHenv] = ACTIONS(1139), + [anon_sym_register] = ACTIONS(1139), + [anon_sym_hide] = ACTIONS(1139), + [anon_sym_hide_DASHenv] = ACTIONS(1139), + [anon_sym_overlay] = ACTIONS(1139), + [anon_sym_as] = ACTIONS(1139), + [anon_sym_where] = ACTIONS(1139), + [anon_sym_not] = ACTIONS(1139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1139), + [anon_sym_DOT_DOT_LT] = ACTIONS(1139), + [anon_sym_null] = ACTIONS(1139), + [anon_sym_true] = ACTIONS(1139), + [anon_sym_false] = ACTIONS(1139), + [aux_sym__val_number_decimal_token1] = ACTIONS(1139), + [aux_sym__val_number_decimal_token2] = ACTIONS(1139), + [anon_sym_DOT2] = ACTIONS(1139), + [aux_sym__val_number_decimal_token3] = ACTIONS(1139), + [aux_sym__val_number_token1] = ACTIONS(1139), + [aux_sym__val_number_token2] = ACTIONS(1139), + [aux_sym__val_number_token3] = ACTIONS(1139), + [aux_sym__val_number_token4] = ACTIONS(1139), + [aux_sym__val_number_token5] = ACTIONS(1139), + [aux_sym__val_number_token6] = ACTIONS(1139), + [anon_sym_0b] = ACTIONS(1139), + [anon_sym_0o] = ACTIONS(1139), + [anon_sym_0x] = ACTIONS(1139), + [sym_val_date] = ACTIONS(1139), + [anon_sym_DQUOTE] = ACTIONS(1139), + [sym__str_single_quotes] = ACTIONS(1139), + [sym__str_back_ticks] = ACTIONS(1139), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1139), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1139), + [aux_sym__list_item_starts_with_sign_token1] = ACTIONS(4727), + [anon_sym_CARET] = ACTIONS(1139), + [anon_sym_POUND] = ACTIONS(113), }, - [1079] = { - [sym__expr_unary_minus] = STATE(10486), - [sym_expr_parenthesized] = STATE(9327), - [sym_val_range] = STATE(10632), - [sym__val_range] = STATE(10567), - [sym__val_range_with_end] = STATE(10631), - [sym__value] = STATE(10632), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(9687), - [sym_val_variable] = STATE(5789), - [sym__var] = STATE(5205), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(7522), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(10380), - [sym_list_body] = STATE(11269), - [sym_val_entry] = STATE(10464), - [sym__list_item_expression] = STATE(10482), - [sym__list_item_starts_with_sign] = STATE(10484), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_short_flag] = STATE(10484), - [sym_long_flag] = STATE(10484), - [sym_long_flag_equals_value] = STATE(4310), - [sym__unquoted_in_list] = STATE(9820), - [sym__unquoted_in_list_with_expr] = STATE(10484), - [sym__unquoted_anonymous_prefix] = STATE(10279), - [sym_comment] = STATE(1079), - [aux_sym_list_body_repeat1] = STATE(1121), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_RBRACK] = ACTIONS(2318), - [anon_sym_LPAREN] = ACTIONS(1940), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(1950), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1952), - [anon_sym_DOT_DOT_LT] = ACTIONS(1952), - [anon_sym_null] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [aux_sym__val_number_decimal_token1] = ACTIONS(1958), - [aux_sym__val_number_decimal_token2] = ACTIONS(1960), - [anon_sym_DOT2] = ACTIONS(1962), - [aux_sym__val_number_decimal_token3] = ACTIONS(1964), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(1968), - [aux_sym__val_number_token5] = ACTIONS(1968), - [aux_sym__val_number_token6] = ACTIONS(1968), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(1699), - [anon_sym_out_GT] = ACTIONS(1699), - [anon_sym_e_GT] = ACTIONS(1699), - [anon_sym_o_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT] = ACTIONS(1699), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1701), - [anon_sym_POUND] = ACTIONS(3), + [1312] = { + [sym_path] = STATE(2080), + [sym_comment] = STATE(1312), + [aux_sym_cell_path_repeat1] = STATE(1313), + [ts_builtin_sym_end] = ACTIONS(1008), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_alias] = ACTIONS(1006), + [anon_sym_let] = ACTIONS(1006), + [anon_sym_let_DASHenv] = ACTIONS(1006), + [anon_sym_mut] = ACTIONS(1006), + [anon_sym_const] = ACTIONS(1006), + [anon_sym_SEMI] = ACTIONS(1006), + [sym_cmd_identifier] = ACTIONS(1006), + [anon_sym_LF] = ACTIONS(1008), + [anon_sym_def] = ACTIONS(1006), + [anon_sym_export_DASHenv] = ACTIONS(1006), + [anon_sym_extern] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_use] = ACTIONS(1006), + [anon_sym_LBRACK] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_error] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_break] = ACTIONS(1006), + [anon_sym_continue] = ACTIONS(1006), + [anon_sym_for] = ACTIONS(1006), + [anon_sym_loop] = ACTIONS(1006), + [anon_sym_while] = ACTIONS(1006), + [anon_sym_do] = ACTIONS(1006), + [anon_sym_if] = ACTIONS(1006), + [anon_sym_match] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_DOT_DOT] = ACTIONS(1006), + [anon_sym_try] = ACTIONS(1006), + [anon_sym_return] = ACTIONS(1006), + [anon_sym_source] = ACTIONS(1006), + [anon_sym_source_DASHenv] = ACTIONS(1006), + [anon_sym_register] = ACTIONS(1006), + [anon_sym_hide] = ACTIONS(1006), + [anon_sym_hide_DASHenv] = ACTIONS(1006), + [anon_sym_overlay] = ACTIONS(1006), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_where] = ACTIONS(1006), + [anon_sym_not] = ACTIONS(1006), + [anon_sym_DOT] = ACTIONS(4719), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), + [anon_sym_DOT_DOT_LT] = ACTIONS(1006), + [anon_sym_null] = ACTIONS(1006), + [anon_sym_true] = ACTIONS(1006), + [anon_sym_false] = ACTIONS(1006), + [aux_sym__val_number_decimal_token1] = ACTIONS(1006), + [aux_sym__val_number_decimal_token2] = ACTIONS(1006), + [anon_sym_DOT2] = ACTIONS(1006), + [aux_sym__val_number_decimal_token3] = ACTIONS(1006), + [aux_sym__val_number_token1] = ACTIONS(1006), + [aux_sym__val_number_token2] = ACTIONS(1006), + [aux_sym__val_number_token3] = ACTIONS(1006), + [aux_sym__val_number_token4] = ACTIONS(1006), + [aux_sym__val_number_token5] = ACTIONS(1006), + [aux_sym__val_number_token6] = ACTIONS(1006), + [anon_sym_0b] = ACTIONS(1006), + [anon_sym_0o] = ACTIONS(1006), + [anon_sym_0x] = ACTIONS(1006), + [sym_val_date] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym__str_single_quotes] = ACTIONS(1006), + [sym__str_back_ticks] = ACTIONS(1006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1006), + [anon_sym_CARET] = ACTIONS(1006), + [anon_sym_POUND] = ACTIONS(113), }, - [1080] = { - [sym__expr_unary_minus] = STATE(10486), - [sym_expr_parenthesized] = STATE(9327), - [sym_val_range] = STATE(10632), - [sym__val_range] = STATE(10567), - [sym__val_range_with_end] = STATE(10631), - [sym__value] = STATE(10632), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(9687), - [sym_val_variable] = STATE(5789), - [sym__var] = STATE(5205), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(7522), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(10270), - [sym_list_body] = STATE(11018), - [sym_val_entry] = STATE(10464), - [sym__list_item_expression] = STATE(10482), - [sym__list_item_starts_with_sign] = STATE(10484), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_short_flag] = STATE(10484), - [sym_long_flag] = STATE(10484), - [sym_long_flag_equals_value] = STATE(4310), - [sym__unquoted_in_list] = STATE(9820), - [sym__unquoted_in_list_with_expr] = STATE(10484), - [sym__unquoted_anonymous_prefix] = STATE(10279), - [sym_comment] = STATE(1080), - [aux_sym_list_body_repeat1] = STATE(1121), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_RBRACK] = ACTIONS(2320), - [anon_sym_LPAREN] = ACTIONS(1940), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(1950), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1952), - [anon_sym_DOT_DOT_LT] = ACTIONS(1952), - [anon_sym_null] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [aux_sym__val_number_decimal_token1] = ACTIONS(1958), - [aux_sym__val_number_decimal_token2] = ACTIONS(1960), - [anon_sym_DOT2] = ACTIONS(1962), - [aux_sym__val_number_decimal_token3] = ACTIONS(1964), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(1968), - [aux_sym__val_number_token5] = ACTIONS(1968), - [aux_sym__val_number_token6] = ACTIONS(1968), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(1699), - [anon_sym_out_GT] = ACTIONS(1699), - [anon_sym_e_GT] = ACTIONS(1699), - [anon_sym_o_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT] = ACTIONS(1699), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1701), - [anon_sym_POUND] = ACTIONS(3), + [1313] = { + [sym_path] = STATE(2080), + [sym_comment] = STATE(1313), + [aux_sym_cell_path_repeat1] = STATE(1313), + [ts_builtin_sym_end] = ACTIONS(987), + [anon_sym_export] = ACTIONS(985), + [anon_sym_alias] = ACTIONS(985), + [anon_sym_let] = ACTIONS(985), + [anon_sym_let_DASHenv] = ACTIONS(985), + [anon_sym_mut] = ACTIONS(985), + [anon_sym_const] = ACTIONS(985), + [anon_sym_SEMI] = ACTIONS(985), + [sym_cmd_identifier] = ACTIONS(985), + [anon_sym_LF] = ACTIONS(987), + [anon_sym_def] = ACTIONS(985), + [anon_sym_export_DASHenv] = ACTIONS(985), + [anon_sym_extern] = ACTIONS(985), + [anon_sym_module] = ACTIONS(985), + [anon_sym_use] = ACTIONS(985), + [anon_sym_LBRACK] = ACTIONS(985), + [anon_sym_LPAREN] = ACTIONS(985), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_error] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_break] = ACTIONS(985), + [anon_sym_continue] = ACTIONS(985), + [anon_sym_for] = ACTIONS(985), + [anon_sym_loop] = ACTIONS(985), + [anon_sym_while] = ACTIONS(985), + [anon_sym_do] = ACTIONS(985), + [anon_sym_if] = ACTIONS(985), + [anon_sym_match] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(985), + [anon_sym_DOT_DOT] = ACTIONS(985), + [anon_sym_try] = ACTIONS(985), + [anon_sym_return] = ACTIONS(985), + [anon_sym_source] = ACTIONS(985), + [anon_sym_source_DASHenv] = ACTIONS(985), + [anon_sym_register] = ACTIONS(985), + [anon_sym_hide] = ACTIONS(985), + [anon_sym_hide_DASHenv] = ACTIONS(985), + [anon_sym_overlay] = ACTIONS(985), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_where] = ACTIONS(985), + [anon_sym_not] = ACTIONS(985), + [anon_sym_DOT] = ACTIONS(4729), + [anon_sym_DOT_DOT_EQ] = ACTIONS(985), + [anon_sym_DOT_DOT_LT] = ACTIONS(985), + [anon_sym_null] = ACTIONS(985), + [anon_sym_true] = ACTIONS(985), + [anon_sym_false] = ACTIONS(985), + [aux_sym__val_number_decimal_token1] = ACTIONS(985), + [aux_sym__val_number_decimal_token2] = ACTIONS(985), + [anon_sym_DOT2] = ACTIONS(985), + [aux_sym__val_number_decimal_token3] = ACTIONS(985), + [aux_sym__val_number_token1] = ACTIONS(985), + [aux_sym__val_number_token2] = ACTIONS(985), + [aux_sym__val_number_token3] = ACTIONS(985), + [aux_sym__val_number_token4] = ACTIONS(985), + [aux_sym__val_number_token5] = ACTIONS(985), + [aux_sym__val_number_token6] = ACTIONS(985), + [anon_sym_0b] = ACTIONS(985), + [anon_sym_0o] = ACTIONS(985), + [anon_sym_0x] = ACTIONS(985), + [sym_val_date] = ACTIONS(985), + [anon_sym_DQUOTE] = ACTIONS(985), + [sym__str_single_quotes] = ACTIONS(985), + [sym__str_back_ticks] = ACTIONS(985), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(985), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(985), + [anon_sym_POUND] = ACTIONS(113), }, - [1081] = { - [sym__expr_unary_minus] = STATE(10486), - [sym_expr_parenthesized] = STATE(9327), - [sym_val_range] = STATE(10632), - [sym__val_range] = STATE(10567), - [sym__val_range_with_end] = STATE(10631), - [sym__value] = STATE(10632), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(9687), - [sym_val_variable] = STATE(5789), - [sym__var] = STATE(5205), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(7522), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(10422), - [sym_list_body] = STATE(11075), - [sym_val_entry] = STATE(10464), - [sym__list_item_expression] = STATE(10482), - [sym__list_item_starts_with_sign] = STATE(10484), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_short_flag] = STATE(10484), - [sym_long_flag] = STATE(10484), - [sym_long_flag_equals_value] = STATE(4310), - [sym__unquoted_in_list] = STATE(9820), - [sym__unquoted_in_list_with_expr] = STATE(10484), - [sym__unquoted_anonymous_prefix] = STATE(10279), - [sym_comment] = STATE(1081), - [aux_sym_list_body_repeat1] = STATE(1121), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_RBRACK] = ACTIONS(2322), - [anon_sym_LPAREN] = ACTIONS(1940), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(1950), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1952), - [anon_sym_DOT_DOT_LT] = ACTIONS(1952), - [anon_sym_null] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [aux_sym__val_number_decimal_token1] = ACTIONS(1958), - [aux_sym__val_number_decimal_token2] = ACTIONS(1960), - [anon_sym_DOT2] = ACTIONS(1962), - [aux_sym__val_number_decimal_token3] = ACTIONS(1964), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(1968), - [aux_sym__val_number_token5] = ACTIONS(1968), - [aux_sym__val_number_token6] = ACTIONS(1968), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(1699), - [anon_sym_out_GT] = ACTIONS(1699), - [anon_sym_e_GT] = ACTIONS(1699), - [anon_sym_o_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT] = ACTIONS(1699), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1701), + [1314] = { + [sym_comment] = STATE(1314), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_COMMA] = ACTIONS(1035), + [anon_sym_RBRACK] = ACTIONS(1035), + [anon_sym_LPAREN] = ACTIONS(1035), + [anon_sym_DOLLAR] = ACTIONS(1035), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1033), + [anon_sym_in] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(1035), + [anon_sym_DOT_DOT] = ACTIONS(1033), + [anon_sym_STAR] = ACTIONS(1033), + [anon_sym_QMARK2] = ACTIONS(1035), + [anon_sym_STAR_STAR] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1035), + [anon_sym_SLASH] = ACTIONS(1033), + [anon_sym_mod] = ACTIONS(1035), + [anon_sym_SLASH_SLASH] = ACTIONS(1035), + [anon_sym_PLUS] = ACTIONS(1033), + [anon_sym_bit_DASHshl] = ACTIONS(1035), + [anon_sym_bit_DASHshr] = ACTIONS(1035), + [anon_sym_EQ_EQ] = ACTIONS(1035), + [anon_sym_BANG_EQ] = ACTIONS(1035), + [anon_sym_LT2] = ACTIONS(1033), + [anon_sym_LT_EQ] = ACTIONS(1035), + [anon_sym_GT_EQ] = ACTIONS(1035), + [anon_sym_not_DASHin] = ACTIONS(1035), + [anon_sym_starts_DASHwith] = ACTIONS(1035), + [anon_sym_ends_DASHwith] = ACTIONS(1035), + [anon_sym_EQ_TILDE] = ACTIONS(1035), + [anon_sym_BANG_TILDE] = ACTIONS(1035), + [anon_sym_bit_DASHand] = ACTIONS(1035), + [anon_sym_bit_DASHxor] = ACTIONS(1035), + [anon_sym_bit_DASHor] = ACTIONS(1035), + [anon_sym_and] = ACTIONS(1035), + [anon_sym_xor] = ACTIONS(1035), + [anon_sym_or] = ACTIONS(1035), + [anon_sym_DOT] = ACTIONS(1033), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1035), + [anon_sym_DOT_DOT_LT] = ACTIONS(1035), + [anon_sym_null] = ACTIONS(1035), + [anon_sym_true] = ACTIONS(1035), + [anon_sym_false] = ACTIONS(1035), + [aux_sym__val_number_decimal_token1] = ACTIONS(1033), + [aux_sym__val_number_decimal_token2] = ACTIONS(1035), + [anon_sym_DOT2] = ACTIONS(1033), + [aux_sym__val_number_decimal_token3] = ACTIONS(1035), + [aux_sym__val_number_token1] = ACTIONS(1035), + [aux_sym__val_number_token2] = ACTIONS(1035), + [aux_sym__val_number_token3] = ACTIONS(1035), + [aux_sym__val_number_token4] = ACTIONS(1035), + [aux_sym__val_number_token5] = ACTIONS(1035), + [aux_sym__val_number_token6] = ACTIONS(1035), + [anon_sym_0b] = ACTIONS(1033), + [anon_sym_0o] = ACTIONS(1033), + [anon_sym_0x] = ACTIONS(1033), + [sym_val_date] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(1035), + [sym__str_single_quotes] = ACTIONS(1035), + [sym__str_back_ticks] = ACTIONS(1035), + [anon_sym_err_GT] = ACTIONS(1035), + [anon_sym_out_GT] = ACTIONS(1035), + [anon_sym_e_GT] = ACTIONS(1035), + [anon_sym_o_GT] = ACTIONS(1035), + [anon_sym_err_PLUSout_GT] = ACTIONS(1035), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1035), + [anon_sym_o_PLUSe_GT] = ACTIONS(1035), + [anon_sym_e_PLUSo_GT] = ACTIONS(1035), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1033), [anon_sym_POUND] = ACTIONS(3), }, - [1082] = { - [sym__expr_parenthesized_immediate] = STATE(1769), - [sym__immediate_decimal] = STATE(1416), - [sym_val_variable] = STATE(1769), - [sym__var] = STATE(1373), - [sym_comment] = STATE(1082), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(1924), - [anon_sym_error] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_RBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_as] = ACTIONS(936), - [anon_sym_where] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_LPAREN2] = ACTIONS(1926), - [anon_sym_DOT] = ACTIONS(1928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [aux_sym__immediate_decimal_token1] = ACTIONS(1930), - [aux_sym__immediate_decimal_token3] = ACTIONS(1930), - [aux_sym__immediate_decimal_token4] = ACTIONS(1932), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [aux_sym_unquoted_token4] = ACTIONS(1812), + [1315] = { + [sym_cell_path] = STATE(2268), + [sym_path] = STATE(1303), + [sym_comment] = STATE(1315), + [ts_builtin_sym_end] = ACTIONS(994), + [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), + [anon_sym_SEMI] = ACTIONS(992), + [sym_cmd_identifier] = ACTIONS(992), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(992), + [anon_sym_DOLLAR] = ACTIONS(992), + [anon_sym_error] = ACTIONS(992), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_break] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_loop] = ACTIONS(992), + [anon_sym_while] = ACTIONS(992), + [anon_sym_do] = ACTIONS(992), + [anon_sym_if] = ACTIONS(992), + [anon_sym_match] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(992), + [anon_sym_DOT_DOT] = ACTIONS(992), + [anon_sym_try] = 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_STAR] = ACTIONS(992), + [anon_sym_where] = ACTIONS(992), + [anon_sym_not] = ACTIONS(992), + [anon_sym_DOT] = ACTIONS(4719), + [anon_sym_DOT_DOT_EQ] = ACTIONS(992), + [anon_sym_DOT_DOT_LT] = ACTIONS(992), + [anon_sym_null] = ACTIONS(992), + [anon_sym_true] = ACTIONS(992), + [anon_sym_false] = ACTIONS(992), + [aux_sym__val_number_decimal_token1] = ACTIONS(992), + [aux_sym__val_number_decimal_token2] = ACTIONS(992), + [anon_sym_DOT2] = ACTIONS(992), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(992), + [anon_sym_0o] = ACTIONS(992), + [anon_sym_0x] = ACTIONS(992), + [sym_val_date] = ACTIONS(992), + [anon_sym_DQUOTE] = ACTIONS(992), + [sym__str_single_quotes] = ACTIONS(992), + [sym__str_back_ticks] = ACTIONS(992), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(992), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(992), + [anon_sym_CARET] = ACTIONS(992), [anon_sym_POUND] = ACTIONS(113), }, - [1083] = { - [sym__expr_unary_minus] = STATE(10486), - [sym_expr_parenthesized] = STATE(9327), - [sym_val_range] = STATE(10632), - [sym__val_range] = STATE(10567), - [sym__val_range_with_end] = STATE(10631), - [sym__value] = STATE(10632), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(9687), - [sym_val_variable] = STATE(5789), - [sym__var] = STATE(5205), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(7522), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(10382), - [sym_list_body] = STATE(11374), - [sym_val_entry] = STATE(10464), - [sym__list_item_expression] = STATE(10482), - [sym__list_item_starts_with_sign] = STATE(10484), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_short_flag] = STATE(10484), - [sym_long_flag] = STATE(10484), - [sym_long_flag_equals_value] = STATE(4310), - [sym__unquoted_in_list] = STATE(9820), - [sym__unquoted_in_list_with_expr] = STATE(10484), - [sym__unquoted_anonymous_prefix] = STATE(10279), - [sym_comment] = STATE(1083), - [aux_sym_list_body_repeat1] = STATE(1121), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_RBRACK] = ACTIONS(2324), - [anon_sym_LPAREN] = ACTIONS(1940), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(1950), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1952), - [anon_sym_DOT_DOT_LT] = ACTIONS(1952), - [anon_sym_null] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [aux_sym__val_number_decimal_token1] = ACTIONS(1958), - [aux_sym__val_number_decimal_token2] = ACTIONS(1960), - [anon_sym_DOT2] = ACTIONS(1962), - [aux_sym__val_number_decimal_token3] = ACTIONS(1964), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(1968), - [aux_sym__val_number_token5] = ACTIONS(1968), - [aux_sym__val_number_token6] = ACTIONS(1968), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(1699), - [anon_sym_out_GT] = ACTIONS(1699), - [anon_sym_e_GT] = ACTIONS(1699), - [anon_sym_o_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT] = ACTIONS(1699), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1701), + [1316] = { + [sym_comment] = STATE(1316), + [anon_sym_LBRACK] = ACTIONS(1022), + [anon_sym_COMMA] = ACTIONS(1022), + [anon_sym_RBRACK] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_GT] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_in] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1022), + [anon_sym_DOT_DOT] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_QMARK2] = ACTIONS(1022), + [anon_sym_STAR_STAR] = ACTIONS(1022), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_SLASH] = ACTIONS(1020), + [anon_sym_mod] = ACTIONS(1022), + [anon_sym_SLASH_SLASH] = ACTIONS(1022), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_bit_DASHshl] = ACTIONS(1022), + [anon_sym_bit_DASHshr] = ACTIONS(1022), + [anon_sym_EQ_EQ] = ACTIONS(1022), + [anon_sym_BANG_EQ] = ACTIONS(1022), + [anon_sym_LT2] = ACTIONS(1020), + [anon_sym_LT_EQ] = ACTIONS(1022), + [anon_sym_GT_EQ] = ACTIONS(1022), + [anon_sym_not_DASHin] = ACTIONS(1022), + [anon_sym_starts_DASHwith] = ACTIONS(1022), + [anon_sym_ends_DASHwith] = ACTIONS(1022), + [anon_sym_EQ_TILDE] = ACTIONS(1022), + [anon_sym_BANG_TILDE] = ACTIONS(1022), + [anon_sym_bit_DASHand] = ACTIONS(1022), + [anon_sym_bit_DASHxor] = ACTIONS(1022), + [anon_sym_bit_DASHor] = ACTIONS(1022), + [anon_sym_and] = ACTIONS(1022), + [anon_sym_xor] = ACTIONS(1022), + [anon_sym_or] = ACTIONS(1022), + [anon_sym_DOT] = ACTIONS(1020), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1022), + [anon_sym_DOT_DOT_LT] = ACTIONS(1022), + [anon_sym_null] = ACTIONS(1022), + [anon_sym_true] = ACTIONS(1022), + [anon_sym_false] = ACTIONS(1022), + [aux_sym__val_number_decimal_token1] = ACTIONS(1020), + [aux_sym__val_number_decimal_token2] = ACTIONS(1022), + [anon_sym_DOT2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1022), + [aux_sym__val_number_token1] = ACTIONS(1022), + [aux_sym__val_number_token2] = ACTIONS(1022), + [aux_sym__val_number_token3] = ACTIONS(1022), + [aux_sym__val_number_token4] = ACTIONS(1022), + [aux_sym__val_number_token5] = ACTIONS(1022), + [aux_sym__val_number_token6] = ACTIONS(1022), + [anon_sym_0b] = ACTIONS(1020), + [anon_sym_0o] = ACTIONS(1020), + [anon_sym_0x] = ACTIONS(1020), + [sym_val_date] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1022), + [sym__str_single_quotes] = ACTIONS(1022), + [sym__str_back_ticks] = ACTIONS(1022), + [anon_sym_err_GT] = ACTIONS(1022), + [anon_sym_out_GT] = ACTIONS(1022), + [anon_sym_e_GT] = ACTIONS(1022), + [anon_sym_o_GT] = ACTIONS(1022), + [anon_sym_err_PLUSout_GT] = ACTIONS(1022), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1022), + [anon_sym_o_PLUSe_GT] = ACTIONS(1022), + [anon_sym_e_PLUSo_GT] = ACTIONS(1022), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1020), [anon_sym_POUND] = ACTIONS(3), }, - [1084] = { - [sym__expr_unary_minus] = STATE(10486), - [sym_expr_parenthesized] = STATE(9327), - [sym_val_range] = STATE(10632), - [sym__val_range] = STATE(10567), - [sym__val_range_with_end] = STATE(10631), - [sym__value] = STATE(10632), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(9687), - [sym_val_variable] = STATE(5789), - [sym__var] = STATE(5205), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(7522), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(10327), - [sym_list_body] = STATE(11007), - [sym_val_entry] = STATE(10464), - [sym__list_item_expression] = STATE(10482), - [sym__list_item_starts_with_sign] = STATE(10484), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_short_flag] = STATE(10484), - [sym_long_flag] = STATE(10484), - [sym_long_flag_equals_value] = STATE(4310), - [sym__unquoted_in_list] = STATE(9820), - [sym__unquoted_in_list_with_expr] = STATE(10484), - [sym__unquoted_anonymous_prefix] = STATE(10279), - [sym_comment] = STATE(1084), - [aux_sym_list_body_repeat1] = STATE(1121), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_RBRACK] = ACTIONS(2326), - [anon_sym_LPAREN] = ACTIONS(1940), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(1950), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1952), - [anon_sym_DOT_DOT_LT] = ACTIONS(1952), - [anon_sym_null] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [aux_sym__val_number_decimal_token1] = ACTIONS(1958), - [aux_sym__val_number_decimal_token2] = ACTIONS(1960), - [anon_sym_DOT2] = ACTIONS(1962), - [aux_sym__val_number_decimal_token3] = ACTIONS(1964), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(1968), - [aux_sym__val_number_token5] = ACTIONS(1968), - [aux_sym__val_number_token6] = ACTIONS(1968), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(1699), - [anon_sym_out_GT] = ACTIONS(1699), - [anon_sym_e_GT] = ACTIONS(1699), - [anon_sym_o_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT] = ACTIONS(1699), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1701), - [anon_sym_POUND] = ACTIONS(3), + [1317] = { + [sym_cell_path] = STATE(2288), + [sym_path] = STATE(1319), + [sym_comment] = STATE(1317), + [ts_builtin_sym_end] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_SLASH] = ACTIONS(1002), + [anon_sym_mod] = ACTIONS(1002), + [anon_sym_SLASH_SLASH] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1002), + [anon_sym_bit_DASHshl] = ACTIONS(1002), + [anon_sym_bit_DASHshr] = ACTIONS(1002), + [anon_sym_EQ_EQ] = ACTIONS(1002), + [anon_sym_BANG_EQ] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ] = ACTIONS(1002), + [anon_sym_GT_EQ] = ACTIONS(1002), + [anon_sym_not_DASHin] = ACTIONS(1002), + [anon_sym_starts_DASHwith] = ACTIONS(1002), + [anon_sym_ends_DASHwith] = ACTIONS(1002), + [anon_sym_EQ_TILDE] = ACTIONS(1002), + [anon_sym_BANG_TILDE] = ACTIONS(1002), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT2] = ACTIONS(1002), + [anon_sym_DOT] = ACTIONS(4732), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1004), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1004), + [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), + [anon_sym_DOT2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = 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(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_POUND] = ACTIONS(113), }, - [1085] = { - [sym__expr_unary_minus] = STATE(10486), - [sym_expr_parenthesized] = STATE(9327), - [sym_val_range] = STATE(10632), - [sym__val_range] = STATE(10567), - [sym__val_range_with_end] = STATE(10631), - [sym__value] = STATE(10632), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(9687), - [sym_val_variable] = STATE(5789), - [sym__var] = STATE(5205), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(7522), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(10425), - [sym_list_body] = STATE(11283), - [sym_val_entry] = STATE(10464), - [sym__list_item_expression] = STATE(10482), - [sym__list_item_starts_with_sign] = STATE(10484), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_short_flag] = STATE(10484), - [sym_long_flag] = STATE(10484), - [sym_long_flag_equals_value] = STATE(4310), - [sym__unquoted_in_list] = STATE(9820), - [sym__unquoted_in_list_with_expr] = STATE(10484), - [sym__unquoted_anonymous_prefix] = STATE(10279), - [sym_comment] = STATE(1085), - [aux_sym_list_body_repeat1] = STATE(1121), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_RBRACK] = ACTIONS(2328), - [anon_sym_LPAREN] = ACTIONS(1940), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(1950), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1952), - [anon_sym_DOT_DOT_LT] = ACTIONS(1952), - [anon_sym_null] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [aux_sym__val_number_decimal_token1] = ACTIONS(1958), - [aux_sym__val_number_decimal_token2] = ACTIONS(1960), - [anon_sym_DOT2] = ACTIONS(1962), - [aux_sym__val_number_decimal_token3] = ACTIONS(1964), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(1968), - [aux_sym__val_number_token5] = ACTIONS(1968), - [aux_sym__val_number_token6] = ACTIONS(1968), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(1699), - [anon_sym_out_GT] = ACTIONS(1699), - [anon_sym_e_GT] = ACTIONS(1699), - [anon_sym_o_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT] = ACTIONS(1699), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1701), - [anon_sym_POUND] = ACTIONS(3), + [1318] = { + [sym_cell_path] = STATE(2360), + [sym_path] = STATE(1319), + [sym_comment] = STATE(1318), + [ts_builtin_sym_end] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym_LF] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(992), + [anon_sym_DOLLAR] = ACTIONS(992), + [anon_sym_GT] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_in] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(992), + [anon_sym_DOT_DOT] = ACTIONS(992), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_STAR_STAR] = ACTIONS(992), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_SLASH] = ACTIONS(992), + [anon_sym_mod] = ACTIONS(992), + [anon_sym_SLASH_SLASH] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_bit_DASHshl] = ACTIONS(992), + [anon_sym_bit_DASHshr] = ACTIONS(992), + [anon_sym_EQ_EQ] = ACTIONS(992), + [anon_sym_BANG_EQ] = ACTIONS(992), + [anon_sym_LT2] = ACTIONS(992), + [anon_sym_LT_EQ] = ACTIONS(992), + [anon_sym_GT_EQ] = ACTIONS(992), + [anon_sym_not_DASHin] = ACTIONS(992), + [anon_sym_starts_DASHwith] = ACTIONS(992), + [anon_sym_ends_DASHwith] = ACTIONS(992), + [anon_sym_EQ_TILDE] = ACTIONS(992), + [anon_sym_BANG_TILDE] = ACTIONS(992), + [anon_sym_bit_DASHand] = ACTIONS(992), + [anon_sym_bit_DASHxor] = ACTIONS(992), + [anon_sym_bit_DASHor] = ACTIONS(992), + [anon_sym_and] = ACTIONS(992), + [anon_sym_xor] = ACTIONS(992), + [anon_sym_or] = ACTIONS(992), + [anon_sym_not] = ACTIONS(992), + [anon_sym_DOT_DOT2] = ACTIONS(992), + [anon_sym_DOT] = ACTIONS(4732), + [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(992), + [anon_sym_true] = ACTIONS(992), + [anon_sym_false] = ACTIONS(992), + [aux_sym__val_number_decimal_token1] = ACTIONS(992), + [aux_sym__val_number_decimal_token2] = ACTIONS(992), + [anon_sym_DOT2] = ACTIONS(992), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(992), + [anon_sym_0o] = ACTIONS(992), + [anon_sym_0x] = ACTIONS(992), + [sym_val_date] = ACTIONS(992), + [anon_sym_DQUOTE] = ACTIONS(992), + [sym__str_single_quotes] = ACTIONS(992), + [sym__str_back_ticks] = ACTIONS(992), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(992), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(992), + [anon_sym_POUND] = ACTIONS(113), }, - [1086] = { - [sym__expr_unary_minus] = STATE(10486), - [sym_expr_parenthesized] = STATE(9327), - [sym_val_range] = STATE(10632), - [sym__val_range] = STATE(10567), - [sym__val_range_with_end] = STATE(10631), - [sym__value] = STATE(10632), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(9687), - [sym_val_variable] = STATE(5789), - [sym__var] = STATE(5205), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(7522), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(10385), - [sym_list_body] = STATE(11131), - [sym_val_entry] = STATE(10464), - [sym__list_item_expression] = STATE(10482), - [sym__list_item_starts_with_sign] = STATE(10484), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_short_flag] = STATE(10484), - [sym_long_flag] = STATE(10484), - [sym_long_flag_equals_value] = STATE(4310), - [sym__unquoted_in_list] = STATE(9820), - [sym__unquoted_in_list_with_expr] = STATE(10484), - [sym__unquoted_anonymous_prefix] = STATE(10279), - [sym_comment] = STATE(1086), - [aux_sym_list_body_repeat1] = STATE(1121), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_RBRACK] = ACTIONS(2330), - [anon_sym_LPAREN] = ACTIONS(1940), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(1950), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1952), - [anon_sym_DOT_DOT_LT] = ACTIONS(1952), - [anon_sym_null] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [aux_sym__val_number_decimal_token1] = ACTIONS(1958), - [aux_sym__val_number_decimal_token2] = ACTIONS(1960), - [anon_sym_DOT2] = ACTIONS(1962), - [aux_sym__val_number_decimal_token3] = ACTIONS(1964), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(1968), - [aux_sym__val_number_token5] = ACTIONS(1968), - [aux_sym__val_number_token6] = ACTIONS(1968), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(1699), - [anon_sym_out_GT] = ACTIONS(1699), - [anon_sym_e_GT] = ACTIONS(1699), - [anon_sym_o_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT] = ACTIONS(1699), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1701), + [1319] = { + [sym_path] = STATE(2057), + [sym_comment] = STATE(1319), + [aux_sym_cell_path_repeat1] = STATE(1321), + [ts_builtin_sym_end] = ACTIONS(1012), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT2] = ACTIONS(1010), + [anon_sym_DOT] = ACTIONS(4732), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), + [anon_sym_null] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym__val_number_decimal_token1] = ACTIONS(1010), + [aux_sym__val_number_decimal_token2] = ACTIONS(1010), + [anon_sym_DOT2] = ACTIONS(1010), + [aux_sym__val_number_decimal_token3] = 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(1010), + [aux_sym__val_number_token5] = ACTIONS(1010), + [aux_sym__val_number_token6] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [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_POUND] = ACTIONS(113), + }, + [1320] = { + [sym_comment] = STATE(1320), + [anon_sym_LBRACK] = ACTIONS(1022), + [anon_sym_COMMA] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_GT] = ACTIONS(1020), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_in] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1022), + [anon_sym_RBRACE] = ACTIONS(1022), + [anon_sym__] = ACTIONS(1020), + [anon_sym_DOT_DOT] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_QMARK2] = ACTIONS(1022), + [anon_sym_STAR_STAR] = ACTIONS(1022), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_SLASH] = ACTIONS(1020), + [anon_sym_mod] = ACTIONS(1022), + [anon_sym_SLASH_SLASH] = ACTIONS(1022), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_bit_DASHshl] = ACTIONS(1022), + [anon_sym_bit_DASHshr] = ACTIONS(1022), + [anon_sym_EQ_EQ] = ACTIONS(1022), + [anon_sym_BANG_EQ] = ACTIONS(1022), + [anon_sym_LT2] = ACTIONS(1020), + [anon_sym_LT_EQ] = ACTIONS(1022), + [anon_sym_GT_EQ] = ACTIONS(1022), + [anon_sym_not_DASHin] = ACTIONS(1022), + [anon_sym_starts_DASHwith] = ACTIONS(1022), + [anon_sym_ends_DASHwith] = ACTIONS(1022), + [anon_sym_EQ_TILDE] = ACTIONS(1022), + [anon_sym_BANG_TILDE] = ACTIONS(1022), + [anon_sym_bit_DASHand] = ACTIONS(1022), + [anon_sym_bit_DASHxor] = ACTIONS(1022), + [anon_sym_bit_DASHor] = ACTIONS(1022), + [anon_sym_and] = ACTIONS(1022), + [anon_sym_xor] = ACTIONS(1022), + [anon_sym_or] = ACTIONS(1022), + [anon_sym_DOT] = ACTIONS(1020), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1022), + [anon_sym_DOT_DOT_LT] = ACTIONS(1022), + [anon_sym_null] = ACTIONS(1022), + [anon_sym_true] = ACTIONS(1022), + [anon_sym_false] = ACTIONS(1022), + [aux_sym__val_number_decimal_token1] = ACTIONS(1020), + [aux_sym__val_number_decimal_token2] = ACTIONS(1022), + [anon_sym_DOT2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1022), + [aux_sym__val_number_token1] = ACTIONS(1022), + [aux_sym__val_number_token2] = ACTIONS(1022), + [aux_sym__val_number_token3] = ACTIONS(1022), + [aux_sym__val_number_token4] = ACTIONS(1022), + [aux_sym__val_number_token5] = ACTIONS(1022), + [aux_sym__val_number_token6] = ACTIONS(1022), + [anon_sym_0b] = ACTIONS(1020), + [anon_sym_0o] = ACTIONS(1020), + [anon_sym_0x] = ACTIONS(1020), + [sym_val_date] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1022), + [sym__str_single_quotes] = ACTIONS(1022), + [sym__str_back_ticks] = ACTIONS(1022), + [anon_sym_err_GT] = ACTIONS(1022), + [anon_sym_out_GT] = ACTIONS(1022), + [anon_sym_e_GT] = ACTIONS(1022), + [anon_sym_o_GT] = ACTIONS(1022), + [anon_sym_err_PLUSout_GT] = ACTIONS(1022), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1022), + [anon_sym_o_PLUSe_GT] = ACTIONS(1022), + [anon_sym_e_PLUSo_GT] = ACTIONS(1022), + [aux_sym_unquoted_token1] = ACTIONS(1020), [anon_sym_POUND] = ACTIONS(3), }, - [1087] = { - [sym__expr_parenthesized_immediate] = STATE(1576), - [sym__immediate_decimal] = STATE(1286), - [sym_val_variable] = STATE(1576), - [sym__var] = STATE(1262), - [sym_comment] = STATE(1087), - [ts_builtin_sym_end] = ACTIONS(938), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(1982), - [anon_sym_error] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_as] = ACTIONS(936), - [anon_sym_where] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_LPAREN2] = ACTIONS(1984), - [anon_sym_DOT] = ACTIONS(2332), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [aux_sym__immediate_decimal_token1] = ACTIONS(2334), - [aux_sym__immediate_decimal_token3] = ACTIONS(2334), - [aux_sym__immediate_decimal_token4] = ACTIONS(2336), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [aux_sym_unquoted_token3] = ACTIONS(2338), - [aux_sym_unquoted_token5] = ACTIONS(2340), + [1321] = { + [sym_path] = STATE(2057), + [sym_comment] = STATE(1321), + [aux_sym_cell_path_repeat1] = STATE(1327), + [ts_builtin_sym_end] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1006), + [anon_sym_LF] = ACTIONS(1008), + [anon_sym_LBRACK] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1006), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_GT] = ACTIONS(1006), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_in] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_DOT_DOT] = ACTIONS(1006), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_STAR_STAR] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_mod] = ACTIONS(1006), + [anon_sym_SLASH_SLASH] = ACTIONS(1006), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_bit_DASHshl] = ACTIONS(1006), + [anon_sym_bit_DASHshr] = ACTIONS(1006), + [anon_sym_EQ_EQ] = ACTIONS(1006), + [anon_sym_BANG_EQ] = ACTIONS(1006), + [anon_sym_LT2] = ACTIONS(1006), + [anon_sym_LT_EQ] = ACTIONS(1006), + [anon_sym_GT_EQ] = ACTIONS(1006), + [anon_sym_not_DASHin] = ACTIONS(1006), + [anon_sym_starts_DASHwith] = ACTIONS(1006), + [anon_sym_ends_DASHwith] = ACTIONS(1006), + [anon_sym_EQ_TILDE] = ACTIONS(1006), + [anon_sym_BANG_TILDE] = ACTIONS(1006), + [anon_sym_bit_DASHand] = ACTIONS(1006), + [anon_sym_bit_DASHxor] = ACTIONS(1006), + [anon_sym_bit_DASHor] = ACTIONS(1006), + [anon_sym_and] = ACTIONS(1006), + [anon_sym_xor] = ACTIONS(1006), + [anon_sym_or] = ACTIONS(1006), + [anon_sym_not] = ACTIONS(1006), + [anon_sym_DOT_DOT2] = ACTIONS(1006), + [anon_sym_DOT] = ACTIONS(4732), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), + [anon_sym_DOT_DOT_LT] = ACTIONS(1006), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), + [anon_sym_null] = ACTIONS(1006), + [anon_sym_true] = ACTIONS(1006), + [anon_sym_false] = ACTIONS(1006), + [aux_sym__val_number_decimal_token1] = ACTIONS(1006), + [aux_sym__val_number_decimal_token2] = ACTIONS(1006), + [anon_sym_DOT2] = ACTIONS(1006), + [aux_sym__val_number_decimal_token3] = ACTIONS(1006), + [aux_sym__val_number_token1] = ACTIONS(1006), + [aux_sym__val_number_token2] = ACTIONS(1006), + [aux_sym__val_number_token3] = ACTIONS(1006), + [aux_sym__val_number_token4] = ACTIONS(1006), + [aux_sym__val_number_token5] = ACTIONS(1006), + [aux_sym__val_number_token6] = ACTIONS(1006), + [anon_sym_0b] = ACTIONS(1006), + [anon_sym_0o] = ACTIONS(1006), + [anon_sym_0x] = ACTIONS(1006), + [sym_val_date] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym__str_single_quotes] = ACTIONS(1006), + [sym__str_back_ticks] = ACTIONS(1006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1006), [anon_sym_POUND] = ACTIONS(113), }, - [1088] = { - [sym__expr_parenthesized_immediate] = STATE(1547), - [sym__immediate_decimal] = STATE(1326), - [sym_val_variable] = STATE(1547), - [sym__var] = STATE(1262), - [sym_comment] = STATE(1088), - [ts_builtin_sym_end] = ACTIONS(1922), - [anon_sym_export] = ACTIONS(1920), - [anon_sym_alias] = ACTIONS(1920), - [anon_sym_let] = ACTIONS(1920), - [anon_sym_let_DASHenv] = ACTIONS(1920), - [anon_sym_mut] = ACTIONS(1920), - [anon_sym_const] = ACTIONS(1920), - [anon_sym_SEMI] = ACTIONS(1920), - [sym_cmd_identifier] = ACTIONS(1920), - [anon_sym_LF] = ACTIONS(1922), - [anon_sym_def] = ACTIONS(1920), - [anon_sym_export_DASHenv] = ACTIONS(1920), - [anon_sym_extern] = ACTIONS(1920), - [anon_sym_module] = ACTIONS(1920), - [anon_sym_use] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1920), - [anon_sym_DOLLAR] = ACTIONS(1982), - [anon_sym_error] = ACTIONS(1920), - [anon_sym_DASH_DASH] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1920), - [anon_sym_break] = ACTIONS(1920), - [anon_sym_continue] = ACTIONS(1920), - [anon_sym_for] = ACTIONS(1920), - [anon_sym_loop] = ACTIONS(1920), - [anon_sym_while] = ACTIONS(1920), - [anon_sym_do] = ACTIONS(1920), - [anon_sym_if] = ACTIONS(1920), - [anon_sym_match] = ACTIONS(1920), - [anon_sym_LBRACE] = ACTIONS(1920), - [anon_sym_DOT_DOT] = ACTIONS(1920), - [anon_sym_try] = ACTIONS(1920), - [anon_sym_return] = ACTIONS(1920), - [anon_sym_source] = ACTIONS(1920), - [anon_sym_source_DASHenv] = ACTIONS(1920), - [anon_sym_register] = ACTIONS(1920), - [anon_sym_hide] = ACTIONS(1920), - [anon_sym_hide_DASHenv] = ACTIONS(1920), - [anon_sym_overlay] = ACTIONS(1920), - [anon_sym_as] = ACTIONS(1920), - [anon_sym_where] = ACTIONS(1920), - [anon_sym_not] = ACTIONS(1920), - [anon_sym_LPAREN2] = ACTIONS(1984), - [anon_sym_DOT] = ACTIONS(2342), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1920), - [anon_sym_DOT_DOT_LT] = ACTIONS(1920), - [aux_sym__immediate_decimal_token1] = ACTIONS(1988), - [aux_sym__immediate_decimal_token3] = ACTIONS(1988), - [aux_sym__immediate_decimal_token4] = ACTIONS(1990), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_true] = ACTIONS(1920), - [anon_sym_false] = ACTIONS(1920), - [aux_sym__val_number_decimal_token1] = ACTIONS(1920), - [aux_sym__val_number_decimal_token2] = ACTIONS(1920), - [anon_sym_DOT2] = ACTIONS(1920), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_token1] = ACTIONS(1920), - [aux_sym__val_number_token2] = ACTIONS(1920), - [aux_sym__val_number_token3] = ACTIONS(1920), - [aux_sym__val_number_token4] = ACTIONS(1920), - [aux_sym__val_number_token5] = ACTIONS(1920), - [aux_sym__val_number_token6] = ACTIONS(1920), - [anon_sym_0b] = ACTIONS(1920), - [anon_sym_0o] = ACTIONS(1920), - [anon_sym_0x] = ACTIONS(1920), - [sym_val_date] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym__str_single_quotes] = ACTIONS(1920), - [sym__str_back_ticks] = ACTIONS(1920), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1920), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1920), - [anon_sym_CARET] = ACTIONS(1920), - [aux_sym_unquoted_token2] = ACTIONS(1934), + [1322] = { + [sym_cell_path] = STATE(2363), + [sym_path] = STATE(1265), + [sym_comment] = STATE(1322), + [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), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [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_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT] = ACTIONS(3954), + [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), + [anon_sym_DOT2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = 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(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_CARET] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(113), }, - [1089] = { - [sym_comment] = STATE(1089), - [anon_sym_export] = ACTIONS(923), - [anon_sym_alias] = ACTIONS(923), - [anon_sym_let] = ACTIONS(923), - [anon_sym_let_DASHenv] = ACTIONS(923), - [anon_sym_mut] = ACTIONS(923), - [anon_sym_const] = ACTIONS(923), - [anon_sym_SEMI] = ACTIONS(923), - [sym_cmd_identifier] = ACTIONS(923), - [anon_sym_LF] = ACTIONS(925), - [anon_sym_def] = ACTIONS(923), - [anon_sym_export_DASHenv] = ACTIONS(923), - [anon_sym_extern] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_use] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_RPAREN] = ACTIONS(923), - [anon_sym_DOLLAR] = ACTIONS(923), - [anon_sym_error] = ACTIONS(923), - [anon_sym_DASH_DASH] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_break] = ACTIONS(923), - [anon_sym_continue] = ACTIONS(923), - [anon_sym_for] = ACTIONS(923), - [anon_sym_loop] = ACTIONS(923), - [anon_sym_while] = ACTIONS(923), - [anon_sym_do] = ACTIONS(923), - [anon_sym_if] = ACTIONS(923), - [anon_sym_match] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(923), - [anon_sym_RBRACE] = ACTIONS(923), - [anon_sym_DOT_DOT] = ACTIONS(923), - [anon_sym_try] = ACTIONS(923), - [anon_sym_return] = ACTIONS(923), - [anon_sym_source] = ACTIONS(923), - [anon_sym_source_DASHenv] = ACTIONS(923), - [anon_sym_register] = ACTIONS(923), - [anon_sym_hide] = ACTIONS(923), - [anon_sym_hide_DASHenv] = ACTIONS(923), - [anon_sym_overlay] = ACTIONS(923), - [anon_sym_as] = ACTIONS(923), - [anon_sym_where] = ACTIONS(923), - [anon_sym_not] = ACTIONS(923), - [anon_sym_LPAREN2] = ACTIONS(925), - [anon_sym_DOT_DOT2] = ACTIONS(923), - [anon_sym_DOT] = ACTIONS(2344), - [anon_sym_DOT_DOT_EQ] = ACTIONS(923), - [anon_sym_DOT_DOT_LT] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(925), - [anon_sym_DOT_DOT_LT2] = ACTIONS(925), - [aux_sym__immediate_decimal_token2] = ACTIONS(2347), - [anon_sym_null] = ACTIONS(923), - [anon_sym_true] = ACTIONS(923), - [anon_sym_false] = ACTIONS(923), - [aux_sym__val_number_decimal_token1] = ACTIONS(923), - [aux_sym__val_number_decimal_token2] = ACTIONS(923), - [anon_sym_DOT2] = ACTIONS(923), - [aux_sym__val_number_decimal_token3] = ACTIONS(923), - [aux_sym__val_number_token1] = ACTIONS(923), - [aux_sym__val_number_token2] = ACTIONS(923), - [aux_sym__val_number_token3] = ACTIONS(923), - [aux_sym__val_number_token4] = ACTIONS(923), - [aux_sym__val_number_token5] = ACTIONS(923), - [aux_sym__val_number_token6] = ACTIONS(923), - [anon_sym_0b] = ACTIONS(923), - [sym_filesize_unit] = ACTIONS(923), - [sym_duration_unit] = ACTIONS(923), - [anon_sym_0o] = ACTIONS(923), - [anon_sym_0x] = ACTIONS(923), - [sym_val_date] = ACTIONS(923), - [anon_sym_DQUOTE] = ACTIONS(923), - [sym__str_single_quotes] = ACTIONS(923), - [sym__str_back_ticks] = ACTIONS(923), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(923), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), - [anon_sym_CARET] = ACTIONS(923), - [aux_sym_unquoted_token5] = ACTIONS(923), + [1323] = { + [sym_comment] = STATE(1323), + [anon_sym_export] = ACTIONS(4734), + [anon_sym_alias] = ACTIONS(4734), + [anon_sym_let] = ACTIONS(4734), + [anon_sym_let_DASHenv] = ACTIONS(4734), + [anon_sym_mut] = ACTIONS(4734), + [anon_sym_const] = ACTIONS(4734), + [anon_sym_SEMI] = ACTIONS(4734), + [sym_cmd_identifier] = ACTIONS(4734), + [sym_long_flag_identifier] = ACTIONS(4736), + [anon_sym_LF] = ACTIONS(4738), + [anon_sym_def] = ACTIONS(4734), + [anon_sym_export_DASHenv] = ACTIONS(4734), + [anon_sym_extern] = ACTIONS(4734), + [anon_sym_module] = ACTIONS(4734), + [anon_sym_use] = ACTIONS(4734), + [anon_sym_LBRACK] = ACTIONS(4734), + [anon_sym_LPAREN] = ACTIONS(4734), + [anon_sym_RPAREN] = ACTIONS(4734), + [anon_sym_DOLLAR] = ACTIONS(4734), + [anon_sym_error] = ACTIONS(4734), + [anon_sym_DASH_DASH] = ACTIONS(4734), + [anon_sym_DASH] = ACTIONS(4734), + [anon_sym_break] = ACTIONS(4734), + [anon_sym_continue] = ACTIONS(4734), + [anon_sym_for] = ACTIONS(4734), + [anon_sym_loop] = ACTIONS(4734), + [anon_sym_while] = ACTIONS(4734), + [anon_sym_do] = ACTIONS(4734), + [anon_sym_if] = ACTIONS(4734), + [anon_sym_match] = ACTIONS(4734), + [anon_sym_LBRACE] = ACTIONS(4734), + [anon_sym_RBRACE] = ACTIONS(4734), + [anon_sym_DOT_DOT] = ACTIONS(4734), + [anon_sym_try] = ACTIONS(4734), + [anon_sym_return] = ACTIONS(4734), + [anon_sym_source] = ACTIONS(4734), + [anon_sym_source_DASHenv] = ACTIONS(4734), + [anon_sym_register] = ACTIONS(4734), + [anon_sym_hide] = ACTIONS(4734), + [anon_sym_hide_DASHenv] = ACTIONS(4734), + [anon_sym_overlay] = ACTIONS(4734), + [anon_sym_as] = ACTIONS(4734), + [anon_sym_where] = ACTIONS(4734), + [anon_sym_not] = ACTIONS(4734), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4734), + [anon_sym_DOT_DOT_LT] = ACTIONS(4734), + [anon_sym_null] = ACTIONS(4734), + [anon_sym_true] = ACTIONS(4734), + [anon_sym_false] = ACTIONS(4734), + [aux_sym__val_number_decimal_token1] = ACTIONS(4734), + [aux_sym__val_number_decimal_token2] = ACTIONS(4734), + [anon_sym_DOT2] = ACTIONS(4734), + [aux_sym__val_number_decimal_token3] = ACTIONS(4734), + [aux_sym__val_number_token1] = ACTIONS(4734), + [aux_sym__val_number_token2] = ACTIONS(4734), + [aux_sym__val_number_token3] = ACTIONS(4734), + [aux_sym__val_number_token4] = ACTIONS(4734), + [aux_sym__val_number_token5] = ACTIONS(4734), + [aux_sym__val_number_token6] = ACTIONS(4734), + [anon_sym_0b] = ACTIONS(4734), + [anon_sym_0o] = ACTIONS(4734), + [anon_sym_0x] = ACTIONS(4734), + [sym_val_date] = ACTIONS(4734), + [anon_sym_DQUOTE] = ACTIONS(4734), + [sym__str_single_quotes] = ACTIONS(4734), + [sym__str_back_ticks] = ACTIONS(4734), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4734), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4734), + [anon_sym_CARET] = ACTIONS(4734), [anon_sym_POUND] = ACTIONS(113), }, - [1090] = { - [sym__expr_parenthesized_immediate] = STATE(1785), - [sym__immediate_decimal] = STATE(1786), - [sym_val_variable] = STATE(1785), - [sym__var] = STATE(1373), - [sym_comment] = STATE(1090), - [anon_sym_export] = ACTIONS(2349), - [anon_sym_alias] = ACTIONS(2349), - [anon_sym_let] = ACTIONS(2349), - [anon_sym_let_DASHenv] = ACTIONS(2349), - [anon_sym_mut] = ACTIONS(2349), - [anon_sym_const] = ACTIONS(2349), - [anon_sym_SEMI] = ACTIONS(2349), - [sym_cmd_identifier] = ACTIONS(2349), - [anon_sym_LF] = ACTIONS(2351), - [anon_sym_def] = ACTIONS(2349), - [anon_sym_export_DASHenv] = ACTIONS(2349), - [anon_sym_extern] = ACTIONS(2349), - [anon_sym_module] = ACTIONS(2349), - [anon_sym_use] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(2349), - [anon_sym_RPAREN] = ACTIONS(2349), - [anon_sym_DOLLAR] = ACTIONS(1924), - [anon_sym_error] = ACTIONS(2349), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2349), - [anon_sym_break] = ACTIONS(2349), - [anon_sym_continue] = ACTIONS(2349), - [anon_sym_for] = ACTIONS(2349), - [anon_sym_loop] = ACTIONS(2349), - [anon_sym_while] = ACTIONS(2349), - [anon_sym_do] = ACTIONS(2349), - [anon_sym_if] = ACTIONS(2349), - [anon_sym_match] = ACTIONS(2349), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_DOT_DOT] = ACTIONS(2349), - [anon_sym_try] = ACTIONS(2349), - [anon_sym_return] = ACTIONS(2349), - [anon_sym_source] = ACTIONS(2349), - [anon_sym_source_DASHenv] = ACTIONS(2349), - [anon_sym_register] = ACTIONS(2349), - [anon_sym_hide] = ACTIONS(2349), - [anon_sym_hide_DASHenv] = ACTIONS(2349), - [anon_sym_overlay] = ACTIONS(2349), - [anon_sym_as] = ACTIONS(2349), - [anon_sym_where] = ACTIONS(2349), - [anon_sym_not] = ACTIONS(2349), - [anon_sym_LPAREN2] = ACTIONS(1926), - [anon_sym_DOT] = ACTIONS(2353), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2349), - [anon_sym_DOT_DOT_LT] = ACTIONS(2349), - [aux_sym__immediate_decimal_token1] = ACTIONS(2355), - [aux_sym__immediate_decimal_token3] = ACTIONS(2355), - [aux_sym__immediate_decimal_token4] = ACTIONS(2357), - [anon_sym_null] = ACTIONS(2349), - [anon_sym_true] = ACTIONS(2349), - [anon_sym_false] = ACTIONS(2349), - [aux_sym__val_number_decimal_token1] = ACTIONS(2349), - [aux_sym__val_number_decimal_token2] = ACTIONS(2349), - [anon_sym_DOT2] = ACTIONS(2349), - [aux_sym__val_number_decimal_token3] = ACTIONS(2349), - [aux_sym__val_number_token1] = ACTIONS(2349), - [aux_sym__val_number_token2] = ACTIONS(2349), - [aux_sym__val_number_token3] = ACTIONS(2349), - [aux_sym__val_number_token4] = ACTIONS(2349), - [aux_sym__val_number_token5] = ACTIONS(2349), - [aux_sym__val_number_token6] = ACTIONS(2349), - [anon_sym_0b] = ACTIONS(2349), - [anon_sym_0o] = ACTIONS(2349), - [anon_sym_0x] = ACTIONS(2349), - [sym_val_date] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym__str_single_quotes] = ACTIONS(2349), - [sym__str_back_ticks] = ACTIONS(2349), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2349), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2349), - [anon_sym_CARET] = ACTIONS(2349), - [anon_sym_POUND] = ACTIONS(113), + [1324] = { + [sym_comment] = STATE(1324), + [anon_sym_LBRACK] = ACTIONS(922), + [anon_sym_COMMA] = ACTIONS(922), + [anon_sym_RBRACK] = ACTIONS(922), + [anon_sym_LPAREN] = ACTIONS(922), + [anon_sym_DOLLAR] = ACTIONS(922), + [anon_sym_GT] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_in] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_STAR_STAR] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_mod] = ACTIONS(922), + [anon_sym_SLASH_SLASH] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_bit_DASHshl] = ACTIONS(922), + [anon_sym_bit_DASHshr] = ACTIONS(922), + [anon_sym_EQ_EQ] = ACTIONS(922), + [anon_sym_BANG_EQ] = ACTIONS(922), + [anon_sym_LT2] = ACTIONS(920), + [anon_sym_LT_EQ] = ACTIONS(922), + [anon_sym_GT_EQ] = ACTIONS(922), + [anon_sym_not_DASHin] = ACTIONS(922), + [anon_sym_starts_DASHwith] = ACTIONS(922), + [anon_sym_ends_DASHwith] = ACTIONS(922), + [anon_sym_EQ_TILDE] = ACTIONS(922), + [anon_sym_BANG_TILDE] = ACTIONS(922), + [anon_sym_bit_DASHand] = ACTIONS(922), + [anon_sym_bit_DASHxor] = ACTIONS(922), + [anon_sym_bit_DASHor] = ACTIONS(922), + [anon_sym_and] = ACTIONS(922), + [anon_sym_xor] = ACTIONS(922), + [anon_sym_or] = ACTIONS(922), + [anon_sym_DOT_DOT_EQ] = ACTIONS(922), + [anon_sym_DOT_DOT_LT] = ACTIONS(922), + [aux_sym__immediate_decimal_token1] = ACTIONS(4740), + [anon_sym_null] = ACTIONS(922), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(922), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(922), + [aux_sym__val_number_token1] = ACTIONS(922), + [aux_sym__val_number_token2] = ACTIONS(922), + [aux_sym__val_number_token3] = ACTIONS(922), + [aux_sym__val_number_token4] = ACTIONS(922), + [aux_sym__val_number_token5] = ACTIONS(922), + [aux_sym__val_number_token6] = ACTIONS(922), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(922), + [anon_sym_DQUOTE] = ACTIONS(922), + [sym__str_single_quotes] = ACTIONS(922), + [sym__str_back_ticks] = ACTIONS(922), + [anon_sym_err_GT] = ACTIONS(922), + [anon_sym_out_GT] = ACTIONS(922), + [anon_sym_e_GT] = ACTIONS(922), + [anon_sym_o_GT] = ACTIONS(922), + [anon_sym_err_PLUSout_GT] = ACTIONS(922), + [anon_sym_out_PLUSerr_GT] = ACTIONS(922), + [anon_sym_o_PLUSe_GT] = ACTIONS(922), + [anon_sym_e_PLUSo_GT] = ACTIONS(922), + [aux_sym_unquoted_token2] = ACTIONS(4742), + [aux_sym__unquoted_in_list_token1] = ACTIONS(920), + [anon_sym_POUND] = ACTIONS(3), }, - [1091] = { - [sym__expr_parenthesized_immediate] = STATE(1787), - [sym__immediate_decimal] = STATE(1788), - [sym_val_variable] = STATE(1787), - [sym__var] = STATE(1373), - [sym_comment] = STATE(1091), - [anon_sym_export] = ACTIONS(2359), - [anon_sym_alias] = ACTIONS(2359), - [anon_sym_let] = ACTIONS(2359), - [anon_sym_let_DASHenv] = ACTIONS(2359), - [anon_sym_mut] = ACTIONS(2359), - [anon_sym_const] = ACTIONS(2359), - [anon_sym_SEMI] = ACTIONS(2359), - [sym_cmd_identifier] = ACTIONS(2359), - [anon_sym_LF] = ACTIONS(2361), - [anon_sym_def] = ACTIONS(2359), - [anon_sym_export_DASHenv] = ACTIONS(2359), - [anon_sym_extern] = ACTIONS(2359), - [anon_sym_module] = ACTIONS(2359), - [anon_sym_use] = ACTIONS(2359), - [anon_sym_LBRACK] = ACTIONS(2359), - [anon_sym_LPAREN] = ACTIONS(2359), - [anon_sym_RPAREN] = ACTIONS(2359), - [anon_sym_DOLLAR] = ACTIONS(1924), - [anon_sym_error] = ACTIONS(2359), - [anon_sym_DASH_DASH] = ACTIONS(2359), - [anon_sym_DASH] = ACTIONS(2359), - [anon_sym_break] = ACTIONS(2359), - [anon_sym_continue] = ACTIONS(2359), - [anon_sym_for] = ACTIONS(2359), - [anon_sym_loop] = ACTIONS(2359), - [anon_sym_while] = ACTIONS(2359), - [anon_sym_do] = ACTIONS(2359), - [anon_sym_if] = ACTIONS(2359), - [anon_sym_match] = ACTIONS(2359), - [anon_sym_LBRACE] = ACTIONS(2359), - [anon_sym_RBRACE] = ACTIONS(2359), - [anon_sym_DOT_DOT] = ACTIONS(2359), - [anon_sym_try] = ACTIONS(2359), - [anon_sym_return] = ACTIONS(2359), - [anon_sym_source] = ACTIONS(2359), - [anon_sym_source_DASHenv] = ACTIONS(2359), - [anon_sym_register] = ACTIONS(2359), - [anon_sym_hide] = ACTIONS(2359), - [anon_sym_hide_DASHenv] = ACTIONS(2359), - [anon_sym_overlay] = ACTIONS(2359), - [anon_sym_as] = ACTIONS(2359), - [anon_sym_where] = ACTIONS(2359), - [anon_sym_not] = ACTIONS(2359), - [anon_sym_LPAREN2] = ACTIONS(1926), - [anon_sym_DOT] = ACTIONS(2353), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2359), - [anon_sym_DOT_DOT_LT] = ACTIONS(2359), - [aux_sym__immediate_decimal_token1] = ACTIONS(2355), - [aux_sym__immediate_decimal_token3] = ACTIONS(2355), - [aux_sym__immediate_decimal_token4] = ACTIONS(2357), - [anon_sym_null] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(2359), - [anon_sym_false] = ACTIONS(2359), - [aux_sym__val_number_decimal_token1] = ACTIONS(2359), - [aux_sym__val_number_decimal_token2] = ACTIONS(2359), - [anon_sym_DOT2] = ACTIONS(2359), - [aux_sym__val_number_decimal_token3] = ACTIONS(2359), - [aux_sym__val_number_token1] = ACTIONS(2359), - [aux_sym__val_number_token2] = ACTIONS(2359), - [aux_sym__val_number_token3] = ACTIONS(2359), - [aux_sym__val_number_token4] = ACTIONS(2359), - [aux_sym__val_number_token5] = ACTIONS(2359), - [aux_sym__val_number_token6] = ACTIONS(2359), - [anon_sym_0b] = ACTIONS(2359), - [anon_sym_0o] = ACTIONS(2359), - [anon_sym_0x] = ACTIONS(2359), - [sym_val_date] = ACTIONS(2359), - [anon_sym_DQUOTE] = ACTIONS(2359), - [sym__str_single_quotes] = ACTIONS(2359), - [sym__str_back_ticks] = ACTIONS(2359), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2359), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2359), - [anon_sym_CARET] = ACTIONS(2359), + [1325] = { + [sym_comment] = STATE(1325), + [anon_sym_export] = ACTIONS(920), + [anon_sym_alias] = ACTIONS(920), + [anon_sym_let] = ACTIONS(920), + [anon_sym_let_DASHenv] = ACTIONS(920), + [anon_sym_mut] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(920), + [sym_cmd_identifier] = ACTIONS(920), + [anon_sym_LF] = ACTIONS(922), + [anon_sym_def] = ACTIONS(920), + [anon_sym_export_DASHenv] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym_module] = ACTIONS(920), + [anon_sym_use] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_RPAREN] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_error] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_loop] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_match] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_RBRACE] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_try] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_source] = ACTIONS(920), + [anon_sym_source_DASHenv] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_hide] = ACTIONS(920), + [anon_sym_hide_DASHenv] = ACTIONS(920), + [anon_sym_overlay] = ACTIONS(920), + [anon_sym_as] = ACTIONS(920), + [anon_sym_where] = ACTIONS(920), + [anon_sym_not] = ACTIONS(920), + [anon_sym_LPAREN2] = ACTIONS(922), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [anon_sym_null] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), + [anon_sym_CARET] = ACTIONS(920), [anon_sym_POUND] = ACTIONS(113), }, - [1092] = { - [sym_comment] = STATE(1092), - [ts_builtin_sym_end] = ACTIONS(911), - [anon_sym_export] = ACTIONS(909), - [anon_sym_alias] = ACTIONS(909), - [anon_sym_let] = ACTIONS(909), - [anon_sym_let_DASHenv] = ACTIONS(909), - [anon_sym_mut] = ACTIONS(909), - [anon_sym_const] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(909), - [sym_cmd_identifier] = ACTIONS(909), - [anon_sym_LF] = ACTIONS(911), - [anon_sym_def] = ACTIONS(909), - [anon_sym_export_DASHenv] = ACTIONS(909), - [anon_sym_extern] = ACTIONS(909), - [anon_sym_module] = ACTIONS(909), - [anon_sym_use] = ACTIONS(909), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_error] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_break] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_for] = ACTIONS(909), - [anon_sym_loop] = ACTIONS(909), - [anon_sym_while] = ACTIONS(909), - [anon_sym_do] = ACTIONS(909), - [anon_sym_if] = ACTIONS(909), - [anon_sym_match] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_DOT_DOT] = ACTIONS(909), - [anon_sym_try] = ACTIONS(909), - [anon_sym_return] = ACTIONS(909), - [anon_sym_source] = ACTIONS(909), - [anon_sym_source_DASHenv] = ACTIONS(909), - [anon_sym_register] = ACTIONS(909), - [anon_sym_hide] = ACTIONS(909), - [anon_sym_hide_DASHenv] = ACTIONS(909), - [anon_sym_overlay] = ACTIONS(909), - [anon_sym_as] = ACTIONS(909), - [anon_sym_where] = ACTIONS(909), - [anon_sym_not] = ACTIONS(909), - [anon_sym_LPAREN2] = ACTIONS(911), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [aux_sym__immediate_decimal_token1] = ACTIONS(2363), - [aux_sym__immediate_decimal_token2] = ACTIONS(2365), - [anon_sym_null] = ACTIONS(909), - [anon_sym_true] = ACTIONS(909), - [anon_sym_false] = ACTIONS(909), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(909), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(909), - [aux_sym__val_number_token1] = ACTIONS(909), - [aux_sym__val_number_token2] = ACTIONS(909), - [aux_sym__val_number_token3] = ACTIONS(909), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(909), - [aux_sym__val_number_token6] = ACTIONS(909), - [anon_sym_0b] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(909), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym__str_single_quotes] = ACTIONS(909), - [sym__str_back_ticks] = ACTIONS(909), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), - [anon_sym_CARET] = ACTIONS(909), - [aux_sym_unquoted_token5] = ACTIONS(909), + [1326] = { + [sym__immediate_decimal] = STATE(10080), + [sym_comment] = STATE(1326), + [ts_builtin_sym_end] = ACTIONS(922), + [anon_sym_SEMI] = ACTIONS(920), + [anon_sym_LF] = ACTIONS(922), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_PIPE] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_in] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_STAR_STAR] = ACTIONS(920), + [anon_sym_PLUS_PLUS] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_mod] = ACTIONS(920), + [anon_sym_SLASH_SLASH] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_bit_DASHshl] = ACTIONS(920), + [anon_sym_bit_DASHshr] = ACTIONS(920), + [anon_sym_EQ_EQ] = ACTIONS(920), + [anon_sym_BANG_EQ] = ACTIONS(920), + [anon_sym_LT2] = ACTIONS(920), + [anon_sym_LT_EQ] = ACTIONS(920), + [anon_sym_GT_EQ] = ACTIONS(920), + [anon_sym_not_DASHin] = ACTIONS(920), + [anon_sym_starts_DASHwith] = ACTIONS(920), + [anon_sym_ends_DASHwith] = ACTIONS(920), + [anon_sym_EQ_TILDE] = ACTIONS(920), + [anon_sym_BANG_TILDE] = ACTIONS(920), + [anon_sym_bit_DASHand] = ACTIONS(920), + [anon_sym_bit_DASHxor] = ACTIONS(920), + [anon_sym_bit_DASHor] = ACTIONS(920), + [anon_sym_and] = ACTIONS(920), + [anon_sym_xor] = ACTIONS(920), + [anon_sym_or] = ACTIONS(920), + [anon_sym_not] = ACTIONS(920), + [anon_sym_DOT] = ACTIONS(967), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [aux_sym__immediate_decimal_token1] = ACTIONS(969), + [aux_sym__immediate_decimal_token3] = ACTIONS(969), + [aux_sym__immediate_decimal_token4] = ACTIONS(971), + [anon_sym_null] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), + [aux_sym_unquoted_token4] = ACTIONS(3839), [anon_sym_POUND] = ACTIONS(113), }, - [1093] = { - [sym__expr_parenthesized_immediate] = STATE(2489), - [sym__immediate_decimal] = STATE(1649), - [sym_val_variable] = STATE(2489), - [sym__var] = STATE(1498), - [sym_comment] = STATE(1093), - [ts_builtin_sym_end] = ACTIONS(2004), - [anon_sym_export] = ACTIONS(2002), - [anon_sym_alias] = ACTIONS(2002), - [anon_sym_let] = ACTIONS(2002), - [anon_sym_let_DASHenv] = ACTIONS(2002), - [anon_sym_mut] = ACTIONS(2002), - [anon_sym_const] = ACTIONS(2002), - [anon_sym_SEMI] = ACTIONS(2002), - [sym_cmd_identifier] = ACTIONS(2002), - [anon_sym_LF] = ACTIONS(2004), - [anon_sym_def] = ACTIONS(2002), - [anon_sym_export_DASHenv] = ACTIONS(2002), - [anon_sym_extern] = ACTIONS(2002), - [anon_sym_module] = ACTIONS(2002), - [anon_sym_use] = ACTIONS(2002), - [anon_sym_LBRACK] = ACTIONS(2002), - [anon_sym_LPAREN] = ACTIONS(2002), - [anon_sym_DOLLAR] = ACTIONS(2367), - [anon_sym_error] = ACTIONS(2002), - [anon_sym_DASH_DASH] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2002), - [anon_sym_break] = ACTIONS(2002), - [anon_sym_continue] = ACTIONS(2002), - [anon_sym_for] = ACTIONS(2002), - [anon_sym_loop] = ACTIONS(2002), - [anon_sym_while] = ACTIONS(2002), - [anon_sym_do] = ACTIONS(2002), - [anon_sym_if] = ACTIONS(2002), - [anon_sym_match] = ACTIONS(2002), - [anon_sym_LBRACE] = ACTIONS(2002), - [anon_sym_DOT_DOT] = ACTIONS(2002), - [anon_sym_try] = ACTIONS(2002), - [anon_sym_return] = ACTIONS(2002), - [anon_sym_source] = ACTIONS(2002), - [anon_sym_source_DASHenv] = ACTIONS(2002), - [anon_sym_register] = ACTIONS(2002), - [anon_sym_hide] = ACTIONS(2002), - [anon_sym_hide_DASHenv] = ACTIONS(2002), - [anon_sym_overlay] = ACTIONS(2002), - [anon_sym_as] = ACTIONS(2002), - [anon_sym_where] = ACTIONS(2002), - [anon_sym_not] = ACTIONS(2002), - [anon_sym_LPAREN2] = ACTIONS(2369), - [anon_sym_DOT] = ACTIONS(2371), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2002), - [anon_sym_DOT_DOT_LT] = ACTIONS(2002), - [aux_sym__immediate_decimal_token1] = ACTIONS(2373), - [aux_sym__immediate_decimal_token3] = ACTIONS(2373), - [aux_sym__immediate_decimal_token4] = ACTIONS(2375), - [anon_sym_null] = ACTIONS(2002), - [anon_sym_true] = ACTIONS(2002), - [anon_sym_false] = ACTIONS(2002), - [aux_sym__val_number_decimal_token1] = ACTIONS(2002), - [aux_sym__val_number_decimal_token2] = ACTIONS(2002), - [anon_sym_DOT2] = ACTIONS(2002), - [aux_sym__val_number_decimal_token3] = ACTIONS(2002), - [aux_sym__val_number_token1] = ACTIONS(2002), - [aux_sym__val_number_token2] = ACTIONS(2002), - [aux_sym__val_number_token3] = ACTIONS(2002), - [aux_sym__val_number_token4] = ACTIONS(2002), - [aux_sym__val_number_token5] = ACTIONS(2002), - [aux_sym__val_number_token6] = ACTIONS(2002), - [anon_sym_0b] = ACTIONS(2002), - [anon_sym_0o] = ACTIONS(2002), - [anon_sym_0x] = ACTIONS(2002), - [sym_val_date] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym__str_single_quotes] = ACTIONS(2002), - [sym__str_back_ticks] = ACTIONS(2002), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2002), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2002), - [anon_sym_CARET] = ACTIONS(2002), - [aux_sym_unquoted_token2] = ACTIONS(2006), + [1327] = { + [sym_path] = STATE(2057), + [sym_comment] = STATE(1327), + [aux_sym_cell_path_repeat1] = STATE(1327), + [ts_builtin_sym_end] = ACTIONS(987), + [anon_sym_SEMI] = ACTIONS(985), + [anon_sym_LF] = ACTIONS(987), + [anon_sym_LBRACK] = ACTIONS(985), + [anon_sym_LPAREN] = ACTIONS(985), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_GT] = ACTIONS(985), + [anon_sym_DASH_DASH] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_in] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(985), + [anon_sym_DOT_DOT] = ACTIONS(985), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_STAR_STAR] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(985), + [anon_sym_SLASH] = ACTIONS(985), + [anon_sym_mod] = ACTIONS(985), + [anon_sym_SLASH_SLASH] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_bit_DASHshl] = ACTIONS(985), + [anon_sym_bit_DASHshr] = ACTIONS(985), + [anon_sym_EQ_EQ] = ACTIONS(985), + [anon_sym_BANG_EQ] = ACTIONS(985), + [anon_sym_LT2] = ACTIONS(985), + [anon_sym_LT_EQ] = ACTIONS(985), + [anon_sym_GT_EQ] = ACTIONS(985), + [anon_sym_not_DASHin] = ACTIONS(985), + [anon_sym_starts_DASHwith] = ACTIONS(985), + [anon_sym_ends_DASHwith] = ACTIONS(985), + [anon_sym_EQ_TILDE] = ACTIONS(985), + [anon_sym_BANG_TILDE] = ACTIONS(985), + [anon_sym_bit_DASHand] = ACTIONS(985), + [anon_sym_bit_DASHxor] = ACTIONS(985), + [anon_sym_bit_DASHor] = ACTIONS(985), + [anon_sym_and] = ACTIONS(985), + [anon_sym_xor] = ACTIONS(985), + [anon_sym_or] = ACTIONS(985), + [anon_sym_not] = ACTIONS(985), + [anon_sym_DOT_DOT2] = ACTIONS(985), + [anon_sym_DOT] = ACTIONS(4744), + [anon_sym_DOT_DOT_EQ] = ACTIONS(985), + [anon_sym_DOT_DOT_LT] = ACTIONS(985), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(987), + [anon_sym_DOT_DOT_LT2] = ACTIONS(987), + [anon_sym_null] = ACTIONS(985), + [anon_sym_true] = ACTIONS(985), + [anon_sym_false] = ACTIONS(985), + [aux_sym__val_number_decimal_token1] = ACTIONS(985), + [aux_sym__val_number_decimal_token2] = ACTIONS(985), + [anon_sym_DOT2] = ACTIONS(985), + [aux_sym__val_number_decimal_token3] = ACTIONS(985), + [aux_sym__val_number_token1] = ACTIONS(985), + [aux_sym__val_number_token2] = ACTIONS(985), + [aux_sym__val_number_token3] = ACTIONS(985), + [aux_sym__val_number_token4] = ACTIONS(985), + [aux_sym__val_number_token5] = ACTIONS(985), + [aux_sym__val_number_token6] = ACTIONS(985), + [anon_sym_0b] = ACTIONS(985), + [anon_sym_0o] = ACTIONS(985), + [anon_sym_0x] = ACTIONS(985), + [sym_val_date] = ACTIONS(985), + [anon_sym_DQUOTE] = ACTIONS(985), + [sym__str_single_quotes] = ACTIONS(985), + [sym__str_back_ticks] = ACTIONS(985), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(985), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(985), [anon_sym_POUND] = ACTIONS(113), }, - [1094] = { - [sym__expr_parenthesized_immediate] = STATE(2489), - [sym__immediate_decimal] = STATE(1452), - [sym_val_variable] = STATE(2489), - [sym__var] = STATE(1498), - [sym_comment] = STATE(1094), - [ts_builtin_sym_end] = ACTIONS(2004), - [anon_sym_export] = ACTIONS(2002), - [anon_sym_alias] = ACTIONS(2002), - [anon_sym_let] = ACTIONS(2002), - [anon_sym_let_DASHenv] = ACTIONS(2002), - [anon_sym_mut] = ACTIONS(2002), - [anon_sym_const] = ACTIONS(2002), - [anon_sym_SEMI] = ACTIONS(2002), - [sym_cmd_identifier] = ACTIONS(2002), - [anon_sym_LF] = ACTIONS(2004), - [anon_sym_def] = ACTIONS(2002), - [anon_sym_export_DASHenv] = ACTIONS(2002), - [anon_sym_extern] = ACTIONS(2002), - [anon_sym_module] = ACTIONS(2002), - [anon_sym_use] = ACTIONS(2002), - [anon_sym_LBRACK] = ACTIONS(2002), - [anon_sym_LPAREN] = ACTIONS(2002), - [anon_sym_DOLLAR] = ACTIONS(2367), - [anon_sym_error] = ACTIONS(2002), - [anon_sym_DASH_DASH] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2002), - [anon_sym_break] = ACTIONS(2002), - [anon_sym_continue] = ACTIONS(2002), - [anon_sym_for] = ACTIONS(2002), - [anon_sym_loop] = ACTIONS(2002), - [anon_sym_while] = ACTIONS(2002), - [anon_sym_do] = ACTIONS(2002), - [anon_sym_if] = ACTIONS(2002), - [anon_sym_match] = ACTIONS(2002), - [anon_sym_LBRACE] = ACTIONS(2002), - [anon_sym_DOT_DOT] = ACTIONS(2002), - [anon_sym_try] = ACTIONS(2002), - [anon_sym_return] = ACTIONS(2002), - [anon_sym_source] = ACTIONS(2002), - [anon_sym_source_DASHenv] = ACTIONS(2002), - [anon_sym_register] = ACTIONS(2002), - [anon_sym_hide] = ACTIONS(2002), - [anon_sym_hide_DASHenv] = ACTIONS(2002), - [anon_sym_overlay] = ACTIONS(2002), - [anon_sym_as] = ACTIONS(2002), - [anon_sym_where] = ACTIONS(2002), - [anon_sym_not] = ACTIONS(2002), - [anon_sym_LPAREN2] = ACTIONS(2369), - [anon_sym_DOT] = ACTIONS(2377), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2002), - [anon_sym_DOT_DOT_LT] = ACTIONS(2002), - [aux_sym__immediate_decimal_token1] = ACTIONS(2379), - [aux_sym__immediate_decimal_token3] = ACTIONS(2379), - [aux_sym__immediate_decimal_token4] = ACTIONS(2381), - [anon_sym_null] = ACTIONS(2002), - [anon_sym_true] = ACTIONS(2002), - [anon_sym_false] = ACTIONS(2002), - [aux_sym__val_number_decimal_token1] = ACTIONS(2002), - [aux_sym__val_number_decimal_token2] = ACTIONS(2002), - [anon_sym_DOT2] = ACTIONS(2002), - [aux_sym__val_number_decimal_token3] = ACTIONS(2002), - [aux_sym__val_number_token1] = ACTIONS(2002), - [aux_sym__val_number_token2] = ACTIONS(2002), - [aux_sym__val_number_token3] = ACTIONS(2002), - [aux_sym__val_number_token4] = ACTIONS(2002), - [aux_sym__val_number_token5] = ACTIONS(2002), - [aux_sym__val_number_token6] = ACTIONS(2002), - [anon_sym_0b] = ACTIONS(2002), - [anon_sym_0o] = ACTIONS(2002), - [anon_sym_0x] = ACTIONS(2002), - [sym_val_date] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym__str_single_quotes] = ACTIONS(2002), - [sym__str_back_ticks] = ACTIONS(2002), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2002), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2002), - [anon_sym_CARET] = ACTIONS(2002), - [aux_sym_unquoted_token2] = ACTIONS(2006), + [1328] = { + [sym_comment] = STATE(1328), + [ts_builtin_sym_end] = ACTIONS(2231), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_alias] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_let_DASHenv] = ACTIONS(2229), + [anon_sym_mut] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2229), + [sym_cmd_identifier] = ACTIONS(2229), + [anon_sym_LF] = ACTIONS(2231), + [anon_sym_def] = ACTIONS(2229), + [anon_sym_export_DASHenv] = ACTIONS(2229), + [anon_sym_extern] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2229), + [anon_sym_error] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_loop] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_source] = ACTIONS(2229), + [anon_sym_source_DASHenv] = ACTIONS(2229), + [anon_sym_register] = ACTIONS(2229), + [anon_sym_hide] = ACTIONS(2229), + [anon_sym_hide_DASHenv] = ACTIONS(2229), + [anon_sym_overlay] = ACTIONS(2229), + [anon_sym_as] = ACTIONS(2229), + [anon_sym_where] = ACTIONS(2229), + [anon_sym_not] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2229), + [anon_sym_DOT_DOT_LT] = ACTIONS(2229), + [aux_sym__immediate_decimal_token1] = ACTIONS(4747), + [aux_sym__immediate_decimal_token2] = ACTIONS(4749), + [anon_sym_null] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [aux_sym__val_number_decimal_token1] = ACTIONS(2229), + [aux_sym__val_number_decimal_token2] = ACTIONS(2229), + [anon_sym_DOT2] = ACTIONS(2229), + [aux_sym__val_number_decimal_token3] = ACTIONS(2229), + [aux_sym__val_number_token1] = ACTIONS(2229), + [aux_sym__val_number_token2] = ACTIONS(2229), + [aux_sym__val_number_token3] = ACTIONS(2229), + [aux_sym__val_number_token4] = ACTIONS(2229), + [aux_sym__val_number_token5] = ACTIONS(2229), + [aux_sym__val_number_token6] = ACTIONS(2229), + [anon_sym_0b] = ACTIONS(2229), + [anon_sym_0o] = ACTIONS(2229), + [anon_sym_0x] = ACTIONS(2229), + [sym_val_date] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2229), + [anon_sym_CARET] = ACTIONS(2229), [anon_sym_POUND] = ACTIONS(113), }, - [1095] = { - [sym__expr_parenthesized_immediate] = STATE(2444), - [sym__immediate_decimal] = STATE(1509), - [sym_val_variable] = STATE(2444), - [sym__var] = STATE(1498), - [sym_comment] = STATE(1095), - [ts_builtin_sym_end] = ACTIONS(938), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(2367), - [anon_sym_error] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_as] = ACTIONS(936), - [anon_sym_where] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_LPAREN2] = ACTIONS(2369), - [anon_sym_DOT] = ACTIONS(2377), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [aux_sym__immediate_decimal_token1] = ACTIONS(2379), - [aux_sym__immediate_decimal_token3] = ACTIONS(2379), - [aux_sym__immediate_decimal_token4] = ACTIONS(2381), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [aux_sym_unquoted_token4] = ACTIONS(2338), - [anon_sym_POUND] = ACTIONS(113), + [1329] = { + [sym_comment] = STATE(1329), + [anon_sym_LBRACK] = ACTIONS(922), + [anon_sym_COMMA] = ACTIONS(922), + [anon_sym_LPAREN] = ACTIONS(922), + [anon_sym_DOLLAR] = ACTIONS(922), + [anon_sym_GT] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_in] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_RBRACE] = ACTIONS(922), + [anon_sym__] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_STAR_STAR] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_mod] = ACTIONS(922), + [anon_sym_SLASH_SLASH] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_bit_DASHshl] = ACTIONS(922), + [anon_sym_bit_DASHshr] = ACTIONS(922), + [anon_sym_EQ_EQ] = ACTIONS(922), + [anon_sym_BANG_EQ] = ACTIONS(922), + [anon_sym_LT2] = ACTIONS(920), + [anon_sym_LT_EQ] = ACTIONS(922), + [anon_sym_GT_EQ] = ACTIONS(922), + [anon_sym_not_DASHin] = ACTIONS(922), + [anon_sym_starts_DASHwith] = ACTIONS(922), + [anon_sym_ends_DASHwith] = ACTIONS(922), + [anon_sym_EQ_TILDE] = ACTIONS(922), + [anon_sym_BANG_TILDE] = ACTIONS(922), + [anon_sym_bit_DASHand] = ACTIONS(922), + [anon_sym_bit_DASHxor] = ACTIONS(922), + [anon_sym_bit_DASHor] = ACTIONS(922), + [anon_sym_and] = ACTIONS(922), + [anon_sym_xor] = ACTIONS(922), + [anon_sym_or] = ACTIONS(922), + [anon_sym_DOT_DOT_EQ] = ACTIONS(922), + [anon_sym_DOT_DOT_LT] = ACTIONS(922), + [aux_sym__immediate_decimal_token1] = ACTIONS(4751), + [anon_sym_null] = ACTIONS(922), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(922), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(922), + [aux_sym__val_number_token1] = ACTIONS(922), + [aux_sym__val_number_token2] = ACTIONS(922), + [aux_sym__val_number_token3] = ACTIONS(922), + [aux_sym__val_number_token4] = ACTIONS(922), + [aux_sym__val_number_token5] = ACTIONS(922), + [aux_sym__val_number_token6] = ACTIONS(922), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(922), + [anon_sym_DQUOTE] = ACTIONS(922), + [sym__str_single_quotes] = ACTIONS(922), + [sym__str_back_ticks] = ACTIONS(922), + [anon_sym_err_GT] = ACTIONS(922), + [anon_sym_out_GT] = ACTIONS(922), + [anon_sym_e_GT] = ACTIONS(922), + [anon_sym_o_GT] = ACTIONS(922), + [anon_sym_err_PLUSout_GT] = ACTIONS(922), + [anon_sym_out_PLUSerr_GT] = ACTIONS(922), + [anon_sym_o_PLUSe_GT] = ACTIONS(922), + [anon_sym_e_PLUSo_GT] = ACTIONS(922), + [aux_sym_unquoted_token1] = ACTIONS(920), + [aux_sym_unquoted_token2] = ACTIONS(4753), + [anon_sym_POUND] = ACTIONS(3), }, - [1096] = { - [sym__expr_parenthesized_immediate] = STATE(1789), - [sym__immediate_decimal] = STATE(1790), - [sym_val_variable] = STATE(1789), - [sym__var] = STATE(1373), - [sym_comment] = STATE(1096), - [anon_sym_export] = ACTIONS(2383), - [anon_sym_alias] = ACTIONS(2383), - [anon_sym_let] = ACTIONS(2383), - [anon_sym_let_DASHenv] = ACTIONS(2383), - [anon_sym_mut] = ACTIONS(2383), - [anon_sym_const] = ACTIONS(2383), - [anon_sym_SEMI] = ACTIONS(2383), - [sym_cmd_identifier] = ACTIONS(2383), - [anon_sym_LF] = ACTIONS(2385), - [anon_sym_def] = ACTIONS(2383), - [anon_sym_export_DASHenv] = ACTIONS(2383), - [anon_sym_extern] = ACTIONS(2383), - [anon_sym_module] = ACTIONS(2383), - [anon_sym_use] = ACTIONS(2383), - [anon_sym_LBRACK] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2383), - [anon_sym_RPAREN] = ACTIONS(2383), - [anon_sym_DOLLAR] = ACTIONS(1924), - [anon_sym_error] = ACTIONS(2383), - [anon_sym_DASH_DASH] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2383), - [anon_sym_break] = ACTIONS(2383), - [anon_sym_continue] = ACTIONS(2383), - [anon_sym_for] = ACTIONS(2383), - [anon_sym_loop] = ACTIONS(2383), - [anon_sym_while] = ACTIONS(2383), - [anon_sym_do] = ACTIONS(2383), - [anon_sym_if] = ACTIONS(2383), - [anon_sym_match] = ACTIONS(2383), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(2383), - [anon_sym_DOT_DOT] = ACTIONS(2383), - [anon_sym_try] = ACTIONS(2383), - [anon_sym_return] = ACTIONS(2383), - [anon_sym_source] = ACTIONS(2383), - [anon_sym_source_DASHenv] = ACTIONS(2383), - [anon_sym_register] = ACTIONS(2383), - [anon_sym_hide] = ACTIONS(2383), - [anon_sym_hide_DASHenv] = ACTIONS(2383), - [anon_sym_overlay] = ACTIONS(2383), - [anon_sym_as] = ACTIONS(2383), - [anon_sym_where] = ACTIONS(2383), - [anon_sym_not] = ACTIONS(2383), - [anon_sym_LPAREN2] = ACTIONS(1926), - [anon_sym_DOT] = ACTIONS(2353), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2383), - [anon_sym_DOT_DOT_LT] = ACTIONS(2383), - [aux_sym__immediate_decimal_token1] = ACTIONS(2355), - [aux_sym__immediate_decimal_token3] = ACTIONS(2355), - [aux_sym__immediate_decimal_token4] = ACTIONS(2357), - [anon_sym_null] = ACTIONS(2383), - [anon_sym_true] = ACTIONS(2383), - [anon_sym_false] = ACTIONS(2383), - [aux_sym__val_number_decimal_token1] = ACTIONS(2383), - [aux_sym__val_number_decimal_token2] = ACTIONS(2383), - [anon_sym_DOT2] = ACTIONS(2383), - [aux_sym__val_number_decimal_token3] = ACTIONS(2383), - [aux_sym__val_number_token1] = ACTIONS(2383), - [aux_sym__val_number_token2] = ACTIONS(2383), - [aux_sym__val_number_token3] = ACTIONS(2383), - [aux_sym__val_number_token4] = ACTIONS(2383), - [aux_sym__val_number_token5] = ACTIONS(2383), - [aux_sym__val_number_token6] = ACTIONS(2383), - [anon_sym_0b] = ACTIONS(2383), - [anon_sym_0o] = ACTIONS(2383), - [anon_sym_0x] = ACTIONS(2383), - [sym_val_date] = ACTIONS(2383), - [anon_sym_DQUOTE] = ACTIONS(2383), - [sym__str_single_quotes] = ACTIONS(2383), - [sym__str_back_ticks] = ACTIONS(2383), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2383), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2383), - [anon_sym_CARET] = ACTIONS(2383), + [1330] = { + [sym_comment] = STATE(1330), + [ts_builtin_sym_end] = ACTIONS(1035), + [anon_sym_export] = ACTIONS(1033), + [anon_sym_alias] = ACTIONS(1033), + [anon_sym_let] = ACTIONS(1033), + [anon_sym_let_DASHenv] = ACTIONS(1033), + [anon_sym_mut] = ACTIONS(1033), + [anon_sym_const] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(1033), + [sym_cmd_identifier] = ACTIONS(1033), + [anon_sym_LF] = ACTIONS(1035), + [anon_sym_def] = ACTIONS(1033), + [anon_sym_export_DASHenv] = ACTIONS(1033), + [anon_sym_extern] = ACTIONS(1033), + [anon_sym_module] = ACTIONS(1033), + [anon_sym_use] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1033), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_error] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1033), + [anon_sym_break] = ACTIONS(1033), + [anon_sym_continue] = ACTIONS(1033), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_loop] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(1033), + [anon_sym_do] = ACTIONS(1033), + [anon_sym_if] = ACTIONS(1033), + [anon_sym_match] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_DOT_DOT] = ACTIONS(1033), + [anon_sym_try] = ACTIONS(1033), + [anon_sym_return] = ACTIONS(1033), + [anon_sym_source] = ACTIONS(1033), + [anon_sym_source_DASHenv] = ACTIONS(1033), + [anon_sym_register] = ACTIONS(1033), + [anon_sym_hide] = ACTIONS(1033), + [anon_sym_hide_DASHenv] = ACTIONS(1033), + [anon_sym_overlay] = ACTIONS(1033), + [anon_sym_as] = ACTIONS(1033), + [anon_sym_where] = ACTIONS(1033), + [anon_sym_QMARK2] = ACTIONS(1033), + [anon_sym_not] = ACTIONS(1033), + [anon_sym_DOT] = ACTIONS(1033), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1033), + [anon_sym_DOT_DOT_LT] = ACTIONS(1033), + [anon_sym_null] = ACTIONS(1033), + [anon_sym_true] = ACTIONS(1033), + [anon_sym_false] = ACTIONS(1033), + [aux_sym__val_number_decimal_token1] = ACTIONS(1033), + [aux_sym__val_number_decimal_token2] = ACTIONS(1033), + [anon_sym_DOT2] = ACTIONS(1033), + [aux_sym__val_number_decimal_token3] = ACTIONS(1033), + [aux_sym__val_number_token1] = ACTIONS(1033), + [aux_sym__val_number_token2] = ACTIONS(1033), + [aux_sym__val_number_token3] = ACTIONS(1033), + [aux_sym__val_number_token4] = ACTIONS(1033), + [aux_sym__val_number_token5] = ACTIONS(1033), + [aux_sym__val_number_token6] = ACTIONS(1033), + [anon_sym_0b] = ACTIONS(1033), + [anon_sym_0o] = ACTIONS(1033), + [anon_sym_0x] = ACTIONS(1033), + [sym_val_date] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [sym__str_single_quotes] = ACTIONS(1033), + [sym__str_back_ticks] = ACTIONS(1033), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1033), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1033), + [anon_sym_CARET] = ACTIONS(1033), [anon_sym_POUND] = ACTIONS(113), }, - [1097] = { - [sym__expr_parenthesized_immediate] = STATE(1378), - [sym__immediate_decimal] = STATE(1386), - [sym_val_variable] = STATE(1378), - [sym__var] = STATE(1206), - [sym_comment] = STATE(1097), - [anon_sym_export] = ACTIONS(2387), - [anon_sym_alias] = ACTIONS(2387), - [anon_sym_let] = ACTIONS(2387), - [anon_sym_let_DASHenv] = ACTIONS(2387), - [anon_sym_mut] = ACTIONS(2387), - [anon_sym_const] = ACTIONS(2387), - [anon_sym_SEMI] = ACTIONS(2387), - [sym_cmd_identifier] = ACTIONS(2387), - [anon_sym_LF] = ACTIONS(2389), - [anon_sym_def] = ACTIONS(2387), - [anon_sym_export_DASHenv] = ACTIONS(2387), - [anon_sym_extern] = ACTIONS(2387), - [anon_sym_module] = ACTIONS(2387), - [anon_sym_use] = ACTIONS(2387), - [anon_sym_LBRACK] = ACTIONS(2387), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_RPAREN] = ACTIONS(2387), - [anon_sym_DOLLAR] = ACTIONS(1794), - [anon_sym_error] = ACTIONS(2387), - [anon_sym_DASH_DASH] = ACTIONS(2387), - [anon_sym_DASH] = ACTIONS(2387), - [anon_sym_break] = ACTIONS(2387), - [anon_sym_continue] = ACTIONS(2387), - [anon_sym_for] = ACTIONS(2387), - [anon_sym_loop] = ACTIONS(2387), - [anon_sym_while] = ACTIONS(2387), - [anon_sym_do] = ACTIONS(2387), - [anon_sym_if] = ACTIONS(2387), - [anon_sym_match] = ACTIONS(2387), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_RBRACE] = ACTIONS(2387), - [anon_sym_DOT_DOT] = ACTIONS(2387), - [anon_sym_try] = ACTIONS(2387), - [anon_sym_return] = ACTIONS(2387), - [anon_sym_source] = ACTIONS(2387), - [anon_sym_source_DASHenv] = ACTIONS(2387), - [anon_sym_register] = ACTIONS(2387), - [anon_sym_hide] = ACTIONS(2387), - [anon_sym_hide_DASHenv] = ACTIONS(2387), - [anon_sym_overlay] = ACTIONS(2387), - [anon_sym_as] = ACTIONS(2387), - [anon_sym_where] = ACTIONS(2387), - [anon_sym_not] = ACTIONS(2387), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_DOT] = ACTIONS(2391), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2387), - [anon_sym_DOT_DOT_LT] = ACTIONS(2387), - [aux_sym__immediate_decimal_token1] = ACTIONS(2393), - [aux_sym__immediate_decimal_token3] = ACTIONS(2393), - [aux_sym__immediate_decimal_token4] = ACTIONS(2395), - [anon_sym_null] = ACTIONS(2387), - [anon_sym_true] = ACTIONS(2387), - [anon_sym_false] = ACTIONS(2387), - [aux_sym__val_number_decimal_token1] = ACTIONS(2387), - [aux_sym__val_number_decimal_token2] = ACTIONS(2387), - [anon_sym_DOT2] = ACTIONS(2387), - [aux_sym__val_number_decimal_token3] = 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(2387), - [aux_sym__val_number_token5] = ACTIONS(2387), - [aux_sym__val_number_token6] = ACTIONS(2387), - [anon_sym_0b] = ACTIONS(2387), - [anon_sym_0o] = ACTIONS(2387), - [anon_sym_0x] = ACTIONS(2387), - [sym_val_date] = ACTIONS(2387), - [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_CARET] = ACTIONS(2387), + [1331] = { + [sym_cell_path] = STATE(2321), + [sym_path] = STATE(1265), + [sym_comment] = STATE(1331), + [anon_sym_export] = ACTIONS(1057), + [anon_sym_alias] = ACTIONS(1057), + [anon_sym_let] = ACTIONS(1057), + [anon_sym_let_DASHenv] = ACTIONS(1057), + [anon_sym_mut] = ACTIONS(1057), + [anon_sym_const] = ACTIONS(1057), + [anon_sym_SEMI] = ACTIONS(1057), + [sym_cmd_identifier] = ACTIONS(1057), + [anon_sym_LF] = ACTIONS(1059), + [anon_sym_def] = ACTIONS(1057), + [anon_sym_export_DASHenv] = ACTIONS(1057), + [anon_sym_extern] = ACTIONS(1057), + [anon_sym_module] = ACTIONS(1057), + [anon_sym_use] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_LPAREN] = ACTIONS(1057), + [anon_sym_RPAREN] = ACTIONS(1057), + [anon_sym_DOLLAR] = ACTIONS(1057), + [anon_sym_error] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_break] = ACTIONS(1057), + [anon_sym_continue] = ACTIONS(1057), + [anon_sym_for] = ACTIONS(1057), + [anon_sym_loop] = ACTIONS(1057), + [anon_sym_while] = ACTIONS(1057), + [anon_sym_do] = ACTIONS(1057), + [anon_sym_if] = ACTIONS(1057), + [anon_sym_match] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_try] = ACTIONS(1057), + [anon_sym_return] = ACTIONS(1057), + [anon_sym_source] = ACTIONS(1057), + [anon_sym_source_DASHenv] = ACTIONS(1057), + [anon_sym_register] = ACTIONS(1057), + [anon_sym_hide] = ACTIONS(1057), + [anon_sym_hide_DASHenv] = ACTIONS(1057), + [anon_sym_overlay] = ACTIONS(1057), + [anon_sym_where] = ACTIONS(1057), + [anon_sym_not] = ACTIONS(1057), + [anon_sym_DOT] = ACTIONS(3954), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1057), + [anon_sym_DOT_DOT_LT] = ACTIONS(1057), + [anon_sym_null] = ACTIONS(1057), + [anon_sym_true] = ACTIONS(1057), + [anon_sym_false] = ACTIONS(1057), + [aux_sym__val_number_decimal_token1] = ACTIONS(1057), + [aux_sym__val_number_decimal_token2] = ACTIONS(1057), + [anon_sym_DOT2] = ACTIONS(1057), + [aux_sym__val_number_decimal_token3] = ACTIONS(1057), + [aux_sym__val_number_token1] = ACTIONS(1057), + [aux_sym__val_number_token2] = ACTIONS(1057), + [aux_sym__val_number_token3] = ACTIONS(1057), + [aux_sym__val_number_token4] = ACTIONS(1057), + [aux_sym__val_number_token5] = ACTIONS(1057), + [aux_sym__val_number_token6] = ACTIONS(1057), + [anon_sym_0b] = ACTIONS(1057), + [anon_sym_0o] = ACTIONS(1057), + [anon_sym_0x] = ACTIONS(1057), + [sym_val_date] = ACTIONS(1057), + [anon_sym_DQUOTE] = ACTIONS(1057), + [sym__str_single_quotes] = ACTIONS(1057), + [sym__str_back_ticks] = ACTIONS(1057), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1057), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1057), + [anon_sym_CARET] = ACTIONS(1057), [anon_sym_POUND] = ACTIONS(113), }, - [1098] = { - [sym__expr_parenthesized_immediate] = STATE(1775), - [sym__immediate_decimal] = STATE(1776), - [sym_val_variable] = STATE(1775), - [sym__var] = STATE(1373), - [sym_comment] = STATE(1098), - [anon_sym_export] = ACTIONS(2387), - [anon_sym_alias] = ACTIONS(2387), - [anon_sym_let] = ACTIONS(2387), - [anon_sym_let_DASHenv] = ACTIONS(2387), - [anon_sym_mut] = ACTIONS(2387), - [anon_sym_const] = ACTIONS(2387), - [anon_sym_SEMI] = ACTIONS(2387), - [sym_cmd_identifier] = ACTIONS(2387), - [anon_sym_LF] = ACTIONS(2389), - [anon_sym_def] = ACTIONS(2387), - [anon_sym_export_DASHenv] = ACTIONS(2387), - [anon_sym_extern] = ACTIONS(2387), - [anon_sym_module] = ACTIONS(2387), - [anon_sym_use] = ACTIONS(2387), - [anon_sym_LBRACK] = ACTIONS(2387), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_RPAREN] = ACTIONS(2387), - [anon_sym_DOLLAR] = ACTIONS(1924), - [anon_sym_error] = ACTIONS(2387), - [anon_sym_DASH_DASH] = ACTIONS(2387), - [anon_sym_DASH] = ACTIONS(2387), - [anon_sym_break] = ACTIONS(2387), - [anon_sym_continue] = ACTIONS(2387), - [anon_sym_for] = ACTIONS(2387), - [anon_sym_loop] = ACTIONS(2387), - [anon_sym_while] = ACTIONS(2387), - [anon_sym_do] = ACTIONS(2387), - [anon_sym_if] = ACTIONS(2387), - [anon_sym_match] = ACTIONS(2387), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_RBRACE] = ACTIONS(2387), - [anon_sym_DOT_DOT] = ACTIONS(2387), - [anon_sym_try] = ACTIONS(2387), - [anon_sym_return] = ACTIONS(2387), - [anon_sym_source] = ACTIONS(2387), - [anon_sym_source_DASHenv] = ACTIONS(2387), - [anon_sym_register] = ACTIONS(2387), - [anon_sym_hide] = ACTIONS(2387), - [anon_sym_hide_DASHenv] = ACTIONS(2387), - [anon_sym_overlay] = ACTIONS(2387), - [anon_sym_as] = ACTIONS(2387), - [anon_sym_where] = ACTIONS(2387), - [anon_sym_not] = ACTIONS(2387), - [anon_sym_LPAREN2] = ACTIONS(1926), - [anon_sym_DOT] = ACTIONS(2353), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2387), - [anon_sym_DOT_DOT_LT] = ACTIONS(2387), - [aux_sym__immediate_decimal_token1] = ACTIONS(2355), - [aux_sym__immediate_decimal_token3] = ACTIONS(2355), - [aux_sym__immediate_decimal_token4] = ACTIONS(2357), - [anon_sym_null] = ACTIONS(2387), - [anon_sym_true] = ACTIONS(2387), - [anon_sym_false] = ACTIONS(2387), - [aux_sym__val_number_decimal_token1] = ACTIONS(2387), - [aux_sym__val_number_decimal_token2] = ACTIONS(2387), - [anon_sym_DOT2] = ACTIONS(2387), - [aux_sym__val_number_decimal_token3] = 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(2387), - [aux_sym__val_number_token5] = ACTIONS(2387), - [aux_sym__val_number_token6] = ACTIONS(2387), - [anon_sym_0b] = ACTIONS(2387), - [anon_sym_0o] = ACTIONS(2387), - [anon_sym_0x] = ACTIONS(2387), - [sym_val_date] = ACTIONS(2387), - [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_CARET] = ACTIONS(2387), + [1332] = { + [sym_comment] = STATE(1332), + [anon_sym_export] = ACTIONS(1139), + [anon_sym_alias] = ACTIONS(1139), + [anon_sym_let] = ACTIONS(1139), + [anon_sym_let_DASHenv] = ACTIONS(1139), + [anon_sym_mut] = ACTIONS(1139), + [anon_sym_const] = ACTIONS(1139), + [anon_sym_SEMI] = ACTIONS(1139), + [sym_cmd_identifier] = ACTIONS(1139), + [anon_sym_LF] = ACTIONS(1209), + [anon_sym_def] = ACTIONS(1139), + [anon_sym_export_DASHenv] = ACTIONS(1139), + [anon_sym_extern] = ACTIONS(1139), + [anon_sym_module] = ACTIONS(1139), + [anon_sym_use] = ACTIONS(1139), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LPAREN] = ACTIONS(1139), + [anon_sym_RPAREN] = ACTIONS(1139), + [anon_sym_DOLLAR] = ACTIONS(1139), + [anon_sym_error] = ACTIONS(1139), + [anon_sym_DASH_DASH] = ACTIONS(1139), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_break] = ACTIONS(1139), + [anon_sym_continue] = ACTIONS(1139), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_loop] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1139), + [anon_sym_do] = ACTIONS(1139), + [anon_sym_if] = ACTIONS(1139), + [anon_sym_match] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1139), + [anon_sym_RBRACE] = ACTIONS(1139), + [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_try] = ACTIONS(1139), + [anon_sym_return] = ACTIONS(1139), + [anon_sym_source] = ACTIONS(1139), + [anon_sym_source_DASHenv] = ACTIONS(1139), + [anon_sym_register] = ACTIONS(1139), + [anon_sym_hide] = ACTIONS(1139), + [anon_sym_hide_DASHenv] = ACTIONS(1139), + [anon_sym_overlay] = ACTIONS(1139), + [anon_sym_as] = ACTIONS(1139), + [anon_sym_where] = ACTIONS(1139), + [anon_sym_not] = ACTIONS(1139), + [anon_sym_LPAREN2] = ACTIONS(1209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1139), + [anon_sym_DOT_DOT_LT] = ACTIONS(1139), + [anon_sym_null] = ACTIONS(1139), + [anon_sym_true] = ACTIONS(1139), + [anon_sym_false] = ACTIONS(1139), + [aux_sym__val_number_decimal_token1] = ACTIONS(1139), + [aux_sym__val_number_decimal_token2] = ACTIONS(1139), + [anon_sym_DOT2] = ACTIONS(1139), + [aux_sym__val_number_decimal_token3] = ACTIONS(1139), + [aux_sym__val_number_token1] = ACTIONS(1139), + [aux_sym__val_number_token2] = ACTIONS(1139), + [aux_sym__val_number_token3] = ACTIONS(1139), + [aux_sym__val_number_token4] = ACTIONS(1139), + [aux_sym__val_number_token5] = ACTIONS(1139), + [aux_sym__val_number_token6] = ACTIONS(1139), + [anon_sym_0b] = ACTIONS(1139), + [anon_sym_0o] = ACTIONS(1139), + [anon_sym_0x] = ACTIONS(1139), + [sym_val_date] = ACTIONS(1139), + [anon_sym_DQUOTE] = ACTIONS(1139), + [sym__str_single_quotes] = ACTIONS(1139), + [sym__str_back_ticks] = ACTIONS(1139), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1139), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1139), + [anon_sym_CARET] = ACTIONS(1139), [anon_sym_POUND] = ACTIONS(113), }, - [1099] = { - [sym__expr_parenthesized_immediate] = STATE(10517), - [sym_comment] = STATE(1099), - [anon_sym_export] = ACTIONS(959), - [anon_sym_alias] = ACTIONS(959), - [anon_sym_let] = ACTIONS(959), - [anon_sym_let_DASHenv] = ACTIONS(959), - [anon_sym_mut] = ACTIONS(959), - [anon_sym_const] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(959), - [sym_cmd_identifier] = ACTIONS(959), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_def] = ACTIONS(959), - [anon_sym_export_DASHenv] = ACTIONS(959), - [anon_sym_extern] = ACTIONS(959), - [anon_sym_module] = ACTIONS(959), - [anon_sym_use] = ACTIONS(959), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_RPAREN] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_error] = ACTIONS(959), - [anon_sym_DASH_DASH] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_break] = ACTIONS(959), - [anon_sym_continue] = ACTIONS(959), - [anon_sym_for] = ACTIONS(959), - [anon_sym_loop] = ACTIONS(959), - [anon_sym_while] = ACTIONS(959), - [anon_sym_do] = ACTIONS(959), - [anon_sym_if] = ACTIONS(959), - [anon_sym_match] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_RBRACE] = ACTIONS(959), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_try] = ACTIONS(959), - [anon_sym_return] = ACTIONS(959), - [anon_sym_source] = ACTIONS(959), - [anon_sym_source_DASHenv] = ACTIONS(959), - [anon_sym_register] = ACTIONS(959), - [anon_sym_hide] = ACTIONS(959), - [anon_sym_hide_DASHenv] = ACTIONS(959), - [anon_sym_overlay] = ACTIONS(959), - [anon_sym_as] = ACTIONS(959), - [anon_sym_where] = ACTIONS(959), - [anon_sym_not] = ACTIONS(959), - [anon_sym_LPAREN2] = ACTIONS(2397), - [anon_sym_DOT_DOT2] = ACTIONS(2399), - [anon_sym_DOT] = ACTIONS(2401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_DOT_DOT_LT] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2403), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2403), - [anon_sym_null] = ACTIONS(959), - [anon_sym_true] = ACTIONS(959), - [anon_sym_false] = ACTIONS(959), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(959), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(959), - [aux_sym__val_number_token1] = ACTIONS(959), - [aux_sym__val_number_token2] = ACTIONS(959), - [aux_sym__val_number_token3] = ACTIONS(959), - [aux_sym__val_number_token4] = ACTIONS(959), - [aux_sym__val_number_token5] = ACTIONS(959), - [aux_sym__val_number_token6] = ACTIONS(959), - [anon_sym_0b] = ACTIONS(959), - [sym_filesize_unit] = ACTIONS(2405), - [sym_duration_unit] = ACTIONS(2407), - [anon_sym_0o] = ACTIONS(959), - [anon_sym_0x] = ACTIONS(959), - [sym_val_date] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [sym__str_single_quotes] = ACTIONS(959), - [sym__str_back_ticks] = ACTIONS(959), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(959), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(959), - [anon_sym_CARET] = ACTIONS(959), - [aux_sym_unquoted_token5] = ACTIONS(1812), - [anon_sym_POUND] = ACTIONS(113), + [1333] = { + [sym_comment] = STATE(1333), + [anon_sym_LBRACK] = ACTIONS(1026), + [anon_sym_COMMA] = ACTIONS(1026), + [anon_sym_RBRACK] = ACTIONS(1026), + [anon_sym_LPAREN] = ACTIONS(1026), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_GT] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1026), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1026), + [anon_sym_DOT_DOT] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(4755), + [anon_sym_STAR_STAR] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [anon_sym_SLASH] = ACTIONS(1024), + [anon_sym_mod] = ACTIONS(1026), + [anon_sym_SLASH_SLASH] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_bit_DASHshl] = ACTIONS(1026), + [anon_sym_bit_DASHshr] = ACTIONS(1026), + [anon_sym_EQ_EQ] = ACTIONS(1026), + [anon_sym_BANG_EQ] = ACTIONS(1026), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ] = ACTIONS(1026), + [anon_sym_GT_EQ] = ACTIONS(1026), + [anon_sym_not_DASHin] = ACTIONS(1026), + [anon_sym_starts_DASHwith] = ACTIONS(1026), + [anon_sym_ends_DASHwith] = ACTIONS(1026), + [anon_sym_EQ_TILDE] = ACTIONS(1026), + [anon_sym_BANG_TILDE] = ACTIONS(1026), + [anon_sym_bit_DASHand] = ACTIONS(1026), + [anon_sym_bit_DASHxor] = ACTIONS(1026), + [anon_sym_bit_DASHor] = ACTIONS(1026), + [anon_sym_and] = ACTIONS(1026), + [anon_sym_xor] = ACTIONS(1026), + [anon_sym_or] = ACTIONS(1026), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1026), + [anon_sym_DOT_DOT_LT] = ACTIONS(1026), + [anon_sym_null] = ACTIONS(1026), + [anon_sym_true] = ACTIONS(1026), + [anon_sym_false] = ACTIONS(1026), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1026), + [aux_sym__val_number_token1] = ACTIONS(1026), + [aux_sym__val_number_token2] = ACTIONS(1026), + [aux_sym__val_number_token3] = ACTIONS(1026), + [aux_sym__val_number_token4] = ACTIONS(1026), + [aux_sym__val_number_token5] = ACTIONS(1026), + [aux_sym__val_number_token6] = ACTIONS(1026), + [anon_sym_0b] = ACTIONS(1024), + [anon_sym_0o] = ACTIONS(1024), + [anon_sym_0x] = ACTIONS(1024), + [sym_val_date] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(1026), + [sym__str_single_quotes] = ACTIONS(1026), + [sym__str_back_ticks] = ACTIONS(1026), + [anon_sym_err_GT] = ACTIONS(1026), + [anon_sym_out_GT] = ACTIONS(1026), + [anon_sym_e_GT] = ACTIONS(1026), + [anon_sym_o_GT] = ACTIONS(1026), + [anon_sym_err_PLUSout_GT] = ACTIONS(1026), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1026), + [anon_sym_o_PLUSe_GT] = ACTIONS(1026), + [anon_sym_e_PLUSo_GT] = ACTIONS(1026), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1024), + [anon_sym_POUND] = ACTIONS(3), }, - [1100] = { - [sym__expr_parenthesized_immediate] = STATE(2473), - [sym__immediate_decimal] = STATE(1645), - [sym_val_variable] = STATE(2473), - [sym__var] = STATE(1498), - [sym_comment] = STATE(1100), - [ts_builtin_sym_end] = ACTIONS(1922), - [anon_sym_export] = ACTIONS(1920), - [anon_sym_alias] = ACTIONS(1920), - [anon_sym_let] = ACTIONS(1920), - [anon_sym_let_DASHenv] = ACTIONS(1920), - [anon_sym_mut] = ACTIONS(1920), - [anon_sym_const] = ACTIONS(1920), - [anon_sym_SEMI] = ACTIONS(1920), - [sym_cmd_identifier] = ACTIONS(1920), - [anon_sym_LF] = ACTIONS(1922), - [anon_sym_def] = ACTIONS(1920), - [anon_sym_export_DASHenv] = ACTIONS(1920), - [anon_sym_extern] = ACTIONS(1920), - [anon_sym_module] = ACTIONS(1920), - [anon_sym_use] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1920), - [anon_sym_DOLLAR] = ACTIONS(2367), - [anon_sym_error] = ACTIONS(1920), - [anon_sym_DASH_DASH] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1920), - [anon_sym_break] = ACTIONS(1920), - [anon_sym_continue] = ACTIONS(1920), - [anon_sym_for] = ACTIONS(1920), - [anon_sym_loop] = ACTIONS(1920), - [anon_sym_while] = ACTIONS(1920), - [anon_sym_do] = ACTIONS(1920), - [anon_sym_if] = ACTIONS(1920), - [anon_sym_match] = ACTIONS(1920), - [anon_sym_LBRACE] = ACTIONS(1920), - [anon_sym_DOT_DOT] = ACTIONS(1920), - [anon_sym_try] = ACTIONS(1920), - [anon_sym_return] = ACTIONS(1920), - [anon_sym_source] = ACTIONS(1920), - [anon_sym_source_DASHenv] = ACTIONS(1920), - [anon_sym_register] = ACTIONS(1920), - [anon_sym_hide] = ACTIONS(1920), - [anon_sym_hide_DASHenv] = ACTIONS(1920), - [anon_sym_overlay] = ACTIONS(1920), - [anon_sym_as] = ACTIONS(1920), - [anon_sym_where] = ACTIONS(1920), - [anon_sym_not] = ACTIONS(1920), - [anon_sym_LPAREN2] = ACTIONS(2369), - [anon_sym_DOT] = ACTIONS(2371), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1920), - [anon_sym_DOT_DOT_LT] = ACTIONS(1920), - [aux_sym__immediate_decimal_token1] = ACTIONS(2373), - [aux_sym__immediate_decimal_token3] = ACTIONS(2373), - [aux_sym__immediate_decimal_token4] = ACTIONS(2375), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_true] = ACTIONS(1920), - [anon_sym_false] = ACTIONS(1920), - [aux_sym__val_number_decimal_token1] = ACTIONS(1920), - [aux_sym__val_number_decimal_token2] = ACTIONS(1920), - [anon_sym_DOT2] = ACTIONS(1920), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_token1] = ACTIONS(1920), - [aux_sym__val_number_token2] = ACTIONS(1920), - [aux_sym__val_number_token3] = ACTIONS(1920), - [aux_sym__val_number_token4] = ACTIONS(1920), - [aux_sym__val_number_token5] = ACTIONS(1920), - [aux_sym__val_number_token6] = ACTIONS(1920), - [anon_sym_0b] = ACTIONS(1920), - [anon_sym_0o] = ACTIONS(1920), - [anon_sym_0x] = ACTIONS(1920), - [sym_val_date] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym__str_single_quotes] = ACTIONS(1920), - [sym__str_back_ticks] = ACTIONS(1920), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1920), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1920), - [anon_sym_CARET] = ACTIONS(1920), - [aux_sym_unquoted_token2] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(113), + [1334] = { + [sym_comment] = STATE(1334), + [anon_sym_LBRACK] = ACTIONS(1026), + [anon_sym_COMMA] = ACTIONS(1026), + [anon_sym_RBRACK] = ACTIONS(1026), + [anon_sym_LPAREN] = ACTIONS(1026), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_GT] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1026), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1026), + [anon_sym_DOT_DOT] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(4755), + [anon_sym_STAR_STAR] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [anon_sym_SLASH] = ACTIONS(1024), + [anon_sym_mod] = ACTIONS(1026), + [anon_sym_SLASH_SLASH] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_bit_DASHshl] = ACTIONS(1026), + [anon_sym_bit_DASHshr] = ACTIONS(1026), + [anon_sym_EQ_EQ] = ACTIONS(1026), + [anon_sym_BANG_EQ] = ACTIONS(1026), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ] = ACTIONS(1026), + [anon_sym_GT_EQ] = ACTIONS(1026), + [anon_sym_not_DASHin] = ACTIONS(1026), + [anon_sym_starts_DASHwith] = ACTIONS(1026), + [anon_sym_ends_DASHwith] = ACTIONS(1026), + [anon_sym_EQ_TILDE] = ACTIONS(1026), + [anon_sym_BANG_TILDE] = ACTIONS(1026), + [anon_sym_bit_DASHand] = ACTIONS(1026), + [anon_sym_bit_DASHxor] = ACTIONS(1026), + [anon_sym_bit_DASHor] = ACTIONS(1026), + [anon_sym_and] = ACTIONS(1026), + [anon_sym_xor] = ACTIONS(1026), + [anon_sym_or] = ACTIONS(1026), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1026), + [anon_sym_DOT_DOT_LT] = ACTIONS(1026), + [anon_sym_null] = ACTIONS(1026), + [anon_sym_true] = ACTIONS(1026), + [anon_sym_false] = ACTIONS(1026), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1026), + [aux_sym__val_number_token1] = ACTIONS(1026), + [aux_sym__val_number_token2] = ACTIONS(1026), + [aux_sym__val_number_token3] = ACTIONS(1026), + [aux_sym__val_number_token4] = ACTIONS(1026), + [aux_sym__val_number_token5] = ACTIONS(1026), + [aux_sym__val_number_token6] = ACTIONS(1026), + [anon_sym_0b] = ACTIONS(1024), + [anon_sym_0o] = ACTIONS(1024), + [anon_sym_0x] = ACTIONS(1024), + [sym_val_date] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(1026), + [sym__str_single_quotes] = ACTIONS(1026), + [sym__str_back_ticks] = ACTIONS(1026), + [anon_sym_err_GT] = ACTIONS(1026), + [anon_sym_out_GT] = ACTIONS(1026), + [anon_sym_e_GT] = ACTIONS(1026), + [anon_sym_o_GT] = ACTIONS(1026), + [anon_sym_err_PLUSout_GT] = ACTIONS(1026), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1026), + [anon_sym_o_PLUSe_GT] = ACTIONS(1026), + [anon_sym_e_PLUSo_GT] = ACTIONS(1026), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1024), + [anon_sym_POUND] = ACTIONS(3), }, - [1101] = { - [sym_comment] = STATE(1101), - [anon_sym_export] = ACTIONS(909), - [anon_sym_alias] = ACTIONS(909), - [anon_sym_let] = ACTIONS(909), - [anon_sym_let_DASHenv] = ACTIONS(909), - [anon_sym_mut] = ACTIONS(909), - [anon_sym_const] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(909), - [sym_cmd_identifier] = ACTIONS(909), - [anon_sym_LF] = ACTIONS(911), - [anon_sym_def] = ACTIONS(909), - [anon_sym_export_DASHenv] = ACTIONS(909), - [anon_sym_extern] = ACTIONS(909), - [anon_sym_module] = ACTIONS(909), - [anon_sym_use] = ACTIONS(909), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_RPAREN] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_error] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_break] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_for] = ACTIONS(909), - [anon_sym_loop] = ACTIONS(909), - [anon_sym_while] = ACTIONS(909), - [anon_sym_do] = ACTIONS(909), - [anon_sym_if] = ACTIONS(909), - [anon_sym_match] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_RBRACE] = ACTIONS(909), - [anon_sym_DOT_DOT] = ACTIONS(909), - [anon_sym_try] = ACTIONS(909), - [anon_sym_return] = ACTIONS(909), - [anon_sym_source] = ACTIONS(909), - [anon_sym_source_DASHenv] = ACTIONS(909), - [anon_sym_register] = ACTIONS(909), - [anon_sym_hide] = ACTIONS(909), - [anon_sym_hide_DASHenv] = ACTIONS(909), - [anon_sym_overlay] = ACTIONS(909), - [anon_sym_as] = ACTIONS(909), - [anon_sym_where] = ACTIONS(909), - [anon_sym_not] = ACTIONS(909), - [anon_sym_LPAREN2] = ACTIONS(911), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [aux_sym__immediate_decimal_token2] = ACTIONS(2024), - [anon_sym_null] = ACTIONS(909), - [anon_sym_true] = ACTIONS(909), - [anon_sym_false] = ACTIONS(909), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(909), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(909), - [aux_sym__val_number_token1] = ACTIONS(909), - [aux_sym__val_number_token2] = ACTIONS(909), - [aux_sym__val_number_token3] = ACTIONS(909), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(909), - [aux_sym__val_number_token6] = ACTIONS(909), - [anon_sym_0b] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(909), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym__str_single_quotes] = ACTIONS(909), - [sym__str_back_ticks] = ACTIONS(909), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), - [anon_sym_CARET] = ACTIONS(909), - [aux_sym_unquoted_token5] = ACTIONS(909), + [1335] = { + [sym_comment] = STATE(1335), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_COMMA] = ACTIONS(1129), + [anon_sym_RBRACK] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(1129), + [anon_sym_DOLLAR] = ACTIONS(1129), + [anon_sym_GT] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_in] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(1129), + [anon_sym_DOT_DOT] = ACTIONS(1129), + [anon_sym_STAR] = ACTIONS(1129), + [anon_sym_STAR_STAR] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(1129), + [anon_sym_mod] = ACTIONS(1129), + [anon_sym_SLASH_SLASH] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_bit_DASHshl] = ACTIONS(1129), + [anon_sym_bit_DASHshr] = ACTIONS(1129), + [anon_sym_EQ_EQ] = ACTIONS(1129), + [anon_sym_BANG_EQ] = ACTIONS(1129), + [anon_sym_LT2] = ACTIONS(1129), + [anon_sym_LT_EQ] = ACTIONS(1129), + [anon_sym_GT_EQ] = ACTIONS(1129), + [anon_sym_not_DASHin] = ACTIONS(1129), + [anon_sym_starts_DASHwith] = ACTIONS(1129), + [anon_sym_ends_DASHwith] = ACTIONS(1129), + [anon_sym_EQ_TILDE] = ACTIONS(1129), + [anon_sym_BANG_TILDE] = ACTIONS(1129), + [anon_sym_bit_DASHand] = ACTIONS(1129), + [anon_sym_bit_DASHxor] = ACTIONS(1129), + [anon_sym_bit_DASHor] = ACTIONS(1129), + [anon_sym_and] = ACTIONS(1129), + [anon_sym_xor] = ACTIONS(1129), + [anon_sym_or] = ACTIONS(1129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1129), + [anon_sym_DOT_DOT_LT] = ACTIONS(1129), + [anon_sym_null] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1129), + [anon_sym_false] = ACTIONS(1129), + [aux_sym__val_number_decimal_token1] = ACTIONS(1129), + [aux_sym__val_number_decimal_token2] = ACTIONS(1129), + [anon_sym_DOT2] = ACTIONS(1129), + [aux_sym__val_number_decimal_token3] = ACTIONS(1129), + [aux_sym__val_number_token1] = ACTIONS(1129), + [aux_sym__val_number_token2] = ACTIONS(1129), + [aux_sym__val_number_token3] = ACTIONS(1129), + [aux_sym__val_number_token4] = ACTIONS(1129), + [aux_sym__val_number_token5] = ACTIONS(1129), + [aux_sym__val_number_token6] = ACTIONS(1129), + [anon_sym_0b] = ACTIONS(1129), + [anon_sym_0o] = ACTIONS(1129), + [anon_sym_0x] = ACTIONS(1129), + [sym_val_date] = ACTIONS(1129), + [anon_sym_DQUOTE] = ACTIONS(1129), + [sym__str_single_quotes] = ACTIONS(1129), + [sym__str_back_ticks] = ACTIONS(1129), + [sym__entry_separator] = ACTIONS(1131), + [anon_sym_err_GT] = ACTIONS(1129), + [anon_sym_out_GT] = ACTIONS(1129), + [anon_sym_e_GT] = ACTIONS(1129), + [anon_sym_o_GT] = ACTIONS(1129), + [anon_sym_err_PLUSout_GT] = ACTIONS(1129), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1129), + [anon_sym_o_PLUSe_GT] = ACTIONS(1129), + [anon_sym_e_PLUSo_GT] = ACTIONS(1129), + [aux_sym_unquoted_token6] = ACTIONS(1133), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1129), [anon_sym_POUND] = ACTIONS(113), }, - [1102] = { - [sym__expr_parenthesized_immediate] = STATE(1547), - [sym__immediate_decimal] = STATE(1245), - [sym_val_variable] = STATE(1547), - [sym__var] = STATE(1262), - [sym_comment] = STATE(1102), - [ts_builtin_sym_end] = ACTIONS(1922), - [anon_sym_export] = ACTIONS(1920), - [anon_sym_alias] = ACTIONS(1920), - [anon_sym_let] = ACTIONS(1920), - [anon_sym_let_DASHenv] = ACTIONS(1920), - [anon_sym_mut] = ACTIONS(1920), - [anon_sym_const] = ACTIONS(1920), - [anon_sym_SEMI] = ACTIONS(1920), - [sym_cmd_identifier] = ACTIONS(1920), - [anon_sym_LF] = ACTIONS(1922), - [anon_sym_def] = ACTIONS(1920), - [anon_sym_export_DASHenv] = ACTIONS(1920), - [anon_sym_extern] = ACTIONS(1920), - [anon_sym_module] = ACTIONS(1920), - [anon_sym_use] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1920), - [anon_sym_DOLLAR] = ACTIONS(1982), - [anon_sym_error] = ACTIONS(1920), - [anon_sym_DASH_DASH] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1920), - [anon_sym_break] = ACTIONS(1920), - [anon_sym_continue] = ACTIONS(1920), - [anon_sym_for] = ACTIONS(1920), - [anon_sym_loop] = ACTIONS(1920), - [anon_sym_while] = ACTIONS(1920), - [anon_sym_do] = ACTIONS(1920), - [anon_sym_if] = ACTIONS(1920), - [anon_sym_match] = ACTIONS(1920), - [anon_sym_LBRACE] = ACTIONS(1920), - [anon_sym_DOT_DOT] = ACTIONS(1920), - [anon_sym_try] = ACTIONS(1920), - [anon_sym_return] = ACTIONS(1920), - [anon_sym_source] = ACTIONS(1920), - [anon_sym_source_DASHenv] = ACTIONS(1920), - [anon_sym_register] = ACTIONS(1920), - [anon_sym_hide] = ACTIONS(1920), - [anon_sym_hide_DASHenv] = ACTIONS(1920), - [anon_sym_overlay] = ACTIONS(1920), - [anon_sym_as] = ACTIONS(1920), - [anon_sym_where] = ACTIONS(1920), - [anon_sym_not] = ACTIONS(1920), - [anon_sym_LPAREN2] = ACTIONS(1984), - [anon_sym_DOT] = ACTIONS(2409), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1920), - [anon_sym_DOT_DOT_LT] = ACTIONS(1920), - [aux_sym__immediate_decimal_token1] = ACTIONS(2334), - [aux_sym__immediate_decimal_token3] = ACTIONS(2334), - [aux_sym__immediate_decimal_token4] = ACTIONS(2336), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_true] = ACTIONS(1920), - [anon_sym_false] = ACTIONS(1920), - [aux_sym__val_number_decimal_token1] = ACTIONS(1920), - [aux_sym__val_number_decimal_token2] = ACTIONS(1920), - [anon_sym_DOT2] = ACTIONS(1920), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_token1] = ACTIONS(1920), - [aux_sym__val_number_token2] = ACTIONS(1920), - [aux_sym__val_number_token3] = ACTIONS(1920), - [aux_sym__val_number_token4] = ACTIONS(1920), - [aux_sym__val_number_token5] = ACTIONS(1920), - [aux_sym__val_number_token6] = ACTIONS(1920), - [anon_sym_0b] = ACTIONS(1920), - [anon_sym_0o] = ACTIONS(1920), - [anon_sym_0x] = ACTIONS(1920), - [sym_val_date] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym__str_single_quotes] = ACTIONS(1920), - [sym__str_back_ticks] = ACTIONS(1920), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1920), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1920), - [anon_sym_CARET] = ACTIONS(1920), - [aux_sym_unquoted_token2] = ACTIONS(1934), + [1336] = { + [sym_comment] = STATE(1336), + [anon_sym_LBRACK] = ACTIONS(1135), + [anon_sym_COMMA] = ACTIONS(1135), + [anon_sym_RBRACK] = ACTIONS(1135), + [anon_sym_LPAREN] = ACTIONS(1135), + [anon_sym_DOLLAR] = ACTIONS(1135), + [anon_sym_GT] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_in] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1135), + [anon_sym_DOT_DOT] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1135), + [anon_sym_STAR_STAR] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_SLASH] = ACTIONS(1135), + [anon_sym_mod] = ACTIONS(1135), + [anon_sym_SLASH_SLASH] = ACTIONS(1135), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_bit_DASHshl] = ACTIONS(1135), + [anon_sym_bit_DASHshr] = ACTIONS(1135), + [anon_sym_EQ_EQ] = ACTIONS(1135), + [anon_sym_BANG_EQ] = ACTIONS(1135), + [anon_sym_LT2] = ACTIONS(1135), + [anon_sym_LT_EQ] = ACTIONS(1135), + [anon_sym_GT_EQ] = ACTIONS(1135), + [anon_sym_not_DASHin] = ACTIONS(1135), + [anon_sym_starts_DASHwith] = ACTIONS(1135), + [anon_sym_ends_DASHwith] = ACTIONS(1135), + [anon_sym_EQ_TILDE] = ACTIONS(1135), + [anon_sym_BANG_TILDE] = ACTIONS(1135), + [anon_sym_bit_DASHand] = ACTIONS(1135), + [anon_sym_bit_DASHxor] = ACTIONS(1135), + [anon_sym_bit_DASHor] = ACTIONS(1135), + [anon_sym_and] = ACTIONS(1135), + [anon_sym_xor] = ACTIONS(1135), + [anon_sym_or] = ACTIONS(1135), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1135), + [anon_sym_DOT_DOT_LT] = ACTIONS(1135), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_true] = ACTIONS(1135), + [anon_sym_false] = ACTIONS(1135), + [aux_sym__val_number_decimal_token1] = ACTIONS(1135), + [aux_sym__val_number_decimal_token2] = ACTIONS(1135), + [anon_sym_DOT2] = ACTIONS(1135), + [aux_sym__val_number_decimal_token3] = ACTIONS(1135), + [aux_sym__val_number_token1] = ACTIONS(1135), + [aux_sym__val_number_token2] = ACTIONS(1135), + [aux_sym__val_number_token3] = ACTIONS(1135), + [aux_sym__val_number_token4] = ACTIONS(1135), + [aux_sym__val_number_token5] = ACTIONS(1135), + [aux_sym__val_number_token6] = ACTIONS(1135), + [anon_sym_0b] = ACTIONS(1135), + [anon_sym_0o] = ACTIONS(1135), + [anon_sym_0x] = ACTIONS(1135), + [sym_val_date] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1135), + [sym__str_single_quotes] = ACTIONS(1135), + [sym__str_back_ticks] = ACTIONS(1135), + [sym__entry_separator] = ACTIONS(1137), + [anon_sym_err_GT] = ACTIONS(1135), + [anon_sym_out_GT] = ACTIONS(1135), + [anon_sym_e_GT] = ACTIONS(1135), + [anon_sym_o_GT] = ACTIONS(1135), + [anon_sym_err_PLUSout_GT] = ACTIONS(1135), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1135), + [anon_sym_o_PLUSe_GT] = ACTIONS(1135), + [anon_sym_e_PLUSo_GT] = ACTIONS(1135), + [aux_sym_unquoted_token6] = ACTIONS(1133), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1135), [anon_sym_POUND] = ACTIONS(113), }, - [1103] = { - [sym_comment] = STATE(1103), - [anon_sym_export] = ACTIONS(917), - [anon_sym_alias] = ACTIONS(917), - [anon_sym_let] = ACTIONS(917), - [anon_sym_let_DASHenv] = ACTIONS(917), - [anon_sym_mut] = ACTIONS(917), - [anon_sym_const] = ACTIONS(917), - [anon_sym_SEMI] = ACTIONS(917), - [sym_cmd_identifier] = ACTIONS(917), - [anon_sym_LF] = ACTIONS(919), - [anon_sym_def] = ACTIONS(917), - [anon_sym_export_DASHenv] = ACTIONS(917), - [anon_sym_extern] = ACTIONS(917), - [anon_sym_module] = ACTIONS(917), - [anon_sym_use] = ACTIONS(917), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_LPAREN] = ACTIONS(917), - [anon_sym_RPAREN] = ACTIONS(917), - [anon_sym_DOLLAR] = ACTIONS(917), - [anon_sym_error] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_break] = ACTIONS(917), - [anon_sym_continue] = ACTIONS(917), - [anon_sym_for] = ACTIONS(917), - [anon_sym_loop] = ACTIONS(917), - [anon_sym_while] = ACTIONS(917), - [anon_sym_do] = ACTIONS(917), - [anon_sym_if] = ACTIONS(917), - [anon_sym_match] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(917), - [anon_sym_RBRACE] = ACTIONS(917), - [anon_sym_DOT_DOT] = ACTIONS(917), - [anon_sym_try] = ACTIONS(917), - [anon_sym_return] = ACTIONS(917), - [anon_sym_source] = ACTIONS(917), - [anon_sym_source_DASHenv] = ACTIONS(917), - [anon_sym_register] = ACTIONS(917), - [anon_sym_hide] = ACTIONS(917), - [anon_sym_hide_DASHenv] = ACTIONS(917), - [anon_sym_overlay] = ACTIONS(917), - [anon_sym_as] = ACTIONS(917), - [anon_sym_where] = ACTIONS(917), - [anon_sym_not] = ACTIONS(917), - [anon_sym_LPAREN2] = ACTIONS(919), - [anon_sym_DOT_DOT2] = ACTIONS(917), - [anon_sym_DOT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ] = ACTIONS(917), - [anon_sym_DOT_DOT_LT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(919), - [anon_sym_DOT_DOT_LT2] = ACTIONS(919), - [aux_sym__immediate_decimal_token2] = ACTIONS(2411), - [anon_sym_null] = ACTIONS(917), - [anon_sym_true] = ACTIONS(917), - [anon_sym_false] = ACTIONS(917), - [aux_sym__val_number_decimal_token1] = ACTIONS(917), - [aux_sym__val_number_decimal_token2] = ACTIONS(917), - [anon_sym_DOT2] = ACTIONS(917), - [aux_sym__val_number_decimal_token3] = ACTIONS(917), - [aux_sym__val_number_token1] = ACTIONS(917), - [aux_sym__val_number_token2] = ACTIONS(917), - [aux_sym__val_number_token3] = ACTIONS(917), - [aux_sym__val_number_token4] = ACTIONS(917), - [aux_sym__val_number_token5] = ACTIONS(917), - [aux_sym__val_number_token6] = ACTIONS(917), - [anon_sym_0b] = ACTIONS(917), - [sym_filesize_unit] = ACTIONS(917), - [sym_duration_unit] = ACTIONS(917), - [anon_sym_0o] = ACTIONS(917), - [anon_sym_0x] = ACTIONS(917), - [sym_val_date] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(917), - [sym__str_single_quotes] = ACTIONS(917), - [sym__str_back_ticks] = ACTIONS(917), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(917), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(917), - [anon_sym_CARET] = ACTIONS(917), - [aux_sym_unquoted_token5] = ACTIONS(917), + [1337] = { + [sym_comment] = STATE(1337), + [anon_sym_export] = ACTIONS(1211), + [anon_sym_alias] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(1211), + [anon_sym_let_DASHenv] = ACTIONS(1211), + [anon_sym_mut] = ACTIONS(1211), + [anon_sym_const] = ACTIONS(1211), + [anon_sym_SEMI] = ACTIONS(1211), + [sym_cmd_identifier] = ACTIONS(1211), + [anon_sym_LF] = ACTIONS(1213), + [anon_sym_def] = ACTIONS(1211), + [anon_sym_export_DASHenv] = ACTIONS(1211), + [anon_sym_extern] = ACTIONS(1211), + [anon_sym_module] = ACTIONS(1211), + [anon_sym_use] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(1211), + [anon_sym_RPAREN] = ACTIONS(1211), + [anon_sym_DOLLAR] = ACTIONS(1211), + [anon_sym_error] = ACTIONS(1211), + [anon_sym_DASH_DASH] = ACTIONS(1211), + [anon_sym_DASH] = ACTIONS(1211), + [anon_sym_break] = ACTIONS(1211), + [anon_sym_continue] = ACTIONS(1211), + [anon_sym_for] = ACTIONS(1211), + [anon_sym_loop] = ACTIONS(1211), + [anon_sym_while] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(1211), + [anon_sym_if] = ACTIONS(1211), + [anon_sym_match] = ACTIONS(1211), + [anon_sym_LBRACE] = ACTIONS(1211), + [anon_sym_RBRACE] = ACTIONS(1211), + [anon_sym_DOT_DOT] = ACTIONS(1211), + [anon_sym_try] = ACTIONS(1211), + [anon_sym_return] = ACTIONS(1211), + [anon_sym_source] = ACTIONS(1211), + [anon_sym_source_DASHenv] = ACTIONS(1211), + [anon_sym_register] = ACTIONS(1211), + [anon_sym_hide] = ACTIONS(1211), + [anon_sym_hide_DASHenv] = ACTIONS(1211), + [anon_sym_overlay] = ACTIONS(1211), + [anon_sym_as] = ACTIONS(1211), + [anon_sym_where] = ACTIONS(1211), + [anon_sym_not] = ACTIONS(1211), + [anon_sym_LPAREN2] = ACTIONS(1213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1211), + [anon_sym_DOT_DOT_LT] = ACTIONS(1211), + [anon_sym_null] = ACTIONS(1211), + [anon_sym_true] = ACTIONS(1211), + [anon_sym_false] = ACTIONS(1211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1211), + [aux_sym__val_number_decimal_token2] = ACTIONS(1211), + [anon_sym_DOT2] = ACTIONS(1211), + [aux_sym__val_number_decimal_token3] = ACTIONS(1211), + [aux_sym__val_number_token1] = ACTIONS(1211), + [aux_sym__val_number_token2] = ACTIONS(1211), + [aux_sym__val_number_token3] = ACTIONS(1211), + [aux_sym__val_number_token4] = ACTIONS(1211), + [aux_sym__val_number_token5] = ACTIONS(1211), + [aux_sym__val_number_token6] = ACTIONS(1211), + [anon_sym_0b] = ACTIONS(1211), + [anon_sym_0o] = ACTIONS(1211), + [anon_sym_0x] = ACTIONS(1211), + [sym_val_date] = ACTIONS(1211), + [anon_sym_DQUOTE] = ACTIONS(1211), + [sym__str_single_quotes] = ACTIONS(1211), + [sym__str_back_ticks] = ACTIONS(1211), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1211), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1211), + [anon_sym_CARET] = ACTIONS(1211), [anon_sym_POUND] = ACTIONS(113), }, - [1104] = { - [sym__expr_parenthesized_immediate] = STATE(2473), - [sym__immediate_decimal] = STATE(1444), - [sym_val_variable] = STATE(2473), - [sym__var] = STATE(1498), - [sym_comment] = STATE(1104), - [ts_builtin_sym_end] = ACTIONS(1922), - [anon_sym_export] = ACTIONS(1920), - [anon_sym_alias] = ACTIONS(1920), - [anon_sym_let] = ACTIONS(1920), - [anon_sym_let_DASHenv] = ACTIONS(1920), - [anon_sym_mut] = ACTIONS(1920), - [anon_sym_const] = ACTIONS(1920), - [anon_sym_SEMI] = ACTIONS(1920), - [sym_cmd_identifier] = ACTIONS(1920), - [anon_sym_LF] = ACTIONS(1922), - [anon_sym_def] = ACTIONS(1920), - [anon_sym_export_DASHenv] = ACTIONS(1920), - [anon_sym_extern] = ACTIONS(1920), - [anon_sym_module] = ACTIONS(1920), - [anon_sym_use] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1920), - [anon_sym_DOLLAR] = ACTIONS(2367), - [anon_sym_error] = ACTIONS(1920), - [anon_sym_DASH_DASH] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1920), - [anon_sym_break] = ACTIONS(1920), - [anon_sym_continue] = ACTIONS(1920), - [anon_sym_for] = ACTIONS(1920), - [anon_sym_loop] = ACTIONS(1920), - [anon_sym_while] = ACTIONS(1920), - [anon_sym_do] = ACTIONS(1920), - [anon_sym_if] = ACTIONS(1920), - [anon_sym_match] = ACTIONS(1920), - [anon_sym_LBRACE] = ACTIONS(1920), - [anon_sym_DOT_DOT] = ACTIONS(1920), - [anon_sym_try] = ACTIONS(1920), - [anon_sym_return] = ACTIONS(1920), - [anon_sym_source] = ACTIONS(1920), - [anon_sym_source_DASHenv] = ACTIONS(1920), - [anon_sym_register] = ACTIONS(1920), - [anon_sym_hide] = ACTIONS(1920), - [anon_sym_hide_DASHenv] = ACTIONS(1920), - [anon_sym_overlay] = ACTIONS(1920), - [anon_sym_as] = ACTIONS(1920), - [anon_sym_where] = ACTIONS(1920), - [anon_sym_not] = ACTIONS(1920), - [anon_sym_LPAREN2] = ACTIONS(2369), - [anon_sym_DOT] = ACTIONS(2377), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1920), - [anon_sym_DOT_DOT_LT] = ACTIONS(1920), - [aux_sym__immediate_decimal_token1] = ACTIONS(2379), - [aux_sym__immediate_decimal_token3] = ACTIONS(2379), - [aux_sym__immediate_decimal_token4] = ACTIONS(2381), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_true] = ACTIONS(1920), - [anon_sym_false] = ACTIONS(1920), - [aux_sym__val_number_decimal_token1] = ACTIONS(1920), - [aux_sym__val_number_decimal_token2] = ACTIONS(1920), - [anon_sym_DOT2] = ACTIONS(1920), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_token1] = ACTIONS(1920), - [aux_sym__val_number_token2] = ACTIONS(1920), - [aux_sym__val_number_token3] = ACTIONS(1920), - [aux_sym__val_number_token4] = ACTIONS(1920), - [aux_sym__val_number_token5] = ACTIONS(1920), - [aux_sym__val_number_token6] = ACTIONS(1920), - [anon_sym_0b] = ACTIONS(1920), - [anon_sym_0o] = ACTIONS(1920), - [anon_sym_0x] = ACTIONS(1920), - [sym_val_date] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym__str_single_quotes] = ACTIONS(1920), - [sym__str_back_ticks] = ACTIONS(1920), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1920), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1920), - [anon_sym_CARET] = ACTIONS(1920), - [aux_sym_unquoted_token2] = ACTIONS(1934), + [1338] = { + [sym_comment] = STATE(1338), + [ts_builtin_sym_end] = ACTIONS(1091), + [anon_sym_export] = ACTIONS(1089), + [anon_sym_alias] = ACTIONS(1089), + [anon_sym_let] = ACTIONS(1089), + [anon_sym_let_DASHenv] = ACTIONS(1089), + [anon_sym_mut] = ACTIONS(1089), + [anon_sym_const] = ACTIONS(1089), + [anon_sym_SEMI] = ACTIONS(1089), + [sym_cmd_identifier] = ACTIONS(1089), + [anon_sym_LF] = ACTIONS(1091), + [anon_sym_def] = ACTIONS(1089), + [anon_sym_export_DASHenv] = ACTIONS(1089), + [anon_sym_extern] = ACTIONS(1089), + [anon_sym_module] = ACTIONS(1089), + [anon_sym_use] = ACTIONS(1089), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1089), + [anon_sym_error] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_DASH] = ACTIONS(1089), + [anon_sym_break] = ACTIONS(1089), + [anon_sym_continue] = ACTIONS(1089), + [anon_sym_for] = ACTIONS(1089), + [anon_sym_loop] = ACTIONS(1089), + [anon_sym_while] = ACTIONS(1089), + [anon_sym_do] = ACTIONS(1089), + [anon_sym_if] = ACTIONS(1089), + [anon_sym_match] = ACTIONS(1089), + [anon_sym_LBRACE] = ACTIONS(1089), + [anon_sym_DOT_DOT] = ACTIONS(1089), + [anon_sym_try] = ACTIONS(1089), + [anon_sym_return] = ACTIONS(1089), + [anon_sym_source] = ACTIONS(1089), + [anon_sym_source_DASHenv] = ACTIONS(1089), + [anon_sym_register] = ACTIONS(1089), + [anon_sym_hide] = ACTIONS(1089), + [anon_sym_hide_DASHenv] = ACTIONS(1089), + [anon_sym_overlay] = ACTIONS(1089), + [anon_sym_as] = ACTIONS(1089), + [anon_sym_where] = ACTIONS(1089), + [anon_sym_not] = ACTIONS(1089), + [anon_sym_LPAREN2] = ACTIONS(3783), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_DOT_DOT_LT] = ACTIONS(1089), + [anon_sym_null] = ACTIONS(1089), + [anon_sym_true] = ACTIONS(1089), + [anon_sym_false] = ACTIONS(1089), + [aux_sym__val_number_decimal_token1] = ACTIONS(1089), + [aux_sym__val_number_decimal_token2] = ACTIONS(1089), + [anon_sym_DOT2] = ACTIONS(1089), + [aux_sym__val_number_decimal_token3] = ACTIONS(1089), + [aux_sym__val_number_token1] = ACTIONS(1089), + [aux_sym__val_number_token2] = ACTIONS(1089), + [aux_sym__val_number_token3] = ACTIONS(1089), + [aux_sym__val_number_token4] = ACTIONS(1089), + [aux_sym__val_number_token5] = ACTIONS(1089), + [aux_sym__val_number_token6] = ACTIONS(1089), + [anon_sym_0b] = ACTIONS(1089), + [anon_sym_0o] = ACTIONS(1089), + [anon_sym_0x] = ACTIONS(1089), + [sym_val_date] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1089), + [sym__str_single_quotes] = ACTIONS(1089), + [sym__str_back_ticks] = ACTIONS(1089), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1089), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1089), + [anon_sym_CARET] = ACTIONS(1089), + [aux_sym_unquoted_token6] = ACTIONS(1149), [anon_sym_POUND] = ACTIONS(113), }, - [1105] = { - [sym__expr_parenthesized_immediate] = STATE(2444), - [sym__immediate_decimal] = STATE(1605), - [sym_val_variable] = STATE(2444), - [sym__var] = STATE(1498), - [sym_comment] = STATE(1105), - [ts_builtin_sym_end] = ACTIONS(938), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(2367), - [anon_sym_error] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_as] = ACTIONS(936), - [anon_sym_where] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_LPAREN2] = ACTIONS(2369), - [anon_sym_DOT] = ACTIONS(2371), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [aux_sym__immediate_decimal_token1] = ACTIONS(2373), - [aux_sym__immediate_decimal_token3] = ACTIONS(2373), - [aux_sym__immediate_decimal_token4] = ACTIONS(2375), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [aux_sym_unquoted_token4] = ACTIONS(1024), + [1339] = { + [sym_comment] = STATE(1339), + [anon_sym_export] = ACTIONS(1215), + [anon_sym_alias] = ACTIONS(1215), + [anon_sym_let] = ACTIONS(1215), + [anon_sym_let_DASHenv] = ACTIONS(1215), + [anon_sym_mut] = ACTIONS(1215), + [anon_sym_const] = ACTIONS(1215), + [anon_sym_SEMI] = ACTIONS(1215), + [sym_cmd_identifier] = ACTIONS(1215), + [anon_sym_LF] = ACTIONS(1217), + [anon_sym_def] = ACTIONS(1215), + [anon_sym_export_DASHenv] = ACTIONS(1215), + [anon_sym_extern] = ACTIONS(1215), + [anon_sym_module] = ACTIONS(1215), + [anon_sym_use] = ACTIONS(1215), + [anon_sym_LBRACK] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1215), + [anon_sym_RPAREN] = ACTIONS(1215), + [anon_sym_DOLLAR] = ACTIONS(1215), + [anon_sym_error] = ACTIONS(1215), + [anon_sym_DASH_DASH] = ACTIONS(1215), + [anon_sym_DASH] = ACTIONS(1215), + [anon_sym_break] = ACTIONS(1215), + [anon_sym_continue] = ACTIONS(1215), + [anon_sym_for] = ACTIONS(1215), + [anon_sym_loop] = ACTIONS(1215), + [anon_sym_while] = ACTIONS(1215), + [anon_sym_do] = ACTIONS(1215), + [anon_sym_if] = ACTIONS(1215), + [anon_sym_match] = ACTIONS(1215), + [anon_sym_LBRACE] = ACTIONS(1215), + [anon_sym_RBRACE] = ACTIONS(1215), + [anon_sym_DOT_DOT] = ACTIONS(1215), + [anon_sym_try] = ACTIONS(1215), + [anon_sym_return] = ACTIONS(1215), + [anon_sym_source] = ACTIONS(1215), + [anon_sym_source_DASHenv] = ACTIONS(1215), + [anon_sym_register] = ACTIONS(1215), + [anon_sym_hide] = ACTIONS(1215), + [anon_sym_hide_DASHenv] = ACTIONS(1215), + [anon_sym_overlay] = ACTIONS(1215), + [anon_sym_as] = ACTIONS(1215), + [anon_sym_where] = ACTIONS(1215), + [anon_sym_not] = ACTIONS(1215), + [anon_sym_LPAREN2] = ACTIONS(1217), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1215), + [anon_sym_DOT_DOT_LT] = ACTIONS(1215), + [anon_sym_null] = ACTIONS(1215), + [anon_sym_true] = ACTIONS(1215), + [anon_sym_false] = ACTIONS(1215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1215), + [aux_sym__val_number_decimal_token2] = ACTIONS(1215), + [anon_sym_DOT2] = ACTIONS(1215), + [aux_sym__val_number_decimal_token3] = ACTIONS(1215), + [aux_sym__val_number_token1] = ACTIONS(1215), + [aux_sym__val_number_token2] = ACTIONS(1215), + [aux_sym__val_number_token3] = ACTIONS(1215), + [aux_sym__val_number_token4] = ACTIONS(1215), + [aux_sym__val_number_token5] = ACTIONS(1215), + [aux_sym__val_number_token6] = ACTIONS(1215), + [anon_sym_0b] = ACTIONS(1215), + [anon_sym_0o] = ACTIONS(1215), + [anon_sym_0x] = ACTIONS(1215), + [sym_val_date] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1215), + [sym__str_single_quotes] = ACTIONS(1215), + [sym__str_back_ticks] = ACTIONS(1215), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1215), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), + [anon_sym_CARET] = ACTIONS(1215), [anon_sym_POUND] = ACTIONS(113), }, - [1106] = { - [sym_comment] = STATE(1106), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_COMMA] = ACTIONS(909), - [anon_sym_RBRACK] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_DOT_DOT] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(909), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(909), - [anon_sym_SLASH_SLASH] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(909), - [anon_sym_bit_DASHshr] = ACTIONS(909), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_not_DASHin] = ACTIONS(909), - [anon_sym_starts_DASHwith] = ACTIONS(909), - [anon_sym_ends_DASHwith] = ACTIONS(909), - [anon_sym_EQ_TILDE] = ACTIONS(909), - [anon_sym_BANG_TILDE] = ACTIONS(909), - [anon_sym_bit_DASHand] = ACTIONS(909), - [anon_sym_bit_DASHxor] = ACTIONS(909), - [anon_sym_bit_DASHor] = ACTIONS(909), - [anon_sym_and] = ACTIONS(909), - [anon_sym_xor] = ACTIONS(909), - [anon_sym_or] = ACTIONS(909), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [aux_sym__immediate_decimal_token1] = ACTIONS(2413), - [aux_sym__immediate_decimal_token2] = ACTIONS(2415), - [anon_sym_null] = ACTIONS(909), - [anon_sym_true] = ACTIONS(909), - [anon_sym_false] = ACTIONS(909), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(909), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(909), - [aux_sym__val_number_token1] = ACTIONS(909), - [aux_sym__val_number_token2] = ACTIONS(909), - [aux_sym__val_number_token3] = ACTIONS(909), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(909), - [aux_sym__val_number_token6] = ACTIONS(909), - [anon_sym_0b] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(911), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym__str_single_quotes] = ACTIONS(909), - [sym__str_back_ticks] = ACTIONS(909), - [sym__entry_separator] = ACTIONS(911), - [anon_sym_err_GT] = ACTIONS(909), - [anon_sym_out_GT] = ACTIONS(909), - [anon_sym_e_GT] = ACTIONS(909), - [anon_sym_o_GT] = ACTIONS(909), - [anon_sym_err_PLUSout_GT] = ACTIONS(909), - [anon_sym_out_PLUSerr_GT] = ACTIONS(909), - [anon_sym_o_PLUSe_GT] = ACTIONS(909), - [anon_sym_e_PLUSo_GT] = ACTIONS(909), - [aux_sym_unquoted_token5] = ACTIONS(909), - [aux_sym__unquoted_in_list_token1] = ACTIONS(909), + [1340] = { + [sym_comment] = STATE(1340), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_COMMA] = ACTIONS(1047), + [anon_sym_RBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1047), + [anon_sym_GT] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_in] = ACTIONS(1047), + [anon_sym_LBRACE] = ACTIONS(1047), + [anon_sym_DOT_DOT] = ACTIONS(1047), + [anon_sym_STAR] = ACTIONS(1047), + [anon_sym_STAR_STAR] = ACTIONS(1047), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_SLASH] = ACTIONS(1047), + [anon_sym_mod] = ACTIONS(1047), + [anon_sym_SLASH_SLASH] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1047), + [anon_sym_bit_DASHshl] = ACTIONS(1047), + [anon_sym_bit_DASHshr] = ACTIONS(1047), + [anon_sym_EQ_EQ] = ACTIONS(1047), + [anon_sym_BANG_EQ] = ACTIONS(1047), + [anon_sym_LT2] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1047), + [anon_sym_GT_EQ] = ACTIONS(1047), + [anon_sym_not_DASHin] = ACTIONS(1047), + [anon_sym_starts_DASHwith] = ACTIONS(1047), + [anon_sym_ends_DASHwith] = ACTIONS(1047), + [anon_sym_EQ_TILDE] = ACTIONS(1047), + [anon_sym_BANG_TILDE] = ACTIONS(1047), + [anon_sym_bit_DASHand] = ACTIONS(1047), + [anon_sym_bit_DASHxor] = ACTIONS(1047), + [anon_sym_bit_DASHor] = ACTIONS(1047), + [anon_sym_and] = ACTIONS(1047), + [anon_sym_xor] = ACTIONS(1047), + [anon_sym_or] = ACTIONS(1047), + [anon_sym_DOT] = ACTIONS(1047), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1047), + [anon_sym_DOT_DOT_LT] = ACTIONS(1047), + [anon_sym_null] = ACTIONS(1047), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [aux_sym__val_number_decimal_token1] = ACTIONS(1047), + [aux_sym__val_number_decimal_token2] = ACTIONS(1047), + [anon_sym_DOT2] = ACTIONS(1047), + [aux_sym__val_number_decimal_token3] = ACTIONS(1047), + [aux_sym__val_number_token1] = ACTIONS(1047), + [aux_sym__val_number_token2] = ACTIONS(1047), + [aux_sym__val_number_token3] = ACTIONS(1047), + [aux_sym__val_number_token4] = ACTIONS(1047), + [aux_sym__val_number_token5] = ACTIONS(1047), + [aux_sym__val_number_token6] = ACTIONS(1047), + [anon_sym_0b] = ACTIONS(1047), + [anon_sym_0o] = ACTIONS(1047), + [anon_sym_0x] = ACTIONS(1047), + [sym_val_date] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1047), + [sym__str_single_quotes] = ACTIONS(1047), + [sym__str_back_ticks] = ACTIONS(1047), + [sym__entry_separator] = ACTIONS(1049), + [anon_sym_err_GT] = ACTIONS(1047), + [anon_sym_out_GT] = ACTIONS(1047), + [anon_sym_e_GT] = ACTIONS(1047), + [anon_sym_o_GT] = ACTIONS(1047), + [anon_sym_err_PLUSout_GT] = ACTIONS(1047), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1047), + [anon_sym_o_PLUSe_GT] = ACTIONS(1047), + [anon_sym_e_PLUSo_GT] = ACTIONS(1047), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1047), [anon_sym_POUND] = ACTIONS(113), }, - [1107] = { - [sym_comment] = STATE(1107), - [anon_sym_export] = ACTIONS(923), - [anon_sym_alias] = ACTIONS(923), - [anon_sym_let] = ACTIONS(923), - [anon_sym_let_DASHenv] = ACTIONS(923), - [anon_sym_mut] = ACTIONS(923), - [anon_sym_const] = ACTIONS(923), - [anon_sym_SEMI] = ACTIONS(923), - [sym_cmd_identifier] = ACTIONS(923), - [anon_sym_LF] = ACTIONS(925), - [anon_sym_def] = ACTIONS(923), - [anon_sym_export_DASHenv] = ACTIONS(923), - [anon_sym_extern] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_use] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_RPAREN] = ACTIONS(923), - [anon_sym_DOLLAR] = ACTIONS(923), - [anon_sym_error] = ACTIONS(923), - [anon_sym_DASH_DASH] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_break] = ACTIONS(923), - [anon_sym_continue] = ACTIONS(923), - [anon_sym_for] = ACTIONS(923), - [anon_sym_loop] = ACTIONS(923), - [anon_sym_while] = ACTIONS(923), - [anon_sym_do] = ACTIONS(923), - [anon_sym_if] = ACTIONS(923), - [anon_sym_match] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(923), - [anon_sym_RBRACE] = ACTIONS(923), - [anon_sym_DOT_DOT] = ACTIONS(923), - [anon_sym_try] = ACTIONS(923), - [anon_sym_return] = ACTIONS(923), - [anon_sym_source] = ACTIONS(923), - [anon_sym_source_DASHenv] = ACTIONS(923), - [anon_sym_register] = ACTIONS(923), - [anon_sym_hide] = ACTIONS(923), - [anon_sym_hide_DASHenv] = ACTIONS(923), - [anon_sym_overlay] = ACTIONS(923), - [anon_sym_as] = ACTIONS(923), - [anon_sym_where] = ACTIONS(923), - [anon_sym_not] = ACTIONS(923), - [anon_sym_LPAREN2] = ACTIONS(925), - [anon_sym_DOT_DOT2] = ACTIONS(923), - [anon_sym_DOT] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ] = ACTIONS(923), - [anon_sym_DOT_DOT_LT] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(925), - [anon_sym_DOT_DOT_LT2] = ACTIONS(925), - [aux_sym__immediate_decimal_token2] = ACTIONS(2347), - [anon_sym_null] = ACTIONS(923), - [anon_sym_true] = ACTIONS(923), - [anon_sym_false] = ACTIONS(923), - [aux_sym__val_number_decimal_token1] = ACTIONS(923), - [aux_sym__val_number_decimal_token2] = ACTIONS(923), - [anon_sym_DOT2] = ACTIONS(923), - [aux_sym__val_number_decimal_token3] = ACTIONS(923), - [aux_sym__val_number_token1] = ACTIONS(923), - [aux_sym__val_number_token2] = ACTIONS(923), - [aux_sym__val_number_token3] = ACTIONS(923), - [aux_sym__val_number_token4] = ACTIONS(923), - [aux_sym__val_number_token5] = ACTIONS(923), - [aux_sym__val_number_token6] = ACTIONS(923), - [anon_sym_0b] = ACTIONS(923), - [sym_filesize_unit] = ACTIONS(923), - [sym_duration_unit] = ACTIONS(923), - [anon_sym_0o] = ACTIONS(923), - [anon_sym_0x] = ACTIONS(923), - [sym_val_date] = ACTIONS(923), - [anon_sym_DQUOTE] = ACTIONS(923), - [sym__str_single_quotes] = ACTIONS(923), - [sym__str_back_ticks] = ACTIONS(923), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(923), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), - [anon_sym_CARET] = ACTIONS(923), - [aux_sym_unquoted_token5] = ACTIONS(923), + [1341] = { + [sym_comment] = STATE(1341), + [ts_builtin_sym_end] = ACTIONS(1209), + [anon_sym_export] = ACTIONS(1139), + [anon_sym_alias] = ACTIONS(1139), + [anon_sym_let] = ACTIONS(1139), + [anon_sym_let_DASHenv] = ACTIONS(1139), + [anon_sym_mut] = ACTIONS(1139), + [anon_sym_const] = ACTIONS(1139), + [anon_sym_SEMI] = ACTIONS(1139), + [sym_cmd_identifier] = ACTIONS(1139), + [anon_sym_LF] = ACTIONS(1139), + [anon_sym_def] = ACTIONS(1139), + [anon_sym_export_DASHenv] = ACTIONS(1139), + [anon_sym_extern] = ACTIONS(1139), + [anon_sym_module] = ACTIONS(1139), + [anon_sym_use] = ACTIONS(1139), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LPAREN] = ACTIONS(1139), + [anon_sym_DOLLAR] = ACTIONS(1139), + [anon_sym_error] = ACTIONS(1139), + [anon_sym_DASH_DASH] = ACTIONS(1139), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_break] = ACTIONS(1139), + [anon_sym_continue] = ACTIONS(1139), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_loop] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1139), + [anon_sym_do] = ACTIONS(1139), + [anon_sym_if] = ACTIONS(1139), + [anon_sym_match] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1139), + [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_try] = ACTIONS(1139), + [anon_sym_return] = ACTIONS(1139), + [anon_sym_source] = ACTIONS(1139), + [anon_sym_source_DASHenv] = ACTIONS(1139), + [anon_sym_register] = ACTIONS(1139), + [anon_sym_hide] = ACTIONS(1139), + [anon_sym_hide_DASHenv] = ACTIONS(1139), + [anon_sym_overlay] = ACTIONS(1139), + [anon_sym_as] = ACTIONS(1139), + [anon_sym_where] = ACTIONS(1139), + [anon_sym_not] = ACTIONS(1139), + [anon_sym_LPAREN2] = ACTIONS(1209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1139), + [anon_sym_DOT_DOT_LT] = ACTIONS(1139), + [anon_sym_null] = ACTIONS(1139), + [anon_sym_true] = ACTIONS(1139), + [anon_sym_false] = ACTIONS(1139), + [aux_sym__val_number_decimal_token1] = ACTIONS(1139), + [aux_sym__val_number_decimal_token2] = ACTIONS(1139), + [anon_sym_DOT2] = ACTIONS(1139), + [aux_sym__val_number_decimal_token3] = ACTIONS(1139), + [aux_sym__val_number_token1] = ACTIONS(1139), + [aux_sym__val_number_token2] = ACTIONS(1139), + [aux_sym__val_number_token3] = ACTIONS(1139), + [aux_sym__val_number_token4] = ACTIONS(1139), + [aux_sym__val_number_token5] = ACTIONS(1139), + [aux_sym__val_number_token6] = ACTIONS(1139), + [anon_sym_0b] = ACTIONS(1139), + [anon_sym_0o] = ACTIONS(1139), + [anon_sym_0x] = ACTIONS(1139), + [sym_val_date] = ACTIONS(1139), + [anon_sym_DQUOTE] = ACTIONS(1139), + [sym__str_single_quotes] = ACTIONS(1139), + [sym__str_back_ticks] = ACTIONS(1139), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1139), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1139), + [aux_sym__list_item_starts_with_sign_token1] = ACTIONS(4757), + [anon_sym_CARET] = ACTIONS(1139), [anon_sym_POUND] = ACTIONS(113), }, - [1108] = { - [sym_comment] = STATE(1108), - [anon_sym_LBRACK] = ACTIONS(923), - [anon_sym_COMMA] = ACTIONS(923), - [anon_sym_RBRACK] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_DOLLAR] = ACTIONS(923), - [anon_sym_GT] = ACTIONS(923), - [anon_sym_DASH_DASH] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_in] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(923), - [anon_sym_DOT_DOT] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_STAR_STAR] = ACTIONS(923), - [anon_sym_PLUS_PLUS] = ACTIONS(923), - [anon_sym_SLASH] = ACTIONS(923), - [anon_sym_mod] = ACTIONS(923), - [anon_sym_SLASH_SLASH] = ACTIONS(923), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_bit_DASHshl] = ACTIONS(923), - [anon_sym_bit_DASHshr] = ACTIONS(923), - [anon_sym_EQ_EQ] = ACTIONS(923), - [anon_sym_BANG_EQ] = ACTIONS(923), - [anon_sym_LT2] = ACTIONS(923), - [anon_sym_LT_EQ] = ACTIONS(923), - [anon_sym_GT_EQ] = ACTIONS(923), - [anon_sym_not_DASHin] = ACTIONS(923), - [anon_sym_starts_DASHwith] = ACTIONS(923), - [anon_sym_ends_DASHwith] = ACTIONS(923), - [anon_sym_EQ_TILDE] = ACTIONS(923), - [anon_sym_BANG_TILDE] = ACTIONS(923), - [anon_sym_bit_DASHand] = ACTIONS(923), - [anon_sym_bit_DASHxor] = ACTIONS(923), - [anon_sym_bit_DASHor] = ACTIONS(923), - [anon_sym_and] = ACTIONS(923), - [anon_sym_xor] = ACTIONS(923), - [anon_sym_or] = ACTIONS(923), - [anon_sym_DOT_DOT2] = ACTIONS(923), - [anon_sym_DOT] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ] = ACTIONS(923), - [anon_sym_DOT_DOT_LT] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(925), - [anon_sym_DOT_DOT_LT2] = ACTIONS(925), - [aux_sym__immediate_decimal_token2] = ACTIONS(2417), - [anon_sym_null] = ACTIONS(923), - [anon_sym_true] = ACTIONS(923), - [anon_sym_false] = ACTIONS(923), - [aux_sym__val_number_decimal_token1] = ACTIONS(923), - [aux_sym__val_number_decimal_token2] = ACTIONS(923), - [anon_sym_DOT2] = ACTIONS(923), - [aux_sym__val_number_decimal_token3] = ACTIONS(923), - [aux_sym__val_number_token1] = ACTIONS(923), - [aux_sym__val_number_token2] = ACTIONS(923), - [aux_sym__val_number_token3] = ACTIONS(923), - [aux_sym__val_number_token4] = ACTIONS(923), - [aux_sym__val_number_token5] = ACTIONS(923), - [aux_sym__val_number_token6] = ACTIONS(923), - [anon_sym_0b] = ACTIONS(923), - [sym_filesize_unit] = ACTIONS(923), - [sym_duration_unit] = ACTIONS(925), - [anon_sym_0o] = ACTIONS(923), - [anon_sym_0x] = ACTIONS(923), - [sym_val_date] = ACTIONS(923), - [anon_sym_DQUOTE] = ACTIONS(923), - [sym__str_single_quotes] = ACTIONS(923), - [sym__str_back_ticks] = ACTIONS(923), - [sym__entry_separator] = ACTIONS(925), - [anon_sym_err_GT] = ACTIONS(923), - [anon_sym_out_GT] = ACTIONS(923), - [anon_sym_e_GT] = ACTIONS(923), - [anon_sym_o_GT] = ACTIONS(923), - [anon_sym_err_PLUSout_GT] = ACTIONS(923), - [anon_sym_out_PLUSerr_GT] = ACTIONS(923), - [anon_sym_o_PLUSe_GT] = ACTIONS(923), - [anon_sym_e_PLUSo_GT] = ACTIONS(923), - [aux_sym_unquoted_token5] = ACTIONS(923), - [aux_sym__unquoted_in_list_token1] = ACTIONS(923), + [1342] = { + [sym_comment] = STATE(1342), + [ts_builtin_sym_end] = ACTIONS(1137), + [anon_sym_export] = ACTIONS(1135), + [anon_sym_alias] = ACTIONS(1135), + [anon_sym_let] = ACTIONS(1135), + [anon_sym_let_DASHenv] = ACTIONS(1135), + [anon_sym_mut] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_SEMI] = ACTIONS(1135), + [sym_cmd_identifier] = ACTIONS(1135), + [anon_sym_LF] = ACTIONS(1137), + [anon_sym_def] = ACTIONS(1135), + [anon_sym_export_DASHenv] = ACTIONS(1135), + [anon_sym_extern] = ACTIONS(1135), + [anon_sym_module] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1135), + [anon_sym_LPAREN] = ACTIONS(1135), + [anon_sym_DOLLAR] = ACTIONS(1135), + [anon_sym_error] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1135), + [anon_sym_for] = ACTIONS(1135), + [anon_sym_loop] = ACTIONS(1135), + [anon_sym_while] = ACTIONS(1135), + [anon_sym_do] = ACTIONS(1135), + [anon_sym_if] = ACTIONS(1135), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1135), + [anon_sym_DOT_DOT] = ACTIONS(1135), + [anon_sym_try] = ACTIONS(1135), + [anon_sym_return] = ACTIONS(1135), + [anon_sym_source] = ACTIONS(1135), + [anon_sym_source_DASHenv] = ACTIONS(1135), + [anon_sym_register] = ACTIONS(1135), + [anon_sym_hide] = ACTIONS(1135), + [anon_sym_hide_DASHenv] = ACTIONS(1135), + [anon_sym_overlay] = ACTIONS(1135), + [anon_sym_as] = ACTIONS(1135), + [anon_sym_where] = ACTIONS(1135), + [anon_sym_not] = ACTIONS(1135), + [anon_sym_LPAREN2] = ACTIONS(3841), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1135), + [anon_sym_DOT_DOT_LT] = ACTIONS(1135), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_true] = ACTIONS(1135), + [anon_sym_false] = ACTIONS(1135), + [aux_sym__val_number_decimal_token1] = ACTIONS(1135), + [aux_sym__val_number_decimal_token2] = ACTIONS(1135), + [anon_sym_DOT2] = ACTIONS(1135), + [aux_sym__val_number_decimal_token3] = ACTIONS(1135), + [aux_sym__val_number_token1] = ACTIONS(1135), + [aux_sym__val_number_token2] = ACTIONS(1135), + [aux_sym__val_number_token3] = ACTIONS(1135), + [aux_sym__val_number_token4] = ACTIONS(1135), + [aux_sym__val_number_token5] = ACTIONS(1135), + [aux_sym__val_number_token6] = ACTIONS(1135), + [anon_sym_0b] = ACTIONS(1135), + [anon_sym_0o] = ACTIONS(1135), + [anon_sym_0x] = ACTIONS(1135), + [sym_val_date] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1135), + [sym__str_single_quotes] = ACTIONS(1135), + [sym__str_back_ticks] = ACTIONS(1135), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1135), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1135), + [anon_sym_CARET] = ACTIONS(1135), + [aux_sym_unquoted_token6] = ACTIONS(1133), [anon_sym_POUND] = ACTIONS(113), }, - [1109] = { - [sym__expr_parenthesized_immediate] = STATE(2468), - [sym__immediate_decimal] = STATE(2471), - [sym_val_variable] = STATE(2468), - [sym__var] = STATE(1498), - [sym_comment] = STATE(1109), - [ts_builtin_sym_end] = ACTIONS(2389), - [anon_sym_export] = ACTIONS(2387), - [anon_sym_alias] = ACTIONS(2387), - [anon_sym_let] = ACTIONS(2387), - [anon_sym_let_DASHenv] = ACTIONS(2387), - [anon_sym_mut] = ACTIONS(2387), - [anon_sym_const] = ACTIONS(2387), - [anon_sym_SEMI] = ACTIONS(2387), - [sym_cmd_identifier] = ACTIONS(2387), - [anon_sym_LF] = ACTIONS(2389), - [anon_sym_def] = ACTIONS(2387), - [anon_sym_export_DASHenv] = ACTIONS(2387), - [anon_sym_extern] = ACTIONS(2387), - [anon_sym_module] = ACTIONS(2387), - [anon_sym_use] = ACTIONS(2387), - [anon_sym_LBRACK] = ACTIONS(2387), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_DOLLAR] = ACTIONS(2367), - [anon_sym_error] = ACTIONS(2387), - [anon_sym_DASH_DASH] = ACTIONS(2387), - [anon_sym_DASH] = ACTIONS(2387), - [anon_sym_break] = ACTIONS(2387), - [anon_sym_continue] = ACTIONS(2387), - [anon_sym_for] = ACTIONS(2387), - [anon_sym_loop] = ACTIONS(2387), - [anon_sym_while] = ACTIONS(2387), - [anon_sym_do] = ACTIONS(2387), - [anon_sym_if] = ACTIONS(2387), - [anon_sym_match] = ACTIONS(2387), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_DOT_DOT] = ACTIONS(2387), - [anon_sym_try] = ACTIONS(2387), - [anon_sym_return] = ACTIONS(2387), - [anon_sym_source] = ACTIONS(2387), - [anon_sym_source_DASHenv] = ACTIONS(2387), - [anon_sym_register] = ACTIONS(2387), - [anon_sym_hide] = ACTIONS(2387), - [anon_sym_hide_DASHenv] = ACTIONS(2387), - [anon_sym_overlay] = ACTIONS(2387), - [anon_sym_as] = ACTIONS(2387), - [anon_sym_where] = ACTIONS(2387), - [anon_sym_not] = ACTIONS(2387), - [anon_sym_LPAREN2] = ACTIONS(2369), - [anon_sym_DOT] = ACTIONS(2419), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2387), - [anon_sym_DOT_DOT_LT] = ACTIONS(2387), - [aux_sym__immediate_decimal_token1] = ACTIONS(2421), - [aux_sym__immediate_decimal_token3] = ACTIONS(2421), - [aux_sym__immediate_decimal_token4] = ACTIONS(2423), - [anon_sym_null] = ACTIONS(2387), - [anon_sym_true] = ACTIONS(2387), - [anon_sym_false] = ACTIONS(2387), - [aux_sym__val_number_decimal_token1] = ACTIONS(2387), - [aux_sym__val_number_decimal_token2] = ACTIONS(2387), - [anon_sym_DOT2] = ACTIONS(2387), - [aux_sym__val_number_decimal_token3] = 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(2387), - [aux_sym__val_number_token5] = ACTIONS(2387), - [aux_sym__val_number_token6] = ACTIONS(2387), - [anon_sym_0b] = ACTIONS(2387), - [anon_sym_0o] = ACTIONS(2387), - [anon_sym_0x] = ACTIONS(2387), - [sym_val_date] = ACTIONS(2387), - [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_CARET] = ACTIONS(2387), + [1343] = { + [sym_comment] = STATE(1343), + [anon_sym_export] = ACTIONS(938), + [anon_sym_alias] = ACTIONS(938), + [anon_sym_let] = ACTIONS(938), + [anon_sym_let_DASHenv] = ACTIONS(938), + [anon_sym_mut] = ACTIONS(938), + [anon_sym_const] = ACTIONS(938), + [anon_sym_SEMI] = ACTIONS(938), + [sym_cmd_identifier] = ACTIONS(938), + [anon_sym_LF] = ACTIONS(940), + [anon_sym_def] = ACTIONS(938), + [anon_sym_export_DASHenv] = ACTIONS(938), + [anon_sym_extern] = ACTIONS(938), + [anon_sym_module] = ACTIONS(938), + [anon_sym_use] = ACTIONS(938), + [anon_sym_LBRACK] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(938), + [anon_sym_RPAREN] = ACTIONS(938), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_error] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_break] = ACTIONS(938), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_for] = ACTIONS(938), + [anon_sym_loop] = ACTIONS(938), + [anon_sym_while] = ACTIONS(938), + [anon_sym_do] = ACTIONS(938), + [anon_sym_if] = ACTIONS(938), + [anon_sym_match] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_RBRACE] = ACTIONS(938), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_try] = ACTIONS(938), + [anon_sym_return] = ACTIONS(938), + [anon_sym_source] = ACTIONS(938), + [anon_sym_source_DASHenv] = ACTIONS(938), + [anon_sym_register] = ACTIONS(938), + [anon_sym_hide] = ACTIONS(938), + [anon_sym_hide_DASHenv] = ACTIONS(938), + [anon_sym_overlay] = ACTIONS(938), + [anon_sym_as] = ACTIONS(938), + [anon_sym_where] = ACTIONS(938), + [anon_sym_not] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ] = ACTIONS(938), + [anon_sym_DOT_DOT_LT] = ACTIONS(938), + [anon_sym_null] = ACTIONS(938), + [anon_sym_true] = ACTIONS(938), + [anon_sym_false] = ACTIONS(938), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(938), + [anon_sym_DOT2] = ACTIONS(938), + [aux_sym__val_number_decimal_token3] = ACTIONS(938), + [aux_sym__val_number_token1] = ACTIONS(938), + [aux_sym__val_number_token2] = ACTIONS(938), + [aux_sym__val_number_token3] = ACTIONS(938), + [aux_sym__val_number_token4] = ACTIONS(938), + [aux_sym__val_number_token5] = ACTIONS(938), + [aux_sym__val_number_token6] = ACTIONS(938), + [anon_sym_0b] = ACTIONS(938), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym__str_single_quotes] = ACTIONS(938), + [sym__str_back_ticks] = ACTIONS(938), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(938), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(938), + [anon_sym_CARET] = ACTIONS(938), + [aux_sym_unquoted_token5] = ACTIONS(1706), [anon_sym_POUND] = ACTIONS(113), }, - [1110] = { - [sym_comment] = STATE(1110), - [anon_sym_export] = ACTIONS(917), - [anon_sym_alias] = ACTIONS(917), - [anon_sym_let] = ACTIONS(917), - [anon_sym_let_DASHenv] = ACTIONS(917), - [anon_sym_mut] = ACTIONS(917), - [anon_sym_const] = ACTIONS(917), - [anon_sym_SEMI] = ACTIONS(917), - [sym_cmd_identifier] = ACTIONS(917), - [anon_sym_LF] = ACTIONS(919), - [anon_sym_def] = ACTIONS(917), - [anon_sym_export_DASHenv] = ACTIONS(917), - [anon_sym_extern] = ACTIONS(917), - [anon_sym_module] = ACTIONS(917), - [anon_sym_use] = ACTIONS(917), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_LPAREN] = ACTIONS(917), - [anon_sym_RPAREN] = ACTIONS(917), - [anon_sym_DOLLAR] = ACTIONS(917), - [anon_sym_error] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_break] = ACTIONS(917), - [anon_sym_continue] = ACTIONS(917), - [anon_sym_for] = ACTIONS(917), - [anon_sym_loop] = ACTIONS(917), - [anon_sym_while] = ACTIONS(917), - [anon_sym_do] = ACTIONS(917), - [anon_sym_if] = ACTIONS(917), - [anon_sym_match] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(917), - [anon_sym_RBRACE] = ACTIONS(917), - [anon_sym_DOT_DOT] = ACTIONS(917), - [anon_sym_try] = ACTIONS(917), - [anon_sym_return] = ACTIONS(917), - [anon_sym_source] = ACTIONS(917), - [anon_sym_source_DASHenv] = ACTIONS(917), - [anon_sym_register] = ACTIONS(917), - [anon_sym_hide] = ACTIONS(917), - [anon_sym_hide_DASHenv] = ACTIONS(917), - [anon_sym_overlay] = ACTIONS(917), - [anon_sym_as] = ACTIONS(917), - [anon_sym_where] = ACTIONS(917), - [anon_sym_not] = ACTIONS(917), - [anon_sym_LPAREN2] = ACTIONS(919), - [anon_sym_DOT_DOT2] = ACTIONS(917), - [anon_sym_DOT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ] = ACTIONS(917), - [anon_sym_DOT_DOT_LT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(919), - [anon_sym_DOT_DOT_LT2] = ACTIONS(919), - [anon_sym_null] = ACTIONS(917), - [anon_sym_true] = ACTIONS(917), - [anon_sym_false] = ACTIONS(917), - [aux_sym__val_number_decimal_token1] = ACTIONS(917), - [aux_sym__val_number_decimal_token2] = ACTIONS(917), - [anon_sym_DOT2] = ACTIONS(917), - [aux_sym__val_number_decimal_token3] = ACTIONS(917), - [aux_sym__val_number_token1] = ACTIONS(917), - [aux_sym__val_number_token2] = ACTIONS(917), - [aux_sym__val_number_token3] = ACTIONS(917), - [aux_sym__val_number_token4] = ACTIONS(917), - [aux_sym__val_number_token5] = ACTIONS(917), - [aux_sym__val_number_token6] = ACTIONS(917), - [anon_sym_0b] = ACTIONS(917), - [sym_filesize_unit] = ACTIONS(917), - [sym_duration_unit] = ACTIONS(917), - [anon_sym_0o] = ACTIONS(917), - [anon_sym_0x] = ACTIONS(917), - [sym_val_date] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(917), - [sym__str_single_quotes] = ACTIONS(917), - [sym__str_back_ticks] = ACTIONS(917), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(917), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(917), - [anon_sym_CARET] = ACTIONS(917), - [aux_sym_unquoted_token5] = ACTIONS(917), + [1344] = { + [sym_comment] = STATE(1344), + [anon_sym_LBRACK] = ACTIONS(1037), + [anon_sym_COMMA] = ACTIONS(1037), + [anon_sym_RBRACK] = ACTIONS(1037), + [anon_sym_LPAREN] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1037), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_in] = ACTIONS(1037), + [anon_sym_LBRACE] = ACTIONS(1037), + [anon_sym_DOT_DOT] = ACTIONS(1037), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_STAR_STAR] = ACTIONS(1037), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1037), + [anon_sym_mod] = ACTIONS(1037), + [anon_sym_SLASH_SLASH] = ACTIONS(1037), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_bit_DASHshl] = ACTIONS(1037), + [anon_sym_bit_DASHshr] = ACTIONS(1037), + [anon_sym_EQ_EQ] = ACTIONS(1037), + [anon_sym_BANG_EQ] = ACTIONS(1037), + [anon_sym_LT2] = ACTIONS(1037), + [anon_sym_LT_EQ] = ACTIONS(1037), + [anon_sym_GT_EQ] = ACTIONS(1037), + [anon_sym_not_DASHin] = ACTIONS(1037), + [anon_sym_starts_DASHwith] = ACTIONS(1037), + [anon_sym_ends_DASHwith] = ACTIONS(1037), + [anon_sym_EQ_TILDE] = ACTIONS(1037), + [anon_sym_BANG_TILDE] = ACTIONS(1037), + [anon_sym_bit_DASHand] = ACTIONS(1037), + [anon_sym_bit_DASHxor] = ACTIONS(1037), + [anon_sym_bit_DASHor] = ACTIONS(1037), + [anon_sym_and] = ACTIONS(1037), + [anon_sym_xor] = ACTIONS(1037), + [anon_sym_or] = ACTIONS(1037), + [anon_sym_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1037), + [anon_sym_DOT_DOT_LT] = ACTIONS(1037), + [anon_sym_null] = ACTIONS(1037), + [anon_sym_true] = ACTIONS(1037), + [anon_sym_false] = ACTIONS(1037), + [aux_sym__val_number_decimal_token1] = ACTIONS(1037), + [aux_sym__val_number_decimal_token2] = ACTIONS(1037), + [anon_sym_DOT2] = ACTIONS(1037), + [aux_sym__val_number_decimal_token3] = ACTIONS(1037), + [aux_sym__val_number_token1] = ACTIONS(1037), + [aux_sym__val_number_token2] = ACTIONS(1037), + [aux_sym__val_number_token3] = ACTIONS(1037), + [aux_sym__val_number_token4] = ACTIONS(1037), + [aux_sym__val_number_token5] = ACTIONS(1037), + [aux_sym__val_number_token6] = ACTIONS(1037), + [anon_sym_0b] = ACTIONS(1037), + [anon_sym_0o] = ACTIONS(1037), + [anon_sym_0x] = ACTIONS(1037), + [sym_val_date] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1037), + [sym__str_single_quotes] = ACTIONS(1037), + [sym__str_back_ticks] = ACTIONS(1037), + [sym__entry_separator] = ACTIONS(1039), + [anon_sym_err_GT] = ACTIONS(1037), + [anon_sym_out_GT] = ACTIONS(1037), + [anon_sym_e_GT] = ACTIONS(1037), + [anon_sym_o_GT] = ACTIONS(1037), + [anon_sym_err_PLUSout_GT] = ACTIONS(1037), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1037), + [anon_sym_o_PLUSe_GT] = ACTIONS(1037), + [anon_sym_e_PLUSo_GT] = ACTIONS(1037), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1037), [anon_sym_POUND] = ACTIONS(113), }, - [1111] = { - [sym_comment] = STATE(1111), - [ts_builtin_sym_end] = ACTIONS(919), - [anon_sym_export] = ACTIONS(917), - [anon_sym_alias] = ACTIONS(917), - [anon_sym_let] = ACTIONS(917), - [anon_sym_let_DASHenv] = ACTIONS(917), - [anon_sym_mut] = ACTIONS(917), - [anon_sym_const] = ACTIONS(917), - [anon_sym_SEMI] = ACTIONS(917), - [sym_cmd_identifier] = ACTIONS(917), - [anon_sym_LF] = ACTIONS(919), - [anon_sym_def] = ACTIONS(917), - [anon_sym_export_DASHenv] = ACTIONS(917), - [anon_sym_extern] = ACTIONS(917), - [anon_sym_module] = ACTIONS(917), - [anon_sym_use] = ACTIONS(917), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_LPAREN] = ACTIONS(917), - [anon_sym_DOLLAR] = ACTIONS(917), - [anon_sym_error] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_break] = ACTIONS(917), - [anon_sym_continue] = ACTIONS(917), - [anon_sym_for] = ACTIONS(917), - [anon_sym_loop] = ACTIONS(917), - [anon_sym_while] = ACTIONS(917), - [anon_sym_do] = ACTIONS(917), - [anon_sym_if] = ACTIONS(917), - [anon_sym_match] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(917), - [anon_sym_DOT_DOT] = ACTIONS(917), - [anon_sym_try] = ACTIONS(917), - [anon_sym_return] = ACTIONS(917), - [anon_sym_source] = ACTIONS(917), - [anon_sym_source_DASHenv] = ACTIONS(917), - [anon_sym_register] = ACTIONS(917), - [anon_sym_hide] = ACTIONS(917), - [anon_sym_hide_DASHenv] = ACTIONS(917), - [anon_sym_overlay] = ACTIONS(917), - [anon_sym_as] = ACTIONS(917), - [anon_sym_where] = ACTIONS(917), - [anon_sym_not] = ACTIONS(917), - [anon_sym_LPAREN2] = ACTIONS(919), - [anon_sym_DOT_DOT2] = ACTIONS(917), - [anon_sym_DOT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ] = ACTIONS(917), - [anon_sym_DOT_DOT_LT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(919), - [anon_sym_DOT_DOT_LT2] = ACTIONS(919), - [aux_sym__immediate_decimal_token2] = ACTIONS(2425), - [anon_sym_null] = ACTIONS(917), - [anon_sym_true] = ACTIONS(917), - [anon_sym_false] = ACTIONS(917), - [aux_sym__val_number_decimal_token1] = ACTIONS(917), - [aux_sym__val_number_decimal_token2] = ACTIONS(917), - [anon_sym_DOT2] = ACTIONS(917), - [aux_sym__val_number_decimal_token3] = ACTIONS(917), - [aux_sym__val_number_token1] = ACTIONS(917), - [aux_sym__val_number_token2] = ACTIONS(917), - [aux_sym__val_number_token3] = ACTIONS(917), - [aux_sym__val_number_token4] = ACTIONS(917), - [aux_sym__val_number_token5] = ACTIONS(917), - [aux_sym__val_number_token6] = ACTIONS(917), - [anon_sym_0b] = ACTIONS(917), - [sym_filesize_unit] = ACTIONS(917), - [sym_duration_unit] = ACTIONS(917), - [anon_sym_0o] = ACTIONS(917), - [anon_sym_0x] = ACTIONS(917), - [sym_val_date] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(917), - [sym__str_single_quotes] = ACTIONS(917), - [sym__str_back_ticks] = ACTIONS(917), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(917), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(917), - [anon_sym_CARET] = ACTIONS(917), - [aux_sym_unquoted_token5] = ACTIONS(917), + [1345] = { + [sym_comment] = STATE(1345), + [anon_sym_export] = ACTIONS(1024), + [anon_sym_alias] = ACTIONS(1024), + [anon_sym_let] = ACTIONS(1024), + [anon_sym_let_DASHenv] = ACTIONS(1024), + [anon_sym_mut] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1024), + [sym_cmd_identifier] = ACTIONS(1024), + [anon_sym_LF] = ACTIONS(1026), + [anon_sym_def] = ACTIONS(1024), + [anon_sym_export_DASHenv] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1024), + [anon_sym_module] = ACTIONS(1024), + [anon_sym_use] = ACTIONS(1024), + [anon_sym_LBRACK] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_RPAREN] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_error] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_loop] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_match] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym_RBRACE] = ACTIONS(1024), + [anon_sym_DOT_DOT] = ACTIONS(1024), + [anon_sym_try] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_source] = ACTIONS(1024), + [anon_sym_source_DASHenv] = ACTIONS(1024), + [anon_sym_register] = ACTIONS(1024), + [anon_sym_hide] = ACTIONS(1024), + [anon_sym_hide_DASHenv] = ACTIONS(1024), + [anon_sym_overlay] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_where] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(4759), + [anon_sym_not] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT] = ACTIONS(1024), + [anon_sym_null] = ACTIONS(1024), + [anon_sym_true] = ACTIONS(1024), + [anon_sym_false] = ACTIONS(1024), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1024), + [aux_sym__val_number_token1] = ACTIONS(1024), + [aux_sym__val_number_token2] = ACTIONS(1024), + [aux_sym__val_number_token3] = ACTIONS(1024), + [aux_sym__val_number_token4] = ACTIONS(1024), + [aux_sym__val_number_token5] = ACTIONS(1024), + [aux_sym__val_number_token6] = ACTIONS(1024), + [anon_sym_0b] = ACTIONS(1024), + [anon_sym_0o] = ACTIONS(1024), + [anon_sym_0x] = ACTIONS(1024), + [sym_val_date] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym__str_single_quotes] = ACTIONS(1024), + [sym__str_back_ticks] = ACTIONS(1024), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1024), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1024), + [anon_sym_CARET] = ACTIONS(1024), [anon_sym_POUND] = ACTIONS(113), }, - [1112] = { - [sym__expr_parenthesized_immediate] = STATE(10647), - [sym_comment] = STATE(1112), - [ts_builtin_sym_end] = ACTIONS(961), - [anon_sym_export] = ACTIONS(959), - [anon_sym_alias] = ACTIONS(959), - [anon_sym_let] = ACTIONS(959), - [anon_sym_let_DASHenv] = ACTIONS(959), - [anon_sym_mut] = ACTIONS(959), - [anon_sym_const] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(959), - [sym_cmd_identifier] = ACTIONS(959), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_def] = ACTIONS(959), - [anon_sym_export_DASHenv] = ACTIONS(959), - [anon_sym_extern] = ACTIONS(959), - [anon_sym_module] = ACTIONS(959), - [anon_sym_use] = ACTIONS(959), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_error] = ACTIONS(959), - [anon_sym_DASH_DASH] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_break] = ACTIONS(959), - [anon_sym_continue] = ACTIONS(959), - [anon_sym_for] = ACTIONS(959), - [anon_sym_loop] = ACTIONS(959), - [anon_sym_while] = ACTIONS(959), - [anon_sym_do] = ACTIONS(959), - [anon_sym_if] = ACTIONS(959), - [anon_sym_match] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_try] = ACTIONS(959), - [anon_sym_return] = ACTIONS(959), - [anon_sym_source] = ACTIONS(959), - [anon_sym_source_DASHenv] = ACTIONS(959), - [anon_sym_register] = ACTIONS(959), - [anon_sym_hide] = ACTIONS(959), - [anon_sym_hide_DASHenv] = ACTIONS(959), - [anon_sym_overlay] = ACTIONS(959), - [anon_sym_as] = ACTIONS(959), - [anon_sym_where] = ACTIONS(959), - [anon_sym_not] = ACTIONS(959), - [anon_sym_LPAREN2] = ACTIONS(2397), - [anon_sym_DOT_DOT2] = ACTIONS(2427), - [anon_sym_DOT] = ACTIONS(2429), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_DOT_DOT_LT] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2431), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2431), - [anon_sym_null] = ACTIONS(959), - [anon_sym_true] = ACTIONS(959), - [anon_sym_false] = ACTIONS(959), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(959), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(959), - [aux_sym__val_number_token1] = ACTIONS(959), - [aux_sym__val_number_token2] = ACTIONS(959), - [aux_sym__val_number_token3] = ACTIONS(959), - [aux_sym__val_number_token4] = ACTIONS(959), - [aux_sym__val_number_token5] = ACTIONS(959), - [aux_sym__val_number_token6] = ACTIONS(959), - [anon_sym_0b] = ACTIONS(959), - [sym_filesize_unit] = ACTIONS(2433), - [sym_duration_unit] = ACTIONS(2435), - [anon_sym_0o] = ACTIONS(959), - [anon_sym_0x] = ACTIONS(959), - [sym_val_date] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [sym__str_single_quotes] = ACTIONS(959), - [sym__str_back_ticks] = ACTIONS(959), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(959), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(959), - [anon_sym_CARET] = ACTIONS(959), - [aux_sym_unquoted_token5] = ACTIONS(2338), + [1346] = { + [sym_comment] = STATE(1346), + [ts_builtin_sym_end] = ACTIONS(1157), + [anon_sym_export] = ACTIONS(1155), + [anon_sym_alias] = ACTIONS(1155), + [anon_sym_let] = ACTIONS(1155), + [anon_sym_let_DASHenv] = ACTIONS(1155), + [anon_sym_mut] = ACTIONS(1155), + [anon_sym_const] = ACTIONS(1155), + [anon_sym_SEMI] = ACTIONS(1155), + [sym_cmd_identifier] = ACTIONS(1155), + [anon_sym_LF] = ACTIONS(1157), + [anon_sym_def] = ACTIONS(1155), + [anon_sym_export_DASHenv] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1155), + [anon_sym_module] = ACTIONS(1155), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1155), + [anon_sym_LPAREN] = ACTIONS(1155), + [anon_sym_DOLLAR] = ACTIONS(1155), + [anon_sym_error] = ACTIONS(1155), + [anon_sym_DASH_DASH] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_break] = ACTIONS(1155), + [anon_sym_continue] = ACTIONS(1155), + [anon_sym_for] = ACTIONS(1155), + [anon_sym_loop] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(1155), + [anon_sym_do] = ACTIONS(1155), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_match] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_DOT_DOT] = ACTIONS(1155), + [anon_sym_try] = ACTIONS(1155), + [anon_sym_return] = ACTIONS(1155), + [anon_sym_source] = ACTIONS(1155), + [anon_sym_source_DASHenv] = ACTIONS(1155), + [anon_sym_register] = ACTIONS(1155), + [anon_sym_hide] = ACTIONS(1155), + [anon_sym_hide_DASHenv] = ACTIONS(1155), + [anon_sym_overlay] = ACTIONS(1155), + [anon_sym_as] = ACTIONS(1155), + [anon_sym_where] = ACTIONS(1155), + [anon_sym_not] = ACTIONS(1155), + [anon_sym_LPAREN2] = ACTIONS(1157), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1155), + [anon_sym_DOT_DOT_LT] = ACTIONS(1155), + [anon_sym_null] = ACTIONS(1155), + [anon_sym_true] = ACTIONS(1155), + [anon_sym_false] = ACTIONS(1155), + [aux_sym__val_number_decimal_token1] = ACTIONS(1155), + [aux_sym__val_number_decimal_token2] = ACTIONS(1155), + [anon_sym_DOT2] = ACTIONS(1155), + [aux_sym__val_number_decimal_token3] = ACTIONS(1155), + [aux_sym__val_number_token1] = ACTIONS(1155), + [aux_sym__val_number_token2] = ACTIONS(1155), + [aux_sym__val_number_token3] = ACTIONS(1155), + [aux_sym__val_number_token4] = ACTIONS(1155), + [aux_sym__val_number_token5] = ACTIONS(1155), + [aux_sym__val_number_token6] = ACTIONS(1155), + [anon_sym_0b] = ACTIONS(1155), + [anon_sym_0o] = ACTIONS(1155), + [anon_sym_0x] = ACTIONS(1155), + [sym_val_date] = ACTIONS(1155), + [anon_sym_DQUOTE] = ACTIONS(1155), + [sym__str_single_quotes] = ACTIONS(1155), + [sym__str_back_ticks] = ACTIONS(1155), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1155), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1155), + [anon_sym_CARET] = ACTIONS(1155), + [aux_sym_unquoted_token6] = ACTIONS(1155), [anon_sym_POUND] = ACTIONS(113), }, - [1113] = { - [sym_comment] = STATE(1113), - [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), - [anon_sym_SEMI] = ACTIONS(2437), - [sym_cmd_identifier] = ACTIONS(2437), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_RPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_DASH_DASH] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_RBRACE] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_as] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_not] = ACTIONS(2437), - [anon_sym_LPAREN2] = ACTIONS(2439), - [anon_sym_DOT_DOT2] = ACTIONS(2437), - [anon_sym_DOT] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2439), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2439), - [aux_sym__immediate_decimal_token1] = ACTIONS(2441), - [aux_sym__immediate_decimal_token2] = ACTIONS(2443), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [anon_sym_DOT2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2437), - [anon_sym_0o] = ACTIONS(2437), - [anon_sym_0x] = ACTIONS(2437), - [sym_val_date] = 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_CARET] = ACTIONS(2437), - [aux_sym_unquoted_token2] = ACTIONS(2437), + [1347] = { + [sym_comment] = STATE(1347), + [anon_sym_export] = ACTIONS(1024), + [anon_sym_alias] = ACTIONS(1024), + [anon_sym_let] = ACTIONS(1024), + [anon_sym_let_DASHenv] = ACTIONS(1024), + [anon_sym_mut] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1024), + [sym_cmd_identifier] = ACTIONS(1024), + [anon_sym_LF] = ACTIONS(1026), + [anon_sym_def] = ACTIONS(1024), + [anon_sym_export_DASHenv] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1024), + [anon_sym_module] = ACTIONS(1024), + [anon_sym_use] = ACTIONS(1024), + [anon_sym_LBRACK] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_RPAREN] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_error] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_loop] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_match] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym_RBRACE] = ACTIONS(1024), + [anon_sym_DOT_DOT] = ACTIONS(1024), + [anon_sym_try] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_source] = ACTIONS(1024), + [anon_sym_source_DASHenv] = ACTIONS(1024), + [anon_sym_register] = ACTIONS(1024), + [anon_sym_hide] = ACTIONS(1024), + [anon_sym_hide_DASHenv] = ACTIONS(1024), + [anon_sym_overlay] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_where] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(4759), + [anon_sym_not] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT] = ACTIONS(1024), + [anon_sym_null] = ACTIONS(1024), + [anon_sym_true] = ACTIONS(1024), + [anon_sym_false] = ACTIONS(1024), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1024), + [aux_sym__val_number_token1] = ACTIONS(1024), + [aux_sym__val_number_token2] = ACTIONS(1024), + [aux_sym__val_number_token3] = ACTIONS(1024), + [aux_sym__val_number_token4] = ACTIONS(1024), + [aux_sym__val_number_token5] = ACTIONS(1024), + [aux_sym__val_number_token6] = ACTIONS(1024), + [anon_sym_0b] = ACTIONS(1024), + [anon_sym_0o] = ACTIONS(1024), + [anon_sym_0x] = ACTIONS(1024), + [sym_val_date] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym__str_single_quotes] = ACTIONS(1024), + [sym__str_back_ticks] = ACTIONS(1024), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1024), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1024), + [anon_sym_CARET] = ACTIONS(1024), [anon_sym_POUND] = ACTIONS(113), }, - [1114] = { - [sym_comment] = STATE(1114), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_COMMA] = ACTIONS(917), - [anon_sym_RBRACK] = ACTIONS(917), - [anon_sym_LPAREN] = ACTIONS(917), - [anon_sym_DOLLAR] = ACTIONS(917), - [anon_sym_GT] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_in] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(917), - [anon_sym_DOT_DOT] = ACTIONS(917), - [anon_sym_STAR] = ACTIONS(917), - [anon_sym_STAR_STAR] = ACTIONS(917), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_mod] = ACTIONS(917), - [anon_sym_SLASH_SLASH] = ACTIONS(917), - [anon_sym_PLUS] = ACTIONS(917), - [anon_sym_bit_DASHshl] = ACTIONS(917), - [anon_sym_bit_DASHshr] = ACTIONS(917), - [anon_sym_EQ_EQ] = ACTIONS(917), - [anon_sym_BANG_EQ] = ACTIONS(917), - [anon_sym_LT2] = ACTIONS(917), - [anon_sym_LT_EQ] = ACTIONS(917), - [anon_sym_GT_EQ] = ACTIONS(917), - [anon_sym_not_DASHin] = ACTIONS(917), - [anon_sym_starts_DASHwith] = ACTIONS(917), - [anon_sym_ends_DASHwith] = ACTIONS(917), - [anon_sym_EQ_TILDE] = ACTIONS(917), - [anon_sym_BANG_TILDE] = ACTIONS(917), - [anon_sym_bit_DASHand] = ACTIONS(917), - [anon_sym_bit_DASHxor] = ACTIONS(917), - [anon_sym_bit_DASHor] = ACTIONS(917), - [anon_sym_and] = ACTIONS(917), - [anon_sym_xor] = ACTIONS(917), - [anon_sym_or] = ACTIONS(917), - [anon_sym_DOT_DOT2] = ACTIONS(917), - [anon_sym_DOT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ] = ACTIONS(917), - [anon_sym_DOT_DOT_LT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(919), - [anon_sym_DOT_DOT_LT2] = ACTIONS(919), - [aux_sym__immediate_decimal_token2] = ACTIONS(2445), - [anon_sym_null] = ACTIONS(917), - [anon_sym_true] = ACTIONS(917), - [anon_sym_false] = ACTIONS(917), - [aux_sym__val_number_decimal_token1] = ACTIONS(917), - [aux_sym__val_number_decimal_token2] = ACTIONS(917), - [anon_sym_DOT2] = ACTIONS(917), - [aux_sym__val_number_decimal_token3] = ACTIONS(917), - [aux_sym__val_number_token1] = ACTIONS(917), - [aux_sym__val_number_token2] = ACTIONS(917), - [aux_sym__val_number_token3] = ACTIONS(917), - [aux_sym__val_number_token4] = ACTIONS(917), - [aux_sym__val_number_token5] = ACTIONS(917), - [aux_sym__val_number_token6] = ACTIONS(917), - [anon_sym_0b] = ACTIONS(917), - [sym_filesize_unit] = ACTIONS(917), - [sym_duration_unit] = ACTIONS(919), - [anon_sym_0o] = ACTIONS(917), - [anon_sym_0x] = ACTIONS(917), - [sym_val_date] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(917), - [sym__str_single_quotes] = ACTIONS(917), - [sym__str_back_ticks] = ACTIONS(917), - [sym__entry_separator] = ACTIONS(919), - [anon_sym_err_GT] = ACTIONS(917), - [anon_sym_out_GT] = ACTIONS(917), - [anon_sym_e_GT] = ACTIONS(917), - [anon_sym_o_GT] = ACTIONS(917), - [anon_sym_err_PLUSout_GT] = ACTIONS(917), - [anon_sym_out_PLUSerr_GT] = ACTIONS(917), - [anon_sym_o_PLUSe_GT] = ACTIONS(917), - [anon_sym_e_PLUSo_GT] = ACTIONS(917), - [aux_sym_unquoted_token5] = ACTIONS(917), - [aux_sym__unquoted_in_list_token1] = ACTIONS(917), + [1348] = { + [sym_comment] = STATE(1348), + [anon_sym_LBRACK] = ACTIONS(1041), + [anon_sym_COMMA] = ACTIONS(1041), + [anon_sym_RBRACK] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1041), + [anon_sym_DOLLAR] = ACTIONS(1041), + [anon_sym_GT] = ACTIONS(1041), + [anon_sym_DASH_DASH] = ACTIONS(1041), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_in] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_DOT_DOT] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_STAR_STAR] = ACTIONS(1041), + [anon_sym_PLUS_PLUS] = ACTIONS(1041), + [anon_sym_SLASH] = ACTIONS(1041), + [anon_sym_mod] = ACTIONS(1041), + [anon_sym_SLASH_SLASH] = ACTIONS(1041), + [anon_sym_PLUS] = ACTIONS(1041), + [anon_sym_bit_DASHshl] = ACTIONS(1041), + [anon_sym_bit_DASHshr] = ACTIONS(1041), + [anon_sym_EQ_EQ] = ACTIONS(1041), + [anon_sym_BANG_EQ] = ACTIONS(1041), + [anon_sym_LT2] = ACTIONS(1041), + [anon_sym_LT_EQ] = ACTIONS(1041), + [anon_sym_GT_EQ] = ACTIONS(1041), + [anon_sym_not_DASHin] = ACTIONS(1041), + [anon_sym_starts_DASHwith] = ACTIONS(1041), + [anon_sym_ends_DASHwith] = ACTIONS(1041), + [anon_sym_EQ_TILDE] = ACTIONS(1041), + [anon_sym_BANG_TILDE] = ACTIONS(1041), + [anon_sym_bit_DASHand] = ACTIONS(1041), + [anon_sym_bit_DASHxor] = ACTIONS(1041), + [anon_sym_bit_DASHor] = ACTIONS(1041), + [anon_sym_and] = ACTIONS(1041), + [anon_sym_xor] = ACTIONS(1041), + [anon_sym_or] = ACTIONS(1041), + [anon_sym_DOT] = ACTIONS(1041), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1041), + [anon_sym_DOT_DOT_LT] = ACTIONS(1041), + [anon_sym_null] = ACTIONS(1041), + [anon_sym_true] = ACTIONS(1041), + [anon_sym_false] = ACTIONS(1041), + [aux_sym__val_number_decimal_token1] = ACTIONS(1041), + [aux_sym__val_number_decimal_token2] = ACTIONS(1041), + [anon_sym_DOT2] = ACTIONS(1041), + [aux_sym__val_number_decimal_token3] = ACTIONS(1041), + [aux_sym__val_number_token1] = ACTIONS(1041), + [aux_sym__val_number_token2] = ACTIONS(1041), + [aux_sym__val_number_token3] = ACTIONS(1041), + [aux_sym__val_number_token4] = ACTIONS(1041), + [aux_sym__val_number_token5] = ACTIONS(1041), + [aux_sym__val_number_token6] = ACTIONS(1041), + [anon_sym_0b] = ACTIONS(1041), + [anon_sym_0o] = ACTIONS(1041), + [anon_sym_0x] = ACTIONS(1041), + [sym_val_date] = ACTIONS(1041), + [anon_sym_DQUOTE] = ACTIONS(1041), + [sym__str_single_quotes] = ACTIONS(1041), + [sym__str_back_ticks] = ACTIONS(1041), + [sym__entry_separator] = ACTIONS(1043), + [anon_sym_err_GT] = ACTIONS(1041), + [anon_sym_out_GT] = ACTIONS(1041), + [anon_sym_e_GT] = ACTIONS(1041), + [anon_sym_o_GT] = ACTIONS(1041), + [anon_sym_err_PLUSout_GT] = ACTIONS(1041), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1041), + [anon_sym_o_PLUSe_GT] = ACTIONS(1041), + [anon_sym_e_PLUSo_GT] = ACTIONS(1041), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1041), [anon_sym_POUND] = ACTIONS(113), }, - [1115] = { - [sym__expr_unary_minus] = STATE(10486), - [sym_expr_parenthesized] = STATE(9327), - [sym_val_range] = STATE(10632), - [sym__val_range] = STATE(10567), - [sym__val_range_with_end] = STATE(10631), - [sym__value] = STATE(10632), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(9687), - [sym_val_variable] = STATE(5789), - [sym__var] = STATE(5205), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(7522), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(6614), - [sym_val_entry] = STATE(11134), - [sym__list_item_expression] = STATE(10482), - [sym__list_item_starts_with_sign] = STATE(10484), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_short_flag] = STATE(10484), - [sym_long_flag] = STATE(10484), - [sym_long_flag_equals_value] = STATE(4310), - [sym__unquoted_in_list] = STATE(9820), - [sym__unquoted_in_list_with_expr] = STATE(10484), - [sym__unquoted_anonymous_prefix] = STATE(10279), - [sym_comment] = STATE(1115), - [aux_sym_list_body_repeat1] = STATE(1115), - [anon_sym_LBRACK] = ACTIONS(2447), - [anon_sym_LPAREN] = ACTIONS(2450), - [anon_sym_DOLLAR] = ACTIONS(2453), - [anon_sym_DASH_DASH] = ACTIONS(2456), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2462), - [anon_sym_DOT_DOT] = ACTIONS(2465), - [anon_sym_PLUS] = ACTIONS(2468), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2471), - [anon_sym_DOT_DOT_LT] = ACTIONS(2471), - [anon_sym_null] = ACTIONS(2474), - [anon_sym_true] = ACTIONS(2477), - [anon_sym_false] = ACTIONS(2477), - [aux_sym__val_number_decimal_token1] = ACTIONS(2480), - [aux_sym__val_number_decimal_token2] = ACTIONS(2483), - [anon_sym_DOT2] = ACTIONS(2486), - [aux_sym__val_number_decimal_token3] = ACTIONS(2489), - [aux_sym__val_number_token1] = ACTIONS(2492), - [aux_sym__val_number_token2] = ACTIONS(2492), - [aux_sym__val_number_token3] = ACTIONS(2492), - [aux_sym__val_number_token4] = ACTIONS(2495), - [aux_sym__val_number_token5] = ACTIONS(2495), - [aux_sym__val_number_token6] = ACTIONS(2495), - [anon_sym_0b] = ACTIONS(2498), - [anon_sym_0o] = ACTIONS(2501), - [anon_sym_0x] = ACTIONS(2501), - [sym_val_date] = ACTIONS(2504), - [anon_sym_DQUOTE] = ACTIONS(2507), - [sym__str_single_quotes] = ACTIONS(2510), - [sym__str_back_ticks] = ACTIONS(2510), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2513), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2516), - [anon_sym_err_GT] = ACTIONS(2519), - [anon_sym_out_GT] = ACTIONS(2519), - [anon_sym_e_GT] = ACTIONS(2519), - [anon_sym_o_GT] = ACTIONS(2519), - [anon_sym_err_PLUSout_GT] = ACTIONS(2519), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2519), - [anon_sym_o_PLUSe_GT] = ACTIONS(2519), - [anon_sym_e_PLUSo_GT] = ACTIONS(2519), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2522), - [anon_sym_POUND] = ACTIONS(3), - }, - [1116] = { - [sym_comment] = STATE(1116), - [ts_builtin_sym_end] = ACTIONS(925), - [anon_sym_export] = ACTIONS(923), - [anon_sym_alias] = ACTIONS(923), - [anon_sym_let] = ACTIONS(923), - [anon_sym_let_DASHenv] = ACTIONS(923), - [anon_sym_mut] = ACTIONS(923), - [anon_sym_const] = ACTIONS(923), - [anon_sym_SEMI] = ACTIONS(923), - [sym_cmd_identifier] = ACTIONS(923), - [anon_sym_LF] = ACTIONS(925), - [anon_sym_def] = ACTIONS(923), - [anon_sym_export_DASHenv] = ACTIONS(923), - [anon_sym_extern] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_use] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_DOLLAR] = ACTIONS(923), - [anon_sym_error] = ACTIONS(923), - [anon_sym_DASH_DASH] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_break] = ACTIONS(923), - [anon_sym_continue] = ACTIONS(923), - [anon_sym_for] = ACTIONS(923), - [anon_sym_loop] = ACTIONS(923), - [anon_sym_while] = ACTIONS(923), - [anon_sym_do] = ACTIONS(923), - [anon_sym_if] = ACTIONS(923), - [anon_sym_match] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(923), - [anon_sym_DOT_DOT] = ACTIONS(923), - [anon_sym_try] = ACTIONS(923), - [anon_sym_return] = ACTIONS(923), - [anon_sym_source] = ACTIONS(923), - [anon_sym_source_DASHenv] = ACTIONS(923), - [anon_sym_register] = ACTIONS(923), - [anon_sym_hide] = ACTIONS(923), - [anon_sym_hide_DASHenv] = ACTIONS(923), - [anon_sym_overlay] = ACTIONS(923), - [anon_sym_as] = ACTIONS(923), - [anon_sym_where] = ACTIONS(923), - [anon_sym_not] = ACTIONS(923), - [anon_sym_LPAREN2] = ACTIONS(925), - [anon_sym_DOT_DOT2] = ACTIONS(923), - [anon_sym_DOT] = ACTIONS(2525), - [anon_sym_DOT_DOT_EQ] = ACTIONS(923), - [anon_sym_DOT_DOT_LT] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(925), - [anon_sym_DOT_DOT_LT2] = ACTIONS(925), - [aux_sym__immediate_decimal_token2] = ACTIONS(2528), - [anon_sym_null] = ACTIONS(923), - [anon_sym_true] = ACTIONS(923), - [anon_sym_false] = ACTIONS(923), - [aux_sym__val_number_decimal_token1] = ACTIONS(923), - [aux_sym__val_number_decimal_token2] = ACTIONS(923), - [anon_sym_DOT2] = ACTIONS(923), - [aux_sym__val_number_decimal_token3] = ACTIONS(923), - [aux_sym__val_number_token1] = ACTIONS(923), - [aux_sym__val_number_token2] = ACTIONS(923), - [aux_sym__val_number_token3] = ACTIONS(923), - [aux_sym__val_number_token4] = ACTIONS(923), - [aux_sym__val_number_token5] = ACTIONS(923), - [aux_sym__val_number_token6] = ACTIONS(923), - [anon_sym_0b] = ACTIONS(923), - [sym_filesize_unit] = ACTIONS(923), - [sym_duration_unit] = ACTIONS(923), - [anon_sym_0o] = ACTIONS(923), - [anon_sym_0x] = ACTIONS(923), - [sym_val_date] = ACTIONS(923), - [anon_sym_DQUOTE] = ACTIONS(923), - [sym__str_single_quotes] = ACTIONS(923), - [sym__str_back_ticks] = ACTIONS(923), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(923), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), - [anon_sym_CARET] = ACTIONS(923), - [aux_sym_unquoted_token5] = ACTIONS(923), + [1349] = { + [sym_comment] = STATE(1349), + [anon_sym_LBRACK] = ACTIONS(938), + [anon_sym_COMMA] = ACTIONS(938), + [anon_sym_RBRACK] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(938), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_in] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_STAR_STAR] = ACTIONS(938), + [anon_sym_PLUS_PLUS] = ACTIONS(938), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(938), + [anon_sym_SLASH_SLASH] = ACTIONS(938), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_bit_DASHshl] = ACTIONS(938), + [anon_sym_bit_DASHshr] = ACTIONS(938), + [anon_sym_EQ_EQ] = ACTIONS(938), + [anon_sym_BANG_EQ] = ACTIONS(938), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(938), + [anon_sym_GT_EQ] = ACTIONS(938), + [anon_sym_not_DASHin] = ACTIONS(938), + [anon_sym_starts_DASHwith] = ACTIONS(938), + [anon_sym_ends_DASHwith] = ACTIONS(938), + [anon_sym_EQ_TILDE] = ACTIONS(938), + [anon_sym_BANG_TILDE] = ACTIONS(938), + [anon_sym_bit_DASHand] = ACTIONS(938), + [anon_sym_bit_DASHxor] = ACTIONS(938), + [anon_sym_bit_DASHor] = ACTIONS(938), + [anon_sym_and] = ACTIONS(938), + [anon_sym_xor] = ACTIONS(938), + [anon_sym_or] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ] = ACTIONS(938), + [anon_sym_DOT_DOT_LT] = ACTIONS(938), + [anon_sym_null] = ACTIONS(938), + [anon_sym_true] = ACTIONS(938), + [anon_sym_false] = ACTIONS(938), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(938), + [anon_sym_DOT2] = ACTIONS(938), + [aux_sym__val_number_decimal_token3] = ACTIONS(938), + [aux_sym__val_number_token1] = ACTIONS(938), + [aux_sym__val_number_token2] = ACTIONS(938), + [aux_sym__val_number_token3] = ACTIONS(938), + [aux_sym__val_number_token4] = ACTIONS(938), + [aux_sym__val_number_token5] = ACTIONS(938), + [aux_sym__val_number_token6] = ACTIONS(938), + [anon_sym_0b] = ACTIONS(938), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym__str_single_quotes] = ACTIONS(938), + [sym__str_back_ticks] = ACTIONS(938), + [sym__entry_separator] = ACTIONS(940), + [anon_sym_err_GT] = ACTIONS(938), + [anon_sym_out_GT] = ACTIONS(938), + [anon_sym_e_GT] = ACTIONS(938), + [anon_sym_o_GT] = ACTIONS(938), + [anon_sym_err_PLUSout_GT] = ACTIONS(938), + [anon_sym_out_PLUSerr_GT] = ACTIONS(938), + [anon_sym_o_PLUSe_GT] = ACTIONS(938), + [anon_sym_e_PLUSo_GT] = ACTIONS(938), + [aux_sym_unquoted_token5] = ACTIONS(2384), + [aux_sym__unquoted_in_list_token1] = ACTIONS(938), [anon_sym_POUND] = ACTIONS(113), }, - [1117] = { - [sym_comment] = STATE(1117), - [anon_sym_LBRACK] = ACTIONS(911), - [anon_sym_COMMA] = ACTIONS(911), - [anon_sym_LPAREN] = ACTIONS(911), - [anon_sym_DOLLAR] = ACTIONS(911), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(911), - [anon_sym_RBRACE] = ACTIONS(911), - [anon_sym__] = ACTIONS(909), - [anon_sym_DOT_DOT] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(911), - [anon_sym_PLUS_PLUS] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(911), - [anon_sym_SLASH_SLASH] = ACTIONS(911), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(911), - [anon_sym_bit_DASHshr] = ACTIONS(911), - [anon_sym_EQ_EQ] = ACTIONS(911), - [anon_sym_BANG_EQ] = ACTIONS(911), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(911), - [anon_sym_GT_EQ] = ACTIONS(911), - [anon_sym_not_DASHin] = ACTIONS(911), - [anon_sym_starts_DASHwith] = ACTIONS(911), - [anon_sym_ends_DASHwith] = ACTIONS(911), - [anon_sym_EQ_TILDE] = ACTIONS(911), - [anon_sym_BANG_TILDE] = ACTIONS(911), - [anon_sym_bit_DASHand] = ACTIONS(911), - [anon_sym_bit_DASHxor] = ACTIONS(911), - [anon_sym_bit_DASHor] = ACTIONS(911), - [anon_sym_and] = ACTIONS(911), - [anon_sym_xor] = ACTIONS(911), - [anon_sym_or] = ACTIONS(911), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [aux_sym__immediate_decimal_token1] = ACTIONS(2530), - [aux_sym__immediate_decimal_token2] = ACTIONS(2532), - [anon_sym_null] = ACTIONS(911), - [anon_sym_true] = ACTIONS(911), - [anon_sym_false] = ACTIONS(911), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(911), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(911), - [aux_sym__val_number_token1] = ACTIONS(911), - [aux_sym__val_number_token2] = ACTIONS(911), - [aux_sym__val_number_token3] = ACTIONS(911), - [aux_sym__val_number_token4] = ACTIONS(911), - [aux_sym__val_number_token5] = ACTIONS(911), - [aux_sym__val_number_token6] = ACTIONS(911), - [anon_sym_0b] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(911), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(911), - [anon_sym_DQUOTE] = ACTIONS(911), - [sym__str_single_quotes] = ACTIONS(911), - [sym__str_back_ticks] = ACTIONS(911), - [anon_sym_err_GT] = ACTIONS(911), - [anon_sym_out_GT] = ACTIONS(911), - [anon_sym_e_GT] = ACTIONS(911), - [anon_sym_o_GT] = ACTIONS(911), - [anon_sym_err_PLUSout_GT] = ACTIONS(911), - [anon_sym_out_PLUSerr_GT] = ACTIONS(911), - [anon_sym_o_PLUSe_GT] = ACTIONS(911), - [anon_sym_e_PLUSo_GT] = ACTIONS(911), - [aux_sym_unquoted_token1] = ACTIONS(909), - [aux_sym_unquoted_token5] = ACTIONS(909), - [anon_sym_POUND] = ACTIONS(3), - }, - [1118] = { - [sym_comment] = STATE(1118), - [anon_sym_LBRACK] = ACTIONS(911), - [anon_sym_COMMA] = ACTIONS(911), - [anon_sym_RBRACK] = ACTIONS(911), - [anon_sym_LPAREN] = ACTIONS(911), - [anon_sym_DOLLAR] = ACTIONS(911), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(911), - [anon_sym_DOT_DOT] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(911), - [anon_sym_PLUS_PLUS] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(911), - [anon_sym_SLASH_SLASH] = ACTIONS(911), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(911), - [anon_sym_bit_DASHshr] = ACTIONS(911), - [anon_sym_EQ_EQ] = ACTIONS(911), - [anon_sym_BANG_EQ] = ACTIONS(911), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(911), - [anon_sym_GT_EQ] = ACTIONS(911), - [anon_sym_not_DASHin] = ACTIONS(911), - [anon_sym_starts_DASHwith] = ACTIONS(911), - [anon_sym_ends_DASHwith] = ACTIONS(911), - [anon_sym_EQ_TILDE] = ACTIONS(911), - [anon_sym_BANG_TILDE] = ACTIONS(911), - [anon_sym_bit_DASHand] = ACTIONS(911), - [anon_sym_bit_DASHxor] = ACTIONS(911), - [anon_sym_bit_DASHor] = ACTIONS(911), - [anon_sym_and] = ACTIONS(911), - [anon_sym_xor] = ACTIONS(911), - [anon_sym_or] = ACTIONS(911), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [aux_sym__immediate_decimal_token1] = ACTIONS(2534), - [aux_sym__immediate_decimal_token2] = ACTIONS(2536), - [anon_sym_null] = ACTIONS(911), - [anon_sym_true] = ACTIONS(911), - [anon_sym_false] = ACTIONS(911), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(911), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(911), - [aux_sym__val_number_token1] = ACTIONS(911), - [aux_sym__val_number_token2] = ACTIONS(911), - [aux_sym__val_number_token3] = ACTIONS(911), - [aux_sym__val_number_token4] = ACTIONS(911), - [aux_sym__val_number_token5] = ACTIONS(911), - [aux_sym__val_number_token6] = ACTIONS(911), - [anon_sym_0b] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(911), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(911), - [anon_sym_DQUOTE] = ACTIONS(911), - [sym__str_single_quotes] = ACTIONS(911), - [sym__str_back_ticks] = ACTIONS(911), - [anon_sym_err_GT] = ACTIONS(911), - [anon_sym_out_GT] = ACTIONS(911), - [anon_sym_e_GT] = ACTIONS(911), - [anon_sym_o_GT] = ACTIONS(911), - [anon_sym_err_PLUSout_GT] = ACTIONS(911), - [anon_sym_out_PLUSerr_GT] = ACTIONS(911), - [anon_sym_o_PLUSe_GT] = ACTIONS(911), - [anon_sym_e_PLUSo_GT] = ACTIONS(911), - [aux_sym_unquoted_token5] = ACTIONS(909), - [aux_sym__unquoted_in_list_token1] = ACTIONS(909), - [anon_sym_POUND] = ACTIONS(3), - }, - [1119] = { - [sym_comment] = STATE(1119), - [anon_sym_LBRACK] = ACTIONS(923), - [anon_sym_COMMA] = ACTIONS(923), - [anon_sym_RBRACK] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_DOLLAR] = ACTIONS(923), - [anon_sym_GT] = ACTIONS(923), - [anon_sym_DASH_DASH] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_in] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(923), - [anon_sym_DOT_DOT] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_STAR_STAR] = ACTIONS(923), - [anon_sym_PLUS_PLUS] = ACTIONS(923), - [anon_sym_SLASH] = ACTIONS(923), - [anon_sym_mod] = ACTIONS(923), - [anon_sym_SLASH_SLASH] = ACTIONS(923), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_bit_DASHshl] = ACTIONS(923), - [anon_sym_bit_DASHshr] = ACTIONS(923), - [anon_sym_EQ_EQ] = ACTIONS(923), - [anon_sym_BANG_EQ] = ACTIONS(923), - [anon_sym_LT2] = ACTIONS(923), - [anon_sym_LT_EQ] = ACTIONS(923), - [anon_sym_GT_EQ] = ACTIONS(923), - [anon_sym_not_DASHin] = ACTIONS(923), - [anon_sym_starts_DASHwith] = ACTIONS(923), - [anon_sym_ends_DASHwith] = ACTIONS(923), - [anon_sym_EQ_TILDE] = ACTIONS(923), - [anon_sym_BANG_TILDE] = ACTIONS(923), - [anon_sym_bit_DASHand] = ACTIONS(923), - [anon_sym_bit_DASHxor] = ACTIONS(923), - [anon_sym_bit_DASHor] = ACTIONS(923), - [anon_sym_and] = ACTIONS(923), - [anon_sym_xor] = ACTIONS(923), - [anon_sym_or] = ACTIONS(923), - [anon_sym_DOT_DOT2] = ACTIONS(923), - [anon_sym_DOT] = ACTIONS(2538), - [anon_sym_DOT_DOT_EQ] = ACTIONS(923), - [anon_sym_DOT_DOT_LT] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(925), - [anon_sym_DOT_DOT_LT2] = ACTIONS(925), - [aux_sym__immediate_decimal_token2] = ACTIONS(2417), - [anon_sym_null] = ACTIONS(923), - [anon_sym_true] = ACTIONS(923), - [anon_sym_false] = ACTIONS(923), - [aux_sym__val_number_decimal_token1] = ACTIONS(923), - [aux_sym__val_number_decimal_token2] = ACTIONS(923), - [anon_sym_DOT2] = ACTIONS(923), - [aux_sym__val_number_decimal_token3] = ACTIONS(923), - [aux_sym__val_number_token1] = ACTIONS(923), - [aux_sym__val_number_token2] = ACTIONS(923), - [aux_sym__val_number_token3] = ACTIONS(923), - [aux_sym__val_number_token4] = ACTIONS(923), - [aux_sym__val_number_token5] = ACTIONS(923), - [aux_sym__val_number_token6] = ACTIONS(923), - [anon_sym_0b] = ACTIONS(923), - [sym_filesize_unit] = ACTIONS(923), - [sym_duration_unit] = ACTIONS(925), - [anon_sym_0o] = ACTIONS(923), - [anon_sym_0x] = ACTIONS(923), - [sym_val_date] = ACTIONS(923), - [anon_sym_DQUOTE] = ACTIONS(923), - [sym__str_single_quotes] = ACTIONS(923), - [sym__str_back_ticks] = ACTIONS(923), - [sym__entry_separator] = ACTIONS(925), - [anon_sym_err_GT] = ACTIONS(923), - [anon_sym_out_GT] = ACTIONS(923), - [anon_sym_e_GT] = ACTIONS(923), - [anon_sym_o_GT] = ACTIONS(923), - [anon_sym_err_PLUSout_GT] = ACTIONS(923), - [anon_sym_out_PLUSerr_GT] = ACTIONS(923), - [anon_sym_o_PLUSe_GT] = ACTIONS(923), - [anon_sym_e_PLUSo_GT] = ACTIONS(923), - [aux_sym_unquoted_token5] = ACTIONS(923), - [aux_sym__unquoted_in_list_token1] = ACTIONS(923), + [1350] = { + [sym_comment] = STATE(1350), + [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), + [anon_sym_SEMI] = ACTIONS(2356), + [sym_cmd_identifier] = ACTIONS(2356), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2356), + [anon_sym_RPAREN] = ACTIONS(2356), + [anon_sym_DOLLAR] = ACTIONS(2356), + [anon_sym_error] = ACTIONS(2356), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_loop] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_match] = ACTIONS(2356), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_RBRACE] = ACTIONS(2356), + [anon_sym_DOT_DOT] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_source] = ACTIONS(2356), + [anon_sym_source_DASHenv] = ACTIONS(2356), + [anon_sym_register] = 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_where] = ACTIONS(2356), + [anon_sym_not] = ACTIONS(2356), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2356), + [anon_sym_DOT_DOT_LT] = ACTIONS(2356), + [aux_sym__immediate_decimal_token2] = ACTIONS(3991), + [anon_sym_null] = ACTIONS(2356), + [anon_sym_true] = ACTIONS(2356), + [anon_sym_false] = ACTIONS(2356), + [aux_sym__val_number_decimal_token1] = ACTIONS(2356), + [aux_sym__val_number_decimal_token2] = ACTIONS(2356), + [anon_sym_DOT2] = ACTIONS(2356), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2356), + [anon_sym_0o] = ACTIONS(2356), + [anon_sym_0x] = ACTIONS(2356), + [sym_val_date] = 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_CARET] = ACTIONS(2356), [anon_sym_POUND] = ACTIONS(113), }, - [1120] = { - [sym__expr_parenthesized_immediate] = STATE(1580), - [sym__immediate_decimal] = STATE(1544), - [sym_val_variable] = STATE(1580), - [sym__var] = STATE(1262), - [sym_comment] = STATE(1120), - [ts_builtin_sym_end] = ACTIONS(2389), - [anon_sym_export] = ACTIONS(2387), - [anon_sym_alias] = ACTIONS(2387), - [anon_sym_let] = ACTIONS(2387), - [anon_sym_let_DASHenv] = ACTIONS(2387), - [anon_sym_mut] = ACTIONS(2387), - [anon_sym_const] = ACTIONS(2387), - [anon_sym_SEMI] = ACTIONS(2387), - [sym_cmd_identifier] = ACTIONS(2387), - [anon_sym_LF] = ACTIONS(2389), - [anon_sym_def] = ACTIONS(2387), - [anon_sym_export_DASHenv] = ACTIONS(2387), - [anon_sym_extern] = ACTIONS(2387), - [anon_sym_module] = ACTIONS(2387), - [anon_sym_use] = ACTIONS(2387), - [anon_sym_LBRACK] = ACTIONS(2387), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_DOLLAR] = ACTIONS(1982), - [anon_sym_error] = ACTIONS(2387), - [anon_sym_DASH_DASH] = ACTIONS(2387), - [anon_sym_DASH] = ACTIONS(2387), - [anon_sym_break] = ACTIONS(2387), - [anon_sym_continue] = ACTIONS(2387), - [anon_sym_for] = ACTIONS(2387), - [anon_sym_loop] = ACTIONS(2387), - [anon_sym_while] = ACTIONS(2387), - [anon_sym_do] = ACTIONS(2387), - [anon_sym_if] = ACTIONS(2387), - [anon_sym_match] = ACTIONS(2387), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_DOT_DOT] = ACTIONS(2387), - [anon_sym_try] = ACTIONS(2387), - [anon_sym_return] = ACTIONS(2387), - [anon_sym_source] = ACTIONS(2387), - [anon_sym_source_DASHenv] = ACTIONS(2387), - [anon_sym_register] = ACTIONS(2387), - [anon_sym_hide] = ACTIONS(2387), - [anon_sym_hide_DASHenv] = ACTIONS(2387), - [anon_sym_overlay] = ACTIONS(2387), - [anon_sym_as] = ACTIONS(2387), - [anon_sym_where] = ACTIONS(2387), - [anon_sym_not] = ACTIONS(2387), - [anon_sym_LPAREN2] = ACTIONS(1984), - [anon_sym_DOT] = ACTIONS(2541), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2387), - [anon_sym_DOT_DOT_LT] = ACTIONS(2387), - [aux_sym__immediate_decimal_token1] = ACTIONS(2543), - [aux_sym__immediate_decimal_token3] = ACTIONS(2543), - [aux_sym__immediate_decimal_token4] = ACTIONS(2545), - [anon_sym_null] = ACTIONS(2387), - [anon_sym_true] = ACTIONS(2387), - [anon_sym_false] = ACTIONS(2387), - [aux_sym__val_number_decimal_token1] = ACTIONS(2387), - [aux_sym__val_number_decimal_token2] = ACTIONS(2387), - [anon_sym_DOT2] = ACTIONS(2387), - [aux_sym__val_number_decimal_token3] = 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(2387), - [aux_sym__val_number_token5] = ACTIONS(2387), - [aux_sym__val_number_token6] = ACTIONS(2387), - [anon_sym_0b] = ACTIONS(2387), - [anon_sym_0o] = ACTIONS(2387), - [anon_sym_0x] = ACTIONS(2387), - [sym_val_date] = ACTIONS(2387), - [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_CARET] = ACTIONS(2387), + [1351] = { + [sym_comment] = STATE(1351), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_alias] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_let_DASHenv] = ACTIONS(2229), + [anon_sym_mut] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2229), + [sym_cmd_identifier] = ACTIONS(2229), + [anon_sym_LF] = ACTIONS(2231), + [anon_sym_def] = ACTIONS(2229), + [anon_sym_export_DASHenv] = ACTIONS(2229), + [anon_sym_extern] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_RPAREN] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2229), + [anon_sym_error] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_loop] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_RBRACE] = ACTIONS(2229), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_source] = ACTIONS(2229), + [anon_sym_source_DASHenv] = ACTIONS(2229), + [anon_sym_register] = ACTIONS(2229), + [anon_sym_hide] = ACTIONS(2229), + [anon_sym_hide_DASHenv] = ACTIONS(2229), + [anon_sym_overlay] = ACTIONS(2229), + [anon_sym_as] = ACTIONS(2229), + [anon_sym_where] = ACTIONS(2229), + [anon_sym_not] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2229), + [anon_sym_DOT_DOT_LT] = ACTIONS(2229), + [aux_sym__immediate_decimal_token2] = ACTIONS(3983), + [anon_sym_null] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [aux_sym__val_number_decimal_token1] = ACTIONS(2229), + [aux_sym__val_number_decimal_token2] = ACTIONS(2229), + [anon_sym_DOT2] = ACTIONS(2229), + [aux_sym__val_number_decimal_token3] = ACTIONS(2229), + [aux_sym__val_number_token1] = ACTIONS(2229), + [aux_sym__val_number_token2] = ACTIONS(2229), + [aux_sym__val_number_token3] = ACTIONS(2229), + [aux_sym__val_number_token4] = ACTIONS(2229), + [aux_sym__val_number_token5] = ACTIONS(2229), + [aux_sym__val_number_token6] = ACTIONS(2229), + [anon_sym_0b] = ACTIONS(2229), + [anon_sym_0o] = ACTIONS(2229), + [anon_sym_0x] = ACTIONS(2229), + [sym_val_date] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2229), + [anon_sym_CARET] = ACTIONS(2229), [anon_sym_POUND] = ACTIONS(113), }, - [1121] = { - [sym__expr_unary_minus] = STATE(10486), - [sym_expr_parenthesized] = STATE(9327), - [sym_val_range] = STATE(10632), - [sym__val_range] = STATE(10567), - [sym__val_range_with_end] = STATE(10631), - [sym__value] = STATE(10632), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(9687), - [sym_val_variable] = STATE(5789), - [sym__var] = STATE(5205), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(7522), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(6614), - [sym_val_entry] = STATE(10659), - [sym__list_item_expression] = STATE(10482), - [sym__list_item_starts_with_sign] = STATE(10484), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_short_flag] = STATE(10484), - [sym_long_flag] = STATE(10484), - [sym_long_flag_equals_value] = STATE(4310), - [sym__unquoted_in_list] = STATE(9820), - [sym__unquoted_in_list_with_expr] = STATE(10484), - [sym__unquoted_anonymous_prefix] = STATE(10279), - [sym_comment] = STATE(1121), - [aux_sym_list_body_repeat1] = STATE(1115), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_LPAREN] = ACTIONS(1940), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(1950), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1952), - [anon_sym_DOT_DOT_LT] = ACTIONS(1952), - [anon_sym_null] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [aux_sym__val_number_decimal_token1] = ACTIONS(1958), - [aux_sym__val_number_decimal_token2] = ACTIONS(1960), - [anon_sym_DOT2] = ACTIONS(1962), - [aux_sym__val_number_decimal_token3] = ACTIONS(1964), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(1968), - [aux_sym__val_number_token5] = ACTIONS(1968), - [aux_sym__val_number_token6] = ACTIONS(1968), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(1699), - [anon_sym_out_GT] = ACTIONS(1699), - [anon_sym_e_GT] = ACTIONS(1699), - [anon_sym_o_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT] = ACTIONS(1699), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1701), - [anon_sym_POUND] = ACTIONS(3), - }, - [1122] = { - [sym__expr_parenthesized_immediate] = STATE(2477), - [sym__immediate_decimal] = STATE(2484), - [sym_val_variable] = STATE(2477), - [sym__var] = STATE(1498), - [sym_comment] = STATE(1122), - [ts_builtin_sym_end] = ACTIONS(2351), - [anon_sym_export] = ACTIONS(2349), - [anon_sym_alias] = ACTIONS(2349), - [anon_sym_let] = ACTIONS(2349), - [anon_sym_let_DASHenv] = ACTIONS(2349), - [anon_sym_mut] = ACTIONS(2349), - [anon_sym_const] = ACTIONS(2349), - [anon_sym_SEMI] = ACTIONS(2349), - [sym_cmd_identifier] = ACTIONS(2349), - [anon_sym_LF] = ACTIONS(2351), - [anon_sym_def] = ACTIONS(2349), - [anon_sym_export_DASHenv] = ACTIONS(2349), - [anon_sym_extern] = ACTIONS(2349), - [anon_sym_module] = ACTIONS(2349), - [anon_sym_use] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(2349), - [anon_sym_DOLLAR] = ACTIONS(2367), - [anon_sym_error] = ACTIONS(2349), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2349), - [anon_sym_break] = ACTIONS(2349), - [anon_sym_continue] = ACTIONS(2349), - [anon_sym_for] = ACTIONS(2349), - [anon_sym_loop] = ACTIONS(2349), - [anon_sym_while] = ACTIONS(2349), - [anon_sym_do] = ACTIONS(2349), - [anon_sym_if] = ACTIONS(2349), - [anon_sym_match] = ACTIONS(2349), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_DOT_DOT] = ACTIONS(2349), - [anon_sym_try] = ACTIONS(2349), - [anon_sym_return] = ACTIONS(2349), - [anon_sym_source] = ACTIONS(2349), - [anon_sym_source_DASHenv] = ACTIONS(2349), - [anon_sym_register] = ACTIONS(2349), - [anon_sym_hide] = ACTIONS(2349), - [anon_sym_hide_DASHenv] = ACTIONS(2349), - [anon_sym_overlay] = ACTIONS(2349), - [anon_sym_as] = ACTIONS(2349), - [anon_sym_where] = ACTIONS(2349), - [anon_sym_not] = ACTIONS(2349), - [anon_sym_LPAREN2] = ACTIONS(2369), - [anon_sym_DOT] = ACTIONS(2419), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2349), - [anon_sym_DOT_DOT_LT] = ACTIONS(2349), - [aux_sym__immediate_decimal_token1] = ACTIONS(2421), - [aux_sym__immediate_decimal_token3] = ACTIONS(2421), - [aux_sym__immediate_decimal_token4] = ACTIONS(2423), - [anon_sym_null] = ACTIONS(2349), - [anon_sym_true] = ACTIONS(2349), - [anon_sym_false] = ACTIONS(2349), - [aux_sym__val_number_decimal_token1] = ACTIONS(2349), - [aux_sym__val_number_decimal_token2] = ACTIONS(2349), - [anon_sym_DOT2] = ACTIONS(2349), - [aux_sym__val_number_decimal_token3] = ACTIONS(2349), - [aux_sym__val_number_token1] = ACTIONS(2349), - [aux_sym__val_number_token2] = ACTIONS(2349), - [aux_sym__val_number_token3] = ACTIONS(2349), - [aux_sym__val_number_token4] = ACTIONS(2349), - [aux_sym__val_number_token5] = ACTIONS(2349), - [aux_sym__val_number_token6] = ACTIONS(2349), - [anon_sym_0b] = ACTIONS(2349), - [anon_sym_0o] = ACTIONS(2349), - [anon_sym_0x] = ACTIONS(2349), - [sym_val_date] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym__str_single_quotes] = ACTIONS(2349), - [sym__str_back_ticks] = ACTIONS(2349), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2349), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2349), - [anon_sym_CARET] = ACTIONS(2349), + [1352] = { + [sym_comment] = STATE(1352), + [ts_builtin_sym_end] = ACTIONS(1161), + [anon_sym_export] = ACTIONS(1159), + [anon_sym_alias] = ACTIONS(1159), + [anon_sym_let] = ACTIONS(1159), + [anon_sym_let_DASHenv] = ACTIONS(1159), + [anon_sym_mut] = ACTIONS(1159), + [anon_sym_const] = ACTIONS(1159), + [anon_sym_SEMI] = ACTIONS(1159), + [sym_cmd_identifier] = ACTIONS(1159), + [anon_sym_LF] = ACTIONS(1161), + [anon_sym_def] = ACTIONS(1159), + [anon_sym_export_DASHenv] = ACTIONS(1159), + [anon_sym_extern] = ACTIONS(1159), + [anon_sym_module] = ACTIONS(1159), + [anon_sym_use] = ACTIONS(1159), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LPAREN] = ACTIONS(1159), + [anon_sym_DOLLAR] = ACTIONS(1159), + [anon_sym_error] = ACTIONS(1159), + [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_DASH] = ACTIONS(1159), + [anon_sym_break] = ACTIONS(1159), + [anon_sym_continue] = ACTIONS(1159), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_loop] = ACTIONS(1159), + [anon_sym_while] = ACTIONS(1159), + [anon_sym_do] = ACTIONS(1159), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_match] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(1159), + [anon_sym_DOT_DOT] = ACTIONS(1159), + [anon_sym_try] = ACTIONS(1159), + [anon_sym_return] = ACTIONS(1159), + [anon_sym_source] = ACTIONS(1159), + [anon_sym_source_DASHenv] = ACTIONS(1159), + [anon_sym_register] = ACTIONS(1159), + [anon_sym_hide] = ACTIONS(1159), + [anon_sym_hide_DASHenv] = ACTIONS(1159), + [anon_sym_overlay] = ACTIONS(1159), + [anon_sym_as] = ACTIONS(1159), + [anon_sym_where] = ACTIONS(1159), + [anon_sym_not] = ACTIONS(1159), + [anon_sym_LPAREN2] = ACTIONS(3727), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1159), + [anon_sym_DOT_DOT_LT] = ACTIONS(1159), + [anon_sym_null] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1159), + [anon_sym_false] = ACTIONS(1159), + [aux_sym__val_number_decimal_token1] = ACTIONS(1159), + [aux_sym__val_number_decimal_token2] = ACTIONS(1159), + [anon_sym_DOT2] = ACTIONS(1159), + [aux_sym__val_number_decimal_token3] = ACTIONS(1159), + [aux_sym__val_number_token1] = ACTIONS(1159), + [aux_sym__val_number_token2] = ACTIONS(1159), + [aux_sym__val_number_token3] = ACTIONS(1159), + [aux_sym__val_number_token4] = ACTIONS(1159), + [aux_sym__val_number_token5] = ACTIONS(1159), + [aux_sym__val_number_token6] = ACTIONS(1159), + [anon_sym_0b] = ACTIONS(1159), + [anon_sym_0o] = ACTIONS(1159), + [anon_sym_0x] = ACTIONS(1159), + [sym_val_date] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(1159), + [sym__str_single_quotes] = ACTIONS(1159), + [sym__str_back_ticks] = ACTIONS(1159), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1159), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1159), + [anon_sym_CARET] = ACTIONS(1159), + [aux_sym_unquoted_token6] = ACTIONS(1163), [anon_sym_POUND] = ACTIONS(113), }, - [1123] = { - [sym_comment] = STATE(1123), - [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), - [anon_sym_SEMI] = ACTIONS(950), - [sym_cmd_identifier] = ACTIONS(950), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(950), - [anon_sym_LPAREN] = ACTIONS(950), - [anon_sym_RPAREN] = ACTIONS(950), - [anon_sym_DOLLAR] = ACTIONS(950), - [anon_sym_error] = ACTIONS(950), - [anon_sym_DASH_DASH] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(950), - [anon_sym_break] = ACTIONS(950), - [anon_sym_continue] = ACTIONS(950), - [anon_sym_for] = ACTIONS(950), - [anon_sym_loop] = ACTIONS(950), - [anon_sym_while] = ACTIONS(950), - [anon_sym_do] = ACTIONS(950), - [anon_sym_if] = ACTIONS(950), - [anon_sym_match] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(950), - [anon_sym_RBRACE] = ACTIONS(950), - [anon_sym_DOT_DOT] = ACTIONS(950), - [anon_sym_try] = ACTIONS(950), - [anon_sym_return] = ACTIONS(950), - [anon_sym_source] = ACTIONS(950), - [anon_sym_source_DASHenv] = ACTIONS(950), - [anon_sym_register] = 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_where] = ACTIONS(950), - [anon_sym_not] = ACTIONS(950), - [anon_sym_LPAREN2] = ACTIONS(952), - [anon_sym_DOT_DOT2] = ACTIONS(950), - [anon_sym_DOT] = 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(950), - [anon_sym_true] = ACTIONS(950), - [anon_sym_false] = ACTIONS(950), - [aux_sym__val_number_decimal_token1] = ACTIONS(950), - [aux_sym__val_number_decimal_token2] = ACTIONS(950), - [anon_sym_DOT2] = ACTIONS(950), - [aux_sym__val_number_decimal_token3] = ACTIONS(950), - [aux_sym__val_number_token1] = ACTIONS(950), - [aux_sym__val_number_token2] = ACTIONS(950), - [aux_sym__val_number_token3] = ACTIONS(950), - [aux_sym__val_number_token4] = ACTIONS(950), - [aux_sym__val_number_token5] = ACTIONS(950), - [aux_sym__val_number_token6] = ACTIONS(950), - [anon_sym_0b] = ACTIONS(950), - [sym_filesize_unit] = ACTIONS(950), - [sym_duration_unit] = ACTIONS(950), - [anon_sym_0o] = ACTIONS(950), - [anon_sym_0x] = ACTIONS(950), - [sym_val_date] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym__str_single_quotes] = ACTIONS(950), - [sym__str_back_ticks] = ACTIONS(950), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(950), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(950), - [anon_sym_CARET] = ACTIONS(950), - [aux_sym_unquoted_token5] = ACTIONS(950), + [1353] = { + [sym_comment] = STATE(1353), + [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), + [anon_sym_SEMI] = ACTIONS(2362), + [sym_cmd_identifier] = ACTIONS(2362), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2362), + [anon_sym_LPAREN] = ACTIONS(2362), + [anon_sym_RPAREN] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2362), + [anon_sym_error] = ACTIONS(2362), + [anon_sym_DASH_DASH] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_break] = ACTIONS(2362), + [anon_sym_continue] = ACTIONS(2362), + [anon_sym_for] = ACTIONS(2362), + [anon_sym_loop] = ACTIONS(2362), + [anon_sym_while] = ACTIONS(2362), + [anon_sym_do] = ACTIONS(2362), + [anon_sym_if] = ACTIONS(2362), + [anon_sym_match] = ACTIONS(2362), + [anon_sym_LBRACE] = ACTIONS(2362), + [anon_sym_RBRACE] = ACTIONS(2362), + [anon_sym_DOT_DOT] = ACTIONS(2362), + [anon_sym_try] = 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_where] = ACTIONS(2362), + [anon_sym_not] = ACTIONS(2362), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2362), + [anon_sym_DOT_DOT_LT] = ACTIONS(2362), + [aux_sym__immediate_decimal_token2] = ACTIONS(4761), + [anon_sym_null] = ACTIONS(2362), + [anon_sym_true] = ACTIONS(2362), + [anon_sym_false] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2362), + [aux_sym__val_number_decimal_token2] = ACTIONS(2362), + [anon_sym_DOT2] = ACTIONS(2362), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2362), + [anon_sym_0o] = ACTIONS(2362), + [anon_sym_0x] = ACTIONS(2362), + [sym_val_date] = 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_CARET] = ACTIONS(2362), [anon_sym_POUND] = ACTIONS(113), }, - [1124] = { - [sym__expr_parenthesized_immediate] = STATE(2485), - [sym__immediate_decimal] = STATE(2486), - [sym_val_variable] = STATE(2485), - [sym__var] = STATE(1498), - [sym_comment] = STATE(1124), - [ts_builtin_sym_end] = ACTIONS(2361), - [anon_sym_export] = ACTIONS(2359), - [anon_sym_alias] = ACTIONS(2359), - [anon_sym_let] = ACTIONS(2359), - [anon_sym_let_DASHenv] = ACTIONS(2359), - [anon_sym_mut] = ACTIONS(2359), - [anon_sym_const] = ACTIONS(2359), - [anon_sym_SEMI] = ACTIONS(2359), - [sym_cmd_identifier] = ACTIONS(2359), - [anon_sym_LF] = ACTIONS(2361), - [anon_sym_def] = ACTIONS(2359), - [anon_sym_export_DASHenv] = ACTIONS(2359), - [anon_sym_extern] = ACTIONS(2359), - [anon_sym_module] = ACTIONS(2359), - [anon_sym_use] = ACTIONS(2359), - [anon_sym_LBRACK] = ACTIONS(2359), - [anon_sym_LPAREN] = ACTIONS(2359), - [anon_sym_DOLLAR] = ACTIONS(2367), - [anon_sym_error] = ACTIONS(2359), - [anon_sym_DASH_DASH] = ACTIONS(2359), - [anon_sym_DASH] = ACTIONS(2359), - [anon_sym_break] = ACTIONS(2359), - [anon_sym_continue] = ACTIONS(2359), - [anon_sym_for] = ACTIONS(2359), - [anon_sym_loop] = ACTIONS(2359), - [anon_sym_while] = ACTIONS(2359), - [anon_sym_do] = ACTIONS(2359), - [anon_sym_if] = ACTIONS(2359), - [anon_sym_match] = ACTIONS(2359), - [anon_sym_LBRACE] = ACTIONS(2359), - [anon_sym_DOT_DOT] = ACTIONS(2359), - [anon_sym_try] = ACTIONS(2359), - [anon_sym_return] = ACTIONS(2359), - [anon_sym_source] = ACTIONS(2359), - [anon_sym_source_DASHenv] = ACTIONS(2359), - [anon_sym_register] = ACTIONS(2359), - [anon_sym_hide] = ACTIONS(2359), - [anon_sym_hide_DASHenv] = ACTIONS(2359), - [anon_sym_overlay] = ACTIONS(2359), - [anon_sym_as] = ACTIONS(2359), - [anon_sym_where] = ACTIONS(2359), - [anon_sym_not] = ACTIONS(2359), - [anon_sym_LPAREN2] = ACTIONS(2369), - [anon_sym_DOT] = ACTIONS(2419), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2359), - [anon_sym_DOT_DOT_LT] = ACTIONS(2359), - [aux_sym__immediate_decimal_token1] = ACTIONS(2421), - [aux_sym__immediate_decimal_token3] = ACTIONS(2421), - [aux_sym__immediate_decimal_token4] = ACTIONS(2423), - [anon_sym_null] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(2359), - [anon_sym_false] = ACTIONS(2359), - [aux_sym__val_number_decimal_token1] = ACTIONS(2359), - [aux_sym__val_number_decimal_token2] = ACTIONS(2359), - [anon_sym_DOT2] = ACTIONS(2359), - [aux_sym__val_number_decimal_token3] = ACTIONS(2359), - [aux_sym__val_number_token1] = ACTIONS(2359), - [aux_sym__val_number_token2] = ACTIONS(2359), - [aux_sym__val_number_token3] = ACTIONS(2359), - [aux_sym__val_number_token4] = ACTIONS(2359), - [aux_sym__val_number_token5] = ACTIONS(2359), - [aux_sym__val_number_token6] = ACTIONS(2359), - [anon_sym_0b] = ACTIONS(2359), - [anon_sym_0o] = ACTIONS(2359), - [anon_sym_0x] = ACTIONS(2359), - [sym_val_date] = ACTIONS(2359), - [anon_sym_DQUOTE] = ACTIONS(2359), - [sym__str_single_quotes] = ACTIONS(2359), - [sym__str_back_ticks] = ACTIONS(2359), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2359), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2359), - [anon_sym_CARET] = ACTIONS(2359), + [1354] = { + [sym_comment] = STATE(1354), + [anon_sym_export] = ACTIONS(1143), + [anon_sym_alias] = ACTIONS(1143), + [anon_sym_let] = ACTIONS(1143), + [anon_sym_let_DASHenv] = ACTIONS(1143), + [anon_sym_mut] = ACTIONS(1143), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_SEMI] = ACTIONS(1143), + [sym_cmd_identifier] = ACTIONS(1143), + [anon_sym_LF] = ACTIONS(1145), + [anon_sym_def] = ACTIONS(1143), + [anon_sym_export_DASHenv] = ACTIONS(1143), + [anon_sym_extern] = ACTIONS(1143), + [anon_sym_module] = ACTIONS(1143), + [anon_sym_use] = ACTIONS(1143), + [anon_sym_LBRACK] = ACTIONS(1143), + [anon_sym_LPAREN] = ACTIONS(1143), + [anon_sym_RPAREN] = ACTIONS(1143), + [anon_sym_DOLLAR] = ACTIONS(1143), + [anon_sym_error] = ACTIONS(1143), + [anon_sym_DASH_DASH] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_break] = ACTIONS(1143), + [anon_sym_continue] = ACTIONS(1143), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_loop] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(1143), + [anon_sym_do] = ACTIONS(1143), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_match] = ACTIONS(1143), + [anon_sym_LBRACE] = ACTIONS(1143), + [anon_sym_RBRACE] = ACTIONS(1143), + [anon_sym_DOT_DOT] = ACTIONS(1143), + [anon_sym_try] = ACTIONS(1143), + [anon_sym_return] = ACTIONS(1143), + [anon_sym_source] = ACTIONS(1143), + [anon_sym_source_DASHenv] = ACTIONS(1143), + [anon_sym_register] = ACTIONS(1143), + [anon_sym_hide] = ACTIONS(1143), + [anon_sym_hide_DASHenv] = ACTIONS(1143), + [anon_sym_overlay] = ACTIONS(1143), + [anon_sym_as] = ACTIONS(1143), + [anon_sym_where] = ACTIONS(1143), + [anon_sym_not] = ACTIONS(1143), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1143), + [anon_sym_DOT_DOT_LT] = ACTIONS(1143), + [anon_sym_null] = ACTIONS(1143), + [anon_sym_true] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [aux_sym__val_number_decimal_token1] = ACTIONS(1143), + [aux_sym__val_number_decimal_token2] = ACTIONS(1143), + [anon_sym_DOT2] = ACTIONS(1143), + [aux_sym__val_number_decimal_token3] = ACTIONS(1143), + [aux_sym__val_number_token1] = ACTIONS(1143), + [aux_sym__val_number_token2] = ACTIONS(1143), + [aux_sym__val_number_token3] = ACTIONS(1143), + [aux_sym__val_number_token4] = ACTIONS(1143), + [aux_sym__val_number_token5] = ACTIONS(1143), + [aux_sym__val_number_token6] = ACTIONS(1143), + [anon_sym_0b] = ACTIONS(1143), + [anon_sym_0o] = ACTIONS(1143), + [anon_sym_0x] = ACTIONS(1143), + [anon_sym_LBRACK2] = ACTIONS(4763), + [sym_val_date] = ACTIONS(1143), + [anon_sym_DQUOTE] = ACTIONS(1143), + [sym__str_single_quotes] = ACTIONS(1143), + [sym__str_back_ticks] = ACTIONS(1143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1143), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1143), + [anon_sym_CARET] = ACTIONS(1143), [anon_sym_POUND] = ACTIONS(113), }, - [1125] = { - [sym_comment] = STATE(1125), - [anon_sym_export] = ACTIONS(909), - [anon_sym_alias] = ACTIONS(909), - [anon_sym_let] = ACTIONS(909), - [anon_sym_let_DASHenv] = ACTIONS(909), - [anon_sym_mut] = ACTIONS(909), - [anon_sym_const] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(909), - [sym_cmd_identifier] = ACTIONS(909), - [anon_sym_LF] = ACTIONS(911), - [anon_sym_def] = ACTIONS(909), - [anon_sym_export_DASHenv] = ACTIONS(909), - [anon_sym_extern] = ACTIONS(909), - [anon_sym_module] = ACTIONS(909), - [anon_sym_use] = ACTIONS(909), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_RPAREN] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_error] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_break] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_for] = ACTIONS(909), - [anon_sym_loop] = ACTIONS(909), - [anon_sym_while] = ACTIONS(909), - [anon_sym_do] = ACTIONS(909), - [anon_sym_if] = ACTIONS(909), - [anon_sym_match] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_RBRACE] = ACTIONS(909), - [anon_sym_DOT_DOT] = ACTIONS(909), - [anon_sym_try] = ACTIONS(909), - [anon_sym_return] = ACTIONS(909), - [anon_sym_source] = ACTIONS(909), - [anon_sym_source_DASHenv] = ACTIONS(909), - [anon_sym_register] = ACTIONS(909), - [anon_sym_hide] = ACTIONS(909), - [anon_sym_hide_DASHenv] = ACTIONS(909), - [anon_sym_overlay] = ACTIONS(909), - [anon_sym_as] = ACTIONS(909), - [anon_sym_where] = ACTIONS(909), - [anon_sym_not] = ACTIONS(909), - [anon_sym_LPAREN2] = ACTIONS(911), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [anon_sym_null] = ACTIONS(909), - [anon_sym_true] = ACTIONS(909), - [anon_sym_false] = ACTIONS(909), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(909), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(909), - [aux_sym__val_number_token1] = ACTIONS(909), - [aux_sym__val_number_token2] = ACTIONS(909), - [aux_sym__val_number_token3] = ACTIONS(909), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(909), - [aux_sym__val_number_token6] = ACTIONS(909), - [anon_sym_0b] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(909), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym__str_single_quotes] = ACTIONS(909), - [sym__str_back_ticks] = ACTIONS(909), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), - [anon_sym_CARET] = ACTIONS(909), - [aux_sym_unquoted_token5] = ACTIONS(909), + [1355] = { + [sym_comment] = STATE(1355), + [anon_sym_LBRACK] = ACTIONS(1155), + [anon_sym_COMMA] = ACTIONS(1155), + [anon_sym_RBRACK] = ACTIONS(1155), + [anon_sym_LPAREN] = ACTIONS(1155), + [anon_sym_DOLLAR] = ACTIONS(1155), + [anon_sym_GT] = ACTIONS(1155), + [anon_sym_DASH_DASH] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_in] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_DOT_DOT] = ACTIONS(1155), + [anon_sym_STAR] = ACTIONS(1155), + [anon_sym_STAR_STAR] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(1155), + [anon_sym_mod] = ACTIONS(1155), + [anon_sym_SLASH_SLASH] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_bit_DASHshl] = ACTIONS(1155), + [anon_sym_bit_DASHshr] = ACTIONS(1155), + [anon_sym_EQ_EQ] = ACTIONS(1155), + [anon_sym_BANG_EQ] = ACTIONS(1155), + [anon_sym_LT2] = ACTIONS(1155), + [anon_sym_LT_EQ] = ACTIONS(1155), + [anon_sym_GT_EQ] = ACTIONS(1155), + [anon_sym_not_DASHin] = ACTIONS(1155), + [anon_sym_starts_DASHwith] = ACTIONS(1155), + [anon_sym_ends_DASHwith] = ACTIONS(1155), + [anon_sym_EQ_TILDE] = ACTIONS(1155), + [anon_sym_BANG_TILDE] = ACTIONS(1155), + [anon_sym_bit_DASHand] = ACTIONS(1155), + [anon_sym_bit_DASHxor] = ACTIONS(1155), + [anon_sym_bit_DASHor] = ACTIONS(1155), + [anon_sym_and] = ACTIONS(1155), + [anon_sym_xor] = ACTIONS(1155), + [anon_sym_or] = ACTIONS(1155), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1155), + [anon_sym_DOT_DOT_LT] = ACTIONS(1155), + [anon_sym_null] = ACTIONS(1155), + [anon_sym_true] = ACTIONS(1155), + [anon_sym_false] = ACTIONS(1155), + [aux_sym__val_number_decimal_token1] = ACTIONS(1155), + [aux_sym__val_number_decimal_token2] = ACTIONS(1155), + [anon_sym_DOT2] = ACTIONS(1155), + [aux_sym__val_number_decimal_token3] = ACTIONS(1155), + [aux_sym__val_number_token1] = ACTIONS(1155), + [aux_sym__val_number_token2] = ACTIONS(1155), + [aux_sym__val_number_token3] = ACTIONS(1155), + [aux_sym__val_number_token4] = ACTIONS(1155), + [aux_sym__val_number_token5] = ACTIONS(1155), + [aux_sym__val_number_token6] = ACTIONS(1155), + [anon_sym_0b] = ACTIONS(1155), + [anon_sym_0o] = ACTIONS(1155), + [anon_sym_0x] = ACTIONS(1155), + [sym_val_date] = ACTIONS(1155), + [anon_sym_DQUOTE] = ACTIONS(1155), + [sym__str_single_quotes] = ACTIONS(1155), + [sym__str_back_ticks] = ACTIONS(1155), + [sym__entry_separator] = ACTIONS(1157), + [anon_sym_err_GT] = ACTIONS(1155), + [anon_sym_out_GT] = ACTIONS(1155), + [anon_sym_e_GT] = ACTIONS(1155), + [anon_sym_o_GT] = ACTIONS(1155), + [anon_sym_err_PLUSout_GT] = ACTIONS(1155), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1155), + [anon_sym_o_PLUSe_GT] = ACTIONS(1155), + [anon_sym_e_PLUSo_GT] = ACTIONS(1155), + [aux_sym_unquoted_token6] = ACTIONS(1155), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1155), [anon_sym_POUND] = ACTIONS(113), }, - [1126] = { - [sym_comment] = STATE(1126), - [ts_builtin_sym_end] = ACTIONS(925), - [anon_sym_export] = ACTIONS(923), - [anon_sym_alias] = ACTIONS(923), - [anon_sym_let] = ACTIONS(923), - [anon_sym_let_DASHenv] = ACTIONS(923), - [anon_sym_mut] = ACTIONS(923), - [anon_sym_const] = ACTIONS(923), - [anon_sym_SEMI] = ACTIONS(923), - [sym_cmd_identifier] = ACTIONS(923), - [anon_sym_LF] = ACTIONS(925), - [anon_sym_def] = ACTIONS(923), - [anon_sym_export_DASHenv] = ACTIONS(923), - [anon_sym_extern] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_use] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_DOLLAR] = ACTIONS(923), - [anon_sym_error] = ACTIONS(923), - [anon_sym_DASH_DASH] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_break] = ACTIONS(923), - [anon_sym_continue] = ACTIONS(923), - [anon_sym_for] = ACTIONS(923), - [anon_sym_loop] = ACTIONS(923), - [anon_sym_while] = ACTIONS(923), - [anon_sym_do] = ACTIONS(923), - [anon_sym_if] = ACTIONS(923), - [anon_sym_match] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(923), - [anon_sym_DOT_DOT] = ACTIONS(923), - [anon_sym_try] = ACTIONS(923), - [anon_sym_return] = ACTIONS(923), - [anon_sym_source] = ACTIONS(923), - [anon_sym_source_DASHenv] = ACTIONS(923), - [anon_sym_register] = ACTIONS(923), - [anon_sym_hide] = ACTIONS(923), - [anon_sym_hide_DASHenv] = ACTIONS(923), - [anon_sym_overlay] = ACTIONS(923), - [anon_sym_as] = ACTIONS(923), - [anon_sym_where] = ACTIONS(923), - [anon_sym_not] = ACTIONS(923), - [anon_sym_LPAREN2] = ACTIONS(925), - [anon_sym_DOT_DOT2] = ACTIONS(923), - [anon_sym_DOT] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ] = ACTIONS(923), - [anon_sym_DOT_DOT_LT] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(925), - [anon_sym_DOT_DOT_LT2] = ACTIONS(925), - [aux_sym__immediate_decimal_token2] = ACTIONS(2528), - [anon_sym_null] = ACTIONS(923), - [anon_sym_true] = ACTIONS(923), - [anon_sym_false] = ACTIONS(923), - [aux_sym__val_number_decimal_token1] = ACTIONS(923), - [aux_sym__val_number_decimal_token2] = ACTIONS(923), - [anon_sym_DOT2] = ACTIONS(923), - [aux_sym__val_number_decimal_token3] = ACTIONS(923), - [aux_sym__val_number_token1] = ACTIONS(923), - [aux_sym__val_number_token2] = ACTIONS(923), - [aux_sym__val_number_token3] = ACTIONS(923), - [aux_sym__val_number_token4] = ACTIONS(923), - [aux_sym__val_number_token5] = ACTIONS(923), - [aux_sym__val_number_token6] = ACTIONS(923), - [anon_sym_0b] = ACTIONS(923), - [sym_filesize_unit] = ACTIONS(923), - [sym_duration_unit] = ACTIONS(923), - [anon_sym_0o] = ACTIONS(923), - [anon_sym_0x] = ACTIONS(923), - [sym_val_date] = ACTIONS(923), - [anon_sym_DQUOTE] = ACTIONS(923), - [sym__str_single_quotes] = ACTIONS(923), - [sym__str_back_ticks] = ACTIONS(923), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(923), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), - [anon_sym_CARET] = ACTIONS(923), - [aux_sym_unquoted_token5] = ACTIONS(923), + [1356] = { + [sym__expr_parenthesized_immediate] = STATE(10133), + [sym_comment] = STATE(1356), + [ts_builtin_sym_end] = ACTIONS(4198), + [anon_sym_export] = ACTIONS(4196), + [anon_sym_alias] = ACTIONS(4196), + [anon_sym_let] = ACTIONS(4196), + [anon_sym_let_DASHenv] = ACTIONS(4196), + [anon_sym_mut] = ACTIONS(4196), + [anon_sym_const] = ACTIONS(4196), + [anon_sym_SEMI] = ACTIONS(4196), + [sym_cmd_identifier] = ACTIONS(4196), + [anon_sym_LF] = ACTIONS(4198), + [anon_sym_def] = ACTIONS(4196), + [anon_sym_export_DASHenv] = ACTIONS(4196), + [anon_sym_extern] = ACTIONS(4196), + [anon_sym_module] = ACTIONS(4196), + [anon_sym_use] = ACTIONS(4196), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_DOLLAR] = ACTIONS(4196), + [anon_sym_error] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_break] = ACTIONS(4196), + [anon_sym_continue] = ACTIONS(4196), + [anon_sym_for] = ACTIONS(4196), + [anon_sym_loop] = ACTIONS(4196), + [anon_sym_while] = ACTIONS(4196), + [anon_sym_do] = ACTIONS(4196), + [anon_sym_if] = ACTIONS(4196), + [anon_sym_match] = ACTIONS(4196), + [anon_sym_LBRACE] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_try] = ACTIONS(4196), + [anon_sym_return] = ACTIONS(4196), + [anon_sym_source] = ACTIONS(4196), + [anon_sym_source_DASHenv] = ACTIONS(4196), + [anon_sym_register] = ACTIONS(4196), + [anon_sym_hide] = ACTIONS(4196), + [anon_sym_hide_DASHenv] = ACTIONS(4196), + [anon_sym_overlay] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_where] = ACTIONS(4196), + [anon_sym_not] = ACTIONS(4196), + [anon_sym_LPAREN2] = ACTIONS(2187), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4196), + [anon_sym_DOT_DOT_LT] = ACTIONS(4196), + [anon_sym_null] = ACTIONS(4196), + [anon_sym_true] = ACTIONS(4196), + [anon_sym_false] = ACTIONS(4196), + [aux_sym__val_number_decimal_token1] = ACTIONS(4196), + [aux_sym__val_number_decimal_token2] = ACTIONS(4196), + [anon_sym_DOT2] = ACTIONS(4196), + [aux_sym__val_number_decimal_token3] = ACTIONS(4196), + [aux_sym__val_number_token1] = ACTIONS(4196), + [aux_sym__val_number_token2] = ACTIONS(4196), + [aux_sym__val_number_token3] = ACTIONS(4196), + [aux_sym__val_number_token4] = ACTIONS(4196), + [aux_sym__val_number_token5] = ACTIONS(4196), + [aux_sym__val_number_token6] = ACTIONS(4196), + [anon_sym_0b] = ACTIONS(4196), + [anon_sym_0o] = ACTIONS(4196), + [anon_sym_0x] = ACTIONS(4196), + [sym_val_date] = ACTIONS(4196), + [anon_sym_DQUOTE] = ACTIONS(4196), + [sym__str_single_quotes] = ACTIONS(4196), + [sym__str_back_ticks] = ACTIONS(4196), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4196), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4196), + [anon_sym_CARET] = ACTIONS(4196), [anon_sym_POUND] = ACTIONS(113), }, - [1127] = { - [sym__expr_parenthesized_immediate] = STATE(2487), - [sym__immediate_decimal] = STATE(2488), - [sym_val_variable] = STATE(2487), - [sym__var] = STATE(1498), - [sym_comment] = STATE(1127), - [ts_builtin_sym_end] = ACTIONS(2385), - [anon_sym_export] = ACTIONS(2383), - [anon_sym_alias] = ACTIONS(2383), - [anon_sym_let] = ACTIONS(2383), - [anon_sym_let_DASHenv] = ACTIONS(2383), - [anon_sym_mut] = ACTIONS(2383), - [anon_sym_const] = ACTIONS(2383), - [anon_sym_SEMI] = ACTIONS(2383), - [sym_cmd_identifier] = ACTIONS(2383), - [anon_sym_LF] = ACTIONS(2385), - [anon_sym_def] = ACTIONS(2383), - [anon_sym_export_DASHenv] = ACTIONS(2383), - [anon_sym_extern] = ACTIONS(2383), - [anon_sym_module] = ACTIONS(2383), - [anon_sym_use] = ACTIONS(2383), - [anon_sym_LBRACK] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2383), - [anon_sym_DOLLAR] = ACTIONS(2367), - [anon_sym_error] = ACTIONS(2383), - [anon_sym_DASH_DASH] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2383), - [anon_sym_break] = ACTIONS(2383), - [anon_sym_continue] = ACTIONS(2383), - [anon_sym_for] = ACTIONS(2383), - [anon_sym_loop] = ACTIONS(2383), - [anon_sym_while] = ACTIONS(2383), - [anon_sym_do] = ACTIONS(2383), - [anon_sym_if] = ACTIONS(2383), - [anon_sym_match] = ACTIONS(2383), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_DOT_DOT] = ACTIONS(2383), - [anon_sym_try] = ACTIONS(2383), - [anon_sym_return] = ACTIONS(2383), - [anon_sym_source] = ACTIONS(2383), - [anon_sym_source_DASHenv] = ACTIONS(2383), - [anon_sym_register] = ACTIONS(2383), - [anon_sym_hide] = ACTIONS(2383), - [anon_sym_hide_DASHenv] = ACTIONS(2383), - [anon_sym_overlay] = ACTIONS(2383), - [anon_sym_as] = ACTIONS(2383), - [anon_sym_where] = ACTIONS(2383), - [anon_sym_not] = ACTIONS(2383), - [anon_sym_LPAREN2] = ACTIONS(2369), - [anon_sym_DOT] = ACTIONS(2419), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2383), - [anon_sym_DOT_DOT_LT] = ACTIONS(2383), - [aux_sym__immediate_decimal_token1] = ACTIONS(2421), - [aux_sym__immediate_decimal_token3] = ACTIONS(2421), - [aux_sym__immediate_decimal_token4] = ACTIONS(2423), - [anon_sym_null] = ACTIONS(2383), - [anon_sym_true] = ACTIONS(2383), - [anon_sym_false] = ACTIONS(2383), - [aux_sym__val_number_decimal_token1] = ACTIONS(2383), - [aux_sym__val_number_decimal_token2] = ACTIONS(2383), - [anon_sym_DOT2] = ACTIONS(2383), - [aux_sym__val_number_decimal_token3] = ACTIONS(2383), - [aux_sym__val_number_token1] = ACTIONS(2383), - [aux_sym__val_number_token2] = ACTIONS(2383), - [aux_sym__val_number_token3] = ACTIONS(2383), - [aux_sym__val_number_token4] = ACTIONS(2383), - [aux_sym__val_number_token5] = ACTIONS(2383), - [aux_sym__val_number_token6] = ACTIONS(2383), - [anon_sym_0b] = ACTIONS(2383), - [anon_sym_0o] = ACTIONS(2383), - [anon_sym_0x] = ACTIONS(2383), - [sym_val_date] = ACTIONS(2383), - [anon_sym_DQUOTE] = ACTIONS(2383), - [sym__str_single_quotes] = ACTIONS(2383), - [sym__str_back_ticks] = ACTIONS(2383), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2383), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2383), - [anon_sym_CARET] = ACTIONS(2383), + [1357] = { + [sym_comment] = STATE(1357), + [ts_builtin_sym_end] = ACTIONS(1026), + [anon_sym_export] = ACTIONS(1024), + [anon_sym_alias] = ACTIONS(1024), + [anon_sym_let] = ACTIONS(1024), + [anon_sym_let_DASHenv] = ACTIONS(1024), + [anon_sym_mut] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1024), + [sym_cmd_identifier] = ACTIONS(1024), + [anon_sym_LF] = ACTIONS(1026), + [anon_sym_def] = ACTIONS(1024), + [anon_sym_export_DASHenv] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1024), + [anon_sym_module] = ACTIONS(1024), + [anon_sym_use] = ACTIONS(1024), + [anon_sym_LBRACK] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_error] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_loop] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_match] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym_DOT_DOT] = ACTIONS(1024), + [anon_sym_try] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_source] = ACTIONS(1024), + [anon_sym_source_DASHenv] = ACTIONS(1024), + [anon_sym_register] = ACTIONS(1024), + [anon_sym_hide] = ACTIONS(1024), + [anon_sym_hide_DASHenv] = ACTIONS(1024), + [anon_sym_overlay] = ACTIONS(1024), + [anon_sym_as] = ACTIONS(1024), + [anon_sym_where] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(4765), + [anon_sym_not] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT] = ACTIONS(1024), + [anon_sym_null] = ACTIONS(1024), + [anon_sym_true] = ACTIONS(1024), + [anon_sym_false] = ACTIONS(1024), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1024), + [aux_sym__val_number_token1] = ACTIONS(1024), + [aux_sym__val_number_token2] = ACTIONS(1024), + [aux_sym__val_number_token3] = ACTIONS(1024), + [aux_sym__val_number_token4] = ACTIONS(1024), + [aux_sym__val_number_token5] = ACTIONS(1024), + [aux_sym__val_number_token6] = ACTIONS(1024), + [anon_sym_0b] = ACTIONS(1024), + [anon_sym_0o] = ACTIONS(1024), + [anon_sym_0x] = ACTIONS(1024), + [sym_val_date] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym__str_single_quotes] = ACTIONS(1024), + [sym__str_back_ticks] = ACTIONS(1024), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1024), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1024), + [anon_sym_CARET] = ACTIONS(1024), [anon_sym_POUND] = ACTIONS(113), }, - [1128] = { - [sym_comment] = STATE(1128), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_COMMA] = ACTIONS(909), - [anon_sym_RBRACK] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_DOT_DOT] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(909), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(909), - [anon_sym_SLASH_SLASH] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(909), - [anon_sym_bit_DASHshr] = ACTIONS(909), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_not_DASHin] = ACTIONS(909), - [anon_sym_starts_DASHwith] = ACTIONS(909), - [anon_sym_ends_DASHwith] = ACTIONS(909), - [anon_sym_EQ_TILDE] = ACTIONS(909), - [anon_sym_BANG_TILDE] = ACTIONS(909), - [anon_sym_bit_DASHand] = ACTIONS(909), - [anon_sym_bit_DASHxor] = ACTIONS(909), - [anon_sym_bit_DASHor] = ACTIONS(909), - [anon_sym_and] = ACTIONS(909), - [anon_sym_xor] = ACTIONS(909), - [anon_sym_or] = ACTIONS(909), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [aux_sym__immediate_decimal_token2] = ACTIONS(2415), - [anon_sym_null] = ACTIONS(909), - [anon_sym_true] = ACTIONS(909), - [anon_sym_false] = ACTIONS(909), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(909), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(909), - [aux_sym__val_number_token1] = ACTIONS(909), - [aux_sym__val_number_token2] = ACTIONS(909), - [aux_sym__val_number_token3] = ACTIONS(909), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(909), - [aux_sym__val_number_token6] = ACTIONS(909), - [anon_sym_0b] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(911), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym__str_single_quotes] = ACTIONS(909), - [sym__str_back_ticks] = ACTIONS(909), - [sym__entry_separator] = ACTIONS(911), - [anon_sym_err_GT] = ACTIONS(909), - [anon_sym_out_GT] = ACTIONS(909), - [anon_sym_e_GT] = ACTIONS(909), - [anon_sym_o_GT] = ACTIONS(909), - [anon_sym_err_PLUSout_GT] = ACTIONS(909), - [anon_sym_out_PLUSerr_GT] = ACTIONS(909), - [anon_sym_o_PLUSe_GT] = ACTIONS(909), - [anon_sym_e_PLUSo_GT] = ACTIONS(909), - [aux_sym_unquoted_token5] = ACTIONS(909), - [aux_sym__unquoted_in_list_token1] = ACTIONS(909), + [1358] = { + [sym_comment] = STATE(1358), + [ts_builtin_sym_end] = ACTIONS(2231), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_alias] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_let_DASHenv] = ACTIONS(2229), + [anon_sym_mut] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2229), + [sym_cmd_identifier] = ACTIONS(2229), + [anon_sym_LF] = ACTIONS(2231), + [anon_sym_def] = ACTIONS(2229), + [anon_sym_export_DASHenv] = ACTIONS(2229), + [anon_sym_extern] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2229), + [anon_sym_error] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_loop] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_source] = ACTIONS(2229), + [anon_sym_source_DASHenv] = ACTIONS(2229), + [anon_sym_register] = ACTIONS(2229), + [anon_sym_hide] = ACTIONS(2229), + [anon_sym_hide_DASHenv] = ACTIONS(2229), + [anon_sym_overlay] = ACTIONS(2229), + [anon_sym_as] = ACTIONS(2229), + [anon_sym_where] = ACTIONS(2229), + [anon_sym_not] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2229), + [anon_sym_DOT_DOT_LT] = ACTIONS(2229), + [anon_sym_null] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [aux_sym__val_number_decimal_token1] = ACTIONS(2229), + [aux_sym__val_number_decimal_token2] = ACTIONS(2229), + [anon_sym_DOT2] = ACTIONS(2229), + [aux_sym__val_number_decimal_token3] = ACTIONS(2229), + [aux_sym__val_number_token1] = ACTIONS(2229), + [aux_sym__val_number_token2] = ACTIONS(2229), + [aux_sym__val_number_token3] = ACTIONS(2229), + [aux_sym__val_number_token4] = ACTIONS(2229), + [aux_sym__val_number_token5] = ACTIONS(2229), + [aux_sym__val_number_token6] = ACTIONS(2229), + [anon_sym_0b] = ACTIONS(2229), + [anon_sym_0o] = ACTIONS(2229), + [anon_sym_0x] = ACTIONS(2229), + [sym_val_date] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2229), + [anon_sym_CARET] = ACTIONS(2229), + [aux_sym_unquoted_token2] = ACTIONS(2229), [anon_sym_POUND] = ACTIONS(113), }, - [1129] = { - [sym_comment] = STATE(1129), - [ts_builtin_sym_end] = ACTIONS(911), - [anon_sym_export] = ACTIONS(909), - [anon_sym_alias] = ACTIONS(909), - [anon_sym_let] = ACTIONS(909), - [anon_sym_let_DASHenv] = ACTIONS(909), - [anon_sym_mut] = ACTIONS(909), - [anon_sym_const] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(909), - [sym_cmd_identifier] = ACTIONS(909), - [anon_sym_LF] = ACTIONS(911), - [anon_sym_def] = ACTIONS(909), - [anon_sym_export_DASHenv] = ACTIONS(909), - [anon_sym_extern] = ACTIONS(909), - [anon_sym_module] = ACTIONS(909), - [anon_sym_use] = ACTIONS(909), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_error] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_break] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_for] = ACTIONS(909), - [anon_sym_loop] = ACTIONS(909), - [anon_sym_while] = ACTIONS(909), - [anon_sym_do] = ACTIONS(909), - [anon_sym_if] = ACTIONS(909), - [anon_sym_match] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_DOT_DOT] = ACTIONS(909), - [anon_sym_try] = ACTIONS(909), - [anon_sym_return] = ACTIONS(909), - [anon_sym_source] = ACTIONS(909), - [anon_sym_source_DASHenv] = ACTIONS(909), - [anon_sym_register] = ACTIONS(909), - [anon_sym_hide] = ACTIONS(909), - [anon_sym_hide_DASHenv] = ACTIONS(909), - [anon_sym_overlay] = ACTIONS(909), - [anon_sym_as] = ACTIONS(909), - [anon_sym_where] = ACTIONS(909), - [anon_sym_not] = ACTIONS(909), - [anon_sym_LPAREN2] = ACTIONS(911), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [aux_sym__immediate_decimal_token2] = ACTIONS(2365), - [anon_sym_null] = ACTIONS(909), - [anon_sym_true] = ACTIONS(909), - [anon_sym_false] = ACTIONS(909), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(909), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(909), - [aux_sym__val_number_token1] = ACTIONS(909), - [aux_sym__val_number_token2] = ACTIONS(909), - [aux_sym__val_number_token3] = ACTIONS(909), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(909), - [aux_sym__val_number_token6] = ACTIONS(909), - [anon_sym_0b] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(909), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym__str_single_quotes] = ACTIONS(909), - [sym__str_back_ticks] = ACTIONS(909), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), - [anon_sym_CARET] = ACTIONS(909), - [aux_sym_unquoted_token5] = ACTIONS(909), + [1359] = { + [sym_comment] = STATE(1359), + [ts_builtin_sym_end] = ACTIONS(2364), + [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), + [anon_sym_SEMI] = ACTIONS(2362), + [sym_cmd_identifier] = ACTIONS(2362), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2362), + [anon_sym_LPAREN] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2362), + [anon_sym_error] = ACTIONS(2362), + [anon_sym_DASH_DASH] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_break] = ACTIONS(2362), + [anon_sym_continue] = ACTIONS(2362), + [anon_sym_for] = ACTIONS(2362), + [anon_sym_loop] = ACTIONS(2362), + [anon_sym_while] = ACTIONS(2362), + [anon_sym_do] = ACTIONS(2362), + [anon_sym_if] = ACTIONS(2362), + [anon_sym_match] = ACTIONS(2362), + [anon_sym_LBRACE] = ACTIONS(2362), + [anon_sym_DOT_DOT] = ACTIONS(2362), + [anon_sym_try] = 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_where] = ACTIONS(2362), + [anon_sym_not] = ACTIONS(2362), + [anon_sym_DOT] = ACTIONS(2362), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2362), + [anon_sym_DOT_DOT_LT] = ACTIONS(2362), + [anon_sym_null] = ACTIONS(2362), + [anon_sym_true] = ACTIONS(2362), + [anon_sym_false] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2362), + [aux_sym__val_number_decimal_token2] = ACTIONS(2362), + [anon_sym_DOT2] = ACTIONS(2362), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2362), + [anon_sym_0o] = ACTIONS(2362), + [anon_sym_0x] = ACTIONS(2362), + [sym_val_date] = 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_CARET] = ACTIONS(2362), + [aux_sym_unquoted_token2] = ACTIONS(2362), [anon_sym_POUND] = ACTIONS(113), }, - [1130] = { - [sym_comment] = STATE(1130), - [anon_sym_export] = ACTIONS(2547), - [anon_sym_alias] = ACTIONS(2547), - [anon_sym_let] = ACTIONS(2547), - [anon_sym_let_DASHenv] = ACTIONS(2547), - [anon_sym_mut] = ACTIONS(2547), - [anon_sym_const] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [sym_cmd_identifier] = ACTIONS(2547), - [anon_sym_LF] = ACTIONS(2549), - [anon_sym_def] = ACTIONS(2547), - [anon_sym_export_DASHenv] = ACTIONS(2547), - [anon_sym_extern] = ACTIONS(2547), - [anon_sym_module] = ACTIONS(2547), - [anon_sym_use] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_RPAREN] = ACTIONS(2547), - [anon_sym_DOLLAR] = ACTIONS(2547), - [anon_sym_error] = ACTIONS(2547), - [anon_sym_DASH_DASH] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_break] = ACTIONS(2547), - [anon_sym_continue] = ACTIONS(2547), - [anon_sym_for] = ACTIONS(2547), - [anon_sym_loop] = ACTIONS(2547), - [anon_sym_while] = ACTIONS(2547), - [anon_sym_do] = ACTIONS(2547), - [anon_sym_if] = ACTIONS(2547), - [anon_sym_match] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2547), - [anon_sym_RBRACE] = ACTIONS(2547), - [anon_sym_DOT_DOT] = ACTIONS(2547), - [anon_sym_try] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2547), - [anon_sym_source] = ACTIONS(2547), - [anon_sym_source_DASHenv] = ACTIONS(2547), - [anon_sym_register] = ACTIONS(2547), - [anon_sym_hide] = ACTIONS(2547), - [anon_sym_hide_DASHenv] = ACTIONS(2547), - [anon_sym_overlay] = ACTIONS(2547), - [anon_sym_as] = ACTIONS(2547), - [anon_sym_where] = ACTIONS(2547), - [anon_sym_not] = ACTIONS(2547), - [anon_sym_LPAREN2] = ACTIONS(2549), - [anon_sym_DOT_DOT2] = ACTIONS(2547), - [anon_sym_DOT] = ACTIONS(2547), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), - [anon_sym_DOT_DOT_LT] = ACTIONS(2547), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2549), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2549), - [aux_sym__immediate_decimal_token2] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2547), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [aux_sym__val_number_decimal_token1] = ACTIONS(2547), - [aux_sym__val_number_decimal_token2] = ACTIONS(2547), - [anon_sym_DOT2] = ACTIONS(2547), - [aux_sym__val_number_decimal_token3] = ACTIONS(2547), - [aux_sym__val_number_token1] = ACTIONS(2547), - [aux_sym__val_number_token2] = ACTIONS(2547), - [aux_sym__val_number_token3] = ACTIONS(2547), - [aux_sym__val_number_token4] = ACTIONS(2547), - [aux_sym__val_number_token5] = ACTIONS(2547), - [aux_sym__val_number_token6] = ACTIONS(2547), - [anon_sym_0b] = ACTIONS(2547), - [anon_sym_0o] = ACTIONS(2547), - [anon_sym_0x] = ACTIONS(2547), - [sym_val_date] = ACTIONS(2547), - [anon_sym_DQUOTE] = ACTIONS(2547), - [sym__str_single_quotes] = ACTIONS(2547), - [sym__str_back_ticks] = ACTIONS(2547), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2547), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2547), - [aux_sym_unquoted_token2] = ACTIONS(2547), + [1360] = { + [sym_comment] = STATE(1360), + [ts_builtin_sym_end] = ACTIONS(2404), + [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), + [anon_sym_SEMI] = ACTIONS(2402), + [sym_cmd_identifier] = ACTIONS(2402), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2402), + [anon_sym_LPAREN] = ACTIONS(2402), + [anon_sym_DOLLAR] = ACTIONS(2402), + [anon_sym_error] = ACTIONS(2402), + [anon_sym_DASH_DASH] = ACTIONS(2402), + [anon_sym_DASH] = ACTIONS(2402), + [anon_sym_break] = ACTIONS(2402), + [anon_sym_continue] = ACTIONS(2402), + [anon_sym_for] = ACTIONS(2402), + [anon_sym_loop] = ACTIONS(2402), + [anon_sym_while] = ACTIONS(2402), + [anon_sym_do] = ACTIONS(2402), + [anon_sym_if] = ACTIONS(2402), + [anon_sym_match] = ACTIONS(2402), + [anon_sym_LBRACE] = ACTIONS(2402), + [anon_sym_DOT_DOT] = ACTIONS(2402), + [anon_sym_try] = 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_where] = ACTIONS(2402), + [anon_sym_not] = ACTIONS(2402), + [anon_sym_DOT] = ACTIONS(2402), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2402), + [anon_sym_DOT_DOT_LT] = ACTIONS(2402), + [anon_sym_null] = ACTIONS(2402), + [anon_sym_true] = ACTIONS(2402), + [anon_sym_false] = ACTIONS(2402), + [aux_sym__val_number_decimal_token1] = ACTIONS(2402), + [aux_sym__val_number_decimal_token2] = ACTIONS(2402), + [anon_sym_DOT2] = ACTIONS(2402), + [aux_sym__val_number_decimal_token3] = ACTIONS(2402), + [aux_sym__val_number_token1] = ACTIONS(2402), + [aux_sym__val_number_token2] = ACTIONS(2402), + [aux_sym__val_number_token3] = ACTIONS(2402), + [aux_sym__val_number_token4] = ACTIONS(2402), + [aux_sym__val_number_token5] = ACTIONS(2402), + [aux_sym__val_number_token6] = ACTIONS(2402), + [anon_sym_0b] = ACTIONS(2402), + [anon_sym_0o] = ACTIONS(2402), + [anon_sym_0x] = ACTIONS(2402), + [sym_val_date] = 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_CARET] = ACTIONS(2402), + [aux_sym_unquoted_token2] = ACTIONS(2402), [anon_sym_POUND] = ACTIONS(113), }, - [1131] = { - [sym_comment] = STATE(1131), - [anon_sym_LBRACK] = ACTIONS(919), - [anon_sym_COMMA] = ACTIONS(919), - [anon_sym_RBRACK] = ACTIONS(919), - [anon_sym_LPAREN] = ACTIONS(919), - [anon_sym_DOLLAR] = ACTIONS(919), - [anon_sym_GT] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(919), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_in] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(919), - [anon_sym_DOT_DOT] = ACTIONS(917), - [anon_sym_STAR] = ACTIONS(917), - [anon_sym_STAR_STAR] = ACTIONS(919), - [anon_sym_PLUS_PLUS] = ACTIONS(919), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_mod] = ACTIONS(919), - [anon_sym_SLASH_SLASH] = ACTIONS(919), - [anon_sym_PLUS] = ACTIONS(917), - [anon_sym_bit_DASHshl] = ACTIONS(919), - [anon_sym_bit_DASHshr] = ACTIONS(919), - [anon_sym_EQ_EQ] = ACTIONS(919), - [anon_sym_BANG_EQ] = ACTIONS(919), - [anon_sym_LT2] = ACTIONS(917), - [anon_sym_LT_EQ] = ACTIONS(919), - [anon_sym_GT_EQ] = ACTIONS(919), - [anon_sym_not_DASHin] = ACTIONS(919), - [anon_sym_starts_DASHwith] = ACTIONS(919), - [anon_sym_ends_DASHwith] = ACTIONS(919), - [anon_sym_EQ_TILDE] = ACTIONS(919), - [anon_sym_BANG_TILDE] = ACTIONS(919), - [anon_sym_bit_DASHand] = ACTIONS(919), - [anon_sym_bit_DASHxor] = ACTIONS(919), - [anon_sym_bit_DASHor] = ACTIONS(919), - [anon_sym_and] = ACTIONS(919), - [anon_sym_xor] = ACTIONS(919), - [anon_sym_or] = ACTIONS(919), - [anon_sym_DOT_DOT2] = ACTIONS(917), - [anon_sym_DOT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ] = ACTIONS(917), - [anon_sym_DOT_DOT_LT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(919), - [anon_sym_DOT_DOT_LT2] = ACTIONS(919), - [aux_sym__immediate_decimal_token2] = ACTIONS(2553), - [anon_sym_null] = ACTIONS(919), - [anon_sym_true] = ACTIONS(919), - [anon_sym_false] = ACTIONS(919), - [aux_sym__val_number_decimal_token1] = ACTIONS(917), - [aux_sym__val_number_decimal_token2] = ACTIONS(919), - [anon_sym_DOT2] = ACTIONS(917), - [aux_sym__val_number_decimal_token3] = ACTIONS(919), - [aux_sym__val_number_token1] = ACTIONS(919), - [aux_sym__val_number_token2] = ACTIONS(919), - [aux_sym__val_number_token3] = ACTIONS(919), - [aux_sym__val_number_token4] = ACTIONS(919), - [aux_sym__val_number_token5] = ACTIONS(919), - [aux_sym__val_number_token6] = ACTIONS(919), - [anon_sym_0b] = ACTIONS(917), - [sym_filesize_unit] = ACTIONS(917), - [sym_duration_unit] = ACTIONS(919), - [anon_sym_0o] = ACTIONS(917), - [anon_sym_0x] = ACTIONS(917), - [sym_val_date] = ACTIONS(919), - [anon_sym_DQUOTE] = ACTIONS(919), - [sym__str_single_quotes] = ACTIONS(919), - [sym__str_back_ticks] = ACTIONS(919), - [anon_sym_err_GT] = ACTIONS(919), - [anon_sym_out_GT] = ACTIONS(919), - [anon_sym_e_GT] = ACTIONS(919), - [anon_sym_o_GT] = ACTIONS(919), - [anon_sym_err_PLUSout_GT] = ACTIONS(919), - [anon_sym_out_PLUSerr_GT] = ACTIONS(919), - [anon_sym_o_PLUSe_GT] = ACTIONS(919), - [anon_sym_e_PLUSo_GT] = ACTIONS(919), - [aux_sym_unquoted_token5] = ACTIONS(917), - [aux_sym__unquoted_in_list_token1] = ACTIONS(917), - [anon_sym_POUND] = ACTIONS(3), - }, - [1132] = { - [sym__expr_parenthesized_immediate] = STATE(1641), - [sym__immediate_decimal] = STATE(1676), - [sym_val_variable] = STATE(1641), - [sym__var] = STATE(1295), - [sym_comment] = STATE(1132), - [anon_sym_export] = ACTIONS(1920), - [anon_sym_alias] = ACTIONS(1920), - [anon_sym_let] = ACTIONS(1920), - [anon_sym_let_DASHenv] = ACTIONS(1920), - [anon_sym_mut] = ACTIONS(1920), - [anon_sym_const] = ACTIONS(1920), - [anon_sym_SEMI] = ACTIONS(1920), - [sym_cmd_identifier] = ACTIONS(1920), - [anon_sym_LF] = ACTIONS(1922), - [anon_sym_def] = ACTIONS(1920), - [anon_sym_export_DASHenv] = ACTIONS(1920), - [anon_sym_extern] = ACTIONS(1920), - [anon_sym_module] = ACTIONS(1920), - [anon_sym_use] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1920), - [anon_sym_RPAREN] = ACTIONS(1920), - [anon_sym_DOLLAR] = ACTIONS(2555), - [anon_sym_error] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1920), - [anon_sym_break] = ACTIONS(1920), - [anon_sym_continue] = ACTIONS(1920), - [anon_sym_for] = ACTIONS(1920), - [anon_sym_loop] = ACTIONS(1920), - [anon_sym_while] = ACTIONS(1920), - [anon_sym_do] = ACTIONS(1920), - [anon_sym_if] = ACTIONS(1920), - [anon_sym_match] = ACTIONS(1920), - [anon_sym_LBRACE] = ACTIONS(1920), - [anon_sym_RBRACE] = ACTIONS(1920), - [anon_sym_DOT_DOT] = ACTIONS(1920), - [anon_sym_try] = ACTIONS(1920), - [anon_sym_return] = ACTIONS(1920), - [anon_sym_source] = ACTIONS(1920), - [anon_sym_source_DASHenv] = ACTIONS(1920), - [anon_sym_register] = ACTIONS(1920), - [anon_sym_hide] = ACTIONS(1920), - [anon_sym_hide_DASHenv] = ACTIONS(1920), - [anon_sym_overlay] = ACTIONS(1920), - [anon_sym_where] = ACTIONS(1920), - [anon_sym_not] = ACTIONS(1920), - [anon_sym_LPAREN2] = ACTIONS(2557), - [anon_sym_DOT] = ACTIONS(2559), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1920), - [anon_sym_DOT_DOT_LT] = ACTIONS(1920), - [aux_sym__immediate_decimal_token1] = ACTIONS(2561), - [aux_sym__immediate_decimal_token3] = ACTIONS(2561), - [aux_sym__immediate_decimal_token4] = ACTIONS(2563), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_true] = ACTIONS(1920), - [anon_sym_false] = ACTIONS(1920), - [aux_sym__val_number_decimal_token1] = ACTIONS(1920), - [aux_sym__val_number_decimal_token2] = ACTIONS(1920), - [anon_sym_DOT2] = ACTIONS(1920), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_token1] = ACTIONS(1920), - [aux_sym__val_number_token2] = ACTIONS(1920), - [aux_sym__val_number_token3] = ACTIONS(1920), - [aux_sym__val_number_token4] = ACTIONS(1920), - [aux_sym__val_number_token5] = ACTIONS(1920), - [aux_sym__val_number_token6] = ACTIONS(1920), - [anon_sym_0b] = ACTIONS(1920), - [anon_sym_0o] = ACTIONS(1920), - [anon_sym_0x] = ACTIONS(1920), - [sym_val_date] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym__str_single_quotes] = ACTIONS(1920), - [sym__str_back_ticks] = ACTIONS(1920), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1920), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1920), - [anon_sym_CARET] = ACTIONS(1920), + [1361] = { + [sym_comment] = STATE(1361), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_COMMA] = ACTIONS(1139), + [anon_sym_RBRACK] = ACTIONS(1139), + [anon_sym_LPAREN] = ACTIONS(1139), + [anon_sym_DOLLAR] = ACTIONS(1139), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_DASH_DASH] = ACTIONS(1139), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_in] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1139), + [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_STAR_STAR] = ACTIONS(1139), + [anon_sym_PLUS_PLUS] = ACTIONS(1139), + [anon_sym_SLASH] = ACTIONS(1139), + [anon_sym_mod] = ACTIONS(1139), + [anon_sym_SLASH_SLASH] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_bit_DASHshl] = ACTIONS(1139), + [anon_sym_bit_DASHshr] = ACTIONS(1139), + [anon_sym_EQ_EQ] = ACTIONS(1139), + [anon_sym_BANG_EQ] = ACTIONS(1139), + [anon_sym_LT2] = ACTIONS(1139), + [anon_sym_LT_EQ] = ACTIONS(1139), + [anon_sym_GT_EQ] = ACTIONS(1139), + [anon_sym_not_DASHin] = ACTIONS(1139), + [anon_sym_starts_DASHwith] = ACTIONS(1139), + [anon_sym_ends_DASHwith] = ACTIONS(1139), + [anon_sym_EQ_TILDE] = ACTIONS(1139), + [anon_sym_BANG_TILDE] = ACTIONS(1139), + [anon_sym_bit_DASHand] = ACTIONS(1139), + [anon_sym_bit_DASHxor] = ACTIONS(1139), + [anon_sym_bit_DASHor] = ACTIONS(1139), + [anon_sym_and] = ACTIONS(1139), + [anon_sym_xor] = ACTIONS(1139), + [anon_sym_or] = ACTIONS(1139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1139), + [anon_sym_DOT_DOT_LT] = ACTIONS(1139), + [anon_sym_null] = ACTIONS(1139), + [anon_sym_true] = ACTIONS(1139), + [anon_sym_false] = ACTIONS(1139), + [aux_sym__val_number_decimal_token1] = ACTIONS(1139), + [aux_sym__val_number_decimal_token2] = ACTIONS(1139), + [anon_sym_DOT2] = ACTIONS(1139), + [aux_sym__val_number_decimal_token3] = ACTIONS(1139), + [aux_sym__val_number_token1] = ACTIONS(1139), + [aux_sym__val_number_token2] = ACTIONS(1139), + [aux_sym__val_number_token3] = ACTIONS(1139), + [aux_sym__val_number_token4] = ACTIONS(1139), + [aux_sym__val_number_token5] = ACTIONS(1139), + [aux_sym__val_number_token6] = ACTIONS(1139), + [anon_sym_0b] = ACTIONS(1139), + [anon_sym_0o] = ACTIONS(1139), + [anon_sym_0x] = ACTIONS(1139), + [sym_val_date] = ACTIONS(1139), + [anon_sym_DQUOTE] = ACTIONS(1139), + [sym__str_single_quotes] = ACTIONS(1139), + [sym__str_back_ticks] = ACTIONS(1139), + [aux_sym__list_item_starts_with_sign_token1] = ACTIONS(4767), + [sym__entry_separator] = ACTIONS(1139), + [anon_sym_err_GT] = ACTIONS(1139), + [anon_sym_out_GT] = ACTIONS(1139), + [anon_sym_e_GT] = ACTIONS(1139), + [anon_sym_o_GT] = ACTIONS(1139), + [anon_sym_err_PLUSout_GT] = ACTIONS(1139), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1139), + [anon_sym_o_PLUSe_GT] = ACTIONS(1139), + [anon_sym_e_PLUSo_GT] = ACTIONS(1139), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1139), [anon_sym_POUND] = ACTIONS(113), }, - [1133] = { - [sym_comment] = STATE(1133), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_COMMA] = ACTIONS(909), - [anon_sym_RBRACK] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_DOT_DOT] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(909), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(909), - [anon_sym_SLASH_SLASH] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(909), - [anon_sym_bit_DASHshr] = ACTIONS(909), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_not_DASHin] = ACTIONS(909), - [anon_sym_starts_DASHwith] = ACTIONS(909), - [anon_sym_ends_DASHwith] = ACTIONS(909), - [anon_sym_EQ_TILDE] = ACTIONS(909), - [anon_sym_BANG_TILDE] = ACTIONS(909), - [anon_sym_bit_DASHand] = ACTIONS(909), - [anon_sym_bit_DASHxor] = ACTIONS(909), - [anon_sym_bit_DASHor] = ACTIONS(909), - [anon_sym_and] = ACTIONS(909), - [anon_sym_xor] = ACTIONS(909), - [anon_sym_or] = ACTIONS(909), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [anon_sym_null] = ACTIONS(909), - [anon_sym_true] = ACTIONS(909), - [anon_sym_false] = ACTIONS(909), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(909), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(909), - [aux_sym__val_number_token1] = ACTIONS(909), - [aux_sym__val_number_token2] = ACTIONS(909), - [aux_sym__val_number_token3] = ACTIONS(909), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(909), - [aux_sym__val_number_token6] = ACTIONS(909), - [anon_sym_0b] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(911), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym__str_single_quotes] = ACTIONS(909), - [sym__str_back_ticks] = ACTIONS(909), - [sym__entry_separator] = ACTIONS(911), - [anon_sym_err_GT] = ACTIONS(909), - [anon_sym_out_GT] = ACTIONS(909), - [anon_sym_e_GT] = ACTIONS(909), - [anon_sym_o_GT] = ACTIONS(909), - [anon_sym_err_PLUSout_GT] = ACTIONS(909), - [anon_sym_out_PLUSerr_GT] = ACTIONS(909), - [anon_sym_o_PLUSe_GT] = ACTIONS(909), - [anon_sym_e_PLUSo_GT] = ACTIONS(909), - [aux_sym_unquoted_token5] = ACTIONS(909), - [aux_sym__unquoted_in_list_token1] = ACTIONS(909), + [1362] = { + [sym_comment] = STATE(1362), + [ts_builtin_sym_end] = ACTIONS(3314), + [anon_sym_export] = ACTIONS(3312), + [anon_sym_alias] = ACTIONS(3312), + [anon_sym_let] = ACTIONS(3312), + [anon_sym_let_DASHenv] = ACTIONS(3312), + [anon_sym_mut] = ACTIONS(3312), + [anon_sym_const] = ACTIONS(3312), + [anon_sym_SEMI] = ACTIONS(3312), + [sym_cmd_identifier] = ACTIONS(3312), + [anon_sym_LF] = ACTIONS(3314), + [anon_sym_def] = ACTIONS(3312), + [anon_sym_export_DASHenv] = ACTIONS(3312), + [anon_sym_extern] = ACTIONS(3312), + [anon_sym_module] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3312), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3312), + [anon_sym_error] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [anon_sym_DASH] = ACTIONS(3312), + [anon_sym_break] = ACTIONS(3312), + [anon_sym_continue] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3312), + [anon_sym_loop] = ACTIONS(3312), + [anon_sym_while] = ACTIONS(3312), + [anon_sym_do] = ACTIONS(3312), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_match] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_DOT_DOT] = ACTIONS(3312), + [anon_sym_try] = ACTIONS(3312), + [anon_sym_return] = ACTIONS(3312), + [anon_sym_source] = ACTIONS(3312), + [anon_sym_source_DASHenv] = ACTIONS(3312), + [anon_sym_register] = ACTIONS(3312), + [anon_sym_hide] = ACTIONS(3312), + [anon_sym_hide_DASHenv] = ACTIONS(3312), + [anon_sym_overlay] = ACTIONS(3312), + [anon_sym_as] = ACTIONS(3312), + [anon_sym_where] = ACTIONS(3312), + [anon_sym_not] = ACTIONS(3312), + [anon_sym_DOT] = ACTIONS(1844), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3312), + [anon_sym_DOT_DOT_LT] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3312), + [anon_sym_true] = ACTIONS(3312), + [anon_sym_false] = ACTIONS(3312), + [aux_sym__val_number_decimal_token1] = ACTIONS(3312), + [aux_sym__val_number_decimal_token2] = ACTIONS(3312), + [anon_sym_DOT2] = ACTIONS(3312), + [aux_sym__val_number_decimal_token3] = ACTIONS(3312), + [aux_sym__val_number_token1] = ACTIONS(3312), + [aux_sym__val_number_token2] = ACTIONS(3312), + [aux_sym__val_number_token3] = ACTIONS(3312), + [aux_sym__val_number_token4] = ACTIONS(3312), + [aux_sym__val_number_token5] = ACTIONS(3312), + [aux_sym__val_number_token6] = ACTIONS(3312), + [anon_sym_0b] = ACTIONS(3312), + [anon_sym_0o] = ACTIONS(3312), + [anon_sym_0x] = ACTIONS(3312), + [sym_val_date] = ACTIONS(3312), + [anon_sym_DQUOTE] = ACTIONS(3312), + [sym__str_single_quotes] = ACTIONS(3312), + [sym__str_back_ticks] = ACTIONS(3312), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3312), + [anon_sym_CARET] = ACTIONS(3312), + [aux_sym_unquoted_token2] = ACTIONS(1844), [anon_sym_POUND] = ACTIONS(113), }, - [1134] = { - [sym__expr_parenthesized_immediate] = STATE(2714), - [sym__immediate_decimal] = STATE(2748), - [sym_val_variable] = STATE(2714), - [sym__var] = STATE(1690), - [sym_comment] = STATE(1134), - [anon_sym_export] = ACTIONS(1920), - [anon_sym_alias] = ACTIONS(1920), - [anon_sym_let] = ACTIONS(1920), - [anon_sym_let_DASHenv] = ACTIONS(1920), - [anon_sym_mut] = ACTIONS(1920), - [anon_sym_const] = ACTIONS(1920), - [anon_sym_SEMI] = ACTIONS(1920), - [sym_cmd_identifier] = ACTIONS(1920), - [anon_sym_LF] = ACTIONS(1922), - [anon_sym_def] = ACTIONS(1920), - [anon_sym_export_DASHenv] = ACTIONS(1920), - [anon_sym_extern] = ACTIONS(1920), - [anon_sym_module] = ACTIONS(1920), - [anon_sym_use] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1920), - [anon_sym_RPAREN] = ACTIONS(1920), - [anon_sym_DOLLAR] = ACTIONS(2565), - [anon_sym_error] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1920), - [anon_sym_break] = ACTIONS(1920), - [anon_sym_continue] = ACTIONS(1920), - [anon_sym_for] = ACTIONS(1920), - [anon_sym_loop] = ACTIONS(1920), - [anon_sym_while] = ACTIONS(1920), - [anon_sym_do] = ACTIONS(1920), - [anon_sym_if] = ACTIONS(1920), - [anon_sym_match] = ACTIONS(1920), - [anon_sym_LBRACE] = ACTIONS(1920), - [anon_sym_RBRACE] = ACTIONS(1920), - [anon_sym_DOT_DOT] = ACTIONS(1920), - [anon_sym_try] = ACTIONS(1920), - [anon_sym_return] = ACTIONS(1920), - [anon_sym_source] = ACTIONS(1920), - [anon_sym_source_DASHenv] = ACTIONS(1920), - [anon_sym_register] = ACTIONS(1920), - [anon_sym_hide] = ACTIONS(1920), - [anon_sym_hide_DASHenv] = ACTIONS(1920), - [anon_sym_overlay] = ACTIONS(1920), - [anon_sym_where] = ACTIONS(1920), - [anon_sym_not] = ACTIONS(1920), - [anon_sym_LPAREN2] = ACTIONS(2567), - [anon_sym_DOT] = ACTIONS(2569), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1920), - [anon_sym_DOT_DOT_LT] = ACTIONS(1920), - [aux_sym__immediate_decimal_token1] = ACTIONS(2571), - [aux_sym__immediate_decimal_token3] = ACTIONS(2571), - [aux_sym__immediate_decimal_token4] = ACTIONS(2573), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_true] = ACTIONS(1920), - [anon_sym_false] = ACTIONS(1920), - [aux_sym__val_number_decimal_token1] = ACTIONS(1920), - [aux_sym__val_number_decimal_token2] = ACTIONS(1920), - [anon_sym_DOT2] = ACTIONS(1920), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_token1] = ACTIONS(1920), - [aux_sym__val_number_token2] = ACTIONS(1920), - [aux_sym__val_number_token3] = ACTIONS(1920), - [aux_sym__val_number_token4] = ACTIONS(1920), - [aux_sym__val_number_token5] = ACTIONS(1920), - [aux_sym__val_number_token6] = ACTIONS(1920), - [anon_sym_0b] = ACTIONS(1920), - [anon_sym_0o] = ACTIONS(1920), - [anon_sym_0x] = ACTIONS(1920), - [sym_val_date] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym__str_single_quotes] = ACTIONS(1920), - [sym__str_back_ticks] = ACTIONS(1920), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1920), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1920), - [anon_sym_CARET] = ACTIONS(1920), + [1363] = { + [sym_comment] = STATE(1363), + [ts_builtin_sym_end] = ACTIONS(1026), + [anon_sym_export] = ACTIONS(1024), + [anon_sym_alias] = ACTIONS(1024), + [anon_sym_let] = ACTIONS(1024), + [anon_sym_let_DASHenv] = ACTIONS(1024), + [anon_sym_mut] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1024), + [sym_cmd_identifier] = ACTIONS(1024), + [anon_sym_LF] = ACTIONS(1026), + [anon_sym_def] = ACTIONS(1024), + [anon_sym_export_DASHenv] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1024), + [anon_sym_module] = ACTIONS(1024), + [anon_sym_use] = ACTIONS(1024), + [anon_sym_LBRACK] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_error] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_loop] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_match] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym_DOT_DOT] = ACTIONS(1024), + [anon_sym_try] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_source] = ACTIONS(1024), + [anon_sym_source_DASHenv] = ACTIONS(1024), + [anon_sym_register] = ACTIONS(1024), + [anon_sym_hide] = ACTIONS(1024), + [anon_sym_hide_DASHenv] = ACTIONS(1024), + [anon_sym_overlay] = ACTIONS(1024), + [anon_sym_as] = ACTIONS(1024), + [anon_sym_where] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(4765), + [anon_sym_not] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT] = ACTIONS(1024), + [anon_sym_null] = ACTIONS(1024), + [anon_sym_true] = ACTIONS(1024), + [anon_sym_false] = ACTIONS(1024), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1024), + [aux_sym__val_number_token1] = ACTIONS(1024), + [aux_sym__val_number_token2] = ACTIONS(1024), + [aux_sym__val_number_token3] = ACTIONS(1024), + [aux_sym__val_number_token4] = ACTIONS(1024), + [aux_sym__val_number_token5] = ACTIONS(1024), + [aux_sym__val_number_token6] = ACTIONS(1024), + [anon_sym_0b] = ACTIONS(1024), + [anon_sym_0o] = ACTIONS(1024), + [anon_sym_0x] = ACTIONS(1024), + [sym_val_date] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym__str_single_quotes] = ACTIONS(1024), + [sym__str_back_ticks] = ACTIONS(1024), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1024), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1024), + [anon_sym_CARET] = ACTIONS(1024), [anon_sym_POUND] = ACTIONS(113), }, - [1135] = { - [sym_comment] = STATE(1135), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_COMMA] = ACTIONS(917), - [anon_sym_RBRACK] = ACTIONS(917), - [anon_sym_LPAREN] = ACTIONS(917), - [anon_sym_DOLLAR] = ACTIONS(917), - [anon_sym_GT] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_in] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(917), - [anon_sym_DOT_DOT] = ACTIONS(917), - [anon_sym_STAR] = ACTIONS(917), - [anon_sym_STAR_STAR] = ACTIONS(917), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_mod] = ACTIONS(917), - [anon_sym_SLASH_SLASH] = ACTIONS(917), - [anon_sym_PLUS] = ACTIONS(917), - [anon_sym_bit_DASHshl] = ACTIONS(917), - [anon_sym_bit_DASHshr] = ACTIONS(917), - [anon_sym_EQ_EQ] = ACTIONS(917), - [anon_sym_BANG_EQ] = ACTIONS(917), - [anon_sym_LT2] = ACTIONS(917), - [anon_sym_LT_EQ] = ACTIONS(917), - [anon_sym_GT_EQ] = ACTIONS(917), - [anon_sym_not_DASHin] = ACTIONS(917), - [anon_sym_starts_DASHwith] = ACTIONS(917), - [anon_sym_ends_DASHwith] = ACTIONS(917), - [anon_sym_EQ_TILDE] = ACTIONS(917), - [anon_sym_BANG_TILDE] = ACTIONS(917), - [anon_sym_bit_DASHand] = ACTIONS(917), - [anon_sym_bit_DASHxor] = ACTIONS(917), - [anon_sym_bit_DASHor] = ACTIONS(917), - [anon_sym_and] = ACTIONS(917), - [anon_sym_xor] = ACTIONS(917), - [anon_sym_or] = ACTIONS(917), - [anon_sym_DOT_DOT2] = ACTIONS(917), - [anon_sym_DOT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ] = ACTIONS(917), - [anon_sym_DOT_DOT_LT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(919), - [anon_sym_DOT_DOT_LT2] = ACTIONS(919), - [anon_sym_null] = ACTIONS(917), - [anon_sym_true] = ACTIONS(917), - [anon_sym_false] = ACTIONS(917), - [aux_sym__val_number_decimal_token1] = ACTIONS(917), - [aux_sym__val_number_decimal_token2] = ACTIONS(917), - [anon_sym_DOT2] = ACTIONS(917), - [aux_sym__val_number_decimal_token3] = ACTIONS(917), - [aux_sym__val_number_token1] = ACTIONS(917), - [aux_sym__val_number_token2] = ACTIONS(917), - [aux_sym__val_number_token3] = ACTIONS(917), - [aux_sym__val_number_token4] = ACTIONS(917), - [aux_sym__val_number_token5] = ACTIONS(917), - [aux_sym__val_number_token6] = ACTIONS(917), - [anon_sym_0b] = ACTIONS(917), - [sym_filesize_unit] = ACTIONS(917), - [sym_duration_unit] = ACTIONS(919), - [anon_sym_0o] = ACTIONS(917), - [anon_sym_0x] = ACTIONS(917), - [sym_val_date] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(917), - [sym__str_single_quotes] = ACTIONS(917), - [sym__str_back_ticks] = ACTIONS(917), - [sym__entry_separator] = ACTIONS(919), - [anon_sym_err_GT] = ACTIONS(917), - [anon_sym_out_GT] = ACTIONS(917), - [anon_sym_e_GT] = ACTIONS(917), - [anon_sym_o_GT] = ACTIONS(917), - [anon_sym_err_PLUSout_GT] = ACTIONS(917), - [anon_sym_out_PLUSerr_GT] = ACTIONS(917), - [anon_sym_o_PLUSe_GT] = ACTIONS(917), - [anon_sym_e_PLUSo_GT] = ACTIONS(917), - [aux_sym_unquoted_token5] = ACTIONS(917), - [aux_sym__unquoted_in_list_token1] = ACTIONS(917), + [1364] = { + [sym_comment] = STATE(1364), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_COMMA] = ACTIONS(1089), + [anon_sym_RBRACK] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1089), + [anon_sym_GT] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_DASH] = ACTIONS(1089), + [anon_sym_in] = ACTIONS(1089), + [anon_sym_LBRACE] = ACTIONS(1089), + [anon_sym_DOT_DOT] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_STAR_STAR] = ACTIONS(1089), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_SLASH] = ACTIONS(1089), + [anon_sym_mod] = ACTIONS(1089), + [anon_sym_SLASH_SLASH] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1089), + [anon_sym_bit_DASHshl] = ACTIONS(1089), + [anon_sym_bit_DASHshr] = ACTIONS(1089), + [anon_sym_EQ_EQ] = ACTIONS(1089), + [anon_sym_BANG_EQ] = ACTIONS(1089), + [anon_sym_LT2] = ACTIONS(1089), + [anon_sym_LT_EQ] = ACTIONS(1089), + [anon_sym_GT_EQ] = ACTIONS(1089), + [anon_sym_not_DASHin] = ACTIONS(1089), + [anon_sym_starts_DASHwith] = ACTIONS(1089), + [anon_sym_ends_DASHwith] = ACTIONS(1089), + [anon_sym_EQ_TILDE] = ACTIONS(1089), + [anon_sym_BANG_TILDE] = ACTIONS(1089), + [anon_sym_bit_DASHand] = ACTIONS(1089), + [anon_sym_bit_DASHxor] = ACTIONS(1089), + [anon_sym_bit_DASHor] = ACTIONS(1089), + [anon_sym_and] = ACTIONS(1089), + [anon_sym_xor] = ACTIONS(1089), + [anon_sym_or] = ACTIONS(1089), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_DOT_DOT_LT] = ACTIONS(1089), + [anon_sym_null] = ACTIONS(1089), + [anon_sym_true] = ACTIONS(1089), + [anon_sym_false] = ACTIONS(1089), + [aux_sym__val_number_decimal_token1] = ACTIONS(1089), + [aux_sym__val_number_decimal_token2] = ACTIONS(1089), + [anon_sym_DOT2] = ACTIONS(1089), + [aux_sym__val_number_decimal_token3] = ACTIONS(1089), + [aux_sym__val_number_token1] = ACTIONS(1089), + [aux_sym__val_number_token2] = ACTIONS(1089), + [aux_sym__val_number_token3] = ACTIONS(1089), + [aux_sym__val_number_token4] = ACTIONS(1089), + [aux_sym__val_number_token5] = ACTIONS(1089), + [aux_sym__val_number_token6] = ACTIONS(1089), + [anon_sym_0b] = ACTIONS(1089), + [anon_sym_0o] = ACTIONS(1089), + [anon_sym_0x] = ACTIONS(1089), + [sym_val_date] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1089), + [sym__str_single_quotes] = ACTIONS(1089), + [sym__str_back_ticks] = ACTIONS(1089), + [sym__entry_separator] = ACTIONS(1091), + [anon_sym_err_GT] = ACTIONS(1089), + [anon_sym_out_GT] = ACTIONS(1089), + [anon_sym_e_GT] = ACTIONS(1089), + [anon_sym_o_GT] = ACTIONS(1089), + [anon_sym_err_PLUSout_GT] = ACTIONS(1089), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1089), + [anon_sym_o_PLUSe_GT] = ACTIONS(1089), + [anon_sym_e_PLUSo_GT] = ACTIONS(1089), + [aux_sym_unquoted_token6] = ACTIONS(1149), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(113), }, - [1136] = { - [sym_comment] = STATE(1136), - [anon_sym_LBRACK] = ACTIONS(950), - [anon_sym_COMMA] = ACTIONS(950), - [anon_sym_RBRACK] = ACTIONS(950), - [anon_sym_LPAREN] = ACTIONS(950), - [anon_sym_DOLLAR] = ACTIONS(950), - [anon_sym_GT] = ACTIONS(950), - [anon_sym_DASH_DASH] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(950), - [anon_sym_in] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(950), - [anon_sym_DOT_DOT] = ACTIONS(950), - [anon_sym_STAR] = ACTIONS(950), - [anon_sym_STAR_STAR] = ACTIONS(950), - [anon_sym_PLUS_PLUS] = ACTIONS(950), - [anon_sym_SLASH] = ACTIONS(950), - [anon_sym_mod] = ACTIONS(950), - [anon_sym_SLASH_SLASH] = ACTIONS(950), - [anon_sym_PLUS] = ACTIONS(950), - [anon_sym_bit_DASHshl] = ACTIONS(950), - [anon_sym_bit_DASHshr] = ACTIONS(950), - [anon_sym_EQ_EQ] = ACTIONS(950), - [anon_sym_BANG_EQ] = ACTIONS(950), - [anon_sym_LT2] = ACTIONS(950), - [anon_sym_LT_EQ] = ACTIONS(950), - [anon_sym_GT_EQ] = ACTIONS(950), - [anon_sym_not_DASHin] = ACTIONS(950), - [anon_sym_starts_DASHwith] = ACTIONS(950), - [anon_sym_ends_DASHwith] = ACTIONS(950), - [anon_sym_EQ_TILDE] = ACTIONS(950), - [anon_sym_BANG_TILDE] = ACTIONS(950), - [anon_sym_bit_DASHand] = ACTIONS(950), - [anon_sym_bit_DASHxor] = ACTIONS(950), - [anon_sym_bit_DASHor] = ACTIONS(950), - [anon_sym_and] = ACTIONS(950), - [anon_sym_xor] = ACTIONS(950), - [anon_sym_or] = ACTIONS(950), - [anon_sym_DOT_DOT2] = ACTIONS(950), - [anon_sym_DOT] = 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(950), - [anon_sym_true] = ACTIONS(950), - [anon_sym_false] = ACTIONS(950), - [aux_sym__val_number_decimal_token1] = ACTIONS(950), - [aux_sym__val_number_decimal_token2] = ACTIONS(950), - [anon_sym_DOT2] = ACTIONS(950), - [aux_sym__val_number_decimal_token3] = ACTIONS(950), - [aux_sym__val_number_token1] = ACTIONS(950), - [aux_sym__val_number_token2] = ACTIONS(950), - [aux_sym__val_number_token3] = ACTIONS(950), - [aux_sym__val_number_token4] = ACTIONS(950), - [aux_sym__val_number_token5] = ACTIONS(950), - [aux_sym__val_number_token6] = ACTIONS(950), - [anon_sym_0b] = ACTIONS(950), - [sym_filesize_unit] = ACTIONS(950), - [sym_duration_unit] = ACTIONS(952), - [anon_sym_0o] = ACTIONS(950), - [anon_sym_0x] = ACTIONS(950), - [sym_val_date] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym__str_single_quotes] = ACTIONS(950), - [sym__str_back_ticks] = ACTIONS(950), - [sym__entry_separator] = ACTIONS(952), - [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), - [aux_sym_unquoted_token5] = ACTIONS(950), - [aux_sym__unquoted_in_list_token1] = ACTIONS(950), + [1365] = { + [sym_comment] = STATE(1365), + [ts_builtin_sym_end] = ACTIONS(3356), + [anon_sym_export] = ACTIONS(3354), + [anon_sym_alias] = ACTIONS(3354), + [anon_sym_let] = ACTIONS(3354), + [anon_sym_let_DASHenv] = ACTIONS(3354), + [anon_sym_mut] = ACTIONS(3354), + [anon_sym_const] = ACTIONS(3354), + [anon_sym_SEMI] = ACTIONS(3354), + [sym_cmd_identifier] = ACTIONS(3354), + [anon_sym_LF] = ACTIONS(3356), + [anon_sym_def] = ACTIONS(3354), + [anon_sym_export_DASHenv] = ACTIONS(3354), + [anon_sym_extern] = ACTIONS(3354), + [anon_sym_module] = ACTIONS(3354), + [anon_sym_use] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3354), + [anon_sym_DOLLAR] = ACTIONS(3354), + [anon_sym_error] = ACTIONS(3354), + [anon_sym_DASH_DASH] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_loop] = ACTIONS(3354), + [anon_sym_while] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_match] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3354), + [anon_sym_DOT_DOT] = ACTIONS(3354), + [anon_sym_try] = ACTIONS(3354), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_source] = ACTIONS(3354), + [anon_sym_source_DASHenv] = ACTIONS(3354), + [anon_sym_register] = ACTIONS(3354), + [anon_sym_hide] = ACTIONS(3354), + [anon_sym_hide_DASHenv] = ACTIONS(3354), + [anon_sym_overlay] = ACTIONS(3354), + [anon_sym_as] = ACTIONS(3354), + [anon_sym_where] = ACTIONS(3354), + [anon_sym_not] = ACTIONS(3354), + [anon_sym_DOT] = ACTIONS(3362), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3354), + [anon_sym_DOT_DOT_LT] = ACTIONS(3354), + [anon_sym_null] = ACTIONS(3354), + [anon_sym_true] = ACTIONS(3354), + [anon_sym_false] = ACTIONS(3354), + [aux_sym__val_number_decimal_token1] = ACTIONS(3354), + [aux_sym__val_number_decimal_token2] = ACTIONS(3354), + [anon_sym_DOT2] = ACTIONS(3354), + [aux_sym__val_number_decimal_token3] = ACTIONS(3354), + [aux_sym__val_number_token1] = ACTIONS(3354), + [aux_sym__val_number_token2] = ACTIONS(3354), + [aux_sym__val_number_token3] = ACTIONS(3354), + [aux_sym__val_number_token4] = ACTIONS(3354), + [aux_sym__val_number_token5] = ACTIONS(3354), + [aux_sym__val_number_token6] = ACTIONS(3354), + [anon_sym_0b] = ACTIONS(3354), + [anon_sym_0o] = ACTIONS(3354), + [anon_sym_0x] = ACTIONS(3354), + [sym_val_date] = ACTIONS(3354), + [anon_sym_DQUOTE] = ACTIONS(3354), + [sym__str_single_quotes] = ACTIONS(3354), + [sym__str_back_ticks] = ACTIONS(3354), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3354), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3354), + [anon_sym_CARET] = ACTIONS(3354), + [aux_sym_unquoted_token2] = ACTIONS(3362), [anon_sym_POUND] = ACTIONS(113), }, - [1137] = { - [sym__immediate_decimal] = STATE(9346), - [sym_comment] = STATE(1137), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_COMMA] = ACTIONS(936), - [anon_sym_RBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_STAR_STAR] = ACTIONS(936), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(936), - [anon_sym_SLASH_SLASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(936), - [anon_sym_bit_DASHshr] = ACTIONS(936), - [anon_sym_EQ_EQ] = ACTIONS(936), - [anon_sym_BANG_EQ] = ACTIONS(936), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(936), - [anon_sym_GT_EQ] = ACTIONS(936), - [anon_sym_not_DASHin] = ACTIONS(936), - [anon_sym_starts_DASHwith] = ACTIONS(936), - [anon_sym_ends_DASHwith] = ACTIONS(936), - [anon_sym_EQ_TILDE] = ACTIONS(936), - [anon_sym_BANG_TILDE] = ACTIONS(936), - [anon_sym_bit_DASHand] = ACTIONS(936), - [anon_sym_bit_DASHxor] = ACTIONS(936), - [anon_sym_bit_DASHor] = ACTIONS(936), - [anon_sym_and] = ACTIONS(936), - [anon_sym_xor] = ACTIONS(936), - [anon_sym_or] = ACTIONS(936), - [anon_sym_DOT] = ACTIONS(2575), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [aux_sym__immediate_decimal_token1] = ACTIONS(942), - [aux_sym__immediate_decimal_token3] = ACTIONS(942), - [aux_sym__immediate_decimal_token4] = ACTIONS(944), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [sym__entry_separator] = ACTIONS(938), - [anon_sym_err_GT] = ACTIONS(936), - [anon_sym_out_GT] = ACTIONS(936), - [anon_sym_e_GT] = ACTIONS(936), - [anon_sym_o_GT] = ACTIONS(936), - [anon_sym_err_PLUSout_GT] = ACTIONS(936), - [anon_sym_out_PLUSerr_GT] = ACTIONS(936), - [anon_sym_o_PLUSe_GT] = ACTIONS(936), - [anon_sym_e_PLUSo_GT] = ACTIONS(936), - [aux_sym_unquoted_token3] = ACTIONS(2577), - [aux_sym_unquoted_token5] = ACTIONS(2579), - [aux_sym__unquoted_in_list_token1] = ACTIONS(936), + [1366] = { + [sym_comment] = STATE(1366), + [ts_builtin_sym_end] = ACTIONS(3773), + [anon_sym_export] = ACTIONS(3771), + [anon_sym_alias] = ACTIONS(3771), + [anon_sym_let] = ACTIONS(3771), + [anon_sym_let_DASHenv] = ACTIONS(3771), + [anon_sym_mut] = ACTIONS(3771), + [anon_sym_const] = ACTIONS(3771), + [anon_sym_SEMI] = ACTIONS(3771), + [sym_cmd_identifier] = ACTIONS(3771), + [anon_sym_LF] = ACTIONS(3773), + [anon_sym_def] = ACTIONS(3771), + [anon_sym_export_DASHenv] = ACTIONS(3771), + [anon_sym_extern] = ACTIONS(3771), + [anon_sym_module] = ACTIONS(3771), + [anon_sym_use] = ACTIONS(3771), + [anon_sym_LBRACK] = ACTIONS(3771), + [anon_sym_LPAREN] = ACTIONS(3771), + [anon_sym_DOLLAR] = ACTIONS(3771), + [anon_sym_error] = ACTIONS(3771), + [anon_sym_DASH_DASH] = ACTIONS(3771), + [anon_sym_DASH] = ACTIONS(3771), + [anon_sym_break] = ACTIONS(3771), + [anon_sym_continue] = ACTIONS(3771), + [anon_sym_for] = ACTIONS(3771), + [anon_sym_loop] = ACTIONS(3771), + [anon_sym_while] = ACTIONS(3771), + [anon_sym_do] = ACTIONS(3771), + [anon_sym_if] = ACTIONS(3771), + [anon_sym_match] = ACTIONS(3771), + [anon_sym_LBRACE] = ACTIONS(3771), + [anon_sym_DOT_DOT] = ACTIONS(3771), + [anon_sym_try] = ACTIONS(3771), + [anon_sym_return] = ACTIONS(3771), + [anon_sym_source] = ACTIONS(3771), + [anon_sym_source_DASHenv] = ACTIONS(3771), + [anon_sym_register] = ACTIONS(3771), + [anon_sym_hide] = ACTIONS(3771), + [anon_sym_hide_DASHenv] = ACTIONS(3771), + [anon_sym_overlay] = ACTIONS(3771), + [anon_sym_as] = ACTIONS(3771), + [anon_sym_where] = ACTIONS(3771), + [anon_sym_not] = ACTIONS(3771), + [anon_sym_DOT] = ACTIONS(1886), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3771), + [anon_sym_DOT_DOT_LT] = ACTIONS(3771), + [anon_sym_null] = ACTIONS(3771), + [anon_sym_true] = ACTIONS(3771), + [anon_sym_false] = ACTIONS(3771), + [aux_sym__val_number_decimal_token1] = ACTIONS(3771), + [aux_sym__val_number_decimal_token2] = ACTIONS(3771), + [anon_sym_DOT2] = ACTIONS(3771), + [aux_sym__val_number_decimal_token3] = ACTIONS(3771), + [aux_sym__val_number_token1] = ACTIONS(3771), + [aux_sym__val_number_token2] = ACTIONS(3771), + [aux_sym__val_number_token3] = ACTIONS(3771), + [aux_sym__val_number_token4] = ACTIONS(3771), + [aux_sym__val_number_token5] = ACTIONS(3771), + [aux_sym__val_number_token6] = ACTIONS(3771), + [anon_sym_0b] = ACTIONS(3771), + [anon_sym_0o] = ACTIONS(3771), + [anon_sym_0x] = ACTIONS(3771), + [sym_val_date] = ACTIONS(3771), + [anon_sym_DQUOTE] = ACTIONS(3771), + [sym__str_single_quotes] = ACTIONS(3771), + [sym__str_back_ticks] = ACTIONS(3771), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3771), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3771), + [anon_sym_CARET] = ACTIONS(3771), + [aux_sym_unquoted_token2] = ACTIONS(1886), [anon_sym_POUND] = ACTIONS(113), }, - [1138] = { - [sym_comment] = STATE(1138), - [anon_sym_export] = ACTIONS(2581), - [anon_sym_alias] = ACTIONS(2581), - [anon_sym_let] = ACTIONS(2581), - [anon_sym_let_DASHenv] = ACTIONS(2581), - [anon_sym_mut] = ACTIONS(2581), - [anon_sym_const] = ACTIONS(2581), - [anon_sym_SEMI] = ACTIONS(2581), - [sym_cmd_identifier] = ACTIONS(2581), - [anon_sym_LF] = ACTIONS(2583), - [anon_sym_def] = ACTIONS(2581), - [anon_sym_export_DASHenv] = ACTIONS(2581), - [anon_sym_extern] = ACTIONS(2581), - [anon_sym_module] = ACTIONS(2581), - [anon_sym_use] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2581), - [anon_sym_RPAREN] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2581), - [anon_sym_error] = ACTIONS(2581), - [anon_sym_DASH_DASH] = ACTIONS(2581), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_break] = ACTIONS(2581), - [anon_sym_continue] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2581), - [anon_sym_loop] = ACTIONS(2581), - [anon_sym_while] = ACTIONS(2581), - [anon_sym_do] = ACTIONS(2581), - [anon_sym_if] = ACTIONS(2581), - [anon_sym_match] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2581), - [anon_sym_RBRACE] = ACTIONS(2581), - [anon_sym_DOT_DOT] = ACTIONS(2581), - [anon_sym_try] = ACTIONS(2581), - [anon_sym_return] = ACTIONS(2581), - [anon_sym_source] = ACTIONS(2581), - [anon_sym_source_DASHenv] = ACTIONS(2581), - [anon_sym_register] = ACTIONS(2581), - [anon_sym_hide] = ACTIONS(2581), - [anon_sym_hide_DASHenv] = ACTIONS(2581), - [anon_sym_overlay] = ACTIONS(2581), - [anon_sym_as] = ACTIONS(2581), - [anon_sym_where] = ACTIONS(2581), - [anon_sym_not] = ACTIONS(2581), - [anon_sym_LPAREN2] = ACTIONS(2583), - [anon_sym_DOT_DOT2] = ACTIONS(2581), - [anon_sym_DOT] = ACTIONS(2581), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2581), - [anon_sym_DOT_DOT_LT] = ACTIONS(2581), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2583), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2583), - [aux_sym__immediate_decimal_token2] = ACTIONS(2585), - [anon_sym_null] = ACTIONS(2581), - [anon_sym_true] = ACTIONS(2581), - [anon_sym_false] = ACTIONS(2581), - [aux_sym__val_number_decimal_token1] = ACTIONS(2581), - [aux_sym__val_number_decimal_token2] = ACTIONS(2581), - [anon_sym_DOT2] = ACTIONS(2581), - [aux_sym__val_number_decimal_token3] = ACTIONS(2581), - [aux_sym__val_number_token1] = ACTIONS(2581), - [aux_sym__val_number_token2] = ACTIONS(2581), - [aux_sym__val_number_token3] = ACTIONS(2581), - [aux_sym__val_number_token4] = ACTIONS(2581), - [aux_sym__val_number_token5] = ACTIONS(2581), - [aux_sym__val_number_token6] = ACTIONS(2581), - [anon_sym_0b] = ACTIONS(2581), - [anon_sym_0o] = ACTIONS(2581), - [anon_sym_0x] = ACTIONS(2581), - [sym_val_date] = ACTIONS(2581), - [anon_sym_DQUOTE] = ACTIONS(2581), - [sym__str_single_quotes] = ACTIONS(2581), - [sym__str_back_ticks] = ACTIONS(2581), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2581), - [anon_sym_CARET] = ACTIONS(2581), - [aux_sym_unquoted_token2] = ACTIONS(2581), + [1367] = { + [sym_comment] = STATE(1367), + [ts_builtin_sym_end] = ACTIONS(3646), + [anon_sym_export] = ACTIONS(3644), + [anon_sym_alias] = ACTIONS(3644), + [anon_sym_let] = ACTIONS(3644), + [anon_sym_let_DASHenv] = ACTIONS(3644), + [anon_sym_mut] = ACTIONS(3644), + [anon_sym_const] = ACTIONS(3644), + [anon_sym_SEMI] = ACTIONS(3644), + [sym_cmd_identifier] = ACTIONS(3644), + [anon_sym_LF] = ACTIONS(3646), + [anon_sym_def] = ACTIONS(3644), + [anon_sym_export_DASHenv] = ACTIONS(3644), + [anon_sym_extern] = ACTIONS(3644), + [anon_sym_module] = ACTIONS(3644), + [anon_sym_use] = ACTIONS(3644), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_LPAREN] = ACTIONS(3644), + [anon_sym_DOLLAR] = ACTIONS(3644), + [anon_sym_error] = ACTIONS(3644), + [anon_sym_DASH_DASH] = ACTIONS(3644), + [anon_sym_DASH] = ACTIONS(3644), + [anon_sym_break] = ACTIONS(3644), + [anon_sym_continue] = ACTIONS(3644), + [anon_sym_for] = ACTIONS(3644), + [anon_sym_loop] = ACTIONS(3644), + [anon_sym_while] = ACTIONS(3644), + [anon_sym_do] = ACTIONS(3644), + [anon_sym_if] = ACTIONS(3644), + [anon_sym_match] = ACTIONS(3644), + [anon_sym_LBRACE] = ACTIONS(3644), + [anon_sym_DOT_DOT] = ACTIONS(3644), + [anon_sym_try] = ACTIONS(3644), + [anon_sym_return] = ACTIONS(3644), + [anon_sym_source] = ACTIONS(3644), + [anon_sym_source_DASHenv] = ACTIONS(3644), + [anon_sym_register] = ACTIONS(3644), + [anon_sym_hide] = ACTIONS(3644), + [anon_sym_hide_DASHenv] = ACTIONS(3644), + [anon_sym_overlay] = ACTIONS(3644), + [anon_sym_as] = ACTIONS(3644), + [anon_sym_where] = ACTIONS(3644), + [anon_sym_not] = ACTIONS(3644), + [anon_sym_DOT] = ACTIONS(3650), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3644), + [anon_sym_DOT_DOT_LT] = ACTIONS(3644), + [anon_sym_null] = ACTIONS(3644), + [anon_sym_true] = ACTIONS(3644), + [anon_sym_false] = ACTIONS(3644), + [aux_sym__val_number_decimal_token1] = ACTIONS(3644), + [aux_sym__val_number_decimal_token2] = ACTIONS(3644), + [anon_sym_DOT2] = ACTIONS(3644), + [aux_sym__val_number_decimal_token3] = ACTIONS(3644), + [aux_sym__val_number_token1] = ACTIONS(3644), + [aux_sym__val_number_token2] = ACTIONS(3644), + [aux_sym__val_number_token3] = ACTIONS(3644), + [aux_sym__val_number_token4] = ACTIONS(3644), + [aux_sym__val_number_token5] = ACTIONS(3644), + [aux_sym__val_number_token6] = ACTIONS(3644), + [anon_sym_0b] = ACTIONS(3644), + [anon_sym_0o] = ACTIONS(3644), + [anon_sym_0x] = ACTIONS(3644), + [sym_val_date] = ACTIONS(3644), + [anon_sym_DQUOTE] = ACTIONS(3644), + [sym__str_single_quotes] = ACTIONS(3644), + [sym__str_back_ticks] = ACTIONS(3644), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3644), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3644), + [anon_sym_CARET] = ACTIONS(3644), + [aux_sym_unquoted_token2] = ACTIONS(3650), [anon_sym_POUND] = ACTIONS(113), }, - [1139] = { - [sym_comment] = STATE(1139), - [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), - [anon_sym_SEMI] = ACTIONS(2437), - [sym_cmd_identifier] = ACTIONS(2437), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_RPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_DASH_DASH] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_RBRACE] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_as] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_not] = ACTIONS(2437), - [anon_sym_LPAREN2] = ACTIONS(2439), - [anon_sym_DOT_DOT2] = ACTIONS(2437), - [anon_sym_DOT] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2439), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2439), - [aux_sym__immediate_decimal_token2] = ACTIONS(2443), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [anon_sym_DOT2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2437), - [anon_sym_0o] = ACTIONS(2437), - [anon_sym_0x] = ACTIONS(2437), - [sym_val_date] = 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_CARET] = ACTIONS(2437), - [aux_sym_unquoted_token2] = ACTIONS(2437), + [1368] = { + [sym_comment] = STATE(1368), + [anon_sym_LBRACK] = ACTIONS(1143), + [anon_sym_COMMA] = ACTIONS(1143), + [anon_sym_RBRACK] = ACTIONS(1143), + [anon_sym_LPAREN] = ACTIONS(1143), + [anon_sym_DOLLAR] = ACTIONS(1143), + [anon_sym_GT] = ACTIONS(1143), + [anon_sym_DASH_DASH] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_LBRACE] = ACTIONS(1143), + [anon_sym_DOT_DOT] = ACTIONS(1143), + [anon_sym_STAR] = ACTIONS(1143), + [anon_sym_STAR_STAR] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(1143), + [anon_sym_mod] = ACTIONS(1143), + [anon_sym_SLASH_SLASH] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_bit_DASHshl] = ACTIONS(1143), + [anon_sym_bit_DASHshr] = ACTIONS(1143), + [anon_sym_EQ_EQ] = ACTIONS(1143), + [anon_sym_BANG_EQ] = ACTIONS(1143), + [anon_sym_LT2] = ACTIONS(1143), + [anon_sym_LT_EQ] = ACTIONS(1143), + [anon_sym_GT_EQ] = ACTIONS(1143), + [anon_sym_not_DASHin] = ACTIONS(1143), + [anon_sym_starts_DASHwith] = ACTIONS(1143), + [anon_sym_ends_DASHwith] = ACTIONS(1143), + [anon_sym_EQ_TILDE] = ACTIONS(1143), + [anon_sym_BANG_TILDE] = ACTIONS(1143), + [anon_sym_bit_DASHand] = ACTIONS(1143), + [anon_sym_bit_DASHxor] = ACTIONS(1143), + [anon_sym_bit_DASHor] = ACTIONS(1143), + [anon_sym_and] = ACTIONS(1143), + [anon_sym_xor] = ACTIONS(1143), + [anon_sym_or] = ACTIONS(1143), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1143), + [anon_sym_DOT_DOT_LT] = ACTIONS(1143), + [anon_sym_null] = ACTIONS(1143), + [anon_sym_true] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [aux_sym__val_number_decimal_token1] = ACTIONS(1143), + [aux_sym__val_number_decimal_token2] = ACTIONS(1143), + [anon_sym_DOT2] = ACTIONS(1143), + [aux_sym__val_number_decimal_token3] = ACTIONS(1143), + [aux_sym__val_number_token1] = ACTIONS(1143), + [aux_sym__val_number_token2] = ACTIONS(1143), + [aux_sym__val_number_token3] = ACTIONS(1143), + [aux_sym__val_number_token4] = ACTIONS(1143), + [aux_sym__val_number_token5] = ACTIONS(1143), + [aux_sym__val_number_token6] = ACTIONS(1143), + [anon_sym_0b] = ACTIONS(1143), + [anon_sym_0o] = ACTIONS(1143), + [anon_sym_0x] = ACTIONS(1143), + [anon_sym_LBRACK2] = ACTIONS(4769), + [sym_val_date] = ACTIONS(1143), + [anon_sym_DQUOTE] = ACTIONS(1143), + [sym__str_single_quotes] = ACTIONS(1143), + [sym__str_back_ticks] = ACTIONS(1143), + [sym__entry_separator] = ACTIONS(1145), + [anon_sym_err_GT] = ACTIONS(1143), + [anon_sym_out_GT] = ACTIONS(1143), + [anon_sym_e_GT] = ACTIONS(1143), + [anon_sym_o_GT] = ACTIONS(1143), + [anon_sym_err_PLUSout_GT] = ACTIONS(1143), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1143), + [anon_sym_o_PLUSe_GT] = ACTIONS(1143), + [anon_sym_e_PLUSo_GT] = ACTIONS(1143), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1143), [anon_sym_POUND] = ACTIONS(113), }, - [1140] = { - [sym_comment] = STATE(1140), - [anon_sym_LBRACK] = ACTIONS(925), - [anon_sym_COMMA] = ACTIONS(925), - [anon_sym_RBRACK] = ACTIONS(925), - [anon_sym_LPAREN] = ACTIONS(925), - [anon_sym_DOLLAR] = ACTIONS(925), - [anon_sym_GT] = ACTIONS(923), - [anon_sym_DASH_DASH] = ACTIONS(925), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_in] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_DOT_DOT] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_STAR_STAR] = ACTIONS(925), - [anon_sym_PLUS_PLUS] = ACTIONS(925), - [anon_sym_SLASH] = ACTIONS(923), - [anon_sym_mod] = ACTIONS(925), - [anon_sym_SLASH_SLASH] = ACTIONS(925), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_bit_DASHshl] = ACTIONS(925), - [anon_sym_bit_DASHshr] = ACTIONS(925), - [anon_sym_EQ_EQ] = ACTIONS(925), - [anon_sym_BANG_EQ] = ACTIONS(925), - [anon_sym_LT2] = ACTIONS(923), - [anon_sym_LT_EQ] = ACTIONS(925), - [anon_sym_GT_EQ] = ACTIONS(925), - [anon_sym_not_DASHin] = ACTIONS(925), - [anon_sym_starts_DASHwith] = ACTIONS(925), - [anon_sym_ends_DASHwith] = ACTIONS(925), - [anon_sym_EQ_TILDE] = ACTIONS(925), - [anon_sym_BANG_TILDE] = ACTIONS(925), - [anon_sym_bit_DASHand] = ACTIONS(925), - [anon_sym_bit_DASHxor] = ACTIONS(925), - [anon_sym_bit_DASHor] = ACTIONS(925), - [anon_sym_and] = ACTIONS(925), - [anon_sym_xor] = ACTIONS(925), - [anon_sym_or] = ACTIONS(925), - [anon_sym_DOT_DOT2] = ACTIONS(923), - [anon_sym_DOT] = ACTIONS(2587), - [anon_sym_DOT_DOT_EQ] = ACTIONS(923), - [anon_sym_DOT_DOT_LT] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(925), - [anon_sym_DOT_DOT_LT2] = ACTIONS(925), - [aux_sym__immediate_decimal_token2] = ACTIONS(2590), - [anon_sym_null] = ACTIONS(925), - [anon_sym_true] = ACTIONS(925), - [anon_sym_false] = ACTIONS(925), - [aux_sym__val_number_decimal_token1] = ACTIONS(923), - [aux_sym__val_number_decimal_token2] = ACTIONS(925), - [anon_sym_DOT2] = ACTIONS(923), - [aux_sym__val_number_decimal_token3] = ACTIONS(925), - [aux_sym__val_number_token1] = ACTIONS(925), - [aux_sym__val_number_token2] = ACTIONS(925), - [aux_sym__val_number_token3] = ACTIONS(925), - [aux_sym__val_number_token4] = ACTIONS(925), - [aux_sym__val_number_token5] = ACTIONS(925), - [aux_sym__val_number_token6] = ACTIONS(925), - [anon_sym_0b] = ACTIONS(923), - [sym_filesize_unit] = ACTIONS(923), - [sym_duration_unit] = ACTIONS(925), - [anon_sym_0o] = ACTIONS(923), - [anon_sym_0x] = ACTIONS(923), - [sym_val_date] = ACTIONS(925), - [anon_sym_DQUOTE] = ACTIONS(925), - [sym__str_single_quotes] = ACTIONS(925), - [sym__str_back_ticks] = ACTIONS(925), - [anon_sym_err_GT] = ACTIONS(925), - [anon_sym_out_GT] = ACTIONS(925), - [anon_sym_e_GT] = ACTIONS(925), - [anon_sym_o_GT] = ACTIONS(925), - [anon_sym_err_PLUSout_GT] = ACTIONS(925), - [anon_sym_out_PLUSerr_GT] = ACTIONS(925), - [anon_sym_o_PLUSe_GT] = ACTIONS(925), - [anon_sym_e_PLUSo_GT] = ACTIONS(925), - [aux_sym_unquoted_token5] = ACTIONS(923), - [aux_sym__unquoted_in_list_token1] = ACTIONS(923), - [anon_sym_POUND] = ACTIONS(3), - }, - [1141] = { - [sym_comment] = STATE(1141), - [ts_builtin_sym_end] = ACTIONS(911), - [anon_sym_export] = ACTIONS(909), - [anon_sym_alias] = ACTIONS(909), - [anon_sym_let] = ACTIONS(909), - [anon_sym_let_DASHenv] = ACTIONS(909), - [anon_sym_mut] = ACTIONS(909), - [anon_sym_const] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(909), - [sym_cmd_identifier] = ACTIONS(909), - [anon_sym_LF] = ACTIONS(911), - [anon_sym_def] = ACTIONS(909), - [anon_sym_export_DASHenv] = ACTIONS(909), - [anon_sym_extern] = ACTIONS(909), - [anon_sym_module] = ACTIONS(909), - [anon_sym_use] = ACTIONS(909), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_error] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_break] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_for] = ACTIONS(909), - [anon_sym_loop] = ACTIONS(909), - [anon_sym_while] = ACTIONS(909), - [anon_sym_do] = ACTIONS(909), - [anon_sym_if] = ACTIONS(909), - [anon_sym_match] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_DOT_DOT] = ACTIONS(909), - [anon_sym_try] = ACTIONS(909), - [anon_sym_return] = ACTIONS(909), - [anon_sym_source] = ACTIONS(909), - [anon_sym_source_DASHenv] = ACTIONS(909), - [anon_sym_register] = ACTIONS(909), - [anon_sym_hide] = ACTIONS(909), - [anon_sym_hide_DASHenv] = ACTIONS(909), - [anon_sym_overlay] = ACTIONS(909), - [anon_sym_as] = ACTIONS(909), - [anon_sym_where] = ACTIONS(909), - [anon_sym_not] = ACTIONS(909), - [anon_sym_LPAREN2] = ACTIONS(911), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [anon_sym_null] = ACTIONS(909), - [anon_sym_true] = ACTIONS(909), - [anon_sym_false] = ACTIONS(909), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(909), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(909), - [aux_sym__val_number_token1] = ACTIONS(909), - [aux_sym__val_number_token2] = ACTIONS(909), - [aux_sym__val_number_token3] = ACTIONS(909), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(909), - [aux_sym__val_number_token6] = ACTIONS(909), - [anon_sym_0b] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(909), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym__str_single_quotes] = ACTIONS(909), - [sym__str_back_ticks] = ACTIONS(909), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), - [anon_sym_CARET] = ACTIONS(909), - [aux_sym_unquoted_token5] = ACTIONS(909), + [1369] = { + [sym_comment] = STATE(1369), + [anon_sym_export] = ACTIONS(1033), + [anon_sym_alias] = ACTIONS(1033), + [anon_sym_let] = ACTIONS(1033), + [anon_sym_let_DASHenv] = ACTIONS(1033), + [anon_sym_mut] = ACTIONS(1033), + [anon_sym_const] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(1033), + [sym_cmd_identifier] = ACTIONS(1033), + [anon_sym_LF] = ACTIONS(1035), + [anon_sym_def] = ACTIONS(1033), + [anon_sym_export_DASHenv] = ACTIONS(1033), + [anon_sym_extern] = ACTIONS(1033), + [anon_sym_module] = ACTIONS(1033), + [anon_sym_use] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1033), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_RPAREN] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_error] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1033), + [anon_sym_break] = ACTIONS(1033), + [anon_sym_continue] = ACTIONS(1033), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_loop] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(1033), + [anon_sym_do] = ACTIONS(1033), + [anon_sym_if] = ACTIONS(1033), + [anon_sym_match] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1033), + [anon_sym_DOT_DOT] = ACTIONS(1033), + [anon_sym_try] = ACTIONS(1033), + [anon_sym_return] = ACTIONS(1033), + [anon_sym_source] = ACTIONS(1033), + [anon_sym_source_DASHenv] = ACTIONS(1033), + [anon_sym_register] = ACTIONS(1033), + [anon_sym_hide] = ACTIONS(1033), + [anon_sym_hide_DASHenv] = ACTIONS(1033), + [anon_sym_overlay] = ACTIONS(1033), + [anon_sym_STAR] = ACTIONS(1033), + [anon_sym_where] = ACTIONS(1033), + [anon_sym_QMARK2] = ACTIONS(1033), + [anon_sym_not] = ACTIONS(1033), + [anon_sym_DOT] = ACTIONS(1033), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1033), + [anon_sym_DOT_DOT_LT] = ACTIONS(1033), + [anon_sym_null] = ACTIONS(1033), + [anon_sym_true] = ACTIONS(1033), + [anon_sym_false] = ACTIONS(1033), + [aux_sym__val_number_decimal_token1] = ACTIONS(1033), + [aux_sym__val_number_decimal_token2] = ACTIONS(1033), + [anon_sym_DOT2] = ACTIONS(1033), + [aux_sym__val_number_decimal_token3] = ACTIONS(1033), + [aux_sym__val_number_token1] = ACTIONS(1033), + [aux_sym__val_number_token2] = ACTIONS(1033), + [aux_sym__val_number_token3] = ACTIONS(1033), + [aux_sym__val_number_token4] = ACTIONS(1033), + [aux_sym__val_number_token5] = ACTIONS(1033), + [aux_sym__val_number_token6] = ACTIONS(1033), + [anon_sym_0b] = ACTIONS(1033), + [anon_sym_0o] = ACTIONS(1033), + [anon_sym_0x] = ACTIONS(1033), + [sym_val_date] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [sym__str_single_quotes] = ACTIONS(1033), + [sym__str_back_ticks] = ACTIONS(1033), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1033), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1033), + [anon_sym_CARET] = ACTIONS(1033), [anon_sym_POUND] = ACTIONS(113), }, - [1142] = { - [sym_comment] = STATE(1142), - [ts_builtin_sym_end] = ACTIONS(919), - [anon_sym_export] = ACTIONS(917), - [anon_sym_alias] = ACTIONS(917), - [anon_sym_let] = ACTIONS(917), - [anon_sym_let_DASHenv] = ACTIONS(917), - [anon_sym_mut] = ACTIONS(917), - [anon_sym_const] = ACTIONS(917), - [anon_sym_SEMI] = ACTIONS(917), - [sym_cmd_identifier] = ACTIONS(917), - [anon_sym_LF] = ACTIONS(919), - [anon_sym_def] = ACTIONS(917), - [anon_sym_export_DASHenv] = ACTIONS(917), - [anon_sym_extern] = ACTIONS(917), - [anon_sym_module] = ACTIONS(917), - [anon_sym_use] = ACTIONS(917), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_LPAREN] = ACTIONS(917), - [anon_sym_DOLLAR] = ACTIONS(917), - [anon_sym_error] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_break] = ACTIONS(917), - [anon_sym_continue] = ACTIONS(917), - [anon_sym_for] = ACTIONS(917), - [anon_sym_loop] = ACTIONS(917), - [anon_sym_while] = ACTIONS(917), - [anon_sym_do] = ACTIONS(917), - [anon_sym_if] = ACTIONS(917), - [anon_sym_match] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(917), - [anon_sym_DOT_DOT] = ACTIONS(917), - [anon_sym_try] = ACTIONS(917), - [anon_sym_return] = ACTIONS(917), - [anon_sym_source] = ACTIONS(917), - [anon_sym_source_DASHenv] = ACTIONS(917), - [anon_sym_register] = ACTIONS(917), - [anon_sym_hide] = ACTIONS(917), - [anon_sym_hide_DASHenv] = ACTIONS(917), - [anon_sym_overlay] = ACTIONS(917), - [anon_sym_as] = ACTIONS(917), - [anon_sym_where] = ACTIONS(917), - [anon_sym_not] = ACTIONS(917), - [anon_sym_LPAREN2] = ACTIONS(919), - [anon_sym_DOT_DOT2] = ACTIONS(917), - [anon_sym_DOT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ] = ACTIONS(917), - [anon_sym_DOT_DOT_LT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(919), - [anon_sym_DOT_DOT_LT2] = ACTIONS(919), - [anon_sym_null] = ACTIONS(917), - [anon_sym_true] = ACTIONS(917), - [anon_sym_false] = ACTIONS(917), - [aux_sym__val_number_decimal_token1] = ACTIONS(917), - [aux_sym__val_number_decimal_token2] = ACTIONS(917), - [anon_sym_DOT2] = ACTIONS(917), - [aux_sym__val_number_decimal_token3] = ACTIONS(917), - [aux_sym__val_number_token1] = ACTIONS(917), - [aux_sym__val_number_token2] = ACTIONS(917), - [aux_sym__val_number_token3] = ACTIONS(917), - [aux_sym__val_number_token4] = ACTIONS(917), - [aux_sym__val_number_token5] = ACTIONS(917), - [aux_sym__val_number_token6] = ACTIONS(917), - [anon_sym_0b] = ACTIONS(917), - [sym_filesize_unit] = ACTIONS(917), - [sym_duration_unit] = ACTIONS(917), - [anon_sym_0o] = ACTIONS(917), - [anon_sym_0x] = ACTIONS(917), - [sym_val_date] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(917), - [sym__str_single_quotes] = ACTIONS(917), - [sym__str_back_ticks] = ACTIONS(917), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(917), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(917), - [anon_sym_CARET] = ACTIONS(917), - [aux_sym_unquoted_token5] = ACTIONS(917), + [1370] = { + [sym_comment] = STATE(1370), + [anon_sym_export] = ACTIONS(1020), + [anon_sym_alias] = ACTIONS(1020), + [anon_sym_let] = ACTIONS(1020), + [anon_sym_let_DASHenv] = ACTIONS(1020), + [anon_sym_mut] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1020), + [sym_cmd_identifier] = ACTIONS(1020), + [anon_sym_LF] = ACTIONS(1022), + [anon_sym_def] = ACTIONS(1020), + [anon_sym_export_DASHenv] = ACTIONS(1020), + [anon_sym_extern] = ACTIONS(1020), + [anon_sym_module] = ACTIONS(1020), + [anon_sym_use] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1020), + [anon_sym_RPAREN] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_error] = ACTIONS(1020), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_loop] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_match] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_RBRACE] = ACTIONS(1020), + [anon_sym_DOT_DOT] = ACTIONS(1020), + [anon_sym_try] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_source] = ACTIONS(1020), + [anon_sym_source_DASHenv] = ACTIONS(1020), + [anon_sym_register] = ACTIONS(1020), + [anon_sym_hide] = ACTIONS(1020), + [anon_sym_hide_DASHenv] = ACTIONS(1020), + [anon_sym_overlay] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_where] = ACTIONS(1020), + [anon_sym_QMARK2] = ACTIONS(1020), + [anon_sym_not] = ACTIONS(1020), + [anon_sym_DOT] = ACTIONS(1020), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1020), + [anon_sym_DOT_DOT_LT] = ACTIONS(1020), + [anon_sym_null] = ACTIONS(1020), + [anon_sym_true] = ACTIONS(1020), + [anon_sym_false] = ACTIONS(1020), + [aux_sym__val_number_decimal_token1] = ACTIONS(1020), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [anon_sym_DOT2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1020), + [aux_sym__val_number_token1] = ACTIONS(1020), + [aux_sym__val_number_token2] = ACTIONS(1020), + [aux_sym__val_number_token3] = ACTIONS(1020), + [aux_sym__val_number_token4] = ACTIONS(1020), + [aux_sym__val_number_token5] = ACTIONS(1020), + [aux_sym__val_number_token6] = ACTIONS(1020), + [anon_sym_0b] = ACTIONS(1020), + [anon_sym_0o] = ACTIONS(1020), + [anon_sym_0x] = ACTIONS(1020), + [sym_val_date] = ACTIONS(1020), + [anon_sym_DQUOTE] = ACTIONS(1020), + [sym__str_single_quotes] = ACTIONS(1020), + [sym__str_back_ticks] = ACTIONS(1020), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1020), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1020), + [anon_sym_CARET] = ACTIONS(1020), [anon_sym_POUND] = ACTIONS(113), }, - [1143] = { - [sym_comment] = STATE(1143), - [ts_builtin_sym_end] = ACTIONS(952), - [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), - [anon_sym_SEMI] = ACTIONS(950), - [sym_cmd_identifier] = ACTIONS(950), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(950), - [anon_sym_LPAREN] = ACTIONS(950), - [anon_sym_DOLLAR] = ACTIONS(950), - [anon_sym_error] = ACTIONS(950), - [anon_sym_DASH_DASH] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(950), - [anon_sym_break] = ACTIONS(950), - [anon_sym_continue] = ACTIONS(950), - [anon_sym_for] = ACTIONS(950), - [anon_sym_loop] = ACTIONS(950), - [anon_sym_while] = ACTIONS(950), - [anon_sym_do] = ACTIONS(950), - [anon_sym_if] = ACTIONS(950), - [anon_sym_match] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(950), - [anon_sym_DOT_DOT] = ACTIONS(950), - [anon_sym_try] = ACTIONS(950), - [anon_sym_return] = ACTIONS(950), - [anon_sym_source] = ACTIONS(950), - [anon_sym_source_DASHenv] = ACTIONS(950), - [anon_sym_register] = 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_where] = ACTIONS(950), - [anon_sym_not] = ACTIONS(950), - [anon_sym_LPAREN2] = ACTIONS(952), - [anon_sym_DOT_DOT2] = ACTIONS(950), - [anon_sym_DOT] = 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(950), - [anon_sym_true] = ACTIONS(950), - [anon_sym_false] = ACTIONS(950), - [aux_sym__val_number_decimal_token1] = ACTIONS(950), - [aux_sym__val_number_decimal_token2] = ACTIONS(950), - [anon_sym_DOT2] = ACTIONS(950), - [aux_sym__val_number_decimal_token3] = ACTIONS(950), - [aux_sym__val_number_token1] = ACTIONS(950), - [aux_sym__val_number_token2] = ACTIONS(950), - [aux_sym__val_number_token3] = ACTIONS(950), - [aux_sym__val_number_token4] = ACTIONS(950), - [aux_sym__val_number_token5] = ACTIONS(950), - [aux_sym__val_number_token6] = ACTIONS(950), - [anon_sym_0b] = ACTIONS(950), - [sym_filesize_unit] = ACTIONS(950), - [sym_duration_unit] = ACTIONS(950), - [anon_sym_0o] = ACTIONS(950), - [anon_sym_0x] = ACTIONS(950), - [sym_val_date] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym__str_single_quotes] = ACTIONS(950), - [sym__str_back_ticks] = ACTIONS(950), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(950), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(950), - [anon_sym_CARET] = ACTIONS(950), - [aux_sym_unquoted_token5] = ACTIONS(950), + [1371] = { + [sym_comment] = STATE(1371), + [anon_sym_export] = ACTIONS(4771), + [anon_sym_alias] = ACTIONS(4771), + [anon_sym_let] = ACTIONS(4771), + [anon_sym_let_DASHenv] = ACTIONS(4771), + [anon_sym_mut] = ACTIONS(4771), + [anon_sym_const] = ACTIONS(4771), + [anon_sym_SEMI] = ACTIONS(4771), + [sym_cmd_identifier] = ACTIONS(4771), + [anon_sym_LF] = ACTIONS(4773), + [anon_sym_def] = ACTIONS(4771), + [anon_sym_export_DASHenv] = ACTIONS(4771), + [anon_sym_extern] = ACTIONS(4771), + [anon_sym_module] = ACTIONS(4771), + [anon_sym_use] = ACTIONS(4771), + [anon_sym_LBRACK] = ACTIONS(4771), + [anon_sym_LPAREN] = ACTIONS(4771), + [anon_sym_RPAREN] = ACTIONS(4771), + [anon_sym_DOLLAR] = ACTIONS(4771), + [anon_sym_error] = ACTIONS(4771), + [anon_sym_DASH_DASH] = ACTIONS(4771), + [anon_sym_DASH] = ACTIONS(4771), + [anon_sym_break] = ACTIONS(4771), + [anon_sym_continue] = ACTIONS(4771), + [anon_sym_for] = ACTIONS(4771), + [anon_sym_loop] = ACTIONS(4771), + [anon_sym_while] = ACTIONS(4771), + [anon_sym_do] = ACTIONS(4771), + [anon_sym_if] = ACTIONS(4771), + [anon_sym_match] = ACTIONS(4771), + [anon_sym_LBRACE] = ACTIONS(4771), + [anon_sym_RBRACE] = ACTIONS(4771), + [anon_sym_DOT_DOT] = ACTIONS(4771), + [anon_sym_try] = ACTIONS(4771), + [anon_sym_return] = ACTIONS(4771), + [anon_sym_source] = ACTIONS(4771), + [anon_sym_source_DASHenv] = ACTIONS(4771), + [anon_sym_register] = ACTIONS(4771), + [anon_sym_hide] = ACTIONS(4771), + [anon_sym_hide_DASHenv] = ACTIONS(4771), + [anon_sym_overlay] = ACTIONS(4771), + [anon_sym_as] = ACTIONS(4771), + [anon_sym_where] = ACTIONS(4771), + [anon_sym_not] = ACTIONS(4771), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4771), + [anon_sym_DOT_DOT_LT] = ACTIONS(4771), + [aux_sym__immediate_decimal_token1] = ACTIONS(4775), + [anon_sym_null] = ACTIONS(4771), + [anon_sym_true] = ACTIONS(4771), + [anon_sym_false] = ACTIONS(4771), + [aux_sym__val_number_decimal_token1] = ACTIONS(4771), + [aux_sym__val_number_decimal_token2] = ACTIONS(4771), + [anon_sym_DOT2] = ACTIONS(4771), + [aux_sym__val_number_decimal_token3] = ACTIONS(4771), + [aux_sym__val_number_token1] = ACTIONS(4771), + [aux_sym__val_number_token2] = ACTIONS(4771), + [aux_sym__val_number_token3] = ACTIONS(4771), + [aux_sym__val_number_token4] = ACTIONS(4771), + [aux_sym__val_number_token5] = ACTIONS(4771), + [aux_sym__val_number_token6] = ACTIONS(4771), + [anon_sym_0b] = ACTIONS(4771), + [anon_sym_0o] = ACTIONS(4771), + [anon_sym_0x] = ACTIONS(4771), + [sym_val_date] = ACTIONS(4771), + [anon_sym_DQUOTE] = ACTIONS(4771), + [sym__str_single_quotes] = ACTIONS(4771), + [sym__str_back_ticks] = ACTIONS(4771), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4771), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4771), + [anon_sym_CARET] = ACTIONS(4771), [anon_sym_POUND] = ACTIONS(113), }, - [1144] = { - [sym__expr_parenthesized_immediate] = STATE(2731), - [sym__immediate_decimal] = STATE(2750), - [sym_val_variable] = STATE(2731), - [sym__var] = STATE(1690), - [sym_comment] = STATE(1144), - [anon_sym_export] = ACTIONS(2002), - [anon_sym_alias] = ACTIONS(2002), - [anon_sym_let] = ACTIONS(2002), - [anon_sym_let_DASHenv] = ACTIONS(2002), - [anon_sym_mut] = ACTIONS(2002), - [anon_sym_const] = ACTIONS(2002), - [anon_sym_SEMI] = ACTIONS(2002), - [sym_cmd_identifier] = ACTIONS(2002), - [anon_sym_LF] = ACTIONS(2004), - [anon_sym_def] = ACTIONS(2002), - [anon_sym_export_DASHenv] = ACTIONS(2002), - [anon_sym_extern] = ACTIONS(2002), - [anon_sym_module] = ACTIONS(2002), - [anon_sym_use] = ACTIONS(2002), - [anon_sym_LBRACK] = ACTIONS(2002), - [anon_sym_LPAREN] = ACTIONS(2002), - [anon_sym_RPAREN] = ACTIONS(2002), - [anon_sym_DOLLAR] = ACTIONS(2565), - [anon_sym_error] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2002), - [anon_sym_break] = ACTIONS(2002), - [anon_sym_continue] = ACTIONS(2002), - [anon_sym_for] = ACTIONS(2002), - [anon_sym_loop] = ACTIONS(2002), - [anon_sym_while] = ACTIONS(2002), - [anon_sym_do] = ACTIONS(2002), - [anon_sym_if] = ACTIONS(2002), - [anon_sym_match] = ACTIONS(2002), - [anon_sym_LBRACE] = ACTIONS(2002), - [anon_sym_RBRACE] = ACTIONS(2002), - [anon_sym_DOT_DOT] = ACTIONS(2002), - [anon_sym_try] = ACTIONS(2002), - [anon_sym_return] = ACTIONS(2002), - [anon_sym_source] = ACTIONS(2002), - [anon_sym_source_DASHenv] = ACTIONS(2002), - [anon_sym_register] = ACTIONS(2002), - [anon_sym_hide] = ACTIONS(2002), - [anon_sym_hide_DASHenv] = ACTIONS(2002), - [anon_sym_overlay] = ACTIONS(2002), - [anon_sym_where] = ACTIONS(2002), - [anon_sym_not] = ACTIONS(2002), - [anon_sym_LPAREN2] = ACTIONS(2567), - [anon_sym_DOT] = ACTIONS(2569), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2002), - [anon_sym_DOT_DOT_LT] = ACTIONS(2002), - [aux_sym__immediate_decimal_token1] = ACTIONS(2571), - [aux_sym__immediate_decimal_token3] = ACTIONS(2571), - [aux_sym__immediate_decimal_token4] = ACTIONS(2573), - [anon_sym_null] = ACTIONS(2002), - [anon_sym_true] = ACTIONS(2002), - [anon_sym_false] = ACTIONS(2002), - [aux_sym__val_number_decimal_token1] = ACTIONS(2002), - [aux_sym__val_number_decimal_token2] = ACTIONS(2002), - [anon_sym_DOT2] = ACTIONS(2002), - [aux_sym__val_number_decimal_token3] = ACTIONS(2002), - [aux_sym__val_number_token1] = ACTIONS(2002), - [aux_sym__val_number_token2] = ACTIONS(2002), - [aux_sym__val_number_token3] = ACTIONS(2002), - [aux_sym__val_number_token4] = ACTIONS(2002), - [aux_sym__val_number_token5] = ACTIONS(2002), - [aux_sym__val_number_token6] = ACTIONS(2002), - [anon_sym_0b] = ACTIONS(2002), - [anon_sym_0o] = ACTIONS(2002), - [anon_sym_0x] = ACTIONS(2002), - [sym_val_date] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym__str_single_quotes] = ACTIONS(2002), - [sym__str_back_ticks] = ACTIONS(2002), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2002), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2002), - [anon_sym_CARET] = ACTIONS(2002), + [1372] = { + [sym_comment] = STATE(1372), + [anon_sym_export] = ACTIONS(920), + [anon_sym_alias] = ACTIONS(920), + [anon_sym_let] = ACTIONS(920), + [anon_sym_let_DASHenv] = ACTIONS(920), + [anon_sym_mut] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(920), + [sym_cmd_identifier] = ACTIONS(920), + [anon_sym_LF] = ACTIONS(922), + [anon_sym_def] = ACTIONS(920), + [anon_sym_export_DASHenv] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym_module] = ACTIONS(920), + [anon_sym_use] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_RPAREN] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_error] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_loop] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_match] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_RBRACE] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_try] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_source] = ACTIONS(920), + [anon_sym_source_DASHenv] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_hide] = ACTIONS(920), + [anon_sym_hide_DASHenv] = ACTIONS(920), + [anon_sym_overlay] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_where] = ACTIONS(920), + [anon_sym_not] = ACTIONS(920), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [aux_sym__immediate_decimal_token1] = ACTIONS(4777), + [anon_sym_null] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), + [anon_sym_CARET] = ACTIONS(920), + [aux_sym_unquoted_token2] = ACTIONS(4779), [anon_sym_POUND] = ACTIONS(113), }, - [1145] = { - [sym_comment] = STATE(1145), - [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), - [anon_sym_SEMI] = ACTIONS(2437), - [sym_cmd_identifier] = ACTIONS(2437), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_RPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_DASH_DASH] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_RBRACE] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_as] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_not] = ACTIONS(2437), - [anon_sym_DOT_DOT2] = ACTIONS(2437), - [anon_sym_DOT] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2439), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2439), - [aux_sym__immediate_decimal_token1] = ACTIONS(2592), - [aux_sym__immediate_decimal_token2] = ACTIONS(2594), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [anon_sym_DOT2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2437), - [anon_sym_0o] = ACTIONS(2437), - [anon_sym_0x] = ACTIONS(2437), - [sym_val_date] = 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_CARET] = ACTIONS(2437), - [aux_sym_unquoted_token2] = ACTIONS(2437), + [1373] = { + [sym_comment] = STATE(1373), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_COMMA] = ACTIONS(1159), + [anon_sym_RBRACK] = ACTIONS(1159), + [anon_sym_LPAREN] = ACTIONS(1159), + [anon_sym_DOLLAR] = ACTIONS(1159), + [anon_sym_GT] = ACTIONS(1159), + [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_DASH] = ACTIONS(1159), + [anon_sym_in] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(1159), + [anon_sym_DOT_DOT] = ACTIONS(1159), + [anon_sym_STAR] = ACTIONS(1159), + [anon_sym_STAR_STAR] = ACTIONS(1159), + [anon_sym_PLUS_PLUS] = ACTIONS(1159), + [anon_sym_SLASH] = ACTIONS(1159), + [anon_sym_mod] = ACTIONS(1159), + [anon_sym_SLASH_SLASH] = ACTIONS(1159), + [anon_sym_PLUS] = ACTIONS(1159), + [anon_sym_bit_DASHshl] = ACTIONS(1159), + [anon_sym_bit_DASHshr] = ACTIONS(1159), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_LT2] = ACTIONS(1159), + [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_not_DASHin] = ACTIONS(1159), + [anon_sym_starts_DASHwith] = ACTIONS(1159), + [anon_sym_ends_DASHwith] = ACTIONS(1159), + [anon_sym_EQ_TILDE] = ACTIONS(1159), + [anon_sym_BANG_TILDE] = ACTIONS(1159), + [anon_sym_bit_DASHand] = ACTIONS(1159), + [anon_sym_bit_DASHxor] = ACTIONS(1159), + [anon_sym_bit_DASHor] = ACTIONS(1159), + [anon_sym_and] = ACTIONS(1159), + [anon_sym_xor] = ACTIONS(1159), + [anon_sym_or] = ACTIONS(1159), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1159), + [anon_sym_DOT_DOT_LT] = ACTIONS(1159), + [anon_sym_null] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1159), + [anon_sym_false] = ACTIONS(1159), + [aux_sym__val_number_decimal_token1] = ACTIONS(1159), + [aux_sym__val_number_decimal_token2] = ACTIONS(1159), + [anon_sym_DOT2] = ACTIONS(1159), + [aux_sym__val_number_decimal_token3] = ACTIONS(1159), + [aux_sym__val_number_token1] = ACTIONS(1159), + [aux_sym__val_number_token2] = ACTIONS(1159), + [aux_sym__val_number_token3] = ACTIONS(1159), + [aux_sym__val_number_token4] = ACTIONS(1159), + [aux_sym__val_number_token5] = ACTIONS(1159), + [aux_sym__val_number_token6] = ACTIONS(1159), + [anon_sym_0b] = ACTIONS(1159), + [anon_sym_0o] = ACTIONS(1159), + [anon_sym_0x] = ACTIONS(1159), + [sym_val_date] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(1159), + [sym__str_single_quotes] = ACTIONS(1159), + [sym__str_back_ticks] = ACTIONS(1159), + [sym__entry_separator] = ACTIONS(1161), + [anon_sym_err_GT] = ACTIONS(1159), + [anon_sym_out_GT] = ACTIONS(1159), + [anon_sym_e_GT] = ACTIONS(1159), + [anon_sym_o_GT] = ACTIONS(1159), + [anon_sym_err_PLUSout_GT] = ACTIONS(1159), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1159), + [anon_sym_o_PLUSe_GT] = ACTIONS(1159), + [anon_sym_e_PLUSo_GT] = ACTIONS(1159), + [aux_sym_unquoted_token6] = ACTIONS(1163), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1159), [anon_sym_POUND] = ACTIONS(113), }, - [1146] = { - [sym_comment] = STATE(1146), - [anon_sym_export] = ACTIONS(2581), - [anon_sym_alias] = ACTIONS(2581), - [anon_sym_let] = ACTIONS(2581), - [anon_sym_let_DASHenv] = ACTIONS(2581), - [anon_sym_mut] = ACTIONS(2581), - [anon_sym_const] = ACTIONS(2581), - [anon_sym_SEMI] = ACTIONS(2581), - [sym_cmd_identifier] = ACTIONS(2581), - [anon_sym_LF] = ACTIONS(2583), - [anon_sym_def] = ACTIONS(2581), - [anon_sym_export_DASHenv] = ACTIONS(2581), - [anon_sym_extern] = ACTIONS(2581), - [anon_sym_module] = ACTIONS(2581), - [anon_sym_use] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2581), - [anon_sym_RPAREN] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2581), - [anon_sym_error] = ACTIONS(2581), - [anon_sym_DASH_DASH] = ACTIONS(2581), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_break] = ACTIONS(2581), - [anon_sym_continue] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2581), - [anon_sym_loop] = ACTIONS(2581), - [anon_sym_while] = ACTIONS(2581), - [anon_sym_do] = ACTIONS(2581), - [anon_sym_if] = ACTIONS(2581), - [anon_sym_match] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2581), - [anon_sym_RBRACE] = ACTIONS(2581), - [anon_sym_DOT_DOT] = ACTIONS(2581), - [anon_sym_try] = ACTIONS(2581), - [anon_sym_return] = ACTIONS(2581), - [anon_sym_source] = ACTIONS(2581), - [anon_sym_source_DASHenv] = ACTIONS(2581), - [anon_sym_register] = ACTIONS(2581), - [anon_sym_hide] = ACTIONS(2581), - [anon_sym_hide_DASHenv] = ACTIONS(2581), - [anon_sym_overlay] = ACTIONS(2581), - [anon_sym_as] = ACTIONS(2581), - [anon_sym_where] = ACTIONS(2581), - [anon_sym_not] = ACTIONS(2581), - [anon_sym_LPAREN2] = ACTIONS(2583), - [anon_sym_DOT_DOT2] = ACTIONS(2581), - [anon_sym_DOT] = ACTIONS(2596), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2581), - [anon_sym_DOT_DOT_LT] = ACTIONS(2581), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2583), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2583), - [aux_sym__immediate_decimal_token2] = ACTIONS(2585), - [anon_sym_null] = ACTIONS(2581), - [anon_sym_true] = ACTIONS(2581), - [anon_sym_false] = ACTIONS(2581), - [aux_sym__val_number_decimal_token1] = ACTIONS(2581), - [aux_sym__val_number_decimal_token2] = ACTIONS(2581), - [anon_sym_DOT2] = ACTIONS(2581), - [aux_sym__val_number_decimal_token3] = ACTIONS(2581), - [aux_sym__val_number_token1] = ACTIONS(2581), - [aux_sym__val_number_token2] = ACTIONS(2581), - [aux_sym__val_number_token3] = ACTIONS(2581), - [aux_sym__val_number_token4] = ACTIONS(2581), - [aux_sym__val_number_token5] = ACTIONS(2581), - [aux_sym__val_number_token6] = ACTIONS(2581), - [anon_sym_0b] = ACTIONS(2581), - [anon_sym_0o] = ACTIONS(2581), - [anon_sym_0x] = ACTIONS(2581), - [sym_val_date] = ACTIONS(2581), - [anon_sym_DQUOTE] = ACTIONS(2581), - [sym__str_single_quotes] = ACTIONS(2581), - [sym__str_back_ticks] = ACTIONS(2581), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2581), - [anon_sym_CARET] = ACTIONS(2581), - [aux_sym_unquoted_token2] = ACTIONS(2581), + [1374] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6314), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6013), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4530), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5604), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1374), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(4785), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4787), + [anon_sym_DOT_DOT_LT] = ACTIONS(4787), + [anon_sym_null] = ACTIONS(3900), + [anon_sym_true] = ACTIONS(3902), + [anon_sym_false] = ACTIONS(3902), + [aux_sym__val_number_decimal_token1] = ACTIONS(3904), + [aux_sym__val_number_decimal_token2] = ACTIONS(3906), + [anon_sym_DOT2] = ACTIONS(4789), + [aux_sym__val_number_decimal_token3] = ACTIONS(3910), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(3912), + [aux_sym__val_number_token5] = ACTIONS(3912), + [aux_sym__val_number_token6] = ACTIONS(3912), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(3914), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), + [anon_sym_POUND] = ACTIONS(3), + }, + [1375] = { + [sym_comment] = STATE(1375), + [anon_sym_LBRACK] = ACTIONS(1279), + [anon_sym_COMMA] = ACTIONS(1279), + [anon_sym_RBRACK] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_DOLLAR] = ACTIONS(1279), + [anon_sym_GT] = ACTIONS(1279), + [anon_sym_DASH_DASH] = ACTIONS(1279), + [anon_sym_DASH] = ACTIONS(1279), + [anon_sym_in] = ACTIONS(1279), + [anon_sym_LBRACE] = ACTIONS(1279), + [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1279), + [anon_sym_STAR_STAR] = ACTIONS(1279), + [anon_sym_PLUS_PLUS] = ACTIONS(1279), + [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_mod] = ACTIONS(1279), + [anon_sym_SLASH_SLASH] = ACTIONS(1279), + [anon_sym_PLUS] = ACTIONS(1279), + [anon_sym_bit_DASHshl] = ACTIONS(1279), + [anon_sym_bit_DASHshr] = ACTIONS(1279), + [anon_sym_EQ_EQ] = ACTIONS(1279), + [anon_sym_BANG_EQ] = ACTIONS(1279), + [anon_sym_LT2] = ACTIONS(1279), + [anon_sym_LT_EQ] = ACTIONS(1279), + [anon_sym_GT_EQ] = ACTIONS(1279), + [anon_sym_not_DASHin] = ACTIONS(1279), + [anon_sym_starts_DASHwith] = ACTIONS(1279), + [anon_sym_ends_DASHwith] = ACTIONS(1279), + [anon_sym_EQ_TILDE] = ACTIONS(1279), + [anon_sym_BANG_TILDE] = ACTIONS(1279), + [anon_sym_bit_DASHand] = ACTIONS(1279), + [anon_sym_bit_DASHxor] = ACTIONS(1279), + [anon_sym_bit_DASHor] = ACTIONS(1279), + [anon_sym_and] = ACTIONS(1279), + [anon_sym_xor] = ACTIONS(1279), + [anon_sym_or] = ACTIONS(1279), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1279), + [anon_sym_DOT_DOT_LT] = ACTIONS(1279), + [anon_sym_null] = ACTIONS(1279), + [anon_sym_true] = ACTIONS(1279), + [anon_sym_false] = ACTIONS(1279), + [aux_sym__val_number_decimal_token1] = ACTIONS(1279), + [aux_sym__val_number_decimal_token2] = ACTIONS(1279), + [anon_sym_DOT2] = ACTIONS(1279), + [aux_sym__val_number_decimal_token3] = ACTIONS(1279), + [aux_sym__val_number_token1] = ACTIONS(1279), + [aux_sym__val_number_token2] = ACTIONS(1279), + [aux_sym__val_number_token3] = ACTIONS(1279), + [aux_sym__val_number_token4] = ACTIONS(1279), + [aux_sym__val_number_token5] = ACTIONS(1279), + [aux_sym__val_number_token6] = ACTIONS(1279), + [anon_sym_0b] = ACTIONS(1279), + [anon_sym_0o] = ACTIONS(1279), + [anon_sym_0x] = ACTIONS(1279), + [sym_val_date] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(1279), + [sym__str_single_quotes] = ACTIONS(1279), + [sym__str_back_ticks] = ACTIONS(1279), + [sym__entry_separator] = ACTIONS(1281), + [anon_sym_err_GT] = ACTIONS(1279), + [anon_sym_out_GT] = ACTIONS(1279), + [anon_sym_e_GT] = ACTIONS(1279), + [anon_sym_o_GT] = ACTIONS(1279), + [anon_sym_err_PLUSout_GT] = ACTIONS(1279), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1279), + [anon_sym_o_PLUSe_GT] = ACTIONS(1279), + [anon_sym_e_PLUSo_GT] = ACTIONS(1279), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1279), [anon_sym_POUND] = ACTIONS(113), }, - [1147] = { - [sym_comment] = STATE(1147), - [anon_sym_LBRACK] = ACTIONS(925), - [anon_sym_COMMA] = ACTIONS(925), - [anon_sym_LPAREN] = ACTIONS(925), - [anon_sym_DOLLAR] = ACTIONS(925), - [anon_sym_GT] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_in] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_RBRACE] = ACTIONS(925), - [anon_sym__] = ACTIONS(923), - [anon_sym_DOT_DOT] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_STAR_STAR] = ACTIONS(925), - [anon_sym_PLUS_PLUS] = ACTIONS(925), - [anon_sym_SLASH] = ACTIONS(923), - [anon_sym_mod] = ACTIONS(925), - [anon_sym_SLASH_SLASH] = ACTIONS(925), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_bit_DASHshl] = ACTIONS(925), - [anon_sym_bit_DASHshr] = ACTIONS(925), - [anon_sym_EQ_EQ] = ACTIONS(925), - [anon_sym_BANG_EQ] = ACTIONS(925), - [anon_sym_LT2] = ACTIONS(923), - [anon_sym_LT_EQ] = ACTIONS(925), - [anon_sym_GT_EQ] = ACTIONS(925), - [anon_sym_not_DASHin] = ACTIONS(925), - [anon_sym_starts_DASHwith] = ACTIONS(925), - [anon_sym_ends_DASHwith] = ACTIONS(925), - [anon_sym_EQ_TILDE] = ACTIONS(925), - [anon_sym_BANG_TILDE] = ACTIONS(925), - [anon_sym_bit_DASHand] = ACTIONS(925), - [anon_sym_bit_DASHxor] = ACTIONS(925), - [anon_sym_bit_DASHor] = ACTIONS(925), - [anon_sym_and] = ACTIONS(925), - [anon_sym_xor] = ACTIONS(925), - [anon_sym_or] = ACTIONS(925), - [anon_sym_DOT_DOT2] = ACTIONS(923), - [anon_sym_DOT] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ] = ACTIONS(923), - [anon_sym_DOT_DOT_LT] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(925), - [anon_sym_DOT_DOT_LT2] = ACTIONS(925), - [aux_sym__immediate_decimal_token2] = ACTIONS(2599), - [anon_sym_null] = ACTIONS(925), - [anon_sym_true] = ACTIONS(925), - [anon_sym_false] = ACTIONS(925), - [aux_sym__val_number_decimal_token1] = ACTIONS(923), - [aux_sym__val_number_decimal_token2] = ACTIONS(925), - [anon_sym_DOT2] = ACTIONS(923), - [aux_sym__val_number_decimal_token3] = ACTIONS(925), - [aux_sym__val_number_token1] = ACTIONS(925), - [aux_sym__val_number_token2] = ACTIONS(925), - [aux_sym__val_number_token3] = ACTIONS(925), - [aux_sym__val_number_token4] = ACTIONS(925), - [aux_sym__val_number_token5] = ACTIONS(925), - [aux_sym__val_number_token6] = ACTIONS(925), - [anon_sym_0b] = ACTIONS(923), - [sym_filesize_unit] = ACTIONS(923), - [sym_duration_unit] = ACTIONS(925), - [anon_sym_0o] = ACTIONS(923), - [anon_sym_0x] = ACTIONS(923), - [sym_val_date] = ACTIONS(925), - [anon_sym_DQUOTE] = ACTIONS(925), - [sym__str_single_quotes] = ACTIONS(925), - [sym__str_back_ticks] = ACTIONS(925), - [anon_sym_err_GT] = ACTIONS(925), - [anon_sym_out_GT] = ACTIONS(925), - [anon_sym_e_GT] = ACTIONS(925), - [anon_sym_o_GT] = ACTIONS(925), - [anon_sym_err_PLUSout_GT] = ACTIONS(925), - [anon_sym_out_PLUSerr_GT] = ACTIONS(925), - [anon_sym_o_PLUSe_GT] = ACTIONS(925), - [anon_sym_e_PLUSo_GT] = ACTIONS(925), - [aux_sym_unquoted_token1] = ACTIONS(923), - [aux_sym_unquoted_token5] = ACTIONS(923), + [1376] = { + [sym_expr_unary] = STATE(6059), + [sym__expr_unary_minus] = STATE(6045), + [sym_expr_binary] = STATE(6059), + [sym__expr_binary_expression] = STATE(6072), + [sym_expr_parenthesized] = STATE(6059), + [sym__val_range] = STATE(10109), + [sym__value] = STATE(6059), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(5958), + [sym_val_variable] = STATE(6041), + [sym__var] = STATE(5406), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(4495), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(6041), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_unquoted] = STATE(6073), + [sym__unquoted_anonymous_prefix] = STATE(10819), + [sym_comment] = STATE(1376), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(4791), + [anon_sym_DOLLAR] = ACTIONS(4793), + [anon_sym_DASH] = ACTIONS(4094), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(4795), + [anon_sym_not] = ACTIONS(4098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4797), + [anon_sym_DOT_DOT_LT] = ACTIONS(4797), + [anon_sym_null] = ACTIONS(4102), + [anon_sym_true] = ACTIONS(4104), + [anon_sym_false] = ACTIONS(4104), + [aux_sym__val_number_decimal_token1] = ACTIONS(4106), + [aux_sym__val_number_decimal_token2] = ACTIONS(4108), + [anon_sym_DOT2] = ACTIONS(4799), + [aux_sym__val_number_decimal_token3] = ACTIONS(4112), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [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(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(4116), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2950), [anon_sym_POUND] = ACTIONS(3), }, - [1148] = { - [sym_comment] = STATE(1148), - [anon_sym_LBRACK] = ACTIONS(911), - [anon_sym_COMMA] = ACTIONS(911), - [anon_sym_LPAREN] = ACTIONS(911), - [anon_sym_DOLLAR] = ACTIONS(911), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(911), - [anon_sym_RBRACE] = ACTIONS(911), - [anon_sym__] = ACTIONS(909), - [anon_sym_DOT_DOT] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(911), - [anon_sym_PLUS_PLUS] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(911), - [anon_sym_SLASH_SLASH] = ACTIONS(911), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(911), - [anon_sym_bit_DASHshr] = ACTIONS(911), - [anon_sym_EQ_EQ] = ACTIONS(911), - [anon_sym_BANG_EQ] = ACTIONS(911), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(911), - [anon_sym_GT_EQ] = ACTIONS(911), - [anon_sym_not_DASHin] = ACTIONS(911), - [anon_sym_starts_DASHwith] = ACTIONS(911), - [anon_sym_ends_DASHwith] = ACTIONS(911), - [anon_sym_EQ_TILDE] = ACTIONS(911), - [anon_sym_BANG_TILDE] = ACTIONS(911), - [anon_sym_bit_DASHand] = ACTIONS(911), - [anon_sym_bit_DASHxor] = ACTIONS(911), - [anon_sym_bit_DASHor] = ACTIONS(911), - [anon_sym_and] = ACTIONS(911), - [anon_sym_xor] = ACTIONS(911), - [anon_sym_or] = ACTIONS(911), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [aux_sym__immediate_decimal_token2] = ACTIONS(2532), - [anon_sym_null] = ACTIONS(911), - [anon_sym_true] = ACTIONS(911), - [anon_sym_false] = ACTIONS(911), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(911), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(911), - [aux_sym__val_number_token1] = ACTIONS(911), - [aux_sym__val_number_token2] = ACTIONS(911), - [aux_sym__val_number_token3] = ACTIONS(911), - [aux_sym__val_number_token4] = ACTIONS(911), - [aux_sym__val_number_token5] = ACTIONS(911), - [aux_sym__val_number_token6] = ACTIONS(911), - [anon_sym_0b] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(911), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(911), - [anon_sym_DQUOTE] = ACTIONS(911), - [sym__str_single_quotes] = ACTIONS(911), - [sym__str_back_ticks] = ACTIONS(911), - [anon_sym_err_GT] = ACTIONS(911), - [anon_sym_out_GT] = ACTIONS(911), - [anon_sym_e_GT] = ACTIONS(911), - [anon_sym_o_GT] = ACTIONS(911), - [anon_sym_err_PLUSout_GT] = ACTIONS(911), - [anon_sym_out_PLUSerr_GT] = ACTIONS(911), - [anon_sym_o_PLUSe_GT] = ACTIONS(911), - [anon_sym_e_PLUSo_GT] = ACTIONS(911), - [aux_sym_unquoted_token1] = ACTIONS(909), - [aux_sym_unquoted_token5] = ACTIONS(909), + [1377] = { + [sym_expr_unary] = STATE(6059), + [sym__expr_unary_minus] = STATE(6045), + [sym_expr_binary] = STATE(6059), + [sym__expr_binary_expression] = STATE(6074), + [sym_expr_parenthesized] = STATE(6059), + [sym__val_range] = STATE(10109), + [sym__value] = STATE(6059), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(5958), + [sym_val_variable] = STATE(6041), + [sym__var] = STATE(5406), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(4495), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(6041), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_unquoted] = STATE(6075), + [sym__unquoted_anonymous_prefix] = STATE(10819), + [sym_comment] = STATE(1377), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(4791), + [anon_sym_DOLLAR] = ACTIONS(4793), + [anon_sym_DASH] = ACTIONS(4094), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(4795), + [anon_sym_not] = ACTIONS(4098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4797), + [anon_sym_DOT_DOT_LT] = ACTIONS(4797), + [anon_sym_null] = ACTIONS(4102), + [anon_sym_true] = ACTIONS(4104), + [anon_sym_false] = ACTIONS(4104), + [aux_sym__val_number_decimal_token1] = ACTIONS(4106), + [aux_sym__val_number_decimal_token2] = ACTIONS(4108), + [anon_sym_DOT2] = ACTIONS(4799), + [aux_sym__val_number_decimal_token3] = ACTIONS(4112), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [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(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(4116), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2950), [anon_sym_POUND] = ACTIONS(3), }, - [1149] = { - [sym_comment] = STATE(1149), - [anon_sym_LBRACK] = ACTIONS(919), - [anon_sym_COMMA] = ACTIONS(919), - [anon_sym_LPAREN] = ACTIONS(919), - [anon_sym_DOLLAR] = ACTIONS(919), - [anon_sym_GT] = ACTIONS(917), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_in] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(919), - [anon_sym_RBRACE] = ACTIONS(919), - [anon_sym__] = ACTIONS(917), - [anon_sym_DOT_DOT] = ACTIONS(917), - [anon_sym_STAR] = ACTIONS(917), - [anon_sym_STAR_STAR] = ACTIONS(919), - [anon_sym_PLUS_PLUS] = ACTIONS(919), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_mod] = ACTIONS(919), - [anon_sym_SLASH_SLASH] = ACTIONS(919), - [anon_sym_PLUS] = ACTIONS(917), - [anon_sym_bit_DASHshl] = ACTIONS(919), - [anon_sym_bit_DASHshr] = ACTIONS(919), - [anon_sym_EQ_EQ] = ACTIONS(919), - [anon_sym_BANG_EQ] = ACTIONS(919), - [anon_sym_LT2] = ACTIONS(917), - [anon_sym_LT_EQ] = ACTIONS(919), - [anon_sym_GT_EQ] = ACTIONS(919), - [anon_sym_not_DASHin] = ACTIONS(919), - [anon_sym_starts_DASHwith] = ACTIONS(919), - [anon_sym_ends_DASHwith] = ACTIONS(919), - [anon_sym_EQ_TILDE] = ACTIONS(919), - [anon_sym_BANG_TILDE] = ACTIONS(919), - [anon_sym_bit_DASHand] = ACTIONS(919), - [anon_sym_bit_DASHxor] = ACTIONS(919), - [anon_sym_bit_DASHor] = ACTIONS(919), - [anon_sym_and] = ACTIONS(919), - [anon_sym_xor] = ACTIONS(919), - [anon_sym_or] = ACTIONS(919), - [anon_sym_DOT_DOT2] = ACTIONS(917), - [anon_sym_DOT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ] = ACTIONS(917), - [anon_sym_DOT_DOT_LT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(919), - [anon_sym_DOT_DOT_LT2] = ACTIONS(919), - [aux_sym__immediate_decimal_token2] = ACTIONS(2601), - [anon_sym_null] = ACTIONS(919), - [anon_sym_true] = ACTIONS(919), - [anon_sym_false] = ACTIONS(919), - [aux_sym__val_number_decimal_token1] = ACTIONS(917), - [aux_sym__val_number_decimal_token2] = ACTIONS(919), - [anon_sym_DOT2] = ACTIONS(917), - [aux_sym__val_number_decimal_token3] = ACTIONS(919), - [aux_sym__val_number_token1] = ACTIONS(919), - [aux_sym__val_number_token2] = ACTIONS(919), - [aux_sym__val_number_token3] = ACTIONS(919), - [aux_sym__val_number_token4] = ACTIONS(919), - [aux_sym__val_number_token5] = ACTIONS(919), - [aux_sym__val_number_token6] = ACTIONS(919), - [anon_sym_0b] = ACTIONS(917), - [sym_filesize_unit] = ACTIONS(917), - [sym_duration_unit] = ACTIONS(919), - [anon_sym_0o] = ACTIONS(917), - [anon_sym_0x] = ACTIONS(917), - [sym_val_date] = ACTIONS(919), - [anon_sym_DQUOTE] = ACTIONS(919), - [sym__str_single_quotes] = ACTIONS(919), - [sym__str_back_ticks] = ACTIONS(919), - [anon_sym_err_GT] = ACTIONS(919), - [anon_sym_out_GT] = ACTIONS(919), - [anon_sym_e_GT] = ACTIONS(919), - [anon_sym_o_GT] = ACTIONS(919), - [anon_sym_err_PLUSout_GT] = ACTIONS(919), - [anon_sym_out_PLUSerr_GT] = ACTIONS(919), - [anon_sym_o_PLUSe_GT] = ACTIONS(919), - [anon_sym_e_PLUSo_GT] = ACTIONS(919), - [aux_sym_unquoted_token1] = ACTIONS(917), - [aux_sym_unquoted_token5] = ACTIONS(917), + [1378] = { + [sym_expr_unary] = STATE(6059), + [sym__expr_unary_minus] = STATE(6045), + [sym_expr_binary] = STATE(6059), + [sym__expr_binary_expression] = STATE(6202), + [sym_expr_parenthesized] = STATE(6059), + [sym__val_range] = STATE(10109), + [sym__value] = STATE(6059), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(5958), + [sym_val_variable] = STATE(6041), + [sym__var] = STATE(5406), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(4495), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(6041), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_unquoted] = STATE(6076), + [sym__unquoted_anonymous_prefix] = STATE(10819), + [sym_comment] = STATE(1378), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(4791), + [anon_sym_DOLLAR] = ACTIONS(4793), + [anon_sym_DASH] = ACTIONS(4094), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(4795), + [anon_sym_not] = ACTIONS(4098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4797), + [anon_sym_DOT_DOT_LT] = ACTIONS(4797), + [anon_sym_null] = ACTIONS(4102), + [anon_sym_true] = ACTIONS(4104), + [anon_sym_false] = ACTIONS(4104), + [aux_sym__val_number_decimal_token1] = ACTIONS(4106), + [aux_sym__val_number_decimal_token2] = ACTIONS(4108), + [anon_sym_DOT2] = ACTIONS(4799), + [aux_sym__val_number_decimal_token3] = ACTIONS(4112), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [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(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(4116), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2950), [anon_sym_POUND] = ACTIONS(3), }, - [1150] = { - [sym_comment] = STATE(1150), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_COMMA] = ACTIONS(959), - [anon_sym_RBRACK] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH_DASH] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(959), - [anon_sym_PLUS_PLUS] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(959), - [anon_sym_SLASH_SLASH] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(959), - [anon_sym_bit_DASHshr] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(959), - [anon_sym_BANG_EQ] = ACTIONS(959), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(959), - [anon_sym_GT_EQ] = ACTIONS(959), - [anon_sym_not_DASHin] = ACTIONS(959), - [anon_sym_starts_DASHwith] = ACTIONS(959), - [anon_sym_ends_DASHwith] = ACTIONS(959), - [anon_sym_EQ_TILDE] = ACTIONS(959), - [anon_sym_BANG_TILDE] = ACTIONS(959), - [anon_sym_bit_DASHand] = ACTIONS(959), - [anon_sym_bit_DASHxor] = ACTIONS(959), - [anon_sym_bit_DASHor] = ACTIONS(959), - [anon_sym_and] = ACTIONS(959), - [anon_sym_xor] = ACTIONS(959), - [anon_sym_or] = ACTIONS(959), - [anon_sym_DOT_DOT2] = ACTIONS(2603), - [anon_sym_DOT] = ACTIONS(2605), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_DOT_DOT_LT] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2607), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2607), - [anon_sym_null] = ACTIONS(959), - [anon_sym_true] = ACTIONS(959), - [anon_sym_false] = ACTIONS(959), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(959), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(959), - [aux_sym__val_number_token1] = ACTIONS(959), - [aux_sym__val_number_token2] = ACTIONS(959), - [aux_sym__val_number_token3] = ACTIONS(959), - [aux_sym__val_number_token4] = ACTIONS(959), - [aux_sym__val_number_token5] = ACTIONS(959), - [aux_sym__val_number_token6] = ACTIONS(959), - [anon_sym_0b] = ACTIONS(959), - [sym_filesize_unit] = ACTIONS(2609), - [sym_duration_unit] = ACTIONS(2611), - [anon_sym_0o] = ACTIONS(959), - [anon_sym_0x] = ACTIONS(959), - [sym_val_date] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [sym__str_single_quotes] = ACTIONS(959), - [sym__str_back_ticks] = ACTIONS(959), - [sym__entry_separator] = ACTIONS(961), - [anon_sym_err_GT] = ACTIONS(959), - [anon_sym_out_GT] = ACTIONS(959), - [anon_sym_e_GT] = ACTIONS(959), - [anon_sym_o_GT] = ACTIONS(959), - [anon_sym_err_PLUSout_GT] = ACTIONS(959), - [anon_sym_out_PLUSerr_GT] = ACTIONS(959), - [anon_sym_o_PLUSe_GT] = ACTIONS(959), - [anon_sym_e_PLUSo_GT] = ACTIONS(959), - [aux_sym_unquoted_token5] = ACTIONS(2613), - [aux_sym__unquoted_in_list_token1] = ACTIONS(959), - [anon_sym_POUND] = ACTIONS(113), - }, - [1151] = { - [sym_comment] = STATE(1151), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_COMMA] = ACTIONS(959), - [anon_sym_RBRACK] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH_DASH] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(959), - [anon_sym_PLUS_PLUS] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(959), - [anon_sym_SLASH_SLASH] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(959), - [anon_sym_bit_DASHshr] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(959), - [anon_sym_BANG_EQ] = ACTIONS(959), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(959), - [anon_sym_GT_EQ] = ACTIONS(959), - [anon_sym_not_DASHin] = ACTIONS(959), - [anon_sym_starts_DASHwith] = ACTIONS(959), - [anon_sym_ends_DASHwith] = ACTIONS(959), - [anon_sym_EQ_TILDE] = ACTIONS(959), - [anon_sym_BANG_TILDE] = ACTIONS(959), - [anon_sym_bit_DASHand] = ACTIONS(959), - [anon_sym_bit_DASHxor] = ACTIONS(959), - [anon_sym_bit_DASHor] = ACTIONS(959), - [anon_sym_and] = ACTIONS(959), - [anon_sym_xor] = ACTIONS(959), - [anon_sym_or] = ACTIONS(959), - [anon_sym_DOT_DOT2] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(2615), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_DOT_DOT_LT] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(983), - [anon_sym_DOT_DOT_LT2] = ACTIONS(983), - [anon_sym_null] = ACTIONS(959), - [anon_sym_true] = ACTIONS(959), - [anon_sym_false] = ACTIONS(959), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(959), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(959), - [aux_sym__val_number_token1] = ACTIONS(959), - [aux_sym__val_number_token2] = ACTIONS(959), - [aux_sym__val_number_token3] = ACTIONS(959), - [aux_sym__val_number_token4] = ACTIONS(959), - [aux_sym__val_number_token5] = ACTIONS(959), - [aux_sym__val_number_token6] = ACTIONS(959), - [anon_sym_0b] = ACTIONS(959), - [sym_filesize_unit] = ACTIONS(2609), - [sym_duration_unit] = ACTIONS(2611), - [anon_sym_0o] = ACTIONS(959), - [anon_sym_0x] = ACTIONS(959), - [sym_val_date] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [sym__str_single_quotes] = ACTIONS(959), - [sym__str_back_ticks] = ACTIONS(959), - [sym__entry_separator] = ACTIONS(961), - [anon_sym_err_GT] = ACTIONS(959), - [anon_sym_out_GT] = ACTIONS(959), - [anon_sym_e_GT] = ACTIONS(959), - [anon_sym_o_GT] = ACTIONS(959), - [anon_sym_err_PLUSout_GT] = ACTIONS(959), - [anon_sym_out_PLUSerr_GT] = ACTIONS(959), - [anon_sym_o_PLUSe_GT] = ACTIONS(959), - [anon_sym_e_PLUSo_GT] = ACTIONS(959), - [aux_sym_unquoted_token5] = ACTIONS(2577), - [aux_sym__unquoted_in_list_token1] = ACTIONS(959), - [anon_sym_POUND] = ACTIONS(113), + [1379] = { + [sym_expr_unary] = STATE(6059), + [sym__expr_unary_minus] = STATE(6045), + [sym_expr_binary] = STATE(6059), + [sym__expr_binary_expression] = STATE(6077), + [sym_expr_parenthesized] = STATE(6059), + [sym__val_range] = STATE(10109), + [sym__value] = STATE(6059), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(5958), + [sym_val_variable] = STATE(6041), + [sym__var] = STATE(5406), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(4495), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(6041), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_unquoted] = STATE(6078), + [sym__unquoted_anonymous_prefix] = STATE(10819), + [sym_comment] = STATE(1379), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(4791), + [anon_sym_DOLLAR] = ACTIONS(4793), + [anon_sym_DASH] = ACTIONS(4094), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(4795), + [anon_sym_not] = ACTIONS(4098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4797), + [anon_sym_DOT_DOT_LT] = ACTIONS(4797), + [anon_sym_null] = ACTIONS(4102), + [anon_sym_true] = ACTIONS(4104), + [anon_sym_false] = ACTIONS(4104), + [aux_sym__val_number_decimal_token1] = ACTIONS(4106), + [aux_sym__val_number_decimal_token2] = ACTIONS(4108), + [anon_sym_DOT2] = ACTIONS(4799), + [aux_sym__val_number_decimal_token3] = ACTIONS(4112), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [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(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(4116), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2950), + [anon_sym_POUND] = ACTIONS(3), }, - [1152] = { - [sym__expr_parenthesized_immediate] = STATE(1634), - [sym__immediate_decimal] = STATE(1639), - [sym_val_variable] = STATE(1634), - [sym__var] = STATE(1295), - [sym_comment] = STATE(1152), - [anon_sym_export] = ACTIONS(2387), - [anon_sym_alias] = ACTIONS(2387), - [anon_sym_let] = ACTIONS(2387), - [anon_sym_let_DASHenv] = ACTIONS(2387), - [anon_sym_mut] = ACTIONS(2387), - [anon_sym_const] = ACTIONS(2387), - [anon_sym_SEMI] = ACTIONS(2387), - [sym_cmd_identifier] = ACTIONS(2387), - [anon_sym_LF] = ACTIONS(2389), - [anon_sym_def] = ACTIONS(2387), - [anon_sym_export_DASHenv] = ACTIONS(2387), - [anon_sym_extern] = ACTIONS(2387), - [anon_sym_module] = ACTIONS(2387), - [anon_sym_use] = ACTIONS(2387), - [anon_sym_LBRACK] = ACTIONS(2387), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_RPAREN] = ACTIONS(2387), - [anon_sym_DOLLAR] = ACTIONS(2555), - [anon_sym_error] = ACTIONS(2387), - [anon_sym_DASH] = ACTIONS(2387), - [anon_sym_break] = ACTIONS(2387), - [anon_sym_continue] = ACTIONS(2387), - [anon_sym_for] = ACTIONS(2387), - [anon_sym_loop] = ACTIONS(2387), - [anon_sym_while] = ACTIONS(2387), - [anon_sym_do] = ACTIONS(2387), - [anon_sym_if] = ACTIONS(2387), - [anon_sym_match] = ACTIONS(2387), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_RBRACE] = ACTIONS(2387), - [anon_sym_DOT_DOT] = ACTIONS(2387), - [anon_sym_try] = ACTIONS(2387), - [anon_sym_return] = ACTIONS(2387), - [anon_sym_source] = ACTIONS(2387), - [anon_sym_source_DASHenv] = ACTIONS(2387), - [anon_sym_register] = ACTIONS(2387), - [anon_sym_hide] = ACTIONS(2387), - [anon_sym_hide_DASHenv] = ACTIONS(2387), - [anon_sym_overlay] = ACTIONS(2387), - [anon_sym_where] = ACTIONS(2387), - [anon_sym_not] = ACTIONS(2387), - [anon_sym_LPAREN2] = ACTIONS(2557), - [anon_sym_DOT] = ACTIONS(2617), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2387), - [anon_sym_DOT_DOT_LT] = ACTIONS(2387), - [aux_sym__immediate_decimal_token1] = ACTIONS(2561), - [aux_sym__immediate_decimal_token3] = ACTIONS(2561), - [aux_sym__immediate_decimal_token4] = ACTIONS(2563), - [anon_sym_null] = ACTIONS(2387), - [anon_sym_true] = ACTIONS(2387), - [anon_sym_false] = ACTIONS(2387), - [aux_sym__val_number_decimal_token1] = ACTIONS(2387), - [aux_sym__val_number_decimal_token2] = ACTIONS(2387), - [anon_sym_DOT2] = ACTIONS(2387), - [aux_sym__val_number_decimal_token3] = 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(2387), - [aux_sym__val_number_token5] = ACTIONS(2387), - [aux_sym__val_number_token6] = ACTIONS(2387), - [anon_sym_0b] = ACTIONS(2387), - [anon_sym_0o] = ACTIONS(2387), - [anon_sym_0x] = ACTIONS(2387), - [sym_val_date] = ACTIONS(2387), - [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_CARET] = ACTIONS(2387), - [anon_sym_POUND] = ACTIONS(113), + [1380] = { + [sym_expr_unary] = STATE(6059), + [sym__expr_unary_minus] = STATE(6045), + [sym_expr_binary] = STATE(6059), + [sym__expr_binary_expression] = STATE(6079), + [sym_expr_parenthesized] = STATE(6059), + [sym__val_range] = STATE(10109), + [sym__value] = STATE(6059), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(5958), + [sym_val_variable] = STATE(6041), + [sym__var] = STATE(5406), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(4495), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(6041), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_unquoted] = STATE(6080), + [sym__unquoted_anonymous_prefix] = STATE(10819), + [sym_comment] = STATE(1380), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(4791), + [anon_sym_DOLLAR] = ACTIONS(4793), + [anon_sym_DASH] = ACTIONS(4094), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(4795), + [anon_sym_not] = ACTIONS(4098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4797), + [anon_sym_DOT_DOT_LT] = ACTIONS(4797), + [anon_sym_null] = ACTIONS(4102), + [anon_sym_true] = ACTIONS(4104), + [anon_sym_false] = ACTIONS(4104), + [aux_sym__val_number_decimal_token1] = ACTIONS(4106), + [aux_sym__val_number_decimal_token2] = ACTIONS(4108), + [anon_sym_DOT2] = ACTIONS(4799), + [aux_sym__val_number_decimal_token3] = ACTIONS(4112), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [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(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(4116), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2950), + [anon_sym_POUND] = ACTIONS(3), }, - [1153] = { - [sym__expr_parenthesized_immediate] = STATE(2712), - [sym__immediate_decimal] = STATE(2713), - [sym_val_variable] = STATE(2712), - [sym__var] = STATE(1690), - [sym_comment] = STATE(1153), - [anon_sym_export] = ACTIONS(2387), - [anon_sym_alias] = ACTIONS(2387), - [anon_sym_let] = ACTIONS(2387), - [anon_sym_let_DASHenv] = ACTIONS(2387), - [anon_sym_mut] = ACTIONS(2387), - [anon_sym_const] = ACTIONS(2387), - [anon_sym_SEMI] = ACTIONS(2387), - [sym_cmd_identifier] = ACTIONS(2387), - [anon_sym_LF] = ACTIONS(2389), - [anon_sym_def] = ACTIONS(2387), - [anon_sym_export_DASHenv] = ACTIONS(2387), - [anon_sym_extern] = ACTIONS(2387), - [anon_sym_module] = ACTIONS(2387), - [anon_sym_use] = ACTIONS(2387), - [anon_sym_LBRACK] = ACTIONS(2387), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_RPAREN] = ACTIONS(2387), - [anon_sym_DOLLAR] = ACTIONS(2565), - [anon_sym_error] = ACTIONS(2387), - [anon_sym_DASH] = ACTIONS(2387), - [anon_sym_break] = ACTIONS(2387), - [anon_sym_continue] = ACTIONS(2387), - [anon_sym_for] = ACTIONS(2387), - [anon_sym_loop] = ACTIONS(2387), - [anon_sym_while] = ACTIONS(2387), - [anon_sym_do] = ACTIONS(2387), - [anon_sym_if] = ACTIONS(2387), - [anon_sym_match] = ACTIONS(2387), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_RBRACE] = ACTIONS(2387), - [anon_sym_DOT_DOT] = ACTIONS(2387), - [anon_sym_try] = ACTIONS(2387), - [anon_sym_return] = ACTIONS(2387), - [anon_sym_source] = ACTIONS(2387), - [anon_sym_source_DASHenv] = ACTIONS(2387), - [anon_sym_register] = ACTIONS(2387), - [anon_sym_hide] = ACTIONS(2387), - [anon_sym_hide_DASHenv] = ACTIONS(2387), - [anon_sym_overlay] = ACTIONS(2387), - [anon_sym_where] = ACTIONS(2387), - [anon_sym_not] = ACTIONS(2387), - [anon_sym_LPAREN2] = ACTIONS(2567), - [anon_sym_DOT] = ACTIONS(2569), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2387), - [anon_sym_DOT_DOT_LT] = ACTIONS(2387), - [aux_sym__immediate_decimal_token1] = ACTIONS(2571), - [aux_sym__immediate_decimal_token3] = ACTIONS(2571), - [aux_sym__immediate_decimal_token4] = ACTIONS(2573), - [anon_sym_null] = ACTIONS(2387), - [anon_sym_true] = ACTIONS(2387), - [anon_sym_false] = ACTIONS(2387), - [aux_sym__val_number_decimal_token1] = ACTIONS(2387), - [aux_sym__val_number_decimal_token2] = ACTIONS(2387), - [anon_sym_DOT2] = ACTIONS(2387), - [aux_sym__val_number_decimal_token3] = 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(2387), - [aux_sym__val_number_token5] = ACTIONS(2387), - [aux_sym__val_number_token6] = ACTIONS(2387), - [anon_sym_0b] = ACTIONS(2387), - [anon_sym_0o] = ACTIONS(2387), - [anon_sym_0x] = ACTIONS(2387), - [sym_val_date] = ACTIONS(2387), - [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_CARET] = ACTIONS(2387), + [1381] = { + [sym_comment] = STATE(1381), + [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_COMMA] = ACTIONS(1165), + [anon_sym_RBRACK] = ACTIONS(1165), + [anon_sym_LPAREN] = ACTIONS(1165), + [anon_sym_DOLLAR] = ACTIONS(1165), + [anon_sym_GT] = ACTIONS(1165), + [anon_sym_DASH_DASH] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_in] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(1165), + [anon_sym_DOT_DOT] = ACTIONS(1165), + [anon_sym_STAR] = ACTIONS(1165), + [anon_sym_STAR_STAR] = ACTIONS(1165), + [anon_sym_PLUS_PLUS] = ACTIONS(1165), + [anon_sym_SLASH] = ACTIONS(1165), + [anon_sym_mod] = ACTIONS(1165), + [anon_sym_SLASH_SLASH] = ACTIONS(1165), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_bit_DASHshl] = ACTIONS(1165), + [anon_sym_bit_DASHshr] = ACTIONS(1165), + [anon_sym_EQ_EQ] = ACTIONS(1165), + [anon_sym_BANG_EQ] = ACTIONS(1165), + [anon_sym_LT2] = ACTIONS(1165), + [anon_sym_LT_EQ] = ACTIONS(1165), + [anon_sym_GT_EQ] = ACTIONS(1165), + [anon_sym_not_DASHin] = ACTIONS(1165), + [anon_sym_starts_DASHwith] = ACTIONS(1165), + [anon_sym_ends_DASHwith] = ACTIONS(1165), + [anon_sym_EQ_TILDE] = ACTIONS(1165), + [anon_sym_BANG_TILDE] = ACTIONS(1165), + [anon_sym_bit_DASHand] = ACTIONS(1165), + [anon_sym_bit_DASHxor] = ACTIONS(1165), + [anon_sym_bit_DASHor] = ACTIONS(1165), + [anon_sym_and] = ACTIONS(1165), + [anon_sym_xor] = ACTIONS(1165), + [anon_sym_or] = ACTIONS(1165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1165), + [anon_sym_DOT_DOT_LT] = ACTIONS(1165), + [anon_sym_null] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1165), + [anon_sym_false] = ACTIONS(1165), + [aux_sym__val_number_decimal_token1] = ACTIONS(1165), + [aux_sym__val_number_decimal_token2] = ACTIONS(1165), + [anon_sym_DOT2] = ACTIONS(1165), + [aux_sym__val_number_decimal_token3] = ACTIONS(1165), + [aux_sym__val_number_token1] = ACTIONS(1165), + [aux_sym__val_number_token2] = ACTIONS(1165), + [aux_sym__val_number_token3] = ACTIONS(1165), + [aux_sym__val_number_token4] = ACTIONS(1165), + [aux_sym__val_number_token5] = ACTIONS(1165), + [aux_sym__val_number_token6] = ACTIONS(1165), + [anon_sym_0b] = ACTIONS(1165), + [anon_sym_0o] = ACTIONS(1165), + [anon_sym_0x] = ACTIONS(1165), + [sym_val_date] = ACTIONS(1165), + [anon_sym_DQUOTE] = ACTIONS(1165), + [sym__str_single_quotes] = ACTIONS(1165), + [sym__str_back_ticks] = ACTIONS(1165), + [sym__entry_separator] = ACTIONS(1167), + [anon_sym_err_GT] = ACTIONS(1165), + [anon_sym_out_GT] = ACTIONS(1165), + [anon_sym_e_GT] = ACTIONS(1165), + [anon_sym_o_GT] = ACTIONS(1165), + [anon_sym_err_PLUSout_GT] = ACTIONS(1165), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1165), + [anon_sym_o_PLUSe_GT] = ACTIONS(1165), + [anon_sym_e_PLUSo_GT] = ACTIONS(1165), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1165), [anon_sym_POUND] = ACTIONS(113), }, - [1154] = { - [sym_comment] = STATE(1154), - [anon_sym_LBRACK] = ACTIONS(925), - [anon_sym_COMMA] = ACTIONS(925), - [anon_sym_LPAREN] = ACTIONS(925), - [anon_sym_DOLLAR] = ACTIONS(925), - [anon_sym_GT] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_in] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_RBRACE] = ACTIONS(925), - [anon_sym__] = ACTIONS(923), - [anon_sym_DOT_DOT] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_STAR_STAR] = ACTIONS(925), - [anon_sym_PLUS_PLUS] = ACTIONS(925), - [anon_sym_SLASH] = ACTIONS(923), - [anon_sym_mod] = ACTIONS(925), - [anon_sym_SLASH_SLASH] = ACTIONS(925), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_bit_DASHshl] = ACTIONS(925), - [anon_sym_bit_DASHshr] = ACTIONS(925), - [anon_sym_EQ_EQ] = ACTIONS(925), - [anon_sym_BANG_EQ] = ACTIONS(925), - [anon_sym_LT2] = ACTIONS(923), - [anon_sym_LT_EQ] = ACTIONS(925), - [anon_sym_GT_EQ] = ACTIONS(925), - [anon_sym_not_DASHin] = ACTIONS(925), - [anon_sym_starts_DASHwith] = ACTIONS(925), - [anon_sym_ends_DASHwith] = ACTIONS(925), - [anon_sym_EQ_TILDE] = ACTIONS(925), - [anon_sym_BANG_TILDE] = ACTIONS(925), - [anon_sym_bit_DASHand] = ACTIONS(925), - [anon_sym_bit_DASHxor] = ACTIONS(925), - [anon_sym_bit_DASHor] = ACTIONS(925), - [anon_sym_and] = ACTIONS(925), - [anon_sym_xor] = ACTIONS(925), - [anon_sym_or] = ACTIONS(925), - [anon_sym_DOT_DOT2] = ACTIONS(923), - [anon_sym_DOT] = ACTIONS(2619), - [anon_sym_DOT_DOT_EQ] = ACTIONS(923), - [anon_sym_DOT_DOT_LT] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(925), - [anon_sym_DOT_DOT_LT2] = ACTIONS(925), - [aux_sym__immediate_decimal_token2] = ACTIONS(2599), - [anon_sym_null] = ACTIONS(925), - [anon_sym_true] = ACTIONS(925), - [anon_sym_false] = ACTIONS(925), - [aux_sym__val_number_decimal_token1] = ACTIONS(923), - [aux_sym__val_number_decimal_token2] = ACTIONS(925), - [anon_sym_DOT2] = ACTIONS(923), - [aux_sym__val_number_decimal_token3] = ACTIONS(925), - [aux_sym__val_number_token1] = ACTIONS(925), - [aux_sym__val_number_token2] = ACTIONS(925), - [aux_sym__val_number_token3] = ACTIONS(925), - [aux_sym__val_number_token4] = ACTIONS(925), - [aux_sym__val_number_token5] = ACTIONS(925), - [aux_sym__val_number_token6] = ACTIONS(925), - [anon_sym_0b] = ACTIONS(923), - [sym_filesize_unit] = ACTIONS(923), - [sym_duration_unit] = ACTIONS(925), - [anon_sym_0o] = ACTIONS(923), - [anon_sym_0x] = ACTIONS(923), - [sym_val_date] = ACTIONS(925), - [anon_sym_DQUOTE] = ACTIONS(925), - [sym__str_single_quotes] = ACTIONS(925), - [sym__str_back_ticks] = ACTIONS(925), - [anon_sym_err_GT] = ACTIONS(925), - [anon_sym_out_GT] = ACTIONS(925), - [anon_sym_e_GT] = ACTIONS(925), - [anon_sym_o_GT] = ACTIONS(925), - [anon_sym_err_PLUSout_GT] = ACTIONS(925), - [anon_sym_out_PLUSerr_GT] = ACTIONS(925), - [anon_sym_o_PLUSe_GT] = ACTIONS(925), - [anon_sym_e_PLUSo_GT] = ACTIONS(925), - [aux_sym_unquoted_token1] = ACTIONS(923), - [aux_sym_unquoted_token5] = ACTIONS(923), + [1382] = { + [sym_expr_unary] = STATE(6059), + [sym__expr_unary_minus] = STATE(6045), + [sym_expr_binary] = STATE(6059), + [sym__expr_binary_expression] = STATE(6081), + [sym_expr_parenthesized] = STATE(6059), + [sym__val_range] = STATE(10109), + [sym__value] = STATE(6059), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(5958), + [sym_val_variable] = STATE(6041), + [sym__var] = STATE(5406), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(4495), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(6041), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_unquoted] = STATE(6082), + [sym__unquoted_anonymous_prefix] = STATE(10819), + [sym_comment] = STATE(1382), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(4791), + [anon_sym_DOLLAR] = ACTIONS(4793), + [anon_sym_DASH] = ACTIONS(4094), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(4795), + [anon_sym_not] = ACTIONS(4098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4797), + [anon_sym_DOT_DOT_LT] = ACTIONS(4797), + [anon_sym_null] = ACTIONS(4102), + [anon_sym_true] = ACTIONS(4104), + [anon_sym_false] = ACTIONS(4104), + [aux_sym__val_number_decimal_token1] = ACTIONS(4106), + [aux_sym__val_number_decimal_token2] = ACTIONS(4108), + [anon_sym_DOT2] = ACTIONS(4799), + [aux_sym__val_number_decimal_token3] = ACTIONS(4112), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [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(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(4116), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2950), [anon_sym_POUND] = ACTIONS(3), }, - [1155] = { - [sym__expr_parenthesized_immediate] = STATE(2725), - [sym__immediate_decimal] = STATE(2726), - [sym_val_variable] = STATE(2725), - [sym__var] = STATE(1690), - [sym_comment] = STATE(1155), - [anon_sym_export] = ACTIONS(2349), - [anon_sym_alias] = ACTIONS(2349), - [anon_sym_let] = ACTIONS(2349), - [anon_sym_let_DASHenv] = ACTIONS(2349), - [anon_sym_mut] = ACTIONS(2349), - [anon_sym_const] = ACTIONS(2349), - [anon_sym_SEMI] = ACTIONS(2349), - [sym_cmd_identifier] = ACTIONS(2349), - [anon_sym_LF] = ACTIONS(2351), - [anon_sym_def] = ACTIONS(2349), - [anon_sym_export_DASHenv] = ACTIONS(2349), - [anon_sym_extern] = ACTIONS(2349), - [anon_sym_module] = ACTIONS(2349), - [anon_sym_use] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(2349), - [anon_sym_RPAREN] = ACTIONS(2349), - [anon_sym_DOLLAR] = ACTIONS(2565), - [anon_sym_error] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2349), - [anon_sym_break] = ACTIONS(2349), - [anon_sym_continue] = ACTIONS(2349), - [anon_sym_for] = ACTIONS(2349), - [anon_sym_loop] = ACTIONS(2349), - [anon_sym_while] = ACTIONS(2349), - [anon_sym_do] = ACTIONS(2349), - [anon_sym_if] = ACTIONS(2349), - [anon_sym_match] = ACTIONS(2349), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_DOT_DOT] = ACTIONS(2349), - [anon_sym_try] = ACTIONS(2349), - [anon_sym_return] = ACTIONS(2349), - [anon_sym_source] = ACTIONS(2349), - [anon_sym_source_DASHenv] = ACTIONS(2349), - [anon_sym_register] = ACTIONS(2349), - [anon_sym_hide] = ACTIONS(2349), - [anon_sym_hide_DASHenv] = ACTIONS(2349), - [anon_sym_overlay] = ACTIONS(2349), - [anon_sym_where] = ACTIONS(2349), - [anon_sym_not] = ACTIONS(2349), - [anon_sym_LPAREN2] = ACTIONS(2567), - [anon_sym_DOT] = ACTIONS(2569), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2349), - [anon_sym_DOT_DOT_LT] = ACTIONS(2349), - [aux_sym__immediate_decimal_token1] = ACTIONS(2571), - [aux_sym__immediate_decimal_token3] = ACTIONS(2571), - [aux_sym__immediate_decimal_token4] = ACTIONS(2573), - [anon_sym_null] = ACTIONS(2349), - [anon_sym_true] = ACTIONS(2349), - [anon_sym_false] = ACTIONS(2349), - [aux_sym__val_number_decimal_token1] = ACTIONS(2349), - [aux_sym__val_number_decimal_token2] = ACTIONS(2349), - [anon_sym_DOT2] = ACTIONS(2349), - [aux_sym__val_number_decimal_token3] = ACTIONS(2349), - [aux_sym__val_number_token1] = ACTIONS(2349), - [aux_sym__val_number_token2] = ACTIONS(2349), - [aux_sym__val_number_token3] = ACTIONS(2349), - [aux_sym__val_number_token4] = ACTIONS(2349), - [aux_sym__val_number_token5] = ACTIONS(2349), - [aux_sym__val_number_token6] = ACTIONS(2349), - [anon_sym_0b] = ACTIONS(2349), - [anon_sym_0o] = ACTIONS(2349), - [anon_sym_0x] = ACTIONS(2349), - [sym_val_date] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym__str_single_quotes] = ACTIONS(2349), - [sym__str_back_ticks] = ACTIONS(2349), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2349), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2349), - [anon_sym_CARET] = ACTIONS(2349), - [anon_sym_POUND] = ACTIONS(113), + [1383] = { + [sym_expr_unary] = STATE(6059), + [sym__expr_unary_minus] = STATE(6045), + [sym_expr_binary] = STATE(6059), + [sym__expr_binary_expression] = STATE(6083), + [sym_expr_parenthesized] = STATE(6059), + [sym__val_range] = STATE(10109), + [sym__value] = STATE(6059), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(5958), + [sym_val_variable] = STATE(6041), + [sym__var] = STATE(5406), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(4495), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(6041), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_unquoted] = STATE(6084), + [sym__unquoted_anonymous_prefix] = STATE(10819), + [sym_comment] = STATE(1383), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(4791), + [anon_sym_DOLLAR] = ACTIONS(4793), + [anon_sym_DASH] = ACTIONS(4094), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(4795), + [anon_sym_not] = ACTIONS(4098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4797), + [anon_sym_DOT_DOT_LT] = ACTIONS(4797), + [anon_sym_null] = ACTIONS(4102), + [anon_sym_true] = ACTIONS(4104), + [anon_sym_false] = ACTIONS(4104), + [aux_sym__val_number_decimal_token1] = ACTIONS(4106), + [aux_sym__val_number_decimal_token2] = ACTIONS(4108), + [anon_sym_DOT2] = ACTIONS(4799), + [aux_sym__val_number_decimal_token3] = ACTIONS(4112), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [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(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(4116), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2950), + [anon_sym_POUND] = ACTIONS(3), }, - [1156] = { - [sym__expr_parenthesized_immediate] = STATE(2803), - [sym__immediate_decimal] = STATE(2728), - [sym_val_variable] = STATE(2803), - [sym__var] = STATE(1690), - [sym_comment] = STATE(1156), - [anon_sym_export] = ACTIONS(2359), - [anon_sym_alias] = ACTIONS(2359), - [anon_sym_let] = ACTIONS(2359), - [anon_sym_let_DASHenv] = ACTIONS(2359), - [anon_sym_mut] = ACTIONS(2359), - [anon_sym_const] = ACTIONS(2359), - [anon_sym_SEMI] = ACTIONS(2359), - [sym_cmd_identifier] = ACTIONS(2359), - [anon_sym_LF] = ACTIONS(2361), - [anon_sym_def] = ACTIONS(2359), - [anon_sym_export_DASHenv] = ACTIONS(2359), - [anon_sym_extern] = ACTIONS(2359), - [anon_sym_module] = ACTIONS(2359), - [anon_sym_use] = ACTIONS(2359), - [anon_sym_LBRACK] = ACTIONS(2359), - [anon_sym_LPAREN] = ACTIONS(2359), - [anon_sym_RPAREN] = ACTIONS(2359), - [anon_sym_DOLLAR] = ACTIONS(2565), - [anon_sym_error] = ACTIONS(2359), - [anon_sym_DASH] = ACTIONS(2359), - [anon_sym_break] = ACTIONS(2359), - [anon_sym_continue] = ACTIONS(2359), - [anon_sym_for] = ACTIONS(2359), - [anon_sym_loop] = ACTIONS(2359), - [anon_sym_while] = ACTIONS(2359), - [anon_sym_do] = ACTIONS(2359), - [anon_sym_if] = ACTIONS(2359), - [anon_sym_match] = ACTIONS(2359), - [anon_sym_LBRACE] = ACTIONS(2359), - [anon_sym_RBRACE] = ACTIONS(2359), - [anon_sym_DOT_DOT] = ACTIONS(2359), - [anon_sym_try] = ACTIONS(2359), - [anon_sym_return] = ACTIONS(2359), - [anon_sym_source] = ACTIONS(2359), - [anon_sym_source_DASHenv] = ACTIONS(2359), - [anon_sym_register] = ACTIONS(2359), - [anon_sym_hide] = ACTIONS(2359), - [anon_sym_hide_DASHenv] = ACTIONS(2359), - [anon_sym_overlay] = ACTIONS(2359), - [anon_sym_where] = ACTIONS(2359), - [anon_sym_not] = ACTIONS(2359), - [anon_sym_LPAREN2] = ACTIONS(2567), - [anon_sym_DOT] = ACTIONS(2569), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2359), - [anon_sym_DOT_DOT_LT] = ACTIONS(2359), - [aux_sym__immediate_decimal_token1] = ACTIONS(2571), - [aux_sym__immediate_decimal_token3] = ACTIONS(2571), - [aux_sym__immediate_decimal_token4] = ACTIONS(2573), - [anon_sym_null] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(2359), - [anon_sym_false] = ACTIONS(2359), - [aux_sym__val_number_decimal_token1] = ACTIONS(2359), - [aux_sym__val_number_decimal_token2] = ACTIONS(2359), - [anon_sym_DOT2] = ACTIONS(2359), - [aux_sym__val_number_decimal_token3] = ACTIONS(2359), - [aux_sym__val_number_token1] = ACTIONS(2359), - [aux_sym__val_number_token2] = ACTIONS(2359), - [aux_sym__val_number_token3] = ACTIONS(2359), - [aux_sym__val_number_token4] = ACTIONS(2359), - [aux_sym__val_number_token5] = ACTIONS(2359), - [aux_sym__val_number_token6] = ACTIONS(2359), - [anon_sym_0b] = ACTIONS(2359), - [anon_sym_0o] = ACTIONS(2359), - [anon_sym_0x] = ACTIONS(2359), - [sym_val_date] = ACTIONS(2359), - [anon_sym_DQUOTE] = ACTIONS(2359), - [sym__str_single_quotes] = ACTIONS(2359), - [sym__str_back_ticks] = ACTIONS(2359), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2359), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2359), - [anon_sym_CARET] = ACTIONS(2359), + [1384] = { + [sym_comment] = STATE(1384), + [anon_sym_export] = ACTIONS(1139), + [anon_sym_alias] = ACTIONS(1139), + [anon_sym_let] = ACTIONS(1139), + [anon_sym_let_DASHenv] = ACTIONS(1139), + [anon_sym_mut] = ACTIONS(1139), + [anon_sym_const] = ACTIONS(1139), + [anon_sym_SEMI] = ACTIONS(1139), + [sym_cmd_identifier] = ACTIONS(1139), + [anon_sym_LF] = ACTIONS(1209), + [anon_sym_def] = ACTIONS(1139), + [anon_sym_export_DASHenv] = ACTIONS(1139), + [anon_sym_extern] = ACTIONS(1139), + [anon_sym_module] = ACTIONS(1139), + [anon_sym_use] = ACTIONS(1139), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LPAREN] = ACTIONS(1139), + [anon_sym_RPAREN] = ACTIONS(1139), + [anon_sym_PIPE] = ACTIONS(1139), + [anon_sym_DOLLAR] = ACTIONS(1139), + [anon_sym_error] = ACTIONS(1139), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_break] = ACTIONS(1139), + [anon_sym_continue] = ACTIONS(1139), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_loop] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1139), + [anon_sym_do] = ACTIONS(1139), + [anon_sym_if] = ACTIONS(1139), + [anon_sym_match] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1139), + [anon_sym_RBRACE] = ACTIONS(1139), + [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_try] = ACTIONS(1139), + [anon_sym_return] = ACTIONS(1139), + [anon_sym_source] = ACTIONS(1139), + [anon_sym_source_DASHenv] = ACTIONS(1139), + [anon_sym_register] = ACTIONS(1139), + [anon_sym_hide] = ACTIONS(1139), + [anon_sym_hide_DASHenv] = ACTIONS(1139), + [anon_sym_overlay] = ACTIONS(1139), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_where] = ACTIONS(1139), + [anon_sym_not] = ACTIONS(1139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1139), + [anon_sym_DOT_DOT_LT] = ACTIONS(1139), + [anon_sym_null] = ACTIONS(1139), + [anon_sym_true] = ACTIONS(1139), + [anon_sym_false] = ACTIONS(1139), + [aux_sym__val_number_decimal_token1] = ACTIONS(1139), + [aux_sym__val_number_decimal_token2] = ACTIONS(1139), + [anon_sym_DOT2] = ACTIONS(1139), + [aux_sym__val_number_decimal_token3] = ACTIONS(1139), + [aux_sym__val_number_token1] = ACTIONS(1139), + [aux_sym__val_number_token2] = ACTIONS(1139), + [aux_sym__val_number_token3] = ACTIONS(1139), + [aux_sym__val_number_token4] = ACTIONS(1139), + [aux_sym__val_number_token5] = ACTIONS(1139), + [aux_sym__val_number_token6] = ACTIONS(1139), + [anon_sym_0b] = ACTIONS(1139), + [anon_sym_0o] = ACTIONS(1139), + [anon_sym_0x] = ACTIONS(1139), + [sym_val_date] = ACTIONS(1139), + [anon_sym_DQUOTE] = ACTIONS(1139), + [sym__str_single_quotes] = ACTIONS(1139), + [sym__str_back_ticks] = ACTIONS(1139), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1139), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1139), + [anon_sym_CARET] = ACTIONS(1139), [anon_sym_POUND] = ACTIONS(113), }, - [1157] = { - [sym__expr_parenthesized_immediate] = STATE(2729), - [sym__immediate_decimal] = STATE(2730), - [sym_val_variable] = STATE(2729), - [sym__var] = STATE(1690), - [sym_comment] = STATE(1157), - [anon_sym_export] = ACTIONS(2383), - [anon_sym_alias] = ACTIONS(2383), - [anon_sym_let] = ACTIONS(2383), - [anon_sym_let_DASHenv] = ACTIONS(2383), - [anon_sym_mut] = ACTIONS(2383), - [anon_sym_const] = ACTIONS(2383), - [anon_sym_SEMI] = ACTIONS(2383), - [sym_cmd_identifier] = ACTIONS(2383), - [anon_sym_LF] = ACTIONS(2385), - [anon_sym_def] = ACTIONS(2383), - [anon_sym_export_DASHenv] = ACTIONS(2383), - [anon_sym_extern] = ACTIONS(2383), - [anon_sym_module] = ACTIONS(2383), - [anon_sym_use] = ACTIONS(2383), - [anon_sym_LBRACK] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2383), - [anon_sym_RPAREN] = ACTIONS(2383), - [anon_sym_DOLLAR] = ACTIONS(2565), - [anon_sym_error] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2383), - [anon_sym_break] = ACTIONS(2383), - [anon_sym_continue] = ACTIONS(2383), - [anon_sym_for] = ACTIONS(2383), - [anon_sym_loop] = ACTIONS(2383), - [anon_sym_while] = ACTIONS(2383), - [anon_sym_do] = ACTIONS(2383), - [anon_sym_if] = ACTIONS(2383), - [anon_sym_match] = ACTIONS(2383), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(2383), - [anon_sym_DOT_DOT] = ACTIONS(2383), - [anon_sym_try] = ACTIONS(2383), - [anon_sym_return] = ACTIONS(2383), - [anon_sym_source] = ACTIONS(2383), - [anon_sym_source_DASHenv] = ACTIONS(2383), - [anon_sym_register] = ACTIONS(2383), - [anon_sym_hide] = ACTIONS(2383), - [anon_sym_hide_DASHenv] = ACTIONS(2383), - [anon_sym_overlay] = ACTIONS(2383), - [anon_sym_where] = ACTIONS(2383), - [anon_sym_not] = ACTIONS(2383), - [anon_sym_LPAREN2] = ACTIONS(2567), - [anon_sym_DOT] = ACTIONS(2569), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2383), - [anon_sym_DOT_DOT_LT] = ACTIONS(2383), - [aux_sym__immediate_decimal_token1] = ACTIONS(2571), - [aux_sym__immediate_decimal_token3] = ACTIONS(2571), - [aux_sym__immediate_decimal_token4] = ACTIONS(2573), - [anon_sym_null] = ACTIONS(2383), - [anon_sym_true] = ACTIONS(2383), - [anon_sym_false] = ACTIONS(2383), - [aux_sym__val_number_decimal_token1] = ACTIONS(2383), - [aux_sym__val_number_decimal_token2] = ACTIONS(2383), - [anon_sym_DOT2] = ACTIONS(2383), - [aux_sym__val_number_decimal_token3] = ACTIONS(2383), - [aux_sym__val_number_token1] = ACTIONS(2383), - [aux_sym__val_number_token2] = ACTIONS(2383), - [aux_sym__val_number_token3] = ACTIONS(2383), - [aux_sym__val_number_token4] = ACTIONS(2383), - [aux_sym__val_number_token5] = ACTIONS(2383), - [aux_sym__val_number_token6] = ACTIONS(2383), - [anon_sym_0b] = ACTIONS(2383), - [anon_sym_0o] = ACTIONS(2383), - [anon_sym_0x] = ACTIONS(2383), - [sym_val_date] = ACTIONS(2383), - [anon_sym_DQUOTE] = ACTIONS(2383), - [sym__str_single_quotes] = ACTIONS(2383), - [sym__str_back_ticks] = ACTIONS(2383), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2383), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2383), - [anon_sym_CARET] = ACTIONS(2383), + [1385] = { + [sym_comment] = STATE(1385), + [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_COMMA] = ACTIONS(1283), + [anon_sym_RBRACK] = ACTIONS(1283), + [anon_sym_LPAREN] = ACTIONS(1283), + [anon_sym_DOLLAR] = ACTIONS(1283), + [anon_sym_GT] = ACTIONS(1283), + [anon_sym_DASH_DASH] = ACTIONS(1283), + [anon_sym_DASH] = ACTIONS(1283), + [anon_sym_in] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1283), + [anon_sym_DOT_DOT] = ACTIONS(1283), + [anon_sym_STAR] = ACTIONS(1283), + [anon_sym_STAR_STAR] = ACTIONS(1283), + [anon_sym_PLUS_PLUS] = ACTIONS(1283), + [anon_sym_SLASH] = ACTIONS(1283), + [anon_sym_mod] = ACTIONS(1283), + [anon_sym_SLASH_SLASH] = ACTIONS(1283), + [anon_sym_PLUS] = ACTIONS(1283), + [anon_sym_bit_DASHshl] = ACTIONS(1283), + [anon_sym_bit_DASHshr] = ACTIONS(1283), + [anon_sym_EQ_EQ] = ACTIONS(1283), + [anon_sym_BANG_EQ] = ACTIONS(1283), + [anon_sym_LT2] = ACTIONS(1283), + [anon_sym_LT_EQ] = ACTIONS(1283), + [anon_sym_GT_EQ] = ACTIONS(1283), + [anon_sym_not_DASHin] = ACTIONS(1283), + [anon_sym_starts_DASHwith] = ACTIONS(1283), + [anon_sym_ends_DASHwith] = ACTIONS(1283), + [anon_sym_EQ_TILDE] = ACTIONS(1283), + [anon_sym_BANG_TILDE] = ACTIONS(1283), + [anon_sym_bit_DASHand] = ACTIONS(1283), + [anon_sym_bit_DASHxor] = ACTIONS(1283), + [anon_sym_bit_DASHor] = ACTIONS(1283), + [anon_sym_and] = ACTIONS(1283), + [anon_sym_xor] = ACTIONS(1283), + [anon_sym_or] = ACTIONS(1283), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1283), + [anon_sym_DOT_DOT_LT] = ACTIONS(1283), + [anon_sym_null] = ACTIONS(1283), + [anon_sym_true] = ACTIONS(1283), + [anon_sym_false] = ACTIONS(1283), + [aux_sym__val_number_decimal_token1] = ACTIONS(1283), + [aux_sym__val_number_decimal_token2] = ACTIONS(1283), + [anon_sym_DOT2] = ACTIONS(1283), + [aux_sym__val_number_decimal_token3] = ACTIONS(1283), + [aux_sym__val_number_token1] = ACTIONS(1283), + [aux_sym__val_number_token2] = ACTIONS(1283), + [aux_sym__val_number_token3] = ACTIONS(1283), + [aux_sym__val_number_token4] = ACTIONS(1283), + [aux_sym__val_number_token5] = ACTIONS(1283), + [aux_sym__val_number_token6] = ACTIONS(1283), + [anon_sym_0b] = ACTIONS(1283), + [anon_sym_0o] = ACTIONS(1283), + [anon_sym_0x] = ACTIONS(1283), + [sym_val_date] = ACTIONS(1283), + [anon_sym_DQUOTE] = ACTIONS(1283), + [sym__str_single_quotes] = ACTIONS(1283), + [sym__str_back_ticks] = ACTIONS(1283), + [sym__entry_separator] = ACTIONS(1285), + [anon_sym_err_GT] = ACTIONS(1283), + [anon_sym_out_GT] = ACTIONS(1283), + [anon_sym_e_GT] = ACTIONS(1283), + [anon_sym_o_GT] = ACTIONS(1283), + [anon_sym_err_PLUSout_GT] = ACTIONS(1283), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1283), + [anon_sym_o_PLUSe_GT] = ACTIONS(1283), + [anon_sym_e_PLUSo_GT] = ACTIONS(1283), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1283), [anon_sym_POUND] = ACTIONS(113), }, - [1158] = { - [sym_comment] = STATE(1158), - [anon_sym_LBRACK] = ACTIONS(925), - [anon_sym_COMMA] = ACTIONS(925), - [anon_sym_RBRACK] = ACTIONS(925), - [anon_sym_LPAREN] = ACTIONS(925), - [anon_sym_DOLLAR] = ACTIONS(925), - [anon_sym_GT] = ACTIONS(923), - [anon_sym_DASH_DASH] = ACTIONS(925), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_in] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_DOT_DOT] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_STAR_STAR] = ACTIONS(925), - [anon_sym_PLUS_PLUS] = ACTIONS(925), - [anon_sym_SLASH] = ACTIONS(923), - [anon_sym_mod] = ACTIONS(925), - [anon_sym_SLASH_SLASH] = ACTIONS(925), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_bit_DASHshl] = ACTIONS(925), - [anon_sym_bit_DASHshr] = ACTIONS(925), - [anon_sym_EQ_EQ] = ACTIONS(925), - [anon_sym_BANG_EQ] = ACTIONS(925), - [anon_sym_LT2] = ACTIONS(923), - [anon_sym_LT_EQ] = ACTIONS(925), - [anon_sym_GT_EQ] = ACTIONS(925), - [anon_sym_not_DASHin] = ACTIONS(925), - [anon_sym_starts_DASHwith] = ACTIONS(925), - [anon_sym_ends_DASHwith] = ACTIONS(925), - [anon_sym_EQ_TILDE] = ACTIONS(925), - [anon_sym_BANG_TILDE] = ACTIONS(925), - [anon_sym_bit_DASHand] = ACTIONS(925), - [anon_sym_bit_DASHxor] = ACTIONS(925), - [anon_sym_bit_DASHor] = ACTIONS(925), - [anon_sym_and] = ACTIONS(925), - [anon_sym_xor] = ACTIONS(925), - [anon_sym_or] = ACTIONS(925), - [anon_sym_DOT_DOT2] = ACTIONS(923), - [anon_sym_DOT] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ] = ACTIONS(923), - [anon_sym_DOT_DOT_LT] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(925), - [anon_sym_DOT_DOT_LT2] = ACTIONS(925), - [aux_sym__immediate_decimal_token2] = ACTIONS(2590), - [anon_sym_null] = ACTIONS(925), - [anon_sym_true] = ACTIONS(925), - [anon_sym_false] = ACTIONS(925), - [aux_sym__val_number_decimal_token1] = ACTIONS(923), - [aux_sym__val_number_decimal_token2] = ACTIONS(925), - [anon_sym_DOT2] = ACTIONS(923), - [aux_sym__val_number_decimal_token3] = ACTIONS(925), - [aux_sym__val_number_token1] = ACTIONS(925), - [aux_sym__val_number_token2] = ACTIONS(925), - [aux_sym__val_number_token3] = ACTIONS(925), - [aux_sym__val_number_token4] = ACTIONS(925), - [aux_sym__val_number_token5] = ACTIONS(925), - [aux_sym__val_number_token6] = ACTIONS(925), - [anon_sym_0b] = ACTIONS(923), - [sym_filesize_unit] = ACTIONS(923), - [sym_duration_unit] = ACTIONS(925), - [anon_sym_0o] = ACTIONS(923), - [anon_sym_0x] = ACTIONS(923), - [sym_val_date] = ACTIONS(925), - [anon_sym_DQUOTE] = ACTIONS(925), - [sym__str_single_quotes] = ACTIONS(925), - [sym__str_back_ticks] = ACTIONS(925), - [anon_sym_err_GT] = ACTIONS(925), - [anon_sym_out_GT] = ACTIONS(925), - [anon_sym_e_GT] = ACTIONS(925), - [anon_sym_o_GT] = ACTIONS(925), - [anon_sym_err_PLUSout_GT] = ACTIONS(925), - [anon_sym_out_PLUSerr_GT] = ACTIONS(925), - [anon_sym_o_PLUSe_GT] = ACTIONS(925), - [anon_sym_e_PLUSo_GT] = ACTIONS(925), - [aux_sym_unquoted_token5] = ACTIONS(923), - [aux_sym__unquoted_in_list_token1] = ACTIONS(923), - [anon_sym_POUND] = ACTIONS(3), - }, - [1159] = { - [sym_comment] = STATE(1159), - [anon_sym_LBRACK] = ACTIONS(911), - [anon_sym_COMMA] = ACTIONS(911), - [anon_sym_RBRACK] = ACTIONS(911), - [anon_sym_LPAREN] = ACTIONS(911), - [anon_sym_DOLLAR] = ACTIONS(911), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(911), - [anon_sym_DOT_DOT] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(911), - [anon_sym_PLUS_PLUS] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(911), - [anon_sym_SLASH_SLASH] = ACTIONS(911), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(911), - [anon_sym_bit_DASHshr] = ACTIONS(911), - [anon_sym_EQ_EQ] = ACTIONS(911), - [anon_sym_BANG_EQ] = ACTIONS(911), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(911), - [anon_sym_GT_EQ] = ACTIONS(911), - [anon_sym_not_DASHin] = ACTIONS(911), - [anon_sym_starts_DASHwith] = ACTIONS(911), - [anon_sym_ends_DASHwith] = ACTIONS(911), - [anon_sym_EQ_TILDE] = ACTIONS(911), - [anon_sym_BANG_TILDE] = ACTIONS(911), - [anon_sym_bit_DASHand] = ACTIONS(911), - [anon_sym_bit_DASHxor] = ACTIONS(911), - [anon_sym_bit_DASHor] = ACTIONS(911), - [anon_sym_and] = ACTIONS(911), - [anon_sym_xor] = ACTIONS(911), - [anon_sym_or] = ACTIONS(911), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [aux_sym__immediate_decimal_token2] = ACTIONS(2536), - [anon_sym_null] = ACTIONS(911), - [anon_sym_true] = ACTIONS(911), - [anon_sym_false] = ACTIONS(911), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(911), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(911), - [aux_sym__val_number_token1] = ACTIONS(911), - [aux_sym__val_number_token2] = ACTIONS(911), - [aux_sym__val_number_token3] = ACTIONS(911), - [aux_sym__val_number_token4] = ACTIONS(911), - [aux_sym__val_number_token5] = ACTIONS(911), - [aux_sym__val_number_token6] = ACTIONS(911), - [anon_sym_0b] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(911), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(911), - [anon_sym_DQUOTE] = ACTIONS(911), - [sym__str_single_quotes] = ACTIONS(911), - [sym__str_back_ticks] = ACTIONS(911), - [anon_sym_err_GT] = ACTIONS(911), - [anon_sym_out_GT] = ACTIONS(911), - [anon_sym_e_GT] = ACTIONS(911), - [anon_sym_o_GT] = ACTIONS(911), - [anon_sym_err_PLUSout_GT] = ACTIONS(911), - [anon_sym_out_PLUSerr_GT] = ACTIONS(911), - [anon_sym_o_PLUSe_GT] = ACTIONS(911), - [anon_sym_e_PLUSo_GT] = ACTIONS(911), - [aux_sym_unquoted_token5] = ACTIONS(909), - [aux_sym__unquoted_in_list_token1] = ACTIONS(909), - [anon_sym_POUND] = ACTIONS(3), - }, - [1160] = { - [sym_comment] = STATE(1160), - [ts_builtin_sym_end] = ACTIONS(2439), - [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), - [anon_sym_SEMI] = ACTIONS(2437), - [sym_cmd_identifier] = ACTIONS(2437), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_DASH_DASH] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_as] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_not] = ACTIONS(2437), - [anon_sym_LPAREN2] = ACTIONS(2439), - [anon_sym_DOT_DOT2] = ACTIONS(2437), - [anon_sym_DOT] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2439), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2439), - [aux_sym__immediate_decimal_token1] = ACTIONS(2622), - [aux_sym__immediate_decimal_token2] = ACTIONS(2624), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [anon_sym_DOT2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2437), - [anon_sym_0o] = ACTIONS(2437), - [anon_sym_0x] = ACTIONS(2437), - [sym_val_date] = 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_CARET] = ACTIONS(2437), - [aux_sym_unquoted_token2] = ACTIONS(2437), + [1386] = { + [sym_comment] = STATE(1386), + [anon_sym_export] = ACTIONS(1241), + [anon_sym_alias] = ACTIONS(1241), + [anon_sym_let] = ACTIONS(1241), + [anon_sym_let_DASHenv] = ACTIONS(1241), + [anon_sym_mut] = ACTIONS(1241), + [anon_sym_const] = ACTIONS(1241), + [anon_sym_SEMI] = ACTIONS(1241), + [sym_cmd_identifier] = ACTIONS(1241), + [anon_sym_LF] = ACTIONS(1243), + [anon_sym_def] = ACTIONS(1241), + [anon_sym_export_DASHenv] = ACTIONS(1241), + [anon_sym_extern] = ACTIONS(1241), + [anon_sym_module] = ACTIONS(1241), + [anon_sym_use] = ACTIONS(1241), + [anon_sym_LBRACK] = ACTIONS(1241), + [anon_sym_LPAREN] = ACTIONS(1241), + [anon_sym_RPAREN] = ACTIONS(1241), + [anon_sym_DOLLAR] = ACTIONS(1241), + [anon_sym_error] = ACTIONS(1241), + [anon_sym_DASH_DASH] = ACTIONS(1241), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_break] = ACTIONS(1241), + [anon_sym_continue] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_loop] = ACTIONS(1241), + [anon_sym_while] = ACTIONS(1241), + [anon_sym_do] = ACTIONS(1241), + [anon_sym_if] = ACTIONS(1241), + [anon_sym_match] = ACTIONS(1241), + [anon_sym_LBRACE] = ACTIONS(1241), + [anon_sym_RBRACE] = ACTIONS(1241), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_try] = ACTIONS(1241), + [anon_sym_return] = ACTIONS(1241), + [anon_sym_source] = ACTIONS(1241), + [anon_sym_source_DASHenv] = ACTIONS(1241), + [anon_sym_register] = ACTIONS(1241), + [anon_sym_hide] = ACTIONS(1241), + [anon_sym_hide_DASHenv] = ACTIONS(1241), + [anon_sym_overlay] = ACTIONS(1241), + [anon_sym_as] = ACTIONS(1241), + [anon_sym_where] = ACTIONS(1241), + [anon_sym_not] = ACTIONS(1241), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1241), + [anon_sym_DOT_DOT_LT] = ACTIONS(1241), + [anon_sym_null] = ACTIONS(1241), + [anon_sym_true] = ACTIONS(1241), + [anon_sym_false] = ACTIONS(1241), + [aux_sym__val_number_decimal_token1] = ACTIONS(1241), + [aux_sym__val_number_decimal_token2] = ACTIONS(1241), + [anon_sym_DOT2] = ACTIONS(1241), + [aux_sym__val_number_decimal_token3] = ACTIONS(1241), + [aux_sym__val_number_token1] = ACTIONS(1241), + [aux_sym__val_number_token2] = ACTIONS(1241), + [aux_sym__val_number_token3] = ACTIONS(1241), + [aux_sym__val_number_token4] = ACTIONS(1241), + [aux_sym__val_number_token5] = ACTIONS(1241), + [aux_sym__val_number_token6] = ACTIONS(1241), + [anon_sym_0b] = ACTIONS(1241), + [anon_sym_0o] = ACTIONS(1241), + [anon_sym_0x] = ACTIONS(1241), + [sym_val_date] = ACTIONS(1241), + [anon_sym_DQUOTE] = ACTIONS(1241), + [sym__str_single_quotes] = ACTIONS(1241), + [sym__str_back_ticks] = ACTIONS(1241), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1241), + [anon_sym_CARET] = ACTIONS(1241), [anon_sym_POUND] = ACTIONS(113), }, - [1161] = { - [sym_comment] = STATE(1161), - [anon_sym_LBRACK] = ACTIONS(911), - [anon_sym_COMMA] = ACTIONS(911), - [anon_sym_LPAREN] = ACTIONS(911), - [anon_sym_DOLLAR] = ACTIONS(911), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(911), - [anon_sym_RBRACE] = ACTIONS(911), - [anon_sym__] = ACTIONS(909), - [anon_sym_DOT_DOT] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(911), - [anon_sym_PLUS_PLUS] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(911), - [anon_sym_SLASH_SLASH] = ACTIONS(911), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(911), - [anon_sym_bit_DASHshr] = ACTIONS(911), - [anon_sym_EQ_EQ] = ACTIONS(911), - [anon_sym_BANG_EQ] = ACTIONS(911), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(911), - [anon_sym_GT_EQ] = ACTIONS(911), - [anon_sym_not_DASHin] = ACTIONS(911), - [anon_sym_starts_DASHwith] = ACTIONS(911), - [anon_sym_ends_DASHwith] = ACTIONS(911), - [anon_sym_EQ_TILDE] = ACTIONS(911), - [anon_sym_BANG_TILDE] = ACTIONS(911), - [anon_sym_bit_DASHand] = ACTIONS(911), - [anon_sym_bit_DASHxor] = ACTIONS(911), - [anon_sym_bit_DASHor] = ACTIONS(911), - [anon_sym_and] = ACTIONS(911), - [anon_sym_xor] = ACTIONS(911), - [anon_sym_or] = ACTIONS(911), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [anon_sym_null] = ACTIONS(911), - [anon_sym_true] = ACTIONS(911), - [anon_sym_false] = ACTIONS(911), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(911), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(911), - [aux_sym__val_number_token1] = ACTIONS(911), - [aux_sym__val_number_token2] = ACTIONS(911), - [aux_sym__val_number_token3] = ACTIONS(911), - [aux_sym__val_number_token4] = ACTIONS(911), - [aux_sym__val_number_token5] = ACTIONS(911), - [aux_sym__val_number_token6] = ACTIONS(911), - [anon_sym_0b] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(911), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(911), - [anon_sym_DQUOTE] = ACTIONS(911), - [sym__str_single_quotes] = ACTIONS(911), - [sym__str_back_ticks] = ACTIONS(911), - [anon_sym_err_GT] = ACTIONS(911), - [anon_sym_out_GT] = ACTIONS(911), - [anon_sym_e_GT] = ACTIONS(911), - [anon_sym_o_GT] = ACTIONS(911), - [anon_sym_err_PLUSout_GT] = ACTIONS(911), - [anon_sym_out_PLUSerr_GT] = ACTIONS(911), - [anon_sym_o_PLUSe_GT] = ACTIONS(911), - [anon_sym_e_PLUSo_GT] = ACTIONS(911), - [aux_sym_unquoted_token1] = ACTIONS(909), - [aux_sym_unquoted_token5] = ACTIONS(909), + [1387] = { + [sym_comment] = STATE(1387), + [anon_sym_LBRACK] = ACTIONS(940), + [anon_sym_COMMA] = ACTIONS(940), + [anon_sym_RBRACK] = ACTIONS(940), + [anon_sym_LPAREN] = ACTIONS(940), + [anon_sym_DOLLAR] = ACTIONS(940), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(940), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_in] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(940), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_STAR_STAR] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(940), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(940), + [anon_sym_SLASH_SLASH] = ACTIONS(940), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_bit_DASHshl] = ACTIONS(940), + [anon_sym_bit_DASHshr] = ACTIONS(940), + [anon_sym_EQ_EQ] = ACTIONS(940), + [anon_sym_BANG_EQ] = ACTIONS(940), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(940), + [anon_sym_GT_EQ] = ACTIONS(940), + [anon_sym_not_DASHin] = ACTIONS(940), + [anon_sym_starts_DASHwith] = ACTIONS(940), + [anon_sym_ends_DASHwith] = ACTIONS(940), + [anon_sym_EQ_TILDE] = ACTIONS(940), + [anon_sym_BANG_TILDE] = ACTIONS(940), + [anon_sym_bit_DASHand] = ACTIONS(940), + [anon_sym_bit_DASHxor] = ACTIONS(940), + [anon_sym_bit_DASHor] = ACTIONS(940), + [anon_sym_and] = ACTIONS(940), + [anon_sym_xor] = ACTIONS(940), + [anon_sym_or] = ACTIONS(940), + [anon_sym_DOT_DOT_EQ] = ACTIONS(940), + [anon_sym_DOT_DOT_LT] = ACTIONS(940), + [anon_sym_null] = ACTIONS(940), + [anon_sym_true] = ACTIONS(940), + [anon_sym_false] = ACTIONS(940), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(940), + [anon_sym_DOT2] = ACTIONS(938), + [aux_sym__val_number_decimal_token3] = ACTIONS(940), + [aux_sym__val_number_token1] = ACTIONS(940), + [aux_sym__val_number_token2] = ACTIONS(940), + [aux_sym__val_number_token3] = ACTIONS(940), + [aux_sym__val_number_token4] = ACTIONS(940), + [aux_sym__val_number_token5] = ACTIONS(940), + [aux_sym__val_number_token6] = ACTIONS(940), + [anon_sym_0b] = ACTIONS(938), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = ACTIONS(940), + [anon_sym_DQUOTE] = ACTIONS(940), + [sym__str_single_quotes] = ACTIONS(940), + [sym__str_back_ticks] = ACTIONS(940), + [anon_sym_err_GT] = ACTIONS(940), + [anon_sym_out_GT] = ACTIONS(940), + [anon_sym_e_GT] = ACTIONS(940), + [anon_sym_o_GT] = ACTIONS(940), + [anon_sym_err_PLUSout_GT] = ACTIONS(940), + [anon_sym_out_PLUSerr_GT] = ACTIONS(940), + [anon_sym_o_PLUSe_GT] = ACTIONS(940), + [anon_sym_e_PLUSo_GT] = ACTIONS(940), + [aux_sym_unquoted_token5] = ACTIONS(3148), + [aux_sym__unquoted_in_list_token1] = ACTIONS(938), [anon_sym_POUND] = ACTIONS(3), }, - [1162] = { - [sym_path] = STATE(1339), - [sym_comment] = STATE(1162), - [aux_sym_cell_path_repeat1] = STATE(1162), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_COMMA] = ACTIONS(999), - [anon_sym_RBRACK] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_GT] = ACTIONS(999), - [anon_sym_DASH_DASH] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_in] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(999), - [anon_sym_DOT_DOT] = ACTIONS(999), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_STAR_STAR] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(999), - [anon_sym_mod] = ACTIONS(999), - [anon_sym_SLASH_SLASH] = ACTIONS(999), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_bit_DASHshl] = ACTIONS(999), - [anon_sym_bit_DASHshr] = ACTIONS(999), - [anon_sym_EQ_EQ] = ACTIONS(999), - [anon_sym_BANG_EQ] = ACTIONS(999), - [anon_sym_LT2] = ACTIONS(999), - [anon_sym_LT_EQ] = ACTIONS(999), - [anon_sym_GT_EQ] = ACTIONS(999), - [anon_sym_not_DASHin] = ACTIONS(999), - [anon_sym_starts_DASHwith] = ACTIONS(999), - [anon_sym_ends_DASHwith] = ACTIONS(999), - [anon_sym_EQ_TILDE] = ACTIONS(999), - [anon_sym_BANG_TILDE] = ACTIONS(999), - [anon_sym_bit_DASHand] = ACTIONS(999), - [anon_sym_bit_DASHxor] = ACTIONS(999), - [anon_sym_bit_DASHor] = ACTIONS(999), - [anon_sym_and] = ACTIONS(999), - [anon_sym_xor] = ACTIONS(999), - [anon_sym_or] = ACTIONS(999), - [anon_sym_DOT_DOT2] = ACTIONS(999), - [anon_sym_DOT] = ACTIONS(2626), - [anon_sym_DOT_DOT_EQ] = ACTIONS(999), - [anon_sym_DOT_DOT_LT] = ACTIONS(999), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1001), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1001), - [anon_sym_null] = ACTIONS(999), - [anon_sym_true] = ACTIONS(999), - [anon_sym_false] = ACTIONS(999), - [aux_sym__val_number_decimal_token1] = ACTIONS(999), - [aux_sym__val_number_decimal_token2] = ACTIONS(999), - [anon_sym_DOT2] = ACTIONS(999), - [aux_sym__val_number_decimal_token3] = ACTIONS(999), - [aux_sym__val_number_token1] = ACTIONS(999), - [aux_sym__val_number_token2] = ACTIONS(999), - [aux_sym__val_number_token3] = ACTIONS(999), - [aux_sym__val_number_token4] = ACTIONS(999), - [aux_sym__val_number_token5] = ACTIONS(999), - [aux_sym__val_number_token6] = ACTIONS(999), - [anon_sym_0b] = ACTIONS(999), - [anon_sym_0o] = ACTIONS(999), - [anon_sym_0x] = ACTIONS(999), - [sym_val_date] = ACTIONS(999), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym__str_single_quotes] = ACTIONS(999), - [sym__str_back_ticks] = ACTIONS(999), - [sym__entry_separator] = ACTIONS(1001), - [anon_sym_err_GT] = ACTIONS(999), - [anon_sym_out_GT] = ACTIONS(999), - [anon_sym_e_GT] = ACTIONS(999), - [anon_sym_o_GT] = ACTIONS(999), - [anon_sym_err_PLUSout_GT] = ACTIONS(999), - [anon_sym_out_PLUSerr_GT] = ACTIONS(999), - [anon_sym_o_PLUSe_GT] = ACTIONS(999), - [anon_sym_e_PLUSo_GT] = ACTIONS(999), - [aux_sym__unquoted_in_list_token1] = ACTIONS(999), + [1388] = { + [sym_comment] = STATE(1388), + [anon_sym_export] = ACTIONS(1211), + [anon_sym_alias] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(1211), + [anon_sym_let_DASHenv] = ACTIONS(1211), + [anon_sym_mut] = ACTIONS(1211), + [anon_sym_const] = ACTIONS(1211), + [anon_sym_SEMI] = ACTIONS(1211), + [sym_cmd_identifier] = ACTIONS(1211), + [anon_sym_LF] = ACTIONS(1213), + [anon_sym_def] = ACTIONS(1211), + [anon_sym_export_DASHenv] = ACTIONS(1211), + [anon_sym_extern] = ACTIONS(1211), + [anon_sym_module] = ACTIONS(1211), + [anon_sym_use] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(1211), + [anon_sym_RPAREN] = ACTIONS(1211), + [anon_sym_PIPE] = ACTIONS(1211), + [anon_sym_DOLLAR] = ACTIONS(1211), + [anon_sym_error] = ACTIONS(1211), + [anon_sym_DASH] = ACTIONS(1211), + [anon_sym_break] = ACTIONS(1211), + [anon_sym_continue] = ACTIONS(1211), + [anon_sym_for] = ACTIONS(1211), + [anon_sym_loop] = ACTIONS(1211), + [anon_sym_while] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(1211), + [anon_sym_if] = ACTIONS(1211), + [anon_sym_match] = ACTIONS(1211), + [anon_sym_LBRACE] = ACTIONS(1211), + [anon_sym_RBRACE] = ACTIONS(1211), + [anon_sym_DOT_DOT] = ACTIONS(1211), + [anon_sym_try] = ACTIONS(1211), + [anon_sym_return] = ACTIONS(1211), + [anon_sym_source] = ACTIONS(1211), + [anon_sym_source_DASHenv] = ACTIONS(1211), + [anon_sym_register] = ACTIONS(1211), + [anon_sym_hide] = ACTIONS(1211), + [anon_sym_hide_DASHenv] = ACTIONS(1211), + [anon_sym_overlay] = ACTIONS(1211), + [anon_sym_STAR] = ACTIONS(1211), + [anon_sym_where] = ACTIONS(1211), + [anon_sym_not] = ACTIONS(1211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1211), + [anon_sym_DOT_DOT_LT] = ACTIONS(1211), + [anon_sym_null] = ACTIONS(1211), + [anon_sym_true] = ACTIONS(1211), + [anon_sym_false] = ACTIONS(1211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1211), + [aux_sym__val_number_decimal_token2] = ACTIONS(1211), + [anon_sym_DOT2] = ACTIONS(1211), + [aux_sym__val_number_decimal_token3] = ACTIONS(1211), + [aux_sym__val_number_token1] = ACTIONS(1211), + [aux_sym__val_number_token2] = ACTIONS(1211), + [aux_sym__val_number_token3] = ACTIONS(1211), + [aux_sym__val_number_token4] = ACTIONS(1211), + [aux_sym__val_number_token5] = ACTIONS(1211), + [aux_sym__val_number_token6] = ACTIONS(1211), + [anon_sym_0b] = ACTIONS(1211), + [anon_sym_0o] = ACTIONS(1211), + [anon_sym_0x] = ACTIONS(1211), + [sym_val_date] = ACTIONS(1211), + [anon_sym_DQUOTE] = ACTIONS(1211), + [sym__str_single_quotes] = ACTIONS(1211), + [sym__str_back_ticks] = ACTIONS(1211), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1211), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1211), + [anon_sym_CARET] = ACTIONS(1211), [anon_sym_POUND] = ACTIONS(113), }, - [1163] = { - [sym__expr_parenthesized_immediate] = STATE(2834), - [sym__immediate_decimal] = STATE(2836), - [sym_val_variable] = STATE(2834), - [sym__var] = STATE(1743), - [sym_comment] = STATE(1163), - [ts_builtin_sym_end] = ACTIONS(2389), - [anon_sym_export] = ACTIONS(2387), - [anon_sym_alias] = ACTIONS(2387), - [anon_sym_let] = ACTIONS(2387), - [anon_sym_let_DASHenv] = ACTIONS(2387), - [anon_sym_mut] = ACTIONS(2387), - [anon_sym_const] = ACTIONS(2387), - [anon_sym_SEMI] = ACTIONS(2387), - [sym_cmd_identifier] = ACTIONS(2387), - [anon_sym_LF] = ACTIONS(2389), - [anon_sym_def] = ACTIONS(2387), - [anon_sym_export_DASHenv] = ACTIONS(2387), - [anon_sym_extern] = ACTIONS(2387), - [anon_sym_module] = ACTIONS(2387), - [anon_sym_use] = ACTIONS(2387), - [anon_sym_LBRACK] = ACTIONS(2387), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_DOLLAR] = ACTIONS(2629), - [anon_sym_error] = ACTIONS(2387), - [anon_sym_DASH] = ACTIONS(2387), - [anon_sym_break] = ACTIONS(2387), - [anon_sym_continue] = ACTIONS(2387), - [anon_sym_for] = ACTIONS(2387), - [anon_sym_loop] = ACTIONS(2387), - [anon_sym_while] = ACTIONS(2387), - [anon_sym_do] = ACTIONS(2387), - [anon_sym_if] = ACTIONS(2387), - [anon_sym_match] = ACTIONS(2387), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_DOT_DOT] = ACTIONS(2387), - [anon_sym_try] = ACTIONS(2387), - [anon_sym_return] = ACTIONS(2387), - [anon_sym_source] = ACTIONS(2387), - [anon_sym_source_DASHenv] = ACTIONS(2387), - [anon_sym_register] = ACTIONS(2387), - [anon_sym_hide] = ACTIONS(2387), - [anon_sym_hide_DASHenv] = ACTIONS(2387), - [anon_sym_overlay] = ACTIONS(2387), - [anon_sym_where] = ACTIONS(2387), - [anon_sym_not] = ACTIONS(2387), - [anon_sym_LPAREN2] = ACTIONS(2631), - [anon_sym_DOT] = ACTIONS(2633), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2387), - [anon_sym_DOT_DOT_LT] = ACTIONS(2387), - [aux_sym__immediate_decimal_token1] = ACTIONS(2635), - [aux_sym__immediate_decimal_token3] = ACTIONS(2635), - [aux_sym__immediate_decimal_token4] = ACTIONS(2637), - [anon_sym_null] = ACTIONS(2387), - [anon_sym_true] = ACTIONS(2387), - [anon_sym_false] = ACTIONS(2387), - [aux_sym__val_number_decimal_token1] = ACTIONS(2387), - [aux_sym__val_number_decimal_token2] = ACTIONS(2387), - [anon_sym_DOT2] = ACTIONS(2387), - [aux_sym__val_number_decimal_token3] = 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(2387), - [aux_sym__val_number_token5] = ACTIONS(2387), - [aux_sym__val_number_token6] = ACTIONS(2387), - [anon_sym_0b] = ACTIONS(2387), - [anon_sym_0o] = ACTIONS(2387), - [anon_sym_0x] = ACTIONS(2387), - [sym_val_date] = ACTIONS(2387), - [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_CARET] = ACTIONS(2387), + [1389] = { + [sym_comment] = STATE(1389), + [anon_sym_export] = ACTIONS(1215), + [anon_sym_alias] = ACTIONS(1215), + [anon_sym_let] = ACTIONS(1215), + [anon_sym_let_DASHenv] = ACTIONS(1215), + [anon_sym_mut] = ACTIONS(1215), + [anon_sym_const] = ACTIONS(1215), + [anon_sym_SEMI] = ACTIONS(1215), + [sym_cmd_identifier] = ACTIONS(1215), + [anon_sym_LF] = ACTIONS(1217), + [anon_sym_def] = ACTIONS(1215), + [anon_sym_export_DASHenv] = ACTIONS(1215), + [anon_sym_extern] = ACTIONS(1215), + [anon_sym_module] = ACTIONS(1215), + [anon_sym_use] = ACTIONS(1215), + [anon_sym_LBRACK] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1215), + [anon_sym_RPAREN] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_DOLLAR] = ACTIONS(1215), + [anon_sym_error] = ACTIONS(1215), + [anon_sym_DASH] = ACTIONS(1215), + [anon_sym_break] = ACTIONS(1215), + [anon_sym_continue] = ACTIONS(1215), + [anon_sym_for] = ACTIONS(1215), + [anon_sym_loop] = ACTIONS(1215), + [anon_sym_while] = ACTIONS(1215), + [anon_sym_do] = ACTIONS(1215), + [anon_sym_if] = ACTIONS(1215), + [anon_sym_match] = ACTIONS(1215), + [anon_sym_LBRACE] = ACTIONS(1215), + [anon_sym_RBRACE] = ACTIONS(1215), + [anon_sym_DOT_DOT] = ACTIONS(1215), + [anon_sym_try] = ACTIONS(1215), + [anon_sym_return] = ACTIONS(1215), + [anon_sym_source] = ACTIONS(1215), + [anon_sym_source_DASHenv] = ACTIONS(1215), + [anon_sym_register] = ACTIONS(1215), + [anon_sym_hide] = ACTIONS(1215), + [anon_sym_hide_DASHenv] = ACTIONS(1215), + [anon_sym_overlay] = ACTIONS(1215), + [anon_sym_STAR] = ACTIONS(1215), + [anon_sym_where] = ACTIONS(1215), + [anon_sym_not] = ACTIONS(1215), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1215), + [anon_sym_DOT_DOT_LT] = ACTIONS(1215), + [anon_sym_null] = ACTIONS(1215), + [anon_sym_true] = ACTIONS(1215), + [anon_sym_false] = ACTIONS(1215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1215), + [aux_sym__val_number_decimal_token2] = ACTIONS(1215), + [anon_sym_DOT2] = ACTIONS(1215), + [aux_sym__val_number_decimal_token3] = ACTIONS(1215), + [aux_sym__val_number_token1] = ACTIONS(1215), + [aux_sym__val_number_token2] = ACTIONS(1215), + [aux_sym__val_number_token3] = ACTIONS(1215), + [aux_sym__val_number_token4] = ACTIONS(1215), + [aux_sym__val_number_token5] = ACTIONS(1215), + [aux_sym__val_number_token6] = ACTIONS(1215), + [anon_sym_0b] = ACTIONS(1215), + [anon_sym_0o] = ACTIONS(1215), + [anon_sym_0x] = ACTIONS(1215), + [sym_val_date] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1215), + [sym__str_single_quotes] = ACTIONS(1215), + [sym__str_back_ticks] = ACTIONS(1215), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1215), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), + [anon_sym_CARET] = ACTIONS(1215), [anon_sym_POUND] = ACTIONS(113), }, - [1164] = { - [sym_comment] = STATE(1164), - [ts_builtin_sym_end] = ACTIONS(2583), - [anon_sym_export] = ACTIONS(2581), - [anon_sym_alias] = ACTIONS(2581), - [anon_sym_let] = ACTIONS(2581), - [anon_sym_let_DASHenv] = ACTIONS(2581), - [anon_sym_mut] = ACTIONS(2581), - [anon_sym_const] = ACTIONS(2581), - [anon_sym_SEMI] = ACTIONS(2581), - [sym_cmd_identifier] = ACTIONS(2581), - [anon_sym_LF] = ACTIONS(2583), - [anon_sym_def] = ACTIONS(2581), - [anon_sym_export_DASHenv] = ACTIONS(2581), - [anon_sym_extern] = ACTIONS(2581), - [anon_sym_module] = ACTIONS(2581), - [anon_sym_use] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2581), - [anon_sym_error] = ACTIONS(2581), - [anon_sym_DASH_DASH] = ACTIONS(2581), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_break] = ACTIONS(2581), - [anon_sym_continue] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2581), - [anon_sym_loop] = ACTIONS(2581), - [anon_sym_while] = ACTIONS(2581), - [anon_sym_do] = ACTIONS(2581), - [anon_sym_if] = ACTIONS(2581), - [anon_sym_match] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2581), - [anon_sym_DOT_DOT] = ACTIONS(2581), - [anon_sym_try] = ACTIONS(2581), - [anon_sym_return] = ACTIONS(2581), - [anon_sym_source] = ACTIONS(2581), - [anon_sym_source_DASHenv] = ACTIONS(2581), - [anon_sym_register] = ACTIONS(2581), - [anon_sym_hide] = ACTIONS(2581), - [anon_sym_hide_DASHenv] = ACTIONS(2581), - [anon_sym_overlay] = ACTIONS(2581), - [anon_sym_as] = ACTIONS(2581), - [anon_sym_where] = ACTIONS(2581), - [anon_sym_not] = ACTIONS(2581), - [anon_sym_LPAREN2] = ACTIONS(2583), - [anon_sym_DOT_DOT2] = ACTIONS(2581), - [anon_sym_DOT] = ACTIONS(2639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2581), - [anon_sym_DOT_DOT_LT] = ACTIONS(2581), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2583), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2583), - [aux_sym__immediate_decimal_token2] = ACTIONS(2642), - [anon_sym_null] = ACTIONS(2581), - [anon_sym_true] = ACTIONS(2581), - [anon_sym_false] = ACTIONS(2581), - [aux_sym__val_number_decimal_token1] = ACTIONS(2581), - [aux_sym__val_number_decimal_token2] = ACTIONS(2581), - [anon_sym_DOT2] = ACTIONS(2581), - [aux_sym__val_number_decimal_token3] = ACTIONS(2581), - [aux_sym__val_number_token1] = ACTIONS(2581), - [aux_sym__val_number_token2] = ACTIONS(2581), - [aux_sym__val_number_token3] = ACTIONS(2581), - [aux_sym__val_number_token4] = ACTIONS(2581), - [aux_sym__val_number_token5] = ACTIONS(2581), - [aux_sym__val_number_token6] = ACTIONS(2581), - [anon_sym_0b] = ACTIONS(2581), - [anon_sym_0o] = ACTIONS(2581), - [anon_sym_0x] = ACTIONS(2581), - [sym_val_date] = ACTIONS(2581), - [anon_sym_DQUOTE] = ACTIONS(2581), - [sym__str_single_quotes] = ACTIONS(2581), - [sym__str_back_ticks] = ACTIONS(2581), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2581), - [anon_sym_CARET] = ACTIONS(2581), - [aux_sym_unquoted_token2] = ACTIONS(2581), - [anon_sym_POUND] = ACTIONS(113), + [1390] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6354), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6236), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4801), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5796), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1390), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(4801), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4803), + [anon_sym_DOT_DOT_LT] = ACTIONS(4803), + [anon_sym_null] = ACTIONS(4805), + [anon_sym_true] = ACTIONS(4807), + [anon_sym_false] = ACTIONS(4807), + [aux_sym__val_number_decimal_token1] = ACTIONS(4809), + [aux_sym__val_number_decimal_token2] = ACTIONS(4811), + [anon_sym_DOT2] = ACTIONS(4813), + [aux_sym__val_number_decimal_token3] = ACTIONS(4815), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(4817), + [aux_sym__val_number_token5] = ACTIONS(4817), + [aux_sym__val_number_token6] = ACTIONS(4817), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(4819), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), + [anon_sym_POUND] = ACTIONS(3), }, - [1165] = { - [sym_cell_path] = STATE(1430), - [sym_path] = STATE(1207), - [sym_comment] = STATE(1165), - [anon_sym_export] = ACTIONS(995), - [anon_sym_alias] = ACTIONS(995), - [anon_sym_let] = ACTIONS(995), - [anon_sym_let_DASHenv] = ACTIONS(995), - [anon_sym_mut] = ACTIONS(995), - [anon_sym_const] = ACTIONS(995), - [anon_sym_SEMI] = ACTIONS(995), - [sym_cmd_identifier] = ACTIONS(995), - [anon_sym_LF] = ACTIONS(997), - [anon_sym_def] = ACTIONS(995), - [anon_sym_export_DASHenv] = ACTIONS(995), - [anon_sym_extern] = ACTIONS(995), - [anon_sym_module] = ACTIONS(995), - [anon_sym_use] = ACTIONS(995), - [anon_sym_LBRACK] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_RPAREN] = ACTIONS(995), - [anon_sym_DOLLAR] = ACTIONS(995), - [anon_sym_error] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_break] = ACTIONS(995), - [anon_sym_continue] = ACTIONS(995), - [anon_sym_for] = ACTIONS(995), - [anon_sym_loop] = ACTIONS(995), - [anon_sym_while] = ACTIONS(995), - [anon_sym_do] = ACTIONS(995), - [anon_sym_if] = ACTIONS(995), - [anon_sym_match] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_RBRACE] = ACTIONS(995), - [anon_sym_DOT_DOT] = ACTIONS(995), - [anon_sym_try] = ACTIONS(995), - [anon_sym_return] = ACTIONS(995), - [anon_sym_source] = ACTIONS(995), - [anon_sym_source_DASHenv] = ACTIONS(995), - [anon_sym_register] = ACTIONS(995), - [anon_sym_hide] = ACTIONS(995), - [anon_sym_hide_DASHenv] = ACTIONS(995), - [anon_sym_overlay] = ACTIONS(995), - [anon_sym_as] = ACTIONS(995), - [anon_sym_where] = ACTIONS(995), - [anon_sym_not] = ACTIONS(995), - [anon_sym_DOT_DOT2] = ACTIONS(995), - [anon_sym_DOT] = ACTIONS(2644), - [anon_sym_DOT_DOT_EQ] = ACTIONS(995), - [anon_sym_DOT_DOT_LT] = ACTIONS(995), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(997), - [anon_sym_DOT_DOT_LT2] = ACTIONS(997), - [anon_sym_null] = ACTIONS(995), - [anon_sym_true] = ACTIONS(995), - [anon_sym_false] = ACTIONS(995), - [aux_sym__val_number_decimal_token1] = ACTIONS(995), - [aux_sym__val_number_decimal_token2] = ACTIONS(995), - [anon_sym_DOT2] = ACTIONS(995), - [aux_sym__val_number_decimal_token3] = ACTIONS(995), - [aux_sym__val_number_token1] = ACTIONS(995), - [aux_sym__val_number_token2] = ACTIONS(995), - [aux_sym__val_number_token3] = ACTIONS(995), - [aux_sym__val_number_token4] = ACTIONS(995), - [aux_sym__val_number_token5] = ACTIONS(995), - [aux_sym__val_number_token6] = ACTIONS(995), - [anon_sym_0b] = ACTIONS(995), - [anon_sym_0o] = ACTIONS(995), - [anon_sym_0x] = ACTIONS(995), - [sym_val_date] = ACTIONS(995), - [anon_sym_DQUOTE] = ACTIONS(995), - [sym__str_single_quotes] = ACTIONS(995), - [sym__str_back_ticks] = ACTIONS(995), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(995), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(995), - [anon_sym_CARET] = ACTIONS(995), - [anon_sym_POUND] = ACTIONS(113), + [1391] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6344), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6236), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4801), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5809), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1391), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(4801), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4803), + [anon_sym_DOT_DOT_LT] = ACTIONS(4803), + [anon_sym_null] = ACTIONS(4805), + [anon_sym_true] = ACTIONS(4807), + [anon_sym_false] = ACTIONS(4807), + [aux_sym__val_number_decimal_token1] = ACTIONS(4809), + [aux_sym__val_number_decimal_token2] = ACTIONS(4811), + [anon_sym_DOT2] = ACTIONS(4813), + [aux_sym__val_number_decimal_token3] = ACTIONS(4815), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(4817), + [aux_sym__val_number_token5] = ACTIONS(4817), + [aux_sym__val_number_token6] = ACTIONS(4817), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(4819), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), + [anon_sym_POUND] = ACTIONS(3), }, - [1166] = { - [sym_expr_parenthesized] = STATE(7993), - [sym_val_range] = STATE(8791), - [sym__val_range] = STATE(10596), - [sym__val_range_with_end] = STATE(10547), - [sym__value] = STATE(8791), - [sym_val_nothing] = STATE(5674), - [sym_val_bool] = STATE(8245), - [sym_val_variable] = STATE(4982), - [sym__var] = STATE(4676), - [sym_val_number] = STATE(5674), - [sym__val_number_decimal] = STATE(6994), - [sym__val_number] = STATE(5809), - [sym_val_duration] = STATE(5674), - [sym_val_filesize] = STATE(5674), - [sym_val_binary] = STATE(5674), - [sym_val_string] = STATE(5674), - [sym__str_double_quotes] = STATE(5813), - [sym_val_interpolated] = STATE(5674), - [sym__inter_single_quotes] = STATE(5696), - [sym__inter_double_quotes] = STATE(5868), - [sym_val_list] = STATE(5674), - [sym_val_record] = STATE(5674), - [sym_val_table] = STATE(5674), - [sym_val_closure] = STATE(5674), - [sym__cmd_arg] = STATE(8739), - [sym_redirection] = STATE(8793), - [sym__flag] = STATE(8794), - [sym_short_flag] = STATE(8654), - [sym_long_flag] = STATE(8654), - [sym_long_flag_equals_value] = STATE(8663), - [sym_long_flag_value] = STATE(8740), - [sym_unquoted] = STATE(8227), - [sym__unquoted_with_expr] = STATE(8795), - [sym__unquoted_anonymous_prefix] = STATE(10223), - [sym_comment] = STATE(1166), - [anon_sym_LBRACK] = ACTIONS(2646), - [anon_sym_LPAREN] = ACTIONS(2648), - [anon_sym_DOLLAR] = ACTIONS(1874), - [anon_sym_DASH_DASH] = ACTIONS(2650), - [anon_sym_DASH] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(2652), - [anon_sym_DOT_DOT] = ACTIONS(1882), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2654), - [anon_sym_DOT_DOT_LT] = ACTIONS(2654), - [anon_sym_null] = ACTIONS(2656), - [anon_sym_true] = ACTIONS(2658), - [anon_sym_false] = ACTIONS(2658), - [aux_sym__val_number_decimal_token1] = ACTIONS(1890), - [aux_sym__val_number_decimal_token2] = ACTIONS(2660), - [anon_sym_DOT2] = ACTIONS(1892), - [aux_sym__val_number_decimal_token3] = ACTIONS(2662), - [aux_sym__val_number_token1] = ACTIONS(2664), - [aux_sym__val_number_token2] = ACTIONS(2664), - [aux_sym__val_number_token3] = ACTIONS(2664), - [aux_sym__val_number_token4] = ACTIONS(2666), - [aux_sym__val_number_token5] = ACTIONS(2666), - [aux_sym__val_number_token6] = ACTIONS(2666), - [anon_sym_0b] = ACTIONS(1900), - [anon_sym_0o] = ACTIONS(1902), - [anon_sym_0x] = ACTIONS(1902), - [sym_val_date] = ACTIONS(2668), - [anon_sym_DQUOTE] = ACTIONS(2670), - [sym__str_single_quotes] = ACTIONS(2672), - [sym__str_back_ticks] = ACTIONS(2672), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2674), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2676), - [anon_sym_err_GT] = ACTIONS(2678), - [anon_sym_out_GT] = ACTIONS(2678), - [anon_sym_e_GT] = ACTIONS(2678), - [anon_sym_o_GT] = ACTIONS(2678), - [anon_sym_err_PLUSout_GT] = ACTIONS(2678), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2678), - [anon_sym_o_PLUSe_GT] = ACTIONS(2678), - [anon_sym_e_PLUSo_GT] = ACTIONS(2678), - [aux_sym_unquoted_token1] = ACTIONS(1918), + [1392] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6336), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6236), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4801), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5812), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1392), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(4801), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4803), + [anon_sym_DOT_DOT_LT] = ACTIONS(4803), + [anon_sym_null] = ACTIONS(4805), + [anon_sym_true] = ACTIONS(4807), + [anon_sym_false] = ACTIONS(4807), + [aux_sym__val_number_decimal_token1] = ACTIONS(4809), + [aux_sym__val_number_decimal_token2] = ACTIONS(4811), + [anon_sym_DOT2] = ACTIONS(4813), + [aux_sym__val_number_decimal_token3] = ACTIONS(4815), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(4817), + [aux_sym__val_number_token5] = ACTIONS(4817), + [aux_sym__val_number_token6] = ACTIONS(4817), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(4819), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), [anon_sym_POUND] = ACTIONS(3), }, - [1167] = { - [sym_comment] = STATE(1167), - [ts_builtin_sym_end] = ACTIONS(2439), - [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), - [anon_sym_SEMI] = ACTIONS(2437), - [sym_cmd_identifier] = ACTIONS(2437), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_DASH_DASH] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_as] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_not] = ACTIONS(2437), - [anon_sym_DOT_DOT2] = ACTIONS(2437), - [anon_sym_DOT] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2439), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2439), - [aux_sym__immediate_decimal_token1] = ACTIONS(2680), - [aux_sym__immediate_decimal_token2] = ACTIONS(2682), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [anon_sym_DOT2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2437), - [anon_sym_0o] = ACTIONS(2437), - [anon_sym_0x] = ACTIONS(2437), - [sym_val_date] = 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_CARET] = ACTIONS(2437), - [aux_sym_unquoted_token2] = ACTIONS(2437), - [anon_sym_POUND] = ACTIONS(113), + [1393] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6343), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6236), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4801), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5813), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1393), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(4801), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4803), + [anon_sym_DOT_DOT_LT] = ACTIONS(4803), + [anon_sym_null] = ACTIONS(4805), + [anon_sym_true] = ACTIONS(4807), + [anon_sym_false] = ACTIONS(4807), + [aux_sym__val_number_decimal_token1] = ACTIONS(4809), + [aux_sym__val_number_decimal_token2] = ACTIONS(4811), + [anon_sym_DOT2] = ACTIONS(4813), + [aux_sym__val_number_decimal_token3] = ACTIONS(4815), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(4817), + [aux_sym__val_number_token5] = ACTIONS(4817), + [aux_sym__val_number_token6] = ACTIONS(4817), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(4819), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), + [anon_sym_POUND] = ACTIONS(3), }, - [1168] = { - [sym_comment] = STATE(1168), - [anon_sym_export] = ACTIONS(2581), - [anon_sym_alias] = ACTIONS(2581), - [anon_sym_let] = ACTIONS(2581), - [anon_sym_let_DASHenv] = ACTIONS(2581), - [anon_sym_mut] = ACTIONS(2581), - [anon_sym_const] = ACTIONS(2581), - [anon_sym_SEMI] = ACTIONS(2581), - [sym_cmd_identifier] = ACTIONS(2581), - [anon_sym_LF] = ACTIONS(2583), - [anon_sym_def] = ACTIONS(2581), - [anon_sym_export_DASHenv] = ACTIONS(2581), - [anon_sym_extern] = ACTIONS(2581), - [anon_sym_module] = ACTIONS(2581), - [anon_sym_use] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2581), - [anon_sym_RPAREN] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2581), - [anon_sym_error] = ACTIONS(2581), - [anon_sym_DASH_DASH] = ACTIONS(2581), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_break] = ACTIONS(2581), - [anon_sym_continue] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2581), - [anon_sym_loop] = ACTIONS(2581), - [anon_sym_while] = ACTIONS(2581), - [anon_sym_do] = ACTIONS(2581), - [anon_sym_if] = ACTIONS(2581), - [anon_sym_match] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2581), - [anon_sym_RBRACE] = ACTIONS(2581), - [anon_sym_DOT_DOT] = ACTIONS(2581), - [anon_sym_try] = ACTIONS(2581), - [anon_sym_return] = ACTIONS(2581), - [anon_sym_source] = ACTIONS(2581), - [anon_sym_source_DASHenv] = ACTIONS(2581), - [anon_sym_register] = ACTIONS(2581), - [anon_sym_hide] = ACTIONS(2581), - [anon_sym_hide_DASHenv] = ACTIONS(2581), - [anon_sym_overlay] = ACTIONS(2581), - [anon_sym_as] = ACTIONS(2581), - [anon_sym_where] = ACTIONS(2581), - [anon_sym_not] = ACTIONS(2581), - [anon_sym_DOT_DOT2] = ACTIONS(2581), - [anon_sym_DOT] = ACTIONS(2581), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2581), - [anon_sym_DOT_DOT_LT] = ACTIONS(2581), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2583), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2583), - [aux_sym__immediate_decimal_token2] = ACTIONS(2684), - [anon_sym_null] = ACTIONS(2581), - [anon_sym_true] = ACTIONS(2581), - [anon_sym_false] = ACTIONS(2581), - [aux_sym__val_number_decimal_token1] = ACTIONS(2581), - [aux_sym__val_number_decimal_token2] = ACTIONS(2581), - [anon_sym_DOT2] = ACTIONS(2581), - [aux_sym__val_number_decimal_token3] = ACTIONS(2581), - [aux_sym__val_number_token1] = ACTIONS(2581), - [aux_sym__val_number_token2] = ACTIONS(2581), - [aux_sym__val_number_token3] = ACTIONS(2581), - [aux_sym__val_number_token4] = ACTIONS(2581), - [aux_sym__val_number_token5] = ACTIONS(2581), - [aux_sym__val_number_token6] = ACTIONS(2581), - [anon_sym_0b] = ACTIONS(2581), - [anon_sym_0o] = ACTIONS(2581), - [anon_sym_0x] = ACTIONS(2581), - [sym_val_date] = ACTIONS(2581), - [anon_sym_DQUOTE] = ACTIONS(2581), - [sym__str_single_quotes] = ACTIONS(2581), - [sym__str_back_ticks] = ACTIONS(2581), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2581), - [anon_sym_CARET] = ACTIONS(2581), - [aux_sym_unquoted_token2] = ACTIONS(2581), + [1394] = { + [sym_comment] = STATE(1394), + [anon_sym_LBRACK] = ACTIONS(1076), + [anon_sym_COMMA] = ACTIONS(1076), + [anon_sym_RBRACK] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(1076), + [anon_sym_DOLLAR] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_DASH_DASH] = ACTIONS(1076), + [anon_sym_DASH] = ACTIONS(1076), + [anon_sym_in] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1076), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_STAR] = ACTIONS(1076), + [anon_sym_STAR_STAR] = ACTIONS(1076), + [anon_sym_PLUS_PLUS] = ACTIONS(1076), + [anon_sym_SLASH] = ACTIONS(1076), + [anon_sym_mod] = ACTIONS(1076), + [anon_sym_SLASH_SLASH] = ACTIONS(1076), + [anon_sym_PLUS] = ACTIONS(1076), + [anon_sym_bit_DASHshl] = ACTIONS(1076), + [anon_sym_bit_DASHshr] = ACTIONS(1076), + [anon_sym_EQ_EQ] = ACTIONS(1076), + [anon_sym_BANG_EQ] = ACTIONS(1076), + [anon_sym_LT2] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1076), + [anon_sym_GT_EQ] = ACTIONS(1076), + [anon_sym_not_DASHin] = ACTIONS(1076), + [anon_sym_starts_DASHwith] = ACTIONS(1076), + [anon_sym_ends_DASHwith] = ACTIONS(1076), + [anon_sym_EQ_TILDE] = ACTIONS(1076), + [anon_sym_BANG_TILDE] = ACTIONS(1076), + [anon_sym_bit_DASHand] = ACTIONS(1076), + [anon_sym_bit_DASHxor] = ACTIONS(1076), + [anon_sym_bit_DASHor] = ACTIONS(1076), + [anon_sym_and] = ACTIONS(1076), + [anon_sym_xor] = ACTIONS(1076), + [anon_sym_or] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1076), + [anon_sym_DOT_DOT_LT] = ACTIONS(1076), + [anon_sym_null] = ACTIONS(1076), + [anon_sym_true] = ACTIONS(1076), + [anon_sym_false] = ACTIONS(1076), + [aux_sym__val_number_decimal_token1] = ACTIONS(1076), + [aux_sym__val_number_decimal_token2] = ACTIONS(1076), + [anon_sym_DOT2] = ACTIONS(1076), + [aux_sym__val_number_decimal_token3] = ACTIONS(1076), + [aux_sym__val_number_token1] = ACTIONS(1076), + [aux_sym__val_number_token2] = ACTIONS(1076), + [aux_sym__val_number_token3] = ACTIONS(1076), + [aux_sym__val_number_token4] = ACTIONS(1076), + [aux_sym__val_number_token5] = ACTIONS(1076), + [aux_sym__val_number_token6] = ACTIONS(1076), + [anon_sym_0b] = ACTIONS(1076), + [anon_sym_0o] = ACTIONS(1076), + [anon_sym_0x] = ACTIONS(1076), + [sym_val_date] = ACTIONS(1076), + [anon_sym_DQUOTE] = ACTIONS(1076), + [sym__str_single_quotes] = ACTIONS(1076), + [sym__str_back_ticks] = ACTIONS(1076), + [sym__entry_separator] = ACTIONS(1169), + [anon_sym_err_GT] = ACTIONS(1076), + [anon_sym_out_GT] = ACTIONS(1076), + [anon_sym_e_GT] = ACTIONS(1076), + [anon_sym_o_GT] = ACTIONS(1076), + [anon_sym_err_PLUSout_GT] = ACTIONS(1076), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1076), + [anon_sym_o_PLUSe_GT] = ACTIONS(1076), + [anon_sym_e_PLUSo_GT] = ACTIONS(1076), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1076), [anon_sym_POUND] = ACTIONS(113), }, - [1169] = { - [sym_comment] = STATE(1169), - [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), - [anon_sym_SEMI] = ACTIONS(2437), - [sym_cmd_identifier] = ACTIONS(2437), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_RPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_DASH_DASH] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_RBRACE] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_as] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_not] = ACTIONS(2437), - [anon_sym_DOT_DOT2] = ACTIONS(2437), - [anon_sym_DOT] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2439), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2439), - [aux_sym__immediate_decimal_token2] = ACTIONS(2594), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [anon_sym_DOT2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2437), - [anon_sym_0o] = ACTIONS(2437), - [anon_sym_0x] = ACTIONS(2437), - [sym_val_date] = 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_CARET] = ACTIONS(2437), - [aux_sym_unquoted_token2] = ACTIONS(2437), + [1395] = { + [sym_comment] = STATE(1395), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_COMMA] = ACTIONS(1171), + [anon_sym_RBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [sym__entry_separator] = ACTIONS(1173), + [anon_sym_err_GT] = ACTIONS(1171), + [anon_sym_out_GT] = ACTIONS(1171), + [anon_sym_e_GT] = ACTIONS(1171), + [anon_sym_o_GT] = ACTIONS(1171), + [anon_sym_err_PLUSout_GT] = ACTIONS(1171), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1171), + [anon_sym_o_PLUSe_GT] = ACTIONS(1171), + [anon_sym_e_PLUSo_GT] = ACTIONS(1171), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, - [1170] = { - [sym_expr_parenthesized] = STATE(9273), - [sym_val_range] = STATE(8105), - [sym__val_range] = STATE(10473), - [sym__val_range_with_end] = STATE(10561), - [sym__value] = STATE(8105), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(9105), - [sym_val_variable] = STATE(6047), - [sym__var] = STATE(7403), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(7472), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(7019), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym__cmd_arg] = STATE(8187), - [sym_redirection] = STATE(8195), - [sym__flag] = STATE(8200), - [sym_short_flag] = STATE(9344), - [sym_long_flag] = STATE(9344), - [sym_long_flag_equals_value] = STATE(8074), - [sym_long_flag_value] = STATE(8189), - [sym_unquoted] = STATE(7754), - [sym__unquoted_with_expr] = STATE(8024), - [sym__unquoted_anonymous_prefix] = STATE(10365), - [sym_comment] = STATE(1170), - [anon_sym_LBRACK] = ACTIONS(2686), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_DOLLAR] = ACTIONS(2690), - [anon_sym_DASH_DASH] = ACTIONS(2692), - [anon_sym_DASH] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_DOT_DOT] = ACTIONS(2698), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2700), - [anon_sym_DOT_DOT_LT] = ACTIONS(2700), - [anon_sym_null] = ACTIONS(2702), - [anon_sym_true] = ACTIONS(2704), - [anon_sym_false] = ACTIONS(2704), - [aux_sym__val_number_decimal_token1] = ACTIONS(2706), - [aux_sym__val_number_decimal_token2] = ACTIONS(2708), - [anon_sym_DOT2] = ACTIONS(2710), - [aux_sym__val_number_decimal_token3] = ACTIONS(2712), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(2716), - [aux_sym__val_number_token5] = ACTIONS(2716), - [aux_sym__val_number_token6] = ACTIONS(2716), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(2722), - [anon_sym_DQUOTE] = ACTIONS(2724), - [sym__str_single_quotes] = ACTIONS(2726), - [sym__str_back_ticks] = ACTIONS(2726), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(2732), - [anon_sym_out_GT] = ACTIONS(2732), - [anon_sym_e_GT] = ACTIONS(2732), - [anon_sym_o_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT] = ACTIONS(2732), - [aux_sym_unquoted_token1] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(3), - }, - [1171] = { - [sym_comment] = STATE(1171), - [anon_sym_export] = ACTIONS(2547), - [anon_sym_alias] = ACTIONS(2547), - [anon_sym_let] = ACTIONS(2547), - [anon_sym_let_DASHenv] = ACTIONS(2547), - [anon_sym_mut] = ACTIONS(2547), - [anon_sym_const] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [sym_cmd_identifier] = ACTIONS(2547), - [anon_sym_LF] = ACTIONS(2549), - [anon_sym_def] = ACTIONS(2547), - [anon_sym_export_DASHenv] = ACTIONS(2547), - [anon_sym_extern] = ACTIONS(2547), - [anon_sym_module] = ACTIONS(2547), - [anon_sym_use] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_RPAREN] = ACTIONS(2547), - [anon_sym_DOLLAR] = ACTIONS(2547), - [anon_sym_error] = ACTIONS(2547), - [anon_sym_DASH_DASH] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_break] = ACTIONS(2547), - [anon_sym_continue] = ACTIONS(2547), - [anon_sym_for] = ACTIONS(2547), - [anon_sym_loop] = ACTIONS(2547), - [anon_sym_while] = ACTIONS(2547), - [anon_sym_do] = ACTIONS(2547), - [anon_sym_if] = ACTIONS(2547), - [anon_sym_match] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2547), - [anon_sym_RBRACE] = ACTIONS(2547), - [anon_sym_DOT_DOT] = ACTIONS(2547), - [anon_sym_try] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2547), - [anon_sym_source] = ACTIONS(2547), - [anon_sym_source_DASHenv] = ACTIONS(2547), - [anon_sym_register] = ACTIONS(2547), - [anon_sym_hide] = ACTIONS(2547), - [anon_sym_hide_DASHenv] = ACTIONS(2547), - [anon_sym_overlay] = ACTIONS(2547), - [anon_sym_as] = ACTIONS(2547), - [anon_sym_where] = ACTIONS(2547), - [anon_sym_not] = ACTIONS(2547), - [anon_sym_DOT_DOT2] = ACTIONS(2547), - [anon_sym_DOT] = ACTIONS(2547), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), - [anon_sym_DOT_DOT_LT] = ACTIONS(2547), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2549), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2549), - [aux_sym__immediate_decimal_token2] = ACTIONS(2736), - [anon_sym_null] = ACTIONS(2547), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [aux_sym__val_number_decimal_token1] = ACTIONS(2547), - [aux_sym__val_number_decimal_token2] = ACTIONS(2547), - [anon_sym_DOT2] = ACTIONS(2547), - [aux_sym__val_number_decimal_token3] = ACTIONS(2547), - [aux_sym__val_number_token1] = ACTIONS(2547), - [aux_sym__val_number_token2] = ACTIONS(2547), - [aux_sym__val_number_token3] = ACTIONS(2547), - [aux_sym__val_number_token4] = ACTIONS(2547), - [aux_sym__val_number_token5] = ACTIONS(2547), - [aux_sym__val_number_token6] = ACTIONS(2547), - [anon_sym_0b] = ACTIONS(2547), - [anon_sym_0o] = ACTIONS(2547), - [anon_sym_0x] = ACTIONS(2547), - [sym_val_date] = ACTIONS(2547), - [anon_sym_DQUOTE] = ACTIONS(2547), - [sym__str_single_quotes] = ACTIONS(2547), - [sym__str_back_ticks] = ACTIONS(2547), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2547), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2547), - [aux_sym_unquoted_token2] = ACTIONS(2547), + [1396] = { + [sym_comment] = STATE(1396), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_COMMA] = ACTIONS(1171), + [anon_sym_RBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [sym__entry_separator] = ACTIONS(1173), + [anon_sym_err_GT] = ACTIONS(1171), + [anon_sym_out_GT] = ACTIONS(1171), + [anon_sym_e_GT] = ACTIONS(1171), + [anon_sym_o_GT] = ACTIONS(1171), + [anon_sym_err_PLUSout_GT] = ACTIONS(1171), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1171), + [anon_sym_o_PLUSe_GT] = ACTIONS(1171), + [anon_sym_e_PLUSo_GT] = ACTIONS(1171), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, - [1172] = { - [sym_expr_parenthesized] = STATE(8412), - [sym_val_range] = STATE(8105), - [sym__val_range] = STATE(10601), - [sym__val_range_with_end] = STATE(10561), - [sym__value] = STATE(8105), - [sym_val_nothing] = STATE(6590), - [sym_val_bool] = STATE(8776), - [sym_val_variable] = STATE(5935), - [sym__var] = STATE(7633), - [sym_val_number] = STATE(6590), - [sym__val_number_decimal] = STATE(7201), - [sym__val_number] = STATE(6519), - [sym_val_duration] = STATE(6590), - [sym_val_filesize] = STATE(6590), - [sym_val_binary] = STATE(6590), - [sym_val_string] = STATE(6590), - [sym__str_double_quotes] = STATE(7019), - [sym_val_interpolated] = STATE(6590), - [sym__inter_single_quotes] = STATE(6464), - [sym__inter_double_quotes] = STATE(6419), - [sym_val_list] = STATE(6590), - [sym_val_record] = STATE(6590), - [sym_val_table] = STATE(6590), - [sym_val_closure] = STATE(6590), - [sym__cmd_arg] = STATE(8187), - [sym_redirection] = STATE(8195), - [sym__flag] = STATE(8200), - [sym_short_flag] = STATE(9344), - [sym_long_flag] = STATE(9344), - [sym_long_flag_equals_value] = STATE(8074), - [sym_long_flag_value] = STATE(8189), - [sym_unquoted] = STATE(7754), - [sym__unquoted_with_expr] = STATE(8024), - [sym__unquoted_anonymous_prefix] = STATE(10307), - [sym_comment] = STATE(1172), - [anon_sym_LBRACK] = ACTIONS(2738), - [anon_sym_LPAREN] = ACTIONS(2740), - [anon_sym_DOLLAR] = ACTIONS(2742), - [anon_sym_DASH_DASH] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2746), - [anon_sym_DOT_DOT] = ACTIONS(2748), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2750), - [anon_sym_DOT_DOT_LT] = ACTIONS(2750), - [anon_sym_null] = ACTIONS(2752), - [anon_sym_true] = ACTIONS(2754), - [anon_sym_false] = ACTIONS(2754), - [aux_sym__val_number_decimal_token1] = ACTIONS(2756), - [aux_sym__val_number_decimal_token2] = ACTIONS(2758), - [anon_sym_DOT2] = ACTIONS(2760), - [aux_sym__val_number_decimal_token3] = ACTIONS(2762), - [aux_sym__val_number_token1] = ACTIONS(2764), - [aux_sym__val_number_token2] = ACTIONS(2764), - [aux_sym__val_number_token3] = ACTIONS(2764), - [aux_sym__val_number_token4] = ACTIONS(2766), - [aux_sym__val_number_token5] = ACTIONS(2766), - [aux_sym__val_number_token6] = ACTIONS(2766), - [anon_sym_0b] = ACTIONS(2768), - [anon_sym_0o] = ACTIONS(2770), - [anon_sym_0x] = ACTIONS(2770), - [sym_val_date] = ACTIONS(2772), - [anon_sym_DQUOTE] = ACTIONS(2724), - [sym__str_single_quotes] = ACTIONS(2726), - [sym__str_back_ticks] = ACTIONS(2726), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_err_GT] = ACTIONS(2778), - [anon_sym_out_GT] = ACTIONS(2778), - [anon_sym_e_GT] = ACTIONS(2778), - [anon_sym_o_GT] = ACTIONS(2778), - [anon_sym_err_PLUSout_GT] = ACTIONS(2778), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2778), - [anon_sym_o_PLUSe_GT] = ACTIONS(2778), - [anon_sym_e_PLUSo_GT] = ACTIONS(2778), - [aux_sym_unquoted_token1] = ACTIONS(2780), + [1397] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6351), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6236), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4801), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5819), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1397), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(4801), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4803), + [anon_sym_DOT_DOT_LT] = ACTIONS(4803), + [anon_sym_null] = ACTIONS(4805), + [anon_sym_true] = ACTIONS(4807), + [anon_sym_false] = ACTIONS(4807), + [aux_sym__val_number_decimal_token1] = ACTIONS(4809), + [aux_sym__val_number_decimal_token2] = ACTIONS(4811), + [anon_sym_DOT2] = ACTIONS(4813), + [aux_sym__val_number_decimal_token3] = ACTIONS(4815), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(4817), + [aux_sym__val_number_token5] = ACTIONS(4817), + [aux_sym__val_number_token6] = ACTIONS(4817), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(4819), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), [anon_sym_POUND] = ACTIONS(3), }, - [1173] = { - [sym_comment] = STATE(1173), - [anon_sym_export] = ACTIONS(2581), - [anon_sym_alias] = ACTIONS(2581), - [anon_sym_let] = ACTIONS(2581), - [anon_sym_let_DASHenv] = ACTIONS(2581), - [anon_sym_mut] = ACTIONS(2581), - [anon_sym_const] = ACTIONS(2581), - [anon_sym_SEMI] = ACTIONS(2581), - [sym_cmd_identifier] = ACTIONS(2581), - [anon_sym_LF] = ACTIONS(2583), - [anon_sym_def] = ACTIONS(2581), - [anon_sym_export_DASHenv] = ACTIONS(2581), - [anon_sym_extern] = ACTIONS(2581), - [anon_sym_module] = ACTIONS(2581), - [anon_sym_use] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2581), - [anon_sym_RPAREN] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2581), - [anon_sym_error] = ACTIONS(2581), - [anon_sym_DASH_DASH] = ACTIONS(2581), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_break] = ACTIONS(2581), - [anon_sym_continue] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2581), - [anon_sym_loop] = ACTIONS(2581), - [anon_sym_while] = ACTIONS(2581), - [anon_sym_do] = ACTIONS(2581), - [anon_sym_if] = ACTIONS(2581), - [anon_sym_match] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2581), - [anon_sym_RBRACE] = ACTIONS(2581), - [anon_sym_DOT_DOT] = ACTIONS(2581), - [anon_sym_try] = ACTIONS(2581), - [anon_sym_return] = ACTIONS(2581), - [anon_sym_source] = ACTIONS(2581), - [anon_sym_source_DASHenv] = ACTIONS(2581), - [anon_sym_register] = ACTIONS(2581), - [anon_sym_hide] = ACTIONS(2581), - [anon_sym_hide_DASHenv] = ACTIONS(2581), - [anon_sym_overlay] = ACTIONS(2581), - [anon_sym_as] = ACTIONS(2581), - [anon_sym_where] = ACTIONS(2581), - [anon_sym_not] = ACTIONS(2581), - [anon_sym_DOT_DOT2] = ACTIONS(2581), - [anon_sym_DOT] = ACTIONS(2782), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2581), - [anon_sym_DOT_DOT_LT] = ACTIONS(2581), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2583), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2583), - [aux_sym__immediate_decimal_token2] = ACTIONS(2684), - [anon_sym_null] = ACTIONS(2581), - [anon_sym_true] = ACTIONS(2581), - [anon_sym_false] = ACTIONS(2581), - [aux_sym__val_number_decimal_token1] = ACTIONS(2581), - [aux_sym__val_number_decimal_token2] = ACTIONS(2581), - [anon_sym_DOT2] = ACTIONS(2581), - [aux_sym__val_number_decimal_token3] = ACTIONS(2581), - [aux_sym__val_number_token1] = ACTIONS(2581), - [aux_sym__val_number_token2] = ACTIONS(2581), - [aux_sym__val_number_token3] = ACTIONS(2581), - [aux_sym__val_number_token4] = ACTIONS(2581), - [aux_sym__val_number_token5] = ACTIONS(2581), - [aux_sym__val_number_token6] = ACTIONS(2581), - [anon_sym_0b] = ACTIONS(2581), - [anon_sym_0o] = ACTIONS(2581), - [anon_sym_0x] = ACTIONS(2581), - [sym_val_date] = ACTIONS(2581), - [anon_sym_DQUOTE] = ACTIONS(2581), - [sym__str_single_quotes] = ACTIONS(2581), - [sym__str_back_ticks] = ACTIONS(2581), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2581), - [anon_sym_CARET] = ACTIONS(2581), - [aux_sym_unquoted_token2] = ACTIONS(2581), + [1398] = { + [sym_comment] = STATE(1398), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_COMMA] = ACTIONS(1171), + [anon_sym_RBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [sym__entry_separator] = ACTIONS(1173), + [anon_sym_err_GT] = ACTIONS(1171), + [anon_sym_out_GT] = ACTIONS(1171), + [anon_sym_e_GT] = ACTIONS(1171), + [anon_sym_o_GT] = ACTIONS(1171), + [anon_sym_err_PLUSout_GT] = ACTIONS(1171), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1171), + [anon_sym_o_PLUSe_GT] = ACTIONS(1171), + [anon_sym_e_PLUSo_GT] = ACTIONS(1171), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, - [1174] = { - [sym_expr_parenthesized] = STATE(9555), - [sym_val_range] = STATE(8105), - [sym__val_range] = STATE(10473), - [sym__val_range_with_end] = STATE(10561), - [sym__value] = STATE(8105), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(10244), - [sym_val_variable] = STATE(6316), - [sym__var] = STATE(7403), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(7749), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(7019), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym__cmd_arg] = STATE(8187), - [sym_redirection] = STATE(8195), - [sym__flag] = STATE(8200), - [sym_short_flag] = STATE(9344), - [sym_long_flag] = STATE(9344), - [sym_long_flag_equals_value] = STATE(8074), - [sym_long_flag_value] = STATE(8189), - [sym_unquoted] = STATE(7754), - [sym__unquoted_with_expr] = STATE(8024), - [sym__unquoted_anonymous_prefix] = STATE(10365), - [sym_comment] = STATE(1174), - [anon_sym_LBRACK] = ACTIONS(2686), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_DOLLAR] = ACTIONS(2690), - [anon_sym_DASH_DASH] = ACTIONS(2785), - [anon_sym_DASH] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_DOT_DOT] = ACTIONS(2787), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2789), - [anon_sym_DOT_DOT_LT] = ACTIONS(2789), - [anon_sym_null] = ACTIONS(2791), - [anon_sym_true] = ACTIONS(2793), - [anon_sym_false] = ACTIONS(2793), - [aux_sym__val_number_decimal_token1] = ACTIONS(2795), - [aux_sym__val_number_decimal_token2] = ACTIONS(2797), - [anon_sym_DOT2] = ACTIONS(2799), - [aux_sym__val_number_decimal_token3] = ACTIONS(2801), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(2803), - [aux_sym__val_number_token5] = ACTIONS(2803), - [aux_sym__val_number_token6] = ACTIONS(2803), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(2805), - [anon_sym_DQUOTE] = ACTIONS(2724), - [sym__str_single_quotes] = ACTIONS(2726), - [sym__str_back_ticks] = ACTIONS(2726), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(2807), - [anon_sym_out_GT] = ACTIONS(2807), - [anon_sym_e_GT] = ACTIONS(2807), - [anon_sym_o_GT] = ACTIONS(2807), - [anon_sym_err_PLUSout_GT] = ACTIONS(2807), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2807), - [anon_sym_o_PLUSe_GT] = ACTIONS(2807), - [anon_sym_e_PLUSo_GT] = ACTIONS(2807), - [aux_sym_unquoted_token1] = ACTIONS(2734), + [1399] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6342), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6236), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4801), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5852), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1399), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(4801), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4803), + [anon_sym_DOT_DOT_LT] = ACTIONS(4803), + [anon_sym_null] = ACTIONS(4805), + [anon_sym_true] = ACTIONS(4807), + [anon_sym_false] = ACTIONS(4807), + [aux_sym__val_number_decimal_token1] = ACTIONS(4809), + [aux_sym__val_number_decimal_token2] = ACTIONS(4811), + [anon_sym_DOT2] = ACTIONS(4813), + [aux_sym__val_number_decimal_token3] = ACTIONS(4815), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(4817), + [aux_sym__val_number_token5] = ACTIONS(4817), + [aux_sym__val_number_token6] = ACTIONS(4817), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(4819), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), [anon_sym_POUND] = ACTIONS(3), }, - [1175] = { - [sym_expr_parenthesized] = STATE(3896), - [sym_val_range] = STATE(4178), - [sym__val_range] = STATE(10692), - [sym__val_range_with_end] = STATE(10575), - [sym__value] = STATE(4178), - [sym_val_nothing] = STATE(4216), - [sym_val_bool] = STATE(3944), - [sym_val_variable] = STATE(3831), - [sym__var] = STATE(3701), - [sym_val_number] = STATE(4216), - [sym__val_number_decimal] = STATE(3610), - [sym__val_number] = STATE(4220), - [sym_val_duration] = STATE(4216), - [sym_val_filesize] = STATE(4216), - [sym_val_binary] = STATE(4216), - [sym_val_string] = STATE(4216), - [sym__str_double_quotes] = STATE(4244), - [sym_val_interpolated] = STATE(4216), - [sym__inter_single_quotes] = STATE(4319), - [sym__inter_double_quotes] = STATE(4246), - [sym_val_list] = STATE(4216), - [sym_val_record] = STATE(4216), - [sym_val_table] = STATE(4216), - [sym_val_closure] = STATE(4216), - [sym__cmd_arg] = STATE(4281), - [sym_redirection] = STATE(4179), - [sym__flag] = STATE(4182), - [sym_short_flag] = STATE(4206), - [sym_long_flag] = STATE(4206), - [sym_long_flag_equals_value] = STATE(4310), - [sym_long_flag_value] = STATE(4282), - [sym_unquoted] = STATE(3984), - [sym__unquoted_with_expr] = STATE(4184), - [sym__unquoted_anonymous_prefix] = STATE(10271), - [sym_comment] = STATE(1175), - [anon_sym_LBRACK] = ACTIONS(2809), - [anon_sym_LPAREN] = ACTIONS(1653), - [anon_sym_DOLLAR] = ACTIONS(1655), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_LBRACE] = ACTIONS(2813), - [anon_sym_DOT_DOT] = ACTIONS(2815), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2817), - [anon_sym_DOT_DOT_LT] = ACTIONS(2817), - [anon_sym_null] = ACTIONS(2819), - [anon_sym_true] = ACTIONS(2821), - [anon_sym_false] = ACTIONS(2821), - [aux_sym__val_number_decimal_token1] = ACTIONS(2823), - [aux_sym__val_number_decimal_token2] = ACTIONS(2825), - [anon_sym_DOT2] = ACTIONS(2827), - [aux_sym__val_number_decimal_token3] = ACTIONS(2829), - [aux_sym__val_number_token1] = ACTIONS(1681), - [aux_sym__val_number_token2] = ACTIONS(1681), - [aux_sym__val_number_token3] = ACTIONS(1681), - [aux_sym__val_number_token4] = ACTIONS(2831), - [aux_sym__val_number_token5] = ACTIONS(2831), - [aux_sym__val_number_token6] = ACTIONS(2831), - [anon_sym_0b] = ACTIONS(1685), - [anon_sym_0o] = ACTIONS(1687), - [anon_sym_0x] = ACTIONS(1687), - [sym_val_date] = ACTIONS(2833), - [anon_sym_DQUOTE] = ACTIONS(1691), - [sym__str_single_quotes] = ACTIONS(1693), - [sym__str_back_ticks] = ACTIONS(1693), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2835), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2837), - [anon_sym_err_GT] = ACTIONS(2839), - [anon_sym_out_GT] = ACTIONS(2839), - [anon_sym_e_GT] = ACTIONS(2839), - [anon_sym_o_GT] = ACTIONS(2839), - [anon_sym_err_PLUSout_GT] = ACTIONS(2839), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2839), - [anon_sym_o_PLUSe_GT] = ACTIONS(2839), - [anon_sym_e_PLUSo_GT] = ACTIONS(2839), - [aux_sym_unquoted_token1] = ACTIONS(2841), + [1400] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6350), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6236), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4801), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5856), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1400), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(4801), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4803), + [anon_sym_DOT_DOT_LT] = ACTIONS(4803), + [anon_sym_null] = ACTIONS(4805), + [anon_sym_true] = ACTIONS(4807), + [anon_sym_false] = ACTIONS(4807), + [aux_sym__val_number_decimal_token1] = ACTIONS(4809), + [aux_sym__val_number_decimal_token2] = ACTIONS(4811), + [anon_sym_DOT2] = ACTIONS(4813), + [aux_sym__val_number_decimal_token3] = ACTIONS(4815), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(4817), + [aux_sym__val_number_token5] = ACTIONS(4817), + [aux_sym__val_number_token6] = ACTIONS(4817), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(4819), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), [anon_sym_POUND] = ACTIONS(3), }, - [1176] = { - [sym_comment] = STATE(1176), - [anon_sym_export] = ACTIONS(2843), - [anon_sym_alias] = ACTIONS(2843), - [anon_sym_let] = ACTIONS(2843), - [anon_sym_let_DASHenv] = ACTIONS(2843), - [anon_sym_mut] = ACTIONS(2843), - [anon_sym_const] = ACTIONS(2843), - [anon_sym_SEMI] = ACTIONS(2843), - [sym_cmd_identifier] = ACTIONS(2843), - [anon_sym_LF] = ACTIONS(2845), - [anon_sym_def] = ACTIONS(2843), - [anon_sym_export_DASHenv] = ACTIONS(2843), - [anon_sym_extern] = ACTIONS(2843), - [anon_sym_module] = ACTIONS(2843), - [anon_sym_use] = ACTIONS(2843), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_LPAREN] = ACTIONS(2843), - [anon_sym_RPAREN] = ACTIONS(2843), - [anon_sym_DOLLAR] = ACTIONS(2843), - [anon_sym_error] = ACTIONS(2843), - [anon_sym_DASH_DASH] = ACTIONS(2843), - [anon_sym_DASH] = ACTIONS(2843), - [anon_sym_break] = ACTIONS(2843), - [anon_sym_continue] = ACTIONS(2843), - [anon_sym_for] = ACTIONS(2843), - [anon_sym_loop] = ACTIONS(2843), - [anon_sym_while] = ACTIONS(2843), - [anon_sym_do] = ACTIONS(2843), - [anon_sym_if] = ACTIONS(2843), - [anon_sym_match] = ACTIONS(2843), - [anon_sym_LBRACE] = ACTIONS(2843), - [anon_sym_RBRACE] = ACTIONS(2843), - [anon_sym_DOT_DOT] = ACTIONS(2843), - [anon_sym_try] = ACTIONS(2843), - [anon_sym_return] = ACTIONS(2843), - [anon_sym_source] = ACTIONS(2843), - [anon_sym_source_DASHenv] = ACTIONS(2843), - [anon_sym_register] = ACTIONS(2843), - [anon_sym_hide] = ACTIONS(2843), - [anon_sym_hide_DASHenv] = ACTIONS(2843), - [anon_sym_overlay] = ACTIONS(2843), - [anon_sym_as] = ACTIONS(2843), - [anon_sym_where] = ACTIONS(2843), - [anon_sym_not] = ACTIONS(2843), - [anon_sym_LPAREN2] = ACTIONS(2847), - [anon_sym_DOT_DOT2] = ACTIONS(2849), - [anon_sym_DOT] = ACTIONS(2851), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2843), - [anon_sym_DOT_DOT_LT] = ACTIONS(2843), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2853), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2853), - [anon_sym_null] = ACTIONS(2843), - [anon_sym_true] = ACTIONS(2843), - [anon_sym_false] = ACTIONS(2843), - [aux_sym__val_number_decimal_token1] = ACTIONS(2843), - [aux_sym__val_number_decimal_token2] = ACTIONS(2843), - [anon_sym_DOT2] = ACTIONS(2843), - [aux_sym__val_number_decimal_token3] = ACTIONS(2843), - [aux_sym__val_number_token1] = ACTIONS(2843), - [aux_sym__val_number_token2] = ACTIONS(2843), - [aux_sym__val_number_token3] = ACTIONS(2843), - [aux_sym__val_number_token4] = ACTIONS(2843), - [aux_sym__val_number_token5] = ACTIONS(2843), - [aux_sym__val_number_token6] = ACTIONS(2843), - [anon_sym_0b] = ACTIONS(2843), - [anon_sym_0o] = ACTIONS(2843), - [anon_sym_0x] = ACTIONS(2843), - [sym_val_date] = ACTIONS(2843), - [anon_sym_DQUOTE] = ACTIONS(2843), - [sym__str_single_quotes] = ACTIONS(2843), - [sym__str_back_ticks] = ACTIONS(2843), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2843), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2843), - [anon_sym_CARET] = ACTIONS(2843), - [aux_sym_unquoted_token2] = ACTIONS(2851), - [anon_sym_POUND] = ACTIONS(113), - }, - [1177] = { - [sym_expr_parenthesized] = STATE(8455), - [sym_val_range] = STATE(10158), - [sym__val_range] = STATE(10610), - [sym__val_range_with_end] = STATE(10589), - [sym__value] = STATE(10158), - [sym_val_nothing] = STATE(9685), - [sym_val_bool] = STATE(9298), - [sym_val_variable] = STATE(8319), - [sym__var] = STATE(7579), - [sym_val_number] = STATE(9685), - [sym__val_number_decimal] = STATE(7246), - [sym__val_number] = STATE(9689), - [sym_val_duration] = STATE(9685), - [sym_val_filesize] = STATE(9685), - [sym_val_binary] = STATE(9685), - [sym_val_string] = STATE(9685), - [sym__str_double_quotes] = STATE(6969), - [sym_val_interpolated] = STATE(9685), - [sym__inter_single_quotes] = STATE(9459), - [sym__inter_double_quotes] = STATE(9461), - [sym_val_list] = STATE(9685), - [sym_val_record] = STATE(9685), - [sym_val_table] = STATE(9685), - [sym_val_closure] = STATE(9685), - [sym__cmd_arg] = STATE(10164), - [sym_redirection] = STATE(10160), - [sym__flag] = STATE(10161), - [sym_short_flag] = STATE(9344), - [sym_long_flag] = STATE(9344), - [sym_long_flag_equals_value] = STATE(9751), - [sym_long_flag_value] = STATE(10165), - [sym_unquoted] = STATE(8743), - [sym__unquoted_with_expr] = STATE(10163), - [sym__unquoted_anonymous_prefix] = STATE(10350), - [sym_comment] = STATE(1177), - [anon_sym_LBRACK] = ACTIONS(2855), - [anon_sym_LPAREN] = ACTIONS(2857), - [anon_sym_DOLLAR] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2863), - [anon_sym_DOT_DOT] = ACTIONS(2865), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2867), - [anon_sym_DOT_DOT_LT] = ACTIONS(2867), - [anon_sym_null] = ACTIONS(2869), - [anon_sym_true] = ACTIONS(2871), - [anon_sym_false] = ACTIONS(2871), - [aux_sym__val_number_decimal_token1] = ACTIONS(2873), - [aux_sym__val_number_decimal_token2] = ACTIONS(2875), - [anon_sym_DOT2] = ACTIONS(2877), - [aux_sym__val_number_decimal_token3] = ACTIONS(2879), - [aux_sym__val_number_token1] = ACTIONS(2881), - [aux_sym__val_number_token2] = ACTIONS(2881), - [aux_sym__val_number_token3] = ACTIONS(2881), - [aux_sym__val_number_token4] = ACTIONS(2883), - [aux_sym__val_number_token5] = ACTIONS(2883), - [aux_sym__val_number_token6] = ACTIONS(2883), - [anon_sym_0b] = ACTIONS(2885), - [anon_sym_0o] = ACTIONS(2887), - [anon_sym_0x] = ACTIONS(2887), - [sym_val_date] = ACTIONS(2889), - [anon_sym_DQUOTE] = ACTIONS(2891), - [sym__str_single_quotes] = ACTIONS(2893), - [sym__str_back_ticks] = ACTIONS(2893), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2895), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2897), - [anon_sym_err_GT] = ACTIONS(2899), - [anon_sym_out_GT] = ACTIONS(2899), - [anon_sym_e_GT] = ACTIONS(2899), - [anon_sym_o_GT] = ACTIONS(2899), - [anon_sym_err_PLUSout_GT] = ACTIONS(2899), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2899), - [anon_sym_o_PLUSe_GT] = ACTIONS(2899), - [anon_sym_e_PLUSo_GT] = ACTIONS(2899), - [aux_sym_unquoted_token1] = ACTIONS(2901), + [1401] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6353), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6236), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4801), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5534), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1401), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(4801), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4803), + [anon_sym_DOT_DOT_LT] = ACTIONS(4803), + [anon_sym_null] = ACTIONS(4805), + [anon_sym_true] = ACTIONS(4807), + [anon_sym_false] = ACTIONS(4807), + [aux_sym__val_number_decimal_token1] = ACTIONS(4809), + [aux_sym__val_number_decimal_token2] = ACTIONS(4811), + [anon_sym_DOT2] = ACTIONS(4813), + [aux_sym__val_number_decimal_token3] = ACTIONS(4815), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(4817), + [aux_sym__val_number_token5] = ACTIONS(4817), + [aux_sym__val_number_token6] = ACTIONS(4817), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(4819), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), [anon_sym_POUND] = ACTIONS(3), }, - [1178] = { - [sym__immediate_decimal] = STATE(9346), - [sym_comment] = STATE(1178), - [anon_sym_LBRACK] = ACTIONS(938), - [anon_sym_COMMA] = ACTIONS(938), - [anon_sym_LPAREN] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(938), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(938), - [anon_sym__] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_STAR_STAR] = ACTIONS(938), - [anon_sym_PLUS_PLUS] = ACTIONS(938), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(938), - [anon_sym_SLASH_SLASH] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(938), - [anon_sym_bit_DASHshr] = ACTIONS(938), - [anon_sym_EQ_EQ] = ACTIONS(938), - [anon_sym_BANG_EQ] = ACTIONS(938), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(938), - [anon_sym_GT_EQ] = ACTIONS(938), - [anon_sym_not_DASHin] = ACTIONS(938), - [anon_sym_starts_DASHwith] = ACTIONS(938), - [anon_sym_ends_DASHwith] = ACTIONS(938), - [anon_sym_EQ_TILDE] = ACTIONS(938), - [anon_sym_BANG_TILDE] = ACTIONS(938), - [anon_sym_bit_DASHand] = ACTIONS(938), - [anon_sym_bit_DASHxor] = ACTIONS(938), - [anon_sym_bit_DASHor] = ACTIONS(938), - [anon_sym_and] = ACTIONS(938), - [anon_sym_xor] = ACTIONS(938), - [anon_sym_or] = ACTIONS(938), - [anon_sym_DOT] = ACTIONS(2903), - [anon_sym_DOT_DOT_EQ] = ACTIONS(938), - [anon_sym_DOT_DOT_LT] = ACTIONS(938), - [aux_sym__immediate_decimal_token1] = ACTIONS(942), - [aux_sym__immediate_decimal_token3] = ACTIONS(1582), - [aux_sym__immediate_decimal_token4] = ACTIONS(1584), - [anon_sym_null] = ACTIONS(938), - [anon_sym_true] = ACTIONS(938), - [anon_sym_false] = ACTIONS(938), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(938), - [aux_sym__val_number_token2] = ACTIONS(938), - [aux_sym__val_number_token3] = ACTIONS(938), - [aux_sym__val_number_token4] = ACTIONS(938), - [aux_sym__val_number_token5] = ACTIONS(938), - [aux_sym__val_number_token6] = ACTIONS(938), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(938), - [sym__str_single_quotes] = ACTIONS(938), - [sym__str_back_ticks] = ACTIONS(938), - [anon_sym_err_GT] = ACTIONS(938), - [anon_sym_out_GT] = ACTIONS(938), - [anon_sym_e_GT] = ACTIONS(938), - [anon_sym_o_GT] = ACTIONS(938), - [anon_sym_err_PLUSout_GT] = ACTIONS(938), - [anon_sym_out_PLUSerr_GT] = ACTIONS(938), - [anon_sym_o_PLUSe_GT] = ACTIONS(938), - [anon_sym_e_PLUSo_GT] = ACTIONS(938), - [aux_sym_unquoted_token1] = ACTIONS(936), - [aux_sym_unquoted_token3] = ACTIONS(2905), - [aux_sym_unquoted_token5] = ACTIONS(2907), + [1402] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6357), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6236), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4801), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5863), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1402), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(4801), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4803), + [anon_sym_DOT_DOT_LT] = ACTIONS(4803), + [anon_sym_null] = ACTIONS(4805), + [anon_sym_true] = ACTIONS(4807), + [anon_sym_false] = ACTIONS(4807), + [aux_sym__val_number_decimal_token1] = ACTIONS(4809), + [aux_sym__val_number_decimal_token2] = ACTIONS(4811), + [anon_sym_DOT2] = ACTIONS(4813), + [aux_sym__val_number_decimal_token3] = ACTIONS(4815), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(4817), + [aux_sym__val_number_token5] = ACTIONS(4817), + [aux_sym__val_number_token6] = ACTIONS(4817), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(4819), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), [anon_sym_POUND] = ACTIONS(3), }, - [1179] = { - [sym_comment] = STATE(1179), - [anon_sym_LBRACK] = ACTIONS(961), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_RBRACK] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(961), - [anon_sym_DOLLAR] = ACTIONS(961), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH_DASH] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(961), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(961), - [anon_sym_SLASH_SLASH] = ACTIONS(961), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(961), - [anon_sym_bit_DASHshr] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(961), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_not_DASHin] = ACTIONS(961), - [anon_sym_starts_DASHwith] = ACTIONS(961), - [anon_sym_ends_DASHwith] = ACTIONS(961), - [anon_sym_EQ_TILDE] = ACTIONS(961), - [anon_sym_BANG_TILDE] = ACTIONS(961), - [anon_sym_bit_DASHand] = ACTIONS(961), - [anon_sym_bit_DASHxor] = ACTIONS(961), - [anon_sym_bit_DASHor] = ACTIONS(961), - [anon_sym_and] = ACTIONS(961), - [anon_sym_xor] = ACTIONS(961), - [anon_sym_or] = ACTIONS(961), - [anon_sym_DOT_DOT2] = ACTIONS(2909), - [anon_sym_DOT] = ACTIONS(2911), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_DOT_DOT_LT] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2913), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2913), - [anon_sym_null] = ACTIONS(961), - [anon_sym_true] = ACTIONS(961), - [anon_sym_false] = ACTIONS(961), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(961), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(961), - [aux_sym__val_number_token1] = ACTIONS(961), - [aux_sym__val_number_token2] = ACTIONS(961), - [aux_sym__val_number_token3] = ACTIONS(961), - [aux_sym__val_number_token4] = ACTIONS(961), - [aux_sym__val_number_token5] = ACTIONS(961), - [aux_sym__val_number_token6] = ACTIONS(961), - [anon_sym_0b] = ACTIONS(959), - [sym_filesize_unit] = ACTIONS(2915), - [sym_duration_unit] = ACTIONS(2917), - [anon_sym_0o] = ACTIONS(959), - [anon_sym_0x] = ACTIONS(959), - [sym_val_date] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(961), - [sym__str_single_quotes] = ACTIONS(961), - [sym__str_back_ticks] = ACTIONS(961), - [anon_sym_err_GT] = ACTIONS(961), - [anon_sym_out_GT] = ACTIONS(961), - [anon_sym_e_GT] = ACTIONS(961), - [anon_sym_o_GT] = ACTIONS(961), - [anon_sym_err_PLUSout_GT] = ACTIONS(961), - [anon_sym_out_PLUSerr_GT] = ACTIONS(961), - [anon_sym_o_PLUSe_GT] = ACTIONS(961), - [anon_sym_e_PLUSo_GT] = ACTIONS(961), - [aux_sym_unquoted_token5] = ACTIONS(2919), - [aux_sym__unquoted_in_list_token1] = ACTIONS(959), + [1403] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6334), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6236), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4801), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5572), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1403), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(4801), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4803), + [anon_sym_DOT_DOT_LT] = ACTIONS(4803), + [anon_sym_null] = ACTIONS(4805), + [anon_sym_true] = ACTIONS(4807), + [anon_sym_false] = ACTIONS(4807), + [aux_sym__val_number_decimal_token1] = ACTIONS(4809), + [aux_sym__val_number_decimal_token2] = ACTIONS(4811), + [anon_sym_DOT2] = ACTIONS(4813), + [aux_sym__val_number_decimal_token3] = ACTIONS(4815), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(4817), + [aux_sym__val_number_token5] = ACTIONS(4817), + [aux_sym__val_number_token6] = ACTIONS(4817), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(4819), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), [anon_sym_POUND] = ACTIONS(3), }, - [1180] = { - [sym_expr_parenthesized] = STATE(7974), - [sym_val_range] = STATE(8530), - [sym__val_range] = STATE(10614), - [sym__val_range_with_end] = STATE(10612), - [sym__value] = STATE(8530), - [sym_val_nothing] = STATE(6059), - [sym_val_bool] = STATE(8123), - [sym_val_variable] = STATE(5445), - [sym__var] = STATE(4804), - [sym_val_number] = STATE(6059), - [sym__val_number_decimal] = STATE(6947), - [sym__val_number] = STATE(6097), - [sym_val_duration] = STATE(6059), - [sym_val_filesize] = STATE(6059), - [sym_val_binary] = STATE(6059), - [sym_val_string] = STATE(6059), - [sym__str_double_quotes] = STATE(6144), - [sym_val_interpolated] = STATE(6059), - [sym__inter_single_quotes] = STATE(6158), - [sym__inter_double_quotes] = STATE(6159), - [sym_val_list] = STATE(6059), - [sym_val_record] = STATE(6059), - [sym_val_table] = STATE(6059), - [sym_val_closure] = STATE(6059), - [sym__cmd_arg] = STATE(8710), - [sym_redirection] = STATE(8537), - [sym__flag] = STATE(8539), - [sym_short_flag] = STATE(8772), - [sym_long_flag] = STATE(8772), - [sym_long_flag_equals_value] = STATE(8808), - [sym_long_flag_value] = STATE(8602), - [sym_unquoted] = STATE(8171), - [sym__unquoted_with_expr] = STATE(8543), - [sym__unquoted_anonymous_prefix] = STATE(10241), - [sym_comment] = STATE(1180), - [anon_sym_LBRACK] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2923), - [anon_sym_DOLLAR] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2929), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_DOT_DOT] = ACTIONS(2933), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2935), - [anon_sym_DOT_DOT_LT] = ACTIONS(2935), - [anon_sym_null] = ACTIONS(2937), - [anon_sym_true] = ACTIONS(2939), - [anon_sym_false] = ACTIONS(2939), - [aux_sym__val_number_decimal_token1] = ACTIONS(2941), - [aux_sym__val_number_decimal_token2] = ACTIONS(2943), - [anon_sym_DOT2] = ACTIONS(2945), - [aux_sym__val_number_decimal_token3] = ACTIONS(2947), - [aux_sym__val_number_token1] = ACTIONS(2949), - [aux_sym__val_number_token2] = ACTIONS(2949), - [aux_sym__val_number_token3] = ACTIONS(2949), - [aux_sym__val_number_token4] = ACTIONS(2951), - [aux_sym__val_number_token5] = ACTIONS(2951), - [aux_sym__val_number_token6] = ACTIONS(2951), - [anon_sym_0b] = ACTIONS(2953), - [anon_sym_0o] = ACTIONS(2955), - [anon_sym_0x] = ACTIONS(2955), - [sym_val_date] = ACTIONS(2957), - [anon_sym_DQUOTE] = ACTIONS(2959), - [sym__str_single_quotes] = ACTIONS(2961), - [sym__str_back_ticks] = ACTIONS(2961), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2963), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2965), - [anon_sym_err_GT] = ACTIONS(2967), - [anon_sym_out_GT] = ACTIONS(2967), - [anon_sym_e_GT] = ACTIONS(2967), - [anon_sym_o_GT] = ACTIONS(2967), - [anon_sym_err_PLUSout_GT] = ACTIONS(2967), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2967), - [anon_sym_o_PLUSe_GT] = ACTIONS(2967), - [anon_sym_e_PLUSo_GT] = ACTIONS(2967), - [aux_sym_unquoted_token1] = ACTIONS(2969), + [1404] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6346), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6236), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4801), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5599), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1404), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(4801), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4803), + [anon_sym_DOT_DOT_LT] = ACTIONS(4803), + [anon_sym_null] = ACTIONS(4805), + [anon_sym_true] = ACTIONS(4807), + [anon_sym_false] = ACTIONS(4807), + [aux_sym__val_number_decimal_token1] = ACTIONS(4809), + [aux_sym__val_number_decimal_token2] = ACTIONS(4811), + [anon_sym_DOT2] = ACTIONS(4813), + [aux_sym__val_number_decimal_token3] = ACTIONS(4815), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(4817), + [aux_sym__val_number_token5] = ACTIONS(4817), + [aux_sym__val_number_token6] = ACTIONS(4817), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(4819), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), [anon_sym_POUND] = ACTIONS(3), }, - [1181] = { - [sym_expr_parenthesized] = STATE(8441), - [sym_val_range] = STATE(5421), - [sym__val_range] = STATE(10572), - [sym__val_range_with_end] = STATE(10600), - [sym__value] = STATE(5421), - [sym_val_nothing] = STATE(6374), - [sym_val_bool] = STATE(8656), - [sym_val_variable] = STATE(5610), - [sym__var] = STATE(7845), - [sym_val_number] = STATE(6374), - [sym__val_number_decimal] = STATE(7118), - [sym__val_number] = STATE(5769), - [sym_val_duration] = STATE(6374), - [sym_val_filesize] = STATE(6374), - [sym_val_binary] = STATE(6374), - [sym_val_string] = STATE(6374), - [sym__str_double_quotes] = STATE(6386), - [sym_val_interpolated] = STATE(6374), - [sym__inter_single_quotes] = STATE(6363), - [sym__inter_double_quotes] = STATE(6365), - [sym_val_list] = STATE(6374), - [sym_val_record] = STATE(6374), - [sym_val_table] = STATE(6374), - [sym_val_closure] = STATE(6374), - [sym__cmd_arg] = STATE(5336), - [sym_redirection] = STATE(5422), - [sym__flag] = STATE(5423), - [sym_short_flag] = STATE(5303), - [sym_long_flag] = STATE(5303), - [sym_long_flag_equals_value] = STATE(5400), - [sym_long_flag_value] = STATE(5341), - [sym_unquoted] = STATE(4929), - [sym__unquoted_with_expr] = STATE(5424), - [sym__unquoted_anonymous_prefix] = STATE(10289), - [sym_comment] = STATE(1181), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(2971), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(2973), - [anon_sym_DASH] = ACTIONS(2975), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_DOT_DOT] = ACTIONS(2977), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2979), - [anon_sym_DOT_DOT_LT] = ACTIONS(2979), - [anon_sym_null] = ACTIONS(2981), - [anon_sym_true] = ACTIONS(2983), - [anon_sym_false] = ACTIONS(2983), - [aux_sym__val_number_decimal_token1] = ACTIONS(2985), - [aux_sym__val_number_decimal_token2] = ACTIONS(2987), - [anon_sym_DOT2] = ACTIONS(2989), - [aux_sym__val_number_decimal_token3] = ACTIONS(2991), - [aux_sym__val_number_token1] = ACTIONS(93), - [aux_sym__val_number_token2] = ACTIONS(93), - [aux_sym__val_number_token3] = ACTIONS(93), - [aux_sym__val_number_token4] = ACTIONS(2993), - [aux_sym__val_number_token5] = ACTIONS(2993), - [aux_sym__val_number_token6] = ACTIONS(2993), - [anon_sym_0b] = ACTIONS(97), - [anon_sym_0o] = ACTIONS(99), - [anon_sym_0x] = ACTIONS(99), - [sym_val_date] = ACTIONS(2995), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym__str_single_quotes] = ACTIONS(105), - [sym__str_back_ticks] = ACTIONS(105), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(109), - [anon_sym_err_GT] = ACTIONS(2997), - [anon_sym_out_GT] = ACTIONS(2997), - [anon_sym_e_GT] = ACTIONS(2997), - [anon_sym_o_GT] = ACTIONS(2997), - [anon_sym_err_PLUSout_GT] = ACTIONS(2997), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2997), - [anon_sym_o_PLUSe_GT] = ACTIONS(2997), - [anon_sym_e_PLUSo_GT] = ACTIONS(2997), - [aux_sym_unquoted_token1] = ACTIONS(2999), + [1405] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6338), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6236), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4801), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5601), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1405), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(4801), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4803), + [anon_sym_DOT_DOT_LT] = ACTIONS(4803), + [anon_sym_null] = ACTIONS(4805), + [anon_sym_true] = ACTIONS(4807), + [anon_sym_false] = ACTIONS(4807), + [aux_sym__val_number_decimal_token1] = ACTIONS(4809), + [aux_sym__val_number_decimal_token2] = ACTIONS(4811), + [anon_sym_DOT2] = ACTIONS(4813), + [aux_sym__val_number_decimal_token3] = ACTIONS(4815), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(4817), + [aux_sym__val_number_token5] = ACTIONS(4817), + [aux_sym__val_number_token6] = ACTIONS(4817), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(4819), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), [anon_sym_POUND] = ACTIONS(3), }, - [1182] = { - [sym_comment] = STATE(1182), - [anon_sym_LBRACK] = ACTIONS(952), - [anon_sym_COMMA] = ACTIONS(952), - [anon_sym_RBRACK] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(952), - [anon_sym_DOLLAR] = ACTIONS(952), - [anon_sym_GT] = ACTIONS(950), - [anon_sym_DASH_DASH] = ACTIONS(952), - [anon_sym_DASH] = ACTIONS(950), - [anon_sym_in] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(952), - [anon_sym_DOT_DOT] = ACTIONS(950), - [anon_sym_STAR] = ACTIONS(950), - [anon_sym_STAR_STAR] = ACTIONS(952), - [anon_sym_PLUS_PLUS] = ACTIONS(952), - [anon_sym_SLASH] = ACTIONS(950), - [anon_sym_mod] = ACTIONS(952), - [anon_sym_SLASH_SLASH] = ACTIONS(952), - [anon_sym_PLUS] = ACTIONS(950), - [anon_sym_bit_DASHshl] = ACTIONS(952), - [anon_sym_bit_DASHshr] = ACTIONS(952), - [anon_sym_EQ_EQ] = ACTIONS(952), - [anon_sym_BANG_EQ] = ACTIONS(952), - [anon_sym_LT2] = ACTIONS(950), - [anon_sym_LT_EQ] = ACTIONS(952), - [anon_sym_GT_EQ] = ACTIONS(952), - [anon_sym_not_DASHin] = ACTIONS(952), - [anon_sym_starts_DASHwith] = ACTIONS(952), - [anon_sym_ends_DASHwith] = ACTIONS(952), - [anon_sym_EQ_TILDE] = ACTIONS(952), - [anon_sym_BANG_TILDE] = ACTIONS(952), - [anon_sym_bit_DASHand] = ACTIONS(952), - [anon_sym_bit_DASHxor] = ACTIONS(952), - [anon_sym_bit_DASHor] = ACTIONS(952), - [anon_sym_and] = ACTIONS(952), - [anon_sym_xor] = ACTIONS(952), - [anon_sym_or] = ACTIONS(952), - [anon_sym_DOT_DOT2] = ACTIONS(950), - [anon_sym_DOT] = 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), - [anon_sym_DOT2] = ACTIONS(950), - [aux_sym__val_number_decimal_token3] = 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), - [sym_filesize_unit] = ACTIONS(950), - [sym_duration_unit] = ACTIONS(952), - [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_err_GT] = ACTIONS(952), - [anon_sym_out_GT] = ACTIONS(952), - [anon_sym_e_GT] = ACTIONS(952), - [anon_sym_o_GT] = ACTIONS(952), - [anon_sym_err_PLUSout_GT] = ACTIONS(952), - [anon_sym_out_PLUSerr_GT] = ACTIONS(952), - [anon_sym_o_PLUSe_GT] = ACTIONS(952), - [anon_sym_e_PLUSo_GT] = ACTIONS(952), - [aux_sym_unquoted_token5] = ACTIONS(950), - [aux_sym__unquoted_in_list_token1] = ACTIONS(950), - [anon_sym_POUND] = ACTIONS(3), + [1406] = { + [sym_comment] = STATE(1406), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_COMMA] = ACTIONS(1171), + [anon_sym_RBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [sym__entry_separator] = ACTIONS(1173), + [anon_sym_err_GT] = ACTIONS(1171), + [anon_sym_out_GT] = ACTIONS(1171), + [anon_sym_e_GT] = ACTIONS(1171), + [anon_sym_o_GT] = ACTIONS(1171), + [anon_sym_err_PLUSout_GT] = ACTIONS(1171), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1171), + [anon_sym_o_PLUSe_GT] = ACTIONS(1171), + [anon_sym_e_PLUSo_GT] = ACTIONS(1171), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(113), }, - [1183] = { - [sym_expr_parenthesized] = STATE(8037), - [sym_val_range] = STATE(9006), - [sym__val_range] = STATE(10544), - [sym__val_range_with_end] = STATE(10550), - [sym__value] = STATE(9006), - [sym_val_nothing] = STATE(6237), - [sym_val_bool] = STATE(8476), - [sym_val_variable] = STATE(5275), - [sym__var] = STATE(4701), - [sym_val_number] = STATE(6237), - [sym__val_number_decimal] = STATE(7007), - [sym__val_number] = STATE(6253), - [sym_val_duration] = STATE(6237), - [sym_val_filesize] = STATE(6237), - [sym_val_binary] = STATE(6237), - [sym_val_string] = STATE(6237), - [sym__str_double_quotes] = STATE(6028), - [sym_val_interpolated] = STATE(6237), - [sym__inter_single_quotes] = STATE(6107), - [sym__inter_double_quotes] = STATE(6113), - [sym_val_list] = STATE(6237), - [sym_val_record] = STATE(6237), - [sym_val_table] = STATE(6237), - [sym_val_closure] = STATE(6237), - [sym__cmd_arg] = STATE(9303), - [sym_redirection] = STATE(9150), - [sym__flag] = STATE(9188), - [sym_short_flag] = STATE(9302), - [sym_long_flag] = STATE(9302), - [sym_long_flag_equals_value] = STATE(8874), - [sym_long_flag_value] = STATE(9336), - [sym_unquoted] = STATE(8461), - [sym__unquoted_with_expr] = STATE(9277), - [sym__unquoted_anonymous_prefix] = STATE(10227), - [sym_comment] = STATE(1183), - [anon_sym_LBRACK] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_DOLLAR] = ACTIONS(2064), - [anon_sym_DASH_DASH] = ACTIONS(3005), - [anon_sym_DASH] = ACTIONS(2068), - [anon_sym_LBRACE] = ACTIONS(3007), - [anon_sym_DOT_DOT] = ACTIONS(2072), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3009), - [anon_sym_DOT_DOT_LT] = ACTIONS(3009), - [anon_sym_null] = ACTIONS(3011), - [anon_sym_true] = ACTIONS(3013), - [anon_sym_false] = ACTIONS(3013), - [aux_sym__val_number_decimal_token1] = ACTIONS(2080), - [aux_sym__val_number_decimal_token2] = ACTIONS(3015), - [anon_sym_DOT2] = ACTIONS(2082), - [aux_sym__val_number_decimal_token3] = ACTIONS(3017), - [aux_sym__val_number_token1] = ACTIONS(3019), - [aux_sym__val_number_token2] = ACTIONS(3019), - [aux_sym__val_number_token3] = ACTIONS(3019), - [aux_sym__val_number_token4] = ACTIONS(3021), - [aux_sym__val_number_token5] = ACTIONS(3021), - [aux_sym__val_number_token6] = ACTIONS(3021), - [anon_sym_0b] = ACTIONS(2090), - [anon_sym_0o] = ACTIONS(2092), - [anon_sym_0x] = ACTIONS(2092), - [sym_val_date] = ACTIONS(3023), - [anon_sym_DQUOTE] = ACTIONS(3025), - [sym__str_single_quotes] = ACTIONS(3027), - [sym__str_back_ticks] = ACTIONS(3027), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3029), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3031), - [anon_sym_err_GT] = ACTIONS(3033), - [anon_sym_out_GT] = ACTIONS(3033), - [anon_sym_e_GT] = ACTIONS(3033), - [anon_sym_o_GT] = ACTIONS(3033), - [anon_sym_err_PLUSout_GT] = ACTIONS(3033), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3033), - [anon_sym_o_PLUSe_GT] = ACTIONS(3033), - [anon_sym_e_PLUSo_GT] = ACTIONS(3033), - [aux_sym_unquoted_token1] = ACTIONS(2106), + [1407] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6341), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6236), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4801), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5604), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1407), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(4801), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4803), + [anon_sym_DOT_DOT_LT] = ACTIONS(4803), + [anon_sym_null] = ACTIONS(4805), + [anon_sym_true] = ACTIONS(4807), + [anon_sym_false] = ACTIONS(4807), + [aux_sym__val_number_decimal_token1] = ACTIONS(4809), + [aux_sym__val_number_decimal_token2] = ACTIONS(4811), + [anon_sym_DOT2] = ACTIONS(4813), + [aux_sym__val_number_decimal_token3] = ACTIONS(4815), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(4817), + [aux_sym__val_number_token5] = ACTIONS(4817), + [aux_sym__val_number_token6] = ACTIONS(4817), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(4819), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), [anon_sym_POUND] = ACTIONS(3), }, - [1184] = { - [sym__expr_parenthesized_immediate] = STATE(2894), - [sym__immediate_decimal] = STATE(2899), - [sym_val_variable] = STATE(2894), - [sym__var] = STATE(1743), - [sym_comment] = STATE(1184), - [ts_builtin_sym_end] = ACTIONS(2351), - [anon_sym_export] = ACTIONS(2349), - [anon_sym_alias] = ACTIONS(2349), - [anon_sym_let] = ACTIONS(2349), - [anon_sym_let_DASHenv] = ACTIONS(2349), - [anon_sym_mut] = ACTIONS(2349), - [anon_sym_const] = ACTIONS(2349), - [anon_sym_SEMI] = ACTIONS(2349), - [sym_cmd_identifier] = ACTIONS(2349), - [anon_sym_LF] = ACTIONS(2351), - [anon_sym_def] = ACTIONS(2349), - [anon_sym_export_DASHenv] = ACTIONS(2349), - [anon_sym_extern] = ACTIONS(2349), - [anon_sym_module] = ACTIONS(2349), - [anon_sym_use] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(2349), - [anon_sym_DOLLAR] = ACTIONS(2629), - [anon_sym_error] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2349), - [anon_sym_break] = ACTIONS(2349), - [anon_sym_continue] = ACTIONS(2349), - [anon_sym_for] = ACTIONS(2349), - [anon_sym_loop] = ACTIONS(2349), - [anon_sym_while] = ACTIONS(2349), - [anon_sym_do] = ACTIONS(2349), - [anon_sym_if] = ACTIONS(2349), - [anon_sym_match] = ACTIONS(2349), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_DOT_DOT] = ACTIONS(2349), - [anon_sym_try] = ACTIONS(2349), - [anon_sym_return] = ACTIONS(2349), - [anon_sym_source] = ACTIONS(2349), - [anon_sym_source_DASHenv] = ACTIONS(2349), - [anon_sym_register] = ACTIONS(2349), - [anon_sym_hide] = ACTIONS(2349), - [anon_sym_hide_DASHenv] = ACTIONS(2349), - [anon_sym_overlay] = ACTIONS(2349), - [anon_sym_where] = ACTIONS(2349), - [anon_sym_not] = ACTIONS(2349), - [anon_sym_LPAREN2] = ACTIONS(2631), - [anon_sym_DOT] = ACTIONS(2633), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2349), - [anon_sym_DOT_DOT_LT] = ACTIONS(2349), - [aux_sym__immediate_decimal_token1] = ACTIONS(2635), - [aux_sym__immediate_decimal_token3] = ACTIONS(2635), - [aux_sym__immediate_decimal_token4] = ACTIONS(2637), - [anon_sym_null] = ACTIONS(2349), - [anon_sym_true] = ACTIONS(2349), - [anon_sym_false] = ACTIONS(2349), - [aux_sym__val_number_decimal_token1] = ACTIONS(2349), - [aux_sym__val_number_decimal_token2] = ACTIONS(2349), - [anon_sym_DOT2] = ACTIONS(2349), - [aux_sym__val_number_decimal_token3] = ACTIONS(2349), - [aux_sym__val_number_token1] = ACTIONS(2349), - [aux_sym__val_number_token2] = ACTIONS(2349), - [aux_sym__val_number_token3] = ACTIONS(2349), - [aux_sym__val_number_token4] = ACTIONS(2349), - [aux_sym__val_number_token5] = ACTIONS(2349), - [aux_sym__val_number_token6] = ACTIONS(2349), - [anon_sym_0b] = ACTIONS(2349), - [anon_sym_0o] = ACTIONS(2349), - [anon_sym_0x] = ACTIONS(2349), - [sym_val_date] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym__str_single_quotes] = ACTIONS(2349), - [sym__str_back_ticks] = ACTIONS(2349), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2349), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2349), - [anon_sym_CARET] = ACTIONS(2349), + [1408] = { + [sym_comment] = STATE(1408), + [anon_sym_export] = ACTIONS(1139), + [anon_sym_alias] = ACTIONS(1139), + [anon_sym_let] = ACTIONS(1139), + [anon_sym_let_DASHenv] = ACTIONS(1139), + [anon_sym_mut] = ACTIONS(1139), + [anon_sym_const] = ACTIONS(1139), + [anon_sym_SEMI] = ACTIONS(1139), + [sym_cmd_identifier] = ACTIONS(1139), + [anon_sym_LF] = ACTIONS(1139), + [anon_sym_def] = ACTIONS(1139), + [anon_sym_export_DASHenv] = ACTIONS(1139), + [anon_sym_extern] = ACTIONS(1139), + [anon_sym_module] = ACTIONS(1139), + [anon_sym_use] = ACTIONS(1139), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LPAREN] = ACTIONS(1139), + [anon_sym_RPAREN] = ACTIONS(1139), + [anon_sym_DOLLAR] = ACTIONS(1139), + [anon_sym_error] = ACTIONS(1139), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_break] = ACTIONS(1139), + [anon_sym_continue] = ACTIONS(1139), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_loop] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1139), + [anon_sym_do] = ACTIONS(1139), + [anon_sym_if] = ACTIONS(1139), + [anon_sym_match] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1139), + [anon_sym_RBRACE] = ACTIONS(1139), + [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_try] = ACTIONS(1139), + [anon_sym_return] = ACTIONS(1139), + [anon_sym_source] = ACTIONS(1139), + [anon_sym_source_DASHenv] = ACTIONS(1139), + [anon_sym_register] = ACTIONS(1139), + [anon_sym_hide] = ACTIONS(1139), + [anon_sym_hide_DASHenv] = ACTIONS(1139), + [anon_sym_overlay] = ACTIONS(1139), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_where] = ACTIONS(1139), + [anon_sym_not] = ACTIONS(1139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1139), + [anon_sym_DOT_DOT_LT] = ACTIONS(1139), + [anon_sym_null] = ACTIONS(1139), + [anon_sym_true] = ACTIONS(1139), + [anon_sym_false] = ACTIONS(1139), + [aux_sym__val_number_decimal_token1] = ACTIONS(1139), + [aux_sym__val_number_decimal_token2] = ACTIONS(1139), + [anon_sym_DOT2] = ACTIONS(1139), + [aux_sym__val_number_decimal_token3] = ACTIONS(1139), + [aux_sym__val_number_token1] = ACTIONS(1139), + [aux_sym__val_number_token2] = ACTIONS(1139), + [aux_sym__val_number_token3] = ACTIONS(1139), + [aux_sym__val_number_token4] = ACTIONS(1139), + [aux_sym__val_number_token5] = ACTIONS(1139), + [aux_sym__val_number_token6] = ACTIONS(1139), + [anon_sym_0b] = ACTIONS(1139), + [anon_sym_0o] = ACTIONS(1139), + [anon_sym_0x] = ACTIONS(1139), + [sym_val_date] = ACTIONS(1139), + [anon_sym_DQUOTE] = ACTIONS(1139), + [sym__str_single_quotes] = ACTIONS(1139), + [sym__str_back_ticks] = ACTIONS(1139), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1139), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1139), + [aux_sym__list_item_starts_with_sign_token1] = ACTIONS(4821), + [anon_sym_CARET] = ACTIONS(1139), [anon_sym_POUND] = ACTIONS(113), }, - [1185] = { - [sym__expr_parenthesized_immediate] = STATE(2900), - [sym__immediate_decimal] = STATE(2902), - [sym_val_variable] = STATE(2900), - [sym__var] = STATE(1743), - [sym_comment] = STATE(1185), - [ts_builtin_sym_end] = ACTIONS(2361), - [anon_sym_export] = ACTIONS(2359), - [anon_sym_alias] = ACTIONS(2359), - [anon_sym_let] = ACTIONS(2359), - [anon_sym_let_DASHenv] = ACTIONS(2359), - [anon_sym_mut] = ACTIONS(2359), - [anon_sym_const] = ACTIONS(2359), - [anon_sym_SEMI] = ACTIONS(2359), - [sym_cmd_identifier] = ACTIONS(2359), - [anon_sym_LF] = ACTIONS(2361), - [anon_sym_def] = ACTIONS(2359), - [anon_sym_export_DASHenv] = ACTIONS(2359), - [anon_sym_extern] = ACTIONS(2359), - [anon_sym_module] = ACTIONS(2359), - [anon_sym_use] = ACTIONS(2359), - [anon_sym_LBRACK] = ACTIONS(2359), - [anon_sym_LPAREN] = ACTIONS(2359), - [anon_sym_DOLLAR] = ACTIONS(2629), - [anon_sym_error] = ACTIONS(2359), - [anon_sym_DASH] = ACTIONS(2359), - [anon_sym_break] = ACTIONS(2359), - [anon_sym_continue] = ACTIONS(2359), - [anon_sym_for] = ACTIONS(2359), - [anon_sym_loop] = ACTIONS(2359), - [anon_sym_while] = ACTIONS(2359), - [anon_sym_do] = ACTIONS(2359), - [anon_sym_if] = ACTIONS(2359), - [anon_sym_match] = ACTIONS(2359), - [anon_sym_LBRACE] = ACTIONS(2359), - [anon_sym_DOT_DOT] = ACTIONS(2359), - [anon_sym_try] = ACTIONS(2359), - [anon_sym_return] = ACTIONS(2359), - [anon_sym_source] = ACTIONS(2359), - [anon_sym_source_DASHenv] = ACTIONS(2359), - [anon_sym_register] = ACTIONS(2359), - [anon_sym_hide] = ACTIONS(2359), - [anon_sym_hide_DASHenv] = ACTIONS(2359), - [anon_sym_overlay] = ACTIONS(2359), - [anon_sym_where] = ACTIONS(2359), - [anon_sym_not] = ACTIONS(2359), - [anon_sym_LPAREN2] = ACTIONS(2631), - [anon_sym_DOT] = ACTIONS(2633), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2359), - [anon_sym_DOT_DOT_LT] = ACTIONS(2359), - [aux_sym__immediate_decimal_token1] = ACTIONS(2635), - [aux_sym__immediate_decimal_token3] = ACTIONS(2635), - [aux_sym__immediate_decimal_token4] = ACTIONS(2637), - [anon_sym_null] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(2359), - [anon_sym_false] = ACTIONS(2359), - [aux_sym__val_number_decimal_token1] = ACTIONS(2359), - [aux_sym__val_number_decimal_token2] = ACTIONS(2359), - [anon_sym_DOT2] = ACTIONS(2359), - [aux_sym__val_number_decimal_token3] = ACTIONS(2359), - [aux_sym__val_number_token1] = ACTIONS(2359), - [aux_sym__val_number_token2] = ACTIONS(2359), - [aux_sym__val_number_token3] = ACTIONS(2359), - [aux_sym__val_number_token4] = ACTIONS(2359), - [aux_sym__val_number_token5] = ACTIONS(2359), - [aux_sym__val_number_token6] = ACTIONS(2359), - [anon_sym_0b] = ACTIONS(2359), - [anon_sym_0o] = ACTIONS(2359), - [anon_sym_0x] = ACTIONS(2359), - [sym_val_date] = ACTIONS(2359), - [anon_sym_DQUOTE] = ACTIONS(2359), - [sym__str_single_quotes] = ACTIONS(2359), - [sym__str_back_ticks] = ACTIONS(2359), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2359), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2359), - [anon_sym_CARET] = ACTIONS(2359), + [1409] = { + [sym_comment] = STATE(1409), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_COMMA] = ACTIONS(1159), + [anon_sym_RBRACK] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1161), + [anon_sym_DOLLAR] = ACTIONS(1159), + [anon_sym_GT] = ACTIONS(1159), + [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_DASH] = ACTIONS(1159), + [anon_sym_in] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(1161), + [anon_sym_DOT_DOT] = ACTIONS(1159), + [anon_sym_STAR] = ACTIONS(1159), + [anon_sym_STAR_STAR] = ACTIONS(1159), + [anon_sym_PLUS_PLUS] = ACTIONS(1159), + [anon_sym_SLASH] = ACTIONS(1159), + [anon_sym_mod] = ACTIONS(1159), + [anon_sym_SLASH_SLASH] = ACTIONS(1159), + [anon_sym_PLUS] = ACTIONS(1159), + [anon_sym_bit_DASHshl] = ACTIONS(1159), + [anon_sym_bit_DASHshr] = ACTIONS(1159), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_LT2] = ACTIONS(1159), + [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_not_DASHin] = ACTIONS(1159), + [anon_sym_starts_DASHwith] = ACTIONS(1159), + [anon_sym_ends_DASHwith] = ACTIONS(1159), + [anon_sym_EQ_TILDE] = ACTIONS(1159), + [anon_sym_BANG_TILDE] = ACTIONS(1159), + [anon_sym_bit_DASHand] = ACTIONS(1159), + [anon_sym_bit_DASHxor] = ACTIONS(1159), + [anon_sym_bit_DASHor] = ACTIONS(1159), + [anon_sym_and] = ACTIONS(1159), + [anon_sym_xor] = ACTIONS(1159), + [anon_sym_or] = ACTIONS(1159), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1159), + [anon_sym_DOT_DOT_LT] = ACTIONS(1159), + [anon_sym_null] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1159), + [anon_sym_false] = ACTIONS(1159), + [aux_sym__val_number_decimal_token1] = ACTIONS(1159), + [aux_sym__val_number_decimal_token2] = ACTIONS(1159), + [anon_sym_DOT2] = ACTIONS(1159), + [aux_sym__val_number_decimal_token3] = ACTIONS(1159), + [aux_sym__val_number_token1] = ACTIONS(1159), + [aux_sym__val_number_token2] = ACTIONS(1159), + [aux_sym__val_number_token3] = ACTIONS(1159), + [aux_sym__val_number_token4] = ACTIONS(1159), + [aux_sym__val_number_token5] = ACTIONS(1159), + [aux_sym__val_number_token6] = ACTIONS(1159), + [anon_sym_0b] = ACTIONS(1159), + [anon_sym_0o] = ACTIONS(1159), + [anon_sym_0x] = ACTIONS(1159), + [sym_val_date] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(1161), + [sym__str_single_quotes] = ACTIONS(1161), + [sym__str_back_ticks] = ACTIONS(1161), + [anon_sym_err_GT] = ACTIONS(1159), + [anon_sym_out_GT] = ACTIONS(1159), + [anon_sym_e_GT] = ACTIONS(1159), + [anon_sym_o_GT] = ACTIONS(1159), + [anon_sym_err_PLUSout_GT] = ACTIONS(1159), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1159), + [anon_sym_o_PLUSe_GT] = ACTIONS(1159), + [anon_sym_e_PLUSo_GT] = ACTIONS(1159), + [aux_sym_unquoted_token6] = ACTIONS(1163), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1159), [anon_sym_POUND] = ACTIONS(113), }, - [1186] = { - [sym__immediate_decimal] = STATE(9346), - [sym_comment] = STATE(1186), - [anon_sym_LBRACK] = ACTIONS(938), - [anon_sym_COMMA] = ACTIONS(938), - [anon_sym_RBRACK] = ACTIONS(938), - [anon_sym_LPAREN] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(938), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(938), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_STAR_STAR] = ACTIONS(938), - [anon_sym_PLUS_PLUS] = ACTIONS(938), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(938), - [anon_sym_SLASH_SLASH] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(938), - [anon_sym_bit_DASHshr] = ACTIONS(938), - [anon_sym_EQ_EQ] = ACTIONS(938), - [anon_sym_BANG_EQ] = ACTIONS(938), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(938), - [anon_sym_GT_EQ] = ACTIONS(938), - [anon_sym_not_DASHin] = ACTIONS(938), - [anon_sym_starts_DASHwith] = ACTIONS(938), - [anon_sym_ends_DASHwith] = ACTIONS(938), - [anon_sym_EQ_TILDE] = ACTIONS(938), - [anon_sym_BANG_TILDE] = ACTIONS(938), - [anon_sym_bit_DASHand] = ACTIONS(938), - [anon_sym_bit_DASHxor] = ACTIONS(938), - [anon_sym_bit_DASHor] = ACTIONS(938), - [anon_sym_and] = ACTIONS(938), - [anon_sym_xor] = ACTIONS(938), - [anon_sym_or] = ACTIONS(938), - [anon_sym_DOT] = ACTIONS(3035), - [anon_sym_DOT_DOT_EQ] = ACTIONS(938), - [anon_sym_DOT_DOT_LT] = ACTIONS(938), - [aux_sym__immediate_decimal_token1] = ACTIONS(942), - [aux_sym__immediate_decimal_token3] = ACTIONS(1582), - [aux_sym__immediate_decimal_token4] = ACTIONS(1584), - [anon_sym_null] = ACTIONS(938), - [anon_sym_true] = ACTIONS(938), - [anon_sym_false] = ACTIONS(938), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(938), - [aux_sym__val_number_token2] = ACTIONS(938), - [aux_sym__val_number_token3] = ACTIONS(938), - [aux_sym__val_number_token4] = ACTIONS(938), - [aux_sym__val_number_token5] = ACTIONS(938), - [aux_sym__val_number_token6] = ACTIONS(938), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(938), - [sym__str_single_quotes] = ACTIONS(938), - [sym__str_back_ticks] = ACTIONS(938), - [anon_sym_err_GT] = ACTIONS(938), - [anon_sym_out_GT] = ACTIONS(938), - [anon_sym_e_GT] = ACTIONS(938), - [anon_sym_o_GT] = ACTIONS(938), - [anon_sym_err_PLUSout_GT] = ACTIONS(938), - [anon_sym_out_PLUSerr_GT] = ACTIONS(938), - [anon_sym_o_PLUSe_GT] = ACTIONS(938), - [anon_sym_e_PLUSo_GT] = ACTIONS(938), - [aux_sym_unquoted_token3] = ACTIONS(3037), - [aux_sym_unquoted_token5] = ACTIONS(3039), - [aux_sym__unquoted_in_list_token1] = ACTIONS(936), - [anon_sym_POUND] = ACTIONS(3), - }, - [1187] = { - [sym_expr_parenthesized] = STATE(8455), - [sym_val_range] = STATE(10158), - [sym__val_range] = STATE(10610), - [sym__val_range_with_end] = STATE(10589), - [sym__value] = STATE(10158), - [sym_val_nothing] = STATE(9685), - [sym_val_bool] = STATE(9105), - [sym_val_variable] = STATE(8319), - [sym__var] = STATE(7579), - [sym_val_number] = STATE(9685), - [sym__val_number_decimal] = STATE(7532), - [sym__val_number] = STATE(9689), - [sym_val_duration] = STATE(9685), - [sym_val_filesize] = STATE(9685), - [sym_val_binary] = STATE(9685), - [sym_val_string] = STATE(9685), - [sym__str_double_quotes] = STATE(6969), - [sym_val_interpolated] = STATE(9685), - [sym__inter_single_quotes] = STATE(9459), - [sym__inter_double_quotes] = STATE(9461), - [sym_val_list] = STATE(9685), - [sym_val_record] = STATE(9685), - [sym_val_table] = STATE(9685), - [sym_val_closure] = STATE(9685), - [sym__cmd_arg] = STATE(10164), - [sym_redirection] = STATE(10160), - [sym__flag] = STATE(10161), - [sym_short_flag] = STATE(9344), - [sym_long_flag] = STATE(9344), - [sym_long_flag_equals_value] = STATE(9751), - [sym_long_flag_value] = STATE(10165), - [sym_unquoted] = STATE(8743), - [sym__unquoted_with_expr] = STATE(10163), - [sym__unquoted_anonymous_prefix] = STATE(10350), - [sym_comment] = STATE(1187), - [anon_sym_LBRACK] = ACTIONS(2855), - [anon_sym_LPAREN] = ACTIONS(2857), - [anon_sym_DOLLAR] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(3041), - [anon_sym_DASH] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2863), - [anon_sym_DOT_DOT] = ACTIONS(3043), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3045), - [anon_sym_DOT_DOT_LT] = ACTIONS(3045), - [anon_sym_null] = ACTIONS(2702), - [anon_sym_true] = ACTIONS(2704), - [anon_sym_false] = ACTIONS(2704), - [aux_sym__val_number_decimal_token1] = ACTIONS(3047), - [aux_sym__val_number_decimal_token2] = ACTIONS(3049), - [anon_sym_DOT2] = ACTIONS(3051), - [aux_sym__val_number_decimal_token3] = ACTIONS(3053), - [aux_sym__val_number_token1] = ACTIONS(2881), - [aux_sym__val_number_token2] = ACTIONS(2881), - [aux_sym__val_number_token3] = ACTIONS(2881), - [aux_sym__val_number_token4] = ACTIONS(3055), - [aux_sym__val_number_token5] = ACTIONS(3055), - [aux_sym__val_number_token6] = ACTIONS(3055), - [anon_sym_0b] = ACTIONS(2885), - [anon_sym_0o] = ACTIONS(2887), - [anon_sym_0x] = ACTIONS(2887), - [sym_val_date] = ACTIONS(2722), - [anon_sym_DQUOTE] = ACTIONS(2891), - [sym__str_single_quotes] = ACTIONS(2893), - [sym__str_back_ticks] = ACTIONS(2893), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2895), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2897), - [anon_sym_err_GT] = ACTIONS(3057), - [anon_sym_out_GT] = ACTIONS(3057), - [anon_sym_e_GT] = ACTIONS(3057), - [anon_sym_o_GT] = ACTIONS(3057), - [anon_sym_err_PLUSout_GT] = ACTIONS(3057), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3057), - [anon_sym_o_PLUSe_GT] = ACTIONS(3057), - [anon_sym_e_PLUSo_GT] = ACTIONS(3057), - [aux_sym_unquoted_token1] = ACTIONS(2901), - [anon_sym_POUND] = ACTIONS(3), - }, - [1188] = { - [sym_comment] = STATE(1188), - [anon_sym_LBRACK] = ACTIONS(919), - [anon_sym_COMMA] = ACTIONS(919), - [anon_sym_LPAREN] = ACTIONS(919), - [anon_sym_DOLLAR] = ACTIONS(919), - [anon_sym_GT] = ACTIONS(917), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_in] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(919), - [anon_sym_RBRACE] = ACTIONS(919), - [anon_sym__] = ACTIONS(917), - [anon_sym_DOT_DOT] = ACTIONS(917), - [anon_sym_STAR] = ACTIONS(917), - [anon_sym_STAR_STAR] = ACTIONS(919), - [anon_sym_PLUS_PLUS] = ACTIONS(919), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_mod] = ACTIONS(919), - [anon_sym_SLASH_SLASH] = ACTIONS(919), - [anon_sym_PLUS] = ACTIONS(917), - [anon_sym_bit_DASHshl] = ACTIONS(919), - [anon_sym_bit_DASHshr] = ACTIONS(919), - [anon_sym_EQ_EQ] = ACTIONS(919), - [anon_sym_BANG_EQ] = ACTIONS(919), - [anon_sym_LT2] = ACTIONS(917), - [anon_sym_LT_EQ] = ACTIONS(919), - [anon_sym_GT_EQ] = ACTIONS(919), - [anon_sym_not_DASHin] = ACTIONS(919), - [anon_sym_starts_DASHwith] = ACTIONS(919), - [anon_sym_ends_DASHwith] = ACTIONS(919), - [anon_sym_EQ_TILDE] = ACTIONS(919), - [anon_sym_BANG_TILDE] = ACTIONS(919), - [anon_sym_bit_DASHand] = ACTIONS(919), - [anon_sym_bit_DASHxor] = ACTIONS(919), - [anon_sym_bit_DASHor] = ACTIONS(919), - [anon_sym_and] = ACTIONS(919), - [anon_sym_xor] = ACTIONS(919), - [anon_sym_or] = ACTIONS(919), - [anon_sym_DOT_DOT2] = ACTIONS(917), - [anon_sym_DOT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ] = ACTIONS(917), - [anon_sym_DOT_DOT_LT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(919), - [anon_sym_DOT_DOT_LT2] = ACTIONS(919), - [anon_sym_null] = ACTIONS(919), - [anon_sym_true] = ACTIONS(919), - [anon_sym_false] = ACTIONS(919), - [aux_sym__val_number_decimal_token1] = ACTIONS(917), - [aux_sym__val_number_decimal_token2] = ACTIONS(919), - [anon_sym_DOT2] = ACTIONS(917), - [aux_sym__val_number_decimal_token3] = ACTIONS(919), - [aux_sym__val_number_token1] = ACTIONS(919), - [aux_sym__val_number_token2] = ACTIONS(919), - [aux_sym__val_number_token3] = ACTIONS(919), - [aux_sym__val_number_token4] = ACTIONS(919), - [aux_sym__val_number_token5] = ACTIONS(919), - [aux_sym__val_number_token6] = ACTIONS(919), - [anon_sym_0b] = ACTIONS(917), - [sym_filesize_unit] = ACTIONS(917), - [sym_duration_unit] = ACTIONS(919), - [anon_sym_0o] = ACTIONS(917), - [anon_sym_0x] = ACTIONS(917), - [sym_val_date] = ACTIONS(919), - [anon_sym_DQUOTE] = ACTIONS(919), - [sym__str_single_quotes] = ACTIONS(919), - [sym__str_back_ticks] = ACTIONS(919), - [anon_sym_err_GT] = ACTIONS(919), - [anon_sym_out_GT] = ACTIONS(919), - [anon_sym_e_GT] = ACTIONS(919), - [anon_sym_o_GT] = ACTIONS(919), - [anon_sym_err_PLUSout_GT] = ACTIONS(919), - [anon_sym_out_PLUSerr_GT] = ACTIONS(919), - [anon_sym_o_PLUSe_GT] = ACTIONS(919), - [anon_sym_e_PLUSo_GT] = ACTIONS(919), - [aux_sym_unquoted_token1] = ACTIONS(917), - [aux_sym_unquoted_token5] = ACTIONS(917), - [anon_sym_POUND] = ACTIONS(3), - }, - [1189] = { - [sym_expr_parenthesized] = STATE(4519), - [sym_val_range] = STATE(5003), - [sym__val_range] = STATE(10644), - [sym__val_range_with_end] = STATE(10605), - [sym__value] = STATE(5003), - [sym_val_nothing] = STATE(5127), - [sym_val_bool] = STATE(4691), - [sym_val_variable] = STATE(4640), - [sym__var] = STATE(4098), - [sym_val_number] = STATE(5127), - [sym__val_number_decimal] = STATE(3758), - [sym__val_number] = STATE(5185), - [sym_val_duration] = STATE(5127), - [sym_val_filesize] = STATE(5127), - [sym_val_binary] = STATE(5127), - [sym_val_string] = STATE(5127), - [sym__str_double_quotes] = STATE(5183), - [sym_val_interpolated] = STATE(5127), - [sym__inter_single_quotes] = STATE(4955), - [sym__inter_double_quotes] = STATE(5160), - [sym_val_list] = STATE(5127), - [sym_val_record] = STATE(5127), - [sym_val_table] = STATE(5127), - [sym_val_closure] = STATE(5127), - [sym__cmd_arg] = STATE(5148), - [sym_redirection] = STATE(5006), - [sym__flag] = STATE(5137), - [sym_short_flag] = STATE(5044), - [sym_long_flag] = STATE(5044), - [sym_long_flag_equals_value] = STATE(5143), - [sym_long_flag_value] = STATE(5055), - [sym_unquoted] = STATE(4720), - [sym__unquoted_with_expr] = STATE(5110), - [sym__unquoted_anonymous_prefix] = STATE(10454), - [sym_comment] = STATE(1189), - [anon_sym_LBRACK] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_DOLLAR] = ACTIONS(3063), - [anon_sym_DASH_DASH] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3067), - [anon_sym_LBRACE] = ACTIONS(3069), - [anon_sym_DOT_DOT] = ACTIONS(3071), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3073), - [anon_sym_DOT_DOT_LT] = ACTIONS(3073), - [anon_sym_null] = ACTIONS(3075), - [anon_sym_true] = ACTIONS(3077), - [anon_sym_false] = ACTIONS(3077), - [aux_sym__val_number_decimal_token1] = ACTIONS(3079), - [aux_sym__val_number_decimal_token2] = ACTIONS(3081), - [anon_sym_DOT2] = ACTIONS(3083), - [aux_sym__val_number_decimal_token3] = ACTIONS(3085), - [aux_sym__val_number_token1] = ACTIONS(3087), - [aux_sym__val_number_token2] = ACTIONS(3087), - [aux_sym__val_number_token3] = ACTIONS(3087), - [aux_sym__val_number_token4] = ACTIONS(3089), - [aux_sym__val_number_token5] = ACTIONS(3089), - [aux_sym__val_number_token6] = ACTIONS(3089), - [anon_sym_0b] = ACTIONS(3091), - [anon_sym_0o] = ACTIONS(3093), - [anon_sym_0x] = ACTIONS(3093), - [sym_val_date] = ACTIONS(3095), - [anon_sym_DQUOTE] = ACTIONS(3097), - [sym__str_single_quotes] = ACTIONS(3099), - [sym__str_back_ticks] = ACTIONS(3099), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3101), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3103), - [anon_sym_err_GT] = ACTIONS(3105), - [anon_sym_out_GT] = ACTIONS(3105), - [anon_sym_e_GT] = ACTIONS(3105), - [anon_sym_o_GT] = ACTIONS(3105), - [anon_sym_err_PLUSout_GT] = ACTIONS(3105), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3105), - [anon_sym_o_PLUSe_GT] = ACTIONS(3105), - [anon_sym_e_PLUSo_GT] = ACTIONS(3105), - [aux_sym_unquoted_token1] = ACTIONS(3107), - [anon_sym_POUND] = ACTIONS(3), - }, - [1190] = { - [sym_comment] = STATE(1190), - [anon_sym_LBRACK] = ACTIONS(952), - [anon_sym_COMMA] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(952), - [anon_sym_DOLLAR] = ACTIONS(952), - [anon_sym_GT] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(950), - [anon_sym_in] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(952), - [anon_sym_RBRACE] = ACTIONS(952), - [anon_sym__] = ACTIONS(950), - [anon_sym_DOT_DOT] = ACTIONS(950), - [anon_sym_STAR] = ACTIONS(950), - [anon_sym_STAR_STAR] = ACTIONS(952), - [anon_sym_PLUS_PLUS] = ACTIONS(952), - [anon_sym_SLASH] = ACTIONS(950), - [anon_sym_mod] = ACTIONS(952), - [anon_sym_SLASH_SLASH] = ACTIONS(952), - [anon_sym_PLUS] = ACTIONS(950), - [anon_sym_bit_DASHshl] = ACTIONS(952), - [anon_sym_bit_DASHshr] = ACTIONS(952), - [anon_sym_EQ_EQ] = ACTIONS(952), - [anon_sym_BANG_EQ] = ACTIONS(952), - [anon_sym_LT2] = ACTIONS(950), - [anon_sym_LT_EQ] = ACTIONS(952), - [anon_sym_GT_EQ] = ACTIONS(952), - [anon_sym_not_DASHin] = ACTIONS(952), - [anon_sym_starts_DASHwith] = ACTIONS(952), - [anon_sym_ends_DASHwith] = ACTIONS(952), - [anon_sym_EQ_TILDE] = ACTIONS(952), - [anon_sym_BANG_TILDE] = ACTIONS(952), - [anon_sym_bit_DASHand] = ACTIONS(952), - [anon_sym_bit_DASHxor] = ACTIONS(952), - [anon_sym_bit_DASHor] = ACTIONS(952), - [anon_sym_and] = ACTIONS(952), - [anon_sym_xor] = ACTIONS(952), - [anon_sym_or] = ACTIONS(952), - [anon_sym_DOT_DOT2] = ACTIONS(950), - [anon_sym_DOT] = 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), - [anon_sym_DOT2] = ACTIONS(950), - [aux_sym__val_number_decimal_token3] = 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), - [sym_filesize_unit] = ACTIONS(950), - [sym_duration_unit] = ACTIONS(952), - [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_err_GT] = ACTIONS(952), - [anon_sym_out_GT] = ACTIONS(952), - [anon_sym_e_GT] = ACTIONS(952), - [anon_sym_o_GT] = ACTIONS(952), - [anon_sym_err_PLUSout_GT] = ACTIONS(952), - [anon_sym_out_PLUSerr_GT] = ACTIONS(952), - [anon_sym_o_PLUSe_GT] = ACTIONS(952), - [anon_sym_e_PLUSo_GT] = ACTIONS(952), - [aux_sym_unquoted_token1] = ACTIONS(950), - [aux_sym_unquoted_token5] = ACTIONS(950), - [anon_sym_POUND] = ACTIONS(3), - }, - [1191] = { - [sym_expr_parenthesized] = STATE(5660), - [sym_val_range] = STATE(6418), - [sym__val_range] = STATE(10649), - [sym__val_range_with_end] = STATE(10609), - [sym__value] = STATE(6418), - [sym_val_nothing] = STATE(6610), - [sym_val_bool] = STATE(6038), - [sym_val_variable] = STATE(5802), - [sym__var] = STATE(4952), - [sym_val_number] = STATE(6610), - [sym__val_number_decimal] = STATE(4617), - [sym__val_number] = STATE(6550), - [sym_val_duration] = STATE(6610), - [sym_val_filesize] = STATE(6610), - [sym_val_binary] = STATE(6610), - [sym_val_string] = STATE(6610), - [sym__str_double_quotes] = STATE(6537), - [sym_val_interpolated] = STATE(6610), - [sym__inter_single_quotes] = STATE(6411), - [sym__inter_double_quotes] = STATE(6412), - [sym_val_list] = STATE(6610), - [sym_val_record] = STATE(6610), - [sym_val_table] = STATE(6610), - [sym_val_closure] = STATE(6610), - [sym__cmd_arg] = STATE(6566), - [sym_redirection] = STATE(6447), - [sym__flag] = STATE(6458), - [sym_short_flag] = STATE(6452), - [sym_long_flag] = STATE(6452), - [sym_long_flag_equals_value] = STATE(6581), - [sym_long_flag_value] = STATE(6545), - [sym_unquoted] = STATE(6214), - [sym__unquoted_with_expr] = STATE(6498), - [sym__unquoted_anonymous_prefix] = STATE(10277), - [sym_comment] = STATE(1191), - [anon_sym_LBRACK] = ACTIONS(3109), - [anon_sym_LPAREN] = ACTIONS(3111), - [anon_sym_DOLLAR] = ACTIONS(3113), - [anon_sym_DASH_DASH] = ACTIONS(3115), - [anon_sym_DASH] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_DOT_DOT] = ACTIONS(3121), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3123), - [anon_sym_DOT_DOT_LT] = ACTIONS(3123), - [anon_sym_null] = ACTIONS(3125), - [anon_sym_true] = ACTIONS(3127), - [anon_sym_false] = ACTIONS(3127), - [aux_sym__val_number_decimal_token1] = ACTIONS(3129), - [aux_sym__val_number_decimal_token2] = ACTIONS(3131), - [anon_sym_DOT2] = ACTIONS(3133), - [aux_sym__val_number_decimal_token3] = ACTIONS(3135), - [aux_sym__val_number_token1] = ACTIONS(3137), - [aux_sym__val_number_token2] = ACTIONS(3137), - [aux_sym__val_number_token3] = ACTIONS(3137), - [aux_sym__val_number_token4] = ACTIONS(3139), - [aux_sym__val_number_token5] = ACTIONS(3139), - [aux_sym__val_number_token6] = ACTIONS(3139), - [anon_sym_0b] = ACTIONS(3141), - [anon_sym_0o] = ACTIONS(3143), - [anon_sym_0x] = ACTIONS(3143), - [sym_val_date] = ACTIONS(3145), - [anon_sym_DQUOTE] = ACTIONS(3147), - [sym__str_single_quotes] = ACTIONS(3149), - [sym__str_back_ticks] = ACTIONS(3149), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3151), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3153), - [anon_sym_err_GT] = ACTIONS(3155), - [anon_sym_out_GT] = ACTIONS(3155), - [anon_sym_e_GT] = ACTIONS(3155), - [anon_sym_o_GT] = ACTIONS(3155), - [anon_sym_err_PLUSout_GT] = ACTIONS(3155), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3155), - [anon_sym_o_PLUSe_GT] = ACTIONS(3155), - [anon_sym_e_PLUSo_GT] = ACTIONS(3155), - [aux_sym_unquoted_token1] = ACTIONS(3157), - [anon_sym_POUND] = ACTIONS(3), + [1410] = { + [sym_comment] = STATE(1410), + [anon_sym_LBRACK] = ACTIONS(1131), + [anon_sym_COMMA] = ACTIONS(1129), + [anon_sym_RBRACK] = ACTIONS(1131), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_DOLLAR] = ACTIONS(1129), + [anon_sym_GT] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_in] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(1131), + [anon_sym_DOT_DOT] = ACTIONS(1129), + [anon_sym_STAR] = ACTIONS(1129), + [anon_sym_STAR_STAR] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(1129), + [anon_sym_mod] = ACTIONS(1129), + [anon_sym_SLASH_SLASH] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_bit_DASHshl] = ACTIONS(1129), + [anon_sym_bit_DASHshr] = ACTIONS(1129), + [anon_sym_EQ_EQ] = ACTIONS(1129), + [anon_sym_BANG_EQ] = ACTIONS(1129), + [anon_sym_LT2] = ACTIONS(1129), + [anon_sym_LT_EQ] = ACTIONS(1129), + [anon_sym_GT_EQ] = ACTIONS(1129), + [anon_sym_not_DASHin] = ACTIONS(1129), + [anon_sym_starts_DASHwith] = ACTIONS(1129), + [anon_sym_ends_DASHwith] = ACTIONS(1129), + [anon_sym_EQ_TILDE] = ACTIONS(1129), + [anon_sym_BANG_TILDE] = ACTIONS(1129), + [anon_sym_bit_DASHand] = ACTIONS(1129), + [anon_sym_bit_DASHxor] = ACTIONS(1129), + [anon_sym_bit_DASHor] = ACTIONS(1129), + [anon_sym_and] = ACTIONS(1129), + [anon_sym_xor] = ACTIONS(1129), + [anon_sym_or] = ACTIONS(1129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1129), + [anon_sym_DOT_DOT_LT] = ACTIONS(1129), + [anon_sym_null] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1129), + [anon_sym_false] = ACTIONS(1129), + [aux_sym__val_number_decimal_token1] = ACTIONS(1129), + [aux_sym__val_number_decimal_token2] = ACTIONS(1129), + [anon_sym_DOT2] = ACTIONS(1129), + [aux_sym__val_number_decimal_token3] = ACTIONS(1129), + [aux_sym__val_number_token1] = ACTIONS(1129), + [aux_sym__val_number_token2] = ACTIONS(1129), + [aux_sym__val_number_token3] = ACTIONS(1129), + [aux_sym__val_number_token4] = ACTIONS(1129), + [aux_sym__val_number_token5] = ACTIONS(1129), + [aux_sym__val_number_token6] = ACTIONS(1129), + [anon_sym_0b] = ACTIONS(1129), + [anon_sym_0o] = ACTIONS(1129), + [anon_sym_0x] = ACTIONS(1129), + [sym_val_date] = ACTIONS(1129), + [anon_sym_DQUOTE] = ACTIONS(1131), + [sym__str_single_quotes] = ACTIONS(1131), + [sym__str_back_ticks] = ACTIONS(1131), + [anon_sym_err_GT] = ACTIONS(1129), + [anon_sym_out_GT] = ACTIONS(1129), + [anon_sym_e_GT] = ACTIONS(1129), + [anon_sym_o_GT] = ACTIONS(1129), + [anon_sym_err_PLUSout_GT] = ACTIONS(1129), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1129), + [anon_sym_o_PLUSe_GT] = ACTIONS(1129), + [anon_sym_e_PLUSo_GT] = ACTIONS(1129), + [aux_sym_unquoted_token6] = ACTIONS(1133), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1129), + [anon_sym_POUND] = ACTIONS(113), }, - [1192] = { - [sym__expr_parenthesized_immediate] = STATE(2903), - [sym__immediate_decimal] = STATE(2904), - [sym_val_variable] = STATE(2903), - [sym__var] = STATE(1743), - [sym_comment] = STATE(1192), - [ts_builtin_sym_end] = ACTIONS(2385), - [anon_sym_export] = ACTIONS(2383), - [anon_sym_alias] = ACTIONS(2383), - [anon_sym_let] = ACTIONS(2383), - [anon_sym_let_DASHenv] = ACTIONS(2383), - [anon_sym_mut] = ACTIONS(2383), - [anon_sym_const] = ACTIONS(2383), - [anon_sym_SEMI] = ACTIONS(2383), - [sym_cmd_identifier] = ACTIONS(2383), - [anon_sym_LF] = ACTIONS(2385), - [anon_sym_def] = ACTIONS(2383), - [anon_sym_export_DASHenv] = ACTIONS(2383), - [anon_sym_extern] = ACTIONS(2383), - [anon_sym_module] = ACTIONS(2383), - [anon_sym_use] = ACTIONS(2383), - [anon_sym_LBRACK] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2383), - [anon_sym_DOLLAR] = ACTIONS(2629), - [anon_sym_error] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2383), - [anon_sym_break] = ACTIONS(2383), - [anon_sym_continue] = ACTIONS(2383), - [anon_sym_for] = ACTIONS(2383), - [anon_sym_loop] = ACTIONS(2383), - [anon_sym_while] = ACTIONS(2383), - [anon_sym_do] = ACTIONS(2383), - [anon_sym_if] = ACTIONS(2383), - [anon_sym_match] = ACTIONS(2383), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_DOT_DOT] = ACTIONS(2383), - [anon_sym_try] = ACTIONS(2383), - [anon_sym_return] = ACTIONS(2383), - [anon_sym_source] = ACTIONS(2383), - [anon_sym_source_DASHenv] = ACTIONS(2383), - [anon_sym_register] = ACTIONS(2383), - [anon_sym_hide] = ACTIONS(2383), - [anon_sym_hide_DASHenv] = ACTIONS(2383), - [anon_sym_overlay] = ACTIONS(2383), - [anon_sym_where] = ACTIONS(2383), - [anon_sym_not] = ACTIONS(2383), - [anon_sym_LPAREN2] = ACTIONS(2631), - [anon_sym_DOT] = ACTIONS(2633), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2383), - [anon_sym_DOT_DOT_LT] = ACTIONS(2383), - [aux_sym__immediate_decimal_token1] = ACTIONS(2635), - [aux_sym__immediate_decimal_token3] = ACTIONS(2635), - [aux_sym__immediate_decimal_token4] = ACTIONS(2637), - [anon_sym_null] = ACTIONS(2383), - [anon_sym_true] = ACTIONS(2383), - [anon_sym_false] = ACTIONS(2383), - [aux_sym__val_number_decimal_token1] = ACTIONS(2383), - [aux_sym__val_number_decimal_token2] = ACTIONS(2383), - [anon_sym_DOT2] = ACTIONS(2383), - [aux_sym__val_number_decimal_token3] = ACTIONS(2383), - [aux_sym__val_number_token1] = ACTIONS(2383), - [aux_sym__val_number_token2] = ACTIONS(2383), - [aux_sym__val_number_token3] = ACTIONS(2383), - [aux_sym__val_number_token4] = ACTIONS(2383), - [aux_sym__val_number_token5] = ACTIONS(2383), - [aux_sym__val_number_token6] = ACTIONS(2383), - [anon_sym_0b] = ACTIONS(2383), - [anon_sym_0o] = ACTIONS(2383), - [anon_sym_0x] = ACTIONS(2383), - [sym_val_date] = ACTIONS(2383), - [anon_sym_DQUOTE] = ACTIONS(2383), - [sym__str_single_quotes] = ACTIONS(2383), - [sym__str_back_ticks] = ACTIONS(2383), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2383), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2383), - [anon_sym_CARET] = ACTIONS(2383), + [1411] = { + [sym_comment] = STATE(1411), + [anon_sym_LBRACK] = ACTIONS(1137), + [anon_sym_COMMA] = ACTIONS(1135), + [anon_sym_RBRACK] = ACTIONS(1137), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_DOLLAR] = ACTIONS(1135), + [anon_sym_GT] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_in] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_DOT_DOT] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1135), + [anon_sym_STAR_STAR] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_SLASH] = ACTIONS(1135), + [anon_sym_mod] = ACTIONS(1135), + [anon_sym_SLASH_SLASH] = ACTIONS(1135), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_bit_DASHshl] = ACTIONS(1135), + [anon_sym_bit_DASHshr] = ACTIONS(1135), + [anon_sym_EQ_EQ] = ACTIONS(1135), + [anon_sym_BANG_EQ] = ACTIONS(1135), + [anon_sym_LT2] = ACTIONS(1135), + [anon_sym_LT_EQ] = ACTIONS(1135), + [anon_sym_GT_EQ] = ACTIONS(1135), + [anon_sym_not_DASHin] = ACTIONS(1135), + [anon_sym_starts_DASHwith] = ACTIONS(1135), + [anon_sym_ends_DASHwith] = ACTIONS(1135), + [anon_sym_EQ_TILDE] = ACTIONS(1135), + [anon_sym_BANG_TILDE] = ACTIONS(1135), + [anon_sym_bit_DASHand] = ACTIONS(1135), + [anon_sym_bit_DASHxor] = ACTIONS(1135), + [anon_sym_bit_DASHor] = ACTIONS(1135), + [anon_sym_and] = ACTIONS(1135), + [anon_sym_xor] = ACTIONS(1135), + [anon_sym_or] = ACTIONS(1135), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1135), + [anon_sym_DOT_DOT_LT] = ACTIONS(1135), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_true] = ACTIONS(1135), + [anon_sym_false] = ACTIONS(1135), + [aux_sym__val_number_decimal_token1] = ACTIONS(1135), + [aux_sym__val_number_decimal_token2] = ACTIONS(1135), + [anon_sym_DOT2] = ACTIONS(1135), + [aux_sym__val_number_decimal_token3] = ACTIONS(1135), + [aux_sym__val_number_token1] = ACTIONS(1135), + [aux_sym__val_number_token2] = ACTIONS(1135), + [aux_sym__val_number_token3] = ACTIONS(1135), + [aux_sym__val_number_token4] = ACTIONS(1135), + [aux_sym__val_number_token5] = ACTIONS(1135), + [aux_sym__val_number_token6] = ACTIONS(1135), + [anon_sym_0b] = ACTIONS(1135), + [anon_sym_0o] = ACTIONS(1135), + [anon_sym_0x] = ACTIONS(1135), + [sym_val_date] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1137), + [sym__str_single_quotes] = ACTIONS(1137), + [sym__str_back_ticks] = ACTIONS(1137), + [anon_sym_err_GT] = ACTIONS(1135), + [anon_sym_out_GT] = ACTIONS(1135), + [anon_sym_e_GT] = ACTIONS(1135), + [anon_sym_o_GT] = ACTIONS(1135), + [anon_sym_err_PLUSout_GT] = ACTIONS(1135), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1135), + [anon_sym_o_PLUSe_GT] = ACTIONS(1135), + [anon_sym_e_PLUSo_GT] = ACTIONS(1135), + [aux_sym_unquoted_token6] = ACTIONS(1133), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1135), [anon_sym_POUND] = ACTIONS(113), }, - [1193] = { - [sym_comment] = STATE(1193), - [anon_sym_LBRACK] = ACTIONS(961), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(961), - [anon_sym_DOLLAR] = ACTIONS(961), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(961), - [anon_sym__] = ACTIONS(959), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(961), - [anon_sym_SLASH_SLASH] = ACTIONS(961), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(961), - [anon_sym_bit_DASHshr] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(961), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_not_DASHin] = ACTIONS(961), - [anon_sym_starts_DASHwith] = ACTIONS(961), - [anon_sym_ends_DASHwith] = ACTIONS(961), - [anon_sym_EQ_TILDE] = ACTIONS(961), - [anon_sym_BANG_TILDE] = ACTIONS(961), - [anon_sym_bit_DASHand] = ACTIONS(961), - [anon_sym_bit_DASHxor] = ACTIONS(961), - [anon_sym_bit_DASHor] = ACTIONS(961), - [anon_sym_and] = ACTIONS(961), - [anon_sym_xor] = ACTIONS(961), - [anon_sym_or] = ACTIONS(961), - [anon_sym_DOT_DOT2] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(3159), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_DOT_DOT_LT] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(983), - [anon_sym_DOT_DOT_LT2] = ACTIONS(983), - [anon_sym_null] = ACTIONS(961), - [anon_sym_true] = ACTIONS(961), - [anon_sym_false] = ACTIONS(961), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(961), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(961), - [aux_sym__val_number_token1] = ACTIONS(961), - [aux_sym__val_number_token2] = ACTIONS(961), - [aux_sym__val_number_token3] = ACTIONS(961), - [aux_sym__val_number_token4] = ACTIONS(961), - [aux_sym__val_number_token5] = ACTIONS(961), - [aux_sym__val_number_token6] = ACTIONS(961), - [anon_sym_0b] = ACTIONS(959), - [sym_filesize_unit] = ACTIONS(3161), - [sym_duration_unit] = ACTIONS(3163), - [anon_sym_0o] = ACTIONS(959), - [anon_sym_0x] = ACTIONS(959), - [sym_val_date] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(961), - [sym__str_single_quotes] = ACTIONS(961), - [sym__str_back_ticks] = ACTIONS(961), - [anon_sym_err_GT] = ACTIONS(961), - [anon_sym_out_GT] = ACTIONS(961), - [anon_sym_e_GT] = ACTIONS(961), - [anon_sym_o_GT] = ACTIONS(961), - [anon_sym_err_PLUSout_GT] = ACTIONS(961), - [anon_sym_out_PLUSerr_GT] = ACTIONS(961), - [anon_sym_o_PLUSe_GT] = ACTIONS(961), - [anon_sym_e_PLUSo_GT] = ACTIONS(961), - [aux_sym_unquoted_token1] = ACTIONS(959), - [aux_sym_unquoted_token5] = ACTIONS(2905), - [anon_sym_POUND] = ACTIONS(3), + [1412] = { + [sym_comment] = STATE(1412), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_COMMA] = ACTIONS(1171), + [anon_sym_RBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [sym__entry_separator] = ACTIONS(1173), + [anon_sym_err_GT] = ACTIONS(1171), + [anon_sym_out_GT] = ACTIONS(1171), + [anon_sym_e_GT] = ACTIONS(1171), + [anon_sym_o_GT] = ACTIONS(1171), + [anon_sym_err_PLUSout_GT] = ACTIONS(1171), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1171), + [anon_sym_o_PLUSe_GT] = ACTIONS(1171), + [anon_sym_e_PLUSo_GT] = ACTIONS(1171), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(113), }, - [1194] = { - [sym_expr_parenthesized] = STATE(1511), - [sym_val_range] = STATE(2525), - [sym__val_range] = STATE(10660), - [sym__val_range_with_end] = STATE(10618), - [sym__value] = STATE(2525), - [sym_val_nothing] = STATE(2355), - [sym_val_bool] = STATE(1683), - [sym_val_variable] = STATE(1528), - [sym__var] = STATE(1262), - [sym_val_number] = STATE(2355), - [sym__val_number_decimal] = STATE(1112), - [sym__val_number] = STATE(2362), - [sym_val_duration] = STATE(2355), - [sym_val_filesize] = STATE(2355), - [sym_val_binary] = STATE(2355), - [sym_val_string] = STATE(2355), - [sym__str_double_quotes] = STATE(2360), - [sym_val_interpolated] = STATE(2355), - [sym__inter_single_quotes] = STATE(2391), - [sym__inter_double_quotes] = STATE(2392), - [sym_val_list] = STATE(2355), - [sym_val_record] = STATE(2355), - [sym_val_table] = STATE(2355), - [sym_val_closure] = STATE(2355), - [sym__cmd_arg] = STATE(2547), - [sym_redirection] = STATE(2526), - [sym__flag] = STATE(2534), - [sym_short_flag] = STATE(2425), - [sym_long_flag] = STATE(2425), - [sym_long_flag_equals_value] = STATE(2521), - [sym_long_flag_value] = STATE(2548), - [sym_unquoted] = STATE(1601), - [sym__unquoted_with_expr] = STATE(2535), - [sym__unquoted_anonymous_prefix] = STATE(10304), - [sym_comment] = STATE(1194), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_DOLLAR] = ACTIONS(1982), - [anon_sym_DASH_DASH] = ACTIONS(3169), - [anon_sym_DASH] = ACTIONS(3171), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_DOT_DOT] = ACTIONS(3175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3177), - [anon_sym_DOT_DOT_LT] = ACTIONS(3177), - [anon_sym_null] = ACTIONS(3179), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [aux_sym__val_number_decimal_token1] = ACTIONS(3183), - [aux_sym__val_number_decimal_token2] = ACTIONS(3185), - [anon_sym_DOT2] = ACTIONS(3187), - [aux_sym__val_number_decimal_token3] = ACTIONS(3189), - [aux_sym__val_number_token1] = ACTIONS(3191), - [aux_sym__val_number_token2] = ACTIONS(3191), - [aux_sym__val_number_token3] = ACTIONS(3191), - [aux_sym__val_number_token4] = ACTIONS(3193), - [aux_sym__val_number_token5] = ACTIONS(3193), - [aux_sym__val_number_token6] = ACTIONS(3193), - [anon_sym_0b] = ACTIONS(3195), - [anon_sym_0o] = ACTIONS(3197), - [anon_sym_0x] = ACTIONS(3197), - [sym_val_date] = ACTIONS(3199), - [anon_sym_DQUOTE] = ACTIONS(3201), - [sym__str_single_quotes] = ACTIONS(3203), - [sym__str_back_ticks] = ACTIONS(3203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3205), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3207), - [anon_sym_err_GT] = ACTIONS(3209), - [anon_sym_out_GT] = ACTIONS(3209), - [anon_sym_e_GT] = ACTIONS(3209), - [anon_sym_o_GT] = ACTIONS(3209), - [anon_sym_err_PLUSout_GT] = ACTIONS(3209), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3209), - [anon_sym_o_PLUSe_GT] = ACTIONS(3209), - [anon_sym_e_PLUSo_GT] = ACTIONS(3209), - [aux_sym_unquoted_token1] = ACTIONS(3211), - [anon_sym_POUND] = ACTIONS(3), + [1413] = { + [sym_comment] = STATE(1413), + [anon_sym_export] = ACTIONS(920), + [anon_sym_alias] = ACTIONS(920), + [anon_sym_let] = ACTIONS(920), + [anon_sym_let_DASHenv] = ACTIONS(920), + [anon_sym_mut] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(920), + [sym_cmd_identifier] = ACTIONS(920), + [anon_sym_LF] = ACTIONS(922), + [anon_sym_def] = ACTIONS(920), + [anon_sym_export_DASHenv] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym_module] = ACTIONS(920), + [anon_sym_use] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_RPAREN] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_error] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_loop] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_match] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_RBRACE] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_try] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_source] = ACTIONS(920), + [anon_sym_source_DASHenv] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_hide] = ACTIONS(920), + [anon_sym_hide_DASHenv] = ACTIONS(920), + [anon_sym_overlay] = ACTIONS(920), + [anon_sym_where] = ACTIONS(920), + [anon_sym_not] = ACTIONS(920), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [aux_sym__immediate_decimal_token1] = ACTIONS(4777), + [anon_sym_null] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), + [anon_sym_CARET] = ACTIONS(920), + [aux_sym_unquoted_token2] = ACTIONS(4823), + [anon_sym_POUND] = ACTIONS(113), }, - [1195] = { - [sym_comment] = STATE(1195), - [anon_sym_LBRACK] = ACTIONS(961), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_RBRACK] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(961), - [anon_sym_DOLLAR] = ACTIONS(961), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH_DASH] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(961), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(961), - [anon_sym_SLASH_SLASH] = ACTIONS(961), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(961), - [anon_sym_bit_DASHshr] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(961), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_not_DASHin] = ACTIONS(961), - [anon_sym_starts_DASHwith] = ACTIONS(961), - [anon_sym_ends_DASHwith] = ACTIONS(961), - [anon_sym_EQ_TILDE] = ACTIONS(961), - [anon_sym_BANG_TILDE] = ACTIONS(961), - [anon_sym_bit_DASHand] = ACTIONS(961), - [anon_sym_bit_DASHxor] = ACTIONS(961), - [anon_sym_bit_DASHor] = ACTIONS(961), - [anon_sym_and] = ACTIONS(961), - [anon_sym_xor] = ACTIONS(961), - [anon_sym_or] = ACTIONS(961), - [anon_sym_DOT_DOT2] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(3213), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_DOT_DOT_LT] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(983), - [anon_sym_DOT_DOT_LT2] = ACTIONS(983), - [anon_sym_null] = ACTIONS(961), - [anon_sym_true] = ACTIONS(961), - [anon_sym_false] = ACTIONS(961), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(961), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(961), - [aux_sym__val_number_token1] = ACTIONS(961), - [aux_sym__val_number_token2] = ACTIONS(961), - [aux_sym__val_number_token3] = ACTIONS(961), - [aux_sym__val_number_token4] = ACTIONS(961), - [aux_sym__val_number_token5] = ACTIONS(961), - [aux_sym__val_number_token6] = ACTIONS(961), - [anon_sym_0b] = ACTIONS(959), - [sym_filesize_unit] = ACTIONS(2915), - [sym_duration_unit] = ACTIONS(2917), - [anon_sym_0o] = ACTIONS(959), - [anon_sym_0x] = ACTIONS(959), - [sym_val_date] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(961), - [sym__str_single_quotes] = ACTIONS(961), - [sym__str_back_ticks] = ACTIONS(961), - [anon_sym_err_GT] = ACTIONS(961), - [anon_sym_out_GT] = ACTIONS(961), - [anon_sym_e_GT] = ACTIONS(961), - [anon_sym_o_GT] = ACTIONS(961), - [anon_sym_err_PLUSout_GT] = ACTIONS(961), - [anon_sym_out_PLUSerr_GT] = ACTIONS(961), - [anon_sym_o_PLUSe_GT] = ACTIONS(961), - [anon_sym_e_PLUSo_GT] = ACTIONS(961), - [aux_sym_unquoted_token5] = ACTIONS(3037), - [aux_sym__unquoted_in_list_token1] = ACTIONS(959), - [anon_sym_POUND] = ACTIONS(3), + [1414] = { + [sym_comment] = STATE(1414), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_COMMA] = ACTIONS(1171), + [anon_sym_RBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [sym__entry_separator] = ACTIONS(1173), + [anon_sym_err_GT] = ACTIONS(1171), + [anon_sym_out_GT] = ACTIONS(1171), + [anon_sym_e_GT] = ACTIONS(1171), + [anon_sym_o_GT] = ACTIONS(1171), + [anon_sym_err_PLUSout_GT] = ACTIONS(1171), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1171), + [anon_sym_o_PLUSe_GT] = ACTIONS(1171), + [anon_sym_e_PLUSo_GT] = ACTIONS(1171), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(113), }, - [1196] = { - [sym_expr_parenthesized] = STATE(1422), - [sym_val_range] = STATE(1770), - [sym__val_range] = STATE(10665), - [sym__val_range_with_end] = STATE(10628), - [sym__value] = STATE(1770), - [sym_val_nothing] = STATE(1811), - [sym_val_bool] = STATE(1578), - [sym_val_variable] = STATE(1404), - [sym__var] = STATE(1206), - [sym_val_number] = STATE(1811), - [sym__val_number_decimal] = STATE(1099), - [sym__val_number] = STATE(1819), - [sym_val_duration] = STATE(1811), - [sym_val_filesize] = STATE(1811), - [sym_val_binary] = STATE(1811), - [sym_val_string] = STATE(1811), - [sym__str_double_quotes] = STATE(1817), - [sym_val_interpolated] = STATE(1811), - [sym__inter_single_quotes] = STATE(1840), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1811), - [sym_val_record] = STATE(1811), - [sym_val_table] = STATE(1811), - [sym_val_closure] = STATE(1811), - [sym__cmd_arg] = STATE(1783), - [sym_redirection] = STATE(1771), - [sym__flag] = STATE(1772), - [sym_short_flag] = STATE(1768), - [sym_long_flag] = STATE(1768), - [sym_long_flag_equals_value] = STATE(1767), - [sym_long_flag_value] = STATE(1784), - [sym_unquoted] = STATE(1460), - [sym__unquoted_with_expr] = STATE(1773), - [sym__unquoted_anonymous_prefix] = STATE(10212), - [sym_comment] = STATE(1196), - [anon_sym_LBRACK] = ACTIONS(3215), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_DOLLAR] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3221), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_DOT_DOT] = ACTIONS(3225), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3227), - [anon_sym_DOT_DOT_LT] = ACTIONS(3227), - [anon_sym_null] = ACTIONS(3229), - [anon_sym_true] = ACTIONS(3231), - [anon_sym_false] = ACTIONS(3231), - [aux_sym__val_number_decimal_token1] = ACTIONS(3233), - [aux_sym__val_number_decimal_token2] = ACTIONS(3235), - [anon_sym_DOT2] = ACTIONS(3237), - [aux_sym__val_number_decimal_token3] = ACTIONS(3239), - [aux_sym__val_number_token1] = ACTIONS(3241), - [aux_sym__val_number_token2] = ACTIONS(3241), - [aux_sym__val_number_token3] = ACTIONS(3241), - [aux_sym__val_number_token4] = ACTIONS(3243), - [aux_sym__val_number_token5] = ACTIONS(3243), - [aux_sym__val_number_token6] = ACTIONS(3243), - [anon_sym_0b] = ACTIONS(3245), - [anon_sym_0o] = ACTIONS(3247), - [anon_sym_0x] = ACTIONS(3247), - [sym_val_date] = ACTIONS(3249), - [anon_sym_DQUOTE] = ACTIONS(3251), - [sym__str_single_quotes] = ACTIONS(3253), - [sym__str_back_ticks] = ACTIONS(3253), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3255), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3257), - [anon_sym_err_GT] = ACTIONS(3259), - [anon_sym_out_GT] = ACTIONS(3259), - [anon_sym_e_GT] = ACTIONS(3259), - [anon_sym_o_GT] = ACTIONS(3259), - [anon_sym_err_PLUSout_GT] = ACTIONS(3259), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3259), - [anon_sym_o_PLUSe_GT] = ACTIONS(3259), - [anon_sym_e_PLUSo_GT] = ACTIONS(3259), - [aux_sym_unquoted_token1] = ACTIONS(3261), - [anon_sym_POUND] = ACTIONS(3), + [1415] = { + [sym_comment] = STATE(1415), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_COMMA] = ACTIONS(1171), + [anon_sym_RBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [sym__entry_separator] = ACTIONS(1173), + [anon_sym_err_GT] = ACTIONS(1171), + [anon_sym_out_GT] = ACTIONS(1171), + [anon_sym_e_GT] = ACTIONS(1171), + [anon_sym_o_GT] = ACTIONS(1171), + [anon_sym_err_PLUSout_GT] = ACTIONS(1171), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1171), + [anon_sym_o_PLUSe_GT] = ACTIONS(1171), + [anon_sym_e_PLUSo_GT] = ACTIONS(1171), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(113), }, - [1197] = { - [sym_cell_path] = STATE(1369), - [sym_path] = STATE(1223), - [sym_comment] = STATE(1197), - [anon_sym_LBRACK] = ACTIONS(995), - [anon_sym_COMMA] = ACTIONS(995), - [anon_sym_RBRACK] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_DOLLAR] = ACTIONS(995), - [anon_sym_GT] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_in] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_DOT_DOT] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_STAR_STAR] = ACTIONS(995), - [anon_sym_PLUS_PLUS] = ACTIONS(995), - [anon_sym_SLASH] = ACTIONS(995), - [anon_sym_mod] = ACTIONS(995), - [anon_sym_SLASH_SLASH] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_bit_DASHshl] = ACTIONS(995), - [anon_sym_bit_DASHshr] = ACTIONS(995), - [anon_sym_EQ_EQ] = ACTIONS(995), - [anon_sym_BANG_EQ] = ACTIONS(995), - [anon_sym_LT2] = ACTIONS(995), - [anon_sym_LT_EQ] = ACTIONS(995), - [anon_sym_GT_EQ] = ACTIONS(995), - [anon_sym_not_DASHin] = ACTIONS(995), - [anon_sym_starts_DASHwith] = ACTIONS(995), - [anon_sym_ends_DASHwith] = ACTIONS(995), - [anon_sym_EQ_TILDE] = ACTIONS(995), - [anon_sym_BANG_TILDE] = ACTIONS(995), - [anon_sym_bit_DASHand] = ACTIONS(995), - [anon_sym_bit_DASHxor] = ACTIONS(995), - [anon_sym_bit_DASHor] = ACTIONS(995), - [anon_sym_and] = ACTIONS(995), - [anon_sym_xor] = ACTIONS(995), - [anon_sym_or] = ACTIONS(995), - [anon_sym_DOT_DOT2] = ACTIONS(995), - [anon_sym_DOT] = ACTIONS(3263), - [anon_sym_DOT_DOT_EQ] = ACTIONS(995), - [anon_sym_DOT_DOT_LT] = ACTIONS(995), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(997), - [anon_sym_DOT_DOT_LT2] = ACTIONS(997), - [anon_sym_null] = ACTIONS(995), - [anon_sym_true] = ACTIONS(995), - [anon_sym_false] = ACTIONS(995), - [aux_sym__val_number_decimal_token1] = ACTIONS(995), - [aux_sym__val_number_decimal_token2] = ACTIONS(995), - [anon_sym_DOT2] = ACTIONS(995), - [aux_sym__val_number_decimal_token3] = ACTIONS(995), - [aux_sym__val_number_token1] = ACTIONS(995), - [aux_sym__val_number_token2] = ACTIONS(995), - [aux_sym__val_number_token3] = ACTIONS(995), - [aux_sym__val_number_token4] = ACTIONS(995), - [aux_sym__val_number_token5] = ACTIONS(995), - [aux_sym__val_number_token6] = ACTIONS(995), - [anon_sym_0b] = ACTIONS(995), - [anon_sym_0o] = ACTIONS(995), - [anon_sym_0x] = ACTIONS(995), - [sym_val_date] = ACTIONS(995), - [anon_sym_DQUOTE] = ACTIONS(995), - [sym__str_single_quotes] = ACTIONS(995), - [sym__str_back_ticks] = ACTIONS(995), - [sym__entry_separator] = ACTIONS(997), - [anon_sym_err_GT] = ACTIONS(995), - [anon_sym_out_GT] = ACTIONS(995), - [anon_sym_e_GT] = ACTIONS(995), - [anon_sym_o_GT] = ACTIONS(995), - [anon_sym_err_PLUSout_GT] = ACTIONS(995), - [anon_sym_out_PLUSerr_GT] = ACTIONS(995), - [anon_sym_o_PLUSe_GT] = ACTIONS(995), - [anon_sym_e_PLUSo_GT] = ACTIONS(995), - [aux_sym__unquoted_in_list_token1] = ACTIONS(995), + [1416] = { + [sym_cell_path] = STATE(2510), + [sym_path] = STATE(1303), + [sym_comment] = STATE(1416), + [ts_builtin_sym_end] = ACTIONS(1059), + [anon_sym_export] = ACTIONS(1057), + [anon_sym_alias] = ACTIONS(1057), + [anon_sym_let] = ACTIONS(1057), + [anon_sym_let_DASHenv] = ACTIONS(1057), + [anon_sym_mut] = ACTIONS(1057), + [anon_sym_const] = ACTIONS(1057), + [anon_sym_SEMI] = ACTIONS(1057), + [sym_cmd_identifier] = ACTIONS(1057), + [anon_sym_LF] = ACTIONS(1059), + [anon_sym_def] = ACTIONS(1057), + [anon_sym_export_DASHenv] = ACTIONS(1057), + [anon_sym_extern] = ACTIONS(1057), + [anon_sym_module] = ACTIONS(1057), + [anon_sym_use] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_LPAREN] = ACTIONS(1057), + [anon_sym_DOLLAR] = ACTIONS(1057), + [anon_sym_error] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_break] = ACTIONS(1057), + [anon_sym_continue] = ACTIONS(1057), + [anon_sym_for] = ACTIONS(1057), + [anon_sym_loop] = ACTIONS(1057), + [anon_sym_while] = ACTIONS(1057), + [anon_sym_do] = ACTIONS(1057), + [anon_sym_if] = ACTIONS(1057), + [anon_sym_match] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_try] = ACTIONS(1057), + [anon_sym_return] = ACTIONS(1057), + [anon_sym_source] = ACTIONS(1057), + [anon_sym_source_DASHenv] = ACTIONS(1057), + [anon_sym_register] = ACTIONS(1057), + [anon_sym_hide] = ACTIONS(1057), + [anon_sym_hide_DASHenv] = ACTIONS(1057), + [anon_sym_overlay] = ACTIONS(1057), + [anon_sym_where] = ACTIONS(1057), + [anon_sym_not] = ACTIONS(1057), + [anon_sym_DOT] = ACTIONS(4719), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1057), + [anon_sym_DOT_DOT_LT] = ACTIONS(1057), + [anon_sym_null] = ACTIONS(1057), + [anon_sym_true] = ACTIONS(1057), + [anon_sym_false] = ACTIONS(1057), + [aux_sym__val_number_decimal_token1] = ACTIONS(1057), + [aux_sym__val_number_decimal_token2] = ACTIONS(1057), + [anon_sym_DOT2] = ACTIONS(1057), + [aux_sym__val_number_decimal_token3] = ACTIONS(1057), + [aux_sym__val_number_token1] = ACTIONS(1057), + [aux_sym__val_number_token2] = ACTIONS(1057), + [aux_sym__val_number_token3] = ACTIONS(1057), + [aux_sym__val_number_token4] = ACTIONS(1057), + [aux_sym__val_number_token5] = ACTIONS(1057), + [aux_sym__val_number_token6] = ACTIONS(1057), + [anon_sym_0b] = ACTIONS(1057), + [anon_sym_0o] = ACTIONS(1057), + [anon_sym_0x] = ACTIONS(1057), + [sym_val_date] = ACTIONS(1057), + [anon_sym_DQUOTE] = ACTIONS(1057), + [sym__str_single_quotes] = ACTIONS(1057), + [sym__str_back_ticks] = ACTIONS(1057), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1057), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1057), + [anon_sym_CARET] = ACTIONS(1057), [anon_sym_POUND] = ACTIONS(113), }, - [1198] = { - [sym_comment] = STATE(1198), - [anon_sym_LBRACK] = ACTIONS(911), - [anon_sym_COMMA] = ACTIONS(911), - [anon_sym_LPAREN] = ACTIONS(911), - [anon_sym_DOLLAR] = ACTIONS(911), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(911), - [anon_sym_RBRACE] = ACTIONS(911), - [anon_sym__] = ACTIONS(909), - [anon_sym_DOT_DOT] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(911), - [anon_sym_PLUS_PLUS] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(911), - [anon_sym_SLASH_SLASH] = ACTIONS(911), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(911), - [anon_sym_bit_DASHshr] = ACTIONS(911), - [anon_sym_EQ_EQ] = ACTIONS(911), - [anon_sym_BANG_EQ] = ACTIONS(911), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(911), - [anon_sym_GT_EQ] = ACTIONS(911), - [anon_sym_not_DASHin] = ACTIONS(911), - [anon_sym_starts_DASHwith] = ACTIONS(911), - [anon_sym_ends_DASHwith] = ACTIONS(911), - [anon_sym_EQ_TILDE] = ACTIONS(911), - [anon_sym_BANG_TILDE] = ACTIONS(911), - [anon_sym_bit_DASHand] = ACTIONS(911), - [anon_sym_bit_DASHxor] = ACTIONS(911), - [anon_sym_bit_DASHor] = ACTIONS(911), - [anon_sym_and] = ACTIONS(911), - [anon_sym_xor] = ACTIONS(911), - [anon_sym_or] = ACTIONS(911), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [aux_sym__immediate_decimal_token1] = ACTIONS(3265), - [aux_sym__immediate_decimal_token2] = ACTIONS(3267), - [anon_sym_null] = ACTIONS(911), - [anon_sym_true] = ACTIONS(911), - [anon_sym_false] = ACTIONS(911), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(911), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(911), - [aux_sym__val_number_token1] = ACTIONS(911), - [aux_sym__val_number_token2] = ACTIONS(911), - [aux_sym__val_number_token3] = ACTIONS(911), - [aux_sym__val_number_token4] = ACTIONS(911), - [aux_sym__val_number_token5] = ACTIONS(911), - [aux_sym__val_number_token6] = ACTIONS(911), - [anon_sym_0b] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(911), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(911), - [anon_sym_DQUOTE] = ACTIONS(911), - [sym__str_single_quotes] = ACTIONS(911), - [sym__str_back_ticks] = ACTIONS(911), - [anon_sym_err_GT] = ACTIONS(911), - [anon_sym_out_GT] = ACTIONS(911), - [anon_sym_e_GT] = ACTIONS(911), - [anon_sym_o_GT] = ACTIONS(911), - [anon_sym_err_PLUSout_GT] = ACTIONS(911), - [anon_sym_out_PLUSerr_GT] = ACTIONS(911), - [anon_sym_o_PLUSe_GT] = ACTIONS(911), - [anon_sym_e_PLUSo_GT] = ACTIONS(911), - [aux_sym_unquoted_token1] = ACTIONS(909), - [anon_sym_POUND] = ACTIONS(3), + [1417] = { + [sym_comment] = STATE(1417), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_COMMA] = ACTIONS(1171), + [anon_sym_RBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [sym__entry_separator] = ACTIONS(1173), + [anon_sym_err_GT] = ACTIONS(1171), + [anon_sym_out_GT] = ACTIONS(1171), + [anon_sym_e_GT] = ACTIONS(1171), + [anon_sym_o_GT] = ACTIONS(1171), + [anon_sym_err_PLUSout_GT] = ACTIONS(1171), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1171), + [anon_sym_o_PLUSe_GT] = ACTIONS(1171), + [anon_sym_e_PLUSo_GT] = ACTIONS(1171), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(113), }, - [1199] = { - [sym_comment] = STATE(1199), - [anon_sym_export] = ACTIONS(2547), - [anon_sym_alias] = ACTIONS(2547), - [anon_sym_let] = ACTIONS(2547), - [anon_sym_let_DASHenv] = ACTIONS(2547), - [anon_sym_mut] = ACTIONS(2547), - [anon_sym_const] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [sym_cmd_identifier] = ACTIONS(2547), - [anon_sym_LF] = ACTIONS(2549), - [anon_sym_def] = ACTIONS(2547), - [anon_sym_export_DASHenv] = ACTIONS(2547), - [anon_sym_extern] = ACTIONS(2547), - [anon_sym_module] = ACTIONS(2547), - [anon_sym_use] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_RPAREN] = ACTIONS(2547), - [anon_sym_DOLLAR] = ACTIONS(2547), - [anon_sym_error] = ACTIONS(2547), - [anon_sym_DASH_DASH] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_break] = ACTIONS(2547), - [anon_sym_continue] = ACTIONS(2547), - [anon_sym_for] = ACTIONS(2547), - [anon_sym_loop] = ACTIONS(2547), - [anon_sym_while] = ACTIONS(2547), - [anon_sym_do] = ACTIONS(2547), - [anon_sym_if] = ACTIONS(2547), - [anon_sym_match] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2547), - [anon_sym_RBRACE] = ACTIONS(2547), - [anon_sym_DOT_DOT] = ACTIONS(2547), - [anon_sym_try] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2547), - [anon_sym_source] = ACTIONS(2547), - [anon_sym_source_DASHenv] = ACTIONS(2547), - [anon_sym_register] = ACTIONS(2547), - [anon_sym_hide] = ACTIONS(2547), - [anon_sym_hide_DASHenv] = ACTIONS(2547), - [anon_sym_overlay] = ACTIONS(2547), - [anon_sym_as] = ACTIONS(2547), - [anon_sym_where] = ACTIONS(2547), - [anon_sym_not] = ACTIONS(2547), - [anon_sym_LPAREN2] = ACTIONS(2549), - [anon_sym_DOT_DOT2] = ACTIONS(2547), - [anon_sym_DOT] = ACTIONS(2547), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), - [anon_sym_DOT_DOT_LT] = ACTIONS(2547), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2549), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2549), - [anon_sym_null] = ACTIONS(2547), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [aux_sym__val_number_decimal_token1] = ACTIONS(2547), - [aux_sym__val_number_decimal_token2] = ACTIONS(2547), - [anon_sym_DOT2] = ACTIONS(2547), - [aux_sym__val_number_decimal_token3] = ACTIONS(2547), - [aux_sym__val_number_token1] = ACTIONS(2547), - [aux_sym__val_number_token2] = ACTIONS(2547), - [aux_sym__val_number_token3] = ACTIONS(2547), - [aux_sym__val_number_token4] = ACTIONS(2547), - [aux_sym__val_number_token5] = ACTIONS(2547), - [aux_sym__val_number_token6] = ACTIONS(2547), - [anon_sym_0b] = ACTIONS(2547), - [anon_sym_0o] = ACTIONS(2547), - [anon_sym_0x] = ACTIONS(2547), - [sym_val_date] = ACTIONS(2547), - [anon_sym_DQUOTE] = ACTIONS(2547), - [sym__str_single_quotes] = ACTIONS(2547), - [sym__str_back_ticks] = ACTIONS(2547), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2547), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2547), - [aux_sym_unquoted_token2] = ACTIONS(2547), + [1418] = { + [sym_comment] = STATE(1418), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_COMMA] = ACTIONS(1171), + [anon_sym_RBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [sym__entry_separator] = ACTIONS(1173), + [anon_sym_err_GT] = ACTIONS(1171), + [anon_sym_out_GT] = ACTIONS(1171), + [anon_sym_e_GT] = ACTIONS(1171), + [anon_sym_o_GT] = ACTIONS(1171), + [anon_sym_err_PLUSout_GT] = ACTIONS(1171), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1171), + [anon_sym_o_PLUSe_GT] = ACTIONS(1171), + [anon_sym_e_PLUSo_GT] = ACTIONS(1171), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, - [1200] = { - [sym_expr_parenthesized] = STATE(8160), - [sym_val_range] = STATE(8105), - [sym__val_range] = STATE(10601), - [sym__val_range_with_end] = STATE(10561), - [sym__value] = STATE(8105), - [sym_val_nothing] = STATE(9355), - [sym_val_bool] = STATE(8361), - [sym_val_variable] = STATE(8150), - [sym__var] = STATE(7516), - [sym_val_number] = STATE(9355), - [sym__val_number_decimal] = STATE(7034), - [sym__val_number] = STATE(9227), - [sym_val_duration] = STATE(9355), - [sym_val_filesize] = STATE(9355), - [sym_val_binary] = STATE(9355), - [sym_val_string] = STATE(9355), - [sym__str_double_quotes] = STATE(7019), - [sym_val_interpolated] = STATE(9355), - [sym__inter_single_quotes] = STATE(9283), - [sym__inter_double_quotes] = STATE(9292), - [sym_val_list] = STATE(9355), - [sym_val_record] = STATE(9355), - [sym_val_table] = STATE(9355), - [sym_val_closure] = STATE(9355), - [sym__cmd_arg] = STATE(8187), - [sym_redirection] = STATE(8195), - [sym__flag] = STATE(8200), - [sym_short_flag] = STATE(9200), - [sym_long_flag] = STATE(9200), - [sym_long_flag_equals_value] = STATE(8074), - [sym_long_flag_value] = STATE(8189), - [sym_unquoted] = STATE(7754), - [sym__unquoted_with_expr] = STATE(8024), - [sym__unquoted_anonymous_prefix] = STATE(10307), - [sym_comment] = STATE(1200), - [anon_sym_LBRACK] = ACTIONS(3269), - [anon_sym_LPAREN] = ACTIONS(3271), - [anon_sym_DOLLAR] = ACTIONS(3273), - [anon_sym_DASH_DASH] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_LBRACE] = ACTIONS(3279), - [anon_sym_DOT_DOT] = ACTIONS(3281), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), - [anon_sym_DOT_DOT_LT] = ACTIONS(3283), - [anon_sym_null] = ACTIONS(3285), - [anon_sym_true] = ACTIONS(3287), - [anon_sym_false] = ACTIONS(3287), - [aux_sym__val_number_decimal_token1] = ACTIONS(3289), - [aux_sym__val_number_decimal_token2] = ACTIONS(3291), - [anon_sym_DOT2] = ACTIONS(3293), - [aux_sym__val_number_decimal_token3] = ACTIONS(3295), - [aux_sym__val_number_token1] = ACTIONS(3297), - [aux_sym__val_number_token2] = ACTIONS(3297), - [aux_sym__val_number_token3] = ACTIONS(3297), - [aux_sym__val_number_token4] = ACTIONS(3299), - [aux_sym__val_number_token5] = ACTIONS(3299), - [aux_sym__val_number_token6] = ACTIONS(3299), - [anon_sym_0b] = ACTIONS(3301), - [anon_sym_0o] = ACTIONS(3303), - [anon_sym_0x] = ACTIONS(3303), - [sym_val_date] = ACTIONS(3305), - [anon_sym_DQUOTE] = ACTIONS(2724), - [sym__str_single_quotes] = ACTIONS(2726), - [sym__str_back_ticks] = ACTIONS(2726), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3307), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3309), - [anon_sym_err_GT] = ACTIONS(3311), - [anon_sym_out_GT] = ACTIONS(3311), - [anon_sym_e_GT] = ACTIONS(3311), - [anon_sym_o_GT] = ACTIONS(3311), - [anon_sym_err_PLUSout_GT] = ACTIONS(3311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3311), - [anon_sym_o_PLUSe_GT] = ACTIONS(3311), - [anon_sym_e_PLUSo_GT] = ACTIONS(3311), - [aux_sym_unquoted_token1] = ACTIONS(2780), - [anon_sym_POUND] = ACTIONS(3), + [1419] = { + [sym_comment] = STATE(1419), + [anon_sym_export] = ACTIONS(1093), + [anon_sym_alias] = ACTIONS(1093), + [anon_sym_let] = ACTIONS(1093), + [anon_sym_let_DASHenv] = ACTIONS(1093), + [anon_sym_mut] = ACTIONS(1093), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_SEMI] = ACTIONS(1093), + [sym_cmd_identifier] = ACTIONS(1093), + [anon_sym_LF] = ACTIONS(1095), + [anon_sym_def] = ACTIONS(1093), + [anon_sym_export_DASHenv] = ACTIONS(1093), + [anon_sym_extern] = ACTIONS(1093), + [anon_sym_module] = ACTIONS(1093), + [anon_sym_use] = ACTIONS(1093), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_LPAREN] = ACTIONS(1093), + [anon_sym_RPAREN] = ACTIONS(1093), + [anon_sym_DOLLAR] = ACTIONS(1093), + [anon_sym_error] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_break] = ACTIONS(1093), + [anon_sym_continue] = ACTIONS(1093), + [anon_sym_for] = ACTIONS(1093), + [anon_sym_loop] = ACTIONS(1093), + [anon_sym_while] = ACTIONS(1093), + [anon_sym_do] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1093), + [anon_sym_match] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1093), + [anon_sym_RBRACE] = ACTIONS(1093), + [anon_sym_DOT_DOT] = ACTIONS(1093), + [anon_sym_try] = ACTIONS(1093), + [anon_sym_return] = ACTIONS(1093), + [anon_sym_source] = ACTIONS(1093), + [anon_sym_source_DASHenv] = ACTIONS(1093), + [anon_sym_register] = ACTIONS(1093), + [anon_sym_hide] = ACTIONS(1093), + [anon_sym_hide_DASHenv] = ACTIONS(1093), + [anon_sym_overlay] = ACTIONS(1093), + [anon_sym_as] = ACTIONS(1093), + [anon_sym_where] = ACTIONS(1093), + [anon_sym_not] = ACTIONS(1093), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1093), + [anon_sym_DOT_DOT_LT] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1093), + [anon_sym_true] = ACTIONS(1093), + [anon_sym_false] = ACTIONS(1093), + [aux_sym__val_number_decimal_token1] = ACTIONS(1093), + [aux_sym__val_number_decimal_token2] = ACTIONS(1093), + [anon_sym_DOT2] = ACTIONS(1093), + [aux_sym__val_number_decimal_token3] = ACTIONS(1093), + [aux_sym__val_number_token1] = ACTIONS(1093), + [aux_sym__val_number_token2] = ACTIONS(1093), + [aux_sym__val_number_token3] = ACTIONS(1093), + [aux_sym__val_number_token4] = ACTIONS(1093), + [aux_sym__val_number_token5] = ACTIONS(1093), + [aux_sym__val_number_token6] = ACTIONS(1093), + [anon_sym_0b] = ACTIONS(1093), + [anon_sym_0o] = ACTIONS(1093), + [anon_sym_0x] = ACTIONS(1093), + [sym_val_date] = ACTIONS(1093), + [anon_sym_DQUOTE] = ACTIONS(1093), + [sym__str_single_quotes] = ACTIONS(1093), + [sym__str_back_ticks] = ACTIONS(1093), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1093), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1093), + [anon_sym_CARET] = ACTIONS(1093), + [anon_sym_POUND] = ACTIONS(113), }, - [1201] = { - [sym_expr_parenthesized] = STATE(7540), - [sym_val_range] = STATE(8464), - [sym__val_range] = STATE(10625), - [sym__val_range_with_end] = STATE(10623), - [sym__value] = STATE(8464), - [sym_val_nothing] = STATE(5705), - [sym_val_bool] = STATE(7872), - [sym_val_variable] = STATE(5170), - [sym__var] = STATE(4674), - [sym_val_number] = STATE(5705), - [sym__val_number_decimal] = STATE(6924), - [sym__val_number] = STATE(5875), - [sym_val_duration] = STATE(5705), - [sym_val_filesize] = STATE(5705), - [sym_val_binary] = STATE(5705), - [sym_val_string] = STATE(5705), - [sym__str_double_quotes] = STATE(5788), - [sym_val_interpolated] = STATE(5705), - [sym__inter_single_quotes] = STATE(5899), - [sym__inter_double_quotes] = STATE(5903), - [sym_val_list] = STATE(5705), - [sym_val_record] = STATE(5705), - [sym_val_table] = STATE(5705), - [sym_val_closure] = STATE(5705), - [sym__cmd_arg] = STATE(8419), - [sym_redirection] = STATE(8468), - [sym__flag] = STATE(8472), - [sym_short_flag] = STATE(8329), - [sym_long_flag] = STATE(8329), - [sym_long_flag_equals_value] = STATE(8282), - [sym_long_flag_value] = STATE(8420), - [sym_unquoted] = STATE(7963), - [sym__unquoted_with_expr] = STATE(8480), - [sym__unquoted_anonymous_prefix] = STATE(10341), - [sym_comment] = STATE(1201), - [anon_sym_LBRACK] = ACTIONS(3313), - [anon_sym_LPAREN] = ACTIONS(3315), - [anon_sym_DOLLAR] = ACTIONS(3317), - [anon_sym_DASH_DASH] = ACTIONS(3319), - [anon_sym_DASH] = ACTIONS(3321), - [anon_sym_LBRACE] = ACTIONS(3323), - [anon_sym_DOT_DOT] = ACTIONS(3325), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3327), - [anon_sym_DOT_DOT_LT] = ACTIONS(3327), - [anon_sym_null] = ACTIONS(3329), - [anon_sym_true] = ACTIONS(3331), - [anon_sym_false] = ACTIONS(3331), - [aux_sym__val_number_decimal_token1] = ACTIONS(3333), - [aux_sym__val_number_decimal_token2] = ACTIONS(3335), - [anon_sym_DOT2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_token1] = ACTIONS(3341), - [aux_sym__val_number_token2] = ACTIONS(3341), - [aux_sym__val_number_token3] = ACTIONS(3341), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(3345), - [anon_sym_0o] = ACTIONS(3347), - [anon_sym_0x] = ACTIONS(3347), - [sym_val_date] = ACTIONS(3349), - [anon_sym_DQUOTE] = ACTIONS(3351), - [sym__str_single_quotes] = ACTIONS(3353), - [sym__str_back_ticks] = ACTIONS(3353), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3355), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3357), - [anon_sym_err_GT] = ACTIONS(3359), - [anon_sym_out_GT] = ACTIONS(3359), - [anon_sym_e_GT] = ACTIONS(3359), - [anon_sym_o_GT] = ACTIONS(3359), - [anon_sym_err_PLUSout_GT] = ACTIONS(3359), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3359), - [anon_sym_o_PLUSe_GT] = ACTIONS(3359), - [anon_sym_e_PLUSo_GT] = ACTIONS(3359), - [aux_sym_unquoted_token1] = ACTIONS(3361), - [anon_sym_POUND] = ACTIONS(3), + [1420] = { + [sym_comment] = STATE(1420), + [ts_builtin_sym_end] = ACTIONS(1026), + [anon_sym_SEMI] = ACTIONS(1024), + [anon_sym_LF] = ACTIONS(1026), + [anon_sym_LBRACK] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_PIPE] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_GT] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym_DOT_DOT] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(4825), + [anon_sym_STAR_STAR] = ACTIONS(1024), + [anon_sym_PLUS_PLUS] = ACTIONS(1024), + [anon_sym_SLASH] = ACTIONS(1024), + [anon_sym_mod] = ACTIONS(1024), + [anon_sym_SLASH_SLASH] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_bit_DASHshl] = ACTIONS(1024), + [anon_sym_bit_DASHshr] = ACTIONS(1024), + [anon_sym_EQ_EQ] = ACTIONS(1024), + [anon_sym_BANG_EQ] = ACTIONS(1024), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ] = ACTIONS(1024), + [anon_sym_GT_EQ] = ACTIONS(1024), + [anon_sym_not_DASHin] = ACTIONS(1024), + [anon_sym_starts_DASHwith] = ACTIONS(1024), + [anon_sym_ends_DASHwith] = ACTIONS(1024), + [anon_sym_EQ_TILDE] = ACTIONS(1024), + [anon_sym_BANG_TILDE] = ACTIONS(1024), + [anon_sym_bit_DASHand] = ACTIONS(1024), + [anon_sym_bit_DASHxor] = ACTIONS(1024), + [anon_sym_bit_DASHor] = ACTIONS(1024), + [anon_sym_and] = ACTIONS(1024), + [anon_sym_xor] = ACTIONS(1024), + [anon_sym_or] = ACTIONS(1024), + [anon_sym_not] = ACTIONS(1024), + [anon_sym_DOT_DOT2] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1026), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1026), + [anon_sym_null] = ACTIONS(1024), + [anon_sym_true] = ACTIONS(1024), + [anon_sym_false] = ACTIONS(1024), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1024), + [aux_sym__val_number_token1] = ACTIONS(1024), + [aux_sym__val_number_token2] = ACTIONS(1024), + [aux_sym__val_number_token3] = ACTIONS(1024), + [aux_sym__val_number_token4] = ACTIONS(1024), + [aux_sym__val_number_token5] = ACTIONS(1024), + [aux_sym__val_number_token6] = ACTIONS(1024), + [anon_sym_0b] = ACTIONS(1024), + [anon_sym_0o] = ACTIONS(1024), + [anon_sym_0x] = ACTIONS(1024), + [sym_val_date] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym__str_single_quotes] = ACTIONS(1024), + [sym__str_back_ticks] = ACTIONS(1024), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1024), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1024), + [anon_sym_POUND] = ACTIONS(113), }, - [1202] = { - [sym_expr_parenthesized] = STATE(9793), - [sym_val_range] = STATE(10885), - [sym__val_range] = STATE(10473), - [sym__val_range_with_end] = STATE(10594), - [sym__value] = STATE(10885), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(10368), - [sym_val_variable] = STATE(6505), - [sym__var] = STATE(7403), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(7800), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym__cmd_arg] = STATE(10983), - [sym_redirection] = STATE(10901), - [sym__flag] = STATE(10909), - [sym_short_flag] = STATE(10775), - [sym_long_flag] = STATE(10775), - [sym_long_flag_equals_value] = STATE(11044), - [sym_long_flag_value] = STATE(10984), - [sym_unquoted] = STATE(10262), - [sym__unquoted_with_expr] = STATE(10912), - [sym__unquoted_anonymous_prefix] = STATE(10393), - [sym_comment] = STATE(1202), - [anon_sym_LBRACK] = ACTIONS(3363), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_DOLLAR] = ACTIONS(2690), - [anon_sym_DASH_DASH] = ACTIONS(3365), - [anon_sym_DASH] = ACTIONS(3367), - [anon_sym_LBRACE] = ACTIONS(3369), - [anon_sym_DOT_DOT] = ACTIONS(3371), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3375), - [anon_sym_true] = ACTIONS(3377), - [anon_sym_false] = ACTIONS(3377), - [aux_sym__val_number_decimal_token1] = ACTIONS(3379), - [aux_sym__val_number_decimal_token2] = ACTIONS(3381), - [anon_sym_DOT2] = ACTIONS(3383), - [aux_sym__val_number_decimal_token3] = ACTIONS(3385), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(3387), - [aux_sym__val_number_token5] = ACTIONS(3387), - [aux_sym__val_number_token6] = ACTIONS(3387), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(3389), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3395), - [anon_sym_out_GT] = ACTIONS(3395), - [anon_sym_e_GT] = ACTIONS(3395), - [anon_sym_o_GT] = ACTIONS(3395), - [anon_sym_err_PLUSout_GT] = ACTIONS(3395), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3395), - [anon_sym_o_PLUSe_GT] = ACTIONS(3395), - [anon_sym_e_PLUSo_GT] = ACTIONS(3395), - [aux_sym_unquoted_token1] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(3), + [1421] = { + [sym_comment] = STATE(1421), + [ts_builtin_sym_end] = ACTIONS(1026), + [anon_sym_SEMI] = ACTIONS(1024), + [anon_sym_LF] = ACTIONS(1026), + [anon_sym_LBRACK] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_PIPE] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_GT] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym_DOT_DOT] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(4825), + [anon_sym_STAR_STAR] = ACTIONS(1024), + [anon_sym_PLUS_PLUS] = ACTIONS(1024), + [anon_sym_SLASH] = ACTIONS(1024), + [anon_sym_mod] = ACTIONS(1024), + [anon_sym_SLASH_SLASH] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_bit_DASHshl] = ACTIONS(1024), + [anon_sym_bit_DASHshr] = ACTIONS(1024), + [anon_sym_EQ_EQ] = ACTIONS(1024), + [anon_sym_BANG_EQ] = ACTIONS(1024), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ] = ACTIONS(1024), + [anon_sym_GT_EQ] = ACTIONS(1024), + [anon_sym_not_DASHin] = ACTIONS(1024), + [anon_sym_starts_DASHwith] = ACTIONS(1024), + [anon_sym_ends_DASHwith] = ACTIONS(1024), + [anon_sym_EQ_TILDE] = ACTIONS(1024), + [anon_sym_BANG_TILDE] = ACTIONS(1024), + [anon_sym_bit_DASHand] = ACTIONS(1024), + [anon_sym_bit_DASHxor] = ACTIONS(1024), + [anon_sym_bit_DASHor] = ACTIONS(1024), + [anon_sym_and] = ACTIONS(1024), + [anon_sym_xor] = ACTIONS(1024), + [anon_sym_or] = ACTIONS(1024), + [anon_sym_not] = ACTIONS(1024), + [anon_sym_DOT_DOT2] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1026), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1026), + [anon_sym_null] = ACTIONS(1024), + [anon_sym_true] = ACTIONS(1024), + [anon_sym_false] = ACTIONS(1024), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1024), + [aux_sym__val_number_token1] = ACTIONS(1024), + [aux_sym__val_number_token2] = ACTIONS(1024), + [aux_sym__val_number_token3] = ACTIONS(1024), + [aux_sym__val_number_token4] = ACTIONS(1024), + [aux_sym__val_number_token5] = ACTIONS(1024), + [aux_sym__val_number_token6] = ACTIONS(1024), + [anon_sym_0b] = ACTIONS(1024), + [anon_sym_0o] = ACTIONS(1024), + [anon_sym_0x] = ACTIONS(1024), + [sym_val_date] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym__str_single_quotes] = ACTIONS(1024), + [sym__str_back_ticks] = ACTIONS(1024), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1024), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1024), + [anon_sym_POUND] = ACTIONS(113), }, - [1203] = { - [sym__expr_parenthesized_immediate] = STATE(2905), - [sym__immediate_decimal] = STATE(2854), - [sym_val_variable] = STATE(2905), - [sym__var] = STATE(1743), - [sym_comment] = STATE(1203), - [ts_builtin_sym_end] = ACTIONS(2004), - [anon_sym_export] = ACTIONS(2002), - [anon_sym_alias] = ACTIONS(2002), - [anon_sym_let] = ACTIONS(2002), - [anon_sym_let_DASHenv] = ACTIONS(2002), - [anon_sym_mut] = ACTIONS(2002), - [anon_sym_const] = ACTIONS(2002), - [anon_sym_SEMI] = ACTIONS(2002), - [sym_cmd_identifier] = ACTIONS(2002), - [anon_sym_LF] = ACTIONS(2004), - [anon_sym_def] = ACTIONS(2002), - [anon_sym_export_DASHenv] = ACTIONS(2002), - [anon_sym_extern] = ACTIONS(2002), - [anon_sym_module] = ACTIONS(2002), - [anon_sym_use] = ACTIONS(2002), - [anon_sym_LBRACK] = ACTIONS(2002), - [anon_sym_LPAREN] = ACTIONS(2002), - [anon_sym_DOLLAR] = ACTIONS(2629), - [anon_sym_error] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2002), - [anon_sym_break] = ACTIONS(2002), - [anon_sym_continue] = ACTIONS(2002), - [anon_sym_for] = ACTIONS(2002), - [anon_sym_loop] = ACTIONS(2002), - [anon_sym_while] = ACTIONS(2002), - [anon_sym_do] = ACTIONS(2002), - [anon_sym_if] = ACTIONS(2002), - [anon_sym_match] = ACTIONS(2002), - [anon_sym_LBRACE] = ACTIONS(2002), - [anon_sym_DOT_DOT] = ACTIONS(2002), - [anon_sym_try] = ACTIONS(2002), - [anon_sym_return] = ACTIONS(2002), - [anon_sym_source] = ACTIONS(2002), - [anon_sym_source_DASHenv] = ACTIONS(2002), - [anon_sym_register] = ACTIONS(2002), - [anon_sym_hide] = ACTIONS(2002), - [anon_sym_hide_DASHenv] = ACTIONS(2002), - [anon_sym_overlay] = ACTIONS(2002), - [anon_sym_where] = ACTIONS(2002), - [anon_sym_not] = ACTIONS(2002), - [anon_sym_LPAREN2] = ACTIONS(2631), - [anon_sym_DOT] = ACTIONS(2633), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2002), - [anon_sym_DOT_DOT_LT] = ACTIONS(2002), - [aux_sym__immediate_decimal_token1] = ACTIONS(2635), - [aux_sym__immediate_decimal_token3] = ACTIONS(2635), - [aux_sym__immediate_decimal_token4] = ACTIONS(2637), - [anon_sym_null] = ACTIONS(2002), - [anon_sym_true] = ACTIONS(2002), - [anon_sym_false] = ACTIONS(2002), - [aux_sym__val_number_decimal_token1] = ACTIONS(2002), - [aux_sym__val_number_decimal_token2] = ACTIONS(2002), - [anon_sym_DOT2] = ACTIONS(2002), - [aux_sym__val_number_decimal_token3] = ACTIONS(2002), - [aux_sym__val_number_token1] = ACTIONS(2002), - [aux_sym__val_number_token2] = ACTIONS(2002), - [aux_sym__val_number_token3] = ACTIONS(2002), - [aux_sym__val_number_token4] = ACTIONS(2002), - [aux_sym__val_number_token5] = ACTIONS(2002), - [aux_sym__val_number_token6] = ACTIONS(2002), - [anon_sym_0b] = ACTIONS(2002), - [anon_sym_0o] = ACTIONS(2002), - [anon_sym_0x] = ACTIONS(2002), - [sym_val_date] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym__str_single_quotes] = ACTIONS(2002), - [sym__str_back_ticks] = ACTIONS(2002), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2002), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2002), - [anon_sym_CARET] = ACTIONS(2002), + [1422] = { + [sym_comment] = STATE(1422), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_COMMA] = ACTIONS(1171), + [anon_sym_RBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [sym__entry_separator] = ACTIONS(1173), + [anon_sym_err_GT] = ACTIONS(1171), + [anon_sym_out_GT] = ACTIONS(1171), + [anon_sym_e_GT] = ACTIONS(1171), + [anon_sym_o_GT] = ACTIONS(1171), + [anon_sym_err_PLUSout_GT] = ACTIONS(1171), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1171), + [anon_sym_o_PLUSe_GT] = ACTIONS(1171), + [anon_sym_e_PLUSo_GT] = ACTIONS(1171), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, - [1204] = { - [sym_comment] = STATE(1204), - [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), - [anon_sym_SEMI] = ACTIONS(2437), - [sym_cmd_identifier] = ACTIONS(2437), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_RPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_DASH_DASH] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_RBRACE] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_as] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_not] = ACTIONS(2437), - [anon_sym_LPAREN2] = ACTIONS(2439), - [anon_sym_DOT_DOT2] = ACTIONS(2437), - [anon_sym_DOT] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2439), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2439), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [anon_sym_DOT2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2437), - [anon_sym_0o] = ACTIONS(2437), - [anon_sym_0x] = ACTIONS(2437), - [sym_val_date] = 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_CARET] = ACTIONS(2437), - [aux_sym_unquoted_token2] = ACTIONS(2437), + [1423] = { + [sym_comment] = STATE(1423), + [ts_builtin_sym_end] = ACTIONS(1145), + [anon_sym_export] = ACTIONS(1143), + [anon_sym_alias] = ACTIONS(1143), + [anon_sym_let] = ACTIONS(1143), + [anon_sym_let_DASHenv] = ACTIONS(1143), + [anon_sym_mut] = ACTIONS(1143), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_SEMI] = ACTIONS(1143), + [sym_cmd_identifier] = ACTIONS(1143), + [anon_sym_LF] = ACTIONS(1145), + [anon_sym_def] = ACTIONS(1143), + [anon_sym_export_DASHenv] = ACTIONS(1143), + [anon_sym_extern] = ACTIONS(1143), + [anon_sym_module] = ACTIONS(1143), + [anon_sym_use] = ACTIONS(1143), + [anon_sym_LBRACK] = ACTIONS(1143), + [anon_sym_LPAREN] = ACTIONS(1143), + [anon_sym_DOLLAR] = ACTIONS(1143), + [anon_sym_error] = ACTIONS(1143), + [anon_sym_DASH_DASH] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_break] = ACTIONS(1143), + [anon_sym_continue] = ACTIONS(1143), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_loop] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(1143), + [anon_sym_do] = ACTIONS(1143), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_match] = ACTIONS(1143), + [anon_sym_LBRACE] = ACTIONS(1143), + [anon_sym_DOT_DOT] = ACTIONS(1143), + [anon_sym_try] = ACTIONS(1143), + [anon_sym_return] = ACTIONS(1143), + [anon_sym_source] = ACTIONS(1143), + [anon_sym_source_DASHenv] = ACTIONS(1143), + [anon_sym_register] = ACTIONS(1143), + [anon_sym_hide] = ACTIONS(1143), + [anon_sym_hide_DASHenv] = ACTIONS(1143), + [anon_sym_overlay] = ACTIONS(1143), + [anon_sym_as] = ACTIONS(1143), + [anon_sym_where] = ACTIONS(1143), + [anon_sym_not] = ACTIONS(1143), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1143), + [anon_sym_DOT_DOT_LT] = ACTIONS(1143), + [anon_sym_null] = ACTIONS(1143), + [anon_sym_true] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [aux_sym__val_number_decimal_token1] = ACTIONS(1143), + [aux_sym__val_number_decimal_token2] = ACTIONS(1143), + [anon_sym_DOT2] = ACTIONS(1143), + [aux_sym__val_number_decimal_token3] = ACTIONS(1143), + [aux_sym__val_number_token1] = ACTIONS(1143), + [aux_sym__val_number_token2] = ACTIONS(1143), + [aux_sym__val_number_token3] = ACTIONS(1143), + [aux_sym__val_number_token4] = ACTIONS(1143), + [aux_sym__val_number_token5] = ACTIONS(1143), + [aux_sym__val_number_token6] = ACTIONS(1143), + [anon_sym_0b] = ACTIONS(1143), + [anon_sym_0o] = ACTIONS(1143), + [anon_sym_0x] = ACTIONS(1143), + [anon_sym_LBRACK2] = ACTIONS(4827), + [sym_val_date] = ACTIONS(1143), + [anon_sym_DQUOTE] = ACTIONS(1143), + [sym__str_single_quotes] = ACTIONS(1143), + [sym__str_back_ticks] = ACTIONS(1143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1143), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1143), + [anon_sym_CARET] = ACTIONS(1143), [anon_sym_POUND] = ACTIONS(113), }, - [1205] = { - [sym_expr_parenthesized] = STATE(3993), - [sym_val_range] = STATE(4364), - [sym__val_range] = STATE(10673), - [sym__val_range_with_end] = STATE(10633), - [sym__value] = STATE(4364), - [sym_val_nothing] = STATE(4454), - [sym_val_bool] = STATE(4022), - [sym_val_variable] = STATE(3945), - [sym__var] = STATE(3741), - [sym_val_number] = STATE(4454), - [sym__val_number_decimal] = STATE(3654), - [sym__val_number] = STATE(4345), - [sym_val_duration] = STATE(4454), - [sym_val_filesize] = STATE(4454), - [sym_val_binary] = STATE(4454), - [sym_val_string] = STATE(4454), - [sym__str_double_quotes] = STATE(4434), - [sym_val_interpolated] = STATE(4454), - [sym__inter_single_quotes] = STATE(4326), - [sym__inter_double_quotes] = STATE(4329), - [sym_val_list] = STATE(4454), - [sym_val_record] = STATE(4454), - [sym_val_table] = STATE(4454), - [sym_val_closure] = STATE(4454), - [sym__cmd_arg] = STATE(4413), - [sym_redirection] = STATE(4366), - [sym__flag] = STATE(4370), - [sym_short_flag] = STATE(4351), - [sym_long_flag] = STATE(4351), - [sym_long_flag_equals_value] = STATE(4347), - [sym_long_flag_value] = STATE(4415), - [sym_unquoted] = STATE(4063), - [sym__unquoted_with_expr] = STATE(4373), - [sym__unquoted_anonymous_prefix] = STATE(10250), - [sym_comment] = STATE(1205), - [anon_sym_LBRACK] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3399), - [anon_sym_DOLLAR] = ACTIONS(3401), - [anon_sym_DASH_DASH] = ACTIONS(3403), - [anon_sym_DASH] = ACTIONS(3405), - [anon_sym_LBRACE] = ACTIONS(3407), - [anon_sym_DOT_DOT] = ACTIONS(3409), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3411), - [anon_sym_DOT_DOT_LT] = ACTIONS(3411), - [anon_sym_null] = ACTIONS(3413), - [anon_sym_true] = ACTIONS(3415), - [anon_sym_false] = ACTIONS(3415), - [aux_sym__val_number_decimal_token1] = ACTIONS(3417), - [aux_sym__val_number_decimal_token2] = ACTIONS(3419), - [anon_sym_DOT2] = ACTIONS(3421), - [aux_sym__val_number_decimal_token3] = ACTIONS(3423), - [aux_sym__val_number_token1] = ACTIONS(3425), - [aux_sym__val_number_token2] = ACTIONS(3425), - [aux_sym__val_number_token3] = ACTIONS(3425), - [aux_sym__val_number_token4] = ACTIONS(3427), - [aux_sym__val_number_token5] = ACTIONS(3427), - [aux_sym__val_number_token6] = ACTIONS(3427), - [anon_sym_0b] = ACTIONS(3429), - [anon_sym_0o] = ACTIONS(3431), - [anon_sym_0x] = ACTIONS(3431), - [sym_val_date] = ACTIONS(3433), - [anon_sym_DQUOTE] = ACTIONS(3435), - [sym__str_single_quotes] = ACTIONS(3437), - [sym__str_back_ticks] = ACTIONS(3437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3439), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3441), - [anon_sym_err_GT] = ACTIONS(3443), - [anon_sym_out_GT] = ACTIONS(3443), - [anon_sym_e_GT] = ACTIONS(3443), - [anon_sym_o_GT] = ACTIONS(3443), - [anon_sym_err_PLUSout_GT] = ACTIONS(3443), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3443), - [anon_sym_o_PLUSe_GT] = ACTIONS(3443), - [anon_sym_e_PLUSo_GT] = ACTIONS(3443), - [aux_sym_unquoted_token1] = ACTIONS(3445), - [anon_sym_POUND] = ACTIONS(3), + [1424] = { + [sym_comment] = STATE(1424), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_COMMA] = ACTIONS(1171), + [anon_sym_RBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [sym__entry_separator] = ACTIONS(1173), + [anon_sym_err_GT] = ACTIONS(1171), + [anon_sym_out_GT] = ACTIONS(1171), + [anon_sym_e_GT] = ACTIONS(1171), + [anon_sym_o_GT] = ACTIONS(1171), + [anon_sym_err_PLUSout_GT] = ACTIONS(1171), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1171), + [anon_sym_o_PLUSe_GT] = ACTIONS(1171), + [anon_sym_e_PLUSo_GT] = ACTIONS(1171), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(113), }, - [1206] = { - [sym_cell_path] = STATE(1406), - [sym_path] = STATE(1207), - [sym_comment] = STATE(1206), - [anon_sym_export] = ACTIONS(1010), - [anon_sym_alias] = ACTIONS(1010), - [anon_sym_let] = ACTIONS(1010), - [anon_sym_let_DASHenv] = ACTIONS(1010), - [anon_sym_mut] = ACTIONS(1010), - [anon_sym_const] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1010), - [sym_cmd_identifier] = ACTIONS(1010), - [anon_sym_LF] = ACTIONS(1012), - [anon_sym_def] = ACTIONS(1010), - [anon_sym_export_DASHenv] = ACTIONS(1010), - [anon_sym_extern] = ACTIONS(1010), - [anon_sym_module] = ACTIONS(1010), - [anon_sym_use] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(1010), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_RPAREN] = ACTIONS(1010), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_error] = ACTIONS(1010), - [anon_sym_DASH_DASH] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1010), - [anon_sym_continue] = ACTIONS(1010), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_loop] = ACTIONS(1010), - [anon_sym_while] = ACTIONS(1010), - [anon_sym_do] = ACTIONS(1010), - [anon_sym_if] = ACTIONS(1010), - [anon_sym_match] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_RBRACE] = ACTIONS(1010), - [anon_sym_DOT_DOT] = ACTIONS(1010), - [anon_sym_try] = ACTIONS(1010), - [anon_sym_return] = ACTIONS(1010), - [anon_sym_source] = ACTIONS(1010), - [anon_sym_source_DASHenv] = ACTIONS(1010), - [anon_sym_register] = ACTIONS(1010), - [anon_sym_hide] = ACTIONS(1010), - [anon_sym_hide_DASHenv] = ACTIONS(1010), - [anon_sym_overlay] = ACTIONS(1010), - [anon_sym_as] = ACTIONS(1010), - [anon_sym_where] = ACTIONS(1010), - [anon_sym_not] = ACTIONS(1010), - [anon_sym_DOT_DOT2] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(2644), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT] = ACTIONS(1010), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), - [anon_sym_null] = ACTIONS(1010), - [anon_sym_true] = ACTIONS(1010), - [anon_sym_false] = ACTIONS(1010), - [aux_sym__val_number_decimal_token1] = ACTIONS(1010), - [aux_sym__val_number_decimal_token2] = ACTIONS(1010), - [anon_sym_DOT2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = 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(1010), - [aux_sym__val_number_token5] = ACTIONS(1010), - [aux_sym__val_number_token6] = ACTIONS(1010), - [anon_sym_0b] = ACTIONS(1010), - [anon_sym_0o] = ACTIONS(1010), - [anon_sym_0x] = ACTIONS(1010), - [sym_val_date] = ACTIONS(1010), - [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_CARET] = ACTIONS(1010), - [anon_sym_POUND] = ACTIONS(113), - }, - [1207] = { - [sym_path] = STATE(1329), - [sym_comment] = STATE(1207), - [aux_sym_cell_path_repeat1] = STATE(1211), - [anon_sym_export] = ACTIONS(987), - [anon_sym_alias] = ACTIONS(987), - [anon_sym_let] = ACTIONS(987), - [anon_sym_let_DASHenv] = ACTIONS(987), - [anon_sym_mut] = ACTIONS(987), - [anon_sym_const] = ACTIONS(987), - [anon_sym_SEMI] = ACTIONS(987), - [sym_cmd_identifier] = ACTIONS(987), - [anon_sym_LF] = ACTIONS(989), - [anon_sym_def] = ACTIONS(987), - [anon_sym_export_DASHenv] = ACTIONS(987), - [anon_sym_extern] = ACTIONS(987), - [anon_sym_module] = ACTIONS(987), - [anon_sym_use] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(987), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_RPAREN] = ACTIONS(987), - [anon_sym_DOLLAR] = ACTIONS(987), - [anon_sym_error] = ACTIONS(987), - [anon_sym_DASH_DASH] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_break] = ACTIONS(987), - [anon_sym_continue] = ACTIONS(987), - [anon_sym_for] = ACTIONS(987), - [anon_sym_loop] = ACTIONS(987), - [anon_sym_while] = ACTIONS(987), - [anon_sym_do] = ACTIONS(987), - [anon_sym_if] = ACTIONS(987), - [anon_sym_match] = ACTIONS(987), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_RBRACE] = ACTIONS(987), - [anon_sym_DOT_DOT] = ACTIONS(987), - [anon_sym_try] = ACTIONS(987), - [anon_sym_return] = ACTIONS(987), - [anon_sym_source] = ACTIONS(987), - [anon_sym_source_DASHenv] = ACTIONS(987), - [anon_sym_register] = ACTIONS(987), - [anon_sym_hide] = ACTIONS(987), - [anon_sym_hide_DASHenv] = ACTIONS(987), - [anon_sym_overlay] = ACTIONS(987), - [anon_sym_as] = ACTIONS(987), - [anon_sym_where] = ACTIONS(987), - [anon_sym_not] = ACTIONS(987), - [anon_sym_DOT_DOT2] = ACTIONS(987), - [anon_sym_DOT] = ACTIONS(2644), - [anon_sym_DOT_DOT_EQ] = ACTIONS(987), - [anon_sym_DOT_DOT_LT] = ACTIONS(987), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(989), - [anon_sym_DOT_DOT_LT2] = ACTIONS(989), - [anon_sym_null] = ACTIONS(987), - [anon_sym_true] = ACTIONS(987), - [anon_sym_false] = ACTIONS(987), - [aux_sym__val_number_decimal_token1] = ACTIONS(987), - [aux_sym__val_number_decimal_token2] = ACTIONS(987), - [anon_sym_DOT2] = ACTIONS(987), - [aux_sym__val_number_decimal_token3] = ACTIONS(987), - [aux_sym__val_number_token1] = ACTIONS(987), - [aux_sym__val_number_token2] = ACTIONS(987), - [aux_sym__val_number_token3] = ACTIONS(987), - [aux_sym__val_number_token4] = ACTIONS(987), - [aux_sym__val_number_token5] = ACTIONS(987), - [aux_sym__val_number_token6] = ACTIONS(987), - [anon_sym_0b] = ACTIONS(987), - [anon_sym_0o] = ACTIONS(987), - [anon_sym_0x] = ACTIONS(987), - [sym_val_date] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(987), - [sym__str_single_quotes] = ACTIONS(987), - [sym__str_back_ticks] = ACTIONS(987), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(987), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), + [1425] = { + [sym_comment] = STATE(1425), + [anon_sym_LBRACK] = ACTIONS(1061), + [anon_sym_COMMA] = ACTIONS(1061), + [anon_sym_RBRACK] = ACTIONS(1061), + [anon_sym_LPAREN] = ACTIONS(1061), + [anon_sym_DOLLAR] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_DASH_DASH] = ACTIONS(1061), + [anon_sym_DASH] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(1061), + [anon_sym_DOT_DOT] = ACTIONS(1061), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_STAR_STAR] = ACTIONS(1061), + [anon_sym_PLUS_PLUS] = ACTIONS(1061), + [anon_sym_SLASH] = ACTIONS(1061), + [anon_sym_mod] = ACTIONS(1061), + [anon_sym_SLASH_SLASH] = ACTIONS(1061), + [anon_sym_PLUS] = ACTIONS(1061), + [anon_sym_bit_DASHshl] = ACTIONS(1061), + [anon_sym_bit_DASHshr] = ACTIONS(1061), + [anon_sym_EQ_EQ] = ACTIONS(1061), + [anon_sym_BANG_EQ] = ACTIONS(1061), + [anon_sym_LT2] = ACTIONS(1061), + [anon_sym_LT_EQ] = ACTIONS(1061), + [anon_sym_GT_EQ] = ACTIONS(1061), + [anon_sym_not_DASHin] = ACTIONS(1061), + [anon_sym_starts_DASHwith] = ACTIONS(1061), + [anon_sym_ends_DASHwith] = ACTIONS(1061), + [anon_sym_EQ_TILDE] = ACTIONS(1061), + [anon_sym_BANG_TILDE] = ACTIONS(1061), + [anon_sym_bit_DASHand] = ACTIONS(1061), + [anon_sym_bit_DASHxor] = ACTIONS(1061), + [anon_sym_bit_DASHor] = ACTIONS(1061), + [anon_sym_and] = ACTIONS(1061), + [anon_sym_xor] = ACTIONS(1061), + [anon_sym_or] = ACTIONS(1061), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1061), + [anon_sym_DOT_DOT_LT] = ACTIONS(1061), + [anon_sym_null] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1061), + [anon_sym_false] = ACTIONS(1061), + [aux_sym__val_number_decimal_token1] = ACTIONS(1061), + [aux_sym__val_number_decimal_token2] = ACTIONS(1061), + [anon_sym_DOT2] = ACTIONS(1061), + [aux_sym__val_number_decimal_token3] = ACTIONS(1061), + [aux_sym__val_number_token1] = ACTIONS(1061), + [aux_sym__val_number_token2] = ACTIONS(1061), + [aux_sym__val_number_token3] = ACTIONS(1061), + [aux_sym__val_number_token4] = ACTIONS(1061), + [aux_sym__val_number_token5] = ACTIONS(1061), + [aux_sym__val_number_token6] = ACTIONS(1061), + [anon_sym_0b] = ACTIONS(1061), + [anon_sym_0o] = ACTIONS(1061), + [anon_sym_0x] = ACTIONS(1061), + [sym_val_date] = ACTIONS(1061), + [anon_sym_DQUOTE] = ACTIONS(1061), + [sym__str_single_quotes] = ACTIONS(1061), + [sym__str_back_ticks] = ACTIONS(1061), + [sym__entry_separator] = ACTIONS(1063), + [anon_sym_err_GT] = ACTIONS(1061), + [anon_sym_out_GT] = ACTIONS(1061), + [anon_sym_e_GT] = ACTIONS(1061), + [anon_sym_o_GT] = ACTIONS(1061), + [anon_sym_err_PLUSout_GT] = ACTIONS(1061), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1061), + [anon_sym_o_PLUSe_GT] = ACTIONS(1061), + [anon_sym_e_PLUSo_GT] = ACTIONS(1061), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1061), [anon_sym_POUND] = ACTIONS(113), }, - [1208] = { - [sym_expr_parenthesized] = STATE(4699), - [sym_val_range] = STATE(5421), - [sym__val_range] = STATE(10639), - [sym__val_range_with_end] = STATE(10600), - [sym__value] = STATE(5421), - [sym_val_nothing] = STATE(5321), - [sym_val_bool] = STATE(4885), - [sym_val_variable] = STATE(4743), - [sym__var] = STATE(4301), - [sym_val_number] = STATE(5321), - [sym__val_number_decimal] = STATE(3825), - [sym__val_number] = STATE(5354), - [sym_val_duration] = STATE(5321), - [sym_val_filesize] = STATE(5321), - [sym_val_binary] = STATE(5321), - [sym_val_string] = STATE(5321), - [sym__str_double_quotes] = STATE(5375), - [sym_val_interpolated] = STATE(5321), - [sym__inter_single_quotes] = STATE(5376), - [sym__inter_double_quotes] = STATE(5377), - [sym_val_list] = STATE(5321), - [sym_val_record] = STATE(5321), - [sym_val_table] = STATE(5321), - [sym_val_closure] = STATE(5321), - [sym__cmd_arg] = STATE(5336), - [sym_redirection] = STATE(5422), - [sym__flag] = STATE(5423), - [sym_short_flag] = STATE(5303), - [sym_long_flag] = STATE(5303), - [sym_long_flag_equals_value] = STATE(5400), - [sym_long_flag_value] = STATE(5341), - [sym_unquoted] = STATE(4929), - [sym__unquoted_with_expr] = STATE(5424), - [sym__unquoted_anonymous_prefix] = STATE(10428), - [sym_comment] = STATE(1208), - [anon_sym_LBRACK] = ACTIONS(3447), - [anon_sym_LPAREN] = ACTIONS(3449), - [anon_sym_DOLLAR] = ACTIONS(3451), - [anon_sym_DASH_DASH] = ACTIONS(3453), - [anon_sym_DASH] = ACTIONS(2975), - [anon_sym_LBRACE] = ACTIONS(3455), - [anon_sym_DOT_DOT] = ACTIONS(3457), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3459), - [anon_sym_DOT_DOT_LT] = ACTIONS(3459), - [anon_sym_null] = ACTIONS(3461), - [anon_sym_true] = ACTIONS(3463), - [anon_sym_false] = ACTIONS(3463), - [aux_sym__val_number_decimal_token1] = ACTIONS(3465), - [aux_sym__val_number_decimal_token2] = ACTIONS(3467), - [anon_sym_DOT2] = ACTIONS(3469), - [aux_sym__val_number_decimal_token3] = ACTIONS(3471), - [aux_sym__val_number_token1] = ACTIONS(3473), - [aux_sym__val_number_token2] = ACTIONS(3473), - [aux_sym__val_number_token3] = ACTIONS(3473), - [aux_sym__val_number_token4] = ACTIONS(3475), - [aux_sym__val_number_token5] = ACTIONS(3475), - [aux_sym__val_number_token6] = ACTIONS(3475), - [anon_sym_0b] = ACTIONS(3477), - [anon_sym_0o] = ACTIONS(3479), - [anon_sym_0x] = ACTIONS(3479), - [sym_val_date] = ACTIONS(3481), - [anon_sym_DQUOTE] = ACTIONS(3483), - [sym__str_single_quotes] = ACTIONS(3485), - [sym__str_back_ticks] = ACTIONS(3485), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3487), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3489), - [anon_sym_err_GT] = ACTIONS(3491), - [anon_sym_out_GT] = ACTIONS(3491), - [anon_sym_e_GT] = ACTIONS(3491), - [anon_sym_o_GT] = ACTIONS(3491), - [anon_sym_err_PLUSout_GT] = ACTIONS(3491), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3491), - [anon_sym_o_PLUSe_GT] = ACTIONS(3491), - [anon_sym_e_PLUSo_GT] = ACTIONS(3491), - [aux_sym_unquoted_token1] = ACTIONS(3493), - [anon_sym_POUND] = ACTIONS(3), - }, - [1209] = { - [sym__expr_parenthesized_immediate] = STATE(1742), - [sym__immediate_decimal] = STATE(1719), - [sym_val_variable] = STATE(1742), - [sym__var] = STATE(1426), - [sym_comment] = STATE(1209), - [ts_builtin_sym_end] = ACTIONS(1922), - [anon_sym_export] = ACTIONS(1920), - [anon_sym_alias] = ACTIONS(1920), - [anon_sym_let] = ACTIONS(1920), - [anon_sym_let_DASHenv] = ACTIONS(1920), - [anon_sym_mut] = ACTIONS(1920), - [anon_sym_const] = ACTIONS(1920), - [anon_sym_SEMI] = ACTIONS(1920), - [sym_cmd_identifier] = ACTIONS(1920), - [anon_sym_LF] = ACTIONS(1922), - [anon_sym_def] = ACTIONS(1920), - [anon_sym_export_DASHenv] = ACTIONS(1920), - [anon_sym_extern] = ACTIONS(1920), - [anon_sym_module] = ACTIONS(1920), - [anon_sym_use] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1920), - [anon_sym_DOLLAR] = ACTIONS(3495), - [anon_sym_error] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1920), - [anon_sym_break] = ACTIONS(1920), - [anon_sym_continue] = ACTIONS(1920), - [anon_sym_for] = ACTIONS(1920), - [anon_sym_loop] = ACTIONS(1920), - [anon_sym_while] = ACTIONS(1920), - [anon_sym_do] = ACTIONS(1920), - [anon_sym_if] = ACTIONS(1920), - [anon_sym_match] = ACTIONS(1920), - [anon_sym_LBRACE] = ACTIONS(1920), - [anon_sym_DOT_DOT] = ACTIONS(1920), - [anon_sym_try] = ACTIONS(1920), - [anon_sym_return] = ACTIONS(1920), - [anon_sym_source] = ACTIONS(1920), - [anon_sym_source_DASHenv] = ACTIONS(1920), - [anon_sym_register] = ACTIONS(1920), - [anon_sym_hide] = ACTIONS(1920), - [anon_sym_hide_DASHenv] = ACTIONS(1920), - [anon_sym_overlay] = ACTIONS(1920), - [anon_sym_where] = ACTIONS(1920), - [anon_sym_not] = ACTIONS(1920), - [anon_sym_LPAREN2] = ACTIONS(3497), - [anon_sym_DOT] = ACTIONS(3499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1920), - [anon_sym_DOT_DOT_LT] = ACTIONS(1920), - [aux_sym__immediate_decimal_token1] = ACTIONS(3501), - [aux_sym__immediate_decimal_token3] = ACTIONS(3501), - [aux_sym__immediate_decimal_token4] = ACTIONS(3503), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_true] = ACTIONS(1920), - [anon_sym_false] = ACTIONS(1920), - [aux_sym__val_number_decimal_token1] = ACTIONS(1920), - [aux_sym__val_number_decimal_token2] = ACTIONS(1920), - [anon_sym_DOT2] = ACTIONS(1920), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_token1] = ACTIONS(1920), - [aux_sym__val_number_token2] = ACTIONS(1920), - [aux_sym__val_number_token3] = ACTIONS(1920), - [aux_sym__val_number_token4] = ACTIONS(1920), - [aux_sym__val_number_token5] = ACTIONS(1920), - [aux_sym__val_number_token6] = ACTIONS(1920), - [anon_sym_0b] = ACTIONS(1920), - [anon_sym_0o] = ACTIONS(1920), - [anon_sym_0x] = ACTIONS(1920), - [sym_val_date] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym__str_single_quotes] = ACTIONS(1920), - [sym__str_back_ticks] = ACTIONS(1920), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1920), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1920), - [anon_sym_CARET] = ACTIONS(1920), + [1426] = { + [sym_comment] = STATE(1426), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_COMMA] = ACTIONS(1171), + [anon_sym_RBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [sym__entry_separator] = ACTIONS(1173), + [anon_sym_err_GT] = ACTIONS(1171), + [anon_sym_out_GT] = ACTIONS(1171), + [anon_sym_e_GT] = ACTIONS(1171), + [anon_sym_o_GT] = ACTIONS(1171), + [anon_sym_err_PLUSout_GT] = ACTIONS(1171), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1171), + [anon_sym_o_PLUSe_GT] = ACTIONS(1171), + [anon_sym_e_PLUSo_GT] = ACTIONS(1171), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, - [1210] = { - [sym__expr_parenthesized_immediate] = STATE(2839), - [sym__immediate_decimal] = STATE(2852), - [sym_val_variable] = STATE(2839), - [sym__var] = STATE(1743), - [sym_comment] = STATE(1210), - [ts_builtin_sym_end] = ACTIONS(1922), - [anon_sym_export] = ACTIONS(1920), - [anon_sym_alias] = ACTIONS(1920), - [anon_sym_let] = ACTIONS(1920), - [anon_sym_let_DASHenv] = ACTIONS(1920), - [anon_sym_mut] = ACTIONS(1920), - [anon_sym_const] = ACTIONS(1920), - [anon_sym_SEMI] = ACTIONS(1920), - [sym_cmd_identifier] = ACTIONS(1920), - [anon_sym_LF] = ACTIONS(1922), - [anon_sym_def] = ACTIONS(1920), - [anon_sym_export_DASHenv] = ACTIONS(1920), - [anon_sym_extern] = ACTIONS(1920), - [anon_sym_module] = ACTIONS(1920), - [anon_sym_use] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1920), - [anon_sym_DOLLAR] = ACTIONS(2629), - [anon_sym_error] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1920), - [anon_sym_break] = ACTIONS(1920), - [anon_sym_continue] = ACTIONS(1920), - [anon_sym_for] = ACTIONS(1920), - [anon_sym_loop] = ACTIONS(1920), - [anon_sym_while] = ACTIONS(1920), - [anon_sym_do] = ACTIONS(1920), - [anon_sym_if] = ACTIONS(1920), - [anon_sym_match] = ACTIONS(1920), - [anon_sym_LBRACE] = ACTIONS(1920), - [anon_sym_DOT_DOT] = ACTIONS(1920), - [anon_sym_try] = ACTIONS(1920), - [anon_sym_return] = ACTIONS(1920), - [anon_sym_source] = ACTIONS(1920), - [anon_sym_source_DASHenv] = ACTIONS(1920), - [anon_sym_register] = ACTIONS(1920), - [anon_sym_hide] = ACTIONS(1920), - [anon_sym_hide_DASHenv] = ACTIONS(1920), - [anon_sym_overlay] = ACTIONS(1920), - [anon_sym_where] = ACTIONS(1920), - [anon_sym_not] = ACTIONS(1920), - [anon_sym_LPAREN2] = ACTIONS(2631), - [anon_sym_DOT] = ACTIONS(2633), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1920), - [anon_sym_DOT_DOT_LT] = ACTIONS(1920), - [aux_sym__immediate_decimal_token1] = ACTIONS(2635), - [aux_sym__immediate_decimal_token3] = ACTIONS(2635), - [aux_sym__immediate_decimal_token4] = ACTIONS(2637), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_true] = ACTIONS(1920), - [anon_sym_false] = ACTIONS(1920), - [aux_sym__val_number_decimal_token1] = ACTIONS(1920), - [aux_sym__val_number_decimal_token2] = ACTIONS(1920), - [anon_sym_DOT2] = ACTIONS(1920), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_token1] = ACTIONS(1920), - [aux_sym__val_number_token2] = ACTIONS(1920), - [aux_sym__val_number_token3] = ACTIONS(1920), - [aux_sym__val_number_token4] = ACTIONS(1920), - [aux_sym__val_number_token5] = ACTIONS(1920), - [aux_sym__val_number_token6] = ACTIONS(1920), - [anon_sym_0b] = ACTIONS(1920), - [anon_sym_0o] = ACTIONS(1920), - [anon_sym_0x] = ACTIONS(1920), - [sym_val_date] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym__str_single_quotes] = ACTIONS(1920), - [sym__str_back_ticks] = ACTIONS(1920), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1920), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1920), - [anon_sym_CARET] = ACTIONS(1920), + [1427] = { + [sym_comment] = STATE(1427), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_COMMA] = ACTIONS(1171), + [anon_sym_RBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [sym__entry_separator] = ACTIONS(1173), + [anon_sym_err_GT] = ACTIONS(1171), + [anon_sym_out_GT] = ACTIONS(1171), + [anon_sym_e_GT] = ACTIONS(1171), + [anon_sym_o_GT] = ACTIONS(1171), + [anon_sym_err_PLUSout_GT] = ACTIONS(1171), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1171), + [anon_sym_o_PLUSe_GT] = ACTIONS(1171), + [anon_sym_e_PLUSo_GT] = ACTIONS(1171), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, - [1211] = { - [sym_path] = STATE(1329), - [sym_comment] = STATE(1211), - [aux_sym_cell_path_repeat1] = STATE(1215), - [anon_sym_export] = ACTIONS(1006), - [anon_sym_alias] = ACTIONS(1006), - [anon_sym_let] = ACTIONS(1006), - [anon_sym_let_DASHenv] = ACTIONS(1006), - [anon_sym_mut] = ACTIONS(1006), - [anon_sym_const] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1006), - [sym_cmd_identifier] = ACTIONS(1006), - [anon_sym_LF] = ACTIONS(1008), - [anon_sym_def] = ACTIONS(1006), - [anon_sym_export_DASHenv] = ACTIONS(1006), - [anon_sym_extern] = ACTIONS(1006), - [anon_sym_module] = ACTIONS(1006), - [anon_sym_use] = ACTIONS(1006), - [anon_sym_LBRACK] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_RPAREN] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_error] = ACTIONS(1006), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_break] = ACTIONS(1006), - [anon_sym_continue] = ACTIONS(1006), - [anon_sym_for] = ACTIONS(1006), - [anon_sym_loop] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(1006), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_match] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_try] = ACTIONS(1006), - [anon_sym_return] = ACTIONS(1006), - [anon_sym_source] = ACTIONS(1006), - [anon_sym_source_DASHenv] = ACTIONS(1006), - [anon_sym_register] = ACTIONS(1006), - [anon_sym_hide] = ACTIONS(1006), - [anon_sym_hide_DASHenv] = ACTIONS(1006), - [anon_sym_overlay] = ACTIONS(1006), - [anon_sym_as] = ACTIONS(1006), - [anon_sym_where] = ACTIONS(1006), - [anon_sym_not] = ACTIONS(1006), - [anon_sym_DOT_DOT2] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(2644), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), - [anon_sym_null] = ACTIONS(1006), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1006), - [anon_sym_DOT2] = ACTIONS(1006), - [aux_sym__val_number_decimal_token3] = ACTIONS(1006), - [aux_sym__val_number_token1] = ACTIONS(1006), - [aux_sym__val_number_token2] = ACTIONS(1006), - [aux_sym__val_number_token3] = ACTIONS(1006), - [aux_sym__val_number_token4] = ACTIONS(1006), - [aux_sym__val_number_token5] = ACTIONS(1006), - [aux_sym__val_number_token6] = ACTIONS(1006), - [anon_sym_0b] = ACTIONS(1006), - [anon_sym_0o] = ACTIONS(1006), - [anon_sym_0x] = ACTIONS(1006), - [sym_val_date] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym__str_single_quotes] = ACTIONS(1006), - [sym__str_back_ticks] = ACTIONS(1006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1006), - [anon_sym_CARET] = ACTIONS(1006), + [1428] = { + [sym_cell_path] = STATE(2511), + [sym_path] = STATE(1303), + [sym_comment] = STATE(1428), + [ts_builtin_sym_end] = ACTIONS(1053), + [anon_sym_export] = ACTIONS(1051), + [anon_sym_alias] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(1051), + [anon_sym_let_DASHenv] = ACTIONS(1051), + [anon_sym_mut] = ACTIONS(1051), + [anon_sym_const] = ACTIONS(1051), + [anon_sym_SEMI] = ACTIONS(1051), + [sym_cmd_identifier] = ACTIONS(1051), + [anon_sym_LF] = ACTIONS(1053), + [anon_sym_def] = ACTIONS(1051), + [anon_sym_export_DASHenv] = ACTIONS(1051), + [anon_sym_extern] = ACTIONS(1051), + [anon_sym_module] = ACTIONS(1051), + [anon_sym_use] = ACTIONS(1051), + [anon_sym_LBRACK] = ACTIONS(1051), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_DOLLAR] = ACTIONS(1051), + [anon_sym_error] = ACTIONS(1051), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_break] = ACTIONS(1051), + [anon_sym_continue] = ACTIONS(1051), + [anon_sym_for] = ACTIONS(1051), + [anon_sym_loop] = ACTIONS(1051), + [anon_sym_while] = ACTIONS(1051), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_if] = ACTIONS(1051), + [anon_sym_match] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(1051), + [anon_sym_DOT_DOT] = ACTIONS(1051), + [anon_sym_try] = ACTIONS(1051), + [anon_sym_return] = ACTIONS(1051), + [anon_sym_source] = ACTIONS(1051), + [anon_sym_source_DASHenv] = ACTIONS(1051), + [anon_sym_register] = ACTIONS(1051), + [anon_sym_hide] = ACTIONS(1051), + [anon_sym_hide_DASHenv] = ACTIONS(1051), + [anon_sym_overlay] = ACTIONS(1051), + [anon_sym_where] = ACTIONS(1051), + [anon_sym_not] = ACTIONS(1051), + [anon_sym_DOT] = ACTIONS(4719), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1051), + [anon_sym_DOT_DOT_LT] = ACTIONS(1051), + [anon_sym_null] = ACTIONS(1051), + [anon_sym_true] = ACTIONS(1051), + [anon_sym_false] = ACTIONS(1051), + [aux_sym__val_number_decimal_token1] = ACTIONS(1051), + [aux_sym__val_number_decimal_token2] = ACTIONS(1051), + [anon_sym_DOT2] = ACTIONS(1051), + [aux_sym__val_number_decimal_token3] = ACTIONS(1051), + [aux_sym__val_number_token1] = ACTIONS(1051), + [aux_sym__val_number_token2] = ACTIONS(1051), + [aux_sym__val_number_token3] = ACTIONS(1051), + [aux_sym__val_number_token4] = ACTIONS(1051), + [aux_sym__val_number_token5] = ACTIONS(1051), + [aux_sym__val_number_token6] = ACTIONS(1051), + [anon_sym_0b] = ACTIONS(1051), + [anon_sym_0o] = ACTIONS(1051), + [anon_sym_0x] = ACTIONS(1051), + [sym_val_date] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(1051), + [sym__str_single_quotes] = ACTIONS(1051), + [sym__str_back_ticks] = ACTIONS(1051), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1051), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1051), + [anon_sym_CARET] = ACTIONS(1051), [anon_sym_POUND] = ACTIONS(113), }, - [1212] = { - [sym_comment] = STATE(1212), - [anon_sym_export] = ACTIONS(3505), - [anon_sym_alias] = ACTIONS(3505), - [anon_sym_let] = ACTIONS(3505), - [anon_sym_let_DASHenv] = ACTIONS(3505), - [anon_sym_mut] = ACTIONS(3505), - [anon_sym_const] = ACTIONS(3505), - [anon_sym_SEMI] = ACTIONS(3505), - [sym_cmd_identifier] = ACTIONS(3505), - [anon_sym_LF] = ACTIONS(3507), - [anon_sym_def] = ACTIONS(3505), - [anon_sym_export_DASHenv] = ACTIONS(3505), - [anon_sym_extern] = ACTIONS(3505), - [anon_sym_module] = ACTIONS(3505), - [anon_sym_use] = ACTIONS(3505), - [anon_sym_LBRACK] = ACTIONS(3505), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_RPAREN] = ACTIONS(3505), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_error] = ACTIONS(3505), - [anon_sym_DASH_DASH] = ACTIONS(3505), - [anon_sym_DASH] = ACTIONS(3505), - [anon_sym_break] = ACTIONS(3505), - [anon_sym_continue] = ACTIONS(3505), - [anon_sym_for] = ACTIONS(3505), - [anon_sym_loop] = ACTIONS(3505), - [anon_sym_while] = ACTIONS(3505), - [anon_sym_do] = ACTIONS(3505), - [anon_sym_if] = ACTIONS(3505), - [anon_sym_match] = ACTIONS(3505), - [anon_sym_LBRACE] = ACTIONS(3505), - [anon_sym_RBRACE] = ACTIONS(3505), - [anon_sym_DOT_DOT] = ACTIONS(3505), - [anon_sym_try] = ACTIONS(3505), - [anon_sym_return] = ACTIONS(3505), - [anon_sym_source] = ACTIONS(3505), - [anon_sym_source_DASHenv] = ACTIONS(3505), - [anon_sym_register] = ACTIONS(3505), - [anon_sym_hide] = ACTIONS(3505), - [anon_sym_hide_DASHenv] = ACTIONS(3505), - [anon_sym_overlay] = ACTIONS(3505), - [anon_sym_as] = ACTIONS(3505), - [anon_sym_where] = ACTIONS(3505), - [anon_sym_not] = ACTIONS(3505), - [anon_sym_LPAREN2] = ACTIONS(3507), - [anon_sym_DOT_DOT2] = ACTIONS(3505), - [anon_sym_DOT] = ACTIONS(3505), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3505), - [anon_sym_DOT_DOT_LT] = ACTIONS(3505), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3507), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3507), - [anon_sym_null] = ACTIONS(3505), - [anon_sym_true] = ACTIONS(3505), - [anon_sym_false] = ACTIONS(3505), - [aux_sym__val_number_decimal_token1] = ACTIONS(3505), - [aux_sym__val_number_decimal_token2] = ACTIONS(3505), - [anon_sym_DOT2] = ACTIONS(3505), - [aux_sym__val_number_decimal_token3] = ACTIONS(3505), - [aux_sym__val_number_token1] = ACTIONS(3505), - [aux_sym__val_number_token2] = ACTIONS(3505), - [aux_sym__val_number_token3] = ACTIONS(3505), - [aux_sym__val_number_token4] = ACTIONS(3505), - [aux_sym__val_number_token5] = ACTIONS(3505), - [aux_sym__val_number_token6] = ACTIONS(3505), - [anon_sym_0b] = ACTIONS(3505), - [anon_sym_0o] = ACTIONS(3505), - [anon_sym_0x] = ACTIONS(3505), - [sym_val_date] = ACTIONS(3505), - [anon_sym_DQUOTE] = ACTIONS(3505), - [sym__str_single_quotes] = ACTIONS(3505), - [sym__str_back_ticks] = ACTIONS(3505), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3505), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3505), - [anon_sym_CARET] = ACTIONS(3505), - [aux_sym_unquoted_token2] = ACTIONS(3505), + [1429] = { + [sym_comment] = STATE(1429), + [anon_sym_LBRACK] = ACTIONS(1157), + [anon_sym_COMMA] = ACTIONS(1155), + [anon_sym_LPAREN] = ACTIONS(1157), + [anon_sym_DOLLAR] = ACTIONS(1155), + [anon_sym_GT] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_in] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1157), + [anon_sym_RBRACE] = ACTIONS(1157), + [anon_sym__] = ACTIONS(1155), + [anon_sym_DOT_DOT] = ACTIONS(1155), + [anon_sym_STAR] = ACTIONS(1155), + [anon_sym_STAR_STAR] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(1155), + [anon_sym_mod] = ACTIONS(1155), + [anon_sym_SLASH_SLASH] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_bit_DASHshl] = ACTIONS(1155), + [anon_sym_bit_DASHshr] = ACTIONS(1155), + [anon_sym_EQ_EQ] = ACTIONS(1155), + [anon_sym_BANG_EQ] = ACTIONS(1155), + [anon_sym_LT2] = ACTIONS(1155), + [anon_sym_LT_EQ] = ACTIONS(1155), + [anon_sym_GT_EQ] = ACTIONS(1155), + [anon_sym_not_DASHin] = ACTIONS(1155), + [anon_sym_starts_DASHwith] = ACTIONS(1155), + [anon_sym_ends_DASHwith] = ACTIONS(1155), + [anon_sym_EQ_TILDE] = ACTIONS(1155), + [anon_sym_BANG_TILDE] = ACTIONS(1155), + [anon_sym_bit_DASHand] = ACTIONS(1155), + [anon_sym_bit_DASHxor] = ACTIONS(1155), + [anon_sym_bit_DASHor] = ACTIONS(1155), + [anon_sym_and] = ACTIONS(1155), + [anon_sym_xor] = ACTIONS(1155), + [anon_sym_or] = ACTIONS(1155), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1155), + [anon_sym_DOT_DOT_LT] = ACTIONS(1155), + [anon_sym_null] = ACTIONS(1155), + [anon_sym_true] = ACTIONS(1155), + [anon_sym_false] = ACTIONS(1155), + [aux_sym__val_number_decimal_token1] = ACTIONS(1155), + [aux_sym__val_number_decimal_token2] = ACTIONS(1155), + [anon_sym_DOT2] = ACTIONS(1155), + [aux_sym__val_number_decimal_token3] = ACTIONS(1155), + [aux_sym__val_number_token1] = ACTIONS(1155), + [aux_sym__val_number_token2] = ACTIONS(1155), + [aux_sym__val_number_token3] = ACTIONS(1155), + [aux_sym__val_number_token4] = ACTIONS(1155), + [aux_sym__val_number_token5] = ACTIONS(1155), + [aux_sym__val_number_token6] = ACTIONS(1155), + [anon_sym_0b] = ACTIONS(1155), + [anon_sym_0o] = ACTIONS(1155), + [anon_sym_0x] = ACTIONS(1155), + [sym_val_date] = ACTIONS(1155), + [anon_sym_DQUOTE] = ACTIONS(1157), + [sym__str_single_quotes] = ACTIONS(1157), + [sym__str_back_ticks] = ACTIONS(1157), + [anon_sym_err_GT] = ACTIONS(1155), + [anon_sym_out_GT] = ACTIONS(1155), + [anon_sym_e_GT] = ACTIONS(1155), + [anon_sym_o_GT] = ACTIONS(1155), + [anon_sym_err_PLUSout_GT] = ACTIONS(1155), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1155), + [anon_sym_o_PLUSe_GT] = ACTIONS(1155), + [anon_sym_e_PLUSo_GT] = ACTIONS(1155), + [aux_sym_unquoted_token1] = ACTIONS(1155), + [aux_sym_unquoted_token6] = ACTIONS(1155), [anon_sym_POUND] = ACTIONS(113), }, - [1213] = { - [sym_comment] = STATE(1213), - [anon_sym_LBRACK] = ACTIONS(925), - [anon_sym_COMMA] = ACTIONS(925), - [anon_sym_LPAREN] = ACTIONS(925), - [anon_sym_DOLLAR] = ACTIONS(925), - [anon_sym_GT] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_in] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_RBRACE] = ACTIONS(925), - [anon_sym__] = ACTIONS(923), - [anon_sym_DOT_DOT] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_STAR_STAR] = ACTIONS(925), - [anon_sym_PLUS_PLUS] = ACTIONS(925), - [anon_sym_SLASH] = ACTIONS(923), - [anon_sym_mod] = ACTIONS(925), - [anon_sym_SLASH_SLASH] = ACTIONS(925), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_bit_DASHshl] = ACTIONS(925), - [anon_sym_bit_DASHshr] = ACTIONS(925), - [anon_sym_EQ_EQ] = ACTIONS(925), - [anon_sym_BANG_EQ] = ACTIONS(925), - [anon_sym_LT2] = ACTIONS(923), - [anon_sym_LT_EQ] = ACTIONS(925), - [anon_sym_GT_EQ] = ACTIONS(925), - [anon_sym_not_DASHin] = ACTIONS(925), - [anon_sym_starts_DASHwith] = ACTIONS(925), - [anon_sym_ends_DASHwith] = ACTIONS(925), - [anon_sym_EQ_TILDE] = ACTIONS(925), - [anon_sym_BANG_TILDE] = ACTIONS(925), - [anon_sym_bit_DASHand] = ACTIONS(925), - [anon_sym_bit_DASHxor] = ACTIONS(925), - [anon_sym_bit_DASHor] = ACTIONS(925), - [anon_sym_and] = ACTIONS(925), - [anon_sym_xor] = ACTIONS(925), - [anon_sym_or] = ACTIONS(925), - [anon_sym_DOT_DOT2] = ACTIONS(923), - [anon_sym_DOT] = ACTIONS(3509), - [anon_sym_DOT_DOT_EQ] = ACTIONS(923), - [anon_sym_DOT_DOT_LT] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(925), - [anon_sym_DOT_DOT_LT2] = ACTIONS(925), - [aux_sym__immediate_decimal_token2] = ACTIONS(3511), - [anon_sym_null] = ACTIONS(925), - [anon_sym_true] = ACTIONS(925), - [anon_sym_false] = ACTIONS(925), - [aux_sym__val_number_decimal_token1] = ACTIONS(923), - [aux_sym__val_number_decimal_token2] = ACTIONS(925), - [anon_sym_DOT2] = ACTIONS(923), - [aux_sym__val_number_decimal_token3] = ACTIONS(925), - [aux_sym__val_number_token1] = ACTIONS(925), - [aux_sym__val_number_token2] = ACTIONS(925), - [aux_sym__val_number_token3] = ACTIONS(925), - [aux_sym__val_number_token4] = ACTIONS(925), - [aux_sym__val_number_token5] = ACTIONS(925), - [aux_sym__val_number_token6] = ACTIONS(925), - [anon_sym_0b] = ACTIONS(923), - [sym_filesize_unit] = ACTIONS(923), - [sym_duration_unit] = ACTIONS(925), - [anon_sym_0o] = ACTIONS(923), - [anon_sym_0x] = ACTIONS(923), - [sym_val_date] = ACTIONS(925), - [anon_sym_DQUOTE] = ACTIONS(925), - [sym__str_single_quotes] = ACTIONS(925), - [sym__str_back_ticks] = ACTIONS(925), - [anon_sym_err_GT] = ACTIONS(925), - [anon_sym_out_GT] = ACTIONS(925), - [anon_sym_e_GT] = ACTIONS(925), - [anon_sym_o_GT] = ACTIONS(925), - [anon_sym_err_PLUSout_GT] = ACTIONS(925), - [anon_sym_out_PLUSerr_GT] = ACTIONS(925), - [anon_sym_o_PLUSe_GT] = ACTIONS(925), - [anon_sym_e_PLUSo_GT] = ACTIONS(925), - [aux_sym_unquoted_token1] = ACTIONS(923), - [anon_sym_POUND] = ACTIONS(3), - }, - [1214] = { - [sym__expr_parenthesized_immediate] = STATE(1740), - [sym__immediate_decimal] = STATE(1741), - [sym_val_variable] = STATE(1740), - [sym__var] = STATE(1426), - [sym_comment] = STATE(1214), - [ts_builtin_sym_end] = ACTIONS(2389), - [anon_sym_export] = ACTIONS(2387), - [anon_sym_alias] = ACTIONS(2387), - [anon_sym_let] = ACTIONS(2387), - [anon_sym_let_DASHenv] = ACTIONS(2387), - [anon_sym_mut] = ACTIONS(2387), - [anon_sym_const] = ACTIONS(2387), - [anon_sym_SEMI] = ACTIONS(2387), - [sym_cmd_identifier] = ACTIONS(2387), - [anon_sym_LF] = ACTIONS(2389), - [anon_sym_def] = ACTIONS(2387), - [anon_sym_export_DASHenv] = ACTIONS(2387), - [anon_sym_extern] = ACTIONS(2387), - [anon_sym_module] = ACTIONS(2387), - [anon_sym_use] = ACTIONS(2387), - [anon_sym_LBRACK] = ACTIONS(2387), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_DOLLAR] = ACTIONS(3495), - [anon_sym_error] = ACTIONS(2387), - [anon_sym_DASH] = ACTIONS(2387), - [anon_sym_break] = ACTIONS(2387), - [anon_sym_continue] = ACTIONS(2387), - [anon_sym_for] = ACTIONS(2387), - [anon_sym_loop] = ACTIONS(2387), - [anon_sym_while] = ACTIONS(2387), - [anon_sym_do] = ACTIONS(2387), - [anon_sym_if] = ACTIONS(2387), - [anon_sym_match] = ACTIONS(2387), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_DOT_DOT] = ACTIONS(2387), - [anon_sym_try] = ACTIONS(2387), - [anon_sym_return] = ACTIONS(2387), - [anon_sym_source] = ACTIONS(2387), - [anon_sym_source_DASHenv] = ACTIONS(2387), - [anon_sym_register] = ACTIONS(2387), - [anon_sym_hide] = ACTIONS(2387), - [anon_sym_hide_DASHenv] = ACTIONS(2387), - [anon_sym_overlay] = ACTIONS(2387), - [anon_sym_where] = ACTIONS(2387), - [anon_sym_not] = ACTIONS(2387), - [anon_sym_LPAREN2] = ACTIONS(3497), - [anon_sym_DOT] = ACTIONS(3513), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2387), - [anon_sym_DOT_DOT_LT] = ACTIONS(2387), - [aux_sym__immediate_decimal_token1] = ACTIONS(3501), - [aux_sym__immediate_decimal_token3] = ACTIONS(3501), - [aux_sym__immediate_decimal_token4] = ACTIONS(3503), - [anon_sym_null] = ACTIONS(2387), - [anon_sym_true] = ACTIONS(2387), - [anon_sym_false] = ACTIONS(2387), - [aux_sym__val_number_decimal_token1] = ACTIONS(2387), - [aux_sym__val_number_decimal_token2] = ACTIONS(2387), - [anon_sym_DOT2] = ACTIONS(2387), - [aux_sym__val_number_decimal_token3] = 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(2387), - [aux_sym__val_number_token5] = ACTIONS(2387), - [aux_sym__val_number_token6] = ACTIONS(2387), - [anon_sym_0b] = ACTIONS(2387), - [anon_sym_0o] = ACTIONS(2387), - [anon_sym_0x] = ACTIONS(2387), - [sym_val_date] = ACTIONS(2387), - [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_CARET] = ACTIONS(2387), + [1430] = { + [sym_comment] = STATE(1430), + [anon_sym_export] = ACTIONS(1253), + [anon_sym_alias] = ACTIONS(1253), + [anon_sym_let] = ACTIONS(1253), + [anon_sym_let_DASHenv] = ACTIONS(1253), + [anon_sym_mut] = ACTIONS(1253), + [anon_sym_const] = ACTIONS(1253), + [anon_sym_SEMI] = ACTIONS(1253), + [sym_cmd_identifier] = ACTIONS(1253), + [anon_sym_LF] = ACTIONS(1255), + [anon_sym_def] = ACTIONS(1253), + [anon_sym_export_DASHenv] = ACTIONS(1253), + [anon_sym_extern] = ACTIONS(1253), + [anon_sym_module] = ACTIONS(1253), + [anon_sym_use] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1253), + [anon_sym_LPAREN] = ACTIONS(1253), + [anon_sym_RPAREN] = ACTIONS(1253), + [anon_sym_DOLLAR] = ACTIONS(1253), + [anon_sym_error] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_break] = ACTIONS(1253), + [anon_sym_continue] = ACTIONS(1253), + [anon_sym_for] = ACTIONS(1253), + [anon_sym_loop] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1253), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_if] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1253), + [anon_sym_LBRACE] = ACTIONS(1253), + [anon_sym_RBRACE] = ACTIONS(1253), + [anon_sym_DOT_DOT] = ACTIONS(1253), + [anon_sym_try] = ACTIONS(1253), + [anon_sym_return] = ACTIONS(1253), + [anon_sym_source] = ACTIONS(1253), + [anon_sym_source_DASHenv] = ACTIONS(1253), + [anon_sym_register] = ACTIONS(1253), + [anon_sym_hide] = ACTIONS(1253), + [anon_sym_hide_DASHenv] = ACTIONS(1253), + [anon_sym_overlay] = ACTIONS(1253), + [anon_sym_as] = ACTIONS(1253), + [anon_sym_where] = ACTIONS(1253), + [anon_sym_not] = ACTIONS(1253), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1253), + [anon_sym_DOT_DOT_LT] = ACTIONS(1253), + [anon_sym_null] = ACTIONS(1253), + [anon_sym_true] = ACTIONS(1253), + [anon_sym_false] = ACTIONS(1253), + [aux_sym__val_number_decimal_token1] = ACTIONS(1253), + [aux_sym__val_number_decimal_token2] = ACTIONS(1253), + [anon_sym_DOT2] = ACTIONS(1253), + [aux_sym__val_number_decimal_token3] = ACTIONS(1253), + [aux_sym__val_number_token1] = ACTIONS(1253), + [aux_sym__val_number_token2] = ACTIONS(1253), + [aux_sym__val_number_token3] = ACTIONS(1253), + [aux_sym__val_number_token4] = ACTIONS(1253), + [aux_sym__val_number_token5] = ACTIONS(1253), + [aux_sym__val_number_token6] = ACTIONS(1253), + [anon_sym_0b] = ACTIONS(1253), + [anon_sym_0o] = ACTIONS(1253), + [anon_sym_0x] = ACTIONS(1253), + [sym_val_date] = ACTIONS(1253), + [anon_sym_DQUOTE] = ACTIONS(1253), + [sym__str_single_quotes] = ACTIONS(1253), + [sym__str_back_ticks] = ACTIONS(1253), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1253), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1253), + [anon_sym_CARET] = ACTIONS(1253), [anon_sym_POUND] = ACTIONS(113), }, - [1215] = { - [sym_path] = STATE(1329), - [sym_comment] = STATE(1215), - [aux_sym_cell_path_repeat1] = STATE(1215), - [anon_sym_export] = ACTIONS(999), - [anon_sym_alias] = ACTIONS(999), - [anon_sym_let] = ACTIONS(999), - [anon_sym_let_DASHenv] = ACTIONS(999), - [anon_sym_mut] = ACTIONS(999), - [anon_sym_const] = ACTIONS(999), - [anon_sym_SEMI] = ACTIONS(999), - [sym_cmd_identifier] = ACTIONS(999), - [anon_sym_LF] = ACTIONS(1001), - [anon_sym_def] = ACTIONS(999), - [anon_sym_export_DASHenv] = ACTIONS(999), - [anon_sym_extern] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_use] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_RPAREN] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_error] = ACTIONS(999), - [anon_sym_DASH_DASH] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_break] = ACTIONS(999), - [anon_sym_continue] = ACTIONS(999), - [anon_sym_for] = ACTIONS(999), - [anon_sym_loop] = ACTIONS(999), - [anon_sym_while] = ACTIONS(999), - [anon_sym_do] = ACTIONS(999), - [anon_sym_if] = ACTIONS(999), - [anon_sym_match] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(999), - [anon_sym_RBRACE] = ACTIONS(999), - [anon_sym_DOT_DOT] = ACTIONS(999), - [anon_sym_try] = ACTIONS(999), - [anon_sym_return] = ACTIONS(999), - [anon_sym_source] = ACTIONS(999), - [anon_sym_source_DASHenv] = ACTIONS(999), - [anon_sym_register] = ACTIONS(999), - [anon_sym_hide] = ACTIONS(999), - [anon_sym_hide_DASHenv] = ACTIONS(999), - [anon_sym_overlay] = ACTIONS(999), - [anon_sym_as] = ACTIONS(999), - [anon_sym_where] = ACTIONS(999), - [anon_sym_not] = ACTIONS(999), - [anon_sym_DOT_DOT2] = ACTIONS(999), - [anon_sym_DOT] = ACTIONS(3515), - [anon_sym_DOT_DOT_EQ] = ACTIONS(999), - [anon_sym_DOT_DOT_LT] = ACTIONS(999), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1001), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1001), - [anon_sym_null] = ACTIONS(999), - [anon_sym_true] = ACTIONS(999), - [anon_sym_false] = ACTIONS(999), - [aux_sym__val_number_decimal_token1] = ACTIONS(999), - [aux_sym__val_number_decimal_token2] = ACTIONS(999), - [anon_sym_DOT2] = ACTIONS(999), - [aux_sym__val_number_decimal_token3] = ACTIONS(999), - [aux_sym__val_number_token1] = ACTIONS(999), - [aux_sym__val_number_token2] = ACTIONS(999), - [aux_sym__val_number_token3] = ACTIONS(999), - [aux_sym__val_number_token4] = ACTIONS(999), - [aux_sym__val_number_token5] = ACTIONS(999), - [aux_sym__val_number_token6] = ACTIONS(999), - [anon_sym_0b] = ACTIONS(999), - [anon_sym_0o] = ACTIONS(999), - [anon_sym_0x] = ACTIONS(999), - [sym_val_date] = ACTIONS(999), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym__str_single_quotes] = ACTIONS(999), - [sym__str_back_ticks] = ACTIONS(999), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(999), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(999), - [anon_sym_CARET] = ACTIONS(999), + [1431] = { + [sym_comment] = STATE(1431), + [anon_sym_export] = ACTIONS(1257), + [anon_sym_alias] = ACTIONS(1257), + [anon_sym_let] = ACTIONS(1257), + [anon_sym_let_DASHenv] = ACTIONS(1257), + [anon_sym_mut] = ACTIONS(1257), + [anon_sym_const] = ACTIONS(1257), + [anon_sym_SEMI] = ACTIONS(1257), + [sym_cmd_identifier] = ACTIONS(1257), + [anon_sym_LF] = ACTIONS(1259), + [anon_sym_def] = ACTIONS(1257), + [anon_sym_export_DASHenv] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(1257), + [anon_sym_module] = ACTIONS(1257), + [anon_sym_use] = ACTIONS(1257), + [anon_sym_LBRACK] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_RPAREN] = ACTIONS(1257), + [anon_sym_DOLLAR] = ACTIONS(1257), + [anon_sym_error] = ACTIONS(1257), + [anon_sym_DASH_DASH] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_break] = ACTIONS(1257), + [anon_sym_continue] = ACTIONS(1257), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_loop] = ACTIONS(1257), + [anon_sym_while] = ACTIONS(1257), + [anon_sym_do] = ACTIONS(1257), + [anon_sym_if] = ACTIONS(1257), + [anon_sym_match] = ACTIONS(1257), + [anon_sym_LBRACE] = ACTIONS(1257), + [anon_sym_RBRACE] = ACTIONS(1257), + [anon_sym_DOT_DOT] = ACTIONS(1257), + [anon_sym_try] = ACTIONS(1257), + [anon_sym_return] = ACTIONS(1257), + [anon_sym_source] = ACTIONS(1257), + [anon_sym_source_DASHenv] = ACTIONS(1257), + [anon_sym_register] = ACTIONS(1257), + [anon_sym_hide] = ACTIONS(1257), + [anon_sym_hide_DASHenv] = ACTIONS(1257), + [anon_sym_overlay] = ACTIONS(1257), + [anon_sym_as] = ACTIONS(1257), + [anon_sym_where] = ACTIONS(1257), + [anon_sym_not] = ACTIONS(1257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1257), + [anon_sym_DOT_DOT_LT] = ACTIONS(1257), + [anon_sym_null] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [aux_sym__val_number_decimal_token1] = ACTIONS(1257), + [aux_sym__val_number_decimal_token2] = ACTIONS(1257), + [anon_sym_DOT2] = ACTIONS(1257), + [aux_sym__val_number_decimal_token3] = ACTIONS(1257), + [aux_sym__val_number_token1] = ACTIONS(1257), + [aux_sym__val_number_token2] = ACTIONS(1257), + [aux_sym__val_number_token3] = ACTIONS(1257), + [aux_sym__val_number_token4] = ACTIONS(1257), + [aux_sym__val_number_token5] = ACTIONS(1257), + [aux_sym__val_number_token6] = ACTIONS(1257), + [anon_sym_0b] = ACTIONS(1257), + [anon_sym_0o] = ACTIONS(1257), + [anon_sym_0x] = ACTIONS(1257), + [sym_val_date] = ACTIONS(1257), + [anon_sym_DQUOTE] = ACTIONS(1257), + [sym__str_single_quotes] = ACTIONS(1257), + [sym__str_back_ticks] = ACTIONS(1257), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1257), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1257), + [anon_sym_CARET] = ACTIONS(1257), [anon_sym_POUND] = ACTIONS(113), }, - [1216] = { - [sym_comment] = STATE(1216), - [anon_sym_export] = ACTIONS(3518), - [anon_sym_alias] = ACTIONS(3518), - [anon_sym_let] = ACTIONS(3518), - [anon_sym_let_DASHenv] = ACTIONS(3518), - [anon_sym_mut] = ACTIONS(3518), - [anon_sym_const] = ACTIONS(3518), - [anon_sym_SEMI] = ACTIONS(3518), - [sym_cmd_identifier] = ACTIONS(3518), - [anon_sym_LF] = ACTIONS(3520), - [anon_sym_def] = ACTIONS(3518), - [anon_sym_export_DASHenv] = ACTIONS(3518), - [anon_sym_extern] = ACTIONS(3518), - [anon_sym_module] = ACTIONS(3518), - [anon_sym_use] = ACTIONS(3518), - [anon_sym_LBRACK] = ACTIONS(3518), - [anon_sym_LPAREN] = ACTIONS(3518), - [anon_sym_RPAREN] = ACTIONS(3518), - [anon_sym_DOLLAR] = ACTIONS(3518), - [anon_sym_error] = ACTIONS(3518), - [anon_sym_DASH_DASH] = ACTIONS(3518), - [anon_sym_DASH] = ACTIONS(3518), - [anon_sym_break] = ACTIONS(3518), - [anon_sym_continue] = ACTIONS(3518), - [anon_sym_for] = ACTIONS(3518), - [anon_sym_loop] = ACTIONS(3518), - [anon_sym_while] = ACTIONS(3518), - [anon_sym_do] = ACTIONS(3518), - [anon_sym_if] = ACTIONS(3518), - [anon_sym_match] = ACTIONS(3518), - [anon_sym_LBRACE] = ACTIONS(3518), - [anon_sym_RBRACE] = ACTIONS(3518), - [anon_sym_DOT_DOT] = ACTIONS(3518), - [anon_sym_try] = ACTIONS(3518), - [anon_sym_return] = ACTIONS(3518), - [anon_sym_source] = ACTIONS(3518), - [anon_sym_source_DASHenv] = ACTIONS(3518), - [anon_sym_register] = ACTIONS(3518), - [anon_sym_hide] = ACTIONS(3518), - [anon_sym_hide_DASHenv] = ACTIONS(3518), - [anon_sym_overlay] = ACTIONS(3518), - [anon_sym_as] = ACTIONS(3518), - [anon_sym_where] = ACTIONS(3518), - [anon_sym_not] = ACTIONS(3518), - [anon_sym_LPAREN2] = ACTIONS(3522), - [anon_sym_DOT_DOT2] = ACTIONS(3524), - [anon_sym_DOT] = ACTIONS(1934), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3518), - [anon_sym_DOT_DOT_LT] = ACTIONS(3518), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3526), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3526), - [anon_sym_null] = ACTIONS(3518), - [anon_sym_true] = ACTIONS(3518), - [anon_sym_false] = ACTIONS(3518), - [aux_sym__val_number_decimal_token1] = ACTIONS(3518), - [aux_sym__val_number_decimal_token2] = ACTIONS(3518), - [anon_sym_DOT2] = ACTIONS(3518), - [aux_sym__val_number_decimal_token3] = ACTIONS(3518), - [aux_sym__val_number_token1] = ACTIONS(3518), - [aux_sym__val_number_token2] = ACTIONS(3518), - [aux_sym__val_number_token3] = ACTIONS(3518), - [aux_sym__val_number_token4] = ACTIONS(3518), - [aux_sym__val_number_token5] = ACTIONS(3518), - [aux_sym__val_number_token6] = ACTIONS(3518), - [anon_sym_0b] = ACTIONS(3518), - [anon_sym_0o] = ACTIONS(3518), - [anon_sym_0x] = ACTIONS(3518), - [sym_val_date] = ACTIONS(3518), - [anon_sym_DQUOTE] = ACTIONS(3518), - [sym__str_single_quotes] = ACTIONS(3518), - [sym__str_back_ticks] = ACTIONS(3518), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3518), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3518), - [anon_sym_CARET] = ACTIONS(3518), - [aux_sym_unquoted_token2] = ACTIONS(1934), + [1432] = { + [sym__expression] = STATE(6980), + [sym_expr_unary] = STATE(5409), + [sym__expr_unary_minus] = STATE(5410), + [sym_expr_binary] = STATE(5409), + [sym__expr_binary_expression] = STATE(6366), + [sym_expr_parenthesized] = STATE(4635), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5409), + [sym_val_nothing] = STATE(5350), + [sym_val_bool] = STATE(5350), + [sym_val_variable] = STATE(4717), + [sym__var] = STATE(4193), + [sym_val_number] = STATE(5350), + [sym__val_number_decimal] = STATE(4266), + [sym__val_number] = STATE(5351), + [sym_val_duration] = STATE(5350), + [sym_val_filesize] = STATE(5350), + [sym_val_binary] = STATE(5350), + [sym_val_string] = STATE(5350), + [sym__str_double_quotes] = STATE(5502), + [sym_val_interpolated] = STATE(5350), + [sym__inter_single_quotes] = STATE(5420), + [sym__inter_double_quotes] = STATE(5421), + [sym_val_list] = STATE(5350), + [sym_val_record] = STATE(5350), + [sym_val_table] = STATE(5350), + [sym_val_closure] = STATE(5350), + [sym__flag] = STATE(6979), + [sym_short_flag] = STATE(8027), + [sym_long_flag] = STATE(8027), + [sym_long_flag_equals_value] = STATE(7909), + [sym_comment] = STATE(1432), + [anon_sym_SEMI] = ACTIONS(4829), + [anon_sym_LF] = ACTIONS(4831), + [anon_sym_LBRACK] = ACTIONS(4833), + [anon_sym_LPAREN] = ACTIONS(4835), + [anon_sym_RPAREN] = ACTIONS(4829), + [anon_sym_PIPE] = ACTIONS(4829), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_DASH_DASH] = ACTIONS(4837), + [anon_sym_DASH] = ACTIONS(4839), + [anon_sym_LBRACE] = ACTIONS(4841), + [anon_sym_RBRACE] = ACTIONS(4829), + [anon_sym_DOT_DOT] = ACTIONS(4843), + [anon_sym_not] = ACTIONS(4845), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4847), + [anon_sym_DOT_DOT_LT] = ACTIONS(4847), + [anon_sym_null] = ACTIONS(4849), + [anon_sym_true] = ACTIONS(4851), + [anon_sym_false] = ACTIONS(4851), + [aux_sym__val_number_decimal_token1] = ACTIONS(4853), + [aux_sym__val_number_decimal_token2] = ACTIONS(4853), + [anon_sym_DOT2] = ACTIONS(4855), + [aux_sym__val_number_decimal_token3] = ACTIONS(4857), + [aux_sym__val_number_token1] = ACTIONS(4859), + [aux_sym__val_number_token2] = ACTIONS(4859), + [aux_sym__val_number_token3] = ACTIONS(4859), + [aux_sym__val_number_token4] = ACTIONS(4859), + [aux_sym__val_number_token5] = ACTIONS(4859), + [aux_sym__val_number_token6] = ACTIONS(4859), + [anon_sym_0b] = ACTIONS(3080), + [anon_sym_0o] = ACTIONS(3082), + [anon_sym_0x] = ACTIONS(3082), + [sym_val_date] = ACTIONS(4861), + [anon_sym_DQUOTE] = ACTIONS(4863), + [sym__str_single_quotes] = ACTIONS(4865), + [sym__str_back_ticks] = ACTIONS(4865), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4867), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4869), [anon_sym_POUND] = ACTIONS(113), }, - [1217] = { - [sym__immediate_decimal] = STATE(10460), - [sym_comment] = STATE(1217), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_COMMA] = ACTIONS(936), - [anon_sym_RBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_STAR_STAR] = ACTIONS(936), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(936), - [anon_sym_SLASH_SLASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(936), - [anon_sym_bit_DASHshr] = ACTIONS(936), - [anon_sym_EQ_EQ] = ACTIONS(936), - [anon_sym_BANG_EQ] = ACTIONS(936), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(936), - [anon_sym_GT_EQ] = ACTIONS(936), - [anon_sym_not_DASHin] = ACTIONS(936), - [anon_sym_starts_DASHwith] = ACTIONS(936), - [anon_sym_ends_DASHwith] = ACTIONS(936), - [anon_sym_EQ_TILDE] = ACTIONS(936), - [anon_sym_BANG_TILDE] = ACTIONS(936), - [anon_sym_bit_DASHand] = ACTIONS(936), - [anon_sym_bit_DASHxor] = ACTIONS(936), - [anon_sym_bit_DASHor] = ACTIONS(936), - [anon_sym_and] = ACTIONS(936), - [anon_sym_xor] = ACTIONS(936), - [anon_sym_or] = ACTIONS(936), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [aux_sym__immediate_decimal_token1] = ACTIONS(1045), - [aux_sym__immediate_decimal_token3] = ACTIONS(1045), - [aux_sym__immediate_decimal_token4] = ACTIONS(1047), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [sym__entry_separator] = ACTIONS(938), - [anon_sym_err_GT] = ACTIONS(936), - [anon_sym_out_GT] = ACTIONS(936), - [anon_sym_e_GT] = ACTIONS(936), - [anon_sym_o_GT] = ACTIONS(936), - [anon_sym_err_PLUSout_GT] = ACTIONS(936), - [anon_sym_out_PLUSerr_GT] = ACTIONS(936), - [anon_sym_o_PLUSe_GT] = ACTIONS(936), - [anon_sym_e_PLUSo_GT] = ACTIONS(936), - [aux_sym_unquoted_token4] = ACTIONS(2577), - [aux_sym__unquoted_in_list_token1] = ACTIONS(936), + [1433] = { + [sym_comment] = STATE(1433), + [anon_sym_export] = ACTIONS(1261), + [anon_sym_alias] = ACTIONS(1261), + [anon_sym_let] = ACTIONS(1261), + [anon_sym_let_DASHenv] = ACTIONS(1261), + [anon_sym_mut] = ACTIONS(1261), + [anon_sym_const] = ACTIONS(1261), + [anon_sym_SEMI] = ACTIONS(1261), + [sym_cmd_identifier] = ACTIONS(1261), + [anon_sym_LF] = ACTIONS(1263), + [anon_sym_def] = ACTIONS(1261), + [anon_sym_export_DASHenv] = ACTIONS(1261), + [anon_sym_extern] = ACTIONS(1261), + [anon_sym_module] = ACTIONS(1261), + [anon_sym_use] = ACTIONS(1261), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_RPAREN] = ACTIONS(1261), + [anon_sym_DOLLAR] = ACTIONS(1261), + [anon_sym_error] = ACTIONS(1261), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1261), + [anon_sym_break] = ACTIONS(1261), + [anon_sym_continue] = ACTIONS(1261), + [anon_sym_for] = ACTIONS(1261), + [anon_sym_loop] = ACTIONS(1261), + [anon_sym_while] = ACTIONS(1261), + [anon_sym_do] = ACTIONS(1261), + [anon_sym_if] = ACTIONS(1261), + [anon_sym_match] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1261), + [anon_sym_DOT_DOT] = ACTIONS(1261), + [anon_sym_try] = ACTIONS(1261), + [anon_sym_return] = ACTIONS(1261), + [anon_sym_source] = ACTIONS(1261), + [anon_sym_source_DASHenv] = ACTIONS(1261), + [anon_sym_register] = ACTIONS(1261), + [anon_sym_hide] = ACTIONS(1261), + [anon_sym_hide_DASHenv] = ACTIONS(1261), + [anon_sym_overlay] = ACTIONS(1261), + [anon_sym_as] = ACTIONS(1261), + [anon_sym_where] = ACTIONS(1261), + [anon_sym_not] = ACTIONS(1261), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1261), + [anon_sym_DOT_DOT_LT] = ACTIONS(1261), + [anon_sym_null] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [aux_sym__val_number_decimal_token1] = ACTIONS(1261), + [aux_sym__val_number_decimal_token2] = ACTIONS(1261), + [anon_sym_DOT2] = ACTIONS(1261), + [aux_sym__val_number_decimal_token3] = ACTIONS(1261), + [aux_sym__val_number_token1] = ACTIONS(1261), + [aux_sym__val_number_token2] = ACTIONS(1261), + [aux_sym__val_number_token3] = ACTIONS(1261), + [aux_sym__val_number_token4] = ACTIONS(1261), + [aux_sym__val_number_token5] = ACTIONS(1261), + [aux_sym__val_number_token6] = ACTIONS(1261), + [anon_sym_0b] = ACTIONS(1261), + [anon_sym_0o] = ACTIONS(1261), + [anon_sym_0x] = ACTIONS(1261), + [sym_val_date] = ACTIONS(1261), + [anon_sym_DQUOTE] = ACTIONS(1261), + [sym__str_single_quotes] = ACTIONS(1261), + [sym__str_back_ticks] = ACTIONS(1261), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1261), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1261), + [anon_sym_CARET] = ACTIONS(1261), [anon_sym_POUND] = ACTIONS(113), }, - [1218] = { - [sym_comment] = STATE(1218), - [ts_builtin_sym_end] = ACTIONS(2583), - [anon_sym_export] = ACTIONS(2581), - [anon_sym_alias] = ACTIONS(2581), - [anon_sym_let] = ACTIONS(2581), - [anon_sym_let_DASHenv] = ACTIONS(2581), - [anon_sym_mut] = ACTIONS(2581), - [anon_sym_const] = ACTIONS(2581), - [anon_sym_SEMI] = ACTIONS(2581), - [sym_cmd_identifier] = ACTIONS(2581), - [anon_sym_LF] = ACTIONS(2583), - [anon_sym_def] = ACTIONS(2581), - [anon_sym_export_DASHenv] = ACTIONS(2581), - [anon_sym_extern] = ACTIONS(2581), - [anon_sym_module] = ACTIONS(2581), - [anon_sym_use] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2581), - [anon_sym_error] = ACTIONS(2581), - [anon_sym_DASH_DASH] = ACTIONS(2581), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_break] = ACTIONS(2581), - [anon_sym_continue] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2581), - [anon_sym_loop] = ACTIONS(2581), - [anon_sym_while] = ACTIONS(2581), - [anon_sym_do] = ACTIONS(2581), - [anon_sym_if] = ACTIONS(2581), - [anon_sym_match] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2581), - [anon_sym_DOT_DOT] = ACTIONS(2581), - [anon_sym_try] = ACTIONS(2581), - [anon_sym_return] = ACTIONS(2581), - [anon_sym_source] = ACTIONS(2581), - [anon_sym_source_DASHenv] = ACTIONS(2581), - [anon_sym_register] = ACTIONS(2581), - [anon_sym_hide] = ACTIONS(2581), - [anon_sym_hide_DASHenv] = ACTIONS(2581), - [anon_sym_overlay] = ACTIONS(2581), - [anon_sym_as] = ACTIONS(2581), - [anon_sym_where] = ACTIONS(2581), - [anon_sym_not] = ACTIONS(2581), - [anon_sym_LPAREN2] = ACTIONS(2583), - [anon_sym_DOT_DOT2] = ACTIONS(2581), - [anon_sym_DOT] = ACTIONS(2581), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2581), - [anon_sym_DOT_DOT_LT] = ACTIONS(2581), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2583), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2583), - [aux_sym__immediate_decimal_token2] = ACTIONS(2642), - [anon_sym_null] = ACTIONS(2581), - [anon_sym_true] = ACTIONS(2581), - [anon_sym_false] = ACTIONS(2581), - [aux_sym__val_number_decimal_token1] = ACTIONS(2581), - [aux_sym__val_number_decimal_token2] = ACTIONS(2581), - [anon_sym_DOT2] = ACTIONS(2581), - [aux_sym__val_number_decimal_token3] = ACTIONS(2581), - [aux_sym__val_number_token1] = ACTIONS(2581), - [aux_sym__val_number_token2] = ACTIONS(2581), - [aux_sym__val_number_token3] = ACTIONS(2581), - [aux_sym__val_number_token4] = ACTIONS(2581), - [aux_sym__val_number_token5] = ACTIONS(2581), - [aux_sym__val_number_token6] = ACTIONS(2581), - [anon_sym_0b] = ACTIONS(2581), - [anon_sym_0o] = ACTIONS(2581), - [anon_sym_0x] = ACTIONS(2581), - [sym_val_date] = ACTIONS(2581), - [anon_sym_DQUOTE] = ACTIONS(2581), - [sym__str_single_quotes] = ACTIONS(2581), - [sym__str_back_ticks] = ACTIONS(2581), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2581), - [anon_sym_CARET] = ACTIONS(2581), - [aux_sym_unquoted_token2] = ACTIONS(2581), + [1434] = { + [sym_comment] = STATE(1434), + [anon_sym_LBRACK] = ACTIONS(1072), + [anon_sym_COMMA] = ACTIONS(1072), + [anon_sym_RBRACK] = ACTIONS(1072), + [anon_sym_LPAREN] = ACTIONS(1072), + [anon_sym_DOLLAR] = ACTIONS(1072), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_DASH_DASH] = ACTIONS(1072), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_in] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_DOT_DOT] = ACTIONS(1072), + [anon_sym_STAR] = ACTIONS(1076), + [anon_sym_STAR_STAR] = ACTIONS(1076), + [anon_sym_PLUS_PLUS] = ACTIONS(1076), + [anon_sym_SLASH] = ACTIONS(1076), + [anon_sym_mod] = ACTIONS(1076), + [anon_sym_SLASH_SLASH] = ACTIONS(1076), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_bit_DASHshl] = ACTIONS(1076), + [anon_sym_bit_DASHshr] = ACTIONS(1076), + [anon_sym_EQ_EQ] = ACTIONS(1076), + [anon_sym_BANG_EQ] = ACTIONS(1076), + [anon_sym_LT2] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1076), + [anon_sym_GT_EQ] = ACTIONS(1076), + [anon_sym_not_DASHin] = ACTIONS(1076), + [anon_sym_starts_DASHwith] = ACTIONS(1076), + [anon_sym_ends_DASHwith] = ACTIONS(1076), + [anon_sym_EQ_TILDE] = ACTIONS(1076), + [anon_sym_BANG_TILDE] = ACTIONS(1076), + [anon_sym_bit_DASHand] = ACTIONS(1076), + [anon_sym_bit_DASHxor] = ACTIONS(1076), + [anon_sym_bit_DASHor] = ACTIONS(1076), + [anon_sym_and] = ACTIONS(1076), + [anon_sym_xor] = ACTIONS(1076), + [anon_sym_or] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1072), + [anon_sym_DOT_DOT_LT] = ACTIONS(1072), + [anon_sym_null] = ACTIONS(1072), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [aux_sym__val_number_decimal_token1] = ACTIONS(1072), + [aux_sym__val_number_decimal_token2] = ACTIONS(1072), + [anon_sym_DOT2] = ACTIONS(1072), + [aux_sym__val_number_decimal_token3] = ACTIONS(1072), + [aux_sym__val_number_token1] = ACTIONS(1072), + [aux_sym__val_number_token2] = ACTIONS(1072), + [aux_sym__val_number_token3] = ACTIONS(1072), + [aux_sym__val_number_token4] = ACTIONS(1072), + [aux_sym__val_number_token5] = ACTIONS(1072), + [aux_sym__val_number_token6] = ACTIONS(1072), + [anon_sym_0b] = ACTIONS(1072), + [anon_sym_0o] = ACTIONS(1072), + [anon_sym_0x] = ACTIONS(1072), + [sym_val_date] = ACTIONS(1072), + [anon_sym_DQUOTE] = ACTIONS(1072), + [sym__str_single_quotes] = ACTIONS(1072), + [sym__str_back_ticks] = ACTIONS(1072), + [sym__entry_separator] = ACTIONS(1074), + [anon_sym_err_GT] = ACTIONS(1072), + [anon_sym_out_GT] = ACTIONS(1072), + [anon_sym_e_GT] = ACTIONS(1072), + [anon_sym_o_GT] = ACTIONS(1072), + [anon_sym_err_PLUSout_GT] = ACTIONS(1072), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1072), + [anon_sym_o_PLUSe_GT] = ACTIONS(1072), + [anon_sym_e_PLUSo_GT] = ACTIONS(1072), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1072), [anon_sym_POUND] = ACTIONS(113), }, - [1219] = { - [sym_expr_parenthesized] = STATE(7947), - [sym_val_range] = STATE(8752), - [sym__val_range] = STATE(10586), - [sym__val_range_with_end] = STATE(10490), - [sym__value] = STATE(8752), - [sym_val_nothing] = STATE(5948), - [sym_val_bool] = STATE(8170), - [sym_val_variable] = STATE(5150), - [sym__var] = STATE(4594), - [sym_val_number] = STATE(5948), - [sym__val_number_decimal] = STATE(6965), - [sym__val_number] = STATE(5814), - [sym_val_duration] = STATE(5948), - [sym_val_filesize] = STATE(5948), - [sym_val_binary] = STATE(5948), - [sym_val_string] = STATE(5948), - [sym__str_double_quotes] = STATE(5661), - [sym_val_interpolated] = STATE(5948), - [sym__inter_single_quotes] = STATE(5778), - [sym__inter_double_quotes] = STATE(5857), - [sym_val_list] = STATE(5948), - [sym_val_record] = STATE(5948), - [sym_val_table] = STATE(5948), - [sym_val_closure] = STATE(5948), - [sym__cmd_arg] = STATE(8640), - [sym_redirection] = STATE(8790), - [sym__flag] = STATE(8814), - [sym_short_flag] = STATE(8759), - [sym_long_flag] = STATE(8759), - [sym_long_flag_equals_value] = STATE(8753), - [sym_long_flag_value] = STATE(8643), - [sym_unquoted] = STATE(8253), - [sym__unquoted_with_expr] = STATE(8568), - [sym__unquoted_anonymous_prefix] = STATE(10293), - [sym_comment] = STATE(1219), - [anon_sym_LBRACK] = ACTIONS(3528), - [anon_sym_LPAREN] = ACTIONS(3530), - [anon_sym_DOLLAR] = ACTIONS(1822), - [anon_sym_DASH_DASH] = ACTIONS(3532), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_DOT_DOT] = ACTIONS(1830), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3536), - [anon_sym_DOT_DOT_LT] = ACTIONS(3536), - [anon_sym_null] = ACTIONS(3538), - [anon_sym_true] = ACTIONS(3540), - [anon_sym_false] = ACTIONS(3540), - [aux_sym__val_number_decimal_token1] = ACTIONS(1838), - [aux_sym__val_number_decimal_token2] = ACTIONS(3542), - [anon_sym_DOT2] = ACTIONS(1840), - [aux_sym__val_number_decimal_token3] = ACTIONS(3544), - [aux_sym__val_number_token1] = ACTIONS(3546), - [aux_sym__val_number_token2] = ACTIONS(3546), - [aux_sym__val_number_token3] = ACTIONS(3546), - [aux_sym__val_number_token4] = ACTIONS(3548), - [aux_sym__val_number_token5] = ACTIONS(3548), - [aux_sym__val_number_token6] = ACTIONS(3548), - [anon_sym_0b] = ACTIONS(1848), - [anon_sym_0o] = ACTIONS(1850), - [anon_sym_0x] = ACTIONS(1850), - [sym_val_date] = ACTIONS(3550), - [anon_sym_DQUOTE] = ACTIONS(3552), - [sym__str_single_quotes] = ACTIONS(3554), - [sym__str_back_ticks] = ACTIONS(3554), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3558), - [anon_sym_err_GT] = ACTIONS(3560), - [anon_sym_out_GT] = ACTIONS(3560), - [anon_sym_e_GT] = ACTIONS(3560), - [anon_sym_o_GT] = ACTIONS(3560), - [anon_sym_err_PLUSout_GT] = ACTIONS(3560), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3560), - [anon_sym_o_PLUSe_GT] = ACTIONS(3560), - [anon_sym_e_PLUSo_GT] = ACTIONS(3560), - [aux_sym_unquoted_token1] = ACTIONS(1866), - [anon_sym_POUND] = ACTIONS(3), - }, - [1220] = { - [sym_comment] = STATE(1220), - [anon_sym_LBRACK] = ACTIONS(911), - [anon_sym_COMMA] = ACTIONS(911), - [anon_sym_RBRACK] = ACTIONS(911), - [anon_sym_LPAREN] = ACTIONS(911), - [anon_sym_DOLLAR] = ACTIONS(911), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(911), - [anon_sym_DOT_DOT] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(911), - [anon_sym_PLUS_PLUS] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(911), - [anon_sym_SLASH_SLASH] = ACTIONS(911), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(911), - [anon_sym_bit_DASHshr] = ACTIONS(911), - [anon_sym_EQ_EQ] = ACTIONS(911), - [anon_sym_BANG_EQ] = ACTIONS(911), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(911), - [anon_sym_GT_EQ] = ACTIONS(911), - [anon_sym_not_DASHin] = ACTIONS(911), - [anon_sym_starts_DASHwith] = ACTIONS(911), - [anon_sym_ends_DASHwith] = ACTIONS(911), - [anon_sym_EQ_TILDE] = ACTIONS(911), - [anon_sym_BANG_TILDE] = ACTIONS(911), - [anon_sym_bit_DASHand] = ACTIONS(911), - [anon_sym_bit_DASHxor] = ACTIONS(911), - [anon_sym_bit_DASHor] = ACTIONS(911), - [anon_sym_and] = ACTIONS(911), - [anon_sym_xor] = ACTIONS(911), - [anon_sym_or] = ACTIONS(911), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [anon_sym_null] = ACTIONS(911), - [anon_sym_true] = ACTIONS(911), - [anon_sym_false] = ACTIONS(911), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(911), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(911), - [aux_sym__val_number_token1] = ACTIONS(911), - [aux_sym__val_number_token2] = ACTIONS(911), - [aux_sym__val_number_token3] = ACTIONS(911), - [aux_sym__val_number_token4] = ACTIONS(911), - [aux_sym__val_number_token5] = ACTIONS(911), - [aux_sym__val_number_token6] = ACTIONS(911), - [anon_sym_0b] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(911), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(911), - [anon_sym_DQUOTE] = ACTIONS(911), - [sym__str_single_quotes] = ACTIONS(911), - [sym__str_back_ticks] = ACTIONS(911), - [anon_sym_err_GT] = ACTIONS(911), - [anon_sym_out_GT] = ACTIONS(911), - [anon_sym_e_GT] = ACTIONS(911), - [anon_sym_o_GT] = ACTIONS(911), - [anon_sym_err_PLUSout_GT] = ACTIONS(911), - [anon_sym_out_PLUSerr_GT] = ACTIONS(911), - [anon_sym_o_PLUSe_GT] = ACTIONS(911), - [anon_sym_e_PLUSo_GT] = ACTIONS(911), - [aux_sym_unquoted_token5] = ACTIONS(909), - [aux_sym__unquoted_in_list_token1] = ACTIONS(909), - [anon_sym_POUND] = ACTIONS(3), - }, - [1221] = { - [sym_cell_path] = STATE(1387), - [sym_path] = STATE(1223), - [sym_comment] = STATE(1221), - [anon_sym_LBRACK] = ACTIONS(1010), - [anon_sym_COMMA] = ACTIONS(1010), - [anon_sym_RBRACK] = ACTIONS(1010), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1010), - [anon_sym_DASH_DASH] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_in] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_DOT_DOT] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1010), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_SLASH] = ACTIONS(1010), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT2] = ACTIONS(1010), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT_EQ] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_DOT_DOT2] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(3263), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT] = ACTIONS(1010), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), - [anon_sym_null] = ACTIONS(1010), - [anon_sym_true] = ACTIONS(1010), - [anon_sym_false] = ACTIONS(1010), - [aux_sym__val_number_decimal_token1] = ACTIONS(1010), - [aux_sym__val_number_decimal_token2] = ACTIONS(1010), - [anon_sym_DOT2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = 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(1010), - [aux_sym__val_number_token5] = ACTIONS(1010), - [aux_sym__val_number_token6] = ACTIONS(1010), - [anon_sym_0b] = ACTIONS(1010), - [anon_sym_0o] = ACTIONS(1010), - [anon_sym_0x] = ACTIONS(1010), - [sym_val_date] = ACTIONS(1010), - [anon_sym_DQUOTE] = ACTIONS(1010), - [sym__str_single_quotes] = ACTIONS(1010), - [sym__str_back_ticks] = ACTIONS(1010), - [sym__entry_separator] = ACTIONS(1012), - [anon_sym_err_GT] = ACTIONS(1010), - [anon_sym_out_GT] = ACTIONS(1010), - [anon_sym_e_GT] = ACTIONS(1010), - [anon_sym_o_GT] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT] = ACTIONS(1010), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1010), + [1435] = { + [sym_comment] = STATE(1435), + [anon_sym_export] = ACTIONS(1265), + [anon_sym_alias] = ACTIONS(1265), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_let_DASHenv] = ACTIONS(1265), + [anon_sym_mut] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_SEMI] = ACTIONS(1265), + [sym_cmd_identifier] = ACTIONS(1265), + [anon_sym_LF] = ACTIONS(1267), + [anon_sym_def] = ACTIONS(1265), + [anon_sym_export_DASHenv] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_module] = ACTIONS(1265), + [anon_sym_use] = ACTIONS(1265), + [anon_sym_LBRACK] = ACTIONS(1265), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_RPAREN] = ACTIONS(1265), + [anon_sym_DOLLAR] = ACTIONS(1265), + [anon_sym_error] = ACTIONS(1265), + [anon_sym_DASH_DASH] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1265), + [anon_sym_break] = ACTIONS(1265), + [anon_sym_continue] = ACTIONS(1265), + [anon_sym_for] = ACTIONS(1265), + [anon_sym_loop] = ACTIONS(1265), + [anon_sym_while] = ACTIONS(1265), + [anon_sym_do] = ACTIONS(1265), + [anon_sym_if] = ACTIONS(1265), + [anon_sym_match] = ACTIONS(1265), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_RBRACE] = ACTIONS(1265), + [anon_sym_DOT_DOT] = ACTIONS(1265), + [anon_sym_try] = ACTIONS(1265), + [anon_sym_return] = ACTIONS(1265), + [anon_sym_source] = ACTIONS(1265), + [anon_sym_source_DASHenv] = ACTIONS(1265), + [anon_sym_register] = ACTIONS(1265), + [anon_sym_hide] = ACTIONS(1265), + [anon_sym_hide_DASHenv] = ACTIONS(1265), + [anon_sym_overlay] = ACTIONS(1265), + [anon_sym_as] = ACTIONS(1265), + [anon_sym_where] = ACTIONS(1265), + [anon_sym_not] = ACTIONS(1265), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1265), + [anon_sym_DOT_DOT_LT] = ACTIONS(1265), + [anon_sym_null] = ACTIONS(1265), + [anon_sym_true] = ACTIONS(1265), + [anon_sym_false] = ACTIONS(1265), + [aux_sym__val_number_decimal_token1] = ACTIONS(1265), + [aux_sym__val_number_decimal_token2] = ACTIONS(1265), + [anon_sym_DOT2] = ACTIONS(1265), + [aux_sym__val_number_decimal_token3] = ACTIONS(1265), + [aux_sym__val_number_token1] = ACTIONS(1265), + [aux_sym__val_number_token2] = ACTIONS(1265), + [aux_sym__val_number_token3] = ACTIONS(1265), + [aux_sym__val_number_token4] = ACTIONS(1265), + [aux_sym__val_number_token5] = ACTIONS(1265), + [aux_sym__val_number_token6] = ACTIONS(1265), + [anon_sym_0b] = ACTIONS(1265), + [anon_sym_0o] = ACTIONS(1265), + [anon_sym_0x] = ACTIONS(1265), + [sym_val_date] = ACTIONS(1265), + [anon_sym_DQUOTE] = ACTIONS(1265), + [sym__str_single_quotes] = ACTIONS(1265), + [sym__str_back_ticks] = ACTIONS(1265), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1265), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(1265), [anon_sym_POUND] = ACTIONS(113), }, - [1222] = { - [sym_comment] = STATE(1222), - [ts_builtin_sym_end] = ACTIONS(2439), - [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), - [anon_sym_SEMI] = ACTIONS(2437), - [sym_cmd_identifier] = ACTIONS(2437), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_DASH_DASH] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_as] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_not] = ACTIONS(2437), - [anon_sym_LPAREN2] = ACTIONS(2439), - [anon_sym_DOT_DOT2] = ACTIONS(2437), - [anon_sym_DOT] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2439), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2439), - [aux_sym__immediate_decimal_token2] = ACTIONS(2624), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [anon_sym_DOT2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2437), - [anon_sym_0o] = ACTIONS(2437), - [anon_sym_0x] = ACTIONS(2437), - [sym_val_date] = 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_CARET] = ACTIONS(2437), - [aux_sym_unquoted_token2] = ACTIONS(2437), + [1436] = { + [sym_comment] = STATE(1436), + [anon_sym_export] = ACTIONS(1265), + [anon_sym_alias] = ACTIONS(1265), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_let_DASHenv] = ACTIONS(1265), + [anon_sym_mut] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_SEMI] = ACTIONS(1265), + [sym_cmd_identifier] = ACTIONS(1265), + [anon_sym_LF] = ACTIONS(1267), + [anon_sym_def] = ACTIONS(1265), + [anon_sym_export_DASHenv] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_module] = ACTIONS(1265), + [anon_sym_use] = ACTIONS(1265), + [anon_sym_LBRACK] = ACTIONS(1265), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_RPAREN] = ACTIONS(1265), + [anon_sym_DOLLAR] = ACTIONS(1265), + [anon_sym_error] = ACTIONS(1265), + [anon_sym_DASH_DASH] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1265), + [anon_sym_break] = ACTIONS(1265), + [anon_sym_continue] = ACTIONS(1265), + [anon_sym_for] = ACTIONS(1265), + [anon_sym_loop] = ACTIONS(1265), + [anon_sym_while] = ACTIONS(1265), + [anon_sym_do] = ACTIONS(1265), + [anon_sym_if] = ACTIONS(1265), + [anon_sym_match] = ACTIONS(1265), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_RBRACE] = ACTIONS(1265), + [anon_sym_DOT_DOT] = ACTIONS(1265), + [anon_sym_try] = ACTIONS(1265), + [anon_sym_return] = ACTIONS(1265), + [anon_sym_source] = ACTIONS(1265), + [anon_sym_source_DASHenv] = ACTIONS(1265), + [anon_sym_register] = ACTIONS(1265), + [anon_sym_hide] = ACTIONS(1265), + [anon_sym_hide_DASHenv] = ACTIONS(1265), + [anon_sym_overlay] = ACTIONS(1265), + [anon_sym_as] = ACTIONS(1265), + [anon_sym_where] = ACTIONS(1265), + [anon_sym_not] = ACTIONS(1265), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1265), + [anon_sym_DOT_DOT_LT] = ACTIONS(1265), + [anon_sym_null] = ACTIONS(1265), + [anon_sym_true] = ACTIONS(1265), + [anon_sym_false] = ACTIONS(1265), + [aux_sym__val_number_decimal_token1] = ACTIONS(1265), + [aux_sym__val_number_decimal_token2] = ACTIONS(1265), + [anon_sym_DOT2] = ACTIONS(1265), + [aux_sym__val_number_decimal_token3] = ACTIONS(1265), + [aux_sym__val_number_token1] = ACTIONS(1265), + [aux_sym__val_number_token2] = ACTIONS(1265), + [aux_sym__val_number_token3] = ACTIONS(1265), + [aux_sym__val_number_token4] = ACTIONS(1265), + [aux_sym__val_number_token5] = ACTIONS(1265), + [aux_sym__val_number_token6] = ACTIONS(1265), + [anon_sym_0b] = ACTIONS(1265), + [anon_sym_0o] = ACTIONS(1265), + [anon_sym_0x] = ACTIONS(1265), + [sym_val_date] = ACTIONS(1265), + [anon_sym_DQUOTE] = ACTIONS(1265), + [sym__str_single_quotes] = ACTIONS(1265), + [sym__str_back_ticks] = ACTIONS(1265), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1265), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(1265), [anon_sym_POUND] = ACTIONS(113), }, - [1223] = { - [sym_path] = STATE(1339), - [sym_comment] = STATE(1223), - [aux_sym_cell_path_repeat1] = STATE(1225), - [anon_sym_LBRACK] = ACTIONS(987), - [anon_sym_COMMA] = ACTIONS(987), - [anon_sym_RBRACK] = ACTIONS(987), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_DOLLAR] = ACTIONS(987), - [anon_sym_GT] = ACTIONS(987), - [anon_sym_DASH_DASH] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_in] = ACTIONS(987), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_DOT_DOT] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(987), - [anon_sym_STAR_STAR] = ACTIONS(987), - [anon_sym_PLUS_PLUS] = ACTIONS(987), - [anon_sym_SLASH] = ACTIONS(987), - [anon_sym_mod] = ACTIONS(987), - [anon_sym_SLASH_SLASH] = ACTIONS(987), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_bit_DASHshl] = ACTIONS(987), - [anon_sym_bit_DASHshr] = ACTIONS(987), - [anon_sym_EQ_EQ] = ACTIONS(987), - [anon_sym_BANG_EQ] = ACTIONS(987), - [anon_sym_LT2] = ACTIONS(987), - [anon_sym_LT_EQ] = ACTIONS(987), - [anon_sym_GT_EQ] = ACTIONS(987), - [anon_sym_not_DASHin] = ACTIONS(987), - [anon_sym_starts_DASHwith] = ACTIONS(987), - [anon_sym_ends_DASHwith] = ACTIONS(987), - [anon_sym_EQ_TILDE] = ACTIONS(987), - [anon_sym_BANG_TILDE] = ACTIONS(987), - [anon_sym_bit_DASHand] = ACTIONS(987), - [anon_sym_bit_DASHxor] = ACTIONS(987), - [anon_sym_bit_DASHor] = ACTIONS(987), - [anon_sym_and] = ACTIONS(987), - [anon_sym_xor] = ACTIONS(987), - [anon_sym_or] = ACTIONS(987), - [anon_sym_DOT_DOT2] = ACTIONS(987), - [anon_sym_DOT] = ACTIONS(3263), - [anon_sym_DOT_DOT_EQ] = ACTIONS(987), - [anon_sym_DOT_DOT_LT] = ACTIONS(987), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(989), - [anon_sym_DOT_DOT_LT2] = ACTIONS(989), - [anon_sym_null] = ACTIONS(987), - [anon_sym_true] = ACTIONS(987), - [anon_sym_false] = ACTIONS(987), - [aux_sym__val_number_decimal_token1] = ACTIONS(987), - [aux_sym__val_number_decimal_token2] = ACTIONS(987), - [anon_sym_DOT2] = ACTIONS(987), - [aux_sym__val_number_decimal_token3] = ACTIONS(987), - [aux_sym__val_number_token1] = ACTIONS(987), - [aux_sym__val_number_token2] = ACTIONS(987), - [aux_sym__val_number_token3] = ACTIONS(987), - [aux_sym__val_number_token4] = ACTIONS(987), - [aux_sym__val_number_token5] = ACTIONS(987), - [aux_sym__val_number_token6] = ACTIONS(987), - [anon_sym_0b] = ACTIONS(987), - [anon_sym_0o] = ACTIONS(987), - [anon_sym_0x] = ACTIONS(987), - [sym_val_date] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(987), - [sym__str_single_quotes] = ACTIONS(987), - [sym__str_back_ticks] = ACTIONS(987), - [sym__entry_separator] = ACTIONS(989), - [anon_sym_err_GT] = ACTIONS(987), - [anon_sym_out_GT] = ACTIONS(987), - [anon_sym_e_GT] = ACTIONS(987), - [anon_sym_o_GT] = ACTIONS(987), - [anon_sym_err_PLUSout_GT] = ACTIONS(987), - [anon_sym_out_PLUSerr_GT] = ACTIONS(987), - [anon_sym_o_PLUSe_GT] = ACTIONS(987), - [anon_sym_e_PLUSo_GT] = ACTIONS(987), - [aux_sym__unquoted_in_list_token1] = ACTIONS(987), + [1437] = { + [sym_comment] = STATE(1437), + [ts_builtin_sym_end] = ACTIONS(1049), + [anon_sym_export] = ACTIONS(1047), + [anon_sym_alias] = ACTIONS(1047), + [anon_sym_let] = ACTIONS(1047), + [anon_sym_let_DASHenv] = ACTIONS(1047), + [anon_sym_mut] = ACTIONS(1047), + [anon_sym_const] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1047), + [sym_cmd_identifier] = ACTIONS(1047), + [anon_sym_LF] = ACTIONS(1049), + [anon_sym_def] = ACTIONS(1047), + [anon_sym_export_DASHenv] = ACTIONS(1047), + [anon_sym_extern] = ACTIONS(1047), + [anon_sym_module] = ACTIONS(1047), + [anon_sym_use] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1047), + [anon_sym_error] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_break] = ACTIONS(1047), + [anon_sym_continue] = ACTIONS(1047), + [anon_sym_for] = ACTIONS(1047), + [anon_sym_loop] = ACTIONS(1047), + [anon_sym_while] = ACTIONS(1047), + [anon_sym_do] = ACTIONS(1047), + [anon_sym_if] = ACTIONS(1047), + [anon_sym_match] = ACTIONS(1047), + [anon_sym_LBRACE] = ACTIONS(1047), + [anon_sym_DOT_DOT] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1047), + [anon_sym_return] = ACTIONS(1047), + [anon_sym_source] = ACTIONS(1047), + [anon_sym_source_DASHenv] = ACTIONS(1047), + [anon_sym_register] = ACTIONS(1047), + [anon_sym_hide] = ACTIONS(1047), + [anon_sym_hide_DASHenv] = ACTIONS(1047), + [anon_sym_overlay] = ACTIONS(1047), + [anon_sym_as] = ACTIONS(1047), + [anon_sym_where] = ACTIONS(1047), + [anon_sym_not] = ACTIONS(1047), + [anon_sym_DOT] = ACTIONS(1047), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1047), + [anon_sym_DOT_DOT_LT] = ACTIONS(1047), + [anon_sym_null] = ACTIONS(1047), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [aux_sym__val_number_decimal_token1] = ACTIONS(1047), + [aux_sym__val_number_decimal_token2] = ACTIONS(1047), + [anon_sym_DOT2] = ACTIONS(1047), + [aux_sym__val_number_decimal_token3] = ACTIONS(1047), + [aux_sym__val_number_token1] = ACTIONS(1047), + [aux_sym__val_number_token2] = ACTIONS(1047), + [aux_sym__val_number_token3] = ACTIONS(1047), + [aux_sym__val_number_token4] = ACTIONS(1047), + [aux_sym__val_number_token5] = ACTIONS(1047), + [aux_sym__val_number_token6] = ACTIONS(1047), + [anon_sym_0b] = ACTIONS(1047), + [anon_sym_0o] = ACTIONS(1047), + [anon_sym_0x] = ACTIONS(1047), + [sym_val_date] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1047), + [sym__str_single_quotes] = ACTIONS(1047), + [sym__str_back_ticks] = ACTIONS(1047), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1047), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1047), + [anon_sym_CARET] = ACTIONS(1047), [anon_sym_POUND] = ACTIONS(113), }, - [1224] = { - [sym_expr_parenthesized] = STATE(9276), - [sym_val_range] = STATE(4178), - [sym__val_range] = STATE(10607), - [sym__val_range_with_end] = STATE(10575), - [sym__value] = STATE(4178), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(9537), - [sym_val_variable] = STATE(5789), - [sym__var] = STATE(5205), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(7461), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(6614), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym__cmd_arg] = STATE(4281), - [sym_redirection] = STATE(4179), - [sym__flag] = STATE(4182), - [sym_short_flag] = STATE(4206), - [sym_long_flag] = STATE(4206), - [sym_long_flag_equals_value] = STATE(4310), - [sym_long_flag_value] = STATE(4282), - [sym_unquoted] = STATE(3984), - [sym__unquoted_with_expr] = STATE(4184), - [sym__unquoted_anonymous_prefix] = STATE(10337), - [sym_comment] = STATE(1224), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_LPAREN] = ACTIONS(1940), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(3562), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3564), - [anon_sym_DOT_DOT_LT] = ACTIONS(3564), - [anon_sym_null] = ACTIONS(3566), - [anon_sym_true] = ACTIONS(3568), - [anon_sym_false] = ACTIONS(3568), - [aux_sym__val_number_decimal_token1] = ACTIONS(3570), - [aux_sym__val_number_decimal_token2] = ACTIONS(3572), - [anon_sym_DOT2] = ACTIONS(3574), - [aux_sym__val_number_decimal_token3] = ACTIONS(3576), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(3578), - [aux_sym__val_number_token5] = ACTIONS(3578), - [aux_sym__val_number_token6] = ACTIONS(3578), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(3580), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(3582), - [anon_sym_out_GT] = ACTIONS(3582), - [anon_sym_e_GT] = ACTIONS(3582), - [anon_sym_o_GT] = ACTIONS(3582), - [anon_sym_err_PLUSout_GT] = ACTIONS(3582), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3582), - [anon_sym_o_PLUSe_GT] = ACTIONS(3582), - [anon_sym_e_PLUSo_GT] = ACTIONS(3582), - [aux_sym_unquoted_token1] = ACTIONS(3584), - [anon_sym_POUND] = ACTIONS(3), - }, - [1225] = { - [sym_path] = STATE(1339), - [sym_comment] = STATE(1225), - [aux_sym_cell_path_repeat1] = STATE(1162), - [anon_sym_LBRACK] = ACTIONS(1006), - [anon_sym_COMMA] = ACTIONS(1006), - [anon_sym_RBRACK] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_in] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_STAR_STAR] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_mod] = ACTIONS(1006), - [anon_sym_SLASH_SLASH] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_bit_DASHshl] = ACTIONS(1006), - [anon_sym_bit_DASHshr] = ACTIONS(1006), - [anon_sym_EQ_EQ] = ACTIONS(1006), - [anon_sym_BANG_EQ] = ACTIONS(1006), - [anon_sym_LT2] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1006), - [anon_sym_GT_EQ] = ACTIONS(1006), - [anon_sym_not_DASHin] = ACTIONS(1006), - [anon_sym_starts_DASHwith] = ACTIONS(1006), - [anon_sym_ends_DASHwith] = ACTIONS(1006), - [anon_sym_EQ_TILDE] = ACTIONS(1006), - [anon_sym_BANG_TILDE] = ACTIONS(1006), - [anon_sym_bit_DASHand] = ACTIONS(1006), - [anon_sym_bit_DASHxor] = ACTIONS(1006), - [anon_sym_bit_DASHor] = ACTIONS(1006), - [anon_sym_and] = ACTIONS(1006), - [anon_sym_xor] = ACTIONS(1006), - [anon_sym_or] = ACTIONS(1006), - [anon_sym_DOT_DOT2] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(3263), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), - [anon_sym_null] = ACTIONS(1006), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1006), - [anon_sym_DOT2] = ACTIONS(1006), - [aux_sym__val_number_decimal_token3] = ACTIONS(1006), - [aux_sym__val_number_token1] = ACTIONS(1006), - [aux_sym__val_number_token2] = ACTIONS(1006), - [aux_sym__val_number_token3] = ACTIONS(1006), - [aux_sym__val_number_token4] = ACTIONS(1006), - [aux_sym__val_number_token5] = ACTIONS(1006), - [aux_sym__val_number_token6] = ACTIONS(1006), - [anon_sym_0b] = ACTIONS(1006), - [anon_sym_0o] = ACTIONS(1006), - [anon_sym_0x] = ACTIONS(1006), - [sym_val_date] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym__str_single_quotes] = ACTIONS(1006), - [sym__str_back_ticks] = ACTIONS(1006), - [sym__entry_separator] = ACTIONS(1008), - [anon_sym_err_GT] = ACTIONS(1006), - [anon_sym_out_GT] = ACTIONS(1006), - [anon_sym_e_GT] = ACTIONS(1006), - [anon_sym_o_GT] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT] = ACTIONS(1006), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1006), + [1438] = { + [sym_cell_path] = STATE(2514), + [sym_path] = STATE(1303), + [sym_comment] = STATE(1438), + [ts_builtin_sym_end] = ACTIONS(1004), + [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), + [anon_sym_SEMI] = ACTIONS(1002), + [sym_cmd_identifier] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [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_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT] = ACTIONS(4719), + [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), + [anon_sym_DOT2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = 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(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_CARET] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(113), }, - [1226] = { - [sym_comment] = STATE(1226), - [anon_sym_LBRACK] = ACTIONS(919), - [anon_sym_COMMA] = ACTIONS(919), - [anon_sym_RBRACK] = ACTIONS(919), - [anon_sym_LPAREN] = ACTIONS(919), - [anon_sym_DOLLAR] = ACTIONS(919), - [anon_sym_GT] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(919), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_in] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(919), - [anon_sym_DOT_DOT] = ACTIONS(917), - [anon_sym_STAR] = ACTIONS(917), - [anon_sym_STAR_STAR] = ACTIONS(919), - [anon_sym_PLUS_PLUS] = ACTIONS(919), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_mod] = ACTIONS(919), - [anon_sym_SLASH_SLASH] = ACTIONS(919), - [anon_sym_PLUS] = ACTIONS(917), - [anon_sym_bit_DASHshl] = ACTIONS(919), - [anon_sym_bit_DASHshr] = ACTIONS(919), - [anon_sym_EQ_EQ] = ACTIONS(919), - [anon_sym_BANG_EQ] = ACTIONS(919), - [anon_sym_LT2] = ACTIONS(917), - [anon_sym_LT_EQ] = ACTIONS(919), - [anon_sym_GT_EQ] = ACTIONS(919), - [anon_sym_not_DASHin] = ACTIONS(919), - [anon_sym_starts_DASHwith] = ACTIONS(919), - [anon_sym_ends_DASHwith] = ACTIONS(919), - [anon_sym_EQ_TILDE] = ACTIONS(919), - [anon_sym_BANG_TILDE] = ACTIONS(919), - [anon_sym_bit_DASHand] = ACTIONS(919), - [anon_sym_bit_DASHxor] = ACTIONS(919), - [anon_sym_bit_DASHor] = ACTIONS(919), - [anon_sym_and] = ACTIONS(919), - [anon_sym_xor] = ACTIONS(919), - [anon_sym_or] = ACTIONS(919), - [anon_sym_DOT_DOT2] = ACTIONS(917), - [anon_sym_DOT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ] = ACTIONS(917), - [anon_sym_DOT_DOT_LT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(919), - [anon_sym_DOT_DOT_LT2] = ACTIONS(919), - [anon_sym_null] = ACTIONS(919), - [anon_sym_true] = ACTIONS(919), - [anon_sym_false] = ACTIONS(919), - [aux_sym__val_number_decimal_token1] = ACTIONS(917), - [aux_sym__val_number_decimal_token2] = ACTIONS(919), - [anon_sym_DOT2] = ACTIONS(917), - [aux_sym__val_number_decimal_token3] = ACTIONS(919), - [aux_sym__val_number_token1] = ACTIONS(919), - [aux_sym__val_number_token2] = ACTIONS(919), - [aux_sym__val_number_token3] = ACTIONS(919), - [aux_sym__val_number_token4] = ACTIONS(919), - [aux_sym__val_number_token5] = ACTIONS(919), - [aux_sym__val_number_token6] = ACTIONS(919), - [anon_sym_0b] = ACTIONS(917), - [sym_filesize_unit] = ACTIONS(917), - [sym_duration_unit] = ACTIONS(919), - [anon_sym_0o] = ACTIONS(917), - [anon_sym_0x] = ACTIONS(917), - [sym_val_date] = ACTIONS(919), - [anon_sym_DQUOTE] = ACTIONS(919), - [sym__str_single_quotes] = ACTIONS(919), - [sym__str_back_ticks] = ACTIONS(919), - [anon_sym_err_GT] = ACTIONS(919), - [anon_sym_out_GT] = ACTIONS(919), - [anon_sym_e_GT] = ACTIONS(919), - [anon_sym_o_GT] = ACTIONS(919), - [anon_sym_err_PLUSout_GT] = ACTIONS(919), - [anon_sym_out_PLUSerr_GT] = ACTIONS(919), - [anon_sym_o_PLUSe_GT] = ACTIONS(919), - [anon_sym_e_PLUSo_GT] = ACTIONS(919), - [aux_sym_unquoted_token5] = ACTIONS(917), - [aux_sym__unquoted_in_list_token1] = ACTIONS(917), - [anon_sym_POUND] = ACTIONS(3), - }, - [1227] = { - [sym__immediate_decimal] = STATE(9346), - [sym_comment] = STATE(1227), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_error] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_RBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_where] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_DOT] = ACTIONS(3586), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [aux_sym__immediate_decimal_token1] = ACTIONS(942), - [aux_sym__immediate_decimal_token3] = ACTIONS(942), - [aux_sym__immediate_decimal_token4] = ACTIONS(944), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [aux_sym_unquoted_token3] = ACTIONS(3588), - [aux_sym_unquoted_token5] = ACTIONS(3590), + [1439] = { + [sym_comment] = STATE(1439), + [anon_sym_export] = ACTIONS(1271), + [anon_sym_alias] = ACTIONS(1271), + [anon_sym_let] = ACTIONS(1271), + [anon_sym_let_DASHenv] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(1271), + [anon_sym_const] = ACTIONS(1271), + [anon_sym_SEMI] = ACTIONS(1271), + [sym_cmd_identifier] = ACTIONS(1271), + [anon_sym_LF] = ACTIONS(1273), + [anon_sym_def] = ACTIONS(1271), + [anon_sym_export_DASHenv] = ACTIONS(1271), + [anon_sym_extern] = ACTIONS(1271), + [anon_sym_module] = ACTIONS(1271), + [anon_sym_use] = ACTIONS(1271), + [anon_sym_LBRACK] = ACTIONS(1271), + [anon_sym_LPAREN] = ACTIONS(1271), + [anon_sym_RPAREN] = ACTIONS(1271), + [anon_sym_DOLLAR] = ACTIONS(1271), + [anon_sym_error] = ACTIONS(1271), + [anon_sym_DASH_DASH] = ACTIONS(1271), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_break] = ACTIONS(1271), + [anon_sym_continue] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1271), + [anon_sym_loop] = ACTIONS(1271), + [anon_sym_while] = ACTIONS(1271), + [anon_sym_do] = ACTIONS(1271), + [anon_sym_if] = ACTIONS(1271), + [anon_sym_match] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(1271), + [anon_sym_DOT_DOT] = ACTIONS(1271), + [anon_sym_try] = ACTIONS(1271), + [anon_sym_return] = ACTIONS(1271), + [anon_sym_source] = ACTIONS(1271), + [anon_sym_source_DASHenv] = ACTIONS(1271), + [anon_sym_register] = ACTIONS(1271), + [anon_sym_hide] = ACTIONS(1271), + [anon_sym_hide_DASHenv] = ACTIONS(1271), + [anon_sym_overlay] = ACTIONS(1271), + [anon_sym_as] = ACTIONS(1271), + [anon_sym_where] = ACTIONS(1271), + [anon_sym_not] = ACTIONS(1271), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1271), + [anon_sym_DOT_DOT_LT] = ACTIONS(1271), + [anon_sym_null] = ACTIONS(1271), + [anon_sym_true] = ACTIONS(1271), + [anon_sym_false] = ACTIONS(1271), + [aux_sym__val_number_decimal_token1] = ACTIONS(1271), + [aux_sym__val_number_decimal_token2] = ACTIONS(1271), + [anon_sym_DOT2] = ACTIONS(1271), + [aux_sym__val_number_decimal_token3] = ACTIONS(1271), + [aux_sym__val_number_token1] = ACTIONS(1271), + [aux_sym__val_number_token2] = ACTIONS(1271), + [aux_sym__val_number_token3] = ACTIONS(1271), + [aux_sym__val_number_token4] = ACTIONS(1271), + [aux_sym__val_number_token5] = ACTIONS(1271), + [aux_sym__val_number_token6] = ACTIONS(1271), + [anon_sym_0b] = ACTIONS(1271), + [anon_sym_0o] = ACTIONS(1271), + [anon_sym_0x] = ACTIONS(1271), + [sym_val_date] = ACTIONS(1271), + [anon_sym_DQUOTE] = ACTIONS(1271), + [sym__str_single_quotes] = ACTIONS(1271), + [sym__str_back_ticks] = ACTIONS(1271), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1271), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1271), + [anon_sym_CARET] = ACTIONS(1271), [anon_sym_POUND] = ACTIONS(113), }, - [1228] = { - [sym_comment] = STATE(1228), - [ts_builtin_sym_end] = ACTIONS(2549), - [anon_sym_export] = ACTIONS(2547), - [anon_sym_alias] = ACTIONS(2547), - [anon_sym_let] = ACTIONS(2547), - [anon_sym_let_DASHenv] = ACTIONS(2547), - [anon_sym_mut] = ACTIONS(2547), - [anon_sym_const] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [sym_cmd_identifier] = ACTIONS(2547), - [anon_sym_LF] = ACTIONS(2549), - [anon_sym_def] = ACTIONS(2547), - [anon_sym_export_DASHenv] = ACTIONS(2547), - [anon_sym_extern] = ACTIONS(2547), - [anon_sym_module] = ACTIONS(2547), - [anon_sym_use] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_DOLLAR] = ACTIONS(2547), - [anon_sym_error] = ACTIONS(2547), - [anon_sym_DASH_DASH] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_break] = ACTIONS(2547), - [anon_sym_continue] = ACTIONS(2547), - [anon_sym_for] = ACTIONS(2547), - [anon_sym_loop] = ACTIONS(2547), - [anon_sym_while] = ACTIONS(2547), - [anon_sym_do] = ACTIONS(2547), - [anon_sym_if] = ACTIONS(2547), - [anon_sym_match] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2547), - [anon_sym_DOT_DOT] = ACTIONS(2547), - [anon_sym_try] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2547), - [anon_sym_source] = ACTIONS(2547), - [anon_sym_source_DASHenv] = ACTIONS(2547), - [anon_sym_register] = ACTIONS(2547), - [anon_sym_hide] = ACTIONS(2547), - [anon_sym_hide_DASHenv] = ACTIONS(2547), - [anon_sym_overlay] = ACTIONS(2547), - [anon_sym_as] = ACTIONS(2547), - [anon_sym_where] = ACTIONS(2547), - [anon_sym_not] = ACTIONS(2547), - [anon_sym_LPAREN2] = ACTIONS(2549), - [anon_sym_DOT_DOT2] = ACTIONS(2547), - [anon_sym_DOT] = ACTIONS(2547), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), - [anon_sym_DOT_DOT_LT] = ACTIONS(2547), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2549), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2549), - [aux_sym__immediate_decimal_token2] = ACTIONS(3592), - [anon_sym_null] = ACTIONS(2547), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [aux_sym__val_number_decimal_token1] = ACTIONS(2547), - [aux_sym__val_number_decimal_token2] = ACTIONS(2547), - [anon_sym_DOT2] = ACTIONS(2547), - [aux_sym__val_number_decimal_token3] = ACTIONS(2547), - [aux_sym__val_number_token1] = ACTIONS(2547), - [aux_sym__val_number_token2] = ACTIONS(2547), - [aux_sym__val_number_token3] = ACTIONS(2547), - [aux_sym__val_number_token4] = ACTIONS(2547), - [aux_sym__val_number_token5] = ACTIONS(2547), - [aux_sym__val_number_token6] = ACTIONS(2547), - [anon_sym_0b] = ACTIONS(2547), - [anon_sym_0o] = ACTIONS(2547), - [anon_sym_0x] = ACTIONS(2547), - [sym_val_date] = ACTIONS(2547), - [anon_sym_DQUOTE] = ACTIONS(2547), - [sym__str_single_quotes] = ACTIONS(2547), - [sym__str_back_ticks] = ACTIONS(2547), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2547), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2547), - [aux_sym_unquoted_token2] = ACTIONS(2547), + [1440] = { + [sym__expression] = STATE(7046), + [sym_expr_unary] = STATE(5409), + [sym__expr_unary_minus] = STATE(5410), + [sym_expr_binary] = STATE(5409), + [sym__expr_binary_expression] = STATE(6366), + [sym_expr_parenthesized] = STATE(4635), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5409), + [sym_val_nothing] = STATE(5350), + [sym_val_bool] = STATE(5350), + [sym_val_variable] = STATE(4717), + [sym__var] = STATE(4193), + [sym_val_number] = STATE(5350), + [sym__val_number_decimal] = STATE(4266), + [sym__val_number] = STATE(5351), + [sym_val_duration] = STATE(5350), + [sym_val_filesize] = STATE(5350), + [sym_val_binary] = STATE(5350), + [sym_val_string] = STATE(5350), + [sym__str_double_quotes] = STATE(5502), + [sym_val_interpolated] = STATE(5350), + [sym__inter_single_quotes] = STATE(5420), + [sym__inter_double_quotes] = STATE(5421), + [sym_val_list] = STATE(5350), + [sym_val_record] = STATE(5350), + [sym_val_table] = STATE(5350), + [sym_val_closure] = STATE(5350), + [sym__flag] = STATE(7044), + [sym_short_flag] = STATE(8027), + [sym_long_flag] = STATE(8027), + [sym_long_flag_equals_value] = STATE(7909), + [sym_comment] = STATE(1440), + [anon_sym_SEMI] = ACTIONS(4871), + [anon_sym_LF] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4833), + [anon_sym_LPAREN] = ACTIONS(4835), + [anon_sym_RPAREN] = ACTIONS(4871), + [anon_sym_PIPE] = ACTIONS(4871), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_DASH_DASH] = ACTIONS(4837), + [anon_sym_DASH] = ACTIONS(4839), + [anon_sym_LBRACE] = ACTIONS(4841), + [anon_sym_RBRACE] = ACTIONS(4871), + [anon_sym_DOT_DOT] = ACTIONS(4843), + [anon_sym_not] = ACTIONS(4845), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4847), + [anon_sym_DOT_DOT_LT] = ACTIONS(4847), + [anon_sym_null] = ACTIONS(4849), + [anon_sym_true] = ACTIONS(4851), + [anon_sym_false] = ACTIONS(4851), + [aux_sym__val_number_decimal_token1] = ACTIONS(4853), + [aux_sym__val_number_decimal_token2] = ACTIONS(4853), + [anon_sym_DOT2] = ACTIONS(4855), + [aux_sym__val_number_decimal_token3] = ACTIONS(4857), + [aux_sym__val_number_token1] = ACTIONS(4859), + [aux_sym__val_number_token2] = ACTIONS(4859), + [aux_sym__val_number_token3] = ACTIONS(4859), + [aux_sym__val_number_token4] = ACTIONS(4859), + [aux_sym__val_number_token5] = ACTIONS(4859), + [aux_sym__val_number_token6] = ACTIONS(4859), + [anon_sym_0b] = ACTIONS(3080), + [anon_sym_0o] = ACTIONS(3082), + [anon_sym_0x] = ACTIONS(3082), + [sym_val_date] = ACTIONS(4861), + [anon_sym_DQUOTE] = ACTIONS(4863), + [sym__str_single_quotes] = ACTIONS(4865), + [sym__str_back_ticks] = ACTIONS(4865), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4867), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4869), [anon_sym_POUND] = ACTIONS(113), }, - [1229] = { - [sym_expr_parenthesized] = STATE(8125), - [sym_val_range] = STATE(5003), - [sym__val_range] = STATE(10591), - [sym__val_range_with_end] = STATE(10605), - [sym__value] = STATE(5003), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(8352), - [sym_val_variable] = STATE(5342), - [sym__var] = STATE(7523), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(7046), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym__cmd_arg] = STATE(5148), - [sym_redirection] = STATE(5006), - [sym__flag] = STATE(5137), - [sym_short_flag] = STATE(5044), - [sym_long_flag] = STATE(5044), - [sym_long_flag_equals_value] = STATE(5143), - [sym_long_flag_value] = STATE(5055), - [sym_unquoted] = STATE(4720), - [sym__unquoted_with_expr] = STATE(5110), - [sym__unquoted_anonymous_prefix] = STATE(10299), - [sym_comment] = STATE(1229), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(3594), - [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_DASH_DASH] = ACTIONS(3596), - [anon_sym_DASH] = ACTIONS(3067), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(3598), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3600), - [anon_sym_DOT_DOT_LT] = ACTIONS(3600), - [anon_sym_null] = ACTIONS(3602), - [anon_sym_true] = ACTIONS(3604), - [anon_sym_false] = ACTIONS(3604), - [aux_sym__val_number_decimal_token1] = ACTIONS(3606), - [aux_sym__val_number_decimal_token2] = ACTIONS(3608), - [anon_sym_DOT2] = ACTIONS(3610), - [aux_sym__val_number_decimal_token3] = ACTIONS(3612), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(3614), - [aux_sym__val_number_token5] = ACTIONS(3614), - [aux_sym__val_number_token6] = ACTIONS(3614), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(3616), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [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), - [aux_sym_unquoted_token1] = ACTIONS(3620), - [anon_sym_POUND] = ACTIONS(3), - }, - [1230] = { - [sym__command_name] = STATE(2660), - [sym_scope_pattern] = STATE(2661), - [sym_wild_card] = STATE(2662), - [sym_command_list] = STATE(2663), - [sym_val_string] = STATE(2633), - [sym__str_double_quotes] = STATE(2627), - [sym_comment] = STATE(1230), - [anon_sym_export] = ACTIONS(3622), - [anon_sym_alias] = ACTIONS(3622), - [anon_sym_let] = ACTIONS(3622), - [anon_sym_let_DASHenv] = ACTIONS(3622), - [anon_sym_mut] = ACTIONS(3622), - [anon_sym_const] = ACTIONS(3622), - [anon_sym_SEMI] = ACTIONS(3622), - [sym_cmd_identifier] = ACTIONS(3624), - [anon_sym_LF] = ACTIONS(3626), - [anon_sym_def] = ACTIONS(3622), - [anon_sym_export_DASHenv] = ACTIONS(3622), - [anon_sym_extern] = ACTIONS(3622), - [anon_sym_module] = ACTIONS(3622), - [anon_sym_use] = ACTIONS(3622), - [anon_sym_LBRACK] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(3622), - [anon_sym_RPAREN] = ACTIONS(3622), - [anon_sym_DOLLAR] = ACTIONS(3622), - [anon_sym_error] = ACTIONS(3622), - [anon_sym_DASH] = ACTIONS(3622), - [anon_sym_break] = ACTIONS(3622), - [anon_sym_continue] = ACTIONS(3622), - [anon_sym_for] = ACTIONS(3622), - [anon_sym_loop] = ACTIONS(3622), - [anon_sym_while] = ACTIONS(3622), - [anon_sym_do] = ACTIONS(3622), - [anon_sym_if] = ACTIONS(3622), - [anon_sym_match] = ACTIONS(3622), - [anon_sym_LBRACE] = ACTIONS(3622), - [anon_sym_RBRACE] = ACTIONS(3622), - [anon_sym_DOT_DOT] = ACTIONS(3622), - [anon_sym_try] = ACTIONS(3622), - [anon_sym_return] = ACTIONS(3622), - [anon_sym_source] = ACTIONS(3622), - [anon_sym_source_DASHenv] = ACTIONS(3622), - [anon_sym_register] = ACTIONS(3622), - [anon_sym_hide] = ACTIONS(3622), - [anon_sym_hide_DASHenv] = ACTIONS(3622), - [anon_sym_overlay] = ACTIONS(3622), - [anon_sym_STAR] = ACTIONS(3630), - [anon_sym_where] = ACTIONS(3622), - [anon_sym_not] = ACTIONS(3622), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3622), - [anon_sym_DOT_DOT_LT] = ACTIONS(3622), - [anon_sym_null] = ACTIONS(3622), - [anon_sym_true] = ACTIONS(3622), - [anon_sym_false] = ACTIONS(3622), - [aux_sym__val_number_decimal_token1] = ACTIONS(3622), - [aux_sym__val_number_decimal_token2] = ACTIONS(3622), - [anon_sym_DOT2] = ACTIONS(3622), - [aux_sym__val_number_decimal_token3] = ACTIONS(3622), - [aux_sym__val_number_token1] = ACTIONS(3622), - [aux_sym__val_number_token2] = ACTIONS(3622), - [aux_sym__val_number_token3] = ACTIONS(3622), - [aux_sym__val_number_token4] = ACTIONS(3622), - [aux_sym__val_number_token5] = ACTIONS(3622), - [aux_sym__val_number_token6] = ACTIONS(3622), - [anon_sym_0b] = ACTIONS(3622), - [anon_sym_0o] = ACTIONS(3622), - [anon_sym_0x] = ACTIONS(3622), - [sym_val_date] = ACTIONS(3622), - [anon_sym_DQUOTE] = ACTIONS(3632), - [sym__str_single_quotes] = ACTIONS(3634), - [sym__str_back_ticks] = ACTIONS(3634), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3622), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3622), - [anon_sym_CARET] = ACTIONS(3622), + [1441] = { + [sym_comment] = STATE(1441), + [ts_builtin_sym_end] = ACTIONS(1039), + [anon_sym_export] = ACTIONS(1037), + [anon_sym_alias] = ACTIONS(1037), + [anon_sym_let] = ACTIONS(1037), + [anon_sym_let_DASHenv] = ACTIONS(1037), + [anon_sym_mut] = ACTIONS(1037), + [anon_sym_const] = ACTIONS(1037), + [anon_sym_SEMI] = ACTIONS(1037), + [sym_cmd_identifier] = ACTIONS(1037), + [anon_sym_LF] = ACTIONS(1039), + [anon_sym_def] = ACTIONS(1037), + [anon_sym_export_DASHenv] = ACTIONS(1037), + [anon_sym_extern] = ACTIONS(1037), + [anon_sym_module] = ACTIONS(1037), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_LBRACK] = ACTIONS(1037), + [anon_sym_LPAREN] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1037), + [anon_sym_error] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_break] = ACTIONS(1037), + [anon_sym_continue] = ACTIONS(1037), + [anon_sym_for] = ACTIONS(1037), + [anon_sym_loop] = ACTIONS(1037), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_do] = ACTIONS(1037), + [anon_sym_if] = ACTIONS(1037), + [anon_sym_match] = ACTIONS(1037), + [anon_sym_LBRACE] = ACTIONS(1037), + [anon_sym_DOT_DOT] = ACTIONS(1037), + [anon_sym_try] = ACTIONS(1037), + [anon_sym_return] = ACTIONS(1037), + [anon_sym_source] = ACTIONS(1037), + [anon_sym_source_DASHenv] = ACTIONS(1037), + [anon_sym_register] = ACTIONS(1037), + [anon_sym_hide] = ACTIONS(1037), + [anon_sym_hide_DASHenv] = ACTIONS(1037), + [anon_sym_overlay] = ACTIONS(1037), + [anon_sym_as] = ACTIONS(1037), + [anon_sym_where] = ACTIONS(1037), + [anon_sym_not] = ACTIONS(1037), + [anon_sym_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1037), + [anon_sym_DOT_DOT_LT] = ACTIONS(1037), + [anon_sym_null] = ACTIONS(1037), + [anon_sym_true] = ACTIONS(1037), + [anon_sym_false] = ACTIONS(1037), + [aux_sym__val_number_decimal_token1] = ACTIONS(1037), + [aux_sym__val_number_decimal_token2] = ACTIONS(1037), + [anon_sym_DOT2] = ACTIONS(1037), + [aux_sym__val_number_decimal_token3] = ACTIONS(1037), + [aux_sym__val_number_token1] = ACTIONS(1037), + [aux_sym__val_number_token2] = ACTIONS(1037), + [aux_sym__val_number_token3] = ACTIONS(1037), + [aux_sym__val_number_token4] = ACTIONS(1037), + [aux_sym__val_number_token5] = ACTIONS(1037), + [aux_sym__val_number_token6] = ACTIONS(1037), + [anon_sym_0b] = ACTIONS(1037), + [anon_sym_0o] = ACTIONS(1037), + [anon_sym_0x] = ACTIONS(1037), + [sym_val_date] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1037), + [sym__str_single_quotes] = ACTIONS(1037), + [sym__str_back_ticks] = ACTIONS(1037), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1037), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1037), + [anon_sym_CARET] = ACTIONS(1037), [anon_sym_POUND] = ACTIONS(113), }, - [1231] = { - [sym_path] = STATE(1348), - [sym_comment] = STATE(1231), - [aux_sym_cell_path_repeat1] = STATE(1232), - [anon_sym_LBRACK] = ACTIONS(1008), - [anon_sym_COMMA] = ACTIONS(1008), - [anon_sym_LPAREN] = ACTIONS(1008), - [anon_sym_DOLLAR] = ACTIONS(1008), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_in] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1008), - [anon_sym_RBRACE] = ACTIONS(1008), - [anon_sym__] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_STAR_STAR] = ACTIONS(1008), - [anon_sym_PLUS_PLUS] = ACTIONS(1008), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_mod] = ACTIONS(1008), - [anon_sym_SLASH_SLASH] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_bit_DASHshl] = ACTIONS(1008), - [anon_sym_bit_DASHshr] = ACTIONS(1008), - [anon_sym_EQ_EQ] = ACTIONS(1008), - [anon_sym_BANG_EQ] = ACTIONS(1008), - [anon_sym_LT2] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1008), - [anon_sym_GT_EQ] = ACTIONS(1008), - [anon_sym_not_DASHin] = ACTIONS(1008), - [anon_sym_starts_DASHwith] = ACTIONS(1008), - [anon_sym_ends_DASHwith] = ACTIONS(1008), - [anon_sym_EQ_TILDE] = ACTIONS(1008), - [anon_sym_BANG_TILDE] = ACTIONS(1008), - [anon_sym_bit_DASHand] = ACTIONS(1008), - [anon_sym_bit_DASHxor] = ACTIONS(1008), - [anon_sym_bit_DASHor] = ACTIONS(1008), - [anon_sym_and] = ACTIONS(1008), - [anon_sym_xor] = ACTIONS(1008), - [anon_sym_or] = ACTIONS(1008), - [anon_sym_DOT_DOT2] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(3636), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), - [anon_sym_null] = ACTIONS(1008), - [anon_sym_true] = ACTIONS(1008), - [anon_sym_false] = ACTIONS(1008), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1008), - [anon_sym_DOT2] = ACTIONS(1006), - [aux_sym__val_number_decimal_token3] = ACTIONS(1008), - [aux_sym__val_number_token1] = ACTIONS(1008), - [aux_sym__val_number_token2] = ACTIONS(1008), - [aux_sym__val_number_token3] = ACTIONS(1008), - [aux_sym__val_number_token4] = ACTIONS(1008), - [aux_sym__val_number_token5] = ACTIONS(1008), - [aux_sym__val_number_token6] = ACTIONS(1008), - [anon_sym_0b] = ACTIONS(1006), - [anon_sym_0o] = ACTIONS(1006), - [anon_sym_0x] = ACTIONS(1006), - [sym_val_date] = ACTIONS(1008), - [anon_sym_DQUOTE] = ACTIONS(1008), - [sym__str_single_quotes] = ACTIONS(1008), - [sym__str_back_ticks] = ACTIONS(1008), - [anon_sym_err_GT] = ACTIONS(1008), - [anon_sym_out_GT] = ACTIONS(1008), - [anon_sym_e_GT] = ACTIONS(1008), - [anon_sym_o_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT] = ACTIONS(1008), - [aux_sym_unquoted_token1] = ACTIONS(1006), - [anon_sym_POUND] = ACTIONS(3), - }, - [1232] = { - [sym_path] = STATE(1348), - [sym_comment] = STATE(1232), - [aux_sym_cell_path_repeat1] = STATE(1232), - [anon_sym_LBRACK] = ACTIONS(1001), - [anon_sym_COMMA] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1001), - [anon_sym_DOLLAR] = ACTIONS(1001), - [anon_sym_GT] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_in] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1001), - [anon_sym_RBRACE] = ACTIONS(1001), - [anon_sym__] = ACTIONS(999), - [anon_sym_DOT_DOT] = ACTIONS(999), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_STAR_STAR] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(999), - [anon_sym_mod] = ACTIONS(1001), - [anon_sym_SLASH_SLASH] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_bit_DASHshl] = ACTIONS(1001), - [anon_sym_bit_DASHshr] = ACTIONS(1001), - [anon_sym_EQ_EQ] = ACTIONS(1001), - [anon_sym_BANG_EQ] = ACTIONS(1001), - [anon_sym_LT2] = ACTIONS(999), - [anon_sym_LT_EQ] = ACTIONS(1001), - [anon_sym_GT_EQ] = ACTIONS(1001), - [anon_sym_not_DASHin] = ACTIONS(1001), - [anon_sym_starts_DASHwith] = ACTIONS(1001), - [anon_sym_ends_DASHwith] = ACTIONS(1001), - [anon_sym_EQ_TILDE] = ACTIONS(1001), - [anon_sym_BANG_TILDE] = ACTIONS(1001), - [anon_sym_bit_DASHand] = ACTIONS(1001), - [anon_sym_bit_DASHxor] = ACTIONS(1001), - [anon_sym_bit_DASHor] = ACTIONS(1001), - [anon_sym_and] = ACTIONS(1001), - [anon_sym_xor] = ACTIONS(1001), - [anon_sym_or] = ACTIONS(1001), - [anon_sym_DOT_DOT2] = ACTIONS(999), - [anon_sym_DOT] = ACTIONS(3638), - [anon_sym_DOT_DOT_EQ] = ACTIONS(999), - [anon_sym_DOT_DOT_LT] = ACTIONS(999), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1001), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1001), - [anon_sym_null] = ACTIONS(1001), - [anon_sym_true] = ACTIONS(1001), - [anon_sym_false] = ACTIONS(1001), - [aux_sym__val_number_decimal_token1] = ACTIONS(999), - [aux_sym__val_number_decimal_token2] = ACTIONS(1001), - [anon_sym_DOT2] = ACTIONS(999), - [aux_sym__val_number_decimal_token3] = ACTIONS(1001), - [aux_sym__val_number_token1] = ACTIONS(1001), - [aux_sym__val_number_token2] = ACTIONS(1001), - [aux_sym__val_number_token3] = ACTIONS(1001), - [aux_sym__val_number_token4] = ACTIONS(1001), - [aux_sym__val_number_token5] = ACTIONS(1001), - [aux_sym__val_number_token6] = ACTIONS(1001), - [anon_sym_0b] = ACTIONS(999), - [anon_sym_0o] = ACTIONS(999), - [anon_sym_0x] = ACTIONS(999), - [sym_val_date] = ACTIONS(1001), - [anon_sym_DQUOTE] = ACTIONS(1001), - [sym__str_single_quotes] = ACTIONS(1001), - [sym__str_back_ticks] = ACTIONS(1001), - [anon_sym_err_GT] = ACTIONS(1001), - [anon_sym_out_GT] = ACTIONS(1001), - [anon_sym_e_GT] = ACTIONS(1001), - [anon_sym_o_GT] = ACTIONS(1001), - [anon_sym_err_PLUSout_GT] = ACTIONS(1001), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1001), - [anon_sym_o_PLUSe_GT] = ACTIONS(1001), - [anon_sym_e_PLUSo_GT] = ACTIONS(1001), - [aux_sym_unquoted_token1] = ACTIONS(999), - [anon_sym_POUND] = ACTIONS(3), - }, - [1233] = { - [sym_comment] = STATE(1233), - [anon_sym_LBRACK] = ACTIONS(925), - [anon_sym_COMMA] = ACTIONS(925), - [anon_sym_LPAREN] = ACTIONS(925), - [anon_sym_DOLLAR] = ACTIONS(925), - [anon_sym_GT] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_in] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_RBRACE] = ACTIONS(925), - [anon_sym__] = ACTIONS(923), - [anon_sym_DOT_DOT] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_STAR_STAR] = ACTIONS(925), - [anon_sym_PLUS_PLUS] = ACTIONS(925), - [anon_sym_SLASH] = ACTIONS(923), - [anon_sym_mod] = ACTIONS(925), - [anon_sym_SLASH_SLASH] = ACTIONS(925), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_bit_DASHshl] = ACTIONS(925), - [anon_sym_bit_DASHshr] = ACTIONS(925), - [anon_sym_EQ_EQ] = ACTIONS(925), - [anon_sym_BANG_EQ] = ACTIONS(925), - [anon_sym_LT2] = ACTIONS(923), - [anon_sym_LT_EQ] = ACTIONS(925), - [anon_sym_GT_EQ] = ACTIONS(925), - [anon_sym_not_DASHin] = ACTIONS(925), - [anon_sym_starts_DASHwith] = ACTIONS(925), - [anon_sym_ends_DASHwith] = ACTIONS(925), - [anon_sym_EQ_TILDE] = ACTIONS(925), - [anon_sym_BANG_TILDE] = ACTIONS(925), - [anon_sym_bit_DASHand] = ACTIONS(925), - [anon_sym_bit_DASHxor] = ACTIONS(925), - [anon_sym_bit_DASHor] = ACTIONS(925), - [anon_sym_and] = ACTIONS(925), - [anon_sym_xor] = ACTIONS(925), - [anon_sym_or] = ACTIONS(925), - [anon_sym_DOT_DOT2] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ] = ACTIONS(923), - [anon_sym_DOT_DOT_LT] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(925), - [anon_sym_DOT_DOT_LT2] = ACTIONS(925), - [aux_sym__immediate_decimal_token2] = ACTIONS(3511), - [anon_sym_null] = ACTIONS(925), - [anon_sym_true] = ACTIONS(925), - [anon_sym_false] = ACTIONS(925), - [aux_sym__val_number_decimal_token1] = ACTIONS(923), - [aux_sym__val_number_decimal_token2] = ACTIONS(925), - [anon_sym_DOT2] = ACTIONS(923), - [aux_sym__val_number_decimal_token3] = ACTIONS(925), - [aux_sym__val_number_token1] = ACTIONS(925), - [aux_sym__val_number_token2] = ACTIONS(925), - [aux_sym__val_number_token3] = ACTIONS(925), - [aux_sym__val_number_token4] = ACTIONS(925), - [aux_sym__val_number_token5] = ACTIONS(925), - [aux_sym__val_number_token6] = ACTIONS(925), - [anon_sym_0b] = ACTIONS(923), - [sym_filesize_unit] = ACTIONS(923), - [sym_duration_unit] = ACTIONS(925), - [anon_sym_0o] = ACTIONS(923), - [anon_sym_0x] = ACTIONS(923), - [sym_val_date] = ACTIONS(925), - [anon_sym_DQUOTE] = ACTIONS(925), - [sym__str_single_quotes] = ACTIONS(925), - [sym__str_back_ticks] = ACTIONS(925), - [anon_sym_err_GT] = ACTIONS(925), - [anon_sym_out_GT] = ACTIONS(925), - [anon_sym_e_GT] = ACTIONS(925), - [anon_sym_o_GT] = ACTIONS(925), - [anon_sym_err_PLUSout_GT] = ACTIONS(925), - [anon_sym_out_PLUSerr_GT] = ACTIONS(925), - [anon_sym_o_PLUSe_GT] = ACTIONS(925), - [anon_sym_e_PLUSo_GT] = ACTIONS(925), - [aux_sym_unquoted_token1] = ACTIONS(923), - [anon_sym_POUND] = ACTIONS(3), - }, - [1234] = { - [sym_comment] = STATE(1234), - [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), - [anon_sym_SEMI] = ACTIONS(2437), - [sym_cmd_identifier] = ACTIONS(2437), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_RPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_DASH_DASH] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_RBRACE] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_as] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_not] = ACTIONS(2437), - [anon_sym_DOT_DOT2] = ACTIONS(2437), - [anon_sym_DOT] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2439), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2439), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [anon_sym_DOT2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2437), - [anon_sym_0o] = ACTIONS(2437), - [anon_sym_0x] = ACTIONS(2437), - [sym_val_date] = 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_CARET] = ACTIONS(2437), - [aux_sym_unquoted_token2] = ACTIONS(2437), + [1442] = { + [sym_comment] = STATE(1442), + [anon_sym_export] = ACTIONS(1275), + [anon_sym_alias] = ACTIONS(1275), + [anon_sym_let] = ACTIONS(1275), + [anon_sym_let_DASHenv] = ACTIONS(1275), + [anon_sym_mut] = ACTIONS(1275), + [anon_sym_const] = ACTIONS(1275), + [anon_sym_SEMI] = ACTIONS(1275), + [sym_cmd_identifier] = ACTIONS(1275), + [anon_sym_LF] = ACTIONS(1277), + [anon_sym_def] = ACTIONS(1275), + [anon_sym_export_DASHenv] = ACTIONS(1275), + [anon_sym_extern] = ACTIONS(1275), + [anon_sym_module] = ACTIONS(1275), + [anon_sym_use] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(1275), + [anon_sym_RPAREN] = ACTIONS(1275), + [anon_sym_DOLLAR] = ACTIONS(1275), + [anon_sym_error] = ACTIONS(1275), + [anon_sym_DASH_DASH] = ACTIONS(1275), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_break] = ACTIONS(1275), + [anon_sym_continue] = ACTIONS(1275), + [anon_sym_for] = ACTIONS(1275), + [anon_sym_loop] = ACTIONS(1275), + [anon_sym_while] = ACTIONS(1275), + [anon_sym_do] = ACTIONS(1275), + [anon_sym_if] = ACTIONS(1275), + [anon_sym_match] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(1275), + [anon_sym_RBRACE] = ACTIONS(1275), + [anon_sym_DOT_DOT] = ACTIONS(1275), + [anon_sym_try] = ACTIONS(1275), + [anon_sym_return] = ACTIONS(1275), + [anon_sym_source] = ACTIONS(1275), + [anon_sym_source_DASHenv] = ACTIONS(1275), + [anon_sym_register] = ACTIONS(1275), + [anon_sym_hide] = ACTIONS(1275), + [anon_sym_hide_DASHenv] = ACTIONS(1275), + [anon_sym_overlay] = ACTIONS(1275), + [anon_sym_as] = ACTIONS(1275), + [anon_sym_where] = ACTIONS(1275), + [anon_sym_not] = ACTIONS(1275), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1275), + [anon_sym_DOT_DOT_LT] = ACTIONS(1275), + [anon_sym_null] = ACTIONS(1275), + [anon_sym_true] = ACTIONS(1275), + [anon_sym_false] = ACTIONS(1275), + [aux_sym__val_number_decimal_token1] = ACTIONS(1275), + [aux_sym__val_number_decimal_token2] = ACTIONS(1275), + [anon_sym_DOT2] = ACTIONS(1275), + [aux_sym__val_number_decimal_token3] = ACTIONS(1275), + [aux_sym__val_number_token1] = ACTIONS(1275), + [aux_sym__val_number_token2] = ACTIONS(1275), + [aux_sym__val_number_token3] = ACTIONS(1275), + [aux_sym__val_number_token4] = ACTIONS(1275), + [aux_sym__val_number_token5] = ACTIONS(1275), + [aux_sym__val_number_token6] = ACTIONS(1275), + [anon_sym_0b] = ACTIONS(1275), + [anon_sym_0o] = ACTIONS(1275), + [anon_sym_0x] = ACTIONS(1275), + [sym_val_date] = ACTIONS(1275), + [anon_sym_DQUOTE] = ACTIONS(1275), + [sym__str_single_quotes] = ACTIONS(1275), + [sym__str_back_ticks] = ACTIONS(1275), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1275), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1275), + [anon_sym_CARET] = ACTIONS(1275), [anon_sym_POUND] = ACTIONS(113), }, - [1235] = { - [sym__flag] = STATE(2069), - [sym_short_flag] = STATE(1768), - [sym_long_flag] = STATE(1768), - [sym_long_flag_equals_value] = STATE(1767), - [sym_comment] = STATE(1235), - [aux_sym_overlay_use_repeat1] = STATE(1235), - [anon_sym_export] = ACTIONS(3641), - [anon_sym_alias] = ACTIONS(3641), - [anon_sym_let] = ACTIONS(3641), - [anon_sym_let_DASHenv] = ACTIONS(3641), - [anon_sym_mut] = ACTIONS(3641), - [anon_sym_const] = ACTIONS(3641), - [anon_sym_SEMI] = ACTIONS(3641), - [sym_cmd_identifier] = ACTIONS(3641), - [anon_sym_LF] = ACTIONS(3643), - [anon_sym_def] = ACTIONS(3641), - [anon_sym_export_DASHenv] = ACTIONS(3641), - [anon_sym_extern] = ACTIONS(3641), - [anon_sym_module] = ACTIONS(3641), - [anon_sym_use] = ACTIONS(3641), - [anon_sym_LBRACK] = ACTIONS(3641), - [anon_sym_LPAREN] = ACTIONS(3641), - [anon_sym_RPAREN] = ACTIONS(3641), - [anon_sym_DOLLAR] = ACTIONS(3641), - [anon_sym_error] = ACTIONS(3641), - [anon_sym_DASH_DASH] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3648), - [anon_sym_break] = ACTIONS(3641), - [anon_sym_continue] = ACTIONS(3641), - [anon_sym_for] = ACTIONS(3641), - [anon_sym_loop] = ACTIONS(3641), - [anon_sym_while] = ACTIONS(3641), - [anon_sym_do] = ACTIONS(3641), - [anon_sym_if] = ACTIONS(3641), - [anon_sym_match] = ACTIONS(3641), - [anon_sym_LBRACE] = ACTIONS(3641), - [anon_sym_RBRACE] = ACTIONS(3641), - [anon_sym_DOT_DOT] = ACTIONS(3641), - [anon_sym_try] = ACTIONS(3641), - [anon_sym_return] = ACTIONS(3641), - [anon_sym_source] = ACTIONS(3641), - [anon_sym_source_DASHenv] = ACTIONS(3641), - [anon_sym_register] = ACTIONS(3641), - [anon_sym_hide] = ACTIONS(3641), - [anon_sym_hide_DASHenv] = ACTIONS(3641), - [anon_sym_overlay] = ACTIONS(3641), - [anon_sym_as] = ACTIONS(3641), - [anon_sym_where] = ACTIONS(3641), - [anon_sym_not] = ACTIONS(3641), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_LT] = ACTIONS(3641), - [anon_sym_null] = ACTIONS(3641), - [anon_sym_true] = ACTIONS(3641), - [anon_sym_false] = ACTIONS(3641), - [aux_sym__val_number_decimal_token1] = ACTIONS(3641), - [aux_sym__val_number_decimal_token2] = ACTIONS(3641), - [anon_sym_DOT2] = ACTIONS(3641), - [aux_sym__val_number_decimal_token3] = ACTIONS(3641), - [aux_sym__val_number_token1] = ACTIONS(3641), - [aux_sym__val_number_token2] = ACTIONS(3641), - [aux_sym__val_number_token3] = ACTIONS(3641), - [aux_sym__val_number_token4] = ACTIONS(3641), - [aux_sym__val_number_token5] = ACTIONS(3641), - [aux_sym__val_number_token6] = ACTIONS(3641), - [anon_sym_0b] = ACTIONS(3641), - [anon_sym_0o] = ACTIONS(3641), - [anon_sym_0x] = ACTIONS(3641), - [sym_val_date] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym__str_single_quotes] = ACTIONS(3641), - [sym__str_back_ticks] = ACTIONS(3641), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3641), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3641), - [anon_sym_CARET] = ACTIONS(3641), + [1443] = { + [sym__expression] = STATE(7046), + [sym_expr_unary] = STATE(5409), + [sym__expr_unary_minus] = STATE(5410), + [sym_expr_binary] = STATE(5409), + [sym__expr_binary_expression] = STATE(6366), + [sym_expr_parenthesized] = STATE(4635), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5409), + [sym_val_nothing] = STATE(5350), + [sym_val_bool] = STATE(5350), + [sym_val_variable] = STATE(4717), + [sym__var] = STATE(4193), + [sym_val_number] = STATE(5350), + [sym__val_number_decimal] = STATE(4266), + [sym__val_number] = STATE(5351), + [sym_val_duration] = STATE(5350), + [sym_val_filesize] = STATE(5350), + [sym_val_binary] = STATE(5350), + [sym_val_string] = STATE(5350), + [sym__str_double_quotes] = STATE(5502), + [sym_val_interpolated] = STATE(5350), + [sym__inter_single_quotes] = STATE(5420), + [sym__inter_double_quotes] = STATE(5421), + [sym_val_list] = STATE(5350), + [sym_val_record] = STATE(5350), + [sym_val_table] = STATE(5350), + [sym_val_closure] = STATE(5350), + [sym__flag] = STATE(1432), + [sym_short_flag] = STATE(4674), + [sym_long_flag] = STATE(4674), + [sym_long_flag_equals_value] = STATE(4714), + [sym_comment] = STATE(1443), + [anon_sym_SEMI] = ACTIONS(4871), + [anon_sym_LF] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4833), + [anon_sym_LPAREN] = ACTIONS(4835), + [anon_sym_RPAREN] = ACTIONS(4871), + [anon_sym_PIPE] = ACTIONS(4871), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_DASH_DASH] = ACTIONS(4875), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4841), + [anon_sym_RBRACE] = ACTIONS(4871), + [anon_sym_DOT_DOT] = ACTIONS(4843), + [anon_sym_not] = ACTIONS(4845), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4847), + [anon_sym_DOT_DOT_LT] = ACTIONS(4847), + [anon_sym_null] = ACTIONS(4849), + [anon_sym_true] = ACTIONS(4851), + [anon_sym_false] = ACTIONS(4851), + [aux_sym__val_number_decimal_token1] = ACTIONS(4853), + [aux_sym__val_number_decimal_token2] = ACTIONS(4853), + [anon_sym_DOT2] = ACTIONS(4855), + [aux_sym__val_number_decimal_token3] = ACTIONS(4857), + [aux_sym__val_number_token1] = ACTIONS(4859), + [aux_sym__val_number_token2] = ACTIONS(4859), + [aux_sym__val_number_token3] = ACTIONS(4859), + [aux_sym__val_number_token4] = ACTIONS(4859), + [aux_sym__val_number_token5] = ACTIONS(4859), + [aux_sym__val_number_token6] = ACTIONS(4859), + [anon_sym_0b] = ACTIONS(3080), + [anon_sym_0o] = ACTIONS(3082), + [anon_sym_0x] = ACTIONS(3082), + [sym_val_date] = ACTIONS(4861), + [anon_sym_DQUOTE] = ACTIONS(4863), + [sym__str_single_quotes] = ACTIONS(4865), + [sym__str_back_ticks] = ACTIONS(4865), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4867), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4869), [anon_sym_POUND] = ACTIONS(113), }, - [1236] = { - [sym_comment] = STATE(1236), - [anon_sym_export] = ACTIONS(2547), - [anon_sym_alias] = ACTIONS(2547), - [anon_sym_let] = ACTIONS(2547), - [anon_sym_let_DASHenv] = ACTIONS(2547), - [anon_sym_mut] = ACTIONS(2547), - [anon_sym_const] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [sym_cmd_identifier] = ACTIONS(2547), - [anon_sym_LF] = ACTIONS(2549), - [anon_sym_def] = ACTIONS(2547), - [anon_sym_export_DASHenv] = ACTIONS(2547), - [anon_sym_extern] = ACTIONS(2547), - [anon_sym_module] = ACTIONS(2547), - [anon_sym_use] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_RPAREN] = ACTIONS(2547), - [anon_sym_DOLLAR] = ACTIONS(2547), - [anon_sym_error] = ACTIONS(2547), - [anon_sym_DASH_DASH] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_break] = ACTIONS(2547), - [anon_sym_continue] = ACTIONS(2547), - [anon_sym_for] = ACTIONS(2547), - [anon_sym_loop] = ACTIONS(2547), - [anon_sym_while] = ACTIONS(2547), - [anon_sym_do] = ACTIONS(2547), - [anon_sym_if] = ACTIONS(2547), - [anon_sym_match] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2547), - [anon_sym_RBRACE] = ACTIONS(2547), - [anon_sym_DOT_DOT] = ACTIONS(2547), - [anon_sym_try] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2547), - [anon_sym_source] = ACTIONS(2547), - [anon_sym_source_DASHenv] = ACTIONS(2547), - [anon_sym_register] = ACTIONS(2547), - [anon_sym_hide] = ACTIONS(2547), - [anon_sym_hide_DASHenv] = ACTIONS(2547), - [anon_sym_overlay] = ACTIONS(2547), - [anon_sym_as] = ACTIONS(2547), - [anon_sym_where] = ACTIONS(2547), - [anon_sym_not] = ACTIONS(2547), - [anon_sym_DOT_DOT2] = ACTIONS(2547), - [anon_sym_DOT] = ACTIONS(2547), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), - [anon_sym_DOT_DOT_LT] = ACTIONS(2547), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2549), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2549), - [anon_sym_null] = ACTIONS(2547), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [aux_sym__val_number_decimal_token1] = ACTIONS(2547), - [aux_sym__val_number_decimal_token2] = ACTIONS(2547), - [anon_sym_DOT2] = ACTIONS(2547), - [aux_sym__val_number_decimal_token3] = ACTIONS(2547), - [aux_sym__val_number_token1] = ACTIONS(2547), - [aux_sym__val_number_token2] = ACTIONS(2547), - [aux_sym__val_number_token3] = ACTIONS(2547), - [aux_sym__val_number_token4] = ACTIONS(2547), - [aux_sym__val_number_token5] = ACTIONS(2547), - [aux_sym__val_number_token6] = ACTIONS(2547), - [anon_sym_0b] = ACTIONS(2547), - [anon_sym_0o] = ACTIONS(2547), - [anon_sym_0x] = ACTIONS(2547), - [sym_val_date] = ACTIONS(2547), - [anon_sym_DQUOTE] = ACTIONS(2547), - [sym__str_single_quotes] = ACTIONS(2547), - [sym__str_back_ticks] = ACTIONS(2547), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2547), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2547), - [aux_sym_unquoted_token2] = ACTIONS(2547), + [1444] = { + [sym_comment] = STATE(1444), + [ts_builtin_sym_end] = ACTIONS(1043), + [anon_sym_export] = ACTIONS(1041), + [anon_sym_alias] = ACTIONS(1041), + [anon_sym_let] = ACTIONS(1041), + [anon_sym_let_DASHenv] = ACTIONS(1041), + [anon_sym_mut] = ACTIONS(1041), + [anon_sym_const] = ACTIONS(1041), + [anon_sym_SEMI] = ACTIONS(1041), + [sym_cmd_identifier] = ACTIONS(1041), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_def] = ACTIONS(1041), + [anon_sym_export_DASHenv] = ACTIONS(1041), + [anon_sym_extern] = ACTIONS(1041), + [anon_sym_module] = ACTIONS(1041), + [anon_sym_use] = ACTIONS(1041), + [anon_sym_LBRACK] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1041), + [anon_sym_DOLLAR] = ACTIONS(1041), + [anon_sym_error] = ACTIONS(1041), + [anon_sym_DASH_DASH] = ACTIONS(1041), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_break] = ACTIONS(1041), + [anon_sym_continue] = ACTIONS(1041), + [anon_sym_for] = ACTIONS(1041), + [anon_sym_loop] = ACTIONS(1041), + [anon_sym_while] = ACTIONS(1041), + [anon_sym_do] = ACTIONS(1041), + [anon_sym_if] = ACTIONS(1041), + [anon_sym_match] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_DOT_DOT] = ACTIONS(1041), + [anon_sym_try] = ACTIONS(1041), + [anon_sym_return] = ACTIONS(1041), + [anon_sym_source] = ACTIONS(1041), + [anon_sym_source_DASHenv] = ACTIONS(1041), + [anon_sym_register] = ACTIONS(1041), + [anon_sym_hide] = ACTIONS(1041), + [anon_sym_hide_DASHenv] = ACTIONS(1041), + [anon_sym_overlay] = ACTIONS(1041), + [anon_sym_as] = ACTIONS(1041), + [anon_sym_where] = ACTIONS(1041), + [anon_sym_not] = ACTIONS(1041), + [anon_sym_DOT] = ACTIONS(1041), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1041), + [anon_sym_DOT_DOT_LT] = ACTIONS(1041), + [anon_sym_null] = ACTIONS(1041), + [anon_sym_true] = ACTIONS(1041), + [anon_sym_false] = ACTIONS(1041), + [aux_sym__val_number_decimal_token1] = ACTIONS(1041), + [aux_sym__val_number_decimal_token2] = ACTIONS(1041), + [anon_sym_DOT2] = ACTIONS(1041), + [aux_sym__val_number_decimal_token3] = ACTIONS(1041), + [aux_sym__val_number_token1] = ACTIONS(1041), + [aux_sym__val_number_token2] = ACTIONS(1041), + [aux_sym__val_number_token3] = ACTIONS(1041), + [aux_sym__val_number_token4] = ACTIONS(1041), + [aux_sym__val_number_token5] = ACTIONS(1041), + [aux_sym__val_number_token6] = ACTIONS(1041), + [anon_sym_0b] = ACTIONS(1041), + [anon_sym_0o] = ACTIONS(1041), + [anon_sym_0x] = ACTIONS(1041), + [sym_val_date] = ACTIONS(1041), + [anon_sym_DQUOTE] = ACTIONS(1041), + [sym__str_single_quotes] = ACTIONS(1041), + [sym__str_back_ticks] = ACTIONS(1041), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1041), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1041), + [anon_sym_CARET] = ACTIONS(1041), [anon_sym_POUND] = ACTIONS(113), }, - [1237] = { - [sym_comment] = STATE(1237), - [anon_sym_export] = ACTIONS(3505), - [anon_sym_alias] = ACTIONS(3505), - [anon_sym_let] = ACTIONS(3505), - [anon_sym_let_DASHenv] = ACTIONS(3505), - [anon_sym_mut] = ACTIONS(3505), - [anon_sym_const] = ACTIONS(3505), - [anon_sym_SEMI] = ACTIONS(3505), - [sym_cmd_identifier] = ACTIONS(3505), - [anon_sym_LF] = ACTIONS(3507), - [anon_sym_def] = ACTIONS(3505), - [anon_sym_export_DASHenv] = ACTIONS(3505), - [anon_sym_extern] = ACTIONS(3505), - [anon_sym_module] = ACTIONS(3505), - [anon_sym_use] = ACTIONS(3505), - [anon_sym_LBRACK] = ACTIONS(3505), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_RPAREN] = ACTIONS(3505), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_error] = ACTIONS(3505), - [anon_sym_DASH_DASH] = ACTIONS(3505), - [anon_sym_DASH] = ACTIONS(3505), - [anon_sym_break] = ACTIONS(3505), - [anon_sym_continue] = ACTIONS(3505), - [anon_sym_for] = ACTIONS(3505), - [anon_sym_loop] = ACTIONS(3505), - [anon_sym_while] = ACTIONS(3505), - [anon_sym_do] = ACTIONS(3505), - [anon_sym_if] = ACTIONS(3505), - [anon_sym_match] = ACTIONS(3505), - [anon_sym_LBRACE] = ACTIONS(3505), - [anon_sym_RBRACE] = ACTIONS(3505), - [anon_sym_DOT_DOT] = ACTIONS(3505), - [anon_sym_try] = ACTIONS(3505), - [anon_sym_return] = ACTIONS(3505), - [anon_sym_source] = ACTIONS(3505), - [anon_sym_source_DASHenv] = ACTIONS(3505), - [anon_sym_register] = ACTIONS(3505), - [anon_sym_hide] = ACTIONS(3505), - [anon_sym_hide_DASHenv] = ACTIONS(3505), - [anon_sym_overlay] = ACTIONS(3505), - [anon_sym_as] = ACTIONS(3505), - [anon_sym_where] = ACTIONS(3505), - [anon_sym_not] = ACTIONS(3505), - [anon_sym_DOT_DOT2] = ACTIONS(3505), - [anon_sym_DOT] = ACTIONS(3505), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3505), - [anon_sym_DOT_DOT_LT] = ACTIONS(3505), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3507), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3507), - [anon_sym_null] = ACTIONS(3505), - [anon_sym_true] = ACTIONS(3505), - [anon_sym_false] = ACTIONS(3505), - [aux_sym__val_number_decimal_token1] = ACTIONS(3505), - [aux_sym__val_number_decimal_token2] = ACTIONS(3505), - [anon_sym_DOT2] = ACTIONS(3505), - [aux_sym__val_number_decimal_token3] = ACTIONS(3505), - [aux_sym__val_number_token1] = ACTIONS(3505), - [aux_sym__val_number_token2] = ACTIONS(3505), - [aux_sym__val_number_token3] = ACTIONS(3505), - [aux_sym__val_number_token4] = ACTIONS(3505), - [aux_sym__val_number_token5] = ACTIONS(3505), - [aux_sym__val_number_token6] = ACTIONS(3505), - [anon_sym_0b] = ACTIONS(3505), - [anon_sym_0o] = ACTIONS(3505), - [anon_sym_0x] = ACTIONS(3505), - [sym_val_date] = ACTIONS(3505), - [anon_sym_DQUOTE] = ACTIONS(3505), - [sym__str_single_quotes] = ACTIONS(3505), - [sym__str_back_ticks] = ACTIONS(3505), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3505), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3505), - [anon_sym_CARET] = ACTIONS(3505), - [aux_sym_unquoted_token2] = ACTIONS(3505), + [1445] = { + [sym__expression] = STATE(7046), + [sym_expr_unary] = STATE(5409), + [sym__expr_unary_minus] = STATE(5410), + [sym_expr_binary] = STATE(5409), + [sym__expr_binary_expression] = STATE(6366), + [sym_expr_parenthesized] = STATE(4635), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5409), + [sym_val_nothing] = STATE(5350), + [sym_val_bool] = STATE(5350), + [sym_val_variable] = STATE(4717), + [sym__var] = STATE(4193), + [sym_val_number] = STATE(5350), + [sym__val_number_decimal] = STATE(4266), + [sym__val_number] = STATE(5351), + [sym_val_duration] = STATE(5350), + [sym_val_filesize] = STATE(5350), + [sym_val_binary] = STATE(5350), + [sym_val_string] = STATE(5350), + [sym__str_double_quotes] = STATE(5502), + [sym_val_interpolated] = STATE(5350), + [sym__inter_single_quotes] = STATE(5420), + [sym__inter_double_quotes] = STATE(5421), + [sym_val_list] = STATE(5350), + [sym_val_record] = STATE(5350), + [sym_val_table] = STATE(5350), + [sym_val_closure] = STATE(5350), + [sym__flag] = STATE(1449), + [sym_short_flag] = STATE(4674), + [sym_long_flag] = STATE(4674), + [sym_long_flag_equals_value] = STATE(4714), + [sym_comment] = STATE(1445), + [anon_sym_SEMI] = ACTIONS(4871), + [anon_sym_LF] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4833), + [anon_sym_LPAREN] = ACTIONS(4835), + [anon_sym_RPAREN] = ACTIONS(4871), + [anon_sym_PIPE] = ACTIONS(4871), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_DASH_DASH] = ACTIONS(4875), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4841), + [anon_sym_RBRACE] = ACTIONS(4871), + [anon_sym_DOT_DOT] = ACTIONS(4843), + [anon_sym_not] = ACTIONS(4845), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4847), + [anon_sym_DOT_DOT_LT] = ACTIONS(4847), + [anon_sym_null] = ACTIONS(4849), + [anon_sym_true] = ACTIONS(4851), + [anon_sym_false] = ACTIONS(4851), + [aux_sym__val_number_decimal_token1] = ACTIONS(4853), + [aux_sym__val_number_decimal_token2] = ACTIONS(4853), + [anon_sym_DOT2] = ACTIONS(4855), + [aux_sym__val_number_decimal_token3] = ACTIONS(4857), + [aux_sym__val_number_token1] = ACTIONS(4859), + [aux_sym__val_number_token2] = ACTIONS(4859), + [aux_sym__val_number_token3] = ACTIONS(4859), + [aux_sym__val_number_token4] = ACTIONS(4859), + [aux_sym__val_number_token5] = ACTIONS(4859), + [aux_sym__val_number_token6] = ACTIONS(4859), + [anon_sym_0b] = ACTIONS(3080), + [anon_sym_0o] = ACTIONS(3082), + [anon_sym_0x] = ACTIONS(3082), + [sym_val_date] = ACTIONS(4861), + [anon_sym_DQUOTE] = ACTIONS(4863), + [sym__str_single_quotes] = ACTIONS(4865), + [sym__str_back_ticks] = ACTIONS(4865), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4867), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4869), [anon_sym_POUND] = ACTIONS(113), }, - [1238] = { - [sym_comment] = STATE(1238), - [ts_builtin_sym_end] = ACTIONS(2583), - [anon_sym_export] = ACTIONS(2581), - [anon_sym_alias] = ACTIONS(2581), - [anon_sym_let] = ACTIONS(2581), - [anon_sym_let_DASHenv] = ACTIONS(2581), - [anon_sym_mut] = ACTIONS(2581), - [anon_sym_const] = ACTIONS(2581), - [anon_sym_SEMI] = ACTIONS(2581), - [sym_cmd_identifier] = ACTIONS(2581), - [anon_sym_LF] = ACTIONS(2583), - [anon_sym_def] = ACTIONS(2581), - [anon_sym_export_DASHenv] = ACTIONS(2581), - [anon_sym_extern] = ACTIONS(2581), - [anon_sym_module] = ACTIONS(2581), - [anon_sym_use] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2581), - [anon_sym_error] = ACTIONS(2581), - [anon_sym_DASH_DASH] = ACTIONS(2581), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_break] = ACTIONS(2581), - [anon_sym_continue] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2581), - [anon_sym_loop] = ACTIONS(2581), - [anon_sym_while] = ACTIONS(2581), - [anon_sym_do] = ACTIONS(2581), - [anon_sym_if] = ACTIONS(2581), - [anon_sym_match] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2581), - [anon_sym_DOT_DOT] = ACTIONS(2581), - [anon_sym_try] = ACTIONS(2581), - [anon_sym_return] = ACTIONS(2581), - [anon_sym_source] = ACTIONS(2581), - [anon_sym_source_DASHenv] = ACTIONS(2581), - [anon_sym_register] = ACTIONS(2581), - [anon_sym_hide] = ACTIONS(2581), - [anon_sym_hide_DASHenv] = ACTIONS(2581), - [anon_sym_overlay] = ACTIONS(2581), - [anon_sym_as] = ACTIONS(2581), - [anon_sym_where] = ACTIONS(2581), - [anon_sym_not] = ACTIONS(2581), - [anon_sym_DOT_DOT2] = ACTIONS(2581), - [anon_sym_DOT] = ACTIONS(2581), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2581), - [anon_sym_DOT_DOT_LT] = ACTIONS(2581), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2583), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2583), - [aux_sym__immediate_decimal_token2] = ACTIONS(3651), - [anon_sym_null] = ACTIONS(2581), - [anon_sym_true] = ACTIONS(2581), - [anon_sym_false] = ACTIONS(2581), - [aux_sym__val_number_decimal_token1] = ACTIONS(2581), - [aux_sym__val_number_decimal_token2] = ACTIONS(2581), - [anon_sym_DOT2] = ACTIONS(2581), - [aux_sym__val_number_decimal_token3] = ACTIONS(2581), - [aux_sym__val_number_token1] = ACTIONS(2581), - [aux_sym__val_number_token2] = ACTIONS(2581), - [aux_sym__val_number_token3] = ACTIONS(2581), - [aux_sym__val_number_token4] = ACTIONS(2581), - [aux_sym__val_number_token5] = ACTIONS(2581), - [aux_sym__val_number_token6] = ACTIONS(2581), - [anon_sym_0b] = ACTIONS(2581), - [anon_sym_0o] = ACTIONS(2581), - [anon_sym_0x] = ACTIONS(2581), - [sym_val_date] = ACTIONS(2581), - [anon_sym_DQUOTE] = ACTIONS(2581), - [sym__str_single_quotes] = ACTIONS(2581), - [sym__str_back_ticks] = ACTIONS(2581), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2581), - [anon_sym_CARET] = ACTIONS(2581), - [aux_sym_unquoted_token2] = ACTIONS(2581), + [1446] = { + [sym_comment] = STATE(1446), + [anon_sym_export] = ACTIONS(1051), + [anon_sym_alias] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(1051), + [anon_sym_let_DASHenv] = ACTIONS(1051), + [anon_sym_mut] = ACTIONS(1051), + [anon_sym_const] = ACTIONS(1051), + [anon_sym_SEMI] = ACTIONS(1051), + [sym_cmd_identifier] = ACTIONS(1051), + [anon_sym_LF] = ACTIONS(1053), + [anon_sym_def] = ACTIONS(1051), + [anon_sym_export_DASHenv] = ACTIONS(1051), + [anon_sym_extern] = ACTIONS(1051), + [anon_sym_module] = ACTIONS(1051), + [anon_sym_use] = ACTIONS(1051), + [anon_sym_LBRACK] = ACTIONS(1051), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_RPAREN] = ACTIONS(1051), + [anon_sym_DOLLAR] = ACTIONS(1051), + [anon_sym_error] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_break] = ACTIONS(1051), + [anon_sym_continue] = ACTIONS(1051), + [anon_sym_for] = ACTIONS(1051), + [anon_sym_loop] = ACTIONS(1051), + [anon_sym_while] = ACTIONS(1051), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_if] = ACTIONS(1051), + [anon_sym_match] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(1051), + [anon_sym_RBRACE] = ACTIONS(1051), + [anon_sym_DOT_DOT] = ACTIONS(1051), + [anon_sym_try] = ACTIONS(1051), + [anon_sym_return] = ACTIONS(1051), + [anon_sym_source] = ACTIONS(1051), + [anon_sym_source_DASHenv] = ACTIONS(1051), + [anon_sym_register] = ACTIONS(1051), + [anon_sym_hide] = ACTIONS(1051), + [anon_sym_hide_DASHenv] = ACTIONS(1051), + [anon_sym_overlay] = ACTIONS(1051), + [anon_sym_as] = ACTIONS(1051), + [anon_sym_where] = ACTIONS(1051), + [anon_sym_not] = ACTIONS(1051), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1051), + [anon_sym_DOT_DOT_LT] = ACTIONS(1051), + [anon_sym_null] = ACTIONS(1051), + [anon_sym_true] = ACTIONS(1051), + [anon_sym_false] = ACTIONS(1051), + [aux_sym__val_number_decimal_token1] = ACTIONS(1051), + [aux_sym__val_number_decimal_token2] = ACTIONS(1051), + [anon_sym_DOT2] = ACTIONS(1051), + [aux_sym__val_number_decimal_token3] = ACTIONS(1051), + [aux_sym__val_number_token1] = ACTIONS(1051), + [aux_sym__val_number_token2] = ACTIONS(1051), + [aux_sym__val_number_token3] = ACTIONS(1051), + [aux_sym__val_number_token4] = ACTIONS(1051), + [aux_sym__val_number_token5] = ACTIONS(1051), + [aux_sym__val_number_token6] = ACTIONS(1051), + [anon_sym_0b] = ACTIONS(1051), + [anon_sym_0o] = ACTIONS(1051), + [anon_sym_0x] = ACTIONS(1051), + [sym_val_date] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(1051), + [sym__str_single_quotes] = ACTIONS(1051), + [sym__str_back_ticks] = ACTIONS(1051), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1051), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1051), + [anon_sym_CARET] = ACTIONS(1051), [anon_sym_POUND] = ACTIONS(113), }, - [1239] = { - [sym_comment] = STATE(1239), - [ts_builtin_sym_end] = ACTIONS(2439), - [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), - [anon_sym_SEMI] = ACTIONS(2437), - [sym_cmd_identifier] = ACTIONS(2437), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_DASH_DASH] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_as] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_not] = ACTIONS(2437), - [anon_sym_DOT_DOT2] = ACTIONS(2437), - [anon_sym_DOT] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2439), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2439), - [aux_sym__immediate_decimal_token2] = ACTIONS(2682), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [anon_sym_DOT2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2437), - [anon_sym_0o] = ACTIONS(2437), - [anon_sym_0x] = ACTIONS(2437), - [sym_val_date] = 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_CARET] = ACTIONS(2437), - [aux_sym_unquoted_token2] = ACTIONS(2437), + [1447] = { + [sym_comment] = STATE(1447), + [anon_sym_SEMI] = ACTIONS(1047), + [anon_sym_LF] = ACTIONS(1049), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1047), + [anon_sym_RPAREN] = ACTIONS(1047), + [anon_sym_PIPE] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1047), + [anon_sym_GT] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_in] = ACTIONS(1047), + [anon_sym_LBRACE] = ACTIONS(1047), + [anon_sym_RBRACE] = ACTIONS(1047), + [anon_sym_DOT_DOT] = ACTIONS(1047), + [anon_sym_STAR] = ACTIONS(1047), + [anon_sym_STAR_STAR] = ACTIONS(1047), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_SLASH] = ACTIONS(1047), + [anon_sym_mod] = ACTIONS(1047), + [anon_sym_SLASH_SLASH] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1047), + [anon_sym_bit_DASHshl] = ACTIONS(1047), + [anon_sym_bit_DASHshr] = ACTIONS(1047), + [anon_sym_EQ_EQ] = ACTIONS(1047), + [anon_sym_BANG_EQ] = ACTIONS(1047), + [anon_sym_LT2] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1047), + [anon_sym_GT_EQ] = ACTIONS(1047), + [anon_sym_not_DASHin] = ACTIONS(1047), + [anon_sym_starts_DASHwith] = ACTIONS(1047), + [anon_sym_ends_DASHwith] = ACTIONS(1047), + [anon_sym_EQ_TILDE] = ACTIONS(1047), + [anon_sym_BANG_TILDE] = ACTIONS(1047), + [anon_sym_bit_DASHand] = ACTIONS(1047), + [anon_sym_bit_DASHxor] = ACTIONS(1047), + [anon_sym_bit_DASHor] = ACTIONS(1047), + [anon_sym_and] = ACTIONS(1047), + [anon_sym_xor] = ACTIONS(1047), + [anon_sym_or] = ACTIONS(1047), + [anon_sym_not] = ACTIONS(1047), + [anon_sym_DOT_DOT2] = ACTIONS(1047), + [anon_sym_DOT] = ACTIONS(1047), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1047), + [anon_sym_DOT_DOT_LT] = ACTIONS(1047), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1049), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1049), + [anon_sym_null] = ACTIONS(1047), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [aux_sym__val_number_decimal_token1] = ACTIONS(1047), + [aux_sym__val_number_decimal_token2] = ACTIONS(1047), + [anon_sym_DOT2] = ACTIONS(1047), + [aux_sym__val_number_decimal_token3] = ACTIONS(1047), + [aux_sym__val_number_token1] = ACTIONS(1047), + [aux_sym__val_number_token2] = ACTIONS(1047), + [aux_sym__val_number_token3] = ACTIONS(1047), + [aux_sym__val_number_token4] = ACTIONS(1047), + [aux_sym__val_number_token5] = ACTIONS(1047), + [aux_sym__val_number_token6] = ACTIONS(1047), + [anon_sym_0b] = ACTIONS(1047), + [anon_sym_0o] = ACTIONS(1047), + [anon_sym_0x] = ACTIONS(1047), + [sym_val_date] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1047), + [sym__str_single_quotes] = ACTIONS(1047), + [sym__str_back_ticks] = ACTIONS(1047), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1047), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1047), [anon_sym_POUND] = ACTIONS(113), }, - [1240] = { - [sym_comment] = STATE(1240), - [ts_builtin_sym_end] = ACTIONS(2549), - [anon_sym_export] = ACTIONS(2547), - [anon_sym_alias] = ACTIONS(2547), - [anon_sym_let] = ACTIONS(2547), - [anon_sym_let_DASHenv] = ACTIONS(2547), - [anon_sym_mut] = ACTIONS(2547), - [anon_sym_const] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [sym_cmd_identifier] = ACTIONS(2547), - [anon_sym_LF] = ACTIONS(2549), - [anon_sym_def] = ACTIONS(2547), - [anon_sym_export_DASHenv] = ACTIONS(2547), - [anon_sym_extern] = ACTIONS(2547), - [anon_sym_module] = ACTIONS(2547), - [anon_sym_use] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_DOLLAR] = ACTIONS(2547), - [anon_sym_error] = ACTIONS(2547), - [anon_sym_DASH_DASH] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_break] = ACTIONS(2547), - [anon_sym_continue] = ACTIONS(2547), - [anon_sym_for] = ACTIONS(2547), - [anon_sym_loop] = ACTIONS(2547), - [anon_sym_while] = ACTIONS(2547), - [anon_sym_do] = ACTIONS(2547), - [anon_sym_if] = ACTIONS(2547), - [anon_sym_match] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2547), - [anon_sym_DOT_DOT] = ACTIONS(2547), - [anon_sym_try] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2547), - [anon_sym_source] = ACTIONS(2547), - [anon_sym_source_DASHenv] = ACTIONS(2547), - [anon_sym_register] = ACTIONS(2547), - [anon_sym_hide] = ACTIONS(2547), - [anon_sym_hide_DASHenv] = ACTIONS(2547), - [anon_sym_overlay] = ACTIONS(2547), - [anon_sym_as] = ACTIONS(2547), - [anon_sym_where] = ACTIONS(2547), - [anon_sym_not] = ACTIONS(2547), - [anon_sym_DOT_DOT2] = ACTIONS(2547), - [anon_sym_DOT] = ACTIONS(2547), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), - [anon_sym_DOT_DOT_LT] = ACTIONS(2547), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2549), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2549), - [aux_sym__immediate_decimal_token2] = ACTIONS(3653), - [anon_sym_null] = ACTIONS(2547), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [aux_sym__val_number_decimal_token1] = ACTIONS(2547), - [aux_sym__val_number_decimal_token2] = ACTIONS(2547), - [anon_sym_DOT2] = ACTIONS(2547), - [aux_sym__val_number_decimal_token3] = ACTIONS(2547), - [aux_sym__val_number_token1] = ACTIONS(2547), - [aux_sym__val_number_token2] = ACTIONS(2547), - [aux_sym__val_number_token3] = ACTIONS(2547), - [aux_sym__val_number_token4] = ACTIONS(2547), - [aux_sym__val_number_token5] = ACTIONS(2547), - [aux_sym__val_number_token6] = ACTIONS(2547), - [anon_sym_0b] = ACTIONS(2547), - [anon_sym_0o] = ACTIONS(2547), - [anon_sym_0x] = ACTIONS(2547), - [sym_val_date] = ACTIONS(2547), - [anon_sym_DQUOTE] = ACTIONS(2547), - [sym__str_single_quotes] = ACTIONS(2547), - [sym__str_back_ticks] = ACTIONS(2547), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2547), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2547), - [aux_sym_unquoted_token2] = ACTIONS(2547), + [1448] = { + [sym_comment] = STATE(1448), + [anon_sym_LBRACK] = ACTIONS(1091), + [anon_sym_COMMA] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_DOLLAR] = ACTIONS(1089), + [anon_sym_GT] = ACTIONS(1089), + [anon_sym_DASH] = ACTIONS(1089), + [anon_sym_in] = ACTIONS(1089), + [anon_sym_LBRACE] = ACTIONS(1091), + [anon_sym_RBRACE] = ACTIONS(1091), + [anon_sym__] = ACTIONS(1089), + [anon_sym_DOT_DOT] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_STAR_STAR] = ACTIONS(1089), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_SLASH] = ACTIONS(1089), + [anon_sym_mod] = ACTIONS(1089), + [anon_sym_SLASH_SLASH] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1089), + [anon_sym_bit_DASHshl] = ACTIONS(1089), + [anon_sym_bit_DASHshr] = ACTIONS(1089), + [anon_sym_EQ_EQ] = ACTIONS(1089), + [anon_sym_BANG_EQ] = ACTIONS(1089), + [anon_sym_LT2] = ACTIONS(1089), + [anon_sym_LT_EQ] = ACTIONS(1089), + [anon_sym_GT_EQ] = ACTIONS(1089), + [anon_sym_not_DASHin] = ACTIONS(1089), + [anon_sym_starts_DASHwith] = ACTIONS(1089), + [anon_sym_ends_DASHwith] = ACTIONS(1089), + [anon_sym_EQ_TILDE] = ACTIONS(1089), + [anon_sym_BANG_TILDE] = ACTIONS(1089), + [anon_sym_bit_DASHand] = ACTIONS(1089), + [anon_sym_bit_DASHxor] = ACTIONS(1089), + [anon_sym_bit_DASHor] = ACTIONS(1089), + [anon_sym_and] = ACTIONS(1089), + [anon_sym_xor] = ACTIONS(1089), + [anon_sym_or] = ACTIONS(1089), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_DOT_DOT_LT] = ACTIONS(1089), + [anon_sym_null] = ACTIONS(1089), + [anon_sym_true] = ACTIONS(1089), + [anon_sym_false] = ACTIONS(1089), + [aux_sym__val_number_decimal_token1] = ACTIONS(1089), + [aux_sym__val_number_decimal_token2] = ACTIONS(1089), + [anon_sym_DOT2] = ACTIONS(1089), + [aux_sym__val_number_decimal_token3] = ACTIONS(1089), + [aux_sym__val_number_token1] = ACTIONS(1089), + [aux_sym__val_number_token2] = ACTIONS(1089), + [aux_sym__val_number_token3] = ACTIONS(1089), + [aux_sym__val_number_token4] = ACTIONS(1089), + [aux_sym__val_number_token5] = ACTIONS(1089), + [aux_sym__val_number_token6] = ACTIONS(1089), + [anon_sym_0b] = ACTIONS(1089), + [anon_sym_0o] = ACTIONS(1089), + [anon_sym_0x] = ACTIONS(1089), + [sym_val_date] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1091), + [sym__str_single_quotes] = ACTIONS(1091), + [sym__str_back_ticks] = ACTIONS(1091), + [anon_sym_err_GT] = ACTIONS(1089), + [anon_sym_out_GT] = ACTIONS(1089), + [anon_sym_e_GT] = ACTIONS(1089), + [anon_sym_o_GT] = ACTIONS(1089), + [anon_sym_err_PLUSout_GT] = ACTIONS(1089), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1089), + [anon_sym_o_PLUSe_GT] = ACTIONS(1089), + [anon_sym_e_PLUSo_GT] = ACTIONS(1089), + [aux_sym_unquoted_token1] = ACTIONS(1089), + [aux_sym_unquoted_token6] = ACTIONS(1149), [anon_sym_POUND] = ACTIONS(113), }, - [1241] = { - [sym_comment] = STATE(1241), - [anon_sym_LBRACK] = ACTIONS(1059), - [anon_sym_COMMA] = ACTIONS(1059), - [anon_sym_RBRACK] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_DASH_DASH] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_QMARK2] = ACTIONS(1059), - [anon_sym_STAR_STAR] = ACTIONS(1059), - [anon_sym_PLUS_PLUS] = ACTIONS(1059), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_mod] = ACTIONS(1059), - [anon_sym_SLASH_SLASH] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_bit_DASHshl] = ACTIONS(1059), - [anon_sym_bit_DASHshr] = ACTIONS(1059), - [anon_sym_EQ_EQ] = ACTIONS(1059), - [anon_sym_BANG_EQ] = ACTIONS(1059), - [anon_sym_LT2] = ACTIONS(1059), - [anon_sym_LT_EQ] = ACTIONS(1059), - [anon_sym_GT_EQ] = ACTIONS(1059), - [anon_sym_not_DASHin] = ACTIONS(1059), - [anon_sym_starts_DASHwith] = ACTIONS(1059), - [anon_sym_ends_DASHwith] = ACTIONS(1059), - [anon_sym_EQ_TILDE] = ACTIONS(1059), - [anon_sym_BANG_TILDE] = ACTIONS(1059), - [anon_sym_bit_DASHand] = ACTIONS(1059), - [anon_sym_bit_DASHxor] = ACTIONS(1059), - [anon_sym_bit_DASHor] = ACTIONS(1059), - [anon_sym_and] = ACTIONS(1059), - [anon_sym_xor] = ACTIONS(1059), - [anon_sym_or] = ACTIONS(1059), - [anon_sym_DOT_DOT2] = ACTIONS(1059), - [anon_sym_DOT] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1059), - [anon_sym_DOT_DOT_LT] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1061), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1061), - [anon_sym_null] = ACTIONS(1059), - [anon_sym_true] = ACTIONS(1059), - [anon_sym_false] = ACTIONS(1059), - [aux_sym__val_number_decimal_token1] = ACTIONS(1059), - [aux_sym__val_number_decimal_token2] = ACTIONS(1059), - [anon_sym_DOT2] = ACTIONS(1059), - [aux_sym__val_number_decimal_token3] = ACTIONS(1059), - [aux_sym__val_number_token1] = ACTIONS(1059), - [aux_sym__val_number_token2] = ACTIONS(1059), - [aux_sym__val_number_token3] = ACTIONS(1059), - [aux_sym__val_number_token4] = ACTIONS(1059), - [aux_sym__val_number_token5] = ACTIONS(1059), - [aux_sym__val_number_token6] = ACTIONS(1059), - [anon_sym_0b] = ACTIONS(1059), - [anon_sym_0o] = ACTIONS(1059), - [anon_sym_0x] = ACTIONS(1059), - [sym_val_date] = ACTIONS(1059), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym__str_single_quotes] = ACTIONS(1059), - [sym__str_back_ticks] = ACTIONS(1059), - [sym__entry_separator] = ACTIONS(1061), - [anon_sym_err_GT] = ACTIONS(1059), - [anon_sym_out_GT] = ACTIONS(1059), - [anon_sym_e_GT] = ACTIONS(1059), - [anon_sym_o_GT] = ACTIONS(1059), - [anon_sym_err_PLUSout_GT] = ACTIONS(1059), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1059), - [anon_sym_o_PLUSe_GT] = ACTIONS(1059), - [anon_sym_e_PLUSo_GT] = ACTIONS(1059), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1059), + [1449] = { + [sym__expression] = STATE(6980), + [sym_expr_unary] = STATE(5409), + [sym__expr_unary_minus] = STATE(5410), + [sym_expr_binary] = STATE(5409), + [sym__expr_binary_expression] = STATE(6366), + [sym_expr_parenthesized] = STATE(4635), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5409), + [sym_val_nothing] = STATE(5350), + [sym_val_bool] = STATE(5350), + [sym_val_variable] = STATE(4717), + [sym__var] = STATE(4193), + [sym_val_number] = STATE(5350), + [sym__val_number_decimal] = STATE(4266), + [sym__val_number] = STATE(5351), + [sym_val_duration] = STATE(5350), + [sym_val_filesize] = STATE(5350), + [sym_val_binary] = STATE(5350), + [sym_val_string] = STATE(5350), + [sym__str_double_quotes] = STATE(5502), + [sym_val_interpolated] = STATE(5350), + [sym__inter_single_quotes] = STATE(5420), + [sym__inter_double_quotes] = STATE(5421), + [sym_val_list] = STATE(5350), + [sym_val_record] = STATE(5350), + [sym_val_table] = STATE(5350), + [sym_val_closure] = STATE(5350), + [sym__flag] = STATE(1512), + [sym_short_flag] = STATE(4674), + [sym_long_flag] = STATE(4674), + [sym_long_flag_equals_value] = STATE(4714), + [sym_comment] = STATE(1449), + [anon_sym_SEMI] = ACTIONS(4829), + [anon_sym_LF] = ACTIONS(4831), + [anon_sym_LBRACK] = ACTIONS(4833), + [anon_sym_LPAREN] = ACTIONS(4835), + [anon_sym_RPAREN] = ACTIONS(4829), + [anon_sym_PIPE] = ACTIONS(4829), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_DASH_DASH] = ACTIONS(4875), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4841), + [anon_sym_RBRACE] = ACTIONS(4829), + [anon_sym_DOT_DOT] = ACTIONS(4843), + [anon_sym_not] = ACTIONS(4845), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4847), + [anon_sym_DOT_DOT_LT] = ACTIONS(4847), + [anon_sym_null] = ACTIONS(4849), + [anon_sym_true] = ACTIONS(4851), + [anon_sym_false] = ACTIONS(4851), + [aux_sym__val_number_decimal_token1] = ACTIONS(4853), + [aux_sym__val_number_decimal_token2] = ACTIONS(4853), + [anon_sym_DOT2] = ACTIONS(4855), + [aux_sym__val_number_decimal_token3] = ACTIONS(4857), + [aux_sym__val_number_token1] = ACTIONS(4859), + [aux_sym__val_number_token2] = ACTIONS(4859), + [aux_sym__val_number_token3] = ACTIONS(4859), + [aux_sym__val_number_token4] = ACTIONS(4859), + [aux_sym__val_number_token5] = ACTIONS(4859), + [aux_sym__val_number_token6] = ACTIONS(4859), + [anon_sym_0b] = ACTIONS(3080), + [anon_sym_0o] = ACTIONS(3082), + [anon_sym_0x] = ACTIONS(3082), + [sym_val_date] = ACTIONS(4861), + [anon_sym_DQUOTE] = ACTIONS(4863), + [sym__str_single_quotes] = ACTIONS(4865), + [sym__str_back_ticks] = ACTIONS(4865), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4867), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4869), [anon_sym_POUND] = ACTIONS(113), }, - [1242] = { - [sym_comment] = STATE(1242), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_COMMA] = ACTIONS(1063), - [anon_sym_RBRACK] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_DASH_DASH] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_QMARK2] = ACTIONS(1063), - [anon_sym_STAR_STAR] = ACTIONS(1063), - [anon_sym_PLUS_PLUS] = ACTIONS(1063), - [anon_sym_SLASH] = ACTIONS(1063), - [anon_sym_mod] = ACTIONS(1063), - [anon_sym_SLASH_SLASH] = ACTIONS(1063), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_bit_DASHshl] = ACTIONS(1063), - [anon_sym_bit_DASHshr] = ACTIONS(1063), - [anon_sym_EQ_EQ] = ACTIONS(1063), - [anon_sym_BANG_EQ] = ACTIONS(1063), - [anon_sym_LT2] = ACTIONS(1063), - [anon_sym_LT_EQ] = ACTIONS(1063), - [anon_sym_GT_EQ] = ACTIONS(1063), - [anon_sym_not_DASHin] = ACTIONS(1063), - [anon_sym_starts_DASHwith] = ACTIONS(1063), - [anon_sym_ends_DASHwith] = ACTIONS(1063), - [anon_sym_EQ_TILDE] = ACTIONS(1063), - [anon_sym_BANG_TILDE] = ACTIONS(1063), - [anon_sym_bit_DASHand] = ACTIONS(1063), - [anon_sym_bit_DASHxor] = ACTIONS(1063), - [anon_sym_bit_DASHor] = ACTIONS(1063), - [anon_sym_and] = ACTIONS(1063), - [anon_sym_xor] = ACTIONS(1063), - [anon_sym_or] = ACTIONS(1063), - [anon_sym_DOT_DOT2] = ACTIONS(1063), - [anon_sym_DOT] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1063), - [anon_sym_DOT_DOT_LT] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1065), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1065), - [anon_sym_null] = ACTIONS(1063), - [anon_sym_true] = ACTIONS(1063), - [anon_sym_false] = ACTIONS(1063), - [aux_sym__val_number_decimal_token1] = ACTIONS(1063), - [aux_sym__val_number_decimal_token2] = ACTIONS(1063), - [anon_sym_DOT2] = ACTIONS(1063), - [aux_sym__val_number_decimal_token3] = ACTIONS(1063), - [aux_sym__val_number_token1] = ACTIONS(1063), - [aux_sym__val_number_token2] = ACTIONS(1063), - [aux_sym__val_number_token3] = ACTIONS(1063), - [aux_sym__val_number_token4] = ACTIONS(1063), - [aux_sym__val_number_token5] = ACTIONS(1063), - [aux_sym__val_number_token6] = ACTIONS(1063), - [anon_sym_0b] = ACTIONS(1063), - [anon_sym_0o] = ACTIONS(1063), - [anon_sym_0x] = ACTIONS(1063), - [sym_val_date] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [sym__str_single_quotes] = ACTIONS(1063), - [sym__str_back_ticks] = ACTIONS(1063), - [sym__entry_separator] = ACTIONS(1065), - [anon_sym_err_GT] = ACTIONS(1063), - [anon_sym_out_GT] = ACTIONS(1063), - [anon_sym_e_GT] = ACTIONS(1063), - [anon_sym_o_GT] = ACTIONS(1063), - [anon_sym_err_PLUSout_GT] = ACTIONS(1063), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1063), - [anon_sym_o_PLUSe_GT] = ACTIONS(1063), - [anon_sym_e_PLUSo_GT] = ACTIONS(1063), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1063), + [1450] = { + [sym_comment] = STATE(1450), + [anon_sym_SEMI] = ACTIONS(1037), + [anon_sym_LF] = ACTIONS(1039), + [anon_sym_LBRACK] = ACTIONS(1037), + [anon_sym_LPAREN] = ACTIONS(1037), + [anon_sym_RPAREN] = ACTIONS(1037), + [anon_sym_PIPE] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1037), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_in] = ACTIONS(1037), + [anon_sym_LBRACE] = ACTIONS(1037), + [anon_sym_RBRACE] = ACTIONS(1037), + [anon_sym_DOT_DOT] = ACTIONS(1037), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_STAR_STAR] = ACTIONS(1037), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1037), + [anon_sym_mod] = ACTIONS(1037), + [anon_sym_SLASH_SLASH] = ACTIONS(1037), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_bit_DASHshl] = ACTIONS(1037), + [anon_sym_bit_DASHshr] = ACTIONS(1037), + [anon_sym_EQ_EQ] = ACTIONS(1037), + [anon_sym_BANG_EQ] = ACTIONS(1037), + [anon_sym_LT2] = ACTIONS(1037), + [anon_sym_LT_EQ] = ACTIONS(1037), + [anon_sym_GT_EQ] = ACTIONS(1037), + [anon_sym_not_DASHin] = ACTIONS(1037), + [anon_sym_starts_DASHwith] = ACTIONS(1037), + [anon_sym_ends_DASHwith] = ACTIONS(1037), + [anon_sym_EQ_TILDE] = ACTIONS(1037), + [anon_sym_BANG_TILDE] = ACTIONS(1037), + [anon_sym_bit_DASHand] = ACTIONS(1037), + [anon_sym_bit_DASHxor] = ACTIONS(1037), + [anon_sym_bit_DASHor] = ACTIONS(1037), + [anon_sym_and] = ACTIONS(1037), + [anon_sym_xor] = ACTIONS(1037), + [anon_sym_or] = ACTIONS(1037), + [anon_sym_not] = ACTIONS(1037), + [anon_sym_DOT_DOT2] = ACTIONS(1037), + [anon_sym_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1037), + [anon_sym_DOT_DOT_LT] = ACTIONS(1037), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1039), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1039), + [anon_sym_null] = ACTIONS(1037), + [anon_sym_true] = ACTIONS(1037), + [anon_sym_false] = ACTIONS(1037), + [aux_sym__val_number_decimal_token1] = ACTIONS(1037), + [aux_sym__val_number_decimal_token2] = ACTIONS(1037), + [anon_sym_DOT2] = ACTIONS(1037), + [aux_sym__val_number_decimal_token3] = ACTIONS(1037), + [aux_sym__val_number_token1] = ACTIONS(1037), + [aux_sym__val_number_token2] = ACTIONS(1037), + [aux_sym__val_number_token3] = ACTIONS(1037), + [aux_sym__val_number_token4] = ACTIONS(1037), + [aux_sym__val_number_token5] = ACTIONS(1037), + [aux_sym__val_number_token6] = ACTIONS(1037), + [anon_sym_0b] = ACTIONS(1037), + [anon_sym_0o] = ACTIONS(1037), + [anon_sym_0x] = ACTIONS(1037), + [sym_val_date] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1037), + [sym__str_single_quotes] = ACTIONS(1037), + [sym__str_back_ticks] = ACTIONS(1037), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1037), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1037), [anon_sym_POUND] = ACTIONS(113), }, - [1243] = { - [sym_comment] = STATE(1243), - [anon_sym_export] = ACTIONS(2581), - [anon_sym_alias] = ACTIONS(2581), - [anon_sym_let] = ACTIONS(2581), - [anon_sym_let_DASHenv] = ACTIONS(2581), - [anon_sym_mut] = ACTIONS(2581), - [anon_sym_const] = ACTIONS(2581), - [anon_sym_SEMI] = ACTIONS(2581), - [sym_cmd_identifier] = ACTIONS(2581), - [anon_sym_LF] = ACTIONS(2583), - [anon_sym_def] = ACTIONS(2581), - [anon_sym_export_DASHenv] = ACTIONS(2581), - [anon_sym_extern] = ACTIONS(2581), - [anon_sym_module] = ACTIONS(2581), - [anon_sym_use] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2581), - [anon_sym_RPAREN] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2581), - [anon_sym_error] = ACTIONS(2581), - [anon_sym_DASH_DASH] = ACTIONS(2581), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_break] = ACTIONS(2581), - [anon_sym_continue] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2581), - [anon_sym_loop] = ACTIONS(2581), - [anon_sym_while] = ACTIONS(2581), - [anon_sym_do] = ACTIONS(2581), - [anon_sym_if] = ACTIONS(2581), - [anon_sym_match] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2581), - [anon_sym_RBRACE] = ACTIONS(2581), - [anon_sym_DOT_DOT] = ACTIONS(2581), - [anon_sym_try] = ACTIONS(2581), - [anon_sym_return] = ACTIONS(2581), - [anon_sym_source] = ACTIONS(2581), - [anon_sym_source_DASHenv] = ACTIONS(2581), - [anon_sym_register] = ACTIONS(2581), - [anon_sym_hide] = ACTIONS(2581), - [anon_sym_hide_DASHenv] = ACTIONS(2581), - [anon_sym_overlay] = ACTIONS(2581), - [anon_sym_as] = ACTIONS(2581), - [anon_sym_where] = ACTIONS(2581), - [anon_sym_not] = ACTIONS(2581), - [anon_sym_DOT_DOT2] = ACTIONS(2581), - [anon_sym_DOT] = ACTIONS(3655), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2581), - [anon_sym_DOT_DOT_LT] = ACTIONS(2581), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2583), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2583), - [aux_sym__immediate_decimal_token2] = ACTIONS(3657), - [anon_sym_null] = ACTIONS(2581), - [anon_sym_true] = ACTIONS(2581), - [anon_sym_false] = ACTIONS(2581), - [aux_sym__val_number_decimal_token1] = ACTIONS(2581), - [aux_sym__val_number_decimal_token2] = ACTIONS(2581), - [anon_sym_DOT2] = ACTIONS(2581), - [aux_sym__val_number_decimal_token3] = ACTIONS(2581), - [aux_sym__val_number_token1] = ACTIONS(2581), - [aux_sym__val_number_token2] = ACTIONS(2581), - [aux_sym__val_number_token3] = ACTIONS(2581), - [aux_sym__val_number_token4] = ACTIONS(2581), - [aux_sym__val_number_token5] = ACTIONS(2581), - [aux_sym__val_number_token6] = ACTIONS(2581), - [anon_sym_0b] = ACTIONS(2581), - [anon_sym_0o] = ACTIONS(2581), - [anon_sym_0x] = ACTIONS(2581), - [sym_val_date] = ACTIONS(2581), - [anon_sym_DQUOTE] = ACTIONS(2581), - [sym__str_single_quotes] = ACTIONS(2581), - [sym__str_back_ticks] = ACTIONS(2581), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2581), - [anon_sym_CARET] = ACTIONS(2581), + [1451] = { + [sym_comment] = STATE(1451), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1279), + [anon_sym_let] = ACTIONS(1279), + [anon_sym_let_DASHenv] = ACTIONS(1279), + [anon_sym_mut] = ACTIONS(1279), + [anon_sym_const] = ACTIONS(1279), + [anon_sym_SEMI] = ACTIONS(1279), + [sym_cmd_identifier] = ACTIONS(1279), + [anon_sym_LF] = ACTIONS(1281), + [anon_sym_def] = ACTIONS(1279), + [anon_sym_export_DASHenv] = ACTIONS(1279), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_use] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_RPAREN] = ACTIONS(1279), + [anon_sym_DOLLAR] = ACTIONS(1279), + [anon_sym_error] = ACTIONS(1279), + [anon_sym_DASH_DASH] = ACTIONS(1279), + [anon_sym_DASH] = ACTIONS(1279), + [anon_sym_break] = ACTIONS(1279), + [anon_sym_continue] = ACTIONS(1279), + [anon_sym_for] = ACTIONS(1279), + [anon_sym_loop] = ACTIONS(1279), + [anon_sym_while] = ACTIONS(1279), + [anon_sym_do] = ACTIONS(1279), + [anon_sym_if] = ACTIONS(1279), + [anon_sym_match] = ACTIONS(1279), + [anon_sym_LBRACE] = ACTIONS(1279), + [anon_sym_RBRACE] = ACTIONS(1279), + [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym_try] = ACTIONS(1279), + [anon_sym_return] = ACTIONS(1279), + [anon_sym_source] = ACTIONS(1279), + [anon_sym_source_DASHenv] = ACTIONS(1279), + [anon_sym_register] = ACTIONS(1279), + [anon_sym_hide] = ACTIONS(1279), + [anon_sym_hide_DASHenv] = ACTIONS(1279), + [anon_sym_overlay] = ACTIONS(1279), + [anon_sym_as] = ACTIONS(1279), + [anon_sym_where] = ACTIONS(1279), + [anon_sym_not] = ACTIONS(1279), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1279), + [anon_sym_DOT_DOT_LT] = ACTIONS(1279), + [anon_sym_null] = ACTIONS(1279), + [anon_sym_true] = ACTIONS(1279), + [anon_sym_false] = ACTIONS(1279), + [aux_sym__val_number_decimal_token1] = ACTIONS(1279), + [aux_sym__val_number_decimal_token2] = ACTIONS(1279), + [anon_sym_DOT2] = ACTIONS(1279), + [aux_sym__val_number_decimal_token3] = ACTIONS(1279), + [aux_sym__val_number_token1] = ACTIONS(1279), + [aux_sym__val_number_token2] = ACTIONS(1279), + [aux_sym__val_number_token3] = ACTIONS(1279), + [aux_sym__val_number_token4] = ACTIONS(1279), + [aux_sym__val_number_token5] = ACTIONS(1279), + [aux_sym__val_number_token6] = ACTIONS(1279), + [anon_sym_0b] = ACTIONS(1279), + [anon_sym_0o] = ACTIONS(1279), + [anon_sym_0x] = ACTIONS(1279), + [sym_val_date] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(1279), + [sym__str_single_quotes] = ACTIONS(1279), + [sym__str_back_ticks] = ACTIONS(1279), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1279), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1279), + [anon_sym_CARET] = ACTIONS(1279), [anon_sym_POUND] = ACTIONS(113), }, - [1244] = { - [sym_comment] = STATE(1244), - [ts_builtin_sym_end] = ACTIONS(2583), - [anon_sym_export] = ACTIONS(2581), - [anon_sym_alias] = ACTIONS(2581), - [anon_sym_let] = ACTIONS(2581), - [anon_sym_let_DASHenv] = ACTIONS(2581), - [anon_sym_mut] = ACTIONS(2581), - [anon_sym_const] = ACTIONS(2581), - [anon_sym_SEMI] = ACTIONS(2581), - [sym_cmd_identifier] = ACTIONS(2581), - [anon_sym_LF] = ACTIONS(2583), - [anon_sym_def] = ACTIONS(2581), - [anon_sym_export_DASHenv] = ACTIONS(2581), - [anon_sym_extern] = ACTIONS(2581), - [anon_sym_module] = ACTIONS(2581), - [anon_sym_use] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2581), - [anon_sym_error] = ACTIONS(2581), - [anon_sym_DASH_DASH] = ACTIONS(2581), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_break] = ACTIONS(2581), - [anon_sym_continue] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2581), - [anon_sym_loop] = ACTIONS(2581), - [anon_sym_while] = ACTIONS(2581), - [anon_sym_do] = ACTIONS(2581), - [anon_sym_if] = ACTIONS(2581), - [anon_sym_match] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2581), - [anon_sym_DOT_DOT] = ACTIONS(2581), - [anon_sym_try] = ACTIONS(2581), - [anon_sym_return] = ACTIONS(2581), - [anon_sym_source] = ACTIONS(2581), - [anon_sym_source_DASHenv] = ACTIONS(2581), - [anon_sym_register] = ACTIONS(2581), - [anon_sym_hide] = ACTIONS(2581), - [anon_sym_hide_DASHenv] = ACTIONS(2581), - [anon_sym_overlay] = ACTIONS(2581), - [anon_sym_as] = ACTIONS(2581), - [anon_sym_where] = ACTIONS(2581), - [anon_sym_not] = ACTIONS(2581), - [anon_sym_DOT_DOT2] = ACTIONS(2581), - [anon_sym_DOT] = ACTIONS(3659), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2581), - [anon_sym_DOT_DOT_LT] = ACTIONS(2581), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2583), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2583), - [aux_sym__immediate_decimal_token2] = ACTIONS(3651), - [anon_sym_null] = ACTIONS(2581), - [anon_sym_true] = ACTIONS(2581), - [anon_sym_false] = ACTIONS(2581), - [aux_sym__val_number_decimal_token1] = ACTIONS(2581), - [aux_sym__val_number_decimal_token2] = ACTIONS(2581), - [anon_sym_DOT2] = ACTIONS(2581), - [aux_sym__val_number_decimal_token3] = ACTIONS(2581), - [aux_sym__val_number_token1] = ACTIONS(2581), - [aux_sym__val_number_token2] = ACTIONS(2581), - [aux_sym__val_number_token3] = ACTIONS(2581), - [aux_sym__val_number_token4] = ACTIONS(2581), - [aux_sym__val_number_token5] = ACTIONS(2581), - [aux_sym__val_number_token6] = ACTIONS(2581), - [anon_sym_0b] = ACTIONS(2581), - [anon_sym_0o] = ACTIONS(2581), - [anon_sym_0x] = ACTIONS(2581), - [sym_val_date] = ACTIONS(2581), - [anon_sym_DQUOTE] = ACTIONS(2581), - [sym__str_single_quotes] = ACTIONS(2581), - [sym__str_back_ticks] = ACTIONS(2581), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2581), - [anon_sym_CARET] = ACTIONS(2581), - [aux_sym_unquoted_token2] = ACTIONS(2581), + [1452] = { + [sym_comment] = STATE(1452), + [anon_sym_SEMI] = ACTIONS(1041), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_LBRACK] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1041), + [anon_sym_RPAREN] = ACTIONS(1041), + [anon_sym_PIPE] = ACTIONS(1041), + [anon_sym_DOLLAR] = ACTIONS(1041), + [anon_sym_GT] = ACTIONS(1041), + [anon_sym_DASH_DASH] = ACTIONS(1041), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_in] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_RBRACE] = ACTIONS(1041), + [anon_sym_DOT_DOT] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_STAR_STAR] = ACTIONS(1041), + [anon_sym_PLUS_PLUS] = ACTIONS(1041), + [anon_sym_SLASH] = ACTIONS(1041), + [anon_sym_mod] = ACTIONS(1041), + [anon_sym_SLASH_SLASH] = ACTIONS(1041), + [anon_sym_PLUS] = ACTIONS(1041), + [anon_sym_bit_DASHshl] = ACTIONS(1041), + [anon_sym_bit_DASHshr] = ACTIONS(1041), + [anon_sym_EQ_EQ] = ACTIONS(1041), + [anon_sym_BANG_EQ] = ACTIONS(1041), + [anon_sym_LT2] = ACTIONS(1041), + [anon_sym_LT_EQ] = ACTIONS(1041), + [anon_sym_GT_EQ] = ACTIONS(1041), + [anon_sym_not_DASHin] = ACTIONS(1041), + [anon_sym_starts_DASHwith] = ACTIONS(1041), + [anon_sym_ends_DASHwith] = ACTIONS(1041), + [anon_sym_EQ_TILDE] = ACTIONS(1041), + [anon_sym_BANG_TILDE] = ACTIONS(1041), + [anon_sym_bit_DASHand] = ACTIONS(1041), + [anon_sym_bit_DASHxor] = ACTIONS(1041), + [anon_sym_bit_DASHor] = ACTIONS(1041), + [anon_sym_and] = ACTIONS(1041), + [anon_sym_xor] = ACTIONS(1041), + [anon_sym_or] = ACTIONS(1041), + [anon_sym_not] = ACTIONS(1041), + [anon_sym_DOT_DOT2] = ACTIONS(1041), + [anon_sym_DOT] = ACTIONS(1041), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1041), + [anon_sym_DOT_DOT_LT] = ACTIONS(1041), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1043), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1043), + [anon_sym_null] = ACTIONS(1041), + [anon_sym_true] = ACTIONS(1041), + [anon_sym_false] = ACTIONS(1041), + [aux_sym__val_number_decimal_token1] = ACTIONS(1041), + [aux_sym__val_number_decimal_token2] = ACTIONS(1041), + [anon_sym_DOT2] = ACTIONS(1041), + [aux_sym__val_number_decimal_token3] = ACTIONS(1041), + [aux_sym__val_number_token1] = ACTIONS(1041), + [aux_sym__val_number_token2] = ACTIONS(1041), + [aux_sym__val_number_token3] = ACTIONS(1041), + [aux_sym__val_number_token4] = ACTIONS(1041), + [aux_sym__val_number_token5] = ACTIONS(1041), + [aux_sym__val_number_token6] = ACTIONS(1041), + [anon_sym_0b] = ACTIONS(1041), + [anon_sym_0o] = ACTIONS(1041), + [anon_sym_0x] = ACTIONS(1041), + [sym_val_date] = ACTIONS(1041), + [anon_sym_DQUOTE] = ACTIONS(1041), + [sym__str_single_quotes] = ACTIONS(1041), + [sym__str_back_ticks] = ACTIONS(1041), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1041), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1041), [anon_sym_POUND] = ACTIONS(113), }, - [1245] = { - [sym_comment] = STATE(1245), - [ts_builtin_sym_end] = ACTIONS(2845), - [anon_sym_export] = ACTIONS(2843), - [anon_sym_alias] = ACTIONS(2843), - [anon_sym_let] = ACTIONS(2843), - [anon_sym_let_DASHenv] = ACTIONS(2843), - [anon_sym_mut] = ACTIONS(2843), - [anon_sym_const] = ACTIONS(2843), - [anon_sym_SEMI] = ACTIONS(2843), - [sym_cmd_identifier] = ACTIONS(2843), - [anon_sym_LF] = ACTIONS(2845), - [anon_sym_def] = ACTIONS(2843), - [anon_sym_export_DASHenv] = ACTIONS(2843), - [anon_sym_extern] = ACTIONS(2843), - [anon_sym_module] = ACTIONS(2843), - [anon_sym_use] = ACTIONS(2843), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_LPAREN] = ACTIONS(2843), - [anon_sym_DOLLAR] = ACTIONS(2843), - [anon_sym_error] = ACTIONS(2843), - [anon_sym_DASH_DASH] = ACTIONS(2843), - [anon_sym_DASH] = ACTIONS(2843), - [anon_sym_break] = ACTIONS(2843), - [anon_sym_continue] = ACTIONS(2843), - [anon_sym_for] = ACTIONS(2843), - [anon_sym_loop] = ACTIONS(2843), - [anon_sym_while] = ACTIONS(2843), - [anon_sym_do] = ACTIONS(2843), - [anon_sym_if] = ACTIONS(2843), - [anon_sym_match] = ACTIONS(2843), - [anon_sym_LBRACE] = ACTIONS(2843), - [anon_sym_DOT_DOT] = ACTIONS(2843), - [anon_sym_try] = ACTIONS(2843), - [anon_sym_return] = ACTIONS(2843), - [anon_sym_source] = ACTIONS(2843), - [anon_sym_source_DASHenv] = ACTIONS(2843), - [anon_sym_register] = ACTIONS(2843), - [anon_sym_hide] = ACTIONS(2843), - [anon_sym_hide_DASHenv] = ACTIONS(2843), - [anon_sym_overlay] = ACTIONS(2843), - [anon_sym_as] = ACTIONS(2843), - [anon_sym_where] = ACTIONS(2843), - [anon_sym_not] = ACTIONS(2843), - [anon_sym_LPAREN2] = ACTIONS(2847), - [anon_sym_DOT_DOT2] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(2851), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2843), - [anon_sym_DOT_DOT_LT] = ACTIONS(2843), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3664), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3664), - [anon_sym_null] = ACTIONS(2843), - [anon_sym_true] = ACTIONS(2843), - [anon_sym_false] = ACTIONS(2843), - [aux_sym__val_number_decimal_token1] = ACTIONS(2843), - [aux_sym__val_number_decimal_token2] = ACTIONS(2843), - [anon_sym_DOT2] = ACTIONS(2843), - [aux_sym__val_number_decimal_token3] = ACTIONS(2843), - [aux_sym__val_number_token1] = ACTIONS(2843), - [aux_sym__val_number_token2] = ACTIONS(2843), - [aux_sym__val_number_token3] = ACTIONS(2843), - [aux_sym__val_number_token4] = ACTIONS(2843), - [aux_sym__val_number_token5] = ACTIONS(2843), - [aux_sym__val_number_token6] = ACTIONS(2843), - [anon_sym_0b] = ACTIONS(2843), - [anon_sym_0o] = ACTIONS(2843), - [anon_sym_0x] = ACTIONS(2843), - [sym_val_date] = ACTIONS(2843), - [anon_sym_DQUOTE] = ACTIONS(2843), - [sym__str_single_quotes] = ACTIONS(2843), - [sym__str_back_ticks] = ACTIONS(2843), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2843), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2843), - [anon_sym_CARET] = ACTIONS(2843), - [aux_sym_unquoted_token2] = ACTIONS(2851), + [1453] = { + [sym_comment] = STATE(1453), + [anon_sym_export] = ACTIONS(1165), + [anon_sym_alias] = ACTIONS(1165), + [anon_sym_let] = ACTIONS(1165), + [anon_sym_let_DASHenv] = ACTIONS(1165), + [anon_sym_mut] = ACTIONS(1165), + [anon_sym_const] = ACTIONS(1165), + [anon_sym_SEMI] = ACTIONS(1165), + [sym_cmd_identifier] = ACTIONS(1165), + [anon_sym_LF] = ACTIONS(1167), + [anon_sym_def] = ACTIONS(1165), + [anon_sym_export_DASHenv] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1165), + [anon_sym_module] = ACTIONS(1165), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_LPAREN] = ACTIONS(1165), + [anon_sym_RPAREN] = ACTIONS(1165), + [anon_sym_DOLLAR] = ACTIONS(1165), + [anon_sym_error] = ACTIONS(1165), + [anon_sym_DASH_DASH] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_break] = ACTIONS(1165), + [anon_sym_continue] = ACTIONS(1165), + [anon_sym_for] = ACTIONS(1165), + [anon_sym_loop] = ACTIONS(1165), + [anon_sym_while] = ACTIONS(1165), + [anon_sym_do] = ACTIONS(1165), + [anon_sym_if] = ACTIONS(1165), + [anon_sym_match] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(1165), + [anon_sym_RBRACE] = ACTIONS(1165), + [anon_sym_DOT_DOT] = ACTIONS(1165), + [anon_sym_try] = ACTIONS(1165), + [anon_sym_return] = ACTIONS(1165), + [anon_sym_source] = ACTIONS(1165), + [anon_sym_source_DASHenv] = ACTIONS(1165), + [anon_sym_register] = ACTIONS(1165), + [anon_sym_hide] = ACTIONS(1165), + [anon_sym_hide_DASHenv] = ACTIONS(1165), + [anon_sym_overlay] = ACTIONS(1165), + [anon_sym_as] = ACTIONS(1165), + [anon_sym_where] = ACTIONS(1165), + [anon_sym_not] = ACTIONS(1165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1165), + [anon_sym_DOT_DOT_LT] = ACTIONS(1165), + [anon_sym_null] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1165), + [anon_sym_false] = ACTIONS(1165), + [aux_sym__val_number_decimal_token1] = ACTIONS(1165), + [aux_sym__val_number_decimal_token2] = ACTIONS(1165), + [anon_sym_DOT2] = ACTIONS(1165), + [aux_sym__val_number_decimal_token3] = ACTIONS(1165), + [aux_sym__val_number_token1] = ACTIONS(1165), + [aux_sym__val_number_token2] = ACTIONS(1165), + [aux_sym__val_number_token3] = ACTIONS(1165), + [aux_sym__val_number_token4] = ACTIONS(1165), + [aux_sym__val_number_token5] = ACTIONS(1165), + [aux_sym__val_number_token6] = ACTIONS(1165), + [anon_sym_0b] = ACTIONS(1165), + [anon_sym_0o] = ACTIONS(1165), + [anon_sym_0x] = ACTIONS(1165), + [sym_val_date] = ACTIONS(1165), + [anon_sym_DQUOTE] = ACTIONS(1165), + [sym__str_single_quotes] = ACTIONS(1165), + [sym__str_back_ticks] = ACTIONS(1165), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1165), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1165), + [anon_sym_CARET] = ACTIONS(1165), [anon_sym_POUND] = ACTIONS(113), }, - [1246] = { - [sym__immediate_decimal] = STATE(10460), - [sym_comment] = STATE(1246), - [anon_sym_LBRACK] = ACTIONS(938), - [anon_sym_COMMA] = ACTIONS(938), - [anon_sym_LPAREN] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(938), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(938), - [anon_sym__] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_STAR_STAR] = ACTIONS(938), - [anon_sym_PLUS_PLUS] = ACTIONS(938), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(938), - [anon_sym_SLASH_SLASH] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(938), - [anon_sym_bit_DASHshr] = ACTIONS(938), - [anon_sym_EQ_EQ] = ACTIONS(938), - [anon_sym_BANG_EQ] = ACTIONS(938), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(938), - [anon_sym_GT_EQ] = ACTIONS(938), - [anon_sym_not_DASHin] = ACTIONS(938), - [anon_sym_starts_DASHwith] = ACTIONS(938), - [anon_sym_ends_DASHwith] = ACTIONS(938), - [anon_sym_EQ_TILDE] = ACTIONS(938), - [anon_sym_BANG_TILDE] = ACTIONS(938), - [anon_sym_bit_DASHand] = ACTIONS(938), - [anon_sym_bit_DASHxor] = ACTIONS(938), - [anon_sym_bit_DASHor] = ACTIONS(938), - [anon_sym_and] = ACTIONS(938), - [anon_sym_xor] = ACTIONS(938), - [anon_sym_or] = ACTIONS(938), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_DOT_DOT_EQ] = ACTIONS(938), - [anon_sym_DOT_DOT_LT] = ACTIONS(938), - [aux_sym__immediate_decimal_token1] = ACTIONS(1045), - [aux_sym__immediate_decimal_token3] = ACTIONS(1609), - [aux_sym__immediate_decimal_token4] = ACTIONS(1611), - [anon_sym_null] = ACTIONS(938), - [anon_sym_true] = ACTIONS(938), - [anon_sym_false] = ACTIONS(938), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(938), - [aux_sym__val_number_token2] = ACTIONS(938), - [aux_sym__val_number_token3] = ACTIONS(938), - [aux_sym__val_number_token4] = ACTIONS(938), - [aux_sym__val_number_token5] = ACTIONS(938), - [aux_sym__val_number_token6] = ACTIONS(938), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(938), - [sym__str_single_quotes] = ACTIONS(938), - [sym__str_back_ticks] = ACTIONS(938), - [anon_sym_err_GT] = ACTIONS(938), - [anon_sym_out_GT] = ACTIONS(938), - [anon_sym_e_GT] = ACTIONS(938), - [anon_sym_o_GT] = ACTIONS(938), - [anon_sym_err_PLUSout_GT] = ACTIONS(938), - [anon_sym_out_PLUSerr_GT] = ACTIONS(938), - [anon_sym_o_PLUSe_GT] = ACTIONS(938), - [anon_sym_e_PLUSo_GT] = ACTIONS(938), - [aux_sym_unquoted_token1] = ACTIONS(936), - [aux_sym_unquoted_token4] = ACTIONS(2905), - [anon_sym_POUND] = ACTIONS(3), - }, - [1247] = { - [sym_comment] = STATE(1247), - [anon_sym_export] = ACTIONS(3518), - [anon_sym_alias] = ACTIONS(3518), - [anon_sym_let] = ACTIONS(3518), - [anon_sym_let_DASHenv] = ACTIONS(3518), - [anon_sym_mut] = ACTIONS(3518), - [anon_sym_const] = ACTIONS(3518), - [anon_sym_SEMI] = ACTIONS(3518), - [sym_cmd_identifier] = ACTIONS(3518), - [anon_sym_LF] = ACTIONS(3520), - [anon_sym_def] = ACTIONS(3518), - [anon_sym_export_DASHenv] = ACTIONS(3518), - [anon_sym_extern] = ACTIONS(3518), - [anon_sym_module] = ACTIONS(3518), - [anon_sym_use] = ACTIONS(3518), - [anon_sym_LBRACK] = ACTIONS(3518), - [anon_sym_LPAREN] = ACTIONS(3518), - [anon_sym_RPAREN] = ACTIONS(3518), - [anon_sym_DOLLAR] = ACTIONS(3518), - [anon_sym_error] = ACTIONS(3518), - [anon_sym_DASH_DASH] = ACTIONS(3518), - [anon_sym_DASH] = ACTIONS(3518), - [anon_sym_break] = ACTIONS(3518), - [anon_sym_continue] = ACTIONS(3518), - [anon_sym_for] = ACTIONS(3518), - [anon_sym_loop] = ACTIONS(3518), - [anon_sym_while] = ACTIONS(3518), - [anon_sym_do] = ACTIONS(3518), - [anon_sym_if] = ACTIONS(3518), - [anon_sym_match] = ACTIONS(3518), - [anon_sym_LBRACE] = ACTIONS(3518), - [anon_sym_RBRACE] = ACTIONS(3518), - [anon_sym_DOT_DOT] = ACTIONS(3518), - [anon_sym_try] = ACTIONS(3518), - [anon_sym_return] = ACTIONS(3518), - [anon_sym_source] = ACTIONS(3518), - [anon_sym_source_DASHenv] = ACTIONS(3518), - [anon_sym_register] = ACTIONS(3518), - [anon_sym_hide] = ACTIONS(3518), - [anon_sym_hide_DASHenv] = ACTIONS(3518), - [anon_sym_overlay] = ACTIONS(3518), - [anon_sym_as] = ACTIONS(3518), - [anon_sym_where] = ACTIONS(3518), - [anon_sym_not] = ACTIONS(3518), - [anon_sym_DOT_DOT2] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(1934), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3518), - [anon_sym_DOT_DOT_LT] = ACTIONS(3518), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3668), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3668), - [anon_sym_null] = ACTIONS(3518), - [anon_sym_true] = ACTIONS(3518), - [anon_sym_false] = ACTIONS(3518), - [aux_sym__val_number_decimal_token1] = ACTIONS(3518), - [aux_sym__val_number_decimal_token2] = ACTIONS(3518), - [anon_sym_DOT2] = ACTIONS(3518), - [aux_sym__val_number_decimal_token3] = ACTIONS(3518), - [aux_sym__val_number_token1] = ACTIONS(3518), - [aux_sym__val_number_token2] = ACTIONS(3518), - [aux_sym__val_number_token3] = ACTIONS(3518), - [aux_sym__val_number_token4] = ACTIONS(3518), - [aux_sym__val_number_token5] = ACTIONS(3518), - [aux_sym__val_number_token6] = ACTIONS(3518), - [anon_sym_0b] = ACTIONS(3518), - [anon_sym_0o] = ACTIONS(3518), - [anon_sym_0x] = ACTIONS(3518), - [sym_val_date] = ACTIONS(3518), - [anon_sym_DQUOTE] = ACTIONS(3518), - [sym__str_single_quotes] = ACTIONS(3518), - [sym__str_back_ticks] = ACTIONS(3518), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3518), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3518), - [anon_sym_CARET] = ACTIONS(3518), - [aux_sym_unquoted_token2] = ACTIONS(1934), + [1454] = { + [sym_comment] = STATE(1454), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_COMMA] = ACTIONS(1179), + [anon_sym_RBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(4879), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(4881), + [anon_sym_in] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(4883), + [anon_sym_STAR_STAR] = ACTIONS(4885), + [anon_sym_PLUS_PLUS] = ACTIONS(4885), + [anon_sym_SLASH] = ACTIONS(4883), + [anon_sym_mod] = ACTIONS(4883), + [anon_sym_SLASH_SLASH] = ACTIONS(4883), + [anon_sym_PLUS] = ACTIONS(4881), + [anon_sym_bit_DASHshl] = ACTIONS(4887), + [anon_sym_bit_DASHshr] = ACTIONS(4887), + [anon_sym_EQ_EQ] = ACTIONS(4879), + [anon_sym_BANG_EQ] = ACTIONS(4879), + [anon_sym_LT2] = ACTIONS(4879), + [anon_sym_LT_EQ] = ACTIONS(4879), + [anon_sym_GT_EQ] = ACTIONS(4879), + [anon_sym_not_DASHin] = ACTIONS(1179), + [anon_sym_starts_DASHwith] = ACTIONS(1179), + [anon_sym_ends_DASHwith] = ACTIONS(1179), + [anon_sym_EQ_TILDE] = ACTIONS(1179), + [anon_sym_BANG_TILDE] = ACTIONS(1179), + [anon_sym_bit_DASHand] = ACTIONS(1179), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [sym__entry_separator] = ACTIONS(1181), + [anon_sym_err_GT] = ACTIONS(1179), + [anon_sym_out_GT] = ACTIONS(1179), + [anon_sym_e_GT] = ACTIONS(1179), + [anon_sym_o_GT] = ACTIONS(1179), + [anon_sym_err_PLUSout_GT] = ACTIONS(1179), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1179), + [anon_sym_o_PLUSe_GT] = ACTIONS(1179), + [anon_sym_e_PLUSo_GT] = ACTIONS(1179), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, - [1248] = { - [sym_comment] = STATE(1248), - [anon_sym_export] = ACTIONS(2843), - [anon_sym_alias] = ACTIONS(2843), - [anon_sym_let] = ACTIONS(2843), - [anon_sym_let_DASHenv] = ACTIONS(2843), - [anon_sym_mut] = ACTIONS(2843), - [anon_sym_const] = ACTIONS(2843), - [anon_sym_SEMI] = ACTIONS(2843), - [sym_cmd_identifier] = ACTIONS(2843), - [anon_sym_LF] = ACTIONS(2845), - [anon_sym_def] = ACTIONS(2843), - [anon_sym_export_DASHenv] = ACTIONS(2843), - [anon_sym_extern] = ACTIONS(2843), - [anon_sym_module] = ACTIONS(2843), - [anon_sym_use] = ACTIONS(2843), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_LPAREN] = ACTIONS(2843), - [anon_sym_RPAREN] = ACTIONS(2843), - [anon_sym_DOLLAR] = ACTIONS(2843), - [anon_sym_error] = ACTIONS(2843), - [anon_sym_DASH_DASH] = ACTIONS(2843), - [anon_sym_DASH] = ACTIONS(2843), - [anon_sym_break] = ACTIONS(2843), - [anon_sym_continue] = ACTIONS(2843), - [anon_sym_for] = ACTIONS(2843), - [anon_sym_loop] = ACTIONS(2843), - [anon_sym_while] = ACTIONS(2843), - [anon_sym_do] = ACTIONS(2843), - [anon_sym_if] = ACTIONS(2843), - [anon_sym_match] = ACTIONS(2843), - [anon_sym_LBRACE] = ACTIONS(2843), - [anon_sym_RBRACE] = ACTIONS(2843), - [anon_sym_DOT_DOT] = ACTIONS(2843), - [anon_sym_try] = ACTIONS(2843), - [anon_sym_return] = ACTIONS(2843), - [anon_sym_source] = ACTIONS(2843), - [anon_sym_source_DASHenv] = ACTIONS(2843), - [anon_sym_register] = ACTIONS(2843), - [anon_sym_hide] = ACTIONS(2843), - [anon_sym_hide_DASHenv] = ACTIONS(2843), - [anon_sym_overlay] = ACTIONS(2843), - [anon_sym_as] = ACTIONS(2843), - [anon_sym_where] = ACTIONS(2843), - [anon_sym_not] = ACTIONS(2843), - [anon_sym_DOT_DOT2] = ACTIONS(3670), - [anon_sym_DOT] = ACTIONS(2851), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2843), - [anon_sym_DOT_DOT_LT] = ACTIONS(2843), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3672), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3672), - [anon_sym_null] = ACTIONS(2843), - [anon_sym_true] = ACTIONS(2843), - [anon_sym_false] = ACTIONS(2843), - [aux_sym__val_number_decimal_token1] = ACTIONS(2843), - [aux_sym__val_number_decimal_token2] = ACTIONS(2843), - [anon_sym_DOT2] = ACTIONS(2843), - [aux_sym__val_number_decimal_token3] = ACTIONS(2843), - [aux_sym__val_number_token1] = ACTIONS(2843), - [aux_sym__val_number_token2] = ACTIONS(2843), - [aux_sym__val_number_token3] = ACTIONS(2843), - [aux_sym__val_number_token4] = ACTIONS(2843), - [aux_sym__val_number_token5] = ACTIONS(2843), - [aux_sym__val_number_token6] = ACTIONS(2843), - [anon_sym_0b] = ACTIONS(2843), - [anon_sym_0o] = ACTIONS(2843), - [anon_sym_0x] = ACTIONS(2843), - [sym_val_date] = ACTIONS(2843), - [anon_sym_DQUOTE] = ACTIONS(2843), - [sym__str_single_quotes] = ACTIONS(2843), - [sym__str_back_ticks] = ACTIONS(2843), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2843), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2843), - [anon_sym_CARET] = ACTIONS(2843), - [aux_sym_unquoted_token2] = ACTIONS(2851), + [1455] = { + [sym__expression] = STATE(6980), + [sym_expr_unary] = STATE(5409), + [sym__expr_unary_minus] = STATE(5410), + [sym_expr_binary] = STATE(5409), + [sym__expr_binary_expression] = STATE(6366), + [sym_expr_parenthesized] = STATE(4635), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5409), + [sym_val_nothing] = STATE(5350), + [sym_val_bool] = STATE(5350), + [sym_val_variable] = STATE(4717), + [sym__var] = STATE(4193), + [sym_val_number] = STATE(5350), + [sym__val_number_decimal] = STATE(4266), + [sym__val_number] = STATE(5351), + [sym_val_duration] = STATE(5350), + [sym_val_filesize] = STATE(5350), + [sym_val_binary] = STATE(5350), + [sym_val_string] = STATE(5350), + [sym__str_double_quotes] = STATE(5502), + [sym_val_interpolated] = STATE(5350), + [sym__inter_single_quotes] = STATE(5420), + [sym__inter_double_quotes] = STATE(5421), + [sym_val_list] = STATE(5350), + [sym_val_record] = STATE(5350), + [sym_val_table] = STATE(5350), + [sym_val_closure] = STATE(5350), + [sym__flag] = STATE(1513), + [sym_short_flag] = STATE(4674), + [sym_long_flag] = STATE(4674), + [sym_long_flag_equals_value] = STATE(4714), + [sym_comment] = STATE(1455), + [anon_sym_SEMI] = ACTIONS(4829), + [anon_sym_LF] = ACTIONS(4831), + [anon_sym_LBRACK] = ACTIONS(4833), + [anon_sym_LPAREN] = ACTIONS(4835), + [anon_sym_RPAREN] = ACTIONS(4829), + [anon_sym_PIPE] = ACTIONS(4829), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_DASH_DASH] = ACTIONS(4875), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4841), + [anon_sym_RBRACE] = ACTIONS(4829), + [anon_sym_DOT_DOT] = ACTIONS(4843), + [anon_sym_not] = ACTIONS(4845), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4847), + [anon_sym_DOT_DOT_LT] = ACTIONS(4847), + [anon_sym_null] = ACTIONS(4849), + [anon_sym_true] = ACTIONS(4851), + [anon_sym_false] = ACTIONS(4851), + [aux_sym__val_number_decimal_token1] = ACTIONS(4853), + [aux_sym__val_number_decimal_token2] = ACTIONS(4853), + [anon_sym_DOT2] = ACTIONS(4855), + [aux_sym__val_number_decimal_token3] = ACTIONS(4857), + [aux_sym__val_number_token1] = ACTIONS(4859), + [aux_sym__val_number_token2] = ACTIONS(4859), + [aux_sym__val_number_token3] = ACTIONS(4859), + [aux_sym__val_number_token4] = ACTIONS(4859), + [aux_sym__val_number_token5] = ACTIONS(4859), + [aux_sym__val_number_token6] = ACTIONS(4859), + [anon_sym_0b] = ACTIONS(3080), + [anon_sym_0o] = ACTIONS(3082), + [anon_sym_0x] = ACTIONS(3082), + [sym_val_date] = ACTIONS(4861), + [anon_sym_DQUOTE] = ACTIONS(4863), + [sym__str_single_quotes] = ACTIONS(4865), + [sym__str_back_ticks] = ACTIONS(4865), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4867), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4869), [anon_sym_POUND] = ACTIONS(113), }, - [1249] = { - [sym_cell_path] = STATE(1546), - [sym_path] = STATE(1250), - [sym_comment] = STATE(1249), - [anon_sym_LBRACK] = ACTIONS(1012), - [anon_sym_COMMA] = ACTIONS(1012), - [anon_sym_RBRACK] = ACTIONS(1012), - [anon_sym_LPAREN] = ACTIONS(1012), - [anon_sym_DOLLAR] = ACTIONS(1012), - [anon_sym_GT] = ACTIONS(1010), - [anon_sym_DASH_DASH] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_in] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_DOT_DOT] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1010), - [anon_sym_STAR_STAR] = ACTIONS(1012), - [anon_sym_PLUS_PLUS] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1010), - [anon_sym_mod] = ACTIONS(1012), - [anon_sym_SLASH_SLASH] = ACTIONS(1012), - [anon_sym_PLUS] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1012), - [anon_sym_bit_DASHshr] = ACTIONS(1012), - [anon_sym_EQ_EQ] = ACTIONS(1012), - [anon_sym_BANG_EQ] = ACTIONS(1012), - [anon_sym_LT2] = ACTIONS(1010), - [anon_sym_LT_EQ] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1012), - [anon_sym_not_DASHin] = ACTIONS(1012), - [anon_sym_starts_DASHwith] = ACTIONS(1012), - [anon_sym_ends_DASHwith] = ACTIONS(1012), - [anon_sym_EQ_TILDE] = ACTIONS(1012), - [anon_sym_BANG_TILDE] = ACTIONS(1012), - [anon_sym_bit_DASHand] = ACTIONS(1012), - [anon_sym_bit_DASHxor] = ACTIONS(1012), - [anon_sym_bit_DASHor] = ACTIONS(1012), - [anon_sym_and] = ACTIONS(1012), - [anon_sym_xor] = ACTIONS(1012), - [anon_sym_or] = ACTIONS(1012), - [anon_sym_DOT_DOT2] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(3674), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT] = ACTIONS(1010), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), - [anon_sym_null] = ACTIONS(1012), - [anon_sym_true] = ACTIONS(1012), - [anon_sym_false] = ACTIONS(1012), - [aux_sym__val_number_decimal_token1] = ACTIONS(1010), - [aux_sym__val_number_decimal_token2] = ACTIONS(1012), - [anon_sym_DOT2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = 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(1010), - [anon_sym_0o] = ACTIONS(1010), - [anon_sym_0x] = ACTIONS(1010), - [sym_val_date] = ACTIONS(1012), - [anon_sym_DQUOTE] = ACTIONS(1012), - [sym__str_single_quotes] = ACTIONS(1012), - [sym__str_back_ticks] = ACTIONS(1012), - [anon_sym_err_GT] = ACTIONS(1012), - [anon_sym_out_GT] = ACTIONS(1012), - [anon_sym_e_GT] = ACTIONS(1012), - [anon_sym_o_GT] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT] = ACTIONS(1012), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1010), - [anon_sym_POUND] = ACTIONS(3), - }, - [1250] = { - [sym_path] = STATE(1368), - [sym_comment] = STATE(1250), - [aux_sym_cell_path_repeat1] = STATE(1251), - [anon_sym_LBRACK] = ACTIONS(989), - [anon_sym_COMMA] = ACTIONS(989), - [anon_sym_RBRACK] = ACTIONS(989), - [anon_sym_LPAREN] = ACTIONS(989), - [anon_sym_DOLLAR] = ACTIONS(989), - [anon_sym_GT] = ACTIONS(987), - [anon_sym_DASH_DASH] = ACTIONS(989), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_in] = ACTIONS(987), - [anon_sym_LBRACE] = ACTIONS(989), - [anon_sym_DOT_DOT] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(987), - [anon_sym_STAR_STAR] = ACTIONS(989), - [anon_sym_PLUS_PLUS] = ACTIONS(989), - [anon_sym_SLASH] = ACTIONS(987), - [anon_sym_mod] = ACTIONS(989), - [anon_sym_SLASH_SLASH] = ACTIONS(989), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_bit_DASHshl] = ACTIONS(989), - [anon_sym_bit_DASHshr] = ACTIONS(989), - [anon_sym_EQ_EQ] = ACTIONS(989), - [anon_sym_BANG_EQ] = ACTIONS(989), - [anon_sym_LT2] = ACTIONS(987), - [anon_sym_LT_EQ] = ACTIONS(989), - [anon_sym_GT_EQ] = ACTIONS(989), - [anon_sym_not_DASHin] = ACTIONS(989), - [anon_sym_starts_DASHwith] = ACTIONS(989), - [anon_sym_ends_DASHwith] = ACTIONS(989), - [anon_sym_EQ_TILDE] = ACTIONS(989), - [anon_sym_BANG_TILDE] = ACTIONS(989), - [anon_sym_bit_DASHand] = ACTIONS(989), - [anon_sym_bit_DASHxor] = ACTIONS(989), - [anon_sym_bit_DASHor] = ACTIONS(989), - [anon_sym_and] = ACTIONS(989), - [anon_sym_xor] = ACTIONS(989), - [anon_sym_or] = ACTIONS(989), - [anon_sym_DOT_DOT2] = ACTIONS(987), - [anon_sym_DOT] = ACTIONS(3674), - [anon_sym_DOT_DOT_EQ] = ACTIONS(987), - [anon_sym_DOT_DOT_LT] = ACTIONS(987), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(989), - [anon_sym_DOT_DOT_LT2] = ACTIONS(989), - [anon_sym_null] = ACTIONS(989), - [anon_sym_true] = ACTIONS(989), - [anon_sym_false] = ACTIONS(989), - [aux_sym__val_number_decimal_token1] = ACTIONS(987), - [aux_sym__val_number_decimal_token2] = ACTIONS(989), - [anon_sym_DOT2] = ACTIONS(987), - [aux_sym__val_number_decimal_token3] = ACTIONS(989), - [aux_sym__val_number_token1] = ACTIONS(989), - [aux_sym__val_number_token2] = ACTIONS(989), - [aux_sym__val_number_token3] = ACTIONS(989), - [aux_sym__val_number_token4] = ACTIONS(989), - [aux_sym__val_number_token5] = ACTIONS(989), - [aux_sym__val_number_token6] = ACTIONS(989), - [anon_sym_0b] = ACTIONS(987), - [anon_sym_0o] = ACTIONS(987), - [anon_sym_0x] = ACTIONS(987), - [sym_val_date] = ACTIONS(989), - [anon_sym_DQUOTE] = ACTIONS(989), - [sym__str_single_quotes] = ACTIONS(989), - [sym__str_back_ticks] = ACTIONS(989), - [anon_sym_err_GT] = ACTIONS(989), - [anon_sym_out_GT] = ACTIONS(989), - [anon_sym_e_GT] = ACTIONS(989), - [anon_sym_o_GT] = ACTIONS(989), - [anon_sym_err_PLUSout_GT] = ACTIONS(989), - [anon_sym_out_PLUSerr_GT] = ACTIONS(989), - [anon_sym_o_PLUSe_GT] = ACTIONS(989), - [anon_sym_e_PLUSo_GT] = ACTIONS(989), - [aux_sym__unquoted_in_list_token1] = ACTIONS(987), - [anon_sym_POUND] = ACTIONS(3), - }, - [1251] = { - [sym_path] = STATE(1368), - [sym_comment] = STATE(1251), - [aux_sym_cell_path_repeat1] = STATE(1254), - [anon_sym_LBRACK] = ACTIONS(1008), - [anon_sym_COMMA] = ACTIONS(1008), - [anon_sym_RBRACK] = ACTIONS(1008), - [anon_sym_LPAREN] = ACTIONS(1008), - [anon_sym_DOLLAR] = ACTIONS(1008), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_DASH_DASH] = ACTIONS(1008), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_in] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1008), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_STAR_STAR] = ACTIONS(1008), - [anon_sym_PLUS_PLUS] = ACTIONS(1008), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_mod] = ACTIONS(1008), - [anon_sym_SLASH_SLASH] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_bit_DASHshl] = ACTIONS(1008), - [anon_sym_bit_DASHshr] = ACTIONS(1008), - [anon_sym_EQ_EQ] = ACTIONS(1008), - [anon_sym_BANG_EQ] = ACTIONS(1008), - [anon_sym_LT2] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1008), - [anon_sym_GT_EQ] = ACTIONS(1008), - [anon_sym_not_DASHin] = ACTIONS(1008), - [anon_sym_starts_DASHwith] = ACTIONS(1008), - [anon_sym_ends_DASHwith] = ACTIONS(1008), - [anon_sym_EQ_TILDE] = ACTIONS(1008), - [anon_sym_BANG_TILDE] = ACTIONS(1008), - [anon_sym_bit_DASHand] = ACTIONS(1008), - [anon_sym_bit_DASHxor] = ACTIONS(1008), - [anon_sym_bit_DASHor] = ACTIONS(1008), - [anon_sym_and] = ACTIONS(1008), - [anon_sym_xor] = ACTIONS(1008), - [anon_sym_or] = ACTIONS(1008), - [anon_sym_DOT_DOT2] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(3674), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), - [anon_sym_null] = ACTIONS(1008), - [anon_sym_true] = ACTIONS(1008), - [anon_sym_false] = ACTIONS(1008), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1008), - [anon_sym_DOT2] = ACTIONS(1006), - [aux_sym__val_number_decimal_token3] = ACTIONS(1008), - [aux_sym__val_number_token1] = ACTIONS(1008), - [aux_sym__val_number_token2] = ACTIONS(1008), - [aux_sym__val_number_token3] = ACTIONS(1008), - [aux_sym__val_number_token4] = ACTIONS(1008), - [aux_sym__val_number_token5] = ACTIONS(1008), - [aux_sym__val_number_token6] = ACTIONS(1008), - [anon_sym_0b] = ACTIONS(1006), - [anon_sym_0o] = ACTIONS(1006), - [anon_sym_0x] = ACTIONS(1006), - [sym_val_date] = ACTIONS(1008), - [anon_sym_DQUOTE] = ACTIONS(1008), - [sym__str_single_quotes] = ACTIONS(1008), - [sym__str_back_ticks] = ACTIONS(1008), - [anon_sym_err_GT] = ACTIONS(1008), - [anon_sym_out_GT] = ACTIONS(1008), - [anon_sym_e_GT] = ACTIONS(1008), - [anon_sym_o_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT] = ACTIONS(1008), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1006), - [anon_sym_POUND] = ACTIONS(3), - }, - [1252] = { - [sym_comment] = STATE(1252), - [anon_sym_SEMI] = ACTIONS(909), - [anon_sym_LF] = ACTIONS(911), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_RPAREN] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_RBRACE] = ACTIONS(909), - [anon_sym_DOT_DOT] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(909), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(909), - [anon_sym_SLASH_SLASH] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(909), - [anon_sym_bit_DASHshr] = ACTIONS(909), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_not_DASHin] = ACTIONS(909), - [anon_sym_starts_DASHwith] = ACTIONS(909), - [anon_sym_ends_DASHwith] = ACTIONS(909), - [anon_sym_EQ_TILDE] = ACTIONS(909), - [anon_sym_BANG_TILDE] = ACTIONS(909), - [anon_sym_bit_DASHand] = ACTIONS(909), - [anon_sym_bit_DASHxor] = ACTIONS(909), - [anon_sym_bit_DASHor] = ACTIONS(909), - [anon_sym_and] = ACTIONS(909), - [anon_sym_xor] = ACTIONS(909), - [anon_sym_or] = ACTIONS(909), - [anon_sym_not] = ACTIONS(909), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [aux_sym__immediate_decimal_token1] = ACTIONS(3676), - [aux_sym__immediate_decimal_token2] = ACTIONS(3678), - [anon_sym_null] = ACTIONS(909), - [anon_sym_true] = ACTIONS(909), - [anon_sym_false] = ACTIONS(909), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(909), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(909), - [aux_sym__val_number_token1] = ACTIONS(909), - [aux_sym__val_number_token2] = ACTIONS(909), - [aux_sym__val_number_token3] = ACTIONS(909), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(909), - [aux_sym__val_number_token6] = ACTIONS(909), - [anon_sym_0b] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(911), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym__str_single_quotes] = ACTIONS(909), - [sym__str_back_ticks] = ACTIONS(909), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), - [aux_sym_unquoted_token5] = ACTIONS(909), + [1456] = { + [sym_comment] = STATE(1456), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_COMMA] = ACTIONS(1179), + [anon_sym_RBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(4881), + [anon_sym_in] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(4883), + [anon_sym_STAR_STAR] = ACTIONS(4885), + [anon_sym_PLUS_PLUS] = ACTIONS(4885), + [anon_sym_SLASH] = ACTIONS(4883), + [anon_sym_mod] = ACTIONS(4883), + [anon_sym_SLASH_SLASH] = ACTIONS(4883), + [anon_sym_PLUS] = ACTIONS(4881), + [anon_sym_bit_DASHshl] = ACTIONS(1179), + [anon_sym_bit_DASHshr] = ACTIONS(1179), + [anon_sym_EQ_EQ] = ACTIONS(1179), + [anon_sym_BANG_EQ] = ACTIONS(1179), + [anon_sym_LT2] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1179), + [anon_sym_GT_EQ] = ACTIONS(1179), + [anon_sym_not_DASHin] = ACTIONS(1179), + [anon_sym_starts_DASHwith] = ACTIONS(1179), + [anon_sym_ends_DASHwith] = ACTIONS(1179), + [anon_sym_EQ_TILDE] = ACTIONS(1179), + [anon_sym_BANG_TILDE] = ACTIONS(1179), + [anon_sym_bit_DASHand] = ACTIONS(1179), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [sym__entry_separator] = ACTIONS(1181), + [anon_sym_err_GT] = ACTIONS(1179), + [anon_sym_out_GT] = ACTIONS(1179), + [anon_sym_e_GT] = ACTIONS(1179), + [anon_sym_o_GT] = ACTIONS(1179), + [anon_sym_err_PLUSout_GT] = ACTIONS(1179), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1179), + [anon_sym_o_PLUSe_GT] = ACTIONS(1179), + [anon_sym_e_PLUSo_GT] = ACTIONS(1179), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, - [1253] = { - [sym__immediate_decimal] = STATE(9346), - [sym_comment] = STATE(1253), - [ts_builtin_sym_end] = ACTIONS(938), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_error] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_where] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [aux_sym__immediate_decimal_token1] = ACTIONS(942), - [aux_sym__immediate_decimal_token3] = ACTIONS(942), - [aux_sym__immediate_decimal_token4] = ACTIONS(944), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [aux_sym_unquoted_token3] = ACTIONS(3682), - [aux_sym_unquoted_token5] = ACTIONS(3684), + [1457] = { + [sym_comment] = STATE(1457), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_COMMA] = ACTIONS(1179), + [anon_sym_RBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(4879), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(4881), + [anon_sym_in] = ACTIONS(4889), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(4883), + [anon_sym_STAR_STAR] = ACTIONS(4885), + [anon_sym_PLUS_PLUS] = ACTIONS(4885), + [anon_sym_SLASH] = ACTIONS(4883), + [anon_sym_mod] = ACTIONS(4883), + [anon_sym_SLASH_SLASH] = ACTIONS(4883), + [anon_sym_PLUS] = ACTIONS(4881), + [anon_sym_bit_DASHshl] = ACTIONS(4887), + [anon_sym_bit_DASHshr] = ACTIONS(4887), + [anon_sym_EQ_EQ] = ACTIONS(4879), + [anon_sym_BANG_EQ] = ACTIONS(4879), + [anon_sym_LT2] = ACTIONS(4879), + [anon_sym_LT_EQ] = ACTIONS(4879), + [anon_sym_GT_EQ] = ACTIONS(4879), + [anon_sym_not_DASHin] = ACTIONS(4889), + [anon_sym_starts_DASHwith] = ACTIONS(4889), + [anon_sym_ends_DASHwith] = ACTIONS(4889), + [anon_sym_EQ_TILDE] = ACTIONS(1179), + [anon_sym_BANG_TILDE] = ACTIONS(1179), + [anon_sym_bit_DASHand] = ACTIONS(1179), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [sym__entry_separator] = ACTIONS(1181), + [anon_sym_err_GT] = ACTIONS(1179), + [anon_sym_out_GT] = ACTIONS(1179), + [anon_sym_e_GT] = ACTIONS(1179), + [anon_sym_o_GT] = ACTIONS(1179), + [anon_sym_err_PLUSout_GT] = ACTIONS(1179), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1179), + [anon_sym_o_PLUSe_GT] = ACTIONS(1179), + [anon_sym_e_PLUSo_GT] = ACTIONS(1179), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, - [1254] = { - [sym_path] = STATE(1368), - [sym_comment] = STATE(1254), - [aux_sym_cell_path_repeat1] = STATE(1254), - [anon_sym_LBRACK] = ACTIONS(1001), - [anon_sym_COMMA] = ACTIONS(1001), - [anon_sym_RBRACK] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1001), - [anon_sym_DOLLAR] = ACTIONS(1001), - [anon_sym_GT] = ACTIONS(999), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_in] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1001), - [anon_sym_DOT_DOT] = ACTIONS(999), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_STAR_STAR] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(999), - [anon_sym_mod] = ACTIONS(1001), - [anon_sym_SLASH_SLASH] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_bit_DASHshl] = ACTIONS(1001), - [anon_sym_bit_DASHshr] = ACTIONS(1001), - [anon_sym_EQ_EQ] = ACTIONS(1001), - [anon_sym_BANG_EQ] = ACTIONS(1001), - [anon_sym_LT2] = ACTIONS(999), - [anon_sym_LT_EQ] = ACTIONS(1001), - [anon_sym_GT_EQ] = ACTIONS(1001), - [anon_sym_not_DASHin] = ACTIONS(1001), - [anon_sym_starts_DASHwith] = ACTIONS(1001), - [anon_sym_ends_DASHwith] = ACTIONS(1001), - [anon_sym_EQ_TILDE] = ACTIONS(1001), - [anon_sym_BANG_TILDE] = ACTIONS(1001), - [anon_sym_bit_DASHand] = ACTIONS(1001), - [anon_sym_bit_DASHxor] = ACTIONS(1001), - [anon_sym_bit_DASHor] = ACTIONS(1001), - [anon_sym_and] = ACTIONS(1001), - [anon_sym_xor] = ACTIONS(1001), - [anon_sym_or] = ACTIONS(1001), - [anon_sym_DOT_DOT2] = ACTIONS(999), - [anon_sym_DOT] = ACTIONS(3686), - [anon_sym_DOT_DOT_EQ] = ACTIONS(999), - [anon_sym_DOT_DOT_LT] = ACTIONS(999), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1001), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1001), - [anon_sym_null] = ACTIONS(1001), - [anon_sym_true] = ACTIONS(1001), - [anon_sym_false] = ACTIONS(1001), - [aux_sym__val_number_decimal_token1] = ACTIONS(999), - [aux_sym__val_number_decimal_token2] = ACTIONS(1001), - [anon_sym_DOT2] = ACTIONS(999), - [aux_sym__val_number_decimal_token3] = ACTIONS(1001), - [aux_sym__val_number_token1] = ACTIONS(1001), - [aux_sym__val_number_token2] = ACTIONS(1001), - [aux_sym__val_number_token3] = ACTIONS(1001), - [aux_sym__val_number_token4] = ACTIONS(1001), - [aux_sym__val_number_token5] = ACTIONS(1001), - [aux_sym__val_number_token6] = ACTIONS(1001), - [anon_sym_0b] = ACTIONS(999), - [anon_sym_0o] = ACTIONS(999), - [anon_sym_0x] = ACTIONS(999), - [sym_val_date] = ACTIONS(1001), - [anon_sym_DQUOTE] = ACTIONS(1001), - [sym__str_single_quotes] = ACTIONS(1001), - [sym__str_back_ticks] = ACTIONS(1001), - [anon_sym_err_GT] = ACTIONS(1001), - [anon_sym_out_GT] = ACTIONS(1001), - [anon_sym_e_GT] = ACTIONS(1001), - [anon_sym_o_GT] = ACTIONS(1001), - [anon_sym_err_PLUSout_GT] = ACTIONS(1001), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1001), - [anon_sym_o_PLUSe_GT] = ACTIONS(1001), - [anon_sym_e_PLUSo_GT] = ACTIONS(1001), - [aux_sym__unquoted_in_list_token1] = ACTIONS(999), - [anon_sym_POUND] = ACTIONS(3), + [1458] = { + [sym_comment] = STATE(1458), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_COMMA] = ACTIONS(1179), + [anon_sym_RBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(4883), + [anon_sym_STAR_STAR] = ACTIONS(4885), + [anon_sym_PLUS_PLUS] = ACTIONS(4885), + [anon_sym_SLASH] = ACTIONS(4883), + [anon_sym_mod] = ACTIONS(4883), + [anon_sym_SLASH_SLASH] = ACTIONS(4883), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_bit_DASHshl] = ACTIONS(1179), + [anon_sym_bit_DASHshr] = ACTIONS(1179), + [anon_sym_EQ_EQ] = ACTIONS(1179), + [anon_sym_BANG_EQ] = ACTIONS(1179), + [anon_sym_LT2] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1179), + [anon_sym_GT_EQ] = ACTIONS(1179), + [anon_sym_not_DASHin] = ACTIONS(1179), + [anon_sym_starts_DASHwith] = ACTIONS(1179), + [anon_sym_ends_DASHwith] = ACTIONS(1179), + [anon_sym_EQ_TILDE] = ACTIONS(1179), + [anon_sym_BANG_TILDE] = ACTIONS(1179), + [anon_sym_bit_DASHand] = ACTIONS(1179), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [sym__entry_separator] = ACTIONS(1181), + [anon_sym_err_GT] = ACTIONS(1179), + [anon_sym_out_GT] = ACTIONS(1179), + [anon_sym_e_GT] = ACTIONS(1179), + [anon_sym_o_GT] = ACTIONS(1179), + [anon_sym_err_PLUSout_GT] = ACTIONS(1179), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1179), + [anon_sym_o_PLUSe_GT] = ACTIONS(1179), + [anon_sym_e_PLUSo_GT] = ACTIONS(1179), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(113), }, - [1255] = { - [sym_comment] = STATE(1255), - [anon_sym_LBRACK] = ACTIONS(911), - [anon_sym_COMMA] = ACTIONS(911), - [anon_sym_LPAREN] = ACTIONS(911), - [anon_sym_DOLLAR] = ACTIONS(911), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(911), - [anon_sym_RBRACE] = ACTIONS(911), - [anon_sym__] = ACTIONS(909), - [anon_sym_DOT_DOT] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(911), - [anon_sym_PLUS_PLUS] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(911), - [anon_sym_SLASH_SLASH] = ACTIONS(911), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(911), - [anon_sym_bit_DASHshr] = ACTIONS(911), - [anon_sym_EQ_EQ] = ACTIONS(911), - [anon_sym_BANG_EQ] = ACTIONS(911), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(911), - [anon_sym_GT_EQ] = ACTIONS(911), - [anon_sym_not_DASHin] = ACTIONS(911), - [anon_sym_starts_DASHwith] = ACTIONS(911), - [anon_sym_ends_DASHwith] = ACTIONS(911), - [anon_sym_EQ_TILDE] = ACTIONS(911), - [anon_sym_BANG_TILDE] = ACTIONS(911), - [anon_sym_bit_DASHand] = ACTIONS(911), - [anon_sym_bit_DASHxor] = ACTIONS(911), - [anon_sym_bit_DASHor] = ACTIONS(911), - [anon_sym_and] = ACTIONS(911), - [anon_sym_xor] = ACTIONS(911), - [anon_sym_or] = ACTIONS(911), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [aux_sym__immediate_decimal_token2] = ACTIONS(3267), - [anon_sym_null] = ACTIONS(911), - [anon_sym_true] = ACTIONS(911), - [anon_sym_false] = ACTIONS(911), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(911), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(911), - [aux_sym__val_number_token1] = ACTIONS(911), - [aux_sym__val_number_token2] = ACTIONS(911), - [aux_sym__val_number_token3] = ACTIONS(911), - [aux_sym__val_number_token4] = ACTIONS(911), - [aux_sym__val_number_token5] = ACTIONS(911), - [aux_sym__val_number_token6] = ACTIONS(911), - [anon_sym_0b] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(911), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(911), - [anon_sym_DQUOTE] = ACTIONS(911), - [sym__str_single_quotes] = ACTIONS(911), - [sym__str_back_ticks] = ACTIONS(911), - [anon_sym_err_GT] = ACTIONS(911), - [anon_sym_out_GT] = ACTIONS(911), - [anon_sym_e_GT] = ACTIONS(911), - [anon_sym_o_GT] = ACTIONS(911), - [anon_sym_err_PLUSout_GT] = ACTIONS(911), - [anon_sym_out_PLUSerr_GT] = ACTIONS(911), - [anon_sym_o_PLUSe_GT] = ACTIONS(911), - [anon_sym_e_PLUSo_GT] = ACTIONS(911), - [aux_sym_unquoted_token1] = ACTIONS(909), - [anon_sym_POUND] = ACTIONS(3), + [1459] = { + [sym_comment] = STATE(1459), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_COMMA] = ACTIONS(1179), + [anon_sym_RBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1179), + [anon_sym_STAR_STAR] = ACTIONS(4885), + [anon_sym_PLUS_PLUS] = ACTIONS(4885), + [anon_sym_SLASH] = ACTIONS(1179), + [anon_sym_mod] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_bit_DASHshl] = ACTIONS(1179), + [anon_sym_bit_DASHshr] = ACTIONS(1179), + [anon_sym_EQ_EQ] = ACTIONS(1179), + [anon_sym_BANG_EQ] = ACTIONS(1179), + [anon_sym_LT2] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1179), + [anon_sym_GT_EQ] = ACTIONS(1179), + [anon_sym_not_DASHin] = ACTIONS(1179), + [anon_sym_starts_DASHwith] = ACTIONS(1179), + [anon_sym_ends_DASHwith] = ACTIONS(1179), + [anon_sym_EQ_TILDE] = ACTIONS(1179), + [anon_sym_BANG_TILDE] = ACTIONS(1179), + [anon_sym_bit_DASHand] = ACTIONS(1179), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [sym__entry_separator] = ACTIONS(1181), + [anon_sym_err_GT] = ACTIONS(1179), + [anon_sym_out_GT] = ACTIONS(1179), + [anon_sym_e_GT] = ACTIONS(1179), + [anon_sym_o_GT] = ACTIONS(1179), + [anon_sym_err_PLUSout_GT] = ACTIONS(1179), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1179), + [anon_sym_o_PLUSe_GT] = ACTIONS(1179), + [anon_sym_e_PLUSo_GT] = ACTIONS(1179), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(113), }, - [1256] = { - [sym_comment] = STATE(1256), - [anon_sym_LBRACK] = ACTIONS(919), - [anon_sym_COMMA] = ACTIONS(919), - [anon_sym_LPAREN] = ACTIONS(919), - [anon_sym_DOLLAR] = ACTIONS(919), - [anon_sym_GT] = ACTIONS(917), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_in] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(919), - [anon_sym_RBRACE] = ACTIONS(919), - [anon_sym__] = ACTIONS(917), - [anon_sym_DOT_DOT] = ACTIONS(917), - [anon_sym_STAR] = ACTIONS(917), - [anon_sym_STAR_STAR] = ACTIONS(919), - [anon_sym_PLUS_PLUS] = ACTIONS(919), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_mod] = ACTIONS(919), - [anon_sym_SLASH_SLASH] = ACTIONS(919), - [anon_sym_PLUS] = ACTIONS(917), - [anon_sym_bit_DASHshl] = ACTIONS(919), - [anon_sym_bit_DASHshr] = ACTIONS(919), - [anon_sym_EQ_EQ] = ACTIONS(919), - [anon_sym_BANG_EQ] = ACTIONS(919), - [anon_sym_LT2] = ACTIONS(917), - [anon_sym_LT_EQ] = ACTIONS(919), - [anon_sym_GT_EQ] = ACTIONS(919), - [anon_sym_not_DASHin] = ACTIONS(919), - [anon_sym_starts_DASHwith] = ACTIONS(919), - [anon_sym_ends_DASHwith] = ACTIONS(919), - [anon_sym_EQ_TILDE] = ACTIONS(919), - [anon_sym_BANG_TILDE] = ACTIONS(919), - [anon_sym_bit_DASHand] = ACTIONS(919), - [anon_sym_bit_DASHxor] = ACTIONS(919), - [anon_sym_bit_DASHor] = ACTIONS(919), - [anon_sym_and] = ACTIONS(919), - [anon_sym_xor] = ACTIONS(919), - [anon_sym_or] = ACTIONS(919), - [anon_sym_DOT_DOT2] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ] = ACTIONS(917), - [anon_sym_DOT_DOT_LT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(919), - [anon_sym_DOT_DOT_LT2] = ACTIONS(919), - [aux_sym__immediate_decimal_token2] = ACTIONS(3689), - [anon_sym_null] = ACTIONS(919), - [anon_sym_true] = ACTIONS(919), - [anon_sym_false] = ACTIONS(919), - [aux_sym__val_number_decimal_token1] = ACTIONS(917), - [aux_sym__val_number_decimal_token2] = ACTIONS(919), - [anon_sym_DOT2] = ACTIONS(917), - [aux_sym__val_number_decimal_token3] = ACTIONS(919), - [aux_sym__val_number_token1] = ACTIONS(919), - [aux_sym__val_number_token2] = ACTIONS(919), - [aux_sym__val_number_token3] = ACTIONS(919), - [aux_sym__val_number_token4] = ACTIONS(919), - [aux_sym__val_number_token5] = ACTIONS(919), - [aux_sym__val_number_token6] = ACTIONS(919), - [anon_sym_0b] = ACTIONS(917), - [sym_filesize_unit] = ACTIONS(917), - [sym_duration_unit] = ACTIONS(919), - [anon_sym_0o] = ACTIONS(917), - [anon_sym_0x] = ACTIONS(917), - [sym_val_date] = ACTIONS(919), - [anon_sym_DQUOTE] = ACTIONS(919), - [sym__str_single_quotes] = ACTIONS(919), - [sym__str_back_ticks] = ACTIONS(919), - [anon_sym_err_GT] = ACTIONS(919), - [anon_sym_out_GT] = ACTIONS(919), - [anon_sym_e_GT] = ACTIONS(919), - [anon_sym_o_GT] = ACTIONS(919), - [anon_sym_err_PLUSout_GT] = ACTIONS(919), - [anon_sym_out_PLUSerr_GT] = ACTIONS(919), - [anon_sym_o_PLUSe_GT] = ACTIONS(919), - [anon_sym_e_PLUSo_GT] = ACTIONS(919), - [aux_sym_unquoted_token1] = ACTIONS(917), - [anon_sym_POUND] = ACTIONS(3), + [1460] = { + [sym_comment] = STATE(1460), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_COMMA] = ACTIONS(1179), + [anon_sym_RBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(4881), + [anon_sym_in] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(4883), + [anon_sym_STAR_STAR] = ACTIONS(4885), + [anon_sym_PLUS_PLUS] = ACTIONS(4885), + [anon_sym_SLASH] = ACTIONS(4883), + [anon_sym_mod] = ACTIONS(4883), + [anon_sym_SLASH_SLASH] = ACTIONS(4883), + [anon_sym_PLUS] = ACTIONS(4881), + [anon_sym_bit_DASHshl] = ACTIONS(4887), + [anon_sym_bit_DASHshr] = ACTIONS(4887), + [anon_sym_EQ_EQ] = ACTIONS(1179), + [anon_sym_BANG_EQ] = ACTIONS(1179), + [anon_sym_LT2] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1179), + [anon_sym_GT_EQ] = ACTIONS(1179), + [anon_sym_not_DASHin] = ACTIONS(1179), + [anon_sym_starts_DASHwith] = ACTIONS(1179), + [anon_sym_ends_DASHwith] = ACTIONS(1179), + [anon_sym_EQ_TILDE] = ACTIONS(1179), + [anon_sym_BANG_TILDE] = ACTIONS(1179), + [anon_sym_bit_DASHand] = ACTIONS(1179), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [sym__entry_separator] = ACTIONS(1181), + [anon_sym_err_GT] = ACTIONS(1179), + [anon_sym_out_GT] = ACTIONS(1179), + [anon_sym_e_GT] = ACTIONS(1179), + [anon_sym_o_GT] = ACTIONS(1179), + [anon_sym_err_PLUSout_GT] = ACTIONS(1179), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1179), + [anon_sym_o_PLUSe_GT] = ACTIONS(1179), + [anon_sym_e_PLUSo_GT] = ACTIONS(1179), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(113), }, - [1257] = { - [sym_cell_path] = STATE(1557), - [sym_path] = STATE(1278), - [sym_comment] = STATE(1257), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_COMMA] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_DOLLAR] = ACTIONS(997), - [anon_sym_GT] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_in] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(997), - [anon_sym_RBRACE] = ACTIONS(997), - [anon_sym__] = ACTIONS(995), - [anon_sym_DOT_DOT] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_STAR_STAR] = ACTIONS(997), - [anon_sym_PLUS_PLUS] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(995), - [anon_sym_mod] = ACTIONS(997), - [anon_sym_SLASH_SLASH] = ACTIONS(997), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_bit_DASHshl] = ACTIONS(997), - [anon_sym_bit_DASHshr] = ACTIONS(997), - [anon_sym_EQ_EQ] = ACTIONS(997), - [anon_sym_BANG_EQ] = ACTIONS(997), - [anon_sym_LT2] = ACTIONS(995), - [anon_sym_LT_EQ] = ACTIONS(997), - [anon_sym_GT_EQ] = ACTIONS(997), - [anon_sym_not_DASHin] = ACTIONS(997), - [anon_sym_starts_DASHwith] = ACTIONS(997), - [anon_sym_ends_DASHwith] = ACTIONS(997), - [anon_sym_EQ_TILDE] = ACTIONS(997), - [anon_sym_BANG_TILDE] = ACTIONS(997), - [anon_sym_bit_DASHand] = ACTIONS(997), - [anon_sym_bit_DASHxor] = ACTIONS(997), - [anon_sym_bit_DASHor] = ACTIONS(997), - [anon_sym_and] = ACTIONS(997), - [anon_sym_xor] = ACTIONS(997), - [anon_sym_or] = ACTIONS(997), - [anon_sym_DOT_DOT2] = ACTIONS(995), - [anon_sym_DOT] = ACTIONS(3636), - [anon_sym_DOT_DOT_EQ] = ACTIONS(995), - [anon_sym_DOT_DOT_LT] = ACTIONS(995), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(997), - [anon_sym_DOT_DOT_LT2] = ACTIONS(997), - [anon_sym_null] = ACTIONS(997), - [anon_sym_true] = ACTIONS(997), - [anon_sym_false] = ACTIONS(997), - [aux_sym__val_number_decimal_token1] = ACTIONS(995), - [aux_sym__val_number_decimal_token2] = ACTIONS(997), - [anon_sym_DOT2] = ACTIONS(995), - [aux_sym__val_number_decimal_token3] = ACTIONS(997), - [aux_sym__val_number_token1] = ACTIONS(997), - [aux_sym__val_number_token2] = ACTIONS(997), - [aux_sym__val_number_token3] = ACTIONS(997), - [aux_sym__val_number_token4] = ACTIONS(997), - [aux_sym__val_number_token5] = ACTIONS(997), - [aux_sym__val_number_token6] = ACTIONS(997), - [anon_sym_0b] = ACTIONS(995), - [anon_sym_0o] = ACTIONS(995), - [anon_sym_0x] = ACTIONS(995), - [sym_val_date] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(997), - [sym__str_single_quotes] = ACTIONS(997), - [sym__str_back_ticks] = ACTIONS(997), - [anon_sym_err_GT] = ACTIONS(997), - [anon_sym_out_GT] = ACTIONS(997), - [anon_sym_e_GT] = ACTIONS(997), - [anon_sym_o_GT] = ACTIONS(997), - [anon_sym_err_PLUSout_GT] = ACTIONS(997), - [anon_sym_out_PLUSerr_GT] = ACTIONS(997), - [anon_sym_o_PLUSe_GT] = ACTIONS(997), - [anon_sym_e_PLUSo_GT] = ACTIONS(997), - [aux_sym_unquoted_token1] = ACTIONS(995), - [anon_sym_POUND] = ACTIONS(3), + [1461] = { + [sym_comment] = STATE(1461), + [ts_builtin_sym_end] = ACTIONS(1209), + [anon_sym_export] = ACTIONS(1139), + [anon_sym_alias] = ACTIONS(1139), + [anon_sym_let] = ACTIONS(1139), + [anon_sym_let_DASHenv] = ACTIONS(1139), + [anon_sym_mut] = ACTIONS(1139), + [anon_sym_const] = ACTIONS(1139), + [anon_sym_SEMI] = ACTIONS(1139), + [sym_cmd_identifier] = ACTIONS(1139), + [anon_sym_LF] = ACTIONS(1139), + [anon_sym_def] = ACTIONS(1139), + [anon_sym_export_DASHenv] = ACTIONS(1139), + [anon_sym_extern] = ACTIONS(1139), + [anon_sym_module] = ACTIONS(1139), + [anon_sym_use] = ACTIONS(1139), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LPAREN] = ACTIONS(1139), + [anon_sym_DOLLAR] = ACTIONS(1139), + [anon_sym_error] = ACTIONS(1139), + [anon_sym_DASH_DASH] = ACTIONS(1139), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_break] = ACTIONS(1139), + [anon_sym_continue] = ACTIONS(1139), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_loop] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1139), + [anon_sym_do] = ACTIONS(1139), + [anon_sym_if] = ACTIONS(1139), + [anon_sym_match] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1139), + [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_try] = ACTIONS(1139), + [anon_sym_return] = ACTIONS(1139), + [anon_sym_source] = ACTIONS(1139), + [anon_sym_source_DASHenv] = ACTIONS(1139), + [anon_sym_register] = ACTIONS(1139), + [anon_sym_hide] = ACTIONS(1139), + [anon_sym_hide_DASHenv] = ACTIONS(1139), + [anon_sym_overlay] = ACTIONS(1139), + [anon_sym_as] = ACTIONS(1139), + [anon_sym_where] = ACTIONS(1139), + [anon_sym_not] = ACTIONS(1139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1139), + [anon_sym_DOT_DOT_LT] = ACTIONS(1139), + [anon_sym_null] = ACTIONS(1139), + [anon_sym_true] = ACTIONS(1139), + [anon_sym_false] = ACTIONS(1139), + [aux_sym__val_number_decimal_token1] = ACTIONS(1139), + [aux_sym__val_number_decimal_token2] = ACTIONS(1139), + [anon_sym_DOT2] = ACTIONS(1139), + [aux_sym__val_number_decimal_token3] = ACTIONS(1139), + [aux_sym__val_number_token1] = ACTIONS(1139), + [aux_sym__val_number_token2] = ACTIONS(1139), + [aux_sym__val_number_token3] = ACTIONS(1139), + [aux_sym__val_number_token4] = ACTIONS(1139), + [aux_sym__val_number_token5] = ACTIONS(1139), + [aux_sym__val_number_token6] = ACTIONS(1139), + [anon_sym_0b] = ACTIONS(1139), + [anon_sym_0o] = ACTIONS(1139), + [anon_sym_0x] = ACTIONS(1139), + [sym_val_date] = ACTIONS(1139), + [anon_sym_DQUOTE] = ACTIONS(1139), + [sym__str_single_quotes] = ACTIONS(1139), + [sym__str_back_ticks] = ACTIONS(1139), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1139), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1139), + [aux_sym__list_item_starts_with_sign_token1] = ACTIONS(4891), + [anon_sym_CARET] = ACTIONS(1139), + [anon_sym_POUND] = ACTIONS(113), }, - [1258] = { - [sym__immediate_decimal] = STATE(10460), - [sym_comment] = STATE(1258), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_error] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_RBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_where] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [aux_sym__immediate_decimal_token1] = ACTIONS(1045), - [aux_sym__immediate_decimal_token3] = ACTIONS(1045), - [aux_sym__immediate_decimal_token4] = ACTIONS(1047), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [aux_sym_unquoted_token4] = ACTIONS(3588), + [1462] = { + [sym__expression] = STATE(6980), + [sym_expr_unary] = STATE(5409), + [sym__expr_unary_minus] = STATE(5410), + [sym_expr_binary] = STATE(5409), + [sym__expr_binary_expression] = STATE(6366), + [sym_expr_parenthesized] = STATE(4635), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5409), + [sym_val_nothing] = STATE(5350), + [sym_val_bool] = STATE(5350), + [sym_val_variable] = STATE(4717), + [sym__var] = STATE(4193), + [sym_val_number] = STATE(5350), + [sym__val_number_decimal] = STATE(4266), + [sym__val_number] = STATE(5351), + [sym_val_duration] = STATE(5350), + [sym_val_filesize] = STATE(5350), + [sym_val_binary] = STATE(5350), + [sym_val_string] = STATE(5350), + [sym__str_double_quotes] = STATE(5502), + [sym_val_interpolated] = STATE(5350), + [sym__inter_single_quotes] = STATE(5420), + [sym__inter_double_quotes] = STATE(5421), + [sym_val_list] = STATE(5350), + [sym_val_record] = STATE(5350), + [sym_val_table] = STATE(5350), + [sym_val_closure] = STATE(5350), + [sym__flag] = STATE(1516), + [sym_short_flag] = STATE(4674), + [sym_long_flag] = STATE(4674), + [sym_long_flag_equals_value] = STATE(4714), + [sym_comment] = STATE(1462), + [anon_sym_SEMI] = ACTIONS(4829), + [anon_sym_LF] = ACTIONS(4831), + [anon_sym_LBRACK] = ACTIONS(4833), + [anon_sym_LPAREN] = ACTIONS(4835), + [anon_sym_RPAREN] = ACTIONS(4829), + [anon_sym_PIPE] = ACTIONS(4829), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_DASH_DASH] = ACTIONS(4875), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4841), + [anon_sym_RBRACE] = ACTIONS(4829), + [anon_sym_DOT_DOT] = ACTIONS(4843), + [anon_sym_not] = ACTIONS(4845), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4847), + [anon_sym_DOT_DOT_LT] = ACTIONS(4847), + [anon_sym_null] = ACTIONS(4849), + [anon_sym_true] = ACTIONS(4851), + [anon_sym_false] = ACTIONS(4851), + [aux_sym__val_number_decimal_token1] = ACTIONS(4853), + [aux_sym__val_number_decimal_token2] = ACTIONS(4853), + [anon_sym_DOT2] = ACTIONS(4855), + [aux_sym__val_number_decimal_token3] = ACTIONS(4857), + [aux_sym__val_number_token1] = ACTIONS(4859), + [aux_sym__val_number_token2] = ACTIONS(4859), + [aux_sym__val_number_token3] = ACTIONS(4859), + [aux_sym__val_number_token4] = ACTIONS(4859), + [aux_sym__val_number_token5] = ACTIONS(4859), + [aux_sym__val_number_token6] = ACTIONS(4859), + [anon_sym_0b] = ACTIONS(3080), + [anon_sym_0o] = ACTIONS(3082), + [anon_sym_0x] = ACTIONS(3082), + [sym_val_date] = ACTIONS(4861), + [anon_sym_DQUOTE] = ACTIONS(4863), + [sym__str_single_quotes] = ACTIONS(4865), + [sym__str_back_ticks] = ACTIONS(4865), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4867), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4869), [anon_sym_POUND] = ACTIONS(113), }, - [1259] = { - [sym_comment] = STATE(1259), - [anon_sym_export] = ACTIONS(1059), - [anon_sym_alias] = ACTIONS(1059), - [anon_sym_let] = ACTIONS(1059), - [anon_sym_let_DASHenv] = ACTIONS(1059), - [anon_sym_mut] = ACTIONS(1059), - [anon_sym_const] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [sym_cmd_identifier] = ACTIONS(1059), - [anon_sym_LF] = ACTIONS(1061), - [anon_sym_def] = ACTIONS(1059), - [anon_sym_export_DASHenv] = ACTIONS(1059), - [anon_sym_extern] = ACTIONS(1059), - [anon_sym_module] = ACTIONS(1059), - [anon_sym_use] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_error] = ACTIONS(1059), - [anon_sym_DASH_DASH] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_break] = ACTIONS(1059), - [anon_sym_continue] = ACTIONS(1059), - [anon_sym_for] = ACTIONS(1059), - [anon_sym_loop] = ACTIONS(1059), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_do] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1059), - [anon_sym_match] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(1059), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_try] = ACTIONS(1059), - [anon_sym_return] = ACTIONS(1059), - [anon_sym_source] = ACTIONS(1059), - [anon_sym_source_DASHenv] = ACTIONS(1059), - [anon_sym_register] = ACTIONS(1059), - [anon_sym_hide] = ACTIONS(1059), - [anon_sym_hide_DASHenv] = ACTIONS(1059), - [anon_sym_overlay] = ACTIONS(1059), - [anon_sym_as] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(1059), - [anon_sym_QMARK2] = ACTIONS(1059), - [anon_sym_not] = ACTIONS(1059), - [anon_sym_DOT_DOT2] = ACTIONS(1059), - [anon_sym_DOT] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1059), - [anon_sym_DOT_DOT_LT] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1061), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1061), - [anon_sym_null] = ACTIONS(1059), - [anon_sym_true] = ACTIONS(1059), - [anon_sym_false] = ACTIONS(1059), - [aux_sym__val_number_decimal_token1] = ACTIONS(1059), - [aux_sym__val_number_decimal_token2] = ACTIONS(1059), - [anon_sym_DOT2] = ACTIONS(1059), - [aux_sym__val_number_decimal_token3] = ACTIONS(1059), - [aux_sym__val_number_token1] = ACTIONS(1059), - [aux_sym__val_number_token2] = ACTIONS(1059), - [aux_sym__val_number_token3] = ACTIONS(1059), - [aux_sym__val_number_token4] = ACTIONS(1059), - [aux_sym__val_number_token5] = ACTIONS(1059), - [aux_sym__val_number_token6] = ACTIONS(1059), - [anon_sym_0b] = ACTIONS(1059), - [anon_sym_0o] = ACTIONS(1059), - [anon_sym_0x] = ACTIONS(1059), - [sym_val_date] = ACTIONS(1059), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym__str_single_quotes] = ACTIONS(1059), - [sym__str_back_ticks] = ACTIONS(1059), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1059), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1059), - [anon_sym_CARET] = ACTIONS(1059), + [1463] = { + [sym_comment] = STATE(1463), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_COMMA] = ACTIONS(1179), + [anon_sym_RBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(4879), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(4881), + [anon_sym_in] = ACTIONS(4889), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(4883), + [anon_sym_STAR_STAR] = ACTIONS(4885), + [anon_sym_PLUS_PLUS] = ACTIONS(4885), + [anon_sym_SLASH] = ACTIONS(4883), + [anon_sym_mod] = ACTIONS(4883), + [anon_sym_SLASH_SLASH] = ACTIONS(4883), + [anon_sym_PLUS] = ACTIONS(4881), + [anon_sym_bit_DASHshl] = ACTIONS(4887), + [anon_sym_bit_DASHshr] = ACTIONS(4887), + [anon_sym_EQ_EQ] = ACTIONS(4879), + [anon_sym_BANG_EQ] = ACTIONS(4879), + [anon_sym_LT2] = ACTIONS(4879), + [anon_sym_LT_EQ] = ACTIONS(4879), + [anon_sym_GT_EQ] = ACTIONS(4879), + [anon_sym_not_DASHin] = ACTIONS(4889), + [anon_sym_starts_DASHwith] = ACTIONS(4889), + [anon_sym_ends_DASHwith] = ACTIONS(4889), + [anon_sym_EQ_TILDE] = ACTIONS(4893), + [anon_sym_BANG_TILDE] = ACTIONS(4893), + [anon_sym_bit_DASHand] = ACTIONS(1179), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [sym__entry_separator] = ACTIONS(1181), + [anon_sym_err_GT] = ACTIONS(1179), + [anon_sym_out_GT] = ACTIONS(1179), + [anon_sym_e_GT] = ACTIONS(1179), + [anon_sym_o_GT] = ACTIONS(1179), + [anon_sym_err_PLUSout_GT] = ACTIONS(1179), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1179), + [anon_sym_o_PLUSe_GT] = ACTIONS(1179), + [anon_sym_e_PLUSo_GT] = ACTIONS(1179), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, - [1260] = { - [sym_comment] = STATE(1260), - [anon_sym_export] = ACTIONS(1063), - [anon_sym_alias] = ACTIONS(1063), - [anon_sym_let] = ACTIONS(1063), - [anon_sym_let_DASHenv] = ACTIONS(1063), - [anon_sym_mut] = ACTIONS(1063), - [anon_sym_const] = ACTIONS(1063), - [anon_sym_SEMI] = ACTIONS(1063), - [sym_cmd_identifier] = ACTIONS(1063), - [anon_sym_LF] = ACTIONS(1065), - [anon_sym_def] = ACTIONS(1063), - [anon_sym_export_DASHenv] = ACTIONS(1063), - [anon_sym_extern] = ACTIONS(1063), - [anon_sym_module] = ACTIONS(1063), - [anon_sym_use] = ACTIONS(1063), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_RPAREN] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_error] = ACTIONS(1063), - [anon_sym_DASH_DASH] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_break] = ACTIONS(1063), - [anon_sym_continue] = ACTIONS(1063), - [anon_sym_for] = ACTIONS(1063), - [anon_sym_loop] = ACTIONS(1063), - [anon_sym_while] = ACTIONS(1063), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_if] = ACTIONS(1063), - [anon_sym_match] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_RBRACE] = ACTIONS(1063), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1063), - [anon_sym_return] = ACTIONS(1063), - [anon_sym_source] = ACTIONS(1063), - [anon_sym_source_DASHenv] = ACTIONS(1063), - [anon_sym_register] = ACTIONS(1063), - [anon_sym_hide] = ACTIONS(1063), - [anon_sym_hide_DASHenv] = ACTIONS(1063), - [anon_sym_overlay] = ACTIONS(1063), - [anon_sym_as] = ACTIONS(1063), - [anon_sym_where] = ACTIONS(1063), - [anon_sym_QMARK2] = ACTIONS(1063), - [anon_sym_not] = ACTIONS(1063), - [anon_sym_DOT_DOT2] = ACTIONS(1063), - [anon_sym_DOT] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1063), - [anon_sym_DOT_DOT_LT] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1065), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1065), - [anon_sym_null] = ACTIONS(1063), - [anon_sym_true] = ACTIONS(1063), - [anon_sym_false] = ACTIONS(1063), - [aux_sym__val_number_decimal_token1] = ACTIONS(1063), - [aux_sym__val_number_decimal_token2] = ACTIONS(1063), - [anon_sym_DOT2] = ACTIONS(1063), - [aux_sym__val_number_decimal_token3] = ACTIONS(1063), - [aux_sym__val_number_token1] = ACTIONS(1063), - [aux_sym__val_number_token2] = ACTIONS(1063), - [aux_sym__val_number_token3] = ACTIONS(1063), - [aux_sym__val_number_token4] = ACTIONS(1063), - [aux_sym__val_number_token5] = ACTIONS(1063), - [aux_sym__val_number_token6] = ACTIONS(1063), - [anon_sym_0b] = ACTIONS(1063), - [anon_sym_0o] = ACTIONS(1063), - [anon_sym_0x] = ACTIONS(1063), - [sym_val_date] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [sym__str_single_quotes] = ACTIONS(1063), - [sym__str_back_ticks] = ACTIONS(1063), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1063), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1063), - [anon_sym_CARET] = ACTIONS(1063), + [1464] = { + [sym_comment] = STATE(1464), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_COMMA] = ACTIONS(1179), + [anon_sym_RBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(4879), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(4881), + [anon_sym_in] = ACTIONS(4889), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(4883), + [anon_sym_STAR_STAR] = ACTIONS(4885), + [anon_sym_PLUS_PLUS] = ACTIONS(4885), + [anon_sym_SLASH] = ACTIONS(4883), + [anon_sym_mod] = ACTIONS(4883), + [anon_sym_SLASH_SLASH] = ACTIONS(4883), + [anon_sym_PLUS] = ACTIONS(4881), + [anon_sym_bit_DASHshl] = ACTIONS(4887), + [anon_sym_bit_DASHshr] = ACTIONS(4887), + [anon_sym_EQ_EQ] = ACTIONS(4879), + [anon_sym_BANG_EQ] = ACTIONS(4879), + [anon_sym_LT2] = ACTIONS(4879), + [anon_sym_LT_EQ] = ACTIONS(4879), + [anon_sym_GT_EQ] = ACTIONS(4879), + [anon_sym_not_DASHin] = ACTIONS(4889), + [anon_sym_starts_DASHwith] = ACTIONS(4889), + [anon_sym_ends_DASHwith] = ACTIONS(4889), + [anon_sym_EQ_TILDE] = ACTIONS(4893), + [anon_sym_BANG_TILDE] = ACTIONS(4893), + [anon_sym_bit_DASHand] = ACTIONS(4895), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [sym__entry_separator] = ACTIONS(1181), + [anon_sym_err_GT] = ACTIONS(1179), + [anon_sym_out_GT] = ACTIONS(1179), + [anon_sym_e_GT] = ACTIONS(1179), + [anon_sym_o_GT] = ACTIONS(1179), + [anon_sym_err_PLUSout_GT] = ACTIONS(1179), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1179), + [anon_sym_o_PLUSe_GT] = ACTIONS(1179), + [anon_sym_e_PLUSo_GT] = ACTIONS(1179), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, - [1261] = { - [sym__immediate_decimal] = STATE(9346), - [sym_comment] = STATE(1261), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_error] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_RBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_where] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_DOT] = ACTIONS(3586), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [aux_sym__immediate_decimal_token1] = ACTIONS(942), - [aux_sym__immediate_decimal_token3] = ACTIONS(942), - [aux_sym__immediate_decimal_token4] = ACTIONS(944), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [aux_sym_unquoted_token3] = ACTIONS(3588), - [aux_sym_unquoted_token5] = ACTIONS(3590), + [1465] = { + [sym__expression] = STATE(7046), + [sym_expr_unary] = STATE(5409), + [sym__expr_unary_minus] = STATE(5410), + [sym_expr_binary] = STATE(5409), + [sym__expr_binary_expression] = STATE(6366), + [sym_expr_parenthesized] = STATE(4635), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5409), + [sym_val_nothing] = STATE(5350), + [sym_val_bool] = STATE(5350), + [sym_val_variable] = STATE(4717), + [sym__var] = STATE(4193), + [sym_val_number] = STATE(5350), + [sym__val_number_decimal] = STATE(4266), + [sym__val_number] = STATE(5351), + [sym_val_duration] = STATE(5350), + [sym_val_filesize] = STATE(5350), + [sym_val_binary] = STATE(5350), + [sym_val_string] = STATE(5350), + [sym__str_double_quotes] = STATE(5502), + [sym_val_interpolated] = STATE(5350), + [sym__inter_single_quotes] = STATE(5420), + [sym__inter_double_quotes] = STATE(5421), + [sym_val_list] = STATE(5350), + [sym_val_record] = STATE(5350), + [sym_val_table] = STATE(5350), + [sym_val_closure] = STATE(5350), + [sym__flag] = STATE(1455), + [sym_short_flag] = STATE(4674), + [sym_long_flag] = STATE(4674), + [sym_long_flag_equals_value] = STATE(4714), + [sym_comment] = STATE(1465), + [anon_sym_SEMI] = ACTIONS(4871), + [anon_sym_LF] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4833), + [anon_sym_LPAREN] = ACTIONS(4835), + [anon_sym_RPAREN] = ACTIONS(4871), + [anon_sym_PIPE] = ACTIONS(4871), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_DASH_DASH] = ACTIONS(4875), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4841), + [anon_sym_RBRACE] = ACTIONS(4871), + [anon_sym_DOT_DOT] = ACTIONS(4843), + [anon_sym_not] = ACTIONS(4845), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4847), + [anon_sym_DOT_DOT_LT] = ACTIONS(4847), + [anon_sym_null] = ACTIONS(4849), + [anon_sym_true] = ACTIONS(4851), + [anon_sym_false] = ACTIONS(4851), + [aux_sym__val_number_decimal_token1] = ACTIONS(4853), + [aux_sym__val_number_decimal_token2] = ACTIONS(4853), + [anon_sym_DOT2] = ACTIONS(4855), + [aux_sym__val_number_decimal_token3] = ACTIONS(4857), + [aux_sym__val_number_token1] = ACTIONS(4859), + [aux_sym__val_number_token2] = ACTIONS(4859), + [aux_sym__val_number_token3] = ACTIONS(4859), + [aux_sym__val_number_token4] = ACTIONS(4859), + [aux_sym__val_number_token5] = ACTIONS(4859), + [aux_sym__val_number_token6] = ACTIONS(4859), + [anon_sym_0b] = ACTIONS(3080), + [anon_sym_0o] = ACTIONS(3082), + [anon_sym_0x] = ACTIONS(3082), + [sym_val_date] = ACTIONS(4861), + [anon_sym_DQUOTE] = ACTIONS(4863), + [sym__str_single_quotes] = ACTIONS(4865), + [sym__str_back_ticks] = ACTIONS(4865), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4867), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4869), [anon_sym_POUND] = ACTIONS(113), }, - [1262] = { - [sym_cell_path] = STATE(1519), - [sym_path] = STATE(1263), - [sym_comment] = STATE(1262), - [ts_builtin_sym_end] = ACTIONS(1012), - [anon_sym_export] = ACTIONS(1010), - [anon_sym_alias] = ACTIONS(1010), - [anon_sym_let] = ACTIONS(1010), - [anon_sym_let_DASHenv] = ACTIONS(1010), - [anon_sym_mut] = ACTIONS(1010), - [anon_sym_const] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1010), - [sym_cmd_identifier] = ACTIONS(1010), - [anon_sym_LF] = ACTIONS(1012), - [anon_sym_def] = ACTIONS(1010), - [anon_sym_export_DASHenv] = ACTIONS(1010), - [anon_sym_extern] = ACTIONS(1010), - [anon_sym_module] = ACTIONS(1010), - [anon_sym_use] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(1010), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_error] = ACTIONS(1010), - [anon_sym_DASH_DASH] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1010), - [anon_sym_continue] = ACTIONS(1010), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_loop] = ACTIONS(1010), - [anon_sym_while] = ACTIONS(1010), - [anon_sym_do] = ACTIONS(1010), - [anon_sym_if] = ACTIONS(1010), - [anon_sym_match] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_DOT_DOT] = ACTIONS(1010), - [anon_sym_try] = ACTIONS(1010), - [anon_sym_return] = ACTIONS(1010), - [anon_sym_source] = ACTIONS(1010), - [anon_sym_source_DASHenv] = ACTIONS(1010), - [anon_sym_register] = ACTIONS(1010), - [anon_sym_hide] = ACTIONS(1010), - [anon_sym_hide_DASHenv] = ACTIONS(1010), - [anon_sym_overlay] = ACTIONS(1010), - [anon_sym_as] = ACTIONS(1010), - [anon_sym_where] = ACTIONS(1010), - [anon_sym_not] = ACTIONS(1010), - [anon_sym_DOT_DOT2] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(3691), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT] = ACTIONS(1010), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), - [anon_sym_null] = ACTIONS(1010), - [anon_sym_true] = ACTIONS(1010), - [anon_sym_false] = ACTIONS(1010), - [aux_sym__val_number_decimal_token1] = ACTIONS(1010), - [aux_sym__val_number_decimal_token2] = ACTIONS(1010), - [anon_sym_DOT2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = 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(1010), - [aux_sym__val_number_token5] = ACTIONS(1010), - [aux_sym__val_number_token6] = ACTIONS(1010), - [anon_sym_0b] = ACTIONS(1010), - [anon_sym_0o] = ACTIONS(1010), - [anon_sym_0x] = ACTIONS(1010), - [sym_val_date] = ACTIONS(1010), - [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_CARET] = ACTIONS(1010), + [1466] = { + [sym_comment] = STATE(1466), + [ts_builtin_sym_end] = ACTIONS(1026), + [anon_sym_export] = ACTIONS(1024), + [anon_sym_alias] = ACTIONS(1024), + [anon_sym_let] = ACTIONS(1024), + [anon_sym_let_DASHenv] = ACTIONS(1024), + [anon_sym_mut] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1024), + [sym_cmd_identifier] = ACTIONS(1024), + [anon_sym_LF] = ACTIONS(1026), + [anon_sym_def] = ACTIONS(1024), + [anon_sym_export_DASHenv] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1024), + [anon_sym_module] = ACTIONS(1024), + [anon_sym_use] = ACTIONS(1024), + [anon_sym_LBRACK] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_error] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_loop] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_match] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym_DOT_DOT] = ACTIONS(1024), + [anon_sym_try] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_source] = ACTIONS(1024), + [anon_sym_source_DASHenv] = ACTIONS(1024), + [anon_sym_register] = ACTIONS(1024), + [anon_sym_hide] = ACTIONS(1024), + [anon_sym_hide_DASHenv] = ACTIONS(1024), + [anon_sym_overlay] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_where] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(4897), + [anon_sym_not] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT] = ACTIONS(1024), + [anon_sym_null] = ACTIONS(1024), + [anon_sym_true] = ACTIONS(1024), + [anon_sym_false] = ACTIONS(1024), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1024), + [aux_sym__val_number_token1] = ACTIONS(1024), + [aux_sym__val_number_token2] = ACTIONS(1024), + [aux_sym__val_number_token3] = ACTIONS(1024), + [aux_sym__val_number_token4] = ACTIONS(1024), + [aux_sym__val_number_token5] = ACTIONS(1024), + [aux_sym__val_number_token6] = ACTIONS(1024), + [anon_sym_0b] = ACTIONS(1024), + [anon_sym_0o] = ACTIONS(1024), + [anon_sym_0x] = ACTIONS(1024), + [sym_val_date] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym__str_single_quotes] = ACTIONS(1024), + [sym__str_back_ticks] = ACTIONS(1024), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1024), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1024), + [anon_sym_CARET] = ACTIONS(1024), [anon_sym_POUND] = ACTIONS(113), }, - [1263] = { - [sym_path] = STATE(1375), - [sym_comment] = STATE(1263), - [aux_sym_cell_path_repeat1] = STATE(1265), - [ts_builtin_sym_end] = ACTIONS(989), - [anon_sym_export] = ACTIONS(987), - [anon_sym_alias] = ACTIONS(987), - [anon_sym_let] = ACTIONS(987), - [anon_sym_let_DASHenv] = ACTIONS(987), - [anon_sym_mut] = ACTIONS(987), - [anon_sym_const] = ACTIONS(987), - [anon_sym_SEMI] = ACTIONS(987), - [sym_cmd_identifier] = ACTIONS(987), - [anon_sym_LF] = ACTIONS(989), - [anon_sym_def] = ACTIONS(987), - [anon_sym_export_DASHenv] = ACTIONS(987), - [anon_sym_extern] = ACTIONS(987), - [anon_sym_module] = ACTIONS(987), - [anon_sym_use] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(987), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_DOLLAR] = ACTIONS(987), - [anon_sym_error] = ACTIONS(987), - [anon_sym_DASH_DASH] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_break] = ACTIONS(987), - [anon_sym_continue] = ACTIONS(987), - [anon_sym_for] = ACTIONS(987), - [anon_sym_loop] = ACTIONS(987), - [anon_sym_while] = ACTIONS(987), - [anon_sym_do] = ACTIONS(987), - [anon_sym_if] = ACTIONS(987), - [anon_sym_match] = ACTIONS(987), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_DOT_DOT] = ACTIONS(987), - [anon_sym_try] = ACTIONS(987), - [anon_sym_return] = ACTIONS(987), - [anon_sym_source] = ACTIONS(987), - [anon_sym_source_DASHenv] = ACTIONS(987), - [anon_sym_register] = ACTIONS(987), - [anon_sym_hide] = ACTIONS(987), - [anon_sym_hide_DASHenv] = ACTIONS(987), - [anon_sym_overlay] = ACTIONS(987), - [anon_sym_as] = ACTIONS(987), - [anon_sym_where] = ACTIONS(987), - [anon_sym_not] = ACTIONS(987), - [anon_sym_DOT_DOT2] = ACTIONS(987), - [anon_sym_DOT] = ACTIONS(3691), - [anon_sym_DOT_DOT_EQ] = ACTIONS(987), - [anon_sym_DOT_DOT_LT] = ACTIONS(987), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(989), - [anon_sym_DOT_DOT_LT2] = ACTIONS(989), - [anon_sym_null] = ACTIONS(987), - [anon_sym_true] = ACTIONS(987), - [anon_sym_false] = ACTIONS(987), - [aux_sym__val_number_decimal_token1] = ACTIONS(987), - [aux_sym__val_number_decimal_token2] = ACTIONS(987), - [anon_sym_DOT2] = ACTIONS(987), - [aux_sym__val_number_decimal_token3] = ACTIONS(987), - [aux_sym__val_number_token1] = ACTIONS(987), - [aux_sym__val_number_token2] = ACTIONS(987), - [aux_sym__val_number_token3] = ACTIONS(987), - [aux_sym__val_number_token4] = ACTIONS(987), - [aux_sym__val_number_token5] = ACTIONS(987), - [aux_sym__val_number_token6] = ACTIONS(987), - [anon_sym_0b] = ACTIONS(987), - [anon_sym_0o] = ACTIONS(987), - [anon_sym_0x] = ACTIONS(987), - [sym_val_date] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(987), - [sym__str_single_quotes] = ACTIONS(987), - [sym__str_back_ticks] = ACTIONS(987), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(987), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), + [1467] = { + [sym_comment] = STATE(1467), + [ts_builtin_sym_end] = ACTIONS(1026), + [anon_sym_export] = ACTIONS(1024), + [anon_sym_alias] = ACTIONS(1024), + [anon_sym_let] = ACTIONS(1024), + [anon_sym_let_DASHenv] = ACTIONS(1024), + [anon_sym_mut] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1024), + [sym_cmd_identifier] = ACTIONS(1024), + [anon_sym_LF] = ACTIONS(1026), + [anon_sym_def] = ACTIONS(1024), + [anon_sym_export_DASHenv] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1024), + [anon_sym_module] = ACTIONS(1024), + [anon_sym_use] = ACTIONS(1024), + [anon_sym_LBRACK] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_error] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_loop] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_match] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym_DOT_DOT] = ACTIONS(1024), + [anon_sym_try] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_source] = ACTIONS(1024), + [anon_sym_source_DASHenv] = ACTIONS(1024), + [anon_sym_register] = ACTIONS(1024), + [anon_sym_hide] = ACTIONS(1024), + [anon_sym_hide_DASHenv] = ACTIONS(1024), + [anon_sym_overlay] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_where] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(4897), + [anon_sym_not] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT] = ACTIONS(1024), + [anon_sym_null] = ACTIONS(1024), + [anon_sym_true] = ACTIONS(1024), + [anon_sym_false] = ACTIONS(1024), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1024), + [aux_sym__val_number_token1] = ACTIONS(1024), + [aux_sym__val_number_token2] = ACTIONS(1024), + [aux_sym__val_number_token3] = ACTIONS(1024), + [aux_sym__val_number_token4] = ACTIONS(1024), + [aux_sym__val_number_token5] = ACTIONS(1024), + [aux_sym__val_number_token6] = ACTIONS(1024), + [anon_sym_0b] = ACTIONS(1024), + [anon_sym_0o] = ACTIONS(1024), + [anon_sym_0x] = ACTIONS(1024), + [sym_val_date] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym__str_single_quotes] = ACTIONS(1024), + [sym__str_back_ticks] = ACTIONS(1024), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1024), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1024), + [anon_sym_CARET] = ACTIONS(1024), [anon_sym_POUND] = ACTIONS(113), }, - [1264] = { - [sym_comment] = STATE(1264), - [ts_builtin_sym_end] = ACTIONS(2439), - [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), - [anon_sym_SEMI] = ACTIONS(2437), - [sym_cmd_identifier] = ACTIONS(2437), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_DASH_DASH] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_as] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_not] = ACTIONS(2437), - [anon_sym_LPAREN2] = ACTIONS(2439), - [anon_sym_DOT_DOT2] = ACTIONS(2437), - [anon_sym_DOT] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2439), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2439), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [anon_sym_DOT2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2437), - [anon_sym_0o] = ACTIONS(2437), - [anon_sym_0x] = ACTIONS(2437), - [sym_val_date] = 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_CARET] = ACTIONS(2437), - [aux_sym_unquoted_token2] = ACTIONS(2437), + [1468] = { + [sym_comment] = STATE(1468), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_COMMA] = ACTIONS(1179), + [anon_sym_RBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(4879), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(4881), + [anon_sym_in] = ACTIONS(4889), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(4883), + [anon_sym_STAR_STAR] = ACTIONS(4885), + [anon_sym_PLUS_PLUS] = ACTIONS(4885), + [anon_sym_SLASH] = ACTIONS(4883), + [anon_sym_mod] = ACTIONS(4883), + [anon_sym_SLASH_SLASH] = ACTIONS(4883), + [anon_sym_PLUS] = ACTIONS(4881), + [anon_sym_bit_DASHshl] = ACTIONS(4887), + [anon_sym_bit_DASHshr] = ACTIONS(4887), + [anon_sym_EQ_EQ] = ACTIONS(4879), + [anon_sym_BANG_EQ] = ACTIONS(4879), + [anon_sym_LT2] = ACTIONS(4879), + [anon_sym_LT_EQ] = ACTIONS(4879), + [anon_sym_GT_EQ] = ACTIONS(4879), + [anon_sym_not_DASHin] = ACTIONS(4889), + [anon_sym_starts_DASHwith] = ACTIONS(4889), + [anon_sym_ends_DASHwith] = ACTIONS(4889), + [anon_sym_EQ_TILDE] = ACTIONS(4893), + [anon_sym_BANG_TILDE] = ACTIONS(4893), + [anon_sym_bit_DASHand] = ACTIONS(4895), + [anon_sym_bit_DASHxor] = ACTIONS(4899), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [sym__entry_separator] = ACTIONS(1181), + [anon_sym_err_GT] = ACTIONS(1179), + [anon_sym_out_GT] = ACTIONS(1179), + [anon_sym_e_GT] = ACTIONS(1179), + [anon_sym_o_GT] = ACTIONS(1179), + [anon_sym_err_PLUSout_GT] = ACTIONS(1179), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1179), + [anon_sym_o_PLUSe_GT] = ACTIONS(1179), + [anon_sym_e_PLUSo_GT] = ACTIONS(1179), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, - [1265] = { - [sym_path] = STATE(1375), - [sym_comment] = STATE(1265), - [aux_sym_cell_path_repeat1] = STATE(1267), - [ts_builtin_sym_end] = ACTIONS(1008), - [anon_sym_export] = ACTIONS(1006), - [anon_sym_alias] = ACTIONS(1006), - [anon_sym_let] = ACTIONS(1006), - [anon_sym_let_DASHenv] = ACTIONS(1006), - [anon_sym_mut] = ACTIONS(1006), - [anon_sym_const] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1006), - [sym_cmd_identifier] = ACTIONS(1006), - [anon_sym_LF] = ACTIONS(1008), - [anon_sym_def] = ACTIONS(1006), - [anon_sym_export_DASHenv] = ACTIONS(1006), - [anon_sym_extern] = ACTIONS(1006), - [anon_sym_module] = ACTIONS(1006), - [anon_sym_use] = ACTIONS(1006), - [anon_sym_LBRACK] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_error] = ACTIONS(1006), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_break] = ACTIONS(1006), - [anon_sym_continue] = ACTIONS(1006), - [anon_sym_for] = ACTIONS(1006), - [anon_sym_loop] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(1006), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_match] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_try] = ACTIONS(1006), - [anon_sym_return] = ACTIONS(1006), - [anon_sym_source] = ACTIONS(1006), - [anon_sym_source_DASHenv] = ACTIONS(1006), - [anon_sym_register] = ACTIONS(1006), - [anon_sym_hide] = ACTIONS(1006), - [anon_sym_hide_DASHenv] = ACTIONS(1006), - [anon_sym_overlay] = ACTIONS(1006), - [anon_sym_as] = ACTIONS(1006), - [anon_sym_where] = ACTIONS(1006), - [anon_sym_not] = ACTIONS(1006), - [anon_sym_DOT_DOT2] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(3691), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), - [anon_sym_null] = ACTIONS(1006), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1006), - [anon_sym_DOT2] = ACTIONS(1006), - [aux_sym__val_number_decimal_token3] = ACTIONS(1006), - [aux_sym__val_number_token1] = ACTIONS(1006), - [aux_sym__val_number_token2] = ACTIONS(1006), - [aux_sym__val_number_token3] = ACTIONS(1006), - [aux_sym__val_number_token4] = ACTIONS(1006), - [aux_sym__val_number_token5] = ACTIONS(1006), - [aux_sym__val_number_token6] = ACTIONS(1006), - [anon_sym_0b] = ACTIONS(1006), - [anon_sym_0o] = ACTIONS(1006), - [anon_sym_0x] = ACTIONS(1006), - [sym_val_date] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym__str_single_quotes] = ACTIONS(1006), - [sym__str_back_ticks] = ACTIONS(1006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1006), - [anon_sym_CARET] = ACTIONS(1006), + [1469] = { + [sym_comment] = STATE(1469), + [anon_sym_LBRACK] = ACTIONS(940), + [anon_sym_COMMA] = ACTIONS(940), + [anon_sym_LPAREN] = ACTIONS(940), + [anon_sym_DOLLAR] = ACTIONS(940), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_in] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(940), + [anon_sym_RBRACE] = ACTIONS(940), + [anon_sym__] = ACTIONS(938), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_STAR_STAR] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(940), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(940), + [anon_sym_SLASH_SLASH] = ACTIONS(940), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_bit_DASHshl] = ACTIONS(940), + [anon_sym_bit_DASHshr] = ACTIONS(940), + [anon_sym_EQ_EQ] = ACTIONS(940), + [anon_sym_BANG_EQ] = ACTIONS(940), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(940), + [anon_sym_GT_EQ] = ACTIONS(940), + [anon_sym_not_DASHin] = ACTIONS(940), + [anon_sym_starts_DASHwith] = ACTIONS(940), + [anon_sym_ends_DASHwith] = ACTIONS(940), + [anon_sym_EQ_TILDE] = ACTIONS(940), + [anon_sym_BANG_TILDE] = ACTIONS(940), + [anon_sym_bit_DASHand] = ACTIONS(940), + [anon_sym_bit_DASHxor] = ACTIONS(940), + [anon_sym_bit_DASHor] = ACTIONS(940), + [anon_sym_and] = ACTIONS(940), + [anon_sym_xor] = ACTIONS(940), + [anon_sym_or] = ACTIONS(940), + [anon_sym_DOT_DOT_EQ] = ACTIONS(940), + [anon_sym_DOT_DOT_LT] = ACTIONS(940), + [anon_sym_null] = ACTIONS(940), + [anon_sym_true] = ACTIONS(940), + [anon_sym_false] = ACTIONS(940), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(940), + [anon_sym_DOT2] = ACTIONS(938), + [aux_sym__val_number_decimal_token3] = ACTIONS(940), + [aux_sym__val_number_token1] = ACTIONS(940), + [aux_sym__val_number_token2] = ACTIONS(940), + [aux_sym__val_number_token3] = ACTIONS(940), + [aux_sym__val_number_token4] = ACTIONS(940), + [aux_sym__val_number_token5] = ACTIONS(940), + [aux_sym__val_number_token6] = ACTIONS(940), + [anon_sym_0b] = ACTIONS(938), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = ACTIONS(940), + [anon_sym_DQUOTE] = ACTIONS(940), + [sym__str_single_quotes] = ACTIONS(940), + [sym__str_back_ticks] = ACTIONS(940), + [anon_sym_err_GT] = ACTIONS(940), + [anon_sym_out_GT] = ACTIONS(940), + [anon_sym_e_GT] = ACTIONS(940), + [anon_sym_o_GT] = ACTIONS(940), + [anon_sym_err_PLUSout_GT] = ACTIONS(940), + [anon_sym_out_PLUSerr_GT] = ACTIONS(940), + [anon_sym_o_PLUSe_GT] = ACTIONS(940), + [anon_sym_e_PLUSo_GT] = ACTIONS(940), + [aux_sym_unquoted_token1] = ACTIONS(938), + [aux_sym_unquoted_token5] = ACTIONS(3252), + [anon_sym_POUND] = ACTIONS(3), + }, + [1470] = { + [sym_comment] = STATE(1470), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_COMMA] = ACTIONS(1179), + [anon_sym_RBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(4879), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(4881), + [anon_sym_in] = ACTIONS(4889), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(4883), + [anon_sym_STAR_STAR] = ACTIONS(4885), + [anon_sym_PLUS_PLUS] = ACTIONS(4885), + [anon_sym_SLASH] = ACTIONS(4883), + [anon_sym_mod] = ACTIONS(4883), + [anon_sym_SLASH_SLASH] = ACTIONS(4883), + [anon_sym_PLUS] = ACTIONS(4881), + [anon_sym_bit_DASHshl] = ACTIONS(4887), + [anon_sym_bit_DASHshr] = ACTIONS(4887), + [anon_sym_EQ_EQ] = ACTIONS(4879), + [anon_sym_BANG_EQ] = ACTIONS(4879), + [anon_sym_LT2] = ACTIONS(4879), + [anon_sym_LT_EQ] = ACTIONS(4879), + [anon_sym_GT_EQ] = ACTIONS(4879), + [anon_sym_not_DASHin] = ACTIONS(4889), + [anon_sym_starts_DASHwith] = ACTIONS(4889), + [anon_sym_ends_DASHwith] = ACTIONS(4889), + [anon_sym_EQ_TILDE] = ACTIONS(4893), + [anon_sym_BANG_TILDE] = ACTIONS(4893), + [anon_sym_bit_DASHand] = ACTIONS(4895), + [anon_sym_bit_DASHxor] = ACTIONS(4899), + [anon_sym_bit_DASHor] = ACTIONS(4901), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [sym__entry_separator] = ACTIONS(1181), + [anon_sym_err_GT] = ACTIONS(1179), + [anon_sym_out_GT] = ACTIONS(1179), + [anon_sym_e_GT] = ACTIONS(1179), + [anon_sym_o_GT] = ACTIONS(1179), + [anon_sym_err_PLUSout_GT] = ACTIONS(1179), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1179), + [anon_sym_o_PLUSe_GT] = ACTIONS(1179), + [anon_sym_e_PLUSo_GT] = ACTIONS(1179), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, - [1266] = { - [sym_comment] = STATE(1266), - [ts_builtin_sym_end] = ACTIONS(2549), - [anon_sym_export] = ACTIONS(2547), - [anon_sym_alias] = ACTIONS(2547), - [anon_sym_let] = ACTIONS(2547), - [anon_sym_let_DASHenv] = ACTIONS(2547), - [anon_sym_mut] = ACTIONS(2547), - [anon_sym_const] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [sym_cmd_identifier] = ACTIONS(2547), - [anon_sym_LF] = ACTIONS(2549), - [anon_sym_def] = ACTIONS(2547), - [anon_sym_export_DASHenv] = ACTIONS(2547), - [anon_sym_extern] = ACTIONS(2547), - [anon_sym_module] = ACTIONS(2547), - [anon_sym_use] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_DOLLAR] = ACTIONS(2547), - [anon_sym_error] = ACTIONS(2547), - [anon_sym_DASH_DASH] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_break] = ACTIONS(2547), - [anon_sym_continue] = ACTIONS(2547), - [anon_sym_for] = ACTIONS(2547), - [anon_sym_loop] = ACTIONS(2547), - [anon_sym_while] = ACTIONS(2547), - [anon_sym_do] = ACTIONS(2547), - [anon_sym_if] = ACTIONS(2547), - [anon_sym_match] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2547), - [anon_sym_DOT_DOT] = ACTIONS(2547), - [anon_sym_try] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2547), - [anon_sym_source] = ACTIONS(2547), - [anon_sym_source_DASHenv] = ACTIONS(2547), - [anon_sym_register] = ACTIONS(2547), - [anon_sym_hide] = ACTIONS(2547), - [anon_sym_hide_DASHenv] = ACTIONS(2547), - [anon_sym_overlay] = ACTIONS(2547), - [anon_sym_as] = ACTIONS(2547), - [anon_sym_where] = ACTIONS(2547), - [anon_sym_not] = ACTIONS(2547), - [anon_sym_LPAREN2] = ACTIONS(2549), - [anon_sym_DOT_DOT2] = ACTIONS(2547), - [anon_sym_DOT] = ACTIONS(2547), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), - [anon_sym_DOT_DOT_LT] = ACTIONS(2547), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2549), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2549), - [anon_sym_null] = ACTIONS(2547), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [aux_sym__val_number_decimal_token1] = ACTIONS(2547), - [aux_sym__val_number_decimal_token2] = ACTIONS(2547), - [anon_sym_DOT2] = ACTIONS(2547), - [aux_sym__val_number_decimal_token3] = ACTIONS(2547), - [aux_sym__val_number_token1] = ACTIONS(2547), - [aux_sym__val_number_token2] = ACTIONS(2547), - [aux_sym__val_number_token3] = ACTIONS(2547), - [aux_sym__val_number_token4] = ACTIONS(2547), - [aux_sym__val_number_token5] = ACTIONS(2547), - [aux_sym__val_number_token6] = ACTIONS(2547), - [anon_sym_0b] = ACTIONS(2547), - [anon_sym_0o] = ACTIONS(2547), - [anon_sym_0x] = ACTIONS(2547), - [sym_val_date] = ACTIONS(2547), - [anon_sym_DQUOTE] = ACTIONS(2547), - [sym__str_single_quotes] = ACTIONS(2547), - [sym__str_back_ticks] = ACTIONS(2547), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2547), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2547), - [aux_sym_unquoted_token2] = ACTIONS(2547), + [1471] = { + [sym_comment] = STATE(1471), + [anon_sym_export] = ACTIONS(1089), + [anon_sym_alias] = ACTIONS(1089), + [anon_sym_let] = ACTIONS(1089), + [anon_sym_let_DASHenv] = ACTIONS(1089), + [anon_sym_mut] = ACTIONS(1089), + [anon_sym_const] = ACTIONS(1089), + [anon_sym_SEMI] = ACTIONS(1089), + [sym_cmd_identifier] = ACTIONS(1089), + [anon_sym_LF] = ACTIONS(1091), + [anon_sym_def] = ACTIONS(1089), + [anon_sym_export_DASHenv] = ACTIONS(1089), + [anon_sym_extern] = ACTIONS(1089), + [anon_sym_module] = ACTIONS(1089), + [anon_sym_use] = ACTIONS(1089), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1089), + [anon_sym_RPAREN] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1089), + [anon_sym_error] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_DASH] = ACTIONS(1089), + [anon_sym_break] = ACTIONS(1089), + [anon_sym_continue] = ACTIONS(1089), + [anon_sym_for] = ACTIONS(1089), + [anon_sym_loop] = ACTIONS(1089), + [anon_sym_while] = ACTIONS(1089), + [anon_sym_do] = ACTIONS(1089), + [anon_sym_if] = ACTIONS(1089), + [anon_sym_match] = ACTIONS(1089), + [anon_sym_LBRACE] = ACTIONS(1089), + [anon_sym_RBRACE] = ACTIONS(1089), + [anon_sym_DOT_DOT] = ACTIONS(1089), + [anon_sym_try] = ACTIONS(1089), + [anon_sym_return] = ACTIONS(1089), + [anon_sym_source] = ACTIONS(1089), + [anon_sym_source_DASHenv] = ACTIONS(1089), + [anon_sym_register] = ACTIONS(1089), + [anon_sym_hide] = ACTIONS(1089), + [anon_sym_hide_DASHenv] = ACTIONS(1089), + [anon_sym_overlay] = ACTIONS(1089), + [anon_sym_as] = ACTIONS(1089), + [anon_sym_where] = ACTIONS(1089), + [anon_sym_not] = ACTIONS(1089), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_DOT_DOT_LT] = ACTIONS(1089), + [anon_sym_null] = ACTIONS(1089), + [anon_sym_true] = ACTIONS(1089), + [anon_sym_false] = ACTIONS(1089), + [aux_sym__val_number_decimal_token1] = ACTIONS(1089), + [aux_sym__val_number_decimal_token2] = ACTIONS(1089), + [anon_sym_DOT2] = ACTIONS(1089), + [aux_sym__val_number_decimal_token3] = ACTIONS(1089), + [aux_sym__val_number_token1] = ACTIONS(1089), + [aux_sym__val_number_token2] = ACTIONS(1089), + [aux_sym__val_number_token3] = ACTIONS(1089), + [aux_sym__val_number_token4] = ACTIONS(1089), + [aux_sym__val_number_token5] = ACTIONS(1089), + [aux_sym__val_number_token6] = ACTIONS(1089), + [anon_sym_0b] = ACTIONS(1089), + [anon_sym_0o] = ACTIONS(1089), + [anon_sym_0x] = ACTIONS(1089), + [sym_val_date] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1089), + [sym__str_single_quotes] = ACTIONS(1089), + [sym__str_back_ticks] = ACTIONS(1089), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1089), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1089), + [anon_sym_CARET] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(113), }, - [1267] = { - [sym_path] = STATE(1375), - [sym_comment] = STATE(1267), - [aux_sym_cell_path_repeat1] = STATE(1267), - [ts_builtin_sym_end] = ACTIONS(1001), - [anon_sym_export] = ACTIONS(999), - [anon_sym_alias] = ACTIONS(999), - [anon_sym_let] = ACTIONS(999), - [anon_sym_let_DASHenv] = ACTIONS(999), - [anon_sym_mut] = ACTIONS(999), - [anon_sym_const] = ACTIONS(999), - [anon_sym_SEMI] = ACTIONS(999), - [sym_cmd_identifier] = ACTIONS(999), - [anon_sym_LF] = ACTIONS(1001), - [anon_sym_def] = ACTIONS(999), - [anon_sym_export_DASHenv] = ACTIONS(999), - [anon_sym_extern] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_use] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_error] = ACTIONS(999), - [anon_sym_DASH_DASH] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_break] = ACTIONS(999), - [anon_sym_continue] = ACTIONS(999), - [anon_sym_for] = ACTIONS(999), - [anon_sym_loop] = ACTIONS(999), - [anon_sym_while] = ACTIONS(999), - [anon_sym_do] = ACTIONS(999), - [anon_sym_if] = ACTIONS(999), - [anon_sym_match] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(999), - [anon_sym_DOT_DOT] = ACTIONS(999), - [anon_sym_try] = ACTIONS(999), - [anon_sym_return] = ACTIONS(999), - [anon_sym_source] = ACTIONS(999), - [anon_sym_source_DASHenv] = ACTIONS(999), - [anon_sym_register] = ACTIONS(999), - [anon_sym_hide] = ACTIONS(999), - [anon_sym_hide_DASHenv] = ACTIONS(999), - [anon_sym_overlay] = ACTIONS(999), - [anon_sym_as] = ACTIONS(999), - [anon_sym_where] = ACTIONS(999), - [anon_sym_not] = ACTIONS(999), - [anon_sym_DOT_DOT2] = ACTIONS(999), - [anon_sym_DOT] = ACTIONS(3693), - [anon_sym_DOT_DOT_EQ] = ACTIONS(999), - [anon_sym_DOT_DOT_LT] = ACTIONS(999), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1001), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1001), - [anon_sym_null] = ACTIONS(999), - [anon_sym_true] = ACTIONS(999), - [anon_sym_false] = ACTIONS(999), - [aux_sym__val_number_decimal_token1] = ACTIONS(999), - [aux_sym__val_number_decimal_token2] = ACTIONS(999), - [anon_sym_DOT2] = ACTIONS(999), - [aux_sym__val_number_decimal_token3] = ACTIONS(999), - [aux_sym__val_number_token1] = ACTIONS(999), - [aux_sym__val_number_token2] = ACTIONS(999), - [aux_sym__val_number_token3] = ACTIONS(999), - [aux_sym__val_number_token4] = ACTIONS(999), - [aux_sym__val_number_token5] = ACTIONS(999), - [aux_sym__val_number_token6] = ACTIONS(999), - [anon_sym_0b] = ACTIONS(999), - [anon_sym_0o] = ACTIONS(999), - [anon_sym_0x] = ACTIONS(999), - [sym_val_date] = ACTIONS(999), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym__str_single_quotes] = ACTIONS(999), - [sym__str_back_ticks] = ACTIONS(999), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(999), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(999), - [anon_sym_CARET] = ACTIONS(999), + [1472] = { + [sym_comment] = STATE(1472), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_COMMA] = ACTIONS(1179), + [anon_sym_RBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(4879), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(4881), + [anon_sym_in] = ACTIONS(4889), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(4883), + [anon_sym_STAR_STAR] = ACTIONS(4885), + [anon_sym_PLUS_PLUS] = ACTIONS(4885), + [anon_sym_SLASH] = ACTIONS(4883), + [anon_sym_mod] = ACTIONS(4883), + [anon_sym_SLASH_SLASH] = ACTIONS(4883), + [anon_sym_PLUS] = ACTIONS(4881), + [anon_sym_bit_DASHshl] = ACTIONS(4887), + [anon_sym_bit_DASHshr] = ACTIONS(4887), + [anon_sym_EQ_EQ] = ACTIONS(4879), + [anon_sym_BANG_EQ] = ACTIONS(4879), + [anon_sym_LT2] = ACTIONS(4879), + [anon_sym_LT_EQ] = ACTIONS(4879), + [anon_sym_GT_EQ] = ACTIONS(4879), + [anon_sym_not_DASHin] = ACTIONS(4889), + [anon_sym_starts_DASHwith] = ACTIONS(4889), + [anon_sym_ends_DASHwith] = ACTIONS(4889), + [anon_sym_EQ_TILDE] = ACTIONS(4893), + [anon_sym_BANG_TILDE] = ACTIONS(4893), + [anon_sym_bit_DASHand] = ACTIONS(4895), + [anon_sym_bit_DASHxor] = ACTIONS(4899), + [anon_sym_bit_DASHor] = ACTIONS(4901), + [anon_sym_and] = ACTIONS(4903), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [sym__entry_separator] = ACTIONS(1181), + [anon_sym_err_GT] = ACTIONS(1179), + [anon_sym_out_GT] = ACTIONS(1179), + [anon_sym_e_GT] = ACTIONS(1179), + [anon_sym_o_GT] = ACTIONS(1179), + [anon_sym_err_PLUSout_GT] = ACTIONS(1179), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1179), + [anon_sym_o_PLUSe_GT] = ACTIONS(1179), + [anon_sym_e_PLUSo_GT] = ACTIONS(1179), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, - [1268] = { - [sym_comment] = STATE(1268), - [ts_builtin_sym_end] = ACTIONS(3507), - [anon_sym_export] = ACTIONS(3505), - [anon_sym_alias] = ACTIONS(3505), - [anon_sym_let] = ACTIONS(3505), - [anon_sym_let_DASHenv] = ACTIONS(3505), - [anon_sym_mut] = ACTIONS(3505), - [anon_sym_const] = ACTIONS(3505), - [anon_sym_SEMI] = ACTIONS(3505), - [sym_cmd_identifier] = ACTIONS(3505), - [anon_sym_LF] = ACTIONS(3507), - [anon_sym_def] = ACTIONS(3505), - [anon_sym_export_DASHenv] = ACTIONS(3505), - [anon_sym_extern] = ACTIONS(3505), - [anon_sym_module] = ACTIONS(3505), - [anon_sym_use] = ACTIONS(3505), - [anon_sym_LBRACK] = ACTIONS(3505), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_error] = ACTIONS(3505), - [anon_sym_DASH_DASH] = ACTIONS(3505), - [anon_sym_DASH] = ACTIONS(3505), - [anon_sym_break] = ACTIONS(3505), - [anon_sym_continue] = ACTIONS(3505), - [anon_sym_for] = ACTIONS(3505), - [anon_sym_loop] = ACTIONS(3505), - [anon_sym_while] = ACTIONS(3505), - [anon_sym_do] = ACTIONS(3505), - [anon_sym_if] = ACTIONS(3505), - [anon_sym_match] = ACTIONS(3505), - [anon_sym_LBRACE] = ACTIONS(3505), - [anon_sym_DOT_DOT] = ACTIONS(3505), - [anon_sym_try] = ACTIONS(3505), - [anon_sym_return] = ACTIONS(3505), - [anon_sym_source] = ACTIONS(3505), - [anon_sym_source_DASHenv] = ACTIONS(3505), - [anon_sym_register] = ACTIONS(3505), - [anon_sym_hide] = ACTIONS(3505), - [anon_sym_hide_DASHenv] = ACTIONS(3505), - [anon_sym_overlay] = ACTIONS(3505), - [anon_sym_as] = ACTIONS(3505), - [anon_sym_where] = ACTIONS(3505), - [anon_sym_not] = ACTIONS(3505), - [anon_sym_LPAREN2] = ACTIONS(3507), - [anon_sym_DOT_DOT2] = ACTIONS(3505), - [anon_sym_DOT] = ACTIONS(3505), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3505), - [anon_sym_DOT_DOT_LT] = ACTIONS(3505), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3507), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3507), - [anon_sym_null] = ACTIONS(3505), - [anon_sym_true] = ACTIONS(3505), - [anon_sym_false] = ACTIONS(3505), - [aux_sym__val_number_decimal_token1] = ACTIONS(3505), - [aux_sym__val_number_decimal_token2] = ACTIONS(3505), - [anon_sym_DOT2] = ACTIONS(3505), - [aux_sym__val_number_decimal_token3] = ACTIONS(3505), - [aux_sym__val_number_token1] = ACTIONS(3505), - [aux_sym__val_number_token2] = ACTIONS(3505), - [aux_sym__val_number_token3] = ACTIONS(3505), - [aux_sym__val_number_token4] = ACTIONS(3505), - [aux_sym__val_number_token5] = ACTIONS(3505), - [aux_sym__val_number_token6] = ACTIONS(3505), - [anon_sym_0b] = ACTIONS(3505), - [anon_sym_0o] = ACTIONS(3505), - [anon_sym_0x] = ACTIONS(3505), - [sym_val_date] = ACTIONS(3505), - [anon_sym_DQUOTE] = ACTIONS(3505), - [sym__str_single_quotes] = ACTIONS(3505), - [sym__str_back_ticks] = ACTIONS(3505), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3505), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3505), - [anon_sym_CARET] = ACTIONS(3505), - [aux_sym_unquoted_token2] = ACTIONS(3505), + [1473] = { + [sym_comment] = STATE(1473), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_COMMA] = ACTIONS(1179), + [anon_sym_RBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(4879), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(4881), + [anon_sym_in] = ACTIONS(4889), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(4883), + [anon_sym_STAR_STAR] = ACTIONS(4885), + [anon_sym_PLUS_PLUS] = ACTIONS(4885), + [anon_sym_SLASH] = ACTIONS(4883), + [anon_sym_mod] = ACTIONS(4883), + [anon_sym_SLASH_SLASH] = ACTIONS(4883), + [anon_sym_PLUS] = ACTIONS(4881), + [anon_sym_bit_DASHshl] = ACTIONS(4887), + [anon_sym_bit_DASHshr] = ACTIONS(4887), + [anon_sym_EQ_EQ] = ACTIONS(4879), + [anon_sym_BANG_EQ] = ACTIONS(4879), + [anon_sym_LT2] = ACTIONS(4879), + [anon_sym_LT_EQ] = ACTIONS(4879), + [anon_sym_GT_EQ] = ACTIONS(4879), + [anon_sym_not_DASHin] = ACTIONS(4889), + [anon_sym_starts_DASHwith] = ACTIONS(4889), + [anon_sym_ends_DASHwith] = ACTIONS(4889), + [anon_sym_EQ_TILDE] = ACTIONS(4893), + [anon_sym_BANG_TILDE] = ACTIONS(4893), + [anon_sym_bit_DASHand] = ACTIONS(4895), + [anon_sym_bit_DASHxor] = ACTIONS(4899), + [anon_sym_bit_DASHor] = ACTIONS(4901), + [anon_sym_and] = ACTIONS(4903), + [anon_sym_xor] = ACTIONS(4905), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [sym__entry_separator] = ACTIONS(1181), + [anon_sym_err_GT] = ACTIONS(1179), + [anon_sym_out_GT] = ACTIONS(1179), + [anon_sym_e_GT] = ACTIONS(1179), + [anon_sym_o_GT] = ACTIONS(1179), + [anon_sym_err_PLUSout_GT] = ACTIONS(1179), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1179), + [anon_sym_o_PLUSe_GT] = ACTIONS(1179), + [anon_sym_e_PLUSo_GT] = ACTIONS(1179), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, - [1269] = { - [sym__immediate_decimal] = STATE(10460), - [sym_comment] = STATE(1269), - [anon_sym_LBRACK] = ACTIONS(938), - [anon_sym_COMMA] = ACTIONS(938), - [anon_sym_RBRACK] = ACTIONS(938), - [anon_sym_LPAREN] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(938), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(938), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_STAR_STAR] = ACTIONS(938), - [anon_sym_PLUS_PLUS] = ACTIONS(938), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(938), - [anon_sym_SLASH_SLASH] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(938), - [anon_sym_bit_DASHshr] = ACTIONS(938), - [anon_sym_EQ_EQ] = ACTIONS(938), - [anon_sym_BANG_EQ] = ACTIONS(938), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(938), - [anon_sym_GT_EQ] = ACTIONS(938), - [anon_sym_not_DASHin] = ACTIONS(938), - [anon_sym_starts_DASHwith] = ACTIONS(938), - [anon_sym_ends_DASHwith] = ACTIONS(938), - [anon_sym_EQ_TILDE] = ACTIONS(938), - [anon_sym_BANG_TILDE] = ACTIONS(938), - [anon_sym_bit_DASHand] = ACTIONS(938), - [anon_sym_bit_DASHxor] = ACTIONS(938), - [anon_sym_bit_DASHor] = ACTIONS(938), - [anon_sym_and] = ACTIONS(938), - [anon_sym_xor] = ACTIONS(938), - [anon_sym_or] = ACTIONS(938), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_DOT_DOT_EQ] = ACTIONS(938), - [anon_sym_DOT_DOT_LT] = ACTIONS(938), - [aux_sym__immediate_decimal_token1] = ACTIONS(1045), - [aux_sym__immediate_decimal_token3] = ACTIONS(1609), - [aux_sym__immediate_decimal_token4] = ACTIONS(1611), - [anon_sym_null] = ACTIONS(938), - [anon_sym_true] = ACTIONS(938), - [anon_sym_false] = ACTIONS(938), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(938), - [aux_sym__val_number_token2] = ACTIONS(938), - [aux_sym__val_number_token3] = ACTIONS(938), - [aux_sym__val_number_token4] = ACTIONS(938), - [aux_sym__val_number_token5] = ACTIONS(938), - [aux_sym__val_number_token6] = ACTIONS(938), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(938), - [sym__str_single_quotes] = ACTIONS(938), - [sym__str_back_ticks] = ACTIONS(938), - [anon_sym_err_GT] = ACTIONS(938), - [anon_sym_out_GT] = ACTIONS(938), - [anon_sym_e_GT] = ACTIONS(938), - [anon_sym_o_GT] = ACTIONS(938), - [anon_sym_err_PLUSout_GT] = ACTIONS(938), - [anon_sym_out_PLUSerr_GT] = ACTIONS(938), - [anon_sym_o_PLUSe_GT] = ACTIONS(938), - [anon_sym_e_PLUSo_GT] = ACTIONS(938), - [aux_sym_unquoted_token4] = ACTIONS(3037), - [aux_sym__unquoted_in_list_token1] = ACTIONS(936), - [anon_sym_POUND] = ACTIONS(3), + [1474] = { + [sym_comment] = STATE(1474), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_COMMA] = ACTIONS(1179), + [anon_sym_RBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(4879), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(4881), + [anon_sym_in] = ACTIONS(4889), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(4883), + [anon_sym_STAR_STAR] = ACTIONS(4885), + [anon_sym_PLUS_PLUS] = ACTIONS(4885), + [anon_sym_SLASH] = ACTIONS(4883), + [anon_sym_mod] = ACTIONS(4883), + [anon_sym_SLASH_SLASH] = ACTIONS(4883), + [anon_sym_PLUS] = ACTIONS(4881), + [anon_sym_bit_DASHshl] = ACTIONS(4887), + [anon_sym_bit_DASHshr] = ACTIONS(4887), + [anon_sym_EQ_EQ] = ACTIONS(4879), + [anon_sym_BANG_EQ] = ACTIONS(4879), + [anon_sym_LT2] = ACTIONS(4879), + [anon_sym_LT_EQ] = ACTIONS(4879), + [anon_sym_GT_EQ] = ACTIONS(4879), + [anon_sym_not_DASHin] = ACTIONS(4889), + [anon_sym_starts_DASHwith] = ACTIONS(4889), + [anon_sym_ends_DASHwith] = ACTIONS(4889), + [anon_sym_EQ_TILDE] = ACTIONS(4893), + [anon_sym_BANG_TILDE] = ACTIONS(4893), + [anon_sym_bit_DASHand] = ACTIONS(4895), + [anon_sym_bit_DASHxor] = ACTIONS(4899), + [anon_sym_bit_DASHor] = ACTIONS(4901), + [anon_sym_and] = ACTIONS(4903), + [anon_sym_xor] = ACTIONS(4905), + [anon_sym_or] = ACTIONS(4907), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [sym__entry_separator] = ACTIONS(1181), + [anon_sym_err_GT] = ACTIONS(1179), + [anon_sym_out_GT] = ACTIONS(1179), + [anon_sym_e_GT] = ACTIONS(1179), + [anon_sym_o_GT] = ACTIONS(1179), + [anon_sym_err_PLUSout_GT] = ACTIONS(1179), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1179), + [anon_sym_o_PLUSe_GT] = ACTIONS(1179), + [anon_sym_e_PLUSo_GT] = ACTIONS(1179), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(113), }, - [1270] = { - [sym_cell_path] = STATE(1522), - [sym_path] = STATE(1250), - [sym_comment] = STATE(1270), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_COMMA] = ACTIONS(997), - [anon_sym_RBRACK] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_DOLLAR] = ACTIONS(997), - [anon_sym_GT] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_in] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(997), - [anon_sym_DOT_DOT] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_STAR_STAR] = ACTIONS(997), - [anon_sym_PLUS_PLUS] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(995), - [anon_sym_mod] = ACTIONS(997), - [anon_sym_SLASH_SLASH] = ACTIONS(997), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_bit_DASHshl] = ACTIONS(997), - [anon_sym_bit_DASHshr] = ACTIONS(997), - [anon_sym_EQ_EQ] = ACTIONS(997), - [anon_sym_BANG_EQ] = ACTIONS(997), - [anon_sym_LT2] = ACTIONS(995), - [anon_sym_LT_EQ] = ACTIONS(997), - [anon_sym_GT_EQ] = ACTIONS(997), - [anon_sym_not_DASHin] = ACTIONS(997), - [anon_sym_starts_DASHwith] = ACTIONS(997), - [anon_sym_ends_DASHwith] = ACTIONS(997), - [anon_sym_EQ_TILDE] = ACTIONS(997), - [anon_sym_BANG_TILDE] = ACTIONS(997), - [anon_sym_bit_DASHand] = ACTIONS(997), - [anon_sym_bit_DASHxor] = ACTIONS(997), - [anon_sym_bit_DASHor] = ACTIONS(997), - [anon_sym_and] = ACTIONS(997), - [anon_sym_xor] = ACTIONS(997), - [anon_sym_or] = ACTIONS(997), - [anon_sym_DOT_DOT2] = ACTIONS(995), - [anon_sym_DOT] = ACTIONS(3674), - [anon_sym_DOT_DOT_EQ] = ACTIONS(995), - [anon_sym_DOT_DOT_LT] = ACTIONS(995), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(997), - [anon_sym_DOT_DOT_LT2] = ACTIONS(997), - [anon_sym_null] = ACTIONS(997), - [anon_sym_true] = ACTIONS(997), - [anon_sym_false] = ACTIONS(997), - [aux_sym__val_number_decimal_token1] = ACTIONS(995), - [aux_sym__val_number_decimal_token2] = ACTIONS(997), - [anon_sym_DOT2] = ACTIONS(995), - [aux_sym__val_number_decimal_token3] = ACTIONS(997), - [aux_sym__val_number_token1] = ACTIONS(997), - [aux_sym__val_number_token2] = ACTIONS(997), - [aux_sym__val_number_token3] = ACTIONS(997), - [aux_sym__val_number_token4] = ACTIONS(997), - [aux_sym__val_number_token5] = ACTIONS(997), - [aux_sym__val_number_token6] = ACTIONS(997), - [anon_sym_0b] = ACTIONS(995), - [anon_sym_0o] = ACTIONS(995), - [anon_sym_0x] = ACTIONS(995), - [sym_val_date] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(997), - [sym__str_single_quotes] = ACTIONS(997), - [sym__str_back_ticks] = ACTIONS(997), - [anon_sym_err_GT] = ACTIONS(997), - [anon_sym_out_GT] = ACTIONS(997), - [anon_sym_e_GT] = ACTIONS(997), - [anon_sym_o_GT] = ACTIONS(997), - [anon_sym_err_PLUSout_GT] = ACTIONS(997), - [anon_sym_out_PLUSerr_GT] = ACTIONS(997), - [anon_sym_o_PLUSe_GT] = ACTIONS(997), - [anon_sym_e_PLUSo_GT] = ACTIONS(997), - [aux_sym__unquoted_in_list_token1] = ACTIONS(995), + [1475] = { + [sym_expr_unary] = STATE(5879), + [sym__expr_unary_minus] = STATE(5878), + [sym_expr_binary] = STATE(5879), + [sym__expr_binary_expression] = STATE(5921), + [sym_expr_parenthesized] = STATE(5879), + [sym__val_range] = STATE(10069), + [sym__value] = STATE(5879), + [sym_val_nothing] = STATE(5931), + [sym_val_bool] = STATE(5739), + [sym_val_variable] = STATE(5931), + [sym__var] = STATE(5079), + [sym_val_number] = STATE(5931), + [sym__val_number_decimal] = STATE(4336), + [sym__val_number] = STATE(5285), + [sym_val_duration] = STATE(5931), + [sym_val_filesize] = STATE(5931), + [sym_val_binary] = STATE(5931), + [sym_val_string] = STATE(5931), + [sym__str_double_quotes] = STATE(5888), + [sym_val_interpolated] = STATE(5931), + [sym__inter_single_quotes] = STATE(5935), + [sym__inter_double_quotes] = STATE(5940), + [sym_val_list] = STATE(5931), + [sym_val_record] = STATE(5931), + [sym_val_table] = STATE(5931), + [sym_val_closure] = STATE(5931), + [sym_unquoted] = STATE(5875), + [sym__unquoted_anonymous_prefix] = STATE(10402), + [sym_comment] = STATE(1475), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(4909), + [anon_sym_DOLLAR] = ACTIONS(4911), + [anon_sym_DASH] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_DOT_DOT] = ACTIONS(4913), + [anon_sym_not] = ACTIONS(3918), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4915), + [anon_sym_DOT_DOT_LT] = ACTIONS(4915), + [anon_sym_null] = ACTIONS(3922), + [anon_sym_true] = ACTIONS(3924), + [anon_sym_false] = ACTIONS(3924), + [aux_sym__val_number_decimal_token1] = ACTIONS(3926), + [aux_sym__val_number_decimal_token2] = ACTIONS(3928), + [anon_sym_DOT2] = ACTIONS(4917), + [aux_sym__val_number_decimal_token3] = ACTIONS(3932), + [aux_sym__val_number_token1] = ACTIONS(93), + [aux_sym__val_number_token2] = ACTIONS(93), + [aux_sym__val_number_token3] = ACTIONS(93), + [aux_sym__val_number_token4] = ACTIONS(4919), + [aux_sym__val_number_token5] = ACTIONS(4919), + [aux_sym__val_number_token6] = ACTIONS(4919), + [anon_sym_0b] = ACTIONS(97), + [anon_sym_0o] = ACTIONS(99), + [anon_sym_0x] = ACTIONS(99), + [sym_val_date] = ACTIONS(3936), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym__str_single_quotes] = ACTIONS(105), + [sym__str_back_ticks] = ACTIONS(105), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(109), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2924), [anon_sym_POUND] = ACTIONS(3), }, - [1271] = { - [sym__command_name] = STATE(2660), - [sym_scope_pattern] = STATE(2668), - [sym_wild_card] = STATE(2662), - [sym_command_list] = STATE(2663), - [sym_val_string] = STATE(2633), - [sym__str_double_quotes] = STATE(2627), - [sym_comment] = STATE(1271), - [anon_sym_export] = ACTIONS(3696), - [anon_sym_alias] = ACTIONS(3696), - [anon_sym_let] = ACTIONS(3696), - [anon_sym_let_DASHenv] = ACTIONS(3696), - [anon_sym_mut] = ACTIONS(3696), - [anon_sym_const] = ACTIONS(3696), - [anon_sym_SEMI] = ACTIONS(3696), - [sym_cmd_identifier] = ACTIONS(3624), - [anon_sym_LF] = ACTIONS(3698), - [anon_sym_def] = ACTIONS(3696), - [anon_sym_export_DASHenv] = ACTIONS(3696), - [anon_sym_extern] = ACTIONS(3696), - [anon_sym_module] = ACTIONS(3696), - [anon_sym_use] = ACTIONS(3696), - [anon_sym_LBRACK] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_RPAREN] = ACTIONS(3696), - [anon_sym_DOLLAR] = ACTIONS(3696), - [anon_sym_error] = ACTIONS(3696), - [anon_sym_DASH] = ACTIONS(3696), - [anon_sym_break] = ACTIONS(3696), - [anon_sym_continue] = ACTIONS(3696), - [anon_sym_for] = ACTIONS(3696), - [anon_sym_loop] = ACTIONS(3696), - [anon_sym_while] = ACTIONS(3696), - [anon_sym_do] = ACTIONS(3696), - [anon_sym_if] = ACTIONS(3696), - [anon_sym_match] = ACTIONS(3696), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_RBRACE] = ACTIONS(3696), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_try] = ACTIONS(3696), - [anon_sym_return] = ACTIONS(3696), - [anon_sym_source] = ACTIONS(3696), - [anon_sym_source_DASHenv] = ACTIONS(3696), - [anon_sym_register] = ACTIONS(3696), - [anon_sym_hide] = ACTIONS(3696), - [anon_sym_hide_DASHenv] = ACTIONS(3696), - [anon_sym_overlay] = ACTIONS(3696), - [anon_sym_STAR] = ACTIONS(3630), - [anon_sym_where] = ACTIONS(3696), - [anon_sym_not] = ACTIONS(3696), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3696), - [anon_sym_DOT_DOT_LT] = ACTIONS(3696), - [anon_sym_null] = ACTIONS(3696), - [anon_sym_true] = ACTIONS(3696), - [anon_sym_false] = ACTIONS(3696), - [aux_sym__val_number_decimal_token1] = ACTIONS(3696), - [aux_sym__val_number_decimal_token2] = ACTIONS(3696), - [anon_sym_DOT2] = ACTIONS(3696), - [aux_sym__val_number_decimal_token3] = ACTIONS(3696), - [aux_sym__val_number_token1] = ACTIONS(3696), - [aux_sym__val_number_token2] = ACTIONS(3696), - [aux_sym__val_number_token3] = ACTIONS(3696), - [aux_sym__val_number_token4] = ACTIONS(3696), - [aux_sym__val_number_token5] = ACTIONS(3696), - [aux_sym__val_number_token6] = ACTIONS(3696), - [anon_sym_0b] = ACTIONS(3696), - [anon_sym_0o] = ACTIONS(3696), - [anon_sym_0x] = ACTIONS(3696), - [sym_val_date] = ACTIONS(3696), - [anon_sym_DQUOTE] = ACTIONS(3632), - [sym__str_single_quotes] = ACTIONS(3634), - [sym__str_back_ticks] = ACTIONS(3634), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3696), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3696), - [anon_sym_CARET] = ACTIONS(3696), + [1476] = { + [sym_comment] = STATE(1476), + [anon_sym_export] = ACTIONS(1237), + [anon_sym_alias] = ACTIONS(1237), + [anon_sym_let] = ACTIONS(1237), + [anon_sym_let_DASHenv] = ACTIONS(1237), + [anon_sym_mut] = ACTIONS(1237), + [anon_sym_const] = ACTIONS(1237), + [anon_sym_SEMI] = ACTIONS(1237), + [sym_cmd_identifier] = ACTIONS(1237), + [anon_sym_LF] = ACTIONS(1239), + [anon_sym_def] = ACTIONS(1237), + [anon_sym_export_DASHenv] = ACTIONS(1237), + [anon_sym_extern] = ACTIONS(1237), + [anon_sym_module] = ACTIONS(1237), + [anon_sym_use] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(1237), + [anon_sym_LPAREN] = ACTIONS(1237), + [anon_sym_RPAREN] = ACTIONS(1237), + [anon_sym_DOLLAR] = ACTIONS(1237), + [anon_sym_error] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), + [anon_sym_DASH] = ACTIONS(1237), + [anon_sym_break] = ACTIONS(1237), + [anon_sym_continue] = ACTIONS(1237), + [anon_sym_for] = ACTIONS(1237), + [anon_sym_loop] = ACTIONS(1237), + [anon_sym_while] = ACTIONS(1237), + [anon_sym_do] = ACTIONS(1237), + [anon_sym_if] = ACTIONS(1237), + [anon_sym_match] = ACTIONS(1237), + [anon_sym_LBRACE] = ACTIONS(1237), + [anon_sym_RBRACE] = ACTIONS(1237), + [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_try] = ACTIONS(1237), + [anon_sym_return] = ACTIONS(1237), + [anon_sym_source] = ACTIONS(1237), + [anon_sym_source_DASHenv] = ACTIONS(1237), + [anon_sym_register] = ACTIONS(1237), + [anon_sym_hide] = ACTIONS(1237), + [anon_sym_hide_DASHenv] = ACTIONS(1237), + [anon_sym_overlay] = ACTIONS(1237), + [anon_sym_as] = ACTIONS(1237), + [anon_sym_where] = ACTIONS(1237), + [anon_sym_not] = ACTIONS(1237), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1237), + [anon_sym_DOT_DOT_LT] = ACTIONS(1237), + [anon_sym_null] = ACTIONS(1237), + [anon_sym_true] = ACTIONS(1237), + [anon_sym_false] = ACTIONS(1237), + [aux_sym__val_number_decimal_token1] = ACTIONS(1237), + [aux_sym__val_number_decimal_token2] = ACTIONS(1237), + [anon_sym_DOT2] = ACTIONS(1237), + [aux_sym__val_number_decimal_token3] = ACTIONS(1237), + [aux_sym__val_number_token1] = ACTIONS(1237), + [aux_sym__val_number_token2] = ACTIONS(1237), + [aux_sym__val_number_token3] = ACTIONS(1237), + [aux_sym__val_number_token4] = ACTIONS(1237), + [aux_sym__val_number_token5] = ACTIONS(1237), + [aux_sym__val_number_token6] = ACTIONS(1237), + [anon_sym_0b] = ACTIONS(1237), + [anon_sym_0o] = ACTIONS(1237), + [anon_sym_0x] = ACTIONS(1237), + [sym_val_date] = ACTIONS(1237), + [anon_sym_DQUOTE] = ACTIONS(1237), + [sym__str_single_quotes] = ACTIONS(1237), + [sym__str_back_ticks] = ACTIONS(1237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1237), + [anon_sym_CARET] = ACTIONS(1237), [anon_sym_POUND] = ACTIONS(113), }, - [1272] = { - [sym__command_name] = STATE(2660), - [sym_scope_pattern] = STATE(2677), - [sym_wild_card] = STATE(2662), - [sym_command_list] = STATE(2663), - [sym_val_string] = STATE(2633), - [sym__str_double_quotes] = STATE(2627), - [sym_comment] = STATE(1272), - [anon_sym_export] = ACTIONS(3700), - [anon_sym_alias] = ACTIONS(3700), - [anon_sym_let] = ACTIONS(3700), - [anon_sym_let_DASHenv] = ACTIONS(3700), - [anon_sym_mut] = ACTIONS(3700), - [anon_sym_const] = ACTIONS(3700), - [anon_sym_SEMI] = ACTIONS(3700), - [sym_cmd_identifier] = ACTIONS(3624), - [anon_sym_LF] = ACTIONS(3702), - [anon_sym_def] = ACTIONS(3700), - [anon_sym_export_DASHenv] = ACTIONS(3700), - [anon_sym_extern] = ACTIONS(3700), - [anon_sym_module] = ACTIONS(3700), - [anon_sym_use] = ACTIONS(3700), - [anon_sym_LBRACK] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_RPAREN] = ACTIONS(3700), - [anon_sym_DOLLAR] = ACTIONS(3700), - [anon_sym_error] = ACTIONS(3700), - [anon_sym_DASH] = ACTIONS(3700), - [anon_sym_break] = ACTIONS(3700), - [anon_sym_continue] = ACTIONS(3700), - [anon_sym_for] = ACTIONS(3700), - [anon_sym_loop] = ACTIONS(3700), - [anon_sym_while] = ACTIONS(3700), - [anon_sym_do] = ACTIONS(3700), - [anon_sym_if] = ACTIONS(3700), - [anon_sym_match] = ACTIONS(3700), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_RBRACE] = ACTIONS(3700), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_try] = ACTIONS(3700), - [anon_sym_return] = ACTIONS(3700), - [anon_sym_source] = ACTIONS(3700), - [anon_sym_source_DASHenv] = ACTIONS(3700), - [anon_sym_register] = ACTIONS(3700), - [anon_sym_hide] = ACTIONS(3700), - [anon_sym_hide_DASHenv] = ACTIONS(3700), - [anon_sym_overlay] = ACTIONS(3700), - [anon_sym_STAR] = ACTIONS(3630), - [anon_sym_where] = ACTIONS(3700), - [anon_sym_not] = ACTIONS(3700), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3700), - [anon_sym_DOT_DOT_LT] = ACTIONS(3700), - [anon_sym_null] = ACTIONS(3700), - [anon_sym_true] = ACTIONS(3700), - [anon_sym_false] = ACTIONS(3700), - [aux_sym__val_number_decimal_token1] = ACTIONS(3700), - [aux_sym__val_number_decimal_token2] = ACTIONS(3700), - [anon_sym_DOT2] = ACTIONS(3700), - [aux_sym__val_number_decimal_token3] = ACTIONS(3700), - [aux_sym__val_number_token1] = ACTIONS(3700), - [aux_sym__val_number_token2] = ACTIONS(3700), - [aux_sym__val_number_token3] = ACTIONS(3700), - [aux_sym__val_number_token4] = ACTIONS(3700), - [aux_sym__val_number_token5] = ACTIONS(3700), - [aux_sym__val_number_token6] = ACTIONS(3700), - [anon_sym_0b] = ACTIONS(3700), - [anon_sym_0o] = ACTIONS(3700), - [anon_sym_0x] = ACTIONS(3700), - [sym_val_date] = ACTIONS(3700), - [anon_sym_DQUOTE] = ACTIONS(3632), - [sym__str_single_quotes] = ACTIONS(3634), - [sym__str_back_ticks] = ACTIONS(3634), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3700), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3700), - [anon_sym_CARET] = ACTIONS(3700), + [1477] = { + [sym__expression] = STATE(7078), + [sym_expr_unary] = STATE(5409), + [sym__expr_unary_minus] = STATE(5410), + [sym_expr_binary] = STATE(5409), + [sym__expr_binary_expression] = STATE(6366), + [sym_expr_parenthesized] = STATE(4635), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5409), + [sym_val_nothing] = STATE(5350), + [sym_val_bool] = STATE(5350), + [sym_val_variable] = STATE(4717), + [sym__var] = STATE(4193), + [sym_val_number] = STATE(5350), + [sym__val_number_decimal] = STATE(4266), + [sym__val_number] = STATE(5351), + [sym_val_duration] = STATE(5350), + [sym_val_filesize] = STATE(5350), + [sym_val_binary] = STATE(5350), + [sym_val_string] = STATE(5350), + [sym__str_double_quotes] = STATE(5502), + [sym_val_interpolated] = STATE(5350), + [sym__inter_single_quotes] = STATE(5420), + [sym__inter_double_quotes] = STATE(5421), + [sym_val_list] = STATE(5350), + [sym_val_record] = STATE(5350), + [sym_val_table] = STATE(5350), + [sym_val_closure] = STATE(5350), + [sym__flag] = STATE(1806), + [sym_short_flag] = STATE(4674), + [sym_long_flag] = STATE(4674), + [sym_long_flag_equals_value] = STATE(4714), + [sym_comment] = STATE(1477), + [anon_sym_SEMI] = ACTIONS(4921), + [anon_sym_LF] = ACTIONS(4923), + [anon_sym_LBRACK] = ACTIONS(4833), + [anon_sym_LPAREN] = ACTIONS(4835), + [anon_sym_RPAREN] = ACTIONS(4921), + [anon_sym_PIPE] = ACTIONS(4921), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_DASH_DASH] = ACTIONS(4875), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4841), + [anon_sym_RBRACE] = ACTIONS(4921), + [anon_sym_DOT_DOT] = ACTIONS(4843), + [anon_sym_not] = ACTIONS(4845), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4847), + [anon_sym_DOT_DOT_LT] = ACTIONS(4847), + [anon_sym_null] = ACTIONS(4849), + [anon_sym_true] = ACTIONS(4851), + [anon_sym_false] = ACTIONS(4851), + [aux_sym__val_number_decimal_token1] = ACTIONS(4853), + [aux_sym__val_number_decimal_token2] = ACTIONS(4853), + [anon_sym_DOT2] = ACTIONS(4855), + [aux_sym__val_number_decimal_token3] = ACTIONS(4857), + [aux_sym__val_number_token1] = ACTIONS(4859), + [aux_sym__val_number_token2] = ACTIONS(4859), + [aux_sym__val_number_token3] = ACTIONS(4859), + [aux_sym__val_number_token4] = ACTIONS(4859), + [aux_sym__val_number_token5] = ACTIONS(4859), + [aux_sym__val_number_token6] = ACTIONS(4859), + [anon_sym_0b] = ACTIONS(3080), + [anon_sym_0o] = ACTIONS(3082), + [anon_sym_0x] = ACTIONS(3082), + [sym_val_date] = ACTIONS(4861), + [anon_sym_DQUOTE] = ACTIONS(4863), + [sym__str_single_quotes] = ACTIONS(4865), + [sym__str_back_ticks] = ACTIONS(4865), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4867), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4869), [anon_sym_POUND] = ACTIONS(113), }, - [1273] = { - [sym_cell_path] = STATE(1531), - [sym_path] = STATE(1263), - [sym_comment] = STATE(1273), - [ts_builtin_sym_end] = ACTIONS(997), - [anon_sym_export] = ACTIONS(995), - [anon_sym_alias] = ACTIONS(995), - [anon_sym_let] = ACTIONS(995), - [anon_sym_let_DASHenv] = ACTIONS(995), - [anon_sym_mut] = ACTIONS(995), - [anon_sym_const] = ACTIONS(995), - [anon_sym_SEMI] = ACTIONS(995), - [sym_cmd_identifier] = ACTIONS(995), - [anon_sym_LF] = ACTIONS(997), - [anon_sym_def] = ACTIONS(995), - [anon_sym_export_DASHenv] = ACTIONS(995), - [anon_sym_extern] = ACTIONS(995), - [anon_sym_module] = ACTIONS(995), - [anon_sym_use] = ACTIONS(995), - [anon_sym_LBRACK] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_DOLLAR] = ACTIONS(995), - [anon_sym_error] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_break] = ACTIONS(995), - [anon_sym_continue] = ACTIONS(995), - [anon_sym_for] = ACTIONS(995), - [anon_sym_loop] = ACTIONS(995), - [anon_sym_while] = ACTIONS(995), - [anon_sym_do] = ACTIONS(995), - [anon_sym_if] = ACTIONS(995), - [anon_sym_match] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_DOT_DOT] = ACTIONS(995), - [anon_sym_try] = ACTIONS(995), - [anon_sym_return] = ACTIONS(995), - [anon_sym_source] = ACTIONS(995), - [anon_sym_source_DASHenv] = ACTIONS(995), - [anon_sym_register] = ACTIONS(995), - [anon_sym_hide] = ACTIONS(995), - [anon_sym_hide_DASHenv] = ACTIONS(995), - [anon_sym_overlay] = ACTIONS(995), - [anon_sym_as] = ACTIONS(995), - [anon_sym_where] = ACTIONS(995), - [anon_sym_not] = ACTIONS(995), - [anon_sym_DOT_DOT2] = ACTIONS(995), - [anon_sym_DOT] = ACTIONS(3691), - [anon_sym_DOT_DOT_EQ] = ACTIONS(995), - [anon_sym_DOT_DOT_LT] = ACTIONS(995), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(997), - [anon_sym_DOT_DOT_LT2] = ACTIONS(997), - [anon_sym_null] = ACTIONS(995), - [anon_sym_true] = ACTIONS(995), - [anon_sym_false] = ACTIONS(995), - [aux_sym__val_number_decimal_token1] = ACTIONS(995), - [aux_sym__val_number_decimal_token2] = ACTIONS(995), - [anon_sym_DOT2] = ACTIONS(995), - [aux_sym__val_number_decimal_token3] = ACTIONS(995), - [aux_sym__val_number_token1] = ACTIONS(995), - [aux_sym__val_number_token2] = ACTIONS(995), - [aux_sym__val_number_token3] = ACTIONS(995), - [aux_sym__val_number_token4] = ACTIONS(995), - [aux_sym__val_number_token5] = ACTIONS(995), - [aux_sym__val_number_token6] = ACTIONS(995), - [anon_sym_0b] = ACTIONS(995), - [anon_sym_0o] = ACTIONS(995), - [anon_sym_0x] = ACTIONS(995), - [sym_val_date] = ACTIONS(995), - [anon_sym_DQUOTE] = ACTIONS(995), - [sym__str_single_quotes] = ACTIONS(995), - [sym__str_back_ticks] = ACTIONS(995), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(995), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(995), - [anon_sym_CARET] = ACTIONS(995), + [1478] = { + [sym_comment] = STATE(1478), + [anon_sym_export] = ACTIONS(1283), + [anon_sym_alias] = ACTIONS(1283), + [anon_sym_let] = ACTIONS(1283), + [anon_sym_let_DASHenv] = ACTIONS(1283), + [anon_sym_mut] = ACTIONS(1283), + [anon_sym_const] = ACTIONS(1283), + [anon_sym_SEMI] = ACTIONS(1283), + [sym_cmd_identifier] = ACTIONS(1283), + [anon_sym_LF] = ACTIONS(1285), + [anon_sym_def] = ACTIONS(1283), + [anon_sym_export_DASHenv] = ACTIONS(1283), + [anon_sym_extern] = ACTIONS(1283), + [anon_sym_module] = ACTIONS(1283), + [anon_sym_use] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_LPAREN] = ACTIONS(1283), + [anon_sym_RPAREN] = ACTIONS(1283), + [anon_sym_DOLLAR] = ACTIONS(1283), + [anon_sym_error] = ACTIONS(1283), + [anon_sym_DASH_DASH] = ACTIONS(1283), + [anon_sym_DASH] = ACTIONS(1283), + [anon_sym_break] = ACTIONS(1283), + [anon_sym_continue] = ACTIONS(1283), + [anon_sym_for] = ACTIONS(1283), + [anon_sym_loop] = ACTIONS(1283), + [anon_sym_while] = ACTIONS(1283), + [anon_sym_do] = ACTIONS(1283), + [anon_sym_if] = ACTIONS(1283), + [anon_sym_match] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1283), + [anon_sym_RBRACE] = ACTIONS(1283), + [anon_sym_DOT_DOT] = ACTIONS(1283), + [anon_sym_try] = ACTIONS(1283), + [anon_sym_return] = ACTIONS(1283), + [anon_sym_source] = ACTIONS(1283), + [anon_sym_source_DASHenv] = ACTIONS(1283), + [anon_sym_register] = ACTIONS(1283), + [anon_sym_hide] = ACTIONS(1283), + [anon_sym_hide_DASHenv] = ACTIONS(1283), + [anon_sym_overlay] = ACTIONS(1283), + [anon_sym_as] = ACTIONS(1283), + [anon_sym_where] = ACTIONS(1283), + [anon_sym_not] = ACTIONS(1283), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1283), + [anon_sym_DOT_DOT_LT] = ACTIONS(1283), + [anon_sym_null] = ACTIONS(1283), + [anon_sym_true] = ACTIONS(1283), + [anon_sym_false] = ACTIONS(1283), + [aux_sym__val_number_decimal_token1] = ACTIONS(1283), + [aux_sym__val_number_decimal_token2] = ACTIONS(1283), + [anon_sym_DOT2] = ACTIONS(1283), + [aux_sym__val_number_decimal_token3] = ACTIONS(1283), + [aux_sym__val_number_token1] = ACTIONS(1283), + [aux_sym__val_number_token2] = ACTIONS(1283), + [aux_sym__val_number_token3] = ACTIONS(1283), + [aux_sym__val_number_token4] = ACTIONS(1283), + [aux_sym__val_number_token5] = ACTIONS(1283), + [aux_sym__val_number_token6] = ACTIONS(1283), + [anon_sym_0b] = ACTIONS(1283), + [anon_sym_0o] = ACTIONS(1283), + [anon_sym_0x] = ACTIONS(1283), + [sym_val_date] = ACTIONS(1283), + [anon_sym_DQUOTE] = ACTIONS(1283), + [sym__str_single_quotes] = ACTIONS(1283), + [sym__str_back_ticks] = ACTIONS(1283), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1283), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1283), + [anon_sym_CARET] = ACTIONS(1283), [anon_sym_POUND] = ACTIONS(113), }, - [1274] = { - [sym_comment] = STATE(1274), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_alias] = ACTIONS(1070), - [anon_sym_let] = ACTIONS(1070), - [anon_sym_let_DASHenv] = ACTIONS(1070), - [anon_sym_mut] = ACTIONS(1070), - [anon_sym_const] = ACTIONS(1070), - [anon_sym_SEMI] = ACTIONS(1070), - [sym_cmd_identifier] = ACTIONS(1070), - [anon_sym_LF] = ACTIONS(1072), - [anon_sym_def] = ACTIONS(1070), - [anon_sym_export_DASHenv] = ACTIONS(1070), - [anon_sym_extern] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_use] = ACTIONS(1070), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_RPAREN] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_error] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_loop] = ACTIONS(1070), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_do] = ACTIONS(1070), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_match] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_RBRACE] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_try] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_source] = ACTIONS(1070), - [anon_sym_source_DASHenv] = ACTIONS(1070), - [anon_sym_register] = ACTIONS(1070), - [anon_sym_hide] = ACTIONS(1070), - [anon_sym_hide_DASHenv] = ACTIONS(1070), - [anon_sym_overlay] = ACTIONS(1070), - [anon_sym_as] = ACTIONS(1070), - [anon_sym_where] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(3704), - [anon_sym_not] = ACTIONS(1070), - [anon_sym_DOT_DOT2] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1072), - [anon_sym_null] = ACTIONS(1070), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1070), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), - [anon_sym_CARET] = ACTIONS(1070), + [1479] = { + [sym__expression] = STATE(7046), + [sym_expr_unary] = STATE(5409), + [sym__expr_unary_minus] = STATE(5410), + [sym_expr_binary] = STATE(5409), + [sym__expr_binary_expression] = STATE(6366), + [sym_expr_parenthesized] = STATE(4635), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5409), + [sym_val_nothing] = STATE(5350), + [sym_val_bool] = STATE(5350), + [sym_val_variable] = STATE(4717), + [sym__var] = STATE(4193), + [sym_val_number] = STATE(5350), + [sym__val_number_decimal] = STATE(4266), + [sym__val_number] = STATE(5351), + [sym_val_duration] = STATE(5350), + [sym_val_filesize] = STATE(5350), + [sym_val_binary] = STATE(5350), + [sym_val_string] = STATE(5350), + [sym__str_double_quotes] = STATE(5502), + [sym_val_interpolated] = STATE(5350), + [sym__inter_single_quotes] = STATE(5420), + [sym__inter_double_quotes] = STATE(5421), + [sym_val_list] = STATE(5350), + [sym_val_record] = STATE(5350), + [sym_val_table] = STATE(5350), + [sym_val_closure] = STATE(5350), + [sym__flag] = STATE(1462), + [sym_short_flag] = STATE(4674), + [sym_long_flag] = STATE(4674), + [sym_long_flag_equals_value] = STATE(4714), + [sym_comment] = STATE(1479), + [anon_sym_SEMI] = ACTIONS(4871), + [anon_sym_LF] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4833), + [anon_sym_LPAREN] = ACTIONS(4835), + [anon_sym_RPAREN] = ACTIONS(4871), + [anon_sym_PIPE] = ACTIONS(4871), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_DASH_DASH] = ACTIONS(4875), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4841), + [anon_sym_RBRACE] = ACTIONS(4871), + [anon_sym_DOT_DOT] = ACTIONS(4843), + [anon_sym_not] = ACTIONS(4845), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4847), + [anon_sym_DOT_DOT_LT] = ACTIONS(4847), + [anon_sym_null] = ACTIONS(4849), + [anon_sym_true] = ACTIONS(4851), + [anon_sym_false] = ACTIONS(4851), + [aux_sym__val_number_decimal_token1] = ACTIONS(4853), + [aux_sym__val_number_decimal_token2] = ACTIONS(4853), + [anon_sym_DOT2] = ACTIONS(4855), + [aux_sym__val_number_decimal_token3] = ACTIONS(4857), + [aux_sym__val_number_token1] = ACTIONS(4859), + [aux_sym__val_number_token2] = ACTIONS(4859), + [aux_sym__val_number_token3] = ACTIONS(4859), + [aux_sym__val_number_token4] = ACTIONS(4859), + [aux_sym__val_number_token5] = ACTIONS(4859), + [aux_sym__val_number_token6] = ACTIONS(4859), + [anon_sym_0b] = ACTIONS(3080), + [anon_sym_0o] = ACTIONS(3082), + [anon_sym_0x] = ACTIONS(3082), + [sym_val_date] = ACTIONS(4861), + [anon_sym_DQUOTE] = ACTIONS(4863), + [sym__str_single_quotes] = ACTIONS(4865), + [sym__str_back_ticks] = ACTIONS(4865), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4867), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4869), [anon_sym_POUND] = ACTIONS(113), }, - [1275] = { - [sym_comment] = STATE(1275), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_alias] = ACTIONS(1070), - [anon_sym_let] = ACTIONS(1070), - [anon_sym_let_DASHenv] = ACTIONS(1070), - [anon_sym_mut] = ACTIONS(1070), - [anon_sym_const] = ACTIONS(1070), - [anon_sym_SEMI] = ACTIONS(1070), - [sym_cmd_identifier] = ACTIONS(1070), - [anon_sym_LF] = ACTIONS(1072), - [anon_sym_def] = ACTIONS(1070), - [anon_sym_export_DASHenv] = ACTIONS(1070), - [anon_sym_extern] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_use] = ACTIONS(1070), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_RPAREN] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_error] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_loop] = ACTIONS(1070), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_do] = ACTIONS(1070), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_match] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_RBRACE] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_try] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_source] = ACTIONS(1070), - [anon_sym_source_DASHenv] = ACTIONS(1070), - [anon_sym_register] = ACTIONS(1070), - [anon_sym_hide] = ACTIONS(1070), - [anon_sym_hide_DASHenv] = ACTIONS(1070), - [anon_sym_overlay] = ACTIONS(1070), - [anon_sym_as] = ACTIONS(1070), - [anon_sym_where] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(3704), - [anon_sym_not] = ACTIONS(1070), - [anon_sym_DOT_DOT2] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1072), - [anon_sym_null] = ACTIONS(1070), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1070), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), - [anon_sym_CARET] = ACTIONS(1070), + [1480] = { + [sym_comment] = STATE(1480), + [anon_sym_export] = ACTIONS(1072), + [anon_sym_alias] = ACTIONS(1072), + [anon_sym_let] = ACTIONS(1072), + [anon_sym_let_DASHenv] = ACTIONS(1072), + [anon_sym_mut] = ACTIONS(1072), + [anon_sym_const] = ACTIONS(1072), + [anon_sym_SEMI] = ACTIONS(1072), + [sym_cmd_identifier] = ACTIONS(1072), + [anon_sym_LF] = ACTIONS(1074), + [anon_sym_def] = ACTIONS(1072), + [anon_sym_export_DASHenv] = ACTIONS(1072), + [anon_sym_extern] = ACTIONS(1072), + [anon_sym_module] = ACTIONS(1072), + [anon_sym_use] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1072), + [anon_sym_LPAREN] = ACTIONS(1072), + [anon_sym_RPAREN] = ACTIONS(1072), + [anon_sym_DOLLAR] = ACTIONS(1072), + [anon_sym_error] = ACTIONS(1072), + [anon_sym_DASH_DASH] = ACTIONS(1072), + [anon_sym_DASH] = ACTIONS(1072), + [anon_sym_break] = ACTIONS(1072), + [anon_sym_continue] = ACTIONS(1072), + [anon_sym_for] = ACTIONS(1072), + [anon_sym_loop] = ACTIONS(1072), + [anon_sym_while] = ACTIONS(1072), + [anon_sym_do] = ACTIONS(1072), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_match] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1072), + [anon_sym_DOT_DOT] = ACTIONS(1072), + [anon_sym_try] = ACTIONS(1072), + [anon_sym_return] = ACTIONS(1072), + [anon_sym_source] = ACTIONS(1072), + [anon_sym_source_DASHenv] = ACTIONS(1072), + [anon_sym_register] = ACTIONS(1072), + [anon_sym_hide] = ACTIONS(1072), + [anon_sym_hide_DASHenv] = ACTIONS(1072), + [anon_sym_overlay] = ACTIONS(1072), + [anon_sym_as] = ACTIONS(1072), + [anon_sym_where] = ACTIONS(1072), + [anon_sym_not] = ACTIONS(1072), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1072), + [anon_sym_DOT_DOT_LT] = ACTIONS(1072), + [anon_sym_null] = ACTIONS(1072), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [aux_sym__val_number_decimal_token1] = ACTIONS(1072), + [aux_sym__val_number_decimal_token2] = ACTIONS(1072), + [anon_sym_DOT2] = ACTIONS(1072), + [aux_sym__val_number_decimal_token3] = ACTIONS(1072), + [aux_sym__val_number_token1] = ACTIONS(1072), + [aux_sym__val_number_token2] = ACTIONS(1072), + [aux_sym__val_number_token3] = ACTIONS(1072), + [aux_sym__val_number_token4] = ACTIONS(1072), + [aux_sym__val_number_token5] = ACTIONS(1072), + [aux_sym__val_number_token6] = ACTIONS(1072), + [anon_sym_0b] = ACTIONS(1072), + [anon_sym_0o] = ACTIONS(1072), + [anon_sym_0x] = ACTIONS(1072), + [sym_val_date] = ACTIONS(1072), + [anon_sym_DQUOTE] = ACTIONS(1072), + [sym__str_single_quotes] = ACTIONS(1072), + [sym__str_back_ticks] = ACTIONS(1072), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1072), + [anon_sym_CARET] = ACTIONS(1072), [anon_sym_POUND] = ACTIONS(113), }, - [1276] = { - [sym_cell_path] = STATE(1489), - [sym_path] = STATE(1278), - [sym_comment] = STATE(1276), - [anon_sym_LBRACK] = ACTIONS(1012), - [anon_sym_COMMA] = ACTIONS(1012), - [anon_sym_LPAREN] = ACTIONS(1012), - [anon_sym_DOLLAR] = ACTIONS(1012), - [anon_sym_GT] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_in] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_RBRACE] = ACTIONS(1012), - [anon_sym__] = ACTIONS(1010), - [anon_sym_DOT_DOT] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1010), - [anon_sym_STAR_STAR] = ACTIONS(1012), - [anon_sym_PLUS_PLUS] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1010), - [anon_sym_mod] = ACTIONS(1012), - [anon_sym_SLASH_SLASH] = ACTIONS(1012), - [anon_sym_PLUS] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1012), - [anon_sym_bit_DASHshr] = ACTIONS(1012), - [anon_sym_EQ_EQ] = ACTIONS(1012), - [anon_sym_BANG_EQ] = ACTIONS(1012), - [anon_sym_LT2] = ACTIONS(1010), - [anon_sym_LT_EQ] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1012), - [anon_sym_not_DASHin] = ACTIONS(1012), - [anon_sym_starts_DASHwith] = ACTIONS(1012), - [anon_sym_ends_DASHwith] = ACTIONS(1012), - [anon_sym_EQ_TILDE] = ACTIONS(1012), - [anon_sym_BANG_TILDE] = ACTIONS(1012), - [anon_sym_bit_DASHand] = ACTIONS(1012), - [anon_sym_bit_DASHxor] = ACTIONS(1012), - [anon_sym_bit_DASHor] = ACTIONS(1012), - [anon_sym_and] = ACTIONS(1012), - [anon_sym_xor] = ACTIONS(1012), - [anon_sym_or] = ACTIONS(1012), - [anon_sym_DOT_DOT2] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(3636), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT] = ACTIONS(1010), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), - [anon_sym_null] = ACTIONS(1012), - [anon_sym_true] = ACTIONS(1012), - [anon_sym_false] = ACTIONS(1012), - [aux_sym__val_number_decimal_token1] = ACTIONS(1010), - [aux_sym__val_number_decimal_token2] = ACTIONS(1012), - [anon_sym_DOT2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = 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(1010), - [anon_sym_0o] = ACTIONS(1010), - [anon_sym_0x] = ACTIONS(1010), - [sym_val_date] = ACTIONS(1012), - [anon_sym_DQUOTE] = ACTIONS(1012), - [sym__str_single_quotes] = ACTIONS(1012), - [sym__str_back_ticks] = ACTIONS(1012), - [anon_sym_err_GT] = ACTIONS(1012), - [anon_sym_out_GT] = ACTIONS(1012), - [anon_sym_e_GT] = ACTIONS(1012), - [anon_sym_o_GT] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT] = ACTIONS(1012), - [aux_sym_unquoted_token1] = ACTIONS(1010), + [1481] = { + [sym_expr_unary] = STATE(5879), + [sym__expr_unary_minus] = STATE(5878), + [sym_expr_binary] = STATE(5879), + [sym__expr_binary_expression] = STATE(5901), + [sym_expr_parenthesized] = STATE(5879), + [sym__val_range] = STATE(10069), + [sym__value] = STATE(5879), + [sym_val_nothing] = STATE(5931), + [sym_val_bool] = STATE(5739), + [sym_val_variable] = STATE(5931), + [sym__var] = STATE(5079), + [sym_val_number] = STATE(5931), + [sym__val_number_decimal] = STATE(4336), + [sym__val_number] = STATE(5285), + [sym_val_duration] = STATE(5931), + [sym_val_filesize] = STATE(5931), + [sym_val_binary] = STATE(5931), + [sym_val_string] = STATE(5931), + [sym__str_double_quotes] = STATE(5888), + [sym_val_interpolated] = STATE(5931), + [sym__inter_single_quotes] = STATE(5935), + [sym__inter_double_quotes] = STATE(5940), + [sym_val_list] = STATE(5931), + [sym_val_record] = STATE(5931), + [sym_val_table] = STATE(5931), + [sym_val_closure] = STATE(5931), + [sym_unquoted] = STATE(5985), + [sym__unquoted_anonymous_prefix] = STATE(10402), + [sym_comment] = STATE(1481), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(4909), + [anon_sym_DOLLAR] = ACTIONS(4911), + [anon_sym_DASH] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_DOT_DOT] = ACTIONS(4913), + [anon_sym_not] = ACTIONS(3918), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4915), + [anon_sym_DOT_DOT_LT] = ACTIONS(4915), + [anon_sym_null] = ACTIONS(3922), + [anon_sym_true] = ACTIONS(3924), + [anon_sym_false] = ACTIONS(3924), + [aux_sym__val_number_decimal_token1] = ACTIONS(3926), + [aux_sym__val_number_decimal_token2] = ACTIONS(3928), + [anon_sym_DOT2] = ACTIONS(4917), + [aux_sym__val_number_decimal_token3] = ACTIONS(3932), + [aux_sym__val_number_token1] = ACTIONS(93), + [aux_sym__val_number_token2] = ACTIONS(93), + [aux_sym__val_number_token3] = ACTIONS(93), + [aux_sym__val_number_token4] = ACTIONS(4919), + [aux_sym__val_number_token5] = ACTIONS(4919), + [aux_sym__val_number_token6] = ACTIONS(4919), + [anon_sym_0b] = ACTIONS(97), + [anon_sym_0o] = ACTIONS(99), + [anon_sym_0x] = ACTIONS(99), + [sym_val_date] = ACTIONS(3936), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym__str_single_quotes] = ACTIONS(105), + [sym__str_back_ticks] = ACTIONS(105), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(109), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2924), [anon_sym_POUND] = ACTIONS(3), }, - [1277] = { - [sym__flag] = STATE(2069), - [sym_short_flag] = STATE(1768), - [sym_long_flag] = STATE(1768), - [sym_long_flag_equals_value] = STATE(1767), - [sym_comment] = STATE(1277), - [aux_sym_overlay_use_repeat1] = STATE(1282), - [anon_sym_export] = ACTIONS(3706), - [anon_sym_alias] = ACTIONS(3706), - [anon_sym_let] = ACTIONS(3706), - [anon_sym_let_DASHenv] = ACTIONS(3706), - [anon_sym_mut] = ACTIONS(3706), - [anon_sym_const] = ACTIONS(3706), - [anon_sym_SEMI] = ACTIONS(3706), - [sym_cmd_identifier] = ACTIONS(3706), - [anon_sym_LF] = ACTIONS(3708), - [anon_sym_def] = ACTIONS(3706), - [anon_sym_export_DASHenv] = ACTIONS(3706), - [anon_sym_extern] = ACTIONS(3706), - [anon_sym_module] = ACTIONS(3706), - [anon_sym_use] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3706), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_RPAREN] = ACTIONS(3706), - [anon_sym_DOLLAR] = ACTIONS(3706), - [anon_sym_error] = ACTIONS(3706), - [anon_sym_DASH_DASH] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3221), - [anon_sym_break] = ACTIONS(3706), - [anon_sym_continue] = ACTIONS(3706), - [anon_sym_for] = ACTIONS(3706), - [anon_sym_loop] = ACTIONS(3706), - [anon_sym_while] = ACTIONS(3706), - [anon_sym_do] = ACTIONS(3706), - [anon_sym_if] = ACTIONS(3706), - [anon_sym_match] = ACTIONS(3706), - [anon_sym_LBRACE] = ACTIONS(3706), - [anon_sym_RBRACE] = ACTIONS(3706), - [anon_sym_DOT_DOT] = ACTIONS(3706), - [anon_sym_try] = ACTIONS(3706), - [anon_sym_return] = ACTIONS(3706), - [anon_sym_source] = ACTIONS(3706), - [anon_sym_source_DASHenv] = ACTIONS(3706), - [anon_sym_register] = ACTIONS(3706), - [anon_sym_hide] = ACTIONS(3706), - [anon_sym_hide_DASHenv] = ACTIONS(3706), - [anon_sym_overlay] = ACTIONS(3706), - [anon_sym_as] = ACTIONS(3712), - [anon_sym_where] = ACTIONS(3706), - [anon_sym_not] = ACTIONS(3706), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3706), - [anon_sym_DOT_DOT_LT] = ACTIONS(3706), - [anon_sym_null] = ACTIONS(3706), - [anon_sym_true] = ACTIONS(3706), - [anon_sym_false] = ACTIONS(3706), - [aux_sym__val_number_decimal_token1] = ACTIONS(3706), - [aux_sym__val_number_decimal_token2] = ACTIONS(3706), - [anon_sym_DOT2] = ACTIONS(3706), - [aux_sym__val_number_decimal_token3] = ACTIONS(3706), - [aux_sym__val_number_token1] = ACTIONS(3706), - [aux_sym__val_number_token2] = ACTIONS(3706), - [aux_sym__val_number_token3] = ACTIONS(3706), - [aux_sym__val_number_token4] = ACTIONS(3706), - [aux_sym__val_number_token5] = ACTIONS(3706), - [aux_sym__val_number_token6] = ACTIONS(3706), - [anon_sym_0b] = ACTIONS(3706), - [anon_sym_0o] = ACTIONS(3706), - [anon_sym_0x] = ACTIONS(3706), - [sym_val_date] = ACTIONS(3706), - [anon_sym_DQUOTE] = ACTIONS(3706), - [sym__str_single_quotes] = ACTIONS(3706), - [sym__str_back_ticks] = ACTIONS(3706), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3706), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3706), - [anon_sym_CARET] = ACTIONS(3706), - [anon_sym_POUND] = ACTIONS(113), + [1482] = { + [sym_expr_unary] = STATE(5879), + [sym__expr_unary_minus] = STATE(5878), + [sym_expr_binary] = STATE(5879), + [sym__expr_binary_expression] = STATE(5870), + [sym_expr_parenthesized] = STATE(5879), + [sym__val_range] = STATE(10069), + [sym__value] = STATE(5879), + [sym_val_nothing] = STATE(5931), + [sym_val_bool] = STATE(5739), + [sym_val_variable] = STATE(5931), + [sym__var] = STATE(5079), + [sym_val_number] = STATE(5931), + [sym__val_number_decimal] = STATE(4336), + [sym__val_number] = STATE(5285), + [sym_val_duration] = STATE(5931), + [sym_val_filesize] = STATE(5931), + [sym_val_binary] = STATE(5931), + [sym_val_string] = STATE(5931), + [sym__str_double_quotes] = STATE(5888), + [sym_val_interpolated] = STATE(5931), + [sym__inter_single_quotes] = STATE(5935), + [sym__inter_double_quotes] = STATE(5940), + [sym_val_list] = STATE(5931), + [sym_val_record] = STATE(5931), + [sym_val_table] = STATE(5931), + [sym_val_closure] = STATE(5931), + [sym_unquoted] = STATE(5874), + [sym__unquoted_anonymous_prefix] = STATE(10402), + [sym_comment] = STATE(1482), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(4909), + [anon_sym_DOLLAR] = ACTIONS(4911), + [anon_sym_DASH] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_DOT_DOT] = ACTIONS(4913), + [anon_sym_not] = ACTIONS(3918), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4915), + [anon_sym_DOT_DOT_LT] = ACTIONS(4915), + [anon_sym_null] = ACTIONS(3922), + [anon_sym_true] = ACTIONS(3924), + [anon_sym_false] = ACTIONS(3924), + [aux_sym__val_number_decimal_token1] = ACTIONS(3926), + [aux_sym__val_number_decimal_token2] = ACTIONS(3928), + [anon_sym_DOT2] = ACTIONS(4917), + [aux_sym__val_number_decimal_token3] = ACTIONS(3932), + [aux_sym__val_number_token1] = ACTIONS(93), + [aux_sym__val_number_token2] = ACTIONS(93), + [aux_sym__val_number_token3] = ACTIONS(93), + [aux_sym__val_number_token4] = ACTIONS(4919), + [aux_sym__val_number_token5] = ACTIONS(4919), + [aux_sym__val_number_token6] = ACTIONS(4919), + [anon_sym_0b] = ACTIONS(97), + [anon_sym_0o] = ACTIONS(99), + [anon_sym_0x] = ACTIONS(99), + [sym_val_date] = ACTIONS(3936), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym__str_single_quotes] = ACTIONS(105), + [sym__str_back_ticks] = ACTIONS(105), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(109), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2924), + [anon_sym_POUND] = ACTIONS(3), }, - [1278] = { - [sym_path] = STATE(1348), - [sym_comment] = STATE(1278), - [aux_sym_cell_path_repeat1] = STATE(1231), - [anon_sym_LBRACK] = ACTIONS(989), - [anon_sym_COMMA] = ACTIONS(989), - [anon_sym_LPAREN] = ACTIONS(989), - [anon_sym_DOLLAR] = ACTIONS(989), - [anon_sym_GT] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_in] = ACTIONS(987), - [anon_sym_LBRACE] = ACTIONS(989), - [anon_sym_RBRACE] = ACTIONS(989), - [anon_sym__] = ACTIONS(987), - [anon_sym_DOT_DOT] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(987), - [anon_sym_STAR_STAR] = ACTIONS(989), - [anon_sym_PLUS_PLUS] = ACTIONS(989), - [anon_sym_SLASH] = ACTIONS(987), - [anon_sym_mod] = ACTIONS(989), - [anon_sym_SLASH_SLASH] = ACTIONS(989), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_bit_DASHshl] = ACTIONS(989), - [anon_sym_bit_DASHshr] = ACTIONS(989), - [anon_sym_EQ_EQ] = ACTIONS(989), - [anon_sym_BANG_EQ] = ACTIONS(989), - [anon_sym_LT2] = ACTIONS(987), - [anon_sym_LT_EQ] = ACTIONS(989), - [anon_sym_GT_EQ] = ACTIONS(989), - [anon_sym_not_DASHin] = ACTIONS(989), - [anon_sym_starts_DASHwith] = ACTIONS(989), - [anon_sym_ends_DASHwith] = ACTIONS(989), - [anon_sym_EQ_TILDE] = ACTIONS(989), - [anon_sym_BANG_TILDE] = ACTIONS(989), - [anon_sym_bit_DASHand] = ACTIONS(989), - [anon_sym_bit_DASHxor] = ACTIONS(989), - [anon_sym_bit_DASHor] = ACTIONS(989), - [anon_sym_and] = ACTIONS(989), - [anon_sym_xor] = ACTIONS(989), - [anon_sym_or] = ACTIONS(989), - [anon_sym_DOT_DOT2] = ACTIONS(987), - [anon_sym_DOT] = ACTIONS(3636), - [anon_sym_DOT_DOT_EQ] = ACTIONS(987), - [anon_sym_DOT_DOT_LT] = ACTIONS(987), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(989), - [anon_sym_DOT_DOT_LT2] = ACTIONS(989), - [anon_sym_null] = ACTIONS(989), - [anon_sym_true] = ACTIONS(989), - [anon_sym_false] = ACTIONS(989), - [aux_sym__val_number_decimal_token1] = ACTIONS(987), - [aux_sym__val_number_decimal_token2] = ACTIONS(989), - [anon_sym_DOT2] = ACTIONS(987), - [aux_sym__val_number_decimal_token3] = ACTIONS(989), - [aux_sym__val_number_token1] = ACTIONS(989), - [aux_sym__val_number_token2] = ACTIONS(989), - [aux_sym__val_number_token3] = ACTIONS(989), - [aux_sym__val_number_token4] = ACTIONS(989), - [aux_sym__val_number_token5] = ACTIONS(989), - [aux_sym__val_number_token6] = ACTIONS(989), - [anon_sym_0b] = ACTIONS(987), - [anon_sym_0o] = ACTIONS(987), - [anon_sym_0x] = ACTIONS(987), - [sym_val_date] = ACTIONS(989), - [anon_sym_DQUOTE] = ACTIONS(989), - [sym__str_single_quotes] = ACTIONS(989), - [sym__str_back_ticks] = ACTIONS(989), - [anon_sym_err_GT] = ACTIONS(989), - [anon_sym_out_GT] = ACTIONS(989), - [anon_sym_e_GT] = ACTIONS(989), - [anon_sym_o_GT] = ACTIONS(989), - [anon_sym_err_PLUSout_GT] = ACTIONS(989), - [anon_sym_out_PLUSerr_GT] = ACTIONS(989), - [anon_sym_o_PLUSe_GT] = ACTIONS(989), - [anon_sym_e_PLUSo_GT] = ACTIONS(989), - [aux_sym_unquoted_token1] = ACTIONS(987), + [1483] = { + [sym_expr_unary] = STATE(5879), + [sym__expr_unary_minus] = STATE(5878), + [sym_expr_binary] = STATE(5879), + [sym__expr_binary_expression] = STATE(5979), + [sym_expr_parenthesized] = STATE(5879), + [sym__val_range] = STATE(10069), + [sym__value] = STATE(5879), + [sym_val_nothing] = STATE(5931), + [sym_val_bool] = STATE(5739), + [sym_val_variable] = STATE(5931), + [sym__var] = STATE(5079), + [sym_val_number] = STATE(5931), + [sym__val_number_decimal] = STATE(4336), + [sym__val_number] = STATE(5285), + [sym_val_duration] = STATE(5931), + [sym_val_filesize] = STATE(5931), + [sym_val_binary] = STATE(5931), + [sym_val_string] = STATE(5931), + [sym__str_double_quotes] = STATE(5888), + [sym_val_interpolated] = STATE(5931), + [sym__inter_single_quotes] = STATE(5935), + [sym__inter_double_quotes] = STATE(5940), + [sym_val_list] = STATE(5931), + [sym_val_record] = STATE(5931), + [sym_val_table] = STATE(5931), + [sym_val_closure] = STATE(5931), + [sym_unquoted] = STATE(5934), + [sym__unquoted_anonymous_prefix] = STATE(10402), + [sym_comment] = STATE(1483), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(4909), + [anon_sym_DOLLAR] = ACTIONS(4911), + [anon_sym_DASH] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_DOT_DOT] = ACTIONS(4913), + [anon_sym_not] = ACTIONS(3918), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4915), + [anon_sym_DOT_DOT_LT] = ACTIONS(4915), + [anon_sym_null] = ACTIONS(3922), + [anon_sym_true] = ACTIONS(3924), + [anon_sym_false] = ACTIONS(3924), + [aux_sym__val_number_decimal_token1] = ACTIONS(3926), + [aux_sym__val_number_decimal_token2] = ACTIONS(3928), + [anon_sym_DOT2] = ACTIONS(4917), + [aux_sym__val_number_decimal_token3] = ACTIONS(3932), + [aux_sym__val_number_token1] = ACTIONS(93), + [aux_sym__val_number_token2] = ACTIONS(93), + [aux_sym__val_number_token3] = ACTIONS(93), + [aux_sym__val_number_token4] = ACTIONS(4919), + [aux_sym__val_number_token5] = ACTIONS(4919), + [aux_sym__val_number_token6] = ACTIONS(4919), + [anon_sym_0b] = ACTIONS(97), + [anon_sym_0o] = ACTIONS(99), + [anon_sym_0x] = ACTIONS(99), + [sym_val_date] = ACTIONS(3936), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym__str_single_quotes] = ACTIONS(105), + [sym__str_back_ticks] = ACTIONS(105), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(109), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2924), [anon_sym_POUND] = ACTIONS(3), }, - [1279] = { - [sym_comment] = STATE(1279), - [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), - [anon_sym_SEMI] = ACTIONS(2437), - [sym_cmd_identifier] = ACTIONS(2437), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_RPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_DASH_DASH] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_RBRACE] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_as] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_not] = ACTIONS(2437), - [anon_sym_DOT_DOT2] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2439), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2439), - [aux_sym__immediate_decimal_token1] = ACTIONS(3714), - [aux_sym__immediate_decimal_token2] = ACTIONS(3716), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [anon_sym_DOT2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2437), - [anon_sym_0o] = ACTIONS(2437), - [anon_sym_0x] = ACTIONS(2437), - [sym_val_date] = 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_CARET] = ACTIONS(2437), + [1484] = { + [sym_comment] = STATE(1484), + [ts_builtin_sym_end] = ACTIONS(2358), + [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), + [anon_sym_SEMI] = ACTIONS(2356), + [sym_cmd_identifier] = ACTIONS(2356), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2356), + [anon_sym_DOLLAR] = ACTIONS(2356), + [anon_sym_error] = ACTIONS(2356), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_loop] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_match] = ACTIONS(2356), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_DOT_DOT] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_source] = ACTIONS(2356), + [anon_sym_source_DASHenv] = ACTIONS(2356), + [anon_sym_register] = 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_where] = ACTIONS(2356), + [anon_sym_not] = ACTIONS(2356), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2356), + [anon_sym_DOT_DOT_LT] = ACTIONS(2356), + [aux_sym__immediate_decimal_token2] = ACTIONS(4711), + [anon_sym_null] = ACTIONS(2356), + [anon_sym_true] = ACTIONS(2356), + [anon_sym_false] = ACTIONS(2356), + [aux_sym__val_number_decimal_token1] = ACTIONS(2356), + [aux_sym__val_number_decimal_token2] = ACTIONS(2356), + [anon_sym_DOT2] = ACTIONS(2356), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2356), + [anon_sym_0o] = ACTIONS(2356), + [anon_sym_0x] = ACTIONS(2356), + [sym_val_date] = 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_CARET] = ACTIONS(2356), [anon_sym_POUND] = ACTIONS(113), }, - [1280] = { - [sym_comment] = STATE(1280), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_COMMA] = ACTIONS(1070), - [anon_sym_RBRACK] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_in] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(3718), - [anon_sym_STAR_STAR] = ACTIONS(1070), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_mod] = ACTIONS(1070), - [anon_sym_SLASH_SLASH] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_bit_DASHshl] = ACTIONS(1070), - [anon_sym_bit_DASHshr] = ACTIONS(1070), - [anon_sym_EQ_EQ] = ACTIONS(1070), - [anon_sym_BANG_EQ] = ACTIONS(1070), - [anon_sym_LT2] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1070), - [anon_sym_GT_EQ] = ACTIONS(1070), - [anon_sym_not_DASHin] = ACTIONS(1070), - [anon_sym_starts_DASHwith] = ACTIONS(1070), - [anon_sym_ends_DASHwith] = ACTIONS(1070), - [anon_sym_EQ_TILDE] = ACTIONS(1070), - [anon_sym_BANG_TILDE] = ACTIONS(1070), - [anon_sym_bit_DASHand] = ACTIONS(1070), - [anon_sym_bit_DASHxor] = ACTIONS(1070), - [anon_sym_bit_DASHor] = ACTIONS(1070), - [anon_sym_and] = ACTIONS(1070), - [anon_sym_xor] = ACTIONS(1070), - [anon_sym_or] = ACTIONS(1070), - [anon_sym_DOT_DOT2] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1072), - [anon_sym_null] = ACTIONS(1070), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1070), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [sym__entry_separator] = ACTIONS(1072), - [anon_sym_err_GT] = ACTIONS(1070), - [anon_sym_out_GT] = ACTIONS(1070), - [anon_sym_e_GT] = ACTIONS(1070), - [anon_sym_o_GT] = ACTIONS(1070), - [anon_sym_err_PLUSout_GT] = ACTIONS(1070), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1070), - [anon_sym_o_PLUSe_GT] = ACTIONS(1070), - [anon_sym_e_PLUSo_GT] = ACTIONS(1070), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1070), + [1485] = { + [sym_comment] = STATE(1485), + [ts_builtin_sym_end] = ACTIONS(2231), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_alias] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_let_DASHenv] = ACTIONS(2229), + [anon_sym_mut] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2229), + [sym_cmd_identifier] = ACTIONS(2229), + [anon_sym_LF] = ACTIONS(2231), + [anon_sym_def] = ACTIONS(2229), + [anon_sym_export_DASHenv] = ACTIONS(2229), + [anon_sym_extern] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2229), + [anon_sym_error] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_loop] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_source] = ACTIONS(2229), + [anon_sym_source_DASHenv] = ACTIONS(2229), + [anon_sym_register] = ACTIONS(2229), + [anon_sym_hide] = ACTIONS(2229), + [anon_sym_hide_DASHenv] = ACTIONS(2229), + [anon_sym_overlay] = ACTIONS(2229), + [anon_sym_as] = ACTIONS(2229), + [anon_sym_where] = ACTIONS(2229), + [anon_sym_not] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2229), + [anon_sym_DOT_DOT_LT] = ACTIONS(2229), + [aux_sym__immediate_decimal_token2] = ACTIONS(4749), + [anon_sym_null] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [aux_sym__val_number_decimal_token1] = ACTIONS(2229), + [aux_sym__val_number_decimal_token2] = ACTIONS(2229), + [anon_sym_DOT2] = ACTIONS(2229), + [aux_sym__val_number_decimal_token3] = ACTIONS(2229), + [aux_sym__val_number_token1] = ACTIONS(2229), + [aux_sym__val_number_token2] = ACTIONS(2229), + [aux_sym__val_number_token3] = ACTIONS(2229), + [aux_sym__val_number_token4] = ACTIONS(2229), + [aux_sym__val_number_token5] = ACTIONS(2229), + [aux_sym__val_number_token6] = ACTIONS(2229), + [anon_sym_0b] = ACTIONS(2229), + [anon_sym_0o] = ACTIONS(2229), + [anon_sym_0x] = ACTIONS(2229), + [sym_val_date] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2229), + [anon_sym_CARET] = ACTIONS(2229), [anon_sym_POUND] = ACTIONS(113), }, - [1281] = { - [sym_comment] = STATE(1281), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_COMMA] = ACTIONS(1070), - [anon_sym_RBRACK] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_in] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(3718), - [anon_sym_STAR_STAR] = ACTIONS(1070), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_mod] = ACTIONS(1070), - [anon_sym_SLASH_SLASH] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_bit_DASHshl] = ACTIONS(1070), - [anon_sym_bit_DASHshr] = ACTIONS(1070), - [anon_sym_EQ_EQ] = ACTIONS(1070), - [anon_sym_BANG_EQ] = ACTIONS(1070), - [anon_sym_LT2] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1070), - [anon_sym_GT_EQ] = ACTIONS(1070), - [anon_sym_not_DASHin] = ACTIONS(1070), - [anon_sym_starts_DASHwith] = ACTIONS(1070), - [anon_sym_ends_DASHwith] = ACTIONS(1070), - [anon_sym_EQ_TILDE] = ACTIONS(1070), - [anon_sym_BANG_TILDE] = ACTIONS(1070), - [anon_sym_bit_DASHand] = ACTIONS(1070), - [anon_sym_bit_DASHxor] = ACTIONS(1070), - [anon_sym_bit_DASHor] = ACTIONS(1070), - [anon_sym_and] = ACTIONS(1070), - [anon_sym_xor] = ACTIONS(1070), - [anon_sym_or] = ACTIONS(1070), - [anon_sym_DOT_DOT2] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1072), - [anon_sym_null] = ACTIONS(1070), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1070), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [sym__entry_separator] = ACTIONS(1072), - [anon_sym_err_GT] = ACTIONS(1070), - [anon_sym_out_GT] = ACTIONS(1070), - [anon_sym_e_GT] = ACTIONS(1070), - [anon_sym_o_GT] = ACTIONS(1070), - [anon_sym_err_PLUSout_GT] = ACTIONS(1070), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1070), - [anon_sym_o_PLUSe_GT] = ACTIONS(1070), - [anon_sym_e_PLUSo_GT] = ACTIONS(1070), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1070), + [1486] = { + [sym_comment] = STATE(1486), + [ts_builtin_sym_end] = ACTIONS(2364), + [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), + [anon_sym_SEMI] = ACTIONS(2362), + [sym_cmd_identifier] = ACTIONS(2362), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2362), + [anon_sym_LPAREN] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2362), + [anon_sym_error] = ACTIONS(2362), + [anon_sym_DASH_DASH] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_break] = ACTIONS(2362), + [anon_sym_continue] = ACTIONS(2362), + [anon_sym_for] = ACTIONS(2362), + [anon_sym_loop] = ACTIONS(2362), + [anon_sym_while] = ACTIONS(2362), + [anon_sym_do] = ACTIONS(2362), + [anon_sym_if] = ACTIONS(2362), + [anon_sym_match] = ACTIONS(2362), + [anon_sym_LBRACE] = ACTIONS(2362), + [anon_sym_DOT_DOT] = ACTIONS(2362), + [anon_sym_try] = 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_where] = ACTIONS(2362), + [anon_sym_not] = ACTIONS(2362), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2362), + [anon_sym_DOT_DOT_LT] = ACTIONS(2362), + [aux_sym__immediate_decimal_token2] = ACTIONS(4925), + [anon_sym_null] = ACTIONS(2362), + [anon_sym_true] = ACTIONS(2362), + [anon_sym_false] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2362), + [aux_sym__val_number_decimal_token2] = ACTIONS(2362), + [anon_sym_DOT2] = ACTIONS(2362), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2362), + [anon_sym_0o] = ACTIONS(2362), + [anon_sym_0x] = ACTIONS(2362), + [sym_val_date] = 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_CARET] = ACTIONS(2362), [anon_sym_POUND] = ACTIONS(113), }, - [1282] = { - [sym__flag] = STATE(2069), - [sym_short_flag] = STATE(1768), - [sym_long_flag] = STATE(1768), - [sym_long_flag_equals_value] = STATE(1767), - [sym_comment] = STATE(1282), - [aux_sym_overlay_use_repeat1] = STATE(1235), - [anon_sym_export] = ACTIONS(3720), - [anon_sym_alias] = ACTIONS(3720), - [anon_sym_let] = ACTIONS(3720), - [anon_sym_let_DASHenv] = ACTIONS(3720), - [anon_sym_mut] = ACTIONS(3720), - [anon_sym_const] = ACTIONS(3720), - [anon_sym_SEMI] = ACTIONS(3720), - [sym_cmd_identifier] = ACTIONS(3720), - [anon_sym_LF] = ACTIONS(3722), - [anon_sym_def] = ACTIONS(3720), - [anon_sym_export_DASHenv] = ACTIONS(3720), - [anon_sym_extern] = ACTIONS(3720), - [anon_sym_module] = ACTIONS(3720), - [anon_sym_use] = ACTIONS(3720), - [anon_sym_LBRACK] = ACTIONS(3720), - [anon_sym_LPAREN] = ACTIONS(3720), - [anon_sym_RPAREN] = ACTIONS(3720), - [anon_sym_DOLLAR] = ACTIONS(3720), - [anon_sym_error] = ACTIONS(3720), - [anon_sym_DASH_DASH] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3720), - [anon_sym_break] = ACTIONS(3720), - [anon_sym_continue] = ACTIONS(3720), - [anon_sym_for] = ACTIONS(3720), - [anon_sym_loop] = ACTIONS(3720), - [anon_sym_while] = ACTIONS(3720), - [anon_sym_do] = ACTIONS(3720), - [anon_sym_if] = ACTIONS(3720), - [anon_sym_match] = ACTIONS(3720), - [anon_sym_LBRACE] = ACTIONS(3720), - [anon_sym_RBRACE] = ACTIONS(3720), - [anon_sym_DOT_DOT] = ACTIONS(3720), - [anon_sym_try] = ACTIONS(3720), - [anon_sym_return] = ACTIONS(3720), - [anon_sym_source] = ACTIONS(3720), - [anon_sym_source_DASHenv] = ACTIONS(3720), - [anon_sym_register] = ACTIONS(3720), - [anon_sym_hide] = ACTIONS(3720), - [anon_sym_hide_DASHenv] = ACTIONS(3720), - [anon_sym_overlay] = ACTIONS(3720), - [anon_sym_as] = ACTIONS(3724), - [anon_sym_where] = ACTIONS(3720), - [anon_sym_not] = ACTIONS(3720), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3720), - [anon_sym_DOT_DOT_LT] = ACTIONS(3720), - [anon_sym_null] = ACTIONS(3720), - [anon_sym_true] = ACTIONS(3720), - [anon_sym_false] = ACTIONS(3720), - [aux_sym__val_number_decimal_token1] = ACTIONS(3720), - [aux_sym__val_number_decimal_token2] = ACTIONS(3720), - [anon_sym_DOT2] = ACTIONS(3720), - [aux_sym__val_number_decimal_token3] = ACTIONS(3720), - [aux_sym__val_number_token1] = ACTIONS(3720), - [aux_sym__val_number_token2] = ACTIONS(3720), - [aux_sym__val_number_token3] = ACTIONS(3720), - [aux_sym__val_number_token4] = ACTIONS(3720), - [aux_sym__val_number_token5] = ACTIONS(3720), - [aux_sym__val_number_token6] = ACTIONS(3720), - [anon_sym_0b] = ACTIONS(3720), - [anon_sym_0o] = ACTIONS(3720), - [anon_sym_0x] = ACTIONS(3720), - [sym_val_date] = ACTIONS(3720), - [anon_sym_DQUOTE] = ACTIONS(3720), - [sym__str_single_quotes] = ACTIONS(3720), - [sym__str_back_ticks] = ACTIONS(3720), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3720), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3720), - [anon_sym_CARET] = ACTIONS(3720), + [1487] = { + [sym_comment] = STATE(1487), + [anon_sym_LBRACK] = ACTIONS(1225), + [anon_sym_COMMA] = ACTIONS(1225), + [anon_sym_RBRACK] = ACTIONS(1225), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_DOLLAR] = ACTIONS(1225), + [anon_sym_GT] = ACTIONS(1225), + [anon_sym_DASH_DASH] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_in] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_DOT_DOT] = ACTIONS(1225), + [anon_sym_STAR] = ACTIONS(1225), + [anon_sym_STAR_STAR] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(1225), + [anon_sym_mod] = ACTIONS(1225), + [anon_sym_SLASH_SLASH] = ACTIONS(1225), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_bit_DASHshl] = ACTIONS(1225), + [anon_sym_bit_DASHshr] = ACTIONS(1225), + [anon_sym_EQ_EQ] = ACTIONS(1225), + [anon_sym_BANG_EQ] = ACTIONS(1225), + [anon_sym_LT2] = ACTIONS(1225), + [anon_sym_LT_EQ] = ACTIONS(1225), + [anon_sym_GT_EQ] = ACTIONS(1225), + [anon_sym_not_DASHin] = ACTIONS(1225), + [anon_sym_starts_DASHwith] = ACTIONS(1225), + [anon_sym_ends_DASHwith] = ACTIONS(1225), + [anon_sym_EQ_TILDE] = ACTIONS(1225), + [anon_sym_BANG_TILDE] = ACTIONS(1225), + [anon_sym_bit_DASHand] = ACTIONS(1225), + [anon_sym_bit_DASHxor] = ACTIONS(1225), + [anon_sym_bit_DASHor] = ACTIONS(1225), + [anon_sym_and] = ACTIONS(1225), + [anon_sym_xor] = ACTIONS(1225), + [anon_sym_or] = ACTIONS(1225), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1225), + [anon_sym_DOT_DOT_LT] = ACTIONS(1225), + [anon_sym_null] = ACTIONS(1225), + [anon_sym_true] = ACTIONS(1225), + [anon_sym_false] = ACTIONS(1225), + [aux_sym__val_number_decimal_token1] = ACTIONS(1225), + [aux_sym__val_number_decimal_token2] = ACTIONS(1225), + [anon_sym_DOT2] = ACTIONS(1225), + [aux_sym__val_number_decimal_token3] = ACTIONS(1225), + [aux_sym__val_number_token1] = ACTIONS(1225), + [aux_sym__val_number_token2] = ACTIONS(1225), + [aux_sym__val_number_token3] = ACTIONS(1225), + [aux_sym__val_number_token4] = ACTIONS(1225), + [aux_sym__val_number_token5] = ACTIONS(1225), + [aux_sym__val_number_token6] = ACTIONS(1225), + [anon_sym_0b] = ACTIONS(1225), + [anon_sym_0o] = ACTIONS(1225), + [anon_sym_0x] = ACTIONS(1225), + [sym_val_date] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1225), + [sym__str_single_quotes] = ACTIONS(1225), + [sym__str_back_ticks] = ACTIONS(1225), + [sym__entry_separator] = ACTIONS(1227), + [anon_sym_err_GT] = ACTIONS(1225), + [anon_sym_out_GT] = ACTIONS(1225), + [anon_sym_e_GT] = ACTIONS(1225), + [anon_sym_o_GT] = ACTIONS(1225), + [anon_sym_err_PLUSout_GT] = ACTIONS(1225), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1225), + [anon_sym_o_PLUSe_GT] = ACTIONS(1225), + [anon_sym_e_PLUSo_GT] = ACTIONS(1225), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1225), [anon_sym_POUND] = ACTIONS(113), }, - [1283] = { - [sym__flag] = STATE(2069), - [sym_short_flag] = STATE(1768), - [sym_long_flag] = STATE(1768), - [sym_long_flag_equals_value] = STATE(1767), - [sym_comment] = STATE(1283), - [aux_sym_overlay_use_repeat1] = STATE(1284), - [anon_sym_export] = ACTIONS(3726), - [anon_sym_alias] = ACTIONS(3726), - [anon_sym_let] = ACTIONS(3726), - [anon_sym_let_DASHenv] = ACTIONS(3726), - [anon_sym_mut] = ACTIONS(3726), - [anon_sym_const] = ACTIONS(3726), - [anon_sym_SEMI] = ACTIONS(3726), - [sym_cmd_identifier] = ACTIONS(3726), - [anon_sym_LF] = ACTIONS(3728), - [anon_sym_def] = ACTIONS(3726), - [anon_sym_export_DASHenv] = ACTIONS(3726), - [anon_sym_extern] = ACTIONS(3726), - [anon_sym_module] = ACTIONS(3726), - [anon_sym_use] = ACTIONS(3726), - [anon_sym_LBRACK] = ACTIONS(3726), - [anon_sym_LPAREN] = ACTIONS(3726), - [anon_sym_RPAREN] = ACTIONS(3726), - [anon_sym_DOLLAR] = ACTIONS(3726), - [anon_sym_error] = ACTIONS(3726), - [anon_sym_DASH_DASH] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3221), - [anon_sym_break] = ACTIONS(3726), - [anon_sym_continue] = ACTIONS(3726), - [anon_sym_for] = ACTIONS(3726), - [anon_sym_loop] = ACTIONS(3726), - [anon_sym_while] = ACTIONS(3726), - [anon_sym_do] = ACTIONS(3726), - [anon_sym_if] = ACTIONS(3726), - [anon_sym_match] = ACTIONS(3726), - [anon_sym_LBRACE] = ACTIONS(3726), - [anon_sym_RBRACE] = ACTIONS(3726), - [anon_sym_DOT_DOT] = ACTIONS(3726), - [anon_sym_try] = ACTIONS(3726), - [anon_sym_return] = ACTIONS(3726), - [anon_sym_source] = ACTIONS(3726), - [anon_sym_source_DASHenv] = ACTIONS(3726), - [anon_sym_register] = ACTIONS(3726), - [anon_sym_hide] = ACTIONS(3726), - [anon_sym_hide_DASHenv] = ACTIONS(3726), - [anon_sym_overlay] = ACTIONS(3726), - [anon_sym_as] = ACTIONS(3730), - [anon_sym_where] = ACTIONS(3726), - [anon_sym_not] = ACTIONS(3726), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3726), - [anon_sym_DOT_DOT_LT] = ACTIONS(3726), - [anon_sym_null] = ACTIONS(3726), - [anon_sym_true] = ACTIONS(3726), - [anon_sym_false] = ACTIONS(3726), - [aux_sym__val_number_decimal_token1] = ACTIONS(3726), - [aux_sym__val_number_decimal_token2] = ACTIONS(3726), - [anon_sym_DOT2] = ACTIONS(3726), - [aux_sym__val_number_decimal_token3] = ACTIONS(3726), - [aux_sym__val_number_token1] = ACTIONS(3726), - [aux_sym__val_number_token2] = ACTIONS(3726), - [aux_sym__val_number_token3] = ACTIONS(3726), - [aux_sym__val_number_token4] = ACTIONS(3726), - [aux_sym__val_number_token5] = ACTIONS(3726), - [aux_sym__val_number_token6] = ACTIONS(3726), - [anon_sym_0b] = ACTIONS(3726), - [anon_sym_0o] = ACTIONS(3726), - [anon_sym_0x] = ACTIONS(3726), - [sym_val_date] = ACTIONS(3726), - [anon_sym_DQUOTE] = ACTIONS(3726), - [sym__str_single_quotes] = ACTIONS(3726), - [sym__str_back_ticks] = ACTIONS(3726), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3726), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3726), - [anon_sym_CARET] = ACTIONS(3726), + [1488] = { + [sym_comment] = STATE(1488), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_alias] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_let_DASHenv] = ACTIONS(2229), + [anon_sym_mut] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2229), + [sym_cmd_identifier] = ACTIONS(2229), + [anon_sym_LF] = ACTIONS(2231), + [anon_sym_def] = ACTIONS(2229), + [anon_sym_export_DASHenv] = ACTIONS(2229), + [anon_sym_extern] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_RPAREN] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2229), + [anon_sym_error] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_loop] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_RBRACE] = ACTIONS(2229), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_source] = ACTIONS(2229), + [anon_sym_source_DASHenv] = ACTIONS(2229), + [anon_sym_register] = ACTIONS(2229), + [anon_sym_hide] = ACTIONS(2229), + [anon_sym_hide_DASHenv] = ACTIONS(2229), + [anon_sym_overlay] = ACTIONS(2229), + [anon_sym_as] = ACTIONS(2229), + [anon_sym_where] = ACTIONS(2229), + [anon_sym_not] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2229), + [anon_sym_DOT_DOT_LT] = ACTIONS(2229), + [anon_sym_null] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [aux_sym__val_number_decimal_token1] = ACTIONS(2229), + [aux_sym__val_number_decimal_token2] = ACTIONS(2229), + [anon_sym_DOT2] = ACTIONS(2229), + [aux_sym__val_number_decimal_token3] = ACTIONS(2229), + [aux_sym__val_number_token1] = ACTIONS(2229), + [aux_sym__val_number_token2] = ACTIONS(2229), + [aux_sym__val_number_token3] = ACTIONS(2229), + [aux_sym__val_number_token4] = ACTIONS(2229), + [aux_sym__val_number_token5] = ACTIONS(2229), + [aux_sym__val_number_token6] = ACTIONS(2229), + [anon_sym_0b] = ACTIONS(2229), + [anon_sym_0o] = ACTIONS(2229), + [anon_sym_0x] = ACTIONS(2229), + [sym_val_date] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2229), + [anon_sym_CARET] = ACTIONS(2229), [anon_sym_POUND] = ACTIONS(113), }, - [1284] = { - [sym__flag] = STATE(2069), - [sym_short_flag] = STATE(1768), - [sym_long_flag] = STATE(1768), - [sym_long_flag_equals_value] = STATE(1767), - [sym_comment] = STATE(1284), - [aux_sym_overlay_use_repeat1] = STATE(1235), - [anon_sym_export] = ACTIONS(3732), - [anon_sym_alias] = ACTIONS(3732), - [anon_sym_let] = ACTIONS(3732), - [anon_sym_let_DASHenv] = ACTIONS(3732), - [anon_sym_mut] = ACTIONS(3732), - [anon_sym_const] = ACTIONS(3732), - [anon_sym_SEMI] = ACTIONS(3732), - [sym_cmd_identifier] = ACTIONS(3732), - [anon_sym_LF] = ACTIONS(3734), - [anon_sym_def] = ACTIONS(3732), - [anon_sym_export_DASHenv] = ACTIONS(3732), - [anon_sym_extern] = ACTIONS(3732), - [anon_sym_module] = ACTIONS(3732), - [anon_sym_use] = ACTIONS(3732), - [anon_sym_LBRACK] = ACTIONS(3732), - [anon_sym_LPAREN] = ACTIONS(3732), - [anon_sym_RPAREN] = ACTIONS(3732), - [anon_sym_DOLLAR] = ACTIONS(3732), - [anon_sym_error] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3732), - [anon_sym_break] = ACTIONS(3732), - [anon_sym_continue] = ACTIONS(3732), - [anon_sym_for] = ACTIONS(3732), - [anon_sym_loop] = ACTIONS(3732), - [anon_sym_while] = ACTIONS(3732), - [anon_sym_do] = ACTIONS(3732), - [anon_sym_if] = ACTIONS(3732), - [anon_sym_match] = ACTIONS(3732), - [anon_sym_LBRACE] = ACTIONS(3732), - [anon_sym_RBRACE] = ACTIONS(3732), - [anon_sym_DOT_DOT] = ACTIONS(3732), - [anon_sym_try] = ACTIONS(3732), - [anon_sym_return] = ACTIONS(3732), - [anon_sym_source] = ACTIONS(3732), - [anon_sym_source_DASHenv] = ACTIONS(3732), - [anon_sym_register] = ACTIONS(3732), - [anon_sym_hide] = ACTIONS(3732), - [anon_sym_hide_DASHenv] = ACTIONS(3732), - [anon_sym_overlay] = ACTIONS(3732), - [anon_sym_as] = ACTIONS(3736), - [anon_sym_where] = ACTIONS(3732), - [anon_sym_not] = ACTIONS(3732), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3732), - [anon_sym_DOT_DOT_LT] = ACTIONS(3732), - [anon_sym_null] = ACTIONS(3732), - [anon_sym_true] = ACTIONS(3732), - [anon_sym_false] = ACTIONS(3732), - [aux_sym__val_number_decimal_token1] = ACTIONS(3732), - [aux_sym__val_number_decimal_token2] = ACTIONS(3732), - [anon_sym_DOT2] = ACTIONS(3732), - [aux_sym__val_number_decimal_token3] = ACTIONS(3732), - [aux_sym__val_number_token1] = ACTIONS(3732), - [aux_sym__val_number_token2] = ACTIONS(3732), - [aux_sym__val_number_token3] = ACTIONS(3732), - [aux_sym__val_number_token4] = ACTIONS(3732), - [aux_sym__val_number_token5] = ACTIONS(3732), - [aux_sym__val_number_token6] = ACTIONS(3732), - [anon_sym_0b] = ACTIONS(3732), - [anon_sym_0o] = ACTIONS(3732), - [anon_sym_0x] = ACTIONS(3732), - [sym_val_date] = ACTIONS(3732), - [anon_sym_DQUOTE] = ACTIONS(3732), - [sym__str_single_quotes] = ACTIONS(3732), - [sym__str_back_ticks] = ACTIONS(3732), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3732), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3732), - [anon_sym_CARET] = ACTIONS(3732), + [1489] = { + [sym_comment] = STATE(1489), + [anon_sym_LBRACK] = ACTIONS(1175), + [anon_sym_COMMA] = ACTIONS(1175), + [anon_sym_RBRACK] = ACTIONS(1175), + [anon_sym_LPAREN] = ACTIONS(1175), + [anon_sym_DOLLAR] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [anon_sym_DASH_DASH] = ACTIONS(1175), + [anon_sym_DASH] = ACTIONS(1175), + [anon_sym_in] = ACTIONS(1175), + [anon_sym_LBRACE] = ACTIONS(1175), + [anon_sym_DOT_DOT] = ACTIONS(1175), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_STAR_STAR] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_mod] = ACTIONS(1175), + [anon_sym_SLASH_SLASH] = ACTIONS(1175), + [anon_sym_PLUS] = ACTIONS(1175), + [anon_sym_bit_DASHshl] = ACTIONS(1175), + [anon_sym_bit_DASHshr] = ACTIONS(1175), + [anon_sym_EQ_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_LT2] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_not_DASHin] = ACTIONS(1175), + [anon_sym_starts_DASHwith] = ACTIONS(1175), + [anon_sym_ends_DASHwith] = ACTIONS(1175), + [anon_sym_EQ_TILDE] = ACTIONS(1175), + [anon_sym_BANG_TILDE] = ACTIONS(1175), + [anon_sym_bit_DASHand] = ACTIONS(1175), + [anon_sym_bit_DASHxor] = ACTIONS(1175), + [anon_sym_bit_DASHor] = ACTIONS(1175), + [anon_sym_and] = ACTIONS(1175), + [anon_sym_xor] = ACTIONS(1175), + [anon_sym_or] = ACTIONS(1175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1175), + [anon_sym_DOT_DOT_LT] = ACTIONS(1175), + [anon_sym_null] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1175), + [anon_sym_false] = ACTIONS(1175), + [aux_sym__val_number_decimal_token1] = ACTIONS(1175), + [aux_sym__val_number_decimal_token2] = ACTIONS(1175), + [anon_sym_DOT2] = ACTIONS(1175), + [aux_sym__val_number_decimal_token3] = ACTIONS(1175), + [aux_sym__val_number_token1] = ACTIONS(1175), + [aux_sym__val_number_token2] = ACTIONS(1175), + [aux_sym__val_number_token3] = ACTIONS(1175), + [aux_sym__val_number_token4] = ACTIONS(1175), + [aux_sym__val_number_token5] = ACTIONS(1175), + [aux_sym__val_number_token6] = ACTIONS(1175), + [anon_sym_0b] = ACTIONS(1175), + [anon_sym_0o] = ACTIONS(1175), + [anon_sym_0x] = ACTIONS(1175), + [sym_val_date] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1175), + [sym__str_single_quotes] = ACTIONS(1175), + [sym__str_back_ticks] = ACTIONS(1175), + [sym__entry_separator] = ACTIONS(1177), + [anon_sym_err_GT] = ACTIONS(1175), + [anon_sym_out_GT] = ACTIONS(1175), + [anon_sym_e_GT] = ACTIONS(1175), + [anon_sym_o_GT] = ACTIONS(1175), + [anon_sym_err_PLUSout_GT] = ACTIONS(1175), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1175), + [anon_sym_o_PLUSe_GT] = ACTIONS(1175), + [anon_sym_e_PLUSo_GT] = ACTIONS(1175), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1175), [anon_sym_POUND] = ACTIONS(113), }, - [1285] = { - [sym_comment] = STATE(1285), - [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), - [anon_sym_SEMI] = ACTIONS(2437), - [sym_cmd_identifier] = ACTIONS(2437), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_RPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_DASH_DASH] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_RBRACE] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_as] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_not] = ACTIONS(2437), - [anon_sym_LPAREN2] = ACTIONS(2439), - [anon_sym_DOT] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [aux_sym__immediate_decimal_token1] = ACTIONS(3738), - [aux_sym__immediate_decimal_token2] = ACTIONS(3740), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [anon_sym_DOT2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2437), - [anon_sym_0o] = ACTIONS(2437), - [anon_sym_0x] = ACTIONS(2437), - [sym_val_date] = 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_CARET] = ACTIONS(2437), - [aux_sym_unquoted_token2] = ACTIONS(2437), + [1490] = { + [sym_comment] = STATE(1490), + [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), + [anon_sym_SEMI] = ACTIONS(2362), + [sym_cmd_identifier] = ACTIONS(2362), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2362), + [anon_sym_LPAREN] = ACTIONS(2362), + [anon_sym_RPAREN] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2362), + [anon_sym_error] = ACTIONS(2362), + [anon_sym_DASH_DASH] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_break] = ACTIONS(2362), + [anon_sym_continue] = ACTIONS(2362), + [anon_sym_for] = ACTIONS(2362), + [anon_sym_loop] = ACTIONS(2362), + [anon_sym_while] = ACTIONS(2362), + [anon_sym_do] = ACTIONS(2362), + [anon_sym_if] = ACTIONS(2362), + [anon_sym_match] = ACTIONS(2362), + [anon_sym_LBRACE] = ACTIONS(2362), + [anon_sym_RBRACE] = ACTIONS(2362), + [anon_sym_DOT_DOT] = ACTIONS(2362), + [anon_sym_try] = 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_where] = ACTIONS(2362), + [anon_sym_not] = ACTIONS(2362), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2362), + [anon_sym_DOT_DOT_LT] = ACTIONS(2362), + [anon_sym_null] = ACTIONS(2362), + [anon_sym_true] = ACTIONS(2362), + [anon_sym_false] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2362), + [aux_sym__val_number_decimal_token2] = ACTIONS(2362), + [anon_sym_DOT2] = ACTIONS(2362), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2362), + [anon_sym_0o] = ACTIONS(2362), + [anon_sym_0x] = ACTIONS(2362), + [sym_val_date] = 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_CARET] = ACTIONS(2362), [anon_sym_POUND] = ACTIONS(113), }, - [1286] = { - [sym_comment] = STATE(1286), - [ts_builtin_sym_end] = ACTIONS(3520), - [anon_sym_export] = ACTIONS(3518), - [anon_sym_alias] = ACTIONS(3518), - [anon_sym_let] = ACTIONS(3518), - [anon_sym_let_DASHenv] = ACTIONS(3518), - [anon_sym_mut] = ACTIONS(3518), - [anon_sym_const] = ACTIONS(3518), - [anon_sym_SEMI] = ACTIONS(3518), - [sym_cmd_identifier] = ACTIONS(3518), - [anon_sym_LF] = ACTIONS(3520), - [anon_sym_def] = ACTIONS(3518), - [anon_sym_export_DASHenv] = ACTIONS(3518), - [anon_sym_extern] = ACTIONS(3518), - [anon_sym_module] = ACTIONS(3518), - [anon_sym_use] = ACTIONS(3518), - [anon_sym_LBRACK] = ACTIONS(3518), - [anon_sym_LPAREN] = ACTIONS(3518), - [anon_sym_DOLLAR] = ACTIONS(3518), - [anon_sym_error] = ACTIONS(3518), - [anon_sym_DASH_DASH] = ACTIONS(3518), - [anon_sym_DASH] = ACTIONS(3518), - [anon_sym_break] = ACTIONS(3518), - [anon_sym_continue] = ACTIONS(3518), - [anon_sym_for] = ACTIONS(3518), - [anon_sym_loop] = ACTIONS(3518), - [anon_sym_while] = ACTIONS(3518), - [anon_sym_do] = ACTIONS(3518), - [anon_sym_if] = ACTIONS(3518), - [anon_sym_match] = ACTIONS(3518), - [anon_sym_LBRACE] = ACTIONS(3518), - [anon_sym_DOT_DOT] = ACTIONS(3518), - [anon_sym_try] = ACTIONS(3518), - [anon_sym_return] = ACTIONS(3518), - [anon_sym_source] = ACTIONS(3518), - [anon_sym_source_DASHenv] = ACTIONS(3518), - [anon_sym_register] = ACTIONS(3518), - [anon_sym_hide] = ACTIONS(3518), - [anon_sym_hide_DASHenv] = ACTIONS(3518), - [anon_sym_overlay] = ACTIONS(3518), - [anon_sym_as] = ACTIONS(3518), - [anon_sym_where] = ACTIONS(3518), - [anon_sym_not] = ACTIONS(3518), - [anon_sym_LPAREN2] = ACTIONS(3522), - [anon_sym_DOT_DOT2] = ACTIONS(3742), - [anon_sym_DOT] = ACTIONS(1934), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3518), - [anon_sym_DOT_DOT_LT] = ACTIONS(3518), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3744), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3744), - [anon_sym_null] = ACTIONS(3518), - [anon_sym_true] = ACTIONS(3518), - [anon_sym_false] = ACTIONS(3518), - [aux_sym__val_number_decimal_token1] = ACTIONS(3518), - [aux_sym__val_number_decimal_token2] = ACTIONS(3518), - [anon_sym_DOT2] = ACTIONS(3518), - [aux_sym__val_number_decimal_token3] = ACTIONS(3518), - [aux_sym__val_number_token1] = ACTIONS(3518), - [aux_sym__val_number_token2] = ACTIONS(3518), - [aux_sym__val_number_token3] = ACTIONS(3518), - [aux_sym__val_number_token4] = ACTIONS(3518), - [aux_sym__val_number_token5] = ACTIONS(3518), - [aux_sym__val_number_token6] = ACTIONS(3518), - [anon_sym_0b] = ACTIONS(3518), - [anon_sym_0o] = ACTIONS(3518), - [anon_sym_0x] = ACTIONS(3518), - [sym_val_date] = ACTIONS(3518), - [anon_sym_DQUOTE] = ACTIONS(3518), - [sym__str_single_quotes] = ACTIONS(3518), - [sym__str_back_ticks] = ACTIONS(3518), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3518), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3518), - [anon_sym_CARET] = ACTIONS(3518), - [aux_sym_unquoted_token2] = ACTIONS(1934), + [1491] = { + [sym_comment] = STATE(1491), + [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), + [anon_sym_SEMI] = ACTIONS(2402), + [sym_cmd_identifier] = ACTIONS(2402), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2402), + [anon_sym_LPAREN] = ACTIONS(2402), + [anon_sym_RPAREN] = ACTIONS(2402), + [anon_sym_DOLLAR] = ACTIONS(2402), + [anon_sym_error] = ACTIONS(2402), + [anon_sym_DASH_DASH] = ACTIONS(2402), + [anon_sym_DASH] = ACTIONS(2402), + [anon_sym_break] = ACTIONS(2402), + [anon_sym_continue] = ACTIONS(2402), + [anon_sym_for] = ACTIONS(2402), + [anon_sym_loop] = ACTIONS(2402), + [anon_sym_while] = ACTIONS(2402), + [anon_sym_do] = ACTIONS(2402), + [anon_sym_if] = ACTIONS(2402), + [anon_sym_match] = ACTIONS(2402), + [anon_sym_LBRACE] = ACTIONS(2402), + [anon_sym_RBRACE] = ACTIONS(2402), + [anon_sym_DOT_DOT] = ACTIONS(2402), + [anon_sym_try] = 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_where] = ACTIONS(2402), + [anon_sym_not] = ACTIONS(2402), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2402), + [anon_sym_DOT_DOT_LT] = ACTIONS(2402), + [anon_sym_null] = ACTIONS(2402), + [anon_sym_true] = ACTIONS(2402), + [anon_sym_false] = ACTIONS(2402), + [aux_sym__val_number_decimal_token1] = ACTIONS(2402), + [aux_sym__val_number_decimal_token2] = ACTIONS(2402), + [anon_sym_DOT2] = ACTIONS(2402), + [aux_sym__val_number_decimal_token3] = ACTIONS(2402), + [aux_sym__val_number_token1] = ACTIONS(2402), + [aux_sym__val_number_token2] = ACTIONS(2402), + [aux_sym__val_number_token3] = ACTIONS(2402), + [aux_sym__val_number_token4] = ACTIONS(2402), + [aux_sym__val_number_token5] = ACTIONS(2402), + [aux_sym__val_number_token6] = ACTIONS(2402), + [anon_sym_0b] = ACTIONS(2402), + [anon_sym_0o] = ACTIONS(2402), + [anon_sym_0x] = ACTIONS(2402), + [sym_val_date] = 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_CARET] = ACTIONS(2402), [anon_sym_POUND] = ACTIONS(113), }, - [1287] = { - [sym_path] = STATE(1512), - [sym_comment] = STATE(1287), - [aux_sym_cell_path_repeat1] = STATE(1345), - [anon_sym_export] = ACTIONS(1006), - [anon_sym_alias] = ACTIONS(1006), - [anon_sym_let] = ACTIONS(1006), - [anon_sym_let_DASHenv] = ACTIONS(1006), - [anon_sym_mut] = ACTIONS(1006), - [anon_sym_const] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1006), - [sym_cmd_identifier] = ACTIONS(1006), - [anon_sym_LF] = ACTIONS(1008), - [anon_sym_def] = ACTIONS(1006), - [anon_sym_export_DASHenv] = ACTIONS(1006), - [anon_sym_extern] = ACTIONS(1006), - [anon_sym_module] = ACTIONS(1006), - [anon_sym_use] = ACTIONS(1006), - [anon_sym_LBRACK] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_RPAREN] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_error] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_break] = ACTIONS(1006), - [anon_sym_continue] = ACTIONS(1006), - [anon_sym_for] = ACTIONS(1006), - [anon_sym_loop] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(1006), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_match] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_try] = ACTIONS(1006), - [anon_sym_return] = ACTIONS(1006), - [anon_sym_source] = ACTIONS(1006), - [anon_sym_source_DASHenv] = ACTIONS(1006), - [anon_sym_register] = ACTIONS(1006), - [anon_sym_hide] = ACTIONS(1006), - [anon_sym_hide_DASHenv] = ACTIONS(1006), - [anon_sym_overlay] = ACTIONS(1006), - [anon_sym_where] = ACTIONS(1006), - [anon_sym_not] = ACTIONS(1006), - [anon_sym_DOT_DOT2] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(3746), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), - [anon_sym_null] = ACTIONS(1006), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1006), - [anon_sym_DOT2] = ACTIONS(1006), - [aux_sym__val_number_decimal_token3] = ACTIONS(1006), - [aux_sym__val_number_token1] = ACTIONS(1006), - [aux_sym__val_number_token2] = ACTIONS(1006), - [aux_sym__val_number_token3] = ACTIONS(1006), - [aux_sym__val_number_token4] = ACTIONS(1006), - [aux_sym__val_number_token5] = ACTIONS(1006), - [aux_sym__val_number_token6] = ACTIONS(1006), - [anon_sym_0b] = ACTIONS(1006), - [anon_sym_0o] = ACTIONS(1006), - [anon_sym_0x] = ACTIONS(1006), - [sym_val_date] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym__str_single_quotes] = ACTIONS(1006), - [sym__str_back_ticks] = ACTIONS(1006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1006), - [anon_sym_CARET] = ACTIONS(1006), + [1492] = { + [sym_comment] = STATE(1492), + [anon_sym_LBRACK] = ACTIONS(1157), + [anon_sym_COMMA] = ACTIONS(1155), + [anon_sym_RBRACK] = ACTIONS(1157), + [anon_sym_LPAREN] = ACTIONS(1157), + [anon_sym_DOLLAR] = ACTIONS(1155), + [anon_sym_GT] = ACTIONS(1155), + [anon_sym_DASH_DASH] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_in] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1157), + [anon_sym_DOT_DOT] = ACTIONS(1155), + [anon_sym_STAR] = ACTIONS(1155), + [anon_sym_STAR_STAR] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(1155), + [anon_sym_mod] = ACTIONS(1155), + [anon_sym_SLASH_SLASH] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_bit_DASHshl] = ACTIONS(1155), + [anon_sym_bit_DASHshr] = ACTIONS(1155), + [anon_sym_EQ_EQ] = ACTIONS(1155), + [anon_sym_BANG_EQ] = ACTIONS(1155), + [anon_sym_LT2] = ACTIONS(1155), + [anon_sym_LT_EQ] = ACTIONS(1155), + [anon_sym_GT_EQ] = ACTIONS(1155), + [anon_sym_not_DASHin] = ACTIONS(1155), + [anon_sym_starts_DASHwith] = ACTIONS(1155), + [anon_sym_ends_DASHwith] = ACTIONS(1155), + [anon_sym_EQ_TILDE] = ACTIONS(1155), + [anon_sym_BANG_TILDE] = ACTIONS(1155), + [anon_sym_bit_DASHand] = ACTIONS(1155), + [anon_sym_bit_DASHxor] = ACTIONS(1155), + [anon_sym_bit_DASHor] = ACTIONS(1155), + [anon_sym_and] = ACTIONS(1155), + [anon_sym_xor] = ACTIONS(1155), + [anon_sym_or] = ACTIONS(1155), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1155), + [anon_sym_DOT_DOT_LT] = ACTIONS(1155), + [anon_sym_null] = ACTIONS(1155), + [anon_sym_true] = ACTIONS(1155), + [anon_sym_false] = ACTIONS(1155), + [aux_sym__val_number_decimal_token1] = ACTIONS(1155), + [aux_sym__val_number_decimal_token2] = ACTIONS(1155), + [anon_sym_DOT2] = ACTIONS(1155), + [aux_sym__val_number_decimal_token3] = ACTIONS(1155), + [aux_sym__val_number_token1] = ACTIONS(1155), + [aux_sym__val_number_token2] = ACTIONS(1155), + [aux_sym__val_number_token3] = ACTIONS(1155), + [aux_sym__val_number_token4] = ACTIONS(1155), + [aux_sym__val_number_token5] = ACTIONS(1155), + [aux_sym__val_number_token6] = ACTIONS(1155), + [anon_sym_0b] = ACTIONS(1155), + [anon_sym_0o] = ACTIONS(1155), + [anon_sym_0x] = ACTIONS(1155), + [sym_val_date] = ACTIONS(1155), + [anon_sym_DQUOTE] = ACTIONS(1157), + [sym__str_single_quotes] = ACTIONS(1157), + [sym__str_back_ticks] = ACTIONS(1157), + [anon_sym_err_GT] = ACTIONS(1155), + [anon_sym_out_GT] = ACTIONS(1155), + [anon_sym_e_GT] = ACTIONS(1155), + [anon_sym_o_GT] = ACTIONS(1155), + [anon_sym_err_PLUSout_GT] = ACTIONS(1155), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1155), + [anon_sym_o_PLUSe_GT] = ACTIONS(1155), + [anon_sym_e_PLUSo_GT] = ACTIONS(1155), + [aux_sym_unquoted_token6] = ACTIONS(1155), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1155), [anon_sym_POUND] = ACTIONS(113), }, - [1288] = { - [sym_comment] = STATE(1288), - [anon_sym_export] = ACTIONS(3748), - [anon_sym_alias] = ACTIONS(3748), - [anon_sym_let] = ACTIONS(3748), - [anon_sym_let_DASHenv] = ACTIONS(3748), - [anon_sym_mut] = ACTIONS(3748), - [anon_sym_const] = ACTIONS(3748), - [anon_sym_SEMI] = ACTIONS(3748), - [sym_cmd_identifier] = ACTIONS(3748), - [anon_sym_LF] = ACTIONS(3750), - [anon_sym_def] = ACTIONS(3748), - [anon_sym_export_DASHenv] = ACTIONS(3748), - [anon_sym_extern] = ACTIONS(3748), - [anon_sym_module] = ACTIONS(3748), - [anon_sym_use] = ACTIONS(3748), - [anon_sym_LBRACK] = ACTIONS(3748), - [anon_sym_LPAREN] = ACTIONS(3748), - [anon_sym_RPAREN] = ACTIONS(3748), - [anon_sym_DOLLAR] = ACTIONS(3748), - [anon_sym_error] = ACTIONS(3748), - [anon_sym_DASH_DASH] = ACTIONS(3748), - [anon_sym_DASH] = ACTIONS(3748), - [anon_sym_break] = ACTIONS(3748), - [anon_sym_continue] = ACTIONS(3748), - [anon_sym_for] = ACTIONS(3748), - [anon_sym_loop] = ACTIONS(3748), - [anon_sym_while] = ACTIONS(3748), - [anon_sym_do] = ACTIONS(3748), - [anon_sym_if] = ACTIONS(3748), - [anon_sym_match] = ACTIONS(3748), - [anon_sym_LBRACE] = ACTIONS(3748), - [anon_sym_RBRACE] = ACTIONS(3748), - [anon_sym_DOT_DOT] = ACTIONS(3748), - [anon_sym_try] = ACTIONS(3748), - [anon_sym_return] = ACTIONS(3748), - [anon_sym_source] = ACTIONS(3748), - [anon_sym_source_DASHenv] = ACTIONS(3748), - [anon_sym_register] = ACTIONS(3748), - [anon_sym_hide] = ACTIONS(3748), - [anon_sym_hide_DASHenv] = ACTIONS(3748), - [anon_sym_overlay] = ACTIONS(3748), - [anon_sym_as] = ACTIONS(3748), - [anon_sym_where] = ACTIONS(3748), - [anon_sym_not] = ACTIONS(3748), - [anon_sym_LPAREN2] = ACTIONS(2847), - [anon_sym_DOT] = ACTIONS(2851), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3748), - [anon_sym_DOT_DOT_LT] = ACTIONS(3748), - [aux_sym__immediate_decimal_token1] = ACTIONS(3752), - [anon_sym_null] = ACTIONS(3748), - [anon_sym_true] = ACTIONS(3748), - [anon_sym_false] = ACTIONS(3748), - [aux_sym__val_number_decimal_token1] = ACTIONS(3748), - [aux_sym__val_number_decimal_token2] = ACTIONS(3748), - [anon_sym_DOT2] = ACTIONS(3748), - [aux_sym__val_number_decimal_token3] = ACTIONS(3748), - [aux_sym__val_number_token1] = ACTIONS(3748), - [aux_sym__val_number_token2] = ACTIONS(3748), - [aux_sym__val_number_token3] = ACTIONS(3748), - [aux_sym__val_number_token4] = ACTIONS(3748), - [aux_sym__val_number_token5] = ACTIONS(3748), - [aux_sym__val_number_token6] = ACTIONS(3748), - [anon_sym_0b] = ACTIONS(3748), - [anon_sym_0o] = ACTIONS(3748), - [anon_sym_0x] = ACTIONS(3748), - [sym_val_date] = ACTIONS(3748), - [anon_sym_DQUOTE] = ACTIONS(3748), - [sym__str_single_quotes] = ACTIONS(3748), - [sym__str_back_ticks] = ACTIONS(3748), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3748), - [anon_sym_CARET] = ACTIONS(3748), - [aux_sym_unquoted_token2] = ACTIONS(2851), - [anon_sym_POUND] = ACTIONS(113), + [1493] = { + [sym_comment] = STATE(1493), + [anon_sym_LBRACK] = ACTIONS(1049), + [anon_sym_COMMA] = ACTIONS(1049), + [anon_sym_RBRACK] = ACTIONS(1049), + [anon_sym_LPAREN] = ACTIONS(1049), + [anon_sym_DOLLAR] = ACTIONS(1049), + [anon_sym_GT] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_in] = ACTIONS(1047), + [anon_sym_LBRACE] = ACTIONS(1049), + [anon_sym_DOT_DOT] = ACTIONS(1047), + [anon_sym_STAR] = ACTIONS(1047), + [anon_sym_STAR_STAR] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1049), + [anon_sym_SLASH] = ACTIONS(1047), + [anon_sym_mod] = ACTIONS(1049), + [anon_sym_SLASH_SLASH] = ACTIONS(1049), + [anon_sym_PLUS] = ACTIONS(1047), + [anon_sym_bit_DASHshl] = ACTIONS(1049), + [anon_sym_bit_DASHshr] = ACTIONS(1049), + [anon_sym_EQ_EQ] = ACTIONS(1049), + [anon_sym_BANG_EQ] = ACTIONS(1049), + [anon_sym_LT2] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1049), + [anon_sym_GT_EQ] = ACTIONS(1049), + [anon_sym_not_DASHin] = ACTIONS(1049), + [anon_sym_starts_DASHwith] = ACTIONS(1049), + [anon_sym_ends_DASHwith] = ACTIONS(1049), + [anon_sym_EQ_TILDE] = ACTIONS(1049), + [anon_sym_BANG_TILDE] = ACTIONS(1049), + [anon_sym_bit_DASHand] = ACTIONS(1049), + [anon_sym_bit_DASHxor] = ACTIONS(1049), + [anon_sym_bit_DASHor] = ACTIONS(1049), + [anon_sym_and] = ACTIONS(1049), + [anon_sym_xor] = ACTIONS(1049), + [anon_sym_or] = ACTIONS(1049), + [anon_sym_DOT] = ACTIONS(1047), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1049), + [anon_sym_DOT_DOT_LT] = ACTIONS(1049), + [anon_sym_null] = ACTIONS(1049), + [anon_sym_true] = ACTIONS(1049), + [anon_sym_false] = ACTIONS(1049), + [aux_sym__val_number_decimal_token1] = ACTIONS(1047), + [aux_sym__val_number_decimal_token2] = ACTIONS(1049), + [anon_sym_DOT2] = ACTIONS(1047), + [aux_sym__val_number_decimal_token3] = ACTIONS(1049), + [aux_sym__val_number_token1] = ACTIONS(1049), + [aux_sym__val_number_token2] = ACTIONS(1049), + [aux_sym__val_number_token3] = ACTIONS(1049), + [aux_sym__val_number_token4] = ACTIONS(1049), + [aux_sym__val_number_token5] = ACTIONS(1049), + [aux_sym__val_number_token6] = ACTIONS(1049), + [anon_sym_0b] = ACTIONS(1047), + [anon_sym_0o] = ACTIONS(1047), + [anon_sym_0x] = ACTIONS(1047), + [sym_val_date] = ACTIONS(1049), + [anon_sym_DQUOTE] = ACTIONS(1049), + [sym__str_single_quotes] = ACTIONS(1049), + [sym__str_back_ticks] = ACTIONS(1049), + [anon_sym_err_GT] = ACTIONS(1049), + [anon_sym_out_GT] = ACTIONS(1049), + [anon_sym_e_GT] = ACTIONS(1049), + [anon_sym_o_GT] = ACTIONS(1049), + [anon_sym_err_PLUSout_GT] = ACTIONS(1049), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1049), + [anon_sym_o_PLUSe_GT] = ACTIONS(1049), + [anon_sym_e_PLUSo_GT] = ACTIONS(1049), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1047), + [anon_sym_POUND] = ACTIONS(3), }, - [1289] = { - [sym_comment] = STATE(1289), - [ts_builtin_sym_end] = ACTIONS(3520), - [anon_sym_export] = ACTIONS(3518), - [anon_sym_alias] = ACTIONS(3518), - [anon_sym_let] = ACTIONS(3518), - [anon_sym_let_DASHenv] = ACTIONS(3518), - [anon_sym_mut] = ACTIONS(3518), - [anon_sym_const] = ACTIONS(3518), - [anon_sym_SEMI] = ACTIONS(3518), - [sym_cmd_identifier] = ACTIONS(3518), - [anon_sym_LF] = ACTIONS(3520), - [anon_sym_def] = ACTIONS(3518), - [anon_sym_export_DASHenv] = ACTIONS(3518), - [anon_sym_extern] = ACTIONS(3518), - [anon_sym_module] = ACTIONS(3518), - [anon_sym_use] = ACTIONS(3518), - [anon_sym_LBRACK] = ACTIONS(3518), - [anon_sym_LPAREN] = ACTIONS(3518), - [anon_sym_DOLLAR] = ACTIONS(3518), - [anon_sym_error] = ACTIONS(3518), - [anon_sym_DASH_DASH] = ACTIONS(3518), - [anon_sym_DASH] = ACTIONS(3518), - [anon_sym_break] = ACTIONS(3518), - [anon_sym_continue] = ACTIONS(3518), - [anon_sym_for] = ACTIONS(3518), - [anon_sym_loop] = ACTIONS(3518), - [anon_sym_while] = ACTIONS(3518), - [anon_sym_do] = ACTIONS(3518), - [anon_sym_if] = ACTIONS(3518), - [anon_sym_match] = ACTIONS(3518), - [anon_sym_LBRACE] = ACTIONS(3518), - [anon_sym_DOT_DOT] = ACTIONS(3518), - [anon_sym_try] = ACTIONS(3518), - [anon_sym_return] = ACTIONS(3518), - [anon_sym_source] = ACTIONS(3518), - [anon_sym_source_DASHenv] = ACTIONS(3518), - [anon_sym_register] = ACTIONS(3518), - [anon_sym_hide] = ACTIONS(3518), - [anon_sym_hide_DASHenv] = ACTIONS(3518), - [anon_sym_overlay] = ACTIONS(3518), - [anon_sym_as] = ACTIONS(3518), - [anon_sym_where] = ACTIONS(3518), - [anon_sym_not] = ACTIONS(3518), - [anon_sym_DOT_DOT2] = ACTIONS(3754), - [anon_sym_DOT] = ACTIONS(1934), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3518), - [anon_sym_DOT_DOT_LT] = ACTIONS(3518), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3756), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3756), - [anon_sym_null] = ACTIONS(3518), - [anon_sym_true] = ACTIONS(3518), - [anon_sym_false] = ACTIONS(3518), - [aux_sym__val_number_decimal_token1] = ACTIONS(3518), - [aux_sym__val_number_decimal_token2] = ACTIONS(3518), - [anon_sym_DOT2] = ACTIONS(3518), - [aux_sym__val_number_decimal_token3] = ACTIONS(3518), - [aux_sym__val_number_token1] = ACTIONS(3518), - [aux_sym__val_number_token2] = ACTIONS(3518), - [aux_sym__val_number_token3] = ACTIONS(3518), - [aux_sym__val_number_token4] = ACTIONS(3518), - [aux_sym__val_number_token5] = ACTIONS(3518), - [aux_sym__val_number_token6] = ACTIONS(3518), - [anon_sym_0b] = ACTIONS(3518), - [anon_sym_0o] = ACTIONS(3518), - [anon_sym_0x] = ACTIONS(3518), - [sym_val_date] = ACTIONS(3518), - [anon_sym_DQUOTE] = ACTIONS(3518), - [sym__str_single_quotes] = ACTIONS(3518), - [sym__str_back_ticks] = ACTIONS(3518), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3518), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3518), - [anon_sym_CARET] = ACTIONS(3518), - [aux_sym_unquoted_token2] = ACTIONS(1934), + [1494] = { + [sym_comment] = STATE(1494), + [anon_sym_LBRACK] = ACTIONS(1265), + [anon_sym_COMMA] = ACTIONS(1265), + [anon_sym_RBRACK] = ACTIONS(1265), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_DOLLAR] = ACTIONS(1265), + [anon_sym_GT] = ACTIONS(1265), + [anon_sym_DASH_DASH] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1265), + [anon_sym_in] = ACTIONS(1265), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_DOT_DOT] = ACTIONS(1265), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_STAR_STAR] = ACTIONS(1265), + [anon_sym_PLUS_PLUS] = ACTIONS(1265), + [anon_sym_SLASH] = ACTIONS(1265), + [anon_sym_mod] = ACTIONS(1265), + [anon_sym_SLASH_SLASH] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1265), + [anon_sym_bit_DASHshl] = ACTIONS(1265), + [anon_sym_bit_DASHshr] = ACTIONS(1265), + [anon_sym_EQ_EQ] = ACTIONS(1265), + [anon_sym_BANG_EQ] = ACTIONS(1265), + [anon_sym_LT2] = ACTIONS(1265), + [anon_sym_LT_EQ] = ACTIONS(1265), + [anon_sym_GT_EQ] = ACTIONS(1265), + [anon_sym_not_DASHin] = ACTIONS(1265), + [anon_sym_starts_DASHwith] = ACTIONS(1265), + [anon_sym_ends_DASHwith] = ACTIONS(1265), + [anon_sym_EQ_TILDE] = ACTIONS(1265), + [anon_sym_BANG_TILDE] = ACTIONS(1265), + [anon_sym_bit_DASHand] = ACTIONS(1265), + [anon_sym_bit_DASHxor] = ACTIONS(1265), + [anon_sym_bit_DASHor] = ACTIONS(1265), + [anon_sym_and] = ACTIONS(1265), + [anon_sym_xor] = ACTIONS(1265), + [anon_sym_or] = ACTIONS(1265), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1265), + [anon_sym_DOT_DOT_LT] = ACTIONS(1265), + [anon_sym_null] = ACTIONS(1265), + [anon_sym_true] = ACTIONS(1265), + [anon_sym_false] = ACTIONS(1265), + [aux_sym__val_number_decimal_token1] = ACTIONS(1265), + [aux_sym__val_number_decimal_token2] = ACTIONS(1265), + [anon_sym_DOT2] = ACTIONS(1265), + [aux_sym__val_number_decimal_token3] = ACTIONS(1265), + [aux_sym__val_number_token1] = ACTIONS(1265), + [aux_sym__val_number_token2] = ACTIONS(1265), + [aux_sym__val_number_token3] = ACTIONS(1265), + [aux_sym__val_number_token4] = ACTIONS(1265), + [aux_sym__val_number_token5] = ACTIONS(1265), + [aux_sym__val_number_token6] = ACTIONS(1265), + [anon_sym_0b] = ACTIONS(1265), + [anon_sym_0o] = ACTIONS(1265), + [anon_sym_0x] = ACTIONS(1265), + [sym_val_date] = ACTIONS(1265), + [anon_sym_DQUOTE] = ACTIONS(1265), + [sym__str_single_quotes] = ACTIONS(1265), + [sym__str_back_ticks] = ACTIONS(1265), + [sym__entry_separator] = ACTIONS(1267), + [anon_sym_err_GT] = ACTIONS(1265), + [anon_sym_out_GT] = ACTIONS(1265), + [anon_sym_e_GT] = ACTIONS(1265), + [anon_sym_o_GT] = ACTIONS(1265), + [anon_sym_err_PLUSout_GT] = ACTIONS(1265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1265), + [anon_sym_o_PLUSe_GT] = ACTIONS(1265), + [anon_sym_e_PLUSo_GT] = ACTIONS(1265), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1265), [anon_sym_POUND] = ACTIONS(113), }, - [1290] = { - [sym_comment] = STATE(1290), - [anon_sym_LBRACK] = ACTIONS(1061), - [anon_sym_COMMA] = ACTIONS(1061), - [anon_sym_RBRACK] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1061), - [anon_sym_DOLLAR] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_DASH_DASH] = ACTIONS(1061), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_QMARK2] = ACTIONS(1061), - [anon_sym_STAR_STAR] = ACTIONS(1061), - [anon_sym_PLUS_PLUS] = ACTIONS(1061), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_mod] = ACTIONS(1061), - [anon_sym_SLASH_SLASH] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_bit_DASHshl] = ACTIONS(1061), - [anon_sym_bit_DASHshr] = ACTIONS(1061), - [anon_sym_EQ_EQ] = ACTIONS(1061), - [anon_sym_BANG_EQ] = ACTIONS(1061), - [anon_sym_LT2] = ACTIONS(1059), - [anon_sym_LT_EQ] = ACTIONS(1061), - [anon_sym_GT_EQ] = ACTIONS(1061), - [anon_sym_not_DASHin] = ACTIONS(1061), - [anon_sym_starts_DASHwith] = ACTIONS(1061), - [anon_sym_ends_DASHwith] = ACTIONS(1061), - [anon_sym_EQ_TILDE] = ACTIONS(1061), - [anon_sym_BANG_TILDE] = ACTIONS(1061), - [anon_sym_bit_DASHand] = ACTIONS(1061), - [anon_sym_bit_DASHxor] = ACTIONS(1061), - [anon_sym_bit_DASHor] = ACTIONS(1061), - [anon_sym_and] = ACTIONS(1061), - [anon_sym_xor] = ACTIONS(1061), - [anon_sym_or] = ACTIONS(1061), - [anon_sym_DOT_DOT2] = ACTIONS(1059), - [anon_sym_DOT] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1059), - [anon_sym_DOT_DOT_LT] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1061), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1061), - [anon_sym_null] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), - [aux_sym__val_number_decimal_token1] = ACTIONS(1059), - [aux_sym__val_number_decimal_token2] = ACTIONS(1061), - [anon_sym_DOT2] = ACTIONS(1059), - [aux_sym__val_number_decimal_token3] = ACTIONS(1061), - [aux_sym__val_number_token1] = ACTIONS(1061), - [aux_sym__val_number_token2] = ACTIONS(1061), - [aux_sym__val_number_token3] = ACTIONS(1061), - [aux_sym__val_number_token4] = ACTIONS(1061), - [aux_sym__val_number_token5] = ACTIONS(1061), - [aux_sym__val_number_token6] = ACTIONS(1061), - [anon_sym_0b] = ACTIONS(1059), - [anon_sym_0o] = ACTIONS(1059), - [anon_sym_0x] = ACTIONS(1059), - [sym_val_date] = ACTIONS(1061), - [anon_sym_DQUOTE] = ACTIONS(1061), - [sym__str_single_quotes] = ACTIONS(1061), - [sym__str_back_ticks] = ACTIONS(1061), - [anon_sym_err_GT] = ACTIONS(1061), - [anon_sym_out_GT] = ACTIONS(1061), - [anon_sym_e_GT] = ACTIONS(1061), - [anon_sym_o_GT] = ACTIONS(1061), - [anon_sym_err_PLUSout_GT] = ACTIONS(1061), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1061), - [anon_sym_o_PLUSe_GT] = ACTIONS(1061), - [anon_sym_e_PLUSo_GT] = ACTIONS(1061), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1059), - [anon_sym_POUND] = ACTIONS(3), + [1495] = { + [sym_comment] = STATE(1495), + [anon_sym_LBRACK] = ACTIONS(1265), + [anon_sym_COMMA] = ACTIONS(1265), + [anon_sym_RBRACK] = ACTIONS(1265), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_DOLLAR] = ACTIONS(1265), + [anon_sym_GT] = ACTIONS(1265), + [anon_sym_DASH_DASH] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1265), + [anon_sym_in] = ACTIONS(1265), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_DOT_DOT] = ACTIONS(1265), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_STAR_STAR] = ACTIONS(1265), + [anon_sym_PLUS_PLUS] = ACTIONS(1265), + [anon_sym_SLASH] = ACTIONS(1265), + [anon_sym_mod] = ACTIONS(1265), + [anon_sym_SLASH_SLASH] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1265), + [anon_sym_bit_DASHshl] = ACTIONS(1265), + [anon_sym_bit_DASHshr] = ACTIONS(1265), + [anon_sym_EQ_EQ] = ACTIONS(1265), + [anon_sym_BANG_EQ] = ACTIONS(1265), + [anon_sym_LT2] = ACTIONS(1265), + [anon_sym_LT_EQ] = ACTIONS(1265), + [anon_sym_GT_EQ] = ACTIONS(1265), + [anon_sym_not_DASHin] = ACTIONS(1265), + [anon_sym_starts_DASHwith] = ACTIONS(1265), + [anon_sym_ends_DASHwith] = ACTIONS(1265), + [anon_sym_EQ_TILDE] = ACTIONS(1265), + [anon_sym_BANG_TILDE] = ACTIONS(1265), + [anon_sym_bit_DASHand] = ACTIONS(1265), + [anon_sym_bit_DASHxor] = ACTIONS(1265), + [anon_sym_bit_DASHor] = ACTIONS(1265), + [anon_sym_and] = ACTIONS(1265), + [anon_sym_xor] = ACTIONS(1265), + [anon_sym_or] = ACTIONS(1265), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1265), + [anon_sym_DOT_DOT_LT] = ACTIONS(1265), + [anon_sym_null] = ACTIONS(1265), + [anon_sym_true] = ACTIONS(1265), + [anon_sym_false] = ACTIONS(1265), + [aux_sym__val_number_decimal_token1] = ACTIONS(1265), + [aux_sym__val_number_decimal_token2] = ACTIONS(1265), + [anon_sym_DOT2] = ACTIONS(1265), + [aux_sym__val_number_decimal_token3] = ACTIONS(1265), + [aux_sym__val_number_token1] = ACTIONS(1265), + [aux_sym__val_number_token2] = ACTIONS(1265), + [aux_sym__val_number_token3] = ACTIONS(1265), + [aux_sym__val_number_token4] = ACTIONS(1265), + [aux_sym__val_number_token5] = ACTIONS(1265), + [aux_sym__val_number_token6] = ACTIONS(1265), + [anon_sym_0b] = ACTIONS(1265), + [anon_sym_0o] = ACTIONS(1265), + [anon_sym_0x] = ACTIONS(1265), + [sym_val_date] = ACTIONS(1265), + [anon_sym_DQUOTE] = ACTIONS(1265), + [sym__str_single_quotes] = ACTIONS(1265), + [sym__str_back_ticks] = ACTIONS(1265), + [sym__entry_separator] = ACTIONS(1267), + [anon_sym_err_GT] = ACTIONS(1265), + [anon_sym_out_GT] = ACTIONS(1265), + [anon_sym_e_GT] = ACTIONS(1265), + [anon_sym_o_GT] = ACTIONS(1265), + [anon_sym_err_PLUSout_GT] = ACTIONS(1265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1265), + [anon_sym_o_PLUSe_GT] = ACTIONS(1265), + [anon_sym_e_PLUSo_GT] = ACTIONS(1265), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1265), + [anon_sym_POUND] = ACTIONS(113), }, - [1291] = { - [sym_comment] = STATE(1291), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_COMMA] = ACTIONS(1065), - [anon_sym_RBRACK] = ACTIONS(1065), - [anon_sym_LPAREN] = ACTIONS(1065), - [anon_sym_DOLLAR] = ACTIONS(1065), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(1065), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_QMARK2] = ACTIONS(1065), - [anon_sym_STAR_STAR] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_SLASH] = ACTIONS(1063), - [anon_sym_mod] = ACTIONS(1065), - [anon_sym_SLASH_SLASH] = ACTIONS(1065), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_bit_DASHshl] = ACTIONS(1065), - [anon_sym_bit_DASHshr] = ACTIONS(1065), - [anon_sym_EQ_EQ] = ACTIONS(1065), - [anon_sym_BANG_EQ] = ACTIONS(1065), - [anon_sym_LT2] = ACTIONS(1063), - [anon_sym_LT_EQ] = ACTIONS(1065), - [anon_sym_GT_EQ] = ACTIONS(1065), - [anon_sym_not_DASHin] = ACTIONS(1065), - [anon_sym_starts_DASHwith] = ACTIONS(1065), - [anon_sym_ends_DASHwith] = ACTIONS(1065), - [anon_sym_EQ_TILDE] = ACTIONS(1065), - [anon_sym_BANG_TILDE] = ACTIONS(1065), - [anon_sym_bit_DASHand] = ACTIONS(1065), - [anon_sym_bit_DASHxor] = ACTIONS(1065), - [anon_sym_bit_DASHor] = ACTIONS(1065), - [anon_sym_and] = ACTIONS(1065), - [anon_sym_xor] = ACTIONS(1065), - [anon_sym_or] = ACTIONS(1065), - [anon_sym_DOT_DOT2] = ACTIONS(1063), - [anon_sym_DOT] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1063), - [anon_sym_DOT_DOT_LT] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1065), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1065), - [anon_sym_null] = ACTIONS(1065), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [aux_sym__val_number_decimal_token1] = ACTIONS(1063), - [aux_sym__val_number_decimal_token2] = ACTIONS(1065), - [anon_sym_DOT2] = ACTIONS(1063), - [aux_sym__val_number_decimal_token3] = ACTIONS(1065), - [aux_sym__val_number_token1] = ACTIONS(1065), - [aux_sym__val_number_token2] = ACTIONS(1065), - [aux_sym__val_number_token3] = ACTIONS(1065), - [aux_sym__val_number_token4] = ACTIONS(1065), - [aux_sym__val_number_token5] = ACTIONS(1065), - [aux_sym__val_number_token6] = ACTIONS(1065), - [anon_sym_0b] = ACTIONS(1063), - [anon_sym_0o] = ACTIONS(1063), - [anon_sym_0x] = ACTIONS(1063), - [sym_val_date] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(1065), - [sym__str_single_quotes] = ACTIONS(1065), - [sym__str_back_ticks] = ACTIONS(1065), - [anon_sym_err_GT] = ACTIONS(1065), - [anon_sym_out_GT] = ACTIONS(1065), - [anon_sym_e_GT] = ACTIONS(1065), - [anon_sym_o_GT] = ACTIONS(1065), - [anon_sym_err_PLUSout_GT] = ACTIONS(1065), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1065), - [anon_sym_o_PLUSe_GT] = ACTIONS(1065), - [anon_sym_e_PLUSo_GT] = ACTIONS(1065), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1063), + [1496] = { + [sym_comment] = STATE(1496), + [anon_sym_LBRACK] = ACTIONS(1039), + [anon_sym_COMMA] = ACTIONS(1039), + [anon_sym_RBRACK] = ACTIONS(1039), + [anon_sym_LPAREN] = ACTIONS(1039), + [anon_sym_DOLLAR] = ACTIONS(1039), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_in] = ACTIONS(1037), + [anon_sym_LBRACE] = ACTIONS(1039), + [anon_sym_DOT_DOT] = ACTIONS(1037), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_STAR_STAR] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(1039), + [anon_sym_SLASH] = ACTIONS(1037), + [anon_sym_mod] = ACTIONS(1039), + [anon_sym_SLASH_SLASH] = ACTIONS(1039), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_bit_DASHshl] = ACTIONS(1039), + [anon_sym_bit_DASHshr] = ACTIONS(1039), + [anon_sym_EQ_EQ] = ACTIONS(1039), + [anon_sym_BANG_EQ] = ACTIONS(1039), + [anon_sym_LT2] = ACTIONS(1037), + [anon_sym_LT_EQ] = ACTIONS(1039), + [anon_sym_GT_EQ] = ACTIONS(1039), + [anon_sym_not_DASHin] = ACTIONS(1039), + [anon_sym_starts_DASHwith] = ACTIONS(1039), + [anon_sym_ends_DASHwith] = ACTIONS(1039), + [anon_sym_EQ_TILDE] = ACTIONS(1039), + [anon_sym_BANG_TILDE] = ACTIONS(1039), + [anon_sym_bit_DASHand] = ACTIONS(1039), + [anon_sym_bit_DASHxor] = ACTIONS(1039), + [anon_sym_bit_DASHor] = ACTIONS(1039), + [anon_sym_and] = ACTIONS(1039), + [anon_sym_xor] = ACTIONS(1039), + [anon_sym_or] = ACTIONS(1039), + [anon_sym_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1039), + [anon_sym_DOT_DOT_LT] = ACTIONS(1039), + [anon_sym_null] = ACTIONS(1039), + [anon_sym_true] = ACTIONS(1039), + [anon_sym_false] = ACTIONS(1039), + [aux_sym__val_number_decimal_token1] = ACTIONS(1037), + [aux_sym__val_number_decimal_token2] = ACTIONS(1039), + [anon_sym_DOT2] = ACTIONS(1037), + [aux_sym__val_number_decimal_token3] = ACTIONS(1039), + [aux_sym__val_number_token1] = ACTIONS(1039), + [aux_sym__val_number_token2] = ACTIONS(1039), + [aux_sym__val_number_token3] = ACTIONS(1039), + [aux_sym__val_number_token4] = ACTIONS(1039), + [aux_sym__val_number_token5] = ACTIONS(1039), + [aux_sym__val_number_token6] = ACTIONS(1039), + [anon_sym_0b] = ACTIONS(1037), + [anon_sym_0o] = ACTIONS(1037), + [anon_sym_0x] = ACTIONS(1037), + [sym_val_date] = ACTIONS(1039), + [anon_sym_DQUOTE] = ACTIONS(1039), + [sym__str_single_quotes] = ACTIONS(1039), + [sym__str_back_ticks] = ACTIONS(1039), + [anon_sym_err_GT] = ACTIONS(1039), + [anon_sym_out_GT] = ACTIONS(1039), + [anon_sym_e_GT] = ACTIONS(1039), + [anon_sym_o_GT] = ACTIONS(1039), + [anon_sym_err_PLUSout_GT] = ACTIONS(1039), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1039), + [anon_sym_o_PLUSe_GT] = ACTIONS(1039), + [anon_sym_e_PLUSo_GT] = ACTIONS(1039), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1037), [anon_sym_POUND] = ACTIONS(3), }, - [1292] = { - [sym_comment] = STATE(1292), - [ts_builtin_sym_end] = ACTIONS(3507), - [anon_sym_export] = ACTIONS(3505), - [anon_sym_alias] = ACTIONS(3505), - [anon_sym_let] = ACTIONS(3505), - [anon_sym_let_DASHenv] = ACTIONS(3505), - [anon_sym_mut] = ACTIONS(3505), - [anon_sym_const] = ACTIONS(3505), - [anon_sym_SEMI] = ACTIONS(3505), - [sym_cmd_identifier] = ACTIONS(3505), - [anon_sym_LF] = ACTIONS(3507), - [anon_sym_def] = ACTIONS(3505), - [anon_sym_export_DASHenv] = ACTIONS(3505), - [anon_sym_extern] = ACTIONS(3505), - [anon_sym_module] = ACTIONS(3505), - [anon_sym_use] = ACTIONS(3505), - [anon_sym_LBRACK] = ACTIONS(3505), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_error] = ACTIONS(3505), - [anon_sym_DASH_DASH] = ACTIONS(3505), - [anon_sym_DASH] = ACTIONS(3505), - [anon_sym_break] = ACTIONS(3505), - [anon_sym_continue] = ACTIONS(3505), - [anon_sym_for] = ACTIONS(3505), - [anon_sym_loop] = ACTIONS(3505), - [anon_sym_while] = ACTIONS(3505), - [anon_sym_do] = ACTIONS(3505), - [anon_sym_if] = ACTIONS(3505), - [anon_sym_match] = ACTIONS(3505), - [anon_sym_LBRACE] = ACTIONS(3505), - [anon_sym_DOT_DOT] = ACTIONS(3505), - [anon_sym_try] = ACTIONS(3505), - [anon_sym_return] = ACTIONS(3505), - [anon_sym_source] = ACTIONS(3505), - [anon_sym_source_DASHenv] = ACTIONS(3505), - [anon_sym_register] = ACTIONS(3505), - [anon_sym_hide] = ACTIONS(3505), - [anon_sym_hide_DASHenv] = ACTIONS(3505), - [anon_sym_overlay] = ACTIONS(3505), - [anon_sym_as] = ACTIONS(3505), - [anon_sym_where] = ACTIONS(3505), - [anon_sym_not] = ACTIONS(3505), - [anon_sym_DOT_DOT2] = ACTIONS(3505), - [anon_sym_DOT] = ACTIONS(3505), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3505), - [anon_sym_DOT_DOT_LT] = ACTIONS(3505), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3507), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3507), - [anon_sym_null] = ACTIONS(3505), - [anon_sym_true] = ACTIONS(3505), - [anon_sym_false] = ACTIONS(3505), - [aux_sym__val_number_decimal_token1] = ACTIONS(3505), - [aux_sym__val_number_decimal_token2] = ACTIONS(3505), - [anon_sym_DOT2] = ACTIONS(3505), - [aux_sym__val_number_decimal_token3] = ACTIONS(3505), - [aux_sym__val_number_token1] = ACTIONS(3505), - [aux_sym__val_number_token2] = ACTIONS(3505), - [aux_sym__val_number_token3] = ACTIONS(3505), - [aux_sym__val_number_token4] = ACTIONS(3505), - [aux_sym__val_number_token5] = ACTIONS(3505), - [aux_sym__val_number_token6] = ACTIONS(3505), - [anon_sym_0b] = ACTIONS(3505), - [anon_sym_0o] = ACTIONS(3505), - [anon_sym_0x] = ACTIONS(3505), - [sym_val_date] = ACTIONS(3505), - [anon_sym_DQUOTE] = ACTIONS(3505), - [sym__str_single_quotes] = ACTIONS(3505), - [sym__str_back_ticks] = ACTIONS(3505), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3505), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3505), - [anon_sym_CARET] = ACTIONS(3505), - [aux_sym_unquoted_token2] = ACTIONS(3505), - [anon_sym_POUND] = ACTIONS(113), - }, - [1293] = { - [sym_comment] = STATE(1293), - [anon_sym_LBRACK] = ACTIONS(961), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(961), - [anon_sym_DOLLAR] = ACTIONS(961), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(961), - [anon_sym__] = ACTIONS(959), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(961), - [anon_sym_SLASH_SLASH] = ACTIONS(961), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(961), - [anon_sym_bit_DASHshr] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(961), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_not_DASHin] = ACTIONS(961), - [anon_sym_starts_DASHwith] = ACTIONS(961), - [anon_sym_ends_DASHwith] = ACTIONS(961), - [anon_sym_EQ_TILDE] = ACTIONS(961), - [anon_sym_BANG_TILDE] = ACTIONS(961), - [anon_sym_bit_DASHand] = ACTIONS(961), - [anon_sym_bit_DASHxor] = ACTIONS(961), - [anon_sym_bit_DASHor] = ACTIONS(961), - [anon_sym_and] = ACTIONS(961), - [anon_sym_xor] = ACTIONS(961), - [anon_sym_or] = ACTIONS(961), - [anon_sym_DOT_DOT2] = ACTIONS(3758), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_DOT_DOT_LT] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3760), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3760), - [anon_sym_null] = ACTIONS(961), - [anon_sym_true] = ACTIONS(961), - [anon_sym_false] = ACTIONS(961), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(961), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(961), - [aux_sym__val_number_token1] = ACTIONS(961), - [aux_sym__val_number_token2] = ACTIONS(961), - [aux_sym__val_number_token3] = ACTIONS(961), - [aux_sym__val_number_token4] = ACTIONS(961), - [aux_sym__val_number_token5] = ACTIONS(961), - [aux_sym__val_number_token6] = ACTIONS(961), - [anon_sym_0b] = ACTIONS(959), - [sym_filesize_unit] = ACTIONS(3762), - [sym_duration_unit] = ACTIONS(3764), - [anon_sym_0o] = ACTIONS(959), - [anon_sym_0x] = ACTIONS(959), - [sym_val_date] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(961), - [sym__str_single_quotes] = ACTIONS(961), - [sym__str_back_ticks] = ACTIONS(961), - [anon_sym_err_GT] = ACTIONS(961), - [anon_sym_out_GT] = ACTIONS(961), - [anon_sym_e_GT] = ACTIONS(961), - [anon_sym_o_GT] = ACTIONS(961), - [anon_sym_err_PLUSout_GT] = ACTIONS(961), - [anon_sym_out_PLUSerr_GT] = ACTIONS(961), - [anon_sym_o_PLUSe_GT] = ACTIONS(961), - [anon_sym_e_PLUSo_GT] = ACTIONS(961), - [aux_sym_unquoted_token1] = ACTIONS(959), + [1497] = { + [sym_comment] = STATE(1497), + [anon_sym_LBRACK] = ACTIONS(1043), + [anon_sym_COMMA] = ACTIONS(1043), + [anon_sym_RBRACK] = ACTIONS(1043), + [anon_sym_LPAREN] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1043), + [anon_sym_GT] = ACTIONS(1041), + [anon_sym_DASH_DASH] = ACTIONS(1043), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_in] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(1043), + [anon_sym_DOT_DOT] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_STAR_STAR] = ACTIONS(1043), + [anon_sym_PLUS_PLUS] = ACTIONS(1043), + [anon_sym_SLASH] = ACTIONS(1041), + [anon_sym_mod] = ACTIONS(1043), + [anon_sym_SLASH_SLASH] = ACTIONS(1043), + [anon_sym_PLUS] = ACTIONS(1041), + [anon_sym_bit_DASHshl] = ACTIONS(1043), + [anon_sym_bit_DASHshr] = ACTIONS(1043), + [anon_sym_EQ_EQ] = ACTIONS(1043), + [anon_sym_BANG_EQ] = ACTIONS(1043), + [anon_sym_LT2] = ACTIONS(1041), + [anon_sym_LT_EQ] = ACTIONS(1043), + [anon_sym_GT_EQ] = ACTIONS(1043), + [anon_sym_not_DASHin] = ACTIONS(1043), + [anon_sym_starts_DASHwith] = ACTIONS(1043), + [anon_sym_ends_DASHwith] = ACTIONS(1043), + [anon_sym_EQ_TILDE] = ACTIONS(1043), + [anon_sym_BANG_TILDE] = ACTIONS(1043), + [anon_sym_bit_DASHand] = ACTIONS(1043), + [anon_sym_bit_DASHxor] = ACTIONS(1043), + [anon_sym_bit_DASHor] = ACTIONS(1043), + [anon_sym_and] = ACTIONS(1043), + [anon_sym_xor] = ACTIONS(1043), + [anon_sym_or] = ACTIONS(1043), + [anon_sym_DOT] = ACTIONS(1041), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1043), + [anon_sym_DOT_DOT_LT] = ACTIONS(1043), + [anon_sym_null] = ACTIONS(1043), + [anon_sym_true] = ACTIONS(1043), + [anon_sym_false] = ACTIONS(1043), + [aux_sym__val_number_decimal_token1] = ACTIONS(1041), + [aux_sym__val_number_decimal_token2] = ACTIONS(1043), + [anon_sym_DOT2] = ACTIONS(1041), + [aux_sym__val_number_decimal_token3] = ACTIONS(1043), + [aux_sym__val_number_token1] = ACTIONS(1043), + [aux_sym__val_number_token2] = ACTIONS(1043), + [aux_sym__val_number_token3] = ACTIONS(1043), + [aux_sym__val_number_token4] = ACTIONS(1043), + [aux_sym__val_number_token5] = ACTIONS(1043), + [aux_sym__val_number_token6] = ACTIONS(1043), + [anon_sym_0b] = ACTIONS(1041), + [anon_sym_0o] = ACTIONS(1041), + [anon_sym_0x] = ACTIONS(1041), + [sym_val_date] = ACTIONS(1043), + [anon_sym_DQUOTE] = ACTIONS(1043), + [sym__str_single_quotes] = ACTIONS(1043), + [sym__str_back_ticks] = ACTIONS(1043), + [anon_sym_err_GT] = ACTIONS(1043), + [anon_sym_out_GT] = ACTIONS(1043), + [anon_sym_e_GT] = ACTIONS(1043), + [anon_sym_o_GT] = ACTIONS(1043), + [anon_sym_err_PLUSout_GT] = ACTIONS(1043), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1043), + [anon_sym_o_PLUSe_GT] = ACTIONS(1043), + [anon_sym_e_PLUSo_GT] = ACTIONS(1043), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1041), [anon_sym_POUND] = ACTIONS(3), }, - [1294] = { - [sym_comment] = STATE(1294), - [ts_builtin_sym_end] = ACTIONS(2439), - [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), - [anon_sym_SEMI] = ACTIONS(2437), - [sym_cmd_identifier] = ACTIONS(2437), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_DASH_DASH] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_as] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_not] = ACTIONS(2437), - [anon_sym_DOT_DOT2] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2439), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2439), - [aux_sym__immediate_decimal_token1] = ACTIONS(3766), - [aux_sym__immediate_decimal_token2] = ACTIONS(3768), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [anon_sym_DOT2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2437), - [anon_sym_0o] = ACTIONS(2437), - [anon_sym_0x] = ACTIONS(2437), - [sym_val_date] = 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_CARET] = ACTIONS(2437), + [1498] = { + [sym_comment] = STATE(1498), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_COMMA] = ACTIONS(1159), + [anon_sym_LPAREN] = ACTIONS(1161), + [anon_sym_DOLLAR] = ACTIONS(1159), + [anon_sym_GT] = ACTIONS(1159), + [anon_sym_DASH] = ACTIONS(1159), + [anon_sym_in] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(1161), + [anon_sym_RBRACE] = ACTIONS(1161), + [anon_sym__] = ACTIONS(1159), + [anon_sym_DOT_DOT] = ACTIONS(1159), + [anon_sym_STAR] = ACTIONS(1159), + [anon_sym_STAR_STAR] = ACTIONS(1159), + [anon_sym_PLUS_PLUS] = ACTIONS(1159), + [anon_sym_SLASH] = ACTIONS(1159), + [anon_sym_mod] = ACTIONS(1159), + [anon_sym_SLASH_SLASH] = ACTIONS(1159), + [anon_sym_PLUS] = ACTIONS(1159), + [anon_sym_bit_DASHshl] = ACTIONS(1159), + [anon_sym_bit_DASHshr] = ACTIONS(1159), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_LT2] = ACTIONS(1159), + [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_not_DASHin] = ACTIONS(1159), + [anon_sym_starts_DASHwith] = ACTIONS(1159), + [anon_sym_ends_DASHwith] = ACTIONS(1159), + [anon_sym_EQ_TILDE] = ACTIONS(1159), + [anon_sym_BANG_TILDE] = ACTIONS(1159), + [anon_sym_bit_DASHand] = ACTIONS(1159), + [anon_sym_bit_DASHxor] = ACTIONS(1159), + [anon_sym_bit_DASHor] = ACTIONS(1159), + [anon_sym_and] = ACTIONS(1159), + [anon_sym_xor] = ACTIONS(1159), + [anon_sym_or] = ACTIONS(1159), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1159), + [anon_sym_DOT_DOT_LT] = ACTIONS(1159), + [anon_sym_null] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1159), + [anon_sym_false] = ACTIONS(1159), + [aux_sym__val_number_decimal_token1] = ACTIONS(1159), + [aux_sym__val_number_decimal_token2] = ACTIONS(1159), + [anon_sym_DOT2] = ACTIONS(1159), + [aux_sym__val_number_decimal_token3] = ACTIONS(1159), + [aux_sym__val_number_token1] = ACTIONS(1159), + [aux_sym__val_number_token2] = ACTIONS(1159), + [aux_sym__val_number_token3] = ACTIONS(1159), + [aux_sym__val_number_token4] = ACTIONS(1159), + [aux_sym__val_number_token5] = ACTIONS(1159), + [aux_sym__val_number_token6] = ACTIONS(1159), + [anon_sym_0b] = ACTIONS(1159), + [anon_sym_0o] = ACTIONS(1159), + [anon_sym_0x] = ACTIONS(1159), + [sym_val_date] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(1161), + [sym__str_single_quotes] = ACTIONS(1161), + [sym__str_back_ticks] = ACTIONS(1161), + [anon_sym_err_GT] = ACTIONS(1159), + [anon_sym_out_GT] = ACTIONS(1159), + [anon_sym_e_GT] = ACTIONS(1159), + [anon_sym_o_GT] = ACTIONS(1159), + [anon_sym_err_PLUSout_GT] = ACTIONS(1159), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1159), + [anon_sym_o_PLUSe_GT] = ACTIONS(1159), + [anon_sym_e_PLUSo_GT] = ACTIONS(1159), + [aux_sym_unquoted_token1] = ACTIONS(1159), + [aux_sym_unquoted_token6] = ACTIONS(1163), [anon_sym_POUND] = ACTIONS(113), }, - [1295] = { - [sym_cell_path] = STATE(1653), - [sym_path] = STATE(1313), - [sym_comment] = STATE(1295), - [anon_sym_export] = ACTIONS(1010), - [anon_sym_alias] = ACTIONS(1010), - [anon_sym_let] = ACTIONS(1010), - [anon_sym_let_DASHenv] = ACTIONS(1010), - [anon_sym_mut] = ACTIONS(1010), - [anon_sym_const] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1010), - [sym_cmd_identifier] = ACTIONS(1010), - [anon_sym_LF] = ACTIONS(1012), - [anon_sym_def] = ACTIONS(1010), - [anon_sym_export_DASHenv] = ACTIONS(1010), - [anon_sym_extern] = ACTIONS(1010), - [anon_sym_module] = ACTIONS(1010), - [anon_sym_use] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(1010), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_RPAREN] = ACTIONS(1010), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_error] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1010), - [anon_sym_continue] = ACTIONS(1010), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_loop] = ACTIONS(1010), - [anon_sym_while] = ACTIONS(1010), - [anon_sym_do] = ACTIONS(1010), - [anon_sym_if] = ACTIONS(1010), - [anon_sym_match] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_RBRACE] = ACTIONS(1010), - [anon_sym_DOT_DOT] = ACTIONS(1010), - [anon_sym_try] = ACTIONS(1010), - [anon_sym_return] = ACTIONS(1010), - [anon_sym_source] = ACTIONS(1010), - [anon_sym_source_DASHenv] = ACTIONS(1010), - [anon_sym_register] = ACTIONS(1010), - [anon_sym_hide] = ACTIONS(1010), - [anon_sym_hide_DASHenv] = ACTIONS(1010), - [anon_sym_overlay] = ACTIONS(1010), - [anon_sym_where] = ACTIONS(1010), - [anon_sym_not] = ACTIONS(1010), - [anon_sym_DOT_DOT2] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(3746), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT] = ACTIONS(1010), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), - [anon_sym_null] = ACTIONS(1010), - [anon_sym_true] = ACTIONS(1010), - [anon_sym_false] = ACTIONS(1010), - [aux_sym__val_number_decimal_token1] = ACTIONS(1010), - [aux_sym__val_number_decimal_token2] = ACTIONS(1010), - [anon_sym_DOT2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = 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(1010), - [aux_sym__val_number_token5] = ACTIONS(1010), - [aux_sym__val_number_token6] = ACTIONS(1010), - [anon_sym_0b] = ACTIONS(1010), - [anon_sym_0o] = ACTIONS(1010), - [anon_sym_0x] = ACTIONS(1010), - [sym_val_date] = ACTIONS(1010), - [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_CARET] = ACTIONS(1010), + [1499] = { + [sym_comment] = STATE(1499), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_COMMA] = ACTIONS(920), + [anon_sym_RBRACK] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_in] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_STAR_STAR] = ACTIONS(920), + [anon_sym_PLUS_PLUS] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_mod] = ACTIONS(920), + [anon_sym_SLASH_SLASH] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_bit_DASHshl] = ACTIONS(920), + [anon_sym_bit_DASHshr] = ACTIONS(920), + [anon_sym_EQ_EQ] = ACTIONS(920), + [anon_sym_BANG_EQ] = ACTIONS(920), + [anon_sym_LT2] = ACTIONS(920), + [anon_sym_LT_EQ] = ACTIONS(920), + [anon_sym_GT_EQ] = ACTIONS(920), + [anon_sym_not_DASHin] = ACTIONS(920), + [anon_sym_starts_DASHwith] = ACTIONS(920), + [anon_sym_ends_DASHwith] = ACTIONS(920), + [anon_sym_EQ_TILDE] = ACTIONS(920), + [anon_sym_BANG_TILDE] = ACTIONS(920), + [anon_sym_bit_DASHand] = ACTIONS(920), + [anon_sym_bit_DASHxor] = ACTIONS(920), + [anon_sym_bit_DASHor] = ACTIONS(920), + [anon_sym_and] = ACTIONS(920), + [anon_sym_xor] = ACTIONS(920), + [anon_sym_or] = ACTIONS(920), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [anon_sym_null] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [sym__entry_separator] = ACTIONS(922), + [anon_sym_err_GT] = ACTIONS(920), + [anon_sym_out_GT] = ACTIONS(920), + [anon_sym_e_GT] = ACTIONS(920), + [anon_sym_o_GT] = ACTIONS(920), + [anon_sym_err_PLUSout_GT] = ACTIONS(920), + [anon_sym_out_PLUSerr_GT] = ACTIONS(920), + [anon_sym_o_PLUSe_GT] = ACTIONS(920), + [anon_sym_e_PLUSo_GT] = ACTIONS(920), + [aux_sym__unquoted_in_list_token1] = ACTIONS(920), [anon_sym_POUND] = ACTIONS(113), }, - [1296] = { - [sym_comment] = STATE(1296), + [1500] = { + [sym_comment] = STATE(1500), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_alias] = ACTIONS(1061), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_let_DASHenv] = ACTIONS(1061), + [anon_sym_mut] = ACTIONS(1061), + [anon_sym_const] = ACTIONS(1061), + [anon_sym_SEMI] = ACTIONS(1061), + [sym_cmd_identifier] = ACTIONS(1061), + [anon_sym_LF] = ACTIONS(1063), + [anon_sym_def] = ACTIONS(1061), + [anon_sym_export_DASHenv] = ACTIONS(1061), + [anon_sym_extern] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_use] = ACTIONS(1061), [anon_sym_LBRACK] = ACTIONS(1061), - [anon_sym_COMMA] = ACTIONS(1061), [anon_sym_LPAREN] = ACTIONS(1061), + [anon_sym_RPAREN] = ACTIONS(1061), [anon_sym_DOLLAR] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1059), + [anon_sym_error] = ACTIONS(1061), + [anon_sym_DASH_DASH] = ACTIONS(1061), + [anon_sym_DASH] = ACTIONS(1061), + [anon_sym_break] = ACTIONS(1061), + [anon_sym_continue] = ACTIONS(1061), + [anon_sym_for] = ACTIONS(1061), + [anon_sym_loop] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(1061), + [anon_sym_do] = ACTIONS(1061), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_match] = ACTIONS(1061), [anon_sym_LBRACE] = ACTIONS(1061), [anon_sym_RBRACE] = ACTIONS(1061), - [anon_sym__] = ACTIONS(1059), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_QMARK2] = ACTIONS(1061), - [anon_sym_STAR_STAR] = ACTIONS(1061), - [anon_sym_PLUS_PLUS] = ACTIONS(1061), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_mod] = ACTIONS(1061), - [anon_sym_SLASH_SLASH] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_bit_DASHshl] = ACTIONS(1061), - [anon_sym_bit_DASHshr] = ACTIONS(1061), - [anon_sym_EQ_EQ] = ACTIONS(1061), - [anon_sym_BANG_EQ] = ACTIONS(1061), - [anon_sym_LT2] = ACTIONS(1059), - [anon_sym_LT_EQ] = ACTIONS(1061), - [anon_sym_GT_EQ] = ACTIONS(1061), - [anon_sym_not_DASHin] = ACTIONS(1061), - [anon_sym_starts_DASHwith] = ACTIONS(1061), - [anon_sym_ends_DASHwith] = ACTIONS(1061), - [anon_sym_EQ_TILDE] = ACTIONS(1061), - [anon_sym_BANG_TILDE] = ACTIONS(1061), - [anon_sym_bit_DASHand] = ACTIONS(1061), - [anon_sym_bit_DASHxor] = ACTIONS(1061), - [anon_sym_bit_DASHor] = ACTIONS(1061), - [anon_sym_and] = ACTIONS(1061), - [anon_sym_xor] = ACTIONS(1061), - [anon_sym_or] = ACTIONS(1061), - [anon_sym_DOT_DOT2] = ACTIONS(1059), - [anon_sym_DOT] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1059), - [anon_sym_DOT_DOT_LT] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1061), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1061), + [anon_sym_DOT_DOT] = ACTIONS(1061), + [anon_sym_try] = ACTIONS(1061), + [anon_sym_return] = ACTIONS(1061), + [anon_sym_source] = ACTIONS(1061), + [anon_sym_source_DASHenv] = ACTIONS(1061), + [anon_sym_register] = ACTIONS(1061), + [anon_sym_hide] = ACTIONS(1061), + [anon_sym_hide_DASHenv] = ACTIONS(1061), + [anon_sym_overlay] = ACTIONS(1061), + [anon_sym_as] = ACTIONS(1061), + [anon_sym_where] = ACTIONS(1061), + [anon_sym_not] = ACTIONS(1061), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1061), + [anon_sym_DOT_DOT_LT] = ACTIONS(1061), [anon_sym_null] = ACTIONS(1061), [anon_sym_true] = ACTIONS(1061), [anon_sym_false] = ACTIONS(1061), - [aux_sym__val_number_decimal_token1] = ACTIONS(1059), + [aux_sym__val_number_decimal_token1] = ACTIONS(1061), [aux_sym__val_number_decimal_token2] = ACTIONS(1061), - [anon_sym_DOT2] = ACTIONS(1059), + [anon_sym_DOT2] = ACTIONS(1061), [aux_sym__val_number_decimal_token3] = ACTIONS(1061), [aux_sym__val_number_token1] = ACTIONS(1061), [aux_sym__val_number_token2] = ACTIONS(1061), @@ -219301,37183 +224752,36766 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token4] = ACTIONS(1061), [aux_sym__val_number_token5] = ACTIONS(1061), [aux_sym__val_number_token6] = ACTIONS(1061), - [anon_sym_0b] = ACTIONS(1059), - [anon_sym_0o] = ACTIONS(1059), - [anon_sym_0x] = ACTIONS(1059), + [anon_sym_0b] = ACTIONS(1061), + [anon_sym_0o] = ACTIONS(1061), + [anon_sym_0x] = ACTIONS(1061), [sym_val_date] = ACTIONS(1061), [anon_sym_DQUOTE] = ACTIONS(1061), [sym__str_single_quotes] = ACTIONS(1061), [sym__str_back_ticks] = ACTIONS(1061), - [anon_sym_err_GT] = ACTIONS(1061), - [anon_sym_out_GT] = ACTIONS(1061), - [anon_sym_e_GT] = ACTIONS(1061), - [anon_sym_o_GT] = ACTIONS(1061), - [anon_sym_err_PLUSout_GT] = ACTIONS(1061), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1061), - [anon_sym_o_PLUSe_GT] = ACTIONS(1061), - [anon_sym_e_PLUSo_GT] = ACTIONS(1061), - [aux_sym_unquoted_token1] = ACTIONS(1059), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1061), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1061), + [anon_sym_CARET] = ACTIONS(1061), + [anon_sym_POUND] = ACTIONS(113), }, - [1297] = { - [sym_comment] = STATE(1297), - [anon_sym_LBRACK] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(1072), - [anon_sym_RBRACK] = ACTIONS(1072), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_DOLLAR] = ACTIONS(1072), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_in] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1072), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(3770), - [anon_sym_STAR_STAR] = ACTIONS(1072), - [anon_sym_PLUS_PLUS] = ACTIONS(1072), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_mod] = ACTIONS(1072), - [anon_sym_SLASH_SLASH] = ACTIONS(1072), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_bit_DASHshl] = ACTIONS(1072), - [anon_sym_bit_DASHshr] = ACTIONS(1072), - [anon_sym_EQ_EQ] = ACTIONS(1072), - [anon_sym_BANG_EQ] = ACTIONS(1072), - [anon_sym_LT2] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1072), - [anon_sym_GT_EQ] = ACTIONS(1072), - [anon_sym_not_DASHin] = ACTIONS(1072), - [anon_sym_starts_DASHwith] = ACTIONS(1072), - [anon_sym_ends_DASHwith] = ACTIONS(1072), - [anon_sym_EQ_TILDE] = ACTIONS(1072), - [anon_sym_BANG_TILDE] = ACTIONS(1072), - [anon_sym_bit_DASHand] = ACTIONS(1072), - [anon_sym_bit_DASHxor] = ACTIONS(1072), - [anon_sym_bit_DASHor] = ACTIONS(1072), - [anon_sym_and] = ACTIONS(1072), - [anon_sym_xor] = ACTIONS(1072), - [anon_sym_or] = ACTIONS(1072), - [anon_sym_DOT_DOT2] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1072), - [anon_sym_null] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1072), - [anon_sym_false] = ACTIONS(1072), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1072), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1072), - [aux_sym__val_number_token1] = ACTIONS(1072), - [aux_sym__val_number_token2] = ACTIONS(1072), - [aux_sym__val_number_token3] = ACTIONS(1072), - [aux_sym__val_number_token4] = ACTIONS(1072), - [aux_sym__val_number_token5] = ACTIONS(1072), - [aux_sym__val_number_token6] = ACTIONS(1072), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1072), - [anon_sym_DQUOTE] = ACTIONS(1072), - [sym__str_single_quotes] = ACTIONS(1072), - [sym__str_back_ticks] = ACTIONS(1072), - [anon_sym_err_GT] = ACTIONS(1072), - [anon_sym_out_GT] = ACTIONS(1072), - [anon_sym_e_GT] = ACTIONS(1072), - [anon_sym_o_GT] = ACTIONS(1072), - [anon_sym_err_PLUSout_GT] = ACTIONS(1072), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1072), - [anon_sym_o_PLUSe_GT] = ACTIONS(1072), - [anon_sym_e_PLUSo_GT] = ACTIONS(1072), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1070), - [anon_sym_POUND] = ACTIONS(3), + [1501] = { + [sym_comment] = STATE(1501), + [anon_sym_LBRACK] = ACTIONS(1131), + [anon_sym_COMMA] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_DOLLAR] = ACTIONS(1129), + [anon_sym_GT] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_in] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(1131), + [anon_sym_RBRACE] = ACTIONS(1131), + [anon_sym__] = ACTIONS(1129), + [anon_sym_DOT_DOT] = ACTIONS(1129), + [anon_sym_STAR] = ACTIONS(1129), + [anon_sym_STAR_STAR] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(1129), + [anon_sym_mod] = ACTIONS(1129), + [anon_sym_SLASH_SLASH] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_bit_DASHshl] = ACTIONS(1129), + [anon_sym_bit_DASHshr] = ACTIONS(1129), + [anon_sym_EQ_EQ] = ACTIONS(1129), + [anon_sym_BANG_EQ] = ACTIONS(1129), + [anon_sym_LT2] = ACTIONS(1129), + [anon_sym_LT_EQ] = ACTIONS(1129), + [anon_sym_GT_EQ] = ACTIONS(1129), + [anon_sym_not_DASHin] = ACTIONS(1129), + [anon_sym_starts_DASHwith] = ACTIONS(1129), + [anon_sym_ends_DASHwith] = ACTIONS(1129), + [anon_sym_EQ_TILDE] = ACTIONS(1129), + [anon_sym_BANG_TILDE] = ACTIONS(1129), + [anon_sym_bit_DASHand] = ACTIONS(1129), + [anon_sym_bit_DASHxor] = ACTIONS(1129), + [anon_sym_bit_DASHor] = ACTIONS(1129), + [anon_sym_and] = ACTIONS(1129), + [anon_sym_xor] = ACTIONS(1129), + [anon_sym_or] = ACTIONS(1129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1129), + [anon_sym_DOT_DOT_LT] = ACTIONS(1129), + [anon_sym_null] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1129), + [anon_sym_false] = ACTIONS(1129), + [aux_sym__val_number_decimal_token1] = ACTIONS(1129), + [aux_sym__val_number_decimal_token2] = ACTIONS(1129), + [anon_sym_DOT2] = ACTIONS(1129), + [aux_sym__val_number_decimal_token3] = ACTIONS(1129), + [aux_sym__val_number_token1] = ACTIONS(1129), + [aux_sym__val_number_token2] = ACTIONS(1129), + [aux_sym__val_number_token3] = ACTIONS(1129), + [aux_sym__val_number_token4] = ACTIONS(1129), + [aux_sym__val_number_token5] = ACTIONS(1129), + [aux_sym__val_number_token6] = ACTIONS(1129), + [anon_sym_0b] = ACTIONS(1129), + [anon_sym_0o] = ACTIONS(1129), + [anon_sym_0x] = ACTIONS(1129), + [sym_val_date] = ACTIONS(1129), + [anon_sym_DQUOTE] = ACTIONS(1131), + [sym__str_single_quotes] = ACTIONS(1131), + [sym__str_back_ticks] = ACTIONS(1131), + [anon_sym_err_GT] = ACTIONS(1129), + [anon_sym_out_GT] = ACTIONS(1129), + [anon_sym_e_GT] = ACTIONS(1129), + [anon_sym_o_GT] = ACTIONS(1129), + [anon_sym_err_PLUSout_GT] = ACTIONS(1129), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1129), + [anon_sym_o_PLUSe_GT] = ACTIONS(1129), + [anon_sym_e_PLUSo_GT] = ACTIONS(1129), + [aux_sym_unquoted_token1] = ACTIONS(1129), + [aux_sym_unquoted_token6] = ACTIONS(1133), + [anon_sym_POUND] = ACTIONS(113), }, - [1298] = { - [sym_comment] = STATE(1298), - [anon_sym_LBRACK] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(1072), - [anon_sym_RBRACK] = ACTIONS(1072), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_DOLLAR] = ACTIONS(1072), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_in] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1072), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(3770), - [anon_sym_STAR_STAR] = ACTIONS(1072), - [anon_sym_PLUS_PLUS] = ACTIONS(1072), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_mod] = ACTIONS(1072), - [anon_sym_SLASH_SLASH] = ACTIONS(1072), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_bit_DASHshl] = ACTIONS(1072), - [anon_sym_bit_DASHshr] = ACTIONS(1072), - [anon_sym_EQ_EQ] = ACTIONS(1072), - [anon_sym_BANG_EQ] = ACTIONS(1072), - [anon_sym_LT2] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1072), - [anon_sym_GT_EQ] = ACTIONS(1072), - [anon_sym_not_DASHin] = ACTIONS(1072), - [anon_sym_starts_DASHwith] = ACTIONS(1072), - [anon_sym_ends_DASHwith] = ACTIONS(1072), - [anon_sym_EQ_TILDE] = ACTIONS(1072), - [anon_sym_BANG_TILDE] = ACTIONS(1072), - [anon_sym_bit_DASHand] = ACTIONS(1072), - [anon_sym_bit_DASHxor] = ACTIONS(1072), - [anon_sym_bit_DASHor] = ACTIONS(1072), - [anon_sym_and] = ACTIONS(1072), - [anon_sym_xor] = ACTIONS(1072), - [anon_sym_or] = ACTIONS(1072), - [anon_sym_DOT_DOT2] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1072), - [anon_sym_null] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1072), - [anon_sym_false] = ACTIONS(1072), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1072), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1072), - [aux_sym__val_number_token1] = ACTIONS(1072), - [aux_sym__val_number_token2] = ACTIONS(1072), - [aux_sym__val_number_token3] = ACTIONS(1072), - [aux_sym__val_number_token4] = ACTIONS(1072), - [aux_sym__val_number_token5] = ACTIONS(1072), - [aux_sym__val_number_token6] = ACTIONS(1072), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1072), - [anon_sym_DQUOTE] = ACTIONS(1072), - [sym__str_single_quotes] = ACTIONS(1072), - [sym__str_back_ticks] = ACTIONS(1072), - [anon_sym_err_GT] = ACTIONS(1072), - [anon_sym_out_GT] = ACTIONS(1072), - [anon_sym_e_GT] = ACTIONS(1072), - [anon_sym_o_GT] = ACTIONS(1072), - [anon_sym_err_PLUSout_GT] = ACTIONS(1072), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1072), - [anon_sym_o_PLUSe_GT] = ACTIONS(1072), - [anon_sym_e_PLUSo_GT] = ACTIONS(1072), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1070), - [anon_sym_POUND] = ACTIONS(3), + [1502] = { + [sym_comment] = STATE(1502), + [anon_sym_LBRACK] = ACTIONS(1137), + [anon_sym_COMMA] = ACTIONS(1135), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_DOLLAR] = ACTIONS(1135), + [anon_sym_GT] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_in] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_RBRACE] = ACTIONS(1137), + [anon_sym__] = ACTIONS(1135), + [anon_sym_DOT_DOT] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1135), + [anon_sym_STAR_STAR] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_SLASH] = ACTIONS(1135), + [anon_sym_mod] = ACTIONS(1135), + [anon_sym_SLASH_SLASH] = ACTIONS(1135), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_bit_DASHshl] = ACTIONS(1135), + [anon_sym_bit_DASHshr] = ACTIONS(1135), + [anon_sym_EQ_EQ] = ACTIONS(1135), + [anon_sym_BANG_EQ] = ACTIONS(1135), + [anon_sym_LT2] = ACTIONS(1135), + [anon_sym_LT_EQ] = ACTIONS(1135), + [anon_sym_GT_EQ] = ACTIONS(1135), + [anon_sym_not_DASHin] = ACTIONS(1135), + [anon_sym_starts_DASHwith] = ACTIONS(1135), + [anon_sym_ends_DASHwith] = ACTIONS(1135), + [anon_sym_EQ_TILDE] = ACTIONS(1135), + [anon_sym_BANG_TILDE] = ACTIONS(1135), + [anon_sym_bit_DASHand] = ACTIONS(1135), + [anon_sym_bit_DASHxor] = ACTIONS(1135), + [anon_sym_bit_DASHor] = ACTIONS(1135), + [anon_sym_and] = ACTIONS(1135), + [anon_sym_xor] = ACTIONS(1135), + [anon_sym_or] = ACTIONS(1135), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1135), + [anon_sym_DOT_DOT_LT] = ACTIONS(1135), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_true] = ACTIONS(1135), + [anon_sym_false] = ACTIONS(1135), + [aux_sym__val_number_decimal_token1] = ACTIONS(1135), + [aux_sym__val_number_decimal_token2] = ACTIONS(1135), + [anon_sym_DOT2] = ACTIONS(1135), + [aux_sym__val_number_decimal_token3] = ACTIONS(1135), + [aux_sym__val_number_token1] = ACTIONS(1135), + [aux_sym__val_number_token2] = ACTIONS(1135), + [aux_sym__val_number_token3] = ACTIONS(1135), + [aux_sym__val_number_token4] = ACTIONS(1135), + [aux_sym__val_number_token5] = ACTIONS(1135), + [aux_sym__val_number_token6] = ACTIONS(1135), + [anon_sym_0b] = ACTIONS(1135), + [anon_sym_0o] = ACTIONS(1135), + [anon_sym_0x] = ACTIONS(1135), + [sym_val_date] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1137), + [sym__str_single_quotes] = ACTIONS(1137), + [sym__str_back_ticks] = ACTIONS(1137), + [anon_sym_err_GT] = ACTIONS(1135), + [anon_sym_out_GT] = ACTIONS(1135), + [anon_sym_e_GT] = ACTIONS(1135), + [anon_sym_o_GT] = ACTIONS(1135), + [anon_sym_err_PLUSout_GT] = ACTIONS(1135), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1135), + [anon_sym_o_PLUSe_GT] = ACTIONS(1135), + [anon_sym_e_PLUSo_GT] = ACTIONS(1135), + [aux_sym_unquoted_token1] = ACTIONS(1135), + [aux_sym_unquoted_token6] = ACTIONS(1133), + [anon_sym_POUND] = ACTIONS(113), }, - [1299] = { - [sym_comment] = STATE(1299), - [anon_sym_SEMI] = ACTIONS(923), - [anon_sym_LF] = ACTIONS(925), - [anon_sym_LBRACK] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_RPAREN] = ACTIONS(923), - [anon_sym_PIPE] = ACTIONS(923), - [anon_sym_DOLLAR] = ACTIONS(923), - [anon_sym_GT] = ACTIONS(923), - [anon_sym_DASH_DASH] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_in] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(923), - [anon_sym_RBRACE] = ACTIONS(923), - [anon_sym_DOT_DOT] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_STAR_STAR] = ACTIONS(923), - [anon_sym_PLUS_PLUS] = ACTIONS(923), - [anon_sym_SLASH] = ACTIONS(923), - [anon_sym_mod] = ACTIONS(923), - [anon_sym_SLASH_SLASH] = ACTIONS(923), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_bit_DASHshl] = ACTIONS(923), - [anon_sym_bit_DASHshr] = ACTIONS(923), - [anon_sym_EQ_EQ] = ACTIONS(923), - [anon_sym_BANG_EQ] = ACTIONS(923), - [anon_sym_LT2] = ACTIONS(923), - [anon_sym_LT_EQ] = ACTIONS(923), - [anon_sym_GT_EQ] = ACTIONS(923), - [anon_sym_not_DASHin] = ACTIONS(923), - [anon_sym_starts_DASHwith] = ACTIONS(923), - [anon_sym_ends_DASHwith] = ACTIONS(923), - [anon_sym_EQ_TILDE] = ACTIONS(923), - [anon_sym_BANG_TILDE] = ACTIONS(923), - [anon_sym_bit_DASHand] = ACTIONS(923), - [anon_sym_bit_DASHxor] = ACTIONS(923), - [anon_sym_bit_DASHor] = ACTIONS(923), - [anon_sym_and] = ACTIONS(923), - [anon_sym_xor] = ACTIONS(923), - [anon_sym_or] = ACTIONS(923), - [anon_sym_not] = ACTIONS(923), - [anon_sym_DOT_DOT2] = ACTIONS(923), - [anon_sym_DOT] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ] = ACTIONS(923), - [anon_sym_DOT_DOT_LT] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(925), - [anon_sym_DOT_DOT_LT2] = ACTIONS(925), - [aux_sym__immediate_decimal_token2] = ACTIONS(3772), - [anon_sym_null] = ACTIONS(923), - [anon_sym_true] = ACTIONS(923), - [anon_sym_false] = ACTIONS(923), - [aux_sym__val_number_decimal_token1] = ACTIONS(923), - [aux_sym__val_number_decimal_token2] = ACTIONS(923), - [anon_sym_DOT2] = ACTIONS(923), - [aux_sym__val_number_decimal_token3] = ACTIONS(923), - [aux_sym__val_number_token1] = ACTIONS(923), - [aux_sym__val_number_token2] = ACTIONS(923), - [aux_sym__val_number_token3] = ACTIONS(923), - [aux_sym__val_number_token4] = ACTIONS(923), - [aux_sym__val_number_token5] = ACTIONS(923), - [aux_sym__val_number_token6] = ACTIONS(923), - [anon_sym_0b] = ACTIONS(923), - [sym_filesize_unit] = ACTIONS(923), - [sym_duration_unit] = ACTIONS(925), - [anon_sym_0o] = ACTIONS(923), - [anon_sym_0x] = ACTIONS(923), - [sym_val_date] = ACTIONS(923), - [anon_sym_DQUOTE] = ACTIONS(923), - [sym__str_single_quotes] = ACTIONS(923), - [sym__str_back_ticks] = ACTIONS(923), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(923), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), - [aux_sym_unquoted_token5] = ACTIONS(923), + [1503] = { + [sym_comment] = STATE(1503), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_COMMA] = ACTIONS(1139), + [anon_sym_RBRACK] = ACTIONS(1139), + [anon_sym_LPAREN] = ACTIONS(1139), + [anon_sym_DOLLAR] = ACTIONS(1139), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_DASH_DASH] = ACTIONS(1139), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_in] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1139), + [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_STAR_STAR] = ACTIONS(1139), + [anon_sym_PLUS_PLUS] = ACTIONS(1139), + [anon_sym_SLASH] = ACTIONS(1139), + [anon_sym_mod] = ACTIONS(1139), + [anon_sym_SLASH_SLASH] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_bit_DASHshl] = ACTIONS(1139), + [anon_sym_bit_DASHshr] = ACTIONS(1139), + [anon_sym_EQ_EQ] = ACTIONS(1139), + [anon_sym_BANG_EQ] = ACTIONS(1139), + [anon_sym_LT2] = ACTIONS(1139), + [anon_sym_LT_EQ] = ACTIONS(1139), + [anon_sym_GT_EQ] = ACTIONS(1139), + [anon_sym_not_DASHin] = ACTIONS(1139), + [anon_sym_starts_DASHwith] = ACTIONS(1139), + [anon_sym_ends_DASHwith] = ACTIONS(1139), + [anon_sym_EQ_TILDE] = ACTIONS(1139), + [anon_sym_BANG_TILDE] = ACTIONS(1139), + [anon_sym_bit_DASHand] = ACTIONS(1139), + [anon_sym_bit_DASHxor] = ACTIONS(1139), + [anon_sym_bit_DASHor] = ACTIONS(1139), + [anon_sym_and] = ACTIONS(1139), + [anon_sym_xor] = ACTIONS(1139), + [anon_sym_or] = ACTIONS(1139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1139), + [anon_sym_DOT_DOT_LT] = ACTIONS(1139), + [anon_sym_null] = ACTIONS(1139), + [anon_sym_true] = ACTIONS(1139), + [anon_sym_false] = ACTIONS(1139), + [aux_sym__val_number_decimal_token1] = ACTIONS(1139), + [aux_sym__val_number_decimal_token2] = ACTIONS(1139), + [anon_sym_DOT2] = ACTIONS(1139), + [aux_sym__val_number_decimal_token3] = ACTIONS(1139), + [aux_sym__val_number_token1] = ACTIONS(1139), + [aux_sym__val_number_token2] = ACTIONS(1139), + [aux_sym__val_number_token3] = ACTIONS(1139), + [aux_sym__val_number_token4] = ACTIONS(1139), + [aux_sym__val_number_token5] = ACTIONS(1139), + [aux_sym__val_number_token6] = ACTIONS(1139), + [anon_sym_0b] = ACTIONS(1139), + [anon_sym_0o] = ACTIONS(1139), + [anon_sym_0x] = ACTIONS(1139), + [sym_val_date] = ACTIONS(1139), + [anon_sym_DQUOTE] = ACTIONS(1139), + [sym__str_single_quotes] = ACTIONS(1139), + [sym__str_back_ticks] = ACTIONS(1139), + [sym__entry_separator] = ACTIONS(1209), + [anon_sym_err_GT] = ACTIONS(1139), + [anon_sym_out_GT] = ACTIONS(1139), + [anon_sym_e_GT] = ACTIONS(1139), + [anon_sym_o_GT] = ACTIONS(1139), + [anon_sym_err_PLUSout_GT] = ACTIONS(1139), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1139), + [anon_sym_o_PLUSe_GT] = ACTIONS(1139), + [anon_sym_e_PLUSo_GT] = ACTIONS(1139), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1139), [anon_sym_POUND] = ACTIONS(113), }, - [1300] = { - [sym_comment] = STATE(1300), - [anon_sym_SEMI] = ACTIONS(909), - [anon_sym_LF] = ACTIONS(911), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_RPAREN] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_RBRACE] = ACTIONS(909), - [anon_sym_DOT_DOT] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(909), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(909), - [anon_sym_SLASH_SLASH] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(909), - [anon_sym_bit_DASHshr] = ACTIONS(909), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_not_DASHin] = ACTIONS(909), - [anon_sym_starts_DASHwith] = ACTIONS(909), - [anon_sym_ends_DASHwith] = ACTIONS(909), - [anon_sym_EQ_TILDE] = ACTIONS(909), - [anon_sym_BANG_TILDE] = ACTIONS(909), - [anon_sym_bit_DASHand] = ACTIONS(909), - [anon_sym_bit_DASHxor] = ACTIONS(909), - [anon_sym_bit_DASHor] = ACTIONS(909), - [anon_sym_and] = ACTIONS(909), - [anon_sym_xor] = ACTIONS(909), - [anon_sym_or] = ACTIONS(909), - [anon_sym_not] = ACTIONS(909), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [aux_sym__immediate_decimal_token2] = ACTIONS(3678), - [anon_sym_null] = ACTIONS(909), - [anon_sym_true] = ACTIONS(909), - [anon_sym_false] = ACTIONS(909), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(909), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(909), - [aux_sym__val_number_token1] = ACTIONS(909), - [aux_sym__val_number_token2] = ACTIONS(909), - [aux_sym__val_number_token3] = ACTIONS(909), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(909), - [aux_sym__val_number_token6] = ACTIONS(909), - [anon_sym_0b] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(911), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym__str_single_quotes] = ACTIONS(909), - [sym__str_back_ticks] = ACTIONS(909), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), - [aux_sym_unquoted_token5] = ACTIONS(909), + [1504] = { + [sym_comment] = STATE(1504), + [anon_sym_export] = ACTIONS(3741), + [anon_sym_alias] = ACTIONS(3741), + [anon_sym_let] = ACTIONS(3741), + [anon_sym_let_DASHenv] = ACTIONS(3741), + [anon_sym_mut] = ACTIONS(3741), + [anon_sym_const] = ACTIONS(3741), + [anon_sym_SEMI] = ACTIONS(3741), + [sym_cmd_identifier] = ACTIONS(3741), + [anon_sym_LF] = ACTIONS(3743), + [anon_sym_def] = ACTIONS(3741), + [anon_sym_export_DASHenv] = ACTIONS(3741), + [anon_sym_extern] = ACTIONS(3741), + [anon_sym_module] = ACTIONS(3741), + [anon_sym_use] = ACTIONS(3741), + [anon_sym_LBRACK] = ACTIONS(3741), + [anon_sym_LPAREN] = ACTIONS(3741), + [anon_sym_RPAREN] = ACTIONS(3741), + [anon_sym_DOLLAR] = ACTIONS(3741), + [anon_sym_error] = ACTIONS(3741), + [anon_sym_DASH_DASH] = ACTIONS(3741), + [anon_sym_DASH] = ACTIONS(3741), + [anon_sym_break] = ACTIONS(3741), + [anon_sym_continue] = ACTIONS(3741), + [anon_sym_for] = ACTIONS(3741), + [anon_sym_loop] = ACTIONS(3741), + [anon_sym_while] = ACTIONS(3741), + [anon_sym_do] = ACTIONS(3741), + [anon_sym_if] = ACTIONS(3741), + [anon_sym_match] = ACTIONS(3741), + [anon_sym_LBRACE] = ACTIONS(3741), + [anon_sym_RBRACE] = ACTIONS(3741), + [anon_sym_DOT_DOT] = ACTIONS(3741), + [anon_sym_try] = ACTIONS(3741), + [anon_sym_return] = ACTIONS(3741), + [anon_sym_source] = ACTIONS(3741), + [anon_sym_source_DASHenv] = ACTIONS(3741), + [anon_sym_register] = ACTIONS(3741), + [anon_sym_hide] = ACTIONS(3741), + [anon_sym_hide_DASHenv] = ACTIONS(3741), + [anon_sym_overlay] = ACTIONS(3741), + [anon_sym_as] = ACTIONS(3741), + [anon_sym_where] = ACTIONS(3741), + [anon_sym_not] = ACTIONS(3741), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3741), + [anon_sym_DOT_DOT_LT] = ACTIONS(3741), + [anon_sym_null] = ACTIONS(3741), + [anon_sym_true] = ACTIONS(3741), + [anon_sym_false] = ACTIONS(3741), + [aux_sym__val_number_decimal_token1] = ACTIONS(3741), + [aux_sym__val_number_decimal_token2] = ACTIONS(3741), + [anon_sym_DOT2] = ACTIONS(3741), + [aux_sym__val_number_decimal_token3] = ACTIONS(3741), + [aux_sym__val_number_token1] = ACTIONS(3741), + [aux_sym__val_number_token2] = ACTIONS(3741), + [aux_sym__val_number_token3] = ACTIONS(3741), + [aux_sym__val_number_token4] = ACTIONS(3741), + [aux_sym__val_number_token5] = ACTIONS(3741), + [aux_sym__val_number_token6] = ACTIONS(3741), + [anon_sym_0b] = ACTIONS(3741), + [anon_sym_0o] = ACTIONS(3741), + [anon_sym_0x] = ACTIONS(3741), + [sym_val_date] = ACTIONS(3741), + [anon_sym_DQUOTE] = ACTIONS(3741), + [sym__str_single_quotes] = ACTIONS(3741), + [sym__str_back_ticks] = ACTIONS(3741), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3741), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3741), + [anon_sym_CARET] = ACTIONS(3741), [anon_sym_POUND] = ACTIONS(113), }, - [1301] = { - [sym_comment] = STATE(1301), - [anon_sym_LBRACK] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(1072), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_DOLLAR] = ACTIONS(1072), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_in] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1072), - [anon_sym_RBRACE] = ACTIONS(1072), - [anon_sym__] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(3774), - [anon_sym_STAR_STAR] = ACTIONS(1072), - [anon_sym_PLUS_PLUS] = ACTIONS(1072), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_mod] = ACTIONS(1072), - [anon_sym_SLASH_SLASH] = ACTIONS(1072), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_bit_DASHshl] = ACTIONS(1072), - [anon_sym_bit_DASHshr] = ACTIONS(1072), - [anon_sym_EQ_EQ] = ACTIONS(1072), - [anon_sym_BANG_EQ] = ACTIONS(1072), - [anon_sym_LT2] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1072), - [anon_sym_GT_EQ] = ACTIONS(1072), - [anon_sym_not_DASHin] = ACTIONS(1072), - [anon_sym_starts_DASHwith] = ACTIONS(1072), - [anon_sym_ends_DASHwith] = ACTIONS(1072), - [anon_sym_EQ_TILDE] = ACTIONS(1072), - [anon_sym_BANG_TILDE] = ACTIONS(1072), - [anon_sym_bit_DASHand] = ACTIONS(1072), - [anon_sym_bit_DASHxor] = ACTIONS(1072), - [anon_sym_bit_DASHor] = ACTIONS(1072), - [anon_sym_and] = ACTIONS(1072), - [anon_sym_xor] = ACTIONS(1072), - [anon_sym_or] = ACTIONS(1072), - [anon_sym_DOT_DOT2] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1072), - [anon_sym_null] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1072), - [anon_sym_false] = ACTIONS(1072), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1072), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1072), - [aux_sym__val_number_token1] = ACTIONS(1072), - [aux_sym__val_number_token2] = ACTIONS(1072), - [aux_sym__val_number_token3] = ACTIONS(1072), - [aux_sym__val_number_token4] = ACTIONS(1072), - [aux_sym__val_number_token5] = ACTIONS(1072), - [aux_sym__val_number_token6] = ACTIONS(1072), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1072), - [anon_sym_DQUOTE] = ACTIONS(1072), - [sym__str_single_quotes] = ACTIONS(1072), - [sym__str_back_ticks] = ACTIONS(1072), - [anon_sym_err_GT] = ACTIONS(1072), - [anon_sym_out_GT] = ACTIONS(1072), - [anon_sym_e_GT] = ACTIONS(1072), - [anon_sym_o_GT] = ACTIONS(1072), - [anon_sym_err_PLUSout_GT] = ACTIONS(1072), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1072), - [anon_sym_o_PLUSe_GT] = ACTIONS(1072), - [anon_sym_e_PLUSo_GT] = ACTIONS(1072), - [aux_sym_unquoted_token1] = ACTIONS(1070), - [anon_sym_POUND] = ACTIONS(3), + [1505] = { + [sym_comment] = STATE(1505), + [ts_builtin_sym_end] = ACTIONS(4725), + [anon_sym_export] = ACTIONS(4721), + [anon_sym_alias] = ACTIONS(4721), + [anon_sym_EQ] = ACTIONS(4927), + [anon_sym_let] = ACTIONS(4721), + [anon_sym_let_DASHenv] = ACTIONS(4721), + [anon_sym_mut] = ACTIONS(4721), + [anon_sym_const] = ACTIONS(4721), + [anon_sym_SEMI] = ACTIONS(4721), + [sym_cmd_identifier] = ACTIONS(4721), + [anon_sym_LF] = ACTIONS(4725), + [anon_sym_def] = ACTIONS(4721), + [anon_sym_export_DASHenv] = ACTIONS(4721), + [anon_sym_extern] = ACTIONS(4721), + [anon_sym_module] = ACTIONS(4721), + [anon_sym_use] = ACTIONS(4721), + [anon_sym_LBRACK] = ACTIONS(4721), + [anon_sym_LPAREN] = ACTIONS(4721), + [anon_sym_DOLLAR] = ACTIONS(4721), + [anon_sym_error] = ACTIONS(4721), + [anon_sym_DASH_DASH] = ACTIONS(4721), + [anon_sym_DASH] = ACTIONS(4721), + [anon_sym_break] = ACTIONS(4721), + [anon_sym_continue] = ACTIONS(4721), + [anon_sym_for] = ACTIONS(4721), + [anon_sym_loop] = ACTIONS(4721), + [anon_sym_while] = ACTIONS(4721), + [anon_sym_do] = ACTIONS(4721), + [anon_sym_if] = ACTIONS(4721), + [anon_sym_match] = ACTIONS(4721), + [anon_sym_LBRACE] = ACTIONS(4721), + [anon_sym_DOT_DOT] = ACTIONS(4721), + [anon_sym_try] = ACTIONS(4721), + [anon_sym_return] = ACTIONS(4721), + [anon_sym_source] = ACTIONS(4721), + [anon_sym_source_DASHenv] = ACTIONS(4721), + [anon_sym_register] = ACTIONS(4721), + [anon_sym_hide] = ACTIONS(4721), + [anon_sym_hide_DASHenv] = ACTIONS(4721), + [anon_sym_overlay] = ACTIONS(4721), + [anon_sym_as] = ACTIONS(4721), + [anon_sym_where] = ACTIONS(4721), + [anon_sym_not] = ACTIONS(4721), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4721), + [anon_sym_DOT_DOT_LT] = ACTIONS(4721), + [anon_sym_null] = ACTIONS(4721), + [anon_sym_true] = ACTIONS(4721), + [anon_sym_false] = ACTIONS(4721), + [aux_sym__val_number_decimal_token1] = ACTIONS(4721), + [aux_sym__val_number_decimal_token2] = ACTIONS(4721), + [anon_sym_DOT2] = ACTIONS(4721), + [aux_sym__val_number_decimal_token3] = ACTIONS(4721), + [aux_sym__val_number_token1] = ACTIONS(4721), + [aux_sym__val_number_token2] = ACTIONS(4721), + [aux_sym__val_number_token3] = ACTIONS(4721), + [aux_sym__val_number_token4] = ACTIONS(4721), + [aux_sym__val_number_token5] = ACTIONS(4721), + [aux_sym__val_number_token6] = ACTIONS(4721), + [anon_sym_0b] = ACTIONS(4721), + [anon_sym_0o] = ACTIONS(4721), + [anon_sym_0x] = ACTIONS(4721), + [sym_val_date] = ACTIONS(4721), + [anon_sym_DQUOTE] = ACTIONS(4721), + [sym__str_single_quotes] = ACTIONS(4721), + [sym__str_back_ticks] = ACTIONS(4721), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4721), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4721), + [anon_sym_CARET] = ACTIONS(4721), + [anon_sym_POUND] = ACTIONS(113), }, - [1302] = { - [sym__command_name] = STATE(2875), - [sym_scope_pattern] = STATE(2888), - [sym_wild_card] = STATE(2878), - [sym_command_list] = STATE(2884), - [sym_val_string] = STATE(2800), - [sym__str_double_quotes] = STATE(2793), - [sym_comment] = STATE(1302), - [ts_builtin_sym_end] = ACTIONS(3698), - [anon_sym_export] = ACTIONS(3696), - [anon_sym_alias] = ACTIONS(3696), - [anon_sym_let] = ACTIONS(3696), - [anon_sym_let_DASHenv] = ACTIONS(3696), - [anon_sym_mut] = ACTIONS(3696), - [anon_sym_const] = ACTIONS(3696), - [anon_sym_SEMI] = ACTIONS(3696), - [sym_cmd_identifier] = ACTIONS(3776), - [anon_sym_LF] = ACTIONS(3698), - [anon_sym_def] = ACTIONS(3696), - [anon_sym_export_DASHenv] = ACTIONS(3696), - [anon_sym_extern] = ACTIONS(3696), - [anon_sym_module] = ACTIONS(3696), - [anon_sym_use] = ACTIONS(3696), - [anon_sym_LBRACK] = ACTIONS(3778), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_DOLLAR] = ACTIONS(3696), - [anon_sym_error] = ACTIONS(3696), - [anon_sym_DASH] = ACTIONS(3696), - [anon_sym_break] = ACTIONS(3696), - [anon_sym_continue] = ACTIONS(3696), - [anon_sym_for] = ACTIONS(3696), - [anon_sym_loop] = ACTIONS(3696), - [anon_sym_while] = ACTIONS(3696), - [anon_sym_do] = ACTIONS(3696), - [anon_sym_if] = ACTIONS(3696), - [anon_sym_match] = ACTIONS(3696), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_try] = ACTIONS(3696), - [anon_sym_return] = ACTIONS(3696), - [anon_sym_source] = ACTIONS(3696), - [anon_sym_source_DASHenv] = ACTIONS(3696), - [anon_sym_register] = ACTIONS(3696), - [anon_sym_hide] = ACTIONS(3696), - [anon_sym_hide_DASHenv] = ACTIONS(3696), - [anon_sym_overlay] = ACTIONS(3696), - [anon_sym_STAR] = ACTIONS(3780), - [anon_sym_where] = ACTIONS(3696), - [anon_sym_not] = ACTIONS(3696), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3696), - [anon_sym_DOT_DOT_LT] = ACTIONS(3696), - [anon_sym_null] = ACTIONS(3696), - [anon_sym_true] = ACTIONS(3696), - [anon_sym_false] = ACTIONS(3696), - [aux_sym__val_number_decimal_token1] = ACTIONS(3696), - [aux_sym__val_number_decimal_token2] = ACTIONS(3696), - [anon_sym_DOT2] = ACTIONS(3696), - [aux_sym__val_number_decimal_token3] = ACTIONS(3696), - [aux_sym__val_number_token1] = ACTIONS(3696), - [aux_sym__val_number_token2] = ACTIONS(3696), - [aux_sym__val_number_token3] = ACTIONS(3696), - [aux_sym__val_number_token4] = ACTIONS(3696), - [aux_sym__val_number_token5] = ACTIONS(3696), - [aux_sym__val_number_token6] = ACTIONS(3696), - [anon_sym_0b] = ACTIONS(3696), - [anon_sym_0o] = ACTIONS(3696), - [anon_sym_0x] = ACTIONS(3696), - [sym_val_date] = ACTIONS(3696), - [anon_sym_DQUOTE] = ACTIONS(3782), - [sym__str_single_quotes] = ACTIONS(3784), - [sym__str_back_ticks] = ACTIONS(3784), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3696), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3696), - [anon_sym_CARET] = ACTIONS(3696), + [1506] = { + [sym_comment] = STATE(1506), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_COMMA] = ACTIONS(1139), + [anon_sym_RBRACK] = ACTIONS(1139), + [anon_sym_LPAREN] = ACTIONS(1139), + [anon_sym_DOLLAR] = ACTIONS(1139), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_DASH_DASH] = ACTIONS(1139), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_in] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1139), + [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_STAR_STAR] = ACTIONS(1139), + [anon_sym_PLUS_PLUS] = ACTIONS(1139), + [anon_sym_SLASH] = ACTIONS(1139), + [anon_sym_mod] = ACTIONS(1139), + [anon_sym_SLASH_SLASH] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_bit_DASHshl] = ACTIONS(1139), + [anon_sym_bit_DASHshr] = ACTIONS(1139), + [anon_sym_EQ_EQ] = ACTIONS(1139), + [anon_sym_BANG_EQ] = ACTIONS(1139), + [anon_sym_LT2] = ACTIONS(1139), + [anon_sym_LT_EQ] = ACTIONS(1139), + [anon_sym_GT_EQ] = ACTIONS(1139), + [anon_sym_not_DASHin] = ACTIONS(1139), + [anon_sym_starts_DASHwith] = ACTIONS(1139), + [anon_sym_ends_DASHwith] = ACTIONS(1139), + [anon_sym_EQ_TILDE] = ACTIONS(1139), + [anon_sym_BANG_TILDE] = ACTIONS(1139), + [anon_sym_bit_DASHand] = ACTIONS(1139), + [anon_sym_bit_DASHxor] = ACTIONS(1139), + [anon_sym_bit_DASHor] = ACTIONS(1139), + [anon_sym_and] = ACTIONS(1139), + [anon_sym_xor] = ACTIONS(1139), + [anon_sym_or] = ACTIONS(1139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1139), + [anon_sym_DOT_DOT_LT] = ACTIONS(1139), + [anon_sym_null] = ACTIONS(1139), + [anon_sym_true] = ACTIONS(1139), + [anon_sym_false] = ACTIONS(1139), + [aux_sym__val_number_decimal_token1] = ACTIONS(1139), + [aux_sym__val_number_decimal_token2] = ACTIONS(1139), + [anon_sym_DOT2] = ACTIONS(1139), + [aux_sym__val_number_decimal_token3] = ACTIONS(1139), + [aux_sym__val_number_token1] = ACTIONS(1139), + [aux_sym__val_number_token2] = ACTIONS(1139), + [aux_sym__val_number_token3] = ACTIONS(1139), + [aux_sym__val_number_token4] = ACTIONS(1139), + [aux_sym__val_number_token5] = ACTIONS(1139), + [aux_sym__val_number_token6] = ACTIONS(1139), + [anon_sym_0b] = ACTIONS(1139), + [anon_sym_0o] = ACTIONS(1139), + [anon_sym_0x] = ACTIONS(1139), + [sym_val_date] = ACTIONS(1139), + [anon_sym_DQUOTE] = ACTIONS(1139), + [sym__str_single_quotes] = ACTIONS(1139), + [sym__str_back_ticks] = ACTIONS(1139), + [aux_sym__list_item_starts_with_sign_token1] = ACTIONS(4929), + [anon_sym_err_GT] = ACTIONS(1139), + [anon_sym_out_GT] = ACTIONS(1139), + [anon_sym_e_GT] = ACTIONS(1139), + [anon_sym_o_GT] = ACTIONS(1139), + [anon_sym_err_PLUSout_GT] = ACTIONS(1139), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1139), + [anon_sym_o_PLUSe_GT] = ACTIONS(1139), + [anon_sym_e_PLUSo_GT] = ACTIONS(1139), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1139), [anon_sym_POUND] = ACTIONS(113), }, - [1303] = { - [sym_comment] = STATE(1303), - [anon_sym_SEMI] = ACTIONS(917), - [anon_sym_LF] = ACTIONS(919), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_LPAREN] = ACTIONS(917), - [anon_sym_RPAREN] = ACTIONS(917), - [anon_sym_PIPE] = ACTIONS(917), - [anon_sym_DOLLAR] = ACTIONS(917), - [anon_sym_GT] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_in] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(917), - [anon_sym_RBRACE] = ACTIONS(917), - [anon_sym_DOT_DOT] = ACTIONS(917), - [anon_sym_STAR] = ACTIONS(917), - [anon_sym_STAR_STAR] = ACTIONS(917), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_mod] = ACTIONS(917), - [anon_sym_SLASH_SLASH] = ACTIONS(917), - [anon_sym_PLUS] = ACTIONS(917), - [anon_sym_bit_DASHshl] = ACTIONS(917), - [anon_sym_bit_DASHshr] = ACTIONS(917), - [anon_sym_EQ_EQ] = ACTIONS(917), - [anon_sym_BANG_EQ] = ACTIONS(917), - [anon_sym_LT2] = ACTIONS(917), - [anon_sym_LT_EQ] = ACTIONS(917), - [anon_sym_GT_EQ] = ACTIONS(917), - [anon_sym_not_DASHin] = ACTIONS(917), - [anon_sym_starts_DASHwith] = ACTIONS(917), - [anon_sym_ends_DASHwith] = ACTIONS(917), - [anon_sym_EQ_TILDE] = ACTIONS(917), - [anon_sym_BANG_TILDE] = ACTIONS(917), - [anon_sym_bit_DASHand] = ACTIONS(917), - [anon_sym_bit_DASHxor] = ACTIONS(917), - [anon_sym_bit_DASHor] = ACTIONS(917), - [anon_sym_and] = ACTIONS(917), - [anon_sym_xor] = ACTIONS(917), - [anon_sym_or] = ACTIONS(917), - [anon_sym_not] = ACTIONS(917), - [anon_sym_DOT_DOT2] = ACTIONS(917), - [anon_sym_DOT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ] = ACTIONS(917), - [anon_sym_DOT_DOT_LT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(919), - [anon_sym_DOT_DOT_LT2] = ACTIONS(919), - [aux_sym__immediate_decimal_token2] = ACTIONS(3786), - [anon_sym_null] = ACTIONS(917), - [anon_sym_true] = ACTIONS(917), - [anon_sym_false] = ACTIONS(917), - [aux_sym__val_number_decimal_token1] = ACTIONS(917), - [aux_sym__val_number_decimal_token2] = ACTIONS(917), - [anon_sym_DOT2] = ACTIONS(917), - [aux_sym__val_number_decimal_token3] = ACTIONS(917), - [aux_sym__val_number_token1] = ACTIONS(917), - [aux_sym__val_number_token2] = ACTIONS(917), - [aux_sym__val_number_token3] = ACTIONS(917), - [aux_sym__val_number_token4] = ACTIONS(917), - [aux_sym__val_number_token5] = ACTIONS(917), - [aux_sym__val_number_token6] = ACTIONS(917), - [anon_sym_0b] = ACTIONS(917), - [sym_filesize_unit] = ACTIONS(917), - [sym_duration_unit] = ACTIONS(919), - [anon_sym_0o] = ACTIONS(917), - [anon_sym_0x] = ACTIONS(917), - [sym_val_date] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(917), - [sym__str_single_quotes] = ACTIONS(917), - [sym__str_back_ticks] = ACTIONS(917), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(917), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(917), - [aux_sym_unquoted_token5] = ACTIONS(917), + [1507] = { + [sym_comment] = STATE(1507), + [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_COMMA] = ACTIONS(1211), + [anon_sym_RBRACK] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(1211), + [anon_sym_DOLLAR] = ACTIONS(1211), + [anon_sym_GT] = ACTIONS(1211), + [anon_sym_DASH_DASH] = ACTIONS(1211), + [anon_sym_DASH] = ACTIONS(1211), + [anon_sym_in] = ACTIONS(1211), + [anon_sym_LBRACE] = ACTIONS(1211), + [anon_sym_DOT_DOT] = ACTIONS(1211), + [anon_sym_STAR] = ACTIONS(1211), + [anon_sym_STAR_STAR] = ACTIONS(1211), + [anon_sym_PLUS_PLUS] = ACTIONS(1211), + [anon_sym_SLASH] = ACTIONS(1211), + [anon_sym_mod] = ACTIONS(1211), + [anon_sym_SLASH_SLASH] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1211), + [anon_sym_bit_DASHshl] = ACTIONS(1211), + [anon_sym_bit_DASHshr] = ACTIONS(1211), + [anon_sym_EQ_EQ] = ACTIONS(1211), + [anon_sym_BANG_EQ] = ACTIONS(1211), + [anon_sym_LT2] = ACTIONS(1211), + [anon_sym_LT_EQ] = ACTIONS(1211), + [anon_sym_GT_EQ] = ACTIONS(1211), + [anon_sym_not_DASHin] = ACTIONS(1211), + [anon_sym_starts_DASHwith] = ACTIONS(1211), + [anon_sym_ends_DASHwith] = ACTIONS(1211), + [anon_sym_EQ_TILDE] = ACTIONS(1211), + [anon_sym_BANG_TILDE] = ACTIONS(1211), + [anon_sym_bit_DASHand] = ACTIONS(1211), + [anon_sym_bit_DASHxor] = ACTIONS(1211), + [anon_sym_bit_DASHor] = ACTIONS(1211), + [anon_sym_and] = ACTIONS(1211), + [anon_sym_xor] = ACTIONS(1211), + [anon_sym_or] = ACTIONS(1211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1211), + [anon_sym_DOT_DOT_LT] = ACTIONS(1211), + [anon_sym_null] = ACTIONS(1211), + [anon_sym_true] = ACTIONS(1211), + [anon_sym_false] = ACTIONS(1211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1211), + [aux_sym__val_number_decimal_token2] = ACTIONS(1211), + [anon_sym_DOT2] = ACTIONS(1211), + [aux_sym__val_number_decimal_token3] = ACTIONS(1211), + [aux_sym__val_number_token1] = ACTIONS(1211), + [aux_sym__val_number_token2] = ACTIONS(1211), + [aux_sym__val_number_token3] = ACTIONS(1211), + [aux_sym__val_number_token4] = ACTIONS(1211), + [aux_sym__val_number_token5] = ACTIONS(1211), + [aux_sym__val_number_token6] = ACTIONS(1211), + [anon_sym_0b] = ACTIONS(1211), + [anon_sym_0o] = ACTIONS(1211), + [anon_sym_0x] = ACTIONS(1211), + [sym_val_date] = ACTIONS(1211), + [anon_sym_DQUOTE] = ACTIONS(1211), + [sym__str_single_quotes] = ACTIONS(1211), + [sym__str_back_ticks] = ACTIONS(1211), + [sym__entry_separator] = ACTIONS(1213), + [anon_sym_err_GT] = ACTIONS(1211), + [anon_sym_out_GT] = ACTIONS(1211), + [anon_sym_e_GT] = ACTIONS(1211), + [anon_sym_o_GT] = ACTIONS(1211), + [anon_sym_err_PLUSout_GT] = ACTIONS(1211), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1211), + [anon_sym_o_PLUSe_GT] = ACTIONS(1211), + [anon_sym_e_PLUSo_GT] = ACTIONS(1211), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1211), [anon_sym_POUND] = ACTIONS(113), }, - [1304] = { - [sym__immediate_decimal] = STATE(10460), - [sym_comment] = STATE(1304), - [ts_builtin_sym_end] = ACTIONS(938), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_error] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_where] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [aux_sym__immediate_decimal_token1] = ACTIONS(1045), - [aux_sym__immediate_decimal_token3] = ACTIONS(1045), - [aux_sym__immediate_decimal_token4] = ACTIONS(1047), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [aux_sym_unquoted_token4] = ACTIONS(3682), + [1508] = { + [sym_comment] = STATE(1508), + [anon_sym_LBRACK] = ACTIONS(1155), + [anon_sym_COMMA] = ACTIONS(1155), + [anon_sym_RBRACK] = ACTIONS(1155), + [anon_sym_LPAREN] = ACTIONS(1155), + [anon_sym_DOLLAR] = ACTIONS(1155), + [anon_sym_GT] = ACTIONS(1155), + [anon_sym_DASH_DASH] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_in] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_DOT_DOT] = ACTIONS(1155), + [anon_sym_STAR] = ACTIONS(1155), + [anon_sym_STAR_STAR] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(1155), + [anon_sym_mod] = ACTIONS(1155), + [anon_sym_SLASH_SLASH] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_bit_DASHshl] = ACTIONS(1155), + [anon_sym_bit_DASHshr] = ACTIONS(1155), + [anon_sym_EQ_EQ] = ACTIONS(1155), + [anon_sym_BANG_EQ] = ACTIONS(1155), + [anon_sym_LT2] = ACTIONS(1155), + [anon_sym_LT_EQ] = ACTIONS(1155), + [anon_sym_GT_EQ] = ACTIONS(1155), + [anon_sym_not_DASHin] = ACTIONS(1155), + [anon_sym_starts_DASHwith] = ACTIONS(1155), + [anon_sym_ends_DASHwith] = ACTIONS(1155), + [anon_sym_EQ_TILDE] = ACTIONS(1155), + [anon_sym_BANG_TILDE] = ACTIONS(1155), + [anon_sym_bit_DASHand] = ACTIONS(1155), + [anon_sym_bit_DASHxor] = ACTIONS(1155), + [anon_sym_bit_DASHor] = ACTIONS(1155), + [anon_sym_and] = ACTIONS(1155), + [anon_sym_xor] = ACTIONS(1155), + [anon_sym_or] = ACTIONS(1155), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1155), + [anon_sym_DOT_DOT_LT] = ACTIONS(1155), + [anon_sym_null] = ACTIONS(1155), + [anon_sym_true] = ACTIONS(1155), + [anon_sym_false] = ACTIONS(1155), + [aux_sym__val_number_decimal_token1] = ACTIONS(1155), + [aux_sym__val_number_decimal_token2] = ACTIONS(1155), + [anon_sym_DOT2] = ACTIONS(1155), + [aux_sym__val_number_decimal_token3] = ACTIONS(1155), + [aux_sym__val_number_token1] = ACTIONS(1155), + [aux_sym__val_number_token2] = ACTIONS(1155), + [aux_sym__val_number_token3] = ACTIONS(1155), + [aux_sym__val_number_token4] = ACTIONS(1155), + [aux_sym__val_number_token5] = ACTIONS(1155), + [aux_sym__val_number_token6] = ACTIONS(1155), + [anon_sym_0b] = ACTIONS(1155), + [anon_sym_0o] = ACTIONS(1155), + [anon_sym_0x] = ACTIONS(1155), + [sym_val_date] = ACTIONS(1155), + [anon_sym_DQUOTE] = ACTIONS(1155), + [sym__str_single_quotes] = ACTIONS(1155), + [sym__str_back_ticks] = ACTIONS(1155), + [sym__entry_separator] = ACTIONS(1157), + [anon_sym_err_GT] = ACTIONS(1155), + [anon_sym_out_GT] = ACTIONS(1155), + [anon_sym_e_GT] = ACTIONS(1155), + [anon_sym_o_GT] = ACTIONS(1155), + [anon_sym_err_PLUSout_GT] = ACTIONS(1155), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1155), + [anon_sym_o_PLUSe_GT] = ACTIONS(1155), + [anon_sym_e_PLUSo_GT] = ACTIONS(1155), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1155), [anon_sym_POUND] = ACTIONS(113), }, - [1305] = { - [sym__command_name] = STATE(2875), - [sym_scope_pattern] = STATE(2876), - [sym_wild_card] = STATE(2878), - [sym_command_list] = STATE(2884), - [sym_val_string] = STATE(2800), - [sym__str_double_quotes] = STATE(2793), - [sym_comment] = STATE(1305), - [ts_builtin_sym_end] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3622), - [anon_sym_alias] = ACTIONS(3622), - [anon_sym_let] = ACTIONS(3622), - [anon_sym_let_DASHenv] = ACTIONS(3622), - [anon_sym_mut] = ACTIONS(3622), - [anon_sym_const] = ACTIONS(3622), - [anon_sym_SEMI] = ACTIONS(3622), - [sym_cmd_identifier] = ACTIONS(3776), - [anon_sym_LF] = ACTIONS(3626), - [anon_sym_def] = ACTIONS(3622), - [anon_sym_export_DASHenv] = ACTIONS(3622), - [anon_sym_extern] = ACTIONS(3622), - [anon_sym_module] = ACTIONS(3622), - [anon_sym_use] = ACTIONS(3622), - [anon_sym_LBRACK] = ACTIONS(3778), - [anon_sym_LPAREN] = ACTIONS(3622), - [anon_sym_DOLLAR] = ACTIONS(3622), - [anon_sym_error] = ACTIONS(3622), - [anon_sym_DASH] = ACTIONS(3622), - [anon_sym_break] = ACTIONS(3622), - [anon_sym_continue] = ACTIONS(3622), - [anon_sym_for] = ACTIONS(3622), - [anon_sym_loop] = ACTIONS(3622), - [anon_sym_while] = ACTIONS(3622), - [anon_sym_do] = ACTIONS(3622), - [anon_sym_if] = ACTIONS(3622), - [anon_sym_match] = ACTIONS(3622), - [anon_sym_LBRACE] = ACTIONS(3622), - [anon_sym_DOT_DOT] = ACTIONS(3622), - [anon_sym_try] = ACTIONS(3622), - [anon_sym_return] = ACTIONS(3622), - [anon_sym_source] = ACTIONS(3622), - [anon_sym_source_DASHenv] = ACTIONS(3622), - [anon_sym_register] = ACTIONS(3622), - [anon_sym_hide] = ACTIONS(3622), - [anon_sym_hide_DASHenv] = ACTIONS(3622), - [anon_sym_overlay] = ACTIONS(3622), - [anon_sym_STAR] = ACTIONS(3780), - [anon_sym_where] = ACTIONS(3622), - [anon_sym_not] = ACTIONS(3622), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3622), - [anon_sym_DOT_DOT_LT] = ACTIONS(3622), - [anon_sym_null] = ACTIONS(3622), - [anon_sym_true] = ACTIONS(3622), - [anon_sym_false] = ACTIONS(3622), - [aux_sym__val_number_decimal_token1] = ACTIONS(3622), - [aux_sym__val_number_decimal_token2] = ACTIONS(3622), - [anon_sym_DOT2] = ACTIONS(3622), - [aux_sym__val_number_decimal_token3] = ACTIONS(3622), - [aux_sym__val_number_token1] = ACTIONS(3622), - [aux_sym__val_number_token2] = ACTIONS(3622), - [aux_sym__val_number_token3] = ACTIONS(3622), - [aux_sym__val_number_token4] = ACTIONS(3622), - [aux_sym__val_number_token5] = ACTIONS(3622), - [aux_sym__val_number_token6] = ACTIONS(3622), - [anon_sym_0b] = ACTIONS(3622), - [anon_sym_0o] = ACTIONS(3622), - [anon_sym_0x] = ACTIONS(3622), - [sym_val_date] = ACTIONS(3622), - [anon_sym_DQUOTE] = ACTIONS(3782), - [sym__str_single_quotes] = ACTIONS(3784), - [sym__str_back_ticks] = ACTIONS(3784), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3622), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3622), - [anon_sym_CARET] = ACTIONS(3622), + [1509] = { + [sym_comment] = STATE(1509), + [anon_sym_LBRACK] = ACTIONS(1215), + [anon_sym_COMMA] = ACTIONS(1215), + [anon_sym_RBRACK] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1215), + [anon_sym_DOLLAR] = ACTIONS(1215), + [anon_sym_GT] = ACTIONS(1215), + [anon_sym_DASH_DASH] = ACTIONS(1215), + [anon_sym_DASH] = ACTIONS(1215), + [anon_sym_in] = ACTIONS(1215), + [anon_sym_LBRACE] = ACTIONS(1215), + [anon_sym_DOT_DOT] = ACTIONS(1215), + [anon_sym_STAR] = ACTIONS(1215), + [anon_sym_STAR_STAR] = ACTIONS(1215), + [anon_sym_PLUS_PLUS] = ACTIONS(1215), + [anon_sym_SLASH] = ACTIONS(1215), + [anon_sym_mod] = ACTIONS(1215), + [anon_sym_SLASH_SLASH] = ACTIONS(1215), + [anon_sym_PLUS] = ACTIONS(1215), + [anon_sym_bit_DASHshl] = ACTIONS(1215), + [anon_sym_bit_DASHshr] = ACTIONS(1215), + [anon_sym_EQ_EQ] = ACTIONS(1215), + [anon_sym_BANG_EQ] = ACTIONS(1215), + [anon_sym_LT2] = ACTIONS(1215), + [anon_sym_LT_EQ] = ACTIONS(1215), + [anon_sym_GT_EQ] = ACTIONS(1215), + [anon_sym_not_DASHin] = ACTIONS(1215), + [anon_sym_starts_DASHwith] = ACTIONS(1215), + [anon_sym_ends_DASHwith] = ACTIONS(1215), + [anon_sym_EQ_TILDE] = ACTIONS(1215), + [anon_sym_BANG_TILDE] = ACTIONS(1215), + [anon_sym_bit_DASHand] = ACTIONS(1215), + [anon_sym_bit_DASHxor] = ACTIONS(1215), + [anon_sym_bit_DASHor] = ACTIONS(1215), + [anon_sym_and] = ACTIONS(1215), + [anon_sym_xor] = ACTIONS(1215), + [anon_sym_or] = ACTIONS(1215), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1215), + [anon_sym_DOT_DOT_LT] = ACTIONS(1215), + [anon_sym_null] = ACTIONS(1215), + [anon_sym_true] = ACTIONS(1215), + [anon_sym_false] = ACTIONS(1215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1215), + [aux_sym__val_number_decimal_token2] = ACTIONS(1215), + [anon_sym_DOT2] = ACTIONS(1215), + [aux_sym__val_number_decimal_token3] = ACTIONS(1215), + [aux_sym__val_number_token1] = ACTIONS(1215), + [aux_sym__val_number_token2] = ACTIONS(1215), + [aux_sym__val_number_token3] = ACTIONS(1215), + [aux_sym__val_number_token4] = ACTIONS(1215), + [aux_sym__val_number_token5] = ACTIONS(1215), + [aux_sym__val_number_token6] = ACTIONS(1215), + [anon_sym_0b] = ACTIONS(1215), + [anon_sym_0o] = ACTIONS(1215), + [anon_sym_0x] = ACTIONS(1215), + [sym_val_date] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1215), + [sym__str_single_quotes] = ACTIONS(1215), + [sym__str_back_ticks] = ACTIONS(1215), + [sym__entry_separator] = ACTIONS(1217), + [anon_sym_err_GT] = ACTIONS(1215), + [anon_sym_out_GT] = ACTIONS(1215), + [anon_sym_e_GT] = ACTIONS(1215), + [anon_sym_o_GT] = ACTIONS(1215), + [anon_sym_err_PLUSout_GT] = ACTIONS(1215), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1215), + [anon_sym_o_PLUSe_GT] = ACTIONS(1215), + [anon_sym_e_PLUSo_GT] = ACTIONS(1215), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1215), [anon_sym_POUND] = ACTIONS(113), }, - [1306] = { - [sym_comment] = STATE(1306), - [anon_sym_LBRACK] = ACTIONS(911), - [anon_sym_COMMA] = ACTIONS(911), - [anon_sym_LPAREN] = ACTIONS(911), - [anon_sym_DOLLAR] = ACTIONS(911), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(911), - [anon_sym_RBRACE] = ACTIONS(911), - [anon_sym__] = ACTIONS(909), - [anon_sym_DOT_DOT] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(911), - [anon_sym_PLUS_PLUS] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(911), - [anon_sym_SLASH_SLASH] = ACTIONS(911), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(911), - [anon_sym_bit_DASHshr] = ACTIONS(911), - [anon_sym_EQ_EQ] = ACTIONS(911), - [anon_sym_BANG_EQ] = ACTIONS(911), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(911), - [anon_sym_GT_EQ] = ACTIONS(911), - [anon_sym_not_DASHin] = ACTIONS(911), - [anon_sym_starts_DASHwith] = ACTIONS(911), - [anon_sym_ends_DASHwith] = ACTIONS(911), - [anon_sym_EQ_TILDE] = ACTIONS(911), - [anon_sym_BANG_TILDE] = ACTIONS(911), - [anon_sym_bit_DASHand] = ACTIONS(911), - [anon_sym_bit_DASHxor] = ACTIONS(911), - [anon_sym_bit_DASHor] = ACTIONS(911), - [anon_sym_and] = ACTIONS(911), - [anon_sym_xor] = ACTIONS(911), - [anon_sym_or] = ACTIONS(911), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [anon_sym_null] = ACTIONS(911), - [anon_sym_true] = ACTIONS(911), - [anon_sym_false] = ACTIONS(911), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(911), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(911), - [aux_sym__val_number_token1] = ACTIONS(911), - [aux_sym__val_number_token2] = ACTIONS(911), - [aux_sym__val_number_token3] = ACTIONS(911), - [aux_sym__val_number_token4] = ACTIONS(911), - [aux_sym__val_number_token5] = ACTIONS(911), - [aux_sym__val_number_token6] = ACTIONS(911), - [anon_sym_0b] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(911), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(911), - [anon_sym_DQUOTE] = ACTIONS(911), - [sym__str_single_quotes] = ACTIONS(911), - [sym__str_back_ticks] = ACTIONS(911), - [anon_sym_err_GT] = ACTIONS(911), - [anon_sym_out_GT] = ACTIONS(911), - [anon_sym_e_GT] = ACTIONS(911), - [anon_sym_o_GT] = ACTIONS(911), - [anon_sym_err_PLUSout_GT] = ACTIONS(911), - [anon_sym_out_PLUSerr_GT] = ACTIONS(911), - [anon_sym_o_PLUSe_GT] = ACTIONS(911), - [anon_sym_e_PLUSo_GT] = ACTIONS(911), - [aux_sym_unquoted_token1] = ACTIONS(909), - [anon_sym_POUND] = ACTIONS(3), + [1510] = { + [sym_comment] = STATE(1510), + [anon_sym_LBRACK] = ACTIONS(1033), + [anon_sym_COMMA] = ACTIONS(1033), + [anon_sym_RBRACK] = ACTIONS(1033), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1033), + [anon_sym_in] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_DOT_DOT] = ACTIONS(1033), + [anon_sym_STAR] = ACTIONS(1033), + [anon_sym_STAR_STAR] = ACTIONS(1033), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_SLASH] = ACTIONS(1033), + [anon_sym_mod] = ACTIONS(1033), + [anon_sym_SLASH_SLASH] = ACTIONS(1033), + [anon_sym_PLUS] = ACTIONS(1033), + [anon_sym_bit_DASHshl] = ACTIONS(1033), + [anon_sym_bit_DASHshr] = ACTIONS(1033), + [anon_sym_EQ_EQ] = ACTIONS(1033), + [anon_sym_BANG_EQ] = ACTIONS(1033), + [anon_sym_LT2] = ACTIONS(1033), + [anon_sym_LT_EQ] = ACTIONS(1033), + [anon_sym_GT_EQ] = ACTIONS(1033), + [anon_sym_not_DASHin] = ACTIONS(1033), + [anon_sym_starts_DASHwith] = ACTIONS(1033), + [anon_sym_ends_DASHwith] = ACTIONS(1033), + [anon_sym_EQ_TILDE] = ACTIONS(1033), + [anon_sym_BANG_TILDE] = ACTIONS(1033), + [anon_sym_bit_DASHand] = ACTIONS(1033), + [anon_sym_bit_DASHxor] = ACTIONS(1033), + [anon_sym_bit_DASHor] = ACTIONS(1033), + [anon_sym_and] = ACTIONS(1033), + [anon_sym_xor] = ACTIONS(1033), + [anon_sym_or] = ACTIONS(1033), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1033), + [anon_sym_DOT_DOT_LT] = ACTIONS(1033), + [anon_sym_null] = ACTIONS(1033), + [anon_sym_true] = ACTIONS(1033), + [anon_sym_false] = ACTIONS(1033), + [aux_sym__val_number_decimal_token1] = ACTIONS(1033), + [aux_sym__val_number_decimal_token2] = ACTIONS(1033), + [anon_sym_DOT2] = ACTIONS(1033), + [aux_sym__val_number_decimal_token3] = ACTIONS(1033), + [aux_sym__val_number_token1] = ACTIONS(1033), + [aux_sym__val_number_token2] = ACTIONS(1033), + [aux_sym__val_number_token3] = ACTIONS(1033), + [aux_sym__val_number_token4] = ACTIONS(1033), + [aux_sym__val_number_token5] = ACTIONS(1033), + [aux_sym__val_number_token6] = ACTIONS(1033), + [anon_sym_0b] = ACTIONS(1033), + [anon_sym_0o] = ACTIONS(1033), + [anon_sym_0x] = ACTIONS(1033), + [sym_val_date] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [sym__str_single_quotes] = ACTIONS(1033), + [sym__str_back_ticks] = ACTIONS(1033), + [sym__entry_separator] = ACTIONS(1035), + [anon_sym_err_GT] = ACTIONS(1033), + [anon_sym_out_GT] = ACTIONS(1033), + [anon_sym_e_GT] = ACTIONS(1033), + [anon_sym_o_GT] = ACTIONS(1033), + [anon_sym_err_PLUSout_GT] = ACTIONS(1033), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1033), + [anon_sym_o_PLUSe_GT] = ACTIONS(1033), + [anon_sym_e_PLUSo_GT] = ACTIONS(1033), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1033), + [anon_sym_POUND] = ACTIONS(113), }, - [1307] = { - [sym_comment] = STATE(1307), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_COMMA] = ACTIONS(1065), - [anon_sym_LPAREN] = ACTIONS(1065), - [anon_sym_DOLLAR] = ACTIONS(1065), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(1065), - [anon_sym_RBRACE] = ACTIONS(1065), - [anon_sym__] = ACTIONS(1063), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_QMARK2] = ACTIONS(1065), - [anon_sym_STAR_STAR] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_SLASH] = ACTIONS(1063), - [anon_sym_mod] = ACTIONS(1065), - [anon_sym_SLASH_SLASH] = ACTIONS(1065), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_bit_DASHshl] = ACTIONS(1065), - [anon_sym_bit_DASHshr] = ACTIONS(1065), - [anon_sym_EQ_EQ] = ACTIONS(1065), - [anon_sym_BANG_EQ] = ACTIONS(1065), - [anon_sym_LT2] = ACTIONS(1063), - [anon_sym_LT_EQ] = ACTIONS(1065), - [anon_sym_GT_EQ] = ACTIONS(1065), - [anon_sym_not_DASHin] = ACTIONS(1065), - [anon_sym_starts_DASHwith] = ACTIONS(1065), - [anon_sym_ends_DASHwith] = ACTIONS(1065), - [anon_sym_EQ_TILDE] = ACTIONS(1065), - [anon_sym_BANG_TILDE] = ACTIONS(1065), - [anon_sym_bit_DASHand] = ACTIONS(1065), - [anon_sym_bit_DASHxor] = ACTIONS(1065), - [anon_sym_bit_DASHor] = ACTIONS(1065), - [anon_sym_and] = ACTIONS(1065), - [anon_sym_xor] = ACTIONS(1065), - [anon_sym_or] = ACTIONS(1065), - [anon_sym_DOT_DOT2] = ACTIONS(1063), - [anon_sym_DOT] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1063), - [anon_sym_DOT_DOT_LT] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1065), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1065), - [anon_sym_null] = ACTIONS(1065), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [aux_sym__val_number_decimal_token1] = ACTIONS(1063), - [aux_sym__val_number_decimal_token2] = ACTIONS(1065), - [anon_sym_DOT2] = ACTIONS(1063), - [aux_sym__val_number_decimal_token3] = ACTIONS(1065), - [aux_sym__val_number_token1] = ACTIONS(1065), - [aux_sym__val_number_token2] = ACTIONS(1065), - [aux_sym__val_number_token3] = ACTIONS(1065), - [aux_sym__val_number_token4] = ACTIONS(1065), - [aux_sym__val_number_token5] = ACTIONS(1065), - [aux_sym__val_number_token6] = ACTIONS(1065), - [anon_sym_0b] = ACTIONS(1063), - [anon_sym_0o] = ACTIONS(1063), - [anon_sym_0x] = ACTIONS(1063), - [sym_val_date] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(1065), - [sym__str_single_quotes] = ACTIONS(1065), - [sym__str_back_ticks] = ACTIONS(1065), - [anon_sym_err_GT] = ACTIONS(1065), - [anon_sym_out_GT] = ACTIONS(1065), - [anon_sym_e_GT] = ACTIONS(1065), - [anon_sym_o_GT] = ACTIONS(1065), - [anon_sym_err_PLUSout_GT] = ACTIONS(1065), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1065), - [anon_sym_o_PLUSe_GT] = ACTIONS(1065), - [anon_sym_e_PLUSo_GT] = ACTIONS(1065), - [aux_sym_unquoted_token1] = ACTIONS(1063), - [anon_sym_POUND] = ACTIONS(3), + [1511] = { + [sym_comment] = STATE(1511), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_COMMA] = ACTIONS(1020), + [anon_sym_RBRACK] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_GT] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1020), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_in] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_DOT_DOT] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_STAR_STAR] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1020), + [anon_sym_SLASH] = ACTIONS(1020), + [anon_sym_mod] = ACTIONS(1020), + [anon_sym_SLASH_SLASH] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_bit_DASHshl] = ACTIONS(1020), + [anon_sym_bit_DASHshr] = ACTIONS(1020), + [anon_sym_EQ_EQ] = ACTIONS(1020), + [anon_sym_BANG_EQ] = ACTIONS(1020), + [anon_sym_LT2] = ACTIONS(1020), + [anon_sym_LT_EQ] = ACTIONS(1020), + [anon_sym_GT_EQ] = ACTIONS(1020), + [anon_sym_not_DASHin] = ACTIONS(1020), + [anon_sym_starts_DASHwith] = ACTIONS(1020), + [anon_sym_ends_DASHwith] = ACTIONS(1020), + [anon_sym_EQ_TILDE] = ACTIONS(1020), + [anon_sym_BANG_TILDE] = ACTIONS(1020), + [anon_sym_bit_DASHand] = ACTIONS(1020), + [anon_sym_bit_DASHxor] = ACTIONS(1020), + [anon_sym_bit_DASHor] = ACTIONS(1020), + [anon_sym_and] = ACTIONS(1020), + [anon_sym_xor] = ACTIONS(1020), + [anon_sym_or] = ACTIONS(1020), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1020), + [anon_sym_DOT_DOT_LT] = ACTIONS(1020), + [anon_sym_null] = ACTIONS(1020), + [anon_sym_true] = ACTIONS(1020), + [anon_sym_false] = ACTIONS(1020), + [aux_sym__val_number_decimal_token1] = ACTIONS(1020), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [anon_sym_DOT2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1020), + [aux_sym__val_number_token1] = ACTIONS(1020), + [aux_sym__val_number_token2] = ACTIONS(1020), + [aux_sym__val_number_token3] = ACTIONS(1020), + [aux_sym__val_number_token4] = ACTIONS(1020), + [aux_sym__val_number_token5] = ACTIONS(1020), + [aux_sym__val_number_token6] = ACTIONS(1020), + [anon_sym_0b] = ACTIONS(1020), + [anon_sym_0o] = ACTIONS(1020), + [anon_sym_0x] = ACTIONS(1020), + [sym_val_date] = ACTIONS(1020), + [anon_sym_DQUOTE] = ACTIONS(1020), + [sym__str_single_quotes] = ACTIONS(1020), + [sym__str_back_ticks] = ACTIONS(1020), + [sym__entry_separator] = ACTIONS(1022), + [anon_sym_err_GT] = ACTIONS(1020), + [anon_sym_out_GT] = ACTIONS(1020), + [anon_sym_e_GT] = ACTIONS(1020), + [anon_sym_o_GT] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT] = ACTIONS(1020), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1020), + [anon_sym_POUND] = ACTIONS(113), }, - [1308] = { - [sym_comment] = STATE(1308), - [anon_sym_LBRACK] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(1072), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_DOLLAR] = ACTIONS(1072), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_in] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1072), - [anon_sym_RBRACE] = ACTIONS(1072), - [anon_sym__] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(3774), - [anon_sym_STAR_STAR] = ACTIONS(1072), - [anon_sym_PLUS_PLUS] = ACTIONS(1072), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_mod] = ACTIONS(1072), - [anon_sym_SLASH_SLASH] = ACTIONS(1072), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_bit_DASHshl] = ACTIONS(1072), - [anon_sym_bit_DASHshr] = ACTIONS(1072), - [anon_sym_EQ_EQ] = ACTIONS(1072), - [anon_sym_BANG_EQ] = ACTIONS(1072), - [anon_sym_LT2] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1072), - [anon_sym_GT_EQ] = ACTIONS(1072), - [anon_sym_not_DASHin] = ACTIONS(1072), - [anon_sym_starts_DASHwith] = ACTIONS(1072), - [anon_sym_ends_DASHwith] = ACTIONS(1072), - [anon_sym_EQ_TILDE] = ACTIONS(1072), - [anon_sym_BANG_TILDE] = ACTIONS(1072), - [anon_sym_bit_DASHand] = ACTIONS(1072), - [anon_sym_bit_DASHxor] = ACTIONS(1072), - [anon_sym_bit_DASHor] = ACTIONS(1072), - [anon_sym_and] = ACTIONS(1072), - [anon_sym_xor] = ACTIONS(1072), - [anon_sym_or] = ACTIONS(1072), - [anon_sym_DOT_DOT2] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1072), - [anon_sym_null] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1072), - [anon_sym_false] = ACTIONS(1072), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1072), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1072), - [aux_sym__val_number_token1] = ACTIONS(1072), - [aux_sym__val_number_token2] = ACTIONS(1072), - [aux_sym__val_number_token3] = ACTIONS(1072), - [aux_sym__val_number_token4] = ACTIONS(1072), - [aux_sym__val_number_token5] = ACTIONS(1072), - [aux_sym__val_number_token6] = ACTIONS(1072), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1072), - [anon_sym_DQUOTE] = ACTIONS(1072), - [sym__str_single_quotes] = ACTIONS(1072), - [sym__str_back_ticks] = ACTIONS(1072), - [anon_sym_err_GT] = ACTIONS(1072), - [anon_sym_out_GT] = ACTIONS(1072), - [anon_sym_e_GT] = ACTIONS(1072), - [anon_sym_o_GT] = ACTIONS(1072), - [anon_sym_err_PLUSout_GT] = ACTIONS(1072), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1072), - [anon_sym_o_PLUSe_GT] = ACTIONS(1072), - [anon_sym_e_PLUSo_GT] = ACTIONS(1072), - [aux_sym_unquoted_token1] = ACTIONS(1070), + [1512] = { + [sym__expression] = STATE(6939), + [sym_expr_unary] = STATE(5409), + [sym__expr_unary_minus] = STATE(5410), + [sym_expr_binary] = STATE(5409), + [sym__expr_binary_expression] = STATE(6366), + [sym_expr_parenthesized] = STATE(4635), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5409), + [sym_val_nothing] = STATE(5350), + [sym_val_bool] = STATE(5350), + [sym_val_variable] = STATE(4717), + [sym__var] = STATE(4193), + [sym_val_number] = STATE(5350), + [sym__val_number_decimal] = STATE(4266), + [sym__val_number] = STATE(5351), + [sym_val_duration] = STATE(5350), + [sym_val_filesize] = STATE(5350), + [sym_val_binary] = STATE(5350), + [sym_val_string] = STATE(5350), + [sym__str_double_quotes] = STATE(5502), + [sym_val_interpolated] = STATE(5350), + [sym__inter_single_quotes] = STATE(5420), + [sym__inter_double_quotes] = STATE(5421), + [sym_val_list] = STATE(5350), + [sym_val_record] = STATE(5350), + [sym_val_table] = STATE(5350), + [sym_val_closure] = STATE(5350), + [sym__flag] = STATE(7090), + [sym_short_flag] = STATE(8027), + [sym_long_flag] = STATE(8027), + [sym_long_flag_equals_value] = STATE(7909), + [sym_comment] = STATE(1512), + [anon_sym_SEMI] = ACTIONS(4931), + [anon_sym_LF] = ACTIONS(4933), + [anon_sym_LBRACK] = ACTIONS(4833), + [anon_sym_LPAREN] = ACTIONS(4835), + [anon_sym_RPAREN] = ACTIONS(4931), + [anon_sym_PIPE] = ACTIONS(4931), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_DASH_DASH] = ACTIONS(4837), + [anon_sym_DASH] = ACTIONS(4839), + [anon_sym_LBRACE] = ACTIONS(4841), + [anon_sym_RBRACE] = ACTIONS(4931), + [anon_sym_DOT_DOT] = ACTIONS(4843), + [anon_sym_not] = ACTIONS(4845), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4847), + [anon_sym_DOT_DOT_LT] = ACTIONS(4847), + [anon_sym_null] = ACTIONS(4849), + [anon_sym_true] = ACTIONS(4851), + [anon_sym_false] = ACTIONS(4851), + [aux_sym__val_number_decimal_token1] = ACTIONS(4853), + [aux_sym__val_number_decimal_token2] = ACTIONS(4853), + [anon_sym_DOT2] = ACTIONS(4855), + [aux_sym__val_number_decimal_token3] = ACTIONS(4857), + [aux_sym__val_number_token1] = ACTIONS(4859), + [aux_sym__val_number_token2] = ACTIONS(4859), + [aux_sym__val_number_token3] = ACTIONS(4859), + [aux_sym__val_number_token4] = ACTIONS(4859), + [aux_sym__val_number_token5] = ACTIONS(4859), + [aux_sym__val_number_token6] = ACTIONS(4859), + [anon_sym_0b] = ACTIONS(3080), + [anon_sym_0o] = ACTIONS(3082), + [anon_sym_0x] = ACTIONS(3082), + [sym_val_date] = ACTIONS(4861), + [anon_sym_DQUOTE] = ACTIONS(4863), + [sym__str_single_quotes] = ACTIONS(4865), + [sym__str_back_ticks] = ACTIONS(4865), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4867), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4869), + [anon_sym_POUND] = ACTIONS(113), + }, + [1513] = { + [sym__expression] = STATE(6939), + [sym_expr_unary] = STATE(5409), + [sym__expr_unary_minus] = STATE(5410), + [sym_expr_binary] = STATE(5409), + [sym__expr_binary_expression] = STATE(6366), + [sym_expr_parenthesized] = STATE(4635), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5409), + [sym_val_nothing] = STATE(5350), + [sym_val_bool] = STATE(5350), + [sym_val_variable] = STATE(4717), + [sym__var] = STATE(4193), + [sym_val_number] = STATE(5350), + [sym__val_number_decimal] = STATE(4266), + [sym__val_number] = STATE(5351), + [sym_val_duration] = STATE(5350), + [sym_val_filesize] = STATE(5350), + [sym_val_binary] = STATE(5350), + [sym_val_string] = STATE(5350), + [sym__str_double_quotes] = STATE(5502), + [sym_val_interpolated] = STATE(5350), + [sym__inter_single_quotes] = STATE(5420), + [sym__inter_double_quotes] = STATE(5421), + [sym_val_list] = STATE(5350), + [sym_val_record] = STATE(5350), + [sym_val_table] = STATE(5350), + [sym_val_closure] = STATE(5350), + [sym__flag] = STATE(1520), + [sym_short_flag] = STATE(4674), + [sym_long_flag] = STATE(4674), + [sym_long_flag_equals_value] = STATE(4714), + [sym_comment] = STATE(1513), + [anon_sym_SEMI] = ACTIONS(4931), + [anon_sym_LF] = ACTIONS(4933), + [anon_sym_LBRACK] = ACTIONS(4833), + [anon_sym_LPAREN] = ACTIONS(4835), + [anon_sym_RPAREN] = ACTIONS(4931), + [anon_sym_PIPE] = ACTIONS(4931), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_DASH_DASH] = ACTIONS(4875), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4841), + [anon_sym_RBRACE] = ACTIONS(4931), + [anon_sym_DOT_DOT] = ACTIONS(4843), + [anon_sym_not] = ACTIONS(4845), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4847), + [anon_sym_DOT_DOT_LT] = ACTIONS(4847), + [anon_sym_null] = ACTIONS(4849), + [anon_sym_true] = ACTIONS(4851), + [anon_sym_false] = ACTIONS(4851), + [aux_sym__val_number_decimal_token1] = ACTIONS(4853), + [aux_sym__val_number_decimal_token2] = ACTIONS(4853), + [anon_sym_DOT2] = ACTIONS(4855), + [aux_sym__val_number_decimal_token3] = ACTIONS(4857), + [aux_sym__val_number_token1] = ACTIONS(4859), + [aux_sym__val_number_token2] = ACTIONS(4859), + [aux_sym__val_number_token3] = ACTIONS(4859), + [aux_sym__val_number_token4] = ACTIONS(4859), + [aux_sym__val_number_token5] = ACTIONS(4859), + [aux_sym__val_number_token6] = ACTIONS(4859), + [anon_sym_0b] = ACTIONS(3080), + [anon_sym_0o] = ACTIONS(3082), + [anon_sym_0x] = ACTIONS(3082), + [sym_val_date] = ACTIONS(4861), + [anon_sym_DQUOTE] = ACTIONS(4863), + [sym__str_single_quotes] = ACTIONS(4865), + [sym__str_back_ticks] = ACTIONS(4865), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4867), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4869), + [anon_sym_POUND] = ACTIONS(113), + }, + [1514] = { + [sym_expr_unary] = STATE(5693), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5693), + [sym__expr_binary_expression] = STATE(5698), + [sym_expr_parenthesized] = STATE(5693), + [sym__val_range] = STATE(10091), + [sym__value] = STATE(5693), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5277), + [sym_val_variable] = STATE(5711), + [sym__var] = STATE(4948), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(4212), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_unquoted] = STATE(5699), + [sym__unquoted_anonymous_prefix] = STATE(10316), + [sym_comment] = STATE(1514), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(4935), + [anon_sym_DOLLAR] = ACTIONS(4937), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(4939), + [anon_sym_not] = ACTIONS(4652), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4941), + [anon_sym_DOT_DOT_LT] = ACTIONS(4941), + [anon_sym_null] = ACTIONS(4656), + [anon_sym_true] = ACTIONS(4658), + [anon_sym_false] = ACTIONS(4658), + [aux_sym__val_number_decimal_token1] = ACTIONS(4660), + [aux_sym__val_number_decimal_token2] = ACTIONS(4662), + [anon_sym_DOT2] = ACTIONS(4943), + [aux_sym__val_number_decimal_token3] = ACTIONS(4666), + [aux_sym__val_number_token1] = ACTIONS(207), + [aux_sym__val_number_token2] = ACTIONS(207), + [aux_sym__val_number_token3] = ACTIONS(207), + [aux_sym__val_number_token4] = ACTIONS(4945), + [aux_sym__val_number_token5] = ACTIONS(4945), + [aux_sym__val_number_token6] = ACTIONS(4945), + [anon_sym_0b] = ACTIONS(211), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(4670), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym__str_single_quotes] = ACTIONS(219), + [sym__str_back_ticks] = ACTIONS(219), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2800), [anon_sym_POUND] = ACTIONS(3), }, - [1309] = { - [sym_comment] = STATE(1309), - [anon_sym_LBRACK] = ACTIONS(919), - [anon_sym_COMMA] = ACTIONS(919), - [anon_sym_LPAREN] = ACTIONS(919), - [anon_sym_DOLLAR] = ACTIONS(919), - [anon_sym_GT] = ACTIONS(917), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_in] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(919), - [anon_sym_RBRACE] = ACTIONS(919), - [anon_sym__] = ACTIONS(917), - [anon_sym_DOT_DOT] = ACTIONS(917), - [anon_sym_STAR] = ACTIONS(917), - [anon_sym_STAR_STAR] = ACTIONS(919), - [anon_sym_PLUS_PLUS] = ACTIONS(919), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_mod] = ACTIONS(919), - [anon_sym_SLASH_SLASH] = ACTIONS(919), - [anon_sym_PLUS] = ACTIONS(917), - [anon_sym_bit_DASHshl] = ACTIONS(919), - [anon_sym_bit_DASHshr] = ACTIONS(919), - [anon_sym_EQ_EQ] = ACTIONS(919), - [anon_sym_BANG_EQ] = ACTIONS(919), - [anon_sym_LT2] = ACTIONS(917), - [anon_sym_LT_EQ] = ACTIONS(919), - [anon_sym_GT_EQ] = ACTIONS(919), - [anon_sym_not_DASHin] = ACTIONS(919), - [anon_sym_starts_DASHwith] = ACTIONS(919), - [anon_sym_ends_DASHwith] = ACTIONS(919), - [anon_sym_EQ_TILDE] = ACTIONS(919), - [anon_sym_BANG_TILDE] = ACTIONS(919), - [anon_sym_bit_DASHand] = ACTIONS(919), - [anon_sym_bit_DASHxor] = ACTIONS(919), - [anon_sym_bit_DASHor] = ACTIONS(919), - [anon_sym_and] = ACTIONS(919), - [anon_sym_xor] = ACTIONS(919), - [anon_sym_or] = ACTIONS(919), - [anon_sym_DOT_DOT2] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ] = ACTIONS(917), - [anon_sym_DOT_DOT_LT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(919), - [anon_sym_DOT_DOT_LT2] = ACTIONS(919), - [anon_sym_null] = ACTIONS(919), - [anon_sym_true] = ACTIONS(919), - [anon_sym_false] = ACTIONS(919), - [aux_sym__val_number_decimal_token1] = ACTIONS(917), - [aux_sym__val_number_decimal_token2] = ACTIONS(919), - [anon_sym_DOT2] = ACTIONS(917), - [aux_sym__val_number_decimal_token3] = ACTIONS(919), - [aux_sym__val_number_token1] = ACTIONS(919), - [aux_sym__val_number_token2] = ACTIONS(919), - [aux_sym__val_number_token3] = ACTIONS(919), - [aux_sym__val_number_token4] = ACTIONS(919), - [aux_sym__val_number_token5] = ACTIONS(919), - [aux_sym__val_number_token6] = ACTIONS(919), - [anon_sym_0b] = ACTIONS(917), - [sym_filesize_unit] = ACTIONS(917), - [sym_duration_unit] = ACTIONS(919), - [anon_sym_0o] = ACTIONS(917), - [anon_sym_0x] = ACTIONS(917), - [sym_val_date] = ACTIONS(919), - [anon_sym_DQUOTE] = ACTIONS(919), - [sym__str_single_quotes] = ACTIONS(919), - [sym__str_back_ticks] = ACTIONS(919), - [anon_sym_err_GT] = ACTIONS(919), - [anon_sym_out_GT] = ACTIONS(919), - [anon_sym_e_GT] = ACTIONS(919), - [anon_sym_o_GT] = ACTIONS(919), - [anon_sym_err_PLUSout_GT] = ACTIONS(919), - [anon_sym_out_PLUSerr_GT] = ACTIONS(919), - [anon_sym_o_PLUSe_GT] = ACTIONS(919), - [anon_sym_e_PLUSo_GT] = ACTIONS(919), - [aux_sym_unquoted_token1] = ACTIONS(917), + [1515] = { + [sym_expr_unary] = STATE(5693), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5693), + [sym__expr_binary_expression] = STATE(5700), + [sym_expr_parenthesized] = STATE(5693), + [sym__val_range] = STATE(10091), + [sym__value] = STATE(5693), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5277), + [sym_val_variable] = STATE(5711), + [sym__var] = STATE(4948), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(4212), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_unquoted] = STATE(5701), + [sym__unquoted_anonymous_prefix] = STATE(10316), + [sym_comment] = STATE(1515), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(4935), + [anon_sym_DOLLAR] = ACTIONS(4937), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(4939), + [anon_sym_not] = ACTIONS(4652), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4941), + [anon_sym_DOT_DOT_LT] = ACTIONS(4941), + [anon_sym_null] = ACTIONS(4656), + [anon_sym_true] = ACTIONS(4658), + [anon_sym_false] = ACTIONS(4658), + [aux_sym__val_number_decimal_token1] = ACTIONS(4660), + [aux_sym__val_number_decimal_token2] = ACTIONS(4662), + [anon_sym_DOT2] = ACTIONS(4943), + [aux_sym__val_number_decimal_token3] = ACTIONS(4666), + [aux_sym__val_number_token1] = ACTIONS(207), + [aux_sym__val_number_token2] = ACTIONS(207), + [aux_sym__val_number_token3] = ACTIONS(207), + [aux_sym__val_number_token4] = ACTIONS(4945), + [aux_sym__val_number_token5] = ACTIONS(4945), + [aux_sym__val_number_token6] = ACTIONS(4945), + [anon_sym_0b] = ACTIONS(211), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(4670), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym__str_single_quotes] = ACTIONS(219), + [sym__str_back_ticks] = ACTIONS(219), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2800), [anon_sym_POUND] = ACTIONS(3), }, - [1310] = { - [sym__command_name] = STATE(2875), - [sym_scope_pattern] = STATE(2914), - [sym_wild_card] = STATE(2878), - [sym_command_list] = STATE(2884), - [sym_val_string] = STATE(2800), - [sym__str_double_quotes] = STATE(2793), - [sym_comment] = STATE(1310), - [ts_builtin_sym_end] = ACTIONS(3702), - [anon_sym_export] = ACTIONS(3700), - [anon_sym_alias] = ACTIONS(3700), - [anon_sym_let] = ACTIONS(3700), - [anon_sym_let_DASHenv] = ACTIONS(3700), - [anon_sym_mut] = ACTIONS(3700), - [anon_sym_const] = ACTIONS(3700), - [anon_sym_SEMI] = ACTIONS(3700), - [sym_cmd_identifier] = ACTIONS(3776), - [anon_sym_LF] = ACTIONS(3702), - [anon_sym_def] = ACTIONS(3700), - [anon_sym_export_DASHenv] = ACTIONS(3700), - [anon_sym_extern] = ACTIONS(3700), - [anon_sym_module] = ACTIONS(3700), - [anon_sym_use] = ACTIONS(3700), - [anon_sym_LBRACK] = ACTIONS(3778), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_DOLLAR] = ACTIONS(3700), - [anon_sym_error] = ACTIONS(3700), - [anon_sym_DASH] = ACTIONS(3700), - [anon_sym_break] = ACTIONS(3700), - [anon_sym_continue] = ACTIONS(3700), - [anon_sym_for] = ACTIONS(3700), - [anon_sym_loop] = ACTIONS(3700), - [anon_sym_while] = ACTIONS(3700), - [anon_sym_do] = ACTIONS(3700), - [anon_sym_if] = ACTIONS(3700), - [anon_sym_match] = ACTIONS(3700), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_try] = ACTIONS(3700), - [anon_sym_return] = ACTIONS(3700), - [anon_sym_source] = ACTIONS(3700), - [anon_sym_source_DASHenv] = ACTIONS(3700), - [anon_sym_register] = ACTIONS(3700), - [anon_sym_hide] = ACTIONS(3700), - [anon_sym_hide_DASHenv] = ACTIONS(3700), - [anon_sym_overlay] = ACTIONS(3700), - [anon_sym_STAR] = ACTIONS(3780), - [anon_sym_where] = ACTIONS(3700), - [anon_sym_not] = ACTIONS(3700), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3700), - [anon_sym_DOT_DOT_LT] = ACTIONS(3700), - [anon_sym_null] = ACTIONS(3700), - [anon_sym_true] = ACTIONS(3700), - [anon_sym_false] = ACTIONS(3700), - [aux_sym__val_number_decimal_token1] = ACTIONS(3700), - [aux_sym__val_number_decimal_token2] = ACTIONS(3700), - [anon_sym_DOT2] = ACTIONS(3700), - [aux_sym__val_number_decimal_token3] = ACTIONS(3700), - [aux_sym__val_number_token1] = ACTIONS(3700), - [aux_sym__val_number_token2] = ACTIONS(3700), - [aux_sym__val_number_token3] = ACTIONS(3700), - [aux_sym__val_number_token4] = ACTIONS(3700), - [aux_sym__val_number_token5] = ACTIONS(3700), - [aux_sym__val_number_token6] = ACTIONS(3700), - [anon_sym_0b] = ACTIONS(3700), - [anon_sym_0o] = ACTIONS(3700), - [anon_sym_0x] = ACTIONS(3700), - [sym_val_date] = ACTIONS(3700), - [anon_sym_DQUOTE] = ACTIONS(3782), - [sym__str_single_quotes] = ACTIONS(3784), - [sym__str_back_ticks] = ACTIONS(3784), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3700), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3700), - [anon_sym_CARET] = ACTIONS(3700), + [1516] = { + [sym__expression] = STATE(6939), + [sym_expr_unary] = STATE(5409), + [sym__expr_unary_minus] = STATE(5410), + [sym_expr_binary] = STATE(5409), + [sym__expr_binary_expression] = STATE(6366), + [sym_expr_parenthesized] = STATE(4635), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5409), + [sym_val_nothing] = STATE(5350), + [sym_val_bool] = STATE(5350), + [sym_val_variable] = STATE(4717), + [sym__var] = STATE(4193), + [sym_val_number] = STATE(5350), + [sym__val_number_decimal] = STATE(4266), + [sym__val_number] = STATE(5351), + [sym_val_duration] = STATE(5350), + [sym_val_filesize] = STATE(5350), + [sym_val_binary] = STATE(5350), + [sym_val_string] = STATE(5350), + [sym__str_double_quotes] = STATE(5502), + [sym_val_interpolated] = STATE(5350), + [sym__inter_single_quotes] = STATE(5420), + [sym__inter_double_quotes] = STATE(5421), + [sym_val_list] = STATE(5350), + [sym_val_record] = STATE(5350), + [sym_val_table] = STATE(5350), + [sym_val_closure] = STATE(5350), + [sym__flag] = STATE(1522), + [sym_short_flag] = STATE(4674), + [sym_long_flag] = STATE(4674), + [sym_long_flag_equals_value] = STATE(4714), + [sym_comment] = STATE(1516), + [anon_sym_SEMI] = ACTIONS(4931), + [anon_sym_LF] = ACTIONS(4933), + [anon_sym_LBRACK] = ACTIONS(4833), + [anon_sym_LPAREN] = ACTIONS(4835), + [anon_sym_RPAREN] = ACTIONS(4931), + [anon_sym_PIPE] = ACTIONS(4931), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_DASH_DASH] = ACTIONS(4875), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4841), + [anon_sym_RBRACE] = ACTIONS(4931), + [anon_sym_DOT_DOT] = ACTIONS(4843), + [anon_sym_not] = ACTIONS(4845), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4847), + [anon_sym_DOT_DOT_LT] = ACTIONS(4847), + [anon_sym_null] = ACTIONS(4849), + [anon_sym_true] = ACTIONS(4851), + [anon_sym_false] = ACTIONS(4851), + [aux_sym__val_number_decimal_token1] = ACTIONS(4853), + [aux_sym__val_number_decimal_token2] = ACTIONS(4853), + [anon_sym_DOT2] = ACTIONS(4855), + [aux_sym__val_number_decimal_token3] = ACTIONS(4857), + [aux_sym__val_number_token1] = ACTIONS(4859), + [aux_sym__val_number_token2] = ACTIONS(4859), + [aux_sym__val_number_token3] = ACTIONS(4859), + [aux_sym__val_number_token4] = ACTIONS(4859), + [aux_sym__val_number_token5] = ACTIONS(4859), + [aux_sym__val_number_token6] = ACTIONS(4859), + [anon_sym_0b] = ACTIONS(3080), + [anon_sym_0o] = ACTIONS(3082), + [anon_sym_0x] = ACTIONS(3082), + [sym_val_date] = ACTIONS(4861), + [anon_sym_DQUOTE] = ACTIONS(4863), + [sym__str_single_quotes] = ACTIONS(4865), + [sym__str_back_ticks] = ACTIONS(4865), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4867), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4869), [anon_sym_POUND] = ACTIONS(113), }, - [1311] = { - [sym_comment] = STATE(1311), - [ts_builtin_sym_end] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(1059), - [anon_sym_alias] = ACTIONS(1059), - [anon_sym_let] = ACTIONS(1059), - [anon_sym_let_DASHenv] = ACTIONS(1059), - [anon_sym_mut] = ACTIONS(1059), - [anon_sym_const] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [sym_cmd_identifier] = ACTIONS(1059), - [anon_sym_LF] = ACTIONS(1061), - [anon_sym_def] = ACTIONS(1059), - [anon_sym_export_DASHenv] = ACTIONS(1059), - [anon_sym_extern] = ACTIONS(1059), - [anon_sym_module] = ACTIONS(1059), - [anon_sym_use] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_error] = ACTIONS(1059), - [anon_sym_DASH_DASH] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_break] = ACTIONS(1059), - [anon_sym_continue] = ACTIONS(1059), - [anon_sym_for] = ACTIONS(1059), - [anon_sym_loop] = ACTIONS(1059), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_do] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1059), - [anon_sym_match] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_try] = ACTIONS(1059), - [anon_sym_return] = ACTIONS(1059), - [anon_sym_source] = ACTIONS(1059), - [anon_sym_source_DASHenv] = ACTIONS(1059), - [anon_sym_register] = ACTIONS(1059), - [anon_sym_hide] = ACTIONS(1059), - [anon_sym_hide_DASHenv] = ACTIONS(1059), - [anon_sym_overlay] = ACTIONS(1059), - [anon_sym_as] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(1059), - [anon_sym_QMARK2] = ACTIONS(1059), - [anon_sym_not] = ACTIONS(1059), - [anon_sym_DOT_DOT2] = ACTIONS(1059), - [anon_sym_DOT] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1059), - [anon_sym_DOT_DOT_LT] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1061), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1061), - [anon_sym_null] = ACTIONS(1059), - [anon_sym_true] = ACTIONS(1059), - [anon_sym_false] = ACTIONS(1059), - [aux_sym__val_number_decimal_token1] = ACTIONS(1059), - [aux_sym__val_number_decimal_token2] = ACTIONS(1059), - [anon_sym_DOT2] = ACTIONS(1059), - [aux_sym__val_number_decimal_token3] = ACTIONS(1059), - [aux_sym__val_number_token1] = ACTIONS(1059), - [aux_sym__val_number_token2] = ACTIONS(1059), - [aux_sym__val_number_token3] = ACTIONS(1059), - [aux_sym__val_number_token4] = ACTIONS(1059), - [aux_sym__val_number_token5] = ACTIONS(1059), - [aux_sym__val_number_token6] = ACTIONS(1059), - [anon_sym_0b] = ACTIONS(1059), - [anon_sym_0o] = ACTIONS(1059), - [anon_sym_0x] = ACTIONS(1059), - [sym_val_date] = ACTIONS(1059), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym__str_single_quotes] = ACTIONS(1059), - [sym__str_back_ticks] = ACTIONS(1059), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1059), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1059), - [anon_sym_CARET] = ACTIONS(1059), - [anon_sym_POUND] = ACTIONS(113), + [1517] = { + [sym_expr_unary] = STATE(5693), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5693), + [sym__expr_binary_expression] = STATE(5702), + [sym_expr_parenthesized] = STATE(5693), + [sym__val_range] = STATE(10091), + [sym__value] = STATE(5693), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5277), + [sym_val_variable] = STATE(5711), + [sym__var] = STATE(4948), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(4212), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_unquoted] = STATE(5715), + [sym__unquoted_anonymous_prefix] = STATE(10316), + [sym_comment] = STATE(1517), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(4935), + [anon_sym_DOLLAR] = ACTIONS(4937), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(4939), + [anon_sym_not] = ACTIONS(4652), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4941), + [anon_sym_DOT_DOT_LT] = ACTIONS(4941), + [anon_sym_null] = ACTIONS(4656), + [anon_sym_true] = ACTIONS(4658), + [anon_sym_false] = ACTIONS(4658), + [aux_sym__val_number_decimal_token1] = ACTIONS(4660), + [aux_sym__val_number_decimal_token2] = ACTIONS(4662), + [anon_sym_DOT2] = ACTIONS(4943), + [aux_sym__val_number_decimal_token3] = ACTIONS(4666), + [aux_sym__val_number_token1] = ACTIONS(207), + [aux_sym__val_number_token2] = ACTIONS(207), + [aux_sym__val_number_token3] = ACTIONS(207), + [aux_sym__val_number_token4] = ACTIONS(4945), + [aux_sym__val_number_token5] = ACTIONS(4945), + [aux_sym__val_number_token6] = ACTIONS(4945), + [anon_sym_0b] = ACTIONS(211), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(4670), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym__str_single_quotes] = ACTIONS(219), + [sym__str_back_ticks] = ACTIONS(219), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2800), + [anon_sym_POUND] = ACTIONS(3), }, - [1312] = { - [sym_comment] = STATE(1312), - [ts_builtin_sym_end] = ACTIONS(1065), - [anon_sym_export] = ACTIONS(1063), - [anon_sym_alias] = ACTIONS(1063), - [anon_sym_let] = ACTIONS(1063), - [anon_sym_let_DASHenv] = ACTIONS(1063), - [anon_sym_mut] = ACTIONS(1063), - [anon_sym_const] = ACTIONS(1063), - [anon_sym_SEMI] = ACTIONS(1063), - [sym_cmd_identifier] = ACTIONS(1063), - [anon_sym_LF] = ACTIONS(1065), - [anon_sym_def] = ACTIONS(1063), - [anon_sym_export_DASHenv] = ACTIONS(1063), - [anon_sym_extern] = ACTIONS(1063), - [anon_sym_module] = ACTIONS(1063), - [anon_sym_use] = ACTIONS(1063), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_error] = ACTIONS(1063), - [anon_sym_DASH_DASH] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_break] = ACTIONS(1063), - [anon_sym_continue] = ACTIONS(1063), - [anon_sym_for] = ACTIONS(1063), - [anon_sym_loop] = ACTIONS(1063), - [anon_sym_while] = ACTIONS(1063), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_if] = ACTIONS(1063), - [anon_sym_match] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1063), - [anon_sym_return] = ACTIONS(1063), - [anon_sym_source] = ACTIONS(1063), - [anon_sym_source_DASHenv] = ACTIONS(1063), - [anon_sym_register] = ACTIONS(1063), - [anon_sym_hide] = ACTIONS(1063), - [anon_sym_hide_DASHenv] = ACTIONS(1063), - [anon_sym_overlay] = ACTIONS(1063), - [anon_sym_as] = ACTIONS(1063), - [anon_sym_where] = ACTIONS(1063), - [anon_sym_QMARK2] = ACTIONS(1063), - [anon_sym_not] = ACTIONS(1063), - [anon_sym_DOT_DOT2] = ACTIONS(1063), - [anon_sym_DOT] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1063), - [anon_sym_DOT_DOT_LT] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1065), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1065), - [anon_sym_null] = ACTIONS(1063), - [anon_sym_true] = ACTIONS(1063), - [anon_sym_false] = ACTIONS(1063), - [aux_sym__val_number_decimal_token1] = ACTIONS(1063), - [aux_sym__val_number_decimal_token2] = ACTIONS(1063), - [anon_sym_DOT2] = ACTIONS(1063), - [aux_sym__val_number_decimal_token3] = ACTIONS(1063), - [aux_sym__val_number_token1] = ACTIONS(1063), - [aux_sym__val_number_token2] = ACTIONS(1063), - [aux_sym__val_number_token3] = ACTIONS(1063), - [aux_sym__val_number_token4] = ACTIONS(1063), - [aux_sym__val_number_token5] = ACTIONS(1063), - [aux_sym__val_number_token6] = ACTIONS(1063), - [anon_sym_0b] = ACTIONS(1063), - [anon_sym_0o] = ACTIONS(1063), - [anon_sym_0x] = ACTIONS(1063), - [sym_val_date] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [sym__str_single_quotes] = ACTIONS(1063), - [sym__str_back_ticks] = ACTIONS(1063), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1063), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1063), - [anon_sym_CARET] = ACTIONS(1063), - [anon_sym_POUND] = ACTIONS(113), + [1518] = { + [sym_expr_unary] = STATE(5693), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5693), + [sym__expr_binary_expression] = STATE(5718), + [sym_expr_parenthesized] = STATE(5693), + [sym__val_range] = STATE(10091), + [sym__value] = STATE(5693), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5277), + [sym_val_variable] = STATE(5711), + [sym__var] = STATE(4948), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(4212), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_unquoted] = STATE(5727), + [sym__unquoted_anonymous_prefix] = STATE(10316), + [sym_comment] = STATE(1518), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(4935), + [anon_sym_DOLLAR] = ACTIONS(4937), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(4939), + [anon_sym_not] = ACTIONS(4652), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4941), + [anon_sym_DOT_DOT_LT] = ACTIONS(4941), + [anon_sym_null] = ACTIONS(4656), + [anon_sym_true] = ACTIONS(4658), + [anon_sym_false] = ACTIONS(4658), + [aux_sym__val_number_decimal_token1] = ACTIONS(4660), + [aux_sym__val_number_decimal_token2] = ACTIONS(4662), + [anon_sym_DOT2] = ACTIONS(4943), + [aux_sym__val_number_decimal_token3] = ACTIONS(4666), + [aux_sym__val_number_token1] = ACTIONS(207), + [aux_sym__val_number_token2] = ACTIONS(207), + [aux_sym__val_number_token3] = ACTIONS(207), + [aux_sym__val_number_token4] = ACTIONS(4945), + [aux_sym__val_number_token5] = ACTIONS(4945), + [aux_sym__val_number_token6] = ACTIONS(4945), + [anon_sym_0b] = ACTIONS(211), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(4670), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym__str_single_quotes] = ACTIONS(219), + [sym__str_back_ticks] = ACTIONS(219), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2800), + [anon_sym_POUND] = ACTIONS(3), }, - [1313] = { - [sym_path] = STATE(1512), - [sym_comment] = STATE(1313), - [aux_sym_cell_path_repeat1] = STATE(1287), - [anon_sym_export] = ACTIONS(987), - [anon_sym_alias] = ACTIONS(987), - [anon_sym_let] = ACTIONS(987), - [anon_sym_let_DASHenv] = ACTIONS(987), - [anon_sym_mut] = ACTIONS(987), - [anon_sym_const] = ACTIONS(987), - [anon_sym_SEMI] = ACTIONS(987), - [sym_cmd_identifier] = ACTIONS(987), - [anon_sym_LF] = ACTIONS(989), - [anon_sym_def] = ACTIONS(987), - [anon_sym_export_DASHenv] = ACTIONS(987), - [anon_sym_extern] = ACTIONS(987), - [anon_sym_module] = ACTIONS(987), - [anon_sym_use] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(987), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_RPAREN] = ACTIONS(987), - [anon_sym_DOLLAR] = ACTIONS(987), - [anon_sym_error] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_break] = ACTIONS(987), - [anon_sym_continue] = ACTIONS(987), - [anon_sym_for] = ACTIONS(987), - [anon_sym_loop] = ACTIONS(987), - [anon_sym_while] = ACTIONS(987), - [anon_sym_do] = ACTIONS(987), - [anon_sym_if] = ACTIONS(987), - [anon_sym_match] = ACTIONS(987), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_RBRACE] = ACTIONS(987), - [anon_sym_DOT_DOT] = ACTIONS(987), - [anon_sym_try] = ACTIONS(987), - [anon_sym_return] = ACTIONS(987), - [anon_sym_source] = ACTIONS(987), - [anon_sym_source_DASHenv] = ACTIONS(987), - [anon_sym_register] = ACTIONS(987), - [anon_sym_hide] = ACTIONS(987), - [anon_sym_hide_DASHenv] = ACTIONS(987), - [anon_sym_overlay] = ACTIONS(987), - [anon_sym_where] = ACTIONS(987), - [anon_sym_not] = ACTIONS(987), - [anon_sym_DOT_DOT2] = ACTIONS(987), - [anon_sym_DOT] = ACTIONS(3746), - [anon_sym_DOT_DOT_EQ] = ACTIONS(987), - [anon_sym_DOT_DOT_LT] = ACTIONS(987), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(989), - [anon_sym_DOT_DOT_LT2] = ACTIONS(989), - [anon_sym_null] = ACTIONS(987), - [anon_sym_true] = ACTIONS(987), - [anon_sym_false] = ACTIONS(987), - [aux_sym__val_number_decimal_token1] = ACTIONS(987), - [aux_sym__val_number_decimal_token2] = ACTIONS(987), - [anon_sym_DOT2] = ACTIONS(987), - [aux_sym__val_number_decimal_token3] = ACTIONS(987), - [aux_sym__val_number_token1] = ACTIONS(987), - [aux_sym__val_number_token2] = ACTIONS(987), - [aux_sym__val_number_token3] = ACTIONS(987), - [aux_sym__val_number_token4] = ACTIONS(987), - [aux_sym__val_number_token5] = ACTIONS(987), - [aux_sym__val_number_token6] = ACTIONS(987), - [anon_sym_0b] = ACTIONS(987), - [anon_sym_0o] = ACTIONS(987), - [anon_sym_0x] = ACTIONS(987), - [sym_val_date] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(987), - [sym__str_single_quotes] = ACTIONS(987), - [sym__str_back_ticks] = ACTIONS(987), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(987), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), + [1519] = { + [sym_comment] = STATE(1519), + [anon_sym_LBRACK] = ACTIONS(1068), + [anon_sym_COMMA] = ACTIONS(1068), + [anon_sym_RBRACK] = ACTIONS(1068), + [anon_sym_LPAREN] = ACTIONS(1068), + [anon_sym_DOLLAR] = ACTIONS(1068), + [anon_sym_GT] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1068), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_in] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_DOT_DOT] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_STAR_STAR] = ACTIONS(1068), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_SLASH] = ACTIONS(1068), + [anon_sym_mod] = ACTIONS(1068), + [anon_sym_SLASH_SLASH] = ACTIONS(1068), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_bit_DASHshl] = ACTIONS(1068), + [anon_sym_bit_DASHshr] = ACTIONS(1068), + [anon_sym_EQ_EQ] = ACTIONS(1068), + [anon_sym_BANG_EQ] = ACTIONS(1068), + [anon_sym_LT2] = ACTIONS(1068), + [anon_sym_LT_EQ] = ACTIONS(1068), + [anon_sym_GT_EQ] = ACTIONS(1068), + [anon_sym_not_DASHin] = ACTIONS(1068), + [anon_sym_starts_DASHwith] = ACTIONS(1068), + [anon_sym_ends_DASHwith] = ACTIONS(1068), + [anon_sym_EQ_TILDE] = ACTIONS(1068), + [anon_sym_BANG_TILDE] = ACTIONS(1068), + [anon_sym_bit_DASHand] = ACTIONS(1068), + [anon_sym_bit_DASHxor] = ACTIONS(1068), + [anon_sym_bit_DASHor] = ACTIONS(1068), + [anon_sym_and] = ACTIONS(1068), + [anon_sym_xor] = ACTIONS(1068), + [anon_sym_or] = ACTIONS(1068), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1068), + [anon_sym_DOT_DOT_LT] = ACTIONS(1068), + [anon_sym_null] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1068), + [anon_sym_false] = ACTIONS(1068), + [aux_sym__val_number_decimal_token1] = ACTIONS(1068), + [aux_sym__val_number_decimal_token2] = ACTIONS(1068), + [anon_sym_DOT2] = ACTIONS(1068), + [aux_sym__val_number_decimal_token3] = ACTIONS(1068), + [aux_sym__val_number_token1] = ACTIONS(1068), + [aux_sym__val_number_token2] = ACTIONS(1068), + [aux_sym__val_number_token3] = ACTIONS(1068), + [aux_sym__val_number_token4] = ACTIONS(1068), + [aux_sym__val_number_token5] = ACTIONS(1068), + [aux_sym__val_number_token6] = ACTIONS(1068), + [anon_sym_0b] = ACTIONS(1068), + [anon_sym_0o] = ACTIONS(1068), + [anon_sym_0x] = ACTIONS(1068), + [sym_val_date] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(1068), + [sym__str_single_quotes] = ACTIONS(1068), + [sym__str_back_ticks] = ACTIONS(1068), + [sym__entry_separator] = ACTIONS(1070), + [anon_sym_err_GT] = ACTIONS(1068), + [anon_sym_out_GT] = ACTIONS(1068), + [anon_sym_e_GT] = ACTIONS(1068), + [anon_sym_o_GT] = ACTIONS(1068), + [anon_sym_err_PLUSout_GT] = ACTIONS(1068), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1068), + [anon_sym_o_PLUSe_GT] = ACTIONS(1068), + [anon_sym_e_PLUSo_GT] = ACTIONS(1068), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1068), [anon_sym_POUND] = ACTIONS(113), }, - [1314] = { - [sym__flag] = STATE(2514), - [sym_short_flag] = STATE(2425), - [sym_long_flag] = STATE(2425), - [sym_long_flag_equals_value] = STATE(2521), - [sym_comment] = STATE(1314), - [aux_sym_overlay_use_repeat1] = STATE(1321), - [ts_builtin_sym_end] = ACTIONS(3708), - [anon_sym_export] = ACTIONS(3706), - [anon_sym_alias] = ACTIONS(3706), - [anon_sym_let] = ACTIONS(3706), - [anon_sym_let_DASHenv] = ACTIONS(3706), - [anon_sym_mut] = ACTIONS(3706), - [anon_sym_const] = ACTIONS(3706), - [anon_sym_SEMI] = ACTIONS(3706), - [sym_cmd_identifier] = ACTIONS(3706), - [anon_sym_LF] = ACTIONS(3708), - [anon_sym_def] = ACTIONS(3706), - [anon_sym_export_DASHenv] = ACTIONS(3706), - [anon_sym_extern] = ACTIONS(3706), - [anon_sym_module] = ACTIONS(3706), - [anon_sym_use] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3706), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_DOLLAR] = ACTIONS(3706), - [anon_sym_error] = ACTIONS(3706), - [anon_sym_DASH_DASH] = ACTIONS(3788), - [anon_sym_DASH] = ACTIONS(3171), - [anon_sym_break] = ACTIONS(3706), - [anon_sym_continue] = ACTIONS(3706), - [anon_sym_for] = ACTIONS(3706), - [anon_sym_loop] = ACTIONS(3706), - [anon_sym_while] = ACTIONS(3706), - [anon_sym_do] = ACTIONS(3706), - [anon_sym_if] = ACTIONS(3706), - [anon_sym_match] = ACTIONS(3706), - [anon_sym_LBRACE] = ACTIONS(3706), - [anon_sym_DOT_DOT] = ACTIONS(3706), - [anon_sym_try] = ACTIONS(3706), - [anon_sym_return] = ACTIONS(3706), - [anon_sym_source] = ACTIONS(3706), - [anon_sym_source_DASHenv] = ACTIONS(3706), - [anon_sym_register] = ACTIONS(3706), - [anon_sym_hide] = ACTIONS(3706), - [anon_sym_hide_DASHenv] = ACTIONS(3706), - [anon_sym_overlay] = ACTIONS(3706), - [anon_sym_as] = ACTIONS(3790), - [anon_sym_where] = ACTIONS(3706), - [anon_sym_not] = ACTIONS(3706), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3706), - [anon_sym_DOT_DOT_LT] = ACTIONS(3706), - [anon_sym_null] = ACTIONS(3706), - [anon_sym_true] = ACTIONS(3706), - [anon_sym_false] = ACTIONS(3706), - [aux_sym__val_number_decimal_token1] = ACTIONS(3706), - [aux_sym__val_number_decimal_token2] = ACTIONS(3706), - [anon_sym_DOT2] = ACTIONS(3706), - [aux_sym__val_number_decimal_token3] = ACTIONS(3706), - [aux_sym__val_number_token1] = ACTIONS(3706), - [aux_sym__val_number_token2] = ACTIONS(3706), - [aux_sym__val_number_token3] = ACTIONS(3706), - [aux_sym__val_number_token4] = ACTIONS(3706), - [aux_sym__val_number_token5] = ACTIONS(3706), - [aux_sym__val_number_token6] = ACTIONS(3706), - [anon_sym_0b] = ACTIONS(3706), - [anon_sym_0o] = ACTIONS(3706), - [anon_sym_0x] = ACTIONS(3706), - [sym_val_date] = ACTIONS(3706), - [anon_sym_DQUOTE] = ACTIONS(3706), - [sym__str_single_quotes] = ACTIONS(3706), - [sym__str_back_ticks] = ACTIONS(3706), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3706), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3706), - [anon_sym_CARET] = ACTIONS(3706), + [1520] = { + [sym__expression] = STATE(6962), + [sym_expr_unary] = STATE(5409), + [sym__expr_unary_minus] = STATE(5410), + [sym_expr_binary] = STATE(5409), + [sym__expr_binary_expression] = STATE(6366), + [sym_expr_parenthesized] = STATE(4635), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5409), + [sym_val_nothing] = STATE(5350), + [sym_val_bool] = STATE(5350), + [sym_val_variable] = STATE(4717), + [sym__var] = STATE(4193), + [sym_val_number] = STATE(5350), + [sym__val_number_decimal] = STATE(4266), + [sym__val_number] = STATE(5351), + [sym_val_duration] = STATE(5350), + [sym_val_filesize] = STATE(5350), + [sym_val_binary] = STATE(5350), + [sym_val_string] = STATE(5350), + [sym__str_double_quotes] = STATE(5502), + [sym_val_interpolated] = STATE(5350), + [sym__inter_single_quotes] = STATE(5420), + [sym__inter_double_quotes] = STATE(5421), + [sym_val_list] = STATE(5350), + [sym_val_record] = STATE(5350), + [sym_val_table] = STATE(5350), + [sym_val_closure] = STATE(5350), + [sym__flag] = STATE(6954), + [sym_short_flag] = STATE(8027), + [sym_long_flag] = STATE(8027), + [sym_long_flag_equals_value] = STATE(7909), + [sym_comment] = STATE(1520), + [anon_sym_SEMI] = ACTIONS(4947), + [anon_sym_LF] = ACTIONS(4949), + [anon_sym_LBRACK] = ACTIONS(4833), + [anon_sym_LPAREN] = ACTIONS(4835), + [anon_sym_RPAREN] = ACTIONS(4947), + [anon_sym_PIPE] = ACTIONS(4947), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_DASH_DASH] = ACTIONS(4837), + [anon_sym_DASH] = ACTIONS(4839), + [anon_sym_LBRACE] = ACTIONS(4841), + [anon_sym_RBRACE] = ACTIONS(4947), + [anon_sym_DOT_DOT] = ACTIONS(4843), + [anon_sym_not] = ACTIONS(4845), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4847), + [anon_sym_DOT_DOT_LT] = ACTIONS(4847), + [anon_sym_null] = ACTIONS(4849), + [anon_sym_true] = ACTIONS(4851), + [anon_sym_false] = ACTIONS(4851), + [aux_sym__val_number_decimal_token1] = ACTIONS(4853), + [aux_sym__val_number_decimal_token2] = ACTIONS(4853), + [anon_sym_DOT2] = ACTIONS(4855), + [aux_sym__val_number_decimal_token3] = ACTIONS(4857), + [aux_sym__val_number_token1] = ACTIONS(4859), + [aux_sym__val_number_token2] = ACTIONS(4859), + [aux_sym__val_number_token3] = ACTIONS(4859), + [aux_sym__val_number_token4] = ACTIONS(4859), + [aux_sym__val_number_token5] = ACTIONS(4859), + [aux_sym__val_number_token6] = ACTIONS(4859), + [anon_sym_0b] = ACTIONS(3080), + [anon_sym_0o] = ACTIONS(3082), + [anon_sym_0x] = ACTIONS(3082), + [sym_val_date] = ACTIONS(4861), + [anon_sym_DQUOTE] = ACTIONS(4863), + [sym__str_single_quotes] = ACTIONS(4865), + [sym__str_back_ticks] = ACTIONS(4865), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4867), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4869), [anon_sym_POUND] = ACTIONS(113), }, - [1315] = { - [sym_comment] = STATE(1315), - [anon_sym_LBRACK] = ACTIONS(952), - [anon_sym_COMMA] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(952), - [anon_sym_DOLLAR] = ACTIONS(952), - [anon_sym_GT] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(950), - [anon_sym_in] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(952), - [anon_sym_RBRACE] = ACTIONS(952), - [anon_sym__] = ACTIONS(950), - [anon_sym_DOT_DOT] = ACTIONS(950), - [anon_sym_STAR] = ACTIONS(950), - [anon_sym_STAR_STAR] = ACTIONS(952), - [anon_sym_PLUS_PLUS] = ACTIONS(952), - [anon_sym_SLASH] = ACTIONS(950), - [anon_sym_mod] = ACTIONS(952), - [anon_sym_SLASH_SLASH] = ACTIONS(952), - [anon_sym_PLUS] = ACTIONS(950), - [anon_sym_bit_DASHshl] = ACTIONS(952), - [anon_sym_bit_DASHshr] = ACTIONS(952), - [anon_sym_EQ_EQ] = ACTIONS(952), - [anon_sym_BANG_EQ] = ACTIONS(952), - [anon_sym_LT2] = ACTIONS(950), - [anon_sym_LT_EQ] = ACTIONS(952), - [anon_sym_GT_EQ] = ACTIONS(952), - [anon_sym_not_DASHin] = ACTIONS(952), - [anon_sym_starts_DASHwith] = ACTIONS(952), - [anon_sym_ends_DASHwith] = ACTIONS(952), - [anon_sym_EQ_TILDE] = ACTIONS(952), - [anon_sym_BANG_TILDE] = ACTIONS(952), - [anon_sym_bit_DASHand] = ACTIONS(952), - [anon_sym_bit_DASHxor] = ACTIONS(952), - [anon_sym_bit_DASHor] = ACTIONS(952), - [anon_sym_and] = ACTIONS(952), - [anon_sym_xor] = ACTIONS(952), - [anon_sym_or] = ACTIONS(952), - [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), - [anon_sym_DOT2] = ACTIONS(950), - [aux_sym__val_number_decimal_token3] = 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), - [sym_filesize_unit] = ACTIONS(950), - [sym_duration_unit] = ACTIONS(952), - [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_err_GT] = ACTIONS(952), - [anon_sym_out_GT] = ACTIONS(952), - [anon_sym_e_GT] = ACTIONS(952), - [anon_sym_o_GT] = ACTIONS(952), - [anon_sym_err_PLUSout_GT] = ACTIONS(952), - [anon_sym_out_PLUSerr_GT] = ACTIONS(952), - [anon_sym_o_PLUSe_GT] = ACTIONS(952), - [anon_sym_e_PLUSo_GT] = ACTIONS(952), - [aux_sym_unquoted_token1] = ACTIONS(950), + [1521] = { + [sym_expr_unary] = STATE(5693), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5693), + [sym__expr_binary_expression] = STATE(5729), + [sym_expr_parenthesized] = STATE(5693), + [sym__val_range] = STATE(10091), + [sym__value] = STATE(5693), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5277), + [sym_val_variable] = STATE(5711), + [sym__var] = STATE(4948), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(4212), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_unquoted] = STATE(5735), + [sym__unquoted_anonymous_prefix] = STATE(10316), + [sym_comment] = STATE(1521), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(4935), + [anon_sym_DOLLAR] = ACTIONS(4937), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(4939), + [anon_sym_not] = ACTIONS(4652), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4941), + [anon_sym_DOT_DOT_LT] = ACTIONS(4941), + [anon_sym_null] = ACTIONS(4656), + [anon_sym_true] = ACTIONS(4658), + [anon_sym_false] = ACTIONS(4658), + [aux_sym__val_number_decimal_token1] = ACTIONS(4660), + [aux_sym__val_number_decimal_token2] = ACTIONS(4662), + [anon_sym_DOT2] = ACTIONS(4943), + [aux_sym__val_number_decimal_token3] = ACTIONS(4666), + [aux_sym__val_number_token1] = ACTIONS(207), + [aux_sym__val_number_token2] = ACTIONS(207), + [aux_sym__val_number_token3] = ACTIONS(207), + [aux_sym__val_number_token4] = ACTIONS(4945), + [aux_sym__val_number_token5] = ACTIONS(4945), + [aux_sym__val_number_token6] = ACTIONS(4945), + [anon_sym_0b] = ACTIONS(211), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(4670), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym__str_single_quotes] = ACTIONS(219), + [sym__str_back_ticks] = ACTIONS(219), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2800), [anon_sym_POUND] = ACTIONS(3), }, - [1316] = { - [sym_comment] = STATE(1316), - [ts_builtin_sym_end] = ACTIONS(911), - [anon_sym_SEMI] = ACTIONS(909), - [anon_sym_LF] = ACTIONS(911), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_DOT_DOT] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(909), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(909), - [anon_sym_SLASH_SLASH] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(909), - [anon_sym_bit_DASHshr] = ACTIONS(909), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_not_DASHin] = ACTIONS(909), - [anon_sym_starts_DASHwith] = ACTIONS(909), - [anon_sym_ends_DASHwith] = ACTIONS(909), - [anon_sym_EQ_TILDE] = ACTIONS(909), - [anon_sym_BANG_TILDE] = ACTIONS(909), - [anon_sym_bit_DASHand] = ACTIONS(909), - [anon_sym_bit_DASHxor] = ACTIONS(909), - [anon_sym_bit_DASHor] = ACTIONS(909), - [anon_sym_and] = ACTIONS(909), - [anon_sym_xor] = ACTIONS(909), - [anon_sym_or] = ACTIONS(909), - [anon_sym_not] = ACTIONS(909), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [aux_sym__immediate_decimal_token1] = ACTIONS(3792), - [aux_sym__immediate_decimal_token2] = ACTIONS(3794), - [anon_sym_null] = ACTIONS(909), - [anon_sym_true] = ACTIONS(909), - [anon_sym_false] = ACTIONS(909), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(909), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(909), - [aux_sym__val_number_token1] = ACTIONS(909), - [aux_sym__val_number_token2] = ACTIONS(909), - [aux_sym__val_number_token3] = ACTIONS(909), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(909), - [aux_sym__val_number_token6] = ACTIONS(909), - [anon_sym_0b] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(911), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym__str_single_quotes] = ACTIONS(909), - [sym__str_back_ticks] = ACTIONS(909), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), - [aux_sym_unquoted_token5] = ACTIONS(909), + [1522] = { + [sym__expression] = STATE(6962), + [sym_expr_unary] = STATE(5409), + [sym__expr_unary_minus] = STATE(5410), + [sym_expr_binary] = STATE(5409), + [sym__expr_binary_expression] = STATE(6366), + [sym_expr_parenthesized] = STATE(4635), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5409), + [sym_val_nothing] = STATE(5350), + [sym_val_bool] = STATE(5350), + [sym_val_variable] = STATE(4717), + [sym__var] = STATE(4193), + [sym_val_number] = STATE(5350), + [sym__val_number_decimal] = STATE(4266), + [sym__val_number] = STATE(5351), + [sym_val_duration] = STATE(5350), + [sym_val_filesize] = STATE(5350), + [sym_val_binary] = STATE(5350), + [sym_val_string] = STATE(5350), + [sym__str_double_quotes] = STATE(5502), + [sym_val_interpolated] = STATE(5350), + [sym__inter_single_quotes] = STATE(5420), + [sym__inter_double_quotes] = STATE(5421), + [sym_val_list] = STATE(5350), + [sym_val_record] = STATE(5350), + [sym_val_table] = STATE(5350), + [sym_val_closure] = STATE(5350), + [sym__flag] = STATE(1525), + [sym_short_flag] = STATE(4674), + [sym_long_flag] = STATE(4674), + [sym_long_flag_equals_value] = STATE(4714), + [sym_comment] = STATE(1522), + [anon_sym_SEMI] = ACTIONS(4947), + [anon_sym_LF] = ACTIONS(4949), + [anon_sym_LBRACK] = ACTIONS(4833), + [anon_sym_LPAREN] = ACTIONS(4835), + [anon_sym_RPAREN] = ACTIONS(4947), + [anon_sym_PIPE] = ACTIONS(4947), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_DASH_DASH] = ACTIONS(4875), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4841), + [anon_sym_RBRACE] = ACTIONS(4947), + [anon_sym_DOT_DOT] = ACTIONS(4843), + [anon_sym_not] = ACTIONS(4845), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4847), + [anon_sym_DOT_DOT_LT] = ACTIONS(4847), + [anon_sym_null] = ACTIONS(4849), + [anon_sym_true] = ACTIONS(4851), + [anon_sym_false] = ACTIONS(4851), + [aux_sym__val_number_decimal_token1] = ACTIONS(4853), + [aux_sym__val_number_decimal_token2] = ACTIONS(4853), + [anon_sym_DOT2] = ACTIONS(4855), + [aux_sym__val_number_decimal_token3] = ACTIONS(4857), + [aux_sym__val_number_token1] = ACTIONS(4859), + [aux_sym__val_number_token2] = ACTIONS(4859), + [aux_sym__val_number_token3] = ACTIONS(4859), + [aux_sym__val_number_token4] = ACTIONS(4859), + [aux_sym__val_number_token5] = ACTIONS(4859), + [aux_sym__val_number_token6] = ACTIONS(4859), + [anon_sym_0b] = ACTIONS(3080), + [anon_sym_0o] = ACTIONS(3082), + [anon_sym_0x] = ACTIONS(3082), + [sym_val_date] = ACTIONS(4861), + [anon_sym_DQUOTE] = ACTIONS(4863), + [sym__str_single_quotes] = ACTIONS(4865), + [sym__str_back_ticks] = ACTIONS(4865), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4867), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4869), [anon_sym_POUND] = ACTIONS(113), }, - [1317] = { - [sym_comment] = STATE(1317), - [ts_builtin_sym_end] = ACTIONS(2439), - [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), - [anon_sym_SEMI] = ACTIONS(2437), - [sym_cmd_identifier] = ACTIONS(2437), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_DASH_DASH] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_as] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_not] = ACTIONS(2437), - [anon_sym_DOT_DOT2] = ACTIONS(2437), - [anon_sym_DOT] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2439), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2439), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [anon_sym_DOT2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2437), - [anon_sym_0o] = ACTIONS(2437), - [anon_sym_0x] = ACTIONS(2437), - [sym_val_date] = 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_CARET] = ACTIONS(2437), - [aux_sym_unquoted_token2] = ACTIONS(2437), + [1523] = { + [sym_comment] = STATE(1523), + [anon_sym_export] = ACTIONS(1245), + [anon_sym_alias] = ACTIONS(1245), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_let_DASHenv] = ACTIONS(1245), + [anon_sym_mut] = ACTIONS(1245), + [anon_sym_const] = ACTIONS(1245), + [anon_sym_SEMI] = ACTIONS(1245), + [sym_cmd_identifier] = ACTIONS(1245), + [anon_sym_LF] = ACTIONS(1247), + [anon_sym_def] = ACTIONS(1245), + [anon_sym_export_DASHenv] = ACTIONS(1245), + [anon_sym_extern] = ACTIONS(1245), + [anon_sym_module] = ACTIONS(1245), + [anon_sym_use] = ACTIONS(1245), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_RPAREN] = ACTIONS(1245), + [anon_sym_DOLLAR] = ACTIONS(1245), + [anon_sym_error] = ACTIONS(1245), + [anon_sym_DASH_DASH] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_break] = ACTIONS(1245), + [anon_sym_continue] = ACTIONS(1245), + [anon_sym_for] = ACTIONS(1245), + [anon_sym_loop] = ACTIONS(1245), + [anon_sym_while] = ACTIONS(1245), + [anon_sym_do] = ACTIONS(1245), + [anon_sym_if] = ACTIONS(1245), + [anon_sym_match] = ACTIONS(1245), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_RBRACE] = ACTIONS(1245), + [anon_sym_DOT_DOT] = ACTIONS(1245), + [anon_sym_try] = ACTIONS(1245), + [anon_sym_return] = ACTIONS(1245), + [anon_sym_source] = ACTIONS(1245), + [anon_sym_source_DASHenv] = ACTIONS(1245), + [anon_sym_register] = ACTIONS(1245), + [anon_sym_hide] = ACTIONS(1245), + [anon_sym_hide_DASHenv] = ACTIONS(1245), + [anon_sym_overlay] = ACTIONS(1245), + [anon_sym_as] = ACTIONS(1245), + [anon_sym_where] = ACTIONS(1245), + [anon_sym_not] = ACTIONS(1245), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1245), + [anon_sym_DOT_DOT_LT] = ACTIONS(1245), + [anon_sym_null] = ACTIONS(1245), + [anon_sym_true] = ACTIONS(1245), + [anon_sym_false] = ACTIONS(1245), + [aux_sym__val_number_decimal_token1] = ACTIONS(1245), + [aux_sym__val_number_decimal_token2] = ACTIONS(1245), + [anon_sym_DOT2] = ACTIONS(1245), + [aux_sym__val_number_decimal_token3] = ACTIONS(1245), + [aux_sym__val_number_token1] = ACTIONS(1245), + [aux_sym__val_number_token2] = ACTIONS(1245), + [aux_sym__val_number_token3] = ACTIONS(1245), + [aux_sym__val_number_token4] = ACTIONS(1245), + [aux_sym__val_number_token5] = ACTIONS(1245), + [aux_sym__val_number_token6] = ACTIONS(1245), + [anon_sym_0b] = ACTIONS(1245), + [anon_sym_0o] = ACTIONS(1245), + [anon_sym_0x] = ACTIONS(1245), + [sym_val_date] = ACTIONS(1245), + [anon_sym_DQUOTE] = ACTIONS(1245), + [sym__str_single_quotes] = ACTIONS(1245), + [sym__str_back_ticks] = ACTIONS(1245), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1245), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1245), + [anon_sym_CARET] = ACTIONS(1245), [anon_sym_POUND] = ACTIONS(113), }, - [1318] = { - [sym__immediate_decimal] = STATE(10460), - [sym_comment] = STATE(1318), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_error] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_RBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_where] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [aux_sym__immediate_decimal_token1] = ACTIONS(1045), - [aux_sym__immediate_decimal_token3] = ACTIONS(1045), - [aux_sym__immediate_decimal_token4] = ACTIONS(1047), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [aux_sym_unquoted_token4] = ACTIONS(3588), + [1524] = { + [sym_comment] = STATE(1524), + [anon_sym_export] = ACTIONS(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_let] = ACTIONS(3691), + [anon_sym_let_DASHenv] = ACTIONS(3691), + [anon_sym_mut] = ACTIONS(3691), + [anon_sym_const] = ACTIONS(3691), + [anon_sym_SEMI] = ACTIONS(3691), + [sym_cmd_identifier] = ACTIONS(3691), + [anon_sym_LF] = ACTIONS(3693), + [anon_sym_def] = ACTIONS(3691), + [anon_sym_export_DASHenv] = ACTIONS(3691), + [anon_sym_extern] = ACTIONS(3691), + [anon_sym_module] = ACTIONS(3691), + [anon_sym_use] = ACTIONS(3691), + [anon_sym_LBRACK] = ACTIONS(3691), + [anon_sym_LPAREN] = ACTIONS(3691), + [anon_sym_RPAREN] = ACTIONS(3691), + [anon_sym_DOLLAR] = ACTIONS(3691), + [anon_sym_error] = ACTIONS(3691), + [anon_sym_DASH_DASH] = ACTIONS(3691), + [anon_sym_DASH] = ACTIONS(3691), + [anon_sym_break] = ACTIONS(3691), + [anon_sym_continue] = ACTIONS(3691), + [anon_sym_for] = ACTIONS(3691), + [anon_sym_loop] = ACTIONS(3691), + [anon_sym_while] = ACTIONS(3691), + [anon_sym_do] = ACTIONS(3691), + [anon_sym_if] = ACTIONS(3691), + [anon_sym_match] = ACTIONS(3691), + [anon_sym_LBRACE] = ACTIONS(3691), + [anon_sym_RBRACE] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3691), + [anon_sym_try] = ACTIONS(3691), + [anon_sym_return] = ACTIONS(3691), + [anon_sym_source] = ACTIONS(3691), + [anon_sym_source_DASHenv] = ACTIONS(3691), + [anon_sym_register] = ACTIONS(3691), + [anon_sym_hide] = ACTIONS(3691), + [anon_sym_hide_DASHenv] = ACTIONS(3691), + [anon_sym_overlay] = ACTIONS(3691), + [anon_sym_as] = ACTIONS(3691), + [anon_sym_where] = ACTIONS(3691), + [anon_sym_not] = ACTIONS(3691), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3691), + [anon_sym_DOT_DOT_LT] = ACTIONS(3691), + [anon_sym_null] = ACTIONS(3691), + [anon_sym_true] = ACTIONS(3691), + [anon_sym_false] = ACTIONS(3691), + [aux_sym__val_number_decimal_token1] = ACTIONS(3691), + [aux_sym__val_number_decimal_token2] = ACTIONS(3691), + [anon_sym_DOT2] = ACTIONS(3691), + [aux_sym__val_number_decimal_token3] = ACTIONS(3691), + [aux_sym__val_number_token1] = ACTIONS(3691), + [aux_sym__val_number_token2] = ACTIONS(3691), + [aux_sym__val_number_token3] = ACTIONS(3691), + [aux_sym__val_number_token4] = ACTIONS(3691), + [aux_sym__val_number_token5] = ACTIONS(3691), + [aux_sym__val_number_token6] = ACTIONS(3691), + [anon_sym_0b] = ACTIONS(3691), + [anon_sym_0o] = ACTIONS(3691), + [anon_sym_0x] = ACTIONS(3691), + [sym_val_date] = ACTIONS(3691), + [anon_sym_DQUOTE] = ACTIONS(3691), + [sym__str_single_quotes] = ACTIONS(3691), + [sym__str_back_ticks] = ACTIONS(3691), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3691), + [anon_sym_CARET] = ACTIONS(3691), [anon_sym_POUND] = ACTIONS(113), }, - [1319] = { - [sym_comment] = STATE(1319), - [ts_builtin_sym_end] = ACTIONS(1072), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_alias] = ACTIONS(1070), - [anon_sym_let] = ACTIONS(1070), - [anon_sym_let_DASHenv] = ACTIONS(1070), - [anon_sym_mut] = ACTIONS(1070), - [anon_sym_const] = ACTIONS(1070), - [anon_sym_SEMI] = ACTIONS(1070), - [sym_cmd_identifier] = ACTIONS(1070), - [anon_sym_LF] = ACTIONS(1072), - [anon_sym_def] = ACTIONS(1070), - [anon_sym_export_DASHenv] = ACTIONS(1070), - [anon_sym_extern] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_use] = ACTIONS(1070), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_error] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_loop] = ACTIONS(1070), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_do] = ACTIONS(1070), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_match] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_try] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_source] = ACTIONS(1070), - [anon_sym_source_DASHenv] = ACTIONS(1070), - [anon_sym_register] = ACTIONS(1070), - [anon_sym_hide] = ACTIONS(1070), - [anon_sym_hide_DASHenv] = ACTIONS(1070), - [anon_sym_overlay] = ACTIONS(1070), - [anon_sym_as] = ACTIONS(1070), - [anon_sym_where] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(3796), - [anon_sym_not] = ACTIONS(1070), - [anon_sym_DOT_DOT2] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1072), - [anon_sym_null] = ACTIONS(1070), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1070), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), - [anon_sym_CARET] = ACTIONS(1070), + [1525] = { + [sym__expression] = STATE(6997), + [sym_expr_unary] = STATE(5409), + [sym__expr_unary_minus] = STATE(5410), + [sym_expr_binary] = STATE(5409), + [sym__expr_binary_expression] = STATE(6366), + [sym_expr_parenthesized] = STATE(4635), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5409), + [sym_val_nothing] = STATE(5350), + [sym_val_bool] = STATE(5350), + [sym_val_variable] = STATE(4717), + [sym__var] = STATE(4193), + [sym_val_number] = STATE(5350), + [sym__val_number_decimal] = STATE(4266), + [sym__val_number] = STATE(5351), + [sym_val_duration] = STATE(5350), + [sym_val_filesize] = STATE(5350), + [sym_val_binary] = STATE(5350), + [sym_val_string] = STATE(5350), + [sym__str_double_quotes] = STATE(5502), + [sym_val_interpolated] = STATE(5350), + [sym__inter_single_quotes] = STATE(5420), + [sym__inter_double_quotes] = STATE(5421), + [sym_val_list] = STATE(5350), + [sym_val_record] = STATE(5350), + [sym_val_table] = STATE(5350), + [sym_val_closure] = STATE(5350), + [sym__flag] = STATE(6996), + [sym_short_flag] = STATE(8027), + [sym_long_flag] = STATE(8027), + [sym_long_flag_equals_value] = STATE(7909), + [sym_comment] = STATE(1525), + [anon_sym_SEMI] = ACTIONS(4951), + [anon_sym_LF] = ACTIONS(4953), + [anon_sym_LBRACK] = ACTIONS(4833), + [anon_sym_LPAREN] = ACTIONS(4835), + [anon_sym_RPAREN] = ACTIONS(4951), + [anon_sym_PIPE] = ACTIONS(4951), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_DASH_DASH] = ACTIONS(4837), + [anon_sym_DASH] = ACTIONS(4839), + [anon_sym_LBRACE] = ACTIONS(4841), + [anon_sym_RBRACE] = ACTIONS(4951), + [anon_sym_DOT_DOT] = ACTIONS(4843), + [anon_sym_not] = ACTIONS(4845), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4847), + [anon_sym_DOT_DOT_LT] = ACTIONS(4847), + [anon_sym_null] = ACTIONS(4849), + [anon_sym_true] = ACTIONS(4851), + [anon_sym_false] = ACTIONS(4851), + [aux_sym__val_number_decimal_token1] = ACTIONS(4853), + [aux_sym__val_number_decimal_token2] = ACTIONS(4853), + [anon_sym_DOT2] = ACTIONS(4855), + [aux_sym__val_number_decimal_token3] = ACTIONS(4857), + [aux_sym__val_number_token1] = ACTIONS(4859), + [aux_sym__val_number_token2] = ACTIONS(4859), + [aux_sym__val_number_token3] = ACTIONS(4859), + [aux_sym__val_number_token4] = ACTIONS(4859), + [aux_sym__val_number_token5] = ACTIONS(4859), + [aux_sym__val_number_token6] = ACTIONS(4859), + [anon_sym_0b] = ACTIONS(3080), + [anon_sym_0o] = ACTIONS(3082), + [anon_sym_0x] = ACTIONS(3082), + [sym_val_date] = ACTIONS(4861), + [anon_sym_DQUOTE] = ACTIONS(4863), + [sym__str_single_quotes] = ACTIONS(4865), + [sym__str_back_ticks] = ACTIONS(4865), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4867), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4869), [anon_sym_POUND] = ACTIONS(113), }, - [1320] = { - [sym_comment] = STATE(1320), - [ts_builtin_sym_end] = ACTIONS(1072), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_alias] = ACTIONS(1070), - [anon_sym_let] = ACTIONS(1070), - [anon_sym_let_DASHenv] = ACTIONS(1070), - [anon_sym_mut] = ACTIONS(1070), - [anon_sym_const] = ACTIONS(1070), - [anon_sym_SEMI] = ACTIONS(1070), - [sym_cmd_identifier] = ACTIONS(1070), - [anon_sym_LF] = ACTIONS(1072), - [anon_sym_def] = ACTIONS(1070), - [anon_sym_export_DASHenv] = ACTIONS(1070), - [anon_sym_extern] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_use] = ACTIONS(1070), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_error] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_loop] = ACTIONS(1070), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_do] = ACTIONS(1070), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_match] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_try] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_source] = ACTIONS(1070), - [anon_sym_source_DASHenv] = ACTIONS(1070), - [anon_sym_register] = ACTIONS(1070), - [anon_sym_hide] = ACTIONS(1070), - [anon_sym_hide_DASHenv] = ACTIONS(1070), - [anon_sym_overlay] = ACTIONS(1070), - [anon_sym_as] = ACTIONS(1070), - [anon_sym_where] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(3796), - [anon_sym_not] = ACTIONS(1070), - [anon_sym_DOT_DOT2] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1072), - [anon_sym_null] = ACTIONS(1070), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1070), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), - [anon_sym_CARET] = ACTIONS(1070), + [1526] = { + [sym_comment] = STATE(1526), + [anon_sym_export] = ACTIONS(3767), + [anon_sym_alias] = ACTIONS(3767), + [anon_sym_let] = ACTIONS(3767), + [anon_sym_let_DASHenv] = ACTIONS(3767), + [anon_sym_mut] = ACTIONS(3767), + [anon_sym_const] = ACTIONS(3767), + [anon_sym_SEMI] = ACTIONS(3767), + [sym_cmd_identifier] = ACTIONS(3767), + [anon_sym_LF] = ACTIONS(3769), + [anon_sym_def] = ACTIONS(3767), + [anon_sym_export_DASHenv] = ACTIONS(3767), + [anon_sym_extern] = ACTIONS(3767), + [anon_sym_module] = ACTIONS(3767), + [anon_sym_use] = ACTIONS(3767), + [anon_sym_LBRACK] = ACTIONS(3767), + [anon_sym_LPAREN] = ACTIONS(3767), + [anon_sym_RPAREN] = ACTIONS(3767), + [anon_sym_DOLLAR] = ACTIONS(3767), + [anon_sym_error] = ACTIONS(3767), + [anon_sym_DASH_DASH] = ACTIONS(3767), + [anon_sym_DASH] = ACTIONS(3767), + [anon_sym_break] = ACTIONS(3767), + [anon_sym_continue] = ACTIONS(3767), + [anon_sym_for] = ACTIONS(3767), + [anon_sym_loop] = ACTIONS(3767), + [anon_sym_while] = ACTIONS(3767), + [anon_sym_do] = ACTIONS(3767), + [anon_sym_if] = ACTIONS(3767), + [anon_sym_match] = ACTIONS(3767), + [anon_sym_LBRACE] = ACTIONS(3767), + [anon_sym_RBRACE] = ACTIONS(3767), + [anon_sym_DOT_DOT] = ACTIONS(3767), + [anon_sym_try] = ACTIONS(3767), + [anon_sym_return] = ACTIONS(3767), + [anon_sym_source] = ACTIONS(3767), + [anon_sym_source_DASHenv] = ACTIONS(3767), + [anon_sym_register] = ACTIONS(3767), + [anon_sym_hide] = ACTIONS(3767), + [anon_sym_hide_DASHenv] = ACTIONS(3767), + [anon_sym_overlay] = ACTIONS(3767), + [anon_sym_as] = ACTIONS(3767), + [anon_sym_where] = ACTIONS(3767), + [anon_sym_not] = ACTIONS(3767), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3767), + [anon_sym_DOT_DOT_LT] = ACTIONS(3767), + [anon_sym_null] = ACTIONS(3767), + [anon_sym_true] = ACTIONS(3767), + [anon_sym_false] = ACTIONS(3767), + [aux_sym__val_number_decimal_token1] = ACTIONS(3767), + [aux_sym__val_number_decimal_token2] = ACTIONS(3767), + [anon_sym_DOT2] = ACTIONS(3767), + [aux_sym__val_number_decimal_token3] = ACTIONS(3767), + [aux_sym__val_number_token1] = ACTIONS(3767), + [aux_sym__val_number_token2] = ACTIONS(3767), + [aux_sym__val_number_token3] = ACTIONS(3767), + [aux_sym__val_number_token4] = ACTIONS(3767), + [aux_sym__val_number_token5] = ACTIONS(3767), + [aux_sym__val_number_token6] = ACTIONS(3767), + [anon_sym_0b] = ACTIONS(3767), + [anon_sym_0o] = ACTIONS(3767), + [anon_sym_0x] = ACTIONS(3767), + [sym_val_date] = ACTIONS(3767), + [anon_sym_DQUOTE] = ACTIONS(3767), + [sym__str_single_quotes] = ACTIONS(3767), + [sym__str_back_ticks] = ACTIONS(3767), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3767), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3767), + [anon_sym_CARET] = ACTIONS(3767), [anon_sym_POUND] = ACTIONS(113), }, - [1321] = { - [sym__flag] = STATE(2514), - [sym_short_flag] = STATE(2425), - [sym_long_flag] = STATE(2425), - [sym_long_flag_equals_value] = STATE(2521), - [sym_comment] = STATE(1321), - [aux_sym_overlay_use_repeat1] = STATE(1340), - [ts_builtin_sym_end] = ACTIONS(3722), - [anon_sym_export] = ACTIONS(3720), - [anon_sym_alias] = ACTIONS(3720), - [anon_sym_let] = ACTIONS(3720), - [anon_sym_let_DASHenv] = ACTIONS(3720), - [anon_sym_mut] = ACTIONS(3720), - [anon_sym_const] = ACTIONS(3720), - [anon_sym_SEMI] = ACTIONS(3720), - [sym_cmd_identifier] = ACTIONS(3720), - [anon_sym_LF] = ACTIONS(3722), - [anon_sym_def] = ACTIONS(3720), - [anon_sym_export_DASHenv] = ACTIONS(3720), - [anon_sym_extern] = ACTIONS(3720), - [anon_sym_module] = ACTIONS(3720), - [anon_sym_use] = ACTIONS(3720), - [anon_sym_LBRACK] = ACTIONS(3720), - [anon_sym_LPAREN] = ACTIONS(3720), - [anon_sym_DOLLAR] = ACTIONS(3720), - [anon_sym_error] = ACTIONS(3720), - [anon_sym_DASH_DASH] = ACTIONS(3788), - [anon_sym_DASH] = ACTIONS(3720), - [anon_sym_break] = ACTIONS(3720), - [anon_sym_continue] = ACTIONS(3720), - [anon_sym_for] = ACTIONS(3720), - [anon_sym_loop] = ACTIONS(3720), - [anon_sym_while] = ACTIONS(3720), - [anon_sym_do] = ACTIONS(3720), - [anon_sym_if] = ACTIONS(3720), - [anon_sym_match] = ACTIONS(3720), - [anon_sym_LBRACE] = ACTIONS(3720), - [anon_sym_DOT_DOT] = ACTIONS(3720), - [anon_sym_try] = ACTIONS(3720), - [anon_sym_return] = ACTIONS(3720), - [anon_sym_source] = ACTIONS(3720), - [anon_sym_source_DASHenv] = ACTIONS(3720), - [anon_sym_register] = ACTIONS(3720), - [anon_sym_hide] = ACTIONS(3720), - [anon_sym_hide_DASHenv] = ACTIONS(3720), - [anon_sym_overlay] = ACTIONS(3720), - [anon_sym_as] = ACTIONS(3798), - [anon_sym_where] = ACTIONS(3720), - [anon_sym_not] = ACTIONS(3720), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3720), - [anon_sym_DOT_DOT_LT] = ACTIONS(3720), - [anon_sym_null] = ACTIONS(3720), - [anon_sym_true] = ACTIONS(3720), - [anon_sym_false] = ACTIONS(3720), - [aux_sym__val_number_decimal_token1] = ACTIONS(3720), - [aux_sym__val_number_decimal_token2] = ACTIONS(3720), - [anon_sym_DOT2] = ACTIONS(3720), - [aux_sym__val_number_decimal_token3] = ACTIONS(3720), - [aux_sym__val_number_token1] = ACTIONS(3720), - [aux_sym__val_number_token2] = ACTIONS(3720), - [aux_sym__val_number_token3] = ACTIONS(3720), - [aux_sym__val_number_token4] = ACTIONS(3720), - [aux_sym__val_number_token5] = ACTIONS(3720), - [aux_sym__val_number_token6] = ACTIONS(3720), - [anon_sym_0b] = ACTIONS(3720), - [anon_sym_0o] = ACTIONS(3720), - [anon_sym_0x] = ACTIONS(3720), - [sym_val_date] = ACTIONS(3720), - [anon_sym_DQUOTE] = ACTIONS(3720), - [sym__str_single_quotes] = ACTIONS(3720), - [sym__str_back_ticks] = ACTIONS(3720), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3720), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3720), - [anon_sym_CARET] = ACTIONS(3720), + [1527] = { + [sym_comment] = STATE(1527), + [anon_sym_export] = ACTIONS(3699), + [anon_sym_alias] = ACTIONS(3699), + [anon_sym_let] = ACTIONS(3699), + [anon_sym_let_DASHenv] = ACTIONS(3699), + [anon_sym_mut] = ACTIONS(3699), + [anon_sym_const] = ACTIONS(3699), + [anon_sym_SEMI] = ACTIONS(3699), + [sym_cmd_identifier] = ACTIONS(3699), + [anon_sym_LF] = ACTIONS(3701), + [anon_sym_def] = ACTIONS(3699), + [anon_sym_export_DASHenv] = ACTIONS(3699), + [anon_sym_extern] = ACTIONS(3699), + [anon_sym_module] = ACTIONS(3699), + [anon_sym_use] = ACTIONS(3699), + [anon_sym_LBRACK] = ACTIONS(3699), + [anon_sym_LPAREN] = ACTIONS(3699), + [anon_sym_RPAREN] = ACTIONS(3699), + [anon_sym_DOLLAR] = ACTIONS(3699), + [anon_sym_error] = ACTIONS(3699), + [anon_sym_DASH_DASH] = ACTIONS(3699), + [anon_sym_DASH] = ACTIONS(3699), + [anon_sym_break] = ACTIONS(3699), + [anon_sym_continue] = ACTIONS(3699), + [anon_sym_for] = ACTIONS(3699), + [anon_sym_loop] = ACTIONS(3699), + [anon_sym_while] = ACTIONS(3699), + [anon_sym_do] = ACTIONS(3699), + [anon_sym_if] = ACTIONS(3699), + [anon_sym_match] = ACTIONS(3699), + [anon_sym_LBRACE] = ACTIONS(3699), + [anon_sym_RBRACE] = ACTIONS(3699), + [anon_sym_DOT_DOT] = ACTIONS(3699), + [anon_sym_try] = ACTIONS(3699), + [anon_sym_return] = ACTIONS(3699), + [anon_sym_source] = ACTIONS(3699), + [anon_sym_source_DASHenv] = ACTIONS(3699), + [anon_sym_register] = ACTIONS(3699), + [anon_sym_hide] = ACTIONS(3699), + [anon_sym_hide_DASHenv] = ACTIONS(3699), + [anon_sym_overlay] = ACTIONS(3699), + [anon_sym_as] = ACTIONS(3699), + [anon_sym_where] = ACTIONS(3699), + [anon_sym_not] = ACTIONS(3699), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3699), + [anon_sym_DOT_DOT_LT] = ACTIONS(3699), + [anon_sym_null] = ACTIONS(3699), + [anon_sym_true] = ACTIONS(3699), + [anon_sym_false] = ACTIONS(3699), + [aux_sym__val_number_decimal_token1] = ACTIONS(3699), + [aux_sym__val_number_decimal_token2] = ACTIONS(3699), + [anon_sym_DOT2] = ACTIONS(3699), + [aux_sym__val_number_decimal_token3] = ACTIONS(3699), + [aux_sym__val_number_token1] = ACTIONS(3699), + [aux_sym__val_number_token2] = ACTIONS(3699), + [aux_sym__val_number_token3] = ACTIONS(3699), + [aux_sym__val_number_token4] = ACTIONS(3699), + [aux_sym__val_number_token5] = ACTIONS(3699), + [aux_sym__val_number_token6] = ACTIONS(3699), + [anon_sym_0b] = ACTIONS(3699), + [anon_sym_0o] = ACTIONS(3699), + [anon_sym_0x] = ACTIONS(3699), + [sym_val_date] = ACTIONS(3699), + [anon_sym_DQUOTE] = ACTIONS(3699), + [sym__str_single_quotes] = ACTIONS(3699), + [sym__str_back_ticks] = ACTIONS(3699), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3699), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3699), + [anon_sym_CARET] = ACTIONS(3699), [anon_sym_POUND] = ACTIONS(113), }, - [1322] = { - [sym__flag] = STATE(2514), - [sym_short_flag] = STATE(2425), - [sym_long_flag] = STATE(2425), - [sym_long_flag_equals_value] = STATE(2521), - [sym_comment] = STATE(1322), - [aux_sym_overlay_use_repeat1] = STATE(1323), - [ts_builtin_sym_end] = ACTIONS(3728), - [anon_sym_export] = ACTIONS(3726), - [anon_sym_alias] = ACTIONS(3726), - [anon_sym_let] = ACTIONS(3726), - [anon_sym_let_DASHenv] = ACTIONS(3726), - [anon_sym_mut] = ACTIONS(3726), - [anon_sym_const] = ACTIONS(3726), - [anon_sym_SEMI] = ACTIONS(3726), - [sym_cmd_identifier] = ACTIONS(3726), - [anon_sym_LF] = ACTIONS(3728), - [anon_sym_def] = ACTIONS(3726), - [anon_sym_export_DASHenv] = ACTIONS(3726), - [anon_sym_extern] = ACTIONS(3726), - [anon_sym_module] = ACTIONS(3726), - [anon_sym_use] = ACTIONS(3726), - [anon_sym_LBRACK] = ACTIONS(3726), - [anon_sym_LPAREN] = ACTIONS(3726), - [anon_sym_DOLLAR] = ACTIONS(3726), - [anon_sym_error] = ACTIONS(3726), - [anon_sym_DASH_DASH] = ACTIONS(3788), - [anon_sym_DASH] = ACTIONS(3171), - [anon_sym_break] = ACTIONS(3726), - [anon_sym_continue] = ACTIONS(3726), - [anon_sym_for] = ACTIONS(3726), - [anon_sym_loop] = ACTIONS(3726), - [anon_sym_while] = ACTIONS(3726), - [anon_sym_do] = ACTIONS(3726), - [anon_sym_if] = ACTIONS(3726), - [anon_sym_match] = ACTIONS(3726), - [anon_sym_LBRACE] = ACTIONS(3726), - [anon_sym_DOT_DOT] = ACTIONS(3726), - [anon_sym_try] = ACTIONS(3726), - [anon_sym_return] = ACTIONS(3726), - [anon_sym_source] = ACTIONS(3726), - [anon_sym_source_DASHenv] = ACTIONS(3726), - [anon_sym_register] = ACTIONS(3726), - [anon_sym_hide] = ACTIONS(3726), - [anon_sym_hide_DASHenv] = ACTIONS(3726), - [anon_sym_overlay] = ACTIONS(3726), - [anon_sym_as] = ACTIONS(3800), - [anon_sym_where] = ACTIONS(3726), - [anon_sym_not] = ACTIONS(3726), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3726), - [anon_sym_DOT_DOT_LT] = ACTIONS(3726), - [anon_sym_null] = ACTIONS(3726), - [anon_sym_true] = ACTIONS(3726), - [anon_sym_false] = ACTIONS(3726), - [aux_sym__val_number_decimal_token1] = ACTIONS(3726), - [aux_sym__val_number_decimal_token2] = ACTIONS(3726), - [anon_sym_DOT2] = ACTIONS(3726), - [aux_sym__val_number_decimal_token3] = ACTIONS(3726), - [aux_sym__val_number_token1] = ACTIONS(3726), - [aux_sym__val_number_token2] = ACTIONS(3726), - [aux_sym__val_number_token3] = ACTIONS(3726), - [aux_sym__val_number_token4] = ACTIONS(3726), - [aux_sym__val_number_token5] = ACTIONS(3726), - [aux_sym__val_number_token6] = ACTIONS(3726), - [anon_sym_0b] = ACTIONS(3726), - [anon_sym_0o] = ACTIONS(3726), - [anon_sym_0x] = ACTIONS(3726), - [sym_val_date] = ACTIONS(3726), - [anon_sym_DQUOTE] = ACTIONS(3726), - [sym__str_single_quotes] = ACTIONS(3726), - [sym__str_back_ticks] = ACTIONS(3726), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3726), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3726), - [anon_sym_CARET] = ACTIONS(3726), - [anon_sym_POUND] = ACTIONS(113), + [1528] = { + [sym_expr_unary] = STATE(5693), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5693), + [sym__expr_binary_expression] = STATE(5738), + [sym_expr_parenthesized] = STATE(5693), + [sym__val_range] = STATE(10091), + [sym__value] = STATE(5693), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5277), + [sym_val_variable] = STATE(5711), + [sym__var] = STATE(4948), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(4212), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_unquoted] = STATE(5754), + [sym__unquoted_anonymous_prefix] = STATE(10316), + [sym_comment] = STATE(1528), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(4935), + [anon_sym_DOLLAR] = ACTIONS(4937), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(4939), + [anon_sym_not] = ACTIONS(4652), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4941), + [anon_sym_DOT_DOT_LT] = ACTIONS(4941), + [anon_sym_null] = ACTIONS(4656), + [anon_sym_true] = ACTIONS(4658), + [anon_sym_false] = ACTIONS(4658), + [aux_sym__val_number_decimal_token1] = ACTIONS(4660), + [aux_sym__val_number_decimal_token2] = ACTIONS(4662), + [anon_sym_DOT2] = ACTIONS(4943), + [aux_sym__val_number_decimal_token3] = ACTIONS(4666), + [aux_sym__val_number_token1] = ACTIONS(207), + [aux_sym__val_number_token2] = ACTIONS(207), + [aux_sym__val_number_token3] = ACTIONS(207), + [aux_sym__val_number_token4] = ACTIONS(4945), + [aux_sym__val_number_token5] = ACTIONS(4945), + [aux_sym__val_number_token6] = ACTIONS(4945), + [anon_sym_0b] = ACTIONS(211), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(4670), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym__str_single_quotes] = ACTIONS(219), + [sym__str_back_ticks] = ACTIONS(219), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2800), + [anon_sym_POUND] = ACTIONS(3), }, - [1323] = { - [sym__flag] = STATE(2514), - [sym_short_flag] = STATE(2425), - [sym_long_flag] = STATE(2425), - [sym_long_flag_equals_value] = STATE(2521), - [sym_comment] = STATE(1323), - [aux_sym_overlay_use_repeat1] = STATE(1340), - [ts_builtin_sym_end] = ACTIONS(3734), - [anon_sym_export] = ACTIONS(3732), - [anon_sym_alias] = ACTIONS(3732), - [anon_sym_let] = ACTIONS(3732), - [anon_sym_let_DASHenv] = ACTIONS(3732), - [anon_sym_mut] = ACTIONS(3732), - [anon_sym_const] = ACTIONS(3732), - [anon_sym_SEMI] = ACTIONS(3732), - [sym_cmd_identifier] = ACTIONS(3732), - [anon_sym_LF] = ACTIONS(3734), - [anon_sym_def] = ACTIONS(3732), - [anon_sym_export_DASHenv] = ACTIONS(3732), - [anon_sym_extern] = ACTIONS(3732), - [anon_sym_module] = ACTIONS(3732), - [anon_sym_use] = ACTIONS(3732), - [anon_sym_LBRACK] = ACTIONS(3732), - [anon_sym_LPAREN] = ACTIONS(3732), - [anon_sym_DOLLAR] = ACTIONS(3732), - [anon_sym_error] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3788), - [anon_sym_DASH] = ACTIONS(3732), - [anon_sym_break] = ACTIONS(3732), - [anon_sym_continue] = ACTIONS(3732), - [anon_sym_for] = ACTIONS(3732), - [anon_sym_loop] = ACTIONS(3732), - [anon_sym_while] = ACTIONS(3732), - [anon_sym_do] = ACTIONS(3732), - [anon_sym_if] = ACTIONS(3732), - [anon_sym_match] = ACTIONS(3732), - [anon_sym_LBRACE] = ACTIONS(3732), - [anon_sym_DOT_DOT] = ACTIONS(3732), - [anon_sym_try] = ACTIONS(3732), - [anon_sym_return] = ACTIONS(3732), - [anon_sym_source] = ACTIONS(3732), - [anon_sym_source_DASHenv] = ACTIONS(3732), - [anon_sym_register] = ACTIONS(3732), - [anon_sym_hide] = ACTIONS(3732), - [anon_sym_hide_DASHenv] = ACTIONS(3732), - [anon_sym_overlay] = ACTIONS(3732), - [anon_sym_as] = ACTIONS(3802), - [anon_sym_where] = ACTIONS(3732), - [anon_sym_not] = ACTIONS(3732), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3732), - [anon_sym_DOT_DOT_LT] = ACTIONS(3732), - [anon_sym_null] = ACTIONS(3732), - [anon_sym_true] = ACTIONS(3732), - [anon_sym_false] = ACTIONS(3732), - [aux_sym__val_number_decimal_token1] = ACTIONS(3732), - [aux_sym__val_number_decimal_token2] = ACTIONS(3732), - [anon_sym_DOT2] = ACTIONS(3732), - [aux_sym__val_number_decimal_token3] = ACTIONS(3732), - [aux_sym__val_number_token1] = ACTIONS(3732), - [aux_sym__val_number_token2] = ACTIONS(3732), - [aux_sym__val_number_token3] = ACTIONS(3732), - [aux_sym__val_number_token4] = ACTIONS(3732), - [aux_sym__val_number_token5] = ACTIONS(3732), - [aux_sym__val_number_token6] = ACTIONS(3732), - [anon_sym_0b] = ACTIONS(3732), - [anon_sym_0o] = ACTIONS(3732), - [anon_sym_0x] = ACTIONS(3732), - [sym_val_date] = ACTIONS(3732), - [anon_sym_DQUOTE] = ACTIONS(3732), - [sym__str_single_quotes] = ACTIONS(3732), - [sym__str_back_ticks] = ACTIONS(3732), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3732), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3732), - [anon_sym_CARET] = ACTIONS(3732), - [anon_sym_POUND] = ACTIONS(113), + [1529] = { + [sym_expr_unary] = STATE(5693), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5693), + [sym__expr_binary_expression] = STATE(5756), + [sym_expr_parenthesized] = STATE(5693), + [sym__val_range] = STATE(10091), + [sym__value] = STATE(5693), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5277), + [sym_val_variable] = STATE(5711), + [sym__var] = STATE(4948), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(4212), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_unquoted] = STATE(5761), + [sym__unquoted_anonymous_prefix] = STATE(10316), + [sym_comment] = STATE(1529), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(4935), + [anon_sym_DOLLAR] = ACTIONS(4937), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(4939), + [anon_sym_not] = ACTIONS(4652), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4941), + [anon_sym_DOT_DOT_LT] = ACTIONS(4941), + [anon_sym_null] = ACTIONS(4656), + [anon_sym_true] = ACTIONS(4658), + [anon_sym_false] = ACTIONS(4658), + [aux_sym__val_number_decimal_token1] = ACTIONS(4660), + [aux_sym__val_number_decimal_token2] = ACTIONS(4662), + [anon_sym_DOT2] = ACTIONS(4943), + [aux_sym__val_number_decimal_token3] = ACTIONS(4666), + [aux_sym__val_number_token1] = ACTIONS(207), + [aux_sym__val_number_token2] = ACTIONS(207), + [aux_sym__val_number_token3] = ACTIONS(207), + [aux_sym__val_number_token4] = ACTIONS(4945), + [aux_sym__val_number_token5] = ACTIONS(4945), + [aux_sym__val_number_token6] = ACTIONS(4945), + [anon_sym_0b] = ACTIONS(211), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(4670), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym__str_single_quotes] = ACTIONS(219), + [sym__str_back_ticks] = ACTIONS(219), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2800), + [anon_sym_POUND] = ACTIONS(3), }, - [1324] = { - [sym__immediate_decimal] = STATE(9346), - [sym_comment] = STATE(1324), - [ts_builtin_sym_end] = ACTIONS(938), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_error] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_where] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_DOT] = ACTIONS(3680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [aux_sym__immediate_decimal_token1] = ACTIONS(942), - [aux_sym__immediate_decimal_token3] = ACTIONS(942), - [aux_sym__immediate_decimal_token4] = ACTIONS(944), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [aux_sym_unquoted_token3] = ACTIONS(3682), - [aux_sym_unquoted_token5] = ACTIONS(3684), - [anon_sym_POUND] = ACTIONS(113), + [1530] = { + [sym_expr_unary] = STATE(5693), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5693), + [sym__expr_binary_expression] = STATE(5773), + [sym_expr_parenthesized] = STATE(5693), + [sym__val_range] = STATE(10091), + [sym__value] = STATE(5693), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5277), + [sym_val_variable] = STATE(5711), + [sym__var] = STATE(4948), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(4212), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_unquoted] = STATE(5774), + [sym__unquoted_anonymous_prefix] = STATE(10316), + [sym_comment] = STATE(1530), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(4935), + [anon_sym_DOLLAR] = ACTIONS(4937), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(4939), + [anon_sym_not] = ACTIONS(4652), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4941), + [anon_sym_DOT_DOT_LT] = ACTIONS(4941), + [anon_sym_null] = ACTIONS(4656), + [anon_sym_true] = ACTIONS(4658), + [anon_sym_false] = ACTIONS(4658), + [aux_sym__val_number_decimal_token1] = ACTIONS(4660), + [aux_sym__val_number_decimal_token2] = ACTIONS(4662), + [anon_sym_DOT2] = ACTIONS(4943), + [aux_sym__val_number_decimal_token3] = ACTIONS(4666), + [aux_sym__val_number_token1] = ACTIONS(207), + [aux_sym__val_number_token2] = ACTIONS(207), + [aux_sym__val_number_token3] = ACTIONS(207), + [aux_sym__val_number_token4] = ACTIONS(4945), + [aux_sym__val_number_token5] = ACTIONS(4945), + [aux_sym__val_number_token6] = ACTIONS(4945), + [anon_sym_0b] = ACTIONS(211), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(4670), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym__str_single_quotes] = ACTIONS(219), + [sym__str_back_ticks] = ACTIONS(219), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2800), + [anon_sym_POUND] = ACTIONS(3), }, - [1325] = { - [sym_comment] = STATE(1325), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_alias] = ACTIONS(1109), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_let_DASHenv] = ACTIONS(1109), - [anon_sym_mut] = ACTIONS(1109), - [anon_sym_const] = ACTIONS(1109), - [anon_sym_SEMI] = ACTIONS(1109), - [sym_cmd_identifier] = ACTIONS(1109), - [anon_sym_LF] = ACTIONS(1111), - [anon_sym_def] = ACTIONS(1109), - [anon_sym_export_DASHenv] = ACTIONS(1109), - [anon_sym_extern] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_use] = ACTIONS(1109), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_RPAREN] = ACTIONS(1109), - [anon_sym_DOLLAR] = ACTIONS(1109), - [anon_sym_error] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_break] = ACTIONS(1109), - [anon_sym_continue] = ACTIONS(1109), - [anon_sym_for] = ACTIONS(1109), - [anon_sym_loop] = ACTIONS(1109), - [anon_sym_while] = ACTIONS(1109), - [anon_sym_do] = ACTIONS(1109), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_RBRACE] = ACTIONS(1109), - [anon_sym_DOT_DOT] = ACTIONS(1109), - [anon_sym_try] = ACTIONS(1109), - [anon_sym_return] = ACTIONS(1109), - [anon_sym_source] = ACTIONS(1109), - [anon_sym_source_DASHenv] = ACTIONS(1109), - [anon_sym_register] = ACTIONS(1109), - [anon_sym_hide] = ACTIONS(1109), - [anon_sym_hide_DASHenv] = ACTIONS(1109), - [anon_sym_overlay] = ACTIONS(1109), - [anon_sym_as] = ACTIONS(1109), - [anon_sym_where] = ACTIONS(1109), - [anon_sym_not] = ACTIONS(1109), - [anon_sym_DOT_DOT2] = ACTIONS(1109), - [anon_sym_DOT] = ACTIONS(1109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1109), - [anon_sym_DOT_DOT_LT] = ACTIONS(1109), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1111), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1111), - [anon_sym_null] = ACTIONS(1109), - [anon_sym_true] = ACTIONS(1109), - [anon_sym_false] = ACTIONS(1109), - [aux_sym__val_number_decimal_token1] = ACTIONS(1109), - [aux_sym__val_number_decimal_token2] = ACTIONS(1109), - [anon_sym_DOT2] = ACTIONS(1109), - [aux_sym__val_number_decimal_token3] = ACTIONS(1109), - [aux_sym__val_number_token1] = ACTIONS(1109), - [aux_sym__val_number_token2] = ACTIONS(1109), - [aux_sym__val_number_token3] = ACTIONS(1109), - [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(1109), - [anon_sym_0o] = ACTIONS(1109), - [anon_sym_0x] = ACTIONS(1109), - [sym_val_date] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(1109), - [sym__str_single_quotes] = ACTIONS(1109), - [sym__str_back_ticks] = ACTIONS(1109), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1109), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1109), - [anon_sym_CARET] = ACTIONS(1109), - [anon_sym_POUND] = ACTIONS(113), + [1531] = { + [sym_expr_unary] = STATE(5693), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5693), + [sym__expr_binary_expression] = STATE(5775), + [sym_expr_parenthesized] = STATE(5693), + [sym__val_range] = STATE(10091), + [sym__value] = STATE(5693), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5277), + [sym_val_variable] = STATE(5711), + [sym__var] = STATE(4948), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(4212), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_unquoted] = STATE(5776), + [sym__unquoted_anonymous_prefix] = STATE(10316), + [sym_comment] = STATE(1531), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(4935), + [anon_sym_DOLLAR] = ACTIONS(4937), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(4939), + [anon_sym_not] = ACTIONS(4652), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4941), + [anon_sym_DOT_DOT_LT] = ACTIONS(4941), + [anon_sym_null] = ACTIONS(4656), + [anon_sym_true] = ACTIONS(4658), + [anon_sym_false] = ACTIONS(4658), + [aux_sym__val_number_decimal_token1] = ACTIONS(4660), + [aux_sym__val_number_decimal_token2] = ACTIONS(4662), + [anon_sym_DOT2] = ACTIONS(4943), + [aux_sym__val_number_decimal_token3] = ACTIONS(4666), + [aux_sym__val_number_token1] = ACTIONS(207), + [aux_sym__val_number_token2] = ACTIONS(207), + [aux_sym__val_number_token3] = ACTIONS(207), + [aux_sym__val_number_token4] = ACTIONS(4945), + [aux_sym__val_number_token5] = ACTIONS(4945), + [aux_sym__val_number_token6] = ACTIONS(4945), + [anon_sym_0b] = ACTIONS(211), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(4670), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym__str_single_quotes] = ACTIONS(219), + [sym__str_back_ticks] = ACTIONS(219), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2800), + [anon_sym_POUND] = ACTIONS(3), }, - [1326] = { - [sym_comment] = STATE(1326), - [ts_builtin_sym_end] = ACTIONS(2845), - [anon_sym_export] = ACTIONS(2843), - [anon_sym_alias] = ACTIONS(2843), - [anon_sym_let] = ACTIONS(2843), - [anon_sym_let_DASHenv] = ACTIONS(2843), - [anon_sym_mut] = ACTIONS(2843), - [anon_sym_const] = ACTIONS(2843), - [anon_sym_SEMI] = ACTIONS(2843), - [sym_cmd_identifier] = ACTIONS(2843), - [anon_sym_LF] = ACTIONS(2845), - [anon_sym_def] = ACTIONS(2843), - [anon_sym_export_DASHenv] = ACTIONS(2843), - [anon_sym_extern] = ACTIONS(2843), - [anon_sym_module] = ACTIONS(2843), - [anon_sym_use] = ACTIONS(2843), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_LPAREN] = ACTIONS(2843), - [anon_sym_DOLLAR] = ACTIONS(2843), - [anon_sym_error] = ACTIONS(2843), - [anon_sym_DASH_DASH] = ACTIONS(2843), - [anon_sym_DASH] = ACTIONS(2843), - [anon_sym_break] = ACTIONS(2843), - [anon_sym_continue] = ACTIONS(2843), - [anon_sym_for] = ACTIONS(2843), - [anon_sym_loop] = ACTIONS(2843), - [anon_sym_while] = ACTIONS(2843), - [anon_sym_do] = ACTIONS(2843), - [anon_sym_if] = ACTIONS(2843), - [anon_sym_match] = ACTIONS(2843), - [anon_sym_LBRACE] = ACTIONS(2843), - [anon_sym_DOT_DOT] = ACTIONS(2843), - [anon_sym_try] = ACTIONS(2843), - [anon_sym_return] = ACTIONS(2843), - [anon_sym_source] = ACTIONS(2843), - [anon_sym_source_DASHenv] = ACTIONS(2843), - [anon_sym_register] = ACTIONS(2843), - [anon_sym_hide] = ACTIONS(2843), - [anon_sym_hide_DASHenv] = ACTIONS(2843), - [anon_sym_overlay] = ACTIONS(2843), - [anon_sym_as] = ACTIONS(2843), - [anon_sym_where] = ACTIONS(2843), - [anon_sym_not] = ACTIONS(2843), - [anon_sym_DOT_DOT2] = ACTIONS(3804), - [anon_sym_DOT] = ACTIONS(2851), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2843), - [anon_sym_DOT_DOT_LT] = ACTIONS(2843), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3806), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3806), - [anon_sym_null] = ACTIONS(2843), - [anon_sym_true] = ACTIONS(2843), - [anon_sym_false] = ACTIONS(2843), - [aux_sym__val_number_decimal_token1] = ACTIONS(2843), - [aux_sym__val_number_decimal_token2] = ACTIONS(2843), - [anon_sym_DOT2] = ACTIONS(2843), - [aux_sym__val_number_decimal_token3] = ACTIONS(2843), - [aux_sym__val_number_token1] = ACTIONS(2843), - [aux_sym__val_number_token2] = ACTIONS(2843), - [aux_sym__val_number_token3] = ACTIONS(2843), - [aux_sym__val_number_token4] = ACTIONS(2843), - [aux_sym__val_number_token5] = ACTIONS(2843), - [aux_sym__val_number_token6] = ACTIONS(2843), - [anon_sym_0b] = ACTIONS(2843), - [anon_sym_0o] = ACTIONS(2843), - [anon_sym_0x] = ACTIONS(2843), - [sym_val_date] = ACTIONS(2843), - [anon_sym_DQUOTE] = ACTIONS(2843), - [sym__str_single_quotes] = ACTIONS(2843), - [sym__str_back_ticks] = ACTIONS(2843), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2843), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2843), - [anon_sym_CARET] = ACTIONS(2843), - [aux_sym_unquoted_token2] = ACTIONS(2851), + [1532] = { + [sym_comment] = STATE(1532), + [anon_sym_export] = ACTIONS(3721), + [anon_sym_alias] = ACTIONS(3721), + [anon_sym_let] = ACTIONS(3721), + [anon_sym_let_DASHenv] = ACTIONS(3721), + [anon_sym_mut] = ACTIONS(3721), + [anon_sym_const] = ACTIONS(3721), + [anon_sym_SEMI] = ACTIONS(3721), + [sym_cmd_identifier] = ACTIONS(3721), + [anon_sym_LF] = ACTIONS(3723), + [anon_sym_def] = ACTIONS(3721), + [anon_sym_export_DASHenv] = ACTIONS(3721), + [anon_sym_extern] = ACTIONS(3721), + [anon_sym_module] = ACTIONS(3721), + [anon_sym_use] = ACTIONS(3721), + [anon_sym_LBRACK] = ACTIONS(3721), + [anon_sym_LPAREN] = ACTIONS(3721), + [anon_sym_RPAREN] = ACTIONS(3721), + [anon_sym_DOLLAR] = ACTIONS(3721), + [anon_sym_error] = ACTIONS(3721), + [anon_sym_DASH_DASH] = ACTIONS(3721), + [anon_sym_DASH] = ACTIONS(3721), + [anon_sym_break] = ACTIONS(3721), + [anon_sym_continue] = ACTIONS(3721), + [anon_sym_for] = ACTIONS(3721), + [anon_sym_loop] = ACTIONS(3721), + [anon_sym_while] = ACTIONS(3721), + [anon_sym_do] = ACTIONS(3721), + [anon_sym_if] = ACTIONS(3721), + [anon_sym_match] = ACTIONS(3721), + [anon_sym_LBRACE] = ACTIONS(3721), + [anon_sym_RBRACE] = ACTIONS(3721), + [anon_sym_DOT_DOT] = ACTIONS(3721), + [anon_sym_try] = ACTIONS(3721), + [anon_sym_return] = ACTIONS(3721), + [anon_sym_source] = ACTIONS(3721), + [anon_sym_source_DASHenv] = ACTIONS(3721), + [anon_sym_register] = ACTIONS(3721), + [anon_sym_hide] = ACTIONS(3721), + [anon_sym_hide_DASHenv] = ACTIONS(3721), + [anon_sym_overlay] = ACTIONS(3721), + [anon_sym_as] = ACTIONS(3721), + [anon_sym_where] = ACTIONS(3721), + [anon_sym_not] = ACTIONS(3721), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3721), + [anon_sym_DOT_DOT_LT] = ACTIONS(3721), + [anon_sym_null] = ACTIONS(3721), + [anon_sym_true] = ACTIONS(3721), + [anon_sym_false] = ACTIONS(3721), + [aux_sym__val_number_decimal_token1] = ACTIONS(3721), + [aux_sym__val_number_decimal_token2] = ACTIONS(3721), + [anon_sym_DOT2] = ACTIONS(3721), + [aux_sym__val_number_decimal_token3] = ACTIONS(3721), + [aux_sym__val_number_token1] = ACTIONS(3721), + [aux_sym__val_number_token2] = ACTIONS(3721), + [aux_sym__val_number_token3] = ACTIONS(3721), + [aux_sym__val_number_token4] = ACTIONS(3721), + [aux_sym__val_number_token5] = ACTIONS(3721), + [aux_sym__val_number_token6] = ACTIONS(3721), + [anon_sym_0b] = ACTIONS(3721), + [anon_sym_0o] = ACTIONS(3721), + [anon_sym_0x] = ACTIONS(3721), + [sym_val_date] = ACTIONS(3721), + [anon_sym_DQUOTE] = ACTIONS(3721), + [sym__str_single_quotes] = ACTIONS(3721), + [sym__str_back_ticks] = ACTIONS(3721), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3721), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3721), + [anon_sym_CARET] = ACTIONS(3721), [anon_sym_POUND] = ACTIONS(113), }, - [1327] = { - [sym_comment] = STATE(1327), - [anon_sym_SEMI] = ACTIONS(923), - [anon_sym_LF] = ACTIONS(925), - [anon_sym_LBRACK] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_RPAREN] = ACTIONS(923), - [anon_sym_PIPE] = ACTIONS(923), - [anon_sym_DOLLAR] = ACTIONS(923), - [anon_sym_GT] = ACTIONS(923), - [anon_sym_DASH_DASH] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_in] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(923), - [anon_sym_RBRACE] = ACTIONS(923), - [anon_sym_DOT_DOT] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_STAR_STAR] = ACTIONS(923), - [anon_sym_PLUS_PLUS] = ACTIONS(923), - [anon_sym_SLASH] = ACTIONS(923), - [anon_sym_mod] = ACTIONS(923), - [anon_sym_SLASH_SLASH] = ACTIONS(923), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_bit_DASHshl] = ACTIONS(923), - [anon_sym_bit_DASHshr] = ACTIONS(923), - [anon_sym_EQ_EQ] = ACTIONS(923), - [anon_sym_BANG_EQ] = ACTIONS(923), - [anon_sym_LT2] = ACTIONS(923), - [anon_sym_LT_EQ] = ACTIONS(923), - [anon_sym_GT_EQ] = ACTIONS(923), - [anon_sym_not_DASHin] = ACTIONS(923), - [anon_sym_starts_DASHwith] = ACTIONS(923), - [anon_sym_ends_DASHwith] = ACTIONS(923), - [anon_sym_EQ_TILDE] = ACTIONS(923), - [anon_sym_BANG_TILDE] = ACTIONS(923), - [anon_sym_bit_DASHand] = ACTIONS(923), - [anon_sym_bit_DASHxor] = ACTIONS(923), - [anon_sym_bit_DASHor] = ACTIONS(923), - [anon_sym_and] = ACTIONS(923), - [anon_sym_xor] = ACTIONS(923), - [anon_sym_or] = ACTIONS(923), - [anon_sym_not] = ACTIONS(923), - [anon_sym_DOT_DOT2] = ACTIONS(923), - [anon_sym_DOT] = ACTIONS(3808), - [anon_sym_DOT_DOT_EQ] = ACTIONS(923), - [anon_sym_DOT_DOT_LT] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(925), - [anon_sym_DOT_DOT_LT2] = ACTIONS(925), - [aux_sym__immediate_decimal_token2] = ACTIONS(3772), - [anon_sym_null] = ACTIONS(923), - [anon_sym_true] = ACTIONS(923), - [anon_sym_false] = ACTIONS(923), - [aux_sym__val_number_decimal_token1] = ACTIONS(923), - [aux_sym__val_number_decimal_token2] = ACTIONS(923), - [anon_sym_DOT2] = ACTIONS(923), - [aux_sym__val_number_decimal_token3] = ACTIONS(923), - [aux_sym__val_number_token1] = ACTIONS(923), - [aux_sym__val_number_token2] = ACTIONS(923), - [aux_sym__val_number_token3] = ACTIONS(923), - [aux_sym__val_number_token4] = ACTIONS(923), - [aux_sym__val_number_token5] = ACTIONS(923), - [aux_sym__val_number_token6] = ACTIONS(923), - [anon_sym_0b] = ACTIONS(923), - [sym_filesize_unit] = ACTIONS(923), - [sym_duration_unit] = ACTIONS(925), - [anon_sym_0o] = ACTIONS(923), - [anon_sym_0x] = ACTIONS(923), - [sym_val_date] = ACTIONS(923), - [anon_sym_DQUOTE] = ACTIONS(923), - [sym__str_single_quotes] = ACTIONS(923), - [sym__str_back_ticks] = ACTIONS(923), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(923), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), - [aux_sym_unquoted_token5] = ACTIONS(923), - [anon_sym_POUND] = ACTIONS(113), + [1533] = { + [sym_expr_unary] = STATE(5693), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5693), + [sym__expr_binary_expression] = STATE(5777), + [sym_expr_parenthesized] = STATE(5693), + [sym__val_range] = STATE(10091), + [sym__value] = STATE(5693), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5277), + [sym_val_variable] = STATE(5711), + [sym__var] = STATE(4948), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(4212), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_unquoted] = STATE(5778), + [sym__unquoted_anonymous_prefix] = STATE(10316), + [sym_comment] = STATE(1533), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(4935), + [anon_sym_DOLLAR] = ACTIONS(4937), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(4939), + [anon_sym_not] = ACTIONS(4652), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4941), + [anon_sym_DOT_DOT_LT] = ACTIONS(4941), + [anon_sym_null] = ACTIONS(4656), + [anon_sym_true] = ACTIONS(4658), + [anon_sym_false] = ACTIONS(4658), + [aux_sym__val_number_decimal_token1] = ACTIONS(4660), + [aux_sym__val_number_decimal_token2] = ACTIONS(4662), + [anon_sym_DOT2] = ACTIONS(4943), + [aux_sym__val_number_decimal_token3] = ACTIONS(4666), + [aux_sym__val_number_token1] = ACTIONS(207), + [aux_sym__val_number_token2] = ACTIONS(207), + [aux_sym__val_number_token3] = ACTIONS(207), + [aux_sym__val_number_token4] = ACTIONS(4945), + [aux_sym__val_number_token5] = ACTIONS(4945), + [aux_sym__val_number_token6] = ACTIONS(4945), + [anon_sym_0b] = ACTIONS(211), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(4670), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym__str_single_quotes] = ACTIONS(219), + [sym__str_back_ticks] = ACTIONS(219), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2800), + [anon_sym_POUND] = ACTIONS(3), }, - [1328] = { - [sym_comment] = STATE(1328), - [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), - [anon_sym_SEMI] = ACTIONS(2437), - [sym_cmd_identifier] = ACTIONS(2437), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_RPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_DASH_DASH] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_RBRACE] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_as] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_not] = ACTIONS(2437), - [anon_sym_DOT] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [aux_sym__immediate_decimal_token1] = ACTIONS(3811), - [aux_sym__immediate_decimal_token2] = ACTIONS(3813), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [anon_sym_DOT2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2437), - [anon_sym_0o] = ACTIONS(2437), - [anon_sym_0x] = ACTIONS(2437), - [sym_val_date] = 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_CARET] = ACTIONS(2437), - [aux_sym_unquoted_token2] = ACTIONS(2437), - [anon_sym_POUND] = ACTIONS(113), + [1534] = { + [sym_expr_unary] = STATE(5693), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5693), + [sym__expr_binary_expression] = STATE(5779), + [sym_expr_parenthesized] = STATE(5693), + [sym__val_range] = STATE(10091), + [sym__value] = STATE(5693), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5277), + [sym_val_variable] = STATE(5711), + [sym__var] = STATE(4948), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(4212), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_unquoted] = STATE(5782), + [sym__unquoted_anonymous_prefix] = STATE(10316), + [sym_comment] = STATE(1534), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(4935), + [anon_sym_DOLLAR] = ACTIONS(4937), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(4939), + [anon_sym_not] = ACTIONS(4652), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4941), + [anon_sym_DOT_DOT_LT] = ACTIONS(4941), + [anon_sym_null] = ACTIONS(4656), + [anon_sym_true] = ACTIONS(4658), + [anon_sym_false] = ACTIONS(4658), + [aux_sym__val_number_decimal_token1] = ACTIONS(4660), + [aux_sym__val_number_decimal_token2] = ACTIONS(4662), + [anon_sym_DOT2] = ACTIONS(4943), + [aux_sym__val_number_decimal_token3] = ACTIONS(4666), + [aux_sym__val_number_token1] = ACTIONS(207), + [aux_sym__val_number_token2] = ACTIONS(207), + [aux_sym__val_number_token3] = ACTIONS(207), + [aux_sym__val_number_token4] = ACTIONS(4945), + [aux_sym__val_number_token5] = ACTIONS(4945), + [aux_sym__val_number_token6] = ACTIONS(4945), + [anon_sym_0b] = ACTIONS(211), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(4670), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym__str_single_quotes] = ACTIONS(219), + [sym__str_back_ticks] = ACTIONS(219), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2800), + [anon_sym_POUND] = ACTIONS(3), }, - [1329] = { - [sym_comment] = STATE(1329), - [anon_sym_export] = ACTIONS(1113), - [anon_sym_alias] = ACTIONS(1113), - [anon_sym_let] = ACTIONS(1113), - [anon_sym_let_DASHenv] = ACTIONS(1113), - [anon_sym_mut] = ACTIONS(1113), - [anon_sym_const] = ACTIONS(1113), - [anon_sym_SEMI] = ACTIONS(1113), - [sym_cmd_identifier] = ACTIONS(1113), - [anon_sym_LF] = ACTIONS(1115), - [anon_sym_def] = ACTIONS(1113), - [anon_sym_export_DASHenv] = ACTIONS(1113), - [anon_sym_extern] = ACTIONS(1113), - [anon_sym_module] = ACTIONS(1113), - [anon_sym_use] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_RPAREN] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1113), - [anon_sym_error] = ACTIONS(1113), - [anon_sym_DASH_DASH] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_loop] = ACTIONS(1113), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_RBRACE] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1113), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_source] = ACTIONS(1113), - [anon_sym_source_DASHenv] = ACTIONS(1113), - [anon_sym_register] = ACTIONS(1113), - [anon_sym_hide] = ACTIONS(1113), - [anon_sym_hide_DASHenv] = ACTIONS(1113), - [anon_sym_overlay] = ACTIONS(1113), - [anon_sym_as] = ACTIONS(1113), - [anon_sym_where] = ACTIONS(1113), - [anon_sym_not] = ACTIONS(1113), - [anon_sym_DOT_DOT2] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1113), - [anon_sym_DOT_DOT_LT] = ACTIONS(1113), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1115), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1113), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1113), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_decimal_token2] = ACTIONS(1113), - [anon_sym_DOT2] = ACTIONS(1113), - [aux_sym__val_number_decimal_token3] = ACTIONS(1113), - [aux_sym__val_number_token1] = ACTIONS(1113), - [aux_sym__val_number_token2] = ACTIONS(1113), - [aux_sym__val_number_token3] = ACTIONS(1113), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1113), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_0b] = ACTIONS(1113), - [anon_sym_0o] = ACTIONS(1113), - [anon_sym_0x] = ACTIONS(1113), - [sym_val_date] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym__str_single_quotes] = ACTIONS(1113), - [sym__str_back_ticks] = ACTIONS(1113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), - [anon_sym_CARET] = ACTIONS(1113), - [anon_sym_POUND] = ACTIONS(113), + [1535] = { + [sym_expr_unary] = STATE(5693), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5693), + [sym__expr_binary_expression] = STATE(5788), + [sym_expr_parenthesized] = STATE(5693), + [sym__val_range] = STATE(10091), + [sym__value] = STATE(5693), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5277), + [sym_val_variable] = STATE(5711), + [sym__var] = STATE(4948), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(4212), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_unquoted] = STATE(5823), + [sym__unquoted_anonymous_prefix] = STATE(10316), + [sym_comment] = STATE(1535), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(4935), + [anon_sym_DOLLAR] = ACTIONS(4937), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(4939), + [anon_sym_not] = ACTIONS(4652), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4941), + [anon_sym_DOT_DOT_LT] = ACTIONS(4941), + [anon_sym_null] = ACTIONS(4656), + [anon_sym_true] = ACTIONS(4658), + [anon_sym_false] = ACTIONS(4658), + [aux_sym__val_number_decimal_token1] = ACTIONS(4660), + [aux_sym__val_number_decimal_token2] = ACTIONS(4662), + [anon_sym_DOT2] = ACTIONS(4943), + [aux_sym__val_number_decimal_token3] = ACTIONS(4666), + [aux_sym__val_number_token1] = ACTIONS(207), + [aux_sym__val_number_token2] = ACTIONS(207), + [aux_sym__val_number_token3] = ACTIONS(207), + [aux_sym__val_number_token4] = ACTIONS(4945), + [aux_sym__val_number_token5] = ACTIONS(4945), + [aux_sym__val_number_token6] = ACTIONS(4945), + [anon_sym_0b] = ACTIONS(211), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(4670), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym__str_single_quotes] = ACTIONS(219), + [sym__str_back_ticks] = ACTIONS(219), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2800), + [anon_sym_POUND] = ACTIONS(3), }, - [1330] = { - [sym_comment] = STATE(1330), - [ts_builtin_sym_end] = ACTIONS(2439), - [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), - [anon_sym_SEMI] = ACTIONS(2437), - [sym_cmd_identifier] = ACTIONS(2437), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_DASH_DASH] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_as] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_not] = ACTIONS(2437), - [anon_sym_LPAREN2] = ACTIONS(2439), - [anon_sym_DOT] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [aux_sym__immediate_decimal_token1] = ACTIONS(3815), - [aux_sym__immediate_decimal_token2] = ACTIONS(3817), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [anon_sym_DOT2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2437), - [anon_sym_0o] = ACTIONS(2437), - [anon_sym_0x] = ACTIONS(2437), - [sym_val_date] = 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_CARET] = ACTIONS(2437), - [aux_sym_unquoted_token2] = ACTIONS(2437), + [1536] = { + [sym_comment] = STATE(1536), + [anon_sym_export] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_let] = ACTIONS(3711), + [anon_sym_let_DASHenv] = ACTIONS(3711), + [anon_sym_mut] = ACTIONS(3711), + [anon_sym_const] = ACTIONS(3711), + [anon_sym_SEMI] = ACTIONS(3711), + [sym_cmd_identifier] = ACTIONS(3711), + [anon_sym_LF] = ACTIONS(3713), + [anon_sym_def] = ACTIONS(3711), + [anon_sym_export_DASHenv] = ACTIONS(3711), + [anon_sym_extern] = ACTIONS(3711), + [anon_sym_module] = ACTIONS(3711), + [anon_sym_use] = ACTIONS(3711), + [anon_sym_LBRACK] = ACTIONS(3711), + [anon_sym_LPAREN] = ACTIONS(3711), + [anon_sym_RPAREN] = ACTIONS(3711), + [anon_sym_DOLLAR] = ACTIONS(3711), + [anon_sym_error] = ACTIONS(3711), + [anon_sym_DASH_DASH] = ACTIONS(3711), + [anon_sym_DASH] = ACTIONS(3711), + [anon_sym_break] = ACTIONS(3711), + [anon_sym_continue] = ACTIONS(3711), + [anon_sym_for] = ACTIONS(3711), + [anon_sym_loop] = ACTIONS(3711), + [anon_sym_while] = ACTIONS(3711), + [anon_sym_do] = ACTIONS(3711), + [anon_sym_if] = ACTIONS(3711), + [anon_sym_match] = ACTIONS(3711), + [anon_sym_LBRACE] = ACTIONS(3711), + [anon_sym_RBRACE] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3711), + [anon_sym_try] = ACTIONS(3711), + [anon_sym_return] = ACTIONS(3711), + [anon_sym_source] = ACTIONS(3711), + [anon_sym_source_DASHenv] = ACTIONS(3711), + [anon_sym_register] = ACTIONS(3711), + [anon_sym_hide] = ACTIONS(3711), + [anon_sym_hide_DASHenv] = ACTIONS(3711), + [anon_sym_overlay] = ACTIONS(3711), + [anon_sym_as] = ACTIONS(3711), + [anon_sym_where] = ACTIONS(3711), + [anon_sym_not] = ACTIONS(3711), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3711), + [anon_sym_DOT_DOT_LT] = ACTIONS(3711), + [anon_sym_null] = ACTIONS(3711), + [anon_sym_true] = ACTIONS(3711), + [anon_sym_false] = ACTIONS(3711), + [aux_sym__val_number_decimal_token1] = ACTIONS(3711), + [aux_sym__val_number_decimal_token2] = ACTIONS(3711), + [anon_sym_DOT2] = ACTIONS(3711), + [aux_sym__val_number_decimal_token3] = ACTIONS(3711), + [aux_sym__val_number_token1] = ACTIONS(3711), + [aux_sym__val_number_token2] = ACTIONS(3711), + [aux_sym__val_number_token3] = ACTIONS(3711), + [aux_sym__val_number_token4] = ACTIONS(3711), + [aux_sym__val_number_token5] = ACTIONS(3711), + [aux_sym__val_number_token6] = ACTIONS(3711), + [anon_sym_0b] = ACTIONS(3711), + [anon_sym_0o] = ACTIONS(3711), + [anon_sym_0x] = ACTIONS(3711), + [sym_val_date] = ACTIONS(3711), + [anon_sym_DQUOTE] = ACTIONS(3711), + [sym__str_single_quotes] = ACTIONS(3711), + [sym__str_back_ticks] = ACTIONS(3711), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3711), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), + [anon_sym_CARET] = ACTIONS(3711), [anon_sym_POUND] = ACTIONS(113), }, - [1331] = { - [sym_comment] = STATE(1331), - [anon_sym_export] = ACTIONS(1117), - [anon_sym_alias] = ACTIONS(1117), - [anon_sym_let] = ACTIONS(1117), - [anon_sym_let_DASHenv] = ACTIONS(1117), - [anon_sym_mut] = ACTIONS(1117), - [anon_sym_const] = ACTIONS(1117), - [anon_sym_SEMI] = ACTIONS(1117), - [sym_cmd_identifier] = ACTIONS(1117), - [anon_sym_LF] = ACTIONS(1119), - [anon_sym_def] = ACTIONS(1117), - [anon_sym_export_DASHenv] = ACTIONS(1117), - [anon_sym_extern] = ACTIONS(1117), - [anon_sym_module] = ACTIONS(1117), - [anon_sym_use] = ACTIONS(1117), - [anon_sym_LBRACK] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1117), - [anon_sym_RPAREN] = ACTIONS(1117), - [anon_sym_DOLLAR] = ACTIONS(1117), - [anon_sym_error] = ACTIONS(1117), - [anon_sym_DASH_DASH] = ACTIONS(1117), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_break] = ACTIONS(1117), - [anon_sym_continue] = ACTIONS(1117), - [anon_sym_for] = ACTIONS(1117), - [anon_sym_loop] = ACTIONS(1117), - [anon_sym_while] = ACTIONS(1117), - [anon_sym_do] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1117), - [anon_sym_LBRACE] = ACTIONS(1117), - [anon_sym_RBRACE] = ACTIONS(1117), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_try] = ACTIONS(1117), - [anon_sym_return] = ACTIONS(1117), - [anon_sym_source] = ACTIONS(1117), - [anon_sym_source_DASHenv] = ACTIONS(1117), - [anon_sym_register] = ACTIONS(1117), - [anon_sym_hide] = ACTIONS(1117), - [anon_sym_hide_DASHenv] = ACTIONS(1117), - [anon_sym_overlay] = ACTIONS(1117), - [anon_sym_as] = ACTIONS(1117), - [anon_sym_where] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1117), - [anon_sym_DOT_DOT2] = ACTIONS(1117), - [anon_sym_DOT] = ACTIONS(1117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1117), - [anon_sym_DOT_DOT_LT] = ACTIONS(1117), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1119), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1119), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_true] = ACTIONS(1117), - [anon_sym_false] = ACTIONS(1117), - [aux_sym__val_number_decimal_token1] = ACTIONS(1117), - [aux_sym__val_number_decimal_token2] = ACTIONS(1117), - [anon_sym_DOT2] = ACTIONS(1117), - [aux_sym__val_number_decimal_token3] = ACTIONS(1117), - [aux_sym__val_number_token1] = ACTIONS(1117), - [aux_sym__val_number_token2] = ACTIONS(1117), - [aux_sym__val_number_token3] = ACTIONS(1117), - [aux_sym__val_number_token4] = ACTIONS(1117), - [aux_sym__val_number_token5] = ACTIONS(1117), - [aux_sym__val_number_token6] = ACTIONS(1117), - [anon_sym_0b] = ACTIONS(1117), - [anon_sym_0o] = ACTIONS(1117), - [anon_sym_0x] = ACTIONS(1117), - [sym_val_date] = ACTIONS(1117), - [anon_sym_DQUOTE] = ACTIONS(1117), - [sym__str_single_quotes] = ACTIONS(1117), - [sym__str_back_ticks] = ACTIONS(1117), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1117), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1117), - [anon_sym_CARET] = ACTIONS(1117), - [anon_sym_POUND] = ACTIONS(113), + [1537] = { + [sym_expr_unary] = STATE(5693), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5693), + [sym__expr_binary_expression] = STATE(5824), + [sym_expr_parenthesized] = STATE(5693), + [sym__val_range] = STATE(10091), + [sym__value] = STATE(5693), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5277), + [sym_val_variable] = STATE(5711), + [sym__var] = STATE(4948), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(4212), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_unquoted] = STATE(5827), + [sym__unquoted_anonymous_prefix] = STATE(10316), + [sym_comment] = STATE(1537), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(4935), + [anon_sym_DOLLAR] = ACTIONS(4937), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(4939), + [anon_sym_not] = ACTIONS(4652), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4941), + [anon_sym_DOT_DOT_LT] = ACTIONS(4941), + [anon_sym_null] = ACTIONS(4656), + [anon_sym_true] = ACTIONS(4658), + [anon_sym_false] = ACTIONS(4658), + [aux_sym__val_number_decimal_token1] = ACTIONS(4660), + [aux_sym__val_number_decimal_token2] = ACTIONS(4662), + [anon_sym_DOT2] = ACTIONS(4943), + [aux_sym__val_number_decimal_token3] = ACTIONS(4666), + [aux_sym__val_number_token1] = ACTIONS(207), + [aux_sym__val_number_token2] = ACTIONS(207), + [aux_sym__val_number_token3] = ACTIONS(207), + [aux_sym__val_number_token4] = ACTIONS(4945), + [aux_sym__val_number_token5] = ACTIONS(4945), + [aux_sym__val_number_token6] = ACTIONS(4945), + [anon_sym_0b] = ACTIONS(211), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(4670), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym__str_single_quotes] = ACTIONS(219), + [sym__str_back_ticks] = ACTIONS(219), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2800), + [anon_sym_POUND] = ACTIONS(3), }, - [1332] = { - [sym_comment] = STATE(1332), - [anon_sym_export] = ACTIONS(2581), - [anon_sym_alias] = ACTIONS(2581), - [anon_sym_let] = ACTIONS(2581), - [anon_sym_let_DASHenv] = ACTIONS(2581), - [anon_sym_mut] = ACTIONS(2581), - [anon_sym_const] = ACTIONS(2581), - [anon_sym_SEMI] = ACTIONS(2581), - [sym_cmd_identifier] = ACTIONS(2581), - [anon_sym_LF] = ACTIONS(2583), - [anon_sym_def] = ACTIONS(2581), - [anon_sym_export_DASHenv] = ACTIONS(2581), - [anon_sym_extern] = ACTIONS(2581), - [anon_sym_module] = ACTIONS(2581), - [anon_sym_use] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2581), - [anon_sym_RPAREN] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2581), - [anon_sym_error] = ACTIONS(2581), - [anon_sym_DASH_DASH] = ACTIONS(2581), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_break] = ACTIONS(2581), - [anon_sym_continue] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2581), - [anon_sym_loop] = ACTIONS(2581), - [anon_sym_while] = ACTIONS(2581), - [anon_sym_do] = ACTIONS(2581), - [anon_sym_if] = ACTIONS(2581), - [anon_sym_match] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2581), - [anon_sym_RBRACE] = ACTIONS(2581), - [anon_sym_DOT_DOT] = ACTIONS(2581), - [anon_sym_try] = ACTIONS(2581), - [anon_sym_return] = ACTIONS(2581), - [anon_sym_source] = ACTIONS(2581), - [anon_sym_source_DASHenv] = ACTIONS(2581), - [anon_sym_register] = ACTIONS(2581), - [anon_sym_hide] = ACTIONS(2581), - [anon_sym_hide_DASHenv] = ACTIONS(2581), - [anon_sym_overlay] = ACTIONS(2581), - [anon_sym_as] = ACTIONS(2581), - [anon_sym_where] = ACTIONS(2581), - [anon_sym_not] = ACTIONS(2581), - [anon_sym_LPAREN2] = ACTIONS(2583), - [anon_sym_DOT] = ACTIONS(3819), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2581), - [anon_sym_DOT_DOT_LT] = ACTIONS(2581), - [aux_sym__immediate_decimal_token2] = ACTIONS(3822), - [anon_sym_null] = ACTIONS(2581), - [anon_sym_true] = ACTIONS(2581), - [anon_sym_false] = ACTIONS(2581), - [aux_sym__val_number_decimal_token1] = ACTIONS(2581), - [aux_sym__val_number_decimal_token2] = ACTIONS(2581), - [anon_sym_DOT2] = ACTIONS(2581), - [aux_sym__val_number_decimal_token3] = ACTIONS(2581), - [aux_sym__val_number_token1] = ACTIONS(2581), - [aux_sym__val_number_token2] = ACTIONS(2581), - [aux_sym__val_number_token3] = ACTIONS(2581), - [aux_sym__val_number_token4] = ACTIONS(2581), - [aux_sym__val_number_token5] = ACTIONS(2581), - [aux_sym__val_number_token6] = ACTIONS(2581), - [anon_sym_0b] = ACTIONS(2581), - [anon_sym_0o] = ACTIONS(2581), - [anon_sym_0x] = ACTIONS(2581), - [sym_val_date] = ACTIONS(2581), - [anon_sym_DQUOTE] = ACTIONS(2581), - [sym__str_single_quotes] = ACTIONS(2581), - [sym__str_back_ticks] = ACTIONS(2581), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2581), - [anon_sym_CARET] = ACTIONS(2581), - [aux_sym_unquoted_token2] = ACTIONS(2581), + [1538] = { + [sym_comment] = STATE(1538), + [anon_sym_export] = ACTIONS(4955), + [anon_sym_alias] = ACTIONS(4955), + [anon_sym_let] = ACTIONS(4955), + [anon_sym_let_DASHenv] = ACTIONS(4955), + [anon_sym_mut] = ACTIONS(4955), + [anon_sym_const] = ACTIONS(4955), + [anon_sym_SEMI] = ACTIONS(4955), + [sym_cmd_identifier] = ACTIONS(4955), + [anon_sym_LF] = ACTIONS(4957), + [anon_sym_def] = ACTIONS(4955), + [anon_sym_export_DASHenv] = ACTIONS(4955), + [anon_sym_extern] = ACTIONS(4955), + [anon_sym_module] = ACTIONS(4955), + [anon_sym_use] = ACTIONS(4955), + [anon_sym_LBRACK] = ACTIONS(4955), + [anon_sym_LPAREN] = ACTIONS(4955), + [anon_sym_RPAREN] = ACTIONS(4955), + [anon_sym_DOLLAR] = ACTIONS(4955), + [anon_sym_error] = ACTIONS(4955), + [anon_sym_DASH_DASH] = ACTIONS(4955), + [anon_sym_DASH] = ACTIONS(4955), + [anon_sym_break] = ACTIONS(4955), + [anon_sym_continue] = ACTIONS(4955), + [anon_sym_for] = ACTIONS(4955), + [anon_sym_loop] = ACTIONS(4955), + [anon_sym_while] = ACTIONS(4955), + [anon_sym_do] = ACTIONS(4955), + [anon_sym_if] = ACTIONS(4955), + [anon_sym_match] = ACTIONS(4955), + [anon_sym_LBRACE] = ACTIONS(4955), + [anon_sym_RBRACE] = ACTIONS(4955), + [anon_sym_DOT_DOT] = ACTIONS(4955), + [anon_sym_try] = ACTIONS(4955), + [anon_sym_return] = ACTIONS(4955), + [anon_sym_source] = ACTIONS(4955), + [anon_sym_source_DASHenv] = ACTIONS(4955), + [anon_sym_register] = ACTIONS(4955), + [anon_sym_hide] = ACTIONS(4955), + [anon_sym_hide_DASHenv] = ACTIONS(4955), + [anon_sym_overlay] = ACTIONS(4955), + [anon_sym_as] = ACTIONS(4955), + [anon_sym_where] = ACTIONS(4955), + [anon_sym_not] = ACTIONS(4955), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4955), + [anon_sym_DOT_DOT_LT] = ACTIONS(4955), + [anon_sym_null] = ACTIONS(4955), + [anon_sym_true] = ACTIONS(4955), + [anon_sym_false] = ACTIONS(4955), + [aux_sym__val_number_decimal_token1] = ACTIONS(4955), + [aux_sym__val_number_decimal_token2] = ACTIONS(4955), + [anon_sym_DOT2] = ACTIONS(4955), + [aux_sym__val_number_decimal_token3] = ACTIONS(4955), + [aux_sym__val_number_token1] = ACTIONS(4955), + [aux_sym__val_number_token2] = ACTIONS(4955), + [aux_sym__val_number_token3] = ACTIONS(4955), + [aux_sym__val_number_token4] = ACTIONS(4955), + [aux_sym__val_number_token5] = ACTIONS(4955), + [aux_sym__val_number_token6] = ACTIONS(4955), + [anon_sym_0b] = ACTIONS(4955), + [anon_sym_0o] = ACTIONS(4955), + [anon_sym_0x] = ACTIONS(4955), + [sym_val_date] = ACTIONS(4955), + [anon_sym_DQUOTE] = ACTIONS(4955), + [sym__str_single_quotes] = ACTIONS(4955), + [sym__str_back_ticks] = ACTIONS(4955), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4955), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4955), + [anon_sym_CARET] = ACTIONS(4955), [anon_sym_POUND] = ACTIONS(113), }, - [1333] = { - [sym_comment] = STATE(1333), - [anon_sym_export] = ACTIONS(2581), - [anon_sym_alias] = ACTIONS(2581), - [anon_sym_let] = ACTIONS(2581), - [anon_sym_let_DASHenv] = ACTIONS(2581), - [anon_sym_mut] = ACTIONS(2581), - [anon_sym_const] = ACTIONS(2581), - [anon_sym_SEMI] = ACTIONS(2581), - [sym_cmd_identifier] = ACTIONS(2581), - [anon_sym_LF] = ACTIONS(2583), - [anon_sym_def] = ACTIONS(2581), - [anon_sym_export_DASHenv] = ACTIONS(2581), - [anon_sym_extern] = ACTIONS(2581), - [anon_sym_module] = ACTIONS(2581), - [anon_sym_use] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2581), - [anon_sym_RPAREN] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2581), - [anon_sym_error] = ACTIONS(2581), - [anon_sym_DASH_DASH] = ACTIONS(2581), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_break] = ACTIONS(2581), - [anon_sym_continue] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2581), - [anon_sym_loop] = ACTIONS(2581), - [anon_sym_while] = ACTIONS(2581), - [anon_sym_do] = ACTIONS(2581), - [anon_sym_if] = ACTIONS(2581), - [anon_sym_match] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2581), - [anon_sym_RBRACE] = ACTIONS(2581), - [anon_sym_DOT_DOT] = ACTIONS(2581), - [anon_sym_try] = ACTIONS(2581), - [anon_sym_return] = ACTIONS(2581), - [anon_sym_source] = ACTIONS(2581), - [anon_sym_source_DASHenv] = ACTIONS(2581), - [anon_sym_register] = ACTIONS(2581), - [anon_sym_hide] = ACTIONS(2581), - [anon_sym_hide_DASHenv] = ACTIONS(2581), - [anon_sym_overlay] = ACTIONS(2581), - [anon_sym_as] = ACTIONS(2581), - [anon_sym_where] = ACTIONS(2581), - [anon_sym_not] = ACTIONS(2581), - [anon_sym_LPAREN2] = ACTIONS(2583), - [anon_sym_DOT] = ACTIONS(2581), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2581), - [anon_sym_DOT_DOT_LT] = ACTIONS(2581), - [aux_sym__immediate_decimal_token2] = ACTIONS(3822), - [anon_sym_null] = ACTIONS(2581), - [anon_sym_true] = ACTIONS(2581), - [anon_sym_false] = ACTIONS(2581), - [aux_sym__val_number_decimal_token1] = ACTIONS(2581), - [aux_sym__val_number_decimal_token2] = ACTIONS(2581), - [anon_sym_DOT2] = ACTIONS(2581), - [aux_sym__val_number_decimal_token3] = ACTIONS(2581), - [aux_sym__val_number_token1] = ACTIONS(2581), - [aux_sym__val_number_token2] = ACTIONS(2581), - [aux_sym__val_number_token3] = ACTIONS(2581), - [aux_sym__val_number_token4] = ACTIONS(2581), - [aux_sym__val_number_token5] = ACTIONS(2581), - [aux_sym__val_number_token6] = ACTIONS(2581), - [anon_sym_0b] = ACTIONS(2581), - [anon_sym_0o] = ACTIONS(2581), - [anon_sym_0x] = ACTIONS(2581), - [sym_val_date] = ACTIONS(2581), - [anon_sym_DQUOTE] = ACTIONS(2581), - [sym__str_single_quotes] = ACTIONS(2581), - [sym__str_back_ticks] = ACTIONS(2581), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2581), - [anon_sym_CARET] = ACTIONS(2581), - [aux_sym_unquoted_token2] = ACTIONS(2581), + [1539] = { + [sym_comment] = STATE(1539), + [anon_sym_export] = ACTIONS(4959), + [anon_sym_alias] = ACTIONS(4959), + [anon_sym_let] = ACTIONS(4959), + [anon_sym_let_DASHenv] = ACTIONS(4959), + [anon_sym_mut] = ACTIONS(4959), + [anon_sym_const] = ACTIONS(4959), + [anon_sym_SEMI] = ACTIONS(4959), + [sym_cmd_identifier] = ACTIONS(4959), + [anon_sym_LF] = ACTIONS(4961), + [anon_sym_def] = ACTIONS(4959), + [anon_sym_export_DASHenv] = ACTIONS(4959), + [anon_sym_extern] = ACTIONS(4959), + [anon_sym_module] = ACTIONS(4959), + [anon_sym_use] = ACTIONS(4959), + [anon_sym_LBRACK] = ACTIONS(4959), + [anon_sym_LPAREN] = ACTIONS(4959), + [anon_sym_RPAREN] = ACTIONS(4959), + [anon_sym_DOLLAR] = ACTIONS(4959), + [anon_sym_error] = ACTIONS(4959), + [anon_sym_DASH_DASH] = ACTIONS(4959), + [anon_sym_DASH] = ACTIONS(4959), + [anon_sym_break] = ACTIONS(4959), + [anon_sym_continue] = ACTIONS(4959), + [anon_sym_for] = ACTIONS(4959), + [anon_sym_loop] = ACTIONS(4959), + [anon_sym_while] = ACTIONS(4959), + [anon_sym_do] = ACTIONS(4959), + [anon_sym_if] = ACTIONS(4959), + [anon_sym_match] = ACTIONS(4959), + [anon_sym_LBRACE] = ACTIONS(4959), + [anon_sym_RBRACE] = ACTIONS(4959), + [anon_sym_DOT_DOT] = ACTIONS(4959), + [anon_sym_try] = ACTIONS(4959), + [anon_sym_return] = ACTIONS(4959), + [anon_sym_source] = ACTIONS(4959), + [anon_sym_source_DASHenv] = ACTIONS(4959), + [anon_sym_register] = ACTIONS(4959), + [anon_sym_hide] = ACTIONS(4959), + [anon_sym_hide_DASHenv] = ACTIONS(4959), + [anon_sym_overlay] = ACTIONS(4959), + [anon_sym_as] = ACTIONS(4959), + [anon_sym_where] = ACTIONS(4959), + [anon_sym_not] = ACTIONS(4959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4959), + [anon_sym_DOT_DOT_LT] = ACTIONS(4959), + [anon_sym_null] = ACTIONS(4959), + [anon_sym_true] = ACTIONS(4959), + [anon_sym_false] = ACTIONS(4959), + [aux_sym__val_number_decimal_token1] = ACTIONS(4959), + [aux_sym__val_number_decimal_token2] = ACTIONS(4959), + [anon_sym_DOT2] = ACTIONS(4959), + [aux_sym__val_number_decimal_token3] = ACTIONS(4959), + [aux_sym__val_number_token1] = ACTIONS(4959), + [aux_sym__val_number_token2] = ACTIONS(4959), + [aux_sym__val_number_token3] = ACTIONS(4959), + [aux_sym__val_number_token4] = ACTIONS(4959), + [aux_sym__val_number_token5] = ACTIONS(4959), + [aux_sym__val_number_token6] = ACTIONS(4959), + [anon_sym_0b] = ACTIONS(4959), + [anon_sym_0o] = ACTIONS(4959), + [anon_sym_0x] = ACTIONS(4959), + [sym_val_date] = ACTIONS(4959), + [anon_sym_DQUOTE] = ACTIONS(4959), + [sym__str_single_quotes] = ACTIONS(4959), + [sym__str_back_ticks] = ACTIONS(4959), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4959), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4959), + [anon_sym_CARET] = ACTIONS(4959), [anon_sym_POUND] = ACTIONS(113), }, - [1334] = { - [sym_comment] = STATE(1334), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_COMMA] = ACTIONS(1109), - [anon_sym_RBRACK] = ACTIONS(1109), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_DOLLAR] = ACTIONS(1109), - [anon_sym_GT] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_in] = ACTIONS(1109), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_DOT_DOT] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_STAR_STAR] = ACTIONS(1109), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_SLASH] = ACTIONS(1109), - [anon_sym_mod] = ACTIONS(1109), - [anon_sym_SLASH_SLASH] = ACTIONS(1109), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_bit_DASHshl] = ACTIONS(1109), - [anon_sym_bit_DASHshr] = ACTIONS(1109), - [anon_sym_EQ_EQ] = ACTIONS(1109), - [anon_sym_BANG_EQ] = ACTIONS(1109), - [anon_sym_LT2] = ACTIONS(1109), - [anon_sym_LT_EQ] = ACTIONS(1109), - [anon_sym_GT_EQ] = ACTIONS(1109), - [anon_sym_not_DASHin] = ACTIONS(1109), - [anon_sym_starts_DASHwith] = ACTIONS(1109), - [anon_sym_ends_DASHwith] = ACTIONS(1109), - [anon_sym_EQ_TILDE] = ACTIONS(1109), - [anon_sym_BANG_TILDE] = ACTIONS(1109), - [anon_sym_bit_DASHand] = ACTIONS(1109), - [anon_sym_bit_DASHxor] = ACTIONS(1109), - [anon_sym_bit_DASHor] = ACTIONS(1109), - [anon_sym_and] = ACTIONS(1109), - [anon_sym_xor] = ACTIONS(1109), - [anon_sym_or] = ACTIONS(1109), - [anon_sym_DOT_DOT2] = ACTIONS(1109), - [anon_sym_DOT] = ACTIONS(1109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1109), - [anon_sym_DOT_DOT_LT] = ACTIONS(1109), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1111), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1111), - [anon_sym_null] = ACTIONS(1109), - [anon_sym_true] = ACTIONS(1109), - [anon_sym_false] = ACTIONS(1109), - [aux_sym__val_number_decimal_token1] = ACTIONS(1109), - [aux_sym__val_number_decimal_token2] = ACTIONS(1109), - [anon_sym_DOT2] = ACTIONS(1109), - [aux_sym__val_number_decimal_token3] = ACTIONS(1109), - [aux_sym__val_number_token1] = ACTIONS(1109), - [aux_sym__val_number_token2] = ACTIONS(1109), - [aux_sym__val_number_token3] = ACTIONS(1109), - [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(1109), - [anon_sym_0o] = ACTIONS(1109), - [anon_sym_0x] = ACTIONS(1109), - [sym_val_date] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(1109), - [sym__str_single_quotes] = ACTIONS(1109), - [sym__str_back_ticks] = ACTIONS(1109), - [sym__entry_separator] = ACTIONS(1111), - [anon_sym_err_GT] = ACTIONS(1109), - [anon_sym_out_GT] = ACTIONS(1109), - [anon_sym_e_GT] = ACTIONS(1109), - [anon_sym_o_GT] = ACTIONS(1109), - [anon_sym_err_PLUSout_GT] = ACTIONS(1109), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1109), - [anon_sym_o_PLUSe_GT] = ACTIONS(1109), - [anon_sym_e_PLUSo_GT] = ACTIONS(1109), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1109), + [1540] = { + [sym_comment] = STATE(1540), + [anon_sym_export] = ACTIONS(4963), + [anon_sym_alias] = ACTIONS(4963), + [anon_sym_let] = ACTIONS(4963), + [anon_sym_let_DASHenv] = ACTIONS(4963), + [anon_sym_mut] = ACTIONS(4963), + [anon_sym_const] = ACTIONS(4963), + [anon_sym_SEMI] = ACTIONS(4963), + [sym_cmd_identifier] = ACTIONS(4963), + [anon_sym_LF] = ACTIONS(4965), + [anon_sym_def] = ACTIONS(4963), + [anon_sym_export_DASHenv] = ACTIONS(4963), + [anon_sym_extern] = ACTIONS(4963), + [anon_sym_module] = ACTIONS(4963), + [anon_sym_use] = ACTIONS(4963), + [anon_sym_LBRACK] = ACTIONS(4963), + [anon_sym_LPAREN] = ACTIONS(4963), + [anon_sym_RPAREN] = ACTIONS(4963), + [anon_sym_DOLLAR] = ACTIONS(4963), + [anon_sym_error] = ACTIONS(4963), + [anon_sym_DASH_DASH] = ACTIONS(4963), + [anon_sym_DASH] = ACTIONS(4963), + [anon_sym_break] = ACTIONS(4963), + [anon_sym_continue] = ACTIONS(4963), + [anon_sym_for] = ACTIONS(4963), + [anon_sym_loop] = ACTIONS(4963), + [anon_sym_while] = ACTIONS(4963), + [anon_sym_do] = ACTIONS(4963), + [anon_sym_if] = ACTIONS(4963), + [anon_sym_match] = ACTIONS(4963), + [anon_sym_LBRACE] = ACTIONS(4963), + [anon_sym_RBRACE] = ACTIONS(4963), + [anon_sym_DOT_DOT] = ACTIONS(4963), + [anon_sym_try] = ACTIONS(4963), + [anon_sym_return] = ACTIONS(4963), + [anon_sym_source] = ACTIONS(4963), + [anon_sym_source_DASHenv] = ACTIONS(4963), + [anon_sym_register] = ACTIONS(4963), + [anon_sym_hide] = ACTIONS(4963), + [anon_sym_hide_DASHenv] = ACTIONS(4963), + [anon_sym_overlay] = ACTIONS(4963), + [anon_sym_as] = ACTIONS(4963), + [anon_sym_where] = ACTIONS(4963), + [anon_sym_not] = ACTIONS(4963), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4963), + [anon_sym_DOT_DOT_LT] = ACTIONS(4963), + [anon_sym_null] = ACTIONS(4963), + [anon_sym_true] = ACTIONS(4963), + [anon_sym_false] = ACTIONS(4963), + [aux_sym__val_number_decimal_token1] = ACTIONS(4963), + [aux_sym__val_number_decimal_token2] = ACTIONS(4963), + [anon_sym_DOT2] = ACTIONS(4963), + [aux_sym__val_number_decimal_token3] = ACTIONS(4963), + [aux_sym__val_number_token1] = ACTIONS(4963), + [aux_sym__val_number_token2] = ACTIONS(4963), + [aux_sym__val_number_token3] = ACTIONS(4963), + [aux_sym__val_number_token4] = ACTIONS(4963), + [aux_sym__val_number_token5] = ACTIONS(4963), + [aux_sym__val_number_token6] = ACTIONS(4963), + [anon_sym_0b] = ACTIONS(4963), + [anon_sym_0o] = ACTIONS(4963), + [anon_sym_0x] = ACTIONS(4963), + [sym_val_date] = ACTIONS(4963), + [anon_sym_DQUOTE] = ACTIONS(4963), + [sym__str_single_quotes] = ACTIONS(4963), + [sym__str_back_ticks] = ACTIONS(4963), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4963), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4963), + [anon_sym_CARET] = ACTIONS(4963), [anon_sym_POUND] = ACTIONS(113), }, - [1335] = { - [sym_comment] = STATE(1335), - [anon_sym_export] = ACTIONS(2581), - [anon_sym_alias] = ACTIONS(2581), - [anon_sym_let] = ACTIONS(2581), - [anon_sym_let_DASHenv] = ACTIONS(2581), - [anon_sym_mut] = ACTIONS(2581), - [anon_sym_const] = ACTIONS(2581), - [anon_sym_SEMI] = ACTIONS(2581), - [sym_cmd_identifier] = ACTIONS(2581), - [anon_sym_LF] = ACTIONS(2583), - [anon_sym_def] = ACTIONS(2581), - [anon_sym_export_DASHenv] = ACTIONS(2581), - [anon_sym_extern] = ACTIONS(2581), - [anon_sym_module] = ACTIONS(2581), - [anon_sym_use] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2581), - [anon_sym_RPAREN] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2581), - [anon_sym_error] = ACTIONS(2581), - [anon_sym_DASH_DASH] = ACTIONS(2581), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_break] = ACTIONS(2581), - [anon_sym_continue] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2581), - [anon_sym_loop] = ACTIONS(2581), - [anon_sym_while] = ACTIONS(2581), - [anon_sym_do] = ACTIONS(2581), - [anon_sym_if] = ACTIONS(2581), - [anon_sym_match] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2581), - [anon_sym_RBRACE] = ACTIONS(2581), - [anon_sym_DOT_DOT] = ACTIONS(2581), - [anon_sym_try] = ACTIONS(2581), - [anon_sym_return] = ACTIONS(2581), - [anon_sym_source] = ACTIONS(2581), - [anon_sym_source_DASHenv] = ACTIONS(2581), - [anon_sym_register] = ACTIONS(2581), - [anon_sym_hide] = ACTIONS(2581), - [anon_sym_hide_DASHenv] = ACTIONS(2581), - [anon_sym_overlay] = ACTIONS(2581), - [anon_sym_as] = ACTIONS(2581), - [anon_sym_where] = ACTIONS(2581), - [anon_sym_not] = ACTIONS(2581), - [anon_sym_DOT_DOT2] = ACTIONS(2581), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2581), - [anon_sym_DOT_DOT_LT] = ACTIONS(2581), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2583), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2583), - [aux_sym__immediate_decimal_token2] = ACTIONS(3657), - [anon_sym_null] = ACTIONS(2581), - [anon_sym_true] = ACTIONS(2581), - [anon_sym_false] = ACTIONS(2581), - [aux_sym__val_number_decimal_token1] = ACTIONS(2581), - [aux_sym__val_number_decimal_token2] = ACTIONS(2581), - [anon_sym_DOT2] = ACTIONS(2581), - [aux_sym__val_number_decimal_token3] = ACTIONS(2581), - [aux_sym__val_number_token1] = ACTIONS(2581), - [aux_sym__val_number_token2] = ACTIONS(2581), - [aux_sym__val_number_token3] = ACTIONS(2581), - [aux_sym__val_number_token4] = ACTIONS(2581), - [aux_sym__val_number_token5] = ACTIONS(2581), - [aux_sym__val_number_token6] = ACTIONS(2581), - [anon_sym_0b] = ACTIONS(2581), - [anon_sym_0o] = ACTIONS(2581), - [anon_sym_0x] = ACTIONS(2581), - [sym_val_date] = ACTIONS(2581), - [anon_sym_DQUOTE] = ACTIONS(2581), - [sym__str_single_quotes] = ACTIONS(2581), - [sym__str_back_ticks] = ACTIONS(2581), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2581), - [anon_sym_CARET] = ACTIONS(2581), + [1541] = { + [sym_comment] = STATE(1541), + [anon_sym_export] = ACTIONS(1249), + [anon_sym_alias] = ACTIONS(1249), + [anon_sym_let] = ACTIONS(1249), + [anon_sym_let_DASHenv] = ACTIONS(1249), + [anon_sym_mut] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1249), + [sym_cmd_identifier] = ACTIONS(1249), + [anon_sym_LF] = ACTIONS(1251), + [anon_sym_def] = ACTIONS(1249), + [anon_sym_export_DASHenv] = ACTIONS(1249), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_module] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1249), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1249), + [anon_sym_DOLLAR] = ACTIONS(1249), + [anon_sym_error] = ACTIONS(1249), + [anon_sym_DASH_DASH] = ACTIONS(1249), + [anon_sym_DASH] = ACTIONS(1249), + [anon_sym_break] = ACTIONS(1249), + [anon_sym_continue] = ACTIONS(1249), + [anon_sym_for] = ACTIONS(1249), + [anon_sym_loop] = ACTIONS(1249), + [anon_sym_while] = ACTIONS(1249), + [anon_sym_do] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1249), + [anon_sym_match] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_RBRACE] = ACTIONS(1249), + [anon_sym_DOT_DOT] = ACTIONS(1249), + [anon_sym_try] = ACTIONS(1249), + [anon_sym_return] = ACTIONS(1249), + [anon_sym_source] = ACTIONS(1249), + [anon_sym_source_DASHenv] = ACTIONS(1249), + [anon_sym_register] = ACTIONS(1249), + [anon_sym_hide] = ACTIONS(1249), + [anon_sym_hide_DASHenv] = ACTIONS(1249), + [anon_sym_overlay] = ACTIONS(1249), + [anon_sym_as] = ACTIONS(1249), + [anon_sym_where] = ACTIONS(1249), + [anon_sym_not] = ACTIONS(1249), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1249), + [anon_sym_DOT_DOT_LT] = ACTIONS(1249), + [anon_sym_null] = ACTIONS(1249), + [anon_sym_true] = ACTIONS(1249), + [anon_sym_false] = ACTIONS(1249), + [aux_sym__val_number_decimal_token1] = ACTIONS(1249), + [aux_sym__val_number_decimal_token2] = ACTIONS(1249), + [anon_sym_DOT2] = ACTIONS(1249), + [aux_sym__val_number_decimal_token3] = ACTIONS(1249), + [aux_sym__val_number_token1] = ACTIONS(1249), + [aux_sym__val_number_token2] = ACTIONS(1249), + [aux_sym__val_number_token3] = ACTIONS(1249), + [aux_sym__val_number_token4] = ACTIONS(1249), + [aux_sym__val_number_token5] = ACTIONS(1249), + [aux_sym__val_number_token6] = ACTIONS(1249), + [anon_sym_0b] = ACTIONS(1249), + [anon_sym_0o] = ACTIONS(1249), + [anon_sym_0x] = ACTIONS(1249), + [sym_val_date] = ACTIONS(1249), + [anon_sym_DQUOTE] = ACTIONS(1249), + [sym__str_single_quotes] = ACTIONS(1249), + [sym__str_back_ticks] = ACTIONS(1249), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1249), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1249), + [anon_sym_CARET] = ACTIONS(1249), [anon_sym_POUND] = ACTIONS(113), }, - [1336] = { - [sym_comment] = STATE(1336), - [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), - [anon_sym_SEMI] = ACTIONS(2437), - [sym_cmd_identifier] = ACTIONS(2437), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_RPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_DASH_DASH] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_RBRACE] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_as] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_not] = ACTIONS(2437), - [anon_sym_LPAREN2] = ACTIONS(2439), - [anon_sym_DOT] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [aux_sym__immediate_decimal_token2] = ACTIONS(3740), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [anon_sym_DOT2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2437), - [anon_sym_0o] = ACTIONS(2437), - [anon_sym_0x] = ACTIONS(2437), - [sym_val_date] = 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_CARET] = ACTIONS(2437), - [aux_sym_unquoted_token2] = ACTIONS(2437), - [anon_sym_POUND] = ACTIONS(113), + [1542] = { + [sym_expr_unary] = STATE(5557), + [sym__expr_unary_minus] = STATE(5679), + [sym_expr_binary] = STATE(5557), + [sym__expr_binary_expression] = STATE(5563), + [sym_expr_parenthesized] = STATE(5557), + [sym__val_range] = STATE(10121), + [sym__value] = STATE(5557), + [sym_val_nothing] = STATE(5612), + [sym_val_bool] = STATE(5297), + [sym_val_variable] = STATE(5612), + [sym__var] = STATE(4858), + [sym_val_number] = STATE(5612), + [sym__val_number_decimal] = STATE(4084), + [sym__val_number] = STATE(5661), + [sym_val_duration] = STATE(5612), + [sym_val_filesize] = STATE(5612), + [sym_val_binary] = STATE(5612), + [sym_val_string] = STATE(5612), + [sym__str_double_quotes] = STATE(5733), + [sym_val_interpolated] = STATE(5612), + [sym__inter_single_quotes] = STATE(5590), + [sym__inter_double_quotes] = STATE(5591), + [sym_val_list] = STATE(5612), + [sym_val_record] = STATE(5612), + [sym_val_table] = STATE(5612), + [sym_val_closure] = STATE(5612), + [sym_unquoted] = STATE(5569), + [sym__unquoted_anonymous_prefix] = STATE(10500), + [sym_comment] = STATE(1542), + [anon_sym_LBRACK] = ACTIONS(2663), + [anon_sym_LPAREN] = ACTIONS(4967), + [anon_sym_DOLLAR] = ACTIONS(4969), + [anon_sym_DASH] = ACTIONS(4398), + [anon_sym_LBRACE] = ACTIONS(2673), + [anon_sym_DOT_DOT] = ACTIONS(4971), + [anon_sym_not] = ACTIONS(4402), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4973), + [anon_sym_DOT_DOT_LT] = ACTIONS(4973), + [anon_sym_null] = ACTIONS(4406), + [anon_sym_true] = ACTIONS(4408), + [anon_sym_false] = ACTIONS(4408), + [aux_sym__val_number_decimal_token1] = ACTIONS(4410), + [aux_sym__val_number_decimal_token2] = ACTIONS(4412), + [anon_sym_DOT2] = ACTIONS(4975), + [aux_sym__val_number_decimal_token3] = ACTIONS(4416), + [aux_sym__val_number_token1] = ACTIONS(2691), + [aux_sym__val_number_token2] = ACTIONS(2691), + [aux_sym__val_number_token3] = ACTIONS(2691), + [aux_sym__val_number_token4] = ACTIONS(4418), + [aux_sym__val_number_token5] = ACTIONS(4418), + [aux_sym__val_number_token6] = ACTIONS(4418), + [anon_sym_0b] = ACTIONS(2695), + [anon_sym_0o] = ACTIONS(2697), + [anon_sym_0x] = ACTIONS(2697), + [sym_val_date] = ACTIONS(4420), + [anon_sym_DQUOTE] = ACTIONS(2701), + [sym__str_single_quotes] = ACTIONS(2703), + [sym__str_back_ticks] = ACTIONS(2703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2705), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2707), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2711), + [anon_sym_POUND] = ACTIONS(3), }, - [1337] = { - [sym_comment] = STATE(1337), - [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), - [anon_sym_SEMI] = ACTIONS(2437), - [sym_cmd_identifier] = ACTIONS(2437), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_RPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_DASH_DASH] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_RBRACE] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_as] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_not] = ACTIONS(2437), - [anon_sym_DOT_DOT2] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2439), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2439), - [aux_sym__immediate_decimal_token2] = ACTIONS(3716), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [anon_sym_DOT2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2437), - [anon_sym_0o] = ACTIONS(2437), - [anon_sym_0x] = ACTIONS(2437), - [sym_val_date] = 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_CARET] = ACTIONS(2437), - [anon_sym_POUND] = ACTIONS(113), + [1543] = { + [sym_expr_unary] = STATE(5557), + [sym__expr_unary_minus] = STATE(5679), + [sym_expr_binary] = STATE(5557), + [sym__expr_binary_expression] = STATE(5571), + [sym_expr_parenthesized] = STATE(5557), + [sym__val_range] = STATE(10121), + [sym__value] = STATE(5557), + [sym_val_nothing] = STATE(5612), + [sym_val_bool] = STATE(5297), + [sym_val_variable] = STATE(5612), + [sym__var] = STATE(4858), + [sym_val_number] = STATE(5612), + [sym__val_number_decimal] = STATE(4084), + [sym__val_number] = STATE(5661), + [sym_val_duration] = STATE(5612), + [sym_val_filesize] = STATE(5612), + [sym_val_binary] = STATE(5612), + [sym_val_string] = STATE(5612), + [sym__str_double_quotes] = STATE(5733), + [sym_val_interpolated] = STATE(5612), + [sym__inter_single_quotes] = STATE(5590), + [sym__inter_double_quotes] = STATE(5591), + [sym_val_list] = STATE(5612), + [sym_val_record] = STATE(5612), + [sym_val_table] = STATE(5612), + [sym_val_closure] = STATE(5612), + [sym_unquoted] = STATE(5577), + [sym__unquoted_anonymous_prefix] = STATE(10500), + [sym_comment] = STATE(1543), + [anon_sym_LBRACK] = ACTIONS(2663), + [anon_sym_LPAREN] = ACTIONS(4967), + [anon_sym_DOLLAR] = ACTIONS(4969), + [anon_sym_DASH] = ACTIONS(4398), + [anon_sym_LBRACE] = ACTIONS(2673), + [anon_sym_DOT_DOT] = ACTIONS(4971), + [anon_sym_not] = ACTIONS(4402), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4973), + [anon_sym_DOT_DOT_LT] = ACTIONS(4973), + [anon_sym_null] = ACTIONS(4406), + [anon_sym_true] = ACTIONS(4408), + [anon_sym_false] = ACTIONS(4408), + [aux_sym__val_number_decimal_token1] = ACTIONS(4410), + [aux_sym__val_number_decimal_token2] = ACTIONS(4412), + [anon_sym_DOT2] = ACTIONS(4975), + [aux_sym__val_number_decimal_token3] = ACTIONS(4416), + [aux_sym__val_number_token1] = ACTIONS(2691), + [aux_sym__val_number_token2] = ACTIONS(2691), + [aux_sym__val_number_token3] = ACTIONS(2691), + [aux_sym__val_number_token4] = ACTIONS(4418), + [aux_sym__val_number_token5] = ACTIONS(4418), + [aux_sym__val_number_token6] = ACTIONS(4418), + [anon_sym_0b] = ACTIONS(2695), + [anon_sym_0o] = ACTIONS(2697), + [anon_sym_0x] = ACTIONS(2697), + [sym_val_date] = ACTIONS(4420), + [anon_sym_DQUOTE] = ACTIONS(2701), + [sym__str_single_quotes] = ACTIONS(2703), + [sym__str_back_ticks] = ACTIONS(2703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2705), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2707), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2711), + [anon_sym_POUND] = ACTIONS(3), }, - [1338] = { - [sym_comment] = STATE(1338), - [ts_builtin_sym_end] = ACTIONS(2583), - [anon_sym_export] = ACTIONS(2581), - [anon_sym_alias] = ACTIONS(2581), - [anon_sym_let] = ACTIONS(2581), - [anon_sym_let_DASHenv] = ACTIONS(2581), - [anon_sym_mut] = ACTIONS(2581), - [anon_sym_const] = ACTIONS(2581), - [anon_sym_SEMI] = ACTIONS(2581), - [sym_cmd_identifier] = ACTIONS(2581), - [anon_sym_LF] = ACTIONS(2583), - [anon_sym_def] = ACTIONS(2581), - [anon_sym_export_DASHenv] = ACTIONS(2581), - [anon_sym_extern] = ACTIONS(2581), - [anon_sym_module] = ACTIONS(2581), - [anon_sym_use] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2581), - [anon_sym_error] = ACTIONS(2581), - [anon_sym_DASH_DASH] = ACTIONS(2581), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_break] = ACTIONS(2581), - [anon_sym_continue] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2581), - [anon_sym_loop] = ACTIONS(2581), - [anon_sym_while] = ACTIONS(2581), - [anon_sym_do] = ACTIONS(2581), - [anon_sym_if] = ACTIONS(2581), - [anon_sym_match] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2581), - [anon_sym_DOT_DOT] = ACTIONS(2581), - [anon_sym_try] = ACTIONS(2581), - [anon_sym_return] = ACTIONS(2581), - [anon_sym_source] = ACTIONS(2581), - [anon_sym_source_DASHenv] = ACTIONS(2581), - [anon_sym_register] = ACTIONS(2581), - [anon_sym_hide] = ACTIONS(2581), - [anon_sym_hide_DASHenv] = ACTIONS(2581), - [anon_sym_overlay] = ACTIONS(2581), - [anon_sym_as] = ACTIONS(2581), - [anon_sym_where] = ACTIONS(2581), - [anon_sym_not] = ACTIONS(2581), - [anon_sym_DOT_DOT2] = ACTIONS(2581), - [anon_sym_DOT] = ACTIONS(3824), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2581), - [anon_sym_DOT_DOT_LT] = ACTIONS(2581), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2583), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2583), - [aux_sym__immediate_decimal_token2] = ACTIONS(3826), - [anon_sym_null] = ACTIONS(2581), - [anon_sym_true] = ACTIONS(2581), - [anon_sym_false] = ACTIONS(2581), - [aux_sym__val_number_decimal_token1] = ACTIONS(2581), - [aux_sym__val_number_decimal_token2] = ACTIONS(2581), - [anon_sym_DOT2] = ACTIONS(2581), - [aux_sym__val_number_decimal_token3] = ACTIONS(2581), - [aux_sym__val_number_token1] = ACTIONS(2581), - [aux_sym__val_number_token2] = ACTIONS(2581), - [aux_sym__val_number_token3] = ACTIONS(2581), - [aux_sym__val_number_token4] = ACTIONS(2581), - [aux_sym__val_number_token5] = ACTIONS(2581), - [aux_sym__val_number_token6] = ACTIONS(2581), - [anon_sym_0b] = ACTIONS(2581), - [anon_sym_0o] = ACTIONS(2581), - [anon_sym_0x] = ACTIONS(2581), - [sym_val_date] = ACTIONS(2581), - [anon_sym_DQUOTE] = ACTIONS(2581), - [sym__str_single_quotes] = ACTIONS(2581), - [sym__str_back_ticks] = ACTIONS(2581), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2581), - [anon_sym_CARET] = ACTIONS(2581), - [anon_sym_POUND] = ACTIONS(113), + [1544] = { + [sym_expr_unary] = STATE(5557), + [sym__expr_unary_minus] = STATE(5679), + [sym_expr_binary] = STATE(5557), + [sym__expr_binary_expression] = STATE(5579), + [sym_expr_parenthesized] = STATE(5557), + [sym__val_range] = STATE(10121), + [sym__value] = STATE(5557), + [sym_val_nothing] = STATE(5612), + [sym_val_bool] = STATE(5297), + [sym_val_variable] = STATE(5612), + [sym__var] = STATE(4858), + [sym_val_number] = STATE(5612), + [sym__val_number_decimal] = STATE(4084), + [sym__val_number] = STATE(5661), + [sym_val_duration] = STATE(5612), + [sym_val_filesize] = STATE(5612), + [sym_val_binary] = STATE(5612), + [sym_val_string] = STATE(5612), + [sym__str_double_quotes] = STATE(5733), + [sym_val_interpolated] = STATE(5612), + [sym__inter_single_quotes] = STATE(5590), + [sym__inter_double_quotes] = STATE(5591), + [sym_val_list] = STATE(5612), + [sym_val_record] = STATE(5612), + [sym_val_table] = STATE(5612), + [sym_val_closure] = STATE(5612), + [sym_unquoted] = STATE(5587), + [sym__unquoted_anonymous_prefix] = STATE(10500), + [sym_comment] = STATE(1544), + [anon_sym_LBRACK] = ACTIONS(2663), + [anon_sym_LPAREN] = ACTIONS(4967), + [anon_sym_DOLLAR] = ACTIONS(4969), + [anon_sym_DASH] = ACTIONS(4398), + [anon_sym_LBRACE] = ACTIONS(2673), + [anon_sym_DOT_DOT] = ACTIONS(4971), + [anon_sym_not] = ACTIONS(4402), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4973), + [anon_sym_DOT_DOT_LT] = ACTIONS(4973), + [anon_sym_null] = ACTIONS(4406), + [anon_sym_true] = ACTIONS(4408), + [anon_sym_false] = ACTIONS(4408), + [aux_sym__val_number_decimal_token1] = ACTIONS(4410), + [aux_sym__val_number_decimal_token2] = ACTIONS(4412), + [anon_sym_DOT2] = ACTIONS(4975), + [aux_sym__val_number_decimal_token3] = ACTIONS(4416), + [aux_sym__val_number_token1] = ACTIONS(2691), + [aux_sym__val_number_token2] = ACTIONS(2691), + [aux_sym__val_number_token3] = ACTIONS(2691), + [aux_sym__val_number_token4] = ACTIONS(4418), + [aux_sym__val_number_token5] = ACTIONS(4418), + [aux_sym__val_number_token6] = ACTIONS(4418), + [anon_sym_0b] = ACTIONS(2695), + [anon_sym_0o] = ACTIONS(2697), + [anon_sym_0x] = ACTIONS(2697), + [sym_val_date] = ACTIONS(4420), + [anon_sym_DQUOTE] = ACTIONS(2701), + [sym__str_single_quotes] = ACTIONS(2703), + [sym__str_back_ticks] = ACTIONS(2703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2705), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2707), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2711), + [anon_sym_POUND] = ACTIONS(3), }, - [1339] = { - [sym_comment] = STATE(1339), - [anon_sym_LBRACK] = ACTIONS(1113), - [anon_sym_COMMA] = ACTIONS(1113), - [anon_sym_RBRACK] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1113), - [anon_sym_GT] = ACTIONS(1113), - [anon_sym_DASH_DASH] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_in] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_STAR_STAR] = ACTIONS(1113), - [anon_sym_PLUS_PLUS] = ACTIONS(1113), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_mod] = ACTIONS(1113), - [anon_sym_SLASH_SLASH] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_bit_DASHshl] = ACTIONS(1113), - [anon_sym_bit_DASHshr] = ACTIONS(1113), - [anon_sym_EQ_EQ] = ACTIONS(1113), - [anon_sym_BANG_EQ] = ACTIONS(1113), - [anon_sym_LT2] = ACTIONS(1113), - [anon_sym_LT_EQ] = ACTIONS(1113), - [anon_sym_GT_EQ] = ACTIONS(1113), - [anon_sym_not_DASHin] = ACTIONS(1113), - [anon_sym_starts_DASHwith] = ACTIONS(1113), - [anon_sym_ends_DASHwith] = ACTIONS(1113), - [anon_sym_EQ_TILDE] = ACTIONS(1113), - [anon_sym_BANG_TILDE] = ACTIONS(1113), - [anon_sym_bit_DASHand] = ACTIONS(1113), - [anon_sym_bit_DASHxor] = ACTIONS(1113), - [anon_sym_bit_DASHor] = ACTIONS(1113), - [anon_sym_and] = ACTIONS(1113), - [anon_sym_xor] = ACTIONS(1113), - [anon_sym_or] = ACTIONS(1113), - [anon_sym_DOT_DOT2] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1113), - [anon_sym_DOT_DOT_LT] = ACTIONS(1113), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1115), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1113), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1113), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_decimal_token2] = ACTIONS(1113), - [anon_sym_DOT2] = ACTIONS(1113), - [aux_sym__val_number_decimal_token3] = ACTIONS(1113), - [aux_sym__val_number_token1] = ACTIONS(1113), - [aux_sym__val_number_token2] = ACTIONS(1113), - [aux_sym__val_number_token3] = ACTIONS(1113), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1113), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_0b] = ACTIONS(1113), - [anon_sym_0o] = ACTIONS(1113), - [anon_sym_0x] = ACTIONS(1113), - [sym_val_date] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym__str_single_quotes] = ACTIONS(1113), - [sym__str_back_ticks] = ACTIONS(1113), - [sym__entry_separator] = ACTIONS(1115), - [anon_sym_err_GT] = ACTIONS(1113), - [anon_sym_out_GT] = ACTIONS(1113), - [anon_sym_e_GT] = ACTIONS(1113), - [anon_sym_o_GT] = ACTIONS(1113), - [anon_sym_err_PLUSout_GT] = ACTIONS(1113), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1113), - [anon_sym_o_PLUSe_GT] = ACTIONS(1113), - [anon_sym_e_PLUSo_GT] = ACTIONS(1113), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1113), - [anon_sym_POUND] = ACTIONS(113), + [1545] = { + [sym_expr_unary] = STATE(5557), + [sym__expr_unary_minus] = STATE(5679), + [sym_expr_binary] = STATE(5557), + [sym__expr_binary_expression] = STATE(5588), + [sym_expr_parenthesized] = STATE(5557), + [sym__val_range] = STATE(10121), + [sym__value] = STATE(5557), + [sym_val_nothing] = STATE(5612), + [sym_val_bool] = STATE(5297), + [sym_val_variable] = STATE(5612), + [sym__var] = STATE(4858), + [sym_val_number] = STATE(5612), + [sym__val_number_decimal] = STATE(4084), + [sym__val_number] = STATE(5661), + [sym_val_duration] = STATE(5612), + [sym_val_filesize] = STATE(5612), + [sym_val_binary] = STATE(5612), + [sym_val_string] = STATE(5612), + [sym__str_double_quotes] = STATE(5733), + [sym_val_interpolated] = STATE(5612), + [sym__inter_single_quotes] = STATE(5590), + [sym__inter_double_quotes] = STATE(5591), + [sym_val_list] = STATE(5612), + [sym_val_record] = STATE(5612), + [sym_val_table] = STATE(5612), + [sym_val_closure] = STATE(5612), + [sym_unquoted] = STATE(5594), + [sym__unquoted_anonymous_prefix] = STATE(10500), + [sym_comment] = STATE(1545), + [anon_sym_LBRACK] = ACTIONS(2663), + [anon_sym_LPAREN] = ACTIONS(4967), + [anon_sym_DOLLAR] = ACTIONS(4969), + [anon_sym_DASH] = ACTIONS(4398), + [anon_sym_LBRACE] = ACTIONS(2673), + [anon_sym_DOT_DOT] = ACTIONS(4971), + [anon_sym_not] = ACTIONS(4402), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4973), + [anon_sym_DOT_DOT_LT] = ACTIONS(4973), + [anon_sym_null] = ACTIONS(4406), + [anon_sym_true] = ACTIONS(4408), + [anon_sym_false] = ACTIONS(4408), + [aux_sym__val_number_decimal_token1] = ACTIONS(4410), + [aux_sym__val_number_decimal_token2] = ACTIONS(4412), + [anon_sym_DOT2] = ACTIONS(4975), + [aux_sym__val_number_decimal_token3] = ACTIONS(4416), + [aux_sym__val_number_token1] = ACTIONS(2691), + [aux_sym__val_number_token2] = ACTIONS(2691), + [aux_sym__val_number_token3] = ACTIONS(2691), + [aux_sym__val_number_token4] = ACTIONS(4418), + [aux_sym__val_number_token5] = ACTIONS(4418), + [aux_sym__val_number_token6] = ACTIONS(4418), + [anon_sym_0b] = ACTIONS(2695), + [anon_sym_0o] = ACTIONS(2697), + [anon_sym_0x] = ACTIONS(2697), + [sym_val_date] = ACTIONS(4420), + [anon_sym_DQUOTE] = ACTIONS(2701), + [sym__str_single_quotes] = ACTIONS(2703), + [sym__str_back_ticks] = ACTIONS(2703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2705), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2707), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2711), + [anon_sym_POUND] = ACTIONS(3), }, - [1340] = { - [sym__flag] = STATE(2514), - [sym_short_flag] = STATE(2425), - [sym_long_flag] = STATE(2425), - [sym_long_flag_equals_value] = STATE(2521), - [sym_comment] = STATE(1340), - [aux_sym_overlay_use_repeat1] = STATE(1340), - [ts_builtin_sym_end] = ACTIONS(3643), - [anon_sym_export] = ACTIONS(3641), - [anon_sym_alias] = ACTIONS(3641), - [anon_sym_let] = ACTIONS(3641), - [anon_sym_let_DASHenv] = ACTIONS(3641), - [anon_sym_mut] = ACTIONS(3641), - [anon_sym_const] = ACTIONS(3641), - [anon_sym_SEMI] = ACTIONS(3641), - [sym_cmd_identifier] = ACTIONS(3641), - [anon_sym_LF] = ACTIONS(3643), - [anon_sym_def] = ACTIONS(3641), - [anon_sym_export_DASHenv] = ACTIONS(3641), - [anon_sym_extern] = ACTIONS(3641), - [anon_sym_module] = ACTIONS(3641), - [anon_sym_use] = ACTIONS(3641), - [anon_sym_LBRACK] = ACTIONS(3641), - [anon_sym_LPAREN] = ACTIONS(3641), - [anon_sym_DOLLAR] = ACTIONS(3641), - [anon_sym_error] = ACTIONS(3641), - [anon_sym_DASH_DASH] = ACTIONS(3828), - [anon_sym_DASH] = ACTIONS(3831), - [anon_sym_break] = ACTIONS(3641), - [anon_sym_continue] = ACTIONS(3641), - [anon_sym_for] = ACTIONS(3641), - [anon_sym_loop] = ACTIONS(3641), - [anon_sym_while] = ACTIONS(3641), - [anon_sym_do] = ACTIONS(3641), - [anon_sym_if] = ACTIONS(3641), - [anon_sym_match] = ACTIONS(3641), - [anon_sym_LBRACE] = ACTIONS(3641), - [anon_sym_DOT_DOT] = ACTIONS(3641), - [anon_sym_try] = ACTIONS(3641), - [anon_sym_return] = ACTIONS(3641), - [anon_sym_source] = ACTIONS(3641), - [anon_sym_source_DASHenv] = ACTIONS(3641), - [anon_sym_register] = ACTIONS(3641), - [anon_sym_hide] = ACTIONS(3641), - [anon_sym_hide_DASHenv] = ACTIONS(3641), - [anon_sym_overlay] = ACTIONS(3641), - [anon_sym_as] = ACTIONS(3641), - [anon_sym_where] = ACTIONS(3641), - [anon_sym_not] = ACTIONS(3641), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_LT] = ACTIONS(3641), - [anon_sym_null] = ACTIONS(3641), - [anon_sym_true] = ACTIONS(3641), - [anon_sym_false] = ACTIONS(3641), - [aux_sym__val_number_decimal_token1] = ACTIONS(3641), - [aux_sym__val_number_decimal_token2] = ACTIONS(3641), - [anon_sym_DOT2] = ACTIONS(3641), - [aux_sym__val_number_decimal_token3] = ACTIONS(3641), - [aux_sym__val_number_token1] = ACTIONS(3641), - [aux_sym__val_number_token2] = ACTIONS(3641), - [aux_sym__val_number_token3] = ACTIONS(3641), - [aux_sym__val_number_token4] = ACTIONS(3641), - [aux_sym__val_number_token5] = ACTIONS(3641), - [aux_sym__val_number_token6] = ACTIONS(3641), - [anon_sym_0b] = ACTIONS(3641), - [anon_sym_0o] = ACTIONS(3641), - [anon_sym_0x] = ACTIONS(3641), - [sym_val_date] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym__str_single_quotes] = ACTIONS(3641), - [sym__str_back_ticks] = ACTIONS(3641), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3641), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3641), - [anon_sym_CARET] = ACTIONS(3641), - [anon_sym_POUND] = ACTIONS(113), + [1546] = { + [sym_expr_unary] = STATE(5557), + [sym__expr_unary_minus] = STATE(5679), + [sym_expr_binary] = STATE(5557), + [sym__expr_binary_expression] = STATE(5602), + [sym_expr_parenthesized] = STATE(5557), + [sym__val_range] = STATE(10121), + [sym__value] = STATE(5557), + [sym_val_nothing] = STATE(5612), + [sym_val_bool] = STATE(5297), + [sym_val_variable] = STATE(5612), + [sym__var] = STATE(4858), + [sym_val_number] = STATE(5612), + [sym__val_number_decimal] = STATE(4084), + [sym__val_number] = STATE(5661), + [sym_val_duration] = STATE(5612), + [sym_val_filesize] = STATE(5612), + [sym_val_binary] = STATE(5612), + [sym_val_string] = STATE(5612), + [sym__str_double_quotes] = STATE(5733), + [sym_val_interpolated] = STATE(5612), + [sym__inter_single_quotes] = STATE(5590), + [sym__inter_double_quotes] = STATE(5591), + [sym_val_list] = STATE(5612), + [sym_val_record] = STATE(5612), + [sym_val_table] = STATE(5612), + [sym_val_closure] = STATE(5612), + [sym_unquoted] = STATE(5603), + [sym__unquoted_anonymous_prefix] = STATE(10500), + [sym_comment] = STATE(1546), + [anon_sym_LBRACK] = ACTIONS(2663), + [anon_sym_LPAREN] = ACTIONS(4967), + [anon_sym_DOLLAR] = ACTIONS(4969), + [anon_sym_DASH] = ACTIONS(4398), + [anon_sym_LBRACE] = ACTIONS(2673), + [anon_sym_DOT_DOT] = ACTIONS(4971), + [anon_sym_not] = ACTIONS(4402), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4973), + [anon_sym_DOT_DOT_LT] = ACTIONS(4973), + [anon_sym_null] = ACTIONS(4406), + [anon_sym_true] = ACTIONS(4408), + [anon_sym_false] = ACTIONS(4408), + [aux_sym__val_number_decimal_token1] = ACTIONS(4410), + [aux_sym__val_number_decimal_token2] = ACTIONS(4412), + [anon_sym_DOT2] = ACTIONS(4975), + [aux_sym__val_number_decimal_token3] = ACTIONS(4416), + [aux_sym__val_number_token1] = ACTIONS(2691), + [aux_sym__val_number_token2] = ACTIONS(2691), + [aux_sym__val_number_token3] = ACTIONS(2691), + [aux_sym__val_number_token4] = ACTIONS(4418), + [aux_sym__val_number_token5] = ACTIONS(4418), + [aux_sym__val_number_token6] = ACTIONS(4418), + [anon_sym_0b] = ACTIONS(2695), + [anon_sym_0o] = ACTIONS(2697), + [anon_sym_0x] = ACTIONS(2697), + [sym_val_date] = ACTIONS(4420), + [anon_sym_DQUOTE] = ACTIONS(2701), + [sym__str_single_quotes] = ACTIONS(2703), + [sym__str_back_ticks] = ACTIONS(2703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2705), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2707), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2711), + [anon_sym_POUND] = ACTIONS(3), }, - [1341] = { - [sym_comment] = STATE(1341), - [ts_builtin_sym_end] = ACTIONS(2549), - [anon_sym_export] = ACTIONS(2547), - [anon_sym_alias] = ACTIONS(2547), - [anon_sym_let] = ACTIONS(2547), - [anon_sym_let_DASHenv] = ACTIONS(2547), - [anon_sym_mut] = ACTIONS(2547), - [anon_sym_const] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [sym_cmd_identifier] = ACTIONS(2547), - [anon_sym_LF] = ACTIONS(2549), - [anon_sym_def] = ACTIONS(2547), - [anon_sym_export_DASHenv] = ACTIONS(2547), - [anon_sym_extern] = ACTIONS(2547), - [anon_sym_module] = ACTIONS(2547), - [anon_sym_use] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_DOLLAR] = ACTIONS(2547), - [anon_sym_error] = ACTIONS(2547), - [anon_sym_DASH_DASH] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_break] = ACTIONS(2547), - [anon_sym_continue] = ACTIONS(2547), - [anon_sym_for] = ACTIONS(2547), - [anon_sym_loop] = ACTIONS(2547), - [anon_sym_while] = ACTIONS(2547), - [anon_sym_do] = ACTIONS(2547), - [anon_sym_if] = ACTIONS(2547), - [anon_sym_match] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2547), - [anon_sym_DOT_DOT] = ACTIONS(2547), - [anon_sym_try] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2547), - [anon_sym_source] = ACTIONS(2547), - [anon_sym_source_DASHenv] = ACTIONS(2547), - [anon_sym_register] = ACTIONS(2547), - [anon_sym_hide] = ACTIONS(2547), - [anon_sym_hide_DASHenv] = ACTIONS(2547), - [anon_sym_overlay] = ACTIONS(2547), - [anon_sym_as] = ACTIONS(2547), - [anon_sym_where] = ACTIONS(2547), - [anon_sym_not] = ACTIONS(2547), - [anon_sym_DOT_DOT2] = ACTIONS(2547), - [anon_sym_DOT] = ACTIONS(2547), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), - [anon_sym_DOT_DOT_LT] = ACTIONS(2547), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2549), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2549), - [anon_sym_null] = ACTIONS(2547), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [aux_sym__val_number_decimal_token1] = ACTIONS(2547), - [aux_sym__val_number_decimal_token2] = ACTIONS(2547), - [anon_sym_DOT2] = ACTIONS(2547), - [aux_sym__val_number_decimal_token3] = ACTIONS(2547), - [aux_sym__val_number_token1] = ACTIONS(2547), - [aux_sym__val_number_token2] = ACTIONS(2547), - [aux_sym__val_number_token3] = ACTIONS(2547), - [aux_sym__val_number_token4] = ACTIONS(2547), - [aux_sym__val_number_token5] = ACTIONS(2547), - [aux_sym__val_number_token6] = ACTIONS(2547), - [anon_sym_0b] = ACTIONS(2547), - [anon_sym_0o] = ACTIONS(2547), - [anon_sym_0x] = ACTIONS(2547), - [sym_val_date] = ACTIONS(2547), - [anon_sym_DQUOTE] = ACTIONS(2547), - [sym__str_single_quotes] = ACTIONS(2547), - [sym__str_back_ticks] = ACTIONS(2547), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2547), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2547), - [aux_sym_unquoted_token2] = ACTIONS(2547), - [anon_sym_POUND] = ACTIONS(113), + [1547] = { + [sym_expr_unary] = STATE(5557), + [sym__expr_unary_minus] = STATE(5679), + [sym_expr_binary] = STATE(5557), + [sym__expr_binary_expression] = STATE(5605), + [sym_expr_parenthesized] = STATE(5557), + [sym__val_range] = STATE(10121), + [sym__value] = STATE(5557), + [sym_val_nothing] = STATE(5612), + [sym_val_bool] = STATE(5297), + [sym_val_variable] = STATE(5612), + [sym__var] = STATE(4858), + [sym_val_number] = STATE(5612), + [sym__val_number_decimal] = STATE(4084), + [sym__val_number] = STATE(5661), + [sym_val_duration] = STATE(5612), + [sym_val_filesize] = STATE(5612), + [sym_val_binary] = STATE(5612), + [sym_val_string] = STATE(5612), + [sym__str_double_quotes] = STATE(5733), + [sym_val_interpolated] = STATE(5612), + [sym__inter_single_quotes] = STATE(5590), + [sym__inter_double_quotes] = STATE(5591), + [sym_val_list] = STATE(5612), + [sym_val_record] = STATE(5612), + [sym_val_table] = STATE(5612), + [sym_val_closure] = STATE(5612), + [sym_unquoted] = STATE(5607), + [sym__unquoted_anonymous_prefix] = STATE(10500), + [sym_comment] = STATE(1547), + [anon_sym_LBRACK] = ACTIONS(2663), + [anon_sym_LPAREN] = ACTIONS(4967), + [anon_sym_DOLLAR] = ACTIONS(4969), + [anon_sym_DASH] = ACTIONS(4398), + [anon_sym_LBRACE] = ACTIONS(2673), + [anon_sym_DOT_DOT] = ACTIONS(4971), + [anon_sym_not] = ACTIONS(4402), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4973), + [anon_sym_DOT_DOT_LT] = ACTIONS(4973), + [anon_sym_null] = ACTIONS(4406), + [anon_sym_true] = ACTIONS(4408), + [anon_sym_false] = ACTIONS(4408), + [aux_sym__val_number_decimal_token1] = ACTIONS(4410), + [aux_sym__val_number_decimal_token2] = ACTIONS(4412), + [anon_sym_DOT2] = ACTIONS(4975), + [aux_sym__val_number_decimal_token3] = ACTIONS(4416), + [aux_sym__val_number_token1] = ACTIONS(2691), + [aux_sym__val_number_token2] = ACTIONS(2691), + [aux_sym__val_number_token3] = ACTIONS(2691), + [aux_sym__val_number_token4] = ACTIONS(4418), + [aux_sym__val_number_token5] = ACTIONS(4418), + [aux_sym__val_number_token6] = ACTIONS(4418), + [anon_sym_0b] = ACTIONS(2695), + [anon_sym_0o] = ACTIONS(2697), + [anon_sym_0x] = ACTIONS(2697), + [sym_val_date] = ACTIONS(4420), + [anon_sym_DQUOTE] = ACTIONS(2701), + [sym__str_single_quotes] = ACTIONS(2703), + [sym__str_back_ticks] = ACTIONS(2703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2705), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2707), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2711), + [anon_sym_POUND] = ACTIONS(3), }, - [1342] = { - [sym_comment] = STATE(1342), - [anon_sym_export] = ACTIONS(2547), - [anon_sym_alias] = ACTIONS(2547), - [anon_sym_let] = ACTIONS(2547), - [anon_sym_let_DASHenv] = ACTIONS(2547), - [anon_sym_mut] = ACTIONS(2547), - [anon_sym_const] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [sym_cmd_identifier] = ACTIONS(2547), - [anon_sym_LF] = ACTIONS(2549), - [anon_sym_def] = ACTIONS(2547), - [anon_sym_export_DASHenv] = ACTIONS(2547), - [anon_sym_extern] = ACTIONS(2547), - [anon_sym_module] = ACTIONS(2547), - [anon_sym_use] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_RPAREN] = ACTIONS(2547), - [anon_sym_DOLLAR] = ACTIONS(2547), - [anon_sym_error] = ACTIONS(2547), - [anon_sym_DASH_DASH] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_break] = ACTIONS(2547), - [anon_sym_continue] = ACTIONS(2547), - [anon_sym_for] = ACTIONS(2547), - [anon_sym_loop] = ACTIONS(2547), - [anon_sym_while] = ACTIONS(2547), - [anon_sym_do] = ACTIONS(2547), - [anon_sym_if] = ACTIONS(2547), - [anon_sym_match] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2547), - [anon_sym_RBRACE] = ACTIONS(2547), - [anon_sym_DOT_DOT] = ACTIONS(2547), - [anon_sym_try] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2547), - [anon_sym_source] = ACTIONS(2547), - [anon_sym_source_DASHenv] = ACTIONS(2547), - [anon_sym_register] = ACTIONS(2547), - [anon_sym_hide] = ACTIONS(2547), - [anon_sym_hide_DASHenv] = ACTIONS(2547), - [anon_sym_overlay] = ACTIONS(2547), - [anon_sym_as] = ACTIONS(2547), - [anon_sym_where] = ACTIONS(2547), - [anon_sym_not] = ACTIONS(2547), - [anon_sym_DOT_DOT2] = ACTIONS(2547), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), - [anon_sym_DOT_DOT_LT] = ACTIONS(2547), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2549), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2549), - [aux_sym__immediate_decimal_token2] = ACTIONS(3834), - [anon_sym_null] = ACTIONS(2547), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [aux_sym__val_number_decimal_token1] = ACTIONS(2547), - [aux_sym__val_number_decimal_token2] = ACTIONS(2547), - [anon_sym_DOT2] = ACTIONS(2547), - [aux_sym__val_number_decimal_token3] = ACTIONS(2547), - [aux_sym__val_number_token1] = ACTIONS(2547), - [aux_sym__val_number_token2] = ACTIONS(2547), - [aux_sym__val_number_token3] = ACTIONS(2547), - [aux_sym__val_number_token4] = ACTIONS(2547), - [aux_sym__val_number_token5] = ACTIONS(2547), - [aux_sym__val_number_token6] = ACTIONS(2547), - [anon_sym_0b] = ACTIONS(2547), - [anon_sym_0o] = ACTIONS(2547), - [anon_sym_0x] = ACTIONS(2547), - [sym_val_date] = ACTIONS(2547), - [anon_sym_DQUOTE] = ACTIONS(2547), - [sym__str_single_quotes] = ACTIONS(2547), - [sym__str_back_ticks] = ACTIONS(2547), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2547), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2547), - [anon_sym_POUND] = ACTIONS(113), + [1548] = { + [sym_expr_unary] = STATE(5557), + [sym__expr_unary_minus] = STATE(5679), + [sym_expr_binary] = STATE(5557), + [sym__expr_binary_expression] = STATE(5608), + [sym_expr_parenthesized] = STATE(5557), + [sym__val_range] = STATE(10121), + [sym__value] = STATE(5557), + [sym_val_nothing] = STATE(5612), + [sym_val_bool] = STATE(5297), + [sym_val_variable] = STATE(5612), + [sym__var] = STATE(4858), + [sym_val_number] = STATE(5612), + [sym__val_number_decimal] = STATE(4084), + [sym__val_number] = STATE(5661), + [sym_val_duration] = STATE(5612), + [sym_val_filesize] = STATE(5612), + [sym_val_binary] = STATE(5612), + [sym_val_string] = STATE(5612), + [sym__str_double_quotes] = STATE(5733), + [sym_val_interpolated] = STATE(5612), + [sym__inter_single_quotes] = STATE(5590), + [sym__inter_double_quotes] = STATE(5591), + [sym_val_list] = STATE(5612), + [sym_val_record] = STATE(5612), + [sym_val_table] = STATE(5612), + [sym_val_closure] = STATE(5612), + [sym_unquoted] = STATE(5609), + [sym__unquoted_anonymous_prefix] = STATE(10500), + [sym_comment] = STATE(1548), + [anon_sym_LBRACK] = ACTIONS(2663), + [anon_sym_LPAREN] = ACTIONS(4967), + [anon_sym_DOLLAR] = ACTIONS(4969), + [anon_sym_DASH] = ACTIONS(4398), + [anon_sym_LBRACE] = ACTIONS(2673), + [anon_sym_DOT_DOT] = ACTIONS(4971), + [anon_sym_not] = ACTIONS(4402), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4973), + [anon_sym_DOT_DOT_LT] = ACTIONS(4973), + [anon_sym_null] = ACTIONS(4406), + [anon_sym_true] = ACTIONS(4408), + [anon_sym_false] = ACTIONS(4408), + [aux_sym__val_number_decimal_token1] = ACTIONS(4410), + [aux_sym__val_number_decimal_token2] = ACTIONS(4412), + [anon_sym_DOT2] = ACTIONS(4975), + [aux_sym__val_number_decimal_token3] = ACTIONS(4416), + [aux_sym__val_number_token1] = ACTIONS(2691), + [aux_sym__val_number_token2] = ACTIONS(2691), + [aux_sym__val_number_token3] = ACTIONS(2691), + [aux_sym__val_number_token4] = ACTIONS(4418), + [aux_sym__val_number_token5] = ACTIONS(4418), + [aux_sym__val_number_token6] = ACTIONS(4418), + [anon_sym_0b] = ACTIONS(2695), + [anon_sym_0o] = ACTIONS(2697), + [anon_sym_0x] = ACTIONS(2697), + [sym_val_date] = ACTIONS(4420), + [anon_sym_DQUOTE] = ACTIONS(2701), + [sym__str_single_quotes] = ACTIONS(2703), + [sym__str_back_ticks] = ACTIONS(2703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2705), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2707), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2711), + [anon_sym_POUND] = ACTIONS(3), }, - [1343] = { - [sym_comment] = STATE(1343), - [anon_sym_LBRACK] = ACTIONS(1117), - [anon_sym_COMMA] = ACTIONS(1117), - [anon_sym_RBRACK] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1117), - [anon_sym_DOLLAR] = ACTIONS(1117), - [anon_sym_GT] = ACTIONS(1117), - [anon_sym_DASH_DASH] = ACTIONS(1117), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1117), - [anon_sym_LBRACE] = ACTIONS(1117), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_STAR] = ACTIONS(1117), - [anon_sym_STAR_STAR] = ACTIONS(1117), - [anon_sym_PLUS_PLUS] = ACTIONS(1117), - [anon_sym_SLASH] = ACTIONS(1117), - [anon_sym_mod] = ACTIONS(1117), - [anon_sym_SLASH_SLASH] = ACTIONS(1117), - [anon_sym_PLUS] = ACTIONS(1117), - [anon_sym_bit_DASHshl] = ACTIONS(1117), - [anon_sym_bit_DASHshr] = ACTIONS(1117), - [anon_sym_EQ_EQ] = ACTIONS(1117), - [anon_sym_BANG_EQ] = ACTIONS(1117), - [anon_sym_LT2] = ACTIONS(1117), - [anon_sym_LT_EQ] = ACTIONS(1117), - [anon_sym_GT_EQ] = ACTIONS(1117), - [anon_sym_not_DASHin] = ACTIONS(1117), - [anon_sym_starts_DASHwith] = ACTIONS(1117), - [anon_sym_ends_DASHwith] = ACTIONS(1117), - [anon_sym_EQ_TILDE] = ACTIONS(1117), - [anon_sym_BANG_TILDE] = ACTIONS(1117), - [anon_sym_bit_DASHand] = ACTIONS(1117), - [anon_sym_bit_DASHxor] = ACTIONS(1117), - [anon_sym_bit_DASHor] = ACTIONS(1117), - [anon_sym_and] = ACTIONS(1117), - [anon_sym_xor] = ACTIONS(1117), - [anon_sym_or] = ACTIONS(1117), - [anon_sym_DOT_DOT2] = ACTIONS(1117), - [anon_sym_DOT] = ACTIONS(1117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1117), - [anon_sym_DOT_DOT_LT] = ACTIONS(1117), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1119), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1119), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_true] = ACTIONS(1117), - [anon_sym_false] = ACTIONS(1117), - [aux_sym__val_number_decimal_token1] = ACTIONS(1117), - [aux_sym__val_number_decimal_token2] = ACTIONS(1117), - [anon_sym_DOT2] = ACTIONS(1117), - [aux_sym__val_number_decimal_token3] = ACTIONS(1117), - [aux_sym__val_number_token1] = ACTIONS(1117), - [aux_sym__val_number_token2] = ACTIONS(1117), - [aux_sym__val_number_token3] = ACTIONS(1117), - [aux_sym__val_number_token4] = ACTIONS(1117), - [aux_sym__val_number_token5] = ACTIONS(1117), - [aux_sym__val_number_token6] = ACTIONS(1117), - [anon_sym_0b] = ACTIONS(1117), - [anon_sym_0o] = ACTIONS(1117), - [anon_sym_0x] = ACTIONS(1117), - [sym_val_date] = ACTIONS(1117), - [anon_sym_DQUOTE] = ACTIONS(1117), - [sym__str_single_quotes] = ACTIONS(1117), - [sym__str_back_ticks] = ACTIONS(1117), - [sym__entry_separator] = ACTIONS(1119), - [anon_sym_err_GT] = ACTIONS(1117), - [anon_sym_out_GT] = ACTIONS(1117), - [anon_sym_e_GT] = ACTIONS(1117), - [anon_sym_o_GT] = ACTIONS(1117), - [anon_sym_err_PLUSout_GT] = ACTIONS(1117), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1117), - [anon_sym_o_PLUSe_GT] = ACTIONS(1117), - [anon_sym_e_PLUSo_GT] = ACTIONS(1117), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1117), - [anon_sym_POUND] = ACTIONS(113), + [1549] = { + [sym_expr_unary] = STATE(5557), + [sym__expr_unary_minus] = STATE(5679), + [sym_expr_binary] = STATE(5557), + [sym__expr_binary_expression] = STATE(5610), + [sym_expr_parenthesized] = STATE(5557), + [sym__val_range] = STATE(10121), + [sym__value] = STATE(5557), + [sym_val_nothing] = STATE(5612), + [sym_val_bool] = STATE(5297), + [sym_val_variable] = STATE(5612), + [sym__var] = STATE(4858), + [sym_val_number] = STATE(5612), + [sym__val_number_decimal] = STATE(4084), + [sym__val_number] = STATE(5661), + [sym_val_duration] = STATE(5612), + [sym_val_filesize] = STATE(5612), + [sym_val_binary] = STATE(5612), + [sym_val_string] = STATE(5612), + [sym__str_double_quotes] = STATE(5733), + [sym_val_interpolated] = STATE(5612), + [sym__inter_single_quotes] = STATE(5590), + [sym__inter_double_quotes] = STATE(5591), + [sym_val_list] = STATE(5612), + [sym_val_record] = STATE(5612), + [sym_val_table] = STATE(5612), + [sym_val_closure] = STATE(5612), + [sym_unquoted] = STATE(5613), + [sym__unquoted_anonymous_prefix] = STATE(10500), + [sym_comment] = STATE(1549), + [anon_sym_LBRACK] = ACTIONS(2663), + [anon_sym_LPAREN] = ACTIONS(4967), + [anon_sym_DOLLAR] = ACTIONS(4969), + [anon_sym_DASH] = ACTIONS(4398), + [anon_sym_LBRACE] = ACTIONS(2673), + [anon_sym_DOT_DOT] = ACTIONS(4971), + [anon_sym_not] = ACTIONS(4402), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4973), + [anon_sym_DOT_DOT_LT] = ACTIONS(4973), + [anon_sym_null] = ACTIONS(4406), + [anon_sym_true] = ACTIONS(4408), + [anon_sym_false] = ACTIONS(4408), + [aux_sym__val_number_decimal_token1] = ACTIONS(4410), + [aux_sym__val_number_decimal_token2] = ACTIONS(4412), + [anon_sym_DOT2] = ACTIONS(4975), + [aux_sym__val_number_decimal_token3] = ACTIONS(4416), + [aux_sym__val_number_token1] = ACTIONS(2691), + [aux_sym__val_number_token2] = ACTIONS(2691), + [aux_sym__val_number_token3] = ACTIONS(2691), + [aux_sym__val_number_token4] = ACTIONS(4418), + [aux_sym__val_number_token5] = ACTIONS(4418), + [aux_sym__val_number_token6] = ACTIONS(4418), + [anon_sym_0b] = ACTIONS(2695), + [anon_sym_0o] = ACTIONS(2697), + [anon_sym_0x] = ACTIONS(2697), + [sym_val_date] = ACTIONS(4420), + [anon_sym_DQUOTE] = ACTIONS(2701), + [sym__str_single_quotes] = ACTIONS(2703), + [sym__str_back_ticks] = ACTIONS(2703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2705), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2707), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2711), + [anon_sym_POUND] = ACTIONS(3), }, - [1344] = { - [sym_comment] = STATE(1344), - [anon_sym_export] = ACTIONS(2547), - [anon_sym_alias] = ACTIONS(2547), - [anon_sym_let] = ACTIONS(2547), - [anon_sym_let_DASHenv] = ACTIONS(2547), - [anon_sym_mut] = ACTIONS(2547), - [anon_sym_const] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [sym_cmd_identifier] = ACTIONS(2547), - [anon_sym_LF] = ACTIONS(2549), - [anon_sym_def] = ACTIONS(2547), - [anon_sym_export_DASHenv] = ACTIONS(2547), - [anon_sym_extern] = ACTIONS(2547), - [anon_sym_module] = ACTIONS(2547), - [anon_sym_use] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_RPAREN] = ACTIONS(2547), - [anon_sym_DOLLAR] = ACTIONS(2547), - [anon_sym_error] = ACTIONS(2547), - [anon_sym_DASH_DASH] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_break] = ACTIONS(2547), - [anon_sym_continue] = ACTIONS(2547), - [anon_sym_for] = ACTIONS(2547), - [anon_sym_loop] = ACTIONS(2547), - [anon_sym_while] = ACTIONS(2547), - [anon_sym_do] = ACTIONS(2547), - [anon_sym_if] = ACTIONS(2547), - [anon_sym_match] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2547), - [anon_sym_RBRACE] = ACTIONS(2547), - [anon_sym_DOT_DOT] = ACTIONS(2547), - [anon_sym_try] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2547), - [anon_sym_source] = ACTIONS(2547), - [anon_sym_source_DASHenv] = ACTIONS(2547), - [anon_sym_register] = ACTIONS(2547), - [anon_sym_hide] = ACTIONS(2547), - [anon_sym_hide_DASHenv] = ACTIONS(2547), - [anon_sym_overlay] = ACTIONS(2547), - [anon_sym_as] = ACTIONS(2547), - [anon_sym_where] = ACTIONS(2547), - [anon_sym_not] = ACTIONS(2547), - [anon_sym_LPAREN2] = ACTIONS(2549), - [anon_sym_DOT] = ACTIONS(2547), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), - [anon_sym_DOT_DOT_LT] = ACTIONS(2547), - [aux_sym__immediate_decimal_token2] = ACTIONS(3836), - [anon_sym_null] = ACTIONS(2547), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [aux_sym__val_number_decimal_token1] = ACTIONS(2547), - [aux_sym__val_number_decimal_token2] = ACTIONS(2547), - [anon_sym_DOT2] = ACTIONS(2547), - [aux_sym__val_number_decimal_token3] = ACTIONS(2547), - [aux_sym__val_number_token1] = ACTIONS(2547), - [aux_sym__val_number_token2] = ACTIONS(2547), - [aux_sym__val_number_token3] = ACTIONS(2547), - [aux_sym__val_number_token4] = ACTIONS(2547), - [aux_sym__val_number_token5] = ACTIONS(2547), - [aux_sym__val_number_token6] = ACTIONS(2547), - [anon_sym_0b] = ACTIONS(2547), - [anon_sym_0o] = ACTIONS(2547), - [anon_sym_0x] = ACTIONS(2547), - [sym_val_date] = ACTIONS(2547), - [anon_sym_DQUOTE] = ACTIONS(2547), - [sym__str_single_quotes] = ACTIONS(2547), - [sym__str_back_ticks] = ACTIONS(2547), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2547), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2547), - [aux_sym_unquoted_token2] = ACTIONS(2547), - [anon_sym_POUND] = ACTIONS(113), + [1550] = { + [sym_expr_unary] = STATE(5557), + [sym__expr_unary_minus] = STATE(5679), + [sym_expr_binary] = STATE(5557), + [sym__expr_binary_expression] = STATE(5644), + [sym_expr_parenthesized] = STATE(5557), + [sym__val_range] = STATE(10121), + [sym__value] = STATE(5557), + [sym_val_nothing] = STATE(5612), + [sym_val_bool] = STATE(5297), + [sym_val_variable] = STATE(5612), + [sym__var] = STATE(4858), + [sym_val_number] = STATE(5612), + [sym__val_number_decimal] = STATE(4084), + [sym__val_number] = STATE(5661), + [sym_val_duration] = STATE(5612), + [sym_val_filesize] = STATE(5612), + [sym_val_binary] = STATE(5612), + [sym_val_string] = STATE(5612), + [sym__str_double_quotes] = STATE(5733), + [sym_val_interpolated] = STATE(5612), + [sym__inter_single_quotes] = STATE(5590), + [sym__inter_double_quotes] = STATE(5591), + [sym_val_list] = STATE(5612), + [sym_val_record] = STATE(5612), + [sym_val_table] = STATE(5612), + [sym_val_closure] = STATE(5612), + [sym_unquoted] = STATE(5645), + [sym__unquoted_anonymous_prefix] = STATE(10500), + [sym_comment] = STATE(1550), + [anon_sym_LBRACK] = ACTIONS(2663), + [anon_sym_LPAREN] = ACTIONS(4967), + [anon_sym_DOLLAR] = ACTIONS(4969), + [anon_sym_DASH] = ACTIONS(4398), + [anon_sym_LBRACE] = ACTIONS(2673), + [anon_sym_DOT_DOT] = ACTIONS(4971), + [anon_sym_not] = ACTIONS(4402), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4973), + [anon_sym_DOT_DOT_LT] = ACTIONS(4973), + [anon_sym_null] = ACTIONS(4406), + [anon_sym_true] = ACTIONS(4408), + [anon_sym_false] = ACTIONS(4408), + [aux_sym__val_number_decimal_token1] = ACTIONS(4410), + [aux_sym__val_number_decimal_token2] = ACTIONS(4412), + [anon_sym_DOT2] = ACTIONS(4975), + [aux_sym__val_number_decimal_token3] = ACTIONS(4416), + [aux_sym__val_number_token1] = ACTIONS(2691), + [aux_sym__val_number_token2] = ACTIONS(2691), + [aux_sym__val_number_token3] = ACTIONS(2691), + [aux_sym__val_number_token4] = ACTIONS(4418), + [aux_sym__val_number_token5] = ACTIONS(4418), + [aux_sym__val_number_token6] = ACTIONS(4418), + [anon_sym_0b] = ACTIONS(2695), + [anon_sym_0o] = ACTIONS(2697), + [anon_sym_0x] = ACTIONS(2697), + [sym_val_date] = ACTIONS(4420), + [anon_sym_DQUOTE] = ACTIONS(2701), + [sym__str_single_quotes] = ACTIONS(2703), + [sym__str_back_ticks] = ACTIONS(2703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2705), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2707), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2711), + [anon_sym_POUND] = ACTIONS(3), }, - [1345] = { - [sym_path] = STATE(1512), - [sym_comment] = STATE(1345), - [aux_sym_cell_path_repeat1] = STATE(1345), - [anon_sym_export] = ACTIONS(999), - [anon_sym_alias] = ACTIONS(999), - [anon_sym_let] = ACTIONS(999), - [anon_sym_let_DASHenv] = ACTIONS(999), - [anon_sym_mut] = ACTIONS(999), - [anon_sym_const] = ACTIONS(999), - [anon_sym_SEMI] = ACTIONS(999), - [sym_cmd_identifier] = ACTIONS(999), - [anon_sym_LF] = ACTIONS(1001), - [anon_sym_def] = ACTIONS(999), - [anon_sym_export_DASHenv] = ACTIONS(999), - [anon_sym_extern] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_use] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_RPAREN] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_error] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_break] = ACTIONS(999), - [anon_sym_continue] = ACTIONS(999), - [anon_sym_for] = ACTIONS(999), - [anon_sym_loop] = ACTIONS(999), - [anon_sym_while] = ACTIONS(999), - [anon_sym_do] = ACTIONS(999), - [anon_sym_if] = ACTIONS(999), - [anon_sym_match] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(999), - [anon_sym_RBRACE] = ACTIONS(999), - [anon_sym_DOT_DOT] = ACTIONS(999), - [anon_sym_try] = ACTIONS(999), - [anon_sym_return] = ACTIONS(999), - [anon_sym_source] = ACTIONS(999), - [anon_sym_source_DASHenv] = ACTIONS(999), - [anon_sym_register] = ACTIONS(999), - [anon_sym_hide] = ACTIONS(999), - [anon_sym_hide_DASHenv] = ACTIONS(999), - [anon_sym_overlay] = ACTIONS(999), - [anon_sym_where] = ACTIONS(999), - [anon_sym_not] = ACTIONS(999), - [anon_sym_DOT_DOT2] = ACTIONS(999), - [anon_sym_DOT] = ACTIONS(3838), - [anon_sym_DOT_DOT_EQ] = ACTIONS(999), - [anon_sym_DOT_DOT_LT] = ACTIONS(999), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1001), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1001), - [anon_sym_null] = ACTIONS(999), - [anon_sym_true] = ACTIONS(999), - [anon_sym_false] = ACTIONS(999), - [aux_sym__val_number_decimal_token1] = ACTIONS(999), - [aux_sym__val_number_decimal_token2] = ACTIONS(999), - [anon_sym_DOT2] = ACTIONS(999), - [aux_sym__val_number_decimal_token3] = ACTIONS(999), - [aux_sym__val_number_token1] = ACTIONS(999), - [aux_sym__val_number_token2] = ACTIONS(999), - [aux_sym__val_number_token3] = ACTIONS(999), - [aux_sym__val_number_token4] = ACTIONS(999), - [aux_sym__val_number_token5] = ACTIONS(999), - [aux_sym__val_number_token6] = ACTIONS(999), - [anon_sym_0b] = ACTIONS(999), - [anon_sym_0o] = ACTIONS(999), - [anon_sym_0x] = ACTIONS(999), - [sym_val_date] = ACTIONS(999), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym__str_single_quotes] = ACTIONS(999), - [sym__str_back_ticks] = ACTIONS(999), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(999), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(999), - [anon_sym_CARET] = ACTIONS(999), - [anon_sym_POUND] = ACTIONS(113), + [1551] = { + [sym_expr_unary] = STATE(5557), + [sym__expr_unary_minus] = STATE(5679), + [sym_expr_binary] = STATE(5557), + [sym__expr_binary_expression] = STATE(5646), + [sym_expr_parenthesized] = STATE(5557), + [sym__val_range] = STATE(10121), + [sym__value] = STATE(5557), + [sym_val_nothing] = STATE(5612), + [sym_val_bool] = STATE(5297), + [sym_val_variable] = STATE(5612), + [sym__var] = STATE(4858), + [sym_val_number] = STATE(5612), + [sym__val_number_decimal] = STATE(4084), + [sym__val_number] = STATE(5661), + [sym_val_duration] = STATE(5612), + [sym_val_filesize] = STATE(5612), + [sym_val_binary] = STATE(5612), + [sym_val_string] = STATE(5612), + [sym__str_double_quotes] = STATE(5733), + [sym_val_interpolated] = STATE(5612), + [sym__inter_single_quotes] = STATE(5590), + [sym__inter_double_quotes] = STATE(5591), + [sym_val_list] = STATE(5612), + [sym_val_record] = STATE(5612), + [sym_val_table] = STATE(5612), + [sym_val_closure] = STATE(5612), + [sym_unquoted] = STATE(5647), + [sym__unquoted_anonymous_prefix] = STATE(10500), + [sym_comment] = STATE(1551), + [anon_sym_LBRACK] = ACTIONS(2663), + [anon_sym_LPAREN] = ACTIONS(4967), + [anon_sym_DOLLAR] = ACTIONS(4969), + [anon_sym_DASH] = ACTIONS(4398), + [anon_sym_LBRACE] = ACTIONS(2673), + [anon_sym_DOT_DOT] = ACTIONS(4971), + [anon_sym_not] = ACTIONS(4402), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4973), + [anon_sym_DOT_DOT_LT] = ACTIONS(4973), + [anon_sym_null] = ACTIONS(4406), + [anon_sym_true] = ACTIONS(4408), + [anon_sym_false] = ACTIONS(4408), + [aux_sym__val_number_decimal_token1] = ACTIONS(4410), + [aux_sym__val_number_decimal_token2] = ACTIONS(4412), + [anon_sym_DOT2] = ACTIONS(4975), + [aux_sym__val_number_decimal_token3] = ACTIONS(4416), + [aux_sym__val_number_token1] = ACTIONS(2691), + [aux_sym__val_number_token2] = ACTIONS(2691), + [aux_sym__val_number_token3] = ACTIONS(2691), + [aux_sym__val_number_token4] = ACTIONS(4418), + [aux_sym__val_number_token5] = ACTIONS(4418), + [aux_sym__val_number_token6] = ACTIONS(4418), + [anon_sym_0b] = ACTIONS(2695), + [anon_sym_0o] = ACTIONS(2697), + [anon_sym_0x] = ACTIONS(2697), + [sym_val_date] = ACTIONS(4420), + [anon_sym_DQUOTE] = ACTIONS(2701), + [sym__str_single_quotes] = ACTIONS(2703), + [sym__str_back_ticks] = ACTIONS(2703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2705), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2707), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2711), + [anon_sym_POUND] = ACTIONS(3), }, - [1346] = { - [sym_comment] = STATE(1346), - [ts_builtin_sym_end] = ACTIONS(2439), - [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), - [anon_sym_SEMI] = ACTIONS(2437), - [sym_cmd_identifier] = ACTIONS(2437), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_DASH_DASH] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_as] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_not] = ACTIONS(2437), - [anon_sym_LPAREN2] = ACTIONS(2439), - [anon_sym_DOT] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [aux_sym__immediate_decimal_token2] = ACTIONS(3817), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [anon_sym_DOT2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2437), - [anon_sym_0o] = ACTIONS(2437), - [anon_sym_0x] = ACTIONS(2437), - [sym_val_date] = 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_CARET] = ACTIONS(2437), - [aux_sym_unquoted_token2] = ACTIONS(2437), - [anon_sym_POUND] = ACTIONS(113), + [1552] = { + [sym_expr_unary] = STATE(5557), + [sym__expr_unary_minus] = STATE(5679), + [sym_expr_binary] = STATE(5557), + [sym__expr_binary_expression] = STATE(5648), + [sym_expr_parenthesized] = STATE(5557), + [sym__val_range] = STATE(10121), + [sym__value] = STATE(5557), + [sym_val_nothing] = STATE(5612), + [sym_val_bool] = STATE(5297), + [sym_val_variable] = STATE(5612), + [sym__var] = STATE(4858), + [sym_val_number] = STATE(5612), + [sym__val_number_decimal] = STATE(4084), + [sym__val_number] = STATE(5661), + [sym_val_duration] = STATE(5612), + [sym_val_filesize] = STATE(5612), + [sym_val_binary] = STATE(5612), + [sym_val_string] = STATE(5612), + [sym__str_double_quotes] = STATE(5733), + [sym_val_interpolated] = STATE(5612), + [sym__inter_single_quotes] = STATE(5590), + [sym__inter_double_quotes] = STATE(5591), + [sym_val_list] = STATE(5612), + [sym_val_record] = STATE(5612), + [sym_val_table] = STATE(5612), + [sym_val_closure] = STATE(5612), + [sym_unquoted] = STATE(5649), + [sym__unquoted_anonymous_prefix] = STATE(10500), + [sym_comment] = STATE(1552), + [anon_sym_LBRACK] = ACTIONS(2663), + [anon_sym_LPAREN] = ACTIONS(4967), + [anon_sym_DOLLAR] = ACTIONS(4969), + [anon_sym_DASH] = ACTIONS(4398), + [anon_sym_LBRACE] = ACTIONS(2673), + [anon_sym_DOT_DOT] = ACTIONS(4971), + [anon_sym_not] = ACTIONS(4402), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4973), + [anon_sym_DOT_DOT_LT] = ACTIONS(4973), + [anon_sym_null] = ACTIONS(4406), + [anon_sym_true] = ACTIONS(4408), + [anon_sym_false] = ACTIONS(4408), + [aux_sym__val_number_decimal_token1] = ACTIONS(4410), + [aux_sym__val_number_decimal_token2] = ACTIONS(4412), + [anon_sym_DOT2] = ACTIONS(4975), + [aux_sym__val_number_decimal_token3] = ACTIONS(4416), + [aux_sym__val_number_token1] = ACTIONS(2691), + [aux_sym__val_number_token2] = ACTIONS(2691), + [aux_sym__val_number_token3] = ACTIONS(2691), + [aux_sym__val_number_token4] = ACTIONS(4418), + [aux_sym__val_number_token5] = ACTIONS(4418), + [aux_sym__val_number_token6] = ACTIONS(4418), + [anon_sym_0b] = ACTIONS(2695), + [anon_sym_0o] = ACTIONS(2697), + [anon_sym_0x] = ACTIONS(2697), + [sym_val_date] = ACTIONS(4420), + [anon_sym_DQUOTE] = ACTIONS(2701), + [sym__str_single_quotes] = ACTIONS(2703), + [sym__str_back_ticks] = ACTIONS(2703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2705), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2707), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2711), + [anon_sym_POUND] = ACTIONS(3), }, - [1347] = { - [sym_comment] = STATE(1347), - [anon_sym_LBRACK] = ACTIONS(1194), - [anon_sym_COMMA] = ACTIONS(1194), - [anon_sym_RBRACK] = ACTIONS(1194), - [anon_sym_LPAREN] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1194), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_in] = ACTIONS(1198), - [anon_sym_LBRACE] = ACTIONS(1194), - [anon_sym_DOT_DOT] = ACTIONS(1194), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_STAR_STAR] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_SLASH] = ACTIONS(1198), - [anon_sym_mod] = ACTIONS(1198), - [anon_sym_SLASH_SLASH] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1200), - [anon_sym_bit_DASHshl] = ACTIONS(1198), - [anon_sym_bit_DASHshr] = ACTIONS(1198), - [anon_sym_EQ_EQ] = ACTIONS(1198), - [anon_sym_BANG_EQ] = ACTIONS(1198), - [anon_sym_LT2] = ACTIONS(1198), - [anon_sym_LT_EQ] = ACTIONS(1198), - [anon_sym_GT_EQ] = ACTIONS(1198), - [anon_sym_not_DASHin] = ACTIONS(1198), - [anon_sym_starts_DASHwith] = ACTIONS(1198), - [anon_sym_ends_DASHwith] = ACTIONS(1198), - [anon_sym_EQ_TILDE] = ACTIONS(1198), - [anon_sym_BANG_TILDE] = ACTIONS(1198), - [anon_sym_bit_DASHand] = ACTIONS(1198), - [anon_sym_bit_DASHxor] = ACTIONS(1198), - [anon_sym_bit_DASHor] = ACTIONS(1198), - [anon_sym_and] = ACTIONS(1198), - [anon_sym_xor] = ACTIONS(1198), - [anon_sym_or] = ACTIONS(1198), - [anon_sym_DOT_DOT2] = ACTIONS(3841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1194), - [anon_sym_DOT_DOT_LT] = ACTIONS(1194), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3843), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3843), - [anon_sym_null] = ACTIONS(1194), - [anon_sym_true] = ACTIONS(1194), - [anon_sym_false] = ACTIONS(1194), - [aux_sym__val_number_decimal_token1] = ACTIONS(1194), - [aux_sym__val_number_decimal_token2] = ACTIONS(1194), - [anon_sym_DOT2] = ACTIONS(1194), - [aux_sym__val_number_decimal_token3] = ACTIONS(1194), - [aux_sym__val_number_token1] = ACTIONS(1194), - [aux_sym__val_number_token2] = ACTIONS(1194), - [aux_sym__val_number_token3] = ACTIONS(1194), - [aux_sym__val_number_token4] = ACTIONS(1194), - [aux_sym__val_number_token5] = ACTIONS(1194), - [aux_sym__val_number_token6] = ACTIONS(1194), - [anon_sym_0b] = ACTIONS(1194), - [anon_sym_0o] = ACTIONS(1194), - [anon_sym_0x] = ACTIONS(1194), - [sym_val_date] = ACTIONS(1194), - [anon_sym_DQUOTE] = ACTIONS(1194), - [sym__str_single_quotes] = ACTIONS(1194), - [sym__str_back_ticks] = ACTIONS(1194), - [sym__entry_separator] = ACTIONS(1196), - [anon_sym_err_GT] = ACTIONS(1194), - [anon_sym_out_GT] = ACTIONS(1194), - [anon_sym_e_GT] = ACTIONS(1194), - [anon_sym_o_GT] = ACTIONS(1194), - [anon_sym_err_PLUSout_GT] = ACTIONS(1194), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1194), - [anon_sym_o_PLUSe_GT] = ACTIONS(1194), - [anon_sym_e_PLUSo_GT] = ACTIONS(1194), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1194), - [anon_sym_POUND] = ACTIONS(113), + [1553] = { + [sym_expr_unary] = STATE(5557), + [sym__expr_unary_minus] = STATE(5679), + [sym_expr_binary] = STATE(5557), + [sym__expr_binary_expression] = STATE(5651), + [sym_expr_parenthesized] = STATE(5557), + [sym__val_range] = STATE(10121), + [sym__value] = STATE(5557), + [sym_val_nothing] = STATE(5612), + [sym_val_bool] = STATE(5297), + [sym_val_variable] = STATE(5612), + [sym__var] = STATE(4858), + [sym_val_number] = STATE(5612), + [sym__val_number_decimal] = STATE(4084), + [sym__val_number] = STATE(5661), + [sym_val_duration] = STATE(5612), + [sym_val_filesize] = STATE(5612), + [sym_val_binary] = STATE(5612), + [sym_val_string] = STATE(5612), + [sym__str_double_quotes] = STATE(5733), + [sym_val_interpolated] = STATE(5612), + [sym__inter_single_quotes] = STATE(5590), + [sym__inter_double_quotes] = STATE(5591), + [sym_val_list] = STATE(5612), + [sym_val_record] = STATE(5612), + [sym_val_table] = STATE(5612), + [sym_val_closure] = STATE(5612), + [sym_unquoted] = STATE(5525), + [sym__unquoted_anonymous_prefix] = STATE(10500), + [sym_comment] = STATE(1553), + [anon_sym_LBRACK] = ACTIONS(2663), + [anon_sym_LPAREN] = ACTIONS(4967), + [anon_sym_DOLLAR] = ACTIONS(4969), + [anon_sym_DASH] = ACTIONS(4398), + [anon_sym_LBRACE] = ACTIONS(2673), + [anon_sym_DOT_DOT] = ACTIONS(4971), + [anon_sym_not] = ACTIONS(4402), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4973), + [anon_sym_DOT_DOT_LT] = ACTIONS(4973), + [anon_sym_null] = ACTIONS(4406), + [anon_sym_true] = ACTIONS(4408), + [anon_sym_false] = ACTIONS(4408), + [aux_sym__val_number_decimal_token1] = ACTIONS(4410), + [aux_sym__val_number_decimal_token2] = ACTIONS(4412), + [anon_sym_DOT2] = ACTIONS(4975), + [aux_sym__val_number_decimal_token3] = ACTIONS(4416), + [aux_sym__val_number_token1] = ACTIONS(2691), + [aux_sym__val_number_token2] = ACTIONS(2691), + [aux_sym__val_number_token3] = ACTIONS(2691), + [aux_sym__val_number_token4] = ACTIONS(4418), + [aux_sym__val_number_token5] = ACTIONS(4418), + [aux_sym__val_number_token6] = ACTIONS(4418), + [anon_sym_0b] = ACTIONS(2695), + [anon_sym_0o] = ACTIONS(2697), + [anon_sym_0x] = ACTIONS(2697), + [sym_val_date] = ACTIONS(4420), + [anon_sym_DQUOTE] = ACTIONS(2701), + [sym__str_single_quotes] = ACTIONS(2703), + [sym__str_back_ticks] = ACTIONS(2703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2705), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2707), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2711), + [anon_sym_POUND] = ACTIONS(3), }, - [1348] = { - [sym_comment] = STATE(1348), - [anon_sym_LBRACK] = ACTIONS(1115), - [anon_sym_COMMA] = ACTIONS(1115), - [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_DOLLAR] = ACTIONS(1115), - [anon_sym_GT] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_in] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1115), - [anon_sym_RBRACE] = ACTIONS(1115), - [anon_sym__] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_STAR_STAR] = ACTIONS(1115), - [anon_sym_PLUS_PLUS] = ACTIONS(1115), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_mod] = ACTIONS(1115), - [anon_sym_SLASH_SLASH] = ACTIONS(1115), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_bit_DASHshl] = ACTIONS(1115), - [anon_sym_bit_DASHshr] = ACTIONS(1115), - [anon_sym_EQ_EQ] = ACTIONS(1115), - [anon_sym_BANG_EQ] = ACTIONS(1115), - [anon_sym_LT2] = ACTIONS(1113), - [anon_sym_LT_EQ] = ACTIONS(1115), - [anon_sym_GT_EQ] = ACTIONS(1115), - [anon_sym_not_DASHin] = ACTIONS(1115), - [anon_sym_starts_DASHwith] = ACTIONS(1115), - [anon_sym_ends_DASHwith] = ACTIONS(1115), - [anon_sym_EQ_TILDE] = ACTIONS(1115), - [anon_sym_BANG_TILDE] = ACTIONS(1115), - [anon_sym_bit_DASHand] = ACTIONS(1115), - [anon_sym_bit_DASHxor] = ACTIONS(1115), - [anon_sym_bit_DASHor] = ACTIONS(1115), - [anon_sym_and] = ACTIONS(1115), - [anon_sym_xor] = ACTIONS(1115), - [anon_sym_or] = ACTIONS(1115), - [anon_sym_DOT_DOT2] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1113), - [anon_sym_DOT_DOT_LT] = ACTIONS(1113), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1115), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1115), - [anon_sym_true] = ACTIONS(1115), - [anon_sym_false] = ACTIONS(1115), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_decimal_token2] = ACTIONS(1115), - [anon_sym_DOT2] = ACTIONS(1113), - [aux_sym__val_number_decimal_token3] = ACTIONS(1115), - [aux_sym__val_number_token1] = ACTIONS(1115), - [aux_sym__val_number_token2] = ACTIONS(1115), - [aux_sym__val_number_token3] = ACTIONS(1115), - [aux_sym__val_number_token4] = ACTIONS(1115), - [aux_sym__val_number_token5] = ACTIONS(1115), - [aux_sym__val_number_token6] = ACTIONS(1115), - [anon_sym_0b] = ACTIONS(1113), - [anon_sym_0o] = ACTIONS(1113), - [anon_sym_0x] = ACTIONS(1113), - [sym_val_date] = ACTIONS(1115), - [anon_sym_DQUOTE] = ACTIONS(1115), - [sym__str_single_quotes] = ACTIONS(1115), - [sym__str_back_ticks] = ACTIONS(1115), - [anon_sym_err_GT] = ACTIONS(1115), - [anon_sym_out_GT] = ACTIONS(1115), - [anon_sym_e_GT] = ACTIONS(1115), - [anon_sym_o_GT] = ACTIONS(1115), - [anon_sym_err_PLUSout_GT] = ACTIONS(1115), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1115), - [anon_sym_o_PLUSe_GT] = ACTIONS(1115), - [anon_sym_e_PLUSo_GT] = ACTIONS(1115), - [aux_sym_unquoted_token1] = ACTIONS(1113), + [1554] = { + [sym_expr_unary] = STATE(5557), + [sym__expr_unary_minus] = STATE(5679), + [sym_expr_binary] = STATE(5557), + [sym__expr_binary_expression] = STATE(5653), + [sym_expr_parenthesized] = STATE(5557), + [sym__val_range] = STATE(10121), + [sym__value] = STATE(5557), + [sym_val_nothing] = STATE(5612), + [sym_val_bool] = STATE(5297), + [sym_val_variable] = STATE(5612), + [sym__var] = STATE(4858), + [sym_val_number] = STATE(5612), + [sym__val_number_decimal] = STATE(4084), + [sym__val_number] = STATE(5661), + [sym_val_duration] = STATE(5612), + [sym_val_filesize] = STATE(5612), + [sym_val_binary] = STATE(5612), + [sym_val_string] = STATE(5612), + [sym__str_double_quotes] = STATE(5733), + [sym_val_interpolated] = STATE(5612), + [sym__inter_single_quotes] = STATE(5590), + [sym__inter_double_quotes] = STATE(5591), + [sym_val_list] = STATE(5612), + [sym_val_record] = STATE(5612), + [sym_val_table] = STATE(5612), + [sym_val_closure] = STATE(5612), + [sym_unquoted] = STATE(5654), + [sym__unquoted_anonymous_prefix] = STATE(10500), + [sym_comment] = STATE(1554), + [anon_sym_LBRACK] = ACTIONS(2663), + [anon_sym_LPAREN] = ACTIONS(4967), + [anon_sym_DOLLAR] = ACTIONS(4969), + [anon_sym_DASH] = ACTIONS(4398), + [anon_sym_LBRACE] = ACTIONS(2673), + [anon_sym_DOT_DOT] = ACTIONS(4971), + [anon_sym_not] = ACTIONS(4402), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4973), + [anon_sym_DOT_DOT_LT] = ACTIONS(4973), + [anon_sym_null] = ACTIONS(4406), + [anon_sym_true] = ACTIONS(4408), + [anon_sym_false] = ACTIONS(4408), + [aux_sym__val_number_decimal_token1] = ACTIONS(4410), + [aux_sym__val_number_decimal_token2] = ACTIONS(4412), + [anon_sym_DOT2] = ACTIONS(4975), + [aux_sym__val_number_decimal_token3] = ACTIONS(4416), + [aux_sym__val_number_token1] = ACTIONS(2691), + [aux_sym__val_number_token2] = ACTIONS(2691), + [aux_sym__val_number_token3] = ACTIONS(2691), + [aux_sym__val_number_token4] = ACTIONS(4418), + [aux_sym__val_number_token5] = ACTIONS(4418), + [aux_sym__val_number_token6] = ACTIONS(4418), + [anon_sym_0b] = ACTIONS(2695), + [anon_sym_0o] = ACTIONS(2697), + [anon_sym_0x] = ACTIONS(2697), + [sym_val_date] = ACTIONS(4420), + [anon_sym_DQUOTE] = ACTIONS(2701), + [sym__str_single_quotes] = ACTIONS(2703), + [sym__str_back_ticks] = ACTIONS(2703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2705), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2707), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2711), [anon_sym_POUND] = ACTIONS(3), }, - [1349] = { - [sym_comment] = STATE(1349), - [anon_sym_export] = ACTIONS(1063), - [anon_sym_alias] = ACTIONS(1063), - [anon_sym_let] = ACTIONS(1063), - [anon_sym_let_DASHenv] = ACTIONS(1063), - [anon_sym_mut] = ACTIONS(1063), - [anon_sym_const] = ACTIONS(1063), - [anon_sym_SEMI] = ACTIONS(1063), - [sym_cmd_identifier] = ACTIONS(1063), - [anon_sym_LF] = ACTIONS(1065), - [anon_sym_def] = ACTIONS(1063), - [anon_sym_export_DASHenv] = ACTIONS(1063), - [anon_sym_extern] = ACTIONS(1063), - [anon_sym_module] = ACTIONS(1063), - [anon_sym_use] = ACTIONS(1063), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_RPAREN] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_error] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_break] = ACTIONS(1063), - [anon_sym_continue] = ACTIONS(1063), - [anon_sym_for] = ACTIONS(1063), - [anon_sym_loop] = ACTIONS(1063), - [anon_sym_while] = ACTIONS(1063), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_if] = ACTIONS(1063), - [anon_sym_match] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_RBRACE] = ACTIONS(1063), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1063), - [anon_sym_return] = ACTIONS(1063), - [anon_sym_source] = ACTIONS(1063), - [anon_sym_source_DASHenv] = ACTIONS(1063), - [anon_sym_register] = ACTIONS(1063), - [anon_sym_hide] = ACTIONS(1063), - [anon_sym_hide_DASHenv] = ACTIONS(1063), - [anon_sym_overlay] = ACTIONS(1063), - [anon_sym_where] = ACTIONS(1063), - [anon_sym_QMARK2] = ACTIONS(1063), - [anon_sym_not] = ACTIONS(1063), - [anon_sym_DOT_DOT2] = ACTIONS(1063), - [anon_sym_DOT] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1063), - [anon_sym_DOT_DOT_LT] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1065), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1065), - [anon_sym_null] = ACTIONS(1063), - [anon_sym_true] = ACTIONS(1063), - [anon_sym_false] = ACTIONS(1063), - [aux_sym__val_number_decimal_token1] = ACTIONS(1063), - [aux_sym__val_number_decimal_token2] = ACTIONS(1063), - [anon_sym_DOT2] = ACTIONS(1063), - [aux_sym__val_number_decimal_token3] = ACTIONS(1063), - [aux_sym__val_number_token1] = ACTIONS(1063), - [aux_sym__val_number_token2] = ACTIONS(1063), - [aux_sym__val_number_token3] = ACTIONS(1063), - [aux_sym__val_number_token4] = ACTIONS(1063), - [aux_sym__val_number_token5] = ACTIONS(1063), - [aux_sym__val_number_token6] = ACTIONS(1063), - [anon_sym_0b] = ACTIONS(1063), - [anon_sym_0o] = ACTIONS(1063), - [anon_sym_0x] = ACTIONS(1063), - [sym_val_date] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [sym__str_single_quotes] = ACTIONS(1063), - [sym__str_back_ticks] = ACTIONS(1063), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1063), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1063), - [anon_sym_CARET] = ACTIONS(1063), - [anon_sym_POUND] = ACTIONS(113), + [1555] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6252), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6012), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4580), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5796), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1555), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(4977), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4979), + [anon_sym_DOT_DOT_LT] = ACTIONS(4979), + [anon_sym_null] = ACTIONS(4981), + [anon_sym_true] = ACTIONS(4983), + [anon_sym_false] = ACTIONS(4983), + [aux_sym__val_number_decimal_token1] = ACTIONS(4985), + [aux_sym__val_number_decimal_token2] = ACTIONS(4987), + [anon_sym_DOT2] = ACTIONS(4989), + [aux_sym__val_number_decimal_token3] = ACTIONS(4991), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(4993), + [aux_sym__val_number_token5] = ACTIONS(4993), + [aux_sym__val_number_token6] = ACTIONS(4993), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(4995), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), + [anon_sym_POUND] = ACTIONS(3), }, - [1350] = { - [sym_comment] = STATE(1350), - [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), - [anon_sym_SEMI] = ACTIONS(2437), - [sym_cmd_identifier] = ACTIONS(2437), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_RPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_DASH_DASH] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_RBRACE] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_as] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_not] = ACTIONS(2437), - [anon_sym_DOT_DOT2] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2439), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2439), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [anon_sym_DOT2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2437), - [anon_sym_0o] = ACTIONS(2437), - [anon_sym_0x] = ACTIONS(2437), - [sym_val_date] = 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_CARET] = ACTIONS(2437), - [anon_sym_POUND] = ACTIONS(113), + [1556] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6253), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6012), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4580), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5809), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1556), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(4977), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4979), + [anon_sym_DOT_DOT_LT] = ACTIONS(4979), + [anon_sym_null] = ACTIONS(4981), + [anon_sym_true] = ACTIONS(4983), + [anon_sym_false] = ACTIONS(4983), + [aux_sym__val_number_decimal_token1] = ACTIONS(4985), + [aux_sym__val_number_decimal_token2] = ACTIONS(4987), + [anon_sym_DOT2] = ACTIONS(4989), + [aux_sym__val_number_decimal_token3] = ACTIONS(4991), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(4993), + [aux_sym__val_number_token5] = ACTIONS(4993), + [aux_sym__val_number_token6] = ACTIONS(4993), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(4995), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), + [anon_sym_POUND] = ACTIONS(3), }, - [1351] = { - [sym_comment] = STATE(1351), - [anon_sym_export] = ACTIONS(3505), - [anon_sym_alias] = ACTIONS(3505), - [anon_sym_let] = ACTIONS(3505), - [anon_sym_let_DASHenv] = ACTIONS(3505), - [anon_sym_mut] = ACTIONS(3505), - [anon_sym_const] = ACTIONS(3505), - [anon_sym_SEMI] = ACTIONS(3505), - [sym_cmd_identifier] = ACTIONS(3505), - [anon_sym_LF] = ACTIONS(3507), - [anon_sym_def] = ACTIONS(3505), - [anon_sym_export_DASHenv] = ACTIONS(3505), - [anon_sym_extern] = ACTIONS(3505), - [anon_sym_module] = ACTIONS(3505), - [anon_sym_use] = ACTIONS(3505), - [anon_sym_LBRACK] = ACTIONS(3505), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_RPAREN] = ACTIONS(3505), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_error] = ACTIONS(3505), - [anon_sym_DASH_DASH] = ACTIONS(3505), - [anon_sym_DASH] = ACTIONS(3505), - [anon_sym_break] = ACTIONS(3505), - [anon_sym_continue] = ACTIONS(3505), - [anon_sym_for] = ACTIONS(3505), - [anon_sym_loop] = ACTIONS(3505), - [anon_sym_while] = ACTIONS(3505), - [anon_sym_do] = ACTIONS(3505), - [anon_sym_if] = ACTIONS(3505), - [anon_sym_match] = ACTIONS(3505), - [anon_sym_LBRACE] = ACTIONS(3505), - [anon_sym_RBRACE] = ACTIONS(3505), - [anon_sym_DOT_DOT] = ACTIONS(3505), - [anon_sym_try] = ACTIONS(3505), - [anon_sym_return] = ACTIONS(3505), - [anon_sym_source] = ACTIONS(3505), - [anon_sym_source_DASHenv] = ACTIONS(3505), - [anon_sym_register] = ACTIONS(3505), - [anon_sym_hide] = ACTIONS(3505), - [anon_sym_hide_DASHenv] = ACTIONS(3505), - [anon_sym_overlay] = ACTIONS(3505), - [anon_sym_as] = ACTIONS(3505), - [anon_sym_where] = ACTIONS(3505), - [anon_sym_not] = ACTIONS(3505), - [anon_sym_DOT_DOT2] = ACTIONS(3505), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3505), - [anon_sym_DOT_DOT_LT] = ACTIONS(3505), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3507), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3507), - [anon_sym_null] = ACTIONS(3505), - [anon_sym_true] = ACTIONS(3505), - [anon_sym_false] = ACTIONS(3505), - [aux_sym__val_number_decimal_token1] = ACTIONS(3505), - [aux_sym__val_number_decimal_token2] = ACTIONS(3505), - [anon_sym_DOT2] = ACTIONS(3505), - [aux_sym__val_number_decimal_token3] = ACTIONS(3505), - [aux_sym__val_number_token1] = ACTIONS(3505), - [aux_sym__val_number_token2] = ACTIONS(3505), - [aux_sym__val_number_token3] = ACTIONS(3505), - [aux_sym__val_number_token4] = ACTIONS(3505), - [aux_sym__val_number_token5] = ACTIONS(3505), - [aux_sym__val_number_token6] = ACTIONS(3505), - [anon_sym_0b] = ACTIONS(3505), - [anon_sym_0o] = ACTIONS(3505), - [anon_sym_0x] = ACTIONS(3505), - [sym_val_date] = ACTIONS(3505), - [anon_sym_DQUOTE] = ACTIONS(3505), - [sym__str_single_quotes] = ACTIONS(3505), - [sym__str_back_ticks] = ACTIONS(3505), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3505), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3505), - [anon_sym_CARET] = ACTIONS(3505), - [anon_sym_POUND] = ACTIONS(113), + [1557] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6254), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6012), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4580), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5812), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1557), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(4977), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4979), + [anon_sym_DOT_DOT_LT] = ACTIONS(4979), + [anon_sym_null] = ACTIONS(4981), + [anon_sym_true] = ACTIONS(4983), + [anon_sym_false] = ACTIONS(4983), + [aux_sym__val_number_decimal_token1] = ACTIONS(4985), + [aux_sym__val_number_decimal_token2] = ACTIONS(4987), + [anon_sym_DOT2] = ACTIONS(4989), + [aux_sym__val_number_decimal_token3] = ACTIONS(4991), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(4993), + [aux_sym__val_number_token5] = ACTIONS(4993), + [aux_sym__val_number_token6] = ACTIONS(4993), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(4995), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), + [anon_sym_POUND] = ACTIONS(3), }, - [1352] = { - [sym_comment] = STATE(1352), - [ts_builtin_sym_end] = ACTIONS(925), - [anon_sym_SEMI] = ACTIONS(923), - [anon_sym_LF] = ACTIONS(925), - [anon_sym_LBRACK] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_PIPE] = ACTIONS(923), - [anon_sym_DOLLAR] = ACTIONS(923), - [anon_sym_GT] = ACTIONS(923), - [anon_sym_DASH_DASH] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_in] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(923), - [anon_sym_DOT_DOT] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_STAR_STAR] = ACTIONS(923), - [anon_sym_PLUS_PLUS] = ACTIONS(923), - [anon_sym_SLASH] = ACTIONS(923), - [anon_sym_mod] = ACTIONS(923), - [anon_sym_SLASH_SLASH] = ACTIONS(923), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_bit_DASHshl] = ACTIONS(923), - [anon_sym_bit_DASHshr] = ACTIONS(923), - [anon_sym_EQ_EQ] = ACTIONS(923), - [anon_sym_BANG_EQ] = ACTIONS(923), - [anon_sym_LT2] = ACTIONS(923), - [anon_sym_LT_EQ] = ACTIONS(923), - [anon_sym_GT_EQ] = ACTIONS(923), - [anon_sym_not_DASHin] = ACTIONS(923), - [anon_sym_starts_DASHwith] = ACTIONS(923), - [anon_sym_ends_DASHwith] = ACTIONS(923), - [anon_sym_EQ_TILDE] = ACTIONS(923), - [anon_sym_BANG_TILDE] = ACTIONS(923), - [anon_sym_bit_DASHand] = ACTIONS(923), - [anon_sym_bit_DASHxor] = ACTIONS(923), - [anon_sym_bit_DASHor] = ACTIONS(923), - [anon_sym_and] = ACTIONS(923), - [anon_sym_xor] = ACTIONS(923), - [anon_sym_or] = ACTIONS(923), - [anon_sym_not] = ACTIONS(923), - [anon_sym_DOT_DOT2] = ACTIONS(923), - [anon_sym_DOT] = ACTIONS(3845), - [anon_sym_DOT_DOT_EQ] = ACTIONS(923), - [anon_sym_DOT_DOT_LT] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(925), - [anon_sym_DOT_DOT_LT2] = ACTIONS(925), - [aux_sym__immediate_decimal_token2] = ACTIONS(3848), - [anon_sym_null] = ACTIONS(923), - [anon_sym_true] = ACTIONS(923), - [anon_sym_false] = ACTIONS(923), - [aux_sym__val_number_decimal_token1] = ACTIONS(923), - [aux_sym__val_number_decimal_token2] = ACTIONS(923), - [anon_sym_DOT2] = ACTIONS(923), - [aux_sym__val_number_decimal_token3] = ACTIONS(923), - [aux_sym__val_number_token1] = ACTIONS(923), - [aux_sym__val_number_token2] = ACTIONS(923), - [aux_sym__val_number_token3] = ACTIONS(923), - [aux_sym__val_number_token4] = ACTIONS(923), - [aux_sym__val_number_token5] = ACTIONS(923), - [aux_sym__val_number_token6] = ACTIONS(923), - [anon_sym_0b] = ACTIONS(923), - [sym_filesize_unit] = ACTIONS(923), - [sym_duration_unit] = ACTIONS(925), - [anon_sym_0o] = ACTIONS(923), - [anon_sym_0x] = ACTIONS(923), - [sym_val_date] = ACTIONS(923), - [anon_sym_DQUOTE] = ACTIONS(923), - [sym__str_single_quotes] = ACTIONS(923), - [sym__str_back_ticks] = ACTIONS(923), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(923), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), - [aux_sym_unquoted_token5] = ACTIONS(923), - [anon_sym_POUND] = ACTIONS(113), + [1558] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6255), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6012), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4580), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5813), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1558), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(4977), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4979), + [anon_sym_DOT_DOT_LT] = ACTIONS(4979), + [anon_sym_null] = ACTIONS(4981), + [anon_sym_true] = ACTIONS(4983), + [anon_sym_false] = ACTIONS(4983), + [aux_sym__val_number_decimal_token1] = ACTIONS(4985), + [aux_sym__val_number_decimal_token2] = ACTIONS(4987), + [anon_sym_DOT2] = ACTIONS(4989), + [aux_sym__val_number_decimal_token3] = ACTIONS(4991), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(4993), + [aux_sym__val_number_token5] = ACTIONS(4993), + [aux_sym__val_number_token6] = ACTIONS(4993), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(4995), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), + [anon_sym_POUND] = ACTIONS(3), }, - [1353] = { - [sym_comment] = STATE(1353), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_alias] = ACTIONS(1070), - [anon_sym_let] = ACTIONS(1070), - [anon_sym_let_DASHenv] = ACTIONS(1070), - [anon_sym_mut] = ACTIONS(1070), - [anon_sym_const] = ACTIONS(1070), - [anon_sym_SEMI] = ACTIONS(1070), - [sym_cmd_identifier] = ACTIONS(1070), - [anon_sym_LF] = ACTIONS(1072), - [anon_sym_def] = ACTIONS(1070), - [anon_sym_export_DASHenv] = ACTIONS(1070), - [anon_sym_extern] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_use] = ACTIONS(1070), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_RPAREN] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_error] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_loop] = ACTIONS(1070), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_do] = ACTIONS(1070), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_match] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_RBRACE] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_try] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_source] = ACTIONS(1070), - [anon_sym_source_DASHenv] = ACTIONS(1070), - [anon_sym_register] = ACTIONS(1070), - [anon_sym_hide] = ACTIONS(1070), - [anon_sym_hide_DASHenv] = ACTIONS(1070), - [anon_sym_overlay] = ACTIONS(1070), - [anon_sym_where] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(3850), - [anon_sym_not] = ACTIONS(1070), - [anon_sym_DOT_DOT2] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1072), - [anon_sym_null] = ACTIONS(1070), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1070), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), - [anon_sym_CARET] = ACTIONS(1070), - [anon_sym_POUND] = ACTIONS(113), + [1559] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6332), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6012), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4580), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5819), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1559), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(4977), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4979), + [anon_sym_DOT_DOT_LT] = ACTIONS(4979), + [anon_sym_null] = ACTIONS(4981), + [anon_sym_true] = ACTIONS(4983), + [anon_sym_false] = ACTIONS(4983), + [aux_sym__val_number_decimal_token1] = ACTIONS(4985), + [aux_sym__val_number_decimal_token2] = ACTIONS(4987), + [anon_sym_DOT2] = ACTIONS(4989), + [aux_sym__val_number_decimal_token3] = ACTIONS(4991), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(4993), + [aux_sym__val_number_token5] = ACTIONS(4993), + [aux_sym__val_number_token6] = ACTIONS(4993), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(4995), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), + [anon_sym_POUND] = ACTIONS(3), }, - [1354] = { - [sym_comment] = STATE(1354), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_alias] = ACTIONS(1070), - [anon_sym_let] = ACTIONS(1070), - [anon_sym_let_DASHenv] = ACTIONS(1070), - [anon_sym_mut] = ACTIONS(1070), - [anon_sym_const] = ACTIONS(1070), - [anon_sym_SEMI] = ACTIONS(1070), - [sym_cmd_identifier] = ACTIONS(1070), - [anon_sym_LF] = ACTIONS(1072), - [anon_sym_def] = ACTIONS(1070), - [anon_sym_export_DASHenv] = ACTIONS(1070), - [anon_sym_extern] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_use] = ACTIONS(1070), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_RPAREN] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_error] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_loop] = ACTIONS(1070), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_do] = ACTIONS(1070), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_match] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_RBRACE] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_try] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_source] = ACTIONS(1070), - [anon_sym_source_DASHenv] = ACTIONS(1070), - [anon_sym_register] = ACTIONS(1070), - [anon_sym_hide] = ACTIONS(1070), - [anon_sym_hide_DASHenv] = ACTIONS(1070), - [anon_sym_overlay] = ACTIONS(1070), - [anon_sym_where] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(3850), - [anon_sym_not] = ACTIONS(1070), - [anon_sym_DOT_DOT2] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1072), - [anon_sym_null] = ACTIONS(1070), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1070), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), - [anon_sym_CARET] = ACTIONS(1070), + [1560] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6257), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6012), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4580), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5852), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1560), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(4977), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4979), + [anon_sym_DOT_DOT_LT] = ACTIONS(4979), + [anon_sym_null] = ACTIONS(4981), + [anon_sym_true] = ACTIONS(4983), + [anon_sym_false] = ACTIONS(4983), + [aux_sym__val_number_decimal_token1] = ACTIONS(4985), + [aux_sym__val_number_decimal_token2] = ACTIONS(4987), + [anon_sym_DOT2] = ACTIONS(4989), + [aux_sym__val_number_decimal_token3] = ACTIONS(4991), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(4993), + [aux_sym__val_number_token5] = ACTIONS(4993), + [aux_sym__val_number_token6] = ACTIONS(4993), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(4995), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), + [anon_sym_POUND] = ACTIONS(3), + }, + [1561] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6258), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6012), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4580), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5856), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1561), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(4977), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4979), + [anon_sym_DOT_DOT_LT] = ACTIONS(4979), + [anon_sym_null] = ACTIONS(4981), + [anon_sym_true] = ACTIONS(4983), + [anon_sym_false] = ACTIONS(4983), + [aux_sym__val_number_decimal_token1] = ACTIONS(4985), + [aux_sym__val_number_decimal_token2] = ACTIONS(4987), + [anon_sym_DOT2] = ACTIONS(4989), + [aux_sym__val_number_decimal_token3] = ACTIONS(4991), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(4993), + [aux_sym__val_number_token5] = ACTIONS(4993), + [aux_sym__val_number_token6] = ACTIONS(4993), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(4995), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), + [anon_sym_POUND] = ACTIONS(3), + }, + [1562] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6260), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6012), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4580), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5534), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1562), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(4977), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4979), + [anon_sym_DOT_DOT_LT] = ACTIONS(4979), + [anon_sym_null] = ACTIONS(4981), + [anon_sym_true] = ACTIONS(4983), + [anon_sym_false] = ACTIONS(4983), + [aux_sym__val_number_decimal_token1] = ACTIONS(4985), + [aux_sym__val_number_decimal_token2] = ACTIONS(4987), + [anon_sym_DOT2] = ACTIONS(4989), + [aux_sym__val_number_decimal_token3] = ACTIONS(4991), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(4993), + [aux_sym__val_number_token5] = ACTIONS(4993), + [aux_sym__val_number_token6] = ACTIONS(4993), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(4995), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), + [anon_sym_POUND] = ACTIONS(3), + }, + [1563] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6262), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6012), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4580), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5863), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1563), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(4977), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4979), + [anon_sym_DOT_DOT_LT] = ACTIONS(4979), + [anon_sym_null] = ACTIONS(4981), + [anon_sym_true] = ACTIONS(4983), + [anon_sym_false] = ACTIONS(4983), + [aux_sym__val_number_decimal_token1] = ACTIONS(4985), + [aux_sym__val_number_decimal_token2] = ACTIONS(4987), + [anon_sym_DOT2] = ACTIONS(4989), + [aux_sym__val_number_decimal_token3] = ACTIONS(4991), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(4993), + [aux_sym__val_number_token5] = ACTIONS(4993), + [aux_sym__val_number_token6] = ACTIONS(4993), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(4995), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), + [anon_sym_POUND] = ACTIONS(3), + }, + [1564] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6263), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6012), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4580), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5572), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1564), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(4977), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4979), + [anon_sym_DOT_DOT_LT] = ACTIONS(4979), + [anon_sym_null] = ACTIONS(4981), + [anon_sym_true] = ACTIONS(4983), + [anon_sym_false] = ACTIONS(4983), + [aux_sym__val_number_decimal_token1] = ACTIONS(4985), + [aux_sym__val_number_decimal_token2] = ACTIONS(4987), + [anon_sym_DOT2] = ACTIONS(4989), + [aux_sym__val_number_decimal_token3] = ACTIONS(4991), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(4993), + [aux_sym__val_number_token5] = ACTIONS(4993), + [aux_sym__val_number_token6] = ACTIONS(4993), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(4995), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), + [anon_sym_POUND] = ACTIONS(3), + }, + [1565] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6264), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6012), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4580), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5599), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1565), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(4977), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4979), + [anon_sym_DOT_DOT_LT] = ACTIONS(4979), + [anon_sym_null] = ACTIONS(4981), + [anon_sym_true] = ACTIONS(4983), + [anon_sym_false] = ACTIONS(4983), + [aux_sym__val_number_decimal_token1] = ACTIONS(4985), + [aux_sym__val_number_decimal_token2] = ACTIONS(4987), + [anon_sym_DOT2] = ACTIONS(4989), + [aux_sym__val_number_decimal_token3] = ACTIONS(4991), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(4993), + [aux_sym__val_number_token5] = ACTIONS(4993), + [aux_sym__val_number_token6] = ACTIONS(4993), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(4995), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), + [anon_sym_POUND] = ACTIONS(3), + }, + [1566] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6266), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6012), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4580), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5601), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1566), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(4977), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4979), + [anon_sym_DOT_DOT_LT] = ACTIONS(4979), + [anon_sym_null] = ACTIONS(4981), + [anon_sym_true] = ACTIONS(4983), + [anon_sym_false] = ACTIONS(4983), + [aux_sym__val_number_decimal_token1] = ACTIONS(4985), + [aux_sym__val_number_decimal_token2] = ACTIONS(4987), + [anon_sym_DOT2] = ACTIONS(4989), + [aux_sym__val_number_decimal_token3] = ACTIONS(4991), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(4993), + [aux_sym__val_number_token5] = ACTIONS(4993), + [aux_sym__val_number_token6] = ACTIONS(4993), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(4995), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), + [anon_sym_POUND] = ACTIONS(3), + }, + [1567] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6267), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6012), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4580), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5604), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1567), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(4977), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4979), + [anon_sym_DOT_DOT_LT] = ACTIONS(4979), + [anon_sym_null] = ACTIONS(4981), + [anon_sym_true] = ACTIONS(4983), + [anon_sym_false] = ACTIONS(4983), + [aux_sym__val_number_decimal_token1] = ACTIONS(4985), + [aux_sym__val_number_decimal_token2] = ACTIONS(4987), + [anon_sym_DOT2] = ACTIONS(4989), + [aux_sym__val_number_decimal_token3] = ACTIONS(4991), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(4993), + [aux_sym__val_number_token5] = ACTIONS(4993), + [aux_sym__val_number_token6] = ACTIONS(4993), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(4995), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), + [anon_sym_POUND] = ACTIONS(3), + }, + [1568] = { + [sym_comment] = STATE(1568), + [anon_sym_export] = ACTIONS(4997), + [anon_sym_alias] = ACTIONS(4997), + [anon_sym_let] = ACTIONS(4997), + [anon_sym_let_DASHenv] = ACTIONS(4997), + [anon_sym_mut] = ACTIONS(4997), + [anon_sym_const] = ACTIONS(4997), + [anon_sym_SEMI] = ACTIONS(4997), + [sym_cmd_identifier] = ACTIONS(4997), + [anon_sym_LF] = ACTIONS(4999), + [anon_sym_def] = ACTIONS(4997), + [anon_sym_export_DASHenv] = ACTIONS(4997), + [anon_sym_extern] = ACTIONS(4997), + [anon_sym_module] = ACTIONS(4997), + [anon_sym_use] = ACTIONS(4997), + [anon_sym_LBRACK] = ACTIONS(4997), + [anon_sym_LPAREN] = ACTIONS(4997), + [anon_sym_RPAREN] = ACTIONS(4997), + [anon_sym_DOLLAR] = ACTIONS(4997), + [anon_sym_error] = ACTIONS(4997), + [anon_sym_DASH_DASH] = ACTIONS(4997), + [anon_sym_DASH] = ACTIONS(4997), + [anon_sym_break] = ACTIONS(4997), + [anon_sym_continue] = ACTIONS(4997), + [anon_sym_for] = ACTIONS(4997), + [anon_sym_loop] = ACTIONS(4997), + [anon_sym_while] = ACTIONS(4997), + [anon_sym_do] = ACTIONS(4997), + [anon_sym_if] = ACTIONS(4997), + [anon_sym_match] = ACTIONS(4997), + [anon_sym_LBRACE] = ACTIONS(4997), + [anon_sym_RBRACE] = ACTIONS(4997), + [anon_sym_DOT_DOT] = ACTIONS(4997), + [anon_sym_try] = ACTIONS(4997), + [anon_sym_return] = ACTIONS(4997), + [anon_sym_source] = ACTIONS(4997), + [anon_sym_source_DASHenv] = ACTIONS(4997), + [anon_sym_register] = ACTIONS(4997), + [anon_sym_hide] = ACTIONS(4997), + [anon_sym_hide_DASHenv] = ACTIONS(4997), + [anon_sym_overlay] = ACTIONS(4997), + [anon_sym_as] = ACTIONS(4997), + [anon_sym_where] = ACTIONS(4997), + [anon_sym_not] = ACTIONS(4997), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4997), + [anon_sym_DOT_DOT_LT] = ACTIONS(4997), + [anon_sym_null] = ACTIONS(4997), + [anon_sym_true] = ACTIONS(4997), + [anon_sym_false] = ACTIONS(4997), + [aux_sym__val_number_decimal_token1] = ACTIONS(4997), + [aux_sym__val_number_decimal_token2] = ACTIONS(4997), + [anon_sym_DOT2] = ACTIONS(4997), + [aux_sym__val_number_decimal_token3] = ACTIONS(4997), + [aux_sym__val_number_token1] = ACTIONS(4997), + [aux_sym__val_number_token2] = ACTIONS(4997), + [aux_sym__val_number_token3] = ACTIONS(4997), + [aux_sym__val_number_token4] = ACTIONS(4997), + [aux_sym__val_number_token5] = ACTIONS(4997), + [aux_sym__val_number_token6] = ACTIONS(4997), + [anon_sym_0b] = ACTIONS(4997), + [anon_sym_0o] = ACTIONS(4997), + [anon_sym_0x] = ACTIONS(4997), + [sym_val_date] = ACTIONS(4997), + [anon_sym_DQUOTE] = ACTIONS(4997), + [sym__str_single_quotes] = ACTIONS(4997), + [sym__str_back_ticks] = ACTIONS(4997), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4997), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4997), + [anon_sym_CARET] = ACTIONS(4997), [anon_sym_POUND] = ACTIONS(113), }, - [1355] = { - [sym_comment] = STATE(1355), - [ts_builtin_sym_end] = ACTIONS(2583), - [anon_sym_export] = ACTIONS(2581), - [anon_sym_alias] = ACTIONS(2581), - [anon_sym_let] = ACTIONS(2581), - [anon_sym_let_DASHenv] = ACTIONS(2581), - [anon_sym_mut] = ACTIONS(2581), - [anon_sym_const] = ACTIONS(2581), - [anon_sym_SEMI] = ACTIONS(2581), - [sym_cmd_identifier] = ACTIONS(2581), - [anon_sym_LF] = ACTIONS(2583), - [anon_sym_def] = ACTIONS(2581), - [anon_sym_export_DASHenv] = ACTIONS(2581), - [anon_sym_extern] = ACTIONS(2581), - [anon_sym_module] = ACTIONS(2581), - [anon_sym_use] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2581), - [anon_sym_error] = ACTIONS(2581), - [anon_sym_DASH_DASH] = ACTIONS(2581), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_break] = ACTIONS(2581), - [anon_sym_continue] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2581), - [anon_sym_loop] = ACTIONS(2581), - [anon_sym_while] = ACTIONS(2581), - [anon_sym_do] = ACTIONS(2581), - [anon_sym_if] = ACTIONS(2581), - [anon_sym_match] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2581), - [anon_sym_DOT_DOT] = ACTIONS(2581), - [anon_sym_try] = ACTIONS(2581), - [anon_sym_return] = ACTIONS(2581), - [anon_sym_source] = ACTIONS(2581), - [anon_sym_source_DASHenv] = ACTIONS(2581), - [anon_sym_register] = ACTIONS(2581), - [anon_sym_hide] = ACTIONS(2581), - [anon_sym_hide_DASHenv] = ACTIONS(2581), - [anon_sym_overlay] = ACTIONS(2581), - [anon_sym_as] = ACTIONS(2581), - [anon_sym_where] = ACTIONS(2581), - [anon_sym_not] = ACTIONS(2581), - [anon_sym_LPAREN2] = ACTIONS(2583), - [anon_sym_DOT] = ACTIONS(2581), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2581), - [anon_sym_DOT_DOT_LT] = ACTIONS(2581), - [aux_sym__immediate_decimal_token2] = ACTIONS(3852), - [anon_sym_null] = ACTIONS(2581), - [anon_sym_true] = ACTIONS(2581), - [anon_sym_false] = ACTIONS(2581), - [aux_sym__val_number_decimal_token1] = ACTIONS(2581), - [aux_sym__val_number_decimal_token2] = ACTIONS(2581), - [anon_sym_DOT2] = ACTIONS(2581), - [aux_sym__val_number_decimal_token3] = ACTIONS(2581), - [aux_sym__val_number_token1] = ACTIONS(2581), - [aux_sym__val_number_token2] = ACTIONS(2581), - [aux_sym__val_number_token3] = ACTIONS(2581), - [aux_sym__val_number_token4] = ACTIONS(2581), - [aux_sym__val_number_token5] = ACTIONS(2581), - [aux_sym__val_number_token6] = ACTIONS(2581), - [anon_sym_0b] = ACTIONS(2581), - [anon_sym_0o] = ACTIONS(2581), - [anon_sym_0x] = ACTIONS(2581), - [sym_val_date] = ACTIONS(2581), - [anon_sym_DQUOTE] = ACTIONS(2581), - [sym__str_single_quotes] = ACTIONS(2581), - [sym__str_back_ticks] = ACTIONS(2581), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2581), - [anon_sym_CARET] = ACTIONS(2581), - [aux_sym_unquoted_token2] = ACTIONS(2581), + [1569] = { + [sym_comment] = STATE(1569), + [anon_sym_export] = ACTIONS(5001), + [anon_sym_alias] = ACTIONS(5001), + [anon_sym_let] = ACTIONS(5001), + [anon_sym_let_DASHenv] = ACTIONS(5001), + [anon_sym_mut] = ACTIONS(5001), + [anon_sym_const] = ACTIONS(5001), + [anon_sym_SEMI] = ACTIONS(5001), + [sym_cmd_identifier] = ACTIONS(5001), + [anon_sym_LF] = ACTIONS(5003), + [anon_sym_def] = ACTIONS(5001), + [anon_sym_export_DASHenv] = ACTIONS(5001), + [anon_sym_extern] = ACTIONS(5001), + [anon_sym_module] = ACTIONS(5001), + [anon_sym_use] = ACTIONS(5001), + [anon_sym_LBRACK] = ACTIONS(5001), + [anon_sym_LPAREN] = ACTIONS(5001), + [anon_sym_RPAREN] = ACTIONS(5001), + [anon_sym_DOLLAR] = ACTIONS(5001), + [anon_sym_error] = ACTIONS(5001), + [anon_sym_DASH_DASH] = ACTIONS(5001), + [anon_sym_DASH] = ACTIONS(5001), + [anon_sym_break] = ACTIONS(5001), + [anon_sym_continue] = ACTIONS(5001), + [anon_sym_for] = ACTIONS(5001), + [anon_sym_loop] = ACTIONS(5001), + [anon_sym_while] = ACTIONS(5001), + [anon_sym_do] = ACTIONS(5001), + [anon_sym_if] = ACTIONS(5001), + [anon_sym_match] = ACTIONS(5001), + [anon_sym_LBRACE] = ACTIONS(5001), + [anon_sym_RBRACE] = ACTIONS(5001), + [anon_sym_DOT_DOT] = ACTIONS(5001), + [anon_sym_try] = ACTIONS(5001), + [anon_sym_return] = ACTIONS(5001), + [anon_sym_source] = ACTIONS(5001), + [anon_sym_source_DASHenv] = ACTIONS(5001), + [anon_sym_register] = ACTIONS(5001), + [anon_sym_hide] = ACTIONS(5001), + [anon_sym_hide_DASHenv] = ACTIONS(5001), + [anon_sym_overlay] = ACTIONS(5001), + [anon_sym_as] = ACTIONS(5001), + [anon_sym_where] = ACTIONS(5001), + [anon_sym_not] = ACTIONS(5001), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5001), + [anon_sym_DOT_DOT_LT] = ACTIONS(5001), + [anon_sym_null] = ACTIONS(5001), + [anon_sym_true] = ACTIONS(5001), + [anon_sym_false] = ACTIONS(5001), + [aux_sym__val_number_decimal_token1] = ACTIONS(5001), + [aux_sym__val_number_decimal_token2] = ACTIONS(5001), + [anon_sym_DOT2] = ACTIONS(5001), + [aux_sym__val_number_decimal_token3] = ACTIONS(5001), + [aux_sym__val_number_token1] = ACTIONS(5001), + [aux_sym__val_number_token2] = ACTIONS(5001), + [aux_sym__val_number_token3] = ACTIONS(5001), + [aux_sym__val_number_token4] = ACTIONS(5001), + [aux_sym__val_number_token5] = ACTIONS(5001), + [aux_sym__val_number_token6] = ACTIONS(5001), + [anon_sym_0b] = ACTIONS(5001), + [anon_sym_0o] = ACTIONS(5001), + [anon_sym_0x] = ACTIONS(5001), + [sym_val_date] = ACTIONS(5001), + [anon_sym_DQUOTE] = ACTIONS(5001), + [sym__str_single_quotes] = ACTIONS(5001), + [sym__str_back_ticks] = ACTIONS(5001), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5001), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5001), + [anon_sym_CARET] = ACTIONS(5001), [anon_sym_POUND] = ACTIONS(113), }, - [1356] = { - [sym_cell_path] = STATE(1701), - [sym_path] = STATE(1361), - [sym_comment] = STATE(1356), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_alias] = ACTIONS(1148), - [anon_sym_let] = ACTIONS(1148), - [anon_sym_let_DASHenv] = ACTIONS(1148), - [anon_sym_mut] = ACTIONS(1148), - [anon_sym_const] = ACTIONS(1148), - [anon_sym_SEMI] = ACTIONS(1148), - [sym_cmd_identifier] = ACTIONS(1148), - [anon_sym_LF] = ACTIONS(1150), - [anon_sym_def] = ACTIONS(1148), - [anon_sym_export_DASHenv] = ACTIONS(1148), - [anon_sym_extern] = ACTIONS(1148), - [anon_sym_module] = ACTIONS(1148), - [anon_sym_use] = ACTIONS(1148), - [anon_sym_LBRACK] = ACTIONS(1148), - [anon_sym_LPAREN] = ACTIONS(1148), - [anon_sym_RPAREN] = ACTIONS(1148), - [anon_sym_DOLLAR] = ACTIONS(1148), - [anon_sym_error] = ACTIONS(1148), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_DASH] = ACTIONS(1148), - [anon_sym_break] = ACTIONS(1148), - [anon_sym_continue] = ACTIONS(1148), - [anon_sym_for] = ACTIONS(1148), - [anon_sym_loop] = ACTIONS(1148), - [anon_sym_while] = ACTIONS(1148), - [anon_sym_do] = ACTIONS(1148), - [anon_sym_if] = ACTIONS(1148), - [anon_sym_match] = ACTIONS(1148), - [anon_sym_LBRACE] = ACTIONS(1148), - [anon_sym_RBRACE] = ACTIONS(1148), - [anon_sym_DOT_DOT] = ACTIONS(1148), - [anon_sym_try] = ACTIONS(1148), - [anon_sym_return] = ACTIONS(1148), - [anon_sym_source] = ACTIONS(1148), - [anon_sym_source_DASHenv] = ACTIONS(1148), - [anon_sym_register] = ACTIONS(1148), - [anon_sym_hide] = ACTIONS(1148), - [anon_sym_hide_DASHenv] = ACTIONS(1148), - [anon_sym_overlay] = ACTIONS(1148), - [anon_sym_as] = ACTIONS(1148), - [anon_sym_where] = ACTIONS(1148), - [anon_sym_not] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(3854), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1148), - [anon_sym_DOT_DOT_LT] = ACTIONS(1148), - [anon_sym_null] = ACTIONS(1148), - [anon_sym_true] = ACTIONS(1148), - [anon_sym_false] = ACTIONS(1148), - [aux_sym__val_number_decimal_token1] = ACTIONS(1148), - [aux_sym__val_number_decimal_token2] = ACTIONS(1148), - [anon_sym_DOT2] = ACTIONS(1148), - [aux_sym__val_number_decimal_token3] = ACTIONS(1148), - [aux_sym__val_number_token1] = ACTIONS(1148), - [aux_sym__val_number_token2] = ACTIONS(1148), - [aux_sym__val_number_token3] = ACTIONS(1148), - [aux_sym__val_number_token4] = ACTIONS(1148), - [aux_sym__val_number_token5] = ACTIONS(1148), - [aux_sym__val_number_token6] = ACTIONS(1148), - [anon_sym_0b] = ACTIONS(1148), - [anon_sym_0o] = ACTIONS(1148), - [anon_sym_0x] = ACTIONS(1148), - [sym_val_date] = ACTIONS(1148), - [anon_sym_DQUOTE] = ACTIONS(1148), - [sym__str_single_quotes] = ACTIONS(1148), - [sym__str_back_ticks] = ACTIONS(1148), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1148), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1148), - [anon_sym_CARET] = ACTIONS(1148), + [1570] = { + [sym_comment] = STATE(1570), + [anon_sym_export] = ACTIONS(5005), + [anon_sym_alias] = ACTIONS(5005), + [anon_sym_let] = ACTIONS(5005), + [anon_sym_let_DASHenv] = ACTIONS(5005), + [anon_sym_mut] = ACTIONS(5005), + [anon_sym_const] = ACTIONS(5005), + [anon_sym_SEMI] = ACTIONS(5005), + [sym_cmd_identifier] = ACTIONS(5005), + [anon_sym_LF] = ACTIONS(5007), + [anon_sym_def] = ACTIONS(5005), + [anon_sym_export_DASHenv] = ACTIONS(5005), + [anon_sym_extern] = ACTIONS(5005), + [anon_sym_module] = ACTIONS(5005), + [anon_sym_use] = ACTIONS(5005), + [anon_sym_LBRACK] = ACTIONS(5005), + [anon_sym_LPAREN] = ACTIONS(5005), + [anon_sym_RPAREN] = ACTIONS(5005), + [anon_sym_DOLLAR] = ACTIONS(5005), + [anon_sym_error] = ACTIONS(5005), + [anon_sym_DASH_DASH] = ACTIONS(5005), + [anon_sym_DASH] = ACTIONS(5005), + [anon_sym_break] = ACTIONS(5005), + [anon_sym_continue] = ACTIONS(5005), + [anon_sym_for] = ACTIONS(5005), + [anon_sym_loop] = ACTIONS(5005), + [anon_sym_while] = ACTIONS(5005), + [anon_sym_do] = ACTIONS(5005), + [anon_sym_if] = ACTIONS(5005), + [anon_sym_match] = ACTIONS(5005), + [anon_sym_LBRACE] = ACTIONS(5005), + [anon_sym_RBRACE] = ACTIONS(5005), + [anon_sym_DOT_DOT] = ACTIONS(5005), + [anon_sym_try] = ACTIONS(5005), + [anon_sym_return] = ACTIONS(5005), + [anon_sym_source] = ACTIONS(5005), + [anon_sym_source_DASHenv] = ACTIONS(5005), + [anon_sym_register] = ACTIONS(5005), + [anon_sym_hide] = ACTIONS(5005), + [anon_sym_hide_DASHenv] = ACTIONS(5005), + [anon_sym_overlay] = ACTIONS(5005), + [anon_sym_as] = ACTIONS(5005), + [anon_sym_where] = ACTIONS(5005), + [anon_sym_not] = ACTIONS(5005), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5005), + [anon_sym_DOT_DOT_LT] = ACTIONS(5005), + [anon_sym_null] = ACTIONS(5005), + [anon_sym_true] = ACTIONS(5005), + [anon_sym_false] = ACTIONS(5005), + [aux_sym__val_number_decimal_token1] = ACTIONS(5005), + [aux_sym__val_number_decimal_token2] = ACTIONS(5005), + [anon_sym_DOT2] = ACTIONS(5005), + [aux_sym__val_number_decimal_token3] = ACTIONS(5005), + [aux_sym__val_number_token1] = ACTIONS(5005), + [aux_sym__val_number_token2] = ACTIONS(5005), + [aux_sym__val_number_token3] = ACTIONS(5005), + [aux_sym__val_number_token4] = ACTIONS(5005), + [aux_sym__val_number_token5] = ACTIONS(5005), + [aux_sym__val_number_token6] = ACTIONS(5005), + [anon_sym_0b] = ACTIONS(5005), + [anon_sym_0o] = ACTIONS(5005), + [anon_sym_0x] = ACTIONS(5005), + [sym_val_date] = ACTIONS(5005), + [anon_sym_DQUOTE] = ACTIONS(5005), + [sym__str_single_quotes] = ACTIONS(5005), + [sym__str_back_ticks] = ACTIONS(5005), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5005), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5005), + [anon_sym_CARET] = ACTIONS(5005), [anon_sym_POUND] = ACTIONS(113), }, - [1357] = { - [sym_path] = STATE(1644), - [sym_comment] = STATE(1357), - [aux_sym_cell_path_repeat1] = STATE(1402), - [ts_builtin_sym_end] = ACTIONS(1008), - [anon_sym_export] = ACTIONS(1006), - [anon_sym_alias] = ACTIONS(1006), - [anon_sym_let] = ACTIONS(1006), - [anon_sym_let_DASHenv] = ACTIONS(1006), - [anon_sym_mut] = ACTIONS(1006), - [anon_sym_const] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1006), - [sym_cmd_identifier] = ACTIONS(1006), - [anon_sym_LF] = ACTIONS(1008), - [anon_sym_def] = ACTIONS(1006), - [anon_sym_export_DASHenv] = ACTIONS(1006), - [anon_sym_extern] = ACTIONS(1006), - [anon_sym_module] = ACTIONS(1006), - [anon_sym_use] = ACTIONS(1006), - [anon_sym_LBRACK] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_error] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_break] = ACTIONS(1006), - [anon_sym_continue] = ACTIONS(1006), - [anon_sym_for] = ACTIONS(1006), - [anon_sym_loop] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(1006), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_match] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_try] = ACTIONS(1006), - [anon_sym_return] = ACTIONS(1006), - [anon_sym_source] = ACTIONS(1006), - [anon_sym_source_DASHenv] = ACTIONS(1006), - [anon_sym_register] = ACTIONS(1006), - [anon_sym_hide] = ACTIONS(1006), - [anon_sym_hide_DASHenv] = ACTIONS(1006), - [anon_sym_overlay] = ACTIONS(1006), - [anon_sym_where] = ACTIONS(1006), - [anon_sym_not] = ACTIONS(1006), - [anon_sym_DOT_DOT2] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(3856), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), - [anon_sym_null] = ACTIONS(1006), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1006), - [anon_sym_DOT2] = ACTIONS(1006), - [aux_sym__val_number_decimal_token3] = ACTIONS(1006), - [aux_sym__val_number_token1] = ACTIONS(1006), - [aux_sym__val_number_token2] = ACTIONS(1006), - [aux_sym__val_number_token3] = ACTIONS(1006), - [aux_sym__val_number_token4] = ACTIONS(1006), - [aux_sym__val_number_token5] = ACTIONS(1006), - [aux_sym__val_number_token6] = ACTIONS(1006), - [anon_sym_0b] = ACTIONS(1006), - [anon_sym_0o] = ACTIONS(1006), - [anon_sym_0x] = ACTIONS(1006), - [sym_val_date] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym__str_single_quotes] = ACTIONS(1006), - [sym__str_back_ticks] = ACTIONS(1006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1006), - [anon_sym_CARET] = ACTIONS(1006), - [anon_sym_POUND] = ACTIONS(113), - }, - [1358] = { - [sym_comment] = STATE(1358), - [ts_builtin_sym_end] = ACTIONS(925), - [anon_sym_SEMI] = ACTIONS(923), - [anon_sym_LF] = ACTIONS(925), - [anon_sym_LBRACK] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_PIPE] = ACTIONS(923), - [anon_sym_DOLLAR] = ACTIONS(923), - [anon_sym_GT] = ACTIONS(923), - [anon_sym_DASH_DASH] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_in] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(923), - [anon_sym_DOT_DOT] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_STAR_STAR] = ACTIONS(923), - [anon_sym_PLUS_PLUS] = ACTIONS(923), - [anon_sym_SLASH] = ACTIONS(923), - [anon_sym_mod] = ACTIONS(923), - [anon_sym_SLASH_SLASH] = ACTIONS(923), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_bit_DASHshl] = ACTIONS(923), - [anon_sym_bit_DASHshr] = ACTIONS(923), - [anon_sym_EQ_EQ] = ACTIONS(923), - [anon_sym_BANG_EQ] = ACTIONS(923), - [anon_sym_LT2] = ACTIONS(923), - [anon_sym_LT_EQ] = ACTIONS(923), - [anon_sym_GT_EQ] = ACTIONS(923), - [anon_sym_not_DASHin] = ACTIONS(923), - [anon_sym_starts_DASHwith] = ACTIONS(923), - [anon_sym_ends_DASHwith] = ACTIONS(923), - [anon_sym_EQ_TILDE] = ACTIONS(923), - [anon_sym_BANG_TILDE] = ACTIONS(923), - [anon_sym_bit_DASHand] = ACTIONS(923), - [anon_sym_bit_DASHxor] = ACTIONS(923), - [anon_sym_bit_DASHor] = ACTIONS(923), - [anon_sym_and] = ACTIONS(923), - [anon_sym_xor] = ACTIONS(923), - [anon_sym_or] = ACTIONS(923), - [anon_sym_not] = ACTIONS(923), - [anon_sym_DOT_DOT2] = ACTIONS(923), - [anon_sym_DOT] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ] = ACTIONS(923), - [anon_sym_DOT_DOT_LT] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(925), - [anon_sym_DOT_DOT_LT2] = ACTIONS(925), - [aux_sym__immediate_decimal_token2] = ACTIONS(3848), - [anon_sym_null] = ACTIONS(923), - [anon_sym_true] = ACTIONS(923), - [anon_sym_false] = ACTIONS(923), - [aux_sym__val_number_decimal_token1] = ACTIONS(923), - [aux_sym__val_number_decimal_token2] = ACTIONS(923), - [anon_sym_DOT2] = ACTIONS(923), - [aux_sym__val_number_decimal_token3] = ACTIONS(923), - [aux_sym__val_number_token1] = ACTIONS(923), - [aux_sym__val_number_token2] = ACTIONS(923), - [aux_sym__val_number_token3] = ACTIONS(923), - [aux_sym__val_number_token4] = ACTIONS(923), - [aux_sym__val_number_token5] = ACTIONS(923), - [aux_sym__val_number_token6] = ACTIONS(923), - [anon_sym_0b] = ACTIONS(923), - [sym_filesize_unit] = ACTIONS(923), - [sym_duration_unit] = ACTIONS(925), - [anon_sym_0o] = ACTIONS(923), - [anon_sym_0x] = ACTIONS(923), - [sym_val_date] = ACTIONS(923), - [anon_sym_DQUOTE] = ACTIONS(923), - [sym__str_single_quotes] = ACTIONS(923), - [sym__str_back_ticks] = ACTIONS(923), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(923), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), - [aux_sym_unquoted_token5] = ACTIONS(923), - [anon_sym_POUND] = ACTIONS(113), + [1571] = { + [sym_expr_unary] = STATE(5215), + [sym__expr_unary_minus] = STATE(5410), + [sym_expr_binary] = STATE(5215), + [sym__expr_binary_expression] = STATE(5216), + [sym_expr_parenthesized] = STATE(5215), + [sym__val_range] = STATE(10125), + [sym__value] = STATE(5215), + [sym_val_nothing] = STATE(5350), + [sym_val_bool] = STATE(5167), + [sym_val_variable] = STATE(5350), + [sym__var] = STATE(4713), + [sym_val_number] = STATE(5350), + [sym__val_number_decimal] = STATE(3953), + [sym__val_number] = STATE(5351), + [sym_val_duration] = STATE(5350), + [sym_val_filesize] = STATE(5350), + [sym_val_binary] = STATE(5350), + [sym_val_string] = STATE(5350), + [sym__str_double_quotes] = STATE(5502), + [sym_val_interpolated] = STATE(5350), + [sym__inter_single_quotes] = STATE(5420), + [sym__inter_double_quotes] = STATE(5421), + [sym_val_list] = STATE(5350), + [sym_val_record] = STATE(5350), + [sym_val_table] = STATE(5350), + [sym_val_closure] = STATE(5350), + [sym_unquoted] = STATE(5218), + [sym__unquoted_anonymous_prefix] = STATE(10902), + [sym_comment] = STATE(1571), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_DOLLAR] = ACTIONS(5011), + [anon_sym_DASH] = ACTIONS(4478), + [anon_sym_LBRACE] = ACTIONS(3058), + [anon_sym_DOT_DOT] = ACTIONS(5013), + [anon_sym_not] = ACTIONS(4482), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5015), + [anon_sym_DOT_DOT_LT] = ACTIONS(5015), + [anon_sym_null] = ACTIONS(4486), + [anon_sym_true] = ACTIONS(4488), + [anon_sym_false] = ACTIONS(4488), + [aux_sym__val_number_decimal_token1] = ACTIONS(4490), + [aux_sym__val_number_decimal_token2] = ACTIONS(4492), + [anon_sym_DOT2] = ACTIONS(5017), + [aux_sym__val_number_decimal_token3] = ACTIONS(4496), + [aux_sym__val_number_token1] = ACTIONS(3076), + [aux_sym__val_number_token2] = ACTIONS(3076), + [aux_sym__val_number_token3] = ACTIONS(3076), + [aux_sym__val_number_token4] = ACTIONS(4498), + [aux_sym__val_number_token5] = ACTIONS(4498), + [aux_sym__val_number_token6] = ACTIONS(4498), + [anon_sym_0b] = ACTIONS(3080), + [anon_sym_0o] = ACTIONS(3082), + [anon_sym_0x] = ACTIONS(3082), + [sym_val_date] = ACTIONS(4500), + [anon_sym_DQUOTE] = ACTIONS(3086), + [sym__str_single_quotes] = ACTIONS(3088), + [sym__str_back_ticks] = ACTIONS(3088), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3092), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3096), + [anon_sym_POUND] = ACTIONS(3), }, - [1359] = { - [sym_cell_path] = STATE(1931), - [sym_path] = STATE(1429), - [sym_comment] = STATE(1359), - [anon_sym_LBRACK] = ACTIONS(1010), - [anon_sym_COMMA] = ACTIONS(1010), - [anon_sym_RBRACK] = ACTIONS(1010), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1010), - [anon_sym_DASH_DASH] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_in] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_DOT_DOT] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1010), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_SLASH] = ACTIONS(1010), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT2] = ACTIONS(1010), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT_EQ] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(3858), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT] = ACTIONS(1010), - [anon_sym_null] = ACTIONS(1010), - [anon_sym_true] = ACTIONS(1010), - [anon_sym_false] = ACTIONS(1010), - [aux_sym__val_number_decimal_token1] = ACTIONS(1010), - [aux_sym__val_number_decimal_token2] = ACTIONS(1010), - [anon_sym_DOT2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = 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(1010), - [aux_sym__val_number_token5] = ACTIONS(1010), - [aux_sym__val_number_token6] = ACTIONS(1010), - [anon_sym_0b] = ACTIONS(1010), - [anon_sym_0o] = ACTIONS(1010), - [anon_sym_0x] = ACTIONS(1010), - [sym_val_date] = ACTIONS(1010), - [anon_sym_DQUOTE] = ACTIONS(1010), - [sym__str_single_quotes] = ACTIONS(1010), - [sym__str_back_ticks] = ACTIONS(1010), - [sym__entry_separator] = ACTIONS(1012), - [anon_sym_err_GT] = ACTIONS(1010), - [anon_sym_out_GT] = ACTIONS(1010), - [anon_sym_e_GT] = ACTIONS(1010), - [anon_sym_o_GT] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT] = ACTIONS(1010), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1010), - [anon_sym_POUND] = ACTIONS(113), + [1572] = { + [sym_expr_unary] = STATE(5215), + [sym__expr_unary_minus] = STATE(5410), + [sym_expr_binary] = STATE(5215), + [sym__expr_binary_expression] = STATE(5219), + [sym_expr_parenthesized] = STATE(5215), + [sym__val_range] = STATE(10125), + [sym__value] = STATE(5215), + [sym_val_nothing] = STATE(5350), + [sym_val_bool] = STATE(5167), + [sym_val_variable] = STATE(5350), + [sym__var] = STATE(4713), + [sym_val_number] = STATE(5350), + [sym__val_number_decimal] = STATE(3953), + [sym__val_number] = STATE(5351), + [sym_val_duration] = STATE(5350), + [sym_val_filesize] = STATE(5350), + [sym_val_binary] = STATE(5350), + [sym_val_string] = STATE(5350), + [sym__str_double_quotes] = STATE(5502), + [sym_val_interpolated] = STATE(5350), + [sym__inter_single_quotes] = STATE(5420), + [sym__inter_double_quotes] = STATE(5421), + [sym_val_list] = STATE(5350), + [sym_val_record] = STATE(5350), + [sym_val_table] = STATE(5350), + [sym_val_closure] = STATE(5350), + [sym_unquoted] = STATE(5223), + [sym__unquoted_anonymous_prefix] = STATE(10902), + [sym_comment] = STATE(1572), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_DOLLAR] = ACTIONS(5011), + [anon_sym_DASH] = ACTIONS(4478), + [anon_sym_LBRACE] = ACTIONS(3058), + [anon_sym_DOT_DOT] = ACTIONS(5013), + [anon_sym_not] = ACTIONS(4482), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5015), + [anon_sym_DOT_DOT_LT] = ACTIONS(5015), + [anon_sym_null] = ACTIONS(4486), + [anon_sym_true] = ACTIONS(4488), + [anon_sym_false] = ACTIONS(4488), + [aux_sym__val_number_decimal_token1] = ACTIONS(4490), + [aux_sym__val_number_decimal_token2] = ACTIONS(4492), + [anon_sym_DOT2] = ACTIONS(5017), + [aux_sym__val_number_decimal_token3] = ACTIONS(4496), + [aux_sym__val_number_token1] = ACTIONS(3076), + [aux_sym__val_number_token2] = ACTIONS(3076), + [aux_sym__val_number_token3] = ACTIONS(3076), + [aux_sym__val_number_token4] = ACTIONS(4498), + [aux_sym__val_number_token5] = ACTIONS(4498), + [aux_sym__val_number_token6] = ACTIONS(4498), + [anon_sym_0b] = ACTIONS(3080), + [anon_sym_0o] = ACTIONS(3082), + [anon_sym_0x] = ACTIONS(3082), + [sym_val_date] = ACTIONS(4500), + [anon_sym_DQUOTE] = ACTIONS(3086), + [sym__str_single_quotes] = ACTIONS(3088), + [sym__str_back_ticks] = ACTIONS(3088), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3092), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3096), + [anon_sym_POUND] = ACTIONS(3), }, - [1360] = { - [sym_comment] = STATE(1360), - [anon_sym_export] = ACTIONS(3505), - [anon_sym_alias] = ACTIONS(3505), - [anon_sym_let] = ACTIONS(3505), - [anon_sym_let_DASHenv] = ACTIONS(3505), - [anon_sym_mut] = ACTIONS(3505), - [anon_sym_const] = ACTIONS(3505), - [anon_sym_SEMI] = ACTIONS(3505), - [sym_cmd_identifier] = ACTIONS(3505), - [anon_sym_LF] = ACTIONS(3507), - [anon_sym_def] = ACTIONS(3505), - [anon_sym_export_DASHenv] = ACTIONS(3505), - [anon_sym_extern] = ACTIONS(3505), - [anon_sym_module] = ACTIONS(3505), - [anon_sym_use] = ACTIONS(3505), - [anon_sym_LBRACK] = ACTIONS(3505), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_RPAREN] = ACTIONS(3505), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_error] = ACTIONS(3505), - [anon_sym_DASH_DASH] = ACTIONS(3505), - [anon_sym_DASH] = ACTIONS(3505), - [anon_sym_break] = ACTIONS(3505), - [anon_sym_continue] = ACTIONS(3505), - [anon_sym_for] = ACTIONS(3505), - [anon_sym_loop] = ACTIONS(3505), - [anon_sym_while] = ACTIONS(3505), - [anon_sym_do] = ACTIONS(3505), - [anon_sym_if] = ACTIONS(3505), - [anon_sym_match] = ACTIONS(3505), - [anon_sym_LBRACE] = ACTIONS(3505), - [anon_sym_RBRACE] = ACTIONS(3505), - [anon_sym_DOT_DOT] = ACTIONS(3505), - [anon_sym_try] = ACTIONS(3505), - [anon_sym_return] = ACTIONS(3505), - [anon_sym_source] = ACTIONS(3505), - [anon_sym_source_DASHenv] = ACTIONS(3505), - [anon_sym_register] = ACTIONS(3505), - [anon_sym_hide] = ACTIONS(3505), - [anon_sym_hide_DASHenv] = ACTIONS(3505), - [anon_sym_overlay] = ACTIONS(3505), - [anon_sym_as] = ACTIONS(3505), - [anon_sym_where] = ACTIONS(3505), - [anon_sym_not] = ACTIONS(3505), - [anon_sym_LPAREN2] = ACTIONS(3507), - [anon_sym_DOT] = ACTIONS(3505), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3505), - [anon_sym_DOT_DOT_LT] = ACTIONS(3505), - [anon_sym_null] = ACTIONS(3505), - [anon_sym_true] = ACTIONS(3505), - [anon_sym_false] = ACTIONS(3505), - [aux_sym__val_number_decimal_token1] = ACTIONS(3505), - [aux_sym__val_number_decimal_token2] = ACTIONS(3505), - [anon_sym_DOT2] = ACTIONS(3505), - [aux_sym__val_number_decimal_token3] = ACTIONS(3505), - [aux_sym__val_number_token1] = ACTIONS(3505), - [aux_sym__val_number_token2] = ACTIONS(3505), - [aux_sym__val_number_token3] = ACTIONS(3505), - [aux_sym__val_number_token4] = ACTIONS(3505), - [aux_sym__val_number_token5] = ACTIONS(3505), - [aux_sym__val_number_token6] = ACTIONS(3505), - [anon_sym_0b] = ACTIONS(3505), - [anon_sym_0o] = ACTIONS(3505), - [anon_sym_0x] = ACTIONS(3505), - [sym_val_date] = ACTIONS(3505), - [anon_sym_DQUOTE] = ACTIONS(3505), - [sym__str_single_quotes] = ACTIONS(3505), - [sym__str_back_ticks] = ACTIONS(3505), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3505), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3505), - [anon_sym_CARET] = ACTIONS(3505), - [aux_sym_unquoted_token2] = ACTIONS(3505), - [anon_sym_POUND] = ACTIONS(113), + [1573] = { + [sym_expr_unary] = STATE(5215), + [sym__expr_unary_minus] = STATE(5410), + [sym_expr_binary] = STATE(5215), + [sym__expr_binary_expression] = STATE(5225), + [sym_expr_parenthesized] = STATE(5215), + [sym__val_range] = STATE(10125), + [sym__value] = STATE(5215), + [sym_val_nothing] = STATE(5350), + [sym_val_bool] = STATE(5167), + [sym_val_variable] = STATE(5350), + [sym__var] = STATE(4713), + [sym_val_number] = STATE(5350), + [sym__val_number_decimal] = STATE(3953), + [sym__val_number] = STATE(5351), + [sym_val_duration] = STATE(5350), + [sym_val_filesize] = STATE(5350), + [sym_val_binary] = STATE(5350), + [sym_val_string] = STATE(5350), + [sym__str_double_quotes] = STATE(5502), + [sym_val_interpolated] = STATE(5350), + [sym__inter_single_quotes] = STATE(5420), + [sym__inter_double_quotes] = STATE(5421), + [sym_val_list] = STATE(5350), + [sym_val_record] = STATE(5350), + [sym_val_table] = STATE(5350), + [sym_val_closure] = STATE(5350), + [sym_unquoted] = STATE(5226), + [sym__unquoted_anonymous_prefix] = STATE(10902), + [sym_comment] = STATE(1573), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_DOLLAR] = ACTIONS(5011), + [anon_sym_DASH] = ACTIONS(4478), + [anon_sym_LBRACE] = ACTIONS(3058), + [anon_sym_DOT_DOT] = ACTIONS(5013), + [anon_sym_not] = ACTIONS(4482), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5015), + [anon_sym_DOT_DOT_LT] = ACTIONS(5015), + [anon_sym_null] = ACTIONS(4486), + [anon_sym_true] = ACTIONS(4488), + [anon_sym_false] = ACTIONS(4488), + [aux_sym__val_number_decimal_token1] = ACTIONS(4490), + [aux_sym__val_number_decimal_token2] = ACTIONS(4492), + [anon_sym_DOT2] = ACTIONS(5017), + [aux_sym__val_number_decimal_token3] = ACTIONS(4496), + [aux_sym__val_number_token1] = ACTIONS(3076), + [aux_sym__val_number_token2] = ACTIONS(3076), + [aux_sym__val_number_token3] = ACTIONS(3076), + [aux_sym__val_number_token4] = ACTIONS(4498), + [aux_sym__val_number_token5] = ACTIONS(4498), + [aux_sym__val_number_token6] = ACTIONS(4498), + [anon_sym_0b] = ACTIONS(3080), + [anon_sym_0o] = ACTIONS(3082), + [anon_sym_0x] = ACTIONS(3082), + [sym_val_date] = ACTIONS(4500), + [anon_sym_DQUOTE] = ACTIONS(3086), + [sym__str_single_quotes] = ACTIONS(3088), + [sym__str_back_ticks] = ACTIONS(3088), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3092), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3096), + [anon_sym_POUND] = ACTIONS(3), }, - [1361] = { - [sym_path] = STATE(1662), - [sym_comment] = STATE(1361), - [aux_sym_cell_path_repeat1] = STATE(1377), - [anon_sym_export] = ACTIONS(987), - [anon_sym_alias] = ACTIONS(987), - [anon_sym_let] = ACTIONS(987), - [anon_sym_let_DASHenv] = ACTIONS(987), - [anon_sym_mut] = ACTIONS(987), - [anon_sym_const] = ACTIONS(987), - [anon_sym_SEMI] = ACTIONS(987), - [sym_cmd_identifier] = ACTIONS(987), - [anon_sym_LF] = ACTIONS(989), - [anon_sym_def] = ACTIONS(987), - [anon_sym_export_DASHenv] = ACTIONS(987), - [anon_sym_extern] = ACTIONS(987), - [anon_sym_module] = ACTIONS(987), - [anon_sym_use] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(987), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_RPAREN] = ACTIONS(987), - [anon_sym_DOLLAR] = ACTIONS(987), - [anon_sym_error] = ACTIONS(987), - [anon_sym_DASH_DASH] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_break] = ACTIONS(987), - [anon_sym_continue] = ACTIONS(987), - [anon_sym_for] = ACTIONS(987), - [anon_sym_loop] = ACTIONS(987), - [anon_sym_while] = ACTIONS(987), - [anon_sym_do] = ACTIONS(987), - [anon_sym_if] = ACTIONS(987), - [anon_sym_match] = ACTIONS(987), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_RBRACE] = ACTIONS(987), - [anon_sym_DOT_DOT] = ACTIONS(987), - [anon_sym_try] = ACTIONS(987), - [anon_sym_return] = ACTIONS(987), - [anon_sym_source] = ACTIONS(987), - [anon_sym_source_DASHenv] = ACTIONS(987), - [anon_sym_register] = ACTIONS(987), - [anon_sym_hide] = ACTIONS(987), - [anon_sym_hide_DASHenv] = ACTIONS(987), - [anon_sym_overlay] = ACTIONS(987), - [anon_sym_as] = ACTIONS(987), - [anon_sym_where] = ACTIONS(987), - [anon_sym_not] = ACTIONS(987), - [anon_sym_DOT] = ACTIONS(3854), - [anon_sym_DOT_DOT_EQ] = ACTIONS(987), - [anon_sym_DOT_DOT_LT] = ACTIONS(987), - [anon_sym_null] = ACTIONS(987), - [anon_sym_true] = ACTIONS(987), - [anon_sym_false] = ACTIONS(987), - [aux_sym__val_number_decimal_token1] = ACTIONS(987), - [aux_sym__val_number_decimal_token2] = ACTIONS(987), - [anon_sym_DOT2] = ACTIONS(987), - [aux_sym__val_number_decimal_token3] = ACTIONS(987), - [aux_sym__val_number_token1] = ACTIONS(987), - [aux_sym__val_number_token2] = ACTIONS(987), - [aux_sym__val_number_token3] = ACTIONS(987), - [aux_sym__val_number_token4] = ACTIONS(987), - [aux_sym__val_number_token5] = ACTIONS(987), - [aux_sym__val_number_token6] = ACTIONS(987), - [anon_sym_0b] = ACTIONS(987), - [anon_sym_0o] = ACTIONS(987), - [anon_sym_0x] = ACTIONS(987), - [sym_val_date] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(987), - [sym__str_single_quotes] = ACTIONS(987), - [sym__str_back_ticks] = ACTIONS(987), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(987), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_POUND] = ACTIONS(113), + [1574] = { + [sym_expr_unary] = STATE(5215), + [sym__expr_unary_minus] = STATE(5410), + [sym_expr_binary] = STATE(5215), + [sym__expr_binary_expression] = STATE(5228), + [sym_expr_parenthesized] = STATE(5215), + [sym__val_range] = STATE(10125), + [sym__value] = STATE(5215), + [sym_val_nothing] = STATE(5350), + [sym_val_bool] = STATE(5167), + [sym_val_variable] = STATE(5350), + [sym__var] = STATE(4713), + [sym_val_number] = STATE(5350), + [sym__val_number_decimal] = STATE(3953), + [sym__val_number] = STATE(5351), + [sym_val_duration] = STATE(5350), + [sym_val_filesize] = STATE(5350), + [sym_val_binary] = STATE(5350), + [sym_val_string] = STATE(5350), + [sym__str_double_quotes] = STATE(5502), + [sym_val_interpolated] = STATE(5350), + [sym__inter_single_quotes] = STATE(5420), + [sym__inter_double_quotes] = STATE(5421), + [sym_val_list] = STATE(5350), + [sym_val_record] = STATE(5350), + [sym_val_table] = STATE(5350), + [sym_val_closure] = STATE(5350), + [sym_unquoted] = STATE(5229), + [sym__unquoted_anonymous_prefix] = STATE(10902), + [sym_comment] = STATE(1574), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_DOLLAR] = ACTIONS(5011), + [anon_sym_DASH] = ACTIONS(4478), + [anon_sym_LBRACE] = ACTIONS(3058), + [anon_sym_DOT_DOT] = ACTIONS(5013), + [anon_sym_not] = ACTIONS(4482), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5015), + [anon_sym_DOT_DOT_LT] = ACTIONS(5015), + [anon_sym_null] = ACTIONS(4486), + [anon_sym_true] = ACTIONS(4488), + [anon_sym_false] = ACTIONS(4488), + [aux_sym__val_number_decimal_token1] = ACTIONS(4490), + [aux_sym__val_number_decimal_token2] = ACTIONS(4492), + [anon_sym_DOT2] = ACTIONS(5017), + [aux_sym__val_number_decimal_token3] = ACTIONS(4496), + [aux_sym__val_number_token1] = ACTIONS(3076), + [aux_sym__val_number_token2] = ACTIONS(3076), + [aux_sym__val_number_token3] = ACTIONS(3076), + [aux_sym__val_number_token4] = ACTIONS(4498), + [aux_sym__val_number_token5] = ACTIONS(4498), + [aux_sym__val_number_token6] = ACTIONS(4498), + [anon_sym_0b] = ACTIONS(3080), + [anon_sym_0o] = ACTIONS(3082), + [anon_sym_0x] = ACTIONS(3082), + [sym_val_date] = ACTIONS(4500), + [anon_sym_DQUOTE] = ACTIONS(3086), + [sym__str_single_quotes] = ACTIONS(3088), + [sym__str_back_ticks] = ACTIONS(3088), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3092), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3096), + [anon_sym_POUND] = ACTIONS(3), }, - [1362] = { - [sym_comment] = STATE(1362), - [ts_builtin_sym_end] = ACTIONS(1111), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_alias] = ACTIONS(1109), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_let_DASHenv] = ACTIONS(1109), - [anon_sym_mut] = ACTIONS(1109), - [anon_sym_const] = ACTIONS(1109), - [anon_sym_SEMI] = ACTIONS(1109), - [sym_cmd_identifier] = ACTIONS(1109), - [anon_sym_LF] = ACTIONS(1111), - [anon_sym_def] = ACTIONS(1109), - [anon_sym_export_DASHenv] = ACTIONS(1109), - [anon_sym_extern] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_use] = ACTIONS(1109), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_DOLLAR] = ACTIONS(1109), - [anon_sym_error] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_break] = ACTIONS(1109), - [anon_sym_continue] = ACTIONS(1109), - [anon_sym_for] = ACTIONS(1109), - [anon_sym_loop] = ACTIONS(1109), - [anon_sym_while] = ACTIONS(1109), - [anon_sym_do] = ACTIONS(1109), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_DOT_DOT] = ACTIONS(1109), - [anon_sym_try] = ACTIONS(1109), - [anon_sym_return] = ACTIONS(1109), - [anon_sym_source] = ACTIONS(1109), - [anon_sym_source_DASHenv] = ACTIONS(1109), - [anon_sym_register] = ACTIONS(1109), - [anon_sym_hide] = ACTIONS(1109), - [anon_sym_hide_DASHenv] = ACTIONS(1109), - [anon_sym_overlay] = ACTIONS(1109), - [anon_sym_as] = ACTIONS(1109), - [anon_sym_where] = ACTIONS(1109), - [anon_sym_not] = ACTIONS(1109), - [anon_sym_DOT_DOT2] = ACTIONS(1109), - [anon_sym_DOT] = ACTIONS(1109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1109), - [anon_sym_DOT_DOT_LT] = ACTIONS(1109), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1111), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1111), - [anon_sym_null] = ACTIONS(1109), - [anon_sym_true] = ACTIONS(1109), - [anon_sym_false] = ACTIONS(1109), - [aux_sym__val_number_decimal_token1] = ACTIONS(1109), - [aux_sym__val_number_decimal_token2] = ACTIONS(1109), - [anon_sym_DOT2] = ACTIONS(1109), - [aux_sym__val_number_decimal_token3] = ACTIONS(1109), - [aux_sym__val_number_token1] = ACTIONS(1109), - [aux_sym__val_number_token2] = ACTIONS(1109), - [aux_sym__val_number_token3] = ACTIONS(1109), - [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(1109), - [anon_sym_0o] = ACTIONS(1109), - [anon_sym_0x] = ACTIONS(1109), - [sym_val_date] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(1109), - [sym__str_single_quotes] = ACTIONS(1109), - [sym__str_back_ticks] = ACTIONS(1109), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1109), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1109), - [anon_sym_CARET] = ACTIONS(1109), - [anon_sym_POUND] = ACTIONS(113), + [1575] = { + [sym_expr_unary] = STATE(5215), + [sym__expr_unary_minus] = STATE(5410), + [sym_expr_binary] = STATE(5215), + [sym__expr_binary_expression] = STATE(5230), + [sym_expr_parenthesized] = STATE(5215), + [sym__val_range] = STATE(10125), + [sym__value] = STATE(5215), + [sym_val_nothing] = STATE(5350), + [sym_val_bool] = STATE(5167), + [sym_val_variable] = STATE(5350), + [sym__var] = STATE(4713), + [sym_val_number] = STATE(5350), + [sym__val_number_decimal] = STATE(3953), + [sym__val_number] = STATE(5351), + [sym_val_duration] = STATE(5350), + [sym_val_filesize] = STATE(5350), + [sym_val_binary] = STATE(5350), + [sym_val_string] = STATE(5350), + [sym__str_double_quotes] = STATE(5502), + [sym_val_interpolated] = STATE(5350), + [sym__inter_single_quotes] = STATE(5420), + [sym__inter_double_quotes] = STATE(5421), + [sym_val_list] = STATE(5350), + [sym_val_record] = STATE(5350), + [sym_val_table] = STATE(5350), + [sym_val_closure] = STATE(5350), + [sym_unquoted] = STATE(5231), + [sym__unquoted_anonymous_prefix] = STATE(10902), + [sym_comment] = STATE(1575), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_DOLLAR] = ACTIONS(5011), + [anon_sym_DASH] = ACTIONS(4478), + [anon_sym_LBRACE] = ACTIONS(3058), + [anon_sym_DOT_DOT] = ACTIONS(5013), + [anon_sym_not] = ACTIONS(4482), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5015), + [anon_sym_DOT_DOT_LT] = ACTIONS(5015), + [anon_sym_null] = ACTIONS(4486), + [anon_sym_true] = ACTIONS(4488), + [anon_sym_false] = ACTIONS(4488), + [aux_sym__val_number_decimal_token1] = ACTIONS(4490), + [aux_sym__val_number_decimal_token2] = ACTIONS(4492), + [anon_sym_DOT2] = ACTIONS(5017), + [aux_sym__val_number_decimal_token3] = ACTIONS(4496), + [aux_sym__val_number_token1] = ACTIONS(3076), + [aux_sym__val_number_token2] = ACTIONS(3076), + [aux_sym__val_number_token3] = ACTIONS(3076), + [aux_sym__val_number_token4] = ACTIONS(4498), + [aux_sym__val_number_token5] = ACTIONS(4498), + [aux_sym__val_number_token6] = ACTIONS(4498), + [anon_sym_0b] = ACTIONS(3080), + [anon_sym_0o] = ACTIONS(3082), + [anon_sym_0x] = ACTIONS(3082), + [sym_val_date] = ACTIONS(4500), + [anon_sym_DQUOTE] = ACTIONS(3086), + [sym__str_single_quotes] = ACTIONS(3088), + [sym__str_back_ticks] = ACTIONS(3088), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3092), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3096), + [anon_sym_POUND] = ACTIONS(3), }, - [1363] = { - [sym__immediate_decimal] = STATE(9346), - [sym_comment] = STATE(1363), - [anon_sym_SEMI] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(936), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_RBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_STAR_STAR] = ACTIONS(936), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(936), - [anon_sym_SLASH_SLASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(936), - [anon_sym_bit_DASHshr] = ACTIONS(936), - [anon_sym_EQ_EQ] = ACTIONS(936), - [anon_sym_BANG_EQ] = ACTIONS(936), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(936), - [anon_sym_GT_EQ] = ACTIONS(936), - [anon_sym_not_DASHin] = ACTIONS(936), - [anon_sym_starts_DASHwith] = ACTIONS(936), - [anon_sym_ends_DASHwith] = ACTIONS(936), - [anon_sym_EQ_TILDE] = ACTIONS(936), - [anon_sym_BANG_TILDE] = ACTIONS(936), - [anon_sym_bit_DASHand] = ACTIONS(936), - [anon_sym_bit_DASHxor] = ACTIONS(936), - [anon_sym_bit_DASHor] = ACTIONS(936), - [anon_sym_and] = ACTIONS(936), - [anon_sym_xor] = ACTIONS(936), - [anon_sym_or] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_DOT] = ACTIONS(3860), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [aux_sym__immediate_decimal_token1] = ACTIONS(942), - [aux_sym__immediate_decimal_token3] = ACTIONS(942), - [aux_sym__immediate_decimal_token4] = ACTIONS(944), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [aux_sym_unquoted_token3] = ACTIONS(3862), - [aux_sym_unquoted_token5] = ACTIONS(3864), - [anon_sym_POUND] = ACTIONS(113), + [1576] = { + [sym_expr_unary] = STATE(5215), + [sym__expr_unary_minus] = STATE(5410), + [sym_expr_binary] = STATE(5215), + [sym__expr_binary_expression] = STATE(5232), + [sym_expr_parenthesized] = STATE(5215), + [sym__val_range] = STATE(10125), + [sym__value] = STATE(5215), + [sym_val_nothing] = STATE(5350), + [sym_val_bool] = STATE(5167), + [sym_val_variable] = STATE(5350), + [sym__var] = STATE(4713), + [sym_val_number] = STATE(5350), + [sym__val_number_decimal] = STATE(3953), + [sym__val_number] = STATE(5351), + [sym_val_duration] = STATE(5350), + [sym_val_filesize] = STATE(5350), + [sym_val_binary] = STATE(5350), + [sym_val_string] = STATE(5350), + [sym__str_double_quotes] = STATE(5502), + [sym_val_interpolated] = STATE(5350), + [sym__inter_single_quotes] = STATE(5420), + [sym__inter_double_quotes] = STATE(5421), + [sym_val_list] = STATE(5350), + [sym_val_record] = STATE(5350), + [sym_val_table] = STATE(5350), + [sym_val_closure] = STATE(5350), + [sym_unquoted] = STATE(5233), + [sym__unquoted_anonymous_prefix] = STATE(10902), + [sym_comment] = STATE(1576), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_DOLLAR] = ACTIONS(5011), + [anon_sym_DASH] = ACTIONS(4478), + [anon_sym_LBRACE] = ACTIONS(3058), + [anon_sym_DOT_DOT] = ACTIONS(5013), + [anon_sym_not] = ACTIONS(4482), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5015), + [anon_sym_DOT_DOT_LT] = ACTIONS(5015), + [anon_sym_null] = ACTIONS(4486), + [anon_sym_true] = ACTIONS(4488), + [anon_sym_false] = ACTIONS(4488), + [aux_sym__val_number_decimal_token1] = ACTIONS(4490), + [aux_sym__val_number_decimal_token2] = ACTIONS(4492), + [anon_sym_DOT2] = ACTIONS(5017), + [aux_sym__val_number_decimal_token3] = ACTIONS(4496), + [aux_sym__val_number_token1] = ACTIONS(3076), + [aux_sym__val_number_token2] = ACTIONS(3076), + [aux_sym__val_number_token3] = ACTIONS(3076), + [aux_sym__val_number_token4] = ACTIONS(4498), + [aux_sym__val_number_token5] = ACTIONS(4498), + [aux_sym__val_number_token6] = ACTIONS(4498), + [anon_sym_0b] = ACTIONS(3080), + [anon_sym_0o] = ACTIONS(3082), + [anon_sym_0x] = ACTIONS(3082), + [sym_val_date] = ACTIONS(4500), + [anon_sym_DQUOTE] = ACTIONS(3086), + [sym__str_single_quotes] = ACTIONS(3088), + [sym__str_back_ticks] = ACTIONS(3088), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3092), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3096), + [anon_sym_POUND] = ACTIONS(3), }, - [1364] = { - [sym_comment] = STATE(1364), - [anon_sym_export] = ACTIONS(3866), - [anon_sym_alias] = ACTIONS(3866), - [anon_sym_let] = ACTIONS(3866), - [anon_sym_let_DASHenv] = ACTIONS(3866), - [anon_sym_mut] = ACTIONS(3866), - [anon_sym_const] = ACTIONS(3866), - [anon_sym_SEMI] = ACTIONS(3866), - [sym_cmd_identifier] = ACTIONS(3866), - [anon_sym_LF] = ACTIONS(3868), - [anon_sym_def] = ACTIONS(3866), - [anon_sym_export_DASHenv] = ACTIONS(3866), - [anon_sym_extern] = ACTIONS(3866), - [anon_sym_module] = ACTIONS(3866), - [anon_sym_use] = ACTIONS(3866), - [anon_sym_LBRACK] = ACTIONS(3866), - [anon_sym_LPAREN] = ACTIONS(3866), - [anon_sym_RPAREN] = ACTIONS(3866), - [anon_sym_DOLLAR] = ACTIONS(3866), - [anon_sym_error] = ACTIONS(3866), - [anon_sym_DASH_DASH] = ACTIONS(3866), - [anon_sym_DASH] = ACTIONS(3866), - [anon_sym_break] = ACTIONS(3866), - [anon_sym_continue] = ACTIONS(3866), - [anon_sym_for] = ACTIONS(3866), - [anon_sym_loop] = ACTIONS(3866), - [anon_sym_while] = ACTIONS(3866), - [anon_sym_do] = ACTIONS(3866), - [anon_sym_if] = ACTIONS(3866), - [anon_sym_match] = ACTIONS(3866), - [anon_sym_LBRACE] = ACTIONS(3866), - [anon_sym_RBRACE] = ACTIONS(3866), - [anon_sym_DOT_DOT] = ACTIONS(3866), - [anon_sym_try] = ACTIONS(3866), - [anon_sym_return] = ACTIONS(3866), - [anon_sym_source] = ACTIONS(3866), - [anon_sym_source_DASHenv] = ACTIONS(3866), - [anon_sym_register] = ACTIONS(3866), - [anon_sym_hide] = ACTIONS(3866), - [anon_sym_hide_DASHenv] = ACTIONS(3866), - [anon_sym_overlay] = ACTIONS(3866), - [anon_sym_as] = ACTIONS(3866), - [anon_sym_where] = ACTIONS(3866), - [anon_sym_not] = ACTIONS(3866), - [anon_sym_DOT_DOT2] = ACTIONS(3870), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3866), - [anon_sym_DOT_DOT_LT] = ACTIONS(3866), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3872), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3872), - [anon_sym_null] = ACTIONS(3866), - [anon_sym_true] = ACTIONS(3866), - [anon_sym_false] = ACTIONS(3866), - [aux_sym__val_number_decimal_token1] = ACTIONS(3866), - [aux_sym__val_number_decimal_token2] = ACTIONS(3866), - [anon_sym_DOT2] = ACTIONS(3866), - [aux_sym__val_number_decimal_token3] = ACTIONS(3866), - [aux_sym__val_number_token1] = ACTIONS(3866), - [aux_sym__val_number_token2] = ACTIONS(3866), - [aux_sym__val_number_token3] = ACTIONS(3866), - [aux_sym__val_number_token4] = ACTIONS(3866), - [aux_sym__val_number_token5] = ACTIONS(3866), - [aux_sym__val_number_token6] = ACTIONS(3866), - [anon_sym_0b] = ACTIONS(3866), - [anon_sym_0o] = ACTIONS(3866), - [anon_sym_0x] = ACTIONS(3866), - [sym_val_date] = ACTIONS(3866), - [anon_sym_DQUOTE] = ACTIONS(3866), - [sym__str_single_quotes] = ACTIONS(3866), - [sym__str_back_ticks] = ACTIONS(3866), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3866), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), - [anon_sym_CARET] = ACTIONS(3866), - [anon_sym_POUND] = ACTIONS(113), + [1577] = { + [sym_expr_unary] = STATE(5215), + [sym__expr_unary_minus] = STATE(5410), + [sym_expr_binary] = STATE(5215), + [sym__expr_binary_expression] = STATE(5234), + [sym_expr_parenthesized] = STATE(5215), + [sym__val_range] = STATE(10125), + [sym__value] = STATE(5215), + [sym_val_nothing] = STATE(5350), + [sym_val_bool] = STATE(5167), + [sym_val_variable] = STATE(5350), + [sym__var] = STATE(4713), + [sym_val_number] = STATE(5350), + [sym__val_number_decimal] = STATE(3953), + [sym__val_number] = STATE(5351), + [sym_val_duration] = STATE(5350), + [sym_val_filesize] = STATE(5350), + [sym_val_binary] = STATE(5350), + [sym_val_string] = STATE(5350), + [sym__str_double_quotes] = STATE(5502), + [sym_val_interpolated] = STATE(5350), + [sym__inter_single_quotes] = STATE(5420), + [sym__inter_double_quotes] = STATE(5421), + [sym_val_list] = STATE(5350), + [sym_val_record] = STATE(5350), + [sym_val_table] = STATE(5350), + [sym_val_closure] = STATE(5350), + [sym_unquoted] = STATE(5235), + [sym__unquoted_anonymous_prefix] = STATE(10902), + [sym_comment] = STATE(1577), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_DOLLAR] = ACTIONS(5011), + [anon_sym_DASH] = ACTIONS(4478), + [anon_sym_LBRACE] = ACTIONS(3058), + [anon_sym_DOT_DOT] = ACTIONS(5013), + [anon_sym_not] = ACTIONS(4482), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5015), + [anon_sym_DOT_DOT_LT] = ACTIONS(5015), + [anon_sym_null] = ACTIONS(4486), + [anon_sym_true] = ACTIONS(4488), + [anon_sym_false] = ACTIONS(4488), + [aux_sym__val_number_decimal_token1] = ACTIONS(4490), + [aux_sym__val_number_decimal_token2] = ACTIONS(4492), + [anon_sym_DOT2] = ACTIONS(5017), + [aux_sym__val_number_decimal_token3] = ACTIONS(4496), + [aux_sym__val_number_token1] = ACTIONS(3076), + [aux_sym__val_number_token2] = ACTIONS(3076), + [aux_sym__val_number_token3] = ACTIONS(3076), + [aux_sym__val_number_token4] = ACTIONS(4498), + [aux_sym__val_number_token5] = ACTIONS(4498), + [aux_sym__val_number_token6] = ACTIONS(4498), + [anon_sym_0b] = ACTIONS(3080), + [anon_sym_0o] = ACTIONS(3082), + [anon_sym_0x] = ACTIONS(3082), + [sym_val_date] = ACTIONS(4500), + [anon_sym_DQUOTE] = ACTIONS(3086), + [sym__str_single_quotes] = ACTIONS(3088), + [sym__str_back_ticks] = ACTIONS(3088), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3092), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3096), + [anon_sym_POUND] = ACTIONS(3), }, - [1365] = { - [sym_comment] = STATE(1365), - [anon_sym_export] = ACTIONS(3874), - [anon_sym_alias] = ACTIONS(3874), - [anon_sym_let] = ACTIONS(3874), - [anon_sym_let_DASHenv] = ACTIONS(3874), - [anon_sym_mut] = ACTIONS(3874), - [anon_sym_const] = ACTIONS(3874), - [anon_sym_SEMI] = ACTIONS(3874), - [sym_cmd_identifier] = ACTIONS(3874), - [anon_sym_LF] = ACTIONS(3876), - [anon_sym_def] = ACTIONS(3874), - [anon_sym_export_DASHenv] = ACTIONS(3874), - [anon_sym_extern] = ACTIONS(3874), - [anon_sym_module] = ACTIONS(3874), - [anon_sym_use] = ACTIONS(3874), - [anon_sym_LBRACK] = ACTIONS(3874), - [anon_sym_LPAREN] = ACTIONS(3874), - [anon_sym_RPAREN] = ACTIONS(3874), - [anon_sym_DOLLAR] = ACTIONS(3874), - [anon_sym_error] = ACTIONS(3874), - [anon_sym_DASH_DASH] = ACTIONS(3874), - [anon_sym_DASH] = ACTIONS(3874), - [anon_sym_break] = ACTIONS(3874), - [anon_sym_continue] = ACTIONS(3874), - [anon_sym_for] = ACTIONS(3874), - [anon_sym_loop] = ACTIONS(3874), - [anon_sym_while] = ACTIONS(3874), - [anon_sym_do] = ACTIONS(3874), - [anon_sym_if] = ACTIONS(3874), - [anon_sym_match] = ACTIONS(3874), - [anon_sym_LBRACE] = ACTIONS(3874), - [anon_sym_RBRACE] = ACTIONS(3874), - [anon_sym_DOT_DOT] = ACTIONS(3874), - [anon_sym_try] = ACTIONS(3874), - [anon_sym_return] = ACTIONS(3874), - [anon_sym_source] = ACTIONS(3874), - [anon_sym_source_DASHenv] = ACTIONS(3874), - [anon_sym_register] = ACTIONS(3874), - [anon_sym_hide] = ACTIONS(3874), - [anon_sym_hide_DASHenv] = ACTIONS(3874), - [anon_sym_overlay] = ACTIONS(3874), - [anon_sym_as] = ACTIONS(3874), - [anon_sym_where] = ACTIONS(3874), - [anon_sym_not] = ACTIONS(3874), - [anon_sym_LPAREN2] = ACTIONS(3878), - [anon_sym_DOT] = ACTIONS(2006), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3874), - [anon_sym_DOT_DOT_LT] = ACTIONS(3874), - [anon_sym_null] = ACTIONS(3874), - [anon_sym_true] = ACTIONS(3874), - [anon_sym_false] = ACTIONS(3874), - [aux_sym__val_number_decimal_token1] = ACTIONS(3874), - [aux_sym__val_number_decimal_token2] = ACTIONS(3874), - [anon_sym_DOT2] = ACTIONS(3874), - [aux_sym__val_number_decimal_token3] = ACTIONS(3874), - [aux_sym__val_number_token1] = ACTIONS(3874), - [aux_sym__val_number_token2] = ACTIONS(3874), - [aux_sym__val_number_token3] = ACTIONS(3874), - [aux_sym__val_number_token4] = ACTIONS(3874), - [aux_sym__val_number_token5] = ACTIONS(3874), - [aux_sym__val_number_token6] = ACTIONS(3874), - [anon_sym_0b] = ACTIONS(3874), - [anon_sym_0o] = ACTIONS(3874), - [anon_sym_0x] = ACTIONS(3874), - [sym_val_date] = ACTIONS(3874), - [anon_sym_DQUOTE] = ACTIONS(3874), - [sym__str_single_quotes] = ACTIONS(3874), - [sym__str_back_ticks] = ACTIONS(3874), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3874), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3874), - [anon_sym_CARET] = ACTIONS(3874), - [aux_sym_unquoted_token2] = ACTIONS(2006), - [anon_sym_POUND] = ACTIONS(113), + [1578] = { + [sym_expr_unary] = STATE(5215), + [sym__expr_unary_minus] = STATE(5410), + [sym_expr_binary] = STATE(5215), + [sym__expr_binary_expression] = STATE(5236), + [sym_expr_parenthesized] = STATE(5215), + [sym__val_range] = STATE(10125), + [sym__value] = STATE(5215), + [sym_val_nothing] = STATE(5350), + [sym_val_bool] = STATE(5167), + [sym_val_variable] = STATE(5350), + [sym__var] = STATE(4713), + [sym_val_number] = STATE(5350), + [sym__val_number_decimal] = STATE(3953), + [sym__val_number] = STATE(5351), + [sym_val_duration] = STATE(5350), + [sym_val_filesize] = STATE(5350), + [sym_val_binary] = STATE(5350), + [sym_val_string] = STATE(5350), + [sym__str_double_quotes] = STATE(5502), + [sym_val_interpolated] = STATE(5350), + [sym__inter_single_quotes] = STATE(5420), + [sym__inter_double_quotes] = STATE(5421), + [sym_val_list] = STATE(5350), + [sym_val_record] = STATE(5350), + [sym_val_table] = STATE(5350), + [sym_val_closure] = STATE(5350), + [sym_unquoted] = STATE(5237), + [sym__unquoted_anonymous_prefix] = STATE(10902), + [sym_comment] = STATE(1578), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_DOLLAR] = ACTIONS(5011), + [anon_sym_DASH] = ACTIONS(4478), + [anon_sym_LBRACE] = ACTIONS(3058), + [anon_sym_DOT_DOT] = ACTIONS(5013), + [anon_sym_not] = ACTIONS(4482), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5015), + [anon_sym_DOT_DOT_LT] = ACTIONS(5015), + [anon_sym_null] = ACTIONS(4486), + [anon_sym_true] = ACTIONS(4488), + [anon_sym_false] = ACTIONS(4488), + [aux_sym__val_number_decimal_token1] = ACTIONS(4490), + [aux_sym__val_number_decimal_token2] = ACTIONS(4492), + [anon_sym_DOT2] = ACTIONS(5017), + [aux_sym__val_number_decimal_token3] = ACTIONS(4496), + [aux_sym__val_number_token1] = ACTIONS(3076), + [aux_sym__val_number_token2] = ACTIONS(3076), + [aux_sym__val_number_token3] = ACTIONS(3076), + [aux_sym__val_number_token4] = ACTIONS(4498), + [aux_sym__val_number_token5] = ACTIONS(4498), + [aux_sym__val_number_token6] = ACTIONS(4498), + [anon_sym_0b] = ACTIONS(3080), + [anon_sym_0o] = ACTIONS(3082), + [anon_sym_0x] = ACTIONS(3082), + [sym_val_date] = ACTIONS(4500), + [anon_sym_DQUOTE] = ACTIONS(3086), + [sym__str_single_quotes] = ACTIONS(3088), + [sym__str_back_ticks] = ACTIONS(3088), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3092), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3096), + [anon_sym_POUND] = ACTIONS(3), }, - [1366] = { - [sym__expression] = STATE(10904), - [sym_expr_unary] = STATE(6243), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6243), - [sym__expr_binary_expression] = STATE(6786), - [sym_expr_parenthesized] = STATE(6385), - [sym_val_range] = STATE(7168), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6243), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6719), - [sym_val_variable] = STATE(6316), - [sym__var] = STATE(4486), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5316), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(10905), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(1366), - [anon_sym_COLON] = ACTIONS(3880), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_DOLLAR] = ACTIONS(2690), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(3888), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3892), - [anon_sym_DOT_DOT_LT] = ACTIONS(3892), - [anon_sym_null] = ACTIONS(3894), - [anon_sym_true] = ACTIONS(3896), - [anon_sym_false] = ACTIONS(3896), - [aux_sym__val_number_decimal_token1] = ACTIONS(3898), - [aux_sym__val_number_decimal_token2] = ACTIONS(3900), - [anon_sym_DOT2] = ACTIONS(3902), - [aux_sym__val_number_decimal_token3] = ACTIONS(3904), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(3906), - [aux_sym__val_number_token5] = ACTIONS(3906), - [aux_sym__val_number_token6] = ACTIONS(3906), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(3908), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), + [1579] = { + [sym_expr_unary] = STATE(5215), + [sym__expr_unary_minus] = STATE(5410), + [sym_expr_binary] = STATE(5215), + [sym__expr_binary_expression] = STATE(5239), + [sym_expr_parenthesized] = STATE(5215), + [sym__val_range] = STATE(10125), + [sym__value] = STATE(5215), + [sym_val_nothing] = STATE(5350), + [sym_val_bool] = STATE(5167), + [sym_val_variable] = STATE(5350), + [sym__var] = STATE(4713), + [sym_val_number] = STATE(5350), + [sym__val_number_decimal] = STATE(3953), + [sym__val_number] = STATE(5351), + [sym_val_duration] = STATE(5350), + [sym_val_filesize] = STATE(5350), + [sym_val_binary] = STATE(5350), + [sym_val_string] = STATE(5350), + [sym__str_double_quotes] = STATE(5502), + [sym_val_interpolated] = STATE(5350), + [sym__inter_single_quotes] = STATE(5420), + [sym__inter_double_quotes] = STATE(5421), + [sym_val_list] = STATE(5350), + [sym_val_record] = STATE(5350), + [sym_val_table] = STATE(5350), + [sym_val_closure] = STATE(5350), + [sym_unquoted] = STATE(5240), + [sym__unquoted_anonymous_prefix] = STATE(10902), + [sym_comment] = STATE(1579), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_DOLLAR] = ACTIONS(5011), + [anon_sym_DASH] = ACTIONS(4478), + [anon_sym_LBRACE] = ACTIONS(3058), + [anon_sym_DOT_DOT] = ACTIONS(5013), + [anon_sym_not] = ACTIONS(4482), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5015), + [anon_sym_DOT_DOT_LT] = ACTIONS(5015), + [anon_sym_null] = ACTIONS(4486), + [anon_sym_true] = ACTIONS(4488), + [anon_sym_false] = ACTIONS(4488), + [aux_sym__val_number_decimal_token1] = ACTIONS(4490), + [aux_sym__val_number_decimal_token2] = ACTIONS(4492), + [anon_sym_DOT2] = ACTIONS(5017), + [aux_sym__val_number_decimal_token3] = ACTIONS(4496), + [aux_sym__val_number_token1] = ACTIONS(3076), + [aux_sym__val_number_token2] = ACTIONS(3076), + [aux_sym__val_number_token3] = ACTIONS(3076), + [aux_sym__val_number_token4] = ACTIONS(4498), + [aux_sym__val_number_token5] = ACTIONS(4498), + [aux_sym__val_number_token6] = ACTIONS(4498), + [anon_sym_0b] = ACTIONS(3080), + [anon_sym_0o] = ACTIONS(3082), + [anon_sym_0x] = ACTIONS(3082), + [sym_val_date] = ACTIONS(4500), + [anon_sym_DQUOTE] = ACTIONS(3086), + [sym__str_single_quotes] = ACTIONS(3088), + [sym__str_back_ticks] = ACTIONS(3088), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3092), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3096), [anon_sym_POUND] = ACTIONS(3), }, - [1367] = { - [sym_ctrl_do] = STATE(8871), - [sym_ctrl_if] = STATE(8871), - [sym_ctrl_match] = STATE(8871), - [sym_ctrl_try] = STATE(8871), - [sym__expression] = STATE(8871), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(5342), - [sym__var] = STATE(4755), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_comment] = STATE(1367), - [anon_sym_SEMI] = ACTIONS(3912), - [anon_sym_LF] = ACTIONS(3914), - [anon_sym_COLON] = ACTIONS(3916), - [anon_sym_LBRACK] = ACTIONS(3918), - [anon_sym_LPAREN] = ACTIONS(3920), - [anon_sym_PIPE] = ACTIONS(3912), - [anon_sym_DOLLAR] = ACTIONS(1762), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(3922), - [anon_sym_RBRACE] = ACTIONS(3912), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_not] = ACTIONS(191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3924), - [anon_sym_DOT_DOT_LT] = ACTIONS(3924), - [anon_sym_null] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [aux_sym__val_number_decimal_token1] = ACTIONS(199), - [aux_sym__val_number_decimal_token2] = ACTIONS(199), - [anon_sym_DOT2] = ACTIONS(203), - [aux_sym__val_number_decimal_token3] = ACTIONS(3926), - [aux_sym__val_number_token1] = ACTIONS(209), - [aux_sym__val_number_token2] = ACTIONS(209), - [aux_sym__val_number_token3] = ACTIONS(209), - [aux_sym__val_number_token4] = ACTIONS(209), - [aux_sym__val_number_token5] = ACTIONS(209), - [aux_sym__val_number_token6] = ACTIONS(209), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(3928), - [anon_sym_DQUOTE] = ACTIONS(3930), - [sym__str_single_quotes] = ACTIONS(3932), - [sym__str_back_ticks] = ACTIONS(3932), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3934), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3936), - [anon_sym_POUND] = ACTIONS(113), + [1580] = { + [sym_expr_unary] = STATE(5215), + [sym__expr_unary_minus] = STATE(5410), + [sym_expr_binary] = STATE(5215), + [sym__expr_binary_expression] = STATE(5241), + [sym_expr_parenthesized] = STATE(5215), + [sym__val_range] = STATE(10125), + [sym__value] = STATE(5215), + [sym_val_nothing] = STATE(5350), + [sym_val_bool] = STATE(5167), + [sym_val_variable] = STATE(5350), + [sym__var] = STATE(4713), + [sym_val_number] = STATE(5350), + [sym__val_number_decimal] = STATE(3953), + [sym__val_number] = STATE(5351), + [sym_val_duration] = STATE(5350), + [sym_val_filesize] = STATE(5350), + [sym_val_binary] = STATE(5350), + [sym_val_string] = STATE(5350), + [sym__str_double_quotes] = STATE(5502), + [sym_val_interpolated] = STATE(5350), + [sym__inter_single_quotes] = STATE(5420), + [sym__inter_double_quotes] = STATE(5421), + [sym_val_list] = STATE(5350), + [sym_val_record] = STATE(5350), + [sym_val_table] = STATE(5350), + [sym_val_closure] = STATE(5350), + [sym_unquoted] = STATE(5242), + [sym__unquoted_anonymous_prefix] = STATE(10902), + [sym_comment] = STATE(1580), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_DOLLAR] = ACTIONS(5011), + [anon_sym_DASH] = ACTIONS(4478), + [anon_sym_LBRACE] = ACTIONS(3058), + [anon_sym_DOT_DOT] = ACTIONS(5013), + [anon_sym_not] = ACTIONS(4482), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5015), + [anon_sym_DOT_DOT_LT] = ACTIONS(5015), + [anon_sym_null] = ACTIONS(4486), + [anon_sym_true] = ACTIONS(4488), + [anon_sym_false] = ACTIONS(4488), + [aux_sym__val_number_decimal_token1] = ACTIONS(4490), + [aux_sym__val_number_decimal_token2] = ACTIONS(4492), + [anon_sym_DOT2] = ACTIONS(5017), + [aux_sym__val_number_decimal_token3] = ACTIONS(4496), + [aux_sym__val_number_token1] = ACTIONS(3076), + [aux_sym__val_number_token2] = ACTIONS(3076), + [aux_sym__val_number_token3] = ACTIONS(3076), + [aux_sym__val_number_token4] = ACTIONS(4498), + [aux_sym__val_number_token5] = ACTIONS(4498), + [aux_sym__val_number_token6] = ACTIONS(4498), + [anon_sym_0b] = ACTIONS(3080), + [anon_sym_0o] = ACTIONS(3082), + [anon_sym_0x] = ACTIONS(3082), + [sym_val_date] = ACTIONS(4500), + [anon_sym_DQUOTE] = ACTIONS(3086), + [sym__str_single_quotes] = ACTIONS(3088), + [sym__str_back_ticks] = ACTIONS(3088), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3092), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3096), + [anon_sym_POUND] = ACTIONS(3), }, - [1368] = { - [sym_comment] = STATE(1368), - [anon_sym_LBRACK] = ACTIONS(1115), - [anon_sym_COMMA] = ACTIONS(1115), - [anon_sym_RBRACK] = ACTIONS(1115), - [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_DOLLAR] = ACTIONS(1115), - [anon_sym_GT] = ACTIONS(1113), - [anon_sym_DASH_DASH] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_in] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1115), - [anon_sym_DOT_DOT] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_STAR_STAR] = ACTIONS(1115), - [anon_sym_PLUS_PLUS] = ACTIONS(1115), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_mod] = ACTIONS(1115), - [anon_sym_SLASH_SLASH] = ACTIONS(1115), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_bit_DASHshl] = ACTIONS(1115), - [anon_sym_bit_DASHshr] = ACTIONS(1115), - [anon_sym_EQ_EQ] = ACTIONS(1115), - [anon_sym_BANG_EQ] = ACTIONS(1115), - [anon_sym_LT2] = ACTIONS(1113), - [anon_sym_LT_EQ] = ACTIONS(1115), - [anon_sym_GT_EQ] = ACTIONS(1115), - [anon_sym_not_DASHin] = ACTIONS(1115), - [anon_sym_starts_DASHwith] = ACTIONS(1115), - [anon_sym_ends_DASHwith] = ACTIONS(1115), - [anon_sym_EQ_TILDE] = ACTIONS(1115), - [anon_sym_BANG_TILDE] = ACTIONS(1115), - [anon_sym_bit_DASHand] = ACTIONS(1115), - [anon_sym_bit_DASHxor] = ACTIONS(1115), - [anon_sym_bit_DASHor] = ACTIONS(1115), - [anon_sym_and] = ACTIONS(1115), - [anon_sym_xor] = ACTIONS(1115), - [anon_sym_or] = ACTIONS(1115), - [anon_sym_DOT_DOT2] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1113), - [anon_sym_DOT_DOT_LT] = ACTIONS(1113), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1115), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1115), - [anon_sym_true] = ACTIONS(1115), - [anon_sym_false] = ACTIONS(1115), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_decimal_token2] = ACTIONS(1115), - [anon_sym_DOT2] = ACTIONS(1113), - [aux_sym__val_number_decimal_token3] = ACTIONS(1115), - [aux_sym__val_number_token1] = ACTIONS(1115), - [aux_sym__val_number_token2] = ACTIONS(1115), - [aux_sym__val_number_token3] = ACTIONS(1115), - [aux_sym__val_number_token4] = ACTIONS(1115), - [aux_sym__val_number_token5] = ACTIONS(1115), - [aux_sym__val_number_token6] = ACTIONS(1115), - [anon_sym_0b] = ACTIONS(1113), - [anon_sym_0o] = ACTIONS(1113), - [anon_sym_0x] = ACTIONS(1113), - [sym_val_date] = ACTIONS(1115), - [anon_sym_DQUOTE] = ACTIONS(1115), - [sym__str_single_quotes] = ACTIONS(1115), - [sym__str_back_ticks] = ACTIONS(1115), - [anon_sym_err_GT] = ACTIONS(1115), - [anon_sym_out_GT] = ACTIONS(1115), - [anon_sym_e_GT] = ACTIONS(1115), - [anon_sym_o_GT] = ACTIONS(1115), - [anon_sym_err_PLUSout_GT] = ACTIONS(1115), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1115), - [anon_sym_o_PLUSe_GT] = ACTIONS(1115), - [anon_sym_e_PLUSo_GT] = ACTIONS(1115), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1113), + [1581] = { + [sym_expr_unary] = STATE(5215), + [sym__expr_unary_minus] = STATE(5410), + [sym_expr_binary] = STATE(5215), + [sym__expr_binary_expression] = STATE(5243), + [sym_expr_parenthesized] = STATE(5215), + [sym__val_range] = STATE(10125), + [sym__value] = STATE(5215), + [sym_val_nothing] = STATE(5350), + [sym_val_bool] = STATE(5167), + [sym_val_variable] = STATE(5350), + [sym__var] = STATE(4713), + [sym_val_number] = STATE(5350), + [sym__val_number_decimal] = STATE(3953), + [sym__val_number] = STATE(5351), + [sym_val_duration] = STATE(5350), + [sym_val_filesize] = STATE(5350), + [sym_val_binary] = STATE(5350), + [sym_val_string] = STATE(5350), + [sym__str_double_quotes] = STATE(5502), + [sym_val_interpolated] = STATE(5350), + [sym__inter_single_quotes] = STATE(5420), + [sym__inter_double_quotes] = STATE(5421), + [sym_val_list] = STATE(5350), + [sym_val_record] = STATE(5350), + [sym_val_table] = STATE(5350), + [sym_val_closure] = STATE(5350), + [sym_unquoted] = STATE(5244), + [sym__unquoted_anonymous_prefix] = STATE(10902), + [sym_comment] = STATE(1581), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_DOLLAR] = ACTIONS(5011), + [anon_sym_DASH] = ACTIONS(4478), + [anon_sym_LBRACE] = ACTIONS(3058), + [anon_sym_DOT_DOT] = ACTIONS(5013), + [anon_sym_not] = ACTIONS(4482), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5015), + [anon_sym_DOT_DOT_LT] = ACTIONS(5015), + [anon_sym_null] = ACTIONS(4486), + [anon_sym_true] = ACTIONS(4488), + [anon_sym_false] = ACTIONS(4488), + [aux_sym__val_number_decimal_token1] = ACTIONS(4490), + [aux_sym__val_number_decimal_token2] = ACTIONS(4492), + [anon_sym_DOT2] = ACTIONS(5017), + [aux_sym__val_number_decimal_token3] = ACTIONS(4496), + [aux_sym__val_number_token1] = ACTIONS(3076), + [aux_sym__val_number_token2] = ACTIONS(3076), + [aux_sym__val_number_token3] = ACTIONS(3076), + [aux_sym__val_number_token4] = ACTIONS(4498), + [aux_sym__val_number_token5] = ACTIONS(4498), + [aux_sym__val_number_token6] = ACTIONS(4498), + [anon_sym_0b] = ACTIONS(3080), + [anon_sym_0o] = ACTIONS(3082), + [anon_sym_0x] = ACTIONS(3082), + [sym_val_date] = ACTIONS(4500), + [anon_sym_DQUOTE] = ACTIONS(3086), + [sym__str_single_quotes] = ACTIONS(3088), + [sym__str_back_ticks] = ACTIONS(3088), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3092), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3096), [anon_sym_POUND] = ACTIONS(3), }, - [1369] = { - [sym_comment] = STATE(1369), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_COMMA] = ACTIONS(1172), - [anon_sym_RBRACK] = ACTIONS(1172), - [anon_sym_LPAREN] = ACTIONS(1172), - [anon_sym_DOLLAR] = ACTIONS(1172), - [anon_sym_GT] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_DASH] = ACTIONS(1172), - [anon_sym_in] = ACTIONS(1172), - [anon_sym_LBRACE] = ACTIONS(1172), - [anon_sym_DOT_DOT] = ACTIONS(1172), - [anon_sym_STAR] = ACTIONS(1172), - [anon_sym_STAR_STAR] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_SLASH] = ACTIONS(1172), - [anon_sym_mod] = ACTIONS(1172), - [anon_sym_SLASH_SLASH] = ACTIONS(1172), - [anon_sym_PLUS] = ACTIONS(1172), - [anon_sym_bit_DASHshl] = ACTIONS(1172), - [anon_sym_bit_DASHshr] = ACTIONS(1172), - [anon_sym_EQ_EQ] = ACTIONS(1172), - [anon_sym_BANG_EQ] = ACTIONS(1172), - [anon_sym_LT2] = ACTIONS(1172), - [anon_sym_LT_EQ] = ACTIONS(1172), - [anon_sym_GT_EQ] = ACTIONS(1172), - [anon_sym_not_DASHin] = ACTIONS(1172), - [anon_sym_starts_DASHwith] = ACTIONS(1172), - [anon_sym_ends_DASHwith] = ACTIONS(1172), - [anon_sym_EQ_TILDE] = ACTIONS(1172), - [anon_sym_BANG_TILDE] = ACTIONS(1172), - [anon_sym_bit_DASHand] = ACTIONS(1172), - [anon_sym_bit_DASHxor] = ACTIONS(1172), - [anon_sym_bit_DASHor] = ACTIONS(1172), - [anon_sym_and] = ACTIONS(1172), - [anon_sym_xor] = ACTIONS(1172), - [anon_sym_or] = ACTIONS(1172), - [anon_sym_DOT_DOT2] = ACTIONS(1172), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1172), - [anon_sym_DOT_DOT_LT] = ACTIONS(1172), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1174), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1174), - [anon_sym_null] = ACTIONS(1172), - [anon_sym_true] = ACTIONS(1172), - [anon_sym_false] = ACTIONS(1172), - [aux_sym__val_number_decimal_token1] = ACTIONS(1172), - [aux_sym__val_number_decimal_token2] = ACTIONS(1172), - [anon_sym_DOT2] = ACTIONS(1172), - [aux_sym__val_number_decimal_token3] = ACTIONS(1172), - [aux_sym__val_number_token1] = ACTIONS(1172), - [aux_sym__val_number_token2] = ACTIONS(1172), - [aux_sym__val_number_token3] = ACTIONS(1172), - [aux_sym__val_number_token4] = ACTIONS(1172), - [aux_sym__val_number_token5] = ACTIONS(1172), - [aux_sym__val_number_token6] = ACTIONS(1172), - [anon_sym_0b] = ACTIONS(1172), - [anon_sym_0o] = ACTIONS(1172), - [anon_sym_0x] = ACTIONS(1172), - [sym_val_date] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(1172), - [sym__str_single_quotes] = ACTIONS(1172), - [sym__str_back_ticks] = ACTIONS(1172), - [sym__entry_separator] = ACTIONS(1174), - [anon_sym_err_GT] = ACTIONS(1172), - [anon_sym_out_GT] = ACTIONS(1172), - [anon_sym_e_GT] = ACTIONS(1172), - [anon_sym_o_GT] = ACTIONS(1172), - [anon_sym_err_PLUSout_GT] = ACTIONS(1172), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1172), - [anon_sym_o_PLUSe_GT] = ACTIONS(1172), - [anon_sym_e_PLUSo_GT] = ACTIONS(1172), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1172), - [anon_sym_POUND] = ACTIONS(113), + [1582] = { + [sym_expr_unary] = STATE(5215), + [sym__expr_unary_minus] = STATE(5410), + [sym_expr_binary] = STATE(5215), + [sym__expr_binary_expression] = STATE(5245), + [sym_expr_parenthesized] = STATE(5215), + [sym__val_range] = STATE(10125), + [sym__value] = STATE(5215), + [sym_val_nothing] = STATE(5350), + [sym_val_bool] = STATE(5167), + [sym_val_variable] = STATE(5350), + [sym__var] = STATE(4713), + [sym_val_number] = STATE(5350), + [sym__val_number_decimal] = STATE(3953), + [sym__val_number] = STATE(5351), + [sym_val_duration] = STATE(5350), + [sym_val_filesize] = STATE(5350), + [sym_val_binary] = STATE(5350), + [sym_val_string] = STATE(5350), + [sym__str_double_quotes] = STATE(5502), + [sym_val_interpolated] = STATE(5350), + [sym__inter_single_quotes] = STATE(5420), + [sym__inter_double_quotes] = STATE(5421), + [sym_val_list] = STATE(5350), + [sym_val_record] = STATE(5350), + [sym_val_table] = STATE(5350), + [sym_val_closure] = STATE(5350), + [sym_unquoted] = STATE(5246), + [sym__unquoted_anonymous_prefix] = STATE(10902), + [sym_comment] = STATE(1582), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_DOLLAR] = ACTIONS(5011), + [anon_sym_DASH] = ACTIONS(4478), + [anon_sym_LBRACE] = ACTIONS(3058), + [anon_sym_DOT_DOT] = ACTIONS(5013), + [anon_sym_not] = ACTIONS(4482), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5015), + [anon_sym_DOT_DOT_LT] = ACTIONS(5015), + [anon_sym_null] = ACTIONS(4486), + [anon_sym_true] = ACTIONS(4488), + [anon_sym_false] = ACTIONS(4488), + [aux_sym__val_number_decimal_token1] = ACTIONS(4490), + [aux_sym__val_number_decimal_token2] = ACTIONS(4492), + [anon_sym_DOT2] = ACTIONS(5017), + [aux_sym__val_number_decimal_token3] = ACTIONS(4496), + [aux_sym__val_number_token1] = ACTIONS(3076), + [aux_sym__val_number_token2] = ACTIONS(3076), + [aux_sym__val_number_token3] = ACTIONS(3076), + [aux_sym__val_number_token4] = ACTIONS(4498), + [aux_sym__val_number_token5] = ACTIONS(4498), + [aux_sym__val_number_token6] = ACTIONS(4498), + [anon_sym_0b] = ACTIONS(3080), + [anon_sym_0o] = ACTIONS(3082), + [anon_sym_0x] = ACTIONS(3082), + [sym_val_date] = ACTIONS(4500), + [anon_sym_DQUOTE] = ACTIONS(3086), + [sym__str_single_quotes] = ACTIONS(3088), + [sym__str_back_ticks] = ACTIONS(3088), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3092), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3096), + [anon_sym_POUND] = ACTIONS(3), }, - [1370] = { - [sym_comment] = STATE(1370), - [anon_sym_export] = ACTIONS(2581), - [anon_sym_alias] = ACTIONS(2581), - [anon_sym_let] = ACTIONS(2581), - [anon_sym_let_DASHenv] = ACTIONS(2581), - [anon_sym_mut] = ACTIONS(2581), - [anon_sym_const] = ACTIONS(2581), - [anon_sym_SEMI] = ACTIONS(2581), - [sym_cmd_identifier] = ACTIONS(2581), - [anon_sym_LF] = ACTIONS(2583), - [anon_sym_def] = ACTIONS(2581), - [anon_sym_export_DASHenv] = ACTIONS(2581), - [anon_sym_extern] = ACTIONS(2581), - [anon_sym_module] = ACTIONS(2581), - [anon_sym_use] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2581), - [anon_sym_RPAREN] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2581), - [anon_sym_error] = ACTIONS(2581), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_break] = ACTIONS(2581), - [anon_sym_continue] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2581), - [anon_sym_loop] = ACTIONS(2581), - [anon_sym_while] = ACTIONS(2581), - [anon_sym_do] = ACTIONS(2581), - [anon_sym_if] = ACTIONS(2581), - [anon_sym_match] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2581), - [anon_sym_RBRACE] = ACTIONS(2581), - [anon_sym_DOT_DOT] = ACTIONS(2581), - [anon_sym_try] = ACTIONS(2581), - [anon_sym_return] = ACTIONS(2581), - [anon_sym_source] = ACTIONS(2581), - [anon_sym_source_DASHenv] = ACTIONS(2581), - [anon_sym_register] = ACTIONS(2581), - [anon_sym_hide] = ACTIONS(2581), - [anon_sym_hide_DASHenv] = ACTIONS(2581), - [anon_sym_overlay] = ACTIONS(2581), - [anon_sym_where] = ACTIONS(2581), - [anon_sym_not] = ACTIONS(2581), - [anon_sym_DOT_DOT2] = ACTIONS(2581), - [anon_sym_DOT] = ACTIONS(3938), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2581), - [anon_sym_DOT_DOT_LT] = ACTIONS(2581), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2583), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2583), - [aux_sym__immediate_decimal_token2] = ACTIONS(3940), - [anon_sym_null] = ACTIONS(2581), - [anon_sym_true] = ACTIONS(2581), - [anon_sym_false] = ACTIONS(2581), - [aux_sym__val_number_decimal_token1] = ACTIONS(2581), - [aux_sym__val_number_decimal_token2] = ACTIONS(2581), - [anon_sym_DOT2] = ACTIONS(2581), - [aux_sym__val_number_decimal_token3] = ACTIONS(2581), - [aux_sym__val_number_token1] = ACTIONS(2581), - [aux_sym__val_number_token2] = ACTIONS(2581), - [aux_sym__val_number_token3] = ACTIONS(2581), - [aux_sym__val_number_token4] = ACTIONS(2581), - [aux_sym__val_number_token5] = ACTIONS(2581), - [aux_sym__val_number_token6] = ACTIONS(2581), - [anon_sym_0b] = ACTIONS(2581), - [anon_sym_0o] = ACTIONS(2581), - [anon_sym_0x] = ACTIONS(2581), - [sym_val_date] = ACTIONS(2581), - [anon_sym_DQUOTE] = ACTIONS(2581), - [sym__str_single_quotes] = ACTIONS(2581), - [sym__str_back_ticks] = ACTIONS(2581), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2581), - [anon_sym_CARET] = ACTIONS(2581), - [anon_sym_POUND] = ACTIONS(113), + [1583] = { + [sym_expr_unary] = STATE(5215), + [sym__expr_unary_minus] = STATE(5410), + [sym_expr_binary] = STATE(5215), + [sym__expr_binary_expression] = STATE(5247), + [sym_expr_parenthesized] = STATE(5215), + [sym__val_range] = STATE(10125), + [sym__value] = STATE(5215), + [sym_val_nothing] = STATE(5350), + [sym_val_bool] = STATE(5167), + [sym_val_variable] = STATE(5350), + [sym__var] = STATE(4713), + [sym_val_number] = STATE(5350), + [sym__val_number_decimal] = STATE(3953), + [sym__val_number] = STATE(5351), + [sym_val_duration] = STATE(5350), + [sym_val_filesize] = STATE(5350), + [sym_val_binary] = STATE(5350), + [sym_val_string] = STATE(5350), + [sym__str_double_quotes] = STATE(5502), + [sym_val_interpolated] = STATE(5350), + [sym__inter_single_quotes] = STATE(5420), + [sym__inter_double_quotes] = STATE(5421), + [sym_val_list] = STATE(5350), + [sym_val_record] = STATE(5350), + [sym_val_table] = STATE(5350), + [sym_val_closure] = STATE(5350), + [sym_unquoted] = STATE(5248), + [sym__unquoted_anonymous_prefix] = STATE(10902), + [sym_comment] = STATE(1583), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_DOLLAR] = ACTIONS(5011), + [anon_sym_DASH] = ACTIONS(4478), + [anon_sym_LBRACE] = ACTIONS(3058), + [anon_sym_DOT_DOT] = ACTIONS(5013), + [anon_sym_not] = ACTIONS(4482), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5015), + [anon_sym_DOT_DOT_LT] = ACTIONS(5015), + [anon_sym_null] = ACTIONS(4486), + [anon_sym_true] = ACTIONS(4488), + [anon_sym_false] = ACTIONS(4488), + [aux_sym__val_number_decimal_token1] = ACTIONS(4490), + [aux_sym__val_number_decimal_token2] = ACTIONS(4492), + [anon_sym_DOT2] = ACTIONS(5017), + [aux_sym__val_number_decimal_token3] = ACTIONS(4496), + [aux_sym__val_number_token1] = ACTIONS(3076), + [aux_sym__val_number_token2] = ACTIONS(3076), + [aux_sym__val_number_token3] = ACTIONS(3076), + [aux_sym__val_number_token4] = ACTIONS(4498), + [aux_sym__val_number_token5] = ACTIONS(4498), + [aux_sym__val_number_token6] = ACTIONS(4498), + [anon_sym_0b] = ACTIONS(3080), + [anon_sym_0o] = ACTIONS(3082), + [anon_sym_0x] = ACTIONS(3082), + [sym_val_date] = ACTIONS(4500), + [anon_sym_DQUOTE] = ACTIONS(3086), + [sym__str_single_quotes] = ACTIONS(3088), + [sym__str_back_ticks] = ACTIONS(3088), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3092), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3096), + [anon_sym_POUND] = ACTIONS(3), }, - [1371] = { - [sym_path] = STATE(1603), - [sym_comment] = STATE(1371), - [aux_sym_cell_path_repeat1] = STATE(1371), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_COMMA] = ACTIONS(999), - [anon_sym_RBRACK] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_GT] = ACTIONS(999), - [anon_sym_DASH_DASH] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_in] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(999), - [anon_sym_DOT_DOT] = ACTIONS(999), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_STAR_STAR] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(999), - [anon_sym_mod] = ACTIONS(999), - [anon_sym_SLASH_SLASH] = ACTIONS(999), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_bit_DASHshl] = ACTIONS(999), - [anon_sym_bit_DASHshr] = ACTIONS(999), - [anon_sym_EQ_EQ] = ACTIONS(999), - [anon_sym_BANG_EQ] = ACTIONS(999), - [anon_sym_LT2] = ACTIONS(999), - [anon_sym_LT_EQ] = ACTIONS(999), - [anon_sym_GT_EQ] = ACTIONS(999), - [anon_sym_not_DASHin] = ACTIONS(999), - [anon_sym_starts_DASHwith] = ACTIONS(999), - [anon_sym_ends_DASHwith] = ACTIONS(999), - [anon_sym_EQ_TILDE] = ACTIONS(999), - [anon_sym_BANG_TILDE] = ACTIONS(999), - [anon_sym_bit_DASHand] = ACTIONS(999), - [anon_sym_bit_DASHxor] = ACTIONS(999), - [anon_sym_bit_DASHor] = ACTIONS(999), - [anon_sym_and] = ACTIONS(999), - [anon_sym_xor] = ACTIONS(999), - [anon_sym_or] = ACTIONS(999), - [anon_sym_DOT] = ACTIONS(3942), - [anon_sym_DOT_DOT_EQ] = ACTIONS(999), - [anon_sym_DOT_DOT_LT] = ACTIONS(999), - [anon_sym_null] = ACTIONS(999), - [anon_sym_true] = ACTIONS(999), - [anon_sym_false] = ACTIONS(999), - [aux_sym__val_number_decimal_token1] = ACTIONS(999), - [aux_sym__val_number_decimal_token2] = ACTIONS(999), - [anon_sym_DOT2] = ACTIONS(999), - [aux_sym__val_number_decimal_token3] = ACTIONS(999), - [aux_sym__val_number_token1] = ACTIONS(999), - [aux_sym__val_number_token2] = ACTIONS(999), - [aux_sym__val_number_token3] = ACTIONS(999), - [aux_sym__val_number_token4] = ACTIONS(999), - [aux_sym__val_number_token5] = ACTIONS(999), - [aux_sym__val_number_token6] = ACTIONS(999), - [anon_sym_0b] = ACTIONS(999), - [anon_sym_0o] = ACTIONS(999), - [anon_sym_0x] = ACTIONS(999), - [sym_val_date] = ACTIONS(999), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym__str_single_quotes] = ACTIONS(999), - [sym__str_back_ticks] = ACTIONS(999), - [sym__entry_separator] = ACTIONS(1001), - [anon_sym_err_GT] = ACTIONS(999), - [anon_sym_out_GT] = ACTIONS(999), - [anon_sym_e_GT] = ACTIONS(999), - [anon_sym_o_GT] = ACTIONS(999), - [anon_sym_err_PLUSout_GT] = ACTIONS(999), - [anon_sym_out_PLUSerr_GT] = ACTIONS(999), - [anon_sym_o_PLUSe_GT] = ACTIONS(999), - [anon_sym_e_PLUSo_GT] = ACTIONS(999), - [aux_sym__unquoted_in_list_token1] = ACTIONS(999), - [anon_sym_POUND] = ACTIONS(113), + [1584] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6287), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6013), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4530), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5796), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1584), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(4785), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4787), + [anon_sym_DOT_DOT_LT] = ACTIONS(4787), + [anon_sym_null] = ACTIONS(3900), + [anon_sym_true] = ACTIONS(3902), + [anon_sym_false] = ACTIONS(3902), + [aux_sym__val_number_decimal_token1] = ACTIONS(3904), + [aux_sym__val_number_decimal_token2] = ACTIONS(3906), + [anon_sym_DOT2] = ACTIONS(4789), + [aux_sym__val_number_decimal_token3] = ACTIONS(3910), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(3912), + [aux_sym__val_number_token5] = ACTIONS(3912), + [aux_sym__val_number_token6] = ACTIONS(3912), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(3914), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), + [anon_sym_POUND] = ACTIONS(3), }, - [1372] = { - [sym_comment] = STATE(1372), - [anon_sym_export] = ACTIONS(2547), - [anon_sym_alias] = ACTIONS(2547), - [anon_sym_let] = ACTIONS(2547), - [anon_sym_let_DASHenv] = ACTIONS(2547), - [anon_sym_mut] = ACTIONS(2547), - [anon_sym_const] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [sym_cmd_identifier] = ACTIONS(2547), - [anon_sym_LF] = ACTIONS(2549), - [anon_sym_def] = ACTIONS(2547), - [anon_sym_export_DASHenv] = ACTIONS(2547), - [anon_sym_extern] = ACTIONS(2547), - [anon_sym_module] = ACTIONS(2547), - [anon_sym_use] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_RPAREN] = ACTIONS(2547), - [anon_sym_DOLLAR] = ACTIONS(2547), - [anon_sym_error] = ACTIONS(2547), - [anon_sym_DASH_DASH] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_break] = ACTIONS(2547), - [anon_sym_continue] = ACTIONS(2547), - [anon_sym_for] = ACTIONS(2547), - [anon_sym_loop] = ACTIONS(2547), - [anon_sym_while] = ACTIONS(2547), - [anon_sym_do] = ACTIONS(2547), - [anon_sym_if] = ACTIONS(2547), - [anon_sym_match] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2547), - [anon_sym_RBRACE] = ACTIONS(2547), - [anon_sym_DOT_DOT] = ACTIONS(2547), - [anon_sym_try] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2547), - [anon_sym_source] = ACTIONS(2547), - [anon_sym_source_DASHenv] = ACTIONS(2547), - [anon_sym_register] = ACTIONS(2547), - [anon_sym_hide] = ACTIONS(2547), - [anon_sym_hide_DASHenv] = ACTIONS(2547), - [anon_sym_overlay] = ACTIONS(2547), - [anon_sym_as] = ACTIONS(2547), - [anon_sym_where] = ACTIONS(2547), - [anon_sym_not] = ACTIONS(2547), - [anon_sym_DOT_DOT2] = ACTIONS(2547), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), - [anon_sym_DOT_DOT_LT] = ACTIONS(2547), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2549), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2549), - [anon_sym_null] = ACTIONS(2547), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [aux_sym__val_number_decimal_token1] = ACTIONS(2547), - [aux_sym__val_number_decimal_token2] = ACTIONS(2547), - [anon_sym_DOT2] = ACTIONS(2547), - [aux_sym__val_number_decimal_token3] = ACTIONS(2547), - [aux_sym__val_number_token1] = ACTIONS(2547), - [aux_sym__val_number_token2] = ACTIONS(2547), - [aux_sym__val_number_token3] = ACTIONS(2547), - [aux_sym__val_number_token4] = ACTIONS(2547), - [aux_sym__val_number_token5] = ACTIONS(2547), - [aux_sym__val_number_token6] = ACTIONS(2547), - [anon_sym_0b] = ACTIONS(2547), - [anon_sym_0o] = ACTIONS(2547), - [anon_sym_0x] = ACTIONS(2547), - [sym_val_date] = ACTIONS(2547), - [anon_sym_DQUOTE] = ACTIONS(2547), - [sym__str_single_quotes] = ACTIONS(2547), - [sym__str_back_ticks] = ACTIONS(2547), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2547), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2547), - [anon_sym_POUND] = ACTIONS(113), + [1585] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6288), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6013), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4530), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5809), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1585), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(4785), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4787), + [anon_sym_DOT_DOT_LT] = ACTIONS(4787), + [anon_sym_null] = ACTIONS(3900), + [anon_sym_true] = ACTIONS(3902), + [anon_sym_false] = ACTIONS(3902), + [aux_sym__val_number_decimal_token1] = ACTIONS(3904), + [aux_sym__val_number_decimal_token2] = ACTIONS(3906), + [anon_sym_DOT2] = ACTIONS(4789), + [aux_sym__val_number_decimal_token3] = ACTIONS(3910), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(3912), + [aux_sym__val_number_token5] = ACTIONS(3912), + [aux_sym__val_number_token6] = ACTIONS(3912), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(3914), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), + [anon_sym_POUND] = ACTIONS(3), }, - [1373] = { - [sym_cell_path] = STATE(1905), - [sym_path] = STATE(1361), - [sym_comment] = STATE(1373), - [anon_sym_export] = ACTIONS(1010), - [anon_sym_alias] = ACTIONS(1010), - [anon_sym_let] = ACTIONS(1010), - [anon_sym_let_DASHenv] = ACTIONS(1010), - [anon_sym_mut] = ACTIONS(1010), - [anon_sym_const] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1010), - [sym_cmd_identifier] = ACTIONS(1010), - [anon_sym_LF] = ACTIONS(1012), - [anon_sym_def] = ACTIONS(1010), - [anon_sym_export_DASHenv] = ACTIONS(1010), - [anon_sym_extern] = ACTIONS(1010), - [anon_sym_module] = ACTIONS(1010), - [anon_sym_use] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(1010), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_RPAREN] = ACTIONS(1010), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_error] = ACTIONS(1010), - [anon_sym_DASH_DASH] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1010), - [anon_sym_continue] = ACTIONS(1010), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_loop] = ACTIONS(1010), - [anon_sym_while] = ACTIONS(1010), - [anon_sym_do] = ACTIONS(1010), - [anon_sym_if] = ACTIONS(1010), - [anon_sym_match] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_RBRACE] = ACTIONS(1010), - [anon_sym_DOT_DOT] = ACTIONS(1010), - [anon_sym_try] = ACTIONS(1010), - [anon_sym_return] = ACTIONS(1010), - [anon_sym_source] = ACTIONS(1010), - [anon_sym_source_DASHenv] = ACTIONS(1010), - [anon_sym_register] = ACTIONS(1010), - [anon_sym_hide] = ACTIONS(1010), - [anon_sym_hide_DASHenv] = ACTIONS(1010), - [anon_sym_overlay] = ACTIONS(1010), - [anon_sym_as] = ACTIONS(1010), - [anon_sym_where] = ACTIONS(1010), - [anon_sym_not] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(3854), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT] = ACTIONS(1010), - [anon_sym_null] = ACTIONS(1010), - [anon_sym_true] = ACTIONS(1010), - [anon_sym_false] = ACTIONS(1010), - [aux_sym__val_number_decimal_token1] = ACTIONS(1010), - [aux_sym__val_number_decimal_token2] = ACTIONS(1010), - [anon_sym_DOT2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = 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(1010), - [aux_sym__val_number_token5] = ACTIONS(1010), - [aux_sym__val_number_token6] = ACTIONS(1010), - [anon_sym_0b] = ACTIONS(1010), - [anon_sym_0o] = ACTIONS(1010), - [anon_sym_0x] = ACTIONS(1010), - [sym_val_date] = ACTIONS(1010), - [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_CARET] = ACTIONS(1010), - [anon_sym_POUND] = ACTIONS(113), + [1586] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6289), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6013), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4530), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5812), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1586), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(4785), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4787), + [anon_sym_DOT_DOT_LT] = ACTIONS(4787), + [anon_sym_null] = ACTIONS(3900), + [anon_sym_true] = ACTIONS(3902), + [anon_sym_false] = ACTIONS(3902), + [aux_sym__val_number_decimal_token1] = ACTIONS(3904), + [aux_sym__val_number_decimal_token2] = ACTIONS(3906), + [anon_sym_DOT2] = ACTIONS(4789), + [aux_sym__val_number_decimal_token3] = ACTIONS(3910), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(3912), + [aux_sym__val_number_token5] = ACTIONS(3912), + [aux_sym__val_number_token6] = ACTIONS(3912), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(3914), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), + [anon_sym_POUND] = ACTIONS(3), }, - [1374] = { - [sym_comment] = STATE(1374), - [anon_sym_SEMI] = ACTIONS(909), - [anon_sym_LF] = ACTIONS(911), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_RPAREN] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_RBRACE] = ACTIONS(909), - [anon_sym_DOT_DOT] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(909), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(909), - [anon_sym_SLASH_SLASH] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(909), - [anon_sym_bit_DASHshr] = ACTIONS(909), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_not_DASHin] = ACTIONS(909), - [anon_sym_starts_DASHwith] = ACTIONS(909), - [anon_sym_ends_DASHwith] = ACTIONS(909), - [anon_sym_EQ_TILDE] = ACTIONS(909), - [anon_sym_BANG_TILDE] = ACTIONS(909), - [anon_sym_bit_DASHand] = ACTIONS(909), - [anon_sym_bit_DASHxor] = ACTIONS(909), - [anon_sym_bit_DASHor] = ACTIONS(909), - [anon_sym_and] = ACTIONS(909), - [anon_sym_xor] = ACTIONS(909), - [anon_sym_or] = ACTIONS(909), - [anon_sym_not] = ACTIONS(909), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [anon_sym_null] = ACTIONS(909), - [anon_sym_true] = ACTIONS(909), - [anon_sym_false] = ACTIONS(909), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(909), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(909), - [aux_sym__val_number_token1] = ACTIONS(909), - [aux_sym__val_number_token2] = ACTIONS(909), - [aux_sym__val_number_token3] = ACTIONS(909), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(909), - [aux_sym__val_number_token6] = ACTIONS(909), - [anon_sym_0b] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(911), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym__str_single_quotes] = ACTIONS(909), - [sym__str_back_ticks] = ACTIONS(909), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), - [aux_sym_unquoted_token5] = ACTIONS(909), - [anon_sym_POUND] = ACTIONS(113), + [1587] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6290), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6013), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4530), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5813), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1587), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(4785), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4787), + [anon_sym_DOT_DOT_LT] = ACTIONS(4787), + [anon_sym_null] = ACTIONS(3900), + [anon_sym_true] = ACTIONS(3902), + [anon_sym_false] = ACTIONS(3902), + [aux_sym__val_number_decimal_token1] = ACTIONS(3904), + [aux_sym__val_number_decimal_token2] = ACTIONS(3906), + [anon_sym_DOT2] = ACTIONS(4789), + [aux_sym__val_number_decimal_token3] = ACTIONS(3910), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(3912), + [aux_sym__val_number_token5] = ACTIONS(3912), + [aux_sym__val_number_token6] = ACTIONS(3912), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(3914), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), + [anon_sym_POUND] = ACTIONS(3), }, - [1375] = { - [sym_comment] = STATE(1375), - [ts_builtin_sym_end] = ACTIONS(1115), - [anon_sym_export] = ACTIONS(1113), - [anon_sym_alias] = ACTIONS(1113), - [anon_sym_let] = ACTIONS(1113), - [anon_sym_let_DASHenv] = ACTIONS(1113), - [anon_sym_mut] = ACTIONS(1113), - [anon_sym_const] = ACTIONS(1113), - [anon_sym_SEMI] = ACTIONS(1113), - [sym_cmd_identifier] = ACTIONS(1113), - [anon_sym_LF] = ACTIONS(1115), - [anon_sym_def] = ACTIONS(1113), - [anon_sym_export_DASHenv] = ACTIONS(1113), - [anon_sym_extern] = ACTIONS(1113), - [anon_sym_module] = ACTIONS(1113), - [anon_sym_use] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1113), - [anon_sym_error] = ACTIONS(1113), - [anon_sym_DASH_DASH] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_loop] = ACTIONS(1113), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1113), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_source] = ACTIONS(1113), - [anon_sym_source_DASHenv] = ACTIONS(1113), - [anon_sym_register] = ACTIONS(1113), - [anon_sym_hide] = ACTIONS(1113), - [anon_sym_hide_DASHenv] = ACTIONS(1113), - [anon_sym_overlay] = ACTIONS(1113), - [anon_sym_as] = ACTIONS(1113), - [anon_sym_where] = ACTIONS(1113), - [anon_sym_not] = ACTIONS(1113), - [anon_sym_DOT_DOT2] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1113), - [anon_sym_DOT_DOT_LT] = ACTIONS(1113), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1115), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1113), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1113), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_decimal_token2] = ACTIONS(1113), - [anon_sym_DOT2] = ACTIONS(1113), - [aux_sym__val_number_decimal_token3] = ACTIONS(1113), - [aux_sym__val_number_token1] = ACTIONS(1113), - [aux_sym__val_number_token2] = ACTIONS(1113), - [aux_sym__val_number_token3] = ACTIONS(1113), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1113), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_0b] = ACTIONS(1113), - [anon_sym_0o] = ACTIONS(1113), - [anon_sym_0x] = ACTIONS(1113), - [sym_val_date] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym__str_single_quotes] = ACTIONS(1113), - [sym__str_back_ticks] = ACTIONS(1113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), - [anon_sym_CARET] = ACTIONS(1113), - [anon_sym_POUND] = ACTIONS(113), + [1588] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6292), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6013), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4530), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5819), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1588), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(4785), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4787), + [anon_sym_DOT_DOT_LT] = ACTIONS(4787), + [anon_sym_null] = ACTIONS(3900), + [anon_sym_true] = ACTIONS(3902), + [anon_sym_false] = ACTIONS(3902), + [aux_sym__val_number_decimal_token1] = ACTIONS(3904), + [aux_sym__val_number_decimal_token2] = ACTIONS(3906), + [anon_sym_DOT2] = ACTIONS(4789), + [aux_sym__val_number_decimal_token3] = ACTIONS(3910), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(3912), + [aux_sym__val_number_token5] = ACTIONS(3912), + [aux_sym__val_number_token6] = ACTIONS(3912), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(3914), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), + [anon_sym_POUND] = ACTIONS(3), }, - [1376] = { - [sym_comment] = STATE(1376), - [ts_builtin_sym_end] = ACTIONS(2439), - [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), - [anon_sym_SEMI] = ACTIONS(2437), - [sym_cmd_identifier] = ACTIONS(2437), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_DASH_DASH] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_as] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_not] = ACTIONS(2437), - [anon_sym_DOT] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [aux_sym__immediate_decimal_token1] = ACTIONS(3945), - [aux_sym__immediate_decimal_token2] = ACTIONS(3947), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [anon_sym_DOT2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2437), - [anon_sym_0o] = ACTIONS(2437), - [anon_sym_0x] = ACTIONS(2437), - [sym_val_date] = 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_CARET] = ACTIONS(2437), - [aux_sym_unquoted_token2] = ACTIONS(2437), - [anon_sym_POUND] = ACTIONS(113), + [1589] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6293), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6013), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4530), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5852), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1589), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(4785), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4787), + [anon_sym_DOT_DOT_LT] = ACTIONS(4787), + [anon_sym_null] = ACTIONS(3900), + [anon_sym_true] = ACTIONS(3902), + [anon_sym_false] = ACTIONS(3902), + [aux_sym__val_number_decimal_token1] = ACTIONS(3904), + [aux_sym__val_number_decimal_token2] = ACTIONS(3906), + [anon_sym_DOT2] = ACTIONS(4789), + [aux_sym__val_number_decimal_token3] = ACTIONS(3910), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(3912), + [aux_sym__val_number_token5] = ACTIONS(3912), + [aux_sym__val_number_token6] = ACTIONS(3912), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(3914), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), + [anon_sym_POUND] = ACTIONS(3), }, - [1377] = { - [sym_path] = STATE(1662), - [sym_comment] = STATE(1377), - [aux_sym_cell_path_repeat1] = STATE(1381), - [anon_sym_export] = ACTIONS(1006), - [anon_sym_alias] = ACTIONS(1006), - [anon_sym_let] = ACTIONS(1006), - [anon_sym_let_DASHenv] = ACTIONS(1006), - [anon_sym_mut] = ACTIONS(1006), - [anon_sym_const] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1006), - [sym_cmd_identifier] = ACTIONS(1006), - [anon_sym_LF] = ACTIONS(1008), - [anon_sym_def] = ACTIONS(1006), - [anon_sym_export_DASHenv] = ACTIONS(1006), - [anon_sym_extern] = ACTIONS(1006), - [anon_sym_module] = ACTIONS(1006), - [anon_sym_use] = ACTIONS(1006), - [anon_sym_LBRACK] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_RPAREN] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_error] = ACTIONS(1006), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_break] = ACTIONS(1006), - [anon_sym_continue] = ACTIONS(1006), - [anon_sym_for] = ACTIONS(1006), - [anon_sym_loop] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(1006), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_match] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_try] = ACTIONS(1006), - [anon_sym_return] = ACTIONS(1006), - [anon_sym_source] = ACTIONS(1006), - [anon_sym_source_DASHenv] = ACTIONS(1006), - [anon_sym_register] = ACTIONS(1006), - [anon_sym_hide] = ACTIONS(1006), - [anon_sym_hide_DASHenv] = ACTIONS(1006), - [anon_sym_overlay] = ACTIONS(1006), - [anon_sym_as] = ACTIONS(1006), - [anon_sym_where] = ACTIONS(1006), - [anon_sym_not] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(3854), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT] = ACTIONS(1006), - [anon_sym_null] = ACTIONS(1006), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1006), - [anon_sym_DOT2] = ACTIONS(1006), - [aux_sym__val_number_decimal_token3] = ACTIONS(1006), - [aux_sym__val_number_token1] = ACTIONS(1006), - [aux_sym__val_number_token2] = ACTIONS(1006), - [aux_sym__val_number_token3] = ACTIONS(1006), - [aux_sym__val_number_token4] = ACTIONS(1006), - [aux_sym__val_number_token5] = ACTIONS(1006), - [aux_sym__val_number_token6] = ACTIONS(1006), - [anon_sym_0b] = ACTIONS(1006), - [anon_sym_0o] = ACTIONS(1006), - [anon_sym_0x] = ACTIONS(1006), - [sym_val_date] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym__str_single_quotes] = ACTIONS(1006), - [sym__str_back_ticks] = ACTIONS(1006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1006), - [anon_sym_CARET] = ACTIONS(1006), - [anon_sym_POUND] = ACTIONS(113), + [1590] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6294), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6013), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4530), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5856), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1590), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(4785), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4787), + [anon_sym_DOT_DOT_LT] = ACTIONS(4787), + [anon_sym_null] = ACTIONS(3900), + [anon_sym_true] = ACTIONS(3902), + [anon_sym_false] = ACTIONS(3902), + [aux_sym__val_number_decimal_token1] = ACTIONS(3904), + [aux_sym__val_number_decimal_token2] = ACTIONS(3906), + [anon_sym_DOT2] = ACTIONS(4789), + [aux_sym__val_number_decimal_token3] = ACTIONS(3910), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(3912), + [aux_sym__val_number_token5] = ACTIONS(3912), + [aux_sym__val_number_token6] = ACTIONS(3912), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(3914), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), + [anon_sym_POUND] = ACTIONS(3), }, - [1378] = { - [sym_comment] = STATE(1378), - [anon_sym_export] = ACTIONS(3949), - [anon_sym_alias] = ACTIONS(3949), - [anon_sym_let] = ACTIONS(3949), - [anon_sym_let_DASHenv] = ACTIONS(3949), - [anon_sym_mut] = ACTIONS(3949), - [anon_sym_const] = ACTIONS(3949), - [anon_sym_SEMI] = ACTIONS(3949), - [sym_cmd_identifier] = ACTIONS(3949), - [anon_sym_LF] = ACTIONS(3951), - [anon_sym_def] = ACTIONS(3949), - [anon_sym_export_DASHenv] = ACTIONS(3949), - [anon_sym_extern] = ACTIONS(3949), - [anon_sym_module] = ACTIONS(3949), - [anon_sym_use] = ACTIONS(3949), - [anon_sym_LBRACK] = ACTIONS(3949), - [anon_sym_LPAREN] = ACTIONS(3949), - [anon_sym_RPAREN] = ACTIONS(3949), - [anon_sym_DOLLAR] = ACTIONS(3949), - [anon_sym_error] = ACTIONS(3949), - [anon_sym_DASH_DASH] = ACTIONS(3949), - [anon_sym_DASH] = ACTIONS(3949), - [anon_sym_break] = ACTIONS(3949), - [anon_sym_continue] = ACTIONS(3949), - [anon_sym_for] = ACTIONS(3949), - [anon_sym_loop] = ACTIONS(3949), - [anon_sym_while] = ACTIONS(3949), - [anon_sym_do] = ACTIONS(3949), - [anon_sym_if] = ACTIONS(3949), - [anon_sym_match] = ACTIONS(3949), - [anon_sym_LBRACE] = ACTIONS(3949), - [anon_sym_RBRACE] = ACTIONS(3949), - [anon_sym_DOT_DOT] = ACTIONS(3949), - [anon_sym_try] = ACTIONS(3949), - [anon_sym_return] = ACTIONS(3949), - [anon_sym_source] = ACTIONS(3949), - [anon_sym_source_DASHenv] = ACTIONS(3949), - [anon_sym_register] = ACTIONS(3949), - [anon_sym_hide] = ACTIONS(3949), - [anon_sym_hide_DASHenv] = ACTIONS(3949), - [anon_sym_overlay] = ACTIONS(3949), - [anon_sym_as] = ACTIONS(3949), - [anon_sym_where] = ACTIONS(3949), - [anon_sym_not] = ACTIONS(3949), - [anon_sym_DOT_DOT2] = ACTIONS(3953), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3949), - [anon_sym_DOT_DOT_LT] = ACTIONS(3949), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3955), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3955), - [anon_sym_null] = ACTIONS(3949), - [anon_sym_true] = ACTIONS(3949), - [anon_sym_false] = ACTIONS(3949), - [aux_sym__val_number_decimal_token1] = ACTIONS(3949), - [aux_sym__val_number_decimal_token2] = ACTIONS(3949), - [anon_sym_DOT2] = ACTIONS(3949), - [aux_sym__val_number_decimal_token3] = ACTIONS(3949), - [aux_sym__val_number_token1] = ACTIONS(3949), - [aux_sym__val_number_token2] = ACTIONS(3949), - [aux_sym__val_number_token3] = ACTIONS(3949), - [aux_sym__val_number_token4] = ACTIONS(3949), - [aux_sym__val_number_token5] = ACTIONS(3949), - [aux_sym__val_number_token6] = ACTIONS(3949), - [anon_sym_0b] = ACTIONS(3949), - [anon_sym_0o] = ACTIONS(3949), - [anon_sym_0x] = ACTIONS(3949), - [sym_val_date] = ACTIONS(3949), - [anon_sym_DQUOTE] = ACTIONS(3949), - [sym__str_single_quotes] = ACTIONS(3949), - [sym__str_back_ticks] = ACTIONS(3949), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3949), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3949), - [anon_sym_CARET] = ACTIONS(3949), - [anon_sym_POUND] = ACTIONS(113), + [1591] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6296), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6013), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4530), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5534), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1591), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(4785), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4787), + [anon_sym_DOT_DOT_LT] = ACTIONS(4787), + [anon_sym_null] = ACTIONS(3900), + [anon_sym_true] = ACTIONS(3902), + [anon_sym_false] = ACTIONS(3902), + [aux_sym__val_number_decimal_token1] = ACTIONS(3904), + [aux_sym__val_number_decimal_token2] = ACTIONS(3906), + [anon_sym_DOT2] = ACTIONS(4789), + [aux_sym__val_number_decimal_token3] = ACTIONS(3910), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(3912), + [aux_sym__val_number_token5] = ACTIONS(3912), + [aux_sym__val_number_token6] = ACTIONS(3912), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(3914), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), + [anon_sym_POUND] = ACTIONS(3), }, - [1379] = { - [sym_comment] = STATE(1379), - [ts_builtin_sym_end] = ACTIONS(1119), - [anon_sym_export] = ACTIONS(1117), - [anon_sym_alias] = ACTIONS(1117), - [anon_sym_let] = ACTIONS(1117), - [anon_sym_let_DASHenv] = ACTIONS(1117), - [anon_sym_mut] = ACTIONS(1117), - [anon_sym_const] = ACTIONS(1117), - [anon_sym_SEMI] = ACTIONS(1117), - [sym_cmd_identifier] = ACTIONS(1117), - [anon_sym_LF] = ACTIONS(1119), - [anon_sym_def] = ACTIONS(1117), - [anon_sym_export_DASHenv] = ACTIONS(1117), - [anon_sym_extern] = ACTIONS(1117), - [anon_sym_module] = ACTIONS(1117), - [anon_sym_use] = ACTIONS(1117), - [anon_sym_LBRACK] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1117), - [anon_sym_DOLLAR] = ACTIONS(1117), - [anon_sym_error] = ACTIONS(1117), - [anon_sym_DASH_DASH] = ACTIONS(1117), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_break] = ACTIONS(1117), - [anon_sym_continue] = ACTIONS(1117), - [anon_sym_for] = ACTIONS(1117), - [anon_sym_loop] = ACTIONS(1117), - [anon_sym_while] = ACTIONS(1117), - [anon_sym_do] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1117), - [anon_sym_LBRACE] = ACTIONS(1117), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_try] = ACTIONS(1117), - [anon_sym_return] = ACTIONS(1117), - [anon_sym_source] = ACTIONS(1117), - [anon_sym_source_DASHenv] = ACTIONS(1117), - [anon_sym_register] = ACTIONS(1117), - [anon_sym_hide] = ACTIONS(1117), - [anon_sym_hide_DASHenv] = ACTIONS(1117), - [anon_sym_overlay] = ACTIONS(1117), - [anon_sym_as] = ACTIONS(1117), - [anon_sym_where] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1117), - [anon_sym_DOT_DOT2] = ACTIONS(1117), - [anon_sym_DOT] = ACTIONS(1117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1117), - [anon_sym_DOT_DOT_LT] = ACTIONS(1117), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1119), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1119), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_true] = ACTIONS(1117), - [anon_sym_false] = ACTIONS(1117), - [aux_sym__val_number_decimal_token1] = ACTIONS(1117), - [aux_sym__val_number_decimal_token2] = ACTIONS(1117), - [anon_sym_DOT2] = ACTIONS(1117), - [aux_sym__val_number_decimal_token3] = ACTIONS(1117), - [aux_sym__val_number_token1] = ACTIONS(1117), - [aux_sym__val_number_token2] = ACTIONS(1117), - [aux_sym__val_number_token3] = ACTIONS(1117), - [aux_sym__val_number_token4] = ACTIONS(1117), - [aux_sym__val_number_token5] = ACTIONS(1117), - [aux_sym__val_number_token6] = ACTIONS(1117), - [anon_sym_0b] = ACTIONS(1117), - [anon_sym_0o] = ACTIONS(1117), - [anon_sym_0x] = ACTIONS(1117), - [sym_val_date] = ACTIONS(1117), - [anon_sym_DQUOTE] = ACTIONS(1117), - [sym__str_single_quotes] = ACTIONS(1117), - [sym__str_back_ticks] = ACTIONS(1117), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1117), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1117), - [anon_sym_CARET] = ACTIONS(1117), - [anon_sym_POUND] = ACTIONS(113), + [1592] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6297), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6013), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4530), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5863), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1592), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(4785), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4787), + [anon_sym_DOT_DOT_LT] = ACTIONS(4787), + [anon_sym_null] = ACTIONS(3900), + [anon_sym_true] = ACTIONS(3902), + [anon_sym_false] = ACTIONS(3902), + [aux_sym__val_number_decimal_token1] = ACTIONS(3904), + [aux_sym__val_number_decimal_token2] = ACTIONS(3906), + [anon_sym_DOT2] = ACTIONS(4789), + [aux_sym__val_number_decimal_token3] = ACTIONS(3910), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(3912), + [aux_sym__val_number_token5] = ACTIONS(3912), + [aux_sym__val_number_token6] = ACTIONS(3912), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(3914), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), + [anon_sym_POUND] = ACTIONS(3), }, - [1380] = { - [sym_cell_path] = STATE(1888), - [sym_path] = STATE(1429), - [sym_comment] = STATE(1380), - [anon_sym_LBRACK] = ACTIONS(1203), - [anon_sym_COMMA] = ACTIONS(1203), - [anon_sym_RBRACK] = ACTIONS(1203), - [anon_sym_LPAREN] = ACTIONS(1203), - [anon_sym_DOLLAR] = ACTIONS(1203), - [anon_sym_GT] = ACTIONS(1203), - [anon_sym_DASH_DASH] = ACTIONS(1203), - [anon_sym_DASH] = ACTIONS(1203), - [anon_sym_in] = ACTIONS(1203), - [anon_sym_LBRACE] = ACTIONS(1203), - [anon_sym_DOT_DOT] = ACTIONS(1203), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_STAR_STAR] = ACTIONS(1203), - [anon_sym_PLUS_PLUS] = ACTIONS(1203), - [anon_sym_SLASH] = ACTIONS(1203), - [anon_sym_mod] = ACTIONS(1203), - [anon_sym_SLASH_SLASH] = ACTIONS(1203), - [anon_sym_PLUS] = ACTIONS(1203), - [anon_sym_bit_DASHshl] = ACTIONS(1203), - [anon_sym_bit_DASHshr] = ACTIONS(1203), - [anon_sym_EQ_EQ] = ACTIONS(1203), - [anon_sym_BANG_EQ] = ACTIONS(1203), - [anon_sym_LT2] = ACTIONS(1203), - [anon_sym_LT_EQ] = ACTIONS(1203), - [anon_sym_GT_EQ] = ACTIONS(1203), - [anon_sym_not_DASHin] = ACTIONS(1203), - [anon_sym_starts_DASHwith] = ACTIONS(1203), - [anon_sym_ends_DASHwith] = ACTIONS(1203), - [anon_sym_EQ_TILDE] = ACTIONS(1203), - [anon_sym_BANG_TILDE] = ACTIONS(1203), - [anon_sym_bit_DASHand] = ACTIONS(1203), - [anon_sym_bit_DASHxor] = ACTIONS(1203), - [anon_sym_bit_DASHor] = ACTIONS(1203), - [anon_sym_and] = ACTIONS(1203), - [anon_sym_xor] = ACTIONS(1203), - [anon_sym_or] = ACTIONS(1203), - [anon_sym_DOT] = ACTIONS(3858), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1203), - [anon_sym_DOT_DOT_LT] = ACTIONS(1203), - [anon_sym_null] = ACTIONS(1203), - [anon_sym_true] = ACTIONS(1203), - [anon_sym_false] = ACTIONS(1203), - [aux_sym__val_number_decimal_token1] = ACTIONS(1203), - [aux_sym__val_number_decimal_token2] = ACTIONS(1203), - [anon_sym_DOT2] = ACTIONS(1203), - [aux_sym__val_number_decimal_token3] = ACTIONS(1203), - [aux_sym__val_number_token1] = ACTIONS(1203), - [aux_sym__val_number_token2] = ACTIONS(1203), - [aux_sym__val_number_token3] = ACTIONS(1203), - [aux_sym__val_number_token4] = ACTIONS(1203), - [aux_sym__val_number_token5] = ACTIONS(1203), - [aux_sym__val_number_token6] = ACTIONS(1203), - [anon_sym_0b] = ACTIONS(1203), - [anon_sym_0o] = ACTIONS(1203), - [anon_sym_0x] = ACTIONS(1203), - [sym_val_date] = ACTIONS(1203), - [anon_sym_DQUOTE] = ACTIONS(1203), - [sym__str_single_quotes] = ACTIONS(1203), - [sym__str_back_ticks] = ACTIONS(1203), - [sym__entry_separator] = ACTIONS(1205), - [anon_sym_err_GT] = ACTIONS(1203), - [anon_sym_out_GT] = ACTIONS(1203), - [anon_sym_e_GT] = ACTIONS(1203), - [anon_sym_o_GT] = ACTIONS(1203), - [anon_sym_err_PLUSout_GT] = ACTIONS(1203), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1203), - [anon_sym_o_PLUSe_GT] = ACTIONS(1203), - [anon_sym_e_PLUSo_GT] = ACTIONS(1203), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1203), - [anon_sym_POUND] = ACTIONS(113), + [1593] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6298), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6013), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4530), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5572), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1593), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(4785), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4787), + [anon_sym_DOT_DOT_LT] = ACTIONS(4787), + [anon_sym_null] = ACTIONS(3900), + [anon_sym_true] = ACTIONS(3902), + [anon_sym_false] = ACTIONS(3902), + [aux_sym__val_number_decimal_token1] = ACTIONS(3904), + [aux_sym__val_number_decimal_token2] = ACTIONS(3906), + [anon_sym_DOT2] = ACTIONS(4789), + [aux_sym__val_number_decimal_token3] = ACTIONS(3910), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(3912), + [aux_sym__val_number_token5] = ACTIONS(3912), + [aux_sym__val_number_token6] = ACTIONS(3912), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(3914), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), + [anon_sym_POUND] = ACTIONS(3), }, - [1381] = { - [sym_path] = STATE(1662), - [sym_comment] = STATE(1381), - [aux_sym_cell_path_repeat1] = STATE(1381), - [anon_sym_export] = ACTIONS(999), - [anon_sym_alias] = ACTIONS(999), - [anon_sym_let] = ACTIONS(999), - [anon_sym_let_DASHenv] = ACTIONS(999), - [anon_sym_mut] = ACTIONS(999), - [anon_sym_const] = ACTIONS(999), - [anon_sym_SEMI] = ACTIONS(999), - [sym_cmd_identifier] = ACTIONS(999), - [anon_sym_LF] = ACTIONS(1001), - [anon_sym_def] = ACTIONS(999), - [anon_sym_export_DASHenv] = ACTIONS(999), - [anon_sym_extern] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_use] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_RPAREN] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_error] = ACTIONS(999), - [anon_sym_DASH_DASH] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_break] = ACTIONS(999), - [anon_sym_continue] = ACTIONS(999), - [anon_sym_for] = ACTIONS(999), - [anon_sym_loop] = ACTIONS(999), - [anon_sym_while] = ACTIONS(999), - [anon_sym_do] = ACTIONS(999), - [anon_sym_if] = ACTIONS(999), - [anon_sym_match] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(999), - [anon_sym_RBRACE] = ACTIONS(999), - [anon_sym_DOT_DOT] = ACTIONS(999), - [anon_sym_try] = ACTIONS(999), - [anon_sym_return] = ACTIONS(999), - [anon_sym_source] = ACTIONS(999), - [anon_sym_source_DASHenv] = ACTIONS(999), - [anon_sym_register] = ACTIONS(999), - [anon_sym_hide] = ACTIONS(999), - [anon_sym_hide_DASHenv] = ACTIONS(999), - [anon_sym_overlay] = ACTIONS(999), - [anon_sym_as] = ACTIONS(999), - [anon_sym_where] = ACTIONS(999), - [anon_sym_not] = ACTIONS(999), - [anon_sym_DOT] = ACTIONS(3957), - [anon_sym_DOT_DOT_EQ] = ACTIONS(999), - [anon_sym_DOT_DOT_LT] = ACTIONS(999), - [anon_sym_null] = ACTIONS(999), - [anon_sym_true] = ACTIONS(999), - [anon_sym_false] = ACTIONS(999), - [aux_sym__val_number_decimal_token1] = ACTIONS(999), - [aux_sym__val_number_decimal_token2] = ACTIONS(999), - [anon_sym_DOT2] = ACTIONS(999), - [aux_sym__val_number_decimal_token3] = ACTIONS(999), - [aux_sym__val_number_token1] = ACTIONS(999), - [aux_sym__val_number_token2] = ACTIONS(999), - [aux_sym__val_number_token3] = ACTIONS(999), - [aux_sym__val_number_token4] = ACTIONS(999), - [aux_sym__val_number_token5] = ACTIONS(999), - [aux_sym__val_number_token6] = ACTIONS(999), - [anon_sym_0b] = ACTIONS(999), - [anon_sym_0o] = ACTIONS(999), - [anon_sym_0x] = ACTIONS(999), - [sym_val_date] = ACTIONS(999), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym__str_single_quotes] = ACTIONS(999), - [sym__str_back_ticks] = ACTIONS(999), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(999), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(999), - [anon_sym_CARET] = ACTIONS(999), - [anon_sym_POUND] = ACTIONS(113), + [1594] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6299), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6013), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4530), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5599), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1594), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(4785), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4787), + [anon_sym_DOT_DOT_LT] = ACTIONS(4787), + [anon_sym_null] = ACTIONS(3900), + [anon_sym_true] = ACTIONS(3902), + [anon_sym_false] = ACTIONS(3902), + [aux_sym__val_number_decimal_token1] = ACTIONS(3904), + [aux_sym__val_number_decimal_token2] = ACTIONS(3906), + [anon_sym_DOT2] = ACTIONS(4789), + [aux_sym__val_number_decimal_token3] = ACTIONS(3910), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(3912), + [aux_sym__val_number_token5] = ACTIONS(3912), + [aux_sym__val_number_token6] = ACTIONS(3912), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(3914), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), + [anon_sym_POUND] = ACTIONS(3), }, - [1382] = { - [sym_comment] = STATE(1382), - [anon_sym_export] = ACTIONS(3960), - [anon_sym_alias] = ACTIONS(3960), - [anon_sym_let] = ACTIONS(3960), - [anon_sym_let_DASHenv] = ACTIONS(3960), - [anon_sym_mut] = ACTIONS(3960), - [anon_sym_const] = ACTIONS(3960), - [anon_sym_SEMI] = ACTIONS(3960), - [sym_cmd_identifier] = ACTIONS(3960), - [anon_sym_LF] = ACTIONS(3962), - [anon_sym_def] = ACTIONS(3960), - [anon_sym_export_DASHenv] = ACTIONS(3960), - [anon_sym_extern] = ACTIONS(3960), - [anon_sym_module] = ACTIONS(3960), - [anon_sym_use] = ACTIONS(3960), - [anon_sym_LBRACK] = ACTIONS(3960), - [anon_sym_LPAREN] = ACTIONS(3960), - [anon_sym_RPAREN] = ACTIONS(3960), - [anon_sym_DOLLAR] = ACTIONS(3960), - [anon_sym_error] = ACTIONS(3960), - [anon_sym_DASH_DASH] = ACTIONS(3960), - [anon_sym_DASH] = ACTIONS(3960), - [anon_sym_break] = ACTIONS(3960), - [anon_sym_continue] = ACTIONS(3960), - [anon_sym_for] = ACTIONS(3960), - [anon_sym_loop] = ACTIONS(3960), - [anon_sym_while] = ACTIONS(3960), - [anon_sym_do] = ACTIONS(3960), - [anon_sym_if] = ACTIONS(3960), - [anon_sym_match] = ACTIONS(3960), - [anon_sym_LBRACE] = ACTIONS(3960), - [anon_sym_RBRACE] = ACTIONS(3960), - [anon_sym_DOT_DOT] = ACTIONS(3960), - [anon_sym_try] = ACTIONS(3960), - [anon_sym_return] = ACTIONS(3960), - [anon_sym_source] = ACTIONS(3960), - [anon_sym_source_DASHenv] = ACTIONS(3960), - [anon_sym_register] = ACTIONS(3960), - [anon_sym_hide] = ACTIONS(3960), - [anon_sym_hide_DASHenv] = ACTIONS(3960), - [anon_sym_overlay] = ACTIONS(3960), - [anon_sym_as] = ACTIONS(3960), - [anon_sym_where] = ACTIONS(3960), - [anon_sym_not] = ACTIONS(3960), - [anon_sym_DOT_DOT2] = ACTIONS(3960), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3960), - [anon_sym_DOT_DOT_LT] = ACTIONS(3960), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3962), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3962), - [anon_sym_null] = ACTIONS(3960), - [anon_sym_true] = ACTIONS(3960), - [anon_sym_false] = ACTIONS(3960), - [aux_sym__val_number_decimal_token1] = ACTIONS(3960), - [aux_sym__val_number_decimal_token2] = ACTIONS(3960), - [anon_sym_DOT2] = ACTIONS(3960), - [aux_sym__val_number_decimal_token3] = ACTIONS(3960), - [aux_sym__val_number_token1] = ACTIONS(3960), - [aux_sym__val_number_token2] = ACTIONS(3960), - [aux_sym__val_number_token3] = ACTIONS(3960), - [aux_sym__val_number_token4] = ACTIONS(3960), - [aux_sym__val_number_token5] = ACTIONS(3960), - [aux_sym__val_number_token6] = ACTIONS(3960), - [anon_sym_0b] = ACTIONS(3960), - [anon_sym_0o] = ACTIONS(3960), - [anon_sym_0x] = ACTIONS(3960), - [sym_val_date] = ACTIONS(3960), - [anon_sym_DQUOTE] = ACTIONS(3960), - [sym__str_single_quotes] = ACTIONS(3960), - [sym__str_back_ticks] = ACTIONS(3960), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3960), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3960), - [anon_sym_CARET] = ACTIONS(3960), - [anon_sym_POUND] = ACTIONS(113), + [1595] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6313), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6013), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4530), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5601), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1595), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(4785), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4787), + [anon_sym_DOT_DOT_LT] = ACTIONS(4787), + [anon_sym_null] = ACTIONS(3900), + [anon_sym_true] = ACTIONS(3902), + [anon_sym_false] = ACTIONS(3902), + [aux_sym__val_number_decimal_token1] = ACTIONS(3904), + [aux_sym__val_number_decimal_token2] = ACTIONS(3906), + [anon_sym_DOT2] = ACTIONS(4789), + [aux_sym__val_number_decimal_token3] = ACTIONS(3910), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(3912), + [aux_sym__val_number_token5] = ACTIONS(3912), + [aux_sym__val_number_token6] = ACTIONS(3912), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(3914), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), + [anon_sym_POUND] = ACTIONS(3), }, - [1383] = { - [sym_comment] = STATE(1383), - [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), - [anon_sym_SEMI] = ACTIONS(2437), - [sym_cmd_identifier] = ACTIONS(2437), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_RPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_DASH_DASH] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_RBRACE] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_as] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_not] = ACTIONS(2437), - [anon_sym_LPAREN2] = ACTIONS(2439), - [anon_sym_DOT] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [anon_sym_DOT2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2437), - [anon_sym_0o] = ACTIONS(2437), - [anon_sym_0x] = ACTIONS(2437), - [sym_val_date] = 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_CARET] = ACTIONS(2437), - [aux_sym_unquoted_token2] = ACTIONS(2437), + [1596] = { + [sym_comment] = STATE(1596), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_COMMA] = ACTIONS(1261), + [anon_sym_RBRACK] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_DOLLAR] = ACTIONS(1261), + [anon_sym_GT] = ACTIONS(1261), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1261), + [anon_sym_in] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_DOT_DOT] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_STAR_STAR] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_SLASH] = ACTIONS(1261), + [anon_sym_mod] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(1261), + [anon_sym_PLUS] = ACTIONS(1261), + [anon_sym_bit_DASHshl] = ACTIONS(1261), + [anon_sym_bit_DASHshr] = ACTIONS(1261), + [anon_sym_EQ_EQ] = ACTIONS(1261), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_LT2] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1261), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_not_DASHin] = ACTIONS(1261), + [anon_sym_starts_DASHwith] = ACTIONS(1261), + [anon_sym_ends_DASHwith] = ACTIONS(1261), + [anon_sym_EQ_TILDE] = ACTIONS(1261), + [anon_sym_BANG_TILDE] = ACTIONS(1261), + [anon_sym_bit_DASHand] = ACTIONS(1261), + [anon_sym_bit_DASHxor] = ACTIONS(1261), + [anon_sym_bit_DASHor] = ACTIONS(1261), + [anon_sym_and] = ACTIONS(1261), + [anon_sym_xor] = ACTIONS(1261), + [anon_sym_or] = ACTIONS(1261), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1261), + [anon_sym_DOT_DOT_LT] = ACTIONS(1261), + [anon_sym_null] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [aux_sym__val_number_decimal_token1] = ACTIONS(1261), + [aux_sym__val_number_decimal_token2] = ACTIONS(1261), + [anon_sym_DOT2] = ACTIONS(1261), + [aux_sym__val_number_decimal_token3] = ACTIONS(1261), + [aux_sym__val_number_token1] = ACTIONS(1261), + [aux_sym__val_number_token2] = ACTIONS(1261), + [aux_sym__val_number_token3] = ACTIONS(1261), + [aux_sym__val_number_token4] = ACTIONS(1261), + [aux_sym__val_number_token5] = ACTIONS(1261), + [aux_sym__val_number_token6] = ACTIONS(1261), + [anon_sym_0b] = ACTIONS(1261), + [anon_sym_0o] = ACTIONS(1261), + [anon_sym_0x] = ACTIONS(1261), + [sym_val_date] = ACTIONS(1261), + [anon_sym_DQUOTE] = ACTIONS(1261), + [sym__str_single_quotes] = ACTIONS(1261), + [sym__str_back_ticks] = ACTIONS(1261), + [sym__entry_separator] = ACTIONS(1263), + [anon_sym_err_GT] = ACTIONS(1261), + [anon_sym_out_GT] = ACTIONS(1261), + [anon_sym_e_GT] = ACTIONS(1261), + [anon_sym_o_GT] = ACTIONS(1261), + [anon_sym_err_PLUSout_GT] = ACTIONS(1261), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1261), + [anon_sym_o_PLUSe_GT] = ACTIONS(1261), + [anon_sym_e_PLUSo_GT] = ACTIONS(1261), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1261), [anon_sym_POUND] = ACTIONS(113), }, - [1384] = { - [sym_cell_path] = STATE(1875), - [sym_path] = STATE(1429), - [sym_comment] = STATE(1384), - [anon_sym_LBRACK] = ACTIONS(1154), - [anon_sym_COMMA] = ACTIONS(1154), - [anon_sym_RBRACK] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_DOLLAR] = ACTIONS(1154), - [anon_sym_GT] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [anon_sym_DASH] = ACTIONS(1154), - [anon_sym_in] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(1154), - [anon_sym_DOT_DOT] = ACTIONS(1154), - [anon_sym_STAR] = ACTIONS(1154), - [anon_sym_STAR_STAR] = ACTIONS(1154), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_SLASH] = ACTIONS(1154), - [anon_sym_mod] = ACTIONS(1154), - [anon_sym_SLASH_SLASH] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1154), - [anon_sym_bit_DASHshl] = ACTIONS(1154), - [anon_sym_bit_DASHshr] = ACTIONS(1154), - [anon_sym_EQ_EQ] = ACTIONS(1154), - [anon_sym_BANG_EQ] = ACTIONS(1154), - [anon_sym_LT2] = ACTIONS(1154), - [anon_sym_LT_EQ] = ACTIONS(1154), - [anon_sym_GT_EQ] = ACTIONS(1154), - [anon_sym_not_DASHin] = ACTIONS(1154), - [anon_sym_starts_DASHwith] = ACTIONS(1154), - [anon_sym_ends_DASHwith] = ACTIONS(1154), - [anon_sym_EQ_TILDE] = ACTIONS(1154), - [anon_sym_BANG_TILDE] = ACTIONS(1154), - [anon_sym_bit_DASHand] = ACTIONS(1154), - [anon_sym_bit_DASHxor] = ACTIONS(1154), - [anon_sym_bit_DASHor] = ACTIONS(1154), - [anon_sym_and] = ACTIONS(1154), - [anon_sym_xor] = ACTIONS(1154), - [anon_sym_or] = ACTIONS(1154), - [anon_sym_DOT] = ACTIONS(3858), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1154), - [anon_sym_DOT_DOT_LT] = ACTIONS(1154), - [anon_sym_null] = ACTIONS(1154), - [anon_sym_true] = ACTIONS(1154), - [anon_sym_false] = ACTIONS(1154), - [aux_sym__val_number_decimal_token1] = ACTIONS(1154), - [aux_sym__val_number_decimal_token2] = ACTIONS(1154), - [anon_sym_DOT2] = ACTIONS(1154), - [aux_sym__val_number_decimal_token3] = ACTIONS(1154), - [aux_sym__val_number_token1] = ACTIONS(1154), - [aux_sym__val_number_token2] = ACTIONS(1154), - [aux_sym__val_number_token3] = ACTIONS(1154), - [aux_sym__val_number_token4] = ACTIONS(1154), - [aux_sym__val_number_token5] = ACTIONS(1154), - [aux_sym__val_number_token6] = ACTIONS(1154), - [anon_sym_0b] = ACTIONS(1154), - [anon_sym_0o] = ACTIONS(1154), - [anon_sym_0x] = ACTIONS(1154), - [sym_val_date] = ACTIONS(1154), - [anon_sym_DQUOTE] = ACTIONS(1154), - [sym__str_single_quotes] = ACTIONS(1154), - [sym__str_back_ticks] = ACTIONS(1154), - [sym__entry_separator] = ACTIONS(1156), - [anon_sym_err_GT] = ACTIONS(1154), - [anon_sym_out_GT] = ACTIONS(1154), - [anon_sym_e_GT] = ACTIONS(1154), - [anon_sym_o_GT] = ACTIONS(1154), - [anon_sym_err_PLUSout_GT] = ACTIONS(1154), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1154), - [anon_sym_o_PLUSe_GT] = ACTIONS(1154), - [anon_sym_e_PLUSo_GT] = ACTIONS(1154), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1154), + [1597] = { + [sym_comment] = STATE(1597), + [anon_sym_export] = ACTIONS(5019), + [anon_sym_alias] = ACTIONS(5019), + [anon_sym_let] = ACTIONS(5019), + [anon_sym_let_DASHenv] = ACTIONS(5019), + [anon_sym_mut] = ACTIONS(5019), + [anon_sym_const] = ACTIONS(5019), + [anon_sym_SEMI] = ACTIONS(5019), + [sym_cmd_identifier] = ACTIONS(5019), + [anon_sym_LF] = ACTIONS(5021), + [anon_sym_def] = ACTIONS(5019), + [anon_sym_export_DASHenv] = ACTIONS(5019), + [anon_sym_extern] = ACTIONS(5019), + [anon_sym_module] = ACTIONS(5019), + [anon_sym_use] = ACTIONS(5019), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_LPAREN] = ACTIONS(5019), + [anon_sym_RPAREN] = ACTIONS(5019), + [anon_sym_DOLLAR] = ACTIONS(5019), + [anon_sym_error] = ACTIONS(5019), + [anon_sym_DASH_DASH] = ACTIONS(5019), + [anon_sym_DASH] = ACTIONS(5019), + [anon_sym_break] = ACTIONS(5019), + [anon_sym_continue] = ACTIONS(5019), + [anon_sym_for] = ACTIONS(5019), + [anon_sym_loop] = ACTIONS(5019), + [anon_sym_while] = ACTIONS(5019), + [anon_sym_do] = ACTIONS(5019), + [anon_sym_if] = ACTIONS(5019), + [anon_sym_match] = ACTIONS(5019), + [anon_sym_LBRACE] = ACTIONS(5019), + [anon_sym_RBRACE] = ACTIONS(5019), + [anon_sym_DOT_DOT] = ACTIONS(5019), + [anon_sym_try] = ACTIONS(5019), + [anon_sym_return] = ACTIONS(5019), + [anon_sym_source] = ACTIONS(5019), + [anon_sym_source_DASHenv] = ACTIONS(5019), + [anon_sym_register] = ACTIONS(5019), + [anon_sym_hide] = ACTIONS(5019), + [anon_sym_hide_DASHenv] = ACTIONS(5019), + [anon_sym_overlay] = ACTIONS(5019), + [anon_sym_as] = ACTIONS(5019), + [anon_sym_where] = ACTIONS(5019), + [anon_sym_not] = ACTIONS(5019), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5019), + [anon_sym_DOT_DOT_LT] = ACTIONS(5019), + [anon_sym_null] = ACTIONS(5019), + [anon_sym_true] = ACTIONS(5019), + [anon_sym_false] = ACTIONS(5019), + [aux_sym__val_number_decimal_token1] = ACTIONS(5019), + [aux_sym__val_number_decimal_token2] = ACTIONS(5019), + [anon_sym_DOT2] = ACTIONS(5019), + [aux_sym__val_number_decimal_token3] = ACTIONS(5019), + [aux_sym__val_number_token1] = ACTIONS(5019), + [aux_sym__val_number_token2] = ACTIONS(5019), + [aux_sym__val_number_token3] = ACTIONS(5019), + [aux_sym__val_number_token4] = ACTIONS(5019), + [aux_sym__val_number_token5] = ACTIONS(5019), + [aux_sym__val_number_token6] = ACTIONS(5019), + [anon_sym_0b] = ACTIONS(5019), + [anon_sym_0o] = ACTIONS(5019), + [anon_sym_0x] = ACTIONS(5019), + [sym_val_date] = ACTIONS(5019), + [anon_sym_DQUOTE] = ACTIONS(5019), + [sym__str_single_quotes] = ACTIONS(5019), + [sym__str_back_ticks] = ACTIONS(5019), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5019), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5019), + [anon_sym_CARET] = ACTIONS(5019), [anon_sym_POUND] = ACTIONS(113), }, - [1385] = { - [sym_comment] = STATE(1385), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_COMMA] = ACTIONS(1158), - [anon_sym_RBRACK] = ACTIONS(1158), - [anon_sym_LPAREN] = ACTIONS(1158), - [anon_sym_DOLLAR] = ACTIONS(1158), - [anon_sym_GT] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_in] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1158), - [anon_sym_DOT_DOT] = ACTIONS(1158), - [anon_sym_STAR] = ACTIONS(1158), - [anon_sym_STAR_STAR] = ACTIONS(1158), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_SLASH] = ACTIONS(1158), - [anon_sym_mod] = ACTIONS(1158), - [anon_sym_SLASH_SLASH] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1158), - [anon_sym_bit_DASHshl] = ACTIONS(1158), - [anon_sym_bit_DASHshr] = ACTIONS(1158), - [anon_sym_EQ_EQ] = ACTIONS(1158), - [anon_sym_BANG_EQ] = ACTIONS(1158), - [anon_sym_LT2] = ACTIONS(1158), - [anon_sym_LT_EQ] = ACTIONS(1158), - [anon_sym_GT_EQ] = ACTIONS(1158), - [anon_sym_not_DASHin] = ACTIONS(1158), - [anon_sym_starts_DASHwith] = ACTIONS(1158), - [anon_sym_ends_DASHwith] = ACTIONS(1158), - [anon_sym_EQ_TILDE] = ACTIONS(1158), - [anon_sym_BANG_TILDE] = ACTIONS(1158), - [anon_sym_bit_DASHand] = ACTIONS(1158), - [anon_sym_bit_DASHxor] = ACTIONS(1158), - [anon_sym_bit_DASHor] = ACTIONS(1158), - [anon_sym_and] = ACTIONS(1158), - [anon_sym_xor] = ACTIONS(1158), - [anon_sym_or] = ACTIONS(1158), - [anon_sym_DOT_DOT2] = ACTIONS(3841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1158), - [anon_sym_DOT_DOT_LT] = ACTIONS(1158), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3843), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3843), - [anon_sym_null] = ACTIONS(1158), - [anon_sym_true] = ACTIONS(1158), - [anon_sym_false] = ACTIONS(1158), - [aux_sym__val_number_decimal_token1] = ACTIONS(1158), - [aux_sym__val_number_decimal_token2] = ACTIONS(1158), - [anon_sym_DOT2] = ACTIONS(1158), - [aux_sym__val_number_decimal_token3] = ACTIONS(1158), - [aux_sym__val_number_token1] = ACTIONS(1158), - [aux_sym__val_number_token2] = ACTIONS(1158), - [aux_sym__val_number_token3] = ACTIONS(1158), - [aux_sym__val_number_token4] = ACTIONS(1158), - [aux_sym__val_number_token5] = ACTIONS(1158), - [aux_sym__val_number_token6] = ACTIONS(1158), - [anon_sym_0b] = ACTIONS(1158), - [anon_sym_0o] = ACTIONS(1158), - [anon_sym_0x] = ACTIONS(1158), - [sym_val_date] = ACTIONS(1158), - [anon_sym_DQUOTE] = ACTIONS(1158), - [sym__str_single_quotes] = ACTIONS(1158), - [sym__str_back_ticks] = ACTIONS(1158), - [sym__entry_separator] = ACTIONS(1160), - [anon_sym_err_GT] = ACTIONS(1158), - [anon_sym_out_GT] = ACTIONS(1158), - [anon_sym_e_GT] = ACTIONS(1158), - [anon_sym_o_GT] = ACTIONS(1158), - [anon_sym_err_PLUSout_GT] = ACTIONS(1158), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1158), - [anon_sym_o_PLUSe_GT] = ACTIONS(1158), - [anon_sym_e_PLUSo_GT] = ACTIONS(1158), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1158), + [1598] = { + [sym_comment] = STATE(1598), + [anon_sym_export] = ACTIONS(5023), + [anon_sym_alias] = ACTIONS(5023), + [anon_sym_let] = ACTIONS(5023), + [anon_sym_let_DASHenv] = ACTIONS(5023), + [anon_sym_mut] = ACTIONS(5023), + [anon_sym_const] = ACTIONS(5023), + [anon_sym_SEMI] = ACTIONS(5023), + [sym_cmd_identifier] = ACTIONS(5023), + [anon_sym_LF] = ACTIONS(5025), + [anon_sym_def] = ACTIONS(5023), + [anon_sym_export_DASHenv] = ACTIONS(5023), + [anon_sym_extern] = ACTIONS(5023), + [anon_sym_module] = ACTIONS(5023), + [anon_sym_use] = ACTIONS(5023), + [anon_sym_LBRACK] = ACTIONS(5023), + [anon_sym_LPAREN] = ACTIONS(5023), + [anon_sym_RPAREN] = ACTIONS(5023), + [anon_sym_DOLLAR] = ACTIONS(5023), + [anon_sym_error] = ACTIONS(5023), + [anon_sym_DASH_DASH] = ACTIONS(5023), + [anon_sym_DASH] = ACTIONS(5023), + [anon_sym_break] = ACTIONS(5023), + [anon_sym_continue] = ACTIONS(5023), + [anon_sym_for] = ACTIONS(5023), + [anon_sym_loop] = ACTIONS(5023), + [anon_sym_while] = ACTIONS(5023), + [anon_sym_do] = ACTIONS(5023), + [anon_sym_if] = ACTIONS(5023), + [anon_sym_match] = ACTIONS(5023), + [anon_sym_LBRACE] = ACTIONS(5023), + [anon_sym_RBRACE] = ACTIONS(5023), + [anon_sym_DOT_DOT] = ACTIONS(5023), + [anon_sym_try] = ACTIONS(5023), + [anon_sym_return] = ACTIONS(5023), + [anon_sym_source] = ACTIONS(5023), + [anon_sym_source_DASHenv] = ACTIONS(5023), + [anon_sym_register] = ACTIONS(5023), + [anon_sym_hide] = ACTIONS(5023), + [anon_sym_hide_DASHenv] = ACTIONS(5023), + [anon_sym_overlay] = ACTIONS(5023), + [anon_sym_as] = ACTIONS(5023), + [anon_sym_where] = ACTIONS(5023), + [anon_sym_not] = ACTIONS(5023), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5023), + [anon_sym_DOT_DOT_LT] = ACTIONS(5023), + [anon_sym_null] = ACTIONS(5023), + [anon_sym_true] = ACTIONS(5023), + [anon_sym_false] = ACTIONS(5023), + [aux_sym__val_number_decimal_token1] = ACTIONS(5023), + [aux_sym__val_number_decimal_token2] = ACTIONS(5023), + [anon_sym_DOT2] = ACTIONS(5023), + [aux_sym__val_number_decimal_token3] = ACTIONS(5023), + [aux_sym__val_number_token1] = ACTIONS(5023), + [aux_sym__val_number_token2] = ACTIONS(5023), + [aux_sym__val_number_token3] = ACTIONS(5023), + [aux_sym__val_number_token4] = ACTIONS(5023), + [aux_sym__val_number_token5] = ACTIONS(5023), + [aux_sym__val_number_token6] = ACTIONS(5023), + [anon_sym_0b] = ACTIONS(5023), + [anon_sym_0o] = ACTIONS(5023), + [anon_sym_0x] = ACTIONS(5023), + [sym_val_date] = ACTIONS(5023), + [anon_sym_DQUOTE] = ACTIONS(5023), + [sym__str_single_quotes] = ACTIONS(5023), + [sym__str_back_ticks] = ACTIONS(5023), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5023), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5023), + [anon_sym_CARET] = ACTIONS(5023), [anon_sym_POUND] = ACTIONS(113), }, - [1386] = { - [sym_comment] = STATE(1386), - [anon_sym_export] = ACTIONS(3964), - [anon_sym_alias] = ACTIONS(3964), - [anon_sym_let] = ACTIONS(3964), - [anon_sym_let_DASHenv] = ACTIONS(3964), - [anon_sym_mut] = ACTIONS(3964), - [anon_sym_const] = ACTIONS(3964), - [anon_sym_SEMI] = ACTIONS(3964), - [sym_cmd_identifier] = ACTIONS(3964), - [anon_sym_LF] = ACTIONS(3966), - [anon_sym_def] = ACTIONS(3964), - [anon_sym_export_DASHenv] = ACTIONS(3964), - [anon_sym_extern] = ACTIONS(3964), - [anon_sym_module] = ACTIONS(3964), - [anon_sym_use] = ACTIONS(3964), - [anon_sym_LBRACK] = ACTIONS(3964), - [anon_sym_LPAREN] = ACTIONS(3964), - [anon_sym_RPAREN] = ACTIONS(3964), - [anon_sym_DOLLAR] = ACTIONS(3964), - [anon_sym_error] = ACTIONS(3964), - [anon_sym_DASH_DASH] = ACTIONS(3964), - [anon_sym_DASH] = ACTIONS(3964), - [anon_sym_break] = ACTIONS(3964), - [anon_sym_continue] = ACTIONS(3964), - [anon_sym_for] = ACTIONS(3964), - [anon_sym_loop] = ACTIONS(3964), - [anon_sym_while] = ACTIONS(3964), - [anon_sym_do] = ACTIONS(3964), - [anon_sym_if] = ACTIONS(3964), - [anon_sym_match] = ACTIONS(3964), - [anon_sym_LBRACE] = ACTIONS(3964), - [anon_sym_RBRACE] = ACTIONS(3964), - [anon_sym_DOT_DOT] = ACTIONS(3964), - [anon_sym_try] = ACTIONS(3964), - [anon_sym_return] = ACTIONS(3964), - [anon_sym_source] = ACTIONS(3964), - [anon_sym_source_DASHenv] = ACTIONS(3964), - [anon_sym_register] = ACTIONS(3964), - [anon_sym_hide] = ACTIONS(3964), - [anon_sym_hide_DASHenv] = ACTIONS(3964), - [anon_sym_overlay] = ACTIONS(3964), - [anon_sym_as] = ACTIONS(3964), - [anon_sym_where] = ACTIONS(3964), - [anon_sym_not] = ACTIONS(3964), - [anon_sym_DOT_DOT2] = ACTIONS(3968), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3964), - [anon_sym_DOT_DOT_LT] = ACTIONS(3964), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3970), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3970), - [anon_sym_null] = ACTIONS(3964), - [anon_sym_true] = ACTIONS(3964), - [anon_sym_false] = ACTIONS(3964), - [aux_sym__val_number_decimal_token1] = ACTIONS(3964), - [aux_sym__val_number_decimal_token2] = ACTIONS(3964), - [anon_sym_DOT2] = ACTIONS(3964), - [aux_sym__val_number_decimal_token3] = ACTIONS(3964), - [aux_sym__val_number_token1] = ACTIONS(3964), - [aux_sym__val_number_token2] = ACTIONS(3964), - [aux_sym__val_number_token3] = ACTIONS(3964), - [aux_sym__val_number_token4] = ACTIONS(3964), - [aux_sym__val_number_token5] = ACTIONS(3964), - [aux_sym__val_number_token6] = ACTIONS(3964), - [anon_sym_0b] = ACTIONS(3964), - [anon_sym_0o] = ACTIONS(3964), - [anon_sym_0x] = ACTIONS(3964), - [sym_val_date] = ACTIONS(3964), - [anon_sym_DQUOTE] = ACTIONS(3964), - [sym__str_single_quotes] = ACTIONS(3964), - [sym__str_back_ticks] = ACTIONS(3964), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3964), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3964), - [anon_sym_CARET] = ACTIONS(3964), + [1599] = { + [sym_comment] = STATE(1599), + [anon_sym_export] = ACTIONS(5027), + [anon_sym_alias] = ACTIONS(5027), + [anon_sym_let] = ACTIONS(5027), + [anon_sym_let_DASHenv] = ACTIONS(5027), + [anon_sym_mut] = ACTIONS(5027), + [anon_sym_const] = ACTIONS(5027), + [anon_sym_SEMI] = ACTIONS(5027), + [sym_cmd_identifier] = ACTIONS(5027), + [anon_sym_LF] = ACTIONS(5029), + [anon_sym_def] = ACTIONS(5027), + [anon_sym_export_DASHenv] = ACTIONS(5027), + [anon_sym_extern] = ACTIONS(5027), + [anon_sym_module] = ACTIONS(5027), + [anon_sym_use] = ACTIONS(5027), + [anon_sym_LBRACK] = ACTIONS(5027), + [anon_sym_LPAREN] = ACTIONS(5027), + [anon_sym_RPAREN] = ACTIONS(5027), + [anon_sym_DOLLAR] = ACTIONS(5027), + [anon_sym_error] = ACTIONS(5027), + [anon_sym_DASH_DASH] = ACTIONS(5027), + [anon_sym_DASH] = ACTIONS(5027), + [anon_sym_break] = ACTIONS(5027), + [anon_sym_continue] = ACTIONS(5027), + [anon_sym_for] = ACTIONS(5027), + [anon_sym_loop] = ACTIONS(5027), + [anon_sym_while] = ACTIONS(5027), + [anon_sym_do] = ACTIONS(5027), + [anon_sym_if] = ACTIONS(5027), + [anon_sym_match] = ACTIONS(5027), + [anon_sym_LBRACE] = ACTIONS(5027), + [anon_sym_RBRACE] = ACTIONS(5027), + [anon_sym_DOT_DOT] = ACTIONS(5027), + [anon_sym_try] = ACTIONS(5027), + [anon_sym_return] = ACTIONS(5027), + [anon_sym_source] = ACTIONS(5027), + [anon_sym_source_DASHenv] = ACTIONS(5027), + [anon_sym_register] = ACTIONS(5027), + [anon_sym_hide] = ACTIONS(5027), + [anon_sym_hide_DASHenv] = ACTIONS(5027), + [anon_sym_overlay] = ACTIONS(5027), + [anon_sym_as] = ACTIONS(5027), + [anon_sym_where] = ACTIONS(5027), + [anon_sym_not] = ACTIONS(5027), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5027), + [anon_sym_DOT_DOT_LT] = ACTIONS(5027), + [anon_sym_null] = ACTIONS(5027), + [anon_sym_true] = ACTIONS(5027), + [anon_sym_false] = ACTIONS(5027), + [aux_sym__val_number_decimal_token1] = ACTIONS(5027), + [aux_sym__val_number_decimal_token2] = ACTIONS(5027), + [anon_sym_DOT2] = ACTIONS(5027), + [aux_sym__val_number_decimal_token3] = ACTIONS(5027), + [aux_sym__val_number_token1] = ACTIONS(5027), + [aux_sym__val_number_token2] = ACTIONS(5027), + [aux_sym__val_number_token3] = ACTIONS(5027), + [aux_sym__val_number_token4] = ACTIONS(5027), + [aux_sym__val_number_token5] = ACTIONS(5027), + [aux_sym__val_number_token6] = ACTIONS(5027), + [anon_sym_0b] = ACTIONS(5027), + [anon_sym_0o] = ACTIONS(5027), + [anon_sym_0x] = ACTIONS(5027), + [sym_val_date] = ACTIONS(5027), + [anon_sym_DQUOTE] = ACTIONS(5027), + [sym__str_single_quotes] = ACTIONS(5027), + [sym__str_back_ticks] = ACTIONS(5027), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5027), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5027), + [anon_sym_CARET] = ACTIONS(5027), [anon_sym_POUND] = ACTIONS(113), }, - [1387] = { - [sym_comment] = STATE(1387), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_COMMA] = ACTIONS(1168), - [anon_sym_RBRACK] = ACTIONS(1168), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_DOLLAR] = ACTIONS(1168), - [anon_sym_GT] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1168), - [anon_sym_in] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1168), - [anon_sym_DOT_DOT] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_STAR_STAR] = ACTIONS(1168), - [anon_sym_PLUS_PLUS] = ACTIONS(1168), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_mod] = ACTIONS(1168), - [anon_sym_SLASH_SLASH] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(1168), - [anon_sym_bit_DASHshl] = ACTIONS(1168), - [anon_sym_bit_DASHshr] = ACTIONS(1168), - [anon_sym_EQ_EQ] = ACTIONS(1168), - [anon_sym_BANG_EQ] = ACTIONS(1168), - [anon_sym_LT2] = ACTIONS(1168), - [anon_sym_LT_EQ] = ACTIONS(1168), - [anon_sym_GT_EQ] = ACTIONS(1168), - [anon_sym_not_DASHin] = ACTIONS(1168), - [anon_sym_starts_DASHwith] = ACTIONS(1168), - [anon_sym_ends_DASHwith] = ACTIONS(1168), - [anon_sym_EQ_TILDE] = ACTIONS(1168), - [anon_sym_BANG_TILDE] = ACTIONS(1168), - [anon_sym_bit_DASHand] = ACTIONS(1168), - [anon_sym_bit_DASHxor] = ACTIONS(1168), - [anon_sym_bit_DASHor] = ACTIONS(1168), - [anon_sym_and] = ACTIONS(1168), - [anon_sym_xor] = ACTIONS(1168), - [anon_sym_or] = ACTIONS(1168), - [anon_sym_DOT_DOT2] = ACTIONS(1168), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1168), - [anon_sym_DOT_DOT_LT] = ACTIONS(1168), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1170), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1170), - [anon_sym_null] = ACTIONS(1168), - [anon_sym_true] = ACTIONS(1168), - [anon_sym_false] = ACTIONS(1168), - [aux_sym__val_number_decimal_token1] = ACTIONS(1168), - [aux_sym__val_number_decimal_token2] = ACTIONS(1168), - [anon_sym_DOT2] = ACTIONS(1168), - [aux_sym__val_number_decimal_token3] = ACTIONS(1168), - [aux_sym__val_number_token1] = ACTIONS(1168), - [aux_sym__val_number_token2] = ACTIONS(1168), - [aux_sym__val_number_token3] = ACTIONS(1168), - [aux_sym__val_number_token4] = ACTIONS(1168), - [aux_sym__val_number_token5] = ACTIONS(1168), - [aux_sym__val_number_token6] = ACTIONS(1168), - [anon_sym_0b] = ACTIONS(1168), - [anon_sym_0o] = ACTIONS(1168), - [anon_sym_0x] = ACTIONS(1168), - [sym_val_date] = ACTIONS(1168), - [anon_sym_DQUOTE] = ACTIONS(1168), - [sym__str_single_quotes] = ACTIONS(1168), - [sym__str_back_ticks] = ACTIONS(1168), - [sym__entry_separator] = ACTIONS(1170), - [anon_sym_err_GT] = ACTIONS(1168), - [anon_sym_out_GT] = ACTIONS(1168), - [anon_sym_e_GT] = ACTIONS(1168), - [anon_sym_o_GT] = ACTIONS(1168), - [anon_sym_err_PLUSout_GT] = ACTIONS(1168), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1168), - [anon_sym_o_PLUSe_GT] = ACTIONS(1168), - [anon_sym_e_PLUSo_GT] = ACTIONS(1168), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1168), + [1600] = { + [sym_comment] = STATE(1600), + [anon_sym_export] = ACTIONS(5031), + [anon_sym_alias] = ACTIONS(5031), + [anon_sym_let] = ACTIONS(5031), + [anon_sym_let_DASHenv] = ACTIONS(5031), + [anon_sym_mut] = ACTIONS(5031), + [anon_sym_const] = ACTIONS(5031), + [anon_sym_SEMI] = ACTIONS(5031), + [sym_cmd_identifier] = ACTIONS(5031), + [anon_sym_LF] = ACTIONS(5033), + [anon_sym_def] = ACTIONS(5031), + [anon_sym_export_DASHenv] = ACTIONS(5031), + [anon_sym_extern] = ACTIONS(5031), + [anon_sym_module] = ACTIONS(5031), + [anon_sym_use] = ACTIONS(5031), + [anon_sym_LBRACK] = ACTIONS(5031), + [anon_sym_LPAREN] = ACTIONS(5031), + [anon_sym_RPAREN] = ACTIONS(5031), + [anon_sym_DOLLAR] = ACTIONS(5031), + [anon_sym_error] = ACTIONS(5031), + [anon_sym_DASH_DASH] = ACTIONS(5031), + [anon_sym_DASH] = ACTIONS(5031), + [anon_sym_break] = ACTIONS(5031), + [anon_sym_continue] = ACTIONS(5031), + [anon_sym_for] = ACTIONS(5031), + [anon_sym_loop] = ACTIONS(5031), + [anon_sym_while] = ACTIONS(5031), + [anon_sym_do] = ACTIONS(5031), + [anon_sym_if] = ACTIONS(5031), + [anon_sym_match] = ACTIONS(5031), + [anon_sym_LBRACE] = ACTIONS(5031), + [anon_sym_RBRACE] = ACTIONS(5031), + [anon_sym_DOT_DOT] = ACTIONS(5031), + [anon_sym_try] = ACTIONS(5031), + [anon_sym_return] = ACTIONS(5031), + [anon_sym_source] = ACTIONS(5031), + [anon_sym_source_DASHenv] = ACTIONS(5031), + [anon_sym_register] = ACTIONS(5031), + [anon_sym_hide] = ACTIONS(5031), + [anon_sym_hide_DASHenv] = ACTIONS(5031), + [anon_sym_overlay] = ACTIONS(5031), + [anon_sym_as] = ACTIONS(5031), + [anon_sym_where] = ACTIONS(5031), + [anon_sym_not] = ACTIONS(5031), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5031), + [anon_sym_DOT_DOT_LT] = ACTIONS(5031), + [anon_sym_null] = ACTIONS(5031), + [anon_sym_true] = ACTIONS(5031), + [anon_sym_false] = ACTIONS(5031), + [aux_sym__val_number_decimal_token1] = ACTIONS(5031), + [aux_sym__val_number_decimal_token2] = ACTIONS(5031), + [anon_sym_DOT2] = ACTIONS(5031), + [aux_sym__val_number_decimal_token3] = ACTIONS(5031), + [aux_sym__val_number_token1] = ACTIONS(5031), + [aux_sym__val_number_token2] = ACTIONS(5031), + [aux_sym__val_number_token3] = ACTIONS(5031), + [aux_sym__val_number_token4] = ACTIONS(5031), + [aux_sym__val_number_token5] = ACTIONS(5031), + [aux_sym__val_number_token6] = ACTIONS(5031), + [anon_sym_0b] = ACTIONS(5031), + [anon_sym_0o] = ACTIONS(5031), + [anon_sym_0x] = ACTIONS(5031), + [sym_val_date] = ACTIONS(5031), + [anon_sym_DQUOTE] = ACTIONS(5031), + [sym__str_single_quotes] = ACTIONS(5031), + [sym__str_back_ticks] = ACTIONS(5031), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5031), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5031), + [anon_sym_CARET] = ACTIONS(5031), [anon_sym_POUND] = ACTIONS(113), }, - [1388] = { - [sym_cell_path] = STATE(1878), - [sym_path] = STATE(1429), - [sym_comment] = STATE(1388), - [anon_sym_LBRACK] = ACTIONS(1190), - [anon_sym_COMMA] = ACTIONS(1190), - [anon_sym_RBRACK] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(1190), - [anon_sym_DOLLAR] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1190), - [anon_sym_DASH_DASH] = ACTIONS(1190), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_in] = ACTIONS(1190), - [anon_sym_LBRACE] = ACTIONS(1190), - [anon_sym_DOT_DOT] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1190), - [anon_sym_STAR_STAR] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1190), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_mod] = ACTIONS(1190), - [anon_sym_SLASH_SLASH] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_bit_DASHshl] = ACTIONS(1190), - [anon_sym_bit_DASHshr] = ACTIONS(1190), - [anon_sym_EQ_EQ] = ACTIONS(1190), - [anon_sym_BANG_EQ] = ACTIONS(1190), - [anon_sym_LT2] = ACTIONS(1190), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_not_DASHin] = ACTIONS(1190), - [anon_sym_starts_DASHwith] = ACTIONS(1190), - [anon_sym_ends_DASHwith] = ACTIONS(1190), - [anon_sym_EQ_TILDE] = ACTIONS(1190), - [anon_sym_BANG_TILDE] = ACTIONS(1190), - [anon_sym_bit_DASHand] = ACTIONS(1190), - [anon_sym_bit_DASHxor] = ACTIONS(1190), - [anon_sym_bit_DASHor] = ACTIONS(1190), - [anon_sym_and] = ACTIONS(1190), - [anon_sym_xor] = ACTIONS(1190), - [anon_sym_or] = ACTIONS(1190), - [anon_sym_DOT] = ACTIONS(3858), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1190), - [anon_sym_DOT_DOT_LT] = ACTIONS(1190), - [anon_sym_null] = ACTIONS(1190), - [anon_sym_true] = ACTIONS(1190), - [anon_sym_false] = ACTIONS(1190), - [aux_sym__val_number_decimal_token1] = ACTIONS(1190), - [aux_sym__val_number_decimal_token2] = ACTIONS(1190), - [anon_sym_DOT2] = ACTIONS(1190), - [aux_sym__val_number_decimal_token3] = ACTIONS(1190), - [aux_sym__val_number_token1] = ACTIONS(1190), - [aux_sym__val_number_token2] = ACTIONS(1190), - [aux_sym__val_number_token3] = ACTIONS(1190), - [aux_sym__val_number_token4] = ACTIONS(1190), - [aux_sym__val_number_token5] = ACTIONS(1190), - [aux_sym__val_number_token6] = ACTIONS(1190), - [anon_sym_0b] = ACTIONS(1190), - [anon_sym_0o] = ACTIONS(1190), - [anon_sym_0x] = ACTIONS(1190), - [sym_val_date] = ACTIONS(1190), - [anon_sym_DQUOTE] = ACTIONS(1190), - [sym__str_single_quotes] = ACTIONS(1190), - [sym__str_back_ticks] = ACTIONS(1190), - [sym__entry_separator] = ACTIONS(1192), - [anon_sym_err_GT] = ACTIONS(1190), - [anon_sym_out_GT] = ACTIONS(1190), - [anon_sym_e_GT] = ACTIONS(1190), - [anon_sym_o_GT] = ACTIONS(1190), - [anon_sym_err_PLUSout_GT] = ACTIONS(1190), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1190), - [anon_sym_o_PLUSe_GT] = ACTIONS(1190), - [anon_sym_e_PLUSo_GT] = ACTIONS(1190), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1190), - [anon_sym_POUND] = ACTIONS(113), + [1601] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6358), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6234), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4982), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5796), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1601), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(5035), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4787), + [anon_sym_DOT_DOT_LT] = ACTIONS(4787), + [anon_sym_null] = ACTIONS(3669), + [anon_sym_true] = ACTIONS(3671), + [anon_sym_false] = ACTIONS(3671), + [aux_sym__val_number_decimal_token1] = ACTIONS(3673), + [aux_sym__val_number_decimal_token2] = ACTIONS(3675), + [anon_sym_DOT2] = ACTIONS(5037), + [aux_sym__val_number_decimal_token3] = ACTIONS(3679), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(3681), + [aux_sym__val_number_token5] = ACTIONS(3681), + [aux_sym__val_number_token6] = ACTIONS(3681), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(3683), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), + [anon_sym_POUND] = ACTIONS(3), }, - [1389] = { - [sym_ctrl_do] = STATE(8871), - [sym_ctrl_if] = STATE(8871), - [sym_ctrl_match] = STATE(8871), - [sym_ctrl_try] = STATE(8871), - [sym__expression] = STATE(8871), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(5342), - [sym__var] = STATE(4755), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_comment] = STATE(1389), - [anon_sym_SEMI] = ACTIONS(3912), - [anon_sym_LF] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(3918), - [anon_sym_LPAREN] = ACTIONS(3920), - [anon_sym_RPAREN] = ACTIONS(3912), - [anon_sym_PIPE] = ACTIONS(3912), - [anon_sym_DOLLAR] = ACTIONS(1762), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(3922), - [anon_sym_RBRACE] = ACTIONS(3912), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_not] = ACTIONS(191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3924), - [anon_sym_DOT_DOT_LT] = ACTIONS(3924), - [anon_sym_null] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [aux_sym__val_number_decimal_token1] = ACTIONS(199), - [aux_sym__val_number_decimal_token2] = ACTIONS(199), - [anon_sym_DOT2] = ACTIONS(203), - [aux_sym__val_number_decimal_token3] = ACTIONS(3926), - [aux_sym__val_number_token1] = ACTIONS(209), - [aux_sym__val_number_token2] = ACTIONS(209), - [aux_sym__val_number_token3] = ACTIONS(209), - [aux_sym__val_number_token4] = ACTIONS(209), - [aux_sym__val_number_token5] = ACTIONS(209), - [aux_sym__val_number_token6] = ACTIONS(209), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(3928), - [anon_sym_DQUOTE] = ACTIONS(3930), - [sym__str_single_quotes] = ACTIONS(3932), - [sym__str_back_ticks] = ACTIONS(3932), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3934), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3936), - [anon_sym_POUND] = ACTIONS(113), + [1602] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6347), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6234), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4982), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5809), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1602), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(5035), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4787), + [anon_sym_DOT_DOT_LT] = ACTIONS(4787), + [anon_sym_null] = ACTIONS(3669), + [anon_sym_true] = ACTIONS(3671), + [anon_sym_false] = ACTIONS(3671), + [aux_sym__val_number_decimal_token1] = ACTIONS(3673), + [aux_sym__val_number_decimal_token2] = ACTIONS(3675), + [anon_sym_DOT2] = ACTIONS(5037), + [aux_sym__val_number_decimal_token3] = ACTIONS(3679), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(3681), + [aux_sym__val_number_token5] = ACTIONS(3681), + [aux_sym__val_number_token6] = ACTIONS(3681), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(3683), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), + [anon_sym_POUND] = ACTIONS(3), }, - [1390] = { - [sym_cell_path] = STATE(1881), - [sym_path] = STATE(1429), - [sym_comment] = STATE(1390), - [anon_sym_LBRACK] = ACTIONS(1148), - [anon_sym_COMMA] = ACTIONS(1148), - [anon_sym_RBRACK] = ACTIONS(1148), - [anon_sym_LPAREN] = ACTIONS(1148), - [anon_sym_DOLLAR] = ACTIONS(1148), - [anon_sym_GT] = ACTIONS(1148), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_DASH] = ACTIONS(1148), - [anon_sym_in] = ACTIONS(1148), - [anon_sym_LBRACE] = ACTIONS(1148), - [anon_sym_DOT_DOT] = ACTIONS(1148), - [anon_sym_STAR] = ACTIONS(1148), - [anon_sym_STAR_STAR] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_SLASH] = ACTIONS(1148), - [anon_sym_mod] = ACTIONS(1148), - [anon_sym_SLASH_SLASH] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1148), - [anon_sym_bit_DASHshl] = ACTIONS(1148), - [anon_sym_bit_DASHshr] = ACTIONS(1148), - [anon_sym_EQ_EQ] = ACTIONS(1148), - [anon_sym_BANG_EQ] = ACTIONS(1148), - [anon_sym_LT2] = ACTIONS(1148), - [anon_sym_LT_EQ] = ACTIONS(1148), - [anon_sym_GT_EQ] = ACTIONS(1148), - [anon_sym_not_DASHin] = ACTIONS(1148), - [anon_sym_starts_DASHwith] = ACTIONS(1148), - [anon_sym_ends_DASHwith] = ACTIONS(1148), - [anon_sym_EQ_TILDE] = ACTIONS(1148), - [anon_sym_BANG_TILDE] = ACTIONS(1148), - [anon_sym_bit_DASHand] = ACTIONS(1148), - [anon_sym_bit_DASHxor] = ACTIONS(1148), - [anon_sym_bit_DASHor] = ACTIONS(1148), - [anon_sym_and] = ACTIONS(1148), - [anon_sym_xor] = ACTIONS(1148), - [anon_sym_or] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(3858), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1148), - [anon_sym_DOT_DOT_LT] = ACTIONS(1148), - [anon_sym_null] = ACTIONS(1148), - [anon_sym_true] = ACTIONS(1148), - [anon_sym_false] = ACTIONS(1148), - [aux_sym__val_number_decimal_token1] = ACTIONS(1148), - [aux_sym__val_number_decimal_token2] = ACTIONS(1148), - [anon_sym_DOT2] = ACTIONS(1148), - [aux_sym__val_number_decimal_token3] = ACTIONS(1148), - [aux_sym__val_number_token1] = ACTIONS(1148), - [aux_sym__val_number_token2] = ACTIONS(1148), - [aux_sym__val_number_token3] = ACTIONS(1148), - [aux_sym__val_number_token4] = ACTIONS(1148), - [aux_sym__val_number_token5] = ACTIONS(1148), - [aux_sym__val_number_token6] = ACTIONS(1148), - [anon_sym_0b] = ACTIONS(1148), - [anon_sym_0o] = ACTIONS(1148), - [anon_sym_0x] = ACTIONS(1148), - [sym_val_date] = ACTIONS(1148), - [anon_sym_DQUOTE] = ACTIONS(1148), - [sym__str_single_quotes] = ACTIONS(1148), - [sym__str_back_ticks] = ACTIONS(1148), - [sym__entry_separator] = ACTIONS(1150), - [anon_sym_err_GT] = ACTIONS(1148), - [anon_sym_out_GT] = ACTIONS(1148), - [anon_sym_e_GT] = ACTIONS(1148), - [anon_sym_o_GT] = ACTIONS(1148), - [anon_sym_err_PLUSout_GT] = ACTIONS(1148), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1148), - [anon_sym_o_PLUSe_GT] = ACTIONS(1148), - [anon_sym_e_PLUSo_GT] = ACTIONS(1148), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1148), - [anon_sym_POUND] = ACTIONS(113), + [1603] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6349), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6234), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4982), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5812), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1603), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(5035), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4787), + [anon_sym_DOT_DOT_LT] = ACTIONS(4787), + [anon_sym_null] = ACTIONS(3669), + [anon_sym_true] = ACTIONS(3671), + [anon_sym_false] = ACTIONS(3671), + [aux_sym__val_number_decimal_token1] = ACTIONS(3673), + [aux_sym__val_number_decimal_token2] = ACTIONS(3675), + [anon_sym_DOT2] = ACTIONS(5037), + [aux_sym__val_number_decimal_token3] = ACTIONS(3679), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(3681), + [aux_sym__val_number_token5] = ACTIONS(3681), + [aux_sym__val_number_token6] = ACTIONS(3681), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(3683), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), + [anon_sym_POUND] = ACTIONS(3), }, - [1391] = { - [sym_comment] = STATE(1391), - [anon_sym_export] = ACTIONS(2547), - [anon_sym_alias] = ACTIONS(2547), - [anon_sym_let] = ACTIONS(2547), - [anon_sym_let_DASHenv] = ACTIONS(2547), - [anon_sym_mut] = ACTIONS(2547), - [anon_sym_const] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [sym_cmd_identifier] = ACTIONS(2547), - [anon_sym_LF] = ACTIONS(2549), - [anon_sym_def] = ACTIONS(2547), - [anon_sym_export_DASHenv] = ACTIONS(2547), - [anon_sym_extern] = ACTIONS(2547), - [anon_sym_module] = ACTIONS(2547), - [anon_sym_use] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_RPAREN] = ACTIONS(2547), - [anon_sym_DOLLAR] = ACTIONS(2547), - [anon_sym_error] = ACTIONS(2547), - [anon_sym_DASH_DASH] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_break] = ACTIONS(2547), - [anon_sym_continue] = ACTIONS(2547), - [anon_sym_for] = ACTIONS(2547), - [anon_sym_loop] = ACTIONS(2547), - [anon_sym_while] = ACTIONS(2547), - [anon_sym_do] = ACTIONS(2547), - [anon_sym_if] = ACTIONS(2547), - [anon_sym_match] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2547), - [anon_sym_RBRACE] = ACTIONS(2547), - [anon_sym_DOT_DOT] = ACTIONS(2547), - [anon_sym_try] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2547), - [anon_sym_source] = ACTIONS(2547), - [anon_sym_source_DASHenv] = ACTIONS(2547), - [anon_sym_register] = ACTIONS(2547), - [anon_sym_hide] = ACTIONS(2547), - [anon_sym_hide_DASHenv] = ACTIONS(2547), - [anon_sym_overlay] = ACTIONS(2547), - [anon_sym_as] = ACTIONS(2547), - [anon_sym_where] = ACTIONS(2547), - [anon_sym_not] = ACTIONS(2547), - [anon_sym_LPAREN2] = ACTIONS(2549), - [anon_sym_DOT] = ACTIONS(2547), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), - [anon_sym_DOT_DOT_LT] = ACTIONS(2547), - [anon_sym_null] = ACTIONS(2547), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [aux_sym__val_number_decimal_token1] = ACTIONS(2547), - [aux_sym__val_number_decimal_token2] = ACTIONS(2547), - [anon_sym_DOT2] = ACTIONS(2547), - [aux_sym__val_number_decimal_token3] = ACTIONS(2547), - [aux_sym__val_number_token1] = ACTIONS(2547), - [aux_sym__val_number_token2] = ACTIONS(2547), - [aux_sym__val_number_token3] = ACTIONS(2547), - [aux_sym__val_number_token4] = ACTIONS(2547), - [aux_sym__val_number_token5] = ACTIONS(2547), - [aux_sym__val_number_token6] = ACTIONS(2547), - [anon_sym_0b] = ACTIONS(2547), - [anon_sym_0o] = ACTIONS(2547), - [anon_sym_0x] = ACTIONS(2547), - [sym_val_date] = ACTIONS(2547), - [anon_sym_DQUOTE] = ACTIONS(2547), - [sym__str_single_quotes] = ACTIONS(2547), - [sym__str_back_ticks] = ACTIONS(2547), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2547), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2547), - [aux_sym_unquoted_token2] = ACTIONS(2547), - [anon_sym_POUND] = ACTIONS(113), + [1604] = { + [sym_expr_unary] = STATE(6016), + [sym__expr_unary_minus] = STATE(5999), + [sym_expr_binary] = STATE(6016), + [sym__expr_binary_expression] = STATE(6238), + [sym_expr_parenthesized] = STATE(6016), + [sym__val_range] = STATE(10131), + [sym__value] = STATE(6016), + [sym_val_nothing] = STATE(6108), + [sym_val_bool] = STATE(6104), + [sym_val_variable] = STATE(6108), + [sym__var] = STATE(5517), + [sym_val_number] = STATE(6108), + [sym__val_number_decimal] = STATE(4685), + [sym__val_number] = STATE(6110), + [sym_val_duration] = STATE(6108), + [sym_val_filesize] = STATE(6108), + [sym_val_binary] = STATE(6108), + [sym_val_string] = STATE(6108), + [sym__str_double_quotes] = STATE(6195), + [sym_val_interpolated] = STATE(6108), + [sym__inter_single_quotes] = STATE(6197), + [sym__inter_double_quotes] = STATE(6198), + [sym_val_list] = STATE(6108), + [sym_val_record] = STATE(6108), + [sym_val_table] = STATE(6108), + [sym_val_closure] = STATE(6108), + [sym_unquoted] = STATE(6017), + [sym__unquoted_anonymous_prefix] = STATE(10281), + [sym_comment] = STATE(1604), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(5039), + [anon_sym_DOLLAR] = ACTIONS(5041), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_DOT_DOT] = ACTIONS(5043), + [anon_sym_not] = ACTIONS(4172), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5045), + [anon_sym_DOT_DOT_LT] = ACTIONS(5045), + [anon_sym_null] = ACTIONS(5047), + [anon_sym_true] = ACTIONS(5049), + [anon_sym_false] = ACTIONS(5049), + [aux_sym__val_number_decimal_token1] = ACTIONS(5051), + [aux_sym__val_number_decimal_token2] = ACTIONS(5053), + [anon_sym_DOT2] = ACTIONS(5055), + [aux_sym__val_number_decimal_token3] = ACTIONS(5057), + [aux_sym__val_number_token1] = ACTIONS(2828), + [aux_sym__val_number_token2] = ACTIONS(2828), + [aux_sym__val_number_token3] = ACTIONS(2828), + [aux_sym__val_number_token4] = ACTIONS(5059), + [aux_sym__val_number_token5] = ACTIONS(5059), + [aux_sym__val_number_token6] = ACTIONS(5059), + [anon_sym_0b] = ACTIONS(2832), + [anon_sym_0o] = ACTIONS(2834), + [anon_sym_0x] = ACTIONS(2834), + [sym_val_date] = ACTIONS(5061), + [anon_sym_DQUOTE] = ACTIONS(4192), + [sym__str_single_quotes] = ACTIONS(4194), + [sym__str_back_ticks] = ACTIONS(4194), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2844), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5063), + [anon_sym_POUND] = ACTIONS(3), }, - [1392] = { - [sym__immediate_decimal] = STATE(10460), - [sym_comment] = STATE(1392), - [ts_builtin_sym_end] = ACTIONS(938), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_error] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_where] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [aux_sym__immediate_decimal_token1] = ACTIONS(1045), - [aux_sym__immediate_decimal_token3] = ACTIONS(1045), - [aux_sym__immediate_decimal_token4] = ACTIONS(1047), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [aux_sym_unquoted_token4] = ACTIONS(3682), - [anon_sym_POUND] = ACTIONS(113), + [1605] = { + [sym_expr_unary] = STATE(6016), + [sym__expr_unary_minus] = STATE(5999), + [sym_expr_binary] = STATE(6016), + [sym__expr_binary_expression] = STATE(6243), + [sym_expr_parenthesized] = STATE(6016), + [sym__val_range] = STATE(10131), + [sym__value] = STATE(6016), + [sym_val_nothing] = STATE(6108), + [sym_val_bool] = STATE(6104), + [sym_val_variable] = STATE(6108), + [sym__var] = STATE(5517), + [sym_val_number] = STATE(6108), + [sym__val_number_decimal] = STATE(4685), + [sym__val_number] = STATE(6110), + [sym_val_duration] = STATE(6108), + [sym_val_filesize] = STATE(6108), + [sym_val_binary] = STATE(6108), + [sym_val_string] = STATE(6108), + [sym__str_double_quotes] = STATE(6195), + [sym_val_interpolated] = STATE(6108), + [sym__inter_single_quotes] = STATE(6197), + [sym__inter_double_quotes] = STATE(6198), + [sym_val_list] = STATE(6108), + [sym_val_record] = STATE(6108), + [sym_val_table] = STATE(6108), + [sym_val_closure] = STATE(6108), + [sym_unquoted] = STATE(6019), + [sym__unquoted_anonymous_prefix] = STATE(10281), + [sym_comment] = STATE(1605), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(5039), + [anon_sym_DOLLAR] = ACTIONS(5041), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_DOT_DOT] = ACTIONS(5043), + [anon_sym_not] = ACTIONS(4172), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5045), + [anon_sym_DOT_DOT_LT] = ACTIONS(5045), + [anon_sym_null] = ACTIONS(5047), + [anon_sym_true] = ACTIONS(5049), + [anon_sym_false] = ACTIONS(5049), + [aux_sym__val_number_decimal_token1] = ACTIONS(5051), + [aux_sym__val_number_decimal_token2] = ACTIONS(5053), + [anon_sym_DOT2] = ACTIONS(5055), + [aux_sym__val_number_decimal_token3] = ACTIONS(5057), + [aux_sym__val_number_token1] = ACTIONS(2828), + [aux_sym__val_number_token2] = ACTIONS(2828), + [aux_sym__val_number_token3] = ACTIONS(2828), + [aux_sym__val_number_token4] = ACTIONS(5059), + [aux_sym__val_number_token5] = ACTIONS(5059), + [aux_sym__val_number_token6] = ACTIONS(5059), + [anon_sym_0b] = ACTIONS(2832), + [anon_sym_0o] = ACTIONS(2834), + [anon_sym_0x] = ACTIONS(2834), + [sym_val_date] = ACTIONS(5061), + [anon_sym_DQUOTE] = ACTIONS(4192), + [sym__str_single_quotes] = ACTIONS(4194), + [sym__str_back_ticks] = ACTIONS(4194), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2844), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5063), + [anon_sym_POUND] = ACTIONS(3), }, - [1393] = { - [sym_comment] = STATE(1393), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_RPAREN] = ACTIONS(959), - [anon_sym_PIPE] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH_DASH] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_RBRACE] = ACTIONS(959), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(959), - [anon_sym_PLUS_PLUS] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(959), - [anon_sym_SLASH_SLASH] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(959), - [anon_sym_bit_DASHshr] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(959), - [anon_sym_BANG_EQ] = ACTIONS(959), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(959), - [anon_sym_GT_EQ] = ACTIONS(959), - [anon_sym_not_DASHin] = ACTIONS(959), - [anon_sym_starts_DASHwith] = ACTIONS(959), - [anon_sym_ends_DASHwith] = ACTIONS(959), - [anon_sym_EQ_TILDE] = ACTIONS(959), - [anon_sym_BANG_TILDE] = ACTIONS(959), - [anon_sym_bit_DASHand] = ACTIONS(959), - [anon_sym_bit_DASHxor] = ACTIONS(959), - [anon_sym_bit_DASHor] = ACTIONS(959), - [anon_sym_and] = ACTIONS(959), - [anon_sym_xor] = ACTIONS(959), - [anon_sym_or] = ACTIONS(959), - [anon_sym_not] = ACTIONS(959), - [anon_sym_DOT_DOT2] = ACTIONS(3972), - [anon_sym_DOT] = ACTIONS(3974), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_DOT_DOT_LT] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3976), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3976), - [anon_sym_null] = ACTIONS(959), - [anon_sym_true] = ACTIONS(959), - [anon_sym_false] = ACTIONS(959), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(959), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(959), - [aux_sym__val_number_token1] = ACTIONS(959), - [aux_sym__val_number_token2] = ACTIONS(959), - [aux_sym__val_number_token3] = ACTIONS(959), - [aux_sym__val_number_token4] = ACTIONS(959), - [aux_sym__val_number_token5] = ACTIONS(959), - [aux_sym__val_number_token6] = ACTIONS(959), - [anon_sym_0b] = ACTIONS(959), - [sym_filesize_unit] = ACTIONS(3978), - [sym_duration_unit] = ACTIONS(3980), - [anon_sym_0o] = ACTIONS(959), - [anon_sym_0x] = ACTIONS(959), - [sym_val_date] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [sym__str_single_quotes] = ACTIONS(959), - [sym__str_back_ticks] = ACTIONS(959), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(959), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(959), - [aux_sym_unquoted_token5] = ACTIONS(3982), - [anon_sym_POUND] = ACTIONS(113), + [1606] = { + [sym_expr_unary] = STATE(6016), + [sym__expr_unary_minus] = STATE(5999), + [sym_expr_binary] = STATE(6016), + [sym__expr_binary_expression] = STATE(6245), + [sym_expr_parenthesized] = STATE(6016), + [sym__val_range] = STATE(10131), + [sym__value] = STATE(6016), + [sym_val_nothing] = STATE(6108), + [sym_val_bool] = STATE(6104), + [sym_val_variable] = STATE(6108), + [sym__var] = STATE(5517), + [sym_val_number] = STATE(6108), + [sym__val_number_decimal] = STATE(4685), + [sym__val_number] = STATE(6110), + [sym_val_duration] = STATE(6108), + [sym_val_filesize] = STATE(6108), + [sym_val_binary] = STATE(6108), + [sym_val_string] = STATE(6108), + [sym__str_double_quotes] = STATE(6195), + [sym_val_interpolated] = STATE(6108), + [sym__inter_single_quotes] = STATE(6197), + [sym__inter_double_quotes] = STATE(6198), + [sym_val_list] = STATE(6108), + [sym_val_record] = STATE(6108), + [sym_val_table] = STATE(6108), + [sym_val_closure] = STATE(6108), + [sym_unquoted] = STATE(6020), + [sym__unquoted_anonymous_prefix] = STATE(10281), + [sym_comment] = STATE(1606), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(5039), + [anon_sym_DOLLAR] = ACTIONS(5041), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_DOT_DOT] = ACTIONS(5043), + [anon_sym_not] = ACTIONS(4172), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5045), + [anon_sym_DOT_DOT_LT] = ACTIONS(5045), + [anon_sym_null] = ACTIONS(5047), + [anon_sym_true] = ACTIONS(5049), + [anon_sym_false] = ACTIONS(5049), + [aux_sym__val_number_decimal_token1] = ACTIONS(5051), + [aux_sym__val_number_decimal_token2] = ACTIONS(5053), + [anon_sym_DOT2] = ACTIONS(5055), + [aux_sym__val_number_decimal_token3] = ACTIONS(5057), + [aux_sym__val_number_token1] = ACTIONS(2828), + [aux_sym__val_number_token2] = ACTIONS(2828), + [aux_sym__val_number_token3] = ACTIONS(2828), + [aux_sym__val_number_token4] = ACTIONS(5059), + [aux_sym__val_number_token5] = ACTIONS(5059), + [aux_sym__val_number_token6] = ACTIONS(5059), + [anon_sym_0b] = ACTIONS(2832), + [anon_sym_0o] = ACTIONS(2834), + [anon_sym_0x] = ACTIONS(2834), + [sym_val_date] = ACTIONS(5061), + [anon_sym_DQUOTE] = ACTIONS(4192), + [sym__str_single_quotes] = ACTIONS(4194), + [sym__str_back_ticks] = ACTIONS(4194), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2844), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5063), + [anon_sym_POUND] = ACTIONS(3), }, - [1394] = { - [sym__expression] = STATE(10904), - [sym_expr_unary] = STATE(6243), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6243), - [sym__expr_binary_expression] = STATE(6786), - [sym_expr_parenthesized] = STATE(6385), - [sym_val_range] = STATE(7168), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6243), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6719), - [sym_val_variable] = STATE(6316), - [sym__var] = STATE(4486), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5316), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(10905), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(1394), - [anon_sym_COLON] = ACTIONS(3984), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_DOLLAR] = ACTIONS(2690), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(3888), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3892), - [anon_sym_DOT_DOT_LT] = ACTIONS(3892), - [anon_sym_null] = ACTIONS(3894), - [anon_sym_true] = ACTIONS(3896), - [anon_sym_false] = ACTIONS(3896), - [aux_sym__val_number_decimal_token1] = ACTIONS(3898), - [aux_sym__val_number_decimal_token2] = ACTIONS(3900), - [anon_sym_DOT2] = ACTIONS(3902), - [aux_sym__val_number_decimal_token3] = ACTIONS(3904), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(3906), - [aux_sym__val_number_token5] = ACTIONS(3906), - [aux_sym__val_number_token6] = ACTIONS(3906), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(3908), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), + [1607] = { + [sym_expr_unary] = STATE(6016), + [sym__expr_unary_minus] = STATE(5999), + [sym_expr_binary] = STATE(6016), + [sym__expr_binary_expression] = STATE(6250), + [sym_expr_parenthesized] = STATE(6016), + [sym__val_range] = STATE(10131), + [sym__value] = STATE(6016), + [sym_val_nothing] = STATE(6108), + [sym_val_bool] = STATE(6104), + [sym_val_variable] = STATE(6108), + [sym__var] = STATE(5517), + [sym_val_number] = STATE(6108), + [sym__val_number_decimal] = STATE(4685), + [sym__val_number] = STATE(6110), + [sym_val_duration] = STATE(6108), + [sym_val_filesize] = STATE(6108), + [sym_val_binary] = STATE(6108), + [sym_val_string] = STATE(6108), + [sym__str_double_quotes] = STATE(6195), + [sym_val_interpolated] = STATE(6108), + [sym__inter_single_quotes] = STATE(6197), + [sym__inter_double_quotes] = STATE(6198), + [sym_val_list] = STATE(6108), + [sym_val_record] = STATE(6108), + [sym_val_table] = STATE(6108), + [sym_val_closure] = STATE(6108), + [sym_unquoted] = STATE(6021), + [sym__unquoted_anonymous_prefix] = STATE(10281), + [sym_comment] = STATE(1607), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(5039), + [anon_sym_DOLLAR] = ACTIONS(5041), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_DOT_DOT] = ACTIONS(5043), + [anon_sym_not] = ACTIONS(4172), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5045), + [anon_sym_DOT_DOT_LT] = ACTIONS(5045), + [anon_sym_null] = ACTIONS(5047), + [anon_sym_true] = ACTIONS(5049), + [anon_sym_false] = ACTIONS(5049), + [aux_sym__val_number_decimal_token1] = ACTIONS(5051), + [aux_sym__val_number_decimal_token2] = ACTIONS(5053), + [anon_sym_DOT2] = ACTIONS(5055), + [aux_sym__val_number_decimal_token3] = ACTIONS(5057), + [aux_sym__val_number_token1] = ACTIONS(2828), + [aux_sym__val_number_token2] = ACTIONS(2828), + [aux_sym__val_number_token3] = ACTIONS(2828), + [aux_sym__val_number_token4] = ACTIONS(5059), + [aux_sym__val_number_token5] = ACTIONS(5059), + [aux_sym__val_number_token6] = ACTIONS(5059), + [anon_sym_0b] = ACTIONS(2832), + [anon_sym_0o] = ACTIONS(2834), + [anon_sym_0x] = ACTIONS(2834), + [sym_val_date] = ACTIONS(5061), + [anon_sym_DQUOTE] = ACTIONS(4192), + [sym__str_single_quotes] = ACTIONS(4194), + [sym__str_back_ticks] = ACTIONS(4194), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2844), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5063), [anon_sym_POUND] = ACTIONS(3), }, - [1395] = { - [sym_cell_path] = STATE(1860), - [sym_path] = STATE(1361), - [sym_comment] = STATE(1395), - [anon_sym_export] = ACTIONS(1186), - [anon_sym_alias] = ACTIONS(1186), - [anon_sym_let] = ACTIONS(1186), - [anon_sym_let_DASHenv] = ACTIONS(1186), - [anon_sym_mut] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1186), - [sym_cmd_identifier] = ACTIONS(1186), - [anon_sym_LF] = ACTIONS(1188), - [anon_sym_def] = ACTIONS(1186), - [anon_sym_export_DASHenv] = ACTIONS(1186), - [anon_sym_extern] = ACTIONS(1186), - [anon_sym_module] = ACTIONS(1186), - [anon_sym_use] = ACTIONS(1186), - [anon_sym_LBRACK] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(1186), - [anon_sym_RPAREN] = ACTIONS(1186), - [anon_sym_DOLLAR] = ACTIONS(1186), - [anon_sym_error] = ACTIONS(1186), - [anon_sym_DASH_DASH] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1186), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1186), - [anon_sym_loop] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_do] = ACTIONS(1186), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_match] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_RBRACE] = ACTIONS(1186), - [anon_sym_DOT_DOT] = ACTIONS(1186), - [anon_sym_try] = ACTIONS(1186), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_source] = ACTIONS(1186), - [anon_sym_source_DASHenv] = ACTIONS(1186), - [anon_sym_register] = ACTIONS(1186), - [anon_sym_hide] = ACTIONS(1186), - [anon_sym_hide_DASHenv] = ACTIONS(1186), - [anon_sym_overlay] = ACTIONS(1186), - [anon_sym_as] = ACTIONS(1186), - [anon_sym_where] = ACTIONS(1186), - [anon_sym_not] = ACTIONS(1186), - [anon_sym_DOT] = ACTIONS(3854), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1186), - [anon_sym_DOT_DOT_LT] = ACTIONS(1186), - [anon_sym_null] = ACTIONS(1186), - [anon_sym_true] = ACTIONS(1186), - [anon_sym_false] = ACTIONS(1186), - [aux_sym__val_number_decimal_token1] = ACTIONS(1186), - [aux_sym__val_number_decimal_token2] = ACTIONS(1186), - [anon_sym_DOT2] = ACTIONS(1186), - [aux_sym__val_number_decimal_token3] = ACTIONS(1186), - [aux_sym__val_number_token1] = ACTIONS(1186), - [aux_sym__val_number_token2] = ACTIONS(1186), - [aux_sym__val_number_token3] = ACTIONS(1186), - [aux_sym__val_number_token4] = ACTIONS(1186), - [aux_sym__val_number_token5] = ACTIONS(1186), - [aux_sym__val_number_token6] = ACTIONS(1186), - [anon_sym_0b] = ACTIONS(1186), - [anon_sym_0o] = ACTIONS(1186), - [anon_sym_0x] = ACTIONS(1186), - [sym_val_date] = ACTIONS(1186), - [anon_sym_DQUOTE] = ACTIONS(1186), - [sym__str_single_quotes] = ACTIONS(1186), - [sym__str_back_ticks] = ACTIONS(1186), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1186), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1186), - [anon_sym_CARET] = ACTIONS(1186), - [anon_sym_POUND] = ACTIONS(113), + [1608] = { + [sym_expr_unary] = STATE(6016), + [sym__expr_unary_minus] = STATE(5999), + [sym_expr_binary] = STATE(6016), + [sym__expr_binary_expression] = STATE(6269), + [sym_expr_parenthesized] = STATE(6016), + [sym__val_range] = STATE(10131), + [sym__value] = STATE(6016), + [sym_val_nothing] = STATE(6108), + [sym_val_bool] = STATE(6104), + [sym_val_variable] = STATE(6108), + [sym__var] = STATE(5517), + [sym_val_number] = STATE(6108), + [sym__val_number_decimal] = STATE(4685), + [sym__val_number] = STATE(6110), + [sym_val_duration] = STATE(6108), + [sym_val_filesize] = STATE(6108), + [sym_val_binary] = STATE(6108), + [sym_val_string] = STATE(6108), + [sym__str_double_quotes] = STATE(6195), + [sym_val_interpolated] = STATE(6108), + [sym__inter_single_quotes] = STATE(6197), + [sym__inter_double_quotes] = STATE(6198), + [sym_val_list] = STATE(6108), + [sym_val_record] = STATE(6108), + [sym_val_table] = STATE(6108), + [sym_val_closure] = STATE(6108), + [sym_unquoted] = STATE(6022), + [sym__unquoted_anonymous_prefix] = STATE(10281), + [sym_comment] = STATE(1608), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(5039), + [anon_sym_DOLLAR] = ACTIONS(5041), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_DOT_DOT] = ACTIONS(5043), + [anon_sym_not] = ACTIONS(4172), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5045), + [anon_sym_DOT_DOT_LT] = ACTIONS(5045), + [anon_sym_null] = ACTIONS(5047), + [anon_sym_true] = ACTIONS(5049), + [anon_sym_false] = ACTIONS(5049), + [aux_sym__val_number_decimal_token1] = ACTIONS(5051), + [aux_sym__val_number_decimal_token2] = ACTIONS(5053), + [anon_sym_DOT2] = ACTIONS(5055), + [aux_sym__val_number_decimal_token3] = ACTIONS(5057), + [aux_sym__val_number_token1] = ACTIONS(2828), + [aux_sym__val_number_token2] = ACTIONS(2828), + [aux_sym__val_number_token3] = ACTIONS(2828), + [aux_sym__val_number_token4] = ACTIONS(5059), + [aux_sym__val_number_token5] = ACTIONS(5059), + [aux_sym__val_number_token6] = ACTIONS(5059), + [anon_sym_0b] = ACTIONS(2832), + [anon_sym_0o] = ACTIONS(2834), + [anon_sym_0x] = ACTIONS(2834), + [sym_val_date] = ACTIONS(5061), + [anon_sym_DQUOTE] = ACTIONS(4192), + [sym__str_single_quotes] = ACTIONS(4194), + [sym__str_back_ticks] = ACTIONS(4194), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2844), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5063), + [anon_sym_POUND] = ACTIONS(3), }, - [1396] = { - [sym_cell_path] = STATE(1891), - [sym_path] = STATE(1429), - [sym_comment] = STATE(1396), - [anon_sym_LBRACK] = ACTIONS(1186), - [anon_sym_COMMA] = ACTIONS(1186), - [anon_sym_RBRACK] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(1186), - [anon_sym_DOLLAR] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_DASH_DASH] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_in] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_DOT_DOT] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_STAR_STAR] = ACTIONS(1186), - [anon_sym_PLUS_PLUS] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_mod] = ACTIONS(1186), - [anon_sym_SLASH_SLASH] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_bit_DASHshl] = ACTIONS(1186), - [anon_sym_bit_DASHshr] = ACTIONS(1186), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_LT2] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1186), - [anon_sym_GT_EQ] = ACTIONS(1186), - [anon_sym_not_DASHin] = ACTIONS(1186), - [anon_sym_starts_DASHwith] = ACTIONS(1186), - [anon_sym_ends_DASHwith] = ACTIONS(1186), - [anon_sym_EQ_TILDE] = ACTIONS(1186), - [anon_sym_BANG_TILDE] = ACTIONS(1186), - [anon_sym_bit_DASHand] = ACTIONS(1186), - [anon_sym_bit_DASHxor] = ACTIONS(1186), - [anon_sym_bit_DASHor] = ACTIONS(1186), - [anon_sym_and] = ACTIONS(1186), - [anon_sym_xor] = ACTIONS(1186), - [anon_sym_or] = ACTIONS(1186), - [anon_sym_DOT] = ACTIONS(3858), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1186), - [anon_sym_DOT_DOT_LT] = ACTIONS(1186), - [anon_sym_null] = ACTIONS(1186), - [anon_sym_true] = ACTIONS(1186), - [anon_sym_false] = ACTIONS(1186), - [aux_sym__val_number_decimal_token1] = ACTIONS(1186), - [aux_sym__val_number_decimal_token2] = ACTIONS(1186), - [anon_sym_DOT2] = ACTIONS(1186), - [aux_sym__val_number_decimal_token3] = ACTIONS(1186), - [aux_sym__val_number_token1] = ACTIONS(1186), - [aux_sym__val_number_token2] = ACTIONS(1186), - [aux_sym__val_number_token3] = ACTIONS(1186), - [aux_sym__val_number_token4] = ACTIONS(1186), - [aux_sym__val_number_token5] = ACTIONS(1186), - [aux_sym__val_number_token6] = ACTIONS(1186), - [anon_sym_0b] = ACTIONS(1186), - [anon_sym_0o] = ACTIONS(1186), - [anon_sym_0x] = ACTIONS(1186), - [sym_val_date] = ACTIONS(1186), - [anon_sym_DQUOTE] = ACTIONS(1186), - [sym__str_single_quotes] = ACTIONS(1186), - [sym__str_back_ticks] = ACTIONS(1186), - [sym__entry_separator] = ACTIONS(1188), - [anon_sym_err_GT] = ACTIONS(1186), - [anon_sym_out_GT] = ACTIONS(1186), - [anon_sym_e_GT] = ACTIONS(1186), - [anon_sym_o_GT] = ACTIONS(1186), - [anon_sym_err_PLUSout_GT] = ACTIONS(1186), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1186), - [anon_sym_o_PLUSe_GT] = ACTIONS(1186), - [anon_sym_e_PLUSo_GT] = ACTIONS(1186), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1186), - [anon_sym_POUND] = ACTIONS(113), + [1609] = { + [sym_expr_unary] = STATE(6016), + [sym__expr_unary_minus] = STATE(5999), + [sym_expr_binary] = STATE(6016), + [sym__expr_binary_expression] = STATE(6271), + [sym_expr_parenthesized] = STATE(6016), + [sym__val_range] = STATE(10131), + [sym__value] = STATE(6016), + [sym_val_nothing] = STATE(6108), + [sym_val_bool] = STATE(6104), + [sym_val_variable] = STATE(6108), + [sym__var] = STATE(5517), + [sym_val_number] = STATE(6108), + [sym__val_number_decimal] = STATE(4685), + [sym__val_number] = STATE(6110), + [sym_val_duration] = STATE(6108), + [sym_val_filesize] = STATE(6108), + [sym_val_binary] = STATE(6108), + [sym_val_string] = STATE(6108), + [sym__str_double_quotes] = STATE(6195), + [sym_val_interpolated] = STATE(6108), + [sym__inter_single_quotes] = STATE(6197), + [sym__inter_double_quotes] = STATE(6198), + [sym_val_list] = STATE(6108), + [sym_val_record] = STATE(6108), + [sym_val_table] = STATE(6108), + [sym_val_closure] = STATE(6108), + [sym_unquoted] = STATE(6025), + [sym__unquoted_anonymous_prefix] = STATE(10281), + [sym_comment] = STATE(1609), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(5039), + [anon_sym_DOLLAR] = ACTIONS(5041), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_DOT_DOT] = ACTIONS(5043), + [anon_sym_not] = ACTIONS(4172), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5045), + [anon_sym_DOT_DOT_LT] = ACTIONS(5045), + [anon_sym_null] = ACTIONS(5047), + [anon_sym_true] = ACTIONS(5049), + [anon_sym_false] = ACTIONS(5049), + [aux_sym__val_number_decimal_token1] = ACTIONS(5051), + [aux_sym__val_number_decimal_token2] = ACTIONS(5053), + [anon_sym_DOT2] = ACTIONS(5055), + [aux_sym__val_number_decimal_token3] = ACTIONS(5057), + [aux_sym__val_number_token1] = ACTIONS(2828), + [aux_sym__val_number_token2] = ACTIONS(2828), + [aux_sym__val_number_token3] = ACTIONS(2828), + [aux_sym__val_number_token4] = ACTIONS(5059), + [aux_sym__val_number_token5] = ACTIONS(5059), + [aux_sym__val_number_token6] = ACTIONS(5059), + [anon_sym_0b] = ACTIONS(2832), + [anon_sym_0o] = ACTIONS(2834), + [anon_sym_0x] = ACTIONS(2834), + [sym_val_date] = ACTIONS(5061), + [anon_sym_DQUOTE] = ACTIONS(4192), + [sym__str_single_quotes] = ACTIONS(4194), + [sym__str_back_ticks] = ACTIONS(4194), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2844), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5063), + [anon_sym_POUND] = ACTIONS(3), }, - [1397] = { - [sym_comment] = STATE(1397), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_error] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_RBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_as] = ACTIONS(936), - [anon_sym_where] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_LPAREN2] = ACTIONS(938), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [aux_sym__immediate_decimal_token1] = ACTIONS(3986), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [aux_sym_unquoted_token2] = ACTIONS(3988), - [anon_sym_POUND] = ACTIONS(113), + [1610] = { + [sym_expr_unary] = STATE(6016), + [sym__expr_unary_minus] = STATE(5999), + [sym_expr_binary] = STATE(6016), + [sym__expr_binary_expression] = STATE(6275), + [sym_expr_parenthesized] = STATE(6016), + [sym__val_range] = STATE(10131), + [sym__value] = STATE(6016), + [sym_val_nothing] = STATE(6108), + [sym_val_bool] = STATE(6104), + [sym_val_variable] = STATE(6108), + [sym__var] = STATE(5517), + [sym_val_number] = STATE(6108), + [sym__val_number_decimal] = STATE(4685), + [sym__val_number] = STATE(6110), + [sym_val_duration] = STATE(6108), + [sym_val_filesize] = STATE(6108), + [sym_val_binary] = STATE(6108), + [sym_val_string] = STATE(6108), + [sym__str_double_quotes] = STATE(6195), + [sym_val_interpolated] = STATE(6108), + [sym__inter_single_quotes] = STATE(6197), + [sym__inter_double_quotes] = STATE(6198), + [sym_val_list] = STATE(6108), + [sym_val_record] = STATE(6108), + [sym_val_table] = STATE(6108), + [sym_val_closure] = STATE(6108), + [sym_unquoted] = STATE(6026), + [sym__unquoted_anonymous_prefix] = STATE(10281), + [sym_comment] = STATE(1610), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(5039), + [anon_sym_DOLLAR] = ACTIONS(5041), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_DOT_DOT] = ACTIONS(5043), + [anon_sym_not] = ACTIONS(4172), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5045), + [anon_sym_DOT_DOT_LT] = ACTIONS(5045), + [anon_sym_null] = ACTIONS(5047), + [anon_sym_true] = ACTIONS(5049), + [anon_sym_false] = ACTIONS(5049), + [aux_sym__val_number_decimal_token1] = ACTIONS(5051), + [aux_sym__val_number_decimal_token2] = ACTIONS(5053), + [anon_sym_DOT2] = ACTIONS(5055), + [aux_sym__val_number_decimal_token3] = ACTIONS(5057), + [aux_sym__val_number_token1] = ACTIONS(2828), + [aux_sym__val_number_token2] = ACTIONS(2828), + [aux_sym__val_number_token3] = ACTIONS(2828), + [aux_sym__val_number_token4] = ACTIONS(5059), + [aux_sym__val_number_token5] = ACTIONS(5059), + [aux_sym__val_number_token6] = ACTIONS(5059), + [anon_sym_0b] = ACTIONS(2832), + [anon_sym_0o] = ACTIONS(2834), + [anon_sym_0x] = ACTIONS(2834), + [sym_val_date] = ACTIONS(5061), + [anon_sym_DQUOTE] = ACTIONS(4192), + [sym__str_single_quotes] = ACTIONS(4194), + [sym__str_back_ticks] = ACTIONS(4194), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2844), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5063), + [anon_sym_POUND] = ACTIONS(3), }, - [1398] = { - [sym_comment] = STATE(1398), - [anon_sym_export] = ACTIONS(3748), - [anon_sym_alias] = ACTIONS(3748), - [anon_sym_let] = ACTIONS(3748), - [anon_sym_let_DASHenv] = ACTIONS(3748), - [anon_sym_mut] = ACTIONS(3748), - [anon_sym_const] = ACTIONS(3748), - [anon_sym_SEMI] = ACTIONS(3748), - [sym_cmd_identifier] = ACTIONS(3748), - [anon_sym_LF] = ACTIONS(3750), - [anon_sym_def] = ACTIONS(3748), - [anon_sym_export_DASHenv] = ACTIONS(3748), - [anon_sym_extern] = ACTIONS(3748), - [anon_sym_module] = ACTIONS(3748), - [anon_sym_use] = ACTIONS(3748), - [anon_sym_LBRACK] = ACTIONS(3748), - [anon_sym_LPAREN] = ACTIONS(3748), - [anon_sym_RPAREN] = ACTIONS(3748), - [anon_sym_DOLLAR] = ACTIONS(3748), - [anon_sym_error] = ACTIONS(3748), - [anon_sym_DASH_DASH] = ACTIONS(3748), - [anon_sym_DASH] = ACTIONS(3748), - [anon_sym_break] = ACTIONS(3748), - [anon_sym_continue] = ACTIONS(3748), - [anon_sym_for] = ACTIONS(3748), - [anon_sym_loop] = ACTIONS(3748), - [anon_sym_while] = ACTIONS(3748), - [anon_sym_do] = ACTIONS(3748), - [anon_sym_if] = ACTIONS(3748), - [anon_sym_match] = ACTIONS(3748), - [anon_sym_LBRACE] = ACTIONS(3748), - [anon_sym_RBRACE] = ACTIONS(3748), - [anon_sym_DOT_DOT] = ACTIONS(3748), - [anon_sym_try] = ACTIONS(3748), - [anon_sym_return] = ACTIONS(3748), - [anon_sym_source] = ACTIONS(3748), - [anon_sym_source_DASHenv] = ACTIONS(3748), - [anon_sym_register] = ACTIONS(3748), - [anon_sym_hide] = ACTIONS(3748), - [anon_sym_hide_DASHenv] = ACTIONS(3748), - [anon_sym_overlay] = ACTIONS(3748), - [anon_sym_as] = ACTIONS(3748), - [anon_sym_where] = ACTIONS(3748), - [anon_sym_not] = ACTIONS(3748), - [anon_sym_DOT] = ACTIONS(2851), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3748), - [anon_sym_DOT_DOT_LT] = ACTIONS(3748), - [aux_sym__immediate_decimal_token1] = ACTIONS(3990), - [anon_sym_null] = ACTIONS(3748), - [anon_sym_true] = ACTIONS(3748), - [anon_sym_false] = ACTIONS(3748), - [aux_sym__val_number_decimal_token1] = ACTIONS(3748), - [aux_sym__val_number_decimal_token2] = ACTIONS(3748), - [anon_sym_DOT2] = ACTIONS(3748), - [aux_sym__val_number_decimal_token3] = ACTIONS(3748), - [aux_sym__val_number_token1] = ACTIONS(3748), - [aux_sym__val_number_token2] = ACTIONS(3748), - [aux_sym__val_number_token3] = ACTIONS(3748), - [aux_sym__val_number_token4] = ACTIONS(3748), - [aux_sym__val_number_token5] = ACTIONS(3748), - [aux_sym__val_number_token6] = ACTIONS(3748), - [anon_sym_0b] = ACTIONS(3748), - [anon_sym_0o] = ACTIONS(3748), - [anon_sym_0x] = ACTIONS(3748), - [sym_val_date] = ACTIONS(3748), - [anon_sym_DQUOTE] = ACTIONS(3748), - [sym__str_single_quotes] = ACTIONS(3748), - [sym__str_back_ticks] = ACTIONS(3748), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3748), - [anon_sym_CARET] = ACTIONS(3748), - [aux_sym_unquoted_token2] = ACTIONS(2851), - [anon_sym_POUND] = ACTIONS(113), + [1611] = { + [sym_expr_unary] = STATE(6016), + [sym__expr_unary_minus] = STATE(5999), + [sym_expr_binary] = STATE(6016), + [sym__expr_binary_expression] = STATE(6277), + [sym_expr_parenthesized] = STATE(6016), + [sym__val_range] = STATE(10131), + [sym__value] = STATE(6016), + [sym_val_nothing] = STATE(6108), + [sym_val_bool] = STATE(6104), + [sym_val_variable] = STATE(6108), + [sym__var] = STATE(5517), + [sym_val_number] = STATE(6108), + [sym__val_number_decimal] = STATE(4685), + [sym__val_number] = STATE(6110), + [sym_val_duration] = STATE(6108), + [sym_val_filesize] = STATE(6108), + [sym_val_binary] = STATE(6108), + [sym_val_string] = STATE(6108), + [sym__str_double_quotes] = STATE(6195), + [sym_val_interpolated] = STATE(6108), + [sym__inter_single_quotes] = STATE(6197), + [sym__inter_double_quotes] = STATE(6198), + [sym_val_list] = STATE(6108), + [sym_val_record] = STATE(6108), + [sym_val_table] = STATE(6108), + [sym_val_closure] = STATE(6108), + [sym_unquoted] = STATE(6027), + [sym__unquoted_anonymous_prefix] = STATE(10281), + [sym_comment] = STATE(1611), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(5039), + [anon_sym_DOLLAR] = ACTIONS(5041), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_DOT_DOT] = ACTIONS(5043), + [anon_sym_not] = ACTIONS(4172), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5045), + [anon_sym_DOT_DOT_LT] = ACTIONS(5045), + [anon_sym_null] = ACTIONS(5047), + [anon_sym_true] = ACTIONS(5049), + [anon_sym_false] = ACTIONS(5049), + [aux_sym__val_number_decimal_token1] = ACTIONS(5051), + [aux_sym__val_number_decimal_token2] = ACTIONS(5053), + [anon_sym_DOT2] = ACTIONS(5055), + [aux_sym__val_number_decimal_token3] = ACTIONS(5057), + [aux_sym__val_number_token1] = ACTIONS(2828), + [aux_sym__val_number_token2] = ACTIONS(2828), + [aux_sym__val_number_token3] = ACTIONS(2828), + [aux_sym__val_number_token4] = ACTIONS(5059), + [aux_sym__val_number_token5] = ACTIONS(5059), + [aux_sym__val_number_token6] = ACTIONS(5059), + [anon_sym_0b] = ACTIONS(2832), + [anon_sym_0o] = ACTIONS(2834), + [anon_sym_0x] = ACTIONS(2834), + [sym_val_date] = ACTIONS(5061), + [anon_sym_DQUOTE] = ACTIONS(4192), + [sym__str_single_quotes] = ACTIONS(4194), + [sym__str_back_ticks] = ACTIONS(4194), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2844), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5063), + [anon_sym_POUND] = ACTIONS(3), }, - [1399] = { - [sym_comment] = STATE(1399), - [anon_sym_export] = ACTIONS(2581), - [anon_sym_alias] = ACTIONS(2581), - [anon_sym_let] = ACTIONS(2581), - [anon_sym_let_DASHenv] = ACTIONS(2581), - [anon_sym_mut] = ACTIONS(2581), - [anon_sym_const] = ACTIONS(2581), - [anon_sym_SEMI] = ACTIONS(2581), - [sym_cmd_identifier] = ACTIONS(2581), - [anon_sym_LF] = ACTIONS(2583), - [anon_sym_def] = ACTIONS(2581), - [anon_sym_export_DASHenv] = ACTIONS(2581), - [anon_sym_extern] = ACTIONS(2581), - [anon_sym_module] = ACTIONS(2581), - [anon_sym_use] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2581), - [anon_sym_RPAREN] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2581), - [anon_sym_error] = ACTIONS(2581), - [anon_sym_DASH_DASH] = ACTIONS(2581), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_break] = ACTIONS(2581), - [anon_sym_continue] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2581), - [anon_sym_loop] = ACTIONS(2581), - [anon_sym_while] = ACTIONS(2581), - [anon_sym_do] = ACTIONS(2581), - [anon_sym_if] = ACTIONS(2581), - [anon_sym_match] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2581), - [anon_sym_RBRACE] = ACTIONS(2581), - [anon_sym_DOT_DOT] = ACTIONS(2581), - [anon_sym_try] = ACTIONS(2581), - [anon_sym_return] = ACTIONS(2581), - [anon_sym_source] = ACTIONS(2581), - [anon_sym_source_DASHenv] = ACTIONS(2581), - [anon_sym_register] = ACTIONS(2581), - [anon_sym_hide] = ACTIONS(2581), - [anon_sym_hide_DASHenv] = ACTIONS(2581), - [anon_sym_overlay] = ACTIONS(2581), - [anon_sym_as] = ACTIONS(2581), - [anon_sym_where] = ACTIONS(2581), - [anon_sym_not] = ACTIONS(2581), - [anon_sym_DOT] = ACTIONS(2581), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2581), - [anon_sym_DOT_DOT_LT] = ACTIONS(2581), - [aux_sym__immediate_decimal_token2] = ACTIONS(3992), - [anon_sym_null] = ACTIONS(2581), - [anon_sym_true] = ACTIONS(2581), - [anon_sym_false] = ACTIONS(2581), - [aux_sym__val_number_decimal_token1] = ACTIONS(2581), - [aux_sym__val_number_decimal_token2] = ACTIONS(2581), - [anon_sym_DOT2] = ACTIONS(2581), - [aux_sym__val_number_decimal_token3] = ACTIONS(2581), - [aux_sym__val_number_token1] = ACTIONS(2581), - [aux_sym__val_number_token2] = ACTIONS(2581), - [aux_sym__val_number_token3] = ACTIONS(2581), - [aux_sym__val_number_token4] = ACTIONS(2581), - [aux_sym__val_number_token5] = ACTIONS(2581), - [aux_sym__val_number_token6] = ACTIONS(2581), - [anon_sym_0b] = ACTIONS(2581), - [anon_sym_0o] = ACTIONS(2581), - [anon_sym_0x] = ACTIONS(2581), - [sym_val_date] = ACTIONS(2581), - [anon_sym_DQUOTE] = ACTIONS(2581), - [sym__str_single_quotes] = ACTIONS(2581), - [sym__str_back_ticks] = ACTIONS(2581), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2581), - [anon_sym_CARET] = ACTIONS(2581), - [aux_sym_unquoted_token2] = ACTIONS(2581), - [anon_sym_POUND] = ACTIONS(113), + [1612] = { + [sym_expr_unary] = STATE(6016), + [sym__expr_unary_minus] = STATE(5999), + [sym_expr_binary] = STATE(6016), + [sym__expr_binary_expression] = STATE(6281), + [sym_expr_parenthesized] = STATE(6016), + [sym__val_range] = STATE(10131), + [sym__value] = STATE(6016), + [sym_val_nothing] = STATE(6108), + [sym_val_bool] = STATE(6104), + [sym_val_variable] = STATE(6108), + [sym__var] = STATE(5517), + [sym_val_number] = STATE(6108), + [sym__val_number_decimal] = STATE(4685), + [sym__val_number] = STATE(6110), + [sym_val_duration] = STATE(6108), + [sym_val_filesize] = STATE(6108), + [sym_val_binary] = STATE(6108), + [sym_val_string] = STATE(6108), + [sym__str_double_quotes] = STATE(6195), + [sym_val_interpolated] = STATE(6108), + [sym__inter_single_quotes] = STATE(6197), + [sym__inter_double_quotes] = STATE(6198), + [sym_val_list] = STATE(6108), + [sym_val_record] = STATE(6108), + [sym_val_table] = STATE(6108), + [sym_val_closure] = STATE(6108), + [sym_unquoted] = STATE(6029), + [sym__unquoted_anonymous_prefix] = STATE(10281), + [sym_comment] = STATE(1612), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(5039), + [anon_sym_DOLLAR] = ACTIONS(5041), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_DOT_DOT] = ACTIONS(5043), + [anon_sym_not] = ACTIONS(4172), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5045), + [anon_sym_DOT_DOT_LT] = ACTIONS(5045), + [anon_sym_null] = ACTIONS(5047), + [anon_sym_true] = ACTIONS(5049), + [anon_sym_false] = ACTIONS(5049), + [aux_sym__val_number_decimal_token1] = ACTIONS(5051), + [aux_sym__val_number_decimal_token2] = ACTIONS(5053), + [anon_sym_DOT2] = ACTIONS(5055), + [aux_sym__val_number_decimal_token3] = ACTIONS(5057), + [aux_sym__val_number_token1] = ACTIONS(2828), + [aux_sym__val_number_token2] = ACTIONS(2828), + [aux_sym__val_number_token3] = ACTIONS(2828), + [aux_sym__val_number_token4] = ACTIONS(5059), + [aux_sym__val_number_token5] = ACTIONS(5059), + [aux_sym__val_number_token6] = ACTIONS(5059), + [anon_sym_0b] = ACTIONS(2832), + [anon_sym_0o] = ACTIONS(2834), + [anon_sym_0x] = ACTIONS(2834), + [sym_val_date] = ACTIONS(5061), + [anon_sym_DQUOTE] = ACTIONS(4192), + [sym__str_single_quotes] = ACTIONS(4194), + [sym__str_back_ticks] = ACTIONS(4194), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2844), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5063), + [anon_sym_POUND] = ACTIONS(3), }, - [1400] = { - [sym_cell_path] = STATE(1838), - [sym_path] = STATE(1361), - [sym_comment] = STATE(1400), - [anon_sym_export] = ACTIONS(1179), - [anon_sym_alias] = ACTIONS(1179), - [anon_sym_let] = ACTIONS(1179), - [anon_sym_let_DASHenv] = ACTIONS(1179), - [anon_sym_mut] = ACTIONS(1179), - [anon_sym_const] = ACTIONS(1179), - [anon_sym_SEMI] = ACTIONS(1179), - [sym_cmd_identifier] = ACTIONS(1179), - [anon_sym_LF] = ACTIONS(1181), - [anon_sym_def] = ACTIONS(1179), - [anon_sym_export_DASHenv] = ACTIONS(1179), - [anon_sym_extern] = ACTIONS(1179), - [anon_sym_module] = ACTIONS(1179), - [anon_sym_use] = ACTIONS(1179), - [anon_sym_LBRACK] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1179), - [anon_sym_RPAREN] = ACTIONS(1179), - [anon_sym_DOLLAR] = ACTIONS(1179), - [anon_sym_error] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1179), - [anon_sym_DASH] = ACTIONS(1179), - [anon_sym_break] = ACTIONS(1179), - [anon_sym_continue] = ACTIONS(1179), - [anon_sym_for] = ACTIONS(1179), - [anon_sym_loop] = ACTIONS(1179), - [anon_sym_while] = ACTIONS(1179), - [anon_sym_do] = ACTIONS(1179), - [anon_sym_if] = ACTIONS(1179), - [anon_sym_match] = ACTIONS(1179), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_RBRACE] = ACTIONS(1179), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_try] = ACTIONS(1179), - [anon_sym_return] = ACTIONS(1179), - [anon_sym_source] = ACTIONS(1179), - [anon_sym_source_DASHenv] = ACTIONS(1179), - [anon_sym_register] = ACTIONS(1179), - [anon_sym_hide] = ACTIONS(1179), - [anon_sym_hide_DASHenv] = ACTIONS(1179), - [anon_sym_overlay] = ACTIONS(1179), - [anon_sym_as] = ACTIONS(1179), - [anon_sym_where] = ACTIONS(1179), - [anon_sym_not] = ACTIONS(1179), - [anon_sym_DOT] = ACTIONS(3854), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), - [anon_sym_DOT_DOT_LT] = ACTIONS(1179), - [anon_sym_null] = ACTIONS(1179), - [anon_sym_true] = ACTIONS(1179), - [anon_sym_false] = ACTIONS(1179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1179), - [aux_sym__val_number_decimal_token2] = ACTIONS(1179), - [anon_sym_DOT2] = ACTIONS(1179), - [aux_sym__val_number_decimal_token3] = ACTIONS(1179), - [aux_sym__val_number_token1] = ACTIONS(1179), - [aux_sym__val_number_token2] = ACTIONS(1179), - [aux_sym__val_number_token3] = ACTIONS(1179), - [aux_sym__val_number_token4] = ACTIONS(1179), - [aux_sym__val_number_token5] = ACTIONS(1179), - [aux_sym__val_number_token6] = ACTIONS(1179), - [anon_sym_0b] = ACTIONS(1179), - [anon_sym_0o] = ACTIONS(1179), - [anon_sym_0x] = ACTIONS(1179), - [sym_val_date] = ACTIONS(1179), - [anon_sym_DQUOTE] = ACTIONS(1179), - [sym__str_single_quotes] = ACTIONS(1179), - [sym__str_back_ticks] = ACTIONS(1179), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1179), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), - [anon_sym_CARET] = ACTIONS(1179), - [anon_sym_POUND] = ACTIONS(113), + [1613] = { + [sym_expr_unary] = STATE(6016), + [sym__expr_unary_minus] = STATE(5999), + [sym_expr_binary] = STATE(6016), + [sym__expr_binary_expression] = STATE(6284), + [sym_expr_parenthesized] = STATE(6016), + [sym__val_range] = STATE(10131), + [sym__value] = STATE(6016), + [sym_val_nothing] = STATE(6108), + [sym_val_bool] = STATE(6104), + [sym_val_variable] = STATE(6108), + [sym__var] = STATE(5517), + [sym_val_number] = STATE(6108), + [sym__val_number_decimal] = STATE(4685), + [sym__val_number] = STATE(6110), + [sym_val_duration] = STATE(6108), + [sym_val_filesize] = STATE(6108), + [sym_val_binary] = STATE(6108), + [sym_val_string] = STATE(6108), + [sym__str_double_quotes] = STATE(6195), + [sym_val_interpolated] = STATE(6108), + [sym__inter_single_quotes] = STATE(6197), + [sym__inter_double_quotes] = STATE(6198), + [sym_val_list] = STATE(6108), + [sym_val_record] = STATE(6108), + [sym_val_table] = STATE(6108), + [sym_val_closure] = STATE(6108), + [sym_unquoted] = STATE(6030), + [sym__unquoted_anonymous_prefix] = STATE(10281), + [sym_comment] = STATE(1613), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(5039), + [anon_sym_DOLLAR] = ACTIONS(5041), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_DOT_DOT] = ACTIONS(5043), + [anon_sym_not] = ACTIONS(4172), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5045), + [anon_sym_DOT_DOT_LT] = ACTIONS(5045), + [anon_sym_null] = ACTIONS(5047), + [anon_sym_true] = ACTIONS(5049), + [anon_sym_false] = ACTIONS(5049), + [aux_sym__val_number_decimal_token1] = ACTIONS(5051), + [aux_sym__val_number_decimal_token2] = ACTIONS(5053), + [anon_sym_DOT2] = ACTIONS(5055), + [aux_sym__val_number_decimal_token3] = ACTIONS(5057), + [aux_sym__val_number_token1] = ACTIONS(2828), + [aux_sym__val_number_token2] = ACTIONS(2828), + [aux_sym__val_number_token3] = ACTIONS(2828), + [aux_sym__val_number_token4] = ACTIONS(5059), + [aux_sym__val_number_token5] = ACTIONS(5059), + [aux_sym__val_number_token6] = ACTIONS(5059), + [anon_sym_0b] = ACTIONS(2832), + [anon_sym_0o] = ACTIONS(2834), + [anon_sym_0x] = ACTIONS(2834), + [sym_val_date] = ACTIONS(5061), + [anon_sym_DQUOTE] = ACTIONS(4192), + [sym__str_single_quotes] = ACTIONS(4194), + [sym__str_back_ticks] = ACTIONS(4194), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2844), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5063), + [anon_sym_POUND] = ACTIONS(3), }, - [1401] = { - [sym_cell_path] = STATE(1882), - [sym_path] = STATE(1429), - [sym_comment] = STATE(1401), - [anon_sym_LBRACK] = ACTIONS(1179), - [anon_sym_COMMA] = ACTIONS(1179), - [anon_sym_RBRACK] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1179), - [anon_sym_DOLLAR] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1179), - [anon_sym_DASH] = ACTIONS(1179), - [anon_sym_in] = ACTIONS(1179), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_STAR] = ACTIONS(1179), - [anon_sym_STAR_STAR] = ACTIONS(1179), - [anon_sym_PLUS_PLUS] = ACTIONS(1179), - [anon_sym_SLASH] = ACTIONS(1179), - [anon_sym_mod] = ACTIONS(1179), - [anon_sym_SLASH_SLASH] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1179), - [anon_sym_bit_DASHshl] = ACTIONS(1179), - [anon_sym_bit_DASHshr] = ACTIONS(1179), - [anon_sym_EQ_EQ] = ACTIONS(1179), - [anon_sym_BANG_EQ] = ACTIONS(1179), - [anon_sym_LT2] = ACTIONS(1179), - [anon_sym_LT_EQ] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(1179), - [anon_sym_not_DASHin] = ACTIONS(1179), - [anon_sym_starts_DASHwith] = ACTIONS(1179), - [anon_sym_ends_DASHwith] = ACTIONS(1179), - [anon_sym_EQ_TILDE] = ACTIONS(1179), - [anon_sym_BANG_TILDE] = ACTIONS(1179), - [anon_sym_bit_DASHand] = ACTIONS(1179), - [anon_sym_bit_DASHxor] = ACTIONS(1179), - [anon_sym_bit_DASHor] = ACTIONS(1179), - [anon_sym_and] = ACTIONS(1179), - [anon_sym_xor] = ACTIONS(1179), - [anon_sym_or] = ACTIONS(1179), - [anon_sym_DOT] = ACTIONS(3858), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), - [anon_sym_DOT_DOT_LT] = ACTIONS(1179), - [anon_sym_null] = ACTIONS(1179), - [anon_sym_true] = ACTIONS(1179), - [anon_sym_false] = ACTIONS(1179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1179), - [aux_sym__val_number_decimal_token2] = ACTIONS(1179), - [anon_sym_DOT2] = ACTIONS(1179), - [aux_sym__val_number_decimal_token3] = ACTIONS(1179), - [aux_sym__val_number_token1] = ACTIONS(1179), - [aux_sym__val_number_token2] = ACTIONS(1179), - [aux_sym__val_number_token3] = ACTIONS(1179), - [aux_sym__val_number_token4] = ACTIONS(1179), - [aux_sym__val_number_token5] = ACTIONS(1179), - [aux_sym__val_number_token6] = ACTIONS(1179), - [anon_sym_0b] = ACTIONS(1179), - [anon_sym_0o] = ACTIONS(1179), - [anon_sym_0x] = ACTIONS(1179), - [sym_val_date] = ACTIONS(1179), - [anon_sym_DQUOTE] = ACTIONS(1179), - [sym__str_single_quotes] = ACTIONS(1179), - [sym__str_back_ticks] = ACTIONS(1179), - [sym__entry_separator] = ACTIONS(1181), - [anon_sym_err_GT] = ACTIONS(1179), - [anon_sym_out_GT] = ACTIONS(1179), - [anon_sym_e_GT] = ACTIONS(1179), - [anon_sym_o_GT] = ACTIONS(1179), - [anon_sym_err_PLUSout_GT] = ACTIONS(1179), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1179), - [anon_sym_o_PLUSe_GT] = ACTIONS(1179), - [anon_sym_e_PLUSo_GT] = ACTIONS(1179), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1179), - [anon_sym_POUND] = ACTIONS(113), + [1614] = { + [sym_expr_unary] = STATE(6016), + [sym__expr_unary_minus] = STATE(5999), + [sym_expr_binary] = STATE(6016), + [sym__expr_binary_expression] = STATE(6315), + [sym_expr_parenthesized] = STATE(6016), + [sym__val_range] = STATE(10131), + [sym__value] = STATE(6016), + [sym_val_nothing] = STATE(6108), + [sym_val_bool] = STATE(6104), + [sym_val_variable] = STATE(6108), + [sym__var] = STATE(5517), + [sym_val_number] = STATE(6108), + [sym__val_number_decimal] = STATE(4685), + [sym__val_number] = STATE(6110), + [sym_val_duration] = STATE(6108), + [sym_val_filesize] = STATE(6108), + [sym_val_binary] = STATE(6108), + [sym_val_string] = STATE(6108), + [sym__str_double_quotes] = STATE(6195), + [sym_val_interpolated] = STATE(6108), + [sym__inter_single_quotes] = STATE(6197), + [sym__inter_double_quotes] = STATE(6198), + [sym_val_list] = STATE(6108), + [sym_val_record] = STATE(6108), + [sym_val_table] = STATE(6108), + [sym_val_closure] = STATE(6108), + [sym_unquoted] = STATE(6031), + [sym__unquoted_anonymous_prefix] = STATE(10281), + [sym_comment] = STATE(1614), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(5039), + [anon_sym_DOLLAR] = ACTIONS(5041), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_DOT_DOT] = ACTIONS(5043), + [anon_sym_not] = ACTIONS(4172), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5045), + [anon_sym_DOT_DOT_LT] = ACTIONS(5045), + [anon_sym_null] = ACTIONS(5047), + [anon_sym_true] = ACTIONS(5049), + [anon_sym_false] = ACTIONS(5049), + [aux_sym__val_number_decimal_token1] = ACTIONS(5051), + [aux_sym__val_number_decimal_token2] = ACTIONS(5053), + [anon_sym_DOT2] = ACTIONS(5055), + [aux_sym__val_number_decimal_token3] = ACTIONS(5057), + [aux_sym__val_number_token1] = ACTIONS(2828), + [aux_sym__val_number_token2] = ACTIONS(2828), + [aux_sym__val_number_token3] = ACTIONS(2828), + [aux_sym__val_number_token4] = ACTIONS(5059), + [aux_sym__val_number_token5] = ACTIONS(5059), + [aux_sym__val_number_token6] = ACTIONS(5059), + [anon_sym_0b] = ACTIONS(2832), + [anon_sym_0o] = ACTIONS(2834), + [anon_sym_0x] = ACTIONS(2834), + [sym_val_date] = ACTIONS(5061), + [anon_sym_DQUOTE] = ACTIONS(4192), + [sym__str_single_quotes] = ACTIONS(4194), + [sym__str_back_ticks] = ACTIONS(4194), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2844), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5063), + [anon_sym_POUND] = ACTIONS(3), }, - [1402] = { - [sym_path] = STATE(1644), - [sym_comment] = STATE(1402), - [aux_sym_cell_path_repeat1] = STATE(1402), - [ts_builtin_sym_end] = ACTIONS(1001), - [anon_sym_export] = ACTIONS(999), - [anon_sym_alias] = ACTIONS(999), - [anon_sym_let] = ACTIONS(999), - [anon_sym_let_DASHenv] = ACTIONS(999), - [anon_sym_mut] = ACTIONS(999), - [anon_sym_const] = ACTIONS(999), - [anon_sym_SEMI] = ACTIONS(999), - [sym_cmd_identifier] = ACTIONS(999), - [anon_sym_LF] = ACTIONS(1001), - [anon_sym_def] = ACTIONS(999), - [anon_sym_export_DASHenv] = ACTIONS(999), - [anon_sym_extern] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_use] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_error] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_break] = ACTIONS(999), - [anon_sym_continue] = ACTIONS(999), - [anon_sym_for] = ACTIONS(999), - [anon_sym_loop] = ACTIONS(999), - [anon_sym_while] = ACTIONS(999), - [anon_sym_do] = ACTIONS(999), - [anon_sym_if] = ACTIONS(999), - [anon_sym_match] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(999), - [anon_sym_DOT_DOT] = ACTIONS(999), - [anon_sym_try] = ACTIONS(999), - [anon_sym_return] = ACTIONS(999), - [anon_sym_source] = ACTIONS(999), - [anon_sym_source_DASHenv] = ACTIONS(999), - [anon_sym_register] = ACTIONS(999), - [anon_sym_hide] = ACTIONS(999), - [anon_sym_hide_DASHenv] = ACTIONS(999), - [anon_sym_overlay] = ACTIONS(999), - [anon_sym_where] = ACTIONS(999), - [anon_sym_not] = ACTIONS(999), - [anon_sym_DOT_DOT2] = ACTIONS(999), - [anon_sym_DOT] = ACTIONS(3994), - [anon_sym_DOT_DOT_EQ] = ACTIONS(999), - [anon_sym_DOT_DOT_LT] = ACTIONS(999), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1001), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1001), - [anon_sym_null] = ACTIONS(999), - [anon_sym_true] = ACTIONS(999), - [anon_sym_false] = ACTIONS(999), - [aux_sym__val_number_decimal_token1] = ACTIONS(999), - [aux_sym__val_number_decimal_token2] = ACTIONS(999), - [anon_sym_DOT2] = ACTIONS(999), - [aux_sym__val_number_decimal_token3] = ACTIONS(999), - [aux_sym__val_number_token1] = ACTIONS(999), - [aux_sym__val_number_token2] = ACTIONS(999), - [aux_sym__val_number_token3] = ACTIONS(999), - [aux_sym__val_number_token4] = ACTIONS(999), - [aux_sym__val_number_token5] = ACTIONS(999), - [aux_sym__val_number_token6] = ACTIONS(999), - [anon_sym_0b] = ACTIONS(999), - [anon_sym_0o] = ACTIONS(999), - [anon_sym_0x] = ACTIONS(999), - [sym_val_date] = ACTIONS(999), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym__str_single_quotes] = ACTIONS(999), - [sym__str_back_ticks] = ACTIONS(999), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(999), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(999), - [anon_sym_CARET] = ACTIONS(999), - [anon_sym_POUND] = ACTIONS(113), + [1615] = { + [sym_expr_unary] = STATE(6016), + [sym__expr_unary_minus] = STATE(5999), + [sym_expr_binary] = STATE(6016), + [sym__expr_binary_expression] = STATE(6318), + [sym_expr_parenthesized] = STATE(6016), + [sym__val_range] = STATE(10131), + [sym__value] = STATE(6016), + [sym_val_nothing] = STATE(6108), + [sym_val_bool] = STATE(6104), + [sym_val_variable] = STATE(6108), + [sym__var] = STATE(5517), + [sym_val_number] = STATE(6108), + [sym__val_number_decimal] = STATE(4685), + [sym__val_number] = STATE(6110), + [sym_val_duration] = STATE(6108), + [sym_val_filesize] = STATE(6108), + [sym_val_binary] = STATE(6108), + [sym_val_string] = STATE(6108), + [sym__str_double_quotes] = STATE(6195), + [sym_val_interpolated] = STATE(6108), + [sym__inter_single_quotes] = STATE(6197), + [sym__inter_double_quotes] = STATE(6198), + [sym_val_list] = STATE(6108), + [sym_val_record] = STATE(6108), + [sym_val_table] = STATE(6108), + [sym_val_closure] = STATE(6108), + [sym_unquoted] = STATE(6032), + [sym__unquoted_anonymous_prefix] = STATE(10281), + [sym_comment] = STATE(1615), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(5039), + [anon_sym_DOLLAR] = ACTIONS(5041), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_DOT_DOT] = ACTIONS(5043), + [anon_sym_not] = ACTIONS(4172), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5045), + [anon_sym_DOT_DOT_LT] = ACTIONS(5045), + [anon_sym_null] = ACTIONS(5047), + [anon_sym_true] = ACTIONS(5049), + [anon_sym_false] = ACTIONS(5049), + [aux_sym__val_number_decimal_token1] = ACTIONS(5051), + [aux_sym__val_number_decimal_token2] = ACTIONS(5053), + [anon_sym_DOT2] = ACTIONS(5055), + [aux_sym__val_number_decimal_token3] = ACTIONS(5057), + [aux_sym__val_number_token1] = ACTIONS(2828), + [aux_sym__val_number_token2] = ACTIONS(2828), + [aux_sym__val_number_token3] = ACTIONS(2828), + [aux_sym__val_number_token4] = ACTIONS(5059), + [aux_sym__val_number_token5] = ACTIONS(5059), + [aux_sym__val_number_token6] = ACTIONS(5059), + [anon_sym_0b] = ACTIONS(2832), + [anon_sym_0o] = ACTIONS(2834), + [anon_sym_0x] = ACTIONS(2834), + [sym_val_date] = ACTIONS(5061), + [anon_sym_DQUOTE] = ACTIONS(4192), + [sym__str_single_quotes] = ACTIONS(4194), + [sym__str_back_ticks] = ACTIONS(4194), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2844), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5063), + [anon_sym_POUND] = ACTIONS(3), }, - [1403] = { - [sym_cell_path] = STATE(1813), - [sym_path] = STATE(1361), - [sym_comment] = STATE(1403), - [anon_sym_export] = ACTIONS(1154), - [anon_sym_alias] = ACTIONS(1154), - [anon_sym_let] = ACTIONS(1154), - [anon_sym_let_DASHenv] = ACTIONS(1154), - [anon_sym_mut] = ACTIONS(1154), - [anon_sym_const] = ACTIONS(1154), - [anon_sym_SEMI] = ACTIONS(1154), - [sym_cmd_identifier] = ACTIONS(1154), - [anon_sym_LF] = ACTIONS(1156), - [anon_sym_def] = ACTIONS(1154), - [anon_sym_export_DASHenv] = ACTIONS(1154), - [anon_sym_extern] = ACTIONS(1154), - [anon_sym_module] = ACTIONS(1154), - [anon_sym_use] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_RPAREN] = ACTIONS(1154), - [anon_sym_DOLLAR] = ACTIONS(1154), - [anon_sym_error] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [anon_sym_DASH] = ACTIONS(1154), - [anon_sym_break] = ACTIONS(1154), - [anon_sym_continue] = ACTIONS(1154), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_loop] = ACTIONS(1154), - [anon_sym_while] = ACTIONS(1154), - [anon_sym_do] = ACTIONS(1154), - [anon_sym_if] = ACTIONS(1154), - [anon_sym_match] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(1154), - [anon_sym_RBRACE] = ACTIONS(1154), - [anon_sym_DOT_DOT] = ACTIONS(1154), - [anon_sym_try] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(1154), - [anon_sym_source] = ACTIONS(1154), - [anon_sym_source_DASHenv] = ACTIONS(1154), - [anon_sym_register] = ACTIONS(1154), - [anon_sym_hide] = ACTIONS(1154), - [anon_sym_hide_DASHenv] = ACTIONS(1154), - [anon_sym_overlay] = ACTIONS(1154), - [anon_sym_as] = ACTIONS(1154), - [anon_sym_where] = ACTIONS(1154), - [anon_sym_not] = ACTIONS(1154), - [anon_sym_DOT] = ACTIONS(3854), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1154), - [anon_sym_DOT_DOT_LT] = ACTIONS(1154), - [anon_sym_null] = ACTIONS(1154), - [anon_sym_true] = ACTIONS(1154), - [anon_sym_false] = ACTIONS(1154), - [aux_sym__val_number_decimal_token1] = ACTIONS(1154), - [aux_sym__val_number_decimal_token2] = ACTIONS(1154), - [anon_sym_DOT2] = ACTIONS(1154), - [aux_sym__val_number_decimal_token3] = ACTIONS(1154), - [aux_sym__val_number_token1] = ACTIONS(1154), - [aux_sym__val_number_token2] = ACTIONS(1154), - [aux_sym__val_number_token3] = ACTIONS(1154), - [aux_sym__val_number_token4] = ACTIONS(1154), - [aux_sym__val_number_token5] = ACTIONS(1154), - [aux_sym__val_number_token6] = ACTIONS(1154), - [anon_sym_0b] = ACTIONS(1154), - [anon_sym_0o] = ACTIONS(1154), - [anon_sym_0x] = ACTIONS(1154), - [sym_val_date] = ACTIONS(1154), - [anon_sym_DQUOTE] = ACTIONS(1154), - [sym__str_single_quotes] = ACTIONS(1154), - [sym__str_back_ticks] = ACTIONS(1154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1154), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1154), - [anon_sym_CARET] = ACTIONS(1154), - [anon_sym_POUND] = ACTIONS(113), + [1616] = { + [sym_expr_unary] = STATE(6016), + [sym__expr_unary_minus] = STATE(5999), + [sym_expr_binary] = STATE(6016), + [sym__expr_binary_expression] = STATE(6320), + [sym_expr_parenthesized] = STATE(6016), + [sym__val_range] = STATE(10131), + [sym__value] = STATE(6016), + [sym_val_nothing] = STATE(6108), + [sym_val_bool] = STATE(6104), + [sym_val_variable] = STATE(6108), + [sym__var] = STATE(5517), + [sym_val_number] = STATE(6108), + [sym__val_number_decimal] = STATE(4685), + [sym__val_number] = STATE(6110), + [sym_val_duration] = STATE(6108), + [sym_val_filesize] = STATE(6108), + [sym_val_binary] = STATE(6108), + [sym_val_string] = STATE(6108), + [sym__str_double_quotes] = STATE(6195), + [sym_val_interpolated] = STATE(6108), + [sym__inter_single_quotes] = STATE(6197), + [sym__inter_double_quotes] = STATE(6198), + [sym_val_list] = STATE(6108), + [sym_val_record] = STATE(6108), + [sym_val_table] = STATE(6108), + [sym_val_closure] = STATE(6108), + [sym_unquoted] = STATE(6033), + [sym__unquoted_anonymous_prefix] = STATE(10281), + [sym_comment] = STATE(1616), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(5039), + [anon_sym_DOLLAR] = ACTIONS(5041), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_DOT_DOT] = ACTIONS(5043), + [anon_sym_not] = ACTIONS(4172), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5045), + [anon_sym_DOT_DOT_LT] = ACTIONS(5045), + [anon_sym_null] = ACTIONS(5047), + [anon_sym_true] = ACTIONS(5049), + [anon_sym_false] = ACTIONS(5049), + [aux_sym__val_number_decimal_token1] = ACTIONS(5051), + [aux_sym__val_number_decimal_token2] = ACTIONS(5053), + [anon_sym_DOT2] = ACTIONS(5055), + [aux_sym__val_number_decimal_token3] = ACTIONS(5057), + [aux_sym__val_number_token1] = ACTIONS(2828), + [aux_sym__val_number_token2] = ACTIONS(2828), + [aux_sym__val_number_token3] = ACTIONS(2828), + [aux_sym__val_number_token4] = ACTIONS(5059), + [aux_sym__val_number_token5] = ACTIONS(5059), + [aux_sym__val_number_token6] = ACTIONS(5059), + [anon_sym_0b] = ACTIONS(2832), + [anon_sym_0o] = ACTIONS(2834), + [anon_sym_0x] = ACTIONS(2834), + [sym_val_date] = ACTIONS(5061), + [anon_sym_DQUOTE] = ACTIONS(4192), + [sym__str_single_quotes] = ACTIONS(4194), + [sym__str_back_ticks] = ACTIONS(4194), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2844), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5063), + [anon_sym_POUND] = ACTIONS(3), }, - [1404] = { - [sym_comment] = STATE(1404), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_alias] = ACTIONS(1158), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_let_DASHenv] = ACTIONS(1158), - [anon_sym_mut] = ACTIONS(1158), - [anon_sym_const] = ACTIONS(1158), - [anon_sym_SEMI] = ACTIONS(1158), - [sym_cmd_identifier] = ACTIONS(1158), - [anon_sym_LF] = ACTIONS(1160), - [anon_sym_def] = ACTIONS(1158), - [anon_sym_export_DASHenv] = ACTIONS(1158), - [anon_sym_extern] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_use] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_LPAREN] = ACTIONS(1158), - [anon_sym_RPAREN] = ACTIONS(1158), - [anon_sym_DOLLAR] = ACTIONS(1158), - [anon_sym_error] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_break] = ACTIONS(1158), - [anon_sym_continue] = ACTIONS(1158), - [anon_sym_for] = ACTIONS(1158), - [anon_sym_loop] = ACTIONS(1158), - [anon_sym_while] = ACTIONS(1158), - [anon_sym_do] = ACTIONS(1158), - [anon_sym_if] = ACTIONS(1158), - [anon_sym_match] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1158), - [anon_sym_RBRACE] = ACTIONS(1158), - [anon_sym_DOT_DOT] = ACTIONS(1158), - [anon_sym_try] = ACTIONS(1158), - [anon_sym_return] = ACTIONS(1158), - [anon_sym_source] = ACTIONS(1158), - [anon_sym_source_DASHenv] = ACTIONS(1158), - [anon_sym_register] = ACTIONS(1158), - [anon_sym_hide] = ACTIONS(1158), - [anon_sym_hide_DASHenv] = ACTIONS(1158), - [anon_sym_overlay] = ACTIONS(1158), - [anon_sym_as] = ACTIONS(1158), - [anon_sym_where] = ACTIONS(1158), - [anon_sym_not] = ACTIONS(1158), - [anon_sym_DOT_DOT2] = ACTIONS(1162), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1158), - [anon_sym_DOT_DOT_LT] = ACTIONS(1158), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1164), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1164), - [anon_sym_null] = ACTIONS(1158), - [anon_sym_true] = ACTIONS(1158), - [anon_sym_false] = ACTIONS(1158), - [aux_sym__val_number_decimal_token1] = ACTIONS(1158), - [aux_sym__val_number_decimal_token2] = ACTIONS(1158), - [anon_sym_DOT2] = ACTIONS(1158), - [aux_sym__val_number_decimal_token3] = ACTIONS(1158), - [aux_sym__val_number_token1] = ACTIONS(1158), - [aux_sym__val_number_token2] = ACTIONS(1158), - [aux_sym__val_number_token3] = ACTIONS(1158), - [aux_sym__val_number_token4] = ACTIONS(1158), - [aux_sym__val_number_token5] = ACTIONS(1158), - [aux_sym__val_number_token6] = ACTIONS(1158), - [anon_sym_0b] = ACTIONS(1158), - [anon_sym_0o] = ACTIONS(1158), - [anon_sym_0x] = ACTIONS(1158), - [sym_val_date] = ACTIONS(1158), - [anon_sym_DQUOTE] = ACTIONS(1158), - [sym__str_single_quotes] = ACTIONS(1158), - [sym__str_back_ticks] = ACTIONS(1158), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1158), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1158), - [anon_sym_CARET] = ACTIONS(1158), + [1617] = { + [sym_comment] = STATE(1617), + [ts_builtin_sym_end] = ACTIONS(4738), + [anon_sym_export] = ACTIONS(4734), + [anon_sym_alias] = ACTIONS(4734), + [anon_sym_let] = ACTIONS(4734), + [anon_sym_let_DASHenv] = ACTIONS(4734), + [anon_sym_mut] = ACTIONS(4734), + [anon_sym_const] = ACTIONS(4734), + [anon_sym_SEMI] = ACTIONS(4734), + [sym_cmd_identifier] = ACTIONS(4734), + [sym_long_flag_identifier] = ACTIONS(5065), + [anon_sym_LF] = ACTIONS(4738), + [anon_sym_def] = ACTIONS(4734), + [anon_sym_export_DASHenv] = ACTIONS(4734), + [anon_sym_extern] = ACTIONS(4734), + [anon_sym_module] = ACTIONS(4734), + [anon_sym_use] = ACTIONS(4734), + [anon_sym_LBRACK] = ACTIONS(4734), + [anon_sym_LPAREN] = ACTIONS(4734), + [anon_sym_DOLLAR] = ACTIONS(4734), + [anon_sym_error] = ACTIONS(4734), + [anon_sym_DASH_DASH] = ACTIONS(4734), + [anon_sym_DASH] = ACTIONS(4734), + [anon_sym_break] = ACTIONS(4734), + [anon_sym_continue] = ACTIONS(4734), + [anon_sym_for] = ACTIONS(4734), + [anon_sym_loop] = ACTIONS(4734), + [anon_sym_while] = ACTIONS(4734), + [anon_sym_do] = ACTIONS(4734), + [anon_sym_if] = ACTIONS(4734), + [anon_sym_match] = ACTIONS(4734), + [anon_sym_LBRACE] = ACTIONS(4734), + [anon_sym_DOT_DOT] = ACTIONS(4734), + [anon_sym_try] = ACTIONS(4734), + [anon_sym_return] = ACTIONS(4734), + [anon_sym_source] = ACTIONS(4734), + [anon_sym_source_DASHenv] = ACTIONS(4734), + [anon_sym_register] = ACTIONS(4734), + [anon_sym_hide] = ACTIONS(4734), + [anon_sym_hide_DASHenv] = ACTIONS(4734), + [anon_sym_overlay] = ACTIONS(4734), + [anon_sym_as] = ACTIONS(4734), + [anon_sym_where] = ACTIONS(4734), + [anon_sym_not] = ACTIONS(4734), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4734), + [anon_sym_DOT_DOT_LT] = ACTIONS(4734), + [anon_sym_null] = ACTIONS(4734), + [anon_sym_true] = ACTIONS(4734), + [anon_sym_false] = ACTIONS(4734), + [aux_sym__val_number_decimal_token1] = ACTIONS(4734), + [aux_sym__val_number_decimal_token2] = ACTIONS(4734), + [anon_sym_DOT2] = ACTIONS(4734), + [aux_sym__val_number_decimal_token3] = ACTIONS(4734), + [aux_sym__val_number_token1] = ACTIONS(4734), + [aux_sym__val_number_token2] = ACTIONS(4734), + [aux_sym__val_number_token3] = ACTIONS(4734), + [aux_sym__val_number_token4] = ACTIONS(4734), + [aux_sym__val_number_token5] = ACTIONS(4734), + [aux_sym__val_number_token6] = ACTIONS(4734), + [anon_sym_0b] = ACTIONS(4734), + [anon_sym_0o] = ACTIONS(4734), + [anon_sym_0x] = ACTIONS(4734), + [sym_val_date] = ACTIONS(4734), + [anon_sym_DQUOTE] = ACTIONS(4734), + [sym__str_single_quotes] = ACTIONS(4734), + [sym__str_back_ticks] = ACTIONS(4734), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4734), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4734), + [anon_sym_CARET] = ACTIONS(4734), [anon_sym_POUND] = ACTIONS(113), }, - [1405] = { - [sym_comment] = STATE(1405), - [anon_sym_LBRACK] = ACTIONS(1119), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_LPAREN] = ACTIONS(1119), - [anon_sym_DOLLAR] = ACTIONS(1119), - [anon_sym_GT] = ACTIONS(1117), - [anon_sym_DASH_DASH] = ACTIONS(1119), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1117), - [anon_sym_LBRACE] = ACTIONS(1119), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_STAR] = ACTIONS(1117), - [anon_sym_STAR_STAR] = ACTIONS(1119), - [anon_sym_PLUS_PLUS] = ACTIONS(1119), - [anon_sym_SLASH] = ACTIONS(1117), - [anon_sym_mod] = ACTIONS(1119), - [anon_sym_SLASH_SLASH] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1117), - [anon_sym_bit_DASHshl] = ACTIONS(1119), - [anon_sym_bit_DASHshr] = ACTIONS(1119), - [anon_sym_EQ_EQ] = ACTIONS(1119), - [anon_sym_BANG_EQ] = ACTIONS(1119), - [anon_sym_LT2] = ACTIONS(1117), - [anon_sym_LT_EQ] = ACTIONS(1119), - [anon_sym_GT_EQ] = ACTIONS(1119), - [anon_sym_not_DASHin] = ACTIONS(1119), - [anon_sym_starts_DASHwith] = ACTIONS(1119), - [anon_sym_ends_DASHwith] = ACTIONS(1119), - [anon_sym_EQ_TILDE] = ACTIONS(1119), - [anon_sym_BANG_TILDE] = ACTIONS(1119), - [anon_sym_bit_DASHand] = ACTIONS(1119), - [anon_sym_bit_DASHxor] = ACTIONS(1119), - [anon_sym_bit_DASHor] = ACTIONS(1119), - [anon_sym_and] = ACTIONS(1119), - [anon_sym_xor] = ACTIONS(1119), - [anon_sym_or] = ACTIONS(1119), - [anon_sym_DOT_DOT2] = ACTIONS(1117), - [anon_sym_DOT] = ACTIONS(1117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1117), - [anon_sym_DOT_DOT_LT] = ACTIONS(1117), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1119), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1119), - [anon_sym_null] = ACTIONS(1119), - [anon_sym_true] = ACTIONS(1119), - [anon_sym_false] = ACTIONS(1119), - [aux_sym__val_number_decimal_token1] = ACTIONS(1117), - [aux_sym__val_number_decimal_token2] = ACTIONS(1119), - [anon_sym_DOT2] = ACTIONS(1117), - [aux_sym__val_number_decimal_token3] = ACTIONS(1119), - [aux_sym__val_number_token1] = ACTIONS(1119), - [aux_sym__val_number_token2] = ACTIONS(1119), - [aux_sym__val_number_token3] = ACTIONS(1119), - [aux_sym__val_number_token4] = ACTIONS(1119), - [aux_sym__val_number_token5] = ACTIONS(1119), - [aux_sym__val_number_token6] = ACTIONS(1119), - [anon_sym_0b] = ACTIONS(1117), - [anon_sym_0o] = ACTIONS(1117), - [anon_sym_0x] = ACTIONS(1117), - [sym_val_date] = ACTIONS(1119), - [anon_sym_DQUOTE] = ACTIONS(1119), - [sym__str_single_quotes] = ACTIONS(1119), - [sym__str_back_ticks] = ACTIONS(1119), - [anon_sym_err_GT] = ACTIONS(1119), - [anon_sym_out_GT] = ACTIONS(1119), - [anon_sym_e_GT] = ACTIONS(1119), - [anon_sym_o_GT] = ACTIONS(1119), - [anon_sym_err_PLUSout_GT] = ACTIONS(1119), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1119), - [anon_sym_o_PLUSe_GT] = ACTIONS(1119), - [anon_sym_e_PLUSo_GT] = ACTIONS(1119), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1117), + [1618] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6356), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6234), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4982), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5813), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1618), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(5035), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4787), + [anon_sym_DOT_DOT_LT] = ACTIONS(4787), + [anon_sym_null] = ACTIONS(3669), + [anon_sym_true] = ACTIONS(3671), + [anon_sym_false] = ACTIONS(3671), + [aux_sym__val_number_decimal_token1] = ACTIONS(3673), + [aux_sym__val_number_decimal_token2] = ACTIONS(3675), + [anon_sym_DOT2] = ACTIONS(5037), + [aux_sym__val_number_decimal_token3] = ACTIONS(3679), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(3681), + [aux_sym__val_number_token5] = ACTIONS(3681), + [aux_sym__val_number_token6] = ACTIONS(3681), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(3683), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), [anon_sym_POUND] = ACTIONS(3), }, - [1406] = { - [sym_comment] = STATE(1406), - [anon_sym_export] = ACTIONS(1168), - [anon_sym_alias] = ACTIONS(1168), - [anon_sym_let] = ACTIONS(1168), - [anon_sym_let_DASHenv] = ACTIONS(1168), - [anon_sym_mut] = ACTIONS(1168), - [anon_sym_const] = ACTIONS(1168), - [anon_sym_SEMI] = ACTIONS(1168), - [sym_cmd_identifier] = ACTIONS(1168), - [anon_sym_LF] = ACTIONS(1170), - [anon_sym_def] = ACTIONS(1168), - [anon_sym_export_DASHenv] = ACTIONS(1168), - [anon_sym_extern] = ACTIONS(1168), - [anon_sym_module] = ACTIONS(1168), - [anon_sym_use] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_RPAREN] = ACTIONS(1168), - [anon_sym_DOLLAR] = ACTIONS(1168), - [anon_sym_error] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1168), - [anon_sym_break] = ACTIONS(1168), - [anon_sym_continue] = ACTIONS(1168), - [anon_sym_for] = ACTIONS(1168), - [anon_sym_loop] = ACTIONS(1168), - [anon_sym_while] = ACTIONS(1168), - [anon_sym_do] = ACTIONS(1168), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_match] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1168), - [anon_sym_RBRACE] = ACTIONS(1168), - [anon_sym_DOT_DOT] = ACTIONS(1168), - [anon_sym_try] = ACTIONS(1168), - [anon_sym_return] = ACTIONS(1168), - [anon_sym_source] = ACTIONS(1168), - [anon_sym_source_DASHenv] = ACTIONS(1168), - [anon_sym_register] = ACTIONS(1168), - [anon_sym_hide] = ACTIONS(1168), - [anon_sym_hide_DASHenv] = ACTIONS(1168), - [anon_sym_overlay] = ACTIONS(1168), - [anon_sym_as] = ACTIONS(1168), - [anon_sym_where] = ACTIONS(1168), - [anon_sym_not] = ACTIONS(1168), - [anon_sym_DOT_DOT2] = ACTIONS(1168), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1168), - [anon_sym_DOT_DOT_LT] = ACTIONS(1168), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1170), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1170), - [anon_sym_null] = ACTIONS(1168), - [anon_sym_true] = ACTIONS(1168), - [anon_sym_false] = ACTIONS(1168), - [aux_sym__val_number_decimal_token1] = ACTIONS(1168), - [aux_sym__val_number_decimal_token2] = ACTIONS(1168), - [anon_sym_DOT2] = ACTIONS(1168), - [aux_sym__val_number_decimal_token3] = ACTIONS(1168), - [aux_sym__val_number_token1] = ACTIONS(1168), - [aux_sym__val_number_token2] = ACTIONS(1168), - [aux_sym__val_number_token3] = ACTIONS(1168), - [aux_sym__val_number_token4] = ACTIONS(1168), - [aux_sym__val_number_token5] = ACTIONS(1168), - [aux_sym__val_number_token6] = ACTIONS(1168), - [anon_sym_0b] = ACTIONS(1168), - [anon_sym_0o] = ACTIONS(1168), - [anon_sym_0x] = ACTIONS(1168), - [sym_val_date] = ACTIONS(1168), - [anon_sym_DQUOTE] = ACTIONS(1168), - [sym__str_single_quotes] = ACTIONS(1168), - [sym__str_back_ticks] = ACTIONS(1168), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1168), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1168), - [anon_sym_CARET] = ACTIONS(1168), - [anon_sym_POUND] = ACTIONS(113), + [1619] = { + [sym_expr_unary] = STATE(5617), + [sym__expr_unary_minus] = STATE(5585), + [sym_expr_binary] = STATE(5617), + [sym__expr_binary_expression] = STATE(5618), + [sym_expr_parenthesized] = STATE(5617), + [sym__val_range] = STATE(10026), + [sym__value] = STATE(5617), + [sym_val_nothing] = STATE(5712), + [sym_val_bool] = STATE(5355), + [sym_val_variable] = STATE(5712), + [sym__var] = STATE(5006), + [sym_val_number] = STATE(5712), + [sym__val_number_decimal] = STATE(4210), + [sym__val_number] = STATE(5721), + [sym_val_duration] = STATE(5712), + [sym_val_filesize] = STATE(5712), + [sym_val_binary] = STATE(5712), + [sym_val_string] = STATE(5712), + [sym__str_double_quotes] = STATE(5860), + [sym_val_interpolated] = STATE(5712), + [sym__inter_single_quotes] = STATE(5666), + [sym__inter_double_quotes] = STATE(5668), + [sym_val_list] = STATE(5712), + [sym_val_record] = STATE(5712), + [sym_val_table] = STATE(5712), + [sym_val_closure] = STATE(5712), + [sym_unquoted] = STATE(5619), + [sym__unquoted_anonymous_prefix] = STATE(10802), + [sym_comment] = STATE(1619), + [anon_sym_LBRACK] = ACTIONS(3014), + [anon_sym_LPAREN] = ACTIONS(5067), + [anon_sym_DOLLAR] = ACTIONS(5069), + [anon_sym_DASH] = ACTIONS(3809), + [anon_sym_LBRACE] = ACTIONS(3020), + [anon_sym_DOT_DOT] = ACTIONS(5071), + [anon_sym_not] = ACTIONS(3813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5073), + [anon_sym_DOT_DOT_LT] = ACTIONS(5073), + [anon_sym_null] = ACTIONS(3817), + [anon_sym_true] = ACTIONS(3819), + [anon_sym_false] = ACTIONS(3819), + [aux_sym__val_number_decimal_token1] = ACTIONS(3821), + [aux_sym__val_number_decimal_token2] = ACTIONS(3823), + [anon_sym_DOT2] = ACTIONS(5075), + [aux_sym__val_number_decimal_token3] = ACTIONS(3827), + [aux_sym__val_number_token1] = ACTIONS(3032), + [aux_sym__val_number_token2] = ACTIONS(3032), + [aux_sym__val_number_token3] = ACTIONS(3032), + [aux_sym__val_number_token4] = ACTIONS(3829), + [aux_sym__val_number_token5] = ACTIONS(3829), + [aux_sym__val_number_token6] = ACTIONS(3829), + [anon_sym_0b] = ACTIONS(1814), + [anon_sym_0o] = ACTIONS(1816), + [anon_sym_0x] = ACTIONS(1816), + [sym_val_date] = ACTIONS(3831), + [anon_sym_DQUOTE] = ACTIONS(3038), + [sym__str_single_quotes] = ACTIONS(3040), + [sym__str_back_ticks] = ACTIONS(3040), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3042), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3044), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(1830), + [anon_sym_POUND] = ACTIONS(3), }, - [1407] = { - [sym_cell_path] = STATE(1814), - [sym_path] = STATE(1361), - [sym_comment] = STATE(1407), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_alias] = ACTIONS(1190), - [anon_sym_let] = ACTIONS(1190), - [anon_sym_let_DASHenv] = ACTIONS(1190), - [anon_sym_mut] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1190), - [anon_sym_SEMI] = ACTIONS(1190), - [sym_cmd_identifier] = ACTIONS(1190), - [anon_sym_LF] = ACTIONS(1192), - [anon_sym_def] = ACTIONS(1190), - [anon_sym_export_DASHenv] = ACTIONS(1190), - [anon_sym_extern] = ACTIONS(1190), - [anon_sym_module] = ACTIONS(1190), - [anon_sym_use] = ACTIONS(1190), - [anon_sym_LBRACK] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(1190), - [anon_sym_RPAREN] = ACTIONS(1190), - [anon_sym_DOLLAR] = ACTIONS(1190), - [anon_sym_error] = ACTIONS(1190), - [anon_sym_DASH_DASH] = ACTIONS(1190), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_loop] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [anon_sym_do] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_match] = ACTIONS(1190), - [anon_sym_LBRACE] = ACTIONS(1190), - [anon_sym_RBRACE] = ACTIONS(1190), - [anon_sym_DOT_DOT] = ACTIONS(1190), - [anon_sym_try] = ACTIONS(1190), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_source] = ACTIONS(1190), - [anon_sym_source_DASHenv] = ACTIONS(1190), - [anon_sym_register] = ACTIONS(1190), - [anon_sym_hide] = ACTIONS(1190), - [anon_sym_hide_DASHenv] = ACTIONS(1190), - [anon_sym_overlay] = ACTIONS(1190), - [anon_sym_as] = ACTIONS(1190), - [anon_sym_where] = ACTIONS(1190), - [anon_sym_not] = ACTIONS(1190), - [anon_sym_DOT] = ACTIONS(3854), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1190), - [anon_sym_DOT_DOT_LT] = ACTIONS(1190), - [anon_sym_null] = ACTIONS(1190), - [anon_sym_true] = ACTIONS(1190), - [anon_sym_false] = ACTIONS(1190), - [aux_sym__val_number_decimal_token1] = ACTIONS(1190), - [aux_sym__val_number_decimal_token2] = ACTIONS(1190), - [anon_sym_DOT2] = ACTIONS(1190), - [aux_sym__val_number_decimal_token3] = ACTIONS(1190), - [aux_sym__val_number_token1] = ACTIONS(1190), - [aux_sym__val_number_token2] = ACTIONS(1190), - [aux_sym__val_number_token3] = ACTIONS(1190), - [aux_sym__val_number_token4] = ACTIONS(1190), - [aux_sym__val_number_token5] = ACTIONS(1190), - [aux_sym__val_number_token6] = ACTIONS(1190), - [anon_sym_0b] = ACTIONS(1190), - [anon_sym_0o] = ACTIONS(1190), - [anon_sym_0x] = ACTIONS(1190), - [sym_val_date] = ACTIONS(1190), - [anon_sym_DQUOTE] = ACTIONS(1190), - [sym__str_single_quotes] = ACTIONS(1190), - [sym__str_back_ticks] = ACTIONS(1190), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1190), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1190), - [anon_sym_POUND] = ACTIONS(113), + [1620] = { + [sym_expr_unary] = STATE(5617), + [sym__expr_unary_minus] = STATE(5585), + [sym_expr_binary] = STATE(5617), + [sym__expr_binary_expression] = STATE(5620), + [sym_expr_parenthesized] = STATE(5617), + [sym__val_range] = STATE(10026), + [sym__value] = STATE(5617), + [sym_val_nothing] = STATE(5712), + [sym_val_bool] = STATE(5355), + [sym_val_variable] = STATE(5712), + [sym__var] = STATE(5006), + [sym_val_number] = STATE(5712), + [sym__val_number_decimal] = STATE(4210), + [sym__val_number] = STATE(5721), + [sym_val_duration] = STATE(5712), + [sym_val_filesize] = STATE(5712), + [sym_val_binary] = STATE(5712), + [sym_val_string] = STATE(5712), + [sym__str_double_quotes] = STATE(5860), + [sym_val_interpolated] = STATE(5712), + [sym__inter_single_quotes] = STATE(5666), + [sym__inter_double_quotes] = STATE(5668), + [sym_val_list] = STATE(5712), + [sym_val_record] = STATE(5712), + [sym_val_table] = STATE(5712), + [sym_val_closure] = STATE(5712), + [sym_unquoted] = STATE(5621), + [sym__unquoted_anonymous_prefix] = STATE(10802), + [sym_comment] = STATE(1620), + [anon_sym_LBRACK] = ACTIONS(3014), + [anon_sym_LPAREN] = ACTIONS(5067), + [anon_sym_DOLLAR] = ACTIONS(5069), + [anon_sym_DASH] = ACTIONS(3809), + [anon_sym_LBRACE] = ACTIONS(3020), + [anon_sym_DOT_DOT] = ACTIONS(5071), + [anon_sym_not] = ACTIONS(3813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5073), + [anon_sym_DOT_DOT_LT] = ACTIONS(5073), + [anon_sym_null] = ACTIONS(3817), + [anon_sym_true] = ACTIONS(3819), + [anon_sym_false] = ACTIONS(3819), + [aux_sym__val_number_decimal_token1] = ACTIONS(3821), + [aux_sym__val_number_decimal_token2] = ACTIONS(3823), + [anon_sym_DOT2] = ACTIONS(5075), + [aux_sym__val_number_decimal_token3] = ACTIONS(3827), + [aux_sym__val_number_token1] = ACTIONS(3032), + [aux_sym__val_number_token2] = ACTIONS(3032), + [aux_sym__val_number_token3] = ACTIONS(3032), + [aux_sym__val_number_token4] = ACTIONS(3829), + [aux_sym__val_number_token5] = ACTIONS(3829), + [aux_sym__val_number_token6] = ACTIONS(3829), + [anon_sym_0b] = ACTIONS(1814), + [anon_sym_0o] = ACTIONS(1816), + [anon_sym_0x] = ACTIONS(1816), + [sym_val_date] = ACTIONS(3831), + [anon_sym_DQUOTE] = ACTIONS(3038), + [sym__str_single_quotes] = ACTIONS(3040), + [sym__str_back_ticks] = ACTIONS(3040), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3042), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3044), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(1830), + [anon_sym_POUND] = ACTIONS(3), }, - [1408] = { - [sym_comment] = STATE(1408), - [ts_builtin_sym_end] = ACTIONS(2583), - [anon_sym_export] = ACTIONS(2581), - [anon_sym_alias] = ACTIONS(2581), - [anon_sym_let] = ACTIONS(2581), - [anon_sym_let_DASHenv] = ACTIONS(2581), - [anon_sym_mut] = ACTIONS(2581), - [anon_sym_const] = ACTIONS(2581), - [anon_sym_SEMI] = ACTIONS(2581), - [sym_cmd_identifier] = ACTIONS(2581), - [anon_sym_LF] = ACTIONS(2583), - [anon_sym_def] = ACTIONS(2581), - [anon_sym_export_DASHenv] = ACTIONS(2581), - [anon_sym_extern] = ACTIONS(2581), - [anon_sym_module] = ACTIONS(2581), - [anon_sym_use] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2581), - [anon_sym_error] = ACTIONS(2581), - [anon_sym_DASH_DASH] = ACTIONS(2581), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_break] = ACTIONS(2581), - [anon_sym_continue] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2581), - [anon_sym_loop] = ACTIONS(2581), - [anon_sym_while] = ACTIONS(2581), - [anon_sym_do] = ACTIONS(2581), - [anon_sym_if] = ACTIONS(2581), - [anon_sym_match] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2581), - [anon_sym_DOT_DOT] = ACTIONS(2581), - [anon_sym_try] = ACTIONS(2581), - [anon_sym_return] = ACTIONS(2581), - [anon_sym_source] = ACTIONS(2581), - [anon_sym_source_DASHenv] = ACTIONS(2581), - [anon_sym_register] = ACTIONS(2581), - [anon_sym_hide] = ACTIONS(2581), - [anon_sym_hide_DASHenv] = ACTIONS(2581), - [anon_sym_overlay] = ACTIONS(2581), - [anon_sym_as] = ACTIONS(2581), - [anon_sym_where] = ACTIONS(2581), - [anon_sym_not] = ACTIONS(2581), - [anon_sym_LPAREN2] = ACTIONS(2583), - [anon_sym_DOT] = ACTIONS(3997), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2581), - [anon_sym_DOT_DOT_LT] = ACTIONS(2581), - [aux_sym__immediate_decimal_token2] = ACTIONS(3852), - [anon_sym_null] = ACTIONS(2581), - [anon_sym_true] = ACTIONS(2581), - [anon_sym_false] = ACTIONS(2581), - [aux_sym__val_number_decimal_token1] = ACTIONS(2581), - [aux_sym__val_number_decimal_token2] = ACTIONS(2581), - [anon_sym_DOT2] = ACTIONS(2581), - [aux_sym__val_number_decimal_token3] = ACTIONS(2581), - [aux_sym__val_number_token1] = ACTIONS(2581), - [aux_sym__val_number_token2] = ACTIONS(2581), - [aux_sym__val_number_token3] = ACTIONS(2581), - [aux_sym__val_number_token4] = ACTIONS(2581), - [aux_sym__val_number_token5] = ACTIONS(2581), - [aux_sym__val_number_token6] = ACTIONS(2581), - [anon_sym_0b] = ACTIONS(2581), - [anon_sym_0o] = ACTIONS(2581), - [anon_sym_0x] = ACTIONS(2581), - [sym_val_date] = ACTIONS(2581), - [anon_sym_DQUOTE] = ACTIONS(2581), - [sym__str_single_quotes] = ACTIONS(2581), - [sym__str_back_ticks] = ACTIONS(2581), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2581), - [anon_sym_CARET] = ACTIONS(2581), - [aux_sym_unquoted_token2] = ACTIONS(2581), - [anon_sym_POUND] = ACTIONS(113), + [1621] = { + [sym_expr_unary] = STATE(5617), + [sym__expr_unary_minus] = STATE(5585), + [sym_expr_binary] = STATE(5617), + [sym__expr_binary_expression] = STATE(5622), + [sym_expr_parenthesized] = STATE(5617), + [sym__val_range] = STATE(10026), + [sym__value] = STATE(5617), + [sym_val_nothing] = STATE(5712), + [sym_val_bool] = STATE(5355), + [sym_val_variable] = STATE(5712), + [sym__var] = STATE(5006), + [sym_val_number] = STATE(5712), + [sym__val_number_decimal] = STATE(4210), + [sym__val_number] = STATE(5721), + [sym_val_duration] = STATE(5712), + [sym_val_filesize] = STATE(5712), + [sym_val_binary] = STATE(5712), + [sym_val_string] = STATE(5712), + [sym__str_double_quotes] = STATE(5860), + [sym_val_interpolated] = STATE(5712), + [sym__inter_single_quotes] = STATE(5666), + [sym__inter_double_quotes] = STATE(5668), + [sym_val_list] = STATE(5712), + [sym_val_record] = STATE(5712), + [sym_val_table] = STATE(5712), + [sym_val_closure] = STATE(5712), + [sym_unquoted] = STATE(5623), + [sym__unquoted_anonymous_prefix] = STATE(10802), + [sym_comment] = STATE(1621), + [anon_sym_LBRACK] = ACTIONS(3014), + [anon_sym_LPAREN] = ACTIONS(5067), + [anon_sym_DOLLAR] = ACTIONS(5069), + [anon_sym_DASH] = ACTIONS(3809), + [anon_sym_LBRACE] = ACTIONS(3020), + [anon_sym_DOT_DOT] = ACTIONS(5071), + [anon_sym_not] = ACTIONS(3813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5073), + [anon_sym_DOT_DOT_LT] = ACTIONS(5073), + [anon_sym_null] = ACTIONS(3817), + [anon_sym_true] = ACTIONS(3819), + [anon_sym_false] = ACTIONS(3819), + [aux_sym__val_number_decimal_token1] = ACTIONS(3821), + [aux_sym__val_number_decimal_token2] = ACTIONS(3823), + [anon_sym_DOT2] = ACTIONS(5075), + [aux_sym__val_number_decimal_token3] = ACTIONS(3827), + [aux_sym__val_number_token1] = ACTIONS(3032), + [aux_sym__val_number_token2] = ACTIONS(3032), + [aux_sym__val_number_token3] = ACTIONS(3032), + [aux_sym__val_number_token4] = ACTIONS(3829), + [aux_sym__val_number_token5] = ACTIONS(3829), + [aux_sym__val_number_token6] = ACTIONS(3829), + [anon_sym_0b] = ACTIONS(1814), + [anon_sym_0o] = ACTIONS(1816), + [anon_sym_0x] = ACTIONS(1816), + [sym_val_date] = ACTIONS(3831), + [anon_sym_DQUOTE] = ACTIONS(3038), + [sym__str_single_quotes] = ACTIONS(3040), + [sym__str_back_ticks] = ACTIONS(3040), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3042), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3044), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(1830), + [anon_sym_POUND] = ACTIONS(3), }, - [1409] = { - [sym_comment] = STATE(1409), - [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), - [anon_sym_SEMI] = ACTIONS(2437), - [sym_cmd_identifier] = ACTIONS(2437), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_RPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_DASH_DASH] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_RBRACE] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_as] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_not] = ACTIONS(2437), - [anon_sym_DOT] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [aux_sym__immediate_decimal_token2] = ACTIONS(3813), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [anon_sym_DOT2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2437), - [anon_sym_0o] = ACTIONS(2437), - [anon_sym_0x] = ACTIONS(2437), - [sym_val_date] = 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_CARET] = ACTIONS(2437), - [aux_sym_unquoted_token2] = ACTIONS(2437), - [anon_sym_POUND] = ACTIONS(113), + [1622] = { + [sym_expr_unary] = STATE(5617), + [sym__expr_unary_minus] = STATE(5585), + [sym_expr_binary] = STATE(5617), + [sym__expr_binary_expression] = STATE(5624), + [sym_expr_parenthesized] = STATE(5617), + [sym__val_range] = STATE(10026), + [sym__value] = STATE(5617), + [sym_val_nothing] = STATE(5712), + [sym_val_bool] = STATE(5355), + [sym_val_variable] = STATE(5712), + [sym__var] = STATE(5006), + [sym_val_number] = STATE(5712), + [sym__val_number_decimal] = STATE(4210), + [sym__val_number] = STATE(5721), + [sym_val_duration] = STATE(5712), + [sym_val_filesize] = STATE(5712), + [sym_val_binary] = STATE(5712), + [sym_val_string] = STATE(5712), + [sym__str_double_quotes] = STATE(5860), + [sym_val_interpolated] = STATE(5712), + [sym__inter_single_quotes] = STATE(5666), + [sym__inter_double_quotes] = STATE(5668), + [sym_val_list] = STATE(5712), + [sym_val_record] = STATE(5712), + [sym_val_table] = STATE(5712), + [sym_val_closure] = STATE(5712), + [sym_unquoted] = STATE(5625), + [sym__unquoted_anonymous_prefix] = STATE(10802), + [sym_comment] = STATE(1622), + [anon_sym_LBRACK] = ACTIONS(3014), + [anon_sym_LPAREN] = ACTIONS(5067), + [anon_sym_DOLLAR] = ACTIONS(5069), + [anon_sym_DASH] = ACTIONS(3809), + [anon_sym_LBRACE] = ACTIONS(3020), + [anon_sym_DOT_DOT] = ACTIONS(5071), + [anon_sym_not] = ACTIONS(3813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5073), + [anon_sym_DOT_DOT_LT] = ACTIONS(5073), + [anon_sym_null] = ACTIONS(3817), + [anon_sym_true] = ACTIONS(3819), + [anon_sym_false] = ACTIONS(3819), + [aux_sym__val_number_decimal_token1] = ACTIONS(3821), + [aux_sym__val_number_decimal_token2] = ACTIONS(3823), + [anon_sym_DOT2] = ACTIONS(5075), + [aux_sym__val_number_decimal_token3] = ACTIONS(3827), + [aux_sym__val_number_token1] = ACTIONS(3032), + [aux_sym__val_number_token2] = ACTIONS(3032), + [aux_sym__val_number_token3] = ACTIONS(3032), + [aux_sym__val_number_token4] = ACTIONS(3829), + [aux_sym__val_number_token5] = ACTIONS(3829), + [aux_sym__val_number_token6] = ACTIONS(3829), + [anon_sym_0b] = ACTIONS(1814), + [anon_sym_0o] = ACTIONS(1816), + [anon_sym_0x] = ACTIONS(1816), + [sym_val_date] = ACTIONS(3831), + [anon_sym_DQUOTE] = ACTIONS(3038), + [sym__str_single_quotes] = ACTIONS(3040), + [sym__str_back_ticks] = ACTIONS(3040), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3042), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3044), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(1830), + [anon_sym_POUND] = ACTIONS(3), }, - [1410] = { - [sym_comment] = STATE(1410), - [anon_sym_SEMI] = ACTIONS(917), - [anon_sym_LF] = ACTIONS(919), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_LPAREN] = ACTIONS(917), - [anon_sym_RPAREN] = ACTIONS(917), - [anon_sym_PIPE] = ACTIONS(917), - [anon_sym_DOLLAR] = ACTIONS(917), - [anon_sym_GT] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_in] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(917), - [anon_sym_RBRACE] = ACTIONS(917), - [anon_sym_DOT_DOT] = ACTIONS(917), - [anon_sym_STAR] = ACTIONS(917), - [anon_sym_STAR_STAR] = ACTIONS(917), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_mod] = ACTIONS(917), - [anon_sym_SLASH_SLASH] = ACTIONS(917), - [anon_sym_PLUS] = ACTIONS(917), - [anon_sym_bit_DASHshl] = ACTIONS(917), - [anon_sym_bit_DASHshr] = ACTIONS(917), - [anon_sym_EQ_EQ] = ACTIONS(917), - [anon_sym_BANG_EQ] = ACTIONS(917), - [anon_sym_LT2] = ACTIONS(917), - [anon_sym_LT_EQ] = ACTIONS(917), - [anon_sym_GT_EQ] = ACTIONS(917), - [anon_sym_not_DASHin] = ACTIONS(917), - [anon_sym_starts_DASHwith] = ACTIONS(917), - [anon_sym_ends_DASHwith] = ACTIONS(917), - [anon_sym_EQ_TILDE] = ACTIONS(917), - [anon_sym_BANG_TILDE] = ACTIONS(917), - [anon_sym_bit_DASHand] = ACTIONS(917), - [anon_sym_bit_DASHxor] = ACTIONS(917), - [anon_sym_bit_DASHor] = ACTIONS(917), - [anon_sym_and] = ACTIONS(917), - [anon_sym_xor] = ACTIONS(917), - [anon_sym_or] = ACTIONS(917), - [anon_sym_not] = ACTIONS(917), - [anon_sym_DOT_DOT2] = ACTIONS(917), - [anon_sym_DOT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ] = ACTIONS(917), - [anon_sym_DOT_DOT_LT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(919), - [anon_sym_DOT_DOT_LT2] = ACTIONS(919), - [anon_sym_null] = ACTIONS(917), - [anon_sym_true] = ACTIONS(917), - [anon_sym_false] = ACTIONS(917), - [aux_sym__val_number_decimal_token1] = ACTIONS(917), - [aux_sym__val_number_decimal_token2] = ACTIONS(917), - [anon_sym_DOT2] = ACTIONS(917), - [aux_sym__val_number_decimal_token3] = ACTIONS(917), - [aux_sym__val_number_token1] = ACTIONS(917), - [aux_sym__val_number_token2] = ACTIONS(917), - [aux_sym__val_number_token3] = ACTIONS(917), - [aux_sym__val_number_token4] = ACTIONS(917), - [aux_sym__val_number_token5] = ACTIONS(917), - [aux_sym__val_number_token6] = ACTIONS(917), - [anon_sym_0b] = ACTIONS(917), - [sym_filesize_unit] = ACTIONS(917), - [sym_duration_unit] = ACTIONS(919), - [anon_sym_0o] = ACTIONS(917), - [anon_sym_0x] = ACTIONS(917), - [sym_val_date] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(917), - [sym__str_single_quotes] = ACTIONS(917), - [sym__str_back_ticks] = ACTIONS(917), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(917), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(917), - [aux_sym_unquoted_token5] = ACTIONS(917), - [anon_sym_POUND] = ACTIONS(113), + [1623] = { + [sym_expr_unary] = STATE(5617), + [sym__expr_unary_minus] = STATE(5585), + [sym_expr_binary] = STATE(5617), + [sym__expr_binary_expression] = STATE(5626), + [sym_expr_parenthesized] = STATE(5617), + [sym__val_range] = STATE(10026), + [sym__value] = STATE(5617), + [sym_val_nothing] = STATE(5712), + [sym_val_bool] = STATE(5355), + [sym_val_variable] = STATE(5712), + [sym__var] = STATE(5006), + [sym_val_number] = STATE(5712), + [sym__val_number_decimal] = STATE(4210), + [sym__val_number] = STATE(5721), + [sym_val_duration] = STATE(5712), + [sym_val_filesize] = STATE(5712), + [sym_val_binary] = STATE(5712), + [sym_val_string] = STATE(5712), + [sym__str_double_quotes] = STATE(5860), + [sym_val_interpolated] = STATE(5712), + [sym__inter_single_quotes] = STATE(5666), + [sym__inter_double_quotes] = STATE(5668), + [sym_val_list] = STATE(5712), + [sym_val_record] = STATE(5712), + [sym_val_table] = STATE(5712), + [sym_val_closure] = STATE(5712), + [sym_unquoted] = STATE(5627), + [sym__unquoted_anonymous_prefix] = STATE(10802), + [sym_comment] = STATE(1623), + [anon_sym_LBRACK] = ACTIONS(3014), + [anon_sym_LPAREN] = ACTIONS(5067), + [anon_sym_DOLLAR] = ACTIONS(5069), + [anon_sym_DASH] = ACTIONS(3809), + [anon_sym_LBRACE] = ACTIONS(3020), + [anon_sym_DOT_DOT] = ACTIONS(5071), + [anon_sym_not] = ACTIONS(3813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5073), + [anon_sym_DOT_DOT_LT] = ACTIONS(5073), + [anon_sym_null] = ACTIONS(3817), + [anon_sym_true] = ACTIONS(3819), + [anon_sym_false] = ACTIONS(3819), + [aux_sym__val_number_decimal_token1] = ACTIONS(3821), + [aux_sym__val_number_decimal_token2] = ACTIONS(3823), + [anon_sym_DOT2] = ACTIONS(5075), + [aux_sym__val_number_decimal_token3] = ACTIONS(3827), + [aux_sym__val_number_token1] = ACTIONS(3032), + [aux_sym__val_number_token2] = ACTIONS(3032), + [aux_sym__val_number_token3] = ACTIONS(3032), + [aux_sym__val_number_token4] = ACTIONS(3829), + [aux_sym__val_number_token5] = ACTIONS(3829), + [aux_sym__val_number_token6] = ACTIONS(3829), + [anon_sym_0b] = ACTIONS(1814), + [anon_sym_0o] = ACTIONS(1816), + [anon_sym_0x] = ACTIONS(1816), + [sym_val_date] = ACTIONS(3831), + [anon_sym_DQUOTE] = ACTIONS(3038), + [sym__str_single_quotes] = ACTIONS(3040), + [sym__str_back_ticks] = ACTIONS(3040), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3042), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3044), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(1830), + [anon_sym_POUND] = ACTIONS(3), }, - [1411] = { - [sym_comment] = STATE(1411), - [anon_sym_LBRACK] = ACTIONS(1119), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_LPAREN] = ACTIONS(1119), - [anon_sym_DOLLAR] = ACTIONS(1119), - [anon_sym_GT] = ACTIONS(1117), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1117), - [anon_sym_LBRACE] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1119), - [anon_sym__] = ACTIONS(1117), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_STAR] = ACTIONS(1117), - [anon_sym_STAR_STAR] = ACTIONS(1119), - [anon_sym_PLUS_PLUS] = ACTIONS(1119), - [anon_sym_SLASH] = ACTIONS(1117), - [anon_sym_mod] = ACTIONS(1119), - [anon_sym_SLASH_SLASH] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1117), - [anon_sym_bit_DASHshl] = ACTIONS(1119), - [anon_sym_bit_DASHshr] = ACTIONS(1119), - [anon_sym_EQ_EQ] = ACTIONS(1119), - [anon_sym_BANG_EQ] = ACTIONS(1119), - [anon_sym_LT2] = ACTIONS(1117), - [anon_sym_LT_EQ] = ACTIONS(1119), - [anon_sym_GT_EQ] = ACTIONS(1119), - [anon_sym_not_DASHin] = ACTIONS(1119), - [anon_sym_starts_DASHwith] = ACTIONS(1119), - [anon_sym_ends_DASHwith] = ACTIONS(1119), - [anon_sym_EQ_TILDE] = ACTIONS(1119), - [anon_sym_BANG_TILDE] = ACTIONS(1119), - [anon_sym_bit_DASHand] = ACTIONS(1119), - [anon_sym_bit_DASHxor] = ACTIONS(1119), - [anon_sym_bit_DASHor] = ACTIONS(1119), - [anon_sym_and] = ACTIONS(1119), - [anon_sym_xor] = ACTIONS(1119), - [anon_sym_or] = ACTIONS(1119), - [anon_sym_DOT_DOT2] = ACTIONS(1117), - [anon_sym_DOT] = ACTIONS(1117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1117), - [anon_sym_DOT_DOT_LT] = ACTIONS(1117), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1119), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1119), - [anon_sym_null] = ACTIONS(1119), - [anon_sym_true] = ACTIONS(1119), - [anon_sym_false] = ACTIONS(1119), - [aux_sym__val_number_decimal_token1] = ACTIONS(1117), - [aux_sym__val_number_decimal_token2] = ACTIONS(1119), - [anon_sym_DOT2] = ACTIONS(1117), - [aux_sym__val_number_decimal_token3] = ACTIONS(1119), - [aux_sym__val_number_token1] = ACTIONS(1119), - [aux_sym__val_number_token2] = ACTIONS(1119), - [aux_sym__val_number_token3] = ACTIONS(1119), - [aux_sym__val_number_token4] = ACTIONS(1119), - [aux_sym__val_number_token5] = ACTIONS(1119), - [aux_sym__val_number_token6] = ACTIONS(1119), - [anon_sym_0b] = ACTIONS(1117), - [anon_sym_0o] = ACTIONS(1117), - [anon_sym_0x] = ACTIONS(1117), - [sym_val_date] = ACTIONS(1119), - [anon_sym_DQUOTE] = ACTIONS(1119), - [sym__str_single_quotes] = ACTIONS(1119), - [sym__str_back_ticks] = ACTIONS(1119), - [anon_sym_err_GT] = ACTIONS(1119), - [anon_sym_out_GT] = ACTIONS(1119), - [anon_sym_e_GT] = ACTIONS(1119), - [anon_sym_o_GT] = ACTIONS(1119), - [anon_sym_err_PLUSout_GT] = ACTIONS(1119), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1119), - [anon_sym_o_PLUSe_GT] = ACTIONS(1119), - [anon_sym_e_PLUSo_GT] = ACTIONS(1119), - [aux_sym_unquoted_token1] = ACTIONS(1117), + [1624] = { + [sym_expr_unary] = STATE(5617), + [sym__expr_unary_minus] = STATE(5585), + [sym_expr_binary] = STATE(5617), + [sym__expr_binary_expression] = STATE(5628), + [sym_expr_parenthesized] = STATE(5617), + [sym__val_range] = STATE(10026), + [sym__value] = STATE(5617), + [sym_val_nothing] = STATE(5712), + [sym_val_bool] = STATE(5355), + [sym_val_variable] = STATE(5712), + [sym__var] = STATE(5006), + [sym_val_number] = STATE(5712), + [sym__val_number_decimal] = STATE(4210), + [sym__val_number] = STATE(5721), + [sym_val_duration] = STATE(5712), + [sym_val_filesize] = STATE(5712), + [sym_val_binary] = STATE(5712), + [sym_val_string] = STATE(5712), + [sym__str_double_quotes] = STATE(5860), + [sym_val_interpolated] = STATE(5712), + [sym__inter_single_quotes] = STATE(5666), + [sym__inter_double_quotes] = STATE(5668), + [sym_val_list] = STATE(5712), + [sym_val_record] = STATE(5712), + [sym_val_table] = STATE(5712), + [sym_val_closure] = STATE(5712), + [sym_unquoted] = STATE(5629), + [sym__unquoted_anonymous_prefix] = STATE(10802), + [sym_comment] = STATE(1624), + [anon_sym_LBRACK] = ACTIONS(3014), + [anon_sym_LPAREN] = ACTIONS(5067), + [anon_sym_DOLLAR] = ACTIONS(5069), + [anon_sym_DASH] = ACTIONS(3809), + [anon_sym_LBRACE] = ACTIONS(3020), + [anon_sym_DOT_DOT] = ACTIONS(5071), + [anon_sym_not] = ACTIONS(3813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5073), + [anon_sym_DOT_DOT_LT] = ACTIONS(5073), + [anon_sym_null] = ACTIONS(3817), + [anon_sym_true] = ACTIONS(3819), + [anon_sym_false] = ACTIONS(3819), + [aux_sym__val_number_decimal_token1] = ACTIONS(3821), + [aux_sym__val_number_decimal_token2] = ACTIONS(3823), + [anon_sym_DOT2] = ACTIONS(5075), + [aux_sym__val_number_decimal_token3] = ACTIONS(3827), + [aux_sym__val_number_token1] = ACTIONS(3032), + [aux_sym__val_number_token2] = ACTIONS(3032), + [aux_sym__val_number_token3] = ACTIONS(3032), + [aux_sym__val_number_token4] = ACTIONS(3829), + [aux_sym__val_number_token5] = ACTIONS(3829), + [aux_sym__val_number_token6] = ACTIONS(3829), + [anon_sym_0b] = ACTIONS(1814), + [anon_sym_0o] = ACTIONS(1816), + [anon_sym_0x] = ACTIONS(1816), + [sym_val_date] = ACTIONS(3831), + [anon_sym_DQUOTE] = ACTIONS(3038), + [sym__str_single_quotes] = ACTIONS(3040), + [sym__str_back_ticks] = ACTIONS(3040), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3042), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3044), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(1830), [anon_sym_POUND] = ACTIONS(3), }, - [1412] = { - [sym_comment] = STATE(1412), - [anon_sym_export] = ACTIONS(4000), - [anon_sym_alias] = ACTIONS(4000), - [anon_sym_let] = ACTIONS(4000), - [anon_sym_let_DASHenv] = ACTIONS(4000), - [anon_sym_mut] = ACTIONS(4000), - [anon_sym_const] = ACTIONS(4000), - [anon_sym_SEMI] = ACTIONS(4000), - [sym_cmd_identifier] = ACTIONS(4000), - [anon_sym_LF] = ACTIONS(4002), - [anon_sym_def] = ACTIONS(4000), - [anon_sym_export_DASHenv] = ACTIONS(4000), - [anon_sym_extern] = ACTIONS(4000), - [anon_sym_module] = ACTIONS(4000), - [anon_sym_use] = ACTIONS(4000), - [anon_sym_LBRACK] = ACTIONS(4000), - [anon_sym_LPAREN] = ACTIONS(4000), - [anon_sym_RPAREN] = ACTIONS(4000), - [anon_sym_DOLLAR] = ACTIONS(4000), - [anon_sym_error] = ACTIONS(4000), - [anon_sym_DASH_DASH] = ACTIONS(4000), - [anon_sym_DASH] = ACTIONS(4000), - [anon_sym_break] = ACTIONS(4000), - [anon_sym_continue] = ACTIONS(4000), - [anon_sym_for] = ACTIONS(4000), - [anon_sym_loop] = ACTIONS(4000), - [anon_sym_while] = ACTIONS(4000), - [anon_sym_do] = ACTIONS(4000), - [anon_sym_if] = ACTIONS(4000), - [anon_sym_match] = ACTIONS(4000), - [anon_sym_LBRACE] = ACTIONS(4000), - [anon_sym_RBRACE] = ACTIONS(4000), - [anon_sym_DOT_DOT] = ACTIONS(4000), - [anon_sym_try] = ACTIONS(4000), - [anon_sym_return] = ACTIONS(4000), - [anon_sym_source] = ACTIONS(4000), - [anon_sym_source_DASHenv] = ACTIONS(4000), - [anon_sym_register] = ACTIONS(4000), - [anon_sym_hide] = ACTIONS(4000), - [anon_sym_hide_DASHenv] = ACTIONS(4000), - [anon_sym_overlay] = ACTIONS(4000), - [anon_sym_as] = ACTIONS(4000), - [anon_sym_where] = ACTIONS(4000), - [anon_sym_not] = ACTIONS(4000), - [anon_sym_DOT_DOT2] = ACTIONS(4000), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4000), - [anon_sym_DOT_DOT_LT] = ACTIONS(4000), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4002), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4002), - [anon_sym_null] = ACTIONS(4000), - [anon_sym_true] = ACTIONS(4000), - [anon_sym_false] = ACTIONS(4000), - [aux_sym__val_number_decimal_token1] = ACTIONS(4000), - [aux_sym__val_number_decimal_token2] = ACTIONS(4000), - [anon_sym_DOT2] = ACTIONS(4000), - [aux_sym__val_number_decimal_token3] = ACTIONS(4000), - [aux_sym__val_number_token1] = ACTIONS(4000), - [aux_sym__val_number_token2] = ACTIONS(4000), - [aux_sym__val_number_token3] = ACTIONS(4000), - [aux_sym__val_number_token4] = ACTIONS(4000), - [aux_sym__val_number_token5] = ACTIONS(4000), - [aux_sym__val_number_token6] = ACTIONS(4000), - [anon_sym_0b] = ACTIONS(4000), - [anon_sym_0o] = ACTIONS(4000), - [anon_sym_0x] = ACTIONS(4000), - [sym_val_date] = ACTIONS(4000), - [anon_sym_DQUOTE] = ACTIONS(4000), - [sym__str_single_quotes] = ACTIONS(4000), - [sym__str_back_ticks] = ACTIONS(4000), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4000), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4000), - [anon_sym_CARET] = ACTIONS(4000), - [anon_sym_POUND] = ACTIONS(113), + [1625] = { + [sym_expr_unary] = STATE(5617), + [sym__expr_unary_minus] = STATE(5585), + [sym_expr_binary] = STATE(5617), + [sym__expr_binary_expression] = STATE(5630), + [sym_expr_parenthesized] = STATE(5617), + [sym__val_range] = STATE(10026), + [sym__value] = STATE(5617), + [sym_val_nothing] = STATE(5712), + [sym_val_bool] = STATE(5355), + [sym_val_variable] = STATE(5712), + [sym__var] = STATE(5006), + [sym_val_number] = STATE(5712), + [sym__val_number_decimal] = STATE(4210), + [sym__val_number] = STATE(5721), + [sym_val_duration] = STATE(5712), + [sym_val_filesize] = STATE(5712), + [sym_val_binary] = STATE(5712), + [sym_val_string] = STATE(5712), + [sym__str_double_quotes] = STATE(5860), + [sym_val_interpolated] = STATE(5712), + [sym__inter_single_quotes] = STATE(5666), + [sym__inter_double_quotes] = STATE(5668), + [sym_val_list] = STATE(5712), + [sym_val_record] = STATE(5712), + [sym_val_table] = STATE(5712), + [sym_val_closure] = STATE(5712), + [sym_unquoted] = STATE(5631), + [sym__unquoted_anonymous_prefix] = STATE(10802), + [sym_comment] = STATE(1625), + [anon_sym_LBRACK] = ACTIONS(3014), + [anon_sym_LPAREN] = ACTIONS(5067), + [anon_sym_DOLLAR] = ACTIONS(5069), + [anon_sym_DASH] = ACTIONS(3809), + [anon_sym_LBRACE] = ACTIONS(3020), + [anon_sym_DOT_DOT] = ACTIONS(5071), + [anon_sym_not] = ACTIONS(3813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5073), + [anon_sym_DOT_DOT_LT] = ACTIONS(5073), + [anon_sym_null] = ACTIONS(3817), + [anon_sym_true] = ACTIONS(3819), + [anon_sym_false] = ACTIONS(3819), + [aux_sym__val_number_decimal_token1] = ACTIONS(3821), + [aux_sym__val_number_decimal_token2] = ACTIONS(3823), + [anon_sym_DOT2] = ACTIONS(5075), + [aux_sym__val_number_decimal_token3] = ACTIONS(3827), + [aux_sym__val_number_token1] = ACTIONS(3032), + [aux_sym__val_number_token2] = ACTIONS(3032), + [aux_sym__val_number_token3] = ACTIONS(3032), + [aux_sym__val_number_token4] = ACTIONS(3829), + [aux_sym__val_number_token5] = ACTIONS(3829), + [aux_sym__val_number_token6] = ACTIONS(3829), + [anon_sym_0b] = ACTIONS(1814), + [anon_sym_0o] = ACTIONS(1816), + [anon_sym_0x] = ACTIONS(1816), + [sym_val_date] = ACTIONS(3831), + [anon_sym_DQUOTE] = ACTIONS(3038), + [sym__str_single_quotes] = ACTIONS(3040), + [sym__str_back_ticks] = ACTIONS(3040), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3042), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3044), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(1830), + [anon_sym_POUND] = ACTIONS(3), }, - [1413] = { - [sym_comment] = STATE(1413), - [anon_sym_export] = ACTIONS(2547), - [anon_sym_alias] = ACTIONS(2547), - [anon_sym_let] = ACTIONS(2547), - [anon_sym_let_DASHenv] = ACTIONS(2547), - [anon_sym_mut] = ACTIONS(2547), - [anon_sym_const] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [sym_cmd_identifier] = ACTIONS(2547), - [anon_sym_LF] = ACTIONS(2549), - [anon_sym_def] = ACTIONS(2547), - [anon_sym_export_DASHenv] = ACTIONS(2547), - [anon_sym_extern] = ACTIONS(2547), - [anon_sym_module] = ACTIONS(2547), - [anon_sym_use] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_RPAREN] = ACTIONS(2547), - [anon_sym_DOLLAR] = ACTIONS(2547), - [anon_sym_error] = ACTIONS(2547), - [anon_sym_DASH_DASH] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_break] = ACTIONS(2547), - [anon_sym_continue] = ACTIONS(2547), - [anon_sym_for] = ACTIONS(2547), - [anon_sym_loop] = ACTIONS(2547), - [anon_sym_while] = ACTIONS(2547), - [anon_sym_do] = ACTIONS(2547), - [anon_sym_if] = ACTIONS(2547), - [anon_sym_match] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2547), - [anon_sym_RBRACE] = ACTIONS(2547), - [anon_sym_DOT_DOT] = ACTIONS(2547), - [anon_sym_try] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2547), - [anon_sym_source] = ACTIONS(2547), - [anon_sym_source_DASHenv] = ACTIONS(2547), - [anon_sym_register] = ACTIONS(2547), - [anon_sym_hide] = ACTIONS(2547), - [anon_sym_hide_DASHenv] = ACTIONS(2547), - [anon_sym_overlay] = ACTIONS(2547), - [anon_sym_as] = ACTIONS(2547), - [anon_sym_where] = ACTIONS(2547), - [anon_sym_not] = ACTIONS(2547), - [anon_sym_DOT] = ACTIONS(2547), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), - [anon_sym_DOT_DOT_LT] = ACTIONS(2547), - [aux_sym__immediate_decimal_token2] = ACTIONS(4004), - [anon_sym_null] = ACTIONS(2547), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [aux_sym__val_number_decimal_token1] = ACTIONS(2547), - [aux_sym__val_number_decimal_token2] = ACTIONS(2547), - [anon_sym_DOT2] = ACTIONS(2547), - [aux_sym__val_number_decimal_token3] = ACTIONS(2547), - [aux_sym__val_number_token1] = ACTIONS(2547), - [aux_sym__val_number_token2] = ACTIONS(2547), - [aux_sym__val_number_token3] = ACTIONS(2547), - [aux_sym__val_number_token4] = ACTIONS(2547), - [aux_sym__val_number_token5] = ACTIONS(2547), - [aux_sym__val_number_token6] = ACTIONS(2547), - [anon_sym_0b] = ACTIONS(2547), - [anon_sym_0o] = ACTIONS(2547), - [anon_sym_0x] = ACTIONS(2547), - [sym_val_date] = ACTIONS(2547), - [anon_sym_DQUOTE] = ACTIONS(2547), - [sym__str_single_quotes] = ACTIONS(2547), - [sym__str_back_ticks] = ACTIONS(2547), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2547), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2547), - [aux_sym_unquoted_token2] = ACTIONS(2547), - [anon_sym_POUND] = ACTIONS(113), + [1626] = { + [sym_expr_unary] = STATE(5617), + [sym__expr_unary_minus] = STATE(5585), + [sym_expr_binary] = STATE(5617), + [sym__expr_binary_expression] = STATE(5632), + [sym_expr_parenthesized] = STATE(5617), + [sym__val_range] = STATE(10026), + [sym__value] = STATE(5617), + [sym_val_nothing] = STATE(5712), + [sym_val_bool] = STATE(5355), + [sym_val_variable] = STATE(5712), + [sym__var] = STATE(5006), + [sym_val_number] = STATE(5712), + [sym__val_number_decimal] = STATE(4210), + [sym__val_number] = STATE(5721), + [sym_val_duration] = STATE(5712), + [sym_val_filesize] = STATE(5712), + [sym_val_binary] = STATE(5712), + [sym_val_string] = STATE(5712), + [sym__str_double_quotes] = STATE(5860), + [sym_val_interpolated] = STATE(5712), + [sym__inter_single_quotes] = STATE(5666), + [sym__inter_double_quotes] = STATE(5668), + [sym_val_list] = STATE(5712), + [sym_val_record] = STATE(5712), + [sym_val_table] = STATE(5712), + [sym_val_closure] = STATE(5712), + [sym_unquoted] = STATE(5633), + [sym__unquoted_anonymous_prefix] = STATE(10802), + [sym_comment] = STATE(1626), + [anon_sym_LBRACK] = ACTIONS(3014), + [anon_sym_LPAREN] = ACTIONS(5067), + [anon_sym_DOLLAR] = ACTIONS(5069), + [anon_sym_DASH] = ACTIONS(3809), + [anon_sym_LBRACE] = ACTIONS(3020), + [anon_sym_DOT_DOT] = ACTIONS(5071), + [anon_sym_not] = ACTIONS(3813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5073), + [anon_sym_DOT_DOT_LT] = ACTIONS(5073), + [anon_sym_null] = ACTIONS(3817), + [anon_sym_true] = ACTIONS(3819), + [anon_sym_false] = ACTIONS(3819), + [aux_sym__val_number_decimal_token1] = ACTIONS(3821), + [aux_sym__val_number_decimal_token2] = ACTIONS(3823), + [anon_sym_DOT2] = ACTIONS(5075), + [aux_sym__val_number_decimal_token3] = ACTIONS(3827), + [aux_sym__val_number_token1] = ACTIONS(3032), + [aux_sym__val_number_token2] = ACTIONS(3032), + [aux_sym__val_number_token3] = ACTIONS(3032), + [aux_sym__val_number_token4] = ACTIONS(3829), + [aux_sym__val_number_token5] = ACTIONS(3829), + [aux_sym__val_number_token6] = ACTIONS(3829), + [anon_sym_0b] = ACTIONS(1814), + [anon_sym_0o] = ACTIONS(1816), + [anon_sym_0x] = ACTIONS(1816), + [sym_val_date] = ACTIONS(3831), + [anon_sym_DQUOTE] = ACTIONS(3038), + [sym__str_single_quotes] = ACTIONS(3040), + [sym__str_back_ticks] = ACTIONS(3040), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3042), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3044), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(1830), + [anon_sym_POUND] = ACTIONS(3), }, - [1414] = { - [sym_comment] = STATE(1414), - [anon_sym_export] = ACTIONS(4006), - [anon_sym_alias] = ACTIONS(4006), - [anon_sym_let] = ACTIONS(4006), - [anon_sym_let_DASHenv] = ACTIONS(4006), - [anon_sym_mut] = ACTIONS(4006), - [anon_sym_const] = ACTIONS(4006), - [anon_sym_SEMI] = ACTIONS(4006), - [sym_cmd_identifier] = ACTIONS(4006), - [anon_sym_LF] = ACTIONS(4008), - [anon_sym_def] = ACTIONS(4006), - [anon_sym_export_DASHenv] = ACTIONS(4006), - [anon_sym_extern] = ACTIONS(4006), - [anon_sym_module] = ACTIONS(4006), - [anon_sym_use] = ACTIONS(4006), - [anon_sym_LBRACK] = ACTIONS(4006), - [anon_sym_LPAREN] = ACTIONS(4006), - [anon_sym_RPAREN] = ACTIONS(4006), - [anon_sym_DOLLAR] = ACTIONS(4006), - [anon_sym_error] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_DASH] = ACTIONS(4006), - [anon_sym_break] = ACTIONS(4006), - [anon_sym_continue] = ACTIONS(4006), - [anon_sym_for] = ACTIONS(4006), - [anon_sym_loop] = ACTIONS(4006), - [anon_sym_while] = ACTIONS(4006), - [anon_sym_do] = ACTIONS(4006), - [anon_sym_if] = ACTIONS(4006), - [anon_sym_match] = ACTIONS(4006), - [anon_sym_LBRACE] = ACTIONS(4006), - [anon_sym_RBRACE] = ACTIONS(4006), - [anon_sym_DOT_DOT] = ACTIONS(4006), - [anon_sym_try] = ACTIONS(4006), - [anon_sym_return] = ACTIONS(4006), - [anon_sym_source] = ACTIONS(4006), - [anon_sym_source_DASHenv] = ACTIONS(4006), - [anon_sym_register] = ACTIONS(4006), - [anon_sym_hide] = ACTIONS(4006), - [anon_sym_hide_DASHenv] = ACTIONS(4006), - [anon_sym_overlay] = ACTIONS(4006), - [anon_sym_as] = ACTIONS(4006), - [anon_sym_where] = ACTIONS(4006), - [anon_sym_not] = ACTIONS(4006), - [anon_sym_LPAREN2] = ACTIONS(4010), - [anon_sym_DOT] = ACTIONS(4012), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4006), - [anon_sym_DOT_DOT_LT] = ACTIONS(4006), - [anon_sym_null] = ACTIONS(4006), - [anon_sym_true] = ACTIONS(4006), - [anon_sym_false] = ACTIONS(4006), - [aux_sym__val_number_decimal_token1] = ACTIONS(4006), - [aux_sym__val_number_decimal_token2] = ACTIONS(4006), - [anon_sym_DOT2] = ACTIONS(4006), - [aux_sym__val_number_decimal_token3] = ACTIONS(4006), - [aux_sym__val_number_token1] = ACTIONS(4006), - [aux_sym__val_number_token2] = ACTIONS(4006), - [aux_sym__val_number_token3] = ACTIONS(4006), - [aux_sym__val_number_token4] = ACTIONS(4006), - [aux_sym__val_number_token5] = ACTIONS(4006), - [aux_sym__val_number_token6] = ACTIONS(4006), - [anon_sym_0b] = ACTIONS(4006), - [anon_sym_0o] = ACTIONS(4006), - [anon_sym_0x] = ACTIONS(4006), - [sym_val_date] = ACTIONS(4006), - [anon_sym_DQUOTE] = ACTIONS(4006), - [sym__str_single_quotes] = ACTIONS(4006), - [sym__str_back_ticks] = ACTIONS(4006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4006), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4006), - [anon_sym_CARET] = ACTIONS(4006), - [aux_sym_unquoted_token2] = ACTIONS(4012), - [anon_sym_POUND] = ACTIONS(113), + [1627] = { + [sym_expr_unary] = STATE(5617), + [sym__expr_unary_minus] = STATE(5585), + [sym_expr_binary] = STATE(5617), + [sym__expr_binary_expression] = STATE(5634), + [sym_expr_parenthesized] = STATE(5617), + [sym__val_range] = STATE(10026), + [sym__value] = STATE(5617), + [sym_val_nothing] = STATE(5712), + [sym_val_bool] = STATE(5355), + [sym_val_variable] = STATE(5712), + [sym__var] = STATE(5006), + [sym_val_number] = STATE(5712), + [sym__val_number_decimal] = STATE(4210), + [sym__val_number] = STATE(5721), + [sym_val_duration] = STATE(5712), + [sym_val_filesize] = STATE(5712), + [sym_val_binary] = STATE(5712), + [sym_val_string] = STATE(5712), + [sym__str_double_quotes] = STATE(5860), + [sym_val_interpolated] = STATE(5712), + [sym__inter_single_quotes] = STATE(5666), + [sym__inter_double_quotes] = STATE(5668), + [sym_val_list] = STATE(5712), + [sym_val_record] = STATE(5712), + [sym_val_table] = STATE(5712), + [sym_val_closure] = STATE(5712), + [sym_unquoted] = STATE(5635), + [sym__unquoted_anonymous_prefix] = STATE(10802), + [sym_comment] = STATE(1627), + [anon_sym_LBRACK] = ACTIONS(3014), + [anon_sym_LPAREN] = ACTIONS(5067), + [anon_sym_DOLLAR] = ACTIONS(5069), + [anon_sym_DASH] = ACTIONS(3809), + [anon_sym_LBRACE] = ACTIONS(3020), + [anon_sym_DOT_DOT] = ACTIONS(5071), + [anon_sym_not] = ACTIONS(3813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5073), + [anon_sym_DOT_DOT_LT] = ACTIONS(5073), + [anon_sym_null] = ACTIONS(3817), + [anon_sym_true] = ACTIONS(3819), + [anon_sym_false] = ACTIONS(3819), + [aux_sym__val_number_decimal_token1] = ACTIONS(3821), + [aux_sym__val_number_decimal_token2] = ACTIONS(3823), + [anon_sym_DOT2] = ACTIONS(5075), + [aux_sym__val_number_decimal_token3] = ACTIONS(3827), + [aux_sym__val_number_token1] = ACTIONS(3032), + [aux_sym__val_number_token2] = ACTIONS(3032), + [aux_sym__val_number_token3] = ACTIONS(3032), + [aux_sym__val_number_token4] = ACTIONS(3829), + [aux_sym__val_number_token5] = ACTIONS(3829), + [aux_sym__val_number_token6] = ACTIONS(3829), + [anon_sym_0b] = ACTIONS(1814), + [anon_sym_0o] = ACTIONS(1816), + [anon_sym_0x] = ACTIONS(1816), + [sym_val_date] = ACTIONS(3831), + [anon_sym_DQUOTE] = ACTIONS(3038), + [sym__str_single_quotes] = ACTIONS(3040), + [sym__str_back_ticks] = ACTIONS(3040), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3042), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3044), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(1830), + [anon_sym_POUND] = ACTIONS(3), }, - [1415] = { - [sym_comment] = STATE(1415), - [ts_builtin_sym_end] = ACTIONS(2549), - [anon_sym_export] = ACTIONS(2547), - [anon_sym_alias] = ACTIONS(2547), - [anon_sym_let] = ACTIONS(2547), - [anon_sym_let_DASHenv] = ACTIONS(2547), - [anon_sym_mut] = ACTIONS(2547), - [anon_sym_const] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [sym_cmd_identifier] = ACTIONS(2547), - [anon_sym_LF] = ACTIONS(2549), - [anon_sym_def] = ACTIONS(2547), - [anon_sym_export_DASHenv] = ACTIONS(2547), - [anon_sym_extern] = ACTIONS(2547), - [anon_sym_module] = ACTIONS(2547), - [anon_sym_use] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_DOLLAR] = ACTIONS(2547), - [anon_sym_error] = ACTIONS(2547), - [anon_sym_DASH_DASH] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_break] = ACTIONS(2547), - [anon_sym_continue] = ACTIONS(2547), - [anon_sym_for] = ACTIONS(2547), - [anon_sym_loop] = ACTIONS(2547), - [anon_sym_while] = ACTIONS(2547), - [anon_sym_do] = ACTIONS(2547), - [anon_sym_if] = ACTIONS(2547), - [anon_sym_match] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2547), - [anon_sym_DOT_DOT] = ACTIONS(2547), - [anon_sym_try] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2547), - [anon_sym_source] = ACTIONS(2547), - [anon_sym_source_DASHenv] = ACTIONS(2547), - [anon_sym_register] = ACTIONS(2547), - [anon_sym_hide] = ACTIONS(2547), - [anon_sym_hide_DASHenv] = ACTIONS(2547), - [anon_sym_overlay] = ACTIONS(2547), - [anon_sym_as] = ACTIONS(2547), - [anon_sym_where] = ACTIONS(2547), - [anon_sym_not] = ACTIONS(2547), - [anon_sym_LPAREN2] = ACTIONS(2549), - [anon_sym_DOT] = ACTIONS(2547), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), - [anon_sym_DOT_DOT_LT] = ACTIONS(2547), - [aux_sym__immediate_decimal_token2] = ACTIONS(4014), - [anon_sym_null] = ACTIONS(2547), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [aux_sym__val_number_decimal_token1] = ACTIONS(2547), - [aux_sym__val_number_decimal_token2] = ACTIONS(2547), - [anon_sym_DOT2] = ACTIONS(2547), - [aux_sym__val_number_decimal_token3] = ACTIONS(2547), - [aux_sym__val_number_token1] = ACTIONS(2547), - [aux_sym__val_number_token2] = ACTIONS(2547), - [aux_sym__val_number_token3] = ACTIONS(2547), - [aux_sym__val_number_token4] = ACTIONS(2547), - [aux_sym__val_number_token5] = ACTIONS(2547), - [aux_sym__val_number_token6] = ACTIONS(2547), - [anon_sym_0b] = ACTIONS(2547), - [anon_sym_0o] = ACTIONS(2547), - [anon_sym_0x] = ACTIONS(2547), - [sym_val_date] = ACTIONS(2547), - [anon_sym_DQUOTE] = ACTIONS(2547), - [sym__str_single_quotes] = ACTIONS(2547), - [sym__str_back_ticks] = ACTIONS(2547), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2547), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2547), - [aux_sym_unquoted_token2] = ACTIONS(2547), - [anon_sym_POUND] = ACTIONS(113), + [1628] = { + [sym_expr_unary] = STATE(5617), + [sym__expr_unary_minus] = STATE(5585), + [sym_expr_binary] = STATE(5617), + [sym__expr_binary_expression] = STATE(5636), + [sym_expr_parenthesized] = STATE(5617), + [sym__val_range] = STATE(10026), + [sym__value] = STATE(5617), + [sym_val_nothing] = STATE(5712), + [sym_val_bool] = STATE(5355), + [sym_val_variable] = STATE(5712), + [sym__var] = STATE(5006), + [sym_val_number] = STATE(5712), + [sym__val_number_decimal] = STATE(4210), + [sym__val_number] = STATE(5721), + [sym_val_duration] = STATE(5712), + [sym_val_filesize] = STATE(5712), + [sym_val_binary] = STATE(5712), + [sym_val_string] = STATE(5712), + [sym__str_double_quotes] = STATE(5860), + [sym_val_interpolated] = STATE(5712), + [sym__inter_single_quotes] = STATE(5666), + [sym__inter_double_quotes] = STATE(5668), + [sym_val_list] = STATE(5712), + [sym_val_record] = STATE(5712), + [sym_val_table] = STATE(5712), + [sym_val_closure] = STATE(5712), + [sym_unquoted] = STATE(5637), + [sym__unquoted_anonymous_prefix] = STATE(10802), + [sym_comment] = STATE(1628), + [anon_sym_LBRACK] = ACTIONS(3014), + [anon_sym_LPAREN] = ACTIONS(5067), + [anon_sym_DOLLAR] = ACTIONS(5069), + [anon_sym_DASH] = ACTIONS(3809), + [anon_sym_LBRACE] = ACTIONS(3020), + [anon_sym_DOT_DOT] = ACTIONS(5071), + [anon_sym_not] = ACTIONS(3813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5073), + [anon_sym_DOT_DOT_LT] = ACTIONS(5073), + [anon_sym_null] = ACTIONS(3817), + [anon_sym_true] = ACTIONS(3819), + [anon_sym_false] = ACTIONS(3819), + [aux_sym__val_number_decimal_token1] = ACTIONS(3821), + [aux_sym__val_number_decimal_token2] = ACTIONS(3823), + [anon_sym_DOT2] = ACTIONS(5075), + [aux_sym__val_number_decimal_token3] = ACTIONS(3827), + [aux_sym__val_number_token1] = ACTIONS(3032), + [aux_sym__val_number_token2] = ACTIONS(3032), + [aux_sym__val_number_token3] = ACTIONS(3032), + [aux_sym__val_number_token4] = ACTIONS(3829), + [aux_sym__val_number_token5] = ACTIONS(3829), + [aux_sym__val_number_token6] = ACTIONS(3829), + [anon_sym_0b] = ACTIONS(1814), + [anon_sym_0o] = ACTIONS(1816), + [anon_sym_0x] = ACTIONS(1816), + [sym_val_date] = ACTIONS(3831), + [anon_sym_DQUOTE] = ACTIONS(3038), + [sym__str_single_quotes] = ACTIONS(3040), + [sym__str_back_ticks] = ACTIONS(3040), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3042), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3044), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(1830), + [anon_sym_POUND] = ACTIONS(3), }, - [1416] = { - [sym_comment] = STATE(1416), - [anon_sym_export] = ACTIONS(3518), - [anon_sym_alias] = ACTIONS(3518), - [anon_sym_let] = ACTIONS(3518), - [anon_sym_let_DASHenv] = ACTIONS(3518), - [anon_sym_mut] = ACTIONS(3518), - [anon_sym_const] = ACTIONS(3518), - [anon_sym_SEMI] = ACTIONS(3518), - [sym_cmd_identifier] = ACTIONS(3518), - [anon_sym_LF] = ACTIONS(3520), - [anon_sym_def] = ACTIONS(3518), - [anon_sym_export_DASHenv] = ACTIONS(3518), - [anon_sym_extern] = ACTIONS(3518), - [anon_sym_module] = ACTIONS(3518), - [anon_sym_use] = ACTIONS(3518), - [anon_sym_LBRACK] = ACTIONS(3518), - [anon_sym_LPAREN] = ACTIONS(3518), - [anon_sym_RPAREN] = ACTIONS(3518), - [anon_sym_DOLLAR] = ACTIONS(3518), - [anon_sym_error] = ACTIONS(3518), - [anon_sym_DASH_DASH] = ACTIONS(3518), - [anon_sym_DASH] = ACTIONS(3518), - [anon_sym_break] = ACTIONS(3518), - [anon_sym_continue] = ACTIONS(3518), - [anon_sym_for] = ACTIONS(3518), - [anon_sym_loop] = ACTIONS(3518), - [anon_sym_while] = ACTIONS(3518), - [anon_sym_do] = ACTIONS(3518), - [anon_sym_if] = ACTIONS(3518), - [anon_sym_match] = ACTIONS(3518), - [anon_sym_LBRACE] = ACTIONS(3518), - [anon_sym_RBRACE] = ACTIONS(3518), - [anon_sym_DOT_DOT] = ACTIONS(3518), - [anon_sym_try] = ACTIONS(3518), - [anon_sym_return] = ACTIONS(3518), - [anon_sym_source] = ACTIONS(3518), - [anon_sym_source_DASHenv] = ACTIONS(3518), - [anon_sym_register] = ACTIONS(3518), - [anon_sym_hide] = ACTIONS(3518), - [anon_sym_hide_DASHenv] = ACTIONS(3518), - [anon_sym_overlay] = ACTIONS(3518), - [anon_sym_as] = ACTIONS(3518), - [anon_sym_where] = ACTIONS(3518), - [anon_sym_not] = ACTIONS(3518), - [anon_sym_LPAREN2] = ACTIONS(3522), - [anon_sym_DOT] = ACTIONS(1934), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3518), - [anon_sym_DOT_DOT_LT] = ACTIONS(3518), - [anon_sym_null] = ACTIONS(3518), - [anon_sym_true] = ACTIONS(3518), - [anon_sym_false] = ACTIONS(3518), - [aux_sym__val_number_decimal_token1] = ACTIONS(3518), - [aux_sym__val_number_decimal_token2] = ACTIONS(3518), - [anon_sym_DOT2] = ACTIONS(3518), - [aux_sym__val_number_decimal_token3] = ACTIONS(3518), - [aux_sym__val_number_token1] = ACTIONS(3518), - [aux_sym__val_number_token2] = ACTIONS(3518), - [aux_sym__val_number_token3] = ACTIONS(3518), - [aux_sym__val_number_token4] = ACTIONS(3518), - [aux_sym__val_number_token5] = ACTIONS(3518), - [aux_sym__val_number_token6] = ACTIONS(3518), - [anon_sym_0b] = ACTIONS(3518), - [anon_sym_0o] = ACTIONS(3518), - [anon_sym_0x] = ACTIONS(3518), - [sym_val_date] = ACTIONS(3518), - [anon_sym_DQUOTE] = ACTIONS(3518), - [sym__str_single_quotes] = ACTIONS(3518), - [sym__str_back_ticks] = ACTIONS(3518), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3518), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3518), - [anon_sym_CARET] = ACTIONS(3518), - [aux_sym_unquoted_token2] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(113), + [1629] = { + [sym_expr_unary] = STATE(5617), + [sym__expr_unary_minus] = STATE(5585), + [sym_expr_binary] = STATE(5617), + [sym__expr_binary_expression] = STATE(5638), + [sym_expr_parenthesized] = STATE(5617), + [sym__val_range] = STATE(10026), + [sym__value] = STATE(5617), + [sym_val_nothing] = STATE(5712), + [sym_val_bool] = STATE(5355), + [sym_val_variable] = STATE(5712), + [sym__var] = STATE(5006), + [sym_val_number] = STATE(5712), + [sym__val_number_decimal] = STATE(4210), + [sym__val_number] = STATE(5721), + [sym_val_duration] = STATE(5712), + [sym_val_filesize] = STATE(5712), + [sym_val_binary] = STATE(5712), + [sym_val_string] = STATE(5712), + [sym__str_double_quotes] = STATE(5860), + [sym_val_interpolated] = STATE(5712), + [sym__inter_single_quotes] = STATE(5666), + [sym__inter_double_quotes] = STATE(5668), + [sym_val_list] = STATE(5712), + [sym_val_record] = STATE(5712), + [sym_val_table] = STATE(5712), + [sym_val_closure] = STATE(5712), + [sym_unquoted] = STATE(5639), + [sym__unquoted_anonymous_prefix] = STATE(10802), + [sym_comment] = STATE(1629), + [anon_sym_LBRACK] = ACTIONS(3014), + [anon_sym_LPAREN] = ACTIONS(5067), + [anon_sym_DOLLAR] = ACTIONS(5069), + [anon_sym_DASH] = ACTIONS(3809), + [anon_sym_LBRACE] = ACTIONS(3020), + [anon_sym_DOT_DOT] = ACTIONS(5071), + [anon_sym_not] = ACTIONS(3813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5073), + [anon_sym_DOT_DOT_LT] = ACTIONS(5073), + [anon_sym_null] = ACTIONS(3817), + [anon_sym_true] = ACTIONS(3819), + [anon_sym_false] = ACTIONS(3819), + [aux_sym__val_number_decimal_token1] = ACTIONS(3821), + [aux_sym__val_number_decimal_token2] = ACTIONS(3823), + [anon_sym_DOT2] = ACTIONS(5075), + [aux_sym__val_number_decimal_token3] = ACTIONS(3827), + [aux_sym__val_number_token1] = ACTIONS(3032), + [aux_sym__val_number_token2] = ACTIONS(3032), + [aux_sym__val_number_token3] = ACTIONS(3032), + [aux_sym__val_number_token4] = ACTIONS(3829), + [aux_sym__val_number_token5] = ACTIONS(3829), + [aux_sym__val_number_token6] = ACTIONS(3829), + [anon_sym_0b] = ACTIONS(1814), + [anon_sym_0o] = ACTIONS(1816), + [anon_sym_0x] = ACTIONS(1816), + [sym_val_date] = ACTIONS(3831), + [anon_sym_DQUOTE] = ACTIONS(3038), + [sym__str_single_quotes] = ACTIONS(3040), + [sym__str_back_ticks] = ACTIONS(3040), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3042), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3044), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(1830), + [anon_sym_POUND] = ACTIONS(3), }, - [1417] = { - [sym_cell_path] = STATE(1908), - [sym_path] = STATE(1429), - [sym_comment] = STATE(1417), - [anon_sym_LBRACK] = ACTIONS(995), - [anon_sym_COMMA] = ACTIONS(995), - [anon_sym_RBRACK] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_DOLLAR] = ACTIONS(995), - [anon_sym_GT] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_in] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_DOT_DOT] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_STAR_STAR] = ACTIONS(995), - [anon_sym_PLUS_PLUS] = ACTIONS(995), - [anon_sym_SLASH] = ACTIONS(995), - [anon_sym_mod] = ACTIONS(995), - [anon_sym_SLASH_SLASH] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_bit_DASHshl] = ACTIONS(995), - [anon_sym_bit_DASHshr] = ACTIONS(995), - [anon_sym_EQ_EQ] = ACTIONS(995), - [anon_sym_BANG_EQ] = ACTIONS(995), - [anon_sym_LT2] = ACTIONS(995), - [anon_sym_LT_EQ] = ACTIONS(995), - [anon_sym_GT_EQ] = ACTIONS(995), - [anon_sym_not_DASHin] = ACTIONS(995), - [anon_sym_starts_DASHwith] = ACTIONS(995), - [anon_sym_ends_DASHwith] = ACTIONS(995), - [anon_sym_EQ_TILDE] = ACTIONS(995), - [anon_sym_BANG_TILDE] = ACTIONS(995), - [anon_sym_bit_DASHand] = ACTIONS(995), - [anon_sym_bit_DASHxor] = ACTIONS(995), - [anon_sym_bit_DASHor] = ACTIONS(995), - [anon_sym_and] = ACTIONS(995), - [anon_sym_xor] = ACTIONS(995), - [anon_sym_or] = ACTIONS(995), - [anon_sym_DOT] = ACTIONS(3858), - [anon_sym_DOT_DOT_EQ] = ACTIONS(995), - [anon_sym_DOT_DOT_LT] = ACTIONS(995), - [anon_sym_null] = ACTIONS(995), - [anon_sym_true] = ACTIONS(995), - [anon_sym_false] = ACTIONS(995), - [aux_sym__val_number_decimal_token1] = ACTIONS(995), - [aux_sym__val_number_decimal_token2] = ACTIONS(995), - [anon_sym_DOT2] = ACTIONS(995), - [aux_sym__val_number_decimal_token3] = ACTIONS(995), - [aux_sym__val_number_token1] = ACTIONS(995), - [aux_sym__val_number_token2] = ACTIONS(995), - [aux_sym__val_number_token3] = ACTIONS(995), - [aux_sym__val_number_token4] = ACTIONS(995), - [aux_sym__val_number_token5] = ACTIONS(995), - [aux_sym__val_number_token6] = ACTIONS(995), - [anon_sym_0b] = ACTIONS(995), - [anon_sym_0o] = ACTIONS(995), - [anon_sym_0x] = ACTIONS(995), - [sym_val_date] = ACTIONS(995), - [anon_sym_DQUOTE] = ACTIONS(995), - [sym__str_single_quotes] = ACTIONS(995), - [sym__str_back_ticks] = ACTIONS(995), - [sym__entry_separator] = ACTIONS(997), - [anon_sym_err_GT] = ACTIONS(995), - [anon_sym_out_GT] = ACTIONS(995), - [anon_sym_e_GT] = ACTIONS(995), - [anon_sym_o_GT] = ACTIONS(995), - [anon_sym_err_PLUSout_GT] = ACTIONS(995), - [anon_sym_out_PLUSerr_GT] = ACTIONS(995), - [anon_sym_o_PLUSe_GT] = ACTIONS(995), - [anon_sym_e_PLUSo_GT] = ACTIONS(995), - [aux_sym__unquoted_in_list_token1] = ACTIONS(995), - [anon_sym_POUND] = ACTIONS(113), + [1630] = { + [sym_expr_unary] = STATE(5617), + [sym__expr_unary_minus] = STATE(5585), + [sym_expr_binary] = STATE(5617), + [sym__expr_binary_expression] = STATE(5640), + [sym_expr_parenthesized] = STATE(5617), + [sym__val_range] = STATE(10026), + [sym__value] = STATE(5617), + [sym_val_nothing] = STATE(5712), + [sym_val_bool] = STATE(5355), + [sym_val_variable] = STATE(5712), + [sym__var] = STATE(5006), + [sym_val_number] = STATE(5712), + [sym__val_number_decimal] = STATE(4210), + [sym__val_number] = STATE(5721), + [sym_val_duration] = STATE(5712), + [sym_val_filesize] = STATE(5712), + [sym_val_binary] = STATE(5712), + [sym_val_string] = STATE(5712), + [sym__str_double_quotes] = STATE(5860), + [sym_val_interpolated] = STATE(5712), + [sym__inter_single_quotes] = STATE(5666), + [sym__inter_double_quotes] = STATE(5668), + [sym_val_list] = STATE(5712), + [sym_val_record] = STATE(5712), + [sym_val_table] = STATE(5712), + [sym_val_closure] = STATE(5712), + [sym_unquoted] = STATE(5641), + [sym__unquoted_anonymous_prefix] = STATE(10802), + [sym_comment] = STATE(1630), + [anon_sym_LBRACK] = ACTIONS(3014), + [anon_sym_LPAREN] = ACTIONS(5067), + [anon_sym_DOLLAR] = ACTIONS(5069), + [anon_sym_DASH] = ACTIONS(3809), + [anon_sym_LBRACE] = ACTIONS(3020), + [anon_sym_DOT_DOT] = ACTIONS(5071), + [anon_sym_not] = ACTIONS(3813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5073), + [anon_sym_DOT_DOT_LT] = ACTIONS(5073), + [anon_sym_null] = ACTIONS(3817), + [anon_sym_true] = ACTIONS(3819), + [anon_sym_false] = ACTIONS(3819), + [aux_sym__val_number_decimal_token1] = ACTIONS(3821), + [aux_sym__val_number_decimal_token2] = ACTIONS(3823), + [anon_sym_DOT2] = ACTIONS(5075), + [aux_sym__val_number_decimal_token3] = ACTIONS(3827), + [aux_sym__val_number_token1] = ACTIONS(3032), + [aux_sym__val_number_token2] = ACTIONS(3032), + [aux_sym__val_number_token3] = ACTIONS(3032), + [aux_sym__val_number_token4] = ACTIONS(3829), + [aux_sym__val_number_token5] = ACTIONS(3829), + [aux_sym__val_number_token6] = ACTIONS(3829), + [anon_sym_0b] = ACTIONS(1814), + [anon_sym_0o] = ACTIONS(1816), + [anon_sym_0x] = ACTIONS(1816), + [sym_val_date] = ACTIONS(3831), + [anon_sym_DQUOTE] = ACTIONS(3038), + [sym__str_single_quotes] = ACTIONS(3040), + [sym__str_back_ticks] = ACTIONS(3040), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3042), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3044), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(1830), + [anon_sym_POUND] = ACTIONS(3), }, - [1418] = { - [sym_comment] = STATE(1418), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_COMMA] = ACTIONS(1111), - [anon_sym_LPAREN] = ACTIONS(1111), - [anon_sym_DOLLAR] = ACTIONS(1111), - [anon_sym_GT] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_in] = ACTIONS(1109), - [anon_sym_LBRACE] = ACTIONS(1111), - [anon_sym_RBRACE] = ACTIONS(1111), - [anon_sym__] = ACTIONS(1109), - [anon_sym_DOT_DOT] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_STAR_STAR] = ACTIONS(1111), - [anon_sym_PLUS_PLUS] = ACTIONS(1111), - [anon_sym_SLASH] = ACTIONS(1109), - [anon_sym_mod] = ACTIONS(1111), - [anon_sym_SLASH_SLASH] = ACTIONS(1111), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_bit_DASHshl] = ACTIONS(1111), - [anon_sym_bit_DASHshr] = ACTIONS(1111), - [anon_sym_EQ_EQ] = ACTIONS(1111), - [anon_sym_BANG_EQ] = ACTIONS(1111), - [anon_sym_LT2] = ACTIONS(1109), - [anon_sym_LT_EQ] = ACTIONS(1111), - [anon_sym_GT_EQ] = ACTIONS(1111), - [anon_sym_not_DASHin] = ACTIONS(1111), - [anon_sym_starts_DASHwith] = ACTIONS(1111), - [anon_sym_ends_DASHwith] = ACTIONS(1111), - [anon_sym_EQ_TILDE] = ACTIONS(1111), - [anon_sym_BANG_TILDE] = ACTIONS(1111), - [anon_sym_bit_DASHand] = ACTIONS(1111), - [anon_sym_bit_DASHxor] = ACTIONS(1111), - [anon_sym_bit_DASHor] = ACTIONS(1111), - [anon_sym_and] = ACTIONS(1111), - [anon_sym_xor] = ACTIONS(1111), - [anon_sym_or] = ACTIONS(1111), - [anon_sym_DOT_DOT2] = ACTIONS(1109), - [anon_sym_DOT] = ACTIONS(1109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1109), - [anon_sym_DOT_DOT_LT] = ACTIONS(1109), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1111), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1111), - [anon_sym_null] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1111), - [anon_sym_false] = ACTIONS(1111), - [aux_sym__val_number_decimal_token1] = ACTIONS(1109), - [aux_sym__val_number_decimal_token2] = ACTIONS(1111), - [anon_sym_DOT2] = ACTIONS(1109), - [aux_sym__val_number_decimal_token3] = ACTIONS(1111), - [aux_sym__val_number_token1] = ACTIONS(1111), - [aux_sym__val_number_token2] = ACTIONS(1111), - [aux_sym__val_number_token3] = ACTIONS(1111), - [aux_sym__val_number_token4] = ACTIONS(1111), - [aux_sym__val_number_token5] = ACTIONS(1111), - [aux_sym__val_number_token6] = ACTIONS(1111), - [anon_sym_0b] = ACTIONS(1109), - [anon_sym_0o] = ACTIONS(1109), - [anon_sym_0x] = ACTIONS(1109), - [sym_val_date] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(1111), - [sym__str_single_quotes] = ACTIONS(1111), - [sym__str_back_ticks] = ACTIONS(1111), - [anon_sym_err_GT] = ACTIONS(1111), - [anon_sym_out_GT] = ACTIONS(1111), - [anon_sym_e_GT] = ACTIONS(1111), - [anon_sym_o_GT] = ACTIONS(1111), - [anon_sym_err_PLUSout_GT] = ACTIONS(1111), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1111), - [anon_sym_o_PLUSe_GT] = ACTIONS(1111), - [anon_sym_e_PLUSo_GT] = ACTIONS(1111), - [aux_sym_unquoted_token1] = ACTIONS(1109), + [1631] = { + [sym_expr_unary] = STATE(5617), + [sym__expr_unary_minus] = STATE(5585), + [sym_expr_binary] = STATE(5617), + [sym__expr_binary_expression] = STATE(5642), + [sym_expr_parenthesized] = STATE(5617), + [sym__val_range] = STATE(10026), + [sym__value] = STATE(5617), + [sym_val_nothing] = STATE(5712), + [sym_val_bool] = STATE(5355), + [sym_val_variable] = STATE(5712), + [sym__var] = STATE(5006), + [sym_val_number] = STATE(5712), + [sym__val_number_decimal] = STATE(4210), + [sym__val_number] = STATE(5721), + [sym_val_duration] = STATE(5712), + [sym_val_filesize] = STATE(5712), + [sym_val_binary] = STATE(5712), + [sym_val_string] = STATE(5712), + [sym__str_double_quotes] = STATE(5860), + [sym_val_interpolated] = STATE(5712), + [sym__inter_single_quotes] = STATE(5666), + [sym__inter_double_quotes] = STATE(5668), + [sym_val_list] = STATE(5712), + [sym_val_record] = STATE(5712), + [sym_val_table] = STATE(5712), + [sym_val_closure] = STATE(5712), + [sym_unquoted] = STATE(5643), + [sym__unquoted_anonymous_prefix] = STATE(10802), + [sym_comment] = STATE(1631), + [anon_sym_LBRACK] = ACTIONS(3014), + [anon_sym_LPAREN] = ACTIONS(5067), + [anon_sym_DOLLAR] = ACTIONS(5069), + [anon_sym_DASH] = ACTIONS(3809), + [anon_sym_LBRACE] = ACTIONS(3020), + [anon_sym_DOT_DOT] = ACTIONS(5071), + [anon_sym_not] = ACTIONS(3813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5073), + [anon_sym_DOT_DOT_LT] = ACTIONS(5073), + [anon_sym_null] = ACTIONS(3817), + [anon_sym_true] = ACTIONS(3819), + [anon_sym_false] = ACTIONS(3819), + [aux_sym__val_number_decimal_token1] = ACTIONS(3821), + [aux_sym__val_number_decimal_token2] = ACTIONS(3823), + [anon_sym_DOT2] = ACTIONS(5075), + [aux_sym__val_number_decimal_token3] = ACTIONS(3827), + [aux_sym__val_number_token1] = ACTIONS(3032), + [aux_sym__val_number_token2] = ACTIONS(3032), + [aux_sym__val_number_token3] = ACTIONS(3032), + [aux_sym__val_number_token4] = ACTIONS(3829), + [aux_sym__val_number_token5] = ACTIONS(3829), + [aux_sym__val_number_token6] = ACTIONS(3829), + [anon_sym_0b] = ACTIONS(1814), + [anon_sym_0o] = ACTIONS(1816), + [anon_sym_0x] = ACTIONS(1816), + [sym_val_date] = ACTIONS(3831), + [anon_sym_DQUOTE] = ACTIONS(3038), + [sym__str_single_quotes] = ACTIONS(3040), + [sym__str_back_ticks] = ACTIONS(3040), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3042), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3044), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(1830), [anon_sym_POUND] = ACTIONS(3), }, - [1419] = { - [sym_comment] = STATE(1419), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_LF] = ACTIONS(952), - [anon_sym_LBRACK] = ACTIONS(950), - [anon_sym_LPAREN] = ACTIONS(950), - [anon_sym_RPAREN] = ACTIONS(950), - [anon_sym_PIPE] = ACTIONS(950), - [anon_sym_DOLLAR] = ACTIONS(950), - [anon_sym_GT] = ACTIONS(950), - [anon_sym_DASH_DASH] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(950), - [anon_sym_in] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(950), - [anon_sym_RBRACE] = ACTIONS(950), - [anon_sym_DOT_DOT] = ACTIONS(950), - [anon_sym_STAR] = ACTIONS(950), - [anon_sym_STAR_STAR] = ACTIONS(950), - [anon_sym_PLUS_PLUS] = ACTIONS(950), - [anon_sym_SLASH] = ACTIONS(950), - [anon_sym_mod] = ACTIONS(950), - [anon_sym_SLASH_SLASH] = ACTIONS(950), - [anon_sym_PLUS] = ACTIONS(950), - [anon_sym_bit_DASHshl] = ACTIONS(950), - [anon_sym_bit_DASHshr] = ACTIONS(950), - [anon_sym_EQ_EQ] = ACTIONS(950), - [anon_sym_BANG_EQ] = ACTIONS(950), - [anon_sym_LT2] = ACTIONS(950), - [anon_sym_LT_EQ] = ACTIONS(950), - [anon_sym_GT_EQ] = ACTIONS(950), - [anon_sym_not_DASHin] = ACTIONS(950), - [anon_sym_starts_DASHwith] = ACTIONS(950), - [anon_sym_ends_DASHwith] = ACTIONS(950), - [anon_sym_EQ_TILDE] = ACTIONS(950), - [anon_sym_BANG_TILDE] = ACTIONS(950), - [anon_sym_bit_DASHand] = ACTIONS(950), - [anon_sym_bit_DASHxor] = ACTIONS(950), - [anon_sym_bit_DASHor] = ACTIONS(950), - [anon_sym_and] = ACTIONS(950), - [anon_sym_xor] = ACTIONS(950), - [anon_sym_or] = ACTIONS(950), - [anon_sym_not] = ACTIONS(950), - [anon_sym_DOT_DOT2] = ACTIONS(950), - [anon_sym_DOT] = 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(950), - [anon_sym_true] = ACTIONS(950), - [anon_sym_false] = ACTIONS(950), - [aux_sym__val_number_decimal_token1] = ACTIONS(950), - [aux_sym__val_number_decimal_token2] = ACTIONS(950), - [anon_sym_DOT2] = ACTIONS(950), - [aux_sym__val_number_decimal_token3] = ACTIONS(950), - [aux_sym__val_number_token1] = ACTIONS(950), - [aux_sym__val_number_token2] = ACTIONS(950), - [aux_sym__val_number_token3] = ACTIONS(950), - [aux_sym__val_number_token4] = ACTIONS(950), - [aux_sym__val_number_token5] = ACTIONS(950), - [aux_sym__val_number_token6] = ACTIONS(950), - [anon_sym_0b] = ACTIONS(950), - [sym_filesize_unit] = ACTIONS(950), - [sym_duration_unit] = ACTIONS(952), - [anon_sym_0o] = ACTIONS(950), - [anon_sym_0x] = ACTIONS(950), - [sym_val_date] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym__str_single_quotes] = ACTIONS(950), - [sym__str_back_ticks] = ACTIONS(950), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(950), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(950), - [aux_sym_unquoted_token5] = ACTIONS(950), + [1632] = { + [sym_comment] = STATE(1632), + [anon_sym_export] = ACTIONS(4734), + [anon_sym_alias] = ACTIONS(4734), + [anon_sym_let] = ACTIONS(4734), + [anon_sym_let_DASHenv] = ACTIONS(4734), + [anon_sym_mut] = ACTIONS(4734), + [anon_sym_const] = ACTIONS(4734), + [anon_sym_SEMI] = ACTIONS(4734), + [sym_cmd_identifier] = ACTIONS(4734), + [anon_sym_LF] = ACTIONS(4738), + [anon_sym_def] = ACTIONS(4734), + [anon_sym_export_DASHenv] = ACTIONS(4734), + [anon_sym_extern] = ACTIONS(4734), + [anon_sym_module] = ACTIONS(4734), + [anon_sym_use] = ACTIONS(4734), + [anon_sym_LBRACK] = ACTIONS(4734), + [anon_sym_LPAREN] = ACTIONS(4734), + [anon_sym_RPAREN] = ACTIONS(4734), + [anon_sym_DOLLAR] = ACTIONS(4734), + [anon_sym_error] = ACTIONS(4734), + [anon_sym_DASH_DASH] = ACTIONS(4734), + [anon_sym_DASH] = ACTIONS(4734), + [anon_sym_break] = ACTIONS(4734), + [anon_sym_continue] = ACTIONS(4734), + [anon_sym_for] = ACTIONS(4734), + [anon_sym_loop] = ACTIONS(4734), + [anon_sym_while] = ACTIONS(4734), + [anon_sym_do] = ACTIONS(4734), + [anon_sym_if] = ACTIONS(4734), + [anon_sym_match] = ACTIONS(4734), + [anon_sym_LBRACE] = ACTIONS(4734), + [anon_sym_RBRACE] = ACTIONS(4734), + [anon_sym_DOT_DOT] = ACTIONS(4734), + [anon_sym_try] = ACTIONS(4734), + [anon_sym_return] = ACTIONS(4734), + [anon_sym_source] = ACTIONS(4734), + [anon_sym_source_DASHenv] = ACTIONS(4734), + [anon_sym_register] = ACTIONS(4734), + [anon_sym_hide] = ACTIONS(4734), + [anon_sym_hide_DASHenv] = ACTIONS(4734), + [anon_sym_overlay] = ACTIONS(4734), + [anon_sym_as] = ACTIONS(4734), + [anon_sym_where] = ACTIONS(4734), + [anon_sym_not] = ACTIONS(4734), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4734), + [anon_sym_DOT_DOT_LT] = ACTIONS(4734), + [anon_sym_null] = ACTIONS(4734), + [anon_sym_true] = ACTIONS(4734), + [anon_sym_false] = ACTIONS(4734), + [aux_sym__val_number_decimal_token1] = ACTIONS(4734), + [aux_sym__val_number_decimal_token2] = ACTIONS(4734), + [anon_sym_DOT2] = ACTIONS(4734), + [aux_sym__val_number_decimal_token3] = ACTIONS(4734), + [aux_sym__val_number_token1] = ACTIONS(4734), + [aux_sym__val_number_token2] = ACTIONS(4734), + [aux_sym__val_number_token3] = ACTIONS(4734), + [aux_sym__val_number_token4] = ACTIONS(4734), + [aux_sym__val_number_token5] = ACTIONS(4734), + [aux_sym__val_number_token6] = ACTIONS(4734), + [anon_sym_0b] = ACTIONS(4734), + [anon_sym_0o] = ACTIONS(4734), + [anon_sym_0x] = ACTIONS(4734), + [sym_val_date] = ACTIONS(4734), + [anon_sym_DQUOTE] = ACTIONS(4734), + [sym__str_single_quotes] = ACTIONS(4734), + [sym__str_back_ticks] = ACTIONS(4734), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4734), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4734), + [anon_sym_CARET] = ACTIONS(4734), [anon_sym_POUND] = ACTIONS(113), }, - [1420] = { - [sym_comment] = STATE(1420), - [ts_builtin_sym_end] = ACTIONS(2583), - [anon_sym_export] = ACTIONS(2581), - [anon_sym_alias] = ACTIONS(2581), - [anon_sym_let] = ACTIONS(2581), - [anon_sym_let_DASHenv] = ACTIONS(2581), - [anon_sym_mut] = ACTIONS(2581), - [anon_sym_const] = ACTIONS(2581), - [anon_sym_SEMI] = ACTIONS(2581), - [sym_cmd_identifier] = ACTIONS(2581), - [anon_sym_LF] = ACTIONS(2583), - [anon_sym_def] = ACTIONS(2581), - [anon_sym_export_DASHenv] = ACTIONS(2581), - [anon_sym_extern] = ACTIONS(2581), - [anon_sym_module] = ACTIONS(2581), - [anon_sym_use] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2581), - [anon_sym_error] = ACTIONS(2581), - [anon_sym_DASH_DASH] = ACTIONS(2581), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_break] = ACTIONS(2581), - [anon_sym_continue] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2581), - [anon_sym_loop] = ACTIONS(2581), - [anon_sym_while] = ACTIONS(2581), - [anon_sym_do] = ACTIONS(2581), - [anon_sym_if] = ACTIONS(2581), - [anon_sym_match] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2581), - [anon_sym_DOT_DOT] = ACTIONS(2581), - [anon_sym_try] = ACTIONS(2581), - [anon_sym_return] = ACTIONS(2581), - [anon_sym_source] = ACTIONS(2581), - [anon_sym_source_DASHenv] = ACTIONS(2581), - [anon_sym_register] = ACTIONS(2581), - [anon_sym_hide] = ACTIONS(2581), - [anon_sym_hide_DASHenv] = ACTIONS(2581), - [anon_sym_overlay] = ACTIONS(2581), - [anon_sym_as] = ACTIONS(2581), - [anon_sym_where] = ACTIONS(2581), - [anon_sym_not] = ACTIONS(2581), - [anon_sym_DOT_DOT2] = ACTIONS(2581), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2581), - [anon_sym_DOT_DOT_LT] = ACTIONS(2581), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2583), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2583), - [aux_sym__immediate_decimal_token2] = ACTIONS(3826), - [anon_sym_null] = ACTIONS(2581), - [anon_sym_true] = ACTIONS(2581), - [anon_sym_false] = ACTIONS(2581), - [aux_sym__val_number_decimal_token1] = ACTIONS(2581), - [aux_sym__val_number_decimal_token2] = ACTIONS(2581), - [anon_sym_DOT2] = ACTIONS(2581), - [aux_sym__val_number_decimal_token3] = ACTIONS(2581), - [aux_sym__val_number_token1] = ACTIONS(2581), - [aux_sym__val_number_token2] = ACTIONS(2581), - [aux_sym__val_number_token3] = ACTIONS(2581), - [aux_sym__val_number_token4] = ACTIONS(2581), - [aux_sym__val_number_token5] = ACTIONS(2581), - [aux_sym__val_number_token6] = ACTIONS(2581), - [anon_sym_0b] = ACTIONS(2581), - [anon_sym_0o] = ACTIONS(2581), - [anon_sym_0x] = ACTIONS(2581), - [sym_val_date] = ACTIONS(2581), - [anon_sym_DQUOTE] = ACTIONS(2581), - [sym__str_single_quotes] = ACTIONS(2581), - [sym__str_back_ticks] = ACTIONS(2581), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2581), - [anon_sym_CARET] = ACTIONS(2581), + [1633] = { + [sym_comment] = STATE(1633), + [ts_builtin_sym_end] = ACTIONS(922), + [anon_sym_export] = ACTIONS(920), + [anon_sym_alias] = ACTIONS(920), + [anon_sym_let] = ACTIONS(920), + [anon_sym_let_DASHenv] = ACTIONS(920), + [anon_sym_mut] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(920), + [sym_cmd_identifier] = ACTIONS(920), + [anon_sym_LF] = ACTIONS(922), + [anon_sym_def] = ACTIONS(920), + [anon_sym_export_DASHenv] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym_module] = ACTIONS(920), + [anon_sym_use] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_error] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_loop] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_match] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_try] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_source] = ACTIONS(920), + [anon_sym_source_DASHenv] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_hide] = ACTIONS(920), + [anon_sym_hide_DASHenv] = ACTIONS(920), + [anon_sym_overlay] = ACTIONS(920), + [anon_sym_as] = ACTIONS(920), + [anon_sym_where] = ACTIONS(920), + [anon_sym_not] = ACTIONS(920), + [anon_sym_LPAREN2] = ACTIONS(922), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [anon_sym_null] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), + [anon_sym_CARET] = ACTIONS(920), [anon_sym_POUND] = ACTIONS(113), }, - [1421] = { - [sym_comment] = STATE(1421), - [ts_builtin_sym_end] = ACTIONS(2439), - [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), - [anon_sym_SEMI] = ACTIONS(2437), - [sym_cmd_identifier] = ACTIONS(2437), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_DASH_DASH] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_as] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_not] = ACTIONS(2437), - [anon_sym_DOT_DOT2] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2439), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2439), - [aux_sym__immediate_decimal_token2] = ACTIONS(3768), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [anon_sym_DOT2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2437), - [anon_sym_0o] = ACTIONS(2437), - [anon_sym_0x] = ACTIONS(2437), - [sym_val_date] = 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_CARET] = ACTIONS(2437), - [anon_sym_POUND] = ACTIONS(113), + [1634] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6348), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6234), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4982), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5819), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1634), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(5035), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4787), + [anon_sym_DOT_DOT_LT] = ACTIONS(4787), + [anon_sym_null] = ACTIONS(3669), + [anon_sym_true] = ACTIONS(3671), + [anon_sym_false] = ACTIONS(3671), + [aux_sym__val_number_decimal_token1] = ACTIONS(3673), + [aux_sym__val_number_decimal_token2] = ACTIONS(3675), + [anon_sym_DOT2] = ACTIONS(5037), + [aux_sym__val_number_decimal_token3] = ACTIONS(3679), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(3681), + [aux_sym__val_number_token5] = ACTIONS(3681), + [aux_sym__val_number_token6] = ACTIONS(3681), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(3683), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), + [anon_sym_POUND] = ACTIONS(3), }, - [1422] = { - [sym_comment] = STATE(1422), - [anon_sym_export] = ACTIONS(4016), - [anon_sym_alias] = ACTIONS(4016), - [anon_sym_let] = ACTIONS(4016), - [anon_sym_let_DASHenv] = ACTIONS(4016), - [anon_sym_mut] = ACTIONS(4016), - [anon_sym_const] = ACTIONS(4016), - [anon_sym_SEMI] = ACTIONS(4016), - [sym_cmd_identifier] = ACTIONS(4016), - [anon_sym_LF] = ACTIONS(4018), - [anon_sym_def] = ACTIONS(4016), - [anon_sym_export_DASHenv] = ACTIONS(4016), - [anon_sym_extern] = ACTIONS(4016), - [anon_sym_module] = ACTIONS(4016), - [anon_sym_use] = ACTIONS(4016), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym_RPAREN] = ACTIONS(4016), - [anon_sym_DOLLAR] = ACTIONS(4016), - [anon_sym_error] = ACTIONS(4016), - [anon_sym_DASH_DASH] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_break] = ACTIONS(4016), - [anon_sym_continue] = ACTIONS(4016), - [anon_sym_for] = ACTIONS(4016), - [anon_sym_loop] = ACTIONS(4016), - [anon_sym_while] = ACTIONS(4016), - [anon_sym_do] = ACTIONS(4016), - [anon_sym_if] = ACTIONS(4016), - [anon_sym_match] = ACTIONS(4016), - [anon_sym_LBRACE] = ACTIONS(4016), - [anon_sym_RBRACE] = ACTIONS(4016), - [anon_sym_DOT_DOT] = ACTIONS(4016), - [anon_sym_try] = ACTIONS(4016), - [anon_sym_return] = ACTIONS(4016), - [anon_sym_source] = ACTIONS(4016), - [anon_sym_source_DASHenv] = ACTIONS(4016), - [anon_sym_register] = ACTIONS(4016), - [anon_sym_hide] = ACTIONS(4016), - [anon_sym_hide_DASHenv] = ACTIONS(4016), - [anon_sym_overlay] = ACTIONS(4016), - [anon_sym_as] = ACTIONS(4016), - [anon_sym_where] = ACTIONS(4016), - [anon_sym_not] = ACTIONS(4016), - [anon_sym_DOT_DOT2] = ACTIONS(1162), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4016), - [anon_sym_DOT_DOT_LT] = ACTIONS(4016), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1164), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1164), - [anon_sym_null] = ACTIONS(4016), - [anon_sym_true] = ACTIONS(4016), - [anon_sym_false] = ACTIONS(4016), - [aux_sym__val_number_decimal_token1] = ACTIONS(4016), - [aux_sym__val_number_decimal_token2] = ACTIONS(4016), - [anon_sym_DOT2] = ACTIONS(4016), - [aux_sym__val_number_decimal_token3] = ACTIONS(4016), - [aux_sym__val_number_token1] = ACTIONS(4016), - [aux_sym__val_number_token2] = ACTIONS(4016), - [aux_sym__val_number_token3] = ACTIONS(4016), - [aux_sym__val_number_token4] = ACTIONS(4016), - [aux_sym__val_number_token5] = ACTIONS(4016), - [aux_sym__val_number_token6] = ACTIONS(4016), - [anon_sym_0b] = ACTIONS(4016), - [anon_sym_0o] = ACTIONS(4016), - [anon_sym_0x] = ACTIONS(4016), - [sym_val_date] = ACTIONS(4016), - [anon_sym_DQUOTE] = ACTIONS(4016), - [sym__str_single_quotes] = ACTIONS(4016), - [sym__str_back_ticks] = ACTIONS(4016), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4016), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4016), - [anon_sym_CARET] = ACTIONS(4016), - [anon_sym_POUND] = ACTIONS(113), + [1635] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5097), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(4890), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3866), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4749), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1635), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5085), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5089), + [anon_sym_DOT_DOT_LT] = ACTIONS(5089), + [anon_sym_null] = ACTIONS(5091), + [anon_sym_true] = ACTIONS(5093), + [anon_sym_false] = ACTIONS(5093), + [aux_sym__val_number_decimal_token1] = ACTIONS(5095), + [aux_sym__val_number_decimal_token2] = ACTIONS(5097), + [anon_sym_DOT2] = ACTIONS(5099), + [aux_sym__val_number_decimal_token3] = ACTIONS(5101), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5103), + [aux_sym__val_number_token5] = ACTIONS(5103), + [aux_sym__val_number_token6] = ACTIONS(5103), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5105), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), }, - [1423] = { - [sym_path] = STATE(1644), - [sym_comment] = STATE(1423), - [aux_sym_cell_path_repeat1] = STATE(1357), - [ts_builtin_sym_end] = ACTIONS(989), - [anon_sym_export] = ACTIONS(987), - [anon_sym_alias] = ACTIONS(987), - [anon_sym_let] = ACTIONS(987), - [anon_sym_let_DASHenv] = ACTIONS(987), - [anon_sym_mut] = ACTIONS(987), - [anon_sym_const] = ACTIONS(987), - [anon_sym_SEMI] = ACTIONS(987), - [sym_cmd_identifier] = ACTIONS(987), - [anon_sym_LF] = ACTIONS(989), - [anon_sym_def] = ACTIONS(987), - [anon_sym_export_DASHenv] = ACTIONS(987), - [anon_sym_extern] = ACTIONS(987), - [anon_sym_module] = ACTIONS(987), - [anon_sym_use] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(987), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_DOLLAR] = ACTIONS(987), - [anon_sym_error] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_break] = ACTIONS(987), - [anon_sym_continue] = ACTIONS(987), - [anon_sym_for] = ACTIONS(987), - [anon_sym_loop] = ACTIONS(987), - [anon_sym_while] = ACTIONS(987), - [anon_sym_do] = ACTIONS(987), - [anon_sym_if] = ACTIONS(987), - [anon_sym_match] = ACTIONS(987), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_DOT_DOT] = ACTIONS(987), - [anon_sym_try] = ACTIONS(987), - [anon_sym_return] = ACTIONS(987), - [anon_sym_source] = ACTIONS(987), - [anon_sym_source_DASHenv] = ACTIONS(987), - [anon_sym_register] = ACTIONS(987), - [anon_sym_hide] = ACTIONS(987), - [anon_sym_hide_DASHenv] = ACTIONS(987), - [anon_sym_overlay] = ACTIONS(987), - [anon_sym_where] = ACTIONS(987), - [anon_sym_not] = ACTIONS(987), - [anon_sym_DOT_DOT2] = ACTIONS(987), - [anon_sym_DOT] = ACTIONS(3856), - [anon_sym_DOT_DOT_EQ] = ACTIONS(987), - [anon_sym_DOT_DOT_LT] = ACTIONS(987), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(989), - [anon_sym_DOT_DOT_LT2] = ACTIONS(989), - [anon_sym_null] = ACTIONS(987), - [anon_sym_true] = ACTIONS(987), - [anon_sym_false] = ACTIONS(987), - [aux_sym__val_number_decimal_token1] = ACTIONS(987), - [aux_sym__val_number_decimal_token2] = ACTIONS(987), - [anon_sym_DOT2] = ACTIONS(987), - [aux_sym__val_number_decimal_token3] = ACTIONS(987), - [aux_sym__val_number_token1] = ACTIONS(987), - [aux_sym__val_number_token2] = ACTIONS(987), - [aux_sym__val_number_token3] = ACTIONS(987), - [aux_sym__val_number_token4] = ACTIONS(987), - [aux_sym__val_number_token5] = ACTIONS(987), - [aux_sym__val_number_token6] = ACTIONS(987), - [anon_sym_0b] = ACTIONS(987), - [anon_sym_0o] = ACTIONS(987), - [anon_sym_0x] = ACTIONS(987), - [sym_val_date] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(987), - [sym__str_single_quotes] = ACTIONS(987), - [sym__str_back_ticks] = ACTIONS(987), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(987), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_POUND] = ACTIONS(113), + [1636] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5100), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(4890), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3866), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4750), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1636), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5085), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5089), + [anon_sym_DOT_DOT_LT] = ACTIONS(5089), + [anon_sym_null] = ACTIONS(5091), + [anon_sym_true] = ACTIONS(5093), + [anon_sym_false] = ACTIONS(5093), + [aux_sym__val_number_decimal_token1] = ACTIONS(5095), + [aux_sym__val_number_decimal_token2] = ACTIONS(5097), + [anon_sym_DOT2] = ACTIONS(5099), + [aux_sym__val_number_decimal_token3] = ACTIONS(5101), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5103), + [aux_sym__val_number_token5] = ACTIONS(5103), + [aux_sym__val_number_token6] = ACTIONS(5103), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5105), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), }, - [1424] = { - [sym_comment] = STATE(1424), - [ts_builtin_sym_end] = ACTIONS(911), - [anon_sym_SEMI] = ACTIONS(909), - [anon_sym_LF] = ACTIONS(911), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_DOT_DOT] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(909), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(909), - [anon_sym_SLASH_SLASH] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(909), - [anon_sym_bit_DASHshr] = ACTIONS(909), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_not_DASHin] = ACTIONS(909), - [anon_sym_starts_DASHwith] = ACTIONS(909), - [anon_sym_ends_DASHwith] = ACTIONS(909), - [anon_sym_EQ_TILDE] = ACTIONS(909), - [anon_sym_BANG_TILDE] = ACTIONS(909), - [anon_sym_bit_DASHand] = ACTIONS(909), - [anon_sym_bit_DASHxor] = ACTIONS(909), - [anon_sym_bit_DASHor] = ACTIONS(909), - [anon_sym_and] = ACTIONS(909), - [anon_sym_xor] = ACTIONS(909), - [anon_sym_or] = ACTIONS(909), - [anon_sym_not] = ACTIONS(909), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [aux_sym__immediate_decimal_token2] = ACTIONS(3794), - [anon_sym_null] = ACTIONS(909), - [anon_sym_true] = ACTIONS(909), - [anon_sym_false] = ACTIONS(909), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(909), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(909), - [aux_sym__val_number_token1] = ACTIONS(909), - [aux_sym__val_number_token2] = ACTIONS(909), - [aux_sym__val_number_token3] = ACTIONS(909), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(909), - [aux_sym__val_number_token6] = ACTIONS(909), - [anon_sym_0b] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(911), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym__str_single_quotes] = ACTIONS(909), - [sym__str_back_ticks] = ACTIONS(909), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), - [aux_sym_unquoted_token5] = ACTIONS(909), - [anon_sym_POUND] = ACTIONS(113), + [1637] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5102), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(4890), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3866), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4751), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1637), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5085), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5089), + [anon_sym_DOT_DOT_LT] = ACTIONS(5089), + [anon_sym_null] = ACTIONS(5091), + [anon_sym_true] = ACTIONS(5093), + [anon_sym_false] = ACTIONS(5093), + [aux_sym__val_number_decimal_token1] = ACTIONS(5095), + [aux_sym__val_number_decimal_token2] = ACTIONS(5097), + [anon_sym_DOT2] = ACTIONS(5099), + [aux_sym__val_number_decimal_token3] = ACTIONS(5101), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5103), + [aux_sym__val_number_token5] = ACTIONS(5103), + [aux_sym__val_number_token6] = ACTIONS(5103), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5105), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), }, - [1425] = { - [sym_ctrl_do] = STATE(8871), - [sym_ctrl_if] = STATE(8871), - [sym_ctrl_match] = STATE(8871), - [sym_ctrl_try] = STATE(8871), - [sym__expression] = STATE(8871), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(5342), - [sym__var] = STATE(4755), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_comment] = STATE(1425), - [anon_sym_SEMI] = ACTIONS(3912), - [anon_sym_LF] = ACTIONS(3914), - [anon_sym_COLON] = ACTIONS(4020), - [anon_sym_LBRACK] = ACTIONS(3918), - [anon_sym_LPAREN] = ACTIONS(3920), - [anon_sym_PIPE] = ACTIONS(3912), - [anon_sym_DOLLAR] = ACTIONS(1762), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(3922), - [anon_sym_RBRACE] = ACTIONS(3912), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_try] = ACTIONS(415), - [anon_sym_not] = ACTIONS(191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3924), - [anon_sym_DOT_DOT_LT] = ACTIONS(3924), - [anon_sym_null] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [aux_sym__val_number_decimal_token1] = ACTIONS(199), - [aux_sym__val_number_decimal_token2] = ACTIONS(199), - [anon_sym_DOT2] = ACTIONS(203), - [aux_sym__val_number_decimal_token3] = ACTIONS(3926), - [aux_sym__val_number_token1] = ACTIONS(209), - [aux_sym__val_number_token2] = ACTIONS(209), - [aux_sym__val_number_token3] = ACTIONS(209), - [aux_sym__val_number_token4] = ACTIONS(209), - [aux_sym__val_number_token5] = ACTIONS(209), - [aux_sym__val_number_token6] = ACTIONS(209), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(3928), - [anon_sym_DQUOTE] = ACTIONS(3930), - [sym__str_single_quotes] = ACTIONS(3932), - [sym__str_back_ticks] = ACTIONS(3932), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3934), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3936), - [anon_sym_POUND] = ACTIONS(113), + [1638] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5104), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(4890), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3866), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4752), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1638), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5085), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5089), + [anon_sym_DOT_DOT_LT] = ACTIONS(5089), + [anon_sym_null] = ACTIONS(5091), + [anon_sym_true] = ACTIONS(5093), + [anon_sym_false] = ACTIONS(5093), + [aux_sym__val_number_decimal_token1] = ACTIONS(5095), + [aux_sym__val_number_decimal_token2] = ACTIONS(5097), + [anon_sym_DOT2] = ACTIONS(5099), + [aux_sym__val_number_decimal_token3] = ACTIONS(5101), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5103), + [aux_sym__val_number_token5] = ACTIONS(5103), + [aux_sym__val_number_token6] = ACTIONS(5103), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5105), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), }, - [1426] = { - [sym_cell_path] = STATE(1803), - [sym_path] = STATE(1423), - [sym_comment] = STATE(1426), - [ts_builtin_sym_end] = ACTIONS(1012), - [anon_sym_export] = ACTIONS(1010), - [anon_sym_alias] = ACTIONS(1010), - [anon_sym_let] = ACTIONS(1010), - [anon_sym_let_DASHenv] = ACTIONS(1010), - [anon_sym_mut] = ACTIONS(1010), - [anon_sym_const] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1010), - [sym_cmd_identifier] = ACTIONS(1010), - [anon_sym_LF] = ACTIONS(1012), - [anon_sym_def] = ACTIONS(1010), - [anon_sym_export_DASHenv] = ACTIONS(1010), - [anon_sym_extern] = ACTIONS(1010), - [anon_sym_module] = ACTIONS(1010), - [anon_sym_use] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(1010), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_error] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1010), - [anon_sym_continue] = ACTIONS(1010), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_loop] = ACTIONS(1010), - [anon_sym_while] = ACTIONS(1010), - [anon_sym_do] = ACTIONS(1010), - [anon_sym_if] = ACTIONS(1010), - [anon_sym_match] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_DOT_DOT] = ACTIONS(1010), - [anon_sym_try] = ACTIONS(1010), - [anon_sym_return] = ACTIONS(1010), - [anon_sym_source] = ACTIONS(1010), - [anon_sym_source_DASHenv] = ACTIONS(1010), - [anon_sym_register] = ACTIONS(1010), - [anon_sym_hide] = ACTIONS(1010), - [anon_sym_hide_DASHenv] = ACTIONS(1010), - [anon_sym_overlay] = ACTIONS(1010), - [anon_sym_where] = ACTIONS(1010), - [anon_sym_not] = ACTIONS(1010), - [anon_sym_DOT_DOT2] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(3856), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT] = ACTIONS(1010), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), - [anon_sym_null] = ACTIONS(1010), - [anon_sym_true] = ACTIONS(1010), - [anon_sym_false] = ACTIONS(1010), - [aux_sym__val_number_decimal_token1] = ACTIONS(1010), - [aux_sym__val_number_decimal_token2] = ACTIONS(1010), - [anon_sym_DOT2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = 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(1010), - [aux_sym__val_number_token5] = ACTIONS(1010), - [aux_sym__val_number_token6] = ACTIONS(1010), - [anon_sym_0b] = ACTIONS(1010), - [anon_sym_0o] = ACTIONS(1010), - [anon_sym_0x] = ACTIONS(1010), - [sym_val_date] = ACTIONS(1010), - [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_CARET] = ACTIONS(1010), - [anon_sym_POUND] = ACTIONS(113), + [1639] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5106), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(4890), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3866), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4753), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1639), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5085), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5089), + [anon_sym_DOT_DOT_LT] = ACTIONS(5089), + [anon_sym_null] = ACTIONS(5091), + [anon_sym_true] = ACTIONS(5093), + [anon_sym_false] = ACTIONS(5093), + [aux_sym__val_number_decimal_token1] = ACTIONS(5095), + [aux_sym__val_number_decimal_token2] = ACTIONS(5097), + [anon_sym_DOT2] = ACTIONS(5099), + [aux_sym__val_number_decimal_token3] = ACTIONS(5101), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5103), + [aux_sym__val_number_token5] = ACTIONS(5103), + [aux_sym__val_number_token6] = ACTIONS(5103), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5105), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), }, - [1427] = { - [sym_comment] = STATE(1427), - [anon_sym_export] = ACTIONS(2843), - [anon_sym_alias] = ACTIONS(2843), - [anon_sym_let] = ACTIONS(2843), - [anon_sym_let_DASHenv] = ACTIONS(2843), - [anon_sym_mut] = ACTIONS(2843), - [anon_sym_const] = ACTIONS(2843), - [anon_sym_SEMI] = ACTIONS(2843), - [sym_cmd_identifier] = ACTIONS(2843), - [anon_sym_LF] = ACTIONS(2845), - [anon_sym_def] = ACTIONS(2843), - [anon_sym_export_DASHenv] = ACTIONS(2843), - [anon_sym_extern] = ACTIONS(2843), - [anon_sym_module] = ACTIONS(2843), - [anon_sym_use] = ACTIONS(2843), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_LPAREN] = ACTIONS(2843), - [anon_sym_RPAREN] = ACTIONS(2843), - [anon_sym_DOLLAR] = ACTIONS(2843), - [anon_sym_error] = ACTIONS(2843), - [anon_sym_DASH_DASH] = ACTIONS(2843), - [anon_sym_DASH] = ACTIONS(2843), - [anon_sym_break] = ACTIONS(2843), - [anon_sym_continue] = ACTIONS(2843), - [anon_sym_for] = ACTIONS(2843), - [anon_sym_loop] = ACTIONS(2843), - [anon_sym_while] = ACTIONS(2843), - [anon_sym_do] = ACTIONS(2843), - [anon_sym_if] = ACTIONS(2843), - [anon_sym_match] = ACTIONS(2843), - [anon_sym_LBRACE] = ACTIONS(2843), - [anon_sym_RBRACE] = ACTIONS(2843), - [anon_sym_DOT_DOT] = ACTIONS(2843), - [anon_sym_try] = ACTIONS(2843), - [anon_sym_return] = ACTIONS(2843), - [anon_sym_source] = ACTIONS(2843), - [anon_sym_source_DASHenv] = ACTIONS(2843), - [anon_sym_register] = ACTIONS(2843), - [anon_sym_hide] = ACTIONS(2843), - [anon_sym_hide_DASHenv] = ACTIONS(2843), - [anon_sym_overlay] = ACTIONS(2843), - [anon_sym_as] = ACTIONS(2843), - [anon_sym_where] = ACTIONS(2843), - [anon_sym_not] = ACTIONS(2843), - [anon_sym_LPAREN2] = ACTIONS(2847), - [anon_sym_DOT] = ACTIONS(2851), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2843), - [anon_sym_DOT_DOT_LT] = ACTIONS(2843), - [anon_sym_null] = ACTIONS(2843), - [anon_sym_true] = ACTIONS(2843), - [anon_sym_false] = ACTIONS(2843), - [aux_sym__val_number_decimal_token1] = ACTIONS(2843), - [aux_sym__val_number_decimal_token2] = ACTIONS(2843), - [anon_sym_DOT2] = ACTIONS(2843), - [aux_sym__val_number_decimal_token3] = ACTIONS(2843), - [aux_sym__val_number_token1] = ACTIONS(2843), - [aux_sym__val_number_token2] = ACTIONS(2843), - [aux_sym__val_number_token3] = ACTIONS(2843), - [aux_sym__val_number_token4] = ACTIONS(2843), - [aux_sym__val_number_token5] = ACTIONS(2843), - [aux_sym__val_number_token6] = ACTIONS(2843), - [anon_sym_0b] = ACTIONS(2843), - [anon_sym_0o] = ACTIONS(2843), - [anon_sym_0x] = ACTIONS(2843), - [sym_val_date] = ACTIONS(2843), - [anon_sym_DQUOTE] = ACTIONS(2843), - [sym__str_single_quotes] = ACTIONS(2843), - [sym__str_back_ticks] = ACTIONS(2843), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2843), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2843), - [anon_sym_CARET] = ACTIONS(2843), - [aux_sym_unquoted_token2] = ACTIONS(2851), - [anon_sym_POUND] = ACTIONS(113), + [1640] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5108), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(4890), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3866), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4754), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1640), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5085), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5089), + [anon_sym_DOT_DOT_LT] = ACTIONS(5089), + [anon_sym_null] = ACTIONS(5091), + [anon_sym_true] = ACTIONS(5093), + [anon_sym_false] = ACTIONS(5093), + [aux_sym__val_number_decimal_token1] = ACTIONS(5095), + [aux_sym__val_number_decimal_token2] = ACTIONS(5097), + [anon_sym_DOT2] = ACTIONS(5099), + [aux_sym__val_number_decimal_token3] = ACTIONS(5101), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5103), + [aux_sym__val_number_token5] = ACTIONS(5103), + [aux_sym__val_number_token6] = ACTIONS(5103), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5105), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), }, - [1428] = { - [sym_cell_path] = STATE(1844), - [sym_path] = STATE(1361), - [sym_comment] = STATE(1428), - [anon_sym_export] = ACTIONS(1203), - [anon_sym_alias] = ACTIONS(1203), - [anon_sym_let] = ACTIONS(1203), - [anon_sym_let_DASHenv] = ACTIONS(1203), - [anon_sym_mut] = ACTIONS(1203), - [anon_sym_const] = ACTIONS(1203), - [anon_sym_SEMI] = ACTIONS(1203), - [sym_cmd_identifier] = ACTIONS(1203), - [anon_sym_LF] = ACTIONS(1205), - [anon_sym_def] = ACTIONS(1203), - [anon_sym_export_DASHenv] = ACTIONS(1203), - [anon_sym_extern] = ACTIONS(1203), - [anon_sym_module] = ACTIONS(1203), - [anon_sym_use] = ACTIONS(1203), - [anon_sym_LBRACK] = ACTIONS(1203), - [anon_sym_LPAREN] = ACTIONS(1203), - [anon_sym_RPAREN] = ACTIONS(1203), - [anon_sym_DOLLAR] = ACTIONS(1203), - [anon_sym_error] = ACTIONS(1203), - [anon_sym_DASH_DASH] = ACTIONS(1203), - [anon_sym_DASH] = ACTIONS(1203), - [anon_sym_break] = ACTIONS(1203), - [anon_sym_continue] = ACTIONS(1203), - [anon_sym_for] = ACTIONS(1203), - [anon_sym_loop] = ACTIONS(1203), - [anon_sym_while] = ACTIONS(1203), - [anon_sym_do] = ACTIONS(1203), - [anon_sym_if] = ACTIONS(1203), - [anon_sym_match] = ACTIONS(1203), - [anon_sym_LBRACE] = ACTIONS(1203), - [anon_sym_RBRACE] = ACTIONS(1203), - [anon_sym_DOT_DOT] = ACTIONS(1203), - [anon_sym_try] = ACTIONS(1203), - [anon_sym_return] = ACTIONS(1203), - [anon_sym_source] = ACTIONS(1203), - [anon_sym_source_DASHenv] = ACTIONS(1203), - [anon_sym_register] = ACTIONS(1203), - [anon_sym_hide] = ACTIONS(1203), - [anon_sym_hide_DASHenv] = ACTIONS(1203), - [anon_sym_overlay] = ACTIONS(1203), - [anon_sym_as] = ACTIONS(1203), - [anon_sym_where] = ACTIONS(1203), - [anon_sym_not] = ACTIONS(1203), - [anon_sym_DOT] = ACTIONS(3854), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1203), - [anon_sym_DOT_DOT_LT] = ACTIONS(1203), - [anon_sym_null] = ACTIONS(1203), - [anon_sym_true] = ACTIONS(1203), - [anon_sym_false] = ACTIONS(1203), - [aux_sym__val_number_decimal_token1] = ACTIONS(1203), - [aux_sym__val_number_decimal_token2] = ACTIONS(1203), - [anon_sym_DOT2] = ACTIONS(1203), - [aux_sym__val_number_decimal_token3] = ACTIONS(1203), - [aux_sym__val_number_token1] = ACTIONS(1203), - [aux_sym__val_number_token2] = ACTIONS(1203), - [aux_sym__val_number_token3] = ACTIONS(1203), - [aux_sym__val_number_token4] = ACTIONS(1203), - [aux_sym__val_number_token5] = ACTIONS(1203), - [aux_sym__val_number_token6] = ACTIONS(1203), - [anon_sym_0b] = ACTIONS(1203), - [anon_sym_0o] = ACTIONS(1203), - [anon_sym_0x] = ACTIONS(1203), - [sym_val_date] = ACTIONS(1203), - [anon_sym_DQUOTE] = ACTIONS(1203), - [sym__str_single_quotes] = ACTIONS(1203), - [sym__str_back_ticks] = ACTIONS(1203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1203), - [anon_sym_CARET] = ACTIONS(1203), - [anon_sym_POUND] = ACTIONS(113), + [1641] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5110), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(4890), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3866), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4755), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1641), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5085), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5089), + [anon_sym_DOT_DOT_LT] = ACTIONS(5089), + [anon_sym_null] = ACTIONS(5091), + [anon_sym_true] = ACTIONS(5093), + [anon_sym_false] = ACTIONS(5093), + [aux_sym__val_number_decimal_token1] = ACTIONS(5095), + [aux_sym__val_number_decimal_token2] = ACTIONS(5097), + [anon_sym_DOT2] = ACTIONS(5099), + [aux_sym__val_number_decimal_token3] = ACTIONS(5101), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5103), + [aux_sym__val_number_token5] = ACTIONS(5103), + [aux_sym__val_number_token6] = ACTIONS(5103), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5105), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), }, - [1429] = { - [sym_path] = STATE(1603), - [sym_comment] = STATE(1429), - [aux_sym_cell_path_repeat1] = STATE(1434), - [anon_sym_LBRACK] = ACTIONS(987), - [anon_sym_COMMA] = ACTIONS(987), - [anon_sym_RBRACK] = ACTIONS(987), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_DOLLAR] = ACTIONS(987), - [anon_sym_GT] = ACTIONS(987), - [anon_sym_DASH_DASH] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_in] = ACTIONS(987), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_DOT_DOT] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(987), - [anon_sym_STAR_STAR] = ACTIONS(987), - [anon_sym_PLUS_PLUS] = ACTIONS(987), - [anon_sym_SLASH] = ACTIONS(987), - [anon_sym_mod] = ACTIONS(987), - [anon_sym_SLASH_SLASH] = ACTIONS(987), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_bit_DASHshl] = ACTIONS(987), - [anon_sym_bit_DASHshr] = ACTIONS(987), - [anon_sym_EQ_EQ] = ACTIONS(987), - [anon_sym_BANG_EQ] = ACTIONS(987), - [anon_sym_LT2] = ACTIONS(987), - [anon_sym_LT_EQ] = ACTIONS(987), - [anon_sym_GT_EQ] = ACTIONS(987), - [anon_sym_not_DASHin] = ACTIONS(987), - [anon_sym_starts_DASHwith] = ACTIONS(987), - [anon_sym_ends_DASHwith] = ACTIONS(987), - [anon_sym_EQ_TILDE] = ACTIONS(987), - [anon_sym_BANG_TILDE] = ACTIONS(987), - [anon_sym_bit_DASHand] = ACTIONS(987), - [anon_sym_bit_DASHxor] = ACTIONS(987), - [anon_sym_bit_DASHor] = ACTIONS(987), - [anon_sym_and] = ACTIONS(987), - [anon_sym_xor] = ACTIONS(987), - [anon_sym_or] = ACTIONS(987), - [anon_sym_DOT] = ACTIONS(3858), - [anon_sym_DOT_DOT_EQ] = ACTIONS(987), - [anon_sym_DOT_DOT_LT] = ACTIONS(987), - [anon_sym_null] = ACTIONS(987), - [anon_sym_true] = ACTIONS(987), - [anon_sym_false] = ACTIONS(987), - [aux_sym__val_number_decimal_token1] = ACTIONS(987), - [aux_sym__val_number_decimal_token2] = ACTIONS(987), - [anon_sym_DOT2] = ACTIONS(987), - [aux_sym__val_number_decimal_token3] = ACTIONS(987), - [aux_sym__val_number_token1] = ACTIONS(987), - [aux_sym__val_number_token2] = ACTIONS(987), - [aux_sym__val_number_token3] = ACTIONS(987), - [aux_sym__val_number_token4] = ACTIONS(987), - [aux_sym__val_number_token5] = ACTIONS(987), - [aux_sym__val_number_token6] = ACTIONS(987), - [anon_sym_0b] = ACTIONS(987), - [anon_sym_0o] = ACTIONS(987), - [anon_sym_0x] = ACTIONS(987), - [sym_val_date] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(987), - [sym__str_single_quotes] = ACTIONS(987), - [sym__str_back_ticks] = ACTIONS(987), - [sym__entry_separator] = ACTIONS(989), - [anon_sym_err_GT] = ACTIONS(987), - [anon_sym_out_GT] = ACTIONS(987), - [anon_sym_e_GT] = ACTIONS(987), - [anon_sym_o_GT] = ACTIONS(987), - [anon_sym_err_PLUSout_GT] = ACTIONS(987), - [anon_sym_out_PLUSerr_GT] = ACTIONS(987), - [anon_sym_o_PLUSe_GT] = ACTIONS(987), - [anon_sym_e_PLUSo_GT] = ACTIONS(987), - [aux_sym__unquoted_in_list_token1] = ACTIONS(987), - [anon_sym_POUND] = ACTIONS(113), + [1642] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5112), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(4890), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3866), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4756), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1642), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5085), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5089), + [anon_sym_DOT_DOT_LT] = ACTIONS(5089), + [anon_sym_null] = ACTIONS(5091), + [anon_sym_true] = ACTIONS(5093), + [anon_sym_false] = ACTIONS(5093), + [aux_sym__val_number_decimal_token1] = ACTIONS(5095), + [aux_sym__val_number_decimal_token2] = ACTIONS(5097), + [anon_sym_DOT2] = ACTIONS(5099), + [aux_sym__val_number_decimal_token3] = ACTIONS(5101), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5103), + [aux_sym__val_number_token5] = ACTIONS(5103), + [aux_sym__val_number_token6] = ACTIONS(5103), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5105), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), }, - [1430] = { - [sym_comment] = STATE(1430), - [anon_sym_export] = ACTIONS(1172), - [anon_sym_alias] = ACTIONS(1172), - [anon_sym_let] = ACTIONS(1172), - [anon_sym_let_DASHenv] = ACTIONS(1172), - [anon_sym_mut] = ACTIONS(1172), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(1172), - [sym_cmd_identifier] = ACTIONS(1172), - [anon_sym_LF] = ACTIONS(1174), - [anon_sym_def] = ACTIONS(1172), - [anon_sym_export_DASHenv] = ACTIONS(1172), - [anon_sym_extern] = ACTIONS(1172), - [anon_sym_module] = ACTIONS(1172), - [anon_sym_use] = ACTIONS(1172), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_LPAREN] = ACTIONS(1172), - [anon_sym_RPAREN] = ACTIONS(1172), - [anon_sym_DOLLAR] = ACTIONS(1172), - [anon_sym_error] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_DASH] = ACTIONS(1172), - [anon_sym_break] = ACTIONS(1172), - [anon_sym_continue] = ACTIONS(1172), - [anon_sym_for] = ACTIONS(1172), - [anon_sym_loop] = ACTIONS(1172), - [anon_sym_while] = ACTIONS(1172), - [anon_sym_do] = ACTIONS(1172), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_match] = ACTIONS(1172), - [anon_sym_LBRACE] = ACTIONS(1172), - [anon_sym_RBRACE] = ACTIONS(1172), - [anon_sym_DOT_DOT] = ACTIONS(1172), - [anon_sym_try] = ACTIONS(1172), - [anon_sym_return] = ACTIONS(1172), - [anon_sym_source] = ACTIONS(1172), - [anon_sym_source_DASHenv] = ACTIONS(1172), - [anon_sym_register] = ACTIONS(1172), - [anon_sym_hide] = ACTIONS(1172), - [anon_sym_hide_DASHenv] = ACTIONS(1172), - [anon_sym_overlay] = ACTIONS(1172), - [anon_sym_as] = ACTIONS(1172), - [anon_sym_where] = ACTIONS(1172), - [anon_sym_not] = ACTIONS(1172), - [anon_sym_DOT_DOT2] = ACTIONS(1172), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1172), - [anon_sym_DOT_DOT_LT] = ACTIONS(1172), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1174), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1174), - [anon_sym_null] = ACTIONS(1172), - [anon_sym_true] = ACTIONS(1172), - [anon_sym_false] = ACTIONS(1172), - [aux_sym__val_number_decimal_token1] = ACTIONS(1172), - [aux_sym__val_number_decimal_token2] = ACTIONS(1172), - [anon_sym_DOT2] = ACTIONS(1172), - [aux_sym__val_number_decimal_token3] = ACTIONS(1172), - [aux_sym__val_number_token1] = ACTIONS(1172), - [aux_sym__val_number_token2] = ACTIONS(1172), - [aux_sym__val_number_token3] = ACTIONS(1172), - [aux_sym__val_number_token4] = ACTIONS(1172), - [aux_sym__val_number_token5] = ACTIONS(1172), - [aux_sym__val_number_token6] = ACTIONS(1172), - [anon_sym_0b] = ACTIONS(1172), - [anon_sym_0o] = ACTIONS(1172), - [anon_sym_0x] = ACTIONS(1172), - [sym_val_date] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(1172), - [sym__str_single_quotes] = ACTIONS(1172), - [sym__str_back_ticks] = ACTIONS(1172), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1172), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1172), - [anon_sym_CARET] = ACTIONS(1172), - [anon_sym_POUND] = ACTIONS(113), + [1643] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5114), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(4890), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3866), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4757), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1643), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5085), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5089), + [anon_sym_DOT_DOT_LT] = ACTIONS(5089), + [anon_sym_null] = ACTIONS(5091), + [anon_sym_true] = ACTIONS(5093), + [anon_sym_false] = ACTIONS(5093), + [aux_sym__val_number_decimal_token1] = ACTIONS(5095), + [aux_sym__val_number_decimal_token2] = ACTIONS(5097), + [anon_sym_DOT2] = ACTIONS(5099), + [aux_sym__val_number_decimal_token3] = ACTIONS(5101), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5103), + [aux_sym__val_number_token5] = ACTIONS(5103), + [aux_sym__val_number_token6] = ACTIONS(5103), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5105), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), }, - [1431] = { - [sym_comment] = STATE(1431), - [ts_builtin_sym_end] = ACTIONS(3750), - [anon_sym_export] = ACTIONS(3748), - [anon_sym_alias] = ACTIONS(3748), - [anon_sym_let] = ACTIONS(3748), - [anon_sym_let_DASHenv] = ACTIONS(3748), - [anon_sym_mut] = ACTIONS(3748), - [anon_sym_const] = ACTIONS(3748), - [anon_sym_SEMI] = ACTIONS(3748), - [sym_cmd_identifier] = ACTIONS(3748), - [anon_sym_LF] = ACTIONS(3750), - [anon_sym_def] = ACTIONS(3748), - [anon_sym_export_DASHenv] = ACTIONS(3748), - [anon_sym_extern] = ACTIONS(3748), - [anon_sym_module] = ACTIONS(3748), - [anon_sym_use] = ACTIONS(3748), - [anon_sym_LBRACK] = ACTIONS(3748), - [anon_sym_LPAREN] = ACTIONS(3748), - [anon_sym_DOLLAR] = ACTIONS(3748), - [anon_sym_error] = ACTIONS(3748), - [anon_sym_DASH_DASH] = ACTIONS(3748), - [anon_sym_DASH] = ACTIONS(3748), - [anon_sym_break] = ACTIONS(3748), - [anon_sym_continue] = ACTIONS(3748), - [anon_sym_for] = ACTIONS(3748), - [anon_sym_loop] = ACTIONS(3748), - [anon_sym_while] = ACTIONS(3748), - [anon_sym_do] = ACTIONS(3748), - [anon_sym_if] = ACTIONS(3748), - [anon_sym_match] = ACTIONS(3748), - [anon_sym_LBRACE] = ACTIONS(3748), - [anon_sym_DOT_DOT] = ACTIONS(3748), - [anon_sym_try] = ACTIONS(3748), - [anon_sym_return] = ACTIONS(3748), - [anon_sym_source] = ACTIONS(3748), - [anon_sym_source_DASHenv] = ACTIONS(3748), - [anon_sym_register] = ACTIONS(3748), - [anon_sym_hide] = ACTIONS(3748), - [anon_sym_hide_DASHenv] = ACTIONS(3748), - [anon_sym_overlay] = ACTIONS(3748), - [anon_sym_as] = ACTIONS(3748), - [anon_sym_where] = ACTIONS(3748), - [anon_sym_not] = ACTIONS(3748), - [anon_sym_LPAREN2] = ACTIONS(2847), - [anon_sym_DOT] = ACTIONS(2851), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3748), - [anon_sym_DOT_DOT_LT] = ACTIONS(3748), - [aux_sym__immediate_decimal_token1] = ACTIONS(4022), - [anon_sym_null] = ACTIONS(3748), - [anon_sym_true] = ACTIONS(3748), - [anon_sym_false] = ACTIONS(3748), - [aux_sym__val_number_decimal_token1] = ACTIONS(3748), - [aux_sym__val_number_decimal_token2] = ACTIONS(3748), - [anon_sym_DOT2] = ACTIONS(3748), - [aux_sym__val_number_decimal_token3] = ACTIONS(3748), - [aux_sym__val_number_token1] = ACTIONS(3748), - [aux_sym__val_number_token2] = ACTIONS(3748), - [aux_sym__val_number_token3] = ACTIONS(3748), - [aux_sym__val_number_token4] = ACTIONS(3748), - [aux_sym__val_number_token5] = ACTIONS(3748), - [aux_sym__val_number_token6] = ACTIONS(3748), - [anon_sym_0b] = ACTIONS(3748), - [anon_sym_0o] = ACTIONS(3748), - [anon_sym_0x] = ACTIONS(3748), - [sym_val_date] = ACTIONS(3748), - [anon_sym_DQUOTE] = ACTIONS(3748), - [sym__str_single_quotes] = ACTIONS(3748), - [sym__str_back_ticks] = ACTIONS(3748), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3748), - [anon_sym_CARET] = ACTIONS(3748), - [aux_sym_unquoted_token2] = ACTIONS(2851), - [anon_sym_POUND] = ACTIONS(113), + [1644] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5116), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(4890), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3866), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4758), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1644), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5085), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5089), + [anon_sym_DOT_DOT_LT] = ACTIONS(5089), + [anon_sym_null] = ACTIONS(5091), + [anon_sym_true] = ACTIONS(5093), + [anon_sym_false] = ACTIONS(5093), + [aux_sym__val_number_decimal_token1] = ACTIONS(5095), + [aux_sym__val_number_decimal_token2] = ACTIONS(5097), + [anon_sym_DOT2] = ACTIONS(5099), + [aux_sym__val_number_decimal_token3] = ACTIONS(5101), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5103), + [aux_sym__val_number_token5] = ACTIONS(5103), + [aux_sym__val_number_token6] = ACTIONS(5103), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5105), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), }, - [1432] = { - [sym_comment] = STATE(1432), - [ts_builtin_sym_end] = ACTIONS(2549), - [anon_sym_export] = ACTIONS(2547), - [anon_sym_alias] = ACTIONS(2547), - [anon_sym_let] = ACTIONS(2547), - [anon_sym_let_DASHenv] = ACTIONS(2547), - [anon_sym_mut] = ACTIONS(2547), - [anon_sym_const] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [sym_cmd_identifier] = ACTIONS(2547), - [anon_sym_LF] = ACTIONS(2549), - [anon_sym_def] = ACTIONS(2547), - [anon_sym_export_DASHenv] = ACTIONS(2547), - [anon_sym_extern] = ACTIONS(2547), - [anon_sym_module] = ACTIONS(2547), - [anon_sym_use] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_DOLLAR] = ACTIONS(2547), - [anon_sym_error] = ACTIONS(2547), - [anon_sym_DASH_DASH] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_break] = ACTIONS(2547), - [anon_sym_continue] = ACTIONS(2547), - [anon_sym_for] = ACTIONS(2547), - [anon_sym_loop] = ACTIONS(2547), - [anon_sym_while] = ACTIONS(2547), - [anon_sym_do] = ACTIONS(2547), - [anon_sym_if] = ACTIONS(2547), - [anon_sym_match] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2547), - [anon_sym_DOT_DOT] = ACTIONS(2547), - [anon_sym_try] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2547), - [anon_sym_source] = ACTIONS(2547), - [anon_sym_source_DASHenv] = ACTIONS(2547), - [anon_sym_register] = ACTIONS(2547), - [anon_sym_hide] = ACTIONS(2547), - [anon_sym_hide_DASHenv] = ACTIONS(2547), - [anon_sym_overlay] = ACTIONS(2547), - [anon_sym_as] = ACTIONS(2547), - [anon_sym_where] = ACTIONS(2547), - [anon_sym_not] = ACTIONS(2547), - [anon_sym_DOT_DOT2] = ACTIONS(2547), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), - [anon_sym_DOT_DOT_LT] = ACTIONS(2547), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2549), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2549), - [aux_sym__immediate_decimal_token2] = ACTIONS(4024), - [anon_sym_null] = ACTIONS(2547), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [aux_sym__val_number_decimal_token1] = ACTIONS(2547), - [aux_sym__val_number_decimal_token2] = ACTIONS(2547), - [anon_sym_DOT2] = ACTIONS(2547), - [aux_sym__val_number_decimal_token3] = ACTIONS(2547), - [aux_sym__val_number_token1] = ACTIONS(2547), - [aux_sym__val_number_token2] = ACTIONS(2547), - [aux_sym__val_number_token3] = ACTIONS(2547), - [aux_sym__val_number_token4] = ACTIONS(2547), - [aux_sym__val_number_token5] = ACTIONS(2547), - [aux_sym__val_number_token6] = ACTIONS(2547), - [anon_sym_0b] = ACTIONS(2547), - [anon_sym_0o] = ACTIONS(2547), - [anon_sym_0x] = ACTIONS(2547), - [sym_val_date] = ACTIONS(2547), - [anon_sym_DQUOTE] = ACTIONS(2547), - [sym__str_single_quotes] = ACTIONS(2547), - [sym__str_back_ticks] = ACTIONS(2547), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2547), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2547), - [anon_sym_POUND] = ACTIONS(113), + [1645] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5118), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(4890), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3866), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4759), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1645), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5085), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5089), + [anon_sym_DOT_DOT_LT] = ACTIONS(5089), + [anon_sym_null] = ACTIONS(5091), + [anon_sym_true] = ACTIONS(5093), + [anon_sym_false] = ACTIONS(5093), + [aux_sym__val_number_decimal_token1] = ACTIONS(5095), + [aux_sym__val_number_decimal_token2] = ACTIONS(5097), + [anon_sym_DOT2] = ACTIONS(5099), + [aux_sym__val_number_decimal_token3] = ACTIONS(5101), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5103), + [aux_sym__val_number_token5] = ACTIONS(5103), + [aux_sym__val_number_token6] = ACTIONS(5103), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5105), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), }, - [1433] = { - [sym_comment] = STATE(1433), - [anon_sym_export] = ACTIONS(2581), - [anon_sym_alias] = ACTIONS(2581), - [anon_sym_let] = ACTIONS(2581), - [anon_sym_let_DASHenv] = ACTIONS(2581), - [anon_sym_mut] = ACTIONS(2581), - [anon_sym_const] = ACTIONS(2581), - [anon_sym_SEMI] = ACTIONS(2581), - [sym_cmd_identifier] = ACTIONS(2581), - [anon_sym_LF] = ACTIONS(2583), - [anon_sym_def] = ACTIONS(2581), - [anon_sym_export_DASHenv] = ACTIONS(2581), - [anon_sym_extern] = ACTIONS(2581), - [anon_sym_module] = ACTIONS(2581), - [anon_sym_use] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2581), - [anon_sym_RPAREN] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2581), - [anon_sym_error] = ACTIONS(2581), - [anon_sym_DASH_DASH] = ACTIONS(2581), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_break] = ACTIONS(2581), - [anon_sym_continue] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2581), - [anon_sym_loop] = ACTIONS(2581), - [anon_sym_while] = ACTIONS(2581), - [anon_sym_do] = ACTIONS(2581), - [anon_sym_if] = ACTIONS(2581), - [anon_sym_match] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2581), - [anon_sym_RBRACE] = ACTIONS(2581), - [anon_sym_DOT_DOT] = ACTIONS(2581), - [anon_sym_try] = ACTIONS(2581), - [anon_sym_return] = ACTIONS(2581), - [anon_sym_source] = ACTIONS(2581), - [anon_sym_source_DASHenv] = ACTIONS(2581), - [anon_sym_register] = ACTIONS(2581), - [anon_sym_hide] = ACTIONS(2581), - [anon_sym_hide_DASHenv] = ACTIONS(2581), - [anon_sym_overlay] = ACTIONS(2581), - [anon_sym_as] = ACTIONS(2581), - [anon_sym_where] = ACTIONS(2581), - [anon_sym_not] = ACTIONS(2581), - [anon_sym_DOT] = ACTIONS(4026), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2581), - [anon_sym_DOT_DOT_LT] = ACTIONS(2581), - [aux_sym__immediate_decimal_token2] = ACTIONS(3992), - [anon_sym_null] = ACTIONS(2581), - [anon_sym_true] = ACTIONS(2581), - [anon_sym_false] = ACTIONS(2581), - [aux_sym__val_number_decimal_token1] = ACTIONS(2581), - [aux_sym__val_number_decimal_token2] = ACTIONS(2581), - [anon_sym_DOT2] = ACTIONS(2581), - [aux_sym__val_number_decimal_token3] = ACTIONS(2581), - [aux_sym__val_number_token1] = ACTIONS(2581), - [aux_sym__val_number_token2] = ACTIONS(2581), - [aux_sym__val_number_token3] = ACTIONS(2581), - [aux_sym__val_number_token4] = ACTIONS(2581), - [aux_sym__val_number_token5] = ACTIONS(2581), - [aux_sym__val_number_token6] = ACTIONS(2581), - [anon_sym_0b] = ACTIONS(2581), - [anon_sym_0o] = ACTIONS(2581), - [anon_sym_0x] = ACTIONS(2581), - [sym_val_date] = ACTIONS(2581), - [anon_sym_DQUOTE] = ACTIONS(2581), - [sym__str_single_quotes] = ACTIONS(2581), - [sym__str_back_ticks] = ACTIONS(2581), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2581), - [anon_sym_CARET] = ACTIONS(2581), - [aux_sym_unquoted_token2] = ACTIONS(2581), - [anon_sym_POUND] = ACTIONS(113), + [1646] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5120), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(4890), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3866), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4760), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1646), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5085), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5089), + [anon_sym_DOT_DOT_LT] = ACTIONS(5089), + [anon_sym_null] = ACTIONS(5091), + [anon_sym_true] = ACTIONS(5093), + [anon_sym_false] = ACTIONS(5093), + [aux_sym__val_number_decimal_token1] = ACTIONS(5095), + [aux_sym__val_number_decimal_token2] = ACTIONS(5097), + [anon_sym_DOT2] = ACTIONS(5099), + [aux_sym__val_number_decimal_token3] = ACTIONS(5101), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5103), + [aux_sym__val_number_token5] = ACTIONS(5103), + [aux_sym__val_number_token6] = ACTIONS(5103), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5105), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), }, - [1434] = { - [sym_path] = STATE(1603), - [sym_comment] = STATE(1434), - [aux_sym_cell_path_repeat1] = STATE(1371), - [anon_sym_LBRACK] = ACTIONS(1006), - [anon_sym_COMMA] = ACTIONS(1006), - [anon_sym_RBRACK] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_in] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_STAR_STAR] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_mod] = ACTIONS(1006), - [anon_sym_SLASH_SLASH] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_bit_DASHshl] = ACTIONS(1006), - [anon_sym_bit_DASHshr] = ACTIONS(1006), - [anon_sym_EQ_EQ] = ACTIONS(1006), - [anon_sym_BANG_EQ] = ACTIONS(1006), - [anon_sym_LT2] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1006), - [anon_sym_GT_EQ] = ACTIONS(1006), - [anon_sym_not_DASHin] = ACTIONS(1006), - [anon_sym_starts_DASHwith] = ACTIONS(1006), - [anon_sym_ends_DASHwith] = ACTIONS(1006), - [anon_sym_EQ_TILDE] = ACTIONS(1006), - [anon_sym_BANG_TILDE] = ACTIONS(1006), - [anon_sym_bit_DASHand] = ACTIONS(1006), - [anon_sym_bit_DASHxor] = ACTIONS(1006), - [anon_sym_bit_DASHor] = ACTIONS(1006), - [anon_sym_and] = ACTIONS(1006), - [anon_sym_xor] = ACTIONS(1006), - [anon_sym_or] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(3858), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT] = ACTIONS(1006), - [anon_sym_null] = ACTIONS(1006), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1006), - [anon_sym_DOT2] = ACTIONS(1006), - [aux_sym__val_number_decimal_token3] = ACTIONS(1006), - [aux_sym__val_number_token1] = ACTIONS(1006), - [aux_sym__val_number_token2] = ACTIONS(1006), - [aux_sym__val_number_token3] = ACTIONS(1006), - [aux_sym__val_number_token4] = ACTIONS(1006), - [aux_sym__val_number_token5] = ACTIONS(1006), - [aux_sym__val_number_token6] = ACTIONS(1006), - [anon_sym_0b] = ACTIONS(1006), - [anon_sym_0o] = ACTIONS(1006), - [anon_sym_0x] = ACTIONS(1006), - [sym_val_date] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym__str_single_quotes] = ACTIONS(1006), - [sym__str_back_ticks] = ACTIONS(1006), - [sym__entry_separator] = ACTIONS(1008), - [anon_sym_err_GT] = ACTIONS(1006), - [anon_sym_out_GT] = ACTIONS(1006), - [anon_sym_e_GT] = ACTIONS(1006), - [anon_sym_o_GT] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT] = ACTIONS(1006), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1006), + [1647] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5122), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(4890), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3866), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4761), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1647), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5085), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5089), + [anon_sym_DOT_DOT_LT] = ACTIONS(5089), + [anon_sym_null] = ACTIONS(5091), + [anon_sym_true] = ACTIONS(5093), + [anon_sym_false] = ACTIONS(5093), + [aux_sym__val_number_decimal_token1] = ACTIONS(5095), + [aux_sym__val_number_decimal_token2] = ACTIONS(5097), + [anon_sym_DOT2] = ACTIONS(5099), + [aux_sym__val_number_decimal_token3] = ACTIONS(5101), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5103), + [aux_sym__val_number_token5] = ACTIONS(5103), + [aux_sym__val_number_token6] = ACTIONS(5103), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5105), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), + }, + [1648] = { + [sym_comment] = STATE(1648), + [anon_sym_export] = ACTIONS(5109), + [anon_sym_alias] = ACTIONS(5109), + [anon_sym_let] = ACTIONS(5109), + [anon_sym_let_DASHenv] = ACTIONS(5109), + [anon_sym_mut] = ACTIONS(5109), + [anon_sym_const] = ACTIONS(5109), + [anon_sym_SEMI] = ACTIONS(5109), + [sym_cmd_identifier] = ACTIONS(5109), + [anon_sym_LF] = ACTIONS(5111), + [anon_sym_def] = ACTIONS(5109), + [anon_sym_export_DASHenv] = ACTIONS(5109), + [anon_sym_extern] = ACTIONS(5109), + [anon_sym_module] = ACTIONS(5109), + [anon_sym_use] = ACTIONS(5109), + [anon_sym_LBRACK] = ACTIONS(5109), + [anon_sym_LPAREN] = ACTIONS(5109), + [anon_sym_RPAREN] = ACTIONS(5109), + [anon_sym_DOLLAR] = ACTIONS(5109), + [anon_sym_error] = ACTIONS(5109), + [anon_sym_DASH_DASH] = ACTIONS(5109), + [anon_sym_DASH] = ACTIONS(5109), + [anon_sym_break] = ACTIONS(5109), + [anon_sym_continue] = ACTIONS(5109), + [anon_sym_for] = ACTIONS(5109), + [anon_sym_loop] = ACTIONS(5109), + [anon_sym_while] = ACTIONS(5109), + [anon_sym_do] = ACTIONS(5109), + [anon_sym_if] = ACTIONS(5109), + [anon_sym_match] = ACTIONS(5109), + [anon_sym_LBRACE] = ACTIONS(5109), + [anon_sym_RBRACE] = ACTIONS(5109), + [anon_sym_DOT_DOT] = ACTIONS(5109), + [anon_sym_try] = ACTIONS(5109), + [anon_sym_return] = ACTIONS(5109), + [anon_sym_source] = ACTIONS(5109), + [anon_sym_source_DASHenv] = ACTIONS(5109), + [anon_sym_register] = ACTIONS(5109), + [anon_sym_hide] = ACTIONS(5109), + [anon_sym_hide_DASHenv] = ACTIONS(5109), + [anon_sym_overlay] = ACTIONS(5109), + [anon_sym_as] = ACTIONS(5109), + [anon_sym_where] = ACTIONS(5109), + [anon_sym_not] = ACTIONS(5109), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5109), + [anon_sym_DOT_DOT_LT] = ACTIONS(5109), + [anon_sym_null] = ACTIONS(5109), + [anon_sym_true] = ACTIONS(5109), + [anon_sym_false] = ACTIONS(5109), + [aux_sym__val_number_decimal_token1] = ACTIONS(5109), + [aux_sym__val_number_decimal_token2] = ACTIONS(5109), + [anon_sym_DOT2] = ACTIONS(5109), + [aux_sym__val_number_decimal_token3] = ACTIONS(5109), + [aux_sym__val_number_token1] = ACTIONS(5109), + [aux_sym__val_number_token2] = ACTIONS(5109), + [aux_sym__val_number_token3] = ACTIONS(5109), + [aux_sym__val_number_token4] = ACTIONS(5109), + [aux_sym__val_number_token5] = ACTIONS(5109), + [aux_sym__val_number_token6] = ACTIONS(5109), + [anon_sym_0b] = ACTIONS(5109), + [anon_sym_0o] = ACTIONS(5109), + [anon_sym_0x] = ACTIONS(5109), + [sym_val_date] = ACTIONS(5109), + [anon_sym_DQUOTE] = ACTIONS(5109), + [sym__str_single_quotes] = ACTIONS(5109), + [sym__str_back_ticks] = ACTIONS(5109), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5109), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5109), + [anon_sym_CARET] = ACTIONS(5109), [anon_sym_POUND] = ACTIONS(113), }, - [1435] = { - [sym_comment] = STATE(1435), - [ts_builtin_sym_end] = ACTIONS(919), - [anon_sym_SEMI] = ACTIONS(917), - [anon_sym_LF] = ACTIONS(919), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_LPAREN] = ACTIONS(917), - [anon_sym_PIPE] = ACTIONS(917), - [anon_sym_DOLLAR] = ACTIONS(917), - [anon_sym_GT] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_in] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(917), - [anon_sym_DOT_DOT] = ACTIONS(917), - [anon_sym_STAR] = ACTIONS(917), - [anon_sym_STAR_STAR] = ACTIONS(917), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_mod] = ACTIONS(917), - [anon_sym_SLASH_SLASH] = ACTIONS(917), - [anon_sym_PLUS] = ACTIONS(917), - [anon_sym_bit_DASHshl] = ACTIONS(917), - [anon_sym_bit_DASHshr] = ACTIONS(917), - [anon_sym_EQ_EQ] = ACTIONS(917), - [anon_sym_BANG_EQ] = ACTIONS(917), - [anon_sym_LT2] = ACTIONS(917), - [anon_sym_LT_EQ] = ACTIONS(917), - [anon_sym_GT_EQ] = ACTIONS(917), - [anon_sym_not_DASHin] = ACTIONS(917), - [anon_sym_starts_DASHwith] = ACTIONS(917), - [anon_sym_ends_DASHwith] = ACTIONS(917), - [anon_sym_EQ_TILDE] = ACTIONS(917), - [anon_sym_BANG_TILDE] = ACTIONS(917), - [anon_sym_bit_DASHand] = ACTIONS(917), - [anon_sym_bit_DASHxor] = ACTIONS(917), - [anon_sym_bit_DASHor] = ACTIONS(917), - [anon_sym_and] = ACTIONS(917), - [anon_sym_xor] = ACTIONS(917), - [anon_sym_or] = ACTIONS(917), - [anon_sym_not] = ACTIONS(917), - [anon_sym_DOT_DOT2] = ACTIONS(917), - [anon_sym_DOT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ] = ACTIONS(917), - [anon_sym_DOT_DOT_LT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(919), - [anon_sym_DOT_DOT_LT2] = ACTIONS(919), - [aux_sym__immediate_decimal_token2] = ACTIONS(4029), - [anon_sym_null] = ACTIONS(917), - [anon_sym_true] = ACTIONS(917), - [anon_sym_false] = ACTIONS(917), - [aux_sym__val_number_decimal_token1] = ACTIONS(917), - [aux_sym__val_number_decimal_token2] = ACTIONS(917), - [anon_sym_DOT2] = ACTIONS(917), - [aux_sym__val_number_decimal_token3] = ACTIONS(917), - [aux_sym__val_number_token1] = ACTIONS(917), - [aux_sym__val_number_token2] = ACTIONS(917), - [aux_sym__val_number_token3] = ACTIONS(917), - [aux_sym__val_number_token4] = ACTIONS(917), - [aux_sym__val_number_token5] = ACTIONS(917), - [aux_sym__val_number_token6] = ACTIONS(917), - [anon_sym_0b] = ACTIONS(917), - [sym_filesize_unit] = ACTIONS(917), - [sym_duration_unit] = ACTIONS(919), - [anon_sym_0o] = ACTIONS(917), - [anon_sym_0x] = ACTIONS(917), - [sym_val_date] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(917), - [sym__str_single_quotes] = ACTIONS(917), - [sym__str_back_ticks] = ACTIONS(917), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(917), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(917), - [aux_sym_unquoted_token5] = ACTIONS(917), + [1649] = { + [sym_comment] = STATE(1649), + [anon_sym_export] = ACTIONS(3757), + [anon_sym_alias] = ACTIONS(3757), + [anon_sym_let] = ACTIONS(3757), + [anon_sym_let_DASHenv] = ACTIONS(3757), + [anon_sym_mut] = ACTIONS(3757), + [anon_sym_const] = ACTIONS(3757), + [anon_sym_SEMI] = ACTIONS(3757), + [sym_cmd_identifier] = ACTIONS(3757), + [anon_sym_LF] = ACTIONS(3759), + [anon_sym_def] = ACTIONS(3757), + [anon_sym_export_DASHenv] = ACTIONS(3757), + [anon_sym_extern] = ACTIONS(3757), + [anon_sym_module] = ACTIONS(3757), + [anon_sym_use] = ACTIONS(3757), + [anon_sym_LBRACK] = ACTIONS(3757), + [anon_sym_LPAREN] = ACTIONS(3757), + [anon_sym_RPAREN] = ACTIONS(3757), + [anon_sym_DOLLAR] = ACTIONS(3757), + [anon_sym_error] = ACTIONS(3757), + [anon_sym_DASH_DASH] = ACTIONS(3757), + [anon_sym_DASH] = ACTIONS(3757), + [anon_sym_break] = ACTIONS(3757), + [anon_sym_continue] = ACTIONS(3757), + [anon_sym_for] = ACTIONS(3757), + [anon_sym_loop] = ACTIONS(3757), + [anon_sym_while] = ACTIONS(3757), + [anon_sym_do] = ACTIONS(3757), + [anon_sym_if] = ACTIONS(3757), + [anon_sym_match] = ACTIONS(3757), + [anon_sym_LBRACE] = ACTIONS(3757), + [anon_sym_RBRACE] = ACTIONS(3757), + [anon_sym_DOT_DOT] = ACTIONS(3757), + [anon_sym_try] = ACTIONS(3757), + [anon_sym_return] = ACTIONS(3757), + [anon_sym_source] = ACTIONS(3757), + [anon_sym_source_DASHenv] = ACTIONS(3757), + [anon_sym_register] = ACTIONS(3757), + [anon_sym_hide] = ACTIONS(3757), + [anon_sym_hide_DASHenv] = ACTIONS(3757), + [anon_sym_overlay] = ACTIONS(3757), + [anon_sym_as] = ACTIONS(3757), + [anon_sym_where] = ACTIONS(3757), + [anon_sym_not] = ACTIONS(3757), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3757), + [anon_sym_DOT_DOT_LT] = ACTIONS(3757), + [anon_sym_null] = ACTIONS(3757), + [anon_sym_true] = ACTIONS(3757), + [anon_sym_false] = ACTIONS(3757), + [aux_sym__val_number_decimal_token1] = ACTIONS(3757), + [aux_sym__val_number_decimal_token2] = ACTIONS(3757), + [anon_sym_DOT2] = ACTIONS(3757), + [aux_sym__val_number_decimal_token3] = ACTIONS(3757), + [aux_sym__val_number_token1] = ACTIONS(3757), + [aux_sym__val_number_token2] = ACTIONS(3757), + [aux_sym__val_number_token3] = ACTIONS(3757), + [aux_sym__val_number_token4] = ACTIONS(3757), + [aux_sym__val_number_token5] = ACTIONS(3757), + [aux_sym__val_number_token6] = ACTIONS(3757), + [anon_sym_0b] = ACTIONS(3757), + [anon_sym_0o] = ACTIONS(3757), + [anon_sym_0x] = ACTIONS(3757), + [sym_val_date] = ACTIONS(3757), + [anon_sym_DQUOTE] = ACTIONS(3757), + [sym__str_single_quotes] = ACTIONS(3757), + [sym__str_back_ticks] = ACTIONS(3757), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3757), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3757), + [anon_sym_CARET] = ACTIONS(3757), [anon_sym_POUND] = ACTIONS(113), }, - [1436] = { - [sym_comment] = STATE(1436), - [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), - [anon_sym_SEMI] = ACTIONS(2437), - [sym_cmd_identifier] = ACTIONS(2437), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_RPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_RBRACE] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_not] = ACTIONS(2437), - [anon_sym_DOT_DOT2] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2439), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2439), - [aux_sym__immediate_decimal_token1] = ACTIONS(4031), - [aux_sym__immediate_decimal_token2] = ACTIONS(4033), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [anon_sym_DOT2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2437), - [anon_sym_0o] = ACTIONS(2437), - [anon_sym_0x] = ACTIONS(2437), - [sym_val_date] = 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_CARET] = ACTIONS(2437), + [1650] = { + [sym_comment] = STATE(1650), + [anon_sym_export] = ACTIONS(5113), + [anon_sym_alias] = ACTIONS(5113), + [anon_sym_let] = ACTIONS(5113), + [anon_sym_let_DASHenv] = ACTIONS(5113), + [anon_sym_mut] = ACTIONS(5113), + [anon_sym_const] = ACTIONS(5113), + [anon_sym_SEMI] = ACTIONS(5113), + [sym_cmd_identifier] = ACTIONS(5113), + [anon_sym_LF] = ACTIONS(5115), + [anon_sym_def] = ACTIONS(5113), + [anon_sym_export_DASHenv] = ACTIONS(5113), + [anon_sym_extern] = ACTIONS(5113), + [anon_sym_module] = ACTIONS(5113), + [anon_sym_use] = ACTIONS(5113), + [anon_sym_LBRACK] = ACTIONS(5113), + [anon_sym_LPAREN] = ACTIONS(5113), + [anon_sym_RPAREN] = ACTIONS(5113), + [anon_sym_DOLLAR] = ACTIONS(5113), + [anon_sym_error] = ACTIONS(5113), + [anon_sym_DASH_DASH] = ACTIONS(5113), + [anon_sym_DASH] = ACTIONS(5113), + [anon_sym_break] = ACTIONS(5113), + [anon_sym_continue] = ACTIONS(5113), + [anon_sym_for] = ACTIONS(5113), + [anon_sym_loop] = ACTIONS(5113), + [anon_sym_while] = ACTIONS(5113), + [anon_sym_do] = ACTIONS(5113), + [anon_sym_if] = ACTIONS(5113), + [anon_sym_match] = ACTIONS(5113), + [anon_sym_LBRACE] = ACTIONS(5113), + [anon_sym_RBRACE] = ACTIONS(5113), + [anon_sym_DOT_DOT] = ACTIONS(5113), + [anon_sym_try] = ACTIONS(5113), + [anon_sym_return] = ACTIONS(5113), + [anon_sym_source] = ACTIONS(5113), + [anon_sym_source_DASHenv] = ACTIONS(5113), + [anon_sym_register] = ACTIONS(5113), + [anon_sym_hide] = ACTIONS(5113), + [anon_sym_hide_DASHenv] = ACTIONS(5113), + [anon_sym_overlay] = ACTIONS(5113), + [anon_sym_as] = ACTIONS(5113), + [anon_sym_where] = ACTIONS(5113), + [anon_sym_not] = ACTIONS(5113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5113), + [anon_sym_DOT_DOT_LT] = ACTIONS(5113), + [anon_sym_null] = ACTIONS(5113), + [anon_sym_true] = ACTIONS(5113), + [anon_sym_false] = ACTIONS(5113), + [aux_sym__val_number_decimal_token1] = ACTIONS(5113), + [aux_sym__val_number_decimal_token2] = ACTIONS(5113), + [anon_sym_DOT2] = ACTIONS(5113), + [aux_sym__val_number_decimal_token3] = ACTIONS(5113), + [aux_sym__val_number_token1] = ACTIONS(5113), + [aux_sym__val_number_token2] = ACTIONS(5113), + [aux_sym__val_number_token3] = ACTIONS(5113), + [aux_sym__val_number_token4] = ACTIONS(5113), + [aux_sym__val_number_token5] = ACTIONS(5113), + [aux_sym__val_number_token6] = ACTIONS(5113), + [anon_sym_0b] = ACTIONS(5113), + [anon_sym_0o] = ACTIONS(5113), + [anon_sym_0x] = ACTIONS(5113), + [sym_val_date] = ACTIONS(5113), + [anon_sym_DQUOTE] = ACTIONS(5113), + [sym__str_single_quotes] = ACTIONS(5113), + [sym__str_back_ticks] = ACTIONS(5113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5113), + [anon_sym_CARET] = ACTIONS(5113), [anon_sym_POUND] = ACTIONS(113), }, - [1437] = { - [sym_comment] = STATE(1437), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_COMMA] = ACTIONS(1111), - [anon_sym_RBRACK] = ACTIONS(1111), - [anon_sym_LPAREN] = ACTIONS(1111), - [anon_sym_DOLLAR] = ACTIONS(1111), - [anon_sym_GT] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1111), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_in] = ACTIONS(1109), - [anon_sym_LBRACE] = ACTIONS(1111), - [anon_sym_DOT_DOT] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_STAR_STAR] = ACTIONS(1111), - [anon_sym_PLUS_PLUS] = ACTIONS(1111), - [anon_sym_SLASH] = ACTIONS(1109), - [anon_sym_mod] = ACTIONS(1111), - [anon_sym_SLASH_SLASH] = ACTIONS(1111), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_bit_DASHshl] = ACTIONS(1111), - [anon_sym_bit_DASHshr] = ACTIONS(1111), - [anon_sym_EQ_EQ] = ACTIONS(1111), - [anon_sym_BANG_EQ] = ACTIONS(1111), - [anon_sym_LT2] = ACTIONS(1109), - [anon_sym_LT_EQ] = ACTIONS(1111), - [anon_sym_GT_EQ] = ACTIONS(1111), - [anon_sym_not_DASHin] = ACTIONS(1111), - [anon_sym_starts_DASHwith] = ACTIONS(1111), - [anon_sym_ends_DASHwith] = ACTIONS(1111), - [anon_sym_EQ_TILDE] = ACTIONS(1111), - [anon_sym_BANG_TILDE] = ACTIONS(1111), - [anon_sym_bit_DASHand] = ACTIONS(1111), - [anon_sym_bit_DASHxor] = ACTIONS(1111), - [anon_sym_bit_DASHor] = ACTIONS(1111), - [anon_sym_and] = ACTIONS(1111), - [anon_sym_xor] = ACTIONS(1111), - [anon_sym_or] = ACTIONS(1111), - [anon_sym_DOT_DOT2] = ACTIONS(1109), - [anon_sym_DOT] = ACTIONS(1109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1109), - [anon_sym_DOT_DOT_LT] = ACTIONS(1109), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1111), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1111), - [anon_sym_null] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1111), - [anon_sym_false] = ACTIONS(1111), - [aux_sym__val_number_decimal_token1] = ACTIONS(1109), - [aux_sym__val_number_decimal_token2] = ACTIONS(1111), - [anon_sym_DOT2] = ACTIONS(1109), - [aux_sym__val_number_decimal_token3] = ACTIONS(1111), - [aux_sym__val_number_token1] = ACTIONS(1111), - [aux_sym__val_number_token2] = ACTIONS(1111), - [aux_sym__val_number_token3] = ACTIONS(1111), - [aux_sym__val_number_token4] = ACTIONS(1111), - [aux_sym__val_number_token5] = ACTIONS(1111), - [aux_sym__val_number_token6] = ACTIONS(1111), - [anon_sym_0b] = ACTIONS(1109), - [anon_sym_0o] = ACTIONS(1109), - [anon_sym_0x] = ACTIONS(1109), - [sym_val_date] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(1111), - [sym__str_single_quotes] = ACTIONS(1111), - [sym__str_back_ticks] = ACTIONS(1111), - [anon_sym_err_GT] = ACTIONS(1111), - [anon_sym_out_GT] = ACTIONS(1111), - [anon_sym_e_GT] = ACTIONS(1111), - [anon_sym_o_GT] = ACTIONS(1111), - [anon_sym_err_PLUSout_GT] = ACTIONS(1111), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1111), - [anon_sym_o_PLUSe_GT] = ACTIONS(1111), - [anon_sym_e_PLUSo_GT] = ACTIONS(1111), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1109), + [1651] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6337), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6234), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4982), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5852), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1651), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(5035), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4787), + [anon_sym_DOT_DOT_LT] = ACTIONS(4787), + [anon_sym_null] = ACTIONS(3669), + [anon_sym_true] = ACTIONS(3671), + [anon_sym_false] = ACTIONS(3671), + [aux_sym__val_number_decimal_token1] = ACTIONS(3673), + [aux_sym__val_number_decimal_token2] = ACTIONS(3675), + [anon_sym_DOT2] = ACTIONS(5037), + [aux_sym__val_number_decimal_token3] = ACTIONS(3679), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(3681), + [aux_sym__val_number_token5] = ACTIONS(3681), + [aux_sym__val_number_token6] = ACTIONS(3681), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(3683), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), [anon_sym_POUND] = ACTIONS(3), }, - [1438] = { - [sym_comment] = STATE(1438), - [anon_sym_export] = ACTIONS(4035), - [anon_sym_alias] = ACTIONS(4035), - [anon_sym_let] = ACTIONS(4035), - [anon_sym_let_DASHenv] = ACTIONS(4035), - [anon_sym_mut] = ACTIONS(4035), - [anon_sym_const] = ACTIONS(4035), - [anon_sym_SEMI] = ACTIONS(4035), - [sym_cmd_identifier] = ACTIONS(4035), - [anon_sym_LF] = ACTIONS(4035), - [anon_sym_def] = ACTIONS(4035), - [anon_sym_export_DASHenv] = ACTIONS(4035), - [anon_sym_extern] = ACTIONS(4035), - [anon_sym_module] = ACTIONS(4035), - [anon_sym_use] = ACTIONS(4035), - [anon_sym_LBRACK] = ACTIONS(4035), - [anon_sym_LPAREN] = ACTIONS(4035), - [anon_sym_RPAREN] = ACTIONS(4035), - [anon_sym_DOLLAR] = ACTIONS(4035), - [anon_sym_error] = ACTIONS(4035), - [anon_sym_DASH_DASH] = ACTIONS(4035), - [anon_sym_DASH] = ACTIONS(4035), - [anon_sym_break] = ACTIONS(4035), - [anon_sym_continue] = ACTIONS(4035), - [anon_sym_for] = ACTIONS(4035), - [anon_sym_loop] = ACTIONS(4035), - [anon_sym_while] = ACTIONS(4035), - [anon_sym_do] = ACTIONS(4035), - [anon_sym_if] = ACTIONS(4035), - [anon_sym_match] = ACTIONS(4035), - [anon_sym_LBRACE] = ACTIONS(4035), - [anon_sym_RBRACE] = ACTIONS(4035), - [anon_sym_DOT_DOT] = ACTIONS(4035), - [anon_sym_try] = ACTIONS(4035), - [anon_sym_return] = ACTIONS(4035), - [anon_sym_source] = ACTIONS(4035), - [anon_sym_source_DASHenv] = ACTIONS(4035), - [anon_sym_register] = ACTIONS(4035), - [anon_sym_hide] = ACTIONS(4035), - [anon_sym_hide_DASHenv] = ACTIONS(4035), - [anon_sym_overlay] = ACTIONS(4035), - [anon_sym_as] = ACTIONS(4035), - [anon_sym_where] = ACTIONS(4035), - [anon_sym_not] = ACTIONS(4035), - [anon_sym_LPAREN2] = ACTIONS(4037), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4035), - [anon_sym_DOT_DOT_LT] = ACTIONS(4035), - [anon_sym_null] = ACTIONS(4035), - [anon_sym_true] = ACTIONS(4035), - [anon_sym_false] = ACTIONS(4035), - [aux_sym__val_number_decimal_token1] = ACTIONS(4035), - [aux_sym__val_number_decimal_token2] = ACTIONS(4035), - [anon_sym_DOT2] = ACTIONS(4035), - [aux_sym__val_number_decimal_token3] = ACTIONS(4035), - [aux_sym__val_number_token1] = ACTIONS(4035), - [aux_sym__val_number_token2] = ACTIONS(4035), - [aux_sym__val_number_token3] = ACTIONS(4035), - [aux_sym__val_number_token4] = ACTIONS(4035), - [aux_sym__val_number_token5] = ACTIONS(4035), - [aux_sym__val_number_token6] = ACTIONS(4035), - [anon_sym_0b] = ACTIONS(4035), - [anon_sym_0o] = ACTIONS(4035), - [anon_sym_0x] = ACTIONS(4035), - [sym_val_date] = ACTIONS(4035), - [anon_sym_DQUOTE] = ACTIONS(4035), - [sym__str_single_quotes] = ACTIONS(4035), - [sym__str_back_ticks] = ACTIONS(4035), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4035), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4035), - [anon_sym_CARET] = ACTIONS(4035), - [aux_sym_command_token1] = ACTIONS(4039), - [aux_sym_unquoted_token6] = ACTIONS(1251), - [anon_sym_POUND] = ACTIONS(113), - }, - [1439] = { - [sym_comment] = STATE(1439), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_RPAREN] = ACTIONS(959), - [anon_sym_PIPE] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH_DASH] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_RBRACE] = ACTIONS(959), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(959), - [anon_sym_PLUS_PLUS] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(959), - [anon_sym_SLASH_SLASH] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(959), - [anon_sym_bit_DASHshr] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(959), - [anon_sym_BANG_EQ] = ACTIONS(959), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(959), - [anon_sym_GT_EQ] = ACTIONS(959), - [anon_sym_not_DASHin] = ACTIONS(959), - [anon_sym_starts_DASHwith] = ACTIONS(959), - [anon_sym_ends_DASHwith] = ACTIONS(959), - [anon_sym_EQ_TILDE] = ACTIONS(959), - [anon_sym_BANG_TILDE] = ACTIONS(959), - [anon_sym_bit_DASHand] = ACTIONS(959), - [anon_sym_bit_DASHxor] = ACTIONS(959), - [anon_sym_bit_DASHor] = ACTIONS(959), - [anon_sym_and] = ACTIONS(959), - [anon_sym_xor] = ACTIONS(959), - [anon_sym_or] = ACTIONS(959), - [anon_sym_not] = ACTIONS(959), - [anon_sym_DOT_DOT2] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(4041), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_DOT_DOT_LT] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(983), - [anon_sym_DOT_DOT_LT2] = ACTIONS(983), - [anon_sym_null] = ACTIONS(959), - [anon_sym_true] = ACTIONS(959), - [anon_sym_false] = ACTIONS(959), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(959), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(959), - [aux_sym__val_number_token1] = ACTIONS(959), - [aux_sym__val_number_token2] = ACTIONS(959), - [aux_sym__val_number_token3] = ACTIONS(959), - [aux_sym__val_number_token4] = ACTIONS(959), - [aux_sym__val_number_token5] = ACTIONS(959), - [aux_sym__val_number_token6] = ACTIONS(959), - [anon_sym_0b] = ACTIONS(959), - [sym_filesize_unit] = ACTIONS(3978), - [sym_duration_unit] = ACTIONS(3980), - [anon_sym_0o] = ACTIONS(959), - [anon_sym_0x] = ACTIONS(959), - [sym_val_date] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [sym__str_single_quotes] = ACTIONS(959), - [sym__str_back_ticks] = ACTIONS(959), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(959), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(959), - [aux_sym_unquoted_token5] = ACTIONS(3862), - [anon_sym_POUND] = ACTIONS(113), + [1652] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5021), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(4543), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3722), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4749), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1652), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5117), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5119), + [anon_sym_DOT_DOT_LT] = ACTIONS(5119), + [anon_sym_null] = ACTIONS(5121), + [anon_sym_true] = ACTIONS(5123), + [anon_sym_false] = ACTIONS(5123), + [aux_sym__val_number_decimal_token1] = ACTIONS(5125), + [aux_sym__val_number_decimal_token2] = ACTIONS(5127), + [anon_sym_DOT2] = ACTIONS(5129), + [aux_sym__val_number_decimal_token3] = ACTIONS(5131), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5133), + [aux_sym__val_number_token5] = ACTIONS(5133), + [aux_sym__val_number_token6] = ACTIONS(5133), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5135), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), }, - [1440] = { - [sym_comment] = STATE(1440), - [anon_sym_export] = ACTIONS(1059), - [anon_sym_alias] = ACTIONS(1059), - [anon_sym_let] = ACTIONS(1059), - [anon_sym_let_DASHenv] = ACTIONS(1059), - [anon_sym_mut] = ACTIONS(1059), - [anon_sym_const] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [sym_cmd_identifier] = ACTIONS(1059), - [anon_sym_LF] = ACTIONS(1061), - [anon_sym_def] = ACTIONS(1059), - [anon_sym_export_DASHenv] = ACTIONS(1059), - [anon_sym_extern] = ACTIONS(1059), - [anon_sym_module] = ACTIONS(1059), - [anon_sym_use] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_error] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_break] = ACTIONS(1059), - [anon_sym_continue] = ACTIONS(1059), - [anon_sym_for] = ACTIONS(1059), - [anon_sym_loop] = ACTIONS(1059), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_do] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1059), - [anon_sym_match] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(1059), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_try] = ACTIONS(1059), - [anon_sym_return] = ACTIONS(1059), - [anon_sym_source] = ACTIONS(1059), - [anon_sym_source_DASHenv] = ACTIONS(1059), - [anon_sym_register] = ACTIONS(1059), - [anon_sym_hide] = ACTIONS(1059), - [anon_sym_hide_DASHenv] = ACTIONS(1059), - [anon_sym_overlay] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(1059), - [anon_sym_QMARK2] = ACTIONS(1059), - [anon_sym_not] = ACTIONS(1059), - [anon_sym_DOT_DOT2] = ACTIONS(1059), - [anon_sym_DOT] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1059), - [anon_sym_DOT_DOT_LT] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1061), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1061), - [anon_sym_null] = ACTIONS(1059), - [anon_sym_true] = ACTIONS(1059), - [anon_sym_false] = ACTIONS(1059), - [aux_sym__val_number_decimal_token1] = ACTIONS(1059), - [aux_sym__val_number_decimal_token2] = ACTIONS(1059), - [anon_sym_DOT2] = ACTIONS(1059), - [aux_sym__val_number_decimal_token3] = ACTIONS(1059), - [aux_sym__val_number_token1] = ACTIONS(1059), - [aux_sym__val_number_token2] = ACTIONS(1059), - [aux_sym__val_number_token3] = ACTIONS(1059), - [aux_sym__val_number_token4] = ACTIONS(1059), - [aux_sym__val_number_token5] = ACTIONS(1059), - [aux_sym__val_number_token6] = ACTIONS(1059), - [anon_sym_0b] = ACTIONS(1059), - [anon_sym_0o] = ACTIONS(1059), - [anon_sym_0x] = ACTIONS(1059), - [sym_val_date] = ACTIONS(1059), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym__str_single_quotes] = ACTIONS(1059), - [sym__str_back_ticks] = ACTIONS(1059), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1059), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1059), - [anon_sym_CARET] = ACTIONS(1059), - [anon_sym_POUND] = ACTIONS(113), + [1653] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5022), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(4543), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3722), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4750), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1653), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5117), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5119), + [anon_sym_DOT_DOT_LT] = ACTIONS(5119), + [anon_sym_null] = ACTIONS(5121), + [anon_sym_true] = ACTIONS(5123), + [anon_sym_false] = ACTIONS(5123), + [aux_sym__val_number_decimal_token1] = ACTIONS(5125), + [aux_sym__val_number_decimal_token2] = ACTIONS(5127), + [anon_sym_DOT2] = ACTIONS(5129), + [aux_sym__val_number_decimal_token3] = ACTIONS(5131), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5133), + [aux_sym__val_number_token5] = ACTIONS(5133), + [aux_sym__val_number_token6] = ACTIONS(5133), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5135), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), }, - [1441] = { - [sym_comment] = STATE(1441), - [anon_sym_export] = ACTIONS(4043), - [anon_sym_alias] = ACTIONS(4043), - [anon_sym_let] = ACTIONS(4043), - [anon_sym_let_DASHenv] = ACTIONS(4043), - [anon_sym_mut] = ACTIONS(4043), - [anon_sym_const] = ACTIONS(4043), - [anon_sym_SEMI] = ACTIONS(4043), - [sym_cmd_identifier] = ACTIONS(4043), - [anon_sym_LF] = ACTIONS(4045), - [anon_sym_def] = ACTIONS(4043), - [anon_sym_export_DASHenv] = ACTIONS(4043), - [anon_sym_extern] = ACTIONS(4043), - [anon_sym_module] = ACTIONS(4043), - [anon_sym_use] = ACTIONS(4043), - [anon_sym_LBRACK] = ACTIONS(4043), - [anon_sym_LPAREN] = ACTIONS(4043), - [anon_sym_RPAREN] = ACTIONS(4043), - [anon_sym_DOLLAR] = ACTIONS(4043), - [anon_sym_error] = ACTIONS(4043), - [anon_sym_DASH_DASH] = ACTIONS(4043), - [anon_sym_DASH] = ACTIONS(4043), - [anon_sym_break] = ACTIONS(4043), - [anon_sym_continue] = ACTIONS(4043), - [anon_sym_for] = ACTIONS(4043), - [anon_sym_loop] = ACTIONS(4043), - [anon_sym_while] = ACTIONS(4043), - [anon_sym_do] = ACTIONS(4043), - [anon_sym_if] = ACTIONS(4043), - [anon_sym_match] = ACTIONS(4043), - [anon_sym_LBRACE] = ACTIONS(4043), - [anon_sym_RBRACE] = ACTIONS(4043), - [anon_sym_DOT_DOT] = ACTIONS(4043), - [anon_sym_try] = ACTIONS(4043), - [anon_sym_return] = ACTIONS(4043), - [anon_sym_source] = ACTIONS(4043), - [anon_sym_source_DASHenv] = ACTIONS(4043), - [anon_sym_register] = ACTIONS(4043), - [anon_sym_hide] = ACTIONS(4043), - [anon_sym_hide_DASHenv] = ACTIONS(4043), - [anon_sym_overlay] = ACTIONS(4043), - [anon_sym_as] = ACTIONS(4043), - [anon_sym_where] = ACTIONS(4043), - [anon_sym_not] = ACTIONS(4043), - [anon_sym_DOT_DOT2] = ACTIONS(4047), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4043), - [anon_sym_DOT_DOT_LT] = ACTIONS(4043), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4049), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4049), - [anon_sym_null] = ACTIONS(4043), - [anon_sym_true] = ACTIONS(4043), - [anon_sym_false] = ACTIONS(4043), - [aux_sym__val_number_decimal_token1] = ACTIONS(4043), - [aux_sym__val_number_decimal_token2] = ACTIONS(4043), - [anon_sym_DOT2] = ACTIONS(4043), - [aux_sym__val_number_decimal_token3] = ACTIONS(4043), - [aux_sym__val_number_token1] = ACTIONS(4043), - [aux_sym__val_number_token2] = ACTIONS(4043), - [aux_sym__val_number_token3] = ACTIONS(4043), - [aux_sym__val_number_token4] = ACTIONS(4043), - [aux_sym__val_number_token5] = ACTIONS(4043), - [aux_sym__val_number_token6] = ACTIONS(4043), - [anon_sym_0b] = ACTIONS(4043), - [anon_sym_0o] = ACTIONS(4043), - [anon_sym_0x] = ACTIONS(4043), - [sym_val_date] = ACTIONS(4043), - [anon_sym_DQUOTE] = ACTIONS(4043), - [sym__str_single_quotes] = ACTIONS(4043), - [sym__str_back_ticks] = ACTIONS(4043), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4043), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4043), - [anon_sym_CARET] = ACTIONS(4043), - [anon_sym_POUND] = ACTIONS(113), + [1654] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5023), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(4543), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3722), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4751), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1654), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5117), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5119), + [anon_sym_DOT_DOT_LT] = ACTIONS(5119), + [anon_sym_null] = ACTIONS(5121), + [anon_sym_true] = ACTIONS(5123), + [anon_sym_false] = ACTIONS(5123), + [aux_sym__val_number_decimal_token1] = ACTIONS(5125), + [aux_sym__val_number_decimal_token2] = ACTIONS(5127), + [anon_sym_DOT2] = ACTIONS(5129), + [aux_sym__val_number_decimal_token3] = ACTIONS(5131), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5133), + [aux_sym__val_number_token5] = ACTIONS(5133), + [aux_sym__val_number_token6] = ACTIONS(5133), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5135), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), }, - [1442] = { - [sym_comment] = STATE(1442), - [ts_builtin_sym_end] = ACTIONS(3507), - [anon_sym_export] = ACTIONS(3505), - [anon_sym_alias] = ACTIONS(3505), - [anon_sym_let] = ACTIONS(3505), - [anon_sym_let_DASHenv] = ACTIONS(3505), - [anon_sym_mut] = ACTIONS(3505), - [anon_sym_const] = ACTIONS(3505), - [anon_sym_SEMI] = ACTIONS(3505), - [sym_cmd_identifier] = ACTIONS(3505), - [anon_sym_LF] = ACTIONS(3507), - [anon_sym_def] = ACTIONS(3505), - [anon_sym_export_DASHenv] = ACTIONS(3505), - [anon_sym_extern] = ACTIONS(3505), - [anon_sym_module] = ACTIONS(3505), - [anon_sym_use] = ACTIONS(3505), - [anon_sym_LBRACK] = ACTIONS(3505), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_error] = ACTIONS(3505), - [anon_sym_DASH_DASH] = ACTIONS(3505), - [anon_sym_DASH] = ACTIONS(3505), - [anon_sym_break] = ACTIONS(3505), - [anon_sym_continue] = ACTIONS(3505), - [anon_sym_for] = ACTIONS(3505), - [anon_sym_loop] = ACTIONS(3505), - [anon_sym_while] = ACTIONS(3505), - [anon_sym_do] = ACTIONS(3505), - [anon_sym_if] = ACTIONS(3505), - [anon_sym_match] = ACTIONS(3505), - [anon_sym_LBRACE] = ACTIONS(3505), - [anon_sym_DOT_DOT] = ACTIONS(3505), - [anon_sym_try] = ACTIONS(3505), - [anon_sym_return] = ACTIONS(3505), - [anon_sym_source] = ACTIONS(3505), - [anon_sym_source_DASHenv] = ACTIONS(3505), - [anon_sym_register] = ACTIONS(3505), - [anon_sym_hide] = ACTIONS(3505), - [anon_sym_hide_DASHenv] = ACTIONS(3505), - [anon_sym_overlay] = ACTIONS(3505), - [anon_sym_as] = ACTIONS(3505), - [anon_sym_where] = ACTIONS(3505), - [anon_sym_not] = ACTIONS(3505), - [anon_sym_LPAREN2] = ACTIONS(3507), - [anon_sym_DOT] = ACTIONS(3505), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3505), - [anon_sym_DOT_DOT_LT] = ACTIONS(3505), - [anon_sym_null] = ACTIONS(3505), - [anon_sym_true] = ACTIONS(3505), - [anon_sym_false] = ACTIONS(3505), - [aux_sym__val_number_decimal_token1] = ACTIONS(3505), - [aux_sym__val_number_decimal_token2] = ACTIONS(3505), - [anon_sym_DOT2] = ACTIONS(3505), - [aux_sym__val_number_decimal_token3] = ACTIONS(3505), - [aux_sym__val_number_token1] = ACTIONS(3505), - [aux_sym__val_number_token2] = ACTIONS(3505), - [aux_sym__val_number_token3] = ACTIONS(3505), - [aux_sym__val_number_token4] = ACTIONS(3505), - [aux_sym__val_number_token5] = ACTIONS(3505), - [aux_sym__val_number_token6] = ACTIONS(3505), - [anon_sym_0b] = ACTIONS(3505), - [anon_sym_0o] = ACTIONS(3505), - [anon_sym_0x] = ACTIONS(3505), - [sym_val_date] = ACTIONS(3505), - [anon_sym_DQUOTE] = ACTIONS(3505), - [sym__str_single_quotes] = ACTIONS(3505), - [sym__str_back_ticks] = ACTIONS(3505), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3505), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3505), - [anon_sym_CARET] = ACTIONS(3505), - [aux_sym_unquoted_token2] = ACTIONS(3505), - [anon_sym_POUND] = ACTIONS(113), + [1655] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5024), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(4543), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3722), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4752), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1655), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5117), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5119), + [anon_sym_DOT_DOT_LT] = ACTIONS(5119), + [anon_sym_null] = ACTIONS(5121), + [anon_sym_true] = ACTIONS(5123), + [anon_sym_false] = ACTIONS(5123), + [aux_sym__val_number_decimal_token1] = ACTIONS(5125), + [aux_sym__val_number_decimal_token2] = ACTIONS(5127), + [anon_sym_DOT2] = ACTIONS(5129), + [aux_sym__val_number_decimal_token3] = ACTIONS(5131), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5133), + [aux_sym__val_number_token5] = ACTIONS(5133), + [aux_sym__val_number_token6] = ACTIONS(5133), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5135), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), }, - [1443] = { - [sym_comment] = STATE(1443), - [anon_sym_export] = ACTIONS(3874), - [anon_sym_alias] = ACTIONS(3874), - [anon_sym_let] = ACTIONS(3874), - [anon_sym_let_DASHenv] = ACTIONS(3874), - [anon_sym_mut] = ACTIONS(3874), - [anon_sym_const] = ACTIONS(3874), - [anon_sym_SEMI] = ACTIONS(3874), - [sym_cmd_identifier] = ACTIONS(3874), - [anon_sym_LF] = ACTIONS(3876), - [anon_sym_def] = ACTIONS(3874), - [anon_sym_export_DASHenv] = ACTIONS(3874), - [anon_sym_extern] = ACTIONS(3874), - [anon_sym_module] = ACTIONS(3874), - [anon_sym_use] = ACTIONS(3874), - [anon_sym_LBRACK] = ACTIONS(3874), - [anon_sym_LPAREN] = ACTIONS(3874), - [anon_sym_RPAREN] = ACTIONS(3874), - [anon_sym_DOLLAR] = ACTIONS(3874), - [anon_sym_error] = ACTIONS(3874), - [anon_sym_DASH_DASH] = ACTIONS(3874), - [anon_sym_DASH] = ACTIONS(3874), - [anon_sym_break] = ACTIONS(3874), - [anon_sym_continue] = ACTIONS(3874), - [anon_sym_for] = ACTIONS(3874), - [anon_sym_loop] = ACTIONS(3874), - [anon_sym_while] = ACTIONS(3874), - [anon_sym_do] = ACTIONS(3874), - [anon_sym_if] = ACTIONS(3874), - [anon_sym_match] = ACTIONS(3874), - [anon_sym_LBRACE] = ACTIONS(3874), - [anon_sym_RBRACE] = ACTIONS(3874), - [anon_sym_DOT_DOT] = ACTIONS(3874), - [anon_sym_try] = ACTIONS(3874), - [anon_sym_return] = ACTIONS(3874), - [anon_sym_source] = ACTIONS(3874), - [anon_sym_source_DASHenv] = ACTIONS(3874), - [anon_sym_register] = ACTIONS(3874), - [anon_sym_hide] = ACTIONS(3874), - [anon_sym_hide_DASHenv] = ACTIONS(3874), - [anon_sym_overlay] = ACTIONS(3874), - [anon_sym_as] = ACTIONS(3874), - [anon_sym_where] = ACTIONS(3874), - [anon_sym_not] = ACTIONS(3874), - [anon_sym_DOT] = ACTIONS(2006), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3874), - [anon_sym_DOT_DOT_LT] = ACTIONS(3874), - [anon_sym_null] = ACTIONS(3874), - [anon_sym_true] = ACTIONS(3874), - [anon_sym_false] = ACTIONS(3874), - [aux_sym__val_number_decimal_token1] = ACTIONS(3874), - [aux_sym__val_number_decimal_token2] = ACTIONS(3874), - [anon_sym_DOT2] = ACTIONS(3874), - [aux_sym__val_number_decimal_token3] = ACTIONS(3874), - [aux_sym__val_number_token1] = ACTIONS(3874), - [aux_sym__val_number_token2] = ACTIONS(3874), - [aux_sym__val_number_token3] = ACTIONS(3874), - [aux_sym__val_number_token4] = ACTIONS(3874), - [aux_sym__val_number_token5] = ACTIONS(3874), - [aux_sym__val_number_token6] = ACTIONS(3874), - [anon_sym_0b] = ACTIONS(3874), - [anon_sym_0o] = ACTIONS(3874), - [anon_sym_0x] = ACTIONS(3874), - [sym_val_date] = ACTIONS(3874), - [anon_sym_DQUOTE] = ACTIONS(3874), - [sym__str_single_quotes] = ACTIONS(3874), - [sym__str_back_ticks] = ACTIONS(3874), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3874), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3874), - [anon_sym_CARET] = ACTIONS(3874), - [aux_sym_unquoted_token2] = ACTIONS(2006), - [anon_sym_POUND] = ACTIONS(113), + [1656] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5025), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(4543), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3722), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4753), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1656), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5117), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5119), + [anon_sym_DOT_DOT_LT] = ACTIONS(5119), + [anon_sym_null] = ACTIONS(5121), + [anon_sym_true] = ACTIONS(5123), + [anon_sym_false] = ACTIONS(5123), + [aux_sym__val_number_decimal_token1] = ACTIONS(5125), + [aux_sym__val_number_decimal_token2] = ACTIONS(5127), + [anon_sym_DOT2] = ACTIONS(5129), + [aux_sym__val_number_decimal_token3] = ACTIONS(5131), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5133), + [aux_sym__val_number_token5] = ACTIONS(5133), + [aux_sym__val_number_token6] = ACTIONS(5133), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5135), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), }, - [1444] = { - [sym_comment] = STATE(1444), - [ts_builtin_sym_end] = ACTIONS(2845), - [anon_sym_export] = ACTIONS(2843), - [anon_sym_alias] = ACTIONS(2843), - [anon_sym_let] = ACTIONS(2843), - [anon_sym_let_DASHenv] = ACTIONS(2843), - [anon_sym_mut] = ACTIONS(2843), - [anon_sym_const] = ACTIONS(2843), - [anon_sym_SEMI] = ACTIONS(2843), - [sym_cmd_identifier] = ACTIONS(2843), - [anon_sym_LF] = ACTIONS(2845), - [anon_sym_def] = ACTIONS(2843), - [anon_sym_export_DASHenv] = ACTIONS(2843), - [anon_sym_extern] = ACTIONS(2843), - [anon_sym_module] = ACTIONS(2843), - [anon_sym_use] = ACTIONS(2843), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_LPAREN] = ACTIONS(2843), - [anon_sym_DOLLAR] = ACTIONS(2843), - [anon_sym_error] = ACTIONS(2843), - [anon_sym_DASH_DASH] = ACTIONS(2843), - [anon_sym_DASH] = ACTIONS(2843), - [anon_sym_break] = ACTIONS(2843), - [anon_sym_continue] = ACTIONS(2843), - [anon_sym_for] = ACTIONS(2843), - [anon_sym_loop] = ACTIONS(2843), - [anon_sym_while] = ACTIONS(2843), - [anon_sym_do] = ACTIONS(2843), - [anon_sym_if] = ACTIONS(2843), - [anon_sym_match] = ACTIONS(2843), - [anon_sym_LBRACE] = ACTIONS(2843), - [anon_sym_DOT_DOT] = ACTIONS(2843), - [anon_sym_try] = ACTIONS(2843), - [anon_sym_return] = ACTIONS(2843), - [anon_sym_source] = ACTIONS(2843), - [anon_sym_source_DASHenv] = ACTIONS(2843), - [anon_sym_register] = ACTIONS(2843), - [anon_sym_hide] = ACTIONS(2843), - [anon_sym_hide_DASHenv] = ACTIONS(2843), - [anon_sym_overlay] = ACTIONS(2843), - [anon_sym_as] = ACTIONS(2843), - [anon_sym_where] = ACTIONS(2843), - [anon_sym_not] = ACTIONS(2843), - [anon_sym_LPAREN2] = ACTIONS(2847), - [anon_sym_DOT] = ACTIONS(2851), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2843), - [anon_sym_DOT_DOT_LT] = ACTIONS(2843), - [anon_sym_null] = ACTIONS(2843), - [anon_sym_true] = ACTIONS(2843), - [anon_sym_false] = ACTIONS(2843), - [aux_sym__val_number_decimal_token1] = ACTIONS(2843), - [aux_sym__val_number_decimal_token2] = ACTIONS(2843), - [anon_sym_DOT2] = ACTIONS(2843), - [aux_sym__val_number_decimal_token3] = ACTIONS(2843), - [aux_sym__val_number_token1] = ACTIONS(2843), - [aux_sym__val_number_token2] = ACTIONS(2843), - [aux_sym__val_number_token3] = ACTIONS(2843), - [aux_sym__val_number_token4] = ACTIONS(2843), - [aux_sym__val_number_token5] = ACTIONS(2843), - [aux_sym__val_number_token6] = ACTIONS(2843), - [anon_sym_0b] = ACTIONS(2843), - [anon_sym_0o] = ACTIONS(2843), - [anon_sym_0x] = ACTIONS(2843), - [sym_val_date] = ACTIONS(2843), - [anon_sym_DQUOTE] = ACTIONS(2843), - [sym__str_single_quotes] = ACTIONS(2843), - [sym__str_back_ticks] = ACTIONS(2843), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2843), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2843), - [anon_sym_CARET] = ACTIONS(2843), - [aux_sym_unquoted_token2] = ACTIONS(2851), - [anon_sym_POUND] = ACTIONS(113), + [1657] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5026), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(4543), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3722), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4754), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1657), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5117), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5119), + [anon_sym_DOT_DOT_LT] = ACTIONS(5119), + [anon_sym_null] = ACTIONS(5121), + [anon_sym_true] = ACTIONS(5123), + [anon_sym_false] = ACTIONS(5123), + [aux_sym__val_number_decimal_token1] = ACTIONS(5125), + [aux_sym__val_number_decimal_token2] = ACTIONS(5127), + [anon_sym_DOT2] = ACTIONS(5129), + [aux_sym__val_number_decimal_token3] = ACTIONS(5131), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5133), + [aux_sym__val_number_token5] = ACTIONS(5133), + [aux_sym__val_number_token6] = ACTIONS(5133), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5135), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), }, - [1445] = { - [sym_comment] = STATE(1445), - [anon_sym_export] = ACTIONS(4006), - [anon_sym_alias] = ACTIONS(4006), - [anon_sym_let] = ACTIONS(4006), - [anon_sym_let_DASHenv] = ACTIONS(4006), - [anon_sym_mut] = ACTIONS(4006), - [anon_sym_const] = ACTIONS(4006), - [anon_sym_SEMI] = ACTIONS(4006), - [sym_cmd_identifier] = ACTIONS(4006), - [anon_sym_LF] = ACTIONS(4008), - [anon_sym_def] = ACTIONS(4006), - [anon_sym_export_DASHenv] = ACTIONS(4006), - [anon_sym_extern] = ACTIONS(4006), - [anon_sym_module] = ACTIONS(4006), - [anon_sym_use] = ACTIONS(4006), - [anon_sym_LBRACK] = ACTIONS(4006), - [anon_sym_LPAREN] = ACTIONS(4006), - [anon_sym_RPAREN] = ACTIONS(4006), - [anon_sym_DOLLAR] = ACTIONS(4006), - [anon_sym_error] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_DASH] = ACTIONS(4006), - [anon_sym_break] = ACTIONS(4006), - [anon_sym_continue] = ACTIONS(4006), - [anon_sym_for] = ACTIONS(4006), - [anon_sym_loop] = ACTIONS(4006), - [anon_sym_while] = ACTIONS(4006), - [anon_sym_do] = ACTIONS(4006), - [anon_sym_if] = ACTIONS(4006), - [anon_sym_match] = ACTIONS(4006), - [anon_sym_LBRACE] = ACTIONS(4006), - [anon_sym_RBRACE] = ACTIONS(4006), - [anon_sym_DOT_DOT] = ACTIONS(4006), - [anon_sym_try] = ACTIONS(4006), - [anon_sym_return] = ACTIONS(4006), - [anon_sym_source] = ACTIONS(4006), - [anon_sym_source_DASHenv] = ACTIONS(4006), - [anon_sym_register] = ACTIONS(4006), - [anon_sym_hide] = ACTIONS(4006), - [anon_sym_hide_DASHenv] = ACTIONS(4006), - [anon_sym_overlay] = ACTIONS(4006), - [anon_sym_as] = ACTIONS(4006), - [anon_sym_where] = ACTIONS(4006), - [anon_sym_not] = ACTIONS(4006), - [anon_sym_DOT] = ACTIONS(4012), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4006), - [anon_sym_DOT_DOT_LT] = ACTIONS(4006), - [anon_sym_null] = ACTIONS(4006), - [anon_sym_true] = ACTIONS(4006), - [anon_sym_false] = ACTIONS(4006), - [aux_sym__val_number_decimal_token1] = ACTIONS(4006), - [aux_sym__val_number_decimal_token2] = ACTIONS(4006), - [anon_sym_DOT2] = ACTIONS(4006), - [aux_sym__val_number_decimal_token3] = ACTIONS(4006), - [aux_sym__val_number_token1] = ACTIONS(4006), - [aux_sym__val_number_token2] = ACTIONS(4006), - [aux_sym__val_number_token3] = ACTIONS(4006), - [aux_sym__val_number_token4] = ACTIONS(4006), - [aux_sym__val_number_token5] = ACTIONS(4006), - [aux_sym__val_number_token6] = ACTIONS(4006), - [anon_sym_0b] = ACTIONS(4006), - [anon_sym_0o] = ACTIONS(4006), - [anon_sym_0x] = ACTIONS(4006), - [sym_val_date] = ACTIONS(4006), - [anon_sym_DQUOTE] = ACTIONS(4006), - [sym__str_single_quotes] = ACTIONS(4006), - [sym__str_back_ticks] = ACTIONS(4006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4006), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4006), - [anon_sym_CARET] = ACTIONS(4006), - [aux_sym_unquoted_token2] = ACTIONS(4012), - [anon_sym_POUND] = ACTIONS(113), + [1658] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5027), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(4543), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3722), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4755), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1658), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5117), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5119), + [anon_sym_DOT_DOT_LT] = ACTIONS(5119), + [anon_sym_null] = ACTIONS(5121), + [anon_sym_true] = ACTIONS(5123), + [anon_sym_false] = ACTIONS(5123), + [aux_sym__val_number_decimal_token1] = ACTIONS(5125), + [aux_sym__val_number_decimal_token2] = ACTIONS(5127), + [anon_sym_DOT2] = ACTIONS(5129), + [aux_sym__val_number_decimal_token3] = ACTIONS(5131), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5133), + [aux_sym__val_number_token5] = ACTIONS(5133), + [aux_sym__val_number_token6] = ACTIONS(5133), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5135), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), }, - [1446] = { - [sym__expression] = STATE(8061), - [sym_expr_unary] = STATE(6426), - [sym__expr_unary_minus] = STATE(6430), - [sym_expr_binary] = STATE(6426), - [sym__expr_binary_expression] = STATE(6804), - [sym_expr_parenthesized] = STATE(5808), - [sym_val_range] = STATE(7168), - [sym__val_range] = STATE(10601), - [sym__value] = STATE(6426), - [sym_val_nothing] = STATE(6590), - [sym_val_bool] = STATE(6343), - [sym_val_variable] = STATE(5935), - [sym__var] = STATE(5171), - [sym_val_number] = STATE(6590), - [sym__val_number_decimal] = STATE(4933), - [sym__val_number] = STATE(6519), - [sym_val_duration] = STATE(6590), - [sym_val_filesize] = STATE(6590), - [sym_val_binary] = STATE(6590), - [sym_val_string] = STATE(6590), - [sym__str_double_quotes] = STATE(6540), - [sym_val_interpolated] = STATE(6590), - [sym__inter_single_quotes] = STATE(6464), - [sym__inter_double_quotes] = STATE(6419), - [sym_val_list] = STATE(6590), - [sym_val_record] = STATE(6590), - [sym_val_table] = STATE(6590), - [sym_val_closure] = STATE(6590), - [sym_unquoted] = STATE(8062), - [sym__unquoted_anonymous_prefix] = STATE(11371), - [sym_comment] = STATE(1446), - [anon_sym_LBRACK] = ACTIONS(4051), - [anon_sym_LPAREN] = ACTIONS(2740), - [anon_sym_DOLLAR] = ACTIONS(2742), - [anon_sym_DASH] = ACTIONS(4053), - [anon_sym_LBRACE] = ACTIONS(4055), - [anon_sym_DOT_DOT] = ACTIONS(4057), - [anon_sym_not] = ACTIONS(4059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4061), - [anon_sym_DOT_DOT_LT] = ACTIONS(4061), - [anon_sym_null] = ACTIONS(4063), - [anon_sym_true] = ACTIONS(4065), - [anon_sym_false] = ACTIONS(4065), - [aux_sym__val_number_decimal_token1] = ACTIONS(4067), - [aux_sym__val_number_decimal_token2] = ACTIONS(4069), - [anon_sym_DOT2] = ACTIONS(4071), - [aux_sym__val_number_decimal_token3] = ACTIONS(4073), - [aux_sym__val_number_token1] = ACTIONS(2764), - [aux_sym__val_number_token2] = ACTIONS(2764), - [aux_sym__val_number_token3] = ACTIONS(2764), - [aux_sym__val_number_token4] = ACTIONS(4075), - [aux_sym__val_number_token5] = ACTIONS(4075), - [aux_sym__val_number_token6] = ACTIONS(4075), - [anon_sym_0b] = ACTIONS(2768), - [anon_sym_0o] = ACTIONS(2770), - [anon_sym_0x] = ACTIONS(2770), - [sym_val_date] = ACTIONS(4077), - [anon_sym_DQUOTE] = ACTIONS(4079), - [sym__str_single_quotes] = ACTIONS(4081), - [sym__str_back_ticks] = ACTIONS(4081), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2780), + [1659] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5028), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(4543), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3722), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4756), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1659), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5117), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5119), + [anon_sym_DOT_DOT_LT] = ACTIONS(5119), + [anon_sym_null] = ACTIONS(5121), + [anon_sym_true] = ACTIONS(5123), + [anon_sym_false] = ACTIONS(5123), + [aux_sym__val_number_decimal_token1] = ACTIONS(5125), + [aux_sym__val_number_decimal_token2] = ACTIONS(5127), + [anon_sym_DOT2] = ACTIONS(5129), + [aux_sym__val_number_decimal_token3] = ACTIONS(5131), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5133), + [aux_sym__val_number_token5] = ACTIONS(5133), + [aux_sym__val_number_token6] = ACTIONS(5133), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5135), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), [anon_sym_POUND] = ACTIONS(3), }, - [1447] = { - [sym_comment] = STATE(1447), - [anon_sym_export] = ACTIONS(1059), - [anon_sym_alias] = ACTIONS(1059), - [anon_sym_let] = ACTIONS(1059), - [anon_sym_let_DASHenv] = ACTIONS(1059), - [anon_sym_mut] = ACTIONS(1059), - [anon_sym_const] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [sym_cmd_identifier] = ACTIONS(1059), - [anon_sym_LF] = ACTIONS(1061), - [anon_sym_def] = ACTIONS(1059), - [anon_sym_export_DASHenv] = ACTIONS(1059), - [anon_sym_extern] = ACTIONS(1059), - [anon_sym_module] = ACTIONS(1059), - [anon_sym_use] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_error] = ACTIONS(1059), - [anon_sym_DASH_DASH] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_break] = ACTIONS(1059), - [anon_sym_continue] = ACTIONS(1059), - [anon_sym_for] = ACTIONS(1059), - [anon_sym_loop] = ACTIONS(1059), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_do] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1059), - [anon_sym_match] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(1059), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_try] = ACTIONS(1059), - [anon_sym_return] = ACTIONS(1059), - [anon_sym_source] = ACTIONS(1059), - [anon_sym_source_DASHenv] = ACTIONS(1059), - [anon_sym_register] = ACTIONS(1059), - [anon_sym_hide] = ACTIONS(1059), - [anon_sym_hide_DASHenv] = ACTIONS(1059), - [anon_sym_overlay] = ACTIONS(1059), - [anon_sym_as] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(1059), - [anon_sym_QMARK2] = ACTIONS(1059), - [anon_sym_not] = ACTIONS(1059), - [anon_sym_DOT] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1059), - [anon_sym_DOT_DOT_LT] = ACTIONS(1059), - [anon_sym_null] = ACTIONS(1059), - [anon_sym_true] = ACTIONS(1059), - [anon_sym_false] = ACTIONS(1059), - [aux_sym__val_number_decimal_token1] = ACTIONS(1059), - [aux_sym__val_number_decimal_token2] = ACTIONS(1059), - [anon_sym_DOT2] = ACTIONS(1059), - [aux_sym__val_number_decimal_token3] = ACTIONS(1059), - [aux_sym__val_number_token1] = ACTIONS(1059), - [aux_sym__val_number_token2] = ACTIONS(1059), - [aux_sym__val_number_token3] = ACTIONS(1059), - [aux_sym__val_number_token4] = ACTIONS(1059), - [aux_sym__val_number_token5] = ACTIONS(1059), - [aux_sym__val_number_token6] = ACTIONS(1059), - [anon_sym_0b] = ACTIONS(1059), - [anon_sym_0o] = ACTIONS(1059), - [anon_sym_0x] = ACTIONS(1059), - [sym_val_date] = ACTIONS(1059), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym__str_single_quotes] = ACTIONS(1059), - [sym__str_back_ticks] = ACTIONS(1059), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1059), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1059), - [anon_sym_CARET] = ACTIONS(1059), - [anon_sym_POUND] = ACTIONS(113), + [1660] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5029), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(4543), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3722), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4757), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1660), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5117), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5119), + [anon_sym_DOT_DOT_LT] = ACTIONS(5119), + [anon_sym_null] = ACTIONS(5121), + [anon_sym_true] = ACTIONS(5123), + [anon_sym_false] = ACTIONS(5123), + [aux_sym__val_number_decimal_token1] = ACTIONS(5125), + [aux_sym__val_number_decimal_token2] = ACTIONS(5127), + [anon_sym_DOT2] = ACTIONS(5129), + [aux_sym__val_number_decimal_token3] = ACTIONS(5131), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5133), + [aux_sym__val_number_token5] = ACTIONS(5133), + [aux_sym__val_number_token6] = ACTIONS(5133), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5135), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), }, - [1448] = { - [sym_path] = STATE(1795), - [sym_comment] = STATE(1448), - [aux_sym_cell_path_repeat1] = STATE(1465), - [anon_sym_export] = ACTIONS(987), - [anon_sym_alias] = ACTIONS(987), - [anon_sym_let] = ACTIONS(987), - [anon_sym_let_DASHenv] = ACTIONS(987), - [anon_sym_mut] = ACTIONS(987), - [anon_sym_const] = ACTIONS(987), - [anon_sym_SEMI] = ACTIONS(987), - [sym_cmd_identifier] = ACTIONS(987), - [anon_sym_LF] = ACTIONS(989), - [anon_sym_def] = ACTIONS(987), - [anon_sym_export_DASHenv] = ACTIONS(987), - [anon_sym_extern] = ACTIONS(987), - [anon_sym_module] = ACTIONS(987), - [anon_sym_use] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(987), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_RPAREN] = ACTIONS(987), - [anon_sym_DOLLAR] = ACTIONS(987), - [anon_sym_error] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_break] = ACTIONS(987), - [anon_sym_continue] = ACTIONS(987), - [anon_sym_for] = ACTIONS(987), - [anon_sym_loop] = ACTIONS(987), - [anon_sym_while] = ACTIONS(987), - [anon_sym_do] = ACTIONS(987), - [anon_sym_if] = ACTIONS(987), - [anon_sym_match] = ACTIONS(987), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_RBRACE] = ACTIONS(987), - [anon_sym_DOT_DOT] = ACTIONS(987), - [anon_sym_try] = ACTIONS(987), - [anon_sym_return] = ACTIONS(987), - [anon_sym_source] = ACTIONS(987), - [anon_sym_source_DASHenv] = ACTIONS(987), - [anon_sym_register] = ACTIONS(987), - [anon_sym_hide] = ACTIONS(987), - [anon_sym_hide_DASHenv] = ACTIONS(987), - [anon_sym_overlay] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(987), - [anon_sym_where] = ACTIONS(987), - [anon_sym_not] = ACTIONS(987), - [anon_sym_DOT] = ACTIONS(4083), - [anon_sym_DOT_DOT_EQ] = ACTIONS(987), - [anon_sym_DOT_DOT_LT] = ACTIONS(987), - [anon_sym_null] = ACTIONS(987), - [anon_sym_true] = ACTIONS(987), - [anon_sym_false] = ACTIONS(987), - [aux_sym__val_number_decimal_token1] = ACTIONS(987), - [aux_sym__val_number_decimal_token2] = ACTIONS(987), - [anon_sym_DOT2] = ACTIONS(987), - [aux_sym__val_number_decimal_token3] = ACTIONS(987), - [aux_sym__val_number_token1] = ACTIONS(987), - [aux_sym__val_number_token2] = ACTIONS(987), - [aux_sym__val_number_token3] = ACTIONS(987), - [aux_sym__val_number_token4] = ACTIONS(987), - [aux_sym__val_number_token5] = ACTIONS(987), - [aux_sym__val_number_token6] = ACTIONS(987), - [anon_sym_0b] = ACTIONS(987), - [anon_sym_0o] = ACTIONS(987), - [anon_sym_0x] = ACTIONS(987), - [sym_val_date] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(987), - [sym__str_single_quotes] = ACTIONS(987), - [sym__str_back_ticks] = ACTIONS(987), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(987), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_POUND] = ACTIONS(113), + [1661] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5030), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(4543), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3722), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4758), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1661), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5117), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5119), + [anon_sym_DOT_DOT_LT] = ACTIONS(5119), + [anon_sym_null] = ACTIONS(5121), + [anon_sym_true] = ACTIONS(5123), + [anon_sym_false] = ACTIONS(5123), + [aux_sym__val_number_decimal_token1] = ACTIONS(5125), + [aux_sym__val_number_decimal_token2] = ACTIONS(5127), + [anon_sym_DOT2] = ACTIONS(5129), + [aux_sym__val_number_decimal_token3] = ACTIONS(5131), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5133), + [aux_sym__val_number_token5] = ACTIONS(5133), + [aux_sym__val_number_token6] = ACTIONS(5133), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5135), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), }, - [1449] = { - [sym_comment] = STATE(1449), - [ts_builtin_sym_end] = ACTIONS(961), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_PIPE] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH_DASH] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(959), - [anon_sym_PLUS_PLUS] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(959), - [anon_sym_SLASH_SLASH] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(959), - [anon_sym_bit_DASHshr] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(959), - [anon_sym_BANG_EQ] = ACTIONS(959), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(959), - [anon_sym_GT_EQ] = ACTIONS(959), - [anon_sym_not_DASHin] = ACTIONS(959), - [anon_sym_starts_DASHwith] = ACTIONS(959), - [anon_sym_ends_DASHwith] = ACTIONS(959), - [anon_sym_EQ_TILDE] = ACTIONS(959), - [anon_sym_BANG_TILDE] = ACTIONS(959), - [anon_sym_bit_DASHand] = ACTIONS(959), - [anon_sym_bit_DASHxor] = ACTIONS(959), - [anon_sym_bit_DASHor] = ACTIONS(959), - [anon_sym_and] = ACTIONS(959), - [anon_sym_xor] = ACTIONS(959), - [anon_sym_or] = ACTIONS(959), - [anon_sym_not] = ACTIONS(959), - [anon_sym_DOT_DOT2] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4087), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_DOT_DOT_LT] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4089), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4089), - [anon_sym_null] = ACTIONS(959), - [anon_sym_true] = ACTIONS(959), - [anon_sym_false] = ACTIONS(959), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(959), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(959), - [aux_sym__val_number_token1] = ACTIONS(959), - [aux_sym__val_number_token2] = ACTIONS(959), - [aux_sym__val_number_token3] = ACTIONS(959), - [aux_sym__val_number_token4] = ACTIONS(959), - [aux_sym__val_number_token5] = ACTIONS(959), - [aux_sym__val_number_token6] = ACTIONS(959), - [anon_sym_0b] = ACTIONS(959), - [sym_filesize_unit] = ACTIONS(4091), - [sym_duration_unit] = ACTIONS(4093), - [anon_sym_0o] = ACTIONS(959), - [anon_sym_0x] = ACTIONS(959), - [sym_val_date] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [sym__str_single_quotes] = ACTIONS(959), - [sym__str_back_ticks] = ACTIONS(959), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(959), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(959), - [aux_sym_unquoted_token5] = ACTIONS(4095), - [anon_sym_POUND] = ACTIONS(113), + [1662] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5031), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(4543), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3722), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4759), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1662), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5117), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5119), + [anon_sym_DOT_DOT_LT] = ACTIONS(5119), + [anon_sym_null] = ACTIONS(5121), + [anon_sym_true] = ACTIONS(5123), + [anon_sym_false] = ACTIONS(5123), + [aux_sym__val_number_decimal_token1] = ACTIONS(5125), + [aux_sym__val_number_decimal_token2] = ACTIONS(5127), + [anon_sym_DOT2] = ACTIONS(5129), + [aux_sym__val_number_decimal_token3] = ACTIONS(5131), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5133), + [aux_sym__val_number_token5] = ACTIONS(5133), + [aux_sym__val_number_token6] = ACTIONS(5133), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5135), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), }, - [1450] = { - [sym__expression] = STATE(5430), - [sym_expr_unary] = STATE(3111), - [sym__expr_unary_minus] = STATE(3093), - [sym_expr_binary] = STATE(3111), - [sym__expr_binary_expression] = STATE(6806), - [sym_expr_parenthesized] = STATE(2765), - [sym_val_range] = STATE(5252), - [sym__val_range] = STATE(10669), - [sym__value] = STATE(3111), - [sym_val_nothing] = STATE(3125), - [sym_val_bool] = STATE(2990), - [sym_val_variable] = STATE(2717), - [sym__var] = STATE(1652), - [sym_val_number] = STATE(3125), - [sym__val_number_decimal] = STATE(1449), - [sym__val_number] = STATE(3113), - [sym_val_duration] = STATE(3125), - [sym_val_filesize] = STATE(3125), - [sym_val_binary] = STATE(3125), - [sym_val_string] = STATE(3125), - [sym__str_double_quotes] = STATE(3110), - [sym_val_interpolated] = STATE(3125), - [sym__inter_single_quotes] = STATE(3069), - [sym__inter_double_quotes] = STATE(3071), - [sym_val_list] = STATE(3125), - [sym_val_record] = STATE(3125), - [sym_val_table] = STATE(3125), - [sym_val_closure] = STATE(3125), - [sym_unquoted] = STATE(5436), - [sym__unquoted_anonymous_prefix] = STATE(11190), - [sym_comment] = STATE(1450), - [anon_sym_LBRACK] = ACTIONS(4097), - [anon_sym_LPAREN] = ACTIONS(4099), - [anon_sym_DOLLAR] = ACTIONS(4101), - [anon_sym_DASH] = ACTIONS(4103), - [anon_sym_LBRACE] = ACTIONS(4105), - [anon_sym_DOT_DOT] = ACTIONS(4107), - [anon_sym_not] = ACTIONS(4109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4111), - [anon_sym_DOT_DOT_LT] = ACTIONS(4111), - [anon_sym_null] = ACTIONS(4113), - [anon_sym_true] = ACTIONS(4115), - [anon_sym_false] = ACTIONS(4115), - [aux_sym__val_number_decimal_token1] = ACTIONS(4117), - [aux_sym__val_number_decimal_token2] = ACTIONS(4119), - [anon_sym_DOT2] = ACTIONS(4121), - [aux_sym__val_number_decimal_token3] = ACTIONS(4123), - [aux_sym__val_number_token1] = ACTIONS(4125), - [aux_sym__val_number_token2] = ACTIONS(4125), - [aux_sym__val_number_token3] = ACTIONS(4125), - [aux_sym__val_number_token4] = ACTIONS(4127), - [aux_sym__val_number_token5] = ACTIONS(4127), - [aux_sym__val_number_token6] = ACTIONS(4127), - [anon_sym_0b] = ACTIONS(4129), - [anon_sym_0o] = ACTIONS(4131), - [anon_sym_0x] = ACTIONS(4131), - [sym_val_date] = ACTIONS(4133), - [anon_sym_DQUOTE] = ACTIONS(4135), - [sym__str_single_quotes] = ACTIONS(4137), - [sym__str_back_ticks] = ACTIONS(4137), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4139), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4141), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(4143), + [1663] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5032), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(4543), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3722), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4760), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1663), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5117), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5119), + [anon_sym_DOT_DOT_LT] = ACTIONS(5119), + [anon_sym_null] = ACTIONS(5121), + [anon_sym_true] = ACTIONS(5123), + [anon_sym_false] = ACTIONS(5123), + [aux_sym__val_number_decimal_token1] = ACTIONS(5125), + [aux_sym__val_number_decimal_token2] = ACTIONS(5127), + [anon_sym_DOT2] = ACTIONS(5129), + [aux_sym__val_number_decimal_token3] = ACTIONS(5131), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5133), + [aux_sym__val_number_token5] = ACTIONS(5133), + [aux_sym__val_number_token6] = ACTIONS(5133), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5135), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), [anon_sym_POUND] = ACTIONS(3), }, - [1451] = { - [sym_comment] = STATE(1451), - [ts_builtin_sym_end] = ACTIONS(3876), - [anon_sym_export] = ACTIONS(3874), - [anon_sym_alias] = ACTIONS(3874), - [anon_sym_let] = ACTIONS(3874), - [anon_sym_let_DASHenv] = ACTIONS(3874), - [anon_sym_mut] = ACTIONS(3874), - [anon_sym_const] = ACTIONS(3874), - [anon_sym_SEMI] = ACTIONS(3874), - [sym_cmd_identifier] = ACTIONS(3874), - [anon_sym_LF] = ACTIONS(3876), - [anon_sym_def] = ACTIONS(3874), - [anon_sym_export_DASHenv] = ACTIONS(3874), - [anon_sym_extern] = ACTIONS(3874), - [anon_sym_module] = ACTIONS(3874), - [anon_sym_use] = ACTIONS(3874), - [anon_sym_LBRACK] = ACTIONS(3874), - [anon_sym_LPAREN] = ACTIONS(3874), - [anon_sym_DOLLAR] = ACTIONS(3874), - [anon_sym_error] = ACTIONS(3874), - [anon_sym_DASH_DASH] = ACTIONS(3874), - [anon_sym_DASH] = ACTIONS(3874), - [anon_sym_break] = ACTIONS(3874), - [anon_sym_continue] = ACTIONS(3874), - [anon_sym_for] = ACTIONS(3874), - [anon_sym_loop] = ACTIONS(3874), - [anon_sym_while] = ACTIONS(3874), - [anon_sym_do] = ACTIONS(3874), - [anon_sym_if] = ACTIONS(3874), - [anon_sym_match] = ACTIONS(3874), - [anon_sym_LBRACE] = ACTIONS(3874), - [anon_sym_DOT_DOT] = ACTIONS(3874), - [anon_sym_try] = ACTIONS(3874), - [anon_sym_return] = ACTIONS(3874), - [anon_sym_source] = ACTIONS(3874), - [anon_sym_source_DASHenv] = ACTIONS(3874), - [anon_sym_register] = ACTIONS(3874), - [anon_sym_hide] = ACTIONS(3874), - [anon_sym_hide_DASHenv] = ACTIONS(3874), - [anon_sym_overlay] = ACTIONS(3874), - [anon_sym_as] = ACTIONS(3874), - [anon_sym_where] = ACTIONS(3874), - [anon_sym_not] = ACTIONS(3874), - [anon_sym_LPAREN2] = ACTIONS(3878), - [anon_sym_DOT] = ACTIONS(2006), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3874), - [anon_sym_DOT_DOT_LT] = ACTIONS(3874), - [anon_sym_null] = ACTIONS(3874), - [anon_sym_true] = ACTIONS(3874), - [anon_sym_false] = ACTIONS(3874), - [aux_sym__val_number_decimal_token1] = ACTIONS(3874), - [aux_sym__val_number_decimal_token2] = ACTIONS(3874), - [anon_sym_DOT2] = ACTIONS(3874), - [aux_sym__val_number_decimal_token3] = ACTIONS(3874), - [aux_sym__val_number_token1] = ACTIONS(3874), - [aux_sym__val_number_token2] = ACTIONS(3874), - [aux_sym__val_number_token3] = ACTIONS(3874), - [aux_sym__val_number_token4] = ACTIONS(3874), - [aux_sym__val_number_token5] = ACTIONS(3874), - [aux_sym__val_number_token6] = ACTIONS(3874), - [anon_sym_0b] = ACTIONS(3874), - [anon_sym_0o] = ACTIONS(3874), - [anon_sym_0x] = ACTIONS(3874), - [sym_val_date] = ACTIONS(3874), - [anon_sym_DQUOTE] = ACTIONS(3874), - [sym__str_single_quotes] = ACTIONS(3874), - [sym__str_back_ticks] = ACTIONS(3874), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3874), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3874), - [anon_sym_CARET] = ACTIONS(3874), - [aux_sym_unquoted_token2] = ACTIONS(2006), - [anon_sym_POUND] = ACTIONS(113), + [1664] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5033), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(4543), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3722), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4761), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1664), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5117), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5119), + [anon_sym_DOT_DOT_LT] = ACTIONS(5119), + [anon_sym_null] = ACTIONS(5121), + [anon_sym_true] = ACTIONS(5123), + [anon_sym_false] = ACTIONS(5123), + [aux_sym__val_number_decimal_token1] = ACTIONS(5125), + [aux_sym__val_number_decimal_token2] = ACTIONS(5127), + [anon_sym_DOT2] = ACTIONS(5129), + [aux_sym__val_number_decimal_token3] = ACTIONS(5131), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5133), + [aux_sym__val_number_token5] = ACTIONS(5133), + [aux_sym__val_number_token6] = ACTIONS(5133), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5135), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), }, - [1452] = { - [sym_comment] = STATE(1452), - [ts_builtin_sym_end] = ACTIONS(4008), - [anon_sym_export] = ACTIONS(4006), - [anon_sym_alias] = ACTIONS(4006), - [anon_sym_let] = ACTIONS(4006), - [anon_sym_let_DASHenv] = ACTIONS(4006), - [anon_sym_mut] = ACTIONS(4006), - [anon_sym_const] = ACTIONS(4006), - [anon_sym_SEMI] = ACTIONS(4006), - [sym_cmd_identifier] = ACTIONS(4006), - [anon_sym_LF] = ACTIONS(4008), - [anon_sym_def] = ACTIONS(4006), - [anon_sym_export_DASHenv] = ACTIONS(4006), - [anon_sym_extern] = ACTIONS(4006), - [anon_sym_module] = ACTIONS(4006), - [anon_sym_use] = ACTIONS(4006), - [anon_sym_LBRACK] = ACTIONS(4006), - [anon_sym_LPAREN] = ACTIONS(4006), - [anon_sym_DOLLAR] = ACTIONS(4006), - [anon_sym_error] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_DASH] = ACTIONS(4006), - [anon_sym_break] = ACTIONS(4006), - [anon_sym_continue] = ACTIONS(4006), - [anon_sym_for] = ACTIONS(4006), - [anon_sym_loop] = ACTIONS(4006), - [anon_sym_while] = ACTIONS(4006), - [anon_sym_do] = ACTIONS(4006), - [anon_sym_if] = ACTIONS(4006), - [anon_sym_match] = ACTIONS(4006), - [anon_sym_LBRACE] = ACTIONS(4006), - [anon_sym_DOT_DOT] = ACTIONS(4006), - [anon_sym_try] = ACTIONS(4006), - [anon_sym_return] = ACTIONS(4006), - [anon_sym_source] = ACTIONS(4006), - [anon_sym_source_DASHenv] = ACTIONS(4006), - [anon_sym_register] = ACTIONS(4006), - [anon_sym_hide] = ACTIONS(4006), - [anon_sym_hide_DASHenv] = ACTIONS(4006), - [anon_sym_overlay] = ACTIONS(4006), - [anon_sym_as] = ACTIONS(4006), - [anon_sym_where] = ACTIONS(4006), - [anon_sym_not] = ACTIONS(4006), - [anon_sym_LPAREN2] = ACTIONS(4010), - [anon_sym_DOT] = ACTIONS(4012), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4006), - [anon_sym_DOT_DOT_LT] = ACTIONS(4006), - [anon_sym_null] = ACTIONS(4006), - [anon_sym_true] = ACTIONS(4006), - [anon_sym_false] = ACTIONS(4006), - [aux_sym__val_number_decimal_token1] = ACTIONS(4006), - [aux_sym__val_number_decimal_token2] = ACTIONS(4006), - [anon_sym_DOT2] = ACTIONS(4006), - [aux_sym__val_number_decimal_token3] = ACTIONS(4006), - [aux_sym__val_number_token1] = ACTIONS(4006), - [aux_sym__val_number_token2] = ACTIONS(4006), - [aux_sym__val_number_token3] = ACTIONS(4006), - [aux_sym__val_number_token4] = ACTIONS(4006), - [aux_sym__val_number_token5] = ACTIONS(4006), - [aux_sym__val_number_token6] = ACTIONS(4006), - [anon_sym_0b] = ACTIONS(4006), - [anon_sym_0o] = ACTIONS(4006), - [anon_sym_0x] = ACTIONS(4006), - [sym_val_date] = ACTIONS(4006), - [anon_sym_DQUOTE] = ACTIONS(4006), - [sym__str_single_quotes] = ACTIONS(4006), - [sym__str_back_ticks] = ACTIONS(4006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4006), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4006), - [anon_sym_CARET] = ACTIONS(4006), - [aux_sym_unquoted_token2] = ACTIONS(4012), + [1665] = { + [sym_comment] = STATE(1665), + [anon_sym_export] = ACTIONS(5137), + [anon_sym_alias] = ACTIONS(5137), + [anon_sym_let] = ACTIONS(5137), + [anon_sym_let_DASHenv] = ACTIONS(5137), + [anon_sym_mut] = ACTIONS(5137), + [anon_sym_const] = ACTIONS(5137), + [anon_sym_SEMI] = ACTIONS(5137), + [sym_cmd_identifier] = ACTIONS(5137), + [anon_sym_LF] = ACTIONS(5139), + [anon_sym_def] = ACTIONS(5137), + [anon_sym_export_DASHenv] = ACTIONS(5137), + [anon_sym_extern] = ACTIONS(5137), + [anon_sym_module] = ACTIONS(5137), + [anon_sym_use] = ACTIONS(5137), + [anon_sym_LBRACK] = ACTIONS(5137), + [anon_sym_LPAREN] = ACTIONS(5137), + [anon_sym_RPAREN] = ACTIONS(5137), + [anon_sym_DOLLAR] = ACTIONS(5137), + [anon_sym_error] = ACTIONS(5137), + [anon_sym_DASH_DASH] = ACTIONS(5137), + [anon_sym_DASH] = ACTIONS(5137), + [anon_sym_break] = ACTIONS(5137), + [anon_sym_continue] = ACTIONS(5137), + [anon_sym_for] = ACTIONS(5137), + [anon_sym_loop] = ACTIONS(5137), + [anon_sym_while] = ACTIONS(5137), + [anon_sym_do] = ACTIONS(5137), + [anon_sym_if] = ACTIONS(5137), + [anon_sym_match] = ACTIONS(5137), + [anon_sym_LBRACE] = ACTIONS(5137), + [anon_sym_RBRACE] = ACTIONS(5137), + [anon_sym_DOT_DOT] = ACTIONS(5137), + [anon_sym_try] = ACTIONS(5137), + [anon_sym_return] = ACTIONS(5137), + [anon_sym_source] = ACTIONS(5137), + [anon_sym_source_DASHenv] = ACTIONS(5137), + [anon_sym_register] = ACTIONS(5137), + [anon_sym_hide] = ACTIONS(5137), + [anon_sym_hide_DASHenv] = ACTIONS(5137), + [anon_sym_overlay] = ACTIONS(5137), + [anon_sym_as] = ACTIONS(5137), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_not] = ACTIONS(5137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5137), + [anon_sym_DOT_DOT_LT] = ACTIONS(5137), + [anon_sym_null] = ACTIONS(5137), + [anon_sym_true] = ACTIONS(5137), + [anon_sym_false] = ACTIONS(5137), + [aux_sym__val_number_decimal_token1] = ACTIONS(5137), + [aux_sym__val_number_decimal_token2] = ACTIONS(5137), + [anon_sym_DOT2] = ACTIONS(5137), + [aux_sym__val_number_decimal_token3] = ACTIONS(5137), + [aux_sym__val_number_token1] = ACTIONS(5137), + [aux_sym__val_number_token2] = ACTIONS(5137), + [aux_sym__val_number_token3] = ACTIONS(5137), + [aux_sym__val_number_token4] = ACTIONS(5137), + [aux_sym__val_number_token5] = ACTIONS(5137), + [aux_sym__val_number_token6] = ACTIONS(5137), + [anon_sym_0b] = ACTIONS(5137), + [anon_sym_0o] = ACTIONS(5137), + [anon_sym_0x] = ACTIONS(5137), + [sym_val_date] = ACTIONS(5137), + [anon_sym_DQUOTE] = ACTIONS(5137), + [sym__str_single_quotes] = ACTIONS(5137), + [sym__str_back_ticks] = ACTIONS(5137), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5137), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5137), + [anon_sym_CARET] = ACTIONS(5137), [anon_sym_POUND] = ACTIONS(113), }, - [1453] = { - [sym__expression] = STATE(9484), - [sym_expr_unary] = STATE(5022), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(5022), - [sym__expr_binary_expression] = STATE(6807), - [sym_expr_parenthesized] = STATE(6201), - [sym_val_range] = STATE(7168), - [sym__val_range] = STATE(10610), - [sym__value] = STATE(5022), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(6448), - [sym_val_variable] = STATE(5961), - [sym__var] = STATE(5281), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(5018), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(9485), - [sym__unquoted_anonymous_prefix] = STATE(11188), - [sym_comment] = STATE(1453), - [anon_sym_LBRACK] = ACTIONS(4145), - [anon_sym_LPAREN] = ACTIONS(4147), - [anon_sym_DOLLAR] = ACTIONS(4149), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(4153), - [anon_sym_DOT_DOT] = ACTIONS(4155), - [anon_sym_not] = ACTIONS(4157), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4159), - [anon_sym_DOT_DOT_LT] = ACTIONS(4159), - [anon_sym_null] = ACTIONS(4161), - [anon_sym_true] = ACTIONS(4163), - [anon_sym_false] = ACTIONS(4163), - [aux_sym__val_number_decimal_token1] = ACTIONS(4165), - [aux_sym__val_number_decimal_token2] = ACTIONS(4167), - [anon_sym_DOT2] = ACTIONS(4169), - [aux_sym__val_number_decimal_token3] = ACTIONS(4171), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(4175), - [aux_sym__val_number_token5] = ACTIONS(4175), - [aux_sym__val_number_token6] = ACTIONS(4175), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(4181), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2901), + [1666] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6355), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6234), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4982), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5856), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1666), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(5035), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4787), + [anon_sym_DOT_DOT_LT] = ACTIONS(4787), + [anon_sym_null] = ACTIONS(3669), + [anon_sym_true] = ACTIONS(3671), + [anon_sym_false] = ACTIONS(3671), + [aux_sym__val_number_decimal_token1] = ACTIONS(3673), + [aux_sym__val_number_decimal_token2] = ACTIONS(3675), + [anon_sym_DOT2] = ACTIONS(5037), + [aux_sym__val_number_decimal_token3] = ACTIONS(3679), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(3681), + [aux_sym__val_number_token5] = ACTIONS(3681), + [aux_sym__val_number_token6] = ACTIONS(3681), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(3683), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), [anon_sym_POUND] = ACTIONS(3), }, - [1454] = { - [sym__immediate_decimal] = STATE(10460), - [sym_comment] = STATE(1454), - [anon_sym_SEMI] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(936), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_RBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_STAR_STAR] = ACTIONS(936), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(936), - [anon_sym_SLASH_SLASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(936), - [anon_sym_bit_DASHshr] = ACTIONS(936), - [anon_sym_EQ_EQ] = ACTIONS(936), - [anon_sym_BANG_EQ] = ACTIONS(936), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(936), - [anon_sym_GT_EQ] = ACTIONS(936), - [anon_sym_not_DASHin] = ACTIONS(936), - [anon_sym_starts_DASHwith] = ACTIONS(936), - [anon_sym_ends_DASHwith] = ACTIONS(936), - [anon_sym_EQ_TILDE] = ACTIONS(936), - [anon_sym_BANG_TILDE] = ACTIONS(936), - [anon_sym_bit_DASHand] = ACTIONS(936), - [anon_sym_bit_DASHxor] = ACTIONS(936), - [anon_sym_bit_DASHor] = ACTIONS(936), - [anon_sym_and] = ACTIONS(936), - [anon_sym_xor] = ACTIONS(936), - [anon_sym_or] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [aux_sym__immediate_decimal_token1] = ACTIONS(1045), - [aux_sym__immediate_decimal_token3] = ACTIONS(1045), - [aux_sym__immediate_decimal_token4] = ACTIONS(1047), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [aux_sym_unquoted_token4] = ACTIONS(3862), + [1667] = { + [sym_comment] = STATE(1667), + [anon_sym_export] = ACTIONS(4196), + [anon_sym_alias] = ACTIONS(4196), + [anon_sym_let] = ACTIONS(4196), + [anon_sym_let_DASHenv] = ACTIONS(4196), + [anon_sym_mut] = ACTIONS(4196), + [anon_sym_const] = ACTIONS(4196), + [anon_sym_SEMI] = ACTIONS(4196), + [sym_cmd_identifier] = ACTIONS(4196), + [anon_sym_LF] = ACTIONS(4198), + [anon_sym_def] = ACTIONS(4196), + [anon_sym_export_DASHenv] = ACTIONS(4196), + [anon_sym_extern] = ACTIONS(4196), + [anon_sym_module] = ACTIONS(4196), + [anon_sym_use] = ACTIONS(4196), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_RPAREN] = ACTIONS(4196), + [anon_sym_DOLLAR] = ACTIONS(4196), + [anon_sym_error] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_break] = ACTIONS(4196), + [anon_sym_continue] = ACTIONS(4196), + [anon_sym_for] = ACTIONS(4196), + [anon_sym_loop] = ACTIONS(4196), + [anon_sym_while] = ACTIONS(4196), + [anon_sym_do] = ACTIONS(4196), + [anon_sym_if] = ACTIONS(4196), + [anon_sym_match] = ACTIONS(4196), + [anon_sym_LBRACE] = ACTIONS(4196), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_try] = ACTIONS(4196), + [anon_sym_return] = ACTIONS(4196), + [anon_sym_source] = ACTIONS(4196), + [anon_sym_source_DASHenv] = ACTIONS(4196), + [anon_sym_register] = ACTIONS(4196), + [anon_sym_hide] = ACTIONS(4196), + [anon_sym_hide_DASHenv] = ACTIONS(4196), + [anon_sym_overlay] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_where] = ACTIONS(4196), + [anon_sym_not] = ACTIONS(4196), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4196), + [anon_sym_DOT_DOT_LT] = ACTIONS(4196), + [anon_sym_null] = ACTIONS(4196), + [anon_sym_true] = ACTIONS(4196), + [anon_sym_false] = ACTIONS(4196), + [aux_sym__val_number_decimal_token1] = ACTIONS(4196), + [aux_sym__val_number_decimal_token2] = ACTIONS(4196), + [anon_sym_DOT2] = ACTIONS(4196), + [aux_sym__val_number_decimal_token3] = ACTIONS(4196), + [aux_sym__val_number_token1] = ACTIONS(4196), + [aux_sym__val_number_token2] = ACTIONS(4196), + [aux_sym__val_number_token3] = ACTIONS(4196), + [aux_sym__val_number_token4] = ACTIONS(4196), + [aux_sym__val_number_token5] = ACTIONS(4196), + [aux_sym__val_number_token6] = ACTIONS(4196), + [anon_sym_0b] = ACTIONS(4196), + [anon_sym_0o] = ACTIONS(4196), + [anon_sym_0x] = ACTIONS(4196), + [sym_val_date] = ACTIONS(4196), + [anon_sym_DQUOTE] = ACTIONS(4196), + [sym__str_single_quotes] = ACTIONS(4196), + [sym__str_back_ticks] = ACTIONS(4196), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4196), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4196), + [anon_sym_CARET] = ACTIONS(4196), [anon_sym_POUND] = ACTIONS(113), }, - [1455] = { - [sym_cell_path] = STATE(2518), - [sym_path] = STATE(1457), - [sym_comment] = STATE(1455), - [anon_sym_LBRACK] = ACTIONS(1012), - [anon_sym_COMMA] = ACTIONS(1012), - [anon_sym_RBRACK] = ACTIONS(1012), - [anon_sym_LPAREN] = ACTIONS(1012), - [anon_sym_DOLLAR] = ACTIONS(1012), - [anon_sym_GT] = ACTIONS(1010), - [anon_sym_DASH_DASH] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_in] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_DOT_DOT] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1010), - [anon_sym_STAR_STAR] = ACTIONS(1012), - [anon_sym_PLUS_PLUS] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1010), - [anon_sym_mod] = ACTIONS(1012), - [anon_sym_SLASH_SLASH] = ACTIONS(1012), - [anon_sym_PLUS] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1012), - [anon_sym_bit_DASHshr] = ACTIONS(1012), - [anon_sym_EQ_EQ] = ACTIONS(1012), - [anon_sym_BANG_EQ] = ACTIONS(1012), - [anon_sym_LT2] = ACTIONS(1010), - [anon_sym_LT_EQ] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1012), - [anon_sym_not_DASHin] = ACTIONS(1012), - [anon_sym_starts_DASHwith] = ACTIONS(1012), - [anon_sym_ends_DASHwith] = ACTIONS(1012), - [anon_sym_EQ_TILDE] = ACTIONS(1012), - [anon_sym_BANG_TILDE] = ACTIONS(1012), - [anon_sym_bit_DASHand] = ACTIONS(1012), - [anon_sym_bit_DASHxor] = ACTIONS(1012), - [anon_sym_bit_DASHor] = ACTIONS(1012), - [anon_sym_and] = ACTIONS(1012), - [anon_sym_xor] = ACTIONS(1012), - [anon_sym_or] = ACTIONS(1012), - [anon_sym_DOT] = ACTIONS(4191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1012), - [anon_sym_DOT_DOT_LT] = ACTIONS(1012), - [anon_sym_null] = ACTIONS(1012), - [anon_sym_true] = ACTIONS(1012), - [anon_sym_false] = ACTIONS(1012), - [aux_sym__val_number_decimal_token1] = ACTIONS(1010), - [aux_sym__val_number_decimal_token2] = ACTIONS(1012), - [anon_sym_DOT2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = 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(1010), - [anon_sym_0o] = ACTIONS(1010), - [anon_sym_0x] = ACTIONS(1010), - [sym_val_date] = ACTIONS(1012), - [anon_sym_DQUOTE] = ACTIONS(1012), - [sym__str_single_quotes] = ACTIONS(1012), - [sym__str_back_ticks] = ACTIONS(1012), - [anon_sym_err_GT] = ACTIONS(1012), - [anon_sym_out_GT] = ACTIONS(1012), - [anon_sym_e_GT] = ACTIONS(1012), - [anon_sym_o_GT] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT] = ACTIONS(1012), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1010), + [1668] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6352), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6234), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4982), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5534), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1668), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(5035), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4787), + [anon_sym_DOT_DOT_LT] = ACTIONS(4787), + [anon_sym_null] = ACTIONS(3669), + [anon_sym_true] = ACTIONS(3671), + [anon_sym_false] = ACTIONS(3671), + [aux_sym__val_number_decimal_token1] = ACTIONS(3673), + [aux_sym__val_number_decimal_token2] = ACTIONS(3675), + [anon_sym_DOT2] = ACTIONS(5037), + [aux_sym__val_number_decimal_token3] = ACTIONS(3679), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(3681), + [aux_sym__val_number_token5] = ACTIONS(3681), + [aux_sym__val_number_token6] = ACTIONS(3681), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(3683), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), [anon_sym_POUND] = ACTIONS(3), }, - [1456] = { - [sym__expression] = STATE(4987), - [sym_expr_unary] = STATE(2986), - [sym__expr_unary_minus] = STATE(2950), - [sym_expr_binary] = STATE(2986), - [sym__expr_binary_expression] = STATE(6808), - [sym_expr_parenthesized] = STATE(2625), - [sym_val_range] = STATE(5190), - [sym__val_range] = STATE(10682), - [sym__value] = STATE(2986), - [sym_val_nothing] = STATE(2964), - [sym_val_bool] = STATE(2946), - [sym_val_variable] = STATE(2422), - [sym__var] = STATE(1541), - [sym_val_number] = STATE(2964), - [sym__val_number_decimal] = STATE(1393), - [sym__val_number] = STATE(2999), - [sym_val_duration] = STATE(2964), - [sym_val_filesize] = STATE(2964), - [sym_val_binary] = STATE(2964), - [sym_val_string] = STATE(2964), - [sym__str_double_quotes] = STATE(2965), - [sym_val_interpolated] = STATE(2964), - [sym__inter_single_quotes] = STATE(3028), - [sym__inter_double_quotes] = STATE(2984), - [sym_val_list] = STATE(2964), - [sym_val_record] = STATE(2964), - [sym_val_table] = STATE(2964), - [sym_val_closure] = STATE(2964), - [sym_unquoted] = STATE(5075), - [sym__unquoted_anonymous_prefix] = STATE(10853), - [sym_comment] = STATE(1456), - [anon_sym_LBRACK] = ACTIONS(4193), - [anon_sym_LPAREN] = ACTIONS(4195), - [anon_sym_DOLLAR] = ACTIONS(4197), - [anon_sym_DASH] = ACTIONS(4199), - [anon_sym_LBRACE] = ACTIONS(4201), - [anon_sym_DOT_DOT] = ACTIONS(4203), - [anon_sym_not] = ACTIONS(4205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4207), - [anon_sym_DOT_DOT_LT] = ACTIONS(4207), - [anon_sym_null] = ACTIONS(4209), - [anon_sym_true] = ACTIONS(4211), - [anon_sym_false] = ACTIONS(4211), - [aux_sym__val_number_decimal_token1] = ACTIONS(4213), - [aux_sym__val_number_decimal_token2] = ACTIONS(4215), - [anon_sym_DOT2] = ACTIONS(4217), - [aux_sym__val_number_decimal_token3] = ACTIONS(4219), - [aux_sym__val_number_token1] = ACTIONS(4221), - [aux_sym__val_number_token2] = ACTIONS(4221), - [aux_sym__val_number_token3] = ACTIONS(4221), - [aux_sym__val_number_token4] = ACTIONS(4223), - [aux_sym__val_number_token5] = ACTIONS(4223), - [aux_sym__val_number_token6] = ACTIONS(4223), - [anon_sym_0b] = ACTIONS(4225), - [anon_sym_0o] = ACTIONS(4227), - [anon_sym_0x] = ACTIONS(4227), - [sym_val_date] = ACTIONS(4229), - [anon_sym_DQUOTE] = ACTIONS(4231), - [sym__str_single_quotes] = ACTIONS(4233), - [sym__str_back_ticks] = ACTIONS(4233), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4235), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4237), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(4239), + [1669] = { + [sym_expr_unary] = STATE(5448), + [sym__expr_unary_minus] = STATE(5208), + [sym_expr_binary] = STATE(5448), + [sym__expr_binary_expression] = STATE(5449), + [sym_expr_parenthesized] = STATE(5448), + [sym__val_range] = STATE(10084), + [sym__value] = STATE(5448), + [sym_val_nothing] = STATE(5320), + [sym_val_bool] = STATE(5090), + [sym_val_variable] = STATE(5320), + [sym__var] = STATE(4669), + [sym_val_number] = STATE(5320), + [sym__val_number_decimal] = STATE(4064), + [sym__val_number] = STATE(5324), + [sym_val_duration] = STATE(5320), + [sym_val_filesize] = STATE(5320), + [sym_val_binary] = STATE(5320), + [sym_val_string] = STATE(5320), + [sym__str_double_quotes] = STATE(5376), + [sym_val_interpolated] = STATE(5320), + [sym__inter_single_quotes] = STATE(5381), + [sym__inter_double_quotes] = STATE(5382), + [sym_val_list] = STATE(5320), + [sym_val_record] = STATE(5320), + [sym_val_table] = STATE(5320), + [sym_val_closure] = STATE(5320), + [sym_unquoted] = STATE(5450), + [sym__unquoted_anonymous_prefix] = STATE(10712), + [sym_comment] = STATE(1669), + [anon_sym_LBRACK] = ACTIONS(2462), + [anon_sym_LPAREN] = ACTIONS(5141), + [anon_sym_DOLLAR] = ACTIONS(5143), + [anon_sym_DASH] = ACTIONS(3996), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_DOT_DOT] = ACTIONS(5145), + [anon_sym_not] = ACTIONS(4000), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5147), + [anon_sym_DOT_DOT_LT] = ACTIONS(5147), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_true] = ACTIONS(4006), + [anon_sym_false] = ACTIONS(4006), + [aux_sym__val_number_decimal_token1] = ACTIONS(4008), + [aux_sym__val_number_decimal_token2] = ACTIONS(4010), + [anon_sym_DOT2] = ACTIONS(5149), + [aux_sym__val_number_decimal_token3] = ACTIONS(4014), + [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(4016), + [aux_sym__val_number_token5] = ACTIONS(4016), + [aux_sym__val_number_token6] = ACTIONS(4016), + [anon_sym_0b] = ACTIONS(1624), + [anon_sym_0o] = ACTIONS(1626), + [anon_sym_0x] = ACTIONS(1626), + [sym_val_date] = ACTIONS(4018), + [anon_sym_DQUOTE] = ACTIONS(2486), + [sym__str_single_quotes] = ACTIONS(2488), + [sym__str_back_ticks] = ACTIONS(2488), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2490), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2492), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(1642), [anon_sym_POUND] = ACTIONS(3), }, - [1457] = { - [sym_path] = STATE(1950), - [sym_comment] = STATE(1457), - [aux_sym_cell_path_repeat1] = STATE(1468), - [anon_sym_LBRACK] = ACTIONS(989), - [anon_sym_COMMA] = ACTIONS(989), - [anon_sym_RBRACK] = ACTIONS(989), - [anon_sym_LPAREN] = ACTIONS(989), - [anon_sym_DOLLAR] = ACTIONS(989), - [anon_sym_GT] = ACTIONS(987), - [anon_sym_DASH_DASH] = ACTIONS(989), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_in] = ACTIONS(987), - [anon_sym_LBRACE] = ACTIONS(989), - [anon_sym_DOT_DOT] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(987), - [anon_sym_STAR_STAR] = ACTIONS(989), - [anon_sym_PLUS_PLUS] = ACTIONS(989), - [anon_sym_SLASH] = ACTIONS(987), - [anon_sym_mod] = ACTIONS(989), - [anon_sym_SLASH_SLASH] = ACTIONS(989), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_bit_DASHshl] = ACTIONS(989), - [anon_sym_bit_DASHshr] = ACTIONS(989), - [anon_sym_EQ_EQ] = ACTIONS(989), - [anon_sym_BANG_EQ] = ACTIONS(989), - [anon_sym_LT2] = ACTIONS(987), - [anon_sym_LT_EQ] = ACTIONS(989), - [anon_sym_GT_EQ] = ACTIONS(989), - [anon_sym_not_DASHin] = ACTIONS(989), - [anon_sym_starts_DASHwith] = ACTIONS(989), - [anon_sym_ends_DASHwith] = ACTIONS(989), - [anon_sym_EQ_TILDE] = ACTIONS(989), - [anon_sym_BANG_TILDE] = ACTIONS(989), - [anon_sym_bit_DASHand] = ACTIONS(989), - [anon_sym_bit_DASHxor] = ACTIONS(989), - [anon_sym_bit_DASHor] = ACTIONS(989), - [anon_sym_and] = ACTIONS(989), - [anon_sym_xor] = ACTIONS(989), - [anon_sym_or] = ACTIONS(989), - [anon_sym_DOT] = ACTIONS(4191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(989), - [anon_sym_DOT_DOT_LT] = ACTIONS(989), - [anon_sym_null] = ACTIONS(989), - [anon_sym_true] = ACTIONS(989), - [anon_sym_false] = ACTIONS(989), - [aux_sym__val_number_decimal_token1] = ACTIONS(987), - [aux_sym__val_number_decimal_token2] = ACTIONS(989), - [anon_sym_DOT2] = ACTIONS(987), - [aux_sym__val_number_decimal_token3] = ACTIONS(989), - [aux_sym__val_number_token1] = ACTIONS(989), - [aux_sym__val_number_token2] = ACTIONS(989), - [aux_sym__val_number_token3] = ACTIONS(989), - [aux_sym__val_number_token4] = ACTIONS(989), - [aux_sym__val_number_token5] = ACTIONS(989), - [aux_sym__val_number_token6] = ACTIONS(989), - [anon_sym_0b] = ACTIONS(987), - [anon_sym_0o] = ACTIONS(987), - [anon_sym_0x] = ACTIONS(987), - [sym_val_date] = ACTIONS(989), - [anon_sym_DQUOTE] = ACTIONS(989), - [sym__str_single_quotes] = ACTIONS(989), - [sym__str_back_ticks] = ACTIONS(989), - [anon_sym_err_GT] = ACTIONS(989), - [anon_sym_out_GT] = ACTIONS(989), - [anon_sym_e_GT] = ACTIONS(989), - [anon_sym_o_GT] = ACTIONS(989), - [anon_sym_err_PLUSout_GT] = ACTIONS(989), - [anon_sym_out_PLUSerr_GT] = ACTIONS(989), - [anon_sym_o_PLUSe_GT] = ACTIONS(989), - [anon_sym_e_PLUSo_GT] = ACTIONS(989), - [aux_sym__unquoted_in_list_token1] = ACTIONS(987), + [1670] = { + [sym_expr_unary] = STATE(5448), + [sym__expr_unary_minus] = STATE(5208), + [sym_expr_binary] = STATE(5448), + [sym__expr_binary_expression] = STATE(5451), + [sym_expr_parenthesized] = STATE(5448), + [sym__val_range] = STATE(10084), + [sym__value] = STATE(5448), + [sym_val_nothing] = STATE(5320), + [sym_val_bool] = STATE(5090), + [sym_val_variable] = STATE(5320), + [sym__var] = STATE(4669), + [sym_val_number] = STATE(5320), + [sym__val_number_decimal] = STATE(4064), + [sym__val_number] = STATE(5324), + [sym_val_duration] = STATE(5320), + [sym_val_filesize] = STATE(5320), + [sym_val_binary] = STATE(5320), + [sym_val_string] = STATE(5320), + [sym__str_double_quotes] = STATE(5376), + [sym_val_interpolated] = STATE(5320), + [sym__inter_single_quotes] = STATE(5381), + [sym__inter_double_quotes] = STATE(5382), + [sym_val_list] = STATE(5320), + [sym_val_record] = STATE(5320), + [sym_val_table] = STATE(5320), + [sym_val_closure] = STATE(5320), + [sym_unquoted] = STATE(5452), + [sym__unquoted_anonymous_prefix] = STATE(10712), + [sym_comment] = STATE(1670), + [anon_sym_LBRACK] = ACTIONS(2462), + [anon_sym_LPAREN] = ACTIONS(5141), + [anon_sym_DOLLAR] = ACTIONS(5143), + [anon_sym_DASH] = ACTIONS(3996), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_DOT_DOT] = ACTIONS(5145), + [anon_sym_not] = ACTIONS(4000), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5147), + [anon_sym_DOT_DOT_LT] = ACTIONS(5147), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_true] = ACTIONS(4006), + [anon_sym_false] = ACTIONS(4006), + [aux_sym__val_number_decimal_token1] = ACTIONS(4008), + [aux_sym__val_number_decimal_token2] = ACTIONS(4010), + [anon_sym_DOT2] = ACTIONS(5149), + [aux_sym__val_number_decimal_token3] = ACTIONS(4014), + [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(4016), + [aux_sym__val_number_token5] = ACTIONS(4016), + [aux_sym__val_number_token6] = ACTIONS(4016), + [anon_sym_0b] = ACTIONS(1624), + [anon_sym_0o] = ACTIONS(1626), + [anon_sym_0x] = ACTIONS(1626), + [sym_val_date] = ACTIONS(4018), + [anon_sym_DQUOTE] = ACTIONS(2486), + [sym__str_single_quotes] = ACTIONS(2488), + [sym__str_back_ticks] = ACTIONS(2488), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2490), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2492), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(1642), [anon_sym_POUND] = ACTIONS(3), }, - [1458] = { - [sym_cell_path] = STATE(2481), - [sym_path] = STATE(1545), - [sym_comment] = STATE(1458), - [anon_sym_SEMI] = ACTIONS(995), - [anon_sym_LF] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_RPAREN] = ACTIONS(995), - [anon_sym_PIPE] = ACTIONS(995), - [anon_sym_DOLLAR] = ACTIONS(995), - [anon_sym_GT] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_in] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_RBRACE] = ACTIONS(995), - [anon_sym_DOT_DOT] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_STAR_STAR] = ACTIONS(995), - [anon_sym_PLUS_PLUS] = ACTIONS(995), - [anon_sym_SLASH] = ACTIONS(995), - [anon_sym_mod] = ACTIONS(995), - [anon_sym_SLASH_SLASH] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_bit_DASHshl] = ACTIONS(995), - [anon_sym_bit_DASHshr] = ACTIONS(995), - [anon_sym_EQ_EQ] = ACTIONS(995), - [anon_sym_BANG_EQ] = ACTIONS(995), - [anon_sym_LT2] = ACTIONS(995), - [anon_sym_LT_EQ] = ACTIONS(995), - [anon_sym_GT_EQ] = ACTIONS(995), - [anon_sym_not_DASHin] = ACTIONS(995), - [anon_sym_starts_DASHwith] = ACTIONS(995), - [anon_sym_ends_DASHwith] = ACTIONS(995), - [anon_sym_EQ_TILDE] = ACTIONS(995), - [anon_sym_BANG_TILDE] = ACTIONS(995), - [anon_sym_bit_DASHand] = ACTIONS(995), - [anon_sym_bit_DASHxor] = ACTIONS(995), - [anon_sym_bit_DASHor] = ACTIONS(995), - [anon_sym_and] = ACTIONS(995), - [anon_sym_xor] = ACTIONS(995), - [anon_sym_or] = ACTIONS(995), - [anon_sym_not] = ACTIONS(995), - [anon_sym_DOT_DOT2] = ACTIONS(995), - [anon_sym_DOT] = ACTIONS(4241), - [anon_sym_DOT_DOT_EQ] = ACTIONS(995), - [anon_sym_DOT_DOT_LT] = ACTIONS(995), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(997), - [anon_sym_DOT_DOT_LT2] = ACTIONS(997), - [anon_sym_null] = ACTIONS(995), - [anon_sym_true] = ACTIONS(995), - [anon_sym_false] = ACTIONS(995), - [aux_sym__val_number_decimal_token1] = ACTIONS(995), - [aux_sym__val_number_decimal_token2] = ACTIONS(995), - [anon_sym_DOT2] = ACTIONS(995), - [aux_sym__val_number_decimal_token3] = ACTIONS(995), - [aux_sym__val_number_token1] = ACTIONS(995), - [aux_sym__val_number_token2] = ACTIONS(995), - [aux_sym__val_number_token3] = ACTIONS(995), - [aux_sym__val_number_token4] = ACTIONS(995), - [aux_sym__val_number_token5] = ACTIONS(995), - [aux_sym__val_number_token6] = ACTIONS(995), - [anon_sym_0b] = ACTIONS(995), - [anon_sym_0o] = ACTIONS(995), - [anon_sym_0x] = ACTIONS(995), - [sym_val_date] = ACTIONS(995), - [anon_sym_DQUOTE] = ACTIONS(995), - [sym__str_single_quotes] = ACTIONS(995), - [sym__str_back_ticks] = ACTIONS(995), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(995), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(995), - [anon_sym_POUND] = ACTIONS(113), - }, - [1459] = { - [sym__expression] = STATE(6480), - [sym_expr_unary] = STATE(3472), - [sym__expr_unary_minus] = STATE(3447), - [sym_expr_binary] = STATE(3472), - [sym__expr_binary_expression] = STATE(6809), - [sym_expr_parenthesized] = STATE(3171), - [sym_val_range] = STATE(6569), - [sym__val_range] = STATE(10690), - [sym__value] = STATE(3472), - [sym_val_nothing] = STATE(3462), - [sym_val_bool] = STATE(3390), - [sym_val_variable] = STATE(3167), - [sym__var] = STATE(3050), - [sym_val_number] = STATE(3462), - [sym__val_number_decimal] = STATE(2804), - [sym__val_number] = STATE(3471), - [sym_val_duration] = STATE(3462), - [sym_val_filesize] = STATE(3462), - [sym_val_binary] = STATE(3462), - [sym_val_string] = STATE(3462), - [sym__str_double_quotes] = STATE(3470), - [sym_val_interpolated] = STATE(3462), - [sym__inter_single_quotes] = STATE(3435), - [sym__inter_double_quotes] = STATE(3436), - [sym_val_list] = STATE(3462), - [sym_val_record] = STATE(3462), - [sym_val_table] = STATE(3462), - [sym_val_closure] = STATE(3462), - [sym_unquoted] = STATE(6482), - [sym__unquoted_anonymous_prefix] = STATE(10994), - [sym_comment] = STATE(1459), - [anon_sym_LBRACK] = ACTIONS(4243), - [anon_sym_LPAREN] = ACTIONS(4245), - [anon_sym_DOLLAR] = ACTIONS(4247), - [anon_sym_DASH] = ACTIONS(4249), - [anon_sym_LBRACE] = ACTIONS(4251), - [anon_sym_DOT_DOT] = ACTIONS(4253), - [anon_sym_not] = ACTIONS(4255), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4257), - [anon_sym_DOT_DOT_LT] = ACTIONS(4257), - [anon_sym_null] = ACTIONS(4259), - [anon_sym_true] = ACTIONS(4261), - [anon_sym_false] = ACTIONS(4261), - [aux_sym__val_number_decimal_token1] = ACTIONS(4263), - [aux_sym__val_number_decimal_token2] = ACTIONS(4265), - [anon_sym_DOT2] = ACTIONS(4267), - [aux_sym__val_number_decimal_token3] = ACTIONS(4269), - [aux_sym__val_number_token1] = ACTIONS(4271), - [aux_sym__val_number_token2] = ACTIONS(4271), - [aux_sym__val_number_token3] = ACTIONS(4271), - [aux_sym__val_number_token4] = ACTIONS(4273), - [aux_sym__val_number_token5] = ACTIONS(4273), - [aux_sym__val_number_token6] = ACTIONS(4273), - [anon_sym_0b] = ACTIONS(4275), - [anon_sym_0o] = ACTIONS(4277), - [anon_sym_0x] = ACTIONS(4277), - [sym_val_date] = ACTIONS(4279), - [anon_sym_DQUOTE] = ACTIONS(4281), - [sym__str_single_quotes] = ACTIONS(4283), - [sym__str_back_ticks] = ACTIONS(4283), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4285), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4287), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(4289), + [1671] = { + [sym_expr_unary] = STATE(5448), + [sym__expr_unary_minus] = STATE(5208), + [sym_expr_binary] = STATE(5448), + [sym__expr_binary_expression] = STATE(5453), + [sym_expr_parenthesized] = STATE(5448), + [sym__val_range] = STATE(10084), + [sym__value] = STATE(5448), + [sym_val_nothing] = STATE(5320), + [sym_val_bool] = STATE(5090), + [sym_val_variable] = STATE(5320), + [sym__var] = STATE(4669), + [sym_val_number] = STATE(5320), + [sym__val_number_decimal] = STATE(4064), + [sym__val_number] = STATE(5324), + [sym_val_duration] = STATE(5320), + [sym_val_filesize] = STATE(5320), + [sym_val_binary] = STATE(5320), + [sym_val_string] = STATE(5320), + [sym__str_double_quotes] = STATE(5376), + [sym_val_interpolated] = STATE(5320), + [sym__inter_single_quotes] = STATE(5381), + [sym__inter_double_quotes] = STATE(5382), + [sym_val_list] = STATE(5320), + [sym_val_record] = STATE(5320), + [sym_val_table] = STATE(5320), + [sym_val_closure] = STATE(5320), + [sym_unquoted] = STATE(5454), + [sym__unquoted_anonymous_prefix] = STATE(10712), + [sym_comment] = STATE(1671), + [anon_sym_LBRACK] = ACTIONS(2462), + [anon_sym_LPAREN] = ACTIONS(5141), + [anon_sym_DOLLAR] = ACTIONS(5143), + [anon_sym_DASH] = ACTIONS(3996), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_DOT_DOT] = ACTIONS(5145), + [anon_sym_not] = ACTIONS(4000), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5147), + [anon_sym_DOT_DOT_LT] = ACTIONS(5147), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_true] = ACTIONS(4006), + [anon_sym_false] = ACTIONS(4006), + [aux_sym__val_number_decimal_token1] = ACTIONS(4008), + [aux_sym__val_number_decimal_token2] = ACTIONS(4010), + [anon_sym_DOT2] = ACTIONS(5149), + [aux_sym__val_number_decimal_token3] = ACTIONS(4014), + [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(4016), + [aux_sym__val_number_token5] = ACTIONS(4016), + [aux_sym__val_number_token6] = ACTIONS(4016), + [anon_sym_0b] = ACTIONS(1624), + [anon_sym_0o] = ACTIONS(1626), + [anon_sym_0x] = ACTIONS(1626), + [sym_val_date] = ACTIONS(4018), + [anon_sym_DQUOTE] = ACTIONS(2486), + [sym__str_single_quotes] = ACTIONS(2488), + [sym__str_back_ticks] = ACTIONS(2488), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2490), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2492), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(1642), [anon_sym_POUND] = ACTIONS(3), }, - [1460] = { - [sym__expr_parenthesized_immediate] = STATE(10520), - [sym_comment] = STATE(1460), - [anon_sym_export] = ACTIONS(4291), - [anon_sym_alias] = ACTIONS(4291), - [anon_sym_let] = ACTIONS(4291), - [anon_sym_let_DASHenv] = ACTIONS(4291), - [anon_sym_mut] = ACTIONS(4291), - [anon_sym_const] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4291), - [sym_cmd_identifier] = ACTIONS(4291), - [anon_sym_LF] = ACTIONS(4293), - [anon_sym_def] = ACTIONS(4291), - [anon_sym_export_DASHenv] = ACTIONS(4291), - [anon_sym_extern] = ACTIONS(4291), - [anon_sym_module] = ACTIONS(4291), - [anon_sym_use] = ACTIONS(4291), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_LPAREN] = ACTIONS(4291), - [anon_sym_RPAREN] = ACTIONS(4291), - [anon_sym_DOLLAR] = ACTIONS(4291), - [anon_sym_error] = ACTIONS(4291), - [anon_sym_DASH_DASH] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_break] = ACTIONS(4291), - [anon_sym_continue] = ACTIONS(4291), - [anon_sym_for] = ACTIONS(4291), - [anon_sym_loop] = ACTIONS(4291), - [anon_sym_while] = ACTIONS(4291), - [anon_sym_do] = ACTIONS(4291), - [anon_sym_if] = ACTIONS(4291), - [anon_sym_match] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4291), - [anon_sym_RBRACE] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4291), - [anon_sym_try] = ACTIONS(4291), - [anon_sym_return] = ACTIONS(4291), - [anon_sym_source] = ACTIONS(4291), - [anon_sym_source_DASHenv] = ACTIONS(4291), - [anon_sym_register] = ACTIONS(4291), - [anon_sym_hide] = ACTIONS(4291), - [anon_sym_hide_DASHenv] = ACTIONS(4291), - [anon_sym_overlay] = ACTIONS(4291), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(4291), - [anon_sym_not] = ACTIONS(4291), - [anon_sym_LPAREN2] = ACTIONS(2397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4291), - [anon_sym_DOT_DOT_LT] = ACTIONS(4291), - [anon_sym_null] = ACTIONS(4291), - [anon_sym_true] = ACTIONS(4291), - [anon_sym_false] = ACTIONS(4291), - [aux_sym__val_number_decimal_token1] = ACTIONS(4291), - [aux_sym__val_number_decimal_token2] = ACTIONS(4291), - [anon_sym_DOT2] = ACTIONS(4291), - [aux_sym__val_number_decimal_token3] = ACTIONS(4291), - [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(4291), - [aux_sym__val_number_token5] = ACTIONS(4291), - [aux_sym__val_number_token6] = ACTIONS(4291), - [anon_sym_0b] = ACTIONS(4291), - [anon_sym_0o] = ACTIONS(4291), - [anon_sym_0x] = ACTIONS(4291), - [sym_val_date] = ACTIONS(4291), - [anon_sym_DQUOTE] = ACTIONS(4291), - [sym__str_single_quotes] = ACTIONS(4291), - [sym__str_back_ticks] = ACTIONS(4291), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4291), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4291), - [anon_sym_CARET] = ACTIONS(4291), - [anon_sym_POUND] = ACTIONS(113), - }, - [1461] = { - [sym_comment] = STATE(1461), - [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), - [anon_sym_SEMI] = ACTIONS(2437), - [sym_cmd_identifier] = ACTIONS(2437), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_RPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_DASH_DASH] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_RBRACE] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_as] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_not] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [aux_sym__immediate_decimal_token1] = ACTIONS(4295), - [aux_sym__immediate_decimal_token2] = ACTIONS(4297), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [anon_sym_DOT2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2437), - [anon_sym_0o] = ACTIONS(2437), - [anon_sym_0x] = ACTIONS(2437), - [sym_val_date] = 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_CARET] = ACTIONS(2437), - [anon_sym_POUND] = ACTIONS(113), + [1672] = { + [sym_expr_unary] = STATE(5448), + [sym__expr_unary_minus] = STATE(5208), + [sym_expr_binary] = STATE(5448), + [sym__expr_binary_expression] = STATE(5455), + [sym_expr_parenthesized] = STATE(5448), + [sym__val_range] = STATE(10084), + [sym__value] = STATE(5448), + [sym_val_nothing] = STATE(5320), + [sym_val_bool] = STATE(5090), + [sym_val_variable] = STATE(5320), + [sym__var] = STATE(4669), + [sym_val_number] = STATE(5320), + [sym__val_number_decimal] = STATE(4064), + [sym__val_number] = STATE(5324), + [sym_val_duration] = STATE(5320), + [sym_val_filesize] = STATE(5320), + [sym_val_binary] = STATE(5320), + [sym_val_string] = STATE(5320), + [sym__str_double_quotes] = STATE(5376), + [sym_val_interpolated] = STATE(5320), + [sym__inter_single_quotes] = STATE(5381), + [sym__inter_double_quotes] = STATE(5382), + [sym_val_list] = STATE(5320), + [sym_val_record] = STATE(5320), + [sym_val_table] = STATE(5320), + [sym_val_closure] = STATE(5320), + [sym_unquoted] = STATE(5456), + [sym__unquoted_anonymous_prefix] = STATE(10712), + [sym_comment] = STATE(1672), + [anon_sym_LBRACK] = ACTIONS(2462), + [anon_sym_LPAREN] = ACTIONS(5141), + [anon_sym_DOLLAR] = ACTIONS(5143), + [anon_sym_DASH] = ACTIONS(3996), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_DOT_DOT] = ACTIONS(5145), + [anon_sym_not] = ACTIONS(4000), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5147), + [anon_sym_DOT_DOT_LT] = ACTIONS(5147), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_true] = ACTIONS(4006), + [anon_sym_false] = ACTIONS(4006), + [aux_sym__val_number_decimal_token1] = ACTIONS(4008), + [aux_sym__val_number_decimal_token2] = ACTIONS(4010), + [anon_sym_DOT2] = ACTIONS(5149), + [aux_sym__val_number_decimal_token3] = ACTIONS(4014), + [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(4016), + [aux_sym__val_number_token5] = ACTIONS(4016), + [aux_sym__val_number_token6] = ACTIONS(4016), + [anon_sym_0b] = ACTIONS(1624), + [anon_sym_0o] = ACTIONS(1626), + [anon_sym_0x] = ACTIONS(1626), + [sym_val_date] = ACTIONS(4018), + [anon_sym_DQUOTE] = ACTIONS(2486), + [sym__str_single_quotes] = ACTIONS(2488), + [sym__str_back_ticks] = ACTIONS(2488), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2490), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2492), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(1642), + [anon_sym_POUND] = ACTIONS(3), }, - [1462] = { - [sym__expression] = STATE(8719), - [sym_expr_unary] = STATE(6196), - [sym__expr_unary_minus] = STATE(6200), - [sym_expr_binary] = STATE(6196), - [sym__expr_binary_expression] = STATE(6783), - [sym_expr_parenthesized] = STATE(5434), - [sym_val_range] = STATE(8689), - [sym__val_range] = STATE(10614), - [sym__value] = STATE(6196), - [sym_val_nothing] = STATE(6059), - [sym_val_bool] = STATE(5905), - [sym_val_variable] = STATE(5445), - [sym__var] = STATE(4804), - [sym_val_number] = STATE(6059), - [sym__val_number_decimal] = STATE(4529), - [sym__val_number] = STATE(6097), - [sym_val_duration] = STATE(6059), - [sym_val_filesize] = STATE(6059), - [sym_val_binary] = STATE(6059), - [sym_val_string] = STATE(6059), - [sym__str_double_quotes] = STATE(6144), - [sym_val_interpolated] = STATE(6059), - [sym__inter_single_quotes] = STATE(6158), - [sym__inter_double_quotes] = STATE(6159), - [sym_val_list] = STATE(6059), - [sym_val_record] = STATE(6059), - [sym_val_table] = STATE(6059), - [sym_val_closure] = STATE(6059), - [sym_unquoted] = STATE(8727), - [sym__unquoted_anonymous_prefix] = STATE(11079), - [sym_comment] = STATE(1462), - [anon_sym_LBRACK] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2923), - [anon_sym_DOLLAR] = ACTIONS(2925), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_DOT_DOT] = ACTIONS(4301), - [anon_sym_not] = ACTIONS(4303), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4305), - [anon_sym_DOT_DOT_LT] = ACTIONS(4305), - [anon_sym_null] = ACTIONS(4307), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_false] = ACTIONS(4309), - [aux_sym__val_number_decimal_token1] = ACTIONS(4311), - [aux_sym__val_number_decimal_token2] = ACTIONS(4313), - [anon_sym_DOT2] = ACTIONS(4315), - [aux_sym__val_number_decimal_token3] = ACTIONS(4317), - [aux_sym__val_number_token1] = ACTIONS(2949), - [aux_sym__val_number_token2] = ACTIONS(2949), - [aux_sym__val_number_token3] = ACTIONS(2949), - [aux_sym__val_number_token4] = ACTIONS(4319), - [aux_sym__val_number_token5] = ACTIONS(4319), - [aux_sym__val_number_token6] = ACTIONS(4319), - [anon_sym_0b] = ACTIONS(2953), - [anon_sym_0o] = ACTIONS(2955), - [anon_sym_0x] = ACTIONS(2955), - [sym_val_date] = ACTIONS(4321), - [anon_sym_DQUOTE] = ACTIONS(2959), - [sym__str_single_quotes] = ACTIONS(2961), - [sym__str_back_ticks] = ACTIONS(2961), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2963), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2965), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2969), + [1673] = { + [sym_expr_unary] = STATE(5448), + [sym__expr_unary_minus] = STATE(5208), + [sym_expr_binary] = STATE(5448), + [sym__expr_binary_expression] = STATE(5457), + [sym_expr_parenthesized] = STATE(5448), + [sym__val_range] = STATE(10084), + [sym__value] = STATE(5448), + [sym_val_nothing] = STATE(5320), + [sym_val_bool] = STATE(5090), + [sym_val_variable] = STATE(5320), + [sym__var] = STATE(4669), + [sym_val_number] = STATE(5320), + [sym__val_number_decimal] = STATE(4064), + [sym__val_number] = STATE(5324), + [sym_val_duration] = STATE(5320), + [sym_val_filesize] = STATE(5320), + [sym_val_binary] = STATE(5320), + [sym_val_string] = STATE(5320), + [sym__str_double_quotes] = STATE(5376), + [sym_val_interpolated] = STATE(5320), + [sym__inter_single_quotes] = STATE(5381), + [sym__inter_double_quotes] = STATE(5382), + [sym_val_list] = STATE(5320), + [sym_val_record] = STATE(5320), + [sym_val_table] = STATE(5320), + [sym_val_closure] = STATE(5320), + [sym_unquoted] = STATE(5458), + [sym__unquoted_anonymous_prefix] = STATE(10712), + [sym_comment] = STATE(1673), + [anon_sym_LBRACK] = ACTIONS(2462), + [anon_sym_LPAREN] = ACTIONS(5141), + [anon_sym_DOLLAR] = ACTIONS(5143), + [anon_sym_DASH] = ACTIONS(3996), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_DOT_DOT] = ACTIONS(5145), + [anon_sym_not] = ACTIONS(4000), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5147), + [anon_sym_DOT_DOT_LT] = ACTIONS(5147), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_true] = ACTIONS(4006), + [anon_sym_false] = ACTIONS(4006), + [aux_sym__val_number_decimal_token1] = ACTIONS(4008), + [aux_sym__val_number_decimal_token2] = ACTIONS(4010), + [anon_sym_DOT2] = ACTIONS(5149), + [aux_sym__val_number_decimal_token3] = ACTIONS(4014), + [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(4016), + [aux_sym__val_number_token5] = ACTIONS(4016), + [aux_sym__val_number_token6] = ACTIONS(4016), + [anon_sym_0b] = ACTIONS(1624), + [anon_sym_0o] = ACTIONS(1626), + [anon_sym_0x] = ACTIONS(1626), + [sym_val_date] = ACTIONS(4018), + [anon_sym_DQUOTE] = ACTIONS(2486), + [sym__str_single_quotes] = ACTIONS(2488), + [sym__str_back_ticks] = ACTIONS(2488), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2490), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2492), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(1642), [anon_sym_POUND] = ACTIONS(3), }, - [1463] = { - [sym__expr_parenthesized_immediate] = STATE(11424), - [sym_comment] = STATE(1463), - [anon_sym_export] = ACTIONS(4323), - [anon_sym_alias] = ACTIONS(4323), - [anon_sym_let] = ACTIONS(4323), - [anon_sym_let_DASHenv] = ACTIONS(4323), - [anon_sym_mut] = ACTIONS(4323), - [anon_sym_const] = ACTIONS(4323), - [anon_sym_SEMI] = ACTIONS(4323), - [sym_cmd_identifier] = ACTIONS(4323), - [anon_sym_LF] = ACTIONS(4325), - [anon_sym_def] = ACTIONS(4323), - [anon_sym_export_DASHenv] = ACTIONS(4323), - [anon_sym_extern] = ACTIONS(4323), - [anon_sym_module] = ACTIONS(4323), - [anon_sym_use] = ACTIONS(4323), - [anon_sym_LBRACK] = ACTIONS(4323), - [anon_sym_LPAREN] = ACTIONS(4323), - [anon_sym_RPAREN] = ACTIONS(4323), - [anon_sym_DOLLAR] = ACTIONS(4323), - [anon_sym_error] = ACTIONS(4323), - [anon_sym_DASH_DASH] = ACTIONS(4323), - [anon_sym_DASH] = ACTIONS(4323), - [anon_sym_break] = ACTIONS(4323), - [anon_sym_continue] = ACTIONS(4323), - [anon_sym_for] = ACTIONS(4323), - [anon_sym_loop] = ACTIONS(4323), - [anon_sym_while] = ACTIONS(4323), - [anon_sym_do] = ACTIONS(4323), - [anon_sym_if] = ACTIONS(4323), - [anon_sym_match] = ACTIONS(4323), - [anon_sym_LBRACE] = ACTIONS(4323), - [anon_sym_RBRACE] = ACTIONS(4323), - [anon_sym_DOT_DOT] = ACTIONS(4323), - [anon_sym_try] = ACTIONS(4323), - [anon_sym_return] = ACTIONS(4323), - [anon_sym_source] = ACTIONS(4323), - [anon_sym_source_DASHenv] = ACTIONS(4323), - [anon_sym_register] = ACTIONS(4323), - [anon_sym_hide] = ACTIONS(4323), - [anon_sym_hide_DASHenv] = ACTIONS(4323), - [anon_sym_overlay] = ACTIONS(4323), - [anon_sym_as] = ACTIONS(4323), - [anon_sym_where] = ACTIONS(4323), - [anon_sym_not] = ACTIONS(4323), - [anon_sym_LPAREN2] = ACTIONS(2397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4323), - [anon_sym_DOT_DOT_LT] = ACTIONS(4323), - [anon_sym_null] = ACTIONS(4323), - [anon_sym_true] = ACTIONS(4323), - [anon_sym_false] = ACTIONS(4323), - [aux_sym__val_number_decimal_token1] = ACTIONS(4323), - [aux_sym__val_number_decimal_token2] = ACTIONS(4323), - [anon_sym_DOT2] = ACTIONS(4323), - [aux_sym__val_number_decimal_token3] = ACTIONS(4323), - [aux_sym__val_number_token1] = ACTIONS(4323), - [aux_sym__val_number_token2] = ACTIONS(4323), - [aux_sym__val_number_token3] = ACTIONS(4323), - [aux_sym__val_number_token4] = ACTIONS(4323), - [aux_sym__val_number_token5] = ACTIONS(4323), - [aux_sym__val_number_token6] = ACTIONS(4323), - [anon_sym_0b] = ACTIONS(4323), - [anon_sym_0o] = ACTIONS(4323), - [anon_sym_0x] = ACTIONS(4323), - [sym_val_date] = ACTIONS(4323), - [anon_sym_DQUOTE] = ACTIONS(4323), - [sym__str_single_quotes] = ACTIONS(4323), - [sym__str_back_ticks] = ACTIONS(4323), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4323), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4323), - [anon_sym_CARET] = ACTIONS(4323), - [anon_sym_POUND] = ACTIONS(113), + [1674] = { + [sym_expr_unary] = STATE(5448), + [sym__expr_unary_minus] = STATE(5208), + [sym_expr_binary] = STATE(5448), + [sym__expr_binary_expression] = STATE(5459), + [sym_expr_parenthesized] = STATE(5448), + [sym__val_range] = STATE(10084), + [sym__value] = STATE(5448), + [sym_val_nothing] = STATE(5320), + [sym_val_bool] = STATE(5090), + [sym_val_variable] = STATE(5320), + [sym__var] = STATE(4669), + [sym_val_number] = STATE(5320), + [sym__val_number_decimal] = STATE(4064), + [sym__val_number] = STATE(5324), + [sym_val_duration] = STATE(5320), + [sym_val_filesize] = STATE(5320), + [sym_val_binary] = STATE(5320), + [sym_val_string] = STATE(5320), + [sym__str_double_quotes] = STATE(5376), + [sym_val_interpolated] = STATE(5320), + [sym__inter_single_quotes] = STATE(5381), + [sym__inter_double_quotes] = STATE(5382), + [sym_val_list] = STATE(5320), + [sym_val_record] = STATE(5320), + [sym_val_table] = STATE(5320), + [sym_val_closure] = STATE(5320), + [sym_unquoted] = STATE(5460), + [sym__unquoted_anonymous_prefix] = STATE(10712), + [sym_comment] = STATE(1674), + [anon_sym_LBRACK] = ACTIONS(2462), + [anon_sym_LPAREN] = ACTIONS(5141), + [anon_sym_DOLLAR] = ACTIONS(5143), + [anon_sym_DASH] = ACTIONS(3996), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_DOT_DOT] = ACTIONS(5145), + [anon_sym_not] = ACTIONS(4000), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5147), + [anon_sym_DOT_DOT_LT] = ACTIONS(5147), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_true] = ACTIONS(4006), + [anon_sym_false] = ACTIONS(4006), + [aux_sym__val_number_decimal_token1] = ACTIONS(4008), + [aux_sym__val_number_decimal_token2] = ACTIONS(4010), + [anon_sym_DOT2] = ACTIONS(5149), + [aux_sym__val_number_decimal_token3] = ACTIONS(4014), + [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(4016), + [aux_sym__val_number_token5] = ACTIONS(4016), + [aux_sym__val_number_token6] = ACTIONS(4016), + [anon_sym_0b] = ACTIONS(1624), + [anon_sym_0o] = ACTIONS(1626), + [anon_sym_0x] = ACTIONS(1626), + [sym_val_date] = ACTIONS(4018), + [anon_sym_DQUOTE] = ACTIONS(2486), + [sym__str_single_quotes] = ACTIONS(2488), + [sym__str_back_ticks] = ACTIONS(2488), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2490), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2492), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(1642), + [anon_sym_POUND] = ACTIONS(3), }, - [1464] = { - [sym__expression] = STATE(2545), - [sym_expr_unary] = STATE(562), - [sym__expr_unary_minus] = STATE(542), - [sym_expr_binary] = STATE(562), - [sym__expr_binary_expression] = STATE(6811), - [sym_expr_parenthesized] = STATE(383), - [sym_val_range] = STATE(2424), - [sym__val_range] = STATE(10699), - [sym__value] = STATE(562), - [sym_val_nothing] = STATE(597), - [sym_val_bool] = STATE(484), - [sym_val_variable] = STATE(392), - [sym__var] = STATE(290), - [sym_val_number] = STATE(597), - [sym__val_number_decimal] = STATE(272), - [sym__val_number] = STATE(600), - [sym_val_duration] = STATE(597), - [sym_val_filesize] = STATE(597), - [sym_val_binary] = STATE(597), - [sym_val_string] = STATE(597), - [sym__str_double_quotes] = STATE(598), - [sym_val_interpolated] = STATE(597), - [sym__inter_single_quotes] = STATE(564), - [sym__inter_double_quotes] = STATE(580), - [sym_val_list] = STATE(597), - [sym_val_record] = STATE(597), - [sym_val_table] = STATE(597), - [sym_val_closure] = STATE(597), - [sym_unquoted] = STATE(2546), - [sym__unquoted_anonymous_prefix] = STATE(11278), - [sym_comment] = STATE(1464), - [anon_sym_LBRACK] = ACTIONS(4327), - [anon_sym_LPAREN] = ACTIONS(4329), - [anon_sym_DOLLAR] = ACTIONS(4331), - [anon_sym_DASH] = ACTIONS(4333), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_DOT_DOT] = ACTIONS(4337), - [anon_sym_not] = ACTIONS(4339), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4341), - [anon_sym_DOT_DOT_LT] = ACTIONS(4341), - [anon_sym_null] = ACTIONS(4343), - [anon_sym_true] = ACTIONS(4345), - [anon_sym_false] = ACTIONS(4345), - [aux_sym__val_number_decimal_token1] = ACTIONS(4347), - [aux_sym__val_number_decimal_token2] = ACTIONS(4349), - [anon_sym_DOT2] = ACTIONS(4351), - [aux_sym__val_number_decimal_token3] = ACTIONS(4353), - [aux_sym__val_number_token1] = ACTIONS(4355), - [aux_sym__val_number_token2] = ACTIONS(4355), - [aux_sym__val_number_token3] = ACTIONS(4355), - [aux_sym__val_number_token4] = ACTIONS(4357), - [aux_sym__val_number_token5] = ACTIONS(4357), - [aux_sym__val_number_token6] = ACTIONS(4357), - [anon_sym_0b] = ACTIONS(4359), - [anon_sym_0o] = ACTIONS(4361), - [anon_sym_0x] = ACTIONS(4361), - [sym_val_date] = ACTIONS(4363), - [anon_sym_DQUOTE] = ACTIONS(4365), - [sym__str_single_quotes] = ACTIONS(4367), - [sym__str_back_ticks] = ACTIONS(4367), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4369), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4371), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(4373), + [1675] = { + [sym_expr_unary] = STATE(5448), + [sym__expr_unary_minus] = STATE(5208), + [sym_expr_binary] = STATE(5448), + [sym__expr_binary_expression] = STATE(5461), + [sym_expr_parenthesized] = STATE(5448), + [sym__val_range] = STATE(10084), + [sym__value] = STATE(5448), + [sym_val_nothing] = STATE(5320), + [sym_val_bool] = STATE(5090), + [sym_val_variable] = STATE(5320), + [sym__var] = STATE(4669), + [sym_val_number] = STATE(5320), + [sym__val_number_decimal] = STATE(4064), + [sym__val_number] = STATE(5324), + [sym_val_duration] = STATE(5320), + [sym_val_filesize] = STATE(5320), + [sym_val_binary] = STATE(5320), + [sym_val_string] = STATE(5320), + [sym__str_double_quotes] = STATE(5376), + [sym_val_interpolated] = STATE(5320), + [sym__inter_single_quotes] = STATE(5381), + [sym__inter_double_quotes] = STATE(5382), + [sym_val_list] = STATE(5320), + [sym_val_record] = STATE(5320), + [sym_val_table] = STATE(5320), + [sym_val_closure] = STATE(5320), + [sym_unquoted] = STATE(5462), + [sym__unquoted_anonymous_prefix] = STATE(10712), + [sym_comment] = STATE(1675), + [anon_sym_LBRACK] = ACTIONS(2462), + [anon_sym_LPAREN] = ACTIONS(5141), + [anon_sym_DOLLAR] = ACTIONS(5143), + [anon_sym_DASH] = ACTIONS(3996), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_DOT_DOT] = ACTIONS(5145), + [anon_sym_not] = ACTIONS(4000), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5147), + [anon_sym_DOT_DOT_LT] = ACTIONS(5147), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_true] = ACTIONS(4006), + [anon_sym_false] = ACTIONS(4006), + [aux_sym__val_number_decimal_token1] = ACTIONS(4008), + [aux_sym__val_number_decimal_token2] = ACTIONS(4010), + [anon_sym_DOT2] = ACTIONS(5149), + [aux_sym__val_number_decimal_token3] = ACTIONS(4014), + [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(4016), + [aux_sym__val_number_token5] = ACTIONS(4016), + [aux_sym__val_number_token6] = ACTIONS(4016), + [anon_sym_0b] = ACTIONS(1624), + [anon_sym_0o] = ACTIONS(1626), + [anon_sym_0x] = ACTIONS(1626), + [sym_val_date] = ACTIONS(4018), + [anon_sym_DQUOTE] = ACTIONS(2486), + [sym__str_single_quotes] = ACTIONS(2488), + [sym__str_back_ticks] = ACTIONS(2488), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2490), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2492), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(1642), [anon_sym_POUND] = ACTIONS(3), }, - [1465] = { - [sym_path] = STATE(1795), - [sym_comment] = STATE(1465), - [aux_sym_cell_path_repeat1] = STATE(1472), - [anon_sym_export] = ACTIONS(1006), - [anon_sym_alias] = ACTIONS(1006), - [anon_sym_let] = ACTIONS(1006), - [anon_sym_let_DASHenv] = ACTIONS(1006), - [anon_sym_mut] = ACTIONS(1006), - [anon_sym_const] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1006), - [sym_cmd_identifier] = ACTIONS(1006), - [anon_sym_LF] = ACTIONS(1008), - [anon_sym_def] = ACTIONS(1006), - [anon_sym_export_DASHenv] = ACTIONS(1006), - [anon_sym_extern] = ACTIONS(1006), - [anon_sym_module] = ACTIONS(1006), - [anon_sym_use] = ACTIONS(1006), - [anon_sym_LBRACK] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_RPAREN] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_error] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_break] = ACTIONS(1006), - [anon_sym_continue] = ACTIONS(1006), - [anon_sym_for] = ACTIONS(1006), - [anon_sym_loop] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(1006), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_match] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_try] = ACTIONS(1006), - [anon_sym_return] = ACTIONS(1006), - [anon_sym_source] = ACTIONS(1006), - [anon_sym_source_DASHenv] = ACTIONS(1006), - [anon_sym_register] = ACTIONS(1006), - [anon_sym_hide] = ACTIONS(1006), - [anon_sym_hide_DASHenv] = ACTIONS(1006), - [anon_sym_overlay] = ACTIONS(1006), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_where] = ACTIONS(1006), - [anon_sym_not] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(4083), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT] = ACTIONS(1006), - [anon_sym_null] = ACTIONS(1006), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1006), - [anon_sym_DOT2] = ACTIONS(1006), - [aux_sym__val_number_decimal_token3] = ACTIONS(1006), - [aux_sym__val_number_token1] = ACTIONS(1006), - [aux_sym__val_number_token2] = ACTIONS(1006), - [aux_sym__val_number_token3] = ACTIONS(1006), - [aux_sym__val_number_token4] = ACTIONS(1006), - [aux_sym__val_number_token5] = ACTIONS(1006), - [aux_sym__val_number_token6] = ACTIONS(1006), - [anon_sym_0b] = ACTIONS(1006), - [anon_sym_0o] = ACTIONS(1006), - [anon_sym_0x] = ACTIONS(1006), - [sym_val_date] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym__str_single_quotes] = ACTIONS(1006), - [sym__str_back_ticks] = ACTIONS(1006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1006), - [anon_sym_CARET] = ACTIONS(1006), - [anon_sym_POUND] = ACTIONS(113), + [1676] = { + [sym_expr_unary] = STATE(5448), + [sym__expr_unary_minus] = STATE(5208), + [sym_expr_binary] = STATE(5448), + [sym__expr_binary_expression] = STATE(5463), + [sym_expr_parenthesized] = STATE(5448), + [sym__val_range] = STATE(10084), + [sym__value] = STATE(5448), + [sym_val_nothing] = STATE(5320), + [sym_val_bool] = STATE(5090), + [sym_val_variable] = STATE(5320), + [sym__var] = STATE(4669), + [sym_val_number] = STATE(5320), + [sym__val_number_decimal] = STATE(4064), + [sym__val_number] = STATE(5324), + [sym_val_duration] = STATE(5320), + [sym_val_filesize] = STATE(5320), + [sym_val_binary] = STATE(5320), + [sym_val_string] = STATE(5320), + [sym__str_double_quotes] = STATE(5376), + [sym_val_interpolated] = STATE(5320), + [sym__inter_single_quotes] = STATE(5381), + [sym__inter_double_quotes] = STATE(5382), + [sym_val_list] = STATE(5320), + [sym_val_record] = STATE(5320), + [sym_val_table] = STATE(5320), + [sym_val_closure] = STATE(5320), + [sym_unquoted] = STATE(5464), + [sym__unquoted_anonymous_prefix] = STATE(10712), + [sym_comment] = STATE(1676), + [anon_sym_LBRACK] = ACTIONS(2462), + [anon_sym_LPAREN] = ACTIONS(5141), + [anon_sym_DOLLAR] = ACTIONS(5143), + [anon_sym_DASH] = ACTIONS(3996), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_DOT_DOT] = ACTIONS(5145), + [anon_sym_not] = ACTIONS(4000), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5147), + [anon_sym_DOT_DOT_LT] = ACTIONS(5147), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_true] = ACTIONS(4006), + [anon_sym_false] = ACTIONS(4006), + [aux_sym__val_number_decimal_token1] = ACTIONS(4008), + [aux_sym__val_number_decimal_token2] = ACTIONS(4010), + [anon_sym_DOT2] = ACTIONS(5149), + [aux_sym__val_number_decimal_token3] = ACTIONS(4014), + [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(4016), + [aux_sym__val_number_token5] = ACTIONS(4016), + [aux_sym__val_number_token6] = ACTIONS(4016), + [anon_sym_0b] = ACTIONS(1624), + [anon_sym_0o] = ACTIONS(1626), + [anon_sym_0x] = ACTIONS(1626), + [sym_val_date] = ACTIONS(4018), + [anon_sym_DQUOTE] = ACTIONS(2486), + [sym__str_single_quotes] = ACTIONS(2488), + [sym__str_back_ticks] = ACTIONS(2488), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2490), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2492), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(1642), + [anon_sym_POUND] = ACTIONS(3), }, - [1466] = { - [sym__expr_parenthesized_immediate] = STATE(11424), - [sym_comment] = STATE(1466), - [anon_sym_export] = ACTIONS(4375), - [anon_sym_alias] = ACTIONS(4375), - [anon_sym_let] = ACTIONS(4375), - [anon_sym_let_DASHenv] = ACTIONS(4375), - [anon_sym_mut] = ACTIONS(4375), - [anon_sym_const] = ACTIONS(4375), - [anon_sym_SEMI] = ACTIONS(4375), - [sym_cmd_identifier] = ACTIONS(4375), - [anon_sym_LF] = ACTIONS(4377), - [anon_sym_def] = ACTIONS(4375), - [anon_sym_export_DASHenv] = ACTIONS(4375), - [anon_sym_extern] = ACTIONS(4375), - [anon_sym_module] = ACTIONS(4375), - [anon_sym_use] = ACTIONS(4375), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LPAREN] = ACTIONS(4375), - [anon_sym_RPAREN] = ACTIONS(4375), - [anon_sym_DOLLAR] = ACTIONS(4375), - [anon_sym_error] = ACTIONS(4375), - [anon_sym_DASH_DASH] = ACTIONS(4375), - [anon_sym_DASH] = ACTIONS(4375), - [anon_sym_break] = ACTIONS(4375), - [anon_sym_continue] = ACTIONS(4375), - [anon_sym_for] = ACTIONS(4375), - [anon_sym_loop] = ACTIONS(4375), - [anon_sym_while] = ACTIONS(4375), - [anon_sym_do] = ACTIONS(4375), - [anon_sym_if] = ACTIONS(4375), - [anon_sym_match] = ACTIONS(4375), - [anon_sym_LBRACE] = ACTIONS(4375), - [anon_sym_RBRACE] = ACTIONS(4375), - [anon_sym_DOT_DOT] = ACTIONS(4375), - [anon_sym_try] = ACTIONS(4375), - [anon_sym_return] = ACTIONS(4375), - [anon_sym_source] = ACTIONS(4375), - [anon_sym_source_DASHenv] = ACTIONS(4375), - [anon_sym_register] = ACTIONS(4375), - [anon_sym_hide] = ACTIONS(4375), - [anon_sym_hide_DASHenv] = ACTIONS(4375), - [anon_sym_overlay] = ACTIONS(4375), - [anon_sym_as] = ACTIONS(4375), - [anon_sym_where] = ACTIONS(4375), - [anon_sym_not] = ACTIONS(4375), - [anon_sym_LPAREN2] = ACTIONS(2397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4375), - [anon_sym_DOT_DOT_LT] = ACTIONS(4375), - [anon_sym_null] = ACTIONS(4375), - [anon_sym_true] = ACTIONS(4375), - [anon_sym_false] = ACTIONS(4375), - [aux_sym__val_number_decimal_token1] = ACTIONS(4375), - [aux_sym__val_number_decimal_token2] = ACTIONS(4375), - [anon_sym_DOT2] = ACTIONS(4375), - [aux_sym__val_number_decimal_token3] = ACTIONS(4375), - [aux_sym__val_number_token1] = ACTIONS(4375), - [aux_sym__val_number_token2] = ACTIONS(4375), - [aux_sym__val_number_token3] = ACTIONS(4375), - [aux_sym__val_number_token4] = ACTIONS(4375), - [aux_sym__val_number_token5] = ACTIONS(4375), - [aux_sym__val_number_token6] = ACTIONS(4375), - [anon_sym_0b] = ACTIONS(4375), - [anon_sym_0o] = ACTIONS(4375), - [anon_sym_0x] = ACTIONS(4375), - [sym_val_date] = ACTIONS(4375), - [anon_sym_DQUOTE] = ACTIONS(4375), - [sym__str_single_quotes] = ACTIONS(4375), - [sym__str_back_ticks] = ACTIONS(4375), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4375), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4375), - [anon_sym_CARET] = ACTIONS(4375), - [anon_sym_POUND] = ACTIONS(113), + [1677] = { + [sym_expr_unary] = STATE(5448), + [sym__expr_unary_minus] = STATE(5208), + [sym_expr_binary] = STATE(5448), + [sym__expr_binary_expression] = STATE(5465), + [sym_expr_parenthesized] = STATE(5448), + [sym__val_range] = STATE(10084), + [sym__value] = STATE(5448), + [sym_val_nothing] = STATE(5320), + [sym_val_bool] = STATE(5090), + [sym_val_variable] = STATE(5320), + [sym__var] = STATE(4669), + [sym_val_number] = STATE(5320), + [sym__val_number_decimal] = STATE(4064), + [sym__val_number] = STATE(5324), + [sym_val_duration] = STATE(5320), + [sym_val_filesize] = STATE(5320), + [sym_val_binary] = STATE(5320), + [sym_val_string] = STATE(5320), + [sym__str_double_quotes] = STATE(5376), + [sym_val_interpolated] = STATE(5320), + [sym__inter_single_quotes] = STATE(5381), + [sym__inter_double_quotes] = STATE(5382), + [sym_val_list] = STATE(5320), + [sym_val_record] = STATE(5320), + [sym_val_table] = STATE(5320), + [sym_val_closure] = STATE(5320), + [sym_unquoted] = STATE(5466), + [sym__unquoted_anonymous_prefix] = STATE(10712), + [sym_comment] = STATE(1677), + [anon_sym_LBRACK] = ACTIONS(2462), + [anon_sym_LPAREN] = ACTIONS(5141), + [anon_sym_DOLLAR] = ACTIONS(5143), + [anon_sym_DASH] = ACTIONS(3996), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_DOT_DOT] = ACTIONS(5145), + [anon_sym_not] = ACTIONS(4000), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5147), + [anon_sym_DOT_DOT_LT] = ACTIONS(5147), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_true] = ACTIONS(4006), + [anon_sym_false] = ACTIONS(4006), + [aux_sym__val_number_decimal_token1] = ACTIONS(4008), + [aux_sym__val_number_decimal_token2] = ACTIONS(4010), + [anon_sym_DOT2] = ACTIONS(5149), + [aux_sym__val_number_decimal_token3] = ACTIONS(4014), + [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(4016), + [aux_sym__val_number_token5] = ACTIONS(4016), + [aux_sym__val_number_token6] = ACTIONS(4016), + [anon_sym_0b] = ACTIONS(1624), + [anon_sym_0o] = ACTIONS(1626), + [anon_sym_0x] = ACTIONS(1626), + [sym_val_date] = ACTIONS(4018), + [anon_sym_DQUOTE] = ACTIONS(2486), + [sym__str_single_quotes] = ACTIONS(2488), + [sym__str_back_ticks] = ACTIONS(2488), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2490), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2492), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(1642), + [anon_sym_POUND] = ACTIONS(3), }, - [1467] = { - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5715), - [sym__expr_unary_minus] = STATE(5723), - [sym_expr_binary] = STATE(5715), - [sym__expr_binary_expression] = STATE(6788), - [sym_expr_parenthesized] = STATE(5176), - [sym_val_range] = STATE(8278), - [sym__val_range] = STATE(10625), - [sym__value] = STATE(5715), - [sym_val_nothing] = STATE(5705), - [sym_val_bool] = STATE(5473), - [sym_val_variable] = STATE(5170), - [sym__var] = STATE(4674), - [sym_val_number] = STATE(5705), - [sym__val_number_decimal] = STATE(4468), - [sym__val_number] = STATE(5875), - [sym_val_duration] = STATE(5705), - [sym_val_filesize] = STATE(5705), - [sym_val_binary] = STATE(5705), - [sym_val_string] = STATE(5705), - [sym__str_double_quotes] = STATE(5788), - [sym_val_interpolated] = STATE(5705), - [sym__inter_single_quotes] = STATE(5899), - [sym__inter_double_quotes] = STATE(5903), - [sym_val_list] = STATE(5705), - [sym_val_record] = STATE(5705), - [sym_val_table] = STATE(5705), - [sym_val_closure] = STATE(5705), - [sym_unquoted] = STATE(8418), - [sym__unquoted_anonymous_prefix] = STATE(11373), - [sym_comment] = STATE(1467), - [anon_sym_LBRACK] = ACTIONS(3313), - [anon_sym_LPAREN] = ACTIONS(3315), - [anon_sym_DOLLAR] = ACTIONS(3317), - [anon_sym_DASH] = ACTIONS(4379), - [anon_sym_LBRACE] = ACTIONS(3323), - [anon_sym_DOT_DOT] = ACTIONS(4381), - [anon_sym_not] = ACTIONS(4383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4385), - [anon_sym_DOT_DOT_LT] = ACTIONS(4385), - [anon_sym_null] = ACTIONS(4387), - [anon_sym_true] = ACTIONS(4389), - [anon_sym_false] = ACTIONS(4389), - [aux_sym__val_number_decimal_token1] = ACTIONS(4391), - [aux_sym__val_number_decimal_token2] = ACTIONS(4393), - [anon_sym_DOT2] = ACTIONS(4395), - [aux_sym__val_number_decimal_token3] = ACTIONS(4397), - [aux_sym__val_number_token1] = ACTIONS(3341), - [aux_sym__val_number_token2] = ACTIONS(3341), - [aux_sym__val_number_token3] = ACTIONS(3341), - [aux_sym__val_number_token4] = ACTIONS(4399), - [aux_sym__val_number_token5] = ACTIONS(4399), - [aux_sym__val_number_token6] = ACTIONS(4399), - [anon_sym_0b] = ACTIONS(3345), - [anon_sym_0o] = ACTIONS(3347), - [anon_sym_0x] = ACTIONS(3347), - [sym_val_date] = ACTIONS(4401), - [anon_sym_DQUOTE] = ACTIONS(3351), - [sym__str_single_quotes] = ACTIONS(3353), - [sym__str_back_ticks] = ACTIONS(3353), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3355), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3357), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(3361), + [1678] = { + [sym_expr_unary] = STATE(5448), + [sym__expr_unary_minus] = STATE(5208), + [sym_expr_binary] = STATE(5448), + [sym__expr_binary_expression] = STATE(5467), + [sym_expr_parenthesized] = STATE(5448), + [sym__val_range] = STATE(10084), + [sym__value] = STATE(5448), + [sym_val_nothing] = STATE(5320), + [sym_val_bool] = STATE(5090), + [sym_val_variable] = STATE(5320), + [sym__var] = STATE(4669), + [sym_val_number] = STATE(5320), + [sym__val_number_decimal] = STATE(4064), + [sym__val_number] = STATE(5324), + [sym_val_duration] = STATE(5320), + [sym_val_filesize] = STATE(5320), + [sym_val_binary] = STATE(5320), + [sym_val_string] = STATE(5320), + [sym__str_double_quotes] = STATE(5376), + [sym_val_interpolated] = STATE(5320), + [sym__inter_single_quotes] = STATE(5381), + [sym__inter_double_quotes] = STATE(5382), + [sym_val_list] = STATE(5320), + [sym_val_record] = STATE(5320), + [sym_val_table] = STATE(5320), + [sym_val_closure] = STATE(5320), + [sym_unquoted] = STATE(5468), + [sym__unquoted_anonymous_prefix] = STATE(10712), + [sym_comment] = STATE(1678), + [anon_sym_LBRACK] = ACTIONS(2462), + [anon_sym_LPAREN] = ACTIONS(5141), + [anon_sym_DOLLAR] = ACTIONS(5143), + [anon_sym_DASH] = ACTIONS(3996), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_DOT_DOT] = ACTIONS(5145), + [anon_sym_not] = ACTIONS(4000), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5147), + [anon_sym_DOT_DOT_LT] = ACTIONS(5147), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_true] = ACTIONS(4006), + [anon_sym_false] = ACTIONS(4006), + [aux_sym__val_number_decimal_token1] = ACTIONS(4008), + [aux_sym__val_number_decimal_token2] = ACTIONS(4010), + [anon_sym_DOT2] = ACTIONS(5149), + [aux_sym__val_number_decimal_token3] = ACTIONS(4014), + [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(4016), + [aux_sym__val_number_token5] = ACTIONS(4016), + [aux_sym__val_number_token6] = ACTIONS(4016), + [anon_sym_0b] = ACTIONS(1624), + [anon_sym_0o] = ACTIONS(1626), + [anon_sym_0x] = ACTIONS(1626), + [sym_val_date] = ACTIONS(4018), + [anon_sym_DQUOTE] = ACTIONS(2486), + [sym__str_single_quotes] = ACTIONS(2488), + [sym__str_back_ticks] = ACTIONS(2488), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2490), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2492), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(1642), [anon_sym_POUND] = ACTIONS(3), }, - [1468] = { - [sym_path] = STATE(1950), - [sym_comment] = STATE(1468), - [aux_sym_cell_path_repeat1] = STATE(1470), - [anon_sym_LBRACK] = ACTIONS(1008), - [anon_sym_COMMA] = ACTIONS(1008), - [anon_sym_RBRACK] = ACTIONS(1008), - [anon_sym_LPAREN] = ACTIONS(1008), - [anon_sym_DOLLAR] = ACTIONS(1008), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_DASH_DASH] = ACTIONS(1008), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_in] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1008), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_STAR_STAR] = ACTIONS(1008), - [anon_sym_PLUS_PLUS] = ACTIONS(1008), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_mod] = ACTIONS(1008), - [anon_sym_SLASH_SLASH] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_bit_DASHshl] = ACTIONS(1008), - [anon_sym_bit_DASHshr] = ACTIONS(1008), - [anon_sym_EQ_EQ] = ACTIONS(1008), - [anon_sym_BANG_EQ] = ACTIONS(1008), - [anon_sym_LT2] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1008), - [anon_sym_GT_EQ] = ACTIONS(1008), - [anon_sym_not_DASHin] = ACTIONS(1008), - [anon_sym_starts_DASHwith] = ACTIONS(1008), - [anon_sym_ends_DASHwith] = ACTIONS(1008), - [anon_sym_EQ_TILDE] = ACTIONS(1008), - [anon_sym_BANG_TILDE] = ACTIONS(1008), - [anon_sym_bit_DASHand] = ACTIONS(1008), - [anon_sym_bit_DASHxor] = ACTIONS(1008), - [anon_sym_bit_DASHor] = ACTIONS(1008), - [anon_sym_and] = ACTIONS(1008), - [anon_sym_xor] = ACTIONS(1008), - [anon_sym_or] = ACTIONS(1008), - [anon_sym_DOT] = ACTIONS(4191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1008), - [anon_sym_DOT_DOT_LT] = ACTIONS(1008), - [anon_sym_null] = ACTIONS(1008), - [anon_sym_true] = ACTIONS(1008), - [anon_sym_false] = ACTIONS(1008), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1008), - [anon_sym_DOT2] = ACTIONS(1006), - [aux_sym__val_number_decimal_token3] = ACTIONS(1008), - [aux_sym__val_number_token1] = ACTIONS(1008), - [aux_sym__val_number_token2] = ACTIONS(1008), - [aux_sym__val_number_token3] = ACTIONS(1008), - [aux_sym__val_number_token4] = ACTIONS(1008), - [aux_sym__val_number_token5] = ACTIONS(1008), - [aux_sym__val_number_token6] = ACTIONS(1008), - [anon_sym_0b] = ACTIONS(1006), - [anon_sym_0o] = ACTIONS(1006), - [anon_sym_0x] = ACTIONS(1006), - [sym_val_date] = ACTIONS(1008), - [anon_sym_DQUOTE] = ACTIONS(1008), - [sym__str_single_quotes] = ACTIONS(1008), - [sym__str_back_ticks] = ACTIONS(1008), - [anon_sym_err_GT] = ACTIONS(1008), - [anon_sym_out_GT] = ACTIONS(1008), - [anon_sym_e_GT] = ACTIONS(1008), - [anon_sym_o_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT] = ACTIONS(1008), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1006), + [1679] = { + [sym_expr_unary] = STATE(5448), + [sym__expr_unary_minus] = STATE(5208), + [sym_expr_binary] = STATE(5448), + [sym__expr_binary_expression] = STATE(5469), + [sym_expr_parenthesized] = STATE(5448), + [sym__val_range] = STATE(10084), + [sym__value] = STATE(5448), + [sym_val_nothing] = STATE(5320), + [sym_val_bool] = STATE(5090), + [sym_val_variable] = STATE(5320), + [sym__var] = STATE(4669), + [sym_val_number] = STATE(5320), + [sym__val_number_decimal] = STATE(4064), + [sym__val_number] = STATE(5324), + [sym_val_duration] = STATE(5320), + [sym_val_filesize] = STATE(5320), + [sym_val_binary] = STATE(5320), + [sym_val_string] = STATE(5320), + [sym__str_double_quotes] = STATE(5376), + [sym_val_interpolated] = STATE(5320), + [sym__inter_single_quotes] = STATE(5381), + [sym__inter_double_quotes] = STATE(5382), + [sym_val_list] = STATE(5320), + [sym_val_record] = STATE(5320), + [sym_val_table] = STATE(5320), + [sym_val_closure] = STATE(5320), + [sym_unquoted] = STATE(5470), + [sym__unquoted_anonymous_prefix] = STATE(10712), + [sym_comment] = STATE(1679), + [anon_sym_LBRACK] = ACTIONS(2462), + [anon_sym_LPAREN] = ACTIONS(5141), + [anon_sym_DOLLAR] = ACTIONS(5143), + [anon_sym_DASH] = ACTIONS(3996), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_DOT_DOT] = ACTIONS(5145), + [anon_sym_not] = ACTIONS(4000), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5147), + [anon_sym_DOT_DOT_LT] = ACTIONS(5147), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_true] = ACTIONS(4006), + [anon_sym_false] = ACTIONS(4006), + [aux_sym__val_number_decimal_token1] = ACTIONS(4008), + [aux_sym__val_number_decimal_token2] = ACTIONS(4010), + [anon_sym_DOT2] = ACTIONS(5149), + [aux_sym__val_number_decimal_token3] = ACTIONS(4014), + [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(4016), + [aux_sym__val_number_token5] = ACTIONS(4016), + [aux_sym__val_number_token6] = ACTIONS(4016), + [anon_sym_0b] = ACTIONS(1624), + [anon_sym_0o] = ACTIONS(1626), + [anon_sym_0x] = ACTIONS(1626), + [sym_val_date] = ACTIONS(4018), + [anon_sym_DQUOTE] = ACTIONS(2486), + [sym__str_single_quotes] = ACTIONS(2488), + [sym__str_back_ticks] = ACTIONS(2488), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2490), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2492), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(1642), [anon_sym_POUND] = ACTIONS(3), }, - [1469] = { - [sym__expression] = STATE(1781), - [sym_expr_unary] = STATE(501), - [sym__expr_unary_minus] = STATE(481), - [sym_expr_binary] = STATE(501), - [sym__expr_binary_expression] = STATE(6812), - [sym_expr_parenthesized] = STATE(357), - [sym_val_range] = STATE(1765), - [sym__val_range] = STATE(10702), - [sym__value] = STATE(501), - [sym_val_nothing] = STATE(503), - [sym_val_bool] = STATE(435), - [sym_val_variable] = STATE(339), - [sym__var] = STATE(271), - [sym_val_number] = STATE(503), - [sym__val_number_decimal] = STATE(262), - [sym__val_number] = STATE(518), - [sym_val_duration] = STATE(503), - [sym_val_filesize] = STATE(503), - [sym_val_binary] = STATE(503), - [sym_val_string] = STATE(503), - [sym__str_double_quotes] = STATE(517), - [sym_val_interpolated] = STATE(503), - [sym__inter_single_quotes] = STATE(443), - [sym__inter_double_quotes] = STATE(444), - [sym_val_list] = STATE(503), - [sym_val_record] = STATE(503), - [sym_val_table] = STATE(503), - [sym_val_closure] = STATE(503), - [sym_unquoted] = STATE(1782), - [sym__unquoted_anonymous_prefix] = STATE(10814), - [sym_comment] = STATE(1469), - [anon_sym_LBRACK] = ACTIONS(4403), - [anon_sym_LPAREN] = ACTIONS(4405), - [anon_sym_DOLLAR] = ACTIONS(4407), - [anon_sym_DASH] = ACTIONS(4409), - [anon_sym_LBRACE] = ACTIONS(4411), - [anon_sym_DOT_DOT] = ACTIONS(4413), - [anon_sym_not] = ACTIONS(4415), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4417), - [anon_sym_DOT_DOT_LT] = ACTIONS(4417), - [anon_sym_null] = ACTIONS(4419), - [anon_sym_true] = ACTIONS(4421), - [anon_sym_false] = ACTIONS(4421), - [aux_sym__val_number_decimal_token1] = ACTIONS(4423), - [aux_sym__val_number_decimal_token2] = ACTIONS(4425), - [anon_sym_DOT2] = ACTIONS(4427), - [aux_sym__val_number_decimal_token3] = ACTIONS(4429), - [aux_sym__val_number_token1] = ACTIONS(4431), - [aux_sym__val_number_token2] = ACTIONS(4431), - [aux_sym__val_number_token3] = ACTIONS(4431), - [aux_sym__val_number_token4] = ACTIONS(4433), - [aux_sym__val_number_token5] = ACTIONS(4433), - [aux_sym__val_number_token6] = ACTIONS(4433), - [anon_sym_0b] = ACTIONS(4435), - [anon_sym_0o] = ACTIONS(4437), - [anon_sym_0x] = ACTIONS(4437), - [sym_val_date] = ACTIONS(4439), - [anon_sym_DQUOTE] = ACTIONS(4441), - [sym__str_single_quotes] = ACTIONS(4443), - [sym__str_back_ticks] = ACTIONS(4443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4445), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4447), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(4449), + [1680] = { + [sym_expr_unary] = STATE(5448), + [sym__expr_unary_minus] = STATE(5208), + [sym_expr_binary] = STATE(5448), + [sym__expr_binary_expression] = STATE(5471), + [sym_expr_parenthesized] = STATE(5448), + [sym__val_range] = STATE(10084), + [sym__value] = STATE(5448), + [sym_val_nothing] = STATE(5320), + [sym_val_bool] = STATE(5090), + [sym_val_variable] = STATE(5320), + [sym__var] = STATE(4669), + [sym_val_number] = STATE(5320), + [sym__val_number_decimal] = STATE(4064), + [sym__val_number] = STATE(5324), + [sym_val_duration] = STATE(5320), + [sym_val_filesize] = STATE(5320), + [sym_val_binary] = STATE(5320), + [sym_val_string] = STATE(5320), + [sym__str_double_quotes] = STATE(5376), + [sym_val_interpolated] = STATE(5320), + [sym__inter_single_quotes] = STATE(5381), + [sym__inter_double_quotes] = STATE(5382), + [sym_val_list] = STATE(5320), + [sym_val_record] = STATE(5320), + [sym_val_table] = STATE(5320), + [sym_val_closure] = STATE(5320), + [sym_unquoted] = STATE(5472), + [sym__unquoted_anonymous_prefix] = STATE(10712), + [sym_comment] = STATE(1680), + [anon_sym_LBRACK] = ACTIONS(2462), + [anon_sym_LPAREN] = ACTIONS(5141), + [anon_sym_DOLLAR] = ACTIONS(5143), + [anon_sym_DASH] = ACTIONS(3996), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_DOT_DOT] = ACTIONS(5145), + [anon_sym_not] = ACTIONS(4000), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5147), + [anon_sym_DOT_DOT_LT] = ACTIONS(5147), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_true] = ACTIONS(4006), + [anon_sym_false] = ACTIONS(4006), + [aux_sym__val_number_decimal_token1] = ACTIONS(4008), + [aux_sym__val_number_decimal_token2] = ACTIONS(4010), + [anon_sym_DOT2] = ACTIONS(5149), + [aux_sym__val_number_decimal_token3] = ACTIONS(4014), + [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(4016), + [aux_sym__val_number_token5] = ACTIONS(4016), + [aux_sym__val_number_token6] = ACTIONS(4016), + [anon_sym_0b] = ACTIONS(1624), + [anon_sym_0o] = ACTIONS(1626), + [anon_sym_0x] = ACTIONS(1626), + [sym_val_date] = ACTIONS(4018), + [anon_sym_DQUOTE] = ACTIONS(2486), + [sym__str_single_quotes] = ACTIONS(2488), + [sym__str_back_ticks] = ACTIONS(2488), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2490), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2492), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(1642), [anon_sym_POUND] = ACTIONS(3), }, - [1470] = { - [sym_path] = STATE(1950), - [sym_comment] = STATE(1470), - [aux_sym_cell_path_repeat1] = STATE(1470), - [anon_sym_LBRACK] = ACTIONS(1001), - [anon_sym_COMMA] = ACTIONS(1001), - [anon_sym_RBRACK] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1001), - [anon_sym_DOLLAR] = ACTIONS(1001), - [anon_sym_GT] = ACTIONS(999), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_in] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1001), - [anon_sym_DOT_DOT] = ACTIONS(999), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_STAR_STAR] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(999), - [anon_sym_mod] = ACTIONS(1001), - [anon_sym_SLASH_SLASH] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_bit_DASHshl] = ACTIONS(1001), - [anon_sym_bit_DASHshr] = ACTIONS(1001), - [anon_sym_EQ_EQ] = ACTIONS(1001), - [anon_sym_BANG_EQ] = ACTIONS(1001), - [anon_sym_LT2] = ACTIONS(999), - [anon_sym_LT_EQ] = ACTIONS(1001), - [anon_sym_GT_EQ] = ACTIONS(1001), - [anon_sym_not_DASHin] = ACTIONS(1001), - [anon_sym_starts_DASHwith] = ACTIONS(1001), - [anon_sym_ends_DASHwith] = ACTIONS(1001), - [anon_sym_EQ_TILDE] = ACTIONS(1001), - [anon_sym_BANG_TILDE] = ACTIONS(1001), - [anon_sym_bit_DASHand] = ACTIONS(1001), - [anon_sym_bit_DASHxor] = ACTIONS(1001), - [anon_sym_bit_DASHor] = ACTIONS(1001), - [anon_sym_and] = ACTIONS(1001), - [anon_sym_xor] = ACTIONS(1001), - [anon_sym_or] = ACTIONS(1001), - [anon_sym_DOT] = ACTIONS(4451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1001), - [anon_sym_DOT_DOT_LT] = ACTIONS(1001), - [anon_sym_null] = ACTIONS(1001), - [anon_sym_true] = ACTIONS(1001), - [anon_sym_false] = ACTIONS(1001), - [aux_sym__val_number_decimal_token1] = ACTIONS(999), - [aux_sym__val_number_decimal_token2] = ACTIONS(1001), - [anon_sym_DOT2] = ACTIONS(999), - [aux_sym__val_number_decimal_token3] = ACTIONS(1001), - [aux_sym__val_number_token1] = ACTIONS(1001), - [aux_sym__val_number_token2] = ACTIONS(1001), - [aux_sym__val_number_token3] = ACTIONS(1001), - [aux_sym__val_number_token4] = ACTIONS(1001), - [aux_sym__val_number_token5] = ACTIONS(1001), - [aux_sym__val_number_token6] = ACTIONS(1001), - [anon_sym_0b] = ACTIONS(999), - [anon_sym_0o] = ACTIONS(999), - [anon_sym_0x] = ACTIONS(999), - [sym_val_date] = ACTIONS(1001), - [anon_sym_DQUOTE] = ACTIONS(1001), - [sym__str_single_quotes] = ACTIONS(1001), - [sym__str_back_ticks] = ACTIONS(1001), - [anon_sym_err_GT] = ACTIONS(1001), - [anon_sym_out_GT] = ACTIONS(1001), - [anon_sym_e_GT] = ACTIONS(1001), - [anon_sym_o_GT] = ACTIONS(1001), - [anon_sym_err_PLUSout_GT] = ACTIONS(1001), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1001), - [anon_sym_o_PLUSe_GT] = ACTIONS(1001), - [anon_sym_e_PLUSo_GT] = ACTIONS(1001), - [aux_sym__unquoted_in_list_token1] = ACTIONS(999), + [1681] = { + [sym_expr_unary] = STATE(5448), + [sym__expr_unary_minus] = STATE(5208), + [sym_expr_binary] = STATE(5448), + [sym__expr_binary_expression] = STATE(5473), + [sym_expr_parenthesized] = STATE(5448), + [sym__val_range] = STATE(10084), + [sym__value] = STATE(5448), + [sym_val_nothing] = STATE(5320), + [sym_val_bool] = STATE(5090), + [sym_val_variable] = STATE(5320), + [sym__var] = STATE(4669), + [sym_val_number] = STATE(5320), + [sym__val_number_decimal] = STATE(4064), + [sym__val_number] = STATE(5324), + [sym_val_duration] = STATE(5320), + [sym_val_filesize] = STATE(5320), + [sym_val_binary] = STATE(5320), + [sym_val_string] = STATE(5320), + [sym__str_double_quotes] = STATE(5376), + [sym_val_interpolated] = STATE(5320), + [sym__inter_single_quotes] = STATE(5381), + [sym__inter_double_quotes] = STATE(5382), + [sym_val_list] = STATE(5320), + [sym_val_record] = STATE(5320), + [sym_val_table] = STATE(5320), + [sym_val_closure] = STATE(5320), + [sym_unquoted] = STATE(5474), + [sym__unquoted_anonymous_prefix] = STATE(10712), + [sym_comment] = STATE(1681), + [anon_sym_LBRACK] = ACTIONS(2462), + [anon_sym_LPAREN] = ACTIONS(5141), + [anon_sym_DOLLAR] = ACTIONS(5143), + [anon_sym_DASH] = ACTIONS(3996), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_DOT_DOT] = ACTIONS(5145), + [anon_sym_not] = ACTIONS(4000), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5147), + [anon_sym_DOT_DOT_LT] = ACTIONS(5147), + [anon_sym_null] = ACTIONS(4004), + [anon_sym_true] = ACTIONS(4006), + [anon_sym_false] = ACTIONS(4006), + [aux_sym__val_number_decimal_token1] = ACTIONS(4008), + [aux_sym__val_number_decimal_token2] = ACTIONS(4010), + [anon_sym_DOT2] = ACTIONS(5149), + [aux_sym__val_number_decimal_token3] = ACTIONS(4014), + [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(4016), + [aux_sym__val_number_token5] = ACTIONS(4016), + [aux_sym__val_number_token6] = ACTIONS(4016), + [anon_sym_0b] = ACTIONS(1624), + [anon_sym_0o] = ACTIONS(1626), + [anon_sym_0x] = ACTIONS(1626), + [sym_val_date] = ACTIONS(4018), + [anon_sym_DQUOTE] = ACTIONS(2486), + [sym__str_single_quotes] = ACTIONS(2488), + [sym__str_back_ticks] = ACTIONS(2488), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2490), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2492), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(1642), [anon_sym_POUND] = ACTIONS(3), }, - [1471] = { - [sym__expression] = STATE(5430), - [sym_expr_unary] = STATE(6379), - [sym__expr_unary_minus] = STATE(6347), - [sym_expr_binary] = STATE(6379), - [sym__expr_binary_expression] = STATE(6784), - [sym_expr_parenthesized] = STATE(5573), - [sym_val_range] = STATE(8689), - [sym__val_range] = STATE(10518), - [sym__value] = STATE(6379), - [sym_val_nothing] = STATE(6374), - [sym_val_bool] = STATE(6252), - [sym_val_variable] = STATE(5610), - [sym__var] = STATE(4886), - [sym_val_number] = STATE(6374), - [sym__val_number_decimal] = STATE(4746), - [sym__val_number] = STATE(5769), - [sym_val_duration] = STATE(6374), - [sym_val_filesize] = STATE(6374), - [sym_val_binary] = STATE(6374), - [sym_val_string] = STATE(6374), - [sym__str_double_quotes] = STATE(6386), - [sym_val_interpolated] = STATE(6374), - [sym__inter_single_quotes] = STATE(6363), - [sym__inter_double_quotes] = STATE(6365), - [sym_val_list] = STATE(6374), - [sym_val_record] = STATE(6374), - [sym_val_table] = STATE(6374), - [sym_val_closure] = STATE(6374), - [sym_unquoted] = STATE(5436), - [sym__unquoted_anonymous_prefix] = STATE(11180), - [sym_comment] = STATE(1471), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(1742), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_DOT_DOT] = ACTIONS(4454), - [anon_sym_not] = ACTIONS(4456), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4458), - [anon_sym_DOT_DOT_LT] = ACTIONS(4458), - [anon_sym_null] = ACTIONS(4460), - [anon_sym_true] = ACTIONS(4462), - [anon_sym_false] = ACTIONS(4462), - [aux_sym__val_number_decimal_token1] = ACTIONS(4464), - [aux_sym__val_number_decimal_token2] = ACTIONS(4466), - [anon_sym_DOT2] = ACTIONS(4468), - [aux_sym__val_number_decimal_token3] = ACTIONS(4470), - [aux_sym__val_number_token1] = ACTIONS(93), - [aux_sym__val_number_token2] = ACTIONS(93), - [aux_sym__val_number_token3] = ACTIONS(93), - [aux_sym__val_number_token4] = ACTIONS(4472), - [aux_sym__val_number_token5] = ACTIONS(4472), - [aux_sym__val_number_token6] = ACTIONS(4472), - [anon_sym_0b] = ACTIONS(97), - [anon_sym_0o] = ACTIONS(99), - [anon_sym_0x] = ACTIONS(99), - [sym_val_date] = ACTIONS(4474), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym__str_single_quotes] = ACTIONS(105), - [sym__str_back_ticks] = ACTIONS(105), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(109), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(4476), + [1682] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6335), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6234), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4982), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5863), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1682), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(5035), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4787), + [anon_sym_DOT_DOT_LT] = ACTIONS(4787), + [anon_sym_null] = ACTIONS(3669), + [anon_sym_true] = ACTIONS(3671), + [anon_sym_false] = ACTIONS(3671), + [aux_sym__val_number_decimal_token1] = ACTIONS(3673), + [aux_sym__val_number_decimal_token2] = ACTIONS(3675), + [anon_sym_DOT2] = ACTIONS(5037), + [aux_sym__val_number_decimal_token3] = ACTIONS(3679), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(3681), + [aux_sym__val_number_token5] = ACTIONS(3681), + [aux_sym__val_number_token6] = ACTIONS(3681), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(3683), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), [anon_sym_POUND] = ACTIONS(3), }, - [1472] = { - [sym_path] = STATE(1795), - [sym_comment] = STATE(1472), - [aux_sym_cell_path_repeat1] = STATE(1472), - [anon_sym_export] = ACTIONS(999), - [anon_sym_alias] = ACTIONS(999), - [anon_sym_let] = ACTIONS(999), - [anon_sym_let_DASHenv] = ACTIONS(999), - [anon_sym_mut] = ACTIONS(999), - [anon_sym_const] = ACTIONS(999), - [anon_sym_SEMI] = ACTIONS(999), - [sym_cmd_identifier] = ACTIONS(999), - [anon_sym_LF] = ACTIONS(1001), - [anon_sym_def] = ACTIONS(999), - [anon_sym_export_DASHenv] = ACTIONS(999), - [anon_sym_extern] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_use] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_RPAREN] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_error] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_break] = ACTIONS(999), - [anon_sym_continue] = ACTIONS(999), - [anon_sym_for] = ACTIONS(999), - [anon_sym_loop] = ACTIONS(999), - [anon_sym_while] = ACTIONS(999), - [anon_sym_do] = ACTIONS(999), - [anon_sym_if] = ACTIONS(999), - [anon_sym_match] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(999), - [anon_sym_RBRACE] = ACTIONS(999), - [anon_sym_DOT_DOT] = ACTIONS(999), - [anon_sym_try] = ACTIONS(999), - [anon_sym_return] = ACTIONS(999), - [anon_sym_source] = ACTIONS(999), - [anon_sym_source_DASHenv] = ACTIONS(999), - [anon_sym_register] = ACTIONS(999), - [anon_sym_hide] = ACTIONS(999), - [anon_sym_hide_DASHenv] = ACTIONS(999), - [anon_sym_overlay] = ACTIONS(999), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_where] = ACTIONS(999), - [anon_sym_not] = ACTIONS(999), - [anon_sym_DOT] = ACTIONS(4478), - [anon_sym_DOT_DOT_EQ] = ACTIONS(999), - [anon_sym_DOT_DOT_LT] = ACTIONS(999), - [anon_sym_null] = ACTIONS(999), - [anon_sym_true] = ACTIONS(999), - [anon_sym_false] = ACTIONS(999), - [aux_sym__val_number_decimal_token1] = ACTIONS(999), - [aux_sym__val_number_decimal_token2] = ACTIONS(999), - [anon_sym_DOT2] = ACTIONS(999), - [aux_sym__val_number_decimal_token3] = ACTIONS(999), - [aux_sym__val_number_token1] = ACTIONS(999), - [aux_sym__val_number_token2] = ACTIONS(999), - [aux_sym__val_number_token3] = ACTIONS(999), - [aux_sym__val_number_token4] = ACTIONS(999), - [aux_sym__val_number_token5] = ACTIONS(999), - [aux_sym__val_number_token6] = ACTIONS(999), - [anon_sym_0b] = ACTIONS(999), - [anon_sym_0o] = ACTIONS(999), - [anon_sym_0x] = ACTIONS(999), - [sym_val_date] = ACTIONS(999), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym__str_single_quotes] = ACTIONS(999), - [sym__str_back_ticks] = ACTIONS(999), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(999), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(999), - [anon_sym_CARET] = ACTIONS(999), + [1683] = { + [sym_comment] = STATE(1683), + [ts_builtin_sym_end] = ACTIONS(1209), + [anon_sym_export] = ACTIONS(1139), + [anon_sym_alias] = ACTIONS(1139), + [anon_sym_let] = ACTIONS(1139), + [anon_sym_let_DASHenv] = ACTIONS(1139), + [anon_sym_mut] = ACTIONS(1139), + [anon_sym_const] = ACTIONS(1139), + [anon_sym_SEMI] = ACTIONS(1139), + [sym_cmd_identifier] = ACTIONS(1139), + [anon_sym_LF] = ACTIONS(1209), + [anon_sym_def] = ACTIONS(1139), + [anon_sym_export_DASHenv] = ACTIONS(1139), + [anon_sym_extern] = ACTIONS(1139), + [anon_sym_module] = ACTIONS(1139), + [anon_sym_use] = ACTIONS(1139), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LPAREN] = ACTIONS(1139), + [anon_sym_DOLLAR] = ACTIONS(1139), + [anon_sym_error] = ACTIONS(1139), + [anon_sym_DASH_DASH] = ACTIONS(1139), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_break] = ACTIONS(1139), + [anon_sym_continue] = ACTIONS(1139), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_loop] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1139), + [anon_sym_do] = ACTIONS(1139), + [anon_sym_if] = ACTIONS(1139), + [anon_sym_match] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1139), + [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_try] = ACTIONS(1139), + [anon_sym_return] = ACTIONS(1139), + [anon_sym_source] = ACTIONS(1139), + [anon_sym_source_DASHenv] = ACTIONS(1139), + [anon_sym_register] = ACTIONS(1139), + [anon_sym_hide] = ACTIONS(1139), + [anon_sym_hide_DASHenv] = ACTIONS(1139), + [anon_sym_overlay] = ACTIONS(1139), + [anon_sym_as] = ACTIONS(1139), + [anon_sym_where] = ACTIONS(1139), + [anon_sym_not] = ACTIONS(1139), + [anon_sym_LPAREN2] = ACTIONS(1209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1139), + [anon_sym_DOT_DOT_LT] = ACTIONS(1139), + [anon_sym_null] = ACTIONS(1139), + [anon_sym_true] = ACTIONS(1139), + [anon_sym_false] = ACTIONS(1139), + [aux_sym__val_number_decimal_token1] = ACTIONS(1139), + [aux_sym__val_number_decimal_token2] = ACTIONS(1139), + [anon_sym_DOT2] = ACTIONS(1139), + [aux_sym__val_number_decimal_token3] = ACTIONS(1139), + [aux_sym__val_number_token1] = ACTIONS(1139), + [aux_sym__val_number_token2] = ACTIONS(1139), + [aux_sym__val_number_token3] = ACTIONS(1139), + [aux_sym__val_number_token4] = ACTIONS(1139), + [aux_sym__val_number_token5] = ACTIONS(1139), + [aux_sym__val_number_token6] = ACTIONS(1139), + [anon_sym_0b] = ACTIONS(1139), + [anon_sym_0o] = ACTIONS(1139), + [anon_sym_0x] = ACTIONS(1139), + [sym_val_date] = ACTIONS(1139), + [anon_sym_DQUOTE] = ACTIONS(1139), + [sym__str_single_quotes] = ACTIONS(1139), + [sym__str_back_ticks] = ACTIONS(1139), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1139), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1139), + [anon_sym_CARET] = ACTIONS(1139), [anon_sym_POUND] = ACTIONS(113), }, - [1473] = { - [sym__expression] = STATE(4409), - [sym_expr_unary] = STATE(2390), - [sym__expr_unary_minus] = STATE(2361), - [sym_expr_binary] = STATE(2390), - [sym__expr_binary_expression] = STATE(6814), - [sym_expr_parenthesized] = STATE(1591), - [sym_val_range] = STATE(4464), - [sym__val_range] = STATE(10709), - [sym__value] = STATE(2390), - [sym_val_nothing] = STATE(2439), - [sym_val_bool] = STATE(1916), - [sym_val_variable] = STATE(1495), - [sym__var] = STATE(1249), - [sym_val_number] = STATE(2439), - [sym__val_number_decimal] = STATE(1179), - [sym__val_number] = STATE(2441), - [sym_val_duration] = STATE(2439), - [sym_val_filesize] = STATE(2439), - [sym_val_binary] = STATE(2439), - [sym_val_string] = STATE(2439), - [sym__str_double_quotes] = STATE(2440), - [sym_val_interpolated] = STATE(2439), - [sym__inter_single_quotes] = STATE(2453), - [sym__inter_double_quotes] = STATE(2454), - [sym_val_list] = STATE(2439), - [sym_val_record] = STATE(2439), - [sym_val_table] = STATE(2439), - [sym_val_closure] = STATE(2439), - [sym_unquoted] = STATE(4410), - [sym__unquoted_anonymous_prefix] = STATE(10871), - [sym_comment] = STATE(1473), - [anon_sym_LBRACK] = ACTIONS(4481), - [anon_sym_LPAREN] = ACTIONS(4483), - [anon_sym_DOLLAR] = ACTIONS(4485), - [anon_sym_DASH] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4489), - [anon_sym_DOT_DOT] = ACTIONS(4491), - [anon_sym_not] = ACTIONS(4493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4495), - [anon_sym_DOT_DOT_LT] = ACTIONS(4495), - [anon_sym_null] = ACTIONS(4497), - [anon_sym_true] = ACTIONS(4499), - [anon_sym_false] = ACTIONS(4499), - [aux_sym__val_number_decimal_token1] = ACTIONS(4501), - [aux_sym__val_number_decimal_token2] = ACTIONS(4503), - [anon_sym_DOT2] = ACTIONS(4505), - [aux_sym__val_number_decimal_token3] = ACTIONS(4507), - [aux_sym__val_number_token1] = ACTIONS(4509), - [aux_sym__val_number_token2] = ACTIONS(4509), - [aux_sym__val_number_token3] = ACTIONS(4509), - [aux_sym__val_number_token4] = ACTIONS(4511), - [aux_sym__val_number_token5] = ACTIONS(4511), - [aux_sym__val_number_token6] = ACTIONS(4511), - [anon_sym_0b] = ACTIONS(4513), - [anon_sym_0o] = ACTIONS(4515), - [anon_sym_0x] = ACTIONS(4515), - [sym_val_date] = ACTIONS(4517), - [anon_sym_DQUOTE] = ACTIONS(4519), - [sym__str_single_quotes] = ACTIONS(4521), - [sym__str_back_ticks] = ACTIONS(4521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4525), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(4527), + [1684] = { + [sym_comment] = STATE(1684), + [anon_sym_export] = ACTIONS(5151), + [anon_sym_alias] = ACTIONS(5151), + [anon_sym_let] = ACTIONS(5151), + [anon_sym_let_DASHenv] = ACTIONS(5151), + [anon_sym_mut] = ACTIONS(5151), + [anon_sym_const] = ACTIONS(5151), + [anon_sym_SEMI] = ACTIONS(5151), + [sym_cmd_identifier] = ACTIONS(5151), + [anon_sym_LF] = ACTIONS(5153), + [anon_sym_def] = ACTIONS(5151), + [anon_sym_export_DASHenv] = ACTIONS(5151), + [anon_sym_extern] = ACTIONS(5151), + [anon_sym_module] = ACTIONS(5151), + [anon_sym_use] = ACTIONS(5151), + [anon_sym_LBRACK] = ACTIONS(5151), + [anon_sym_LPAREN] = ACTIONS(5151), + [anon_sym_RPAREN] = ACTIONS(5151), + [anon_sym_DOLLAR] = ACTIONS(5151), + [anon_sym_error] = ACTIONS(5151), + [anon_sym_DASH_DASH] = ACTIONS(5151), + [anon_sym_DASH] = ACTIONS(5151), + [anon_sym_break] = ACTIONS(5151), + [anon_sym_continue] = ACTIONS(5151), + [anon_sym_for] = ACTIONS(5151), + [anon_sym_loop] = ACTIONS(5151), + [anon_sym_while] = ACTIONS(5151), + [anon_sym_do] = ACTIONS(5151), + [anon_sym_if] = ACTIONS(5151), + [anon_sym_match] = ACTIONS(5151), + [anon_sym_LBRACE] = ACTIONS(5151), + [anon_sym_RBRACE] = ACTIONS(5151), + [anon_sym_DOT_DOT] = ACTIONS(5151), + [anon_sym_try] = ACTIONS(5151), + [anon_sym_return] = ACTIONS(5151), + [anon_sym_source] = ACTIONS(5151), + [anon_sym_source_DASHenv] = ACTIONS(5151), + [anon_sym_register] = ACTIONS(5151), + [anon_sym_hide] = ACTIONS(5151), + [anon_sym_hide_DASHenv] = ACTIONS(5151), + [anon_sym_overlay] = ACTIONS(5151), + [anon_sym_as] = ACTIONS(5151), + [anon_sym_where] = ACTIONS(5151), + [anon_sym_not] = ACTIONS(5151), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5151), + [anon_sym_DOT_DOT_LT] = ACTIONS(5151), + [anon_sym_null] = ACTIONS(5151), + [anon_sym_true] = ACTIONS(5151), + [anon_sym_false] = ACTIONS(5151), + [aux_sym__val_number_decimal_token1] = ACTIONS(5151), + [aux_sym__val_number_decimal_token2] = ACTIONS(5151), + [anon_sym_DOT2] = ACTIONS(5151), + [aux_sym__val_number_decimal_token3] = ACTIONS(5151), + [aux_sym__val_number_token1] = ACTIONS(5151), + [aux_sym__val_number_token2] = ACTIONS(5151), + [aux_sym__val_number_token3] = ACTIONS(5151), + [aux_sym__val_number_token4] = ACTIONS(5151), + [aux_sym__val_number_token5] = ACTIONS(5151), + [aux_sym__val_number_token6] = ACTIONS(5151), + [anon_sym_0b] = ACTIONS(5151), + [anon_sym_0o] = ACTIONS(5151), + [anon_sym_0x] = ACTIONS(5151), + [sym_val_date] = ACTIONS(5151), + [anon_sym_DQUOTE] = ACTIONS(5151), + [sym__str_single_quotes] = ACTIONS(5151), + [sym__str_back_ticks] = ACTIONS(5151), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5151), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5151), + [anon_sym_CARET] = ACTIONS(5151), + [anon_sym_POUND] = ACTIONS(113), + }, + [1685] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6345), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6234), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4982), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5572), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1685), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(5035), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4787), + [anon_sym_DOT_DOT_LT] = ACTIONS(4787), + [anon_sym_null] = ACTIONS(3669), + [anon_sym_true] = ACTIONS(3671), + [anon_sym_false] = ACTIONS(3671), + [aux_sym__val_number_decimal_token1] = ACTIONS(3673), + [aux_sym__val_number_decimal_token2] = ACTIONS(3675), + [anon_sym_DOT2] = ACTIONS(5037), + [aux_sym__val_number_decimal_token3] = ACTIONS(3679), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(3681), + [aux_sym__val_number_token5] = ACTIONS(3681), + [aux_sym__val_number_token6] = ACTIONS(3681), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(3683), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), [anon_sym_POUND] = ACTIONS(3), }, - [1474] = { - [sym__expr_parenthesized_immediate] = STATE(11424), - [sym_comment] = STATE(1474), - [anon_sym_export] = ACTIONS(4529), - [anon_sym_alias] = ACTIONS(4529), - [anon_sym_let] = ACTIONS(4529), - [anon_sym_let_DASHenv] = ACTIONS(4529), - [anon_sym_mut] = ACTIONS(4529), - [anon_sym_const] = ACTIONS(4529), - [anon_sym_SEMI] = ACTIONS(4529), - [sym_cmd_identifier] = ACTIONS(4529), - [anon_sym_LF] = ACTIONS(4531), - [anon_sym_def] = ACTIONS(4529), - [anon_sym_export_DASHenv] = ACTIONS(4529), - [anon_sym_extern] = ACTIONS(4529), - [anon_sym_module] = ACTIONS(4529), - [anon_sym_use] = ACTIONS(4529), - [anon_sym_LBRACK] = ACTIONS(4529), - [anon_sym_LPAREN] = ACTIONS(4529), - [anon_sym_RPAREN] = ACTIONS(4529), - [anon_sym_DOLLAR] = ACTIONS(4529), - [anon_sym_error] = ACTIONS(4529), - [anon_sym_DASH_DASH] = ACTIONS(4529), - [anon_sym_DASH] = ACTIONS(4529), - [anon_sym_break] = ACTIONS(4529), - [anon_sym_continue] = ACTIONS(4529), - [anon_sym_for] = ACTIONS(4529), - [anon_sym_loop] = ACTIONS(4529), - [anon_sym_while] = ACTIONS(4529), - [anon_sym_do] = ACTIONS(4529), - [anon_sym_if] = ACTIONS(4529), - [anon_sym_match] = ACTIONS(4529), - [anon_sym_LBRACE] = ACTIONS(4529), - [anon_sym_RBRACE] = ACTIONS(4529), - [anon_sym_DOT_DOT] = ACTIONS(4529), - [anon_sym_try] = ACTIONS(4529), - [anon_sym_return] = ACTIONS(4529), - [anon_sym_source] = ACTIONS(4529), - [anon_sym_source_DASHenv] = ACTIONS(4529), - [anon_sym_register] = ACTIONS(4529), - [anon_sym_hide] = ACTIONS(4529), - [anon_sym_hide_DASHenv] = ACTIONS(4529), - [anon_sym_overlay] = ACTIONS(4529), - [anon_sym_as] = ACTIONS(4529), - [anon_sym_where] = ACTIONS(4529), - [anon_sym_not] = ACTIONS(4529), - [anon_sym_LPAREN2] = ACTIONS(2397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4529), - [anon_sym_DOT_DOT_LT] = ACTIONS(4529), - [anon_sym_null] = ACTIONS(4529), - [anon_sym_true] = ACTIONS(4529), - [anon_sym_false] = ACTIONS(4529), - [aux_sym__val_number_decimal_token1] = ACTIONS(4529), - [aux_sym__val_number_decimal_token2] = ACTIONS(4529), - [anon_sym_DOT2] = ACTIONS(4529), - [aux_sym__val_number_decimal_token3] = ACTIONS(4529), - [aux_sym__val_number_token1] = ACTIONS(4529), - [aux_sym__val_number_token2] = ACTIONS(4529), - [aux_sym__val_number_token3] = ACTIONS(4529), - [aux_sym__val_number_token4] = ACTIONS(4529), - [aux_sym__val_number_token5] = ACTIONS(4529), - [aux_sym__val_number_token6] = ACTIONS(4529), - [anon_sym_0b] = ACTIONS(4529), - [anon_sym_0o] = ACTIONS(4529), - [anon_sym_0x] = ACTIONS(4529), - [sym_val_date] = ACTIONS(4529), - [anon_sym_DQUOTE] = ACTIONS(4529), - [sym__str_single_quotes] = ACTIONS(4529), - [sym__str_back_ticks] = ACTIONS(4529), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4529), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4529), - [anon_sym_CARET] = ACTIONS(4529), - [anon_sym_POUND] = ACTIONS(113), + [1686] = { + [sym_expr_unary] = STATE(2141), + [sym__expr_unary_minus] = STATE(2114), + [sym_expr_binary] = STATE(2141), + [sym__expr_binary_expression] = STATE(2249), + [sym_expr_parenthesized] = STATE(2141), + [sym__val_range] = STATE(10172), + [sym__value] = STATE(2141), + [sym_val_nothing] = STATE(2022), + [sym_val_bool] = STATE(1448), + [sym_val_variable] = STATE(2022), + [sym__var] = STATE(1172), + [sym_val_number] = STATE(2022), + [sym__val_number_decimal] = STATE(946), + [sym__val_number] = STATE(2176), + [sym_val_duration] = STATE(2022), + [sym_val_filesize] = STATE(2022), + [sym_val_binary] = STATE(2022), + [sym_val_string] = STATE(2022), + [sym__str_double_quotes] = STATE(2201), + [sym_val_interpolated] = STATE(2022), + [sym__inter_single_quotes] = STATE(2202), + [sym__inter_double_quotes] = STATE(2203), + [sym_val_list] = STATE(2022), + [sym_val_record] = STATE(2022), + [sym_val_table] = STATE(2022), + [sym_val_closure] = STATE(2022), + [sym_unquoted] = STATE(2143), + [sym__unquoted_anonymous_prefix] = STATE(10541), + [sym_comment] = STATE(1686), + [anon_sym_LBRACK] = ACTIONS(5155), + [anon_sym_LPAREN] = ACTIONS(5157), + [anon_sym_DOLLAR] = ACTIONS(5159), + [anon_sym_DASH] = ACTIONS(5161), + [anon_sym_LBRACE] = ACTIONS(5163), + [anon_sym_DOT_DOT] = ACTIONS(5165), + [anon_sym_not] = ACTIONS(5167), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5169), + [anon_sym_DOT_DOT_LT] = ACTIONS(5169), + [anon_sym_null] = ACTIONS(5171), + [anon_sym_true] = ACTIONS(5173), + [anon_sym_false] = ACTIONS(5173), + [aux_sym__val_number_decimal_token1] = ACTIONS(5175), + [aux_sym__val_number_decimal_token2] = ACTIONS(5177), + [anon_sym_DOT2] = ACTIONS(5179), + [aux_sym__val_number_decimal_token3] = ACTIONS(5181), + [aux_sym__val_number_token1] = ACTIONS(5183), + [aux_sym__val_number_token2] = ACTIONS(5183), + [aux_sym__val_number_token3] = ACTIONS(5183), + [aux_sym__val_number_token4] = ACTIONS(5185), + [aux_sym__val_number_token5] = ACTIONS(5185), + [aux_sym__val_number_token6] = ACTIONS(5185), + [anon_sym_0b] = ACTIONS(5187), + [anon_sym_0o] = ACTIONS(5189), + [anon_sym_0x] = ACTIONS(5189), + [sym_val_date] = ACTIONS(5191), + [anon_sym_DQUOTE] = ACTIONS(5193), + [sym__str_single_quotes] = ACTIONS(5195), + [sym__str_back_ticks] = ACTIONS(5195), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5197), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5199), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5201), + [anon_sym_POUND] = ACTIONS(3), }, - [1475] = { - [sym_comment] = STATE(1475), - [ts_builtin_sym_end] = ACTIONS(4002), - [anon_sym_export] = ACTIONS(4000), - [anon_sym_alias] = ACTIONS(4000), - [anon_sym_let] = ACTIONS(4000), - [anon_sym_let_DASHenv] = ACTIONS(4000), - [anon_sym_mut] = ACTIONS(4000), - [anon_sym_const] = ACTIONS(4000), - [anon_sym_SEMI] = ACTIONS(4000), - [sym_cmd_identifier] = ACTIONS(4000), - [anon_sym_LF] = ACTIONS(4002), - [anon_sym_def] = ACTIONS(4000), - [anon_sym_export_DASHenv] = ACTIONS(4000), - [anon_sym_extern] = ACTIONS(4000), - [anon_sym_module] = ACTIONS(4000), - [anon_sym_use] = ACTIONS(4000), - [anon_sym_LBRACK] = ACTIONS(4000), - [anon_sym_LPAREN] = ACTIONS(4000), - [anon_sym_DOLLAR] = ACTIONS(4000), - [anon_sym_error] = ACTIONS(4000), - [anon_sym_DASH_DASH] = ACTIONS(4000), - [anon_sym_DASH] = ACTIONS(4000), - [anon_sym_break] = ACTIONS(4000), - [anon_sym_continue] = ACTIONS(4000), - [anon_sym_for] = ACTIONS(4000), - [anon_sym_loop] = ACTIONS(4000), - [anon_sym_while] = ACTIONS(4000), - [anon_sym_do] = ACTIONS(4000), - [anon_sym_if] = ACTIONS(4000), - [anon_sym_match] = ACTIONS(4000), - [anon_sym_LBRACE] = ACTIONS(4000), - [anon_sym_DOT_DOT] = ACTIONS(4000), - [anon_sym_try] = ACTIONS(4000), - [anon_sym_return] = ACTIONS(4000), - [anon_sym_source] = ACTIONS(4000), - [anon_sym_source_DASHenv] = ACTIONS(4000), - [anon_sym_register] = ACTIONS(4000), - [anon_sym_hide] = ACTIONS(4000), - [anon_sym_hide_DASHenv] = ACTIONS(4000), - [anon_sym_overlay] = ACTIONS(4000), - [anon_sym_as] = ACTIONS(4000), - [anon_sym_where] = ACTIONS(4000), - [anon_sym_not] = ACTIONS(4000), - [anon_sym_DOT_DOT2] = ACTIONS(4000), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4000), - [anon_sym_DOT_DOT_LT] = ACTIONS(4000), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4002), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4002), - [anon_sym_null] = ACTIONS(4000), - [anon_sym_true] = ACTIONS(4000), - [anon_sym_false] = ACTIONS(4000), - [aux_sym__val_number_decimal_token1] = ACTIONS(4000), - [aux_sym__val_number_decimal_token2] = ACTIONS(4000), - [anon_sym_DOT2] = ACTIONS(4000), - [aux_sym__val_number_decimal_token3] = ACTIONS(4000), - [aux_sym__val_number_token1] = ACTIONS(4000), - [aux_sym__val_number_token2] = ACTIONS(4000), - [aux_sym__val_number_token3] = ACTIONS(4000), - [aux_sym__val_number_token4] = ACTIONS(4000), - [aux_sym__val_number_token5] = ACTIONS(4000), - [aux_sym__val_number_token6] = ACTIONS(4000), - [anon_sym_0b] = ACTIONS(4000), - [anon_sym_0o] = ACTIONS(4000), - [anon_sym_0x] = ACTIONS(4000), - [sym_val_date] = ACTIONS(4000), - [anon_sym_DQUOTE] = ACTIONS(4000), - [sym__str_single_quotes] = ACTIONS(4000), - [sym__str_back_ticks] = ACTIONS(4000), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4000), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4000), - [anon_sym_CARET] = ACTIONS(4000), - [anon_sym_POUND] = ACTIONS(113), + [1687] = { + [sym_expr_unary] = STATE(2141), + [sym__expr_unary_minus] = STATE(2114), + [sym_expr_binary] = STATE(2141), + [sym__expr_binary_expression] = STATE(2250), + [sym_expr_parenthesized] = STATE(2141), + [sym__val_range] = STATE(10172), + [sym__value] = STATE(2141), + [sym_val_nothing] = STATE(2022), + [sym_val_bool] = STATE(1448), + [sym_val_variable] = STATE(2022), + [sym__var] = STATE(1172), + [sym_val_number] = STATE(2022), + [sym__val_number_decimal] = STATE(946), + [sym__val_number] = STATE(2176), + [sym_val_duration] = STATE(2022), + [sym_val_filesize] = STATE(2022), + [sym_val_binary] = STATE(2022), + [sym_val_string] = STATE(2022), + [sym__str_double_quotes] = STATE(2201), + [sym_val_interpolated] = STATE(2022), + [sym__inter_single_quotes] = STATE(2202), + [sym__inter_double_quotes] = STATE(2203), + [sym_val_list] = STATE(2022), + [sym_val_record] = STATE(2022), + [sym_val_table] = STATE(2022), + [sym_val_closure] = STATE(2022), + [sym_unquoted] = STATE(2144), + [sym__unquoted_anonymous_prefix] = STATE(10541), + [sym_comment] = STATE(1687), + [anon_sym_LBRACK] = ACTIONS(5155), + [anon_sym_LPAREN] = ACTIONS(5157), + [anon_sym_DOLLAR] = ACTIONS(5159), + [anon_sym_DASH] = ACTIONS(5161), + [anon_sym_LBRACE] = ACTIONS(5163), + [anon_sym_DOT_DOT] = ACTIONS(5165), + [anon_sym_not] = ACTIONS(5167), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5169), + [anon_sym_DOT_DOT_LT] = ACTIONS(5169), + [anon_sym_null] = ACTIONS(5171), + [anon_sym_true] = ACTIONS(5173), + [anon_sym_false] = ACTIONS(5173), + [aux_sym__val_number_decimal_token1] = ACTIONS(5175), + [aux_sym__val_number_decimal_token2] = ACTIONS(5177), + [anon_sym_DOT2] = ACTIONS(5179), + [aux_sym__val_number_decimal_token3] = ACTIONS(5181), + [aux_sym__val_number_token1] = ACTIONS(5183), + [aux_sym__val_number_token2] = ACTIONS(5183), + [aux_sym__val_number_token3] = ACTIONS(5183), + [aux_sym__val_number_token4] = ACTIONS(5185), + [aux_sym__val_number_token5] = ACTIONS(5185), + [aux_sym__val_number_token6] = ACTIONS(5185), + [anon_sym_0b] = ACTIONS(5187), + [anon_sym_0o] = ACTIONS(5189), + [anon_sym_0x] = ACTIONS(5189), + [sym_val_date] = ACTIONS(5191), + [anon_sym_DQUOTE] = ACTIONS(5193), + [sym__str_single_quotes] = ACTIONS(5195), + [sym__str_back_ticks] = ACTIONS(5195), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5197), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5199), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5201), + [anon_sym_POUND] = ACTIONS(3), }, - [1476] = { - [sym__expr_parenthesized_immediate] = STATE(11424), - [sym_comment] = STATE(1476), - [anon_sym_export] = ACTIONS(4533), - [anon_sym_alias] = ACTIONS(4533), - [anon_sym_let] = ACTIONS(4533), - [anon_sym_let_DASHenv] = ACTIONS(4533), - [anon_sym_mut] = ACTIONS(4533), - [anon_sym_const] = ACTIONS(4533), - [anon_sym_SEMI] = ACTIONS(4533), - [sym_cmd_identifier] = ACTIONS(4533), - [anon_sym_LF] = ACTIONS(4535), - [anon_sym_def] = ACTIONS(4533), - [anon_sym_export_DASHenv] = ACTIONS(4533), - [anon_sym_extern] = ACTIONS(4533), - [anon_sym_module] = ACTIONS(4533), - [anon_sym_use] = ACTIONS(4533), - [anon_sym_LBRACK] = ACTIONS(4533), - [anon_sym_LPAREN] = ACTIONS(4533), - [anon_sym_RPAREN] = ACTIONS(4533), - [anon_sym_DOLLAR] = ACTIONS(4533), - [anon_sym_error] = ACTIONS(4533), - [anon_sym_DASH_DASH] = ACTIONS(4533), - [anon_sym_DASH] = ACTIONS(4533), - [anon_sym_break] = ACTIONS(4533), - [anon_sym_continue] = ACTIONS(4533), - [anon_sym_for] = ACTIONS(4533), - [anon_sym_loop] = ACTIONS(4533), - [anon_sym_while] = ACTIONS(4533), - [anon_sym_do] = ACTIONS(4533), - [anon_sym_if] = ACTIONS(4533), - [anon_sym_match] = ACTIONS(4533), - [anon_sym_LBRACE] = ACTIONS(4533), - [anon_sym_RBRACE] = ACTIONS(4533), - [anon_sym_DOT_DOT] = ACTIONS(4533), - [anon_sym_try] = ACTIONS(4533), - [anon_sym_return] = ACTIONS(4533), - [anon_sym_source] = ACTIONS(4533), - [anon_sym_source_DASHenv] = ACTIONS(4533), - [anon_sym_register] = ACTIONS(4533), - [anon_sym_hide] = ACTIONS(4533), - [anon_sym_hide_DASHenv] = ACTIONS(4533), - [anon_sym_overlay] = ACTIONS(4533), - [anon_sym_as] = ACTIONS(4533), - [anon_sym_where] = ACTIONS(4533), - [anon_sym_not] = ACTIONS(4533), - [anon_sym_LPAREN2] = ACTIONS(2397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4533), - [anon_sym_DOT_DOT_LT] = ACTIONS(4533), - [anon_sym_null] = ACTIONS(4533), - [anon_sym_true] = ACTIONS(4533), - [anon_sym_false] = ACTIONS(4533), - [aux_sym__val_number_decimal_token1] = ACTIONS(4533), - [aux_sym__val_number_decimal_token2] = ACTIONS(4533), - [anon_sym_DOT2] = ACTIONS(4533), - [aux_sym__val_number_decimal_token3] = ACTIONS(4533), - [aux_sym__val_number_token1] = ACTIONS(4533), - [aux_sym__val_number_token2] = ACTIONS(4533), - [aux_sym__val_number_token3] = ACTIONS(4533), - [aux_sym__val_number_token4] = ACTIONS(4533), - [aux_sym__val_number_token5] = ACTIONS(4533), - [aux_sym__val_number_token6] = ACTIONS(4533), - [anon_sym_0b] = ACTIONS(4533), - [anon_sym_0o] = ACTIONS(4533), - [anon_sym_0x] = ACTIONS(4533), - [sym_val_date] = ACTIONS(4533), - [anon_sym_DQUOTE] = ACTIONS(4533), - [sym__str_single_quotes] = ACTIONS(4533), - [sym__str_back_ticks] = ACTIONS(4533), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4533), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4533), - [anon_sym_CARET] = ACTIONS(4533), - [anon_sym_POUND] = ACTIONS(113), + [1688] = { + [sym_expr_unary] = STATE(2141), + [sym__expr_unary_minus] = STATE(2114), + [sym_expr_binary] = STATE(2141), + [sym__expr_binary_expression] = STATE(2252), + [sym_expr_parenthesized] = STATE(2141), + [sym__val_range] = STATE(10172), + [sym__value] = STATE(2141), + [sym_val_nothing] = STATE(2022), + [sym_val_bool] = STATE(1448), + [sym_val_variable] = STATE(2022), + [sym__var] = STATE(1172), + [sym_val_number] = STATE(2022), + [sym__val_number_decimal] = STATE(946), + [sym__val_number] = STATE(2176), + [sym_val_duration] = STATE(2022), + [sym_val_filesize] = STATE(2022), + [sym_val_binary] = STATE(2022), + [sym_val_string] = STATE(2022), + [sym__str_double_quotes] = STATE(2201), + [sym_val_interpolated] = STATE(2022), + [sym__inter_single_quotes] = STATE(2202), + [sym__inter_double_quotes] = STATE(2203), + [sym_val_list] = STATE(2022), + [sym_val_record] = STATE(2022), + [sym_val_table] = STATE(2022), + [sym_val_closure] = STATE(2022), + [sym_unquoted] = STATE(2146), + [sym__unquoted_anonymous_prefix] = STATE(10541), + [sym_comment] = STATE(1688), + [anon_sym_LBRACK] = ACTIONS(5155), + [anon_sym_LPAREN] = ACTIONS(5157), + [anon_sym_DOLLAR] = ACTIONS(5159), + [anon_sym_DASH] = ACTIONS(5161), + [anon_sym_LBRACE] = ACTIONS(5163), + [anon_sym_DOT_DOT] = ACTIONS(5165), + [anon_sym_not] = ACTIONS(5167), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5169), + [anon_sym_DOT_DOT_LT] = ACTIONS(5169), + [anon_sym_null] = ACTIONS(5171), + [anon_sym_true] = ACTIONS(5173), + [anon_sym_false] = ACTIONS(5173), + [aux_sym__val_number_decimal_token1] = ACTIONS(5175), + [aux_sym__val_number_decimal_token2] = ACTIONS(5177), + [anon_sym_DOT2] = ACTIONS(5179), + [aux_sym__val_number_decimal_token3] = ACTIONS(5181), + [aux_sym__val_number_token1] = ACTIONS(5183), + [aux_sym__val_number_token2] = ACTIONS(5183), + [aux_sym__val_number_token3] = ACTIONS(5183), + [aux_sym__val_number_token4] = ACTIONS(5185), + [aux_sym__val_number_token5] = ACTIONS(5185), + [aux_sym__val_number_token6] = ACTIONS(5185), + [anon_sym_0b] = ACTIONS(5187), + [anon_sym_0o] = ACTIONS(5189), + [anon_sym_0x] = ACTIONS(5189), + [sym_val_date] = ACTIONS(5191), + [anon_sym_DQUOTE] = ACTIONS(5193), + [sym__str_single_quotes] = ACTIONS(5195), + [sym__str_back_ticks] = ACTIONS(5195), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5197), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5199), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5201), + [anon_sym_POUND] = ACTIONS(3), }, - [1477] = { - [sym__expression] = STATE(4295), - [sym_expr_unary] = STATE(1839), - [sym__expr_unary_minus] = STATE(1818), - [sym_expr_binary] = STATE(1839), - [sym__expr_binary_expression] = STATE(6815), - [sym_expr_parenthesized] = STATE(1347), - [sym_val_range] = STATE(4315), - [sym__val_range] = STATE(10717), - [sym__value] = STATE(1839), - [sym_val_nothing] = STATE(1872), - [sym_val_bool] = STATE(1606), - [sym_val_variable] = STATE(1385), - [sym__var] = STATE(1221), - [sym_val_number] = STATE(1872), - [sym__val_number_decimal] = STATE(1150), - [sym__val_number] = STATE(1873), - [sym_val_duration] = STATE(1872), - [sym_val_filesize] = STATE(1872), - [sym_val_binary] = STATE(1872), - [sym_val_string] = STATE(1872), - [sym__str_double_quotes] = STATE(1883), - [sym_val_interpolated] = STATE(1872), - [sym__inter_single_quotes] = STATE(1884), - [sym__inter_double_quotes] = STATE(1885), - [sym_val_list] = STATE(1872), - [sym_val_record] = STATE(1872), - [sym_val_table] = STATE(1872), - [sym_val_closure] = STATE(1872), - [sym_unquoted] = STATE(4299), - [sym__unquoted_anonymous_prefix] = STATE(11325), - [sym_comment] = STATE(1477), - [anon_sym_LBRACK] = ACTIONS(4537), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_DOLLAR] = ACTIONS(4541), - [anon_sym_DASH] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(4545), - [anon_sym_DOT_DOT] = ACTIONS(4547), - [anon_sym_not] = ACTIONS(4549), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4551), - [anon_sym_DOT_DOT_LT] = ACTIONS(4551), - [anon_sym_null] = ACTIONS(4553), - [anon_sym_true] = ACTIONS(4555), - [anon_sym_false] = ACTIONS(4555), - [aux_sym__val_number_decimal_token1] = ACTIONS(4557), - [aux_sym__val_number_decimal_token2] = ACTIONS(4559), - [anon_sym_DOT2] = ACTIONS(4561), - [aux_sym__val_number_decimal_token3] = ACTIONS(4563), - [aux_sym__val_number_token1] = ACTIONS(4565), - [aux_sym__val_number_token2] = ACTIONS(4565), - [aux_sym__val_number_token3] = ACTIONS(4565), - [aux_sym__val_number_token4] = ACTIONS(4567), - [aux_sym__val_number_token5] = ACTIONS(4567), - [aux_sym__val_number_token6] = ACTIONS(4567), - [anon_sym_0b] = ACTIONS(4569), - [anon_sym_0o] = ACTIONS(4571), - [anon_sym_0x] = ACTIONS(4571), - [sym_val_date] = ACTIONS(4573), - [anon_sym_DQUOTE] = ACTIONS(4575), - [sym__str_single_quotes] = ACTIONS(4577), - [sym__str_back_ticks] = ACTIONS(4577), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4581), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(4583), + [1689] = { + [sym_expr_unary] = STATE(2141), + [sym__expr_unary_minus] = STATE(2114), + [sym_expr_binary] = STATE(2141), + [sym__expr_binary_expression] = STATE(2254), + [sym_expr_parenthesized] = STATE(2141), + [sym__val_range] = STATE(10172), + [sym__value] = STATE(2141), + [sym_val_nothing] = STATE(2022), + [sym_val_bool] = STATE(1448), + [sym_val_variable] = STATE(2022), + [sym__var] = STATE(1172), + [sym_val_number] = STATE(2022), + [sym__val_number_decimal] = STATE(946), + [sym__val_number] = STATE(2176), + [sym_val_duration] = STATE(2022), + [sym_val_filesize] = STATE(2022), + [sym_val_binary] = STATE(2022), + [sym_val_string] = STATE(2022), + [sym__str_double_quotes] = STATE(2201), + [sym_val_interpolated] = STATE(2022), + [sym__inter_single_quotes] = STATE(2202), + [sym__inter_double_quotes] = STATE(2203), + [sym_val_list] = STATE(2022), + [sym_val_record] = STATE(2022), + [sym_val_table] = STATE(2022), + [sym_val_closure] = STATE(2022), + [sym_unquoted] = STATE(2152), + [sym__unquoted_anonymous_prefix] = STATE(10541), + [sym_comment] = STATE(1689), + [anon_sym_LBRACK] = ACTIONS(5155), + [anon_sym_LPAREN] = ACTIONS(5157), + [anon_sym_DOLLAR] = ACTIONS(5159), + [anon_sym_DASH] = ACTIONS(5161), + [anon_sym_LBRACE] = ACTIONS(5163), + [anon_sym_DOT_DOT] = ACTIONS(5165), + [anon_sym_not] = ACTIONS(5167), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5169), + [anon_sym_DOT_DOT_LT] = ACTIONS(5169), + [anon_sym_null] = ACTIONS(5171), + [anon_sym_true] = ACTIONS(5173), + [anon_sym_false] = ACTIONS(5173), + [aux_sym__val_number_decimal_token1] = ACTIONS(5175), + [aux_sym__val_number_decimal_token2] = ACTIONS(5177), + [anon_sym_DOT2] = ACTIONS(5179), + [aux_sym__val_number_decimal_token3] = ACTIONS(5181), + [aux_sym__val_number_token1] = ACTIONS(5183), + [aux_sym__val_number_token2] = ACTIONS(5183), + [aux_sym__val_number_token3] = ACTIONS(5183), + [aux_sym__val_number_token4] = ACTIONS(5185), + [aux_sym__val_number_token5] = ACTIONS(5185), + [aux_sym__val_number_token6] = ACTIONS(5185), + [anon_sym_0b] = ACTIONS(5187), + [anon_sym_0o] = ACTIONS(5189), + [anon_sym_0x] = ACTIONS(5189), + [sym_val_date] = ACTIONS(5191), + [anon_sym_DQUOTE] = ACTIONS(5193), + [sym__str_single_quotes] = ACTIONS(5195), + [sym__str_back_ticks] = ACTIONS(5195), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5197), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5199), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5201), [anon_sym_POUND] = ACTIONS(3), }, - [1478] = { - [sym_cell_path] = STATE(2616), - [sym_path] = STATE(1497), - [sym_comment] = STATE(1478), - [anon_sym_LBRACK] = ACTIONS(1205), - [anon_sym_COMMA] = ACTIONS(1205), - [anon_sym_LPAREN] = ACTIONS(1205), - [anon_sym_DOLLAR] = ACTIONS(1205), - [anon_sym_GT] = ACTIONS(1203), - [anon_sym_DASH] = ACTIONS(1203), - [anon_sym_in] = ACTIONS(1203), - [anon_sym_LBRACE] = ACTIONS(1205), - [anon_sym_RBRACE] = ACTIONS(1205), - [anon_sym__] = ACTIONS(1203), - [anon_sym_DOT_DOT] = ACTIONS(1203), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_STAR_STAR] = ACTIONS(1205), - [anon_sym_PLUS_PLUS] = ACTIONS(1205), - [anon_sym_SLASH] = ACTIONS(1203), - [anon_sym_mod] = ACTIONS(1205), - [anon_sym_SLASH_SLASH] = ACTIONS(1205), - [anon_sym_PLUS] = ACTIONS(1203), - [anon_sym_bit_DASHshl] = ACTIONS(1205), - [anon_sym_bit_DASHshr] = ACTIONS(1205), - [anon_sym_EQ_EQ] = ACTIONS(1205), - [anon_sym_BANG_EQ] = ACTIONS(1205), - [anon_sym_LT2] = ACTIONS(1203), - [anon_sym_LT_EQ] = ACTIONS(1205), - [anon_sym_GT_EQ] = ACTIONS(1205), - [anon_sym_not_DASHin] = ACTIONS(1205), - [anon_sym_starts_DASHwith] = ACTIONS(1205), - [anon_sym_ends_DASHwith] = ACTIONS(1205), - [anon_sym_EQ_TILDE] = ACTIONS(1205), - [anon_sym_BANG_TILDE] = ACTIONS(1205), - [anon_sym_bit_DASHand] = ACTIONS(1205), - [anon_sym_bit_DASHxor] = ACTIONS(1205), - [anon_sym_bit_DASHor] = ACTIONS(1205), - [anon_sym_and] = ACTIONS(1205), - [anon_sym_xor] = ACTIONS(1205), - [anon_sym_or] = ACTIONS(1205), - [anon_sym_DOT] = ACTIONS(4585), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1205), - [anon_sym_DOT_DOT_LT] = ACTIONS(1205), - [anon_sym_null] = ACTIONS(1205), - [anon_sym_true] = ACTIONS(1205), - [anon_sym_false] = ACTIONS(1205), - [aux_sym__val_number_decimal_token1] = ACTIONS(1203), - [aux_sym__val_number_decimal_token2] = ACTIONS(1205), - [anon_sym_DOT2] = ACTIONS(1203), - [aux_sym__val_number_decimal_token3] = ACTIONS(1205), - [aux_sym__val_number_token1] = ACTIONS(1205), - [aux_sym__val_number_token2] = ACTIONS(1205), - [aux_sym__val_number_token3] = ACTIONS(1205), - [aux_sym__val_number_token4] = ACTIONS(1205), - [aux_sym__val_number_token5] = ACTIONS(1205), - [aux_sym__val_number_token6] = ACTIONS(1205), - [anon_sym_0b] = ACTIONS(1203), - [anon_sym_0o] = ACTIONS(1203), - [anon_sym_0x] = ACTIONS(1203), - [sym_val_date] = ACTIONS(1205), - [anon_sym_DQUOTE] = ACTIONS(1205), - [sym__str_single_quotes] = ACTIONS(1205), - [sym__str_back_ticks] = ACTIONS(1205), - [anon_sym_err_GT] = ACTIONS(1205), - [anon_sym_out_GT] = ACTIONS(1205), - [anon_sym_e_GT] = ACTIONS(1205), - [anon_sym_o_GT] = ACTIONS(1205), - [anon_sym_err_PLUSout_GT] = ACTIONS(1205), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1205), - [anon_sym_o_PLUSe_GT] = ACTIONS(1205), - [anon_sym_e_PLUSo_GT] = ACTIONS(1205), - [aux_sym_unquoted_token1] = ACTIONS(1203), + [1690] = { + [sym_expr_unary] = STATE(2141), + [sym__expr_unary_minus] = STATE(2114), + [sym_expr_binary] = STATE(2141), + [sym__expr_binary_expression] = STATE(2256), + [sym_expr_parenthesized] = STATE(2141), + [sym__val_range] = STATE(10172), + [sym__value] = STATE(2141), + [sym_val_nothing] = STATE(2022), + [sym_val_bool] = STATE(1448), + [sym_val_variable] = STATE(2022), + [sym__var] = STATE(1172), + [sym_val_number] = STATE(2022), + [sym__val_number_decimal] = STATE(946), + [sym__val_number] = STATE(2176), + [sym_val_duration] = STATE(2022), + [sym_val_filesize] = STATE(2022), + [sym_val_binary] = STATE(2022), + [sym_val_string] = STATE(2022), + [sym__str_double_quotes] = STATE(2201), + [sym_val_interpolated] = STATE(2022), + [sym__inter_single_quotes] = STATE(2202), + [sym__inter_double_quotes] = STATE(2203), + [sym_val_list] = STATE(2022), + [sym_val_record] = STATE(2022), + [sym_val_table] = STATE(2022), + [sym_val_closure] = STATE(2022), + [sym_unquoted] = STATE(2153), + [sym__unquoted_anonymous_prefix] = STATE(10541), + [sym_comment] = STATE(1690), + [anon_sym_LBRACK] = ACTIONS(5155), + [anon_sym_LPAREN] = ACTIONS(5157), + [anon_sym_DOLLAR] = ACTIONS(5159), + [anon_sym_DASH] = ACTIONS(5161), + [anon_sym_LBRACE] = ACTIONS(5163), + [anon_sym_DOT_DOT] = ACTIONS(5165), + [anon_sym_not] = ACTIONS(5167), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5169), + [anon_sym_DOT_DOT_LT] = ACTIONS(5169), + [anon_sym_null] = ACTIONS(5171), + [anon_sym_true] = ACTIONS(5173), + [anon_sym_false] = ACTIONS(5173), + [aux_sym__val_number_decimal_token1] = ACTIONS(5175), + [aux_sym__val_number_decimal_token2] = ACTIONS(5177), + [anon_sym_DOT2] = ACTIONS(5179), + [aux_sym__val_number_decimal_token3] = ACTIONS(5181), + [aux_sym__val_number_token1] = ACTIONS(5183), + [aux_sym__val_number_token2] = ACTIONS(5183), + [aux_sym__val_number_token3] = ACTIONS(5183), + [aux_sym__val_number_token4] = ACTIONS(5185), + [aux_sym__val_number_token5] = ACTIONS(5185), + [aux_sym__val_number_token6] = ACTIONS(5185), + [anon_sym_0b] = ACTIONS(5187), + [anon_sym_0o] = ACTIONS(5189), + [anon_sym_0x] = ACTIONS(5189), + [sym_val_date] = ACTIONS(5191), + [anon_sym_DQUOTE] = ACTIONS(5193), + [sym__str_single_quotes] = ACTIONS(5195), + [sym__str_back_ticks] = ACTIONS(5195), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5197), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5199), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5201), [anon_sym_POUND] = ACTIONS(3), }, - [1479] = { - [sym_comment] = STATE(1479), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_COMMA] = ACTIONS(1070), - [anon_sym_RBRACK] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_in] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(4587), - [anon_sym_STAR_STAR] = ACTIONS(1070), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_mod] = ACTIONS(1070), - [anon_sym_SLASH_SLASH] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_bit_DASHshl] = ACTIONS(1070), - [anon_sym_bit_DASHshr] = ACTIONS(1070), - [anon_sym_EQ_EQ] = ACTIONS(1070), - [anon_sym_BANG_EQ] = ACTIONS(1070), - [anon_sym_LT2] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1070), - [anon_sym_GT_EQ] = ACTIONS(1070), - [anon_sym_not_DASHin] = ACTIONS(1070), - [anon_sym_starts_DASHwith] = ACTIONS(1070), - [anon_sym_ends_DASHwith] = ACTIONS(1070), - [anon_sym_EQ_TILDE] = ACTIONS(1070), - [anon_sym_BANG_TILDE] = ACTIONS(1070), - [anon_sym_bit_DASHand] = ACTIONS(1070), - [anon_sym_bit_DASHxor] = ACTIONS(1070), - [anon_sym_bit_DASHor] = ACTIONS(1070), - [anon_sym_and] = ACTIONS(1070), - [anon_sym_xor] = ACTIONS(1070), - [anon_sym_or] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_null] = ACTIONS(1070), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1070), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [sym__entry_separator] = ACTIONS(1072), - [anon_sym_err_GT] = ACTIONS(1070), - [anon_sym_out_GT] = ACTIONS(1070), - [anon_sym_e_GT] = ACTIONS(1070), - [anon_sym_o_GT] = ACTIONS(1070), - [anon_sym_err_PLUSout_GT] = ACTIONS(1070), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1070), - [anon_sym_o_PLUSe_GT] = ACTIONS(1070), - [anon_sym_e_PLUSo_GT] = ACTIONS(1070), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1070), - [anon_sym_POUND] = ACTIONS(113), - }, - [1480] = { - [sym__expression] = STATE(4987), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__val_range] = STATE(10559), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(5863), - [sym_val_variable] = STATE(5342), - [sym__var] = STATE(4755), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4614), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_unquoted] = STATE(5075), - [sym__unquoted_anonymous_prefix] = STATE(11114), - [sym_comment] = STATE(1480), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(1762), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(4589), - [anon_sym_not] = ACTIONS(4591), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4593), - [anon_sym_DOT_DOT_LT] = ACTIONS(4593), - [anon_sym_null] = ACTIONS(4595), - [anon_sym_true] = ACTIONS(4597), - [anon_sym_false] = ACTIONS(4597), - [aux_sym__val_number_decimal_token1] = ACTIONS(4599), - [aux_sym__val_number_decimal_token2] = ACTIONS(4601), - [anon_sym_DOT2] = ACTIONS(4603), - [aux_sym__val_number_decimal_token3] = ACTIONS(4605), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(4607), - [aux_sym__val_number_token5] = ACTIONS(4607), - [aux_sym__val_number_token6] = ACTIONS(4607), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(4609), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(4611), + [1691] = { + [sym_expr_unary] = STATE(2141), + [sym__expr_unary_minus] = STATE(2114), + [sym_expr_binary] = STATE(2141), + [sym__expr_binary_expression] = STATE(2259), + [sym_expr_parenthesized] = STATE(2141), + [sym__val_range] = STATE(10172), + [sym__value] = STATE(2141), + [sym_val_nothing] = STATE(2022), + [sym_val_bool] = STATE(1448), + [sym_val_variable] = STATE(2022), + [sym__var] = STATE(1172), + [sym_val_number] = STATE(2022), + [sym__val_number_decimal] = STATE(946), + [sym__val_number] = STATE(2176), + [sym_val_duration] = STATE(2022), + [sym_val_filesize] = STATE(2022), + [sym_val_binary] = STATE(2022), + [sym_val_string] = STATE(2022), + [sym__str_double_quotes] = STATE(2201), + [sym_val_interpolated] = STATE(2022), + [sym__inter_single_quotes] = STATE(2202), + [sym__inter_double_quotes] = STATE(2203), + [sym_val_list] = STATE(2022), + [sym_val_record] = STATE(2022), + [sym_val_table] = STATE(2022), + [sym_val_closure] = STATE(2022), + [sym_unquoted] = STATE(2154), + [sym__unquoted_anonymous_prefix] = STATE(10541), + [sym_comment] = STATE(1691), + [anon_sym_LBRACK] = ACTIONS(5155), + [anon_sym_LPAREN] = ACTIONS(5157), + [anon_sym_DOLLAR] = ACTIONS(5159), + [anon_sym_DASH] = ACTIONS(5161), + [anon_sym_LBRACE] = ACTIONS(5163), + [anon_sym_DOT_DOT] = ACTIONS(5165), + [anon_sym_not] = ACTIONS(5167), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5169), + [anon_sym_DOT_DOT_LT] = ACTIONS(5169), + [anon_sym_null] = ACTIONS(5171), + [anon_sym_true] = ACTIONS(5173), + [anon_sym_false] = ACTIONS(5173), + [aux_sym__val_number_decimal_token1] = ACTIONS(5175), + [aux_sym__val_number_decimal_token2] = ACTIONS(5177), + [anon_sym_DOT2] = ACTIONS(5179), + [aux_sym__val_number_decimal_token3] = ACTIONS(5181), + [aux_sym__val_number_token1] = ACTIONS(5183), + [aux_sym__val_number_token2] = ACTIONS(5183), + [aux_sym__val_number_token3] = ACTIONS(5183), + [aux_sym__val_number_token4] = ACTIONS(5185), + [aux_sym__val_number_token5] = ACTIONS(5185), + [aux_sym__val_number_token6] = ACTIONS(5185), + [anon_sym_0b] = ACTIONS(5187), + [anon_sym_0o] = ACTIONS(5189), + [anon_sym_0x] = ACTIONS(5189), + [sym_val_date] = ACTIONS(5191), + [anon_sym_DQUOTE] = ACTIONS(5193), + [sym__str_single_quotes] = ACTIONS(5195), + [sym__str_back_ticks] = ACTIONS(5195), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5197), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5199), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5201), [anon_sym_POUND] = ACTIONS(3), }, - [1481] = { - [sym_comment] = STATE(1481), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_COMMA] = ACTIONS(1070), - [anon_sym_RBRACK] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_in] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(4587), - [anon_sym_STAR_STAR] = ACTIONS(1070), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_mod] = ACTIONS(1070), - [anon_sym_SLASH_SLASH] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_bit_DASHshl] = ACTIONS(1070), - [anon_sym_bit_DASHshr] = ACTIONS(1070), - [anon_sym_EQ_EQ] = ACTIONS(1070), - [anon_sym_BANG_EQ] = ACTIONS(1070), - [anon_sym_LT2] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1070), - [anon_sym_GT_EQ] = ACTIONS(1070), - [anon_sym_not_DASHin] = ACTIONS(1070), - [anon_sym_starts_DASHwith] = ACTIONS(1070), - [anon_sym_ends_DASHwith] = ACTIONS(1070), - [anon_sym_EQ_TILDE] = ACTIONS(1070), - [anon_sym_BANG_TILDE] = ACTIONS(1070), - [anon_sym_bit_DASHand] = ACTIONS(1070), - [anon_sym_bit_DASHxor] = ACTIONS(1070), - [anon_sym_bit_DASHor] = ACTIONS(1070), - [anon_sym_and] = ACTIONS(1070), - [anon_sym_xor] = ACTIONS(1070), - [anon_sym_or] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_null] = ACTIONS(1070), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1070), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [sym__entry_separator] = ACTIONS(1072), - [anon_sym_err_GT] = ACTIONS(1070), - [anon_sym_out_GT] = ACTIONS(1070), - [anon_sym_e_GT] = ACTIONS(1070), - [anon_sym_o_GT] = ACTIONS(1070), - [anon_sym_err_PLUSout_GT] = ACTIONS(1070), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1070), - [anon_sym_o_PLUSe_GT] = ACTIONS(1070), - [anon_sym_e_PLUSo_GT] = ACTIONS(1070), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1070), - [anon_sym_POUND] = ACTIONS(113), - }, - [1482] = { - [sym_comment] = STATE(1482), - [anon_sym_export] = ACTIONS(2581), - [anon_sym_alias] = ACTIONS(2581), - [anon_sym_let] = ACTIONS(2581), - [anon_sym_let_DASHenv] = ACTIONS(2581), - [anon_sym_mut] = ACTIONS(2581), - [anon_sym_const] = ACTIONS(2581), - [anon_sym_SEMI] = ACTIONS(2581), - [sym_cmd_identifier] = ACTIONS(2581), - [anon_sym_LF] = ACTIONS(2583), - [anon_sym_def] = ACTIONS(2581), - [anon_sym_export_DASHenv] = ACTIONS(2581), - [anon_sym_extern] = ACTIONS(2581), - [anon_sym_module] = ACTIONS(2581), - [anon_sym_use] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2581), - [anon_sym_RPAREN] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2581), - [anon_sym_error] = ACTIONS(2581), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_break] = ACTIONS(2581), - [anon_sym_continue] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2581), - [anon_sym_loop] = ACTIONS(2581), - [anon_sym_while] = ACTIONS(2581), - [anon_sym_do] = ACTIONS(2581), - [anon_sym_if] = ACTIONS(2581), - [anon_sym_match] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2581), - [anon_sym_RBRACE] = ACTIONS(2581), - [anon_sym_DOT_DOT] = ACTIONS(2581), - [anon_sym_try] = ACTIONS(2581), - [anon_sym_return] = ACTIONS(2581), - [anon_sym_source] = ACTIONS(2581), - [anon_sym_source_DASHenv] = ACTIONS(2581), - [anon_sym_register] = ACTIONS(2581), - [anon_sym_hide] = ACTIONS(2581), - [anon_sym_hide_DASHenv] = ACTIONS(2581), - [anon_sym_overlay] = ACTIONS(2581), - [anon_sym_where] = ACTIONS(2581), - [anon_sym_not] = ACTIONS(2581), - [anon_sym_DOT_DOT2] = ACTIONS(2581), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2581), - [anon_sym_DOT_DOT_LT] = ACTIONS(2581), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2583), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2583), - [aux_sym__immediate_decimal_token2] = ACTIONS(3940), - [anon_sym_null] = ACTIONS(2581), - [anon_sym_true] = ACTIONS(2581), - [anon_sym_false] = ACTIONS(2581), - [aux_sym__val_number_decimal_token1] = ACTIONS(2581), - [aux_sym__val_number_decimal_token2] = ACTIONS(2581), - [anon_sym_DOT2] = ACTIONS(2581), - [aux_sym__val_number_decimal_token3] = ACTIONS(2581), - [aux_sym__val_number_token1] = ACTIONS(2581), - [aux_sym__val_number_token2] = ACTIONS(2581), - [aux_sym__val_number_token3] = ACTIONS(2581), - [aux_sym__val_number_token4] = ACTIONS(2581), - [aux_sym__val_number_token5] = ACTIONS(2581), - [aux_sym__val_number_token6] = ACTIONS(2581), - [anon_sym_0b] = ACTIONS(2581), - [anon_sym_0o] = ACTIONS(2581), - [anon_sym_0x] = ACTIONS(2581), - [sym_val_date] = ACTIONS(2581), - [anon_sym_DQUOTE] = ACTIONS(2581), - [sym__str_single_quotes] = ACTIONS(2581), - [sym__str_back_ticks] = ACTIONS(2581), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2581), - [anon_sym_CARET] = ACTIONS(2581), - [anon_sym_POUND] = ACTIONS(113), - }, - [1483] = { - [sym_cell_path] = STATE(2600), - [sym_path] = STATE(1497), - [sym_comment] = STATE(1483), - [anon_sym_LBRACK] = ACTIONS(1156), - [anon_sym_COMMA] = ACTIONS(1156), - [anon_sym_LPAREN] = ACTIONS(1156), - [anon_sym_DOLLAR] = ACTIONS(1156), - [anon_sym_GT] = ACTIONS(1154), - [anon_sym_DASH] = ACTIONS(1154), - [anon_sym_in] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(1156), - [anon_sym_RBRACE] = ACTIONS(1156), - [anon_sym__] = ACTIONS(1154), - [anon_sym_DOT_DOT] = ACTIONS(1154), - [anon_sym_STAR] = ACTIONS(1154), - [anon_sym_STAR_STAR] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1156), - [anon_sym_SLASH] = ACTIONS(1154), - [anon_sym_mod] = ACTIONS(1156), - [anon_sym_SLASH_SLASH] = ACTIONS(1156), - [anon_sym_PLUS] = ACTIONS(1154), - [anon_sym_bit_DASHshl] = ACTIONS(1156), - [anon_sym_bit_DASHshr] = ACTIONS(1156), - [anon_sym_EQ_EQ] = ACTIONS(1156), - [anon_sym_BANG_EQ] = ACTIONS(1156), - [anon_sym_LT2] = ACTIONS(1154), - [anon_sym_LT_EQ] = ACTIONS(1156), - [anon_sym_GT_EQ] = ACTIONS(1156), - [anon_sym_not_DASHin] = ACTIONS(1156), - [anon_sym_starts_DASHwith] = ACTIONS(1156), - [anon_sym_ends_DASHwith] = ACTIONS(1156), - [anon_sym_EQ_TILDE] = ACTIONS(1156), - [anon_sym_BANG_TILDE] = ACTIONS(1156), - [anon_sym_bit_DASHand] = ACTIONS(1156), - [anon_sym_bit_DASHxor] = ACTIONS(1156), - [anon_sym_bit_DASHor] = ACTIONS(1156), - [anon_sym_and] = ACTIONS(1156), - [anon_sym_xor] = ACTIONS(1156), - [anon_sym_or] = ACTIONS(1156), - [anon_sym_DOT] = ACTIONS(4585), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1156), - [anon_sym_DOT_DOT_LT] = ACTIONS(1156), - [anon_sym_null] = ACTIONS(1156), - [anon_sym_true] = ACTIONS(1156), - [anon_sym_false] = ACTIONS(1156), - [aux_sym__val_number_decimal_token1] = ACTIONS(1154), - [aux_sym__val_number_decimal_token2] = ACTIONS(1156), - [anon_sym_DOT2] = ACTIONS(1154), - [aux_sym__val_number_decimal_token3] = ACTIONS(1156), - [aux_sym__val_number_token1] = ACTIONS(1156), - [aux_sym__val_number_token2] = ACTIONS(1156), - [aux_sym__val_number_token3] = ACTIONS(1156), - [aux_sym__val_number_token4] = ACTIONS(1156), - [aux_sym__val_number_token5] = ACTIONS(1156), - [aux_sym__val_number_token6] = ACTIONS(1156), - [anon_sym_0b] = ACTIONS(1154), - [anon_sym_0o] = ACTIONS(1154), - [anon_sym_0x] = ACTIONS(1154), - [sym_val_date] = ACTIONS(1156), - [anon_sym_DQUOTE] = ACTIONS(1156), - [sym__str_single_quotes] = ACTIONS(1156), - [sym__str_back_ticks] = ACTIONS(1156), - [anon_sym_err_GT] = ACTIONS(1156), - [anon_sym_out_GT] = ACTIONS(1156), - [anon_sym_e_GT] = ACTIONS(1156), - [anon_sym_o_GT] = ACTIONS(1156), - [anon_sym_err_PLUSout_GT] = ACTIONS(1156), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1156), - [anon_sym_o_PLUSe_GT] = ACTIONS(1156), - [anon_sym_e_PLUSo_GT] = ACTIONS(1156), - [aux_sym_unquoted_token1] = ACTIONS(1154), + [1692] = { + [sym_expr_unary] = STATE(2141), + [sym__expr_unary_minus] = STATE(2114), + [sym_expr_binary] = STATE(2141), + [sym__expr_binary_expression] = STATE(2260), + [sym_expr_parenthesized] = STATE(2141), + [sym__val_range] = STATE(10172), + [sym__value] = STATE(2141), + [sym_val_nothing] = STATE(2022), + [sym_val_bool] = STATE(1448), + [sym_val_variable] = STATE(2022), + [sym__var] = STATE(1172), + [sym_val_number] = STATE(2022), + [sym__val_number_decimal] = STATE(946), + [sym__val_number] = STATE(2176), + [sym_val_duration] = STATE(2022), + [sym_val_filesize] = STATE(2022), + [sym_val_binary] = STATE(2022), + [sym_val_string] = STATE(2022), + [sym__str_double_quotes] = STATE(2201), + [sym_val_interpolated] = STATE(2022), + [sym__inter_single_quotes] = STATE(2202), + [sym__inter_double_quotes] = STATE(2203), + [sym_val_list] = STATE(2022), + [sym_val_record] = STATE(2022), + [sym_val_table] = STATE(2022), + [sym_val_closure] = STATE(2022), + [sym_unquoted] = STATE(2155), + [sym__unquoted_anonymous_prefix] = STATE(10541), + [sym_comment] = STATE(1692), + [anon_sym_LBRACK] = ACTIONS(5155), + [anon_sym_LPAREN] = ACTIONS(5157), + [anon_sym_DOLLAR] = ACTIONS(5159), + [anon_sym_DASH] = ACTIONS(5161), + [anon_sym_LBRACE] = ACTIONS(5163), + [anon_sym_DOT_DOT] = ACTIONS(5165), + [anon_sym_not] = ACTIONS(5167), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5169), + [anon_sym_DOT_DOT_LT] = ACTIONS(5169), + [anon_sym_null] = ACTIONS(5171), + [anon_sym_true] = ACTIONS(5173), + [anon_sym_false] = ACTIONS(5173), + [aux_sym__val_number_decimal_token1] = ACTIONS(5175), + [aux_sym__val_number_decimal_token2] = ACTIONS(5177), + [anon_sym_DOT2] = ACTIONS(5179), + [aux_sym__val_number_decimal_token3] = ACTIONS(5181), + [aux_sym__val_number_token1] = ACTIONS(5183), + [aux_sym__val_number_token2] = ACTIONS(5183), + [aux_sym__val_number_token3] = ACTIONS(5183), + [aux_sym__val_number_token4] = ACTIONS(5185), + [aux_sym__val_number_token5] = ACTIONS(5185), + [aux_sym__val_number_token6] = ACTIONS(5185), + [anon_sym_0b] = ACTIONS(5187), + [anon_sym_0o] = ACTIONS(5189), + [anon_sym_0x] = ACTIONS(5189), + [sym_val_date] = ACTIONS(5191), + [anon_sym_DQUOTE] = ACTIONS(5193), + [sym__str_single_quotes] = ACTIONS(5195), + [sym__str_back_ticks] = ACTIONS(5195), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5197), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5199), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5201), [anon_sym_POUND] = ACTIONS(3), }, - [1484] = { - [sym_comment] = STATE(1484), - [anon_sym_LBRACK] = ACTIONS(1160), - [anon_sym_COMMA] = ACTIONS(1160), - [anon_sym_LPAREN] = ACTIONS(1160), - [anon_sym_DOLLAR] = ACTIONS(1160), - [anon_sym_GT] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_in] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1160), - [anon_sym_RBRACE] = ACTIONS(1160), - [anon_sym__] = ACTIONS(1158), - [anon_sym_DOT_DOT] = ACTIONS(1158), - [anon_sym_STAR] = ACTIONS(1158), - [anon_sym_STAR_STAR] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1160), - [anon_sym_SLASH] = ACTIONS(1158), - [anon_sym_mod] = ACTIONS(1160), - [anon_sym_SLASH_SLASH] = ACTIONS(1160), - [anon_sym_PLUS] = ACTIONS(1158), - [anon_sym_bit_DASHshl] = ACTIONS(1160), - [anon_sym_bit_DASHshr] = ACTIONS(1160), - [anon_sym_EQ_EQ] = ACTIONS(1160), - [anon_sym_BANG_EQ] = ACTIONS(1160), - [anon_sym_LT2] = ACTIONS(1158), - [anon_sym_LT_EQ] = ACTIONS(1160), - [anon_sym_GT_EQ] = ACTIONS(1160), - [anon_sym_not_DASHin] = ACTIONS(1160), - [anon_sym_starts_DASHwith] = ACTIONS(1160), - [anon_sym_ends_DASHwith] = ACTIONS(1160), - [anon_sym_EQ_TILDE] = ACTIONS(1160), - [anon_sym_BANG_TILDE] = ACTIONS(1160), - [anon_sym_bit_DASHand] = ACTIONS(1160), - [anon_sym_bit_DASHxor] = ACTIONS(1160), - [anon_sym_bit_DASHor] = ACTIONS(1160), - [anon_sym_and] = ACTIONS(1160), - [anon_sym_xor] = ACTIONS(1160), - [anon_sym_or] = ACTIONS(1160), - [anon_sym_DOT_DOT2] = ACTIONS(4613), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1158), - [anon_sym_DOT_DOT_LT] = ACTIONS(1158), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4615), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4615), - [anon_sym_null] = ACTIONS(1160), - [anon_sym_true] = ACTIONS(1160), - [anon_sym_false] = ACTIONS(1160), - [aux_sym__val_number_decimal_token1] = ACTIONS(1158), - [aux_sym__val_number_decimal_token2] = ACTIONS(1160), - [anon_sym_DOT2] = ACTIONS(1158), - [aux_sym__val_number_decimal_token3] = ACTIONS(1160), - [aux_sym__val_number_token1] = ACTIONS(1160), - [aux_sym__val_number_token2] = ACTIONS(1160), - [aux_sym__val_number_token3] = ACTIONS(1160), - [aux_sym__val_number_token4] = ACTIONS(1160), - [aux_sym__val_number_token5] = ACTIONS(1160), - [aux_sym__val_number_token6] = ACTIONS(1160), - [anon_sym_0b] = ACTIONS(1158), - [anon_sym_0o] = ACTIONS(1158), - [anon_sym_0x] = ACTIONS(1158), - [sym_val_date] = ACTIONS(1160), - [anon_sym_DQUOTE] = ACTIONS(1160), - [sym__str_single_quotes] = ACTIONS(1160), - [sym__str_back_ticks] = ACTIONS(1160), - [anon_sym_err_GT] = ACTIONS(1160), - [anon_sym_out_GT] = ACTIONS(1160), - [anon_sym_e_GT] = ACTIONS(1160), - [anon_sym_o_GT] = ACTIONS(1160), - [anon_sym_err_PLUSout_GT] = ACTIONS(1160), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1160), - [anon_sym_o_PLUSe_GT] = ACTIONS(1160), - [anon_sym_e_PLUSo_GT] = ACTIONS(1160), - [aux_sym_unquoted_token1] = ACTIONS(1158), + [1693] = { + [sym_expr_unary] = STATE(2141), + [sym__expr_unary_minus] = STATE(2114), + [sym_expr_binary] = STATE(2141), + [sym__expr_binary_expression] = STATE(1989), + [sym_expr_parenthesized] = STATE(2141), + [sym__val_range] = STATE(10172), + [sym__value] = STATE(2141), + [sym_val_nothing] = STATE(2022), + [sym_val_bool] = STATE(1448), + [sym_val_variable] = STATE(2022), + [sym__var] = STATE(1172), + [sym_val_number] = STATE(2022), + [sym__val_number_decimal] = STATE(946), + [sym__val_number] = STATE(2176), + [sym_val_duration] = STATE(2022), + [sym_val_filesize] = STATE(2022), + [sym_val_binary] = STATE(2022), + [sym_val_string] = STATE(2022), + [sym__str_double_quotes] = STATE(2201), + [sym_val_interpolated] = STATE(2022), + [sym__inter_single_quotes] = STATE(2202), + [sym__inter_double_quotes] = STATE(2203), + [sym_val_list] = STATE(2022), + [sym_val_record] = STATE(2022), + [sym_val_table] = STATE(2022), + [sym_val_closure] = STATE(2022), + [sym_unquoted] = STATE(2158), + [sym__unquoted_anonymous_prefix] = STATE(10541), + [sym_comment] = STATE(1693), + [anon_sym_LBRACK] = ACTIONS(5155), + [anon_sym_LPAREN] = ACTIONS(5157), + [anon_sym_DOLLAR] = ACTIONS(5159), + [anon_sym_DASH] = ACTIONS(5161), + [anon_sym_LBRACE] = ACTIONS(5163), + [anon_sym_DOT_DOT] = ACTIONS(5165), + [anon_sym_not] = ACTIONS(5167), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5169), + [anon_sym_DOT_DOT_LT] = ACTIONS(5169), + [anon_sym_null] = ACTIONS(5171), + [anon_sym_true] = ACTIONS(5173), + [anon_sym_false] = ACTIONS(5173), + [aux_sym__val_number_decimal_token1] = ACTIONS(5175), + [aux_sym__val_number_decimal_token2] = ACTIONS(5177), + [anon_sym_DOT2] = ACTIONS(5179), + [aux_sym__val_number_decimal_token3] = ACTIONS(5181), + [aux_sym__val_number_token1] = ACTIONS(5183), + [aux_sym__val_number_token2] = ACTIONS(5183), + [aux_sym__val_number_token3] = ACTIONS(5183), + [aux_sym__val_number_token4] = ACTIONS(5185), + [aux_sym__val_number_token5] = ACTIONS(5185), + [aux_sym__val_number_token6] = ACTIONS(5185), + [anon_sym_0b] = ACTIONS(5187), + [anon_sym_0o] = ACTIONS(5189), + [anon_sym_0x] = ACTIONS(5189), + [sym_val_date] = ACTIONS(5191), + [anon_sym_DQUOTE] = ACTIONS(5193), + [sym__str_single_quotes] = ACTIONS(5195), + [sym__str_back_ticks] = ACTIONS(5195), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5197), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5199), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5201), [anon_sym_POUND] = ACTIONS(3), }, - [1485] = { - [sym_comment] = STATE(1485), - [anon_sym_export] = ACTIONS(1063), - [anon_sym_alias] = ACTIONS(1063), - [anon_sym_let] = ACTIONS(1063), - [anon_sym_let_DASHenv] = ACTIONS(1063), - [anon_sym_mut] = ACTIONS(1063), - [anon_sym_const] = ACTIONS(1063), - [anon_sym_SEMI] = ACTIONS(1063), - [sym_cmd_identifier] = ACTIONS(1063), - [anon_sym_LF] = ACTIONS(1065), - [anon_sym_def] = ACTIONS(1063), - [anon_sym_export_DASHenv] = ACTIONS(1063), - [anon_sym_extern] = ACTIONS(1063), - [anon_sym_module] = ACTIONS(1063), - [anon_sym_use] = ACTIONS(1063), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_RPAREN] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_error] = ACTIONS(1063), - [anon_sym_DASH_DASH] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_break] = ACTIONS(1063), - [anon_sym_continue] = ACTIONS(1063), - [anon_sym_for] = ACTIONS(1063), - [anon_sym_loop] = ACTIONS(1063), - [anon_sym_while] = ACTIONS(1063), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_if] = ACTIONS(1063), - [anon_sym_match] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_RBRACE] = ACTIONS(1063), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1063), - [anon_sym_return] = ACTIONS(1063), - [anon_sym_source] = ACTIONS(1063), - [anon_sym_source_DASHenv] = ACTIONS(1063), - [anon_sym_register] = ACTIONS(1063), - [anon_sym_hide] = ACTIONS(1063), - [anon_sym_hide_DASHenv] = ACTIONS(1063), - [anon_sym_overlay] = ACTIONS(1063), - [anon_sym_as] = ACTIONS(1063), - [anon_sym_where] = ACTIONS(1063), - [anon_sym_QMARK2] = ACTIONS(1063), - [anon_sym_not] = ACTIONS(1063), - [anon_sym_DOT] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1063), - [anon_sym_DOT_DOT_LT] = ACTIONS(1063), - [anon_sym_null] = ACTIONS(1063), - [anon_sym_true] = ACTIONS(1063), - [anon_sym_false] = ACTIONS(1063), - [aux_sym__val_number_decimal_token1] = ACTIONS(1063), - [aux_sym__val_number_decimal_token2] = ACTIONS(1063), - [anon_sym_DOT2] = ACTIONS(1063), - [aux_sym__val_number_decimal_token3] = ACTIONS(1063), - [aux_sym__val_number_token1] = ACTIONS(1063), - [aux_sym__val_number_token2] = ACTIONS(1063), - [aux_sym__val_number_token3] = ACTIONS(1063), - [aux_sym__val_number_token4] = ACTIONS(1063), - [aux_sym__val_number_token5] = ACTIONS(1063), - [aux_sym__val_number_token6] = ACTIONS(1063), - [anon_sym_0b] = ACTIONS(1063), - [anon_sym_0o] = ACTIONS(1063), - [anon_sym_0x] = ACTIONS(1063), - [sym_val_date] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [sym__str_single_quotes] = ACTIONS(1063), - [sym__str_back_ticks] = ACTIONS(1063), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1063), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1063), - [anon_sym_CARET] = ACTIONS(1063), - [anon_sym_POUND] = ACTIONS(113), - }, - [1486] = { - [sym_comment] = STATE(1486), - [ts_builtin_sym_end] = ACTIONS(4617), - [anon_sym_export] = ACTIONS(4035), - [anon_sym_alias] = ACTIONS(4035), - [anon_sym_let] = ACTIONS(4035), - [anon_sym_let_DASHenv] = ACTIONS(4035), - [anon_sym_mut] = ACTIONS(4035), - [anon_sym_const] = ACTIONS(4035), - [anon_sym_SEMI] = ACTIONS(4035), - [sym_cmd_identifier] = ACTIONS(4035), - [anon_sym_LF] = ACTIONS(4035), - [anon_sym_def] = ACTIONS(4035), - [anon_sym_export_DASHenv] = ACTIONS(4035), - [anon_sym_extern] = ACTIONS(4035), - [anon_sym_module] = ACTIONS(4035), - [anon_sym_use] = ACTIONS(4035), - [anon_sym_LBRACK] = ACTIONS(4035), - [anon_sym_LPAREN] = ACTIONS(4035), - [anon_sym_DOLLAR] = ACTIONS(4035), - [anon_sym_error] = ACTIONS(4035), - [anon_sym_DASH_DASH] = ACTIONS(4035), - [anon_sym_DASH] = ACTIONS(4035), - [anon_sym_break] = ACTIONS(4035), - [anon_sym_continue] = ACTIONS(4035), - [anon_sym_for] = ACTIONS(4035), - [anon_sym_loop] = ACTIONS(4035), - [anon_sym_while] = ACTIONS(4035), - [anon_sym_do] = ACTIONS(4035), - [anon_sym_if] = ACTIONS(4035), - [anon_sym_match] = ACTIONS(4035), - [anon_sym_LBRACE] = ACTIONS(4035), - [anon_sym_DOT_DOT] = ACTIONS(4035), - [anon_sym_try] = ACTIONS(4035), - [anon_sym_return] = ACTIONS(4035), - [anon_sym_source] = ACTIONS(4035), - [anon_sym_source_DASHenv] = ACTIONS(4035), - [anon_sym_register] = ACTIONS(4035), - [anon_sym_hide] = ACTIONS(4035), - [anon_sym_hide_DASHenv] = ACTIONS(4035), - [anon_sym_overlay] = ACTIONS(4035), - [anon_sym_as] = ACTIONS(4035), - [anon_sym_where] = ACTIONS(4035), - [anon_sym_not] = ACTIONS(4035), - [anon_sym_LPAREN2] = ACTIONS(4037), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4035), - [anon_sym_DOT_DOT_LT] = ACTIONS(4035), - [anon_sym_null] = ACTIONS(4035), - [anon_sym_true] = ACTIONS(4035), - [anon_sym_false] = ACTIONS(4035), - [aux_sym__val_number_decimal_token1] = ACTIONS(4035), - [aux_sym__val_number_decimal_token2] = ACTIONS(4035), - [anon_sym_DOT2] = ACTIONS(4035), - [aux_sym__val_number_decimal_token3] = ACTIONS(4035), - [aux_sym__val_number_token1] = ACTIONS(4035), - [aux_sym__val_number_token2] = ACTIONS(4035), - [aux_sym__val_number_token3] = ACTIONS(4035), - [aux_sym__val_number_token4] = ACTIONS(4035), - [aux_sym__val_number_token5] = ACTIONS(4035), - [aux_sym__val_number_token6] = ACTIONS(4035), - [anon_sym_0b] = ACTIONS(4035), - [anon_sym_0o] = ACTIONS(4035), - [anon_sym_0x] = ACTIONS(4035), - [sym_val_date] = ACTIONS(4035), - [anon_sym_DQUOTE] = ACTIONS(4035), - [sym__str_single_quotes] = ACTIONS(4035), - [sym__str_back_ticks] = ACTIONS(4035), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4035), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4035), - [anon_sym_CARET] = ACTIONS(4035), - [aux_sym_command_token1] = ACTIONS(4619), - [aux_sym_unquoted_token6] = ACTIONS(1251), - [anon_sym_POUND] = ACTIONS(113), - }, - [1487] = { - [sym_comment] = STATE(1487), - [ts_builtin_sym_end] = ACTIONS(2439), - [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), - [anon_sym_SEMI] = ACTIONS(2437), - [sym_cmd_identifier] = ACTIONS(2437), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_DASH_DASH] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_as] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_not] = ACTIONS(2437), - [anon_sym_DOT_DOT2] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2439), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2439), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [anon_sym_DOT2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2437), - [anon_sym_0o] = ACTIONS(2437), - [anon_sym_0x] = ACTIONS(2437), - [sym_val_date] = 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_CARET] = ACTIONS(2437), - [anon_sym_POUND] = ACTIONS(113), - }, - [1488] = { - [sym_comment] = STATE(1488), - [ts_builtin_sym_end] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(1059), - [anon_sym_alias] = ACTIONS(1059), - [anon_sym_let] = ACTIONS(1059), - [anon_sym_let_DASHenv] = ACTIONS(1059), - [anon_sym_mut] = ACTIONS(1059), - [anon_sym_const] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [sym_cmd_identifier] = ACTIONS(1059), - [anon_sym_LF] = ACTIONS(1061), - [anon_sym_def] = ACTIONS(1059), - [anon_sym_export_DASHenv] = ACTIONS(1059), - [anon_sym_extern] = ACTIONS(1059), - [anon_sym_module] = ACTIONS(1059), - [anon_sym_use] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_error] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_break] = ACTIONS(1059), - [anon_sym_continue] = ACTIONS(1059), - [anon_sym_for] = ACTIONS(1059), - [anon_sym_loop] = ACTIONS(1059), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_do] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1059), - [anon_sym_match] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_try] = ACTIONS(1059), - [anon_sym_return] = ACTIONS(1059), - [anon_sym_source] = ACTIONS(1059), - [anon_sym_source_DASHenv] = ACTIONS(1059), - [anon_sym_register] = ACTIONS(1059), - [anon_sym_hide] = ACTIONS(1059), - [anon_sym_hide_DASHenv] = ACTIONS(1059), - [anon_sym_overlay] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(1059), - [anon_sym_QMARK2] = ACTIONS(1059), - [anon_sym_not] = ACTIONS(1059), - [anon_sym_DOT_DOT2] = ACTIONS(1059), - [anon_sym_DOT] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1059), - [anon_sym_DOT_DOT_LT] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1061), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1061), - [anon_sym_null] = ACTIONS(1059), - [anon_sym_true] = ACTIONS(1059), - [anon_sym_false] = ACTIONS(1059), - [aux_sym__val_number_decimal_token1] = ACTIONS(1059), - [aux_sym__val_number_decimal_token2] = ACTIONS(1059), - [anon_sym_DOT2] = ACTIONS(1059), - [aux_sym__val_number_decimal_token3] = ACTIONS(1059), - [aux_sym__val_number_token1] = ACTIONS(1059), - [aux_sym__val_number_token2] = ACTIONS(1059), - [aux_sym__val_number_token3] = ACTIONS(1059), - [aux_sym__val_number_token4] = ACTIONS(1059), - [aux_sym__val_number_token5] = ACTIONS(1059), - [aux_sym__val_number_token6] = ACTIONS(1059), - [anon_sym_0b] = ACTIONS(1059), - [anon_sym_0o] = ACTIONS(1059), - [anon_sym_0x] = ACTIONS(1059), - [sym_val_date] = ACTIONS(1059), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym__str_single_quotes] = ACTIONS(1059), - [sym__str_back_ticks] = ACTIONS(1059), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1059), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1059), - [anon_sym_CARET] = ACTIONS(1059), - [anon_sym_POUND] = ACTIONS(113), - }, - [1489] = { - [sym_comment] = STATE(1489), - [anon_sym_LBRACK] = ACTIONS(1170), - [anon_sym_COMMA] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1170), - [anon_sym_DOLLAR] = ACTIONS(1170), - [anon_sym_GT] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1168), - [anon_sym_in] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1170), - [anon_sym_RBRACE] = ACTIONS(1170), - [anon_sym__] = ACTIONS(1168), - [anon_sym_DOT_DOT] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_STAR_STAR] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1170), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_mod] = ACTIONS(1170), - [anon_sym_SLASH_SLASH] = ACTIONS(1170), - [anon_sym_PLUS] = ACTIONS(1168), - [anon_sym_bit_DASHshl] = ACTIONS(1170), - [anon_sym_bit_DASHshr] = ACTIONS(1170), - [anon_sym_EQ_EQ] = ACTIONS(1170), - [anon_sym_BANG_EQ] = ACTIONS(1170), - [anon_sym_LT2] = ACTIONS(1168), - [anon_sym_LT_EQ] = ACTIONS(1170), - [anon_sym_GT_EQ] = ACTIONS(1170), - [anon_sym_not_DASHin] = ACTIONS(1170), - [anon_sym_starts_DASHwith] = ACTIONS(1170), - [anon_sym_ends_DASHwith] = ACTIONS(1170), - [anon_sym_EQ_TILDE] = ACTIONS(1170), - [anon_sym_BANG_TILDE] = ACTIONS(1170), - [anon_sym_bit_DASHand] = ACTIONS(1170), - [anon_sym_bit_DASHxor] = ACTIONS(1170), - [anon_sym_bit_DASHor] = ACTIONS(1170), - [anon_sym_and] = ACTIONS(1170), - [anon_sym_xor] = ACTIONS(1170), - [anon_sym_or] = ACTIONS(1170), - [anon_sym_DOT_DOT2] = ACTIONS(1168), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1168), - [anon_sym_DOT_DOT_LT] = ACTIONS(1168), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1170), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1170), - [anon_sym_null] = ACTIONS(1170), - [anon_sym_true] = ACTIONS(1170), - [anon_sym_false] = ACTIONS(1170), - [aux_sym__val_number_decimal_token1] = ACTIONS(1168), - [aux_sym__val_number_decimal_token2] = ACTIONS(1170), - [anon_sym_DOT2] = ACTIONS(1168), - [aux_sym__val_number_decimal_token3] = ACTIONS(1170), - [aux_sym__val_number_token1] = ACTIONS(1170), - [aux_sym__val_number_token2] = ACTIONS(1170), - [aux_sym__val_number_token3] = ACTIONS(1170), - [aux_sym__val_number_token4] = ACTIONS(1170), - [aux_sym__val_number_token5] = ACTIONS(1170), - [aux_sym__val_number_token6] = ACTIONS(1170), - [anon_sym_0b] = ACTIONS(1168), - [anon_sym_0o] = ACTIONS(1168), - [anon_sym_0x] = ACTIONS(1168), - [sym_val_date] = ACTIONS(1170), - [anon_sym_DQUOTE] = ACTIONS(1170), - [sym__str_single_quotes] = ACTIONS(1170), - [sym__str_back_ticks] = ACTIONS(1170), - [anon_sym_err_GT] = ACTIONS(1170), - [anon_sym_out_GT] = ACTIONS(1170), - [anon_sym_e_GT] = ACTIONS(1170), - [anon_sym_o_GT] = ACTIONS(1170), - [anon_sym_err_PLUSout_GT] = ACTIONS(1170), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1170), - [anon_sym_o_PLUSe_GT] = ACTIONS(1170), - [anon_sym_e_PLUSo_GT] = ACTIONS(1170), - [aux_sym_unquoted_token1] = ACTIONS(1168), + [1694] = { + [sym_expr_unary] = STATE(2141), + [sym__expr_unary_minus] = STATE(2114), + [sym_expr_binary] = STATE(2141), + [sym__expr_binary_expression] = STATE(1990), + [sym_expr_parenthesized] = STATE(2141), + [sym__val_range] = STATE(10172), + [sym__value] = STATE(2141), + [sym_val_nothing] = STATE(2022), + [sym_val_bool] = STATE(1448), + [sym_val_variable] = STATE(2022), + [sym__var] = STATE(1172), + [sym_val_number] = STATE(2022), + [sym__val_number_decimal] = STATE(946), + [sym__val_number] = STATE(2176), + [sym_val_duration] = STATE(2022), + [sym_val_filesize] = STATE(2022), + [sym_val_binary] = STATE(2022), + [sym_val_string] = STATE(2022), + [sym__str_double_quotes] = STATE(2201), + [sym_val_interpolated] = STATE(2022), + [sym__inter_single_quotes] = STATE(2202), + [sym__inter_double_quotes] = STATE(2203), + [sym_val_list] = STATE(2022), + [sym_val_record] = STATE(2022), + [sym_val_table] = STATE(2022), + [sym_val_closure] = STATE(2022), + [sym_unquoted] = STATE(2159), + [sym__unquoted_anonymous_prefix] = STATE(10541), + [sym_comment] = STATE(1694), + [anon_sym_LBRACK] = ACTIONS(5155), + [anon_sym_LPAREN] = ACTIONS(5157), + [anon_sym_DOLLAR] = ACTIONS(5159), + [anon_sym_DASH] = ACTIONS(5161), + [anon_sym_LBRACE] = ACTIONS(5163), + [anon_sym_DOT_DOT] = ACTIONS(5165), + [anon_sym_not] = ACTIONS(5167), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5169), + [anon_sym_DOT_DOT_LT] = ACTIONS(5169), + [anon_sym_null] = ACTIONS(5171), + [anon_sym_true] = ACTIONS(5173), + [anon_sym_false] = ACTIONS(5173), + [aux_sym__val_number_decimal_token1] = ACTIONS(5175), + [aux_sym__val_number_decimal_token2] = ACTIONS(5177), + [anon_sym_DOT2] = ACTIONS(5179), + [aux_sym__val_number_decimal_token3] = ACTIONS(5181), + [aux_sym__val_number_token1] = ACTIONS(5183), + [aux_sym__val_number_token2] = ACTIONS(5183), + [aux_sym__val_number_token3] = ACTIONS(5183), + [aux_sym__val_number_token4] = ACTIONS(5185), + [aux_sym__val_number_token5] = ACTIONS(5185), + [aux_sym__val_number_token6] = ACTIONS(5185), + [anon_sym_0b] = ACTIONS(5187), + [anon_sym_0o] = ACTIONS(5189), + [anon_sym_0x] = ACTIONS(5189), + [sym_val_date] = ACTIONS(5191), + [anon_sym_DQUOTE] = ACTIONS(5193), + [sym__str_single_quotes] = ACTIONS(5195), + [sym__str_back_ticks] = ACTIONS(5195), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5197), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5199), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5201), [anon_sym_POUND] = ACTIONS(3), }, - [1490] = { - [sym_comment] = STATE(1490), - [ts_builtin_sym_end] = ACTIONS(2583), - [anon_sym_export] = ACTIONS(2581), - [anon_sym_alias] = ACTIONS(2581), - [anon_sym_let] = ACTIONS(2581), - [anon_sym_let_DASHenv] = ACTIONS(2581), - [anon_sym_mut] = ACTIONS(2581), - [anon_sym_const] = ACTIONS(2581), - [anon_sym_SEMI] = ACTIONS(2581), - [sym_cmd_identifier] = ACTIONS(2581), - [anon_sym_LF] = ACTIONS(2583), - [anon_sym_def] = ACTIONS(2581), - [anon_sym_export_DASHenv] = ACTIONS(2581), - [anon_sym_extern] = ACTIONS(2581), - [anon_sym_module] = ACTIONS(2581), - [anon_sym_use] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2581), - [anon_sym_error] = ACTIONS(2581), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_break] = ACTIONS(2581), - [anon_sym_continue] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2581), - [anon_sym_loop] = ACTIONS(2581), - [anon_sym_while] = ACTIONS(2581), - [anon_sym_do] = ACTIONS(2581), - [anon_sym_if] = ACTIONS(2581), - [anon_sym_match] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2581), - [anon_sym_DOT_DOT] = ACTIONS(2581), - [anon_sym_try] = ACTIONS(2581), - [anon_sym_return] = ACTIONS(2581), - [anon_sym_source] = ACTIONS(2581), - [anon_sym_source_DASHenv] = ACTIONS(2581), - [anon_sym_register] = ACTIONS(2581), - [anon_sym_hide] = ACTIONS(2581), - [anon_sym_hide_DASHenv] = ACTIONS(2581), - [anon_sym_overlay] = ACTIONS(2581), - [anon_sym_where] = ACTIONS(2581), - [anon_sym_not] = ACTIONS(2581), - [anon_sym_DOT_DOT2] = ACTIONS(2581), - [anon_sym_DOT] = ACTIONS(4621), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2581), - [anon_sym_DOT_DOT_LT] = ACTIONS(2581), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2583), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2583), - [aux_sym__immediate_decimal_token2] = ACTIONS(4623), - [anon_sym_null] = ACTIONS(2581), - [anon_sym_true] = ACTIONS(2581), - [anon_sym_false] = ACTIONS(2581), - [aux_sym__val_number_decimal_token1] = ACTIONS(2581), - [aux_sym__val_number_decimal_token2] = ACTIONS(2581), - [anon_sym_DOT2] = ACTIONS(2581), - [aux_sym__val_number_decimal_token3] = ACTIONS(2581), - [aux_sym__val_number_token1] = ACTIONS(2581), - [aux_sym__val_number_token2] = ACTIONS(2581), - [aux_sym__val_number_token3] = ACTIONS(2581), - [aux_sym__val_number_token4] = ACTIONS(2581), - [aux_sym__val_number_token5] = ACTIONS(2581), - [aux_sym__val_number_token6] = ACTIONS(2581), - [anon_sym_0b] = ACTIONS(2581), - [anon_sym_0o] = ACTIONS(2581), - [anon_sym_0x] = ACTIONS(2581), - [sym_val_date] = ACTIONS(2581), - [anon_sym_DQUOTE] = ACTIONS(2581), - [sym__str_single_quotes] = ACTIONS(2581), - [sym__str_back_ticks] = ACTIONS(2581), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2581), - [anon_sym_CARET] = ACTIONS(2581), - [anon_sym_POUND] = ACTIONS(113), - }, - [1491] = { - [sym_comment] = STATE(1491), - [ts_builtin_sym_end] = ACTIONS(2549), - [anon_sym_export] = ACTIONS(2547), - [anon_sym_alias] = ACTIONS(2547), - [anon_sym_let] = ACTIONS(2547), - [anon_sym_let_DASHenv] = ACTIONS(2547), - [anon_sym_mut] = ACTIONS(2547), - [anon_sym_const] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [sym_cmd_identifier] = ACTIONS(2547), - [anon_sym_LF] = ACTIONS(2549), - [anon_sym_def] = ACTIONS(2547), - [anon_sym_export_DASHenv] = ACTIONS(2547), - [anon_sym_extern] = ACTIONS(2547), - [anon_sym_module] = ACTIONS(2547), - [anon_sym_use] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_DOLLAR] = ACTIONS(2547), - [anon_sym_error] = ACTIONS(2547), - [anon_sym_DASH_DASH] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_break] = ACTIONS(2547), - [anon_sym_continue] = ACTIONS(2547), - [anon_sym_for] = ACTIONS(2547), - [anon_sym_loop] = ACTIONS(2547), - [anon_sym_while] = ACTIONS(2547), - [anon_sym_do] = ACTIONS(2547), - [anon_sym_if] = ACTIONS(2547), - [anon_sym_match] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2547), - [anon_sym_DOT_DOT] = ACTIONS(2547), - [anon_sym_try] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2547), - [anon_sym_source] = ACTIONS(2547), - [anon_sym_source_DASHenv] = ACTIONS(2547), - [anon_sym_register] = ACTIONS(2547), - [anon_sym_hide] = ACTIONS(2547), - [anon_sym_hide_DASHenv] = ACTIONS(2547), - [anon_sym_overlay] = ACTIONS(2547), - [anon_sym_as] = ACTIONS(2547), - [anon_sym_where] = ACTIONS(2547), - [anon_sym_not] = ACTIONS(2547), - [anon_sym_DOT_DOT2] = ACTIONS(2547), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), - [anon_sym_DOT_DOT_LT] = ACTIONS(2547), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2549), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2549), - [anon_sym_null] = ACTIONS(2547), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [aux_sym__val_number_decimal_token1] = ACTIONS(2547), - [aux_sym__val_number_decimal_token2] = ACTIONS(2547), - [anon_sym_DOT2] = ACTIONS(2547), - [aux_sym__val_number_decimal_token3] = ACTIONS(2547), - [aux_sym__val_number_token1] = ACTIONS(2547), - [aux_sym__val_number_token2] = ACTIONS(2547), - [aux_sym__val_number_token3] = ACTIONS(2547), - [aux_sym__val_number_token4] = ACTIONS(2547), - [aux_sym__val_number_token5] = ACTIONS(2547), - [aux_sym__val_number_token6] = ACTIONS(2547), - [anon_sym_0b] = ACTIONS(2547), - [anon_sym_0o] = ACTIONS(2547), - [anon_sym_0x] = ACTIONS(2547), - [sym_val_date] = ACTIONS(2547), - [anon_sym_DQUOTE] = ACTIONS(2547), - [sym__str_single_quotes] = ACTIONS(2547), - [sym__str_back_ticks] = ACTIONS(2547), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2547), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2547), - [anon_sym_POUND] = ACTIONS(113), - }, - [1492] = { - [sym_comment] = STATE(1492), - [ts_builtin_sym_end] = ACTIONS(3507), - [anon_sym_export] = ACTIONS(3505), - [anon_sym_alias] = ACTIONS(3505), - [anon_sym_let] = ACTIONS(3505), - [anon_sym_let_DASHenv] = ACTIONS(3505), - [anon_sym_mut] = ACTIONS(3505), - [anon_sym_const] = ACTIONS(3505), - [anon_sym_SEMI] = ACTIONS(3505), - [sym_cmd_identifier] = ACTIONS(3505), - [anon_sym_LF] = ACTIONS(3507), - [anon_sym_def] = ACTIONS(3505), - [anon_sym_export_DASHenv] = ACTIONS(3505), - [anon_sym_extern] = ACTIONS(3505), - [anon_sym_module] = ACTIONS(3505), - [anon_sym_use] = ACTIONS(3505), - [anon_sym_LBRACK] = ACTIONS(3505), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_error] = ACTIONS(3505), - [anon_sym_DASH_DASH] = ACTIONS(3505), - [anon_sym_DASH] = ACTIONS(3505), - [anon_sym_break] = ACTIONS(3505), - [anon_sym_continue] = ACTIONS(3505), - [anon_sym_for] = ACTIONS(3505), - [anon_sym_loop] = ACTIONS(3505), - [anon_sym_while] = ACTIONS(3505), - [anon_sym_do] = ACTIONS(3505), - [anon_sym_if] = ACTIONS(3505), - [anon_sym_match] = ACTIONS(3505), - [anon_sym_LBRACE] = ACTIONS(3505), - [anon_sym_DOT_DOT] = ACTIONS(3505), - [anon_sym_try] = ACTIONS(3505), - [anon_sym_return] = ACTIONS(3505), - [anon_sym_source] = ACTIONS(3505), - [anon_sym_source_DASHenv] = ACTIONS(3505), - [anon_sym_register] = ACTIONS(3505), - [anon_sym_hide] = ACTIONS(3505), - [anon_sym_hide_DASHenv] = ACTIONS(3505), - [anon_sym_overlay] = ACTIONS(3505), - [anon_sym_as] = ACTIONS(3505), - [anon_sym_where] = ACTIONS(3505), - [anon_sym_not] = ACTIONS(3505), - [anon_sym_DOT_DOT2] = ACTIONS(3505), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3505), - [anon_sym_DOT_DOT_LT] = ACTIONS(3505), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3507), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3507), - [anon_sym_null] = ACTIONS(3505), - [anon_sym_true] = ACTIONS(3505), - [anon_sym_false] = ACTIONS(3505), - [aux_sym__val_number_decimal_token1] = ACTIONS(3505), - [aux_sym__val_number_decimal_token2] = ACTIONS(3505), - [anon_sym_DOT2] = ACTIONS(3505), - [aux_sym__val_number_decimal_token3] = ACTIONS(3505), - [aux_sym__val_number_token1] = ACTIONS(3505), - [aux_sym__val_number_token2] = ACTIONS(3505), - [aux_sym__val_number_token3] = ACTIONS(3505), - [aux_sym__val_number_token4] = ACTIONS(3505), - [aux_sym__val_number_token5] = ACTIONS(3505), - [aux_sym__val_number_token6] = ACTIONS(3505), - [anon_sym_0b] = ACTIONS(3505), - [anon_sym_0o] = ACTIONS(3505), - [anon_sym_0x] = ACTIONS(3505), - [sym_val_date] = ACTIONS(3505), - [anon_sym_DQUOTE] = ACTIONS(3505), - [sym__str_single_quotes] = ACTIONS(3505), - [sym__str_back_ticks] = ACTIONS(3505), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3505), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3505), - [anon_sym_CARET] = ACTIONS(3505), - [anon_sym_POUND] = ACTIONS(113), + [1695] = { + [sym_expr_unary] = STATE(2141), + [sym__expr_unary_minus] = STATE(2114), + [sym_expr_binary] = STATE(2141), + [sym__expr_binary_expression] = STATE(1991), + [sym_expr_parenthesized] = STATE(2141), + [sym__val_range] = STATE(10172), + [sym__value] = STATE(2141), + [sym_val_nothing] = STATE(2022), + [sym_val_bool] = STATE(1448), + [sym_val_variable] = STATE(2022), + [sym__var] = STATE(1172), + [sym_val_number] = STATE(2022), + [sym__val_number_decimal] = STATE(946), + [sym__val_number] = STATE(2176), + [sym_val_duration] = STATE(2022), + [sym_val_filesize] = STATE(2022), + [sym_val_binary] = STATE(2022), + [sym_val_string] = STATE(2022), + [sym__str_double_quotes] = STATE(2201), + [sym_val_interpolated] = STATE(2022), + [sym__inter_single_quotes] = STATE(2202), + [sym__inter_double_quotes] = STATE(2203), + [sym_val_list] = STATE(2022), + [sym_val_record] = STATE(2022), + [sym_val_table] = STATE(2022), + [sym_val_closure] = STATE(2022), + [sym_unquoted] = STATE(2160), + [sym__unquoted_anonymous_prefix] = STATE(10541), + [sym_comment] = STATE(1695), + [anon_sym_LBRACK] = ACTIONS(5155), + [anon_sym_LPAREN] = ACTIONS(5157), + [anon_sym_DOLLAR] = ACTIONS(5159), + [anon_sym_DASH] = ACTIONS(5161), + [anon_sym_LBRACE] = ACTIONS(5163), + [anon_sym_DOT_DOT] = ACTIONS(5165), + [anon_sym_not] = ACTIONS(5167), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5169), + [anon_sym_DOT_DOT_LT] = ACTIONS(5169), + [anon_sym_null] = ACTIONS(5171), + [anon_sym_true] = ACTIONS(5173), + [anon_sym_false] = ACTIONS(5173), + [aux_sym__val_number_decimal_token1] = ACTIONS(5175), + [aux_sym__val_number_decimal_token2] = ACTIONS(5177), + [anon_sym_DOT2] = ACTIONS(5179), + [aux_sym__val_number_decimal_token3] = ACTIONS(5181), + [aux_sym__val_number_token1] = ACTIONS(5183), + [aux_sym__val_number_token2] = ACTIONS(5183), + [aux_sym__val_number_token3] = ACTIONS(5183), + [aux_sym__val_number_token4] = ACTIONS(5185), + [aux_sym__val_number_token5] = ACTIONS(5185), + [aux_sym__val_number_token6] = ACTIONS(5185), + [anon_sym_0b] = ACTIONS(5187), + [anon_sym_0o] = ACTIONS(5189), + [anon_sym_0x] = ACTIONS(5189), + [sym_val_date] = ACTIONS(5191), + [anon_sym_DQUOTE] = ACTIONS(5193), + [sym__str_single_quotes] = ACTIONS(5195), + [sym__str_back_ticks] = ACTIONS(5195), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5197), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5199), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5201), + [anon_sym_POUND] = ACTIONS(3), }, - [1493] = { - [sym_comment] = STATE(1493), - [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), - [anon_sym_SEMI] = ACTIONS(2437), - [sym_cmd_identifier] = ACTIONS(2437), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_RPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_RBRACE] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_not] = ACTIONS(2437), - [anon_sym_DOT_DOT2] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2439), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2439), - [aux_sym__immediate_decimal_token2] = ACTIONS(4033), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [anon_sym_DOT2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2437), - [anon_sym_0o] = ACTIONS(2437), - [anon_sym_0x] = ACTIONS(2437), - [sym_val_date] = 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_CARET] = ACTIONS(2437), - [anon_sym_POUND] = ACTIONS(113), + [1696] = { + [sym_expr_unary] = STATE(2141), + [sym__expr_unary_minus] = STATE(2114), + [sym_expr_binary] = STATE(2141), + [sym__expr_binary_expression] = STATE(1992), + [sym_expr_parenthesized] = STATE(2141), + [sym__val_range] = STATE(10172), + [sym__value] = STATE(2141), + [sym_val_nothing] = STATE(2022), + [sym_val_bool] = STATE(1448), + [sym_val_variable] = STATE(2022), + [sym__var] = STATE(1172), + [sym_val_number] = STATE(2022), + [sym__val_number_decimal] = STATE(946), + [sym__val_number] = STATE(2176), + [sym_val_duration] = STATE(2022), + [sym_val_filesize] = STATE(2022), + [sym_val_binary] = STATE(2022), + [sym_val_string] = STATE(2022), + [sym__str_double_quotes] = STATE(2201), + [sym_val_interpolated] = STATE(2022), + [sym__inter_single_quotes] = STATE(2202), + [sym__inter_double_quotes] = STATE(2203), + [sym_val_list] = STATE(2022), + [sym_val_record] = STATE(2022), + [sym_val_table] = STATE(2022), + [sym_val_closure] = STATE(2022), + [sym_unquoted] = STATE(2194), + [sym__unquoted_anonymous_prefix] = STATE(10541), + [sym_comment] = STATE(1696), + [anon_sym_LBRACK] = ACTIONS(5155), + [anon_sym_LPAREN] = ACTIONS(5157), + [anon_sym_DOLLAR] = ACTIONS(5159), + [anon_sym_DASH] = ACTIONS(5161), + [anon_sym_LBRACE] = ACTIONS(5163), + [anon_sym_DOT_DOT] = ACTIONS(5165), + [anon_sym_not] = ACTIONS(5167), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5169), + [anon_sym_DOT_DOT_LT] = ACTIONS(5169), + [anon_sym_null] = ACTIONS(5171), + [anon_sym_true] = ACTIONS(5173), + [anon_sym_false] = ACTIONS(5173), + [aux_sym__val_number_decimal_token1] = ACTIONS(5175), + [aux_sym__val_number_decimal_token2] = ACTIONS(5177), + [anon_sym_DOT2] = ACTIONS(5179), + [aux_sym__val_number_decimal_token3] = ACTIONS(5181), + [aux_sym__val_number_token1] = ACTIONS(5183), + [aux_sym__val_number_token2] = ACTIONS(5183), + [aux_sym__val_number_token3] = ACTIONS(5183), + [aux_sym__val_number_token4] = ACTIONS(5185), + [aux_sym__val_number_token5] = ACTIONS(5185), + [aux_sym__val_number_token6] = ACTIONS(5185), + [anon_sym_0b] = ACTIONS(5187), + [anon_sym_0o] = ACTIONS(5189), + [anon_sym_0x] = ACTIONS(5189), + [sym_val_date] = ACTIONS(5191), + [anon_sym_DQUOTE] = ACTIONS(5193), + [sym__str_single_quotes] = ACTIONS(5195), + [sym__str_back_ticks] = ACTIONS(5195), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5197), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5199), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5201), + [anon_sym_POUND] = ACTIONS(3), }, - [1494] = { - [sym_cell_path] = STATE(2443), - [sym_path] = STATE(1457), - [sym_comment] = STATE(1494), - [anon_sym_LBRACK] = ACTIONS(1156), - [anon_sym_COMMA] = ACTIONS(1156), - [anon_sym_RBRACK] = ACTIONS(1156), - [anon_sym_LPAREN] = ACTIONS(1156), - [anon_sym_DOLLAR] = ACTIONS(1156), - [anon_sym_GT] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1154), - [anon_sym_in] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(1156), - [anon_sym_DOT_DOT] = ACTIONS(1154), - [anon_sym_STAR] = ACTIONS(1154), - [anon_sym_STAR_STAR] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1156), - [anon_sym_SLASH] = ACTIONS(1154), - [anon_sym_mod] = ACTIONS(1156), - [anon_sym_SLASH_SLASH] = ACTIONS(1156), - [anon_sym_PLUS] = ACTIONS(1154), - [anon_sym_bit_DASHshl] = ACTIONS(1156), - [anon_sym_bit_DASHshr] = ACTIONS(1156), - [anon_sym_EQ_EQ] = ACTIONS(1156), - [anon_sym_BANG_EQ] = ACTIONS(1156), - [anon_sym_LT2] = ACTIONS(1154), - [anon_sym_LT_EQ] = ACTIONS(1156), - [anon_sym_GT_EQ] = ACTIONS(1156), - [anon_sym_not_DASHin] = ACTIONS(1156), - [anon_sym_starts_DASHwith] = ACTIONS(1156), - [anon_sym_ends_DASHwith] = ACTIONS(1156), - [anon_sym_EQ_TILDE] = ACTIONS(1156), - [anon_sym_BANG_TILDE] = ACTIONS(1156), - [anon_sym_bit_DASHand] = ACTIONS(1156), - [anon_sym_bit_DASHxor] = ACTIONS(1156), - [anon_sym_bit_DASHor] = ACTIONS(1156), - [anon_sym_and] = ACTIONS(1156), - [anon_sym_xor] = ACTIONS(1156), - [anon_sym_or] = ACTIONS(1156), - [anon_sym_DOT] = ACTIONS(4191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1156), - [anon_sym_DOT_DOT_LT] = ACTIONS(1156), - [anon_sym_null] = ACTIONS(1156), - [anon_sym_true] = ACTIONS(1156), - [anon_sym_false] = ACTIONS(1156), - [aux_sym__val_number_decimal_token1] = ACTIONS(1154), - [aux_sym__val_number_decimal_token2] = ACTIONS(1156), - [anon_sym_DOT2] = ACTIONS(1154), - [aux_sym__val_number_decimal_token3] = ACTIONS(1156), - [aux_sym__val_number_token1] = ACTIONS(1156), - [aux_sym__val_number_token2] = ACTIONS(1156), - [aux_sym__val_number_token3] = ACTIONS(1156), - [aux_sym__val_number_token4] = ACTIONS(1156), - [aux_sym__val_number_token5] = ACTIONS(1156), - [aux_sym__val_number_token6] = ACTIONS(1156), - [anon_sym_0b] = ACTIONS(1154), - [anon_sym_0o] = ACTIONS(1154), - [anon_sym_0x] = ACTIONS(1154), - [sym_val_date] = ACTIONS(1156), - [anon_sym_DQUOTE] = ACTIONS(1156), - [sym__str_single_quotes] = ACTIONS(1156), - [sym__str_back_ticks] = ACTIONS(1156), - [anon_sym_err_GT] = ACTIONS(1156), - [anon_sym_out_GT] = ACTIONS(1156), - [anon_sym_e_GT] = ACTIONS(1156), - [anon_sym_o_GT] = ACTIONS(1156), - [anon_sym_err_PLUSout_GT] = ACTIONS(1156), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1156), - [anon_sym_o_PLUSe_GT] = ACTIONS(1156), - [anon_sym_e_PLUSo_GT] = ACTIONS(1156), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1154), + [1697] = { + [sym_expr_unary] = STATE(2141), + [sym__expr_unary_minus] = STATE(2114), + [sym_expr_binary] = STATE(2141), + [sym__expr_binary_expression] = STATE(1994), + [sym_expr_parenthesized] = STATE(2141), + [sym__val_range] = STATE(10172), + [sym__value] = STATE(2141), + [sym_val_nothing] = STATE(2022), + [sym_val_bool] = STATE(1448), + [sym_val_variable] = STATE(2022), + [sym__var] = STATE(1172), + [sym_val_number] = STATE(2022), + [sym__val_number_decimal] = STATE(946), + [sym__val_number] = STATE(2176), + [sym_val_duration] = STATE(2022), + [sym_val_filesize] = STATE(2022), + [sym_val_binary] = STATE(2022), + [sym_val_string] = STATE(2022), + [sym__str_double_quotes] = STATE(2201), + [sym_val_interpolated] = STATE(2022), + [sym__inter_single_quotes] = STATE(2202), + [sym__inter_double_quotes] = STATE(2203), + [sym_val_list] = STATE(2022), + [sym_val_record] = STATE(2022), + [sym_val_table] = STATE(2022), + [sym_val_closure] = STATE(2022), + [sym_unquoted] = STATE(2207), + [sym__unquoted_anonymous_prefix] = STATE(10541), + [sym_comment] = STATE(1697), + [anon_sym_LBRACK] = ACTIONS(5155), + [anon_sym_LPAREN] = ACTIONS(5157), + [anon_sym_DOLLAR] = ACTIONS(5159), + [anon_sym_DASH] = ACTIONS(5161), + [anon_sym_LBRACE] = ACTIONS(5163), + [anon_sym_DOT_DOT] = ACTIONS(5165), + [anon_sym_not] = ACTIONS(5167), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5169), + [anon_sym_DOT_DOT_LT] = ACTIONS(5169), + [anon_sym_null] = ACTIONS(5171), + [anon_sym_true] = ACTIONS(5173), + [anon_sym_false] = ACTIONS(5173), + [aux_sym__val_number_decimal_token1] = ACTIONS(5175), + [aux_sym__val_number_decimal_token2] = ACTIONS(5177), + [anon_sym_DOT2] = ACTIONS(5179), + [aux_sym__val_number_decimal_token3] = ACTIONS(5181), + [aux_sym__val_number_token1] = ACTIONS(5183), + [aux_sym__val_number_token2] = ACTIONS(5183), + [aux_sym__val_number_token3] = ACTIONS(5183), + [aux_sym__val_number_token4] = ACTIONS(5185), + [aux_sym__val_number_token5] = ACTIONS(5185), + [aux_sym__val_number_token6] = ACTIONS(5185), + [anon_sym_0b] = ACTIONS(5187), + [anon_sym_0o] = ACTIONS(5189), + [anon_sym_0x] = ACTIONS(5189), + [sym_val_date] = ACTIONS(5191), + [anon_sym_DQUOTE] = ACTIONS(5193), + [sym__str_single_quotes] = ACTIONS(5195), + [sym__str_back_ticks] = ACTIONS(5195), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5197), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5199), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5201), [anon_sym_POUND] = ACTIONS(3), }, - [1495] = { - [sym_comment] = STATE(1495), - [anon_sym_LBRACK] = ACTIONS(1160), - [anon_sym_COMMA] = ACTIONS(1160), - [anon_sym_RBRACK] = ACTIONS(1160), - [anon_sym_LPAREN] = ACTIONS(1160), - [anon_sym_DOLLAR] = ACTIONS(1160), - [anon_sym_GT] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_in] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1160), - [anon_sym_DOT_DOT] = ACTIONS(1158), - [anon_sym_STAR] = ACTIONS(1158), - [anon_sym_STAR_STAR] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1160), - [anon_sym_SLASH] = ACTIONS(1158), - [anon_sym_mod] = ACTIONS(1160), - [anon_sym_SLASH_SLASH] = ACTIONS(1160), - [anon_sym_PLUS] = ACTIONS(1158), - [anon_sym_bit_DASHshl] = ACTIONS(1160), - [anon_sym_bit_DASHshr] = ACTIONS(1160), - [anon_sym_EQ_EQ] = ACTIONS(1160), - [anon_sym_BANG_EQ] = ACTIONS(1160), - [anon_sym_LT2] = ACTIONS(1158), - [anon_sym_LT_EQ] = ACTIONS(1160), - [anon_sym_GT_EQ] = ACTIONS(1160), - [anon_sym_not_DASHin] = ACTIONS(1160), - [anon_sym_starts_DASHwith] = ACTIONS(1160), - [anon_sym_ends_DASHwith] = ACTIONS(1160), - [anon_sym_EQ_TILDE] = ACTIONS(1160), - [anon_sym_BANG_TILDE] = ACTIONS(1160), - [anon_sym_bit_DASHand] = ACTIONS(1160), - [anon_sym_bit_DASHxor] = ACTIONS(1160), - [anon_sym_bit_DASHor] = ACTIONS(1160), - [anon_sym_and] = ACTIONS(1160), - [anon_sym_xor] = ACTIONS(1160), - [anon_sym_or] = ACTIONS(1160), - [anon_sym_DOT_DOT2] = ACTIONS(4625), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1158), - [anon_sym_DOT_DOT_LT] = ACTIONS(1158), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4627), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4627), - [anon_sym_null] = ACTIONS(1160), - [anon_sym_true] = ACTIONS(1160), - [anon_sym_false] = ACTIONS(1160), - [aux_sym__val_number_decimal_token1] = ACTIONS(1158), - [aux_sym__val_number_decimal_token2] = ACTIONS(1160), - [anon_sym_DOT2] = ACTIONS(1158), - [aux_sym__val_number_decimal_token3] = ACTIONS(1160), - [aux_sym__val_number_token1] = ACTIONS(1160), - [aux_sym__val_number_token2] = ACTIONS(1160), - [aux_sym__val_number_token3] = ACTIONS(1160), - [aux_sym__val_number_token4] = ACTIONS(1160), - [aux_sym__val_number_token5] = ACTIONS(1160), - [aux_sym__val_number_token6] = ACTIONS(1160), - [anon_sym_0b] = ACTIONS(1158), - [anon_sym_0o] = ACTIONS(1158), - [anon_sym_0x] = ACTIONS(1158), - [sym_val_date] = ACTIONS(1160), - [anon_sym_DQUOTE] = ACTIONS(1160), - [sym__str_single_quotes] = ACTIONS(1160), - [sym__str_back_ticks] = ACTIONS(1160), - [anon_sym_err_GT] = ACTIONS(1160), - [anon_sym_out_GT] = ACTIONS(1160), - [anon_sym_e_GT] = ACTIONS(1160), - [anon_sym_o_GT] = ACTIONS(1160), - [anon_sym_err_PLUSout_GT] = ACTIONS(1160), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1160), - [anon_sym_o_PLUSe_GT] = ACTIONS(1160), - [anon_sym_e_PLUSo_GT] = ACTIONS(1160), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1158), + [1698] = { + [sym_expr_unary] = STATE(2141), + [sym__expr_unary_minus] = STATE(2114), + [sym_expr_binary] = STATE(2141), + [sym__expr_binary_expression] = STATE(1995), + [sym_expr_parenthesized] = STATE(2141), + [sym__val_range] = STATE(10172), + [sym__value] = STATE(2141), + [sym_val_nothing] = STATE(2022), + [sym_val_bool] = STATE(1448), + [sym_val_variable] = STATE(2022), + [sym__var] = STATE(1172), + [sym_val_number] = STATE(2022), + [sym__val_number_decimal] = STATE(946), + [sym__val_number] = STATE(2176), + [sym_val_duration] = STATE(2022), + [sym_val_filesize] = STATE(2022), + [sym_val_binary] = STATE(2022), + [sym_val_string] = STATE(2022), + [sym__str_double_quotes] = STATE(2201), + [sym_val_interpolated] = STATE(2022), + [sym__inter_single_quotes] = STATE(2202), + [sym__inter_double_quotes] = STATE(2203), + [sym_val_list] = STATE(2022), + [sym_val_record] = STATE(2022), + [sym_val_table] = STATE(2022), + [sym_val_closure] = STATE(2022), + [sym_unquoted] = STATE(2232), + [sym__unquoted_anonymous_prefix] = STATE(10541), + [sym_comment] = STATE(1698), + [anon_sym_LBRACK] = ACTIONS(5155), + [anon_sym_LPAREN] = ACTIONS(5157), + [anon_sym_DOLLAR] = ACTIONS(5159), + [anon_sym_DASH] = ACTIONS(5161), + [anon_sym_LBRACE] = ACTIONS(5163), + [anon_sym_DOT_DOT] = ACTIONS(5165), + [anon_sym_not] = ACTIONS(5167), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5169), + [anon_sym_DOT_DOT_LT] = ACTIONS(5169), + [anon_sym_null] = ACTIONS(5171), + [anon_sym_true] = ACTIONS(5173), + [anon_sym_false] = ACTIONS(5173), + [aux_sym__val_number_decimal_token1] = ACTIONS(5175), + [aux_sym__val_number_decimal_token2] = ACTIONS(5177), + [anon_sym_DOT2] = ACTIONS(5179), + [aux_sym__val_number_decimal_token3] = ACTIONS(5181), + [aux_sym__val_number_token1] = ACTIONS(5183), + [aux_sym__val_number_token2] = ACTIONS(5183), + [aux_sym__val_number_token3] = ACTIONS(5183), + [aux_sym__val_number_token4] = ACTIONS(5185), + [aux_sym__val_number_token5] = ACTIONS(5185), + [aux_sym__val_number_token6] = ACTIONS(5185), + [anon_sym_0b] = ACTIONS(5187), + [anon_sym_0o] = ACTIONS(5189), + [anon_sym_0x] = ACTIONS(5189), + [sym_val_date] = ACTIONS(5191), + [anon_sym_DQUOTE] = ACTIONS(5193), + [sym__str_single_quotes] = ACTIONS(5195), + [sym__str_back_ticks] = ACTIONS(5195), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5197), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5199), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5201), [anon_sym_POUND] = ACTIONS(3), }, - [1496] = { - [sym_comment] = STATE(1496), - [anon_sym_export] = ACTIONS(1247), - [anon_sym_alias] = ACTIONS(1247), - [anon_sym_let] = ACTIONS(1247), - [anon_sym_let_DASHenv] = ACTIONS(1247), - [anon_sym_mut] = ACTIONS(1247), - [anon_sym_const] = ACTIONS(1247), - [anon_sym_SEMI] = ACTIONS(1247), - [sym_cmd_identifier] = ACTIONS(1247), - [anon_sym_LF] = ACTIONS(1249), - [anon_sym_def] = ACTIONS(1247), - [anon_sym_export_DASHenv] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1247), - [anon_sym_module] = ACTIONS(1247), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_LBRACK] = ACTIONS(1247), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_RPAREN] = ACTIONS(1247), - [anon_sym_DOLLAR] = ACTIONS(1247), - [anon_sym_error] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1247), - [anon_sym_break] = ACTIONS(1247), - [anon_sym_continue] = ACTIONS(1247), - [anon_sym_for] = ACTIONS(1247), - [anon_sym_loop] = ACTIONS(1247), - [anon_sym_while] = ACTIONS(1247), - [anon_sym_do] = ACTIONS(1247), - [anon_sym_if] = ACTIONS(1247), - [anon_sym_match] = ACTIONS(1247), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_RBRACE] = ACTIONS(1247), - [anon_sym_DOT_DOT] = ACTIONS(1247), - [anon_sym_try] = ACTIONS(1247), - [anon_sym_return] = ACTIONS(1247), - [anon_sym_source] = ACTIONS(1247), - [anon_sym_source_DASHenv] = ACTIONS(1247), - [anon_sym_register] = ACTIONS(1247), - [anon_sym_hide] = ACTIONS(1247), - [anon_sym_hide_DASHenv] = ACTIONS(1247), - [anon_sym_overlay] = ACTIONS(1247), - [anon_sym_as] = ACTIONS(1247), - [anon_sym_where] = ACTIONS(1247), - [anon_sym_not] = ACTIONS(1247), - [anon_sym_LPAREN2] = ACTIONS(4037), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1247), - [anon_sym_DOT_DOT_LT] = ACTIONS(1247), - [anon_sym_null] = ACTIONS(1247), - [anon_sym_true] = ACTIONS(1247), - [anon_sym_false] = ACTIONS(1247), - [aux_sym__val_number_decimal_token1] = ACTIONS(1247), - [aux_sym__val_number_decimal_token2] = ACTIONS(1247), - [anon_sym_DOT2] = ACTIONS(1247), - [aux_sym__val_number_decimal_token3] = ACTIONS(1247), - [aux_sym__val_number_token1] = ACTIONS(1247), - [aux_sym__val_number_token2] = ACTIONS(1247), - [aux_sym__val_number_token3] = ACTIONS(1247), - [aux_sym__val_number_token4] = ACTIONS(1247), - [aux_sym__val_number_token5] = ACTIONS(1247), - [aux_sym__val_number_token6] = ACTIONS(1247), - [anon_sym_0b] = ACTIONS(1247), - [anon_sym_0o] = ACTIONS(1247), - [anon_sym_0x] = ACTIONS(1247), - [sym_val_date] = ACTIONS(1247), - [anon_sym_DQUOTE] = ACTIONS(1247), - [sym__str_single_quotes] = ACTIONS(1247), - [sym__str_back_ticks] = ACTIONS(1247), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1247), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1247), - [anon_sym_CARET] = ACTIONS(1247), - [aux_sym_unquoted_token6] = ACTIONS(1251), + [1699] = { + [sym_comment] = STATE(1699), + [ts_builtin_sym_end] = ACTIONS(1213), + [anon_sym_export] = ACTIONS(1211), + [anon_sym_alias] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(1211), + [anon_sym_let_DASHenv] = ACTIONS(1211), + [anon_sym_mut] = ACTIONS(1211), + [anon_sym_const] = ACTIONS(1211), + [anon_sym_SEMI] = ACTIONS(1211), + [sym_cmd_identifier] = ACTIONS(1211), + [anon_sym_LF] = ACTIONS(1213), + [anon_sym_def] = ACTIONS(1211), + [anon_sym_export_DASHenv] = ACTIONS(1211), + [anon_sym_extern] = ACTIONS(1211), + [anon_sym_module] = ACTIONS(1211), + [anon_sym_use] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(1211), + [anon_sym_DOLLAR] = ACTIONS(1211), + [anon_sym_error] = ACTIONS(1211), + [anon_sym_DASH_DASH] = ACTIONS(1211), + [anon_sym_DASH] = ACTIONS(1211), + [anon_sym_break] = ACTIONS(1211), + [anon_sym_continue] = ACTIONS(1211), + [anon_sym_for] = ACTIONS(1211), + [anon_sym_loop] = ACTIONS(1211), + [anon_sym_while] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(1211), + [anon_sym_if] = ACTIONS(1211), + [anon_sym_match] = ACTIONS(1211), + [anon_sym_LBRACE] = ACTIONS(1211), + [anon_sym_DOT_DOT] = ACTIONS(1211), + [anon_sym_try] = ACTIONS(1211), + [anon_sym_return] = ACTIONS(1211), + [anon_sym_source] = ACTIONS(1211), + [anon_sym_source_DASHenv] = ACTIONS(1211), + [anon_sym_register] = ACTIONS(1211), + [anon_sym_hide] = ACTIONS(1211), + [anon_sym_hide_DASHenv] = ACTIONS(1211), + [anon_sym_overlay] = ACTIONS(1211), + [anon_sym_as] = ACTIONS(1211), + [anon_sym_where] = ACTIONS(1211), + [anon_sym_not] = ACTIONS(1211), + [anon_sym_LPAREN2] = ACTIONS(1213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1211), + [anon_sym_DOT_DOT_LT] = ACTIONS(1211), + [anon_sym_null] = ACTIONS(1211), + [anon_sym_true] = ACTIONS(1211), + [anon_sym_false] = ACTIONS(1211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1211), + [aux_sym__val_number_decimal_token2] = ACTIONS(1211), + [anon_sym_DOT2] = ACTIONS(1211), + [aux_sym__val_number_decimal_token3] = ACTIONS(1211), + [aux_sym__val_number_token1] = ACTIONS(1211), + [aux_sym__val_number_token2] = ACTIONS(1211), + [aux_sym__val_number_token3] = ACTIONS(1211), + [aux_sym__val_number_token4] = ACTIONS(1211), + [aux_sym__val_number_token5] = ACTIONS(1211), + [aux_sym__val_number_token6] = ACTIONS(1211), + [anon_sym_0b] = ACTIONS(1211), + [anon_sym_0o] = ACTIONS(1211), + [anon_sym_0x] = ACTIONS(1211), + [sym_val_date] = ACTIONS(1211), + [anon_sym_DQUOTE] = ACTIONS(1211), + [sym__str_single_quotes] = ACTIONS(1211), + [sym__str_back_ticks] = ACTIONS(1211), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1211), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1211), + [anon_sym_CARET] = ACTIONS(1211), [anon_sym_POUND] = ACTIONS(113), }, - [1497] = { - [sym_path] = STATE(1917), - [sym_comment] = STATE(1497), - [aux_sym_cell_path_repeat1] = STATE(1501), - [anon_sym_LBRACK] = ACTIONS(989), - [anon_sym_COMMA] = ACTIONS(989), - [anon_sym_LPAREN] = ACTIONS(989), - [anon_sym_DOLLAR] = ACTIONS(989), - [anon_sym_GT] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_in] = ACTIONS(987), - [anon_sym_LBRACE] = ACTIONS(989), - [anon_sym_RBRACE] = ACTIONS(989), - [anon_sym__] = ACTIONS(987), - [anon_sym_DOT_DOT] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(987), - [anon_sym_STAR_STAR] = ACTIONS(989), - [anon_sym_PLUS_PLUS] = ACTIONS(989), - [anon_sym_SLASH] = ACTIONS(987), - [anon_sym_mod] = ACTIONS(989), - [anon_sym_SLASH_SLASH] = ACTIONS(989), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_bit_DASHshl] = ACTIONS(989), - [anon_sym_bit_DASHshr] = ACTIONS(989), - [anon_sym_EQ_EQ] = ACTIONS(989), - [anon_sym_BANG_EQ] = ACTIONS(989), - [anon_sym_LT2] = ACTIONS(987), - [anon_sym_LT_EQ] = ACTIONS(989), - [anon_sym_GT_EQ] = ACTIONS(989), - [anon_sym_not_DASHin] = ACTIONS(989), - [anon_sym_starts_DASHwith] = ACTIONS(989), - [anon_sym_ends_DASHwith] = ACTIONS(989), - [anon_sym_EQ_TILDE] = ACTIONS(989), - [anon_sym_BANG_TILDE] = ACTIONS(989), - [anon_sym_bit_DASHand] = ACTIONS(989), - [anon_sym_bit_DASHxor] = ACTIONS(989), - [anon_sym_bit_DASHor] = ACTIONS(989), - [anon_sym_and] = ACTIONS(989), - [anon_sym_xor] = ACTIONS(989), - [anon_sym_or] = ACTIONS(989), - [anon_sym_DOT] = ACTIONS(4585), - [anon_sym_DOT_DOT_EQ] = ACTIONS(989), - [anon_sym_DOT_DOT_LT] = ACTIONS(989), - [anon_sym_null] = ACTIONS(989), - [anon_sym_true] = ACTIONS(989), - [anon_sym_false] = ACTIONS(989), - [aux_sym__val_number_decimal_token1] = ACTIONS(987), - [aux_sym__val_number_decimal_token2] = ACTIONS(989), - [anon_sym_DOT2] = ACTIONS(987), - [aux_sym__val_number_decimal_token3] = ACTIONS(989), - [aux_sym__val_number_token1] = ACTIONS(989), - [aux_sym__val_number_token2] = ACTIONS(989), - [aux_sym__val_number_token3] = ACTIONS(989), - [aux_sym__val_number_token4] = ACTIONS(989), - [aux_sym__val_number_token5] = ACTIONS(989), - [aux_sym__val_number_token6] = ACTIONS(989), - [anon_sym_0b] = ACTIONS(987), - [anon_sym_0o] = ACTIONS(987), - [anon_sym_0x] = ACTIONS(987), - [sym_val_date] = ACTIONS(989), - [anon_sym_DQUOTE] = ACTIONS(989), - [sym__str_single_quotes] = ACTIONS(989), - [sym__str_back_ticks] = ACTIONS(989), - [anon_sym_err_GT] = ACTIONS(989), - [anon_sym_out_GT] = ACTIONS(989), - [anon_sym_e_GT] = ACTIONS(989), - [anon_sym_o_GT] = ACTIONS(989), - [anon_sym_err_PLUSout_GT] = ACTIONS(989), - [anon_sym_out_PLUSerr_GT] = ACTIONS(989), - [anon_sym_o_PLUSe_GT] = ACTIONS(989), - [anon_sym_e_PLUSo_GT] = ACTIONS(989), - [aux_sym_unquoted_token1] = ACTIONS(987), + [1700] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6333), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6234), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4982), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5599), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1700), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(5035), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4787), + [anon_sym_DOT_DOT_LT] = ACTIONS(4787), + [anon_sym_null] = ACTIONS(3669), + [anon_sym_true] = ACTIONS(3671), + [anon_sym_false] = ACTIONS(3671), + [aux_sym__val_number_decimal_token1] = ACTIONS(3673), + [aux_sym__val_number_decimal_token2] = ACTIONS(3675), + [anon_sym_DOT2] = ACTIONS(5037), + [aux_sym__val_number_decimal_token3] = ACTIONS(3679), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(3681), + [aux_sym__val_number_token5] = ACTIONS(3681), + [aux_sym__val_number_token6] = ACTIONS(3681), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(3683), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), [anon_sym_POUND] = ACTIONS(3), }, - [1498] = { - [sym_cell_path] = STATE(2503), - [sym_path] = STATE(1517), - [sym_comment] = STATE(1498), - [ts_builtin_sym_end] = ACTIONS(1012), - [anon_sym_export] = ACTIONS(1010), - [anon_sym_alias] = ACTIONS(1010), - [anon_sym_let] = ACTIONS(1010), - [anon_sym_let_DASHenv] = ACTIONS(1010), - [anon_sym_mut] = ACTIONS(1010), - [anon_sym_const] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1010), - [sym_cmd_identifier] = ACTIONS(1010), - [anon_sym_LF] = ACTIONS(1012), - [anon_sym_def] = ACTIONS(1010), - [anon_sym_export_DASHenv] = ACTIONS(1010), - [anon_sym_extern] = ACTIONS(1010), - [anon_sym_module] = ACTIONS(1010), - [anon_sym_use] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(1010), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_error] = ACTIONS(1010), - [anon_sym_DASH_DASH] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1010), - [anon_sym_continue] = ACTIONS(1010), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_loop] = ACTIONS(1010), - [anon_sym_while] = ACTIONS(1010), - [anon_sym_do] = ACTIONS(1010), - [anon_sym_if] = ACTIONS(1010), - [anon_sym_match] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_DOT_DOT] = ACTIONS(1010), - [anon_sym_try] = ACTIONS(1010), - [anon_sym_return] = ACTIONS(1010), - [anon_sym_source] = ACTIONS(1010), - [anon_sym_source_DASHenv] = ACTIONS(1010), - [anon_sym_register] = ACTIONS(1010), - [anon_sym_hide] = ACTIONS(1010), - [anon_sym_hide_DASHenv] = ACTIONS(1010), - [anon_sym_overlay] = ACTIONS(1010), - [anon_sym_as] = ACTIONS(1010), - [anon_sym_where] = ACTIONS(1010), - [anon_sym_not] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(4629), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT] = ACTIONS(1010), - [anon_sym_null] = ACTIONS(1010), - [anon_sym_true] = ACTIONS(1010), - [anon_sym_false] = ACTIONS(1010), - [aux_sym__val_number_decimal_token1] = ACTIONS(1010), - [aux_sym__val_number_decimal_token2] = ACTIONS(1010), - [anon_sym_DOT2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = 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(1010), - [aux_sym__val_number_token5] = ACTIONS(1010), - [aux_sym__val_number_token6] = ACTIONS(1010), - [anon_sym_0b] = ACTIONS(1010), - [anon_sym_0o] = ACTIONS(1010), - [anon_sym_0x] = ACTIONS(1010), - [sym_val_date] = ACTIONS(1010), - [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_CARET] = ACTIONS(1010), - [anon_sym_POUND] = ACTIONS(113), - }, - [1499] = { - [sym_comment] = STATE(1499), - [anon_sym_export] = ACTIONS(1253), - [anon_sym_alias] = ACTIONS(1253), - [anon_sym_let] = ACTIONS(1253), - [anon_sym_let_DASHenv] = ACTIONS(1253), - [anon_sym_mut] = ACTIONS(1253), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_SEMI] = ACTIONS(1253), - [sym_cmd_identifier] = ACTIONS(1253), - [anon_sym_LF] = ACTIONS(1255), - [anon_sym_def] = ACTIONS(1253), - [anon_sym_export_DASHenv] = ACTIONS(1253), - [anon_sym_extern] = ACTIONS(1253), - [anon_sym_module] = ACTIONS(1253), - [anon_sym_use] = ACTIONS(1253), - [anon_sym_LBRACK] = ACTIONS(1253), - [anon_sym_LPAREN] = ACTIONS(1253), - [anon_sym_RPAREN] = ACTIONS(1253), - [anon_sym_DOLLAR] = ACTIONS(1253), - [anon_sym_error] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_break] = ACTIONS(1253), - [anon_sym_continue] = ACTIONS(1253), - [anon_sym_for] = ACTIONS(1253), - [anon_sym_loop] = ACTIONS(1253), - [anon_sym_while] = ACTIONS(1253), - [anon_sym_do] = ACTIONS(1253), - [anon_sym_if] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1253), - [anon_sym_LBRACE] = ACTIONS(1253), - [anon_sym_RBRACE] = ACTIONS(1253), - [anon_sym_DOT_DOT] = ACTIONS(1253), - [anon_sym_try] = ACTIONS(1253), - [anon_sym_return] = ACTIONS(1253), - [anon_sym_source] = ACTIONS(1253), - [anon_sym_source_DASHenv] = ACTIONS(1253), - [anon_sym_register] = ACTIONS(1253), - [anon_sym_hide] = ACTIONS(1253), - [anon_sym_hide_DASHenv] = ACTIONS(1253), - [anon_sym_overlay] = ACTIONS(1253), - [anon_sym_as] = ACTIONS(1253), - [anon_sym_where] = ACTIONS(1253), - [anon_sym_not] = ACTIONS(1253), - [anon_sym_LPAREN2] = ACTIONS(4631), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1253), - [anon_sym_DOT_DOT_LT] = ACTIONS(1253), - [anon_sym_null] = ACTIONS(1253), - [anon_sym_true] = ACTIONS(1253), - [anon_sym_false] = ACTIONS(1253), - [aux_sym__val_number_decimal_token1] = ACTIONS(1253), - [aux_sym__val_number_decimal_token2] = ACTIONS(1253), - [anon_sym_DOT2] = ACTIONS(1253), - [aux_sym__val_number_decimal_token3] = ACTIONS(1253), - [aux_sym__val_number_token1] = ACTIONS(1253), - [aux_sym__val_number_token2] = ACTIONS(1253), - [aux_sym__val_number_token3] = ACTIONS(1253), - [aux_sym__val_number_token4] = ACTIONS(1253), - [aux_sym__val_number_token5] = ACTIONS(1253), - [aux_sym__val_number_token6] = ACTIONS(1253), - [anon_sym_0b] = ACTIONS(1253), - [anon_sym_0o] = ACTIONS(1253), - [anon_sym_0x] = ACTIONS(1253), - [sym_val_date] = ACTIONS(1253), - [anon_sym_DQUOTE] = ACTIONS(1253), - [sym__str_single_quotes] = ACTIONS(1253), - [sym__str_back_ticks] = ACTIONS(1253), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1253), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1253), - [anon_sym_CARET] = ACTIONS(1253), - [aux_sym_unquoted_token6] = ACTIONS(1257), - [anon_sym_POUND] = ACTIONS(113), + [1701] = { + [sym_expr_unary] = STATE(5402), + [sym__expr_unary_minus] = STATE(5522), + [sym_expr_binary] = STATE(5402), + [sym__expr_binary_expression] = STATE(5293), + [sym_expr_parenthesized] = STATE(5402), + [sym__val_range] = STATE(10097), + [sym__value] = STATE(5402), + [sym_val_nothing] = STATE(5416), + [sym_val_bool] = STATE(5140), + [sym_val_variable] = STATE(5416), + [sym__var] = STATE(4575), + [sym_val_number] = STATE(5416), + [sym__val_number_decimal] = STATE(3898), + [sym__val_number] = STATE(5419), + [sym_val_duration] = STATE(5416), + [sym_val_filesize] = STATE(5416), + [sym_val_binary] = STATE(5416), + [sym_val_string] = STATE(5416), + [sym__str_double_quotes] = STATE(5513), + [sym_val_interpolated] = STATE(5416), + [sym__inter_single_quotes] = STATE(5443), + [sym__inter_double_quotes] = STATE(5209), + [sym_val_list] = STATE(5416), + [sym_val_record] = STATE(5416), + [sym_val_table] = STATE(5416), + [sym_val_closure] = STATE(5416), + [sym_unquoted] = STATE(5405), + [sym__unquoted_anonymous_prefix] = STATE(10282), + [sym_comment] = STATE(1701), + [anon_sym_LBRACK] = ACTIONS(2740), + [anon_sym_LPAREN] = ACTIONS(5203), + [anon_sym_DOLLAR] = ACTIONS(5205), + [anon_sym_DASH] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(2746), + [anon_sym_DOT_DOT] = ACTIONS(5207), + [anon_sym_not] = ACTIONS(4028), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5209), + [anon_sym_DOT_DOT_LT] = ACTIONS(5209), + [anon_sym_null] = ACTIONS(4032), + [anon_sym_true] = ACTIONS(4034), + [anon_sym_false] = ACTIONS(4034), + [aux_sym__val_number_decimal_token1] = ACTIONS(4036), + [aux_sym__val_number_decimal_token2] = ACTIONS(4038), + [anon_sym_DOT2] = ACTIONS(5211), + [aux_sym__val_number_decimal_token3] = ACTIONS(4042), + [aux_sym__val_number_token1] = ACTIONS(2758), + [aux_sym__val_number_token2] = ACTIONS(2758), + [aux_sym__val_number_token3] = ACTIONS(2758), + [aux_sym__val_number_token4] = ACTIONS(4044), + [aux_sym__val_number_token5] = ACTIONS(4044), + [aux_sym__val_number_token6] = ACTIONS(4044), + [anon_sym_0b] = ACTIONS(1676), + [anon_sym_0o] = ACTIONS(1678), + [anon_sym_0x] = ACTIONS(1678), + [sym_val_date] = ACTIONS(4046), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym__str_single_quotes] = ACTIONS(2766), + [sym__str_back_ticks] = ACTIONS(2766), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2770), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(1694), + [anon_sym_POUND] = ACTIONS(3), }, - [1500] = { - [sym_comment] = STATE(1500), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_COMMA] = ACTIONS(936), - [anon_sym_RBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_STAR_STAR] = ACTIONS(936), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(936), - [anon_sym_SLASH_SLASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(936), - [anon_sym_bit_DASHshr] = ACTIONS(936), - [anon_sym_EQ_EQ] = ACTIONS(936), - [anon_sym_BANG_EQ] = ACTIONS(936), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(936), - [anon_sym_GT_EQ] = ACTIONS(936), - [anon_sym_not_DASHin] = ACTIONS(936), - [anon_sym_starts_DASHwith] = ACTIONS(936), - [anon_sym_ends_DASHwith] = ACTIONS(936), - [anon_sym_EQ_TILDE] = ACTIONS(936), - [anon_sym_BANG_TILDE] = ACTIONS(936), - [anon_sym_bit_DASHand] = ACTIONS(936), - [anon_sym_bit_DASHxor] = ACTIONS(936), - [anon_sym_bit_DASHor] = ACTIONS(936), - [anon_sym_and] = ACTIONS(936), - [anon_sym_xor] = ACTIONS(936), - [anon_sym_or] = ACTIONS(936), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [aux_sym__immediate_decimal_token1] = ACTIONS(4633), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [sym__entry_separator] = ACTIONS(938), - [anon_sym_err_GT] = ACTIONS(936), - [anon_sym_out_GT] = ACTIONS(936), - [anon_sym_e_GT] = ACTIONS(936), - [anon_sym_o_GT] = ACTIONS(936), - [anon_sym_err_PLUSout_GT] = ACTIONS(936), - [anon_sym_out_PLUSerr_GT] = ACTIONS(936), - [anon_sym_o_PLUSe_GT] = ACTIONS(936), - [anon_sym_e_PLUSo_GT] = ACTIONS(936), - [aux_sym_unquoted_token2] = ACTIONS(4635), - [aux_sym__unquoted_in_list_token1] = ACTIONS(936), - [anon_sym_POUND] = ACTIONS(113), + [1702] = { + [sym_expr_unary] = STATE(5402), + [sym__expr_unary_minus] = STATE(5522), + [sym_expr_binary] = STATE(5402), + [sym__expr_binary_expression] = STATE(5319), + [sym_expr_parenthesized] = STATE(5402), + [sym__val_range] = STATE(10097), + [sym__value] = STATE(5402), + [sym_val_nothing] = STATE(5416), + [sym_val_bool] = STATE(5140), + [sym_val_variable] = STATE(5416), + [sym__var] = STATE(4575), + [sym_val_number] = STATE(5416), + [sym__val_number_decimal] = STATE(3898), + [sym__val_number] = STATE(5419), + [sym_val_duration] = STATE(5416), + [sym_val_filesize] = STATE(5416), + [sym_val_binary] = STATE(5416), + [sym_val_string] = STATE(5416), + [sym__str_double_quotes] = STATE(5513), + [sym_val_interpolated] = STATE(5416), + [sym__inter_single_quotes] = STATE(5443), + [sym__inter_double_quotes] = STATE(5209), + [sym_val_list] = STATE(5416), + [sym_val_record] = STATE(5416), + [sym_val_table] = STATE(5416), + [sym_val_closure] = STATE(5416), + [sym_unquoted] = STATE(5414), + [sym__unquoted_anonymous_prefix] = STATE(10282), + [sym_comment] = STATE(1702), + [anon_sym_LBRACK] = ACTIONS(2740), + [anon_sym_LPAREN] = ACTIONS(5203), + [anon_sym_DOLLAR] = ACTIONS(5205), + [anon_sym_DASH] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(2746), + [anon_sym_DOT_DOT] = ACTIONS(5207), + [anon_sym_not] = ACTIONS(4028), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5209), + [anon_sym_DOT_DOT_LT] = ACTIONS(5209), + [anon_sym_null] = ACTIONS(4032), + [anon_sym_true] = ACTIONS(4034), + [anon_sym_false] = ACTIONS(4034), + [aux_sym__val_number_decimal_token1] = ACTIONS(4036), + [aux_sym__val_number_decimal_token2] = ACTIONS(4038), + [anon_sym_DOT2] = ACTIONS(5211), + [aux_sym__val_number_decimal_token3] = ACTIONS(4042), + [aux_sym__val_number_token1] = ACTIONS(2758), + [aux_sym__val_number_token2] = ACTIONS(2758), + [aux_sym__val_number_token3] = ACTIONS(2758), + [aux_sym__val_number_token4] = ACTIONS(4044), + [aux_sym__val_number_token5] = ACTIONS(4044), + [aux_sym__val_number_token6] = ACTIONS(4044), + [anon_sym_0b] = ACTIONS(1676), + [anon_sym_0o] = ACTIONS(1678), + [anon_sym_0x] = ACTIONS(1678), + [sym_val_date] = ACTIONS(4046), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym__str_single_quotes] = ACTIONS(2766), + [sym__str_back_ticks] = ACTIONS(2766), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2770), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(1694), + [anon_sym_POUND] = ACTIONS(3), }, - [1501] = { - [sym_path] = STATE(1917), - [sym_comment] = STATE(1501), - [aux_sym_cell_path_repeat1] = STATE(1502), - [anon_sym_LBRACK] = ACTIONS(1008), - [anon_sym_COMMA] = ACTIONS(1008), - [anon_sym_LPAREN] = ACTIONS(1008), - [anon_sym_DOLLAR] = ACTIONS(1008), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_in] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1008), - [anon_sym_RBRACE] = ACTIONS(1008), - [anon_sym__] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_STAR_STAR] = ACTIONS(1008), - [anon_sym_PLUS_PLUS] = ACTIONS(1008), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_mod] = ACTIONS(1008), - [anon_sym_SLASH_SLASH] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_bit_DASHshl] = ACTIONS(1008), - [anon_sym_bit_DASHshr] = ACTIONS(1008), - [anon_sym_EQ_EQ] = ACTIONS(1008), - [anon_sym_BANG_EQ] = ACTIONS(1008), - [anon_sym_LT2] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1008), - [anon_sym_GT_EQ] = ACTIONS(1008), - [anon_sym_not_DASHin] = ACTIONS(1008), - [anon_sym_starts_DASHwith] = ACTIONS(1008), - [anon_sym_ends_DASHwith] = ACTIONS(1008), - [anon_sym_EQ_TILDE] = ACTIONS(1008), - [anon_sym_BANG_TILDE] = ACTIONS(1008), - [anon_sym_bit_DASHand] = ACTIONS(1008), - [anon_sym_bit_DASHxor] = ACTIONS(1008), - [anon_sym_bit_DASHor] = ACTIONS(1008), - [anon_sym_and] = ACTIONS(1008), - [anon_sym_xor] = ACTIONS(1008), - [anon_sym_or] = ACTIONS(1008), - [anon_sym_DOT] = ACTIONS(4585), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1008), - [anon_sym_DOT_DOT_LT] = ACTIONS(1008), - [anon_sym_null] = ACTIONS(1008), - [anon_sym_true] = ACTIONS(1008), - [anon_sym_false] = ACTIONS(1008), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1008), - [anon_sym_DOT2] = ACTIONS(1006), - [aux_sym__val_number_decimal_token3] = ACTIONS(1008), - [aux_sym__val_number_token1] = ACTIONS(1008), - [aux_sym__val_number_token2] = ACTIONS(1008), - [aux_sym__val_number_token3] = ACTIONS(1008), - [aux_sym__val_number_token4] = ACTIONS(1008), - [aux_sym__val_number_token5] = ACTIONS(1008), - [aux_sym__val_number_token6] = ACTIONS(1008), - [anon_sym_0b] = ACTIONS(1006), - [anon_sym_0o] = ACTIONS(1006), - [anon_sym_0x] = ACTIONS(1006), - [sym_val_date] = ACTIONS(1008), - [anon_sym_DQUOTE] = ACTIONS(1008), - [sym__str_single_quotes] = ACTIONS(1008), - [sym__str_back_ticks] = ACTIONS(1008), - [anon_sym_err_GT] = ACTIONS(1008), - [anon_sym_out_GT] = ACTIONS(1008), - [anon_sym_e_GT] = ACTIONS(1008), - [anon_sym_o_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT] = ACTIONS(1008), - [aux_sym_unquoted_token1] = ACTIONS(1006), + [1703] = { + [sym_expr_unary] = STATE(5402), + [sym__expr_unary_minus] = STATE(5522), + [sym_expr_binary] = STATE(5402), + [sym__expr_binary_expression] = STATE(5323), + [sym_expr_parenthesized] = STATE(5402), + [sym__val_range] = STATE(10097), + [sym__value] = STATE(5402), + [sym_val_nothing] = STATE(5416), + [sym_val_bool] = STATE(5140), + [sym_val_variable] = STATE(5416), + [sym__var] = STATE(4575), + [sym_val_number] = STATE(5416), + [sym__val_number_decimal] = STATE(3898), + [sym__val_number] = STATE(5419), + [sym_val_duration] = STATE(5416), + [sym_val_filesize] = STATE(5416), + [sym_val_binary] = STATE(5416), + [sym_val_string] = STATE(5416), + [sym__str_double_quotes] = STATE(5513), + [sym_val_interpolated] = STATE(5416), + [sym__inter_single_quotes] = STATE(5443), + [sym__inter_double_quotes] = STATE(5209), + [sym_val_list] = STATE(5416), + [sym_val_record] = STATE(5416), + [sym_val_table] = STATE(5416), + [sym_val_closure] = STATE(5416), + [sym_unquoted] = STATE(5424), + [sym__unquoted_anonymous_prefix] = STATE(10282), + [sym_comment] = STATE(1703), + [anon_sym_LBRACK] = ACTIONS(2740), + [anon_sym_LPAREN] = ACTIONS(5203), + [anon_sym_DOLLAR] = ACTIONS(5205), + [anon_sym_DASH] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(2746), + [anon_sym_DOT_DOT] = ACTIONS(5207), + [anon_sym_not] = ACTIONS(4028), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5209), + [anon_sym_DOT_DOT_LT] = ACTIONS(5209), + [anon_sym_null] = ACTIONS(4032), + [anon_sym_true] = ACTIONS(4034), + [anon_sym_false] = ACTIONS(4034), + [aux_sym__val_number_decimal_token1] = ACTIONS(4036), + [aux_sym__val_number_decimal_token2] = ACTIONS(4038), + [anon_sym_DOT2] = ACTIONS(5211), + [aux_sym__val_number_decimal_token3] = ACTIONS(4042), + [aux_sym__val_number_token1] = ACTIONS(2758), + [aux_sym__val_number_token2] = ACTIONS(2758), + [aux_sym__val_number_token3] = ACTIONS(2758), + [aux_sym__val_number_token4] = ACTIONS(4044), + [aux_sym__val_number_token5] = ACTIONS(4044), + [aux_sym__val_number_token6] = ACTIONS(4044), + [anon_sym_0b] = ACTIONS(1676), + [anon_sym_0o] = ACTIONS(1678), + [anon_sym_0x] = ACTIONS(1678), + [sym_val_date] = ACTIONS(4046), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym__str_single_quotes] = ACTIONS(2766), + [sym__str_back_ticks] = ACTIONS(2766), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2770), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(1694), [anon_sym_POUND] = ACTIONS(3), }, - [1502] = { - [sym_path] = STATE(1917), - [sym_comment] = STATE(1502), - [aux_sym_cell_path_repeat1] = STATE(1502), - [anon_sym_LBRACK] = ACTIONS(1001), - [anon_sym_COMMA] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1001), - [anon_sym_DOLLAR] = ACTIONS(1001), - [anon_sym_GT] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_in] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1001), - [anon_sym_RBRACE] = ACTIONS(1001), - [anon_sym__] = ACTIONS(999), - [anon_sym_DOT_DOT] = ACTIONS(999), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_STAR_STAR] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(999), - [anon_sym_mod] = ACTIONS(1001), - [anon_sym_SLASH_SLASH] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_bit_DASHshl] = ACTIONS(1001), - [anon_sym_bit_DASHshr] = ACTIONS(1001), - [anon_sym_EQ_EQ] = ACTIONS(1001), - [anon_sym_BANG_EQ] = ACTIONS(1001), - [anon_sym_LT2] = ACTIONS(999), - [anon_sym_LT_EQ] = ACTIONS(1001), - [anon_sym_GT_EQ] = ACTIONS(1001), - [anon_sym_not_DASHin] = ACTIONS(1001), - [anon_sym_starts_DASHwith] = ACTIONS(1001), - [anon_sym_ends_DASHwith] = ACTIONS(1001), - [anon_sym_EQ_TILDE] = ACTIONS(1001), - [anon_sym_BANG_TILDE] = ACTIONS(1001), - [anon_sym_bit_DASHand] = ACTIONS(1001), - [anon_sym_bit_DASHxor] = ACTIONS(1001), - [anon_sym_bit_DASHor] = ACTIONS(1001), - [anon_sym_and] = ACTIONS(1001), - [anon_sym_xor] = ACTIONS(1001), - [anon_sym_or] = ACTIONS(1001), - [anon_sym_DOT] = ACTIONS(4637), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1001), - [anon_sym_DOT_DOT_LT] = ACTIONS(1001), - [anon_sym_null] = ACTIONS(1001), - [anon_sym_true] = ACTIONS(1001), - [anon_sym_false] = ACTIONS(1001), - [aux_sym__val_number_decimal_token1] = ACTIONS(999), - [aux_sym__val_number_decimal_token2] = ACTIONS(1001), - [anon_sym_DOT2] = ACTIONS(999), - [aux_sym__val_number_decimal_token3] = ACTIONS(1001), - [aux_sym__val_number_token1] = ACTIONS(1001), - [aux_sym__val_number_token2] = ACTIONS(1001), - [aux_sym__val_number_token3] = ACTIONS(1001), - [aux_sym__val_number_token4] = ACTIONS(1001), - [aux_sym__val_number_token5] = ACTIONS(1001), - [aux_sym__val_number_token6] = ACTIONS(1001), - [anon_sym_0b] = ACTIONS(999), - [anon_sym_0o] = ACTIONS(999), - [anon_sym_0x] = ACTIONS(999), - [sym_val_date] = ACTIONS(1001), - [anon_sym_DQUOTE] = ACTIONS(1001), - [sym__str_single_quotes] = ACTIONS(1001), - [sym__str_back_ticks] = ACTIONS(1001), - [anon_sym_err_GT] = ACTIONS(1001), - [anon_sym_out_GT] = ACTIONS(1001), - [anon_sym_e_GT] = ACTIONS(1001), - [anon_sym_o_GT] = ACTIONS(1001), - [anon_sym_err_PLUSout_GT] = ACTIONS(1001), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1001), - [anon_sym_o_PLUSe_GT] = ACTIONS(1001), - [anon_sym_e_PLUSo_GT] = ACTIONS(1001), - [aux_sym_unquoted_token1] = ACTIONS(999), + [1704] = { + [sym_expr_unary] = STATE(5402), + [sym__expr_unary_minus] = STATE(5522), + [sym_expr_binary] = STATE(5402), + [sym__expr_binary_expression] = STATE(5332), + [sym_expr_parenthesized] = STATE(5402), + [sym__val_range] = STATE(10097), + [sym__value] = STATE(5402), + [sym_val_nothing] = STATE(5416), + [sym_val_bool] = STATE(5140), + [sym_val_variable] = STATE(5416), + [sym__var] = STATE(4575), + [sym_val_number] = STATE(5416), + [sym__val_number_decimal] = STATE(3898), + [sym__val_number] = STATE(5419), + [sym_val_duration] = STATE(5416), + [sym_val_filesize] = STATE(5416), + [sym_val_binary] = STATE(5416), + [sym_val_string] = STATE(5416), + [sym__str_double_quotes] = STATE(5513), + [sym_val_interpolated] = STATE(5416), + [sym__inter_single_quotes] = STATE(5443), + [sym__inter_double_quotes] = STATE(5209), + [sym_val_list] = STATE(5416), + [sym_val_record] = STATE(5416), + [sym_val_table] = STATE(5416), + [sym_val_closure] = STATE(5416), + [sym_unquoted] = STATE(5432), + [sym__unquoted_anonymous_prefix] = STATE(10282), + [sym_comment] = STATE(1704), + [anon_sym_LBRACK] = ACTIONS(2740), + [anon_sym_LPAREN] = ACTIONS(5203), + [anon_sym_DOLLAR] = ACTIONS(5205), + [anon_sym_DASH] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(2746), + [anon_sym_DOT_DOT] = ACTIONS(5207), + [anon_sym_not] = ACTIONS(4028), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5209), + [anon_sym_DOT_DOT_LT] = ACTIONS(5209), + [anon_sym_null] = ACTIONS(4032), + [anon_sym_true] = ACTIONS(4034), + [anon_sym_false] = ACTIONS(4034), + [aux_sym__val_number_decimal_token1] = ACTIONS(4036), + [aux_sym__val_number_decimal_token2] = ACTIONS(4038), + [anon_sym_DOT2] = ACTIONS(5211), + [aux_sym__val_number_decimal_token3] = ACTIONS(4042), + [aux_sym__val_number_token1] = ACTIONS(2758), + [aux_sym__val_number_token2] = ACTIONS(2758), + [aux_sym__val_number_token3] = ACTIONS(2758), + [aux_sym__val_number_token4] = ACTIONS(4044), + [aux_sym__val_number_token5] = ACTIONS(4044), + [aux_sym__val_number_token6] = ACTIONS(4044), + [anon_sym_0b] = ACTIONS(1676), + [anon_sym_0o] = ACTIONS(1678), + [anon_sym_0x] = ACTIONS(1678), + [sym_val_date] = ACTIONS(4046), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym__str_single_quotes] = ACTIONS(2766), + [sym__str_back_ticks] = ACTIONS(2766), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2770), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(1694), [anon_sym_POUND] = ACTIONS(3), }, - [1503] = { - [sym_comment] = STATE(1503), - [ts_builtin_sym_end] = ACTIONS(1065), - [anon_sym_export] = ACTIONS(1063), - [anon_sym_alias] = ACTIONS(1063), - [anon_sym_let] = ACTIONS(1063), - [anon_sym_let_DASHenv] = ACTIONS(1063), - [anon_sym_mut] = ACTIONS(1063), - [anon_sym_const] = ACTIONS(1063), - [anon_sym_SEMI] = ACTIONS(1063), - [sym_cmd_identifier] = ACTIONS(1063), - [anon_sym_LF] = ACTIONS(1065), - [anon_sym_def] = ACTIONS(1063), - [anon_sym_export_DASHenv] = ACTIONS(1063), - [anon_sym_extern] = ACTIONS(1063), - [anon_sym_module] = ACTIONS(1063), - [anon_sym_use] = ACTIONS(1063), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_error] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_break] = ACTIONS(1063), - [anon_sym_continue] = ACTIONS(1063), - [anon_sym_for] = ACTIONS(1063), - [anon_sym_loop] = ACTIONS(1063), - [anon_sym_while] = ACTIONS(1063), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_if] = ACTIONS(1063), - [anon_sym_match] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1063), - [anon_sym_return] = ACTIONS(1063), - [anon_sym_source] = ACTIONS(1063), - [anon_sym_source_DASHenv] = ACTIONS(1063), - [anon_sym_register] = ACTIONS(1063), - [anon_sym_hide] = ACTIONS(1063), - [anon_sym_hide_DASHenv] = ACTIONS(1063), - [anon_sym_overlay] = ACTIONS(1063), - [anon_sym_where] = ACTIONS(1063), - [anon_sym_QMARK2] = ACTIONS(1063), - [anon_sym_not] = ACTIONS(1063), - [anon_sym_DOT_DOT2] = ACTIONS(1063), - [anon_sym_DOT] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1063), - [anon_sym_DOT_DOT_LT] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1065), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1065), - [anon_sym_null] = ACTIONS(1063), - [anon_sym_true] = ACTIONS(1063), - [anon_sym_false] = ACTIONS(1063), - [aux_sym__val_number_decimal_token1] = ACTIONS(1063), - [aux_sym__val_number_decimal_token2] = ACTIONS(1063), - [anon_sym_DOT2] = ACTIONS(1063), - [aux_sym__val_number_decimal_token3] = ACTIONS(1063), - [aux_sym__val_number_token1] = ACTIONS(1063), - [aux_sym__val_number_token2] = ACTIONS(1063), - [aux_sym__val_number_token3] = ACTIONS(1063), - [aux_sym__val_number_token4] = ACTIONS(1063), - [aux_sym__val_number_token5] = ACTIONS(1063), - [aux_sym__val_number_token6] = ACTIONS(1063), - [anon_sym_0b] = ACTIONS(1063), - [anon_sym_0o] = ACTIONS(1063), - [anon_sym_0x] = ACTIONS(1063), - [sym_val_date] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [sym__str_single_quotes] = ACTIONS(1063), - [sym__str_back_ticks] = ACTIONS(1063), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1063), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1063), - [anon_sym_CARET] = ACTIONS(1063), - [anon_sym_POUND] = ACTIONS(113), + [1705] = { + [sym_expr_unary] = STATE(5402), + [sym__expr_unary_minus] = STATE(5522), + [sym_expr_binary] = STATE(5402), + [sym__expr_binary_expression] = STATE(5341), + [sym_expr_parenthesized] = STATE(5402), + [sym__val_range] = STATE(10097), + [sym__value] = STATE(5402), + [sym_val_nothing] = STATE(5416), + [sym_val_bool] = STATE(5140), + [sym_val_variable] = STATE(5416), + [sym__var] = STATE(4575), + [sym_val_number] = STATE(5416), + [sym__val_number_decimal] = STATE(3898), + [sym__val_number] = STATE(5419), + [sym_val_duration] = STATE(5416), + [sym_val_filesize] = STATE(5416), + [sym_val_binary] = STATE(5416), + [sym_val_string] = STATE(5416), + [sym__str_double_quotes] = STATE(5513), + [sym_val_interpolated] = STATE(5416), + [sym__inter_single_quotes] = STATE(5443), + [sym__inter_double_quotes] = STATE(5209), + [sym_val_list] = STATE(5416), + [sym_val_record] = STATE(5416), + [sym_val_table] = STATE(5416), + [sym_val_closure] = STATE(5416), + [sym_unquoted] = STATE(5491), + [sym__unquoted_anonymous_prefix] = STATE(10282), + [sym_comment] = STATE(1705), + [anon_sym_LBRACK] = ACTIONS(2740), + [anon_sym_LPAREN] = ACTIONS(5203), + [anon_sym_DOLLAR] = ACTIONS(5205), + [anon_sym_DASH] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(2746), + [anon_sym_DOT_DOT] = ACTIONS(5207), + [anon_sym_not] = ACTIONS(4028), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5209), + [anon_sym_DOT_DOT_LT] = ACTIONS(5209), + [anon_sym_null] = ACTIONS(4032), + [anon_sym_true] = ACTIONS(4034), + [anon_sym_false] = ACTIONS(4034), + [aux_sym__val_number_decimal_token1] = ACTIONS(4036), + [aux_sym__val_number_decimal_token2] = ACTIONS(4038), + [anon_sym_DOT2] = ACTIONS(5211), + [aux_sym__val_number_decimal_token3] = ACTIONS(4042), + [aux_sym__val_number_token1] = ACTIONS(2758), + [aux_sym__val_number_token2] = ACTIONS(2758), + [aux_sym__val_number_token3] = ACTIONS(2758), + [aux_sym__val_number_token4] = ACTIONS(4044), + [aux_sym__val_number_token5] = ACTIONS(4044), + [aux_sym__val_number_token6] = ACTIONS(4044), + [anon_sym_0b] = ACTIONS(1676), + [anon_sym_0o] = ACTIONS(1678), + [anon_sym_0x] = ACTIONS(1678), + [sym_val_date] = ACTIONS(4046), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym__str_single_quotes] = ACTIONS(2766), + [sym__str_back_ticks] = ACTIONS(2766), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2770), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(1694), + [anon_sym_POUND] = ACTIONS(3), }, - [1504] = { - [sym_cell_path] = STATE(2492), - [sym_path] = STATE(1497), - [sym_comment] = STATE(1504), - [anon_sym_LBRACK] = ACTIONS(1012), - [anon_sym_COMMA] = ACTIONS(1012), - [anon_sym_LPAREN] = ACTIONS(1012), - [anon_sym_DOLLAR] = ACTIONS(1012), - [anon_sym_GT] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_in] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_RBRACE] = ACTIONS(1012), - [anon_sym__] = ACTIONS(1010), - [anon_sym_DOT_DOT] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1010), - [anon_sym_STAR_STAR] = ACTIONS(1012), - [anon_sym_PLUS_PLUS] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1010), - [anon_sym_mod] = ACTIONS(1012), - [anon_sym_SLASH_SLASH] = ACTIONS(1012), - [anon_sym_PLUS] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1012), - [anon_sym_bit_DASHshr] = ACTIONS(1012), - [anon_sym_EQ_EQ] = ACTIONS(1012), - [anon_sym_BANG_EQ] = ACTIONS(1012), - [anon_sym_LT2] = ACTIONS(1010), - [anon_sym_LT_EQ] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1012), - [anon_sym_not_DASHin] = ACTIONS(1012), - [anon_sym_starts_DASHwith] = ACTIONS(1012), - [anon_sym_ends_DASHwith] = ACTIONS(1012), - [anon_sym_EQ_TILDE] = ACTIONS(1012), - [anon_sym_BANG_TILDE] = ACTIONS(1012), - [anon_sym_bit_DASHand] = ACTIONS(1012), - [anon_sym_bit_DASHxor] = ACTIONS(1012), - [anon_sym_bit_DASHor] = ACTIONS(1012), - [anon_sym_and] = ACTIONS(1012), - [anon_sym_xor] = ACTIONS(1012), - [anon_sym_or] = ACTIONS(1012), - [anon_sym_DOT] = ACTIONS(4585), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1012), - [anon_sym_DOT_DOT_LT] = ACTIONS(1012), - [anon_sym_null] = ACTIONS(1012), - [anon_sym_true] = ACTIONS(1012), - [anon_sym_false] = ACTIONS(1012), - [aux_sym__val_number_decimal_token1] = ACTIONS(1010), - [aux_sym__val_number_decimal_token2] = ACTIONS(1012), - [anon_sym_DOT2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = 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(1010), - [anon_sym_0o] = ACTIONS(1010), - [anon_sym_0x] = ACTIONS(1010), - [sym_val_date] = ACTIONS(1012), - [anon_sym_DQUOTE] = ACTIONS(1012), - [sym__str_single_quotes] = ACTIONS(1012), - [sym__str_back_ticks] = ACTIONS(1012), - [anon_sym_err_GT] = ACTIONS(1012), - [anon_sym_out_GT] = ACTIONS(1012), - [anon_sym_e_GT] = ACTIONS(1012), - [anon_sym_o_GT] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT] = ACTIONS(1012), - [aux_sym_unquoted_token1] = ACTIONS(1010), + [1706] = { + [sym_expr_unary] = STATE(5402), + [sym__expr_unary_minus] = STATE(5522), + [sym_expr_binary] = STATE(5402), + [sym__expr_binary_expression] = STATE(5374), + [sym_expr_parenthesized] = STATE(5402), + [sym__val_range] = STATE(10097), + [sym__value] = STATE(5402), + [sym_val_nothing] = STATE(5416), + [sym_val_bool] = STATE(5140), + [sym_val_variable] = STATE(5416), + [sym__var] = STATE(4575), + [sym_val_number] = STATE(5416), + [sym__val_number_decimal] = STATE(3898), + [sym__val_number] = STATE(5419), + [sym_val_duration] = STATE(5416), + [sym_val_filesize] = STATE(5416), + [sym_val_binary] = STATE(5416), + [sym_val_string] = STATE(5416), + [sym__str_double_quotes] = STATE(5513), + [sym_val_interpolated] = STATE(5416), + [sym__inter_single_quotes] = STATE(5443), + [sym__inter_double_quotes] = STATE(5209), + [sym_val_list] = STATE(5416), + [sym_val_record] = STATE(5416), + [sym_val_table] = STATE(5416), + [sym_val_closure] = STATE(5416), + [sym_unquoted] = STATE(5515), + [sym__unquoted_anonymous_prefix] = STATE(10282), + [sym_comment] = STATE(1706), + [anon_sym_LBRACK] = ACTIONS(2740), + [anon_sym_LPAREN] = ACTIONS(5203), + [anon_sym_DOLLAR] = ACTIONS(5205), + [anon_sym_DASH] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(2746), + [anon_sym_DOT_DOT] = ACTIONS(5207), + [anon_sym_not] = ACTIONS(4028), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5209), + [anon_sym_DOT_DOT_LT] = ACTIONS(5209), + [anon_sym_null] = ACTIONS(4032), + [anon_sym_true] = ACTIONS(4034), + [anon_sym_false] = ACTIONS(4034), + [aux_sym__val_number_decimal_token1] = ACTIONS(4036), + [aux_sym__val_number_decimal_token2] = ACTIONS(4038), + [anon_sym_DOT2] = ACTIONS(5211), + [aux_sym__val_number_decimal_token3] = ACTIONS(4042), + [aux_sym__val_number_token1] = ACTIONS(2758), + [aux_sym__val_number_token2] = ACTIONS(2758), + [aux_sym__val_number_token3] = ACTIONS(2758), + [aux_sym__val_number_token4] = ACTIONS(4044), + [aux_sym__val_number_token5] = ACTIONS(4044), + [aux_sym__val_number_token6] = ACTIONS(4044), + [anon_sym_0b] = ACTIONS(1676), + [anon_sym_0o] = ACTIONS(1678), + [anon_sym_0x] = ACTIONS(1678), + [sym_val_date] = ACTIONS(4046), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym__str_single_quotes] = ACTIONS(2766), + [sym__str_back_ticks] = ACTIONS(2766), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2770), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(1694), [anon_sym_POUND] = ACTIONS(3), }, - [1505] = { - [sym_cell_path] = STATE(2448), - [sym_path] = STATE(1457), - [sym_comment] = STATE(1505), - [anon_sym_LBRACK] = ACTIONS(1192), - [anon_sym_COMMA] = ACTIONS(1192), - [anon_sym_RBRACK] = ACTIONS(1192), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_DOLLAR] = ACTIONS(1192), - [anon_sym_GT] = ACTIONS(1190), - [anon_sym_DASH_DASH] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_in] = ACTIONS(1190), - [anon_sym_LBRACE] = ACTIONS(1192), - [anon_sym_DOT_DOT] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1190), - [anon_sym_STAR_STAR] = ACTIONS(1192), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_mod] = ACTIONS(1192), - [anon_sym_SLASH_SLASH] = ACTIONS(1192), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_bit_DASHshl] = ACTIONS(1192), - [anon_sym_bit_DASHshr] = ACTIONS(1192), - [anon_sym_EQ_EQ] = ACTIONS(1192), - [anon_sym_BANG_EQ] = ACTIONS(1192), - [anon_sym_LT2] = ACTIONS(1190), - [anon_sym_LT_EQ] = ACTIONS(1192), - [anon_sym_GT_EQ] = ACTIONS(1192), - [anon_sym_not_DASHin] = ACTIONS(1192), - [anon_sym_starts_DASHwith] = ACTIONS(1192), - [anon_sym_ends_DASHwith] = ACTIONS(1192), - [anon_sym_EQ_TILDE] = ACTIONS(1192), - [anon_sym_BANG_TILDE] = ACTIONS(1192), - [anon_sym_bit_DASHand] = ACTIONS(1192), - [anon_sym_bit_DASHxor] = ACTIONS(1192), - [anon_sym_bit_DASHor] = ACTIONS(1192), - [anon_sym_and] = ACTIONS(1192), - [anon_sym_xor] = ACTIONS(1192), - [anon_sym_or] = ACTIONS(1192), - [anon_sym_DOT] = ACTIONS(4191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1192), - [anon_sym_DOT_DOT_LT] = ACTIONS(1192), - [anon_sym_null] = ACTIONS(1192), - [anon_sym_true] = ACTIONS(1192), - [anon_sym_false] = ACTIONS(1192), - [aux_sym__val_number_decimal_token1] = ACTIONS(1190), - [aux_sym__val_number_decimal_token2] = ACTIONS(1192), - [anon_sym_DOT2] = ACTIONS(1190), - [aux_sym__val_number_decimal_token3] = ACTIONS(1192), - [aux_sym__val_number_token1] = ACTIONS(1192), - [aux_sym__val_number_token2] = ACTIONS(1192), - [aux_sym__val_number_token3] = ACTIONS(1192), - [aux_sym__val_number_token4] = ACTIONS(1192), - [aux_sym__val_number_token5] = ACTIONS(1192), - [aux_sym__val_number_token6] = ACTIONS(1192), - [anon_sym_0b] = ACTIONS(1190), - [anon_sym_0o] = ACTIONS(1190), - [anon_sym_0x] = ACTIONS(1190), - [sym_val_date] = ACTIONS(1192), - [anon_sym_DQUOTE] = ACTIONS(1192), - [sym__str_single_quotes] = ACTIONS(1192), - [sym__str_back_ticks] = ACTIONS(1192), - [anon_sym_err_GT] = ACTIONS(1192), - [anon_sym_out_GT] = ACTIONS(1192), - [anon_sym_e_GT] = ACTIONS(1192), - [anon_sym_o_GT] = ACTIONS(1192), - [anon_sym_err_PLUSout_GT] = ACTIONS(1192), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1192), - [anon_sym_o_PLUSe_GT] = ACTIONS(1192), - [anon_sym_e_PLUSo_GT] = ACTIONS(1192), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1190), + [1707] = { + [sym_expr_unary] = STATE(5402), + [sym__expr_unary_minus] = STATE(5522), + [sym_expr_binary] = STATE(5402), + [sym__expr_binary_expression] = STATE(5446), + [sym_expr_parenthesized] = STATE(5402), + [sym__val_range] = STATE(10097), + [sym__value] = STATE(5402), + [sym_val_nothing] = STATE(5416), + [sym_val_bool] = STATE(5140), + [sym_val_variable] = STATE(5416), + [sym__var] = STATE(4575), + [sym_val_number] = STATE(5416), + [sym__val_number_decimal] = STATE(3898), + [sym__val_number] = STATE(5419), + [sym_val_duration] = STATE(5416), + [sym_val_filesize] = STATE(5416), + [sym_val_binary] = STATE(5416), + [sym_val_string] = STATE(5416), + [sym__str_double_quotes] = STATE(5513), + [sym_val_interpolated] = STATE(5416), + [sym__inter_single_quotes] = STATE(5443), + [sym__inter_double_quotes] = STATE(5209), + [sym_val_list] = STATE(5416), + [sym_val_record] = STATE(5416), + [sym_val_table] = STATE(5416), + [sym_val_closure] = STATE(5416), + [sym_unquoted] = STATE(5520), + [sym__unquoted_anonymous_prefix] = STATE(10282), + [sym_comment] = STATE(1707), + [anon_sym_LBRACK] = ACTIONS(2740), + [anon_sym_LPAREN] = ACTIONS(5203), + [anon_sym_DOLLAR] = ACTIONS(5205), + [anon_sym_DASH] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(2746), + [anon_sym_DOT_DOT] = ACTIONS(5207), + [anon_sym_not] = ACTIONS(4028), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5209), + [anon_sym_DOT_DOT_LT] = ACTIONS(5209), + [anon_sym_null] = ACTIONS(4032), + [anon_sym_true] = ACTIONS(4034), + [anon_sym_false] = ACTIONS(4034), + [aux_sym__val_number_decimal_token1] = ACTIONS(4036), + [aux_sym__val_number_decimal_token2] = ACTIONS(4038), + [anon_sym_DOT2] = ACTIONS(5211), + [aux_sym__val_number_decimal_token3] = ACTIONS(4042), + [aux_sym__val_number_token1] = ACTIONS(2758), + [aux_sym__val_number_token2] = ACTIONS(2758), + [aux_sym__val_number_token3] = ACTIONS(2758), + [aux_sym__val_number_token4] = ACTIONS(4044), + [aux_sym__val_number_token5] = ACTIONS(4044), + [aux_sym__val_number_token6] = ACTIONS(4044), + [anon_sym_0b] = ACTIONS(1676), + [anon_sym_0o] = ACTIONS(1678), + [anon_sym_0x] = ACTIONS(1678), + [sym_val_date] = ACTIONS(4046), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym__str_single_quotes] = ACTIONS(2766), + [sym__str_back_ticks] = ACTIONS(2766), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2770), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(1694), [anon_sym_POUND] = ACTIONS(3), }, - [1506] = { - [sym_comment] = STATE(1506), - [anon_sym_export] = ACTIONS(1273), - [anon_sym_alias] = ACTIONS(1273), - [anon_sym_let] = ACTIONS(1273), - [anon_sym_let_DASHenv] = ACTIONS(1273), - [anon_sym_mut] = ACTIONS(1273), - [anon_sym_const] = ACTIONS(1273), - [anon_sym_SEMI] = ACTIONS(1273), - [sym_cmd_identifier] = ACTIONS(1273), - [anon_sym_LF] = ACTIONS(1275), - [anon_sym_def] = ACTIONS(1273), - [anon_sym_export_DASHenv] = ACTIONS(1273), - [anon_sym_extern] = ACTIONS(1273), - [anon_sym_module] = ACTIONS(1273), - [anon_sym_use] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1273), - [anon_sym_LPAREN] = ACTIONS(1273), - [anon_sym_RPAREN] = ACTIONS(1273), - [anon_sym_DOLLAR] = ACTIONS(1273), - [anon_sym_error] = ACTIONS(1273), - [anon_sym_DASH_DASH] = ACTIONS(1273), - [anon_sym_DASH] = ACTIONS(1273), - [anon_sym_break] = ACTIONS(1273), - [anon_sym_continue] = ACTIONS(1273), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_loop] = ACTIONS(1273), - [anon_sym_while] = ACTIONS(1273), - [anon_sym_do] = ACTIONS(1273), - [anon_sym_if] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_RBRACE] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_try] = ACTIONS(1273), - [anon_sym_return] = ACTIONS(1273), - [anon_sym_source] = ACTIONS(1273), - [anon_sym_source_DASHenv] = ACTIONS(1273), - [anon_sym_register] = ACTIONS(1273), - [anon_sym_hide] = ACTIONS(1273), - [anon_sym_hide_DASHenv] = ACTIONS(1273), - [anon_sym_overlay] = ACTIONS(1273), - [anon_sym_as] = ACTIONS(1273), - [anon_sym_where] = ACTIONS(1273), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_LPAREN2] = ACTIONS(4631), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1273), - [anon_sym_DOT_DOT_LT] = ACTIONS(1273), - [anon_sym_null] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1273), - [anon_sym_false] = ACTIONS(1273), - [aux_sym__val_number_decimal_token1] = ACTIONS(1273), - [aux_sym__val_number_decimal_token2] = ACTIONS(1273), - [anon_sym_DOT2] = ACTIONS(1273), - [aux_sym__val_number_decimal_token3] = ACTIONS(1273), - [aux_sym__val_number_token1] = ACTIONS(1273), - [aux_sym__val_number_token2] = ACTIONS(1273), - [aux_sym__val_number_token3] = ACTIONS(1273), - [aux_sym__val_number_token4] = ACTIONS(1273), - [aux_sym__val_number_token5] = ACTIONS(1273), - [aux_sym__val_number_token6] = ACTIONS(1273), - [anon_sym_0b] = ACTIONS(1273), - [anon_sym_0o] = ACTIONS(1273), - [anon_sym_0x] = ACTIONS(1273), - [sym_val_date] = ACTIONS(1273), - [anon_sym_DQUOTE] = ACTIONS(1273), - [sym__str_single_quotes] = ACTIONS(1273), - [sym__str_back_ticks] = ACTIONS(1273), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1273), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1273), - [anon_sym_CARET] = ACTIONS(1273), - [aux_sym_unquoted_token6] = ACTIONS(1257), - [anon_sym_POUND] = ACTIONS(113), + [1708] = { + [sym_expr_unary] = STATE(5402), + [sym__expr_unary_minus] = STATE(5522), + [sym_expr_binary] = STATE(5402), + [sym__expr_binary_expression] = STATE(5499), + [sym_expr_parenthesized] = STATE(5402), + [sym__val_range] = STATE(10097), + [sym__value] = STATE(5402), + [sym_val_nothing] = STATE(5416), + [sym_val_bool] = STATE(5140), + [sym_val_variable] = STATE(5416), + [sym__var] = STATE(4575), + [sym_val_number] = STATE(5416), + [sym__val_number_decimal] = STATE(3898), + [sym__val_number] = STATE(5419), + [sym_val_duration] = STATE(5416), + [sym_val_filesize] = STATE(5416), + [sym_val_binary] = STATE(5416), + [sym_val_string] = STATE(5416), + [sym__str_double_quotes] = STATE(5513), + [sym_val_interpolated] = STATE(5416), + [sym__inter_single_quotes] = STATE(5443), + [sym__inter_double_quotes] = STATE(5209), + [sym_val_list] = STATE(5416), + [sym_val_record] = STATE(5416), + [sym_val_table] = STATE(5416), + [sym_val_closure] = STATE(5416), + [sym_unquoted] = STATE(5221), + [sym__unquoted_anonymous_prefix] = STATE(10282), + [sym_comment] = STATE(1708), + [anon_sym_LBRACK] = ACTIONS(2740), + [anon_sym_LPAREN] = ACTIONS(5203), + [anon_sym_DOLLAR] = ACTIONS(5205), + [anon_sym_DASH] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(2746), + [anon_sym_DOT_DOT] = ACTIONS(5207), + [anon_sym_not] = ACTIONS(4028), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5209), + [anon_sym_DOT_DOT_LT] = ACTIONS(5209), + [anon_sym_null] = ACTIONS(4032), + [anon_sym_true] = ACTIONS(4034), + [anon_sym_false] = ACTIONS(4034), + [aux_sym__val_number_decimal_token1] = ACTIONS(4036), + [aux_sym__val_number_decimal_token2] = ACTIONS(4038), + [anon_sym_DOT2] = ACTIONS(5211), + [aux_sym__val_number_decimal_token3] = ACTIONS(4042), + [aux_sym__val_number_token1] = ACTIONS(2758), + [aux_sym__val_number_token2] = ACTIONS(2758), + [aux_sym__val_number_token3] = ACTIONS(2758), + [aux_sym__val_number_token4] = ACTIONS(4044), + [aux_sym__val_number_token5] = ACTIONS(4044), + [aux_sym__val_number_token6] = ACTIONS(4044), + [anon_sym_0b] = ACTIONS(1676), + [anon_sym_0o] = ACTIONS(1678), + [anon_sym_0x] = ACTIONS(1678), + [sym_val_date] = ACTIONS(4046), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym__str_single_quotes] = ACTIONS(2766), + [sym__str_back_ticks] = ACTIONS(2766), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2770), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(1694), + [anon_sym_POUND] = ACTIONS(3), }, - [1507] = { - [sym_comment] = STATE(1507), - [ts_builtin_sym_end] = ACTIONS(1072), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_alias] = ACTIONS(1070), - [anon_sym_let] = ACTIONS(1070), - [anon_sym_let_DASHenv] = ACTIONS(1070), - [anon_sym_mut] = ACTIONS(1070), - [anon_sym_const] = ACTIONS(1070), - [anon_sym_SEMI] = ACTIONS(1070), - [sym_cmd_identifier] = ACTIONS(1070), - [anon_sym_LF] = ACTIONS(1072), - [anon_sym_def] = ACTIONS(1070), - [anon_sym_export_DASHenv] = ACTIONS(1070), - [anon_sym_extern] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_use] = ACTIONS(1070), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_error] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_loop] = ACTIONS(1070), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_do] = ACTIONS(1070), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_match] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_try] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_source] = ACTIONS(1070), - [anon_sym_source_DASHenv] = ACTIONS(1070), - [anon_sym_register] = ACTIONS(1070), - [anon_sym_hide] = ACTIONS(1070), - [anon_sym_hide_DASHenv] = ACTIONS(1070), - [anon_sym_overlay] = ACTIONS(1070), - [anon_sym_where] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(4640), - [anon_sym_not] = ACTIONS(1070), - [anon_sym_DOT_DOT2] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1072), - [anon_sym_null] = ACTIONS(1070), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1070), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), - [anon_sym_CARET] = ACTIONS(1070), - [anon_sym_POUND] = ACTIONS(113), + [1709] = { + [sym_expr_unary] = STATE(5402), + [sym__expr_unary_minus] = STATE(5522), + [sym_expr_binary] = STATE(5402), + [sym__expr_binary_expression] = STATE(5380), + [sym_expr_parenthesized] = STATE(5402), + [sym__val_range] = STATE(10097), + [sym__value] = STATE(5402), + [sym_val_nothing] = STATE(5416), + [sym_val_bool] = STATE(5140), + [sym_val_variable] = STATE(5416), + [sym__var] = STATE(4575), + [sym_val_number] = STATE(5416), + [sym__val_number_decimal] = STATE(3898), + [sym__val_number] = STATE(5419), + [sym_val_duration] = STATE(5416), + [sym_val_filesize] = STATE(5416), + [sym_val_binary] = STATE(5416), + [sym_val_string] = STATE(5416), + [sym__str_double_quotes] = STATE(5513), + [sym_val_interpolated] = STATE(5416), + [sym__inter_single_quotes] = STATE(5443), + [sym__inter_double_quotes] = STATE(5209), + [sym_val_list] = STATE(5416), + [sym_val_record] = STATE(5416), + [sym_val_table] = STATE(5416), + [sym_val_closure] = STATE(5416), + [sym_unquoted] = STATE(5222), + [sym__unquoted_anonymous_prefix] = STATE(10282), + [sym_comment] = STATE(1709), + [anon_sym_LBRACK] = ACTIONS(2740), + [anon_sym_LPAREN] = ACTIONS(5203), + [anon_sym_DOLLAR] = ACTIONS(5205), + [anon_sym_DASH] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(2746), + [anon_sym_DOT_DOT] = ACTIONS(5207), + [anon_sym_not] = ACTIONS(4028), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5209), + [anon_sym_DOT_DOT_LT] = ACTIONS(5209), + [anon_sym_null] = ACTIONS(4032), + [anon_sym_true] = ACTIONS(4034), + [anon_sym_false] = ACTIONS(4034), + [aux_sym__val_number_decimal_token1] = ACTIONS(4036), + [aux_sym__val_number_decimal_token2] = ACTIONS(4038), + [anon_sym_DOT2] = ACTIONS(5211), + [aux_sym__val_number_decimal_token3] = ACTIONS(4042), + [aux_sym__val_number_token1] = ACTIONS(2758), + [aux_sym__val_number_token2] = ACTIONS(2758), + [aux_sym__val_number_token3] = ACTIONS(2758), + [aux_sym__val_number_token4] = ACTIONS(4044), + [aux_sym__val_number_token5] = ACTIONS(4044), + [aux_sym__val_number_token6] = ACTIONS(4044), + [anon_sym_0b] = ACTIONS(1676), + [anon_sym_0o] = ACTIONS(1678), + [anon_sym_0x] = ACTIONS(1678), + [sym_val_date] = ACTIONS(4046), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym__str_single_quotes] = ACTIONS(2766), + [sym__str_back_ticks] = ACTIONS(2766), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2770), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(1694), + [anon_sym_POUND] = ACTIONS(3), }, - [1508] = { - [sym_comment] = STATE(1508), - [ts_builtin_sym_end] = ACTIONS(1072), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_alias] = ACTIONS(1070), - [anon_sym_let] = ACTIONS(1070), - [anon_sym_let_DASHenv] = ACTIONS(1070), - [anon_sym_mut] = ACTIONS(1070), - [anon_sym_const] = ACTIONS(1070), - [anon_sym_SEMI] = ACTIONS(1070), - [sym_cmd_identifier] = ACTIONS(1070), - [anon_sym_LF] = ACTIONS(1072), - [anon_sym_def] = ACTIONS(1070), - [anon_sym_export_DASHenv] = ACTIONS(1070), - [anon_sym_extern] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_use] = ACTIONS(1070), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_error] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_loop] = ACTIONS(1070), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_do] = ACTIONS(1070), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_match] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_try] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_source] = ACTIONS(1070), - [anon_sym_source_DASHenv] = ACTIONS(1070), - [anon_sym_register] = ACTIONS(1070), - [anon_sym_hide] = ACTIONS(1070), - [anon_sym_hide_DASHenv] = ACTIONS(1070), - [anon_sym_overlay] = ACTIONS(1070), - [anon_sym_where] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(4640), - [anon_sym_not] = ACTIONS(1070), - [anon_sym_DOT_DOT2] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1072), - [anon_sym_null] = ACTIONS(1070), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1070), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), - [anon_sym_CARET] = ACTIONS(1070), - [anon_sym_POUND] = ACTIONS(113), + [1710] = { + [sym_expr_unary] = STATE(5402), + [sym__expr_unary_minus] = STATE(5522), + [sym_expr_binary] = STATE(5402), + [sym__expr_binary_expression] = STATE(5212), + [sym_expr_parenthesized] = STATE(5402), + [sym__val_range] = STATE(10097), + [sym__value] = STATE(5402), + [sym_val_nothing] = STATE(5416), + [sym_val_bool] = STATE(5140), + [sym_val_variable] = STATE(5416), + [sym__var] = STATE(4575), + [sym_val_number] = STATE(5416), + [sym__val_number_decimal] = STATE(3898), + [sym__val_number] = STATE(5419), + [sym_val_duration] = STATE(5416), + [sym_val_filesize] = STATE(5416), + [sym_val_binary] = STATE(5416), + [sym_val_string] = STATE(5416), + [sym__str_double_quotes] = STATE(5513), + [sym_val_interpolated] = STATE(5416), + [sym__inter_single_quotes] = STATE(5443), + [sym__inter_double_quotes] = STATE(5209), + [sym_val_list] = STATE(5416), + [sym_val_record] = STATE(5416), + [sym_val_table] = STATE(5416), + [sym_val_closure] = STATE(5416), + [sym_unquoted] = STATE(5238), + [sym__unquoted_anonymous_prefix] = STATE(10282), + [sym_comment] = STATE(1710), + [anon_sym_LBRACK] = ACTIONS(2740), + [anon_sym_LPAREN] = ACTIONS(5203), + [anon_sym_DOLLAR] = ACTIONS(5205), + [anon_sym_DASH] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(2746), + [anon_sym_DOT_DOT] = ACTIONS(5207), + [anon_sym_not] = ACTIONS(4028), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5209), + [anon_sym_DOT_DOT_LT] = ACTIONS(5209), + [anon_sym_null] = ACTIONS(4032), + [anon_sym_true] = ACTIONS(4034), + [anon_sym_false] = ACTIONS(4034), + [aux_sym__val_number_decimal_token1] = ACTIONS(4036), + [aux_sym__val_number_decimal_token2] = ACTIONS(4038), + [anon_sym_DOT2] = ACTIONS(5211), + [aux_sym__val_number_decimal_token3] = ACTIONS(4042), + [aux_sym__val_number_token1] = ACTIONS(2758), + [aux_sym__val_number_token2] = ACTIONS(2758), + [aux_sym__val_number_token3] = ACTIONS(2758), + [aux_sym__val_number_token4] = ACTIONS(4044), + [aux_sym__val_number_token5] = ACTIONS(4044), + [aux_sym__val_number_token6] = ACTIONS(4044), + [anon_sym_0b] = ACTIONS(1676), + [anon_sym_0o] = ACTIONS(1678), + [anon_sym_0x] = ACTIONS(1678), + [sym_val_date] = ACTIONS(4046), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym__str_single_quotes] = ACTIONS(2766), + [sym__str_back_ticks] = ACTIONS(2766), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2770), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(1694), + [anon_sym_POUND] = ACTIONS(3), }, - [1509] = { - [sym_comment] = STATE(1509), - [ts_builtin_sym_end] = ACTIONS(3520), - [anon_sym_export] = ACTIONS(3518), - [anon_sym_alias] = ACTIONS(3518), - [anon_sym_let] = ACTIONS(3518), - [anon_sym_let_DASHenv] = ACTIONS(3518), - [anon_sym_mut] = ACTIONS(3518), - [anon_sym_const] = ACTIONS(3518), - [anon_sym_SEMI] = ACTIONS(3518), - [sym_cmd_identifier] = ACTIONS(3518), - [anon_sym_LF] = ACTIONS(3520), - [anon_sym_def] = ACTIONS(3518), - [anon_sym_export_DASHenv] = ACTIONS(3518), - [anon_sym_extern] = ACTIONS(3518), - [anon_sym_module] = ACTIONS(3518), - [anon_sym_use] = ACTIONS(3518), - [anon_sym_LBRACK] = ACTIONS(3518), - [anon_sym_LPAREN] = ACTIONS(3518), - [anon_sym_DOLLAR] = ACTIONS(3518), - [anon_sym_error] = ACTIONS(3518), - [anon_sym_DASH_DASH] = ACTIONS(3518), - [anon_sym_DASH] = ACTIONS(3518), - [anon_sym_break] = ACTIONS(3518), - [anon_sym_continue] = ACTIONS(3518), - [anon_sym_for] = ACTIONS(3518), - [anon_sym_loop] = ACTIONS(3518), - [anon_sym_while] = ACTIONS(3518), - [anon_sym_do] = ACTIONS(3518), - [anon_sym_if] = ACTIONS(3518), - [anon_sym_match] = ACTIONS(3518), - [anon_sym_LBRACE] = ACTIONS(3518), - [anon_sym_DOT_DOT] = ACTIONS(3518), - [anon_sym_try] = ACTIONS(3518), - [anon_sym_return] = ACTIONS(3518), - [anon_sym_source] = ACTIONS(3518), - [anon_sym_source_DASHenv] = ACTIONS(3518), - [anon_sym_register] = ACTIONS(3518), - [anon_sym_hide] = ACTIONS(3518), - [anon_sym_hide_DASHenv] = ACTIONS(3518), - [anon_sym_overlay] = ACTIONS(3518), - [anon_sym_as] = ACTIONS(3518), - [anon_sym_where] = ACTIONS(3518), - [anon_sym_not] = ACTIONS(3518), - [anon_sym_LPAREN2] = ACTIONS(3522), - [anon_sym_DOT] = ACTIONS(1934), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3518), - [anon_sym_DOT_DOT_LT] = ACTIONS(3518), - [anon_sym_null] = ACTIONS(3518), - [anon_sym_true] = ACTIONS(3518), - [anon_sym_false] = ACTIONS(3518), - [aux_sym__val_number_decimal_token1] = ACTIONS(3518), - [aux_sym__val_number_decimal_token2] = ACTIONS(3518), - [anon_sym_DOT2] = ACTIONS(3518), - [aux_sym__val_number_decimal_token3] = ACTIONS(3518), - [aux_sym__val_number_token1] = ACTIONS(3518), - [aux_sym__val_number_token2] = ACTIONS(3518), - [aux_sym__val_number_token3] = ACTIONS(3518), - [aux_sym__val_number_token4] = ACTIONS(3518), - [aux_sym__val_number_token5] = ACTIONS(3518), - [aux_sym__val_number_token6] = ACTIONS(3518), - [anon_sym_0b] = ACTIONS(3518), - [anon_sym_0o] = ACTIONS(3518), - [anon_sym_0x] = ACTIONS(3518), - [sym_val_date] = ACTIONS(3518), - [anon_sym_DQUOTE] = ACTIONS(3518), - [sym__str_single_quotes] = ACTIONS(3518), - [sym__str_back_ticks] = ACTIONS(3518), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3518), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3518), - [anon_sym_CARET] = ACTIONS(3518), - [aux_sym_unquoted_token2] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(113), + [1711] = { + [sym_expr_unary] = STATE(5402), + [sym__expr_unary_minus] = STATE(5522), + [sym_expr_binary] = STATE(5402), + [sym__expr_binary_expression] = STATE(5255), + [sym_expr_parenthesized] = STATE(5402), + [sym__val_range] = STATE(10097), + [sym__value] = STATE(5402), + [sym_val_nothing] = STATE(5416), + [sym_val_bool] = STATE(5140), + [sym_val_variable] = STATE(5416), + [sym__var] = STATE(4575), + [sym_val_number] = STATE(5416), + [sym__val_number_decimal] = STATE(3898), + [sym__val_number] = STATE(5419), + [sym_val_duration] = STATE(5416), + [sym_val_filesize] = STATE(5416), + [sym_val_binary] = STATE(5416), + [sym_val_string] = STATE(5416), + [sym__str_double_quotes] = STATE(5513), + [sym_val_interpolated] = STATE(5416), + [sym__inter_single_quotes] = STATE(5443), + [sym__inter_double_quotes] = STATE(5209), + [sym_val_list] = STATE(5416), + [sym_val_record] = STATE(5416), + [sym_val_table] = STATE(5416), + [sym_val_closure] = STATE(5416), + [sym_unquoted] = STATE(5250), + [sym__unquoted_anonymous_prefix] = STATE(10282), + [sym_comment] = STATE(1711), + [anon_sym_LBRACK] = ACTIONS(2740), + [anon_sym_LPAREN] = ACTIONS(5203), + [anon_sym_DOLLAR] = ACTIONS(5205), + [anon_sym_DASH] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(2746), + [anon_sym_DOT_DOT] = ACTIONS(5207), + [anon_sym_not] = ACTIONS(4028), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5209), + [anon_sym_DOT_DOT_LT] = ACTIONS(5209), + [anon_sym_null] = ACTIONS(4032), + [anon_sym_true] = ACTIONS(4034), + [anon_sym_false] = ACTIONS(4034), + [aux_sym__val_number_decimal_token1] = ACTIONS(4036), + [aux_sym__val_number_decimal_token2] = ACTIONS(4038), + [anon_sym_DOT2] = ACTIONS(5211), + [aux_sym__val_number_decimal_token3] = ACTIONS(4042), + [aux_sym__val_number_token1] = ACTIONS(2758), + [aux_sym__val_number_token2] = ACTIONS(2758), + [aux_sym__val_number_token3] = ACTIONS(2758), + [aux_sym__val_number_token4] = ACTIONS(4044), + [aux_sym__val_number_token5] = ACTIONS(4044), + [aux_sym__val_number_token6] = ACTIONS(4044), + [anon_sym_0b] = ACTIONS(1676), + [anon_sym_0o] = ACTIONS(1678), + [anon_sym_0x] = ACTIONS(1678), + [sym_val_date] = ACTIONS(4046), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym__str_single_quotes] = ACTIONS(2766), + [sym__str_back_ticks] = ACTIONS(2766), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2770), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(1694), + [anon_sym_POUND] = ACTIONS(3), }, - [1510] = { - [sym_comment] = STATE(1510), - [anon_sym_export] = ACTIONS(1280), - [anon_sym_alias] = ACTIONS(1280), - [anon_sym_let] = ACTIONS(1280), - [anon_sym_let_DASHenv] = ACTIONS(1280), - [anon_sym_mut] = ACTIONS(1280), - [anon_sym_const] = ACTIONS(1280), - [anon_sym_SEMI] = ACTIONS(1280), - [sym_cmd_identifier] = ACTIONS(1280), - [anon_sym_LF] = ACTIONS(1282), - [anon_sym_def] = ACTIONS(1280), - [anon_sym_export_DASHenv] = ACTIONS(1280), - [anon_sym_extern] = ACTIONS(1280), - [anon_sym_module] = ACTIONS(1280), - [anon_sym_use] = ACTIONS(1280), - [anon_sym_LBRACK] = ACTIONS(1280), - [anon_sym_LPAREN] = ACTIONS(1280), - [anon_sym_RPAREN] = ACTIONS(1280), - [anon_sym_DOLLAR] = ACTIONS(1280), - [anon_sym_error] = ACTIONS(1280), - [anon_sym_DASH_DASH] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_break] = ACTIONS(1280), - [anon_sym_continue] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_loop] = ACTIONS(1280), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1280), - [anon_sym_RBRACE] = ACTIONS(1280), - [anon_sym_DOT_DOT] = ACTIONS(1280), - [anon_sym_try] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1280), - [anon_sym_source] = ACTIONS(1280), - [anon_sym_source_DASHenv] = ACTIONS(1280), - [anon_sym_register] = ACTIONS(1280), - [anon_sym_hide] = ACTIONS(1280), - [anon_sym_hide_DASHenv] = ACTIONS(1280), - [anon_sym_overlay] = ACTIONS(1280), - [anon_sym_as] = ACTIONS(1280), - [anon_sym_where] = ACTIONS(1280), - [anon_sym_not] = ACTIONS(1280), - [anon_sym_LPAREN2] = ACTIONS(1282), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1280), - [anon_sym_DOT_DOT_LT] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1280), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [aux_sym__val_number_decimal_token1] = ACTIONS(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1280), - [anon_sym_DOT2] = ACTIONS(1280), - [aux_sym__val_number_decimal_token3] = ACTIONS(1280), - [aux_sym__val_number_token1] = ACTIONS(1280), - [aux_sym__val_number_token2] = ACTIONS(1280), - [aux_sym__val_number_token3] = ACTIONS(1280), - [aux_sym__val_number_token4] = ACTIONS(1280), - [aux_sym__val_number_token5] = ACTIONS(1280), - [aux_sym__val_number_token6] = ACTIONS(1280), - [anon_sym_0b] = ACTIONS(1280), - [anon_sym_0o] = ACTIONS(1280), - [anon_sym_0x] = ACTIONS(1280), - [sym_val_date] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1280), - [sym__str_single_quotes] = ACTIONS(1280), - [sym__str_back_ticks] = ACTIONS(1280), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1280), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1280), - [anon_sym_CARET] = ACTIONS(1280), - [aux_sym_unquoted_token6] = ACTIONS(1280), - [anon_sym_POUND] = ACTIONS(113), + [1712] = { + [sym_expr_unary] = STATE(5402), + [sym__expr_unary_minus] = STATE(5522), + [sym_expr_binary] = STATE(5402), + [sym__expr_binary_expression] = STATE(5256), + [sym_expr_parenthesized] = STATE(5402), + [sym__val_range] = STATE(10097), + [sym__value] = STATE(5402), + [sym_val_nothing] = STATE(5416), + [sym_val_bool] = STATE(5140), + [sym_val_variable] = STATE(5416), + [sym__var] = STATE(4575), + [sym_val_number] = STATE(5416), + [sym__val_number_decimal] = STATE(3898), + [sym__val_number] = STATE(5419), + [sym_val_duration] = STATE(5416), + [sym_val_filesize] = STATE(5416), + [sym_val_binary] = STATE(5416), + [sym_val_string] = STATE(5416), + [sym__str_double_quotes] = STATE(5513), + [sym_val_interpolated] = STATE(5416), + [sym__inter_single_quotes] = STATE(5443), + [sym__inter_double_quotes] = STATE(5209), + [sym_val_list] = STATE(5416), + [sym_val_record] = STATE(5416), + [sym_val_table] = STATE(5416), + [sym_val_closure] = STATE(5416), + [sym_unquoted] = STATE(5251), + [sym__unquoted_anonymous_prefix] = STATE(10282), + [sym_comment] = STATE(1712), + [anon_sym_LBRACK] = ACTIONS(2740), + [anon_sym_LPAREN] = ACTIONS(5203), + [anon_sym_DOLLAR] = ACTIONS(5205), + [anon_sym_DASH] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(2746), + [anon_sym_DOT_DOT] = ACTIONS(5207), + [anon_sym_not] = ACTIONS(4028), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5209), + [anon_sym_DOT_DOT_LT] = ACTIONS(5209), + [anon_sym_null] = ACTIONS(4032), + [anon_sym_true] = ACTIONS(4034), + [anon_sym_false] = ACTIONS(4034), + [aux_sym__val_number_decimal_token1] = ACTIONS(4036), + [aux_sym__val_number_decimal_token2] = ACTIONS(4038), + [anon_sym_DOT2] = ACTIONS(5211), + [aux_sym__val_number_decimal_token3] = ACTIONS(4042), + [aux_sym__val_number_token1] = ACTIONS(2758), + [aux_sym__val_number_token2] = ACTIONS(2758), + [aux_sym__val_number_token3] = ACTIONS(2758), + [aux_sym__val_number_token4] = ACTIONS(4044), + [aux_sym__val_number_token5] = ACTIONS(4044), + [aux_sym__val_number_token6] = ACTIONS(4044), + [anon_sym_0b] = ACTIONS(1676), + [anon_sym_0o] = ACTIONS(1678), + [anon_sym_0x] = ACTIONS(1678), + [sym_val_date] = ACTIONS(4046), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym__str_single_quotes] = ACTIONS(2766), + [sym__str_back_ticks] = ACTIONS(2766), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2770), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(1694), + [anon_sym_POUND] = ACTIONS(3), }, - [1511] = { - [sym_comment] = STATE(1511), - [ts_builtin_sym_end] = ACTIONS(4018), - [anon_sym_export] = ACTIONS(4016), - [anon_sym_alias] = ACTIONS(4016), - [anon_sym_let] = ACTIONS(4016), - [anon_sym_let_DASHenv] = ACTIONS(4016), - [anon_sym_mut] = ACTIONS(4016), - [anon_sym_const] = ACTIONS(4016), - [anon_sym_SEMI] = ACTIONS(4016), - [sym_cmd_identifier] = ACTIONS(4016), - [anon_sym_LF] = ACTIONS(4018), - [anon_sym_def] = ACTIONS(4016), - [anon_sym_export_DASHenv] = ACTIONS(4016), - [anon_sym_extern] = ACTIONS(4016), - [anon_sym_module] = ACTIONS(4016), - [anon_sym_use] = ACTIONS(4016), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym_DOLLAR] = ACTIONS(4016), - [anon_sym_error] = ACTIONS(4016), - [anon_sym_DASH_DASH] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_break] = ACTIONS(4016), - [anon_sym_continue] = ACTIONS(4016), - [anon_sym_for] = ACTIONS(4016), - [anon_sym_loop] = ACTIONS(4016), - [anon_sym_while] = ACTIONS(4016), - [anon_sym_do] = ACTIONS(4016), - [anon_sym_if] = ACTIONS(4016), - [anon_sym_match] = ACTIONS(4016), - [anon_sym_LBRACE] = ACTIONS(4016), - [anon_sym_DOT_DOT] = ACTIONS(4016), - [anon_sym_try] = ACTIONS(4016), - [anon_sym_return] = ACTIONS(4016), - [anon_sym_source] = ACTIONS(4016), - [anon_sym_source_DASHenv] = ACTIONS(4016), - [anon_sym_register] = ACTIONS(4016), - [anon_sym_hide] = ACTIONS(4016), - [anon_sym_hide_DASHenv] = ACTIONS(4016), - [anon_sym_overlay] = ACTIONS(4016), - [anon_sym_as] = ACTIONS(4016), - [anon_sym_where] = ACTIONS(4016), - [anon_sym_not] = ACTIONS(4016), - [anon_sym_DOT_DOT2] = ACTIONS(1228), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4016), - [anon_sym_DOT_DOT_LT] = ACTIONS(4016), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1230), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1230), - [anon_sym_null] = ACTIONS(4016), - [anon_sym_true] = ACTIONS(4016), - [anon_sym_false] = ACTIONS(4016), - [aux_sym__val_number_decimal_token1] = ACTIONS(4016), - [aux_sym__val_number_decimal_token2] = ACTIONS(4016), - [anon_sym_DOT2] = ACTIONS(4016), - [aux_sym__val_number_decimal_token3] = ACTIONS(4016), - [aux_sym__val_number_token1] = ACTIONS(4016), - [aux_sym__val_number_token2] = ACTIONS(4016), - [aux_sym__val_number_token3] = ACTIONS(4016), - [aux_sym__val_number_token4] = ACTIONS(4016), - [aux_sym__val_number_token5] = ACTIONS(4016), - [aux_sym__val_number_token6] = ACTIONS(4016), - [anon_sym_0b] = ACTIONS(4016), - [anon_sym_0o] = ACTIONS(4016), - [anon_sym_0x] = ACTIONS(4016), - [sym_val_date] = ACTIONS(4016), - [anon_sym_DQUOTE] = ACTIONS(4016), - [sym__str_single_quotes] = ACTIONS(4016), - [sym__str_back_ticks] = ACTIONS(4016), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4016), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4016), - [anon_sym_CARET] = ACTIONS(4016), - [anon_sym_POUND] = ACTIONS(113), + [1713] = { + [sym_expr_unary] = STATE(5402), + [sym__expr_unary_minus] = STATE(5522), + [sym_expr_binary] = STATE(5402), + [sym__expr_binary_expression] = STATE(5258), + [sym_expr_parenthesized] = STATE(5402), + [sym__val_range] = STATE(10097), + [sym__value] = STATE(5402), + [sym_val_nothing] = STATE(5416), + [sym_val_bool] = STATE(5140), + [sym_val_variable] = STATE(5416), + [sym__var] = STATE(4575), + [sym_val_number] = STATE(5416), + [sym__val_number_decimal] = STATE(3898), + [sym__val_number] = STATE(5419), + [sym_val_duration] = STATE(5416), + [sym_val_filesize] = STATE(5416), + [sym_val_binary] = STATE(5416), + [sym_val_string] = STATE(5416), + [sym__str_double_quotes] = STATE(5513), + [sym_val_interpolated] = STATE(5416), + [sym__inter_single_quotes] = STATE(5443), + [sym__inter_double_quotes] = STATE(5209), + [sym_val_list] = STATE(5416), + [sym_val_record] = STATE(5416), + [sym_val_table] = STATE(5416), + [sym_val_closure] = STATE(5416), + [sym_unquoted] = STATE(5253), + [sym__unquoted_anonymous_prefix] = STATE(10282), + [sym_comment] = STATE(1713), + [anon_sym_LBRACK] = ACTIONS(2740), + [anon_sym_LPAREN] = ACTIONS(5203), + [anon_sym_DOLLAR] = ACTIONS(5205), + [anon_sym_DASH] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(2746), + [anon_sym_DOT_DOT] = ACTIONS(5207), + [anon_sym_not] = ACTIONS(4028), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5209), + [anon_sym_DOT_DOT_LT] = ACTIONS(5209), + [anon_sym_null] = ACTIONS(4032), + [anon_sym_true] = ACTIONS(4034), + [anon_sym_false] = ACTIONS(4034), + [aux_sym__val_number_decimal_token1] = ACTIONS(4036), + [aux_sym__val_number_decimal_token2] = ACTIONS(4038), + [anon_sym_DOT2] = ACTIONS(5211), + [aux_sym__val_number_decimal_token3] = ACTIONS(4042), + [aux_sym__val_number_token1] = ACTIONS(2758), + [aux_sym__val_number_token2] = ACTIONS(2758), + [aux_sym__val_number_token3] = ACTIONS(2758), + [aux_sym__val_number_token4] = ACTIONS(4044), + [aux_sym__val_number_token5] = ACTIONS(4044), + [aux_sym__val_number_token6] = ACTIONS(4044), + [anon_sym_0b] = ACTIONS(1676), + [anon_sym_0o] = ACTIONS(1678), + [anon_sym_0x] = ACTIONS(1678), + [sym_val_date] = ACTIONS(4046), + [anon_sym_DQUOTE] = ACTIONS(2764), + [sym__str_single_quotes] = ACTIONS(2766), + [sym__str_back_ticks] = ACTIONS(2766), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2770), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(1694), + [anon_sym_POUND] = ACTIONS(3), }, - [1512] = { - [sym_comment] = STATE(1512), - [anon_sym_export] = ACTIONS(1113), - [anon_sym_alias] = ACTIONS(1113), - [anon_sym_let] = ACTIONS(1113), - [anon_sym_let_DASHenv] = ACTIONS(1113), - [anon_sym_mut] = ACTIONS(1113), - [anon_sym_const] = ACTIONS(1113), - [anon_sym_SEMI] = ACTIONS(1113), - [sym_cmd_identifier] = ACTIONS(1113), - [anon_sym_LF] = ACTIONS(1115), - [anon_sym_def] = ACTIONS(1113), - [anon_sym_export_DASHenv] = ACTIONS(1113), - [anon_sym_extern] = ACTIONS(1113), - [anon_sym_module] = ACTIONS(1113), - [anon_sym_use] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_RPAREN] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1113), - [anon_sym_error] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_loop] = ACTIONS(1113), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_RBRACE] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1113), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_source] = ACTIONS(1113), - [anon_sym_source_DASHenv] = ACTIONS(1113), - [anon_sym_register] = ACTIONS(1113), - [anon_sym_hide] = ACTIONS(1113), - [anon_sym_hide_DASHenv] = ACTIONS(1113), - [anon_sym_overlay] = ACTIONS(1113), - [anon_sym_where] = ACTIONS(1113), - [anon_sym_not] = ACTIONS(1113), - [anon_sym_DOT_DOT2] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1113), - [anon_sym_DOT_DOT_LT] = ACTIONS(1113), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1115), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1113), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1113), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_decimal_token2] = ACTIONS(1113), - [anon_sym_DOT2] = ACTIONS(1113), - [aux_sym__val_number_decimal_token3] = ACTIONS(1113), - [aux_sym__val_number_token1] = ACTIONS(1113), - [aux_sym__val_number_token2] = ACTIONS(1113), - [aux_sym__val_number_token3] = ACTIONS(1113), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1113), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_0b] = ACTIONS(1113), - [anon_sym_0o] = ACTIONS(1113), - [anon_sym_0x] = ACTIONS(1113), - [sym_val_date] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym__str_single_quotes] = ACTIONS(1113), - [sym__str_back_ticks] = ACTIONS(1113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), - [anon_sym_CARET] = ACTIONS(1113), + [1714] = { + [sym_comment] = STATE(1714), + [anon_sym_export] = ACTIONS(5213), + [anon_sym_alias] = ACTIONS(5213), + [anon_sym_let] = ACTIONS(5213), + [anon_sym_let_DASHenv] = ACTIONS(5213), + [anon_sym_mut] = ACTIONS(5213), + [anon_sym_const] = ACTIONS(5213), + [anon_sym_SEMI] = ACTIONS(5213), + [sym_cmd_identifier] = ACTIONS(5213), + [anon_sym_LF] = ACTIONS(5215), + [anon_sym_def] = ACTIONS(5213), + [anon_sym_export_DASHenv] = ACTIONS(5213), + [anon_sym_extern] = ACTIONS(5213), + [anon_sym_module] = ACTIONS(5213), + [anon_sym_use] = ACTIONS(5213), + [anon_sym_LBRACK] = ACTIONS(5213), + [anon_sym_LPAREN] = ACTIONS(5213), + [anon_sym_RPAREN] = ACTIONS(5213), + [anon_sym_DOLLAR] = ACTIONS(5213), + [anon_sym_error] = ACTIONS(5213), + [anon_sym_DASH_DASH] = ACTIONS(5213), + [anon_sym_DASH] = ACTIONS(5213), + [anon_sym_break] = ACTIONS(5213), + [anon_sym_continue] = ACTIONS(5213), + [anon_sym_for] = ACTIONS(5213), + [anon_sym_loop] = ACTIONS(5213), + [anon_sym_while] = ACTIONS(5213), + [anon_sym_do] = ACTIONS(5213), + [anon_sym_if] = ACTIONS(5213), + [anon_sym_match] = ACTIONS(5213), + [anon_sym_LBRACE] = ACTIONS(5213), + [anon_sym_RBRACE] = ACTIONS(5213), + [anon_sym_DOT_DOT] = ACTIONS(5213), + [anon_sym_try] = ACTIONS(5213), + [anon_sym_return] = ACTIONS(5213), + [anon_sym_source] = ACTIONS(5213), + [anon_sym_source_DASHenv] = ACTIONS(5213), + [anon_sym_register] = ACTIONS(5213), + [anon_sym_hide] = ACTIONS(5213), + [anon_sym_hide_DASHenv] = ACTIONS(5213), + [anon_sym_overlay] = ACTIONS(5213), + [anon_sym_as] = ACTIONS(5213), + [anon_sym_where] = ACTIONS(5213), + [anon_sym_not] = ACTIONS(5213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5213), + [anon_sym_DOT_DOT_LT] = ACTIONS(5213), + [anon_sym_null] = ACTIONS(5213), + [anon_sym_true] = ACTIONS(5213), + [anon_sym_false] = ACTIONS(5213), + [aux_sym__val_number_decimal_token1] = ACTIONS(5213), + [aux_sym__val_number_decimal_token2] = ACTIONS(5213), + [anon_sym_DOT2] = ACTIONS(5213), + [aux_sym__val_number_decimal_token3] = ACTIONS(5213), + [aux_sym__val_number_token1] = ACTIONS(5213), + [aux_sym__val_number_token2] = ACTIONS(5213), + [aux_sym__val_number_token3] = ACTIONS(5213), + [aux_sym__val_number_token4] = ACTIONS(5213), + [aux_sym__val_number_token5] = ACTIONS(5213), + [aux_sym__val_number_token6] = ACTIONS(5213), + [anon_sym_0b] = ACTIONS(5213), + [anon_sym_0o] = ACTIONS(5213), + [anon_sym_0x] = ACTIONS(5213), + [sym_val_date] = ACTIONS(5213), + [anon_sym_DQUOTE] = ACTIONS(5213), + [sym__str_single_quotes] = ACTIONS(5213), + [sym__str_back_ticks] = ACTIONS(5213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5213), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5213), + [anon_sym_CARET] = ACTIONS(5213), [anon_sym_POUND] = ACTIONS(113), }, - [1513] = { - [sym_comment] = STATE(1513), - [ts_builtin_sym_end] = ACTIONS(3962), - [anon_sym_export] = ACTIONS(3960), - [anon_sym_alias] = ACTIONS(3960), - [anon_sym_let] = ACTIONS(3960), - [anon_sym_let_DASHenv] = ACTIONS(3960), - [anon_sym_mut] = ACTIONS(3960), - [anon_sym_const] = ACTIONS(3960), - [anon_sym_SEMI] = ACTIONS(3960), - [sym_cmd_identifier] = ACTIONS(3960), - [anon_sym_LF] = ACTIONS(3962), - [anon_sym_def] = ACTIONS(3960), - [anon_sym_export_DASHenv] = ACTIONS(3960), - [anon_sym_extern] = ACTIONS(3960), - [anon_sym_module] = ACTIONS(3960), - [anon_sym_use] = ACTIONS(3960), - [anon_sym_LBRACK] = ACTIONS(3960), - [anon_sym_LPAREN] = ACTIONS(3960), - [anon_sym_DOLLAR] = ACTIONS(3960), - [anon_sym_error] = ACTIONS(3960), - [anon_sym_DASH_DASH] = ACTIONS(3960), - [anon_sym_DASH] = ACTIONS(3960), - [anon_sym_break] = ACTIONS(3960), - [anon_sym_continue] = ACTIONS(3960), - [anon_sym_for] = ACTIONS(3960), - [anon_sym_loop] = ACTIONS(3960), - [anon_sym_while] = ACTIONS(3960), - [anon_sym_do] = ACTIONS(3960), - [anon_sym_if] = ACTIONS(3960), - [anon_sym_match] = ACTIONS(3960), - [anon_sym_LBRACE] = ACTIONS(3960), - [anon_sym_DOT_DOT] = ACTIONS(3960), - [anon_sym_try] = ACTIONS(3960), - [anon_sym_return] = ACTIONS(3960), - [anon_sym_source] = ACTIONS(3960), - [anon_sym_source_DASHenv] = ACTIONS(3960), - [anon_sym_register] = ACTIONS(3960), - [anon_sym_hide] = ACTIONS(3960), - [anon_sym_hide_DASHenv] = ACTIONS(3960), - [anon_sym_overlay] = ACTIONS(3960), - [anon_sym_as] = ACTIONS(3960), - [anon_sym_where] = ACTIONS(3960), - [anon_sym_not] = ACTIONS(3960), - [anon_sym_DOT_DOT2] = ACTIONS(3960), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3960), - [anon_sym_DOT_DOT_LT] = ACTIONS(3960), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3962), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3962), - [anon_sym_null] = ACTIONS(3960), - [anon_sym_true] = ACTIONS(3960), - [anon_sym_false] = ACTIONS(3960), - [aux_sym__val_number_decimal_token1] = ACTIONS(3960), - [aux_sym__val_number_decimal_token2] = ACTIONS(3960), - [anon_sym_DOT2] = ACTIONS(3960), - [aux_sym__val_number_decimal_token3] = ACTIONS(3960), - [aux_sym__val_number_token1] = ACTIONS(3960), - [aux_sym__val_number_token2] = ACTIONS(3960), - [aux_sym__val_number_token3] = ACTIONS(3960), - [aux_sym__val_number_token4] = ACTIONS(3960), - [aux_sym__val_number_token5] = ACTIONS(3960), - [aux_sym__val_number_token6] = ACTIONS(3960), - [anon_sym_0b] = ACTIONS(3960), - [anon_sym_0o] = ACTIONS(3960), - [anon_sym_0x] = ACTIONS(3960), - [sym_val_date] = ACTIONS(3960), - [anon_sym_DQUOTE] = ACTIONS(3960), - [sym__str_single_quotes] = ACTIONS(3960), - [sym__str_back_ticks] = ACTIONS(3960), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3960), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3960), - [anon_sym_CARET] = ACTIONS(3960), + [1715] = { + [sym_comment] = STATE(1715), + [anon_sym_export] = ACTIONS(5217), + [anon_sym_alias] = ACTIONS(5217), + [anon_sym_let] = ACTIONS(5217), + [anon_sym_let_DASHenv] = ACTIONS(5217), + [anon_sym_mut] = ACTIONS(5217), + [anon_sym_const] = ACTIONS(5217), + [anon_sym_SEMI] = ACTIONS(5217), + [sym_cmd_identifier] = ACTIONS(5217), + [anon_sym_LF] = ACTIONS(5219), + [anon_sym_def] = ACTIONS(5217), + [anon_sym_export_DASHenv] = ACTIONS(5217), + [anon_sym_extern] = ACTIONS(5217), + [anon_sym_module] = ACTIONS(5217), + [anon_sym_use] = ACTIONS(5217), + [anon_sym_LBRACK] = ACTIONS(5217), + [anon_sym_LPAREN] = ACTIONS(5217), + [anon_sym_RPAREN] = ACTIONS(5217), + [anon_sym_DOLLAR] = ACTIONS(5217), + [anon_sym_error] = ACTIONS(5217), + [anon_sym_DASH_DASH] = ACTIONS(5217), + [anon_sym_DASH] = ACTIONS(5217), + [anon_sym_break] = ACTIONS(5217), + [anon_sym_continue] = ACTIONS(5217), + [anon_sym_for] = ACTIONS(5217), + [anon_sym_loop] = ACTIONS(5217), + [anon_sym_while] = ACTIONS(5217), + [anon_sym_do] = ACTIONS(5217), + [anon_sym_if] = ACTIONS(5217), + [anon_sym_match] = ACTIONS(5217), + [anon_sym_LBRACE] = ACTIONS(5217), + [anon_sym_RBRACE] = ACTIONS(5217), + [anon_sym_DOT_DOT] = ACTIONS(5217), + [anon_sym_try] = ACTIONS(5217), + [anon_sym_return] = ACTIONS(5217), + [anon_sym_source] = ACTIONS(5217), + [anon_sym_source_DASHenv] = ACTIONS(5217), + [anon_sym_register] = ACTIONS(5217), + [anon_sym_hide] = ACTIONS(5217), + [anon_sym_hide_DASHenv] = ACTIONS(5217), + [anon_sym_overlay] = ACTIONS(5217), + [anon_sym_as] = ACTIONS(5217), + [anon_sym_where] = ACTIONS(5217), + [anon_sym_not] = ACTIONS(5217), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5217), + [anon_sym_DOT_DOT_LT] = ACTIONS(5217), + [anon_sym_null] = ACTIONS(5217), + [anon_sym_true] = ACTIONS(5217), + [anon_sym_false] = ACTIONS(5217), + [aux_sym__val_number_decimal_token1] = ACTIONS(5217), + [aux_sym__val_number_decimal_token2] = ACTIONS(5217), + [anon_sym_DOT2] = ACTIONS(5217), + [aux_sym__val_number_decimal_token3] = ACTIONS(5217), + [aux_sym__val_number_token1] = ACTIONS(5217), + [aux_sym__val_number_token2] = ACTIONS(5217), + [aux_sym__val_number_token3] = ACTIONS(5217), + [aux_sym__val_number_token4] = ACTIONS(5217), + [aux_sym__val_number_token5] = ACTIONS(5217), + [aux_sym__val_number_token6] = ACTIONS(5217), + [anon_sym_0b] = ACTIONS(5217), + [anon_sym_0o] = ACTIONS(5217), + [anon_sym_0x] = ACTIONS(5217), + [sym_val_date] = ACTIONS(5217), + [anon_sym_DQUOTE] = ACTIONS(5217), + [sym__str_single_quotes] = ACTIONS(5217), + [sym__str_back_ticks] = ACTIONS(5217), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5217), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5217), + [anon_sym_CARET] = ACTIONS(5217), [anon_sym_POUND] = ACTIONS(113), }, - [1514] = { - [sym_cell_path] = STATE(2451), - [sym_path] = STATE(1457), - [sym_comment] = STATE(1514), - [anon_sym_LBRACK] = ACTIONS(1150), - [anon_sym_COMMA] = ACTIONS(1150), - [anon_sym_RBRACK] = ACTIONS(1150), - [anon_sym_LPAREN] = ACTIONS(1150), - [anon_sym_DOLLAR] = ACTIONS(1150), - [anon_sym_GT] = ACTIONS(1148), - [anon_sym_DASH_DASH] = ACTIONS(1150), - [anon_sym_DASH] = ACTIONS(1148), - [anon_sym_in] = ACTIONS(1148), - [anon_sym_LBRACE] = ACTIONS(1150), - [anon_sym_DOT_DOT] = ACTIONS(1148), - [anon_sym_STAR] = ACTIONS(1148), - [anon_sym_STAR_STAR] = ACTIONS(1150), - [anon_sym_PLUS_PLUS] = ACTIONS(1150), - [anon_sym_SLASH] = ACTIONS(1148), - [anon_sym_mod] = ACTIONS(1150), - [anon_sym_SLASH_SLASH] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(1148), - [anon_sym_bit_DASHshl] = ACTIONS(1150), - [anon_sym_bit_DASHshr] = ACTIONS(1150), - [anon_sym_EQ_EQ] = ACTIONS(1150), - [anon_sym_BANG_EQ] = ACTIONS(1150), - [anon_sym_LT2] = ACTIONS(1148), - [anon_sym_LT_EQ] = ACTIONS(1150), - [anon_sym_GT_EQ] = ACTIONS(1150), - [anon_sym_not_DASHin] = ACTIONS(1150), - [anon_sym_starts_DASHwith] = ACTIONS(1150), - [anon_sym_ends_DASHwith] = ACTIONS(1150), - [anon_sym_EQ_TILDE] = ACTIONS(1150), - [anon_sym_BANG_TILDE] = ACTIONS(1150), - [anon_sym_bit_DASHand] = ACTIONS(1150), - [anon_sym_bit_DASHxor] = ACTIONS(1150), - [anon_sym_bit_DASHor] = ACTIONS(1150), - [anon_sym_and] = ACTIONS(1150), - [anon_sym_xor] = ACTIONS(1150), - [anon_sym_or] = ACTIONS(1150), - [anon_sym_DOT] = ACTIONS(4191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1150), - [anon_sym_DOT_DOT_LT] = ACTIONS(1150), - [anon_sym_null] = ACTIONS(1150), - [anon_sym_true] = ACTIONS(1150), - [anon_sym_false] = ACTIONS(1150), - [aux_sym__val_number_decimal_token1] = ACTIONS(1148), - [aux_sym__val_number_decimal_token2] = ACTIONS(1150), - [anon_sym_DOT2] = ACTIONS(1148), - [aux_sym__val_number_decimal_token3] = ACTIONS(1150), - [aux_sym__val_number_token1] = ACTIONS(1150), - [aux_sym__val_number_token2] = ACTIONS(1150), - [aux_sym__val_number_token3] = ACTIONS(1150), - [aux_sym__val_number_token4] = ACTIONS(1150), - [aux_sym__val_number_token5] = ACTIONS(1150), - [aux_sym__val_number_token6] = ACTIONS(1150), - [anon_sym_0b] = ACTIONS(1148), - [anon_sym_0o] = ACTIONS(1148), - [anon_sym_0x] = ACTIONS(1148), - [sym_val_date] = ACTIONS(1150), - [anon_sym_DQUOTE] = ACTIONS(1150), - [sym__str_single_quotes] = ACTIONS(1150), - [sym__str_back_ticks] = ACTIONS(1150), - [anon_sym_err_GT] = ACTIONS(1150), - [anon_sym_out_GT] = ACTIONS(1150), - [anon_sym_e_GT] = ACTIONS(1150), - [anon_sym_o_GT] = ACTIONS(1150), - [anon_sym_err_PLUSout_GT] = ACTIONS(1150), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1150), - [anon_sym_o_PLUSe_GT] = ACTIONS(1150), - [anon_sym_e_PLUSo_GT] = ACTIONS(1150), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1148), + [1716] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5475), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(5099), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3964), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4749), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1716), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5221), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5223), + [anon_sym_DOT_DOT_LT] = ACTIONS(5223), + [anon_sym_null] = ACTIONS(5225), + [anon_sym_true] = ACTIONS(5227), + [anon_sym_false] = ACTIONS(5227), + [aux_sym__val_number_decimal_token1] = ACTIONS(5229), + [aux_sym__val_number_decimal_token2] = ACTIONS(5231), + [anon_sym_DOT2] = ACTIONS(5233), + [aux_sym__val_number_decimal_token3] = ACTIONS(5235), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5237), + [aux_sym__val_number_token5] = ACTIONS(5237), + [aux_sym__val_number_token6] = ACTIONS(5237), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5239), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), [anon_sym_POUND] = ACTIONS(3), }, - [1515] = { - [sym__expression] = STATE(9199), - [sym_expr_unary] = STATE(6185), - [sym__expr_unary_minus] = STATE(6202), - [sym_expr_binary] = STATE(6185), - [sym__expr_binary_expression] = STATE(6792), - [sym_expr_parenthesized] = STATE(5236), - [sym_val_range] = STATE(9442), - [sym__val_range] = STATE(10544), - [sym__value] = STATE(6185), - [sym_val_nothing] = STATE(6237), - [sym_val_bool] = STATE(5819), - [sym_val_variable] = STATE(5275), - [sym__var] = STATE(4701), - [sym_val_number] = STATE(6237), - [sym__val_number_decimal] = STATE(4677), - [sym__val_number] = STATE(6253), - [sym_val_duration] = STATE(6237), - [sym_val_filesize] = STATE(6237), - [sym_val_binary] = STATE(6237), - [sym_val_string] = STATE(6237), - [sym__str_double_quotes] = STATE(6028), - [sym_val_interpolated] = STATE(6237), - [sym__inter_single_quotes] = STATE(6107), - [sym__inter_double_quotes] = STATE(6113), - [sym_val_list] = STATE(6237), - [sym_val_record] = STATE(6237), - [sym_val_table] = STATE(6237), - [sym_val_closure] = STATE(6237), - [sym_unquoted] = STATE(9201), - [sym__unquoted_anonymous_prefix] = STATE(11010), - [sym_comment] = STATE(1515), - [anon_sym_LBRACK] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_DOLLAR] = ACTIONS(2064), - [anon_sym_DASH] = ACTIONS(4642), - [anon_sym_LBRACE] = ACTIONS(3007), - [anon_sym_DOT_DOT] = ACTIONS(4644), - [anon_sym_not] = ACTIONS(4646), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4648), - [anon_sym_DOT_DOT_LT] = ACTIONS(4648), - [anon_sym_null] = ACTIONS(4650), - [anon_sym_true] = ACTIONS(4652), - [anon_sym_false] = ACTIONS(4652), - [aux_sym__val_number_decimal_token1] = ACTIONS(4654), - [aux_sym__val_number_decimal_token2] = ACTIONS(4656), - [anon_sym_DOT2] = ACTIONS(4658), - [aux_sym__val_number_decimal_token3] = ACTIONS(4660), - [aux_sym__val_number_token1] = ACTIONS(3019), - [aux_sym__val_number_token2] = ACTIONS(3019), - [aux_sym__val_number_token3] = ACTIONS(3019), - [aux_sym__val_number_token4] = ACTIONS(4662), - [aux_sym__val_number_token5] = ACTIONS(4662), - [aux_sym__val_number_token6] = ACTIONS(4662), - [anon_sym_0b] = ACTIONS(2090), - [anon_sym_0o] = ACTIONS(2092), - [anon_sym_0x] = ACTIONS(2092), - [sym_val_date] = ACTIONS(4664), - [anon_sym_DQUOTE] = ACTIONS(3025), - [sym__str_single_quotes] = ACTIONS(3027), - [sym__str_back_ticks] = ACTIONS(3027), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3029), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3031), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2106), + [1717] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5476), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(5099), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3964), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4750), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1717), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5221), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5223), + [anon_sym_DOT_DOT_LT] = ACTIONS(5223), + [anon_sym_null] = ACTIONS(5225), + [anon_sym_true] = ACTIONS(5227), + [anon_sym_false] = ACTIONS(5227), + [aux_sym__val_number_decimal_token1] = ACTIONS(5229), + [aux_sym__val_number_decimal_token2] = ACTIONS(5231), + [anon_sym_DOT2] = ACTIONS(5233), + [aux_sym__val_number_decimal_token3] = ACTIONS(5235), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5237), + [aux_sym__val_number_token5] = ACTIONS(5237), + [aux_sym__val_number_token6] = ACTIONS(5237), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5239), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), [anon_sym_POUND] = ACTIONS(3), }, - [1516] = { - [sym_comment] = STATE(1516), - [anon_sym_LBRACK] = ACTIONS(1196), - [anon_sym_COMMA] = ACTIONS(1196), - [anon_sym_LPAREN] = ACTIONS(1196), - [anon_sym_DOLLAR] = ACTIONS(1196), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_in] = ACTIONS(1198), - [anon_sym_LBRACE] = ACTIONS(1196), - [anon_sym_RBRACE] = ACTIONS(1196), - [anon_sym__] = ACTIONS(1194), - [anon_sym_DOT_DOT] = ACTIONS(1194), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_STAR_STAR] = ACTIONS(1366), - [anon_sym_PLUS_PLUS] = ACTIONS(1366), - [anon_sym_SLASH] = ACTIONS(1198), - [anon_sym_mod] = ACTIONS(1366), - [anon_sym_SLASH_SLASH] = ACTIONS(1366), - [anon_sym_PLUS] = ACTIONS(1198), - [anon_sym_bit_DASHshl] = ACTIONS(1366), - [anon_sym_bit_DASHshr] = ACTIONS(1366), - [anon_sym_EQ_EQ] = ACTIONS(1366), - [anon_sym_BANG_EQ] = ACTIONS(1366), - [anon_sym_LT2] = ACTIONS(1198), - [anon_sym_LT_EQ] = ACTIONS(1366), - [anon_sym_GT_EQ] = ACTIONS(1366), - [anon_sym_not_DASHin] = ACTIONS(1366), - [anon_sym_starts_DASHwith] = ACTIONS(1366), - [anon_sym_ends_DASHwith] = ACTIONS(1366), - [anon_sym_EQ_TILDE] = ACTIONS(1366), - [anon_sym_BANG_TILDE] = ACTIONS(1366), - [anon_sym_bit_DASHand] = ACTIONS(1366), - [anon_sym_bit_DASHxor] = ACTIONS(1366), - [anon_sym_bit_DASHor] = ACTIONS(1366), - [anon_sym_and] = ACTIONS(1366), - [anon_sym_xor] = ACTIONS(1366), - [anon_sym_or] = ACTIONS(1366), - [anon_sym_DOT_DOT2] = ACTIONS(4613), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1194), - [anon_sym_DOT_DOT_LT] = ACTIONS(1194), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4615), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4615), - [anon_sym_null] = ACTIONS(1196), - [anon_sym_true] = ACTIONS(1196), - [anon_sym_false] = ACTIONS(1196), - [aux_sym__val_number_decimal_token1] = ACTIONS(1194), - [aux_sym__val_number_decimal_token2] = ACTIONS(1196), - [anon_sym_DOT2] = ACTIONS(1194), - [aux_sym__val_number_decimal_token3] = ACTIONS(1196), - [aux_sym__val_number_token1] = ACTIONS(1196), - [aux_sym__val_number_token2] = ACTIONS(1196), - [aux_sym__val_number_token3] = ACTIONS(1196), - [aux_sym__val_number_token4] = ACTIONS(1196), - [aux_sym__val_number_token5] = ACTIONS(1196), - [aux_sym__val_number_token6] = ACTIONS(1196), - [anon_sym_0b] = ACTIONS(1194), - [anon_sym_0o] = ACTIONS(1194), - [anon_sym_0x] = ACTIONS(1194), - [sym_val_date] = ACTIONS(1196), - [anon_sym_DQUOTE] = ACTIONS(1196), - [sym__str_single_quotes] = ACTIONS(1196), - [sym__str_back_ticks] = ACTIONS(1196), - [anon_sym_err_GT] = ACTIONS(1196), - [anon_sym_out_GT] = ACTIONS(1196), - [anon_sym_e_GT] = ACTIONS(1196), - [anon_sym_o_GT] = ACTIONS(1196), - [anon_sym_err_PLUSout_GT] = ACTIONS(1196), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1196), - [anon_sym_o_PLUSe_GT] = ACTIONS(1196), - [anon_sym_e_PLUSo_GT] = ACTIONS(1196), - [aux_sym_unquoted_token1] = ACTIONS(1194), + [1718] = { + [sym_expr_unary] = STATE(6059), + [sym__expr_unary_minus] = STATE(6045), + [sym_expr_binary] = STATE(6059), + [sym__expr_binary_expression] = STATE(6070), + [sym_expr_parenthesized] = STATE(6059), + [sym__val_range] = STATE(10109), + [sym__value] = STATE(6059), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(5958), + [sym_val_variable] = STATE(6041), + [sym__var] = STATE(5406), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(4495), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(6041), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_unquoted] = STATE(6071), + [sym__unquoted_anonymous_prefix] = STATE(10819), + [sym_comment] = STATE(1718), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(4791), + [anon_sym_DOLLAR] = ACTIONS(4793), + [anon_sym_DASH] = ACTIONS(4094), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(4795), + [anon_sym_not] = ACTIONS(4098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4797), + [anon_sym_DOT_DOT_LT] = ACTIONS(4797), + [anon_sym_null] = ACTIONS(4102), + [anon_sym_true] = ACTIONS(4104), + [anon_sym_false] = ACTIONS(4104), + [aux_sym__val_number_decimal_token1] = ACTIONS(4106), + [aux_sym__val_number_decimal_token2] = ACTIONS(4108), + [anon_sym_DOT2] = ACTIONS(4799), + [aux_sym__val_number_decimal_token3] = ACTIONS(4112), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [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(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(4116), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2950), [anon_sym_POUND] = ACTIONS(3), }, - [1517] = { - [sym_path] = STATE(1937), - [sym_comment] = STATE(1517), - [aux_sym_cell_path_repeat1] = STATE(1525), - [ts_builtin_sym_end] = ACTIONS(989), - [anon_sym_export] = ACTIONS(987), - [anon_sym_alias] = ACTIONS(987), - [anon_sym_let] = ACTIONS(987), - [anon_sym_let_DASHenv] = ACTIONS(987), - [anon_sym_mut] = ACTIONS(987), - [anon_sym_const] = ACTIONS(987), - [anon_sym_SEMI] = ACTIONS(987), - [sym_cmd_identifier] = ACTIONS(987), - [anon_sym_LF] = ACTIONS(989), - [anon_sym_def] = ACTIONS(987), - [anon_sym_export_DASHenv] = ACTIONS(987), - [anon_sym_extern] = ACTIONS(987), - [anon_sym_module] = ACTIONS(987), - [anon_sym_use] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(987), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_DOLLAR] = ACTIONS(987), - [anon_sym_error] = ACTIONS(987), - [anon_sym_DASH_DASH] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_break] = ACTIONS(987), - [anon_sym_continue] = ACTIONS(987), - [anon_sym_for] = ACTIONS(987), - [anon_sym_loop] = ACTIONS(987), - [anon_sym_while] = ACTIONS(987), - [anon_sym_do] = ACTIONS(987), - [anon_sym_if] = ACTIONS(987), - [anon_sym_match] = ACTIONS(987), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_DOT_DOT] = ACTIONS(987), - [anon_sym_try] = ACTIONS(987), - [anon_sym_return] = ACTIONS(987), - [anon_sym_source] = ACTIONS(987), - [anon_sym_source_DASHenv] = ACTIONS(987), - [anon_sym_register] = ACTIONS(987), - [anon_sym_hide] = ACTIONS(987), - [anon_sym_hide_DASHenv] = ACTIONS(987), - [anon_sym_overlay] = ACTIONS(987), - [anon_sym_as] = ACTIONS(987), - [anon_sym_where] = ACTIONS(987), - [anon_sym_not] = ACTIONS(987), - [anon_sym_DOT] = ACTIONS(4629), - [anon_sym_DOT_DOT_EQ] = ACTIONS(987), - [anon_sym_DOT_DOT_LT] = ACTIONS(987), - [anon_sym_null] = ACTIONS(987), - [anon_sym_true] = ACTIONS(987), - [anon_sym_false] = ACTIONS(987), - [aux_sym__val_number_decimal_token1] = ACTIONS(987), - [aux_sym__val_number_decimal_token2] = ACTIONS(987), - [anon_sym_DOT2] = ACTIONS(987), - [aux_sym__val_number_decimal_token3] = ACTIONS(987), - [aux_sym__val_number_token1] = ACTIONS(987), - [aux_sym__val_number_token2] = ACTIONS(987), - [aux_sym__val_number_token3] = ACTIONS(987), - [aux_sym__val_number_token4] = ACTIONS(987), - [aux_sym__val_number_token5] = ACTIONS(987), - [aux_sym__val_number_token6] = ACTIONS(987), - [anon_sym_0b] = ACTIONS(987), - [anon_sym_0o] = ACTIONS(987), - [anon_sym_0x] = ACTIONS(987), - [sym_val_date] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(987), - [sym__str_single_quotes] = ACTIONS(987), - [sym__str_back_ticks] = ACTIONS(987), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(987), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_POUND] = ACTIONS(113), - }, - [1518] = { - [sym_cell_path] = STATE(2616), - [sym_path] = STATE(1497), - [sym_comment] = STATE(1518), - [anon_sym_LBRACK] = ACTIONS(4666), - [anon_sym_COMMA] = ACTIONS(4666), - [anon_sym_LPAREN] = ACTIONS(4666), - [anon_sym_DOLLAR] = ACTIONS(4666), - [anon_sym_GT] = ACTIONS(1203), - [anon_sym_DASH] = ACTIONS(4669), - [anon_sym_in] = ACTIONS(1203), - [anon_sym_LBRACE] = ACTIONS(4666), - [anon_sym_RBRACE] = ACTIONS(4666), - [anon_sym__] = ACTIONS(4669), - [anon_sym_DOT_DOT] = ACTIONS(4669), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_STAR_STAR] = ACTIONS(1205), - [anon_sym_PLUS_PLUS] = ACTIONS(1205), - [anon_sym_SLASH] = ACTIONS(1203), - [anon_sym_mod] = ACTIONS(1205), - [anon_sym_SLASH_SLASH] = ACTIONS(1205), - [anon_sym_PLUS] = ACTIONS(1203), - [anon_sym_bit_DASHshl] = ACTIONS(1205), - [anon_sym_bit_DASHshr] = ACTIONS(1205), - [anon_sym_EQ_EQ] = ACTIONS(1205), - [anon_sym_BANG_EQ] = ACTIONS(1205), - [anon_sym_LT2] = ACTIONS(1203), - [anon_sym_LT_EQ] = ACTIONS(1205), - [anon_sym_GT_EQ] = ACTIONS(1205), - [anon_sym_not_DASHin] = ACTIONS(1205), - [anon_sym_starts_DASHwith] = ACTIONS(1205), - [anon_sym_ends_DASHwith] = ACTIONS(1205), - [anon_sym_EQ_TILDE] = ACTIONS(1205), - [anon_sym_BANG_TILDE] = ACTIONS(1205), - [anon_sym_bit_DASHand] = ACTIONS(1205), - [anon_sym_bit_DASHxor] = ACTIONS(1205), - [anon_sym_bit_DASHor] = ACTIONS(1205), - [anon_sym_and] = ACTIONS(1205), - [anon_sym_xor] = ACTIONS(1205), - [anon_sym_or] = ACTIONS(1205), - [anon_sym_DOT] = ACTIONS(4585), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4666), - [anon_sym_DOT_DOT_LT] = ACTIONS(4666), - [anon_sym_null] = ACTIONS(4666), - [anon_sym_true] = ACTIONS(4666), - [anon_sym_false] = ACTIONS(4666), - [aux_sym__val_number_decimal_token1] = ACTIONS(4669), - [aux_sym__val_number_decimal_token2] = ACTIONS(4666), - [anon_sym_DOT2] = ACTIONS(4669), - [aux_sym__val_number_decimal_token3] = ACTIONS(4666), - [aux_sym__val_number_token1] = ACTIONS(4666), - [aux_sym__val_number_token2] = ACTIONS(4666), - [aux_sym__val_number_token3] = ACTIONS(4666), - [aux_sym__val_number_token4] = ACTIONS(4666), - [aux_sym__val_number_token5] = ACTIONS(4666), - [aux_sym__val_number_token6] = ACTIONS(4666), - [anon_sym_0b] = ACTIONS(4669), - [anon_sym_0o] = ACTIONS(4669), - [anon_sym_0x] = ACTIONS(4669), - [sym_val_date] = ACTIONS(4666), - [anon_sym_DQUOTE] = ACTIONS(4666), - [sym__str_single_quotes] = ACTIONS(4666), - [sym__str_back_ticks] = ACTIONS(4666), - [anon_sym_err_GT] = ACTIONS(4666), - [anon_sym_out_GT] = ACTIONS(4666), - [anon_sym_e_GT] = ACTIONS(4666), - [anon_sym_o_GT] = ACTIONS(4666), - [anon_sym_err_PLUSout_GT] = ACTIONS(4666), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4666), - [anon_sym_o_PLUSe_GT] = ACTIONS(4666), - [anon_sym_e_PLUSo_GT] = ACTIONS(4666), - [aux_sym_unquoted_token1] = ACTIONS(4669), + [1719] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5478), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(5099), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3964), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4752), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1719), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5221), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5223), + [anon_sym_DOT_DOT_LT] = ACTIONS(5223), + [anon_sym_null] = ACTIONS(5225), + [anon_sym_true] = ACTIONS(5227), + [anon_sym_false] = ACTIONS(5227), + [aux_sym__val_number_decimal_token1] = ACTIONS(5229), + [aux_sym__val_number_decimal_token2] = ACTIONS(5231), + [anon_sym_DOT2] = ACTIONS(5233), + [aux_sym__val_number_decimal_token3] = ACTIONS(5235), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5237), + [aux_sym__val_number_token5] = ACTIONS(5237), + [aux_sym__val_number_token6] = ACTIONS(5237), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5239), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), [anon_sym_POUND] = ACTIONS(3), }, - [1519] = { - [sym_comment] = STATE(1519), - [ts_builtin_sym_end] = ACTIONS(1170), - [anon_sym_export] = ACTIONS(1168), - [anon_sym_alias] = ACTIONS(1168), - [anon_sym_let] = ACTIONS(1168), - [anon_sym_let_DASHenv] = ACTIONS(1168), - [anon_sym_mut] = ACTIONS(1168), - [anon_sym_const] = ACTIONS(1168), - [anon_sym_SEMI] = ACTIONS(1168), - [sym_cmd_identifier] = ACTIONS(1168), - [anon_sym_LF] = ACTIONS(1170), - [anon_sym_def] = ACTIONS(1168), - [anon_sym_export_DASHenv] = ACTIONS(1168), - [anon_sym_extern] = ACTIONS(1168), - [anon_sym_module] = ACTIONS(1168), - [anon_sym_use] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_DOLLAR] = ACTIONS(1168), - [anon_sym_error] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1168), - [anon_sym_break] = ACTIONS(1168), - [anon_sym_continue] = ACTIONS(1168), - [anon_sym_for] = ACTIONS(1168), - [anon_sym_loop] = ACTIONS(1168), - [anon_sym_while] = ACTIONS(1168), - [anon_sym_do] = ACTIONS(1168), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_match] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1168), - [anon_sym_DOT_DOT] = ACTIONS(1168), - [anon_sym_try] = ACTIONS(1168), - [anon_sym_return] = ACTIONS(1168), - [anon_sym_source] = ACTIONS(1168), - [anon_sym_source_DASHenv] = ACTIONS(1168), - [anon_sym_register] = ACTIONS(1168), - [anon_sym_hide] = ACTIONS(1168), - [anon_sym_hide_DASHenv] = ACTIONS(1168), - [anon_sym_overlay] = ACTIONS(1168), - [anon_sym_as] = ACTIONS(1168), - [anon_sym_where] = ACTIONS(1168), - [anon_sym_not] = ACTIONS(1168), - [anon_sym_DOT_DOT2] = ACTIONS(1168), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1168), - [anon_sym_DOT_DOT_LT] = ACTIONS(1168), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1170), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1170), - [anon_sym_null] = ACTIONS(1168), - [anon_sym_true] = ACTIONS(1168), - [anon_sym_false] = ACTIONS(1168), - [aux_sym__val_number_decimal_token1] = ACTIONS(1168), - [aux_sym__val_number_decimal_token2] = ACTIONS(1168), - [anon_sym_DOT2] = ACTIONS(1168), - [aux_sym__val_number_decimal_token3] = ACTIONS(1168), - [aux_sym__val_number_token1] = ACTIONS(1168), - [aux_sym__val_number_token2] = ACTIONS(1168), - [aux_sym__val_number_token3] = ACTIONS(1168), - [aux_sym__val_number_token4] = ACTIONS(1168), - [aux_sym__val_number_token5] = ACTIONS(1168), - [aux_sym__val_number_token6] = ACTIONS(1168), - [anon_sym_0b] = ACTIONS(1168), - [anon_sym_0o] = ACTIONS(1168), - [anon_sym_0x] = ACTIONS(1168), - [sym_val_date] = ACTIONS(1168), - [anon_sym_DQUOTE] = ACTIONS(1168), - [sym__str_single_quotes] = ACTIONS(1168), - [sym__str_back_ticks] = ACTIONS(1168), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1168), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1168), - [anon_sym_CARET] = ACTIONS(1168), - [anon_sym_POUND] = ACTIONS(113), - }, - [1520] = { - [sym_comment] = STATE(1520), - [anon_sym_export] = ACTIONS(1117), - [anon_sym_alias] = ACTIONS(1117), - [anon_sym_let] = ACTIONS(1117), - [anon_sym_let_DASHenv] = ACTIONS(1117), - [anon_sym_mut] = ACTIONS(1117), - [anon_sym_const] = ACTIONS(1117), - [anon_sym_SEMI] = ACTIONS(1117), - [sym_cmd_identifier] = ACTIONS(1117), - [anon_sym_LF] = ACTIONS(1119), - [anon_sym_def] = ACTIONS(1117), - [anon_sym_export_DASHenv] = ACTIONS(1117), - [anon_sym_extern] = ACTIONS(1117), - [anon_sym_module] = ACTIONS(1117), - [anon_sym_use] = ACTIONS(1117), - [anon_sym_LBRACK] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1117), - [anon_sym_RPAREN] = ACTIONS(1117), - [anon_sym_DOLLAR] = ACTIONS(1117), - [anon_sym_error] = ACTIONS(1117), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_break] = ACTIONS(1117), - [anon_sym_continue] = ACTIONS(1117), - [anon_sym_for] = ACTIONS(1117), - [anon_sym_loop] = ACTIONS(1117), - [anon_sym_while] = ACTIONS(1117), - [anon_sym_do] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1117), - [anon_sym_LBRACE] = ACTIONS(1117), - [anon_sym_RBRACE] = ACTIONS(1117), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_try] = ACTIONS(1117), - [anon_sym_return] = ACTIONS(1117), - [anon_sym_source] = ACTIONS(1117), - [anon_sym_source_DASHenv] = ACTIONS(1117), - [anon_sym_register] = ACTIONS(1117), - [anon_sym_hide] = ACTIONS(1117), - [anon_sym_hide_DASHenv] = ACTIONS(1117), - [anon_sym_overlay] = ACTIONS(1117), - [anon_sym_where] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1117), - [anon_sym_DOT_DOT2] = ACTIONS(1117), - [anon_sym_DOT] = ACTIONS(1117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1117), - [anon_sym_DOT_DOT_LT] = ACTIONS(1117), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1119), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1119), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_true] = ACTIONS(1117), - [anon_sym_false] = ACTIONS(1117), - [aux_sym__val_number_decimal_token1] = ACTIONS(1117), - [aux_sym__val_number_decimal_token2] = ACTIONS(1117), - [anon_sym_DOT2] = ACTIONS(1117), - [aux_sym__val_number_decimal_token3] = ACTIONS(1117), - [aux_sym__val_number_token1] = ACTIONS(1117), - [aux_sym__val_number_token2] = ACTIONS(1117), - [aux_sym__val_number_token3] = ACTIONS(1117), - [aux_sym__val_number_token4] = ACTIONS(1117), - [aux_sym__val_number_token5] = ACTIONS(1117), - [aux_sym__val_number_token6] = ACTIONS(1117), - [anon_sym_0b] = ACTIONS(1117), - [anon_sym_0o] = ACTIONS(1117), - [anon_sym_0x] = ACTIONS(1117), - [sym_val_date] = ACTIONS(1117), - [anon_sym_DQUOTE] = ACTIONS(1117), - [sym__str_single_quotes] = ACTIONS(1117), - [sym__str_back_ticks] = ACTIONS(1117), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1117), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1117), - [anon_sym_CARET] = ACTIONS(1117), - [anon_sym_POUND] = ACTIONS(113), + [1720] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5479), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(5099), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3964), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4753), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1720), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5221), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5223), + [anon_sym_DOT_DOT_LT] = ACTIONS(5223), + [anon_sym_null] = ACTIONS(5225), + [anon_sym_true] = ACTIONS(5227), + [anon_sym_false] = ACTIONS(5227), + [aux_sym__val_number_decimal_token1] = ACTIONS(5229), + [aux_sym__val_number_decimal_token2] = ACTIONS(5231), + [anon_sym_DOT2] = ACTIONS(5233), + [aux_sym__val_number_decimal_token3] = ACTIONS(5235), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5237), + [aux_sym__val_number_token5] = ACTIONS(5237), + [aux_sym__val_number_token6] = ACTIONS(5237), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5239), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), }, - [1521] = { - [sym__expression] = STATE(8061), - [sym_expr_unary] = STATE(6243), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6243), - [sym__expr_binary_expression] = STATE(6813), - [sym_expr_parenthesized] = STATE(6052), - [sym_val_range] = STATE(7168), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6243), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6451), - [sym_val_variable] = STATE(6047), - [sym__var] = STATE(4486), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5135), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(8062), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(1521), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_DOLLAR] = ACTIONS(2690), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(4672), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4674), - [anon_sym_DOT_DOT_LT] = ACTIONS(4674), - [anon_sym_null] = ACTIONS(4676), - [anon_sym_true] = ACTIONS(4678), - [anon_sym_false] = ACTIONS(4678), - [aux_sym__val_number_decimal_token1] = ACTIONS(4680), - [aux_sym__val_number_decimal_token2] = ACTIONS(4682), - [anon_sym_DOT2] = ACTIONS(4684), - [aux_sym__val_number_decimal_token3] = ACTIONS(4686), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(4688), - [aux_sym__val_number_token5] = ACTIONS(4688), - [aux_sym__val_number_token6] = ACTIONS(4688), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(4690), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), + [1721] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5480), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(5099), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3964), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4754), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1721), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5221), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5223), + [anon_sym_DOT_DOT_LT] = ACTIONS(5223), + [anon_sym_null] = ACTIONS(5225), + [anon_sym_true] = ACTIONS(5227), + [anon_sym_false] = ACTIONS(5227), + [aux_sym__val_number_decimal_token1] = ACTIONS(5229), + [aux_sym__val_number_decimal_token2] = ACTIONS(5231), + [anon_sym_DOT2] = ACTIONS(5233), + [aux_sym__val_number_decimal_token3] = ACTIONS(5235), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5237), + [aux_sym__val_number_token5] = ACTIONS(5237), + [aux_sym__val_number_token6] = ACTIONS(5237), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5239), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), [anon_sym_POUND] = ACTIONS(3), }, - [1522] = { - [sym_comment] = STATE(1522), - [anon_sym_LBRACK] = ACTIONS(1174), - [anon_sym_COMMA] = ACTIONS(1174), - [anon_sym_RBRACK] = ACTIONS(1174), - [anon_sym_LPAREN] = ACTIONS(1174), - [anon_sym_DOLLAR] = ACTIONS(1174), - [anon_sym_GT] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1174), - [anon_sym_DASH] = ACTIONS(1172), - [anon_sym_in] = ACTIONS(1172), - [anon_sym_LBRACE] = ACTIONS(1174), - [anon_sym_DOT_DOT] = ACTIONS(1172), - [anon_sym_STAR] = ACTIONS(1172), - [anon_sym_STAR_STAR] = ACTIONS(1174), - [anon_sym_PLUS_PLUS] = ACTIONS(1174), - [anon_sym_SLASH] = ACTIONS(1172), - [anon_sym_mod] = ACTIONS(1174), - [anon_sym_SLASH_SLASH] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1172), - [anon_sym_bit_DASHshl] = ACTIONS(1174), - [anon_sym_bit_DASHshr] = ACTIONS(1174), - [anon_sym_EQ_EQ] = ACTIONS(1174), - [anon_sym_BANG_EQ] = ACTIONS(1174), - [anon_sym_LT2] = ACTIONS(1172), - [anon_sym_LT_EQ] = ACTIONS(1174), - [anon_sym_GT_EQ] = ACTIONS(1174), - [anon_sym_not_DASHin] = ACTIONS(1174), - [anon_sym_starts_DASHwith] = ACTIONS(1174), - [anon_sym_ends_DASHwith] = ACTIONS(1174), - [anon_sym_EQ_TILDE] = ACTIONS(1174), - [anon_sym_BANG_TILDE] = ACTIONS(1174), - [anon_sym_bit_DASHand] = ACTIONS(1174), - [anon_sym_bit_DASHxor] = ACTIONS(1174), - [anon_sym_bit_DASHor] = ACTIONS(1174), - [anon_sym_and] = ACTIONS(1174), - [anon_sym_xor] = ACTIONS(1174), - [anon_sym_or] = ACTIONS(1174), - [anon_sym_DOT_DOT2] = ACTIONS(1172), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1172), - [anon_sym_DOT_DOT_LT] = ACTIONS(1172), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1174), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1174), - [anon_sym_null] = ACTIONS(1174), - [anon_sym_true] = ACTIONS(1174), - [anon_sym_false] = ACTIONS(1174), - [aux_sym__val_number_decimal_token1] = ACTIONS(1172), - [aux_sym__val_number_decimal_token2] = ACTIONS(1174), - [anon_sym_DOT2] = ACTIONS(1172), - [aux_sym__val_number_decimal_token3] = ACTIONS(1174), - [aux_sym__val_number_token1] = ACTIONS(1174), - [aux_sym__val_number_token2] = ACTIONS(1174), - [aux_sym__val_number_token3] = ACTIONS(1174), - [aux_sym__val_number_token4] = ACTIONS(1174), - [aux_sym__val_number_token5] = ACTIONS(1174), - [aux_sym__val_number_token6] = ACTIONS(1174), - [anon_sym_0b] = ACTIONS(1172), - [anon_sym_0o] = ACTIONS(1172), - [anon_sym_0x] = ACTIONS(1172), - [sym_val_date] = ACTIONS(1174), - [anon_sym_DQUOTE] = ACTIONS(1174), - [sym__str_single_quotes] = ACTIONS(1174), - [sym__str_back_ticks] = ACTIONS(1174), - [anon_sym_err_GT] = ACTIONS(1174), - [anon_sym_out_GT] = ACTIONS(1174), - [anon_sym_e_GT] = ACTIONS(1174), - [anon_sym_o_GT] = ACTIONS(1174), - [anon_sym_err_PLUSout_GT] = ACTIONS(1174), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1174), - [anon_sym_o_PLUSe_GT] = ACTIONS(1174), - [anon_sym_e_PLUSo_GT] = ACTIONS(1174), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1172), + [1722] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5481), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(5099), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3964), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4755), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1722), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5221), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5223), + [anon_sym_DOT_DOT_LT] = ACTIONS(5223), + [anon_sym_null] = ACTIONS(5225), + [anon_sym_true] = ACTIONS(5227), + [anon_sym_false] = ACTIONS(5227), + [aux_sym__val_number_decimal_token1] = ACTIONS(5229), + [aux_sym__val_number_decimal_token2] = ACTIONS(5231), + [anon_sym_DOT2] = ACTIONS(5233), + [aux_sym__val_number_decimal_token3] = ACTIONS(5235), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5237), + [aux_sym__val_number_token5] = ACTIONS(5237), + [aux_sym__val_number_token6] = ACTIONS(5237), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5239), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), [anon_sym_POUND] = ACTIONS(3), }, - [1523] = { - [sym_cell_path] = STATE(2601), - [sym_path] = STATE(1497), - [sym_comment] = STATE(1523), - [anon_sym_LBRACK] = ACTIONS(1192), - [anon_sym_COMMA] = ACTIONS(1192), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_DOLLAR] = ACTIONS(1192), - [anon_sym_GT] = ACTIONS(1190), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_in] = ACTIONS(1190), - [anon_sym_LBRACE] = ACTIONS(1192), - [anon_sym_RBRACE] = ACTIONS(1192), - [anon_sym__] = ACTIONS(1190), - [anon_sym_DOT_DOT] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1190), - [anon_sym_STAR_STAR] = ACTIONS(1192), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_mod] = ACTIONS(1192), - [anon_sym_SLASH_SLASH] = ACTIONS(1192), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_bit_DASHshl] = ACTIONS(1192), - [anon_sym_bit_DASHshr] = ACTIONS(1192), - [anon_sym_EQ_EQ] = ACTIONS(1192), - [anon_sym_BANG_EQ] = ACTIONS(1192), - [anon_sym_LT2] = ACTIONS(1190), - [anon_sym_LT_EQ] = ACTIONS(1192), - [anon_sym_GT_EQ] = ACTIONS(1192), - [anon_sym_not_DASHin] = ACTIONS(1192), - [anon_sym_starts_DASHwith] = ACTIONS(1192), - [anon_sym_ends_DASHwith] = ACTIONS(1192), - [anon_sym_EQ_TILDE] = ACTIONS(1192), - [anon_sym_BANG_TILDE] = ACTIONS(1192), - [anon_sym_bit_DASHand] = ACTIONS(1192), - [anon_sym_bit_DASHxor] = ACTIONS(1192), - [anon_sym_bit_DASHor] = ACTIONS(1192), - [anon_sym_and] = ACTIONS(1192), - [anon_sym_xor] = ACTIONS(1192), - [anon_sym_or] = ACTIONS(1192), - [anon_sym_DOT] = ACTIONS(4585), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1192), - [anon_sym_DOT_DOT_LT] = ACTIONS(1192), - [anon_sym_null] = ACTIONS(1192), - [anon_sym_true] = ACTIONS(1192), - [anon_sym_false] = ACTIONS(1192), - [aux_sym__val_number_decimal_token1] = ACTIONS(1190), - [aux_sym__val_number_decimal_token2] = ACTIONS(1192), - [anon_sym_DOT2] = ACTIONS(1190), - [aux_sym__val_number_decimal_token3] = ACTIONS(1192), - [aux_sym__val_number_token1] = ACTIONS(1192), - [aux_sym__val_number_token2] = ACTIONS(1192), - [aux_sym__val_number_token3] = ACTIONS(1192), - [aux_sym__val_number_token4] = ACTIONS(1192), - [aux_sym__val_number_token5] = ACTIONS(1192), - [aux_sym__val_number_token6] = ACTIONS(1192), - [anon_sym_0b] = ACTIONS(1190), - [anon_sym_0o] = ACTIONS(1190), - [anon_sym_0x] = ACTIONS(1190), - [sym_val_date] = ACTIONS(1192), - [anon_sym_DQUOTE] = ACTIONS(1192), - [sym__str_single_quotes] = ACTIONS(1192), - [sym__str_back_ticks] = ACTIONS(1192), - [anon_sym_err_GT] = ACTIONS(1192), - [anon_sym_out_GT] = ACTIONS(1192), - [anon_sym_e_GT] = ACTIONS(1192), - [anon_sym_o_GT] = ACTIONS(1192), - [anon_sym_err_PLUSout_GT] = ACTIONS(1192), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1192), - [anon_sym_o_PLUSe_GT] = ACTIONS(1192), - [anon_sym_e_PLUSo_GT] = ACTIONS(1192), - [aux_sym_unquoted_token1] = ACTIONS(1190), + [1723] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5482), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(5099), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3964), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4756), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1723), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5221), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5223), + [anon_sym_DOT_DOT_LT] = ACTIONS(5223), + [anon_sym_null] = ACTIONS(5225), + [anon_sym_true] = ACTIONS(5227), + [anon_sym_false] = ACTIONS(5227), + [aux_sym__val_number_decimal_token1] = ACTIONS(5229), + [aux_sym__val_number_decimal_token2] = ACTIONS(5231), + [anon_sym_DOT2] = ACTIONS(5233), + [aux_sym__val_number_decimal_token3] = ACTIONS(5235), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5237), + [aux_sym__val_number_token5] = ACTIONS(5237), + [aux_sym__val_number_token6] = ACTIONS(5237), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5239), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), [anon_sym_POUND] = ACTIONS(3), }, - [1524] = { - [sym_cell_path] = STATE(2452), - [sym_path] = STATE(1457), - [sym_comment] = STATE(1524), - [anon_sym_LBRACK] = ACTIONS(1181), - [anon_sym_COMMA] = ACTIONS(1181), - [anon_sym_RBRACK] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_DOLLAR] = ACTIONS(1181), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1179), - [anon_sym_in] = ACTIONS(1179), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_STAR] = ACTIONS(1179), - [anon_sym_STAR_STAR] = ACTIONS(1181), - [anon_sym_PLUS_PLUS] = ACTIONS(1181), - [anon_sym_SLASH] = ACTIONS(1179), - [anon_sym_mod] = ACTIONS(1181), - [anon_sym_SLASH_SLASH] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1179), - [anon_sym_bit_DASHshl] = ACTIONS(1181), - [anon_sym_bit_DASHshr] = ACTIONS(1181), - [anon_sym_EQ_EQ] = ACTIONS(1181), - [anon_sym_BANG_EQ] = ACTIONS(1181), - [anon_sym_LT2] = ACTIONS(1179), - [anon_sym_LT_EQ] = ACTIONS(1181), - [anon_sym_GT_EQ] = ACTIONS(1181), - [anon_sym_not_DASHin] = ACTIONS(1181), - [anon_sym_starts_DASHwith] = ACTIONS(1181), - [anon_sym_ends_DASHwith] = ACTIONS(1181), - [anon_sym_EQ_TILDE] = ACTIONS(1181), - [anon_sym_BANG_TILDE] = ACTIONS(1181), - [anon_sym_bit_DASHand] = ACTIONS(1181), - [anon_sym_bit_DASHxor] = ACTIONS(1181), - [anon_sym_bit_DASHor] = ACTIONS(1181), - [anon_sym_and] = ACTIONS(1181), - [anon_sym_xor] = ACTIONS(1181), - [anon_sym_or] = ACTIONS(1181), - [anon_sym_DOT] = ACTIONS(4191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1181), - [anon_sym_DOT_DOT_LT] = ACTIONS(1181), - [anon_sym_null] = ACTIONS(1181), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1179), - [aux_sym__val_number_decimal_token2] = ACTIONS(1181), - [anon_sym_DOT2] = ACTIONS(1179), - [aux_sym__val_number_decimal_token3] = ACTIONS(1181), - [aux_sym__val_number_token1] = ACTIONS(1181), - [aux_sym__val_number_token2] = ACTIONS(1181), - [aux_sym__val_number_token3] = ACTIONS(1181), - [aux_sym__val_number_token4] = ACTIONS(1181), - [aux_sym__val_number_token5] = ACTIONS(1181), - [aux_sym__val_number_token6] = ACTIONS(1181), - [anon_sym_0b] = ACTIONS(1179), - [anon_sym_0o] = ACTIONS(1179), - [anon_sym_0x] = ACTIONS(1179), - [sym_val_date] = ACTIONS(1181), - [anon_sym_DQUOTE] = ACTIONS(1181), - [sym__str_single_quotes] = ACTIONS(1181), - [sym__str_back_ticks] = ACTIONS(1181), - [anon_sym_err_GT] = ACTIONS(1181), - [anon_sym_out_GT] = ACTIONS(1181), - [anon_sym_e_GT] = ACTIONS(1181), - [anon_sym_o_GT] = ACTIONS(1181), - [anon_sym_err_PLUSout_GT] = ACTIONS(1181), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1181), - [anon_sym_o_PLUSe_GT] = ACTIONS(1181), - [anon_sym_e_PLUSo_GT] = ACTIONS(1181), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1179), + [1724] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5483), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(5099), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3964), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4757), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1724), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5221), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5223), + [anon_sym_DOT_DOT_LT] = ACTIONS(5223), + [anon_sym_null] = ACTIONS(5225), + [anon_sym_true] = ACTIONS(5227), + [anon_sym_false] = ACTIONS(5227), + [aux_sym__val_number_decimal_token1] = ACTIONS(5229), + [aux_sym__val_number_decimal_token2] = ACTIONS(5231), + [anon_sym_DOT2] = ACTIONS(5233), + [aux_sym__val_number_decimal_token3] = ACTIONS(5235), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5237), + [aux_sym__val_number_token5] = ACTIONS(5237), + [aux_sym__val_number_token6] = ACTIONS(5237), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5239), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), [anon_sym_POUND] = ACTIONS(3), }, - [1525] = { - [sym_path] = STATE(1937), - [sym_comment] = STATE(1525), - [aux_sym_cell_path_repeat1] = STATE(1533), - [ts_builtin_sym_end] = ACTIONS(1008), - [anon_sym_export] = ACTIONS(1006), - [anon_sym_alias] = ACTIONS(1006), - [anon_sym_let] = ACTIONS(1006), - [anon_sym_let_DASHenv] = ACTIONS(1006), - [anon_sym_mut] = ACTIONS(1006), - [anon_sym_const] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1006), - [sym_cmd_identifier] = ACTIONS(1006), - [anon_sym_LF] = ACTIONS(1008), - [anon_sym_def] = ACTIONS(1006), - [anon_sym_export_DASHenv] = ACTIONS(1006), - [anon_sym_extern] = ACTIONS(1006), - [anon_sym_module] = ACTIONS(1006), - [anon_sym_use] = ACTIONS(1006), - [anon_sym_LBRACK] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_error] = ACTIONS(1006), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_break] = ACTIONS(1006), - [anon_sym_continue] = ACTIONS(1006), - [anon_sym_for] = ACTIONS(1006), - [anon_sym_loop] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(1006), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_match] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_try] = ACTIONS(1006), - [anon_sym_return] = ACTIONS(1006), - [anon_sym_source] = ACTIONS(1006), - [anon_sym_source_DASHenv] = ACTIONS(1006), - [anon_sym_register] = ACTIONS(1006), - [anon_sym_hide] = ACTIONS(1006), - [anon_sym_hide_DASHenv] = ACTIONS(1006), - [anon_sym_overlay] = ACTIONS(1006), - [anon_sym_as] = ACTIONS(1006), - [anon_sym_where] = ACTIONS(1006), - [anon_sym_not] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(4629), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT] = ACTIONS(1006), - [anon_sym_null] = ACTIONS(1006), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1006), - [anon_sym_DOT2] = ACTIONS(1006), - [aux_sym__val_number_decimal_token3] = ACTIONS(1006), - [aux_sym__val_number_token1] = ACTIONS(1006), - [aux_sym__val_number_token2] = ACTIONS(1006), - [aux_sym__val_number_token3] = ACTIONS(1006), - [aux_sym__val_number_token4] = ACTIONS(1006), - [aux_sym__val_number_token5] = ACTIONS(1006), - [aux_sym__val_number_token6] = ACTIONS(1006), - [anon_sym_0b] = ACTIONS(1006), - [anon_sym_0o] = ACTIONS(1006), - [anon_sym_0x] = ACTIONS(1006), - [sym_val_date] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym__str_single_quotes] = ACTIONS(1006), - [sym__str_back_ticks] = ACTIONS(1006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1006), - [anon_sym_CARET] = ACTIONS(1006), - [anon_sym_POUND] = ACTIONS(113), + [1725] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5484), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(5099), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3964), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4758), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1725), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5221), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5223), + [anon_sym_DOT_DOT_LT] = ACTIONS(5223), + [anon_sym_null] = ACTIONS(5225), + [anon_sym_true] = ACTIONS(5227), + [anon_sym_false] = ACTIONS(5227), + [aux_sym__val_number_decimal_token1] = ACTIONS(5229), + [aux_sym__val_number_decimal_token2] = ACTIONS(5231), + [anon_sym_DOT2] = ACTIONS(5233), + [aux_sym__val_number_decimal_token3] = ACTIONS(5235), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5237), + [aux_sym__val_number_token5] = ACTIONS(5237), + [aux_sym__val_number_token6] = ACTIONS(5237), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5239), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), }, - [1526] = { - [sym_comment] = STATE(1526), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_alias] = ACTIONS(1109), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_let_DASHenv] = ACTIONS(1109), - [anon_sym_mut] = ACTIONS(1109), - [anon_sym_const] = ACTIONS(1109), - [anon_sym_SEMI] = ACTIONS(1109), - [sym_cmd_identifier] = ACTIONS(1109), - [anon_sym_LF] = ACTIONS(1111), - [anon_sym_def] = ACTIONS(1109), - [anon_sym_export_DASHenv] = ACTIONS(1109), - [anon_sym_extern] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_use] = ACTIONS(1109), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_RPAREN] = ACTIONS(1109), - [anon_sym_DOLLAR] = ACTIONS(1109), - [anon_sym_error] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_break] = ACTIONS(1109), - [anon_sym_continue] = ACTIONS(1109), - [anon_sym_for] = ACTIONS(1109), - [anon_sym_loop] = ACTIONS(1109), - [anon_sym_while] = ACTIONS(1109), - [anon_sym_do] = ACTIONS(1109), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_RBRACE] = ACTIONS(1109), - [anon_sym_DOT_DOT] = ACTIONS(1109), - [anon_sym_try] = ACTIONS(1109), - [anon_sym_return] = ACTIONS(1109), - [anon_sym_source] = ACTIONS(1109), - [anon_sym_source_DASHenv] = ACTIONS(1109), - [anon_sym_register] = ACTIONS(1109), - [anon_sym_hide] = ACTIONS(1109), - [anon_sym_hide_DASHenv] = ACTIONS(1109), - [anon_sym_overlay] = ACTIONS(1109), - [anon_sym_where] = ACTIONS(1109), - [anon_sym_not] = ACTIONS(1109), - [anon_sym_DOT_DOT2] = ACTIONS(1109), - [anon_sym_DOT] = ACTIONS(1109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1109), - [anon_sym_DOT_DOT_LT] = ACTIONS(1109), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1111), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1111), - [anon_sym_null] = ACTIONS(1109), - [anon_sym_true] = ACTIONS(1109), - [anon_sym_false] = ACTIONS(1109), - [aux_sym__val_number_decimal_token1] = ACTIONS(1109), - [aux_sym__val_number_decimal_token2] = ACTIONS(1109), - [anon_sym_DOT2] = ACTIONS(1109), - [aux_sym__val_number_decimal_token3] = ACTIONS(1109), - [aux_sym__val_number_token1] = ACTIONS(1109), - [aux_sym__val_number_token2] = ACTIONS(1109), - [aux_sym__val_number_token3] = ACTIONS(1109), - [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(1109), - [anon_sym_0o] = ACTIONS(1109), - [anon_sym_0x] = ACTIONS(1109), - [sym_val_date] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(1109), - [sym__str_single_quotes] = ACTIONS(1109), - [sym__str_back_ticks] = ACTIONS(1109), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1109), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1109), - [anon_sym_CARET] = ACTIONS(1109), - [anon_sym_POUND] = ACTIONS(113), + [1726] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5485), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(5099), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3964), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4759), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1726), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5221), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5223), + [anon_sym_DOT_DOT_LT] = ACTIONS(5223), + [anon_sym_null] = ACTIONS(5225), + [anon_sym_true] = ACTIONS(5227), + [anon_sym_false] = ACTIONS(5227), + [aux_sym__val_number_decimal_token1] = ACTIONS(5229), + [aux_sym__val_number_decimal_token2] = ACTIONS(5231), + [anon_sym_DOT2] = ACTIONS(5233), + [aux_sym__val_number_decimal_token3] = ACTIONS(5235), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5237), + [aux_sym__val_number_token5] = ACTIONS(5237), + [aux_sym__val_number_token6] = ACTIONS(5237), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5239), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), }, - [1527] = { - [sym_cell_path] = STATE(2356), - [sym_path] = STATE(1517), - [sym_comment] = STATE(1527), - [ts_builtin_sym_end] = ACTIONS(1156), - [anon_sym_export] = ACTIONS(1154), - [anon_sym_alias] = ACTIONS(1154), - [anon_sym_let] = ACTIONS(1154), - [anon_sym_let_DASHenv] = ACTIONS(1154), - [anon_sym_mut] = ACTIONS(1154), - [anon_sym_const] = ACTIONS(1154), - [anon_sym_SEMI] = ACTIONS(1154), - [sym_cmd_identifier] = ACTIONS(1154), - [anon_sym_LF] = ACTIONS(1156), - [anon_sym_def] = ACTIONS(1154), - [anon_sym_export_DASHenv] = ACTIONS(1154), - [anon_sym_extern] = ACTIONS(1154), - [anon_sym_module] = ACTIONS(1154), - [anon_sym_use] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_DOLLAR] = ACTIONS(1154), - [anon_sym_error] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [anon_sym_DASH] = ACTIONS(1154), - [anon_sym_break] = ACTIONS(1154), - [anon_sym_continue] = ACTIONS(1154), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_loop] = ACTIONS(1154), - [anon_sym_while] = ACTIONS(1154), - [anon_sym_do] = ACTIONS(1154), - [anon_sym_if] = ACTIONS(1154), - [anon_sym_match] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(1154), - [anon_sym_DOT_DOT] = ACTIONS(1154), - [anon_sym_try] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(1154), - [anon_sym_source] = ACTIONS(1154), - [anon_sym_source_DASHenv] = ACTIONS(1154), - [anon_sym_register] = ACTIONS(1154), - [anon_sym_hide] = ACTIONS(1154), - [anon_sym_hide_DASHenv] = ACTIONS(1154), - [anon_sym_overlay] = ACTIONS(1154), - [anon_sym_as] = ACTIONS(1154), - [anon_sym_where] = ACTIONS(1154), - [anon_sym_not] = ACTIONS(1154), - [anon_sym_DOT] = ACTIONS(4629), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1154), - [anon_sym_DOT_DOT_LT] = ACTIONS(1154), - [anon_sym_null] = ACTIONS(1154), - [anon_sym_true] = ACTIONS(1154), - [anon_sym_false] = ACTIONS(1154), - [aux_sym__val_number_decimal_token1] = ACTIONS(1154), - [aux_sym__val_number_decimal_token2] = ACTIONS(1154), - [anon_sym_DOT2] = ACTIONS(1154), - [aux_sym__val_number_decimal_token3] = ACTIONS(1154), - [aux_sym__val_number_token1] = ACTIONS(1154), - [aux_sym__val_number_token2] = ACTIONS(1154), - [aux_sym__val_number_token3] = ACTIONS(1154), - [aux_sym__val_number_token4] = ACTIONS(1154), - [aux_sym__val_number_token5] = ACTIONS(1154), - [aux_sym__val_number_token6] = ACTIONS(1154), - [anon_sym_0b] = ACTIONS(1154), - [anon_sym_0o] = ACTIONS(1154), - [anon_sym_0x] = ACTIONS(1154), - [sym_val_date] = ACTIONS(1154), - [anon_sym_DQUOTE] = ACTIONS(1154), - [sym__str_single_quotes] = ACTIONS(1154), - [sym__str_back_ticks] = ACTIONS(1154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1154), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1154), - [anon_sym_CARET] = ACTIONS(1154), - [anon_sym_POUND] = ACTIONS(113), + [1727] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5486), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(5099), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3964), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4760), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1727), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5221), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5223), + [anon_sym_DOT_DOT_LT] = ACTIONS(5223), + [anon_sym_null] = ACTIONS(5225), + [anon_sym_true] = ACTIONS(5227), + [anon_sym_false] = ACTIONS(5227), + [aux_sym__val_number_decimal_token1] = ACTIONS(5229), + [aux_sym__val_number_decimal_token2] = ACTIONS(5231), + [anon_sym_DOT2] = ACTIONS(5233), + [aux_sym__val_number_decimal_token3] = ACTIONS(5235), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5237), + [aux_sym__val_number_token5] = ACTIONS(5237), + [aux_sym__val_number_token6] = ACTIONS(5237), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5239), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), }, - [1528] = { - [sym_comment] = STATE(1528), - [ts_builtin_sym_end] = ACTIONS(1160), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_alias] = ACTIONS(1158), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_let_DASHenv] = ACTIONS(1158), - [anon_sym_mut] = ACTIONS(1158), - [anon_sym_const] = ACTIONS(1158), - [anon_sym_SEMI] = ACTIONS(1158), - [sym_cmd_identifier] = ACTIONS(1158), - [anon_sym_LF] = ACTIONS(1160), - [anon_sym_def] = ACTIONS(1158), - [anon_sym_export_DASHenv] = ACTIONS(1158), - [anon_sym_extern] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_use] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_LPAREN] = ACTIONS(1158), - [anon_sym_DOLLAR] = ACTIONS(1158), - [anon_sym_error] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_break] = ACTIONS(1158), - [anon_sym_continue] = ACTIONS(1158), - [anon_sym_for] = ACTIONS(1158), - [anon_sym_loop] = ACTIONS(1158), - [anon_sym_while] = ACTIONS(1158), - [anon_sym_do] = ACTIONS(1158), - [anon_sym_if] = ACTIONS(1158), - [anon_sym_match] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1158), - [anon_sym_DOT_DOT] = ACTIONS(1158), - [anon_sym_try] = ACTIONS(1158), - [anon_sym_return] = ACTIONS(1158), - [anon_sym_source] = ACTIONS(1158), - [anon_sym_source_DASHenv] = ACTIONS(1158), - [anon_sym_register] = ACTIONS(1158), - [anon_sym_hide] = ACTIONS(1158), - [anon_sym_hide_DASHenv] = ACTIONS(1158), - [anon_sym_overlay] = ACTIONS(1158), - [anon_sym_as] = ACTIONS(1158), - [anon_sym_where] = ACTIONS(1158), - [anon_sym_not] = ACTIONS(1158), - [anon_sym_DOT_DOT2] = ACTIONS(1228), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1158), - [anon_sym_DOT_DOT_LT] = ACTIONS(1158), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1230), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1230), - [anon_sym_null] = ACTIONS(1158), - [anon_sym_true] = ACTIONS(1158), - [anon_sym_false] = ACTIONS(1158), - [aux_sym__val_number_decimal_token1] = ACTIONS(1158), - [aux_sym__val_number_decimal_token2] = ACTIONS(1158), - [anon_sym_DOT2] = ACTIONS(1158), - [aux_sym__val_number_decimal_token3] = ACTIONS(1158), - [aux_sym__val_number_token1] = ACTIONS(1158), - [aux_sym__val_number_token2] = ACTIONS(1158), - [aux_sym__val_number_token3] = ACTIONS(1158), - [aux_sym__val_number_token4] = ACTIONS(1158), - [aux_sym__val_number_token5] = ACTIONS(1158), - [aux_sym__val_number_token6] = ACTIONS(1158), - [anon_sym_0b] = ACTIONS(1158), - [anon_sym_0o] = ACTIONS(1158), - [anon_sym_0x] = ACTIONS(1158), - [sym_val_date] = ACTIONS(1158), - [anon_sym_DQUOTE] = ACTIONS(1158), - [sym__str_single_quotes] = ACTIONS(1158), - [sym__str_back_ticks] = ACTIONS(1158), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1158), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1158), - [anon_sym_CARET] = ACTIONS(1158), + [1728] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5487), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(5099), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3964), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4761), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1728), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5221), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5223), + [anon_sym_DOT_DOT_LT] = ACTIONS(5223), + [anon_sym_null] = ACTIONS(5225), + [anon_sym_true] = ACTIONS(5227), + [anon_sym_false] = ACTIONS(5227), + [aux_sym__val_number_decimal_token1] = ACTIONS(5229), + [aux_sym__val_number_decimal_token2] = ACTIONS(5231), + [anon_sym_DOT2] = ACTIONS(5233), + [aux_sym__val_number_decimal_token3] = ACTIONS(5235), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5237), + [aux_sym__val_number_token5] = ACTIONS(5237), + [aux_sym__val_number_token6] = ACTIONS(5237), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5239), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), + }, + [1729] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6339), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6234), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4982), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5601), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1729), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(5035), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4787), + [anon_sym_DOT_DOT_LT] = ACTIONS(4787), + [anon_sym_null] = ACTIONS(3669), + [anon_sym_true] = ACTIONS(3671), + [anon_sym_false] = ACTIONS(3671), + [aux_sym__val_number_decimal_token1] = ACTIONS(3673), + [aux_sym__val_number_decimal_token2] = ACTIONS(3675), + [anon_sym_DOT2] = ACTIONS(5037), + [aux_sym__val_number_decimal_token3] = ACTIONS(3679), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(3681), + [aux_sym__val_number_token5] = ACTIONS(3681), + [aux_sym__val_number_token6] = ACTIONS(3681), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(3683), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), + [anon_sym_POUND] = ACTIONS(3), + }, + [1730] = { + [sym_comment] = STATE(1730), + [anon_sym_export] = ACTIONS(5241), + [anon_sym_alias] = ACTIONS(5241), + [anon_sym_let] = ACTIONS(5241), + [anon_sym_let_DASHenv] = ACTIONS(5241), + [anon_sym_mut] = ACTIONS(5241), + [anon_sym_const] = ACTIONS(5241), + [anon_sym_SEMI] = ACTIONS(5241), + [sym_cmd_identifier] = ACTIONS(5241), + [anon_sym_LF] = ACTIONS(5243), + [anon_sym_def] = ACTIONS(5241), + [anon_sym_export_DASHenv] = ACTIONS(5241), + [anon_sym_extern] = ACTIONS(5241), + [anon_sym_module] = ACTIONS(5241), + [anon_sym_use] = ACTIONS(5241), + [anon_sym_LBRACK] = ACTIONS(5241), + [anon_sym_LPAREN] = ACTIONS(5241), + [anon_sym_RPAREN] = ACTIONS(5241), + [anon_sym_DOLLAR] = ACTIONS(5241), + [anon_sym_error] = ACTIONS(5241), + [anon_sym_DASH_DASH] = ACTIONS(5241), + [anon_sym_DASH] = ACTIONS(5241), + [anon_sym_break] = ACTIONS(5241), + [anon_sym_continue] = ACTIONS(5241), + [anon_sym_for] = ACTIONS(5241), + [anon_sym_loop] = ACTIONS(5241), + [anon_sym_while] = ACTIONS(5241), + [anon_sym_do] = ACTIONS(5241), + [anon_sym_if] = ACTIONS(5241), + [anon_sym_match] = ACTIONS(5241), + [anon_sym_LBRACE] = ACTIONS(5241), + [anon_sym_RBRACE] = ACTIONS(5241), + [anon_sym_DOT_DOT] = ACTIONS(5241), + [anon_sym_try] = ACTIONS(5241), + [anon_sym_return] = ACTIONS(5241), + [anon_sym_source] = ACTIONS(5241), + [anon_sym_source_DASHenv] = ACTIONS(5241), + [anon_sym_register] = ACTIONS(5241), + [anon_sym_hide] = ACTIONS(5241), + [anon_sym_hide_DASHenv] = ACTIONS(5241), + [anon_sym_overlay] = ACTIONS(5241), + [anon_sym_as] = ACTIONS(5241), + [anon_sym_where] = ACTIONS(5241), + [anon_sym_not] = ACTIONS(5241), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5241), + [anon_sym_DOT_DOT_LT] = ACTIONS(5241), + [anon_sym_null] = ACTIONS(5241), + [anon_sym_true] = ACTIONS(5241), + [anon_sym_false] = ACTIONS(5241), + [aux_sym__val_number_decimal_token1] = ACTIONS(5241), + [aux_sym__val_number_decimal_token2] = ACTIONS(5241), + [anon_sym_DOT2] = ACTIONS(5241), + [aux_sym__val_number_decimal_token3] = ACTIONS(5241), + [aux_sym__val_number_token1] = ACTIONS(5241), + [aux_sym__val_number_token2] = ACTIONS(5241), + [aux_sym__val_number_token3] = ACTIONS(5241), + [aux_sym__val_number_token4] = ACTIONS(5241), + [aux_sym__val_number_token5] = ACTIONS(5241), + [aux_sym__val_number_token6] = ACTIONS(5241), + [anon_sym_0b] = ACTIONS(5241), + [anon_sym_0o] = ACTIONS(5241), + [anon_sym_0x] = ACTIONS(5241), + [sym_val_date] = ACTIONS(5241), + [anon_sym_DQUOTE] = ACTIONS(5241), + [sym__str_single_quotes] = ACTIONS(5241), + [sym__str_back_ticks] = ACTIONS(5241), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5241), + [anon_sym_CARET] = ACTIONS(5241), [anon_sym_POUND] = ACTIONS(113), }, - [1529] = { - [sym_comment] = STATE(1529), - [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), - [anon_sym_SEMI] = ACTIONS(2437), - [sym_cmd_identifier] = ACTIONS(2437), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_RPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_DASH_DASH] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_RBRACE] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_as] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_not] = ACTIONS(2437), - [anon_sym_DOT] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [anon_sym_DOT2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2437), - [anon_sym_0o] = ACTIONS(2437), - [anon_sym_0x] = ACTIONS(2437), - [sym_val_date] = 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_CARET] = ACTIONS(2437), - [aux_sym_unquoted_token2] = ACTIONS(2437), + [1731] = { + [sym_comment] = STATE(1731), + [anon_sym_export] = ACTIONS(5245), + [anon_sym_alias] = ACTIONS(5245), + [anon_sym_let] = ACTIONS(5245), + [anon_sym_let_DASHenv] = ACTIONS(5245), + [anon_sym_mut] = ACTIONS(5245), + [anon_sym_const] = ACTIONS(5245), + [anon_sym_SEMI] = ACTIONS(5245), + [sym_cmd_identifier] = ACTIONS(5245), + [anon_sym_LF] = ACTIONS(5247), + [anon_sym_def] = ACTIONS(5245), + [anon_sym_export_DASHenv] = ACTIONS(5245), + [anon_sym_extern] = ACTIONS(5245), + [anon_sym_module] = ACTIONS(5245), + [anon_sym_use] = ACTIONS(5245), + [anon_sym_LBRACK] = ACTIONS(5245), + [anon_sym_LPAREN] = ACTIONS(5245), + [anon_sym_RPAREN] = ACTIONS(5245), + [anon_sym_DOLLAR] = ACTIONS(5245), + [anon_sym_error] = ACTIONS(5245), + [anon_sym_DASH_DASH] = ACTIONS(5245), + [anon_sym_DASH] = ACTIONS(5245), + [anon_sym_break] = ACTIONS(5245), + [anon_sym_continue] = ACTIONS(5245), + [anon_sym_for] = ACTIONS(5245), + [anon_sym_loop] = ACTIONS(5245), + [anon_sym_while] = ACTIONS(5245), + [anon_sym_do] = ACTIONS(5245), + [anon_sym_if] = ACTIONS(5245), + [anon_sym_match] = ACTIONS(5245), + [anon_sym_LBRACE] = ACTIONS(5245), + [anon_sym_RBRACE] = ACTIONS(5245), + [anon_sym_DOT_DOT] = ACTIONS(5245), + [anon_sym_try] = ACTIONS(5245), + [anon_sym_return] = ACTIONS(5245), + [anon_sym_source] = ACTIONS(5245), + [anon_sym_source_DASHenv] = ACTIONS(5245), + [anon_sym_register] = ACTIONS(5245), + [anon_sym_hide] = ACTIONS(5245), + [anon_sym_hide_DASHenv] = ACTIONS(5245), + [anon_sym_overlay] = ACTIONS(5245), + [anon_sym_as] = ACTIONS(5245), + [anon_sym_where] = ACTIONS(5245), + [anon_sym_not] = ACTIONS(5245), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5245), + [anon_sym_DOT_DOT_LT] = ACTIONS(5245), + [anon_sym_null] = ACTIONS(5245), + [anon_sym_true] = ACTIONS(5245), + [anon_sym_false] = ACTIONS(5245), + [aux_sym__val_number_decimal_token1] = ACTIONS(5245), + [aux_sym__val_number_decimal_token2] = ACTIONS(5245), + [anon_sym_DOT2] = ACTIONS(5245), + [aux_sym__val_number_decimal_token3] = ACTIONS(5245), + [aux_sym__val_number_token1] = ACTIONS(5245), + [aux_sym__val_number_token2] = ACTIONS(5245), + [aux_sym__val_number_token3] = ACTIONS(5245), + [aux_sym__val_number_token4] = ACTIONS(5245), + [aux_sym__val_number_token5] = ACTIONS(5245), + [aux_sym__val_number_token6] = ACTIONS(5245), + [anon_sym_0b] = ACTIONS(5245), + [anon_sym_0o] = ACTIONS(5245), + [anon_sym_0x] = ACTIONS(5245), + [sym_val_date] = ACTIONS(5245), + [anon_sym_DQUOTE] = ACTIONS(5245), + [sym__str_single_quotes] = ACTIONS(5245), + [sym__str_back_ticks] = ACTIONS(5245), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5245), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5245), + [anon_sym_CARET] = ACTIONS(5245), [anon_sym_POUND] = ACTIONS(113), }, - [1530] = { - [sym__expression] = STATE(9484), - [sym_expr_unary] = STATE(6664), - [sym__expr_unary_minus] = STATE(6665), - [sym_expr_binary] = STATE(6664), - [sym__expr_binary_expression] = STATE(6803), - [sym_expr_parenthesized] = STATE(6251), - [sym_val_range] = STATE(7168), - [sym__val_range] = STATE(10610), - [sym__value] = STATE(6664), - [sym_val_nothing] = STATE(6724), - [sym_val_bool] = STATE(6425), - [sym_val_variable] = STATE(6210), - [sym__var] = STATE(5438), - [sym_val_number] = STATE(6724), - [sym__val_number_decimal] = STATE(4979), - [sym__val_number] = STATE(6672), - [sym_val_duration] = STATE(6724), - [sym_val_filesize] = STATE(6724), - [sym_val_binary] = STATE(6724), - [sym_val_string] = STATE(6724), - [sym__str_double_quotes] = STATE(6725), - [sym_val_interpolated] = STATE(6724), - [sym__inter_single_quotes] = STATE(6738), - [sym__inter_double_quotes] = STATE(6652), - [sym_val_list] = STATE(6724), - [sym_val_record] = STATE(6724), - [sym_val_table] = STATE(6724), - [sym_val_closure] = STATE(6724), - [sym_unquoted] = STATE(9485), - [sym__unquoted_anonymous_prefix] = STATE(11188), - [sym_comment] = STATE(1530), - [anon_sym_LBRACK] = ACTIONS(4692), - [anon_sym_LPAREN] = ACTIONS(4694), - [anon_sym_DOLLAR] = ACTIONS(4696), - [anon_sym_DASH] = ACTIONS(4698), - [anon_sym_LBRACE] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4702), - [anon_sym_not] = ACTIONS(4704), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4706), - [anon_sym_DOT_DOT_LT] = ACTIONS(4706), - [anon_sym_null] = ACTIONS(4708), - [anon_sym_true] = ACTIONS(4710), - [anon_sym_false] = ACTIONS(4710), - [aux_sym__val_number_decimal_token1] = ACTIONS(4712), - [aux_sym__val_number_decimal_token2] = ACTIONS(4714), - [anon_sym_DOT2] = ACTIONS(4716), - [aux_sym__val_number_decimal_token3] = ACTIONS(4718), - [aux_sym__val_number_token1] = ACTIONS(4720), - [aux_sym__val_number_token2] = ACTIONS(4720), - [aux_sym__val_number_token3] = ACTIONS(4720), - [aux_sym__val_number_token4] = ACTIONS(4722), - [aux_sym__val_number_token5] = ACTIONS(4722), - [aux_sym__val_number_token6] = ACTIONS(4722), - [anon_sym_0b] = ACTIONS(4724), - [anon_sym_0o] = ACTIONS(4726), - [anon_sym_0x] = ACTIONS(4726), - [sym_val_date] = ACTIONS(4728), - [anon_sym_DQUOTE] = ACTIONS(4730), - [sym__str_single_quotes] = ACTIONS(4732), - [sym__str_back_ticks] = ACTIONS(4732), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4734), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4736), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2901), + [1732] = { + [sym_expr_unary] = STATE(5794), + [sym__expr_unary_minus] = STATE(5745), + [sym_expr_binary] = STATE(5794), + [sym__expr_binary_expression] = STATE(6340), + [sym_expr_parenthesized] = STATE(5794), + [sym__val_range] = STATE(10105), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5659), + [sym_val_bool] = STATE(6234), + [sym_val_variable] = STATE(5659), + [sym__var] = STATE(4470), + [sym_val_number] = STATE(5659), + [sym__val_number_decimal] = STATE(4982), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(5659), + [sym_val_filesize] = STATE(5659), + [sym_val_binary] = STATE(5659), + [sym_val_string] = STATE(5659), + [sym__str_double_quotes] = STATE(5067), + [sym_val_interpolated] = STATE(5659), + [sym__inter_single_quotes] = STATE(5725), + [sym__inter_double_quotes] = STATE(5726), + [sym_val_list] = STATE(5659), + [sym_val_record] = STATE(5659), + [sym_val_table] = STATE(5659), + [sym_val_closure] = STATE(5659), + [sym_unquoted] = STATE(5604), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(1732), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(5035), + [anon_sym_not] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4787), + [anon_sym_DOT_DOT_LT] = ACTIONS(4787), + [anon_sym_null] = ACTIONS(3669), + [anon_sym_true] = ACTIONS(3671), + [anon_sym_false] = ACTIONS(3671), + [aux_sym__val_number_decimal_token1] = ACTIONS(3673), + [aux_sym__val_number_decimal_token2] = ACTIONS(3675), + [anon_sym_DOT2] = ACTIONS(5037), + [aux_sym__val_number_decimal_token3] = ACTIONS(3679), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(3681), + [aux_sym__val_number_token5] = ACTIONS(3681), + [aux_sym__val_number_token6] = ACTIONS(3681), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(3683), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3136), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), [anon_sym_POUND] = ACTIONS(3), }, - [1531] = { - [sym_comment] = STATE(1531), - [ts_builtin_sym_end] = ACTIONS(1174), - [anon_sym_export] = ACTIONS(1172), - [anon_sym_alias] = ACTIONS(1172), - [anon_sym_let] = ACTIONS(1172), - [anon_sym_let_DASHenv] = ACTIONS(1172), - [anon_sym_mut] = ACTIONS(1172), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(1172), - [sym_cmd_identifier] = ACTIONS(1172), - [anon_sym_LF] = ACTIONS(1174), - [anon_sym_def] = ACTIONS(1172), - [anon_sym_export_DASHenv] = ACTIONS(1172), - [anon_sym_extern] = ACTIONS(1172), - [anon_sym_module] = ACTIONS(1172), - [anon_sym_use] = ACTIONS(1172), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_LPAREN] = ACTIONS(1172), - [anon_sym_DOLLAR] = ACTIONS(1172), - [anon_sym_error] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_DASH] = ACTIONS(1172), - [anon_sym_break] = ACTIONS(1172), - [anon_sym_continue] = ACTIONS(1172), - [anon_sym_for] = ACTIONS(1172), - [anon_sym_loop] = ACTIONS(1172), - [anon_sym_while] = ACTIONS(1172), - [anon_sym_do] = ACTIONS(1172), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_match] = ACTIONS(1172), - [anon_sym_LBRACE] = ACTIONS(1172), - [anon_sym_DOT_DOT] = ACTIONS(1172), - [anon_sym_try] = ACTIONS(1172), - [anon_sym_return] = ACTIONS(1172), - [anon_sym_source] = ACTIONS(1172), - [anon_sym_source_DASHenv] = ACTIONS(1172), - [anon_sym_register] = ACTIONS(1172), - [anon_sym_hide] = ACTIONS(1172), - [anon_sym_hide_DASHenv] = ACTIONS(1172), - [anon_sym_overlay] = ACTIONS(1172), - [anon_sym_as] = ACTIONS(1172), - [anon_sym_where] = ACTIONS(1172), - [anon_sym_not] = ACTIONS(1172), - [anon_sym_DOT_DOT2] = ACTIONS(1172), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1172), - [anon_sym_DOT_DOT_LT] = ACTIONS(1172), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1174), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1174), - [anon_sym_null] = ACTIONS(1172), - [anon_sym_true] = ACTIONS(1172), - [anon_sym_false] = ACTIONS(1172), - [aux_sym__val_number_decimal_token1] = ACTIONS(1172), - [aux_sym__val_number_decimal_token2] = ACTIONS(1172), - [anon_sym_DOT2] = ACTIONS(1172), - [aux_sym__val_number_decimal_token3] = ACTIONS(1172), - [aux_sym__val_number_token1] = ACTIONS(1172), - [aux_sym__val_number_token2] = ACTIONS(1172), - [aux_sym__val_number_token3] = ACTIONS(1172), - [aux_sym__val_number_token4] = ACTIONS(1172), - [aux_sym__val_number_token5] = ACTIONS(1172), - [aux_sym__val_number_token6] = ACTIONS(1172), - [anon_sym_0b] = ACTIONS(1172), - [anon_sym_0o] = ACTIONS(1172), - [anon_sym_0x] = ACTIONS(1172), - [sym_val_date] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(1172), - [sym__str_single_quotes] = ACTIONS(1172), - [sym__str_back_ticks] = ACTIONS(1172), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1172), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1172), - [anon_sym_CARET] = ACTIONS(1172), - [anon_sym_POUND] = ACTIONS(113), + [1733] = { + [sym_expr_unary] = STATE(5749), + [sym__expr_unary_minus] = STATE(5853), + [sym_expr_binary] = STATE(5749), + [sym__expr_binary_expression] = STATE(5780), + [sym_expr_parenthesized] = STATE(5749), + [sym__val_range] = STATE(10177), + [sym__value] = STATE(5749), + [sym_val_nothing] = STATE(5750), + [sym_val_bool] = STATE(5489), + [sym_val_variable] = STATE(5750), + [sym__var] = STATE(4999), + [sym_val_number] = STATE(5750), + [sym__val_number_decimal] = STATE(4168), + [sym__val_number] = STATE(5565), + [sym_val_duration] = STATE(5750), + [sym_val_filesize] = STATE(5750), + [sym_val_binary] = STATE(5750), + [sym_val_string] = STATE(5750), + [sym__str_double_quotes] = STATE(5570), + [sym_val_interpolated] = STATE(5750), + [sym__inter_single_quotes] = STATE(5595), + [sym__inter_double_quotes] = STATE(5600), + [sym_val_list] = STATE(5750), + [sym_val_record] = STATE(5750), + [sym_val_table] = STATE(5750), + [sym_val_closure] = STATE(5750), + [sym_unquoted] = STATE(5843), + [sym__unquoted_anonymous_prefix] = STATE(10738), + [sym_comment] = STATE(1733), + [anon_sym_LBRACK] = ACTIONS(4048), + [anon_sym_LPAREN] = ACTIONS(5249), + [anon_sym_DOLLAR] = ACTIONS(5251), + [anon_sym_DASH] = ACTIONS(4054), + [anon_sym_LBRACE] = ACTIONS(4056), + [anon_sym_DOT_DOT] = ACTIONS(5253), + [anon_sym_not] = ACTIONS(4060), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5255), + [anon_sym_DOT_DOT_LT] = ACTIONS(5255), + [anon_sym_null] = ACTIONS(4064), + [anon_sym_true] = ACTIONS(4066), + [anon_sym_false] = ACTIONS(4066), + [aux_sym__val_number_decimal_token1] = ACTIONS(4068), + [aux_sym__val_number_decimal_token2] = ACTIONS(4070), + [anon_sym_DOT2] = ACTIONS(5257), + [aux_sym__val_number_decimal_token3] = ACTIONS(4074), + [aux_sym__val_number_token1] = ACTIONS(4076), + [aux_sym__val_number_token2] = ACTIONS(4076), + [aux_sym__val_number_token3] = ACTIONS(4076), + [aux_sym__val_number_token4] = ACTIONS(5259), + [aux_sym__val_number_token5] = ACTIONS(5259), + [aux_sym__val_number_token6] = ACTIONS(5259), + [anon_sym_0b] = ACTIONS(4080), + [anon_sym_0o] = ACTIONS(4082), + [anon_sym_0x] = ACTIONS(4082), + [sym_val_date] = ACTIONS(4084), + [anon_sym_DQUOTE] = ACTIONS(4086), + [sym__str_single_quotes] = ACTIONS(4088), + [sym__str_back_ticks] = ACTIONS(4088), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4092), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5261), + [anon_sym_POUND] = ACTIONS(3), }, - [1532] = { - [sym_comment] = STATE(1532), - [anon_sym_export] = ACTIONS(2547), - [anon_sym_alias] = ACTIONS(2547), - [anon_sym_let] = ACTIONS(2547), - [anon_sym_let_DASHenv] = ACTIONS(2547), - [anon_sym_mut] = ACTIONS(2547), - [anon_sym_const] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [sym_cmd_identifier] = ACTIONS(2547), - [anon_sym_LF] = ACTIONS(2549), - [anon_sym_def] = ACTIONS(2547), - [anon_sym_export_DASHenv] = ACTIONS(2547), - [anon_sym_extern] = ACTIONS(2547), - [anon_sym_module] = ACTIONS(2547), - [anon_sym_use] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_RPAREN] = ACTIONS(2547), - [anon_sym_DOLLAR] = ACTIONS(2547), - [anon_sym_error] = ACTIONS(2547), - [anon_sym_DASH_DASH] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_break] = ACTIONS(2547), - [anon_sym_continue] = ACTIONS(2547), - [anon_sym_for] = ACTIONS(2547), - [anon_sym_loop] = ACTIONS(2547), - [anon_sym_while] = ACTIONS(2547), - [anon_sym_do] = ACTIONS(2547), - [anon_sym_if] = ACTIONS(2547), - [anon_sym_match] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2547), - [anon_sym_RBRACE] = ACTIONS(2547), - [anon_sym_DOT_DOT] = ACTIONS(2547), - [anon_sym_try] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2547), - [anon_sym_source] = ACTIONS(2547), - [anon_sym_source_DASHenv] = ACTIONS(2547), - [anon_sym_register] = ACTIONS(2547), - [anon_sym_hide] = ACTIONS(2547), - [anon_sym_hide_DASHenv] = ACTIONS(2547), - [anon_sym_overlay] = ACTIONS(2547), - [anon_sym_as] = ACTIONS(2547), - [anon_sym_where] = ACTIONS(2547), - [anon_sym_not] = ACTIONS(2547), - [anon_sym_DOT] = ACTIONS(2547), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), - [anon_sym_DOT_DOT_LT] = ACTIONS(2547), - [anon_sym_null] = ACTIONS(2547), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [aux_sym__val_number_decimal_token1] = ACTIONS(2547), - [aux_sym__val_number_decimal_token2] = ACTIONS(2547), - [anon_sym_DOT2] = ACTIONS(2547), - [aux_sym__val_number_decimal_token3] = ACTIONS(2547), - [aux_sym__val_number_token1] = ACTIONS(2547), - [aux_sym__val_number_token2] = ACTIONS(2547), - [aux_sym__val_number_token3] = ACTIONS(2547), - [aux_sym__val_number_token4] = ACTIONS(2547), - [aux_sym__val_number_token5] = ACTIONS(2547), - [aux_sym__val_number_token6] = ACTIONS(2547), - [anon_sym_0b] = ACTIONS(2547), - [anon_sym_0o] = ACTIONS(2547), - [anon_sym_0x] = ACTIONS(2547), - [sym_val_date] = ACTIONS(2547), - [anon_sym_DQUOTE] = ACTIONS(2547), - [sym__str_single_quotes] = ACTIONS(2547), - [sym__str_back_ticks] = ACTIONS(2547), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2547), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2547), - [aux_sym_unquoted_token2] = ACTIONS(2547), - [anon_sym_POUND] = ACTIONS(113), + [1734] = { + [sym_expr_unary] = STATE(5749), + [sym__expr_unary_minus] = STATE(5853), + [sym_expr_binary] = STATE(5749), + [sym__expr_binary_expression] = STATE(5791), + [sym_expr_parenthesized] = STATE(5749), + [sym__val_range] = STATE(10177), + [sym__value] = STATE(5749), + [sym_val_nothing] = STATE(5750), + [sym_val_bool] = STATE(5489), + [sym_val_variable] = STATE(5750), + [sym__var] = STATE(4999), + [sym_val_number] = STATE(5750), + [sym__val_number_decimal] = STATE(4168), + [sym__val_number] = STATE(5565), + [sym_val_duration] = STATE(5750), + [sym_val_filesize] = STATE(5750), + [sym_val_binary] = STATE(5750), + [sym_val_string] = STATE(5750), + [sym__str_double_quotes] = STATE(5570), + [sym_val_interpolated] = STATE(5750), + [sym__inter_single_quotes] = STATE(5595), + [sym__inter_double_quotes] = STATE(5600), + [sym_val_list] = STATE(5750), + [sym_val_record] = STATE(5750), + [sym_val_table] = STATE(5750), + [sym_val_closure] = STATE(5750), + [sym_unquoted] = STATE(5861), + [sym__unquoted_anonymous_prefix] = STATE(10738), + [sym_comment] = STATE(1734), + [anon_sym_LBRACK] = ACTIONS(4048), + [anon_sym_LPAREN] = ACTIONS(5249), + [anon_sym_DOLLAR] = ACTIONS(5251), + [anon_sym_DASH] = ACTIONS(4054), + [anon_sym_LBRACE] = ACTIONS(4056), + [anon_sym_DOT_DOT] = ACTIONS(5253), + [anon_sym_not] = ACTIONS(4060), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5255), + [anon_sym_DOT_DOT_LT] = ACTIONS(5255), + [anon_sym_null] = ACTIONS(4064), + [anon_sym_true] = ACTIONS(4066), + [anon_sym_false] = ACTIONS(4066), + [aux_sym__val_number_decimal_token1] = ACTIONS(4068), + [aux_sym__val_number_decimal_token2] = ACTIONS(4070), + [anon_sym_DOT2] = ACTIONS(5257), + [aux_sym__val_number_decimal_token3] = ACTIONS(4074), + [aux_sym__val_number_token1] = ACTIONS(4076), + [aux_sym__val_number_token2] = ACTIONS(4076), + [aux_sym__val_number_token3] = ACTIONS(4076), + [aux_sym__val_number_token4] = ACTIONS(5259), + [aux_sym__val_number_token5] = ACTIONS(5259), + [aux_sym__val_number_token6] = ACTIONS(5259), + [anon_sym_0b] = ACTIONS(4080), + [anon_sym_0o] = ACTIONS(4082), + [anon_sym_0x] = ACTIONS(4082), + [sym_val_date] = ACTIONS(4084), + [anon_sym_DQUOTE] = ACTIONS(4086), + [sym__str_single_quotes] = ACTIONS(4088), + [sym__str_back_ticks] = ACTIONS(4088), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4092), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5261), + [anon_sym_POUND] = ACTIONS(3), }, - [1533] = { - [sym_path] = STATE(1937), - [sym_comment] = STATE(1533), - [aux_sym_cell_path_repeat1] = STATE(1533), - [ts_builtin_sym_end] = ACTIONS(1001), - [anon_sym_export] = ACTIONS(999), - [anon_sym_alias] = ACTIONS(999), - [anon_sym_let] = ACTIONS(999), - [anon_sym_let_DASHenv] = ACTIONS(999), - [anon_sym_mut] = ACTIONS(999), - [anon_sym_const] = ACTIONS(999), - [anon_sym_SEMI] = ACTIONS(999), - [sym_cmd_identifier] = ACTIONS(999), - [anon_sym_LF] = ACTIONS(1001), - [anon_sym_def] = ACTIONS(999), - [anon_sym_export_DASHenv] = ACTIONS(999), - [anon_sym_extern] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_use] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_error] = ACTIONS(999), - [anon_sym_DASH_DASH] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_break] = ACTIONS(999), - [anon_sym_continue] = ACTIONS(999), - [anon_sym_for] = ACTIONS(999), - [anon_sym_loop] = ACTIONS(999), - [anon_sym_while] = ACTIONS(999), - [anon_sym_do] = ACTIONS(999), - [anon_sym_if] = ACTIONS(999), - [anon_sym_match] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(999), - [anon_sym_DOT_DOT] = ACTIONS(999), - [anon_sym_try] = ACTIONS(999), - [anon_sym_return] = ACTIONS(999), - [anon_sym_source] = ACTIONS(999), - [anon_sym_source_DASHenv] = ACTIONS(999), - [anon_sym_register] = ACTIONS(999), - [anon_sym_hide] = ACTIONS(999), - [anon_sym_hide_DASHenv] = ACTIONS(999), - [anon_sym_overlay] = ACTIONS(999), - [anon_sym_as] = ACTIONS(999), - [anon_sym_where] = ACTIONS(999), - [anon_sym_not] = ACTIONS(999), - [anon_sym_DOT] = ACTIONS(4738), - [anon_sym_DOT_DOT_EQ] = ACTIONS(999), - [anon_sym_DOT_DOT_LT] = ACTIONS(999), - [anon_sym_null] = ACTIONS(999), - [anon_sym_true] = ACTIONS(999), - [anon_sym_false] = ACTIONS(999), - [aux_sym__val_number_decimal_token1] = ACTIONS(999), - [aux_sym__val_number_decimal_token2] = ACTIONS(999), - [anon_sym_DOT2] = ACTIONS(999), - [aux_sym__val_number_decimal_token3] = ACTIONS(999), - [aux_sym__val_number_token1] = ACTIONS(999), - [aux_sym__val_number_token2] = ACTIONS(999), - [aux_sym__val_number_token3] = ACTIONS(999), - [aux_sym__val_number_token4] = ACTIONS(999), - [aux_sym__val_number_token5] = ACTIONS(999), - [aux_sym__val_number_token6] = ACTIONS(999), - [anon_sym_0b] = ACTIONS(999), - [anon_sym_0o] = ACTIONS(999), - [anon_sym_0x] = ACTIONS(999), - [sym_val_date] = ACTIONS(999), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym__str_single_quotes] = ACTIONS(999), - [sym__str_back_ticks] = ACTIONS(999), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(999), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(999), - [anon_sym_CARET] = ACTIONS(999), - [anon_sym_POUND] = ACTIONS(113), + [1735] = { + [sym_expr_unary] = STATE(5749), + [sym__expr_unary_minus] = STATE(5853), + [sym_expr_binary] = STATE(5749), + [sym__expr_binary_expression] = STATE(5792), + [sym_expr_parenthesized] = STATE(5749), + [sym__val_range] = STATE(10177), + [sym__value] = STATE(5749), + [sym_val_nothing] = STATE(5750), + [sym_val_bool] = STATE(5489), + [sym_val_variable] = STATE(5750), + [sym__var] = STATE(4999), + [sym_val_number] = STATE(5750), + [sym__val_number_decimal] = STATE(4168), + [sym__val_number] = STATE(5565), + [sym_val_duration] = STATE(5750), + [sym_val_filesize] = STATE(5750), + [sym_val_binary] = STATE(5750), + [sym_val_string] = STATE(5750), + [sym__str_double_quotes] = STATE(5570), + [sym_val_interpolated] = STATE(5750), + [sym__inter_single_quotes] = STATE(5595), + [sym__inter_double_quotes] = STATE(5600), + [sym_val_list] = STATE(5750), + [sym_val_record] = STATE(5750), + [sym_val_table] = STATE(5750), + [sym_val_closure] = STATE(5750), + [sym_unquoted] = STATE(5530), + [sym__unquoted_anonymous_prefix] = STATE(10738), + [sym_comment] = STATE(1735), + [anon_sym_LBRACK] = ACTIONS(4048), + [anon_sym_LPAREN] = ACTIONS(5249), + [anon_sym_DOLLAR] = ACTIONS(5251), + [anon_sym_DASH] = ACTIONS(4054), + [anon_sym_LBRACE] = ACTIONS(4056), + [anon_sym_DOT_DOT] = ACTIONS(5253), + [anon_sym_not] = ACTIONS(4060), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5255), + [anon_sym_DOT_DOT_LT] = ACTIONS(5255), + [anon_sym_null] = ACTIONS(4064), + [anon_sym_true] = ACTIONS(4066), + [anon_sym_false] = ACTIONS(4066), + [aux_sym__val_number_decimal_token1] = ACTIONS(4068), + [aux_sym__val_number_decimal_token2] = ACTIONS(4070), + [anon_sym_DOT2] = ACTIONS(5257), + [aux_sym__val_number_decimal_token3] = ACTIONS(4074), + [aux_sym__val_number_token1] = ACTIONS(4076), + [aux_sym__val_number_token2] = ACTIONS(4076), + [aux_sym__val_number_token3] = ACTIONS(4076), + [aux_sym__val_number_token4] = ACTIONS(5259), + [aux_sym__val_number_token5] = ACTIONS(5259), + [aux_sym__val_number_token6] = ACTIONS(5259), + [anon_sym_0b] = ACTIONS(4080), + [anon_sym_0o] = ACTIONS(4082), + [anon_sym_0x] = ACTIONS(4082), + [sym_val_date] = ACTIONS(4084), + [anon_sym_DQUOTE] = ACTIONS(4086), + [sym__str_single_quotes] = ACTIONS(4088), + [sym__str_back_ticks] = ACTIONS(4088), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4092), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5261), + [anon_sym_POUND] = ACTIONS(3), }, - [1534] = { - [sym__match_pattern_expression] = STATE(4408), - [sym__match_pattern_value] = STATE(4362), - [sym__match_pattern_list] = STATE(4365), - [sym__match_pattern_rest] = STATE(11250), - [sym__match_pattern_record] = STATE(4367), - [sym__expr_unary_minus] = STATE(4368), - [sym_expr_parenthesized] = STATE(3973), - [sym_val_range] = STATE(4362), - [sym__val_range] = STATE(10474), - [sym_val_nothing] = STATE(4371), - [sym_val_bool] = STATE(4248), - [sym_val_variable] = STATE(3974), - [sym__var] = STATE(3741), - [sym_val_number] = STATE(4371), - [sym__val_number_decimal] = STATE(3705), - [sym__val_number] = STATE(4345), - [sym_val_duration] = STATE(4371), - [sym_val_filesize] = STATE(4371), - [sym_val_binary] = STATE(4371), - [sym_val_string] = STATE(4371), - [sym__str_double_quotes] = STATE(4434), - [sym_val_list] = STATE(11350), - [sym__list_item_starts_with_sign] = STATE(4508), - [sym_val_table] = STATE(4371), - [sym_short_flag] = STATE(4508), - [sym_long_flag] = STATE(4508), - [sym_long_flag_equals_value] = STATE(4347), - [sym__unquoted_in_list] = STATE(4508), - [sym__unquoted_anonymous_prefix] = STATE(11104), - [sym_comment] = STATE(1534), - [aux_sym__match_pattern_list_repeat1] = STATE(1599), - [anon_sym_LBRACK] = ACTIONS(4741), - [anon_sym_RBRACK] = ACTIONS(4743), - [anon_sym_LPAREN] = ACTIONS(3399), - [anon_sym_DOLLAR] = ACTIONS(4745), - [anon_sym_DASH_DASH] = ACTIONS(3403), - [anon_sym_DASH] = ACTIONS(4747), - [anon_sym_LBRACE] = ACTIONS(4749), - [anon_sym_DOT_DOT] = ACTIONS(4751), - [anon_sym_PLUS] = ACTIONS(4753), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4755), - [anon_sym_DOT_DOT_LT] = ACTIONS(4755), - [anon_sym_null] = ACTIONS(4757), - [anon_sym_true] = ACTIONS(4759), - [anon_sym_false] = ACTIONS(4759), - [aux_sym__val_number_decimal_token1] = ACTIONS(4761), - [aux_sym__val_number_decimal_token2] = ACTIONS(4763), - [anon_sym_DOT2] = ACTIONS(4765), - [aux_sym__val_number_decimal_token3] = ACTIONS(4767), - [aux_sym__val_number_token1] = ACTIONS(3425), - [aux_sym__val_number_token2] = ACTIONS(3425), - [aux_sym__val_number_token3] = ACTIONS(3425), - [aux_sym__val_number_token4] = ACTIONS(4769), - [aux_sym__val_number_token5] = ACTIONS(4769), - [aux_sym__val_number_token6] = ACTIONS(4769), - [anon_sym_0b] = ACTIONS(3429), - [anon_sym_0o] = ACTIONS(3431), - [anon_sym_0x] = ACTIONS(3431), - [sym_val_date] = ACTIONS(4771), - [anon_sym_DQUOTE] = ACTIONS(3435), - [sym__str_single_quotes] = ACTIONS(3437), - [sym__str_back_ticks] = ACTIONS(3437), - [anon_sym_err_GT] = ACTIONS(1699), - [anon_sym_out_GT] = ACTIONS(1699), - [anon_sym_e_GT] = ACTIONS(1699), - [anon_sym_o_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT] = ACTIONS(1699), - [aux_sym__unquoted_in_list_token1] = ACTIONS(4773), + [1736] = { + [sym_expr_unary] = STATE(5749), + [sym__expr_unary_minus] = STATE(5853), + [sym_expr_binary] = STATE(5749), + [sym__expr_binary_expression] = STATE(5793), + [sym_expr_parenthesized] = STATE(5749), + [sym__val_range] = STATE(10177), + [sym__value] = STATE(5749), + [sym_val_nothing] = STATE(5750), + [sym_val_bool] = STATE(5489), + [sym_val_variable] = STATE(5750), + [sym__var] = STATE(4999), + [sym_val_number] = STATE(5750), + [sym__val_number_decimal] = STATE(4168), + [sym__val_number] = STATE(5565), + [sym_val_duration] = STATE(5750), + [sym_val_filesize] = STATE(5750), + [sym_val_binary] = STATE(5750), + [sym_val_string] = STATE(5750), + [sym__str_double_quotes] = STATE(5570), + [sym_val_interpolated] = STATE(5750), + [sym__inter_single_quotes] = STATE(5595), + [sym__inter_double_quotes] = STATE(5600), + [sym_val_list] = STATE(5750), + [sym_val_record] = STATE(5750), + [sym_val_table] = STATE(5750), + [sym_val_closure] = STATE(5750), + [sym_unquoted] = STATE(5546), + [sym__unquoted_anonymous_prefix] = STATE(10738), + [sym_comment] = STATE(1736), + [anon_sym_LBRACK] = ACTIONS(4048), + [anon_sym_LPAREN] = ACTIONS(5249), + [anon_sym_DOLLAR] = ACTIONS(5251), + [anon_sym_DASH] = ACTIONS(4054), + [anon_sym_LBRACE] = ACTIONS(4056), + [anon_sym_DOT_DOT] = ACTIONS(5253), + [anon_sym_not] = ACTIONS(4060), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5255), + [anon_sym_DOT_DOT_LT] = ACTIONS(5255), + [anon_sym_null] = ACTIONS(4064), + [anon_sym_true] = ACTIONS(4066), + [anon_sym_false] = ACTIONS(4066), + [aux_sym__val_number_decimal_token1] = ACTIONS(4068), + [aux_sym__val_number_decimal_token2] = ACTIONS(4070), + [anon_sym_DOT2] = ACTIONS(5257), + [aux_sym__val_number_decimal_token3] = ACTIONS(4074), + [aux_sym__val_number_token1] = ACTIONS(4076), + [aux_sym__val_number_token2] = ACTIONS(4076), + [aux_sym__val_number_token3] = ACTIONS(4076), + [aux_sym__val_number_token4] = ACTIONS(5259), + [aux_sym__val_number_token5] = ACTIONS(5259), + [aux_sym__val_number_token6] = ACTIONS(5259), + [anon_sym_0b] = ACTIONS(4080), + [anon_sym_0o] = ACTIONS(4082), + [anon_sym_0x] = ACTIONS(4082), + [sym_val_date] = ACTIONS(4084), + [anon_sym_DQUOTE] = ACTIONS(4086), + [sym__str_single_quotes] = ACTIONS(4088), + [sym__str_back_ticks] = ACTIONS(4088), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4092), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5261), [anon_sym_POUND] = ACTIONS(3), }, - [1535] = { - [sym_comment] = STATE(1535), - [anon_sym_export] = ACTIONS(3505), - [anon_sym_alias] = ACTIONS(3505), - [anon_sym_let] = ACTIONS(3505), - [anon_sym_let_DASHenv] = ACTIONS(3505), - [anon_sym_mut] = ACTIONS(3505), - [anon_sym_const] = ACTIONS(3505), - [anon_sym_SEMI] = ACTIONS(3505), - [sym_cmd_identifier] = ACTIONS(3505), - [anon_sym_LF] = ACTIONS(3507), - [anon_sym_def] = ACTIONS(3505), - [anon_sym_export_DASHenv] = ACTIONS(3505), - [anon_sym_extern] = ACTIONS(3505), - [anon_sym_module] = ACTIONS(3505), - [anon_sym_use] = ACTIONS(3505), - [anon_sym_LBRACK] = ACTIONS(3505), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_RPAREN] = ACTIONS(3505), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_error] = ACTIONS(3505), - [anon_sym_DASH_DASH] = ACTIONS(3505), - [anon_sym_DASH] = ACTIONS(3505), - [anon_sym_break] = ACTIONS(3505), - [anon_sym_continue] = ACTIONS(3505), - [anon_sym_for] = ACTIONS(3505), - [anon_sym_loop] = ACTIONS(3505), - [anon_sym_while] = ACTIONS(3505), - [anon_sym_do] = ACTIONS(3505), - [anon_sym_if] = ACTIONS(3505), - [anon_sym_match] = ACTIONS(3505), - [anon_sym_LBRACE] = ACTIONS(3505), - [anon_sym_RBRACE] = ACTIONS(3505), - [anon_sym_DOT_DOT] = ACTIONS(3505), - [anon_sym_try] = ACTIONS(3505), - [anon_sym_return] = ACTIONS(3505), - [anon_sym_source] = ACTIONS(3505), - [anon_sym_source_DASHenv] = ACTIONS(3505), - [anon_sym_register] = ACTIONS(3505), - [anon_sym_hide] = ACTIONS(3505), - [anon_sym_hide_DASHenv] = ACTIONS(3505), - [anon_sym_overlay] = ACTIONS(3505), - [anon_sym_as] = ACTIONS(3505), - [anon_sym_where] = ACTIONS(3505), - [anon_sym_not] = ACTIONS(3505), - [anon_sym_DOT] = ACTIONS(3505), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3505), - [anon_sym_DOT_DOT_LT] = ACTIONS(3505), - [anon_sym_null] = ACTIONS(3505), - [anon_sym_true] = ACTIONS(3505), - [anon_sym_false] = ACTIONS(3505), - [aux_sym__val_number_decimal_token1] = ACTIONS(3505), - [aux_sym__val_number_decimal_token2] = ACTIONS(3505), - [anon_sym_DOT2] = ACTIONS(3505), - [aux_sym__val_number_decimal_token3] = ACTIONS(3505), - [aux_sym__val_number_token1] = ACTIONS(3505), - [aux_sym__val_number_token2] = ACTIONS(3505), - [aux_sym__val_number_token3] = ACTIONS(3505), - [aux_sym__val_number_token4] = ACTIONS(3505), - [aux_sym__val_number_token5] = ACTIONS(3505), - [aux_sym__val_number_token6] = ACTIONS(3505), - [anon_sym_0b] = ACTIONS(3505), - [anon_sym_0o] = ACTIONS(3505), - [anon_sym_0x] = ACTIONS(3505), - [sym_val_date] = ACTIONS(3505), - [anon_sym_DQUOTE] = ACTIONS(3505), - [sym__str_single_quotes] = ACTIONS(3505), - [sym__str_back_ticks] = ACTIONS(3505), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3505), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3505), - [anon_sym_CARET] = ACTIONS(3505), - [aux_sym_unquoted_token2] = ACTIONS(3505), - [anon_sym_POUND] = ACTIONS(113), + [1737] = { + [sym_expr_unary] = STATE(5749), + [sym__expr_unary_minus] = STATE(5853), + [sym_expr_binary] = STATE(5749), + [sym__expr_binary_expression] = STATE(5795), + [sym_expr_parenthesized] = STATE(5749), + [sym__val_range] = STATE(10177), + [sym__value] = STATE(5749), + [sym_val_nothing] = STATE(5750), + [sym_val_bool] = STATE(5489), + [sym_val_variable] = STATE(5750), + [sym__var] = STATE(4999), + [sym_val_number] = STATE(5750), + [sym__val_number_decimal] = STATE(4168), + [sym__val_number] = STATE(5565), + [sym_val_duration] = STATE(5750), + [sym_val_filesize] = STATE(5750), + [sym_val_binary] = STATE(5750), + [sym_val_string] = STATE(5750), + [sym__str_double_quotes] = STATE(5570), + [sym_val_interpolated] = STATE(5750), + [sym__inter_single_quotes] = STATE(5595), + [sym__inter_double_quotes] = STATE(5600), + [sym_val_list] = STATE(5750), + [sym_val_record] = STATE(5750), + [sym_val_table] = STATE(5750), + [sym_val_closure] = STATE(5750), + [sym_unquoted] = STATE(5574), + [sym__unquoted_anonymous_prefix] = STATE(10738), + [sym_comment] = STATE(1737), + [anon_sym_LBRACK] = ACTIONS(4048), + [anon_sym_LPAREN] = ACTIONS(5249), + [anon_sym_DOLLAR] = ACTIONS(5251), + [anon_sym_DASH] = ACTIONS(4054), + [anon_sym_LBRACE] = ACTIONS(4056), + [anon_sym_DOT_DOT] = ACTIONS(5253), + [anon_sym_not] = ACTIONS(4060), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5255), + [anon_sym_DOT_DOT_LT] = ACTIONS(5255), + [anon_sym_null] = ACTIONS(4064), + [anon_sym_true] = ACTIONS(4066), + [anon_sym_false] = ACTIONS(4066), + [aux_sym__val_number_decimal_token1] = ACTIONS(4068), + [aux_sym__val_number_decimal_token2] = ACTIONS(4070), + [anon_sym_DOT2] = ACTIONS(5257), + [aux_sym__val_number_decimal_token3] = ACTIONS(4074), + [aux_sym__val_number_token1] = ACTIONS(4076), + [aux_sym__val_number_token2] = ACTIONS(4076), + [aux_sym__val_number_token3] = ACTIONS(4076), + [aux_sym__val_number_token4] = ACTIONS(5259), + [aux_sym__val_number_token5] = ACTIONS(5259), + [aux_sym__val_number_token6] = ACTIONS(5259), + [anon_sym_0b] = ACTIONS(4080), + [anon_sym_0o] = ACTIONS(4082), + [anon_sym_0x] = ACTIONS(4082), + [sym_val_date] = ACTIONS(4084), + [anon_sym_DQUOTE] = ACTIONS(4086), + [sym__str_single_quotes] = ACTIONS(4088), + [sym__str_back_ticks] = ACTIONS(4088), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4092), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5261), + [anon_sym_POUND] = ACTIONS(3), }, - [1536] = { - [sym_comment] = STATE(1536), - [ts_builtin_sym_end] = ACTIONS(2583), - [anon_sym_export] = ACTIONS(2581), - [anon_sym_alias] = ACTIONS(2581), - [anon_sym_let] = ACTIONS(2581), - [anon_sym_let_DASHenv] = ACTIONS(2581), - [anon_sym_mut] = ACTIONS(2581), - [anon_sym_const] = ACTIONS(2581), - [anon_sym_SEMI] = ACTIONS(2581), - [sym_cmd_identifier] = ACTIONS(2581), - [anon_sym_LF] = ACTIONS(2583), - [anon_sym_def] = ACTIONS(2581), - [anon_sym_export_DASHenv] = ACTIONS(2581), - [anon_sym_extern] = ACTIONS(2581), - [anon_sym_module] = ACTIONS(2581), - [anon_sym_use] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2581), - [anon_sym_error] = ACTIONS(2581), - [anon_sym_DASH_DASH] = ACTIONS(2581), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_break] = ACTIONS(2581), - [anon_sym_continue] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2581), - [anon_sym_loop] = ACTIONS(2581), - [anon_sym_while] = ACTIONS(2581), - [anon_sym_do] = ACTIONS(2581), - [anon_sym_if] = ACTIONS(2581), - [anon_sym_match] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2581), - [anon_sym_DOT_DOT] = ACTIONS(2581), - [anon_sym_try] = ACTIONS(2581), - [anon_sym_return] = ACTIONS(2581), - [anon_sym_source] = ACTIONS(2581), - [anon_sym_source_DASHenv] = ACTIONS(2581), - [anon_sym_register] = ACTIONS(2581), - [anon_sym_hide] = ACTIONS(2581), - [anon_sym_hide_DASHenv] = ACTIONS(2581), - [anon_sym_overlay] = ACTIONS(2581), - [anon_sym_as] = ACTIONS(2581), - [anon_sym_where] = ACTIONS(2581), - [anon_sym_not] = ACTIONS(2581), - [anon_sym_DOT] = ACTIONS(2581), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2581), - [anon_sym_DOT_DOT_LT] = ACTIONS(2581), - [aux_sym__immediate_decimal_token2] = ACTIONS(4775), - [anon_sym_null] = ACTIONS(2581), - [anon_sym_true] = ACTIONS(2581), - [anon_sym_false] = ACTIONS(2581), - [aux_sym__val_number_decimal_token1] = ACTIONS(2581), - [aux_sym__val_number_decimal_token2] = ACTIONS(2581), - [anon_sym_DOT2] = ACTIONS(2581), - [aux_sym__val_number_decimal_token3] = ACTIONS(2581), - [aux_sym__val_number_token1] = ACTIONS(2581), - [aux_sym__val_number_token2] = ACTIONS(2581), - [aux_sym__val_number_token3] = ACTIONS(2581), - [aux_sym__val_number_token4] = ACTIONS(2581), - [aux_sym__val_number_token5] = ACTIONS(2581), - [aux_sym__val_number_token6] = ACTIONS(2581), - [anon_sym_0b] = ACTIONS(2581), - [anon_sym_0o] = ACTIONS(2581), - [anon_sym_0x] = ACTIONS(2581), - [sym_val_date] = ACTIONS(2581), - [anon_sym_DQUOTE] = ACTIONS(2581), - [sym__str_single_quotes] = ACTIONS(2581), - [sym__str_back_ticks] = ACTIONS(2581), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2581), - [anon_sym_CARET] = ACTIONS(2581), - [aux_sym_unquoted_token2] = ACTIONS(2581), - [anon_sym_POUND] = ACTIONS(113), + [1738] = { + [sym_expr_unary] = STATE(5749), + [sym__expr_unary_minus] = STATE(5853), + [sym_expr_binary] = STATE(5749), + [sym__expr_binary_expression] = STATE(5803), + [sym_expr_parenthesized] = STATE(5749), + [sym__val_range] = STATE(10177), + [sym__value] = STATE(5749), + [sym_val_nothing] = STATE(5750), + [sym_val_bool] = STATE(5489), + [sym_val_variable] = STATE(5750), + [sym__var] = STATE(4999), + [sym_val_number] = STATE(5750), + [sym__val_number_decimal] = STATE(4168), + [sym__val_number] = STATE(5565), + [sym_val_duration] = STATE(5750), + [sym_val_filesize] = STATE(5750), + [sym_val_binary] = STATE(5750), + [sym_val_string] = STATE(5750), + [sym__str_double_quotes] = STATE(5570), + [sym_val_interpolated] = STATE(5750), + [sym__inter_single_quotes] = STATE(5595), + [sym__inter_double_quotes] = STATE(5600), + [sym_val_list] = STATE(5750), + [sym_val_record] = STATE(5750), + [sym_val_table] = STATE(5750), + [sym_val_closure] = STATE(5750), + [sym_unquoted] = STATE(5672), + [sym__unquoted_anonymous_prefix] = STATE(10738), + [sym_comment] = STATE(1738), + [anon_sym_LBRACK] = ACTIONS(4048), + [anon_sym_LPAREN] = ACTIONS(5249), + [anon_sym_DOLLAR] = ACTIONS(5251), + [anon_sym_DASH] = ACTIONS(4054), + [anon_sym_LBRACE] = ACTIONS(4056), + [anon_sym_DOT_DOT] = ACTIONS(5253), + [anon_sym_not] = ACTIONS(4060), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5255), + [anon_sym_DOT_DOT_LT] = ACTIONS(5255), + [anon_sym_null] = ACTIONS(4064), + [anon_sym_true] = ACTIONS(4066), + [anon_sym_false] = ACTIONS(4066), + [aux_sym__val_number_decimal_token1] = ACTIONS(4068), + [aux_sym__val_number_decimal_token2] = ACTIONS(4070), + [anon_sym_DOT2] = ACTIONS(5257), + [aux_sym__val_number_decimal_token3] = ACTIONS(4074), + [aux_sym__val_number_token1] = ACTIONS(4076), + [aux_sym__val_number_token2] = ACTIONS(4076), + [aux_sym__val_number_token3] = ACTIONS(4076), + [aux_sym__val_number_token4] = ACTIONS(5259), + [aux_sym__val_number_token5] = ACTIONS(5259), + [aux_sym__val_number_token6] = ACTIONS(5259), + [anon_sym_0b] = ACTIONS(4080), + [anon_sym_0o] = ACTIONS(4082), + [anon_sym_0x] = ACTIONS(4082), + [sym_val_date] = ACTIONS(4084), + [anon_sym_DQUOTE] = ACTIONS(4086), + [sym__str_single_quotes] = ACTIONS(4088), + [sym__str_back_ticks] = ACTIONS(4088), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4092), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5261), + [anon_sym_POUND] = ACTIONS(3), }, - [1537] = { - [sym_cell_path] = STATE(2357), - [sym_path] = STATE(1517), - [sym_comment] = STATE(1537), - [ts_builtin_sym_end] = ACTIONS(1192), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_alias] = ACTIONS(1190), - [anon_sym_let] = ACTIONS(1190), - [anon_sym_let_DASHenv] = ACTIONS(1190), - [anon_sym_mut] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1190), - [anon_sym_SEMI] = ACTIONS(1190), - [sym_cmd_identifier] = ACTIONS(1190), - [anon_sym_LF] = ACTIONS(1192), - [anon_sym_def] = ACTIONS(1190), - [anon_sym_export_DASHenv] = ACTIONS(1190), - [anon_sym_extern] = ACTIONS(1190), - [anon_sym_module] = ACTIONS(1190), - [anon_sym_use] = ACTIONS(1190), - [anon_sym_LBRACK] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(1190), - [anon_sym_DOLLAR] = ACTIONS(1190), - [anon_sym_error] = ACTIONS(1190), - [anon_sym_DASH_DASH] = ACTIONS(1190), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_loop] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [anon_sym_do] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_match] = ACTIONS(1190), - [anon_sym_LBRACE] = ACTIONS(1190), - [anon_sym_DOT_DOT] = ACTIONS(1190), - [anon_sym_try] = ACTIONS(1190), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_source] = ACTIONS(1190), - [anon_sym_source_DASHenv] = ACTIONS(1190), - [anon_sym_register] = ACTIONS(1190), - [anon_sym_hide] = ACTIONS(1190), - [anon_sym_hide_DASHenv] = ACTIONS(1190), - [anon_sym_overlay] = ACTIONS(1190), - [anon_sym_as] = ACTIONS(1190), - [anon_sym_where] = ACTIONS(1190), - [anon_sym_not] = ACTIONS(1190), - [anon_sym_DOT] = ACTIONS(4629), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1190), - [anon_sym_DOT_DOT_LT] = ACTIONS(1190), - [anon_sym_null] = ACTIONS(1190), - [anon_sym_true] = ACTIONS(1190), - [anon_sym_false] = ACTIONS(1190), - [aux_sym__val_number_decimal_token1] = ACTIONS(1190), - [aux_sym__val_number_decimal_token2] = ACTIONS(1190), - [anon_sym_DOT2] = ACTIONS(1190), - [aux_sym__val_number_decimal_token3] = ACTIONS(1190), - [aux_sym__val_number_token1] = ACTIONS(1190), - [aux_sym__val_number_token2] = ACTIONS(1190), - [aux_sym__val_number_token3] = ACTIONS(1190), - [aux_sym__val_number_token4] = ACTIONS(1190), - [aux_sym__val_number_token5] = ACTIONS(1190), - [aux_sym__val_number_token6] = ACTIONS(1190), - [anon_sym_0b] = ACTIONS(1190), - [anon_sym_0o] = ACTIONS(1190), - [anon_sym_0x] = ACTIONS(1190), - [sym_val_date] = ACTIONS(1190), - [anon_sym_DQUOTE] = ACTIONS(1190), - [sym__str_single_quotes] = ACTIONS(1190), - [sym__str_back_ticks] = ACTIONS(1190), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1190), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1190), - [anon_sym_POUND] = ACTIONS(113), + [1739] = { + [sym_expr_unary] = STATE(5749), + [sym__expr_unary_minus] = STATE(5853), + [sym_expr_binary] = STATE(5749), + [sym__expr_binary_expression] = STATE(5806), + [sym_expr_parenthesized] = STATE(5749), + [sym__val_range] = STATE(10177), + [sym__value] = STATE(5749), + [sym_val_nothing] = STATE(5750), + [sym_val_bool] = STATE(5489), + [sym_val_variable] = STATE(5750), + [sym__var] = STATE(4999), + [sym_val_number] = STATE(5750), + [sym__val_number_decimal] = STATE(4168), + [sym__val_number] = STATE(5565), + [sym_val_duration] = STATE(5750), + [sym_val_filesize] = STATE(5750), + [sym_val_binary] = STATE(5750), + [sym_val_string] = STATE(5750), + [sym__str_double_quotes] = STATE(5570), + [sym_val_interpolated] = STATE(5750), + [sym__inter_single_quotes] = STATE(5595), + [sym__inter_double_quotes] = STATE(5600), + [sym_val_list] = STATE(5750), + [sym_val_record] = STATE(5750), + [sym_val_table] = STATE(5750), + [sym_val_closure] = STATE(5750), + [sym_unquoted] = STATE(5834), + [sym__unquoted_anonymous_prefix] = STATE(10738), + [sym_comment] = STATE(1739), + [anon_sym_LBRACK] = ACTIONS(4048), + [anon_sym_LPAREN] = ACTIONS(5249), + [anon_sym_DOLLAR] = ACTIONS(5251), + [anon_sym_DASH] = ACTIONS(4054), + [anon_sym_LBRACE] = ACTIONS(4056), + [anon_sym_DOT_DOT] = ACTIONS(5253), + [anon_sym_not] = ACTIONS(4060), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5255), + [anon_sym_DOT_DOT_LT] = ACTIONS(5255), + [anon_sym_null] = ACTIONS(4064), + [anon_sym_true] = ACTIONS(4066), + [anon_sym_false] = ACTIONS(4066), + [aux_sym__val_number_decimal_token1] = ACTIONS(4068), + [aux_sym__val_number_decimal_token2] = ACTIONS(4070), + [anon_sym_DOT2] = ACTIONS(5257), + [aux_sym__val_number_decimal_token3] = ACTIONS(4074), + [aux_sym__val_number_token1] = ACTIONS(4076), + [aux_sym__val_number_token2] = ACTIONS(4076), + [aux_sym__val_number_token3] = ACTIONS(4076), + [aux_sym__val_number_token4] = ACTIONS(5259), + [aux_sym__val_number_token5] = ACTIONS(5259), + [aux_sym__val_number_token6] = ACTIONS(5259), + [anon_sym_0b] = ACTIONS(4080), + [anon_sym_0o] = ACTIONS(4082), + [anon_sym_0x] = ACTIONS(4082), + [sym_val_date] = ACTIONS(4084), + [anon_sym_DQUOTE] = ACTIONS(4086), + [sym__str_single_quotes] = ACTIONS(4088), + [sym__str_back_ticks] = ACTIONS(4088), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4092), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5261), + [anon_sym_POUND] = ACTIONS(3), }, - [1538] = { - [sym_comment] = STATE(1538), - [ts_builtin_sym_end] = ACTIONS(2439), - [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), - [anon_sym_SEMI] = ACTIONS(2437), - [sym_cmd_identifier] = ACTIONS(2437), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_DASH_DASH] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_as] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_not] = ACTIONS(2437), - [anon_sym_DOT] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [aux_sym__immediate_decimal_token2] = ACTIONS(3947), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [anon_sym_DOT2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2437), - [anon_sym_0o] = ACTIONS(2437), - [anon_sym_0x] = ACTIONS(2437), - [sym_val_date] = 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_CARET] = ACTIONS(2437), - [aux_sym_unquoted_token2] = ACTIONS(2437), - [anon_sym_POUND] = ACTIONS(113), + [1740] = { + [sym_expr_unary] = STATE(5749), + [sym__expr_unary_minus] = STATE(5853), + [sym_expr_binary] = STATE(5749), + [sym__expr_binary_expression] = STATE(5810), + [sym_expr_parenthesized] = STATE(5749), + [sym__val_range] = STATE(10177), + [sym__value] = STATE(5749), + [sym_val_nothing] = STATE(5750), + [sym_val_bool] = STATE(5489), + [sym_val_variable] = STATE(5750), + [sym__var] = STATE(4999), + [sym_val_number] = STATE(5750), + [sym__val_number_decimal] = STATE(4168), + [sym__val_number] = STATE(5565), + [sym_val_duration] = STATE(5750), + [sym_val_filesize] = STATE(5750), + [sym_val_binary] = STATE(5750), + [sym_val_string] = STATE(5750), + [sym__str_double_quotes] = STATE(5570), + [sym_val_interpolated] = STATE(5750), + [sym__inter_single_quotes] = STATE(5595), + [sym__inter_double_quotes] = STATE(5600), + [sym_val_list] = STATE(5750), + [sym_val_record] = STATE(5750), + [sym_val_table] = STATE(5750), + [sym_val_closure] = STATE(5750), + [sym_unquoted] = STATE(5854), + [sym__unquoted_anonymous_prefix] = STATE(10738), + [sym_comment] = STATE(1740), + [anon_sym_LBRACK] = ACTIONS(4048), + [anon_sym_LPAREN] = ACTIONS(5249), + [anon_sym_DOLLAR] = ACTIONS(5251), + [anon_sym_DASH] = ACTIONS(4054), + [anon_sym_LBRACE] = ACTIONS(4056), + [anon_sym_DOT_DOT] = ACTIONS(5253), + [anon_sym_not] = ACTIONS(4060), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5255), + [anon_sym_DOT_DOT_LT] = ACTIONS(5255), + [anon_sym_null] = ACTIONS(4064), + [anon_sym_true] = ACTIONS(4066), + [anon_sym_false] = ACTIONS(4066), + [aux_sym__val_number_decimal_token1] = ACTIONS(4068), + [aux_sym__val_number_decimal_token2] = ACTIONS(4070), + [anon_sym_DOT2] = ACTIONS(5257), + [aux_sym__val_number_decimal_token3] = ACTIONS(4074), + [aux_sym__val_number_token1] = ACTIONS(4076), + [aux_sym__val_number_token2] = ACTIONS(4076), + [aux_sym__val_number_token3] = ACTIONS(4076), + [aux_sym__val_number_token4] = ACTIONS(5259), + [aux_sym__val_number_token5] = ACTIONS(5259), + [aux_sym__val_number_token6] = ACTIONS(5259), + [anon_sym_0b] = ACTIONS(4080), + [anon_sym_0o] = ACTIONS(4082), + [anon_sym_0x] = ACTIONS(4082), + [sym_val_date] = ACTIONS(4084), + [anon_sym_DQUOTE] = ACTIONS(4086), + [sym__str_single_quotes] = ACTIONS(4088), + [sym__str_back_ticks] = ACTIONS(4088), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4092), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5261), + [anon_sym_POUND] = ACTIONS(3), }, - [1539] = { - [sym_comment] = STATE(1539), - [ts_builtin_sym_end] = ACTIONS(2549), - [anon_sym_export] = ACTIONS(2547), - [anon_sym_alias] = ACTIONS(2547), - [anon_sym_let] = ACTIONS(2547), - [anon_sym_let_DASHenv] = ACTIONS(2547), - [anon_sym_mut] = ACTIONS(2547), - [anon_sym_const] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [sym_cmd_identifier] = ACTIONS(2547), - [anon_sym_LF] = ACTIONS(2549), - [anon_sym_def] = ACTIONS(2547), - [anon_sym_export_DASHenv] = ACTIONS(2547), - [anon_sym_extern] = ACTIONS(2547), - [anon_sym_module] = ACTIONS(2547), - [anon_sym_use] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_DOLLAR] = ACTIONS(2547), - [anon_sym_error] = ACTIONS(2547), - [anon_sym_DASH_DASH] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_break] = ACTIONS(2547), - [anon_sym_continue] = ACTIONS(2547), - [anon_sym_for] = ACTIONS(2547), - [anon_sym_loop] = ACTIONS(2547), - [anon_sym_while] = ACTIONS(2547), - [anon_sym_do] = ACTIONS(2547), - [anon_sym_if] = ACTIONS(2547), - [anon_sym_match] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2547), - [anon_sym_DOT_DOT] = ACTIONS(2547), - [anon_sym_try] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2547), - [anon_sym_source] = ACTIONS(2547), - [anon_sym_source_DASHenv] = ACTIONS(2547), - [anon_sym_register] = ACTIONS(2547), - [anon_sym_hide] = ACTIONS(2547), - [anon_sym_hide_DASHenv] = ACTIONS(2547), - [anon_sym_overlay] = ACTIONS(2547), - [anon_sym_as] = ACTIONS(2547), - [anon_sym_where] = ACTIONS(2547), - [anon_sym_not] = ACTIONS(2547), - [anon_sym_DOT] = ACTIONS(2547), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), - [anon_sym_DOT_DOT_LT] = ACTIONS(2547), - [aux_sym__immediate_decimal_token2] = ACTIONS(4777), - [anon_sym_null] = ACTIONS(2547), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [aux_sym__val_number_decimal_token1] = ACTIONS(2547), - [aux_sym__val_number_decimal_token2] = ACTIONS(2547), - [anon_sym_DOT2] = ACTIONS(2547), - [aux_sym__val_number_decimal_token3] = ACTIONS(2547), - [aux_sym__val_number_token1] = ACTIONS(2547), - [aux_sym__val_number_token2] = ACTIONS(2547), - [aux_sym__val_number_token3] = ACTIONS(2547), - [aux_sym__val_number_token4] = ACTIONS(2547), - [aux_sym__val_number_token5] = ACTIONS(2547), - [aux_sym__val_number_token6] = ACTIONS(2547), - [anon_sym_0b] = ACTIONS(2547), - [anon_sym_0o] = ACTIONS(2547), - [anon_sym_0x] = ACTIONS(2547), - [sym_val_date] = ACTIONS(2547), - [anon_sym_DQUOTE] = ACTIONS(2547), - [sym__str_single_quotes] = ACTIONS(2547), - [sym__str_back_ticks] = ACTIONS(2547), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2547), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2547), - [aux_sym_unquoted_token2] = ACTIONS(2547), - [anon_sym_POUND] = ACTIONS(113), + [1741] = { + [sym_expr_unary] = STATE(5749), + [sym__expr_unary_minus] = STATE(5853), + [sym_expr_binary] = STATE(5749), + [sym__expr_binary_expression] = STATE(5814), + [sym_expr_parenthesized] = STATE(5749), + [sym__val_range] = STATE(10177), + [sym__value] = STATE(5749), + [sym_val_nothing] = STATE(5750), + [sym_val_bool] = STATE(5489), + [sym_val_variable] = STATE(5750), + [sym__var] = STATE(4999), + [sym_val_number] = STATE(5750), + [sym__val_number_decimal] = STATE(4168), + [sym__val_number] = STATE(5565), + [sym_val_duration] = STATE(5750), + [sym_val_filesize] = STATE(5750), + [sym_val_binary] = STATE(5750), + [sym_val_string] = STATE(5750), + [sym__str_double_quotes] = STATE(5570), + [sym_val_interpolated] = STATE(5750), + [sym__inter_single_quotes] = STATE(5595), + [sym__inter_double_quotes] = STATE(5600), + [sym_val_list] = STATE(5750), + [sym_val_record] = STATE(5750), + [sym_val_table] = STATE(5750), + [sym_val_closure] = STATE(5750), + [sym_unquoted] = STATE(5652), + [sym__unquoted_anonymous_prefix] = STATE(10738), + [sym_comment] = STATE(1741), + [anon_sym_LBRACK] = ACTIONS(4048), + [anon_sym_LPAREN] = ACTIONS(5249), + [anon_sym_DOLLAR] = ACTIONS(5251), + [anon_sym_DASH] = ACTIONS(4054), + [anon_sym_LBRACE] = ACTIONS(4056), + [anon_sym_DOT_DOT] = ACTIONS(5253), + [anon_sym_not] = ACTIONS(4060), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5255), + [anon_sym_DOT_DOT_LT] = ACTIONS(5255), + [anon_sym_null] = ACTIONS(4064), + [anon_sym_true] = ACTIONS(4066), + [anon_sym_false] = ACTIONS(4066), + [aux_sym__val_number_decimal_token1] = ACTIONS(4068), + [aux_sym__val_number_decimal_token2] = ACTIONS(4070), + [anon_sym_DOT2] = ACTIONS(5257), + [aux_sym__val_number_decimal_token3] = ACTIONS(4074), + [aux_sym__val_number_token1] = ACTIONS(4076), + [aux_sym__val_number_token2] = ACTIONS(4076), + [aux_sym__val_number_token3] = ACTIONS(4076), + [aux_sym__val_number_token4] = ACTIONS(5259), + [aux_sym__val_number_token5] = ACTIONS(5259), + [aux_sym__val_number_token6] = ACTIONS(5259), + [anon_sym_0b] = ACTIONS(4080), + [anon_sym_0o] = ACTIONS(4082), + [anon_sym_0x] = ACTIONS(4082), + [sym_val_date] = ACTIONS(4084), + [anon_sym_DQUOTE] = ACTIONS(4086), + [sym__str_single_quotes] = ACTIONS(4088), + [sym__str_back_ticks] = ACTIONS(4088), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4092), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5261), + [anon_sym_POUND] = ACTIONS(3), }, - [1540] = { - [sym__immediate_decimal] = STATE(9346), - [sym_comment] = STATE(1540), - [ts_builtin_sym_end] = ACTIONS(938), - [anon_sym_SEMI] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_STAR_STAR] = ACTIONS(936), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(936), - [anon_sym_SLASH_SLASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(936), - [anon_sym_bit_DASHshr] = ACTIONS(936), - [anon_sym_EQ_EQ] = ACTIONS(936), - [anon_sym_BANG_EQ] = ACTIONS(936), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(936), - [anon_sym_GT_EQ] = ACTIONS(936), - [anon_sym_not_DASHin] = ACTIONS(936), - [anon_sym_starts_DASHwith] = ACTIONS(936), - [anon_sym_ends_DASHwith] = ACTIONS(936), - [anon_sym_EQ_TILDE] = ACTIONS(936), - [anon_sym_BANG_TILDE] = ACTIONS(936), - [anon_sym_bit_DASHand] = ACTIONS(936), - [anon_sym_bit_DASHxor] = ACTIONS(936), - [anon_sym_bit_DASHor] = ACTIONS(936), - [anon_sym_and] = ACTIONS(936), - [anon_sym_xor] = ACTIONS(936), - [anon_sym_or] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_DOT] = ACTIONS(4779), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [aux_sym__immediate_decimal_token1] = ACTIONS(942), - [aux_sym__immediate_decimal_token3] = ACTIONS(942), - [aux_sym__immediate_decimal_token4] = ACTIONS(944), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [aux_sym_unquoted_token3] = ACTIONS(4781), - [aux_sym_unquoted_token5] = ACTIONS(4783), - [anon_sym_POUND] = ACTIONS(113), + [1742] = { + [sym_expr_unary] = STATE(5749), + [sym__expr_unary_minus] = STATE(5853), + [sym_expr_binary] = STATE(5749), + [sym__expr_binary_expression] = STATE(5815), + [sym_expr_parenthesized] = STATE(5749), + [sym__val_range] = STATE(10177), + [sym__value] = STATE(5749), + [sym_val_nothing] = STATE(5750), + [sym_val_bool] = STATE(5489), + [sym_val_variable] = STATE(5750), + [sym__var] = STATE(4999), + [sym_val_number] = STATE(5750), + [sym__val_number_decimal] = STATE(4168), + [sym__val_number] = STATE(5565), + [sym_val_duration] = STATE(5750), + [sym_val_filesize] = STATE(5750), + [sym_val_binary] = STATE(5750), + [sym_val_string] = STATE(5750), + [sym__str_double_quotes] = STATE(5570), + [sym_val_interpolated] = STATE(5750), + [sym__inter_single_quotes] = STATE(5595), + [sym__inter_double_quotes] = STATE(5600), + [sym_val_list] = STATE(5750), + [sym_val_record] = STATE(5750), + [sym_val_table] = STATE(5750), + [sym_val_closure] = STATE(5750), + [sym_unquoted] = STATE(5830), + [sym__unquoted_anonymous_prefix] = STATE(10738), + [sym_comment] = STATE(1742), + [anon_sym_LBRACK] = ACTIONS(4048), + [anon_sym_LPAREN] = ACTIONS(5249), + [anon_sym_DOLLAR] = ACTIONS(5251), + [anon_sym_DASH] = ACTIONS(4054), + [anon_sym_LBRACE] = ACTIONS(4056), + [anon_sym_DOT_DOT] = ACTIONS(5253), + [anon_sym_not] = ACTIONS(4060), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5255), + [anon_sym_DOT_DOT_LT] = ACTIONS(5255), + [anon_sym_null] = ACTIONS(4064), + [anon_sym_true] = ACTIONS(4066), + [anon_sym_false] = ACTIONS(4066), + [aux_sym__val_number_decimal_token1] = ACTIONS(4068), + [aux_sym__val_number_decimal_token2] = ACTIONS(4070), + [anon_sym_DOT2] = ACTIONS(5257), + [aux_sym__val_number_decimal_token3] = ACTIONS(4074), + [aux_sym__val_number_token1] = ACTIONS(4076), + [aux_sym__val_number_token2] = ACTIONS(4076), + [aux_sym__val_number_token3] = ACTIONS(4076), + [aux_sym__val_number_token4] = ACTIONS(5259), + [aux_sym__val_number_token5] = ACTIONS(5259), + [aux_sym__val_number_token6] = ACTIONS(5259), + [anon_sym_0b] = ACTIONS(4080), + [anon_sym_0o] = ACTIONS(4082), + [anon_sym_0x] = ACTIONS(4082), + [sym_val_date] = ACTIONS(4084), + [anon_sym_DQUOTE] = ACTIONS(4086), + [sym__str_single_quotes] = ACTIONS(4088), + [sym__str_back_ticks] = ACTIONS(4088), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4092), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5261), + [anon_sym_POUND] = ACTIONS(3), }, - [1541] = { - [sym_cell_path] = STATE(2504), - [sym_path] = STATE(1545), - [sym_comment] = STATE(1541), - [anon_sym_SEMI] = ACTIONS(1010), - [anon_sym_LF] = ACTIONS(1012), - [anon_sym_LBRACK] = ACTIONS(1010), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_RPAREN] = ACTIONS(1010), - [anon_sym_PIPE] = ACTIONS(1010), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1010), - [anon_sym_DASH_DASH] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_in] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_RBRACE] = ACTIONS(1010), - [anon_sym_DOT_DOT] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1010), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_SLASH] = ACTIONS(1010), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT2] = ACTIONS(1010), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT_EQ] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_not] = ACTIONS(1010), - [anon_sym_DOT_DOT2] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(4241), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT] = ACTIONS(1010), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), - [anon_sym_null] = ACTIONS(1010), - [anon_sym_true] = ACTIONS(1010), - [anon_sym_false] = ACTIONS(1010), - [aux_sym__val_number_decimal_token1] = ACTIONS(1010), - [aux_sym__val_number_decimal_token2] = ACTIONS(1010), - [anon_sym_DOT2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = 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(1010), - [aux_sym__val_number_token5] = ACTIONS(1010), - [aux_sym__val_number_token6] = ACTIONS(1010), - [anon_sym_0b] = ACTIONS(1010), - [anon_sym_0o] = ACTIONS(1010), - [anon_sym_0x] = ACTIONS(1010), - [sym_val_date] = ACTIONS(1010), - [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_POUND] = ACTIONS(113), + [1743] = { + [sym_expr_unary] = STATE(5749), + [sym__expr_unary_minus] = STATE(5853), + [sym_expr_binary] = STATE(5749), + [sym__expr_binary_expression] = STATE(5817), + [sym_expr_parenthesized] = STATE(5749), + [sym__val_range] = STATE(10177), + [sym__value] = STATE(5749), + [sym_val_nothing] = STATE(5750), + [sym_val_bool] = STATE(5489), + [sym_val_variable] = STATE(5750), + [sym__var] = STATE(4999), + [sym_val_number] = STATE(5750), + [sym__val_number_decimal] = STATE(4168), + [sym__val_number] = STATE(5565), + [sym_val_duration] = STATE(5750), + [sym_val_filesize] = STATE(5750), + [sym_val_binary] = STATE(5750), + [sym_val_string] = STATE(5750), + [sym__str_double_quotes] = STATE(5570), + [sym_val_interpolated] = STATE(5750), + [sym__inter_single_quotes] = STATE(5595), + [sym__inter_double_quotes] = STATE(5600), + [sym_val_list] = STATE(5750), + [sym_val_record] = STATE(5750), + [sym_val_table] = STATE(5750), + [sym_val_closure] = STATE(5750), + [sym_unquoted] = STATE(5832), + [sym__unquoted_anonymous_prefix] = STATE(10738), + [sym_comment] = STATE(1743), + [anon_sym_LBRACK] = ACTIONS(4048), + [anon_sym_LPAREN] = ACTIONS(5249), + [anon_sym_DOLLAR] = ACTIONS(5251), + [anon_sym_DASH] = ACTIONS(4054), + [anon_sym_LBRACE] = ACTIONS(4056), + [anon_sym_DOT_DOT] = ACTIONS(5253), + [anon_sym_not] = ACTIONS(4060), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5255), + [anon_sym_DOT_DOT_LT] = ACTIONS(5255), + [anon_sym_null] = ACTIONS(4064), + [anon_sym_true] = ACTIONS(4066), + [anon_sym_false] = ACTIONS(4066), + [aux_sym__val_number_decimal_token1] = ACTIONS(4068), + [aux_sym__val_number_decimal_token2] = ACTIONS(4070), + [anon_sym_DOT2] = ACTIONS(5257), + [aux_sym__val_number_decimal_token3] = ACTIONS(4074), + [aux_sym__val_number_token1] = ACTIONS(4076), + [aux_sym__val_number_token2] = ACTIONS(4076), + [aux_sym__val_number_token3] = ACTIONS(4076), + [aux_sym__val_number_token4] = ACTIONS(5259), + [aux_sym__val_number_token5] = ACTIONS(5259), + [aux_sym__val_number_token6] = ACTIONS(5259), + [anon_sym_0b] = ACTIONS(4080), + [anon_sym_0o] = ACTIONS(4082), + [anon_sym_0x] = ACTIONS(4082), + [sym_val_date] = ACTIONS(4084), + [anon_sym_DQUOTE] = ACTIONS(4086), + [sym__str_single_quotes] = ACTIONS(4088), + [sym__str_back_ticks] = ACTIONS(4088), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4092), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5261), + [anon_sym_POUND] = ACTIONS(3), }, - [1542] = { - [sym_comment] = STATE(1542), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_error] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_RBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_as] = ACTIONS(936), - [anon_sym_where] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [aux_sym__immediate_decimal_token1] = ACTIONS(1209), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [aux_sym_unquoted_token2] = ACTIONS(4785), - [anon_sym_POUND] = ACTIONS(113), + [1744] = { + [sym_expr_unary] = STATE(5749), + [sym__expr_unary_minus] = STATE(5853), + [sym_expr_binary] = STATE(5749), + [sym__expr_binary_expression] = STATE(5821), + [sym_expr_parenthesized] = STATE(5749), + [sym__val_range] = STATE(10177), + [sym__value] = STATE(5749), + [sym_val_nothing] = STATE(5750), + [sym_val_bool] = STATE(5489), + [sym_val_variable] = STATE(5750), + [sym__var] = STATE(4999), + [sym_val_number] = STATE(5750), + [sym__val_number_decimal] = STATE(4168), + [sym__val_number] = STATE(5565), + [sym_val_duration] = STATE(5750), + [sym_val_filesize] = STATE(5750), + [sym_val_binary] = STATE(5750), + [sym_val_string] = STATE(5750), + [sym__str_double_quotes] = STATE(5570), + [sym_val_interpolated] = STATE(5750), + [sym__inter_single_quotes] = STATE(5595), + [sym__inter_double_quotes] = STATE(5600), + [sym_val_list] = STATE(5750), + [sym_val_record] = STATE(5750), + [sym_val_table] = STATE(5750), + [sym_val_closure] = STATE(5750), + [sym_unquoted] = STATE(5859), + [sym__unquoted_anonymous_prefix] = STATE(10738), + [sym_comment] = STATE(1744), + [anon_sym_LBRACK] = ACTIONS(4048), + [anon_sym_LPAREN] = ACTIONS(5249), + [anon_sym_DOLLAR] = ACTIONS(5251), + [anon_sym_DASH] = ACTIONS(4054), + [anon_sym_LBRACE] = ACTIONS(4056), + [anon_sym_DOT_DOT] = ACTIONS(5253), + [anon_sym_not] = ACTIONS(4060), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5255), + [anon_sym_DOT_DOT_LT] = ACTIONS(5255), + [anon_sym_null] = ACTIONS(4064), + [anon_sym_true] = ACTIONS(4066), + [anon_sym_false] = ACTIONS(4066), + [aux_sym__val_number_decimal_token1] = ACTIONS(4068), + [aux_sym__val_number_decimal_token2] = ACTIONS(4070), + [anon_sym_DOT2] = ACTIONS(5257), + [aux_sym__val_number_decimal_token3] = ACTIONS(4074), + [aux_sym__val_number_token1] = ACTIONS(4076), + [aux_sym__val_number_token2] = ACTIONS(4076), + [aux_sym__val_number_token3] = ACTIONS(4076), + [aux_sym__val_number_token4] = ACTIONS(5259), + [aux_sym__val_number_token5] = ACTIONS(5259), + [aux_sym__val_number_token6] = ACTIONS(5259), + [anon_sym_0b] = ACTIONS(4080), + [anon_sym_0o] = ACTIONS(4082), + [anon_sym_0x] = ACTIONS(4082), + [sym_val_date] = ACTIONS(4084), + [anon_sym_DQUOTE] = ACTIONS(4086), + [sym__str_single_quotes] = ACTIONS(4088), + [sym__str_back_ticks] = ACTIONS(4088), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4092), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5261), + [anon_sym_POUND] = ACTIONS(3), }, - [1543] = { - [sym_ctrl_do] = STATE(9531), - [sym_ctrl_if] = STATE(9531), - [sym_ctrl_match] = STATE(9531), - [sym_ctrl_try] = STATE(9531), - [sym__expression] = STATE(9531), - [sym_expr_unary] = STATE(6379), - [sym__expr_unary_minus] = STATE(6347), - [sym_expr_binary] = STATE(6379), - [sym__expr_binary_expression] = STATE(6784), - [sym_expr_parenthesized] = STATE(5573), - [sym_val_range] = STATE(8689), - [sym__value] = STATE(6379), - [sym_val_nothing] = STATE(6374), - [sym_val_bool] = STATE(6374), - [sym_val_variable] = STATE(5610), - [sym__var] = STATE(4886), - [sym_val_number] = STATE(6374), - [sym__val_number_decimal] = STATE(4698), - [sym__val_number] = STATE(5769), - [sym_val_duration] = STATE(6374), - [sym_val_filesize] = STATE(6374), - [sym_val_binary] = STATE(6374), - [sym_val_string] = STATE(6374), - [sym__str_double_quotes] = STATE(6386), - [sym_val_interpolated] = STATE(6374), - [sym__inter_single_quotes] = STATE(6363), - [sym__inter_double_quotes] = STATE(6365), - [sym_val_list] = STATE(6374), - [sym_val_record] = STATE(6374), - [sym_val_table] = STATE(6374), - [sym_val_closure] = STATE(6374), - [sym_comment] = STATE(1543), - [ts_builtin_sym_end] = ACTIONS(3914), - [anon_sym_SEMI] = ACTIONS(3912), - [anon_sym_LF] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(4787), - [anon_sym_LPAREN] = ACTIONS(4789), - [anon_sym_PIPE] = ACTIONS(3912), - [anon_sym_DOLLAR] = ACTIONS(1742), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_do] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_match] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(4791), - [anon_sym_DOT_DOT] = ACTIONS(59), - [anon_sym_try] = ACTIONS(61), - [anon_sym_not] = ACTIONS(77), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4793), - [anon_sym_DOT_DOT_LT] = ACTIONS(4793), - [anon_sym_null] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym__val_number_decimal_token1] = ACTIONS(85), - [aux_sym__val_number_decimal_token2] = ACTIONS(85), - [anon_sym_DOT2] = ACTIONS(89), - [aux_sym__val_number_decimal_token3] = ACTIONS(4795), - [aux_sym__val_number_token1] = ACTIONS(95), - [aux_sym__val_number_token2] = ACTIONS(95), - [aux_sym__val_number_token3] = ACTIONS(95), - [aux_sym__val_number_token4] = ACTIONS(95), - [aux_sym__val_number_token5] = ACTIONS(95), - [aux_sym__val_number_token6] = ACTIONS(95), - [anon_sym_0b] = ACTIONS(97), - [anon_sym_0o] = ACTIONS(99), - [anon_sym_0x] = ACTIONS(99), - [sym_val_date] = ACTIONS(4797), - [anon_sym_DQUOTE] = ACTIONS(4799), - [sym__str_single_quotes] = ACTIONS(4801), - [sym__str_back_ticks] = ACTIONS(4801), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4803), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4805), - [anon_sym_POUND] = ACTIONS(113), + [1745] = { + [sym_expr_unary] = STATE(5749), + [sym__expr_unary_minus] = STATE(5853), + [sym_expr_binary] = STATE(5749), + [sym__expr_binary_expression] = STATE(5825), + [sym_expr_parenthesized] = STATE(5749), + [sym__val_range] = STATE(10177), + [sym__value] = STATE(5749), + [sym_val_nothing] = STATE(5750), + [sym_val_bool] = STATE(5489), + [sym_val_variable] = STATE(5750), + [sym__var] = STATE(4999), + [sym_val_number] = STATE(5750), + [sym__val_number_decimal] = STATE(4168), + [sym__val_number] = STATE(5565), + [sym_val_duration] = STATE(5750), + [sym_val_filesize] = STATE(5750), + [sym_val_binary] = STATE(5750), + [sym_val_string] = STATE(5750), + [sym__str_double_quotes] = STATE(5570), + [sym_val_interpolated] = STATE(5750), + [sym__inter_single_quotes] = STATE(5595), + [sym__inter_double_quotes] = STATE(5600), + [sym_val_list] = STATE(5750), + [sym_val_record] = STATE(5750), + [sym_val_table] = STATE(5750), + [sym_val_closure] = STATE(5750), + [sym_unquoted] = STATE(5532), + [sym__unquoted_anonymous_prefix] = STATE(10738), + [sym_comment] = STATE(1745), + [anon_sym_LBRACK] = ACTIONS(4048), + [anon_sym_LPAREN] = ACTIONS(5249), + [anon_sym_DOLLAR] = ACTIONS(5251), + [anon_sym_DASH] = ACTIONS(4054), + [anon_sym_LBRACE] = ACTIONS(4056), + [anon_sym_DOT_DOT] = ACTIONS(5253), + [anon_sym_not] = ACTIONS(4060), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5255), + [anon_sym_DOT_DOT_LT] = ACTIONS(5255), + [anon_sym_null] = ACTIONS(4064), + [anon_sym_true] = ACTIONS(4066), + [anon_sym_false] = ACTIONS(4066), + [aux_sym__val_number_decimal_token1] = ACTIONS(4068), + [aux_sym__val_number_decimal_token2] = ACTIONS(4070), + [anon_sym_DOT2] = ACTIONS(5257), + [aux_sym__val_number_decimal_token3] = ACTIONS(4074), + [aux_sym__val_number_token1] = ACTIONS(4076), + [aux_sym__val_number_token2] = ACTIONS(4076), + [aux_sym__val_number_token3] = ACTIONS(4076), + [aux_sym__val_number_token4] = ACTIONS(5259), + [aux_sym__val_number_token5] = ACTIONS(5259), + [aux_sym__val_number_token6] = ACTIONS(5259), + [anon_sym_0b] = ACTIONS(4080), + [anon_sym_0o] = ACTIONS(4082), + [anon_sym_0x] = ACTIONS(4082), + [sym_val_date] = ACTIONS(4084), + [anon_sym_DQUOTE] = ACTIONS(4086), + [sym__str_single_quotes] = ACTIONS(4088), + [sym__str_back_ticks] = ACTIONS(4088), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4092), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5261), + [anon_sym_POUND] = ACTIONS(3), }, - [1544] = { - [sym_comment] = STATE(1544), - [ts_builtin_sym_end] = ACTIONS(3966), - [anon_sym_export] = ACTIONS(3964), - [anon_sym_alias] = ACTIONS(3964), - [anon_sym_let] = ACTIONS(3964), - [anon_sym_let_DASHenv] = ACTIONS(3964), - [anon_sym_mut] = ACTIONS(3964), - [anon_sym_const] = ACTIONS(3964), - [anon_sym_SEMI] = ACTIONS(3964), - [sym_cmd_identifier] = ACTIONS(3964), - [anon_sym_LF] = ACTIONS(3966), - [anon_sym_def] = ACTIONS(3964), - [anon_sym_export_DASHenv] = ACTIONS(3964), - [anon_sym_extern] = ACTIONS(3964), - [anon_sym_module] = ACTIONS(3964), - [anon_sym_use] = ACTIONS(3964), - [anon_sym_LBRACK] = ACTIONS(3964), - [anon_sym_LPAREN] = ACTIONS(3964), - [anon_sym_DOLLAR] = ACTIONS(3964), - [anon_sym_error] = ACTIONS(3964), - [anon_sym_DASH_DASH] = ACTIONS(3964), - [anon_sym_DASH] = ACTIONS(3964), - [anon_sym_break] = ACTIONS(3964), - [anon_sym_continue] = ACTIONS(3964), - [anon_sym_for] = ACTIONS(3964), - [anon_sym_loop] = ACTIONS(3964), - [anon_sym_while] = ACTIONS(3964), - [anon_sym_do] = ACTIONS(3964), - [anon_sym_if] = ACTIONS(3964), - [anon_sym_match] = ACTIONS(3964), - [anon_sym_LBRACE] = ACTIONS(3964), - [anon_sym_DOT_DOT] = ACTIONS(3964), - [anon_sym_try] = ACTIONS(3964), - [anon_sym_return] = ACTIONS(3964), - [anon_sym_source] = ACTIONS(3964), - [anon_sym_source_DASHenv] = ACTIONS(3964), - [anon_sym_register] = ACTIONS(3964), - [anon_sym_hide] = ACTIONS(3964), - [anon_sym_hide_DASHenv] = ACTIONS(3964), - [anon_sym_overlay] = ACTIONS(3964), - [anon_sym_as] = ACTIONS(3964), - [anon_sym_where] = ACTIONS(3964), - [anon_sym_not] = ACTIONS(3964), - [anon_sym_DOT_DOT2] = ACTIONS(4807), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3964), - [anon_sym_DOT_DOT_LT] = ACTIONS(3964), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4809), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4809), - [anon_sym_null] = ACTIONS(3964), - [anon_sym_true] = ACTIONS(3964), - [anon_sym_false] = ACTIONS(3964), - [aux_sym__val_number_decimal_token1] = ACTIONS(3964), - [aux_sym__val_number_decimal_token2] = ACTIONS(3964), - [anon_sym_DOT2] = ACTIONS(3964), - [aux_sym__val_number_decimal_token3] = ACTIONS(3964), - [aux_sym__val_number_token1] = ACTIONS(3964), - [aux_sym__val_number_token2] = ACTIONS(3964), - [aux_sym__val_number_token3] = ACTIONS(3964), - [aux_sym__val_number_token4] = ACTIONS(3964), - [aux_sym__val_number_token5] = ACTIONS(3964), - [aux_sym__val_number_token6] = ACTIONS(3964), - [anon_sym_0b] = ACTIONS(3964), - [anon_sym_0o] = ACTIONS(3964), - [anon_sym_0x] = ACTIONS(3964), - [sym_val_date] = ACTIONS(3964), - [anon_sym_DQUOTE] = ACTIONS(3964), - [sym__str_single_quotes] = ACTIONS(3964), - [sym__str_back_ticks] = ACTIONS(3964), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3964), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3964), - [anon_sym_CARET] = ACTIONS(3964), + [1746] = { + [sym_comment] = STATE(1746), + [ts_builtin_sym_end] = ACTIONS(1217), + [anon_sym_export] = ACTIONS(1215), + [anon_sym_alias] = ACTIONS(1215), + [anon_sym_let] = ACTIONS(1215), + [anon_sym_let_DASHenv] = ACTIONS(1215), + [anon_sym_mut] = ACTIONS(1215), + [anon_sym_const] = ACTIONS(1215), + [anon_sym_SEMI] = ACTIONS(1215), + [sym_cmd_identifier] = ACTIONS(1215), + [anon_sym_LF] = ACTIONS(1217), + [anon_sym_def] = ACTIONS(1215), + [anon_sym_export_DASHenv] = ACTIONS(1215), + [anon_sym_extern] = ACTIONS(1215), + [anon_sym_module] = ACTIONS(1215), + [anon_sym_use] = ACTIONS(1215), + [anon_sym_LBRACK] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1215), + [anon_sym_DOLLAR] = ACTIONS(1215), + [anon_sym_error] = ACTIONS(1215), + [anon_sym_DASH_DASH] = ACTIONS(1215), + [anon_sym_DASH] = ACTIONS(1215), + [anon_sym_break] = ACTIONS(1215), + [anon_sym_continue] = ACTIONS(1215), + [anon_sym_for] = ACTIONS(1215), + [anon_sym_loop] = ACTIONS(1215), + [anon_sym_while] = ACTIONS(1215), + [anon_sym_do] = ACTIONS(1215), + [anon_sym_if] = ACTIONS(1215), + [anon_sym_match] = ACTIONS(1215), + [anon_sym_LBRACE] = ACTIONS(1215), + [anon_sym_DOT_DOT] = ACTIONS(1215), + [anon_sym_try] = ACTIONS(1215), + [anon_sym_return] = ACTIONS(1215), + [anon_sym_source] = ACTIONS(1215), + [anon_sym_source_DASHenv] = ACTIONS(1215), + [anon_sym_register] = ACTIONS(1215), + [anon_sym_hide] = ACTIONS(1215), + [anon_sym_hide_DASHenv] = ACTIONS(1215), + [anon_sym_overlay] = ACTIONS(1215), + [anon_sym_as] = ACTIONS(1215), + [anon_sym_where] = ACTIONS(1215), + [anon_sym_not] = ACTIONS(1215), + [anon_sym_LPAREN2] = ACTIONS(1217), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1215), + [anon_sym_DOT_DOT_LT] = ACTIONS(1215), + [anon_sym_null] = ACTIONS(1215), + [anon_sym_true] = ACTIONS(1215), + [anon_sym_false] = ACTIONS(1215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1215), + [aux_sym__val_number_decimal_token2] = ACTIONS(1215), + [anon_sym_DOT2] = ACTIONS(1215), + [aux_sym__val_number_decimal_token3] = ACTIONS(1215), + [aux_sym__val_number_token1] = ACTIONS(1215), + [aux_sym__val_number_token2] = ACTIONS(1215), + [aux_sym__val_number_token3] = ACTIONS(1215), + [aux_sym__val_number_token4] = ACTIONS(1215), + [aux_sym__val_number_token5] = ACTIONS(1215), + [aux_sym__val_number_token6] = ACTIONS(1215), + [anon_sym_0b] = ACTIONS(1215), + [anon_sym_0o] = ACTIONS(1215), + [anon_sym_0x] = ACTIONS(1215), + [sym_val_date] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1215), + [sym__str_single_quotes] = ACTIONS(1215), + [sym__str_back_ticks] = ACTIONS(1215), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1215), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), + [anon_sym_CARET] = ACTIONS(1215), [anon_sym_POUND] = ACTIONS(113), }, - [1545] = { - [sym_path] = STATE(1940), - [sym_comment] = STATE(1545), - [aux_sym_cell_path_repeat1] = STATE(1556), - [anon_sym_SEMI] = ACTIONS(987), - [anon_sym_LF] = ACTIONS(989), - [anon_sym_LBRACK] = ACTIONS(987), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_RPAREN] = ACTIONS(987), - [anon_sym_PIPE] = ACTIONS(987), - [anon_sym_DOLLAR] = ACTIONS(987), - [anon_sym_GT] = ACTIONS(987), - [anon_sym_DASH_DASH] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_in] = ACTIONS(987), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_RBRACE] = ACTIONS(987), - [anon_sym_DOT_DOT] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(987), - [anon_sym_STAR_STAR] = ACTIONS(987), - [anon_sym_PLUS_PLUS] = ACTIONS(987), - [anon_sym_SLASH] = ACTIONS(987), - [anon_sym_mod] = ACTIONS(987), - [anon_sym_SLASH_SLASH] = ACTIONS(987), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_bit_DASHshl] = ACTIONS(987), - [anon_sym_bit_DASHshr] = ACTIONS(987), - [anon_sym_EQ_EQ] = ACTIONS(987), - [anon_sym_BANG_EQ] = ACTIONS(987), - [anon_sym_LT2] = ACTIONS(987), - [anon_sym_LT_EQ] = ACTIONS(987), - [anon_sym_GT_EQ] = ACTIONS(987), - [anon_sym_not_DASHin] = ACTIONS(987), - [anon_sym_starts_DASHwith] = ACTIONS(987), - [anon_sym_ends_DASHwith] = ACTIONS(987), - [anon_sym_EQ_TILDE] = ACTIONS(987), - [anon_sym_BANG_TILDE] = ACTIONS(987), - [anon_sym_bit_DASHand] = ACTIONS(987), - [anon_sym_bit_DASHxor] = ACTIONS(987), - [anon_sym_bit_DASHor] = ACTIONS(987), - [anon_sym_and] = ACTIONS(987), - [anon_sym_xor] = ACTIONS(987), - [anon_sym_or] = ACTIONS(987), - [anon_sym_not] = ACTIONS(987), - [anon_sym_DOT_DOT2] = ACTIONS(987), - [anon_sym_DOT] = ACTIONS(4241), - [anon_sym_DOT_DOT_EQ] = ACTIONS(987), - [anon_sym_DOT_DOT_LT] = ACTIONS(987), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(989), - [anon_sym_DOT_DOT_LT2] = ACTIONS(989), - [anon_sym_null] = ACTIONS(987), - [anon_sym_true] = ACTIONS(987), - [anon_sym_false] = ACTIONS(987), - [aux_sym__val_number_decimal_token1] = ACTIONS(987), - [aux_sym__val_number_decimal_token2] = ACTIONS(987), - [anon_sym_DOT2] = ACTIONS(987), - [aux_sym__val_number_decimal_token3] = ACTIONS(987), - [aux_sym__val_number_token1] = ACTIONS(987), - [aux_sym__val_number_token2] = ACTIONS(987), - [aux_sym__val_number_token3] = ACTIONS(987), - [aux_sym__val_number_token4] = ACTIONS(987), - [aux_sym__val_number_token5] = ACTIONS(987), - [aux_sym__val_number_token6] = ACTIONS(987), - [anon_sym_0b] = ACTIONS(987), - [anon_sym_0o] = ACTIONS(987), - [anon_sym_0x] = ACTIONS(987), - [sym_val_date] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(987), - [sym__str_single_quotes] = ACTIONS(987), - [sym__str_back_ticks] = ACTIONS(987), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(987), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(987), + [1747] = { + [sym_comment] = STATE(1747), + [anon_sym_export] = ACTIONS(938), + [anon_sym_alias] = ACTIONS(938), + [anon_sym_let] = ACTIONS(938), + [anon_sym_let_DASHenv] = ACTIONS(938), + [anon_sym_mut] = ACTIONS(938), + [anon_sym_const] = ACTIONS(938), + [anon_sym_SEMI] = ACTIONS(938), + [sym_cmd_identifier] = ACTIONS(938), + [anon_sym_LF] = ACTIONS(940), + [anon_sym_def] = ACTIONS(938), + [anon_sym_export_DASHenv] = ACTIONS(938), + [anon_sym_extern] = ACTIONS(938), + [anon_sym_module] = ACTIONS(938), + [anon_sym_use] = ACTIONS(938), + [anon_sym_LBRACK] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(938), + [anon_sym_RPAREN] = ACTIONS(938), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_error] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_break] = ACTIONS(938), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_for] = ACTIONS(938), + [anon_sym_loop] = ACTIONS(938), + [anon_sym_while] = ACTIONS(938), + [anon_sym_do] = ACTIONS(938), + [anon_sym_if] = ACTIONS(938), + [anon_sym_match] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_RBRACE] = ACTIONS(938), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_try] = ACTIONS(938), + [anon_sym_return] = ACTIONS(938), + [anon_sym_source] = ACTIONS(938), + [anon_sym_source_DASHenv] = ACTIONS(938), + [anon_sym_register] = ACTIONS(938), + [anon_sym_hide] = ACTIONS(938), + [anon_sym_hide_DASHenv] = ACTIONS(938), + [anon_sym_overlay] = ACTIONS(938), + [anon_sym_as] = ACTIONS(938), + [anon_sym_where] = ACTIONS(938), + [anon_sym_not] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ] = ACTIONS(938), + [anon_sym_DOT_DOT_LT] = ACTIONS(938), + [anon_sym_null] = ACTIONS(938), + [anon_sym_true] = ACTIONS(938), + [anon_sym_false] = ACTIONS(938), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(938), + [anon_sym_DOT2] = ACTIONS(938), + [aux_sym__val_number_decimal_token3] = ACTIONS(938), + [aux_sym__val_number_token1] = ACTIONS(938), + [aux_sym__val_number_token2] = ACTIONS(938), + [aux_sym__val_number_token3] = ACTIONS(938), + [aux_sym__val_number_token4] = ACTIONS(938), + [aux_sym__val_number_token5] = ACTIONS(938), + [aux_sym__val_number_token6] = ACTIONS(938), + [anon_sym_0b] = ACTIONS(938), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym__str_single_quotes] = ACTIONS(938), + [sym__str_back_ticks] = ACTIONS(938), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(938), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(938), + [anon_sym_CARET] = ACTIONS(938), [anon_sym_POUND] = ACTIONS(113), }, - [1546] = { - [sym_comment] = STATE(1546), - [anon_sym_LBRACK] = ACTIONS(1170), - [anon_sym_COMMA] = ACTIONS(1170), - [anon_sym_RBRACK] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1170), - [anon_sym_DOLLAR] = ACTIONS(1170), - [anon_sym_GT] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1168), - [anon_sym_in] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1170), - [anon_sym_DOT_DOT] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_STAR_STAR] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1170), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_mod] = ACTIONS(1170), - [anon_sym_SLASH_SLASH] = ACTIONS(1170), - [anon_sym_PLUS] = ACTIONS(1168), - [anon_sym_bit_DASHshl] = ACTIONS(1170), - [anon_sym_bit_DASHshr] = ACTIONS(1170), - [anon_sym_EQ_EQ] = ACTIONS(1170), - [anon_sym_BANG_EQ] = ACTIONS(1170), - [anon_sym_LT2] = ACTIONS(1168), - [anon_sym_LT_EQ] = ACTIONS(1170), - [anon_sym_GT_EQ] = ACTIONS(1170), - [anon_sym_not_DASHin] = ACTIONS(1170), - [anon_sym_starts_DASHwith] = ACTIONS(1170), - [anon_sym_ends_DASHwith] = ACTIONS(1170), - [anon_sym_EQ_TILDE] = ACTIONS(1170), - [anon_sym_BANG_TILDE] = ACTIONS(1170), - [anon_sym_bit_DASHand] = ACTIONS(1170), - [anon_sym_bit_DASHxor] = ACTIONS(1170), - [anon_sym_bit_DASHor] = ACTIONS(1170), - [anon_sym_and] = ACTIONS(1170), - [anon_sym_xor] = ACTIONS(1170), - [anon_sym_or] = ACTIONS(1170), - [anon_sym_DOT_DOT2] = ACTIONS(1168), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1168), - [anon_sym_DOT_DOT_LT] = ACTIONS(1168), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1170), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1170), - [anon_sym_null] = ACTIONS(1170), - [anon_sym_true] = ACTIONS(1170), - [anon_sym_false] = ACTIONS(1170), - [aux_sym__val_number_decimal_token1] = ACTIONS(1168), - [aux_sym__val_number_decimal_token2] = ACTIONS(1170), - [anon_sym_DOT2] = ACTIONS(1168), - [aux_sym__val_number_decimal_token3] = ACTIONS(1170), - [aux_sym__val_number_token1] = ACTIONS(1170), - [aux_sym__val_number_token2] = ACTIONS(1170), - [aux_sym__val_number_token3] = ACTIONS(1170), - [aux_sym__val_number_token4] = ACTIONS(1170), - [aux_sym__val_number_token5] = ACTIONS(1170), - [aux_sym__val_number_token6] = ACTIONS(1170), - [anon_sym_0b] = ACTIONS(1168), - [anon_sym_0o] = ACTIONS(1168), - [anon_sym_0x] = ACTIONS(1168), - [sym_val_date] = ACTIONS(1170), - [anon_sym_DQUOTE] = ACTIONS(1170), - [sym__str_single_quotes] = ACTIONS(1170), - [sym__str_back_ticks] = ACTIONS(1170), - [anon_sym_err_GT] = ACTIONS(1170), - [anon_sym_out_GT] = ACTIONS(1170), - [anon_sym_e_GT] = ACTIONS(1170), - [anon_sym_o_GT] = ACTIONS(1170), - [anon_sym_err_PLUSout_GT] = ACTIONS(1170), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1170), - [anon_sym_o_PLUSe_GT] = ACTIONS(1170), - [anon_sym_e_PLUSo_GT] = ACTIONS(1170), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1168), + [1748] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5173), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(4837), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3789), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4749), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1748), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5263), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5265), + [anon_sym_DOT_DOT_LT] = ACTIONS(5265), + [anon_sym_null] = ACTIONS(5267), + [anon_sym_true] = ACTIONS(5269), + [anon_sym_false] = ACTIONS(5269), + [aux_sym__val_number_decimal_token1] = ACTIONS(5271), + [aux_sym__val_number_decimal_token2] = ACTIONS(5273), + [anon_sym_DOT2] = ACTIONS(5275), + [aux_sym__val_number_decimal_token3] = ACTIONS(5277), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5279), + [aux_sym__val_number_token5] = ACTIONS(5279), + [aux_sym__val_number_token6] = ACTIONS(5279), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5281), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), [anon_sym_POUND] = ACTIONS(3), }, - [1547] = { - [sym_comment] = STATE(1547), - [ts_builtin_sym_end] = ACTIONS(4045), - [anon_sym_export] = ACTIONS(4043), - [anon_sym_alias] = ACTIONS(4043), - [anon_sym_let] = ACTIONS(4043), - [anon_sym_let_DASHenv] = ACTIONS(4043), - [anon_sym_mut] = ACTIONS(4043), - [anon_sym_const] = ACTIONS(4043), - [anon_sym_SEMI] = ACTIONS(4043), - [sym_cmd_identifier] = ACTIONS(4043), - [anon_sym_LF] = ACTIONS(4045), - [anon_sym_def] = ACTIONS(4043), - [anon_sym_export_DASHenv] = ACTIONS(4043), - [anon_sym_extern] = ACTIONS(4043), - [anon_sym_module] = ACTIONS(4043), - [anon_sym_use] = ACTIONS(4043), - [anon_sym_LBRACK] = ACTIONS(4043), - [anon_sym_LPAREN] = ACTIONS(4043), - [anon_sym_DOLLAR] = ACTIONS(4043), - [anon_sym_error] = ACTIONS(4043), - [anon_sym_DASH_DASH] = ACTIONS(4043), - [anon_sym_DASH] = ACTIONS(4043), - [anon_sym_break] = ACTIONS(4043), - [anon_sym_continue] = ACTIONS(4043), - [anon_sym_for] = ACTIONS(4043), - [anon_sym_loop] = ACTIONS(4043), - [anon_sym_while] = ACTIONS(4043), - [anon_sym_do] = ACTIONS(4043), - [anon_sym_if] = ACTIONS(4043), - [anon_sym_match] = ACTIONS(4043), - [anon_sym_LBRACE] = ACTIONS(4043), - [anon_sym_DOT_DOT] = ACTIONS(4043), - [anon_sym_try] = ACTIONS(4043), - [anon_sym_return] = ACTIONS(4043), - [anon_sym_source] = ACTIONS(4043), - [anon_sym_source_DASHenv] = ACTIONS(4043), - [anon_sym_register] = ACTIONS(4043), - [anon_sym_hide] = ACTIONS(4043), - [anon_sym_hide_DASHenv] = ACTIONS(4043), - [anon_sym_overlay] = ACTIONS(4043), - [anon_sym_as] = ACTIONS(4043), - [anon_sym_where] = ACTIONS(4043), - [anon_sym_not] = ACTIONS(4043), - [anon_sym_DOT_DOT2] = ACTIONS(4811), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4043), - [anon_sym_DOT_DOT_LT] = ACTIONS(4043), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4813), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4813), - [anon_sym_null] = ACTIONS(4043), - [anon_sym_true] = ACTIONS(4043), - [anon_sym_false] = ACTIONS(4043), - [aux_sym__val_number_decimal_token1] = ACTIONS(4043), - [aux_sym__val_number_decimal_token2] = ACTIONS(4043), - [anon_sym_DOT2] = ACTIONS(4043), - [aux_sym__val_number_decimal_token3] = ACTIONS(4043), - [aux_sym__val_number_token1] = ACTIONS(4043), - [aux_sym__val_number_token2] = ACTIONS(4043), - [aux_sym__val_number_token3] = ACTIONS(4043), - [aux_sym__val_number_token4] = ACTIONS(4043), - [aux_sym__val_number_token5] = ACTIONS(4043), - [aux_sym__val_number_token6] = ACTIONS(4043), - [anon_sym_0b] = ACTIONS(4043), - [anon_sym_0o] = ACTIONS(4043), - [anon_sym_0x] = ACTIONS(4043), - [sym_val_date] = ACTIONS(4043), - [anon_sym_DQUOTE] = ACTIONS(4043), - [sym__str_single_quotes] = ACTIONS(4043), - [sym__str_back_ticks] = ACTIONS(4043), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4043), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4043), - [anon_sym_CARET] = ACTIONS(4043), - [anon_sym_POUND] = ACTIONS(113), + [1749] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5174), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(4837), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3789), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4750), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1749), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5263), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5265), + [anon_sym_DOT_DOT_LT] = ACTIONS(5265), + [anon_sym_null] = ACTIONS(5267), + [anon_sym_true] = ACTIONS(5269), + [anon_sym_false] = ACTIONS(5269), + [aux_sym__val_number_decimal_token1] = ACTIONS(5271), + [aux_sym__val_number_decimal_token2] = ACTIONS(5273), + [anon_sym_DOT2] = ACTIONS(5275), + [aux_sym__val_number_decimal_token3] = ACTIONS(5277), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5279), + [aux_sym__val_number_token5] = ACTIONS(5279), + [aux_sym__val_number_token6] = ACTIONS(5279), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5281), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), }, - [1548] = { - [sym_comment] = STATE(1548), - [ts_builtin_sym_end] = ACTIONS(2439), - [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), - [anon_sym_SEMI] = ACTIONS(2437), - [sym_cmd_identifier] = ACTIONS(2437), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_DASH_DASH] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_as] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_not] = ACTIONS(2437), - [anon_sym_LPAREN2] = ACTIONS(2439), - [anon_sym_DOT] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [anon_sym_DOT2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2437), - [anon_sym_0o] = ACTIONS(2437), - [anon_sym_0x] = ACTIONS(2437), - [sym_val_date] = 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_CARET] = ACTIONS(2437), - [aux_sym_unquoted_token2] = ACTIONS(2437), - [anon_sym_POUND] = ACTIONS(113), + [1750] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5175), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(4837), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3789), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4751), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1750), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5263), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5265), + [anon_sym_DOT_DOT_LT] = ACTIONS(5265), + [anon_sym_null] = ACTIONS(5267), + [anon_sym_true] = ACTIONS(5269), + [anon_sym_false] = ACTIONS(5269), + [aux_sym__val_number_decimal_token1] = ACTIONS(5271), + [aux_sym__val_number_decimal_token2] = ACTIONS(5273), + [anon_sym_DOT2] = ACTIONS(5275), + [aux_sym__val_number_decimal_token3] = ACTIONS(5277), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5279), + [aux_sym__val_number_token5] = ACTIONS(5279), + [aux_sym__val_number_token6] = ACTIONS(5279), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5281), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), }, - [1549] = { - [sym__match_pattern_expression] = STATE(4408), - [sym__match_pattern_value] = STATE(4362), - [sym__match_pattern_list] = STATE(4365), - [sym__match_pattern_rest] = STATE(11250), - [sym__match_pattern_record] = STATE(4367), - [sym__expr_unary_minus] = STATE(4368), - [sym_expr_parenthesized] = STATE(3973), - [sym_val_range] = STATE(4362), - [sym__val_range] = STATE(10474), - [sym_val_nothing] = STATE(4371), - [sym_val_bool] = STATE(4248), - [sym_val_variable] = STATE(3974), - [sym__var] = STATE(3741), - [sym_val_number] = STATE(4371), - [sym__val_number_decimal] = STATE(3705), - [sym__val_number] = STATE(4345), - [sym_val_duration] = STATE(4371), - [sym_val_filesize] = STATE(4371), - [sym_val_binary] = STATE(4371), - [sym_val_string] = STATE(4371), - [sym__str_double_quotes] = STATE(4434), - [sym_val_list] = STATE(11421), - [sym__list_item_starts_with_sign] = STATE(4508), - [sym_val_table] = STATE(4371), - [sym_short_flag] = STATE(4508), - [sym_long_flag] = STATE(4508), - [sym_long_flag_equals_value] = STATE(4347), - [sym__unquoted_in_list] = STATE(4508), - [sym__unquoted_anonymous_prefix] = STATE(11104), - [sym_comment] = STATE(1549), - [aux_sym__match_pattern_list_repeat1] = STATE(1599), - [anon_sym_LBRACK] = ACTIONS(4741), - [anon_sym_RBRACK] = ACTIONS(4743), - [anon_sym_LPAREN] = ACTIONS(3399), - [anon_sym_DOLLAR] = ACTIONS(4745), - [anon_sym_DASH_DASH] = ACTIONS(3403), - [anon_sym_DASH] = ACTIONS(4747), - [anon_sym_LBRACE] = ACTIONS(4749), - [anon_sym_DOT_DOT] = ACTIONS(4751), - [anon_sym_PLUS] = ACTIONS(4753), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4755), - [anon_sym_DOT_DOT_LT] = ACTIONS(4755), - [anon_sym_null] = ACTIONS(4757), - [anon_sym_true] = ACTIONS(4759), - [anon_sym_false] = ACTIONS(4759), - [aux_sym__val_number_decimal_token1] = ACTIONS(4761), - [aux_sym__val_number_decimal_token2] = ACTIONS(4763), - [anon_sym_DOT2] = ACTIONS(4765), - [aux_sym__val_number_decimal_token3] = ACTIONS(4767), - [aux_sym__val_number_token1] = ACTIONS(3425), - [aux_sym__val_number_token2] = ACTIONS(3425), - [aux_sym__val_number_token3] = ACTIONS(3425), - [aux_sym__val_number_token4] = ACTIONS(4769), - [aux_sym__val_number_token5] = ACTIONS(4769), - [aux_sym__val_number_token6] = ACTIONS(4769), - [anon_sym_0b] = ACTIONS(3429), - [anon_sym_0o] = ACTIONS(3431), - [anon_sym_0x] = ACTIONS(3431), - [sym_val_date] = ACTIONS(4771), - [anon_sym_DQUOTE] = ACTIONS(3435), - [sym__str_single_quotes] = ACTIONS(3437), - [sym__str_back_ticks] = ACTIONS(3437), - [anon_sym_err_GT] = ACTIONS(1699), - [anon_sym_out_GT] = ACTIONS(1699), - [anon_sym_e_GT] = ACTIONS(1699), - [anon_sym_o_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT] = ACTIONS(1699), - [aux_sym__unquoted_in_list_token1] = ACTIONS(4773), + [1751] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5176), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(4837), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3789), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4752), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1751), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5263), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5265), + [anon_sym_DOT_DOT_LT] = ACTIONS(5265), + [anon_sym_null] = ACTIONS(5267), + [anon_sym_true] = ACTIONS(5269), + [anon_sym_false] = ACTIONS(5269), + [aux_sym__val_number_decimal_token1] = ACTIONS(5271), + [aux_sym__val_number_decimal_token2] = ACTIONS(5273), + [anon_sym_DOT2] = ACTIONS(5275), + [aux_sym__val_number_decimal_token3] = ACTIONS(5277), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5279), + [aux_sym__val_number_token5] = ACTIONS(5279), + [aux_sym__val_number_token6] = ACTIONS(5279), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5281), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), [anon_sym_POUND] = ACTIONS(3), }, - [1550] = { - [sym_comment] = STATE(1550), - [anon_sym_export] = ACTIONS(2547), - [anon_sym_alias] = ACTIONS(2547), - [anon_sym_let] = ACTIONS(2547), - [anon_sym_let_DASHenv] = ACTIONS(2547), - [anon_sym_mut] = ACTIONS(2547), - [anon_sym_const] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [sym_cmd_identifier] = ACTIONS(2547), - [anon_sym_LF] = ACTIONS(2549), - [anon_sym_def] = ACTIONS(2547), - [anon_sym_export_DASHenv] = ACTIONS(2547), - [anon_sym_extern] = ACTIONS(2547), - [anon_sym_module] = ACTIONS(2547), - [anon_sym_use] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_RPAREN] = ACTIONS(2547), - [anon_sym_DOLLAR] = ACTIONS(2547), - [anon_sym_error] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_break] = ACTIONS(2547), - [anon_sym_continue] = ACTIONS(2547), - [anon_sym_for] = ACTIONS(2547), - [anon_sym_loop] = ACTIONS(2547), - [anon_sym_while] = ACTIONS(2547), - [anon_sym_do] = ACTIONS(2547), - [anon_sym_if] = ACTIONS(2547), - [anon_sym_match] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2547), - [anon_sym_RBRACE] = ACTIONS(2547), - [anon_sym_DOT_DOT] = ACTIONS(2547), - [anon_sym_try] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2547), - [anon_sym_source] = ACTIONS(2547), - [anon_sym_source_DASHenv] = ACTIONS(2547), - [anon_sym_register] = ACTIONS(2547), - [anon_sym_hide] = ACTIONS(2547), - [anon_sym_hide_DASHenv] = ACTIONS(2547), - [anon_sym_overlay] = ACTIONS(2547), - [anon_sym_where] = ACTIONS(2547), - [anon_sym_not] = ACTIONS(2547), - [anon_sym_DOT_DOT2] = ACTIONS(2547), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), - [anon_sym_DOT_DOT_LT] = ACTIONS(2547), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2549), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2549), - [aux_sym__immediate_decimal_token2] = ACTIONS(4815), - [anon_sym_null] = ACTIONS(2547), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [aux_sym__val_number_decimal_token1] = ACTIONS(2547), - [aux_sym__val_number_decimal_token2] = ACTIONS(2547), - [anon_sym_DOT2] = ACTIONS(2547), - [aux_sym__val_number_decimal_token3] = ACTIONS(2547), - [aux_sym__val_number_token1] = ACTIONS(2547), - [aux_sym__val_number_token2] = ACTIONS(2547), - [aux_sym__val_number_token3] = ACTIONS(2547), - [aux_sym__val_number_token4] = ACTIONS(2547), - [aux_sym__val_number_token5] = ACTIONS(2547), - [aux_sym__val_number_token6] = ACTIONS(2547), - [anon_sym_0b] = ACTIONS(2547), - [anon_sym_0o] = ACTIONS(2547), - [anon_sym_0x] = ACTIONS(2547), - [sym_val_date] = ACTIONS(2547), - [anon_sym_DQUOTE] = ACTIONS(2547), - [sym__str_single_quotes] = ACTIONS(2547), - [sym__str_back_ticks] = ACTIONS(2547), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2547), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2547), - [anon_sym_POUND] = ACTIONS(113), + [1752] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5177), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(4837), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3789), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4753), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1752), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5263), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5265), + [anon_sym_DOT_DOT_LT] = ACTIONS(5265), + [anon_sym_null] = ACTIONS(5267), + [anon_sym_true] = ACTIONS(5269), + [anon_sym_false] = ACTIONS(5269), + [aux_sym__val_number_decimal_token1] = ACTIONS(5271), + [aux_sym__val_number_decimal_token2] = ACTIONS(5273), + [anon_sym_DOT2] = ACTIONS(5275), + [aux_sym__val_number_decimal_token3] = ACTIONS(5277), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5279), + [aux_sym__val_number_token5] = ACTIONS(5279), + [aux_sym__val_number_token6] = ACTIONS(5279), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5281), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), }, - [1551] = { - [sym_comment] = STATE(1551), - [ts_builtin_sym_end] = ACTIONS(2549), - [anon_sym_export] = ACTIONS(2547), - [anon_sym_alias] = ACTIONS(2547), - [anon_sym_let] = ACTIONS(2547), - [anon_sym_let_DASHenv] = ACTIONS(2547), - [anon_sym_mut] = ACTIONS(2547), - [anon_sym_const] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [sym_cmd_identifier] = ACTIONS(2547), - [anon_sym_LF] = ACTIONS(2549), - [anon_sym_def] = ACTIONS(2547), - [anon_sym_export_DASHenv] = ACTIONS(2547), - [anon_sym_extern] = ACTIONS(2547), - [anon_sym_module] = ACTIONS(2547), - [anon_sym_use] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_DOLLAR] = ACTIONS(2547), - [anon_sym_error] = ACTIONS(2547), - [anon_sym_DASH_DASH] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_break] = ACTIONS(2547), - [anon_sym_continue] = ACTIONS(2547), - [anon_sym_for] = ACTIONS(2547), - [anon_sym_loop] = ACTIONS(2547), - [anon_sym_while] = ACTIONS(2547), - [anon_sym_do] = ACTIONS(2547), - [anon_sym_if] = ACTIONS(2547), - [anon_sym_match] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2547), - [anon_sym_DOT_DOT] = ACTIONS(2547), - [anon_sym_try] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2547), - [anon_sym_source] = ACTIONS(2547), - [anon_sym_source_DASHenv] = ACTIONS(2547), - [anon_sym_register] = ACTIONS(2547), - [anon_sym_hide] = ACTIONS(2547), - [anon_sym_hide_DASHenv] = ACTIONS(2547), - [anon_sym_overlay] = ACTIONS(2547), - [anon_sym_as] = ACTIONS(2547), - [anon_sym_where] = ACTIONS(2547), - [anon_sym_not] = ACTIONS(2547), - [anon_sym_LPAREN2] = ACTIONS(2549), - [anon_sym_DOT] = ACTIONS(2547), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), - [anon_sym_DOT_DOT_LT] = ACTIONS(2547), - [anon_sym_null] = ACTIONS(2547), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [aux_sym__val_number_decimal_token1] = ACTIONS(2547), - [aux_sym__val_number_decimal_token2] = ACTIONS(2547), - [anon_sym_DOT2] = ACTIONS(2547), - [aux_sym__val_number_decimal_token3] = ACTIONS(2547), - [aux_sym__val_number_token1] = ACTIONS(2547), - [aux_sym__val_number_token2] = ACTIONS(2547), - [aux_sym__val_number_token3] = ACTIONS(2547), - [aux_sym__val_number_token4] = ACTIONS(2547), - [aux_sym__val_number_token5] = ACTIONS(2547), - [aux_sym__val_number_token6] = ACTIONS(2547), - [anon_sym_0b] = ACTIONS(2547), - [anon_sym_0o] = ACTIONS(2547), - [anon_sym_0x] = ACTIONS(2547), - [sym_val_date] = ACTIONS(2547), - [anon_sym_DQUOTE] = ACTIONS(2547), - [sym__str_single_quotes] = ACTIONS(2547), - [sym__str_back_ticks] = ACTIONS(2547), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2547), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2547), - [aux_sym_unquoted_token2] = ACTIONS(2547), - [anon_sym_POUND] = ACTIONS(113), + [1753] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5178), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(4837), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3789), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4754), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1753), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5263), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5265), + [anon_sym_DOT_DOT_LT] = ACTIONS(5265), + [anon_sym_null] = ACTIONS(5267), + [anon_sym_true] = ACTIONS(5269), + [anon_sym_false] = ACTIONS(5269), + [aux_sym__val_number_decimal_token1] = ACTIONS(5271), + [aux_sym__val_number_decimal_token2] = ACTIONS(5273), + [anon_sym_DOT2] = ACTIONS(5275), + [aux_sym__val_number_decimal_token3] = ACTIONS(5277), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5279), + [aux_sym__val_number_token5] = ACTIONS(5279), + [aux_sym__val_number_token6] = ACTIONS(5279), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5281), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), }, - [1552] = { - [sym__expression] = STATE(10820), - [sym_expr_unary] = STATE(6243), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6243), - [sym__expr_binary_expression] = STATE(6786), - [sym_expr_parenthesized] = STATE(6385), - [sym_val_range] = STATE(7168), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6243), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6719), - [sym_val_variable] = STATE(6316), - [sym__var] = STATE(4486), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5316), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(10751), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(1552), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_DOLLAR] = ACTIONS(2690), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(3888), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3892), - [anon_sym_DOT_DOT_LT] = ACTIONS(3892), - [anon_sym_null] = ACTIONS(3894), - [anon_sym_true] = ACTIONS(3896), - [anon_sym_false] = ACTIONS(3896), - [aux_sym__val_number_decimal_token1] = ACTIONS(3898), - [aux_sym__val_number_decimal_token2] = ACTIONS(3900), - [anon_sym_DOT2] = ACTIONS(3902), - [aux_sym__val_number_decimal_token3] = ACTIONS(3904), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(3906), - [aux_sym__val_number_token5] = ACTIONS(3906), - [aux_sym__val_number_token6] = ACTIONS(3906), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(3908), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), + [1754] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5179), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(4837), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3789), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4755), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1754), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5263), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5265), + [anon_sym_DOT_DOT_LT] = ACTIONS(5265), + [anon_sym_null] = ACTIONS(5267), + [anon_sym_true] = ACTIONS(5269), + [anon_sym_false] = ACTIONS(5269), + [aux_sym__val_number_decimal_token1] = ACTIONS(5271), + [aux_sym__val_number_decimal_token2] = ACTIONS(5273), + [anon_sym_DOT2] = ACTIONS(5275), + [aux_sym__val_number_decimal_token3] = ACTIONS(5277), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5279), + [aux_sym__val_number_token5] = ACTIONS(5279), + [aux_sym__val_number_token6] = ACTIONS(5279), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5281), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), [anon_sym_POUND] = ACTIONS(3), }, - [1553] = { - [sym_comment] = STATE(1553), - [anon_sym_LBRACK] = ACTIONS(1059), - [anon_sym_COMMA] = ACTIONS(1059), - [anon_sym_RBRACK] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_DASH_DASH] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_QMARK2] = ACTIONS(1059), - [anon_sym_STAR_STAR] = ACTIONS(1059), - [anon_sym_PLUS_PLUS] = ACTIONS(1059), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_mod] = ACTIONS(1059), - [anon_sym_SLASH_SLASH] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_bit_DASHshl] = ACTIONS(1059), - [anon_sym_bit_DASHshr] = ACTIONS(1059), - [anon_sym_EQ_EQ] = ACTIONS(1059), - [anon_sym_BANG_EQ] = ACTIONS(1059), - [anon_sym_LT2] = ACTIONS(1059), - [anon_sym_LT_EQ] = ACTIONS(1059), - [anon_sym_GT_EQ] = ACTIONS(1059), - [anon_sym_not_DASHin] = ACTIONS(1059), - [anon_sym_starts_DASHwith] = ACTIONS(1059), - [anon_sym_ends_DASHwith] = ACTIONS(1059), - [anon_sym_EQ_TILDE] = ACTIONS(1059), - [anon_sym_BANG_TILDE] = ACTIONS(1059), - [anon_sym_bit_DASHand] = ACTIONS(1059), - [anon_sym_bit_DASHxor] = ACTIONS(1059), - [anon_sym_bit_DASHor] = ACTIONS(1059), - [anon_sym_and] = ACTIONS(1059), - [anon_sym_xor] = ACTIONS(1059), - [anon_sym_or] = ACTIONS(1059), - [anon_sym_DOT] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1059), - [anon_sym_DOT_DOT_LT] = ACTIONS(1059), - [anon_sym_null] = ACTIONS(1059), - [anon_sym_true] = ACTIONS(1059), - [anon_sym_false] = ACTIONS(1059), - [aux_sym__val_number_decimal_token1] = ACTIONS(1059), - [aux_sym__val_number_decimal_token2] = ACTIONS(1059), - [anon_sym_DOT2] = ACTIONS(1059), - [aux_sym__val_number_decimal_token3] = ACTIONS(1059), - [aux_sym__val_number_token1] = ACTIONS(1059), - [aux_sym__val_number_token2] = ACTIONS(1059), - [aux_sym__val_number_token3] = ACTIONS(1059), - [aux_sym__val_number_token4] = ACTIONS(1059), - [aux_sym__val_number_token5] = ACTIONS(1059), - [aux_sym__val_number_token6] = ACTIONS(1059), - [anon_sym_0b] = ACTIONS(1059), - [anon_sym_0o] = ACTIONS(1059), - [anon_sym_0x] = ACTIONS(1059), - [sym_val_date] = ACTIONS(1059), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym__str_single_quotes] = ACTIONS(1059), - [sym__str_back_ticks] = ACTIONS(1059), - [sym__entry_separator] = ACTIONS(1061), - [anon_sym_err_GT] = ACTIONS(1059), - [anon_sym_out_GT] = ACTIONS(1059), - [anon_sym_e_GT] = ACTIONS(1059), - [anon_sym_o_GT] = ACTIONS(1059), - [anon_sym_err_PLUSout_GT] = ACTIONS(1059), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1059), - [anon_sym_o_PLUSe_GT] = ACTIONS(1059), - [anon_sym_e_PLUSo_GT] = ACTIONS(1059), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1059), - [anon_sym_POUND] = ACTIONS(113), + [1755] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5180), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(4837), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3789), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4756), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1755), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5263), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5265), + [anon_sym_DOT_DOT_LT] = ACTIONS(5265), + [anon_sym_null] = ACTIONS(5267), + [anon_sym_true] = ACTIONS(5269), + [anon_sym_false] = ACTIONS(5269), + [aux_sym__val_number_decimal_token1] = ACTIONS(5271), + [aux_sym__val_number_decimal_token2] = ACTIONS(5273), + [anon_sym_DOT2] = ACTIONS(5275), + [aux_sym__val_number_decimal_token3] = ACTIONS(5277), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5279), + [aux_sym__val_number_token5] = ACTIONS(5279), + [aux_sym__val_number_token6] = ACTIONS(5279), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5281), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), }, - [1554] = { - [sym_comment] = STATE(1554), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_COMMA] = ACTIONS(1063), - [anon_sym_RBRACK] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_DASH_DASH] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_QMARK2] = ACTIONS(1063), - [anon_sym_STAR_STAR] = ACTIONS(1063), - [anon_sym_PLUS_PLUS] = ACTIONS(1063), - [anon_sym_SLASH] = ACTIONS(1063), - [anon_sym_mod] = ACTIONS(1063), - [anon_sym_SLASH_SLASH] = ACTIONS(1063), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_bit_DASHshl] = ACTIONS(1063), - [anon_sym_bit_DASHshr] = ACTIONS(1063), - [anon_sym_EQ_EQ] = ACTIONS(1063), - [anon_sym_BANG_EQ] = ACTIONS(1063), - [anon_sym_LT2] = ACTIONS(1063), - [anon_sym_LT_EQ] = ACTIONS(1063), - [anon_sym_GT_EQ] = ACTIONS(1063), - [anon_sym_not_DASHin] = ACTIONS(1063), - [anon_sym_starts_DASHwith] = ACTIONS(1063), - [anon_sym_ends_DASHwith] = ACTIONS(1063), - [anon_sym_EQ_TILDE] = ACTIONS(1063), - [anon_sym_BANG_TILDE] = ACTIONS(1063), - [anon_sym_bit_DASHand] = ACTIONS(1063), - [anon_sym_bit_DASHxor] = ACTIONS(1063), - [anon_sym_bit_DASHor] = ACTIONS(1063), - [anon_sym_and] = ACTIONS(1063), - [anon_sym_xor] = ACTIONS(1063), - [anon_sym_or] = ACTIONS(1063), - [anon_sym_DOT] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1063), - [anon_sym_DOT_DOT_LT] = ACTIONS(1063), - [anon_sym_null] = ACTIONS(1063), - [anon_sym_true] = ACTIONS(1063), - [anon_sym_false] = ACTIONS(1063), - [aux_sym__val_number_decimal_token1] = ACTIONS(1063), - [aux_sym__val_number_decimal_token2] = ACTIONS(1063), - [anon_sym_DOT2] = ACTIONS(1063), - [aux_sym__val_number_decimal_token3] = ACTIONS(1063), - [aux_sym__val_number_token1] = ACTIONS(1063), - [aux_sym__val_number_token2] = ACTIONS(1063), - [aux_sym__val_number_token3] = ACTIONS(1063), - [aux_sym__val_number_token4] = ACTIONS(1063), - [aux_sym__val_number_token5] = ACTIONS(1063), - [aux_sym__val_number_token6] = ACTIONS(1063), - [anon_sym_0b] = ACTIONS(1063), - [anon_sym_0o] = ACTIONS(1063), - [anon_sym_0x] = ACTIONS(1063), - [sym_val_date] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [sym__str_single_quotes] = ACTIONS(1063), - [sym__str_back_ticks] = ACTIONS(1063), - [sym__entry_separator] = ACTIONS(1065), - [anon_sym_err_GT] = ACTIONS(1063), - [anon_sym_out_GT] = ACTIONS(1063), - [anon_sym_e_GT] = ACTIONS(1063), - [anon_sym_o_GT] = ACTIONS(1063), - [anon_sym_err_PLUSout_GT] = ACTIONS(1063), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1063), - [anon_sym_o_PLUSe_GT] = ACTIONS(1063), - [anon_sym_e_PLUSo_GT] = ACTIONS(1063), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1063), - [anon_sym_POUND] = ACTIONS(113), + [1756] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5181), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(4837), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3789), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4757), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1756), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5263), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5265), + [anon_sym_DOT_DOT_LT] = ACTIONS(5265), + [anon_sym_null] = ACTIONS(5267), + [anon_sym_true] = ACTIONS(5269), + [anon_sym_false] = ACTIONS(5269), + [aux_sym__val_number_decimal_token1] = ACTIONS(5271), + [aux_sym__val_number_decimal_token2] = ACTIONS(5273), + [anon_sym_DOT2] = ACTIONS(5275), + [aux_sym__val_number_decimal_token3] = ACTIONS(5277), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5279), + [aux_sym__val_number_token5] = ACTIONS(5279), + [aux_sym__val_number_token6] = ACTIONS(5279), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5281), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), }, - [1555] = { - [sym_comment] = STATE(1555), - [ts_builtin_sym_end] = ACTIONS(911), - [anon_sym_SEMI] = ACTIONS(909), - [anon_sym_LF] = ACTIONS(911), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_DOT_DOT] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(909), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(909), - [anon_sym_SLASH_SLASH] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(909), - [anon_sym_bit_DASHshr] = ACTIONS(909), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_not_DASHin] = ACTIONS(909), - [anon_sym_starts_DASHwith] = ACTIONS(909), - [anon_sym_ends_DASHwith] = ACTIONS(909), - [anon_sym_EQ_TILDE] = ACTIONS(909), - [anon_sym_BANG_TILDE] = ACTIONS(909), - [anon_sym_bit_DASHand] = ACTIONS(909), - [anon_sym_bit_DASHxor] = ACTIONS(909), - [anon_sym_bit_DASHor] = ACTIONS(909), - [anon_sym_and] = ACTIONS(909), - [anon_sym_xor] = ACTIONS(909), - [anon_sym_or] = ACTIONS(909), - [anon_sym_not] = ACTIONS(909), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [anon_sym_null] = ACTIONS(909), - [anon_sym_true] = ACTIONS(909), - [anon_sym_false] = ACTIONS(909), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(909), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(909), - [aux_sym__val_number_token1] = ACTIONS(909), - [aux_sym__val_number_token2] = ACTIONS(909), - [aux_sym__val_number_token3] = ACTIONS(909), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(909), - [aux_sym__val_number_token6] = ACTIONS(909), - [anon_sym_0b] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(911), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym__str_single_quotes] = ACTIONS(909), - [sym__str_back_ticks] = ACTIONS(909), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), - [aux_sym_unquoted_token5] = ACTIONS(909), - [anon_sym_POUND] = ACTIONS(113), + [1757] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5182), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(4837), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3789), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4758), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1757), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5263), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5265), + [anon_sym_DOT_DOT_LT] = ACTIONS(5265), + [anon_sym_null] = ACTIONS(5267), + [anon_sym_true] = ACTIONS(5269), + [anon_sym_false] = ACTIONS(5269), + [aux_sym__val_number_decimal_token1] = ACTIONS(5271), + [aux_sym__val_number_decimal_token2] = ACTIONS(5273), + [anon_sym_DOT2] = ACTIONS(5275), + [aux_sym__val_number_decimal_token3] = ACTIONS(5277), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5279), + [aux_sym__val_number_token5] = ACTIONS(5279), + [aux_sym__val_number_token6] = ACTIONS(5279), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5281), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), }, - [1556] = { - [sym_path] = STATE(1940), - [sym_comment] = STATE(1556), - [aux_sym_cell_path_repeat1] = STATE(1558), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_LF] = ACTIONS(1008), - [anon_sym_LBRACK] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_RPAREN] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_in] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_STAR_STAR] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_mod] = ACTIONS(1006), - [anon_sym_SLASH_SLASH] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_bit_DASHshl] = ACTIONS(1006), - [anon_sym_bit_DASHshr] = ACTIONS(1006), - [anon_sym_EQ_EQ] = ACTIONS(1006), - [anon_sym_BANG_EQ] = ACTIONS(1006), - [anon_sym_LT2] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1006), - [anon_sym_GT_EQ] = ACTIONS(1006), - [anon_sym_not_DASHin] = ACTIONS(1006), - [anon_sym_starts_DASHwith] = ACTIONS(1006), - [anon_sym_ends_DASHwith] = ACTIONS(1006), - [anon_sym_EQ_TILDE] = ACTIONS(1006), - [anon_sym_BANG_TILDE] = ACTIONS(1006), - [anon_sym_bit_DASHand] = ACTIONS(1006), - [anon_sym_bit_DASHxor] = ACTIONS(1006), - [anon_sym_bit_DASHor] = ACTIONS(1006), - [anon_sym_and] = ACTIONS(1006), - [anon_sym_xor] = ACTIONS(1006), - [anon_sym_or] = ACTIONS(1006), - [anon_sym_not] = ACTIONS(1006), - [anon_sym_DOT_DOT2] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(4241), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), - [anon_sym_null] = ACTIONS(1006), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1006), - [anon_sym_DOT2] = ACTIONS(1006), - [aux_sym__val_number_decimal_token3] = ACTIONS(1006), - [aux_sym__val_number_token1] = ACTIONS(1006), - [aux_sym__val_number_token2] = ACTIONS(1006), - [aux_sym__val_number_token3] = ACTIONS(1006), - [aux_sym__val_number_token4] = ACTIONS(1006), - [aux_sym__val_number_token5] = ACTIONS(1006), - [aux_sym__val_number_token6] = ACTIONS(1006), - [anon_sym_0b] = ACTIONS(1006), - [anon_sym_0o] = ACTIONS(1006), - [anon_sym_0x] = ACTIONS(1006), - [sym_val_date] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym__str_single_quotes] = ACTIONS(1006), - [sym__str_back_ticks] = ACTIONS(1006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1006), - [anon_sym_POUND] = ACTIONS(113), + [1758] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5183), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(4837), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3789), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4759), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1758), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5263), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5265), + [anon_sym_DOT_DOT_LT] = ACTIONS(5265), + [anon_sym_null] = ACTIONS(5267), + [anon_sym_true] = ACTIONS(5269), + [anon_sym_false] = ACTIONS(5269), + [aux_sym__val_number_decimal_token1] = ACTIONS(5271), + [aux_sym__val_number_decimal_token2] = ACTIONS(5273), + [anon_sym_DOT2] = ACTIONS(5275), + [aux_sym__val_number_decimal_token3] = ACTIONS(5277), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5279), + [aux_sym__val_number_token5] = ACTIONS(5279), + [aux_sym__val_number_token6] = ACTIONS(5279), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5281), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), }, - [1557] = { - [sym_comment] = STATE(1557), - [anon_sym_LBRACK] = ACTIONS(1174), - [anon_sym_COMMA] = ACTIONS(1174), - [anon_sym_LPAREN] = ACTIONS(1174), - [anon_sym_DOLLAR] = ACTIONS(1174), - [anon_sym_GT] = ACTIONS(1172), - [anon_sym_DASH] = ACTIONS(1172), - [anon_sym_in] = ACTIONS(1172), - [anon_sym_LBRACE] = ACTIONS(1174), - [anon_sym_RBRACE] = ACTIONS(1174), - [anon_sym__] = ACTIONS(1172), - [anon_sym_DOT_DOT] = ACTIONS(1172), - [anon_sym_STAR] = ACTIONS(1172), - [anon_sym_STAR_STAR] = ACTIONS(1174), - [anon_sym_PLUS_PLUS] = ACTIONS(1174), - [anon_sym_SLASH] = ACTIONS(1172), - [anon_sym_mod] = ACTIONS(1174), - [anon_sym_SLASH_SLASH] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1172), - [anon_sym_bit_DASHshl] = ACTIONS(1174), - [anon_sym_bit_DASHshr] = ACTIONS(1174), - [anon_sym_EQ_EQ] = ACTIONS(1174), - [anon_sym_BANG_EQ] = ACTIONS(1174), - [anon_sym_LT2] = ACTIONS(1172), - [anon_sym_LT_EQ] = ACTIONS(1174), - [anon_sym_GT_EQ] = ACTIONS(1174), - [anon_sym_not_DASHin] = ACTIONS(1174), - [anon_sym_starts_DASHwith] = ACTIONS(1174), - [anon_sym_ends_DASHwith] = ACTIONS(1174), - [anon_sym_EQ_TILDE] = ACTIONS(1174), - [anon_sym_BANG_TILDE] = ACTIONS(1174), - [anon_sym_bit_DASHand] = ACTIONS(1174), - [anon_sym_bit_DASHxor] = ACTIONS(1174), - [anon_sym_bit_DASHor] = ACTIONS(1174), - [anon_sym_and] = ACTIONS(1174), - [anon_sym_xor] = ACTIONS(1174), - [anon_sym_or] = ACTIONS(1174), - [anon_sym_DOT_DOT2] = ACTIONS(1172), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1172), - [anon_sym_DOT_DOT_LT] = ACTIONS(1172), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1174), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1174), - [anon_sym_null] = ACTIONS(1174), - [anon_sym_true] = ACTIONS(1174), - [anon_sym_false] = ACTIONS(1174), - [aux_sym__val_number_decimal_token1] = ACTIONS(1172), - [aux_sym__val_number_decimal_token2] = ACTIONS(1174), - [anon_sym_DOT2] = ACTIONS(1172), - [aux_sym__val_number_decimal_token3] = ACTIONS(1174), - [aux_sym__val_number_token1] = ACTIONS(1174), - [aux_sym__val_number_token2] = ACTIONS(1174), - [aux_sym__val_number_token3] = ACTIONS(1174), - [aux_sym__val_number_token4] = ACTIONS(1174), - [aux_sym__val_number_token5] = ACTIONS(1174), - [aux_sym__val_number_token6] = ACTIONS(1174), - [anon_sym_0b] = ACTIONS(1172), - [anon_sym_0o] = ACTIONS(1172), - [anon_sym_0x] = ACTIONS(1172), - [sym_val_date] = ACTIONS(1174), - [anon_sym_DQUOTE] = ACTIONS(1174), - [sym__str_single_quotes] = ACTIONS(1174), - [sym__str_back_ticks] = ACTIONS(1174), - [anon_sym_err_GT] = ACTIONS(1174), - [anon_sym_out_GT] = ACTIONS(1174), - [anon_sym_e_GT] = ACTIONS(1174), - [anon_sym_o_GT] = ACTIONS(1174), - [anon_sym_err_PLUSout_GT] = ACTIONS(1174), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1174), - [anon_sym_o_PLUSe_GT] = ACTIONS(1174), - [anon_sym_e_PLUSo_GT] = ACTIONS(1174), - [aux_sym_unquoted_token1] = ACTIONS(1172), + [1759] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5184), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(4837), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3789), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4760), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1759), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5263), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5265), + [anon_sym_DOT_DOT_LT] = ACTIONS(5265), + [anon_sym_null] = ACTIONS(5267), + [anon_sym_true] = ACTIONS(5269), + [anon_sym_false] = ACTIONS(5269), + [aux_sym__val_number_decimal_token1] = ACTIONS(5271), + [aux_sym__val_number_decimal_token2] = ACTIONS(5273), + [anon_sym_DOT2] = ACTIONS(5275), + [aux_sym__val_number_decimal_token3] = ACTIONS(5277), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5279), + [aux_sym__val_number_token5] = ACTIONS(5279), + [aux_sym__val_number_token6] = ACTIONS(5279), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5281), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), [anon_sym_POUND] = ACTIONS(3), }, - [1558] = { - [sym_path] = STATE(1940), - [sym_comment] = STATE(1558), - [aux_sym_cell_path_repeat1] = STATE(1558), - [anon_sym_SEMI] = ACTIONS(999), - [anon_sym_LF] = ACTIONS(1001), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_RPAREN] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_GT] = ACTIONS(999), - [anon_sym_DASH_DASH] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_in] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(999), - [anon_sym_RBRACE] = ACTIONS(999), - [anon_sym_DOT_DOT] = ACTIONS(999), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_STAR_STAR] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(999), - [anon_sym_mod] = ACTIONS(999), - [anon_sym_SLASH_SLASH] = ACTIONS(999), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_bit_DASHshl] = ACTIONS(999), - [anon_sym_bit_DASHshr] = ACTIONS(999), - [anon_sym_EQ_EQ] = ACTIONS(999), - [anon_sym_BANG_EQ] = ACTIONS(999), - [anon_sym_LT2] = ACTIONS(999), - [anon_sym_LT_EQ] = ACTIONS(999), - [anon_sym_GT_EQ] = ACTIONS(999), - [anon_sym_not_DASHin] = ACTIONS(999), - [anon_sym_starts_DASHwith] = ACTIONS(999), - [anon_sym_ends_DASHwith] = ACTIONS(999), - [anon_sym_EQ_TILDE] = ACTIONS(999), - [anon_sym_BANG_TILDE] = ACTIONS(999), - [anon_sym_bit_DASHand] = ACTIONS(999), - [anon_sym_bit_DASHxor] = ACTIONS(999), - [anon_sym_bit_DASHor] = ACTIONS(999), - [anon_sym_and] = ACTIONS(999), - [anon_sym_xor] = ACTIONS(999), - [anon_sym_or] = ACTIONS(999), - [anon_sym_not] = ACTIONS(999), - [anon_sym_DOT_DOT2] = ACTIONS(999), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_DOT_DOT_EQ] = ACTIONS(999), - [anon_sym_DOT_DOT_LT] = ACTIONS(999), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1001), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1001), - [anon_sym_null] = ACTIONS(999), - [anon_sym_true] = ACTIONS(999), - [anon_sym_false] = ACTIONS(999), - [aux_sym__val_number_decimal_token1] = ACTIONS(999), - [aux_sym__val_number_decimal_token2] = ACTIONS(999), - [anon_sym_DOT2] = ACTIONS(999), - [aux_sym__val_number_decimal_token3] = ACTIONS(999), - [aux_sym__val_number_token1] = ACTIONS(999), - [aux_sym__val_number_token2] = ACTIONS(999), - [aux_sym__val_number_token3] = ACTIONS(999), - [aux_sym__val_number_token4] = ACTIONS(999), - [aux_sym__val_number_token5] = ACTIONS(999), - [aux_sym__val_number_token6] = ACTIONS(999), - [anon_sym_0b] = ACTIONS(999), - [anon_sym_0o] = ACTIONS(999), - [anon_sym_0x] = ACTIONS(999), - [sym_val_date] = ACTIONS(999), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym__str_single_quotes] = ACTIONS(999), - [sym__str_back_ticks] = ACTIONS(999), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(999), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(999), - [anon_sym_POUND] = ACTIONS(113), + [1760] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5185), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(4837), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3789), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4761), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1760), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5263), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5265), + [anon_sym_DOT_DOT_LT] = ACTIONS(5265), + [anon_sym_null] = ACTIONS(5267), + [anon_sym_true] = ACTIONS(5269), + [anon_sym_false] = ACTIONS(5269), + [aux_sym__val_number_decimal_token1] = ACTIONS(5271), + [aux_sym__val_number_decimal_token2] = ACTIONS(5273), + [anon_sym_DOT2] = ACTIONS(5275), + [aux_sym__val_number_decimal_token3] = ACTIONS(5277), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5279), + [aux_sym__val_number_token5] = ACTIONS(5279), + [aux_sym__val_number_token6] = ACTIONS(5279), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5281), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), }, - [1559] = { - [sym_comment] = STATE(1559), - [anon_sym_export] = ACTIONS(2581), - [anon_sym_alias] = ACTIONS(2581), - [anon_sym_let] = ACTIONS(2581), - [anon_sym_let_DASHenv] = ACTIONS(2581), - [anon_sym_mut] = ACTIONS(2581), - [anon_sym_const] = ACTIONS(2581), - [anon_sym_SEMI] = ACTIONS(2581), - [sym_cmd_identifier] = ACTIONS(2581), - [anon_sym_LF] = ACTIONS(2583), - [anon_sym_def] = ACTIONS(2581), - [anon_sym_export_DASHenv] = ACTIONS(2581), - [anon_sym_extern] = ACTIONS(2581), - [anon_sym_module] = ACTIONS(2581), - [anon_sym_use] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2581), - [anon_sym_RPAREN] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2581), - [anon_sym_error] = ACTIONS(2581), - [anon_sym_DASH_DASH] = ACTIONS(2581), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_break] = ACTIONS(2581), - [anon_sym_continue] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2581), - [anon_sym_loop] = ACTIONS(2581), - [anon_sym_while] = ACTIONS(2581), - [anon_sym_do] = ACTIONS(2581), - [anon_sym_if] = ACTIONS(2581), - [anon_sym_match] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2581), - [anon_sym_RBRACE] = ACTIONS(2581), - [anon_sym_DOT_DOT] = ACTIONS(2581), - [anon_sym_try] = ACTIONS(2581), - [anon_sym_return] = ACTIONS(2581), - [anon_sym_source] = ACTIONS(2581), - [anon_sym_source_DASHenv] = ACTIONS(2581), - [anon_sym_register] = ACTIONS(2581), - [anon_sym_hide] = ACTIONS(2581), - [anon_sym_hide_DASHenv] = ACTIONS(2581), - [anon_sym_overlay] = ACTIONS(2581), - [anon_sym_as] = ACTIONS(2581), - [anon_sym_where] = ACTIONS(2581), - [anon_sym_not] = ACTIONS(2581), - [anon_sym_DOT] = ACTIONS(4820), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2581), - [anon_sym_DOT_DOT_LT] = ACTIONS(2581), - [aux_sym__immediate_decimal_token2] = ACTIONS(4822), - [anon_sym_null] = ACTIONS(2581), - [anon_sym_true] = ACTIONS(2581), - [anon_sym_false] = ACTIONS(2581), - [aux_sym__val_number_decimal_token1] = ACTIONS(2581), - [aux_sym__val_number_decimal_token2] = ACTIONS(2581), - [anon_sym_DOT2] = ACTIONS(2581), - [aux_sym__val_number_decimal_token3] = ACTIONS(2581), - [aux_sym__val_number_token1] = ACTIONS(2581), - [aux_sym__val_number_token2] = ACTIONS(2581), - [aux_sym__val_number_token3] = ACTIONS(2581), - [aux_sym__val_number_token4] = ACTIONS(2581), - [aux_sym__val_number_token5] = ACTIONS(2581), - [aux_sym__val_number_token6] = ACTIONS(2581), - [anon_sym_0b] = ACTIONS(2581), - [anon_sym_0o] = ACTIONS(2581), - [anon_sym_0x] = ACTIONS(2581), - [sym_val_date] = ACTIONS(2581), - [anon_sym_DQUOTE] = ACTIONS(2581), - [sym__str_single_quotes] = ACTIONS(2581), - [sym__str_back_ticks] = ACTIONS(2581), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2581), - [anon_sym_CARET] = ACTIONS(2581), - [anon_sym_POUND] = ACTIONS(113), + [1761] = { + [sym_comment] = STATE(1761), + [anon_sym_LBRACK] = ACTIONS(1143), + [anon_sym_COMMA] = ACTIONS(1145), + [anon_sym_RBRACK] = ACTIONS(1145), + [anon_sym_LPAREN] = ACTIONS(1145), + [anon_sym_DOLLAR] = ACTIONS(1145), + [anon_sym_GT] = ACTIONS(1143), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_LBRACE] = ACTIONS(1145), + [anon_sym_DOT_DOT] = ACTIONS(1143), + [anon_sym_STAR] = ACTIONS(1143), + [anon_sym_STAR_STAR] = ACTIONS(1145), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_SLASH] = ACTIONS(1143), + [anon_sym_mod] = ACTIONS(1145), + [anon_sym_SLASH_SLASH] = ACTIONS(1145), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_bit_DASHshl] = ACTIONS(1145), + [anon_sym_bit_DASHshr] = ACTIONS(1145), + [anon_sym_EQ_EQ] = ACTIONS(1145), + [anon_sym_BANG_EQ] = ACTIONS(1145), + [anon_sym_LT2] = ACTIONS(1143), + [anon_sym_LT_EQ] = ACTIONS(1145), + [anon_sym_GT_EQ] = ACTIONS(1145), + [anon_sym_not_DASHin] = ACTIONS(1145), + [anon_sym_starts_DASHwith] = ACTIONS(1145), + [anon_sym_ends_DASHwith] = ACTIONS(1145), + [anon_sym_EQ_TILDE] = ACTIONS(1145), + [anon_sym_BANG_TILDE] = ACTIONS(1145), + [anon_sym_bit_DASHand] = ACTIONS(1145), + [anon_sym_bit_DASHxor] = ACTIONS(1145), + [anon_sym_bit_DASHor] = ACTIONS(1145), + [anon_sym_and] = ACTIONS(1145), + [anon_sym_xor] = ACTIONS(1145), + [anon_sym_or] = ACTIONS(1145), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1145), + [anon_sym_DOT_DOT_LT] = ACTIONS(1145), + [anon_sym_null] = ACTIONS(1145), + [anon_sym_true] = ACTIONS(1145), + [anon_sym_false] = ACTIONS(1145), + [aux_sym__val_number_decimal_token1] = ACTIONS(1143), + [aux_sym__val_number_decimal_token2] = ACTIONS(1145), + [anon_sym_DOT2] = ACTIONS(1143), + [aux_sym__val_number_decimal_token3] = ACTIONS(1145), + [aux_sym__val_number_token1] = ACTIONS(1145), + [aux_sym__val_number_token2] = ACTIONS(1145), + [aux_sym__val_number_token3] = ACTIONS(1145), + [aux_sym__val_number_token4] = ACTIONS(1145), + [aux_sym__val_number_token5] = ACTIONS(1145), + [aux_sym__val_number_token6] = ACTIONS(1145), + [anon_sym_0b] = ACTIONS(1143), + [anon_sym_0o] = ACTIONS(1143), + [anon_sym_0x] = ACTIONS(1143), + [anon_sym_LBRACK2] = ACTIONS(5283), + [sym_val_date] = ACTIONS(1145), + [anon_sym_DQUOTE] = ACTIONS(1145), + [sym__str_single_quotes] = ACTIONS(1145), + [sym__str_back_ticks] = ACTIONS(1145), + [anon_sym_err_GT] = ACTIONS(1145), + [anon_sym_out_GT] = ACTIONS(1145), + [anon_sym_e_GT] = ACTIONS(1145), + [anon_sym_o_GT] = ACTIONS(1145), + [anon_sym_err_PLUSout_GT] = ACTIONS(1145), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1145), + [anon_sym_o_PLUSe_GT] = ACTIONS(1145), + [anon_sym_e_PLUSo_GT] = ACTIONS(1145), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1143), + [anon_sym_POUND] = ACTIONS(3), }, - [1560] = { - [sym_comment] = STATE(1560), - [anon_sym_export] = ACTIONS(1243), - [anon_sym_alias] = ACTIONS(1243), - [anon_sym_let] = ACTIONS(1243), - [anon_sym_let_DASHenv] = ACTIONS(1243), - [anon_sym_mut] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1243), - [sym_cmd_identifier] = ACTIONS(1243), - [anon_sym_LF] = ACTIONS(1243), - [anon_sym_def] = ACTIONS(1243), - [anon_sym_export_DASHenv] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1243), - [anon_sym_module] = ACTIONS(1243), - [anon_sym_use] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_RPAREN] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_error] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_loop] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_match] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_RBRACE] = ACTIONS(1243), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_try] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_source] = ACTIONS(1243), - [anon_sym_source_DASHenv] = ACTIONS(1243), - [anon_sym_register] = ACTIONS(1243), - [anon_sym_hide] = ACTIONS(1243), - [anon_sym_hide_DASHenv] = ACTIONS(1243), - [anon_sym_overlay] = ACTIONS(1243), - [anon_sym_as] = ACTIONS(1243), - [anon_sym_where] = ACTIONS(1243), - [anon_sym_not] = ACTIONS(1243), - [anon_sym_LPAREN2] = ACTIONS(1290), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1243), - [anon_sym_DOT_DOT_LT] = ACTIONS(1243), - [anon_sym_null] = ACTIONS(1243), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_decimal_token2] = ACTIONS(1243), - [anon_sym_DOT2] = ACTIONS(1243), - [aux_sym__val_number_decimal_token3] = ACTIONS(1243), - [aux_sym__val_number_token1] = ACTIONS(1243), - [aux_sym__val_number_token2] = ACTIONS(1243), - [aux_sym__val_number_token3] = ACTIONS(1243), - [aux_sym__val_number_token4] = ACTIONS(1243), - [aux_sym__val_number_token5] = ACTIONS(1243), - [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_0b] = ACTIONS(1243), - [anon_sym_0o] = ACTIONS(1243), - [anon_sym_0x] = ACTIONS(1243), - [sym_val_date] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym__str_single_quotes] = ACTIONS(1243), - [sym__str_back_ticks] = ACTIONS(1243), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1243), - [aux_sym__list_item_starts_with_sign_token1] = ACTIONS(4824), - [anon_sym_CARET] = ACTIONS(1243), + [1762] = { + [sym_comment] = STATE(1762), + [anon_sym_LBRACK] = ACTIONS(1271), + [anon_sym_COMMA] = ACTIONS(1271), + [anon_sym_RBRACK] = ACTIONS(1271), + [anon_sym_LPAREN] = ACTIONS(1271), + [anon_sym_DOLLAR] = ACTIONS(1271), + [anon_sym_GT] = ACTIONS(1271), + [anon_sym_DASH_DASH] = ACTIONS(1271), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_in] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_DOT_DOT] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(1271), + [anon_sym_STAR_STAR] = ACTIONS(1271), + [anon_sym_PLUS_PLUS] = ACTIONS(1271), + [anon_sym_SLASH] = ACTIONS(1271), + [anon_sym_mod] = ACTIONS(1271), + [anon_sym_SLASH_SLASH] = ACTIONS(1271), + [anon_sym_PLUS] = ACTIONS(1271), + [anon_sym_bit_DASHshl] = ACTIONS(1271), + [anon_sym_bit_DASHshr] = ACTIONS(1271), + [anon_sym_EQ_EQ] = ACTIONS(1271), + [anon_sym_BANG_EQ] = ACTIONS(1271), + [anon_sym_LT2] = ACTIONS(1271), + [anon_sym_LT_EQ] = ACTIONS(1271), + [anon_sym_GT_EQ] = ACTIONS(1271), + [anon_sym_not_DASHin] = ACTIONS(1271), + [anon_sym_starts_DASHwith] = ACTIONS(1271), + [anon_sym_ends_DASHwith] = ACTIONS(1271), + [anon_sym_EQ_TILDE] = ACTIONS(1271), + [anon_sym_BANG_TILDE] = ACTIONS(1271), + [anon_sym_bit_DASHand] = ACTIONS(1271), + [anon_sym_bit_DASHxor] = ACTIONS(1271), + [anon_sym_bit_DASHor] = ACTIONS(1271), + [anon_sym_and] = ACTIONS(1271), + [anon_sym_xor] = ACTIONS(1271), + [anon_sym_or] = ACTIONS(1271), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1271), + [anon_sym_DOT_DOT_LT] = ACTIONS(1271), + [anon_sym_null] = ACTIONS(1271), + [anon_sym_true] = ACTIONS(1271), + [anon_sym_false] = ACTIONS(1271), + [aux_sym__val_number_decimal_token1] = ACTIONS(1271), + [aux_sym__val_number_decimal_token2] = ACTIONS(1271), + [anon_sym_DOT2] = ACTIONS(1271), + [aux_sym__val_number_decimal_token3] = ACTIONS(1271), + [aux_sym__val_number_token1] = ACTIONS(1271), + [aux_sym__val_number_token2] = ACTIONS(1271), + [aux_sym__val_number_token3] = ACTIONS(1271), + [aux_sym__val_number_token4] = ACTIONS(1271), + [aux_sym__val_number_token5] = ACTIONS(1271), + [aux_sym__val_number_token6] = ACTIONS(1271), + [anon_sym_0b] = ACTIONS(1271), + [anon_sym_0o] = ACTIONS(1271), + [anon_sym_0x] = ACTIONS(1271), + [sym_val_date] = ACTIONS(1271), + [anon_sym_DQUOTE] = ACTIONS(1271), + [sym__str_single_quotes] = ACTIONS(1271), + [sym__str_back_ticks] = ACTIONS(1271), + [sym__entry_separator] = ACTIONS(1273), + [anon_sym_err_GT] = ACTIONS(1271), + [anon_sym_out_GT] = ACTIONS(1271), + [anon_sym_e_GT] = ACTIONS(1271), + [anon_sym_o_GT] = ACTIONS(1271), + [anon_sym_err_PLUSout_GT] = ACTIONS(1271), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1271), + [anon_sym_o_PLUSe_GT] = ACTIONS(1271), + [anon_sym_e_PLUSo_GT] = ACTIONS(1271), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1271), [anon_sym_POUND] = ACTIONS(113), }, - [1561] = { - [sym_comment] = STATE(1561), - [ts_builtin_sym_end] = ACTIONS(2583), - [anon_sym_export] = ACTIONS(2581), - [anon_sym_alias] = ACTIONS(2581), - [anon_sym_let] = ACTIONS(2581), - [anon_sym_let_DASHenv] = ACTIONS(2581), - [anon_sym_mut] = ACTIONS(2581), - [anon_sym_const] = ACTIONS(2581), - [anon_sym_SEMI] = ACTIONS(2581), - [sym_cmd_identifier] = ACTIONS(2581), - [anon_sym_LF] = ACTIONS(2583), - [anon_sym_def] = ACTIONS(2581), - [anon_sym_export_DASHenv] = ACTIONS(2581), - [anon_sym_extern] = ACTIONS(2581), - [anon_sym_module] = ACTIONS(2581), - [anon_sym_use] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2581), - [anon_sym_error] = ACTIONS(2581), - [anon_sym_DASH_DASH] = ACTIONS(2581), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_break] = ACTIONS(2581), - [anon_sym_continue] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2581), - [anon_sym_loop] = ACTIONS(2581), - [anon_sym_while] = ACTIONS(2581), - [anon_sym_do] = ACTIONS(2581), - [anon_sym_if] = ACTIONS(2581), - [anon_sym_match] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2581), - [anon_sym_DOT_DOT] = ACTIONS(2581), - [anon_sym_try] = ACTIONS(2581), - [anon_sym_return] = ACTIONS(2581), - [anon_sym_source] = ACTIONS(2581), - [anon_sym_source_DASHenv] = ACTIONS(2581), - [anon_sym_register] = ACTIONS(2581), - [anon_sym_hide] = ACTIONS(2581), - [anon_sym_hide_DASHenv] = ACTIONS(2581), - [anon_sym_overlay] = ACTIONS(2581), - [anon_sym_as] = ACTIONS(2581), - [anon_sym_where] = ACTIONS(2581), - [anon_sym_not] = ACTIONS(2581), - [anon_sym_DOT] = ACTIONS(4826), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2581), - [anon_sym_DOT_DOT_LT] = ACTIONS(2581), - [aux_sym__immediate_decimal_token2] = ACTIONS(4775), - [anon_sym_null] = ACTIONS(2581), - [anon_sym_true] = ACTIONS(2581), - [anon_sym_false] = ACTIONS(2581), - [aux_sym__val_number_decimal_token1] = ACTIONS(2581), - [aux_sym__val_number_decimal_token2] = ACTIONS(2581), - [anon_sym_DOT2] = ACTIONS(2581), - [aux_sym__val_number_decimal_token3] = ACTIONS(2581), - [aux_sym__val_number_token1] = ACTIONS(2581), - [aux_sym__val_number_token2] = ACTIONS(2581), - [aux_sym__val_number_token3] = ACTIONS(2581), - [aux_sym__val_number_token4] = ACTIONS(2581), - [aux_sym__val_number_token5] = ACTIONS(2581), - [aux_sym__val_number_token6] = ACTIONS(2581), - [anon_sym_0b] = ACTIONS(2581), - [anon_sym_0o] = ACTIONS(2581), - [anon_sym_0x] = ACTIONS(2581), - [sym_val_date] = ACTIONS(2581), - [anon_sym_DQUOTE] = ACTIONS(2581), - [sym__str_single_quotes] = ACTIONS(2581), - [sym__str_back_ticks] = ACTIONS(2581), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2581), - [anon_sym_CARET] = ACTIONS(2581), - [aux_sym_unquoted_token2] = ACTIONS(2581), - [anon_sym_POUND] = ACTIONS(113), + [1763] = { + [sym_expr_unary] = STATE(6273), + [sym__expr_unary_minus] = STATE(6230), + [sym_expr_binary] = STATE(6273), + [sym__expr_binary_expression] = STATE(6259), + [sym_expr_parenthesized] = STATE(6273), + [sym__val_range] = STATE(10186), + [sym__value] = STATE(6273), + [sym_val_nothing] = STATE(6331), + [sym_val_bool] = STATE(6034), + [sym_val_variable] = STATE(6331), + [sym__var] = STATE(5664), + [sym_val_number] = STATE(6331), + [sym__val_number_decimal] = STATE(4561), + [sym__val_number] = STATE(6217), + [sym_val_duration] = STATE(6331), + [sym_val_filesize] = STATE(6331), + [sym_val_binary] = STATE(6331), + [sym_val_string] = STATE(6331), + [sym__str_double_quotes] = STATE(6261), + [sym_val_interpolated] = STATE(6331), + [sym__inter_single_quotes] = STATE(6276), + [sym__inter_double_quotes] = STATE(6278), + [sym_val_list] = STATE(6331), + [sym_val_record] = STATE(6331), + [sym_val_table] = STATE(6331), + [sym_val_closure] = STATE(6331), + [sym_unquoted] = STATE(6256), + [sym__unquoted_anonymous_prefix] = STATE(10365), + [sym_comment] = STATE(1763), + [anon_sym_LBRACK] = ACTIONS(4118), + [anon_sym_LPAREN] = ACTIONS(5285), + [anon_sym_DOLLAR] = ACTIONS(5287), + [anon_sym_DASH] = ACTIONS(4124), + [anon_sym_LBRACE] = ACTIONS(4126), + [anon_sym_DOT_DOT] = ACTIONS(5289), + [anon_sym_not] = ACTIONS(4130), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5291), + [anon_sym_DOT_DOT_LT] = ACTIONS(5291), + [anon_sym_null] = ACTIONS(4134), + [anon_sym_true] = ACTIONS(4136), + [anon_sym_false] = ACTIONS(4136), + [aux_sym__val_number_decimal_token1] = ACTIONS(4138), + [aux_sym__val_number_decimal_token2] = ACTIONS(4140), + [anon_sym_DOT2] = ACTIONS(5293), + [aux_sym__val_number_decimal_token3] = ACTIONS(4144), + [aux_sym__val_number_token1] = ACTIONS(4146), + [aux_sym__val_number_token2] = ACTIONS(4146), + [aux_sym__val_number_token3] = ACTIONS(4146), + [aux_sym__val_number_token4] = ACTIONS(5295), + [aux_sym__val_number_token5] = ACTIONS(5295), + [aux_sym__val_number_token6] = ACTIONS(5295), + [anon_sym_0b] = ACTIONS(4150), + [anon_sym_0o] = ACTIONS(4152), + [anon_sym_0x] = ACTIONS(4152), + [sym_val_date] = ACTIONS(4154), + [anon_sym_DQUOTE] = ACTIONS(4156), + [sym__str_single_quotes] = ACTIONS(4158), + [sym__str_back_ticks] = ACTIONS(4158), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4160), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4162), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5297), + [anon_sym_POUND] = ACTIONS(3), }, - [1562] = { - [sym_comment] = STATE(1562), - [ts_builtin_sym_end] = ACTIONS(3750), - [anon_sym_export] = ACTIONS(3748), - [anon_sym_alias] = ACTIONS(3748), - [anon_sym_let] = ACTIONS(3748), - [anon_sym_let_DASHenv] = ACTIONS(3748), - [anon_sym_mut] = ACTIONS(3748), - [anon_sym_const] = ACTIONS(3748), - [anon_sym_SEMI] = ACTIONS(3748), - [sym_cmd_identifier] = ACTIONS(3748), - [anon_sym_LF] = ACTIONS(3750), - [anon_sym_def] = ACTIONS(3748), - [anon_sym_export_DASHenv] = ACTIONS(3748), - [anon_sym_extern] = ACTIONS(3748), - [anon_sym_module] = ACTIONS(3748), - [anon_sym_use] = ACTIONS(3748), - [anon_sym_LBRACK] = ACTIONS(3748), - [anon_sym_LPAREN] = ACTIONS(3748), - [anon_sym_DOLLAR] = ACTIONS(3748), - [anon_sym_error] = ACTIONS(3748), - [anon_sym_DASH_DASH] = ACTIONS(3748), - [anon_sym_DASH] = ACTIONS(3748), - [anon_sym_break] = ACTIONS(3748), - [anon_sym_continue] = ACTIONS(3748), - [anon_sym_for] = ACTIONS(3748), - [anon_sym_loop] = ACTIONS(3748), - [anon_sym_while] = ACTIONS(3748), - [anon_sym_do] = ACTIONS(3748), - [anon_sym_if] = ACTIONS(3748), - [anon_sym_match] = ACTIONS(3748), - [anon_sym_LBRACE] = ACTIONS(3748), - [anon_sym_DOT_DOT] = ACTIONS(3748), - [anon_sym_try] = ACTIONS(3748), - [anon_sym_return] = ACTIONS(3748), - [anon_sym_source] = ACTIONS(3748), - [anon_sym_source_DASHenv] = ACTIONS(3748), - [anon_sym_register] = ACTIONS(3748), - [anon_sym_hide] = ACTIONS(3748), - [anon_sym_hide_DASHenv] = ACTIONS(3748), - [anon_sym_overlay] = ACTIONS(3748), - [anon_sym_as] = ACTIONS(3748), - [anon_sym_where] = ACTIONS(3748), - [anon_sym_not] = ACTIONS(3748), - [anon_sym_DOT] = ACTIONS(2851), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3748), - [anon_sym_DOT_DOT_LT] = ACTIONS(3748), - [aux_sym__immediate_decimal_token1] = ACTIONS(4829), - [anon_sym_null] = ACTIONS(3748), - [anon_sym_true] = ACTIONS(3748), - [anon_sym_false] = ACTIONS(3748), - [aux_sym__val_number_decimal_token1] = ACTIONS(3748), - [aux_sym__val_number_decimal_token2] = ACTIONS(3748), - [anon_sym_DOT2] = ACTIONS(3748), - [aux_sym__val_number_decimal_token3] = ACTIONS(3748), - [aux_sym__val_number_token1] = ACTIONS(3748), - [aux_sym__val_number_token2] = ACTIONS(3748), - [aux_sym__val_number_token3] = ACTIONS(3748), - [aux_sym__val_number_token4] = ACTIONS(3748), - [aux_sym__val_number_token5] = ACTIONS(3748), - [aux_sym__val_number_token6] = ACTIONS(3748), - [anon_sym_0b] = ACTIONS(3748), - [anon_sym_0o] = ACTIONS(3748), - [anon_sym_0x] = ACTIONS(3748), - [sym_val_date] = ACTIONS(3748), - [anon_sym_DQUOTE] = ACTIONS(3748), - [sym__str_single_quotes] = ACTIONS(3748), - [sym__str_back_ticks] = ACTIONS(3748), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3748), - [anon_sym_CARET] = ACTIONS(3748), - [aux_sym_unquoted_token2] = ACTIONS(2851), - [anon_sym_POUND] = ACTIONS(113), + [1764] = { + [sym_expr_unary] = STATE(6273), + [sym__expr_unary_minus] = STATE(6230), + [sym_expr_binary] = STATE(6273), + [sym__expr_binary_expression] = STATE(6274), + [sym_expr_parenthesized] = STATE(6273), + [sym__val_range] = STATE(10186), + [sym__value] = STATE(6273), + [sym_val_nothing] = STATE(6331), + [sym_val_bool] = STATE(6034), + [sym_val_variable] = STATE(6331), + [sym__var] = STATE(5664), + [sym_val_number] = STATE(6331), + [sym__val_number_decimal] = STATE(4561), + [sym__val_number] = STATE(6217), + [sym_val_duration] = STATE(6331), + [sym_val_filesize] = STATE(6331), + [sym_val_binary] = STATE(6331), + [sym_val_string] = STATE(6331), + [sym__str_double_quotes] = STATE(6261), + [sym_val_interpolated] = STATE(6331), + [sym__inter_single_quotes] = STATE(6276), + [sym__inter_double_quotes] = STATE(6278), + [sym_val_list] = STATE(6331), + [sym_val_record] = STATE(6331), + [sym_val_table] = STATE(6331), + [sym_val_closure] = STATE(6331), + [sym_unquoted] = STATE(6205), + [sym__unquoted_anonymous_prefix] = STATE(10365), + [sym_comment] = STATE(1764), + [anon_sym_LBRACK] = ACTIONS(4118), + [anon_sym_LPAREN] = ACTIONS(5285), + [anon_sym_DOLLAR] = ACTIONS(5287), + [anon_sym_DASH] = ACTIONS(4124), + [anon_sym_LBRACE] = ACTIONS(4126), + [anon_sym_DOT_DOT] = ACTIONS(5289), + [anon_sym_not] = ACTIONS(4130), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5291), + [anon_sym_DOT_DOT_LT] = ACTIONS(5291), + [anon_sym_null] = ACTIONS(4134), + [anon_sym_true] = ACTIONS(4136), + [anon_sym_false] = ACTIONS(4136), + [aux_sym__val_number_decimal_token1] = ACTIONS(4138), + [aux_sym__val_number_decimal_token2] = ACTIONS(4140), + [anon_sym_DOT2] = ACTIONS(5293), + [aux_sym__val_number_decimal_token3] = ACTIONS(4144), + [aux_sym__val_number_token1] = ACTIONS(4146), + [aux_sym__val_number_token2] = ACTIONS(4146), + [aux_sym__val_number_token3] = ACTIONS(4146), + [aux_sym__val_number_token4] = ACTIONS(5295), + [aux_sym__val_number_token5] = ACTIONS(5295), + [aux_sym__val_number_token6] = ACTIONS(5295), + [anon_sym_0b] = ACTIONS(4150), + [anon_sym_0o] = ACTIONS(4152), + [anon_sym_0x] = ACTIONS(4152), + [sym_val_date] = ACTIONS(4154), + [anon_sym_DQUOTE] = ACTIONS(4156), + [sym__str_single_quotes] = ACTIONS(4158), + [sym__str_back_ticks] = ACTIONS(4158), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4160), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4162), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5297), + [anon_sym_POUND] = ACTIONS(3), }, - [1563] = { - [sym_cell_path] = STATE(2397), - [sym_path] = STATE(1517), - [sym_comment] = STATE(1563), - [ts_builtin_sym_end] = ACTIONS(1205), - [anon_sym_export] = ACTIONS(1203), - [anon_sym_alias] = ACTIONS(1203), - [anon_sym_let] = ACTIONS(1203), - [anon_sym_let_DASHenv] = ACTIONS(1203), - [anon_sym_mut] = ACTIONS(1203), - [anon_sym_const] = ACTIONS(1203), - [anon_sym_SEMI] = ACTIONS(1203), - [sym_cmd_identifier] = ACTIONS(1203), - [anon_sym_LF] = ACTIONS(1205), - [anon_sym_def] = ACTIONS(1203), - [anon_sym_export_DASHenv] = ACTIONS(1203), - [anon_sym_extern] = ACTIONS(1203), - [anon_sym_module] = ACTIONS(1203), - [anon_sym_use] = ACTIONS(1203), - [anon_sym_LBRACK] = ACTIONS(1203), - [anon_sym_LPAREN] = ACTIONS(1203), - [anon_sym_DOLLAR] = ACTIONS(1203), - [anon_sym_error] = ACTIONS(1203), - [anon_sym_DASH_DASH] = ACTIONS(1203), - [anon_sym_DASH] = ACTIONS(1203), - [anon_sym_break] = ACTIONS(1203), - [anon_sym_continue] = ACTIONS(1203), - [anon_sym_for] = ACTIONS(1203), - [anon_sym_loop] = ACTIONS(1203), - [anon_sym_while] = ACTIONS(1203), - [anon_sym_do] = ACTIONS(1203), - [anon_sym_if] = ACTIONS(1203), - [anon_sym_match] = ACTIONS(1203), - [anon_sym_LBRACE] = ACTIONS(1203), - [anon_sym_DOT_DOT] = ACTIONS(1203), - [anon_sym_try] = ACTIONS(1203), - [anon_sym_return] = ACTIONS(1203), - [anon_sym_source] = ACTIONS(1203), - [anon_sym_source_DASHenv] = ACTIONS(1203), - [anon_sym_register] = ACTIONS(1203), - [anon_sym_hide] = ACTIONS(1203), - [anon_sym_hide_DASHenv] = ACTIONS(1203), - [anon_sym_overlay] = ACTIONS(1203), - [anon_sym_as] = ACTIONS(1203), - [anon_sym_where] = ACTIONS(1203), - [anon_sym_not] = ACTIONS(1203), - [anon_sym_DOT] = ACTIONS(4629), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1203), - [anon_sym_DOT_DOT_LT] = ACTIONS(1203), - [anon_sym_null] = ACTIONS(1203), - [anon_sym_true] = ACTIONS(1203), - [anon_sym_false] = ACTIONS(1203), - [aux_sym__val_number_decimal_token1] = ACTIONS(1203), - [aux_sym__val_number_decimal_token2] = ACTIONS(1203), - [anon_sym_DOT2] = ACTIONS(1203), - [aux_sym__val_number_decimal_token3] = ACTIONS(1203), - [aux_sym__val_number_token1] = ACTIONS(1203), - [aux_sym__val_number_token2] = ACTIONS(1203), - [aux_sym__val_number_token3] = ACTIONS(1203), - [aux_sym__val_number_token4] = ACTIONS(1203), - [aux_sym__val_number_token5] = ACTIONS(1203), - [aux_sym__val_number_token6] = ACTIONS(1203), - [anon_sym_0b] = ACTIONS(1203), - [anon_sym_0o] = ACTIONS(1203), - [anon_sym_0x] = ACTIONS(1203), - [sym_val_date] = ACTIONS(1203), - [anon_sym_DQUOTE] = ACTIONS(1203), - [sym__str_single_quotes] = ACTIONS(1203), - [sym__str_back_ticks] = ACTIONS(1203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1203), - [anon_sym_CARET] = ACTIONS(1203), - [anon_sym_POUND] = ACTIONS(113), + [1765] = { + [sym_expr_unary] = STATE(6273), + [sym__expr_unary_minus] = STATE(6230), + [sym_expr_binary] = STATE(6273), + [sym__expr_binary_expression] = STATE(6280), + [sym_expr_parenthesized] = STATE(6273), + [sym__val_range] = STATE(10186), + [sym__value] = STATE(6273), + [sym_val_nothing] = STATE(6331), + [sym_val_bool] = STATE(6034), + [sym_val_variable] = STATE(6331), + [sym__var] = STATE(5664), + [sym_val_number] = STATE(6331), + [sym__val_number_decimal] = STATE(4561), + [sym__val_number] = STATE(6217), + [sym_val_duration] = STATE(6331), + [sym_val_filesize] = STATE(6331), + [sym_val_binary] = STATE(6331), + [sym_val_string] = STATE(6331), + [sym__str_double_quotes] = STATE(6261), + [sym_val_interpolated] = STATE(6331), + [sym__inter_single_quotes] = STATE(6276), + [sym__inter_double_quotes] = STATE(6278), + [sym_val_list] = STATE(6331), + [sym_val_record] = STATE(6331), + [sym_val_table] = STATE(6331), + [sym_val_closure] = STATE(6331), + [sym_unquoted] = STATE(6206), + [sym__unquoted_anonymous_prefix] = STATE(10365), + [sym_comment] = STATE(1765), + [anon_sym_LBRACK] = ACTIONS(4118), + [anon_sym_LPAREN] = ACTIONS(5285), + [anon_sym_DOLLAR] = ACTIONS(5287), + [anon_sym_DASH] = ACTIONS(4124), + [anon_sym_LBRACE] = ACTIONS(4126), + [anon_sym_DOT_DOT] = ACTIONS(5289), + [anon_sym_not] = ACTIONS(4130), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5291), + [anon_sym_DOT_DOT_LT] = ACTIONS(5291), + [anon_sym_null] = ACTIONS(4134), + [anon_sym_true] = ACTIONS(4136), + [anon_sym_false] = ACTIONS(4136), + [aux_sym__val_number_decimal_token1] = ACTIONS(4138), + [aux_sym__val_number_decimal_token2] = ACTIONS(4140), + [anon_sym_DOT2] = ACTIONS(5293), + [aux_sym__val_number_decimal_token3] = ACTIONS(4144), + [aux_sym__val_number_token1] = ACTIONS(4146), + [aux_sym__val_number_token2] = ACTIONS(4146), + [aux_sym__val_number_token3] = ACTIONS(4146), + [aux_sym__val_number_token4] = ACTIONS(5295), + [aux_sym__val_number_token5] = ACTIONS(5295), + [aux_sym__val_number_token6] = ACTIONS(5295), + [anon_sym_0b] = ACTIONS(4150), + [anon_sym_0o] = ACTIONS(4152), + [anon_sym_0x] = ACTIONS(4152), + [sym_val_date] = ACTIONS(4154), + [anon_sym_DQUOTE] = ACTIONS(4156), + [sym__str_single_quotes] = ACTIONS(4158), + [sym__str_back_ticks] = ACTIONS(4158), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4160), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4162), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5297), + [anon_sym_POUND] = ACTIONS(3), }, - [1564] = { - [sym_cell_path] = STATE(2619), - [sym_path] = STATE(1497), - [sym_comment] = STATE(1564), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_COMMA] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(1188), - [anon_sym_DOLLAR] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_in] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1188), - [anon_sym_RBRACE] = ACTIONS(1188), - [anon_sym__] = ACTIONS(1186), - [anon_sym_DOT_DOT] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_STAR_STAR] = ACTIONS(1188), - [anon_sym_PLUS_PLUS] = ACTIONS(1188), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_mod] = ACTIONS(1188), - [anon_sym_SLASH_SLASH] = ACTIONS(1188), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_bit_DASHshl] = ACTIONS(1188), - [anon_sym_bit_DASHshr] = ACTIONS(1188), - [anon_sym_EQ_EQ] = ACTIONS(1188), - [anon_sym_BANG_EQ] = ACTIONS(1188), - [anon_sym_LT2] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1188), - [anon_sym_GT_EQ] = ACTIONS(1188), - [anon_sym_not_DASHin] = ACTIONS(1188), - [anon_sym_starts_DASHwith] = ACTIONS(1188), - [anon_sym_ends_DASHwith] = ACTIONS(1188), - [anon_sym_EQ_TILDE] = ACTIONS(1188), - [anon_sym_BANG_TILDE] = ACTIONS(1188), - [anon_sym_bit_DASHand] = ACTIONS(1188), - [anon_sym_bit_DASHxor] = ACTIONS(1188), - [anon_sym_bit_DASHor] = ACTIONS(1188), - [anon_sym_and] = ACTIONS(1188), - [anon_sym_xor] = ACTIONS(1188), - [anon_sym_or] = ACTIONS(1188), - [anon_sym_DOT] = ACTIONS(4585), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1188), - [anon_sym_DOT_DOT_LT] = ACTIONS(1188), - [anon_sym_null] = ACTIONS(1188), - [anon_sym_true] = ACTIONS(1188), - [anon_sym_false] = ACTIONS(1188), - [aux_sym__val_number_decimal_token1] = ACTIONS(1186), - [aux_sym__val_number_decimal_token2] = ACTIONS(1188), - [anon_sym_DOT2] = ACTIONS(1186), - [aux_sym__val_number_decimal_token3] = ACTIONS(1188), - [aux_sym__val_number_token1] = ACTIONS(1188), - [aux_sym__val_number_token2] = ACTIONS(1188), - [aux_sym__val_number_token3] = ACTIONS(1188), - [aux_sym__val_number_token4] = ACTIONS(1188), - [aux_sym__val_number_token5] = ACTIONS(1188), - [aux_sym__val_number_token6] = ACTIONS(1188), - [anon_sym_0b] = ACTIONS(1186), - [anon_sym_0o] = ACTIONS(1186), - [anon_sym_0x] = ACTIONS(1186), - [sym_val_date] = ACTIONS(1188), - [anon_sym_DQUOTE] = ACTIONS(1188), - [sym__str_single_quotes] = ACTIONS(1188), - [sym__str_back_ticks] = ACTIONS(1188), - [anon_sym_err_GT] = ACTIONS(1188), - [anon_sym_out_GT] = ACTIONS(1188), - [anon_sym_e_GT] = ACTIONS(1188), - [anon_sym_o_GT] = ACTIONS(1188), - [anon_sym_err_PLUSout_GT] = ACTIONS(1188), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1188), - [anon_sym_o_PLUSe_GT] = ACTIONS(1188), - [anon_sym_e_PLUSo_GT] = ACTIONS(1188), - [aux_sym_unquoted_token1] = ACTIONS(1186), + [1766] = { + [sym_expr_unary] = STATE(6273), + [sym__expr_unary_minus] = STATE(6230), + [sym_expr_binary] = STATE(6273), + [sym__expr_binary_expression] = STATE(6283), + [sym_expr_parenthesized] = STATE(6273), + [sym__val_range] = STATE(10186), + [sym__value] = STATE(6273), + [sym_val_nothing] = STATE(6331), + [sym_val_bool] = STATE(6034), + [sym_val_variable] = STATE(6331), + [sym__var] = STATE(5664), + [sym_val_number] = STATE(6331), + [sym__val_number_decimal] = STATE(4561), + [sym__val_number] = STATE(6217), + [sym_val_duration] = STATE(6331), + [sym_val_filesize] = STATE(6331), + [sym_val_binary] = STATE(6331), + [sym_val_string] = STATE(6331), + [sym__str_double_quotes] = STATE(6261), + [sym_val_interpolated] = STATE(6331), + [sym__inter_single_quotes] = STATE(6276), + [sym__inter_double_quotes] = STATE(6278), + [sym_val_list] = STATE(6331), + [sym_val_record] = STATE(6331), + [sym_val_table] = STATE(6331), + [sym_val_closure] = STATE(6331), + [sym_unquoted] = STATE(6207), + [sym__unquoted_anonymous_prefix] = STATE(10365), + [sym_comment] = STATE(1766), + [anon_sym_LBRACK] = ACTIONS(4118), + [anon_sym_LPAREN] = ACTIONS(5285), + [anon_sym_DOLLAR] = ACTIONS(5287), + [anon_sym_DASH] = ACTIONS(4124), + [anon_sym_LBRACE] = ACTIONS(4126), + [anon_sym_DOT_DOT] = ACTIONS(5289), + [anon_sym_not] = ACTIONS(4130), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5291), + [anon_sym_DOT_DOT_LT] = ACTIONS(5291), + [anon_sym_null] = ACTIONS(4134), + [anon_sym_true] = ACTIONS(4136), + [anon_sym_false] = ACTIONS(4136), + [aux_sym__val_number_decimal_token1] = ACTIONS(4138), + [aux_sym__val_number_decimal_token2] = ACTIONS(4140), + [anon_sym_DOT2] = ACTIONS(5293), + [aux_sym__val_number_decimal_token3] = ACTIONS(4144), + [aux_sym__val_number_token1] = ACTIONS(4146), + [aux_sym__val_number_token2] = ACTIONS(4146), + [aux_sym__val_number_token3] = ACTIONS(4146), + [aux_sym__val_number_token4] = ACTIONS(5295), + [aux_sym__val_number_token5] = ACTIONS(5295), + [aux_sym__val_number_token6] = ACTIONS(5295), + [anon_sym_0b] = ACTIONS(4150), + [anon_sym_0o] = ACTIONS(4152), + [anon_sym_0x] = ACTIONS(4152), + [sym_val_date] = ACTIONS(4154), + [anon_sym_DQUOTE] = ACTIONS(4156), + [sym__str_single_quotes] = ACTIONS(4158), + [sym__str_back_ticks] = ACTIONS(4158), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4160), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4162), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5297), [anon_sym_POUND] = ACTIONS(3), }, - [1565] = { - [sym__expression] = STATE(8741), - [sym_expr_unary] = STATE(5675), - [sym__expr_unary_minus] = STATE(5920), - [sym_expr_binary] = STATE(5675), - [sym__expr_binary_expression] = STATE(6795), - [sym_expr_parenthesized] = STATE(5043), - [sym_val_range] = STATE(8576), - [sym__val_range] = STATE(10586), - [sym__value] = STATE(5675), - [sym_val_nothing] = STATE(5948), - [sym_val_bool] = STATE(5584), - [sym_val_variable] = STATE(5150), - [sym__var] = STATE(4594), - [sym_val_number] = STATE(5948), - [sym__val_number_decimal] = STATE(4438), - [sym__val_number] = STATE(5814), - [sym_val_duration] = STATE(5948), - [sym_val_filesize] = STATE(5948), - [sym_val_binary] = STATE(5948), - [sym_val_string] = STATE(5948), - [sym__str_double_quotes] = STATE(5661), - [sym_val_interpolated] = STATE(5948), - [sym__inter_single_quotes] = STATE(5778), - [sym__inter_double_quotes] = STATE(5857), - [sym_val_list] = STATE(5948), - [sym_val_record] = STATE(5948), - [sym_val_table] = STATE(5948), - [sym_val_closure] = STATE(5948), - [sym_unquoted] = STATE(8745), - [sym__unquoted_anonymous_prefix] = STATE(11268), - [sym_comment] = STATE(1565), - [anon_sym_LBRACK] = ACTIONS(3528), - [anon_sym_LPAREN] = ACTIONS(3530), - [anon_sym_DOLLAR] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(4831), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_DOT_DOT] = ACTIONS(4833), - [anon_sym_not] = ACTIONS(4835), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4837), - [anon_sym_DOT_DOT_LT] = ACTIONS(4837), - [anon_sym_null] = ACTIONS(4839), - [anon_sym_true] = ACTIONS(4841), - [anon_sym_false] = ACTIONS(4841), - [aux_sym__val_number_decimal_token1] = ACTIONS(4843), - [aux_sym__val_number_decimal_token2] = ACTIONS(4845), - [anon_sym_DOT2] = ACTIONS(4847), - [aux_sym__val_number_decimal_token3] = ACTIONS(4849), - [aux_sym__val_number_token1] = ACTIONS(3546), - [aux_sym__val_number_token2] = ACTIONS(3546), - [aux_sym__val_number_token3] = ACTIONS(3546), - [aux_sym__val_number_token4] = ACTIONS(4851), - [aux_sym__val_number_token5] = ACTIONS(4851), - [aux_sym__val_number_token6] = ACTIONS(4851), - [anon_sym_0b] = ACTIONS(1848), - [anon_sym_0o] = ACTIONS(1850), - [anon_sym_0x] = ACTIONS(1850), - [sym_val_date] = ACTIONS(4853), - [anon_sym_DQUOTE] = ACTIONS(3552), - [sym__str_single_quotes] = ACTIONS(3554), - [sym__str_back_ticks] = ACTIONS(3554), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3558), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(1866), + [1767] = { + [sym_expr_unary] = STATE(6273), + [sym__expr_unary_minus] = STATE(6230), + [sym_expr_binary] = STATE(6273), + [sym__expr_binary_expression] = STATE(6291), + [sym_expr_parenthesized] = STATE(6273), + [sym__val_range] = STATE(10186), + [sym__value] = STATE(6273), + [sym_val_nothing] = STATE(6331), + [sym_val_bool] = STATE(6034), + [sym_val_variable] = STATE(6331), + [sym__var] = STATE(5664), + [sym_val_number] = STATE(6331), + [sym__val_number_decimal] = STATE(4561), + [sym__val_number] = STATE(6217), + [sym_val_duration] = STATE(6331), + [sym_val_filesize] = STATE(6331), + [sym_val_binary] = STATE(6331), + [sym_val_string] = STATE(6331), + [sym__str_double_quotes] = STATE(6261), + [sym_val_interpolated] = STATE(6331), + [sym__inter_single_quotes] = STATE(6276), + [sym__inter_double_quotes] = STATE(6278), + [sym_val_list] = STATE(6331), + [sym_val_record] = STATE(6331), + [sym_val_table] = STATE(6331), + [sym_val_closure] = STATE(6331), + [sym_unquoted] = STATE(6208), + [sym__unquoted_anonymous_prefix] = STATE(10365), + [sym_comment] = STATE(1767), + [anon_sym_LBRACK] = ACTIONS(4118), + [anon_sym_LPAREN] = ACTIONS(5285), + [anon_sym_DOLLAR] = ACTIONS(5287), + [anon_sym_DASH] = ACTIONS(4124), + [anon_sym_LBRACE] = ACTIONS(4126), + [anon_sym_DOT_DOT] = ACTIONS(5289), + [anon_sym_not] = ACTIONS(4130), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5291), + [anon_sym_DOT_DOT_LT] = ACTIONS(5291), + [anon_sym_null] = ACTIONS(4134), + [anon_sym_true] = ACTIONS(4136), + [anon_sym_false] = ACTIONS(4136), + [aux_sym__val_number_decimal_token1] = ACTIONS(4138), + [aux_sym__val_number_decimal_token2] = ACTIONS(4140), + [anon_sym_DOT2] = ACTIONS(5293), + [aux_sym__val_number_decimal_token3] = ACTIONS(4144), + [aux_sym__val_number_token1] = ACTIONS(4146), + [aux_sym__val_number_token2] = ACTIONS(4146), + [aux_sym__val_number_token3] = ACTIONS(4146), + [aux_sym__val_number_token4] = ACTIONS(5295), + [aux_sym__val_number_token5] = ACTIONS(5295), + [aux_sym__val_number_token6] = ACTIONS(5295), + [anon_sym_0b] = ACTIONS(4150), + [anon_sym_0o] = ACTIONS(4152), + [anon_sym_0x] = ACTIONS(4152), + [sym_val_date] = ACTIONS(4154), + [anon_sym_DQUOTE] = ACTIONS(4156), + [sym__str_single_quotes] = ACTIONS(4158), + [sym__str_back_ticks] = ACTIONS(4158), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4160), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4162), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5297), [anon_sym_POUND] = ACTIONS(3), }, - [1566] = { - [sym__match_pattern_expression] = STATE(4408), - [sym__match_pattern_value] = STATE(4362), - [sym__match_pattern_list] = STATE(4365), - [sym__match_pattern_rest] = STATE(10880), - [sym__match_pattern_record] = STATE(4367), - [sym__expr_unary_minus] = STATE(4368), - [sym_expr_parenthesized] = STATE(3973), - [sym_val_range] = STATE(4362), - [sym__val_range] = STATE(10474), - [sym_val_nothing] = STATE(4371), - [sym_val_bool] = STATE(4248), - [sym_val_variable] = STATE(3974), - [sym__var] = STATE(3741), - [sym_val_number] = STATE(4371), - [sym__val_number_decimal] = STATE(3705), - [sym__val_number] = STATE(4345), - [sym_val_duration] = STATE(4371), - [sym_val_filesize] = STATE(4371), - [sym_val_binary] = STATE(4371), - [sym_val_string] = STATE(4371), - [sym__str_double_quotes] = STATE(4434), - [sym_val_list] = STATE(10963), - [sym__list_item_starts_with_sign] = STATE(4508), - [sym_val_table] = STATE(4371), - [sym_short_flag] = STATE(4508), - [sym_long_flag] = STATE(4508), - [sym_long_flag_equals_value] = STATE(4347), - [sym__unquoted_in_list] = STATE(4508), - [sym__unquoted_anonymous_prefix] = STATE(11104), - [sym_comment] = STATE(1566), - [aux_sym__match_pattern_list_repeat1] = STATE(1654), - [anon_sym_LBRACK] = ACTIONS(4741), - [anon_sym_RBRACK] = ACTIONS(4855), - [anon_sym_LPAREN] = ACTIONS(3399), - [anon_sym_DOLLAR] = ACTIONS(4745), - [anon_sym_DASH_DASH] = ACTIONS(3403), - [anon_sym_DASH] = ACTIONS(4747), - [anon_sym_LBRACE] = ACTIONS(4749), - [anon_sym_DOT_DOT] = ACTIONS(4857), - [anon_sym_PLUS] = ACTIONS(4753), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4755), - [anon_sym_DOT_DOT_LT] = ACTIONS(4755), - [anon_sym_null] = ACTIONS(4757), - [anon_sym_true] = ACTIONS(4759), - [anon_sym_false] = ACTIONS(4759), - [aux_sym__val_number_decimal_token1] = ACTIONS(4761), - [aux_sym__val_number_decimal_token2] = ACTIONS(4763), - [anon_sym_DOT2] = ACTIONS(4765), - [aux_sym__val_number_decimal_token3] = ACTIONS(4767), - [aux_sym__val_number_token1] = ACTIONS(3425), - [aux_sym__val_number_token2] = ACTIONS(3425), - [aux_sym__val_number_token3] = ACTIONS(3425), - [aux_sym__val_number_token4] = ACTIONS(4769), - [aux_sym__val_number_token5] = ACTIONS(4769), - [aux_sym__val_number_token6] = ACTIONS(4769), - [anon_sym_0b] = ACTIONS(3429), - [anon_sym_0o] = ACTIONS(3431), - [anon_sym_0x] = ACTIONS(3431), - [sym_val_date] = ACTIONS(4771), - [anon_sym_DQUOTE] = ACTIONS(3435), - [sym__str_single_quotes] = ACTIONS(3437), - [sym__str_back_ticks] = ACTIONS(3437), - [anon_sym_err_GT] = ACTIONS(1699), - [anon_sym_out_GT] = ACTIONS(1699), - [anon_sym_e_GT] = ACTIONS(1699), - [anon_sym_o_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT] = ACTIONS(1699), - [aux_sym__unquoted_in_list_token1] = ACTIONS(4773), + [1768] = { + [sym_expr_unary] = STATE(6273), + [sym__expr_unary_minus] = STATE(6230), + [sym_expr_binary] = STATE(6273), + [sym__expr_binary_expression] = STATE(6321), + [sym_expr_parenthesized] = STATE(6273), + [sym__val_range] = STATE(10186), + [sym__value] = STATE(6273), + [sym_val_nothing] = STATE(6331), + [sym_val_bool] = STATE(6034), + [sym_val_variable] = STATE(6331), + [sym__var] = STATE(5664), + [sym_val_number] = STATE(6331), + [sym__val_number_decimal] = STATE(4561), + [sym__val_number] = STATE(6217), + [sym_val_duration] = STATE(6331), + [sym_val_filesize] = STATE(6331), + [sym_val_binary] = STATE(6331), + [sym_val_string] = STATE(6331), + [sym__str_double_quotes] = STATE(6261), + [sym_val_interpolated] = STATE(6331), + [sym__inter_single_quotes] = STATE(6276), + [sym__inter_double_quotes] = STATE(6278), + [sym_val_list] = STATE(6331), + [sym_val_record] = STATE(6331), + [sym_val_table] = STATE(6331), + [sym_val_closure] = STATE(6331), + [sym_unquoted] = STATE(6212), + [sym__unquoted_anonymous_prefix] = STATE(10365), + [sym_comment] = STATE(1768), + [anon_sym_LBRACK] = ACTIONS(4118), + [anon_sym_LPAREN] = ACTIONS(5285), + [anon_sym_DOLLAR] = ACTIONS(5287), + [anon_sym_DASH] = ACTIONS(4124), + [anon_sym_LBRACE] = ACTIONS(4126), + [anon_sym_DOT_DOT] = ACTIONS(5289), + [anon_sym_not] = ACTIONS(4130), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5291), + [anon_sym_DOT_DOT_LT] = ACTIONS(5291), + [anon_sym_null] = ACTIONS(4134), + [anon_sym_true] = ACTIONS(4136), + [anon_sym_false] = ACTIONS(4136), + [aux_sym__val_number_decimal_token1] = ACTIONS(4138), + [aux_sym__val_number_decimal_token2] = ACTIONS(4140), + [anon_sym_DOT2] = ACTIONS(5293), + [aux_sym__val_number_decimal_token3] = ACTIONS(4144), + [aux_sym__val_number_token1] = ACTIONS(4146), + [aux_sym__val_number_token2] = ACTIONS(4146), + [aux_sym__val_number_token3] = ACTIONS(4146), + [aux_sym__val_number_token4] = ACTIONS(5295), + [aux_sym__val_number_token5] = ACTIONS(5295), + [aux_sym__val_number_token6] = ACTIONS(5295), + [anon_sym_0b] = ACTIONS(4150), + [anon_sym_0o] = ACTIONS(4152), + [anon_sym_0x] = ACTIONS(4152), + [sym_val_date] = ACTIONS(4154), + [anon_sym_DQUOTE] = ACTIONS(4156), + [sym__str_single_quotes] = ACTIONS(4158), + [sym__str_back_ticks] = ACTIONS(4158), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4160), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4162), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5297), [anon_sym_POUND] = ACTIONS(3), }, - [1567] = { - [sym_comment] = STATE(1567), - [ts_builtin_sym_end] = ACTIONS(961), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_PIPE] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH_DASH] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(959), - [anon_sym_PLUS_PLUS] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(959), - [anon_sym_SLASH_SLASH] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(959), - [anon_sym_bit_DASHshr] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(959), - [anon_sym_BANG_EQ] = ACTIONS(959), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(959), - [anon_sym_GT_EQ] = ACTIONS(959), - [anon_sym_not_DASHin] = ACTIONS(959), - [anon_sym_starts_DASHwith] = ACTIONS(959), - [anon_sym_ends_DASHwith] = ACTIONS(959), - [anon_sym_EQ_TILDE] = ACTIONS(959), - [anon_sym_BANG_TILDE] = ACTIONS(959), - [anon_sym_bit_DASHand] = ACTIONS(959), - [anon_sym_bit_DASHxor] = ACTIONS(959), - [anon_sym_bit_DASHor] = ACTIONS(959), - [anon_sym_and] = ACTIONS(959), - [anon_sym_xor] = ACTIONS(959), - [anon_sym_or] = ACTIONS(959), - [anon_sym_not] = ACTIONS(959), - [anon_sym_DOT_DOT2] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(4859), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_DOT_DOT_LT] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(983), - [anon_sym_DOT_DOT_LT2] = ACTIONS(983), - [anon_sym_null] = ACTIONS(959), - [anon_sym_true] = ACTIONS(959), - [anon_sym_false] = ACTIONS(959), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(959), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(959), - [aux_sym__val_number_token1] = ACTIONS(959), - [aux_sym__val_number_token2] = ACTIONS(959), - [aux_sym__val_number_token3] = ACTIONS(959), - [aux_sym__val_number_token4] = ACTIONS(959), - [aux_sym__val_number_token5] = ACTIONS(959), - [aux_sym__val_number_token6] = ACTIONS(959), - [anon_sym_0b] = ACTIONS(959), - [sym_filesize_unit] = ACTIONS(4091), - [sym_duration_unit] = ACTIONS(4093), - [anon_sym_0o] = ACTIONS(959), - [anon_sym_0x] = ACTIONS(959), - [sym_val_date] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [sym__str_single_quotes] = ACTIONS(959), - [sym__str_back_ticks] = ACTIONS(959), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(959), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(959), - [aux_sym_unquoted_token5] = ACTIONS(4781), - [anon_sym_POUND] = ACTIONS(113), + [1769] = { + [sym_expr_unary] = STATE(6273), + [sym__expr_unary_minus] = STATE(6230), + [sym_expr_binary] = STATE(6273), + [sym__expr_binary_expression] = STATE(6323), + [sym_expr_parenthesized] = STATE(6273), + [sym__val_range] = STATE(10186), + [sym__value] = STATE(6273), + [sym_val_nothing] = STATE(6331), + [sym_val_bool] = STATE(6034), + [sym_val_variable] = STATE(6331), + [sym__var] = STATE(5664), + [sym_val_number] = STATE(6331), + [sym__val_number_decimal] = STATE(4561), + [sym__val_number] = STATE(6217), + [sym_val_duration] = STATE(6331), + [sym_val_filesize] = STATE(6331), + [sym_val_binary] = STATE(6331), + [sym_val_string] = STATE(6331), + [sym__str_double_quotes] = STATE(6261), + [sym_val_interpolated] = STATE(6331), + [sym__inter_single_quotes] = STATE(6276), + [sym__inter_double_quotes] = STATE(6278), + [sym_val_list] = STATE(6331), + [sym_val_record] = STATE(6331), + [sym_val_table] = STATE(6331), + [sym_val_closure] = STATE(6331), + [sym_unquoted] = STATE(6215), + [sym__unquoted_anonymous_prefix] = STATE(10365), + [sym_comment] = STATE(1769), + [anon_sym_LBRACK] = ACTIONS(4118), + [anon_sym_LPAREN] = ACTIONS(5285), + [anon_sym_DOLLAR] = ACTIONS(5287), + [anon_sym_DASH] = ACTIONS(4124), + [anon_sym_LBRACE] = ACTIONS(4126), + [anon_sym_DOT_DOT] = ACTIONS(5289), + [anon_sym_not] = ACTIONS(4130), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5291), + [anon_sym_DOT_DOT_LT] = ACTIONS(5291), + [anon_sym_null] = ACTIONS(4134), + [anon_sym_true] = ACTIONS(4136), + [anon_sym_false] = ACTIONS(4136), + [aux_sym__val_number_decimal_token1] = ACTIONS(4138), + [aux_sym__val_number_decimal_token2] = ACTIONS(4140), + [anon_sym_DOT2] = ACTIONS(5293), + [aux_sym__val_number_decimal_token3] = ACTIONS(4144), + [aux_sym__val_number_token1] = ACTIONS(4146), + [aux_sym__val_number_token2] = ACTIONS(4146), + [aux_sym__val_number_token3] = ACTIONS(4146), + [aux_sym__val_number_token4] = ACTIONS(5295), + [aux_sym__val_number_token5] = ACTIONS(5295), + [aux_sym__val_number_token6] = ACTIONS(5295), + [anon_sym_0b] = ACTIONS(4150), + [anon_sym_0o] = ACTIONS(4152), + [anon_sym_0x] = ACTIONS(4152), + [sym_val_date] = ACTIONS(4154), + [anon_sym_DQUOTE] = ACTIONS(4156), + [sym__str_single_quotes] = ACTIONS(4158), + [sym__str_back_ticks] = ACTIONS(4158), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4160), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4162), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5297), + [anon_sym_POUND] = ACTIONS(3), }, - [1568] = { - [sym_comment] = STATE(1568), - [ts_builtin_sym_end] = ACTIONS(919), - [anon_sym_SEMI] = ACTIONS(917), - [anon_sym_LF] = ACTIONS(919), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_LPAREN] = ACTIONS(917), - [anon_sym_PIPE] = ACTIONS(917), - [anon_sym_DOLLAR] = ACTIONS(917), - [anon_sym_GT] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_in] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(917), - [anon_sym_DOT_DOT] = ACTIONS(917), - [anon_sym_STAR] = ACTIONS(917), - [anon_sym_STAR_STAR] = ACTIONS(917), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_mod] = ACTIONS(917), - [anon_sym_SLASH_SLASH] = ACTIONS(917), - [anon_sym_PLUS] = ACTIONS(917), - [anon_sym_bit_DASHshl] = ACTIONS(917), - [anon_sym_bit_DASHshr] = ACTIONS(917), - [anon_sym_EQ_EQ] = ACTIONS(917), - [anon_sym_BANG_EQ] = ACTIONS(917), - [anon_sym_LT2] = ACTIONS(917), - [anon_sym_LT_EQ] = ACTIONS(917), - [anon_sym_GT_EQ] = ACTIONS(917), - [anon_sym_not_DASHin] = ACTIONS(917), - [anon_sym_starts_DASHwith] = ACTIONS(917), - [anon_sym_ends_DASHwith] = ACTIONS(917), - [anon_sym_EQ_TILDE] = ACTIONS(917), - [anon_sym_BANG_TILDE] = ACTIONS(917), - [anon_sym_bit_DASHand] = ACTIONS(917), - [anon_sym_bit_DASHxor] = ACTIONS(917), - [anon_sym_bit_DASHor] = ACTIONS(917), - [anon_sym_and] = ACTIONS(917), - [anon_sym_xor] = ACTIONS(917), - [anon_sym_or] = ACTIONS(917), - [anon_sym_not] = ACTIONS(917), - [anon_sym_DOT_DOT2] = ACTIONS(917), - [anon_sym_DOT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ] = ACTIONS(917), - [anon_sym_DOT_DOT_LT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(919), - [anon_sym_DOT_DOT_LT2] = ACTIONS(919), - [anon_sym_null] = ACTIONS(917), - [anon_sym_true] = ACTIONS(917), - [anon_sym_false] = ACTIONS(917), - [aux_sym__val_number_decimal_token1] = ACTIONS(917), - [aux_sym__val_number_decimal_token2] = ACTIONS(917), - [anon_sym_DOT2] = ACTIONS(917), - [aux_sym__val_number_decimal_token3] = ACTIONS(917), - [aux_sym__val_number_token1] = ACTIONS(917), - [aux_sym__val_number_token2] = ACTIONS(917), - [aux_sym__val_number_token3] = ACTIONS(917), - [aux_sym__val_number_token4] = ACTIONS(917), - [aux_sym__val_number_token5] = ACTIONS(917), - [aux_sym__val_number_token6] = ACTIONS(917), - [anon_sym_0b] = ACTIONS(917), - [sym_filesize_unit] = ACTIONS(917), - [sym_duration_unit] = ACTIONS(919), - [anon_sym_0o] = ACTIONS(917), - [anon_sym_0x] = ACTIONS(917), - [sym_val_date] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(917), - [sym__str_single_quotes] = ACTIONS(917), - [sym__str_back_ticks] = ACTIONS(917), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(917), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(917), - [aux_sym_unquoted_token5] = ACTIONS(917), - [anon_sym_POUND] = ACTIONS(113), + [1770] = { + [sym_expr_unary] = STATE(6273), + [sym__expr_unary_minus] = STATE(6230), + [sym_expr_binary] = STATE(6273), + [sym__expr_binary_expression] = STATE(6316), + [sym_expr_parenthesized] = STATE(6273), + [sym__val_range] = STATE(10186), + [sym__value] = STATE(6273), + [sym_val_nothing] = STATE(6331), + [sym_val_bool] = STATE(6034), + [sym_val_variable] = STATE(6331), + [sym__var] = STATE(5664), + [sym_val_number] = STATE(6331), + [sym__val_number_decimal] = STATE(4561), + [sym__val_number] = STATE(6217), + [sym_val_duration] = STATE(6331), + [sym_val_filesize] = STATE(6331), + [sym_val_binary] = STATE(6331), + [sym_val_string] = STATE(6331), + [sym__str_double_quotes] = STATE(6261), + [sym_val_interpolated] = STATE(6331), + [sym__inter_single_quotes] = STATE(6276), + [sym__inter_double_quotes] = STATE(6278), + [sym_val_list] = STATE(6331), + [sym_val_record] = STATE(6331), + [sym_val_table] = STATE(6331), + [sym_val_closure] = STATE(6331), + [sym_unquoted] = STATE(6219), + [sym__unquoted_anonymous_prefix] = STATE(10365), + [sym_comment] = STATE(1770), + [anon_sym_LBRACK] = ACTIONS(4118), + [anon_sym_LPAREN] = ACTIONS(5285), + [anon_sym_DOLLAR] = ACTIONS(5287), + [anon_sym_DASH] = ACTIONS(4124), + [anon_sym_LBRACE] = ACTIONS(4126), + [anon_sym_DOT_DOT] = ACTIONS(5289), + [anon_sym_not] = ACTIONS(4130), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5291), + [anon_sym_DOT_DOT_LT] = ACTIONS(5291), + [anon_sym_null] = ACTIONS(4134), + [anon_sym_true] = ACTIONS(4136), + [anon_sym_false] = ACTIONS(4136), + [aux_sym__val_number_decimal_token1] = ACTIONS(4138), + [aux_sym__val_number_decimal_token2] = ACTIONS(4140), + [anon_sym_DOT2] = ACTIONS(5293), + [aux_sym__val_number_decimal_token3] = ACTIONS(4144), + [aux_sym__val_number_token1] = ACTIONS(4146), + [aux_sym__val_number_token2] = ACTIONS(4146), + [aux_sym__val_number_token3] = ACTIONS(4146), + [aux_sym__val_number_token4] = ACTIONS(5295), + [aux_sym__val_number_token5] = ACTIONS(5295), + [aux_sym__val_number_token6] = ACTIONS(5295), + [anon_sym_0b] = ACTIONS(4150), + [anon_sym_0o] = ACTIONS(4152), + [anon_sym_0x] = ACTIONS(4152), + [sym_val_date] = ACTIONS(4154), + [anon_sym_DQUOTE] = ACTIONS(4156), + [sym__str_single_quotes] = ACTIONS(4158), + [sym__str_back_ticks] = ACTIONS(4158), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4160), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4162), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5297), + [anon_sym_POUND] = ACTIONS(3), }, - [1569] = { - [sym_comment] = STATE(1569), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_alias] = ACTIONS(1070), - [anon_sym_let] = ACTIONS(1070), - [anon_sym_let_DASHenv] = ACTIONS(1070), - [anon_sym_mut] = ACTIONS(1070), - [anon_sym_const] = ACTIONS(1070), - [anon_sym_SEMI] = ACTIONS(1070), - [sym_cmd_identifier] = ACTIONS(1070), - [anon_sym_LF] = ACTIONS(1072), - [anon_sym_def] = ACTIONS(1070), - [anon_sym_export_DASHenv] = ACTIONS(1070), - [anon_sym_extern] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_use] = ACTIONS(1070), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_RPAREN] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_error] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_loop] = ACTIONS(1070), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_do] = ACTIONS(1070), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_match] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_RBRACE] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_try] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_source] = ACTIONS(1070), - [anon_sym_source_DASHenv] = ACTIONS(1070), - [anon_sym_register] = ACTIONS(1070), - [anon_sym_hide] = ACTIONS(1070), - [anon_sym_hide_DASHenv] = ACTIONS(1070), - [anon_sym_overlay] = ACTIONS(1070), - [anon_sym_as] = ACTIONS(1070), - [anon_sym_where] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(4861), - [anon_sym_not] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_null] = ACTIONS(1070), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1070), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), - [anon_sym_CARET] = ACTIONS(1070), - [anon_sym_POUND] = ACTIONS(113), + [1771] = { + [sym_expr_unary] = STATE(6273), + [sym__expr_unary_minus] = STATE(6230), + [sym_expr_binary] = STATE(6273), + [sym__expr_binary_expression] = STATE(6240), + [sym_expr_parenthesized] = STATE(6273), + [sym__val_range] = STATE(10186), + [sym__value] = STATE(6273), + [sym_val_nothing] = STATE(6331), + [sym_val_bool] = STATE(6034), + [sym_val_variable] = STATE(6331), + [sym__var] = STATE(5664), + [sym_val_number] = STATE(6331), + [sym__val_number_decimal] = STATE(4561), + [sym__val_number] = STATE(6217), + [sym_val_duration] = STATE(6331), + [sym_val_filesize] = STATE(6331), + [sym_val_binary] = STATE(6331), + [sym_val_string] = STATE(6331), + [sym__str_double_quotes] = STATE(6261), + [sym_val_interpolated] = STATE(6331), + [sym__inter_single_quotes] = STATE(6276), + [sym__inter_double_quotes] = STATE(6278), + [sym_val_list] = STATE(6331), + [sym_val_record] = STATE(6331), + [sym_val_table] = STATE(6331), + [sym_val_closure] = STATE(6331), + [sym_unquoted] = STATE(6220), + [sym__unquoted_anonymous_prefix] = STATE(10365), + [sym_comment] = STATE(1771), + [anon_sym_LBRACK] = ACTIONS(4118), + [anon_sym_LPAREN] = ACTIONS(5285), + [anon_sym_DOLLAR] = ACTIONS(5287), + [anon_sym_DASH] = ACTIONS(4124), + [anon_sym_LBRACE] = ACTIONS(4126), + [anon_sym_DOT_DOT] = ACTIONS(5289), + [anon_sym_not] = ACTIONS(4130), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5291), + [anon_sym_DOT_DOT_LT] = ACTIONS(5291), + [anon_sym_null] = ACTIONS(4134), + [anon_sym_true] = ACTIONS(4136), + [anon_sym_false] = ACTIONS(4136), + [aux_sym__val_number_decimal_token1] = ACTIONS(4138), + [aux_sym__val_number_decimal_token2] = ACTIONS(4140), + [anon_sym_DOT2] = ACTIONS(5293), + [aux_sym__val_number_decimal_token3] = ACTIONS(4144), + [aux_sym__val_number_token1] = ACTIONS(4146), + [aux_sym__val_number_token2] = ACTIONS(4146), + [aux_sym__val_number_token3] = ACTIONS(4146), + [aux_sym__val_number_token4] = ACTIONS(5295), + [aux_sym__val_number_token5] = ACTIONS(5295), + [aux_sym__val_number_token6] = ACTIONS(5295), + [anon_sym_0b] = ACTIONS(4150), + [anon_sym_0o] = ACTIONS(4152), + [anon_sym_0x] = ACTIONS(4152), + [sym_val_date] = ACTIONS(4154), + [anon_sym_DQUOTE] = ACTIONS(4156), + [sym__str_single_quotes] = ACTIONS(4158), + [sym__str_back_ticks] = ACTIONS(4158), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4160), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4162), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5297), + [anon_sym_POUND] = ACTIONS(3), }, - [1570] = { - [sym_comment] = STATE(1570), - [ts_builtin_sym_end] = ACTIONS(938), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_error] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_as] = ACTIONS(936), - [anon_sym_where] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_LPAREN2] = ACTIONS(938), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [aux_sym__immediate_decimal_token1] = ACTIONS(4863), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [aux_sym_unquoted_token2] = ACTIONS(4865), - [anon_sym_POUND] = ACTIONS(113), + [1772] = { + [sym_expr_unary] = STATE(6273), + [sym__expr_unary_minus] = STATE(6230), + [sym_expr_binary] = STATE(6273), + [sym__expr_binary_expression] = STATE(6237), + [sym_expr_parenthesized] = STATE(6273), + [sym__val_range] = STATE(10186), + [sym__value] = STATE(6273), + [sym_val_nothing] = STATE(6331), + [sym_val_bool] = STATE(6034), + [sym_val_variable] = STATE(6331), + [sym__var] = STATE(5664), + [sym_val_number] = STATE(6331), + [sym__val_number_decimal] = STATE(4561), + [sym__val_number] = STATE(6217), + [sym_val_duration] = STATE(6331), + [sym_val_filesize] = STATE(6331), + [sym_val_binary] = STATE(6331), + [sym_val_string] = STATE(6331), + [sym__str_double_quotes] = STATE(6261), + [sym_val_interpolated] = STATE(6331), + [sym__inter_single_quotes] = STATE(6276), + [sym__inter_double_quotes] = STATE(6278), + [sym_val_list] = STATE(6331), + [sym_val_record] = STATE(6331), + [sym_val_table] = STATE(6331), + [sym_val_closure] = STATE(6331), + [sym_unquoted] = STATE(6221), + [sym__unquoted_anonymous_prefix] = STATE(10365), + [sym_comment] = STATE(1772), + [anon_sym_LBRACK] = ACTIONS(4118), + [anon_sym_LPAREN] = ACTIONS(5285), + [anon_sym_DOLLAR] = ACTIONS(5287), + [anon_sym_DASH] = ACTIONS(4124), + [anon_sym_LBRACE] = ACTIONS(4126), + [anon_sym_DOT_DOT] = ACTIONS(5289), + [anon_sym_not] = ACTIONS(4130), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5291), + [anon_sym_DOT_DOT_LT] = ACTIONS(5291), + [anon_sym_null] = ACTIONS(4134), + [anon_sym_true] = ACTIONS(4136), + [anon_sym_false] = ACTIONS(4136), + [aux_sym__val_number_decimal_token1] = ACTIONS(4138), + [aux_sym__val_number_decimal_token2] = ACTIONS(4140), + [anon_sym_DOT2] = ACTIONS(5293), + [aux_sym__val_number_decimal_token3] = ACTIONS(4144), + [aux_sym__val_number_token1] = ACTIONS(4146), + [aux_sym__val_number_token2] = ACTIONS(4146), + [aux_sym__val_number_token3] = ACTIONS(4146), + [aux_sym__val_number_token4] = ACTIONS(5295), + [aux_sym__val_number_token5] = ACTIONS(5295), + [aux_sym__val_number_token6] = ACTIONS(5295), + [anon_sym_0b] = ACTIONS(4150), + [anon_sym_0o] = ACTIONS(4152), + [anon_sym_0x] = ACTIONS(4152), + [sym_val_date] = ACTIONS(4154), + [anon_sym_DQUOTE] = ACTIONS(4156), + [sym__str_single_quotes] = ACTIONS(4158), + [sym__str_back_ticks] = ACTIONS(4158), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4160), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4162), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5297), + [anon_sym_POUND] = ACTIONS(3), }, - [1571] = { - [sym_cell_path] = STATE(2609), - [sym_path] = STATE(1497), - [sym_comment] = STATE(1571), - [anon_sym_LBRACK] = ACTIONS(1150), - [anon_sym_COMMA] = ACTIONS(1150), - [anon_sym_LPAREN] = ACTIONS(1150), - [anon_sym_DOLLAR] = ACTIONS(1150), - [anon_sym_GT] = ACTIONS(1148), - [anon_sym_DASH] = ACTIONS(1148), - [anon_sym_in] = ACTIONS(1148), - [anon_sym_LBRACE] = ACTIONS(1150), - [anon_sym_RBRACE] = ACTIONS(1150), - [anon_sym__] = ACTIONS(1148), - [anon_sym_DOT_DOT] = ACTIONS(1148), - [anon_sym_STAR] = ACTIONS(1148), - [anon_sym_STAR_STAR] = ACTIONS(1150), - [anon_sym_PLUS_PLUS] = ACTIONS(1150), - [anon_sym_SLASH] = ACTIONS(1148), - [anon_sym_mod] = ACTIONS(1150), - [anon_sym_SLASH_SLASH] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(1148), - [anon_sym_bit_DASHshl] = ACTIONS(1150), - [anon_sym_bit_DASHshr] = ACTIONS(1150), - [anon_sym_EQ_EQ] = ACTIONS(1150), - [anon_sym_BANG_EQ] = ACTIONS(1150), - [anon_sym_LT2] = ACTIONS(1148), - [anon_sym_LT_EQ] = ACTIONS(1150), - [anon_sym_GT_EQ] = ACTIONS(1150), - [anon_sym_not_DASHin] = ACTIONS(1150), - [anon_sym_starts_DASHwith] = ACTIONS(1150), - [anon_sym_ends_DASHwith] = ACTIONS(1150), - [anon_sym_EQ_TILDE] = ACTIONS(1150), - [anon_sym_BANG_TILDE] = ACTIONS(1150), - [anon_sym_bit_DASHand] = ACTIONS(1150), - [anon_sym_bit_DASHxor] = ACTIONS(1150), - [anon_sym_bit_DASHor] = ACTIONS(1150), - [anon_sym_and] = ACTIONS(1150), - [anon_sym_xor] = ACTIONS(1150), - [anon_sym_or] = ACTIONS(1150), - [anon_sym_DOT] = ACTIONS(4585), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1150), - [anon_sym_DOT_DOT_LT] = ACTIONS(1150), - [anon_sym_null] = ACTIONS(1150), - [anon_sym_true] = ACTIONS(1150), - [anon_sym_false] = ACTIONS(1150), - [aux_sym__val_number_decimal_token1] = ACTIONS(1148), - [aux_sym__val_number_decimal_token2] = ACTIONS(1150), - [anon_sym_DOT2] = ACTIONS(1148), - [aux_sym__val_number_decimal_token3] = ACTIONS(1150), - [aux_sym__val_number_token1] = ACTIONS(1150), - [aux_sym__val_number_token2] = ACTIONS(1150), - [aux_sym__val_number_token3] = ACTIONS(1150), - [aux_sym__val_number_token4] = ACTIONS(1150), - [aux_sym__val_number_token5] = ACTIONS(1150), - [aux_sym__val_number_token6] = ACTIONS(1150), - [anon_sym_0b] = ACTIONS(1148), - [anon_sym_0o] = ACTIONS(1148), - [anon_sym_0x] = ACTIONS(1148), - [sym_val_date] = ACTIONS(1150), - [anon_sym_DQUOTE] = ACTIONS(1150), - [sym__str_single_quotes] = ACTIONS(1150), - [sym__str_back_ticks] = ACTIONS(1150), - [anon_sym_err_GT] = ACTIONS(1150), - [anon_sym_out_GT] = ACTIONS(1150), - [anon_sym_e_GT] = ACTIONS(1150), - [anon_sym_o_GT] = ACTIONS(1150), - [anon_sym_err_PLUSout_GT] = ACTIONS(1150), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1150), - [anon_sym_o_PLUSe_GT] = ACTIONS(1150), - [anon_sym_e_PLUSo_GT] = ACTIONS(1150), - [aux_sym_unquoted_token1] = ACTIONS(1148), + [1773] = { + [sym_expr_unary] = STATE(6273), + [sym__expr_unary_minus] = STATE(6230), + [sym_expr_binary] = STATE(6273), + [sym__expr_binary_expression] = STATE(6317), + [sym_expr_parenthesized] = STATE(6273), + [sym__val_range] = STATE(10186), + [sym__value] = STATE(6273), + [sym_val_nothing] = STATE(6331), + [sym_val_bool] = STATE(6034), + [sym_val_variable] = STATE(6331), + [sym__var] = STATE(5664), + [sym_val_number] = STATE(6331), + [sym__val_number_decimal] = STATE(4561), + [sym__val_number] = STATE(6217), + [sym_val_duration] = STATE(6331), + [sym_val_filesize] = STATE(6331), + [sym_val_binary] = STATE(6331), + [sym_val_string] = STATE(6331), + [sym__str_double_quotes] = STATE(6261), + [sym_val_interpolated] = STATE(6331), + [sym__inter_single_quotes] = STATE(6276), + [sym__inter_double_quotes] = STATE(6278), + [sym_val_list] = STATE(6331), + [sym_val_record] = STATE(6331), + [sym_val_table] = STATE(6331), + [sym_val_closure] = STATE(6331), + [sym_unquoted] = STATE(6223), + [sym__unquoted_anonymous_prefix] = STATE(10365), + [sym_comment] = STATE(1773), + [anon_sym_LBRACK] = ACTIONS(4118), + [anon_sym_LPAREN] = ACTIONS(5285), + [anon_sym_DOLLAR] = ACTIONS(5287), + [anon_sym_DASH] = ACTIONS(4124), + [anon_sym_LBRACE] = ACTIONS(4126), + [anon_sym_DOT_DOT] = ACTIONS(5289), + [anon_sym_not] = ACTIONS(4130), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5291), + [anon_sym_DOT_DOT_LT] = ACTIONS(5291), + [anon_sym_null] = ACTIONS(4134), + [anon_sym_true] = ACTIONS(4136), + [anon_sym_false] = ACTIONS(4136), + [aux_sym__val_number_decimal_token1] = ACTIONS(4138), + [aux_sym__val_number_decimal_token2] = ACTIONS(4140), + [anon_sym_DOT2] = ACTIONS(5293), + [aux_sym__val_number_decimal_token3] = ACTIONS(4144), + [aux_sym__val_number_token1] = ACTIONS(4146), + [aux_sym__val_number_token2] = ACTIONS(4146), + [aux_sym__val_number_token3] = ACTIONS(4146), + [aux_sym__val_number_token4] = ACTIONS(5295), + [aux_sym__val_number_token5] = ACTIONS(5295), + [aux_sym__val_number_token6] = ACTIONS(5295), + [anon_sym_0b] = ACTIONS(4150), + [anon_sym_0o] = ACTIONS(4152), + [anon_sym_0x] = ACTIONS(4152), + [sym_val_date] = ACTIONS(4154), + [anon_sym_DQUOTE] = ACTIONS(4156), + [sym__str_single_quotes] = ACTIONS(4158), + [sym__str_back_ticks] = ACTIONS(4158), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4160), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4162), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5297), [anon_sym_POUND] = ACTIONS(3), }, - [1572] = { - [sym_comment] = STATE(1572), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_alias] = ACTIONS(1070), - [anon_sym_let] = ACTIONS(1070), - [anon_sym_let_DASHenv] = ACTIONS(1070), - [anon_sym_mut] = ACTIONS(1070), - [anon_sym_const] = ACTIONS(1070), - [anon_sym_SEMI] = ACTIONS(1070), - [sym_cmd_identifier] = ACTIONS(1070), - [anon_sym_LF] = ACTIONS(1072), - [anon_sym_def] = ACTIONS(1070), - [anon_sym_export_DASHenv] = ACTIONS(1070), - [anon_sym_extern] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_use] = ACTIONS(1070), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_RPAREN] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_error] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_loop] = ACTIONS(1070), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_do] = ACTIONS(1070), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_match] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_RBRACE] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_try] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_source] = ACTIONS(1070), - [anon_sym_source_DASHenv] = ACTIONS(1070), - [anon_sym_register] = ACTIONS(1070), - [anon_sym_hide] = ACTIONS(1070), - [anon_sym_hide_DASHenv] = ACTIONS(1070), - [anon_sym_overlay] = ACTIONS(1070), - [anon_sym_as] = ACTIONS(1070), - [anon_sym_where] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(4861), - [anon_sym_not] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_null] = ACTIONS(1070), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1070), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), - [anon_sym_CARET] = ACTIONS(1070), - [anon_sym_POUND] = ACTIONS(113), + [1774] = { + [sym_expr_unary] = STATE(6273), + [sym__expr_unary_minus] = STATE(6230), + [sym_expr_binary] = STATE(6273), + [sym__expr_binary_expression] = STATE(6232), + [sym_expr_parenthesized] = STATE(6273), + [sym__val_range] = STATE(10186), + [sym__value] = STATE(6273), + [sym_val_nothing] = STATE(6331), + [sym_val_bool] = STATE(6034), + [sym_val_variable] = STATE(6331), + [sym__var] = STATE(5664), + [sym_val_number] = STATE(6331), + [sym__val_number_decimal] = STATE(4561), + [sym__val_number] = STATE(6217), + [sym_val_duration] = STATE(6331), + [sym_val_filesize] = STATE(6331), + [sym_val_binary] = STATE(6331), + [sym_val_string] = STATE(6331), + [sym__str_double_quotes] = STATE(6261), + [sym_val_interpolated] = STATE(6331), + [sym__inter_single_quotes] = STATE(6276), + [sym__inter_double_quotes] = STATE(6278), + [sym_val_list] = STATE(6331), + [sym_val_record] = STATE(6331), + [sym_val_table] = STATE(6331), + [sym_val_closure] = STATE(6331), + [sym_unquoted] = STATE(6224), + [sym__unquoted_anonymous_prefix] = STATE(10365), + [sym_comment] = STATE(1774), + [anon_sym_LBRACK] = ACTIONS(4118), + [anon_sym_LPAREN] = ACTIONS(5285), + [anon_sym_DOLLAR] = ACTIONS(5287), + [anon_sym_DASH] = ACTIONS(4124), + [anon_sym_LBRACE] = ACTIONS(4126), + [anon_sym_DOT_DOT] = ACTIONS(5289), + [anon_sym_not] = ACTIONS(4130), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5291), + [anon_sym_DOT_DOT_LT] = ACTIONS(5291), + [anon_sym_null] = ACTIONS(4134), + [anon_sym_true] = ACTIONS(4136), + [anon_sym_false] = ACTIONS(4136), + [aux_sym__val_number_decimal_token1] = ACTIONS(4138), + [aux_sym__val_number_decimal_token2] = ACTIONS(4140), + [anon_sym_DOT2] = ACTIONS(5293), + [aux_sym__val_number_decimal_token3] = ACTIONS(4144), + [aux_sym__val_number_token1] = ACTIONS(4146), + [aux_sym__val_number_token2] = ACTIONS(4146), + [aux_sym__val_number_token3] = ACTIONS(4146), + [aux_sym__val_number_token4] = ACTIONS(5295), + [aux_sym__val_number_token5] = ACTIONS(5295), + [aux_sym__val_number_token6] = ACTIONS(5295), + [anon_sym_0b] = ACTIONS(4150), + [anon_sym_0o] = ACTIONS(4152), + [anon_sym_0x] = ACTIONS(4152), + [sym_val_date] = ACTIONS(4154), + [anon_sym_DQUOTE] = ACTIONS(4156), + [sym__str_single_quotes] = ACTIONS(4158), + [sym__str_back_ticks] = ACTIONS(4158), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4160), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4162), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5297), + [anon_sym_POUND] = ACTIONS(3), }, - [1573] = { - [sym_comment] = STATE(1573), - [ts_builtin_sym_end] = ACTIONS(952), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_LF] = ACTIONS(952), - [anon_sym_LBRACK] = ACTIONS(950), - [anon_sym_LPAREN] = ACTIONS(950), - [anon_sym_PIPE] = ACTIONS(950), - [anon_sym_DOLLAR] = ACTIONS(950), - [anon_sym_GT] = ACTIONS(950), - [anon_sym_DASH_DASH] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(950), - [anon_sym_in] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(950), - [anon_sym_DOT_DOT] = ACTIONS(950), - [anon_sym_STAR] = ACTIONS(950), - [anon_sym_STAR_STAR] = ACTIONS(950), - [anon_sym_PLUS_PLUS] = ACTIONS(950), - [anon_sym_SLASH] = ACTIONS(950), - [anon_sym_mod] = ACTIONS(950), - [anon_sym_SLASH_SLASH] = ACTIONS(950), - [anon_sym_PLUS] = ACTIONS(950), - [anon_sym_bit_DASHshl] = ACTIONS(950), - [anon_sym_bit_DASHshr] = ACTIONS(950), - [anon_sym_EQ_EQ] = ACTIONS(950), - [anon_sym_BANG_EQ] = ACTIONS(950), - [anon_sym_LT2] = ACTIONS(950), - [anon_sym_LT_EQ] = ACTIONS(950), - [anon_sym_GT_EQ] = ACTIONS(950), - [anon_sym_not_DASHin] = ACTIONS(950), - [anon_sym_starts_DASHwith] = ACTIONS(950), - [anon_sym_ends_DASHwith] = ACTIONS(950), - [anon_sym_EQ_TILDE] = ACTIONS(950), - [anon_sym_BANG_TILDE] = ACTIONS(950), - [anon_sym_bit_DASHand] = ACTIONS(950), - [anon_sym_bit_DASHxor] = ACTIONS(950), - [anon_sym_bit_DASHor] = ACTIONS(950), - [anon_sym_and] = ACTIONS(950), - [anon_sym_xor] = ACTIONS(950), - [anon_sym_or] = ACTIONS(950), - [anon_sym_not] = ACTIONS(950), - [anon_sym_DOT_DOT2] = ACTIONS(950), - [anon_sym_DOT] = 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(950), - [anon_sym_true] = ACTIONS(950), - [anon_sym_false] = ACTIONS(950), - [aux_sym__val_number_decimal_token1] = ACTIONS(950), - [aux_sym__val_number_decimal_token2] = ACTIONS(950), - [anon_sym_DOT2] = ACTIONS(950), - [aux_sym__val_number_decimal_token3] = ACTIONS(950), - [aux_sym__val_number_token1] = ACTIONS(950), - [aux_sym__val_number_token2] = ACTIONS(950), - [aux_sym__val_number_token3] = ACTIONS(950), - [aux_sym__val_number_token4] = ACTIONS(950), - [aux_sym__val_number_token5] = ACTIONS(950), - [aux_sym__val_number_token6] = ACTIONS(950), - [anon_sym_0b] = ACTIONS(950), - [sym_filesize_unit] = ACTIONS(950), - [sym_duration_unit] = ACTIONS(952), - [anon_sym_0o] = ACTIONS(950), - [anon_sym_0x] = ACTIONS(950), - [sym_val_date] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym__str_single_quotes] = ACTIONS(950), - [sym__str_back_ticks] = ACTIONS(950), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(950), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(950), - [aux_sym_unquoted_token5] = ACTIONS(950), - [anon_sym_POUND] = ACTIONS(113), + [1775] = { + [sym_expr_unary] = STATE(6273), + [sym__expr_unary_minus] = STATE(6230), + [sym_expr_binary] = STATE(6273), + [sym__expr_binary_expression] = STATE(6239), + [sym_expr_parenthesized] = STATE(6273), + [sym__val_range] = STATE(10186), + [sym__value] = STATE(6273), + [sym_val_nothing] = STATE(6331), + [sym_val_bool] = STATE(6034), + [sym_val_variable] = STATE(6331), + [sym__var] = STATE(5664), + [sym_val_number] = STATE(6331), + [sym__val_number_decimal] = STATE(4561), + [sym__val_number] = STATE(6217), + [sym_val_duration] = STATE(6331), + [sym_val_filesize] = STATE(6331), + [sym_val_binary] = STATE(6331), + [sym_val_string] = STATE(6331), + [sym__str_double_quotes] = STATE(6261), + [sym_val_interpolated] = STATE(6331), + [sym__inter_single_quotes] = STATE(6276), + [sym__inter_double_quotes] = STATE(6278), + [sym_val_list] = STATE(6331), + [sym_val_record] = STATE(6331), + [sym_val_table] = STATE(6331), + [sym_val_closure] = STATE(6331), + [sym_unquoted] = STATE(6225), + [sym__unquoted_anonymous_prefix] = STATE(10365), + [sym_comment] = STATE(1775), + [anon_sym_LBRACK] = ACTIONS(4118), + [anon_sym_LPAREN] = ACTIONS(5285), + [anon_sym_DOLLAR] = ACTIONS(5287), + [anon_sym_DASH] = ACTIONS(4124), + [anon_sym_LBRACE] = ACTIONS(4126), + [anon_sym_DOT_DOT] = ACTIONS(5289), + [anon_sym_not] = ACTIONS(4130), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5291), + [anon_sym_DOT_DOT_LT] = ACTIONS(5291), + [anon_sym_null] = ACTIONS(4134), + [anon_sym_true] = ACTIONS(4136), + [anon_sym_false] = ACTIONS(4136), + [aux_sym__val_number_decimal_token1] = ACTIONS(4138), + [aux_sym__val_number_decimal_token2] = ACTIONS(4140), + [anon_sym_DOT2] = ACTIONS(5293), + [aux_sym__val_number_decimal_token3] = ACTIONS(4144), + [aux_sym__val_number_token1] = ACTIONS(4146), + [aux_sym__val_number_token2] = ACTIONS(4146), + [aux_sym__val_number_token3] = ACTIONS(4146), + [aux_sym__val_number_token4] = ACTIONS(5295), + [aux_sym__val_number_token5] = ACTIONS(5295), + [aux_sym__val_number_token6] = ACTIONS(5295), + [anon_sym_0b] = ACTIONS(4150), + [anon_sym_0o] = ACTIONS(4152), + [anon_sym_0x] = ACTIONS(4152), + [sym_val_date] = ACTIONS(4154), + [anon_sym_DQUOTE] = ACTIONS(4156), + [sym__str_single_quotes] = ACTIONS(4158), + [sym__str_back_ticks] = ACTIONS(4158), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4160), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4162), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5297), + [anon_sym_POUND] = ACTIONS(3), }, - [1574] = { - [sym_cell_path] = STATE(2610), - [sym_path] = STATE(1497), - [sym_comment] = STATE(1574), - [anon_sym_LBRACK] = ACTIONS(1181), - [anon_sym_COMMA] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_DOLLAR] = ACTIONS(1181), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_DASH] = ACTIONS(1179), - [anon_sym_in] = ACTIONS(1179), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_RBRACE] = ACTIONS(1181), - [anon_sym__] = ACTIONS(1179), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_STAR] = ACTIONS(1179), - [anon_sym_STAR_STAR] = ACTIONS(1181), - [anon_sym_PLUS_PLUS] = ACTIONS(1181), - [anon_sym_SLASH] = ACTIONS(1179), - [anon_sym_mod] = ACTIONS(1181), - [anon_sym_SLASH_SLASH] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1179), - [anon_sym_bit_DASHshl] = ACTIONS(1181), - [anon_sym_bit_DASHshr] = ACTIONS(1181), - [anon_sym_EQ_EQ] = ACTIONS(1181), - [anon_sym_BANG_EQ] = ACTIONS(1181), - [anon_sym_LT2] = ACTIONS(1179), - [anon_sym_LT_EQ] = ACTIONS(1181), - [anon_sym_GT_EQ] = ACTIONS(1181), - [anon_sym_not_DASHin] = ACTIONS(1181), - [anon_sym_starts_DASHwith] = ACTIONS(1181), - [anon_sym_ends_DASHwith] = ACTIONS(1181), - [anon_sym_EQ_TILDE] = ACTIONS(1181), - [anon_sym_BANG_TILDE] = ACTIONS(1181), - [anon_sym_bit_DASHand] = ACTIONS(1181), - [anon_sym_bit_DASHxor] = ACTIONS(1181), - [anon_sym_bit_DASHor] = ACTIONS(1181), - [anon_sym_and] = ACTIONS(1181), - [anon_sym_xor] = ACTIONS(1181), - [anon_sym_or] = ACTIONS(1181), - [anon_sym_DOT] = ACTIONS(4585), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1181), - [anon_sym_DOT_DOT_LT] = ACTIONS(1181), - [anon_sym_null] = ACTIONS(1181), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1179), - [aux_sym__val_number_decimal_token2] = ACTIONS(1181), - [anon_sym_DOT2] = ACTIONS(1179), - [aux_sym__val_number_decimal_token3] = ACTIONS(1181), - [aux_sym__val_number_token1] = ACTIONS(1181), - [aux_sym__val_number_token2] = ACTIONS(1181), - [aux_sym__val_number_token3] = ACTIONS(1181), - [aux_sym__val_number_token4] = ACTIONS(1181), - [aux_sym__val_number_token5] = ACTIONS(1181), - [aux_sym__val_number_token6] = ACTIONS(1181), - [anon_sym_0b] = ACTIONS(1179), - [anon_sym_0o] = ACTIONS(1179), - [anon_sym_0x] = ACTIONS(1179), - [sym_val_date] = ACTIONS(1181), - [anon_sym_DQUOTE] = ACTIONS(1181), - [sym__str_single_quotes] = ACTIONS(1181), - [sym__str_back_ticks] = ACTIONS(1181), - [anon_sym_err_GT] = ACTIONS(1181), - [anon_sym_out_GT] = ACTIONS(1181), - [anon_sym_e_GT] = ACTIONS(1181), - [anon_sym_o_GT] = ACTIONS(1181), - [anon_sym_err_PLUSout_GT] = ACTIONS(1181), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1181), - [anon_sym_o_PLUSe_GT] = ACTIONS(1181), - [anon_sym_e_PLUSo_GT] = ACTIONS(1181), - [aux_sym_unquoted_token1] = ACTIONS(1179), + [1776] = { + [sym_expr_unary] = STATE(5879), + [sym__expr_unary_minus] = STATE(5878), + [sym_expr_binary] = STATE(5879), + [sym__expr_binary_expression] = STATE(5873), + [sym_expr_parenthesized] = STATE(5879), + [sym__val_range] = STATE(10069), + [sym__value] = STATE(5879), + [sym_val_nothing] = STATE(5931), + [sym_val_bool] = STATE(5739), + [sym_val_variable] = STATE(5931), + [sym__var] = STATE(5079), + [sym_val_number] = STATE(5931), + [sym__val_number_decimal] = STATE(4336), + [sym__val_number] = STATE(5285), + [sym_val_duration] = STATE(5931), + [sym_val_filesize] = STATE(5931), + [sym_val_binary] = STATE(5931), + [sym_val_string] = STATE(5931), + [sym__str_double_quotes] = STATE(5888), + [sym_val_interpolated] = STATE(5931), + [sym__inter_single_quotes] = STATE(5935), + [sym__inter_double_quotes] = STATE(5940), + [sym_val_list] = STATE(5931), + [sym_val_record] = STATE(5931), + [sym_val_table] = STATE(5931), + [sym_val_closure] = STATE(5931), + [sym_unquoted] = STATE(5913), + [sym__unquoted_anonymous_prefix] = STATE(10402), + [sym_comment] = STATE(1776), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(4909), + [anon_sym_DOLLAR] = ACTIONS(4911), + [anon_sym_DASH] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_DOT_DOT] = ACTIONS(4913), + [anon_sym_not] = ACTIONS(3918), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4915), + [anon_sym_DOT_DOT_LT] = ACTIONS(4915), + [anon_sym_null] = ACTIONS(3922), + [anon_sym_true] = ACTIONS(3924), + [anon_sym_false] = ACTIONS(3924), + [aux_sym__val_number_decimal_token1] = ACTIONS(3926), + [aux_sym__val_number_decimal_token2] = ACTIONS(3928), + [anon_sym_DOT2] = ACTIONS(4917), + [aux_sym__val_number_decimal_token3] = ACTIONS(3932), + [aux_sym__val_number_token1] = ACTIONS(93), + [aux_sym__val_number_token2] = ACTIONS(93), + [aux_sym__val_number_token3] = ACTIONS(93), + [aux_sym__val_number_token4] = ACTIONS(4919), + [aux_sym__val_number_token5] = ACTIONS(4919), + [aux_sym__val_number_token6] = ACTIONS(4919), + [anon_sym_0b] = ACTIONS(97), + [anon_sym_0o] = ACTIONS(99), + [anon_sym_0x] = ACTIONS(99), + [sym_val_date] = ACTIONS(3936), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym__str_single_quotes] = ACTIONS(105), + [sym__str_back_ticks] = ACTIONS(105), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(109), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2924), [anon_sym_POUND] = ACTIONS(3), }, - [1575] = { - [sym_cell_path] = STATE(2626), - [sym_path] = STATE(1448), - [sym_comment] = STATE(1575), - [anon_sym_export] = ACTIONS(995), - [anon_sym_alias] = ACTIONS(995), - [anon_sym_let] = ACTIONS(995), - [anon_sym_let_DASHenv] = ACTIONS(995), - [anon_sym_mut] = ACTIONS(995), - [anon_sym_const] = ACTIONS(995), - [anon_sym_SEMI] = ACTIONS(995), - [sym_cmd_identifier] = ACTIONS(995), - [anon_sym_LF] = ACTIONS(997), - [anon_sym_def] = ACTIONS(995), - [anon_sym_export_DASHenv] = ACTIONS(995), - [anon_sym_extern] = ACTIONS(995), - [anon_sym_module] = ACTIONS(995), - [anon_sym_use] = ACTIONS(995), - [anon_sym_LBRACK] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_RPAREN] = ACTIONS(995), - [anon_sym_DOLLAR] = ACTIONS(995), - [anon_sym_error] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_break] = ACTIONS(995), - [anon_sym_continue] = ACTIONS(995), - [anon_sym_for] = ACTIONS(995), - [anon_sym_loop] = ACTIONS(995), - [anon_sym_while] = ACTIONS(995), - [anon_sym_do] = ACTIONS(995), - [anon_sym_if] = ACTIONS(995), - [anon_sym_match] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_RBRACE] = ACTIONS(995), - [anon_sym_DOT_DOT] = ACTIONS(995), - [anon_sym_try] = ACTIONS(995), - [anon_sym_return] = ACTIONS(995), - [anon_sym_source] = ACTIONS(995), - [anon_sym_source_DASHenv] = ACTIONS(995), - [anon_sym_register] = ACTIONS(995), - [anon_sym_hide] = ACTIONS(995), - [anon_sym_hide_DASHenv] = ACTIONS(995), - [anon_sym_overlay] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_where] = ACTIONS(995), - [anon_sym_not] = ACTIONS(995), - [anon_sym_DOT] = ACTIONS(4083), - [anon_sym_DOT_DOT_EQ] = ACTIONS(995), - [anon_sym_DOT_DOT_LT] = ACTIONS(995), - [anon_sym_null] = ACTIONS(995), - [anon_sym_true] = ACTIONS(995), - [anon_sym_false] = ACTIONS(995), - [aux_sym__val_number_decimal_token1] = ACTIONS(995), - [aux_sym__val_number_decimal_token2] = ACTIONS(995), - [anon_sym_DOT2] = ACTIONS(995), - [aux_sym__val_number_decimal_token3] = ACTIONS(995), - [aux_sym__val_number_token1] = ACTIONS(995), - [aux_sym__val_number_token2] = ACTIONS(995), - [aux_sym__val_number_token3] = ACTIONS(995), - [aux_sym__val_number_token4] = ACTIONS(995), - [aux_sym__val_number_token5] = ACTIONS(995), - [aux_sym__val_number_token6] = ACTIONS(995), - [anon_sym_0b] = ACTIONS(995), - [anon_sym_0o] = ACTIONS(995), - [anon_sym_0x] = ACTIONS(995), - [sym_val_date] = ACTIONS(995), - [anon_sym_DQUOTE] = ACTIONS(995), - [sym__str_single_quotes] = ACTIONS(995), - [sym__str_back_ticks] = ACTIONS(995), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(995), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(995), - [anon_sym_CARET] = ACTIONS(995), - [anon_sym_POUND] = ACTIONS(113), - }, - [1576] = { - [sym_comment] = STATE(1576), - [ts_builtin_sym_end] = ACTIONS(3868), - [anon_sym_export] = ACTIONS(3866), - [anon_sym_alias] = ACTIONS(3866), - [anon_sym_let] = ACTIONS(3866), - [anon_sym_let_DASHenv] = ACTIONS(3866), - [anon_sym_mut] = ACTIONS(3866), - [anon_sym_const] = ACTIONS(3866), - [anon_sym_SEMI] = ACTIONS(3866), - [sym_cmd_identifier] = ACTIONS(3866), - [anon_sym_LF] = ACTIONS(3868), - [anon_sym_def] = ACTIONS(3866), - [anon_sym_export_DASHenv] = ACTIONS(3866), - [anon_sym_extern] = ACTIONS(3866), - [anon_sym_module] = ACTIONS(3866), - [anon_sym_use] = ACTIONS(3866), - [anon_sym_LBRACK] = ACTIONS(3866), - [anon_sym_LPAREN] = ACTIONS(3866), - [anon_sym_DOLLAR] = ACTIONS(3866), - [anon_sym_error] = ACTIONS(3866), - [anon_sym_DASH_DASH] = ACTIONS(3866), - [anon_sym_DASH] = ACTIONS(3866), - [anon_sym_break] = ACTIONS(3866), - [anon_sym_continue] = ACTIONS(3866), - [anon_sym_for] = ACTIONS(3866), - [anon_sym_loop] = ACTIONS(3866), - [anon_sym_while] = ACTIONS(3866), - [anon_sym_do] = ACTIONS(3866), - [anon_sym_if] = ACTIONS(3866), - [anon_sym_match] = ACTIONS(3866), - [anon_sym_LBRACE] = ACTIONS(3866), - [anon_sym_DOT_DOT] = ACTIONS(3866), - [anon_sym_try] = ACTIONS(3866), - [anon_sym_return] = ACTIONS(3866), - [anon_sym_source] = ACTIONS(3866), - [anon_sym_source_DASHenv] = ACTIONS(3866), - [anon_sym_register] = ACTIONS(3866), - [anon_sym_hide] = ACTIONS(3866), - [anon_sym_hide_DASHenv] = ACTIONS(3866), - [anon_sym_overlay] = ACTIONS(3866), - [anon_sym_as] = ACTIONS(3866), - [anon_sym_where] = ACTIONS(3866), - [anon_sym_not] = ACTIONS(3866), - [anon_sym_DOT_DOT2] = ACTIONS(4867), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3866), - [anon_sym_DOT_DOT_LT] = ACTIONS(3866), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4869), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4869), - [anon_sym_null] = ACTIONS(3866), - [anon_sym_true] = ACTIONS(3866), - [anon_sym_false] = ACTIONS(3866), - [aux_sym__val_number_decimal_token1] = ACTIONS(3866), - [aux_sym__val_number_decimal_token2] = ACTIONS(3866), - [anon_sym_DOT2] = ACTIONS(3866), - [aux_sym__val_number_decimal_token3] = ACTIONS(3866), - [aux_sym__val_number_token1] = ACTIONS(3866), - [aux_sym__val_number_token2] = ACTIONS(3866), - [aux_sym__val_number_token3] = ACTIONS(3866), - [aux_sym__val_number_token4] = ACTIONS(3866), - [aux_sym__val_number_token5] = ACTIONS(3866), - [aux_sym__val_number_token6] = ACTIONS(3866), - [anon_sym_0b] = ACTIONS(3866), - [anon_sym_0o] = ACTIONS(3866), - [anon_sym_0x] = ACTIONS(3866), - [sym_val_date] = ACTIONS(3866), - [anon_sym_DQUOTE] = ACTIONS(3866), - [sym__str_single_quotes] = ACTIONS(3866), - [sym__str_back_ticks] = ACTIONS(3866), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3866), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), - [anon_sym_CARET] = ACTIONS(3866), + [1777] = { + [sym_comment] = STATE(1777), + [anon_sym_LBRACK] = ACTIONS(1275), + [anon_sym_COMMA] = ACTIONS(1275), + [anon_sym_RBRACK] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(1275), + [anon_sym_DOLLAR] = ACTIONS(1275), + [anon_sym_GT] = ACTIONS(1275), + [anon_sym_DASH_DASH] = ACTIONS(1275), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_in] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(1275), + [anon_sym_DOT_DOT] = ACTIONS(1275), + [anon_sym_STAR] = ACTIONS(1275), + [anon_sym_STAR_STAR] = ACTIONS(1275), + [anon_sym_PLUS_PLUS] = ACTIONS(1275), + [anon_sym_SLASH] = ACTIONS(1275), + [anon_sym_mod] = ACTIONS(1275), + [anon_sym_SLASH_SLASH] = ACTIONS(1275), + [anon_sym_PLUS] = ACTIONS(1275), + [anon_sym_bit_DASHshl] = ACTIONS(1275), + [anon_sym_bit_DASHshr] = ACTIONS(1275), + [anon_sym_EQ_EQ] = ACTIONS(1275), + [anon_sym_BANG_EQ] = ACTIONS(1275), + [anon_sym_LT2] = ACTIONS(1275), + [anon_sym_LT_EQ] = ACTIONS(1275), + [anon_sym_GT_EQ] = ACTIONS(1275), + [anon_sym_not_DASHin] = ACTIONS(1275), + [anon_sym_starts_DASHwith] = ACTIONS(1275), + [anon_sym_ends_DASHwith] = ACTIONS(1275), + [anon_sym_EQ_TILDE] = ACTIONS(1275), + [anon_sym_BANG_TILDE] = ACTIONS(1275), + [anon_sym_bit_DASHand] = ACTIONS(1275), + [anon_sym_bit_DASHxor] = ACTIONS(1275), + [anon_sym_bit_DASHor] = ACTIONS(1275), + [anon_sym_and] = ACTIONS(1275), + [anon_sym_xor] = ACTIONS(1275), + [anon_sym_or] = ACTIONS(1275), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1275), + [anon_sym_DOT_DOT_LT] = ACTIONS(1275), + [anon_sym_null] = ACTIONS(1275), + [anon_sym_true] = ACTIONS(1275), + [anon_sym_false] = ACTIONS(1275), + [aux_sym__val_number_decimal_token1] = ACTIONS(1275), + [aux_sym__val_number_decimal_token2] = ACTIONS(1275), + [anon_sym_DOT2] = ACTIONS(1275), + [aux_sym__val_number_decimal_token3] = ACTIONS(1275), + [aux_sym__val_number_token1] = ACTIONS(1275), + [aux_sym__val_number_token2] = ACTIONS(1275), + [aux_sym__val_number_token3] = ACTIONS(1275), + [aux_sym__val_number_token4] = ACTIONS(1275), + [aux_sym__val_number_token5] = ACTIONS(1275), + [aux_sym__val_number_token6] = ACTIONS(1275), + [anon_sym_0b] = ACTIONS(1275), + [anon_sym_0o] = ACTIONS(1275), + [anon_sym_0x] = ACTIONS(1275), + [sym_val_date] = ACTIONS(1275), + [anon_sym_DQUOTE] = ACTIONS(1275), + [sym__str_single_quotes] = ACTIONS(1275), + [sym__str_back_ticks] = ACTIONS(1275), + [sym__entry_separator] = ACTIONS(1277), + [anon_sym_err_GT] = ACTIONS(1275), + [anon_sym_out_GT] = ACTIONS(1275), + [anon_sym_e_GT] = ACTIONS(1275), + [anon_sym_o_GT] = ACTIONS(1275), + [anon_sym_err_PLUSout_GT] = ACTIONS(1275), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1275), + [anon_sym_o_PLUSe_GT] = ACTIONS(1275), + [anon_sym_e_PLUSo_GT] = ACTIONS(1275), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1275), [anon_sym_POUND] = ACTIONS(113), }, - [1577] = { - [sym__expression] = STATE(8801), - [sym_expr_unary] = STATE(5681), - [sym__expr_unary_minus] = STATE(5713), - [sym_expr_binary] = STATE(5681), - [sym__expr_binary_expression] = STATE(6816), - [sym_expr_parenthesized] = STATE(4963), - [sym_val_range] = STATE(8593), - [sym__val_range] = STATE(10596), - [sym__value] = STATE(5681), - [sym_val_nothing] = STATE(5674), - [sym_val_bool] = STATE(5487), - [sym_val_variable] = STATE(4982), - [sym__var] = STATE(4676), - [sym_val_number] = STATE(5674), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(5809), - [sym_val_duration] = STATE(5674), - [sym_val_filesize] = STATE(5674), - [sym_val_binary] = STATE(5674), - [sym_val_string] = STATE(5674), - [sym__str_double_quotes] = STATE(5813), - [sym_val_interpolated] = STATE(5674), - [sym__inter_single_quotes] = STATE(5696), - [sym__inter_double_quotes] = STATE(5868), - [sym_val_list] = STATE(5674), - [sym_val_record] = STATE(5674), - [sym_val_table] = STATE(5674), - [sym_val_closure] = STATE(5674), - [sym_unquoted] = STATE(8712), - [sym__unquoted_anonymous_prefix] = STATE(10924), - [sym_comment] = STATE(1577), - [anon_sym_LBRACK] = ACTIONS(2646), - [anon_sym_LPAREN] = ACTIONS(2648), - [anon_sym_DOLLAR] = ACTIONS(1874), - [anon_sym_DASH] = ACTIONS(4871), - [anon_sym_LBRACE] = ACTIONS(2652), - [anon_sym_DOT_DOT] = ACTIONS(4873), - [anon_sym_not] = ACTIONS(4875), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4877), - [anon_sym_DOT_DOT_LT] = ACTIONS(4877), - [anon_sym_null] = ACTIONS(4879), - [anon_sym_true] = ACTIONS(4881), - [anon_sym_false] = ACTIONS(4881), - [aux_sym__val_number_decimal_token1] = ACTIONS(4883), - [aux_sym__val_number_decimal_token2] = ACTIONS(4885), - [anon_sym_DOT2] = ACTIONS(4887), - [aux_sym__val_number_decimal_token3] = ACTIONS(4889), - [aux_sym__val_number_token1] = ACTIONS(2664), - [aux_sym__val_number_token2] = ACTIONS(2664), - [aux_sym__val_number_token3] = ACTIONS(2664), - [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(1900), - [anon_sym_0o] = ACTIONS(1902), - [anon_sym_0x] = ACTIONS(1902), - [sym_val_date] = ACTIONS(4893), - [anon_sym_DQUOTE] = ACTIONS(2670), - [sym__str_single_quotes] = ACTIONS(2672), - [sym__str_back_ticks] = ACTIONS(2672), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2674), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2676), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(1918), + [1778] = { + [sym_expr_unary] = STATE(6016), + [sym__expr_unary_minus] = STATE(5999), + [sym_expr_binary] = STATE(6016), + [sym__expr_binary_expression] = STATE(6153), + [sym_expr_parenthesized] = STATE(6016), + [sym__val_range] = STATE(10131), + [sym__value] = STATE(6016), + [sym_val_nothing] = STATE(6108), + [sym_val_bool] = STATE(5928), + [sym_val_variable] = STATE(6108), + [sym__var] = STATE(5517), + [sym_val_number] = STATE(6108), + [sym__val_number_decimal] = STATE(4489), + [sym__val_number] = STATE(6110), + [sym_val_duration] = STATE(6108), + [sym_val_filesize] = STATE(6108), + [sym_val_binary] = STATE(6108), + [sym_val_string] = STATE(6108), + [sym__str_double_quotes] = STATE(6195), + [sym_val_interpolated] = STATE(6108), + [sym__inter_single_quotes] = STATE(6197), + [sym__inter_double_quotes] = STATE(6198), + [sym_val_list] = STATE(6108), + [sym_val_record] = STATE(6108), + [sym_val_table] = STATE(6108), + [sym_val_closure] = STATE(6108), + [sym_unquoted] = STATE(6017), + [sym__unquoted_anonymous_prefix] = STATE(10281), + [sym_comment] = STATE(1778), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(5039), + [anon_sym_DOLLAR] = ACTIONS(5041), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_DOT_DOT] = ACTIONS(5299), + [anon_sym_not] = ACTIONS(4172), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5045), + [anon_sym_DOT_DOT_LT] = ACTIONS(5045), + [anon_sym_null] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [aux_sym__val_number_decimal_token1] = ACTIONS(4180), + [aux_sym__val_number_decimal_token2] = ACTIONS(4182), + [anon_sym_DOT2] = ACTIONS(5301), + [aux_sym__val_number_decimal_token3] = ACTIONS(4186), + [aux_sym__val_number_token1] = ACTIONS(2828), + [aux_sym__val_number_token2] = ACTIONS(2828), + [aux_sym__val_number_token3] = ACTIONS(2828), + [aux_sym__val_number_token4] = ACTIONS(5303), + [aux_sym__val_number_token5] = ACTIONS(5303), + [aux_sym__val_number_token6] = ACTIONS(5303), + [anon_sym_0b] = ACTIONS(2832), + [anon_sym_0o] = ACTIONS(2834), + [anon_sym_0x] = ACTIONS(2834), + [sym_val_date] = ACTIONS(4190), + [anon_sym_DQUOTE] = ACTIONS(4192), + [sym__str_single_quotes] = ACTIONS(4194), + [sym__str_back_ticks] = ACTIONS(4194), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2844), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5063), [anon_sym_POUND] = ACTIONS(3), }, - [1578] = { - [sym_comment] = STATE(1578), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_alias] = ACTIONS(1158), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_let_DASHenv] = ACTIONS(1158), - [anon_sym_mut] = ACTIONS(1158), - [anon_sym_const] = ACTIONS(1158), - [anon_sym_SEMI] = ACTIONS(1158), - [sym_cmd_identifier] = ACTIONS(1158), - [anon_sym_LF] = ACTIONS(1160), - [anon_sym_def] = ACTIONS(1158), - [anon_sym_export_DASHenv] = ACTIONS(1158), - [anon_sym_extern] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_use] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_LPAREN] = ACTIONS(1158), - [anon_sym_RPAREN] = ACTIONS(1158), - [anon_sym_DOLLAR] = ACTIONS(1158), - [anon_sym_error] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_break] = ACTIONS(1158), - [anon_sym_continue] = ACTIONS(1158), - [anon_sym_for] = ACTIONS(1158), - [anon_sym_loop] = ACTIONS(1158), - [anon_sym_while] = ACTIONS(1158), - [anon_sym_do] = ACTIONS(1158), - [anon_sym_if] = ACTIONS(1158), - [anon_sym_match] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1158), - [anon_sym_RBRACE] = ACTIONS(1158), - [anon_sym_DOT_DOT] = ACTIONS(1158), - [anon_sym_try] = ACTIONS(1158), - [anon_sym_return] = ACTIONS(1158), - [anon_sym_source] = ACTIONS(1158), - [anon_sym_source_DASHenv] = ACTIONS(1158), - [anon_sym_register] = ACTIONS(1158), - [anon_sym_hide] = ACTIONS(1158), - [anon_sym_hide_DASHenv] = ACTIONS(1158), - [anon_sym_overlay] = ACTIONS(1158), - [anon_sym_as] = ACTIONS(1158), - [anon_sym_where] = ACTIONS(1158), - [anon_sym_not] = ACTIONS(1158), - [anon_sym_LPAREN2] = ACTIONS(4895), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1158), - [anon_sym_DOT_DOT_LT] = ACTIONS(1158), - [anon_sym_null] = ACTIONS(1158), - [anon_sym_true] = ACTIONS(1158), - [anon_sym_false] = ACTIONS(1158), - [aux_sym__val_number_decimal_token1] = ACTIONS(1158), - [aux_sym__val_number_decimal_token2] = ACTIONS(1158), - [anon_sym_DOT2] = ACTIONS(1158), - [aux_sym__val_number_decimal_token3] = ACTIONS(1158), - [aux_sym__val_number_token1] = ACTIONS(1158), - [aux_sym__val_number_token2] = ACTIONS(1158), - [aux_sym__val_number_token3] = ACTIONS(1158), - [aux_sym__val_number_token4] = ACTIONS(1158), - [aux_sym__val_number_token5] = ACTIONS(1158), - [aux_sym__val_number_token6] = ACTIONS(1158), - [anon_sym_0b] = ACTIONS(1158), - [anon_sym_0o] = ACTIONS(1158), - [anon_sym_0x] = ACTIONS(1158), - [sym_val_date] = ACTIONS(1158), - [anon_sym_DQUOTE] = ACTIONS(1158), - [sym__str_single_quotes] = ACTIONS(1158), - [sym__str_back_ticks] = ACTIONS(1158), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1158), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1158), - [anon_sym_CARET] = ACTIONS(1158), - [aux_sym_unquoted_token6] = ACTIONS(1284), - [anon_sym_POUND] = ACTIONS(113), + [1779] = { + [sym_expr_unary] = STATE(6016), + [sym__expr_unary_minus] = STATE(5999), + [sym_expr_binary] = STATE(6016), + [sym__expr_binary_expression] = STATE(6154), + [sym_expr_parenthesized] = STATE(6016), + [sym__val_range] = STATE(10131), + [sym__value] = STATE(6016), + [sym_val_nothing] = STATE(6108), + [sym_val_bool] = STATE(5928), + [sym_val_variable] = STATE(6108), + [sym__var] = STATE(5517), + [sym_val_number] = STATE(6108), + [sym__val_number_decimal] = STATE(4489), + [sym__val_number] = STATE(6110), + [sym_val_duration] = STATE(6108), + [sym_val_filesize] = STATE(6108), + [sym_val_binary] = STATE(6108), + [sym_val_string] = STATE(6108), + [sym__str_double_quotes] = STATE(6195), + [sym_val_interpolated] = STATE(6108), + [sym__inter_single_quotes] = STATE(6197), + [sym__inter_double_quotes] = STATE(6198), + [sym_val_list] = STATE(6108), + [sym_val_record] = STATE(6108), + [sym_val_table] = STATE(6108), + [sym_val_closure] = STATE(6108), + [sym_unquoted] = STATE(6019), + [sym__unquoted_anonymous_prefix] = STATE(10281), + [sym_comment] = STATE(1779), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(5039), + [anon_sym_DOLLAR] = ACTIONS(5041), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_DOT_DOT] = ACTIONS(5299), + [anon_sym_not] = ACTIONS(4172), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5045), + [anon_sym_DOT_DOT_LT] = ACTIONS(5045), + [anon_sym_null] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [aux_sym__val_number_decimal_token1] = ACTIONS(4180), + [aux_sym__val_number_decimal_token2] = ACTIONS(4182), + [anon_sym_DOT2] = ACTIONS(5301), + [aux_sym__val_number_decimal_token3] = ACTIONS(4186), + [aux_sym__val_number_token1] = ACTIONS(2828), + [aux_sym__val_number_token2] = ACTIONS(2828), + [aux_sym__val_number_token3] = ACTIONS(2828), + [aux_sym__val_number_token4] = ACTIONS(5303), + [aux_sym__val_number_token5] = ACTIONS(5303), + [aux_sym__val_number_token6] = ACTIONS(5303), + [anon_sym_0b] = ACTIONS(2832), + [anon_sym_0o] = ACTIONS(2834), + [anon_sym_0x] = ACTIONS(2834), + [sym_val_date] = ACTIONS(4190), + [anon_sym_DQUOTE] = ACTIONS(4192), + [sym__str_single_quotes] = ACTIONS(4194), + [sym__str_back_ticks] = ACTIONS(4194), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2844), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5063), + [anon_sym_POUND] = ACTIONS(3), }, - [1579] = { - [sym_cell_path] = STATE(2461), - [sym_path] = STATE(1457), - [sym_comment] = STATE(1579), - [anon_sym_LBRACK] = ACTIONS(1205), - [anon_sym_COMMA] = ACTIONS(1205), - [anon_sym_RBRACK] = ACTIONS(1205), - [anon_sym_LPAREN] = ACTIONS(1205), - [anon_sym_DOLLAR] = ACTIONS(1205), - [anon_sym_GT] = ACTIONS(1203), - [anon_sym_DASH_DASH] = ACTIONS(1205), - [anon_sym_DASH] = ACTIONS(1203), - [anon_sym_in] = ACTIONS(1203), - [anon_sym_LBRACE] = ACTIONS(1205), - [anon_sym_DOT_DOT] = ACTIONS(1203), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_STAR_STAR] = ACTIONS(1205), - [anon_sym_PLUS_PLUS] = ACTIONS(1205), - [anon_sym_SLASH] = ACTIONS(1203), - [anon_sym_mod] = ACTIONS(1205), - [anon_sym_SLASH_SLASH] = ACTIONS(1205), - [anon_sym_PLUS] = ACTIONS(1203), - [anon_sym_bit_DASHshl] = ACTIONS(1205), - [anon_sym_bit_DASHshr] = ACTIONS(1205), - [anon_sym_EQ_EQ] = ACTIONS(1205), - [anon_sym_BANG_EQ] = ACTIONS(1205), - [anon_sym_LT2] = ACTIONS(1203), - [anon_sym_LT_EQ] = ACTIONS(1205), - [anon_sym_GT_EQ] = ACTIONS(1205), - [anon_sym_not_DASHin] = ACTIONS(1205), - [anon_sym_starts_DASHwith] = ACTIONS(1205), - [anon_sym_ends_DASHwith] = ACTIONS(1205), - [anon_sym_EQ_TILDE] = ACTIONS(1205), - [anon_sym_BANG_TILDE] = ACTIONS(1205), - [anon_sym_bit_DASHand] = ACTIONS(1205), - [anon_sym_bit_DASHxor] = ACTIONS(1205), - [anon_sym_bit_DASHor] = ACTIONS(1205), - [anon_sym_and] = ACTIONS(1205), - [anon_sym_xor] = ACTIONS(1205), - [anon_sym_or] = ACTIONS(1205), - [anon_sym_DOT] = ACTIONS(4191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1205), - [anon_sym_DOT_DOT_LT] = ACTIONS(1205), - [anon_sym_null] = ACTIONS(1205), - [anon_sym_true] = ACTIONS(1205), - [anon_sym_false] = ACTIONS(1205), - [aux_sym__val_number_decimal_token1] = ACTIONS(1203), - [aux_sym__val_number_decimal_token2] = ACTIONS(1205), - [anon_sym_DOT2] = ACTIONS(1203), - [aux_sym__val_number_decimal_token3] = ACTIONS(1205), - [aux_sym__val_number_token1] = ACTIONS(1205), - [aux_sym__val_number_token2] = ACTIONS(1205), - [aux_sym__val_number_token3] = ACTIONS(1205), - [aux_sym__val_number_token4] = ACTIONS(1205), - [aux_sym__val_number_token5] = ACTIONS(1205), - [aux_sym__val_number_token6] = ACTIONS(1205), - [anon_sym_0b] = ACTIONS(1203), - [anon_sym_0o] = ACTIONS(1203), - [anon_sym_0x] = ACTIONS(1203), - [sym_val_date] = ACTIONS(1205), - [anon_sym_DQUOTE] = ACTIONS(1205), - [sym__str_single_quotes] = ACTIONS(1205), - [sym__str_back_ticks] = ACTIONS(1205), - [anon_sym_err_GT] = ACTIONS(1205), - [anon_sym_out_GT] = ACTIONS(1205), - [anon_sym_e_GT] = ACTIONS(1205), - [anon_sym_o_GT] = ACTIONS(1205), - [anon_sym_err_PLUSout_GT] = ACTIONS(1205), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1205), - [anon_sym_o_PLUSe_GT] = ACTIONS(1205), - [anon_sym_e_PLUSo_GT] = ACTIONS(1205), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1203), + [1780] = { + [sym_expr_unary] = STATE(6016), + [sym__expr_unary_minus] = STATE(5999), + [sym_expr_binary] = STATE(6016), + [sym__expr_binary_expression] = STATE(6155), + [sym_expr_parenthesized] = STATE(6016), + [sym__val_range] = STATE(10131), + [sym__value] = STATE(6016), + [sym_val_nothing] = STATE(6108), + [sym_val_bool] = STATE(5928), + [sym_val_variable] = STATE(6108), + [sym__var] = STATE(5517), + [sym_val_number] = STATE(6108), + [sym__val_number_decimal] = STATE(4489), + [sym__val_number] = STATE(6110), + [sym_val_duration] = STATE(6108), + [sym_val_filesize] = STATE(6108), + [sym_val_binary] = STATE(6108), + [sym_val_string] = STATE(6108), + [sym__str_double_quotes] = STATE(6195), + [sym_val_interpolated] = STATE(6108), + [sym__inter_single_quotes] = STATE(6197), + [sym__inter_double_quotes] = STATE(6198), + [sym_val_list] = STATE(6108), + [sym_val_record] = STATE(6108), + [sym_val_table] = STATE(6108), + [sym_val_closure] = STATE(6108), + [sym_unquoted] = STATE(6020), + [sym__unquoted_anonymous_prefix] = STATE(10281), + [sym_comment] = STATE(1780), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(5039), + [anon_sym_DOLLAR] = ACTIONS(5041), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_DOT_DOT] = ACTIONS(5299), + [anon_sym_not] = ACTIONS(4172), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5045), + [anon_sym_DOT_DOT_LT] = ACTIONS(5045), + [anon_sym_null] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [aux_sym__val_number_decimal_token1] = ACTIONS(4180), + [aux_sym__val_number_decimal_token2] = ACTIONS(4182), + [anon_sym_DOT2] = ACTIONS(5301), + [aux_sym__val_number_decimal_token3] = ACTIONS(4186), + [aux_sym__val_number_token1] = ACTIONS(2828), + [aux_sym__val_number_token2] = ACTIONS(2828), + [aux_sym__val_number_token3] = ACTIONS(2828), + [aux_sym__val_number_token4] = ACTIONS(5303), + [aux_sym__val_number_token5] = ACTIONS(5303), + [aux_sym__val_number_token6] = ACTIONS(5303), + [anon_sym_0b] = ACTIONS(2832), + [anon_sym_0o] = ACTIONS(2834), + [anon_sym_0x] = ACTIONS(2834), + [sym_val_date] = ACTIONS(4190), + [anon_sym_DQUOTE] = ACTIONS(4192), + [sym__str_single_quotes] = ACTIONS(4194), + [sym__str_back_ticks] = ACTIONS(4194), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2844), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5063), [anon_sym_POUND] = ACTIONS(3), }, - [1580] = { - [sym_comment] = STATE(1580), - [ts_builtin_sym_end] = ACTIONS(3951), - [anon_sym_export] = ACTIONS(3949), - [anon_sym_alias] = ACTIONS(3949), - [anon_sym_let] = ACTIONS(3949), - [anon_sym_let_DASHenv] = ACTIONS(3949), - [anon_sym_mut] = ACTIONS(3949), - [anon_sym_const] = ACTIONS(3949), - [anon_sym_SEMI] = ACTIONS(3949), - [sym_cmd_identifier] = ACTIONS(3949), - [anon_sym_LF] = ACTIONS(3951), - [anon_sym_def] = ACTIONS(3949), - [anon_sym_export_DASHenv] = ACTIONS(3949), - [anon_sym_extern] = ACTIONS(3949), - [anon_sym_module] = ACTIONS(3949), - [anon_sym_use] = ACTIONS(3949), - [anon_sym_LBRACK] = ACTIONS(3949), - [anon_sym_LPAREN] = ACTIONS(3949), - [anon_sym_DOLLAR] = ACTIONS(3949), - [anon_sym_error] = ACTIONS(3949), - [anon_sym_DASH_DASH] = ACTIONS(3949), - [anon_sym_DASH] = ACTIONS(3949), - [anon_sym_break] = ACTIONS(3949), - [anon_sym_continue] = ACTIONS(3949), - [anon_sym_for] = ACTIONS(3949), - [anon_sym_loop] = ACTIONS(3949), - [anon_sym_while] = ACTIONS(3949), - [anon_sym_do] = ACTIONS(3949), - [anon_sym_if] = ACTIONS(3949), - [anon_sym_match] = ACTIONS(3949), - [anon_sym_LBRACE] = ACTIONS(3949), - [anon_sym_DOT_DOT] = ACTIONS(3949), - [anon_sym_try] = ACTIONS(3949), - [anon_sym_return] = ACTIONS(3949), - [anon_sym_source] = ACTIONS(3949), - [anon_sym_source_DASHenv] = ACTIONS(3949), - [anon_sym_register] = ACTIONS(3949), - [anon_sym_hide] = ACTIONS(3949), - [anon_sym_hide_DASHenv] = ACTIONS(3949), - [anon_sym_overlay] = ACTIONS(3949), - [anon_sym_as] = ACTIONS(3949), - [anon_sym_where] = ACTIONS(3949), - [anon_sym_not] = ACTIONS(3949), - [anon_sym_DOT_DOT2] = ACTIONS(4897), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3949), - [anon_sym_DOT_DOT_LT] = ACTIONS(3949), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4899), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4899), - [anon_sym_null] = ACTIONS(3949), - [anon_sym_true] = ACTIONS(3949), - [anon_sym_false] = ACTIONS(3949), - [aux_sym__val_number_decimal_token1] = ACTIONS(3949), - [aux_sym__val_number_decimal_token2] = ACTIONS(3949), - [anon_sym_DOT2] = ACTIONS(3949), - [aux_sym__val_number_decimal_token3] = ACTIONS(3949), - [aux_sym__val_number_token1] = ACTIONS(3949), - [aux_sym__val_number_token2] = ACTIONS(3949), - [aux_sym__val_number_token3] = ACTIONS(3949), - [aux_sym__val_number_token4] = ACTIONS(3949), - [aux_sym__val_number_token5] = ACTIONS(3949), - [aux_sym__val_number_token6] = ACTIONS(3949), - [anon_sym_0b] = ACTIONS(3949), - [anon_sym_0o] = ACTIONS(3949), - [anon_sym_0x] = ACTIONS(3949), - [sym_val_date] = ACTIONS(3949), - [anon_sym_DQUOTE] = ACTIONS(3949), - [sym__str_single_quotes] = ACTIONS(3949), - [sym__str_back_ticks] = ACTIONS(3949), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3949), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3949), - [anon_sym_CARET] = ACTIONS(3949), - [anon_sym_POUND] = ACTIONS(113), + [1781] = { + [sym_expr_unary] = STATE(6016), + [sym__expr_unary_minus] = STATE(5999), + [sym_expr_binary] = STATE(6016), + [sym__expr_binary_expression] = STATE(6156), + [sym_expr_parenthesized] = STATE(6016), + [sym__val_range] = STATE(10131), + [sym__value] = STATE(6016), + [sym_val_nothing] = STATE(6108), + [sym_val_bool] = STATE(5928), + [sym_val_variable] = STATE(6108), + [sym__var] = STATE(5517), + [sym_val_number] = STATE(6108), + [sym__val_number_decimal] = STATE(4489), + [sym__val_number] = STATE(6110), + [sym_val_duration] = STATE(6108), + [sym_val_filesize] = STATE(6108), + [sym_val_binary] = STATE(6108), + [sym_val_string] = STATE(6108), + [sym__str_double_quotes] = STATE(6195), + [sym_val_interpolated] = STATE(6108), + [sym__inter_single_quotes] = STATE(6197), + [sym__inter_double_quotes] = STATE(6198), + [sym_val_list] = STATE(6108), + [sym_val_record] = STATE(6108), + [sym_val_table] = STATE(6108), + [sym_val_closure] = STATE(6108), + [sym_unquoted] = STATE(6021), + [sym__unquoted_anonymous_prefix] = STATE(10281), + [sym_comment] = STATE(1781), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(5039), + [anon_sym_DOLLAR] = ACTIONS(5041), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_DOT_DOT] = ACTIONS(5299), + [anon_sym_not] = ACTIONS(4172), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5045), + [anon_sym_DOT_DOT_LT] = ACTIONS(5045), + [anon_sym_null] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [aux_sym__val_number_decimal_token1] = ACTIONS(4180), + [aux_sym__val_number_decimal_token2] = ACTIONS(4182), + [anon_sym_DOT2] = ACTIONS(5301), + [aux_sym__val_number_decimal_token3] = ACTIONS(4186), + [aux_sym__val_number_token1] = ACTIONS(2828), + [aux_sym__val_number_token2] = ACTIONS(2828), + [aux_sym__val_number_token3] = ACTIONS(2828), + [aux_sym__val_number_token4] = ACTIONS(5303), + [aux_sym__val_number_token5] = ACTIONS(5303), + [aux_sym__val_number_token6] = ACTIONS(5303), + [anon_sym_0b] = ACTIONS(2832), + [anon_sym_0o] = ACTIONS(2834), + [anon_sym_0x] = ACTIONS(2834), + [sym_val_date] = ACTIONS(4190), + [anon_sym_DQUOTE] = ACTIONS(4192), + [sym__str_single_quotes] = ACTIONS(4194), + [sym__str_back_ticks] = ACTIONS(4194), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2844), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5063), + [anon_sym_POUND] = ACTIONS(3), }, - [1581] = { - [sym__expression] = STATE(8061), - [sym_expr_unary] = STATE(6243), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6243), - [sym__expr_binary_expression] = STATE(6786), - [sym_expr_parenthesized] = STATE(6385), - [sym_val_range] = STATE(7168), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6243), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6719), - [sym_val_variable] = STATE(6316), - [sym__var] = STATE(4486), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5316), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(8062), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(1581), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_DOLLAR] = ACTIONS(2690), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(3888), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3892), - [anon_sym_DOT_DOT_LT] = ACTIONS(3892), - [anon_sym_null] = ACTIONS(3894), - [anon_sym_true] = ACTIONS(3896), - [anon_sym_false] = ACTIONS(3896), - [aux_sym__val_number_decimal_token1] = ACTIONS(3898), - [aux_sym__val_number_decimal_token2] = ACTIONS(3900), - [anon_sym_DOT2] = ACTIONS(3902), - [aux_sym__val_number_decimal_token3] = ACTIONS(3904), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(3906), - [aux_sym__val_number_token5] = ACTIONS(3906), - [aux_sym__val_number_token6] = ACTIONS(3906), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(3908), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), + [1782] = { + [sym_expr_unary] = STATE(6016), + [sym__expr_unary_minus] = STATE(5999), + [sym_expr_binary] = STATE(6016), + [sym__expr_binary_expression] = STATE(6157), + [sym_expr_parenthesized] = STATE(6016), + [sym__val_range] = STATE(10131), + [sym__value] = STATE(6016), + [sym_val_nothing] = STATE(6108), + [sym_val_bool] = STATE(5928), + [sym_val_variable] = STATE(6108), + [sym__var] = STATE(5517), + [sym_val_number] = STATE(6108), + [sym__val_number_decimal] = STATE(4489), + [sym__val_number] = STATE(6110), + [sym_val_duration] = STATE(6108), + [sym_val_filesize] = STATE(6108), + [sym_val_binary] = STATE(6108), + [sym_val_string] = STATE(6108), + [sym__str_double_quotes] = STATE(6195), + [sym_val_interpolated] = STATE(6108), + [sym__inter_single_quotes] = STATE(6197), + [sym__inter_double_quotes] = STATE(6198), + [sym_val_list] = STATE(6108), + [sym_val_record] = STATE(6108), + [sym_val_table] = STATE(6108), + [sym_val_closure] = STATE(6108), + [sym_unquoted] = STATE(6022), + [sym__unquoted_anonymous_prefix] = STATE(10281), + [sym_comment] = STATE(1782), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(5039), + [anon_sym_DOLLAR] = ACTIONS(5041), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_DOT_DOT] = ACTIONS(5299), + [anon_sym_not] = ACTIONS(4172), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5045), + [anon_sym_DOT_DOT_LT] = ACTIONS(5045), + [anon_sym_null] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [aux_sym__val_number_decimal_token1] = ACTIONS(4180), + [aux_sym__val_number_decimal_token2] = ACTIONS(4182), + [anon_sym_DOT2] = ACTIONS(5301), + [aux_sym__val_number_decimal_token3] = ACTIONS(4186), + [aux_sym__val_number_token1] = ACTIONS(2828), + [aux_sym__val_number_token2] = ACTIONS(2828), + [aux_sym__val_number_token3] = ACTIONS(2828), + [aux_sym__val_number_token4] = ACTIONS(5303), + [aux_sym__val_number_token5] = ACTIONS(5303), + [aux_sym__val_number_token6] = ACTIONS(5303), + [anon_sym_0b] = ACTIONS(2832), + [anon_sym_0o] = ACTIONS(2834), + [anon_sym_0x] = ACTIONS(2834), + [sym_val_date] = ACTIONS(4190), + [anon_sym_DQUOTE] = ACTIONS(4192), + [sym__str_single_quotes] = ACTIONS(4194), + [sym__str_back_ticks] = ACTIONS(4194), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2844), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5063), [anon_sym_POUND] = ACTIONS(3), }, - [1582] = { - [sym_comment] = STATE(1582), - [anon_sym_export] = ACTIONS(3518), - [anon_sym_alias] = ACTIONS(3518), - [anon_sym_let] = ACTIONS(3518), - [anon_sym_let_DASHenv] = ACTIONS(3518), - [anon_sym_mut] = ACTIONS(3518), - [anon_sym_const] = ACTIONS(3518), - [anon_sym_SEMI] = ACTIONS(3518), - [sym_cmd_identifier] = ACTIONS(3518), - [anon_sym_LF] = ACTIONS(3520), - [anon_sym_def] = ACTIONS(3518), - [anon_sym_export_DASHenv] = ACTIONS(3518), - [anon_sym_extern] = ACTIONS(3518), - [anon_sym_module] = ACTIONS(3518), - [anon_sym_use] = ACTIONS(3518), - [anon_sym_LBRACK] = ACTIONS(3518), - [anon_sym_LPAREN] = ACTIONS(3518), - [anon_sym_RPAREN] = ACTIONS(3518), - [anon_sym_DOLLAR] = ACTIONS(3518), - [anon_sym_error] = ACTIONS(3518), - [anon_sym_DASH_DASH] = ACTIONS(3518), - [anon_sym_DASH] = ACTIONS(3518), - [anon_sym_break] = ACTIONS(3518), - [anon_sym_continue] = ACTIONS(3518), - [anon_sym_for] = ACTIONS(3518), - [anon_sym_loop] = ACTIONS(3518), - [anon_sym_while] = ACTIONS(3518), - [anon_sym_do] = ACTIONS(3518), - [anon_sym_if] = ACTIONS(3518), - [anon_sym_match] = ACTIONS(3518), - [anon_sym_LBRACE] = ACTIONS(3518), - [anon_sym_RBRACE] = ACTIONS(3518), - [anon_sym_DOT_DOT] = ACTIONS(3518), - [anon_sym_try] = ACTIONS(3518), - [anon_sym_return] = ACTIONS(3518), - [anon_sym_source] = ACTIONS(3518), - [anon_sym_source_DASHenv] = ACTIONS(3518), - [anon_sym_register] = ACTIONS(3518), - [anon_sym_hide] = ACTIONS(3518), - [anon_sym_hide_DASHenv] = ACTIONS(3518), - [anon_sym_overlay] = ACTIONS(3518), - [anon_sym_as] = ACTIONS(3518), - [anon_sym_where] = ACTIONS(3518), - [anon_sym_not] = ACTIONS(3518), - [anon_sym_DOT] = ACTIONS(1934), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3518), - [anon_sym_DOT_DOT_LT] = ACTIONS(3518), - [anon_sym_null] = ACTIONS(3518), - [anon_sym_true] = ACTIONS(3518), - [anon_sym_false] = ACTIONS(3518), - [aux_sym__val_number_decimal_token1] = ACTIONS(3518), - [aux_sym__val_number_decimal_token2] = ACTIONS(3518), - [anon_sym_DOT2] = ACTIONS(3518), - [aux_sym__val_number_decimal_token3] = ACTIONS(3518), - [aux_sym__val_number_token1] = ACTIONS(3518), - [aux_sym__val_number_token2] = ACTIONS(3518), - [aux_sym__val_number_token3] = ACTIONS(3518), - [aux_sym__val_number_token4] = ACTIONS(3518), - [aux_sym__val_number_token5] = ACTIONS(3518), - [aux_sym__val_number_token6] = ACTIONS(3518), - [anon_sym_0b] = ACTIONS(3518), - [anon_sym_0o] = ACTIONS(3518), - [anon_sym_0x] = ACTIONS(3518), - [sym_val_date] = ACTIONS(3518), - [anon_sym_DQUOTE] = ACTIONS(3518), - [sym__str_single_quotes] = ACTIONS(3518), - [sym__str_back_ticks] = ACTIONS(3518), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3518), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3518), - [anon_sym_CARET] = ACTIONS(3518), - [aux_sym_unquoted_token2] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(113), + [1783] = { + [sym_expr_unary] = STATE(6016), + [sym__expr_unary_minus] = STATE(5999), + [sym_expr_binary] = STATE(6016), + [sym__expr_binary_expression] = STATE(6158), + [sym_expr_parenthesized] = STATE(6016), + [sym__val_range] = STATE(10131), + [sym__value] = STATE(6016), + [sym_val_nothing] = STATE(6108), + [sym_val_bool] = STATE(5928), + [sym_val_variable] = STATE(6108), + [sym__var] = STATE(5517), + [sym_val_number] = STATE(6108), + [sym__val_number_decimal] = STATE(4489), + [sym__val_number] = STATE(6110), + [sym_val_duration] = STATE(6108), + [sym_val_filesize] = STATE(6108), + [sym_val_binary] = STATE(6108), + [sym_val_string] = STATE(6108), + [sym__str_double_quotes] = STATE(6195), + [sym_val_interpolated] = STATE(6108), + [sym__inter_single_quotes] = STATE(6197), + [sym__inter_double_quotes] = STATE(6198), + [sym_val_list] = STATE(6108), + [sym_val_record] = STATE(6108), + [sym_val_table] = STATE(6108), + [sym_val_closure] = STATE(6108), + [sym_unquoted] = STATE(6025), + [sym__unquoted_anonymous_prefix] = STATE(10281), + [sym_comment] = STATE(1783), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(5039), + [anon_sym_DOLLAR] = ACTIONS(5041), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_DOT_DOT] = ACTIONS(5299), + [anon_sym_not] = ACTIONS(4172), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5045), + [anon_sym_DOT_DOT_LT] = ACTIONS(5045), + [anon_sym_null] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [aux_sym__val_number_decimal_token1] = ACTIONS(4180), + [aux_sym__val_number_decimal_token2] = ACTIONS(4182), + [anon_sym_DOT2] = ACTIONS(5301), + [aux_sym__val_number_decimal_token3] = ACTIONS(4186), + [aux_sym__val_number_token1] = ACTIONS(2828), + [aux_sym__val_number_token2] = ACTIONS(2828), + [aux_sym__val_number_token3] = ACTIONS(2828), + [aux_sym__val_number_token4] = ACTIONS(5303), + [aux_sym__val_number_token5] = ACTIONS(5303), + [aux_sym__val_number_token6] = ACTIONS(5303), + [anon_sym_0b] = ACTIONS(2832), + [anon_sym_0o] = ACTIONS(2834), + [anon_sym_0x] = ACTIONS(2834), + [sym_val_date] = ACTIONS(4190), + [anon_sym_DQUOTE] = ACTIONS(4192), + [sym__str_single_quotes] = ACTIONS(4194), + [sym__str_back_ticks] = ACTIONS(4194), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2844), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5063), + [anon_sym_POUND] = ACTIONS(3), }, - [1583] = { - [sym__expression] = STATE(8061), - [sym_expr_unary] = STATE(6240), - [sym__expr_unary_minus] = STATE(6242), - [sym_expr_binary] = STATE(6240), - [sym__expr_binary_expression] = STATE(6801), - [sym_expr_parenthesized] = STATE(5273), - [sym_val_range] = STATE(8886), - [sym__val_range] = STATE(10601), - [sym__value] = STATE(6240), - [sym_val_nothing] = STATE(6075), - [sym_val_bool] = STATE(5936), - [sym_val_variable] = STATE(5381), - [sym__var] = STATE(4726), - [sym_val_number] = STATE(6075), - [sym__val_number_decimal] = STATE(4600), - [sym__val_number] = STATE(6146), - [sym_val_duration] = STATE(6075), - [sym_val_filesize] = STATE(6075), - [sym_val_binary] = STATE(6075), - [sym_val_string] = STATE(6075), - [sym__str_double_quotes] = STATE(6198), - [sym_val_interpolated] = STATE(6075), - [sym__inter_single_quotes] = STATE(6204), - [sym__inter_double_quotes] = STATE(6205), - [sym_val_list] = STATE(6075), - [sym_val_record] = STATE(6075), - [sym_val_table] = STATE(6075), - [sym_val_closure] = STATE(6075), - [sym_unquoted] = STATE(8062), - [sym__unquoted_anonymous_prefix] = STATE(11371), - [sym_comment] = STATE(1583), - [anon_sym_LBRACK] = ACTIONS(4901), - [anon_sym_LPAREN] = ACTIONS(4903), - [anon_sym_DOLLAR] = ACTIONS(4905), - [anon_sym_DASH] = ACTIONS(4907), - [anon_sym_LBRACE] = ACTIONS(4909), - [anon_sym_DOT_DOT] = ACTIONS(4911), - [anon_sym_not] = ACTIONS(4913), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4915), - [anon_sym_DOT_DOT_LT] = ACTIONS(4915), - [anon_sym_null] = ACTIONS(4917), - [anon_sym_true] = ACTIONS(4919), - [anon_sym_false] = ACTIONS(4919), - [aux_sym__val_number_decimal_token1] = ACTIONS(4921), - [aux_sym__val_number_decimal_token2] = ACTIONS(4923), - [anon_sym_DOT2] = ACTIONS(4925), - [aux_sym__val_number_decimal_token3] = ACTIONS(4927), - [aux_sym__val_number_token1] = ACTIONS(4929), - [aux_sym__val_number_token2] = ACTIONS(4929), - [aux_sym__val_number_token3] = ACTIONS(4929), - [aux_sym__val_number_token4] = ACTIONS(4931), - [aux_sym__val_number_token5] = ACTIONS(4931), - [aux_sym__val_number_token6] = ACTIONS(4931), - [anon_sym_0b] = ACTIONS(4933), - [anon_sym_0o] = ACTIONS(4935), - [anon_sym_0x] = ACTIONS(4935), - [sym_val_date] = ACTIONS(4937), - [anon_sym_DQUOTE] = ACTIONS(4939), - [sym__str_single_quotes] = ACTIONS(4941), - [sym__str_back_ticks] = ACTIONS(4941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4943), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4945), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2780), + [1784] = { + [sym_expr_unary] = STATE(6016), + [sym__expr_unary_minus] = STATE(5999), + [sym_expr_binary] = STATE(6016), + [sym__expr_binary_expression] = STATE(6159), + [sym_expr_parenthesized] = STATE(6016), + [sym__val_range] = STATE(10131), + [sym__value] = STATE(6016), + [sym_val_nothing] = STATE(6108), + [sym_val_bool] = STATE(5928), + [sym_val_variable] = STATE(6108), + [sym__var] = STATE(5517), + [sym_val_number] = STATE(6108), + [sym__val_number_decimal] = STATE(4489), + [sym__val_number] = STATE(6110), + [sym_val_duration] = STATE(6108), + [sym_val_filesize] = STATE(6108), + [sym_val_binary] = STATE(6108), + [sym_val_string] = STATE(6108), + [sym__str_double_quotes] = STATE(6195), + [sym_val_interpolated] = STATE(6108), + [sym__inter_single_quotes] = STATE(6197), + [sym__inter_double_quotes] = STATE(6198), + [sym_val_list] = STATE(6108), + [sym_val_record] = STATE(6108), + [sym_val_table] = STATE(6108), + [sym_val_closure] = STATE(6108), + [sym_unquoted] = STATE(6026), + [sym__unquoted_anonymous_prefix] = STATE(10281), + [sym_comment] = STATE(1784), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(5039), + [anon_sym_DOLLAR] = ACTIONS(5041), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_DOT_DOT] = ACTIONS(5299), + [anon_sym_not] = ACTIONS(4172), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5045), + [anon_sym_DOT_DOT_LT] = ACTIONS(5045), + [anon_sym_null] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [aux_sym__val_number_decimal_token1] = ACTIONS(4180), + [aux_sym__val_number_decimal_token2] = ACTIONS(4182), + [anon_sym_DOT2] = ACTIONS(5301), + [aux_sym__val_number_decimal_token3] = ACTIONS(4186), + [aux_sym__val_number_token1] = ACTIONS(2828), + [aux_sym__val_number_token2] = ACTIONS(2828), + [aux_sym__val_number_token3] = ACTIONS(2828), + [aux_sym__val_number_token4] = ACTIONS(5303), + [aux_sym__val_number_token5] = ACTIONS(5303), + [aux_sym__val_number_token6] = ACTIONS(5303), + [anon_sym_0b] = ACTIONS(2832), + [anon_sym_0o] = ACTIONS(2834), + [anon_sym_0x] = ACTIONS(2834), + [sym_val_date] = ACTIONS(4190), + [anon_sym_DQUOTE] = ACTIONS(4192), + [sym__str_single_quotes] = ACTIONS(4194), + [sym__str_back_ticks] = ACTIONS(4194), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2844), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5063), [anon_sym_POUND] = ACTIONS(3), }, - [1584] = { - [sym_cell_path] = STATE(2415), - [sym_path] = STATE(1517), - [sym_comment] = STATE(1584), - [ts_builtin_sym_end] = ACTIONS(1188), - [anon_sym_export] = ACTIONS(1186), - [anon_sym_alias] = ACTIONS(1186), - [anon_sym_let] = ACTIONS(1186), - [anon_sym_let_DASHenv] = ACTIONS(1186), - [anon_sym_mut] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1186), - [sym_cmd_identifier] = ACTIONS(1186), - [anon_sym_LF] = ACTIONS(1188), - [anon_sym_def] = ACTIONS(1186), - [anon_sym_export_DASHenv] = ACTIONS(1186), - [anon_sym_extern] = ACTIONS(1186), - [anon_sym_module] = ACTIONS(1186), - [anon_sym_use] = ACTIONS(1186), - [anon_sym_LBRACK] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(1186), - [anon_sym_DOLLAR] = ACTIONS(1186), - [anon_sym_error] = ACTIONS(1186), - [anon_sym_DASH_DASH] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1186), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1186), - [anon_sym_loop] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_do] = ACTIONS(1186), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_match] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_DOT_DOT] = ACTIONS(1186), - [anon_sym_try] = ACTIONS(1186), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_source] = ACTIONS(1186), - [anon_sym_source_DASHenv] = ACTIONS(1186), - [anon_sym_register] = ACTIONS(1186), - [anon_sym_hide] = ACTIONS(1186), - [anon_sym_hide_DASHenv] = ACTIONS(1186), - [anon_sym_overlay] = ACTIONS(1186), - [anon_sym_as] = ACTIONS(1186), - [anon_sym_where] = ACTIONS(1186), - [anon_sym_not] = ACTIONS(1186), - [anon_sym_DOT] = ACTIONS(4629), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1186), - [anon_sym_DOT_DOT_LT] = ACTIONS(1186), - [anon_sym_null] = ACTIONS(1186), - [anon_sym_true] = ACTIONS(1186), - [anon_sym_false] = ACTIONS(1186), - [aux_sym__val_number_decimal_token1] = ACTIONS(1186), - [aux_sym__val_number_decimal_token2] = ACTIONS(1186), - [anon_sym_DOT2] = ACTIONS(1186), - [aux_sym__val_number_decimal_token3] = ACTIONS(1186), - [aux_sym__val_number_token1] = ACTIONS(1186), - [aux_sym__val_number_token2] = ACTIONS(1186), - [aux_sym__val_number_token3] = ACTIONS(1186), - [aux_sym__val_number_token4] = ACTIONS(1186), - [aux_sym__val_number_token5] = ACTIONS(1186), - [aux_sym__val_number_token6] = ACTIONS(1186), - [anon_sym_0b] = ACTIONS(1186), - [anon_sym_0o] = ACTIONS(1186), - [anon_sym_0x] = ACTIONS(1186), - [sym_val_date] = ACTIONS(1186), - [anon_sym_DQUOTE] = ACTIONS(1186), - [sym__str_single_quotes] = ACTIONS(1186), - [sym__str_back_ticks] = ACTIONS(1186), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1186), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1186), - [anon_sym_CARET] = ACTIONS(1186), - [anon_sym_POUND] = ACTIONS(113), + [1785] = { + [sym_expr_unary] = STATE(6016), + [sym__expr_unary_minus] = STATE(5999), + [sym_expr_binary] = STATE(6016), + [sym__expr_binary_expression] = STATE(6160), + [sym_expr_parenthesized] = STATE(6016), + [sym__val_range] = STATE(10131), + [sym__value] = STATE(6016), + [sym_val_nothing] = STATE(6108), + [sym_val_bool] = STATE(5928), + [sym_val_variable] = STATE(6108), + [sym__var] = STATE(5517), + [sym_val_number] = STATE(6108), + [sym__val_number_decimal] = STATE(4489), + [sym__val_number] = STATE(6110), + [sym_val_duration] = STATE(6108), + [sym_val_filesize] = STATE(6108), + [sym_val_binary] = STATE(6108), + [sym_val_string] = STATE(6108), + [sym__str_double_quotes] = STATE(6195), + [sym_val_interpolated] = STATE(6108), + [sym__inter_single_quotes] = STATE(6197), + [sym__inter_double_quotes] = STATE(6198), + [sym_val_list] = STATE(6108), + [sym_val_record] = STATE(6108), + [sym_val_table] = STATE(6108), + [sym_val_closure] = STATE(6108), + [sym_unquoted] = STATE(6027), + [sym__unquoted_anonymous_prefix] = STATE(10281), + [sym_comment] = STATE(1785), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(5039), + [anon_sym_DOLLAR] = ACTIONS(5041), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_DOT_DOT] = ACTIONS(5299), + [anon_sym_not] = ACTIONS(4172), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5045), + [anon_sym_DOT_DOT_LT] = ACTIONS(5045), + [anon_sym_null] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [aux_sym__val_number_decimal_token1] = ACTIONS(4180), + [aux_sym__val_number_decimal_token2] = ACTIONS(4182), + [anon_sym_DOT2] = ACTIONS(5301), + [aux_sym__val_number_decimal_token3] = ACTIONS(4186), + [aux_sym__val_number_token1] = ACTIONS(2828), + [aux_sym__val_number_token2] = ACTIONS(2828), + [aux_sym__val_number_token3] = ACTIONS(2828), + [aux_sym__val_number_token4] = ACTIONS(5303), + [aux_sym__val_number_token5] = ACTIONS(5303), + [aux_sym__val_number_token6] = ACTIONS(5303), + [anon_sym_0b] = ACTIONS(2832), + [anon_sym_0o] = ACTIONS(2834), + [anon_sym_0x] = ACTIONS(2834), + [sym_val_date] = ACTIONS(4190), + [anon_sym_DQUOTE] = ACTIONS(4192), + [sym__str_single_quotes] = ACTIONS(4194), + [sym__str_back_ticks] = ACTIONS(4194), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2844), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5063), + [anon_sym_POUND] = ACTIONS(3), }, - [1585] = { - [sym_cell_path] = STATE(2467), - [sym_path] = STATE(1457), - [sym_comment] = STATE(1585), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_COMMA] = ACTIONS(1188), - [anon_sym_RBRACK] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(1188), - [anon_sym_DOLLAR] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_DASH_DASH] = ACTIONS(1188), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_in] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1188), - [anon_sym_DOT_DOT] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_STAR_STAR] = ACTIONS(1188), - [anon_sym_PLUS_PLUS] = ACTIONS(1188), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_mod] = ACTIONS(1188), - [anon_sym_SLASH_SLASH] = ACTIONS(1188), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_bit_DASHshl] = ACTIONS(1188), - [anon_sym_bit_DASHshr] = ACTIONS(1188), - [anon_sym_EQ_EQ] = ACTIONS(1188), - [anon_sym_BANG_EQ] = ACTIONS(1188), - [anon_sym_LT2] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1188), - [anon_sym_GT_EQ] = ACTIONS(1188), - [anon_sym_not_DASHin] = ACTIONS(1188), - [anon_sym_starts_DASHwith] = ACTIONS(1188), - [anon_sym_ends_DASHwith] = ACTIONS(1188), - [anon_sym_EQ_TILDE] = ACTIONS(1188), - [anon_sym_BANG_TILDE] = ACTIONS(1188), - [anon_sym_bit_DASHand] = ACTIONS(1188), - [anon_sym_bit_DASHxor] = ACTIONS(1188), - [anon_sym_bit_DASHor] = ACTIONS(1188), - [anon_sym_and] = ACTIONS(1188), - [anon_sym_xor] = ACTIONS(1188), - [anon_sym_or] = ACTIONS(1188), - [anon_sym_DOT] = ACTIONS(4191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1188), - [anon_sym_DOT_DOT_LT] = ACTIONS(1188), - [anon_sym_null] = ACTIONS(1188), - [anon_sym_true] = ACTIONS(1188), - [anon_sym_false] = ACTIONS(1188), - [aux_sym__val_number_decimal_token1] = ACTIONS(1186), - [aux_sym__val_number_decimal_token2] = ACTIONS(1188), - [anon_sym_DOT2] = ACTIONS(1186), - [aux_sym__val_number_decimal_token3] = ACTIONS(1188), - [aux_sym__val_number_token1] = ACTIONS(1188), - [aux_sym__val_number_token2] = ACTIONS(1188), - [aux_sym__val_number_token3] = ACTIONS(1188), - [aux_sym__val_number_token4] = ACTIONS(1188), - [aux_sym__val_number_token5] = ACTIONS(1188), - [aux_sym__val_number_token6] = ACTIONS(1188), - [anon_sym_0b] = ACTIONS(1186), - [anon_sym_0o] = ACTIONS(1186), - [anon_sym_0x] = ACTIONS(1186), - [sym_val_date] = ACTIONS(1188), - [anon_sym_DQUOTE] = ACTIONS(1188), - [sym__str_single_quotes] = ACTIONS(1188), - [sym__str_back_ticks] = ACTIONS(1188), - [anon_sym_err_GT] = ACTIONS(1188), - [anon_sym_out_GT] = ACTIONS(1188), - [anon_sym_e_GT] = ACTIONS(1188), - [anon_sym_o_GT] = ACTIONS(1188), - [anon_sym_err_PLUSout_GT] = ACTIONS(1188), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1188), - [anon_sym_o_PLUSe_GT] = ACTIONS(1188), - [anon_sym_e_PLUSo_GT] = ACTIONS(1188), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1186), + [1786] = { + [sym_expr_unary] = STATE(6016), + [sym__expr_unary_minus] = STATE(5999), + [sym_expr_binary] = STATE(6016), + [sym__expr_binary_expression] = STATE(6161), + [sym_expr_parenthesized] = STATE(6016), + [sym__val_range] = STATE(10131), + [sym__value] = STATE(6016), + [sym_val_nothing] = STATE(6108), + [sym_val_bool] = STATE(5928), + [sym_val_variable] = STATE(6108), + [sym__var] = STATE(5517), + [sym_val_number] = STATE(6108), + [sym__val_number_decimal] = STATE(4489), + [sym__val_number] = STATE(6110), + [sym_val_duration] = STATE(6108), + [sym_val_filesize] = STATE(6108), + [sym_val_binary] = STATE(6108), + [sym_val_string] = STATE(6108), + [sym__str_double_quotes] = STATE(6195), + [sym_val_interpolated] = STATE(6108), + [sym__inter_single_quotes] = STATE(6197), + [sym__inter_double_quotes] = STATE(6198), + [sym_val_list] = STATE(6108), + [sym_val_record] = STATE(6108), + [sym_val_table] = STATE(6108), + [sym_val_closure] = STATE(6108), + [sym_unquoted] = STATE(6029), + [sym__unquoted_anonymous_prefix] = STATE(10281), + [sym_comment] = STATE(1786), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(5039), + [anon_sym_DOLLAR] = ACTIONS(5041), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_DOT_DOT] = ACTIONS(5299), + [anon_sym_not] = ACTIONS(4172), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5045), + [anon_sym_DOT_DOT_LT] = ACTIONS(5045), + [anon_sym_null] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [aux_sym__val_number_decimal_token1] = ACTIONS(4180), + [aux_sym__val_number_decimal_token2] = ACTIONS(4182), + [anon_sym_DOT2] = ACTIONS(5301), + [aux_sym__val_number_decimal_token3] = ACTIONS(4186), + [aux_sym__val_number_token1] = ACTIONS(2828), + [aux_sym__val_number_token2] = ACTIONS(2828), + [aux_sym__val_number_token3] = ACTIONS(2828), + [aux_sym__val_number_token4] = ACTIONS(5303), + [aux_sym__val_number_token5] = ACTIONS(5303), + [aux_sym__val_number_token6] = ACTIONS(5303), + [anon_sym_0b] = ACTIONS(2832), + [anon_sym_0o] = ACTIONS(2834), + [anon_sym_0x] = ACTIONS(2834), + [sym_val_date] = ACTIONS(4190), + [anon_sym_DQUOTE] = ACTIONS(4192), + [sym__str_single_quotes] = ACTIONS(4194), + [sym__str_back_ticks] = ACTIONS(4194), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2844), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5063), [anon_sym_POUND] = ACTIONS(3), }, - [1586] = { - [sym__expression] = STATE(4295), - [sym_expr_unary] = STATE(6477), - [sym__expr_unary_minus] = STATE(6520), - [sym_expr_binary] = STATE(6477), - [sym__expr_binary_expression] = STATE(6791), - [sym_expr_parenthesized] = STATE(5638), - [sym_val_range] = STATE(3507), - [sym__val_range] = STATE(10607), - [sym__value] = STATE(6477), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(6326), - [sym_val_variable] = STATE(5789), - [sym__var] = STATE(5205), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(5152), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(6614), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_unquoted] = STATE(4299), - [sym__unquoted_anonymous_prefix] = STATE(11330), - [sym_comment] = STATE(1586), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_LPAREN] = ACTIONS(1940), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_DASH] = ACTIONS(4947), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(4949), - [anon_sym_not] = ACTIONS(4951), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4953), - [anon_sym_DOT_DOT_LT] = ACTIONS(4953), - [anon_sym_null] = ACTIONS(4955), - [anon_sym_true] = ACTIONS(4957), - [anon_sym_false] = ACTIONS(4957), - [aux_sym__val_number_decimal_token1] = ACTIONS(4959), - [aux_sym__val_number_decimal_token2] = ACTIONS(4961), - [anon_sym_DOT2] = ACTIONS(4963), - [aux_sym__val_number_decimal_token3] = ACTIONS(4965), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(4967), - [aux_sym__val_number_token5] = ACTIONS(4967), - [aux_sym__val_number_token6] = ACTIONS(4967), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(4969), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(3584), + [1787] = { + [sym_expr_unary] = STATE(6016), + [sym__expr_unary_minus] = STATE(5999), + [sym_expr_binary] = STATE(6016), + [sym__expr_binary_expression] = STATE(6162), + [sym_expr_parenthesized] = STATE(6016), + [sym__val_range] = STATE(10131), + [sym__value] = STATE(6016), + [sym_val_nothing] = STATE(6108), + [sym_val_bool] = STATE(5928), + [sym_val_variable] = STATE(6108), + [sym__var] = STATE(5517), + [sym_val_number] = STATE(6108), + [sym__val_number_decimal] = STATE(4489), + [sym__val_number] = STATE(6110), + [sym_val_duration] = STATE(6108), + [sym_val_filesize] = STATE(6108), + [sym_val_binary] = STATE(6108), + [sym_val_string] = STATE(6108), + [sym__str_double_quotes] = STATE(6195), + [sym_val_interpolated] = STATE(6108), + [sym__inter_single_quotes] = STATE(6197), + [sym__inter_double_quotes] = STATE(6198), + [sym_val_list] = STATE(6108), + [sym_val_record] = STATE(6108), + [sym_val_table] = STATE(6108), + [sym_val_closure] = STATE(6108), + [sym_unquoted] = STATE(6030), + [sym__unquoted_anonymous_prefix] = STATE(10281), + [sym_comment] = STATE(1787), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(5039), + [anon_sym_DOLLAR] = ACTIONS(5041), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_DOT_DOT] = ACTIONS(5299), + [anon_sym_not] = ACTIONS(4172), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5045), + [anon_sym_DOT_DOT_LT] = ACTIONS(5045), + [anon_sym_null] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [aux_sym__val_number_decimal_token1] = ACTIONS(4180), + [aux_sym__val_number_decimal_token2] = ACTIONS(4182), + [anon_sym_DOT2] = ACTIONS(5301), + [aux_sym__val_number_decimal_token3] = ACTIONS(4186), + [aux_sym__val_number_token1] = ACTIONS(2828), + [aux_sym__val_number_token2] = ACTIONS(2828), + [aux_sym__val_number_token3] = ACTIONS(2828), + [aux_sym__val_number_token4] = ACTIONS(5303), + [aux_sym__val_number_token5] = ACTIONS(5303), + [aux_sym__val_number_token6] = ACTIONS(5303), + [anon_sym_0b] = ACTIONS(2832), + [anon_sym_0o] = ACTIONS(2834), + [anon_sym_0x] = ACTIONS(2834), + [sym_val_date] = ACTIONS(4190), + [anon_sym_DQUOTE] = ACTIONS(4192), + [sym__str_single_quotes] = ACTIONS(4194), + [sym__str_back_ticks] = ACTIONS(4194), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2844), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5063), [anon_sym_POUND] = ACTIONS(3), }, - [1587] = { - [sym_cell_path] = STATE(2388), - [sym_path] = STATE(1517), - [sym_comment] = STATE(1587), - [ts_builtin_sym_end] = ACTIONS(1150), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_alias] = ACTIONS(1148), - [anon_sym_let] = ACTIONS(1148), - [anon_sym_let_DASHenv] = ACTIONS(1148), - [anon_sym_mut] = ACTIONS(1148), - [anon_sym_const] = ACTIONS(1148), - [anon_sym_SEMI] = ACTIONS(1148), - [sym_cmd_identifier] = ACTIONS(1148), - [anon_sym_LF] = ACTIONS(1150), - [anon_sym_def] = ACTIONS(1148), - [anon_sym_export_DASHenv] = ACTIONS(1148), - [anon_sym_extern] = ACTIONS(1148), - [anon_sym_module] = ACTIONS(1148), - [anon_sym_use] = ACTIONS(1148), - [anon_sym_LBRACK] = ACTIONS(1148), - [anon_sym_LPAREN] = ACTIONS(1148), - [anon_sym_DOLLAR] = ACTIONS(1148), - [anon_sym_error] = ACTIONS(1148), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_DASH] = ACTIONS(1148), - [anon_sym_break] = ACTIONS(1148), - [anon_sym_continue] = ACTIONS(1148), - [anon_sym_for] = ACTIONS(1148), - [anon_sym_loop] = ACTIONS(1148), - [anon_sym_while] = ACTIONS(1148), - [anon_sym_do] = ACTIONS(1148), - [anon_sym_if] = ACTIONS(1148), - [anon_sym_match] = ACTIONS(1148), - [anon_sym_LBRACE] = ACTIONS(1148), - [anon_sym_DOT_DOT] = ACTIONS(1148), - [anon_sym_try] = ACTIONS(1148), - [anon_sym_return] = ACTIONS(1148), - [anon_sym_source] = ACTIONS(1148), - [anon_sym_source_DASHenv] = ACTIONS(1148), - [anon_sym_register] = ACTIONS(1148), - [anon_sym_hide] = ACTIONS(1148), - [anon_sym_hide_DASHenv] = ACTIONS(1148), - [anon_sym_overlay] = ACTIONS(1148), - [anon_sym_as] = ACTIONS(1148), - [anon_sym_where] = ACTIONS(1148), - [anon_sym_not] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(4629), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1148), - [anon_sym_DOT_DOT_LT] = ACTIONS(1148), - [anon_sym_null] = ACTIONS(1148), - [anon_sym_true] = ACTIONS(1148), - [anon_sym_false] = ACTIONS(1148), - [aux_sym__val_number_decimal_token1] = ACTIONS(1148), - [aux_sym__val_number_decimal_token2] = ACTIONS(1148), - [anon_sym_DOT2] = ACTIONS(1148), - [aux_sym__val_number_decimal_token3] = ACTIONS(1148), - [aux_sym__val_number_token1] = ACTIONS(1148), - [aux_sym__val_number_token2] = ACTIONS(1148), - [aux_sym__val_number_token3] = ACTIONS(1148), - [aux_sym__val_number_token4] = ACTIONS(1148), - [aux_sym__val_number_token5] = ACTIONS(1148), - [aux_sym__val_number_token6] = ACTIONS(1148), - [anon_sym_0b] = ACTIONS(1148), - [anon_sym_0o] = ACTIONS(1148), - [anon_sym_0x] = ACTIONS(1148), - [sym_val_date] = ACTIONS(1148), - [anon_sym_DQUOTE] = ACTIONS(1148), - [sym__str_single_quotes] = ACTIONS(1148), - [sym__str_back_ticks] = ACTIONS(1148), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1148), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1148), - [anon_sym_CARET] = ACTIONS(1148), - [anon_sym_POUND] = ACTIONS(113), + [1788] = { + [sym_expr_unary] = STATE(6016), + [sym__expr_unary_minus] = STATE(5999), + [sym_expr_binary] = STATE(6016), + [sym__expr_binary_expression] = STATE(6163), + [sym_expr_parenthesized] = STATE(6016), + [sym__val_range] = STATE(10131), + [sym__value] = STATE(6016), + [sym_val_nothing] = STATE(6108), + [sym_val_bool] = STATE(5928), + [sym_val_variable] = STATE(6108), + [sym__var] = STATE(5517), + [sym_val_number] = STATE(6108), + [sym__val_number_decimal] = STATE(4489), + [sym__val_number] = STATE(6110), + [sym_val_duration] = STATE(6108), + [sym_val_filesize] = STATE(6108), + [sym_val_binary] = STATE(6108), + [sym_val_string] = STATE(6108), + [sym__str_double_quotes] = STATE(6195), + [sym_val_interpolated] = STATE(6108), + [sym__inter_single_quotes] = STATE(6197), + [sym__inter_double_quotes] = STATE(6198), + [sym_val_list] = STATE(6108), + [sym_val_record] = STATE(6108), + [sym_val_table] = STATE(6108), + [sym_val_closure] = STATE(6108), + [sym_unquoted] = STATE(6031), + [sym__unquoted_anonymous_prefix] = STATE(10281), + [sym_comment] = STATE(1788), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(5039), + [anon_sym_DOLLAR] = ACTIONS(5041), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_DOT_DOT] = ACTIONS(5299), + [anon_sym_not] = ACTIONS(4172), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5045), + [anon_sym_DOT_DOT_LT] = ACTIONS(5045), + [anon_sym_null] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [aux_sym__val_number_decimal_token1] = ACTIONS(4180), + [aux_sym__val_number_decimal_token2] = ACTIONS(4182), + [anon_sym_DOT2] = ACTIONS(5301), + [aux_sym__val_number_decimal_token3] = ACTIONS(4186), + [aux_sym__val_number_token1] = ACTIONS(2828), + [aux_sym__val_number_token2] = ACTIONS(2828), + [aux_sym__val_number_token3] = ACTIONS(2828), + [aux_sym__val_number_token4] = ACTIONS(5303), + [aux_sym__val_number_token5] = ACTIONS(5303), + [aux_sym__val_number_token6] = ACTIONS(5303), + [anon_sym_0b] = ACTIONS(2832), + [anon_sym_0o] = ACTIONS(2834), + [anon_sym_0x] = ACTIONS(2834), + [sym_val_date] = ACTIONS(4190), + [anon_sym_DQUOTE] = ACTIONS(4192), + [sym__str_single_quotes] = ACTIONS(4194), + [sym__str_back_ticks] = ACTIONS(4194), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2844), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5063), + [anon_sym_POUND] = ACTIONS(3), }, - [1588] = { - [sym_comment] = STATE(1588), - [ts_builtin_sym_end] = ACTIONS(2439), - [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), - [anon_sym_SEMI] = ACTIONS(2437), - [sym_cmd_identifier] = ACTIONS(2437), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_not] = ACTIONS(2437), - [anon_sym_DOT_DOT2] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2439), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2439), - [aux_sym__immediate_decimal_token1] = ACTIONS(4971), - [aux_sym__immediate_decimal_token2] = ACTIONS(4973), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [anon_sym_DOT2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2437), - [anon_sym_0o] = ACTIONS(2437), - [anon_sym_0x] = ACTIONS(2437), - [sym_val_date] = 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_CARET] = ACTIONS(2437), - [anon_sym_POUND] = ACTIONS(113), + [1789] = { + [sym_expr_unary] = STATE(6016), + [sym__expr_unary_minus] = STATE(5999), + [sym_expr_binary] = STATE(6016), + [sym__expr_binary_expression] = STATE(6164), + [sym_expr_parenthesized] = STATE(6016), + [sym__val_range] = STATE(10131), + [sym__value] = STATE(6016), + [sym_val_nothing] = STATE(6108), + [sym_val_bool] = STATE(5928), + [sym_val_variable] = STATE(6108), + [sym__var] = STATE(5517), + [sym_val_number] = STATE(6108), + [sym__val_number_decimal] = STATE(4489), + [sym__val_number] = STATE(6110), + [sym_val_duration] = STATE(6108), + [sym_val_filesize] = STATE(6108), + [sym_val_binary] = STATE(6108), + [sym_val_string] = STATE(6108), + [sym__str_double_quotes] = STATE(6195), + [sym_val_interpolated] = STATE(6108), + [sym__inter_single_quotes] = STATE(6197), + [sym__inter_double_quotes] = STATE(6198), + [sym_val_list] = STATE(6108), + [sym_val_record] = STATE(6108), + [sym_val_table] = STATE(6108), + [sym_val_closure] = STATE(6108), + [sym_unquoted] = STATE(6032), + [sym__unquoted_anonymous_prefix] = STATE(10281), + [sym_comment] = STATE(1789), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(5039), + [anon_sym_DOLLAR] = ACTIONS(5041), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_DOT_DOT] = ACTIONS(5299), + [anon_sym_not] = ACTIONS(4172), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5045), + [anon_sym_DOT_DOT_LT] = ACTIONS(5045), + [anon_sym_null] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [aux_sym__val_number_decimal_token1] = ACTIONS(4180), + [aux_sym__val_number_decimal_token2] = ACTIONS(4182), + [anon_sym_DOT2] = ACTIONS(5301), + [aux_sym__val_number_decimal_token3] = ACTIONS(4186), + [aux_sym__val_number_token1] = ACTIONS(2828), + [aux_sym__val_number_token2] = ACTIONS(2828), + [aux_sym__val_number_token3] = ACTIONS(2828), + [aux_sym__val_number_token4] = ACTIONS(5303), + [aux_sym__val_number_token5] = ACTIONS(5303), + [aux_sym__val_number_token6] = ACTIONS(5303), + [anon_sym_0b] = ACTIONS(2832), + [anon_sym_0o] = ACTIONS(2834), + [anon_sym_0x] = ACTIONS(2834), + [sym_val_date] = ACTIONS(4190), + [anon_sym_DQUOTE] = ACTIONS(4192), + [sym__str_single_quotes] = ACTIONS(4194), + [sym__str_back_ticks] = ACTIONS(4194), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2844), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5063), + [anon_sym_POUND] = ACTIONS(3), }, - [1589] = { - [sym_cell_path] = STATE(2506), - [sym_path] = STATE(1457), - [sym_comment] = STATE(1589), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_COMMA] = ACTIONS(997), - [anon_sym_RBRACK] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_DOLLAR] = ACTIONS(997), - [anon_sym_GT] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_in] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(997), - [anon_sym_DOT_DOT] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_STAR_STAR] = ACTIONS(997), - [anon_sym_PLUS_PLUS] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(995), - [anon_sym_mod] = ACTIONS(997), - [anon_sym_SLASH_SLASH] = ACTIONS(997), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_bit_DASHshl] = ACTIONS(997), - [anon_sym_bit_DASHshr] = ACTIONS(997), - [anon_sym_EQ_EQ] = ACTIONS(997), - [anon_sym_BANG_EQ] = ACTIONS(997), - [anon_sym_LT2] = ACTIONS(995), - [anon_sym_LT_EQ] = ACTIONS(997), - [anon_sym_GT_EQ] = ACTIONS(997), - [anon_sym_not_DASHin] = ACTIONS(997), - [anon_sym_starts_DASHwith] = ACTIONS(997), - [anon_sym_ends_DASHwith] = ACTIONS(997), - [anon_sym_EQ_TILDE] = ACTIONS(997), - [anon_sym_BANG_TILDE] = ACTIONS(997), - [anon_sym_bit_DASHand] = ACTIONS(997), - [anon_sym_bit_DASHxor] = ACTIONS(997), - [anon_sym_bit_DASHor] = ACTIONS(997), - [anon_sym_and] = ACTIONS(997), - [anon_sym_xor] = ACTIONS(997), - [anon_sym_or] = ACTIONS(997), - [anon_sym_DOT] = ACTIONS(4191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(997), - [anon_sym_DOT_DOT_LT] = ACTIONS(997), - [anon_sym_null] = ACTIONS(997), - [anon_sym_true] = ACTIONS(997), - [anon_sym_false] = ACTIONS(997), - [aux_sym__val_number_decimal_token1] = ACTIONS(995), - [aux_sym__val_number_decimal_token2] = ACTIONS(997), - [anon_sym_DOT2] = ACTIONS(995), - [aux_sym__val_number_decimal_token3] = ACTIONS(997), - [aux_sym__val_number_token1] = ACTIONS(997), - [aux_sym__val_number_token2] = ACTIONS(997), - [aux_sym__val_number_token3] = ACTIONS(997), - [aux_sym__val_number_token4] = ACTIONS(997), - [aux_sym__val_number_token5] = ACTIONS(997), - [aux_sym__val_number_token6] = ACTIONS(997), - [anon_sym_0b] = ACTIONS(995), - [anon_sym_0o] = ACTIONS(995), - [anon_sym_0x] = ACTIONS(995), - [sym_val_date] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(997), - [sym__str_single_quotes] = ACTIONS(997), - [sym__str_back_ticks] = ACTIONS(997), - [anon_sym_err_GT] = ACTIONS(997), - [anon_sym_out_GT] = ACTIONS(997), - [anon_sym_e_GT] = ACTIONS(997), - [anon_sym_o_GT] = ACTIONS(997), - [anon_sym_err_PLUSout_GT] = ACTIONS(997), - [anon_sym_out_PLUSerr_GT] = ACTIONS(997), - [anon_sym_o_PLUSe_GT] = ACTIONS(997), - [anon_sym_e_PLUSo_GT] = ACTIONS(997), - [aux_sym__unquoted_in_list_token1] = ACTIONS(995), + [1790] = { + [sym_expr_unary] = STATE(6016), + [sym__expr_unary_minus] = STATE(5999), + [sym_expr_binary] = STATE(6016), + [sym__expr_binary_expression] = STATE(6165), + [sym_expr_parenthesized] = STATE(6016), + [sym__val_range] = STATE(10131), + [sym__value] = STATE(6016), + [sym_val_nothing] = STATE(6108), + [sym_val_bool] = STATE(5928), + [sym_val_variable] = STATE(6108), + [sym__var] = STATE(5517), + [sym_val_number] = STATE(6108), + [sym__val_number_decimal] = STATE(4489), + [sym__val_number] = STATE(6110), + [sym_val_duration] = STATE(6108), + [sym_val_filesize] = STATE(6108), + [sym_val_binary] = STATE(6108), + [sym_val_string] = STATE(6108), + [sym__str_double_quotes] = STATE(6195), + [sym_val_interpolated] = STATE(6108), + [sym__inter_single_quotes] = STATE(6197), + [sym__inter_double_quotes] = STATE(6198), + [sym_val_list] = STATE(6108), + [sym_val_record] = STATE(6108), + [sym_val_table] = STATE(6108), + [sym_val_closure] = STATE(6108), + [sym_unquoted] = STATE(6033), + [sym__unquoted_anonymous_prefix] = STATE(10281), + [sym_comment] = STATE(1790), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(5039), + [anon_sym_DOLLAR] = ACTIONS(5041), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_DOT_DOT] = ACTIONS(5299), + [anon_sym_not] = ACTIONS(4172), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5045), + [anon_sym_DOT_DOT_LT] = ACTIONS(5045), + [anon_sym_null] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [aux_sym__val_number_decimal_token1] = ACTIONS(4180), + [aux_sym__val_number_decimal_token2] = ACTIONS(4182), + [anon_sym_DOT2] = ACTIONS(5301), + [aux_sym__val_number_decimal_token3] = ACTIONS(4186), + [aux_sym__val_number_token1] = ACTIONS(2828), + [aux_sym__val_number_token2] = ACTIONS(2828), + [aux_sym__val_number_token3] = ACTIONS(2828), + [aux_sym__val_number_token4] = ACTIONS(5303), + [aux_sym__val_number_token5] = ACTIONS(5303), + [aux_sym__val_number_token6] = ACTIONS(5303), + [anon_sym_0b] = ACTIONS(2832), + [anon_sym_0o] = ACTIONS(2834), + [anon_sym_0x] = ACTIONS(2834), + [sym_val_date] = ACTIONS(4190), + [anon_sym_DQUOTE] = ACTIONS(4192), + [sym__str_single_quotes] = ACTIONS(4194), + [sym__str_back_ticks] = ACTIONS(4194), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2844), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5063), [anon_sym_POUND] = ACTIONS(3), }, - [1590] = { - [sym_cell_path] = STATE(2389), - [sym_path] = STATE(1517), - [sym_comment] = STATE(1590), - [ts_builtin_sym_end] = ACTIONS(1181), - [anon_sym_export] = ACTIONS(1179), - [anon_sym_alias] = ACTIONS(1179), - [anon_sym_let] = ACTIONS(1179), - [anon_sym_let_DASHenv] = ACTIONS(1179), - [anon_sym_mut] = ACTIONS(1179), - [anon_sym_const] = ACTIONS(1179), - [anon_sym_SEMI] = ACTIONS(1179), - [sym_cmd_identifier] = ACTIONS(1179), - [anon_sym_LF] = ACTIONS(1181), - [anon_sym_def] = ACTIONS(1179), - [anon_sym_export_DASHenv] = ACTIONS(1179), - [anon_sym_extern] = ACTIONS(1179), - [anon_sym_module] = ACTIONS(1179), - [anon_sym_use] = ACTIONS(1179), - [anon_sym_LBRACK] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1179), - [anon_sym_DOLLAR] = ACTIONS(1179), - [anon_sym_error] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1179), - [anon_sym_DASH] = ACTIONS(1179), - [anon_sym_break] = ACTIONS(1179), - [anon_sym_continue] = ACTIONS(1179), - [anon_sym_for] = ACTIONS(1179), - [anon_sym_loop] = ACTIONS(1179), - [anon_sym_while] = ACTIONS(1179), - [anon_sym_do] = ACTIONS(1179), - [anon_sym_if] = ACTIONS(1179), - [anon_sym_match] = ACTIONS(1179), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_try] = ACTIONS(1179), - [anon_sym_return] = ACTIONS(1179), - [anon_sym_source] = ACTIONS(1179), - [anon_sym_source_DASHenv] = ACTIONS(1179), - [anon_sym_register] = ACTIONS(1179), - [anon_sym_hide] = ACTIONS(1179), - [anon_sym_hide_DASHenv] = ACTIONS(1179), - [anon_sym_overlay] = ACTIONS(1179), - [anon_sym_as] = ACTIONS(1179), - [anon_sym_where] = ACTIONS(1179), - [anon_sym_not] = ACTIONS(1179), - [anon_sym_DOT] = ACTIONS(4629), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), - [anon_sym_DOT_DOT_LT] = ACTIONS(1179), - [anon_sym_null] = ACTIONS(1179), - [anon_sym_true] = ACTIONS(1179), - [anon_sym_false] = ACTIONS(1179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1179), - [aux_sym__val_number_decimal_token2] = ACTIONS(1179), - [anon_sym_DOT2] = ACTIONS(1179), - [aux_sym__val_number_decimal_token3] = ACTIONS(1179), - [aux_sym__val_number_token1] = ACTIONS(1179), - [aux_sym__val_number_token2] = ACTIONS(1179), - [aux_sym__val_number_token3] = ACTIONS(1179), - [aux_sym__val_number_token4] = ACTIONS(1179), - [aux_sym__val_number_token5] = ACTIONS(1179), - [aux_sym__val_number_token6] = ACTIONS(1179), - [anon_sym_0b] = ACTIONS(1179), - [anon_sym_0o] = ACTIONS(1179), - [anon_sym_0x] = ACTIONS(1179), - [sym_val_date] = ACTIONS(1179), - [anon_sym_DQUOTE] = ACTIONS(1179), - [sym__str_single_quotes] = ACTIONS(1179), - [sym__str_back_ticks] = ACTIONS(1179), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1179), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), - [anon_sym_CARET] = ACTIONS(1179), + [1791] = { + [sym_comment] = STATE(1791), + [anon_sym_export] = ACTIONS(1225), + [anon_sym_alias] = ACTIONS(1225), + [anon_sym_let] = ACTIONS(1225), + [anon_sym_let_DASHenv] = ACTIONS(1225), + [anon_sym_mut] = ACTIONS(1225), + [anon_sym_const] = ACTIONS(1225), + [anon_sym_SEMI] = ACTIONS(1225), + [sym_cmd_identifier] = ACTIONS(1225), + [anon_sym_LF] = ACTIONS(1227), + [anon_sym_def] = ACTIONS(1225), + [anon_sym_export_DASHenv] = ACTIONS(1225), + [anon_sym_extern] = ACTIONS(1225), + [anon_sym_module] = ACTIONS(1225), + [anon_sym_use] = ACTIONS(1225), + [anon_sym_LBRACK] = ACTIONS(1225), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_RPAREN] = ACTIONS(1225), + [anon_sym_DOLLAR] = ACTIONS(1225), + [anon_sym_error] = ACTIONS(1225), + [anon_sym_DASH_DASH] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_break] = ACTIONS(1225), + [anon_sym_continue] = ACTIONS(1225), + [anon_sym_for] = ACTIONS(1225), + [anon_sym_loop] = ACTIONS(1225), + [anon_sym_while] = ACTIONS(1225), + [anon_sym_do] = ACTIONS(1225), + [anon_sym_if] = ACTIONS(1225), + [anon_sym_match] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_RBRACE] = ACTIONS(1225), + [anon_sym_DOT_DOT] = ACTIONS(1225), + [anon_sym_try] = ACTIONS(1225), + [anon_sym_return] = ACTIONS(1225), + [anon_sym_source] = ACTIONS(1225), + [anon_sym_source_DASHenv] = ACTIONS(1225), + [anon_sym_register] = ACTIONS(1225), + [anon_sym_hide] = ACTIONS(1225), + [anon_sym_hide_DASHenv] = ACTIONS(1225), + [anon_sym_overlay] = ACTIONS(1225), + [anon_sym_as] = ACTIONS(1225), + [anon_sym_where] = ACTIONS(1225), + [anon_sym_not] = ACTIONS(1225), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1225), + [anon_sym_DOT_DOT_LT] = ACTIONS(1225), + [anon_sym_null] = ACTIONS(1225), + [anon_sym_true] = ACTIONS(1225), + [anon_sym_false] = ACTIONS(1225), + [aux_sym__val_number_decimal_token1] = ACTIONS(1225), + [aux_sym__val_number_decimal_token2] = ACTIONS(1225), + [anon_sym_DOT2] = ACTIONS(1225), + [aux_sym__val_number_decimal_token3] = ACTIONS(1225), + [aux_sym__val_number_token1] = ACTIONS(1225), + [aux_sym__val_number_token2] = ACTIONS(1225), + [aux_sym__val_number_token3] = ACTIONS(1225), + [aux_sym__val_number_token4] = ACTIONS(1225), + [aux_sym__val_number_token5] = ACTIONS(1225), + [aux_sym__val_number_token6] = ACTIONS(1225), + [anon_sym_0b] = ACTIONS(1225), + [anon_sym_0o] = ACTIONS(1225), + [anon_sym_0x] = ACTIONS(1225), + [sym_val_date] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1225), + [sym__str_single_quotes] = ACTIONS(1225), + [sym__str_back_ticks] = ACTIONS(1225), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1225), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1225), + [anon_sym_CARET] = ACTIONS(1225), [anon_sym_POUND] = ACTIONS(113), }, - [1591] = { - [sym_comment] = STATE(1591), - [anon_sym_LBRACK] = ACTIONS(1196), - [anon_sym_COMMA] = ACTIONS(1196), - [anon_sym_RBRACK] = ACTIONS(1196), - [anon_sym_LPAREN] = ACTIONS(1196), - [anon_sym_DOLLAR] = ACTIONS(1196), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_in] = ACTIONS(1198), - [anon_sym_LBRACE] = ACTIONS(1196), - [anon_sym_DOT_DOT] = ACTIONS(1194), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_STAR_STAR] = ACTIONS(1366), - [anon_sym_PLUS_PLUS] = ACTIONS(1366), - [anon_sym_SLASH] = ACTIONS(1198), - [anon_sym_mod] = ACTIONS(1366), - [anon_sym_SLASH_SLASH] = ACTIONS(1366), - [anon_sym_PLUS] = ACTIONS(1200), - [anon_sym_bit_DASHshl] = ACTIONS(1366), - [anon_sym_bit_DASHshr] = ACTIONS(1366), - [anon_sym_EQ_EQ] = ACTIONS(1366), - [anon_sym_BANG_EQ] = ACTIONS(1366), - [anon_sym_LT2] = ACTIONS(1198), - [anon_sym_LT_EQ] = ACTIONS(1366), - [anon_sym_GT_EQ] = ACTIONS(1366), - [anon_sym_not_DASHin] = ACTIONS(1366), - [anon_sym_starts_DASHwith] = ACTIONS(1366), - [anon_sym_ends_DASHwith] = ACTIONS(1366), - [anon_sym_EQ_TILDE] = ACTIONS(1366), - [anon_sym_BANG_TILDE] = ACTIONS(1366), - [anon_sym_bit_DASHand] = ACTIONS(1366), - [anon_sym_bit_DASHxor] = ACTIONS(1366), - [anon_sym_bit_DASHor] = ACTIONS(1366), - [anon_sym_and] = ACTIONS(1366), - [anon_sym_xor] = ACTIONS(1366), - [anon_sym_or] = ACTIONS(1366), - [anon_sym_DOT_DOT2] = ACTIONS(4625), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1194), - [anon_sym_DOT_DOT_LT] = ACTIONS(1194), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4627), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4627), - [anon_sym_null] = ACTIONS(1196), - [anon_sym_true] = ACTIONS(1196), - [anon_sym_false] = ACTIONS(1196), - [aux_sym__val_number_decimal_token1] = ACTIONS(1194), - [aux_sym__val_number_decimal_token2] = ACTIONS(1196), - [anon_sym_DOT2] = ACTIONS(1194), - [aux_sym__val_number_decimal_token3] = ACTIONS(1196), - [aux_sym__val_number_token1] = ACTIONS(1196), - [aux_sym__val_number_token2] = ACTIONS(1196), - [aux_sym__val_number_token3] = ACTIONS(1196), - [aux_sym__val_number_token4] = ACTIONS(1196), - [aux_sym__val_number_token5] = ACTIONS(1196), - [aux_sym__val_number_token6] = ACTIONS(1196), - [anon_sym_0b] = ACTIONS(1194), - [anon_sym_0o] = ACTIONS(1194), - [anon_sym_0x] = ACTIONS(1194), - [sym_val_date] = ACTIONS(1196), - [anon_sym_DQUOTE] = ACTIONS(1196), - [sym__str_single_quotes] = ACTIONS(1196), - [sym__str_back_ticks] = ACTIONS(1196), - [anon_sym_err_GT] = ACTIONS(1196), - [anon_sym_out_GT] = ACTIONS(1196), - [anon_sym_e_GT] = ACTIONS(1196), - [anon_sym_o_GT] = ACTIONS(1196), - [anon_sym_err_PLUSout_GT] = ACTIONS(1196), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1196), - [anon_sym_o_PLUSe_GT] = ACTIONS(1196), - [anon_sym_e_PLUSo_GT] = ACTIONS(1196), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1194), - [anon_sym_POUND] = ACTIONS(3), - }, - [1592] = { - [sym_comment] = STATE(1592), - [anon_sym_export] = ACTIONS(2843), - [anon_sym_alias] = ACTIONS(2843), - [anon_sym_let] = ACTIONS(2843), - [anon_sym_let_DASHenv] = ACTIONS(2843), - [anon_sym_mut] = ACTIONS(2843), - [anon_sym_const] = ACTIONS(2843), - [anon_sym_SEMI] = ACTIONS(2843), - [sym_cmd_identifier] = ACTIONS(2843), - [anon_sym_LF] = ACTIONS(2845), - [anon_sym_def] = ACTIONS(2843), - [anon_sym_export_DASHenv] = ACTIONS(2843), - [anon_sym_extern] = ACTIONS(2843), - [anon_sym_module] = ACTIONS(2843), - [anon_sym_use] = ACTIONS(2843), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_LPAREN] = ACTIONS(2843), - [anon_sym_RPAREN] = ACTIONS(2843), - [anon_sym_DOLLAR] = ACTIONS(2843), - [anon_sym_error] = ACTIONS(2843), - [anon_sym_DASH_DASH] = ACTIONS(2843), - [anon_sym_DASH] = ACTIONS(2843), - [anon_sym_break] = ACTIONS(2843), - [anon_sym_continue] = ACTIONS(2843), - [anon_sym_for] = ACTIONS(2843), - [anon_sym_loop] = ACTIONS(2843), - [anon_sym_while] = ACTIONS(2843), - [anon_sym_do] = ACTIONS(2843), - [anon_sym_if] = ACTIONS(2843), - [anon_sym_match] = ACTIONS(2843), - [anon_sym_LBRACE] = ACTIONS(2843), - [anon_sym_RBRACE] = ACTIONS(2843), - [anon_sym_DOT_DOT] = ACTIONS(2843), - [anon_sym_try] = ACTIONS(2843), - [anon_sym_return] = ACTIONS(2843), - [anon_sym_source] = ACTIONS(2843), - [anon_sym_source_DASHenv] = ACTIONS(2843), - [anon_sym_register] = ACTIONS(2843), - [anon_sym_hide] = ACTIONS(2843), - [anon_sym_hide_DASHenv] = ACTIONS(2843), - [anon_sym_overlay] = ACTIONS(2843), - [anon_sym_as] = ACTIONS(2843), - [anon_sym_where] = ACTIONS(2843), - [anon_sym_not] = ACTIONS(2843), - [anon_sym_DOT] = ACTIONS(2851), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2843), - [anon_sym_DOT_DOT_LT] = ACTIONS(2843), - [anon_sym_null] = ACTIONS(2843), - [anon_sym_true] = ACTIONS(2843), - [anon_sym_false] = ACTIONS(2843), - [aux_sym__val_number_decimal_token1] = ACTIONS(2843), - [aux_sym__val_number_decimal_token2] = ACTIONS(2843), - [anon_sym_DOT2] = ACTIONS(2843), - [aux_sym__val_number_decimal_token3] = ACTIONS(2843), - [aux_sym__val_number_token1] = ACTIONS(2843), - [aux_sym__val_number_token2] = ACTIONS(2843), - [aux_sym__val_number_token3] = ACTIONS(2843), - [aux_sym__val_number_token4] = ACTIONS(2843), - [aux_sym__val_number_token5] = ACTIONS(2843), - [aux_sym__val_number_token6] = ACTIONS(2843), - [anon_sym_0b] = ACTIONS(2843), - [anon_sym_0o] = ACTIONS(2843), - [anon_sym_0x] = ACTIONS(2843), - [sym_val_date] = ACTIONS(2843), - [anon_sym_DQUOTE] = ACTIONS(2843), - [sym__str_single_quotes] = ACTIONS(2843), - [sym__str_back_ticks] = ACTIONS(2843), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2843), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2843), - [anon_sym_CARET] = ACTIONS(2843), - [aux_sym_unquoted_token2] = ACTIONS(2851), + [1792] = { + [sym_comment] = STATE(1792), + [anon_sym_LBRACK] = ACTIONS(1287), + [anon_sym_COMMA] = ACTIONS(1287), + [anon_sym_RBRACK] = ACTIONS(1287), + [anon_sym_LPAREN] = ACTIONS(1287), + [anon_sym_DOLLAR] = ACTIONS(1287), + [anon_sym_GT] = ACTIONS(1287), + [anon_sym_DASH_DASH] = ACTIONS(1287), + [anon_sym_DASH] = ACTIONS(1287), + [anon_sym_in] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1287), + [anon_sym_DOT_DOT] = ACTIONS(1287), + [anon_sym_STAR] = ACTIONS(1287), + [anon_sym_STAR_STAR] = ACTIONS(1287), + [anon_sym_PLUS_PLUS] = ACTIONS(1287), + [anon_sym_SLASH] = ACTIONS(1287), + [anon_sym_mod] = ACTIONS(1287), + [anon_sym_SLASH_SLASH] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1287), + [anon_sym_bit_DASHshl] = ACTIONS(1287), + [anon_sym_bit_DASHshr] = ACTIONS(1287), + [anon_sym_EQ_EQ] = ACTIONS(1287), + [anon_sym_BANG_EQ] = ACTIONS(1287), + [anon_sym_LT2] = ACTIONS(1287), + [anon_sym_LT_EQ] = ACTIONS(1287), + [anon_sym_GT_EQ] = ACTIONS(1287), + [anon_sym_not_DASHin] = ACTIONS(1287), + [anon_sym_starts_DASHwith] = ACTIONS(1287), + [anon_sym_ends_DASHwith] = ACTIONS(1287), + [anon_sym_EQ_TILDE] = ACTIONS(1287), + [anon_sym_BANG_TILDE] = ACTIONS(1287), + [anon_sym_bit_DASHand] = ACTIONS(1287), + [anon_sym_bit_DASHxor] = ACTIONS(1287), + [anon_sym_bit_DASHor] = ACTIONS(1287), + [anon_sym_and] = ACTIONS(1287), + [anon_sym_xor] = ACTIONS(1287), + [anon_sym_or] = ACTIONS(1287), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1287), + [anon_sym_DOT_DOT_LT] = ACTIONS(1287), + [anon_sym_null] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1287), + [anon_sym_false] = ACTIONS(1287), + [aux_sym__val_number_decimal_token1] = ACTIONS(1287), + [aux_sym__val_number_decimal_token2] = ACTIONS(1287), + [anon_sym_DOT2] = ACTIONS(1287), + [aux_sym__val_number_decimal_token3] = ACTIONS(1287), + [aux_sym__val_number_token1] = ACTIONS(1287), + [aux_sym__val_number_token2] = ACTIONS(1287), + [aux_sym__val_number_token3] = ACTIONS(1287), + [aux_sym__val_number_token4] = ACTIONS(1287), + [aux_sym__val_number_token5] = ACTIONS(1287), + [aux_sym__val_number_token6] = ACTIONS(1287), + [anon_sym_0b] = ACTIONS(1287), + [anon_sym_0o] = ACTIONS(1287), + [anon_sym_0x] = ACTIONS(1287), + [sym_val_date] = ACTIONS(1287), + [anon_sym_DQUOTE] = ACTIONS(1287), + [sym__str_single_quotes] = ACTIONS(1287), + [sym__str_back_ticks] = ACTIONS(1287), + [sym__entry_separator] = ACTIONS(1289), + [anon_sym_err_GT] = ACTIONS(1287), + [anon_sym_out_GT] = ACTIONS(1287), + [anon_sym_e_GT] = ACTIONS(1287), + [anon_sym_o_GT] = ACTIONS(1287), + [anon_sym_err_PLUSout_GT] = ACTIONS(1287), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1287), + [anon_sym_o_PLUSe_GT] = ACTIONS(1287), + [anon_sym_e_PLUSo_GT] = ACTIONS(1287), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1287), [anon_sym_POUND] = ACTIONS(113), }, - [1593] = { - [sym__expression] = STATE(11140), - [sym_expr_unary] = STATE(6799), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6799), - [sym__expr_binary_expression] = STATE(6786), - [sym_expr_parenthesized] = STATE(6613), - [sym_val_range] = STATE(11067), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6799), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6719), - [sym_val_variable] = STATE(6505), - [sym__var] = STATE(4486), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5523), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(11142), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(1593), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_DOLLAR] = ACTIONS(2690), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(4975), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4977), - [anon_sym_DOT_DOT_LT] = ACTIONS(4977), - [anon_sym_null] = ACTIONS(3894), - [anon_sym_true] = ACTIONS(3896), - [anon_sym_false] = ACTIONS(3896), - [aux_sym__val_number_decimal_token1] = ACTIONS(3898), - [aux_sym__val_number_decimal_token2] = ACTIONS(3900), - [anon_sym_DOT2] = ACTIONS(4979), - [aux_sym__val_number_decimal_token3] = ACTIONS(3904), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(3906), - [aux_sym__val_number_token5] = ACTIONS(3906), - [aux_sym__val_number_token6] = ACTIONS(3906), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(3908), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), + [1793] = { + [sym_expr_unary] = STATE(732), + [sym__expr_unary_minus] = STATE(730), + [sym_expr_binary] = STATE(732), + [sym__expr_binary_expression] = STATE(746), + [sym_expr_parenthesized] = STATE(732), + [sym__val_range] = STATE(10198), + [sym__value] = STATE(732), + [sym_val_nothing] = STATE(757), + [sym_val_bool] = STATE(607), + [sym_val_variable] = STATE(757), + [sym__var] = STATE(564), + [sym_val_number] = STATE(757), + [sym__val_number_decimal] = STATE(508), + [sym__val_number] = STATE(695), + [sym_val_duration] = STATE(757), + [sym_val_filesize] = STATE(757), + [sym_val_binary] = STATE(757), + [sym_val_string] = STATE(757), + [sym__str_double_quotes] = STATE(693), + [sym_val_interpolated] = STATE(757), + [sym__inter_single_quotes] = STATE(710), + [sym__inter_double_quotes] = STATE(711), + [sym_val_list] = STATE(757), + [sym_val_record] = STATE(757), + [sym_val_table] = STATE(757), + [sym_val_closure] = STATE(757), + [sym_unquoted] = STATE(733), + [sym__unquoted_anonymous_prefix] = STATE(10568), + [sym_comment] = STATE(1793), + [anon_sym_LBRACK] = ACTIONS(5305), + [anon_sym_LPAREN] = ACTIONS(5307), + [anon_sym_DOLLAR] = ACTIONS(5309), + [anon_sym_DASH] = ACTIONS(5311), + [anon_sym_LBRACE] = ACTIONS(5313), + [anon_sym_DOT_DOT] = ACTIONS(5315), + [anon_sym_not] = ACTIONS(5317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5319), + [anon_sym_DOT_DOT_LT] = ACTIONS(5319), + [anon_sym_null] = ACTIONS(5321), + [anon_sym_true] = ACTIONS(5323), + [anon_sym_false] = ACTIONS(5323), + [aux_sym__val_number_decimal_token1] = ACTIONS(5325), + [aux_sym__val_number_decimal_token2] = ACTIONS(5327), + [anon_sym_DOT2] = ACTIONS(5329), + [aux_sym__val_number_decimal_token3] = ACTIONS(5331), + [aux_sym__val_number_token1] = ACTIONS(5333), + [aux_sym__val_number_token2] = ACTIONS(5333), + [aux_sym__val_number_token3] = ACTIONS(5333), + [aux_sym__val_number_token4] = ACTIONS(5335), + [aux_sym__val_number_token5] = ACTIONS(5335), + [aux_sym__val_number_token6] = ACTIONS(5335), + [anon_sym_0b] = ACTIONS(5337), + [anon_sym_0o] = ACTIONS(5339), + [anon_sym_0x] = ACTIONS(5339), + [sym_val_date] = ACTIONS(5341), + [anon_sym_DQUOTE] = ACTIONS(5343), + [sym__str_single_quotes] = ACTIONS(5345), + [sym__str_back_ticks] = ACTIONS(5345), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5347), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5349), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5351), [anon_sym_POUND] = ACTIONS(3), }, - [1594] = { - [sym__expression] = STATE(10904), - [sym_expr_unary] = STATE(6243), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6243), - [sym__expr_binary_expression] = STATE(6786), - [sym_expr_parenthesized] = STATE(6385), - [sym_val_range] = STATE(7168), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6243), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6719), - [sym_val_variable] = STATE(6316), - [sym__var] = STATE(4486), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5316), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(10905), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(1594), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_DOLLAR] = ACTIONS(2690), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(3888), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3892), - [anon_sym_DOT_DOT_LT] = ACTIONS(3892), - [anon_sym_null] = ACTIONS(3894), - [anon_sym_true] = ACTIONS(3896), - [anon_sym_false] = ACTIONS(3896), - [aux_sym__val_number_decimal_token1] = ACTIONS(3898), - [aux_sym__val_number_decimal_token2] = ACTIONS(3900), - [anon_sym_DOT2] = ACTIONS(3902), - [aux_sym__val_number_decimal_token3] = ACTIONS(3904), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(3906), - [aux_sym__val_number_token5] = ACTIONS(3906), - [aux_sym__val_number_token6] = ACTIONS(3906), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(3908), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), + [1794] = { + [sym_expr_unary] = STATE(732), + [sym__expr_unary_minus] = STATE(730), + [sym_expr_binary] = STATE(732), + [sym__expr_binary_expression] = STATE(747), + [sym_expr_parenthesized] = STATE(732), + [sym__val_range] = STATE(10198), + [sym__value] = STATE(732), + [sym_val_nothing] = STATE(757), + [sym_val_bool] = STATE(607), + [sym_val_variable] = STATE(757), + [sym__var] = STATE(564), + [sym_val_number] = STATE(757), + [sym__val_number_decimal] = STATE(508), + [sym__val_number] = STATE(695), + [sym_val_duration] = STATE(757), + [sym_val_filesize] = STATE(757), + [sym_val_binary] = STATE(757), + [sym_val_string] = STATE(757), + [sym__str_double_quotes] = STATE(693), + [sym_val_interpolated] = STATE(757), + [sym__inter_single_quotes] = STATE(710), + [sym__inter_double_quotes] = STATE(711), + [sym_val_list] = STATE(757), + [sym_val_record] = STATE(757), + [sym_val_table] = STATE(757), + [sym_val_closure] = STATE(757), + [sym_unquoted] = STATE(734), + [sym__unquoted_anonymous_prefix] = STATE(10568), + [sym_comment] = STATE(1794), + [anon_sym_LBRACK] = ACTIONS(5305), + [anon_sym_LPAREN] = ACTIONS(5307), + [anon_sym_DOLLAR] = ACTIONS(5309), + [anon_sym_DASH] = ACTIONS(5311), + [anon_sym_LBRACE] = ACTIONS(5313), + [anon_sym_DOT_DOT] = ACTIONS(5315), + [anon_sym_not] = ACTIONS(5317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5319), + [anon_sym_DOT_DOT_LT] = ACTIONS(5319), + [anon_sym_null] = ACTIONS(5321), + [anon_sym_true] = ACTIONS(5323), + [anon_sym_false] = ACTIONS(5323), + [aux_sym__val_number_decimal_token1] = ACTIONS(5325), + [aux_sym__val_number_decimal_token2] = ACTIONS(5327), + [anon_sym_DOT2] = ACTIONS(5329), + [aux_sym__val_number_decimal_token3] = ACTIONS(5331), + [aux_sym__val_number_token1] = ACTIONS(5333), + [aux_sym__val_number_token2] = ACTIONS(5333), + [aux_sym__val_number_token3] = ACTIONS(5333), + [aux_sym__val_number_token4] = ACTIONS(5335), + [aux_sym__val_number_token5] = ACTIONS(5335), + [aux_sym__val_number_token6] = ACTIONS(5335), + [anon_sym_0b] = ACTIONS(5337), + [anon_sym_0o] = ACTIONS(5339), + [anon_sym_0x] = ACTIONS(5339), + [sym_val_date] = ACTIONS(5341), + [anon_sym_DQUOTE] = ACTIONS(5343), + [sym__str_single_quotes] = ACTIONS(5345), + [sym__str_back_ticks] = ACTIONS(5345), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5347), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5349), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5351), [anon_sym_POUND] = ACTIONS(3), }, - [1595] = { - [sym_cell_path] = STATE(2428), - [sym_path] = STATE(1497), - [sym_comment] = STATE(1595), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_COMMA] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_DOLLAR] = ACTIONS(997), - [anon_sym_GT] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_in] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(997), - [anon_sym_RBRACE] = ACTIONS(997), - [anon_sym__] = ACTIONS(995), - [anon_sym_DOT_DOT] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_STAR_STAR] = ACTIONS(997), - [anon_sym_PLUS_PLUS] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(995), - [anon_sym_mod] = ACTIONS(997), - [anon_sym_SLASH_SLASH] = ACTIONS(997), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_bit_DASHshl] = ACTIONS(997), - [anon_sym_bit_DASHshr] = ACTIONS(997), - [anon_sym_EQ_EQ] = ACTIONS(997), - [anon_sym_BANG_EQ] = ACTIONS(997), - [anon_sym_LT2] = ACTIONS(995), - [anon_sym_LT_EQ] = ACTIONS(997), - [anon_sym_GT_EQ] = ACTIONS(997), - [anon_sym_not_DASHin] = ACTIONS(997), - [anon_sym_starts_DASHwith] = ACTIONS(997), - [anon_sym_ends_DASHwith] = ACTIONS(997), - [anon_sym_EQ_TILDE] = ACTIONS(997), - [anon_sym_BANG_TILDE] = ACTIONS(997), - [anon_sym_bit_DASHand] = ACTIONS(997), - [anon_sym_bit_DASHxor] = ACTIONS(997), - [anon_sym_bit_DASHor] = ACTIONS(997), - [anon_sym_and] = ACTIONS(997), - [anon_sym_xor] = ACTIONS(997), - [anon_sym_or] = ACTIONS(997), - [anon_sym_DOT] = ACTIONS(4585), - [anon_sym_DOT_DOT_EQ] = ACTIONS(997), - [anon_sym_DOT_DOT_LT] = ACTIONS(997), - [anon_sym_null] = ACTIONS(997), - [anon_sym_true] = ACTIONS(997), - [anon_sym_false] = ACTIONS(997), - [aux_sym__val_number_decimal_token1] = ACTIONS(995), - [aux_sym__val_number_decimal_token2] = ACTIONS(997), - [anon_sym_DOT2] = ACTIONS(995), - [aux_sym__val_number_decimal_token3] = ACTIONS(997), - [aux_sym__val_number_token1] = ACTIONS(997), - [aux_sym__val_number_token2] = ACTIONS(997), - [aux_sym__val_number_token3] = ACTIONS(997), - [aux_sym__val_number_token4] = ACTIONS(997), - [aux_sym__val_number_token5] = ACTIONS(997), - [aux_sym__val_number_token6] = ACTIONS(997), - [anon_sym_0b] = ACTIONS(995), - [anon_sym_0o] = ACTIONS(995), - [anon_sym_0x] = ACTIONS(995), - [sym_val_date] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(997), - [sym__str_single_quotes] = ACTIONS(997), - [sym__str_back_ticks] = ACTIONS(997), - [anon_sym_err_GT] = ACTIONS(997), - [anon_sym_out_GT] = ACTIONS(997), - [anon_sym_e_GT] = ACTIONS(997), - [anon_sym_o_GT] = ACTIONS(997), - [anon_sym_err_PLUSout_GT] = ACTIONS(997), - [anon_sym_out_PLUSerr_GT] = ACTIONS(997), - [anon_sym_o_PLUSe_GT] = ACTIONS(997), - [anon_sym_e_PLUSo_GT] = ACTIONS(997), - [aux_sym_unquoted_token1] = ACTIONS(995), + [1795] = { + [sym_expr_unary] = STATE(732), + [sym__expr_unary_minus] = STATE(730), + [sym_expr_binary] = STATE(732), + [sym__expr_binary_expression] = STATE(748), + [sym_expr_parenthesized] = STATE(732), + [sym__val_range] = STATE(10198), + [sym__value] = STATE(732), + [sym_val_nothing] = STATE(757), + [sym_val_bool] = STATE(607), + [sym_val_variable] = STATE(757), + [sym__var] = STATE(564), + [sym_val_number] = STATE(757), + [sym__val_number_decimal] = STATE(508), + [sym__val_number] = STATE(695), + [sym_val_duration] = STATE(757), + [sym_val_filesize] = STATE(757), + [sym_val_binary] = STATE(757), + [sym_val_string] = STATE(757), + [sym__str_double_quotes] = STATE(693), + [sym_val_interpolated] = STATE(757), + [sym__inter_single_quotes] = STATE(710), + [sym__inter_double_quotes] = STATE(711), + [sym_val_list] = STATE(757), + [sym_val_record] = STATE(757), + [sym_val_table] = STATE(757), + [sym_val_closure] = STATE(757), + [sym_unquoted] = STATE(735), + [sym__unquoted_anonymous_prefix] = STATE(10568), + [sym_comment] = STATE(1795), + [anon_sym_LBRACK] = ACTIONS(5305), + [anon_sym_LPAREN] = ACTIONS(5307), + [anon_sym_DOLLAR] = ACTIONS(5309), + [anon_sym_DASH] = ACTIONS(5311), + [anon_sym_LBRACE] = ACTIONS(5313), + [anon_sym_DOT_DOT] = ACTIONS(5315), + [anon_sym_not] = ACTIONS(5317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5319), + [anon_sym_DOT_DOT_LT] = ACTIONS(5319), + [anon_sym_null] = ACTIONS(5321), + [anon_sym_true] = ACTIONS(5323), + [anon_sym_false] = ACTIONS(5323), + [aux_sym__val_number_decimal_token1] = ACTIONS(5325), + [aux_sym__val_number_decimal_token2] = ACTIONS(5327), + [anon_sym_DOT2] = ACTIONS(5329), + [aux_sym__val_number_decimal_token3] = ACTIONS(5331), + [aux_sym__val_number_token1] = ACTIONS(5333), + [aux_sym__val_number_token2] = ACTIONS(5333), + [aux_sym__val_number_token3] = ACTIONS(5333), + [aux_sym__val_number_token4] = ACTIONS(5335), + [aux_sym__val_number_token5] = ACTIONS(5335), + [aux_sym__val_number_token6] = ACTIONS(5335), + [anon_sym_0b] = ACTIONS(5337), + [anon_sym_0o] = ACTIONS(5339), + [anon_sym_0x] = ACTIONS(5339), + [sym_val_date] = ACTIONS(5341), + [anon_sym_DQUOTE] = ACTIONS(5343), + [sym__str_single_quotes] = ACTIONS(5345), + [sym__str_back_ticks] = ACTIONS(5345), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5347), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5349), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5351), [anon_sym_POUND] = ACTIONS(3), }, - [1596] = { - [sym_comment] = STATE(1596), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_COMMA] = ACTIONS(959), - [anon_sym_RBRACK] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH_DASH] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(959), - [anon_sym_PLUS_PLUS] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(959), - [anon_sym_SLASH_SLASH] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(959), - [anon_sym_bit_DASHshr] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(959), - [anon_sym_BANG_EQ] = ACTIONS(959), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(959), - [anon_sym_GT_EQ] = ACTIONS(959), - [anon_sym_not_DASHin] = ACTIONS(959), - [anon_sym_starts_DASHwith] = ACTIONS(959), - [anon_sym_ends_DASHwith] = ACTIONS(959), - [anon_sym_EQ_TILDE] = ACTIONS(959), - [anon_sym_BANG_TILDE] = ACTIONS(959), - [anon_sym_bit_DASHand] = ACTIONS(959), - [anon_sym_bit_DASHxor] = ACTIONS(959), - [anon_sym_bit_DASHor] = ACTIONS(959), - [anon_sym_and] = ACTIONS(959), - [anon_sym_xor] = ACTIONS(959), - [anon_sym_or] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_DOT_DOT_LT] = ACTIONS(959), - [anon_sym_null] = ACTIONS(959), - [anon_sym_true] = ACTIONS(959), - [anon_sym_false] = ACTIONS(959), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(959), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(959), - [aux_sym__val_number_token1] = ACTIONS(959), - [aux_sym__val_number_token2] = ACTIONS(959), - [aux_sym__val_number_token3] = ACTIONS(959), - [aux_sym__val_number_token4] = ACTIONS(959), - [aux_sym__val_number_token5] = ACTIONS(959), - [aux_sym__val_number_token6] = ACTIONS(959), - [anon_sym_0b] = ACTIONS(959), - [anon_sym_0o] = ACTIONS(959), - [anon_sym_0x] = ACTIONS(959), - [sym_val_date] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [sym__str_single_quotes] = ACTIONS(959), - [sym__str_back_ticks] = ACTIONS(959), - [sym__entry_separator] = ACTIONS(961), - [anon_sym_err_GT] = ACTIONS(959), - [anon_sym_out_GT] = ACTIONS(959), - [anon_sym_e_GT] = ACTIONS(959), - [anon_sym_o_GT] = ACTIONS(959), - [anon_sym_err_PLUSout_GT] = ACTIONS(959), - [anon_sym_out_PLUSerr_GT] = ACTIONS(959), - [anon_sym_o_PLUSe_GT] = ACTIONS(959), - [anon_sym_e_PLUSo_GT] = ACTIONS(959), - [aux_sym_unquoted_token5] = ACTIONS(2577), - [aux_sym__unquoted_in_list_token1] = ACTIONS(959), - [anon_sym_POUND] = ACTIONS(113), + [1796] = { + [sym_expr_unary] = STATE(732), + [sym__expr_unary_minus] = STATE(730), + [sym_expr_binary] = STATE(732), + [sym__expr_binary_expression] = STATE(749), + [sym_expr_parenthesized] = STATE(732), + [sym__val_range] = STATE(10198), + [sym__value] = STATE(732), + [sym_val_nothing] = STATE(757), + [sym_val_bool] = STATE(607), + [sym_val_variable] = STATE(757), + [sym__var] = STATE(564), + [sym_val_number] = STATE(757), + [sym__val_number_decimal] = STATE(508), + [sym__val_number] = STATE(695), + [sym_val_duration] = STATE(757), + [sym_val_filesize] = STATE(757), + [sym_val_binary] = STATE(757), + [sym_val_string] = STATE(757), + [sym__str_double_quotes] = STATE(693), + [sym_val_interpolated] = STATE(757), + [sym__inter_single_quotes] = STATE(710), + [sym__inter_double_quotes] = STATE(711), + [sym_val_list] = STATE(757), + [sym_val_record] = STATE(757), + [sym_val_table] = STATE(757), + [sym_val_closure] = STATE(757), + [sym_unquoted] = STATE(736), + [sym__unquoted_anonymous_prefix] = STATE(10568), + [sym_comment] = STATE(1796), + [anon_sym_LBRACK] = ACTIONS(5305), + [anon_sym_LPAREN] = ACTIONS(5307), + [anon_sym_DOLLAR] = ACTIONS(5309), + [anon_sym_DASH] = ACTIONS(5311), + [anon_sym_LBRACE] = ACTIONS(5313), + [anon_sym_DOT_DOT] = ACTIONS(5315), + [anon_sym_not] = ACTIONS(5317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5319), + [anon_sym_DOT_DOT_LT] = ACTIONS(5319), + [anon_sym_null] = ACTIONS(5321), + [anon_sym_true] = ACTIONS(5323), + [anon_sym_false] = ACTIONS(5323), + [aux_sym__val_number_decimal_token1] = ACTIONS(5325), + [aux_sym__val_number_decimal_token2] = ACTIONS(5327), + [anon_sym_DOT2] = ACTIONS(5329), + [aux_sym__val_number_decimal_token3] = ACTIONS(5331), + [aux_sym__val_number_token1] = ACTIONS(5333), + [aux_sym__val_number_token2] = ACTIONS(5333), + [aux_sym__val_number_token3] = ACTIONS(5333), + [aux_sym__val_number_token4] = ACTIONS(5335), + [aux_sym__val_number_token5] = ACTIONS(5335), + [aux_sym__val_number_token6] = ACTIONS(5335), + [anon_sym_0b] = ACTIONS(5337), + [anon_sym_0o] = ACTIONS(5339), + [anon_sym_0x] = ACTIONS(5339), + [sym_val_date] = ACTIONS(5341), + [anon_sym_DQUOTE] = ACTIONS(5343), + [sym__str_single_quotes] = ACTIONS(5345), + [sym__str_back_ticks] = ACTIONS(5345), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5347), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5349), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5351), + [anon_sym_POUND] = ACTIONS(3), }, - [1597] = { - [sym_comment] = STATE(1597), - [anon_sym_LBRACK] = ACTIONS(938), - [anon_sym_COMMA] = ACTIONS(938), - [anon_sym_LPAREN] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(938), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(938), - [anon_sym__] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_STAR_STAR] = ACTIONS(938), - [anon_sym_PLUS_PLUS] = ACTIONS(938), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(938), - [anon_sym_SLASH_SLASH] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(938), - [anon_sym_bit_DASHshr] = ACTIONS(938), - [anon_sym_EQ_EQ] = ACTIONS(938), - [anon_sym_BANG_EQ] = ACTIONS(938), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(938), - [anon_sym_GT_EQ] = ACTIONS(938), - [anon_sym_not_DASHin] = ACTIONS(938), - [anon_sym_starts_DASHwith] = ACTIONS(938), - [anon_sym_ends_DASHwith] = ACTIONS(938), - [anon_sym_EQ_TILDE] = ACTIONS(938), - [anon_sym_BANG_TILDE] = ACTIONS(938), - [anon_sym_bit_DASHand] = ACTIONS(938), - [anon_sym_bit_DASHxor] = ACTIONS(938), - [anon_sym_bit_DASHor] = ACTIONS(938), - [anon_sym_and] = ACTIONS(938), - [anon_sym_xor] = ACTIONS(938), - [anon_sym_or] = ACTIONS(938), - [anon_sym_DOT_DOT_EQ] = ACTIONS(938), - [anon_sym_DOT_DOT_LT] = ACTIONS(938), - [aux_sym__immediate_decimal_token1] = ACTIONS(4981), - [anon_sym_null] = ACTIONS(938), - [anon_sym_true] = ACTIONS(938), - [anon_sym_false] = ACTIONS(938), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(938), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(938), - [aux_sym__val_number_token1] = ACTIONS(938), - [aux_sym__val_number_token2] = ACTIONS(938), - [aux_sym__val_number_token3] = ACTIONS(938), - [aux_sym__val_number_token4] = ACTIONS(938), - [aux_sym__val_number_token5] = ACTIONS(938), - [aux_sym__val_number_token6] = ACTIONS(938), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(938), - [sym__str_single_quotes] = ACTIONS(938), - [sym__str_back_ticks] = ACTIONS(938), - [anon_sym_err_GT] = ACTIONS(938), - [anon_sym_out_GT] = ACTIONS(938), - [anon_sym_e_GT] = ACTIONS(938), - [anon_sym_o_GT] = ACTIONS(938), - [anon_sym_err_PLUSout_GT] = ACTIONS(938), - [anon_sym_out_PLUSerr_GT] = ACTIONS(938), - [anon_sym_o_PLUSe_GT] = ACTIONS(938), - [anon_sym_e_PLUSo_GT] = ACTIONS(938), - [aux_sym_unquoted_token1] = ACTIONS(936), - [aux_sym_unquoted_token2] = ACTIONS(4983), + [1797] = { + [sym_expr_unary] = STATE(732), + [sym__expr_unary_minus] = STATE(730), + [sym_expr_binary] = STATE(732), + [sym__expr_binary_expression] = STATE(750), + [sym_expr_parenthesized] = STATE(732), + [sym__val_range] = STATE(10198), + [sym__value] = STATE(732), + [sym_val_nothing] = STATE(757), + [sym_val_bool] = STATE(607), + [sym_val_variable] = STATE(757), + [sym__var] = STATE(564), + [sym_val_number] = STATE(757), + [sym__val_number_decimal] = STATE(508), + [sym__val_number] = STATE(695), + [sym_val_duration] = STATE(757), + [sym_val_filesize] = STATE(757), + [sym_val_binary] = STATE(757), + [sym_val_string] = STATE(757), + [sym__str_double_quotes] = STATE(693), + [sym_val_interpolated] = STATE(757), + [sym__inter_single_quotes] = STATE(710), + [sym__inter_double_quotes] = STATE(711), + [sym_val_list] = STATE(757), + [sym_val_record] = STATE(757), + [sym_val_table] = STATE(757), + [sym_val_closure] = STATE(757), + [sym_unquoted] = STATE(737), + [sym__unquoted_anonymous_prefix] = STATE(10568), + [sym_comment] = STATE(1797), + [anon_sym_LBRACK] = ACTIONS(5305), + [anon_sym_LPAREN] = ACTIONS(5307), + [anon_sym_DOLLAR] = ACTIONS(5309), + [anon_sym_DASH] = ACTIONS(5311), + [anon_sym_LBRACE] = ACTIONS(5313), + [anon_sym_DOT_DOT] = ACTIONS(5315), + [anon_sym_not] = ACTIONS(5317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5319), + [anon_sym_DOT_DOT_LT] = ACTIONS(5319), + [anon_sym_null] = ACTIONS(5321), + [anon_sym_true] = ACTIONS(5323), + [anon_sym_false] = ACTIONS(5323), + [aux_sym__val_number_decimal_token1] = ACTIONS(5325), + [aux_sym__val_number_decimal_token2] = ACTIONS(5327), + [anon_sym_DOT2] = ACTIONS(5329), + [aux_sym__val_number_decimal_token3] = ACTIONS(5331), + [aux_sym__val_number_token1] = ACTIONS(5333), + [aux_sym__val_number_token2] = ACTIONS(5333), + [aux_sym__val_number_token3] = ACTIONS(5333), + [aux_sym__val_number_token4] = ACTIONS(5335), + [aux_sym__val_number_token5] = ACTIONS(5335), + [aux_sym__val_number_token6] = ACTIONS(5335), + [anon_sym_0b] = ACTIONS(5337), + [anon_sym_0o] = ACTIONS(5339), + [anon_sym_0x] = ACTIONS(5339), + [sym_val_date] = ACTIONS(5341), + [anon_sym_DQUOTE] = ACTIONS(5343), + [sym__str_single_quotes] = ACTIONS(5345), + [sym__str_back_ticks] = ACTIONS(5345), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5347), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5349), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5351), [anon_sym_POUND] = ACTIONS(3), }, - [1598] = { - [sym_comment] = STATE(1598), - [ts_builtin_sym_end] = ACTIONS(2439), - [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), - [anon_sym_SEMI] = ACTIONS(2437), - [sym_cmd_identifier] = ACTIONS(2437), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_DASH_DASH] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_as] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_not] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [aux_sym__immediate_decimal_token1] = ACTIONS(4985), - [aux_sym__immediate_decimal_token2] = ACTIONS(4987), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [anon_sym_DOT2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2437), - [anon_sym_0o] = ACTIONS(2437), - [anon_sym_0x] = ACTIONS(2437), - [sym_val_date] = 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_CARET] = ACTIONS(2437), - [anon_sym_POUND] = ACTIONS(113), + [1798] = { + [sym_expr_unary] = STATE(732), + [sym__expr_unary_minus] = STATE(730), + [sym_expr_binary] = STATE(732), + [sym__expr_binary_expression] = STATE(751), + [sym_expr_parenthesized] = STATE(732), + [sym__val_range] = STATE(10198), + [sym__value] = STATE(732), + [sym_val_nothing] = STATE(757), + [sym_val_bool] = STATE(607), + [sym_val_variable] = STATE(757), + [sym__var] = STATE(564), + [sym_val_number] = STATE(757), + [sym__val_number_decimal] = STATE(508), + [sym__val_number] = STATE(695), + [sym_val_duration] = STATE(757), + [sym_val_filesize] = STATE(757), + [sym_val_binary] = STATE(757), + [sym_val_string] = STATE(757), + [sym__str_double_quotes] = STATE(693), + [sym_val_interpolated] = STATE(757), + [sym__inter_single_quotes] = STATE(710), + [sym__inter_double_quotes] = STATE(711), + [sym_val_list] = STATE(757), + [sym_val_record] = STATE(757), + [sym_val_table] = STATE(757), + [sym_val_closure] = STATE(757), + [sym_unquoted] = STATE(738), + [sym__unquoted_anonymous_prefix] = STATE(10568), + [sym_comment] = STATE(1798), + [anon_sym_LBRACK] = ACTIONS(5305), + [anon_sym_LPAREN] = ACTIONS(5307), + [anon_sym_DOLLAR] = ACTIONS(5309), + [anon_sym_DASH] = ACTIONS(5311), + [anon_sym_LBRACE] = ACTIONS(5313), + [anon_sym_DOT_DOT] = ACTIONS(5315), + [anon_sym_not] = ACTIONS(5317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5319), + [anon_sym_DOT_DOT_LT] = ACTIONS(5319), + [anon_sym_null] = ACTIONS(5321), + [anon_sym_true] = ACTIONS(5323), + [anon_sym_false] = ACTIONS(5323), + [aux_sym__val_number_decimal_token1] = ACTIONS(5325), + [aux_sym__val_number_decimal_token2] = ACTIONS(5327), + [anon_sym_DOT2] = ACTIONS(5329), + [aux_sym__val_number_decimal_token3] = ACTIONS(5331), + [aux_sym__val_number_token1] = ACTIONS(5333), + [aux_sym__val_number_token2] = ACTIONS(5333), + [aux_sym__val_number_token3] = ACTIONS(5333), + [aux_sym__val_number_token4] = ACTIONS(5335), + [aux_sym__val_number_token5] = ACTIONS(5335), + [aux_sym__val_number_token6] = ACTIONS(5335), + [anon_sym_0b] = ACTIONS(5337), + [anon_sym_0o] = ACTIONS(5339), + [anon_sym_0x] = ACTIONS(5339), + [sym_val_date] = ACTIONS(5341), + [anon_sym_DQUOTE] = ACTIONS(5343), + [sym__str_single_quotes] = ACTIONS(5345), + [sym__str_back_ticks] = ACTIONS(5345), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5347), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5349), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5351), + [anon_sym_POUND] = ACTIONS(3), }, - [1599] = { - [sym__match_pattern_expression] = STATE(4408), - [sym__match_pattern_value] = STATE(4362), - [sym__match_pattern_list] = STATE(4365), - [sym__match_pattern_rest] = STATE(11187), - [sym__match_pattern_record] = STATE(4367), - [sym__expr_unary_minus] = STATE(4368), - [sym_expr_parenthesized] = STATE(3973), - [sym_val_range] = STATE(4362), - [sym__val_range] = STATE(10474), - [sym_val_nothing] = STATE(4371), - [sym_val_bool] = STATE(4248), - [sym_val_variable] = STATE(3974), - [sym__var] = STATE(3741), - [sym_val_number] = STATE(4371), - [sym__val_number_decimal] = STATE(3705), - [sym__val_number] = STATE(4345), - [sym_val_duration] = STATE(4371), - [sym_val_filesize] = STATE(4371), - [sym_val_binary] = STATE(4371), - [sym_val_string] = STATE(4371), - [sym__str_double_quotes] = STATE(4434), - [sym__list_item_starts_with_sign] = STATE(4508), - [sym_val_table] = STATE(4371), - [sym_short_flag] = STATE(4508), - [sym_long_flag] = STATE(4508), - [sym_long_flag_equals_value] = STATE(4347), - [sym__unquoted_in_list] = STATE(4508), - [sym__unquoted_anonymous_prefix] = STATE(11104), - [sym_comment] = STATE(1599), - [aux_sym__match_pattern_list_repeat1] = STATE(1867), - [anon_sym_LBRACK] = ACTIONS(4989), - [anon_sym_RBRACK] = ACTIONS(4991), - [anon_sym_LPAREN] = ACTIONS(3399), - [anon_sym_DOLLAR] = ACTIONS(4745), - [anon_sym_DASH_DASH] = ACTIONS(3403), - [anon_sym_DASH] = ACTIONS(4747), - [anon_sym_LBRACE] = ACTIONS(4749), - [anon_sym_DOT_DOT] = ACTIONS(4993), - [anon_sym_PLUS] = ACTIONS(4753), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4755), - [anon_sym_DOT_DOT_LT] = ACTIONS(4755), - [anon_sym_null] = ACTIONS(4757), - [anon_sym_true] = ACTIONS(4759), - [anon_sym_false] = ACTIONS(4759), - [aux_sym__val_number_decimal_token1] = ACTIONS(4761), - [aux_sym__val_number_decimal_token2] = ACTIONS(4763), - [anon_sym_DOT2] = ACTIONS(4765), - [aux_sym__val_number_decimal_token3] = ACTIONS(4767), - [aux_sym__val_number_token1] = ACTIONS(3425), - [aux_sym__val_number_token2] = ACTIONS(3425), - [aux_sym__val_number_token3] = ACTIONS(3425), - [aux_sym__val_number_token4] = ACTIONS(4769), - [aux_sym__val_number_token5] = ACTIONS(4769), - [aux_sym__val_number_token6] = ACTIONS(4769), - [anon_sym_0b] = ACTIONS(3429), - [anon_sym_0o] = ACTIONS(3431), - [anon_sym_0x] = ACTIONS(3431), - [sym_val_date] = ACTIONS(4771), - [anon_sym_DQUOTE] = ACTIONS(3435), - [sym__str_single_quotes] = ACTIONS(3437), - [sym__str_back_ticks] = ACTIONS(3437), - [anon_sym_err_GT] = ACTIONS(1699), - [anon_sym_out_GT] = ACTIONS(1699), - [anon_sym_e_GT] = ACTIONS(1699), - [anon_sym_o_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT] = ACTIONS(1699), - [aux_sym__unquoted_in_list_token1] = ACTIONS(4773), + [1799] = { + [sym_expr_unary] = STATE(732), + [sym__expr_unary_minus] = STATE(730), + [sym_expr_binary] = STATE(732), + [sym__expr_binary_expression] = STATE(752), + [sym_expr_parenthesized] = STATE(732), + [sym__val_range] = STATE(10198), + [sym__value] = STATE(732), + [sym_val_nothing] = STATE(757), + [sym_val_bool] = STATE(607), + [sym_val_variable] = STATE(757), + [sym__var] = STATE(564), + [sym_val_number] = STATE(757), + [sym__val_number_decimal] = STATE(508), + [sym__val_number] = STATE(695), + [sym_val_duration] = STATE(757), + [sym_val_filesize] = STATE(757), + [sym_val_binary] = STATE(757), + [sym_val_string] = STATE(757), + [sym__str_double_quotes] = STATE(693), + [sym_val_interpolated] = STATE(757), + [sym__inter_single_quotes] = STATE(710), + [sym__inter_double_quotes] = STATE(711), + [sym_val_list] = STATE(757), + [sym_val_record] = STATE(757), + [sym_val_table] = STATE(757), + [sym_val_closure] = STATE(757), + [sym_unquoted] = STATE(739), + [sym__unquoted_anonymous_prefix] = STATE(10568), + [sym_comment] = STATE(1799), + [anon_sym_LBRACK] = ACTIONS(5305), + [anon_sym_LPAREN] = ACTIONS(5307), + [anon_sym_DOLLAR] = ACTIONS(5309), + [anon_sym_DASH] = ACTIONS(5311), + [anon_sym_LBRACE] = ACTIONS(5313), + [anon_sym_DOT_DOT] = ACTIONS(5315), + [anon_sym_not] = ACTIONS(5317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5319), + [anon_sym_DOT_DOT_LT] = ACTIONS(5319), + [anon_sym_null] = ACTIONS(5321), + [anon_sym_true] = ACTIONS(5323), + [anon_sym_false] = ACTIONS(5323), + [aux_sym__val_number_decimal_token1] = ACTIONS(5325), + [aux_sym__val_number_decimal_token2] = ACTIONS(5327), + [anon_sym_DOT2] = ACTIONS(5329), + [aux_sym__val_number_decimal_token3] = ACTIONS(5331), + [aux_sym__val_number_token1] = ACTIONS(5333), + [aux_sym__val_number_token2] = ACTIONS(5333), + [aux_sym__val_number_token3] = ACTIONS(5333), + [aux_sym__val_number_token4] = ACTIONS(5335), + [aux_sym__val_number_token5] = ACTIONS(5335), + [aux_sym__val_number_token6] = ACTIONS(5335), + [anon_sym_0b] = ACTIONS(5337), + [anon_sym_0o] = ACTIONS(5339), + [anon_sym_0x] = ACTIONS(5339), + [sym_val_date] = ACTIONS(5341), + [anon_sym_DQUOTE] = ACTIONS(5343), + [sym__str_single_quotes] = ACTIONS(5345), + [sym__str_back_ticks] = ACTIONS(5345), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5347), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5349), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5351), [anon_sym_POUND] = ACTIONS(3), }, - [1600] = { - [sym_comment] = STATE(1600), - [ts_builtin_sym_end] = ACTIONS(1111), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_alias] = ACTIONS(1109), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_let_DASHenv] = ACTIONS(1109), - [anon_sym_mut] = ACTIONS(1109), - [anon_sym_const] = ACTIONS(1109), - [anon_sym_SEMI] = ACTIONS(1109), - [sym_cmd_identifier] = ACTIONS(1109), - [anon_sym_LF] = ACTIONS(1111), - [anon_sym_def] = ACTIONS(1109), - [anon_sym_export_DASHenv] = ACTIONS(1109), - [anon_sym_extern] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_use] = ACTIONS(1109), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_DOLLAR] = ACTIONS(1109), - [anon_sym_error] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_break] = ACTIONS(1109), - [anon_sym_continue] = ACTIONS(1109), - [anon_sym_for] = ACTIONS(1109), - [anon_sym_loop] = ACTIONS(1109), - [anon_sym_while] = ACTIONS(1109), - [anon_sym_do] = ACTIONS(1109), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_DOT_DOT] = ACTIONS(1109), - [anon_sym_try] = ACTIONS(1109), - [anon_sym_return] = ACTIONS(1109), - [anon_sym_source] = ACTIONS(1109), - [anon_sym_source_DASHenv] = ACTIONS(1109), - [anon_sym_register] = ACTIONS(1109), - [anon_sym_hide] = ACTIONS(1109), - [anon_sym_hide_DASHenv] = ACTIONS(1109), - [anon_sym_overlay] = ACTIONS(1109), - [anon_sym_where] = ACTIONS(1109), - [anon_sym_not] = ACTIONS(1109), - [anon_sym_DOT_DOT2] = ACTIONS(1109), - [anon_sym_DOT] = ACTIONS(1109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1109), - [anon_sym_DOT_DOT_LT] = ACTIONS(1109), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1111), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1111), - [anon_sym_null] = ACTIONS(1109), - [anon_sym_true] = ACTIONS(1109), - [anon_sym_false] = ACTIONS(1109), - [aux_sym__val_number_decimal_token1] = ACTIONS(1109), - [aux_sym__val_number_decimal_token2] = ACTIONS(1109), - [anon_sym_DOT2] = ACTIONS(1109), - [aux_sym__val_number_decimal_token3] = ACTIONS(1109), - [aux_sym__val_number_token1] = ACTIONS(1109), - [aux_sym__val_number_token2] = ACTIONS(1109), - [aux_sym__val_number_token3] = ACTIONS(1109), - [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(1109), - [anon_sym_0o] = ACTIONS(1109), - [anon_sym_0x] = ACTIONS(1109), - [sym_val_date] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(1109), - [sym__str_single_quotes] = ACTIONS(1109), - [sym__str_back_ticks] = ACTIONS(1109), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1109), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1109), - [anon_sym_CARET] = ACTIONS(1109), - [anon_sym_POUND] = ACTIONS(113), + [1800] = { + [sym_expr_unary] = STATE(732), + [sym__expr_unary_minus] = STATE(730), + [sym_expr_binary] = STATE(732), + [sym__expr_binary_expression] = STATE(753), + [sym_expr_parenthesized] = STATE(732), + [sym__val_range] = STATE(10198), + [sym__value] = STATE(732), + [sym_val_nothing] = STATE(757), + [sym_val_bool] = STATE(607), + [sym_val_variable] = STATE(757), + [sym__var] = STATE(564), + [sym_val_number] = STATE(757), + [sym__val_number_decimal] = STATE(508), + [sym__val_number] = STATE(695), + [sym_val_duration] = STATE(757), + [sym_val_filesize] = STATE(757), + [sym_val_binary] = STATE(757), + [sym_val_string] = STATE(757), + [sym__str_double_quotes] = STATE(693), + [sym_val_interpolated] = STATE(757), + [sym__inter_single_quotes] = STATE(710), + [sym__inter_double_quotes] = STATE(711), + [sym_val_list] = STATE(757), + [sym_val_record] = STATE(757), + [sym_val_table] = STATE(757), + [sym_val_closure] = STATE(757), + [sym_unquoted] = STATE(740), + [sym__unquoted_anonymous_prefix] = STATE(10568), + [sym_comment] = STATE(1800), + [anon_sym_LBRACK] = ACTIONS(5305), + [anon_sym_LPAREN] = ACTIONS(5307), + [anon_sym_DOLLAR] = ACTIONS(5309), + [anon_sym_DASH] = ACTIONS(5311), + [anon_sym_LBRACE] = ACTIONS(5313), + [anon_sym_DOT_DOT] = ACTIONS(5315), + [anon_sym_not] = ACTIONS(5317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5319), + [anon_sym_DOT_DOT_LT] = ACTIONS(5319), + [anon_sym_null] = ACTIONS(5321), + [anon_sym_true] = ACTIONS(5323), + [anon_sym_false] = ACTIONS(5323), + [aux_sym__val_number_decimal_token1] = ACTIONS(5325), + [aux_sym__val_number_decimal_token2] = ACTIONS(5327), + [anon_sym_DOT2] = ACTIONS(5329), + [aux_sym__val_number_decimal_token3] = ACTIONS(5331), + [aux_sym__val_number_token1] = ACTIONS(5333), + [aux_sym__val_number_token2] = ACTIONS(5333), + [aux_sym__val_number_token3] = ACTIONS(5333), + [aux_sym__val_number_token4] = ACTIONS(5335), + [aux_sym__val_number_token5] = ACTIONS(5335), + [aux_sym__val_number_token6] = ACTIONS(5335), + [anon_sym_0b] = ACTIONS(5337), + [anon_sym_0o] = ACTIONS(5339), + [anon_sym_0x] = ACTIONS(5339), + [sym_val_date] = ACTIONS(5341), + [anon_sym_DQUOTE] = ACTIONS(5343), + [sym__str_single_quotes] = ACTIONS(5345), + [sym__str_back_ticks] = ACTIONS(5345), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5347), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5349), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5351), + [anon_sym_POUND] = ACTIONS(3), }, - [1601] = { - [sym__expr_parenthesized_immediate] = STATE(10656), - [sym_comment] = STATE(1601), - [ts_builtin_sym_end] = ACTIONS(4293), - [anon_sym_export] = ACTIONS(4291), - [anon_sym_alias] = ACTIONS(4291), - [anon_sym_let] = ACTIONS(4291), - [anon_sym_let_DASHenv] = ACTIONS(4291), - [anon_sym_mut] = ACTIONS(4291), - [anon_sym_const] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4291), - [sym_cmd_identifier] = ACTIONS(4291), - [anon_sym_LF] = ACTIONS(4293), - [anon_sym_def] = ACTIONS(4291), - [anon_sym_export_DASHenv] = ACTIONS(4291), - [anon_sym_extern] = ACTIONS(4291), - [anon_sym_module] = ACTIONS(4291), - [anon_sym_use] = ACTIONS(4291), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_LPAREN] = ACTIONS(4291), - [anon_sym_DOLLAR] = ACTIONS(4291), - [anon_sym_error] = ACTIONS(4291), - [anon_sym_DASH_DASH] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_break] = ACTIONS(4291), - [anon_sym_continue] = ACTIONS(4291), - [anon_sym_for] = ACTIONS(4291), - [anon_sym_loop] = ACTIONS(4291), - [anon_sym_while] = ACTIONS(4291), - [anon_sym_do] = ACTIONS(4291), - [anon_sym_if] = ACTIONS(4291), - [anon_sym_match] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4291), - [anon_sym_try] = ACTIONS(4291), - [anon_sym_return] = ACTIONS(4291), - [anon_sym_source] = ACTIONS(4291), - [anon_sym_source_DASHenv] = ACTIONS(4291), - [anon_sym_register] = ACTIONS(4291), - [anon_sym_hide] = ACTIONS(4291), - [anon_sym_hide_DASHenv] = ACTIONS(4291), - [anon_sym_overlay] = ACTIONS(4291), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(4291), - [anon_sym_not] = ACTIONS(4291), - [anon_sym_LPAREN2] = ACTIONS(2397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4291), - [anon_sym_DOT_DOT_LT] = ACTIONS(4291), - [anon_sym_null] = ACTIONS(4291), - [anon_sym_true] = ACTIONS(4291), - [anon_sym_false] = ACTIONS(4291), - [aux_sym__val_number_decimal_token1] = ACTIONS(4291), - [aux_sym__val_number_decimal_token2] = ACTIONS(4291), - [anon_sym_DOT2] = ACTIONS(4291), - [aux_sym__val_number_decimal_token3] = ACTIONS(4291), - [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(4291), - [aux_sym__val_number_token5] = ACTIONS(4291), - [aux_sym__val_number_token6] = ACTIONS(4291), - [anon_sym_0b] = ACTIONS(4291), - [anon_sym_0o] = ACTIONS(4291), - [anon_sym_0x] = ACTIONS(4291), - [sym_val_date] = ACTIONS(4291), - [anon_sym_DQUOTE] = ACTIONS(4291), - [sym__str_single_quotes] = ACTIONS(4291), - [sym__str_back_ticks] = ACTIONS(4291), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4291), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4291), - [anon_sym_CARET] = ACTIONS(4291), - [anon_sym_POUND] = ACTIONS(113), + [1801] = { + [sym_expr_unary] = STATE(732), + [sym__expr_unary_minus] = STATE(730), + [sym_expr_binary] = STATE(732), + [sym__expr_binary_expression] = STATE(754), + [sym_expr_parenthesized] = STATE(732), + [sym__val_range] = STATE(10198), + [sym__value] = STATE(732), + [sym_val_nothing] = STATE(757), + [sym_val_bool] = STATE(607), + [sym_val_variable] = STATE(757), + [sym__var] = STATE(564), + [sym_val_number] = STATE(757), + [sym__val_number_decimal] = STATE(508), + [sym__val_number] = STATE(695), + [sym_val_duration] = STATE(757), + [sym_val_filesize] = STATE(757), + [sym_val_binary] = STATE(757), + [sym_val_string] = STATE(757), + [sym__str_double_quotes] = STATE(693), + [sym_val_interpolated] = STATE(757), + [sym__inter_single_quotes] = STATE(710), + [sym__inter_double_quotes] = STATE(711), + [sym_val_list] = STATE(757), + [sym_val_record] = STATE(757), + [sym_val_table] = STATE(757), + [sym_val_closure] = STATE(757), + [sym_unquoted] = STATE(741), + [sym__unquoted_anonymous_prefix] = STATE(10568), + [sym_comment] = STATE(1801), + [anon_sym_LBRACK] = ACTIONS(5305), + [anon_sym_LPAREN] = ACTIONS(5307), + [anon_sym_DOLLAR] = ACTIONS(5309), + [anon_sym_DASH] = ACTIONS(5311), + [anon_sym_LBRACE] = ACTIONS(5313), + [anon_sym_DOT_DOT] = ACTIONS(5315), + [anon_sym_not] = ACTIONS(5317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5319), + [anon_sym_DOT_DOT_LT] = ACTIONS(5319), + [anon_sym_null] = ACTIONS(5321), + [anon_sym_true] = ACTIONS(5323), + [anon_sym_false] = ACTIONS(5323), + [aux_sym__val_number_decimal_token1] = ACTIONS(5325), + [aux_sym__val_number_decimal_token2] = ACTIONS(5327), + [anon_sym_DOT2] = ACTIONS(5329), + [aux_sym__val_number_decimal_token3] = ACTIONS(5331), + [aux_sym__val_number_token1] = ACTIONS(5333), + [aux_sym__val_number_token2] = ACTIONS(5333), + [aux_sym__val_number_token3] = ACTIONS(5333), + [aux_sym__val_number_token4] = ACTIONS(5335), + [aux_sym__val_number_token5] = ACTIONS(5335), + [aux_sym__val_number_token6] = ACTIONS(5335), + [anon_sym_0b] = ACTIONS(5337), + [anon_sym_0o] = ACTIONS(5339), + [anon_sym_0x] = ACTIONS(5339), + [sym_val_date] = ACTIONS(5341), + [anon_sym_DQUOTE] = ACTIONS(5343), + [sym__str_single_quotes] = ACTIONS(5345), + [sym__str_back_ticks] = ACTIONS(5345), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5347), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5349), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5351), + [anon_sym_POUND] = ACTIONS(3), }, - [1602] = { - [sym_comment] = STATE(1602), - [anon_sym_LBRACK] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(1072), - [anon_sym_RBRACK] = ACTIONS(1072), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_DOLLAR] = ACTIONS(1072), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_in] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1072), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(4995), - [anon_sym_STAR_STAR] = ACTIONS(1072), - [anon_sym_PLUS_PLUS] = ACTIONS(1072), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_mod] = ACTIONS(1072), - [anon_sym_SLASH_SLASH] = ACTIONS(1072), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_bit_DASHshl] = ACTIONS(1072), - [anon_sym_bit_DASHshr] = ACTIONS(1072), - [anon_sym_EQ_EQ] = ACTIONS(1072), - [anon_sym_BANG_EQ] = ACTIONS(1072), - [anon_sym_LT2] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1072), - [anon_sym_GT_EQ] = ACTIONS(1072), - [anon_sym_not_DASHin] = ACTIONS(1072), - [anon_sym_starts_DASHwith] = ACTIONS(1072), - [anon_sym_ends_DASHwith] = ACTIONS(1072), - [anon_sym_EQ_TILDE] = ACTIONS(1072), - [anon_sym_BANG_TILDE] = ACTIONS(1072), - [anon_sym_bit_DASHand] = ACTIONS(1072), - [anon_sym_bit_DASHxor] = ACTIONS(1072), - [anon_sym_bit_DASHor] = ACTIONS(1072), - [anon_sym_and] = ACTIONS(1072), - [anon_sym_xor] = ACTIONS(1072), - [anon_sym_or] = ACTIONS(1072), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1072), - [anon_sym_DOT_DOT_LT] = ACTIONS(1072), - [anon_sym_null] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1072), - [anon_sym_false] = ACTIONS(1072), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1072), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1072), - [aux_sym__val_number_token1] = ACTIONS(1072), - [aux_sym__val_number_token2] = ACTIONS(1072), - [aux_sym__val_number_token3] = ACTIONS(1072), - [aux_sym__val_number_token4] = ACTIONS(1072), - [aux_sym__val_number_token5] = ACTIONS(1072), - [aux_sym__val_number_token6] = ACTIONS(1072), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1072), - [anon_sym_DQUOTE] = ACTIONS(1072), - [sym__str_single_quotes] = ACTIONS(1072), - [sym__str_back_ticks] = ACTIONS(1072), - [anon_sym_err_GT] = ACTIONS(1072), - [anon_sym_out_GT] = ACTIONS(1072), - [anon_sym_e_GT] = ACTIONS(1072), - [anon_sym_o_GT] = ACTIONS(1072), - [anon_sym_err_PLUSout_GT] = ACTIONS(1072), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1072), - [anon_sym_o_PLUSe_GT] = ACTIONS(1072), - [anon_sym_e_PLUSo_GT] = ACTIONS(1072), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1070), + [1802] = { + [sym_expr_unary] = STATE(732), + [sym__expr_unary_minus] = STATE(730), + [sym_expr_binary] = STATE(732), + [sym__expr_binary_expression] = STATE(755), + [sym_expr_parenthesized] = STATE(732), + [sym__val_range] = STATE(10198), + [sym__value] = STATE(732), + [sym_val_nothing] = STATE(757), + [sym_val_bool] = STATE(607), + [sym_val_variable] = STATE(757), + [sym__var] = STATE(564), + [sym_val_number] = STATE(757), + [sym__val_number_decimal] = STATE(508), + [sym__val_number] = STATE(695), + [sym_val_duration] = STATE(757), + [sym_val_filesize] = STATE(757), + [sym_val_binary] = STATE(757), + [sym_val_string] = STATE(757), + [sym__str_double_quotes] = STATE(693), + [sym_val_interpolated] = STATE(757), + [sym__inter_single_quotes] = STATE(710), + [sym__inter_double_quotes] = STATE(711), + [sym_val_list] = STATE(757), + [sym_val_record] = STATE(757), + [sym_val_table] = STATE(757), + [sym_val_closure] = STATE(757), + [sym_unquoted] = STATE(742), + [sym__unquoted_anonymous_prefix] = STATE(10568), + [sym_comment] = STATE(1802), + [anon_sym_LBRACK] = ACTIONS(5305), + [anon_sym_LPAREN] = ACTIONS(5307), + [anon_sym_DOLLAR] = ACTIONS(5309), + [anon_sym_DASH] = ACTIONS(5311), + [anon_sym_LBRACE] = ACTIONS(5313), + [anon_sym_DOT_DOT] = ACTIONS(5315), + [anon_sym_not] = ACTIONS(5317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5319), + [anon_sym_DOT_DOT_LT] = ACTIONS(5319), + [anon_sym_null] = ACTIONS(5321), + [anon_sym_true] = ACTIONS(5323), + [anon_sym_false] = ACTIONS(5323), + [aux_sym__val_number_decimal_token1] = ACTIONS(5325), + [aux_sym__val_number_decimal_token2] = ACTIONS(5327), + [anon_sym_DOT2] = ACTIONS(5329), + [aux_sym__val_number_decimal_token3] = ACTIONS(5331), + [aux_sym__val_number_token1] = ACTIONS(5333), + [aux_sym__val_number_token2] = ACTIONS(5333), + [aux_sym__val_number_token3] = ACTIONS(5333), + [aux_sym__val_number_token4] = ACTIONS(5335), + [aux_sym__val_number_token5] = ACTIONS(5335), + [aux_sym__val_number_token6] = ACTIONS(5335), + [anon_sym_0b] = ACTIONS(5337), + [anon_sym_0o] = ACTIONS(5339), + [anon_sym_0x] = ACTIONS(5339), + [sym_val_date] = ACTIONS(5341), + [anon_sym_DQUOTE] = ACTIONS(5343), + [sym__str_single_quotes] = ACTIONS(5345), + [sym__str_back_ticks] = ACTIONS(5345), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5347), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5349), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5351), [anon_sym_POUND] = ACTIONS(3), }, - [1603] = { - [sym_comment] = STATE(1603), - [anon_sym_LBRACK] = ACTIONS(1113), - [anon_sym_COMMA] = ACTIONS(1113), - [anon_sym_RBRACK] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1113), - [anon_sym_GT] = ACTIONS(1113), - [anon_sym_DASH_DASH] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_in] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_STAR_STAR] = ACTIONS(1113), - [anon_sym_PLUS_PLUS] = ACTIONS(1113), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_mod] = ACTIONS(1113), - [anon_sym_SLASH_SLASH] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_bit_DASHshl] = ACTIONS(1113), - [anon_sym_bit_DASHshr] = ACTIONS(1113), - [anon_sym_EQ_EQ] = ACTIONS(1113), - [anon_sym_BANG_EQ] = ACTIONS(1113), - [anon_sym_LT2] = ACTIONS(1113), - [anon_sym_LT_EQ] = ACTIONS(1113), - [anon_sym_GT_EQ] = ACTIONS(1113), - [anon_sym_not_DASHin] = ACTIONS(1113), - [anon_sym_starts_DASHwith] = ACTIONS(1113), - [anon_sym_ends_DASHwith] = ACTIONS(1113), - [anon_sym_EQ_TILDE] = ACTIONS(1113), - [anon_sym_BANG_TILDE] = ACTIONS(1113), - [anon_sym_bit_DASHand] = ACTIONS(1113), - [anon_sym_bit_DASHxor] = ACTIONS(1113), - [anon_sym_bit_DASHor] = ACTIONS(1113), - [anon_sym_and] = ACTIONS(1113), - [anon_sym_xor] = ACTIONS(1113), - [anon_sym_or] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1113), - [anon_sym_DOT_DOT_LT] = ACTIONS(1113), - [anon_sym_null] = ACTIONS(1113), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1113), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_decimal_token2] = ACTIONS(1113), - [anon_sym_DOT2] = ACTIONS(1113), - [aux_sym__val_number_decimal_token3] = ACTIONS(1113), - [aux_sym__val_number_token1] = ACTIONS(1113), - [aux_sym__val_number_token2] = ACTIONS(1113), - [aux_sym__val_number_token3] = ACTIONS(1113), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1113), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_0b] = ACTIONS(1113), - [anon_sym_0o] = ACTIONS(1113), - [anon_sym_0x] = ACTIONS(1113), - [sym_val_date] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym__str_single_quotes] = ACTIONS(1113), - [sym__str_back_ticks] = ACTIONS(1113), - [sym__entry_separator] = ACTIONS(1115), - [anon_sym_err_GT] = ACTIONS(1113), - [anon_sym_out_GT] = ACTIONS(1113), - [anon_sym_e_GT] = ACTIONS(1113), - [anon_sym_o_GT] = ACTIONS(1113), - [anon_sym_err_PLUSout_GT] = ACTIONS(1113), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1113), - [anon_sym_o_PLUSe_GT] = ACTIONS(1113), - [anon_sym_e_PLUSo_GT] = ACTIONS(1113), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1113), - [anon_sym_POUND] = ACTIONS(113), + [1803] = { + [sym_expr_unary] = STATE(732), + [sym__expr_unary_minus] = STATE(730), + [sym_expr_binary] = STATE(732), + [sym__expr_binary_expression] = STATE(756), + [sym_expr_parenthesized] = STATE(732), + [sym__val_range] = STATE(10198), + [sym__value] = STATE(732), + [sym_val_nothing] = STATE(757), + [sym_val_bool] = STATE(607), + [sym_val_variable] = STATE(757), + [sym__var] = STATE(564), + [sym_val_number] = STATE(757), + [sym__val_number_decimal] = STATE(508), + [sym__val_number] = STATE(695), + [sym_val_duration] = STATE(757), + [sym_val_filesize] = STATE(757), + [sym_val_binary] = STATE(757), + [sym_val_string] = STATE(757), + [sym__str_double_quotes] = STATE(693), + [sym_val_interpolated] = STATE(757), + [sym__inter_single_quotes] = STATE(710), + [sym__inter_double_quotes] = STATE(711), + [sym_val_list] = STATE(757), + [sym_val_record] = STATE(757), + [sym_val_table] = STATE(757), + [sym_val_closure] = STATE(757), + [sym_unquoted] = STATE(743), + [sym__unquoted_anonymous_prefix] = STATE(10568), + [sym_comment] = STATE(1803), + [anon_sym_LBRACK] = ACTIONS(5305), + [anon_sym_LPAREN] = ACTIONS(5307), + [anon_sym_DOLLAR] = ACTIONS(5309), + [anon_sym_DASH] = ACTIONS(5311), + [anon_sym_LBRACE] = ACTIONS(5313), + [anon_sym_DOT_DOT] = ACTIONS(5315), + [anon_sym_not] = ACTIONS(5317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5319), + [anon_sym_DOT_DOT_LT] = ACTIONS(5319), + [anon_sym_null] = ACTIONS(5321), + [anon_sym_true] = ACTIONS(5323), + [anon_sym_false] = ACTIONS(5323), + [aux_sym__val_number_decimal_token1] = ACTIONS(5325), + [aux_sym__val_number_decimal_token2] = ACTIONS(5327), + [anon_sym_DOT2] = ACTIONS(5329), + [aux_sym__val_number_decimal_token3] = ACTIONS(5331), + [aux_sym__val_number_token1] = ACTIONS(5333), + [aux_sym__val_number_token2] = ACTIONS(5333), + [aux_sym__val_number_token3] = ACTIONS(5333), + [aux_sym__val_number_token4] = ACTIONS(5335), + [aux_sym__val_number_token5] = ACTIONS(5335), + [aux_sym__val_number_token6] = ACTIONS(5335), + [anon_sym_0b] = ACTIONS(5337), + [anon_sym_0o] = ACTIONS(5339), + [anon_sym_0x] = ACTIONS(5339), + [sym_val_date] = ACTIONS(5341), + [anon_sym_DQUOTE] = ACTIONS(5343), + [sym__str_single_quotes] = ACTIONS(5345), + [sym__str_back_ticks] = ACTIONS(5345), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5347), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5349), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5351), + [anon_sym_POUND] = ACTIONS(3), }, - [1604] = { - [sym_comment] = STATE(1604), - [anon_sym_SEMI] = ACTIONS(1063), - [anon_sym_LF] = ACTIONS(1065), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_RPAREN] = ACTIONS(1063), - [anon_sym_PIPE] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_DASH_DASH] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_RBRACE] = ACTIONS(1063), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_QMARK2] = ACTIONS(1063), - [anon_sym_STAR_STAR] = ACTIONS(1063), - [anon_sym_PLUS_PLUS] = ACTIONS(1063), - [anon_sym_SLASH] = ACTIONS(1063), - [anon_sym_mod] = ACTIONS(1063), - [anon_sym_SLASH_SLASH] = ACTIONS(1063), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_bit_DASHshl] = ACTIONS(1063), - [anon_sym_bit_DASHshr] = ACTIONS(1063), - [anon_sym_EQ_EQ] = ACTIONS(1063), - [anon_sym_BANG_EQ] = ACTIONS(1063), - [anon_sym_LT2] = ACTIONS(1063), - [anon_sym_LT_EQ] = ACTIONS(1063), - [anon_sym_GT_EQ] = ACTIONS(1063), - [anon_sym_not_DASHin] = ACTIONS(1063), - [anon_sym_starts_DASHwith] = ACTIONS(1063), - [anon_sym_ends_DASHwith] = ACTIONS(1063), - [anon_sym_EQ_TILDE] = ACTIONS(1063), - [anon_sym_BANG_TILDE] = ACTIONS(1063), - [anon_sym_bit_DASHand] = ACTIONS(1063), - [anon_sym_bit_DASHxor] = ACTIONS(1063), - [anon_sym_bit_DASHor] = ACTIONS(1063), - [anon_sym_and] = ACTIONS(1063), - [anon_sym_xor] = ACTIONS(1063), - [anon_sym_or] = ACTIONS(1063), - [anon_sym_not] = ACTIONS(1063), - [anon_sym_DOT_DOT2] = ACTIONS(1063), - [anon_sym_DOT] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1063), - [anon_sym_DOT_DOT_LT] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1065), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1065), - [anon_sym_null] = ACTIONS(1063), - [anon_sym_true] = ACTIONS(1063), - [anon_sym_false] = ACTIONS(1063), - [aux_sym__val_number_decimal_token1] = ACTIONS(1063), - [aux_sym__val_number_decimal_token2] = ACTIONS(1063), - [anon_sym_DOT2] = ACTIONS(1063), - [aux_sym__val_number_decimal_token3] = ACTIONS(1063), - [aux_sym__val_number_token1] = ACTIONS(1063), - [aux_sym__val_number_token2] = ACTIONS(1063), - [aux_sym__val_number_token3] = ACTIONS(1063), - [aux_sym__val_number_token4] = ACTIONS(1063), - [aux_sym__val_number_token5] = ACTIONS(1063), - [aux_sym__val_number_token6] = ACTIONS(1063), - [anon_sym_0b] = ACTIONS(1063), - [anon_sym_0o] = ACTIONS(1063), - [anon_sym_0x] = ACTIONS(1063), - [sym_val_date] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [sym__str_single_quotes] = ACTIONS(1063), - [sym__str_back_ticks] = ACTIONS(1063), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1063), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1063), - [anon_sym_POUND] = ACTIONS(113), + [1804] = { + [sym_expr_unary] = STATE(732), + [sym__expr_unary_minus] = STATE(730), + [sym_expr_binary] = STATE(732), + [sym__expr_binary_expression] = STATE(758), + [sym_expr_parenthesized] = STATE(732), + [sym__val_range] = STATE(10198), + [sym__value] = STATE(732), + [sym_val_nothing] = STATE(757), + [sym_val_bool] = STATE(607), + [sym_val_variable] = STATE(757), + [sym__var] = STATE(564), + [sym_val_number] = STATE(757), + [sym__val_number_decimal] = STATE(508), + [sym__val_number] = STATE(695), + [sym_val_duration] = STATE(757), + [sym_val_filesize] = STATE(757), + [sym_val_binary] = STATE(757), + [sym_val_string] = STATE(757), + [sym__str_double_quotes] = STATE(693), + [sym_val_interpolated] = STATE(757), + [sym__inter_single_quotes] = STATE(710), + [sym__inter_double_quotes] = STATE(711), + [sym_val_list] = STATE(757), + [sym_val_record] = STATE(757), + [sym_val_table] = STATE(757), + [sym_val_closure] = STATE(757), + [sym_unquoted] = STATE(744), + [sym__unquoted_anonymous_prefix] = STATE(10568), + [sym_comment] = STATE(1804), + [anon_sym_LBRACK] = ACTIONS(5305), + [anon_sym_LPAREN] = ACTIONS(5307), + [anon_sym_DOLLAR] = ACTIONS(5309), + [anon_sym_DASH] = ACTIONS(5311), + [anon_sym_LBRACE] = ACTIONS(5313), + [anon_sym_DOT_DOT] = ACTIONS(5315), + [anon_sym_not] = ACTIONS(5317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5319), + [anon_sym_DOT_DOT_LT] = ACTIONS(5319), + [anon_sym_null] = ACTIONS(5321), + [anon_sym_true] = ACTIONS(5323), + [anon_sym_false] = ACTIONS(5323), + [aux_sym__val_number_decimal_token1] = ACTIONS(5325), + [aux_sym__val_number_decimal_token2] = ACTIONS(5327), + [anon_sym_DOT2] = ACTIONS(5329), + [aux_sym__val_number_decimal_token3] = ACTIONS(5331), + [aux_sym__val_number_token1] = ACTIONS(5333), + [aux_sym__val_number_token2] = ACTIONS(5333), + [aux_sym__val_number_token3] = ACTIONS(5333), + [aux_sym__val_number_token4] = ACTIONS(5335), + [aux_sym__val_number_token5] = ACTIONS(5335), + [aux_sym__val_number_token6] = ACTIONS(5335), + [anon_sym_0b] = ACTIONS(5337), + [anon_sym_0o] = ACTIONS(5339), + [anon_sym_0x] = ACTIONS(5339), + [sym_val_date] = ACTIONS(5341), + [anon_sym_DQUOTE] = ACTIONS(5343), + [sym__str_single_quotes] = ACTIONS(5345), + [sym__str_back_ticks] = ACTIONS(5345), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5347), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5349), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5351), + [anon_sym_POUND] = ACTIONS(3), }, - [1605] = { - [sym_comment] = STATE(1605), - [ts_builtin_sym_end] = ACTIONS(3520), - [anon_sym_export] = ACTIONS(3518), - [anon_sym_alias] = ACTIONS(3518), - [anon_sym_let] = ACTIONS(3518), - [anon_sym_let_DASHenv] = ACTIONS(3518), - [anon_sym_mut] = ACTIONS(3518), - [anon_sym_const] = ACTIONS(3518), - [anon_sym_SEMI] = ACTIONS(3518), - [sym_cmd_identifier] = ACTIONS(3518), - [anon_sym_LF] = ACTIONS(3520), - [anon_sym_def] = ACTIONS(3518), - [anon_sym_export_DASHenv] = ACTIONS(3518), - [anon_sym_extern] = ACTIONS(3518), - [anon_sym_module] = ACTIONS(3518), - [anon_sym_use] = ACTIONS(3518), - [anon_sym_LBRACK] = ACTIONS(3518), - [anon_sym_LPAREN] = ACTIONS(3518), - [anon_sym_DOLLAR] = ACTIONS(3518), - [anon_sym_error] = ACTIONS(3518), - [anon_sym_DASH_DASH] = ACTIONS(3518), - [anon_sym_DASH] = ACTIONS(3518), - [anon_sym_break] = ACTIONS(3518), - [anon_sym_continue] = ACTIONS(3518), - [anon_sym_for] = ACTIONS(3518), - [anon_sym_loop] = ACTIONS(3518), - [anon_sym_while] = ACTIONS(3518), - [anon_sym_do] = ACTIONS(3518), - [anon_sym_if] = ACTIONS(3518), - [anon_sym_match] = ACTIONS(3518), - [anon_sym_LBRACE] = ACTIONS(3518), - [anon_sym_DOT_DOT] = ACTIONS(3518), - [anon_sym_try] = ACTIONS(3518), - [anon_sym_return] = ACTIONS(3518), - [anon_sym_source] = ACTIONS(3518), - [anon_sym_source_DASHenv] = ACTIONS(3518), - [anon_sym_register] = ACTIONS(3518), - [anon_sym_hide] = ACTIONS(3518), - [anon_sym_hide_DASHenv] = ACTIONS(3518), - [anon_sym_overlay] = ACTIONS(3518), - [anon_sym_as] = ACTIONS(3518), - [anon_sym_where] = ACTIONS(3518), - [anon_sym_not] = ACTIONS(3518), - [anon_sym_DOT] = ACTIONS(1934), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3518), - [anon_sym_DOT_DOT_LT] = ACTIONS(3518), - [anon_sym_null] = ACTIONS(3518), - [anon_sym_true] = ACTIONS(3518), - [anon_sym_false] = ACTIONS(3518), - [aux_sym__val_number_decimal_token1] = ACTIONS(3518), - [aux_sym__val_number_decimal_token2] = ACTIONS(3518), - [anon_sym_DOT2] = ACTIONS(3518), - [aux_sym__val_number_decimal_token3] = ACTIONS(3518), - [aux_sym__val_number_token1] = ACTIONS(3518), - [aux_sym__val_number_token2] = ACTIONS(3518), - [aux_sym__val_number_token3] = ACTIONS(3518), - [aux_sym__val_number_token4] = ACTIONS(3518), - [aux_sym__val_number_token5] = ACTIONS(3518), - [aux_sym__val_number_token6] = ACTIONS(3518), - [anon_sym_0b] = ACTIONS(3518), - [anon_sym_0o] = ACTIONS(3518), - [anon_sym_0x] = ACTIONS(3518), - [sym_val_date] = ACTIONS(3518), - [anon_sym_DQUOTE] = ACTIONS(3518), - [sym__str_single_quotes] = ACTIONS(3518), - [sym__str_back_ticks] = ACTIONS(3518), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3518), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3518), - [anon_sym_CARET] = ACTIONS(3518), - [aux_sym_unquoted_token2] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(113), + [1805] = { + [sym_expr_unary] = STATE(732), + [sym__expr_unary_minus] = STATE(730), + [sym_expr_binary] = STATE(732), + [sym__expr_binary_expression] = STATE(759), + [sym_expr_parenthesized] = STATE(732), + [sym__val_range] = STATE(10198), + [sym__value] = STATE(732), + [sym_val_nothing] = STATE(757), + [sym_val_bool] = STATE(607), + [sym_val_variable] = STATE(757), + [sym__var] = STATE(564), + [sym_val_number] = STATE(757), + [sym__val_number_decimal] = STATE(508), + [sym__val_number] = STATE(695), + [sym_val_duration] = STATE(757), + [sym_val_filesize] = STATE(757), + [sym_val_binary] = STATE(757), + [sym_val_string] = STATE(757), + [sym__str_double_quotes] = STATE(693), + [sym_val_interpolated] = STATE(757), + [sym__inter_single_quotes] = STATE(710), + [sym__inter_double_quotes] = STATE(711), + [sym_val_list] = STATE(757), + [sym_val_record] = STATE(757), + [sym_val_table] = STATE(757), + [sym_val_closure] = STATE(757), + [sym_unquoted] = STATE(745), + [sym__unquoted_anonymous_prefix] = STATE(10568), + [sym_comment] = STATE(1805), + [anon_sym_LBRACK] = ACTIONS(5305), + [anon_sym_LPAREN] = ACTIONS(5307), + [anon_sym_DOLLAR] = ACTIONS(5309), + [anon_sym_DASH] = ACTIONS(5311), + [anon_sym_LBRACE] = ACTIONS(5313), + [anon_sym_DOT_DOT] = ACTIONS(5315), + [anon_sym_not] = ACTIONS(5317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5319), + [anon_sym_DOT_DOT_LT] = ACTIONS(5319), + [anon_sym_null] = ACTIONS(5321), + [anon_sym_true] = ACTIONS(5323), + [anon_sym_false] = ACTIONS(5323), + [aux_sym__val_number_decimal_token1] = ACTIONS(5325), + [aux_sym__val_number_decimal_token2] = ACTIONS(5327), + [anon_sym_DOT2] = ACTIONS(5329), + [aux_sym__val_number_decimal_token3] = ACTIONS(5331), + [aux_sym__val_number_token1] = ACTIONS(5333), + [aux_sym__val_number_token2] = ACTIONS(5333), + [aux_sym__val_number_token3] = ACTIONS(5333), + [aux_sym__val_number_token4] = ACTIONS(5335), + [aux_sym__val_number_token5] = ACTIONS(5335), + [aux_sym__val_number_token6] = ACTIONS(5335), + [anon_sym_0b] = ACTIONS(5337), + [anon_sym_0o] = ACTIONS(5339), + [anon_sym_0x] = ACTIONS(5339), + [sym_val_date] = ACTIONS(5341), + [anon_sym_DQUOTE] = ACTIONS(5343), + [sym__str_single_quotes] = ACTIONS(5345), + [sym__str_back_ticks] = ACTIONS(5345), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5347), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5349), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5351), + [anon_sym_POUND] = ACTIONS(3), }, - [1606] = { - [sym_comment] = STATE(1606), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_COMMA] = ACTIONS(1158), - [anon_sym_RBRACK] = ACTIONS(1158), - [anon_sym_LPAREN] = ACTIONS(1158), - [anon_sym_DOLLAR] = ACTIONS(1158), - [anon_sym_GT] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_in] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1158), - [anon_sym_DOT_DOT] = ACTIONS(1158), - [anon_sym_STAR] = ACTIONS(1158), - [anon_sym_STAR_STAR] = ACTIONS(1158), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_SLASH] = ACTIONS(1158), - [anon_sym_mod] = ACTIONS(1158), - [anon_sym_SLASH_SLASH] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1158), - [anon_sym_bit_DASHshl] = ACTIONS(1158), - [anon_sym_bit_DASHshr] = ACTIONS(1158), - [anon_sym_EQ_EQ] = ACTIONS(1158), - [anon_sym_BANG_EQ] = ACTIONS(1158), - [anon_sym_LT2] = ACTIONS(1158), - [anon_sym_LT_EQ] = ACTIONS(1158), - [anon_sym_GT_EQ] = ACTIONS(1158), - [anon_sym_not_DASHin] = ACTIONS(1158), - [anon_sym_starts_DASHwith] = ACTIONS(1158), - [anon_sym_ends_DASHwith] = ACTIONS(1158), - [anon_sym_EQ_TILDE] = ACTIONS(1158), - [anon_sym_BANG_TILDE] = ACTIONS(1158), - [anon_sym_bit_DASHand] = ACTIONS(1158), - [anon_sym_bit_DASHxor] = ACTIONS(1158), - [anon_sym_bit_DASHor] = ACTIONS(1158), - [anon_sym_and] = ACTIONS(1158), - [anon_sym_xor] = ACTIONS(1158), - [anon_sym_or] = ACTIONS(1158), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1158), - [anon_sym_DOT_DOT_LT] = ACTIONS(1158), - [anon_sym_null] = ACTIONS(1158), - [anon_sym_true] = ACTIONS(1158), - [anon_sym_false] = ACTIONS(1158), - [aux_sym__val_number_decimal_token1] = ACTIONS(1158), - [aux_sym__val_number_decimal_token2] = ACTIONS(1158), - [anon_sym_DOT2] = ACTIONS(1158), - [aux_sym__val_number_decimal_token3] = ACTIONS(1158), - [aux_sym__val_number_token1] = ACTIONS(1158), - [aux_sym__val_number_token2] = ACTIONS(1158), - [aux_sym__val_number_token3] = ACTIONS(1158), - [aux_sym__val_number_token4] = ACTIONS(1158), - [aux_sym__val_number_token5] = ACTIONS(1158), - [aux_sym__val_number_token6] = ACTIONS(1158), - [anon_sym_0b] = ACTIONS(1158), - [anon_sym_0o] = ACTIONS(1158), - [anon_sym_0x] = ACTIONS(1158), - [sym_val_date] = ACTIONS(1158), - [anon_sym_DQUOTE] = ACTIONS(1158), - [sym__str_single_quotes] = ACTIONS(1158), - [sym__str_back_ticks] = ACTIONS(1158), - [sym__entry_separator] = ACTIONS(1160), - [anon_sym_err_GT] = ACTIONS(1158), - [anon_sym_out_GT] = ACTIONS(1158), - [anon_sym_e_GT] = ACTIONS(1158), - [anon_sym_o_GT] = ACTIONS(1158), - [anon_sym_err_PLUSout_GT] = ACTIONS(1158), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1158), - [anon_sym_o_PLUSe_GT] = ACTIONS(1158), - [anon_sym_e_PLUSo_GT] = ACTIONS(1158), - [aux_sym_unquoted_token6] = ACTIONS(1284), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1158), + [1806] = { + [sym__expression] = STATE(7040), + [sym_expr_unary] = STATE(5409), + [sym__expr_unary_minus] = STATE(5410), + [sym_expr_binary] = STATE(5409), + [sym__expr_binary_expression] = STATE(6366), + [sym_expr_parenthesized] = STATE(4635), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5409), + [sym_val_nothing] = STATE(5350), + [sym_val_bool] = STATE(5350), + [sym_val_variable] = STATE(4717), + [sym__var] = STATE(4193), + [sym_val_number] = STATE(5350), + [sym__val_number_decimal] = STATE(4266), + [sym__val_number] = STATE(5351), + [sym_val_duration] = STATE(5350), + [sym_val_filesize] = STATE(5350), + [sym_val_binary] = STATE(5350), + [sym_val_string] = STATE(5350), + [sym__str_double_quotes] = STATE(5502), + [sym_val_interpolated] = STATE(5350), + [sym__inter_single_quotes] = STATE(5420), + [sym__inter_double_quotes] = STATE(5421), + [sym_val_list] = STATE(5350), + [sym_val_record] = STATE(5350), + [sym_val_table] = STATE(5350), + [sym_val_closure] = STATE(5350), + [sym__flag] = STATE(1934), + [sym_short_flag] = STATE(4674), + [sym_long_flag] = STATE(4674), + [sym_long_flag_equals_value] = STATE(4714), + [sym_comment] = STATE(1806), + [anon_sym_SEMI] = ACTIONS(5353), + [anon_sym_LF] = ACTIONS(5355), + [anon_sym_LBRACK] = ACTIONS(4833), + [anon_sym_LPAREN] = ACTIONS(4835), + [anon_sym_RPAREN] = ACTIONS(5353), + [anon_sym_PIPE] = ACTIONS(5353), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_DASH_DASH] = ACTIONS(4875), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4841), + [anon_sym_RBRACE] = ACTIONS(5353), + [anon_sym_DOT_DOT] = ACTIONS(4843), + [anon_sym_not] = ACTIONS(4845), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4847), + [anon_sym_DOT_DOT_LT] = ACTIONS(4847), + [anon_sym_null] = ACTIONS(4849), + [anon_sym_true] = ACTIONS(4851), + [anon_sym_false] = ACTIONS(4851), + [aux_sym__val_number_decimal_token1] = ACTIONS(4853), + [aux_sym__val_number_decimal_token2] = ACTIONS(4853), + [anon_sym_DOT2] = ACTIONS(4855), + [aux_sym__val_number_decimal_token3] = ACTIONS(4857), + [aux_sym__val_number_token1] = ACTIONS(4859), + [aux_sym__val_number_token2] = ACTIONS(4859), + [aux_sym__val_number_token3] = ACTIONS(4859), + [aux_sym__val_number_token4] = ACTIONS(4859), + [aux_sym__val_number_token5] = ACTIONS(4859), + [aux_sym__val_number_token6] = ACTIONS(4859), + [anon_sym_0b] = ACTIONS(3080), + [anon_sym_0o] = ACTIONS(3082), + [anon_sym_0x] = ACTIONS(3082), + [sym_val_date] = ACTIONS(4861), + [anon_sym_DQUOTE] = ACTIONS(4863), + [sym__str_single_quotes] = ACTIONS(4865), + [sym__str_back_ticks] = ACTIONS(4865), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4867), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4869), [anon_sym_POUND] = ACTIONS(113), }, - [1607] = { - [sym_comment] = STATE(1607), - [anon_sym_LBRACK] = ACTIONS(1117), - [anon_sym_COMMA] = ACTIONS(1117), - [anon_sym_RBRACK] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1117), - [anon_sym_DOLLAR] = ACTIONS(1117), - [anon_sym_GT] = ACTIONS(1117), - [anon_sym_DASH_DASH] = ACTIONS(1117), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1117), - [anon_sym_LBRACE] = ACTIONS(1117), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_STAR] = ACTIONS(1117), - [anon_sym_STAR_STAR] = ACTIONS(1117), - [anon_sym_PLUS_PLUS] = ACTIONS(1117), - [anon_sym_SLASH] = ACTIONS(1117), - [anon_sym_mod] = ACTIONS(1117), - [anon_sym_SLASH_SLASH] = ACTIONS(1117), - [anon_sym_PLUS] = ACTIONS(1117), - [anon_sym_bit_DASHshl] = ACTIONS(1117), - [anon_sym_bit_DASHshr] = ACTIONS(1117), - [anon_sym_EQ_EQ] = ACTIONS(1117), - [anon_sym_BANG_EQ] = ACTIONS(1117), - [anon_sym_LT2] = ACTIONS(1117), - [anon_sym_LT_EQ] = ACTIONS(1117), - [anon_sym_GT_EQ] = ACTIONS(1117), - [anon_sym_not_DASHin] = ACTIONS(1117), - [anon_sym_starts_DASHwith] = ACTIONS(1117), - [anon_sym_ends_DASHwith] = ACTIONS(1117), - [anon_sym_EQ_TILDE] = ACTIONS(1117), - [anon_sym_BANG_TILDE] = ACTIONS(1117), - [anon_sym_bit_DASHand] = ACTIONS(1117), - [anon_sym_bit_DASHxor] = ACTIONS(1117), - [anon_sym_bit_DASHor] = ACTIONS(1117), - [anon_sym_and] = ACTIONS(1117), - [anon_sym_xor] = ACTIONS(1117), - [anon_sym_or] = ACTIONS(1117), - [anon_sym_DOT] = ACTIONS(1117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1117), - [anon_sym_DOT_DOT_LT] = ACTIONS(1117), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_true] = ACTIONS(1117), - [anon_sym_false] = ACTIONS(1117), - [aux_sym__val_number_decimal_token1] = ACTIONS(1117), - [aux_sym__val_number_decimal_token2] = ACTIONS(1117), - [anon_sym_DOT2] = ACTIONS(1117), - [aux_sym__val_number_decimal_token3] = ACTIONS(1117), - [aux_sym__val_number_token1] = ACTIONS(1117), - [aux_sym__val_number_token2] = ACTIONS(1117), - [aux_sym__val_number_token3] = ACTIONS(1117), - [aux_sym__val_number_token4] = ACTIONS(1117), - [aux_sym__val_number_token5] = ACTIONS(1117), - [aux_sym__val_number_token6] = ACTIONS(1117), - [anon_sym_0b] = ACTIONS(1117), - [anon_sym_0o] = ACTIONS(1117), - [anon_sym_0x] = ACTIONS(1117), - [sym_val_date] = ACTIONS(1117), - [anon_sym_DQUOTE] = ACTIONS(1117), - [sym__str_single_quotes] = ACTIONS(1117), - [sym__str_back_ticks] = ACTIONS(1117), - [sym__entry_separator] = ACTIONS(1119), - [anon_sym_err_GT] = ACTIONS(1117), - [anon_sym_out_GT] = ACTIONS(1117), - [anon_sym_e_GT] = ACTIONS(1117), - [anon_sym_o_GT] = ACTIONS(1117), - [anon_sym_err_PLUSout_GT] = ACTIONS(1117), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1117), - [anon_sym_o_PLUSe_GT] = ACTIONS(1117), - [anon_sym_e_PLUSo_GT] = ACTIONS(1117), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1117), + [1807] = { + [sym__expression] = STATE(7040), + [sym_expr_unary] = STATE(5409), + [sym__expr_unary_minus] = STATE(5410), + [sym_expr_binary] = STATE(5409), + [sym__expr_binary_expression] = STATE(6366), + [sym_expr_parenthesized] = STATE(4635), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5409), + [sym_val_nothing] = STATE(5350), + [sym_val_bool] = STATE(5350), + [sym_val_variable] = STATE(4717), + [sym__var] = STATE(4193), + [sym_val_number] = STATE(5350), + [sym__val_number_decimal] = STATE(4266), + [sym__val_number] = STATE(5351), + [sym_val_duration] = STATE(5350), + [sym_val_filesize] = STATE(5350), + [sym_val_binary] = STATE(5350), + [sym_val_string] = STATE(5350), + [sym__str_double_quotes] = STATE(5502), + [sym_val_interpolated] = STATE(5350), + [sym__inter_single_quotes] = STATE(5420), + [sym__inter_double_quotes] = STATE(5421), + [sym_val_list] = STATE(5350), + [sym_val_record] = STATE(5350), + [sym_val_table] = STATE(5350), + [sym_val_closure] = STATE(5350), + [sym__flag] = STATE(1935), + [sym_short_flag] = STATE(4674), + [sym_long_flag] = STATE(4674), + [sym_long_flag_equals_value] = STATE(4714), + [sym_comment] = STATE(1807), + [anon_sym_SEMI] = ACTIONS(5353), + [anon_sym_LF] = ACTIONS(5355), + [anon_sym_LBRACK] = ACTIONS(4833), + [anon_sym_LPAREN] = ACTIONS(4835), + [anon_sym_RPAREN] = ACTIONS(5353), + [anon_sym_PIPE] = ACTIONS(5353), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_DASH_DASH] = ACTIONS(4875), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4841), + [anon_sym_RBRACE] = ACTIONS(5353), + [anon_sym_DOT_DOT] = ACTIONS(4843), + [anon_sym_not] = ACTIONS(4845), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4847), + [anon_sym_DOT_DOT_LT] = ACTIONS(4847), + [anon_sym_null] = ACTIONS(4849), + [anon_sym_true] = ACTIONS(4851), + [anon_sym_false] = ACTIONS(4851), + [aux_sym__val_number_decimal_token1] = ACTIONS(4853), + [aux_sym__val_number_decimal_token2] = ACTIONS(4853), + [anon_sym_DOT2] = ACTIONS(4855), + [aux_sym__val_number_decimal_token3] = ACTIONS(4857), + [aux_sym__val_number_token1] = ACTIONS(4859), + [aux_sym__val_number_token2] = ACTIONS(4859), + [aux_sym__val_number_token3] = ACTIONS(4859), + [aux_sym__val_number_token4] = ACTIONS(4859), + [aux_sym__val_number_token5] = ACTIONS(4859), + [aux_sym__val_number_token6] = ACTIONS(4859), + [anon_sym_0b] = ACTIONS(3080), + [anon_sym_0o] = ACTIONS(3082), + [anon_sym_0x] = ACTIONS(3082), + [sym_val_date] = ACTIONS(4861), + [anon_sym_DQUOTE] = ACTIONS(4863), + [sym__str_single_quotes] = ACTIONS(4865), + [sym__str_back_ticks] = ACTIONS(4865), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4867), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4869), [anon_sym_POUND] = ACTIONS(113), }, - [1608] = { - [sym_comment] = STATE(1608), - [ts_builtin_sym_end] = ACTIONS(2549), - [anon_sym_export] = ACTIONS(2547), - [anon_sym_alias] = ACTIONS(2547), - [anon_sym_let] = ACTIONS(2547), - [anon_sym_let_DASHenv] = ACTIONS(2547), - [anon_sym_mut] = ACTIONS(2547), - [anon_sym_const] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [sym_cmd_identifier] = ACTIONS(2547), - [anon_sym_LF] = ACTIONS(2549), - [anon_sym_def] = ACTIONS(2547), - [anon_sym_export_DASHenv] = ACTIONS(2547), - [anon_sym_extern] = ACTIONS(2547), - [anon_sym_module] = ACTIONS(2547), - [anon_sym_use] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_DOLLAR] = ACTIONS(2547), - [anon_sym_error] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_break] = ACTIONS(2547), - [anon_sym_continue] = ACTIONS(2547), - [anon_sym_for] = ACTIONS(2547), - [anon_sym_loop] = ACTIONS(2547), - [anon_sym_while] = ACTIONS(2547), - [anon_sym_do] = ACTIONS(2547), - [anon_sym_if] = ACTIONS(2547), - [anon_sym_match] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2547), - [anon_sym_DOT_DOT] = ACTIONS(2547), - [anon_sym_try] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2547), - [anon_sym_source] = ACTIONS(2547), - [anon_sym_source_DASHenv] = ACTIONS(2547), - [anon_sym_register] = ACTIONS(2547), - [anon_sym_hide] = ACTIONS(2547), - [anon_sym_hide_DASHenv] = ACTIONS(2547), - [anon_sym_overlay] = ACTIONS(2547), - [anon_sym_where] = ACTIONS(2547), - [anon_sym_not] = ACTIONS(2547), - [anon_sym_DOT_DOT2] = ACTIONS(2547), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), - [anon_sym_DOT_DOT_LT] = ACTIONS(2547), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2549), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2549), - [aux_sym__immediate_decimal_token2] = ACTIONS(4997), - [anon_sym_null] = ACTIONS(2547), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [aux_sym__val_number_decimal_token1] = ACTIONS(2547), - [aux_sym__val_number_decimal_token2] = ACTIONS(2547), - [anon_sym_DOT2] = ACTIONS(2547), - [aux_sym__val_number_decimal_token3] = ACTIONS(2547), - [aux_sym__val_number_token1] = ACTIONS(2547), - [aux_sym__val_number_token2] = ACTIONS(2547), - [aux_sym__val_number_token3] = ACTIONS(2547), - [aux_sym__val_number_token4] = ACTIONS(2547), - [aux_sym__val_number_token5] = ACTIONS(2547), - [aux_sym__val_number_token6] = ACTIONS(2547), - [anon_sym_0b] = ACTIONS(2547), - [anon_sym_0o] = ACTIONS(2547), - [anon_sym_0x] = ACTIONS(2547), - [sym_val_date] = ACTIONS(2547), - [anon_sym_DQUOTE] = ACTIONS(2547), - [sym__str_single_quotes] = ACTIONS(2547), - [sym__str_back_ticks] = ACTIONS(2547), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2547), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2547), - [anon_sym_POUND] = ACTIONS(113), + [1808] = { + [sym_expr_unary] = STATE(2682), + [sym__expr_unary_minus] = STATE(2647), + [sym_expr_binary] = STATE(2682), + [sym__expr_binary_expression] = STATE(2704), + [sym_expr_parenthesized] = STATE(2682), + [sym__val_range] = STATE(10209), + [sym__value] = STATE(2682), + [sym_val_nothing] = STATE(2681), + [sym_val_bool] = STATE(2639), + [sym_val_variable] = STATE(2681), + [sym__var] = STATE(2308), + [sym_val_number] = STATE(2681), + [sym__val_number_decimal] = STATE(1156), + [sym__val_number] = STATE(2705), + [sym_val_duration] = STATE(2681), + [sym_val_filesize] = STATE(2681), + [sym_val_binary] = STATE(2681), + [sym_val_string] = STATE(2681), + [sym__str_double_quotes] = STATE(2701), + [sym_val_interpolated] = STATE(2681), + [sym__inter_single_quotes] = STATE(2654), + [sym__inter_double_quotes] = STATE(2655), + [sym_val_list] = STATE(2681), + [sym_val_record] = STATE(2681), + [sym_val_table] = STATE(2681), + [sym_val_closure] = STATE(2681), + [sym_unquoted] = STATE(2691), + [sym__unquoted_anonymous_prefix] = STATE(10267), + [sym_comment] = STATE(1808), + [anon_sym_LBRACK] = ACTIONS(4200), + [anon_sym_LPAREN] = ACTIONS(5357), + [anon_sym_DOLLAR] = ACTIONS(5359), + [anon_sym_DASH] = ACTIONS(4206), + [anon_sym_LBRACE] = ACTIONS(4208), + [anon_sym_DOT_DOT] = ACTIONS(5361), + [anon_sym_not] = ACTIONS(4212), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5363), + [anon_sym_DOT_DOT_LT] = ACTIONS(5363), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_true] = ACTIONS(4218), + [anon_sym_false] = ACTIONS(4218), + [aux_sym__val_number_decimal_token1] = ACTIONS(4220), + [aux_sym__val_number_decimal_token2] = ACTIONS(4222), + [anon_sym_DOT2] = ACTIONS(5365), + [aux_sym__val_number_decimal_token3] = ACTIONS(4226), + [aux_sym__val_number_token1] = ACTIONS(4228), + [aux_sym__val_number_token2] = ACTIONS(4228), + [aux_sym__val_number_token3] = ACTIONS(4228), + [aux_sym__val_number_token4] = ACTIONS(5367), + [aux_sym__val_number_token5] = ACTIONS(5367), + [aux_sym__val_number_token6] = ACTIONS(5367), + [anon_sym_0b] = ACTIONS(4232), + [anon_sym_0o] = ACTIONS(4234), + [anon_sym_0x] = ACTIONS(4234), + [sym_val_date] = ACTIONS(4236), + [anon_sym_DQUOTE] = ACTIONS(4238), + [sym__str_single_quotes] = ACTIONS(4240), + [sym__str_back_ticks] = ACTIONS(4240), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4242), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4244), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5369), + [anon_sym_POUND] = ACTIONS(3), }, - [1609] = { - [sym_comment] = STATE(1609), - [ts_builtin_sym_end] = ACTIONS(1119), - [anon_sym_export] = ACTIONS(1117), - [anon_sym_alias] = ACTIONS(1117), - [anon_sym_let] = ACTIONS(1117), - [anon_sym_let_DASHenv] = ACTIONS(1117), - [anon_sym_mut] = ACTIONS(1117), - [anon_sym_const] = ACTIONS(1117), - [anon_sym_SEMI] = ACTIONS(1117), - [sym_cmd_identifier] = ACTIONS(1117), - [anon_sym_LF] = ACTIONS(1119), - [anon_sym_def] = ACTIONS(1117), - [anon_sym_export_DASHenv] = ACTIONS(1117), - [anon_sym_extern] = ACTIONS(1117), - [anon_sym_module] = ACTIONS(1117), - [anon_sym_use] = ACTIONS(1117), - [anon_sym_LBRACK] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1117), - [anon_sym_DOLLAR] = ACTIONS(1117), - [anon_sym_error] = ACTIONS(1117), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_break] = ACTIONS(1117), - [anon_sym_continue] = ACTIONS(1117), - [anon_sym_for] = ACTIONS(1117), - [anon_sym_loop] = ACTIONS(1117), - [anon_sym_while] = ACTIONS(1117), - [anon_sym_do] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1117), - [anon_sym_LBRACE] = ACTIONS(1117), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_try] = ACTIONS(1117), - [anon_sym_return] = ACTIONS(1117), - [anon_sym_source] = ACTIONS(1117), - [anon_sym_source_DASHenv] = ACTIONS(1117), - [anon_sym_register] = ACTIONS(1117), - [anon_sym_hide] = ACTIONS(1117), - [anon_sym_hide_DASHenv] = ACTIONS(1117), - [anon_sym_overlay] = ACTIONS(1117), - [anon_sym_where] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1117), - [anon_sym_DOT_DOT2] = ACTIONS(1117), - [anon_sym_DOT] = ACTIONS(1117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1117), - [anon_sym_DOT_DOT_LT] = ACTIONS(1117), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1119), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1119), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_true] = ACTIONS(1117), - [anon_sym_false] = ACTIONS(1117), - [aux_sym__val_number_decimal_token1] = ACTIONS(1117), - [aux_sym__val_number_decimal_token2] = ACTIONS(1117), - [anon_sym_DOT2] = ACTIONS(1117), - [aux_sym__val_number_decimal_token3] = ACTIONS(1117), - [aux_sym__val_number_token1] = ACTIONS(1117), - [aux_sym__val_number_token2] = ACTIONS(1117), - [aux_sym__val_number_token3] = ACTIONS(1117), - [aux_sym__val_number_token4] = ACTIONS(1117), - [aux_sym__val_number_token5] = ACTIONS(1117), - [aux_sym__val_number_token6] = ACTIONS(1117), - [anon_sym_0b] = ACTIONS(1117), - [anon_sym_0o] = ACTIONS(1117), - [anon_sym_0x] = ACTIONS(1117), - [sym_val_date] = ACTIONS(1117), - [anon_sym_DQUOTE] = ACTIONS(1117), - [sym__str_single_quotes] = ACTIONS(1117), - [sym__str_back_ticks] = ACTIONS(1117), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1117), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1117), - [anon_sym_CARET] = ACTIONS(1117), - [anon_sym_POUND] = ACTIONS(113), + [1809] = { + [sym_expr_unary] = STATE(2682), + [sym__expr_unary_minus] = STATE(2647), + [sym_expr_binary] = STATE(2682), + [sym__expr_binary_expression] = STATE(2706), + [sym_expr_parenthesized] = STATE(2682), + [sym__val_range] = STATE(10209), + [sym__value] = STATE(2682), + [sym_val_nothing] = STATE(2681), + [sym_val_bool] = STATE(2639), + [sym_val_variable] = STATE(2681), + [sym__var] = STATE(2308), + [sym_val_number] = STATE(2681), + [sym__val_number_decimal] = STATE(1156), + [sym__val_number] = STATE(2705), + [sym_val_duration] = STATE(2681), + [sym_val_filesize] = STATE(2681), + [sym_val_binary] = STATE(2681), + [sym_val_string] = STATE(2681), + [sym__str_double_quotes] = STATE(2701), + [sym_val_interpolated] = STATE(2681), + [sym__inter_single_quotes] = STATE(2654), + [sym__inter_double_quotes] = STATE(2655), + [sym_val_list] = STATE(2681), + [sym_val_record] = STATE(2681), + [sym_val_table] = STATE(2681), + [sym_val_closure] = STATE(2681), + [sym_unquoted] = STATE(2694), + [sym__unquoted_anonymous_prefix] = STATE(10267), + [sym_comment] = STATE(1809), + [anon_sym_LBRACK] = ACTIONS(4200), + [anon_sym_LPAREN] = ACTIONS(5357), + [anon_sym_DOLLAR] = ACTIONS(5359), + [anon_sym_DASH] = ACTIONS(4206), + [anon_sym_LBRACE] = ACTIONS(4208), + [anon_sym_DOT_DOT] = ACTIONS(5361), + [anon_sym_not] = ACTIONS(4212), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5363), + [anon_sym_DOT_DOT_LT] = ACTIONS(5363), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_true] = ACTIONS(4218), + [anon_sym_false] = ACTIONS(4218), + [aux_sym__val_number_decimal_token1] = ACTIONS(4220), + [aux_sym__val_number_decimal_token2] = ACTIONS(4222), + [anon_sym_DOT2] = ACTIONS(5365), + [aux_sym__val_number_decimal_token3] = ACTIONS(4226), + [aux_sym__val_number_token1] = ACTIONS(4228), + [aux_sym__val_number_token2] = ACTIONS(4228), + [aux_sym__val_number_token3] = ACTIONS(4228), + [aux_sym__val_number_token4] = ACTIONS(5367), + [aux_sym__val_number_token5] = ACTIONS(5367), + [aux_sym__val_number_token6] = ACTIONS(5367), + [anon_sym_0b] = ACTIONS(4232), + [anon_sym_0o] = ACTIONS(4234), + [anon_sym_0x] = ACTIONS(4234), + [sym_val_date] = ACTIONS(4236), + [anon_sym_DQUOTE] = ACTIONS(4238), + [sym__str_single_quotes] = ACTIONS(4240), + [sym__str_back_ticks] = ACTIONS(4240), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4242), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4244), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5369), + [anon_sym_POUND] = ACTIONS(3), }, - [1610] = { - [sym_comment] = STATE(1610), - [anon_sym_export] = ACTIONS(2547), - [anon_sym_alias] = ACTIONS(2547), - [anon_sym_let] = ACTIONS(2547), - [anon_sym_let_DASHenv] = ACTIONS(2547), - [anon_sym_mut] = ACTIONS(2547), - [anon_sym_const] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [sym_cmd_identifier] = ACTIONS(2547), - [anon_sym_LF] = ACTIONS(2549), - [anon_sym_def] = ACTIONS(2547), - [anon_sym_export_DASHenv] = ACTIONS(2547), - [anon_sym_extern] = ACTIONS(2547), - [anon_sym_module] = ACTIONS(2547), - [anon_sym_use] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_RPAREN] = ACTIONS(2547), - [anon_sym_DOLLAR] = ACTIONS(2547), - [anon_sym_error] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_break] = ACTIONS(2547), - [anon_sym_continue] = ACTIONS(2547), - [anon_sym_for] = ACTIONS(2547), - [anon_sym_loop] = ACTIONS(2547), - [anon_sym_while] = ACTIONS(2547), - [anon_sym_do] = ACTIONS(2547), - [anon_sym_if] = ACTIONS(2547), - [anon_sym_match] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2547), - [anon_sym_RBRACE] = ACTIONS(2547), - [anon_sym_DOT_DOT] = ACTIONS(2547), - [anon_sym_try] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2547), - [anon_sym_source] = ACTIONS(2547), - [anon_sym_source_DASHenv] = ACTIONS(2547), - [anon_sym_register] = ACTIONS(2547), - [anon_sym_hide] = ACTIONS(2547), - [anon_sym_hide_DASHenv] = ACTIONS(2547), - [anon_sym_overlay] = ACTIONS(2547), - [anon_sym_where] = ACTIONS(2547), - [anon_sym_not] = ACTIONS(2547), - [anon_sym_DOT_DOT2] = ACTIONS(2547), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), - [anon_sym_DOT_DOT_LT] = ACTIONS(2547), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2549), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2549), - [anon_sym_null] = ACTIONS(2547), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [aux_sym__val_number_decimal_token1] = ACTIONS(2547), - [aux_sym__val_number_decimal_token2] = ACTIONS(2547), - [anon_sym_DOT2] = ACTIONS(2547), - [aux_sym__val_number_decimal_token3] = ACTIONS(2547), - [aux_sym__val_number_token1] = ACTIONS(2547), - [aux_sym__val_number_token2] = ACTIONS(2547), - [aux_sym__val_number_token3] = ACTIONS(2547), - [aux_sym__val_number_token4] = ACTIONS(2547), - [aux_sym__val_number_token5] = ACTIONS(2547), - [aux_sym__val_number_token6] = ACTIONS(2547), - [anon_sym_0b] = ACTIONS(2547), - [anon_sym_0o] = ACTIONS(2547), - [anon_sym_0x] = ACTIONS(2547), - [sym_val_date] = ACTIONS(2547), - [anon_sym_DQUOTE] = ACTIONS(2547), - [sym__str_single_quotes] = ACTIONS(2547), - [sym__str_back_ticks] = ACTIONS(2547), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2547), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2547), - [anon_sym_POUND] = ACTIONS(113), + [1810] = { + [sym_expr_unary] = STATE(2682), + [sym__expr_unary_minus] = STATE(2647), + [sym_expr_binary] = STATE(2682), + [sym__expr_binary_expression] = STATE(2649), + [sym_expr_parenthesized] = STATE(2682), + [sym__val_range] = STATE(10209), + [sym__value] = STATE(2682), + [sym_val_nothing] = STATE(2681), + [sym_val_bool] = STATE(2639), + [sym_val_variable] = STATE(2681), + [sym__var] = STATE(2308), + [sym_val_number] = STATE(2681), + [sym__val_number_decimal] = STATE(1156), + [sym__val_number] = STATE(2705), + [sym_val_duration] = STATE(2681), + [sym_val_filesize] = STATE(2681), + [sym_val_binary] = STATE(2681), + [sym_val_string] = STATE(2681), + [sym__str_double_quotes] = STATE(2701), + [sym_val_interpolated] = STATE(2681), + [sym__inter_single_quotes] = STATE(2654), + [sym__inter_double_quotes] = STATE(2655), + [sym_val_list] = STATE(2681), + [sym_val_record] = STATE(2681), + [sym_val_table] = STATE(2681), + [sym_val_closure] = STATE(2681), + [sym_unquoted] = STATE(2640), + [sym__unquoted_anonymous_prefix] = STATE(10267), + [sym_comment] = STATE(1810), + [anon_sym_LBRACK] = ACTIONS(4200), + [anon_sym_LPAREN] = ACTIONS(5357), + [anon_sym_DOLLAR] = ACTIONS(5359), + [anon_sym_DASH] = ACTIONS(4206), + [anon_sym_LBRACE] = ACTIONS(4208), + [anon_sym_DOT_DOT] = ACTIONS(5361), + [anon_sym_not] = ACTIONS(4212), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5363), + [anon_sym_DOT_DOT_LT] = ACTIONS(5363), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_true] = ACTIONS(4218), + [anon_sym_false] = ACTIONS(4218), + [aux_sym__val_number_decimal_token1] = ACTIONS(4220), + [aux_sym__val_number_decimal_token2] = ACTIONS(4222), + [anon_sym_DOT2] = ACTIONS(5365), + [aux_sym__val_number_decimal_token3] = ACTIONS(4226), + [aux_sym__val_number_token1] = ACTIONS(4228), + [aux_sym__val_number_token2] = ACTIONS(4228), + [aux_sym__val_number_token3] = ACTIONS(4228), + [aux_sym__val_number_token4] = ACTIONS(5367), + [aux_sym__val_number_token5] = ACTIONS(5367), + [aux_sym__val_number_token6] = ACTIONS(5367), + [anon_sym_0b] = ACTIONS(4232), + [anon_sym_0o] = ACTIONS(4234), + [anon_sym_0x] = ACTIONS(4234), + [sym_val_date] = ACTIONS(4236), + [anon_sym_DQUOTE] = ACTIONS(4238), + [sym__str_single_quotes] = ACTIONS(4240), + [sym__str_back_ticks] = ACTIONS(4240), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4242), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4244), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5369), + [anon_sym_POUND] = ACTIONS(3), }, - [1611] = { - [sym_comment] = STATE(1611), - [anon_sym_export] = ACTIONS(1243), - [anon_sym_alias] = ACTIONS(1243), - [anon_sym_let] = ACTIONS(1243), - [anon_sym_let_DASHenv] = ACTIONS(1243), - [anon_sym_mut] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1243), - [sym_cmd_identifier] = ACTIONS(1243), - [anon_sym_LF] = ACTIONS(1243), - [anon_sym_def] = ACTIONS(1243), - [anon_sym_export_DASHenv] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1243), - [anon_sym_module] = ACTIONS(1243), - [anon_sym_use] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_RPAREN] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_error] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_loop] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_match] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_RBRACE] = ACTIONS(1243), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_try] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_source] = ACTIONS(1243), - [anon_sym_source_DASHenv] = ACTIONS(1243), - [anon_sym_register] = ACTIONS(1243), - [anon_sym_hide] = ACTIONS(1243), - [anon_sym_hide_DASHenv] = ACTIONS(1243), - [anon_sym_overlay] = ACTIONS(1243), - [anon_sym_as] = ACTIONS(1243), - [anon_sym_where] = ACTIONS(1243), - [anon_sym_not] = ACTIONS(1243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1243), - [anon_sym_DOT_DOT_LT] = ACTIONS(1243), - [anon_sym_null] = ACTIONS(1243), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_decimal_token2] = ACTIONS(1243), - [anon_sym_DOT2] = ACTIONS(1243), - [aux_sym__val_number_decimal_token3] = ACTIONS(1243), - [aux_sym__val_number_token1] = ACTIONS(1243), - [aux_sym__val_number_token2] = ACTIONS(1243), - [aux_sym__val_number_token3] = ACTIONS(1243), - [aux_sym__val_number_token4] = ACTIONS(1243), - [aux_sym__val_number_token5] = ACTIONS(1243), - [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_0b] = ACTIONS(1243), - [anon_sym_0o] = ACTIONS(1243), - [anon_sym_0x] = ACTIONS(1243), - [sym_val_date] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym__str_single_quotes] = ACTIONS(1243), - [sym__str_back_ticks] = ACTIONS(1243), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1243), - [aux_sym__list_item_starts_with_sign_token1] = ACTIONS(4999), - [anon_sym_CARET] = ACTIONS(1243), - [anon_sym_POUND] = ACTIONS(113), + [1811] = { + [sym_expr_unary] = STATE(2682), + [sym__expr_unary_minus] = STATE(2647), + [sym_expr_binary] = STATE(2682), + [sym__expr_binary_expression] = STATE(2653), + [sym_expr_parenthesized] = STATE(2682), + [sym__val_range] = STATE(10209), + [sym__value] = STATE(2682), + [sym_val_nothing] = STATE(2681), + [sym_val_bool] = STATE(2639), + [sym_val_variable] = STATE(2681), + [sym__var] = STATE(2308), + [sym_val_number] = STATE(2681), + [sym__val_number_decimal] = STATE(1156), + [sym__val_number] = STATE(2705), + [sym_val_duration] = STATE(2681), + [sym_val_filesize] = STATE(2681), + [sym_val_binary] = STATE(2681), + [sym_val_string] = STATE(2681), + [sym__str_double_quotes] = STATE(2701), + [sym_val_interpolated] = STATE(2681), + [sym__inter_single_quotes] = STATE(2654), + [sym__inter_double_quotes] = STATE(2655), + [sym_val_list] = STATE(2681), + [sym_val_record] = STATE(2681), + [sym_val_table] = STATE(2681), + [sym_val_closure] = STATE(2681), + [sym_unquoted] = STATE(2698), + [sym__unquoted_anonymous_prefix] = STATE(10267), + [sym_comment] = STATE(1811), + [anon_sym_LBRACK] = ACTIONS(4200), + [anon_sym_LPAREN] = ACTIONS(5357), + [anon_sym_DOLLAR] = ACTIONS(5359), + [anon_sym_DASH] = ACTIONS(4206), + [anon_sym_LBRACE] = ACTIONS(4208), + [anon_sym_DOT_DOT] = ACTIONS(5361), + [anon_sym_not] = ACTIONS(4212), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5363), + [anon_sym_DOT_DOT_LT] = ACTIONS(5363), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_true] = ACTIONS(4218), + [anon_sym_false] = ACTIONS(4218), + [aux_sym__val_number_decimal_token1] = ACTIONS(4220), + [aux_sym__val_number_decimal_token2] = ACTIONS(4222), + [anon_sym_DOT2] = ACTIONS(5365), + [aux_sym__val_number_decimal_token3] = ACTIONS(4226), + [aux_sym__val_number_token1] = ACTIONS(4228), + [aux_sym__val_number_token2] = ACTIONS(4228), + [aux_sym__val_number_token3] = ACTIONS(4228), + [aux_sym__val_number_token4] = ACTIONS(5367), + [aux_sym__val_number_token5] = ACTIONS(5367), + [aux_sym__val_number_token6] = ACTIONS(5367), + [anon_sym_0b] = ACTIONS(4232), + [anon_sym_0o] = ACTIONS(4234), + [anon_sym_0x] = ACTIONS(4234), + [sym_val_date] = ACTIONS(4236), + [anon_sym_DQUOTE] = ACTIONS(4238), + [sym__str_single_quotes] = ACTIONS(4240), + [sym__str_back_ticks] = ACTIONS(4240), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4242), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4244), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5369), + [anon_sym_POUND] = ACTIONS(3), }, - [1612] = { - [sym_comment] = STATE(1612), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_error] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_RBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_as] = ACTIONS(936), - [anon_sym_where] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_LPAREN2] = ACTIONS(938), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [anon_sym_POUND] = ACTIONS(113), + [1812] = { + [sym_expr_unary] = STATE(2682), + [sym__expr_unary_minus] = STATE(2647), + [sym_expr_binary] = STATE(2682), + [sym__expr_binary_expression] = STATE(2656), + [sym_expr_parenthesized] = STATE(2682), + [sym__val_range] = STATE(10209), + [sym__value] = STATE(2682), + [sym_val_nothing] = STATE(2681), + [sym_val_bool] = STATE(2639), + [sym_val_variable] = STATE(2681), + [sym__var] = STATE(2308), + [sym_val_number] = STATE(2681), + [sym__val_number_decimal] = STATE(1156), + [sym__val_number] = STATE(2705), + [sym_val_duration] = STATE(2681), + [sym_val_filesize] = STATE(2681), + [sym_val_binary] = STATE(2681), + [sym_val_string] = STATE(2681), + [sym__str_double_quotes] = STATE(2701), + [sym_val_interpolated] = STATE(2681), + [sym__inter_single_quotes] = STATE(2654), + [sym__inter_double_quotes] = STATE(2655), + [sym_val_list] = STATE(2681), + [sym_val_record] = STATE(2681), + [sym_val_table] = STATE(2681), + [sym_val_closure] = STATE(2681), + [sym_unquoted] = STATE(2665), + [sym__unquoted_anonymous_prefix] = STATE(10267), + [sym_comment] = STATE(1812), + [anon_sym_LBRACK] = ACTIONS(4200), + [anon_sym_LPAREN] = ACTIONS(5357), + [anon_sym_DOLLAR] = ACTIONS(5359), + [anon_sym_DASH] = ACTIONS(4206), + [anon_sym_LBRACE] = ACTIONS(4208), + [anon_sym_DOT_DOT] = ACTIONS(5361), + [anon_sym_not] = ACTIONS(4212), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5363), + [anon_sym_DOT_DOT_LT] = ACTIONS(5363), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_true] = ACTIONS(4218), + [anon_sym_false] = ACTIONS(4218), + [aux_sym__val_number_decimal_token1] = ACTIONS(4220), + [aux_sym__val_number_decimal_token2] = ACTIONS(4222), + [anon_sym_DOT2] = ACTIONS(5365), + [aux_sym__val_number_decimal_token3] = ACTIONS(4226), + [aux_sym__val_number_token1] = ACTIONS(4228), + [aux_sym__val_number_token2] = ACTIONS(4228), + [aux_sym__val_number_token3] = ACTIONS(4228), + [aux_sym__val_number_token4] = ACTIONS(5367), + [aux_sym__val_number_token5] = ACTIONS(5367), + [aux_sym__val_number_token6] = ACTIONS(5367), + [anon_sym_0b] = ACTIONS(4232), + [anon_sym_0o] = ACTIONS(4234), + [anon_sym_0x] = ACTIONS(4234), + [sym_val_date] = ACTIONS(4236), + [anon_sym_DQUOTE] = ACTIONS(4238), + [sym__str_single_quotes] = ACTIONS(4240), + [sym__str_back_ticks] = ACTIONS(4240), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4242), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4244), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5369), + [anon_sym_POUND] = ACTIONS(3), }, - [1613] = { - [sym_comment] = STATE(1613), - [anon_sym_export] = ACTIONS(1243), - [anon_sym_alias] = ACTIONS(1243), - [anon_sym_let] = ACTIONS(1243), - [anon_sym_let_DASHenv] = ACTIONS(1243), - [anon_sym_mut] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1243), - [sym_cmd_identifier] = ACTIONS(1243), - [anon_sym_LF] = ACTIONS(1290), - [anon_sym_def] = ACTIONS(1243), - [anon_sym_export_DASHenv] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1243), - [anon_sym_module] = ACTIONS(1243), - [anon_sym_use] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_RPAREN] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_error] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_loop] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_match] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_RBRACE] = ACTIONS(1243), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_try] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_source] = ACTIONS(1243), - [anon_sym_source_DASHenv] = ACTIONS(1243), - [anon_sym_register] = ACTIONS(1243), - [anon_sym_hide] = ACTIONS(1243), - [anon_sym_hide_DASHenv] = ACTIONS(1243), - [anon_sym_overlay] = ACTIONS(1243), - [anon_sym_as] = ACTIONS(1243), - [anon_sym_where] = ACTIONS(1243), - [anon_sym_not] = ACTIONS(1243), - [anon_sym_LPAREN2] = ACTIONS(1290), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1243), - [anon_sym_DOT_DOT_LT] = ACTIONS(1243), - [anon_sym_null] = ACTIONS(1243), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_decimal_token2] = ACTIONS(1243), - [anon_sym_DOT2] = ACTIONS(1243), - [aux_sym__val_number_decimal_token3] = ACTIONS(1243), - [aux_sym__val_number_token1] = ACTIONS(1243), - [aux_sym__val_number_token2] = ACTIONS(1243), - [aux_sym__val_number_token3] = ACTIONS(1243), - [aux_sym__val_number_token4] = ACTIONS(1243), - [aux_sym__val_number_token5] = ACTIONS(1243), - [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_0b] = ACTIONS(1243), - [anon_sym_0o] = ACTIONS(1243), - [anon_sym_0x] = ACTIONS(1243), - [sym_val_date] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym__str_single_quotes] = ACTIONS(1243), - [sym__str_back_ticks] = ACTIONS(1243), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1243), - [anon_sym_CARET] = ACTIONS(1243), - [anon_sym_POUND] = ACTIONS(113), + [1813] = { + [sym_expr_unary] = STATE(2682), + [sym__expr_unary_minus] = STATE(2647), + [sym_expr_binary] = STATE(2682), + [sym__expr_binary_expression] = STATE(2661), + [sym_expr_parenthesized] = STATE(2682), + [sym__val_range] = STATE(10209), + [sym__value] = STATE(2682), + [sym_val_nothing] = STATE(2681), + [sym_val_bool] = STATE(2639), + [sym_val_variable] = STATE(2681), + [sym__var] = STATE(2308), + [sym_val_number] = STATE(2681), + [sym__val_number_decimal] = STATE(1156), + [sym__val_number] = STATE(2705), + [sym_val_duration] = STATE(2681), + [sym_val_filesize] = STATE(2681), + [sym_val_binary] = STATE(2681), + [sym_val_string] = STATE(2681), + [sym__str_double_quotes] = STATE(2701), + [sym_val_interpolated] = STATE(2681), + [sym__inter_single_quotes] = STATE(2654), + [sym__inter_double_quotes] = STATE(2655), + [sym_val_list] = STATE(2681), + [sym_val_record] = STATE(2681), + [sym_val_table] = STATE(2681), + [sym_val_closure] = STATE(2681), + [sym_unquoted] = STATE(2652), + [sym__unquoted_anonymous_prefix] = STATE(10267), + [sym_comment] = STATE(1813), + [anon_sym_LBRACK] = ACTIONS(4200), + [anon_sym_LPAREN] = ACTIONS(5357), + [anon_sym_DOLLAR] = ACTIONS(5359), + [anon_sym_DASH] = ACTIONS(4206), + [anon_sym_LBRACE] = ACTIONS(4208), + [anon_sym_DOT_DOT] = ACTIONS(5361), + [anon_sym_not] = ACTIONS(4212), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5363), + [anon_sym_DOT_DOT_LT] = ACTIONS(5363), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_true] = ACTIONS(4218), + [anon_sym_false] = ACTIONS(4218), + [aux_sym__val_number_decimal_token1] = ACTIONS(4220), + [aux_sym__val_number_decimal_token2] = ACTIONS(4222), + [anon_sym_DOT2] = ACTIONS(5365), + [aux_sym__val_number_decimal_token3] = ACTIONS(4226), + [aux_sym__val_number_token1] = ACTIONS(4228), + [aux_sym__val_number_token2] = ACTIONS(4228), + [aux_sym__val_number_token3] = ACTIONS(4228), + [aux_sym__val_number_token4] = ACTIONS(5367), + [aux_sym__val_number_token5] = ACTIONS(5367), + [aux_sym__val_number_token6] = ACTIONS(5367), + [anon_sym_0b] = ACTIONS(4232), + [anon_sym_0o] = ACTIONS(4234), + [anon_sym_0x] = ACTIONS(4234), + [sym_val_date] = ACTIONS(4236), + [anon_sym_DQUOTE] = ACTIONS(4238), + [sym__str_single_quotes] = ACTIONS(4240), + [sym__str_back_ticks] = ACTIONS(4240), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4242), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4244), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5369), + [anon_sym_POUND] = ACTIONS(3), }, - [1614] = { - [sym__expr_parenthesized_immediate] = STATE(11424), - [sym_comment] = STATE(1614), - [ts_builtin_sym_end] = ACTIONS(4531), - [anon_sym_export] = ACTIONS(4529), - [anon_sym_alias] = ACTIONS(4529), - [anon_sym_let] = ACTIONS(4529), - [anon_sym_let_DASHenv] = ACTIONS(4529), - [anon_sym_mut] = ACTIONS(4529), - [anon_sym_const] = ACTIONS(4529), - [anon_sym_SEMI] = ACTIONS(4529), - [sym_cmd_identifier] = ACTIONS(4529), - [anon_sym_LF] = ACTIONS(4531), - [anon_sym_def] = ACTIONS(4529), - [anon_sym_export_DASHenv] = ACTIONS(4529), - [anon_sym_extern] = ACTIONS(4529), - [anon_sym_module] = ACTIONS(4529), - [anon_sym_use] = ACTIONS(4529), - [anon_sym_LBRACK] = ACTIONS(4529), - [anon_sym_LPAREN] = ACTIONS(4529), - [anon_sym_DOLLAR] = ACTIONS(4529), - [anon_sym_error] = ACTIONS(4529), - [anon_sym_DASH_DASH] = ACTIONS(4529), - [anon_sym_DASH] = ACTIONS(4529), - [anon_sym_break] = ACTIONS(4529), - [anon_sym_continue] = ACTIONS(4529), - [anon_sym_for] = ACTIONS(4529), - [anon_sym_loop] = ACTIONS(4529), - [anon_sym_while] = ACTIONS(4529), - [anon_sym_do] = ACTIONS(4529), - [anon_sym_if] = ACTIONS(4529), - [anon_sym_match] = ACTIONS(4529), - [anon_sym_LBRACE] = ACTIONS(4529), - [anon_sym_DOT_DOT] = ACTIONS(4529), - [anon_sym_try] = ACTIONS(4529), - [anon_sym_return] = ACTIONS(4529), - [anon_sym_source] = ACTIONS(4529), - [anon_sym_source_DASHenv] = ACTIONS(4529), - [anon_sym_register] = ACTIONS(4529), - [anon_sym_hide] = ACTIONS(4529), - [anon_sym_hide_DASHenv] = ACTIONS(4529), - [anon_sym_overlay] = ACTIONS(4529), - [anon_sym_as] = ACTIONS(4529), - [anon_sym_where] = ACTIONS(4529), - [anon_sym_not] = ACTIONS(4529), - [anon_sym_LPAREN2] = ACTIONS(2397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4529), - [anon_sym_DOT_DOT_LT] = ACTIONS(4529), - [anon_sym_null] = ACTIONS(4529), - [anon_sym_true] = ACTIONS(4529), - [anon_sym_false] = ACTIONS(4529), - [aux_sym__val_number_decimal_token1] = ACTIONS(4529), - [aux_sym__val_number_decimal_token2] = ACTIONS(4529), - [anon_sym_DOT2] = ACTIONS(4529), - [aux_sym__val_number_decimal_token3] = ACTIONS(4529), - [aux_sym__val_number_token1] = ACTIONS(4529), - [aux_sym__val_number_token2] = ACTIONS(4529), - [aux_sym__val_number_token3] = ACTIONS(4529), - [aux_sym__val_number_token4] = ACTIONS(4529), - [aux_sym__val_number_token5] = ACTIONS(4529), - [aux_sym__val_number_token6] = ACTIONS(4529), - [anon_sym_0b] = ACTIONS(4529), - [anon_sym_0o] = ACTIONS(4529), - [anon_sym_0x] = ACTIONS(4529), - [sym_val_date] = ACTIONS(4529), - [anon_sym_DQUOTE] = ACTIONS(4529), - [sym__str_single_quotes] = ACTIONS(4529), - [sym__str_back_ticks] = ACTIONS(4529), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4529), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4529), - [anon_sym_CARET] = ACTIONS(4529), - [anon_sym_POUND] = ACTIONS(113), + [1814] = { + [sym_expr_unary] = STATE(2682), + [sym__expr_unary_minus] = STATE(2647), + [sym_expr_binary] = STATE(2682), + [sym__expr_binary_expression] = STATE(2664), + [sym_expr_parenthesized] = STATE(2682), + [sym__val_range] = STATE(10209), + [sym__value] = STATE(2682), + [sym_val_nothing] = STATE(2681), + [sym_val_bool] = STATE(2639), + [sym_val_variable] = STATE(2681), + [sym__var] = STATE(2308), + [sym_val_number] = STATE(2681), + [sym__val_number_decimal] = STATE(1156), + [sym__val_number] = STATE(2705), + [sym_val_duration] = STATE(2681), + [sym_val_filesize] = STATE(2681), + [sym_val_binary] = STATE(2681), + [sym_val_string] = STATE(2681), + [sym__str_double_quotes] = STATE(2701), + [sym_val_interpolated] = STATE(2681), + [sym__inter_single_quotes] = STATE(2654), + [sym__inter_double_quotes] = STATE(2655), + [sym_val_list] = STATE(2681), + [sym_val_record] = STATE(2681), + [sym_val_table] = STATE(2681), + [sym_val_closure] = STATE(2681), + [sym_unquoted] = STATE(2657), + [sym__unquoted_anonymous_prefix] = STATE(10267), + [sym_comment] = STATE(1814), + [anon_sym_LBRACK] = ACTIONS(4200), + [anon_sym_LPAREN] = ACTIONS(5357), + [anon_sym_DOLLAR] = ACTIONS(5359), + [anon_sym_DASH] = ACTIONS(4206), + [anon_sym_LBRACE] = ACTIONS(4208), + [anon_sym_DOT_DOT] = ACTIONS(5361), + [anon_sym_not] = ACTIONS(4212), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5363), + [anon_sym_DOT_DOT_LT] = ACTIONS(5363), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_true] = ACTIONS(4218), + [anon_sym_false] = ACTIONS(4218), + [aux_sym__val_number_decimal_token1] = ACTIONS(4220), + [aux_sym__val_number_decimal_token2] = ACTIONS(4222), + [anon_sym_DOT2] = ACTIONS(5365), + [aux_sym__val_number_decimal_token3] = ACTIONS(4226), + [aux_sym__val_number_token1] = ACTIONS(4228), + [aux_sym__val_number_token2] = ACTIONS(4228), + [aux_sym__val_number_token3] = ACTIONS(4228), + [aux_sym__val_number_token4] = ACTIONS(5367), + [aux_sym__val_number_token5] = ACTIONS(5367), + [aux_sym__val_number_token6] = ACTIONS(5367), + [anon_sym_0b] = ACTIONS(4232), + [anon_sym_0o] = ACTIONS(4234), + [anon_sym_0x] = ACTIONS(4234), + [sym_val_date] = ACTIONS(4236), + [anon_sym_DQUOTE] = ACTIONS(4238), + [sym__str_single_quotes] = ACTIONS(4240), + [sym__str_back_ticks] = ACTIONS(4240), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4242), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4244), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5369), + [anon_sym_POUND] = ACTIONS(3), }, - [1615] = { - [sym_comment] = STATE(1615), - [anon_sym_LBRACK] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(1072), - [anon_sym_RBRACK] = ACTIONS(1072), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_DOLLAR] = ACTIONS(1072), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_in] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1072), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(4995), - [anon_sym_STAR_STAR] = ACTIONS(1072), - [anon_sym_PLUS_PLUS] = ACTIONS(1072), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_mod] = ACTIONS(1072), - [anon_sym_SLASH_SLASH] = ACTIONS(1072), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_bit_DASHshl] = ACTIONS(1072), - [anon_sym_bit_DASHshr] = ACTIONS(1072), - [anon_sym_EQ_EQ] = ACTIONS(1072), - [anon_sym_BANG_EQ] = ACTIONS(1072), - [anon_sym_LT2] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1072), - [anon_sym_GT_EQ] = ACTIONS(1072), - [anon_sym_not_DASHin] = ACTIONS(1072), - [anon_sym_starts_DASHwith] = ACTIONS(1072), - [anon_sym_ends_DASHwith] = ACTIONS(1072), - [anon_sym_EQ_TILDE] = ACTIONS(1072), - [anon_sym_BANG_TILDE] = ACTIONS(1072), - [anon_sym_bit_DASHand] = ACTIONS(1072), - [anon_sym_bit_DASHxor] = ACTIONS(1072), - [anon_sym_bit_DASHor] = ACTIONS(1072), - [anon_sym_and] = ACTIONS(1072), - [anon_sym_xor] = ACTIONS(1072), - [anon_sym_or] = ACTIONS(1072), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1072), - [anon_sym_DOT_DOT_LT] = ACTIONS(1072), - [anon_sym_null] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1072), - [anon_sym_false] = ACTIONS(1072), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1072), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1072), - [aux_sym__val_number_token1] = ACTIONS(1072), - [aux_sym__val_number_token2] = ACTIONS(1072), - [aux_sym__val_number_token3] = ACTIONS(1072), - [aux_sym__val_number_token4] = ACTIONS(1072), - [aux_sym__val_number_token5] = ACTIONS(1072), - [aux_sym__val_number_token6] = ACTIONS(1072), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1072), - [anon_sym_DQUOTE] = ACTIONS(1072), - [sym__str_single_quotes] = ACTIONS(1072), - [sym__str_back_ticks] = ACTIONS(1072), - [anon_sym_err_GT] = ACTIONS(1072), - [anon_sym_out_GT] = ACTIONS(1072), - [anon_sym_e_GT] = ACTIONS(1072), - [anon_sym_o_GT] = ACTIONS(1072), - [anon_sym_err_PLUSout_GT] = ACTIONS(1072), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1072), - [anon_sym_o_PLUSe_GT] = ACTIONS(1072), - [anon_sym_e_PLUSo_GT] = ACTIONS(1072), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1070), + [1815] = { + [sym_expr_unary] = STATE(2682), + [sym__expr_unary_minus] = STATE(2647), + [sym_expr_binary] = STATE(2682), + [sym__expr_binary_expression] = STATE(2667), + [sym_expr_parenthesized] = STATE(2682), + [sym__val_range] = STATE(10209), + [sym__value] = STATE(2682), + [sym_val_nothing] = STATE(2681), + [sym_val_bool] = STATE(2639), + [sym_val_variable] = STATE(2681), + [sym__var] = STATE(2308), + [sym_val_number] = STATE(2681), + [sym__val_number_decimal] = STATE(1156), + [sym__val_number] = STATE(2705), + [sym_val_duration] = STATE(2681), + [sym_val_filesize] = STATE(2681), + [sym_val_binary] = STATE(2681), + [sym_val_string] = STATE(2681), + [sym__str_double_quotes] = STATE(2701), + [sym_val_interpolated] = STATE(2681), + [sym__inter_single_quotes] = STATE(2654), + [sym__inter_double_quotes] = STATE(2655), + [sym_val_list] = STATE(2681), + [sym_val_record] = STATE(2681), + [sym_val_table] = STATE(2681), + [sym_val_closure] = STATE(2681), + [sym_unquoted] = STATE(2663), + [sym__unquoted_anonymous_prefix] = STATE(10267), + [sym_comment] = STATE(1815), + [anon_sym_LBRACK] = ACTIONS(4200), + [anon_sym_LPAREN] = ACTIONS(5357), + [anon_sym_DOLLAR] = ACTIONS(5359), + [anon_sym_DASH] = ACTIONS(4206), + [anon_sym_LBRACE] = ACTIONS(4208), + [anon_sym_DOT_DOT] = ACTIONS(5361), + [anon_sym_not] = ACTIONS(4212), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5363), + [anon_sym_DOT_DOT_LT] = ACTIONS(5363), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_true] = ACTIONS(4218), + [anon_sym_false] = ACTIONS(4218), + [aux_sym__val_number_decimal_token1] = ACTIONS(4220), + [aux_sym__val_number_decimal_token2] = ACTIONS(4222), + [anon_sym_DOT2] = ACTIONS(5365), + [aux_sym__val_number_decimal_token3] = ACTIONS(4226), + [aux_sym__val_number_token1] = ACTIONS(4228), + [aux_sym__val_number_token2] = ACTIONS(4228), + [aux_sym__val_number_token3] = ACTIONS(4228), + [aux_sym__val_number_token4] = ACTIONS(5367), + [aux_sym__val_number_token5] = ACTIONS(5367), + [aux_sym__val_number_token6] = ACTIONS(5367), + [anon_sym_0b] = ACTIONS(4232), + [anon_sym_0o] = ACTIONS(4234), + [anon_sym_0x] = ACTIONS(4234), + [sym_val_date] = ACTIONS(4236), + [anon_sym_DQUOTE] = ACTIONS(4238), + [sym__str_single_quotes] = ACTIONS(4240), + [sym__str_back_ticks] = ACTIONS(4240), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4242), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4244), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5369), [anon_sym_POUND] = ACTIONS(3), }, - [1616] = { - [sym_comment] = STATE(1616), - [anon_sym_SEMI] = ACTIONS(1070), - [anon_sym_LF] = ACTIONS(1072), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_RPAREN] = ACTIONS(1070), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_in] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_RBRACE] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(5001), - [anon_sym_STAR_STAR] = ACTIONS(1070), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_mod] = ACTIONS(1070), - [anon_sym_SLASH_SLASH] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_bit_DASHshl] = ACTIONS(1070), - [anon_sym_bit_DASHshr] = ACTIONS(1070), - [anon_sym_EQ_EQ] = ACTIONS(1070), - [anon_sym_BANG_EQ] = ACTIONS(1070), - [anon_sym_LT2] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1070), - [anon_sym_GT_EQ] = ACTIONS(1070), - [anon_sym_not_DASHin] = ACTIONS(1070), - [anon_sym_starts_DASHwith] = ACTIONS(1070), - [anon_sym_ends_DASHwith] = ACTIONS(1070), - [anon_sym_EQ_TILDE] = ACTIONS(1070), - [anon_sym_BANG_TILDE] = ACTIONS(1070), - [anon_sym_bit_DASHand] = ACTIONS(1070), - [anon_sym_bit_DASHxor] = ACTIONS(1070), - [anon_sym_bit_DASHor] = ACTIONS(1070), - [anon_sym_and] = ACTIONS(1070), - [anon_sym_xor] = ACTIONS(1070), - [anon_sym_or] = ACTIONS(1070), - [anon_sym_not] = ACTIONS(1070), - [anon_sym_DOT_DOT2] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1072), - [anon_sym_null] = ACTIONS(1070), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1070), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), - [anon_sym_POUND] = ACTIONS(113), + [1816] = { + [sym_expr_unary] = STATE(2682), + [sym__expr_unary_minus] = STATE(2647), + [sym_expr_binary] = STATE(2682), + [sym__expr_binary_expression] = STATE(2672), + [sym_expr_parenthesized] = STATE(2682), + [sym__val_range] = STATE(10209), + [sym__value] = STATE(2682), + [sym_val_nothing] = STATE(2681), + [sym_val_bool] = STATE(2639), + [sym_val_variable] = STATE(2681), + [sym__var] = STATE(2308), + [sym_val_number] = STATE(2681), + [sym__val_number_decimal] = STATE(1156), + [sym__val_number] = STATE(2705), + [sym_val_duration] = STATE(2681), + [sym_val_filesize] = STATE(2681), + [sym_val_binary] = STATE(2681), + [sym_val_string] = STATE(2681), + [sym__str_double_quotes] = STATE(2701), + [sym_val_interpolated] = STATE(2681), + [sym__inter_single_quotes] = STATE(2654), + [sym__inter_double_quotes] = STATE(2655), + [sym_val_list] = STATE(2681), + [sym_val_record] = STATE(2681), + [sym_val_table] = STATE(2681), + [sym_val_closure] = STATE(2681), + [sym_unquoted] = STATE(2650), + [sym__unquoted_anonymous_prefix] = STATE(10267), + [sym_comment] = STATE(1816), + [anon_sym_LBRACK] = ACTIONS(4200), + [anon_sym_LPAREN] = ACTIONS(5357), + [anon_sym_DOLLAR] = ACTIONS(5359), + [anon_sym_DASH] = ACTIONS(4206), + [anon_sym_LBRACE] = ACTIONS(4208), + [anon_sym_DOT_DOT] = ACTIONS(5361), + [anon_sym_not] = ACTIONS(4212), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5363), + [anon_sym_DOT_DOT_LT] = ACTIONS(5363), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_true] = ACTIONS(4218), + [anon_sym_false] = ACTIONS(4218), + [aux_sym__val_number_decimal_token1] = ACTIONS(4220), + [aux_sym__val_number_decimal_token2] = ACTIONS(4222), + [anon_sym_DOT2] = ACTIONS(5365), + [aux_sym__val_number_decimal_token3] = ACTIONS(4226), + [aux_sym__val_number_token1] = ACTIONS(4228), + [aux_sym__val_number_token2] = ACTIONS(4228), + [aux_sym__val_number_token3] = ACTIONS(4228), + [aux_sym__val_number_token4] = ACTIONS(5367), + [aux_sym__val_number_token5] = ACTIONS(5367), + [aux_sym__val_number_token6] = ACTIONS(5367), + [anon_sym_0b] = ACTIONS(4232), + [anon_sym_0o] = ACTIONS(4234), + [anon_sym_0x] = ACTIONS(4234), + [sym_val_date] = ACTIONS(4236), + [anon_sym_DQUOTE] = ACTIONS(4238), + [sym__str_single_quotes] = ACTIONS(4240), + [sym__str_back_ticks] = ACTIONS(4240), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4242), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4244), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5369), + [anon_sym_POUND] = ACTIONS(3), }, - [1617] = { - [sym__expr_parenthesized_immediate] = STATE(11424), - [sym_comment] = STATE(1617), - [ts_builtin_sym_end] = ACTIONS(4535), - [anon_sym_export] = ACTIONS(4533), - [anon_sym_alias] = ACTIONS(4533), - [anon_sym_let] = ACTIONS(4533), - [anon_sym_let_DASHenv] = ACTIONS(4533), - [anon_sym_mut] = ACTIONS(4533), - [anon_sym_const] = ACTIONS(4533), - [anon_sym_SEMI] = ACTIONS(4533), - [sym_cmd_identifier] = ACTIONS(4533), - [anon_sym_LF] = ACTIONS(4535), - [anon_sym_def] = ACTIONS(4533), - [anon_sym_export_DASHenv] = ACTIONS(4533), - [anon_sym_extern] = ACTIONS(4533), - [anon_sym_module] = ACTIONS(4533), - [anon_sym_use] = ACTIONS(4533), - [anon_sym_LBRACK] = ACTIONS(4533), - [anon_sym_LPAREN] = ACTIONS(4533), - [anon_sym_DOLLAR] = ACTIONS(4533), - [anon_sym_error] = ACTIONS(4533), - [anon_sym_DASH_DASH] = ACTIONS(4533), - [anon_sym_DASH] = ACTIONS(4533), - [anon_sym_break] = ACTIONS(4533), - [anon_sym_continue] = ACTIONS(4533), - [anon_sym_for] = ACTIONS(4533), - [anon_sym_loop] = ACTIONS(4533), - [anon_sym_while] = ACTIONS(4533), - [anon_sym_do] = ACTIONS(4533), - [anon_sym_if] = ACTIONS(4533), - [anon_sym_match] = ACTIONS(4533), - [anon_sym_LBRACE] = ACTIONS(4533), - [anon_sym_DOT_DOT] = ACTIONS(4533), - [anon_sym_try] = ACTIONS(4533), - [anon_sym_return] = ACTIONS(4533), - [anon_sym_source] = ACTIONS(4533), - [anon_sym_source_DASHenv] = ACTIONS(4533), - [anon_sym_register] = ACTIONS(4533), - [anon_sym_hide] = ACTIONS(4533), - [anon_sym_hide_DASHenv] = ACTIONS(4533), - [anon_sym_overlay] = ACTIONS(4533), - [anon_sym_as] = ACTIONS(4533), - [anon_sym_where] = ACTIONS(4533), - [anon_sym_not] = ACTIONS(4533), - [anon_sym_LPAREN2] = ACTIONS(2397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4533), - [anon_sym_DOT_DOT_LT] = ACTIONS(4533), - [anon_sym_null] = ACTIONS(4533), - [anon_sym_true] = ACTIONS(4533), - [anon_sym_false] = ACTIONS(4533), - [aux_sym__val_number_decimal_token1] = ACTIONS(4533), - [aux_sym__val_number_decimal_token2] = ACTIONS(4533), - [anon_sym_DOT2] = ACTIONS(4533), - [aux_sym__val_number_decimal_token3] = ACTIONS(4533), - [aux_sym__val_number_token1] = ACTIONS(4533), - [aux_sym__val_number_token2] = ACTIONS(4533), - [aux_sym__val_number_token3] = ACTIONS(4533), - [aux_sym__val_number_token4] = ACTIONS(4533), - [aux_sym__val_number_token5] = ACTIONS(4533), - [aux_sym__val_number_token6] = ACTIONS(4533), - [anon_sym_0b] = ACTIONS(4533), - [anon_sym_0o] = ACTIONS(4533), - [anon_sym_0x] = ACTIONS(4533), - [sym_val_date] = ACTIONS(4533), - [anon_sym_DQUOTE] = ACTIONS(4533), - [sym__str_single_quotes] = ACTIONS(4533), - [sym__str_back_ticks] = ACTIONS(4533), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4533), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4533), - [anon_sym_CARET] = ACTIONS(4533), - [anon_sym_POUND] = ACTIONS(113), + [1817] = { + [sym_expr_unary] = STATE(2682), + [sym__expr_unary_minus] = STATE(2647), + [sym_expr_binary] = STATE(2682), + [sym__expr_binary_expression] = STATE(2674), + [sym_expr_parenthesized] = STATE(2682), + [sym__val_range] = STATE(10209), + [sym__value] = STATE(2682), + [sym_val_nothing] = STATE(2681), + [sym_val_bool] = STATE(2639), + [sym_val_variable] = STATE(2681), + [sym__var] = STATE(2308), + [sym_val_number] = STATE(2681), + [sym__val_number_decimal] = STATE(1156), + [sym__val_number] = STATE(2705), + [sym_val_duration] = STATE(2681), + [sym_val_filesize] = STATE(2681), + [sym_val_binary] = STATE(2681), + [sym_val_string] = STATE(2681), + [sym__str_double_quotes] = STATE(2701), + [sym_val_interpolated] = STATE(2681), + [sym__inter_single_quotes] = STATE(2654), + [sym__inter_double_quotes] = STATE(2655), + [sym_val_list] = STATE(2681), + [sym_val_record] = STATE(2681), + [sym_val_table] = STATE(2681), + [sym_val_closure] = STATE(2681), + [sym_unquoted] = STATE(2673), + [sym__unquoted_anonymous_prefix] = STATE(10267), + [sym_comment] = STATE(1817), + [anon_sym_LBRACK] = ACTIONS(4200), + [anon_sym_LPAREN] = ACTIONS(5357), + [anon_sym_DOLLAR] = ACTIONS(5359), + [anon_sym_DASH] = ACTIONS(4206), + [anon_sym_LBRACE] = ACTIONS(4208), + [anon_sym_DOT_DOT] = ACTIONS(5361), + [anon_sym_not] = ACTIONS(4212), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5363), + [anon_sym_DOT_DOT_LT] = ACTIONS(5363), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_true] = ACTIONS(4218), + [anon_sym_false] = ACTIONS(4218), + [aux_sym__val_number_decimal_token1] = ACTIONS(4220), + [aux_sym__val_number_decimal_token2] = ACTIONS(4222), + [anon_sym_DOT2] = ACTIONS(5365), + [aux_sym__val_number_decimal_token3] = ACTIONS(4226), + [aux_sym__val_number_token1] = ACTIONS(4228), + [aux_sym__val_number_token2] = ACTIONS(4228), + [aux_sym__val_number_token3] = ACTIONS(4228), + [aux_sym__val_number_token4] = ACTIONS(5367), + [aux_sym__val_number_token5] = ACTIONS(5367), + [aux_sym__val_number_token6] = ACTIONS(5367), + [anon_sym_0b] = ACTIONS(4232), + [anon_sym_0o] = ACTIONS(4234), + [anon_sym_0x] = ACTIONS(4234), + [sym_val_date] = ACTIONS(4236), + [anon_sym_DQUOTE] = ACTIONS(4238), + [sym__str_single_quotes] = ACTIONS(4240), + [sym__str_back_ticks] = ACTIONS(4240), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4242), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4244), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5369), + [anon_sym_POUND] = ACTIONS(3), }, - [1618] = { - [sym_comment] = STATE(1618), - [anon_sym_LBRACK] = ACTIONS(938), - [anon_sym_COMMA] = ACTIONS(938), - [anon_sym_RBRACK] = ACTIONS(938), - [anon_sym_LPAREN] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(938), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(938), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_STAR_STAR] = ACTIONS(938), - [anon_sym_PLUS_PLUS] = ACTIONS(938), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(938), - [anon_sym_SLASH_SLASH] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(938), - [anon_sym_bit_DASHshr] = ACTIONS(938), - [anon_sym_EQ_EQ] = ACTIONS(938), - [anon_sym_BANG_EQ] = ACTIONS(938), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(938), - [anon_sym_GT_EQ] = ACTIONS(938), - [anon_sym_not_DASHin] = ACTIONS(938), - [anon_sym_starts_DASHwith] = ACTIONS(938), - [anon_sym_ends_DASHwith] = ACTIONS(938), - [anon_sym_EQ_TILDE] = ACTIONS(938), - [anon_sym_BANG_TILDE] = ACTIONS(938), - [anon_sym_bit_DASHand] = ACTIONS(938), - [anon_sym_bit_DASHxor] = ACTIONS(938), - [anon_sym_bit_DASHor] = ACTIONS(938), - [anon_sym_and] = ACTIONS(938), - [anon_sym_xor] = ACTIONS(938), - [anon_sym_or] = ACTIONS(938), - [anon_sym_DOT_DOT_EQ] = ACTIONS(938), - [anon_sym_DOT_DOT_LT] = ACTIONS(938), - [aux_sym__immediate_decimal_token1] = ACTIONS(5003), - [anon_sym_null] = ACTIONS(938), - [anon_sym_true] = ACTIONS(938), - [anon_sym_false] = ACTIONS(938), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(938), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(938), - [aux_sym__val_number_token1] = ACTIONS(938), - [aux_sym__val_number_token2] = ACTIONS(938), - [aux_sym__val_number_token3] = ACTIONS(938), - [aux_sym__val_number_token4] = ACTIONS(938), - [aux_sym__val_number_token5] = ACTIONS(938), - [aux_sym__val_number_token6] = ACTIONS(938), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(938), - [sym__str_single_quotes] = ACTIONS(938), - [sym__str_back_ticks] = ACTIONS(938), - [anon_sym_err_GT] = ACTIONS(938), - [anon_sym_out_GT] = ACTIONS(938), - [anon_sym_e_GT] = ACTIONS(938), - [anon_sym_o_GT] = ACTIONS(938), - [anon_sym_err_PLUSout_GT] = ACTIONS(938), - [anon_sym_out_PLUSerr_GT] = ACTIONS(938), - [anon_sym_o_PLUSe_GT] = ACTIONS(938), - [anon_sym_e_PLUSo_GT] = ACTIONS(938), - [aux_sym_unquoted_token2] = ACTIONS(5005), - [aux_sym__unquoted_in_list_token1] = ACTIONS(936), + [1818] = { + [sym_expr_unary] = STATE(2682), + [sym__expr_unary_minus] = STATE(2647), + [sym_expr_binary] = STATE(2682), + [sym__expr_binary_expression] = STATE(2676), + [sym_expr_parenthesized] = STATE(2682), + [sym__val_range] = STATE(10209), + [sym__value] = STATE(2682), + [sym_val_nothing] = STATE(2681), + [sym_val_bool] = STATE(2639), + [sym_val_variable] = STATE(2681), + [sym__var] = STATE(2308), + [sym_val_number] = STATE(2681), + [sym__val_number_decimal] = STATE(1156), + [sym__val_number] = STATE(2705), + [sym_val_duration] = STATE(2681), + [sym_val_filesize] = STATE(2681), + [sym_val_binary] = STATE(2681), + [sym_val_string] = STATE(2681), + [sym__str_double_quotes] = STATE(2701), + [sym_val_interpolated] = STATE(2681), + [sym__inter_single_quotes] = STATE(2654), + [sym__inter_double_quotes] = STATE(2655), + [sym_val_list] = STATE(2681), + [sym_val_record] = STATE(2681), + [sym_val_table] = STATE(2681), + [sym_val_closure] = STATE(2681), + [sym_unquoted] = STATE(2692), + [sym__unquoted_anonymous_prefix] = STATE(10267), + [sym_comment] = STATE(1818), + [anon_sym_LBRACK] = ACTIONS(4200), + [anon_sym_LPAREN] = ACTIONS(5357), + [anon_sym_DOLLAR] = ACTIONS(5359), + [anon_sym_DASH] = ACTIONS(4206), + [anon_sym_LBRACE] = ACTIONS(4208), + [anon_sym_DOT_DOT] = ACTIONS(5361), + [anon_sym_not] = ACTIONS(4212), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5363), + [anon_sym_DOT_DOT_LT] = ACTIONS(5363), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_true] = ACTIONS(4218), + [anon_sym_false] = ACTIONS(4218), + [aux_sym__val_number_decimal_token1] = ACTIONS(4220), + [aux_sym__val_number_decimal_token2] = ACTIONS(4222), + [anon_sym_DOT2] = ACTIONS(5365), + [aux_sym__val_number_decimal_token3] = ACTIONS(4226), + [aux_sym__val_number_token1] = ACTIONS(4228), + [aux_sym__val_number_token2] = ACTIONS(4228), + [aux_sym__val_number_token3] = ACTIONS(4228), + [aux_sym__val_number_token4] = ACTIONS(5367), + [aux_sym__val_number_token5] = ACTIONS(5367), + [aux_sym__val_number_token6] = ACTIONS(5367), + [anon_sym_0b] = ACTIONS(4232), + [anon_sym_0o] = ACTIONS(4234), + [anon_sym_0x] = ACTIONS(4234), + [sym_val_date] = ACTIONS(4236), + [anon_sym_DQUOTE] = ACTIONS(4238), + [sym__str_single_quotes] = ACTIONS(4240), + [sym__str_back_ticks] = ACTIONS(4240), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4242), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4244), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5369), [anon_sym_POUND] = ACTIONS(3), }, - [1619] = { - [sym_comment] = STATE(1619), - [ts_builtin_sym_end] = ACTIONS(2439), - [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), - [anon_sym_SEMI] = ACTIONS(2437), - [sym_cmd_identifier] = ACTIONS(2437), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_DASH_DASH] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_as] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_not] = ACTIONS(2437), - [anon_sym_DOT] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [anon_sym_DOT2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2437), - [anon_sym_0o] = ACTIONS(2437), - [anon_sym_0x] = ACTIONS(2437), - [sym_val_date] = 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_CARET] = ACTIONS(2437), - [aux_sym_unquoted_token2] = ACTIONS(2437), - [anon_sym_POUND] = ACTIONS(113), + [1819] = { + [sym_expr_unary] = STATE(2682), + [sym__expr_unary_minus] = STATE(2647), + [sym_expr_binary] = STATE(2682), + [sym__expr_binary_expression] = STATE(2678), + [sym_expr_parenthesized] = STATE(2682), + [sym__val_range] = STATE(10209), + [sym__value] = STATE(2682), + [sym_val_nothing] = STATE(2681), + [sym_val_bool] = STATE(2639), + [sym_val_variable] = STATE(2681), + [sym__var] = STATE(2308), + [sym_val_number] = STATE(2681), + [sym__val_number_decimal] = STATE(1156), + [sym__val_number] = STATE(2705), + [sym_val_duration] = STATE(2681), + [sym_val_filesize] = STATE(2681), + [sym_val_binary] = STATE(2681), + [sym_val_string] = STATE(2681), + [sym__str_double_quotes] = STATE(2701), + [sym_val_interpolated] = STATE(2681), + [sym__inter_single_quotes] = STATE(2654), + [sym__inter_double_quotes] = STATE(2655), + [sym_val_list] = STATE(2681), + [sym_val_record] = STATE(2681), + [sym_val_table] = STATE(2681), + [sym_val_closure] = STATE(2681), + [sym_unquoted] = STATE(2693), + [sym__unquoted_anonymous_prefix] = STATE(10267), + [sym_comment] = STATE(1819), + [anon_sym_LBRACK] = ACTIONS(4200), + [anon_sym_LPAREN] = ACTIONS(5357), + [anon_sym_DOLLAR] = ACTIONS(5359), + [anon_sym_DASH] = ACTIONS(4206), + [anon_sym_LBRACE] = ACTIONS(4208), + [anon_sym_DOT_DOT] = ACTIONS(5361), + [anon_sym_not] = ACTIONS(4212), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5363), + [anon_sym_DOT_DOT_LT] = ACTIONS(5363), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_true] = ACTIONS(4218), + [anon_sym_false] = ACTIONS(4218), + [aux_sym__val_number_decimal_token1] = ACTIONS(4220), + [aux_sym__val_number_decimal_token2] = ACTIONS(4222), + [anon_sym_DOT2] = ACTIONS(5365), + [aux_sym__val_number_decimal_token3] = ACTIONS(4226), + [aux_sym__val_number_token1] = ACTIONS(4228), + [aux_sym__val_number_token2] = ACTIONS(4228), + [aux_sym__val_number_token3] = ACTIONS(4228), + [aux_sym__val_number_token4] = ACTIONS(5367), + [aux_sym__val_number_token5] = ACTIONS(5367), + [aux_sym__val_number_token6] = ACTIONS(5367), + [anon_sym_0b] = ACTIONS(4232), + [anon_sym_0o] = ACTIONS(4234), + [anon_sym_0x] = ACTIONS(4234), + [sym_val_date] = ACTIONS(4236), + [anon_sym_DQUOTE] = ACTIONS(4238), + [sym__str_single_quotes] = ACTIONS(4240), + [sym__str_back_ticks] = ACTIONS(4240), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4242), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4244), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5369), + [anon_sym_POUND] = ACTIONS(3), }, - [1620] = { - [sym_comment] = STATE(1620), - [anon_sym_export] = ACTIONS(3866), - [anon_sym_alias] = ACTIONS(3866), - [anon_sym_let] = ACTIONS(3866), - [anon_sym_let_DASHenv] = ACTIONS(3866), - [anon_sym_mut] = ACTIONS(3866), - [anon_sym_const] = ACTIONS(3866), - [anon_sym_SEMI] = ACTIONS(3866), - [sym_cmd_identifier] = ACTIONS(3866), - [anon_sym_LF] = ACTIONS(3868), - [anon_sym_def] = ACTIONS(3866), - [anon_sym_export_DASHenv] = ACTIONS(3866), - [anon_sym_extern] = ACTIONS(3866), - [anon_sym_module] = ACTIONS(3866), - [anon_sym_use] = ACTIONS(3866), - [anon_sym_LBRACK] = ACTIONS(3866), - [anon_sym_LPAREN] = ACTIONS(3866), - [anon_sym_RPAREN] = ACTIONS(3866), - [anon_sym_DOLLAR] = ACTIONS(3866), - [anon_sym_error] = ACTIONS(3866), - [anon_sym_DASH] = ACTIONS(3866), - [anon_sym_break] = ACTIONS(3866), - [anon_sym_continue] = ACTIONS(3866), - [anon_sym_for] = ACTIONS(3866), - [anon_sym_loop] = ACTIONS(3866), - [anon_sym_while] = ACTIONS(3866), - [anon_sym_do] = ACTIONS(3866), - [anon_sym_if] = ACTIONS(3866), - [anon_sym_match] = ACTIONS(3866), - [anon_sym_LBRACE] = ACTIONS(3866), - [anon_sym_RBRACE] = ACTIONS(3866), - [anon_sym_DOT_DOT] = ACTIONS(3866), - [anon_sym_try] = ACTIONS(3866), - [anon_sym_return] = ACTIONS(3866), - [anon_sym_source] = ACTIONS(3866), - [anon_sym_source_DASHenv] = ACTIONS(3866), - [anon_sym_register] = ACTIONS(3866), - [anon_sym_hide] = ACTIONS(3866), - [anon_sym_hide_DASHenv] = ACTIONS(3866), - [anon_sym_overlay] = ACTIONS(3866), - [anon_sym_where] = ACTIONS(3866), - [anon_sym_not] = ACTIONS(3866), - [anon_sym_DOT_DOT2] = ACTIONS(5007), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3866), - [anon_sym_DOT_DOT_LT] = ACTIONS(3866), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(5009), - [anon_sym_DOT_DOT_LT2] = ACTIONS(5009), - [anon_sym_null] = ACTIONS(3866), - [anon_sym_true] = ACTIONS(3866), - [anon_sym_false] = ACTIONS(3866), - [aux_sym__val_number_decimal_token1] = ACTIONS(3866), - [aux_sym__val_number_decimal_token2] = ACTIONS(3866), - [anon_sym_DOT2] = ACTIONS(3866), - [aux_sym__val_number_decimal_token3] = ACTIONS(3866), - [aux_sym__val_number_token1] = ACTIONS(3866), - [aux_sym__val_number_token2] = ACTIONS(3866), - [aux_sym__val_number_token3] = ACTIONS(3866), - [aux_sym__val_number_token4] = ACTIONS(3866), - [aux_sym__val_number_token5] = ACTIONS(3866), - [aux_sym__val_number_token6] = ACTIONS(3866), - [anon_sym_0b] = ACTIONS(3866), - [anon_sym_0o] = ACTIONS(3866), - [anon_sym_0x] = ACTIONS(3866), - [sym_val_date] = ACTIONS(3866), - [anon_sym_DQUOTE] = ACTIONS(3866), - [sym__str_single_quotes] = ACTIONS(3866), - [sym__str_back_ticks] = ACTIONS(3866), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3866), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), - [anon_sym_CARET] = ACTIONS(3866), - [anon_sym_POUND] = ACTIONS(113), + [1820] = { + [sym_expr_unary] = STATE(2682), + [sym__expr_unary_minus] = STATE(2647), + [sym_expr_binary] = STATE(2682), + [sym__expr_binary_expression] = STATE(2680), + [sym_expr_parenthesized] = STATE(2682), + [sym__val_range] = STATE(10209), + [sym__value] = STATE(2682), + [sym_val_nothing] = STATE(2681), + [sym_val_bool] = STATE(2639), + [sym_val_variable] = STATE(2681), + [sym__var] = STATE(2308), + [sym_val_number] = STATE(2681), + [sym__val_number_decimal] = STATE(1156), + [sym__val_number] = STATE(2705), + [sym_val_duration] = STATE(2681), + [sym_val_filesize] = STATE(2681), + [sym_val_binary] = STATE(2681), + [sym_val_string] = STATE(2681), + [sym__str_double_quotes] = STATE(2701), + [sym_val_interpolated] = STATE(2681), + [sym__inter_single_quotes] = STATE(2654), + [sym__inter_double_quotes] = STATE(2655), + [sym_val_list] = STATE(2681), + [sym_val_record] = STATE(2681), + [sym_val_table] = STATE(2681), + [sym_val_closure] = STATE(2681), + [sym_unquoted] = STATE(2695), + [sym__unquoted_anonymous_prefix] = STATE(10267), + [sym_comment] = STATE(1820), + [anon_sym_LBRACK] = ACTIONS(4200), + [anon_sym_LPAREN] = ACTIONS(5357), + [anon_sym_DOLLAR] = ACTIONS(5359), + [anon_sym_DASH] = ACTIONS(4206), + [anon_sym_LBRACE] = ACTIONS(4208), + [anon_sym_DOT_DOT] = ACTIONS(5361), + [anon_sym_not] = ACTIONS(4212), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5363), + [anon_sym_DOT_DOT_LT] = ACTIONS(5363), + [anon_sym_null] = ACTIONS(4216), + [anon_sym_true] = ACTIONS(4218), + [anon_sym_false] = ACTIONS(4218), + [aux_sym__val_number_decimal_token1] = ACTIONS(4220), + [aux_sym__val_number_decimal_token2] = ACTIONS(4222), + [anon_sym_DOT2] = ACTIONS(5365), + [aux_sym__val_number_decimal_token3] = ACTIONS(4226), + [aux_sym__val_number_token1] = ACTIONS(4228), + [aux_sym__val_number_token2] = ACTIONS(4228), + [aux_sym__val_number_token3] = ACTIONS(4228), + [aux_sym__val_number_token4] = ACTIONS(5367), + [aux_sym__val_number_token5] = ACTIONS(5367), + [aux_sym__val_number_token6] = ACTIONS(5367), + [anon_sym_0b] = ACTIONS(4232), + [anon_sym_0o] = ACTIONS(4234), + [anon_sym_0x] = ACTIONS(4234), + [sym_val_date] = ACTIONS(4236), + [anon_sym_DQUOTE] = ACTIONS(4238), + [sym__str_single_quotes] = ACTIONS(4240), + [sym__str_back_ticks] = ACTIONS(4240), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4242), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4244), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5369), + [anon_sym_POUND] = ACTIONS(3), }, - [1621] = { - [sym_comment] = STATE(1621), - [ts_builtin_sym_end] = ACTIONS(2549), - [anon_sym_export] = ACTIONS(2547), - [anon_sym_alias] = ACTIONS(2547), - [anon_sym_let] = ACTIONS(2547), - [anon_sym_let_DASHenv] = ACTIONS(2547), - [anon_sym_mut] = ACTIONS(2547), - [anon_sym_const] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [sym_cmd_identifier] = ACTIONS(2547), - [anon_sym_LF] = ACTIONS(2549), - [anon_sym_def] = ACTIONS(2547), - [anon_sym_export_DASHenv] = ACTIONS(2547), - [anon_sym_extern] = ACTIONS(2547), - [anon_sym_module] = ACTIONS(2547), - [anon_sym_use] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_DOLLAR] = ACTIONS(2547), - [anon_sym_error] = ACTIONS(2547), - [anon_sym_DASH_DASH] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_break] = ACTIONS(2547), - [anon_sym_continue] = ACTIONS(2547), - [anon_sym_for] = ACTIONS(2547), - [anon_sym_loop] = ACTIONS(2547), - [anon_sym_while] = ACTIONS(2547), - [anon_sym_do] = ACTIONS(2547), - [anon_sym_if] = ACTIONS(2547), - [anon_sym_match] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2547), - [anon_sym_DOT_DOT] = ACTIONS(2547), - [anon_sym_try] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2547), - [anon_sym_source] = ACTIONS(2547), - [anon_sym_source_DASHenv] = ACTIONS(2547), - [anon_sym_register] = ACTIONS(2547), - [anon_sym_hide] = ACTIONS(2547), - [anon_sym_hide_DASHenv] = ACTIONS(2547), - [anon_sym_overlay] = ACTIONS(2547), - [anon_sym_as] = ACTIONS(2547), - [anon_sym_where] = ACTIONS(2547), - [anon_sym_not] = ACTIONS(2547), - [anon_sym_DOT] = ACTIONS(2547), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), - [anon_sym_DOT_DOT_LT] = ACTIONS(2547), - [anon_sym_null] = ACTIONS(2547), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [aux_sym__val_number_decimal_token1] = ACTIONS(2547), - [aux_sym__val_number_decimal_token2] = ACTIONS(2547), - [anon_sym_DOT2] = ACTIONS(2547), - [aux_sym__val_number_decimal_token3] = ACTIONS(2547), - [aux_sym__val_number_token1] = ACTIONS(2547), - [aux_sym__val_number_token2] = ACTIONS(2547), - [aux_sym__val_number_token3] = ACTIONS(2547), - [aux_sym__val_number_token4] = ACTIONS(2547), - [aux_sym__val_number_token5] = ACTIONS(2547), - [aux_sym__val_number_token6] = ACTIONS(2547), - [anon_sym_0b] = ACTIONS(2547), - [anon_sym_0o] = ACTIONS(2547), - [anon_sym_0x] = ACTIONS(2547), - [sym_val_date] = ACTIONS(2547), - [anon_sym_DQUOTE] = ACTIONS(2547), - [sym__str_single_quotes] = ACTIONS(2547), - [sym__str_back_ticks] = ACTIONS(2547), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2547), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2547), - [aux_sym_unquoted_token2] = ACTIONS(2547), - [anon_sym_POUND] = ACTIONS(113), + [1821] = { + [sym_comment] = STATE(1821), + [anon_sym_LBRACK] = ACTIONS(1039), + [anon_sym_COMMA] = ACTIONS(1039), + [anon_sym_LPAREN] = ACTIONS(1039), + [anon_sym_DOLLAR] = ACTIONS(1039), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_in] = ACTIONS(1037), + [anon_sym_LBRACE] = ACTIONS(1039), + [anon_sym_RBRACE] = ACTIONS(1039), + [anon_sym__] = ACTIONS(1037), + [anon_sym_DOT_DOT] = ACTIONS(1037), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_STAR_STAR] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(1039), + [anon_sym_SLASH] = ACTIONS(1037), + [anon_sym_mod] = ACTIONS(1039), + [anon_sym_SLASH_SLASH] = ACTIONS(1039), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_bit_DASHshl] = ACTIONS(1039), + [anon_sym_bit_DASHshr] = ACTIONS(1039), + [anon_sym_EQ_EQ] = ACTIONS(1039), + [anon_sym_BANG_EQ] = ACTIONS(1039), + [anon_sym_LT2] = ACTIONS(1037), + [anon_sym_LT_EQ] = ACTIONS(1039), + [anon_sym_GT_EQ] = ACTIONS(1039), + [anon_sym_not_DASHin] = ACTIONS(1039), + [anon_sym_starts_DASHwith] = ACTIONS(1039), + [anon_sym_ends_DASHwith] = ACTIONS(1039), + [anon_sym_EQ_TILDE] = ACTIONS(1039), + [anon_sym_BANG_TILDE] = ACTIONS(1039), + [anon_sym_bit_DASHand] = ACTIONS(1039), + [anon_sym_bit_DASHxor] = ACTIONS(1039), + [anon_sym_bit_DASHor] = ACTIONS(1039), + [anon_sym_and] = ACTIONS(1039), + [anon_sym_xor] = ACTIONS(1039), + [anon_sym_or] = ACTIONS(1039), + [anon_sym_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1039), + [anon_sym_DOT_DOT_LT] = ACTIONS(1039), + [anon_sym_null] = ACTIONS(1039), + [anon_sym_true] = ACTIONS(1039), + [anon_sym_false] = ACTIONS(1039), + [aux_sym__val_number_decimal_token1] = ACTIONS(1037), + [aux_sym__val_number_decimal_token2] = ACTIONS(1039), + [anon_sym_DOT2] = ACTIONS(1037), + [aux_sym__val_number_decimal_token3] = ACTIONS(1039), + [aux_sym__val_number_token1] = ACTIONS(1039), + [aux_sym__val_number_token2] = ACTIONS(1039), + [aux_sym__val_number_token3] = ACTIONS(1039), + [aux_sym__val_number_token4] = ACTIONS(1039), + [aux_sym__val_number_token5] = ACTIONS(1039), + [aux_sym__val_number_token6] = ACTIONS(1039), + [anon_sym_0b] = ACTIONS(1037), + [anon_sym_0o] = ACTIONS(1037), + [anon_sym_0x] = ACTIONS(1037), + [sym_val_date] = ACTIONS(1039), + [anon_sym_DQUOTE] = ACTIONS(1039), + [sym__str_single_quotes] = ACTIONS(1039), + [sym__str_back_ticks] = ACTIONS(1039), + [anon_sym_err_GT] = ACTIONS(1039), + [anon_sym_out_GT] = ACTIONS(1039), + [anon_sym_e_GT] = ACTIONS(1039), + [anon_sym_o_GT] = ACTIONS(1039), + [anon_sym_err_PLUSout_GT] = ACTIONS(1039), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1039), + [anon_sym_o_PLUSe_GT] = ACTIONS(1039), + [anon_sym_e_PLUSo_GT] = ACTIONS(1039), + [aux_sym_unquoted_token1] = ACTIONS(1037), + [anon_sym_POUND] = ACTIONS(3), }, - [1622] = { - [sym_comment] = STATE(1622), - [anon_sym_LBRACK] = ACTIONS(1280), - [anon_sym_COMMA] = ACTIONS(1280), - [anon_sym_RBRACK] = ACTIONS(1280), - [anon_sym_LPAREN] = ACTIONS(1280), - [anon_sym_DOLLAR] = ACTIONS(1280), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_DASH_DASH] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_in] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1280), - [anon_sym_DOT_DOT] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1280), - [anon_sym_STAR_STAR] = ACTIONS(1280), - [anon_sym_PLUS_PLUS] = ACTIONS(1280), - [anon_sym_SLASH] = ACTIONS(1280), - [anon_sym_mod] = ACTIONS(1280), - [anon_sym_SLASH_SLASH] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_bit_DASHshl] = ACTIONS(1280), - [anon_sym_bit_DASHshr] = ACTIONS(1280), - [anon_sym_EQ_EQ] = ACTIONS(1280), - [anon_sym_BANG_EQ] = ACTIONS(1280), - [anon_sym_LT2] = ACTIONS(1280), - [anon_sym_LT_EQ] = ACTIONS(1280), - [anon_sym_GT_EQ] = ACTIONS(1280), - [anon_sym_not_DASHin] = ACTIONS(1280), - [anon_sym_starts_DASHwith] = ACTIONS(1280), - [anon_sym_ends_DASHwith] = ACTIONS(1280), - [anon_sym_EQ_TILDE] = ACTIONS(1280), - [anon_sym_BANG_TILDE] = ACTIONS(1280), - [anon_sym_bit_DASHand] = ACTIONS(1280), - [anon_sym_bit_DASHxor] = ACTIONS(1280), - [anon_sym_bit_DASHor] = ACTIONS(1280), - [anon_sym_and] = ACTIONS(1280), - [anon_sym_xor] = ACTIONS(1280), - [anon_sym_or] = ACTIONS(1280), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1280), - [anon_sym_DOT_DOT_LT] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1280), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [aux_sym__val_number_decimal_token1] = ACTIONS(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1280), - [anon_sym_DOT2] = ACTIONS(1280), - [aux_sym__val_number_decimal_token3] = ACTIONS(1280), - [aux_sym__val_number_token1] = ACTIONS(1280), - [aux_sym__val_number_token2] = ACTIONS(1280), - [aux_sym__val_number_token3] = ACTIONS(1280), - [aux_sym__val_number_token4] = ACTIONS(1280), - [aux_sym__val_number_token5] = ACTIONS(1280), - [aux_sym__val_number_token6] = ACTIONS(1280), - [anon_sym_0b] = ACTIONS(1280), - [anon_sym_0o] = ACTIONS(1280), - [anon_sym_0x] = ACTIONS(1280), - [sym_val_date] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1280), - [sym__str_single_quotes] = ACTIONS(1280), - [sym__str_back_ticks] = ACTIONS(1280), - [sym__entry_separator] = ACTIONS(1282), - [anon_sym_err_GT] = ACTIONS(1280), - [anon_sym_out_GT] = ACTIONS(1280), - [anon_sym_e_GT] = ACTIONS(1280), - [anon_sym_o_GT] = ACTIONS(1280), - [anon_sym_err_PLUSout_GT] = ACTIONS(1280), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1280), - [anon_sym_o_PLUSe_GT] = ACTIONS(1280), - [anon_sym_e_PLUSo_GT] = ACTIONS(1280), - [aux_sym_unquoted_token6] = ACTIONS(1280), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1280), - [anon_sym_POUND] = ACTIONS(113), + [1822] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(6300), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(6091), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(5734), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(4651), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4749), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1822), + [anon_sym_LBRACK] = ACTIONS(4248), + [anon_sym_LPAREN] = ACTIONS(5371), + [anon_sym_DOLLAR] = ACTIONS(5373), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4256), + [anon_sym_DOT_DOT] = ACTIONS(5375), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5377), + [anon_sym_DOT_DOT_LT] = ACTIONS(5377), + [anon_sym_null] = ACTIONS(4264), + [anon_sym_true] = ACTIONS(4266), + [anon_sym_false] = ACTIONS(4266), + [aux_sym__val_number_decimal_token1] = ACTIONS(4268), + [aux_sym__val_number_decimal_token2] = ACTIONS(4270), + [anon_sym_DOT2] = ACTIONS(5379), + [aux_sym__val_number_decimal_token3] = ACTIONS(4274), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5381), + [aux_sym__val_number_token5] = ACTIONS(5381), + [aux_sym__val_number_token6] = ACTIONS(5381), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(4284), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), }, - [1623] = { - [sym_comment] = STATE(1623), - [ts_builtin_sym_end] = ACTIONS(3507), - [anon_sym_export] = ACTIONS(3505), - [anon_sym_alias] = ACTIONS(3505), - [anon_sym_let] = ACTIONS(3505), - [anon_sym_let_DASHenv] = ACTIONS(3505), - [anon_sym_mut] = ACTIONS(3505), - [anon_sym_const] = ACTIONS(3505), - [anon_sym_SEMI] = ACTIONS(3505), - [sym_cmd_identifier] = ACTIONS(3505), - [anon_sym_LF] = ACTIONS(3507), - [anon_sym_def] = ACTIONS(3505), - [anon_sym_export_DASHenv] = ACTIONS(3505), - [anon_sym_extern] = ACTIONS(3505), - [anon_sym_module] = ACTIONS(3505), - [anon_sym_use] = ACTIONS(3505), - [anon_sym_LBRACK] = ACTIONS(3505), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_error] = ACTIONS(3505), - [anon_sym_DASH_DASH] = ACTIONS(3505), - [anon_sym_DASH] = ACTIONS(3505), - [anon_sym_break] = ACTIONS(3505), - [anon_sym_continue] = ACTIONS(3505), - [anon_sym_for] = ACTIONS(3505), - [anon_sym_loop] = ACTIONS(3505), - [anon_sym_while] = ACTIONS(3505), - [anon_sym_do] = ACTIONS(3505), - [anon_sym_if] = ACTIONS(3505), - [anon_sym_match] = ACTIONS(3505), - [anon_sym_LBRACE] = ACTIONS(3505), - [anon_sym_DOT_DOT] = ACTIONS(3505), - [anon_sym_try] = ACTIONS(3505), - [anon_sym_return] = ACTIONS(3505), - [anon_sym_source] = ACTIONS(3505), - [anon_sym_source_DASHenv] = ACTIONS(3505), - [anon_sym_register] = ACTIONS(3505), - [anon_sym_hide] = ACTIONS(3505), - [anon_sym_hide_DASHenv] = ACTIONS(3505), - [anon_sym_overlay] = ACTIONS(3505), - [anon_sym_as] = ACTIONS(3505), - [anon_sym_where] = ACTIONS(3505), - [anon_sym_not] = ACTIONS(3505), - [anon_sym_DOT] = ACTIONS(3505), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3505), - [anon_sym_DOT_DOT_LT] = ACTIONS(3505), - [anon_sym_null] = ACTIONS(3505), - [anon_sym_true] = ACTIONS(3505), - [anon_sym_false] = ACTIONS(3505), - [aux_sym__val_number_decimal_token1] = ACTIONS(3505), - [aux_sym__val_number_decimal_token2] = ACTIONS(3505), - [anon_sym_DOT2] = ACTIONS(3505), - [aux_sym__val_number_decimal_token3] = ACTIONS(3505), - [aux_sym__val_number_token1] = ACTIONS(3505), - [aux_sym__val_number_token2] = ACTIONS(3505), - [aux_sym__val_number_token3] = ACTIONS(3505), - [aux_sym__val_number_token4] = ACTIONS(3505), - [aux_sym__val_number_token5] = ACTIONS(3505), - [aux_sym__val_number_token6] = ACTIONS(3505), - [anon_sym_0b] = ACTIONS(3505), - [anon_sym_0o] = ACTIONS(3505), - [anon_sym_0x] = ACTIONS(3505), - [sym_val_date] = ACTIONS(3505), - [anon_sym_DQUOTE] = ACTIONS(3505), - [sym__str_single_quotes] = ACTIONS(3505), - [sym__str_back_ticks] = ACTIONS(3505), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3505), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3505), - [anon_sym_CARET] = ACTIONS(3505), - [aux_sym_unquoted_token2] = ACTIONS(3505), - [anon_sym_POUND] = ACTIONS(113), + [1823] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(6301), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(6091), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(5734), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(4651), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4750), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1823), + [anon_sym_LBRACK] = ACTIONS(4248), + [anon_sym_LPAREN] = ACTIONS(5371), + [anon_sym_DOLLAR] = ACTIONS(5373), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4256), + [anon_sym_DOT_DOT] = ACTIONS(5375), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5377), + [anon_sym_DOT_DOT_LT] = ACTIONS(5377), + [anon_sym_null] = ACTIONS(4264), + [anon_sym_true] = ACTIONS(4266), + [anon_sym_false] = ACTIONS(4266), + [aux_sym__val_number_decimal_token1] = ACTIONS(4268), + [aux_sym__val_number_decimal_token2] = ACTIONS(4270), + [anon_sym_DOT2] = ACTIONS(5379), + [aux_sym__val_number_decimal_token3] = ACTIONS(4274), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5381), + [aux_sym__val_number_token5] = ACTIONS(5381), + [aux_sym__val_number_token6] = ACTIONS(5381), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(4284), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), }, - [1624] = { - [sym_comment] = STATE(1624), - [anon_sym_SEMI] = ACTIONS(1070), - [anon_sym_LF] = ACTIONS(1072), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_RPAREN] = ACTIONS(1070), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_in] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_RBRACE] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(5001), - [anon_sym_STAR_STAR] = ACTIONS(1070), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_mod] = ACTIONS(1070), - [anon_sym_SLASH_SLASH] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_bit_DASHshl] = ACTIONS(1070), - [anon_sym_bit_DASHshr] = ACTIONS(1070), - [anon_sym_EQ_EQ] = ACTIONS(1070), - [anon_sym_BANG_EQ] = ACTIONS(1070), - [anon_sym_LT2] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1070), - [anon_sym_GT_EQ] = ACTIONS(1070), - [anon_sym_not_DASHin] = ACTIONS(1070), - [anon_sym_starts_DASHwith] = ACTIONS(1070), - [anon_sym_ends_DASHwith] = ACTIONS(1070), - [anon_sym_EQ_TILDE] = ACTIONS(1070), - [anon_sym_BANG_TILDE] = ACTIONS(1070), - [anon_sym_bit_DASHand] = ACTIONS(1070), - [anon_sym_bit_DASHxor] = ACTIONS(1070), - [anon_sym_bit_DASHor] = ACTIONS(1070), - [anon_sym_and] = ACTIONS(1070), - [anon_sym_xor] = ACTIONS(1070), - [anon_sym_or] = ACTIONS(1070), - [anon_sym_not] = ACTIONS(1070), - [anon_sym_DOT_DOT2] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1072), - [anon_sym_null] = ACTIONS(1070), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1070), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), - [anon_sym_POUND] = ACTIONS(113), + [1824] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(6302), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(6091), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(5734), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(4651), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4751), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1824), + [anon_sym_LBRACK] = ACTIONS(4248), + [anon_sym_LPAREN] = ACTIONS(5371), + [anon_sym_DOLLAR] = ACTIONS(5373), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4256), + [anon_sym_DOT_DOT] = ACTIONS(5375), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5377), + [anon_sym_DOT_DOT_LT] = ACTIONS(5377), + [anon_sym_null] = ACTIONS(4264), + [anon_sym_true] = ACTIONS(4266), + [anon_sym_false] = ACTIONS(4266), + [aux_sym__val_number_decimal_token1] = ACTIONS(4268), + [aux_sym__val_number_decimal_token2] = ACTIONS(4270), + [anon_sym_DOT2] = ACTIONS(5379), + [aux_sym__val_number_decimal_token3] = ACTIONS(4274), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5381), + [aux_sym__val_number_token5] = ACTIONS(5381), + [aux_sym__val_number_token6] = ACTIONS(5381), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(4284), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), }, - [1625] = { - [sym_comment] = STATE(1625), - [anon_sym_export] = ACTIONS(5011), - [anon_sym_alias] = ACTIONS(5011), - [anon_sym_EQ] = ACTIONS(5013), - [anon_sym_let] = ACTIONS(5011), - [anon_sym_let_DASHenv] = ACTIONS(5011), - [anon_sym_mut] = ACTIONS(5011), - [anon_sym_const] = ACTIONS(5011), - [anon_sym_SEMI] = ACTIONS(5011), - [sym_cmd_identifier] = ACTIONS(5011), - [anon_sym_LF] = ACTIONS(5015), - [anon_sym_def] = ACTIONS(5011), - [anon_sym_export_DASHenv] = ACTIONS(5011), - [anon_sym_extern] = ACTIONS(5011), - [anon_sym_module] = ACTIONS(5011), - [anon_sym_use] = ACTIONS(5011), - [anon_sym_LBRACK] = ACTIONS(5011), - [anon_sym_LPAREN] = ACTIONS(5011), - [anon_sym_RPAREN] = ACTIONS(5011), - [anon_sym_DOLLAR] = ACTIONS(5011), - [anon_sym_error] = ACTIONS(5011), - [anon_sym_DASH_DASH] = ACTIONS(5011), - [anon_sym_DASH] = ACTIONS(5011), - [anon_sym_break] = ACTIONS(5011), - [anon_sym_continue] = ACTIONS(5011), - [anon_sym_for] = ACTIONS(5011), - [anon_sym_loop] = ACTIONS(5011), - [anon_sym_while] = ACTIONS(5011), - [anon_sym_do] = ACTIONS(5011), - [anon_sym_if] = ACTIONS(5011), - [anon_sym_match] = ACTIONS(5011), - [anon_sym_LBRACE] = ACTIONS(5011), - [anon_sym_RBRACE] = ACTIONS(5011), - [anon_sym_DOT_DOT] = ACTIONS(5011), - [anon_sym_try] = ACTIONS(5011), - [anon_sym_return] = ACTIONS(5011), - [anon_sym_source] = ACTIONS(5011), - [anon_sym_source_DASHenv] = ACTIONS(5011), - [anon_sym_register] = ACTIONS(5011), - [anon_sym_hide] = ACTIONS(5011), - [anon_sym_hide_DASHenv] = ACTIONS(5011), - [anon_sym_overlay] = ACTIONS(5011), - [anon_sym_as] = ACTIONS(5011), - [anon_sym_where] = ACTIONS(5011), - [anon_sym_not] = ACTIONS(5011), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5011), - [anon_sym_DOT_DOT_LT] = ACTIONS(5011), - [anon_sym_null] = ACTIONS(5011), - [anon_sym_true] = ACTIONS(5011), - [anon_sym_false] = ACTIONS(5011), - [aux_sym__val_number_decimal_token1] = ACTIONS(5011), - [aux_sym__val_number_decimal_token2] = ACTIONS(5011), - [anon_sym_DOT2] = ACTIONS(5011), - [aux_sym__val_number_decimal_token3] = ACTIONS(5011), - [aux_sym__val_number_token1] = ACTIONS(5011), - [aux_sym__val_number_token2] = ACTIONS(5011), - [aux_sym__val_number_token3] = ACTIONS(5011), - [aux_sym__val_number_token4] = ACTIONS(5011), - [aux_sym__val_number_token5] = ACTIONS(5011), - [aux_sym__val_number_token6] = ACTIONS(5011), - [anon_sym_0b] = ACTIONS(5011), - [anon_sym_0o] = ACTIONS(5011), - [anon_sym_0x] = ACTIONS(5011), - [sym_val_date] = ACTIONS(5011), - [anon_sym_DQUOTE] = ACTIONS(5011), - [sym__str_single_quotes] = ACTIONS(5011), - [sym__str_back_ticks] = ACTIONS(5011), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5011), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5011), - [anon_sym_CARET] = ACTIONS(5011), - [anon_sym_POUND] = ACTIONS(113), + [1825] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(6303), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(6091), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(5734), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(4651), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4752), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1825), + [anon_sym_LBRACK] = ACTIONS(4248), + [anon_sym_LPAREN] = ACTIONS(5371), + [anon_sym_DOLLAR] = ACTIONS(5373), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4256), + [anon_sym_DOT_DOT] = ACTIONS(5375), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5377), + [anon_sym_DOT_DOT_LT] = ACTIONS(5377), + [anon_sym_null] = ACTIONS(4264), + [anon_sym_true] = ACTIONS(4266), + [anon_sym_false] = ACTIONS(4266), + [aux_sym__val_number_decimal_token1] = ACTIONS(4268), + [aux_sym__val_number_decimal_token2] = ACTIONS(4270), + [anon_sym_DOT2] = ACTIONS(5379), + [aux_sym__val_number_decimal_token3] = ACTIONS(4274), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5381), + [aux_sym__val_number_token5] = ACTIONS(5381), + [aux_sym__val_number_token6] = ACTIONS(5381), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(4284), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), }, - [1626] = { - [sym_comment] = STATE(1626), - [ts_builtin_sym_end] = ACTIONS(938), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_error] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_as] = ACTIONS(936), - [anon_sym_where] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [aux_sym__immediate_decimal_token1] = ACTIONS(1269), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [aux_sym_unquoted_token2] = ACTIONS(5017), - [anon_sym_POUND] = ACTIONS(113), + [1826] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(6304), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(6091), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(5734), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(4651), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4753), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1826), + [anon_sym_LBRACK] = ACTIONS(4248), + [anon_sym_LPAREN] = ACTIONS(5371), + [anon_sym_DOLLAR] = ACTIONS(5373), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4256), + [anon_sym_DOT_DOT] = ACTIONS(5375), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5377), + [anon_sym_DOT_DOT_LT] = ACTIONS(5377), + [anon_sym_null] = ACTIONS(4264), + [anon_sym_true] = ACTIONS(4266), + [anon_sym_false] = ACTIONS(4266), + [aux_sym__val_number_decimal_token1] = ACTIONS(4268), + [aux_sym__val_number_decimal_token2] = ACTIONS(4270), + [anon_sym_DOT2] = ACTIONS(5379), + [aux_sym__val_number_decimal_token3] = ACTIONS(4274), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5381), + [aux_sym__val_number_token5] = ACTIONS(5381), + [aux_sym__val_number_token6] = ACTIONS(5381), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(4284), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), }, - [1627] = { - [sym_comment] = STATE(1627), - [ts_builtin_sym_end] = ACTIONS(2583), - [anon_sym_export] = ACTIONS(2581), - [anon_sym_alias] = ACTIONS(2581), - [anon_sym_let] = ACTIONS(2581), - [anon_sym_let_DASHenv] = ACTIONS(2581), - [anon_sym_mut] = ACTIONS(2581), - [anon_sym_const] = ACTIONS(2581), - [anon_sym_SEMI] = ACTIONS(2581), - [sym_cmd_identifier] = ACTIONS(2581), - [anon_sym_LF] = ACTIONS(2583), - [anon_sym_def] = ACTIONS(2581), - [anon_sym_export_DASHenv] = ACTIONS(2581), - [anon_sym_extern] = ACTIONS(2581), - [anon_sym_module] = ACTIONS(2581), - [anon_sym_use] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2581), - [anon_sym_error] = ACTIONS(2581), - [anon_sym_DASH_DASH] = ACTIONS(2581), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_break] = ACTIONS(2581), - [anon_sym_continue] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2581), - [anon_sym_loop] = ACTIONS(2581), - [anon_sym_while] = ACTIONS(2581), - [anon_sym_do] = ACTIONS(2581), - [anon_sym_if] = ACTIONS(2581), - [anon_sym_match] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2581), - [anon_sym_DOT_DOT] = ACTIONS(2581), - [anon_sym_try] = ACTIONS(2581), - [anon_sym_return] = ACTIONS(2581), - [anon_sym_source] = ACTIONS(2581), - [anon_sym_source_DASHenv] = ACTIONS(2581), - [anon_sym_register] = ACTIONS(2581), - [anon_sym_hide] = ACTIONS(2581), - [anon_sym_hide_DASHenv] = ACTIONS(2581), - [anon_sym_overlay] = ACTIONS(2581), - [anon_sym_as] = ACTIONS(2581), - [anon_sym_where] = ACTIONS(2581), - [anon_sym_not] = ACTIONS(2581), - [anon_sym_DOT] = ACTIONS(5019), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2581), - [anon_sym_DOT_DOT_LT] = ACTIONS(2581), - [aux_sym__immediate_decimal_token2] = ACTIONS(5021), - [anon_sym_null] = ACTIONS(2581), - [anon_sym_true] = ACTIONS(2581), - [anon_sym_false] = ACTIONS(2581), - [aux_sym__val_number_decimal_token1] = ACTIONS(2581), - [aux_sym__val_number_decimal_token2] = ACTIONS(2581), - [anon_sym_DOT2] = ACTIONS(2581), - [aux_sym__val_number_decimal_token3] = ACTIONS(2581), - [aux_sym__val_number_token1] = ACTIONS(2581), - [aux_sym__val_number_token2] = ACTIONS(2581), - [aux_sym__val_number_token3] = ACTIONS(2581), - [aux_sym__val_number_token4] = ACTIONS(2581), - [aux_sym__val_number_token5] = ACTIONS(2581), - [aux_sym__val_number_token6] = ACTIONS(2581), - [anon_sym_0b] = ACTIONS(2581), - [anon_sym_0o] = ACTIONS(2581), - [anon_sym_0x] = ACTIONS(2581), - [sym_val_date] = ACTIONS(2581), - [anon_sym_DQUOTE] = ACTIONS(2581), - [sym__str_single_quotes] = ACTIONS(2581), - [sym__str_back_ticks] = ACTIONS(2581), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2581), - [anon_sym_CARET] = ACTIONS(2581), - [anon_sym_POUND] = ACTIONS(113), + [1827] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(6305), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(6091), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(5734), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(4651), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4754), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1827), + [anon_sym_LBRACK] = ACTIONS(4248), + [anon_sym_LPAREN] = ACTIONS(5371), + [anon_sym_DOLLAR] = ACTIONS(5373), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4256), + [anon_sym_DOT_DOT] = ACTIONS(5375), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5377), + [anon_sym_DOT_DOT_LT] = ACTIONS(5377), + [anon_sym_null] = ACTIONS(4264), + [anon_sym_true] = ACTIONS(4266), + [anon_sym_false] = ACTIONS(4266), + [aux_sym__val_number_decimal_token1] = ACTIONS(4268), + [aux_sym__val_number_decimal_token2] = ACTIONS(4270), + [anon_sym_DOT2] = ACTIONS(5379), + [aux_sym__val_number_decimal_token3] = ACTIONS(4274), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5381), + [aux_sym__val_number_token5] = ACTIONS(5381), + [aux_sym__val_number_token6] = ACTIONS(5381), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(4284), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), }, - [1628] = { - [sym_comment] = STATE(1628), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_LF] = ACTIONS(1061), - [anon_sym_LBRACK] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_DASH_DASH] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(1059), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_QMARK2] = ACTIONS(1059), - [anon_sym_STAR_STAR] = ACTIONS(1059), - [anon_sym_PLUS_PLUS] = ACTIONS(1059), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_mod] = ACTIONS(1059), - [anon_sym_SLASH_SLASH] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_bit_DASHshl] = ACTIONS(1059), - [anon_sym_bit_DASHshr] = ACTIONS(1059), - [anon_sym_EQ_EQ] = ACTIONS(1059), - [anon_sym_BANG_EQ] = ACTIONS(1059), - [anon_sym_LT2] = ACTIONS(1059), - [anon_sym_LT_EQ] = ACTIONS(1059), - [anon_sym_GT_EQ] = ACTIONS(1059), - [anon_sym_not_DASHin] = ACTIONS(1059), - [anon_sym_starts_DASHwith] = ACTIONS(1059), - [anon_sym_ends_DASHwith] = ACTIONS(1059), - [anon_sym_EQ_TILDE] = ACTIONS(1059), - [anon_sym_BANG_TILDE] = ACTIONS(1059), - [anon_sym_bit_DASHand] = ACTIONS(1059), - [anon_sym_bit_DASHxor] = ACTIONS(1059), - [anon_sym_bit_DASHor] = ACTIONS(1059), - [anon_sym_and] = ACTIONS(1059), - [anon_sym_xor] = ACTIONS(1059), - [anon_sym_or] = ACTIONS(1059), - [anon_sym_not] = ACTIONS(1059), - [anon_sym_DOT_DOT2] = ACTIONS(1059), - [anon_sym_DOT] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1059), - [anon_sym_DOT_DOT_LT] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1061), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1061), - [anon_sym_null] = ACTIONS(1059), - [anon_sym_true] = ACTIONS(1059), - [anon_sym_false] = ACTIONS(1059), - [aux_sym__val_number_decimal_token1] = ACTIONS(1059), - [aux_sym__val_number_decimal_token2] = ACTIONS(1059), - [anon_sym_DOT2] = ACTIONS(1059), - [aux_sym__val_number_decimal_token3] = ACTIONS(1059), - [aux_sym__val_number_token1] = ACTIONS(1059), - [aux_sym__val_number_token2] = ACTIONS(1059), - [aux_sym__val_number_token3] = ACTIONS(1059), - [aux_sym__val_number_token4] = ACTIONS(1059), - [aux_sym__val_number_token5] = ACTIONS(1059), - [aux_sym__val_number_token6] = ACTIONS(1059), - [anon_sym_0b] = ACTIONS(1059), - [anon_sym_0o] = ACTIONS(1059), - [anon_sym_0x] = ACTIONS(1059), - [sym_val_date] = ACTIONS(1059), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym__str_single_quotes] = ACTIONS(1059), - [sym__str_back_ticks] = ACTIONS(1059), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1059), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1059), - [anon_sym_POUND] = ACTIONS(113), + [1828] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(6306), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(6091), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(5734), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(4651), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4755), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1828), + [anon_sym_LBRACK] = ACTIONS(4248), + [anon_sym_LPAREN] = ACTIONS(5371), + [anon_sym_DOLLAR] = ACTIONS(5373), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4256), + [anon_sym_DOT_DOT] = ACTIONS(5375), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5377), + [anon_sym_DOT_DOT_LT] = ACTIONS(5377), + [anon_sym_null] = ACTIONS(4264), + [anon_sym_true] = ACTIONS(4266), + [anon_sym_false] = ACTIONS(4266), + [aux_sym__val_number_decimal_token1] = ACTIONS(4268), + [aux_sym__val_number_decimal_token2] = ACTIONS(4270), + [anon_sym_DOT2] = ACTIONS(5379), + [aux_sym__val_number_decimal_token3] = ACTIONS(4274), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5381), + [aux_sym__val_number_token5] = ACTIONS(5381), + [aux_sym__val_number_token6] = ACTIONS(5381), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(4284), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), }, - [1629] = { - [sym_comment] = STATE(1629), - [anon_sym_export] = ACTIONS(2547), - [anon_sym_alias] = ACTIONS(2547), - [anon_sym_let] = ACTIONS(2547), - [anon_sym_let_DASHenv] = ACTIONS(2547), - [anon_sym_mut] = ACTIONS(2547), - [anon_sym_const] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [sym_cmd_identifier] = ACTIONS(2547), - [anon_sym_LF] = ACTIONS(2549), - [anon_sym_def] = ACTIONS(2547), - [anon_sym_export_DASHenv] = ACTIONS(2547), - [anon_sym_extern] = ACTIONS(2547), - [anon_sym_module] = ACTIONS(2547), - [anon_sym_use] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_RPAREN] = ACTIONS(2547), - [anon_sym_DOLLAR] = ACTIONS(2547), - [anon_sym_error] = ACTIONS(2547), - [anon_sym_DASH_DASH] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_break] = ACTIONS(2547), - [anon_sym_continue] = ACTIONS(2547), - [anon_sym_for] = ACTIONS(2547), - [anon_sym_loop] = ACTIONS(2547), - [anon_sym_while] = ACTIONS(2547), - [anon_sym_do] = ACTIONS(2547), - [anon_sym_if] = ACTIONS(2547), - [anon_sym_match] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2547), - [anon_sym_RBRACE] = ACTIONS(2547), - [anon_sym_DOT_DOT] = ACTIONS(2547), - [anon_sym_try] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2547), - [anon_sym_source] = ACTIONS(2547), - [anon_sym_source_DASHenv] = ACTIONS(2547), - [anon_sym_register] = ACTIONS(2547), - [anon_sym_hide] = ACTIONS(2547), - [anon_sym_hide_DASHenv] = ACTIONS(2547), - [anon_sym_overlay] = ACTIONS(2547), - [anon_sym_as] = ACTIONS(2547), - [anon_sym_where] = ACTIONS(2547), - [anon_sym_not] = ACTIONS(2547), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), - [anon_sym_DOT_DOT_LT] = ACTIONS(2547), - [aux_sym__immediate_decimal_token2] = ACTIONS(5023), - [anon_sym_null] = ACTIONS(2547), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [aux_sym__val_number_decimal_token1] = ACTIONS(2547), - [aux_sym__val_number_decimal_token2] = ACTIONS(2547), - [anon_sym_DOT2] = ACTIONS(2547), - [aux_sym__val_number_decimal_token3] = ACTIONS(2547), - [aux_sym__val_number_token1] = ACTIONS(2547), - [aux_sym__val_number_token2] = ACTIONS(2547), - [aux_sym__val_number_token3] = ACTIONS(2547), - [aux_sym__val_number_token4] = ACTIONS(2547), - [aux_sym__val_number_token5] = ACTIONS(2547), - [aux_sym__val_number_token6] = ACTIONS(2547), - [anon_sym_0b] = ACTIONS(2547), - [anon_sym_0o] = ACTIONS(2547), - [anon_sym_0x] = ACTIONS(2547), - [sym_val_date] = ACTIONS(2547), - [anon_sym_DQUOTE] = ACTIONS(2547), - [sym__str_single_quotes] = ACTIONS(2547), - [sym__str_back_ticks] = ACTIONS(2547), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2547), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2547), - [anon_sym_POUND] = ACTIONS(113), + [1829] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(6307), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(6091), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(5734), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(4651), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4756), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1829), + [anon_sym_LBRACK] = ACTIONS(4248), + [anon_sym_LPAREN] = ACTIONS(5371), + [anon_sym_DOLLAR] = ACTIONS(5373), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4256), + [anon_sym_DOT_DOT] = ACTIONS(5375), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5377), + [anon_sym_DOT_DOT_LT] = ACTIONS(5377), + [anon_sym_null] = ACTIONS(4264), + [anon_sym_true] = ACTIONS(4266), + [anon_sym_false] = ACTIONS(4266), + [aux_sym__val_number_decimal_token1] = ACTIONS(4268), + [aux_sym__val_number_decimal_token2] = ACTIONS(4270), + [anon_sym_DOT2] = ACTIONS(5379), + [aux_sym__val_number_decimal_token3] = ACTIONS(4274), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5381), + [aux_sym__val_number_token5] = ACTIONS(5381), + [aux_sym__val_number_token6] = ACTIONS(5381), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(4284), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), }, - [1630] = { - [sym_comment] = STATE(1630), - [anon_sym_LBRACK] = ACTIONS(1247), - [anon_sym_COMMA] = ACTIONS(1247), - [anon_sym_RBRACK] = ACTIONS(1247), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_DOLLAR] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1247), - [anon_sym_in] = ACTIONS(1247), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_DOT_DOT] = ACTIONS(1247), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_STAR_STAR] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_mod] = ACTIONS(1247), - [anon_sym_SLASH_SLASH] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1247), - [anon_sym_bit_DASHshl] = ACTIONS(1247), - [anon_sym_bit_DASHshr] = ACTIONS(1247), - [anon_sym_EQ_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1247), - [anon_sym_LT2] = ACTIONS(1247), - [anon_sym_LT_EQ] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1247), - [anon_sym_not_DASHin] = ACTIONS(1247), - [anon_sym_starts_DASHwith] = ACTIONS(1247), - [anon_sym_ends_DASHwith] = ACTIONS(1247), - [anon_sym_EQ_TILDE] = ACTIONS(1247), - [anon_sym_BANG_TILDE] = ACTIONS(1247), - [anon_sym_bit_DASHand] = ACTIONS(1247), - [anon_sym_bit_DASHxor] = ACTIONS(1247), - [anon_sym_bit_DASHor] = ACTIONS(1247), - [anon_sym_and] = ACTIONS(1247), - [anon_sym_xor] = ACTIONS(1247), - [anon_sym_or] = ACTIONS(1247), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1247), - [anon_sym_DOT_DOT_LT] = ACTIONS(1247), - [anon_sym_null] = ACTIONS(1247), - [anon_sym_true] = ACTIONS(1247), - [anon_sym_false] = ACTIONS(1247), - [aux_sym__val_number_decimal_token1] = ACTIONS(1247), - [aux_sym__val_number_decimal_token2] = ACTIONS(1247), - [anon_sym_DOT2] = ACTIONS(1247), - [aux_sym__val_number_decimal_token3] = ACTIONS(1247), - [aux_sym__val_number_token1] = ACTIONS(1247), - [aux_sym__val_number_token2] = ACTIONS(1247), - [aux_sym__val_number_token3] = ACTIONS(1247), - [aux_sym__val_number_token4] = ACTIONS(1247), - [aux_sym__val_number_token5] = ACTIONS(1247), - [aux_sym__val_number_token6] = ACTIONS(1247), - [anon_sym_0b] = ACTIONS(1247), - [anon_sym_0o] = ACTIONS(1247), - [anon_sym_0x] = ACTIONS(1247), - [sym_val_date] = ACTIONS(1247), - [anon_sym_DQUOTE] = ACTIONS(1247), - [sym__str_single_quotes] = ACTIONS(1247), - [sym__str_back_ticks] = ACTIONS(1247), - [sym__entry_separator] = ACTIONS(1249), - [anon_sym_err_GT] = ACTIONS(1247), - [anon_sym_out_GT] = ACTIONS(1247), - [anon_sym_e_GT] = ACTIONS(1247), - [anon_sym_o_GT] = ACTIONS(1247), - [anon_sym_err_PLUSout_GT] = ACTIONS(1247), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1247), - [anon_sym_o_PLUSe_GT] = ACTIONS(1247), - [anon_sym_e_PLUSo_GT] = ACTIONS(1247), - [aux_sym_unquoted_token6] = ACTIONS(1251), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1247), - [anon_sym_POUND] = ACTIONS(113), + [1830] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(6308), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(6091), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(5734), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(4651), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4757), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1830), + [anon_sym_LBRACK] = ACTIONS(4248), + [anon_sym_LPAREN] = ACTIONS(5371), + [anon_sym_DOLLAR] = ACTIONS(5373), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4256), + [anon_sym_DOT_DOT] = ACTIONS(5375), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5377), + [anon_sym_DOT_DOT_LT] = ACTIONS(5377), + [anon_sym_null] = ACTIONS(4264), + [anon_sym_true] = ACTIONS(4266), + [anon_sym_false] = ACTIONS(4266), + [aux_sym__val_number_decimal_token1] = ACTIONS(4268), + [aux_sym__val_number_decimal_token2] = ACTIONS(4270), + [anon_sym_DOT2] = ACTIONS(5379), + [aux_sym__val_number_decimal_token3] = ACTIONS(4274), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5381), + [aux_sym__val_number_token5] = ACTIONS(5381), + [aux_sym__val_number_token6] = ACTIONS(5381), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(4284), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), }, - [1631] = { - [sym_comment] = STATE(1631), - [anon_sym_export] = ACTIONS(4000), - [anon_sym_alias] = ACTIONS(4000), - [anon_sym_let] = ACTIONS(4000), - [anon_sym_let_DASHenv] = ACTIONS(4000), - [anon_sym_mut] = ACTIONS(4000), - [anon_sym_const] = ACTIONS(4000), - [anon_sym_SEMI] = ACTIONS(4000), - [sym_cmd_identifier] = ACTIONS(4000), - [anon_sym_LF] = ACTIONS(4002), - [anon_sym_def] = ACTIONS(4000), - [anon_sym_export_DASHenv] = ACTIONS(4000), - [anon_sym_extern] = ACTIONS(4000), - [anon_sym_module] = ACTIONS(4000), - [anon_sym_use] = ACTIONS(4000), - [anon_sym_LBRACK] = ACTIONS(4000), - [anon_sym_LPAREN] = ACTIONS(4000), - [anon_sym_RPAREN] = ACTIONS(4000), - [anon_sym_DOLLAR] = ACTIONS(4000), - [anon_sym_error] = ACTIONS(4000), - [anon_sym_DASH] = ACTIONS(4000), - [anon_sym_break] = ACTIONS(4000), - [anon_sym_continue] = ACTIONS(4000), - [anon_sym_for] = ACTIONS(4000), - [anon_sym_loop] = ACTIONS(4000), - [anon_sym_while] = ACTIONS(4000), - [anon_sym_do] = ACTIONS(4000), - [anon_sym_if] = ACTIONS(4000), - [anon_sym_match] = ACTIONS(4000), - [anon_sym_LBRACE] = ACTIONS(4000), - [anon_sym_RBRACE] = ACTIONS(4000), - [anon_sym_DOT_DOT] = ACTIONS(4000), - [anon_sym_try] = ACTIONS(4000), - [anon_sym_return] = ACTIONS(4000), - [anon_sym_source] = ACTIONS(4000), - [anon_sym_source_DASHenv] = ACTIONS(4000), - [anon_sym_register] = ACTIONS(4000), - [anon_sym_hide] = ACTIONS(4000), - [anon_sym_hide_DASHenv] = ACTIONS(4000), - [anon_sym_overlay] = ACTIONS(4000), - [anon_sym_where] = ACTIONS(4000), - [anon_sym_not] = ACTIONS(4000), - [anon_sym_DOT_DOT2] = ACTIONS(4000), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4000), - [anon_sym_DOT_DOT_LT] = ACTIONS(4000), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4002), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4002), - [anon_sym_null] = ACTIONS(4000), - [anon_sym_true] = ACTIONS(4000), - [anon_sym_false] = ACTIONS(4000), - [aux_sym__val_number_decimal_token1] = ACTIONS(4000), - [aux_sym__val_number_decimal_token2] = ACTIONS(4000), - [anon_sym_DOT2] = ACTIONS(4000), - [aux_sym__val_number_decimal_token3] = ACTIONS(4000), - [aux_sym__val_number_token1] = ACTIONS(4000), - [aux_sym__val_number_token2] = ACTIONS(4000), - [aux_sym__val_number_token3] = ACTIONS(4000), - [aux_sym__val_number_token4] = ACTIONS(4000), - [aux_sym__val_number_token5] = ACTIONS(4000), - [aux_sym__val_number_token6] = ACTIONS(4000), - [anon_sym_0b] = ACTIONS(4000), - [anon_sym_0o] = ACTIONS(4000), - [anon_sym_0x] = ACTIONS(4000), - [sym_val_date] = ACTIONS(4000), - [anon_sym_DQUOTE] = ACTIONS(4000), - [sym__str_single_quotes] = ACTIONS(4000), - [sym__str_back_ticks] = ACTIONS(4000), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4000), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4000), - [anon_sym_CARET] = ACTIONS(4000), - [anon_sym_POUND] = ACTIONS(113), + [1831] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(6309), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(6091), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(5734), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(4651), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4758), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1831), + [anon_sym_LBRACK] = ACTIONS(4248), + [anon_sym_LPAREN] = ACTIONS(5371), + [anon_sym_DOLLAR] = ACTIONS(5373), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4256), + [anon_sym_DOT_DOT] = ACTIONS(5375), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5377), + [anon_sym_DOT_DOT_LT] = ACTIONS(5377), + [anon_sym_null] = ACTIONS(4264), + [anon_sym_true] = ACTIONS(4266), + [anon_sym_false] = ACTIONS(4266), + [aux_sym__val_number_decimal_token1] = ACTIONS(4268), + [aux_sym__val_number_decimal_token2] = ACTIONS(4270), + [anon_sym_DOT2] = ACTIONS(5379), + [aux_sym__val_number_decimal_token3] = ACTIONS(4274), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5381), + [aux_sym__val_number_token5] = ACTIONS(5381), + [aux_sym__val_number_token6] = ACTIONS(5381), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(4284), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), }, - [1632] = { - [sym_comment] = STATE(1632), - [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), - [anon_sym_SEMI] = ACTIONS(2437), - [sym_cmd_identifier] = ACTIONS(2437), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_RPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_DASH_DASH] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_RBRACE] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_as] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_not] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [aux_sym__immediate_decimal_token2] = ACTIONS(4297), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [anon_sym_DOT2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2437), - [anon_sym_0o] = ACTIONS(2437), - [anon_sym_0x] = ACTIONS(2437), - [sym_val_date] = 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_CARET] = ACTIONS(2437), - [anon_sym_POUND] = ACTIONS(113), + [1832] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(6310), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(6091), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(5734), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(4651), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4759), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1832), + [anon_sym_LBRACK] = ACTIONS(4248), + [anon_sym_LPAREN] = ACTIONS(5371), + [anon_sym_DOLLAR] = ACTIONS(5373), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4256), + [anon_sym_DOT_DOT] = ACTIONS(5375), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5377), + [anon_sym_DOT_DOT_LT] = ACTIONS(5377), + [anon_sym_null] = ACTIONS(4264), + [anon_sym_true] = ACTIONS(4266), + [anon_sym_false] = ACTIONS(4266), + [aux_sym__val_number_decimal_token1] = ACTIONS(4268), + [aux_sym__val_number_decimal_token2] = ACTIONS(4270), + [anon_sym_DOT2] = ACTIONS(5379), + [aux_sym__val_number_decimal_token3] = ACTIONS(4274), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5381), + [aux_sym__val_number_token5] = ACTIONS(5381), + [aux_sym__val_number_token6] = ACTIONS(5381), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(4284), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), }, - [1633] = { - [sym_path] = STATE(2522), - [sym_comment] = STATE(1633), - [aux_sym_cell_path_repeat1] = STATE(1678), - [ts_builtin_sym_end] = ACTIONS(1008), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_LF] = ACTIONS(1008), - [anon_sym_LBRACK] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_in] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_STAR_STAR] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_mod] = ACTIONS(1006), - [anon_sym_SLASH_SLASH] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_bit_DASHshl] = ACTIONS(1006), - [anon_sym_bit_DASHshr] = ACTIONS(1006), - [anon_sym_EQ_EQ] = ACTIONS(1006), - [anon_sym_BANG_EQ] = ACTIONS(1006), - [anon_sym_LT2] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1006), - [anon_sym_GT_EQ] = ACTIONS(1006), - [anon_sym_not_DASHin] = ACTIONS(1006), - [anon_sym_starts_DASHwith] = ACTIONS(1006), - [anon_sym_ends_DASHwith] = ACTIONS(1006), - [anon_sym_EQ_TILDE] = ACTIONS(1006), - [anon_sym_BANG_TILDE] = ACTIONS(1006), - [anon_sym_bit_DASHand] = ACTIONS(1006), - [anon_sym_bit_DASHxor] = ACTIONS(1006), - [anon_sym_bit_DASHor] = ACTIONS(1006), - [anon_sym_and] = ACTIONS(1006), - [anon_sym_xor] = ACTIONS(1006), - [anon_sym_or] = ACTIONS(1006), - [anon_sym_not] = ACTIONS(1006), - [anon_sym_DOT_DOT2] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(5025), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), - [anon_sym_null] = ACTIONS(1006), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1006), - [anon_sym_DOT2] = ACTIONS(1006), - [aux_sym__val_number_decimal_token3] = ACTIONS(1006), - [aux_sym__val_number_token1] = ACTIONS(1006), - [aux_sym__val_number_token2] = ACTIONS(1006), - [aux_sym__val_number_token3] = ACTIONS(1006), - [aux_sym__val_number_token4] = ACTIONS(1006), - [aux_sym__val_number_token5] = ACTIONS(1006), - [aux_sym__val_number_token6] = ACTIONS(1006), - [anon_sym_0b] = ACTIONS(1006), - [anon_sym_0o] = ACTIONS(1006), - [anon_sym_0x] = ACTIONS(1006), - [sym_val_date] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym__str_single_quotes] = ACTIONS(1006), - [sym__str_back_ticks] = ACTIONS(1006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1006), - [anon_sym_POUND] = ACTIONS(113), - }, - [1634] = { - [sym_comment] = STATE(1634), - [anon_sym_export] = ACTIONS(3949), - [anon_sym_alias] = ACTIONS(3949), - [anon_sym_let] = ACTIONS(3949), - [anon_sym_let_DASHenv] = ACTIONS(3949), - [anon_sym_mut] = ACTIONS(3949), - [anon_sym_const] = ACTIONS(3949), - [anon_sym_SEMI] = ACTIONS(3949), - [sym_cmd_identifier] = ACTIONS(3949), - [anon_sym_LF] = ACTIONS(3951), - [anon_sym_def] = ACTIONS(3949), - [anon_sym_export_DASHenv] = ACTIONS(3949), - [anon_sym_extern] = ACTIONS(3949), - [anon_sym_module] = ACTIONS(3949), - [anon_sym_use] = ACTIONS(3949), - [anon_sym_LBRACK] = ACTIONS(3949), - [anon_sym_LPAREN] = ACTIONS(3949), - [anon_sym_RPAREN] = ACTIONS(3949), - [anon_sym_DOLLAR] = ACTIONS(3949), - [anon_sym_error] = ACTIONS(3949), - [anon_sym_DASH] = ACTIONS(3949), - [anon_sym_break] = ACTIONS(3949), - [anon_sym_continue] = ACTIONS(3949), - [anon_sym_for] = ACTIONS(3949), - [anon_sym_loop] = ACTIONS(3949), - [anon_sym_while] = ACTIONS(3949), - [anon_sym_do] = ACTIONS(3949), - [anon_sym_if] = ACTIONS(3949), - [anon_sym_match] = ACTIONS(3949), - [anon_sym_LBRACE] = ACTIONS(3949), - [anon_sym_RBRACE] = ACTIONS(3949), - [anon_sym_DOT_DOT] = ACTIONS(3949), - [anon_sym_try] = ACTIONS(3949), - [anon_sym_return] = ACTIONS(3949), - [anon_sym_source] = ACTIONS(3949), - [anon_sym_source_DASHenv] = ACTIONS(3949), - [anon_sym_register] = ACTIONS(3949), - [anon_sym_hide] = ACTIONS(3949), - [anon_sym_hide_DASHenv] = ACTIONS(3949), - [anon_sym_overlay] = ACTIONS(3949), - [anon_sym_where] = ACTIONS(3949), - [anon_sym_not] = ACTIONS(3949), - [anon_sym_DOT_DOT2] = ACTIONS(5027), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3949), - [anon_sym_DOT_DOT_LT] = ACTIONS(3949), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(5029), - [anon_sym_DOT_DOT_LT2] = ACTIONS(5029), - [anon_sym_null] = ACTIONS(3949), - [anon_sym_true] = ACTIONS(3949), - [anon_sym_false] = ACTIONS(3949), - [aux_sym__val_number_decimal_token1] = ACTIONS(3949), - [aux_sym__val_number_decimal_token2] = ACTIONS(3949), - [anon_sym_DOT2] = ACTIONS(3949), - [aux_sym__val_number_decimal_token3] = ACTIONS(3949), - [aux_sym__val_number_token1] = ACTIONS(3949), - [aux_sym__val_number_token2] = ACTIONS(3949), - [aux_sym__val_number_token3] = ACTIONS(3949), - [aux_sym__val_number_token4] = ACTIONS(3949), - [aux_sym__val_number_token5] = ACTIONS(3949), - [aux_sym__val_number_token6] = ACTIONS(3949), - [anon_sym_0b] = ACTIONS(3949), - [anon_sym_0o] = ACTIONS(3949), - [anon_sym_0x] = ACTIONS(3949), - [sym_val_date] = ACTIONS(3949), - [anon_sym_DQUOTE] = ACTIONS(3949), - [sym__str_single_quotes] = ACTIONS(3949), - [sym__str_back_ticks] = ACTIONS(3949), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3949), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3949), - [anon_sym_CARET] = ACTIONS(3949), - [anon_sym_POUND] = ACTIONS(113), + [1833] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(6311), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(6091), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(5734), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(4651), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4760), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1833), + [anon_sym_LBRACK] = ACTIONS(4248), + [anon_sym_LPAREN] = ACTIONS(5371), + [anon_sym_DOLLAR] = ACTIONS(5373), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4256), + [anon_sym_DOT_DOT] = ACTIONS(5375), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5377), + [anon_sym_DOT_DOT_LT] = ACTIONS(5377), + [anon_sym_null] = ACTIONS(4264), + [anon_sym_true] = ACTIONS(4266), + [anon_sym_false] = ACTIONS(4266), + [aux_sym__val_number_decimal_token1] = ACTIONS(4268), + [aux_sym__val_number_decimal_token2] = ACTIONS(4270), + [anon_sym_DOT2] = ACTIONS(5379), + [aux_sym__val_number_decimal_token3] = ACTIONS(4274), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5381), + [aux_sym__val_number_token5] = ACTIONS(5381), + [aux_sym__val_number_token6] = ACTIONS(5381), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(4284), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), }, - [1635] = { - [sym_comment] = STATE(1635), - [anon_sym_export] = ACTIONS(3505), - [anon_sym_alias] = ACTIONS(3505), - [anon_sym_let] = ACTIONS(3505), - [anon_sym_let_DASHenv] = ACTIONS(3505), - [anon_sym_mut] = ACTIONS(3505), - [anon_sym_const] = ACTIONS(3505), - [anon_sym_SEMI] = ACTIONS(3505), - [sym_cmd_identifier] = ACTIONS(3505), - [anon_sym_LF] = ACTIONS(3507), - [anon_sym_def] = ACTIONS(3505), - [anon_sym_export_DASHenv] = ACTIONS(3505), - [anon_sym_extern] = ACTIONS(3505), - [anon_sym_module] = ACTIONS(3505), - [anon_sym_use] = ACTIONS(3505), - [anon_sym_LBRACK] = ACTIONS(3505), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_RPAREN] = ACTIONS(3505), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_error] = ACTIONS(3505), - [anon_sym_DASH] = ACTIONS(3505), - [anon_sym_break] = ACTIONS(3505), - [anon_sym_continue] = ACTIONS(3505), - [anon_sym_for] = ACTIONS(3505), - [anon_sym_loop] = ACTIONS(3505), - [anon_sym_while] = ACTIONS(3505), - [anon_sym_do] = ACTIONS(3505), - [anon_sym_if] = ACTIONS(3505), - [anon_sym_match] = ACTIONS(3505), - [anon_sym_LBRACE] = ACTIONS(3505), - [anon_sym_RBRACE] = ACTIONS(3505), - [anon_sym_DOT_DOT] = ACTIONS(3505), - [anon_sym_try] = ACTIONS(3505), - [anon_sym_return] = ACTIONS(3505), - [anon_sym_source] = ACTIONS(3505), - [anon_sym_source_DASHenv] = ACTIONS(3505), - [anon_sym_register] = ACTIONS(3505), - [anon_sym_hide] = ACTIONS(3505), - [anon_sym_hide_DASHenv] = ACTIONS(3505), - [anon_sym_overlay] = ACTIONS(3505), - [anon_sym_where] = ACTIONS(3505), - [anon_sym_not] = ACTIONS(3505), - [anon_sym_DOT_DOT2] = ACTIONS(3505), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3505), - [anon_sym_DOT_DOT_LT] = ACTIONS(3505), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3507), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3507), - [anon_sym_null] = ACTIONS(3505), - [anon_sym_true] = ACTIONS(3505), - [anon_sym_false] = ACTIONS(3505), - [aux_sym__val_number_decimal_token1] = ACTIONS(3505), - [aux_sym__val_number_decimal_token2] = ACTIONS(3505), - [anon_sym_DOT2] = ACTIONS(3505), - [aux_sym__val_number_decimal_token3] = ACTIONS(3505), - [aux_sym__val_number_token1] = ACTIONS(3505), - [aux_sym__val_number_token2] = ACTIONS(3505), - [aux_sym__val_number_token3] = ACTIONS(3505), - [aux_sym__val_number_token4] = ACTIONS(3505), - [aux_sym__val_number_token5] = ACTIONS(3505), - [aux_sym__val_number_token6] = ACTIONS(3505), - [anon_sym_0b] = ACTIONS(3505), - [anon_sym_0o] = ACTIONS(3505), - [anon_sym_0x] = ACTIONS(3505), - [sym_val_date] = ACTIONS(3505), - [anon_sym_DQUOTE] = ACTIONS(3505), - [sym__str_single_quotes] = ACTIONS(3505), - [sym__str_back_ticks] = ACTIONS(3505), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3505), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3505), - [anon_sym_CARET] = ACTIONS(3505), - [anon_sym_POUND] = ACTIONS(113), + [1834] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(6312), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(6091), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(5734), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(4651), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4761), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1834), + [anon_sym_LBRACK] = ACTIONS(4248), + [anon_sym_LPAREN] = ACTIONS(5371), + [anon_sym_DOLLAR] = ACTIONS(5373), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4256), + [anon_sym_DOT_DOT] = ACTIONS(5375), + [anon_sym_not] = ACTIONS(4260), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5377), + [anon_sym_DOT_DOT_LT] = ACTIONS(5377), + [anon_sym_null] = ACTIONS(4264), + [anon_sym_true] = ACTIONS(4266), + [anon_sym_false] = ACTIONS(4266), + [aux_sym__val_number_decimal_token1] = ACTIONS(4268), + [aux_sym__val_number_decimal_token2] = ACTIONS(4270), + [anon_sym_DOT2] = ACTIONS(5379), + [aux_sym__val_number_decimal_token3] = ACTIONS(4274), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5381), + [aux_sym__val_number_token5] = ACTIONS(5381), + [aux_sym__val_number_token6] = ACTIONS(5381), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(4284), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), }, - [1636] = { - [sym_comment] = STATE(1636), - [ts_builtin_sym_end] = ACTIONS(1249), - [anon_sym_export] = ACTIONS(1247), - [anon_sym_alias] = ACTIONS(1247), - [anon_sym_let] = ACTIONS(1247), - [anon_sym_let_DASHenv] = ACTIONS(1247), - [anon_sym_mut] = ACTIONS(1247), - [anon_sym_const] = ACTIONS(1247), - [anon_sym_SEMI] = ACTIONS(1247), - [sym_cmd_identifier] = ACTIONS(1247), - [anon_sym_LF] = ACTIONS(1249), - [anon_sym_def] = ACTIONS(1247), - [anon_sym_export_DASHenv] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1247), - [anon_sym_module] = ACTIONS(1247), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_LBRACK] = ACTIONS(1247), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_DOLLAR] = ACTIONS(1247), - [anon_sym_error] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1247), - [anon_sym_break] = ACTIONS(1247), - [anon_sym_continue] = ACTIONS(1247), - [anon_sym_for] = ACTIONS(1247), - [anon_sym_loop] = ACTIONS(1247), - [anon_sym_while] = ACTIONS(1247), - [anon_sym_do] = ACTIONS(1247), - [anon_sym_if] = ACTIONS(1247), - [anon_sym_match] = ACTIONS(1247), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_DOT_DOT] = ACTIONS(1247), - [anon_sym_try] = ACTIONS(1247), - [anon_sym_return] = ACTIONS(1247), - [anon_sym_source] = ACTIONS(1247), - [anon_sym_source_DASHenv] = ACTIONS(1247), - [anon_sym_register] = ACTIONS(1247), - [anon_sym_hide] = ACTIONS(1247), - [anon_sym_hide_DASHenv] = ACTIONS(1247), - [anon_sym_overlay] = ACTIONS(1247), - [anon_sym_as] = ACTIONS(1247), - [anon_sym_where] = ACTIONS(1247), - [anon_sym_not] = ACTIONS(1247), - [anon_sym_LPAREN2] = ACTIONS(4037), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1247), - [anon_sym_DOT_DOT_LT] = ACTIONS(1247), - [anon_sym_null] = ACTIONS(1247), - [anon_sym_true] = ACTIONS(1247), - [anon_sym_false] = ACTIONS(1247), - [aux_sym__val_number_decimal_token1] = ACTIONS(1247), - [aux_sym__val_number_decimal_token2] = ACTIONS(1247), - [anon_sym_DOT2] = ACTIONS(1247), - [aux_sym__val_number_decimal_token3] = ACTIONS(1247), - [aux_sym__val_number_token1] = ACTIONS(1247), - [aux_sym__val_number_token2] = ACTIONS(1247), - [aux_sym__val_number_token3] = ACTIONS(1247), - [aux_sym__val_number_token4] = ACTIONS(1247), - [aux_sym__val_number_token5] = ACTIONS(1247), - [aux_sym__val_number_token6] = ACTIONS(1247), - [anon_sym_0b] = ACTIONS(1247), - [anon_sym_0o] = ACTIONS(1247), - [anon_sym_0x] = ACTIONS(1247), - [sym_val_date] = ACTIONS(1247), - [anon_sym_DQUOTE] = ACTIONS(1247), - [sym__str_single_quotes] = ACTIONS(1247), - [sym__str_back_ticks] = ACTIONS(1247), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1247), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1247), - [anon_sym_CARET] = ACTIONS(1247), - [aux_sym_unquoted_token6] = ACTIONS(1251), - [anon_sym_POUND] = ACTIONS(113), + [1835] = { + [sym_expr_unary] = STATE(2580), + [sym__expr_unary_minus] = STATE(2540), + [sym_expr_binary] = STATE(2580), + [sym__expr_binary_expression] = STATE(2627), + [sym_expr_parenthesized] = STATE(2580), + [sym__val_range] = STATE(10216), + [sym__value] = STATE(2580), + [sym_val_nothing] = STATE(2556), + [sym_val_bool] = STATE(2480), + [sym_val_variable] = STATE(2556), + [sym__var] = STATE(2092), + [sym_val_number] = STATE(2556), + [sym__val_number_decimal] = STATE(1114), + [sym__val_number] = STATE(2558), + [sym_val_duration] = STATE(2556), + [sym_val_filesize] = STATE(2556), + [sym_val_binary] = STATE(2556), + [sym_val_string] = STATE(2556), + [sym__str_double_quotes] = STATE(2557), + [sym_val_interpolated] = STATE(2556), + [sym__inter_single_quotes] = STATE(2570), + [sym__inter_double_quotes] = STATE(2571), + [sym_val_list] = STATE(2556), + [sym_val_record] = STATE(2556), + [sym_val_table] = STATE(2556), + [sym_val_closure] = STATE(2556), + [sym_unquoted] = STATE(2581), + [sym__unquoted_anonymous_prefix] = STATE(10348), + [sym_comment] = STATE(1835), + [anon_sym_LBRACK] = ACTIONS(4294), + [anon_sym_LPAREN] = ACTIONS(5383), + [anon_sym_DOLLAR] = ACTIONS(5385), + [anon_sym_DASH] = ACTIONS(4300), + [anon_sym_LBRACE] = ACTIONS(4302), + [anon_sym_DOT_DOT] = ACTIONS(5387), + [anon_sym_not] = ACTIONS(4306), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5389), + [anon_sym_DOT_DOT_LT] = ACTIONS(5389), + [anon_sym_null] = ACTIONS(4310), + [anon_sym_true] = ACTIONS(4312), + [anon_sym_false] = ACTIONS(4312), + [aux_sym__val_number_decimal_token1] = ACTIONS(4314), + [aux_sym__val_number_decimal_token2] = ACTIONS(4316), + [anon_sym_DOT2] = ACTIONS(5391), + [aux_sym__val_number_decimal_token3] = ACTIONS(4320), + [aux_sym__val_number_token1] = ACTIONS(4322), + [aux_sym__val_number_token2] = ACTIONS(4322), + [aux_sym__val_number_token3] = ACTIONS(4322), + [aux_sym__val_number_token4] = ACTIONS(5393), + [aux_sym__val_number_token5] = ACTIONS(5393), + [aux_sym__val_number_token6] = ACTIONS(5393), + [anon_sym_0b] = ACTIONS(4326), + [anon_sym_0o] = ACTIONS(4328), + [anon_sym_0x] = ACTIONS(4328), + [sym_val_date] = ACTIONS(4330), + [anon_sym_DQUOTE] = ACTIONS(4332), + [sym__str_single_quotes] = ACTIONS(4334), + [sym__str_back_ticks] = ACTIONS(4334), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4336), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4338), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5395), + [anon_sym_POUND] = ACTIONS(3), }, - [1637] = { - [sym_comment] = STATE(1637), - [anon_sym_export] = ACTIONS(959), - [anon_sym_alias] = ACTIONS(959), - [anon_sym_let] = ACTIONS(959), - [anon_sym_let_DASHenv] = ACTIONS(959), - [anon_sym_mut] = ACTIONS(959), - [anon_sym_const] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(959), - [sym_cmd_identifier] = ACTIONS(959), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_def] = ACTIONS(959), - [anon_sym_export_DASHenv] = ACTIONS(959), - [anon_sym_extern] = ACTIONS(959), - [anon_sym_module] = ACTIONS(959), - [anon_sym_use] = ACTIONS(959), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_RPAREN] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_error] = ACTIONS(959), - [anon_sym_DASH_DASH] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_break] = ACTIONS(959), - [anon_sym_continue] = ACTIONS(959), - [anon_sym_for] = ACTIONS(959), - [anon_sym_loop] = ACTIONS(959), - [anon_sym_while] = ACTIONS(959), - [anon_sym_do] = ACTIONS(959), - [anon_sym_if] = ACTIONS(959), - [anon_sym_match] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_RBRACE] = ACTIONS(959), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_try] = ACTIONS(959), - [anon_sym_return] = ACTIONS(959), - [anon_sym_source] = ACTIONS(959), - [anon_sym_source_DASHenv] = ACTIONS(959), - [anon_sym_register] = ACTIONS(959), - [anon_sym_hide] = ACTIONS(959), - [anon_sym_hide_DASHenv] = ACTIONS(959), - [anon_sym_overlay] = ACTIONS(959), - [anon_sym_as] = ACTIONS(959), - [anon_sym_where] = ACTIONS(959), - [anon_sym_not] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_DOT_DOT_LT] = ACTIONS(959), - [anon_sym_null] = ACTIONS(959), - [anon_sym_true] = ACTIONS(959), - [anon_sym_false] = ACTIONS(959), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(959), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(959), - [aux_sym__val_number_token1] = ACTIONS(959), - [aux_sym__val_number_token2] = ACTIONS(959), - [aux_sym__val_number_token3] = ACTIONS(959), - [aux_sym__val_number_token4] = ACTIONS(959), - [aux_sym__val_number_token5] = ACTIONS(959), - [aux_sym__val_number_token6] = ACTIONS(959), - [anon_sym_0b] = ACTIONS(959), - [anon_sym_0o] = ACTIONS(959), - [anon_sym_0x] = ACTIONS(959), - [sym_val_date] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [sym__str_single_quotes] = ACTIONS(959), - [sym__str_back_ticks] = ACTIONS(959), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(959), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(959), - [anon_sym_CARET] = ACTIONS(959), - [aux_sym_unquoted_token5] = ACTIONS(1812), - [anon_sym_POUND] = ACTIONS(113), + [1836] = { + [sym_expr_unary] = STATE(2580), + [sym__expr_unary_minus] = STATE(2540), + [sym_expr_binary] = STATE(2580), + [sym__expr_binary_expression] = STATE(2628), + [sym_expr_parenthesized] = STATE(2580), + [sym__val_range] = STATE(10216), + [sym__value] = STATE(2580), + [sym_val_nothing] = STATE(2556), + [sym_val_bool] = STATE(2480), + [sym_val_variable] = STATE(2556), + [sym__var] = STATE(2092), + [sym_val_number] = STATE(2556), + [sym__val_number_decimal] = STATE(1114), + [sym__val_number] = STATE(2558), + [sym_val_duration] = STATE(2556), + [sym_val_filesize] = STATE(2556), + [sym_val_binary] = STATE(2556), + [sym_val_string] = STATE(2556), + [sym__str_double_quotes] = STATE(2557), + [sym_val_interpolated] = STATE(2556), + [sym__inter_single_quotes] = STATE(2570), + [sym__inter_double_quotes] = STATE(2571), + [sym_val_list] = STATE(2556), + [sym_val_record] = STATE(2556), + [sym_val_table] = STATE(2556), + [sym_val_closure] = STATE(2556), + [sym_unquoted] = STATE(2582), + [sym__unquoted_anonymous_prefix] = STATE(10348), + [sym_comment] = STATE(1836), + [anon_sym_LBRACK] = ACTIONS(4294), + [anon_sym_LPAREN] = ACTIONS(5383), + [anon_sym_DOLLAR] = ACTIONS(5385), + [anon_sym_DASH] = ACTIONS(4300), + [anon_sym_LBRACE] = ACTIONS(4302), + [anon_sym_DOT_DOT] = ACTIONS(5387), + [anon_sym_not] = ACTIONS(4306), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5389), + [anon_sym_DOT_DOT_LT] = ACTIONS(5389), + [anon_sym_null] = ACTIONS(4310), + [anon_sym_true] = ACTIONS(4312), + [anon_sym_false] = ACTIONS(4312), + [aux_sym__val_number_decimal_token1] = ACTIONS(4314), + [aux_sym__val_number_decimal_token2] = ACTIONS(4316), + [anon_sym_DOT2] = ACTIONS(5391), + [aux_sym__val_number_decimal_token3] = ACTIONS(4320), + [aux_sym__val_number_token1] = ACTIONS(4322), + [aux_sym__val_number_token2] = ACTIONS(4322), + [aux_sym__val_number_token3] = ACTIONS(4322), + [aux_sym__val_number_token4] = ACTIONS(5393), + [aux_sym__val_number_token5] = ACTIONS(5393), + [aux_sym__val_number_token6] = ACTIONS(5393), + [anon_sym_0b] = ACTIONS(4326), + [anon_sym_0o] = ACTIONS(4328), + [anon_sym_0x] = ACTIONS(4328), + [sym_val_date] = ACTIONS(4330), + [anon_sym_DQUOTE] = ACTIONS(4332), + [sym__str_single_quotes] = ACTIONS(4334), + [sym__str_back_ticks] = ACTIONS(4334), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4336), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4338), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5395), + [anon_sym_POUND] = ACTIONS(3), }, - [1638] = { - [sym_comment] = STATE(1638), - [anon_sym_export] = ACTIONS(2581), - [anon_sym_alias] = ACTIONS(2581), - [anon_sym_let] = ACTIONS(2581), - [anon_sym_let_DASHenv] = ACTIONS(2581), - [anon_sym_mut] = ACTIONS(2581), - [anon_sym_const] = ACTIONS(2581), - [anon_sym_SEMI] = ACTIONS(2581), - [sym_cmd_identifier] = ACTIONS(2581), - [anon_sym_LF] = ACTIONS(2583), - [anon_sym_def] = ACTIONS(2581), - [anon_sym_export_DASHenv] = ACTIONS(2581), - [anon_sym_extern] = ACTIONS(2581), - [anon_sym_module] = ACTIONS(2581), - [anon_sym_use] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2581), - [anon_sym_RPAREN] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2581), - [anon_sym_error] = ACTIONS(2581), - [anon_sym_DASH_DASH] = ACTIONS(2581), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_break] = ACTIONS(2581), - [anon_sym_continue] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2581), - [anon_sym_loop] = ACTIONS(2581), - [anon_sym_while] = ACTIONS(2581), - [anon_sym_do] = ACTIONS(2581), - [anon_sym_if] = ACTIONS(2581), - [anon_sym_match] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2581), - [anon_sym_RBRACE] = ACTIONS(2581), - [anon_sym_DOT_DOT] = ACTIONS(2581), - [anon_sym_try] = ACTIONS(2581), - [anon_sym_return] = ACTIONS(2581), - [anon_sym_source] = ACTIONS(2581), - [anon_sym_source_DASHenv] = ACTIONS(2581), - [anon_sym_register] = ACTIONS(2581), - [anon_sym_hide] = ACTIONS(2581), - [anon_sym_hide_DASHenv] = ACTIONS(2581), - [anon_sym_overlay] = ACTIONS(2581), - [anon_sym_as] = ACTIONS(2581), - [anon_sym_where] = ACTIONS(2581), - [anon_sym_not] = ACTIONS(2581), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2581), - [anon_sym_DOT_DOT_LT] = ACTIONS(2581), - [aux_sym__immediate_decimal_token2] = ACTIONS(4822), - [anon_sym_null] = ACTIONS(2581), - [anon_sym_true] = ACTIONS(2581), - [anon_sym_false] = ACTIONS(2581), - [aux_sym__val_number_decimal_token1] = ACTIONS(2581), - [aux_sym__val_number_decimal_token2] = ACTIONS(2581), - [anon_sym_DOT2] = ACTIONS(2581), - [aux_sym__val_number_decimal_token3] = ACTIONS(2581), - [aux_sym__val_number_token1] = ACTIONS(2581), - [aux_sym__val_number_token2] = ACTIONS(2581), - [aux_sym__val_number_token3] = ACTIONS(2581), - [aux_sym__val_number_token4] = ACTIONS(2581), - [aux_sym__val_number_token5] = ACTIONS(2581), - [aux_sym__val_number_token6] = ACTIONS(2581), - [anon_sym_0b] = ACTIONS(2581), - [anon_sym_0o] = ACTIONS(2581), - [anon_sym_0x] = ACTIONS(2581), - [sym_val_date] = ACTIONS(2581), - [anon_sym_DQUOTE] = ACTIONS(2581), - [sym__str_single_quotes] = ACTIONS(2581), - [sym__str_back_ticks] = ACTIONS(2581), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2581), - [anon_sym_CARET] = ACTIONS(2581), - [anon_sym_POUND] = ACTIONS(113), + [1837] = { + [sym_expr_unary] = STATE(2580), + [sym__expr_unary_minus] = STATE(2540), + [sym_expr_binary] = STATE(2580), + [sym__expr_binary_expression] = STATE(2629), + [sym_expr_parenthesized] = STATE(2580), + [sym__val_range] = STATE(10216), + [sym__value] = STATE(2580), + [sym_val_nothing] = STATE(2556), + [sym_val_bool] = STATE(2480), + [sym_val_variable] = STATE(2556), + [sym__var] = STATE(2092), + [sym_val_number] = STATE(2556), + [sym__val_number_decimal] = STATE(1114), + [sym__val_number] = STATE(2558), + [sym_val_duration] = STATE(2556), + [sym_val_filesize] = STATE(2556), + [sym_val_binary] = STATE(2556), + [sym_val_string] = STATE(2556), + [sym__str_double_quotes] = STATE(2557), + [sym_val_interpolated] = STATE(2556), + [sym__inter_single_quotes] = STATE(2570), + [sym__inter_double_quotes] = STATE(2571), + [sym_val_list] = STATE(2556), + [sym_val_record] = STATE(2556), + [sym_val_table] = STATE(2556), + [sym_val_closure] = STATE(2556), + [sym_unquoted] = STATE(2591), + [sym__unquoted_anonymous_prefix] = STATE(10348), + [sym_comment] = STATE(1837), + [anon_sym_LBRACK] = ACTIONS(4294), + [anon_sym_LPAREN] = ACTIONS(5383), + [anon_sym_DOLLAR] = ACTIONS(5385), + [anon_sym_DASH] = ACTIONS(4300), + [anon_sym_LBRACE] = ACTIONS(4302), + [anon_sym_DOT_DOT] = ACTIONS(5387), + [anon_sym_not] = ACTIONS(4306), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5389), + [anon_sym_DOT_DOT_LT] = ACTIONS(5389), + [anon_sym_null] = ACTIONS(4310), + [anon_sym_true] = ACTIONS(4312), + [anon_sym_false] = ACTIONS(4312), + [aux_sym__val_number_decimal_token1] = ACTIONS(4314), + [aux_sym__val_number_decimal_token2] = ACTIONS(4316), + [anon_sym_DOT2] = ACTIONS(5391), + [aux_sym__val_number_decimal_token3] = ACTIONS(4320), + [aux_sym__val_number_token1] = ACTIONS(4322), + [aux_sym__val_number_token2] = ACTIONS(4322), + [aux_sym__val_number_token3] = ACTIONS(4322), + [aux_sym__val_number_token4] = ACTIONS(5393), + [aux_sym__val_number_token5] = ACTIONS(5393), + [aux_sym__val_number_token6] = ACTIONS(5393), + [anon_sym_0b] = ACTIONS(4326), + [anon_sym_0o] = ACTIONS(4328), + [anon_sym_0x] = ACTIONS(4328), + [sym_val_date] = ACTIONS(4330), + [anon_sym_DQUOTE] = ACTIONS(4332), + [sym__str_single_quotes] = ACTIONS(4334), + [sym__str_back_ticks] = ACTIONS(4334), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4336), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4338), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5395), + [anon_sym_POUND] = ACTIONS(3), }, - [1639] = { - [sym_comment] = STATE(1639), - [anon_sym_export] = ACTIONS(3964), - [anon_sym_alias] = ACTIONS(3964), - [anon_sym_let] = ACTIONS(3964), - [anon_sym_let_DASHenv] = ACTIONS(3964), - [anon_sym_mut] = ACTIONS(3964), - [anon_sym_const] = ACTIONS(3964), - [anon_sym_SEMI] = ACTIONS(3964), - [sym_cmd_identifier] = ACTIONS(3964), - [anon_sym_LF] = ACTIONS(3966), - [anon_sym_def] = ACTIONS(3964), - [anon_sym_export_DASHenv] = ACTIONS(3964), - [anon_sym_extern] = ACTIONS(3964), - [anon_sym_module] = ACTIONS(3964), - [anon_sym_use] = ACTIONS(3964), - [anon_sym_LBRACK] = ACTIONS(3964), - [anon_sym_LPAREN] = ACTIONS(3964), - [anon_sym_RPAREN] = ACTIONS(3964), - [anon_sym_DOLLAR] = ACTIONS(3964), - [anon_sym_error] = ACTIONS(3964), - [anon_sym_DASH] = ACTIONS(3964), - [anon_sym_break] = ACTIONS(3964), - [anon_sym_continue] = ACTIONS(3964), - [anon_sym_for] = ACTIONS(3964), - [anon_sym_loop] = ACTIONS(3964), - [anon_sym_while] = ACTIONS(3964), - [anon_sym_do] = ACTIONS(3964), - [anon_sym_if] = ACTIONS(3964), - [anon_sym_match] = ACTIONS(3964), - [anon_sym_LBRACE] = ACTIONS(3964), - [anon_sym_RBRACE] = ACTIONS(3964), - [anon_sym_DOT_DOT] = ACTIONS(3964), - [anon_sym_try] = ACTIONS(3964), - [anon_sym_return] = ACTIONS(3964), - [anon_sym_source] = ACTIONS(3964), - [anon_sym_source_DASHenv] = ACTIONS(3964), - [anon_sym_register] = ACTIONS(3964), - [anon_sym_hide] = ACTIONS(3964), - [anon_sym_hide_DASHenv] = ACTIONS(3964), - [anon_sym_overlay] = ACTIONS(3964), - [anon_sym_where] = ACTIONS(3964), - [anon_sym_not] = ACTIONS(3964), - [anon_sym_DOT_DOT2] = ACTIONS(5031), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3964), - [anon_sym_DOT_DOT_LT] = ACTIONS(3964), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(5033), - [anon_sym_DOT_DOT_LT2] = ACTIONS(5033), - [anon_sym_null] = ACTIONS(3964), - [anon_sym_true] = ACTIONS(3964), - [anon_sym_false] = ACTIONS(3964), - [aux_sym__val_number_decimal_token1] = ACTIONS(3964), - [aux_sym__val_number_decimal_token2] = ACTIONS(3964), - [anon_sym_DOT2] = ACTIONS(3964), - [aux_sym__val_number_decimal_token3] = ACTIONS(3964), - [aux_sym__val_number_token1] = ACTIONS(3964), - [aux_sym__val_number_token2] = ACTIONS(3964), - [aux_sym__val_number_token3] = ACTIONS(3964), - [aux_sym__val_number_token4] = ACTIONS(3964), - [aux_sym__val_number_token5] = ACTIONS(3964), - [aux_sym__val_number_token6] = ACTIONS(3964), - [anon_sym_0b] = ACTIONS(3964), - [anon_sym_0o] = ACTIONS(3964), - [anon_sym_0x] = ACTIONS(3964), - [sym_val_date] = ACTIONS(3964), - [anon_sym_DQUOTE] = ACTIONS(3964), - [sym__str_single_quotes] = ACTIONS(3964), - [sym__str_back_ticks] = ACTIONS(3964), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3964), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3964), - [anon_sym_CARET] = ACTIONS(3964), - [anon_sym_POUND] = ACTIONS(113), + [1838] = { + [sym_expr_unary] = STATE(2580), + [sym__expr_unary_minus] = STATE(2540), + [sym_expr_binary] = STATE(2580), + [sym__expr_binary_expression] = STATE(2633), + [sym_expr_parenthesized] = STATE(2580), + [sym__val_range] = STATE(10216), + [sym__value] = STATE(2580), + [sym_val_nothing] = STATE(2556), + [sym_val_bool] = STATE(2480), + [sym_val_variable] = STATE(2556), + [sym__var] = STATE(2092), + [sym_val_number] = STATE(2556), + [sym__val_number_decimal] = STATE(1114), + [sym__val_number] = STATE(2558), + [sym_val_duration] = STATE(2556), + [sym_val_filesize] = STATE(2556), + [sym_val_binary] = STATE(2556), + [sym_val_string] = STATE(2556), + [sym__str_double_quotes] = STATE(2557), + [sym_val_interpolated] = STATE(2556), + [sym__inter_single_quotes] = STATE(2570), + [sym__inter_double_quotes] = STATE(2571), + [sym_val_list] = STATE(2556), + [sym_val_record] = STATE(2556), + [sym_val_table] = STATE(2556), + [sym_val_closure] = STATE(2556), + [sym_unquoted] = STATE(2594), + [sym__unquoted_anonymous_prefix] = STATE(10348), + [sym_comment] = STATE(1838), + [anon_sym_LBRACK] = ACTIONS(4294), + [anon_sym_LPAREN] = ACTIONS(5383), + [anon_sym_DOLLAR] = ACTIONS(5385), + [anon_sym_DASH] = ACTIONS(4300), + [anon_sym_LBRACE] = ACTIONS(4302), + [anon_sym_DOT_DOT] = ACTIONS(5387), + [anon_sym_not] = ACTIONS(4306), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5389), + [anon_sym_DOT_DOT_LT] = ACTIONS(5389), + [anon_sym_null] = ACTIONS(4310), + [anon_sym_true] = ACTIONS(4312), + [anon_sym_false] = ACTIONS(4312), + [aux_sym__val_number_decimal_token1] = ACTIONS(4314), + [aux_sym__val_number_decimal_token2] = ACTIONS(4316), + [anon_sym_DOT2] = ACTIONS(5391), + [aux_sym__val_number_decimal_token3] = ACTIONS(4320), + [aux_sym__val_number_token1] = ACTIONS(4322), + [aux_sym__val_number_token2] = ACTIONS(4322), + [aux_sym__val_number_token3] = ACTIONS(4322), + [aux_sym__val_number_token4] = ACTIONS(5393), + [aux_sym__val_number_token5] = ACTIONS(5393), + [aux_sym__val_number_token6] = ACTIONS(5393), + [anon_sym_0b] = ACTIONS(4326), + [anon_sym_0o] = ACTIONS(4328), + [anon_sym_0x] = ACTIONS(4328), + [sym_val_date] = ACTIONS(4330), + [anon_sym_DQUOTE] = ACTIONS(4332), + [sym__str_single_quotes] = ACTIONS(4334), + [sym__str_back_ticks] = ACTIONS(4334), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4336), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4338), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5395), + [anon_sym_POUND] = ACTIONS(3), }, - [1640] = { - [sym_comment] = STATE(1640), - [anon_sym_LBRACK] = ACTIONS(1061), - [anon_sym_COMMA] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1061), - [anon_sym_DOLLAR] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_RBRACE] = ACTIONS(1061), - [anon_sym__] = ACTIONS(1059), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_QMARK2] = ACTIONS(1061), - [anon_sym_STAR_STAR] = ACTIONS(1061), - [anon_sym_PLUS_PLUS] = ACTIONS(1061), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_mod] = ACTIONS(1061), - [anon_sym_SLASH_SLASH] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_bit_DASHshl] = ACTIONS(1061), - [anon_sym_bit_DASHshr] = ACTIONS(1061), - [anon_sym_EQ_EQ] = ACTIONS(1061), - [anon_sym_BANG_EQ] = ACTIONS(1061), - [anon_sym_LT2] = ACTIONS(1059), - [anon_sym_LT_EQ] = ACTIONS(1061), - [anon_sym_GT_EQ] = ACTIONS(1061), - [anon_sym_not_DASHin] = ACTIONS(1061), - [anon_sym_starts_DASHwith] = ACTIONS(1061), - [anon_sym_ends_DASHwith] = ACTIONS(1061), - [anon_sym_EQ_TILDE] = ACTIONS(1061), - [anon_sym_BANG_TILDE] = ACTIONS(1061), - [anon_sym_bit_DASHand] = ACTIONS(1061), - [anon_sym_bit_DASHxor] = ACTIONS(1061), - [anon_sym_bit_DASHor] = ACTIONS(1061), - [anon_sym_and] = ACTIONS(1061), - [anon_sym_xor] = ACTIONS(1061), - [anon_sym_or] = ACTIONS(1061), - [anon_sym_DOT] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1061), - [anon_sym_DOT_DOT_LT] = ACTIONS(1061), - [anon_sym_null] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), - [aux_sym__val_number_decimal_token1] = ACTIONS(1059), - [aux_sym__val_number_decimal_token2] = ACTIONS(1061), - [anon_sym_DOT2] = ACTIONS(1059), - [aux_sym__val_number_decimal_token3] = ACTIONS(1061), - [aux_sym__val_number_token1] = ACTIONS(1061), - [aux_sym__val_number_token2] = ACTIONS(1061), - [aux_sym__val_number_token3] = ACTIONS(1061), - [aux_sym__val_number_token4] = ACTIONS(1061), - [aux_sym__val_number_token5] = ACTIONS(1061), - [aux_sym__val_number_token6] = ACTIONS(1061), - [anon_sym_0b] = ACTIONS(1059), - [anon_sym_0o] = ACTIONS(1059), - [anon_sym_0x] = ACTIONS(1059), - [sym_val_date] = ACTIONS(1061), - [anon_sym_DQUOTE] = ACTIONS(1061), - [sym__str_single_quotes] = ACTIONS(1061), - [sym__str_back_ticks] = ACTIONS(1061), - [anon_sym_err_GT] = ACTIONS(1061), - [anon_sym_out_GT] = ACTIONS(1061), - [anon_sym_e_GT] = ACTIONS(1061), - [anon_sym_o_GT] = ACTIONS(1061), - [anon_sym_err_PLUSout_GT] = ACTIONS(1061), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1061), - [anon_sym_o_PLUSe_GT] = ACTIONS(1061), - [anon_sym_e_PLUSo_GT] = ACTIONS(1061), - [aux_sym_unquoted_token1] = ACTIONS(1059), + [1839] = { + [sym_expr_unary] = STATE(2580), + [sym__expr_unary_minus] = STATE(2540), + [sym_expr_binary] = STATE(2580), + [sym__expr_binary_expression] = STATE(2635), + [sym_expr_parenthesized] = STATE(2580), + [sym__val_range] = STATE(10216), + [sym__value] = STATE(2580), + [sym_val_nothing] = STATE(2556), + [sym_val_bool] = STATE(2480), + [sym_val_variable] = STATE(2556), + [sym__var] = STATE(2092), + [sym_val_number] = STATE(2556), + [sym__val_number_decimal] = STATE(1114), + [sym__val_number] = STATE(2558), + [sym_val_duration] = STATE(2556), + [sym_val_filesize] = STATE(2556), + [sym_val_binary] = STATE(2556), + [sym_val_string] = STATE(2556), + [sym__str_double_quotes] = STATE(2557), + [sym_val_interpolated] = STATE(2556), + [sym__inter_single_quotes] = STATE(2570), + [sym__inter_double_quotes] = STATE(2571), + [sym_val_list] = STATE(2556), + [sym_val_record] = STATE(2556), + [sym_val_table] = STATE(2556), + [sym_val_closure] = STATE(2556), + [sym_unquoted] = STATE(2596), + [sym__unquoted_anonymous_prefix] = STATE(10348), + [sym_comment] = STATE(1839), + [anon_sym_LBRACK] = ACTIONS(4294), + [anon_sym_LPAREN] = ACTIONS(5383), + [anon_sym_DOLLAR] = ACTIONS(5385), + [anon_sym_DASH] = ACTIONS(4300), + [anon_sym_LBRACE] = ACTIONS(4302), + [anon_sym_DOT_DOT] = ACTIONS(5387), + [anon_sym_not] = ACTIONS(4306), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5389), + [anon_sym_DOT_DOT_LT] = ACTIONS(5389), + [anon_sym_null] = ACTIONS(4310), + [anon_sym_true] = ACTIONS(4312), + [anon_sym_false] = ACTIONS(4312), + [aux_sym__val_number_decimal_token1] = ACTIONS(4314), + [aux_sym__val_number_decimal_token2] = ACTIONS(4316), + [anon_sym_DOT2] = ACTIONS(5391), + [aux_sym__val_number_decimal_token3] = ACTIONS(4320), + [aux_sym__val_number_token1] = ACTIONS(4322), + [aux_sym__val_number_token2] = ACTIONS(4322), + [aux_sym__val_number_token3] = ACTIONS(4322), + [aux_sym__val_number_token4] = ACTIONS(5393), + [aux_sym__val_number_token5] = ACTIONS(5393), + [aux_sym__val_number_token6] = ACTIONS(5393), + [anon_sym_0b] = ACTIONS(4326), + [anon_sym_0o] = ACTIONS(4328), + [anon_sym_0x] = ACTIONS(4328), + [sym_val_date] = ACTIONS(4330), + [anon_sym_DQUOTE] = ACTIONS(4332), + [sym__str_single_quotes] = ACTIONS(4334), + [sym__str_back_ticks] = ACTIONS(4334), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4336), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4338), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5395), [anon_sym_POUND] = ACTIONS(3), }, - [1641] = { - [sym_comment] = STATE(1641), - [anon_sym_export] = ACTIONS(4043), - [anon_sym_alias] = ACTIONS(4043), - [anon_sym_let] = ACTIONS(4043), - [anon_sym_let_DASHenv] = ACTIONS(4043), - [anon_sym_mut] = ACTIONS(4043), - [anon_sym_const] = ACTIONS(4043), - [anon_sym_SEMI] = ACTIONS(4043), - [sym_cmd_identifier] = ACTIONS(4043), - [anon_sym_LF] = ACTIONS(4045), - [anon_sym_def] = ACTIONS(4043), - [anon_sym_export_DASHenv] = ACTIONS(4043), - [anon_sym_extern] = ACTIONS(4043), - [anon_sym_module] = ACTIONS(4043), - [anon_sym_use] = ACTIONS(4043), - [anon_sym_LBRACK] = ACTIONS(4043), - [anon_sym_LPAREN] = ACTIONS(4043), - [anon_sym_RPAREN] = ACTIONS(4043), - [anon_sym_DOLLAR] = ACTIONS(4043), - [anon_sym_error] = ACTIONS(4043), - [anon_sym_DASH] = ACTIONS(4043), - [anon_sym_break] = ACTIONS(4043), - [anon_sym_continue] = ACTIONS(4043), - [anon_sym_for] = ACTIONS(4043), - [anon_sym_loop] = ACTIONS(4043), - [anon_sym_while] = ACTIONS(4043), - [anon_sym_do] = ACTIONS(4043), - [anon_sym_if] = ACTIONS(4043), - [anon_sym_match] = ACTIONS(4043), - [anon_sym_LBRACE] = ACTIONS(4043), - [anon_sym_RBRACE] = ACTIONS(4043), - [anon_sym_DOT_DOT] = ACTIONS(4043), - [anon_sym_try] = ACTIONS(4043), - [anon_sym_return] = ACTIONS(4043), - [anon_sym_source] = ACTIONS(4043), - [anon_sym_source_DASHenv] = ACTIONS(4043), - [anon_sym_register] = ACTIONS(4043), - [anon_sym_hide] = ACTIONS(4043), - [anon_sym_hide_DASHenv] = ACTIONS(4043), - [anon_sym_overlay] = ACTIONS(4043), - [anon_sym_where] = ACTIONS(4043), - [anon_sym_not] = ACTIONS(4043), - [anon_sym_DOT_DOT2] = ACTIONS(5035), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4043), - [anon_sym_DOT_DOT_LT] = ACTIONS(4043), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(5037), - [anon_sym_DOT_DOT_LT2] = ACTIONS(5037), - [anon_sym_null] = ACTIONS(4043), - [anon_sym_true] = ACTIONS(4043), - [anon_sym_false] = ACTIONS(4043), - [aux_sym__val_number_decimal_token1] = ACTIONS(4043), - [aux_sym__val_number_decimal_token2] = ACTIONS(4043), - [anon_sym_DOT2] = ACTIONS(4043), - [aux_sym__val_number_decimal_token3] = ACTIONS(4043), - [aux_sym__val_number_token1] = ACTIONS(4043), - [aux_sym__val_number_token2] = ACTIONS(4043), - [aux_sym__val_number_token3] = ACTIONS(4043), - [aux_sym__val_number_token4] = ACTIONS(4043), - [aux_sym__val_number_token5] = ACTIONS(4043), - [aux_sym__val_number_token6] = ACTIONS(4043), - [anon_sym_0b] = ACTIONS(4043), - [anon_sym_0o] = ACTIONS(4043), - [anon_sym_0x] = ACTIONS(4043), - [sym_val_date] = ACTIONS(4043), - [anon_sym_DQUOTE] = ACTIONS(4043), - [sym__str_single_quotes] = ACTIONS(4043), - [sym__str_back_ticks] = ACTIONS(4043), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4043), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4043), - [anon_sym_CARET] = ACTIONS(4043), - [anon_sym_POUND] = ACTIONS(113), + [1840] = { + [sym_expr_unary] = STATE(2580), + [sym__expr_unary_minus] = STATE(2540), + [sym_expr_binary] = STATE(2580), + [sym__expr_binary_expression] = STATE(2636), + [sym_expr_parenthesized] = STATE(2580), + [sym__val_range] = STATE(10216), + [sym__value] = STATE(2580), + [sym_val_nothing] = STATE(2556), + [sym_val_bool] = STATE(2480), + [sym_val_variable] = STATE(2556), + [sym__var] = STATE(2092), + [sym_val_number] = STATE(2556), + [sym__val_number_decimal] = STATE(1114), + [sym__val_number] = STATE(2558), + [sym_val_duration] = STATE(2556), + [sym_val_filesize] = STATE(2556), + [sym_val_binary] = STATE(2556), + [sym_val_string] = STATE(2556), + [sym__str_double_quotes] = STATE(2557), + [sym_val_interpolated] = STATE(2556), + [sym__inter_single_quotes] = STATE(2570), + [sym__inter_double_quotes] = STATE(2571), + [sym_val_list] = STATE(2556), + [sym_val_record] = STATE(2556), + [sym_val_table] = STATE(2556), + [sym_val_closure] = STATE(2556), + [sym_unquoted] = STATE(2599), + [sym__unquoted_anonymous_prefix] = STATE(10348), + [sym_comment] = STATE(1840), + [anon_sym_LBRACK] = ACTIONS(4294), + [anon_sym_LPAREN] = ACTIONS(5383), + [anon_sym_DOLLAR] = ACTIONS(5385), + [anon_sym_DASH] = ACTIONS(4300), + [anon_sym_LBRACE] = ACTIONS(4302), + [anon_sym_DOT_DOT] = ACTIONS(5387), + [anon_sym_not] = ACTIONS(4306), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5389), + [anon_sym_DOT_DOT_LT] = ACTIONS(5389), + [anon_sym_null] = ACTIONS(4310), + [anon_sym_true] = ACTIONS(4312), + [anon_sym_false] = ACTIONS(4312), + [aux_sym__val_number_decimal_token1] = ACTIONS(4314), + [aux_sym__val_number_decimal_token2] = ACTIONS(4316), + [anon_sym_DOT2] = ACTIONS(5391), + [aux_sym__val_number_decimal_token3] = ACTIONS(4320), + [aux_sym__val_number_token1] = ACTIONS(4322), + [aux_sym__val_number_token2] = ACTIONS(4322), + [aux_sym__val_number_token3] = ACTIONS(4322), + [aux_sym__val_number_token4] = ACTIONS(5393), + [aux_sym__val_number_token5] = ACTIONS(5393), + [aux_sym__val_number_token6] = ACTIONS(5393), + [anon_sym_0b] = ACTIONS(4326), + [anon_sym_0o] = ACTIONS(4328), + [anon_sym_0x] = ACTIONS(4328), + [sym_val_date] = ACTIONS(4330), + [anon_sym_DQUOTE] = ACTIONS(4332), + [sym__str_single_quotes] = ACTIONS(4334), + [sym__str_back_ticks] = ACTIONS(4334), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4336), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4338), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5395), + [anon_sym_POUND] = ACTIONS(3), }, - [1642] = { - [sym_comment] = STATE(1642), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_alias] = ACTIONS(1109), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_let_DASHenv] = ACTIONS(1109), - [anon_sym_mut] = ACTIONS(1109), - [anon_sym_const] = ACTIONS(1109), - [anon_sym_SEMI] = ACTIONS(1109), - [sym_cmd_identifier] = ACTIONS(1109), - [anon_sym_LF] = ACTIONS(1111), - [anon_sym_def] = ACTIONS(1109), - [anon_sym_export_DASHenv] = ACTIONS(1109), - [anon_sym_extern] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_use] = ACTIONS(1109), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_RPAREN] = ACTIONS(1109), - [anon_sym_DOLLAR] = ACTIONS(1109), - [anon_sym_error] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_break] = ACTIONS(1109), - [anon_sym_continue] = ACTIONS(1109), - [anon_sym_for] = ACTIONS(1109), - [anon_sym_loop] = ACTIONS(1109), - [anon_sym_while] = ACTIONS(1109), - [anon_sym_do] = ACTIONS(1109), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_RBRACE] = ACTIONS(1109), - [anon_sym_DOT_DOT] = ACTIONS(1109), - [anon_sym_try] = ACTIONS(1109), - [anon_sym_return] = ACTIONS(1109), - [anon_sym_source] = ACTIONS(1109), - [anon_sym_source_DASHenv] = ACTIONS(1109), - [anon_sym_register] = ACTIONS(1109), - [anon_sym_hide] = ACTIONS(1109), - [anon_sym_hide_DASHenv] = ACTIONS(1109), - [anon_sym_overlay] = ACTIONS(1109), - [anon_sym_as] = ACTIONS(1109), - [anon_sym_where] = ACTIONS(1109), - [anon_sym_not] = ACTIONS(1109), - [anon_sym_DOT] = ACTIONS(1109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1109), - [anon_sym_DOT_DOT_LT] = ACTIONS(1109), - [anon_sym_null] = ACTIONS(1109), - [anon_sym_true] = ACTIONS(1109), - [anon_sym_false] = ACTIONS(1109), - [aux_sym__val_number_decimal_token1] = ACTIONS(1109), - [aux_sym__val_number_decimal_token2] = ACTIONS(1109), - [anon_sym_DOT2] = ACTIONS(1109), - [aux_sym__val_number_decimal_token3] = ACTIONS(1109), - [aux_sym__val_number_token1] = ACTIONS(1109), - [aux_sym__val_number_token2] = ACTIONS(1109), - [aux_sym__val_number_token3] = ACTIONS(1109), - [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(1109), - [anon_sym_0o] = ACTIONS(1109), - [anon_sym_0x] = ACTIONS(1109), - [sym_val_date] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(1109), - [sym__str_single_quotes] = ACTIONS(1109), - [sym__str_back_ticks] = ACTIONS(1109), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1109), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1109), - [anon_sym_CARET] = ACTIONS(1109), - [anon_sym_POUND] = ACTIONS(113), + [1841] = { + [sym_expr_unary] = STATE(2580), + [sym__expr_unary_minus] = STATE(2540), + [sym_expr_binary] = STATE(2580), + [sym__expr_binary_expression] = STATE(2637), + [sym_expr_parenthesized] = STATE(2580), + [sym__val_range] = STATE(10216), + [sym__value] = STATE(2580), + [sym_val_nothing] = STATE(2556), + [sym_val_bool] = STATE(2480), + [sym_val_variable] = STATE(2556), + [sym__var] = STATE(2092), + [sym_val_number] = STATE(2556), + [sym__val_number_decimal] = STATE(1114), + [sym__val_number] = STATE(2558), + [sym_val_duration] = STATE(2556), + [sym_val_filesize] = STATE(2556), + [sym_val_binary] = STATE(2556), + [sym_val_string] = STATE(2556), + [sym__str_double_quotes] = STATE(2557), + [sym_val_interpolated] = STATE(2556), + [sym__inter_single_quotes] = STATE(2570), + [sym__inter_double_quotes] = STATE(2571), + [sym_val_list] = STATE(2556), + [sym_val_record] = STATE(2556), + [sym_val_table] = STATE(2556), + [sym_val_closure] = STATE(2556), + [sym_unquoted] = STATE(2602), + [sym__unquoted_anonymous_prefix] = STATE(10348), + [sym_comment] = STATE(1841), + [anon_sym_LBRACK] = ACTIONS(4294), + [anon_sym_LPAREN] = ACTIONS(5383), + [anon_sym_DOLLAR] = ACTIONS(5385), + [anon_sym_DASH] = ACTIONS(4300), + [anon_sym_LBRACE] = ACTIONS(4302), + [anon_sym_DOT_DOT] = ACTIONS(5387), + [anon_sym_not] = ACTIONS(4306), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5389), + [anon_sym_DOT_DOT_LT] = ACTIONS(5389), + [anon_sym_null] = ACTIONS(4310), + [anon_sym_true] = ACTIONS(4312), + [anon_sym_false] = ACTIONS(4312), + [aux_sym__val_number_decimal_token1] = ACTIONS(4314), + [aux_sym__val_number_decimal_token2] = ACTIONS(4316), + [anon_sym_DOT2] = ACTIONS(5391), + [aux_sym__val_number_decimal_token3] = ACTIONS(4320), + [aux_sym__val_number_token1] = ACTIONS(4322), + [aux_sym__val_number_token2] = ACTIONS(4322), + [aux_sym__val_number_token3] = ACTIONS(4322), + [aux_sym__val_number_token4] = ACTIONS(5393), + [aux_sym__val_number_token5] = ACTIONS(5393), + [aux_sym__val_number_token6] = ACTIONS(5393), + [anon_sym_0b] = ACTIONS(4326), + [anon_sym_0o] = ACTIONS(4328), + [anon_sym_0x] = ACTIONS(4328), + [sym_val_date] = ACTIONS(4330), + [anon_sym_DQUOTE] = ACTIONS(4332), + [sym__str_single_quotes] = ACTIONS(4334), + [sym__str_back_ticks] = ACTIONS(4334), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4336), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4338), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5395), + [anon_sym_POUND] = ACTIONS(3), }, - [1643] = { - [sym_comment] = STATE(1643), - [anon_sym_LBRACK] = ACTIONS(1253), - [anon_sym_COMMA] = ACTIONS(1253), - [anon_sym_RBRACK] = ACTIONS(1253), - [anon_sym_LPAREN] = ACTIONS(1253), - [anon_sym_DOLLAR] = ACTIONS(1253), - [anon_sym_GT] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_in] = ACTIONS(1253), - [anon_sym_LBRACE] = ACTIONS(1253), - [anon_sym_DOT_DOT] = ACTIONS(1253), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_STAR_STAR] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_mod] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_bit_DASHshl] = ACTIONS(1253), - [anon_sym_bit_DASHshr] = ACTIONS(1253), - [anon_sym_EQ_EQ] = ACTIONS(1253), - [anon_sym_BANG_EQ] = ACTIONS(1253), - [anon_sym_LT2] = ACTIONS(1253), - [anon_sym_LT_EQ] = ACTIONS(1253), - [anon_sym_GT_EQ] = ACTIONS(1253), - [anon_sym_not_DASHin] = ACTIONS(1253), - [anon_sym_starts_DASHwith] = ACTIONS(1253), - [anon_sym_ends_DASHwith] = ACTIONS(1253), - [anon_sym_EQ_TILDE] = ACTIONS(1253), - [anon_sym_BANG_TILDE] = ACTIONS(1253), - [anon_sym_bit_DASHand] = ACTIONS(1253), - [anon_sym_bit_DASHxor] = ACTIONS(1253), - [anon_sym_bit_DASHor] = ACTIONS(1253), - [anon_sym_and] = ACTIONS(1253), - [anon_sym_xor] = ACTIONS(1253), - [anon_sym_or] = ACTIONS(1253), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1253), - [anon_sym_DOT_DOT_LT] = ACTIONS(1253), - [anon_sym_null] = ACTIONS(1253), - [anon_sym_true] = ACTIONS(1253), - [anon_sym_false] = ACTIONS(1253), - [aux_sym__val_number_decimal_token1] = ACTIONS(1253), - [aux_sym__val_number_decimal_token2] = ACTIONS(1253), - [anon_sym_DOT2] = ACTIONS(1253), - [aux_sym__val_number_decimal_token3] = ACTIONS(1253), - [aux_sym__val_number_token1] = ACTIONS(1253), - [aux_sym__val_number_token2] = ACTIONS(1253), - [aux_sym__val_number_token3] = ACTIONS(1253), - [aux_sym__val_number_token4] = ACTIONS(1253), - [aux_sym__val_number_token5] = ACTIONS(1253), - [aux_sym__val_number_token6] = ACTIONS(1253), - [anon_sym_0b] = ACTIONS(1253), - [anon_sym_0o] = ACTIONS(1253), - [anon_sym_0x] = ACTIONS(1253), - [sym_val_date] = ACTIONS(1253), - [anon_sym_DQUOTE] = ACTIONS(1253), - [sym__str_single_quotes] = ACTIONS(1253), - [sym__str_back_ticks] = ACTIONS(1253), - [sym__entry_separator] = ACTIONS(1255), - [anon_sym_err_GT] = ACTIONS(1253), - [anon_sym_out_GT] = ACTIONS(1253), - [anon_sym_e_GT] = ACTIONS(1253), - [anon_sym_o_GT] = ACTIONS(1253), - [anon_sym_err_PLUSout_GT] = ACTIONS(1253), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1253), - [anon_sym_o_PLUSe_GT] = ACTIONS(1253), - [anon_sym_e_PLUSo_GT] = ACTIONS(1253), - [aux_sym_unquoted_token6] = ACTIONS(1257), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1253), - [anon_sym_POUND] = ACTIONS(113), + [1842] = { + [sym_expr_unary] = STATE(2580), + [sym__expr_unary_minus] = STATE(2540), + [sym_expr_binary] = STATE(2580), + [sym__expr_binary_expression] = STATE(2583), + [sym_expr_parenthesized] = STATE(2580), + [sym__val_range] = STATE(10216), + [sym__value] = STATE(2580), + [sym_val_nothing] = STATE(2556), + [sym_val_bool] = STATE(2480), + [sym_val_variable] = STATE(2556), + [sym__var] = STATE(2092), + [sym_val_number] = STATE(2556), + [sym__val_number_decimal] = STATE(1114), + [sym__val_number] = STATE(2558), + [sym_val_duration] = STATE(2556), + [sym_val_filesize] = STATE(2556), + [sym_val_binary] = STATE(2556), + [sym_val_string] = STATE(2556), + [sym__str_double_quotes] = STATE(2557), + [sym_val_interpolated] = STATE(2556), + [sym__inter_single_quotes] = STATE(2570), + [sym__inter_double_quotes] = STATE(2571), + [sym_val_list] = STATE(2556), + [sym_val_record] = STATE(2556), + [sym_val_table] = STATE(2556), + [sym_val_closure] = STATE(2556), + [sym_unquoted] = STATE(2606), + [sym__unquoted_anonymous_prefix] = STATE(10348), + [sym_comment] = STATE(1842), + [anon_sym_LBRACK] = ACTIONS(4294), + [anon_sym_LPAREN] = ACTIONS(5383), + [anon_sym_DOLLAR] = ACTIONS(5385), + [anon_sym_DASH] = ACTIONS(4300), + [anon_sym_LBRACE] = ACTIONS(4302), + [anon_sym_DOT_DOT] = ACTIONS(5387), + [anon_sym_not] = ACTIONS(4306), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5389), + [anon_sym_DOT_DOT_LT] = ACTIONS(5389), + [anon_sym_null] = ACTIONS(4310), + [anon_sym_true] = ACTIONS(4312), + [anon_sym_false] = ACTIONS(4312), + [aux_sym__val_number_decimal_token1] = ACTIONS(4314), + [aux_sym__val_number_decimal_token2] = ACTIONS(4316), + [anon_sym_DOT2] = ACTIONS(5391), + [aux_sym__val_number_decimal_token3] = ACTIONS(4320), + [aux_sym__val_number_token1] = ACTIONS(4322), + [aux_sym__val_number_token2] = ACTIONS(4322), + [aux_sym__val_number_token3] = ACTIONS(4322), + [aux_sym__val_number_token4] = ACTIONS(5393), + [aux_sym__val_number_token5] = ACTIONS(5393), + [aux_sym__val_number_token6] = ACTIONS(5393), + [anon_sym_0b] = ACTIONS(4326), + [anon_sym_0o] = ACTIONS(4328), + [anon_sym_0x] = ACTIONS(4328), + [sym_val_date] = ACTIONS(4330), + [anon_sym_DQUOTE] = ACTIONS(4332), + [sym__str_single_quotes] = ACTIONS(4334), + [sym__str_back_ticks] = ACTIONS(4334), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4336), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4338), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5395), + [anon_sym_POUND] = ACTIONS(3), }, - [1644] = { - [sym_comment] = STATE(1644), - [ts_builtin_sym_end] = ACTIONS(1115), - [anon_sym_export] = ACTIONS(1113), - [anon_sym_alias] = ACTIONS(1113), - [anon_sym_let] = ACTIONS(1113), - [anon_sym_let_DASHenv] = ACTIONS(1113), - [anon_sym_mut] = ACTIONS(1113), - [anon_sym_const] = ACTIONS(1113), - [anon_sym_SEMI] = ACTIONS(1113), - [sym_cmd_identifier] = ACTIONS(1113), - [anon_sym_LF] = ACTIONS(1115), - [anon_sym_def] = ACTIONS(1113), - [anon_sym_export_DASHenv] = ACTIONS(1113), - [anon_sym_extern] = ACTIONS(1113), - [anon_sym_module] = ACTIONS(1113), - [anon_sym_use] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1113), - [anon_sym_error] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_loop] = ACTIONS(1113), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1113), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_source] = ACTIONS(1113), - [anon_sym_source_DASHenv] = ACTIONS(1113), - [anon_sym_register] = ACTIONS(1113), - [anon_sym_hide] = ACTIONS(1113), - [anon_sym_hide_DASHenv] = ACTIONS(1113), - [anon_sym_overlay] = ACTIONS(1113), - [anon_sym_where] = ACTIONS(1113), - [anon_sym_not] = ACTIONS(1113), - [anon_sym_DOT_DOT2] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1113), - [anon_sym_DOT_DOT_LT] = ACTIONS(1113), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1115), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1113), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1113), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_decimal_token2] = ACTIONS(1113), - [anon_sym_DOT2] = ACTIONS(1113), - [aux_sym__val_number_decimal_token3] = ACTIONS(1113), - [aux_sym__val_number_token1] = ACTIONS(1113), - [aux_sym__val_number_token2] = ACTIONS(1113), - [aux_sym__val_number_token3] = ACTIONS(1113), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1113), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_0b] = ACTIONS(1113), - [anon_sym_0o] = ACTIONS(1113), - [anon_sym_0x] = ACTIONS(1113), - [sym_val_date] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym__str_single_quotes] = ACTIONS(1113), - [sym__str_back_ticks] = ACTIONS(1113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), - [anon_sym_CARET] = ACTIONS(1113), - [anon_sym_POUND] = ACTIONS(113), + [1843] = { + [sym_expr_unary] = STATE(2580), + [sym__expr_unary_minus] = STATE(2540), + [sym_expr_binary] = STATE(2580), + [sym__expr_binary_expression] = STATE(2520), + [sym_expr_parenthesized] = STATE(2580), + [sym__val_range] = STATE(10216), + [sym__value] = STATE(2580), + [sym_val_nothing] = STATE(2556), + [sym_val_bool] = STATE(2480), + [sym_val_variable] = STATE(2556), + [sym__var] = STATE(2092), + [sym_val_number] = STATE(2556), + [sym__val_number_decimal] = STATE(1114), + [sym__val_number] = STATE(2558), + [sym_val_duration] = STATE(2556), + [sym_val_filesize] = STATE(2556), + [sym_val_binary] = STATE(2556), + [sym_val_string] = STATE(2556), + [sym__str_double_quotes] = STATE(2557), + [sym_val_interpolated] = STATE(2556), + [sym__inter_single_quotes] = STATE(2570), + [sym__inter_double_quotes] = STATE(2571), + [sym_val_list] = STATE(2556), + [sym_val_record] = STATE(2556), + [sym_val_table] = STATE(2556), + [sym_val_closure] = STATE(2556), + [sym_unquoted] = STATE(2607), + [sym__unquoted_anonymous_prefix] = STATE(10348), + [sym_comment] = STATE(1843), + [anon_sym_LBRACK] = ACTIONS(4294), + [anon_sym_LPAREN] = ACTIONS(5383), + [anon_sym_DOLLAR] = ACTIONS(5385), + [anon_sym_DASH] = ACTIONS(4300), + [anon_sym_LBRACE] = ACTIONS(4302), + [anon_sym_DOT_DOT] = ACTIONS(5387), + [anon_sym_not] = ACTIONS(4306), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5389), + [anon_sym_DOT_DOT_LT] = ACTIONS(5389), + [anon_sym_null] = ACTIONS(4310), + [anon_sym_true] = ACTIONS(4312), + [anon_sym_false] = ACTIONS(4312), + [aux_sym__val_number_decimal_token1] = ACTIONS(4314), + [aux_sym__val_number_decimal_token2] = ACTIONS(4316), + [anon_sym_DOT2] = ACTIONS(5391), + [aux_sym__val_number_decimal_token3] = ACTIONS(4320), + [aux_sym__val_number_token1] = ACTIONS(4322), + [aux_sym__val_number_token2] = ACTIONS(4322), + [aux_sym__val_number_token3] = ACTIONS(4322), + [aux_sym__val_number_token4] = ACTIONS(5393), + [aux_sym__val_number_token5] = ACTIONS(5393), + [aux_sym__val_number_token6] = ACTIONS(5393), + [anon_sym_0b] = ACTIONS(4326), + [anon_sym_0o] = ACTIONS(4328), + [anon_sym_0x] = ACTIONS(4328), + [sym_val_date] = ACTIONS(4330), + [anon_sym_DQUOTE] = ACTIONS(4332), + [sym__str_single_quotes] = ACTIONS(4334), + [sym__str_back_ticks] = ACTIONS(4334), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4336), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4338), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5395), + [anon_sym_POUND] = ACTIONS(3), }, - [1645] = { - [sym_comment] = STATE(1645), - [ts_builtin_sym_end] = ACTIONS(2845), - [anon_sym_export] = ACTIONS(2843), - [anon_sym_alias] = ACTIONS(2843), - [anon_sym_let] = ACTIONS(2843), - [anon_sym_let_DASHenv] = ACTIONS(2843), - [anon_sym_mut] = ACTIONS(2843), - [anon_sym_const] = ACTIONS(2843), - [anon_sym_SEMI] = ACTIONS(2843), - [sym_cmd_identifier] = ACTIONS(2843), - [anon_sym_LF] = ACTIONS(2845), - [anon_sym_def] = ACTIONS(2843), - [anon_sym_export_DASHenv] = ACTIONS(2843), - [anon_sym_extern] = ACTIONS(2843), - [anon_sym_module] = ACTIONS(2843), - [anon_sym_use] = ACTIONS(2843), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_LPAREN] = ACTIONS(2843), - [anon_sym_DOLLAR] = ACTIONS(2843), - [anon_sym_error] = ACTIONS(2843), - [anon_sym_DASH_DASH] = ACTIONS(2843), - [anon_sym_DASH] = ACTIONS(2843), - [anon_sym_break] = ACTIONS(2843), - [anon_sym_continue] = ACTIONS(2843), - [anon_sym_for] = ACTIONS(2843), - [anon_sym_loop] = ACTIONS(2843), - [anon_sym_while] = ACTIONS(2843), - [anon_sym_do] = ACTIONS(2843), - [anon_sym_if] = ACTIONS(2843), - [anon_sym_match] = ACTIONS(2843), - [anon_sym_LBRACE] = ACTIONS(2843), - [anon_sym_DOT_DOT] = ACTIONS(2843), - [anon_sym_try] = ACTIONS(2843), - [anon_sym_return] = ACTIONS(2843), - [anon_sym_source] = ACTIONS(2843), - [anon_sym_source_DASHenv] = ACTIONS(2843), - [anon_sym_register] = ACTIONS(2843), - [anon_sym_hide] = ACTIONS(2843), - [anon_sym_hide_DASHenv] = ACTIONS(2843), - [anon_sym_overlay] = ACTIONS(2843), - [anon_sym_as] = ACTIONS(2843), - [anon_sym_where] = ACTIONS(2843), - [anon_sym_not] = ACTIONS(2843), - [anon_sym_DOT] = ACTIONS(2851), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2843), - [anon_sym_DOT_DOT_LT] = ACTIONS(2843), - [anon_sym_null] = ACTIONS(2843), - [anon_sym_true] = ACTIONS(2843), - [anon_sym_false] = ACTIONS(2843), - [aux_sym__val_number_decimal_token1] = ACTIONS(2843), - [aux_sym__val_number_decimal_token2] = ACTIONS(2843), - [anon_sym_DOT2] = ACTIONS(2843), - [aux_sym__val_number_decimal_token3] = ACTIONS(2843), - [aux_sym__val_number_token1] = ACTIONS(2843), - [aux_sym__val_number_token2] = ACTIONS(2843), - [aux_sym__val_number_token3] = ACTIONS(2843), - [aux_sym__val_number_token4] = ACTIONS(2843), - [aux_sym__val_number_token5] = ACTIONS(2843), - [aux_sym__val_number_token6] = ACTIONS(2843), - [anon_sym_0b] = ACTIONS(2843), - [anon_sym_0o] = ACTIONS(2843), - [anon_sym_0x] = ACTIONS(2843), - [sym_val_date] = ACTIONS(2843), - [anon_sym_DQUOTE] = ACTIONS(2843), - [sym__str_single_quotes] = ACTIONS(2843), - [sym__str_back_ticks] = ACTIONS(2843), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2843), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2843), - [anon_sym_CARET] = ACTIONS(2843), - [aux_sym_unquoted_token2] = ACTIONS(2851), - [anon_sym_POUND] = ACTIONS(113), + [1844] = { + [sym_expr_unary] = STATE(2580), + [sym__expr_unary_minus] = STATE(2540), + [sym_expr_binary] = STATE(2580), + [sym__expr_binary_expression] = STATE(2521), + [sym_expr_parenthesized] = STATE(2580), + [sym__val_range] = STATE(10216), + [sym__value] = STATE(2580), + [sym_val_nothing] = STATE(2556), + [sym_val_bool] = STATE(2480), + [sym_val_variable] = STATE(2556), + [sym__var] = STATE(2092), + [sym_val_number] = STATE(2556), + [sym__val_number_decimal] = STATE(1114), + [sym__val_number] = STATE(2558), + [sym_val_duration] = STATE(2556), + [sym_val_filesize] = STATE(2556), + [sym_val_binary] = STATE(2556), + [sym_val_string] = STATE(2556), + [sym__str_double_quotes] = STATE(2557), + [sym_val_interpolated] = STATE(2556), + [sym__inter_single_quotes] = STATE(2570), + [sym__inter_double_quotes] = STATE(2571), + [sym_val_list] = STATE(2556), + [sym_val_record] = STATE(2556), + [sym_val_table] = STATE(2556), + [sym_val_closure] = STATE(2556), + [sym_unquoted] = STATE(2608), + [sym__unquoted_anonymous_prefix] = STATE(10348), + [sym_comment] = STATE(1844), + [anon_sym_LBRACK] = ACTIONS(4294), + [anon_sym_LPAREN] = ACTIONS(5383), + [anon_sym_DOLLAR] = ACTIONS(5385), + [anon_sym_DASH] = ACTIONS(4300), + [anon_sym_LBRACE] = ACTIONS(4302), + [anon_sym_DOT_DOT] = ACTIONS(5387), + [anon_sym_not] = ACTIONS(4306), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5389), + [anon_sym_DOT_DOT_LT] = ACTIONS(5389), + [anon_sym_null] = ACTIONS(4310), + [anon_sym_true] = ACTIONS(4312), + [anon_sym_false] = ACTIONS(4312), + [aux_sym__val_number_decimal_token1] = ACTIONS(4314), + [aux_sym__val_number_decimal_token2] = ACTIONS(4316), + [anon_sym_DOT2] = ACTIONS(5391), + [aux_sym__val_number_decimal_token3] = ACTIONS(4320), + [aux_sym__val_number_token1] = ACTIONS(4322), + [aux_sym__val_number_token2] = ACTIONS(4322), + [aux_sym__val_number_token3] = ACTIONS(4322), + [aux_sym__val_number_token4] = ACTIONS(5393), + [aux_sym__val_number_token5] = ACTIONS(5393), + [aux_sym__val_number_token6] = ACTIONS(5393), + [anon_sym_0b] = ACTIONS(4326), + [anon_sym_0o] = ACTIONS(4328), + [anon_sym_0x] = ACTIONS(4328), + [sym_val_date] = ACTIONS(4330), + [anon_sym_DQUOTE] = ACTIONS(4332), + [sym__str_single_quotes] = ACTIONS(4334), + [sym__str_back_ticks] = ACTIONS(4334), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4336), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4338), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5395), + [anon_sym_POUND] = ACTIONS(3), }, - [1646] = { - [sym_comment] = STATE(1646), - [anon_sym_LBRACK] = ACTIONS(1273), - [anon_sym_COMMA] = ACTIONS(1273), - [anon_sym_RBRACK] = ACTIONS(1273), - [anon_sym_LPAREN] = ACTIONS(1273), - [anon_sym_DOLLAR] = ACTIONS(1273), - [anon_sym_GT] = ACTIONS(1273), - [anon_sym_DASH_DASH] = ACTIONS(1273), - [anon_sym_DASH] = ACTIONS(1273), - [anon_sym_in] = ACTIONS(1273), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_STAR] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1273), - [anon_sym_PLUS_PLUS] = ACTIONS(1273), - [anon_sym_SLASH] = ACTIONS(1273), - [anon_sym_mod] = ACTIONS(1273), - [anon_sym_SLASH_SLASH] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(1273), - [anon_sym_bit_DASHshl] = ACTIONS(1273), - [anon_sym_bit_DASHshr] = ACTIONS(1273), - [anon_sym_EQ_EQ] = ACTIONS(1273), - [anon_sym_BANG_EQ] = ACTIONS(1273), - [anon_sym_LT2] = ACTIONS(1273), - [anon_sym_LT_EQ] = ACTIONS(1273), - [anon_sym_GT_EQ] = ACTIONS(1273), - [anon_sym_not_DASHin] = ACTIONS(1273), - [anon_sym_starts_DASHwith] = ACTIONS(1273), - [anon_sym_ends_DASHwith] = ACTIONS(1273), - [anon_sym_EQ_TILDE] = ACTIONS(1273), - [anon_sym_BANG_TILDE] = ACTIONS(1273), - [anon_sym_bit_DASHand] = ACTIONS(1273), - [anon_sym_bit_DASHxor] = ACTIONS(1273), - [anon_sym_bit_DASHor] = ACTIONS(1273), - [anon_sym_and] = ACTIONS(1273), - [anon_sym_xor] = ACTIONS(1273), - [anon_sym_or] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1273), - [anon_sym_DOT_DOT_LT] = ACTIONS(1273), - [anon_sym_null] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1273), - [anon_sym_false] = ACTIONS(1273), - [aux_sym__val_number_decimal_token1] = ACTIONS(1273), - [aux_sym__val_number_decimal_token2] = ACTIONS(1273), - [anon_sym_DOT2] = ACTIONS(1273), - [aux_sym__val_number_decimal_token3] = ACTIONS(1273), - [aux_sym__val_number_token1] = ACTIONS(1273), - [aux_sym__val_number_token2] = ACTIONS(1273), - [aux_sym__val_number_token3] = ACTIONS(1273), - [aux_sym__val_number_token4] = ACTIONS(1273), - [aux_sym__val_number_token5] = ACTIONS(1273), - [aux_sym__val_number_token6] = ACTIONS(1273), - [anon_sym_0b] = ACTIONS(1273), - [anon_sym_0o] = ACTIONS(1273), - [anon_sym_0x] = ACTIONS(1273), - [sym_val_date] = ACTIONS(1273), - [anon_sym_DQUOTE] = ACTIONS(1273), - [sym__str_single_quotes] = ACTIONS(1273), - [sym__str_back_ticks] = ACTIONS(1273), - [sym__entry_separator] = ACTIONS(1275), - [anon_sym_err_GT] = ACTIONS(1273), - [anon_sym_out_GT] = ACTIONS(1273), - [anon_sym_e_GT] = ACTIONS(1273), - [anon_sym_o_GT] = ACTIONS(1273), - [anon_sym_err_PLUSout_GT] = ACTIONS(1273), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1273), - [anon_sym_o_PLUSe_GT] = ACTIONS(1273), - [anon_sym_e_PLUSo_GT] = ACTIONS(1273), - [aux_sym_unquoted_token6] = ACTIONS(1257), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1273), - [anon_sym_POUND] = ACTIONS(113), + [1845] = { + [sym_expr_unary] = STATE(2580), + [sym__expr_unary_minus] = STATE(2540), + [sym_expr_binary] = STATE(2580), + [sym__expr_binary_expression] = STATE(2522), + [sym_expr_parenthesized] = STATE(2580), + [sym__val_range] = STATE(10216), + [sym__value] = STATE(2580), + [sym_val_nothing] = STATE(2556), + [sym_val_bool] = STATE(2480), + [sym_val_variable] = STATE(2556), + [sym__var] = STATE(2092), + [sym_val_number] = STATE(2556), + [sym__val_number_decimal] = STATE(1114), + [sym__val_number] = STATE(2558), + [sym_val_duration] = STATE(2556), + [sym_val_filesize] = STATE(2556), + [sym_val_binary] = STATE(2556), + [sym_val_string] = STATE(2556), + [sym__str_double_quotes] = STATE(2557), + [sym_val_interpolated] = STATE(2556), + [sym__inter_single_quotes] = STATE(2570), + [sym__inter_double_quotes] = STATE(2571), + [sym_val_list] = STATE(2556), + [sym_val_record] = STATE(2556), + [sym_val_table] = STATE(2556), + [sym_val_closure] = STATE(2556), + [sym_unquoted] = STATE(2609), + [sym__unquoted_anonymous_prefix] = STATE(10348), + [sym_comment] = STATE(1845), + [anon_sym_LBRACK] = ACTIONS(4294), + [anon_sym_LPAREN] = ACTIONS(5383), + [anon_sym_DOLLAR] = ACTIONS(5385), + [anon_sym_DASH] = ACTIONS(4300), + [anon_sym_LBRACE] = ACTIONS(4302), + [anon_sym_DOT_DOT] = ACTIONS(5387), + [anon_sym_not] = ACTIONS(4306), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5389), + [anon_sym_DOT_DOT_LT] = ACTIONS(5389), + [anon_sym_null] = ACTIONS(4310), + [anon_sym_true] = ACTIONS(4312), + [anon_sym_false] = ACTIONS(4312), + [aux_sym__val_number_decimal_token1] = ACTIONS(4314), + [aux_sym__val_number_decimal_token2] = ACTIONS(4316), + [anon_sym_DOT2] = ACTIONS(5391), + [aux_sym__val_number_decimal_token3] = ACTIONS(4320), + [aux_sym__val_number_token1] = ACTIONS(4322), + [aux_sym__val_number_token2] = ACTIONS(4322), + [aux_sym__val_number_token3] = ACTIONS(4322), + [aux_sym__val_number_token4] = ACTIONS(5393), + [aux_sym__val_number_token5] = ACTIONS(5393), + [aux_sym__val_number_token6] = ACTIONS(5393), + [anon_sym_0b] = ACTIONS(4326), + [anon_sym_0o] = ACTIONS(4328), + [anon_sym_0x] = ACTIONS(4328), + [sym_val_date] = ACTIONS(4330), + [anon_sym_DQUOTE] = ACTIONS(4332), + [sym__str_single_quotes] = ACTIONS(4334), + [sym__str_back_ticks] = ACTIONS(4334), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4336), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4338), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5395), + [anon_sym_POUND] = ACTIONS(3), }, - [1647] = { - [sym_comment] = STATE(1647), - [ts_builtin_sym_end] = ACTIONS(3876), - [anon_sym_export] = ACTIONS(3874), - [anon_sym_alias] = ACTIONS(3874), - [anon_sym_let] = ACTIONS(3874), - [anon_sym_let_DASHenv] = ACTIONS(3874), - [anon_sym_mut] = ACTIONS(3874), - [anon_sym_const] = ACTIONS(3874), - [anon_sym_SEMI] = ACTIONS(3874), - [sym_cmd_identifier] = ACTIONS(3874), - [anon_sym_LF] = ACTIONS(3876), - [anon_sym_def] = ACTIONS(3874), - [anon_sym_export_DASHenv] = ACTIONS(3874), - [anon_sym_extern] = ACTIONS(3874), - [anon_sym_module] = ACTIONS(3874), - [anon_sym_use] = ACTIONS(3874), - [anon_sym_LBRACK] = ACTIONS(3874), - [anon_sym_LPAREN] = ACTIONS(3874), - [anon_sym_DOLLAR] = ACTIONS(3874), - [anon_sym_error] = ACTIONS(3874), - [anon_sym_DASH_DASH] = ACTIONS(3874), - [anon_sym_DASH] = ACTIONS(3874), - [anon_sym_break] = ACTIONS(3874), - [anon_sym_continue] = ACTIONS(3874), - [anon_sym_for] = ACTIONS(3874), - [anon_sym_loop] = ACTIONS(3874), - [anon_sym_while] = ACTIONS(3874), - [anon_sym_do] = ACTIONS(3874), - [anon_sym_if] = ACTIONS(3874), - [anon_sym_match] = ACTIONS(3874), - [anon_sym_LBRACE] = ACTIONS(3874), - [anon_sym_DOT_DOT] = ACTIONS(3874), - [anon_sym_try] = ACTIONS(3874), - [anon_sym_return] = ACTIONS(3874), - [anon_sym_source] = ACTIONS(3874), - [anon_sym_source_DASHenv] = ACTIONS(3874), - [anon_sym_register] = ACTIONS(3874), - [anon_sym_hide] = ACTIONS(3874), - [anon_sym_hide_DASHenv] = ACTIONS(3874), - [anon_sym_overlay] = ACTIONS(3874), - [anon_sym_as] = ACTIONS(3874), - [anon_sym_where] = ACTIONS(3874), - [anon_sym_not] = ACTIONS(3874), - [anon_sym_DOT] = ACTIONS(2006), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3874), - [anon_sym_DOT_DOT_LT] = ACTIONS(3874), - [anon_sym_null] = ACTIONS(3874), - [anon_sym_true] = ACTIONS(3874), - [anon_sym_false] = ACTIONS(3874), - [aux_sym__val_number_decimal_token1] = ACTIONS(3874), - [aux_sym__val_number_decimal_token2] = ACTIONS(3874), - [anon_sym_DOT2] = ACTIONS(3874), - [aux_sym__val_number_decimal_token3] = ACTIONS(3874), - [aux_sym__val_number_token1] = ACTIONS(3874), - [aux_sym__val_number_token2] = ACTIONS(3874), - [aux_sym__val_number_token3] = ACTIONS(3874), - [aux_sym__val_number_token4] = ACTIONS(3874), - [aux_sym__val_number_token5] = ACTIONS(3874), - [aux_sym__val_number_token6] = ACTIONS(3874), - [anon_sym_0b] = ACTIONS(3874), - [anon_sym_0o] = ACTIONS(3874), - [anon_sym_0x] = ACTIONS(3874), - [sym_val_date] = ACTIONS(3874), - [anon_sym_DQUOTE] = ACTIONS(3874), - [sym__str_single_quotes] = ACTIONS(3874), - [sym__str_back_ticks] = ACTIONS(3874), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3874), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3874), - [anon_sym_CARET] = ACTIONS(3874), - [aux_sym_unquoted_token2] = ACTIONS(2006), - [anon_sym_POUND] = ACTIONS(113), + [1846] = { + [sym_expr_unary] = STATE(2580), + [sym__expr_unary_minus] = STATE(2540), + [sym_expr_binary] = STATE(2580), + [sym__expr_binary_expression] = STATE(2523), + [sym_expr_parenthesized] = STATE(2580), + [sym__val_range] = STATE(10216), + [sym__value] = STATE(2580), + [sym_val_nothing] = STATE(2556), + [sym_val_bool] = STATE(2480), + [sym_val_variable] = STATE(2556), + [sym__var] = STATE(2092), + [sym_val_number] = STATE(2556), + [sym__val_number_decimal] = STATE(1114), + [sym__val_number] = STATE(2558), + [sym_val_duration] = STATE(2556), + [sym_val_filesize] = STATE(2556), + [sym_val_binary] = STATE(2556), + [sym_val_string] = STATE(2556), + [sym__str_double_quotes] = STATE(2557), + [sym_val_interpolated] = STATE(2556), + [sym__inter_single_quotes] = STATE(2570), + [sym__inter_double_quotes] = STATE(2571), + [sym_val_list] = STATE(2556), + [sym_val_record] = STATE(2556), + [sym_val_table] = STATE(2556), + [sym_val_closure] = STATE(2556), + [sym_unquoted] = STATE(2610), + [sym__unquoted_anonymous_prefix] = STATE(10348), + [sym_comment] = STATE(1846), + [anon_sym_LBRACK] = ACTIONS(4294), + [anon_sym_LPAREN] = ACTIONS(5383), + [anon_sym_DOLLAR] = ACTIONS(5385), + [anon_sym_DASH] = ACTIONS(4300), + [anon_sym_LBRACE] = ACTIONS(4302), + [anon_sym_DOT_DOT] = ACTIONS(5387), + [anon_sym_not] = ACTIONS(4306), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5389), + [anon_sym_DOT_DOT_LT] = ACTIONS(5389), + [anon_sym_null] = ACTIONS(4310), + [anon_sym_true] = ACTIONS(4312), + [anon_sym_false] = ACTIONS(4312), + [aux_sym__val_number_decimal_token1] = ACTIONS(4314), + [aux_sym__val_number_decimal_token2] = ACTIONS(4316), + [anon_sym_DOT2] = ACTIONS(5391), + [aux_sym__val_number_decimal_token3] = ACTIONS(4320), + [aux_sym__val_number_token1] = ACTIONS(4322), + [aux_sym__val_number_token2] = ACTIONS(4322), + [aux_sym__val_number_token3] = ACTIONS(4322), + [aux_sym__val_number_token4] = ACTIONS(5393), + [aux_sym__val_number_token5] = ACTIONS(5393), + [aux_sym__val_number_token6] = ACTIONS(5393), + [anon_sym_0b] = ACTIONS(4326), + [anon_sym_0o] = ACTIONS(4328), + [anon_sym_0x] = ACTIONS(4328), + [sym_val_date] = ACTIONS(4330), + [anon_sym_DQUOTE] = ACTIONS(4332), + [sym__str_single_quotes] = ACTIONS(4334), + [sym__str_back_ticks] = ACTIONS(4334), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4336), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4338), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5395), + [anon_sym_POUND] = ACTIONS(3), }, - [1648] = { - [sym_comment] = STATE(1648), - [ts_builtin_sym_end] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(1059), - [anon_sym_alias] = ACTIONS(1059), - [anon_sym_let] = ACTIONS(1059), - [anon_sym_let_DASHenv] = ACTIONS(1059), - [anon_sym_mut] = ACTIONS(1059), - [anon_sym_const] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [sym_cmd_identifier] = ACTIONS(1059), - [anon_sym_LF] = ACTIONS(1061), - [anon_sym_def] = ACTIONS(1059), - [anon_sym_export_DASHenv] = ACTIONS(1059), - [anon_sym_extern] = ACTIONS(1059), - [anon_sym_module] = ACTIONS(1059), - [anon_sym_use] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_error] = ACTIONS(1059), - [anon_sym_DASH_DASH] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_break] = ACTIONS(1059), - [anon_sym_continue] = ACTIONS(1059), - [anon_sym_for] = ACTIONS(1059), - [anon_sym_loop] = ACTIONS(1059), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_do] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1059), - [anon_sym_match] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_try] = ACTIONS(1059), - [anon_sym_return] = ACTIONS(1059), - [anon_sym_source] = ACTIONS(1059), - [anon_sym_source_DASHenv] = ACTIONS(1059), - [anon_sym_register] = ACTIONS(1059), - [anon_sym_hide] = ACTIONS(1059), - [anon_sym_hide_DASHenv] = ACTIONS(1059), - [anon_sym_overlay] = ACTIONS(1059), - [anon_sym_as] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(1059), - [anon_sym_QMARK2] = ACTIONS(1059), - [anon_sym_not] = ACTIONS(1059), - [anon_sym_DOT] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1059), - [anon_sym_DOT_DOT_LT] = ACTIONS(1059), - [anon_sym_null] = ACTIONS(1059), - [anon_sym_true] = ACTIONS(1059), - [anon_sym_false] = ACTIONS(1059), - [aux_sym__val_number_decimal_token1] = ACTIONS(1059), - [aux_sym__val_number_decimal_token2] = ACTIONS(1059), - [anon_sym_DOT2] = ACTIONS(1059), - [aux_sym__val_number_decimal_token3] = ACTIONS(1059), - [aux_sym__val_number_token1] = ACTIONS(1059), - [aux_sym__val_number_token2] = ACTIONS(1059), - [aux_sym__val_number_token3] = ACTIONS(1059), - [aux_sym__val_number_token4] = ACTIONS(1059), - [aux_sym__val_number_token5] = ACTIONS(1059), - [aux_sym__val_number_token6] = ACTIONS(1059), - [anon_sym_0b] = ACTIONS(1059), - [anon_sym_0o] = ACTIONS(1059), - [anon_sym_0x] = ACTIONS(1059), - [sym_val_date] = ACTIONS(1059), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym__str_single_quotes] = ACTIONS(1059), - [sym__str_back_ticks] = ACTIONS(1059), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1059), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1059), - [anon_sym_CARET] = ACTIONS(1059), - [anon_sym_POUND] = ACTIONS(113), + [1847] = { + [sym_expr_unary] = STATE(2580), + [sym__expr_unary_minus] = STATE(2540), + [sym_expr_binary] = STATE(2580), + [sym__expr_binary_expression] = STATE(2524), + [sym_expr_parenthesized] = STATE(2580), + [sym__val_range] = STATE(10216), + [sym__value] = STATE(2580), + [sym_val_nothing] = STATE(2556), + [sym_val_bool] = STATE(2480), + [sym_val_variable] = STATE(2556), + [sym__var] = STATE(2092), + [sym_val_number] = STATE(2556), + [sym__val_number_decimal] = STATE(1114), + [sym__val_number] = STATE(2558), + [sym_val_duration] = STATE(2556), + [sym_val_filesize] = STATE(2556), + [sym_val_binary] = STATE(2556), + [sym_val_string] = STATE(2556), + [sym__str_double_quotes] = STATE(2557), + [sym_val_interpolated] = STATE(2556), + [sym__inter_single_quotes] = STATE(2570), + [sym__inter_double_quotes] = STATE(2571), + [sym_val_list] = STATE(2556), + [sym_val_record] = STATE(2556), + [sym_val_table] = STATE(2556), + [sym_val_closure] = STATE(2556), + [sym_unquoted] = STATE(2611), + [sym__unquoted_anonymous_prefix] = STATE(10348), + [sym_comment] = STATE(1847), + [anon_sym_LBRACK] = ACTIONS(4294), + [anon_sym_LPAREN] = ACTIONS(5383), + [anon_sym_DOLLAR] = ACTIONS(5385), + [anon_sym_DASH] = ACTIONS(4300), + [anon_sym_LBRACE] = ACTIONS(4302), + [anon_sym_DOT_DOT] = ACTIONS(5387), + [anon_sym_not] = ACTIONS(4306), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5389), + [anon_sym_DOT_DOT_LT] = ACTIONS(5389), + [anon_sym_null] = ACTIONS(4310), + [anon_sym_true] = ACTIONS(4312), + [anon_sym_false] = ACTIONS(4312), + [aux_sym__val_number_decimal_token1] = ACTIONS(4314), + [aux_sym__val_number_decimal_token2] = ACTIONS(4316), + [anon_sym_DOT2] = ACTIONS(5391), + [aux_sym__val_number_decimal_token3] = ACTIONS(4320), + [aux_sym__val_number_token1] = ACTIONS(4322), + [aux_sym__val_number_token2] = ACTIONS(4322), + [aux_sym__val_number_token3] = ACTIONS(4322), + [aux_sym__val_number_token4] = ACTIONS(5393), + [aux_sym__val_number_token5] = ACTIONS(5393), + [aux_sym__val_number_token6] = ACTIONS(5393), + [anon_sym_0b] = ACTIONS(4326), + [anon_sym_0o] = ACTIONS(4328), + [anon_sym_0x] = ACTIONS(4328), + [sym_val_date] = ACTIONS(4330), + [anon_sym_DQUOTE] = ACTIONS(4332), + [sym__str_single_quotes] = ACTIONS(4334), + [sym__str_back_ticks] = ACTIONS(4334), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4336), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4338), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5395), + [anon_sym_POUND] = ACTIONS(3), }, - [1649] = { - [sym_comment] = STATE(1649), - [ts_builtin_sym_end] = ACTIONS(4008), - [anon_sym_export] = ACTIONS(4006), - [anon_sym_alias] = ACTIONS(4006), - [anon_sym_let] = ACTIONS(4006), - [anon_sym_let_DASHenv] = ACTIONS(4006), - [anon_sym_mut] = ACTIONS(4006), - [anon_sym_const] = ACTIONS(4006), - [anon_sym_SEMI] = ACTIONS(4006), - [sym_cmd_identifier] = ACTIONS(4006), - [anon_sym_LF] = ACTIONS(4008), - [anon_sym_def] = ACTIONS(4006), - [anon_sym_export_DASHenv] = ACTIONS(4006), - [anon_sym_extern] = ACTIONS(4006), - [anon_sym_module] = ACTIONS(4006), - [anon_sym_use] = ACTIONS(4006), - [anon_sym_LBRACK] = ACTIONS(4006), - [anon_sym_LPAREN] = ACTIONS(4006), - [anon_sym_DOLLAR] = ACTIONS(4006), - [anon_sym_error] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_DASH] = ACTIONS(4006), - [anon_sym_break] = ACTIONS(4006), - [anon_sym_continue] = ACTIONS(4006), - [anon_sym_for] = ACTIONS(4006), - [anon_sym_loop] = ACTIONS(4006), - [anon_sym_while] = ACTIONS(4006), - [anon_sym_do] = ACTIONS(4006), - [anon_sym_if] = ACTIONS(4006), - [anon_sym_match] = ACTIONS(4006), - [anon_sym_LBRACE] = ACTIONS(4006), - [anon_sym_DOT_DOT] = ACTIONS(4006), - [anon_sym_try] = ACTIONS(4006), - [anon_sym_return] = ACTIONS(4006), - [anon_sym_source] = ACTIONS(4006), - [anon_sym_source_DASHenv] = ACTIONS(4006), - [anon_sym_register] = ACTIONS(4006), - [anon_sym_hide] = ACTIONS(4006), - [anon_sym_hide_DASHenv] = ACTIONS(4006), - [anon_sym_overlay] = ACTIONS(4006), - [anon_sym_as] = ACTIONS(4006), - [anon_sym_where] = ACTIONS(4006), - [anon_sym_not] = ACTIONS(4006), - [anon_sym_DOT] = ACTIONS(4012), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4006), - [anon_sym_DOT_DOT_LT] = ACTIONS(4006), - [anon_sym_null] = ACTIONS(4006), - [anon_sym_true] = ACTIONS(4006), - [anon_sym_false] = ACTIONS(4006), - [aux_sym__val_number_decimal_token1] = ACTIONS(4006), - [aux_sym__val_number_decimal_token2] = ACTIONS(4006), - [anon_sym_DOT2] = ACTIONS(4006), - [aux_sym__val_number_decimal_token3] = ACTIONS(4006), - [aux_sym__val_number_token1] = ACTIONS(4006), - [aux_sym__val_number_token2] = ACTIONS(4006), - [aux_sym__val_number_token3] = ACTIONS(4006), - [aux_sym__val_number_token4] = ACTIONS(4006), - [aux_sym__val_number_token5] = ACTIONS(4006), - [aux_sym__val_number_token6] = ACTIONS(4006), - [anon_sym_0b] = ACTIONS(4006), - [anon_sym_0o] = ACTIONS(4006), - [anon_sym_0x] = ACTIONS(4006), - [sym_val_date] = ACTIONS(4006), - [anon_sym_DQUOTE] = ACTIONS(4006), - [sym__str_single_quotes] = ACTIONS(4006), - [sym__str_back_ticks] = ACTIONS(4006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4006), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4006), - [anon_sym_CARET] = ACTIONS(4006), - [aux_sym_unquoted_token2] = ACTIONS(4012), - [anon_sym_POUND] = ACTIONS(113), + [1848] = { + [sym_comment] = STATE(1848), + [anon_sym_LBRACK] = ACTIONS(1043), + [anon_sym_COMMA] = ACTIONS(1043), + [anon_sym_LPAREN] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1043), + [anon_sym_GT] = ACTIONS(1041), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_in] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(1043), + [anon_sym_RBRACE] = ACTIONS(1043), + [anon_sym__] = ACTIONS(1041), + [anon_sym_DOT_DOT] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_STAR_STAR] = ACTIONS(1043), + [anon_sym_PLUS_PLUS] = ACTIONS(1043), + [anon_sym_SLASH] = ACTIONS(1041), + [anon_sym_mod] = ACTIONS(1043), + [anon_sym_SLASH_SLASH] = ACTIONS(1043), + [anon_sym_PLUS] = ACTIONS(1041), + [anon_sym_bit_DASHshl] = ACTIONS(1043), + [anon_sym_bit_DASHshr] = ACTIONS(1043), + [anon_sym_EQ_EQ] = ACTIONS(1043), + [anon_sym_BANG_EQ] = ACTIONS(1043), + [anon_sym_LT2] = ACTIONS(1041), + [anon_sym_LT_EQ] = ACTIONS(1043), + [anon_sym_GT_EQ] = ACTIONS(1043), + [anon_sym_not_DASHin] = ACTIONS(1043), + [anon_sym_starts_DASHwith] = ACTIONS(1043), + [anon_sym_ends_DASHwith] = ACTIONS(1043), + [anon_sym_EQ_TILDE] = ACTIONS(1043), + [anon_sym_BANG_TILDE] = ACTIONS(1043), + [anon_sym_bit_DASHand] = ACTIONS(1043), + [anon_sym_bit_DASHxor] = ACTIONS(1043), + [anon_sym_bit_DASHor] = ACTIONS(1043), + [anon_sym_and] = ACTIONS(1043), + [anon_sym_xor] = ACTIONS(1043), + [anon_sym_or] = ACTIONS(1043), + [anon_sym_DOT] = ACTIONS(1041), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1043), + [anon_sym_DOT_DOT_LT] = ACTIONS(1043), + [anon_sym_null] = ACTIONS(1043), + [anon_sym_true] = ACTIONS(1043), + [anon_sym_false] = ACTIONS(1043), + [aux_sym__val_number_decimal_token1] = ACTIONS(1041), + [aux_sym__val_number_decimal_token2] = ACTIONS(1043), + [anon_sym_DOT2] = ACTIONS(1041), + [aux_sym__val_number_decimal_token3] = ACTIONS(1043), + [aux_sym__val_number_token1] = ACTIONS(1043), + [aux_sym__val_number_token2] = ACTIONS(1043), + [aux_sym__val_number_token3] = ACTIONS(1043), + [aux_sym__val_number_token4] = ACTIONS(1043), + [aux_sym__val_number_token5] = ACTIONS(1043), + [aux_sym__val_number_token6] = ACTIONS(1043), + [anon_sym_0b] = ACTIONS(1041), + [anon_sym_0o] = ACTIONS(1041), + [anon_sym_0x] = ACTIONS(1041), + [sym_val_date] = ACTIONS(1043), + [anon_sym_DQUOTE] = ACTIONS(1043), + [sym__str_single_quotes] = ACTIONS(1043), + [sym__str_back_ticks] = ACTIONS(1043), + [anon_sym_err_GT] = ACTIONS(1043), + [anon_sym_out_GT] = ACTIONS(1043), + [anon_sym_e_GT] = ACTIONS(1043), + [anon_sym_o_GT] = ACTIONS(1043), + [anon_sym_err_PLUSout_GT] = ACTIONS(1043), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1043), + [anon_sym_o_PLUSe_GT] = ACTIONS(1043), + [anon_sym_e_PLUSo_GT] = ACTIONS(1043), + [aux_sym_unquoted_token1] = ACTIONS(1041), + [anon_sym_POUND] = ACTIONS(3), }, - [1650] = { - [sym__immediate_decimal] = STATE(10460), - [sym_comment] = STATE(1650), - [ts_builtin_sym_end] = ACTIONS(938), - [anon_sym_SEMI] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_STAR_STAR] = ACTIONS(936), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(936), - [anon_sym_SLASH_SLASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(936), - [anon_sym_bit_DASHshr] = ACTIONS(936), - [anon_sym_EQ_EQ] = ACTIONS(936), - [anon_sym_BANG_EQ] = ACTIONS(936), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(936), - [anon_sym_GT_EQ] = ACTIONS(936), - [anon_sym_not_DASHin] = ACTIONS(936), - [anon_sym_starts_DASHwith] = ACTIONS(936), - [anon_sym_ends_DASHwith] = ACTIONS(936), - [anon_sym_EQ_TILDE] = ACTIONS(936), - [anon_sym_BANG_TILDE] = ACTIONS(936), - [anon_sym_bit_DASHand] = ACTIONS(936), - [anon_sym_bit_DASHxor] = ACTIONS(936), - [anon_sym_bit_DASHor] = ACTIONS(936), - [anon_sym_and] = ACTIONS(936), - [anon_sym_xor] = ACTIONS(936), - [anon_sym_or] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [aux_sym__immediate_decimal_token1] = ACTIONS(1045), - [aux_sym__immediate_decimal_token3] = ACTIONS(1045), - [aux_sym__immediate_decimal_token4] = ACTIONS(1047), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [aux_sym_unquoted_token4] = ACTIONS(4781), - [anon_sym_POUND] = ACTIONS(113), + [1849] = { + [sym__match_pattern_expression] = STATE(3963), + [sym__match_pattern_value] = STATE(4065), + [sym__match_pattern_list] = STATE(3899), + [sym__match_pattern_record] = STATE(4002), + [sym__expr_unary_minus] = STATE(4029), + [sym_expr_parenthesized] = STATE(3478), + [sym_val_range] = STATE(4065), + [sym__val_range] = STATE(10108), + [sym_val_nothing] = STATE(3928), + [sym_val_bool] = STATE(3848), + [sym_val_variable] = STATE(3481), + [sym__var] = STATE(3303), + [sym_val_number] = STATE(3928), + [sym__val_number_decimal] = STATE(3274), + [sym__val_number] = STATE(4008), + [sym_val_duration] = STATE(3928), + [sym_val_filesize] = STATE(3928), + [sym_val_binary] = STATE(3928), + [sym_val_string] = STATE(3928), + [sym__str_double_quotes] = STATE(3913), + [sym__list_item_starts_with_sign] = STATE(3915), + [sym_val_table] = STATE(3928), + [sym_short_flag] = STATE(3915), + [sym_long_flag] = STATE(3915), + [sym_long_flag_equals_value] = STATE(4030), + [sym__unquoted_in_list] = STATE(3915), + [sym__unquoted_anonymous_prefix] = STATE(10784), + [sym_comment] = STATE(1849), + [aux_sym__match_pattern_list_repeat1] = STATE(1849), + [anon_sym_LBRACK] = ACTIONS(5397), + [anon_sym_RBRACK] = ACTIONS(5400), + [anon_sym_LPAREN] = ACTIONS(5402), + [anon_sym_DOLLAR] = ACTIONS(5405), + [anon_sym_DASH_DASH] = ACTIONS(5408), + [anon_sym_DASH] = ACTIONS(5411), + [anon_sym_LBRACE] = ACTIONS(5414), + [anon_sym_DOT_DOT] = ACTIONS(5417), + [anon_sym_PLUS] = ACTIONS(5420), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5423), + [anon_sym_DOT_DOT_LT] = ACTIONS(5423), + [anon_sym_null] = ACTIONS(5426), + [anon_sym_true] = ACTIONS(5429), + [anon_sym_false] = ACTIONS(5429), + [aux_sym__val_number_decimal_token1] = ACTIONS(5432), + [aux_sym__val_number_decimal_token2] = ACTIONS(5435), + [anon_sym_DOT2] = ACTIONS(5438), + [aux_sym__val_number_decimal_token3] = ACTIONS(5441), + [aux_sym__val_number_token1] = ACTIONS(5444), + [aux_sym__val_number_token2] = ACTIONS(5444), + [aux_sym__val_number_token3] = ACTIONS(5444), + [aux_sym__val_number_token4] = ACTIONS(5447), + [aux_sym__val_number_token5] = ACTIONS(5447), + [aux_sym__val_number_token6] = ACTIONS(5447), + [anon_sym_0b] = ACTIONS(5450), + [anon_sym_0o] = ACTIONS(5453), + [anon_sym_0x] = ACTIONS(5453), + [sym_val_date] = ACTIONS(5456), + [anon_sym_DQUOTE] = ACTIONS(5459), + [sym__str_single_quotes] = ACTIONS(5462), + [sym__str_back_ticks] = ACTIONS(5462), + [anon_sym_err_GT] = ACTIONS(5465), + [anon_sym_out_GT] = ACTIONS(5465), + [anon_sym_e_GT] = ACTIONS(5465), + [anon_sym_o_GT] = ACTIONS(5465), + [anon_sym_err_PLUSout_GT] = ACTIONS(5465), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5465), + [anon_sym_o_PLUSe_GT] = ACTIONS(5465), + [anon_sym_e_PLUSo_GT] = ACTIONS(5465), + [aux_sym__unquoted_in_list_token1] = ACTIONS(5468), + [anon_sym_POUND] = ACTIONS(3), }, - [1651] = { - [sym_comment] = STATE(1651), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_error] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_RBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_where] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [aux_sym__immediate_decimal_token1] = ACTIONS(5039), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [aux_sym_unquoted_token2] = ACTIONS(5041), - [anon_sym_POUND] = ACTIONS(113), + [1850] = { + [sym_expr_unary] = STATE(3034), + [sym__expr_unary_minus] = STATE(2996), + [sym_expr_binary] = STATE(3034), + [sym__expr_binary_expression] = STATE(3041), + [sym_expr_parenthesized] = STATE(3034), + [sym__val_range] = STATE(10219), + [sym__value] = STATE(3034), + [sym_val_nothing] = STATE(3070), + [sym_val_bool] = STATE(2981), + [sym_val_variable] = STATE(3070), + [sym__var] = STATE(2747), + [sym_val_number] = STATE(3070), + [sym__val_number_decimal] = STATE(2470), + [sym__val_number] = STATE(3072), + [sym_val_duration] = STATE(3070), + [sym_val_filesize] = STATE(3070), + [sym_val_binary] = STATE(3070), + [sym_val_string] = STATE(3070), + [sym__str_double_quotes] = STATE(3071), + [sym_val_interpolated] = STATE(3070), + [sym__inter_single_quotes] = STATE(2991), + [sym__inter_double_quotes] = STATE(2995), + [sym_val_list] = STATE(3070), + [sym_val_record] = STATE(3070), + [sym_val_table] = STATE(3070), + [sym_val_closure] = STATE(3070), + [sym_unquoted] = STATE(3010), + [sym__unquoted_anonymous_prefix] = STATE(10376), + [sym_comment] = STATE(1850), + [anon_sym_LBRACK] = ACTIONS(4346), + [anon_sym_LPAREN] = ACTIONS(5471), + [anon_sym_DOLLAR] = ACTIONS(5473), + [anon_sym_DASH] = ACTIONS(4352), + [anon_sym_LBRACE] = ACTIONS(4354), + [anon_sym_DOT_DOT] = ACTIONS(5475), + [anon_sym_not] = ACTIONS(4358), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5477), + [anon_sym_DOT_DOT_LT] = ACTIONS(5477), + [anon_sym_null] = ACTIONS(4362), + [anon_sym_true] = ACTIONS(4364), + [anon_sym_false] = ACTIONS(4364), + [aux_sym__val_number_decimal_token1] = ACTIONS(4366), + [aux_sym__val_number_decimal_token2] = ACTIONS(4368), + [anon_sym_DOT2] = ACTIONS(5479), + [aux_sym__val_number_decimal_token3] = ACTIONS(4372), + [aux_sym__val_number_token1] = ACTIONS(4374), + [aux_sym__val_number_token2] = ACTIONS(4374), + [aux_sym__val_number_token3] = ACTIONS(4374), + [aux_sym__val_number_token4] = ACTIONS(5481), + [aux_sym__val_number_token5] = ACTIONS(5481), + [aux_sym__val_number_token6] = ACTIONS(5481), + [anon_sym_0b] = ACTIONS(4378), + [anon_sym_0o] = ACTIONS(4380), + [anon_sym_0x] = ACTIONS(4380), + [sym_val_date] = ACTIONS(4382), + [anon_sym_DQUOTE] = ACTIONS(4384), + [sym__str_single_quotes] = ACTIONS(4386), + [sym__str_back_ticks] = ACTIONS(4386), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4388), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4390), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5483), + [anon_sym_POUND] = ACTIONS(3), }, - [1652] = { - [sym_cell_path] = STATE(2643), - [sym_path] = STATE(1679), - [sym_comment] = STATE(1652), - [ts_builtin_sym_end] = ACTIONS(1012), - [anon_sym_SEMI] = ACTIONS(1010), - [anon_sym_LF] = ACTIONS(1012), - [anon_sym_LBRACK] = ACTIONS(1010), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_PIPE] = ACTIONS(1010), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1010), - [anon_sym_DASH_DASH] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_in] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_DOT_DOT] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1010), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_SLASH] = ACTIONS(1010), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT2] = ACTIONS(1010), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT_EQ] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_not] = ACTIONS(1010), - [anon_sym_DOT_DOT2] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(5025), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT] = ACTIONS(1010), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), - [anon_sym_null] = ACTIONS(1010), - [anon_sym_true] = ACTIONS(1010), - [anon_sym_false] = ACTIONS(1010), - [aux_sym__val_number_decimal_token1] = ACTIONS(1010), - [aux_sym__val_number_decimal_token2] = ACTIONS(1010), - [anon_sym_DOT2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = 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(1010), - [aux_sym__val_number_token5] = ACTIONS(1010), - [aux_sym__val_number_token6] = ACTIONS(1010), - [anon_sym_0b] = ACTIONS(1010), - [anon_sym_0o] = ACTIONS(1010), - [anon_sym_0x] = ACTIONS(1010), - [sym_val_date] = ACTIONS(1010), - [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_POUND] = ACTIONS(113), + [1851] = { + [sym_expr_unary] = STATE(3034), + [sym__expr_unary_minus] = STATE(2996), + [sym_expr_binary] = STATE(3034), + [sym__expr_binary_expression] = STATE(3042), + [sym_expr_parenthesized] = STATE(3034), + [sym__val_range] = STATE(10219), + [sym__value] = STATE(3034), + [sym_val_nothing] = STATE(3070), + [sym_val_bool] = STATE(2981), + [sym_val_variable] = STATE(3070), + [sym__var] = STATE(2747), + [sym_val_number] = STATE(3070), + [sym__val_number_decimal] = STATE(2470), + [sym__val_number] = STATE(3072), + [sym_val_duration] = STATE(3070), + [sym_val_filesize] = STATE(3070), + [sym_val_binary] = STATE(3070), + [sym_val_string] = STATE(3070), + [sym__str_double_quotes] = STATE(3071), + [sym_val_interpolated] = STATE(3070), + [sym__inter_single_quotes] = STATE(2991), + [sym__inter_double_quotes] = STATE(2995), + [sym_val_list] = STATE(3070), + [sym_val_record] = STATE(3070), + [sym_val_table] = STATE(3070), + [sym_val_closure] = STATE(3070), + [sym_unquoted] = STATE(3023), + [sym__unquoted_anonymous_prefix] = STATE(10376), + [sym_comment] = STATE(1851), + [anon_sym_LBRACK] = ACTIONS(4346), + [anon_sym_LPAREN] = ACTIONS(5471), + [anon_sym_DOLLAR] = ACTIONS(5473), + [anon_sym_DASH] = ACTIONS(4352), + [anon_sym_LBRACE] = ACTIONS(4354), + [anon_sym_DOT_DOT] = ACTIONS(5475), + [anon_sym_not] = ACTIONS(4358), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5477), + [anon_sym_DOT_DOT_LT] = ACTIONS(5477), + [anon_sym_null] = ACTIONS(4362), + [anon_sym_true] = ACTIONS(4364), + [anon_sym_false] = ACTIONS(4364), + [aux_sym__val_number_decimal_token1] = ACTIONS(4366), + [aux_sym__val_number_decimal_token2] = ACTIONS(4368), + [anon_sym_DOT2] = ACTIONS(5479), + [aux_sym__val_number_decimal_token3] = ACTIONS(4372), + [aux_sym__val_number_token1] = ACTIONS(4374), + [aux_sym__val_number_token2] = ACTIONS(4374), + [aux_sym__val_number_token3] = ACTIONS(4374), + [aux_sym__val_number_token4] = ACTIONS(5481), + [aux_sym__val_number_token5] = ACTIONS(5481), + [aux_sym__val_number_token6] = ACTIONS(5481), + [anon_sym_0b] = ACTIONS(4378), + [anon_sym_0o] = ACTIONS(4380), + [anon_sym_0x] = ACTIONS(4380), + [sym_val_date] = ACTIONS(4382), + [anon_sym_DQUOTE] = ACTIONS(4384), + [sym__str_single_quotes] = ACTIONS(4386), + [sym__str_back_ticks] = ACTIONS(4386), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4388), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4390), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5483), + [anon_sym_POUND] = ACTIONS(3), }, - [1653] = { - [sym_comment] = STATE(1653), - [anon_sym_export] = ACTIONS(1168), - [anon_sym_alias] = ACTIONS(1168), - [anon_sym_let] = ACTIONS(1168), - [anon_sym_let_DASHenv] = ACTIONS(1168), - [anon_sym_mut] = ACTIONS(1168), - [anon_sym_const] = ACTIONS(1168), - [anon_sym_SEMI] = ACTIONS(1168), - [sym_cmd_identifier] = ACTIONS(1168), - [anon_sym_LF] = ACTIONS(1170), - [anon_sym_def] = ACTIONS(1168), - [anon_sym_export_DASHenv] = ACTIONS(1168), - [anon_sym_extern] = ACTIONS(1168), - [anon_sym_module] = ACTIONS(1168), - [anon_sym_use] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_RPAREN] = ACTIONS(1168), - [anon_sym_DOLLAR] = ACTIONS(1168), - [anon_sym_error] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1168), - [anon_sym_break] = ACTIONS(1168), - [anon_sym_continue] = ACTIONS(1168), - [anon_sym_for] = ACTIONS(1168), - [anon_sym_loop] = ACTIONS(1168), - [anon_sym_while] = ACTIONS(1168), - [anon_sym_do] = ACTIONS(1168), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_match] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1168), - [anon_sym_RBRACE] = ACTIONS(1168), - [anon_sym_DOT_DOT] = ACTIONS(1168), - [anon_sym_try] = ACTIONS(1168), - [anon_sym_return] = ACTIONS(1168), - [anon_sym_source] = ACTIONS(1168), - [anon_sym_source_DASHenv] = ACTIONS(1168), - [anon_sym_register] = ACTIONS(1168), - [anon_sym_hide] = ACTIONS(1168), - [anon_sym_hide_DASHenv] = ACTIONS(1168), - [anon_sym_overlay] = ACTIONS(1168), - [anon_sym_where] = ACTIONS(1168), - [anon_sym_not] = ACTIONS(1168), - [anon_sym_DOT_DOT2] = ACTIONS(1168), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1168), - [anon_sym_DOT_DOT_LT] = ACTIONS(1168), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1170), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1170), - [anon_sym_null] = ACTIONS(1168), - [anon_sym_true] = ACTIONS(1168), - [anon_sym_false] = ACTIONS(1168), - [aux_sym__val_number_decimal_token1] = ACTIONS(1168), - [aux_sym__val_number_decimal_token2] = ACTIONS(1168), - [anon_sym_DOT2] = ACTIONS(1168), - [aux_sym__val_number_decimal_token3] = ACTIONS(1168), - [aux_sym__val_number_token1] = ACTIONS(1168), - [aux_sym__val_number_token2] = ACTIONS(1168), - [aux_sym__val_number_token3] = ACTIONS(1168), - [aux_sym__val_number_token4] = ACTIONS(1168), - [aux_sym__val_number_token5] = ACTIONS(1168), - [aux_sym__val_number_token6] = ACTIONS(1168), - [anon_sym_0b] = ACTIONS(1168), - [anon_sym_0o] = ACTIONS(1168), - [anon_sym_0x] = ACTIONS(1168), - [sym_val_date] = ACTIONS(1168), - [anon_sym_DQUOTE] = ACTIONS(1168), - [sym__str_single_quotes] = ACTIONS(1168), - [sym__str_back_ticks] = ACTIONS(1168), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1168), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1168), - [anon_sym_CARET] = ACTIONS(1168), - [anon_sym_POUND] = ACTIONS(113), + [1852] = { + [sym_expr_unary] = STATE(3034), + [sym__expr_unary_minus] = STATE(2996), + [sym_expr_binary] = STATE(3034), + [sym__expr_binary_expression] = STATE(3045), + [sym_expr_parenthesized] = STATE(3034), + [sym__val_range] = STATE(10219), + [sym__value] = STATE(3034), + [sym_val_nothing] = STATE(3070), + [sym_val_bool] = STATE(2981), + [sym_val_variable] = STATE(3070), + [sym__var] = STATE(2747), + [sym_val_number] = STATE(3070), + [sym__val_number_decimal] = STATE(2470), + [sym__val_number] = STATE(3072), + [sym_val_duration] = STATE(3070), + [sym_val_filesize] = STATE(3070), + [sym_val_binary] = STATE(3070), + [sym_val_string] = STATE(3070), + [sym__str_double_quotes] = STATE(3071), + [sym_val_interpolated] = STATE(3070), + [sym__inter_single_quotes] = STATE(2991), + [sym__inter_double_quotes] = STATE(2995), + [sym_val_list] = STATE(3070), + [sym_val_record] = STATE(3070), + [sym_val_table] = STATE(3070), + [sym_val_closure] = STATE(3070), + [sym_unquoted] = STATE(3026), + [sym__unquoted_anonymous_prefix] = STATE(10376), + [sym_comment] = STATE(1852), + [anon_sym_LBRACK] = ACTIONS(4346), + [anon_sym_LPAREN] = ACTIONS(5471), + [anon_sym_DOLLAR] = ACTIONS(5473), + [anon_sym_DASH] = ACTIONS(4352), + [anon_sym_LBRACE] = ACTIONS(4354), + [anon_sym_DOT_DOT] = ACTIONS(5475), + [anon_sym_not] = ACTIONS(4358), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5477), + [anon_sym_DOT_DOT_LT] = ACTIONS(5477), + [anon_sym_null] = ACTIONS(4362), + [anon_sym_true] = ACTIONS(4364), + [anon_sym_false] = ACTIONS(4364), + [aux_sym__val_number_decimal_token1] = ACTIONS(4366), + [aux_sym__val_number_decimal_token2] = ACTIONS(4368), + [anon_sym_DOT2] = ACTIONS(5479), + [aux_sym__val_number_decimal_token3] = ACTIONS(4372), + [aux_sym__val_number_token1] = ACTIONS(4374), + [aux_sym__val_number_token2] = ACTIONS(4374), + [aux_sym__val_number_token3] = ACTIONS(4374), + [aux_sym__val_number_token4] = ACTIONS(5481), + [aux_sym__val_number_token5] = ACTIONS(5481), + [aux_sym__val_number_token6] = ACTIONS(5481), + [anon_sym_0b] = ACTIONS(4378), + [anon_sym_0o] = ACTIONS(4380), + [anon_sym_0x] = ACTIONS(4380), + [sym_val_date] = ACTIONS(4382), + [anon_sym_DQUOTE] = ACTIONS(4384), + [sym__str_single_quotes] = ACTIONS(4386), + [sym__str_back_ticks] = ACTIONS(4386), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4388), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4390), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5483), + [anon_sym_POUND] = ACTIONS(3), }, - [1654] = { - [sym__match_pattern_expression] = STATE(4408), - [sym__match_pattern_value] = STATE(4362), - [sym__match_pattern_list] = STATE(4365), - [sym__match_pattern_rest] = STATE(10930), - [sym__match_pattern_record] = STATE(4367), - [sym__expr_unary_minus] = STATE(4368), - [sym_expr_parenthesized] = STATE(3973), - [sym_val_range] = STATE(4362), - [sym__val_range] = STATE(10474), - [sym_val_nothing] = STATE(4371), - [sym_val_bool] = STATE(4248), - [sym_val_variable] = STATE(3974), - [sym__var] = STATE(3741), - [sym_val_number] = STATE(4371), - [sym__val_number_decimal] = STATE(3705), - [sym__val_number] = STATE(4345), - [sym_val_duration] = STATE(4371), - [sym_val_filesize] = STATE(4371), - [sym_val_binary] = STATE(4371), - [sym_val_string] = STATE(4371), - [sym__str_double_quotes] = STATE(4434), - [sym__list_item_starts_with_sign] = STATE(4508), - [sym_val_table] = STATE(4371), - [sym_short_flag] = STATE(4508), - [sym_long_flag] = STATE(4508), - [sym_long_flag_equals_value] = STATE(4347), - [sym__unquoted_in_list] = STATE(4508), - [sym__unquoted_anonymous_prefix] = STATE(11104), - [sym_comment] = STATE(1654), - [aux_sym__match_pattern_list_repeat1] = STATE(1867), - [anon_sym_LBRACK] = ACTIONS(4989), - [anon_sym_RBRACK] = ACTIONS(5043), - [anon_sym_LPAREN] = ACTIONS(3399), - [anon_sym_DOLLAR] = ACTIONS(4745), - [anon_sym_DASH_DASH] = ACTIONS(3403), - [anon_sym_DASH] = ACTIONS(4747), - [anon_sym_LBRACE] = ACTIONS(4749), - [anon_sym_DOT_DOT] = ACTIONS(5045), - [anon_sym_PLUS] = ACTIONS(4753), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4755), - [anon_sym_DOT_DOT_LT] = ACTIONS(4755), - [anon_sym_null] = ACTIONS(4757), - [anon_sym_true] = ACTIONS(4759), - [anon_sym_false] = ACTIONS(4759), - [aux_sym__val_number_decimal_token1] = ACTIONS(4761), - [aux_sym__val_number_decimal_token2] = ACTIONS(4763), - [anon_sym_DOT2] = ACTIONS(4765), - [aux_sym__val_number_decimal_token3] = ACTIONS(4767), - [aux_sym__val_number_token1] = ACTIONS(3425), - [aux_sym__val_number_token2] = ACTIONS(3425), - [aux_sym__val_number_token3] = ACTIONS(3425), - [aux_sym__val_number_token4] = ACTIONS(4769), - [aux_sym__val_number_token5] = ACTIONS(4769), - [aux_sym__val_number_token6] = ACTIONS(4769), - [anon_sym_0b] = ACTIONS(3429), - [anon_sym_0o] = ACTIONS(3431), - [anon_sym_0x] = ACTIONS(3431), - [sym_val_date] = ACTIONS(4771), - [anon_sym_DQUOTE] = ACTIONS(3435), - [sym__str_single_quotes] = ACTIONS(3437), - [sym__str_back_ticks] = ACTIONS(3437), - [anon_sym_err_GT] = ACTIONS(1699), - [anon_sym_out_GT] = ACTIONS(1699), - [anon_sym_e_GT] = ACTIONS(1699), - [anon_sym_o_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT] = ACTIONS(1699), - [aux_sym__unquoted_in_list_token1] = ACTIONS(4773), + [1853] = { + [sym_expr_unary] = STATE(3034), + [sym__expr_unary_minus] = STATE(2996), + [sym_expr_binary] = STATE(3034), + [sym__expr_binary_expression] = STATE(3046), + [sym_expr_parenthesized] = STATE(3034), + [sym__val_range] = STATE(10219), + [sym__value] = STATE(3034), + [sym_val_nothing] = STATE(3070), + [sym_val_bool] = STATE(2981), + [sym_val_variable] = STATE(3070), + [sym__var] = STATE(2747), + [sym_val_number] = STATE(3070), + [sym__val_number_decimal] = STATE(2470), + [sym__val_number] = STATE(3072), + [sym_val_duration] = STATE(3070), + [sym_val_filesize] = STATE(3070), + [sym_val_binary] = STATE(3070), + [sym_val_string] = STATE(3070), + [sym__str_double_quotes] = STATE(3071), + [sym_val_interpolated] = STATE(3070), + [sym__inter_single_quotes] = STATE(2991), + [sym__inter_double_quotes] = STATE(2995), + [sym_val_list] = STATE(3070), + [sym_val_record] = STATE(3070), + [sym_val_table] = STATE(3070), + [sym_val_closure] = STATE(3070), + [sym_unquoted] = STATE(3028), + [sym__unquoted_anonymous_prefix] = STATE(10376), + [sym_comment] = STATE(1853), + [anon_sym_LBRACK] = ACTIONS(4346), + [anon_sym_LPAREN] = ACTIONS(5471), + [anon_sym_DOLLAR] = ACTIONS(5473), + [anon_sym_DASH] = ACTIONS(4352), + [anon_sym_LBRACE] = ACTIONS(4354), + [anon_sym_DOT_DOT] = ACTIONS(5475), + [anon_sym_not] = ACTIONS(4358), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5477), + [anon_sym_DOT_DOT_LT] = ACTIONS(5477), + [anon_sym_null] = ACTIONS(4362), + [anon_sym_true] = ACTIONS(4364), + [anon_sym_false] = ACTIONS(4364), + [aux_sym__val_number_decimal_token1] = ACTIONS(4366), + [aux_sym__val_number_decimal_token2] = ACTIONS(4368), + [anon_sym_DOT2] = ACTIONS(5479), + [aux_sym__val_number_decimal_token3] = ACTIONS(4372), + [aux_sym__val_number_token1] = ACTIONS(4374), + [aux_sym__val_number_token2] = ACTIONS(4374), + [aux_sym__val_number_token3] = ACTIONS(4374), + [aux_sym__val_number_token4] = ACTIONS(5481), + [aux_sym__val_number_token5] = ACTIONS(5481), + [aux_sym__val_number_token6] = ACTIONS(5481), + [anon_sym_0b] = ACTIONS(4378), + [anon_sym_0o] = ACTIONS(4380), + [anon_sym_0x] = ACTIONS(4380), + [sym_val_date] = ACTIONS(4382), + [anon_sym_DQUOTE] = ACTIONS(4384), + [sym__str_single_quotes] = ACTIONS(4386), + [sym__str_back_ticks] = ACTIONS(4386), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4388), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4390), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5483), [anon_sym_POUND] = ACTIONS(3), }, - [1655] = { - [sym_comment] = STATE(1655), - [ts_builtin_sym_end] = ACTIONS(1290), - [anon_sym_export] = ACTIONS(1243), - [anon_sym_alias] = ACTIONS(1243), - [anon_sym_let] = ACTIONS(1243), - [anon_sym_let_DASHenv] = ACTIONS(1243), - [anon_sym_mut] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1243), - [sym_cmd_identifier] = ACTIONS(1243), - [anon_sym_LF] = ACTIONS(1243), - [anon_sym_def] = ACTIONS(1243), - [anon_sym_export_DASHenv] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1243), - [anon_sym_module] = ACTIONS(1243), - [anon_sym_use] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_error] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_loop] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_match] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_try] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_source] = ACTIONS(1243), - [anon_sym_source_DASHenv] = ACTIONS(1243), - [anon_sym_register] = ACTIONS(1243), - [anon_sym_hide] = ACTIONS(1243), - [anon_sym_hide_DASHenv] = ACTIONS(1243), - [anon_sym_overlay] = ACTIONS(1243), - [anon_sym_as] = ACTIONS(1243), - [anon_sym_where] = ACTIONS(1243), - [anon_sym_not] = ACTIONS(1243), - [anon_sym_LPAREN2] = ACTIONS(1290), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1243), - [anon_sym_DOT_DOT_LT] = ACTIONS(1243), - [anon_sym_null] = ACTIONS(1243), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_decimal_token2] = ACTIONS(1243), - [anon_sym_DOT2] = ACTIONS(1243), - [aux_sym__val_number_decimal_token3] = ACTIONS(1243), - [aux_sym__val_number_token1] = ACTIONS(1243), - [aux_sym__val_number_token2] = ACTIONS(1243), - [aux_sym__val_number_token3] = ACTIONS(1243), - [aux_sym__val_number_token4] = ACTIONS(1243), - [aux_sym__val_number_token5] = ACTIONS(1243), - [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_0b] = ACTIONS(1243), - [anon_sym_0o] = ACTIONS(1243), - [anon_sym_0x] = ACTIONS(1243), - [sym_val_date] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym__str_single_quotes] = ACTIONS(1243), - [sym__str_back_ticks] = ACTIONS(1243), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1243), - [aux_sym__list_item_starts_with_sign_token1] = ACTIONS(5047), - [anon_sym_CARET] = ACTIONS(1243), - [anon_sym_POUND] = ACTIONS(113), + [1854] = { + [sym_expr_unary] = STATE(3034), + [sym__expr_unary_minus] = STATE(2996), + [sym_expr_binary] = STATE(3034), + [sym__expr_binary_expression] = STATE(3054), + [sym_expr_parenthesized] = STATE(3034), + [sym__val_range] = STATE(10219), + [sym__value] = STATE(3034), + [sym_val_nothing] = STATE(3070), + [sym_val_bool] = STATE(2981), + [sym_val_variable] = STATE(3070), + [sym__var] = STATE(2747), + [sym_val_number] = STATE(3070), + [sym__val_number_decimal] = STATE(2470), + [sym__val_number] = STATE(3072), + [sym_val_duration] = STATE(3070), + [sym_val_filesize] = STATE(3070), + [sym_val_binary] = STATE(3070), + [sym_val_string] = STATE(3070), + [sym__str_double_quotes] = STATE(3071), + [sym_val_interpolated] = STATE(3070), + [sym__inter_single_quotes] = STATE(2991), + [sym__inter_double_quotes] = STATE(2995), + [sym_val_list] = STATE(3070), + [sym_val_record] = STATE(3070), + [sym_val_table] = STATE(3070), + [sym_val_closure] = STATE(3070), + [sym_unquoted] = STATE(3031), + [sym__unquoted_anonymous_prefix] = STATE(10376), + [sym_comment] = STATE(1854), + [anon_sym_LBRACK] = ACTIONS(4346), + [anon_sym_LPAREN] = ACTIONS(5471), + [anon_sym_DOLLAR] = ACTIONS(5473), + [anon_sym_DASH] = ACTIONS(4352), + [anon_sym_LBRACE] = ACTIONS(4354), + [anon_sym_DOT_DOT] = ACTIONS(5475), + [anon_sym_not] = ACTIONS(4358), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5477), + [anon_sym_DOT_DOT_LT] = ACTIONS(5477), + [anon_sym_null] = ACTIONS(4362), + [anon_sym_true] = ACTIONS(4364), + [anon_sym_false] = ACTIONS(4364), + [aux_sym__val_number_decimal_token1] = ACTIONS(4366), + [aux_sym__val_number_decimal_token2] = ACTIONS(4368), + [anon_sym_DOT2] = ACTIONS(5479), + [aux_sym__val_number_decimal_token3] = ACTIONS(4372), + [aux_sym__val_number_token1] = ACTIONS(4374), + [aux_sym__val_number_token2] = ACTIONS(4374), + [aux_sym__val_number_token3] = ACTIONS(4374), + [aux_sym__val_number_token4] = ACTIONS(5481), + [aux_sym__val_number_token5] = ACTIONS(5481), + [aux_sym__val_number_token6] = ACTIONS(5481), + [anon_sym_0b] = ACTIONS(4378), + [anon_sym_0o] = ACTIONS(4380), + [anon_sym_0x] = ACTIONS(4380), + [sym_val_date] = ACTIONS(4382), + [anon_sym_DQUOTE] = ACTIONS(4384), + [sym__str_single_quotes] = ACTIONS(4386), + [sym__str_back_ticks] = ACTIONS(4386), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4388), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4390), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5483), + [anon_sym_POUND] = ACTIONS(3), }, - [1656] = { - [sym_comment] = STATE(1656), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_COMMA] = ACTIONS(1065), - [anon_sym_LPAREN] = ACTIONS(1065), - [anon_sym_DOLLAR] = ACTIONS(1065), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(1065), - [anon_sym_RBRACE] = ACTIONS(1065), - [anon_sym__] = ACTIONS(1063), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_QMARK2] = ACTIONS(1065), - [anon_sym_STAR_STAR] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_SLASH] = ACTIONS(1063), - [anon_sym_mod] = ACTIONS(1065), - [anon_sym_SLASH_SLASH] = ACTIONS(1065), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_bit_DASHshl] = ACTIONS(1065), - [anon_sym_bit_DASHshr] = ACTIONS(1065), - [anon_sym_EQ_EQ] = ACTIONS(1065), - [anon_sym_BANG_EQ] = ACTIONS(1065), - [anon_sym_LT2] = ACTIONS(1063), - [anon_sym_LT_EQ] = ACTIONS(1065), - [anon_sym_GT_EQ] = ACTIONS(1065), - [anon_sym_not_DASHin] = ACTIONS(1065), - [anon_sym_starts_DASHwith] = ACTIONS(1065), - [anon_sym_ends_DASHwith] = ACTIONS(1065), - [anon_sym_EQ_TILDE] = ACTIONS(1065), - [anon_sym_BANG_TILDE] = ACTIONS(1065), - [anon_sym_bit_DASHand] = ACTIONS(1065), - [anon_sym_bit_DASHxor] = ACTIONS(1065), - [anon_sym_bit_DASHor] = ACTIONS(1065), - [anon_sym_and] = ACTIONS(1065), - [anon_sym_xor] = ACTIONS(1065), - [anon_sym_or] = ACTIONS(1065), - [anon_sym_DOT] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1065), - [anon_sym_DOT_DOT_LT] = ACTIONS(1065), - [anon_sym_null] = ACTIONS(1065), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [aux_sym__val_number_decimal_token1] = ACTIONS(1063), - [aux_sym__val_number_decimal_token2] = ACTIONS(1065), - [anon_sym_DOT2] = ACTIONS(1063), - [aux_sym__val_number_decimal_token3] = ACTIONS(1065), - [aux_sym__val_number_token1] = ACTIONS(1065), - [aux_sym__val_number_token2] = ACTIONS(1065), - [aux_sym__val_number_token3] = ACTIONS(1065), - [aux_sym__val_number_token4] = ACTIONS(1065), - [aux_sym__val_number_token5] = ACTIONS(1065), - [aux_sym__val_number_token6] = ACTIONS(1065), - [anon_sym_0b] = ACTIONS(1063), - [anon_sym_0o] = ACTIONS(1063), - [anon_sym_0x] = ACTIONS(1063), - [sym_val_date] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(1065), - [sym__str_single_quotes] = ACTIONS(1065), - [sym__str_back_ticks] = ACTIONS(1065), - [anon_sym_err_GT] = ACTIONS(1065), - [anon_sym_out_GT] = ACTIONS(1065), - [anon_sym_e_GT] = ACTIONS(1065), - [anon_sym_o_GT] = ACTIONS(1065), - [anon_sym_err_PLUSout_GT] = ACTIONS(1065), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1065), - [anon_sym_o_PLUSe_GT] = ACTIONS(1065), - [anon_sym_e_PLUSo_GT] = ACTIONS(1065), - [aux_sym_unquoted_token1] = ACTIONS(1063), + [1855] = { + [sym_expr_unary] = STATE(3034), + [sym__expr_unary_minus] = STATE(2996), + [sym_expr_binary] = STATE(3034), + [sym__expr_binary_expression] = STATE(3056), + [sym_expr_parenthesized] = STATE(3034), + [sym__val_range] = STATE(10219), + [sym__value] = STATE(3034), + [sym_val_nothing] = STATE(3070), + [sym_val_bool] = STATE(2981), + [sym_val_variable] = STATE(3070), + [sym__var] = STATE(2747), + [sym_val_number] = STATE(3070), + [sym__val_number_decimal] = STATE(2470), + [sym__val_number] = STATE(3072), + [sym_val_duration] = STATE(3070), + [sym_val_filesize] = STATE(3070), + [sym_val_binary] = STATE(3070), + [sym_val_string] = STATE(3070), + [sym__str_double_quotes] = STATE(3071), + [sym_val_interpolated] = STATE(3070), + [sym__inter_single_quotes] = STATE(2991), + [sym__inter_double_quotes] = STATE(2995), + [sym_val_list] = STATE(3070), + [sym_val_record] = STATE(3070), + [sym_val_table] = STATE(3070), + [sym_val_closure] = STATE(3070), + [sym_unquoted] = STATE(3077), + [sym__unquoted_anonymous_prefix] = STATE(10376), + [sym_comment] = STATE(1855), + [anon_sym_LBRACK] = ACTIONS(4346), + [anon_sym_LPAREN] = ACTIONS(5471), + [anon_sym_DOLLAR] = ACTIONS(5473), + [anon_sym_DASH] = ACTIONS(4352), + [anon_sym_LBRACE] = ACTIONS(4354), + [anon_sym_DOT_DOT] = ACTIONS(5475), + [anon_sym_not] = ACTIONS(4358), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5477), + [anon_sym_DOT_DOT_LT] = ACTIONS(5477), + [anon_sym_null] = ACTIONS(4362), + [anon_sym_true] = ACTIONS(4364), + [anon_sym_false] = ACTIONS(4364), + [aux_sym__val_number_decimal_token1] = ACTIONS(4366), + [aux_sym__val_number_decimal_token2] = ACTIONS(4368), + [anon_sym_DOT2] = ACTIONS(5479), + [aux_sym__val_number_decimal_token3] = ACTIONS(4372), + [aux_sym__val_number_token1] = ACTIONS(4374), + [aux_sym__val_number_token2] = ACTIONS(4374), + [aux_sym__val_number_token3] = ACTIONS(4374), + [aux_sym__val_number_token4] = ACTIONS(5481), + [aux_sym__val_number_token5] = ACTIONS(5481), + [aux_sym__val_number_token6] = ACTIONS(5481), + [anon_sym_0b] = ACTIONS(4378), + [anon_sym_0o] = ACTIONS(4380), + [anon_sym_0x] = ACTIONS(4380), + [sym_val_date] = ACTIONS(4382), + [anon_sym_DQUOTE] = ACTIONS(4384), + [sym__str_single_quotes] = ACTIONS(4386), + [sym__str_back_ticks] = ACTIONS(4386), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4388), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4390), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5483), [anon_sym_POUND] = ACTIONS(3), }, - [1657] = { - [sym__expr_parenthesized_immediate] = STATE(11424), - [sym_comment] = STATE(1657), - [ts_builtin_sym_end] = ACTIONS(4325), - [anon_sym_export] = ACTIONS(4323), - [anon_sym_alias] = ACTIONS(4323), - [anon_sym_let] = ACTIONS(4323), - [anon_sym_let_DASHenv] = ACTIONS(4323), - [anon_sym_mut] = ACTIONS(4323), - [anon_sym_const] = ACTIONS(4323), - [anon_sym_SEMI] = ACTIONS(4323), - [sym_cmd_identifier] = ACTIONS(4323), - [anon_sym_LF] = ACTIONS(4325), - [anon_sym_def] = ACTIONS(4323), - [anon_sym_export_DASHenv] = ACTIONS(4323), - [anon_sym_extern] = ACTIONS(4323), - [anon_sym_module] = ACTIONS(4323), - [anon_sym_use] = ACTIONS(4323), - [anon_sym_LBRACK] = ACTIONS(4323), - [anon_sym_LPAREN] = ACTIONS(4323), - [anon_sym_DOLLAR] = ACTIONS(4323), - [anon_sym_error] = ACTIONS(4323), - [anon_sym_DASH_DASH] = ACTIONS(4323), - [anon_sym_DASH] = ACTIONS(4323), - [anon_sym_break] = ACTIONS(4323), - [anon_sym_continue] = ACTIONS(4323), - [anon_sym_for] = ACTIONS(4323), - [anon_sym_loop] = ACTIONS(4323), - [anon_sym_while] = ACTIONS(4323), - [anon_sym_do] = ACTIONS(4323), - [anon_sym_if] = ACTIONS(4323), - [anon_sym_match] = ACTIONS(4323), - [anon_sym_LBRACE] = ACTIONS(4323), - [anon_sym_DOT_DOT] = ACTIONS(4323), - [anon_sym_try] = ACTIONS(4323), - [anon_sym_return] = ACTIONS(4323), - [anon_sym_source] = ACTIONS(4323), - [anon_sym_source_DASHenv] = ACTIONS(4323), - [anon_sym_register] = ACTIONS(4323), - [anon_sym_hide] = ACTIONS(4323), - [anon_sym_hide_DASHenv] = ACTIONS(4323), - [anon_sym_overlay] = ACTIONS(4323), - [anon_sym_as] = ACTIONS(4323), - [anon_sym_where] = ACTIONS(4323), - [anon_sym_not] = ACTIONS(4323), - [anon_sym_LPAREN2] = ACTIONS(2397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4323), - [anon_sym_DOT_DOT_LT] = ACTIONS(4323), - [anon_sym_null] = ACTIONS(4323), - [anon_sym_true] = ACTIONS(4323), - [anon_sym_false] = ACTIONS(4323), - [aux_sym__val_number_decimal_token1] = ACTIONS(4323), - [aux_sym__val_number_decimal_token2] = ACTIONS(4323), - [anon_sym_DOT2] = ACTIONS(4323), - [aux_sym__val_number_decimal_token3] = ACTIONS(4323), - [aux_sym__val_number_token1] = ACTIONS(4323), - [aux_sym__val_number_token2] = ACTIONS(4323), - [aux_sym__val_number_token3] = ACTIONS(4323), - [aux_sym__val_number_token4] = ACTIONS(4323), - [aux_sym__val_number_token5] = ACTIONS(4323), - [aux_sym__val_number_token6] = ACTIONS(4323), - [anon_sym_0b] = ACTIONS(4323), - [anon_sym_0o] = ACTIONS(4323), - [anon_sym_0x] = ACTIONS(4323), - [sym_val_date] = ACTIONS(4323), - [anon_sym_DQUOTE] = ACTIONS(4323), - [sym__str_single_quotes] = ACTIONS(4323), - [sym__str_back_ticks] = ACTIONS(4323), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4323), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4323), - [anon_sym_CARET] = ACTIONS(4323), - [anon_sym_POUND] = ACTIONS(113), + [1856] = { + [sym_expr_unary] = STATE(3034), + [sym__expr_unary_minus] = STATE(2996), + [sym_expr_binary] = STATE(3034), + [sym__expr_binary_expression] = STATE(3057), + [sym_expr_parenthesized] = STATE(3034), + [sym__val_range] = STATE(10219), + [sym__value] = STATE(3034), + [sym_val_nothing] = STATE(3070), + [sym_val_bool] = STATE(2981), + [sym_val_variable] = STATE(3070), + [sym__var] = STATE(2747), + [sym_val_number] = STATE(3070), + [sym__val_number_decimal] = STATE(2470), + [sym__val_number] = STATE(3072), + [sym_val_duration] = STATE(3070), + [sym_val_filesize] = STATE(3070), + [sym_val_binary] = STATE(3070), + [sym_val_string] = STATE(3070), + [sym__str_double_quotes] = STATE(3071), + [sym_val_interpolated] = STATE(3070), + [sym__inter_single_quotes] = STATE(2991), + [sym__inter_double_quotes] = STATE(2995), + [sym_val_list] = STATE(3070), + [sym_val_record] = STATE(3070), + [sym_val_table] = STATE(3070), + [sym_val_closure] = STATE(3070), + [sym_unquoted] = STATE(3047), + [sym__unquoted_anonymous_prefix] = STATE(10376), + [sym_comment] = STATE(1856), + [anon_sym_LBRACK] = ACTIONS(4346), + [anon_sym_LPAREN] = ACTIONS(5471), + [anon_sym_DOLLAR] = ACTIONS(5473), + [anon_sym_DASH] = ACTIONS(4352), + [anon_sym_LBRACE] = ACTIONS(4354), + [anon_sym_DOT_DOT] = ACTIONS(5475), + [anon_sym_not] = ACTIONS(4358), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5477), + [anon_sym_DOT_DOT_LT] = ACTIONS(5477), + [anon_sym_null] = ACTIONS(4362), + [anon_sym_true] = ACTIONS(4364), + [anon_sym_false] = ACTIONS(4364), + [aux_sym__val_number_decimal_token1] = ACTIONS(4366), + [aux_sym__val_number_decimal_token2] = ACTIONS(4368), + [anon_sym_DOT2] = ACTIONS(5479), + [aux_sym__val_number_decimal_token3] = ACTIONS(4372), + [aux_sym__val_number_token1] = ACTIONS(4374), + [aux_sym__val_number_token2] = ACTIONS(4374), + [aux_sym__val_number_token3] = ACTIONS(4374), + [aux_sym__val_number_token4] = ACTIONS(5481), + [aux_sym__val_number_token5] = ACTIONS(5481), + [aux_sym__val_number_token6] = ACTIONS(5481), + [anon_sym_0b] = ACTIONS(4378), + [anon_sym_0o] = ACTIONS(4380), + [anon_sym_0x] = ACTIONS(4380), + [sym_val_date] = ACTIONS(4382), + [anon_sym_DQUOTE] = ACTIONS(4384), + [sym__str_single_quotes] = ACTIONS(4386), + [sym__str_back_ticks] = ACTIONS(4386), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4388), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4390), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5483), + [anon_sym_POUND] = ACTIONS(3), }, - [1658] = { - [sym_comment] = STATE(1658), - [anon_sym_LBRACK] = ACTIONS(1243), - [anon_sym_COMMA] = ACTIONS(1243), - [anon_sym_RBRACK] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_in] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1243), - [anon_sym_STAR_STAR] = ACTIONS(1243), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_SLASH] = ACTIONS(1243), - [anon_sym_mod] = ACTIONS(1243), - [anon_sym_SLASH_SLASH] = ACTIONS(1243), - [anon_sym_PLUS] = ACTIONS(1243), - [anon_sym_bit_DASHshl] = ACTIONS(1243), - [anon_sym_bit_DASHshr] = ACTIONS(1243), - [anon_sym_EQ_EQ] = ACTIONS(1243), - [anon_sym_BANG_EQ] = ACTIONS(1243), - [anon_sym_LT2] = ACTIONS(1243), - [anon_sym_LT_EQ] = ACTIONS(1243), - [anon_sym_GT_EQ] = ACTIONS(1243), - [anon_sym_not_DASHin] = ACTIONS(1243), - [anon_sym_starts_DASHwith] = ACTIONS(1243), - [anon_sym_ends_DASHwith] = ACTIONS(1243), - [anon_sym_EQ_TILDE] = ACTIONS(1243), - [anon_sym_BANG_TILDE] = ACTIONS(1243), - [anon_sym_bit_DASHand] = ACTIONS(1243), - [anon_sym_bit_DASHxor] = ACTIONS(1243), - [anon_sym_bit_DASHor] = ACTIONS(1243), - [anon_sym_and] = ACTIONS(1243), - [anon_sym_xor] = ACTIONS(1243), - [anon_sym_or] = ACTIONS(1243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1243), - [anon_sym_DOT_DOT_LT] = ACTIONS(1243), - [anon_sym_null] = ACTIONS(1243), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_decimal_token2] = ACTIONS(1243), - [anon_sym_DOT2] = ACTIONS(1243), - [aux_sym__val_number_decimal_token3] = ACTIONS(1243), - [aux_sym__val_number_token1] = ACTIONS(1243), - [aux_sym__val_number_token2] = ACTIONS(1243), - [aux_sym__val_number_token3] = ACTIONS(1243), - [aux_sym__val_number_token4] = ACTIONS(1243), - [aux_sym__val_number_token5] = ACTIONS(1243), - [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_0b] = ACTIONS(1243), - [anon_sym_0o] = ACTIONS(1243), - [anon_sym_0x] = ACTIONS(1243), - [sym_val_date] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym__str_single_quotes] = ACTIONS(1243), - [sym__str_back_ticks] = ACTIONS(1243), - [aux_sym__list_item_starts_with_sign_token1] = ACTIONS(5049), - [sym__entry_separator] = ACTIONS(1243), - [anon_sym_err_GT] = ACTIONS(1243), - [anon_sym_out_GT] = ACTIONS(1243), - [anon_sym_e_GT] = ACTIONS(1243), - [anon_sym_o_GT] = ACTIONS(1243), - [anon_sym_err_PLUSout_GT] = ACTIONS(1243), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1243), - [anon_sym_o_PLUSe_GT] = ACTIONS(1243), - [anon_sym_e_PLUSo_GT] = ACTIONS(1243), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1243), - [anon_sym_POUND] = ACTIONS(113), + [1857] = { + [sym_expr_unary] = STATE(3034), + [sym__expr_unary_minus] = STATE(2996), + [sym_expr_binary] = STATE(3034), + [sym__expr_binary_expression] = STATE(3061), + [sym_expr_parenthesized] = STATE(3034), + [sym__val_range] = STATE(10219), + [sym__value] = STATE(3034), + [sym_val_nothing] = STATE(3070), + [sym_val_bool] = STATE(2981), + [sym_val_variable] = STATE(3070), + [sym__var] = STATE(2747), + [sym_val_number] = STATE(3070), + [sym__val_number_decimal] = STATE(2470), + [sym__val_number] = STATE(3072), + [sym_val_duration] = STATE(3070), + [sym_val_filesize] = STATE(3070), + [sym_val_binary] = STATE(3070), + [sym_val_string] = STATE(3070), + [sym__str_double_quotes] = STATE(3071), + [sym_val_interpolated] = STATE(3070), + [sym__inter_single_quotes] = STATE(2991), + [sym__inter_double_quotes] = STATE(2995), + [sym_val_list] = STATE(3070), + [sym_val_record] = STATE(3070), + [sym_val_table] = STATE(3070), + [sym_val_closure] = STATE(3070), + [sym_unquoted] = STATE(3050), + [sym__unquoted_anonymous_prefix] = STATE(10376), + [sym_comment] = STATE(1857), + [anon_sym_LBRACK] = ACTIONS(4346), + [anon_sym_LPAREN] = ACTIONS(5471), + [anon_sym_DOLLAR] = ACTIONS(5473), + [anon_sym_DASH] = ACTIONS(4352), + [anon_sym_LBRACE] = ACTIONS(4354), + [anon_sym_DOT_DOT] = ACTIONS(5475), + [anon_sym_not] = ACTIONS(4358), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5477), + [anon_sym_DOT_DOT_LT] = ACTIONS(5477), + [anon_sym_null] = ACTIONS(4362), + [anon_sym_true] = ACTIONS(4364), + [anon_sym_false] = ACTIONS(4364), + [aux_sym__val_number_decimal_token1] = ACTIONS(4366), + [aux_sym__val_number_decimal_token2] = ACTIONS(4368), + [anon_sym_DOT2] = ACTIONS(5479), + [aux_sym__val_number_decimal_token3] = ACTIONS(4372), + [aux_sym__val_number_token1] = ACTIONS(4374), + [aux_sym__val_number_token2] = ACTIONS(4374), + [aux_sym__val_number_token3] = ACTIONS(4374), + [aux_sym__val_number_token4] = ACTIONS(5481), + [aux_sym__val_number_token5] = ACTIONS(5481), + [aux_sym__val_number_token6] = ACTIONS(5481), + [anon_sym_0b] = ACTIONS(4378), + [anon_sym_0o] = ACTIONS(4380), + [anon_sym_0x] = ACTIONS(4380), + [sym_val_date] = ACTIONS(4382), + [anon_sym_DQUOTE] = ACTIONS(4384), + [sym__str_single_quotes] = ACTIONS(4386), + [sym__str_back_ticks] = ACTIONS(4386), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4388), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4390), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5483), + [anon_sym_POUND] = ACTIONS(3), }, - [1659] = { - [sym_cell_path] = STATE(2684), - [sym_path] = STATE(1663), - [sym_comment] = STATE(1659), - [ts_builtin_sym_end] = ACTIONS(997), - [anon_sym_export] = ACTIONS(995), - [anon_sym_alias] = ACTIONS(995), - [anon_sym_let] = ACTIONS(995), - [anon_sym_let_DASHenv] = ACTIONS(995), - [anon_sym_mut] = ACTIONS(995), - [anon_sym_const] = ACTIONS(995), - [anon_sym_SEMI] = ACTIONS(995), - [sym_cmd_identifier] = ACTIONS(995), - [anon_sym_LF] = ACTIONS(997), - [anon_sym_def] = ACTIONS(995), - [anon_sym_export_DASHenv] = ACTIONS(995), - [anon_sym_extern] = ACTIONS(995), - [anon_sym_module] = ACTIONS(995), - [anon_sym_use] = ACTIONS(995), - [anon_sym_LBRACK] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_DOLLAR] = ACTIONS(995), - [anon_sym_error] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_break] = ACTIONS(995), - [anon_sym_continue] = ACTIONS(995), - [anon_sym_for] = ACTIONS(995), - [anon_sym_loop] = ACTIONS(995), - [anon_sym_while] = ACTIONS(995), - [anon_sym_do] = ACTIONS(995), - [anon_sym_if] = ACTIONS(995), - [anon_sym_match] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_DOT_DOT] = ACTIONS(995), - [anon_sym_try] = ACTIONS(995), - [anon_sym_return] = ACTIONS(995), - [anon_sym_source] = ACTIONS(995), - [anon_sym_source_DASHenv] = ACTIONS(995), - [anon_sym_register] = ACTIONS(995), - [anon_sym_hide] = ACTIONS(995), - [anon_sym_hide_DASHenv] = ACTIONS(995), - [anon_sym_overlay] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_where] = ACTIONS(995), - [anon_sym_not] = ACTIONS(995), - [anon_sym_DOT] = ACTIONS(5051), - [anon_sym_DOT_DOT_EQ] = ACTIONS(995), - [anon_sym_DOT_DOT_LT] = ACTIONS(995), - [anon_sym_null] = ACTIONS(995), - [anon_sym_true] = ACTIONS(995), - [anon_sym_false] = ACTIONS(995), - [aux_sym__val_number_decimal_token1] = ACTIONS(995), - [aux_sym__val_number_decimal_token2] = ACTIONS(995), - [anon_sym_DOT2] = ACTIONS(995), - [aux_sym__val_number_decimal_token3] = ACTIONS(995), - [aux_sym__val_number_token1] = ACTIONS(995), - [aux_sym__val_number_token2] = ACTIONS(995), - [aux_sym__val_number_token3] = ACTIONS(995), - [aux_sym__val_number_token4] = ACTIONS(995), - [aux_sym__val_number_token5] = ACTIONS(995), - [aux_sym__val_number_token6] = ACTIONS(995), - [anon_sym_0b] = ACTIONS(995), - [anon_sym_0o] = ACTIONS(995), - [anon_sym_0x] = ACTIONS(995), - [sym_val_date] = ACTIONS(995), - [anon_sym_DQUOTE] = ACTIONS(995), - [sym__str_single_quotes] = ACTIONS(995), - [sym__str_back_ticks] = ACTIONS(995), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(995), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(995), - [anon_sym_CARET] = ACTIONS(995), - [anon_sym_POUND] = ACTIONS(113), + [1858] = { + [sym_expr_unary] = STATE(3034), + [sym__expr_unary_minus] = STATE(2996), + [sym_expr_binary] = STATE(3034), + [sym__expr_binary_expression] = STATE(3065), + [sym_expr_parenthesized] = STATE(3034), + [sym__val_range] = STATE(10219), + [sym__value] = STATE(3034), + [sym_val_nothing] = STATE(3070), + [sym_val_bool] = STATE(2981), + [sym_val_variable] = STATE(3070), + [sym__var] = STATE(2747), + [sym_val_number] = STATE(3070), + [sym__val_number_decimal] = STATE(2470), + [sym__val_number] = STATE(3072), + [sym_val_duration] = STATE(3070), + [sym_val_filesize] = STATE(3070), + [sym_val_binary] = STATE(3070), + [sym_val_string] = STATE(3070), + [sym__str_double_quotes] = STATE(3071), + [sym_val_interpolated] = STATE(3070), + [sym__inter_single_quotes] = STATE(2991), + [sym__inter_double_quotes] = STATE(2995), + [sym_val_list] = STATE(3070), + [sym_val_record] = STATE(3070), + [sym_val_table] = STATE(3070), + [sym_val_closure] = STATE(3070), + [sym_unquoted] = STATE(3053), + [sym__unquoted_anonymous_prefix] = STATE(10376), + [sym_comment] = STATE(1858), + [anon_sym_LBRACK] = ACTIONS(4346), + [anon_sym_LPAREN] = ACTIONS(5471), + [anon_sym_DOLLAR] = ACTIONS(5473), + [anon_sym_DASH] = ACTIONS(4352), + [anon_sym_LBRACE] = ACTIONS(4354), + [anon_sym_DOT_DOT] = ACTIONS(5475), + [anon_sym_not] = ACTIONS(4358), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5477), + [anon_sym_DOT_DOT_LT] = ACTIONS(5477), + [anon_sym_null] = ACTIONS(4362), + [anon_sym_true] = ACTIONS(4364), + [anon_sym_false] = ACTIONS(4364), + [aux_sym__val_number_decimal_token1] = ACTIONS(4366), + [aux_sym__val_number_decimal_token2] = ACTIONS(4368), + [anon_sym_DOT2] = ACTIONS(5479), + [aux_sym__val_number_decimal_token3] = ACTIONS(4372), + [aux_sym__val_number_token1] = ACTIONS(4374), + [aux_sym__val_number_token2] = ACTIONS(4374), + [aux_sym__val_number_token3] = ACTIONS(4374), + [aux_sym__val_number_token4] = ACTIONS(5481), + [aux_sym__val_number_token5] = ACTIONS(5481), + [aux_sym__val_number_token6] = ACTIONS(5481), + [anon_sym_0b] = ACTIONS(4378), + [anon_sym_0o] = ACTIONS(4380), + [anon_sym_0x] = ACTIONS(4380), + [sym_val_date] = ACTIONS(4382), + [anon_sym_DQUOTE] = ACTIONS(4384), + [sym__str_single_quotes] = ACTIONS(4386), + [sym__str_back_ticks] = ACTIONS(4386), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4388), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4390), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5483), + [anon_sym_POUND] = ACTIONS(3), }, - [1660] = { - [sym_comment] = STATE(1660), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_COMMA] = ACTIONS(959), - [anon_sym_RBRACK] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH_DASH] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(959), - [anon_sym_PLUS_PLUS] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(959), - [anon_sym_SLASH_SLASH] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(959), - [anon_sym_bit_DASHshr] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(959), - [anon_sym_BANG_EQ] = ACTIONS(959), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(959), - [anon_sym_GT_EQ] = ACTIONS(959), - [anon_sym_not_DASHin] = ACTIONS(959), - [anon_sym_starts_DASHwith] = ACTIONS(959), - [anon_sym_ends_DASHwith] = ACTIONS(959), - [anon_sym_EQ_TILDE] = ACTIONS(959), - [anon_sym_BANG_TILDE] = ACTIONS(959), - [anon_sym_bit_DASHand] = ACTIONS(959), - [anon_sym_bit_DASHxor] = ACTIONS(959), - [anon_sym_bit_DASHor] = ACTIONS(959), - [anon_sym_and] = ACTIONS(959), - [anon_sym_xor] = ACTIONS(959), - [anon_sym_or] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_DOT_DOT_LT] = ACTIONS(959), - [anon_sym_null] = ACTIONS(959), - [anon_sym_true] = ACTIONS(959), - [anon_sym_false] = ACTIONS(959), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(959), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(959), - [aux_sym__val_number_token1] = ACTIONS(959), - [aux_sym__val_number_token2] = ACTIONS(959), - [aux_sym__val_number_token3] = ACTIONS(959), - [aux_sym__val_number_token4] = ACTIONS(959), - [aux_sym__val_number_token5] = ACTIONS(959), - [aux_sym__val_number_token6] = ACTIONS(959), - [anon_sym_0b] = ACTIONS(959), - [anon_sym_0o] = ACTIONS(959), - [anon_sym_0x] = ACTIONS(959), - [sym_val_date] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [sym__str_single_quotes] = ACTIONS(959), - [sym__str_back_ticks] = ACTIONS(959), - [sym__entry_separator] = ACTIONS(961), - [anon_sym_err_GT] = ACTIONS(959), - [anon_sym_out_GT] = ACTIONS(959), - [anon_sym_e_GT] = ACTIONS(959), - [anon_sym_o_GT] = ACTIONS(959), - [anon_sym_err_PLUSout_GT] = ACTIONS(959), - [anon_sym_out_PLUSerr_GT] = ACTIONS(959), - [anon_sym_o_PLUSe_GT] = ACTIONS(959), - [anon_sym_e_PLUSo_GT] = ACTIONS(959), - [aux_sym_unquoted_token5] = ACTIONS(2613), - [aux_sym__unquoted_in_list_token1] = ACTIONS(959), - [anon_sym_POUND] = ACTIONS(113), + [1859] = { + [sym_expr_unary] = STATE(3034), + [sym__expr_unary_minus] = STATE(2996), + [sym_expr_binary] = STATE(3034), + [sym__expr_binary_expression] = STATE(3066), + [sym_expr_parenthesized] = STATE(3034), + [sym__val_range] = STATE(10219), + [sym__value] = STATE(3034), + [sym_val_nothing] = STATE(3070), + [sym_val_bool] = STATE(2981), + [sym_val_variable] = STATE(3070), + [sym__var] = STATE(2747), + [sym_val_number] = STATE(3070), + [sym__val_number_decimal] = STATE(2470), + [sym__val_number] = STATE(3072), + [sym_val_duration] = STATE(3070), + [sym_val_filesize] = STATE(3070), + [sym_val_binary] = STATE(3070), + [sym_val_string] = STATE(3070), + [sym__str_double_quotes] = STATE(3071), + [sym_val_interpolated] = STATE(3070), + [sym__inter_single_quotes] = STATE(2991), + [sym__inter_double_quotes] = STATE(2995), + [sym_val_list] = STATE(3070), + [sym_val_record] = STATE(3070), + [sym_val_table] = STATE(3070), + [sym_val_closure] = STATE(3070), + [sym_unquoted] = STATE(2999), + [sym__unquoted_anonymous_prefix] = STATE(10376), + [sym_comment] = STATE(1859), + [anon_sym_LBRACK] = ACTIONS(4346), + [anon_sym_LPAREN] = ACTIONS(5471), + [anon_sym_DOLLAR] = ACTIONS(5473), + [anon_sym_DASH] = ACTIONS(4352), + [anon_sym_LBRACE] = ACTIONS(4354), + [anon_sym_DOT_DOT] = ACTIONS(5475), + [anon_sym_not] = ACTIONS(4358), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5477), + [anon_sym_DOT_DOT_LT] = ACTIONS(5477), + [anon_sym_null] = ACTIONS(4362), + [anon_sym_true] = ACTIONS(4364), + [anon_sym_false] = ACTIONS(4364), + [aux_sym__val_number_decimal_token1] = ACTIONS(4366), + [aux_sym__val_number_decimal_token2] = ACTIONS(4368), + [anon_sym_DOT2] = ACTIONS(5479), + [aux_sym__val_number_decimal_token3] = ACTIONS(4372), + [aux_sym__val_number_token1] = ACTIONS(4374), + [aux_sym__val_number_token2] = ACTIONS(4374), + [aux_sym__val_number_token3] = ACTIONS(4374), + [aux_sym__val_number_token4] = ACTIONS(5481), + [aux_sym__val_number_token5] = ACTIONS(5481), + [aux_sym__val_number_token6] = ACTIONS(5481), + [anon_sym_0b] = ACTIONS(4378), + [anon_sym_0o] = ACTIONS(4380), + [anon_sym_0x] = ACTIONS(4380), + [sym_val_date] = ACTIONS(4382), + [anon_sym_DQUOTE] = ACTIONS(4384), + [sym__str_single_quotes] = ACTIONS(4386), + [sym__str_back_ticks] = ACTIONS(4386), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4388), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4390), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5483), + [anon_sym_POUND] = ACTIONS(3), }, - [1661] = { - [sym_comment] = STATE(1661), - [anon_sym_LBRACK] = ACTIONS(1061), - [anon_sym_COMMA] = ACTIONS(1061), - [anon_sym_RBRACK] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1061), - [anon_sym_DOLLAR] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_DASH_DASH] = ACTIONS(1061), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_QMARK2] = ACTIONS(1061), - [anon_sym_STAR_STAR] = ACTIONS(1061), - [anon_sym_PLUS_PLUS] = ACTIONS(1061), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_mod] = ACTIONS(1061), - [anon_sym_SLASH_SLASH] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_bit_DASHshl] = ACTIONS(1061), - [anon_sym_bit_DASHshr] = ACTIONS(1061), - [anon_sym_EQ_EQ] = ACTIONS(1061), - [anon_sym_BANG_EQ] = ACTIONS(1061), - [anon_sym_LT2] = ACTIONS(1059), - [anon_sym_LT_EQ] = ACTIONS(1061), - [anon_sym_GT_EQ] = ACTIONS(1061), - [anon_sym_not_DASHin] = ACTIONS(1061), - [anon_sym_starts_DASHwith] = ACTIONS(1061), - [anon_sym_ends_DASHwith] = ACTIONS(1061), - [anon_sym_EQ_TILDE] = ACTIONS(1061), - [anon_sym_BANG_TILDE] = ACTIONS(1061), - [anon_sym_bit_DASHand] = ACTIONS(1061), - [anon_sym_bit_DASHxor] = ACTIONS(1061), - [anon_sym_bit_DASHor] = ACTIONS(1061), - [anon_sym_and] = ACTIONS(1061), - [anon_sym_xor] = ACTIONS(1061), - [anon_sym_or] = ACTIONS(1061), - [anon_sym_DOT] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1061), - [anon_sym_DOT_DOT_LT] = ACTIONS(1061), - [anon_sym_null] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), - [aux_sym__val_number_decimal_token1] = ACTIONS(1059), - [aux_sym__val_number_decimal_token2] = ACTIONS(1061), - [anon_sym_DOT2] = ACTIONS(1059), - [aux_sym__val_number_decimal_token3] = ACTIONS(1061), - [aux_sym__val_number_token1] = ACTIONS(1061), - [aux_sym__val_number_token2] = ACTIONS(1061), - [aux_sym__val_number_token3] = ACTIONS(1061), - [aux_sym__val_number_token4] = ACTIONS(1061), - [aux_sym__val_number_token5] = ACTIONS(1061), - [aux_sym__val_number_token6] = ACTIONS(1061), - [anon_sym_0b] = ACTIONS(1059), - [anon_sym_0o] = ACTIONS(1059), - [anon_sym_0x] = ACTIONS(1059), - [sym_val_date] = ACTIONS(1061), - [anon_sym_DQUOTE] = ACTIONS(1061), - [sym__str_single_quotes] = ACTIONS(1061), - [sym__str_back_ticks] = ACTIONS(1061), - [anon_sym_err_GT] = ACTIONS(1061), - [anon_sym_out_GT] = ACTIONS(1061), - [anon_sym_e_GT] = ACTIONS(1061), - [anon_sym_o_GT] = ACTIONS(1061), - [anon_sym_err_PLUSout_GT] = ACTIONS(1061), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1061), - [anon_sym_o_PLUSe_GT] = ACTIONS(1061), - [anon_sym_e_PLUSo_GT] = ACTIONS(1061), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1059), + [1860] = { + [sym_expr_unary] = STATE(3034), + [sym__expr_unary_minus] = STATE(2996), + [sym_expr_binary] = STATE(3034), + [sym__expr_binary_expression] = STATE(3064), + [sym_expr_parenthesized] = STATE(3034), + [sym__val_range] = STATE(10219), + [sym__value] = STATE(3034), + [sym_val_nothing] = STATE(3070), + [sym_val_bool] = STATE(2981), + [sym_val_variable] = STATE(3070), + [sym__var] = STATE(2747), + [sym_val_number] = STATE(3070), + [sym__val_number_decimal] = STATE(2470), + [sym__val_number] = STATE(3072), + [sym_val_duration] = STATE(3070), + [sym_val_filesize] = STATE(3070), + [sym_val_binary] = STATE(3070), + [sym_val_string] = STATE(3070), + [sym__str_double_quotes] = STATE(3071), + [sym_val_interpolated] = STATE(3070), + [sym__inter_single_quotes] = STATE(2991), + [sym__inter_double_quotes] = STATE(2995), + [sym_val_list] = STATE(3070), + [sym_val_record] = STATE(3070), + [sym_val_table] = STATE(3070), + [sym_val_closure] = STATE(3070), + [sym_unquoted] = STATE(3014), + [sym__unquoted_anonymous_prefix] = STATE(10376), + [sym_comment] = STATE(1860), + [anon_sym_LBRACK] = ACTIONS(4346), + [anon_sym_LPAREN] = ACTIONS(5471), + [anon_sym_DOLLAR] = ACTIONS(5473), + [anon_sym_DASH] = ACTIONS(4352), + [anon_sym_LBRACE] = ACTIONS(4354), + [anon_sym_DOT_DOT] = ACTIONS(5475), + [anon_sym_not] = ACTIONS(4358), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5477), + [anon_sym_DOT_DOT_LT] = ACTIONS(5477), + [anon_sym_null] = ACTIONS(4362), + [anon_sym_true] = ACTIONS(4364), + [anon_sym_false] = ACTIONS(4364), + [aux_sym__val_number_decimal_token1] = ACTIONS(4366), + [aux_sym__val_number_decimal_token2] = ACTIONS(4368), + [anon_sym_DOT2] = ACTIONS(5479), + [aux_sym__val_number_decimal_token3] = ACTIONS(4372), + [aux_sym__val_number_token1] = ACTIONS(4374), + [aux_sym__val_number_token2] = ACTIONS(4374), + [aux_sym__val_number_token3] = ACTIONS(4374), + [aux_sym__val_number_token4] = ACTIONS(5481), + [aux_sym__val_number_token5] = ACTIONS(5481), + [aux_sym__val_number_token6] = ACTIONS(5481), + [anon_sym_0b] = ACTIONS(4378), + [anon_sym_0o] = ACTIONS(4380), + [anon_sym_0x] = ACTIONS(4380), + [sym_val_date] = ACTIONS(4382), + [anon_sym_DQUOTE] = ACTIONS(4384), + [sym__str_single_quotes] = ACTIONS(4386), + [sym__str_back_ticks] = ACTIONS(4386), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4388), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4390), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5483), [anon_sym_POUND] = ACTIONS(3), }, - [1662] = { - [sym_comment] = STATE(1662), - [anon_sym_export] = ACTIONS(1113), - [anon_sym_alias] = ACTIONS(1113), - [anon_sym_let] = ACTIONS(1113), - [anon_sym_let_DASHenv] = ACTIONS(1113), - [anon_sym_mut] = ACTIONS(1113), - [anon_sym_const] = ACTIONS(1113), - [anon_sym_SEMI] = ACTIONS(1113), - [sym_cmd_identifier] = ACTIONS(1113), - [anon_sym_LF] = ACTIONS(1115), - [anon_sym_def] = ACTIONS(1113), - [anon_sym_export_DASHenv] = ACTIONS(1113), - [anon_sym_extern] = ACTIONS(1113), - [anon_sym_module] = ACTIONS(1113), - [anon_sym_use] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_RPAREN] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1113), - [anon_sym_error] = ACTIONS(1113), - [anon_sym_DASH_DASH] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_loop] = ACTIONS(1113), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_RBRACE] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1113), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_source] = ACTIONS(1113), - [anon_sym_source_DASHenv] = ACTIONS(1113), - [anon_sym_register] = ACTIONS(1113), - [anon_sym_hide] = ACTIONS(1113), - [anon_sym_hide_DASHenv] = ACTIONS(1113), - [anon_sym_overlay] = ACTIONS(1113), - [anon_sym_as] = ACTIONS(1113), - [anon_sym_where] = ACTIONS(1113), - [anon_sym_not] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1113), - [anon_sym_DOT_DOT_LT] = ACTIONS(1113), - [anon_sym_null] = ACTIONS(1113), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1113), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_decimal_token2] = ACTIONS(1113), - [anon_sym_DOT2] = ACTIONS(1113), - [aux_sym__val_number_decimal_token3] = ACTIONS(1113), - [aux_sym__val_number_token1] = ACTIONS(1113), - [aux_sym__val_number_token2] = ACTIONS(1113), - [aux_sym__val_number_token3] = ACTIONS(1113), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1113), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_0b] = ACTIONS(1113), - [anon_sym_0o] = ACTIONS(1113), - [anon_sym_0x] = ACTIONS(1113), - [sym_val_date] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym__str_single_quotes] = ACTIONS(1113), - [sym__str_back_ticks] = ACTIONS(1113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), - [anon_sym_CARET] = ACTIONS(1113), - [anon_sym_POUND] = ACTIONS(113), + [1861] = { + [sym_expr_unary] = STATE(3034), + [sym__expr_unary_minus] = STATE(2996), + [sym_expr_binary] = STATE(3034), + [sym__expr_binary_expression] = STATE(3074), + [sym_expr_parenthesized] = STATE(3034), + [sym__val_range] = STATE(10219), + [sym__value] = STATE(3034), + [sym_val_nothing] = STATE(3070), + [sym_val_bool] = STATE(2981), + [sym_val_variable] = STATE(3070), + [sym__var] = STATE(2747), + [sym_val_number] = STATE(3070), + [sym__val_number_decimal] = STATE(2470), + [sym__val_number] = STATE(3072), + [sym_val_duration] = STATE(3070), + [sym_val_filesize] = STATE(3070), + [sym_val_binary] = STATE(3070), + [sym_val_string] = STATE(3070), + [sym__str_double_quotes] = STATE(3071), + [sym_val_interpolated] = STATE(3070), + [sym__inter_single_quotes] = STATE(2991), + [sym__inter_double_quotes] = STATE(2995), + [sym_val_list] = STATE(3070), + [sym_val_record] = STATE(3070), + [sym_val_table] = STATE(3070), + [sym_val_closure] = STATE(3070), + [sym_unquoted] = STATE(3020), + [sym__unquoted_anonymous_prefix] = STATE(10376), + [sym_comment] = STATE(1861), + [anon_sym_LBRACK] = ACTIONS(4346), + [anon_sym_LPAREN] = ACTIONS(5471), + [anon_sym_DOLLAR] = ACTIONS(5473), + [anon_sym_DASH] = ACTIONS(4352), + [anon_sym_LBRACE] = ACTIONS(4354), + [anon_sym_DOT_DOT] = ACTIONS(5475), + [anon_sym_not] = ACTIONS(4358), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5477), + [anon_sym_DOT_DOT_LT] = ACTIONS(5477), + [anon_sym_null] = ACTIONS(4362), + [anon_sym_true] = ACTIONS(4364), + [anon_sym_false] = ACTIONS(4364), + [aux_sym__val_number_decimal_token1] = ACTIONS(4366), + [aux_sym__val_number_decimal_token2] = ACTIONS(4368), + [anon_sym_DOT2] = ACTIONS(5479), + [aux_sym__val_number_decimal_token3] = ACTIONS(4372), + [aux_sym__val_number_token1] = ACTIONS(4374), + [aux_sym__val_number_token2] = ACTIONS(4374), + [aux_sym__val_number_token3] = ACTIONS(4374), + [aux_sym__val_number_token4] = ACTIONS(5481), + [aux_sym__val_number_token5] = ACTIONS(5481), + [aux_sym__val_number_token6] = ACTIONS(5481), + [anon_sym_0b] = ACTIONS(4378), + [anon_sym_0o] = ACTIONS(4380), + [anon_sym_0x] = ACTIONS(4380), + [sym_val_date] = ACTIONS(4382), + [anon_sym_DQUOTE] = ACTIONS(4384), + [sym__str_single_quotes] = ACTIONS(4386), + [sym__str_back_ticks] = ACTIONS(4386), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4388), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4390), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5483), + [anon_sym_POUND] = ACTIONS(3), }, - [1663] = { - [sym_path] = STATE(2417), - [sym_comment] = STATE(1663), - [aux_sym_cell_path_repeat1] = STATE(1667), - [ts_builtin_sym_end] = ACTIONS(989), - [anon_sym_export] = ACTIONS(987), - [anon_sym_alias] = ACTIONS(987), - [anon_sym_let] = ACTIONS(987), - [anon_sym_let_DASHenv] = ACTIONS(987), - [anon_sym_mut] = ACTIONS(987), - [anon_sym_const] = ACTIONS(987), - [anon_sym_SEMI] = ACTIONS(987), - [sym_cmd_identifier] = ACTIONS(987), - [anon_sym_LF] = ACTIONS(989), - [anon_sym_def] = ACTIONS(987), - [anon_sym_export_DASHenv] = ACTIONS(987), - [anon_sym_extern] = ACTIONS(987), - [anon_sym_module] = ACTIONS(987), - [anon_sym_use] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(987), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_DOLLAR] = ACTIONS(987), - [anon_sym_error] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_break] = ACTIONS(987), - [anon_sym_continue] = ACTIONS(987), - [anon_sym_for] = ACTIONS(987), - [anon_sym_loop] = ACTIONS(987), - [anon_sym_while] = ACTIONS(987), - [anon_sym_do] = ACTIONS(987), - [anon_sym_if] = ACTIONS(987), - [anon_sym_match] = ACTIONS(987), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_DOT_DOT] = ACTIONS(987), - [anon_sym_try] = ACTIONS(987), - [anon_sym_return] = ACTIONS(987), - [anon_sym_source] = ACTIONS(987), - [anon_sym_source_DASHenv] = ACTIONS(987), - [anon_sym_register] = ACTIONS(987), - [anon_sym_hide] = ACTIONS(987), - [anon_sym_hide_DASHenv] = ACTIONS(987), - [anon_sym_overlay] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(987), - [anon_sym_where] = ACTIONS(987), - [anon_sym_not] = ACTIONS(987), - [anon_sym_DOT] = ACTIONS(5051), - [anon_sym_DOT_DOT_EQ] = ACTIONS(987), - [anon_sym_DOT_DOT_LT] = ACTIONS(987), - [anon_sym_null] = ACTIONS(987), - [anon_sym_true] = ACTIONS(987), - [anon_sym_false] = ACTIONS(987), - [aux_sym__val_number_decimal_token1] = ACTIONS(987), - [aux_sym__val_number_decimal_token2] = ACTIONS(987), - [anon_sym_DOT2] = ACTIONS(987), - [aux_sym__val_number_decimal_token3] = ACTIONS(987), - [aux_sym__val_number_token1] = ACTIONS(987), - [aux_sym__val_number_token2] = ACTIONS(987), - [aux_sym__val_number_token3] = ACTIONS(987), - [aux_sym__val_number_token4] = ACTIONS(987), - [aux_sym__val_number_token5] = ACTIONS(987), - [aux_sym__val_number_token6] = ACTIONS(987), - [anon_sym_0b] = ACTIONS(987), - [anon_sym_0o] = ACTIONS(987), - [anon_sym_0x] = ACTIONS(987), - [sym_val_date] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(987), - [sym__str_single_quotes] = ACTIONS(987), - [sym__str_back_ticks] = ACTIONS(987), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(987), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_POUND] = ACTIONS(113), + [1862] = { + [sym_expr_unary] = STATE(3034), + [sym__expr_unary_minus] = STATE(2996), + [sym_expr_binary] = STATE(3034), + [sym__expr_binary_expression] = STATE(3005), + [sym_expr_parenthesized] = STATE(3034), + [sym__val_range] = STATE(10219), + [sym__value] = STATE(3034), + [sym_val_nothing] = STATE(3070), + [sym_val_bool] = STATE(2981), + [sym_val_variable] = STATE(3070), + [sym__var] = STATE(2747), + [sym_val_number] = STATE(3070), + [sym__val_number_decimal] = STATE(2470), + [sym__val_number] = STATE(3072), + [sym_val_duration] = STATE(3070), + [sym_val_filesize] = STATE(3070), + [sym_val_binary] = STATE(3070), + [sym_val_string] = STATE(3070), + [sym__str_double_quotes] = STATE(3071), + [sym_val_interpolated] = STATE(3070), + [sym__inter_single_quotes] = STATE(2991), + [sym__inter_double_quotes] = STATE(2995), + [sym_val_list] = STATE(3070), + [sym_val_record] = STATE(3070), + [sym_val_table] = STATE(3070), + [sym_val_closure] = STATE(3070), + [sym_unquoted] = STATE(3024), + [sym__unquoted_anonymous_prefix] = STATE(10376), + [sym_comment] = STATE(1862), + [anon_sym_LBRACK] = ACTIONS(4346), + [anon_sym_LPAREN] = ACTIONS(5471), + [anon_sym_DOLLAR] = ACTIONS(5473), + [anon_sym_DASH] = ACTIONS(4352), + [anon_sym_LBRACE] = ACTIONS(4354), + [anon_sym_DOT_DOT] = ACTIONS(5475), + [anon_sym_not] = ACTIONS(4358), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5477), + [anon_sym_DOT_DOT_LT] = ACTIONS(5477), + [anon_sym_null] = ACTIONS(4362), + [anon_sym_true] = ACTIONS(4364), + [anon_sym_false] = ACTIONS(4364), + [aux_sym__val_number_decimal_token1] = ACTIONS(4366), + [aux_sym__val_number_decimal_token2] = ACTIONS(4368), + [anon_sym_DOT2] = ACTIONS(5479), + [aux_sym__val_number_decimal_token3] = ACTIONS(4372), + [aux_sym__val_number_token1] = ACTIONS(4374), + [aux_sym__val_number_token2] = ACTIONS(4374), + [aux_sym__val_number_token3] = ACTIONS(4374), + [aux_sym__val_number_token4] = ACTIONS(5481), + [aux_sym__val_number_token5] = ACTIONS(5481), + [aux_sym__val_number_token6] = ACTIONS(5481), + [anon_sym_0b] = ACTIONS(4378), + [anon_sym_0o] = ACTIONS(4380), + [anon_sym_0x] = ACTIONS(4380), + [sym_val_date] = ACTIONS(4382), + [anon_sym_DQUOTE] = ACTIONS(4384), + [sym__str_single_quotes] = ACTIONS(4386), + [sym__str_back_ticks] = ACTIONS(4386), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4388), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4390), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5483), + [anon_sym_POUND] = ACTIONS(3), }, - [1664] = { - [sym_comment] = STATE(1664), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_alias] = ACTIONS(1070), - [anon_sym_let] = ACTIONS(1070), - [anon_sym_let_DASHenv] = ACTIONS(1070), - [anon_sym_mut] = ACTIONS(1070), - [anon_sym_const] = ACTIONS(1070), - [anon_sym_SEMI] = ACTIONS(1070), - [sym_cmd_identifier] = ACTIONS(1070), - [anon_sym_LF] = ACTIONS(1072), - [anon_sym_def] = ACTIONS(1070), - [anon_sym_export_DASHenv] = ACTIONS(1070), - [anon_sym_extern] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_use] = ACTIONS(1070), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_RPAREN] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_error] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_loop] = ACTIONS(1070), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_do] = ACTIONS(1070), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_match] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_RBRACE] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_try] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_source] = ACTIONS(1070), - [anon_sym_source_DASHenv] = ACTIONS(1070), - [anon_sym_register] = ACTIONS(1070), - [anon_sym_hide] = ACTIONS(1070), - [anon_sym_hide_DASHenv] = ACTIONS(1070), - [anon_sym_overlay] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_where] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(5053), - [anon_sym_not] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_null] = ACTIONS(1070), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1070), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), - [anon_sym_CARET] = ACTIONS(1070), - [anon_sym_POUND] = ACTIONS(113), + [1863] = { + [sym_expr_unary] = STATE(609), + [sym__expr_unary_minus] = STATE(600), + [sym_expr_binary] = STATE(609), + [sym__expr_binary_expression] = STATE(685), + [sym_expr_parenthesized] = STATE(609), + [sym__val_range] = STATE(10225), + [sym__value] = STATE(609), + [sym_val_nothing] = STATE(643), + [sym_val_bool] = STATE(587), + [sym_val_variable] = STATE(643), + [sym__var] = STATE(544), + [sym_val_number] = STATE(643), + [sym__val_number_decimal] = STATE(489), + [sym__val_number] = STATE(644), + [sym_val_duration] = STATE(643), + [sym_val_filesize] = STATE(643), + [sym_val_binary] = STATE(643), + [sym_val_string] = STATE(643), + [sym__str_double_quotes] = STATE(661), + [sym_val_interpolated] = STATE(643), + [sym__inter_single_quotes] = STATE(662), + [sym__inter_double_quotes] = STATE(663), + [sym_val_list] = STATE(643), + [sym_val_record] = STATE(643), + [sym_val_table] = STATE(643), + [sym_val_closure] = STATE(643), + [sym_unquoted] = STATE(622), + [sym__unquoted_anonymous_prefix] = STATE(10442), + [sym_comment] = STATE(1863), + [anon_sym_LBRACK] = ACTIONS(5485), + [anon_sym_LPAREN] = ACTIONS(5487), + [anon_sym_DOLLAR] = ACTIONS(5489), + [anon_sym_DASH] = ACTIONS(5491), + [anon_sym_LBRACE] = ACTIONS(5493), + [anon_sym_DOT_DOT] = ACTIONS(5495), + [anon_sym_not] = ACTIONS(5497), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5499), + [anon_sym_DOT_DOT_LT] = ACTIONS(5499), + [anon_sym_null] = ACTIONS(5501), + [anon_sym_true] = ACTIONS(5503), + [anon_sym_false] = ACTIONS(5503), + [aux_sym__val_number_decimal_token1] = ACTIONS(5505), + [aux_sym__val_number_decimal_token2] = ACTIONS(5507), + [anon_sym_DOT2] = ACTIONS(5509), + [aux_sym__val_number_decimal_token3] = ACTIONS(5511), + [aux_sym__val_number_token1] = ACTIONS(5513), + [aux_sym__val_number_token2] = ACTIONS(5513), + [aux_sym__val_number_token3] = ACTIONS(5513), + [aux_sym__val_number_token4] = ACTIONS(5515), + [aux_sym__val_number_token5] = ACTIONS(5515), + [aux_sym__val_number_token6] = ACTIONS(5515), + [anon_sym_0b] = ACTIONS(5517), + [anon_sym_0o] = ACTIONS(5519), + [anon_sym_0x] = ACTIONS(5519), + [sym_val_date] = ACTIONS(5521), + [anon_sym_DQUOTE] = ACTIONS(5523), + [sym__str_single_quotes] = ACTIONS(5525), + [sym__str_back_ticks] = ACTIONS(5525), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5527), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5529), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5531), + [anon_sym_POUND] = ACTIONS(3), }, - [1665] = { - [sym_comment] = STATE(1665), - [ts_builtin_sym_end] = ACTIONS(1072), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_alias] = ACTIONS(1070), - [anon_sym_let] = ACTIONS(1070), - [anon_sym_let_DASHenv] = ACTIONS(1070), - [anon_sym_mut] = ACTIONS(1070), - [anon_sym_const] = ACTIONS(1070), - [anon_sym_SEMI] = ACTIONS(1070), - [sym_cmd_identifier] = ACTIONS(1070), - [anon_sym_LF] = ACTIONS(1072), - [anon_sym_def] = ACTIONS(1070), - [anon_sym_export_DASHenv] = ACTIONS(1070), - [anon_sym_extern] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_use] = ACTIONS(1070), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_error] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_loop] = ACTIONS(1070), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_do] = ACTIONS(1070), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_match] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_try] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_source] = ACTIONS(1070), - [anon_sym_source_DASHenv] = ACTIONS(1070), - [anon_sym_register] = ACTIONS(1070), - [anon_sym_hide] = ACTIONS(1070), - [anon_sym_hide_DASHenv] = ACTIONS(1070), - [anon_sym_overlay] = ACTIONS(1070), - [anon_sym_as] = ACTIONS(1070), - [anon_sym_where] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(5055), - [anon_sym_not] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_null] = ACTIONS(1070), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1070), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), - [anon_sym_CARET] = ACTIONS(1070), - [anon_sym_POUND] = ACTIONS(113), + [1864] = { + [sym_expr_unary] = STATE(609), + [sym__expr_unary_minus] = STATE(600), + [sym_expr_binary] = STATE(609), + [sym__expr_binary_expression] = STATE(603), + [sym_expr_parenthesized] = STATE(609), + [sym__val_range] = STATE(10225), + [sym__value] = STATE(609), + [sym_val_nothing] = STATE(643), + [sym_val_bool] = STATE(587), + [sym_val_variable] = STATE(643), + [sym__var] = STATE(544), + [sym_val_number] = STATE(643), + [sym__val_number_decimal] = STATE(489), + [sym__val_number] = STATE(644), + [sym_val_duration] = STATE(643), + [sym_val_filesize] = STATE(643), + [sym_val_binary] = STATE(643), + [sym_val_string] = STATE(643), + [sym__str_double_quotes] = STATE(661), + [sym_val_interpolated] = STATE(643), + [sym__inter_single_quotes] = STATE(662), + [sym__inter_double_quotes] = STATE(663), + [sym_val_list] = STATE(643), + [sym_val_record] = STATE(643), + [sym_val_table] = STATE(643), + [sym_val_closure] = STATE(643), + [sym_unquoted] = STATE(625), + [sym__unquoted_anonymous_prefix] = STATE(10442), + [sym_comment] = STATE(1864), + [anon_sym_LBRACK] = ACTIONS(5485), + [anon_sym_LPAREN] = ACTIONS(5487), + [anon_sym_DOLLAR] = ACTIONS(5489), + [anon_sym_DASH] = ACTIONS(5491), + [anon_sym_LBRACE] = ACTIONS(5493), + [anon_sym_DOT_DOT] = ACTIONS(5495), + [anon_sym_not] = ACTIONS(5497), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5499), + [anon_sym_DOT_DOT_LT] = ACTIONS(5499), + [anon_sym_null] = ACTIONS(5501), + [anon_sym_true] = ACTIONS(5503), + [anon_sym_false] = ACTIONS(5503), + [aux_sym__val_number_decimal_token1] = ACTIONS(5505), + [aux_sym__val_number_decimal_token2] = ACTIONS(5507), + [anon_sym_DOT2] = ACTIONS(5509), + [aux_sym__val_number_decimal_token3] = ACTIONS(5511), + [aux_sym__val_number_token1] = ACTIONS(5513), + [aux_sym__val_number_token2] = ACTIONS(5513), + [aux_sym__val_number_token3] = ACTIONS(5513), + [aux_sym__val_number_token4] = ACTIONS(5515), + [aux_sym__val_number_token5] = ACTIONS(5515), + [aux_sym__val_number_token6] = ACTIONS(5515), + [anon_sym_0b] = ACTIONS(5517), + [anon_sym_0o] = ACTIONS(5519), + [anon_sym_0x] = ACTIONS(5519), + [sym_val_date] = ACTIONS(5521), + [anon_sym_DQUOTE] = ACTIONS(5523), + [sym__str_single_quotes] = ACTIONS(5525), + [sym__str_back_ticks] = ACTIONS(5525), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5527), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5529), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5531), + [anon_sym_POUND] = ACTIONS(3), }, - [1666] = { - [sym_comment] = STATE(1666), - [anon_sym_export] = ACTIONS(3518), - [anon_sym_alias] = ACTIONS(3518), - [anon_sym_let] = ACTIONS(3518), - [anon_sym_let_DASHenv] = ACTIONS(3518), - [anon_sym_mut] = ACTIONS(3518), - [anon_sym_const] = ACTIONS(3518), - [anon_sym_SEMI] = ACTIONS(3518), - [sym_cmd_identifier] = ACTIONS(3518), - [anon_sym_LF] = ACTIONS(3520), - [anon_sym_def] = ACTIONS(3518), - [anon_sym_export_DASHenv] = ACTIONS(3518), - [anon_sym_extern] = ACTIONS(3518), - [anon_sym_module] = ACTIONS(3518), - [anon_sym_use] = ACTIONS(3518), - [anon_sym_LBRACK] = ACTIONS(3518), - [anon_sym_LPAREN] = ACTIONS(3518), - [anon_sym_RPAREN] = ACTIONS(3518), - [anon_sym_DOLLAR] = ACTIONS(3518), - [anon_sym_error] = ACTIONS(3518), - [anon_sym_DASH] = ACTIONS(3518), - [anon_sym_break] = ACTIONS(3518), - [anon_sym_continue] = ACTIONS(3518), - [anon_sym_for] = ACTIONS(3518), - [anon_sym_loop] = ACTIONS(3518), - [anon_sym_while] = ACTIONS(3518), - [anon_sym_do] = ACTIONS(3518), - [anon_sym_if] = ACTIONS(3518), - [anon_sym_match] = ACTIONS(3518), - [anon_sym_LBRACE] = ACTIONS(3518), - [anon_sym_RBRACE] = ACTIONS(3518), - [anon_sym_DOT_DOT] = ACTIONS(3518), - [anon_sym_try] = ACTIONS(3518), - [anon_sym_return] = ACTIONS(3518), - [anon_sym_source] = ACTIONS(3518), - [anon_sym_source_DASHenv] = ACTIONS(3518), - [anon_sym_register] = ACTIONS(3518), - [anon_sym_hide] = ACTIONS(3518), - [anon_sym_hide_DASHenv] = ACTIONS(3518), - [anon_sym_overlay] = ACTIONS(3518), - [anon_sym_where] = ACTIONS(3518), - [anon_sym_not] = ACTIONS(3518), - [anon_sym_DOT_DOT2] = ACTIONS(5057), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3518), - [anon_sym_DOT_DOT_LT] = ACTIONS(3518), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(5059), - [anon_sym_DOT_DOT_LT2] = ACTIONS(5059), - [anon_sym_null] = ACTIONS(3518), - [anon_sym_true] = ACTIONS(3518), - [anon_sym_false] = ACTIONS(3518), - [aux_sym__val_number_decimal_token1] = ACTIONS(3518), - [aux_sym__val_number_decimal_token2] = ACTIONS(3518), - [anon_sym_DOT2] = ACTIONS(3518), - [aux_sym__val_number_decimal_token3] = ACTIONS(3518), - [aux_sym__val_number_token1] = ACTIONS(3518), - [aux_sym__val_number_token2] = ACTIONS(3518), - [aux_sym__val_number_token3] = ACTIONS(3518), - [aux_sym__val_number_token4] = ACTIONS(3518), - [aux_sym__val_number_token5] = ACTIONS(3518), - [aux_sym__val_number_token6] = ACTIONS(3518), - [anon_sym_0b] = ACTIONS(3518), - [anon_sym_0o] = ACTIONS(3518), - [anon_sym_0x] = ACTIONS(3518), - [sym_val_date] = ACTIONS(3518), - [anon_sym_DQUOTE] = ACTIONS(3518), - [sym__str_single_quotes] = ACTIONS(3518), - [sym__str_back_ticks] = ACTIONS(3518), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3518), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3518), - [anon_sym_CARET] = ACTIONS(3518), - [anon_sym_POUND] = ACTIONS(113), + [1865] = { + [sym_expr_unary] = STATE(609), + [sym__expr_unary_minus] = STATE(600), + [sym_expr_binary] = STATE(609), + [sym__expr_binary_expression] = STATE(613), + [sym_expr_parenthesized] = STATE(609), + [sym__val_range] = STATE(10225), + [sym__value] = STATE(609), + [sym_val_nothing] = STATE(643), + [sym_val_bool] = STATE(587), + [sym_val_variable] = STATE(643), + [sym__var] = STATE(544), + [sym_val_number] = STATE(643), + [sym__val_number_decimal] = STATE(489), + [sym__val_number] = STATE(644), + [sym_val_duration] = STATE(643), + [sym_val_filesize] = STATE(643), + [sym_val_binary] = STATE(643), + [sym_val_string] = STATE(643), + [sym__str_double_quotes] = STATE(661), + [sym_val_interpolated] = STATE(643), + [sym__inter_single_quotes] = STATE(662), + [sym__inter_double_quotes] = STATE(663), + [sym_val_list] = STATE(643), + [sym_val_record] = STATE(643), + [sym_val_table] = STATE(643), + [sym_val_closure] = STATE(643), + [sym_unquoted] = STATE(629), + [sym__unquoted_anonymous_prefix] = STATE(10442), + [sym_comment] = STATE(1865), + [anon_sym_LBRACK] = ACTIONS(5485), + [anon_sym_LPAREN] = ACTIONS(5487), + [anon_sym_DOLLAR] = ACTIONS(5489), + [anon_sym_DASH] = ACTIONS(5491), + [anon_sym_LBRACE] = ACTIONS(5493), + [anon_sym_DOT_DOT] = ACTIONS(5495), + [anon_sym_not] = ACTIONS(5497), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5499), + [anon_sym_DOT_DOT_LT] = ACTIONS(5499), + [anon_sym_null] = ACTIONS(5501), + [anon_sym_true] = ACTIONS(5503), + [anon_sym_false] = ACTIONS(5503), + [aux_sym__val_number_decimal_token1] = ACTIONS(5505), + [aux_sym__val_number_decimal_token2] = ACTIONS(5507), + [anon_sym_DOT2] = ACTIONS(5509), + [aux_sym__val_number_decimal_token3] = ACTIONS(5511), + [aux_sym__val_number_token1] = ACTIONS(5513), + [aux_sym__val_number_token2] = ACTIONS(5513), + [aux_sym__val_number_token3] = ACTIONS(5513), + [aux_sym__val_number_token4] = ACTIONS(5515), + [aux_sym__val_number_token5] = ACTIONS(5515), + [aux_sym__val_number_token6] = ACTIONS(5515), + [anon_sym_0b] = ACTIONS(5517), + [anon_sym_0o] = ACTIONS(5519), + [anon_sym_0x] = ACTIONS(5519), + [sym_val_date] = ACTIONS(5521), + [anon_sym_DQUOTE] = ACTIONS(5523), + [sym__str_single_quotes] = ACTIONS(5525), + [sym__str_back_ticks] = ACTIONS(5525), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5527), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5529), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5531), + [anon_sym_POUND] = ACTIONS(3), }, - [1667] = { - [sym_path] = STATE(2417), - [sym_comment] = STATE(1667), - [aux_sym_cell_path_repeat1] = STATE(1672), - [ts_builtin_sym_end] = ACTIONS(1008), - [anon_sym_export] = ACTIONS(1006), - [anon_sym_alias] = ACTIONS(1006), - [anon_sym_let] = ACTIONS(1006), - [anon_sym_let_DASHenv] = ACTIONS(1006), - [anon_sym_mut] = ACTIONS(1006), - [anon_sym_const] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1006), - [sym_cmd_identifier] = ACTIONS(1006), - [anon_sym_LF] = ACTIONS(1008), - [anon_sym_def] = ACTIONS(1006), - [anon_sym_export_DASHenv] = ACTIONS(1006), - [anon_sym_extern] = ACTIONS(1006), - [anon_sym_module] = ACTIONS(1006), - [anon_sym_use] = ACTIONS(1006), - [anon_sym_LBRACK] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_error] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_break] = ACTIONS(1006), - [anon_sym_continue] = ACTIONS(1006), - [anon_sym_for] = ACTIONS(1006), - [anon_sym_loop] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(1006), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_match] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_try] = ACTIONS(1006), - [anon_sym_return] = ACTIONS(1006), - [anon_sym_source] = ACTIONS(1006), - [anon_sym_source_DASHenv] = ACTIONS(1006), - [anon_sym_register] = ACTIONS(1006), - [anon_sym_hide] = ACTIONS(1006), - [anon_sym_hide_DASHenv] = ACTIONS(1006), - [anon_sym_overlay] = ACTIONS(1006), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_where] = ACTIONS(1006), - [anon_sym_not] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(5051), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT] = ACTIONS(1006), - [anon_sym_null] = ACTIONS(1006), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1006), - [anon_sym_DOT2] = ACTIONS(1006), - [aux_sym__val_number_decimal_token3] = ACTIONS(1006), - [aux_sym__val_number_token1] = ACTIONS(1006), - [aux_sym__val_number_token2] = ACTIONS(1006), - [aux_sym__val_number_token3] = ACTIONS(1006), - [aux_sym__val_number_token4] = ACTIONS(1006), - [aux_sym__val_number_token5] = ACTIONS(1006), - [aux_sym__val_number_token6] = ACTIONS(1006), - [anon_sym_0b] = ACTIONS(1006), - [anon_sym_0o] = ACTIONS(1006), - [anon_sym_0x] = ACTIONS(1006), - [sym_val_date] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym__str_single_quotes] = ACTIONS(1006), - [sym__str_back_ticks] = ACTIONS(1006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1006), - [anon_sym_CARET] = ACTIONS(1006), - [anon_sym_POUND] = ACTIONS(113), + [1866] = { + [sym_expr_unary] = STATE(609), + [sym__expr_unary_minus] = STATE(600), + [sym_expr_binary] = STATE(609), + [sym__expr_binary_expression] = STATE(616), + [sym_expr_parenthesized] = STATE(609), + [sym__val_range] = STATE(10225), + [sym__value] = STATE(609), + [sym_val_nothing] = STATE(643), + [sym_val_bool] = STATE(587), + [sym_val_variable] = STATE(643), + [sym__var] = STATE(544), + [sym_val_number] = STATE(643), + [sym__val_number_decimal] = STATE(489), + [sym__val_number] = STATE(644), + [sym_val_duration] = STATE(643), + [sym_val_filesize] = STATE(643), + [sym_val_binary] = STATE(643), + [sym_val_string] = STATE(643), + [sym__str_double_quotes] = STATE(661), + [sym_val_interpolated] = STATE(643), + [sym__inter_single_quotes] = STATE(662), + [sym__inter_double_quotes] = STATE(663), + [sym_val_list] = STATE(643), + [sym_val_record] = STATE(643), + [sym_val_table] = STATE(643), + [sym_val_closure] = STATE(643), + [sym_unquoted] = STATE(635), + [sym__unquoted_anonymous_prefix] = STATE(10442), + [sym_comment] = STATE(1866), + [anon_sym_LBRACK] = ACTIONS(5485), + [anon_sym_LPAREN] = ACTIONS(5487), + [anon_sym_DOLLAR] = ACTIONS(5489), + [anon_sym_DASH] = ACTIONS(5491), + [anon_sym_LBRACE] = ACTIONS(5493), + [anon_sym_DOT_DOT] = ACTIONS(5495), + [anon_sym_not] = ACTIONS(5497), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5499), + [anon_sym_DOT_DOT_LT] = ACTIONS(5499), + [anon_sym_null] = ACTIONS(5501), + [anon_sym_true] = ACTIONS(5503), + [anon_sym_false] = ACTIONS(5503), + [aux_sym__val_number_decimal_token1] = ACTIONS(5505), + [aux_sym__val_number_decimal_token2] = ACTIONS(5507), + [anon_sym_DOT2] = ACTIONS(5509), + [aux_sym__val_number_decimal_token3] = ACTIONS(5511), + [aux_sym__val_number_token1] = ACTIONS(5513), + [aux_sym__val_number_token2] = ACTIONS(5513), + [aux_sym__val_number_token3] = ACTIONS(5513), + [aux_sym__val_number_token4] = ACTIONS(5515), + [aux_sym__val_number_token5] = ACTIONS(5515), + [aux_sym__val_number_token6] = ACTIONS(5515), + [anon_sym_0b] = ACTIONS(5517), + [anon_sym_0o] = ACTIONS(5519), + [anon_sym_0x] = ACTIONS(5519), + [sym_val_date] = ACTIONS(5521), + [anon_sym_DQUOTE] = ACTIONS(5523), + [sym__str_single_quotes] = ACTIONS(5525), + [sym__str_back_ticks] = ACTIONS(5525), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5527), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5529), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5531), + [anon_sym_POUND] = ACTIONS(3), }, - [1668] = { - [sym_comment] = STATE(1668), - [ts_builtin_sym_end] = ACTIONS(1072), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_alias] = ACTIONS(1070), - [anon_sym_let] = ACTIONS(1070), - [anon_sym_let_DASHenv] = ACTIONS(1070), - [anon_sym_mut] = ACTIONS(1070), - [anon_sym_const] = ACTIONS(1070), - [anon_sym_SEMI] = ACTIONS(1070), - [sym_cmd_identifier] = ACTIONS(1070), - [anon_sym_LF] = ACTIONS(1072), - [anon_sym_def] = ACTIONS(1070), - [anon_sym_export_DASHenv] = ACTIONS(1070), - [anon_sym_extern] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_use] = ACTIONS(1070), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_error] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_loop] = ACTIONS(1070), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_do] = ACTIONS(1070), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_match] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_try] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_source] = ACTIONS(1070), - [anon_sym_source_DASHenv] = ACTIONS(1070), - [anon_sym_register] = ACTIONS(1070), - [anon_sym_hide] = ACTIONS(1070), - [anon_sym_hide_DASHenv] = ACTIONS(1070), - [anon_sym_overlay] = ACTIONS(1070), - [anon_sym_as] = ACTIONS(1070), - [anon_sym_where] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(5055), - [anon_sym_not] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_null] = ACTIONS(1070), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1070), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), - [anon_sym_CARET] = ACTIONS(1070), - [anon_sym_POUND] = ACTIONS(113), + [1867] = { + [sym_expr_unary] = STATE(609), + [sym__expr_unary_minus] = STATE(600), + [sym_expr_binary] = STATE(609), + [sym__expr_binary_expression] = STATE(618), + [sym_expr_parenthesized] = STATE(609), + [sym__val_range] = STATE(10225), + [sym__value] = STATE(609), + [sym_val_nothing] = STATE(643), + [sym_val_bool] = STATE(587), + [sym_val_variable] = STATE(643), + [sym__var] = STATE(544), + [sym_val_number] = STATE(643), + [sym__val_number_decimal] = STATE(489), + [sym__val_number] = STATE(644), + [sym_val_duration] = STATE(643), + [sym_val_filesize] = STATE(643), + [sym_val_binary] = STATE(643), + [sym_val_string] = STATE(643), + [sym__str_double_quotes] = STATE(661), + [sym_val_interpolated] = STATE(643), + [sym__inter_single_quotes] = STATE(662), + [sym__inter_double_quotes] = STATE(663), + [sym_val_list] = STATE(643), + [sym_val_record] = STATE(643), + [sym_val_table] = STATE(643), + [sym_val_closure] = STATE(643), + [sym_unquoted] = STATE(638), + [sym__unquoted_anonymous_prefix] = STATE(10442), + [sym_comment] = STATE(1867), + [anon_sym_LBRACK] = ACTIONS(5485), + [anon_sym_LPAREN] = ACTIONS(5487), + [anon_sym_DOLLAR] = ACTIONS(5489), + [anon_sym_DASH] = ACTIONS(5491), + [anon_sym_LBRACE] = ACTIONS(5493), + [anon_sym_DOT_DOT] = ACTIONS(5495), + [anon_sym_not] = ACTIONS(5497), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5499), + [anon_sym_DOT_DOT_LT] = ACTIONS(5499), + [anon_sym_null] = ACTIONS(5501), + [anon_sym_true] = ACTIONS(5503), + [anon_sym_false] = ACTIONS(5503), + [aux_sym__val_number_decimal_token1] = ACTIONS(5505), + [aux_sym__val_number_decimal_token2] = ACTIONS(5507), + [anon_sym_DOT2] = ACTIONS(5509), + [aux_sym__val_number_decimal_token3] = ACTIONS(5511), + [aux_sym__val_number_token1] = ACTIONS(5513), + [aux_sym__val_number_token2] = ACTIONS(5513), + [aux_sym__val_number_token3] = ACTIONS(5513), + [aux_sym__val_number_token4] = ACTIONS(5515), + [aux_sym__val_number_token5] = ACTIONS(5515), + [aux_sym__val_number_token6] = ACTIONS(5515), + [anon_sym_0b] = ACTIONS(5517), + [anon_sym_0o] = ACTIONS(5519), + [anon_sym_0x] = ACTIONS(5519), + [sym_val_date] = ACTIONS(5521), + [anon_sym_DQUOTE] = ACTIONS(5523), + [sym__str_single_quotes] = ACTIONS(5525), + [sym__str_back_ticks] = ACTIONS(5525), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5527), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5529), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5531), + [anon_sym_POUND] = ACTIONS(3), }, - [1669] = { - [sym_cell_path] = STATE(2732), - [sym_path] = STATE(1679), - [sym_comment] = STATE(1669), - [ts_builtin_sym_end] = ACTIONS(997), - [anon_sym_SEMI] = ACTIONS(995), - [anon_sym_LF] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_PIPE] = ACTIONS(995), - [anon_sym_DOLLAR] = ACTIONS(995), - [anon_sym_GT] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_in] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_DOT_DOT] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_STAR_STAR] = ACTIONS(995), - [anon_sym_PLUS_PLUS] = ACTIONS(995), - [anon_sym_SLASH] = ACTIONS(995), - [anon_sym_mod] = ACTIONS(995), - [anon_sym_SLASH_SLASH] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_bit_DASHshl] = ACTIONS(995), - [anon_sym_bit_DASHshr] = ACTIONS(995), - [anon_sym_EQ_EQ] = ACTIONS(995), - [anon_sym_BANG_EQ] = ACTIONS(995), - [anon_sym_LT2] = ACTIONS(995), - [anon_sym_LT_EQ] = ACTIONS(995), - [anon_sym_GT_EQ] = ACTIONS(995), - [anon_sym_not_DASHin] = ACTIONS(995), - [anon_sym_starts_DASHwith] = ACTIONS(995), - [anon_sym_ends_DASHwith] = ACTIONS(995), - [anon_sym_EQ_TILDE] = ACTIONS(995), - [anon_sym_BANG_TILDE] = ACTIONS(995), - [anon_sym_bit_DASHand] = ACTIONS(995), - [anon_sym_bit_DASHxor] = ACTIONS(995), - [anon_sym_bit_DASHor] = ACTIONS(995), - [anon_sym_and] = ACTIONS(995), - [anon_sym_xor] = ACTIONS(995), - [anon_sym_or] = ACTIONS(995), - [anon_sym_not] = ACTIONS(995), - [anon_sym_DOT_DOT2] = ACTIONS(995), - [anon_sym_DOT] = ACTIONS(5025), - [anon_sym_DOT_DOT_EQ] = ACTIONS(995), - [anon_sym_DOT_DOT_LT] = ACTIONS(995), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(997), - [anon_sym_DOT_DOT_LT2] = ACTIONS(997), - [anon_sym_null] = ACTIONS(995), - [anon_sym_true] = ACTIONS(995), - [anon_sym_false] = ACTIONS(995), - [aux_sym__val_number_decimal_token1] = ACTIONS(995), - [aux_sym__val_number_decimal_token2] = ACTIONS(995), - [anon_sym_DOT2] = ACTIONS(995), - [aux_sym__val_number_decimal_token3] = ACTIONS(995), - [aux_sym__val_number_token1] = ACTIONS(995), - [aux_sym__val_number_token2] = ACTIONS(995), - [aux_sym__val_number_token3] = ACTIONS(995), - [aux_sym__val_number_token4] = ACTIONS(995), - [aux_sym__val_number_token5] = ACTIONS(995), - [aux_sym__val_number_token6] = ACTIONS(995), - [anon_sym_0b] = ACTIONS(995), - [anon_sym_0o] = ACTIONS(995), - [anon_sym_0x] = ACTIONS(995), - [sym_val_date] = ACTIONS(995), - [anon_sym_DQUOTE] = ACTIONS(995), - [sym__str_single_quotes] = ACTIONS(995), - [sym__str_back_ticks] = ACTIONS(995), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(995), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(995), - [anon_sym_POUND] = ACTIONS(113), + [1868] = { + [sym_expr_unary] = STATE(609), + [sym__expr_unary_minus] = STATE(600), + [sym_expr_binary] = STATE(609), + [sym__expr_binary_expression] = STATE(624), + [sym_expr_parenthesized] = STATE(609), + [sym__val_range] = STATE(10225), + [sym__value] = STATE(609), + [sym_val_nothing] = STATE(643), + [sym_val_bool] = STATE(587), + [sym_val_variable] = STATE(643), + [sym__var] = STATE(544), + [sym_val_number] = STATE(643), + [sym__val_number_decimal] = STATE(489), + [sym__val_number] = STATE(644), + [sym_val_duration] = STATE(643), + [sym_val_filesize] = STATE(643), + [sym_val_binary] = STATE(643), + [sym_val_string] = STATE(643), + [sym__str_double_quotes] = STATE(661), + [sym_val_interpolated] = STATE(643), + [sym__inter_single_quotes] = STATE(662), + [sym__inter_double_quotes] = STATE(663), + [sym_val_list] = STATE(643), + [sym_val_record] = STATE(643), + [sym_val_table] = STATE(643), + [sym_val_closure] = STATE(643), + [sym_unquoted] = STATE(648), + [sym__unquoted_anonymous_prefix] = STATE(10442), + [sym_comment] = STATE(1868), + [anon_sym_LBRACK] = ACTIONS(5485), + [anon_sym_LPAREN] = ACTIONS(5487), + [anon_sym_DOLLAR] = ACTIONS(5489), + [anon_sym_DASH] = ACTIONS(5491), + [anon_sym_LBRACE] = ACTIONS(5493), + [anon_sym_DOT_DOT] = ACTIONS(5495), + [anon_sym_not] = ACTIONS(5497), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5499), + [anon_sym_DOT_DOT_LT] = ACTIONS(5499), + [anon_sym_null] = ACTIONS(5501), + [anon_sym_true] = ACTIONS(5503), + [anon_sym_false] = ACTIONS(5503), + [aux_sym__val_number_decimal_token1] = ACTIONS(5505), + [aux_sym__val_number_decimal_token2] = ACTIONS(5507), + [anon_sym_DOT2] = ACTIONS(5509), + [aux_sym__val_number_decimal_token3] = ACTIONS(5511), + [aux_sym__val_number_token1] = ACTIONS(5513), + [aux_sym__val_number_token2] = ACTIONS(5513), + [aux_sym__val_number_token3] = ACTIONS(5513), + [aux_sym__val_number_token4] = ACTIONS(5515), + [aux_sym__val_number_token5] = ACTIONS(5515), + [aux_sym__val_number_token6] = ACTIONS(5515), + [anon_sym_0b] = ACTIONS(5517), + [anon_sym_0o] = ACTIONS(5519), + [anon_sym_0x] = ACTIONS(5519), + [sym_val_date] = ACTIONS(5521), + [anon_sym_DQUOTE] = ACTIONS(5523), + [sym__str_single_quotes] = ACTIONS(5525), + [sym__str_back_ticks] = ACTIONS(5525), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5527), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5529), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5531), + [anon_sym_POUND] = ACTIONS(3), }, - [1670] = { - [sym_comment] = STATE(1670), - [ts_builtin_sym_end] = ACTIONS(1065), - [anon_sym_export] = ACTIONS(1063), - [anon_sym_alias] = ACTIONS(1063), - [anon_sym_let] = ACTIONS(1063), - [anon_sym_let_DASHenv] = ACTIONS(1063), - [anon_sym_mut] = ACTIONS(1063), - [anon_sym_const] = ACTIONS(1063), - [anon_sym_SEMI] = ACTIONS(1063), - [sym_cmd_identifier] = ACTIONS(1063), - [anon_sym_LF] = ACTIONS(1065), - [anon_sym_def] = ACTIONS(1063), - [anon_sym_export_DASHenv] = ACTIONS(1063), - [anon_sym_extern] = ACTIONS(1063), - [anon_sym_module] = ACTIONS(1063), - [anon_sym_use] = ACTIONS(1063), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_error] = ACTIONS(1063), - [anon_sym_DASH_DASH] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_break] = ACTIONS(1063), - [anon_sym_continue] = ACTIONS(1063), - [anon_sym_for] = ACTIONS(1063), - [anon_sym_loop] = ACTIONS(1063), - [anon_sym_while] = ACTIONS(1063), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_if] = ACTIONS(1063), - [anon_sym_match] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1063), - [anon_sym_return] = ACTIONS(1063), - [anon_sym_source] = ACTIONS(1063), - [anon_sym_source_DASHenv] = ACTIONS(1063), - [anon_sym_register] = ACTIONS(1063), - [anon_sym_hide] = ACTIONS(1063), - [anon_sym_hide_DASHenv] = ACTIONS(1063), - [anon_sym_overlay] = ACTIONS(1063), - [anon_sym_as] = ACTIONS(1063), - [anon_sym_where] = ACTIONS(1063), - [anon_sym_QMARK2] = ACTIONS(1063), - [anon_sym_not] = ACTIONS(1063), - [anon_sym_DOT] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1063), - [anon_sym_DOT_DOT_LT] = ACTIONS(1063), - [anon_sym_null] = ACTIONS(1063), - [anon_sym_true] = ACTIONS(1063), - [anon_sym_false] = ACTIONS(1063), - [aux_sym__val_number_decimal_token1] = ACTIONS(1063), - [aux_sym__val_number_decimal_token2] = ACTIONS(1063), - [anon_sym_DOT2] = ACTIONS(1063), - [aux_sym__val_number_decimal_token3] = ACTIONS(1063), - [aux_sym__val_number_token1] = ACTIONS(1063), - [aux_sym__val_number_token2] = ACTIONS(1063), - [aux_sym__val_number_token3] = ACTIONS(1063), - [aux_sym__val_number_token4] = ACTIONS(1063), - [aux_sym__val_number_token5] = ACTIONS(1063), - [aux_sym__val_number_token6] = ACTIONS(1063), - [anon_sym_0b] = ACTIONS(1063), - [anon_sym_0o] = ACTIONS(1063), - [anon_sym_0x] = ACTIONS(1063), - [sym_val_date] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [sym__str_single_quotes] = ACTIONS(1063), - [sym__str_back_ticks] = ACTIONS(1063), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1063), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1063), - [anon_sym_CARET] = ACTIONS(1063), - [anon_sym_POUND] = ACTIONS(113), + [1869] = { + [sym_expr_unary] = STATE(609), + [sym__expr_unary_minus] = STATE(600), + [sym_expr_binary] = STATE(609), + [sym__expr_binary_expression] = STATE(633), + [sym_expr_parenthesized] = STATE(609), + [sym__val_range] = STATE(10225), + [sym__value] = STATE(609), + [sym_val_nothing] = STATE(643), + [sym_val_bool] = STATE(587), + [sym_val_variable] = STATE(643), + [sym__var] = STATE(544), + [sym_val_number] = STATE(643), + [sym__val_number_decimal] = STATE(489), + [sym__val_number] = STATE(644), + [sym_val_duration] = STATE(643), + [sym_val_filesize] = STATE(643), + [sym_val_binary] = STATE(643), + [sym_val_string] = STATE(643), + [sym__str_double_quotes] = STATE(661), + [sym_val_interpolated] = STATE(643), + [sym__inter_single_quotes] = STATE(662), + [sym__inter_double_quotes] = STATE(663), + [sym_val_list] = STATE(643), + [sym_val_record] = STATE(643), + [sym_val_table] = STATE(643), + [sym_val_closure] = STATE(643), + [sym_unquoted] = STATE(651), + [sym__unquoted_anonymous_prefix] = STATE(10442), + [sym_comment] = STATE(1869), + [anon_sym_LBRACK] = ACTIONS(5485), + [anon_sym_LPAREN] = ACTIONS(5487), + [anon_sym_DOLLAR] = ACTIONS(5489), + [anon_sym_DASH] = ACTIONS(5491), + [anon_sym_LBRACE] = ACTIONS(5493), + [anon_sym_DOT_DOT] = ACTIONS(5495), + [anon_sym_not] = ACTIONS(5497), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5499), + [anon_sym_DOT_DOT_LT] = ACTIONS(5499), + [anon_sym_null] = ACTIONS(5501), + [anon_sym_true] = ACTIONS(5503), + [anon_sym_false] = ACTIONS(5503), + [aux_sym__val_number_decimal_token1] = ACTIONS(5505), + [aux_sym__val_number_decimal_token2] = ACTIONS(5507), + [anon_sym_DOT2] = ACTIONS(5509), + [aux_sym__val_number_decimal_token3] = ACTIONS(5511), + [aux_sym__val_number_token1] = ACTIONS(5513), + [aux_sym__val_number_token2] = ACTIONS(5513), + [aux_sym__val_number_token3] = ACTIONS(5513), + [aux_sym__val_number_token4] = ACTIONS(5515), + [aux_sym__val_number_token5] = ACTIONS(5515), + [aux_sym__val_number_token6] = ACTIONS(5515), + [anon_sym_0b] = ACTIONS(5517), + [anon_sym_0o] = ACTIONS(5519), + [anon_sym_0x] = ACTIONS(5519), + [sym_val_date] = ACTIONS(5521), + [anon_sym_DQUOTE] = ACTIONS(5523), + [sym__str_single_quotes] = ACTIONS(5525), + [sym__str_back_ticks] = ACTIONS(5525), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5527), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5529), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5531), + [anon_sym_POUND] = ACTIONS(3), }, - [1671] = { - [sym__expr_parenthesized_immediate] = STATE(11424), - [sym_comment] = STATE(1671), - [ts_builtin_sym_end] = ACTIONS(4377), - [anon_sym_export] = ACTIONS(4375), - [anon_sym_alias] = ACTIONS(4375), - [anon_sym_let] = ACTIONS(4375), - [anon_sym_let_DASHenv] = ACTIONS(4375), - [anon_sym_mut] = ACTIONS(4375), - [anon_sym_const] = ACTIONS(4375), - [anon_sym_SEMI] = ACTIONS(4375), - [sym_cmd_identifier] = ACTIONS(4375), - [anon_sym_LF] = ACTIONS(4377), - [anon_sym_def] = ACTIONS(4375), - [anon_sym_export_DASHenv] = ACTIONS(4375), - [anon_sym_extern] = ACTIONS(4375), - [anon_sym_module] = ACTIONS(4375), - [anon_sym_use] = ACTIONS(4375), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LPAREN] = ACTIONS(4375), - [anon_sym_DOLLAR] = ACTIONS(4375), - [anon_sym_error] = ACTIONS(4375), - [anon_sym_DASH_DASH] = ACTIONS(4375), - [anon_sym_DASH] = ACTIONS(4375), - [anon_sym_break] = ACTIONS(4375), - [anon_sym_continue] = ACTIONS(4375), - [anon_sym_for] = ACTIONS(4375), - [anon_sym_loop] = ACTIONS(4375), - [anon_sym_while] = ACTIONS(4375), - [anon_sym_do] = ACTIONS(4375), - [anon_sym_if] = ACTIONS(4375), - [anon_sym_match] = ACTIONS(4375), - [anon_sym_LBRACE] = ACTIONS(4375), - [anon_sym_DOT_DOT] = ACTIONS(4375), - [anon_sym_try] = ACTIONS(4375), - [anon_sym_return] = ACTIONS(4375), - [anon_sym_source] = ACTIONS(4375), - [anon_sym_source_DASHenv] = ACTIONS(4375), - [anon_sym_register] = ACTIONS(4375), - [anon_sym_hide] = ACTIONS(4375), - [anon_sym_hide_DASHenv] = ACTIONS(4375), - [anon_sym_overlay] = ACTIONS(4375), - [anon_sym_as] = ACTIONS(4375), - [anon_sym_where] = ACTIONS(4375), - [anon_sym_not] = ACTIONS(4375), - [anon_sym_LPAREN2] = ACTIONS(2397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4375), - [anon_sym_DOT_DOT_LT] = ACTIONS(4375), - [anon_sym_null] = ACTIONS(4375), - [anon_sym_true] = ACTIONS(4375), - [anon_sym_false] = ACTIONS(4375), - [aux_sym__val_number_decimal_token1] = ACTIONS(4375), - [aux_sym__val_number_decimal_token2] = ACTIONS(4375), - [anon_sym_DOT2] = ACTIONS(4375), - [aux_sym__val_number_decimal_token3] = ACTIONS(4375), - [aux_sym__val_number_token1] = ACTIONS(4375), - [aux_sym__val_number_token2] = ACTIONS(4375), - [aux_sym__val_number_token3] = ACTIONS(4375), - [aux_sym__val_number_token4] = ACTIONS(4375), - [aux_sym__val_number_token5] = ACTIONS(4375), - [aux_sym__val_number_token6] = ACTIONS(4375), - [anon_sym_0b] = ACTIONS(4375), - [anon_sym_0o] = ACTIONS(4375), - [anon_sym_0x] = ACTIONS(4375), - [sym_val_date] = ACTIONS(4375), - [anon_sym_DQUOTE] = ACTIONS(4375), - [sym__str_single_quotes] = ACTIONS(4375), - [sym__str_back_ticks] = ACTIONS(4375), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4375), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4375), - [anon_sym_CARET] = ACTIONS(4375), - [anon_sym_POUND] = ACTIONS(113), + [1870] = { + [sym_expr_unary] = STATE(609), + [sym__expr_unary_minus] = STATE(600), + [sym_expr_binary] = STATE(609), + [sym__expr_binary_expression] = STATE(642), + [sym_expr_parenthesized] = STATE(609), + [sym__val_range] = STATE(10225), + [sym__value] = STATE(609), + [sym_val_nothing] = STATE(643), + [sym_val_bool] = STATE(587), + [sym_val_variable] = STATE(643), + [sym__var] = STATE(544), + [sym_val_number] = STATE(643), + [sym__val_number_decimal] = STATE(489), + [sym__val_number] = STATE(644), + [sym_val_duration] = STATE(643), + [sym_val_filesize] = STATE(643), + [sym_val_binary] = STATE(643), + [sym_val_string] = STATE(643), + [sym__str_double_quotes] = STATE(661), + [sym_val_interpolated] = STATE(643), + [sym__inter_single_quotes] = STATE(662), + [sym__inter_double_quotes] = STATE(663), + [sym_val_list] = STATE(643), + [sym_val_record] = STATE(643), + [sym_val_table] = STATE(643), + [sym_val_closure] = STATE(643), + [sym_unquoted] = STATE(659), + [sym__unquoted_anonymous_prefix] = STATE(10442), + [sym_comment] = STATE(1870), + [anon_sym_LBRACK] = ACTIONS(5485), + [anon_sym_LPAREN] = ACTIONS(5487), + [anon_sym_DOLLAR] = ACTIONS(5489), + [anon_sym_DASH] = ACTIONS(5491), + [anon_sym_LBRACE] = ACTIONS(5493), + [anon_sym_DOT_DOT] = ACTIONS(5495), + [anon_sym_not] = ACTIONS(5497), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5499), + [anon_sym_DOT_DOT_LT] = ACTIONS(5499), + [anon_sym_null] = ACTIONS(5501), + [anon_sym_true] = ACTIONS(5503), + [anon_sym_false] = ACTIONS(5503), + [aux_sym__val_number_decimal_token1] = ACTIONS(5505), + [aux_sym__val_number_decimal_token2] = ACTIONS(5507), + [anon_sym_DOT2] = ACTIONS(5509), + [aux_sym__val_number_decimal_token3] = ACTIONS(5511), + [aux_sym__val_number_token1] = ACTIONS(5513), + [aux_sym__val_number_token2] = ACTIONS(5513), + [aux_sym__val_number_token3] = ACTIONS(5513), + [aux_sym__val_number_token4] = ACTIONS(5515), + [aux_sym__val_number_token5] = ACTIONS(5515), + [aux_sym__val_number_token6] = ACTIONS(5515), + [anon_sym_0b] = ACTIONS(5517), + [anon_sym_0o] = ACTIONS(5519), + [anon_sym_0x] = ACTIONS(5519), + [sym_val_date] = ACTIONS(5521), + [anon_sym_DQUOTE] = ACTIONS(5523), + [sym__str_single_quotes] = ACTIONS(5525), + [sym__str_back_ticks] = ACTIONS(5525), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5527), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5529), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5531), + [anon_sym_POUND] = ACTIONS(3), }, - [1672] = { - [sym_path] = STATE(2417), - [sym_comment] = STATE(1672), - [aux_sym_cell_path_repeat1] = STATE(1672), - [ts_builtin_sym_end] = ACTIONS(1001), - [anon_sym_export] = ACTIONS(999), - [anon_sym_alias] = ACTIONS(999), - [anon_sym_let] = ACTIONS(999), - [anon_sym_let_DASHenv] = ACTIONS(999), - [anon_sym_mut] = ACTIONS(999), - [anon_sym_const] = ACTIONS(999), - [anon_sym_SEMI] = ACTIONS(999), - [sym_cmd_identifier] = ACTIONS(999), - [anon_sym_LF] = ACTIONS(1001), - [anon_sym_def] = ACTIONS(999), - [anon_sym_export_DASHenv] = ACTIONS(999), - [anon_sym_extern] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_use] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_error] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_break] = ACTIONS(999), - [anon_sym_continue] = ACTIONS(999), - [anon_sym_for] = ACTIONS(999), - [anon_sym_loop] = ACTIONS(999), - [anon_sym_while] = ACTIONS(999), - [anon_sym_do] = ACTIONS(999), - [anon_sym_if] = ACTIONS(999), - [anon_sym_match] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(999), - [anon_sym_DOT_DOT] = ACTIONS(999), - [anon_sym_try] = ACTIONS(999), - [anon_sym_return] = ACTIONS(999), - [anon_sym_source] = ACTIONS(999), - [anon_sym_source_DASHenv] = ACTIONS(999), - [anon_sym_register] = ACTIONS(999), - [anon_sym_hide] = ACTIONS(999), - [anon_sym_hide_DASHenv] = ACTIONS(999), - [anon_sym_overlay] = ACTIONS(999), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_where] = ACTIONS(999), - [anon_sym_not] = ACTIONS(999), - [anon_sym_DOT] = ACTIONS(5061), - [anon_sym_DOT_DOT_EQ] = ACTIONS(999), - [anon_sym_DOT_DOT_LT] = ACTIONS(999), - [anon_sym_null] = ACTIONS(999), - [anon_sym_true] = ACTIONS(999), - [anon_sym_false] = ACTIONS(999), - [aux_sym__val_number_decimal_token1] = ACTIONS(999), - [aux_sym__val_number_decimal_token2] = ACTIONS(999), - [anon_sym_DOT2] = ACTIONS(999), - [aux_sym__val_number_decimal_token3] = ACTIONS(999), - [aux_sym__val_number_token1] = ACTIONS(999), - [aux_sym__val_number_token2] = ACTIONS(999), - [aux_sym__val_number_token3] = ACTIONS(999), - [aux_sym__val_number_token4] = ACTIONS(999), - [aux_sym__val_number_token5] = ACTIONS(999), - [aux_sym__val_number_token6] = ACTIONS(999), - [anon_sym_0b] = ACTIONS(999), - [anon_sym_0o] = ACTIONS(999), - [anon_sym_0x] = ACTIONS(999), - [sym_val_date] = ACTIONS(999), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym__str_single_quotes] = ACTIONS(999), - [sym__str_back_ticks] = ACTIONS(999), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(999), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(999), - [anon_sym_CARET] = ACTIONS(999), - [anon_sym_POUND] = ACTIONS(113), + [1871] = { + [sym_expr_unary] = STATE(609), + [sym__expr_unary_minus] = STATE(600), + [sym_expr_binary] = STATE(609), + [sym__expr_binary_expression] = STATE(665), + [sym_expr_parenthesized] = STATE(609), + [sym__val_range] = STATE(10225), + [sym__value] = STATE(609), + [sym_val_nothing] = STATE(643), + [sym_val_bool] = STATE(587), + [sym_val_variable] = STATE(643), + [sym__var] = STATE(544), + [sym_val_number] = STATE(643), + [sym__val_number_decimal] = STATE(489), + [sym__val_number] = STATE(644), + [sym_val_duration] = STATE(643), + [sym_val_filesize] = STATE(643), + [sym_val_binary] = STATE(643), + [sym_val_string] = STATE(643), + [sym__str_double_quotes] = STATE(661), + [sym_val_interpolated] = STATE(643), + [sym__inter_single_quotes] = STATE(662), + [sym__inter_double_quotes] = STATE(663), + [sym_val_list] = STATE(643), + [sym_val_record] = STATE(643), + [sym_val_table] = STATE(643), + [sym_val_closure] = STATE(643), + [sym_unquoted] = STATE(660), + [sym__unquoted_anonymous_prefix] = STATE(10442), + [sym_comment] = STATE(1871), + [anon_sym_LBRACK] = ACTIONS(5485), + [anon_sym_LPAREN] = ACTIONS(5487), + [anon_sym_DOLLAR] = ACTIONS(5489), + [anon_sym_DASH] = ACTIONS(5491), + [anon_sym_LBRACE] = ACTIONS(5493), + [anon_sym_DOT_DOT] = ACTIONS(5495), + [anon_sym_not] = ACTIONS(5497), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5499), + [anon_sym_DOT_DOT_LT] = ACTIONS(5499), + [anon_sym_null] = ACTIONS(5501), + [anon_sym_true] = ACTIONS(5503), + [anon_sym_false] = ACTIONS(5503), + [aux_sym__val_number_decimal_token1] = ACTIONS(5505), + [aux_sym__val_number_decimal_token2] = ACTIONS(5507), + [anon_sym_DOT2] = ACTIONS(5509), + [aux_sym__val_number_decimal_token3] = ACTIONS(5511), + [aux_sym__val_number_token1] = ACTIONS(5513), + [aux_sym__val_number_token2] = ACTIONS(5513), + [aux_sym__val_number_token3] = ACTIONS(5513), + [aux_sym__val_number_token4] = ACTIONS(5515), + [aux_sym__val_number_token5] = ACTIONS(5515), + [aux_sym__val_number_token6] = ACTIONS(5515), + [anon_sym_0b] = ACTIONS(5517), + [anon_sym_0o] = ACTIONS(5519), + [anon_sym_0x] = ACTIONS(5519), + [sym_val_date] = ACTIONS(5521), + [anon_sym_DQUOTE] = ACTIONS(5523), + [sym__str_single_quotes] = ACTIONS(5525), + [sym__str_back_ticks] = ACTIONS(5525), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5527), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5529), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5531), + [anon_sym_POUND] = ACTIONS(3), }, - [1673] = { - [sym_comment] = STATE(1673), - [ts_builtin_sym_end] = ACTIONS(2439), - [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), - [anon_sym_SEMI] = ACTIONS(2437), - [sym_cmd_identifier] = ACTIONS(2437), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_not] = ACTIONS(2437), - [anon_sym_DOT_DOT2] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2439), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2439), - [aux_sym__immediate_decimal_token2] = ACTIONS(4973), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [anon_sym_DOT2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2437), - [anon_sym_0o] = ACTIONS(2437), - [anon_sym_0x] = ACTIONS(2437), - [sym_val_date] = 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_CARET] = ACTIONS(2437), - [anon_sym_POUND] = ACTIONS(113), + [1872] = { + [sym_expr_unary] = STATE(609), + [sym__expr_unary_minus] = STATE(600), + [sym_expr_binary] = STATE(609), + [sym__expr_binary_expression] = STATE(671), + [sym_expr_parenthesized] = STATE(609), + [sym__val_range] = STATE(10225), + [sym__value] = STATE(609), + [sym_val_nothing] = STATE(643), + [sym_val_bool] = STATE(587), + [sym_val_variable] = STATE(643), + [sym__var] = STATE(544), + [sym_val_number] = STATE(643), + [sym__val_number_decimal] = STATE(489), + [sym__val_number] = STATE(644), + [sym_val_duration] = STATE(643), + [sym_val_filesize] = STATE(643), + [sym_val_binary] = STATE(643), + [sym_val_string] = STATE(643), + [sym__str_double_quotes] = STATE(661), + [sym_val_interpolated] = STATE(643), + [sym__inter_single_quotes] = STATE(662), + [sym__inter_double_quotes] = STATE(663), + [sym_val_list] = STATE(643), + [sym_val_record] = STATE(643), + [sym_val_table] = STATE(643), + [sym_val_closure] = STATE(643), + [sym_unquoted] = STATE(681), + [sym__unquoted_anonymous_prefix] = STATE(10442), + [sym_comment] = STATE(1872), + [anon_sym_LBRACK] = ACTIONS(5485), + [anon_sym_LPAREN] = ACTIONS(5487), + [anon_sym_DOLLAR] = ACTIONS(5489), + [anon_sym_DASH] = ACTIONS(5491), + [anon_sym_LBRACE] = ACTIONS(5493), + [anon_sym_DOT_DOT] = ACTIONS(5495), + [anon_sym_not] = ACTIONS(5497), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5499), + [anon_sym_DOT_DOT_LT] = ACTIONS(5499), + [anon_sym_null] = ACTIONS(5501), + [anon_sym_true] = ACTIONS(5503), + [anon_sym_false] = ACTIONS(5503), + [aux_sym__val_number_decimal_token1] = ACTIONS(5505), + [aux_sym__val_number_decimal_token2] = ACTIONS(5507), + [anon_sym_DOT2] = ACTIONS(5509), + [aux_sym__val_number_decimal_token3] = ACTIONS(5511), + [aux_sym__val_number_token1] = ACTIONS(5513), + [aux_sym__val_number_token2] = ACTIONS(5513), + [aux_sym__val_number_token3] = ACTIONS(5513), + [aux_sym__val_number_token4] = ACTIONS(5515), + [aux_sym__val_number_token5] = ACTIONS(5515), + [aux_sym__val_number_token6] = ACTIONS(5515), + [anon_sym_0b] = ACTIONS(5517), + [anon_sym_0o] = ACTIONS(5519), + [anon_sym_0x] = ACTIONS(5519), + [sym_val_date] = ACTIONS(5521), + [anon_sym_DQUOTE] = ACTIONS(5523), + [sym__str_single_quotes] = ACTIONS(5525), + [sym__str_back_ticks] = ACTIONS(5525), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5527), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5529), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5531), + [anon_sym_POUND] = ACTIONS(3), }, - [1674] = { - [sym_comment] = STATE(1674), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_COMMA] = ACTIONS(1065), - [anon_sym_RBRACK] = ACTIONS(1065), - [anon_sym_LPAREN] = ACTIONS(1065), - [anon_sym_DOLLAR] = ACTIONS(1065), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(1065), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_QMARK2] = ACTIONS(1065), - [anon_sym_STAR_STAR] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_SLASH] = ACTIONS(1063), - [anon_sym_mod] = ACTIONS(1065), - [anon_sym_SLASH_SLASH] = ACTIONS(1065), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_bit_DASHshl] = ACTIONS(1065), - [anon_sym_bit_DASHshr] = ACTIONS(1065), - [anon_sym_EQ_EQ] = ACTIONS(1065), - [anon_sym_BANG_EQ] = ACTIONS(1065), - [anon_sym_LT2] = ACTIONS(1063), - [anon_sym_LT_EQ] = ACTIONS(1065), - [anon_sym_GT_EQ] = ACTIONS(1065), - [anon_sym_not_DASHin] = ACTIONS(1065), - [anon_sym_starts_DASHwith] = ACTIONS(1065), - [anon_sym_ends_DASHwith] = ACTIONS(1065), - [anon_sym_EQ_TILDE] = ACTIONS(1065), - [anon_sym_BANG_TILDE] = ACTIONS(1065), - [anon_sym_bit_DASHand] = ACTIONS(1065), - [anon_sym_bit_DASHxor] = ACTIONS(1065), - [anon_sym_bit_DASHor] = ACTIONS(1065), - [anon_sym_and] = ACTIONS(1065), - [anon_sym_xor] = ACTIONS(1065), - [anon_sym_or] = ACTIONS(1065), - [anon_sym_DOT] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1065), - [anon_sym_DOT_DOT_LT] = ACTIONS(1065), - [anon_sym_null] = ACTIONS(1065), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [aux_sym__val_number_decimal_token1] = ACTIONS(1063), - [aux_sym__val_number_decimal_token2] = ACTIONS(1065), - [anon_sym_DOT2] = ACTIONS(1063), - [aux_sym__val_number_decimal_token3] = ACTIONS(1065), - [aux_sym__val_number_token1] = ACTIONS(1065), - [aux_sym__val_number_token2] = ACTIONS(1065), - [aux_sym__val_number_token3] = ACTIONS(1065), - [aux_sym__val_number_token4] = ACTIONS(1065), - [aux_sym__val_number_token5] = ACTIONS(1065), - [aux_sym__val_number_token6] = ACTIONS(1065), - [anon_sym_0b] = ACTIONS(1063), - [anon_sym_0o] = ACTIONS(1063), - [anon_sym_0x] = ACTIONS(1063), - [sym_val_date] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(1065), - [sym__str_single_quotes] = ACTIONS(1065), - [sym__str_back_ticks] = ACTIONS(1065), - [anon_sym_err_GT] = ACTIONS(1065), - [anon_sym_out_GT] = ACTIONS(1065), - [anon_sym_e_GT] = ACTIONS(1065), - [anon_sym_o_GT] = ACTIONS(1065), - [anon_sym_err_PLUSout_GT] = ACTIONS(1065), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1065), - [anon_sym_o_PLUSe_GT] = ACTIONS(1065), - [anon_sym_e_PLUSo_GT] = ACTIONS(1065), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1063), + [1873] = { + [sym_expr_unary] = STATE(609), + [sym__expr_unary_minus] = STATE(600), + [sym_expr_binary] = STATE(609), + [sym__expr_binary_expression] = STATE(675), + [sym_expr_parenthesized] = STATE(609), + [sym__val_range] = STATE(10225), + [sym__value] = STATE(609), + [sym_val_nothing] = STATE(643), + [sym_val_bool] = STATE(587), + [sym_val_variable] = STATE(643), + [sym__var] = STATE(544), + [sym_val_number] = STATE(643), + [sym__val_number_decimal] = STATE(489), + [sym__val_number] = STATE(644), + [sym_val_duration] = STATE(643), + [sym_val_filesize] = STATE(643), + [sym_val_binary] = STATE(643), + [sym_val_string] = STATE(643), + [sym__str_double_quotes] = STATE(661), + [sym_val_interpolated] = STATE(643), + [sym__inter_single_quotes] = STATE(662), + [sym__inter_double_quotes] = STATE(663), + [sym_val_list] = STATE(643), + [sym_val_record] = STATE(643), + [sym_val_table] = STATE(643), + [sym_val_closure] = STATE(643), + [sym_unquoted] = STATE(614), + [sym__unquoted_anonymous_prefix] = STATE(10442), + [sym_comment] = STATE(1873), + [anon_sym_LBRACK] = ACTIONS(5485), + [anon_sym_LPAREN] = ACTIONS(5487), + [anon_sym_DOLLAR] = ACTIONS(5489), + [anon_sym_DASH] = ACTIONS(5491), + [anon_sym_LBRACE] = ACTIONS(5493), + [anon_sym_DOT_DOT] = ACTIONS(5495), + [anon_sym_not] = ACTIONS(5497), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5499), + [anon_sym_DOT_DOT_LT] = ACTIONS(5499), + [anon_sym_null] = ACTIONS(5501), + [anon_sym_true] = ACTIONS(5503), + [anon_sym_false] = ACTIONS(5503), + [aux_sym__val_number_decimal_token1] = ACTIONS(5505), + [aux_sym__val_number_decimal_token2] = ACTIONS(5507), + [anon_sym_DOT2] = ACTIONS(5509), + [aux_sym__val_number_decimal_token3] = ACTIONS(5511), + [aux_sym__val_number_token1] = ACTIONS(5513), + [aux_sym__val_number_token2] = ACTIONS(5513), + [aux_sym__val_number_token3] = ACTIONS(5513), + [aux_sym__val_number_token4] = ACTIONS(5515), + [aux_sym__val_number_token5] = ACTIONS(5515), + [aux_sym__val_number_token6] = ACTIONS(5515), + [anon_sym_0b] = ACTIONS(5517), + [anon_sym_0o] = ACTIONS(5519), + [anon_sym_0x] = ACTIONS(5519), + [sym_val_date] = ACTIONS(5521), + [anon_sym_DQUOTE] = ACTIONS(5523), + [sym__str_single_quotes] = ACTIONS(5525), + [sym__str_back_ticks] = ACTIONS(5525), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5527), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5529), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5531), [anon_sym_POUND] = ACTIONS(3), }, - [1675] = { - [sym_comment] = STATE(1675), - [anon_sym_export] = ACTIONS(1259), - [anon_sym_alias] = ACTIONS(1259), - [anon_sym_let] = ACTIONS(1259), - [anon_sym_let_DASHenv] = ACTIONS(1259), - [anon_sym_mut] = ACTIONS(1259), - [anon_sym_const] = ACTIONS(1259), - [anon_sym_SEMI] = ACTIONS(1259), - [sym_cmd_identifier] = ACTIONS(1259), - [anon_sym_LF] = ACTIONS(1261), - [anon_sym_def] = ACTIONS(1259), - [anon_sym_export_DASHenv] = ACTIONS(1259), - [anon_sym_extern] = ACTIONS(1259), - [anon_sym_module] = ACTIONS(1259), - [anon_sym_use] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_RPAREN] = ACTIONS(1259), - [anon_sym_DOLLAR] = ACTIONS(1259), - [anon_sym_error] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_break] = ACTIONS(1259), - [anon_sym_continue] = ACTIONS(1259), - [anon_sym_for] = ACTIONS(1259), - [anon_sym_loop] = ACTIONS(1259), - [anon_sym_while] = ACTIONS(1259), - [anon_sym_do] = ACTIONS(1259), - [anon_sym_if] = ACTIONS(1259), - [anon_sym_match] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1259), - [anon_sym_RBRACE] = ACTIONS(1259), - [anon_sym_DOT_DOT] = ACTIONS(1259), - [anon_sym_try] = ACTIONS(1259), - [anon_sym_return] = ACTIONS(1259), - [anon_sym_source] = ACTIONS(1259), - [anon_sym_source_DASHenv] = ACTIONS(1259), - [anon_sym_register] = ACTIONS(1259), - [anon_sym_hide] = ACTIONS(1259), - [anon_sym_hide_DASHenv] = ACTIONS(1259), - [anon_sym_overlay] = ACTIONS(1259), - [anon_sym_as] = ACTIONS(1259), - [anon_sym_where] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1259), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1259), - [anon_sym_DOT_DOT_LT] = ACTIONS(1259), - [anon_sym_null] = ACTIONS(1259), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [aux_sym__val_number_decimal_token1] = ACTIONS(1259), - [aux_sym__val_number_decimal_token2] = ACTIONS(1259), - [anon_sym_DOT2] = ACTIONS(1259), - [aux_sym__val_number_decimal_token3] = ACTIONS(1259), - [aux_sym__val_number_token1] = ACTIONS(1259), - [aux_sym__val_number_token2] = ACTIONS(1259), - [aux_sym__val_number_token3] = ACTIONS(1259), - [aux_sym__val_number_token4] = ACTIONS(1259), - [aux_sym__val_number_token5] = ACTIONS(1259), - [aux_sym__val_number_token6] = ACTIONS(1259), - [anon_sym_0b] = ACTIONS(1259), - [anon_sym_0o] = ACTIONS(1259), - [anon_sym_0x] = ACTIONS(1259), - [anon_sym_LBRACK2] = ACTIONS(5064), - [sym_val_date] = ACTIONS(1259), - [anon_sym_DQUOTE] = ACTIONS(1259), - [sym__str_single_quotes] = ACTIONS(1259), - [sym__str_back_ticks] = ACTIONS(1259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1259), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1259), - [anon_sym_CARET] = ACTIONS(1259), - [anon_sym_POUND] = ACTIONS(113), + [1874] = { + [sym_expr_unary] = STATE(609), + [sym__expr_unary_minus] = STATE(600), + [sym_expr_binary] = STATE(609), + [sym__expr_binary_expression] = STATE(677), + [sym_expr_parenthesized] = STATE(609), + [sym__val_range] = STATE(10225), + [sym__value] = STATE(609), + [sym_val_nothing] = STATE(643), + [sym_val_bool] = STATE(587), + [sym_val_variable] = STATE(643), + [sym__var] = STATE(544), + [sym_val_number] = STATE(643), + [sym__val_number_decimal] = STATE(489), + [sym__val_number] = STATE(644), + [sym_val_duration] = STATE(643), + [sym_val_filesize] = STATE(643), + [sym_val_binary] = STATE(643), + [sym_val_string] = STATE(643), + [sym__str_double_quotes] = STATE(661), + [sym_val_interpolated] = STATE(643), + [sym__inter_single_quotes] = STATE(662), + [sym__inter_double_quotes] = STATE(663), + [sym_val_list] = STATE(643), + [sym_val_record] = STATE(643), + [sym_val_table] = STATE(643), + [sym_val_closure] = STATE(643), + [sym_unquoted] = STATE(678), + [sym__unquoted_anonymous_prefix] = STATE(10442), + [sym_comment] = STATE(1874), + [anon_sym_LBRACK] = ACTIONS(5485), + [anon_sym_LPAREN] = ACTIONS(5487), + [anon_sym_DOLLAR] = ACTIONS(5489), + [anon_sym_DASH] = ACTIONS(5491), + [anon_sym_LBRACE] = ACTIONS(5493), + [anon_sym_DOT_DOT] = ACTIONS(5495), + [anon_sym_not] = ACTIONS(5497), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5499), + [anon_sym_DOT_DOT_LT] = ACTIONS(5499), + [anon_sym_null] = ACTIONS(5501), + [anon_sym_true] = ACTIONS(5503), + [anon_sym_false] = ACTIONS(5503), + [aux_sym__val_number_decimal_token1] = ACTIONS(5505), + [aux_sym__val_number_decimal_token2] = ACTIONS(5507), + [anon_sym_DOT2] = ACTIONS(5509), + [aux_sym__val_number_decimal_token3] = ACTIONS(5511), + [aux_sym__val_number_token1] = ACTIONS(5513), + [aux_sym__val_number_token2] = ACTIONS(5513), + [aux_sym__val_number_token3] = ACTIONS(5513), + [aux_sym__val_number_token4] = ACTIONS(5515), + [aux_sym__val_number_token5] = ACTIONS(5515), + [aux_sym__val_number_token6] = ACTIONS(5515), + [anon_sym_0b] = ACTIONS(5517), + [anon_sym_0o] = ACTIONS(5519), + [anon_sym_0x] = ACTIONS(5519), + [sym_val_date] = ACTIONS(5521), + [anon_sym_DQUOTE] = ACTIONS(5523), + [sym__str_single_quotes] = ACTIONS(5525), + [sym__str_back_ticks] = ACTIONS(5525), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5527), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5529), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5531), + [anon_sym_POUND] = ACTIONS(3), }, - [1676] = { - [sym_comment] = STATE(1676), - [anon_sym_export] = ACTIONS(2843), - [anon_sym_alias] = ACTIONS(2843), - [anon_sym_let] = ACTIONS(2843), - [anon_sym_let_DASHenv] = ACTIONS(2843), - [anon_sym_mut] = ACTIONS(2843), - [anon_sym_const] = ACTIONS(2843), - [anon_sym_SEMI] = ACTIONS(2843), - [sym_cmd_identifier] = ACTIONS(2843), - [anon_sym_LF] = ACTIONS(2845), - [anon_sym_def] = ACTIONS(2843), - [anon_sym_export_DASHenv] = ACTIONS(2843), - [anon_sym_extern] = ACTIONS(2843), - [anon_sym_module] = ACTIONS(2843), - [anon_sym_use] = ACTIONS(2843), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_LPAREN] = ACTIONS(2843), - [anon_sym_RPAREN] = ACTIONS(2843), - [anon_sym_DOLLAR] = ACTIONS(2843), - [anon_sym_error] = ACTIONS(2843), - [anon_sym_DASH] = ACTIONS(2843), - [anon_sym_break] = ACTIONS(2843), - [anon_sym_continue] = ACTIONS(2843), - [anon_sym_for] = ACTIONS(2843), - [anon_sym_loop] = ACTIONS(2843), - [anon_sym_while] = ACTIONS(2843), - [anon_sym_do] = ACTIONS(2843), - [anon_sym_if] = ACTIONS(2843), - [anon_sym_match] = ACTIONS(2843), - [anon_sym_LBRACE] = ACTIONS(2843), - [anon_sym_RBRACE] = ACTIONS(2843), - [anon_sym_DOT_DOT] = ACTIONS(2843), - [anon_sym_try] = ACTIONS(2843), - [anon_sym_return] = ACTIONS(2843), - [anon_sym_source] = ACTIONS(2843), - [anon_sym_source_DASHenv] = ACTIONS(2843), - [anon_sym_register] = ACTIONS(2843), - [anon_sym_hide] = ACTIONS(2843), - [anon_sym_hide_DASHenv] = ACTIONS(2843), - [anon_sym_overlay] = ACTIONS(2843), - [anon_sym_where] = ACTIONS(2843), - [anon_sym_not] = ACTIONS(2843), - [anon_sym_DOT_DOT2] = ACTIONS(5066), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2843), - [anon_sym_DOT_DOT_LT] = ACTIONS(2843), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(5068), - [anon_sym_DOT_DOT_LT2] = ACTIONS(5068), - [anon_sym_null] = ACTIONS(2843), - [anon_sym_true] = ACTIONS(2843), - [anon_sym_false] = ACTIONS(2843), - [aux_sym__val_number_decimal_token1] = ACTIONS(2843), - [aux_sym__val_number_decimal_token2] = ACTIONS(2843), - [anon_sym_DOT2] = ACTIONS(2843), - [aux_sym__val_number_decimal_token3] = ACTIONS(2843), - [aux_sym__val_number_token1] = ACTIONS(2843), - [aux_sym__val_number_token2] = ACTIONS(2843), - [aux_sym__val_number_token3] = ACTIONS(2843), - [aux_sym__val_number_token4] = ACTIONS(2843), - [aux_sym__val_number_token5] = ACTIONS(2843), - [aux_sym__val_number_token6] = ACTIONS(2843), - [anon_sym_0b] = ACTIONS(2843), - [anon_sym_0o] = ACTIONS(2843), - [anon_sym_0x] = ACTIONS(2843), - [sym_val_date] = ACTIONS(2843), - [anon_sym_DQUOTE] = ACTIONS(2843), - [sym__str_single_quotes] = ACTIONS(2843), - [sym__str_back_ticks] = ACTIONS(2843), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2843), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2843), - [anon_sym_CARET] = ACTIONS(2843), - [anon_sym_POUND] = ACTIONS(113), + [1875] = { + [sym_expr_unary] = STATE(609), + [sym__expr_unary_minus] = STATE(600), + [sym_expr_binary] = STATE(609), + [sym__expr_binary_expression] = STATE(680), + [sym_expr_parenthesized] = STATE(609), + [sym__val_range] = STATE(10225), + [sym__value] = STATE(609), + [sym_val_nothing] = STATE(643), + [sym_val_bool] = STATE(587), + [sym_val_variable] = STATE(643), + [sym__var] = STATE(544), + [sym_val_number] = STATE(643), + [sym__val_number_decimal] = STATE(489), + [sym__val_number] = STATE(644), + [sym_val_duration] = STATE(643), + [sym_val_filesize] = STATE(643), + [sym_val_binary] = STATE(643), + [sym_val_string] = STATE(643), + [sym__str_double_quotes] = STATE(661), + [sym_val_interpolated] = STATE(643), + [sym__inter_single_quotes] = STATE(662), + [sym__inter_double_quotes] = STATE(663), + [sym_val_list] = STATE(643), + [sym_val_record] = STATE(643), + [sym_val_table] = STATE(643), + [sym_val_closure] = STATE(643), + [sym_unquoted] = STATE(684), + [sym__unquoted_anonymous_prefix] = STATE(10442), + [sym_comment] = STATE(1875), + [anon_sym_LBRACK] = ACTIONS(5485), + [anon_sym_LPAREN] = ACTIONS(5487), + [anon_sym_DOLLAR] = ACTIONS(5489), + [anon_sym_DASH] = ACTIONS(5491), + [anon_sym_LBRACE] = ACTIONS(5493), + [anon_sym_DOT_DOT] = ACTIONS(5495), + [anon_sym_not] = ACTIONS(5497), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5499), + [anon_sym_DOT_DOT_LT] = ACTIONS(5499), + [anon_sym_null] = ACTIONS(5501), + [anon_sym_true] = ACTIONS(5503), + [anon_sym_false] = ACTIONS(5503), + [aux_sym__val_number_decimal_token1] = ACTIONS(5505), + [aux_sym__val_number_decimal_token2] = ACTIONS(5507), + [anon_sym_DOT2] = ACTIONS(5509), + [aux_sym__val_number_decimal_token3] = ACTIONS(5511), + [aux_sym__val_number_token1] = ACTIONS(5513), + [aux_sym__val_number_token2] = ACTIONS(5513), + [aux_sym__val_number_token3] = ACTIONS(5513), + [aux_sym__val_number_token4] = ACTIONS(5515), + [aux_sym__val_number_token5] = ACTIONS(5515), + [aux_sym__val_number_token6] = ACTIONS(5515), + [anon_sym_0b] = ACTIONS(5517), + [anon_sym_0o] = ACTIONS(5519), + [anon_sym_0x] = ACTIONS(5519), + [sym_val_date] = ACTIONS(5521), + [anon_sym_DQUOTE] = ACTIONS(5523), + [sym__str_single_quotes] = ACTIONS(5525), + [sym__str_back_ticks] = ACTIONS(5525), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5527), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5529), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5531), + [anon_sym_POUND] = ACTIONS(3), }, - [1677] = { - [sym_comment] = STATE(1677), - [anon_sym_export] = ACTIONS(1117), - [anon_sym_alias] = ACTIONS(1117), - [anon_sym_let] = ACTIONS(1117), - [anon_sym_let_DASHenv] = ACTIONS(1117), - [anon_sym_mut] = ACTIONS(1117), - [anon_sym_const] = ACTIONS(1117), - [anon_sym_SEMI] = ACTIONS(1117), - [sym_cmd_identifier] = ACTIONS(1117), - [anon_sym_LF] = ACTIONS(1119), - [anon_sym_def] = ACTIONS(1117), - [anon_sym_export_DASHenv] = ACTIONS(1117), - [anon_sym_extern] = ACTIONS(1117), - [anon_sym_module] = ACTIONS(1117), - [anon_sym_use] = ACTIONS(1117), - [anon_sym_LBRACK] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1117), - [anon_sym_RPAREN] = ACTIONS(1117), - [anon_sym_DOLLAR] = ACTIONS(1117), - [anon_sym_error] = ACTIONS(1117), - [anon_sym_DASH_DASH] = ACTIONS(1117), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_break] = ACTIONS(1117), - [anon_sym_continue] = ACTIONS(1117), - [anon_sym_for] = ACTIONS(1117), - [anon_sym_loop] = ACTIONS(1117), - [anon_sym_while] = ACTIONS(1117), - [anon_sym_do] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1117), - [anon_sym_LBRACE] = ACTIONS(1117), - [anon_sym_RBRACE] = ACTIONS(1117), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_try] = ACTIONS(1117), - [anon_sym_return] = ACTIONS(1117), - [anon_sym_source] = ACTIONS(1117), - [anon_sym_source_DASHenv] = ACTIONS(1117), - [anon_sym_register] = ACTIONS(1117), - [anon_sym_hide] = ACTIONS(1117), - [anon_sym_hide_DASHenv] = ACTIONS(1117), - [anon_sym_overlay] = ACTIONS(1117), - [anon_sym_as] = ACTIONS(1117), - [anon_sym_where] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1117), - [anon_sym_DOT] = ACTIONS(1117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1117), - [anon_sym_DOT_DOT_LT] = ACTIONS(1117), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_true] = ACTIONS(1117), - [anon_sym_false] = ACTIONS(1117), - [aux_sym__val_number_decimal_token1] = ACTIONS(1117), - [aux_sym__val_number_decimal_token2] = ACTIONS(1117), - [anon_sym_DOT2] = ACTIONS(1117), - [aux_sym__val_number_decimal_token3] = ACTIONS(1117), - [aux_sym__val_number_token1] = ACTIONS(1117), - [aux_sym__val_number_token2] = ACTIONS(1117), - [aux_sym__val_number_token3] = ACTIONS(1117), - [aux_sym__val_number_token4] = ACTIONS(1117), - [aux_sym__val_number_token5] = ACTIONS(1117), - [aux_sym__val_number_token6] = ACTIONS(1117), - [anon_sym_0b] = ACTIONS(1117), - [anon_sym_0o] = ACTIONS(1117), - [anon_sym_0x] = ACTIONS(1117), - [sym_val_date] = ACTIONS(1117), - [anon_sym_DQUOTE] = ACTIONS(1117), - [sym__str_single_quotes] = ACTIONS(1117), - [sym__str_back_ticks] = ACTIONS(1117), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1117), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1117), - [anon_sym_CARET] = ACTIONS(1117), - [anon_sym_POUND] = ACTIONS(113), - }, - [1678] = { - [sym_path] = STATE(2522), - [sym_comment] = STATE(1678), - [aux_sym_cell_path_repeat1] = STATE(1678), - [ts_builtin_sym_end] = ACTIONS(1001), - [anon_sym_SEMI] = ACTIONS(999), - [anon_sym_LF] = ACTIONS(1001), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_GT] = ACTIONS(999), - [anon_sym_DASH_DASH] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_in] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(999), - [anon_sym_DOT_DOT] = ACTIONS(999), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_STAR_STAR] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(999), - [anon_sym_mod] = ACTIONS(999), - [anon_sym_SLASH_SLASH] = ACTIONS(999), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_bit_DASHshl] = ACTIONS(999), - [anon_sym_bit_DASHshr] = ACTIONS(999), - [anon_sym_EQ_EQ] = ACTIONS(999), - [anon_sym_BANG_EQ] = ACTIONS(999), - [anon_sym_LT2] = ACTIONS(999), - [anon_sym_LT_EQ] = ACTIONS(999), - [anon_sym_GT_EQ] = ACTIONS(999), - [anon_sym_not_DASHin] = ACTIONS(999), - [anon_sym_starts_DASHwith] = ACTIONS(999), - [anon_sym_ends_DASHwith] = ACTIONS(999), - [anon_sym_EQ_TILDE] = ACTIONS(999), - [anon_sym_BANG_TILDE] = ACTIONS(999), - [anon_sym_bit_DASHand] = ACTIONS(999), - [anon_sym_bit_DASHxor] = ACTIONS(999), - [anon_sym_bit_DASHor] = ACTIONS(999), - [anon_sym_and] = ACTIONS(999), - [anon_sym_xor] = ACTIONS(999), - [anon_sym_or] = ACTIONS(999), - [anon_sym_not] = ACTIONS(999), - [anon_sym_DOT_DOT2] = ACTIONS(999), - [anon_sym_DOT] = ACTIONS(5070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(999), - [anon_sym_DOT_DOT_LT] = ACTIONS(999), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1001), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1001), - [anon_sym_null] = ACTIONS(999), - [anon_sym_true] = ACTIONS(999), - [anon_sym_false] = ACTIONS(999), - [aux_sym__val_number_decimal_token1] = ACTIONS(999), - [aux_sym__val_number_decimal_token2] = ACTIONS(999), - [anon_sym_DOT2] = ACTIONS(999), - [aux_sym__val_number_decimal_token3] = ACTIONS(999), - [aux_sym__val_number_token1] = ACTIONS(999), - [aux_sym__val_number_token2] = ACTIONS(999), - [aux_sym__val_number_token3] = ACTIONS(999), - [aux_sym__val_number_token4] = ACTIONS(999), - [aux_sym__val_number_token5] = ACTIONS(999), - [aux_sym__val_number_token6] = ACTIONS(999), - [anon_sym_0b] = ACTIONS(999), - [anon_sym_0o] = ACTIONS(999), - [anon_sym_0x] = ACTIONS(999), - [sym_val_date] = ACTIONS(999), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym__str_single_quotes] = ACTIONS(999), - [sym__str_back_ticks] = ACTIONS(999), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(999), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(999), - [anon_sym_POUND] = ACTIONS(113), - }, - [1679] = { - [sym_path] = STATE(2522), - [sym_comment] = STATE(1679), - [aux_sym_cell_path_repeat1] = STATE(1633), - [ts_builtin_sym_end] = ACTIONS(989), - [anon_sym_SEMI] = ACTIONS(987), - [anon_sym_LF] = ACTIONS(989), - [anon_sym_LBRACK] = ACTIONS(987), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_PIPE] = ACTIONS(987), - [anon_sym_DOLLAR] = ACTIONS(987), - [anon_sym_GT] = ACTIONS(987), - [anon_sym_DASH_DASH] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_in] = ACTIONS(987), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_DOT_DOT] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(987), - [anon_sym_STAR_STAR] = ACTIONS(987), - [anon_sym_PLUS_PLUS] = ACTIONS(987), - [anon_sym_SLASH] = ACTIONS(987), - [anon_sym_mod] = ACTIONS(987), - [anon_sym_SLASH_SLASH] = ACTIONS(987), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_bit_DASHshl] = ACTIONS(987), - [anon_sym_bit_DASHshr] = ACTIONS(987), - [anon_sym_EQ_EQ] = ACTIONS(987), - [anon_sym_BANG_EQ] = ACTIONS(987), - [anon_sym_LT2] = ACTIONS(987), - [anon_sym_LT_EQ] = ACTIONS(987), - [anon_sym_GT_EQ] = ACTIONS(987), - [anon_sym_not_DASHin] = ACTIONS(987), - [anon_sym_starts_DASHwith] = ACTIONS(987), - [anon_sym_ends_DASHwith] = ACTIONS(987), - [anon_sym_EQ_TILDE] = ACTIONS(987), - [anon_sym_BANG_TILDE] = ACTIONS(987), - [anon_sym_bit_DASHand] = ACTIONS(987), - [anon_sym_bit_DASHxor] = ACTIONS(987), - [anon_sym_bit_DASHor] = ACTIONS(987), - [anon_sym_and] = ACTIONS(987), - [anon_sym_xor] = ACTIONS(987), - [anon_sym_or] = ACTIONS(987), - [anon_sym_not] = ACTIONS(987), - [anon_sym_DOT_DOT2] = ACTIONS(987), - [anon_sym_DOT] = ACTIONS(5025), - [anon_sym_DOT_DOT_EQ] = ACTIONS(987), - [anon_sym_DOT_DOT_LT] = ACTIONS(987), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(989), - [anon_sym_DOT_DOT_LT2] = ACTIONS(989), - [anon_sym_null] = ACTIONS(987), - [anon_sym_true] = ACTIONS(987), - [anon_sym_false] = ACTIONS(987), - [aux_sym__val_number_decimal_token1] = ACTIONS(987), - [aux_sym__val_number_decimal_token2] = ACTIONS(987), - [anon_sym_DOT2] = ACTIONS(987), - [aux_sym__val_number_decimal_token3] = ACTIONS(987), - [aux_sym__val_number_token1] = ACTIONS(987), - [aux_sym__val_number_token2] = ACTIONS(987), - [aux_sym__val_number_token3] = ACTIONS(987), - [aux_sym__val_number_token4] = ACTIONS(987), - [aux_sym__val_number_token5] = ACTIONS(987), - [aux_sym__val_number_token6] = ACTIONS(987), - [anon_sym_0b] = ACTIONS(987), - [anon_sym_0o] = ACTIONS(987), - [anon_sym_0x] = ACTIONS(987), - [sym_val_date] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(987), - [sym__str_single_quotes] = ACTIONS(987), - [sym__str_back_ticks] = ACTIONS(987), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(987), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(987), - [anon_sym_POUND] = ACTIONS(113), - }, - [1680] = { - [sym_comment] = STATE(1680), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_COMMA] = ACTIONS(1109), - [anon_sym_RBRACK] = ACTIONS(1109), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_DOLLAR] = ACTIONS(1109), - [anon_sym_GT] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_in] = ACTIONS(1109), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_DOT_DOT] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_STAR_STAR] = ACTIONS(1109), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_SLASH] = ACTIONS(1109), - [anon_sym_mod] = ACTIONS(1109), - [anon_sym_SLASH_SLASH] = ACTIONS(1109), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_bit_DASHshl] = ACTIONS(1109), - [anon_sym_bit_DASHshr] = ACTIONS(1109), - [anon_sym_EQ_EQ] = ACTIONS(1109), - [anon_sym_BANG_EQ] = ACTIONS(1109), - [anon_sym_LT2] = ACTIONS(1109), - [anon_sym_LT_EQ] = ACTIONS(1109), - [anon_sym_GT_EQ] = ACTIONS(1109), - [anon_sym_not_DASHin] = ACTIONS(1109), - [anon_sym_starts_DASHwith] = ACTIONS(1109), - [anon_sym_ends_DASHwith] = ACTIONS(1109), - [anon_sym_EQ_TILDE] = ACTIONS(1109), - [anon_sym_BANG_TILDE] = ACTIONS(1109), - [anon_sym_bit_DASHand] = ACTIONS(1109), - [anon_sym_bit_DASHxor] = ACTIONS(1109), - [anon_sym_bit_DASHor] = ACTIONS(1109), - [anon_sym_and] = ACTIONS(1109), - [anon_sym_xor] = ACTIONS(1109), - [anon_sym_or] = ACTIONS(1109), - [anon_sym_DOT] = ACTIONS(1109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1109), - [anon_sym_DOT_DOT_LT] = ACTIONS(1109), - [anon_sym_null] = ACTIONS(1109), - [anon_sym_true] = ACTIONS(1109), - [anon_sym_false] = ACTIONS(1109), - [aux_sym__val_number_decimal_token1] = ACTIONS(1109), - [aux_sym__val_number_decimal_token2] = ACTIONS(1109), - [anon_sym_DOT2] = ACTIONS(1109), - [aux_sym__val_number_decimal_token3] = ACTIONS(1109), - [aux_sym__val_number_token1] = ACTIONS(1109), - [aux_sym__val_number_token2] = ACTIONS(1109), - [aux_sym__val_number_token3] = ACTIONS(1109), - [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(1109), - [anon_sym_0o] = ACTIONS(1109), - [anon_sym_0x] = ACTIONS(1109), - [sym_val_date] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(1109), - [sym__str_single_quotes] = ACTIONS(1109), - [sym__str_back_ticks] = ACTIONS(1109), - [sym__entry_separator] = ACTIONS(1111), - [anon_sym_err_GT] = ACTIONS(1109), - [anon_sym_out_GT] = ACTIONS(1109), - [anon_sym_e_GT] = ACTIONS(1109), - [anon_sym_o_GT] = ACTIONS(1109), - [anon_sym_err_PLUSout_GT] = ACTIONS(1109), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1109), - [anon_sym_o_PLUSe_GT] = ACTIONS(1109), - [anon_sym_e_PLUSo_GT] = ACTIONS(1109), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1109), - [anon_sym_POUND] = ACTIONS(113), - }, - [1681] = { - [sym_comment] = STATE(1681), - [anon_sym_export] = ACTIONS(3960), - [anon_sym_alias] = ACTIONS(3960), - [anon_sym_let] = ACTIONS(3960), - [anon_sym_let_DASHenv] = ACTIONS(3960), - [anon_sym_mut] = ACTIONS(3960), - [anon_sym_const] = ACTIONS(3960), - [anon_sym_SEMI] = ACTIONS(3960), - [sym_cmd_identifier] = ACTIONS(3960), - [anon_sym_LF] = ACTIONS(3962), - [anon_sym_def] = ACTIONS(3960), - [anon_sym_export_DASHenv] = ACTIONS(3960), - [anon_sym_extern] = ACTIONS(3960), - [anon_sym_module] = ACTIONS(3960), - [anon_sym_use] = ACTIONS(3960), - [anon_sym_LBRACK] = ACTIONS(3960), - [anon_sym_LPAREN] = ACTIONS(3960), - [anon_sym_RPAREN] = ACTIONS(3960), - [anon_sym_DOLLAR] = ACTIONS(3960), - [anon_sym_error] = ACTIONS(3960), - [anon_sym_DASH] = ACTIONS(3960), - [anon_sym_break] = ACTIONS(3960), - [anon_sym_continue] = ACTIONS(3960), - [anon_sym_for] = ACTIONS(3960), - [anon_sym_loop] = ACTIONS(3960), - [anon_sym_while] = ACTIONS(3960), - [anon_sym_do] = ACTIONS(3960), - [anon_sym_if] = ACTIONS(3960), - [anon_sym_match] = ACTIONS(3960), - [anon_sym_LBRACE] = ACTIONS(3960), - [anon_sym_RBRACE] = ACTIONS(3960), - [anon_sym_DOT_DOT] = ACTIONS(3960), - [anon_sym_try] = ACTIONS(3960), - [anon_sym_return] = ACTIONS(3960), - [anon_sym_source] = ACTIONS(3960), - [anon_sym_source_DASHenv] = ACTIONS(3960), - [anon_sym_register] = ACTIONS(3960), - [anon_sym_hide] = ACTIONS(3960), - [anon_sym_hide_DASHenv] = ACTIONS(3960), - [anon_sym_overlay] = ACTIONS(3960), - [anon_sym_where] = ACTIONS(3960), - [anon_sym_not] = ACTIONS(3960), - [anon_sym_DOT_DOT2] = ACTIONS(3960), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3960), - [anon_sym_DOT_DOT_LT] = ACTIONS(3960), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3962), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3962), - [anon_sym_null] = ACTIONS(3960), - [anon_sym_true] = ACTIONS(3960), - [anon_sym_false] = ACTIONS(3960), - [aux_sym__val_number_decimal_token1] = ACTIONS(3960), - [aux_sym__val_number_decimal_token2] = ACTIONS(3960), - [anon_sym_DOT2] = ACTIONS(3960), - [aux_sym__val_number_decimal_token3] = ACTIONS(3960), - [aux_sym__val_number_token1] = ACTIONS(3960), - [aux_sym__val_number_token2] = ACTIONS(3960), - [aux_sym__val_number_token3] = ACTIONS(3960), - [aux_sym__val_number_token4] = ACTIONS(3960), - [aux_sym__val_number_token5] = ACTIONS(3960), - [aux_sym__val_number_token6] = ACTIONS(3960), - [anon_sym_0b] = ACTIONS(3960), - [anon_sym_0o] = ACTIONS(3960), - [anon_sym_0x] = ACTIONS(3960), - [sym_val_date] = ACTIONS(3960), - [anon_sym_DQUOTE] = ACTIONS(3960), - [sym__str_single_quotes] = ACTIONS(3960), - [sym__str_back_ticks] = ACTIONS(3960), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3960), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3960), - [anon_sym_CARET] = ACTIONS(3960), - [anon_sym_POUND] = ACTIONS(113), - }, - [1682] = { - [sym_comment] = STATE(1682), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_alias] = ACTIONS(1070), - [anon_sym_let] = ACTIONS(1070), - [anon_sym_let_DASHenv] = ACTIONS(1070), - [anon_sym_mut] = ACTIONS(1070), - [anon_sym_const] = ACTIONS(1070), - [anon_sym_SEMI] = ACTIONS(1070), - [sym_cmd_identifier] = ACTIONS(1070), - [anon_sym_LF] = ACTIONS(1072), - [anon_sym_def] = ACTIONS(1070), - [anon_sym_export_DASHenv] = ACTIONS(1070), - [anon_sym_extern] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_use] = ACTIONS(1070), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_RPAREN] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_error] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_loop] = ACTIONS(1070), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_do] = ACTIONS(1070), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_match] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_RBRACE] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_try] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_source] = ACTIONS(1070), - [anon_sym_source_DASHenv] = ACTIONS(1070), - [anon_sym_register] = ACTIONS(1070), - [anon_sym_hide] = ACTIONS(1070), - [anon_sym_hide_DASHenv] = ACTIONS(1070), - [anon_sym_overlay] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_where] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(5053), - [anon_sym_not] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_null] = ACTIONS(1070), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1070), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), - [anon_sym_CARET] = ACTIONS(1070), - [anon_sym_POUND] = ACTIONS(113), + [1876] = { + [sym_expr_unary] = STATE(422), + [sym__expr_unary_minus] = STATE(420), + [sym_expr_binary] = STATE(422), + [sym__expr_binary_expression] = STATE(438), + [sym_expr_parenthesized] = STATE(422), + [sym__val_range] = STATE(10227), + [sym__value] = STATE(422), + [sym_val_nothing] = STATE(456), + [sym_val_bool] = STATE(372), + [sym_val_variable] = STATE(456), + [sym__var] = STATE(315), + [sym_val_number] = STATE(456), + [sym__val_number_decimal] = STATE(253), + [sym__val_number] = STATE(458), + [sym_val_duration] = STATE(456), + [sym_val_filesize] = STATE(456), + [sym_val_binary] = STATE(456), + [sym_val_string] = STATE(456), + [sym__str_double_quotes] = STATE(457), + [sym_val_interpolated] = STATE(456), + [sym__inter_single_quotes] = STATE(469), + [sym__inter_double_quotes] = STATE(470), + [sym_val_list] = STATE(456), + [sym_val_record] = STATE(456), + [sym_val_table] = STATE(456), + [sym_val_closure] = STATE(456), + [sym_unquoted] = STATE(423), + [sym__unquoted_anonymous_prefix] = STATE(10475), + [sym_comment] = STATE(1876), + [anon_sym_LBRACK] = ACTIONS(4430), + [anon_sym_LPAREN] = ACTIONS(5533), + [anon_sym_DOLLAR] = ACTIONS(5535), + [anon_sym_DASH] = ACTIONS(4436), + [anon_sym_LBRACE] = ACTIONS(4438), + [anon_sym_DOT_DOT] = ACTIONS(5537), + [anon_sym_not] = ACTIONS(4442), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5539), + [anon_sym_DOT_DOT_LT] = ACTIONS(5539), + [anon_sym_null] = ACTIONS(4446), + [anon_sym_true] = ACTIONS(4448), + [anon_sym_false] = ACTIONS(4448), + [aux_sym__val_number_decimal_token1] = ACTIONS(4450), + [aux_sym__val_number_decimal_token2] = ACTIONS(4452), + [anon_sym_DOT2] = ACTIONS(5541), + [aux_sym__val_number_decimal_token3] = ACTIONS(4456), + [aux_sym__val_number_token1] = ACTIONS(4458), + [aux_sym__val_number_token2] = ACTIONS(4458), + [aux_sym__val_number_token3] = ACTIONS(4458), + [aux_sym__val_number_token4] = ACTIONS(5543), + [aux_sym__val_number_token5] = ACTIONS(5543), + [aux_sym__val_number_token6] = ACTIONS(5543), + [anon_sym_0b] = ACTIONS(4462), + [anon_sym_0o] = ACTIONS(4464), + [anon_sym_0x] = ACTIONS(4464), + [sym_val_date] = ACTIONS(4466), + [anon_sym_DQUOTE] = ACTIONS(4468), + [sym__str_single_quotes] = ACTIONS(4470), + [sym__str_back_ticks] = ACTIONS(4470), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4472), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4474), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5545), + [anon_sym_POUND] = ACTIONS(3), }, - [1683] = { - [sym_comment] = STATE(1683), - [ts_builtin_sym_end] = ACTIONS(1160), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_alias] = ACTIONS(1158), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_let_DASHenv] = ACTIONS(1158), - [anon_sym_mut] = ACTIONS(1158), - [anon_sym_const] = ACTIONS(1158), - [anon_sym_SEMI] = ACTIONS(1158), - [sym_cmd_identifier] = ACTIONS(1158), - [anon_sym_LF] = ACTIONS(1160), - [anon_sym_def] = ACTIONS(1158), - [anon_sym_export_DASHenv] = ACTIONS(1158), - [anon_sym_extern] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_use] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_LPAREN] = ACTIONS(1158), - [anon_sym_DOLLAR] = ACTIONS(1158), - [anon_sym_error] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_break] = ACTIONS(1158), - [anon_sym_continue] = ACTIONS(1158), - [anon_sym_for] = ACTIONS(1158), - [anon_sym_loop] = ACTIONS(1158), - [anon_sym_while] = ACTIONS(1158), - [anon_sym_do] = ACTIONS(1158), - [anon_sym_if] = ACTIONS(1158), - [anon_sym_match] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1158), - [anon_sym_DOT_DOT] = ACTIONS(1158), - [anon_sym_try] = ACTIONS(1158), - [anon_sym_return] = ACTIONS(1158), - [anon_sym_source] = ACTIONS(1158), - [anon_sym_source_DASHenv] = ACTIONS(1158), - [anon_sym_register] = ACTIONS(1158), - [anon_sym_hide] = ACTIONS(1158), - [anon_sym_hide_DASHenv] = ACTIONS(1158), - [anon_sym_overlay] = ACTIONS(1158), - [anon_sym_as] = ACTIONS(1158), - [anon_sym_where] = ACTIONS(1158), - [anon_sym_not] = ACTIONS(1158), - [anon_sym_LPAREN2] = ACTIONS(4895), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1158), - [anon_sym_DOT_DOT_LT] = ACTIONS(1158), - [anon_sym_null] = ACTIONS(1158), - [anon_sym_true] = ACTIONS(1158), - [anon_sym_false] = ACTIONS(1158), - [aux_sym__val_number_decimal_token1] = ACTIONS(1158), - [aux_sym__val_number_decimal_token2] = ACTIONS(1158), - [anon_sym_DOT2] = ACTIONS(1158), - [aux_sym__val_number_decimal_token3] = ACTIONS(1158), - [aux_sym__val_number_token1] = ACTIONS(1158), - [aux_sym__val_number_token2] = ACTIONS(1158), - [aux_sym__val_number_token3] = ACTIONS(1158), - [aux_sym__val_number_token4] = ACTIONS(1158), - [aux_sym__val_number_token5] = ACTIONS(1158), - [aux_sym__val_number_token6] = ACTIONS(1158), - [anon_sym_0b] = ACTIONS(1158), - [anon_sym_0o] = ACTIONS(1158), - [anon_sym_0x] = ACTIONS(1158), - [sym_val_date] = ACTIONS(1158), - [anon_sym_DQUOTE] = ACTIONS(1158), - [sym__str_single_quotes] = ACTIONS(1158), - [sym__str_back_ticks] = ACTIONS(1158), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1158), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1158), - [anon_sym_CARET] = ACTIONS(1158), - [aux_sym_unquoted_token6] = ACTIONS(1284), - [anon_sym_POUND] = ACTIONS(113), + [1877] = { + [sym_expr_unary] = STATE(422), + [sym__expr_unary_minus] = STATE(420), + [sym_expr_binary] = STATE(422), + [sym__expr_binary_expression] = STATE(440), + [sym_expr_parenthesized] = STATE(422), + [sym__val_range] = STATE(10227), + [sym__value] = STATE(422), + [sym_val_nothing] = STATE(456), + [sym_val_bool] = STATE(372), + [sym_val_variable] = STATE(456), + [sym__var] = STATE(315), + [sym_val_number] = STATE(456), + [sym__val_number_decimal] = STATE(253), + [sym__val_number] = STATE(458), + [sym_val_duration] = STATE(456), + [sym_val_filesize] = STATE(456), + [sym_val_binary] = STATE(456), + [sym_val_string] = STATE(456), + [sym__str_double_quotes] = STATE(457), + [sym_val_interpolated] = STATE(456), + [sym__inter_single_quotes] = STATE(469), + [sym__inter_double_quotes] = STATE(470), + [sym_val_list] = STATE(456), + [sym_val_record] = STATE(456), + [sym_val_table] = STATE(456), + [sym_val_closure] = STATE(456), + [sym_unquoted] = STATE(424), + [sym__unquoted_anonymous_prefix] = STATE(10475), + [sym_comment] = STATE(1877), + [anon_sym_LBRACK] = ACTIONS(4430), + [anon_sym_LPAREN] = ACTIONS(5533), + [anon_sym_DOLLAR] = ACTIONS(5535), + [anon_sym_DASH] = ACTIONS(4436), + [anon_sym_LBRACE] = ACTIONS(4438), + [anon_sym_DOT_DOT] = ACTIONS(5537), + [anon_sym_not] = ACTIONS(4442), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5539), + [anon_sym_DOT_DOT_LT] = ACTIONS(5539), + [anon_sym_null] = ACTIONS(4446), + [anon_sym_true] = ACTIONS(4448), + [anon_sym_false] = ACTIONS(4448), + [aux_sym__val_number_decimal_token1] = ACTIONS(4450), + [aux_sym__val_number_decimal_token2] = ACTIONS(4452), + [anon_sym_DOT2] = ACTIONS(5541), + [aux_sym__val_number_decimal_token3] = ACTIONS(4456), + [aux_sym__val_number_token1] = ACTIONS(4458), + [aux_sym__val_number_token2] = ACTIONS(4458), + [aux_sym__val_number_token3] = ACTIONS(4458), + [aux_sym__val_number_token4] = ACTIONS(5543), + [aux_sym__val_number_token5] = ACTIONS(5543), + [aux_sym__val_number_token6] = ACTIONS(5543), + [anon_sym_0b] = ACTIONS(4462), + [anon_sym_0o] = ACTIONS(4464), + [anon_sym_0x] = ACTIONS(4464), + [sym_val_date] = ACTIONS(4466), + [anon_sym_DQUOTE] = ACTIONS(4468), + [sym__str_single_quotes] = ACTIONS(4470), + [sym__str_back_ticks] = ACTIONS(4470), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4472), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4474), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5545), + [anon_sym_POUND] = ACTIONS(3), }, - [1684] = { - [sym_comment] = STATE(1684), - [anon_sym_export] = ACTIONS(1414), - [anon_sym_alias] = ACTIONS(1414), - [anon_sym_let] = ACTIONS(1414), - [anon_sym_let_DASHenv] = ACTIONS(1414), - [anon_sym_mut] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_SEMI] = ACTIONS(1414), - [sym_cmd_identifier] = ACTIONS(1414), - [anon_sym_LF] = ACTIONS(1416), - [anon_sym_def] = ACTIONS(1414), - [anon_sym_export_DASHenv] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym_module] = ACTIONS(1414), - [anon_sym_use] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_RPAREN] = ACTIONS(1414), - [anon_sym_DOLLAR] = ACTIONS(1414), - [anon_sym_error] = ACTIONS(1414), - [anon_sym_DASH_DASH] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_loop] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1414), - [anon_sym_RBRACE] = ACTIONS(1414), - [anon_sym_DOT_DOT] = ACTIONS(1414), - [anon_sym_try] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_source] = ACTIONS(1414), - [anon_sym_source_DASHenv] = ACTIONS(1414), - [anon_sym_register] = ACTIONS(1414), - [anon_sym_hide] = ACTIONS(1414), - [anon_sym_hide_DASHenv] = ACTIONS(1414), - [anon_sym_overlay] = ACTIONS(1414), - [anon_sym_as] = ACTIONS(1414), - [anon_sym_where] = ACTIONS(1414), - [anon_sym_not] = ACTIONS(1414), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1414), - [anon_sym_DOT_DOT_LT] = ACTIONS(1414), - [anon_sym_null] = ACTIONS(1414), - [anon_sym_true] = ACTIONS(1414), - [anon_sym_false] = ACTIONS(1414), - [aux_sym__val_number_decimal_token1] = ACTIONS(1414), - [aux_sym__val_number_decimal_token2] = ACTIONS(1414), - [anon_sym_DOT2] = ACTIONS(1414), - [aux_sym__val_number_decimal_token3] = ACTIONS(1414), - [aux_sym__val_number_token1] = ACTIONS(1414), - [aux_sym__val_number_token2] = ACTIONS(1414), - [aux_sym__val_number_token3] = ACTIONS(1414), - [aux_sym__val_number_token4] = ACTIONS(1414), - [aux_sym__val_number_token5] = ACTIONS(1414), - [aux_sym__val_number_token6] = ACTIONS(1414), - [anon_sym_0b] = ACTIONS(1414), - [anon_sym_0o] = ACTIONS(1414), - [anon_sym_0x] = ACTIONS(1414), - [sym_val_date] = ACTIONS(1414), - [anon_sym_DQUOTE] = ACTIONS(1414), - [sym__str_single_quotes] = ACTIONS(1414), - [sym__str_back_ticks] = ACTIONS(1414), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1414), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1414), - [anon_sym_POUND] = ACTIONS(113), + [1878] = { + [sym_expr_unary] = STATE(422), + [sym__expr_unary_minus] = STATE(420), + [sym_expr_binary] = STATE(422), + [sym__expr_binary_expression] = STATE(441), + [sym_expr_parenthesized] = STATE(422), + [sym__val_range] = STATE(10227), + [sym__value] = STATE(422), + [sym_val_nothing] = STATE(456), + [sym_val_bool] = STATE(372), + [sym_val_variable] = STATE(456), + [sym__var] = STATE(315), + [sym_val_number] = STATE(456), + [sym__val_number_decimal] = STATE(253), + [sym__val_number] = STATE(458), + [sym_val_duration] = STATE(456), + [sym_val_filesize] = STATE(456), + [sym_val_binary] = STATE(456), + [sym_val_string] = STATE(456), + [sym__str_double_quotes] = STATE(457), + [sym_val_interpolated] = STATE(456), + [sym__inter_single_quotes] = STATE(469), + [sym__inter_double_quotes] = STATE(470), + [sym_val_list] = STATE(456), + [sym_val_record] = STATE(456), + [sym_val_table] = STATE(456), + [sym_val_closure] = STATE(456), + [sym_unquoted] = STATE(425), + [sym__unquoted_anonymous_prefix] = STATE(10475), + [sym_comment] = STATE(1878), + [anon_sym_LBRACK] = ACTIONS(4430), + [anon_sym_LPAREN] = ACTIONS(5533), + [anon_sym_DOLLAR] = ACTIONS(5535), + [anon_sym_DASH] = ACTIONS(4436), + [anon_sym_LBRACE] = ACTIONS(4438), + [anon_sym_DOT_DOT] = ACTIONS(5537), + [anon_sym_not] = ACTIONS(4442), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5539), + [anon_sym_DOT_DOT_LT] = ACTIONS(5539), + [anon_sym_null] = ACTIONS(4446), + [anon_sym_true] = ACTIONS(4448), + [anon_sym_false] = ACTIONS(4448), + [aux_sym__val_number_decimal_token1] = ACTIONS(4450), + [aux_sym__val_number_decimal_token2] = ACTIONS(4452), + [anon_sym_DOT2] = ACTIONS(5541), + [aux_sym__val_number_decimal_token3] = ACTIONS(4456), + [aux_sym__val_number_token1] = ACTIONS(4458), + [aux_sym__val_number_token2] = ACTIONS(4458), + [aux_sym__val_number_token3] = ACTIONS(4458), + [aux_sym__val_number_token4] = ACTIONS(5543), + [aux_sym__val_number_token5] = ACTIONS(5543), + [aux_sym__val_number_token6] = ACTIONS(5543), + [anon_sym_0b] = ACTIONS(4462), + [anon_sym_0o] = ACTIONS(4464), + [anon_sym_0x] = ACTIONS(4464), + [sym_val_date] = ACTIONS(4466), + [anon_sym_DQUOTE] = ACTIONS(4468), + [sym__str_single_quotes] = ACTIONS(4470), + [sym__str_back_ticks] = ACTIONS(4470), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4472), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4474), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5545), + [anon_sym_POUND] = ACTIONS(3), }, - [1685] = { - [sym_comment] = STATE(1685), - [ts_builtin_sym_end] = ACTIONS(2583), - [anon_sym_export] = ACTIONS(2581), - [anon_sym_alias] = ACTIONS(2581), - [anon_sym_let] = ACTIONS(2581), - [anon_sym_let_DASHenv] = ACTIONS(2581), - [anon_sym_mut] = ACTIONS(2581), - [anon_sym_const] = ACTIONS(2581), - [anon_sym_SEMI] = ACTIONS(2581), - [sym_cmd_identifier] = ACTIONS(2581), - [anon_sym_LF] = ACTIONS(2583), - [anon_sym_def] = ACTIONS(2581), - [anon_sym_export_DASHenv] = ACTIONS(2581), - [anon_sym_extern] = ACTIONS(2581), - [anon_sym_module] = ACTIONS(2581), - [anon_sym_use] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2581), - [anon_sym_error] = ACTIONS(2581), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_break] = ACTIONS(2581), - [anon_sym_continue] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2581), - [anon_sym_loop] = ACTIONS(2581), - [anon_sym_while] = ACTIONS(2581), - [anon_sym_do] = ACTIONS(2581), - [anon_sym_if] = ACTIONS(2581), - [anon_sym_match] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2581), - [anon_sym_DOT_DOT] = ACTIONS(2581), - [anon_sym_try] = ACTIONS(2581), - [anon_sym_return] = ACTIONS(2581), - [anon_sym_source] = ACTIONS(2581), - [anon_sym_source_DASHenv] = ACTIONS(2581), - [anon_sym_register] = ACTIONS(2581), - [anon_sym_hide] = ACTIONS(2581), - [anon_sym_hide_DASHenv] = ACTIONS(2581), - [anon_sym_overlay] = ACTIONS(2581), - [anon_sym_where] = ACTIONS(2581), - [anon_sym_not] = ACTIONS(2581), - [anon_sym_DOT_DOT2] = ACTIONS(2581), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2581), - [anon_sym_DOT_DOT_LT] = ACTIONS(2581), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2583), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2583), - [aux_sym__immediate_decimal_token2] = ACTIONS(4623), - [anon_sym_null] = ACTIONS(2581), - [anon_sym_true] = ACTIONS(2581), - [anon_sym_false] = ACTIONS(2581), - [aux_sym__val_number_decimal_token1] = ACTIONS(2581), - [aux_sym__val_number_decimal_token2] = ACTIONS(2581), - [anon_sym_DOT2] = ACTIONS(2581), - [aux_sym__val_number_decimal_token3] = ACTIONS(2581), - [aux_sym__val_number_token1] = ACTIONS(2581), - [aux_sym__val_number_token2] = ACTIONS(2581), - [aux_sym__val_number_token3] = ACTIONS(2581), - [aux_sym__val_number_token4] = ACTIONS(2581), - [aux_sym__val_number_token5] = ACTIONS(2581), - [aux_sym__val_number_token6] = ACTIONS(2581), - [anon_sym_0b] = ACTIONS(2581), - [anon_sym_0o] = ACTIONS(2581), - [anon_sym_0x] = ACTIONS(2581), - [sym_val_date] = ACTIONS(2581), - [anon_sym_DQUOTE] = ACTIONS(2581), - [sym__str_single_quotes] = ACTIONS(2581), - [sym__str_back_ticks] = ACTIONS(2581), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2581), - [anon_sym_CARET] = ACTIONS(2581), - [anon_sym_POUND] = ACTIONS(113), + [1879] = { + [sym_expr_unary] = STATE(422), + [sym__expr_unary_minus] = STATE(420), + [sym_expr_binary] = STATE(422), + [sym__expr_binary_expression] = STATE(442), + [sym_expr_parenthesized] = STATE(422), + [sym__val_range] = STATE(10227), + [sym__value] = STATE(422), + [sym_val_nothing] = STATE(456), + [sym_val_bool] = STATE(372), + [sym_val_variable] = STATE(456), + [sym__var] = STATE(315), + [sym_val_number] = STATE(456), + [sym__val_number_decimal] = STATE(253), + [sym__val_number] = STATE(458), + [sym_val_duration] = STATE(456), + [sym_val_filesize] = STATE(456), + [sym_val_binary] = STATE(456), + [sym_val_string] = STATE(456), + [sym__str_double_quotes] = STATE(457), + [sym_val_interpolated] = STATE(456), + [sym__inter_single_quotes] = STATE(469), + [sym__inter_double_quotes] = STATE(470), + [sym_val_list] = STATE(456), + [sym_val_record] = STATE(456), + [sym_val_table] = STATE(456), + [sym_val_closure] = STATE(456), + [sym_unquoted] = STATE(426), + [sym__unquoted_anonymous_prefix] = STATE(10475), + [sym_comment] = STATE(1879), + [anon_sym_LBRACK] = ACTIONS(4430), + [anon_sym_LPAREN] = ACTIONS(5533), + [anon_sym_DOLLAR] = ACTIONS(5535), + [anon_sym_DASH] = ACTIONS(4436), + [anon_sym_LBRACE] = ACTIONS(4438), + [anon_sym_DOT_DOT] = ACTIONS(5537), + [anon_sym_not] = ACTIONS(4442), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5539), + [anon_sym_DOT_DOT_LT] = ACTIONS(5539), + [anon_sym_null] = ACTIONS(4446), + [anon_sym_true] = ACTIONS(4448), + [anon_sym_false] = ACTIONS(4448), + [aux_sym__val_number_decimal_token1] = ACTIONS(4450), + [aux_sym__val_number_decimal_token2] = ACTIONS(4452), + [anon_sym_DOT2] = ACTIONS(5541), + [aux_sym__val_number_decimal_token3] = ACTIONS(4456), + [aux_sym__val_number_token1] = ACTIONS(4458), + [aux_sym__val_number_token2] = ACTIONS(4458), + [aux_sym__val_number_token3] = ACTIONS(4458), + [aux_sym__val_number_token4] = ACTIONS(5543), + [aux_sym__val_number_token5] = ACTIONS(5543), + [aux_sym__val_number_token6] = ACTIONS(5543), + [anon_sym_0b] = ACTIONS(4462), + [anon_sym_0o] = ACTIONS(4464), + [anon_sym_0x] = ACTIONS(4464), + [sym_val_date] = ACTIONS(4466), + [anon_sym_DQUOTE] = ACTIONS(4468), + [sym__str_single_quotes] = ACTIONS(4470), + [sym__str_back_ticks] = ACTIONS(4470), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4472), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4474), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5545), + [anon_sym_POUND] = ACTIONS(3), }, - [1686] = { - [sym_comment] = STATE(1686), - [ts_builtin_sym_end] = ACTIONS(1255), - [anon_sym_export] = ACTIONS(1253), - [anon_sym_alias] = ACTIONS(1253), - [anon_sym_let] = ACTIONS(1253), - [anon_sym_let_DASHenv] = ACTIONS(1253), - [anon_sym_mut] = ACTIONS(1253), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_SEMI] = ACTIONS(1253), - [sym_cmd_identifier] = ACTIONS(1253), - [anon_sym_LF] = ACTIONS(1255), - [anon_sym_def] = ACTIONS(1253), - [anon_sym_export_DASHenv] = ACTIONS(1253), - [anon_sym_extern] = ACTIONS(1253), - [anon_sym_module] = ACTIONS(1253), - [anon_sym_use] = ACTIONS(1253), - [anon_sym_LBRACK] = ACTIONS(1253), - [anon_sym_LPAREN] = ACTIONS(1253), - [anon_sym_DOLLAR] = ACTIONS(1253), - [anon_sym_error] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_break] = ACTIONS(1253), - [anon_sym_continue] = ACTIONS(1253), - [anon_sym_for] = ACTIONS(1253), - [anon_sym_loop] = ACTIONS(1253), - [anon_sym_while] = ACTIONS(1253), - [anon_sym_do] = ACTIONS(1253), - [anon_sym_if] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1253), - [anon_sym_LBRACE] = ACTIONS(1253), - [anon_sym_DOT_DOT] = ACTIONS(1253), - [anon_sym_try] = ACTIONS(1253), - [anon_sym_return] = ACTIONS(1253), - [anon_sym_source] = ACTIONS(1253), - [anon_sym_source_DASHenv] = ACTIONS(1253), - [anon_sym_register] = ACTIONS(1253), - [anon_sym_hide] = ACTIONS(1253), - [anon_sym_hide_DASHenv] = ACTIONS(1253), - [anon_sym_overlay] = ACTIONS(1253), - [anon_sym_as] = ACTIONS(1253), - [anon_sym_where] = ACTIONS(1253), - [anon_sym_not] = ACTIONS(1253), - [anon_sym_LPAREN2] = ACTIONS(4631), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1253), - [anon_sym_DOT_DOT_LT] = ACTIONS(1253), - [anon_sym_null] = ACTIONS(1253), - [anon_sym_true] = ACTIONS(1253), - [anon_sym_false] = ACTIONS(1253), - [aux_sym__val_number_decimal_token1] = ACTIONS(1253), - [aux_sym__val_number_decimal_token2] = ACTIONS(1253), - [anon_sym_DOT2] = ACTIONS(1253), - [aux_sym__val_number_decimal_token3] = ACTIONS(1253), - [aux_sym__val_number_token1] = ACTIONS(1253), - [aux_sym__val_number_token2] = ACTIONS(1253), - [aux_sym__val_number_token3] = ACTIONS(1253), - [aux_sym__val_number_token4] = ACTIONS(1253), - [aux_sym__val_number_token5] = ACTIONS(1253), - [aux_sym__val_number_token6] = ACTIONS(1253), - [anon_sym_0b] = ACTIONS(1253), - [anon_sym_0o] = ACTIONS(1253), - [anon_sym_0x] = ACTIONS(1253), - [sym_val_date] = ACTIONS(1253), - [anon_sym_DQUOTE] = ACTIONS(1253), - [sym__str_single_quotes] = ACTIONS(1253), - [sym__str_back_ticks] = ACTIONS(1253), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1253), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1253), - [anon_sym_CARET] = ACTIONS(1253), - [aux_sym_unquoted_token6] = ACTIONS(1257), - [anon_sym_POUND] = ACTIONS(113), + [1880] = { + [sym_expr_unary] = STATE(422), + [sym__expr_unary_minus] = STATE(420), + [sym_expr_binary] = STATE(422), + [sym__expr_binary_expression] = STATE(443), + [sym_expr_parenthesized] = STATE(422), + [sym__val_range] = STATE(10227), + [sym__value] = STATE(422), + [sym_val_nothing] = STATE(456), + [sym_val_bool] = STATE(372), + [sym_val_variable] = STATE(456), + [sym__var] = STATE(315), + [sym_val_number] = STATE(456), + [sym__val_number_decimal] = STATE(253), + [sym__val_number] = STATE(458), + [sym_val_duration] = STATE(456), + [sym_val_filesize] = STATE(456), + [sym_val_binary] = STATE(456), + [sym_val_string] = STATE(456), + [sym__str_double_quotes] = STATE(457), + [sym_val_interpolated] = STATE(456), + [sym__inter_single_quotes] = STATE(469), + [sym__inter_double_quotes] = STATE(470), + [sym_val_list] = STATE(456), + [sym_val_record] = STATE(456), + [sym_val_table] = STATE(456), + [sym_val_closure] = STATE(456), + [sym_unquoted] = STATE(427), + [sym__unquoted_anonymous_prefix] = STATE(10475), + [sym_comment] = STATE(1880), + [anon_sym_LBRACK] = ACTIONS(4430), + [anon_sym_LPAREN] = ACTIONS(5533), + [anon_sym_DOLLAR] = ACTIONS(5535), + [anon_sym_DASH] = ACTIONS(4436), + [anon_sym_LBRACE] = ACTIONS(4438), + [anon_sym_DOT_DOT] = ACTIONS(5537), + [anon_sym_not] = ACTIONS(4442), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5539), + [anon_sym_DOT_DOT_LT] = ACTIONS(5539), + [anon_sym_null] = ACTIONS(4446), + [anon_sym_true] = ACTIONS(4448), + [anon_sym_false] = ACTIONS(4448), + [aux_sym__val_number_decimal_token1] = ACTIONS(4450), + [aux_sym__val_number_decimal_token2] = ACTIONS(4452), + [anon_sym_DOT2] = ACTIONS(5541), + [aux_sym__val_number_decimal_token3] = ACTIONS(4456), + [aux_sym__val_number_token1] = ACTIONS(4458), + [aux_sym__val_number_token2] = ACTIONS(4458), + [aux_sym__val_number_token3] = ACTIONS(4458), + [aux_sym__val_number_token4] = ACTIONS(5543), + [aux_sym__val_number_token5] = ACTIONS(5543), + [aux_sym__val_number_token6] = ACTIONS(5543), + [anon_sym_0b] = ACTIONS(4462), + [anon_sym_0o] = ACTIONS(4464), + [anon_sym_0x] = ACTIONS(4464), + [sym_val_date] = ACTIONS(4466), + [anon_sym_DQUOTE] = ACTIONS(4468), + [sym__str_single_quotes] = ACTIONS(4470), + [sym__str_back_ticks] = ACTIONS(4470), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4472), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4474), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5545), + [anon_sym_POUND] = ACTIONS(3), }, - [1687] = { - [sym_cell_path] = STATE(2754), - [sym_path] = STATE(1448), - [sym_comment] = STATE(1687), - [anon_sym_export] = ACTIONS(1203), - [anon_sym_alias] = ACTIONS(1203), - [anon_sym_let] = ACTIONS(1203), - [anon_sym_let_DASHenv] = ACTIONS(1203), - [anon_sym_mut] = ACTIONS(1203), - [anon_sym_const] = ACTIONS(1203), - [anon_sym_SEMI] = ACTIONS(1203), - [sym_cmd_identifier] = ACTIONS(1203), - [anon_sym_LF] = ACTIONS(1205), - [anon_sym_def] = ACTIONS(1203), - [anon_sym_export_DASHenv] = ACTIONS(1203), - [anon_sym_extern] = ACTIONS(1203), - [anon_sym_module] = ACTIONS(1203), - [anon_sym_use] = ACTIONS(1203), - [anon_sym_LBRACK] = ACTIONS(1203), - [anon_sym_LPAREN] = ACTIONS(1203), - [anon_sym_RPAREN] = ACTIONS(1203), - [anon_sym_DOLLAR] = ACTIONS(1203), - [anon_sym_error] = ACTIONS(1203), - [anon_sym_DASH] = ACTIONS(1203), - [anon_sym_break] = ACTIONS(1203), - [anon_sym_continue] = ACTIONS(1203), - [anon_sym_for] = ACTIONS(1203), - [anon_sym_loop] = ACTIONS(1203), - [anon_sym_while] = ACTIONS(1203), - [anon_sym_do] = ACTIONS(1203), - [anon_sym_if] = ACTIONS(1203), - [anon_sym_match] = ACTIONS(1203), - [anon_sym_LBRACE] = ACTIONS(1203), - [anon_sym_RBRACE] = ACTIONS(1203), - [anon_sym_DOT_DOT] = ACTIONS(1203), - [anon_sym_try] = ACTIONS(1203), - [anon_sym_return] = ACTIONS(1203), - [anon_sym_source] = ACTIONS(1203), - [anon_sym_source_DASHenv] = ACTIONS(1203), - [anon_sym_register] = ACTIONS(1203), - [anon_sym_hide] = ACTIONS(1203), - [anon_sym_hide_DASHenv] = ACTIONS(1203), - [anon_sym_overlay] = ACTIONS(1203), - [anon_sym_where] = ACTIONS(1203), - [anon_sym_not] = ACTIONS(1203), - [anon_sym_DOT] = ACTIONS(4083), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1203), - [anon_sym_DOT_DOT_LT] = ACTIONS(1203), - [anon_sym_null] = ACTIONS(1203), - [anon_sym_true] = ACTIONS(1203), - [anon_sym_false] = ACTIONS(1203), - [aux_sym__val_number_decimal_token1] = ACTIONS(1203), - [aux_sym__val_number_decimal_token2] = ACTIONS(1203), - [anon_sym_DOT2] = ACTIONS(1203), - [aux_sym__val_number_decimal_token3] = ACTIONS(1203), - [aux_sym__val_number_token1] = ACTIONS(1203), - [aux_sym__val_number_token2] = ACTIONS(1203), - [aux_sym__val_number_token3] = ACTIONS(1203), - [aux_sym__val_number_token4] = ACTIONS(1203), - [aux_sym__val_number_token5] = ACTIONS(1203), - [aux_sym__val_number_token6] = ACTIONS(1203), - [anon_sym_0b] = ACTIONS(1203), - [anon_sym_0o] = ACTIONS(1203), - [anon_sym_0x] = ACTIONS(1203), - [sym_val_date] = ACTIONS(1203), - [anon_sym_DQUOTE] = ACTIONS(1203), - [sym__str_single_quotes] = ACTIONS(1203), - [sym__str_back_ticks] = ACTIONS(1203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1203), - [anon_sym_CARET] = ACTIONS(1203), - [anon_sym_POUND] = ACTIONS(113), + [1881] = { + [sym_expr_unary] = STATE(422), + [sym__expr_unary_minus] = STATE(420), + [sym_expr_binary] = STATE(422), + [sym__expr_binary_expression] = STATE(444), + [sym_expr_parenthesized] = STATE(422), + [sym__val_range] = STATE(10227), + [sym__value] = STATE(422), + [sym_val_nothing] = STATE(456), + [sym_val_bool] = STATE(372), + [sym_val_variable] = STATE(456), + [sym__var] = STATE(315), + [sym_val_number] = STATE(456), + [sym__val_number_decimal] = STATE(253), + [sym__val_number] = STATE(458), + [sym_val_duration] = STATE(456), + [sym_val_filesize] = STATE(456), + [sym_val_binary] = STATE(456), + [sym_val_string] = STATE(456), + [sym__str_double_quotes] = STATE(457), + [sym_val_interpolated] = STATE(456), + [sym__inter_single_quotes] = STATE(469), + [sym__inter_double_quotes] = STATE(470), + [sym_val_list] = STATE(456), + [sym_val_record] = STATE(456), + [sym_val_table] = STATE(456), + [sym_val_closure] = STATE(456), + [sym_unquoted] = STATE(428), + [sym__unquoted_anonymous_prefix] = STATE(10475), + [sym_comment] = STATE(1881), + [anon_sym_LBRACK] = ACTIONS(4430), + [anon_sym_LPAREN] = ACTIONS(5533), + [anon_sym_DOLLAR] = ACTIONS(5535), + [anon_sym_DASH] = ACTIONS(4436), + [anon_sym_LBRACE] = ACTIONS(4438), + [anon_sym_DOT_DOT] = ACTIONS(5537), + [anon_sym_not] = ACTIONS(4442), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5539), + [anon_sym_DOT_DOT_LT] = ACTIONS(5539), + [anon_sym_null] = ACTIONS(4446), + [anon_sym_true] = ACTIONS(4448), + [anon_sym_false] = ACTIONS(4448), + [aux_sym__val_number_decimal_token1] = ACTIONS(4450), + [aux_sym__val_number_decimal_token2] = ACTIONS(4452), + [anon_sym_DOT2] = ACTIONS(5541), + [aux_sym__val_number_decimal_token3] = ACTIONS(4456), + [aux_sym__val_number_token1] = ACTIONS(4458), + [aux_sym__val_number_token2] = ACTIONS(4458), + [aux_sym__val_number_token3] = ACTIONS(4458), + [aux_sym__val_number_token4] = ACTIONS(5543), + [aux_sym__val_number_token5] = ACTIONS(5543), + [aux_sym__val_number_token6] = ACTIONS(5543), + [anon_sym_0b] = ACTIONS(4462), + [anon_sym_0o] = ACTIONS(4464), + [anon_sym_0x] = ACTIONS(4464), + [sym_val_date] = ACTIONS(4466), + [anon_sym_DQUOTE] = ACTIONS(4468), + [sym__str_single_quotes] = ACTIONS(4470), + [sym__str_back_ticks] = ACTIONS(4470), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4472), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4474), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5545), + [anon_sym_POUND] = ACTIONS(3), }, - [1688] = { - [sym_comment] = STATE(1688), - [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), - [anon_sym_SEMI] = ACTIONS(2437), - [sym_cmd_identifier] = ACTIONS(2437), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_RPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_RBRACE] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_not] = ACTIONS(2437), - [anon_sym_DOT_DOT2] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2439), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2439), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [anon_sym_DOT2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2437), - [anon_sym_0o] = ACTIONS(2437), - [anon_sym_0x] = ACTIONS(2437), - [sym_val_date] = 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_CARET] = ACTIONS(2437), - [anon_sym_POUND] = ACTIONS(113), + [1882] = { + [sym_expr_unary] = STATE(422), + [sym__expr_unary_minus] = STATE(420), + [sym_expr_binary] = STATE(422), + [sym__expr_binary_expression] = STATE(445), + [sym_expr_parenthesized] = STATE(422), + [sym__val_range] = STATE(10227), + [sym__value] = STATE(422), + [sym_val_nothing] = STATE(456), + [sym_val_bool] = STATE(372), + [sym_val_variable] = STATE(456), + [sym__var] = STATE(315), + [sym_val_number] = STATE(456), + [sym__val_number_decimal] = STATE(253), + [sym__val_number] = STATE(458), + [sym_val_duration] = STATE(456), + [sym_val_filesize] = STATE(456), + [sym_val_binary] = STATE(456), + [sym_val_string] = STATE(456), + [sym__str_double_quotes] = STATE(457), + [sym_val_interpolated] = STATE(456), + [sym__inter_single_quotes] = STATE(469), + [sym__inter_double_quotes] = STATE(470), + [sym_val_list] = STATE(456), + [sym_val_record] = STATE(456), + [sym_val_table] = STATE(456), + [sym_val_closure] = STATE(456), + [sym_unquoted] = STATE(429), + [sym__unquoted_anonymous_prefix] = STATE(10475), + [sym_comment] = STATE(1882), + [anon_sym_LBRACK] = ACTIONS(4430), + [anon_sym_LPAREN] = ACTIONS(5533), + [anon_sym_DOLLAR] = ACTIONS(5535), + [anon_sym_DASH] = ACTIONS(4436), + [anon_sym_LBRACE] = ACTIONS(4438), + [anon_sym_DOT_DOT] = ACTIONS(5537), + [anon_sym_not] = ACTIONS(4442), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5539), + [anon_sym_DOT_DOT_LT] = ACTIONS(5539), + [anon_sym_null] = ACTIONS(4446), + [anon_sym_true] = ACTIONS(4448), + [anon_sym_false] = ACTIONS(4448), + [aux_sym__val_number_decimal_token1] = ACTIONS(4450), + [aux_sym__val_number_decimal_token2] = ACTIONS(4452), + [anon_sym_DOT2] = ACTIONS(5541), + [aux_sym__val_number_decimal_token3] = ACTIONS(4456), + [aux_sym__val_number_token1] = ACTIONS(4458), + [aux_sym__val_number_token2] = ACTIONS(4458), + [aux_sym__val_number_token3] = ACTIONS(4458), + [aux_sym__val_number_token4] = ACTIONS(5543), + [aux_sym__val_number_token5] = ACTIONS(5543), + [aux_sym__val_number_token6] = ACTIONS(5543), + [anon_sym_0b] = ACTIONS(4462), + [anon_sym_0o] = ACTIONS(4464), + [anon_sym_0x] = ACTIONS(4464), + [sym_val_date] = ACTIONS(4466), + [anon_sym_DQUOTE] = ACTIONS(4468), + [sym__str_single_quotes] = ACTIONS(4470), + [sym__str_back_ticks] = ACTIONS(4470), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4472), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4474), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5545), + [anon_sym_POUND] = ACTIONS(3), }, - [1689] = { - [sym_comment] = STATE(1689), - [anon_sym_LBRACK] = ACTIONS(1259), - [anon_sym_COMMA] = ACTIONS(1259), - [anon_sym_RBRACK] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_DOLLAR] = ACTIONS(1259), - [anon_sym_GT] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_in] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1259), - [anon_sym_DOT_DOT] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1259), - [anon_sym_STAR_STAR] = ACTIONS(1259), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_SLASH] = ACTIONS(1259), - [anon_sym_mod] = ACTIONS(1259), - [anon_sym_SLASH_SLASH] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_bit_DASHshl] = ACTIONS(1259), - [anon_sym_bit_DASHshr] = ACTIONS(1259), - [anon_sym_EQ_EQ] = ACTIONS(1259), - [anon_sym_BANG_EQ] = ACTIONS(1259), - [anon_sym_LT2] = ACTIONS(1259), - [anon_sym_LT_EQ] = ACTIONS(1259), - [anon_sym_GT_EQ] = ACTIONS(1259), - [anon_sym_not_DASHin] = ACTIONS(1259), - [anon_sym_starts_DASHwith] = ACTIONS(1259), - [anon_sym_ends_DASHwith] = ACTIONS(1259), - [anon_sym_EQ_TILDE] = ACTIONS(1259), - [anon_sym_BANG_TILDE] = ACTIONS(1259), - [anon_sym_bit_DASHand] = ACTIONS(1259), - [anon_sym_bit_DASHxor] = ACTIONS(1259), - [anon_sym_bit_DASHor] = ACTIONS(1259), - [anon_sym_and] = ACTIONS(1259), - [anon_sym_xor] = ACTIONS(1259), - [anon_sym_or] = ACTIONS(1259), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1259), - [anon_sym_DOT_DOT_LT] = ACTIONS(1259), - [anon_sym_null] = ACTIONS(1259), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [aux_sym__val_number_decimal_token1] = ACTIONS(1259), - [aux_sym__val_number_decimal_token2] = ACTIONS(1259), - [anon_sym_DOT2] = ACTIONS(1259), - [aux_sym__val_number_decimal_token3] = ACTIONS(1259), - [aux_sym__val_number_token1] = ACTIONS(1259), - [aux_sym__val_number_token2] = ACTIONS(1259), - [aux_sym__val_number_token3] = ACTIONS(1259), - [aux_sym__val_number_token4] = ACTIONS(1259), - [aux_sym__val_number_token5] = ACTIONS(1259), - [aux_sym__val_number_token6] = ACTIONS(1259), - [anon_sym_0b] = ACTIONS(1259), - [anon_sym_0o] = ACTIONS(1259), - [anon_sym_0x] = ACTIONS(1259), - [anon_sym_LBRACK2] = ACTIONS(5073), - [sym_val_date] = ACTIONS(1259), - [anon_sym_DQUOTE] = ACTIONS(1259), - [sym__str_single_quotes] = ACTIONS(1259), - [sym__str_back_ticks] = ACTIONS(1259), - [sym__entry_separator] = ACTIONS(1261), - [anon_sym_err_GT] = ACTIONS(1259), - [anon_sym_out_GT] = ACTIONS(1259), - [anon_sym_e_GT] = ACTIONS(1259), - [anon_sym_o_GT] = ACTIONS(1259), - [anon_sym_err_PLUSout_GT] = ACTIONS(1259), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1259), - [anon_sym_o_PLUSe_GT] = ACTIONS(1259), - [anon_sym_e_PLUSo_GT] = ACTIONS(1259), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1259), - [anon_sym_POUND] = ACTIONS(113), + [1883] = { + [sym_expr_unary] = STATE(422), + [sym__expr_unary_minus] = STATE(420), + [sym_expr_binary] = STATE(422), + [sym__expr_binary_expression] = STATE(446), + [sym_expr_parenthesized] = STATE(422), + [sym__val_range] = STATE(10227), + [sym__value] = STATE(422), + [sym_val_nothing] = STATE(456), + [sym_val_bool] = STATE(372), + [sym_val_variable] = STATE(456), + [sym__var] = STATE(315), + [sym_val_number] = STATE(456), + [sym__val_number_decimal] = STATE(253), + [sym__val_number] = STATE(458), + [sym_val_duration] = STATE(456), + [sym_val_filesize] = STATE(456), + [sym_val_binary] = STATE(456), + [sym_val_string] = STATE(456), + [sym__str_double_quotes] = STATE(457), + [sym_val_interpolated] = STATE(456), + [sym__inter_single_quotes] = STATE(469), + [sym__inter_double_quotes] = STATE(470), + [sym_val_list] = STATE(456), + [sym_val_record] = STATE(456), + [sym_val_table] = STATE(456), + [sym_val_closure] = STATE(456), + [sym_unquoted] = STATE(430), + [sym__unquoted_anonymous_prefix] = STATE(10475), + [sym_comment] = STATE(1883), + [anon_sym_LBRACK] = ACTIONS(4430), + [anon_sym_LPAREN] = ACTIONS(5533), + [anon_sym_DOLLAR] = ACTIONS(5535), + [anon_sym_DASH] = ACTIONS(4436), + [anon_sym_LBRACE] = ACTIONS(4438), + [anon_sym_DOT_DOT] = ACTIONS(5537), + [anon_sym_not] = ACTIONS(4442), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5539), + [anon_sym_DOT_DOT_LT] = ACTIONS(5539), + [anon_sym_null] = ACTIONS(4446), + [anon_sym_true] = ACTIONS(4448), + [anon_sym_false] = ACTIONS(4448), + [aux_sym__val_number_decimal_token1] = ACTIONS(4450), + [aux_sym__val_number_decimal_token2] = ACTIONS(4452), + [anon_sym_DOT2] = ACTIONS(5541), + [aux_sym__val_number_decimal_token3] = ACTIONS(4456), + [aux_sym__val_number_token1] = ACTIONS(4458), + [aux_sym__val_number_token2] = ACTIONS(4458), + [aux_sym__val_number_token3] = ACTIONS(4458), + [aux_sym__val_number_token4] = ACTIONS(5543), + [aux_sym__val_number_token5] = ACTIONS(5543), + [aux_sym__val_number_token6] = ACTIONS(5543), + [anon_sym_0b] = ACTIONS(4462), + [anon_sym_0o] = ACTIONS(4464), + [anon_sym_0x] = ACTIONS(4464), + [sym_val_date] = ACTIONS(4466), + [anon_sym_DQUOTE] = ACTIONS(4468), + [sym__str_single_quotes] = ACTIONS(4470), + [sym__str_back_ticks] = ACTIONS(4470), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4472), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4474), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5545), + [anon_sym_POUND] = ACTIONS(3), }, - [1690] = { - [sym_cell_path] = STATE(2687), - [sym_path] = STATE(1448), - [sym_comment] = STATE(1690), - [anon_sym_export] = ACTIONS(1010), - [anon_sym_alias] = ACTIONS(1010), - [anon_sym_let] = ACTIONS(1010), - [anon_sym_let_DASHenv] = ACTIONS(1010), - [anon_sym_mut] = ACTIONS(1010), - [anon_sym_const] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1010), - [sym_cmd_identifier] = ACTIONS(1010), - [anon_sym_LF] = ACTIONS(1012), - [anon_sym_def] = ACTIONS(1010), - [anon_sym_export_DASHenv] = ACTIONS(1010), - [anon_sym_extern] = ACTIONS(1010), - [anon_sym_module] = ACTIONS(1010), - [anon_sym_use] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(1010), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_RPAREN] = ACTIONS(1010), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_error] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1010), - [anon_sym_continue] = ACTIONS(1010), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_loop] = ACTIONS(1010), - [anon_sym_while] = ACTIONS(1010), - [anon_sym_do] = ACTIONS(1010), - [anon_sym_if] = ACTIONS(1010), - [anon_sym_match] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_RBRACE] = ACTIONS(1010), - [anon_sym_DOT_DOT] = ACTIONS(1010), - [anon_sym_try] = ACTIONS(1010), - [anon_sym_return] = ACTIONS(1010), - [anon_sym_source] = ACTIONS(1010), - [anon_sym_source_DASHenv] = ACTIONS(1010), - [anon_sym_register] = ACTIONS(1010), - [anon_sym_hide] = ACTIONS(1010), - [anon_sym_hide_DASHenv] = ACTIONS(1010), - [anon_sym_overlay] = ACTIONS(1010), - [anon_sym_where] = ACTIONS(1010), - [anon_sym_not] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(4083), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT] = ACTIONS(1010), - [anon_sym_null] = ACTIONS(1010), - [anon_sym_true] = ACTIONS(1010), - [anon_sym_false] = ACTIONS(1010), - [aux_sym__val_number_decimal_token1] = ACTIONS(1010), - [aux_sym__val_number_decimal_token2] = ACTIONS(1010), - [anon_sym_DOT2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = 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(1010), - [aux_sym__val_number_token5] = ACTIONS(1010), - [aux_sym__val_number_token6] = ACTIONS(1010), - [anon_sym_0b] = ACTIONS(1010), - [anon_sym_0o] = ACTIONS(1010), - [anon_sym_0x] = ACTIONS(1010), - [sym_val_date] = ACTIONS(1010), - [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_CARET] = ACTIONS(1010), - [anon_sym_POUND] = ACTIONS(113), + [1884] = { + [sym_expr_unary] = STATE(422), + [sym__expr_unary_minus] = STATE(420), + [sym_expr_binary] = STATE(422), + [sym__expr_binary_expression] = STATE(447), + [sym_expr_parenthesized] = STATE(422), + [sym__val_range] = STATE(10227), + [sym__value] = STATE(422), + [sym_val_nothing] = STATE(456), + [sym_val_bool] = STATE(372), + [sym_val_variable] = STATE(456), + [sym__var] = STATE(315), + [sym_val_number] = STATE(456), + [sym__val_number_decimal] = STATE(253), + [sym__val_number] = STATE(458), + [sym_val_duration] = STATE(456), + [sym_val_filesize] = STATE(456), + [sym_val_binary] = STATE(456), + [sym_val_string] = STATE(456), + [sym__str_double_quotes] = STATE(457), + [sym_val_interpolated] = STATE(456), + [sym__inter_single_quotes] = STATE(469), + [sym__inter_double_quotes] = STATE(470), + [sym_val_list] = STATE(456), + [sym_val_record] = STATE(456), + [sym_val_table] = STATE(456), + [sym_val_closure] = STATE(456), + [sym_unquoted] = STATE(431), + [sym__unquoted_anonymous_prefix] = STATE(10475), + [sym_comment] = STATE(1884), + [anon_sym_LBRACK] = ACTIONS(4430), + [anon_sym_LPAREN] = ACTIONS(5533), + [anon_sym_DOLLAR] = ACTIONS(5535), + [anon_sym_DASH] = ACTIONS(4436), + [anon_sym_LBRACE] = ACTIONS(4438), + [anon_sym_DOT_DOT] = ACTIONS(5537), + [anon_sym_not] = ACTIONS(4442), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5539), + [anon_sym_DOT_DOT_LT] = ACTIONS(5539), + [anon_sym_null] = ACTIONS(4446), + [anon_sym_true] = ACTIONS(4448), + [anon_sym_false] = ACTIONS(4448), + [aux_sym__val_number_decimal_token1] = ACTIONS(4450), + [aux_sym__val_number_decimal_token2] = ACTIONS(4452), + [anon_sym_DOT2] = ACTIONS(5541), + [aux_sym__val_number_decimal_token3] = ACTIONS(4456), + [aux_sym__val_number_token1] = ACTIONS(4458), + [aux_sym__val_number_token2] = ACTIONS(4458), + [aux_sym__val_number_token3] = ACTIONS(4458), + [aux_sym__val_number_token4] = ACTIONS(5543), + [aux_sym__val_number_token5] = ACTIONS(5543), + [aux_sym__val_number_token6] = ACTIONS(5543), + [anon_sym_0b] = ACTIONS(4462), + [anon_sym_0o] = ACTIONS(4464), + [anon_sym_0x] = ACTIONS(4464), + [sym_val_date] = ACTIONS(4466), + [anon_sym_DQUOTE] = ACTIONS(4468), + [sym__str_single_quotes] = ACTIONS(4470), + [sym__str_back_ticks] = ACTIONS(4470), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4472), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4474), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5545), + [anon_sym_POUND] = ACTIONS(3), }, - [1691] = { - [sym_comment] = STATE(1691), - [anon_sym_export] = ACTIONS(5075), - [anon_sym_alias] = ACTIONS(5075), - [anon_sym_let] = ACTIONS(5075), - [anon_sym_let_DASHenv] = ACTIONS(5075), - [anon_sym_mut] = ACTIONS(5075), - [anon_sym_const] = ACTIONS(5075), - [anon_sym_SEMI] = ACTIONS(5075), - [sym_cmd_identifier] = ACTIONS(5075), - [sym_long_flag_identifier] = ACTIONS(5077), - [anon_sym_LF] = ACTIONS(5079), - [anon_sym_def] = ACTIONS(5075), - [anon_sym_export_DASHenv] = ACTIONS(5075), - [anon_sym_extern] = ACTIONS(5075), - [anon_sym_module] = ACTIONS(5075), - [anon_sym_use] = ACTIONS(5075), - [anon_sym_LBRACK] = ACTIONS(5075), - [anon_sym_LPAREN] = ACTIONS(5075), - [anon_sym_RPAREN] = ACTIONS(5075), - [anon_sym_DOLLAR] = ACTIONS(5075), - [anon_sym_error] = ACTIONS(5075), - [anon_sym_DASH_DASH] = ACTIONS(5075), - [anon_sym_DASH] = ACTIONS(5075), - [anon_sym_break] = ACTIONS(5075), - [anon_sym_continue] = ACTIONS(5075), - [anon_sym_for] = ACTIONS(5075), - [anon_sym_loop] = ACTIONS(5075), - [anon_sym_while] = ACTIONS(5075), - [anon_sym_do] = ACTIONS(5075), - [anon_sym_if] = ACTIONS(5075), - [anon_sym_match] = ACTIONS(5075), - [anon_sym_LBRACE] = ACTIONS(5075), - [anon_sym_RBRACE] = ACTIONS(5075), - [anon_sym_DOT_DOT] = ACTIONS(5075), - [anon_sym_try] = ACTIONS(5075), - [anon_sym_return] = ACTIONS(5075), - [anon_sym_source] = ACTIONS(5075), - [anon_sym_source_DASHenv] = ACTIONS(5075), - [anon_sym_register] = ACTIONS(5075), - [anon_sym_hide] = ACTIONS(5075), - [anon_sym_hide_DASHenv] = ACTIONS(5075), - [anon_sym_overlay] = ACTIONS(5075), - [anon_sym_as] = ACTIONS(5075), - [anon_sym_where] = ACTIONS(5075), - [anon_sym_not] = ACTIONS(5075), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5075), - [anon_sym_DOT_DOT_LT] = ACTIONS(5075), - [anon_sym_null] = ACTIONS(5075), - [anon_sym_true] = ACTIONS(5075), - [anon_sym_false] = ACTIONS(5075), - [aux_sym__val_number_decimal_token1] = ACTIONS(5075), - [aux_sym__val_number_decimal_token2] = ACTIONS(5075), - [anon_sym_DOT2] = ACTIONS(5075), - [aux_sym__val_number_decimal_token3] = ACTIONS(5075), - [aux_sym__val_number_token1] = ACTIONS(5075), - [aux_sym__val_number_token2] = ACTIONS(5075), - [aux_sym__val_number_token3] = ACTIONS(5075), - [aux_sym__val_number_token4] = ACTIONS(5075), - [aux_sym__val_number_token5] = ACTIONS(5075), - [aux_sym__val_number_token6] = ACTIONS(5075), - [anon_sym_0b] = ACTIONS(5075), - [anon_sym_0o] = ACTIONS(5075), - [anon_sym_0x] = ACTIONS(5075), - [sym_val_date] = ACTIONS(5075), - [anon_sym_DQUOTE] = ACTIONS(5075), - [sym__str_single_quotes] = ACTIONS(5075), - [sym__str_back_ticks] = ACTIONS(5075), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5075), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5075), - [anon_sym_CARET] = ACTIONS(5075), - [anon_sym_POUND] = ACTIONS(113), + [1885] = { + [sym_expr_unary] = STATE(422), + [sym__expr_unary_minus] = STATE(420), + [sym_expr_binary] = STATE(422), + [sym__expr_binary_expression] = STATE(448), + [sym_expr_parenthesized] = STATE(422), + [sym__val_range] = STATE(10227), + [sym__value] = STATE(422), + [sym_val_nothing] = STATE(456), + [sym_val_bool] = STATE(372), + [sym_val_variable] = STATE(456), + [sym__var] = STATE(315), + [sym_val_number] = STATE(456), + [sym__val_number_decimal] = STATE(253), + [sym__val_number] = STATE(458), + [sym_val_duration] = STATE(456), + [sym_val_filesize] = STATE(456), + [sym_val_binary] = STATE(456), + [sym_val_string] = STATE(456), + [sym__str_double_quotes] = STATE(457), + [sym_val_interpolated] = STATE(456), + [sym__inter_single_quotes] = STATE(469), + [sym__inter_double_quotes] = STATE(470), + [sym_val_list] = STATE(456), + [sym_val_record] = STATE(456), + [sym_val_table] = STATE(456), + [sym_val_closure] = STATE(456), + [sym_unquoted] = STATE(417), + [sym__unquoted_anonymous_prefix] = STATE(10475), + [sym_comment] = STATE(1885), + [anon_sym_LBRACK] = ACTIONS(4430), + [anon_sym_LPAREN] = ACTIONS(5533), + [anon_sym_DOLLAR] = ACTIONS(5535), + [anon_sym_DASH] = ACTIONS(4436), + [anon_sym_LBRACE] = ACTIONS(4438), + [anon_sym_DOT_DOT] = ACTIONS(5537), + [anon_sym_not] = ACTIONS(4442), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5539), + [anon_sym_DOT_DOT_LT] = ACTIONS(5539), + [anon_sym_null] = ACTIONS(4446), + [anon_sym_true] = ACTIONS(4448), + [anon_sym_false] = ACTIONS(4448), + [aux_sym__val_number_decimal_token1] = ACTIONS(4450), + [aux_sym__val_number_decimal_token2] = ACTIONS(4452), + [anon_sym_DOT2] = ACTIONS(5541), + [aux_sym__val_number_decimal_token3] = ACTIONS(4456), + [aux_sym__val_number_token1] = ACTIONS(4458), + [aux_sym__val_number_token2] = ACTIONS(4458), + [aux_sym__val_number_token3] = ACTIONS(4458), + [aux_sym__val_number_token4] = ACTIONS(5543), + [aux_sym__val_number_token5] = ACTIONS(5543), + [aux_sym__val_number_token6] = ACTIONS(5543), + [anon_sym_0b] = ACTIONS(4462), + [anon_sym_0o] = ACTIONS(4464), + [anon_sym_0x] = ACTIONS(4464), + [sym_val_date] = ACTIONS(4466), + [anon_sym_DQUOTE] = ACTIONS(4468), + [sym__str_single_quotes] = ACTIONS(4470), + [sym__str_back_ticks] = ACTIONS(4470), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4472), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4474), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5545), + [anon_sym_POUND] = ACTIONS(3), }, - [1692] = { - [sym_comment] = STATE(1692), - [ts_builtin_sym_end] = ACTIONS(1275), - [anon_sym_export] = ACTIONS(1273), - [anon_sym_alias] = ACTIONS(1273), - [anon_sym_let] = ACTIONS(1273), - [anon_sym_let_DASHenv] = ACTIONS(1273), - [anon_sym_mut] = ACTIONS(1273), - [anon_sym_const] = ACTIONS(1273), - [anon_sym_SEMI] = ACTIONS(1273), - [sym_cmd_identifier] = ACTIONS(1273), - [anon_sym_LF] = ACTIONS(1275), - [anon_sym_def] = ACTIONS(1273), - [anon_sym_export_DASHenv] = ACTIONS(1273), - [anon_sym_extern] = ACTIONS(1273), - [anon_sym_module] = ACTIONS(1273), - [anon_sym_use] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1273), - [anon_sym_LPAREN] = ACTIONS(1273), - [anon_sym_DOLLAR] = ACTIONS(1273), - [anon_sym_error] = ACTIONS(1273), - [anon_sym_DASH_DASH] = ACTIONS(1273), - [anon_sym_DASH] = ACTIONS(1273), - [anon_sym_break] = ACTIONS(1273), - [anon_sym_continue] = ACTIONS(1273), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_loop] = ACTIONS(1273), - [anon_sym_while] = ACTIONS(1273), - [anon_sym_do] = ACTIONS(1273), - [anon_sym_if] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_try] = ACTIONS(1273), - [anon_sym_return] = ACTIONS(1273), - [anon_sym_source] = ACTIONS(1273), - [anon_sym_source_DASHenv] = ACTIONS(1273), - [anon_sym_register] = ACTIONS(1273), - [anon_sym_hide] = ACTIONS(1273), - [anon_sym_hide_DASHenv] = ACTIONS(1273), - [anon_sym_overlay] = ACTIONS(1273), - [anon_sym_as] = ACTIONS(1273), - [anon_sym_where] = ACTIONS(1273), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_LPAREN2] = ACTIONS(4631), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1273), - [anon_sym_DOT_DOT_LT] = ACTIONS(1273), - [anon_sym_null] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1273), - [anon_sym_false] = ACTIONS(1273), - [aux_sym__val_number_decimal_token1] = ACTIONS(1273), - [aux_sym__val_number_decimal_token2] = ACTIONS(1273), - [anon_sym_DOT2] = ACTIONS(1273), - [aux_sym__val_number_decimal_token3] = ACTIONS(1273), - [aux_sym__val_number_token1] = ACTIONS(1273), - [aux_sym__val_number_token2] = ACTIONS(1273), - [aux_sym__val_number_token3] = ACTIONS(1273), - [aux_sym__val_number_token4] = ACTIONS(1273), - [aux_sym__val_number_token5] = ACTIONS(1273), - [aux_sym__val_number_token6] = ACTIONS(1273), - [anon_sym_0b] = ACTIONS(1273), - [anon_sym_0o] = ACTIONS(1273), - [anon_sym_0x] = ACTIONS(1273), - [sym_val_date] = ACTIONS(1273), - [anon_sym_DQUOTE] = ACTIONS(1273), - [sym__str_single_quotes] = ACTIONS(1273), - [sym__str_back_ticks] = ACTIONS(1273), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1273), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1273), - [anon_sym_CARET] = ACTIONS(1273), - [aux_sym_unquoted_token6] = ACTIONS(1257), - [anon_sym_POUND] = ACTIONS(113), + [1886] = { + [sym_expr_unary] = STATE(422), + [sym__expr_unary_minus] = STATE(420), + [sym_expr_binary] = STATE(422), + [sym__expr_binary_expression] = STATE(449), + [sym_expr_parenthesized] = STATE(422), + [sym__val_range] = STATE(10227), + [sym__value] = STATE(422), + [sym_val_nothing] = STATE(456), + [sym_val_bool] = STATE(372), + [sym_val_variable] = STATE(456), + [sym__var] = STATE(315), + [sym_val_number] = STATE(456), + [sym__val_number_decimal] = STATE(253), + [sym__val_number] = STATE(458), + [sym_val_duration] = STATE(456), + [sym_val_filesize] = STATE(456), + [sym_val_binary] = STATE(456), + [sym_val_string] = STATE(456), + [sym__str_double_quotes] = STATE(457), + [sym_val_interpolated] = STATE(456), + [sym__inter_single_quotes] = STATE(469), + [sym__inter_double_quotes] = STATE(470), + [sym_val_list] = STATE(456), + [sym_val_record] = STATE(456), + [sym_val_table] = STATE(456), + [sym_val_closure] = STATE(456), + [sym_unquoted] = STATE(433), + [sym__unquoted_anonymous_prefix] = STATE(10475), + [sym_comment] = STATE(1886), + [anon_sym_LBRACK] = ACTIONS(4430), + [anon_sym_LPAREN] = ACTIONS(5533), + [anon_sym_DOLLAR] = ACTIONS(5535), + [anon_sym_DASH] = ACTIONS(4436), + [anon_sym_LBRACE] = ACTIONS(4438), + [anon_sym_DOT_DOT] = ACTIONS(5537), + [anon_sym_not] = ACTIONS(4442), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5539), + [anon_sym_DOT_DOT_LT] = ACTIONS(5539), + [anon_sym_null] = ACTIONS(4446), + [anon_sym_true] = ACTIONS(4448), + [anon_sym_false] = ACTIONS(4448), + [aux_sym__val_number_decimal_token1] = ACTIONS(4450), + [aux_sym__val_number_decimal_token2] = ACTIONS(4452), + [anon_sym_DOT2] = ACTIONS(5541), + [aux_sym__val_number_decimal_token3] = ACTIONS(4456), + [aux_sym__val_number_token1] = ACTIONS(4458), + [aux_sym__val_number_token2] = ACTIONS(4458), + [aux_sym__val_number_token3] = ACTIONS(4458), + [aux_sym__val_number_token4] = ACTIONS(5543), + [aux_sym__val_number_token5] = ACTIONS(5543), + [aux_sym__val_number_token6] = ACTIONS(5543), + [anon_sym_0b] = ACTIONS(4462), + [anon_sym_0o] = ACTIONS(4464), + [anon_sym_0x] = ACTIONS(4464), + [sym_val_date] = ACTIONS(4466), + [anon_sym_DQUOTE] = ACTIONS(4468), + [sym__str_single_quotes] = ACTIONS(4470), + [sym__str_back_ticks] = ACTIONS(4470), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4472), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4474), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5545), + [anon_sym_POUND] = ACTIONS(3), }, - [1693] = { - [sym_comment] = STATE(1693), - [anon_sym_export] = ACTIONS(1063), - [anon_sym_alias] = ACTIONS(1063), - [anon_sym_let] = ACTIONS(1063), - [anon_sym_let_DASHenv] = ACTIONS(1063), - [anon_sym_mut] = ACTIONS(1063), - [anon_sym_const] = ACTIONS(1063), - [anon_sym_SEMI] = ACTIONS(1063), - [sym_cmd_identifier] = ACTIONS(1063), - [anon_sym_LF] = ACTIONS(1065), - [anon_sym_def] = ACTIONS(1063), - [anon_sym_export_DASHenv] = ACTIONS(1063), - [anon_sym_extern] = ACTIONS(1063), - [anon_sym_module] = ACTIONS(1063), - [anon_sym_use] = ACTIONS(1063), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_RPAREN] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_error] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_break] = ACTIONS(1063), - [anon_sym_continue] = ACTIONS(1063), - [anon_sym_for] = ACTIONS(1063), - [anon_sym_loop] = ACTIONS(1063), - [anon_sym_while] = ACTIONS(1063), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_if] = ACTIONS(1063), - [anon_sym_match] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_RBRACE] = ACTIONS(1063), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1063), - [anon_sym_return] = ACTIONS(1063), - [anon_sym_source] = ACTIONS(1063), - [anon_sym_source_DASHenv] = ACTIONS(1063), - [anon_sym_register] = ACTIONS(1063), - [anon_sym_hide] = ACTIONS(1063), - [anon_sym_hide_DASHenv] = ACTIONS(1063), - [anon_sym_overlay] = ACTIONS(1063), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_where] = ACTIONS(1063), - [anon_sym_QMARK2] = ACTIONS(1063), - [anon_sym_not] = ACTIONS(1063), - [anon_sym_DOT] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1063), - [anon_sym_DOT_DOT_LT] = ACTIONS(1063), - [anon_sym_null] = ACTIONS(1063), - [anon_sym_true] = ACTIONS(1063), - [anon_sym_false] = ACTIONS(1063), - [aux_sym__val_number_decimal_token1] = ACTIONS(1063), - [aux_sym__val_number_decimal_token2] = ACTIONS(1063), - [anon_sym_DOT2] = ACTIONS(1063), - [aux_sym__val_number_decimal_token3] = ACTIONS(1063), - [aux_sym__val_number_token1] = ACTIONS(1063), - [aux_sym__val_number_token2] = ACTIONS(1063), - [aux_sym__val_number_token3] = ACTIONS(1063), - [aux_sym__val_number_token4] = ACTIONS(1063), - [aux_sym__val_number_token5] = ACTIONS(1063), - [aux_sym__val_number_token6] = ACTIONS(1063), - [anon_sym_0b] = ACTIONS(1063), - [anon_sym_0o] = ACTIONS(1063), - [anon_sym_0x] = ACTIONS(1063), - [sym_val_date] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [sym__str_single_quotes] = ACTIONS(1063), - [sym__str_back_ticks] = ACTIONS(1063), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1063), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1063), - [anon_sym_CARET] = ACTIONS(1063), - [anon_sym_POUND] = ACTIONS(113), + [1887] = { + [sym_expr_unary] = STATE(422), + [sym__expr_unary_minus] = STATE(420), + [sym_expr_binary] = STATE(422), + [sym__expr_binary_expression] = STATE(450), + [sym_expr_parenthesized] = STATE(422), + [sym__val_range] = STATE(10227), + [sym__value] = STATE(422), + [sym_val_nothing] = STATE(456), + [sym_val_bool] = STATE(372), + [sym_val_variable] = STATE(456), + [sym__var] = STATE(315), + [sym_val_number] = STATE(456), + [sym__val_number_decimal] = STATE(253), + [sym__val_number] = STATE(458), + [sym_val_duration] = STATE(456), + [sym_val_filesize] = STATE(456), + [sym_val_binary] = STATE(456), + [sym_val_string] = STATE(456), + [sym__str_double_quotes] = STATE(457), + [sym_val_interpolated] = STATE(456), + [sym__inter_single_quotes] = STATE(469), + [sym__inter_double_quotes] = STATE(470), + [sym_val_list] = STATE(456), + [sym_val_record] = STATE(456), + [sym_val_table] = STATE(456), + [sym_val_closure] = STATE(456), + [sym_unquoted] = STATE(434), + [sym__unquoted_anonymous_prefix] = STATE(10475), + [sym_comment] = STATE(1887), + [anon_sym_LBRACK] = ACTIONS(4430), + [anon_sym_LPAREN] = ACTIONS(5533), + [anon_sym_DOLLAR] = ACTIONS(5535), + [anon_sym_DASH] = ACTIONS(4436), + [anon_sym_LBRACE] = ACTIONS(4438), + [anon_sym_DOT_DOT] = ACTIONS(5537), + [anon_sym_not] = ACTIONS(4442), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5539), + [anon_sym_DOT_DOT_LT] = ACTIONS(5539), + [anon_sym_null] = ACTIONS(4446), + [anon_sym_true] = ACTIONS(4448), + [anon_sym_false] = ACTIONS(4448), + [aux_sym__val_number_decimal_token1] = ACTIONS(4450), + [aux_sym__val_number_decimal_token2] = ACTIONS(4452), + [anon_sym_DOT2] = ACTIONS(5541), + [aux_sym__val_number_decimal_token3] = ACTIONS(4456), + [aux_sym__val_number_token1] = ACTIONS(4458), + [aux_sym__val_number_token2] = ACTIONS(4458), + [aux_sym__val_number_token3] = ACTIONS(4458), + [aux_sym__val_number_token4] = ACTIONS(5543), + [aux_sym__val_number_token5] = ACTIONS(5543), + [aux_sym__val_number_token6] = ACTIONS(5543), + [anon_sym_0b] = ACTIONS(4462), + [anon_sym_0o] = ACTIONS(4464), + [anon_sym_0x] = ACTIONS(4464), + [sym_val_date] = ACTIONS(4466), + [anon_sym_DQUOTE] = ACTIONS(4468), + [sym__str_single_quotes] = ACTIONS(4470), + [sym__str_back_ticks] = ACTIONS(4470), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4472), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4474), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5545), + [anon_sym_POUND] = ACTIONS(3), }, - [1694] = { - [sym_comment] = STATE(1694), - [ts_builtin_sym_end] = ACTIONS(1282), - [anon_sym_export] = ACTIONS(1280), - [anon_sym_alias] = ACTIONS(1280), - [anon_sym_let] = ACTIONS(1280), - [anon_sym_let_DASHenv] = ACTIONS(1280), - [anon_sym_mut] = ACTIONS(1280), - [anon_sym_const] = ACTIONS(1280), - [anon_sym_SEMI] = ACTIONS(1280), - [sym_cmd_identifier] = ACTIONS(1280), - [anon_sym_LF] = ACTIONS(1282), - [anon_sym_def] = ACTIONS(1280), - [anon_sym_export_DASHenv] = ACTIONS(1280), - [anon_sym_extern] = ACTIONS(1280), - [anon_sym_module] = ACTIONS(1280), - [anon_sym_use] = ACTIONS(1280), - [anon_sym_LBRACK] = ACTIONS(1280), - [anon_sym_LPAREN] = ACTIONS(1280), - [anon_sym_DOLLAR] = ACTIONS(1280), - [anon_sym_error] = ACTIONS(1280), - [anon_sym_DASH_DASH] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_break] = ACTIONS(1280), - [anon_sym_continue] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_loop] = ACTIONS(1280), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1280), - [anon_sym_DOT_DOT] = ACTIONS(1280), - [anon_sym_try] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1280), - [anon_sym_source] = ACTIONS(1280), - [anon_sym_source_DASHenv] = ACTIONS(1280), - [anon_sym_register] = ACTIONS(1280), - [anon_sym_hide] = ACTIONS(1280), - [anon_sym_hide_DASHenv] = ACTIONS(1280), - [anon_sym_overlay] = ACTIONS(1280), - [anon_sym_as] = ACTIONS(1280), - [anon_sym_where] = ACTIONS(1280), - [anon_sym_not] = ACTIONS(1280), - [anon_sym_LPAREN2] = ACTIONS(1282), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1280), - [anon_sym_DOT_DOT_LT] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1280), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [aux_sym__val_number_decimal_token1] = ACTIONS(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1280), - [anon_sym_DOT2] = ACTIONS(1280), - [aux_sym__val_number_decimal_token3] = ACTIONS(1280), - [aux_sym__val_number_token1] = ACTIONS(1280), - [aux_sym__val_number_token2] = ACTIONS(1280), - [aux_sym__val_number_token3] = ACTIONS(1280), - [aux_sym__val_number_token4] = ACTIONS(1280), - [aux_sym__val_number_token5] = ACTIONS(1280), - [aux_sym__val_number_token6] = ACTIONS(1280), - [anon_sym_0b] = ACTIONS(1280), - [anon_sym_0o] = ACTIONS(1280), - [anon_sym_0x] = ACTIONS(1280), - [sym_val_date] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1280), - [sym__str_single_quotes] = ACTIONS(1280), - [sym__str_back_ticks] = ACTIONS(1280), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1280), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1280), - [anon_sym_CARET] = ACTIONS(1280), - [aux_sym_unquoted_token6] = ACTIONS(1280), - [anon_sym_POUND] = ACTIONS(113), + [1888] = { + [sym_expr_unary] = STATE(422), + [sym__expr_unary_minus] = STATE(420), + [sym_expr_binary] = STATE(422), + [sym__expr_binary_expression] = STATE(479), + [sym_expr_parenthesized] = STATE(422), + [sym__val_range] = STATE(10227), + [sym__value] = STATE(422), + [sym_val_nothing] = STATE(456), + [sym_val_bool] = STATE(372), + [sym_val_variable] = STATE(456), + [sym__var] = STATE(315), + [sym_val_number] = STATE(456), + [sym__val_number_decimal] = STATE(253), + [sym__val_number] = STATE(458), + [sym_val_duration] = STATE(456), + [sym_val_filesize] = STATE(456), + [sym_val_binary] = STATE(456), + [sym_val_string] = STATE(456), + [sym__str_double_quotes] = STATE(457), + [sym_val_interpolated] = STATE(456), + [sym__inter_single_quotes] = STATE(469), + [sym__inter_double_quotes] = STATE(470), + [sym_val_list] = STATE(456), + [sym_val_record] = STATE(456), + [sym_val_table] = STATE(456), + [sym_val_closure] = STATE(456), + [sym_unquoted] = STATE(435), + [sym__unquoted_anonymous_prefix] = STATE(10475), + [sym_comment] = STATE(1888), + [anon_sym_LBRACK] = ACTIONS(4430), + [anon_sym_LPAREN] = ACTIONS(5533), + [anon_sym_DOLLAR] = ACTIONS(5535), + [anon_sym_DASH] = ACTIONS(4436), + [anon_sym_LBRACE] = ACTIONS(4438), + [anon_sym_DOT_DOT] = ACTIONS(5537), + [anon_sym_not] = ACTIONS(4442), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5539), + [anon_sym_DOT_DOT_LT] = ACTIONS(5539), + [anon_sym_null] = ACTIONS(4446), + [anon_sym_true] = ACTIONS(4448), + [anon_sym_false] = ACTIONS(4448), + [aux_sym__val_number_decimal_token1] = ACTIONS(4450), + [aux_sym__val_number_decimal_token2] = ACTIONS(4452), + [anon_sym_DOT2] = ACTIONS(5541), + [aux_sym__val_number_decimal_token3] = ACTIONS(4456), + [aux_sym__val_number_token1] = ACTIONS(4458), + [aux_sym__val_number_token2] = ACTIONS(4458), + [aux_sym__val_number_token3] = ACTIONS(4458), + [aux_sym__val_number_token4] = ACTIONS(5543), + [aux_sym__val_number_token5] = ACTIONS(5543), + [aux_sym__val_number_token6] = ACTIONS(5543), + [anon_sym_0b] = ACTIONS(4462), + [anon_sym_0o] = ACTIONS(4464), + [anon_sym_0x] = ACTIONS(4464), + [sym_val_date] = ACTIONS(4466), + [anon_sym_DQUOTE] = ACTIONS(4468), + [sym__str_single_quotes] = ACTIONS(4470), + [sym__str_back_ticks] = ACTIONS(4470), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4472), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4474), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5545), + [anon_sym_POUND] = ACTIONS(3), }, - [1695] = { - [sym_comment] = STATE(1695), - [anon_sym_LBRACK] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(1072), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_DOLLAR] = ACTIONS(1072), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_in] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1072), - [anon_sym_RBRACE] = ACTIONS(1072), - [anon_sym__] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(5081), - [anon_sym_STAR_STAR] = ACTIONS(1072), - [anon_sym_PLUS_PLUS] = ACTIONS(1072), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_mod] = ACTIONS(1072), - [anon_sym_SLASH_SLASH] = ACTIONS(1072), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_bit_DASHshl] = ACTIONS(1072), - [anon_sym_bit_DASHshr] = ACTIONS(1072), - [anon_sym_EQ_EQ] = ACTIONS(1072), - [anon_sym_BANG_EQ] = ACTIONS(1072), - [anon_sym_LT2] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1072), - [anon_sym_GT_EQ] = ACTIONS(1072), - [anon_sym_not_DASHin] = ACTIONS(1072), - [anon_sym_starts_DASHwith] = ACTIONS(1072), - [anon_sym_ends_DASHwith] = ACTIONS(1072), - [anon_sym_EQ_TILDE] = ACTIONS(1072), - [anon_sym_BANG_TILDE] = ACTIONS(1072), - [anon_sym_bit_DASHand] = ACTIONS(1072), - [anon_sym_bit_DASHxor] = ACTIONS(1072), - [anon_sym_bit_DASHor] = ACTIONS(1072), - [anon_sym_and] = ACTIONS(1072), - [anon_sym_xor] = ACTIONS(1072), - [anon_sym_or] = ACTIONS(1072), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1072), - [anon_sym_DOT_DOT_LT] = ACTIONS(1072), - [anon_sym_null] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1072), - [anon_sym_false] = ACTIONS(1072), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1072), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1072), - [aux_sym__val_number_token1] = ACTIONS(1072), - [aux_sym__val_number_token2] = ACTIONS(1072), - [aux_sym__val_number_token3] = ACTIONS(1072), - [aux_sym__val_number_token4] = ACTIONS(1072), - [aux_sym__val_number_token5] = ACTIONS(1072), - [aux_sym__val_number_token6] = ACTIONS(1072), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1072), - [anon_sym_DQUOTE] = ACTIONS(1072), - [sym__str_single_quotes] = ACTIONS(1072), - [sym__str_back_ticks] = ACTIONS(1072), - [anon_sym_err_GT] = ACTIONS(1072), - [anon_sym_out_GT] = ACTIONS(1072), - [anon_sym_e_GT] = ACTIONS(1072), - [anon_sym_o_GT] = ACTIONS(1072), - [anon_sym_err_PLUSout_GT] = ACTIONS(1072), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1072), - [anon_sym_o_PLUSe_GT] = ACTIONS(1072), - [anon_sym_e_PLUSo_GT] = ACTIONS(1072), - [aux_sym_unquoted_token1] = ACTIONS(1070), + [1889] = { + [sym_expr_unary] = STATE(342), + [sym__expr_unary_minus] = STATE(415), + [sym_expr_binary] = STATE(342), + [sym__expr_binary_expression] = STATE(359), + [sym_expr_parenthesized] = STATE(342), + [sym__val_range] = STATE(10229), + [sym__value] = STATE(342), + [sym_val_nothing] = STATE(382), + [sym_val_bool] = STATE(335), + [sym_val_variable] = STATE(382), + [sym__var] = STATE(285), + [sym_val_number] = STATE(382), + [sym__val_number_decimal] = STATE(248), + [sym__val_number] = STATE(384), + [sym_val_duration] = STATE(382), + [sym_val_filesize] = STATE(382), + [sym_val_binary] = STATE(382), + [sym_val_string] = STATE(382), + [sym__str_double_quotes] = STATE(383), + [sym_val_interpolated] = STATE(382), + [sym__inter_single_quotes] = STATE(399), + [sym__inter_double_quotes] = STATE(400), + [sym_val_list] = STATE(382), + [sym_val_record] = STATE(382), + [sym_val_table] = STATE(382), + [sym_val_closure] = STATE(382), + [sym_unquoted] = STATE(343), + [sym__unquoted_anonymous_prefix] = STATE(10516), + [sym_comment] = STATE(1889), + [anon_sym_LBRACK] = ACTIONS(4502), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_DOLLAR] = ACTIONS(5549), + [anon_sym_DASH] = ACTIONS(4508), + [anon_sym_LBRACE] = ACTIONS(4510), + [anon_sym_DOT_DOT] = ACTIONS(5551), + [anon_sym_not] = ACTIONS(4514), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5553), + [anon_sym_DOT_DOT_LT] = ACTIONS(5553), + [anon_sym_null] = ACTIONS(4518), + [anon_sym_true] = ACTIONS(4520), + [anon_sym_false] = ACTIONS(4520), + [aux_sym__val_number_decimal_token1] = ACTIONS(4522), + [aux_sym__val_number_decimal_token2] = ACTIONS(4524), + [anon_sym_DOT2] = ACTIONS(5555), + [aux_sym__val_number_decimal_token3] = ACTIONS(4528), + [aux_sym__val_number_token1] = ACTIONS(4530), + [aux_sym__val_number_token2] = ACTIONS(4530), + [aux_sym__val_number_token3] = ACTIONS(4530), + [aux_sym__val_number_token4] = ACTIONS(5557), + [aux_sym__val_number_token5] = ACTIONS(5557), + [aux_sym__val_number_token6] = ACTIONS(5557), + [anon_sym_0b] = ACTIONS(4534), + [anon_sym_0o] = ACTIONS(4536), + [anon_sym_0x] = ACTIONS(4536), + [sym_val_date] = ACTIONS(4538), + [anon_sym_DQUOTE] = ACTIONS(4540), + [sym__str_single_quotes] = ACTIONS(4542), + [sym__str_back_ticks] = ACTIONS(4542), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4544), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4546), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5559), [anon_sym_POUND] = ACTIONS(3), }, - [1696] = { - [sym_comment] = STATE(1696), - [anon_sym_LBRACK] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(1072), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_DOLLAR] = ACTIONS(1072), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_in] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1072), - [anon_sym_RBRACE] = ACTIONS(1072), - [anon_sym__] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(5081), - [anon_sym_STAR_STAR] = ACTIONS(1072), - [anon_sym_PLUS_PLUS] = ACTIONS(1072), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_mod] = ACTIONS(1072), - [anon_sym_SLASH_SLASH] = ACTIONS(1072), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_bit_DASHshl] = ACTIONS(1072), - [anon_sym_bit_DASHshr] = ACTIONS(1072), - [anon_sym_EQ_EQ] = ACTIONS(1072), - [anon_sym_BANG_EQ] = ACTIONS(1072), - [anon_sym_LT2] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1072), - [anon_sym_GT_EQ] = ACTIONS(1072), - [anon_sym_not_DASHin] = ACTIONS(1072), - [anon_sym_starts_DASHwith] = ACTIONS(1072), - [anon_sym_ends_DASHwith] = ACTIONS(1072), - [anon_sym_EQ_TILDE] = ACTIONS(1072), - [anon_sym_BANG_TILDE] = ACTIONS(1072), - [anon_sym_bit_DASHand] = ACTIONS(1072), - [anon_sym_bit_DASHxor] = ACTIONS(1072), - [anon_sym_bit_DASHor] = ACTIONS(1072), - [anon_sym_and] = ACTIONS(1072), - [anon_sym_xor] = ACTIONS(1072), - [anon_sym_or] = ACTIONS(1072), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1072), - [anon_sym_DOT_DOT_LT] = ACTIONS(1072), - [anon_sym_null] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1072), - [anon_sym_false] = ACTIONS(1072), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1072), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1072), - [aux_sym__val_number_token1] = ACTIONS(1072), - [aux_sym__val_number_token2] = ACTIONS(1072), - [aux_sym__val_number_token3] = ACTIONS(1072), - [aux_sym__val_number_token4] = ACTIONS(1072), - [aux_sym__val_number_token5] = ACTIONS(1072), - [aux_sym__val_number_token6] = ACTIONS(1072), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1072), - [anon_sym_DQUOTE] = ACTIONS(1072), - [sym__str_single_quotes] = ACTIONS(1072), - [sym__str_back_ticks] = ACTIONS(1072), - [anon_sym_err_GT] = ACTIONS(1072), - [anon_sym_out_GT] = ACTIONS(1072), - [anon_sym_e_GT] = ACTIONS(1072), - [anon_sym_o_GT] = ACTIONS(1072), - [anon_sym_err_PLUSout_GT] = ACTIONS(1072), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1072), - [anon_sym_o_PLUSe_GT] = ACTIONS(1072), - [anon_sym_e_PLUSo_GT] = ACTIONS(1072), - [aux_sym_unquoted_token1] = ACTIONS(1070), + [1890] = { + [sym_expr_unary] = STATE(342), + [sym__expr_unary_minus] = STATE(415), + [sym_expr_binary] = STATE(342), + [sym__expr_binary_expression] = STATE(360), + [sym_expr_parenthesized] = STATE(342), + [sym__val_range] = STATE(10229), + [sym__value] = STATE(342), + [sym_val_nothing] = STATE(382), + [sym_val_bool] = STATE(335), + [sym_val_variable] = STATE(382), + [sym__var] = STATE(285), + [sym_val_number] = STATE(382), + [sym__val_number_decimal] = STATE(248), + [sym__val_number] = STATE(384), + [sym_val_duration] = STATE(382), + [sym_val_filesize] = STATE(382), + [sym_val_binary] = STATE(382), + [sym_val_string] = STATE(382), + [sym__str_double_quotes] = STATE(383), + [sym_val_interpolated] = STATE(382), + [sym__inter_single_quotes] = STATE(399), + [sym__inter_double_quotes] = STATE(400), + [sym_val_list] = STATE(382), + [sym_val_record] = STATE(382), + [sym_val_table] = STATE(382), + [sym_val_closure] = STATE(382), + [sym_unquoted] = STATE(344), + [sym__unquoted_anonymous_prefix] = STATE(10516), + [sym_comment] = STATE(1890), + [anon_sym_LBRACK] = ACTIONS(4502), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_DOLLAR] = ACTIONS(5549), + [anon_sym_DASH] = ACTIONS(4508), + [anon_sym_LBRACE] = ACTIONS(4510), + [anon_sym_DOT_DOT] = ACTIONS(5551), + [anon_sym_not] = ACTIONS(4514), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5553), + [anon_sym_DOT_DOT_LT] = ACTIONS(5553), + [anon_sym_null] = ACTIONS(4518), + [anon_sym_true] = ACTIONS(4520), + [anon_sym_false] = ACTIONS(4520), + [aux_sym__val_number_decimal_token1] = ACTIONS(4522), + [aux_sym__val_number_decimal_token2] = ACTIONS(4524), + [anon_sym_DOT2] = ACTIONS(5555), + [aux_sym__val_number_decimal_token3] = ACTIONS(4528), + [aux_sym__val_number_token1] = ACTIONS(4530), + [aux_sym__val_number_token2] = ACTIONS(4530), + [aux_sym__val_number_token3] = ACTIONS(4530), + [aux_sym__val_number_token4] = ACTIONS(5557), + [aux_sym__val_number_token5] = ACTIONS(5557), + [aux_sym__val_number_token6] = ACTIONS(5557), + [anon_sym_0b] = ACTIONS(4534), + [anon_sym_0o] = ACTIONS(4536), + [anon_sym_0x] = ACTIONS(4536), + [sym_val_date] = ACTIONS(4538), + [anon_sym_DQUOTE] = ACTIONS(4540), + [sym__str_single_quotes] = ACTIONS(4542), + [sym__str_back_ticks] = ACTIONS(4542), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4544), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4546), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5559), [anon_sym_POUND] = ACTIONS(3), }, - [1697] = { - [sym_cell_path] = STATE(2762), - [sym_path] = STATE(1448), - [sym_comment] = STATE(1697), - [anon_sym_export] = ACTIONS(1186), - [anon_sym_alias] = ACTIONS(1186), - [anon_sym_let] = ACTIONS(1186), - [anon_sym_let_DASHenv] = ACTIONS(1186), - [anon_sym_mut] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1186), - [sym_cmd_identifier] = ACTIONS(1186), - [anon_sym_LF] = ACTIONS(1188), - [anon_sym_def] = ACTIONS(1186), - [anon_sym_export_DASHenv] = ACTIONS(1186), - [anon_sym_extern] = ACTIONS(1186), - [anon_sym_module] = ACTIONS(1186), - [anon_sym_use] = ACTIONS(1186), - [anon_sym_LBRACK] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(1186), - [anon_sym_RPAREN] = ACTIONS(1186), - [anon_sym_DOLLAR] = ACTIONS(1186), - [anon_sym_error] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1186), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1186), - [anon_sym_loop] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_do] = ACTIONS(1186), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_match] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_RBRACE] = ACTIONS(1186), - [anon_sym_DOT_DOT] = ACTIONS(1186), - [anon_sym_try] = ACTIONS(1186), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_source] = ACTIONS(1186), - [anon_sym_source_DASHenv] = ACTIONS(1186), - [anon_sym_register] = ACTIONS(1186), - [anon_sym_hide] = ACTIONS(1186), - [anon_sym_hide_DASHenv] = ACTIONS(1186), - [anon_sym_overlay] = ACTIONS(1186), - [anon_sym_where] = ACTIONS(1186), - [anon_sym_not] = ACTIONS(1186), - [anon_sym_DOT] = ACTIONS(4083), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1186), - [anon_sym_DOT_DOT_LT] = ACTIONS(1186), - [anon_sym_null] = ACTIONS(1186), - [anon_sym_true] = ACTIONS(1186), - [anon_sym_false] = ACTIONS(1186), - [aux_sym__val_number_decimal_token1] = ACTIONS(1186), - [aux_sym__val_number_decimal_token2] = ACTIONS(1186), - [anon_sym_DOT2] = ACTIONS(1186), - [aux_sym__val_number_decimal_token3] = ACTIONS(1186), - [aux_sym__val_number_token1] = ACTIONS(1186), - [aux_sym__val_number_token2] = ACTIONS(1186), - [aux_sym__val_number_token3] = ACTIONS(1186), - [aux_sym__val_number_token4] = ACTIONS(1186), - [aux_sym__val_number_token5] = ACTIONS(1186), - [aux_sym__val_number_token6] = ACTIONS(1186), - [anon_sym_0b] = ACTIONS(1186), - [anon_sym_0o] = ACTIONS(1186), - [anon_sym_0x] = ACTIONS(1186), - [sym_val_date] = ACTIONS(1186), - [anon_sym_DQUOTE] = ACTIONS(1186), - [sym__str_single_quotes] = ACTIONS(1186), - [sym__str_back_ticks] = ACTIONS(1186), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1186), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1186), - [anon_sym_CARET] = ACTIONS(1186), - [anon_sym_POUND] = ACTIONS(113), + [1891] = { + [sym_expr_unary] = STATE(342), + [sym__expr_unary_minus] = STATE(415), + [sym_expr_binary] = STATE(342), + [sym__expr_binary_expression] = STATE(361), + [sym_expr_parenthesized] = STATE(342), + [sym__val_range] = STATE(10229), + [sym__value] = STATE(342), + [sym_val_nothing] = STATE(382), + [sym_val_bool] = STATE(335), + [sym_val_variable] = STATE(382), + [sym__var] = STATE(285), + [sym_val_number] = STATE(382), + [sym__val_number_decimal] = STATE(248), + [sym__val_number] = STATE(384), + [sym_val_duration] = STATE(382), + [sym_val_filesize] = STATE(382), + [sym_val_binary] = STATE(382), + [sym_val_string] = STATE(382), + [sym__str_double_quotes] = STATE(383), + [sym_val_interpolated] = STATE(382), + [sym__inter_single_quotes] = STATE(399), + [sym__inter_double_quotes] = STATE(400), + [sym_val_list] = STATE(382), + [sym_val_record] = STATE(382), + [sym_val_table] = STATE(382), + [sym_val_closure] = STATE(382), + [sym_unquoted] = STATE(345), + [sym__unquoted_anonymous_prefix] = STATE(10516), + [sym_comment] = STATE(1891), + [anon_sym_LBRACK] = ACTIONS(4502), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_DOLLAR] = ACTIONS(5549), + [anon_sym_DASH] = ACTIONS(4508), + [anon_sym_LBRACE] = ACTIONS(4510), + [anon_sym_DOT_DOT] = ACTIONS(5551), + [anon_sym_not] = ACTIONS(4514), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5553), + [anon_sym_DOT_DOT_LT] = ACTIONS(5553), + [anon_sym_null] = ACTIONS(4518), + [anon_sym_true] = ACTIONS(4520), + [anon_sym_false] = ACTIONS(4520), + [aux_sym__val_number_decimal_token1] = ACTIONS(4522), + [aux_sym__val_number_decimal_token2] = ACTIONS(4524), + [anon_sym_DOT2] = ACTIONS(5555), + [aux_sym__val_number_decimal_token3] = ACTIONS(4528), + [aux_sym__val_number_token1] = ACTIONS(4530), + [aux_sym__val_number_token2] = ACTIONS(4530), + [aux_sym__val_number_token3] = ACTIONS(4530), + [aux_sym__val_number_token4] = ACTIONS(5557), + [aux_sym__val_number_token5] = ACTIONS(5557), + [aux_sym__val_number_token6] = ACTIONS(5557), + [anon_sym_0b] = ACTIONS(4534), + [anon_sym_0o] = ACTIONS(4536), + [anon_sym_0x] = ACTIONS(4536), + [sym_val_date] = ACTIONS(4538), + [anon_sym_DQUOTE] = ACTIONS(4540), + [sym__str_single_quotes] = ACTIONS(4542), + [sym__str_back_ticks] = ACTIONS(4542), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4544), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4546), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5559), + [anon_sym_POUND] = ACTIONS(3), }, - [1698] = { - [sym_comment] = STATE(1698), - [anon_sym_export] = ACTIONS(1418), - [anon_sym_alias] = ACTIONS(1418), - [anon_sym_let] = ACTIONS(1418), - [anon_sym_let_DASHenv] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(1418), - [sym_cmd_identifier] = ACTIONS(1418), - [anon_sym_LF] = ACTIONS(1420), - [anon_sym_def] = ACTIONS(1418), - [anon_sym_export_DASHenv] = ACTIONS(1418), - [anon_sym_extern] = ACTIONS(1418), - [anon_sym_module] = ACTIONS(1418), - [anon_sym_use] = ACTIONS(1418), - [anon_sym_LBRACK] = ACTIONS(1418), - [anon_sym_LPAREN] = ACTIONS(1418), - [anon_sym_RPAREN] = ACTIONS(1418), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_error] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_loop] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_match] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_RBRACE] = ACTIONS(1418), - [anon_sym_DOT_DOT] = ACTIONS(1418), - [anon_sym_try] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_source] = ACTIONS(1418), - [anon_sym_source_DASHenv] = ACTIONS(1418), - [anon_sym_register] = ACTIONS(1418), - [anon_sym_hide] = ACTIONS(1418), - [anon_sym_hide_DASHenv] = ACTIONS(1418), - [anon_sym_overlay] = ACTIONS(1418), - [anon_sym_as] = ACTIONS(1418), - [anon_sym_where] = ACTIONS(1418), - [anon_sym_not] = ACTIONS(1418), - [anon_sym_LPAREN2] = ACTIONS(1420), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1418), - [anon_sym_DOT_DOT_LT] = ACTIONS(1418), - [anon_sym_null] = ACTIONS(1418), - [anon_sym_true] = ACTIONS(1418), - [anon_sym_false] = ACTIONS(1418), - [aux_sym__val_number_decimal_token1] = ACTIONS(1418), - [aux_sym__val_number_decimal_token2] = ACTIONS(1418), - [anon_sym_DOT2] = ACTIONS(1418), - [aux_sym__val_number_decimal_token3] = ACTIONS(1418), - [aux_sym__val_number_token1] = ACTIONS(1418), - [aux_sym__val_number_token2] = ACTIONS(1418), - [aux_sym__val_number_token3] = ACTIONS(1418), - [aux_sym__val_number_token4] = ACTIONS(1418), - [aux_sym__val_number_token5] = ACTIONS(1418), - [aux_sym__val_number_token6] = ACTIONS(1418), - [anon_sym_0b] = ACTIONS(1418), - [anon_sym_0o] = ACTIONS(1418), - [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1418), - [anon_sym_DQUOTE] = ACTIONS(1418), - [sym__str_single_quotes] = ACTIONS(1418), - [sym__str_back_ticks] = ACTIONS(1418), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_POUND] = ACTIONS(113), + [1892] = { + [sym_expr_unary] = STATE(342), + [sym__expr_unary_minus] = STATE(415), + [sym_expr_binary] = STATE(342), + [sym__expr_binary_expression] = STATE(362), + [sym_expr_parenthesized] = STATE(342), + [sym__val_range] = STATE(10229), + [sym__value] = STATE(342), + [sym_val_nothing] = STATE(382), + [sym_val_bool] = STATE(335), + [sym_val_variable] = STATE(382), + [sym__var] = STATE(285), + [sym_val_number] = STATE(382), + [sym__val_number_decimal] = STATE(248), + [sym__val_number] = STATE(384), + [sym_val_duration] = STATE(382), + [sym_val_filesize] = STATE(382), + [sym_val_binary] = STATE(382), + [sym_val_string] = STATE(382), + [sym__str_double_quotes] = STATE(383), + [sym_val_interpolated] = STATE(382), + [sym__inter_single_quotes] = STATE(399), + [sym__inter_double_quotes] = STATE(400), + [sym_val_list] = STATE(382), + [sym_val_record] = STATE(382), + [sym_val_table] = STATE(382), + [sym_val_closure] = STATE(382), + [sym_unquoted] = STATE(346), + [sym__unquoted_anonymous_prefix] = STATE(10516), + [sym_comment] = STATE(1892), + [anon_sym_LBRACK] = ACTIONS(4502), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_DOLLAR] = ACTIONS(5549), + [anon_sym_DASH] = ACTIONS(4508), + [anon_sym_LBRACE] = ACTIONS(4510), + [anon_sym_DOT_DOT] = ACTIONS(5551), + [anon_sym_not] = ACTIONS(4514), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5553), + [anon_sym_DOT_DOT_LT] = ACTIONS(5553), + [anon_sym_null] = ACTIONS(4518), + [anon_sym_true] = ACTIONS(4520), + [anon_sym_false] = ACTIONS(4520), + [aux_sym__val_number_decimal_token1] = ACTIONS(4522), + [aux_sym__val_number_decimal_token2] = ACTIONS(4524), + [anon_sym_DOT2] = ACTIONS(5555), + [aux_sym__val_number_decimal_token3] = ACTIONS(4528), + [aux_sym__val_number_token1] = ACTIONS(4530), + [aux_sym__val_number_token2] = ACTIONS(4530), + [aux_sym__val_number_token3] = ACTIONS(4530), + [aux_sym__val_number_token4] = ACTIONS(5557), + [aux_sym__val_number_token5] = ACTIONS(5557), + [aux_sym__val_number_token6] = ACTIONS(5557), + [anon_sym_0b] = ACTIONS(4534), + [anon_sym_0o] = ACTIONS(4536), + [anon_sym_0x] = ACTIONS(4536), + [sym_val_date] = ACTIONS(4538), + [anon_sym_DQUOTE] = ACTIONS(4540), + [sym__str_single_quotes] = ACTIONS(4542), + [sym__str_back_ticks] = ACTIONS(4542), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4544), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4546), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5559), + [anon_sym_POUND] = ACTIONS(3), }, - [1699] = { - [sym_comment] = STATE(1699), - [anon_sym_export] = ACTIONS(1059), - [anon_sym_alias] = ACTIONS(1059), - [anon_sym_let] = ACTIONS(1059), - [anon_sym_let_DASHenv] = ACTIONS(1059), - [anon_sym_mut] = ACTIONS(1059), - [anon_sym_const] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [sym_cmd_identifier] = ACTIONS(1059), - [anon_sym_LF] = ACTIONS(1061), - [anon_sym_def] = ACTIONS(1059), - [anon_sym_export_DASHenv] = ACTIONS(1059), - [anon_sym_extern] = ACTIONS(1059), - [anon_sym_module] = ACTIONS(1059), - [anon_sym_use] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_error] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_break] = ACTIONS(1059), - [anon_sym_continue] = ACTIONS(1059), - [anon_sym_for] = ACTIONS(1059), - [anon_sym_loop] = ACTIONS(1059), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_do] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1059), - [anon_sym_match] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(1059), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_try] = ACTIONS(1059), - [anon_sym_return] = ACTIONS(1059), - [anon_sym_source] = ACTIONS(1059), - [anon_sym_source_DASHenv] = ACTIONS(1059), - [anon_sym_register] = ACTIONS(1059), - [anon_sym_hide] = ACTIONS(1059), - [anon_sym_hide_DASHenv] = ACTIONS(1059), - [anon_sym_overlay] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(1059), - [anon_sym_QMARK2] = ACTIONS(1059), - [anon_sym_not] = ACTIONS(1059), - [anon_sym_DOT] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1059), - [anon_sym_DOT_DOT_LT] = ACTIONS(1059), - [anon_sym_null] = ACTIONS(1059), - [anon_sym_true] = ACTIONS(1059), - [anon_sym_false] = ACTIONS(1059), - [aux_sym__val_number_decimal_token1] = ACTIONS(1059), - [aux_sym__val_number_decimal_token2] = ACTIONS(1059), - [anon_sym_DOT2] = ACTIONS(1059), - [aux_sym__val_number_decimal_token3] = ACTIONS(1059), - [aux_sym__val_number_token1] = ACTIONS(1059), - [aux_sym__val_number_token2] = ACTIONS(1059), - [aux_sym__val_number_token3] = ACTIONS(1059), - [aux_sym__val_number_token4] = ACTIONS(1059), - [aux_sym__val_number_token5] = ACTIONS(1059), - [aux_sym__val_number_token6] = ACTIONS(1059), - [anon_sym_0b] = ACTIONS(1059), - [anon_sym_0o] = ACTIONS(1059), - [anon_sym_0x] = ACTIONS(1059), - [sym_val_date] = ACTIONS(1059), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym__str_single_quotes] = ACTIONS(1059), - [sym__str_back_ticks] = ACTIONS(1059), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1059), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1059), - [anon_sym_CARET] = ACTIONS(1059), - [anon_sym_POUND] = ACTIONS(113), + [1893] = { + [sym_expr_unary] = STATE(342), + [sym__expr_unary_minus] = STATE(415), + [sym_expr_binary] = STATE(342), + [sym__expr_binary_expression] = STATE(363), + [sym_expr_parenthesized] = STATE(342), + [sym__val_range] = STATE(10229), + [sym__value] = STATE(342), + [sym_val_nothing] = STATE(382), + [sym_val_bool] = STATE(335), + [sym_val_variable] = STATE(382), + [sym__var] = STATE(285), + [sym_val_number] = STATE(382), + [sym__val_number_decimal] = STATE(248), + [sym__val_number] = STATE(384), + [sym_val_duration] = STATE(382), + [sym_val_filesize] = STATE(382), + [sym_val_binary] = STATE(382), + [sym_val_string] = STATE(382), + [sym__str_double_quotes] = STATE(383), + [sym_val_interpolated] = STATE(382), + [sym__inter_single_quotes] = STATE(399), + [sym__inter_double_quotes] = STATE(400), + [sym_val_list] = STATE(382), + [sym_val_record] = STATE(382), + [sym_val_table] = STATE(382), + [sym_val_closure] = STATE(382), + [sym_unquoted] = STATE(347), + [sym__unquoted_anonymous_prefix] = STATE(10516), + [sym_comment] = STATE(1893), + [anon_sym_LBRACK] = ACTIONS(4502), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_DOLLAR] = ACTIONS(5549), + [anon_sym_DASH] = ACTIONS(4508), + [anon_sym_LBRACE] = ACTIONS(4510), + [anon_sym_DOT_DOT] = ACTIONS(5551), + [anon_sym_not] = ACTIONS(4514), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5553), + [anon_sym_DOT_DOT_LT] = ACTIONS(5553), + [anon_sym_null] = ACTIONS(4518), + [anon_sym_true] = ACTIONS(4520), + [anon_sym_false] = ACTIONS(4520), + [aux_sym__val_number_decimal_token1] = ACTIONS(4522), + [aux_sym__val_number_decimal_token2] = ACTIONS(4524), + [anon_sym_DOT2] = ACTIONS(5555), + [aux_sym__val_number_decimal_token3] = ACTIONS(4528), + [aux_sym__val_number_token1] = ACTIONS(4530), + [aux_sym__val_number_token2] = ACTIONS(4530), + [aux_sym__val_number_token3] = ACTIONS(4530), + [aux_sym__val_number_token4] = ACTIONS(5557), + [aux_sym__val_number_token5] = ACTIONS(5557), + [aux_sym__val_number_token6] = ACTIONS(5557), + [anon_sym_0b] = ACTIONS(4534), + [anon_sym_0o] = ACTIONS(4536), + [anon_sym_0x] = ACTIONS(4536), + [sym_val_date] = ACTIONS(4538), + [anon_sym_DQUOTE] = ACTIONS(4540), + [sym__str_single_quotes] = ACTIONS(4542), + [sym__str_back_ticks] = ACTIONS(4542), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4544), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4546), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5559), + [anon_sym_POUND] = ACTIONS(3), }, - [1700] = { - [sym_comment] = STATE(1700), - [anon_sym_export] = ACTIONS(5083), - [anon_sym_alias] = ACTIONS(5083), - [anon_sym_let] = ACTIONS(5083), - [anon_sym_let_DASHenv] = ACTIONS(5083), - [anon_sym_mut] = ACTIONS(5083), - [anon_sym_const] = ACTIONS(5083), - [anon_sym_SEMI] = ACTIONS(5083), - [sym_cmd_identifier] = ACTIONS(5083), - [anon_sym_LF] = ACTIONS(5085), - [anon_sym_def] = ACTIONS(5083), - [anon_sym_export_DASHenv] = ACTIONS(5083), - [anon_sym_extern] = ACTIONS(5083), - [anon_sym_module] = ACTIONS(5083), - [anon_sym_use] = ACTIONS(5083), - [anon_sym_LBRACK] = ACTIONS(5083), - [anon_sym_LPAREN] = ACTIONS(5083), - [anon_sym_RPAREN] = ACTIONS(5083), - [anon_sym_DOLLAR] = ACTIONS(5083), - [anon_sym_error] = ACTIONS(5083), - [anon_sym_DASH_DASH] = ACTIONS(5083), - [anon_sym_DASH] = ACTIONS(5083), - [anon_sym_break] = ACTIONS(5083), - [anon_sym_continue] = ACTIONS(5083), - [anon_sym_for] = ACTIONS(5083), - [anon_sym_loop] = ACTIONS(5083), - [anon_sym_while] = ACTIONS(5083), - [anon_sym_do] = ACTIONS(5083), - [anon_sym_if] = ACTIONS(5083), - [anon_sym_match] = ACTIONS(5083), - [anon_sym_LBRACE] = ACTIONS(5083), - [anon_sym_RBRACE] = ACTIONS(5083), - [anon_sym_DOT_DOT] = ACTIONS(5083), - [anon_sym_try] = ACTIONS(5083), - [anon_sym_return] = ACTIONS(5083), - [anon_sym_source] = ACTIONS(5083), - [anon_sym_source_DASHenv] = ACTIONS(5083), - [anon_sym_register] = ACTIONS(5083), - [anon_sym_hide] = ACTIONS(5083), - [anon_sym_hide_DASHenv] = ACTIONS(5083), - [anon_sym_overlay] = ACTIONS(5083), - [anon_sym_as] = ACTIONS(5083), - [anon_sym_where] = ACTIONS(5083), - [anon_sym_not] = ACTIONS(5083), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5083), - [anon_sym_DOT_DOT_LT] = ACTIONS(5083), - [aux_sym__immediate_decimal_token1] = ACTIONS(5087), - [anon_sym_null] = ACTIONS(5083), - [anon_sym_true] = ACTIONS(5083), - [anon_sym_false] = ACTIONS(5083), - [aux_sym__val_number_decimal_token1] = ACTIONS(5083), - [aux_sym__val_number_decimal_token2] = ACTIONS(5083), - [anon_sym_DOT2] = ACTIONS(5083), - [aux_sym__val_number_decimal_token3] = ACTIONS(5083), - [aux_sym__val_number_token1] = ACTIONS(5083), - [aux_sym__val_number_token2] = ACTIONS(5083), - [aux_sym__val_number_token3] = ACTIONS(5083), - [aux_sym__val_number_token4] = ACTIONS(5083), - [aux_sym__val_number_token5] = ACTIONS(5083), - [aux_sym__val_number_token6] = ACTIONS(5083), - [anon_sym_0b] = ACTIONS(5083), - [anon_sym_0o] = ACTIONS(5083), - [anon_sym_0x] = ACTIONS(5083), - [sym_val_date] = ACTIONS(5083), - [anon_sym_DQUOTE] = ACTIONS(5083), - [sym__str_single_quotes] = ACTIONS(5083), - [sym__str_back_ticks] = ACTIONS(5083), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5083), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5083), - [anon_sym_CARET] = ACTIONS(5083), - [anon_sym_POUND] = ACTIONS(113), + [1894] = { + [sym_expr_unary] = STATE(342), + [sym__expr_unary_minus] = STATE(415), + [sym_expr_binary] = STATE(342), + [sym__expr_binary_expression] = STATE(364), + [sym_expr_parenthesized] = STATE(342), + [sym__val_range] = STATE(10229), + [sym__value] = STATE(342), + [sym_val_nothing] = STATE(382), + [sym_val_bool] = STATE(335), + [sym_val_variable] = STATE(382), + [sym__var] = STATE(285), + [sym_val_number] = STATE(382), + [sym__val_number_decimal] = STATE(248), + [sym__val_number] = STATE(384), + [sym_val_duration] = STATE(382), + [sym_val_filesize] = STATE(382), + [sym_val_binary] = STATE(382), + [sym_val_string] = STATE(382), + [sym__str_double_quotes] = STATE(383), + [sym_val_interpolated] = STATE(382), + [sym__inter_single_quotes] = STATE(399), + [sym__inter_double_quotes] = STATE(400), + [sym_val_list] = STATE(382), + [sym_val_record] = STATE(382), + [sym_val_table] = STATE(382), + [sym_val_closure] = STATE(382), + [sym_unquoted] = STATE(348), + [sym__unquoted_anonymous_prefix] = STATE(10516), + [sym_comment] = STATE(1894), + [anon_sym_LBRACK] = ACTIONS(4502), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_DOLLAR] = ACTIONS(5549), + [anon_sym_DASH] = ACTIONS(4508), + [anon_sym_LBRACE] = ACTIONS(4510), + [anon_sym_DOT_DOT] = ACTIONS(5551), + [anon_sym_not] = ACTIONS(4514), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5553), + [anon_sym_DOT_DOT_LT] = ACTIONS(5553), + [anon_sym_null] = ACTIONS(4518), + [anon_sym_true] = ACTIONS(4520), + [anon_sym_false] = ACTIONS(4520), + [aux_sym__val_number_decimal_token1] = ACTIONS(4522), + [aux_sym__val_number_decimal_token2] = ACTIONS(4524), + [anon_sym_DOT2] = ACTIONS(5555), + [aux_sym__val_number_decimal_token3] = ACTIONS(4528), + [aux_sym__val_number_token1] = ACTIONS(4530), + [aux_sym__val_number_token2] = ACTIONS(4530), + [aux_sym__val_number_token3] = ACTIONS(4530), + [aux_sym__val_number_token4] = ACTIONS(5557), + [aux_sym__val_number_token5] = ACTIONS(5557), + [aux_sym__val_number_token6] = ACTIONS(5557), + [anon_sym_0b] = ACTIONS(4534), + [anon_sym_0o] = ACTIONS(4536), + [anon_sym_0x] = ACTIONS(4536), + [sym_val_date] = ACTIONS(4538), + [anon_sym_DQUOTE] = ACTIONS(4540), + [sym__str_single_quotes] = ACTIONS(4542), + [sym__str_back_ticks] = ACTIONS(4542), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4544), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4546), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5559), + [anon_sym_POUND] = ACTIONS(3), }, - [1701] = { - [sym_comment] = STATE(1701), - [anon_sym_export] = ACTIONS(1346), - [anon_sym_alias] = ACTIONS(1346), - [anon_sym_let] = ACTIONS(1346), - [anon_sym_let_DASHenv] = ACTIONS(1346), - [anon_sym_mut] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_SEMI] = ACTIONS(1346), - [sym_cmd_identifier] = ACTIONS(1346), - [anon_sym_LF] = ACTIONS(1348), - [anon_sym_def] = ACTIONS(1346), - [anon_sym_export_DASHenv] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1346), - [anon_sym_module] = ACTIONS(1346), - [anon_sym_use] = ACTIONS(1346), - [anon_sym_LBRACK] = ACTIONS(1346), - [anon_sym_LPAREN] = ACTIONS(1346), - [anon_sym_RPAREN] = ACTIONS(1346), - [anon_sym_DOLLAR] = ACTIONS(1346), - [anon_sym_error] = ACTIONS(1346), - [anon_sym_DASH_DASH] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_loop] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_match] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_RBRACE] = ACTIONS(1346), - [anon_sym_DOT_DOT] = ACTIONS(1346), - [anon_sym_try] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_source] = ACTIONS(1346), - [anon_sym_source_DASHenv] = ACTIONS(1346), - [anon_sym_register] = ACTIONS(1346), - [anon_sym_hide] = ACTIONS(1346), - [anon_sym_hide_DASHenv] = ACTIONS(1346), - [anon_sym_overlay] = ACTIONS(1346), - [anon_sym_as] = ACTIONS(1346), - [anon_sym_where] = ACTIONS(1346), - [anon_sym_not] = ACTIONS(1346), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1346), - [anon_sym_DOT_DOT_LT] = ACTIONS(1346), - [anon_sym_null] = ACTIONS(1346), - [anon_sym_true] = ACTIONS(1346), - [anon_sym_false] = ACTIONS(1346), - [aux_sym__val_number_decimal_token1] = ACTIONS(1346), - [aux_sym__val_number_decimal_token2] = ACTIONS(1346), - [anon_sym_DOT2] = ACTIONS(1346), - [aux_sym__val_number_decimal_token3] = ACTIONS(1346), - [aux_sym__val_number_token1] = ACTIONS(1346), - [aux_sym__val_number_token2] = ACTIONS(1346), - [aux_sym__val_number_token3] = ACTIONS(1346), - [aux_sym__val_number_token4] = ACTIONS(1346), - [aux_sym__val_number_token5] = ACTIONS(1346), - [aux_sym__val_number_token6] = ACTIONS(1346), - [anon_sym_0b] = ACTIONS(1346), - [anon_sym_0o] = ACTIONS(1346), - [anon_sym_0x] = ACTIONS(1346), - [sym_val_date] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym__str_single_quotes] = ACTIONS(1346), - [sym__str_back_ticks] = ACTIONS(1346), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1346), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_POUND] = ACTIONS(113), + [1895] = { + [sym_expr_unary] = STATE(342), + [sym__expr_unary_minus] = STATE(415), + [sym_expr_binary] = STATE(342), + [sym__expr_binary_expression] = STATE(365), + [sym_expr_parenthesized] = STATE(342), + [sym__val_range] = STATE(10229), + [sym__value] = STATE(342), + [sym_val_nothing] = STATE(382), + [sym_val_bool] = STATE(335), + [sym_val_variable] = STATE(382), + [sym__var] = STATE(285), + [sym_val_number] = STATE(382), + [sym__val_number_decimal] = STATE(248), + [sym__val_number] = STATE(384), + [sym_val_duration] = STATE(382), + [sym_val_filesize] = STATE(382), + [sym_val_binary] = STATE(382), + [sym_val_string] = STATE(382), + [sym__str_double_quotes] = STATE(383), + [sym_val_interpolated] = STATE(382), + [sym__inter_single_quotes] = STATE(399), + [sym__inter_double_quotes] = STATE(400), + [sym_val_list] = STATE(382), + [sym_val_record] = STATE(382), + [sym_val_table] = STATE(382), + [sym_val_closure] = STATE(382), + [sym_unquoted] = STATE(349), + [sym__unquoted_anonymous_prefix] = STATE(10516), + [sym_comment] = STATE(1895), + [anon_sym_LBRACK] = ACTIONS(4502), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_DOLLAR] = ACTIONS(5549), + [anon_sym_DASH] = ACTIONS(4508), + [anon_sym_LBRACE] = ACTIONS(4510), + [anon_sym_DOT_DOT] = ACTIONS(5551), + [anon_sym_not] = ACTIONS(4514), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5553), + [anon_sym_DOT_DOT_LT] = ACTIONS(5553), + [anon_sym_null] = ACTIONS(4518), + [anon_sym_true] = ACTIONS(4520), + [anon_sym_false] = ACTIONS(4520), + [aux_sym__val_number_decimal_token1] = ACTIONS(4522), + [aux_sym__val_number_decimal_token2] = ACTIONS(4524), + [anon_sym_DOT2] = ACTIONS(5555), + [aux_sym__val_number_decimal_token3] = ACTIONS(4528), + [aux_sym__val_number_token1] = ACTIONS(4530), + [aux_sym__val_number_token2] = ACTIONS(4530), + [aux_sym__val_number_token3] = ACTIONS(4530), + [aux_sym__val_number_token4] = ACTIONS(5557), + [aux_sym__val_number_token5] = ACTIONS(5557), + [aux_sym__val_number_token6] = ACTIONS(5557), + [anon_sym_0b] = ACTIONS(4534), + [anon_sym_0o] = ACTIONS(4536), + [anon_sym_0x] = ACTIONS(4536), + [sym_val_date] = ACTIONS(4538), + [anon_sym_DQUOTE] = ACTIONS(4540), + [sym__str_single_quotes] = ACTIONS(4542), + [sym__str_back_ticks] = ACTIONS(4542), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4544), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4546), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5559), + [anon_sym_POUND] = ACTIONS(3), }, - [1702] = { - [sym_comment] = STATE(1702), - [ts_builtin_sym_end] = ACTIONS(938), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_error] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_where] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [aux_sym__immediate_decimal_token1] = ACTIONS(5039), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [aux_sym_unquoted_token2] = ACTIONS(5089), - [anon_sym_POUND] = ACTIONS(113), + [1896] = { + [sym_expr_unary] = STATE(342), + [sym__expr_unary_minus] = STATE(415), + [sym_expr_binary] = STATE(342), + [sym__expr_binary_expression] = STATE(366), + [sym_expr_parenthesized] = STATE(342), + [sym__val_range] = STATE(10229), + [sym__value] = STATE(342), + [sym_val_nothing] = STATE(382), + [sym_val_bool] = STATE(335), + [sym_val_variable] = STATE(382), + [sym__var] = STATE(285), + [sym_val_number] = STATE(382), + [sym__val_number_decimal] = STATE(248), + [sym__val_number] = STATE(384), + [sym_val_duration] = STATE(382), + [sym_val_filesize] = STATE(382), + [sym_val_binary] = STATE(382), + [sym_val_string] = STATE(382), + [sym__str_double_quotes] = STATE(383), + [sym_val_interpolated] = STATE(382), + [sym__inter_single_quotes] = STATE(399), + [sym__inter_double_quotes] = STATE(400), + [sym_val_list] = STATE(382), + [sym_val_record] = STATE(382), + [sym_val_table] = STATE(382), + [sym_val_closure] = STATE(382), + [sym_unquoted] = STATE(350), + [sym__unquoted_anonymous_prefix] = STATE(10516), + [sym_comment] = STATE(1896), + [anon_sym_LBRACK] = ACTIONS(4502), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_DOLLAR] = ACTIONS(5549), + [anon_sym_DASH] = ACTIONS(4508), + [anon_sym_LBRACE] = ACTIONS(4510), + [anon_sym_DOT_DOT] = ACTIONS(5551), + [anon_sym_not] = ACTIONS(4514), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5553), + [anon_sym_DOT_DOT_LT] = ACTIONS(5553), + [anon_sym_null] = ACTIONS(4518), + [anon_sym_true] = ACTIONS(4520), + [anon_sym_false] = ACTIONS(4520), + [aux_sym__val_number_decimal_token1] = ACTIONS(4522), + [aux_sym__val_number_decimal_token2] = ACTIONS(4524), + [anon_sym_DOT2] = ACTIONS(5555), + [aux_sym__val_number_decimal_token3] = ACTIONS(4528), + [aux_sym__val_number_token1] = ACTIONS(4530), + [aux_sym__val_number_token2] = ACTIONS(4530), + [aux_sym__val_number_token3] = ACTIONS(4530), + [aux_sym__val_number_token4] = ACTIONS(5557), + [aux_sym__val_number_token5] = ACTIONS(5557), + [aux_sym__val_number_token6] = ACTIONS(5557), + [anon_sym_0b] = ACTIONS(4534), + [anon_sym_0o] = ACTIONS(4536), + [anon_sym_0x] = ACTIONS(4536), + [sym_val_date] = ACTIONS(4538), + [anon_sym_DQUOTE] = ACTIONS(4540), + [sym__str_single_quotes] = ACTIONS(4542), + [sym__str_back_ticks] = ACTIONS(4542), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4544), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4546), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5559), + [anon_sym_POUND] = ACTIONS(3), }, - [1703] = { - [sym_comment] = STATE(1703), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(936), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_error] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_RBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_where] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [anon_sym_POUND] = ACTIONS(113), + [1897] = { + [sym_expr_unary] = STATE(342), + [sym__expr_unary_minus] = STATE(415), + [sym_expr_binary] = STATE(342), + [sym__expr_binary_expression] = STATE(367), + [sym_expr_parenthesized] = STATE(342), + [sym__val_range] = STATE(10229), + [sym__value] = STATE(342), + [sym_val_nothing] = STATE(382), + [sym_val_bool] = STATE(335), + [sym_val_variable] = STATE(382), + [sym__var] = STATE(285), + [sym_val_number] = STATE(382), + [sym__val_number_decimal] = STATE(248), + [sym__val_number] = STATE(384), + [sym_val_duration] = STATE(382), + [sym_val_filesize] = STATE(382), + [sym_val_binary] = STATE(382), + [sym_val_string] = STATE(382), + [sym__str_double_quotes] = STATE(383), + [sym_val_interpolated] = STATE(382), + [sym__inter_single_quotes] = STATE(399), + [sym__inter_double_quotes] = STATE(400), + [sym_val_list] = STATE(382), + [sym_val_record] = STATE(382), + [sym_val_table] = STATE(382), + [sym_val_closure] = STATE(382), + [sym_unquoted] = STATE(351), + [sym__unquoted_anonymous_prefix] = STATE(10516), + [sym_comment] = STATE(1897), + [anon_sym_LBRACK] = ACTIONS(4502), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_DOLLAR] = ACTIONS(5549), + [anon_sym_DASH] = ACTIONS(4508), + [anon_sym_LBRACE] = ACTIONS(4510), + [anon_sym_DOT_DOT] = ACTIONS(5551), + [anon_sym_not] = ACTIONS(4514), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5553), + [anon_sym_DOT_DOT_LT] = ACTIONS(5553), + [anon_sym_null] = ACTIONS(4518), + [anon_sym_true] = ACTIONS(4520), + [anon_sym_false] = ACTIONS(4520), + [aux_sym__val_number_decimal_token1] = ACTIONS(4522), + [aux_sym__val_number_decimal_token2] = ACTIONS(4524), + [anon_sym_DOT2] = ACTIONS(5555), + [aux_sym__val_number_decimal_token3] = ACTIONS(4528), + [aux_sym__val_number_token1] = ACTIONS(4530), + [aux_sym__val_number_token2] = ACTIONS(4530), + [aux_sym__val_number_token3] = ACTIONS(4530), + [aux_sym__val_number_token4] = ACTIONS(5557), + [aux_sym__val_number_token5] = ACTIONS(5557), + [aux_sym__val_number_token6] = ACTIONS(5557), + [anon_sym_0b] = ACTIONS(4534), + [anon_sym_0o] = ACTIONS(4536), + [anon_sym_0x] = ACTIONS(4536), + [sym_val_date] = ACTIONS(4538), + [anon_sym_DQUOTE] = ACTIONS(4540), + [sym__str_single_quotes] = ACTIONS(4542), + [sym__str_back_ticks] = ACTIONS(4542), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4544), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4546), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5559), + [anon_sym_POUND] = ACTIONS(3), }, - [1704] = { - [sym_comment] = STATE(1704), - [ts_builtin_sym_end] = ACTIONS(3520), - [anon_sym_export] = ACTIONS(3518), - [anon_sym_alias] = ACTIONS(3518), - [anon_sym_let] = ACTIONS(3518), - [anon_sym_let_DASHenv] = ACTIONS(3518), - [anon_sym_mut] = ACTIONS(3518), - [anon_sym_const] = ACTIONS(3518), - [anon_sym_SEMI] = ACTIONS(3518), - [sym_cmd_identifier] = ACTIONS(3518), - [anon_sym_LF] = ACTIONS(3520), - [anon_sym_def] = ACTIONS(3518), - [anon_sym_export_DASHenv] = ACTIONS(3518), - [anon_sym_extern] = ACTIONS(3518), - [anon_sym_module] = ACTIONS(3518), - [anon_sym_use] = ACTIONS(3518), - [anon_sym_LBRACK] = ACTIONS(3518), - [anon_sym_LPAREN] = ACTIONS(3518), - [anon_sym_DOLLAR] = ACTIONS(3518), - [anon_sym_error] = ACTIONS(3518), - [anon_sym_DASH] = ACTIONS(3518), - [anon_sym_break] = ACTIONS(3518), - [anon_sym_continue] = ACTIONS(3518), - [anon_sym_for] = ACTIONS(3518), - [anon_sym_loop] = ACTIONS(3518), - [anon_sym_while] = ACTIONS(3518), - [anon_sym_do] = ACTIONS(3518), - [anon_sym_if] = ACTIONS(3518), - [anon_sym_match] = ACTIONS(3518), - [anon_sym_LBRACE] = ACTIONS(3518), - [anon_sym_DOT_DOT] = ACTIONS(3518), - [anon_sym_try] = ACTIONS(3518), - [anon_sym_return] = ACTIONS(3518), - [anon_sym_source] = ACTIONS(3518), - [anon_sym_source_DASHenv] = ACTIONS(3518), - [anon_sym_register] = ACTIONS(3518), - [anon_sym_hide] = ACTIONS(3518), - [anon_sym_hide_DASHenv] = ACTIONS(3518), - [anon_sym_overlay] = ACTIONS(3518), - [anon_sym_where] = ACTIONS(3518), - [anon_sym_not] = ACTIONS(3518), - [anon_sym_DOT_DOT2] = ACTIONS(5091), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3518), - [anon_sym_DOT_DOT_LT] = ACTIONS(3518), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(5093), - [anon_sym_DOT_DOT_LT2] = ACTIONS(5093), - [anon_sym_null] = ACTIONS(3518), - [anon_sym_true] = ACTIONS(3518), - [anon_sym_false] = ACTIONS(3518), - [aux_sym__val_number_decimal_token1] = ACTIONS(3518), - [aux_sym__val_number_decimal_token2] = ACTIONS(3518), - [anon_sym_DOT2] = ACTIONS(3518), - [aux_sym__val_number_decimal_token3] = ACTIONS(3518), - [aux_sym__val_number_token1] = ACTIONS(3518), - [aux_sym__val_number_token2] = ACTIONS(3518), - [aux_sym__val_number_token3] = ACTIONS(3518), - [aux_sym__val_number_token4] = ACTIONS(3518), - [aux_sym__val_number_token5] = ACTIONS(3518), - [aux_sym__val_number_token6] = ACTIONS(3518), - [anon_sym_0b] = ACTIONS(3518), - [anon_sym_0o] = ACTIONS(3518), - [anon_sym_0x] = ACTIONS(3518), - [sym_val_date] = ACTIONS(3518), - [anon_sym_DQUOTE] = ACTIONS(3518), - [sym__str_single_quotes] = ACTIONS(3518), - [sym__str_back_ticks] = ACTIONS(3518), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3518), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3518), - [anon_sym_CARET] = ACTIONS(3518), - [anon_sym_POUND] = ACTIONS(113), + [1898] = { + [sym_expr_unary] = STATE(342), + [sym__expr_unary_minus] = STATE(415), + [sym_expr_binary] = STATE(342), + [sym__expr_binary_expression] = STATE(368), + [sym_expr_parenthesized] = STATE(342), + [sym__val_range] = STATE(10229), + [sym__value] = STATE(342), + [sym_val_nothing] = STATE(382), + [sym_val_bool] = STATE(335), + [sym_val_variable] = STATE(382), + [sym__var] = STATE(285), + [sym_val_number] = STATE(382), + [sym__val_number_decimal] = STATE(248), + [sym__val_number] = STATE(384), + [sym_val_duration] = STATE(382), + [sym_val_filesize] = STATE(382), + [sym_val_binary] = STATE(382), + [sym_val_string] = STATE(382), + [sym__str_double_quotes] = STATE(383), + [sym_val_interpolated] = STATE(382), + [sym__inter_single_quotes] = STATE(399), + [sym__inter_double_quotes] = STATE(400), + [sym_val_list] = STATE(382), + [sym_val_record] = STATE(382), + [sym_val_table] = STATE(382), + [sym_val_closure] = STATE(382), + [sym_unquoted] = STATE(352), + [sym__unquoted_anonymous_prefix] = STATE(10516), + [sym_comment] = STATE(1898), + [anon_sym_LBRACK] = ACTIONS(4502), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_DOLLAR] = ACTIONS(5549), + [anon_sym_DASH] = ACTIONS(4508), + [anon_sym_LBRACE] = ACTIONS(4510), + [anon_sym_DOT_DOT] = ACTIONS(5551), + [anon_sym_not] = ACTIONS(4514), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5553), + [anon_sym_DOT_DOT_LT] = ACTIONS(5553), + [anon_sym_null] = ACTIONS(4518), + [anon_sym_true] = ACTIONS(4520), + [anon_sym_false] = ACTIONS(4520), + [aux_sym__val_number_decimal_token1] = ACTIONS(4522), + [aux_sym__val_number_decimal_token2] = ACTIONS(4524), + [anon_sym_DOT2] = ACTIONS(5555), + [aux_sym__val_number_decimal_token3] = ACTIONS(4528), + [aux_sym__val_number_token1] = ACTIONS(4530), + [aux_sym__val_number_token2] = ACTIONS(4530), + [aux_sym__val_number_token3] = ACTIONS(4530), + [aux_sym__val_number_token4] = ACTIONS(5557), + [aux_sym__val_number_token5] = ACTIONS(5557), + [aux_sym__val_number_token6] = ACTIONS(5557), + [anon_sym_0b] = ACTIONS(4534), + [anon_sym_0o] = ACTIONS(4536), + [anon_sym_0x] = ACTIONS(4536), + [sym_val_date] = ACTIONS(4538), + [anon_sym_DQUOTE] = ACTIONS(4540), + [sym__str_single_quotes] = ACTIONS(4542), + [sym__str_back_ticks] = ACTIONS(4542), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4544), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4546), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5559), + [anon_sym_POUND] = ACTIONS(3), }, - [1705] = { - [sym_expr_unary] = STATE(6503), - [sym__expr_unary_minus] = STATE(6520), - [sym_expr_binary] = STATE(6503), - [sym__expr_binary_expression] = STATE(6597), - [sym_expr_parenthesized] = STATE(6503), - [sym__val_range] = STATE(10607), - [sym__value] = STATE(6503), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(6326), - [sym_val_variable] = STATE(6614), - [sym__var] = STATE(5803), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(4921), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(6614), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_unquoted] = STATE(6471), - [sym__unquoted_anonymous_prefix] = STATE(11330), - [sym_comment] = STATE(1705), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_LPAREN] = ACTIONS(5095), - [anon_sym_DOLLAR] = ACTIONS(5097), - [anon_sym_DASH] = ACTIONS(4947), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(5099), - [anon_sym_not] = ACTIONS(4951), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5101), - [anon_sym_DOT_DOT_LT] = ACTIONS(5101), - [anon_sym_null] = ACTIONS(4955), - [anon_sym_true] = ACTIONS(4957), - [anon_sym_false] = ACTIONS(4957), - [aux_sym__val_number_decimal_token1] = ACTIONS(4959), - [aux_sym__val_number_decimal_token2] = ACTIONS(4961), - [anon_sym_DOT2] = ACTIONS(5103), - [aux_sym__val_number_decimal_token3] = ACTIONS(4965), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(4967), - [aux_sym__val_number_token5] = ACTIONS(4967), - [aux_sym__val_number_token6] = ACTIONS(4967), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(4969), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(3584), + [1899] = { + [sym_expr_unary] = STATE(342), + [sym__expr_unary_minus] = STATE(415), + [sym_expr_binary] = STATE(342), + [sym__expr_binary_expression] = STATE(369), + [sym_expr_parenthesized] = STATE(342), + [sym__val_range] = STATE(10229), + [sym__value] = STATE(342), + [sym_val_nothing] = STATE(382), + [sym_val_bool] = STATE(335), + [sym_val_variable] = STATE(382), + [sym__var] = STATE(285), + [sym_val_number] = STATE(382), + [sym__val_number_decimal] = STATE(248), + [sym__val_number] = STATE(384), + [sym_val_duration] = STATE(382), + [sym_val_filesize] = STATE(382), + [sym_val_binary] = STATE(382), + [sym_val_string] = STATE(382), + [sym__str_double_quotes] = STATE(383), + [sym_val_interpolated] = STATE(382), + [sym__inter_single_quotes] = STATE(399), + [sym__inter_double_quotes] = STATE(400), + [sym_val_list] = STATE(382), + [sym_val_record] = STATE(382), + [sym_val_table] = STATE(382), + [sym_val_closure] = STATE(382), + [sym_unquoted] = STATE(353), + [sym__unquoted_anonymous_prefix] = STATE(10516), + [sym_comment] = STATE(1899), + [anon_sym_LBRACK] = ACTIONS(4502), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_DOLLAR] = ACTIONS(5549), + [anon_sym_DASH] = ACTIONS(4508), + [anon_sym_LBRACE] = ACTIONS(4510), + [anon_sym_DOT_DOT] = ACTIONS(5551), + [anon_sym_not] = ACTIONS(4514), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5553), + [anon_sym_DOT_DOT_LT] = ACTIONS(5553), + [anon_sym_null] = ACTIONS(4518), + [anon_sym_true] = ACTIONS(4520), + [anon_sym_false] = ACTIONS(4520), + [aux_sym__val_number_decimal_token1] = ACTIONS(4522), + [aux_sym__val_number_decimal_token2] = ACTIONS(4524), + [anon_sym_DOT2] = ACTIONS(5555), + [aux_sym__val_number_decimal_token3] = ACTIONS(4528), + [aux_sym__val_number_token1] = ACTIONS(4530), + [aux_sym__val_number_token2] = ACTIONS(4530), + [aux_sym__val_number_token3] = ACTIONS(4530), + [aux_sym__val_number_token4] = ACTIONS(5557), + [aux_sym__val_number_token5] = ACTIONS(5557), + [aux_sym__val_number_token6] = ACTIONS(5557), + [anon_sym_0b] = ACTIONS(4534), + [anon_sym_0o] = ACTIONS(4536), + [anon_sym_0x] = ACTIONS(4536), + [sym_val_date] = ACTIONS(4538), + [anon_sym_DQUOTE] = ACTIONS(4540), + [sym__str_single_quotes] = ACTIONS(4542), + [sym__str_back_ticks] = ACTIONS(4542), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4544), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4546), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5559), [anon_sym_POUND] = ACTIONS(3), }, - [1706] = { - [sym_expr_unary] = STATE(6503), - [sym__expr_unary_minus] = STATE(6520), - [sym_expr_binary] = STATE(6503), - [sym__expr_binary_expression] = STATE(6521), - [sym_expr_parenthesized] = STATE(6503), - [sym__val_range] = STATE(10607), - [sym__value] = STATE(6503), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(6326), - [sym_val_variable] = STATE(6614), - [sym__var] = STATE(5803), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(4921), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(6614), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_unquoted] = STATE(6538), - [sym__unquoted_anonymous_prefix] = STATE(11330), - [sym_comment] = STATE(1706), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_LPAREN] = ACTIONS(5095), - [anon_sym_DOLLAR] = ACTIONS(5097), - [anon_sym_DASH] = ACTIONS(4947), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(5099), - [anon_sym_not] = ACTIONS(4951), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5101), - [anon_sym_DOT_DOT_LT] = ACTIONS(5101), - [anon_sym_null] = ACTIONS(4955), - [anon_sym_true] = ACTIONS(4957), - [anon_sym_false] = ACTIONS(4957), - [aux_sym__val_number_decimal_token1] = ACTIONS(4959), - [aux_sym__val_number_decimal_token2] = ACTIONS(4961), - [anon_sym_DOT2] = ACTIONS(5103), - [aux_sym__val_number_decimal_token3] = ACTIONS(4965), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(4967), - [aux_sym__val_number_token5] = ACTIONS(4967), - [aux_sym__val_number_token6] = ACTIONS(4967), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(4969), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(3584), + [1900] = { + [sym_expr_unary] = STATE(342), + [sym__expr_unary_minus] = STATE(415), + [sym_expr_binary] = STATE(342), + [sym__expr_binary_expression] = STATE(370), + [sym_expr_parenthesized] = STATE(342), + [sym__val_range] = STATE(10229), + [sym__value] = STATE(342), + [sym_val_nothing] = STATE(382), + [sym_val_bool] = STATE(335), + [sym_val_variable] = STATE(382), + [sym__var] = STATE(285), + [sym_val_number] = STATE(382), + [sym__val_number_decimal] = STATE(248), + [sym__val_number] = STATE(384), + [sym_val_duration] = STATE(382), + [sym_val_filesize] = STATE(382), + [sym_val_binary] = STATE(382), + [sym_val_string] = STATE(382), + [sym__str_double_quotes] = STATE(383), + [sym_val_interpolated] = STATE(382), + [sym__inter_single_quotes] = STATE(399), + [sym__inter_double_quotes] = STATE(400), + [sym_val_list] = STATE(382), + [sym_val_record] = STATE(382), + [sym_val_table] = STATE(382), + [sym_val_closure] = STATE(382), + [sym_unquoted] = STATE(354), + [sym__unquoted_anonymous_prefix] = STATE(10516), + [sym_comment] = STATE(1900), + [anon_sym_LBRACK] = ACTIONS(4502), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_DOLLAR] = ACTIONS(5549), + [anon_sym_DASH] = ACTIONS(4508), + [anon_sym_LBRACE] = ACTIONS(4510), + [anon_sym_DOT_DOT] = ACTIONS(5551), + [anon_sym_not] = ACTIONS(4514), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5553), + [anon_sym_DOT_DOT_LT] = ACTIONS(5553), + [anon_sym_null] = ACTIONS(4518), + [anon_sym_true] = ACTIONS(4520), + [anon_sym_false] = ACTIONS(4520), + [aux_sym__val_number_decimal_token1] = ACTIONS(4522), + [aux_sym__val_number_decimal_token2] = ACTIONS(4524), + [anon_sym_DOT2] = ACTIONS(5555), + [aux_sym__val_number_decimal_token3] = ACTIONS(4528), + [aux_sym__val_number_token1] = ACTIONS(4530), + [aux_sym__val_number_token2] = ACTIONS(4530), + [aux_sym__val_number_token3] = ACTIONS(4530), + [aux_sym__val_number_token4] = ACTIONS(5557), + [aux_sym__val_number_token5] = ACTIONS(5557), + [aux_sym__val_number_token6] = ACTIONS(5557), + [anon_sym_0b] = ACTIONS(4534), + [anon_sym_0o] = ACTIONS(4536), + [anon_sym_0x] = ACTIONS(4536), + [sym_val_date] = ACTIONS(4538), + [anon_sym_DQUOTE] = ACTIONS(4540), + [sym__str_single_quotes] = ACTIONS(4542), + [sym__str_back_ticks] = ACTIONS(4542), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4544), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4546), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5559), [anon_sym_POUND] = ACTIONS(3), }, - [1707] = { - [sym_expr_unary] = STATE(6503), - [sym__expr_unary_minus] = STATE(6520), - [sym_expr_binary] = STATE(6503), - [sym__expr_binary_expression] = STATE(6561), - [sym_expr_parenthesized] = STATE(6503), - [sym__val_range] = STATE(10607), - [sym__value] = STATE(6503), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(6326), - [sym_val_variable] = STATE(6614), - [sym__var] = STATE(5803), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(4921), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(6614), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_unquoted] = STATE(6573), - [sym__unquoted_anonymous_prefix] = STATE(11330), - [sym_comment] = STATE(1707), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_LPAREN] = ACTIONS(5095), - [anon_sym_DOLLAR] = ACTIONS(5097), - [anon_sym_DASH] = ACTIONS(4947), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(5099), - [anon_sym_not] = ACTIONS(4951), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5101), - [anon_sym_DOT_DOT_LT] = ACTIONS(5101), - [anon_sym_null] = ACTIONS(4955), - [anon_sym_true] = ACTIONS(4957), - [anon_sym_false] = ACTIONS(4957), - [aux_sym__val_number_decimal_token1] = ACTIONS(4959), - [aux_sym__val_number_decimal_token2] = ACTIONS(4961), - [anon_sym_DOT2] = ACTIONS(5103), - [aux_sym__val_number_decimal_token3] = ACTIONS(4965), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(4967), - [aux_sym__val_number_token5] = ACTIONS(4967), - [aux_sym__val_number_token6] = ACTIONS(4967), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(4969), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(3584), + [1901] = { + [sym_expr_unary] = STATE(342), + [sym__expr_unary_minus] = STATE(415), + [sym_expr_binary] = STATE(342), + [sym__expr_binary_expression] = STATE(371), + [sym_expr_parenthesized] = STATE(342), + [sym__val_range] = STATE(10229), + [sym__value] = STATE(342), + [sym_val_nothing] = STATE(382), + [sym_val_bool] = STATE(335), + [sym_val_variable] = STATE(382), + [sym__var] = STATE(285), + [sym_val_number] = STATE(382), + [sym__val_number_decimal] = STATE(248), + [sym__val_number] = STATE(384), + [sym_val_duration] = STATE(382), + [sym_val_filesize] = STATE(382), + [sym_val_binary] = STATE(382), + [sym_val_string] = STATE(382), + [sym__str_double_quotes] = STATE(383), + [sym_val_interpolated] = STATE(382), + [sym__inter_single_quotes] = STATE(399), + [sym__inter_double_quotes] = STATE(400), + [sym_val_list] = STATE(382), + [sym_val_record] = STATE(382), + [sym_val_table] = STATE(382), + [sym_val_closure] = STATE(382), + [sym_unquoted] = STATE(355), + [sym__unquoted_anonymous_prefix] = STATE(10516), + [sym_comment] = STATE(1901), + [anon_sym_LBRACK] = ACTIONS(4502), + [anon_sym_LPAREN] = ACTIONS(5547), + [anon_sym_DOLLAR] = ACTIONS(5549), + [anon_sym_DASH] = ACTIONS(4508), + [anon_sym_LBRACE] = ACTIONS(4510), + [anon_sym_DOT_DOT] = ACTIONS(5551), + [anon_sym_not] = ACTIONS(4514), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5553), + [anon_sym_DOT_DOT_LT] = ACTIONS(5553), + [anon_sym_null] = ACTIONS(4518), + [anon_sym_true] = ACTIONS(4520), + [anon_sym_false] = ACTIONS(4520), + [aux_sym__val_number_decimal_token1] = ACTIONS(4522), + [aux_sym__val_number_decimal_token2] = ACTIONS(4524), + [anon_sym_DOT2] = ACTIONS(5555), + [aux_sym__val_number_decimal_token3] = ACTIONS(4528), + [aux_sym__val_number_token1] = ACTIONS(4530), + [aux_sym__val_number_token2] = ACTIONS(4530), + [aux_sym__val_number_token3] = ACTIONS(4530), + [aux_sym__val_number_token4] = ACTIONS(5557), + [aux_sym__val_number_token5] = ACTIONS(5557), + [aux_sym__val_number_token6] = ACTIONS(5557), + [anon_sym_0b] = ACTIONS(4534), + [anon_sym_0o] = ACTIONS(4536), + [anon_sym_0x] = ACTIONS(4536), + [sym_val_date] = ACTIONS(4538), + [anon_sym_DQUOTE] = ACTIONS(4540), + [sym__str_single_quotes] = ACTIONS(4542), + [sym__str_back_ticks] = ACTIONS(4542), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4544), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4546), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5559), [anon_sym_POUND] = ACTIONS(3), }, - [1708] = { - [sym_expr_unary] = STATE(6503), - [sym__expr_unary_minus] = STATE(6520), - [sym_expr_binary] = STATE(6503), - [sym__expr_binary_expression] = STATE(6578), - [sym_expr_parenthesized] = STATE(6503), - [sym__val_range] = STATE(10607), - [sym__value] = STATE(6503), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(6326), - [sym_val_variable] = STATE(6614), - [sym__var] = STATE(5803), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(4921), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(6614), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_unquoted] = STATE(6605), - [sym__unquoted_anonymous_prefix] = STATE(11330), - [sym_comment] = STATE(1708), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_LPAREN] = ACTIONS(5095), - [anon_sym_DOLLAR] = ACTIONS(5097), - [anon_sym_DASH] = ACTIONS(4947), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(5099), - [anon_sym_not] = ACTIONS(4951), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5101), - [anon_sym_DOT_DOT_LT] = ACTIONS(5101), - [anon_sym_null] = ACTIONS(4955), - [anon_sym_true] = ACTIONS(4957), - [anon_sym_false] = ACTIONS(4957), - [aux_sym__val_number_decimal_token1] = ACTIONS(4959), - [aux_sym__val_number_decimal_token2] = ACTIONS(4961), - [anon_sym_DOT2] = ACTIONS(5103), - [aux_sym__val_number_decimal_token3] = ACTIONS(4965), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(4967), - [aux_sym__val_number_token5] = ACTIONS(4967), - [aux_sym__val_number_token6] = ACTIONS(4967), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(4969), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(3584), + [1902] = { + [sym_expr_unary] = STATE(2171), + [sym__expr_unary_minus] = STATE(2161), + [sym_expr_binary] = STATE(2171), + [sym__expr_binary_expression] = STATE(2069), + [sym_expr_parenthesized] = STATE(2171), + [sym__val_range] = STATE(10231), + [sym__value] = STATE(2171), + [sym_val_nothing] = STATE(2024), + [sym_val_bool] = STATE(1948), + [sym_val_variable] = STATE(2024), + [sym__var] = STATE(1145), + [sym_val_number] = STATE(2024), + [sym__val_number_decimal] = STATE(918), + [sym__val_number] = STATE(2051), + [sym_val_duration] = STATE(2024), + [sym_val_filesize] = STATE(2024), + [sym_val_binary] = STATE(2024), + [sym_val_string] = STATE(2024), + [sym__str_double_quotes] = STATE(2038), + [sym_val_interpolated] = STATE(2024), + [sym__inter_single_quotes] = STATE(2189), + [sym__inter_double_quotes] = STATE(2190), + [sym_val_list] = STATE(2024), + [sym_val_record] = STATE(2024), + [sym_val_table] = STATE(2024), + [sym_val_closure] = STATE(2024), + [sym_unquoted] = STATE(2247), + [sym__unquoted_anonymous_prefix] = STATE(10547), + [sym_comment] = STATE(1902), + [anon_sym_LBRACK] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(5561), + [anon_sym_DOLLAR] = ACTIONS(5563), + [anon_sym_DASH] = ACTIONS(4556), + [anon_sym_LBRACE] = ACTIONS(4558), + [anon_sym_DOT_DOT] = ACTIONS(5565), + [anon_sym_not] = ACTIONS(4562), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5567), + [anon_sym_DOT_DOT_LT] = ACTIONS(5567), + [anon_sym_null] = ACTIONS(4566), + [anon_sym_true] = ACTIONS(4568), + [anon_sym_false] = ACTIONS(4568), + [aux_sym__val_number_decimal_token1] = ACTIONS(4570), + [aux_sym__val_number_decimal_token2] = ACTIONS(4572), + [anon_sym_DOT2] = ACTIONS(5569), + [aux_sym__val_number_decimal_token3] = ACTIONS(4576), + [aux_sym__val_number_token1] = ACTIONS(4578), + [aux_sym__val_number_token2] = ACTIONS(4578), + [aux_sym__val_number_token3] = ACTIONS(4578), + [aux_sym__val_number_token4] = ACTIONS(5571), + [aux_sym__val_number_token5] = ACTIONS(5571), + [aux_sym__val_number_token6] = ACTIONS(5571), + [anon_sym_0b] = ACTIONS(4582), + [anon_sym_0o] = ACTIONS(4584), + [anon_sym_0x] = ACTIONS(4584), + [sym_val_date] = ACTIONS(4586), + [anon_sym_DQUOTE] = ACTIONS(4588), + [sym__str_single_quotes] = ACTIONS(4590), + [sym__str_back_ticks] = ACTIONS(4590), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4592), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4594), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5573), [anon_sym_POUND] = ACTIONS(3), }, - [1709] = { - [sym_expr_unary] = STATE(6503), - [sym__expr_unary_minus] = STATE(6520), - [sym_expr_binary] = STATE(6503), - [sym__expr_binary_expression] = STATE(6606), - [sym_expr_parenthesized] = STATE(6503), - [sym__val_range] = STATE(10607), - [sym__value] = STATE(6503), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(6326), - [sym_val_variable] = STATE(6614), - [sym__var] = STATE(5803), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(4921), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(6614), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_unquoted] = STATE(6476), - [sym__unquoted_anonymous_prefix] = STATE(11330), - [sym_comment] = STATE(1709), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_LPAREN] = ACTIONS(5095), - [anon_sym_DOLLAR] = ACTIONS(5097), - [anon_sym_DASH] = ACTIONS(4947), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(5099), - [anon_sym_not] = ACTIONS(4951), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5101), - [anon_sym_DOT_DOT_LT] = ACTIONS(5101), - [anon_sym_null] = ACTIONS(4955), - [anon_sym_true] = ACTIONS(4957), - [anon_sym_false] = ACTIONS(4957), - [aux_sym__val_number_decimal_token1] = ACTIONS(4959), - [aux_sym__val_number_decimal_token2] = ACTIONS(4961), - [anon_sym_DOT2] = ACTIONS(5103), - [aux_sym__val_number_decimal_token3] = ACTIONS(4965), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(4967), - [aux_sym__val_number_token5] = ACTIONS(4967), - [aux_sym__val_number_token6] = ACTIONS(4967), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(4969), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(3584), + [1903] = { + [sym_expr_unary] = STATE(2171), + [sym__expr_unary_minus] = STATE(2161), + [sym_expr_binary] = STATE(2171), + [sym__expr_binary_expression] = STATE(2157), + [sym_expr_parenthesized] = STATE(2171), + [sym__val_range] = STATE(10231), + [sym__value] = STATE(2171), + [sym_val_nothing] = STATE(2024), + [sym_val_bool] = STATE(1948), + [sym_val_variable] = STATE(2024), + [sym__var] = STATE(1145), + [sym_val_number] = STATE(2024), + [sym__val_number_decimal] = STATE(918), + [sym__val_number] = STATE(2051), + [sym_val_duration] = STATE(2024), + [sym_val_filesize] = STATE(2024), + [sym_val_binary] = STATE(2024), + [sym_val_string] = STATE(2024), + [sym__str_double_quotes] = STATE(2038), + [sym_val_interpolated] = STATE(2024), + [sym__inter_single_quotes] = STATE(2189), + [sym__inter_double_quotes] = STATE(2190), + [sym_val_list] = STATE(2024), + [sym_val_record] = STATE(2024), + [sym_val_table] = STATE(2024), + [sym_val_closure] = STATE(2024), + [sym_unquoted] = STATE(2007), + [sym__unquoted_anonymous_prefix] = STATE(10547), + [sym_comment] = STATE(1903), + [anon_sym_LBRACK] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(5561), + [anon_sym_DOLLAR] = ACTIONS(5563), + [anon_sym_DASH] = ACTIONS(4556), + [anon_sym_LBRACE] = ACTIONS(4558), + [anon_sym_DOT_DOT] = ACTIONS(5565), + [anon_sym_not] = ACTIONS(4562), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5567), + [anon_sym_DOT_DOT_LT] = ACTIONS(5567), + [anon_sym_null] = ACTIONS(4566), + [anon_sym_true] = ACTIONS(4568), + [anon_sym_false] = ACTIONS(4568), + [aux_sym__val_number_decimal_token1] = ACTIONS(4570), + [aux_sym__val_number_decimal_token2] = ACTIONS(4572), + [anon_sym_DOT2] = ACTIONS(5569), + [aux_sym__val_number_decimal_token3] = ACTIONS(4576), + [aux_sym__val_number_token1] = ACTIONS(4578), + [aux_sym__val_number_token2] = ACTIONS(4578), + [aux_sym__val_number_token3] = ACTIONS(4578), + [aux_sym__val_number_token4] = ACTIONS(5571), + [aux_sym__val_number_token5] = ACTIONS(5571), + [aux_sym__val_number_token6] = ACTIONS(5571), + [anon_sym_0b] = ACTIONS(4582), + [anon_sym_0o] = ACTIONS(4584), + [anon_sym_0x] = ACTIONS(4584), + [sym_val_date] = ACTIONS(4586), + [anon_sym_DQUOTE] = ACTIONS(4588), + [sym__str_single_quotes] = ACTIONS(4590), + [sym__str_back_ticks] = ACTIONS(4590), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4592), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4594), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5573), [anon_sym_POUND] = ACTIONS(3), }, - [1710] = { - [sym_expr_unary] = STATE(6503), - [sym__expr_unary_minus] = STATE(6520), - [sym_expr_binary] = STATE(6503), - [sym__expr_binary_expression] = STATE(6467), - [sym_expr_parenthesized] = STATE(6503), - [sym__val_range] = STATE(10607), - [sym__value] = STATE(6503), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(6326), - [sym_val_variable] = STATE(6614), - [sym__var] = STATE(5803), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(4921), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(6614), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_unquoted] = STATE(6568), - [sym__unquoted_anonymous_prefix] = STATE(11330), - [sym_comment] = STATE(1710), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_LPAREN] = ACTIONS(5095), - [anon_sym_DOLLAR] = ACTIONS(5097), - [anon_sym_DASH] = ACTIONS(4947), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(5099), - [anon_sym_not] = ACTIONS(4951), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5101), - [anon_sym_DOT_DOT_LT] = ACTIONS(5101), - [anon_sym_null] = ACTIONS(4955), - [anon_sym_true] = ACTIONS(4957), - [anon_sym_false] = ACTIONS(4957), - [aux_sym__val_number_decimal_token1] = ACTIONS(4959), - [aux_sym__val_number_decimal_token2] = ACTIONS(4961), - [anon_sym_DOT2] = ACTIONS(5103), - [aux_sym__val_number_decimal_token3] = ACTIONS(4965), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(4967), - [aux_sym__val_number_token5] = ACTIONS(4967), - [aux_sym__val_number_token6] = ACTIONS(4967), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(4969), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(3584), + [1904] = { + [sym_expr_unary] = STATE(2171), + [sym__expr_unary_minus] = STATE(2161), + [sym_expr_binary] = STATE(2171), + [sym__expr_binary_expression] = STATE(2186), + [sym_expr_parenthesized] = STATE(2171), + [sym__val_range] = STATE(10231), + [sym__value] = STATE(2171), + [sym_val_nothing] = STATE(2024), + [sym_val_bool] = STATE(1948), + [sym_val_variable] = STATE(2024), + [sym__var] = STATE(1145), + [sym_val_number] = STATE(2024), + [sym__val_number_decimal] = STATE(918), + [sym__val_number] = STATE(2051), + [sym_val_duration] = STATE(2024), + [sym_val_filesize] = STATE(2024), + [sym_val_binary] = STATE(2024), + [sym_val_string] = STATE(2024), + [sym__str_double_quotes] = STATE(2038), + [sym_val_interpolated] = STATE(2024), + [sym__inter_single_quotes] = STATE(2189), + [sym__inter_double_quotes] = STATE(2190), + [sym_val_list] = STATE(2024), + [sym_val_record] = STATE(2024), + [sym_val_table] = STATE(2024), + [sym_val_closure] = STATE(2024), + [sym_unquoted] = STATE(2016), + [sym__unquoted_anonymous_prefix] = STATE(10547), + [sym_comment] = STATE(1904), + [anon_sym_LBRACK] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(5561), + [anon_sym_DOLLAR] = ACTIONS(5563), + [anon_sym_DASH] = ACTIONS(4556), + [anon_sym_LBRACE] = ACTIONS(4558), + [anon_sym_DOT_DOT] = ACTIONS(5565), + [anon_sym_not] = ACTIONS(4562), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5567), + [anon_sym_DOT_DOT_LT] = ACTIONS(5567), + [anon_sym_null] = ACTIONS(4566), + [anon_sym_true] = ACTIONS(4568), + [anon_sym_false] = ACTIONS(4568), + [aux_sym__val_number_decimal_token1] = ACTIONS(4570), + [aux_sym__val_number_decimal_token2] = ACTIONS(4572), + [anon_sym_DOT2] = ACTIONS(5569), + [aux_sym__val_number_decimal_token3] = ACTIONS(4576), + [aux_sym__val_number_token1] = ACTIONS(4578), + [aux_sym__val_number_token2] = ACTIONS(4578), + [aux_sym__val_number_token3] = ACTIONS(4578), + [aux_sym__val_number_token4] = ACTIONS(5571), + [aux_sym__val_number_token5] = ACTIONS(5571), + [aux_sym__val_number_token6] = ACTIONS(5571), + [anon_sym_0b] = ACTIONS(4582), + [anon_sym_0o] = ACTIONS(4584), + [anon_sym_0x] = ACTIONS(4584), + [sym_val_date] = ACTIONS(4586), + [anon_sym_DQUOTE] = ACTIONS(4588), + [sym__str_single_quotes] = ACTIONS(4590), + [sym__str_back_ticks] = ACTIONS(4590), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4592), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4594), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5573), [anon_sym_POUND] = ACTIONS(3), }, - [1711] = { - [sym_expr_unary] = STATE(6503), - [sym__expr_unary_minus] = STATE(6520), - [sym_expr_binary] = STATE(6503), - [sym__expr_binary_expression] = STATE(6567), - [sym_expr_parenthesized] = STATE(6503), - [sym__val_range] = STATE(10607), - [sym__value] = STATE(6503), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(6326), - [sym_val_variable] = STATE(6614), - [sym__var] = STATE(5803), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(4921), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(6614), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_unquoted] = STATE(6580), - [sym__unquoted_anonymous_prefix] = STATE(11330), - [sym_comment] = STATE(1711), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_LPAREN] = ACTIONS(5095), - [anon_sym_DOLLAR] = ACTIONS(5097), - [anon_sym_DASH] = ACTIONS(4947), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(5099), - [anon_sym_not] = ACTIONS(4951), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5101), - [anon_sym_DOT_DOT_LT] = ACTIONS(5101), - [anon_sym_null] = ACTIONS(4955), - [anon_sym_true] = ACTIONS(4957), - [anon_sym_false] = ACTIONS(4957), - [aux_sym__val_number_decimal_token1] = ACTIONS(4959), - [aux_sym__val_number_decimal_token2] = ACTIONS(4961), - [anon_sym_DOT2] = ACTIONS(5103), - [aux_sym__val_number_decimal_token3] = ACTIONS(4965), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(4967), - [aux_sym__val_number_token5] = ACTIONS(4967), - [aux_sym__val_number_token6] = ACTIONS(4967), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(4969), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(3584), + [1905] = { + [sym_expr_unary] = STATE(2171), + [sym__expr_unary_minus] = STATE(2161), + [sym_expr_binary] = STATE(2171), + [sym__expr_binary_expression] = STATE(2004), + [sym_expr_parenthesized] = STATE(2171), + [sym__val_range] = STATE(10231), + [sym__value] = STATE(2171), + [sym_val_nothing] = STATE(2024), + [sym_val_bool] = STATE(1948), + [sym_val_variable] = STATE(2024), + [sym__var] = STATE(1145), + [sym_val_number] = STATE(2024), + [sym__val_number_decimal] = STATE(918), + [sym__val_number] = STATE(2051), + [sym_val_duration] = STATE(2024), + [sym_val_filesize] = STATE(2024), + [sym_val_binary] = STATE(2024), + [sym_val_string] = STATE(2024), + [sym__str_double_quotes] = STATE(2038), + [sym_val_interpolated] = STATE(2024), + [sym__inter_single_quotes] = STATE(2189), + [sym__inter_double_quotes] = STATE(2190), + [sym_val_list] = STATE(2024), + [sym_val_record] = STATE(2024), + [sym_val_table] = STATE(2024), + [sym_val_closure] = STATE(2024), + [sym_unquoted] = STATE(2029), + [sym__unquoted_anonymous_prefix] = STATE(10547), + [sym_comment] = STATE(1905), + [anon_sym_LBRACK] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(5561), + [anon_sym_DOLLAR] = ACTIONS(5563), + [anon_sym_DASH] = ACTIONS(4556), + [anon_sym_LBRACE] = ACTIONS(4558), + [anon_sym_DOT_DOT] = ACTIONS(5565), + [anon_sym_not] = ACTIONS(4562), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5567), + [anon_sym_DOT_DOT_LT] = ACTIONS(5567), + [anon_sym_null] = ACTIONS(4566), + [anon_sym_true] = ACTIONS(4568), + [anon_sym_false] = ACTIONS(4568), + [aux_sym__val_number_decimal_token1] = ACTIONS(4570), + [aux_sym__val_number_decimal_token2] = ACTIONS(4572), + [anon_sym_DOT2] = ACTIONS(5569), + [aux_sym__val_number_decimal_token3] = ACTIONS(4576), + [aux_sym__val_number_token1] = ACTIONS(4578), + [aux_sym__val_number_token2] = ACTIONS(4578), + [aux_sym__val_number_token3] = ACTIONS(4578), + [aux_sym__val_number_token4] = ACTIONS(5571), + [aux_sym__val_number_token5] = ACTIONS(5571), + [aux_sym__val_number_token6] = ACTIONS(5571), + [anon_sym_0b] = ACTIONS(4582), + [anon_sym_0o] = ACTIONS(4584), + [anon_sym_0x] = ACTIONS(4584), + [sym_val_date] = ACTIONS(4586), + [anon_sym_DQUOTE] = ACTIONS(4588), + [sym__str_single_quotes] = ACTIONS(4590), + [sym__str_back_ticks] = ACTIONS(4590), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4592), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4594), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5573), [anon_sym_POUND] = ACTIONS(3), }, - [1712] = { - [sym_expr_unary] = STATE(6503), - [sym__expr_unary_minus] = STATE(6520), - [sym_expr_binary] = STATE(6503), - [sym__expr_binary_expression] = STATE(6591), - [sym_expr_parenthesized] = STATE(6503), - [sym__val_range] = STATE(10607), - [sym__value] = STATE(6503), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(6326), - [sym_val_variable] = STATE(6614), - [sym__var] = STATE(5803), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(4921), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(6614), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_unquoted] = STATE(6461), - [sym__unquoted_anonymous_prefix] = STATE(11330), - [sym_comment] = STATE(1712), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_LPAREN] = ACTIONS(5095), - [anon_sym_DOLLAR] = ACTIONS(5097), - [anon_sym_DASH] = ACTIONS(4947), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(5099), - [anon_sym_not] = ACTIONS(4951), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5101), - [anon_sym_DOT_DOT_LT] = ACTIONS(5101), - [anon_sym_null] = ACTIONS(4955), - [anon_sym_true] = ACTIONS(4957), - [anon_sym_false] = ACTIONS(4957), - [aux_sym__val_number_decimal_token1] = ACTIONS(4959), - [aux_sym__val_number_decimal_token2] = ACTIONS(4961), - [anon_sym_DOT2] = ACTIONS(5103), - [aux_sym__val_number_decimal_token3] = ACTIONS(4965), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(4967), - [aux_sym__val_number_token5] = ACTIONS(4967), - [aux_sym__val_number_token6] = ACTIONS(4967), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(4969), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(3584), + [1906] = { + [sym_expr_unary] = STATE(2171), + [sym__expr_unary_minus] = STATE(2161), + [sym_expr_binary] = STATE(2171), + [sym__expr_binary_expression] = STATE(2173), + [sym_expr_parenthesized] = STATE(2171), + [sym__val_range] = STATE(10231), + [sym__value] = STATE(2171), + [sym_val_nothing] = STATE(2024), + [sym_val_bool] = STATE(1948), + [sym_val_variable] = STATE(2024), + [sym__var] = STATE(1145), + [sym_val_number] = STATE(2024), + [sym__val_number_decimal] = STATE(918), + [sym__val_number] = STATE(2051), + [sym_val_duration] = STATE(2024), + [sym_val_filesize] = STATE(2024), + [sym_val_binary] = STATE(2024), + [sym_val_string] = STATE(2024), + [sym__str_double_quotes] = STATE(2038), + [sym_val_interpolated] = STATE(2024), + [sym__inter_single_quotes] = STATE(2189), + [sym__inter_double_quotes] = STATE(2190), + [sym_val_list] = STATE(2024), + [sym_val_record] = STATE(2024), + [sym_val_table] = STATE(2024), + [sym_val_closure] = STATE(2024), + [sym_unquoted] = STATE(2055), + [sym__unquoted_anonymous_prefix] = STATE(10547), + [sym_comment] = STATE(1906), + [anon_sym_LBRACK] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(5561), + [anon_sym_DOLLAR] = ACTIONS(5563), + [anon_sym_DASH] = ACTIONS(4556), + [anon_sym_LBRACE] = ACTIONS(4558), + [anon_sym_DOT_DOT] = ACTIONS(5565), + [anon_sym_not] = ACTIONS(4562), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5567), + [anon_sym_DOT_DOT_LT] = ACTIONS(5567), + [anon_sym_null] = ACTIONS(4566), + [anon_sym_true] = ACTIONS(4568), + [anon_sym_false] = ACTIONS(4568), + [aux_sym__val_number_decimal_token1] = ACTIONS(4570), + [aux_sym__val_number_decimal_token2] = ACTIONS(4572), + [anon_sym_DOT2] = ACTIONS(5569), + [aux_sym__val_number_decimal_token3] = ACTIONS(4576), + [aux_sym__val_number_token1] = ACTIONS(4578), + [aux_sym__val_number_token2] = ACTIONS(4578), + [aux_sym__val_number_token3] = ACTIONS(4578), + [aux_sym__val_number_token4] = ACTIONS(5571), + [aux_sym__val_number_token5] = ACTIONS(5571), + [aux_sym__val_number_token6] = ACTIONS(5571), + [anon_sym_0b] = ACTIONS(4582), + [anon_sym_0o] = ACTIONS(4584), + [anon_sym_0x] = ACTIONS(4584), + [sym_val_date] = ACTIONS(4586), + [anon_sym_DQUOTE] = ACTIONS(4588), + [sym__str_single_quotes] = ACTIONS(4590), + [sym__str_back_ticks] = ACTIONS(4590), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4592), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4594), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5573), [anon_sym_POUND] = ACTIONS(3), }, - [1713] = { - [sym_expr_unary] = STATE(6503), - [sym__expr_unary_minus] = STATE(6520), - [sym_expr_binary] = STATE(6503), - [sym__expr_binary_expression] = STATE(6474), - [sym_expr_parenthesized] = STATE(6503), - [sym__val_range] = STATE(10607), - [sym__value] = STATE(6503), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(6326), - [sym_val_variable] = STATE(6614), - [sym__var] = STATE(5803), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(4921), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(6614), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_unquoted] = STATE(6475), - [sym__unquoted_anonymous_prefix] = STATE(11330), - [sym_comment] = STATE(1713), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_LPAREN] = ACTIONS(5095), - [anon_sym_DOLLAR] = ACTIONS(5097), - [anon_sym_DASH] = ACTIONS(4947), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(5099), - [anon_sym_not] = ACTIONS(4951), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5101), - [anon_sym_DOT_DOT_LT] = ACTIONS(5101), - [anon_sym_null] = ACTIONS(4955), - [anon_sym_true] = ACTIONS(4957), - [anon_sym_false] = ACTIONS(4957), - [aux_sym__val_number_decimal_token1] = ACTIONS(4959), - [aux_sym__val_number_decimal_token2] = ACTIONS(4961), - [anon_sym_DOT2] = ACTIONS(5103), - [aux_sym__val_number_decimal_token3] = ACTIONS(4965), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(4967), - [aux_sym__val_number_token5] = ACTIONS(4967), - [aux_sym__val_number_token6] = ACTIONS(4967), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(4969), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(3584), + [1907] = { + [sym_expr_unary] = STATE(2171), + [sym__expr_unary_minus] = STATE(2161), + [sym_expr_binary] = STATE(2171), + [sym__expr_binary_expression] = STATE(2227), + [sym_expr_parenthesized] = STATE(2171), + [sym__val_range] = STATE(10231), + [sym__value] = STATE(2171), + [sym_val_nothing] = STATE(2024), + [sym_val_bool] = STATE(1948), + [sym_val_variable] = STATE(2024), + [sym__var] = STATE(1145), + [sym_val_number] = STATE(2024), + [sym__val_number_decimal] = STATE(918), + [sym__val_number] = STATE(2051), + [sym_val_duration] = STATE(2024), + [sym_val_filesize] = STATE(2024), + [sym_val_binary] = STATE(2024), + [sym_val_string] = STATE(2024), + [sym__str_double_quotes] = STATE(2038), + [sym_val_interpolated] = STATE(2024), + [sym__inter_single_quotes] = STATE(2189), + [sym__inter_double_quotes] = STATE(2190), + [sym_val_list] = STATE(2024), + [sym_val_record] = STATE(2024), + [sym_val_table] = STATE(2024), + [sym_val_closure] = STATE(2024), + [sym_unquoted] = STATE(2061), + [sym__unquoted_anonymous_prefix] = STATE(10547), + [sym_comment] = STATE(1907), + [anon_sym_LBRACK] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(5561), + [anon_sym_DOLLAR] = ACTIONS(5563), + [anon_sym_DASH] = ACTIONS(4556), + [anon_sym_LBRACE] = ACTIONS(4558), + [anon_sym_DOT_DOT] = ACTIONS(5565), + [anon_sym_not] = ACTIONS(4562), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5567), + [anon_sym_DOT_DOT_LT] = ACTIONS(5567), + [anon_sym_null] = ACTIONS(4566), + [anon_sym_true] = ACTIONS(4568), + [anon_sym_false] = ACTIONS(4568), + [aux_sym__val_number_decimal_token1] = ACTIONS(4570), + [aux_sym__val_number_decimal_token2] = ACTIONS(4572), + [anon_sym_DOT2] = ACTIONS(5569), + [aux_sym__val_number_decimal_token3] = ACTIONS(4576), + [aux_sym__val_number_token1] = ACTIONS(4578), + [aux_sym__val_number_token2] = ACTIONS(4578), + [aux_sym__val_number_token3] = ACTIONS(4578), + [aux_sym__val_number_token4] = ACTIONS(5571), + [aux_sym__val_number_token5] = ACTIONS(5571), + [aux_sym__val_number_token6] = ACTIONS(5571), + [anon_sym_0b] = ACTIONS(4582), + [anon_sym_0o] = ACTIONS(4584), + [anon_sym_0x] = ACTIONS(4584), + [sym_val_date] = ACTIONS(4586), + [anon_sym_DQUOTE] = ACTIONS(4588), + [sym__str_single_quotes] = ACTIONS(4590), + [sym__str_back_ticks] = ACTIONS(4590), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4592), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4594), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5573), [anon_sym_POUND] = ACTIONS(3), }, - [1714] = { - [sym_expr_unary] = STATE(6503), - [sym__expr_unary_minus] = STATE(6520), - [sym_expr_binary] = STATE(6503), - [sym__expr_binary_expression] = STATE(6598), - [sym_expr_parenthesized] = STATE(6503), - [sym__val_range] = STATE(10607), - [sym__value] = STATE(6503), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(6326), - [sym_val_variable] = STATE(6614), - [sym__var] = STATE(5803), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(4921), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(6614), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_unquoted] = STATE(6478), - [sym__unquoted_anonymous_prefix] = STATE(11330), - [sym_comment] = STATE(1714), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_LPAREN] = ACTIONS(5095), - [anon_sym_DOLLAR] = ACTIONS(5097), - [anon_sym_DASH] = ACTIONS(4947), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(5099), - [anon_sym_not] = ACTIONS(4951), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5101), - [anon_sym_DOT_DOT_LT] = ACTIONS(5101), - [anon_sym_null] = ACTIONS(4955), - [anon_sym_true] = ACTIONS(4957), - [anon_sym_false] = ACTIONS(4957), - [aux_sym__val_number_decimal_token1] = ACTIONS(4959), - [aux_sym__val_number_decimal_token2] = ACTIONS(4961), - [anon_sym_DOT2] = ACTIONS(5103), - [aux_sym__val_number_decimal_token3] = ACTIONS(4965), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(4967), - [aux_sym__val_number_token5] = ACTIONS(4967), - [aux_sym__val_number_token6] = ACTIONS(4967), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(4969), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(3584), + [1908] = { + [sym_expr_unary] = STATE(2171), + [sym__expr_unary_minus] = STATE(2161), + [sym_expr_binary] = STATE(2171), + [sym__expr_binary_expression] = STATE(2005), + [sym_expr_parenthesized] = STATE(2171), + [sym__val_range] = STATE(10231), + [sym__value] = STATE(2171), + [sym_val_nothing] = STATE(2024), + [sym_val_bool] = STATE(1948), + [sym_val_variable] = STATE(2024), + [sym__var] = STATE(1145), + [sym_val_number] = STATE(2024), + [sym__val_number_decimal] = STATE(918), + [sym__val_number] = STATE(2051), + [sym_val_duration] = STATE(2024), + [sym_val_filesize] = STATE(2024), + [sym_val_binary] = STATE(2024), + [sym_val_string] = STATE(2024), + [sym__str_double_quotes] = STATE(2038), + [sym_val_interpolated] = STATE(2024), + [sym__inter_single_quotes] = STATE(2189), + [sym__inter_double_quotes] = STATE(2190), + [sym_val_list] = STATE(2024), + [sym_val_record] = STATE(2024), + [sym_val_table] = STATE(2024), + [sym_val_closure] = STATE(2024), + [sym_unquoted] = STATE(2079), + [sym__unquoted_anonymous_prefix] = STATE(10547), + [sym_comment] = STATE(1908), + [anon_sym_LBRACK] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(5561), + [anon_sym_DOLLAR] = ACTIONS(5563), + [anon_sym_DASH] = ACTIONS(4556), + [anon_sym_LBRACE] = ACTIONS(4558), + [anon_sym_DOT_DOT] = ACTIONS(5565), + [anon_sym_not] = ACTIONS(4562), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5567), + [anon_sym_DOT_DOT_LT] = ACTIONS(5567), + [anon_sym_null] = ACTIONS(4566), + [anon_sym_true] = ACTIONS(4568), + [anon_sym_false] = ACTIONS(4568), + [aux_sym__val_number_decimal_token1] = ACTIONS(4570), + [aux_sym__val_number_decimal_token2] = ACTIONS(4572), + [anon_sym_DOT2] = ACTIONS(5569), + [aux_sym__val_number_decimal_token3] = ACTIONS(4576), + [aux_sym__val_number_token1] = ACTIONS(4578), + [aux_sym__val_number_token2] = ACTIONS(4578), + [aux_sym__val_number_token3] = ACTIONS(4578), + [aux_sym__val_number_token4] = ACTIONS(5571), + [aux_sym__val_number_token5] = ACTIONS(5571), + [aux_sym__val_number_token6] = ACTIONS(5571), + [anon_sym_0b] = ACTIONS(4582), + [anon_sym_0o] = ACTIONS(4584), + [anon_sym_0x] = ACTIONS(4584), + [sym_val_date] = ACTIONS(4586), + [anon_sym_DQUOTE] = ACTIONS(4588), + [sym__str_single_quotes] = ACTIONS(4590), + [sym__str_back_ticks] = ACTIONS(4590), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4592), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4594), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5573), [anon_sym_POUND] = ACTIONS(3), }, - [1715] = { - [sym_expr_unary] = STATE(6503), - [sym__expr_unary_minus] = STATE(6520), - [sym_expr_binary] = STATE(6503), - [sym__expr_binary_expression] = STATE(6466), - [sym_expr_parenthesized] = STATE(6503), - [sym__val_range] = STATE(10607), - [sym__value] = STATE(6503), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(6326), - [sym_val_variable] = STATE(6614), - [sym__var] = STATE(5803), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(4921), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(6614), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_unquoted] = STATE(6469), - [sym__unquoted_anonymous_prefix] = STATE(11330), - [sym_comment] = STATE(1715), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_LPAREN] = ACTIONS(5095), - [anon_sym_DOLLAR] = ACTIONS(5097), - [anon_sym_DASH] = ACTIONS(4947), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(5099), - [anon_sym_not] = ACTIONS(4951), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5101), - [anon_sym_DOT_DOT_LT] = ACTIONS(5101), - [anon_sym_null] = ACTIONS(4955), - [anon_sym_true] = ACTIONS(4957), - [anon_sym_false] = ACTIONS(4957), - [aux_sym__val_number_decimal_token1] = ACTIONS(4959), - [aux_sym__val_number_decimal_token2] = ACTIONS(4961), - [anon_sym_DOT2] = ACTIONS(5103), - [aux_sym__val_number_decimal_token3] = ACTIONS(4965), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(4967), - [aux_sym__val_number_token5] = ACTIONS(4967), - [aux_sym__val_number_token6] = ACTIONS(4967), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(4969), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(3584), + [1909] = { + [sym_expr_unary] = STATE(2171), + [sym__expr_unary_minus] = STATE(2161), + [sym_expr_binary] = STATE(2171), + [sym__expr_binary_expression] = STATE(2009), + [sym_expr_parenthesized] = STATE(2171), + [sym__val_range] = STATE(10231), + [sym__value] = STATE(2171), + [sym_val_nothing] = STATE(2024), + [sym_val_bool] = STATE(1948), + [sym_val_variable] = STATE(2024), + [sym__var] = STATE(1145), + [sym_val_number] = STATE(2024), + [sym__val_number_decimal] = STATE(918), + [sym__val_number] = STATE(2051), + [sym_val_duration] = STATE(2024), + [sym_val_filesize] = STATE(2024), + [sym_val_binary] = STATE(2024), + [sym_val_string] = STATE(2024), + [sym__str_double_quotes] = STATE(2038), + [sym_val_interpolated] = STATE(2024), + [sym__inter_single_quotes] = STATE(2189), + [sym__inter_double_quotes] = STATE(2190), + [sym_val_list] = STATE(2024), + [sym_val_record] = STATE(2024), + [sym_val_table] = STATE(2024), + [sym_val_closure] = STATE(2024), + [sym_unquoted] = STATE(2096), + [sym__unquoted_anonymous_prefix] = STATE(10547), + [sym_comment] = STATE(1909), + [anon_sym_LBRACK] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(5561), + [anon_sym_DOLLAR] = ACTIONS(5563), + [anon_sym_DASH] = ACTIONS(4556), + [anon_sym_LBRACE] = ACTIONS(4558), + [anon_sym_DOT_DOT] = ACTIONS(5565), + [anon_sym_not] = ACTIONS(4562), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5567), + [anon_sym_DOT_DOT_LT] = ACTIONS(5567), + [anon_sym_null] = ACTIONS(4566), + [anon_sym_true] = ACTIONS(4568), + [anon_sym_false] = ACTIONS(4568), + [aux_sym__val_number_decimal_token1] = ACTIONS(4570), + [aux_sym__val_number_decimal_token2] = ACTIONS(4572), + [anon_sym_DOT2] = ACTIONS(5569), + [aux_sym__val_number_decimal_token3] = ACTIONS(4576), + [aux_sym__val_number_token1] = ACTIONS(4578), + [aux_sym__val_number_token2] = ACTIONS(4578), + [aux_sym__val_number_token3] = ACTIONS(4578), + [aux_sym__val_number_token4] = ACTIONS(5571), + [aux_sym__val_number_token5] = ACTIONS(5571), + [aux_sym__val_number_token6] = ACTIONS(5571), + [anon_sym_0b] = ACTIONS(4582), + [anon_sym_0o] = ACTIONS(4584), + [anon_sym_0x] = ACTIONS(4584), + [sym_val_date] = ACTIONS(4586), + [anon_sym_DQUOTE] = ACTIONS(4588), + [sym__str_single_quotes] = ACTIONS(4590), + [sym__str_back_ticks] = ACTIONS(4590), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4592), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4594), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5573), [anon_sym_POUND] = ACTIONS(3), }, - [1716] = { - [sym_expr_unary] = STATE(6503), - [sym__expr_unary_minus] = STATE(6520), - [sym_expr_binary] = STATE(6503), - [sym__expr_binary_expression] = STATE(6484), - [sym_expr_parenthesized] = STATE(6503), - [sym__val_range] = STATE(10607), - [sym__value] = STATE(6503), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(6326), - [sym_val_variable] = STATE(6614), - [sym__var] = STATE(5803), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(4921), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(6614), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_unquoted] = STATE(6544), - [sym__unquoted_anonymous_prefix] = STATE(11330), - [sym_comment] = STATE(1716), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_LPAREN] = ACTIONS(5095), - [anon_sym_DOLLAR] = ACTIONS(5097), - [anon_sym_DASH] = ACTIONS(4947), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(5099), - [anon_sym_not] = ACTIONS(4951), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5101), - [anon_sym_DOT_DOT_LT] = ACTIONS(5101), - [anon_sym_null] = ACTIONS(4955), - [anon_sym_true] = ACTIONS(4957), - [anon_sym_false] = ACTIONS(4957), - [aux_sym__val_number_decimal_token1] = ACTIONS(4959), - [aux_sym__val_number_decimal_token2] = ACTIONS(4961), - [anon_sym_DOT2] = ACTIONS(5103), - [aux_sym__val_number_decimal_token3] = ACTIONS(4965), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(4967), - [aux_sym__val_number_token5] = ACTIONS(4967), - [aux_sym__val_number_token6] = ACTIONS(4967), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(4969), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(3584), + [1910] = { + [sym_expr_unary] = STATE(2171), + [sym__expr_unary_minus] = STATE(2161), + [sym_expr_binary] = STATE(2171), + [sym__expr_binary_expression] = STATE(2025), + [sym_expr_parenthesized] = STATE(2171), + [sym__val_range] = STATE(10231), + [sym__value] = STATE(2171), + [sym_val_nothing] = STATE(2024), + [sym_val_bool] = STATE(1948), + [sym_val_variable] = STATE(2024), + [sym__var] = STATE(1145), + [sym_val_number] = STATE(2024), + [sym__val_number_decimal] = STATE(918), + [sym__val_number] = STATE(2051), + [sym_val_duration] = STATE(2024), + [sym_val_filesize] = STATE(2024), + [sym_val_binary] = STATE(2024), + [sym_val_string] = STATE(2024), + [sym__str_double_quotes] = STATE(2038), + [sym_val_interpolated] = STATE(2024), + [sym__inter_single_quotes] = STATE(2189), + [sym__inter_double_quotes] = STATE(2190), + [sym_val_list] = STATE(2024), + [sym_val_record] = STATE(2024), + [sym_val_table] = STATE(2024), + [sym_val_closure] = STATE(2024), + [sym_unquoted] = STATE(2127), + [sym__unquoted_anonymous_prefix] = STATE(10547), + [sym_comment] = STATE(1910), + [anon_sym_LBRACK] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(5561), + [anon_sym_DOLLAR] = ACTIONS(5563), + [anon_sym_DASH] = ACTIONS(4556), + [anon_sym_LBRACE] = ACTIONS(4558), + [anon_sym_DOT_DOT] = ACTIONS(5565), + [anon_sym_not] = ACTIONS(4562), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5567), + [anon_sym_DOT_DOT_LT] = ACTIONS(5567), + [anon_sym_null] = ACTIONS(4566), + [anon_sym_true] = ACTIONS(4568), + [anon_sym_false] = ACTIONS(4568), + [aux_sym__val_number_decimal_token1] = ACTIONS(4570), + [aux_sym__val_number_decimal_token2] = ACTIONS(4572), + [anon_sym_DOT2] = ACTIONS(5569), + [aux_sym__val_number_decimal_token3] = ACTIONS(4576), + [aux_sym__val_number_token1] = ACTIONS(4578), + [aux_sym__val_number_token2] = ACTIONS(4578), + [aux_sym__val_number_token3] = ACTIONS(4578), + [aux_sym__val_number_token4] = ACTIONS(5571), + [aux_sym__val_number_token5] = ACTIONS(5571), + [aux_sym__val_number_token6] = ACTIONS(5571), + [anon_sym_0b] = ACTIONS(4582), + [anon_sym_0o] = ACTIONS(4584), + [anon_sym_0x] = ACTIONS(4584), + [sym_val_date] = ACTIONS(4586), + [anon_sym_DQUOTE] = ACTIONS(4588), + [sym__str_single_quotes] = ACTIONS(4590), + [sym__str_back_ticks] = ACTIONS(4590), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4592), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4594), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5573), [anon_sym_POUND] = ACTIONS(3), }, - [1717] = { - [sym_expr_unary] = STATE(6503), - [sym__expr_unary_minus] = STATE(6520), - [sym_expr_binary] = STATE(6503), - [sym__expr_binary_expression] = STATE(6548), - [sym_expr_parenthesized] = STATE(6503), - [sym__val_range] = STATE(10607), - [sym__value] = STATE(6503), - [sym_val_nothing] = STATE(6614), - [sym_val_bool] = STATE(6326), - [sym_val_variable] = STATE(6614), - [sym__var] = STATE(5803), - [sym_val_number] = STATE(6614), - [sym__val_number_decimal] = STATE(4921), - [sym__val_number] = STATE(6539), - [sym_val_duration] = STATE(6614), - [sym_val_filesize] = STATE(6614), - [sym_val_binary] = STATE(6614), - [sym_val_string] = STATE(6614), - [sym__str_double_quotes] = STATE(6449), - [sym_val_interpolated] = STATE(6614), - [sym__inter_single_quotes] = STATE(6557), - [sym__inter_double_quotes] = STATE(6558), - [sym_val_list] = STATE(6614), - [sym_val_record] = STATE(6614), - [sym_val_table] = STATE(6614), - [sym_val_closure] = STATE(6614), - [sym_unquoted] = STATE(6551), - [sym__unquoted_anonymous_prefix] = STATE(11330), - [sym_comment] = STATE(1717), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_LPAREN] = ACTIONS(5095), - [anon_sym_DOLLAR] = ACTIONS(5097), - [anon_sym_DASH] = ACTIONS(4947), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(5099), - [anon_sym_not] = ACTIONS(4951), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5101), - [anon_sym_DOT_DOT_LT] = ACTIONS(5101), - [anon_sym_null] = ACTIONS(4955), - [anon_sym_true] = ACTIONS(4957), - [anon_sym_false] = ACTIONS(4957), - [aux_sym__val_number_decimal_token1] = ACTIONS(4959), - [aux_sym__val_number_decimal_token2] = ACTIONS(4961), - [anon_sym_DOT2] = ACTIONS(5103), - [aux_sym__val_number_decimal_token3] = ACTIONS(4965), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [aux_sym__val_number_token4] = ACTIONS(4967), - [aux_sym__val_number_token5] = ACTIONS(4967), - [aux_sym__val_number_token6] = ACTIONS(4967), - [anon_sym_0b] = ACTIONS(1970), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(4969), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(3584), + [1911] = { + [sym_expr_unary] = STATE(2171), + [sym__expr_unary_minus] = STATE(2161), + [sym_expr_binary] = STATE(2171), + [sym__expr_binary_expression] = STATE(2039), + [sym_expr_parenthesized] = STATE(2171), + [sym__val_range] = STATE(10231), + [sym__value] = STATE(2171), + [sym_val_nothing] = STATE(2024), + [sym_val_bool] = STATE(1948), + [sym_val_variable] = STATE(2024), + [sym__var] = STATE(1145), + [sym_val_number] = STATE(2024), + [sym__val_number_decimal] = STATE(918), + [sym__val_number] = STATE(2051), + [sym_val_duration] = STATE(2024), + [sym_val_filesize] = STATE(2024), + [sym_val_binary] = STATE(2024), + [sym_val_string] = STATE(2024), + [sym__str_double_quotes] = STATE(2038), + [sym_val_interpolated] = STATE(2024), + [sym__inter_single_quotes] = STATE(2189), + [sym__inter_double_quotes] = STATE(2190), + [sym_val_list] = STATE(2024), + [sym_val_record] = STATE(2024), + [sym_val_table] = STATE(2024), + [sym_val_closure] = STATE(2024), + [sym_unquoted] = STATE(2234), + [sym__unquoted_anonymous_prefix] = STATE(10547), + [sym_comment] = STATE(1911), + [anon_sym_LBRACK] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(5561), + [anon_sym_DOLLAR] = ACTIONS(5563), + [anon_sym_DASH] = ACTIONS(4556), + [anon_sym_LBRACE] = ACTIONS(4558), + [anon_sym_DOT_DOT] = ACTIONS(5565), + [anon_sym_not] = ACTIONS(4562), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5567), + [anon_sym_DOT_DOT_LT] = ACTIONS(5567), + [anon_sym_null] = ACTIONS(4566), + [anon_sym_true] = ACTIONS(4568), + [anon_sym_false] = ACTIONS(4568), + [aux_sym__val_number_decimal_token1] = ACTIONS(4570), + [aux_sym__val_number_decimal_token2] = ACTIONS(4572), + [anon_sym_DOT2] = ACTIONS(5569), + [aux_sym__val_number_decimal_token3] = ACTIONS(4576), + [aux_sym__val_number_token1] = ACTIONS(4578), + [aux_sym__val_number_token2] = ACTIONS(4578), + [aux_sym__val_number_token3] = ACTIONS(4578), + [aux_sym__val_number_token4] = ACTIONS(5571), + [aux_sym__val_number_token5] = ACTIONS(5571), + [aux_sym__val_number_token6] = ACTIONS(5571), + [anon_sym_0b] = ACTIONS(4582), + [anon_sym_0o] = ACTIONS(4584), + [anon_sym_0x] = ACTIONS(4584), + [sym_val_date] = ACTIONS(4586), + [anon_sym_DQUOTE] = ACTIONS(4588), + [sym__str_single_quotes] = ACTIONS(4590), + [sym__str_back_ticks] = ACTIONS(4590), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4592), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4594), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5573), [anon_sym_POUND] = ACTIONS(3), }, - [1718] = { - [sym_comment] = STATE(1718), - [anon_sym_export] = ACTIONS(1243), - [anon_sym_alias] = ACTIONS(1243), - [anon_sym_let] = ACTIONS(1243), - [anon_sym_let_DASHenv] = ACTIONS(1243), - [anon_sym_mut] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1243), - [sym_cmd_identifier] = ACTIONS(1243), - [anon_sym_LF] = ACTIONS(1290), - [anon_sym_def] = ACTIONS(1243), - [anon_sym_export_DASHenv] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1243), - [anon_sym_module] = ACTIONS(1243), - [anon_sym_use] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_RPAREN] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_error] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_loop] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_match] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_RBRACE] = ACTIONS(1243), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_try] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_source] = ACTIONS(1243), - [anon_sym_source_DASHenv] = ACTIONS(1243), - [anon_sym_register] = ACTIONS(1243), - [anon_sym_hide] = ACTIONS(1243), - [anon_sym_hide_DASHenv] = ACTIONS(1243), - [anon_sym_overlay] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1243), - [anon_sym_where] = ACTIONS(1243), - [anon_sym_not] = ACTIONS(1243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1243), - [anon_sym_DOT_DOT_LT] = ACTIONS(1243), - [anon_sym_null] = ACTIONS(1243), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_decimal_token2] = ACTIONS(1243), - [anon_sym_DOT2] = ACTIONS(1243), - [aux_sym__val_number_decimal_token3] = ACTIONS(1243), - [aux_sym__val_number_token1] = ACTIONS(1243), - [aux_sym__val_number_token2] = ACTIONS(1243), - [aux_sym__val_number_token3] = ACTIONS(1243), - [aux_sym__val_number_token4] = ACTIONS(1243), - [aux_sym__val_number_token5] = ACTIONS(1243), - [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_0b] = ACTIONS(1243), - [anon_sym_0o] = ACTIONS(1243), - [anon_sym_0x] = ACTIONS(1243), - [sym_val_date] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym__str_single_quotes] = ACTIONS(1243), - [sym__str_back_ticks] = ACTIONS(1243), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1243), - [anon_sym_CARET] = ACTIONS(1243), - [anon_sym_POUND] = ACTIONS(113), + [1912] = { + [sym_expr_unary] = STATE(2171), + [sym__expr_unary_minus] = STATE(2161), + [sym_expr_binary] = STATE(2171), + [sym__expr_binary_expression] = STATE(2064), + [sym_expr_parenthesized] = STATE(2171), + [sym__val_range] = STATE(10231), + [sym__value] = STATE(2171), + [sym_val_nothing] = STATE(2024), + [sym_val_bool] = STATE(1948), + [sym_val_variable] = STATE(2024), + [sym__var] = STATE(1145), + [sym_val_number] = STATE(2024), + [sym__val_number_decimal] = STATE(918), + [sym__val_number] = STATE(2051), + [sym_val_duration] = STATE(2024), + [sym_val_filesize] = STATE(2024), + [sym_val_binary] = STATE(2024), + [sym_val_string] = STATE(2024), + [sym__str_double_quotes] = STATE(2038), + [sym_val_interpolated] = STATE(2024), + [sym__inter_single_quotes] = STATE(2189), + [sym__inter_double_quotes] = STATE(2190), + [sym_val_list] = STATE(2024), + [sym_val_record] = STATE(2024), + [sym_val_table] = STATE(2024), + [sym_val_closure] = STATE(2024), + [sym_unquoted] = STATE(2236), + [sym__unquoted_anonymous_prefix] = STATE(10547), + [sym_comment] = STATE(1912), + [anon_sym_LBRACK] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(5561), + [anon_sym_DOLLAR] = ACTIONS(5563), + [anon_sym_DASH] = ACTIONS(4556), + [anon_sym_LBRACE] = ACTIONS(4558), + [anon_sym_DOT_DOT] = ACTIONS(5565), + [anon_sym_not] = ACTIONS(4562), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5567), + [anon_sym_DOT_DOT_LT] = ACTIONS(5567), + [anon_sym_null] = ACTIONS(4566), + [anon_sym_true] = ACTIONS(4568), + [anon_sym_false] = ACTIONS(4568), + [aux_sym__val_number_decimal_token1] = ACTIONS(4570), + [aux_sym__val_number_decimal_token2] = ACTIONS(4572), + [anon_sym_DOT2] = ACTIONS(5569), + [aux_sym__val_number_decimal_token3] = ACTIONS(4576), + [aux_sym__val_number_token1] = ACTIONS(4578), + [aux_sym__val_number_token2] = ACTIONS(4578), + [aux_sym__val_number_token3] = ACTIONS(4578), + [aux_sym__val_number_token4] = ACTIONS(5571), + [aux_sym__val_number_token5] = ACTIONS(5571), + [aux_sym__val_number_token6] = ACTIONS(5571), + [anon_sym_0b] = ACTIONS(4582), + [anon_sym_0o] = ACTIONS(4584), + [anon_sym_0x] = ACTIONS(4584), + [sym_val_date] = ACTIONS(4586), + [anon_sym_DQUOTE] = ACTIONS(4588), + [sym__str_single_quotes] = ACTIONS(4590), + [sym__str_back_ticks] = ACTIONS(4590), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4592), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4594), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5573), + [anon_sym_POUND] = ACTIONS(3), }, - [1719] = { - [sym_comment] = STATE(1719), - [ts_builtin_sym_end] = ACTIONS(2845), - [anon_sym_export] = ACTIONS(2843), - [anon_sym_alias] = ACTIONS(2843), - [anon_sym_let] = ACTIONS(2843), - [anon_sym_let_DASHenv] = ACTIONS(2843), - [anon_sym_mut] = ACTIONS(2843), - [anon_sym_const] = ACTIONS(2843), - [anon_sym_SEMI] = ACTIONS(2843), - [sym_cmd_identifier] = ACTIONS(2843), - [anon_sym_LF] = ACTIONS(2845), - [anon_sym_def] = ACTIONS(2843), - [anon_sym_export_DASHenv] = ACTIONS(2843), - [anon_sym_extern] = ACTIONS(2843), - [anon_sym_module] = ACTIONS(2843), - [anon_sym_use] = ACTIONS(2843), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_LPAREN] = ACTIONS(2843), - [anon_sym_DOLLAR] = ACTIONS(2843), - [anon_sym_error] = ACTIONS(2843), - [anon_sym_DASH] = ACTIONS(2843), - [anon_sym_break] = ACTIONS(2843), - [anon_sym_continue] = ACTIONS(2843), - [anon_sym_for] = ACTIONS(2843), - [anon_sym_loop] = ACTIONS(2843), - [anon_sym_while] = ACTIONS(2843), - [anon_sym_do] = ACTIONS(2843), - [anon_sym_if] = ACTIONS(2843), - [anon_sym_match] = ACTIONS(2843), - [anon_sym_LBRACE] = ACTIONS(2843), - [anon_sym_DOT_DOT] = ACTIONS(2843), - [anon_sym_try] = ACTIONS(2843), - [anon_sym_return] = ACTIONS(2843), - [anon_sym_source] = ACTIONS(2843), - [anon_sym_source_DASHenv] = ACTIONS(2843), - [anon_sym_register] = ACTIONS(2843), - [anon_sym_hide] = ACTIONS(2843), - [anon_sym_hide_DASHenv] = ACTIONS(2843), - [anon_sym_overlay] = ACTIONS(2843), - [anon_sym_where] = ACTIONS(2843), - [anon_sym_not] = ACTIONS(2843), - [anon_sym_DOT_DOT2] = ACTIONS(5105), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2843), - [anon_sym_DOT_DOT_LT] = ACTIONS(2843), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(5107), - [anon_sym_DOT_DOT_LT2] = ACTIONS(5107), - [anon_sym_null] = ACTIONS(2843), - [anon_sym_true] = ACTIONS(2843), - [anon_sym_false] = ACTIONS(2843), - [aux_sym__val_number_decimal_token1] = ACTIONS(2843), - [aux_sym__val_number_decimal_token2] = ACTIONS(2843), - [anon_sym_DOT2] = ACTIONS(2843), - [aux_sym__val_number_decimal_token3] = ACTIONS(2843), - [aux_sym__val_number_token1] = ACTIONS(2843), - [aux_sym__val_number_token2] = ACTIONS(2843), - [aux_sym__val_number_token3] = ACTIONS(2843), - [aux_sym__val_number_token4] = ACTIONS(2843), - [aux_sym__val_number_token5] = ACTIONS(2843), - [aux_sym__val_number_token6] = ACTIONS(2843), - [anon_sym_0b] = ACTIONS(2843), - [anon_sym_0o] = ACTIONS(2843), - [anon_sym_0x] = ACTIONS(2843), - [sym_val_date] = ACTIONS(2843), - [anon_sym_DQUOTE] = ACTIONS(2843), - [sym__str_single_quotes] = ACTIONS(2843), - [sym__str_back_ticks] = ACTIONS(2843), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2843), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2843), - [anon_sym_CARET] = ACTIONS(2843), - [anon_sym_POUND] = ACTIONS(113), + [1913] = { + [sym_expr_unary] = STATE(2171), + [sym__expr_unary_minus] = STATE(2161), + [sym_expr_binary] = STATE(2171), + [sym__expr_binary_expression] = STATE(2078), + [sym_expr_parenthesized] = STATE(2171), + [sym__val_range] = STATE(10231), + [sym__value] = STATE(2171), + [sym_val_nothing] = STATE(2024), + [sym_val_bool] = STATE(1948), + [sym_val_variable] = STATE(2024), + [sym__var] = STATE(1145), + [sym_val_number] = STATE(2024), + [sym__val_number_decimal] = STATE(918), + [sym__val_number] = STATE(2051), + [sym_val_duration] = STATE(2024), + [sym_val_filesize] = STATE(2024), + [sym_val_binary] = STATE(2024), + [sym_val_string] = STATE(2024), + [sym__str_double_quotes] = STATE(2038), + [sym_val_interpolated] = STATE(2024), + [sym__inter_single_quotes] = STATE(2189), + [sym__inter_double_quotes] = STATE(2190), + [sym_val_list] = STATE(2024), + [sym_val_record] = STATE(2024), + [sym_val_table] = STATE(2024), + [sym_val_closure] = STATE(2024), + [sym_unquoted] = STATE(2238), + [sym__unquoted_anonymous_prefix] = STATE(10547), + [sym_comment] = STATE(1913), + [anon_sym_LBRACK] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(5561), + [anon_sym_DOLLAR] = ACTIONS(5563), + [anon_sym_DASH] = ACTIONS(4556), + [anon_sym_LBRACE] = ACTIONS(4558), + [anon_sym_DOT_DOT] = ACTIONS(5565), + [anon_sym_not] = ACTIONS(4562), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5567), + [anon_sym_DOT_DOT_LT] = ACTIONS(5567), + [anon_sym_null] = ACTIONS(4566), + [anon_sym_true] = ACTIONS(4568), + [anon_sym_false] = ACTIONS(4568), + [aux_sym__val_number_decimal_token1] = ACTIONS(4570), + [aux_sym__val_number_decimal_token2] = ACTIONS(4572), + [anon_sym_DOT2] = ACTIONS(5569), + [aux_sym__val_number_decimal_token3] = ACTIONS(4576), + [aux_sym__val_number_token1] = ACTIONS(4578), + [aux_sym__val_number_token2] = ACTIONS(4578), + [aux_sym__val_number_token3] = ACTIONS(4578), + [aux_sym__val_number_token4] = ACTIONS(5571), + [aux_sym__val_number_token5] = ACTIONS(5571), + [aux_sym__val_number_token6] = ACTIONS(5571), + [anon_sym_0b] = ACTIONS(4582), + [anon_sym_0o] = ACTIONS(4584), + [anon_sym_0x] = ACTIONS(4584), + [sym_val_date] = ACTIONS(4586), + [anon_sym_DQUOTE] = ACTIONS(4588), + [sym__str_single_quotes] = ACTIONS(4590), + [sym__str_back_ticks] = ACTIONS(4590), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4592), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4594), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5573), + [anon_sym_POUND] = ACTIONS(3), }, - [1720] = { - [sym_comment] = STATE(1720), - [anon_sym_export] = ACTIONS(1414), - [anon_sym_alias] = ACTIONS(1414), - [anon_sym_let] = ACTIONS(1414), - [anon_sym_let_DASHenv] = ACTIONS(1414), - [anon_sym_mut] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_SEMI] = ACTIONS(1414), - [sym_cmd_identifier] = ACTIONS(1414), - [anon_sym_LF] = ACTIONS(1416), - [anon_sym_def] = ACTIONS(1414), - [anon_sym_export_DASHenv] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym_module] = ACTIONS(1414), - [anon_sym_use] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_RPAREN] = ACTIONS(1414), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_DOLLAR] = ACTIONS(1414), - [anon_sym_error] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_loop] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1414), - [anon_sym_RBRACE] = ACTIONS(1414), - [anon_sym_DOT_DOT] = ACTIONS(1414), - [anon_sym_try] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_source] = ACTIONS(1414), - [anon_sym_source_DASHenv] = ACTIONS(1414), - [anon_sym_register] = ACTIONS(1414), - [anon_sym_hide] = ACTIONS(1414), - [anon_sym_hide_DASHenv] = ACTIONS(1414), - [anon_sym_overlay] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_where] = ACTIONS(1414), - [anon_sym_not] = ACTIONS(1414), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1414), - [anon_sym_DOT_DOT_LT] = ACTIONS(1414), - [anon_sym_null] = ACTIONS(1414), - [anon_sym_true] = ACTIONS(1414), - [anon_sym_false] = ACTIONS(1414), - [aux_sym__val_number_decimal_token1] = ACTIONS(1414), - [aux_sym__val_number_decimal_token2] = ACTIONS(1414), - [anon_sym_DOT2] = ACTIONS(1414), - [aux_sym__val_number_decimal_token3] = ACTIONS(1414), - [aux_sym__val_number_token1] = ACTIONS(1414), - [aux_sym__val_number_token2] = ACTIONS(1414), - [aux_sym__val_number_token3] = ACTIONS(1414), - [aux_sym__val_number_token4] = ACTIONS(1414), - [aux_sym__val_number_token5] = ACTIONS(1414), - [aux_sym__val_number_token6] = ACTIONS(1414), - [anon_sym_0b] = ACTIONS(1414), - [anon_sym_0o] = ACTIONS(1414), - [anon_sym_0x] = ACTIONS(1414), - [sym_val_date] = ACTIONS(1414), - [anon_sym_DQUOTE] = ACTIONS(1414), - [sym__str_single_quotes] = ACTIONS(1414), - [sym__str_back_ticks] = ACTIONS(1414), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1414), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1414), - [anon_sym_POUND] = ACTIONS(113), + [1914] = { + [sym_expr_unary] = STATE(2171), + [sym__expr_unary_minus] = STATE(2161), + [sym_expr_binary] = STATE(2171), + [sym__expr_binary_expression] = STATE(2107), + [sym_expr_parenthesized] = STATE(2171), + [sym__val_range] = STATE(10231), + [sym__value] = STATE(2171), + [sym_val_nothing] = STATE(2024), + [sym_val_bool] = STATE(1948), + [sym_val_variable] = STATE(2024), + [sym__var] = STATE(1145), + [sym_val_number] = STATE(2024), + [sym__val_number_decimal] = STATE(918), + [sym__val_number] = STATE(2051), + [sym_val_duration] = STATE(2024), + [sym_val_filesize] = STATE(2024), + [sym_val_binary] = STATE(2024), + [sym_val_string] = STATE(2024), + [sym__str_double_quotes] = STATE(2038), + [sym_val_interpolated] = STATE(2024), + [sym__inter_single_quotes] = STATE(2189), + [sym__inter_double_quotes] = STATE(2190), + [sym_val_list] = STATE(2024), + [sym_val_record] = STATE(2024), + [sym_val_table] = STATE(2024), + [sym_val_closure] = STATE(2024), + [sym_unquoted] = STATE(2000), + [sym__unquoted_anonymous_prefix] = STATE(10547), + [sym_comment] = STATE(1914), + [anon_sym_LBRACK] = ACTIONS(4550), + [anon_sym_LPAREN] = ACTIONS(5561), + [anon_sym_DOLLAR] = ACTIONS(5563), + [anon_sym_DASH] = ACTIONS(4556), + [anon_sym_LBRACE] = ACTIONS(4558), + [anon_sym_DOT_DOT] = ACTIONS(5565), + [anon_sym_not] = ACTIONS(4562), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5567), + [anon_sym_DOT_DOT_LT] = ACTIONS(5567), + [anon_sym_null] = ACTIONS(4566), + [anon_sym_true] = ACTIONS(4568), + [anon_sym_false] = ACTIONS(4568), + [aux_sym__val_number_decimal_token1] = ACTIONS(4570), + [aux_sym__val_number_decimal_token2] = ACTIONS(4572), + [anon_sym_DOT2] = ACTIONS(5569), + [aux_sym__val_number_decimal_token3] = ACTIONS(4576), + [aux_sym__val_number_token1] = ACTIONS(4578), + [aux_sym__val_number_token2] = ACTIONS(4578), + [aux_sym__val_number_token3] = ACTIONS(4578), + [aux_sym__val_number_token4] = ACTIONS(5571), + [aux_sym__val_number_token5] = ACTIONS(5571), + [aux_sym__val_number_token6] = ACTIONS(5571), + [anon_sym_0b] = ACTIONS(4582), + [anon_sym_0o] = ACTIONS(4584), + [anon_sym_0x] = ACTIONS(4584), + [sym_val_date] = ACTIONS(4586), + [anon_sym_DQUOTE] = ACTIONS(4588), + [sym__str_single_quotes] = ACTIONS(4590), + [sym__str_back_ticks] = ACTIONS(4590), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4592), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4594), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5573), + [anon_sym_POUND] = ACTIONS(3), }, - [1721] = { - [sym_comment] = STATE(1721), - [anon_sym_export] = ACTIONS(1418), - [anon_sym_alias] = ACTIONS(1418), - [anon_sym_let] = ACTIONS(1418), - [anon_sym_let_DASHenv] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(1418), - [sym_cmd_identifier] = ACTIONS(1418), - [anon_sym_LF] = ACTIONS(1420), - [anon_sym_def] = ACTIONS(1418), - [anon_sym_export_DASHenv] = ACTIONS(1418), - [anon_sym_extern] = ACTIONS(1418), - [anon_sym_module] = ACTIONS(1418), - [anon_sym_use] = ACTIONS(1418), - [anon_sym_LBRACK] = ACTIONS(1418), - [anon_sym_LPAREN] = ACTIONS(1418), - [anon_sym_RPAREN] = ACTIONS(1418), - [anon_sym_PIPE] = ACTIONS(1418), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_error] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_loop] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_match] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_RBRACE] = ACTIONS(1418), - [anon_sym_DOT_DOT] = ACTIONS(1418), - [anon_sym_try] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_source] = ACTIONS(1418), - [anon_sym_source_DASHenv] = ACTIONS(1418), - [anon_sym_register] = ACTIONS(1418), - [anon_sym_hide] = ACTIONS(1418), - [anon_sym_hide_DASHenv] = ACTIONS(1418), - [anon_sym_overlay] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_where] = ACTIONS(1418), - [anon_sym_not] = ACTIONS(1418), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1418), - [anon_sym_DOT_DOT_LT] = ACTIONS(1418), - [anon_sym_null] = ACTIONS(1418), - [anon_sym_true] = ACTIONS(1418), - [anon_sym_false] = ACTIONS(1418), - [aux_sym__val_number_decimal_token1] = ACTIONS(1418), - [aux_sym__val_number_decimal_token2] = ACTIONS(1418), - [anon_sym_DOT2] = ACTIONS(1418), - [aux_sym__val_number_decimal_token3] = ACTIONS(1418), - [aux_sym__val_number_token1] = ACTIONS(1418), - [aux_sym__val_number_token2] = ACTIONS(1418), - [aux_sym__val_number_token3] = ACTIONS(1418), - [aux_sym__val_number_token4] = ACTIONS(1418), - [aux_sym__val_number_token5] = ACTIONS(1418), - [aux_sym__val_number_token6] = ACTIONS(1418), - [anon_sym_0b] = ACTIONS(1418), - [anon_sym_0o] = ACTIONS(1418), - [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1418), - [anon_sym_DQUOTE] = ACTIONS(1418), - [sym__str_single_quotes] = ACTIONS(1418), - [sym__str_back_ticks] = ACTIONS(1418), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), + [1915] = { + [sym_comment] = STATE(1915), + [anon_sym_LBRACK] = ACTIONS(1051), + [anon_sym_COMMA] = ACTIONS(1051), + [anon_sym_RBRACK] = ACTIONS(1051), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_DOLLAR] = ACTIONS(1051), + [anon_sym_GT] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_in] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(1051), + [anon_sym_DOT_DOT] = ACTIONS(1051), + [anon_sym_STAR] = ACTIONS(1051), + [anon_sym_STAR_STAR] = ACTIONS(1051), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_mod] = ACTIONS(1051), + [anon_sym_SLASH_SLASH] = ACTIONS(1051), + [anon_sym_PLUS] = ACTIONS(1051), + [anon_sym_bit_DASHshl] = ACTIONS(1051), + [anon_sym_bit_DASHshr] = ACTIONS(1051), + [anon_sym_EQ_EQ] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1051), + [anon_sym_LT2] = ACTIONS(1051), + [anon_sym_LT_EQ] = ACTIONS(1051), + [anon_sym_GT_EQ] = ACTIONS(1051), + [anon_sym_not_DASHin] = ACTIONS(1051), + [anon_sym_starts_DASHwith] = ACTIONS(1051), + [anon_sym_ends_DASHwith] = ACTIONS(1051), + [anon_sym_EQ_TILDE] = ACTIONS(1051), + [anon_sym_BANG_TILDE] = ACTIONS(1051), + [anon_sym_bit_DASHand] = ACTIONS(1051), + [anon_sym_bit_DASHxor] = ACTIONS(1051), + [anon_sym_bit_DASHor] = ACTIONS(1051), + [anon_sym_and] = ACTIONS(1051), + [anon_sym_xor] = ACTIONS(1051), + [anon_sym_or] = ACTIONS(1051), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1051), + [anon_sym_DOT_DOT_LT] = ACTIONS(1051), + [anon_sym_null] = ACTIONS(1051), + [anon_sym_true] = ACTIONS(1051), + [anon_sym_false] = ACTIONS(1051), + [aux_sym__val_number_decimal_token1] = ACTIONS(1051), + [aux_sym__val_number_decimal_token2] = ACTIONS(1051), + [anon_sym_DOT2] = ACTIONS(1051), + [aux_sym__val_number_decimal_token3] = ACTIONS(1051), + [aux_sym__val_number_token1] = ACTIONS(1051), + [aux_sym__val_number_token2] = ACTIONS(1051), + [aux_sym__val_number_token3] = ACTIONS(1051), + [aux_sym__val_number_token4] = ACTIONS(1051), + [aux_sym__val_number_token5] = ACTIONS(1051), + [aux_sym__val_number_token6] = ACTIONS(1051), + [anon_sym_0b] = ACTIONS(1051), + [anon_sym_0o] = ACTIONS(1051), + [anon_sym_0x] = ACTIONS(1051), + [sym_val_date] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(1051), + [sym__str_single_quotes] = ACTIONS(1051), + [sym__str_back_ticks] = ACTIONS(1051), + [sym__entry_separator] = ACTIONS(1053), + [anon_sym_err_GT] = ACTIONS(1051), + [anon_sym_out_GT] = ACTIONS(1051), + [anon_sym_e_GT] = ACTIONS(1051), + [anon_sym_o_GT] = ACTIONS(1051), + [anon_sym_err_PLUSout_GT] = ACTIONS(1051), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1051), + [anon_sym_o_PLUSe_GT] = ACTIONS(1051), + [anon_sym_e_PLUSo_GT] = ACTIONS(1051), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1051), [anon_sym_POUND] = ACTIONS(113), }, - [1722] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6764), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6752), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5256), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(6284), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(1722), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(5113), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5115), - [anon_sym_DOT_DOT_LT] = ACTIONS(5115), - [anon_sym_null] = ACTIONS(5117), - [anon_sym_true] = ACTIONS(5119), - [anon_sym_false] = ACTIONS(5119), - [aux_sym__val_number_decimal_token1] = ACTIONS(5121), - [aux_sym__val_number_decimal_token2] = ACTIONS(5123), - [anon_sym_DOT2] = ACTIONS(5125), - [aux_sym__val_number_decimal_token3] = ACTIONS(5127), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(5129), - [aux_sym__val_number_token5] = ACTIONS(5129), - [aux_sym__val_number_token6] = ACTIONS(5129), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(5131), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), + [1916] = { + [sym_expr_unary] = STATE(1394), + [sym__expr_unary_minus] = STATE(1792), + [sym_expr_binary] = STATE(1394), + [sym__expr_binary_expression] = STATE(1454), + [sym_expr_parenthesized] = STATE(1394), + [sym__val_range] = STATE(10232), + [sym__value] = STATE(1394), + [sym_val_nothing] = STATE(1965), + [sym_val_bool] = STATE(1364), + [sym_val_variable] = STATE(1965), + [sym__var] = STATE(1092), + [sym_val_number] = STATE(1965), + [sym__val_number_decimal] = STATE(878), + [sym__val_number] = STATE(1966), + [sym_val_duration] = STATE(1965), + [sym_val_filesize] = STATE(1965), + [sym_val_binary] = STATE(1965), + [sym_val_string] = STATE(1965), + [sym__str_double_quotes] = STATE(1487), + [sym_val_interpolated] = STATE(1965), + [sym__inter_single_quotes] = STATE(1494), + [sym__inter_double_quotes] = STATE(1495), + [sym_val_list] = STATE(1965), + [sym_val_record] = STATE(1965), + [sym_val_table] = STATE(1965), + [sym_val_closure] = STATE(1965), + [sym_unquoted] = STATE(1395), + [sym__unquoted_anonymous_prefix] = STATE(10575), + [sym_comment] = STATE(1916), + [anon_sym_LBRACK] = ACTIONS(4598), + [anon_sym_LPAREN] = ACTIONS(5575), + [anon_sym_DOLLAR] = ACTIONS(5577), + [anon_sym_DASH] = ACTIONS(4604), + [anon_sym_LBRACE] = ACTIONS(4606), + [anon_sym_DOT_DOT] = ACTIONS(5579), + [anon_sym_not] = ACTIONS(4610), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5581), + [anon_sym_DOT_DOT_LT] = ACTIONS(5581), + [anon_sym_null] = ACTIONS(4614), + [anon_sym_true] = ACTIONS(4616), + [anon_sym_false] = ACTIONS(4616), + [aux_sym__val_number_decimal_token1] = ACTIONS(4618), + [aux_sym__val_number_decimal_token2] = ACTIONS(4620), + [anon_sym_DOT2] = ACTIONS(5583), + [aux_sym__val_number_decimal_token3] = ACTIONS(4624), + [aux_sym__val_number_token1] = ACTIONS(4626), + [aux_sym__val_number_token2] = ACTIONS(4626), + [aux_sym__val_number_token3] = ACTIONS(4626), + [aux_sym__val_number_token4] = ACTIONS(5585), + [aux_sym__val_number_token5] = ACTIONS(5585), + [aux_sym__val_number_token6] = ACTIONS(5585), + [anon_sym_0b] = ACTIONS(4630), + [anon_sym_0o] = ACTIONS(4632), + [anon_sym_0x] = ACTIONS(4632), + [sym_val_date] = ACTIONS(4634), + [anon_sym_DQUOTE] = ACTIONS(4636), + [sym__str_single_quotes] = ACTIONS(4638), + [sym__str_back_ticks] = ACTIONS(4638), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4642), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5587), [anon_sym_POUND] = ACTIONS(3), }, - [1723] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6765), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6752), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5256), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(6285), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(1723), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(5113), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5115), - [anon_sym_DOT_DOT_LT] = ACTIONS(5115), - [anon_sym_null] = ACTIONS(5117), - [anon_sym_true] = ACTIONS(5119), - [anon_sym_false] = ACTIONS(5119), - [aux_sym__val_number_decimal_token1] = ACTIONS(5121), - [aux_sym__val_number_decimal_token2] = ACTIONS(5123), - [anon_sym_DOT2] = ACTIONS(5125), - [aux_sym__val_number_decimal_token3] = ACTIONS(5127), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(5129), - [aux_sym__val_number_token5] = ACTIONS(5129), - [aux_sym__val_number_token6] = ACTIONS(5129), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(5131), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), + [1917] = { + [sym_expr_unary] = STATE(1394), + [sym__expr_unary_minus] = STATE(1792), + [sym_expr_binary] = STATE(1394), + [sym__expr_binary_expression] = STATE(1456), + [sym_expr_parenthesized] = STATE(1394), + [sym__val_range] = STATE(10232), + [sym__value] = STATE(1394), + [sym_val_nothing] = STATE(1965), + [sym_val_bool] = STATE(1364), + [sym_val_variable] = STATE(1965), + [sym__var] = STATE(1092), + [sym_val_number] = STATE(1965), + [sym__val_number_decimal] = STATE(878), + [sym__val_number] = STATE(1966), + [sym_val_duration] = STATE(1965), + [sym_val_filesize] = STATE(1965), + [sym_val_binary] = STATE(1965), + [sym_val_string] = STATE(1965), + [sym__str_double_quotes] = STATE(1487), + [sym_val_interpolated] = STATE(1965), + [sym__inter_single_quotes] = STATE(1494), + [sym__inter_double_quotes] = STATE(1495), + [sym_val_list] = STATE(1965), + [sym_val_record] = STATE(1965), + [sym_val_table] = STATE(1965), + [sym_val_closure] = STATE(1965), + [sym_unquoted] = STATE(1396), + [sym__unquoted_anonymous_prefix] = STATE(10575), + [sym_comment] = STATE(1917), + [anon_sym_LBRACK] = ACTIONS(4598), + [anon_sym_LPAREN] = ACTIONS(5575), + [anon_sym_DOLLAR] = ACTIONS(5577), + [anon_sym_DASH] = ACTIONS(4604), + [anon_sym_LBRACE] = ACTIONS(4606), + [anon_sym_DOT_DOT] = ACTIONS(5579), + [anon_sym_not] = ACTIONS(4610), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5581), + [anon_sym_DOT_DOT_LT] = ACTIONS(5581), + [anon_sym_null] = ACTIONS(4614), + [anon_sym_true] = ACTIONS(4616), + [anon_sym_false] = ACTIONS(4616), + [aux_sym__val_number_decimal_token1] = ACTIONS(4618), + [aux_sym__val_number_decimal_token2] = ACTIONS(4620), + [anon_sym_DOT2] = ACTIONS(5583), + [aux_sym__val_number_decimal_token3] = ACTIONS(4624), + [aux_sym__val_number_token1] = ACTIONS(4626), + [aux_sym__val_number_token2] = ACTIONS(4626), + [aux_sym__val_number_token3] = ACTIONS(4626), + [aux_sym__val_number_token4] = ACTIONS(5585), + [aux_sym__val_number_token5] = ACTIONS(5585), + [aux_sym__val_number_token6] = ACTIONS(5585), + [anon_sym_0b] = ACTIONS(4630), + [anon_sym_0o] = ACTIONS(4632), + [anon_sym_0x] = ACTIONS(4632), + [sym_val_date] = ACTIONS(4634), + [anon_sym_DQUOTE] = ACTIONS(4636), + [sym__str_single_quotes] = ACTIONS(4638), + [sym__str_back_ticks] = ACTIONS(4638), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4642), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5587), [anon_sym_POUND] = ACTIONS(3), }, - [1724] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6766), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6752), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5256), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(6089), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(1724), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(5113), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5115), - [anon_sym_DOT_DOT_LT] = ACTIONS(5115), - [anon_sym_null] = ACTIONS(5117), - [anon_sym_true] = ACTIONS(5119), - [anon_sym_false] = ACTIONS(5119), - [aux_sym__val_number_decimal_token1] = ACTIONS(5121), - [aux_sym__val_number_decimal_token2] = ACTIONS(5123), - [anon_sym_DOT2] = ACTIONS(5125), - [aux_sym__val_number_decimal_token3] = ACTIONS(5127), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(5129), - [aux_sym__val_number_token5] = ACTIONS(5129), - [aux_sym__val_number_token6] = ACTIONS(5129), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(5131), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), + [1918] = { + [sym_expr_unary] = STATE(1394), + [sym__expr_unary_minus] = STATE(1792), + [sym_expr_binary] = STATE(1394), + [sym__expr_binary_expression] = STATE(1457), + [sym_expr_parenthesized] = STATE(1394), + [sym__val_range] = STATE(10232), + [sym__value] = STATE(1394), + [sym_val_nothing] = STATE(1965), + [sym_val_bool] = STATE(1364), + [sym_val_variable] = STATE(1965), + [sym__var] = STATE(1092), + [sym_val_number] = STATE(1965), + [sym__val_number_decimal] = STATE(878), + [sym__val_number] = STATE(1966), + [sym_val_duration] = STATE(1965), + [sym_val_filesize] = STATE(1965), + [sym_val_binary] = STATE(1965), + [sym_val_string] = STATE(1965), + [sym__str_double_quotes] = STATE(1487), + [sym_val_interpolated] = STATE(1965), + [sym__inter_single_quotes] = STATE(1494), + [sym__inter_double_quotes] = STATE(1495), + [sym_val_list] = STATE(1965), + [sym_val_record] = STATE(1965), + [sym_val_table] = STATE(1965), + [sym_val_closure] = STATE(1965), + [sym_unquoted] = STATE(1398), + [sym__unquoted_anonymous_prefix] = STATE(10575), + [sym_comment] = STATE(1918), + [anon_sym_LBRACK] = ACTIONS(4598), + [anon_sym_LPAREN] = ACTIONS(5575), + [anon_sym_DOLLAR] = ACTIONS(5577), + [anon_sym_DASH] = ACTIONS(4604), + [anon_sym_LBRACE] = ACTIONS(4606), + [anon_sym_DOT_DOT] = ACTIONS(5579), + [anon_sym_not] = ACTIONS(4610), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5581), + [anon_sym_DOT_DOT_LT] = ACTIONS(5581), + [anon_sym_null] = ACTIONS(4614), + [anon_sym_true] = ACTIONS(4616), + [anon_sym_false] = ACTIONS(4616), + [aux_sym__val_number_decimal_token1] = ACTIONS(4618), + [aux_sym__val_number_decimal_token2] = ACTIONS(4620), + [anon_sym_DOT2] = ACTIONS(5583), + [aux_sym__val_number_decimal_token3] = ACTIONS(4624), + [aux_sym__val_number_token1] = ACTIONS(4626), + [aux_sym__val_number_token2] = ACTIONS(4626), + [aux_sym__val_number_token3] = ACTIONS(4626), + [aux_sym__val_number_token4] = ACTIONS(5585), + [aux_sym__val_number_token5] = ACTIONS(5585), + [aux_sym__val_number_token6] = ACTIONS(5585), + [anon_sym_0b] = ACTIONS(4630), + [anon_sym_0o] = ACTIONS(4632), + [anon_sym_0x] = ACTIONS(4632), + [sym_val_date] = ACTIONS(4634), + [anon_sym_DQUOTE] = ACTIONS(4636), + [sym__str_single_quotes] = ACTIONS(4638), + [sym__str_back_ticks] = ACTIONS(4638), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4642), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5587), [anon_sym_POUND] = ACTIONS(3), }, - [1725] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6767), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6752), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5256), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(6260), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(1725), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(5113), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5115), - [anon_sym_DOT_DOT_LT] = ACTIONS(5115), - [anon_sym_null] = ACTIONS(5117), - [anon_sym_true] = ACTIONS(5119), - [anon_sym_false] = ACTIONS(5119), - [aux_sym__val_number_decimal_token1] = ACTIONS(5121), - [aux_sym__val_number_decimal_token2] = ACTIONS(5123), - [anon_sym_DOT2] = ACTIONS(5125), - [aux_sym__val_number_decimal_token3] = ACTIONS(5127), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(5129), - [aux_sym__val_number_token5] = ACTIONS(5129), - [aux_sym__val_number_token6] = ACTIONS(5129), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(5131), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), + [1919] = { + [sym_expr_unary] = STATE(1394), + [sym__expr_unary_minus] = STATE(1792), + [sym_expr_binary] = STATE(1394), + [sym__expr_binary_expression] = STATE(1458), + [sym_expr_parenthesized] = STATE(1394), + [sym__val_range] = STATE(10232), + [sym__value] = STATE(1394), + [sym_val_nothing] = STATE(1965), + [sym_val_bool] = STATE(1364), + [sym_val_variable] = STATE(1965), + [sym__var] = STATE(1092), + [sym_val_number] = STATE(1965), + [sym__val_number_decimal] = STATE(878), + [sym__val_number] = STATE(1966), + [sym_val_duration] = STATE(1965), + [sym_val_filesize] = STATE(1965), + [sym_val_binary] = STATE(1965), + [sym_val_string] = STATE(1965), + [sym__str_double_quotes] = STATE(1487), + [sym_val_interpolated] = STATE(1965), + [sym__inter_single_quotes] = STATE(1494), + [sym__inter_double_quotes] = STATE(1495), + [sym_val_list] = STATE(1965), + [sym_val_record] = STATE(1965), + [sym_val_table] = STATE(1965), + [sym_val_closure] = STATE(1965), + [sym_unquoted] = STATE(1406), + [sym__unquoted_anonymous_prefix] = STATE(10575), + [sym_comment] = STATE(1919), + [anon_sym_LBRACK] = ACTIONS(4598), + [anon_sym_LPAREN] = ACTIONS(5575), + [anon_sym_DOLLAR] = ACTIONS(5577), + [anon_sym_DASH] = ACTIONS(4604), + [anon_sym_LBRACE] = ACTIONS(4606), + [anon_sym_DOT_DOT] = ACTIONS(5579), + [anon_sym_not] = ACTIONS(4610), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5581), + [anon_sym_DOT_DOT_LT] = ACTIONS(5581), + [anon_sym_null] = ACTIONS(4614), + [anon_sym_true] = ACTIONS(4616), + [anon_sym_false] = ACTIONS(4616), + [aux_sym__val_number_decimal_token1] = ACTIONS(4618), + [aux_sym__val_number_decimal_token2] = ACTIONS(4620), + [anon_sym_DOT2] = ACTIONS(5583), + [aux_sym__val_number_decimal_token3] = ACTIONS(4624), + [aux_sym__val_number_token1] = ACTIONS(4626), + [aux_sym__val_number_token2] = ACTIONS(4626), + [aux_sym__val_number_token3] = ACTIONS(4626), + [aux_sym__val_number_token4] = ACTIONS(5585), + [aux_sym__val_number_token5] = ACTIONS(5585), + [aux_sym__val_number_token6] = ACTIONS(5585), + [anon_sym_0b] = ACTIONS(4630), + [anon_sym_0o] = ACTIONS(4632), + [anon_sym_0x] = ACTIONS(4632), + [sym_val_date] = ACTIONS(4634), + [anon_sym_DQUOTE] = ACTIONS(4636), + [sym__str_single_quotes] = ACTIONS(4638), + [sym__str_back_ticks] = ACTIONS(4638), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4642), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5587), [anon_sym_POUND] = ACTIONS(3), }, - [1726] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6768), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6752), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5256), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(5954), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(1726), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(5113), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5115), - [anon_sym_DOT_DOT_LT] = ACTIONS(5115), - [anon_sym_null] = ACTIONS(5117), - [anon_sym_true] = ACTIONS(5119), - [anon_sym_false] = ACTIONS(5119), - [aux_sym__val_number_decimal_token1] = ACTIONS(5121), - [aux_sym__val_number_decimal_token2] = ACTIONS(5123), - [anon_sym_DOT2] = ACTIONS(5125), - [aux_sym__val_number_decimal_token3] = ACTIONS(5127), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(5129), - [aux_sym__val_number_token5] = ACTIONS(5129), - [aux_sym__val_number_token6] = ACTIONS(5129), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(5131), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), + [1920] = { + [sym_expr_unary] = STATE(1394), + [sym__expr_unary_minus] = STATE(1792), + [sym_expr_binary] = STATE(1394), + [sym__expr_binary_expression] = STATE(1459), + [sym_expr_parenthesized] = STATE(1394), + [sym__val_range] = STATE(10232), + [sym__value] = STATE(1394), + [sym_val_nothing] = STATE(1965), + [sym_val_bool] = STATE(1364), + [sym_val_variable] = STATE(1965), + [sym__var] = STATE(1092), + [sym_val_number] = STATE(1965), + [sym__val_number_decimal] = STATE(878), + [sym__val_number] = STATE(1966), + [sym_val_duration] = STATE(1965), + [sym_val_filesize] = STATE(1965), + [sym_val_binary] = STATE(1965), + [sym_val_string] = STATE(1965), + [sym__str_double_quotes] = STATE(1487), + [sym_val_interpolated] = STATE(1965), + [sym__inter_single_quotes] = STATE(1494), + [sym__inter_double_quotes] = STATE(1495), + [sym_val_list] = STATE(1965), + [sym_val_record] = STATE(1965), + [sym_val_table] = STATE(1965), + [sym_val_closure] = STATE(1965), + [sym_unquoted] = STATE(1412), + [sym__unquoted_anonymous_prefix] = STATE(10575), + [sym_comment] = STATE(1920), + [anon_sym_LBRACK] = ACTIONS(4598), + [anon_sym_LPAREN] = ACTIONS(5575), + [anon_sym_DOLLAR] = ACTIONS(5577), + [anon_sym_DASH] = ACTIONS(4604), + [anon_sym_LBRACE] = ACTIONS(4606), + [anon_sym_DOT_DOT] = ACTIONS(5579), + [anon_sym_not] = ACTIONS(4610), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5581), + [anon_sym_DOT_DOT_LT] = ACTIONS(5581), + [anon_sym_null] = ACTIONS(4614), + [anon_sym_true] = ACTIONS(4616), + [anon_sym_false] = ACTIONS(4616), + [aux_sym__val_number_decimal_token1] = ACTIONS(4618), + [aux_sym__val_number_decimal_token2] = ACTIONS(4620), + [anon_sym_DOT2] = ACTIONS(5583), + [aux_sym__val_number_decimal_token3] = ACTIONS(4624), + [aux_sym__val_number_token1] = ACTIONS(4626), + [aux_sym__val_number_token2] = ACTIONS(4626), + [aux_sym__val_number_token3] = ACTIONS(4626), + [aux_sym__val_number_token4] = ACTIONS(5585), + [aux_sym__val_number_token5] = ACTIONS(5585), + [aux_sym__val_number_token6] = ACTIONS(5585), + [anon_sym_0b] = ACTIONS(4630), + [anon_sym_0o] = ACTIONS(4632), + [anon_sym_0x] = ACTIONS(4632), + [sym_val_date] = ACTIONS(4634), + [anon_sym_DQUOTE] = ACTIONS(4636), + [sym__str_single_quotes] = ACTIONS(4638), + [sym__str_back_ticks] = ACTIONS(4638), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4642), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5587), [anon_sym_POUND] = ACTIONS(3), }, - [1727] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6769), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6752), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5256), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(5955), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(1727), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(5113), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5115), - [anon_sym_DOT_DOT_LT] = ACTIONS(5115), - [anon_sym_null] = ACTIONS(5117), - [anon_sym_true] = ACTIONS(5119), - [anon_sym_false] = ACTIONS(5119), - [aux_sym__val_number_decimal_token1] = ACTIONS(5121), - [aux_sym__val_number_decimal_token2] = ACTIONS(5123), - [anon_sym_DOT2] = ACTIONS(5125), - [aux_sym__val_number_decimal_token3] = ACTIONS(5127), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(5129), - [aux_sym__val_number_token5] = ACTIONS(5129), - [aux_sym__val_number_token6] = ACTIONS(5129), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(5131), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), + [1921] = { + [sym_expr_unary] = STATE(1394), + [sym__expr_unary_minus] = STATE(1792), + [sym_expr_binary] = STATE(1394), + [sym__expr_binary_expression] = STATE(1460), + [sym_expr_parenthesized] = STATE(1394), + [sym__val_range] = STATE(10232), + [sym__value] = STATE(1394), + [sym_val_nothing] = STATE(1965), + [sym_val_bool] = STATE(1364), + [sym_val_variable] = STATE(1965), + [sym__var] = STATE(1092), + [sym_val_number] = STATE(1965), + [sym__val_number_decimal] = STATE(878), + [sym__val_number] = STATE(1966), + [sym_val_duration] = STATE(1965), + [sym_val_filesize] = STATE(1965), + [sym_val_binary] = STATE(1965), + [sym_val_string] = STATE(1965), + [sym__str_double_quotes] = STATE(1487), + [sym_val_interpolated] = STATE(1965), + [sym__inter_single_quotes] = STATE(1494), + [sym__inter_double_quotes] = STATE(1495), + [sym_val_list] = STATE(1965), + [sym_val_record] = STATE(1965), + [sym_val_table] = STATE(1965), + [sym_val_closure] = STATE(1965), + [sym_unquoted] = STATE(1414), + [sym__unquoted_anonymous_prefix] = STATE(10575), + [sym_comment] = STATE(1921), + [anon_sym_LBRACK] = ACTIONS(4598), + [anon_sym_LPAREN] = ACTIONS(5575), + [anon_sym_DOLLAR] = ACTIONS(5577), + [anon_sym_DASH] = ACTIONS(4604), + [anon_sym_LBRACE] = ACTIONS(4606), + [anon_sym_DOT_DOT] = ACTIONS(5579), + [anon_sym_not] = ACTIONS(4610), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5581), + [anon_sym_DOT_DOT_LT] = ACTIONS(5581), + [anon_sym_null] = ACTIONS(4614), + [anon_sym_true] = ACTIONS(4616), + [anon_sym_false] = ACTIONS(4616), + [aux_sym__val_number_decimal_token1] = ACTIONS(4618), + [aux_sym__val_number_decimal_token2] = ACTIONS(4620), + [anon_sym_DOT2] = ACTIONS(5583), + [aux_sym__val_number_decimal_token3] = ACTIONS(4624), + [aux_sym__val_number_token1] = ACTIONS(4626), + [aux_sym__val_number_token2] = ACTIONS(4626), + [aux_sym__val_number_token3] = ACTIONS(4626), + [aux_sym__val_number_token4] = ACTIONS(5585), + [aux_sym__val_number_token5] = ACTIONS(5585), + [aux_sym__val_number_token6] = ACTIONS(5585), + [anon_sym_0b] = ACTIONS(4630), + [anon_sym_0o] = ACTIONS(4632), + [anon_sym_0x] = ACTIONS(4632), + [sym_val_date] = ACTIONS(4634), + [anon_sym_DQUOTE] = ACTIONS(4636), + [sym__str_single_quotes] = ACTIONS(4638), + [sym__str_back_ticks] = ACTIONS(4638), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4642), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5587), [anon_sym_POUND] = ACTIONS(3), }, - [1728] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6770), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6752), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5256), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(5962), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(1728), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(5113), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5115), - [anon_sym_DOT_DOT_LT] = ACTIONS(5115), - [anon_sym_null] = ACTIONS(5117), - [anon_sym_true] = ACTIONS(5119), - [anon_sym_false] = ACTIONS(5119), - [aux_sym__val_number_decimal_token1] = ACTIONS(5121), - [aux_sym__val_number_decimal_token2] = ACTIONS(5123), - [anon_sym_DOT2] = ACTIONS(5125), - [aux_sym__val_number_decimal_token3] = ACTIONS(5127), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(5129), - [aux_sym__val_number_token5] = ACTIONS(5129), - [aux_sym__val_number_token6] = ACTIONS(5129), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(5131), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), + [1922] = { + [sym_expr_unary] = STATE(1394), + [sym__expr_unary_minus] = STATE(1792), + [sym_expr_binary] = STATE(1394), + [sym__expr_binary_expression] = STATE(1463), + [sym_expr_parenthesized] = STATE(1394), + [sym__val_range] = STATE(10232), + [sym__value] = STATE(1394), + [sym_val_nothing] = STATE(1965), + [sym_val_bool] = STATE(1364), + [sym_val_variable] = STATE(1965), + [sym__var] = STATE(1092), + [sym_val_number] = STATE(1965), + [sym__val_number_decimal] = STATE(878), + [sym__val_number] = STATE(1966), + [sym_val_duration] = STATE(1965), + [sym_val_filesize] = STATE(1965), + [sym_val_binary] = STATE(1965), + [sym_val_string] = STATE(1965), + [sym__str_double_quotes] = STATE(1487), + [sym_val_interpolated] = STATE(1965), + [sym__inter_single_quotes] = STATE(1494), + [sym__inter_double_quotes] = STATE(1495), + [sym_val_list] = STATE(1965), + [sym_val_record] = STATE(1965), + [sym_val_table] = STATE(1965), + [sym_val_closure] = STATE(1965), + [sym_unquoted] = STATE(1415), + [sym__unquoted_anonymous_prefix] = STATE(10575), + [sym_comment] = STATE(1922), + [anon_sym_LBRACK] = ACTIONS(4598), + [anon_sym_LPAREN] = ACTIONS(5575), + [anon_sym_DOLLAR] = ACTIONS(5577), + [anon_sym_DASH] = ACTIONS(4604), + [anon_sym_LBRACE] = ACTIONS(4606), + [anon_sym_DOT_DOT] = ACTIONS(5579), + [anon_sym_not] = ACTIONS(4610), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5581), + [anon_sym_DOT_DOT_LT] = ACTIONS(5581), + [anon_sym_null] = ACTIONS(4614), + [anon_sym_true] = ACTIONS(4616), + [anon_sym_false] = ACTIONS(4616), + [aux_sym__val_number_decimal_token1] = ACTIONS(4618), + [aux_sym__val_number_decimal_token2] = ACTIONS(4620), + [anon_sym_DOT2] = ACTIONS(5583), + [aux_sym__val_number_decimal_token3] = ACTIONS(4624), + [aux_sym__val_number_token1] = ACTIONS(4626), + [aux_sym__val_number_token2] = ACTIONS(4626), + [aux_sym__val_number_token3] = ACTIONS(4626), + [aux_sym__val_number_token4] = ACTIONS(5585), + [aux_sym__val_number_token5] = ACTIONS(5585), + [aux_sym__val_number_token6] = ACTIONS(5585), + [anon_sym_0b] = ACTIONS(4630), + [anon_sym_0o] = ACTIONS(4632), + [anon_sym_0x] = ACTIONS(4632), + [sym_val_date] = ACTIONS(4634), + [anon_sym_DQUOTE] = ACTIONS(4636), + [sym__str_single_quotes] = ACTIONS(4638), + [sym__str_back_ticks] = ACTIONS(4638), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4642), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5587), [anon_sym_POUND] = ACTIONS(3), }, - [1729] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6771), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6752), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5256), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(5981), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(1729), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(5113), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5115), - [anon_sym_DOT_DOT_LT] = ACTIONS(5115), - [anon_sym_null] = ACTIONS(5117), - [anon_sym_true] = ACTIONS(5119), - [anon_sym_false] = ACTIONS(5119), - [aux_sym__val_number_decimal_token1] = ACTIONS(5121), - [aux_sym__val_number_decimal_token2] = ACTIONS(5123), - [anon_sym_DOT2] = ACTIONS(5125), - [aux_sym__val_number_decimal_token3] = ACTIONS(5127), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(5129), - [aux_sym__val_number_token5] = ACTIONS(5129), - [aux_sym__val_number_token6] = ACTIONS(5129), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(5131), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), + [1923] = { + [sym_expr_unary] = STATE(1394), + [sym__expr_unary_minus] = STATE(1792), + [sym_expr_binary] = STATE(1394), + [sym__expr_binary_expression] = STATE(1464), + [sym_expr_parenthesized] = STATE(1394), + [sym__val_range] = STATE(10232), + [sym__value] = STATE(1394), + [sym_val_nothing] = STATE(1965), + [sym_val_bool] = STATE(1364), + [sym_val_variable] = STATE(1965), + [sym__var] = STATE(1092), + [sym_val_number] = STATE(1965), + [sym__val_number_decimal] = STATE(878), + [sym__val_number] = STATE(1966), + [sym_val_duration] = STATE(1965), + [sym_val_filesize] = STATE(1965), + [sym_val_binary] = STATE(1965), + [sym_val_string] = STATE(1965), + [sym__str_double_quotes] = STATE(1487), + [sym_val_interpolated] = STATE(1965), + [sym__inter_single_quotes] = STATE(1494), + [sym__inter_double_quotes] = STATE(1495), + [sym_val_list] = STATE(1965), + [sym_val_record] = STATE(1965), + [sym_val_table] = STATE(1965), + [sym_val_closure] = STATE(1965), + [sym_unquoted] = STATE(1417), + [sym__unquoted_anonymous_prefix] = STATE(10575), + [sym_comment] = STATE(1923), + [anon_sym_LBRACK] = ACTIONS(4598), + [anon_sym_LPAREN] = ACTIONS(5575), + [anon_sym_DOLLAR] = ACTIONS(5577), + [anon_sym_DASH] = ACTIONS(4604), + [anon_sym_LBRACE] = ACTIONS(4606), + [anon_sym_DOT_DOT] = ACTIONS(5579), + [anon_sym_not] = ACTIONS(4610), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5581), + [anon_sym_DOT_DOT_LT] = ACTIONS(5581), + [anon_sym_null] = ACTIONS(4614), + [anon_sym_true] = ACTIONS(4616), + [anon_sym_false] = ACTIONS(4616), + [aux_sym__val_number_decimal_token1] = ACTIONS(4618), + [aux_sym__val_number_decimal_token2] = ACTIONS(4620), + [anon_sym_DOT2] = ACTIONS(5583), + [aux_sym__val_number_decimal_token3] = ACTIONS(4624), + [aux_sym__val_number_token1] = ACTIONS(4626), + [aux_sym__val_number_token2] = ACTIONS(4626), + [aux_sym__val_number_token3] = ACTIONS(4626), + [aux_sym__val_number_token4] = ACTIONS(5585), + [aux_sym__val_number_token5] = ACTIONS(5585), + [aux_sym__val_number_token6] = ACTIONS(5585), + [anon_sym_0b] = ACTIONS(4630), + [anon_sym_0o] = ACTIONS(4632), + [anon_sym_0x] = ACTIONS(4632), + [sym_val_date] = ACTIONS(4634), + [anon_sym_DQUOTE] = ACTIONS(4636), + [sym__str_single_quotes] = ACTIONS(4638), + [sym__str_back_ticks] = ACTIONS(4638), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4642), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5587), [anon_sym_POUND] = ACTIONS(3), }, - [1730] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6772), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6752), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5256), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(5958), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(1730), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(5113), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5115), - [anon_sym_DOT_DOT_LT] = ACTIONS(5115), - [anon_sym_null] = ACTIONS(5117), - [anon_sym_true] = ACTIONS(5119), - [anon_sym_false] = ACTIONS(5119), - [aux_sym__val_number_decimal_token1] = ACTIONS(5121), - [aux_sym__val_number_decimal_token2] = ACTIONS(5123), - [anon_sym_DOT2] = ACTIONS(5125), - [aux_sym__val_number_decimal_token3] = ACTIONS(5127), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(5129), - [aux_sym__val_number_token5] = ACTIONS(5129), - [aux_sym__val_number_token6] = ACTIONS(5129), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(5131), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), + [1924] = { + [sym_expr_unary] = STATE(1394), + [sym__expr_unary_minus] = STATE(1792), + [sym_expr_binary] = STATE(1394), + [sym__expr_binary_expression] = STATE(1468), + [sym_expr_parenthesized] = STATE(1394), + [sym__val_range] = STATE(10232), + [sym__value] = STATE(1394), + [sym_val_nothing] = STATE(1965), + [sym_val_bool] = STATE(1364), + [sym_val_variable] = STATE(1965), + [sym__var] = STATE(1092), + [sym_val_number] = STATE(1965), + [sym__val_number_decimal] = STATE(878), + [sym__val_number] = STATE(1966), + [sym_val_duration] = STATE(1965), + [sym_val_filesize] = STATE(1965), + [sym_val_binary] = STATE(1965), + [sym_val_string] = STATE(1965), + [sym__str_double_quotes] = STATE(1487), + [sym_val_interpolated] = STATE(1965), + [sym__inter_single_quotes] = STATE(1494), + [sym__inter_double_quotes] = STATE(1495), + [sym_val_list] = STATE(1965), + [sym_val_record] = STATE(1965), + [sym_val_table] = STATE(1965), + [sym_val_closure] = STATE(1965), + [sym_unquoted] = STATE(1418), + [sym__unquoted_anonymous_prefix] = STATE(10575), + [sym_comment] = STATE(1924), + [anon_sym_LBRACK] = ACTIONS(4598), + [anon_sym_LPAREN] = ACTIONS(5575), + [anon_sym_DOLLAR] = ACTIONS(5577), + [anon_sym_DASH] = ACTIONS(4604), + [anon_sym_LBRACE] = ACTIONS(4606), + [anon_sym_DOT_DOT] = ACTIONS(5579), + [anon_sym_not] = ACTIONS(4610), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5581), + [anon_sym_DOT_DOT_LT] = ACTIONS(5581), + [anon_sym_null] = ACTIONS(4614), + [anon_sym_true] = ACTIONS(4616), + [anon_sym_false] = ACTIONS(4616), + [aux_sym__val_number_decimal_token1] = ACTIONS(4618), + [aux_sym__val_number_decimal_token2] = ACTIONS(4620), + [anon_sym_DOT2] = ACTIONS(5583), + [aux_sym__val_number_decimal_token3] = ACTIONS(4624), + [aux_sym__val_number_token1] = ACTIONS(4626), + [aux_sym__val_number_token2] = ACTIONS(4626), + [aux_sym__val_number_token3] = ACTIONS(4626), + [aux_sym__val_number_token4] = ACTIONS(5585), + [aux_sym__val_number_token5] = ACTIONS(5585), + [aux_sym__val_number_token6] = ACTIONS(5585), + [anon_sym_0b] = ACTIONS(4630), + [anon_sym_0o] = ACTIONS(4632), + [anon_sym_0x] = ACTIONS(4632), + [sym_val_date] = ACTIONS(4634), + [anon_sym_DQUOTE] = ACTIONS(4636), + [sym__str_single_quotes] = ACTIONS(4638), + [sym__str_back_ticks] = ACTIONS(4638), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4642), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5587), [anon_sym_POUND] = ACTIONS(3), }, - [1731] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6773), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6752), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5256), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(6177), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(1731), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(5113), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5115), - [anon_sym_DOT_DOT_LT] = ACTIONS(5115), - [anon_sym_null] = ACTIONS(5117), - [anon_sym_true] = ACTIONS(5119), - [anon_sym_false] = ACTIONS(5119), - [aux_sym__val_number_decimal_token1] = ACTIONS(5121), - [aux_sym__val_number_decimal_token2] = ACTIONS(5123), - [anon_sym_DOT2] = ACTIONS(5125), - [aux_sym__val_number_decimal_token3] = ACTIONS(5127), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(5129), - [aux_sym__val_number_token5] = ACTIONS(5129), - [aux_sym__val_number_token6] = ACTIONS(5129), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(5131), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), + [1925] = { + [sym_expr_unary] = STATE(1394), + [sym__expr_unary_minus] = STATE(1792), + [sym_expr_binary] = STATE(1394), + [sym__expr_binary_expression] = STATE(1470), + [sym_expr_parenthesized] = STATE(1394), + [sym__val_range] = STATE(10232), + [sym__value] = STATE(1394), + [sym_val_nothing] = STATE(1965), + [sym_val_bool] = STATE(1364), + [sym_val_variable] = STATE(1965), + [sym__var] = STATE(1092), + [sym_val_number] = STATE(1965), + [sym__val_number_decimal] = STATE(878), + [sym__val_number] = STATE(1966), + [sym_val_duration] = STATE(1965), + [sym_val_filesize] = STATE(1965), + [sym_val_binary] = STATE(1965), + [sym_val_string] = STATE(1965), + [sym__str_double_quotes] = STATE(1487), + [sym_val_interpolated] = STATE(1965), + [sym__inter_single_quotes] = STATE(1494), + [sym__inter_double_quotes] = STATE(1495), + [sym_val_list] = STATE(1965), + [sym_val_record] = STATE(1965), + [sym_val_table] = STATE(1965), + [sym_val_closure] = STATE(1965), + [sym_unquoted] = STATE(1422), + [sym__unquoted_anonymous_prefix] = STATE(10575), + [sym_comment] = STATE(1925), + [anon_sym_LBRACK] = ACTIONS(4598), + [anon_sym_LPAREN] = ACTIONS(5575), + [anon_sym_DOLLAR] = ACTIONS(5577), + [anon_sym_DASH] = ACTIONS(4604), + [anon_sym_LBRACE] = ACTIONS(4606), + [anon_sym_DOT_DOT] = ACTIONS(5579), + [anon_sym_not] = ACTIONS(4610), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5581), + [anon_sym_DOT_DOT_LT] = ACTIONS(5581), + [anon_sym_null] = ACTIONS(4614), + [anon_sym_true] = ACTIONS(4616), + [anon_sym_false] = ACTIONS(4616), + [aux_sym__val_number_decimal_token1] = ACTIONS(4618), + [aux_sym__val_number_decimal_token2] = ACTIONS(4620), + [anon_sym_DOT2] = ACTIONS(5583), + [aux_sym__val_number_decimal_token3] = ACTIONS(4624), + [aux_sym__val_number_token1] = ACTIONS(4626), + [aux_sym__val_number_token2] = ACTIONS(4626), + [aux_sym__val_number_token3] = ACTIONS(4626), + [aux_sym__val_number_token4] = ACTIONS(5585), + [aux_sym__val_number_token5] = ACTIONS(5585), + [aux_sym__val_number_token6] = ACTIONS(5585), + [anon_sym_0b] = ACTIONS(4630), + [anon_sym_0o] = ACTIONS(4632), + [anon_sym_0x] = ACTIONS(4632), + [sym_val_date] = ACTIONS(4634), + [anon_sym_DQUOTE] = ACTIONS(4636), + [sym__str_single_quotes] = ACTIONS(4638), + [sym__str_back_ticks] = ACTIONS(4638), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4642), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5587), [anon_sym_POUND] = ACTIONS(3), }, - [1732] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6774), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6752), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5256), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(6203), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(1732), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(5113), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5115), - [anon_sym_DOT_DOT_LT] = ACTIONS(5115), - [anon_sym_null] = ACTIONS(5117), - [anon_sym_true] = ACTIONS(5119), - [anon_sym_false] = ACTIONS(5119), - [aux_sym__val_number_decimal_token1] = ACTIONS(5121), - [aux_sym__val_number_decimal_token2] = ACTIONS(5123), - [anon_sym_DOT2] = ACTIONS(5125), - [aux_sym__val_number_decimal_token3] = ACTIONS(5127), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(5129), - [aux_sym__val_number_token5] = ACTIONS(5129), - [aux_sym__val_number_token6] = ACTIONS(5129), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(5131), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), + [1926] = { + [sym_expr_unary] = STATE(1394), + [sym__expr_unary_minus] = STATE(1792), + [sym_expr_binary] = STATE(1394), + [sym__expr_binary_expression] = STATE(1472), + [sym_expr_parenthesized] = STATE(1394), + [sym__val_range] = STATE(10232), + [sym__value] = STATE(1394), + [sym_val_nothing] = STATE(1965), + [sym_val_bool] = STATE(1364), + [sym_val_variable] = STATE(1965), + [sym__var] = STATE(1092), + [sym_val_number] = STATE(1965), + [sym__val_number_decimal] = STATE(878), + [sym__val_number] = STATE(1966), + [sym_val_duration] = STATE(1965), + [sym_val_filesize] = STATE(1965), + [sym_val_binary] = STATE(1965), + [sym_val_string] = STATE(1965), + [sym__str_double_quotes] = STATE(1487), + [sym_val_interpolated] = STATE(1965), + [sym__inter_single_quotes] = STATE(1494), + [sym__inter_double_quotes] = STATE(1495), + [sym_val_list] = STATE(1965), + [sym_val_record] = STATE(1965), + [sym_val_table] = STATE(1965), + [sym_val_closure] = STATE(1965), + [sym_unquoted] = STATE(1424), + [sym__unquoted_anonymous_prefix] = STATE(10575), + [sym_comment] = STATE(1926), + [anon_sym_LBRACK] = ACTIONS(4598), + [anon_sym_LPAREN] = ACTIONS(5575), + [anon_sym_DOLLAR] = ACTIONS(5577), + [anon_sym_DASH] = ACTIONS(4604), + [anon_sym_LBRACE] = ACTIONS(4606), + [anon_sym_DOT_DOT] = ACTIONS(5579), + [anon_sym_not] = ACTIONS(4610), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5581), + [anon_sym_DOT_DOT_LT] = ACTIONS(5581), + [anon_sym_null] = ACTIONS(4614), + [anon_sym_true] = ACTIONS(4616), + [anon_sym_false] = ACTIONS(4616), + [aux_sym__val_number_decimal_token1] = ACTIONS(4618), + [aux_sym__val_number_decimal_token2] = ACTIONS(4620), + [anon_sym_DOT2] = ACTIONS(5583), + [aux_sym__val_number_decimal_token3] = ACTIONS(4624), + [aux_sym__val_number_token1] = ACTIONS(4626), + [aux_sym__val_number_token2] = ACTIONS(4626), + [aux_sym__val_number_token3] = ACTIONS(4626), + [aux_sym__val_number_token4] = ACTIONS(5585), + [aux_sym__val_number_token5] = ACTIONS(5585), + [aux_sym__val_number_token6] = ACTIONS(5585), + [anon_sym_0b] = ACTIONS(4630), + [anon_sym_0o] = ACTIONS(4632), + [anon_sym_0x] = ACTIONS(4632), + [sym_val_date] = ACTIONS(4634), + [anon_sym_DQUOTE] = ACTIONS(4636), + [sym__str_single_quotes] = ACTIONS(4638), + [sym__str_back_ticks] = ACTIONS(4638), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4642), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5587), [anon_sym_POUND] = ACTIONS(3), }, - [1733] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6775), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6752), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5256), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(6218), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(1733), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(5113), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5115), - [anon_sym_DOT_DOT_LT] = ACTIONS(5115), - [anon_sym_null] = ACTIONS(5117), - [anon_sym_true] = ACTIONS(5119), - [anon_sym_false] = ACTIONS(5119), - [aux_sym__val_number_decimal_token1] = ACTIONS(5121), - [aux_sym__val_number_decimal_token2] = ACTIONS(5123), - [anon_sym_DOT2] = ACTIONS(5125), - [aux_sym__val_number_decimal_token3] = ACTIONS(5127), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(5129), - [aux_sym__val_number_token5] = ACTIONS(5129), - [aux_sym__val_number_token6] = ACTIONS(5129), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(5131), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), + [1927] = { + [sym_expr_unary] = STATE(1394), + [sym__expr_unary_minus] = STATE(1792), + [sym_expr_binary] = STATE(1394), + [sym__expr_binary_expression] = STATE(1473), + [sym_expr_parenthesized] = STATE(1394), + [sym__val_range] = STATE(10232), + [sym__value] = STATE(1394), + [sym_val_nothing] = STATE(1965), + [sym_val_bool] = STATE(1364), + [sym_val_variable] = STATE(1965), + [sym__var] = STATE(1092), + [sym_val_number] = STATE(1965), + [sym__val_number_decimal] = STATE(878), + [sym__val_number] = STATE(1966), + [sym_val_duration] = STATE(1965), + [sym_val_filesize] = STATE(1965), + [sym_val_binary] = STATE(1965), + [sym_val_string] = STATE(1965), + [sym__str_double_quotes] = STATE(1487), + [sym_val_interpolated] = STATE(1965), + [sym__inter_single_quotes] = STATE(1494), + [sym__inter_double_quotes] = STATE(1495), + [sym_val_list] = STATE(1965), + [sym_val_record] = STATE(1965), + [sym_val_table] = STATE(1965), + [sym_val_closure] = STATE(1965), + [sym_unquoted] = STATE(1426), + [sym__unquoted_anonymous_prefix] = STATE(10575), + [sym_comment] = STATE(1927), + [anon_sym_LBRACK] = ACTIONS(4598), + [anon_sym_LPAREN] = ACTIONS(5575), + [anon_sym_DOLLAR] = ACTIONS(5577), + [anon_sym_DASH] = ACTIONS(4604), + [anon_sym_LBRACE] = ACTIONS(4606), + [anon_sym_DOT_DOT] = ACTIONS(5579), + [anon_sym_not] = ACTIONS(4610), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5581), + [anon_sym_DOT_DOT_LT] = ACTIONS(5581), + [anon_sym_null] = ACTIONS(4614), + [anon_sym_true] = ACTIONS(4616), + [anon_sym_false] = ACTIONS(4616), + [aux_sym__val_number_decimal_token1] = ACTIONS(4618), + [aux_sym__val_number_decimal_token2] = ACTIONS(4620), + [anon_sym_DOT2] = ACTIONS(5583), + [aux_sym__val_number_decimal_token3] = ACTIONS(4624), + [aux_sym__val_number_token1] = ACTIONS(4626), + [aux_sym__val_number_token2] = ACTIONS(4626), + [aux_sym__val_number_token3] = ACTIONS(4626), + [aux_sym__val_number_token4] = ACTIONS(5585), + [aux_sym__val_number_token5] = ACTIONS(5585), + [aux_sym__val_number_token6] = ACTIONS(5585), + [anon_sym_0b] = ACTIONS(4630), + [anon_sym_0o] = ACTIONS(4632), + [anon_sym_0x] = ACTIONS(4632), + [sym_val_date] = ACTIONS(4634), + [anon_sym_DQUOTE] = ACTIONS(4636), + [sym__str_single_quotes] = ACTIONS(4638), + [sym__str_back_ticks] = ACTIONS(4638), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4642), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5587), [anon_sym_POUND] = ACTIONS(3), }, - [1734] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6776), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6752), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5256), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(6055), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(1734), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(5113), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5115), - [anon_sym_DOT_DOT_LT] = ACTIONS(5115), - [anon_sym_null] = ACTIONS(5117), - [anon_sym_true] = ACTIONS(5119), - [anon_sym_false] = ACTIONS(5119), - [aux_sym__val_number_decimal_token1] = ACTIONS(5121), - [aux_sym__val_number_decimal_token2] = ACTIONS(5123), - [anon_sym_DOT2] = ACTIONS(5125), - [aux_sym__val_number_decimal_token3] = ACTIONS(5127), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(5129), - [aux_sym__val_number_token5] = ACTIONS(5129), - [aux_sym__val_number_token6] = ACTIONS(5129), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(5131), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), + [1928] = { + [sym_expr_unary] = STATE(1394), + [sym__expr_unary_minus] = STATE(1792), + [sym_expr_binary] = STATE(1394), + [sym__expr_binary_expression] = STATE(1474), + [sym_expr_parenthesized] = STATE(1394), + [sym__val_range] = STATE(10232), + [sym__value] = STATE(1394), + [sym_val_nothing] = STATE(1965), + [sym_val_bool] = STATE(1364), + [sym_val_variable] = STATE(1965), + [sym__var] = STATE(1092), + [sym_val_number] = STATE(1965), + [sym__val_number_decimal] = STATE(878), + [sym__val_number] = STATE(1966), + [sym_val_duration] = STATE(1965), + [sym_val_filesize] = STATE(1965), + [sym_val_binary] = STATE(1965), + [sym_val_string] = STATE(1965), + [sym__str_double_quotes] = STATE(1487), + [sym_val_interpolated] = STATE(1965), + [sym__inter_single_quotes] = STATE(1494), + [sym__inter_double_quotes] = STATE(1495), + [sym_val_list] = STATE(1965), + [sym_val_record] = STATE(1965), + [sym_val_table] = STATE(1965), + [sym_val_closure] = STATE(1965), + [sym_unquoted] = STATE(1427), + [sym__unquoted_anonymous_prefix] = STATE(10575), + [sym_comment] = STATE(1928), + [anon_sym_LBRACK] = ACTIONS(4598), + [anon_sym_LPAREN] = ACTIONS(5575), + [anon_sym_DOLLAR] = ACTIONS(5577), + [anon_sym_DASH] = ACTIONS(4604), + [anon_sym_LBRACE] = ACTIONS(4606), + [anon_sym_DOT_DOT] = ACTIONS(5579), + [anon_sym_not] = ACTIONS(4610), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5581), + [anon_sym_DOT_DOT_LT] = ACTIONS(5581), + [anon_sym_null] = ACTIONS(4614), + [anon_sym_true] = ACTIONS(4616), + [anon_sym_false] = ACTIONS(4616), + [aux_sym__val_number_decimal_token1] = ACTIONS(4618), + [aux_sym__val_number_decimal_token2] = ACTIONS(4620), + [anon_sym_DOT2] = ACTIONS(5583), + [aux_sym__val_number_decimal_token3] = ACTIONS(4624), + [aux_sym__val_number_token1] = ACTIONS(4626), + [aux_sym__val_number_token2] = ACTIONS(4626), + [aux_sym__val_number_token3] = ACTIONS(4626), + [aux_sym__val_number_token4] = ACTIONS(5585), + [aux_sym__val_number_token5] = ACTIONS(5585), + [aux_sym__val_number_token6] = ACTIONS(5585), + [anon_sym_0b] = ACTIONS(4630), + [anon_sym_0o] = ACTIONS(4632), + [anon_sym_0x] = ACTIONS(4632), + [sym_val_date] = ACTIONS(4634), + [anon_sym_DQUOTE] = ACTIONS(4636), + [sym__str_single_quotes] = ACTIONS(4638), + [sym__str_back_ticks] = ACTIONS(4638), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4642), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5587), [anon_sym_POUND] = ACTIONS(3), }, - [1735] = { - [sym_comment] = STATE(1735), - [anon_sym_export] = ACTIONS(1243), - [anon_sym_alias] = ACTIONS(1243), - [anon_sym_let] = ACTIONS(1243), - [anon_sym_let_DASHenv] = ACTIONS(1243), - [anon_sym_mut] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1243), - [sym_cmd_identifier] = ACTIONS(1243), - [anon_sym_LF] = ACTIONS(1243), - [anon_sym_def] = ACTIONS(1243), - [anon_sym_export_DASHenv] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1243), - [anon_sym_module] = ACTIONS(1243), - [anon_sym_use] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_RPAREN] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_error] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_loop] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_match] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_RBRACE] = ACTIONS(1243), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_try] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_source] = ACTIONS(1243), - [anon_sym_source_DASHenv] = ACTIONS(1243), - [anon_sym_register] = ACTIONS(1243), - [anon_sym_hide] = ACTIONS(1243), - [anon_sym_hide_DASHenv] = ACTIONS(1243), - [anon_sym_overlay] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1243), - [anon_sym_where] = ACTIONS(1243), - [anon_sym_not] = ACTIONS(1243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1243), - [anon_sym_DOT_DOT_LT] = ACTIONS(1243), - [anon_sym_null] = ACTIONS(1243), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_decimal_token2] = ACTIONS(1243), - [anon_sym_DOT2] = ACTIONS(1243), - [aux_sym__val_number_decimal_token3] = ACTIONS(1243), - [aux_sym__val_number_token1] = ACTIONS(1243), - [aux_sym__val_number_token2] = ACTIONS(1243), - [aux_sym__val_number_token3] = ACTIONS(1243), - [aux_sym__val_number_token4] = ACTIONS(1243), - [aux_sym__val_number_token5] = ACTIONS(1243), - [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_0b] = ACTIONS(1243), - [anon_sym_0o] = ACTIONS(1243), - [anon_sym_0x] = ACTIONS(1243), - [sym_val_date] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym__str_single_quotes] = ACTIONS(1243), - [sym__str_back_ticks] = ACTIONS(1243), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1243), - [aux_sym__list_item_starts_with_sign_token1] = ACTIONS(5133), - [anon_sym_CARET] = ACTIONS(1243), - [anon_sym_POUND] = ACTIONS(113), - }, - [1736] = { - [sym_comment] = STATE(1736), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_error] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_RBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_where] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [aux_sym__immediate_decimal_token1] = ACTIONS(5039), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [aux_sym_unquoted_token2] = ACTIONS(5135), - [anon_sym_POUND] = ACTIONS(113), - }, - [1737] = { - [sym_cell_path] = STATE(2873), - [sym_path] = STATE(1663), - [sym_comment] = STATE(1737), - [ts_builtin_sym_end] = ACTIONS(1205), - [anon_sym_export] = ACTIONS(1203), - [anon_sym_alias] = ACTIONS(1203), - [anon_sym_let] = ACTIONS(1203), - [anon_sym_let_DASHenv] = ACTIONS(1203), - [anon_sym_mut] = ACTIONS(1203), - [anon_sym_const] = ACTIONS(1203), - [anon_sym_SEMI] = ACTIONS(1203), - [sym_cmd_identifier] = ACTIONS(1203), - [anon_sym_LF] = ACTIONS(1205), - [anon_sym_def] = ACTIONS(1203), - [anon_sym_export_DASHenv] = ACTIONS(1203), - [anon_sym_extern] = ACTIONS(1203), - [anon_sym_module] = ACTIONS(1203), - [anon_sym_use] = ACTIONS(1203), - [anon_sym_LBRACK] = ACTIONS(1203), - [anon_sym_LPAREN] = ACTIONS(1203), - [anon_sym_DOLLAR] = ACTIONS(1203), - [anon_sym_error] = ACTIONS(1203), - [anon_sym_DASH] = ACTIONS(1203), - [anon_sym_break] = ACTIONS(1203), - [anon_sym_continue] = ACTIONS(1203), - [anon_sym_for] = ACTIONS(1203), - [anon_sym_loop] = ACTIONS(1203), - [anon_sym_while] = ACTIONS(1203), - [anon_sym_do] = ACTIONS(1203), - [anon_sym_if] = ACTIONS(1203), - [anon_sym_match] = ACTIONS(1203), - [anon_sym_LBRACE] = ACTIONS(1203), - [anon_sym_DOT_DOT] = ACTIONS(1203), - [anon_sym_try] = ACTIONS(1203), - [anon_sym_return] = ACTIONS(1203), - [anon_sym_source] = ACTIONS(1203), - [anon_sym_source_DASHenv] = ACTIONS(1203), - [anon_sym_register] = ACTIONS(1203), - [anon_sym_hide] = ACTIONS(1203), - [anon_sym_hide_DASHenv] = ACTIONS(1203), - [anon_sym_overlay] = ACTIONS(1203), - [anon_sym_where] = ACTIONS(1203), - [anon_sym_not] = ACTIONS(1203), - [anon_sym_DOT] = ACTIONS(5051), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1203), - [anon_sym_DOT_DOT_LT] = ACTIONS(1203), - [anon_sym_null] = ACTIONS(1203), - [anon_sym_true] = ACTIONS(1203), - [anon_sym_false] = ACTIONS(1203), - [aux_sym__val_number_decimal_token1] = ACTIONS(1203), - [aux_sym__val_number_decimal_token2] = ACTIONS(1203), - [anon_sym_DOT2] = ACTIONS(1203), - [aux_sym__val_number_decimal_token3] = ACTIONS(1203), - [aux_sym__val_number_token1] = ACTIONS(1203), - [aux_sym__val_number_token2] = ACTIONS(1203), - [aux_sym__val_number_token3] = ACTIONS(1203), - [aux_sym__val_number_token4] = ACTIONS(1203), - [aux_sym__val_number_token5] = ACTIONS(1203), - [aux_sym__val_number_token6] = ACTIONS(1203), - [anon_sym_0b] = ACTIONS(1203), - [anon_sym_0o] = ACTIONS(1203), - [anon_sym_0x] = ACTIONS(1203), - [sym_val_date] = ACTIONS(1203), - [anon_sym_DQUOTE] = ACTIONS(1203), - [sym__str_single_quotes] = ACTIONS(1203), - [sym__str_back_ticks] = ACTIONS(1203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1203), - [anon_sym_CARET] = ACTIONS(1203), - [anon_sym_POUND] = ACTIONS(113), - }, - [1738] = { - [sym_comment] = STATE(1738), - [ts_builtin_sym_end] = ACTIONS(3868), - [anon_sym_export] = ACTIONS(3866), - [anon_sym_alias] = ACTIONS(3866), - [anon_sym_let] = ACTIONS(3866), - [anon_sym_let_DASHenv] = ACTIONS(3866), - [anon_sym_mut] = ACTIONS(3866), - [anon_sym_const] = ACTIONS(3866), - [anon_sym_SEMI] = ACTIONS(3866), - [sym_cmd_identifier] = ACTIONS(3866), - [anon_sym_LF] = ACTIONS(3868), - [anon_sym_def] = ACTIONS(3866), - [anon_sym_export_DASHenv] = ACTIONS(3866), - [anon_sym_extern] = ACTIONS(3866), - [anon_sym_module] = ACTIONS(3866), - [anon_sym_use] = ACTIONS(3866), - [anon_sym_LBRACK] = ACTIONS(3866), - [anon_sym_LPAREN] = ACTIONS(3866), - [anon_sym_DOLLAR] = ACTIONS(3866), - [anon_sym_error] = ACTIONS(3866), - [anon_sym_DASH] = ACTIONS(3866), - [anon_sym_break] = ACTIONS(3866), - [anon_sym_continue] = ACTIONS(3866), - [anon_sym_for] = ACTIONS(3866), - [anon_sym_loop] = ACTIONS(3866), - [anon_sym_while] = ACTIONS(3866), - [anon_sym_do] = ACTIONS(3866), - [anon_sym_if] = ACTIONS(3866), - [anon_sym_match] = ACTIONS(3866), - [anon_sym_LBRACE] = ACTIONS(3866), - [anon_sym_DOT_DOT] = ACTIONS(3866), - [anon_sym_try] = ACTIONS(3866), - [anon_sym_return] = ACTIONS(3866), - [anon_sym_source] = ACTIONS(3866), - [anon_sym_source_DASHenv] = ACTIONS(3866), - [anon_sym_register] = ACTIONS(3866), - [anon_sym_hide] = ACTIONS(3866), - [anon_sym_hide_DASHenv] = ACTIONS(3866), - [anon_sym_overlay] = ACTIONS(3866), - [anon_sym_where] = ACTIONS(3866), - [anon_sym_not] = ACTIONS(3866), - [anon_sym_DOT_DOT2] = ACTIONS(5137), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3866), - [anon_sym_DOT_DOT_LT] = ACTIONS(3866), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(5139), - [anon_sym_DOT_DOT_LT2] = ACTIONS(5139), - [anon_sym_null] = ACTIONS(3866), - [anon_sym_true] = ACTIONS(3866), - [anon_sym_false] = ACTIONS(3866), - [aux_sym__val_number_decimal_token1] = ACTIONS(3866), - [aux_sym__val_number_decimal_token2] = ACTIONS(3866), - [anon_sym_DOT2] = ACTIONS(3866), - [aux_sym__val_number_decimal_token3] = ACTIONS(3866), - [aux_sym__val_number_token1] = ACTIONS(3866), - [aux_sym__val_number_token2] = ACTIONS(3866), - [aux_sym__val_number_token3] = ACTIONS(3866), - [aux_sym__val_number_token4] = ACTIONS(3866), - [aux_sym__val_number_token5] = ACTIONS(3866), - [aux_sym__val_number_token6] = ACTIONS(3866), - [anon_sym_0b] = ACTIONS(3866), - [anon_sym_0o] = ACTIONS(3866), - [anon_sym_0x] = ACTIONS(3866), - [sym_val_date] = ACTIONS(3866), - [anon_sym_DQUOTE] = ACTIONS(3866), - [sym__str_single_quotes] = ACTIONS(3866), - [sym__str_back_ticks] = ACTIONS(3866), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3866), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), - [anon_sym_CARET] = ACTIONS(3866), - [anon_sym_POUND] = ACTIONS(113), - }, - [1739] = { - [sym_cell_path] = STATE(2947), - [sym_path] = STATE(1663), - [sym_comment] = STATE(1739), - [ts_builtin_sym_end] = ACTIONS(1188), - [anon_sym_export] = ACTIONS(1186), - [anon_sym_alias] = ACTIONS(1186), - [anon_sym_let] = ACTIONS(1186), - [anon_sym_let_DASHenv] = ACTIONS(1186), - [anon_sym_mut] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1186), - [sym_cmd_identifier] = ACTIONS(1186), - [anon_sym_LF] = ACTIONS(1188), - [anon_sym_def] = ACTIONS(1186), - [anon_sym_export_DASHenv] = ACTIONS(1186), - [anon_sym_extern] = ACTIONS(1186), - [anon_sym_module] = ACTIONS(1186), - [anon_sym_use] = ACTIONS(1186), - [anon_sym_LBRACK] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(1186), - [anon_sym_DOLLAR] = ACTIONS(1186), - [anon_sym_error] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1186), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1186), - [anon_sym_loop] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_do] = ACTIONS(1186), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_match] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_DOT_DOT] = ACTIONS(1186), - [anon_sym_try] = ACTIONS(1186), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_source] = ACTIONS(1186), - [anon_sym_source_DASHenv] = ACTIONS(1186), - [anon_sym_register] = ACTIONS(1186), - [anon_sym_hide] = ACTIONS(1186), - [anon_sym_hide_DASHenv] = ACTIONS(1186), - [anon_sym_overlay] = ACTIONS(1186), - [anon_sym_where] = ACTIONS(1186), - [anon_sym_not] = ACTIONS(1186), - [anon_sym_DOT] = ACTIONS(5051), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1186), - [anon_sym_DOT_DOT_LT] = ACTIONS(1186), - [anon_sym_null] = ACTIONS(1186), - [anon_sym_true] = ACTIONS(1186), - [anon_sym_false] = ACTIONS(1186), - [aux_sym__val_number_decimal_token1] = ACTIONS(1186), - [aux_sym__val_number_decimal_token2] = ACTIONS(1186), - [anon_sym_DOT2] = ACTIONS(1186), - [aux_sym__val_number_decimal_token3] = ACTIONS(1186), - [aux_sym__val_number_token1] = ACTIONS(1186), - [aux_sym__val_number_token2] = ACTIONS(1186), - [aux_sym__val_number_token3] = ACTIONS(1186), - [aux_sym__val_number_token4] = ACTIONS(1186), - [aux_sym__val_number_token5] = ACTIONS(1186), - [aux_sym__val_number_token6] = ACTIONS(1186), - [anon_sym_0b] = ACTIONS(1186), - [anon_sym_0o] = ACTIONS(1186), - [anon_sym_0x] = ACTIONS(1186), - [sym_val_date] = ACTIONS(1186), - [anon_sym_DQUOTE] = ACTIONS(1186), - [sym__str_single_quotes] = ACTIONS(1186), - [sym__str_back_ticks] = ACTIONS(1186), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1186), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1186), - [anon_sym_CARET] = ACTIONS(1186), - [anon_sym_POUND] = ACTIONS(113), - }, - [1740] = { - [sym_comment] = STATE(1740), - [ts_builtin_sym_end] = ACTIONS(3951), - [anon_sym_export] = ACTIONS(3949), - [anon_sym_alias] = ACTIONS(3949), - [anon_sym_let] = ACTIONS(3949), - [anon_sym_let_DASHenv] = ACTIONS(3949), - [anon_sym_mut] = ACTIONS(3949), - [anon_sym_const] = ACTIONS(3949), - [anon_sym_SEMI] = ACTIONS(3949), - [sym_cmd_identifier] = ACTIONS(3949), - [anon_sym_LF] = ACTIONS(3951), - [anon_sym_def] = ACTIONS(3949), - [anon_sym_export_DASHenv] = ACTIONS(3949), - [anon_sym_extern] = ACTIONS(3949), - [anon_sym_module] = ACTIONS(3949), - [anon_sym_use] = ACTIONS(3949), - [anon_sym_LBRACK] = ACTIONS(3949), - [anon_sym_LPAREN] = ACTIONS(3949), - [anon_sym_DOLLAR] = ACTIONS(3949), - [anon_sym_error] = ACTIONS(3949), - [anon_sym_DASH] = ACTIONS(3949), - [anon_sym_break] = ACTIONS(3949), - [anon_sym_continue] = ACTIONS(3949), - [anon_sym_for] = ACTIONS(3949), - [anon_sym_loop] = ACTIONS(3949), - [anon_sym_while] = ACTIONS(3949), - [anon_sym_do] = ACTIONS(3949), - [anon_sym_if] = ACTIONS(3949), - [anon_sym_match] = ACTIONS(3949), - [anon_sym_LBRACE] = ACTIONS(3949), - [anon_sym_DOT_DOT] = ACTIONS(3949), - [anon_sym_try] = ACTIONS(3949), - [anon_sym_return] = ACTIONS(3949), - [anon_sym_source] = ACTIONS(3949), - [anon_sym_source_DASHenv] = ACTIONS(3949), - [anon_sym_register] = ACTIONS(3949), - [anon_sym_hide] = ACTIONS(3949), - [anon_sym_hide_DASHenv] = ACTIONS(3949), - [anon_sym_overlay] = ACTIONS(3949), - [anon_sym_where] = ACTIONS(3949), - [anon_sym_not] = ACTIONS(3949), - [anon_sym_DOT_DOT2] = ACTIONS(5141), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3949), - [anon_sym_DOT_DOT_LT] = ACTIONS(3949), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(5143), - [anon_sym_DOT_DOT_LT2] = ACTIONS(5143), - [anon_sym_null] = ACTIONS(3949), - [anon_sym_true] = ACTIONS(3949), - [anon_sym_false] = ACTIONS(3949), - [aux_sym__val_number_decimal_token1] = ACTIONS(3949), - [aux_sym__val_number_decimal_token2] = ACTIONS(3949), - [anon_sym_DOT2] = ACTIONS(3949), - [aux_sym__val_number_decimal_token3] = ACTIONS(3949), - [aux_sym__val_number_token1] = ACTIONS(3949), - [aux_sym__val_number_token2] = ACTIONS(3949), - [aux_sym__val_number_token3] = ACTIONS(3949), - [aux_sym__val_number_token4] = ACTIONS(3949), - [aux_sym__val_number_token5] = ACTIONS(3949), - [aux_sym__val_number_token6] = ACTIONS(3949), - [anon_sym_0b] = ACTIONS(3949), - [anon_sym_0o] = ACTIONS(3949), - [anon_sym_0x] = ACTIONS(3949), - [sym_val_date] = ACTIONS(3949), - [anon_sym_DQUOTE] = ACTIONS(3949), - [sym__str_single_quotes] = ACTIONS(3949), - [sym__str_back_ticks] = ACTIONS(3949), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3949), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3949), - [anon_sym_CARET] = ACTIONS(3949), - [anon_sym_POUND] = ACTIONS(113), - }, - [1741] = { - [sym_comment] = STATE(1741), - [ts_builtin_sym_end] = ACTIONS(3966), - [anon_sym_export] = ACTIONS(3964), - [anon_sym_alias] = ACTIONS(3964), - [anon_sym_let] = ACTIONS(3964), - [anon_sym_let_DASHenv] = ACTIONS(3964), - [anon_sym_mut] = ACTIONS(3964), - [anon_sym_const] = ACTIONS(3964), - [anon_sym_SEMI] = ACTIONS(3964), - [sym_cmd_identifier] = ACTIONS(3964), - [anon_sym_LF] = ACTIONS(3966), - [anon_sym_def] = ACTIONS(3964), - [anon_sym_export_DASHenv] = ACTIONS(3964), - [anon_sym_extern] = ACTIONS(3964), - [anon_sym_module] = ACTIONS(3964), - [anon_sym_use] = ACTIONS(3964), - [anon_sym_LBRACK] = ACTIONS(3964), - [anon_sym_LPAREN] = ACTIONS(3964), - [anon_sym_DOLLAR] = ACTIONS(3964), - [anon_sym_error] = ACTIONS(3964), - [anon_sym_DASH] = ACTIONS(3964), - [anon_sym_break] = ACTIONS(3964), - [anon_sym_continue] = ACTIONS(3964), - [anon_sym_for] = ACTIONS(3964), - [anon_sym_loop] = ACTIONS(3964), - [anon_sym_while] = ACTIONS(3964), - [anon_sym_do] = ACTIONS(3964), - [anon_sym_if] = ACTIONS(3964), - [anon_sym_match] = ACTIONS(3964), - [anon_sym_LBRACE] = ACTIONS(3964), - [anon_sym_DOT_DOT] = ACTIONS(3964), - [anon_sym_try] = ACTIONS(3964), - [anon_sym_return] = ACTIONS(3964), - [anon_sym_source] = ACTIONS(3964), - [anon_sym_source_DASHenv] = ACTIONS(3964), - [anon_sym_register] = ACTIONS(3964), - [anon_sym_hide] = ACTIONS(3964), - [anon_sym_hide_DASHenv] = ACTIONS(3964), - [anon_sym_overlay] = ACTIONS(3964), - [anon_sym_where] = ACTIONS(3964), - [anon_sym_not] = ACTIONS(3964), - [anon_sym_DOT_DOT2] = ACTIONS(5145), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3964), - [anon_sym_DOT_DOT_LT] = ACTIONS(3964), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(5147), - [anon_sym_DOT_DOT_LT2] = ACTIONS(5147), - [anon_sym_null] = ACTIONS(3964), - [anon_sym_true] = ACTIONS(3964), - [anon_sym_false] = ACTIONS(3964), - [aux_sym__val_number_decimal_token1] = ACTIONS(3964), - [aux_sym__val_number_decimal_token2] = ACTIONS(3964), - [anon_sym_DOT2] = ACTIONS(3964), - [aux_sym__val_number_decimal_token3] = ACTIONS(3964), - [aux_sym__val_number_token1] = ACTIONS(3964), - [aux_sym__val_number_token2] = ACTIONS(3964), - [aux_sym__val_number_token3] = ACTIONS(3964), - [aux_sym__val_number_token4] = ACTIONS(3964), - [aux_sym__val_number_token5] = ACTIONS(3964), - [aux_sym__val_number_token6] = ACTIONS(3964), - [anon_sym_0b] = ACTIONS(3964), - [anon_sym_0o] = ACTIONS(3964), - [anon_sym_0x] = ACTIONS(3964), - [sym_val_date] = ACTIONS(3964), - [anon_sym_DQUOTE] = ACTIONS(3964), - [sym__str_single_quotes] = ACTIONS(3964), - [sym__str_back_ticks] = ACTIONS(3964), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3964), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3964), - [anon_sym_CARET] = ACTIONS(3964), - [anon_sym_POUND] = ACTIONS(113), - }, - [1742] = { - [sym_comment] = STATE(1742), - [ts_builtin_sym_end] = ACTIONS(4045), - [anon_sym_export] = ACTIONS(4043), - [anon_sym_alias] = ACTIONS(4043), - [anon_sym_let] = ACTIONS(4043), - [anon_sym_let_DASHenv] = ACTIONS(4043), - [anon_sym_mut] = ACTIONS(4043), - [anon_sym_const] = ACTIONS(4043), - [anon_sym_SEMI] = ACTIONS(4043), - [sym_cmd_identifier] = ACTIONS(4043), - [anon_sym_LF] = ACTIONS(4045), - [anon_sym_def] = ACTIONS(4043), - [anon_sym_export_DASHenv] = ACTIONS(4043), - [anon_sym_extern] = ACTIONS(4043), - [anon_sym_module] = ACTIONS(4043), - [anon_sym_use] = ACTIONS(4043), - [anon_sym_LBRACK] = ACTIONS(4043), - [anon_sym_LPAREN] = ACTIONS(4043), - [anon_sym_DOLLAR] = ACTIONS(4043), - [anon_sym_error] = ACTIONS(4043), - [anon_sym_DASH] = ACTIONS(4043), - [anon_sym_break] = ACTIONS(4043), - [anon_sym_continue] = ACTIONS(4043), - [anon_sym_for] = ACTIONS(4043), - [anon_sym_loop] = ACTIONS(4043), - [anon_sym_while] = ACTIONS(4043), - [anon_sym_do] = ACTIONS(4043), - [anon_sym_if] = ACTIONS(4043), - [anon_sym_match] = ACTIONS(4043), - [anon_sym_LBRACE] = ACTIONS(4043), - [anon_sym_DOT_DOT] = ACTIONS(4043), - [anon_sym_try] = ACTIONS(4043), - [anon_sym_return] = ACTIONS(4043), - [anon_sym_source] = ACTIONS(4043), - [anon_sym_source_DASHenv] = ACTIONS(4043), - [anon_sym_register] = ACTIONS(4043), - [anon_sym_hide] = ACTIONS(4043), - [anon_sym_hide_DASHenv] = ACTIONS(4043), - [anon_sym_overlay] = ACTIONS(4043), - [anon_sym_where] = ACTIONS(4043), - [anon_sym_not] = ACTIONS(4043), - [anon_sym_DOT_DOT2] = ACTIONS(5149), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4043), - [anon_sym_DOT_DOT_LT] = ACTIONS(4043), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(5151), - [anon_sym_DOT_DOT_LT2] = ACTIONS(5151), - [anon_sym_null] = ACTIONS(4043), - [anon_sym_true] = ACTIONS(4043), - [anon_sym_false] = ACTIONS(4043), - [aux_sym__val_number_decimal_token1] = ACTIONS(4043), - [aux_sym__val_number_decimal_token2] = ACTIONS(4043), - [anon_sym_DOT2] = ACTIONS(4043), - [aux_sym__val_number_decimal_token3] = ACTIONS(4043), - [aux_sym__val_number_token1] = ACTIONS(4043), - [aux_sym__val_number_token2] = ACTIONS(4043), - [aux_sym__val_number_token3] = ACTIONS(4043), - [aux_sym__val_number_token4] = ACTIONS(4043), - [aux_sym__val_number_token5] = ACTIONS(4043), - [aux_sym__val_number_token6] = ACTIONS(4043), - [anon_sym_0b] = ACTIONS(4043), - [anon_sym_0o] = ACTIONS(4043), - [anon_sym_0x] = ACTIONS(4043), - [sym_val_date] = ACTIONS(4043), - [anon_sym_DQUOTE] = ACTIONS(4043), - [sym__str_single_quotes] = ACTIONS(4043), - [sym__str_back_ticks] = ACTIONS(4043), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4043), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4043), - [anon_sym_CARET] = ACTIONS(4043), - [anon_sym_POUND] = ACTIONS(113), - }, - [1743] = { - [sym_cell_path] = STATE(2848), - [sym_path] = STATE(1663), - [sym_comment] = STATE(1743), - [ts_builtin_sym_end] = ACTIONS(1012), - [anon_sym_export] = ACTIONS(1010), - [anon_sym_alias] = ACTIONS(1010), - [anon_sym_let] = ACTIONS(1010), - [anon_sym_let_DASHenv] = ACTIONS(1010), - [anon_sym_mut] = ACTIONS(1010), - [anon_sym_const] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1010), - [sym_cmd_identifier] = ACTIONS(1010), - [anon_sym_LF] = ACTIONS(1012), - [anon_sym_def] = ACTIONS(1010), - [anon_sym_export_DASHenv] = ACTIONS(1010), - [anon_sym_extern] = ACTIONS(1010), - [anon_sym_module] = ACTIONS(1010), - [anon_sym_use] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(1010), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_error] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1010), - [anon_sym_continue] = ACTIONS(1010), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_loop] = ACTIONS(1010), - [anon_sym_while] = ACTIONS(1010), - [anon_sym_do] = ACTIONS(1010), - [anon_sym_if] = ACTIONS(1010), - [anon_sym_match] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_DOT_DOT] = ACTIONS(1010), - [anon_sym_try] = ACTIONS(1010), - [anon_sym_return] = ACTIONS(1010), - [anon_sym_source] = ACTIONS(1010), - [anon_sym_source_DASHenv] = ACTIONS(1010), - [anon_sym_register] = ACTIONS(1010), - [anon_sym_hide] = ACTIONS(1010), - [anon_sym_hide_DASHenv] = ACTIONS(1010), - [anon_sym_overlay] = ACTIONS(1010), - [anon_sym_where] = ACTIONS(1010), - [anon_sym_not] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(5051), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT] = ACTIONS(1010), - [anon_sym_null] = ACTIONS(1010), - [anon_sym_true] = ACTIONS(1010), - [anon_sym_false] = ACTIONS(1010), - [aux_sym__val_number_decimal_token1] = ACTIONS(1010), - [aux_sym__val_number_decimal_token2] = ACTIONS(1010), - [anon_sym_DOT2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = 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(1010), - [aux_sym__val_number_token5] = ACTIONS(1010), - [aux_sym__val_number_token6] = ACTIONS(1010), - [anon_sym_0b] = ACTIONS(1010), - [anon_sym_0o] = ACTIONS(1010), - [anon_sym_0x] = ACTIONS(1010), - [sym_val_date] = ACTIONS(1010), - [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_CARET] = ACTIONS(1010), - [anon_sym_POUND] = ACTIONS(113), + [1929] = { + [sym_comment] = STATE(1929), + [anon_sym_LBRACK] = ACTIONS(1049), + [anon_sym_COMMA] = ACTIONS(1049), + [anon_sym_LPAREN] = ACTIONS(1049), + [anon_sym_DOLLAR] = ACTIONS(1049), + [anon_sym_GT] = ACTIONS(1047), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_in] = ACTIONS(1047), + [anon_sym_LBRACE] = ACTIONS(1049), + [anon_sym_RBRACE] = ACTIONS(1049), + [anon_sym__] = ACTIONS(1047), + [anon_sym_DOT_DOT] = ACTIONS(1047), + [anon_sym_STAR] = ACTIONS(1047), + [anon_sym_STAR_STAR] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1049), + [anon_sym_SLASH] = ACTIONS(1047), + [anon_sym_mod] = ACTIONS(1049), + [anon_sym_SLASH_SLASH] = ACTIONS(1049), + [anon_sym_PLUS] = ACTIONS(1047), + [anon_sym_bit_DASHshl] = ACTIONS(1049), + [anon_sym_bit_DASHshr] = ACTIONS(1049), + [anon_sym_EQ_EQ] = ACTIONS(1049), + [anon_sym_BANG_EQ] = ACTIONS(1049), + [anon_sym_LT2] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1049), + [anon_sym_GT_EQ] = ACTIONS(1049), + [anon_sym_not_DASHin] = ACTIONS(1049), + [anon_sym_starts_DASHwith] = ACTIONS(1049), + [anon_sym_ends_DASHwith] = ACTIONS(1049), + [anon_sym_EQ_TILDE] = ACTIONS(1049), + [anon_sym_BANG_TILDE] = ACTIONS(1049), + [anon_sym_bit_DASHand] = ACTIONS(1049), + [anon_sym_bit_DASHxor] = ACTIONS(1049), + [anon_sym_bit_DASHor] = ACTIONS(1049), + [anon_sym_and] = ACTIONS(1049), + [anon_sym_xor] = ACTIONS(1049), + [anon_sym_or] = ACTIONS(1049), + [anon_sym_DOT] = ACTIONS(1047), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1049), + [anon_sym_DOT_DOT_LT] = ACTIONS(1049), + [anon_sym_null] = ACTIONS(1049), + [anon_sym_true] = ACTIONS(1049), + [anon_sym_false] = ACTIONS(1049), + [aux_sym__val_number_decimal_token1] = ACTIONS(1047), + [aux_sym__val_number_decimal_token2] = ACTIONS(1049), + [anon_sym_DOT2] = ACTIONS(1047), + [aux_sym__val_number_decimal_token3] = ACTIONS(1049), + [aux_sym__val_number_token1] = ACTIONS(1049), + [aux_sym__val_number_token2] = ACTIONS(1049), + [aux_sym__val_number_token3] = ACTIONS(1049), + [aux_sym__val_number_token4] = ACTIONS(1049), + [aux_sym__val_number_token5] = ACTIONS(1049), + [aux_sym__val_number_token6] = ACTIONS(1049), + [anon_sym_0b] = ACTIONS(1047), + [anon_sym_0o] = ACTIONS(1047), + [anon_sym_0x] = ACTIONS(1047), + [sym_val_date] = ACTIONS(1049), + [anon_sym_DQUOTE] = ACTIONS(1049), + [sym__str_single_quotes] = ACTIONS(1049), + [sym__str_back_ticks] = ACTIONS(1049), + [anon_sym_err_GT] = ACTIONS(1049), + [anon_sym_out_GT] = ACTIONS(1049), + [anon_sym_e_GT] = ACTIONS(1049), + [anon_sym_o_GT] = ACTIONS(1049), + [anon_sym_err_PLUSout_GT] = ACTIONS(1049), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1049), + [anon_sym_o_PLUSe_GT] = ACTIONS(1049), + [anon_sym_e_PLUSo_GT] = ACTIONS(1049), + [aux_sym_unquoted_token1] = ACTIONS(1047), + [anon_sym_POUND] = ACTIONS(3), }, - [1744] = { - [sym_comment] = STATE(1744), - [ts_builtin_sym_end] = ACTIONS(4002), - [anon_sym_export] = ACTIONS(4000), - [anon_sym_alias] = ACTIONS(4000), - [anon_sym_let] = ACTIONS(4000), - [anon_sym_let_DASHenv] = ACTIONS(4000), - [anon_sym_mut] = ACTIONS(4000), - [anon_sym_const] = ACTIONS(4000), - [anon_sym_SEMI] = ACTIONS(4000), - [sym_cmd_identifier] = ACTIONS(4000), - [anon_sym_LF] = ACTIONS(4002), - [anon_sym_def] = ACTIONS(4000), - [anon_sym_export_DASHenv] = ACTIONS(4000), - [anon_sym_extern] = ACTIONS(4000), - [anon_sym_module] = ACTIONS(4000), - [anon_sym_use] = ACTIONS(4000), - [anon_sym_LBRACK] = ACTIONS(4000), - [anon_sym_LPAREN] = ACTIONS(4000), - [anon_sym_DOLLAR] = ACTIONS(4000), - [anon_sym_error] = ACTIONS(4000), - [anon_sym_DASH] = ACTIONS(4000), - [anon_sym_break] = ACTIONS(4000), - [anon_sym_continue] = ACTIONS(4000), - [anon_sym_for] = ACTIONS(4000), - [anon_sym_loop] = ACTIONS(4000), - [anon_sym_while] = ACTIONS(4000), - [anon_sym_do] = ACTIONS(4000), - [anon_sym_if] = ACTIONS(4000), - [anon_sym_match] = ACTIONS(4000), - [anon_sym_LBRACE] = ACTIONS(4000), - [anon_sym_DOT_DOT] = ACTIONS(4000), - [anon_sym_try] = ACTIONS(4000), - [anon_sym_return] = ACTIONS(4000), - [anon_sym_source] = ACTIONS(4000), - [anon_sym_source_DASHenv] = ACTIONS(4000), - [anon_sym_register] = ACTIONS(4000), - [anon_sym_hide] = ACTIONS(4000), - [anon_sym_hide_DASHenv] = ACTIONS(4000), - [anon_sym_overlay] = ACTIONS(4000), - [anon_sym_where] = ACTIONS(4000), - [anon_sym_not] = ACTIONS(4000), - [anon_sym_DOT_DOT2] = ACTIONS(4000), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4000), - [anon_sym_DOT_DOT_LT] = ACTIONS(4000), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4002), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4002), - [anon_sym_null] = ACTIONS(4000), - [anon_sym_true] = ACTIONS(4000), - [anon_sym_false] = ACTIONS(4000), - [aux_sym__val_number_decimal_token1] = ACTIONS(4000), - [aux_sym__val_number_decimal_token2] = ACTIONS(4000), - [anon_sym_DOT2] = ACTIONS(4000), - [aux_sym__val_number_decimal_token3] = ACTIONS(4000), - [aux_sym__val_number_token1] = ACTIONS(4000), - [aux_sym__val_number_token2] = ACTIONS(4000), - [aux_sym__val_number_token3] = ACTIONS(4000), - [aux_sym__val_number_token4] = ACTIONS(4000), - [aux_sym__val_number_token5] = ACTIONS(4000), - [aux_sym__val_number_token6] = ACTIONS(4000), - [anon_sym_0b] = ACTIONS(4000), - [anon_sym_0o] = ACTIONS(4000), - [anon_sym_0x] = ACTIONS(4000), - [sym_val_date] = ACTIONS(4000), - [anon_sym_DQUOTE] = ACTIONS(4000), - [sym__str_single_quotes] = ACTIONS(4000), - [sym__str_back_ticks] = ACTIONS(4000), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4000), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4000), - [anon_sym_CARET] = ACTIONS(4000), + [1930] = { + [sym_comment] = STATE(1930), + [anon_sym_export] = ACTIONS(5589), + [anon_sym_alias] = ACTIONS(5589), + [anon_sym_let] = ACTIONS(5589), + [anon_sym_let_DASHenv] = ACTIONS(5589), + [anon_sym_mut] = ACTIONS(5589), + [anon_sym_const] = ACTIONS(5589), + [anon_sym_SEMI] = ACTIONS(5589), + [sym_cmd_identifier] = ACTIONS(5589), + [anon_sym_LF] = ACTIONS(5591), + [anon_sym_def] = ACTIONS(5589), + [anon_sym_export_DASHenv] = ACTIONS(5589), + [anon_sym_extern] = ACTIONS(5589), + [anon_sym_module] = ACTIONS(5589), + [anon_sym_use] = ACTIONS(5589), + [anon_sym_LBRACK] = ACTIONS(5589), + [anon_sym_LPAREN] = ACTIONS(5589), + [anon_sym_RPAREN] = ACTIONS(5589), + [anon_sym_DOLLAR] = ACTIONS(5589), + [anon_sym_error] = ACTIONS(5589), + [anon_sym_DASH_DASH] = ACTIONS(5589), + [anon_sym_DASH] = ACTIONS(5589), + [anon_sym_break] = ACTIONS(5589), + [anon_sym_continue] = ACTIONS(5589), + [anon_sym_for] = ACTIONS(5589), + [anon_sym_loop] = ACTIONS(5589), + [anon_sym_while] = ACTIONS(5589), + [anon_sym_do] = ACTIONS(5589), + [anon_sym_if] = ACTIONS(5589), + [anon_sym_match] = ACTIONS(5589), + [anon_sym_LBRACE] = ACTIONS(5589), + [anon_sym_RBRACE] = ACTIONS(5589), + [anon_sym_DOT_DOT] = ACTIONS(5589), + [anon_sym_try] = ACTIONS(5589), + [anon_sym_return] = ACTIONS(5589), + [anon_sym_source] = ACTIONS(5589), + [anon_sym_source_DASHenv] = ACTIONS(5589), + [anon_sym_register] = ACTIONS(5589), + [anon_sym_hide] = ACTIONS(5589), + [anon_sym_hide_DASHenv] = ACTIONS(5589), + [anon_sym_overlay] = ACTIONS(5589), + [anon_sym_as] = ACTIONS(5589), + [anon_sym_where] = ACTIONS(5589), + [anon_sym_not] = ACTIONS(5589), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5589), + [anon_sym_DOT_DOT_LT] = ACTIONS(5589), + [anon_sym_null] = ACTIONS(5589), + [anon_sym_true] = ACTIONS(5589), + [anon_sym_false] = ACTIONS(5589), + [aux_sym__val_number_decimal_token1] = ACTIONS(5589), + [aux_sym__val_number_decimal_token2] = ACTIONS(5589), + [anon_sym_DOT2] = ACTIONS(5589), + [aux_sym__val_number_decimal_token3] = ACTIONS(5589), + [aux_sym__val_number_token1] = ACTIONS(5589), + [aux_sym__val_number_token2] = ACTIONS(5589), + [aux_sym__val_number_token3] = ACTIONS(5589), + [aux_sym__val_number_token4] = ACTIONS(5589), + [aux_sym__val_number_token5] = ACTIONS(5589), + [aux_sym__val_number_token6] = ACTIONS(5589), + [anon_sym_0b] = ACTIONS(5589), + [anon_sym_0o] = ACTIONS(5589), + [anon_sym_0x] = ACTIONS(5589), + [sym_val_date] = ACTIONS(5589), + [anon_sym_DQUOTE] = ACTIONS(5589), + [sym__str_single_quotes] = ACTIONS(5589), + [sym__str_back_ticks] = ACTIONS(5589), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5589), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5589), + [anon_sym_CARET] = ACTIONS(5589), [anon_sym_POUND] = ACTIONS(113), }, - [1745] = { - [sym_expr_unary] = STATE(6382), - [sym__expr_unary_minus] = STATE(6347), - [sym_expr_binary] = STATE(6382), - [sym__expr_binary_expression] = STATE(6383), - [sym_expr_parenthesized] = STATE(6382), - [sym__val_range] = STATE(10572), - [sym__value] = STATE(6382), - [sym_val_nothing] = STATE(6374), - [sym_val_bool] = STATE(6252), - [sym_val_variable] = STATE(6374), - [sym__var] = STATE(5497), - [sym_val_number] = STATE(6374), - [sym__val_number_decimal] = STATE(4789), - [sym__val_number] = STATE(5769), - [sym_val_duration] = STATE(6374), - [sym_val_filesize] = STATE(6374), - [sym_val_binary] = STATE(6374), - [sym_val_string] = STATE(6374), - [sym__str_double_quotes] = STATE(6386), - [sym_val_interpolated] = STATE(6374), - [sym__inter_single_quotes] = STATE(6363), - [sym__inter_double_quotes] = STATE(6365), - [sym_val_list] = STATE(6374), - [sym_val_record] = STATE(6374), - [sym_val_table] = STATE(6374), - [sym_val_closure] = STATE(6374), - [sym_unquoted] = STATE(6387), - [sym__unquoted_anonymous_prefix] = STATE(11300), - [sym_comment] = STATE(1745), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(5153), - [anon_sym_DOLLAR] = ACTIONS(5155), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_DOT_DOT] = ACTIONS(5157), - [anon_sym_not] = ACTIONS(4456), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5159), - [anon_sym_DOT_DOT_LT] = ACTIONS(5159), - [anon_sym_null] = ACTIONS(4460), - [anon_sym_true] = ACTIONS(4462), - [anon_sym_false] = ACTIONS(4462), - [aux_sym__val_number_decimal_token1] = ACTIONS(4464), - [aux_sym__val_number_decimal_token2] = ACTIONS(4466), - [anon_sym_DOT2] = ACTIONS(5161), - [aux_sym__val_number_decimal_token3] = ACTIONS(4470), - [aux_sym__val_number_token1] = ACTIONS(93), - [aux_sym__val_number_token2] = ACTIONS(93), - [aux_sym__val_number_token3] = ACTIONS(93), - [aux_sym__val_number_token4] = ACTIONS(5163), - [aux_sym__val_number_token5] = ACTIONS(5163), - [aux_sym__val_number_token6] = ACTIONS(5163), - [anon_sym_0b] = ACTIONS(97), - [anon_sym_0o] = ACTIONS(99), - [anon_sym_0x] = ACTIONS(99), - [sym_val_date] = ACTIONS(4474), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym__str_single_quotes] = ACTIONS(105), - [sym__str_back_ticks] = ACTIONS(105), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(109), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2999), + [1931] = { + [sym_comment] = STATE(1931), + [anon_sym_LBRACK] = ACTIONS(1143), + [anon_sym_COMMA] = ACTIONS(1145), + [anon_sym_LPAREN] = ACTIONS(1145), + [anon_sym_DOLLAR] = ACTIONS(1145), + [anon_sym_GT] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_LBRACE] = ACTIONS(1145), + [anon_sym_RBRACE] = ACTIONS(1145), + [anon_sym__] = ACTIONS(1143), + [anon_sym_DOT_DOT] = ACTIONS(1143), + [anon_sym_STAR] = ACTIONS(1143), + [anon_sym_STAR_STAR] = ACTIONS(1145), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_SLASH] = ACTIONS(1143), + [anon_sym_mod] = ACTIONS(1145), + [anon_sym_SLASH_SLASH] = ACTIONS(1145), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_bit_DASHshl] = ACTIONS(1145), + [anon_sym_bit_DASHshr] = ACTIONS(1145), + [anon_sym_EQ_EQ] = ACTIONS(1145), + [anon_sym_BANG_EQ] = ACTIONS(1145), + [anon_sym_LT2] = ACTIONS(1143), + [anon_sym_LT_EQ] = ACTIONS(1145), + [anon_sym_GT_EQ] = ACTIONS(1145), + [anon_sym_not_DASHin] = ACTIONS(1145), + [anon_sym_starts_DASHwith] = ACTIONS(1145), + [anon_sym_ends_DASHwith] = ACTIONS(1145), + [anon_sym_EQ_TILDE] = ACTIONS(1145), + [anon_sym_BANG_TILDE] = ACTIONS(1145), + [anon_sym_bit_DASHand] = ACTIONS(1145), + [anon_sym_bit_DASHxor] = ACTIONS(1145), + [anon_sym_bit_DASHor] = ACTIONS(1145), + [anon_sym_and] = ACTIONS(1145), + [anon_sym_xor] = ACTIONS(1145), + [anon_sym_or] = ACTIONS(1145), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1145), + [anon_sym_DOT_DOT_LT] = ACTIONS(1145), + [anon_sym_null] = ACTIONS(1145), + [anon_sym_true] = ACTIONS(1145), + [anon_sym_false] = ACTIONS(1145), + [aux_sym__val_number_decimal_token1] = ACTIONS(1143), + [aux_sym__val_number_decimal_token2] = ACTIONS(1145), + [anon_sym_DOT2] = ACTIONS(1143), + [aux_sym__val_number_decimal_token3] = ACTIONS(1145), + [aux_sym__val_number_token1] = ACTIONS(1145), + [aux_sym__val_number_token2] = ACTIONS(1145), + [aux_sym__val_number_token3] = ACTIONS(1145), + [aux_sym__val_number_token4] = ACTIONS(1145), + [aux_sym__val_number_token5] = ACTIONS(1145), + [aux_sym__val_number_token6] = ACTIONS(1145), + [anon_sym_0b] = ACTIONS(1143), + [anon_sym_0o] = ACTIONS(1143), + [anon_sym_0x] = ACTIONS(1143), + [anon_sym_LBRACK2] = ACTIONS(5593), + [sym_val_date] = ACTIONS(1145), + [anon_sym_DQUOTE] = ACTIONS(1145), + [sym__str_single_quotes] = ACTIONS(1145), + [sym__str_back_ticks] = ACTIONS(1145), + [anon_sym_err_GT] = ACTIONS(1145), + [anon_sym_out_GT] = ACTIONS(1145), + [anon_sym_e_GT] = ACTIONS(1145), + [anon_sym_o_GT] = ACTIONS(1145), + [anon_sym_err_PLUSout_GT] = ACTIONS(1145), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1145), + [anon_sym_o_PLUSe_GT] = ACTIONS(1145), + [anon_sym_e_PLUSo_GT] = ACTIONS(1145), + [aux_sym_unquoted_token1] = ACTIONS(1143), [anon_sym_POUND] = ACTIONS(3), }, - [1746] = { - [sym_expr_unary] = STATE(6382), - [sym__expr_unary_minus] = STATE(6347), - [sym_expr_binary] = STATE(6382), - [sym__expr_binary_expression] = STATE(6392), - [sym_expr_parenthesized] = STATE(6382), - [sym__val_range] = STATE(10572), - [sym__value] = STATE(6382), - [sym_val_nothing] = STATE(6374), - [sym_val_bool] = STATE(6252), - [sym_val_variable] = STATE(6374), - [sym__var] = STATE(5497), - [sym_val_number] = STATE(6374), - [sym__val_number_decimal] = STATE(4789), - [sym__val_number] = STATE(5769), - [sym_val_duration] = STATE(6374), - [sym_val_filesize] = STATE(6374), - [sym_val_binary] = STATE(6374), - [sym_val_string] = STATE(6374), - [sym__str_double_quotes] = STATE(6386), - [sym_val_interpolated] = STATE(6374), - [sym__inter_single_quotes] = STATE(6363), - [sym__inter_double_quotes] = STATE(6365), - [sym_val_list] = STATE(6374), - [sym_val_record] = STATE(6374), - [sym_val_table] = STATE(6374), - [sym_val_closure] = STATE(6374), - [sym_unquoted] = STATE(6394), - [sym__unquoted_anonymous_prefix] = STATE(11300), - [sym_comment] = STATE(1746), + [1932] = { + [sym_expr_unary] = STATE(5879), + [sym__expr_unary_minus] = STATE(5878), + [sym_expr_binary] = STATE(5879), + [sym__expr_binary_expression] = STATE(5923), + [sym_expr_parenthesized] = STATE(5879), + [sym__val_range] = STATE(10069), + [sym__value] = STATE(5879), + [sym_val_nothing] = STATE(5931), + [sym_val_bool] = STATE(5739), + [sym_val_variable] = STATE(5931), + [sym__var] = STATE(5079), + [sym_val_number] = STATE(5931), + [sym__val_number_decimal] = STATE(4336), + [sym__val_number] = STATE(5285), + [sym_val_duration] = STATE(5931), + [sym_val_filesize] = STATE(5931), + [sym_val_binary] = STATE(5931), + [sym_val_string] = STATE(5931), + [sym__str_double_quotes] = STATE(5888), + [sym_val_interpolated] = STATE(5931), + [sym__inter_single_quotes] = STATE(5935), + [sym__inter_double_quotes] = STATE(5940), + [sym_val_list] = STATE(5931), + [sym_val_record] = STATE(5931), + [sym_val_table] = STATE(5931), + [sym_val_closure] = STATE(5931), + [sym_unquoted] = STATE(5955), + [sym__unquoted_anonymous_prefix] = STATE(10402), + [sym_comment] = STATE(1932), [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(5153), - [anon_sym_DOLLAR] = ACTIONS(5155), + [anon_sym_LPAREN] = ACTIONS(4909), + [anon_sym_DOLLAR] = ACTIONS(4911), [anon_sym_DASH] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_DOT_DOT] = ACTIONS(5157), - [anon_sym_not] = ACTIONS(4456), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5159), - [anon_sym_DOT_DOT_LT] = ACTIONS(5159), - [anon_sym_null] = ACTIONS(4460), - [anon_sym_true] = ACTIONS(4462), - [anon_sym_false] = ACTIONS(4462), - [aux_sym__val_number_decimal_token1] = ACTIONS(4464), - [aux_sym__val_number_decimal_token2] = ACTIONS(4466), - [anon_sym_DOT2] = ACTIONS(5161), - [aux_sym__val_number_decimal_token3] = ACTIONS(4470), + [anon_sym_DOT_DOT] = ACTIONS(4913), + [anon_sym_not] = ACTIONS(3918), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4915), + [anon_sym_DOT_DOT_LT] = ACTIONS(4915), + [anon_sym_null] = ACTIONS(3922), + [anon_sym_true] = ACTIONS(3924), + [anon_sym_false] = ACTIONS(3924), + [aux_sym__val_number_decimal_token1] = ACTIONS(3926), + [aux_sym__val_number_decimal_token2] = ACTIONS(3928), + [anon_sym_DOT2] = ACTIONS(4917), + [aux_sym__val_number_decimal_token3] = ACTIONS(3932), [aux_sym__val_number_token1] = ACTIONS(93), [aux_sym__val_number_token2] = ACTIONS(93), [aux_sym__val_number_token3] = ACTIONS(93), - [aux_sym__val_number_token4] = ACTIONS(5163), - [aux_sym__val_number_token5] = ACTIONS(5163), - [aux_sym__val_number_token6] = ACTIONS(5163), + [aux_sym__val_number_token4] = ACTIONS(4919), + [aux_sym__val_number_token5] = ACTIONS(4919), + [aux_sym__val_number_token6] = ACTIONS(4919), [anon_sym_0b] = ACTIONS(97), [anon_sym_0o] = ACTIONS(99), [anon_sym_0x] = ACTIONS(99), - [sym_val_date] = ACTIONS(4474), + [sym_val_date] = ACTIONS(3936), [anon_sym_DQUOTE] = ACTIONS(103), [sym__str_single_quotes] = ACTIONS(105), [sym__str_back_ticks] = ACTIONS(105), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(109), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2999), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2924), [anon_sym_POUND] = ACTIONS(3), }, - [1747] = { - [sym_expr_unary] = STATE(6382), - [sym__expr_unary_minus] = STATE(6347), - [sym_expr_binary] = STATE(6382), - [sym__expr_binary_expression] = STATE(6395), - [sym_expr_parenthesized] = STATE(6382), - [sym__val_range] = STATE(10572), - [sym__value] = STATE(6382), - [sym_val_nothing] = STATE(6374), - [sym_val_bool] = STATE(6252), - [sym_val_variable] = STATE(6374), - [sym__var] = STATE(5497), - [sym_val_number] = STATE(6374), - [sym__val_number_decimal] = STATE(4789), - [sym__val_number] = STATE(5769), - [sym_val_duration] = STATE(6374), - [sym_val_filesize] = STATE(6374), - [sym_val_binary] = STATE(6374), - [sym_val_string] = STATE(6374), - [sym__str_double_quotes] = STATE(6386), - [sym_val_interpolated] = STATE(6374), - [sym__inter_single_quotes] = STATE(6363), - [sym__inter_double_quotes] = STATE(6365), - [sym_val_list] = STATE(6374), - [sym_val_record] = STATE(6374), - [sym_val_table] = STATE(6374), - [sym_val_closure] = STATE(6374), - [sym_unquoted] = STATE(6396), - [sym__unquoted_anonymous_prefix] = STATE(11300), - [sym_comment] = STATE(1747), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(5153), - [anon_sym_DOLLAR] = ACTIONS(5155), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_DOT_DOT] = ACTIONS(5157), - [anon_sym_not] = ACTIONS(4456), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5159), - [anon_sym_DOT_DOT_LT] = ACTIONS(5159), - [anon_sym_null] = ACTIONS(4460), - [anon_sym_true] = ACTIONS(4462), - [anon_sym_false] = ACTIONS(4462), - [aux_sym__val_number_decimal_token1] = ACTIONS(4464), - [aux_sym__val_number_decimal_token2] = ACTIONS(4466), - [anon_sym_DOT2] = ACTIONS(5161), - [aux_sym__val_number_decimal_token3] = ACTIONS(4470), - [aux_sym__val_number_token1] = ACTIONS(93), - [aux_sym__val_number_token2] = ACTIONS(93), - [aux_sym__val_number_token3] = ACTIONS(93), - [aux_sym__val_number_token4] = ACTIONS(5163), - [aux_sym__val_number_token5] = ACTIONS(5163), - [aux_sym__val_number_token6] = ACTIONS(5163), - [anon_sym_0b] = ACTIONS(97), - [anon_sym_0o] = ACTIONS(99), - [anon_sym_0x] = ACTIONS(99), - [sym_val_date] = ACTIONS(4474), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym__str_single_quotes] = ACTIONS(105), - [sym__str_back_ticks] = ACTIONS(105), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(109), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2999), - [anon_sym_POUND] = ACTIONS(3), + [1933] = { + [sym_comment] = STATE(1933), + [ts_builtin_sym_end] = ACTIONS(1035), + [anon_sym_SEMI] = ACTIONS(1033), + [anon_sym_LF] = ACTIONS(1035), + [anon_sym_LBRACK] = ACTIONS(1033), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_PIPE] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1033), + [anon_sym_in] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_DOT_DOT] = ACTIONS(1033), + [anon_sym_STAR] = ACTIONS(1033), + [anon_sym_QMARK2] = ACTIONS(1033), + [anon_sym_STAR_STAR] = ACTIONS(1033), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_SLASH] = ACTIONS(1033), + [anon_sym_mod] = ACTIONS(1033), + [anon_sym_SLASH_SLASH] = ACTIONS(1033), + [anon_sym_PLUS] = ACTIONS(1033), + [anon_sym_bit_DASHshl] = ACTIONS(1033), + [anon_sym_bit_DASHshr] = ACTIONS(1033), + [anon_sym_EQ_EQ] = ACTIONS(1033), + [anon_sym_BANG_EQ] = ACTIONS(1033), + [anon_sym_LT2] = ACTIONS(1033), + [anon_sym_LT_EQ] = ACTIONS(1033), + [anon_sym_GT_EQ] = ACTIONS(1033), + [anon_sym_not_DASHin] = ACTIONS(1033), + [anon_sym_starts_DASHwith] = ACTIONS(1033), + [anon_sym_ends_DASHwith] = ACTIONS(1033), + [anon_sym_EQ_TILDE] = ACTIONS(1033), + [anon_sym_BANG_TILDE] = ACTIONS(1033), + [anon_sym_bit_DASHand] = ACTIONS(1033), + [anon_sym_bit_DASHxor] = ACTIONS(1033), + [anon_sym_bit_DASHor] = ACTIONS(1033), + [anon_sym_and] = ACTIONS(1033), + [anon_sym_xor] = ACTIONS(1033), + [anon_sym_or] = ACTIONS(1033), + [anon_sym_not] = ACTIONS(1033), + [anon_sym_DOT_DOT2] = ACTIONS(1033), + [anon_sym_DOT] = ACTIONS(1033), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1033), + [anon_sym_DOT_DOT_LT] = ACTIONS(1033), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1035), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1035), + [anon_sym_null] = ACTIONS(1033), + [anon_sym_true] = ACTIONS(1033), + [anon_sym_false] = ACTIONS(1033), + [aux_sym__val_number_decimal_token1] = ACTIONS(1033), + [aux_sym__val_number_decimal_token2] = ACTIONS(1033), + [anon_sym_DOT2] = ACTIONS(1033), + [aux_sym__val_number_decimal_token3] = ACTIONS(1033), + [aux_sym__val_number_token1] = ACTIONS(1033), + [aux_sym__val_number_token2] = ACTIONS(1033), + [aux_sym__val_number_token3] = ACTIONS(1033), + [aux_sym__val_number_token4] = ACTIONS(1033), + [aux_sym__val_number_token5] = ACTIONS(1033), + [aux_sym__val_number_token6] = ACTIONS(1033), + [anon_sym_0b] = ACTIONS(1033), + [anon_sym_0o] = ACTIONS(1033), + [anon_sym_0x] = ACTIONS(1033), + [sym_val_date] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [sym__str_single_quotes] = ACTIONS(1033), + [sym__str_back_ticks] = ACTIONS(1033), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1033), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1033), + [anon_sym_POUND] = ACTIONS(113), }, - [1748] = { - [sym_expr_unary] = STATE(6382), - [sym__expr_unary_minus] = STATE(6347), - [sym_expr_binary] = STATE(6382), - [sym__expr_binary_expression] = STATE(6398), - [sym_expr_parenthesized] = STATE(6382), - [sym__val_range] = STATE(10572), - [sym__value] = STATE(6382), - [sym_val_nothing] = STATE(6374), - [sym_val_bool] = STATE(6252), - [sym_val_variable] = STATE(6374), - [sym__var] = STATE(5497), - [sym_val_number] = STATE(6374), - [sym__val_number_decimal] = STATE(4789), - [sym__val_number] = STATE(5769), - [sym_val_duration] = STATE(6374), - [sym_val_filesize] = STATE(6374), - [sym_val_binary] = STATE(6374), - [sym_val_string] = STATE(6374), - [sym__str_double_quotes] = STATE(6386), - [sym_val_interpolated] = STATE(6374), - [sym__inter_single_quotes] = STATE(6363), - [sym__inter_double_quotes] = STATE(6365), - [sym_val_list] = STATE(6374), - [sym_val_record] = STATE(6374), - [sym_val_table] = STATE(6374), - [sym_val_closure] = STATE(6374), - [sym_unquoted] = STATE(6399), - [sym__unquoted_anonymous_prefix] = STATE(11300), - [sym_comment] = STATE(1748), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(5153), - [anon_sym_DOLLAR] = ACTIONS(5155), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_DOT_DOT] = ACTIONS(5157), - [anon_sym_not] = ACTIONS(4456), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5159), - [anon_sym_DOT_DOT_LT] = ACTIONS(5159), - [anon_sym_null] = ACTIONS(4460), - [anon_sym_true] = ACTIONS(4462), - [anon_sym_false] = ACTIONS(4462), - [aux_sym__val_number_decimal_token1] = ACTIONS(4464), - [aux_sym__val_number_decimal_token2] = ACTIONS(4466), - [anon_sym_DOT2] = ACTIONS(5161), - [aux_sym__val_number_decimal_token3] = ACTIONS(4470), - [aux_sym__val_number_token1] = ACTIONS(93), - [aux_sym__val_number_token2] = ACTIONS(93), - [aux_sym__val_number_token3] = ACTIONS(93), - [aux_sym__val_number_token4] = ACTIONS(5163), - [aux_sym__val_number_token5] = ACTIONS(5163), - [aux_sym__val_number_token6] = ACTIONS(5163), - [anon_sym_0b] = ACTIONS(97), - [anon_sym_0o] = ACTIONS(99), - [anon_sym_0x] = ACTIONS(99), - [sym_val_date] = ACTIONS(4474), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym__str_single_quotes] = ACTIONS(105), - [sym__str_back_ticks] = ACTIONS(105), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(109), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2999), - [anon_sym_POUND] = ACTIONS(3), + [1934] = { + [sym__expression] = STATE(6988), + [sym_expr_unary] = STATE(5409), + [sym__expr_unary_minus] = STATE(5410), + [sym_expr_binary] = STATE(5409), + [sym__expr_binary_expression] = STATE(6366), + [sym_expr_parenthesized] = STATE(4635), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5409), + [sym_val_nothing] = STATE(5350), + [sym_val_bool] = STATE(5350), + [sym_val_variable] = STATE(4717), + [sym__var] = STATE(4193), + [sym_val_number] = STATE(5350), + [sym__val_number_decimal] = STATE(4266), + [sym__val_number] = STATE(5351), + [sym_val_duration] = STATE(5350), + [sym_val_filesize] = STATE(5350), + [sym_val_binary] = STATE(5350), + [sym_val_string] = STATE(5350), + [sym__str_double_quotes] = STATE(5502), + [sym_val_interpolated] = STATE(5350), + [sym__inter_single_quotes] = STATE(5420), + [sym__inter_double_quotes] = STATE(5421), + [sym_val_list] = STATE(5350), + [sym_val_record] = STATE(5350), + [sym_val_table] = STATE(5350), + [sym_val_closure] = STATE(5350), + [sym__flag] = STATE(1951), + [sym_short_flag] = STATE(4674), + [sym_long_flag] = STATE(4674), + [sym_long_flag_equals_value] = STATE(4714), + [sym_comment] = STATE(1934), + [anon_sym_SEMI] = ACTIONS(5595), + [anon_sym_LF] = ACTIONS(5597), + [anon_sym_LBRACK] = ACTIONS(4833), + [anon_sym_LPAREN] = ACTIONS(4835), + [anon_sym_RPAREN] = ACTIONS(5595), + [anon_sym_PIPE] = ACTIONS(5595), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_DASH_DASH] = ACTIONS(4875), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4841), + [anon_sym_RBRACE] = ACTIONS(5595), + [anon_sym_DOT_DOT] = ACTIONS(4843), + [anon_sym_not] = ACTIONS(4845), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4847), + [anon_sym_DOT_DOT_LT] = ACTIONS(4847), + [anon_sym_null] = ACTIONS(4849), + [anon_sym_true] = ACTIONS(4851), + [anon_sym_false] = ACTIONS(4851), + [aux_sym__val_number_decimal_token1] = ACTIONS(4853), + [aux_sym__val_number_decimal_token2] = ACTIONS(4853), + [anon_sym_DOT2] = ACTIONS(4855), + [aux_sym__val_number_decimal_token3] = ACTIONS(4857), + [aux_sym__val_number_token1] = ACTIONS(4859), + [aux_sym__val_number_token2] = ACTIONS(4859), + [aux_sym__val_number_token3] = ACTIONS(4859), + [aux_sym__val_number_token4] = ACTIONS(4859), + [aux_sym__val_number_token5] = ACTIONS(4859), + [aux_sym__val_number_token6] = ACTIONS(4859), + [anon_sym_0b] = ACTIONS(3080), + [anon_sym_0o] = ACTIONS(3082), + [anon_sym_0x] = ACTIONS(3082), + [sym_val_date] = ACTIONS(4861), + [anon_sym_DQUOTE] = ACTIONS(4863), + [sym__str_single_quotes] = ACTIONS(4865), + [sym__str_back_ticks] = ACTIONS(4865), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4867), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4869), + [anon_sym_POUND] = ACTIONS(113), }, - [1749] = { - [sym_expr_unary] = STATE(6382), - [sym__expr_unary_minus] = STATE(6347), - [sym_expr_binary] = STATE(6382), - [sym__expr_binary_expression] = STATE(6401), - [sym_expr_parenthesized] = STATE(6382), - [sym__val_range] = STATE(10572), - [sym__value] = STATE(6382), - [sym_val_nothing] = STATE(6374), - [sym_val_bool] = STATE(6252), - [sym_val_variable] = STATE(6374), - [sym__var] = STATE(5497), - [sym_val_number] = STATE(6374), - [sym__val_number_decimal] = STATE(4789), - [sym__val_number] = STATE(5769), - [sym_val_duration] = STATE(6374), - [sym_val_filesize] = STATE(6374), - [sym_val_binary] = STATE(6374), - [sym_val_string] = STATE(6374), - [sym__str_double_quotes] = STATE(6386), - [sym_val_interpolated] = STATE(6374), - [sym__inter_single_quotes] = STATE(6363), - [sym__inter_double_quotes] = STATE(6365), - [sym_val_list] = STATE(6374), - [sym_val_record] = STATE(6374), - [sym_val_table] = STATE(6374), - [sym_val_closure] = STATE(6374), - [sym_unquoted] = STATE(6406), - [sym__unquoted_anonymous_prefix] = STATE(11300), - [sym_comment] = STATE(1749), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(5153), - [anon_sym_DOLLAR] = ACTIONS(5155), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_DOT_DOT] = ACTIONS(5157), - [anon_sym_not] = ACTIONS(4456), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5159), - [anon_sym_DOT_DOT_LT] = ACTIONS(5159), - [anon_sym_null] = ACTIONS(4460), - [anon_sym_true] = ACTIONS(4462), - [anon_sym_false] = ACTIONS(4462), - [aux_sym__val_number_decimal_token1] = ACTIONS(4464), - [aux_sym__val_number_decimal_token2] = ACTIONS(4466), - [anon_sym_DOT2] = ACTIONS(5161), - [aux_sym__val_number_decimal_token3] = ACTIONS(4470), - [aux_sym__val_number_token1] = ACTIONS(93), - [aux_sym__val_number_token2] = ACTIONS(93), - [aux_sym__val_number_token3] = ACTIONS(93), - [aux_sym__val_number_token4] = ACTIONS(5163), - [aux_sym__val_number_token5] = ACTIONS(5163), - [aux_sym__val_number_token6] = ACTIONS(5163), - [anon_sym_0b] = ACTIONS(97), - [anon_sym_0o] = ACTIONS(99), - [anon_sym_0x] = ACTIONS(99), - [sym_val_date] = ACTIONS(4474), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym__str_single_quotes] = ACTIONS(105), - [sym__str_back_ticks] = ACTIONS(105), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(109), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2999), + [1935] = { + [sym__expression] = STATE(6988), + [sym_expr_unary] = STATE(5409), + [sym__expr_unary_minus] = STATE(5410), + [sym_expr_binary] = STATE(5409), + [sym__expr_binary_expression] = STATE(6366), + [sym_expr_parenthesized] = STATE(4635), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5409), + [sym_val_nothing] = STATE(5350), + [sym_val_bool] = STATE(5350), + [sym_val_variable] = STATE(4717), + [sym__var] = STATE(4193), + [sym_val_number] = STATE(5350), + [sym__val_number_decimal] = STATE(4266), + [sym__val_number] = STATE(5351), + [sym_val_duration] = STATE(5350), + [sym_val_filesize] = STATE(5350), + [sym_val_binary] = STATE(5350), + [sym_val_string] = STATE(5350), + [sym__str_double_quotes] = STATE(5502), + [sym_val_interpolated] = STATE(5350), + [sym__inter_single_quotes] = STATE(5420), + [sym__inter_double_quotes] = STATE(5421), + [sym_val_list] = STATE(5350), + [sym_val_record] = STATE(5350), + [sym_val_table] = STATE(5350), + [sym_val_closure] = STATE(5350), + [sym__flag] = STATE(1952), + [sym_short_flag] = STATE(4674), + [sym_long_flag] = STATE(4674), + [sym_long_flag_equals_value] = STATE(4714), + [sym_comment] = STATE(1935), + [anon_sym_SEMI] = ACTIONS(5595), + [anon_sym_LF] = ACTIONS(5597), + [anon_sym_LBRACK] = ACTIONS(4833), + [anon_sym_LPAREN] = ACTIONS(4835), + [anon_sym_RPAREN] = ACTIONS(5595), + [anon_sym_PIPE] = ACTIONS(5595), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_DASH_DASH] = ACTIONS(4875), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4841), + [anon_sym_RBRACE] = ACTIONS(5595), + [anon_sym_DOT_DOT] = ACTIONS(4843), + [anon_sym_not] = ACTIONS(4845), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4847), + [anon_sym_DOT_DOT_LT] = ACTIONS(4847), + [anon_sym_null] = ACTIONS(4849), + [anon_sym_true] = ACTIONS(4851), + [anon_sym_false] = ACTIONS(4851), + [aux_sym__val_number_decimal_token1] = ACTIONS(4853), + [aux_sym__val_number_decimal_token2] = ACTIONS(4853), + [anon_sym_DOT2] = ACTIONS(4855), + [aux_sym__val_number_decimal_token3] = ACTIONS(4857), + [aux_sym__val_number_token1] = ACTIONS(4859), + [aux_sym__val_number_token2] = ACTIONS(4859), + [aux_sym__val_number_token3] = ACTIONS(4859), + [aux_sym__val_number_token4] = ACTIONS(4859), + [aux_sym__val_number_token5] = ACTIONS(4859), + [aux_sym__val_number_token6] = ACTIONS(4859), + [anon_sym_0b] = ACTIONS(3080), + [anon_sym_0o] = ACTIONS(3082), + [anon_sym_0x] = ACTIONS(3082), + [sym_val_date] = ACTIONS(4861), + [anon_sym_DQUOTE] = ACTIONS(4863), + [sym__str_single_quotes] = ACTIONS(4865), + [sym__str_back_ticks] = ACTIONS(4865), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4867), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4869), + [anon_sym_POUND] = ACTIONS(113), + }, + [1936] = { + [sym__expression] = STATE(6988), + [sym_expr_unary] = STATE(5409), + [sym__expr_unary_minus] = STATE(5410), + [sym_expr_binary] = STATE(5409), + [sym__expr_binary_expression] = STATE(6366), + [sym_expr_parenthesized] = STATE(4635), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5409), + [sym_val_nothing] = STATE(5350), + [sym_val_bool] = STATE(5350), + [sym_val_variable] = STATE(4717), + [sym__var] = STATE(4193), + [sym_val_number] = STATE(5350), + [sym__val_number_decimal] = STATE(4266), + [sym__val_number] = STATE(5351), + [sym_val_duration] = STATE(5350), + [sym_val_filesize] = STATE(5350), + [sym_val_binary] = STATE(5350), + [sym_val_string] = STATE(5350), + [sym__str_double_quotes] = STATE(5502), + [sym_val_interpolated] = STATE(5350), + [sym__inter_single_quotes] = STATE(5420), + [sym__inter_double_quotes] = STATE(5421), + [sym_val_list] = STATE(5350), + [sym_val_record] = STATE(5350), + [sym_val_table] = STATE(5350), + [sym_val_closure] = STATE(5350), + [sym__flag] = STATE(1955), + [sym_short_flag] = STATE(4674), + [sym_long_flag] = STATE(4674), + [sym_long_flag_equals_value] = STATE(4714), + [sym_comment] = STATE(1936), + [anon_sym_SEMI] = ACTIONS(5595), + [anon_sym_LF] = ACTIONS(5597), + [anon_sym_LBRACK] = ACTIONS(4833), + [anon_sym_LPAREN] = ACTIONS(4835), + [anon_sym_RPAREN] = ACTIONS(5595), + [anon_sym_PIPE] = ACTIONS(5595), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_DASH_DASH] = ACTIONS(4875), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4841), + [anon_sym_RBRACE] = ACTIONS(5595), + [anon_sym_DOT_DOT] = ACTIONS(4843), + [anon_sym_not] = ACTIONS(4845), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4847), + [anon_sym_DOT_DOT_LT] = ACTIONS(4847), + [anon_sym_null] = ACTIONS(4849), + [anon_sym_true] = ACTIONS(4851), + [anon_sym_false] = ACTIONS(4851), + [aux_sym__val_number_decimal_token1] = ACTIONS(4853), + [aux_sym__val_number_decimal_token2] = ACTIONS(4853), + [anon_sym_DOT2] = ACTIONS(4855), + [aux_sym__val_number_decimal_token3] = ACTIONS(4857), + [aux_sym__val_number_token1] = ACTIONS(4859), + [aux_sym__val_number_token2] = ACTIONS(4859), + [aux_sym__val_number_token3] = ACTIONS(4859), + [aux_sym__val_number_token4] = ACTIONS(4859), + [aux_sym__val_number_token5] = ACTIONS(4859), + [aux_sym__val_number_token6] = ACTIONS(4859), + [anon_sym_0b] = ACTIONS(3080), + [anon_sym_0o] = ACTIONS(3082), + [anon_sym_0x] = ACTIONS(3082), + [sym_val_date] = ACTIONS(4861), + [anon_sym_DQUOTE] = ACTIONS(4863), + [sym__str_single_quotes] = ACTIONS(4865), + [sym__str_back_ticks] = ACTIONS(4865), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4867), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4869), + [anon_sym_POUND] = ACTIONS(113), + }, + [1937] = { + [sym_comment] = STATE(1937), + [ts_builtin_sym_end] = ACTIONS(1022), + [anon_sym_SEMI] = ACTIONS(1020), + [anon_sym_LF] = ACTIONS(1022), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1020), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_GT] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1020), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_in] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_DOT_DOT] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_QMARK2] = ACTIONS(1020), + [anon_sym_STAR_STAR] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1020), + [anon_sym_SLASH] = ACTIONS(1020), + [anon_sym_mod] = ACTIONS(1020), + [anon_sym_SLASH_SLASH] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_bit_DASHshl] = ACTIONS(1020), + [anon_sym_bit_DASHshr] = ACTIONS(1020), + [anon_sym_EQ_EQ] = ACTIONS(1020), + [anon_sym_BANG_EQ] = ACTIONS(1020), + [anon_sym_LT2] = ACTIONS(1020), + [anon_sym_LT_EQ] = ACTIONS(1020), + [anon_sym_GT_EQ] = ACTIONS(1020), + [anon_sym_not_DASHin] = ACTIONS(1020), + [anon_sym_starts_DASHwith] = ACTIONS(1020), + [anon_sym_ends_DASHwith] = ACTIONS(1020), + [anon_sym_EQ_TILDE] = ACTIONS(1020), + [anon_sym_BANG_TILDE] = ACTIONS(1020), + [anon_sym_bit_DASHand] = ACTIONS(1020), + [anon_sym_bit_DASHxor] = ACTIONS(1020), + [anon_sym_bit_DASHor] = ACTIONS(1020), + [anon_sym_and] = ACTIONS(1020), + [anon_sym_xor] = ACTIONS(1020), + [anon_sym_or] = ACTIONS(1020), + [anon_sym_not] = ACTIONS(1020), + [anon_sym_DOT_DOT2] = ACTIONS(1020), + [anon_sym_DOT] = ACTIONS(1020), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1020), + [anon_sym_DOT_DOT_LT] = ACTIONS(1020), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1022), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1022), + [anon_sym_null] = ACTIONS(1020), + [anon_sym_true] = ACTIONS(1020), + [anon_sym_false] = ACTIONS(1020), + [aux_sym__val_number_decimal_token1] = ACTIONS(1020), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [anon_sym_DOT2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1020), + [aux_sym__val_number_token1] = ACTIONS(1020), + [aux_sym__val_number_token2] = ACTIONS(1020), + [aux_sym__val_number_token3] = ACTIONS(1020), + [aux_sym__val_number_token4] = ACTIONS(1020), + [aux_sym__val_number_token5] = ACTIONS(1020), + [aux_sym__val_number_token6] = ACTIONS(1020), + [anon_sym_0b] = ACTIONS(1020), + [anon_sym_0o] = ACTIONS(1020), + [anon_sym_0x] = ACTIONS(1020), + [sym_val_date] = ACTIONS(1020), + [anon_sym_DQUOTE] = ACTIONS(1020), + [sym__str_single_quotes] = ACTIONS(1020), + [sym__str_back_ticks] = ACTIONS(1020), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1020), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1020), + [anon_sym_POUND] = ACTIONS(113), + }, + [1938] = { + [sym_comment] = STATE(1938), + [anon_sym_export] = ACTIONS(1229), + [anon_sym_alias] = ACTIONS(1229), + [anon_sym_let] = ACTIONS(1229), + [anon_sym_let_DASHenv] = ACTIONS(1229), + [anon_sym_mut] = ACTIONS(1229), + [anon_sym_const] = ACTIONS(1229), + [anon_sym_SEMI] = ACTIONS(1229), + [sym_cmd_identifier] = ACTIONS(1229), + [anon_sym_LF] = ACTIONS(1231), + [anon_sym_def] = ACTIONS(1229), + [anon_sym_export_DASHenv] = ACTIONS(1229), + [anon_sym_extern] = ACTIONS(1229), + [anon_sym_module] = ACTIONS(1229), + [anon_sym_use] = ACTIONS(1229), + [anon_sym_LBRACK] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_RPAREN] = ACTIONS(1229), + [anon_sym_DOLLAR] = ACTIONS(1229), + [anon_sym_error] = ACTIONS(1229), + [anon_sym_DASH_DASH] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_break] = ACTIONS(1229), + [anon_sym_continue] = ACTIONS(1229), + [anon_sym_for] = ACTIONS(1229), + [anon_sym_loop] = ACTIONS(1229), + [anon_sym_while] = ACTIONS(1229), + [anon_sym_do] = ACTIONS(1229), + [anon_sym_if] = ACTIONS(1229), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1229), + [anon_sym_RBRACE] = ACTIONS(1229), + [anon_sym_DOT_DOT] = ACTIONS(1229), + [anon_sym_try] = ACTIONS(1229), + [anon_sym_return] = ACTIONS(1229), + [anon_sym_source] = ACTIONS(1229), + [anon_sym_source_DASHenv] = ACTIONS(1229), + [anon_sym_register] = ACTIONS(1229), + [anon_sym_hide] = ACTIONS(1229), + [anon_sym_hide_DASHenv] = ACTIONS(1229), + [anon_sym_overlay] = ACTIONS(1229), + [anon_sym_as] = ACTIONS(1229), + [anon_sym_where] = ACTIONS(1229), + [anon_sym_not] = ACTIONS(1229), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1229), + [anon_sym_DOT_DOT_LT] = ACTIONS(1229), + [anon_sym_null] = ACTIONS(1229), + [anon_sym_true] = ACTIONS(1229), + [anon_sym_false] = ACTIONS(1229), + [aux_sym__val_number_decimal_token1] = ACTIONS(1229), + [aux_sym__val_number_decimal_token2] = ACTIONS(1229), + [anon_sym_DOT2] = ACTIONS(1229), + [aux_sym__val_number_decimal_token3] = ACTIONS(1229), + [aux_sym__val_number_token1] = ACTIONS(1229), + [aux_sym__val_number_token2] = ACTIONS(1229), + [aux_sym__val_number_token3] = ACTIONS(1229), + [aux_sym__val_number_token4] = ACTIONS(1229), + [aux_sym__val_number_token5] = ACTIONS(1229), + [aux_sym__val_number_token6] = ACTIONS(1229), + [anon_sym_0b] = ACTIONS(1229), + [anon_sym_0o] = ACTIONS(1229), + [anon_sym_0x] = ACTIONS(1229), + [sym_val_date] = ACTIONS(1229), + [anon_sym_DQUOTE] = ACTIONS(1229), + [sym__str_single_quotes] = ACTIONS(1229), + [sym__str_back_ticks] = ACTIONS(1229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_POUND] = ACTIONS(113), + }, + [1939] = { + [sym_comment] = STATE(1939), + [anon_sym_export] = ACTIONS(1037), + [anon_sym_alias] = ACTIONS(1037), + [anon_sym_let] = ACTIONS(1037), + [anon_sym_let_DASHenv] = ACTIONS(1037), + [anon_sym_mut] = ACTIONS(1037), + [anon_sym_const] = ACTIONS(1037), + [anon_sym_SEMI] = ACTIONS(1037), + [sym_cmd_identifier] = ACTIONS(1037), + [anon_sym_LF] = ACTIONS(1039), + [anon_sym_def] = ACTIONS(1037), + [anon_sym_export_DASHenv] = ACTIONS(1037), + [anon_sym_extern] = ACTIONS(1037), + [anon_sym_module] = ACTIONS(1037), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_LBRACK] = ACTIONS(1037), + [anon_sym_LPAREN] = ACTIONS(1037), + [anon_sym_RPAREN] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1037), + [anon_sym_error] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_break] = ACTIONS(1037), + [anon_sym_continue] = ACTIONS(1037), + [anon_sym_for] = ACTIONS(1037), + [anon_sym_loop] = ACTIONS(1037), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_do] = ACTIONS(1037), + [anon_sym_if] = ACTIONS(1037), + [anon_sym_match] = ACTIONS(1037), + [anon_sym_LBRACE] = ACTIONS(1037), + [anon_sym_RBRACE] = ACTIONS(1037), + [anon_sym_DOT_DOT] = ACTIONS(1037), + [anon_sym_try] = ACTIONS(1037), + [anon_sym_return] = ACTIONS(1037), + [anon_sym_source] = ACTIONS(1037), + [anon_sym_source_DASHenv] = ACTIONS(1037), + [anon_sym_register] = ACTIONS(1037), + [anon_sym_hide] = ACTIONS(1037), + [anon_sym_hide_DASHenv] = ACTIONS(1037), + [anon_sym_overlay] = ACTIONS(1037), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_where] = ACTIONS(1037), + [anon_sym_not] = ACTIONS(1037), + [anon_sym_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1037), + [anon_sym_DOT_DOT_LT] = ACTIONS(1037), + [anon_sym_null] = ACTIONS(1037), + [anon_sym_true] = ACTIONS(1037), + [anon_sym_false] = ACTIONS(1037), + [aux_sym__val_number_decimal_token1] = ACTIONS(1037), + [aux_sym__val_number_decimal_token2] = ACTIONS(1037), + [anon_sym_DOT2] = ACTIONS(1037), + [aux_sym__val_number_decimal_token3] = ACTIONS(1037), + [aux_sym__val_number_token1] = ACTIONS(1037), + [aux_sym__val_number_token2] = ACTIONS(1037), + [aux_sym__val_number_token3] = ACTIONS(1037), + [aux_sym__val_number_token4] = ACTIONS(1037), + [aux_sym__val_number_token5] = ACTIONS(1037), + [aux_sym__val_number_token6] = ACTIONS(1037), + [anon_sym_0b] = ACTIONS(1037), + [anon_sym_0o] = ACTIONS(1037), + [anon_sym_0x] = ACTIONS(1037), + [sym_val_date] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1037), + [sym__str_single_quotes] = ACTIONS(1037), + [sym__str_back_ticks] = ACTIONS(1037), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1037), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1037), + [anon_sym_CARET] = ACTIONS(1037), + [anon_sym_POUND] = ACTIONS(113), + }, + [1940] = { + [sym_comment] = STATE(1940), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_COMMA] = ACTIONS(1139), + [anon_sym_LPAREN] = ACTIONS(1139), + [anon_sym_DOLLAR] = ACTIONS(1139), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_in] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1139), + [anon_sym_RBRACE] = ACTIONS(1139), + [anon_sym__] = ACTIONS(1139), + [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_STAR_STAR] = ACTIONS(1139), + [anon_sym_PLUS_PLUS] = ACTIONS(1139), + [anon_sym_SLASH] = ACTIONS(1139), + [anon_sym_mod] = ACTIONS(1139), + [anon_sym_SLASH_SLASH] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_bit_DASHshl] = ACTIONS(1139), + [anon_sym_bit_DASHshr] = ACTIONS(1139), + [anon_sym_EQ_EQ] = ACTIONS(1139), + [anon_sym_BANG_EQ] = ACTIONS(1139), + [anon_sym_LT2] = ACTIONS(1139), + [anon_sym_LT_EQ] = ACTIONS(1139), + [anon_sym_GT_EQ] = ACTIONS(1139), + [anon_sym_not_DASHin] = ACTIONS(1139), + [anon_sym_starts_DASHwith] = ACTIONS(1139), + [anon_sym_ends_DASHwith] = ACTIONS(1139), + [anon_sym_EQ_TILDE] = ACTIONS(1139), + [anon_sym_BANG_TILDE] = ACTIONS(1139), + [anon_sym_bit_DASHand] = ACTIONS(1139), + [anon_sym_bit_DASHxor] = ACTIONS(1139), + [anon_sym_bit_DASHor] = ACTIONS(1139), + [anon_sym_and] = ACTIONS(1139), + [anon_sym_xor] = ACTIONS(1139), + [anon_sym_or] = ACTIONS(1139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1139), + [anon_sym_DOT_DOT_LT] = ACTIONS(1139), + [anon_sym_null] = ACTIONS(1139), + [anon_sym_true] = ACTIONS(1139), + [anon_sym_false] = ACTIONS(1139), + [aux_sym__val_number_decimal_token1] = ACTIONS(1139), + [aux_sym__val_number_decimal_token2] = ACTIONS(1139), + [anon_sym_DOT2] = ACTIONS(1139), + [aux_sym__val_number_decimal_token3] = ACTIONS(1139), + [aux_sym__val_number_token1] = ACTIONS(1139), + [aux_sym__val_number_token2] = ACTIONS(1139), + [aux_sym__val_number_token3] = ACTIONS(1139), + [aux_sym__val_number_token4] = ACTIONS(1139), + [aux_sym__val_number_token5] = ACTIONS(1139), + [aux_sym__val_number_token6] = ACTIONS(1139), + [anon_sym_0b] = ACTIONS(1139), + [anon_sym_0o] = ACTIONS(1139), + [anon_sym_0x] = ACTIONS(1139), + [sym_val_date] = ACTIONS(1139), + [anon_sym_DQUOTE] = ACTIONS(1139), + [sym__str_single_quotes] = ACTIONS(1139), + [sym__str_back_ticks] = ACTIONS(1139), + [aux_sym__list_item_starts_with_sign_token1] = ACTIONS(5599), + [anon_sym_err_GT] = ACTIONS(1139), + [anon_sym_out_GT] = ACTIONS(1139), + [anon_sym_e_GT] = ACTIONS(1139), + [anon_sym_o_GT] = ACTIONS(1139), + [anon_sym_err_PLUSout_GT] = ACTIONS(1139), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1139), + [anon_sym_o_PLUSe_GT] = ACTIONS(1139), + [anon_sym_e_PLUSo_GT] = ACTIONS(1139), + [aux_sym_unquoted_token1] = ACTIONS(1139), + [anon_sym_POUND] = ACTIONS(113), + }, + [1941] = { + [sym_comment] = STATE(1941), + [ts_builtin_sym_end] = ACTIONS(940), + [anon_sym_export] = ACTIONS(938), + [anon_sym_alias] = ACTIONS(938), + [anon_sym_let] = ACTIONS(938), + [anon_sym_let_DASHenv] = ACTIONS(938), + [anon_sym_mut] = ACTIONS(938), + [anon_sym_const] = ACTIONS(938), + [anon_sym_SEMI] = ACTIONS(938), + [sym_cmd_identifier] = ACTIONS(938), + [anon_sym_LF] = ACTIONS(940), + [anon_sym_def] = ACTIONS(938), + [anon_sym_export_DASHenv] = ACTIONS(938), + [anon_sym_extern] = ACTIONS(938), + [anon_sym_module] = ACTIONS(938), + [anon_sym_use] = ACTIONS(938), + [anon_sym_LBRACK] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(938), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_error] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_break] = ACTIONS(938), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_for] = ACTIONS(938), + [anon_sym_loop] = ACTIONS(938), + [anon_sym_while] = ACTIONS(938), + [anon_sym_do] = ACTIONS(938), + [anon_sym_if] = ACTIONS(938), + [anon_sym_match] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_try] = ACTIONS(938), + [anon_sym_return] = ACTIONS(938), + [anon_sym_source] = ACTIONS(938), + [anon_sym_source_DASHenv] = ACTIONS(938), + [anon_sym_register] = ACTIONS(938), + [anon_sym_hide] = ACTIONS(938), + [anon_sym_hide_DASHenv] = ACTIONS(938), + [anon_sym_overlay] = ACTIONS(938), + [anon_sym_as] = ACTIONS(938), + [anon_sym_where] = ACTIONS(938), + [anon_sym_not] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ] = ACTIONS(938), + [anon_sym_DOT_DOT_LT] = ACTIONS(938), + [anon_sym_null] = ACTIONS(938), + [anon_sym_true] = ACTIONS(938), + [anon_sym_false] = ACTIONS(938), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(938), + [anon_sym_DOT2] = ACTIONS(938), + [aux_sym__val_number_decimal_token3] = ACTIONS(938), + [aux_sym__val_number_token1] = ACTIONS(938), + [aux_sym__val_number_token2] = ACTIONS(938), + [aux_sym__val_number_token3] = ACTIONS(938), + [aux_sym__val_number_token4] = ACTIONS(938), + [aux_sym__val_number_token5] = ACTIONS(938), + [aux_sym__val_number_token6] = ACTIONS(938), + [anon_sym_0b] = ACTIONS(938), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym__str_single_quotes] = ACTIONS(938), + [sym__str_back_ticks] = ACTIONS(938), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(938), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(938), + [anon_sym_CARET] = ACTIONS(938), + [aux_sym_unquoted_token5] = ACTIONS(1856), + [anon_sym_POUND] = ACTIONS(113), + }, + [1942] = { + [sym_comment] = STATE(1942), + [anon_sym_LBRACK] = ACTIONS(940), + [anon_sym_COMMA] = ACTIONS(940), + [anon_sym_RBRACK] = ACTIONS(940), + [anon_sym_LPAREN] = ACTIONS(940), + [anon_sym_DOLLAR] = ACTIONS(940), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(940), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_in] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(940), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_STAR_STAR] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(940), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(940), + [anon_sym_SLASH_SLASH] = ACTIONS(940), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_bit_DASHshl] = ACTIONS(940), + [anon_sym_bit_DASHshr] = ACTIONS(940), + [anon_sym_EQ_EQ] = ACTIONS(940), + [anon_sym_BANG_EQ] = ACTIONS(940), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(940), + [anon_sym_GT_EQ] = ACTIONS(940), + [anon_sym_not_DASHin] = ACTIONS(940), + [anon_sym_starts_DASHwith] = ACTIONS(940), + [anon_sym_ends_DASHwith] = ACTIONS(940), + [anon_sym_EQ_TILDE] = ACTIONS(940), + [anon_sym_BANG_TILDE] = ACTIONS(940), + [anon_sym_bit_DASHand] = ACTIONS(940), + [anon_sym_bit_DASHxor] = ACTIONS(940), + [anon_sym_bit_DASHor] = ACTIONS(940), + [anon_sym_and] = ACTIONS(940), + [anon_sym_xor] = ACTIONS(940), + [anon_sym_or] = ACTIONS(940), + [anon_sym_DOT_DOT_EQ] = ACTIONS(940), + [anon_sym_DOT_DOT_LT] = ACTIONS(940), + [anon_sym_null] = ACTIONS(940), + [anon_sym_true] = ACTIONS(940), + [anon_sym_false] = ACTIONS(940), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(940), + [anon_sym_DOT2] = ACTIONS(938), + [aux_sym__val_number_decimal_token3] = ACTIONS(940), + [aux_sym__val_number_token1] = ACTIONS(940), + [aux_sym__val_number_token2] = ACTIONS(940), + [aux_sym__val_number_token3] = ACTIONS(940), + [aux_sym__val_number_token4] = ACTIONS(940), + [aux_sym__val_number_token5] = ACTIONS(940), + [aux_sym__val_number_token6] = ACTIONS(940), + [anon_sym_0b] = ACTIONS(938), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = ACTIONS(940), + [anon_sym_DQUOTE] = ACTIONS(940), + [sym__str_single_quotes] = ACTIONS(940), + [sym__str_back_ticks] = ACTIONS(940), + [anon_sym_err_GT] = ACTIONS(940), + [anon_sym_out_GT] = ACTIONS(940), + [anon_sym_e_GT] = ACTIONS(940), + [anon_sym_o_GT] = ACTIONS(940), + [anon_sym_err_PLUSout_GT] = ACTIONS(940), + [anon_sym_out_PLUSerr_GT] = ACTIONS(940), + [anon_sym_o_PLUSe_GT] = ACTIONS(940), + [anon_sym_e_PLUSo_GT] = ACTIONS(940), + [aux_sym_unquoted_token5] = ACTIONS(2958), + [aux_sym__unquoted_in_list_token1] = ACTIONS(938), [anon_sym_POUND] = ACTIONS(3), }, - [1750] = { - [sym_expr_unary] = STATE(6382), - [sym__expr_unary_minus] = STATE(6347), - [sym_expr_binary] = STATE(6382), - [sym__expr_binary_expression] = STATE(6407), - [sym_expr_parenthesized] = STATE(6382), - [sym__val_range] = STATE(10572), - [sym__value] = STATE(6382), - [sym_val_nothing] = STATE(6374), - [sym_val_bool] = STATE(6252), - [sym_val_variable] = STATE(6374), - [sym__var] = STATE(5497), - [sym_val_number] = STATE(6374), - [sym__val_number_decimal] = STATE(4789), - [sym__val_number] = STATE(5769), - [sym_val_duration] = STATE(6374), - [sym_val_filesize] = STATE(6374), - [sym_val_binary] = STATE(6374), - [sym_val_string] = STATE(6374), - [sym__str_double_quotes] = STATE(6386), - [sym_val_interpolated] = STATE(6374), - [sym__inter_single_quotes] = STATE(6363), - [sym__inter_double_quotes] = STATE(6365), - [sym_val_list] = STATE(6374), - [sym_val_record] = STATE(6374), - [sym_val_table] = STATE(6374), - [sym_val_closure] = STATE(6374), - [sym_unquoted] = STATE(6408), - [sym__unquoted_anonymous_prefix] = STATE(11300), - [sym_comment] = STATE(1750), + [1943] = { + [sym_comment] = STATE(1943), + [anon_sym_export] = ACTIONS(1033), + [anon_sym_alias] = ACTIONS(1033), + [anon_sym_let] = ACTIONS(1033), + [anon_sym_let_DASHenv] = ACTIONS(1033), + [anon_sym_mut] = ACTIONS(1033), + [anon_sym_const] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(1033), + [sym_cmd_identifier] = ACTIONS(1033), + [anon_sym_LF] = ACTIONS(1035), + [anon_sym_def] = ACTIONS(1033), + [anon_sym_export_DASHenv] = ACTIONS(1033), + [anon_sym_extern] = ACTIONS(1033), + [anon_sym_module] = ACTIONS(1033), + [anon_sym_use] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1033), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_RPAREN] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_error] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1033), + [anon_sym_break] = ACTIONS(1033), + [anon_sym_continue] = ACTIONS(1033), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_loop] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(1033), + [anon_sym_do] = ACTIONS(1033), + [anon_sym_if] = ACTIONS(1033), + [anon_sym_match] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1033), + [anon_sym_DOT_DOT] = ACTIONS(1033), + [anon_sym_try] = ACTIONS(1033), + [anon_sym_return] = ACTIONS(1033), + [anon_sym_source] = ACTIONS(1033), + [anon_sym_source_DASHenv] = ACTIONS(1033), + [anon_sym_register] = ACTIONS(1033), + [anon_sym_hide] = ACTIONS(1033), + [anon_sym_hide_DASHenv] = ACTIONS(1033), + [anon_sym_overlay] = ACTIONS(1033), + [anon_sym_as] = ACTIONS(1033), + [anon_sym_where] = ACTIONS(1033), + [anon_sym_not] = ACTIONS(1033), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1033), + [anon_sym_DOT_DOT_LT] = ACTIONS(1033), + [anon_sym_null] = ACTIONS(1033), + [anon_sym_true] = ACTIONS(1033), + [anon_sym_false] = ACTIONS(1033), + [aux_sym__val_number_decimal_token1] = ACTIONS(1033), + [aux_sym__val_number_decimal_token2] = ACTIONS(1033), + [anon_sym_DOT2] = ACTIONS(1033), + [aux_sym__val_number_decimal_token3] = ACTIONS(1033), + [aux_sym__val_number_token1] = ACTIONS(1033), + [aux_sym__val_number_token2] = ACTIONS(1033), + [aux_sym__val_number_token3] = ACTIONS(1033), + [aux_sym__val_number_token4] = ACTIONS(1033), + [aux_sym__val_number_token5] = ACTIONS(1033), + [aux_sym__val_number_token6] = ACTIONS(1033), + [anon_sym_0b] = ACTIONS(1033), + [anon_sym_0o] = ACTIONS(1033), + [anon_sym_0x] = ACTIONS(1033), + [sym_val_date] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [sym__str_single_quotes] = ACTIONS(1033), + [sym__str_back_ticks] = ACTIONS(1033), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1033), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1033), + [anon_sym_CARET] = ACTIONS(1033), + [anon_sym_POUND] = ACTIONS(113), + }, + [1944] = { + [sym_comment] = STATE(1944), + [anon_sym_export] = ACTIONS(1041), + [anon_sym_alias] = ACTIONS(1041), + [anon_sym_let] = ACTIONS(1041), + [anon_sym_let_DASHenv] = ACTIONS(1041), + [anon_sym_mut] = ACTIONS(1041), + [anon_sym_const] = ACTIONS(1041), + [anon_sym_SEMI] = ACTIONS(1041), + [sym_cmd_identifier] = ACTIONS(1041), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_def] = ACTIONS(1041), + [anon_sym_export_DASHenv] = ACTIONS(1041), + [anon_sym_extern] = ACTIONS(1041), + [anon_sym_module] = ACTIONS(1041), + [anon_sym_use] = ACTIONS(1041), + [anon_sym_LBRACK] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1041), + [anon_sym_RPAREN] = ACTIONS(1041), + [anon_sym_DOLLAR] = ACTIONS(1041), + [anon_sym_error] = ACTIONS(1041), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_break] = ACTIONS(1041), + [anon_sym_continue] = ACTIONS(1041), + [anon_sym_for] = ACTIONS(1041), + [anon_sym_loop] = ACTIONS(1041), + [anon_sym_while] = ACTIONS(1041), + [anon_sym_do] = ACTIONS(1041), + [anon_sym_if] = ACTIONS(1041), + [anon_sym_match] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_RBRACE] = ACTIONS(1041), + [anon_sym_DOT_DOT] = ACTIONS(1041), + [anon_sym_try] = ACTIONS(1041), + [anon_sym_return] = ACTIONS(1041), + [anon_sym_source] = ACTIONS(1041), + [anon_sym_source_DASHenv] = ACTIONS(1041), + [anon_sym_register] = ACTIONS(1041), + [anon_sym_hide] = ACTIONS(1041), + [anon_sym_hide_DASHenv] = ACTIONS(1041), + [anon_sym_overlay] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_where] = ACTIONS(1041), + [anon_sym_not] = ACTIONS(1041), + [anon_sym_DOT] = ACTIONS(1041), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1041), + [anon_sym_DOT_DOT_LT] = ACTIONS(1041), + [anon_sym_null] = ACTIONS(1041), + [anon_sym_true] = ACTIONS(1041), + [anon_sym_false] = ACTIONS(1041), + [aux_sym__val_number_decimal_token1] = ACTIONS(1041), + [aux_sym__val_number_decimal_token2] = ACTIONS(1041), + [anon_sym_DOT2] = ACTIONS(1041), + [aux_sym__val_number_decimal_token3] = ACTIONS(1041), + [aux_sym__val_number_token1] = ACTIONS(1041), + [aux_sym__val_number_token2] = ACTIONS(1041), + [aux_sym__val_number_token3] = ACTIONS(1041), + [aux_sym__val_number_token4] = ACTIONS(1041), + [aux_sym__val_number_token5] = ACTIONS(1041), + [aux_sym__val_number_token6] = ACTIONS(1041), + [anon_sym_0b] = ACTIONS(1041), + [anon_sym_0o] = ACTIONS(1041), + [anon_sym_0x] = ACTIONS(1041), + [sym_val_date] = ACTIONS(1041), + [anon_sym_DQUOTE] = ACTIONS(1041), + [sym__str_single_quotes] = ACTIONS(1041), + [sym__str_back_ticks] = ACTIONS(1041), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1041), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1041), + [anon_sym_CARET] = ACTIONS(1041), + [anon_sym_POUND] = ACTIONS(113), + }, + [1945] = { + [sym_comment] = STATE(1945), + [ts_builtin_sym_end] = ACTIONS(1035), + [anon_sym_export] = ACTIONS(1033), + [anon_sym_alias] = ACTIONS(1033), + [anon_sym_let] = ACTIONS(1033), + [anon_sym_let_DASHenv] = ACTIONS(1033), + [anon_sym_mut] = ACTIONS(1033), + [anon_sym_const] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(1033), + [sym_cmd_identifier] = ACTIONS(1033), + [anon_sym_LF] = ACTIONS(1035), + [anon_sym_def] = ACTIONS(1033), + [anon_sym_export_DASHenv] = ACTIONS(1033), + [anon_sym_extern] = ACTIONS(1033), + [anon_sym_module] = ACTIONS(1033), + [anon_sym_use] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1033), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_error] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1033), + [anon_sym_break] = ACTIONS(1033), + [anon_sym_continue] = ACTIONS(1033), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_loop] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(1033), + [anon_sym_do] = ACTIONS(1033), + [anon_sym_if] = ACTIONS(1033), + [anon_sym_match] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_DOT_DOT] = ACTIONS(1033), + [anon_sym_try] = ACTIONS(1033), + [anon_sym_return] = ACTIONS(1033), + [anon_sym_source] = ACTIONS(1033), + [anon_sym_source_DASHenv] = ACTIONS(1033), + [anon_sym_register] = ACTIONS(1033), + [anon_sym_hide] = ACTIONS(1033), + [anon_sym_hide_DASHenv] = ACTIONS(1033), + [anon_sym_overlay] = ACTIONS(1033), + [anon_sym_STAR] = ACTIONS(1033), + [anon_sym_where] = ACTIONS(1033), + [anon_sym_QMARK2] = ACTIONS(1033), + [anon_sym_not] = ACTIONS(1033), + [anon_sym_DOT] = ACTIONS(1033), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1033), + [anon_sym_DOT_DOT_LT] = ACTIONS(1033), + [anon_sym_null] = ACTIONS(1033), + [anon_sym_true] = ACTIONS(1033), + [anon_sym_false] = ACTIONS(1033), + [aux_sym__val_number_decimal_token1] = ACTIONS(1033), + [aux_sym__val_number_decimal_token2] = ACTIONS(1033), + [anon_sym_DOT2] = ACTIONS(1033), + [aux_sym__val_number_decimal_token3] = ACTIONS(1033), + [aux_sym__val_number_token1] = ACTIONS(1033), + [aux_sym__val_number_token2] = ACTIONS(1033), + [aux_sym__val_number_token3] = ACTIONS(1033), + [aux_sym__val_number_token4] = ACTIONS(1033), + [aux_sym__val_number_token5] = ACTIONS(1033), + [aux_sym__val_number_token6] = ACTIONS(1033), + [anon_sym_0b] = ACTIONS(1033), + [anon_sym_0o] = ACTIONS(1033), + [anon_sym_0x] = ACTIONS(1033), + [sym_val_date] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [sym__str_single_quotes] = ACTIONS(1033), + [sym__str_back_ticks] = ACTIONS(1033), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1033), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1033), + [anon_sym_CARET] = ACTIONS(1033), + [anon_sym_POUND] = ACTIONS(113), + }, + [1946] = { + [sym_comment] = STATE(1946), + [anon_sym_export] = ACTIONS(1020), + [anon_sym_alias] = ACTIONS(1020), + [anon_sym_let] = ACTIONS(1020), + [anon_sym_let_DASHenv] = ACTIONS(1020), + [anon_sym_mut] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1020), + [sym_cmd_identifier] = ACTIONS(1020), + [anon_sym_LF] = ACTIONS(1022), + [anon_sym_def] = ACTIONS(1020), + [anon_sym_export_DASHenv] = ACTIONS(1020), + [anon_sym_extern] = ACTIONS(1020), + [anon_sym_module] = ACTIONS(1020), + [anon_sym_use] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1020), + [anon_sym_RPAREN] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_error] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1020), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_loop] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_match] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_RBRACE] = ACTIONS(1020), + [anon_sym_DOT_DOT] = ACTIONS(1020), + [anon_sym_try] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_source] = ACTIONS(1020), + [anon_sym_source_DASHenv] = ACTIONS(1020), + [anon_sym_register] = ACTIONS(1020), + [anon_sym_hide] = ACTIONS(1020), + [anon_sym_hide_DASHenv] = ACTIONS(1020), + [anon_sym_overlay] = ACTIONS(1020), + [anon_sym_as] = ACTIONS(1020), + [anon_sym_where] = ACTIONS(1020), + [anon_sym_not] = ACTIONS(1020), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1020), + [anon_sym_DOT_DOT_LT] = ACTIONS(1020), + [anon_sym_null] = ACTIONS(1020), + [anon_sym_true] = ACTIONS(1020), + [anon_sym_false] = ACTIONS(1020), + [aux_sym__val_number_decimal_token1] = ACTIONS(1020), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [anon_sym_DOT2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1020), + [aux_sym__val_number_token1] = ACTIONS(1020), + [aux_sym__val_number_token2] = ACTIONS(1020), + [aux_sym__val_number_token3] = ACTIONS(1020), + [aux_sym__val_number_token4] = ACTIONS(1020), + [aux_sym__val_number_token5] = ACTIONS(1020), + [aux_sym__val_number_token6] = ACTIONS(1020), + [anon_sym_0b] = ACTIONS(1020), + [anon_sym_0o] = ACTIONS(1020), + [anon_sym_0x] = ACTIONS(1020), + [sym_val_date] = ACTIONS(1020), + [anon_sym_DQUOTE] = ACTIONS(1020), + [sym__str_single_quotes] = ACTIONS(1020), + [sym__str_back_ticks] = ACTIONS(1020), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1020), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1020), + [anon_sym_CARET] = ACTIONS(1020), + [anon_sym_POUND] = ACTIONS(113), + }, + [1947] = { + [sym_comment] = STATE(1947), + [ts_builtin_sym_end] = ACTIONS(1022), + [anon_sym_export] = ACTIONS(1020), + [anon_sym_alias] = ACTIONS(1020), + [anon_sym_let] = ACTIONS(1020), + [anon_sym_let_DASHenv] = ACTIONS(1020), + [anon_sym_mut] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1020), + [sym_cmd_identifier] = ACTIONS(1020), + [anon_sym_LF] = ACTIONS(1022), + [anon_sym_def] = ACTIONS(1020), + [anon_sym_export_DASHenv] = ACTIONS(1020), + [anon_sym_extern] = ACTIONS(1020), + [anon_sym_module] = ACTIONS(1020), + [anon_sym_use] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_error] = ACTIONS(1020), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_loop] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_match] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_DOT_DOT] = ACTIONS(1020), + [anon_sym_try] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_source] = ACTIONS(1020), + [anon_sym_source_DASHenv] = ACTIONS(1020), + [anon_sym_register] = ACTIONS(1020), + [anon_sym_hide] = ACTIONS(1020), + [anon_sym_hide_DASHenv] = ACTIONS(1020), + [anon_sym_overlay] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_where] = ACTIONS(1020), + [anon_sym_QMARK2] = ACTIONS(1020), + [anon_sym_not] = ACTIONS(1020), + [anon_sym_DOT] = ACTIONS(1020), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1020), + [anon_sym_DOT_DOT_LT] = ACTIONS(1020), + [anon_sym_null] = ACTIONS(1020), + [anon_sym_true] = ACTIONS(1020), + [anon_sym_false] = ACTIONS(1020), + [aux_sym__val_number_decimal_token1] = ACTIONS(1020), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [anon_sym_DOT2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1020), + [aux_sym__val_number_token1] = ACTIONS(1020), + [aux_sym__val_number_token2] = ACTIONS(1020), + [aux_sym__val_number_token3] = ACTIONS(1020), + [aux_sym__val_number_token4] = ACTIONS(1020), + [aux_sym__val_number_token5] = ACTIONS(1020), + [aux_sym__val_number_token6] = ACTIONS(1020), + [anon_sym_0b] = ACTIONS(1020), + [anon_sym_0o] = ACTIONS(1020), + [anon_sym_0x] = ACTIONS(1020), + [sym_val_date] = ACTIONS(1020), + [anon_sym_DQUOTE] = ACTIONS(1020), + [sym__str_single_quotes] = ACTIONS(1020), + [sym__str_back_ticks] = ACTIONS(1020), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1020), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1020), + [anon_sym_CARET] = ACTIONS(1020), + [anon_sym_POUND] = ACTIONS(113), + }, + [1948] = { + [sym_comment] = STATE(1948), + [anon_sym_LBRACK] = ACTIONS(1091), + [anon_sym_COMMA] = ACTIONS(1089), + [anon_sym_RBRACK] = ACTIONS(1091), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_DOLLAR] = ACTIONS(1089), + [anon_sym_GT] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_DASH] = ACTIONS(1089), + [anon_sym_in] = ACTIONS(1089), + [anon_sym_LBRACE] = ACTIONS(1091), + [anon_sym_DOT_DOT] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_STAR_STAR] = ACTIONS(1089), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_SLASH] = ACTIONS(1089), + [anon_sym_mod] = ACTIONS(1089), + [anon_sym_SLASH_SLASH] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1089), + [anon_sym_bit_DASHshl] = ACTIONS(1089), + [anon_sym_bit_DASHshr] = ACTIONS(1089), + [anon_sym_EQ_EQ] = ACTIONS(1089), + [anon_sym_BANG_EQ] = ACTIONS(1089), + [anon_sym_LT2] = ACTIONS(1089), + [anon_sym_LT_EQ] = ACTIONS(1089), + [anon_sym_GT_EQ] = ACTIONS(1089), + [anon_sym_not_DASHin] = ACTIONS(1089), + [anon_sym_starts_DASHwith] = ACTIONS(1089), + [anon_sym_ends_DASHwith] = ACTIONS(1089), + [anon_sym_EQ_TILDE] = ACTIONS(1089), + [anon_sym_BANG_TILDE] = ACTIONS(1089), + [anon_sym_bit_DASHand] = ACTIONS(1089), + [anon_sym_bit_DASHxor] = ACTIONS(1089), + [anon_sym_bit_DASHor] = ACTIONS(1089), + [anon_sym_and] = ACTIONS(1089), + [anon_sym_xor] = ACTIONS(1089), + [anon_sym_or] = ACTIONS(1089), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_DOT_DOT_LT] = ACTIONS(1089), + [anon_sym_null] = ACTIONS(1089), + [anon_sym_true] = ACTIONS(1089), + [anon_sym_false] = ACTIONS(1089), + [aux_sym__val_number_decimal_token1] = ACTIONS(1089), + [aux_sym__val_number_decimal_token2] = ACTIONS(1089), + [anon_sym_DOT2] = ACTIONS(1089), + [aux_sym__val_number_decimal_token3] = ACTIONS(1089), + [aux_sym__val_number_token1] = ACTIONS(1089), + [aux_sym__val_number_token2] = ACTIONS(1089), + [aux_sym__val_number_token3] = ACTIONS(1089), + [aux_sym__val_number_token4] = ACTIONS(1089), + [aux_sym__val_number_token5] = ACTIONS(1089), + [aux_sym__val_number_token6] = ACTIONS(1089), + [anon_sym_0b] = ACTIONS(1089), + [anon_sym_0o] = ACTIONS(1089), + [anon_sym_0x] = ACTIONS(1089), + [sym_val_date] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1091), + [sym__str_single_quotes] = ACTIONS(1091), + [sym__str_back_ticks] = ACTIONS(1091), + [anon_sym_err_GT] = ACTIONS(1089), + [anon_sym_out_GT] = ACTIONS(1089), + [anon_sym_e_GT] = ACTIONS(1089), + [anon_sym_o_GT] = ACTIONS(1089), + [anon_sym_err_PLUSout_GT] = ACTIONS(1089), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1089), + [anon_sym_o_PLUSe_GT] = ACTIONS(1089), + [anon_sym_e_PLUSo_GT] = ACTIONS(1089), + [aux_sym_unquoted_token6] = ACTIONS(1149), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1089), + [anon_sym_POUND] = ACTIONS(113), + }, + [1949] = { + [sym_expr_unary] = STATE(5879), + [sym__expr_unary_minus] = STATE(5878), + [sym_expr_binary] = STATE(5879), + [sym__expr_binary_expression] = STATE(5956), + [sym_expr_parenthesized] = STATE(5879), + [sym__val_range] = STATE(10069), + [sym__value] = STATE(5879), + [sym_val_nothing] = STATE(5931), + [sym_val_bool] = STATE(5739), + [sym_val_variable] = STATE(5931), + [sym__var] = STATE(5079), + [sym_val_number] = STATE(5931), + [sym__val_number_decimal] = STATE(4336), + [sym__val_number] = STATE(5285), + [sym_val_duration] = STATE(5931), + [sym_val_filesize] = STATE(5931), + [sym_val_binary] = STATE(5931), + [sym_val_string] = STATE(5931), + [sym__str_double_quotes] = STATE(5888), + [sym_val_interpolated] = STATE(5931), + [sym__inter_single_quotes] = STATE(5935), + [sym__inter_double_quotes] = STATE(5940), + [sym_val_list] = STATE(5931), + [sym_val_record] = STATE(5931), + [sym_val_table] = STATE(5931), + [sym_val_closure] = STATE(5931), + [sym_unquoted] = STATE(5897), + [sym__unquoted_anonymous_prefix] = STATE(10402), + [sym_comment] = STATE(1949), [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(5153), - [anon_sym_DOLLAR] = ACTIONS(5155), + [anon_sym_LPAREN] = ACTIONS(4909), + [anon_sym_DOLLAR] = ACTIONS(4911), [anon_sym_DASH] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_DOT_DOT] = ACTIONS(5157), - [anon_sym_not] = ACTIONS(4456), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5159), - [anon_sym_DOT_DOT_LT] = ACTIONS(5159), - [anon_sym_null] = ACTIONS(4460), - [anon_sym_true] = ACTIONS(4462), - [anon_sym_false] = ACTIONS(4462), - [aux_sym__val_number_decimal_token1] = ACTIONS(4464), - [aux_sym__val_number_decimal_token2] = ACTIONS(4466), - [anon_sym_DOT2] = ACTIONS(5161), - [aux_sym__val_number_decimal_token3] = ACTIONS(4470), + [anon_sym_DOT_DOT] = ACTIONS(4913), + [anon_sym_not] = ACTIONS(3918), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4915), + [anon_sym_DOT_DOT_LT] = ACTIONS(4915), + [anon_sym_null] = ACTIONS(3922), + [anon_sym_true] = ACTIONS(3924), + [anon_sym_false] = ACTIONS(3924), + [aux_sym__val_number_decimal_token1] = ACTIONS(3926), + [aux_sym__val_number_decimal_token2] = ACTIONS(3928), + [anon_sym_DOT2] = ACTIONS(4917), + [aux_sym__val_number_decimal_token3] = ACTIONS(3932), [aux_sym__val_number_token1] = ACTIONS(93), [aux_sym__val_number_token2] = ACTIONS(93), [aux_sym__val_number_token3] = ACTIONS(93), - [aux_sym__val_number_token4] = ACTIONS(5163), - [aux_sym__val_number_token5] = ACTIONS(5163), - [aux_sym__val_number_token6] = ACTIONS(5163), + [aux_sym__val_number_token4] = ACTIONS(4919), + [aux_sym__val_number_token5] = ACTIONS(4919), + [aux_sym__val_number_token6] = ACTIONS(4919), [anon_sym_0b] = ACTIONS(97), [anon_sym_0o] = ACTIONS(99), [anon_sym_0x] = ACTIONS(99), - [sym_val_date] = ACTIONS(4474), + [sym_val_date] = ACTIONS(3936), [anon_sym_DQUOTE] = ACTIONS(103), [sym__str_single_quotes] = ACTIONS(105), [sym__str_back_ticks] = ACTIONS(105), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(109), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2999), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2924), [anon_sym_POUND] = ACTIONS(3), }, - [1751] = { - [sym_expr_unary] = STATE(6382), - [sym__expr_unary_minus] = STATE(6347), - [sym_expr_binary] = STATE(6382), - [sym__expr_binary_expression] = STATE(6352), - [sym_expr_parenthesized] = STATE(6382), - [sym__val_range] = STATE(10572), - [sym__value] = STATE(6382), - [sym_val_nothing] = STATE(6374), - [sym_val_bool] = STATE(6252), - [sym_val_variable] = STATE(6374), - [sym__var] = STATE(5497), - [sym_val_number] = STATE(6374), - [sym__val_number_decimal] = STATE(4789), - [sym__val_number] = STATE(5769), - [sym_val_duration] = STATE(6374), - [sym_val_filesize] = STATE(6374), - [sym_val_binary] = STATE(6374), - [sym_val_string] = STATE(6374), - [sym__str_double_quotes] = STATE(6386), - [sym_val_interpolated] = STATE(6374), - [sym__inter_single_quotes] = STATE(6363), - [sym__inter_double_quotes] = STATE(6365), - [sym_val_list] = STATE(6374), - [sym_val_record] = STATE(6374), - [sym_val_table] = STATE(6374), - [sym_val_closure] = STATE(6374), - [sym_unquoted] = STATE(6296), - [sym__unquoted_anonymous_prefix] = STATE(11300), - [sym_comment] = STATE(1751), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(5153), - [anon_sym_DOLLAR] = ACTIONS(5155), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_DOT_DOT] = ACTIONS(5157), - [anon_sym_not] = ACTIONS(4456), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5159), - [anon_sym_DOT_DOT_LT] = ACTIONS(5159), - [anon_sym_null] = ACTIONS(4460), - [anon_sym_true] = ACTIONS(4462), - [anon_sym_false] = ACTIONS(4462), - [aux_sym__val_number_decimal_token1] = ACTIONS(4464), - [aux_sym__val_number_decimal_token2] = ACTIONS(4466), - [anon_sym_DOT2] = ACTIONS(5161), - [aux_sym__val_number_decimal_token3] = ACTIONS(4470), - [aux_sym__val_number_token1] = ACTIONS(93), - [aux_sym__val_number_token2] = ACTIONS(93), - [aux_sym__val_number_token3] = ACTIONS(93), - [aux_sym__val_number_token4] = ACTIONS(5163), - [aux_sym__val_number_token5] = ACTIONS(5163), - [aux_sym__val_number_token6] = ACTIONS(5163), - [anon_sym_0b] = ACTIONS(97), - [anon_sym_0o] = ACTIONS(99), - [anon_sym_0x] = ACTIONS(99), - [sym_val_date] = ACTIONS(4474), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym__str_single_quotes] = ACTIONS(105), - [sym__str_back_ticks] = ACTIONS(105), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(109), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2999), + [1950] = { + [sym_comment] = STATE(1950), + [anon_sym_export] = ACTIONS(1233), + [anon_sym_alias] = ACTIONS(1233), + [anon_sym_let] = ACTIONS(1233), + [anon_sym_let_DASHenv] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1233), + [sym_cmd_identifier] = ACTIONS(1233), + [anon_sym_LF] = ACTIONS(1235), + [anon_sym_def] = ACTIONS(1233), + [anon_sym_export_DASHenv] = ACTIONS(1233), + [anon_sym_extern] = ACTIONS(1233), + [anon_sym_module] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(1233), + [anon_sym_RPAREN] = ACTIONS(1233), + [anon_sym_DOLLAR] = ACTIONS(1233), + [anon_sym_error] = ACTIONS(1233), + [anon_sym_DASH_DASH] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_break] = ACTIONS(1233), + [anon_sym_continue] = ACTIONS(1233), + [anon_sym_for] = ACTIONS(1233), + [anon_sym_loop] = ACTIONS(1233), + [anon_sym_while] = ACTIONS(1233), + [anon_sym_do] = ACTIONS(1233), + [anon_sym_if] = ACTIONS(1233), + [anon_sym_match] = ACTIONS(1233), + [anon_sym_LBRACE] = ACTIONS(1233), + [anon_sym_RBRACE] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1233), + [anon_sym_try] = ACTIONS(1233), + [anon_sym_return] = ACTIONS(1233), + [anon_sym_source] = ACTIONS(1233), + [anon_sym_source_DASHenv] = ACTIONS(1233), + [anon_sym_register] = ACTIONS(1233), + [anon_sym_hide] = ACTIONS(1233), + [anon_sym_hide_DASHenv] = ACTIONS(1233), + [anon_sym_overlay] = ACTIONS(1233), + [anon_sym_as] = ACTIONS(1233), + [anon_sym_where] = ACTIONS(1233), + [anon_sym_not] = ACTIONS(1233), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1233), + [anon_sym_DOT_DOT_LT] = ACTIONS(1233), + [anon_sym_null] = ACTIONS(1233), + [anon_sym_true] = ACTIONS(1233), + [anon_sym_false] = ACTIONS(1233), + [aux_sym__val_number_decimal_token1] = ACTIONS(1233), + [aux_sym__val_number_decimal_token2] = ACTIONS(1233), + [anon_sym_DOT2] = ACTIONS(1233), + [aux_sym__val_number_decimal_token3] = ACTIONS(1233), + [aux_sym__val_number_token1] = ACTIONS(1233), + [aux_sym__val_number_token2] = ACTIONS(1233), + [aux_sym__val_number_token3] = ACTIONS(1233), + [aux_sym__val_number_token4] = ACTIONS(1233), + [aux_sym__val_number_token5] = ACTIONS(1233), + [aux_sym__val_number_token6] = ACTIONS(1233), + [anon_sym_0b] = ACTIONS(1233), + [anon_sym_0o] = ACTIONS(1233), + [anon_sym_0x] = ACTIONS(1233), + [sym_val_date] = ACTIONS(1233), + [anon_sym_DQUOTE] = ACTIONS(1233), + [sym__str_single_quotes] = ACTIONS(1233), + [sym__str_back_ticks] = ACTIONS(1233), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1233), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1233), + [anon_sym_CARET] = ACTIONS(1233), + [anon_sym_POUND] = ACTIONS(113), + }, + [1951] = { + [sym__expression] = STATE(7064), + [sym_expr_unary] = STATE(5409), + [sym__expr_unary_minus] = STATE(5410), + [sym_expr_binary] = STATE(5409), + [sym__expr_binary_expression] = STATE(6366), + [sym_expr_parenthesized] = STATE(4635), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5409), + [sym_val_nothing] = STATE(5350), + [sym_val_bool] = STATE(5350), + [sym_val_variable] = STATE(4717), + [sym__var] = STATE(4193), + [sym_val_number] = STATE(5350), + [sym__val_number_decimal] = STATE(4266), + [sym__val_number] = STATE(5351), + [sym_val_duration] = STATE(5350), + [sym_val_filesize] = STATE(5350), + [sym_val_binary] = STATE(5350), + [sym_val_string] = STATE(5350), + [sym__str_double_quotes] = STATE(5502), + [sym_val_interpolated] = STATE(5350), + [sym__inter_single_quotes] = STATE(5420), + [sym__inter_double_quotes] = STATE(5421), + [sym_val_list] = STATE(5350), + [sym_val_record] = STATE(5350), + [sym_val_table] = STATE(5350), + [sym_val_closure] = STATE(5350), + [sym__flag] = STATE(1440), + [sym_short_flag] = STATE(4674), + [sym_long_flag] = STATE(4674), + [sym_long_flag_equals_value] = STATE(4714), + [sym_comment] = STATE(1951), + [anon_sym_SEMI] = ACTIONS(5601), + [anon_sym_LF] = ACTIONS(5603), + [anon_sym_LBRACK] = ACTIONS(4833), + [anon_sym_LPAREN] = ACTIONS(4835), + [anon_sym_RPAREN] = ACTIONS(5601), + [anon_sym_PIPE] = ACTIONS(5601), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_DASH_DASH] = ACTIONS(4875), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4841), + [anon_sym_RBRACE] = ACTIONS(5601), + [anon_sym_DOT_DOT] = ACTIONS(4843), + [anon_sym_not] = ACTIONS(4845), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4847), + [anon_sym_DOT_DOT_LT] = ACTIONS(4847), + [anon_sym_null] = ACTIONS(4849), + [anon_sym_true] = ACTIONS(4851), + [anon_sym_false] = ACTIONS(4851), + [aux_sym__val_number_decimal_token1] = ACTIONS(4853), + [aux_sym__val_number_decimal_token2] = ACTIONS(4853), + [anon_sym_DOT2] = ACTIONS(4855), + [aux_sym__val_number_decimal_token3] = ACTIONS(4857), + [aux_sym__val_number_token1] = ACTIONS(4859), + [aux_sym__val_number_token2] = ACTIONS(4859), + [aux_sym__val_number_token3] = ACTIONS(4859), + [aux_sym__val_number_token4] = ACTIONS(4859), + [aux_sym__val_number_token5] = ACTIONS(4859), + [aux_sym__val_number_token6] = ACTIONS(4859), + [anon_sym_0b] = ACTIONS(3080), + [anon_sym_0o] = ACTIONS(3082), + [anon_sym_0x] = ACTIONS(3082), + [sym_val_date] = ACTIONS(4861), + [anon_sym_DQUOTE] = ACTIONS(4863), + [sym__str_single_quotes] = ACTIONS(4865), + [sym__str_back_ticks] = ACTIONS(4865), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4867), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4869), + [anon_sym_POUND] = ACTIONS(113), + }, + [1952] = { + [sym__expression] = STATE(7064), + [sym_expr_unary] = STATE(5409), + [sym__expr_unary_minus] = STATE(5410), + [sym_expr_binary] = STATE(5409), + [sym__expr_binary_expression] = STATE(6366), + [sym_expr_parenthesized] = STATE(4635), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5409), + [sym_val_nothing] = STATE(5350), + [sym_val_bool] = STATE(5350), + [sym_val_variable] = STATE(4717), + [sym__var] = STATE(4193), + [sym_val_number] = STATE(5350), + [sym__val_number_decimal] = STATE(4266), + [sym__val_number] = STATE(5351), + [sym_val_duration] = STATE(5350), + [sym_val_filesize] = STATE(5350), + [sym_val_binary] = STATE(5350), + [sym_val_string] = STATE(5350), + [sym__str_double_quotes] = STATE(5502), + [sym_val_interpolated] = STATE(5350), + [sym__inter_single_quotes] = STATE(5420), + [sym__inter_double_quotes] = STATE(5421), + [sym_val_list] = STATE(5350), + [sym_val_record] = STATE(5350), + [sym_val_table] = STATE(5350), + [sym_val_closure] = STATE(5350), + [sym__flag] = STATE(1443), + [sym_short_flag] = STATE(4674), + [sym_long_flag] = STATE(4674), + [sym_long_flag_equals_value] = STATE(4714), + [sym_comment] = STATE(1952), + [anon_sym_SEMI] = ACTIONS(5601), + [anon_sym_LF] = ACTIONS(5603), + [anon_sym_LBRACK] = ACTIONS(4833), + [anon_sym_LPAREN] = ACTIONS(4835), + [anon_sym_RPAREN] = ACTIONS(5601), + [anon_sym_PIPE] = ACTIONS(5601), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_DASH_DASH] = ACTIONS(4875), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4841), + [anon_sym_RBRACE] = ACTIONS(5601), + [anon_sym_DOT_DOT] = ACTIONS(4843), + [anon_sym_not] = ACTIONS(4845), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4847), + [anon_sym_DOT_DOT_LT] = ACTIONS(4847), + [anon_sym_null] = ACTIONS(4849), + [anon_sym_true] = ACTIONS(4851), + [anon_sym_false] = ACTIONS(4851), + [aux_sym__val_number_decimal_token1] = ACTIONS(4853), + [aux_sym__val_number_decimal_token2] = ACTIONS(4853), + [anon_sym_DOT2] = ACTIONS(4855), + [aux_sym__val_number_decimal_token3] = ACTIONS(4857), + [aux_sym__val_number_token1] = ACTIONS(4859), + [aux_sym__val_number_token2] = ACTIONS(4859), + [aux_sym__val_number_token3] = ACTIONS(4859), + [aux_sym__val_number_token4] = ACTIONS(4859), + [aux_sym__val_number_token5] = ACTIONS(4859), + [aux_sym__val_number_token6] = ACTIONS(4859), + [anon_sym_0b] = ACTIONS(3080), + [anon_sym_0o] = ACTIONS(3082), + [anon_sym_0x] = ACTIONS(3082), + [sym_val_date] = ACTIONS(4861), + [anon_sym_DQUOTE] = ACTIONS(4863), + [sym__str_single_quotes] = ACTIONS(4865), + [sym__str_back_ticks] = ACTIONS(4865), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4867), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4869), + [anon_sym_POUND] = ACTIONS(113), + }, + [1953] = { + [sym_comment] = STATE(1953), + [ts_builtin_sym_end] = ACTIONS(4773), + [anon_sym_export] = ACTIONS(4771), + [anon_sym_alias] = ACTIONS(4771), + [anon_sym_let] = ACTIONS(4771), + [anon_sym_let_DASHenv] = ACTIONS(4771), + [anon_sym_mut] = ACTIONS(4771), + [anon_sym_const] = ACTIONS(4771), + [anon_sym_SEMI] = ACTIONS(4771), + [sym_cmd_identifier] = ACTIONS(4771), + [anon_sym_LF] = ACTIONS(4773), + [anon_sym_def] = ACTIONS(4771), + [anon_sym_export_DASHenv] = ACTIONS(4771), + [anon_sym_extern] = ACTIONS(4771), + [anon_sym_module] = ACTIONS(4771), + [anon_sym_use] = ACTIONS(4771), + [anon_sym_LBRACK] = ACTIONS(4771), + [anon_sym_LPAREN] = ACTIONS(4771), + [anon_sym_DOLLAR] = ACTIONS(4771), + [anon_sym_error] = ACTIONS(4771), + [anon_sym_DASH_DASH] = ACTIONS(4771), + [anon_sym_DASH] = ACTIONS(4771), + [anon_sym_break] = ACTIONS(4771), + [anon_sym_continue] = ACTIONS(4771), + [anon_sym_for] = ACTIONS(4771), + [anon_sym_loop] = ACTIONS(4771), + [anon_sym_while] = ACTIONS(4771), + [anon_sym_do] = ACTIONS(4771), + [anon_sym_if] = ACTIONS(4771), + [anon_sym_match] = ACTIONS(4771), + [anon_sym_LBRACE] = ACTIONS(4771), + [anon_sym_DOT_DOT] = ACTIONS(4771), + [anon_sym_try] = ACTIONS(4771), + [anon_sym_return] = ACTIONS(4771), + [anon_sym_source] = ACTIONS(4771), + [anon_sym_source_DASHenv] = ACTIONS(4771), + [anon_sym_register] = ACTIONS(4771), + [anon_sym_hide] = ACTIONS(4771), + [anon_sym_hide_DASHenv] = ACTIONS(4771), + [anon_sym_overlay] = ACTIONS(4771), + [anon_sym_as] = ACTIONS(4771), + [anon_sym_where] = ACTIONS(4771), + [anon_sym_not] = ACTIONS(4771), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4771), + [anon_sym_DOT_DOT_LT] = ACTIONS(4771), + [aux_sym__immediate_decimal_token1] = ACTIONS(5605), + [anon_sym_null] = ACTIONS(4771), + [anon_sym_true] = ACTIONS(4771), + [anon_sym_false] = ACTIONS(4771), + [aux_sym__val_number_decimal_token1] = ACTIONS(4771), + [aux_sym__val_number_decimal_token2] = ACTIONS(4771), + [anon_sym_DOT2] = ACTIONS(4771), + [aux_sym__val_number_decimal_token3] = ACTIONS(4771), + [aux_sym__val_number_token1] = ACTIONS(4771), + [aux_sym__val_number_token2] = ACTIONS(4771), + [aux_sym__val_number_token3] = ACTIONS(4771), + [aux_sym__val_number_token4] = ACTIONS(4771), + [aux_sym__val_number_token5] = ACTIONS(4771), + [aux_sym__val_number_token6] = ACTIONS(4771), + [anon_sym_0b] = ACTIONS(4771), + [anon_sym_0o] = ACTIONS(4771), + [anon_sym_0x] = ACTIONS(4771), + [sym_val_date] = ACTIONS(4771), + [anon_sym_DQUOTE] = ACTIONS(4771), + [sym__str_single_quotes] = ACTIONS(4771), + [sym__str_back_ticks] = ACTIONS(4771), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4771), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4771), + [anon_sym_CARET] = ACTIONS(4771), + [anon_sym_POUND] = ACTIONS(113), + }, + [1954] = { + [sym_comment] = STATE(1954), + [anon_sym_export] = ACTIONS(920), + [anon_sym_alias] = ACTIONS(920), + [anon_sym_let] = ACTIONS(920), + [anon_sym_let_DASHenv] = ACTIONS(920), + [anon_sym_mut] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(920), + [sym_cmd_identifier] = ACTIONS(920), + [anon_sym_LF] = ACTIONS(922), + [anon_sym_def] = ACTIONS(920), + [anon_sym_export_DASHenv] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym_module] = ACTIONS(920), + [anon_sym_use] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_RPAREN] = ACTIONS(920), + [anon_sym_PIPE] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_error] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_loop] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_match] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_RBRACE] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_try] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_source] = ACTIONS(920), + [anon_sym_source_DASHenv] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_hide] = ACTIONS(920), + [anon_sym_hide_DASHenv] = ACTIONS(920), + [anon_sym_overlay] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_where] = ACTIONS(920), + [anon_sym_not] = ACTIONS(920), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [anon_sym_null] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), + [anon_sym_CARET] = ACTIONS(920), + [anon_sym_POUND] = ACTIONS(113), + }, + [1955] = { + [sym__expression] = STATE(7064), + [sym_expr_unary] = STATE(5409), + [sym__expr_unary_minus] = STATE(5410), + [sym_expr_binary] = STATE(5409), + [sym__expr_binary_expression] = STATE(6366), + [sym_expr_parenthesized] = STATE(4635), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5409), + [sym_val_nothing] = STATE(5350), + [sym_val_bool] = STATE(5350), + [sym_val_variable] = STATE(4717), + [sym__var] = STATE(4193), + [sym_val_number] = STATE(5350), + [sym__val_number_decimal] = STATE(4266), + [sym__val_number] = STATE(5351), + [sym_val_duration] = STATE(5350), + [sym_val_filesize] = STATE(5350), + [sym_val_binary] = STATE(5350), + [sym_val_string] = STATE(5350), + [sym__str_double_quotes] = STATE(5502), + [sym_val_interpolated] = STATE(5350), + [sym__inter_single_quotes] = STATE(5420), + [sym__inter_double_quotes] = STATE(5421), + [sym_val_list] = STATE(5350), + [sym_val_record] = STATE(5350), + [sym_val_table] = STATE(5350), + [sym_val_closure] = STATE(5350), + [sym__flag] = STATE(1445), + [sym_short_flag] = STATE(4674), + [sym_long_flag] = STATE(4674), + [sym_long_flag_equals_value] = STATE(4714), + [sym_comment] = STATE(1955), + [anon_sym_SEMI] = ACTIONS(5601), + [anon_sym_LF] = ACTIONS(5603), + [anon_sym_LBRACK] = ACTIONS(4833), + [anon_sym_LPAREN] = ACTIONS(4835), + [anon_sym_RPAREN] = ACTIONS(5601), + [anon_sym_PIPE] = ACTIONS(5601), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_DASH_DASH] = ACTIONS(4875), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4841), + [anon_sym_RBRACE] = ACTIONS(5601), + [anon_sym_DOT_DOT] = ACTIONS(4843), + [anon_sym_not] = ACTIONS(4845), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4847), + [anon_sym_DOT_DOT_LT] = ACTIONS(4847), + [anon_sym_null] = ACTIONS(4849), + [anon_sym_true] = ACTIONS(4851), + [anon_sym_false] = ACTIONS(4851), + [aux_sym__val_number_decimal_token1] = ACTIONS(4853), + [aux_sym__val_number_decimal_token2] = ACTIONS(4853), + [anon_sym_DOT2] = ACTIONS(4855), + [aux_sym__val_number_decimal_token3] = ACTIONS(4857), + [aux_sym__val_number_token1] = ACTIONS(4859), + [aux_sym__val_number_token2] = ACTIONS(4859), + [aux_sym__val_number_token3] = ACTIONS(4859), + [aux_sym__val_number_token4] = ACTIONS(4859), + [aux_sym__val_number_token5] = ACTIONS(4859), + [aux_sym__val_number_token6] = ACTIONS(4859), + [anon_sym_0b] = ACTIONS(3080), + [anon_sym_0o] = ACTIONS(3082), + [anon_sym_0x] = ACTIONS(3082), + [sym_val_date] = ACTIONS(4861), + [anon_sym_DQUOTE] = ACTIONS(4863), + [sym__str_single_quotes] = ACTIONS(4865), + [sym__str_back_ticks] = ACTIONS(4865), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4867), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4869), + [anon_sym_POUND] = ACTIONS(113), + }, + [1956] = { + [sym_expr_unary] = STATE(6059), + [sym__expr_unary_minus] = STATE(6045), + [sym_expr_binary] = STATE(6059), + [sym__expr_binary_expression] = STATE(6060), + [sym_expr_parenthesized] = STATE(6059), + [sym__val_range] = STATE(10109), + [sym__value] = STATE(6059), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(5958), + [sym_val_variable] = STATE(6041), + [sym__var] = STATE(5406), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(4495), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(6041), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_unquoted] = STATE(6061), + [sym__unquoted_anonymous_prefix] = STATE(10819), + [sym_comment] = STATE(1956), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(4791), + [anon_sym_DOLLAR] = ACTIONS(4793), + [anon_sym_DASH] = ACTIONS(4094), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(4795), + [anon_sym_not] = ACTIONS(4098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4797), + [anon_sym_DOT_DOT_LT] = ACTIONS(4797), + [anon_sym_null] = ACTIONS(4102), + [anon_sym_true] = ACTIONS(4104), + [anon_sym_false] = ACTIONS(4104), + [aux_sym__val_number_decimal_token1] = ACTIONS(4106), + [aux_sym__val_number_decimal_token2] = ACTIONS(4108), + [anon_sym_DOT2] = ACTIONS(4799), + [aux_sym__val_number_decimal_token3] = ACTIONS(4112), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [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(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(4116), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2950), [anon_sym_POUND] = ACTIONS(3), }, - [1752] = { - [sym_expr_unary] = STATE(6382), - [sym__expr_unary_minus] = STATE(6347), - [sym_expr_binary] = STATE(6382), - [sym__expr_binary_expression] = STATE(6298), - [sym_expr_parenthesized] = STATE(6382), - [sym__val_range] = STATE(10572), - [sym__value] = STATE(6382), - [sym_val_nothing] = STATE(6374), - [sym_val_bool] = STATE(6252), - [sym_val_variable] = STATE(6374), - [sym__var] = STATE(5497), - [sym_val_number] = STATE(6374), - [sym__val_number_decimal] = STATE(4789), - [sym__val_number] = STATE(5769), - [sym_val_duration] = STATE(6374), - [sym_val_filesize] = STATE(6374), - [sym_val_binary] = STATE(6374), - [sym_val_string] = STATE(6374), - [sym__str_double_quotes] = STATE(6386), - [sym_val_interpolated] = STATE(6374), - [sym__inter_single_quotes] = STATE(6363), - [sym__inter_double_quotes] = STATE(6365), - [sym_val_list] = STATE(6374), - [sym_val_record] = STATE(6374), - [sym_val_table] = STATE(6374), - [sym_val_closure] = STATE(6374), - [sym_unquoted] = STATE(6300), - [sym__unquoted_anonymous_prefix] = STATE(11300), - [sym_comment] = STATE(1752), + [1957] = { + [sym_expr_unary] = STATE(6059), + [sym__expr_unary_minus] = STATE(6045), + [sym_expr_binary] = STATE(6059), + [sym__expr_binary_expression] = STATE(6062), + [sym_expr_parenthesized] = STATE(6059), + [sym__val_range] = STATE(10109), + [sym__value] = STATE(6059), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(5958), + [sym_val_variable] = STATE(6041), + [sym__var] = STATE(5406), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(4495), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(6041), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_unquoted] = STATE(6063), + [sym__unquoted_anonymous_prefix] = STATE(10819), + [sym_comment] = STATE(1957), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(4791), + [anon_sym_DOLLAR] = ACTIONS(4793), + [anon_sym_DASH] = ACTIONS(4094), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(4795), + [anon_sym_not] = ACTIONS(4098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4797), + [anon_sym_DOT_DOT_LT] = ACTIONS(4797), + [anon_sym_null] = ACTIONS(4102), + [anon_sym_true] = ACTIONS(4104), + [anon_sym_false] = ACTIONS(4104), + [aux_sym__val_number_decimal_token1] = ACTIONS(4106), + [aux_sym__val_number_decimal_token2] = ACTIONS(4108), + [anon_sym_DOT2] = ACTIONS(4799), + [aux_sym__val_number_decimal_token3] = ACTIONS(4112), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [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(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(4116), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2950), + [anon_sym_POUND] = ACTIONS(3), + }, + [1958] = { + [sym_expr_unary] = STATE(6059), + [sym__expr_unary_minus] = STATE(6045), + [sym_expr_binary] = STATE(6059), + [sym__expr_binary_expression] = STATE(6064), + [sym_expr_parenthesized] = STATE(6059), + [sym__val_range] = STATE(10109), + [sym__value] = STATE(6059), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(5958), + [sym_val_variable] = STATE(6041), + [sym__var] = STATE(5406), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(4495), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(6041), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_unquoted] = STATE(6065), + [sym__unquoted_anonymous_prefix] = STATE(10819), + [sym_comment] = STATE(1958), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(4791), + [anon_sym_DOLLAR] = ACTIONS(4793), + [anon_sym_DASH] = ACTIONS(4094), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(4795), + [anon_sym_not] = ACTIONS(4098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4797), + [anon_sym_DOT_DOT_LT] = ACTIONS(4797), + [anon_sym_null] = ACTIONS(4102), + [anon_sym_true] = ACTIONS(4104), + [anon_sym_false] = ACTIONS(4104), + [aux_sym__val_number_decimal_token1] = ACTIONS(4106), + [aux_sym__val_number_decimal_token2] = ACTIONS(4108), + [anon_sym_DOT2] = ACTIONS(4799), + [aux_sym__val_number_decimal_token3] = ACTIONS(4112), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [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(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(4116), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2950), + [anon_sym_POUND] = ACTIONS(3), + }, + [1959] = { + [sym_expr_unary] = STATE(5879), + [sym__expr_unary_minus] = STATE(5878), + [sym_expr_binary] = STATE(5879), + [sym__expr_binary_expression] = STATE(5930), + [sym_expr_parenthesized] = STATE(5879), + [sym__val_range] = STATE(10069), + [sym__value] = STATE(5879), + [sym_val_nothing] = STATE(5931), + [sym_val_bool] = STATE(5739), + [sym_val_variable] = STATE(5931), + [sym__var] = STATE(5079), + [sym_val_number] = STATE(5931), + [sym__val_number_decimal] = STATE(4336), + [sym__val_number] = STATE(5285), + [sym_val_duration] = STATE(5931), + [sym_val_filesize] = STATE(5931), + [sym_val_binary] = STATE(5931), + [sym_val_string] = STATE(5931), + [sym__str_double_quotes] = STATE(5888), + [sym_val_interpolated] = STATE(5931), + [sym__inter_single_quotes] = STATE(5935), + [sym__inter_double_quotes] = STATE(5940), + [sym_val_list] = STATE(5931), + [sym_val_record] = STATE(5931), + [sym_val_table] = STATE(5931), + [sym_val_closure] = STATE(5931), + [sym_unquoted] = STATE(5963), + [sym__unquoted_anonymous_prefix] = STATE(10402), + [sym_comment] = STATE(1959), [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(5153), - [anon_sym_DOLLAR] = ACTIONS(5155), + [anon_sym_LPAREN] = ACTIONS(4909), + [anon_sym_DOLLAR] = ACTIONS(4911), [anon_sym_DASH] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_DOT_DOT] = ACTIONS(5157), - [anon_sym_not] = ACTIONS(4456), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5159), - [anon_sym_DOT_DOT_LT] = ACTIONS(5159), - [anon_sym_null] = ACTIONS(4460), - [anon_sym_true] = ACTIONS(4462), - [anon_sym_false] = ACTIONS(4462), - [aux_sym__val_number_decimal_token1] = ACTIONS(4464), - [aux_sym__val_number_decimal_token2] = ACTIONS(4466), - [anon_sym_DOT2] = ACTIONS(5161), - [aux_sym__val_number_decimal_token3] = ACTIONS(4470), + [anon_sym_DOT_DOT] = ACTIONS(4913), + [anon_sym_not] = ACTIONS(3918), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4915), + [anon_sym_DOT_DOT_LT] = ACTIONS(4915), + [anon_sym_null] = ACTIONS(3922), + [anon_sym_true] = ACTIONS(3924), + [anon_sym_false] = ACTIONS(3924), + [aux_sym__val_number_decimal_token1] = ACTIONS(3926), + [aux_sym__val_number_decimal_token2] = ACTIONS(3928), + [anon_sym_DOT2] = ACTIONS(4917), + [aux_sym__val_number_decimal_token3] = ACTIONS(3932), [aux_sym__val_number_token1] = ACTIONS(93), [aux_sym__val_number_token2] = ACTIONS(93), [aux_sym__val_number_token3] = ACTIONS(93), - [aux_sym__val_number_token4] = ACTIONS(5163), - [aux_sym__val_number_token5] = ACTIONS(5163), - [aux_sym__val_number_token6] = ACTIONS(5163), + [aux_sym__val_number_token4] = ACTIONS(4919), + [aux_sym__val_number_token5] = ACTIONS(4919), + [aux_sym__val_number_token6] = ACTIONS(4919), [anon_sym_0b] = ACTIONS(97), [anon_sym_0o] = ACTIONS(99), [anon_sym_0x] = ACTIONS(99), - [sym_val_date] = ACTIONS(4474), + [sym_val_date] = ACTIONS(3936), [anon_sym_DQUOTE] = ACTIONS(103), [sym__str_single_quotes] = ACTIONS(105), [sym__str_back_ticks] = ACTIONS(105), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(109), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2999), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2924), [anon_sym_POUND] = ACTIONS(3), }, - [1753] = { - [sym_comment] = STATE(1753), - [ts_builtin_sym_end] = ACTIONS(3962), - [anon_sym_export] = ACTIONS(3960), - [anon_sym_alias] = ACTIONS(3960), - [anon_sym_let] = ACTIONS(3960), - [anon_sym_let_DASHenv] = ACTIONS(3960), - [anon_sym_mut] = ACTIONS(3960), - [anon_sym_const] = ACTIONS(3960), - [anon_sym_SEMI] = ACTIONS(3960), - [sym_cmd_identifier] = ACTIONS(3960), - [anon_sym_LF] = ACTIONS(3962), - [anon_sym_def] = ACTIONS(3960), - [anon_sym_export_DASHenv] = ACTIONS(3960), - [anon_sym_extern] = ACTIONS(3960), - [anon_sym_module] = ACTIONS(3960), - [anon_sym_use] = ACTIONS(3960), - [anon_sym_LBRACK] = ACTIONS(3960), - [anon_sym_LPAREN] = ACTIONS(3960), - [anon_sym_DOLLAR] = ACTIONS(3960), - [anon_sym_error] = ACTIONS(3960), - [anon_sym_DASH] = ACTIONS(3960), - [anon_sym_break] = ACTIONS(3960), - [anon_sym_continue] = ACTIONS(3960), - [anon_sym_for] = ACTIONS(3960), - [anon_sym_loop] = ACTIONS(3960), - [anon_sym_while] = ACTIONS(3960), - [anon_sym_do] = ACTIONS(3960), - [anon_sym_if] = ACTIONS(3960), - [anon_sym_match] = ACTIONS(3960), - [anon_sym_LBRACE] = ACTIONS(3960), - [anon_sym_DOT_DOT] = ACTIONS(3960), - [anon_sym_try] = ACTIONS(3960), - [anon_sym_return] = ACTIONS(3960), - [anon_sym_source] = ACTIONS(3960), - [anon_sym_source_DASHenv] = ACTIONS(3960), - [anon_sym_register] = ACTIONS(3960), - [anon_sym_hide] = ACTIONS(3960), - [anon_sym_hide_DASHenv] = ACTIONS(3960), - [anon_sym_overlay] = ACTIONS(3960), - [anon_sym_where] = ACTIONS(3960), - [anon_sym_not] = ACTIONS(3960), - [anon_sym_DOT_DOT2] = ACTIONS(3960), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3960), - [anon_sym_DOT_DOT_LT] = ACTIONS(3960), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3962), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3962), - [anon_sym_null] = ACTIONS(3960), - [anon_sym_true] = ACTIONS(3960), - [anon_sym_false] = ACTIONS(3960), - [aux_sym__val_number_decimal_token1] = ACTIONS(3960), - [aux_sym__val_number_decimal_token2] = ACTIONS(3960), - [anon_sym_DOT2] = ACTIONS(3960), - [aux_sym__val_number_decimal_token3] = ACTIONS(3960), - [aux_sym__val_number_token1] = ACTIONS(3960), - [aux_sym__val_number_token2] = ACTIONS(3960), - [aux_sym__val_number_token3] = ACTIONS(3960), - [aux_sym__val_number_token4] = ACTIONS(3960), - [aux_sym__val_number_token5] = ACTIONS(3960), - [aux_sym__val_number_token6] = ACTIONS(3960), - [anon_sym_0b] = ACTIONS(3960), - [anon_sym_0o] = ACTIONS(3960), - [anon_sym_0x] = ACTIONS(3960), - [sym_val_date] = ACTIONS(3960), - [anon_sym_DQUOTE] = ACTIONS(3960), - [sym__str_single_quotes] = ACTIONS(3960), - [sym__str_back_ticks] = ACTIONS(3960), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3960), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3960), - [anon_sym_CARET] = ACTIONS(3960), + [1960] = { + [sym_comment] = STATE(1960), + [anon_sym_export] = ACTIONS(920), + [anon_sym_alias] = ACTIONS(920), + [anon_sym_let] = ACTIONS(920), + [anon_sym_let_DASHenv] = ACTIONS(920), + [anon_sym_mut] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(920), + [sym_cmd_identifier] = ACTIONS(920), + [anon_sym_LF] = ACTIONS(922), + [anon_sym_def] = ACTIONS(920), + [anon_sym_export_DASHenv] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym_module] = ACTIONS(920), + [anon_sym_use] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_RPAREN] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_error] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_loop] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_match] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_RBRACE] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_try] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_source] = ACTIONS(920), + [anon_sym_source_DASHenv] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_hide] = ACTIONS(920), + [anon_sym_hide_DASHenv] = ACTIONS(920), + [anon_sym_overlay] = ACTIONS(920), + [anon_sym_as] = ACTIONS(920), + [anon_sym_where] = ACTIONS(920), + [anon_sym_not] = ACTIONS(920), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [anon_sym_null] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), + [anon_sym_CARET] = ACTIONS(920), [anon_sym_POUND] = ACTIONS(113), }, - [1754] = { - [sym_expr_unary] = STATE(6382), - [sym__expr_unary_minus] = STATE(6347), - [sym_expr_binary] = STATE(6382), - [sym__expr_binary_expression] = STATE(6305), - [sym_expr_parenthesized] = STATE(6382), - [sym__val_range] = STATE(10572), - [sym__value] = STATE(6382), - [sym_val_nothing] = STATE(6374), - [sym_val_bool] = STATE(6252), - [sym_val_variable] = STATE(6374), - [sym__var] = STATE(5497), - [sym_val_number] = STATE(6374), - [sym__val_number_decimal] = STATE(4789), - [sym__val_number] = STATE(5769), - [sym_val_duration] = STATE(6374), - [sym_val_filesize] = STATE(6374), - [sym_val_binary] = STATE(6374), - [sym_val_string] = STATE(6374), - [sym__str_double_quotes] = STATE(6386), - [sym_val_interpolated] = STATE(6374), - [sym__inter_single_quotes] = STATE(6363), - [sym__inter_double_quotes] = STATE(6365), - [sym_val_list] = STATE(6374), - [sym_val_record] = STATE(6374), - [sym_val_table] = STATE(6374), - [sym_val_closure] = STATE(6374), - [sym_unquoted] = STATE(6306), - [sym__unquoted_anonymous_prefix] = STATE(11300), - [sym_comment] = STATE(1754), + [1961] = { + [sym_comment] = STATE(1961), + [anon_sym_LBRACK] = ACTIONS(938), + [anon_sym_COMMA] = ACTIONS(938), + [anon_sym_RBRACK] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(938), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_in] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_STAR_STAR] = ACTIONS(938), + [anon_sym_PLUS_PLUS] = ACTIONS(938), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(938), + [anon_sym_SLASH_SLASH] = ACTIONS(938), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_bit_DASHshl] = ACTIONS(938), + [anon_sym_bit_DASHshr] = ACTIONS(938), + [anon_sym_EQ_EQ] = ACTIONS(938), + [anon_sym_BANG_EQ] = ACTIONS(938), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(938), + [anon_sym_GT_EQ] = ACTIONS(938), + [anon_sym_not_DASHin] = ACTIONS(938), + [anon_sym_starts_DASHwith] = ACTIONS(938), + [anon_sym_ends_DASHwith] = ACTIONS(938), + [anon_sym_EQ_TILDE] = ACTIONS(938), + [anon_sym_BANG_TILDE] = ACTIONS(938), + [anon_sym_bit_DASHand] = ACTIONS(938), + [anon_sym_bit_DASHxor] = ACTIONS(938), + [anon_sym_bit_DASHor] = ACTIONS(938), + [anon_sym_and] = ACTIONS(938), + [anon_sym_xor] = ACTIONS(938), + [anon_sym_or] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ] = ACTIONS(938), + [anon_sym_DOT_DOT_LT] = ACTIONS(938), + [anon_sym_null] = ACTIONS(938), + [anon_sym_true] = ACTIONS(938), + [anon_sym_false] = ACTIONS(938), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(938), + [anon_sym_DOT2] = ACTIONS(938), + [aux_sym__val_number_decimal_token3] = ACTIONS(938), + [aux_sym__val_number_token1] = ACTIONS(938), + [aux_sym__val_number_token2] = ACTIONS(938), + [aux_sym__val_number_token3] = ACTIONS(938), + [aux_sym__val_number_token4] = ACTIONS(938), + [aux_sym__val_number_token5] = ACTIONS(938), + [aux_sym__val_number_token6] = ACTIONS(938), + [anon_sym_0b] = ACTIONS(938), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym__str_single_quotes] = ACTIONS(938), + [sym__str_back_ticks] = ACTIONS(938), + [sym__entry_separator] = ACTIONS(940), + [anon_sym_err_GT] = ACTIONS(938), + [anon_sym_out_GT] = ACTIONS(938), + [anon_sym_e_GT] = ACTIONS(938), + [anon_sym_o_GT] = ACTIONS(938), + [anon_sym_err_PLUSout_GT] = ACTIONS(938), + [anon_sym_out_PLUSerr_GT] = ACTIONS(938), + [anon_sym_o_PLUSe_GT] = ACTIONS(938), + [anon_sym_e_PLUSo_GT] = ACTIONS(938), + [aux_sym__unquoted_in_list_token1] = ACTIONS(938), + [anon_sym_POUND] = ACTIONS(113), + }, + [1962] = { + [sym_expr_unary] = STATE(6059), + [sym__expr_unary_minus] = STATE(6045), + [sym_expr_binary] = STATE(6059), + [sym__expr_binary_expression] = STATE(6066), + [sym_expr_parenthesized] = STATE(6059), + [sym__val_range] = STATE(10109), + [sym__value] = STATE(6059), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(5958), + [sym_val_variable] = STATE(6041), + [sym__var] = STATE(5406), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(4495), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(6041), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_unquoted] = STATE(6067), + [sym__unquoted_anonymous_prefix] = STATE(10819), + [sym_comment] = STATE(1962), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(4791), + [anon_sym_DOLLAR] = ACTIONS(4793), + [anon_sym_DASH] = ACTIONS(4094), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(4795), + [anon_sym_not] = ACTIONS(4098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4797), + [anon_sym_DOT_DOT_LT] = ACTIONS(4797), + [anon_sym_null] = ACTIONS(4102), + [anon_sym_true] = ACTIONS(4104), + [anon_sym_false] = ACTIONS(4104), + [aux_sym__val_number_decimal_token1] = ACTIONS(4106), + [aux_sym__val_number_decimal_token2] = ACTIONS(4108), + [anon_sym_DOT2] = ACTIONS(4799), + [aux_sym__val_number_decimal_token3] = ACTIONS(4112), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [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(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(4116), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2950), + [anon_sym_POUND] = ACTIONS(3), + }, + [1963] = { + [sym_expr_unary] = STATE(5879), + [sym__expr_unary_minus] = STATE(5878), + [sym_expr_binary] = STATE(5879), + [sym__expr_binary_expression] = STATE(5982), + [sym_expr_parenthesized] = STATE(5879), + [sym__val_range] = STATE(10069), + [sym__value] = STATE(5879), + [sym_val_nothing] = STATE(5931), + [sym_val_bool] = STATE(5739), + [sym_val_variable] = STATE(5931), + [sym__var] = STATE(5079), + [sym_val_number] = STATE(5931), + [sym__val_number_decimal] = STATE(4336), + [sym__val_number] = STATE(5285), + [sym_val_duration] = STATE(5931), + [sym_val_filesize] = STATE(5931), + [sym_val_binary] = STATE(5931), + [sym_val_string] = STATE(5931), + [sym__str_double_quotes] = STATE(5888), + [sym_val_interpolated] = STATE(5931), + [sym__inter_single_quotes] = STATE(5935), + [sym__inter_double_quotes] = STATE(5940), + [sym_val_list] = STATE(5931), + [sym_val_record] = STATE(5931), + [sym_val_table] = STATE(5931), + [sym_val_closure] = STATE(5931), + [sym_unquoted] = STATE(5924), + [sym__unquoted_anonymous_prefix] = STATE(10402), + [sym_comment] = STATE(1963), [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(5153), - [anon_sym_DOLLAR] = ACTIONS(5155), + [anon_sym_LPAREN] = ACTIONS(4909), + [anon_sym_DOLLAR] = ACTIONS(4911), [anon_sym_DASH] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_DOT_DOT] = ACTIONS(5157), - [anon_sym_not] = ACTIONS(4456), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5159), - [anon_sym_DOT_DOT_LT] = ACTIONS(5159), - [anon_sym_null] = ACTIONS(4460), - [anon_sym_true] = ACTIONS(4462), - [anon_sym_false] = ACTIONS(4462), - [aux_sym__val_number_decimal_token1] = ACTIONS(4464), - [aux_sym__val_number_decimal_token2] = ACTIONS(4466), - [anon_sym_DOT2] = ACTIONS(5161), - [aux_sym__val_number_decimal_token3] = ACTIONS(4470), + [anon_sym_DOT_DOT] = ACTIONS(4913), + [anon_sym_not] = ACTIONS(3918), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4915), + [anon_sym_DOT_DOT_LT] = ACTIONS(4915), + [anon_sym_null] = ACTIONS(3922), + [anon_sym_true] = ACTIONS(3924), + [anon_sym_false] = ACTIONS(3924), + [aux_sym__val_number_decimal_token1] = ACTIONS(3926), + [aux_sym__val_number_decimal_token2] = ACTIONS(3928), + [anon_sym_DOT2] = ACTIONS(4917), + [aux_sym__val_number_decimal_token3] = ACTIONS(3932), [aux_sym__val_number_token1] = ACTIONS(93), [aux_sym__val_number_token2] = ACTIONS(93), [aux_sym__val_number_token3] = ACTIONS(93), - [aux_sym__val_number_token4] = ACTIONS(5163), - [aux_sym__val_number_token5] = ACTIONS(5163), - [aux_sym__val_number_token6] = ACTIONS(5163), + [aux_sym__val_number_token4] = ACTIONS(4919), + [aux_sym__val_number_token5] = ACTIONS(4919), + [aux_sym__val_number_token6] = ACTIONS(4919), [anon_sym_0b] = ACTIONS(97), [anon_sym_0o] = ACTIONS(99), [anon_sym_0x] = ACTIONS(99), - [sym_val_date] = ACTIONS(4474), + [sym_val_date] = ACTIONS(3936), [anon_sym_DQUOTE] = ACTIONS(103), [sym__str_single_quotes] = ACTIONS(105), [sym__str_back_ticks] = ACTIONS(105), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(109), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2999), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2924), [anon_sym_POUND] = ACTIONS(3), }, - [1755] = { - [sym_expr_unary] = STATE(6382), - [sym__expr_unary_minus] = STATE(6347), - [sym_expr_binary] = STATE(6382), - [sym__expr_binary_expression] = STATE(6307), - [sym_expr_parenthesized] = STATE(6382), - [sym__val_range] = STATE(10572), - [sym__value] = STATE(6382), - [sym_val_nothing] = STATE(6374), - [sym_val_bool] = STATE(6252), - [sym_val_variable] = STATE(6374), - [sym__var] = STATE(5497), - [sym_val_number] = STATE(6374), - [sym__val_number_decimal] = STATE(4789), - [sym__val_number] = STATE(5769), - [sym_val_duration] = STATE(6374), - [sym_val_filesize] = STATE(6374), - [sym_val_binary] = STATE(6374), - [sym_val_string] = STATE(6374), - [sym__str_double_quotes] = STATE(6386), - [sym_val_interpolated] = STATE(6374), - [sym__inter_single_quotes] = STATE(6363), - [sym__inter_double_quotes] = STATE(6365), - [sym_val_list] = STATE(6374), - [sym_val_record] = STATE(6374), - [sym_val_table] = STATE(6374), - [sym_val_closure] = STATE(6374), - [sym_unquoted] = STATE(6308), - [sym__unquoted_anonymous_prefix] = STATE(11300), - [sym_comment] = STATE(1755), + [1964] = { + [sym_expr_unary] = STATE(6059), + [sym__expr_unary_minus] = STATE(6045), + [sym_expr_binary] = STATE(6059), + [sym__expr_binary_expression] = STATE(6068), + [sym_expr_parenthesized] = STATE(6059), + [sym__val_range] = STATE(10109), + [sym__value] = STATE(6059), + [sym_val_nothing] = STATE(6041), + [sym_val_bool] = STATE(5958), + [sym_val_variable] = STATE(6041), + [sym__var] = STATE(5406), + [sym_val_number] = STATE(6041), + [sym__val_number_decimal] = STATE(4495), + [sym__val_number] = STATE(6109), + [sym_val_duration] = STATE(6041), + [sym_val_filesize] = STATE(6041), + [sym_val_binary] = STATE(6041), + [sym_val_string] = STATE(6041), + [sym__str_double_quotes] = STATE(6178), + [sym_val_interpolated] = STATE(6041), + [sym__inter_single_quotes] = STATE(6008), + [sym__inter_double_quotes] = STATE(6015), + [sym_val_list] = STATE(6041), + [sym_val_record] = STATE(6041), + [sym_val_table] = STATE(6041), + [sym_val_closure] = STATE(6041), + [sym_unquoted] = STATE(6069), + [sym__unquoted_anonymous_prefix] = STATE(10819), + [sym_comment] = STATE(1964), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(4791), + [anon_sym_DOLLAR] = ACTIONS(4793), + [anon_sym_DASH] = ACTIONS(4094), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(4795), + [anon_sym_not] = ACTIONS(4098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4797), + [anon_sym_DOT_DOT_LT] = ACTIONS(4797), + [anon_sym_null] = ACTIONS(4102), + [anon_sym_true] = ACTIONS(4104), + [anon_sym_false] = ACTIONS(4104), + [aux_sym__val_number_decimal_token1] = ACTIONS(4106), + [aux_sym__val_number_decimal_token2] = ACTIONS(4108), + [anon_sym_DOT2] = ACTIONS(4799), + [aux_sym__val_number_decimal_token3] = ACTIONS(4112), + [aux_sym__val_number_token1] = ACTIONS(1748), + [aux_sym__val_number_token2] = ACTIONS(1748), + [aux_sym__val_number_token3] = ACTIONS(1748), + [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(1752), + [anon_sym_0o] = ACTIONS(1754), + [anon_sym_0x] = ACTIONS(1754), + [sym_val_date] = ACTIONS(4116), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1495), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2950), + [anon_sym_POUND] = ACTIONS(3), + }, + [1965] = { + [sym_comment] = STATE(1965), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_COMMA] = ACTIONS(1089), + [anon_sym_RBRACK] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1089), + [anon_sym_GT] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_DASH] = ACTIONS(1089), + [anon_sym_in] = ACTIONS(1089), + [anon_sym_LBRACE] = ACTIONS(1089), + [anon_sym_DOT_DOT] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_STAR_STAR] = ACTIONS(1089), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_SLASH] = ACTIONS(1089), + [anon_sym_mod] = ACTIONS(1089), + [anon_sym_SLASH_SLASH] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1089), + [anon_sym_bit_DASHshl] = ACTIONS(1089), + [anon_sym_bit_DASHshr] = ACTIONS(1089), + [anon_sym_EQ_EQ] = ACTIONS(1089), + [anon_sym_BANG_EQ] = ACTIONS(1089), + [anon_sym_LT2] = ACTIONS(1089), + [anon_sym_LT_EQ] = ACTIONS(1089), + [anon_sym_GT_EQ] = ACTIONS(1089), + [anon_sym_not_DASHin] = ACTIONS(1089), + [anon_sym_starts_DASHwith] = ACTIONS(1089), + [anon_sym_ends_DASHwith] = ACTIONS(1089), + [anon_sym_EQ_TILDE] = ACTIONS(1089), + [anon_sym_BANG_TILDE] = ACTIONS(1089), + [anon_sym_bit_DASHand] = ACTIONS(1089), + [anon_sym_bit_DASHxor] = ACTIONS(1089), + [anon_sym_bit_DASHor] = ACTIONS(1089), + [anon_sym_and] = ACTIONS(1089), + [anon_sym_xor] = ACTIONS(1089), + [anon_sym_or] = ACTIONS(1089), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_DOT_DOT_LT] = ACTIONS(1089), + [anon_sym_null] = ACTIONS(1089), + [anon_sym_true] = ACTIONS(1089), + [anon_sym_false] = ACTIONS(1089), + [aux_sym__val_number_decimal_token1] = ACTIONS(1089), + [aux_sym__val_number_decimal_token2] = ACTIONS(1089), + [anon_sym_DOT2] = ACTIONS(1089), + [aux_sym__val_number_decimal_token3] = ACTIONS(1089), + [aux_sym__val_number_token1] = ACTIONS(1089), + [aux_sym__val_number_token2] = ACTIONS(1089), + [aux_sym__val_number_token3] = ACTIONS(1089), + [aux_sym__val_number_token4] = ACTIONS(1089), + [aux_sym__val_number_token5] = ACTIONS(1089), + [aux_sym__val_number_token6] = ACTIONS(1089), + [anon_sym_0b] = ACTIONS(1089), + [anon_sym_0o] = ACTIONS(1089), + [anon_sym_0x] = ACTIONS(1089), + [sym_val_date] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1089), + [sym__str_single_quotes] = ACTIONS(1089), + [sym__str_back_ticks] = ACTIONS(1089), + [sym__entry_separator] = ACTIONS(1091), + [anon_sym_err_GT] = ACTIONS(1089), + [anon_sym_out_GT] = ACTIONS(1089), + [anon_sym_e_GT] = ACTIONS(1089), + [anon_sym_o_GT] = ACTIONS(1089), + [anon_sym_err_PLUSout_GT] = ACTIONS(1089), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1089), + [anon_sym_o_PLUSe_GT] = ACTIONS(1089), + [anon_sym_e_PLUSo_GT] = ACTIONS(1089), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1089), + [anon_sym_POUND] = ACTIONS(113), + }, + [1966] = { + [sym_comment] = STATE(1966), + [anon_sym_LBRACK] = ACTIONS(1229), + [anon_sym_COMMA] = ACTIONS(1229), + [anon_sym_RBRACK] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_DOLLAR] = ACTIONS(1229), + [anon_sym_GT] = ACTIONS(1229), + [anon_sym_DASH_DASH] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_in] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1229), + [anon_sym_DOT_DOT] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1229), + [anon_sym_STAR_STAR] = ACTIONS(1229), + [anon_sym_PLUS_PLUS] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1229), + [anon_sym_mod] = ACTIONS(1229), + [anon_sym_SLASH_SLASH] = ACTIONS(1229), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_bit_DASHshl] = ACTIONS(1229), + [anon_sym_bit_DASHshr] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1229), + [anon_sym_LT2] = ACTIONS(1229), + [anon_sym_LT_EQ] = ACTIONS(1229), + [anon_sym_GT_EQ] = ACTIONS(1229), + [anon_sym_not_DASHin] = ACTIONS(1229), + [anon_sym_starts_DASHwith] = ACTIONS(1229), + [anon_sym_ends_DASHwith] = ACTIONS(1229), + [anon_sym_EQ_TILDE] = ACTIONS(1229), + [anon_sym_BANG_TILDE] = ACTIONS(1229), + [anon_sym_bit_DASHand] = ACTIONS(1229), + [anon_sym_bit_DASHxor] = ACTIONS(1229), + [anon_sym_bit_DASHor] = ACTIONS(1229), + [anon_sym_and] = ACTIONS(1229), + [anon_sym_xor] = ACTIONS(1229), + [anon_sym_or] = ACTIONS(1229), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1229), + [anon_sym_DOT_DOT_LT] = ACTIONS(1229), + [anon_sym_null] = ACTIONS(1229), + [anon_sym_true] = ACTIONS(1229), + [anon_sym_false] = ACTIONS(1229), + [aux_sym__val_number_decimal_token1] = ACTIONS(1229), + [aux_sym__val_number_decimal_token2] = ACTIONS(1229), + [anon_sym_DOT2] = ACTIONS(1229), + [aux_sym__val_number_decimal_token3] = ACTIONS(1229), + [aux_sym__val_number_token1] = ACTIONS(1229), + [aux_sym__val_number_token2] = ACTIONS(1229), + [aux_sym__val_number_token3] = ACTIONS(1229), + [aux_sym__val_number_token4] = ACTIONS(1229), + [aux_sym__val_number_token5] = ACTIONS(1229), + [aux_sym__val_number_token6] = ACTIONS(1229), + [anon_sym_0b] = ACTIONS(1229), + [anon_sym_0o] = ACTIONS(1229), + [anon_sym_0x] = ACTIONS(1229), + [sym_val_date] = ACTIONS(1229), + [anon_sym_DQUOTE] = ACTIONS(1229), + [sym__str_single_quotes] = ACTIONS(1229), + [sym__str_back_ticks] = ACTIONS(1229), + [sym__entry_separator] = ACTIONS(1231), + [anon_sym_err_GT] = ACTIONS(1229), + [anon_sym_out_GT] = ACTIONS(1229), + [anon_sym_e_GT] = ACTIONS(1229), + [anon_sym_o_GT] = ACTIONS(1229), + [anon_sym_err_PLUSout_GT] = ACTIONS(1229), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1229), + [anon_sym_o_PLUSe_GT] = ACTIONS(1229), + [anon_sym_e_PLUSo_GT] = ACTIONS(1229), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1229), + [anon_sym_POUND] = ACTIONS(113), + }, + [1967] = { + [sym_comment] = STATE(1967), + [anon_sym_export] = ACTIONS(1139), + [anon_sym_alias] = ACTIONS(1139), + [anon_sym_let] = ACTIONS(1139), + [anon_sym_let_DASHenv] = ACTIONS(1139), + [anon_sym_mut] = ACTIONS(1139), + [anon_sym_const] = ACTIONS(1139), + [anon_sym_SEMI] = ACTIONS(1139), + [sym_cmd_identifier] = ACTIONS(1139), + [anon_sym_LF] = ACTIONS(1209), + [anon_sym_def] = ACTIONS(1139), + [anon_sym_export_DASHenv] = ACTIONS(1139), + [anon_sym_extern] = ACTIONS(1139), + [anon_sym_module] = ACTIONS(1139), + [anon_sym_use] = ACTIONS(1139), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LPAREN] = ACTIONS(1139), + [anon_sym_RPAREN] = ACTIONS(1139), + [anon_sym_DOLLAR] = ACTIONS(1139), + [anon_sym_error] = ACTIONS(1139), + [anon_sym_DASH_DASH] = ACTIONS(1139), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_break] = ACTIONS(1139), + [anon_sym_continue] = ACTIONS(1139), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_loop] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1139), + [anon_sym_do] = ACTIONS(1139), + [anon_sym_if] = ACTIONS(1139), + [anon_sym_match] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1139), + [anon_sym_RBRACE] = ACTIONS(1139), + [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_try] = ACTIONS(1139), + [anon_sym_return] = ACTIONS(1139), + [anon_sym_source] = ACTIONS(1139), + [anon_sym_source_DASHenv] = ACTIONS(1139), + [anon_sym_register] = ACTIONS(1139), + [anon_sym_hide] = ACTIONS(1139), + [anon_sym_hide_DASHenv] = ACTIONS(1139), + [anon_sym_overlay] = ACTIONS(1139), + [anon_sym_as] = ACTIONS(1139), + [anon_sym_where] = ACTIONS(1139), + [anon_sym_not] = ACTIONS(1139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1139), + [anon_sym_DOT_DOT_LT] = ACTIONS(1139), + [anon_sym_null] = ACTIONS(1139), + [anon_sym_true] = ACTIONS(1139), + [anon_sym_false] = ACTIONS(1139), + [aux_sym__val_number_decimal_token1] = ACTIONS(1139), + [aux_sym__val_number_decimal_token2] = ACTIONS(1139), + [anon_sym_DOT2] = ACTIONS(1139), + [aux_sym__val_number_decimal_token3] = ACTIONS(1139), + [aux_sym__val_number_token1] = ACTIONS(1139), + [aux_sym__val_number_token2] = ACTIONS(1139), + [aux_sym__val_number_token3] = ACTIONS(1139), + [aux_sym__val_number_token4] = ACTIONS(1139), + [aux_sym__val_number_token5] = ACTIONS(1139), + [aux_sym__val_number_token6] = ACTIONS(1139), + [anon_sym_0b] = ACTIONS(1139), + [anon_sym_0o] = ACTIONS(1139), + [anon_sym_0x] = ACTIONS(1139), + [sym_val_date] = ACTIONS(1139), + [anon_sym_DQUOTE] = ACTIONS(1139), + [sym__str_single_quotes] = ACTIONS(1139), + [sym__str_back_ticks] = ACTIONS(1139), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1139), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1139), + [anon_sym_CARET] = ACTIONS(1139), + [anon_sym_POUND] = ACTIONS(113), + }, + [1968] = { + [sym__expression] = STATE(7064), + [sym_expr_unary] = STATE(5409), + [sym__expr_unary_minus] = STATE(5410), + [sym_expr_binary] = STATE(5409), + [sym__expr_binary_expression] = STATE(6366), + [sym_expr_parenthesized] = STATE(4635), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5409), + [sym_val_nothing] = STATE(5350), + [sym_val_bool] = STATE(5350), + [sym_val_variable] = STATE(4717), + [sym__var] = STATE(4193), + [sym_val_number] = STATE(5350), + [sym__val_number_decimal] = STATE(4266), + [sym__val_number] = STATE(5351), + [sym_val_duration] = STATE(5350), + [sym_val_filesize] = STATE(5350), + [sym_val_binary] = STATE(5350), + [sym_val_string] = STATE(5350), + [sym__str_double_quotes] = STATE(5502), + [sym_val_interpolated] = STATE(5350), + [sym__inter_single_quotes] = STATE(5420), + [sym__inter_double_quotes] = STATE(5421), + [sym_val_list] = STATE(5350), + [sym_val_record] = STATE(5350), + [sym_val_table] = STATE(5350), + [sym_val_closure] = STATE(5350), + [sym__flag] = STATE(1465), + [sym_short_flag] = STATE(4674), + [sym_long_flag] = STATE(4674), + [sym_long_flag_equals_value] = STATE(4714), + [sym_comment] = STATE(1968), + [anon_sym_SEMI] = ACTIONS(5601), + [anon_sym_LF] = ACTIONS(5603), + [anon_sym_LBRACK] = ACTIONS(4833), + [anon_sym_LPAREN] = ACTIONS(4835), + [anon_sym_RPAREN] = ACTIONS(5601), + [anon_sym_PIPE] = ACTIONS(5601), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_DASH_DASH] = ACTIONS(4875), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4841), + [anon_sym_RBRACE] = ACTIONS(5601), + [anon_sym_DOT_DOT] = ACTIONS(4843), + [anon_sym_not] = ACTIONS(4845), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4847), + [anon_sym_DOT_DOT_LT] = ACTIONS(4847), + [anon_sym_null] = ACTIONS(4849), + [anon_sym_true] = ACTIONS(4851), + [anon_sym_false] = ACTIONS(4851), + [aux_sym__val_number_decimal_token1] = ACTIONS(4853), + [aux_sym__val_number_decimal_token2] = ACTIONS(4853), + [anon_sym_DOT2] = ACTIONS(4855), + [aux_sym__val_number_decimal_token3] = ACTIONS(4857), + [aux_sym__val_number_token1] = ACTIONS(4859), + [aux_sym__val_number_token2] = ACTIONS(4859), + [aux_sym__val_number_token3] = ACTIONS(4859), + [aux_sym__val_number_token4] = ACTIONS(4859), + [aux_sym__val_number_token5] = ACTIONS(4859), + [aux_sym__val_number_token6] = ACTIONS(4859), + [anon_sym_0b] = ACTIONS(3080), + [anon_sym_0o] = ACTIONS(3082), + [anon_sym_0x] = ACTIONS(3082), + [sym_val_date] = ACTIONS(4861), + [anon_sym_DQUOTE] = ACTIONS(4863), + [sym__str_single_quotes] = ACTIONS(4865), + [sym__str_back_ticks] = ACTIONS(4865), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4867), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4869), + [anon_sym_POUND] = ACTIONS(113), + }, + [1969] = { + [sym_comment] = STATE(1969), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_COMMA] = ACTIONS(1233), + [anon_sym_RBRACK] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(1233), + [anon_sym_DOLLAR] = ACTIONS(1233), + [anon_sym_GT] = ACTIONS(1233), + [anon_sym_DASH_DASH] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_in] = ACTIONS(1233), + [anon_sym_LBRACE] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1233), + [anon_sym_STAR_STAR] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1233), + [anon_sym_SLASH] = ACTIONS(1233), + [anon_sym_mod] = ACTIONS(1233), + [anon_sym_SLASH_SLASH] = ACTIONS(1233), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_bit_DASHshl] = ACTIONS(1233), + [anon_sym_bit_DASHshr] = ACTIONS(1233), + [anon_sym_EQ_EQ] = ACTIONS(1233), + [anon_sym_BANG_EQ] = ACTIONS(1233), + [anon_sym_LT2] = ACTIONS(1233), + [anon_sym_LT_EQ] = ACTIONS(1233), + [anon_sym_GT_EQ] = ACTIONS(1233), + [anon_sym_not_DASHin] = ACTIONS(1233), + [anon_sym_starts_DASHwith] = ACTIONS(1233), + [anon_sym_ends_DASHwith] = ACTIONS(1233), + [anon_sym_EQ_TILDE] = ACTIONS(1233), + [anon_sym_BANG_TILDE] = ACTIONS(1233), + [anon_sym_bit_DASHand] = ACTIONS(1233), + [anon_sym_bit_DASHxor] = ACTIONS(1233), + [anon_sym_bit_DASHor] = ACTIONS(1233), + [anon_sym_and] = ACTIONS(1233), + [anon_sym_xor] = ACTIONS(1233), + [anon_sym_or] = ACTIONS(1233), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1233), + [anon_sym_DOT_DOT_LT] = ACTIONS(1233), + [anon_sym_null] = ACTIONS(1233), + [anon_sym_true] = ACTIONS(1233), + [anon_sym_false] = ACTIONS(1233), + [aux_sym__val_number_decimal_token1] = ACTIONS(1233), + [aux_sym__val_number_decimal_token2] = ACTIONS(1233), + [anon_sym_DOT2] = ACTIONS(1233), + [aux_sym__val_number_decimal_token3] = ACTIONS(1233), + [aux_sym__val_number_token1] = ACTIONS(1233), + [aux_sym__val_number_token2] = ACTIONS(1233), + [aux_sym__val_number_token3] = ACTIONS(1233), + [aux_sym__val_number_token4] = ACTIONS(1233), + [aux_sym__val_number_token5] = ACTIONS(1233), + [aux_sym__val_number_token6] = ACTIONS(1233), + [anon_sym_0b] = ACTIONS(1233), + [anon_sym_0o] = ACTIONS(1233), + [anon_sym_0x] = ACTIONS(1233), + [sym_val_date] = ACTIONS(1233), + [anon_sym_DQUOTE] = ACTIONS(1233), + [sym__str_single_quotes] = ACTIONS(1233), + [sym__str_back_ticks] = ACTIONS(1233), + [sym__entry_separator] = ACTIONS(1235), + [anon_sym_err_GT] = ACTIONS(1233), + [anon_sym_out_GT] = ACTIONS(1233), + [anon_sym_e_GT] = ACTIONS(1233), + [anon_sym_o_GT] = ACTIONS(1233), + [anon_sym_err_PLUSout_GT] = ACTIONS(1233), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1233), + [anon_sym_o_PLUSe_GT] = ACTIONS(1233), + [anon_sym_e_PLUSo_GT] = ACTIONS(1233), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1233), + [anon_sym_POUND] = ACTIONS(113), + }, + [1970] = { + [sym_comment] = STATE(1970), + [anon_sym_LBRACK] = ACTIONS(1221), + [anon_sym_COMMA] = ACTIONS(1221), + [anon_sym_RBRACK] = ACTIONS(1221), + [anon_sym_LPAREN] = ACTIONS(1221), + [anon_sym_DOLLAR] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_DASH_DASH] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_in] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1221), + [anon_sym_DOT_DOT] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_STAR_STAR] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_mod] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_bit_DASHshl] = ACTIONS(1221), + [anon_sym_bit_DASHshr] = ACTIONS(1221), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT2] = ACTIONS(1221), + [anon_sym_LT_EQ] = ACTIONS(1221), + [anon_sym_GT_EQ] = ACTIONS(1221), + [anon_sym_not_DASHin] = ACTIONS(1221), + [anon_sym_starts_DASHwith] = ACTIONS(1221), + [anon_sym_ends_DASHwith] = ACTIONS(1221), + [anon_sym_EQ_TILDE] = ACTIONS(1221), + [anon_sym_BANG_TILDE] = ACTIONS(1221), + [anon_sym_bit_DASHand] = ACTIONS(1221), + [anon_sym_bit_DASHxor] = ACTIONS(1221), + [anon_sym_bit_DASHor] = ACTIONS(1221), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_xor] = ACTIONS(1221), + [anon_sym_or] = ACTIONS(1221), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1221), + [anon_sym_DOT_DOT_LT] = ACTIONS(1221), + [anon_sym_null] = ACTIONS(1221), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [aux_sym__val_number_decimal_token1] = ACTIONS(1221), + [aux_sym__val_number_decimal_token2] = ACTIONS(1221), + [anon_sym_DOT2] = ACTIONS(1221), + [aux_sym__val_number_decimal_token3] = ACTIONS(1221), + [aux_sym__val_number_token1] = ACTIONS(1221), + [aux_sym__val_number_token2] = ACTIONS(1221), + [aux_sym__val_number_token3] = ACTIONS(1221), + [aux_sym__val_number_token4] = ACTIONS(1221), + [aux_sym__val_number_token5] = ACTIONS(1221), + [aux_sym__val_number_token6] = ACTIONS(1221), + [anon_sym_0b] = ACTIONS(1221), + [anon_sym_0o] = ACTIONS(1221), + [anon_sym_0x] = ACTIONS(1221), + [sym_val_date] = ACTIONS(1221), + [anon_sym_DQUOTE] = ACTIONS(1221), + [sym__str_single_quotes] = ACTIONS(1221), + [sym__str_back_ticks] = ACTIONS(1221), + [sym__entry_separator] = ACTIONS(1223), + [anon_sym_err_GT] = ACTIONS(1221), + [anon_sym_out_GT] = ACTIONS(1221), + [anon_sym_e_GT] = ACTIONS(1221), + [anon_sym_o_GT] = ACTIONS(1221), + [anon_sym_err_PLUSout_GT] = ACTIONS(1221), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1221), + [anon_sym_o_PLUSe_GT] = ACTIONS(1221), + [anon_sym_e_PLUSo_GT] = ACTIONS(1221), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1221), + [anon_sym_POUND] = ACTIONS(113), + }, + [1971] = { + [sym_expr_unary] = STATE(5879), + [sym__expr_unary_minus] = STATE(5878), + [sym_expr_binary] = STATE(5879), + [sym__expr_binary_expression] = STATE(5962), + [sym_expr_parenthesized] = STATE(5879), + [sym__val_range] = STATE(10069), + [sym__value] = STATE(5879), + [sym_val_nothing] = STATE(5931), + [sym_val_bool] = STATE(5739), + [sym_val_variable] = STATE(5931), + [sym__var] = STATE(5079), + [sym_val_number] = STATE(5931), + [sym__val_number_decimal] = STATE(4336), + [sym__val_number] = STATE(5285), + [sym_val_duration] = STATE(5931), + [sym_val_filesize] = STATE(5931), + [sym_val_binary] = STATE(5931), + [sym_val_string] = STATE(5931), + [sym__str_double_quotes] = STATE(5888), + [sym_val_interpolated] = STATE(5931), + [sym__inter_single_quotes] = STATE(5935), + [sym__inter_double_quotes] = STATE(5940), + [sym_val_list] = STATE(5931), + [sym_val_record] = STATE(5931), + [sym_val_table] = STATE(5931), + [sym_val_closure] = STATE(5931), + [sym_unquoted] = STATE(5969), + [sym__unquoted_anonymous_prefix] = STATE(10402), + [sym_comment] = STATE(1971), [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(5153), - [anon_sym_DOLLAR] = ACTIONS(5155), + [anon_sym_LPAREN] = ACTIONS(4909), + [anon_sym_DOLLAR] = ACTIONS(4911), [anon_sym_DASH] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_DOT_DOT] = ACTIONS(5157), - [anon_sym_not] = ACTIONS(4456), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5159), - [anon_sym_DOT_DOT_LT] = ACTIONS(5159), - [anon_sym_null] = ACTIONS(4460), - [anon_sym_true] = ACTIONS(4462), - [anon_sym_false] = ACTIONS(4462), - [aux_sym__val_number_decimal_token1] = ACTIONS(4464), - [aux_sym__val_number_decimal_token2] = ACTIONS(4466), - [anon_sym_DOT2] = ACTIONS(5161), - [aux_sym__val_number_decimal_token3] = ACTIONS(4470), + [anon_sym_DOT_DOT] = ACTIONS(4913), + [anon_sym_not] = ACTIONS(3918), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4915), + [anon_sym_DOT_DOT_LT] = ACTIONS(4915), + [anon_sym_null] = ACTIONS(3922), + [anon_sym_true] = ACTIONS(3924), + [anon_sym_false] = ACTIONS(3924), + [aux_sym__val_number_decimal_token1] = ACTIONS(3926), + [aux_sym__val_number_decimal_token2] = ACTIONS(3928), + [anon_sym_DOT2] = ACTIONS(4917), + [aux_sym__val_number_decimal_token3] = ACTIONS(3932), [aux_sym__val_number_token1] = ACTIONS(93), [aux_sym__val_number_token2] = ACTIONS(93), [aux_sym__val_number_token3] = ACTIONS(93), - [aux_sym__val_number_token4] = ACTIONS(5163), - [aux_sym__val_number_token5] = ACTIONS(5163), - [aux_sym__val_number_token6] = ACTIONS(5163), + [aux_sym__val_number_token4] = ACTIONS(4919), + [aux_sym__val_number_token5] = ACTIONS(4919), + [aux_sym__val_number_token6] = ACTIONS(4919), [anon_sym_0b] = ACTIONS(97), [anon_sym_0o] = ACTIONS(99), [anon_sym_0x] = ACTIONS(99), - [sym_val_date] = ACTIONS(4474), + [sym_val_date] = ACTIONS(3936), [anon_sym_DQUOTE] = ACTIONS(103), [sym__str_single_quotes] = ACTIONS(105), [sym__str_back_ticks] = ACTIONS(105), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(109), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2999), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2924), [anon_sym_POUND] = ACTIONS(3), }, - [1756] = { - [sym_expr_unary] = STATE(6382), - [sym__expr_unary_minus] = STATE(6347), - [sym_expr_binary] = STATE(6382), - [sym__expr_binary_expression] = STATE(6309), - [sym_expr_parenthesized] = STATE(6382), - [sym__val_range] = STATE(10572), - [sym__value] = STATE(6382), - [sym_val_nothing] = STATE(6374), - [sym_val_bool] = STATE(6252), - [sym_val_variable] = STATE(6374), - [sym__var] = STATE(5497), - [sym_val_number] = STATE(6374), - [sym__val_number_decimal] = STATE(4789), - [sym__val_number] = STATE(5769), - [sym_val_duration] = STATE(6374), - [sym_val_filesize] = STATE(6374), - [sym_val_binary] = STATE(6374), - [sym_val_string] = STATE(6374), - [sym__str_double_quotes] = STATE(6386), - [sym_val_interpolated] = STATE(6374), - [sym__inter_single_quotes] = STATE(6363), - [sym__inter_double_quotes] = STATE(6365), - [sym_val_list] = STATE(6374), - [sym_val_record] = STATE(6374), - [sym_val_table] = STATE(6374), - [sym_val_closure] = STATE(6374), - [sym_unquoted] = STATE(6312), - [sym__unquoted_anonymous_prefix] = STATE(11300), - [sym_comment] = STATE(1756), + [1972] = { + [sym_expr_unary] = STATE(5879), + [sym__expr_unary_minus] = STATE(5878), + [sym_expr_binary] = STATE(5879), + [sym__expr_binary_expression] = STATE(5975), + [sym_expr_parenthesized] = STATE(5879), + [sym__val_range] = STATE(10069), + [sym__value] = STATE(5879), + [sym_val_nothing] = STATE(5931), + [sym_val_bool] = STATE(5739), + [sym_val_variable] = STATE(5931), + [sym__var] = STATE(5079), + [sym_val_number] = STATE(5931), + [sym__val_number_decimal] = STATE(4336), + [sym__val_number] = STATE(5285), + [sym_val_duration] = STATE(5931), + [sym_val_filesize] = STATE(5931), + [sym_val_binary] = STATE(5931), + [sym_val_string] = STATE(5931), + [sym__str_double_quotes] = STATE(5888), + [sym_val_interpolated] = STATE(5931), + [sym__inter_single_quotes] = STATE(5935), + [sym__inter_double_quotes] = STATE(5940), + [sym_val_list] = STATE(5931), + [sym_val_record] = STATE(5931), + [sym_val_table] = STATE(5931), + [sym_val_closure] = STATE(5931), + [sym_unquoted] = STATE(5981), + [sym__unquoted_anonymous_prefix] = STATE(10402), + [sym_comment] = STATE(1972), [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(5153), - [anon_sym_DOLLAR] = ACTIONS(5155), + [anon_sym_LPAREN] = ACTIONS(4909), + [anon_sym_DOLLAR] = ACTIONS(4911), [anon_sym_DASH] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_DOT_DOT] = ACTIONS(5157), - [anon_sym_not] = ACTIONS(4456), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5159), - [anon_sym_DOT_DOT_LT] = ACTIONS(5159), - [anon_sym_null] = ACTIONS(4460), - [anon_sym_true] = ACTIONS(4462), - [anon_sym_false] = ACTIONS(4462), - [aux_sym__val_number_decimal_token1] = ACTIONS(4464), - [aux_sym__val_number_decimal_token2] = ACTIONS(4466), - [anon_sym_DOT2] = ACTIONS(5161), - [aux_sym__val_number_decimal_token3] = ACTIONS(4470), + [anon_sym_DOT_DOT] = ACTIONS(4913), + [anon_sym_not] = ACTIONS(3918), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4915), + [anon_sym_DOT_DOT_LT] = ACTIONS(4915), + [anon_sym_null] = ACTIONS(3922), + [anon_sym_true] = ACTIONS(3924), + [anon_sym_false] = ACTIONS(3924), + [aux_sym__val_number_decimal_token1] = ACTIONS(3926), + [aux_sym__val_number_decimal_token2] = ACTIONS(3928), + [anon_sym_DOT2] = ACTIONS(4917), + [aux_sym__val_number_decimal_token3] = ACTIONS(3932), [aux_sym__val_number_token1] = ACTIONS(93), [aux_sym__val_number_token2] = ACTIONS(93), [aux_sym__val_number_token3] = ACTIONS(93), - [aux_sym__val_number_token4] = ACTIONS(5163), - [aux_sym__val_number_token5] = ACTIONS(5163), - [aux_sym__val_number_token6] = ACTIONS(5163), + [aux_sym__val_number_token4] = ACTIONS(4919), + [aux_sym__val_number_token5] = ACTIONS(4919), + [aux_sym__val_number_token6] = ACTIONS(4919), [anon_sym_0b] = ACTIONS(97), [anon_sym_0o] = ACTIONS(99), [anon_sym_0x] = ACTIONS(99), - [sym_val_date] = ACTIONS(4474), + [sym_val_date] = ACTIONS(3936), [anon_sym_DQUOTE] = ACTIONS(103), [sym__str_single_quotes] = ACTIONS(105), [sym__str_back_ticks] = ACTIONS(105), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(109), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2999), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2924), [anon_sym_POUND] = ACTIONS(3), }, - [1757] = { - [sym_expr_unary] = STATE(6382), - [sym__expr_unary_minus] = STATE(6347), - [sym_expr_binary] = STATE(6382), - [sym__expr_binary_expression] = STATE(6313), - [sym_expr_parenthesized] = STATE(6382), - [sym__val_range] = STATE(10572), - [sym__value] = STATE(6382), - [sym_val_nothing] = STATE(6374), - [sym_val_bool] = STATE(6252), - [sym_val_variable] = STATE(6374), - [sym__var] = STATE(5497), - [sym_val_number] = STATE(6374), - [sym__val_number_decimal] = STATE(4789), - [sym__val_number] = STATE(5769), - [sym_val_duration] = STATE(6374), - [sym_val_filesize] = STATE(6374), - [sym_val_binary] = STATE(6374), - [sym_val_string] = STATE(6374), - [sym__str_double_quotes] = STATE(6386), - [sym_val_interpolated] = STATE(6374), - [sym__inter_single_quotes] = STATE(6363), - [sym__inter_double_quotes] = STATE(6365), - [sym_val_list] = STATE(6374), - [sym_val_record] = STATE(6374), - [sym_val_table] = STATE(6374), - [sym_val_closure] = STATE(6374), - [sym_unquoted] = STATE(6314), - [sym__unquoted_anonymous_prefix] = STATE(11300), - [sym_comment] = STATE(1757), + [1973] = { + [sym_expr_unary] = STATE(5879), + [sym__expr_unary_minus] = STATE(5878), + [sym_expr_binary] = STATE(5879), + [sym__expr_binary_expression] = STATE(5946), + [sym_expr_parenthesized] = STATE(5879), + [sym__val_range] = STATE(10069), + [sym__value] = STATE(5879), + [sym_val_nothing] = STATE(5931), + [sym_val_bool] = STATE(5739), + [sym_val_variable] = STATE(5931), + [sym__var] = STATE(5079), + [sym_val_number] = STATE(5931), + [sym__val_number_decimal] = STATE(4336), + [sym__val_number] = STATE(5285), + [sym_val_duration] = STATE(5931), + [sym_val_filesize] = STATE(5931), + [sym_val_binary] = STATE(5931), + [sym_val_string] = STATE(5931), + [sym__str_double_quotes] = STATE(5888), + [sym_val_interpolated] = STATE(5931), + [sym__inter_single_quotes] = STATE(5935), + [sym__inter_double_quotes] = STATE(5940), + [sym_val_list] = STATE(5931), + [sym_val_record] = STATE(5931), + [sym_val_table] = STATE(5931), + [sym_val_closure] = STATE(5931), + [sym_unquoted] = STATE(5948), + [sym__unquoted_anonymous_prefix] = STATE(10402), + [sym_comment] = STATE(1973), [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(5153), - [anon_sym_DOLLAR] = ACTIONS(5155), + [anon_sym_LPAREN] = ACTIONS(4909), + [anon_sym_DOLLAR] = ACTIONS(4911), [anon_sym_DASH] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_DOT_DOT] = ACTIONS(5157), - [anon_sym_not] = ACTIONS(4456), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5159), - [anon_sym_DOT_DOT_LT] = ACTIONS(5159), - [anon_sym_null] = ACTIONS(4460), - [anon_sym_true] = ACTIONS(4462), - [anon_sym_false] = ACTIONS(4462), - [aux_sym__val_number_decimal_token1] = ACTIONS(4464), - [aux_sym__val_number_decimal_token2] = ACTIONS(4466), - [anon_sym_DOT2] = ACTIONS(5161), - [aux_sym__val_number_decimal_token3] = ACTIONS(4470), + [anon_sym_DOT_DOT] = ACTIONS(4913), + [anon_sym_not] = ACTIONS(3918), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4915), + [anon_sym_DOT_DOT_LT] = ACTIONS(4915), + [anon_sym_null] = ACTIONS(3922), + [anon_sym_true] = ACTIONS(3924), + [anon_sym_false] = ACTIONS(3924), + [aux_sym__val_number_decimal_token1] = ACTIONS(3926), + [aux_sym__val_number_decimal_token2] = ACTIONS(3928), + [anon_sym_DOT2] = ACTIONS(4917), + [aux_sym__val_number_decimal_token3] = ACTIONS(3932), [aux_sym__val_number_token1] = ACTIONS(93), [aux_sym__val_number_token2] = ACTIONS(93), [aux_sym__val_number_token3] = ACTIONS(93), - [aux_sym__val_number_token4] = ACTIONS(5163), - [aux_sym__val_number_token5] = ACTIONS(5163), - [aux_sym__val_number_token6] = ACTIONS(5163), + [aux_sym__val_number_token4] = ACTIONS(4919), + [aux_sym__val_number_token5] = ACTIONS(4919), + [aux_sym__val_number_token6] = ACTIONS(4919), [anon_sym_0b] = ACTIONS(97), [anon_sym_0o] = ACTIONS(99), [anon_sym_0x] = ACTIONS(99), - [sym_val_date] = ACTIONS(4474), + [sym_val_date] = ACTIONS(3936), [anon_sym_DQUOTE] = ACTIONS(103), [sym__str_single_quotes] = ACTIONS(105), [sym__str_back_ticks] = ACTIONS(105), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(109), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2999), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2924), [anon_sym_POUND] = ACTIONS(3), }, - [1758] = { - [sym_expr_unary] = STATE(6382), - [sym__expr_unary_minus] = STATE(6347), - [sym_expr_binary] = STATE(6382), - [sym__expr_binary_expression] = STATE(6315), - [sym_expr_parenthesized] = STATE(6382), - [sym__val_range] = STATE(10572), - [sym__value] = STATE(6382), - [sym_val_nothing] = STATE(6374), - [sym_val_bool] = STATE(6252), - [sym_val_variable] = STATE(6374), - [sym__var] = STATE(5497), - [sym_val_number] = STATE(6374), - [sym__val_number_decimal] = STATE(4789), - [sym__val_number] = STATE(5769), - [sym_val_duration] = STATE(6374), - [sym_val_filesize] = STATE(6374), - [sym_val_binary] = STATE(6374), - [sym_val_string] = STATE(6374), - [sym__str_double_quotes] = STATE(6386), - [sym_val_interpolated] = STATE(6374), - [sym__inter_single_quotes] = STATE(6363), - [sym__inter_double_quotes] = STATE(6365), - [sym_val_list] = STATE(6374), - [sym_val_record] = STATE(6374), - [sym_val_table] = STATE(6374), - [sym_val_closure] = STATE(6374), - [sym_unquoted] = STATE(6317), - [sym__unquoted_anonymous_prefix] = STATE(11300), - [sym_comment] = STATE(1758), + [1974] = { + [sym_expr_unary] = STATE(5879), + [sym__expr_unary_minus] = STATE(5878), + [sym_expr_binary] = STATE(5879), + [sym__expr_binary_expression] = STATE(5965), + [sym_expr_parenthesized] = STATE(5879), + [sym__val_range] = STATE(10069), + [sym__value] = STATE(5879), + [sym_val_nothing] = STATE(5931), + [sym_val_bool] = STATE(5739), + [sym_val_variable] = STATE(5931), + [sym__var] = STATE(5079), + [sym_val_number] = STATE(5931), + [sym__val_number_decimal] = STATE(4336), + [sym__val_number] = STATE(5285), + [sym_val_duration] = STATE(5931), + [sym_val_filesize] = STATE(5931), + [sym_val_binary] = STATE(5931), + [sym_val_string] = STATE(5931), + [sym__str_double_quotes] = STATE(5888), + [sym_val_interpolated] = STATE(5931), + [sym__inter_single_quotes] = STATE(5935), + [sym__inter_double_quotes] = STATE(5940), + [sym_val_list] = STATE(5931), + [sym_val_record] = STATE(5931), + [sym_val_table] = STATE(5931), + [sym_val_closure] = STATE(5931), + [sym_unquoted] = STATE(5866), + [sym__unquoted_anonymous_prefix] = STATE(10402), + [sym_comment] = STATE(1974), [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(5153), - [anon_sym_DOLLAR] = ACTIONS(5155), + [anon_sym_LPAREN] = ACTIONS(4909), + [anon_sym_DOLLAR] = ACTIONS(4911), [anon_sym_DASH] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_DOT_DOT] = ACTIONS(5157), - [anon_sym_not] = ACTIONS(4456), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5159), - [anon_sym_DOT_DOT_LT] = ACTIONS(5159), - [anon_sym_null] = ACTIONS(4460), - [anon_sym_true] = ACTIONS(4462), - [anon_sym_false] = ACTIONS(4462), - [aux_sym__val_number_decimal_token1] = ACTIONS(4464), - [aux_sym__val_number_decimal_token2] = ACTIONS(4466), - [anon_sym_DOT2] = ACTIONS(5161), - [aux_sym__val_number_decimal_token3] = ACTIONS(4470), + [anon_sym_DOT_DOT] = ACTIONS(4913), + [anon_sym_not] = ACTIONS(3918), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4915), + [anon_sym_DOT_DOT_LT] = ACTIONS(4915), + [anon_sym_null] = ACTIONS(3922), + [anon_sym_true] = ACTIONS(3924), + [anon_sym_false] = ACTIONS(3924), + [aux_sym__val_number_decimal_token1] = ACTIONS(3926), + [aux_sym__val_number_decimal_token2] = ACTIONS(3928), + [anon_sym_DOT2] = ACTIONS(4917), + [aux_sym__val_number_decimal_token3] = ACTIONS(3932), [aux_sym__val_number_token1] = ACTIONS(93), [aux_sym__val_number_token2] = ACTIONS(93), [aux_sym__val_number_token3] = ACTIONS(93), - [aux_sym__val_number_token4] = ACTIONS(5163), - [aux_sym__val_number_token5] = ACTIONS(5163), - [aux_sym__val_number_token6] = ACTIONS(5163), + [aux_sym__val_number_token4] = ACTIONS(4919), + [aux_sym__val_number_token5] = ACTIONS(4919), + [aux_sym__val_number_token6] = ACTIONS(4919), [anon_sym_0b] = ACTIONS(97), [anon_sym_0o] = ACTIONS(99), [anon_sym_0x] = ACTIONS(99), - [sym_val_date] = ACTIONS(4474), + [sym_val_date] = ACTIONS(3936), [anon_sym_DQUOTE] = ACTIONS(103), [sym__str_single_quotes] = ACTIONS(105), [sym__str_back_ticks] = ACTIONS(105), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(109), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2999), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(2924), [anon_sym_POUND] = ACTIONS(3), }, - [1759] = { - [sym_comment] = STATE(1759), - [ts_builtin_sym_end] = ACTIONS(1072), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_alias] = ACTIONS(1070), - [anon_sym_let] = ACTIONS(1070), - [anon_sym_let_DASHenv] = ACTIONS(1070), - [anon_sym_mut] = ACTIONS(1070), - [anon_sym_const] = ACTIONS(1070), - [anon_sym_SEMI] = ACTIONS(1070), - [sym_cmd_identifier] = ACTIONS(1070), - [anon_sym_LF] = ACTIONS(1072), - [anon_sym_def] = ACTIONS(1070), - [anon_sym_export_DASHenv] = ACTIONS(1070), - [anon_sym_extern] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_use] = ACTIONS(1070), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_error] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_loop] = ACTIONS(1070), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_do] = ACTIONS(1070), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_match] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_try] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_source] = ACTIONS(1070), - [anon_sym_source_DASHenv] = ACTIONS(1070), - [anon_sym_register] = ACTIONS(1070), - [anon_sym_hide] = ACTIONS(1070), - [anon_sym_hide_DASHenv] = ACTIONS(1070), - [anon_sym_overlay] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_where] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(5165), - [anon_sym_not] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_null] = ACTIONS(1070), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1070), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), - [anon_sym_CARET] = ACTIONS(1070), - [anon_sym_POUND] = ACTIONS(113), - }, - [1760] = { - [sym_comment] = STATE(1760), - [ts_builtin_sym_end] = ACTIONS(1072), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_alias] = ACTIONS(1070), - [anon_sym_let] = ACTIONS(1070), - [anon_sym_let_DASHenv] = ACTIONS(1070), - [anon_sym_mut] = ACTIONS(1070), - [anon_sym_const] = ACTIONS(1070), - [anon_sym_SEMI] = ACTIONS(1070), - [sym_cmd_identifier] = ACTIONS(1070), - [anon_sym_LF] = ACTIONS(1072), - [anon_sym_def] = ACTIONS(1070), - [anon_sym_export_DASHenv] = ACTIONS(1070), - [anon_sym_extern] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_use] = ACTIONS(1070), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_error] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_loop] = ACTIONS(1070), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_do] = ACTIONS(1070), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_match] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_try] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_source] = ACTIONS(1070), - [anon_sym_source_DASHenv] = ACTIONS(1070), - [anon_sym_register] = ACTIONS(1070), - [anon_sym_hide] = ACTIONS(1070), - [anon_sym_hide_DASHenv] = ACTIONS(1070), - [anon_sym_overlay] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_where] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(5165), - [anon_sym_not] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_null] = ACTIONS(1070), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1070), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), - [anon_sym_CARET] = ACTIONS(1070), - [anon_sym_POUND] = ACTIONS(113), - }, - [1761] = { - [sym_comment] = STATE(1761), - [ts_builtin_sym_end] = ACTIONS(2439), - [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), - [anon_sym_SEMI] = ACTIONS(2437), - [sym_cmd_identifier] = ACTIONS(2437), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_not] = ACTIONS(2437), - [anon_sym_DOT_DOT2] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2439), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2439), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [anon_sym_DOT2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2437), - [anon_sym_0o] = ACTIONS(2437), - [anon_sym_0x] = ACTIONS(2437), - [sym_val_date] = 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_CARET] = ACTIONS(2437), - [anon_sym_POUND] = ACTIONS(113), - }, - [1762] = { - [sym_comment] = STATE(1762), - [ts_builtin_sym_end] = ACTIONS(2549), - [anon_sym_export] = ACTIONS(2547), - [anon_sym_alias] = ACTIONS(2547), - [anon_sym_let] = ACTIONS(2547), - [anon_sym_let_DASHenv] = ACTIONS(2547), - [anon_sym_mut] = ACTIONS(2547), - [anon_sym_const] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [sym_cmd_identifier] = ACTIONS(2547), - [anon_sym_LF] = ACTIONS(2549), - [anon_sym_def] = ACTIONS(2547), - [anon_sym_export_DASHenv] = ACTIONS(2547), - [anon_sym_extern] = ACTIONS(2547), - [anon_sym_module] = ACTIONS(2547), - [anon_sym_use] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_DOLLAR] = ACTIONS(2547), - [anon_sym_error] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_break] = ACTIONS(2547), - [anon_sym_continue] = ACTIONS(2547), - [anon_sym_for] = ACTIONS(2547), - [anon_sym_loop] = ACTIONS(2547), - [anon_sym_while] = ACTIONS(2547), - [anon_sym_do] = ACTIONS(2547), - [anon_sym_if] = ACTIONS(2547), - [anon_sym_match] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2547), - [anon_sym_DOT_DOT] = ACTIONS(2547), - [anon_sym_try] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2547), - [anon_sym_source] = ACTIONS(2547), - [anon_sym_source_DASHenv] = ACTIONS(2547), - [anon_sym_register] = ACTIONS(2547), - [anon_sym_hide] = ACTIONS(2547), - [anon_sym_hide_DASHenv] = ACTIONS(2547), - [anon_sym_overlay] = ACTIONS(2547), - [anon_sym_where] = ACTIONS(2547), - [anon_sym_not] = ACTIONS(2547), - [anon_sym_DOT_DOT2] = ACTIONS(2547), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), - [anon_sym_DOT_DOT_LT] = ACTIONS(2547), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2549), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2549), - [anon_sym_null] = ACTIONS(2547), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [aux_sym__val_number_decimal_token1] = ACTIONS(2547), - [aux_sym__val_number_decimal_token2] = ACTIONS(2547), - [anon_sym_DOT2] = ACTIONS(2547), - [aux_sym__val_number_decimal_token3] = ACTIONS(2547), - [aux_sym__val_number_token1] = ACTIONS(2547), - [aux_sym__val_number_token2] = ACTIONS(2547), - [aux_sym__val_number_token3] = ACTIONS(2547), - [aux_sym__val_number_token4] = ACTIONS(2547), - [aux_sym__val_number_token5] = ACTIONS(2547), - [aux_sym__val_number_token6] = ACTIONS(2547), - [anon_sym_0b] = ACTIONS(2547), - [anon_sym_0o] = ACTIONS(2547), - [anon_sym_0x] = ACTIONS(2547), - [sym_val_date] = ACTIONS(2547), - [anon_sym_DQUOTE] = ACTIONS(2547), - [sym__str_single_quotes] = ACTIONS(2547), - [sym__str_back_ticks] = ACTIONS(2547), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2547), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2547), - [anon_sym_POUND] = ACTIONS(113), - }, - [1763] = { - [sym_comment] = STATE(1763), - [ts_builtin_sym_end] = ACTIONS(3507), - [anon_sym_export] = ACTIONS(3505), - [anon_sym_alias] = ACTIONS(3505), - [anon_sym_let] = ACTIONS(3505), - [anon_sym_let_DASHenv] = ACTIONS(3505), - [anon_sym_mut] = ACTIONS(3505), - [anon_sym_const] = ACTIONS(3505), - [anon_sym_SEMI] = ACTIONS(3505), - [sym_cmd_identifier] = ACTIONS(3505), - [anon_sym_LF] = ACTIONS(3507), - [anon_sym_def] = ACTIONS(3505), - [anon_sym_export_DASHenv] = ACTIONS(3505), - [anon_sym_extern] = ACTIONS(3505), - [anon_sym_module] = ACTIONS(3505), - [anon_sym_use] = ACTIONS(3505), - [anon_sym_LBRACK] = ACTIONS(3505), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_error] = ACTIONS(3505), - [anon_sym_DASH] = ACTIONS(3505), - [anon_sym_break] = ACTIONS(3505), - [anon_sym_continue] = ACTIONS(3505), - [anon_sym_for] = ACTIONS(3505), - [anon_sym_loop] = ACTIONS(3505), - [anon_sym_while] = ACTIONS(3505), - [anon_sym_do] = ACTIONS(3505), - [anon_sym_if] = ACTIONS(3505), - [anon_sym_match] = ACTIONS(3505), - [anon_sym_LBRACE] = ACTIONS(3505), - [anon_sym_DOT_DOT] = ACTIONS(3505), - [anon_sym_try] = ACTIONS(3505), - [anon_sym_return] = ACTIONS(3505), - [anon_sym_source] = ACTIONS(3505), - [anon_sym_source_DASHenv] = ACTIONS(3505), - [anon_sym_register] = ACTIONS(3505), - [anon_sym_hide] = ACTIONS(3505), - [anon_sym_hide_DASHenv] = ACTIONS(3505), - [anon_sym_overlay] = ACTIONS(3505), - [anon_sym_where] = ACTIONS(3505), - [anon_sym_not] = ACTIONS(3505), - [anon_sym_DOT_DOT2] = ACTIONS(3505), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3505), - [anon_sym_DOT_DOT_LT] = ACTIONS(3505), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3507), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3507), - [anon_sym_null] = ACTIONS(3505), - [anon_sym_true] = ACTIONS(3505), - [anon_sym_false] = ACTIONS(3505), - [aux_sym__val_number_decimal_token1] = ACTIONS(3505), - [aux_sym__val_number_decimal_token2] = ACTIONS(3505), - [anon_sym_DOT2] = ACTIONS(3505), - [aux_sym__val_number_decimal_token3] = ACTIONS(3505), - [aux_sym__val_number_token1] = ACTIONS(3505), - [aux_sym__val_number_token2] = ACTIONS(3505), - [aux_sym__val_number_token3] = ACTIONS(3505), - [aux_sym__val_number_token4] = ACTIONS(3505), - [aux_sym__val_number_token5] = ACTIONS(3505), - [aux_sym__val_number_token6] = ACTIONS(3505), - [anon_sym_0b] = ACTIONS(3505), - [anon_sym_0o] = ACTIONS(3505), - [anon_sym_0x] = ACTIONS(3505), - [sym_val_date] = ACTIONS(3505), - [anon_sym_DQUOTE] = ACTIONS(3505), - [sym__str_single_quotes] = ACTIONS(3505), - [sym__str_back_ticks] = ACTIONS(3505), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3505), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3505), - [anon_sym_CARET] = ACTIONS(3505), + [1975] = { + [sym_comment] = STATE(1975), + [ts_builtin_sym_end] = ACTIONS(922), + [anon_sym_export] = ACTIONS(920), + [anon_sym_alias] = ACTIONS(920), + [anon_sym_let] = ACTIONS(920), + [anon_sym_let_DASHenv] = ACTIONS(920), + [anon_sym_mut] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(920), + [sym_cmd_identifier] = ACTIONS(920), + [anon_sym_LF] = ACTIONS(922), + [anon_sym_def] = ACTIONS(920), + [anon_sym_export_DASHenv] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym_module] = ACTIONS(920), + [anon_sym_use] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_error] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_loop] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_match] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_try] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_source] = ACTIONS(920), + [anon_sym_source_DASHenv] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_hide] = ACTIONS(920), + [anon_sym_hide_DASHenv] = ACTIONS(920), + [anon_sym_overlay] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_where] = ACTIONS(920), + [anon_sym_not] = ACTIONS(920), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [aux_sym__immediate_decimal_token1] = ACTIONS(4777), + [anon_sym_null] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), + [anon_sym_CARET] = ACTIONS(920), + [aux_sym_unquoted_token2] = ACTIONS(5607), [anon_sym_POUND] = ACTIONS(113), }, - [1764] = { - [sym_comment] = STATE(1764), - [ts_builtin_sym_end] = ACTIONS(5015), - [anon_sym_export] = ACTIONS(5011), - [anon_sym_alias] = ACTIONS(5011), - [anon_sym_EQ] = ACTIONS(5167), - [anon_sym_let] = ACTIONS(5011), - [anon_sym_let_DASHenv] = ACTIONS(5011), - [anon_sym_mut] = ACTIONS(5011), - [anon_sym_const] = ACTIONS(5011), - [anon_sym_SEMI] = ACTIONS(5011), - [sym_cmd_identifier] = ACTIONS(5011), - [anon_sym_LF] = ACTIONS(5015), - [anon_sym_def] = ACTIONS(5011), - [anon_sym_export_DASHenv] = ACTIONS(5011), - [anon_sym_extern] = ACTIONS(5011), - [anon_sym_module] = ACTIONS(5011), - [anon_sym_use] = ACTIONS(5011), - [anon_sym_LBRACK] = ACTIONS(5011), - [anon_sym_LPAREN] = ACTIONS(5011), - [anon_sym_DOLLAR] = ACTIONS(5011), - [anon_sym_error] = ACTIONS(5011), - [anon_sym_DASH_DASH] = ACTIONS(5011), - [anon_sym_DASH] = ACTIONS(5011), - [anon_sym_break] = ACTIONS(5011), - [anon_sym_continue] = ACTIONS(5011), - [anon_sym_for] = ACTIONS(5011), - [anon_sym_loop] = ACTIONS(5011), - [anon_sym_while] = ACTIONS(5011), - [anon_sym_do] = ACTIONS(5011), - [anon_sym_if] = ACTIONS(5011), - [anon_sym_match] = ACTIONS(5011), - [anon_sym_LBRACE] = ACTIONS(5011), - [anon_sym_DOT_DOT] = ACTIONS(5011), - [anon_sym_try] = ACTIONS(5011), - [anon_sym_return] = ACTIONS(5011), - [anon_sym_source] = ACTIONS(5011), - [anon_sym_source_DASHenv] = ACTIONS(5011), - [anon_sym_register] = ACTIONS(5011), - [anon_sym_hide] = ACTIONS(5011), - [anon_sym_hide_DASHenv] = ACTIONS(5011), - [anon_sym_overlay] = ACTIONS(5011), - [anon_sym_as] = ACTIONS(5011), - [anon_sym_where] = ACTIONS(5011), - [anon_sym_not] = ACTIONS(5011), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5011), - [anon_sym_DOT_DOT_LT] = ACTIONS(5011), - [anon_sym_null] = ACTIONS(5011), - [anon_sym_true] = ACTIONS(5011), - [anon_sym_false] = ACTIONS(5011), - [aux_sym__val_number_decimal_token1] = ACTIONS(5011), - [aux_sym__val_number_decimal_token2] = ACTIONS(5011), - [anon_sym_DOT2] = ACTIONS(5011), - [aux_sym__val_number_decimal_token3] = ACTIONS(5011), - [aux_sym__val_number_token1] = ACTIONS(5011), - [aux_sym__val_number_token2] = ACTIONS(5011), - [aux_sym__val_number_token3] = ACTIONS(5011), - [aux_sym__val_number_token4] = ACTIONS(5011), - [aux_sym__val_number_token5] = ACTIONS(5011), - [aux_sym__val_number_token6] = ACTIONS(5011), - [anon_sym_0b] = ACTIONS(5011), - [anon_sym_0o] = ACTIONS(5011), - [anon_sym_0x] = ACTIONS(5011), - [sym_val_date] = ACTIONS(5011), - [anon_sym_DQUOTE] = ACTIONS(5011), - [sym__str_single_quotes] = ACTIONS(5011), - [sym__str_back_ticks] = ACTIONS(5011), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5011), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5011), - [anon_sym_CARET] = ACTIONS(5011), + [1976] = { + [sym_comment] = STATE(1976), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_COMMA] = ACTIONS(1093), + [anon_sym_RBRACK] = ACTIONS(1093), + [anon_sym_LPAREN] = ACTIONS(1093), + [anon_sym_DOLLAR] = ACTIONS(1093), + [anon_sym_GT] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_in] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1093), + [anon_sym_DOT_DOT] = ACTIONS(1093), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_STAR_STAR] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1093), + [anon_sym_SLASH] = ACTIONS(1093), + [anon_sym_mod] = ACTIONS(1093), + [anon_sym_SLASH_SLASH] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_bit_DASHshl] = ACTIONS(1093), + [anon_sym_bit_DASHshr] = ACTIONS(1093), + [anon_sym_EQ_EQ] = ACTIONS(1093), + [anon_sym_BANG_EQ] = ACTIONS(1093), + [anon_sym_LT2] = ACTIONS(1093), + [anon_sym_LT_EQ] = ACTIONS(1093), + [anon_sym_GT_EQ] = ACTIONS(1093), + [anon_sym_not_DASHin] = ACTIONS(1093), + [anon_sym_starts_DASHwith] = ACTIONS(1093), + [anon_sym_ends_DASHwith] = ACTIONS(1093), + [anon_sym_EQ_TILDE] = ACTIONS(1093), + [anon_sym_BANG_TILDE] = ACTIONS(1093), + [anon_sym_bit_DASHand] = ACTIONS(1093), + [anon_sym_bit_DASHxor] = ACTIONS(1093), + [anon_sym_bit_DASHor] = ACTIONS(1093), + [anon_sym_and] = ACTIONS(1093), + [anon_sym_xor] = ACTIONS(1093), + [anon_sym_or] = ACTIONS(1093), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1093), + [anon_sym_DOT_DOT_LT] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1093), + [anon_sym_true] = ACTIONS(1093), + [anon_sym_false] = ACTIONS(1093), + [aux_sym__val_number_decimal_token1] = ACTIONS(1093), + [aux_sym__val_number_decimal_token2] = ACTIONS(1093), + [anon_sym_DOT2] = ACTIONS(1093), + [aux_sym__val_number_decimal_token3] = ACTIONS(1093), + [aux_sym__val_number_token1] = ACTIONS(1093), + [aux_sym__val_number_token2] = ACTIONS(1093), + [aux_sym__val_number_token3] = ACTIONS(1093), + [aux_sym__val_number_token4] = ACTIONS(1093), + [aux_sym__val_number_token5] = ACTIONS(1093), + [aux_sym__val_number_token6] = ACTIONS(1093), + [anon_sym_0b] = ACTIONS(1093), + [anon_sym_0o] = ACTIONS(1093), + [anon_sym_0x] = ACTIONS(1093), + [sym_val_date] = ACTIONS(1093), + [anon_sym_DQUOTE] = ACTIONS(1093), + [sym__str_single_quotes] = ACTIONS(1093), + [sym__str_back_ticks] = ACTIONS(1093), + [sym__entry_separator] = ACTIONS(1095), + [anon_sym_err_GT] = ACTIONS(1093), + [anon_sym_out_GT] = ACTIONS(1093), + [anon_sym_e_GT] = ACTIONS(1093), + [anon_sym_o_GT] = ACTIONS(1093), + [anon_sym_err_PLUSout_GT] = ACTIONS(1093), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1093), + [anon_sym_o_PLUSe_GT] = ACTIONS(1093), + [anon_sym_e_PLUSo_GT] = ACTIONS(1093), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1093), [anon_sym_POUND] = ACTIONS(113), }, - [1765] = { - [sym_comment] = STATE(1765), - [anon_sym_export] = ACTIONS(1194), - [anon_sym_alias] = ACTIONS(1194), - [anon_sym_let] = ACTIONS(1194), - [anon_sym_let_DASHenv] = ACTIONS(1194), - [anon_sym_mut] = ACTIONS(1194), - [anon_sym_const] = ACTIONS(1194), - [anon_sym_SEMI] = ACTIONS(1194), - [sym_cmd_identifier] = ACTIONS(1194), - [anon_sym_LF] = ACTIONS(1196), - [anon_sym_def] = ACTIONS(1194), - [anon_sym_export_DASHenv] = ACTIONS(1194), - [anon_sym_extern] = ACTIONS(1194), - [anon_sym_module] = ACTIONS(1194), - [anon_sym_use] = ACTIONS(1194), - [anon_sym_LBRACK] = ACTIONS(1194), - [anon_sym_LPAREN] = ACTIONS(1194), - [anon_sym_RPAREN] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1194), - [anon_sym_error] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_break] = ACTIONS(1194), - [anon_sym_continue] = ACTIONS(1194), - [anon_sym_for] = ACTIONS(1194), - [anon_sym_loop] = ACTIONS(1194), - [anon_sym_while] = ACTIONS(1194), - [anon_sym_do] = ACTIONS(1194), - [anon_sym_if] = ACTIONS(1194), - [anon_sym_match] = ACTIONS(1194), - [anon_sym_LBRACE] = ACTIONS(1194), - [anon_sym_RBRACE] = ACTIONS(1194), - [anon_sym_DOT_DOT] = ACTIONS(1194), - [anon_sym_try] = ACTIONS(1194), - [anon_sym_return] = ACTIONS(1194), - [anon_sym_source] = ACTIONS(1194), - [anon_sym_source_DASHenv] = ACTIONS(1194), - [anon_sym_register] = ACTIONS(1194), - [anon_sym_hide] = ACTIONS(1194), - [anon_sym_hide_DASHenv] = ACTIONS(1194), - [anon_sym_overlay] = ACTIONS(1194), - [anon_sym_as] = ACTIONS(1194), - [anon_sym_where] = ACTIONS(1194), - [anon_sym_not] = ACTIONS(1194), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1194), - [anon_sym_DOT_DOT_LT] = ACTIONS(1194), - [anon_sym_null] = ACTIONS(1194), - [anon_sym_true] = ACTIONS(1194), - [anon_sym_false] = ACTIONS(1194), - [aux_sym__val_number_decimal_token1] = ACTIONS(1194), - [aux_sym__val_number_decimal_token2] = ACTIONS(1194), - [anon_sym_DOT2] = ACTIONS(1194), - [aux_sym__val_number_decimal_token3] = ACTIONS(1194), - [aux_sym__val_number_token1] = ACTIONS(1194), - [aux_sym__val_number_token2] = ACTIONS(1194), - [aux_sym__val_number_token3] = ACTIONS(1194), - [aux_sym__val_number_token4] = ACTIONS(1194), - [aux_sym__val_number_token5] = ACTIONS(1194), - [aux_sym__val_number_token6] = ACTIONS(1194), - [anon_sym_0b] = ACTIONS(1194), - [anon_sym_0o] = ACTIONS(1194), - [anon_sym_0x] = ACTIONS(1194), - [sym_val_date] = ACTIONS(1194), - [anon_sym_DQUOTE] = ACTIONS(1194), - [sym__str_single_quotes] = ACTIONS(1194), - [sym__str_back_ticks] = ACTIONS(1194), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1194), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1194), - [anon_sym_CARET] = ACTIONS(1194), + [1977] = { + [sym__terminator] = STATE(2372), + [sym_comment] = STATE(1977), + [aux_sym__block_body_repeat1] = STATE(1977), + [anon_sym_export] = ACTIONS(5609), + [anon_sym_alias] = ACTIONS(5609), + [anon_sym_let] = ACTIONS(5609), + [anon_sym_let_DASHenv] = ACTIONS(5609), + [anon_sym_mut] = ACTIONS(5609), + [anon_sym_const] = ACTIONS(5609), + [anon_sym_SEMI] = ACTIONS(5611), + [sym_cmd_identifier] = ACTIONS(5609), + [anon_sym_LF] = ACTIONS(5614), + [anon_sym_def] = ACTIONS(5609), + [anon_sym_export_DASHenv] = ACTIONS(5609), + [anon_sym_extern] = ACTIONS(5609), + [anon_sym_module] = ACTIONS(5609), + [anon_sym_use] = ACTIONS(5609), + [anon_sym_LBRACK] = ACTIONS(5609), + [anon_sym_LPAREN] = ACTIONS(5609), + [anon_sym_RPAREN] = ACTIONS(5609), + [anon_sym_DOLLAR] = ACTIONS(5609), + [anon_sym_error] = ACTIONS(5609), + [anon_sym_DASH] = ACTIONS(5609), + [anon_sym_break] = ACTIONS(5609), + [anon_sym_continue] = ACTIONS(5609), + [anon_sym_for] = ACTIONS(5609), + [anon_sym_loop] = ACTIONS(5609), + [anon_sym_while] = ACTIONS(5609), + [anon_sym_do] = ACTIONS(5609), + [anon_sym_if] = ACTIONS(5609), + [anon_sym_match] = ACTIONS(5609), + [anon_sym_LBRACE] = ACTIONS(5609), + [anon_sym_RBRACE] = ACTIONS(5609), + [anon_sym_DOT_DOT] = ACTIONS(5609), + [anon_sym_try] = ACTIONS(5609), + [anon_sym_return] = ACTIONS(5609), + [anon_sym_source] = ACTIONS(5609), + [anon_sym_source_DASHenv] = ACTIONS(5609), + [anon_sym_register] = ACTIONS(5609), + [anon_sym_hide] = ACTIONS(5609), + [anon_sym_hide_DASHenv] = ACTIONS(5609), + [anon_sym_overlay] = ACTIONS(5609), + [anon_sym_where] = ACTIONS(5609), + [anon_sym_not] = ACTIONS(5609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5609), + [anon_sym_DOT_DOT_LT] = ACTIONS(5609), + [anon_sym_null] = ACTIONS(5609), + [anon_sym_true] = ACTIONS(5609), + [anon_sym_false] = ACTIONS(5609), + [aux_sym__val_number_decimal_token1] = ACTIONS(5609), + [aux_sym__val_number_decimal_token2] = ACTIONS(5609), + [anon_sym_DOT2] = ACTIONS(5609), + [aux_sym__val_number_decimal_token3] = ACTIONS(5609), + [aux_sym__val_number_token1] = ACTIONS(5609), + [aux_sym__val_number_token2] = ACTIONS(5609), + [aux_sym__val_number_token3] = ACTIONS(5609), + [aux_sym__val_number_token4] = ACTIONS(5609), + [aux_sym__val_number_token5] = ACTIONS(5609), + [aux_sym__val_number_token6] = ACTIONS(5609), + [anon_sym_0b] = ACTIONS(5609), + [anon_sym_0o] = ACTIONS(5609), + [anon_sym_0x] = ACTIONS(5609), + [sym_val_date] = ACTIONS(5609), + [anon_sym_DQUOTE] = ACTIONS(5609), + [sym__str_single_quotes] = ACTIONS(5609), + [sym__str_back_ticks] = ACTIONS(5609), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5609), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5609), + [anon_sym_CARET] = ACTIONS(5609), [anon_sym_POUND] = ACTIONS(113), }, - [1766] = { - [sym_comment] = STATE(1766), - [ts_builtin_sym_end] = ACTIONS(5079), - [anon_sym_export] = ACTIONS(5075), - [anon_sym_alias] = ACTIONS(5075), - [anon_sym_let] = ACTIONS(5075), - [anon_sym_let_DASHenv] = ACTIONS(5075), - [anon_sym_mut] = ACTIONS(5075), - [anon_sym_const] = ACTIONS(5075), - [anon_sym_SEMI] = ACTIONS(5075), - [sym_cmd_identifier] = ACTIONS(5075), - [sym_long_flag_identifier] = ACTIONS(5169), - [anon_sym_LF] = ACTIONS(5079), - [anon_sym_def] = ACTIONS(5075), - [anon_sym_export_DASHenv] = ACTIONS(5075), - [anon_sym_extern] = ACTIONS(5075), - [anon_sym_module] = ACTIONS(5075), - [anon_sym_use] = ACTIONS(5075), - [anon_sym_LBRACK] = ACTIONS(5075), - [anon_sym_LPAREN] = ACTIONS(5075), - [anon_sym_DOLLAR] = ACTIONS(5075), - [anon_sym_error] = ACTIONS(5075), - [anon_sym_DASH_DASH] = ACTIONS(5075), - [anon_sym_DASH] = ACTIONS(5075), - [anon_sym_break] = ACTIONS(5075), - [anon_sym_continue] = ACTIONS(5075), - [anon_sym_for] = ACTIONS(5075), - [anon_sym_loop] = ACTIONS(5075), - [anon_sym_while] = ACTIONS(5075), - [anon_sym_do] = ACTIONS(5075), - [anon_sym_if] = ACTIONS(5075), - [anon_sym_match] = ACTIONS(5075), - [anon_sym_LBRACE] = ACTIONS(5075), - [anon_sym_DOT_DOT] = ACTIONS(5075), - [anon_sym_try] = ACTIONS(5075), - [anon_sym_return] = ACTIONS(5075), - [anon_sym_source] = ACTIONS(5075), - [anon_sym_source_DASHenv] = ACTIONS(5075), - [anon_sym_register] = ACTIONS(5075), - [anon_sym_hide] = ACTIONS(5075), - [anon_sym_hide_DASHenv] = ACTIONS(5075), - [anon_sym_overlay] = ACTIONS(5075), - [anon_sym_as] = ACTIONS(5075), - [anon_sym_where] = ACTIONS(5075), - [anon_sym_not] = ACTIONS(5075), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5075), - [anon_sym_DOT_DOT_LT] = ACTIONS(5075), - [anon_sym_null] = ACTIONS(5075), - [anon_sym_true] = ACTIONS(5075), - [anon_sym_false] = ACTIONS(5075), - [aux_sym__val_number_decimal_token1] = ACTIONS(5075), - [aux_sym__val_number_decimal_token2] = ACTIONS(5075), - [anon_sym_DOT2] = ACTIONS(5075), - [aux_sym__val_number_decimal_token3] = ACTIONS(5075), - [aux_sym__val_number_token1] = ACTIONS(5075), - [aux_sym__val_number_token2] = ACTIONS(5075), - [aux_sym__val_number_token3] = ACTIONS(5075), - [aux_sym__val_number_token4] = ACTIONS(5075), - [aux_sym__val_number_token5] = ACTIONS(5075), - [aux_sym__val_number_token6] = ACTIONS(5075), - [anon_sym_0b] = ACTIONS(5075), - [anon_sym_0o] = ACTIONS(5075), - [anon_sym_0x] = ACTIONS(5075), - [sym_val_date] = ACTIONS(5075), - [anon_sym_DQUOTE] = ACTIONS(5075), - [sym__str_single_quotes] = ACTIONS(5075), - [sym__str_back_ticks] = ACTIONS(5075), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5075), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5075), - [anon_sym_CARET] = ACTIONS(5075), + [1978] = { + [sym_comment] = STATE(1978), + [anon_sym_LBRACK] = ACTIONS(1237), + [anon_sym_COMMA] = ACTIONS(1237), + [anon_sym_RBRACK] = ACTIONS(1237), + [anon_sym_LPAREN] = ACTIONS(1237), + [anon_sym_DOLLAR] = ACTIONS(1237), + [anon_sym_GT] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), + [anon_sym_DASH] = ACTIONS(1237), + [anon_sym_in] = ACTIONS(1237), + [anon_sym_LBRACE] = ACTIONS(1237), + [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_STAR] = ACTIONS(1237), + [anon_sym_STAR_STAR] = ACTIONS(1237), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_SLASH] = ACTIONS(1237), + [anon_sym_mod] = ACTIONS(1237), + [anon_sym_SLASH_SLASH] = ACTIONS(1237), + [anon_sym_PLUS] = ACTIONS(1237), + [anon_sym_bit_DASHshl] = ACTIONS(1237), + [anon_sym_bit_DASHshr] = ACTIONS(1237), + [anon_sym_EQ_EQ] = ACTIONS(1237), + [anon_sym_BANG_EQ] = ACTIONS(1237), + [anon_sym_LT2] = ACTIONS(1237), + [anon_sym_LT_EQ] = ACTIONS(1237), + [anon_sym_GT_EQ] = ACTIONS(1237), + [anon_sym_not_DASHin] = ACTIONS(1237), + [anon_sym_starts_DASHwith] = ACTIONS(1237), + [anon_sym_ends_DASHwith] = ACTIONS(1237), + [anon_sym_EQ_TILDE] = ACTIONS(1237), + [anon_sym_BANG_TILDE] = ACTIONS(1237), + [anon_sym_bit_DASHand] = ACTIONS(1237), + [anon_sym_bit_DASHxor] = ACTIONS(1237), + [anon_sym_bit_DASHor] = ACTIONS(1237), + [anon_sym_and] = ACTIONS(1237), + [anon_sym_xor] = ACTIONS(1237), + [anon_sym_or] = ACTIONS(1237), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1237), + [anon_sym_DOT_DOT_LT] = ACTIONS(1237), + [anon_sym_null] = ACTIONS(1237), + [anon_sym_true] = ACTIONS(1237), + [anon_sym_false] = ACTIONS(1237), + [aux_sym__val_number_decimal_token1] = ACTIONS(1237), + [aux_sym__val_number_decimal_token2] = ACTIONS(1237), + [anon_sym_DOT2] = ACTIONS(1237), + [aux_sym__val_number_decimal_token3] = ACTIONS(1237), + [aux_sym__val_number_token1] = ACTIONS(1237), + [aux_sym__val_number_token2] = ACTIONS(1237), + [aux_sym__val_number_token3] = ACTIONS(1237), + [aux_sym__val_number_token4] = ACTIONS(1237), + [aux_sym__val_number_token5] = ACTIONS(1237), + [aux_sym__val_number_token6] = ACTIONS(1237), + [anon_sym_0b] = ACTIONS(1237), + [anon_sym_0o] = ACTIONS(1237), + [anon_sym_0x] = ACTIONS(1237), + [sym_val_date] = ACTIONS(1237), + [anon_sym_DQUOTE] = ACTIONS(1237), + [sym__str_single_quotes] = ACTIONS(1237), + [sym__str_back_ticks] = ACTIONS(1237), + [sym__entry_separator] = ACTIONS(1239), + [anon_sym_err_GT] = ACTIONS(1237), + [anon_sym_out_GT] = ACTIONS(1237), + [anon_sym_e_GT] = ACTIONS(1237), + [anon_sym_o_GT] = ACTIONS(1237), + [anon_sym_err_PLUSout_GT] = ACTIONS(1237), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1237), + [anon_sym_o_PLUSe_GT] = ACTIONS(1237), + [anon_sym_e_PLUSo_GT] = ACTIONS(1237), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1237), [anon_sym_POUND] = ACTIONS(113), }, - [1767] = { - [sym_comment] = STATE(1767), - [anon_sym_export] = ACTIONS(5075), - [anon_sym_alias] = ACTIONS(5075), - [anon_sym_let] = ACTIONS(5075), - [anon_sym_let_DASHenv] = ACTIONS(5075), - [anon_sym_mut] = ACTIONS(5075), - [anon_sym_const] = ACTIONS(5075), - [anon_sym_SEMI] = ACTIONS(5075), - [sym_cmd_identifier] = ACTIONS(5075), - [anon_sym_LF] = ACTIONS(5079), - [anon_sym_def] = ACTIONS(5075), - [anon_sym_export_DASHenv] = ACTIONS(5075), - [anon_sym_extern] = ACTIONS(5075), - [anon_sym_module] = ACTIONS(5075), - [anon_sym_use] = ACTIONS(5075), - [anon_sym_LBRACK] = ACTIONS(5075), - [anon_sym_LPAREN] = ACTIONS(5075), - [anon_sym_RPAREN] = ACTIONS(5075), - [anon_sym_DOLLAR] = ACTIONS(5075), - [anon_sym_error] = ACTIONS(5075), - [anon_sym_DASH_DASH] = ACTIONS(5075), - [anon_sym_DASH] = ACTIONS(5075), - [anon_sym_break] = ACTIONS(5075), - [anon_sym_continue] = ACTIONS(5075), - [anon_sym_for] = ACTIONS(5075), - [anon_sym_loop] = ACTIONS(5075), - [anon_sym_while] = ACTIONS(5075), - [anon_sym_do] = ACTIONS(5075), - [anon_sym_if] = ACTIONS(5075), - [anon_sym_match] = ACTIONS(5075), - [anon_sym_LBRACE] = ACTIONS(5075), - [anon_sym_RBRACE] = ACTIONS(5075), - [anon_sym_DOT_DOT] = ACTIONS(5075), - [anon_sym_try] = ACTIONS(5075), - [anon_sym_return] = ACTIONS(5075), - [anon_sym_source] = ACTIONS(5075), - [anon_sym_source_DASHenv] = ACTIONS(5075), - [anon_sym_register] = ACTIONS(5075), - [anon_sym_hide] = ACTIONS(5075), - [anon_sym_hide_DASHenv] = ACTIONS(5075), - [anon_sym_overlay] = ACTIONS(5075), - [anon_sym_as] = ACTIONS(5075), - [anon_sym_where] = ACTIONS(5075), - [anon_sym_not] = ACTIONS(5075), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5075), - [anon_sym_DOT_DOT_LT] = ACTIONS(5075), - [anon_sym_null] = ACTIONS(5075), - [anon_sym_true] = ACTIONS(5075), - [anon_sym_false] = ACTIONS(5075), - [aux_sym__val_number_decimal_token1] = ACTIONS(5075), - [aux_sym__val_number_decimal_token2] = ACTIONS(5075), - [anon_sym_DOT2] = ACTIONS(5075), - [aux_sym__val_number_decimal_token3] = ACTIONS(5075), - [aux_sym__val_number_token1] = ACTIONS(5075), - [aux_sym__val_number_token2] = ACTIONS(5075), - [aux_sym__val_number_token3] = ACTIONS(5075), - [aux_sym__val_number_token4] = ACTIONS(5075), - [aux_sym__val_number_token5] = ACTIONS(5075), - [aux_sym__val_number_token6] = ACTIONS(5075), - [anon_sym_0b] = ACTIONS(5075), - [anon_sym_0o] = ACTIONS(5075), - [anon_sym_0x] = ACTIONS(5075), - [sym_val_date] = ACTIONS(5075), - [anon_sym_DQUOTE] = ACTIONS(5075), - [sym__str_single_quotes] = ACTIONS(5075), - [sym__str_back_ticks] = ACTIONS(5075), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5075), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5075), - [anon_sym_CARET] = ACTIONS(5075), + [1979] = { + [sym_comment] = STATE(1979), + [anon_sym_export] = ACTIONS(1211), + [anon_sym_alias] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(1211), + [anon_sym_let_DASHenv] = ACTIONS(1211), + [anon_sym_mut] = ACTIONS(1211), + [anon_sym_const] = ACTIONS(1211), + [anon_sym_SEMI] = ACTIONS(1211), + [sym_cmd_identifier] = ACTIONS(1211), + [anon_sym_LF] = ACTIONS(1213), + [anon_sym_def] = ACTIONS(1211), + [anon_sym_export_DASHenv] = ACTIONS(1211), + [anon_sym_extern] = ACTIONS(1211), + [anon_sym_module] = ACTIONS(1211), + [anon_sym_use] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(1211), + [anon_sym_RPAREN] = ACTIONS(1211), + [anon_sym_DOLLAR] = ACTIONS(1211), + [anon_sym_error] = ACTIONS(1211), + [anon_sym_DASH_DASH] = ACTIONS(1211), + [anon_sym_DASH] = ACTIONS(1211), + [anon_sym_break] = ACTIONS(1211), + [anon_sym_continue] = ACTIONS(1211), + [anon_sym_for] = ACTIONS(1211), + [anon_sym_loop] = ACTIONS(1211), + [anon_sym_while] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(1211), + [anon_sym_if] = ACTIONS(1211), + [anon_sym_match] = ACTIONS(1211), + [anon_sym_LBRACE] = ACTIONS(1211), + [anon_sym_RBRACE] = ACTIONS(1211), + [anon_sym_DOT_DOT] = ACTIONS(1211), + [anon_sym_try] = ACTIONS(1211), + [anon_sym_return] = ACTIONS(1211), + [anon_sym_source] = ACTIONS(1211), + [anon_sym_source_DASHenv] = ACTIONS(1211), + [anon_sym_register] = ACTIONS(1211), + [anon_sym_hide] = ACTIONS(1211), + [anon_sym_hide_DASHenv] = ACTIONS(1211), + [anon_sym_overlay] = ACTIONS(1211), + [anon_sym_as] = ACTIONS(1211), + [anon_sym_where] = ACTIONS(1211), + [anon_sym_not] = ACTIONS(1211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1211), + [anon_sym_DOT_DOT_LT] = ACTIONS(1211), + [anon_sym_null] = ACTIONS(1211), + [anon_sym_true] = ACTIONS(1211), + [anon_sym_false] = ACTIONS(1211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1211), + [aux_sym__val_number_decimal_token2] = ACTIONS(1211), + [anon_sym_DOT2] = ACTIONS(1211), + [aux_sym__val_number_decimal_token3] = ACTIONS(1211), + [aux_sym__val_number_token1] = ACTIONS(1211), + [aux_sym__val_number_token2] = ACTIONS(1211), + [aux_sym__val_number_token3] = ACTIONS(1211), + [aux_sym__val_number_token4] = ACTIONS(1211), + [aux_sym__val_number_token5] = ACTIONS(1211), + [aux_sym__val_number_token6] = ACTIONS(1211), + [anon_sym_0b] = ACTIONS(1211), + [anon_sym_0o] = ACTIONS(1211), + [anon_sym_0x] = ACTIONS(1211), + [sym_val_date] = ACTIONS(1211), + [anon_sym_DQUOTE] = ACTIONS(1211), + [sym__str_single_quotes] = ACTIONS(1211), + [sym__str_back_ticks] = ACTIONS(1211), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1211), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1211), + [anon_sym_CARET] = ACTIONS(1211), [anon_sym_POUND] = ACTIONS(113), }, - [1768] = { - [sym_comment] = STATE(1768), - [anon_sym_export] = ACTIONS(5171), - [anon_sym_alias] = ACTIONS(5171), - [anon_sym_let] = ACTIONS(5171), - [anon_sym_let_DASHenv] = ACTIONS(5171), - [anon_sym_mut] = ACTIONS(5171), - [anon_sym_const] = ACTIONS(5171), - [anon_sym_SEMI] = ACTIONS(5171), - [sym_cmd_identifier] = ACTIONS(5171), - [anon_sym_LF] = ACTIONS(5173), - [anon_sym_def] = ACTIONS(5171), - [anon_sym_export_DASHenv] = ACTIONS(5171), - [anon_sym_extern] = ACTIONS(5171), - [anon_sym_module] = ACTIONS(5171), - [anon_sym_use] = ACTIONS(5171), - [anon_sym_LBRACK] = ACTIONS(5171), - [anon_sym_LPAREN] = ACTIONS(5171), - [anon_sym_RPAREN] = ACTIONS(5171), - [anon_sym_DOLLAR] = ACTIONS(5171), - [anon_sym_error] = ACTIONS(5171), - [anon_sym_DASH_DASH] = ACTIONS(5171), - [anon_sym_DASH] = ACTIONS(5171), - [anon_sym_break] = ACTIONS(5171), - [anon_sym_continue] = ACTIONS(5171), - [anon_sym_for] = ACTIONS(5171), - [anon_sym_loop] = ACTIONS(5171), - [anon_sym_while] = ACTIONS(5171), - [anon_sym_do] = ACTIONS(5171), - [anon_sym_if] = ACTIONS(5171), - [anon_sym_match] = ACTIONS(5171), - [anon_sym_LBRACE] = ACTIONS(5171), - [anon_sym_RBRACE] = ACTIONS(5171), - [anon_sym_DOT_DOT] = ACTIONS(5171), - [anon_sym_try] = ACTIONS(5171), - [anon_sym_return] = ACTIONS(5171), - [anon_sym_source] = ACTIONS(5171), - [anon_sym_source_DASHenv] = ACTIONS(5171), - [anon_sym_register] = ACTIONS(5171), - [anon_sym_hide] = ACTIONS(5171), - [anon_sym_hide_DASHenv] = ACTIONS(5171), - [anon_sym_overlay] = ACTIONS(5171), - [anon_sym_as] = ACTIONS(5171), - [anon_sym_where] = ACTIONS(5171), - [anon_sym_not] = ACTIONS(5171), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5171), - [anon_sym_DOT_DOT_LT] = ACTIONS(5171), - [anon_sym_null] = ACTIONS(5171), - [anon_sym_true] = ACTIONS(5171), - [anon_sym_false] = ACTIONS(5171), - [aux_sym__val_number_decimal_token1] = ACTIONS(5171), - [aux_sym__val_number_decimal_token2] = ACTIONS(5171), - [anon_sym_DOT2] = ACTIONS(5171), - [aux_sym__val_number_decimal_token3] = ACTIONS(5171), - [aux_sym__val_number_token1] = ACTIONS(5171), - [aux_sym__val_number_token2] = ACTIONS(5171), - [aux_sym__val_number_token3] = ACTIONS(5171), - [aux_sym__val_number_token4] = ACTIONS(5171), - [aux_sym__val_number_token5] = ACTIONS(5171), - [aux_sym__val_number_token6] = ACTIONS(5171), - [anon_sym_0b] = ACTIONS(5171), - [anon_sym_0o] = ACTIONS(5171), - [anon_sym_0x] = ACTIONS(5171), - [sym_val_date] = ACTIONS(5171), - [anon_sym_DQUOTE] = ACTIONS(5171), - [sym__str_single_quotes] = ACTIONS(5171), - [sym__str_back_ticks] = ACTIONS(5171), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5171), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5171), - [anon_sym_CARET] = ACTIONS(5171), + [1980] = { + [sym_comment] = STATE(1980), + [anon_sym_LBRACK] = ACTIONS(1241), + [anon_sym_COMMA] = ACTIONS(1241), + [anon_sym_RBRACK] = ACTIONS(1241), + [anon_sym_LPAREN] = ACTIONS(1241), + [anon_sym_DOLLAR] = ACTIONS(1241), + [anon_sym_GT] = ACTIONS(1241), + [anon_sym_DASH_DASH] = ACTIONS(1241), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_in] = ACTIONS(1241), + [anon_sym_LBRACE] = ACTIONS(1241), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_STAR] = ACTIONS(1241), + [anon_sym_STAR_STAR] = ACTIONS(1241), + [anon_sym_PLUS_PLUS] = ACTIONS(1241), + [anon_sym_SLASH] = ACTIONS(1241), + [anon_sym_mod] = ACTIONS(1241), + [anon_sym_SLASH_SLASH] = ACTIONS(1241), + [anon_sym_PLUS] = ACTIONS(1241), + [anon_sym_bit_DASHshl] = ACTIONS(1241), + [anon_sym_bit_DASHshr] = ACTIONS(1241), + [anon_sym_EQ_EQ] = ACTIONS(1241), + [anon_sym_BANG_EQ] = ACTIONS(1241), + [anon_sym_LT2] = ACTIONS(1241), + [anon_sym_LT_EQ] = ACTIONS(1241), + [anon_sym_GT_EQ] = ACTIONS(1241), + [anon_sym_not_DASHin] = ACTIONS(1241), + [anon_sym_starts_DASHwith] = ACTIONS(1241), + [anon_sym_ends_DASHwith] = ACTIONS(1241), + [anon_sym_EQ_TILDE] = ACTIONS(1241), + [anon_sym_BANG_TILDE] = ACTIONS(1241), + [anon_sym_bit_DASHand] = ACTIONS(1241), + [anon_sym_bit_DASHxor] = ACTIONS(1241), + [anon_sym_bit_DASHor] = ACTIONS(1241), + [anon_sym_and] = ACTIONS(1241), + [anon_sym_xor] = ACTIONS(1241), + [anon_sym_or] = ACTIONS(1241), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1241), + [anon_sym_DOT_DOT_LT] = ACTIONS(1241), + [anon_sym_null] = ACTIONS(1241), + [anon_sym_true] = ACTIONS(1241), + [anon_sym_false] = ACTIONS(1241), + [aux_sym__val_number_decimal_token1] = ACTIONS(1241), + [aux_sym__val_number_decimal_token2] = ACTIONS(1241), + [anon_sym_DOT2] = ACTIONS(1241), + [aux_sym__val_number_decimal_token3] = ACTIONS(1241), + [aux_sym__val_number_token1] = ACTIONS(1241), + [aux_sym__val_number_token2] = ACTIONS(1241), + [aux_sym__val_number_token3] = ACTIONS(1241), + [aux_sym__val_number_token4] = ACTIONS(1241), + [aux_sym__val_number_token5] = ACTIONS(1241), + [aux_sym__val_number_token6] = ACTIONS(1241), + [anon_sym_0b] = ACTIONS(1241), + [anon_sym_0o] = ACTIONS(1241), + [anon_sym_0x] = ACTIONS(1241), + [sym_val_date] = ACTIONS(1241), + [anon_sym_DQUOTE] = ACTIONS(1241), + [sym__str_single_quotes] = ACTIONS(1241), + [sym__str_back_ticks] = ACTIONS(1241), + [sym__entry_separator] = ACTIONS(1243), + [anon_sym_err_GT] = ACTIONS(1241), + [anon_sym_out_GT] = ACTIONS(1241), + [anon_sym_e_GT] = ACTIONS(1241), + [anon_sym_o_GT] = ACTIONS(1241), + [anon_sym_err_PLUSout_GT] = ACTIONS(1241), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1241), + [anon_sym_o_PLUSe_GT] = ACTIONS(1241), + [anon_sym_e_PLUSo_GT] = ACTIONS(1241), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1241), [anon_sym_POUND] = ACTIONS(113), }, - [1769] = { - [sym_comment] = STATE(1769), - [anon_sym_export] = ACTIONS(3866), - [anon_sym_alias] = ACTIONS(3866), - [anon_sym_let] = ACTIONS(3866), - [anon_sym_let_DASHenv] = ACTIONS(3866), - [anon_sym_mut] = ACTIONS(3866), - [anon_sym_const] = ACTIONS(3866), - [anon_sym_SEMI] = ACTIONS(3866), - [sym_cmd_identifier] = ACTIONS(3866), - [anon_sym_LF] = ACTIONS(3868), - [anon_sym_def] = ACTIONS(3866), - [anon_sym_export_DASHenv] = ACTIONS(3866), - [anon_sym_extern] = ACTIONS(3866), - [anon_sym_module] = ACTIONS(3866), - [anon_sym_use] = ACTIONS(3866), - [anon_sym_LBRACK] = ACTIONS(3866), - [anon_sym_LPAREN] = ACTIONS(3866), - [anon_sym_RPAREN] = ACTIONS(3866), - [anon_sym_DOLLAR] = ACTIONS(3866), - [anon_sym_error] = ACTIONS(3866), - [anon_sym_DASH_DASH] = ACTIONS(3866), - [anon_sym_DASH] = ACTIONS(3866), - [anon_sym_break] = ACTIONS(3866), - [anon_sym_continue] = ACTIONS(3866), - [anon_sym_for] = ACTIONS(3866), - [anon_sym_loop] = ACTIONS(3866), - [anon_sym_while] = ACTIONS(3866), - [anon_sym_do] = ACTIONS(3866), - [anon_sym_if] = ACTIONS(3866), - [anon_sym_match] = ACTIONS(3866), - [anon_sym_LBRACE] = ACTIONS(3866), - [anon_sym_RBRACE] = ACTIONS(3866), - [anon_sym_DOT_DOT] = ACTIONS(3866), - [anon_sym_try] = ACTIONS(3866), - [anon_sym_return] = ACTIONS(3866), - [anon_sym_source] = ACTIONS(3866), - [anon_sym_source_DASHenv] = ACTIONS(3866), - [anon_sym_register] = ACTIONS(3866), - [anon_sym_hide] = ACTIONS(3866), - [anon_sym_hide_DASHenv] = ACTIONS(3866), - [anon_sym_overlay] = ACTIONS(3866), - [anon_sym_as] = ACTIONS(3866), - [anon_sym_where] = ACTIONS(3866), - [anon_sym_not] = ACTIONS(3866), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3866), - [anon_sym_DOT_DOT_LT] = ACTIONS(3866), - [anon_sym_null] = ACTIONS(3866), - [anon_sym_true] = ACTIONS(3866), - [anon_sym_false] = ACTIONS(3866), - [aux_sym__val_number_decimal_token1] = ACTIONS(3866), - [aux_sym__val_number_decimal_token2] = ACTIONS(3866), - [anon_sym_DOT2] = ACTIONS(3866), - [aux_sym__val_number_decimal_token3] = ACTIONS(3866), - [aux_sym__val_number_token1] = ACTIONS(3866), - [aux_sym__val_number_token2] = ACTIONS(3866), - [aux_sym__val_number_token3] = ACTIONS(3866), - [aux_sym__val_number_token4] = ACTIONS(3866), - [aux_sym__val_number_token5] = ACTIONS(3866), - [aux_sym__val_number_token6] = ACTIONS(3866), - [anon_sym_0b] = ACTIONS(3866), - [anon_sym_0o] = ACTIONS(3866), - [anon_sym_0x] = ACTIONS(3866), - [sym_val_date] = ACTIONS(3866), - [anon_sym_DQUOTE] = ACTIONS(3866), - [sym__str_single_quotes] = ACTIONS(3866), - [sym__str_back_ticks] = ACTIONS(3866), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3866), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), - [anon_sym_CARET] = ACTIONS(3866), + [1981] = { + [sym_comment] = STATE(1981), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_COMMA] = ACTIONS(1245), + [anon_sym_RBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_DOLLAR] = ACTIONS(1245), + [anon_sym_GT] = ACTIONS(1245), + [anon_sym_DASH_DASH] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_in] = ACTIONS(1245), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_DOT_DOT] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(1245), + [anon_sym_STAR_STAR] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(1245), + [anon_sym_mod] = ACTIONS(1245), + [anon_sym_SLASH_SLASH] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_bit_DASHshl] = ACTIONS(1245), + [anon_sym_bit_DASHshr] = ACTIONS(1245), + [anon_sym_EQ_EQ] = ACTIONS(1245), + [anon_sym_BANG_EQ] = ACTIONS(1245), + [anon_sym_LT2] = ACTIONS(1245), + [anon_sym_LT_EQ] = ACTIONS(1245), + [anon_sym_GT_EQ] = ACTIONS(1245), + [anon_sym_not_DASHin] = ACTIONS(1245), + [anon_sym_starts_DASHwith] = ACTIONS(1245), + [anon_sym_ends_DASHwith] = ACTIONS(1245), + [anon_sym_EQ_TILDE] = ACTIONS(1245), + [anon_sym_BANG_TILDE] = ACTIONS(1245), + [anon_sym_bit_DASHand] = ACTIONS(1245), + [anon_sym_bit_DASHxor] = ACTIONS(1245), + [anon_sym_bit_DASHor] = ACTIONS(1245), + [anon_sym_and] = ACTIONS(1245), + [anon_sym_xor] = ACTIONS(1245), + [anon_sym_or] = ACTIONS(1245), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1245), + [anon_sym_DOT_DOT_LT] = ACTIONS(1245), + [anon_sym_null] = ACTIONS(1245), + [anon_sym_true] = ACTIONS(1245), + [anon_sym_false] = ACTIONS(1245), + [aux_sym__val_number_decimal_token1] = ACTIONS(1245), + [aux_sym__val_number_decimal_token2] = ACTIONS(1245), + [anon_sym_DOT2] = ACTIONS(1245), + [aux_sym__val_number_decimal_token3] = ACTIONS(1245), + [aux_sym__val_number_token1] = ACTIONS(1245), + [aux_sym__val_number_token2] = ACTIONS(1245), + [aux_sym__val_number_token3] = ACTIONS(1245), + [aux_sym__val_number_token4] = ACTIONS(1245), + [aux_sym__val_number_token5] = ACTIONS(1245), + [aux_sym__val_number_token6] = ACTIONS(1245), + [anon_sym_0b] = ACTIONS(1245), + [anon_sym_0o] = ACTIONS(1245), + [anon_sym_0x] = ACTIONS(1245), + [sym_val_date] = ACTIONS(1245), + [anon_sym_DQUOTE] = ACTIONS(1245), + [sym__str_single_quotes] = ACTIONS(1245), + [sym__str_back_ticks] = ACTIONS(1245), + [sym__entry_separator] = ACTIONS(1247), + [anon_sym_err_GT] = ACTIONS(1245), + [anon_sym_out_GT] = ACTIONS(1245), + [anon_sym_e_GT] = ACTIONS(1245), + [anon_sym_o_GT] = ACTIONS(1245), + [anon_sym_err_PLUSout_GT] = ACTIONS(1245), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1245), + [anon_sym_o_PLUSe_GT] = ACTIONS(1245), + [anon_sym_e_PLUSo_GT] = ACTIONS(1245), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1245), [anon_sym_POUND] = ACTIONS(113), }, - [1770] = { - [sym_comment] = STATE(1770), - [anon_sym_export] = ACTIONS(4016), - [anon_sym_alias] = ACTIONS(4016), - [anon_sym_let] = ACTIONS(4016), - [anon_sym_let_DASHenv] = ACTIONS(4016), - [anon_sym_mut] = ACTIONS(4016), - [anon_sym_const] = ACTIONS(4016), - [anon_sym_SEMI] = ACTIONS(4016), - [sym_cmd_identifier] = ACTIONS(4016), - [anon_sym_LF] = ACTIONS(4018), - [anon_sym_def] = ACTIONS(4016), - [anon_sym_export_DASHenv] = ACTIONS(4016), - [anon_sym_extern] = ACTIONS(4016), - [anon_sym_module] = ACTIONS(4016), - [anon_sym_use] = ACTIONS(4016), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym_RPAREN] = ACTIONS(4016), - [anon_sym_DOLLAR] = ACTIONS(4016), - [anon_sym_error] = ACTIONS(4016), - [anon_sym_DASH_DASH] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_break] = ACTIONS(4016), - [anon_sym_continue] = ACTIONS(4016), - [anon_sym_for] = ACTIONS(4016), - [anon_sym_loop] = ACTIONS(4016), - [anon_sym_while] = ACTIONS(4016), - [anon_sym_do] = ACTIONS(4016), - [anon_sym_if] = ACTIONS(4016), - [anon_sym_match] = ACTIONS(4016), - [anon_sym_LBRACE] = ACTIONS(4016), - [anon_sym_RBRACE] = ACTIONS(4016), - [anon_sym_DOT_DOT] = ACTIONS(4016), - [anon_sym_try] = ACTIONS(4016), - [anon_sym_return] = ACTIONS(4016), - [anon_sym_source] = ACTIONS(4016), - [anon_sym_source_DASHenv] = ACTIONS(4016), - [anon_sym_register] = ACTIONS(4016), - [anon_sym_hide] = ACTIONS(4016), - [anon_sym_hide_DASHenv] = ACTIONS(4016), - [anon_sym_overlay] = ACTIONS(4016), - [anon_sym_as] = ACTIONS(4016), - [anon_sym_where] = ACTIONS(4016), - [anon_sym_not] = ACTIONS(4016), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4016), - [anon_sym_DOT_DOT_LT] = ACTIONS(4016), - [anon_sym_null] = ACTIONS(4016), - [anon_sym_true] = ACTIONS(4016), - [anon_sym_false] = ACTIONS(4016), - [aux_sym__val_number_decimal_token1] = ACTIONS(4016), - [aux_sym__val_number_decimal_token2] = ACTIONS(4016), - [anon_sym_DOT2] = ACTIONS(4016), - [aux_sym__val_number_decimal_token3] = ACTIONS(4016), - [aux_sym__val_number_token1] = ACTIONS(4016), - [aux_sym__val_number_token2] = ACTIONS(4016), - [aux_sym__val_number_token3] = ACTIONS(4016), - [aux_sym__val_number_token4] = ACTIONS(4016), - [aux_sym__val_number_token5] = ACTIONS(4016), - [aux_sym__val_number_token6] = ACTIONS(4016), - [anon_sym_0b] = ACTIONS(4016), - [anon_sym_0o] = ACTIONS(4016), - [anon_sym_0x] = ACTIONS(4016), - [sym_val_date] = ACTIONS(4016), - [anon_sym_DQUOTE] = ACTIONS(4016), - [sym__str_single_quotes] = ACTIONS(4016), - [sym__str_back_ticks] = ACTIONS(4016), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4016), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4016), - [anon_sym_CARET] = ACTIONS(4016), + [1982] = { + [sym_comment] = STATE(1982), + [anon_sym_LBRACK] = ACTIONS(1249), + [anon_sym_COMMA] = ACTIONS(1249), + [anon_sym_RBRACK] = ACTIONS(1249), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_DOLLAR] = ACTIONS(1249), + [anon_sym_GT] = ACTIONS(1249), + [anon_sym_DASH_DASH] = ACTIONS(1249), + [anon_sym_DASH] = ACTIONS(1249), + [anon_sym_in] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_DOT_DOT] = ACTIONS(1249), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_STAR_STAR] = ACTIONS(1249), + [anon_sym_PLUS_PLUS] = ACTIONS(1249), + [anon_sym_SLASH] = ACTIONS(1249), + [anon_sym_mod] = ACTIONS(1249), + [anon_sym_SLASH_SLASH] = ACTIONS(1249), + [anon_sym_PLUS] = ACTIONS(1249), + [anon_sym_bit_DASHshl] = ACTIONS(1249), + [anon_sym_bit_DASHshr] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1249), + [anon_sym_BANG_EQ] = ACTIONS(1249), + [anon_sym_LT2] = ACTIONS(1249), + [anon_sym_LT_EQ] = ACTIONS(1249), + [anon_sym_GT_EQ] = ACTIONS(1249), + [anon_sym_not_DASHin] = ACTIONS(1249), + [anon_sym_starts_DASHwith] = ACTIONS(1249), + [anon_sym_ends_DASHwith] = ACTIONS(1249), + [anon_sym_EQ_TILDE] = ACTIONS(1249), + [anon_sym_BANG_TILDE] = ACTIONS(1249), + [anon_sym_bit_DASHand] = ACTIONS(1249), + [anon_sym_bit_DASHxor] = ACTIONS(1249), + [anon_sym_bit_DASHor] = ACTIONS(1249), + [anon_sym_and] = ACTIONS(1249), + [anon_sym_xor] = ACTIONS(1249), + [anon_sym_or] = ACTIONS(1249), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1249), + [anon_sym_DOT_DOT_LT] = ACTIONS(1249), + [anon_sym_null] = ACTIONS(1249), + [anon_sym_true] = ACTIONS(1249), + [anon_sym_false] = ACTIONS(1249), + [aux_sym__val_number_decimal_token1] = ACTIONS(1249), + [aux_sym__val_number_decimal_token2] = ACTIONS(1249), + [anon_sym_DOT2] = ACTIONS(1249), + [aux_sym__val_number_decimal_token3] = ACTIONS(1249), + [aux_sym__val_number_token1] = ACTIONS(1249), + [aux_sym__val_number_token2] = ACTIONS(1249), + [aux_sym__val_number_token3] = ACTIONS(1249), + [aux_sym__val_number_token4] = ACTIONS(1249), + [aux_sym__val_number_token5] = ACTIONS(1249), + [aux_sym__val_number_token6] = ACTIONS(1249), + [anon_sym_0b] = ACTIONS(1249), + [anon_sym_0o] = ACTIONS(1249), + [anon_sym_0x] = ACTIONS(1249), + [sym_val_date] = ACTIONS(1249), + [anon_sym_DQUOTE] = ACTIONS(1249), + [sym__str_single_quotes] = ACTIONS(1249), + [sym__str_back_ticks] = ACTIONS(1249), + [sym__entry_separator] = ACTIONS(1251), + [anon_sym_err_GT] = ACTIONS(1249), + [anon_sym_out_GT] = ACTIONS(1249), + [anon_sym_e_GT] = ACTIONS(1249), + [anon_sym_o_GT] = ACTIONS(1249), + [anon_sym_err_PLUSout_GT] = ACTIONS(1249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1249), + [anon_sym_o_PLUSe_GT] = ACTIONS(1249), + [anon_sym_e_PLUSo_GT] = ACTIONS(1249), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1249), [anon_sym_POUND] = ACTIONS(113), }, - [1771] = { - [sym_comment] = STATE(1771), - [anon_sym_export] = ACTIONS(5175), - [anon_sym_alias] = ACTIONS(5175), - [anon_sym_let] = ACTIONS(5175), - [anon_sym_let_DASHenv] = ACTIONS(5175), - [anon_sym_mut] = ACTIONS(5175), - [anon_sym_const] = ACTIONS(5175), - [anon_sym_SEMI] = ACTIONS(5175), - [sym_cmd_identifier] = ACTIONS(5175), - [anon_sym_LF] = ACTIONS(5177), - [anon_sym_def] = ACTIONS(5175), - [anon_sym_export_DASHenv] = ACTIONS(5175), - [anon_sym_extern] = ACTIONS(5175), - [anon_sym_module] = ACTIONS(5175), - [anon_sym_use] = ACTIONS(5175), - [anon_sym_LBRACK] = ACTIONS(5175), - [anon_sym_LPAREN] = ACTIONS(5175), - [anon_sym_RPAREN] = ACTIONS(5175), - [anon_sym_DOLLAR] = ACTIONS(5175), - [anon_sym_error] = ACTIONS(5175), - [anon_sym_DASH_DASH] = ACTIONS(5175), - [anon_sym_DASH] = ACTIONS(5175), - [anon_sym_break] = ACTIONS(5175), - [anon_sym_continue] = ACTIONS(5175), - [anon_sym_for] = ACTIONS(5175), - [anon_sym_loop] = ACTIONS(5175), - [anon_sym_while] = ACTIONS(5175), - [anon_sym_do] = ACTIONS(5175), - [anon_sym_if] = ACTIONS(5175), - [anon_sym_match] = ACTIONS(5175), - [anon_sym_LBRACE] = ACTIONS(5175), - [anon_sym_RBRACE] = ACTIONS(5175), - [anon_sym_DOT_DOT] = ACTIONS(5175), - [anon_sym_try] = ACTIONS(5175), - [anon_sym_return] = ACTIONS(5175), - [anon_sym_source] = ACTIONS(5175), - [anon_sym_source_DASHenv] = ACTIONS(5175), - [anon_sym_register] = ACTIONS(5175), - [anon_sym_hide] = ACTIONS(5175), - [anon_sym_hide_DASHenv] = ACTIONS(5175), - [anon_sym_overlay] = ACTIONS(5175), - [anon_sym_as] = ACTIONS(5175), - [anon_sym_where] = ACTIONS(5175), - [anon_sym_not] = ACTIONS(5175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5175), - [anon_sym_DOT_DOT_LT] = ACTIONS(5175), - [anon_sym_null] = ACTIONS(5175), - [anon_sym_true] = ACTIONS(5175), - [anon_sym_false] = ACTIONS(5175), - [aux_sym__val_number_decimal_token1] = ACTIONS(5175), - [aux_sym__val_number_decimal_token2] = ACTIONS(5175), - [anon_sym_DOT2] = ACTIONS(5175), - [aux_sym__val_number_decimal_token3] = ACTIONS(5175), - [aux_sym__val_number_token1] = ACTIONS(5175), - [aux_sym__val_number_token2] = ACTIONS(5175), - [aux_sym__val_number_token3] = ACTIONS(5175), - [aux_sym__val_number_token4] = ACTIONS(5175), - [aux_sym__val_number_token5] = ACTIONS(5175), - [aux_sym__val_number_token6] = ACTIONS(5175), - [anon_sym_0b] = ACTIONS(5175), - [anon_sym_0o] = ACTIONS(5175), - [anon_sym_0x] = ACTIONS(5175), - [sym_val_date] = ACTIONS(5175), - [anon_sym_DQUOTE] = ACTIONS(5175), - [sym__str_single_quotes] = ACTIONS(5175), - [sym__str_back_ticks] = ACTIONS(5175), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5175), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5175), - [anon_sym_CARET] = ACTIONS(5175), + [1983] = { + [sym_comment] = STATE(1983), + [anon_sym_LBRACK] = ACTIONS(1253), + [anon_sym_COMMA] = ACTIONS(1253), + [anon_sym_RBRACK] = ACTIONS(1253), + [anon_sym_LPAREN] = ACTIONS(1253), + [anon_sym_DOLLAR] = ACTIONS(1253), + [anon_sym_GT] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_in] = ACTIONS(1253), + [anon_sym_LBRACE] = ACTIONS(1253), + [anon_sym_DOT_DOT] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_STAR_STAR] = ACTIONS(1253), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_SLASH] = ACTIONS(1253), + [anon_sym_mod] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(1253), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_bit_DASHshl] = ACTIONS(1253), + [anon_sym_bit_DASHshr] = ACTIONS(1253), + [anon_sym_EQ_EQ] = ACTIONS(1253), + [anon_sym_BANG_EQ] = ACTIONS(1253), + [anon_sym_LT2] = ACTIONS(1253), + [anon_sym_LT_EQ] = ACTIONS(1253), + [anon_sym_GT_EQ] = ACTIONS(1253), + [anon_sym_not_DASHin] = ACTIONS(1253), + [anon_sym_starts_DASHwith] = ACTIONS(1253), + [anon_sym_ends_DASHwith] = ACTIONS(1253), + [anon_sym_EQ_TILDE] = ACTIONS(1253), + [anon_sym_BANG_TILDE] = ACTIONS(1253), + [anon_sym_bit_DASHand] = ACTIONS(1253), + [anon_sym_bit_DASHxor] = ACTIONS(1253), + [anon_sym_bit_DASHor] = ACTIONS(1253), + [anon_sym_and] = ACTIONS(1253), + [anon_sym_xor] = ACTIONS(1253), + [anon_sym_or] = ACTIONS(1253), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1253), + [anon_sym_DOT_DOT_LT] = ACTIONS(1253), + [anon_sym_null] = ACTIONS(1253), + [anon_sym_true] = ACTIONS(1253), + [anon_sym_false] = ACTIONS(1253), + [aux_sym__val_number_decimal_token1] = ACTIONS(1253), + [aux_sym__val_number_decimal_token2] = ACTIONS(1253), + [anon_sym_DOT2] = ACTIONS(1253), + [aux_sym__val_number_decimal_token3] = ACTIONS(1253), + [aux_sym__val_number_token1] = ACTIONS(1253), + [aux_sym__val_number_token2] = ACTIONS(1253), + [aux_sym__val_number_token3] = ACTIONS(1253), + [aux_sym__val_number_token4] = ACTIONS(1253), + [aux_sym__val_number_token5] = ACTIONS(1253), + [aux_sym__val_number_token6] = ACTIONS(1253), + [anon_sym_0b] = ACTIONS(1253), + [anon_sym_0o] = ACTIONS(1253), + [anon_sym_0x] = ACTIONS(1253), + [sym_val_date] = ACTIONS(1253), + [anon_sym_DQUOTE] = ACTIONS(1253), + [sym__str_single_quotes] = ACTIONS(1253), + [sym__str_back_ticks] = ACTIONS(1253), + [sym__entry_separator] = ACTIONS(1255), + [anon_sym_err_GT] = ACTIONS(1253), + [anon_sym_out_GT] = ACTIONS(1253), + [anon_sym_e_GT] = ACTIONS(1253), + [anon_sym_o_GT] = ACTIONS(1253), + [anon_sym_err_PLUSout_GT] = ACTIONS(1253), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1253), + [anon_sym_o_PLUSe_GT] = ACTIONS(1253), + [anon_sym_e_PLUSo_GT] = ACTIONS(1253), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1253), [anon_sym_POUND] = ACTIONS(113), }, - [1772] = { - [sym_comment] = STATE(1772), - [anon_sym_export] = ACTIONS(5179), - [anon_sym_alias] = ACTIONS(5179), - [anon_sym_let] = ACTIONS(5179), - [anon_sym_let_DASHenv] = ACTIONS(5179), - [anon_sym_mut] = ACTIONS(5179), - [anon_sym_const] = ACTIONS(5179), - [anon_sym_SEMI] = ACTIONS(5179), - [sym_cmd_identifier] = ACTIONS(5179), - [anon_sym_LF] = ACTIONS(5181), - [anon_sym_def] = ACTIONS(5179), - [anon_sym_export_DASHenv] = ACTIONS(5179), - [anon_sym_extern] = ACTIONS(5179), - [anon_sym_module] = ACTIONS(5179), - [anon_sym_use] = ACTIONS(5179), - [anon_sym_LBRACK] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(5179), - [anon_sym_RPAREN] = ACTIONS(5179), - [anon_sym_DOLLAR] = ACTIONS(5179), - [anon_sym_error] = ACTIONS(5179), - [anon_sym_DASH_DASH] = ACTIONS(5179), - [anon_sym_DASH] = ACTIONS(5179), - [anon_sym_break] = ACTIONS(5179), - [anon_sym_continue] = ACTIONS(5179), - [anon_sym_for] = ACTIONS(5179), - [anon_sym_loop] = ACTIONS(5179), - [anon_sym_while] = ACTIONS(5179), - [anon_sym_do] = ACTIONS(5179), - [anon_sym_if] = ACTIONS(5179), - [anon_sym_match] = ACTIONS(5179), - [anon_sym_LBRACE] = ACTIONS(5179), - [anon_sym_RBRACE] = ACTIONS(5179), - [anon_sym_DOT_DOT] = ACTIONS(5179), - [anon_sym_try] = ACTIONS(5179), - [anon_sym_return] = ACTIONS(5179), - [anon_sym_source] = ACTIONS(5179), - [anon_sym_source_DASHenv] = ACTIONS(5179), - [anon_sym_register] = ACTIONS(5179), - [anon_sym_hide] = ACTIONS(5179), - [anon_sym_hide_DASHenv] = ACTIONS(5179), - [anon_sym_overlay] = ACTIONS(5179), - [anon_sym_as] = ACTIONS(5179), - [anon_sym_where] = ACTIONS(5179), - [anon_sym_not] = ACTIONS(5179), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5179), - [anon_sym_DOT_DOT_LT] = ACTIONS(5179), - [anon_sym_null] = ACTIONS(5179), - [anon_sym_true] = ACTIONS(5179), - [anon_sym_false] = ACTIONS(5179), - [aux_sym__val_number_decimal_token1] = ACTIONS(5179), - [aux_sym__val_number_decimal_token2] = ACTIONS(5179), - [anon_sym_DOT2] = ACTIONS(5179), - [aux_sym__val_number_decimal_token3] = ACTIONS(5179), - [aux_sym__val_number_token1] = ACTIONS(5179), - [aux_sym__val_number_token2] = ACTIONS(5179), - [aux_sym__val_number_token3] = ACTIONS(5179), - [aux_sym__val_number_token4] = ACTIONS(5179), - [aux_sym__val_number_token5] = ACTIONS(5179), - [aux_sym__val_number_token6] = ACTIONS(5179), - [anon_sym_0b] = ACTIONS(5179), - [anon_sym_0o] = ACTIONS(5179), - [anon_sym_0x] = ACTIONS(5179), - [sym_val_date] = ACTIONS(5179), - [anon_sym_DQUOTE] = ACTIONS(5179), - [sym__str_single_quotes] = ACTIONS(5179), - [sym__str_back_ticks] = ACTIONS(5179), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5179), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5179), - [anon_sym_CARET] = ACTIONS(5179), + [1984] = { + [sym_comment] = STATE(1984), + [anon_sym_export] = ACTIONS(1215), + [anon_sym_alias] = ACTIONS(1215), + [anon_sym_let] = ACTIONS(1215), + [anon_sym_let_DASHenv] = ACTIONS(1215), + [anon_sym_mut] = ACTIONS(1215), + [anon_sym_const] = ACTIONS(1215), + [anon_sym_SEMI] = ACTIONS(1215), + [sym_cmd_identifier] = ACTIONS(1215), + [anon_sym_LF] = ACTIONS(1217), + [anon_sym_def] = ACTIONS(1215), + [anon_sym_export_DASHenv] = ACTIONS(1215), + [anon_sym_extern] = ACTIONS(1215), + [anon_sym_module] = ACTIONS(1215), + [anon_sym_use] = ACTIONS(1215), + [anon_sym_LBRACK] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1215), + [anon_sym_RPAREN] = ACTIONS(1215), + [anon_sym_DOLLAR] = ACTIONS(1215), + [anon_sym_error] = ACTIONS(1215), + [anon_sym_DASH_DASH] = ACTIONS(1215), + [anon_sym_DASH] = ACTIONS(1215), + [anon_sym_break] = ACTIONS(1215), + [anon_sym_continue] = ACTIONS(1215), + [anon_sym_for] = ACTIONS(1215), + [anon_sym_loop] = ACTIONS(1215), + [anon_sym_while] = ACTIONS(1215), + [anon_sym_do] = ACTIONS(1215), + [anon_sym_if] = ACTIONS(1215), + [anon_sym_match] = ACTIONS(1215), + [anon_sym_LBRACE] = ACTIONS(1215), + [anon_sym_RBRACE] = ACTIONS(1215), + [anon_sym_DOT_DOT] = ACTIONS(1215), + [anon_sym_try] = ACTIONS(1215), + [anon_sym_return] = ACTIONS(1215), + [anon_sym_source] = ACTIONS(1215), + [anon_sym_source_DASHenv] = ACTIONS(1215), + [anon_sym_register] = ACTIONS(1215), + [anon_sym_hide] = ACTIONS(1215), + [anon_sym_hide_DASHenv] = ACTIONS(1215), + [anon_sym_overlay] = ACTIONS(1215), + [anon_sym_as] = ACTIONS(1215), + [anon_sym_where] = ACTIONS(1215), + [anon_sym_not] = ACTIONS(1215), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1215), + [anon_sym_DOT_DOT_LT] = ACTIONS(1215), + [anon_sym_null] = ACTIONS(1215), + [anon_sym_true] = ACTIONS(1215), + [anon_sym_false] = ACTIONS(1215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1215), + [aux_sym__val_number_decimal_token2] = ACTIONS(1215), + [anon_sym_DOT2] = ACTIONS(1215), + [aux_sym__val_number_decimal_token3] = ACTIONS(1215), + [aux_sym__val_number_token1] = ACTIONS(1215), + [aux_sym__val_number_token2] = ACTIONS(1215), + [aux_sym__val_number_token3] = ACTIONS(1215), + [aux_sym__val_number_token4] = ACTIONS(1215), + [aux_sym__val_number_token5] = ACTIONS(1215), + [aux_sym__val_number_token6] = ACTIONS(1215), + [anon_sym_0b] = ACTIONS(1215), + [anon_sym_0o] = ACTIONS(1215), + [anon_sym_0x] = ACTIONS(1215), + [sym_val_date] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1215), + [sym__str_single_quotes] = ACTIONS(1215), + [sym__str_back_ticks] = ACTIONS(1215), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1215), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), + [anon_sym_CARET] = ACTIONS(1215), [anon_sym_POUND] = ACTIONS(113), }, - [1773] = { - [sym_comment] = STATE(1773), - [anon_sym_export] = ACTIONS(4291), - [anon_sym_alias] = ACTIONS(4291), - [anon_sym_let] = ACTIONS(4291), - [anon_sym_let_DASHenv] = ACTIONS(4291), - [anon_sym_mut] = ACTIONS(4291), - [anon_sym_const] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4291), - [sym_cmd_identifier] = ACTIONS(4291), - [anon_sym_LF] = ACTIONS(4293), - [anon_sym_def] = ACTIONS(4291), - [anon_sym_export_DASHenv] = ACTIONS(4291), - [anon_sym_extern] = ACTIONS(4291), - [anon_sym_module] = ACTIONS(4291), - [anon_sym_use] = ACTIONS(4291), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_LPAREN] = ACTIONS(4291), - [anon_sym_RPAREN] = ACTIONS(4291), - [anon_sym_DOLLAR] = ACTIONS(4291), - [anon_sym_error] = ACTIONS(4291), - [anon_sym_DASH_DASH] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_break] = ACTIONS(4291), - [anon_sym_continue] = ACTIONS(4291), - [anon_sym_for] = ACTIONS(4291), - [anon_sym_loop] = ACTIONS(4291), - [anon_sym_while] = ACTIONS(4291), - [anon_sym_do] = ACTIONS(4291), - [anon_sym_if] = ACTIONS(4291), - [anon_sym_match] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4291), - [anon_sym_RBRACE] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4291), - [anon_sym_try] = ACTIONS(4291), - [anon_sym_return] = ACTIONS(4291), - [anon_sym_source] = ACTIONS(4291), - [anon_sym_source_DASHenv] = ACTIONS(4291), - [anon_sym_register] = ACTIONS(4291), - [anon_sym_hide] = ACTIONS(4291), - [anon_sym_hide_DASHenv] = ACTIONS(4291), - [anon_sym_overlay] = ACTIONS(4291), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(4291), - [anon_sym_not] = ACTIONS(4291), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4291), - [anon_sym_DOT_DOT_LT] = ACTIONS(4291), - [anon_sym_null] = ACTIONS(4291), - [anon_sym_true] = ACTIONS(4291), - [anon_sym_false] = ACTIONS(4291), - [aux_sym__val_number_decimal_token1] = ACTIONS(4291), - [aux_sym__val_number_decimal_token2] = ACTIONS(4291), - [anon_sym_DOT2] = ACTIONS(4291), - [aux_sym__val_number_decimal_token3] = ACTIONS(4291), - [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(4291), - [aux_sym__val_number_token5] = ACTIONS(4291), - [aux_sym__val_number_token6] = ACTIONS(4291), - [anon_sym_0b] = ACTIONS(4291), - [anon_sym_0o] = ACTIONS(4291), - [anon_sym_0x] = ACTIONS(4291), - [sym_val_date] = ACTIONS(4291), - [anon_sym_DQUOTE] = ACTIONS(4291), - [sym__str_single_quotes] = ACTIONS(4291), - [sym__str_back_ticks] = ACTIONS(4291), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4291), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4291), - [anon_sym_CARET] = ACTIONS(4291), + [1985] = { + [sym_comment] = STATE(1985), + [anon_sym_LBRACK] = ACTIONS(1257), + [anon_sym_COMMA] = ACTIONS(1257), + [anon_sym_RBRACK] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_DOLLAR] = ACTIONS(1257), + [anon_sym_GT] = ACTIONS(1257), + [anon_sym_DASH_DASH] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_in] = ACTIONS(1257), + [anon_sym_LBRACE] = ACTIONS(1257), + [anon_sym_DOT_DOT] = ACTIONS(1257), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_STAR_STAR] = ACTIONS(1257), + [anon_sym_PLUS_PLUS] = ACTIONS(1257), + [anon_sym_SLASH] = ACTIONS(1257), + [anon_sym_mod] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_bit_DASHshl] = ACTIONS(1257), + [anon_sym_bit_DASHshr] = ACTIONS(1257), + [anon_sym_EQ_EQ] = ACTIONS(1257), + [anon_sym_BANG_EQ] = ACTIONS(1257), + [anon_sym_LT2] = ACTIONS(1257), + [anon_sym_LT_EQ] = ACTIONS(1257), + [anon_sym_GT_EQ] = ACTIONS(1257), + [anon_sym_not_DASHin] = ACTIONS(1257), + [anon_sym_starts_DASHwith] = ACTIONS(1257), + [anon_sym_ends_DASHwith] = ACTIONS(1257), + [anon_sym_EQ_TILDE] = ACTIONS(1257), + [anon_sym_BANG_TILDE] = ACTIONS(1257), + [anon_sym_bit_DASHand] = ACTIONS(1257), + [anon_sym_bit_DASHxor] = ACTIONS(1257), + [anon_sym_bit_DASHor] = ACTIONS(1257), + [anon_sym_and] = ACTIONS(1257), + [anon_sym_xor] = ACTIONS(1257), + [anon_sym_or] = ACTIONS(1257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1257), + [anon_sym_DOT_DOT_LT] = ACTIONS(1257), + [anon_sym_null] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [aux_sym__val_number_decimal_token1] = ACTIONS(1257), + [aux_sym__val_number_decimal_token2] = ACTIONS(1257), + [anon_sym_DOT2] = ACTIONS(1257), + [aux_sym__val_number_decimal_token3] = ACTIONS(1257), + [aux_sym__val_number_token1] = ACTIONS(1257), + [aux_sym__val_number_token2] = ACTIONS(1257), + [aux_sym__val_number_token3] = ACTIONS(1257), + [aux_sym__val_number_token4] = ACTIONS(1257), + [aux_sym__val_number_token5] = ACTIONS(1257), + [aux_sym__val_number_token6] = ACTIONS(1257), + [anon_sym_0b] = ACTIONS(1257), + [anon_sym_0o] = ACTIONS(1257), + [anon_sym_0x] = ACTIONS(1257), + [sym_val_date] = ACTIONS(1257), + [anon_sym_DQUOTE] = ACTIONS(1257), + [sym__str_single_quotes] = ACTIONS(1257), + [sym__str_back_ticks] = ACTIONS(1257), + [sym__entry_separator] = ACTIONS(1259), + [anon_sym_err_GT] = ACTIONS(1257), + [anon_sym_out_GT] = ACTIONS(1257), + [anon_sym_e_GT] = ACTIONS(1257), + [anon_sym_o_GT] = ACTIONS(1257), + [anon_sym_err_PLUSout_GT] = ACTIONS(1257), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1257), + [anon_sym_o_PLUSe_GT] = ACTIONS(1257), + [anon_sym_e_PLUSo_GT] = ACTIONS(1257), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1257), [anon_sym_POUND] = ACTIONS(113), }, - [1774] = { - [sym_comment] = STATE(1774), - [anon_sym_export] = ACTIONS(5183), - [anon_sym_alias] = ACTIONS(5183), - [anon_sym_let] = ACTIONS(5183), - [anon_sym_let_DASHenv] = ACTIONS(5183), - [anon_sym_mut] = ACTIONS(5183), - [anon_sym_const] = ACTIONS(5183), - [anon_sym_SEMI] = ACTIONS(5183), - [sym_cmd_identifier] = ACTIONS(5183), - [anon_sym_LF] = ACTIONS(5185), - [anon_sym_def] = ACTIONS(5183), - [anon_sym_export_DASHenv] = ACTIONS(5183), - [anon_sym_extern] = ACTIONS(5183), - [anon_sym_module] = ACTIONS(5183), - [anon_sym_use] = ACTIONS(5183), - [anon_sym_LBRACK] = ACTIONS(5183), - [anon_sym_LPAREN] = ACTIONS(5183), - [anon_sym_RPAREN] = ACTIONS(5183), - [anon_sym_DOLLAR] = ACTIONS(5183), - [anon_sym_error] = ACTIONS(5183), - [anon_sym_DASH_DASH] = ACTIONS(5183), - [anon_sym_DASH] = ACTIONS(5183), - [anon_sym_break] = ACTIONS(5183), - [anon_sym_continue] = ACTIONS(5183), - [anon_sym_for] = ACTIONS(5183), - [anon_sym_loop] = ACTIONS(5183), - [anon_sym_while] = ACTIONS(5183), - [anon_sym_do] = ACTIONS(5183), - [anon_sym_if] = ACTIONS(5183), - [anon_sym_match] = ACTIONS(5183), - [anon_sym_LBRACE] = ACTIONS(5183), - [anon_sym_RBRACE] = ACTIONS(5183), - [anon_sym_DOT_DOT] = ACTIONS(5183), - [anon_sym_try] = ACTIONS(5183), - [anon_sym_return] = ACTIONS(5183), - [anon_sym_source] = ACTIONS(5183), - [anon_sym_source_DASHenv] = ACTIONS(5183), - [anon_sym_register] = ACTIONS(5183), - [anon_sym_hide] = ACTIONS(5183), - [anon_sym_hide_DASHenv] = ACTIONS(5183), - [anon_sym_overlay] = ACTIONS(5183), - [anon_sym_as] = ACTIONS(5183), - [anon_sym_where] = ACTIONS(5183), - [anon_sym_not] = ACTIONS(5183), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5183), - [anon_sym_DOT_DOT_LT] = ACTIONS(5183), - [anon_sym_null] = ACTIONS(5183), - [anon_sym_true] = ACTIONS(5183), - [anon_sym_false] = ACTIONS(5183), - [aux_sym__val_number_decimal_token1] = ACTIONS(5183), - [aux_sym__val_number_decimal_token2] = ACTIONS(5183), - [anon_sym_DOT2] = ACTIONS(5183), - [aux_sym__val_number_decimal_token3] = ACTIONS(5183), - [aux_sym__val_number_token1] = ACTIONS(5183), - [aux_sym__val_number_token2] = ACTIONS(5183), - [aux_sym__val_number_token3] = ACTIONS(5183), - [aux_sym__val_number_token4] = ACTIONS(5183), - [aux_sym__val_number_token5] = ACTIONS(5183), - [aux_sym__val_number_token6] = ACTIONS(5183), - [anon_sym_0b] = ACTIONS(5183), - [anon_sym_0o] = ACTIONS(5183), - [anon_sym_0x] = ACTIONS(5183), - [sym_val_date] = ACTIONS(5183), - [anon_sym_DQUOTE] = ACTIONS(5183), - [sym__str_single_quotes] = ACTIONS(5183), - [sym__str_back_ticks] = ACTIONS(5183), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5183), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5183), - [anon_sym_CARET] = ACTIONS(5183), - [anon_sym_POUND] = ACTIONS(113), + [1986] = { + [sym_expr_unary] = STATE(4748), + [sym__expr_unary_minus] = STATE(4737), + [sym_expr_binary] = STATE(4748), + [sym__expr_binary_expression] = STATE(5477), + [sym_expr_parenthesized] = STATE(4748), + [sym__val_range] = STATE(10146), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4787), + [sym_val_bool] = STATE(5099), + [sym_val_variable] = STATE(4787), + [sym__var] = STATE(4099), + [sym_val_number] = STATE(4787), + [sym__val_number_decimal] = STATE(3964), + [sym__val_number] = STATE(4641), + [sym_val_duration] = STATE(4787), + [sym_val_filesize] = STATE(4787), + [sym_val_binary] = STATE(4787), + [sym_val_string] = STATE(4787), + [sym__str_double_quotes] = STATE(4792), + [sym_val_interpolated] = STATE(4787), + [sym__inter_single_quotes] = STATE(4768), + [sym__inter_double_quotes] = STATE(4675), + [sym_val_list] = STATE(4787), + [sym_val_record] = STATE(4787), + [sym_val_table] = STATE(4787), + [sym_val_closure] = STATE(4787), + [sym_unquoted] = STATE(4751), + [sym__unquoted_anonymous_prefix] = STATE(10764), + [sym_comment] = STATE(1986), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5221), + [anon_sym_not] = ACTIONS(5087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5223), + [anon_sym_DOT_DOT_LT] = ACTIONS(5223), + [anon_sym_null] = ACTIONS(5225), + [anon_sym_true] = ACTIONS(5227), + [anon_sym_false] = ACTIONS(5227), + [aux_sym__val_number_decimal_token1] = ACTIONS(5229), + [aux_sym__val_number_decimal_token2] = ACTIONS(5231), + [anon_sym_DOT2] = ACTIONS(5233), + [aux_sym__val_number_decimal_token3] = ACTIONS(5235), + [aux_sym__val_number_token1] = ACTIONS(4276), + [aux_sym__val_number_token2] = ACTIONS(4276), + [aux_sym__val_number_token3] = ACTIONS(4276), + [aux_sym__val_number_token4] = ACTIONS(5237), + [aux_sym__val_number_token5] = ACTIONS(5237), + [aux_sym__val_number_token6] = ACTIONS(5237), + [anon_sym_0b] = ACTIONS(4280), + [anon_sym_0o] = ACTIONS(4282), + [anon_sym_0x] = ACTIONS(4282), + [sym_val_date] = ACTIONS(5239), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(5107), + [anon_sym_POUND] = ACTIONS(3), }, - [1775] = { - [sym_comment] = STATE(1775), - [anon_sym_export] = ACTIONS(3949), - [anon_sym_alias] = ACTIONS(3949), - [anon_sym_let] = ACTIONS(3949), - [anon_sym_let_DASHenv] = ACTIONS(3949), - [anon_sym_mut] = ACTIONS(3949), - [anon_sym_const] = ACTIONS(3949), - [anon_sym_SEMI] = ACTIONS(3949), - [sym_cmd_identifier] = ACTIONS(3949), - [anon_sym_LF] = ACTIONS(3951), - [anon_sym_def] = ACTIONS(3949), - [anon_sym_export_DASHenv] = ACTIONS(3949), - [anon_sym_extern] = ACTIONS(3949), - [anon_sym_module] = ACTIONS(3949), - [anon_sym_use] = ACTIONS(3949), - [anon_sym_LBRACK] = ACTIONS(3949), - [anon_sym_LPAREN] = ACTIONS(3949), - [anon_sym_RPAREN] = ACTIONS(3949), - [anon_sym_DOLLAR] = ACTIONS(3949), - [anon_sym_error] = ACTIONS(3949), - [anon_sym_DASH_DASH] = ACTIONS(3949), - [anon_sym_DASH] = ACTIONS(3949), - [anon_sym_break] = ACTIONS(3949), - [anon_sym_continue] = ACTIONS(3949), - [anon_sym_for] = ACTIONS(3949), - [anon_sym_loop] = ACTIONS(3949), - [anon_sym_while] = ACTIONS(3949), - [anon_sym_do] = ACTIONS(3949), - [anon_sym_if] = ACTIONS(3949), - [anon_sym_match] = ACTIONS(3949), - [anon_sym_LBRACE] = ACTIONS(3949), - [anon_sym_RBRACE] = ACTIONS(3949), - [anon_sym_DOT_DOT] = ACTIONS(3949), - [anon_sym_try] = ACTIONS(3949), - [anon_sym_return] = ACTIONS(3949), - [anon_sym_source] = ACTIONS(3949), - [anon_sym_source_DASHenv] = ACTIONS(3949), - [anon_sym_register] = ACTIONS(3949), - [anon_sym_hide] = ACTIONS(3949), - [anon_sym_hide_DASHenv] = ACTIONS(3949), - [anon_sym_overlay] = ACTIONS(3949), - [anon_sym_as] = ACTIONS(3949), - [anon_sym_where] = ACTIONS(3949), - [anon_sym_not] = ACTIONS(3949), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3949), - [anon_sym_DOT_DOT_LT] = ACTIONS(3949), - [anon_sym_null] = ACTIONS(3949), - [anon_sym_true] = ACTIONS(3949), - [anon_sym_false] = ACTIONS(3949), - [aux_sym__val_number_decimal_token1] = ACTIONS(3949), - [aux_sym__val_number_decimal_token2] = ACTIONS(3949), - [anon_sym_DOT2] = ACTIONS(3949), - [aux_sym__val_number_decimal_token3] = ACTIONS(3949), - [aux_sym__val_number_token1] = ACTIONS(3949), - [aux_sym__val_number_token2] = ACTIONS(3949), - [aux_sym__val_number_token3] = ACTIONS(3949), - [aux_sym__val_number_token4] = ACTIONS(3949), - [aux_sym__val_number_token5] = ACTIONS(3949), - [aux_sym__val_number_token6] = ACTIONS(3949), - [anon_sym_0b] = ACTIONS(3949), - [anon_sym_0o] = ACTIONS(3949), - [anon_sym_0x] = ACTIONS(3949), - [sym_val_date] = ACTIONS(3949), - [anon_sym_DQUOTE] = ACTIONS(3949), - [sym__str_single_quotes] = ACTIONS(3949), - [sym__str_back_ticks] = ACTIONS(3949), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3949), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3949), - [anon_sym_CARET] = ACTIONS(3949), + [1987] = { + [sym_comment] = STATE(1987), + [ts_builtin_sym_end] = ACTIONS(1277), + [anon_sym_export] = ACTIONS(1275), + [anon_sym_alias] = ACTIONS(1275), + [anon_sym_let] = ACTIONS(1275), + [anon_sym_let_DASHenv] = ACTIONS(1275), + [anon_sym_mut] = ACTIONS(1275), + [anon_sym_const] = ACTIONS(1275), + [anon_sym_SEMI] = ACTIONS(1275), + [sym_cmd_identifier] = ACTIONS(1275), + [anon_sym_LF] = ACTIONS(1277), + [anon_sym_def] = ACTIONS(1275), + [anon_sym_export_DASHenv] = ACTIONS(1275), + [anon_sym_extern] = ACTIONS(1275), + [anon_sym_module] = ACTIONS(1275), + [anon_sym_use] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(1275), + [anon_sym_DOLLAR] = ACTIONS(1275), + [anon_sym_error] = ACTIONS(1275), + [anon_sym_DASH_DASH] = ACTIONS(1275), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_break] = ACTIONS(1275), + [anon_sym_continue] = ACTIONS(1275), + [anon_sym_for] = ACTIONS(1275), + [anon_sym_loop] = ACTIONS(1275), + [anon_sym_while] = ACTIONS(1275), + [anon_sym_do] = ACTIONS(1275), + [anon_sym_if] = ACTIONS(1275), + [anon_sym_match] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(1275), + [anon_sym_DOT_DOT] = ACTIONS(1275), + [anon_sym_try] = ACTIONS(1275), + [anon_sym_return] = ACTIONS(1275), + [anon_sym_source] = ACTIONS(1275), + [anon_sym_source_DASHenv] = ACTIONS(1275), + [anon_sym_register] = ACTIONS(1275), + [anon_sym_hide] = ACTIONS(1275), + [anon_sym_hide_DASHenv] = ACTIONS(1275), + [anon_sym_overlay] = ACTIONS(1275), + [anon_sym_as] = ACTIONS(1275), + [anon_sym_where] = ACTIONS(1275), + [anon_sym_not] = ACTIONS(1275), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1275), + [anon_sym_DOT_DOT_LT] = ACTIONS(1275), + [anon_sym_null] = ACTIONS(1275), + [anon_sym_true] = ACTIONS(1275), + [anon_sym_false] = ACTIONS(1275), + [aux_sym__val_number_decimal_token1] = ACTIONS(1275), + [aux_sym__val_number_decimal_token2] = ACTIONS(1275), + [anon_sym_DOT2] = ACTIONS(1275), + [aux_sym__val_number_decimal_token3] = ACTIONS(1275), + [aux_sym__val_number_token1] = ACTIONS(1275), + [aux_sym__val_number_token2] = ACTIONS(1275), + [aux_sym__val_number_token3] = ACTIONS(1275), + [aux_sym__val_number_token4] = ACTIONS(1275), + [aux_sym__val_number_token5] = ACTIONS(1275), + [aux_sym__val_number_token6] = ACTIONS(1275), + [anon_sym_0b] = ACTIONS(1275), + [anon_sym_0o] = ACTIONS(1275), + [anon_sym_0x] = ACTIONS(1275), + [sym_val_date] = ACTIONS(1275), + [anon_sym_DQUOTE] = ACTIONS(1275), + [sym__str_single_quotes] = ACTIONS(1275), + [sym__str_back_ticks] = ACTIONS(1275), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1275), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1275), + [anon_sym_CARET] = ACTIONS(1275), [anon_sym_POUND] = ACTIONS(113), }, - [1776] = { - [sym_comment] = STATE(1776), - [anon_sym_export] = ACTIONS(3964), - [anon_sym_alias] = ACTIONS(3964), - [anon_sym_let] = ACTIONS(3964), - [anon_sym_let_DASHenv] = ACTIONS(3964), - [anon_sym_mut] = ACTIONS(3964), - [anon_sym_const] = ACTIONS(3964), - [anon_sym_SEMI] = ACTIONS(3964), - [sym_cmd_identifier] = ACTIONS(3964), - [anon_sym_LF] = ACTIONS(3966), - [anon_sym_def] = ACTIONS(3964), - [anon_sym_export_DASHenv] = ACTIONS(3964), - [anon_sym_extern] = ACTIONS(3964), - [anon_sym_module] = ACTIONS(3964), - [anon_sym_use] = ACTIONS(3964), - [anon_sym_LBRACK] = ACTIONS(3964), - [anon_sym_LPAREN] = ACTIONS(3964), - [anon_sym_RPAREN] = ACTIONS(3964), - [anon_sym_DOLLAR] = ACTIONS(3964), - [anon_sym_error] = ACTIONS(3964), - [anon_sym_DASH_DASH] = ACTIONS(3964), - [anon_sym_DASH] = ACTIONS(3964), - [anon_sym_break] = ACTIONS(3964), - [anon_sym_continue] = ACTIONS(3964), - [anon_sym_for] = ACTIONS(3964), - [anon_sym_loop] = ACTIONS(3964), - [anon_sym_while] = ACTIONS(3964), - [anon_sym_do] = ACTIONS(3964), - [anon_sym_if] = ACTIONS(3964), - [anon_sym_match] = ACTIONS(3964), - [anon_sym_LBRACE] = ACTIONS(3964), - [anon_sym_RBRACE] = ACTIONS(3964), - [anon_sym_DOT_DOT] = ACTIONS(3964), - [anon_sym_try] = ACTIONS(3964), - [anon_sym_return] = ACTIONS(3964), - [anon_sym_source] = ACTIONS(3964), - [anon_sym_source_DASHenv] = ACTIONS(3964), - [anon_sym_register] = ACTIONS(3964), - [anon_sym_hide] = ACTIONS(3964), - [anon_sym_hide_DASHenv] = ACTIONS(3964), - [anon_sym_overlay] = ACTIONS(3964), - [anon_sym_as] = ACTIONS(3964), - [anon_sym_where] = ACTIONS(3964), - [anon_sym_not] = ACTIONS(3964), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3964), - [anon_sym_DOT_DOT_LT] = ACTIONS(3964), - [anon_sym_null] = ACTIONS(3964), - [anon_sym_true] = ACTIONS(3964), - [anon_sym_false] = ACTIONS(3964), - [aux_sym__val_number_decimal_token1] = ACTIONS(3964), - [aux_sym__val_number_decimal_token2] = ACTIONS(3964), - [anon_sym_DOT2] = ACTIONS(3964), - [aux_sym__val_number_decimal_token3] = ACTIONS(3964), - [aux_sym__val_number_token1] = ACTIONS(3964), - [aux_sym__val_number_token2] = ACTIONS(3964), - [aux_sym__val_number_token3] = ACTIONS(3964), - [aux_sym__val_number_token4] = ACTIONS(3964), - [aux_sym__val_number_token5] = ACTIONS(3964), - [aux_sym__val_number_token6] = ACTIONS(3964), - [anon_sym_0b] = ACTIONS(3964), - [anon_sym_0o] = ACTIONS(3964), - [anon_sym_0x] = ACTIONS(3964), - [sym_val_date] = ACTIONS(3964), - [anon_sym_DQUOTE] = ACTIONS(3964), - [sym__str_single_quotes] = ACTIONS(3964), - [sym__str_back_ticks] = ACTIONS(3964), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3964), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3964), - [anon_sym_CARET] = ACTIONS(3964), + [1988] = { + [sym_comment] = STATE(1988), + [ts_builtin_sym_end] = ACTIONS(1217), + [anon_sym_export] = ACTIONS(1215), + [anon_sym_alias] = ACTIONS(1215), + [anon_sym_let] = ACTIONS(1215), + [anon_sym_let_DASHenv] = ACTIONS(1215), + [anon_sym_mut] = ACTIONS(1215), + [anon_sym_const] = ACTIONS(1215), + [anon_sym_SEMI] = ACTIONS(1215), + [sym_cmd_identifier] = ACTIONS(1215), + [anon_sym_LF] = ACTIONS(1217), + [anon_sym_def] = ACTIONS(1215), + [anon_sym_export_DASHenv] = ACTIONS(1215), + [anon_sym_extern] = ACTIONS(1215), + [anon_sym_module] = ACTIONS(1215), + [anon_sym_use] = ACTIONS(1215), + [anon_sym_LBRACK] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_DOLLAR] = ACTIONS(1215), + [anon_sym_error] = ACTIONS(1215), + [anon_sym_DASH] = ACTIONS(1215), + [anon_sym_break] = ACTIONS(1215), + [anon_sym_continue] = ACTIONS(1215), + [anon_sym_for] = ACTIONS(1215), + [anon_sym_loop] = ACTIONS(1215), + [anon_sym_while] = ACTIONS(1215), + [anon_sym_do] = ACTIONS(1215), + [anon_sym_if] = ACTIONS(1215), + [anon_sym_match] = ACTIONS(1215), + [anon_sym_LBRACE] = ACTIONS(1215), + [anon_sym_DOT_DOT] = ACTIONS(1215), + [anon_sym_try] = ACTIONS(1215), + [anon_sym_return] = ACTIONS(1215), + [anon_sym_source] = ACTIONS(1215), + [anon_sym_source_DASHenv] = ACTIONS(1215), + [anon_sym_register] = ACTIONS(1215), + [anon_sym_hide] = ACTIONS(1215), + [anon_sym_hide_DASHenv] = ACTIONS(1215), + [anon_sym_overlay] = ACTIONS(1215), + [anon_sym_STAR] = ACTIONS(1215), + [anon_sym_where] = ACTIONS(1215), + [anon_sym_not] = ACTIONS(1215), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1215), + [anon_sym_DOT_DOT_LT] = ACTIONS(1215), + [anon_sym_null] = ACTIONS(1215), + [anon_sym_true] = ACTIONS(1215), + [anon_sym_false] = ACTIONS(1215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1215), + [aux_sym__val_number_decimal_token2] = ACTIONS(1215), + [anon_sym_DOT2] = ACTIONS(1215), + [aux_sym__val_number_decimal_token3] = ACTIONS(1215), + [aux_sym__val_number_token1] = ACTIONS(1215), + [aux_sym__val_number_token2] = ACTIONS(1215), + [aux_sym__val_number_token3] = ACTIONS(1215), + [aux_sym__val_number_token4] = ACTIONS(1215), + [aux_sym__val_number_token5] = ACTIONS(1215), + [aux_sym__val_number_token6] = ACTIONS(1215), + [anon_sym_0b] = ACTIONS(1215), + [anon_sym_0o] = ACTIONS(1215), + [anon_sym_0x] = ACTIONS(1215), + [sym_val_date] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1215), + [sym__str_single_quotes] = ACTIONS(1215), + [sym__str_back_ticks] = ACTIONS(1215), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1215), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), + [anon_sym_CARET] = ACTIONS(1215), [anon_sym_POUND] = ACTIONS(113), }, - [1777] = { - [sym_comment] = STATE(1777), - [anon_sym_export] = ACTIONS(4043), - [anon_sym_alias] = ACTIONS(4043), - [anon_sym_let] = ACTIONS(4043), - [anon_sym_let_DASHenv] = ACTIONS(4043), - [anon_sym_mut] = ACTIONS(4043), - [anon_sym_const] = ACTIONS(4043), - [anon_sym_SEMI] = ACTIONS(4043), - [sym_cmd_identifier] = ACTIONS(4043), - [anon_sym_LF] = ACTIONS(4045), - [anon_sym_def] = ACTIONS(4043), - [anon_sym_export_DASHenv] = ACTIONS(4043), - [anon_sym_extern] = ACTIONS(4043), - [anon_sym_module] = ACTIONS(4043), - [anon_sym_use] = ACTIONS(4043), - [anon_sym_LBRACK] = ACTIONS(4043), - [anon_sym_LPAREN] = ACTIONS(4043), - [anon_sym_RPAREN] = ACTIONS(4043), - [anon_sym_DOLLAR] = ACTIONS(4043), - [anon_sym_error] = ACTIONS(4043), - [anon_sym_DASH_DASH] = ACTIONS(4043), - [anon_sym_DASH] = ACTIONS(4043), - [anon_sym_break] = ACTIONS(4043), - [anon_sym_continue] = ACTIONS(4043), - [anon_sym_for] = ACTIONS(4043), - [anon_sym_loop] = ACTIONS(4043), - [anon_sym_while] = ACTIONS(4043), - [anon_sym_do] = ACTIONS(4043), - [anon_sym_if] = ACTIONS(4043), - [anon_sym_match] = ACTIONS(4043), - [anon_sym_LBRACE] = ACTIONS(4043), - [anon_sym_RBRACE] = ACTIONS(4043), - [anon_sym_DOT_DOT] = ACTIONS(4043), - [anon_sym_try] = ACTIONS(4043), - [anon_sym_return] = ACTIONS(4043), - [anon_sym_source] = ACTIONS(4043), - [anon_sym_source_DASHenv] = ACTIONS(4043), - [anon_sym_register] = ACTIONS(4043), - [anon_sym_hide] = ACTIONS(4043), - [anon_sym_hide_DASHenv] = ACTIONS(4043), - [anon_sym_overlay] = ACTIONS(4043), - [anon_sym_as] = ACTIONS(4043), - [anon_sym_where] = ACTIONS(4043), - [anon_sym_not] = ACTIONS(4043), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4043), - [anon_sym_DOT_DOT_LT] = ACTIONS(4043), - [anon_sym_null] = ACTIONS(4043), - [anon_sym_true] = ACTIONS(4043), - [anon_sym_false] = ACTIONS(4043), - [aux_sym__val_number_decimal_token1] = ACTIONS(4043), - [aux_sym__val_number_decimal_token2] = ACTIONS(4043), - [anon_sym_DOT2] = ACTIONS(4043), - [aux_sym__val_number_decimal_token3] = ACTIONS(4043), - [aux_sym__val_number_token1] = ACTIONS(4043), - [aux_sym__val_number_token2] = ACTIONS(4043), - [aux_sym__val_number_token3] = ACTIONS(4043), - [aux_sym__val_number_token4] = ACTIONS(4043), - [aux_sym__val_number_token5] = ACTIONS(4043), - [aux_sym__val_number_token6] = ACTIONS(4043), - [anon_sym_0b] = ACTIONS(4043), - [anon_sym_0o] = ACTIONS(4043), - [anon_sym_0x] = ACTIONS(4043), - [sym_val_date] = ACTIONS(4043), - [anon_sym_DQUOTE] = ACTIONS(4043), - [sym__str_single_quotes] = ACTIONS(4043), - [sym__str_back_ticks] = ACTIONS(4043), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4043), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4043), - [anon_sym_CARET] = ACTIONS(4043), - [anon_sym_POUND] = ACTIONS(113), + [1989] = { + [sym_comment] = STATE(1989), + [anon_sym_LBRACK] = ACTIONS(1181), + [anon_sym_COMMA] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_DOLLAR] = ACTIONS(1181), + [anon_sym_GT] = ACTIONS(5617), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_in] = ACTIONS(5621), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_RBRACE] = ACTIONS(1181), + [anon_sym__] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(5623), + [anon_sym_STAR_STAR] = ACTIONS(5625), + [anon_sym_PLUS_PLUS] = ACTIONS(5625), + [anon_sym_SLASH] = ACTIONS(5623), + [anon_sym_mod] = ACTIONS(5627), + [anon_sym_SLASH_SLASH] = ACTIONS(5627), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_bit_DASHshl] = ACTIONS(5629), + [anon_sym_bit_DASHshr] = ACTIONS(5629), + [anon_sym_EQ_EQ] = ACTIONS(5631), + [anon_sym_BANG_EQ] = ACTIONS(5631), + [anon_sym_LT2] = ACTIONS(5617), + [anon_sym_LT_EQ] = ACTIONS(5631), + [anon_sym_GT_EQ] = ACTIONS(5631), + [anon_sym_not_DASHin] = ACTIONS(5633), + [anon_sym_starts_DASHwith] = ACTIONS(5633), + [anon_sym_ends_DASHwith] = ACTIONS(5633), + [anon_sym_EQ_TILDE] = ACTIONS(5635), + [anon_sym_BANG_TILDE] = ACTIONS(5635), + [anon_sym_bit_DASHand] = ACTIONS(5637), + [anon_sym_bit_DASHxor] = ACTIONS(1181), + [anon_sym_bit_DASHor] = ACTIONS(1181), + [anon_sym_and] = ACTIONS(1181), + [anon_sym_xor] = ACTIONS(1181), + [anon_sym_or] = ACTIONS(1181), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1181), + [anon_sym_DOT_DOT_LT] = ACTIONS(1181), + [anon_sym_null] = ACTIONS(1181), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1181), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1181), + [aux_sym__val_number_token1] = ACTIONS(1181), + [aux_sym__val_number_token2] = ACTIONS(1181), + [aux_sym__val_number_token3] = ACTIONS(1181), + [aux_sym__val_number_token4] = ACTIONS(1181), + [aux_sym__val_number_token5] = ACTIONS(1181), + [aux_sym__val_number_token6] = ACTIONS(1181), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym__str_single_quotes] = ACTIONS(1181), + [sym__str_back_ticks] = ACTIONS(1181), + [anon_sym_err_GT] = ACTIONS(1181), + [anon_sym_out_GT] = ACTIONS(1181), + [anon_sym_e_GT] = ACTIONS(1181), + [anon_sym_o_GT] = ACTIONS(1181), + [anon_sym_err_PLUSout_GT] = ACTIONS(1181), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1181), + [anon_sym_o_PLUSe_GT] = ACTIONS(1181), + [anon_sym_e_PLUSo_GT] = ACTIONS(1181), + [aux_sym_unquoted_token1] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(3), }, - [1778] = { - [sym_comment] = STATE(1778), - [anon_sym_export] = ACTIONS(5187), - [anon_sym_alias] = ACTIONS(5187), - [anon_sym_let] = ACTIONS(5187), - [anon_sym_let_DASHenv] = ACTIONS(5187), - [anon_sym_mut] = ACTIONS(5187), - [anon_sym_const] = ACTIONS(5187), - [anon_sym_SEMI] = ACTIONS(5187), - [sym_cmd_identifier] = ACTIONS(5187), - [anon_sym_LF] = ACTIONS(5189), - [anon_sym_def] = ACTIONS(5187), - [anon_sym_export_DASHenv] = ACTIONS(5187), - [anon_sym_extern] = ACTIONS(5187), - [anon_sym_module] = ACTIONS(5187), - [anon_sym_use] = ACTIONS(5187), - [anon_sym_LBRACK] = ACTIONS(5187), - [anon_sym_LPAREN] = ACTIONS(5187), - [anon_sym_RPAREN] = ACTIONS(5187), - [anon_sym_DOLLAR] = ACTIONS(5187), - [anon_sym_error] = ACTIONS(5187), - [anon_sym_DASH_DASH] = ACTIONS(5187), - [anon_sym_DASH] = ACTIONS(5187), - [anon_sym_break] = ACTIONS(5187), - [anon_sym_continue] = ACTIONS(5187), - [anon_sym_for] = ACTIONS(5187), - [anon_sym_loop] = ACTIONS(5187), - [anon_sym_while] = ACTIONS(5187), - [anon_sym_do] = ACTIONS(5187), - [anon_sym_if] = ACTIONS(5187), - [anon_sym_match] = ACTIONS(5187), - [anon_sym_LBRACE] = ACTIONS(5187), - [anon_sym_RBRACE] = ACTIONS(5187), - [anon_sym_DOT_DOT] = ACTIONS(5187), - [anon_sym_try] = ACTIONS(5187), - [anon_sym_return] = ACTIONS(5187), - [anon_sym_source] = ACTIONS(5187), - [anon_sym_source_DASHenv] = ACTIONS(5187), - [anon_sym_register] = ACTIONS(5187), - [anon_sym_hide] = ACTIONS(5187), - [anon_sym_hide_DASHenv] = ACTIONS(5187), - [anon_sym_overlay] = ACTIONS(5187), - [anon_sym_as] = ACTIONS(5187), - [anon_sym_where] = ACTIONS(5187), - [anon_sym_not] = ACTIONS(5187), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5187), - [anon_sym_DOT_DOT_LT] = ACTIONS(5187), - [anon_sym_null] = ACTIONS(5187), - [anon_sym_true] = ACTIONS(5187), - [anon_sym_false] = ACTIONS(5187), - [aux_sym__val_number_decimal_token1] = ACTIONS(5187), - [aux_sym__val_number_decimal_token2] = ACTIONS(5187), - [anon_sym_DOT2] = ACTIONS(5187), - [aux_sym__val_number_decimal_token3] = ACTIONS(5187), - [aux_sym__val_number_token1] = ACTIONS(5187), - [aux_sym__val_number_token2] = ACTIONS(5187), - [aux_sym__val_number_token3] = ACTIONS(5187), - [aux_sym__val_number_token4] = ACTIONS(5187), - [aux_sym__val_number_token5] = ACTIONS(5187), - [aux_sym__val_number_token6] = ACTIONS(5187), - [anon_sym_0b] = ACTIONS(5187), - [anon_sym_0o] = ACTIONS(5187), - [anon_sym_0x] = ACTIONS(5187), - [sym_val_date] = ACTIONS(5187), - [anon_sym_DQUOTE] = ACTIONS(5187), - [sym__str_single_quotes] = ACTIONS(5187), - [sym__str_back_ticks] = ACTIONS(5187), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5187), - [anon_sym_CARET] = ACTIONS(5187), - [anon_sym_POUND] = ACTIONS(113), + [1990] = { + [sym_comment] = STATE(1990), + [anon_sym_LBRACK] = ACTIONS(1181), + [anon_sym_COMMA] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_DOLLAR] = ACTIONS(1181), + [anon_sym_GT] = ACTIONS(5617), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_in] = ACTIONS(5621), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_RBRACE] = ACTIONS(1181), + [anon_sym__] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(5623), + [anon_sym_STAR_STAR] = ACTIONS(5625), + [anon_sym_PLUS_PLUS] = ACTIONS(5625), + [anon_sym_SLASH] = ACTIONS(5623), + [anon_sym_mod] = ACTIONS(5627), + [anon_sym_SLASH_SLASH] = ACTIONS(5627), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_bit_DASHshl] = ACTIONS(5629), + [anon_sym_bit_DASHshr] = ACTIONS(5629), + [anon_sym_EQ_EQ] = ACTIONS(5631), + [anon_sym_BANG_EQ] = ACTIONS(5631), + [anon_sym_LT2] = ACTIONS(5617), + [anon_sym_LT_EQ] = ACTIONS(5631), + [anon_sym_GT_EQ] = ACTIONS(5631), + [anon_sym_not_DASHin] = ACTIONS(5633), + [anon_sym_starts_DASHwith] = ACTIONS(5633), + [anon_sym_ends_DASHwith] = ACTIONS(5633), + [anon_sym_EQ_TILDE] = ACTIONS(5635), + [anon_sym_BANG_TILDE] = ACTIONS(5635), + [anon_sym_bit_DASHand] = ACTIONS(5637), + [anon_sym_bit_DASHxor] = ACTIONS(5639), + [anon_sym_bit_DASHor] = ACTIONS(1181), + [anon_sym_and] = ACTIONS(1181), + [anon_sym_xor] = ACTIONS(1181), + [anon_sym_or] = ACTIONS(1181), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1181), + [anon_sym_DOT_DOT_LT] = ACTIONS(1181), + [anon_sym_null] = ACTIONS(1181), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1181), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1181), + [aux_sym__val_number_token1] = ACTIONS(1181), + [aux_sym__val_number_token2] = ACTIONS(1181), + [aux_sym__val_number_token3] = ACTIONS(1181), + [aux_sym__val_number_token4] = ACTIONS(1181), + [aux_sym__val_number_token5] = ACTIONS(1181), + [aux_sym__val_number_token6] = ACTIONS(1181), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym__str_single_quotes] = ACTIONS(1181), + [sym__str_back_ticks] = ACTIONS(1181), + [anon_sym_err_GT] = ACTIONS(1181), + [anon_sym_out_GT] = ACTIONS(1181), + [anon_sym_e_GT] = ACTIONS(1181), + [anon_sym_o_GT] = ACTIONS(1181), + [anon_sym_err_PLUSout_GT] = ACTIONS(1181), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1181), + [anon_sym_o_PLUSe_GT] = ACTIONS(1181), + [anon_sym_e_PLUSo_GT] = ACTIONS(1181), + [aux_sym_unquoted_token1] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(3), }, - [1779] = { - [sym_comment] = STATE(1779), - [anon_sym_export] = ACTIONS(5191), - [anon_sym_alias] = ACTIONS(5191), - [anon_sym_let] = ACTIONS(5191), - [anon_sym_let_DASHenv] = ACTIONS(5191), - [anon_sym_mut] = ACTIONS(5191), - [anon_sym_const] = ACTIONS(5191), - [anon_sym_SEMI] = ACTIONS(5191), - [sym_cmd_identifier] = ACTIONS(5191), - [anon_sym_LF] = ACTIONS(5193), - [anon_sym_def] = ACTIONS(5191), - [anon_sym_export_DASHenv] = ACTIONS(5191), - [anon_sym_extern] = ACTIONS(5191), - [anon_sym_module] = ACTIONS(5191), - [anon_sym_use] = ACTIONS(5191), - [anon_sym_LBRACK] = ACTIONS(5191), - [anon_sym_LPAREN] = ACTIONS(5191), - [anon_sym_RPAREN] = ACTIONS(5191), - [anon_sym_DOLLAR] = ACTIONS(5191), - [anon_sym_error] = ACTIONS(5191), - [anon_sym_DASH_DASH] = ACTIONS(5191), - [anon_sym_DASH] = ACTIONS(5191), - [anon_sym_break] = ACTIONS(5191), - [anon_sym_continue] = ACTIONS(5191), - [anon_sym_for] = ACTIONS(5191), - [anon_sym_loop] = ACTIONS(5191), - [anon_sym_while] = ACTIONS(5191), - [anon_sym_do] = ACTIONS(5191), - [anon_sym_if] = ACTIONS(5191), - [anon_sym_match] = ACTIONS(5191), - [anon_sym_LBRACE] = ACTIONS(5191), - [anon_sym_RBRACE] = ACTIONS(5191), - [anon_sym_DOT_DOT] = ACTIONS(5191), - [anon_sym_try] = ACTIONS(5191), - [anon_sym_return] = ACTIONS(5191), - [anon_sym_source] = ACTIONS(5191), - [anon_sym_source_DASHenv] = ACTIONS(5191), - [anon_sym_register] = ACTIONS(5191), - [anon_sym_hide] = ACTIONS(5191), - [anon_sym_hide_DASHenv] = ACTIONS(5191), - [anon_sym_overlay] = ACTIONS(5191), - [anon_sym_as] = ACTIONS(5191), - [anon_sym_where] = ACTIONS(5191), - [anon_sym_not] = ACTIONS(5191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5191), - [anon_sym_DOT_DOT_LT] = ACTIONS(5191), - [anon_sym_null] = ACTIONS(5191), - [anon_sym_true] = ACTIONS(5191), - [anon_sym_false] = ACTIONS(5191), - [aux_sym__val_number_decimal_token1] = ACTIONS(5191), - [aux_sym__val_number_decimal_token2] = ACTIONS(5191), - [anon_sym_DOT2] = ACTIONS(5191), - [aux_sym__val_number_decimal_token3] = ACTIONS(5191), - [aux_sym__val_number_token1] = ACTIONS(5191), - [aux_sym__val_number_token2] = ACTIONS(5191), - [aux_sym__val_number_token3] = ACTIONS(5191), - [aux_sym__val_number_token4] = ACTIONS(5191), - [aux_sym__val_number_token5] = ACTIONS(5191), - [aux_sym__val_number_token6] = ACTIONS(5191), - [anon_sym_0b] = ACTIONS(5191), - [anon_sym_0o] = ACTIONS(5191), - [anon_sym_0x] = ACTIONS(5191), - [sym_val_date] = ACTIONS(5191), - [anon_sym_DQUOTE] = ACTIONS(5191), - [sym__str_single_quotes] = ACTIONS(5191), - [sym__str_back_ticks] = ACTIONS(5191), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5191), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5191), - [anon_sym_CARET] = ACTIONS(5191), - [anon_sym_POUND] = ACTIONS(113), + [1991] = { + [sym_comment] = STATE(1991), + [anon_sym_LBRACK] = ACTIONS(1181), + [anon_sym_COMMA] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_DOLLAR] = ACTIONS(1181), + [anon_sym_GT] = ACTIONS(5617), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_in] = ACTIONS(5621), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_RBRACE] = ACTIONS(1181), + [anon_sym__] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(5623), + [anon_sym_STAR_STAR] = ACTIONS(5625), + [anon_sym_PLUS_PLUS] = ACTIONS(5625), + [anon_sym_SLASH] = ACTIONS(5623), + [anon_sym_mod] = ACTIONS(5627), + [anon_sym_SLASH_SLASH] = ACTIONS(5627), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_bit_DASHshl] = ACTIONS(5629), + [anon_sym_bit_DASHshr] = ACTIONS(5629), + [anon_sym_EQ_EQ] = ACTIONS(5631), + [anon_sym_BANG_EQ] = ACTIONS(5631), + [anon_sym_LT2] = ACTIONS(5617), + [anon_sym_LT_EQ] = ACTIONS(5631), + [anon_sym_GT_EQ] = ACTIONS(5631), + [anon_sym_not_DASHin] = ACTIONS(5633), + [anon_sym_starts_DASHwith] = ACTIONS(5633), + [anon_sym_ends_DASHwith] = ACTIONS(5633), + [anon_sym_EQ_TILDE] = ACTIONS(5635), + [anon_sym_BANG_TILDE] = ACTIONS(5635), + [anon_sym_bit_DASHand] = ACTIONS(5637), + [anon_sym_bit_DASHxor] = ACTIONS(5639), + [anon_sym_bit_DASHor] = ACTIONS(5641), + [anon_sym_and] = ACTIONS(1181), + [anon_sym_xor] = ACTIONS(1181), + [anon_sym_or] = ACTIONS(1181), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1181), + [anon_sym_DOT_DOT_LT] = ACTIONS(1181), + [anon_sym_null] = ACTIONS(1181), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1181), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1181), + [aux_sym__val_number_token1] = ACTIONS(1181), + [aux_sym__val_number_token2] = ACTIONS(1181), + [aux_sym__val_number_token3] = ACTIONS(1181), + [aux_sym__val_number_token4] = ACTIONS(1181), + [aux_sym__val_number_token5] = ACTIONS(1181), + [aux_sym__val_number_token6] = ACTIONS(1181), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym__str_single_quotes] = ACTIONS(1181), + [sym__str_back_ticks] = ACTIONS(1181), + [anon_sym_err_GT] = ACTIONS(1181), + [anon_sym_out_GT] = ACTIONS(1181), + [anon_sym_e_GT] = ACTIONS(1181), + [anon_sym_o_GT] = ACTIONS(1181), + [anon_sym_err_PLUSout_GT] = ACTIONS(1181), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1181), + [anon_sym_o_PLUSe_GT] = ACTIONS(1181), + [anon_sym_e_PLUSo_GT] = ACTIONS(1181), + [aux_sym_unquoted_token1] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(3), }, - [1780] = { - [sym_comment] = STATE(1780), - [anon_sym_export] = ACTIONS(5195), - [anon_sym_alias] = ACTIONS(5195), - [anon_sym_let] = ACTIONS(5195), - [anon_sym_let_DASHenv] = ACTIONS(5195), - [anon_sym_mut] = ACTIONS(5195), - [anon_sym_const] = ACTIONS(5195), - [anon_sym_SEMI] = ACTIONS(5195), - [sym_cmd_identifier] = ACTIONS(5195), - [anon_sym_LF] = ACTIONS(5197), - [anon_sym_def] = ACTIONS(5195), - [anon_sym_export_DASHenv] = ACTIONS(5195), - [anon_sym_extern] = ACTIONS(5195), - [anon_sym_module] = ACTIONS(5195), - [anon_sym_use] = ACTIONS(5195), - [anon_sym_LBRACK] = ACTIONS(5195), - [anon_sym_LPAREN] = ACTIONS(5195), - [anon_sym_RPAREN] = ACTIONS(5195), - [anon_sym_DOLLAR] = ACTIONS(5195), - [anon_sym_error] = ACTIONS(5195), - [anon_sym_DASH_DASH] = ACTIONS(5195), - [anon_sym_DASH] = ACTIONS(5195), - [anon_sym_break] = ACTIONS(5195), - [anon_sym_continue] = ACTIONS(5195), - [anon_sym_for] = ACTIONS(5195), - [anon_sym_loop] = ACTIONS(5195), - [anon_sym_while] = ACTIONS(5195), - [anon_sym_do] = ACTIONS(5195), - [anon_sym_if] = ACTIONS(5195), - [anon_sym_match] = ACTIONS(5195), - [anon_sym_LBRACE] = ACTIONS(5195), - [anon_sym_RBRACE] = ACTIONS(5195), - [anon_sym_DOT_DOT] = ACTIONS(5195), - [anon_sym_try] = ACTIONS(5195), - [anon_sym_return] = ACTIONS(5195), - [anon_sym_source] = ACTIONS(5195), - [anon_sym_source_DASHenv] = ACTIONS(5195), - [anon_sym_register] = ACTIONS(5195), - [anon_sym_hide] = ACTIONS(5195), - [anon_sym_hide_DASHenv] = ACTIONS(5195), - [anon_sym_overlay] = ACTIONS(5195), - [anon_sym_as] = ACTIONS(5195), - [anon_sym_where] = ACTIONS(5195), - [anon_sym_not] = ACTIONS(5195), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5195), - [anon_sym_DOT_DOT_LT] = ACTIONS(5195), - [anon_sym_null] = ACTIONS(5195), - [anon_sym_true] = ACTIONS(5195), - [anon_sym_false] = ACTIONS(5195), - [aux_sym__val_number_decimal_token1] = ACTIONS(5195), - [aux_sym__val_number_decimal_token2] = ACTIONS(5195), - [anon_sym_DOT2] = ACTIONS(5195), - [aux_sym__val_number_decimal_token3] = ACTIONS(5195), - [aux_sym__val_number_token1] = ACTIONS(5195), - [aux_sym__val_number_token2] = ACTIONS(5195), - [aux_sym__val_number_token3] = ACTIONS(5195), - [aux_sym__val_number_token4] = ACTIONS(5195), - [aux_sym__val_number_token5] = ACTIONS(5195), - [aux_sym__val_number_token6] = ACTIONS(5195), - [anon_sym_0b] = ACTIONS(5195), - [anon_sym_0o] = ACTIONS(5195), - [anon_sym_0x] = ACTIONS(5195), - [sym_val_date] = ACTIONS(5195), - [anon_sym_DQUOTE] = ACTIONS(5195), - [sym__str_single_quotes] = ACTIONS(5195), - [sym__str_back_ticks] = ACTIONS(5195), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5195), - [anon_sym_CARET] = ACTIONS(5195), - [anon_sym_POUND] = ACTIONS(113), + [1992] = { + [sym_comment] = STATE(1992), + [anon_sym_LBRACK] = ACTIONS(1181), + [anon_sym_COMMA] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_DOLLAR] = ACTIONS(1181), + [anon_sym_GT] = ACTIONS(5617), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_in] = ACTIONS(5621), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_RBRACE] = ACTIONS(1181), + [anon_sym__] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(5623), + [anon_sym_STAR_STAR] = ACTIONS(5625), + [anon_sym_PLUS_PLUS] = ACTIONS(5625), + [anon_sym_SLASH] = ACTIONS(5623), + [anon_sym_mod] = ACTIONS(5627), + [anon_sym_SLASH_SLASH] = ACTIONS(5627), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_bit_DASHshl] = ACTIONS(5629), + [anon_sym_bit_DASHshr] = ACTIONS(5629), + [anon_sym_EQ_EQ] = ACTIONS(5631), + [anon_sym_BANG_EQ] = ACTIONS(5631), + [anon_sym_LT2] = ACTIONS(5617), + [anon_sym_LT_EQ] = ACTIONS(5631), + [anon_sym_GT_EQ] = ACTIONS(5631), + [anon_sym_not_DASHin] = ACTIONS(5633), + [anon_sym_starts_DASHwith] = ACTIONS(5633), + [anon_sym_ends_DASHwith] = ACTIONS(5633), + [anon_sym_EQ_TILDE] = ACTIONS(5635), + [anon_sym_BANG_TILDE] = ACTIONS(5635), + [anon_sym_bit_DASHand] = ACTIONS(5637), + [anon_sym_bit_DASHxor] = ACTIONS(5639), + [anon_sym_bit_DASHor] = ACTIONS(5641), + [anon_sym_and] = ACTIONS(5643), + [anon_sym_xor] = ACTIONS(1181), + [anon_sym_or] = ACTIONS(1181), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1181), + [anon_sym_DOT_DOT_LT] = ACTIONS(1181), + [anon_sym_null] = ACTIONS(1181), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1181), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1181), + [aux_sym__val_number_token1] = ACTIONS(1181), + [aux_sym__val_number_token2] = ACTIONS(1181), + [aux_sym__val_number_token3] = ACTIONS(1181), + [aux_sym__val_number_token4] = ACTIONS(1181), + [aux_sym__val_number_token5] = ACTIONS(1181), + [aux_sym__val_number_token6] = ACTIONS(1181), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym__str_single_quotes] = ACTIONS(1181), + [sym__str_back_ticks] = ACTIONS(1181), + [anon_sym_err_GT] = ACTIONS(1181), + [anon_sym_out_GT] = ACTIONS(1181), + [anon_sym_e_GT] = ACTIONS(1181), + [anon_sym_o_GT] = ACTIONS(1181), + [anon_sym_err_PLUSout_GT] = ACTIONS(1181), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1181), + [anon_sym_o_PLUSe_GT] = ACTIONS(1181), + [anon_sym_e_PLUSo_GT] = ACTIONS(1181), + [aux_sym_unquoted_token1] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(3), }, - [1781] = { - [sym_comment] = STATE(1781), - [anon_sym_export] = ACTIONS(5199), - [anon_sym_alias] = ACTIONS(5199), - [anon_sym_let] = ACTIONS(5199), - [anon_sym_let_DASHenv] = ACTIONS(5199), - [anon_sym_mut] = ACTIONS(5199), - [anon_sym_const] = ACTIONS(5199), - [anon_sym_SEMI] = ACTIONS(5199), - [sym_cmd_identifier] = ACTIONS(5199), - [anon_sym_LF] = ACTIONS(5201), - [anon_sym_def] = ACTIONS(5199), - [anon_sym_export_DASHenv] = ACTIONS(5199), - [anon_sym_extern] = ACTIONS(5199), - [anon_sym_module] = ACTIONS(5199), - [anon_sym_use] = ACTIONS(5199), - [anon_sym_LBRACK] = ACTIONS(5199), - [anon_sym_LPAREN] = ACTIONS(5199), - [anon_sym_RPAREN] = ACTIONS(5199), - [anon_sym_DOLLAR] = ACTIONS(5199), - [anon_sym_error] = ACTIONS(5199), - [anon_sym_DASH_DASH] = ACTIONS(5199), - [anon_sym_DASH] = ACTIONS(5199), - [anon_sym_break] = ACTIONS(5199), - [anon_sym_continue] = ACTIONS(5199), - [anon_sym_for] = ACTIONS(5199), - [anon_sym_loop] = ACTIONS(5199), - [anon_sym_while] = ACTIONS(5199), - [anon_sym_do] = ACTIONS(5199), - [anon_sym_if] = ACTIONS(5199), - [anon_sym_match] = ACTIONS(5199), - [anon_sym_LBRACE] = ACTIONS(5199), - [anon_sym_RBRACE] = ACTIONS(5199), - [anon_sym_DOT_DOT] = ACTIONS(5199), - [anon_sym_try] = ACTIONS(5199), - [anon_sym_return] = ACTIONS(5199), - [anon_sym_source] = ACTIONS(5199), - [anon_sym_source_DASHenv] = ACTIONS(5199), - [anon_sym_register] = ACTIONS(5199), - [anon_sym_hide] = ACTIONS(5199), - [anon_sym_hide_DASHenv] = ACTIONS(5199), - [anon_sym_overlay] = ACTIONS(5199), - [anon_sym_as] = ACTIONS(5199), - [anon_sym_where] = ACTIONS(5199), - [anon_sym_not] = ACTIONS(5199), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5199), - [anon_sym_DOT_DOT_LT] = ACTIONS(5199), - [anon_sym_null] = ACTIONS(5199), - [anon_sym_true] = ACTIONS(5199), - [anon_sym_false] = ACTIONS(5199), - [aux_sym__val_number_decimal_token1] = ACTIONS(5199), - [aux_sym__val_number_decimal_token2] = ACTIONS(5199), - [anon_sym_DOT2] = ACTIONS(5199), - [aux_sym__val_number_decimal_token3] = ACTIONS(5199), - [aux_sym__val_number_token1] = ACTIONS(5199), - [aux_sym__val_number_token2] = ACTIONS(5199), - [aux_sym__val_number_token3] = ACTIONS(5199), - [aux_sym__val_number_token4] = ACTIONS(5199), - [aux_sym__val_number_token5] = ACTIONS(5199), - [aux_sym__val_number_token6] = ACTIONS(5199), - [anon_sym_0b] = ACTIONS(5199), - [anon_sym_0o] = ACTIONS(5199), - [anon_sym_0x] = ACTIONS(5199), - [sym_val_date] = ACTIONS(5199), - [anon_sym_DQUOTE] = ACTIONS(5199), - [sym__str_single_quotes] = ACTIONS(5199), - [sym__str_back_ticks] = ACTIONS(5199), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5199), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5199), - [anon_sym_CARET] = ACTIONS(5199), - [anon_sym_POUND] = ACTIONS(113), + [1993] = { + [sym_comment] = STATE(1993), + [anon_sym_LBRACK] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(1070), + [anon_sym_RBRACK] = ACTIONS(1070), + [anon_sym_LPAREN] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_GT] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_in] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_DOT_DOT] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_STAR_STAR] = ACTIONS(1070), + [anon_sym_PLUS_PLUS] = ACTIONS(1070), + [anon_sym_SLASH] = ACTIONS(1068), + [anon_sym_mod] = ACTIONS(1070), + [anon_sym_SLASH_SLASH] = ACTIONS(1070), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_bit_DASHshl] = ACTIONS(1070), + [anon_sym_bit_DASHshr] = ACTIONS(1070), + [anon_sym_EQ_EQ] = ACTIONS(1070), + [anon_sym_BANG_EQ] = ACTIONS(1070), + [anon_sym_LT2] = ACTIONS(1068), + [anon_sym_LT_EQ] = ACTIONS(1070), + [anon_sym_GT_EQ] = ACTIONS(1070), + [anon_sym_not_DASHin] = ACTIONS(1070), + [anon_sym_starts_DASHwith] = ACTIONS(1070), + [anon_sym_ends_DASHwith] = ACTIONS(1070), + [anon_sym_EQ_TILDE] = ACTIONS(1070), + [anon_sym_BANG_TILDE] = ACTIONS(1070), + [anon_sym_bit_DASHand] = ACTIONS(1070), + [anon_sym_bit_DASHxor] = ACTIONS(1070), + [anon_sym_bit_DASHor] = ACTIONS(1070), + [anon_sym_and] = ACTIONS(1070), + [anon_sym_xor] = ACTIONS(1070), + [anon_sym_or] = ACTIONS(1070), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), + [anon_sym_DOT_DOT_LT] = ACTIONS(1070), + [anon_sym_null] = ACTIONS(1070), + [anon_sym_true] = ACTIONS(1070), + [anon_sym_false] = ACTIONS(1070), + [aux_sym__val_number_decimal_token1] = ACTIONS(1068), + [aux_sym__val_number_decimal_token2] = ACTIONS(1070), + [anon_sym_DOT2] = ACTIONS(1068), + [aux_sym__val_number_decimal_token3] = ACTIONS(1070), + [aux_sym__val_number_token1] = ACTIONS(1070), + [aux_sym__val_number_token2] = ACTIONS(1070), + [aux_sym__val_number_token3] = ACTIONS(1070), + [aux_sym__val_number_token4] = ACTIONS(1070), + [aux_sym__val_number_token5] = ACTIONS(1070), + [aux_sym__val_number_token6] = ACTIONS(1070), + [anon_sym_0b] = ACTIONS(1068), + [anon_sym_0o] = ACTIONS(1068), + [anon_sym_0x] = ACTIONS(1068), + [sym_val_date] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1070), + [sym__str_single_quotes] = ACTIONS(1070), + [sym__str_back_ticks] = ACTIONS(1070), + [anon_sym_err_GT] = ACTIONS(1070), + [anon_sym_out_GT] = ACTIONS(1070), + [anon_sym_e_GT] = ACTIONS(1070), + [anon_sym_o_GT] = ACTIONS(1070), + [anon_sym_err_PLUSout_GT] = ACTIONS(1070), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1070), + [anon_sym_o_PLUSe_GT] = ACTIONS(1070), + [anon_sym_e_PLUSo_GT] = ACTIONS(1070), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1068), + [anon_sym_POUND] = ACTIONS(3), }, - [1782] = { - [sym_comment] = STATE(1782), - [anon_sym_export] = ACTIONS(5203), - [anon_sym_alias] = ACTIONS(5203), - [anon_sym_let] = ACTIONS(5203), - [anon_sym_let_DASHenv] = ACTIONS(5203), - [anon_sym_mut] = ACTIONS(5203), - [anon_sym_const] = ACTIONS(5203), - [anon_sym_SEMI] = ACTIONS(5203), - [sym_cmd_identifier] = ACTIONS(5203), - [anon_sym_LF] = ACTIONS(5205), - [anon_sym_def] = ACTIONS(5203), - [anon_sym_export_DASHenv] = ACTIONS(5203), - [anon_sym_extern] = ACTIONS(5203), - [anon_sym_module] = ACTIONS(5203), - [anon_sym_use] = ACTIONS(5203), - [anon_sym_LBRACK] = ACTIONS(5203), - [anon_sym_LPAREN] = ACTIONS(5203), - [anon_sym_RPAREN] = ACTIONS(5203), - [anon_sym_DOLLAR] = ACTIONS(5203), - [anon_sym_error] = ACTIONS(5203), - [anon_sym_DASH_DASH] = ACTIONS(5203), - [anon_sym_DASH] = ACTIONS(5203), - [anon_sym_break] = ACTIONS(5203), - [anon_sym_continue] = ACTIONS(5203), - [anon_sym_for] = ACTIONS(5203), - [anon_sym_loop] = ACTIONS(5203), - [anon_sym_while] = ACTIONS(5203), - [anon_sym_do] = ACTIONS(5203), - [anon_sym_if] = ACTIONS(5203), - [anon_sym_match] = ACTIONS(5203), - [anon_sym_LBRACE] = ACTIONS(5203), - [anon_sym_RBRACE] = ACTIONS(5203), - [anon_sym_DOT_DOT] = ACTIONS(5203), - [anon_sym_try] = ACTIONS(5203), - [anon_sym_return] = ACTIONS(5203), - [anon_sym_source] = ACTIONS(5203), - [anon_sym_source_DASHenv] = ACTIONS(5203), - [anon_sym_register] = ACTIONS(5203), - [anon_sym_hide] = ACTIONS(5203), - [anon_sym_hide_DASHenv] = ACTIONS(5203), - [anon_sym_overlay] = ACTIONS(5203), - [anon_sym_as] = ACTIONS(5203), - [anon_sym_where] = ACTIONS(5203), - [anon_sym_not] = ACTIONS(5203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5203), - [anon_sym_DOT_DOT_LT] = ACTIONS(5203), - [anon_sym_null] = ACTIONS(5203), - [anon_sym_true] = ACTIONS(5203), - [anon_sym_false] = ACTIONS(5203), - [aux_sym__val_number_decimal_token1] = ACTIONS(5203), - [aux_sym__val_number_decimal_token2] = ACTIONS(5203), - [anon_sym_DOT2] = ACTIONS(5203), - [aux_sym__val_number_decimal_token3] = ACTIONS(5203), - [aux_sym__val_number_token1] = ACTIONS(5203), - [aux_sym__val_number_token2] = ACTIONS(5203), - [aux_sym__val_number_token3] = ACTIONS(5203), - [aux_sym__val_number_token4] = ACTIONS(5203), - [aux_sym__val_number_token5] = ACTIONS(5203), - [aux_sym__val_number_token6] = ACTIONS(5203), - [anon_sym_0b] = ACTIONS(5203), - [anon_sym_0o] = ACTIONS(5203), - [anon_sym_0x] = ACTIONS(5203), - [sym_val_date] = ACTIONS(5203), - [anon_sym_DQUOTE] = ACTIONS(5203), - [sym__str_single_quotes] = ACTIONS(5203), - [sym__str_back_ticks] = ACTIONS(5203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5203), - [anon_sym_CARET] = ACTIONS(5203), - [anon_sym_POUND] = ACTIONS(113), + [1994] = { + [sym_comment] = STATE(1994), + [anon_sym_LBRACK] = ACTIONS(1181), + [anon_sym_COMMA] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_DOLLAR] = ACTIONS(1181), + [anon_sym_GT] = ACTIONS(5617), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_in] = ACTIONS(5621), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_RBRACE] = ACTIONS(1181), + [anon_sym__] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(5623), + [anon_sym_STAR_STAR] = ACTIONS(5625), + [anon_sym_PLUS_PLUS] = ACTIONS(5625), + [anon_sym_SLASH] = ACTIONS(5623), + [anon_sym_mod] = ACTIONS(5627), + [anon_sym_SLASH_SLASH] = ACTIONS(5627), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_bit_DASHshl] = ACTIONS(5629), + [anon_sym_bit_DASHshr] = ACTIONS(5629), + [anon_sym_EQ_EQ] = ACTIONS(5631), + [anon_sym_BANG_EQ] = ACTIONS(5631), + [anon_sym_LT2] = ACTIONS(5617), + [anon_sym_LT_EQ] = ACTIONS(5631), + [anon_sym_GT_EQ] = ACTIONS(5631), + [anon_sym_not_DASHin] = ACTIONS(5633), + [anon_sym_starts_DASHwith] = ACTIONS(5633), + [anon_sym_ends_DASHwith] = ACTIONS(5633), + [anon_sym_EQ_TILDE] = ACTIONS(5635), + [anon_sym_BANG_TILDE] = ACTIONS(5635), + [anon_sym_bit_DASHand] = ACTIONS(5637), + [anon_sym_bit_DASHxor] = ACTIONS(5639), + [anon_sym_bit_DASHor] = ACTIONS(5641), + [anon_sym_and] = ACTIONS(5643), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_or] = ACTIONS(1181), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1181), + [anon_sym_DOT_DOT_LT] = ACTIONS(1181), + [anon_sym_null] = ACTIONS(1181), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1181), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1181), + [aux_sym__val_number_token1] = ACTIONS(1181), + [aux_sym__val_number_token2] = ACTIONS(1181), + [aux_sym__val_number_token3] = ACTIONS(1181), + [aux_sym__val_number_token4] = ACTIONS(1181), + [aux_sym__val_number_token5] = ACTIONS(1181), + [aux_sym__val_number_token6] = ACTIONS(1181), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym__str_single_quotes] = ACTIONS(1181), + [sym__str_back_ticks] = ACTIONS(1181), + [anon_sym_err_GT] = ACTIONS(1181), + [anon_sym_out_GT] = ACTIONS(1181), + [anon_sym_e_GT] = ACTIONS(1181), + [anon_sym_o_GT] = ACTIONS(1181), + [anon_sym_err_PLUSout_GT] = ACTIONS(1181), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1181), + [anon_sym_o_PLUSe_GT] = ACTIONS(1181), + [anon_sym_e_PLUSo_GT] = ACTIONS(1181), + [aux_sym_unquoted_token1] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(3), }, - [1783] = { - [sym_comment] = STATE(1783), - [anon_sym_export] = ACTIONS(5207), - [anon_sym_alias] = ACTIONS(5207), - [anon_sym_let] = ACTIONS(5207), - [anon_sym_let_DASHenv] = ACTIONS(5207), - [anon_sym_mut] = ACTIONS(5207), - [anon_sym_const] = ACTIONS(5207), - [anon_sym_SEMI] = ACTIONS(5207), - [sym_cmd_identifier] = ACTIONS(5207), - [anon_sym_LF] = ACTIONS(5209), - [anon_sym_def] = ACTIONS(5207), - [anon_sym_export_DASHenv] = ACTIONS(5207), - [anon_sym_extern] = ACTIONS(5207), - [anon_sym_module] = ACTIONS(5207), - [anon_sym_use] = ACTIONS(5207), - [anon_sym_LBRACK] = ACTIONS(5207), - [anon_sym_LPAREN] = ACTIONS(5207), - [anon_sym_RPAREN] = ACTIONS(5207), - [anon_sym_DOLLAR] = ACTIONS(5207), - [anon_sym_error] = ACTIONS(5207), - [anon_sym_DASH_DASH] = ACTIONS(5207), - [anon_sym_DASH] = ACTIONS(5207), - [anon_sym_break] = ACTIONS(5207), - [anon_sym_continue] = ACTIONS(5207), - [anon_sym_for] = ACTIONS(5207), - [anon_sym_loop] = ACTIONS(5207), - [anon_sym_while] = ACTIONS(5207), - [anon_sym_do] = ACTIONS(5207), - [anon_sym_if] = ACTIONS(5207), - [anon_sym_match] = ACTIONS(5207), - [anon_sym_LBRACE] = ACTIONS(5207), - [anon_sym_RBRACE] = ACTIONS(5207), - [anon_sym_DOT_DOT] = ACTIONS(5207), - [anon_sym_try] = ACTIONS(5207), - [anon_sym_return] = ACTIONS(5207), - [anon_sym_source] = ACTIONS(5207), - [anon_sym_source_DASHenv] = ACTIONS(5207), - [anon_sym_register] = ACTIONS(5207), - [anon_sym_hide] = ACTIONS(5207), - [anon_sym_hide_DASHenv] = ACTIONS(5207), - [anon_sym_overlay] = ACTIONS(5207), - [anon_sym_as] = ACTIONS(5207), - [anon_sym_where] = ACTIONS(5207), - [anon_sym_not] = ACTIONS(5207), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5207), - [anon_sym_DOT_DOT_LT] = ACTIONS(5207), - [anon_sym_null] = ACTIONS(5207), - [anon_sym_true] = ACTIONS(5207), - [anon_sym_false] = ACTIONS(5207), - [aux_sym__val_number_decimal_token1] = ACTIONS(5207), - [aux_sym__val_number_decimal_token2] = ACTIONS(5207), - [anon_sym_DOT2] = ACTIONS(5207), - [aux_sym__val_number_decimal_token3] = ACTIONS(5207), - [aux_sym__val_number_token1] = ACTIONS(5207), - [aux_sym__val_number_token2] = ACTIONS(5207), - [aux_sym__val_number_token3] = ACTIONS(5207), - [aux_sym__val_number_token4] = ACTIONS(5207), - [aux_sym__val_number_token5] = ACTIONS(5207), - [aux_sym__val_number_token6] = ACTIONS(5207), - [anon_sym_0b] = ACTIONS(5207), - [anon_sym_0o] = ACTIONS(5207), - [anon_sym_0x] = ACTIONS(5207), - [sym_val_date] = ACTIONS(5207), - [anon_sym_DQUOTE] = ACTIONS(5207), - [sym__str_single_quotes] = ACTIONS(5207), - [sym__str_back_ticks] = ACTIONS(5207), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5207), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5207), - [anon_sym_CARET] = ACTIONS(5207), - [anon_sym_POUND] = ACTIONS(113), + [1995] = { + [sym_comment] = STATE(1995), + [anon_sym_LBRACK] = ACTIONS(1181), + [anon_sym_COMMA] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_DOLLAR] = ACTIONS(1181), + [anon_sym_GT] = ACTIONS(5617), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_in] = ACTIONS(5621), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_RBRACE] = ACTIONS(1181), + [anon_sym__] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(5623), + [anon_sym_STAR_STAR] = ACTIONS(5625), + [anon_sym_PLUS_PLUS] = ACTIONS(5625), + [anon_sym_SLASH] = ACTIONS(5623), + [anon_sym_mod] = ACTIONS(5627), + [anon_sym_SLASH_SLASH] = ACTIONS(5627), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_bit_DASHshl] = ACTIONS(5629), + [anon_sym_bit_DASHshr] = ACTIONS(5629), + [anon_sym_EQ_EQ] = ACTIONS(5631), + [anon_sym_BANG_EQ] = ACTIONS(5631), + [anon_sym_LT2] = ACTIONS(5617), + [anon_sym_LT_EQ] = ACTIONS(5631), + [anon_sym_GT_EQ] = ACTIONS(5631), + [anon_sym_not_DASHin] = ACTIONS(5633), + [anon_sym_starts_DASHwith] = ACTIONS(5633), + [anon_sym_ends_DASHwith] = ACTIONS(5633), + [anon_sym_EQ_TILDE] = ACTIONS(5635), + [anon_sym_BANG_TILDE] = ACTIONS(5635), + [anon_sym_bit_DASHand] = ACTIONS(5637), + [anon_sym_bit_DASHxor] = ACTIONS(5639), + [anon_sym_bit_DASHor] = ACTIONS(5641), + [anon_sym_and] = ACTIONS(5643), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_or] = ACTIONS(5647), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1181), + [anon_sym_DOT_DOT_LT] = ACTIONS(1181), + [anon_sym_null] = ACTIONS(1181), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1181), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1181), + [aux_sym__val_number_token1] = ACTIONS(1181), + [aux_sym__val_number_token2] = ACTIONS(1181), + [aux_sym__val_number_token3] = ACTIONS(1181), + [aux_sym__val_number_token4] = ACTIONS(1181), + [aux_sym__val_number_token5] = ACTIONS(1181), + [aux_sym__val_number_token6] = ACTIONS(1181), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym__str_single_quotes] = ACTIONS(1181), + [sym__str_back_ticks] = ACTIONS(1181), + [anon_sym_err_GT] = ACTIONS(1181), + [anon_sym_out_GT] = ACTIONS(1181), + [anon_sym_e_GT] = ACTIONS(1181), + [anon_sym_o_GT] = ACTIONS(1181), + [anon_sym_err_PLUSout_GT] = ACTIONS(1181), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1181), + [anon_sym_o_PLUSe_GT] = ACTIONS(1181), + [anon_sym_e_PLUSo_GT] = ACTIONS(1181), + [aux_sym_unquoted_token1] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(3), }, - [1784] = { - [sym_comment] = STATE(1784), - [anon_sym_export] = ACTIONS(5211), - [anon_sym_alias] = ACTIONS(5211), - [anon_sym_let] = ACTIONS(5211), - [anon_sym_let_DASHenv] = ACTIONS(5211), - [anon_sym_mut] = ACTIONS(5211), - [anon_sym_const] = ACTIONS(5211), - [anon_sym_SEMI] = ACTIONS(5211), - [sym_cmd_identifier] = ACTIONS(5211), - [anon_sym_LF] = ACTIONS(5213), - [anon_sym_def] = ACTIONS(5211), - [anon_sym_export_DASHenv] = ACTIONS(5211), - [anon_sym_extern] = ACTIONS(5211), - [anon_sym_module] = ACTIONS(5211), - [anon_sym_use] = ACTIONS(5211), - [anon_sym_LBRACK] = ACTIONS(5211), - [anon_sym_LPAREN] = ACTIONS(5211), - [anon_sym_RPAREN] = ACTIONS(5211), - [anon_sym_DOLLAR] = ACTIONS(5211), - [anon_sym_error] = ACTIONS(5211), - [anon_sym_DASH_DASH] = ACTIONS(5211), - [anon_sym_DASH] = ACTIONS(5211), - [anon_sym_break] = ACTIONS(5211), - [anon_sym_continue] = ACTIONS(5211), - [anon_sym_for] = ACTIONS(5211), - [anon_sym_loop] = ACTIONS(5211), - [anon_sym_while] = ACTIONS(5211), - [anon_sym_do] = ACTIONS(5211), - [anon_sym_if] = ACTIONS(5211), - [anon_sym_match] = ACTIONS(5211), - [anon_sym_LBRACE] = ACTIONS(5211), - [anon_sym_RBRACE] = ACTIONS(5211), - [anon_sym_DOT_DOT] = ACTIONS(5211), - [anon_sym_try] = ACTIONS(5211), - [anon_sym_return] = ACTIONS(5211), - [anon_sym_source] = ACTIONS(5211), - [anon_sym_source_DASHenv] = ACTIONS(5211), - [anon_sym_register] = ACTIONS(5211), - [anon_sym_hide] = ACTIONS(5211), - [anon_sym_hide_DASHenv] = ACTIONS(5211), - [anon_sym_overlay] = ACTIONS(5211), - [anon_sym_as] = ACTIONS(5211), - [anon_sym_where] = ACTIONS(5211), - [anon_sym_not] = ACTIONS(5211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5211), - [anon_sym_DOT_DOT_LT] = ACTIONS(5211), - [anon_sym_null] = ACTIONS(5211), - [anon_sym_true] = ACTIONS(5211), - [anon_sym_false] = ACTIONS(5211), - [aux_sym__val_number_decimal_token1] = ACTIONS(5211), - [aux_sym__val_number_decimal_token2] = ACTIONS(5211), - [anon_sym_DOT2] = ACTIONS(5211), - [aux_sym__val_number_decimal_token3] = ACTIONS(5211), - [aux_sym__val_number_token1] = ACTIONS(5211), - [aux_sym__val_number_token2] = ACTIONS(5211), - [aux_sym__val_number_token3] = ACTIONS(5211), - [aux_sym__val_number_token4] = ACTIONS(5211), - [aux_sym__val_number_token5] = ACTIONS(5211), - [aux_sym__val_number_token6] = ACTIONS(5211), - [anon_sym_0b] = ACTIONS(5211), - [anon_sym_0o] = ACTIONS(5211), - [anon_sym_0x] = ACTIONS(5211), - [sym_val_date] = ACTIONS(5211), - [anon_sym_DQUOTE] = ACTIONS(5211), - [sym__str_single_quotes] = ACTIONS(5211), - [sym__str_back_ticks] = ACTIONS(5211), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5211), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5211), - [anon_sym_CARET] = ACTIONS(5211), - [anon_sym_POUND] = ACTIONS(113), + [1996] = { + [sym__match_pattern_record_variable] = STATE(3152), + [sym_expr_parenthesized] = STATE(10732), + [sym_val_variable] = STATE(3088), + [sym__var] = STATE(2820), + [sym_val_number] = STATE(10732), + [sym__val_number_decimal] = STATE(4911), + [sym__val_number] = STATE(4922), + [sym_val_string] = STATE(10732), + [sym__str_double_quotes] = STATE(6592), + [sym_record_entry] = STATE(3152), + [sym__record_key] = STATE(10419), + [sym_comment] = STATE(1996), + [aux_sym__match_pattern_record_repeat1] = STATE(2165), + [anon_sym_export] = ACTIONS(5649), + [anon_sym_alias] = ACTIONS(5649), + [anon_sym_let] = ACTIONS(5649), + [anon_sym_let_DASHenv] = ACTIONS(5649), + [anon_sym_mut] = ACTIONS(5649), + [anon_sym_const] = ACTIONS(5649), + [sym_cmd_identifier] = ACTIONS(5649), + [anon_sym_def] = ACTIONS(5649), + [anon_sym_export_DASHenv] = ACTIONS(5649), + [anon_sym_extern] = ACTIONS(5649), + [anon_sym_module] = ACTIONS(5649), + [anon_sym_use] = ACTIONS(5649), + [anon_sym_LPAREN] = ACTIONS(5651), + [anon_sym_DOLLAR] = ACTIONS(5653), + [anon_sym_error] = ACTIONS(5649), + [anon_sym_list] = ACTIONS(5649), + [anon_sym_DASH] = ACTIONS(189), + [anon_sym_break] = ACTIONS(5649), + [anon_sym_continue] = ACTIONS(5649), + [anon_sym_for] = ACTIONS(5649), + [anon_sym_in] = ACTIONS(5649), + [anon_sym_loop] = ACTIONS(5649), + [anon_sym_make] = ACTIONS(5649), + [anon_sym_while] = ACTIONS(5649), + [anon_sym_do] = ACTIONS(5649), + [anon_sym_if] = ACTIONS(5649), + [anon_sym_else] = ACTIONS(5649), + [anon_sym_match] = ACTIONS(5649), + [anon_sym_RBRACE] = ACTIONS(5655), + [anon_sym_try] = ACTIONS(5649), + [anon_sym_catch] = ACTIONS(5649), + [anon_sym_return] = ACTIONS(5649), + [anon_sym_source] = ACTIONS(5649), + [anon_sym_source_DASHenv] = ACTIONS(5649), + [anon_sym_register] = ACTIONS(5649), + [anon_sym_hide] = ACTIONS(5649), + [anon_sym_hide_DASHenv] = ACTIONS(5649), + [anon_sym_overlay] = ACTIONS(5649), + [anon_sym_new] = ACTIONS(5649), + [anon_sym_as] = ACTIONS(5649), + [anon_sym_PLUS] = ACTIONS(189), + [aux_sym__val_number_decimal_token1] = ACTIONS(5657), + [aux_sym__val_number_decimal_token2] = ACTIONS(5659), + [anon_sym_DOT2] = ACTIONS(5661), + [aux_sym__val_number_decimal_token3] = ACTIONS(5663), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(5665), + [aux_sym__val_number_token5] = ACTIONS(3124), + [aux_sym__val_number_token6] = ACTIONS(5665), + [anon_sym_DQUOTE] = ACTIONS(2838), + [sym__str_single_quotes] = ACTIONS(2840), + [sym__str_back_ticks] = ACTIONS(2840), + [aux_sym__record_key_token2] = ACTIONS(225), + [anon_sym_POUND] = ACTIONS(3), }, - [1785] = { - [sym_comment] = STATE(1785), - [anon_sym_export] = ACTIONS(5215), - [anon_sym_alias] = ACTIONS(5215), - [anon_sym_let] = ACTIONS(5215), - [anon_sym_let_DASHenv] = ACTIONS(5215), - [anon_sym_mut] = ACTIONS(5215), - [anon_sym_const] = ACTIONS(5215), - [anon_sym_SEMI] = ACTIONS(5215), - [sym_cmd_identifier] = ACTIONS(5215), - [anon_sym_LF] = ACTIONS(5217), - [anon_sym_def] = ACTIONS(5215), - [anon_sym_export_DASHenv] = ACTIONS(5215), - [anon_sym_extern] = ACTIONS(5215), - [anon_sym_module] = ACTIONS(5215), - [anon_sym_use] = ACTIONS(5215), - [anon_sym_LBRACK] = ACTIONS(5215), - [anon_sym_LPAREN] = ACTIONS(5215), - [anon_sym_RPAREN] = ACTIONS(5215), - [anon_sym_DOLLAR] = ACTIONS(5215), - [anon_sym_error] = ACTIONS(5215), - [anon_sym_DASH_DASH] = ACTIONS(5215), - [anon_sym_DASH] = ACTIONS(5215), - [anon_sym_break] = ACTIONS(5215), - [anon_sym_continue] = ACTIONS(5215), - [anon_sym_for] = ACTIONS(5215), - [anon_sym_loop] = ACTIONS(5215), - [anon_sym_while] = ACTIONS(5215), - [anon_sym_do] = ACTIONS(5215), - [anon_sym_if] = ACTIONS(5215), - [anon_sym_match] = ACTIONS(5215), - [anon_sym_LBRACE] = ACTIONS(5215), - [anon_sym_RBRACE] = ACTIONS(5215), - [anon_sym_DOT_DOT] = ACTIONS(5215), - [anon_sym_try] = ACTIONS(5215), - [anon_sym_return] = ACTIONS(5215), - [anon_sym_source] = ACTIONS(5215), - [anon_sym_source_DASHenv] = ACTIONS(5215), - [anon_sym_register] = ACTIONS(5215), - [anon_sym_hide] = ACTIONS(5215), - [anon_sym_hide_DASHenv] = ACTIONS(5215), - [anon_sym_overlay] = ACTIONS(5215), - [anon_sym_as] = ACTIONS(5215), - [anon_sym_where] = ACTIONS(5215), - [anon_sym_not] = ACTIONS(5215), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5215), - [anon_sym_DOT_DOT_LT] = ACTIONS(5215), - [anon_sym_null] = ACTIONS(5215), - [anon_sym_true] = ACTIONS(5215), - [anon_sym_false] = ACTIONS(5215), - [aux_sym__val_number_decimal_token1] = ACTIONS(5215), - [aux_sym__val_number_decimal_token2] = ACTIONS(5215), - [anon_sym_DOT2] = ACTIONS(5215), - [aux_sym__val_number_decimal_token3] = ACTIONS(5215), - [aux_sym__val_number_token1] = ACTIONS(5215), - [aux_sym__val_number_token2] = ACTIONS(5215), - [aux_sym__val_number_token3] = ACTIONS(5215), - [aux_sym__val_number_token4] = ACTIONS(5215), - [aux_sym__val_number_token5] = ACTIONS(5215), - [aux_sym__val_number_token6] = ACTIONS(5215), - [anon_sym_0b] = ACTIONS(5215), - [anon_sym_0o] = ACTIONS(5215), - [anon_sym_0x] = ACTIONS(5215), - [sym_val_date] = ACTIONS(5215), - [anon_sym_DQUOTE] = ACTIONS(5215), - [sym__str_single_quotes] = ACTIONS(5215), - [sym__str_back_ticks] = ACTIONS(5215), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5215), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5215), - [anon_sym_CARET] = ACTIONS(5215), - [anon_sym_POUND] = ACTIONS(113), + [1997] = { + [sym_comment] = STATE(1997), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_COMMA] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1161), + [anon_sym_DOLLAR] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1159), + [anon_sym_DASH] = ACTIONS(1159), + [anon_sym_in] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(1161), + [anon_sym_RBRACE] = ACTIONS(1161), + [anon_sym__] = ACTIONS(1159), + [anon_sym_DOT_DOT] = ACTIONS(1159), + [anon_sym_STAR] = ACTIONS(1159), + [anon_sym_STAR_STAR] = ACTIONS(1161), + [anon_sym_PLUS_PLUS] = ACTIONS(1161), + [anon_sym_SLASH] = ACTIONS(1159), + [anon_sym_mod] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(1161), + [anon_sym_PLUS] = ACTIONS(1159), + [anon_sym_bit_DASHshl] = ACTIONS(1161), + [anon_sym_bit_DASHshr] = ACTIONS(1161), + [anon_sym_EQ_EQ] = ACTIONS(1161), + [anon_sym_BANG_EQ] = ACTIONS(1161), + [anon_sym_LT2] = ACTIONS(1159), + [anon_sym_LT_EQ] = ACTIONS(1161), + [anon_sym_GT_EQ] = ACTIONS(1161), + [anon_sym_not_DASHin] = ACTIONS(1161), + [anon_sym_starts_DASHwith] = ACTIONS(1161), + [anon_sym_ends_DASHwith] = ACTIONS(1161), + [anon_sym_EQ_TILDE] = ACTIONS(1161), + [anon_sym_BANG_TILDE] = ACTIONS(1161), + [anon_sym_bit_DASHand] = ACTIONS(1161), + [anon_sym_bit_DASHxor] = ACTIONS(1161), + [anon_sym_bit_DASHor] = ACTIONS(1161), + [anon_sym_and] = ACTIONS(1161), + [anon_sym_xor] = ACTIONS(1161), + [anon_sym_or] = ACTIONS(1161), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1161), + [anon_sym_DOT_DOT_LT] = ACTIONS(1161), + [anon_sym_null] = ACTIONS(1161), + [anon_sym_true] = ACTIONS(1161), + [anon_sym_false] = ACTIONS(1161), + [aux_sym__val_number_decimal_token1] = ACTIONS(1159), + [aux_sym__val_number_decimal_token2] = ACTIONS(1161), + [anon_sym_DOT2] = ACTIONS(1159), + [aux_sym__val_number_decimal_token3] = ACTIONS(1161), + [aux_sym__val_number_token1] = ACTIONS(1161), + [aux_sym__val_number_token2] = ACTIONS(1161), + [aux_sym__val_number_token3] = ACTIONS(1161), + [aux_sym__val_number_token4] = ACTIONS(1161), + [aux_sym__val_number_token5] = ACTIONS(1161), + [aux_sym__val_number_token6] = ACTIONS(1161), + [anon_sym_0b] = ACTIONS(1159), + [anon_sym_0o] = ACTIONS(1159), + [anon_sym_0x] = ACTIONS(1159), + [sym_val_date] = ACTIONS(1161), + [anon_sym_DQUOTE] = ACTIONS(1161), + [sym__str_single_quotes] = ACTIONS(1161), + [sym__str_back_ticks] = ACTIONS(1161), + [anon_sym_err_GT] = ACTIONS(1161), + [anon_sym_out_GT] = ACTIONS(1161), + [anon_sym_e_GT] = ACTIONS(1161), + [anon_sym_o_GT] = ACTIONS(1161), + [anon_sym_err_PLUSout_GT] = ACTIONS(1161), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1161), + [anon_sym_o_PLUSe_GT] = ACTIONS(1161), + [anon_sym_e_PLUSo_GT] = ACTIONS(1161), + [aux_sym_unquoted_token1] = ACTIONS(1159), + [anon_sym_POUND] = ACTIONS(3), }, - [1786] = { - [sym_comment] = STATE(1786), - [anon_sym_export] = ACTIONS(5219), - [anon_sym_alias] = ACTIONS(5219), - [anon_sym_let] = ACTIONS(5219), - [anon_sym_let_DASHenv] = ACTIONS(5219), - [anon_sym_mut] = ACTIONS(5219), - [anon_sym_const] = ACTIONS(5219), - [anon_sym_SEMI] = ACTIONS(5219), - [sym_cmd_identifier] = ACTIONS(5219), - [anon_sym_LF] = ACTIONS(5221), - [anon_sym_def] = ACTIONS(5219), - [anon_sym_export_DASHenv] = ACTIONS(5219), - [anon_sym_extern] = ACTIONS(5219), - [anon_sym_module] = ACTIONS(5219), - [anon_sym_use] = ACTIONS(5219), - [anon_sym_LBRACK] = ACTIONS(5219), - [anon_sym_LPAREN] = ACTIONS(5219), - [anon_sym_RPAREN] = ACTIONS(5219), - [anon_sym_DOLLAR] = ACTIONS(5219), - [anon_sym_error] = ACTIONS(5219), - [anon_sym_DASH_DASH] = ACTIONS(5219), - [anon_sym_DASH] = ACTIONS(5219), - [anon_sym_break] = ACTIONS(5219), - [anon_sym_continue] = ACTIONS(5219), - [anon_sym_for] = ACTIONS(5219), - [anon_sym_loop] = ACTIONS(5219), - [anon_sym_while] = ACTIONS(5219), - [anon_sym_do] = ACTIONS(5219), - [anon_sym_if] = ACTIONS(5219), - [anon_sym_match] = ACTIONS(5219), - [anon_sym_LBRACE] = ACTIONS(5219), - [anon_sym_RBRACE] = ACTIONS(5219), - [anon_sym_DOT_DOT] = ACTIONS(5219), - [anon_sym_try] = ACTIONS(5219), - [anon_sym_return] = ACTIONS(5219), - [anon_sym_source] = ACTIONS(5219), - [anon_sym_source_DASHenv] = ACTIONS(5219), - [anon_sym_register] = ACTIONS(5219), - [anon_sym_hide] = ACTIONS(5219), - [anon_sym_hide_DASHenv] = ACTIONS(5219), - [anon_sym_overlay] = ACTIONS(5219), - [anon_sym_as] = ACTIONS(5219), - [anon_sym_where] = ACTIONS(5219), - [anon_sym_not] = ACTIONS(5219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5219), - [anon_sym_DOT_DOT_LT] = ACTIONS(5219), - [anon_sym_null] = ACTIONS(5219), - [anon_sym_true] = ACTIONS(5219), - [anon_sym_false] = ACTIONS(5219), - [aux_sym__val_number_decimal_token1] = ACTIONS(5219), - [aux_sym__val_number_decimal_token2] = ACTIONS(5219), - [anon_sym_DOT2] = ACTIONS(5219), - [aux_sym__val_number_decimal_token3] = ACTIONS(5219), - [aux_sym__val_number_token1] = ACTIONS(5219), - [aux_sym__val_number_token2] = ACTIONS(5219), - [aux_sym__val_number_token3] = ACTIONS(5219), - [aux_sym__val_number_token4] = ACTIONS(5219), - [aux_sym__val_number_token5] = ACTIONS(5219), - [aux_sym__val_number_token6] = ACTIONS(5219), - [anon_sym_0b] = ACTIONS(5219), - [anon_sym_0o] = ACTIONS(5219), - [anon_sym_0x] = ACTIONS(5219), - [sym_val_date] = ACTIONS(5219), - [anon_sym_DQUOTE] = ACTIONS(5219), - [sym__str_single_quotes] = ACTIONS(5219), - [sym__str_back_ticks] = ACTIONS(5219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5219), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5219), - [anon_sym_CARET] = ACTIONS(5219), + [1998] = { + [sym_comment] = STATE(1998), + [ts_builtin_sym_end] = ACTIONS(1074), + [anon_sym_export] = ACTIONS(1072), + [anon_sym_alias] = ACTIONS(1072), + [anon_sym_let] = ACTIONS(1072), + [anon_sym_let_DASHenv] = ACTIONS(1072), + [anon_sym_mut] = ACTIONS(1072), + [anon_sym_const] = ACTIONS(1072), + [anon_sym_SEMI] = ACTIONS(1072), + [sym_cmd_identifier] = ACTIONS(1072), + [anon_sym_LF] = ACTIONS(1074), + [anon_sym_def] = ACTIONS(1072), + [anon_sym_export_DASHenv] = ACTIONS(1072), + [anon_sym_extern] = ACTIONS(1072), + [anon_sym_module] = ACTIONS(1072), + [anon_sym_use] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1072), + [anon_sym_LPAREN] = ACTIONS(1072), + [anon_sym_DOLLAR] = ACTIONS(1072), + [anon_sym_error] = ACTIONS(1072), + [anon_sym_DASH_DASH] = ACTIONS(1072), + [anon_sym_DASH] = ACTIONS(1072), + [anon_sym_break] = ACTIONS(1072), + [anon_sym_continue] = ACTIONS(1072), + [anon_sym_for] = ACTIONS(1072), + [anon_sym_loop] = ACTIONS(1072), + [anon_sym_while] = ACTIONS(1072), + [anon_sym_do] = ACTIONS(1072), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_match] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_DOT_DOT] = ACTIONS(1072), + [anon_sym_try] = ACTIONS(1072), + [anon_sym_return] = ACTIONS(1072), + [anon_sym_source] = ACTIONS(1072), + [anon_sym_source_DASHenv] = ACTIONS(1072), + [anon_sym_register] = ACTIONS(1072), + [anon_sym_hide] = ACTIONS(1072), + [anon_sym_hide_DASHenv] = ACTIONS(1072), + [anon_sym_overlay] = ACTIONS(1072), + [anon_sym_as] = ACTIONS(1072), + [anon_sym_where] = ACTIONS(1072), + [anon_sym_not] = ACTIONS(1072), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1072), + [anon_sym_DOT_DOT_LT] = ACTIONS(1072), + [anon_sym_null] = ACTIONS(1072), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [aux_sym__val_number_decimal_token1] = ACTIONS(1072), + [aux_sym__val_number_decimal_token2] = ACTIONS(1072), + [anon_sym_DOT2] = ACTIONS(1072), + [aux_sym__val_number_decimal_token3] = ACTIONS(1072), + [aux_sym__val_number_token1] = ACTIONS(1072), + [aux_sym__val_number_token2] = ACTIONS(1072), + [aux_sym__val_number_token3] = ACTIONS(1072), + [aux_sym__val_number_token4] = ACTIONS(1072), + [aux_sym__val_number_token5] = ACTIONS(1072), + [aux_sym__val_number_token6] = ACTIONS(1072), + [anon_sym_0b] = ACTIONS(1072), + [anon_sym_0o] = ACTIONS(1072), + [anon_sym_0x] = ACTIONS(1072), + [sym_val_date] = ACTIONS(1072), + [anon_sym_DQUOTE] = ACTIONS(1072), + [sym__str_single_quotes] = ACTIONS(1072), + [sym__str_back_ticks] = ACTIONS(1072), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1072), + [anon_sym_CARET] = ACTIONS(1072), [anon_sym_POUND] = ACTIONS(113), }, - [1787] = { - [sym_comment] = STATE(1787), - [anon_sym_export] = ACTIONS(5223), - [anon_sym_alias] = ACTIONS(5223), - [anon_sym_let] = ACTIONS(5223), - [anon_sym_let_DASHenv] = ACTIONS(5223), - [anon_sym_mut] = ACTIONS(5223), - [anon_sym_const] = ACTIONS(5223), - [anon_sym_SEMI] = ACTIONS(5223), - [sym_cmd_identifier] = ACTIONS(5223), - [anon_sym_LF] = ACTIONS(5225), - [anon_sym_def] = ACTIONS(5223), - [anon_sym_export_DASHenv] = ACTIONS(5223), - [anon_sym_extern] = ACTIONS(5223), - [anon_sym_module] = ACTIONS(5223), - [anon_sym_use] = ACTIONS(5223), - [anon_sym_LBRACK] = ACTIONS(5223), - [anon_sym_LPAREN] = ACTIONS(5223), - [anon_sym_RPAREN] = ACTIONS(5223), - [anon_sym_DOLLAR] = ACTIONS(5223), - [anon_sym_error] = ACTIONS(5223), - [anon_sym_DASH_DASH] = ACTIONS(5223), - [anon_sym_DASH] = ACTIONS(5223), - [anon_sym_break] = ACTIONS(5223), - [anon_sym_continue] = ACTIONS(5223), - [anon_sym_for] = ACTIONS(5223), - [anon_sym_loop] = ACTIONS(5223), - [anon_sym_while] = ACTIONS(5223), - [anon_sym_do] = ACTIONS(5223), - [anon_sym_if] = ACTIONS(5223), - [anon_sym_match] = ACTIONS(5223), - [anon_sym_LBRACE] = ACTIONS(5223), - [anon_sym_RBRACE] = ACTIONS(5223), - [anon_sym_DOT_DOT] = ACTIONS(5223), - [anon_sym_try] = ACTIONS(5223), - [anon_sym_return] = ACTIONS(5223), - [anon_sym_source] = ACTIONS(5223), - [anon_sym_source_DASHenv] = ACTIONS(5223), - [anon_sym_register] = ACTIONS(5223), - [anon_sym_hide] = ACTIONS(5223), - [anon_sym_hide_DASHenv] = ACTIONS(5223), - [anon_sym_overlay] = ACTIONS(5223), - [anon_sym_as] = ACTIONS(5223), - [anon_sym_where] = ACTIONS(5223), - [anon_sym_not] = ACTIONS(5223), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5223), - [anon_sym_DOT_DOT_LT] = ACTIONS(5223), - [anon_sym_null] = ACTIONS(5223), - [anon_sym_true] = ACTIONS(5223), - [anon_sym_false] = ACTIONS(5223), - [aux_sym__val_number_decimal_token1] = ACTIONS(5223), - [aux_sym__val_number_decimal_token2] = ACTIONS(5223), - [anon_sym_DOT2] = ACTIONS(5223), - [aux_sym__val_number_decimal_token3] = ACTIONS(5223), - [aux_sym__val_number_token1] = ACTIONS(5223), - [aux_sym__val_number_token2] = ACTIONS(5223), - [aux_sym__val_number_token3] = ACTIONS(5223), - [aux_sym__val_number_token4] = ACTIONS(5223), - [aux_sym__val_number_token5] = ACTIONS(5223), - [aux_sym__val_number_token6] = ACTIONS(5223), - [anon_sym_0b] = ACTIONS(5223), - [anon_sym_0o] = ACTIONS(5223), - [anon_sym_0x] = ACTIONS(5223), - [sym_val_date] = ACTIONS(5223), - [anon_sym_DQUOTE] = ACTIONS(5223), - [sym__str_single_quotes] = ACTIONS(5223), - [sym__str_back_ticks] = ACTIONS(5223), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5223), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5223), - [anon_sym_CARET] = ACTIONS(5223), + [1999] = { + [sym_comment] = STATE(1999), + [ts_builtin_sym_end] = ACTIONS(1259), + [anon_sym_export] = ACTIONS(1257), + [anon_sym_alias] = ACTIONS(1257), + [anon_sym_let] = ACTIONS(1257), + [anon_sym_let_DASHenv] = ACTIONS(1257), + [anon_sym_mut] = ACTIONS(1257), + [anon_sym_const] = ACTIONS(1257), + [anon_sym_SEMI] = ACTIONS(1257), + [sym_cmd_identifier] = ACTIONS(1257), + [anon_sym_LF] = ACTIONS(1259), + [anon_sym_def] = ACTIONS(1257), + [anon_sym_export_DASHenv] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(1257), + [anon_sym_module] = ACTIONS(1257), + [anon_sym_use] = ACTIONS(1257), + [anon_sym_LBRACK] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_DOLLAR] = ACTIONS(1257), + [anon_sym_error] = ACTIONS(1257), + [anon_sym_DASH_DASH] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_break] = ACTIONS(1257), + [anon_sym_continue] = ACTIONS(1257), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_loop] = ACTIONS(1257), + [anon_sym_while] = ACTIONS(1257), + [anon_sym_do] = ACTIONS(1257), + [anon_sym_if] = ACTIONS(1257), + [anon_sym_match] = ACTIONS(1257), + [anon_sym_LBRACE] = ACTIONS(1257), + [anon_sym_DOT_DOT] = ACTIONS(1257), + [anon_sym_try] = ACTIONS(1257), + [anon_sym_return] = ACTIONS(1257), + [anon_sym_source] = ACTIONS(1257), + [anon_sym_source_DASHenv] = ACTIONS(1257), + [anon_sym_register] = ACTIONS(1257), + [anon_sym_hide] = ACTIONS(1257), + [anon_sym_hide_DASHenv] = ACTIONS(1257), + [anon_sym_overlay] = ACTIONS(1257), + [anon_sym_as] = ACTIONS(1257), + [anon_sym_where] = ACTIONS(1257), + [anon_sym_not] = ACTIONS(1257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1257), + [anon_sym_DOT_DOT_LT] = ACTIONS(1257), + [anon_sym_null] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [aux_sym__val_number_decimal_token1] = ACTIONS(1257), + [aux_sym__val_number_decimal_token2] = ACTIONS(1257), + [anon_sym_DOT2] = ACTIONS(1257), + [aux_sym__val_number_decimal_token3] = ACTIONS(1257), + [aux_sym__val_number_token1] = ACTIONS(1257), + [aux_sym__val_number_token2] = ACTIONS(1257), + [aux_sym__val_number_token3] = ACTIONS(1257), + [aux_sym__val_number_token4] = ACTIONS(1257), + [aux_sym__val_number_token5] = ACTIONS(1257), + [aux_sym__val_number_token6] = ACTIONS(1257), + [anon_sym_0b] = ACTIONS(1257), + [anon_sym_0o] = ACTIONS(1257), + [anon_sym_0x] = ACTIONS(1257), + [sym_val_date] = ACTIONS(1257), + [anon_sym_DQUOTE] = ACTIONS(1257), + [sym__str_single_quotes] = ACTIONS(1257), + [sym__str_back_ticks] = ACTIONS(1257), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1257), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1257), + [anon_sym_CARET] = ACTIONS(1257), [anon_sym_POUND] = ACTIONS(113), }, - [1788] = { - [sym_comment] = STATE(1788), - [anon_sym_export] = ACTIONS(5227), - [anon_sym_alias] = ACTIONS(5227), - [anon_sym_let] = ACTIONS(5227), - [anon_sym_let_DASHenv] = ACTIONS(5227), - [anon_sym_mut] = ACTIONS(5227), - [anon_sym_const] = ACTIONS(5227), - [anon_sym_SEMI] = ACTIONS(5227), - [sym_cmd_identifier] = ACTIONS(5227), - [anon_sym_LF] = ACTIONS(5229), - [anon_sym_def] = ACTIONS(5227), - [anon_sym_export_DASHenv] = ACTIONS(5227), - [anon_sym_extern] = ACTIONS(5227), - [anon_sym_module] = ACTIONS(5227), - [anon_sym_use] = ACTIONS(5227), - [anon_sym_LBRACK] = ACTIONS(5227), - [anon_sym_LPAREN] = ACTIONS(5227), - [anon_sym_RPAREN] = ACTIONS(5227), - [anon_sym_DOLLAR] = ACTIONS(5227), - [anon_sym_error] = ACTIONS(5227), - [anon_sym_DASH_DASH] = ACTIONS(5227), - [anon_sym_DASH] = ACTIONS(5227), - [anon_sym_break] = ACTIONS(5227), - [anon_sym_continue] = ACTIONS(5227), - [anon_sym_for] = ACTIONS(5227), - [anon_sym_loop] = ACTIONS(5227), - [anon_sym_while] = ACTIONS(5227), - [anon_sym_do] = ACTIONS(5227), - [anon_sym_if] = ACTIONS(5227), - [anon_sym_match] = ACTIONS(5227), - [anon_sym_LBRACE] = ACTIONS(5227), - [anon_sym_RBRACE] = ACTIONS(5227), - [anon_sym_DOT_DOT] = ACTIONS(5227), - [anon_sym_try] = ACTIONS(5227), - [anon_sym_return] = ACTIONS(5227), - [anon_sym_source] = ACTIONS(5227), - [anon_sym_source_DASHenv] = ACTIONS(5227), - [anon_sym_register] = ACTIONS(5227), - [anon_sym_hide] = ACTIONS(5227), - [anon_sym_hide_DASHenv] = ACTIONS(5227), - [anon_sym_overlay] = ACTIONS(5227), - [anon_sym_as] = ACTIONS(5227), - [anon_sym_where] = ACTIONS(5227), - [anon_sym_not] = ACTIONS(5227), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5227), - [anon_sym_DOT_DOT_LT] = ACTIONS(5227), - [anon_sym_null] = ACTIONS(5227), - [anon_sym_true] = ACTIONS(5227), - [anon_sym_false] = ACTIONS(5227), - [aux_sym__val_number_decimal_token1] = ACTIONS(5227), - [aux_sym__val_number_decimal_token2] = ACTIONS(5227), - [anon_sym_DOT2] = ACTIONS(5227), - [aux_sym__val_number_decimal_token3] = ACTIONS(5227), - [aux_sym__val_number_token1] = ACTIONS(5227), - [aux_sym__val_number_token2] = ACTIONS(5227), - [aux_sym__val_number_token3] = ACTIONS(5227), - [aux_sym__val_number_token4] = ACTIONS(5227), - [aux_sym__val_number_token5] = ACTIONS(5227), - [aux_sym__val_number_token6] = ACTIONS(5227), - [anon_sym_0b] = ACTIONS(5227), - [anon_sym_0o] = ACTIONS(5227), - [anon_sym_0x] = ACTIONS(5227), - [sym_val_date] = ACTIONS(5227), - [anon_sym_DQUOTE] = ACTIONS(5227), - [sym__str_single_quotes] = ACTIONS(5227), - [sym__str_back_ticks] = ACTIONS(5227), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5227), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5227), - [anon_sym_CARET] = ACTIONS(5227), - [anon_sym_POUND] = ACTIONS(113), + [2000] = { + [sym_comment] = STATE(2000), + [anon_sym_LBRACK] = ACTIONS(1173), + [anon_sym_COMMA] = ACTIONS(1173), + [anon_sym_RBRACK] = ACTIONS(1173), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_DOLLAR] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1173), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1173), + [anon_sym_SLASH_SLASH] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1173), + [anon_sym_bit_DASHshr] = ACTIONS(1173), + [anon_sym_EQ_EQ] = ACTIONS(1173), + [anon_sym_BANG_EQ] = ACTIONS(1173), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1173), + [anon_sym_GT_EQ] = ACTIONS(1173), + [anon_sym_not_DASHin] = ACTIONS(1173), + [anon_sym_starts_DASHwith] = ACTIONS(1173), + [anon_sym_ends_DASHwith] = ACTIONS(1173), + [anon_sym_EQ_TILDE] = ACTIONS(1173), + [anon_sym_BANG_TILDE] = ACTIONS(1173), + [anon_sym_bit_DASHand] = ACTIONS(1173), + [anon_sym_bit_DASHxor] = ACTIONS(1173), + [anon_sym_bit_DASHor] = ACTIONS(1173), + [anon_sym_and] = ACTIONS(1173), + [anon_sym_xor] = ACTIONS(1173), + [anon_sym_or] = ACTIONS(1173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1173), + [anon_sym_DOT_DOT_LT] = ACTIONS(1173), + [anon_sym_null] = ACTIONS(1173), + [anon_sym_true] = ACTIONS(1173), + [anon_sym_false] = ACTIONS(1173), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1173), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1173), + [aux_sym__val_number_token1] = ACTIONS(1173), + [aux_sym__val_number_token2] = ACTIONS(1173), + [aux_sym__val_number_token3] = ACTIONS(1173), + [aux_sym__val_number_token4] = ACTIONS(1173), + [aux_sym__val_number_token5] = ACTIONS(1173), + [aux_sym__val_number_token6] = ACTIONS(1173), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym__str_single_quotes] = ACTIONS(1173), + [sym__str_back_ticks] = ACTIONS(1173), + [anon_sym_err_GT] = ACTIONS(1173), + [anon_sym_out_GT] = ACTIONS(1173), + [anon_sym_e_GT] = ACTIONS(1173), + [anon_sym_o_GT] = ACTIONS(1173), + [anon_sym_err_PLUSout_GT] = ACTIONS(1173), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1173), + [anon_sym_o_PLUSe_GT] = ACTIONS(1173), + [anon_sym_e_PLUSo_GT] = ACTIONS(1173), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(3), }, - [1789] = { - [sym_comment] = STATE(1789), - [anon_sym_export] = ACTIONS(5231), - [anon_sym_alias] = ACTIONS(5231), - [anon_sym_let] = ACTIONS(5231), - [anon_sym_let_DASHenv] = ACTIONS(5231), - [anon_sym_mut] = ACTIONS(5231), - [anon_sym_const] = ACTIONS(5231), - [anon_sym_SEMI] = ACTIONS(5231), - [sym_cmd_identifier] = ACTIONS(5231), - [anon_sym_LF] = ACTIONS(5233), - [anon_sym_def] = ACTIONS(5231), - [anon_sym_export_DASHenv] = ACTIONS(5231), - [anon_sym_extern] = ACTIONS(5231), - [anon_sym_module] = ACTIONS(5231), - [anon_sym_use] = ACTIONS(5231), - [anon_sym_LBRACK] = ACTIONS(5231), - [anon_sym_LPAREN] = ACTIONS(5231), - [anon_sym_RPAREN] = ACTIONS(5231), - [anon_sym_DOLLAR] = ACTIONS(5231), - [anon_sym_error] = ACTIONS(5231), - [anon_sym_DASH_DASH] = ACTIONS(5231), - [anon_sym_DASH] = ACTIONS(5231), - [anon_sym_break] = ACTIONS(5231), - [anon_sym_continue] = ACTIONS(5231), - [anon_sym_for] = ACTIONS(5231), - [anon_sym_loop] = ACTIONS(5231), - [anon_sym_while] = ACTIONS(5231), - [anon_sym_do] = ACTIONS(5231), - [anon_sym_if] = ACTIONS(5231), - [anon_sym_match] = ACTIONS(5231), - [anon_sym_LBRACE] = ACTIONS(5231), - [anon_sym_RBRACE] = ACTIONS(5231), - [anon_sym_DOT_DOT] = ACTIONS(5231), - [anon_sym_try] = ACTIONS(5231), - [anon_sym_return] = ACTIONS(5231), - [anon_sym_source] = ACTIONS(5231), - [anon_sym_source_DASHenv] = ACTIONS(5231), - [anon_sym_register] = ACTIONS(5231), - [anon_sym_hide] = ACTIONS(5231), - [anon_sym_hide_DASHenv] = ACTIONS(5231), - [anon_sym_overlay] = ACTIONS(5231), - [anon_sym_as] = ACTIONS(5231), - [anon_sym_where] = ACTIONS(5231), - [anon_sym_not] = ACTIONS(5231), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5231), - [anon_sym_DOT_DOT_LT] = ACTIONS(5231), - [anon_sym_null] = ACTIONS(5231), - [anon_sym_true] = ACTIONS(5231), - [anon_sym_false] = ACTIONS(5231), - [aux_sym__val_number_decimal_token1] = ACTIONS(5231), - [aux_sym__val_number_decimal_token2] = ACTIONS(5231), - [anon_sym_DOT2] = ACTIONS(5231), - [aux_sym__val_number_decimal_token3] = ACTIONS(5231), - [aux_sym__val_number_token1] = ACTIONS(5231), - [aux_sym__val_number_token2] = ACTIONS(5231), - [aux_sym__val_number_token3] = ACTIONS(5231), - [aux_sym__val_number_token4] = ACTIONS(5231), - [aux_sym__val_number_token5] = ACTIONS(5231), - [aux_sym__val_number_token6] = ACTIONS(5231), - [anon_sym_0b] = ACTIONS(5231), - [anon_sym_0o] = ACTIONS(5231), - [anon_sym_0x] = ACTIONS(5231), - [sym_val_date] = ACTIONS(5231), - [anon_sym_DQUOTE] = ACTIONS(5231), - [sym__str_single_quotes] = ACTIONS(5231), - [sym__str_back_ticks] = ACTIONS(5231), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5231), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5231), - [anon_sym_CARET] = ACTIONS(5231), + [2001] = { + [sym_comment] = STATE(2001), + [ts_builtin_sym_end] = ACTIONS(1049), + [anon_sym_SEMI] = ACTIONS(1047), + [anon_sym_LF] = ACTIONS(1049), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1047), + [anon_sym_PIPE] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1047), + [anon_sym_GT] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_in] = ACTIONS(1047), + [anon_sym_LBRACE] = ACTIONS(1047), + [anon_sym_DOT_DOT] = ACTIONS(1047), + [anon_sym_STAR] = ACTIONS(1047), + [anon_sym_STAR_STAR] = ACTIONS(1047), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_SLASH] = ACTIONS(1047), + [anon_sym_mod] = ACTIONS(1047), + [anon_sym_SLASH_SLASH] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1047), + [anon_sym_bit_DASHshl] = ACTIONS(1047), + [anon_sym_bit_DASHshr] = ACTIONS(1047), + [anon_sym_EQ_EQ] = ACTIONS(1047), + [anon_sym_BANG_EQ] = ACTIONS(1047), + [anon_sym_LT2] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1047), + [anon_sym_GT_EQ] = ACTIONS(1047), + [anon_sym_not_DASHin] = ACTIONS(1047), + [anon_sym_starts_DASHwith] = ACTIONS(1047), + [anon_sym_ends_DASHwith] = ACTIONS(1047), + [anon_sym_EQ_TILDE] = ACTIONS(1047), + [anon_sym_BANG_TILDE] = ACTIONS(1047), + [anon_sym_bit_DASHand] = ACTIONS(1047), + [anon_sym_bit_DASHxor] = ACTIONS(1047), + [anon_sym_bit_DASHor] = ACTIONS(1047), + [anon_sym_and] = ACTIONS(1047), + [anon_sym_xor] = ACTIONS(1047), + [anon_sym_or] = ACTIONS(1047), + [anon_sym_not] = ACTIONS(1047), + [anon_sym_DOT_DOT2] = ACTIONS(1047), + [anon_sym_DOT] = ACTIONS(1047), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1047), + [anon_sym_DOT_DOT_LT] = ACTIONS(1047), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1049), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1049), + [anon_sym_null] = ACTIONS(1047), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [aux_sym__val_number_decimal_token1] = ACTIONS(1047), + [aux_sym__val_number_decimal_token2] = ACTIONS(1047), + [anon_sym_DOT2] = ACTIONS(1047), + [aux_sym__val_number_decimal_token3] = ACTIONS(1047), + [aux_sym__val_number_token1] = ACTIONS(1047), + [aux_sym__val_number_token2] = ACTIONS(1047), + [aux_sym__val_number_token3] = ACTIONS(1047), + [aux_sym__val_number_token4] = ACTIONS(1047), + [aux_sym__val_number_token5] = ACTIONS(1047), + [aux_sym__val_number_token6] = ACTIONS(1047), + [anon_sym_0b] = ACTIONS(1047), + [anon_sym_0o] = ACTIONS(1047), + [anon_sym_0x] = ACTIONS(1047), + [sym_val_date] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1047), + [sym__str_single_quotes] = ACTIONS(1047), + [sym__str_back_ticks] = ACTIONS(1047), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1047), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1047), [anon_sym_POUND] = ACTIONS(113), }, - [1790] = { - [sym_comment] = STATE(1790), - [anon_sym_export] = ACTIONS(5235), - [anon_sym_alias] = ACTIONS(5235), - [anon_sym_let] = ACTIONS(5235), - [anon_sym_let_DASHenv] = ACTIONS(5235), - [anon_sym_mut] = ACTIONS(5235), - [anon_sym_const] = ACTIONS(5235), - [anon_sym_SEMI] = ACTIONS(5235), - [sym_cmd_identifier] = ACTIONS(5235), - [anon_sym_LF] = ACTIONS(5237), - [anon_sym_def] = ACTIONS(5235), - [anon_sym_export_DASHenv] = ACTIONS(5235), - [anon_sym_extern] = ACTIONS(5235), - [anon_sym_module] = ACTIONS(5235), - [anon_sym_use] = ACTIONS(5235), - [anon_sym_LBRACK] = ACTIONS(5235), - [anon_sym_LPAREN] = ACTIONS(5235), - [anon_sym_RPAREN] = ACTIONS(5235), - [anon_sym_DOLLAR] = ACTIONS(5235), - [anon_sym_error] = ACTIONS(5235), - [anon_sym_DASH_DASH] = ACTIONS(5235), - [anon_sym_DASH] = ACTIONS(5235), - [anon_sym_break] = ACTIONS(5235), - [anon_sym_continue] = ACTIONS(5235), - [anon_sym_for] = ACTIONS(5235), - [anon_sym_loop] = ACTIONS(5235), - [anon_sym_while] = ACTIONS(5235), - [anon_sym_do] = ACTIONS(5235), - [anon_sym_if] = ACTIONS(5235), - [anon_sym_match] = ACTIONS(5235), - [anon_sym_LBRACE] = ACTIONS(5235), - [anon_sym_RBRACE] = ACTIONS(5235), - [anon_sym_DOT_DOT] = ACTIONS(5235), - [anon_sym_try] = ACTIONS(5235), - [anon_sym_return] = ACTIONS(5235), - [anon_sym_source] = ACTIONS(5235), - [anon_sym_source_DASHenv] = ACTIONS(5235), - [anon_sym_register] = ACTIONS(5235), - [anon_sym_hide] = ACTIONS(5235), - [anon_sym_hide_DASHenv] = ACTIONS(5235), - [anon_sym_overlay] = ACTIONS(5235), - [anon_sym_as] = ACTIONS(5235), - [anon_sym_where] = ACTIONS(5235), - [anon_sym_not] = ACTIONS(5235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5235), - [anon_sym_DOT_DOT_LT] = ACTIONS(5235), - [anon_sym_null] = ACTIONS(5235), - [anon_sym_true] = ACTIONS(5235), - [anon_sym_false] = ACTIONS(5235), - [aux_sym__val_number_decimal_token1] = ACTIONS(5235), - [aux_sym__val_number_decimal_token2] = ACTIONS(5235), - [anon_sym_DOT2] = ACTIONS(5235), - [aux_sym__val_number_decimal_token3] = ACTIONS(5235), - [aux_sym__val_number_token1] = ACTIONS(5235), - [aux_sym__val_number_token2] = ACTIONS(5235), - [aux_sym__val_number_token3] = ACTIONS(5235), - [aux_sym__val_number_token4] = ACTIONS(5235), - [aux_sym__val_number_token5] = ACTIONS(5235), - [aux_sym__val_number_token6] = ACTIONS(5235), - [anon_sym_0b] = ACTIONS(5235), - [anon_sym_0o] = ACTIONS(5235), - [anon_sym_0x] = ACTIONS(5235), - [sym_val_date] = ACTIONS(5235), - [anon_sym_DQUOTE] = ACTIONS(5235), - [sym__str_single_quotes] = ACTIONS(5235), - [sym__str_back_ticks] = ACTIONS(5235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5235), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5235), - [anon_sym_CARET] = ACTIONS(5235), + [2002] = { + [sym__expression] = STATE(7157), + [sym_expr_unary] = STATE(5677), + [sym__expr_unary_minus] = STATE(5679), + [sym_expr_binary] = STATE(5677), + [sym__expr_binary_expression] = STATE(6377), + [sym_expr_parenthesized] = STATE(4919), + [sym_val_range] = STATE(8295), + [sym__value] = STATE(5677), + [sym_val_nothing] = STATE(5612), + [sym_val_bool] = STATE(5612), + [sym_val_variable] = STATE(4867), + [sym__var] = STATE(4310), + [sym_val_number] = STATE(5612), + [sym__val_number_decimal] = STATE(4408), + [sym__val_number] = STATE(5661), + [sym_val_duration] = STATE(5612), + [sym_val_filesize] = STATE(5612), + [sym_val_binary] = STATE(5612), + [sym_val_string] = STATE(5612), + [sym__str_double_quotes] = STATE(5733), + [sym_val_interpolated] = STATE(5612), + [sym__inter_single_quotes] = STATE(5590), + [sym__inter_double_quotes] = STATE(5591), + [sym_val_list] = STATE(5612), + [sym_val_record] = STATE(5612), + [sym_val_table] = STATE(5612), + [sym_val_closure] = STATE(5612), + [sym__flag] = STATE(2023), + [sym_short_flag] = STATE(4939), + [sym_long_flag] = STATE(4939), + [sym_long_flag_equals_value] = STATE(4865), + [sym_comment] = STATE(2002), + [ts_builtin_sym_end] = ACTIONS(4933), + [anon_sym_SEMI] = ACTIONS(4931), + [anon_sym_LF] = ACTIONS(4933), + [anon_sym_LBRACK] = ACTIONS(5667), + [anon_sym_LPAREN] = ACTIONS(5669), + [anon_sym_PIPE] = ACTIONS(4931), + [anon_sym_DOLLAR] = ACTIONS(2667), + [anon_sym_DASH_DASH] = ACTIONS(5671), + [anon_sym_DASH] = ACTIONS(5673), + [anon_sym_LBRACE] = ACTIONS(5675), + [anon_sym_DOT_DOT] = ACTIONS(5677), + [anon_sym_not] = ACTIONS(5679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5681), + [anon_sym_DOT_DOT_LT] = ACTIONS(5681), + [anon_sym_null] = ACTIONS(5683), + [anon_sym_true] = ACTIONS(5685), + [anon_sym_false] = ACTIONS(5685), + [aux_sym__val_number_decimal_token1] = ACTIONS(5687), + [aux_sym__val_number_decimal_token2] = ACTIONS(5687), + [anon_sym_DOT2] = ACTIONS(5689), + [aux_sym__val_number_decimal_token3] = ACTIONS(5691), + [aux_sym__val_number_token1] = ACTIONS(5693), + [aux_sym__val_number_token2] = ACTIONS(5693), + [aux_sym__val_number_token3] = ACTIONS(5693), + [aux_sym__val_number_token4] = ACTIONS(5693), + [aux_sym__val_number_token5] = ACTIONS(5693), + [aux_sym__val_number_token6] = ACTIONS(5693), + [anon_sym_0b] = ACTIONS(2695), + [anon_sym_0o] = ACTIONS(2697), + [anon_sym_0x] = ACTIONS(2697), + [sym_val_date] = ACTIONS(5695), + [anon_sym_DQUOTE] = ACTIONS(5697), + [sym__str_single_quotes] = ACTIONS(5699), + [sym__str_back_ticks] = ACTIONS(5699), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5703), [anon_sym_POUND] = ACTIONS(113), }, - [1791] = { - [sym_comment] = STATE(1791), - [anon_sym_export] = ACTIONS(5239), - [anon_sym_alias] = ACTIONS(5239), - [anon_sym_let] = ACTIONS(5239), - [anon_sym_let_DASHenv] = ACTIONS(5239), - [anon_sym_mut] = ACTIONS(5239), - [anon_sym_const] = ACTIONS(5239), - [anon_sym_SEMI] = ACTIONS(5239), - [sym_cmd_identifier] = ACTIONS(5239), - [anon_sym_LF] = ACTIONS(5241), - [anon_sym_def] = ACTIONS(5239), - [anon_sym_export_DASHenv] = ACTIONS(5239), - [anon_sym_extern] = ACTIONS(5239), - [anon_sym_module] = ACTIONS(5239), - [anon_sym_use] = ACTIONS(5239), - [anon_sym_LBRACK] = ACTIONS(5239), - [anon_sym_LPAREN] = ACTIONS(5239), - [anon_sym_RPAREN] = ACTIONS(5239), - [anon_sym_DOLLAR] = ACTIONS(5239), - [anon_sym_error] = ACTIONS(5239), - [anon_sym_DASH_DASH] = ACTIONS(5239), - [anon_sym_DASH] = ACTIONS(5239), - [anon_sym_break] = ACTIONS(5239), - [anon_sym_continue] = ACTIONS(5239), - [anon_sym_for] = ACTIONS(5239), - [anon_sym_loop] = ACTIONS(5239), - [anon_sym_while] = ACTIONS(5239), - [anon_sym_do] = ACTIONS(5239), - [anon_sym_if] = ACTIONS(5239), - [anon_sym_match] = ACTIONS(5239), - [anon_sym_LBRACE] = ACTIONS(5239), - [anon_sym_RBRACE] = ACTIONS(5239), - [anon_sym_DOT_DOT] = ACTIONS(5239), - [anon_sym_try] = ACTIONS(5239), - [anon_sym_return] = ACTIONS(5239), - [anon_sym_source] = ACTIONS(5239), - [anon_sym_source_DASHenv] = ACTIONS(5239), - [anon_sym_register] = ACTIONS(5239), - [anon_sym_hide] = ACTIONS(5239), - [anon_sym_hide_DASHenv] = ACTIONS(5239), - [anon_sym_overlay] = ACTIONS(5239), - [anon_sym_as] = ACTIONS(5239), - [anon_sym_where] = ACTIONS(5239), - [anon_sym_not] = ACTIONS(5239), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5239), - [anon_sym_DOT_DOT_LT] = ACTIONS(5239), - [anon_sym_null] = ACTIONS(5239), - [anon_sym_true] = ACTIONS(5239), - [anon_sym_false] = ACTIONS(5239), - [aux_sym__val_number_decimal_token1] = ACTIONS(5239), - [aux_sym__val_number_decimal_token2] = ACTIONS(5239), - [anon_sym_DOT2] = ACTIONS(5239), - [aux_sym__val_number_decimal_token3] = ACTIONS(5239), - [aux_sym__val_number_token1] = ACTIONS(5239), - [aux_sym__val_number_token2] = ACTIONS(5239), - [aux_sym__val_number_token3] = ACTIONS(5239), - [aux_sym__val_number_token4] = ACTIONS(5239), - [aux_sym__val_number_token5] = ACTIONS(5239), - [aux_sym__val_number_token6] = ACTIONS(5239), - [anon_sym_0b] = ACTIONS(5239), - [anon_sym_0o] = ACTIONS(5239), - [anon_sym_0x] = ACTIONS(5239), - [sym_val_date] = ACTIONS(5239), - [anon_sym_DQUOTE] = ACTIONS(5239), - [sym__str_single_quotes] = ACTIONS(5239), - [sym__str_back_ticks] = ACTIONS(5239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5239), - [anon_sym_CARET] = ACTIONS(5239), - [anon_sym_POUND] = ACTIONS(113), + [2003] = { + [sym_comment] = STATE(2003), + [anon_sym_LBRACK] = ACTIONS(1213), + [anon_sym_COMMA] = ACTIONS(1213), + [anon_sym_LPAREN] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1213), + [anon_sym_GT] = ACTIONS(1211), + [anon_sym_DASH] = ACTIONS(1211), + [anon_sym_in] = ACTIONS(1211), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_RBRACE] = ACTIONS(1213), + [anon_sym__] = ACTIONS(1211), + [anon_sym_DOT_DOT] = ACTIONS(1211), + [anon_sym_STAR] = ACTIONS(1211), + [anon_sym_STAR_STAR] = ACTIONS(1213), + [anon_sym_PLUS_PLUS] = ACTIONS(1213), + [anon_sym_SLASH] = ACTIONS(1211), + [anon_sym_mod] = ACTIONS(1213), + [anon_sym_SLASH_SLASH] = ACTIONS(1213), + [anon_sym_PLUS] = ACTIONS(1211), + [anon_sym_bit_DASHshl] = ACTIONS(1213), + [anon_sym_bit_DASHshr] = ACTIONS(1213), + [anon_sym_EQ_EQ] = ACTIONS(1213), + [anon_sym_BANG_EQ] = ACTIONS(1213), + [anon_sym_LT2] = ACTIONS(1211), + [anon_sym_LT_EQ] = ACTIONS(1213), + [anon_sym_GT_EQ] = ACTIONS(1213), + [anon_sym_not_DASHin] = ACTIONS(1213), + [anon_sym_starts_DASHwith] = ACTIONS(1213), + [anon_sym_ends_DASHwith] = ACTIONS(1213), + [anon_sym_EQ_TILDE] = ACTIONS(1213), + [anon_sym_BANG_TILDE] = ACTIONS(1213), + [anon_sym_bit_DASHand] = ACTIONS(1213), + [anon_sym_bit_DASHxor] = ACTIONS(1213), + [anon_sym_bit_DASHor] = ACTIONS(1213), + [anon_sym_and] = ACTIONS(1213), + [anon_sym_xor] = ACTIONS(1213), + [anon_sym_or] = ACTIONS(1213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1213), + [anon_sym_DOT_DOT_LT] = ACTIONS(1213), + [anon_sym_null] = ACTIONS(1213), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1211), + [aux_sym__val_number_decimal_token2] = ACTIONS(1213), + [anon_sym_DOT2] = ACTIONS(1211), + [aux_sym__val_number_decimal_token3] = ACTIONS(1213), + [aux_sym__val_number_token1] = ACTIONS(1213), + [aux_sym__val_number_token2] = ACTIONS(1213), + [aux_sym__val_number_token3] = ACTIONS(1213), + [aux_sym__val_number_token4] = ACTIONS(1213), + [aux_sym__val_number_token5] = ACTIONS(1213), + [aux_sym__val_number_token6] = ACTIONS(1213), + [anon_sym_0b] = ACTIONS(1211), + [anon_sym_0o] = ACTIONS(1211), + [anon_sym_0x] = ACTIONS(1211), + [sym_val_date] = ACTIONS(1213), + [anon_sym_DQUOTE] = ACTIONS(1213), + [sym__str_single_quotes] = ACTIONS(1213), + [sym__str_back_ticks] = ACTIONS(1213), + [anon_sym_err_GT] = ACTIONS(1213), + [anon_sym_out_GT] = ACTIONS(1213), + [anon_sym_e_GT] = ACTIONS(1213), + [anon_sym_o_GT] = ACTIONS(1213), + [anon_sym_err_PLUSout_GT] = ACTIONS(1213), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1213), + [anon_sym_o_PLUSe_GT] = ACTIONS(1213), + [anon_sym_e_PLUSo_GT] = ACTIONS(1213), + [aux_sym_unquoted_token1] = ACTIONS(1211), + [anon_sym_POUND] = ACTIONS(3), }, - [1792] = { - [sym_comment] = STATE(1792), - [ts_builtin_sym_end] = ACTIONS(938), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_error] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_as] = ACTIONS(936), - [anon_sym_where] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_LPAREN2] = ACTIONS(938), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [anon_sym_POUND] = ACTIONS(113), - }, - [1793] = { - [sym_comment] = STATE(1793), - [ts_builtin_sym_end] = ACTIONS(1290), - [anon_sym_export] = ACTIONS(1243), - [anon_sym_alias] = ACTIONS(1243), - [anon_sym_let] = ACTIONS(1243), - [anon_sym_let_DASHenv] = ACTIONS(1243), - [anon_sym_mut] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1243), - [sym_cmd_identifier] = ACTIONS(1243), - [anon_sym_LF] = ACTIONS(1290), - [anon_sym_def] = ACTIONS(1243), - [anon_sym_export_DASHenv] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1243), - [anon_sym_module] = ACTIONS(1243), - [anon_sym_use] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_error] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_loop] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_match] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_try] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_source] = ACTIONS(1243), - [anon_sym_source_DASHenv] = ACTIONS(1243), - [anon_sym_register] = ACTIONS(1243), - [anon_sym_hide] = ACTIONS(1243), - [anon_sym_hide_DASHenv] = ACTIONS(1243), - [anon_sym_overlay] = ACTIONS(1243), - [anon_sym_as] = ACTIONS(1243), - [anon_sym_where] = ACTIONS(1243), - [anon_sym_not] = ACTIONS(1243), - [anon_sym_LPAREN2] = ACTIONS(1290), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1243), - [anon_sym_DOT_DOT_LT] = ACTIONS(1243), - [anon_sym_null] = ACTIONS(1243), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_decimal_token2] = ACTIONS(1243), - [anon_sym_DOT2] = ACTIONS(1243), - [aux_sym__val_number_decimal_token3] = ACTIONS(1243), - [aux_sym__val_number_token1] = ACTIONS(1243), - [aux_sym__val_number_token2] = ACTIONS(1243), - [aux_sym__val_number_token3] = ACTIONS(1243), - [aux_sym__val_number_token4] = ACTIONS(1243), - [aux_sym__val_number_token5] = ACTIONS(1243), - [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_0b] = ACTIONS(1243), - [anon_sym_0o] = ACTIONS(1243), - [anon_sym_0x] = ACTIONS(1243), - [sym_val_date] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym__str_single_quotes] = ACTIONS(1243), - [sym__str_back_ticks] = ACTIONS(1243), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1243), - [anon_sym_CARET] = ACTIONS(1243), - [anon_sym_POUND] = ACTIONS(113), + [2004] = { + [sym_comment] = STATE(2004), + [anon_sym_LBRACK] = ACTIONS(1181), + [anon_sym_COMMA] = ACTIONS(1181), + [anon_sym_RBRACK] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_DOLLAR] = ACTIONS(1181), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1181), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(5705), + [anon_sym_STAR_STAR] = ACTIONS(5707), + [anon_sym_PLUS_PLUS] = ACTIONS(5707), + [anon_sym_SLASH] = ACTIONS(5705), + [anon_sym_mod] = ACTIONS(5709), + [anon_sym_SLASH_SLASH] = ACTIONS(5709), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_bit_DASHshl] = ACTIONS(1181), + [anon_sym_bit_DASHshr] = ACTIONS(1181), + [anon_sym_EQ_EQ] = ACTIONS(1181), + [anon_sym_BANG_EQ] = ACTIONS(1181), + [anon_sym_LT2] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1181), + [anon_sym_GT_EQ] = ACTIONS(1181), + [anon_sym_not_DASHin] = ACTIONS(1181), + [anon_sym_starts_DASHwith] = ACTIONS(1181), + [anon_sym_ends_DASHwith] = ACTIONS(1181), + [anon_sym_EQ_TILDE] = ACTIONS(1181), + [anon_sym_BANG_TILDE] = ACTIONS(1181), + [anon_sym_bit_DASHand] = ACTIONS(1181), + [anon_sym_bit_DASHxor] = ACTIONS(1181), + [anon_sym_bit_DASHor] = ACTIONS(1181), + [anon_sym_and] = ACTIONS(1181), + [anon_sym_xor] = ACTIONS(1181), + [anon_sym_or] = ACTIONS(1181), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1181), + [anon_sym_DOT_DOT_LT] = ACTIONS(1181), + [anon_sym_null] = ACTIONS(1181), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1181), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1181), + [aux_sym__val_number_token1] = ACTIONS(1181), + [aux_sym__val_number_token2] = ACTIONS(1181), + [aux_sym__val_number_token3] = ACTIONS(1181), + [aux_sym__val_number_token4] = ACTIONS(1181), + [aux_sym__val_number_token5] = ACTIONS(1181), + [aux_sym__val_number_token6] = ACTIONS(1181), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym__str_single_quotes] = ACTIONS(1181), + [sym__str_back_ticks] = ACTIONS(1181), + [anon_sym_err_GT] = ACTIONS(1181), + [anon_sym_out_GT] = ACTIONS(1181), + [anon_sym_e_GT] = ACTIONS(1181), + [anon_sym_o_GT] = ACTIONS(1181), + [anon_sym_err_PLUSout_GT] = ACTIONS(1181), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1181), + [anon_sym_o_PLUSe_GT] = ACTIONS(1181), + [anon_sym_e_PLUSo_GT] = ACTIONS(1181), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(3), }, - [1794] = { - [sym_comment] = STATE(1794), - [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), - [anon_sym_SEMI] = ACTIONS(2437), - [sym_cmd_identifier] = ACTIONS(2437), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_RPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_RBRACE] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_not] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [aux_sym__immediate_decimal_token1] = ACTIONS(5243), - [aux_sym__immediate_decimal_token2] = ACTIONS(5245), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [anon_sym_DOT2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2437), - [anon_sym_0o] = ACTIONS(2437), - [anon_sym_0x] = ACTIONS(2437), - [sym_val_date] = 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_CARET] = ACTIONS(2437), - [anon_sym_POUND] = ACTIONS(113), + [2005] = { + [sym_comment] = STATE(2005), + [anon_sym_LBRACK] = ACTIONS(1181), + [anon_sym_COMMA] = ACTIONS(1181), + [anon_sym_RBRACK] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_DOLLAR] = ACTIONS(1181), + [anon_sym_GT] = ACTIONS(5711), + [anon_sym_DASH_DASH] = ACTIONS(1181), + [anon_sym_DASH] = ACTIONS(5713), + [anon_sym_in] = ACTIONS(5715), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(5705), + [anon_sym_STAR_STAR] = ACTIONS(5707), + [anon_sym_PLUS_PLUS] = ACTIONS(5707), + [anon_sym_SLASH] = ACTIONS(5705), + [anon_sym_mod] = ACTIONS(5709), + [anon_sym_SLASH_SLASH] = ACTIONS(5709), + [anon_sym_PLUS] = ACTIONS(5713), + [anon_sym_bit_DASHshl] = ACTIONS(5717), + [anon_sym_bit_DASHshr] = ACTIONS(5717), + [anon_sym_EQ_EQ] = ACTIONS(5719), + [anon_sym_BANG_EQ] = ACTIONS(5719), + [anon_sym_LT2] = ACTIONS(5711), + [anon_sym_LT_EQ] = ACTIONS(5719), + [anon_sym_GT_EQ] = ACTIONS(5719), + [anon_sym_not_DASHin] = ACTIONS(5721), + [anon_sym_starts_DASHwith] = ACTIONS(5721), + [anon_sym_ends_DASHwith] = ACTIONS(5721), + [anon_sym_EQ_TILDE] = ACTIONS(5723), + [anon_sym_BANG_TILDE] = ACTIONS(5723), + [anon_sym_bit_DASHand] = ACTIONS(1181), + [anon_sym_bit_DASHxor] = ACTIONS(1181), + [anon_sym_bit_DASHor] = ACTIONS(1181), + [anon_sym_and] = ACTIONS(1181), + [anon_sym_xor] = ACTIONS(1181), + [anon_sym_or] = ACTIONS(1181), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1181), + [anon_sym_DOT_DOT_LT] = ACTIONS(1181), + [anon_sym_null] = ACTIONS(1181), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1181), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1181), + [aux_sym__val_number_token1] = ACTIONS(1181), + [aux_sym__val_number_token2] = ACTIONS(1181), + [aux_sym__val_number_token3] = ACTIONS(1181), + [aux_sym__val_number_token4] = ACTIONS(1181), + [aux_sym__val_number_token5] = ACTIONS(1181), + [aux_sym__val_number_token6] = ACTIONS(1181), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym__str_single_quotes] = ACTIONS(1181), + [sym__str_back_ticks] = ACTIONS(1181), + [anon_sym_err_GT] = ACTIONS(1181), + [anon_sym_out_GT] = ACTIONS(1181), + [anon_sym_e_GT] = ACTIONS(1181), + [anon_sym_o_GT] = ACTIONS(1181), + [anon_sym_err_PLUSout_GT] = ACTIONS(1181), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1181), + [anon_sym_o_PLUSe_GT] = ACTIONS(1181), + [anon_sym_e_PLUSo_GT] = ACTIONS(1181), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(3), }, - [1795] = { - [sym_comment] = STATE(1795), - [anon_sym_export] = ACTIONS(1113), - [anon_sym_alias] = ACTIONS(1113), - [anon_sym_let] = ACTIONS(1113), - [anon_sym_let_DASHenv] = ACTIONS(1113), - [anon_sym_mut] = ACTIONS(1113), - [anon_sym_const] = ACTIONS(1113), - [anon_sym_SEMI] = ACTIONS(1113), - [sym_cmd_identifier] = ACTIONS(1113), - [anon_sym_LF] = ACTIONS(1115), - [anon_sym_def] = ACTIONS(1113), - [anon_sym_export_DASHenv] = ACTIONS(1113), - [anon_sym_extern] = ACTIONS(1113), - [anon_sym_module] = ACTIONS(1113), - [anon_sym_use] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_RPAREN] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1113), - [anon_sym_error] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_loop] = ACTIONS(1113), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_RBRACE] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1113), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_source] = ACTIONS(1113), - [anon_sym_source_DASHenv] = ACTIONS(1113), - [anon_sym_register] = ACTIONS(1113), - [anon_sym_hide] = ACTIONS(1113), - [anon_sym_hide_DASHenv] = ACTIONS(1113), - [anon_sym_overlay] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_where] = ACTIONS(1113), - [anon_sym_not] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1113), - [anon_sym_DOT_DOT_LT] = ACTIONS(1113), - [anon_sym_null] = ACTIONS(1113), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1113), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_decimal_token2] = ACTIONS(1113), - [anon_sym_DOT2] = ACTIONS(1113), - [aux_sym__val_number_decimal_token3] = ACTIONS(1113), - [aux_sym__val_number_token1] = ACTIONS(1113), - [aux_sym__val_number_token2] = ACTIONS(1113), - [aux_sym__val_number_token3] = ACTIONS(1113), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1113), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_0b] = ACTIONS(1113), - [anon_sym_0o] = ACTIONS(1113), - [anon_sym_0x] = ACTIONS(1113), - [sym_val_date] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym__str_single_quotes] = ACTIONS(1113), - [sym__str_back_ticks] = ACTIONS(1113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), - [anon_sym_CARET] = ACTIONS(1113), + [2006] = { + [sym__expression] = STATE(7218), + [sym_expr_unary] = STATE(5677), + [sym__expr_unary_minus] = STATE(5679), + [sym_expr_binary] = STATE(5677), + [sym__expr_binary_expression] = STATE(6377), + [sym_expr_parenthesized] = STATE(4919), + [sym_val_range] = STATE(8295), + [sym__value] = STATE(5677), + [sym_val_nothing] = STATE(5612), + [sym_val_bool] = STATE(5612), + [sym_val_variable] = STATE(4867), + [sym__var] = STATE(4310), + [sym_val_number] = STATE(5612), + [sym__val_number_decimal] = STATE(4408), + [sym__val_number] = STATE(5661), + [sym_val_duration] = STATE(5612), + [sym_val_filesize] = STATE(5612), + [sym_val_binary] = STATE(5612), + [sym_val_string] = STATE(5612), + [sym__str_double_quotes] = STATE(5733), + [sym_val_interpolated] = STATE(5612), + [sym__inter_single_quotes] = STATE(5590), + [sym__inter_double_quotes] = STATE(5591), + [sym_val_list] = STATE(5612), + [sym_val_record] = STATE(5612), + [sym_val_table] = STATE(5612), + [sym_val_closure] = STATE(5612), + [sym__flag] = STATE(2002), + [sym_short_flag] = STATE(4939), + [sym_long_flag] = STATE(4939), + [sym_long_flag_equals_value] = STATE(4865), + [sym_comment] = STATE(2006), + [ts_builtin_sym_end] = ACTIONS(4831), + [anon_sym_SEMI] = ACTIONS(4829), + [anon_sym_LF] = ACTIONS(4831), + [anon_sym_LBRACK] = ACTIONS(5667), + [anon_sym_LPAREN] = ACTIONS(5669), + [anon_sym_PIPE] = ACTIONS(4829), + [anon_sym_DOLLAR] = ACTIONS(2667), + [anon_sym_DASH_DASH] = ACTIONS(5671), + [anon_sym_DASH] = ACTIONS(5673), + [anon_sym_LBRACE] = ACTIONS(5675), + [anon_sym_DOT_DOT] = ACTIONS(5677), + [anon_sym_not] = ACTIONS(5679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5681), + [anon_sym_DOT_DOT_LT] = ACTIONS(5681), + [anon_sym_null] = ACTIONS(5683), + [anon_sym_true] = ACTIONS(5685), + [anon_sym_false] = ACTIONS(5685), + [aux_sym__val_number_decimal_token1] = ACTIONS(5687), + [aux_sym__val_number_decimal_token2] = ACTIONS(5687), + [anon_sym_DOT2] = ACTIONS(5689), + [aux_sym__val_number_decimal_token3] = ACTIONS(5691), + [aux_sym__val_number_token1] = ACTIONS(5693), + [aux_sym__val_number_token2] = ACTIONS(5693), + [aux_sym__val_number_token3] = ACTIONS(5693), + [aux_sym__val_number_token4] = ACTIONS(5693), + [aux_sym__val_number_token5] = ACTIONS(5693), + [aux_sym__val_number_token6] = ACTIONS(5693), + [anon_sym_0b] = ACTIONS(2695), + [anon_sym_0o] = ACTIONS(2697), + [anon_sym_0x] = ACTIONS(2697), + [sym_val_date] = ACTIONS(5695), + [anon_sym_DQUOTE] = ACTIONS(5697), + [sym__str_single_quotes] = ACTIONS(5699), + [sym__str_back_ticks] = ACTIONS(5699), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5703), [anon_sym_POUND] = ACTIONS(113), }, - [1796] = { - [sym_comment] = STATE(1796), - [ts_builtin_sym_end] = ACTIONS(1416), - [anon_sym_export] = ACTIONS(1414), - [anon_sym_alias] = ACTIONS(1414), - [anon_sym_let] = ACTIONS(1414), - [anon_sym_let_DASHenv] = ACTIONS(1414), - [anon_sym_mut] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_SEMI] = ACTIONS(1414), - [sym_cmd_identifier] = ACTIONS(1414), - [anon_sym_LF] = ACTIONS(1416), - [anon_sym_def] = ACTIONS(1414), - [anon_sym_export_DASHenv] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym_module] = ACTIONS(1414), - [anon_sym_use] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_DOLLAR] = ACTIONS(1414), - [anon_sym_error] = ACTIONS(1414), - [anon_sym_DASH_DASH] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_loop] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1414), - [anon_sym_DOT_DOT] = ACTIONS(1414), - [anon_sym_try] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_source] = ACTIONS(1414), - [anon_sym_source_DASHenv] = ACTIONS(1414), - [anon_sym_register] = ACTIONS(1414), - [anon_sym_hide] = ACTIONS(1414), - [anon_sym_hide_DASHenv] = ACTIONS(1414), - [anon_sym_overlay] = ACTIONS(1414), - [anon_sym_as] = ACTIONS(1414), - [anon_sym_where] = ACTIONS(1414), - [anon_sym_not] = ACTIONS(1414), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1414), - [anon_sym_DOT_DOT_LT] = ACTIONS(1414), - [anon_sym_null] = ACTIONS(1414), - [anon_sym_true] = ACTIONS(1414), - [anon_sym_false] = ACTIONS(1414), - [aux_sym__val_number_decimal_token1] = ACTIONS(1414), - [aux_sym__val_number_decimal_token2] = ACTIONS(1414), - [anon_sym_DOT2] = ACTIONS(1414), - [aux_sym__val_number_decimal_token3] = ACTIONS(1414), - [aux_sym__val_number_token1] = ACTIONS(1414), - [aux_sym__val_number_token2] = ACTIONS(1414), - [aux_sym__val_number_token3] = ACTIONS(1414), - [aux_sym__val_number_token4] = ACTIONS(1414), - [aux_sym__val_number_token5] = ACTIONS(1414), - [aux_sym__val_number_token6] = ACTIONS(1414), - [anon_sym_0b] = ACTIONS(1414), - [anon_sym_0o] = ACTIONS(1414), - [anon_sym_0x] = ACTIONS(1414), - [sym_val_date] = ACTIONS(1414), - [anon_sym_DQUOTE] = ACTIONS(1414), - [sym__str_single_quotes] = ACTIONS(1414), - [sym__str_back_ticks] = ACTIONS(1414), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1414), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1414), - [anon_sym_POUND] = ACTIONS(113), + [2007] = { + [sym_comment] = STATE(2007), + [anon_sym_LBRACK] = ACTIONS(1173), + [anon_sym_COMMA] = ACTIONS(1173), + [anon_sym_RBRACK] = ACTIONS(1173), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_DOLLAR] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1173), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1173), + [anon_sym_SLASH_SLASH] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1173), + [anon_sym_bit_DASHshr] = ACTIONS(1173), + [anon_sym_EQ_EQ] = ACTIONS(1173), + [anon_sym_BANG_EQ] = ACTIONS(1173), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1173), + [anon_sym_GT_EQ] = ACTIONS(1173), + [anon_sym_not_DASHin] = ACTIONS(1173), + [anon_sym_starts_DASHwith] = ACTIONS(1173), + [anon_sym_ends_DASHwith] = ACTIONS(1173), + [anon_sym_EQ_TILDE] = ACTIONS(1173), + [anon_sym_BANG_TILDE] = ACTIONS(1173), + [anon_sym_bit_DASHand] = ACTIONS(1173), + [anon_sym_bit_DASHxor] = ACTIONS(1173), + [anon_sym_bit_DASHor] = ACTIONS(1173), + [anon_sym_and] = ACTIONS(1173), + [anon_sym_xor] = ACTIONS(1173), + [anon_sym_or] = ACTIONS(1173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1173), + [anon_sym_DOT_DOT_LT] = ACTIONS(1173), + [anon_sym_null] = ACTIONS(1173), + [anon_sym_true] = ACTIONS(1173), + [anon_sym_false] = ACTIONS(1173), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1173), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1173), + [aux_sym__val_number_token1] = ACTIONS(1173), + [aux_sym__val_number_token2] = ACTIONS(1173), + [aux_sym__val_number_token3] = ACTIONS(1173), + [aux_sym__val_number_token4] = ACTIONS(1173), + [aux_sym__val_number_token5] = ACTIONS(1173), + [aux_sym__val_number_token6] = ACTIONS(1173), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym__str_single_quotes] = ACTIONS(1173), + [sym__str_back_ticks] = ACTIONS(1173), + [anon_sym_err_GT] = ACTIONS(1173), + [anon_sym_out_GT] = ACTIONS(1173), + [anon_sym_e_GT] = ACTIONS(1173), + [anon_sym_o_GT] = ACTIONS(1173), + [anon_sym_err_PLUSout_GT] = ACTIONS(1173), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1173), + [anon_sym_o_PLUSe_GT] = ACTIONS(1173), + [anon_sym_e_PLUSo_GT] = ACTIONS(1173), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(3), }, - [1797] = { - [sym_comment] = STATE(1797), - [anon_sym_export] = ACTIONS(1117), - [anon_sym_alias] = ACTIONS(1117), - [anon_sym_let] = ACTIONS(1117), - [anon_sym_let_DASHenv] = ACTIONS(1117), - [anon_sym_mut] = ACTIONS(1117), - [anon_sym_const] = ACTIONS(1117), - [anon_sym_SEMI] = ACTIONS(1117), - [sym_cmd_identifier] = ACTIONS(1117), - [anon_sym_LF] = ACTIONS(1119), - [anon_sym_def] = ACTIONS(1117), - [anon_sym_export_DASHenv] = ACTIONS(1117), - [anon_sym_extern] = ACTIONS(1117), - [anon_sym_module] = ACTIONS(1117), - [anon_sym_use] = ACTIONS(1117), - [anon_sym_LBRACK] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1117), - [anon_sym_RPAREN] = ACTIONS(1117), - [anon_sym_DOLLAR] = ACTIONS(1117), - [anon_sym_error] = ACTIONS(1117), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_break] = ACTIONS(1117), - [anon_sym_continue] = ACTIONS(1117), - [anon_sym_for] = ACTIONS(1117), - [anon_sym_loop] = ACTIONS(1117), - [anon_sym_while] = ACTIONS(1117), - [anon_sym_do] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1117), - [anon_sym_LBRACE] = ACTIONS(1117), - [anon_sym_RBRACE] = ACTIONS(1117), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_try] = ACTIONS(1117), - [anon_sym_return] = ACTIONS(1117), - [anon_sym_source] = ACTIONS(1117), - [anon_sym_source_DASHenv] = ACTIONS(1117), - [anon_sym_register] = ACTIONS(1117), - [anon_sym_hide] = ACTIONS(1117), - [anon_sym_hide_DASHenv] = ACTIONS(1117), - [anon_sym_overlay] = ACTIONS(1117), - [anon_sym_STAR] = ACTIONS(1117), - [anon_sym_where] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1117), - [anon_sym_DOT] = ACTIONS(1117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1117), - [anon_sym_DOT_DOT_LT] = ACTIONS(1117), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_true] = ACTIONS(1117), - [anon_sym_false] = ACTIONS(1117), - [aux_sym__val_number_decimal_token1] = ACTIONS(1117), - [aux_sym__val_number_decimal_token2] = ACTIONS(1117), - [anon_sym_DOT2] = ACTIONS(1117), - [aux_sym__val_number_decimal_token3] = ACTIONS(1117), - [aux_sym__val_number_token1] = ACTIONS(1117), - [aux_sym__val_number_token2] = ACTIONS(1117), - [aux_sym__val_number_token3] = ACTIONS(1117), - [aux_sym__val_number_token4] = ACTIONS(1117), - [aux_sym__val_number_token5] = ACTIONS(1117), - [aux_sym__val_number_token6] = ACTIONS(1117), - [anon_sym_0b] = ACTIONS(1117), - [anon_sym_0o] = ACTIONS(1117), - [anon_sym_0x] = ACTIONS(1117), - [sym_val_date] = ACTIONS(1117), - [anon_sym_DQUOTE] = ACTIONS(1117), - [sym__str_single_quotes] = ACTIONS(1117), - [sym__str_back_ticks] = ACTIONS(1117), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1117), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1117), - [anon_sym_CARET] = ACTIONS(1117), - [anon_sym_POUND] = ACTIONS(113), + [2008] = { + [sym_expr_parenthesized] = STATE(10494), + [sym_val_variable] = STATE(10494), + [sym__var] = STATE(7000), + [sym_val_number] = STATE(10494), + [sym__val_number_decimal] = STATE(4911), + [sym__val_number] = STATE(4922), + [sym_val_string] = STATE(10494), + [sym__str_double_quotes] = STATE(6592), + [sym_record_body] = STATE(10842), + [sym_record_entry] = STATE(10004), + [sym__record_key] = STATE(10433), + [sym_comment] = STATE(2008), + [aux_sym_record_body_repeat1] = STATE(2422), + [anon_sym_export] = ACTIONS(255), + [anon_sym_alias] = ACTIONS(255), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(255), + [anon_sym_const] = ACTIONS(255), + [sym_cmd_identifier] = ACTIONS(255), + [anon_sym_def] = ACTIONS(255), + [anon_sym_export_DASHenv] = ACTIONS(255), + [anon_sym_extern] = ACTIONS(255), + [anon_sym_module] = ACTIONS(255), + [anon_sym_use] = ACTIONS(255), + [anon_sym_LPAREN] = ACTIONS(5651), + [anon_sym_DOLLAR] = ACTIONS(5725), + [anon_sym_error] = ACTIONS(255), + [anon_sym_list] = ACTIONS(255), + [anon_sym_DASH] = ACTIONS(189), + [anon_sym_break] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_for] = ACTIONS(255), + [anon_sym_in] = ACTIONS(255), + [anon_sym_loop] = ACTIONS(255), + [anon_sym_make] = ACTIONS(255), + [anon_sym_while] = ACTIONS(255), + [anon_sym_do] = ACTIONS(255), + [anon_sym_if] = ACTIONS(255), + [anon_sym_else] = ACTIONS(255), + [anon_sym_match] = ACTIONS(255), + [anon_sym_RBRACE] = ACTIONS(5727), + [anon_sym_try] = ACTIONS(255), + [anon_sym_catch] = ACTIONS(255), + [anon_sym_return] = ACTIONS(255), + [anon_sym_source] = ACTIONS(255), + [anon_sym_source_DASHenv] = ACTIONS(255), + [anon_sym_register] = ACTIONS(255), + [anon_sym_hide] = ACTIONS(255), + [anon_sym_hide_DASHenv] = ACTIONS(255), + [anon_sym_overlay] = ACTIONS(255), + [anon_sym_new] = ACTIONS(255), + [anon_sym_as] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(189), + [aux_sym__val_number_decimal_token1] = ACTIONS(5657), + [aux_sym__val_number_decimal_token2] = ACTIONS(5659), + [anon_sym_DOT2] = ACTIONS(5661), + [aux_sym__val_number_decimal_token3] = ACTIONS(5663), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(5665), + [aux_sym__val_number_token5] = ACTIONS(3124), + [aux_sym__val_number_token6] = ACTIONS(5665), + [anon_sym_DQUOTE] = ACTIONS(2838), + [sym__str_single_quotes] = ACTIONS(2840), + [sym__str_back_ticks] = ACTIONS(2840), + [aux_sym__record_key_token2] = ACTIONS(225), + [anon_sym_POUND] = ACTIONS(3), }, - [1798] = { - [sym_comment] = STATE(1798), - [ts_builtin_sym_end] = ACTIONS(1420), - [anon_sym_export] = ACTIONS(1418), - [anon_sym_alias] = ACTIONS(1418), - [anon_sym_let] = ACTIONS(1418), - [anon_sym_let_DASHenv] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(1418), - [sym_cmd_identifier] = ACTIONS(1418), - [anon_sym_LF] = ACTIONS(1420), - [anon_sym_def] = ACTIONS(1418), - [anon_sym_export_DASHenv] = ACTIONS(1418), - [anon_sym_extern] = ACTIONS(1418), - [anon_sym_module] = ACTIONS(1418), - [anon_sym_use] = ACTIONS(1418), - [anon_sym_LBRACK] = ACTIONS(1418), - [anon_sym_LPAREN] = ACTIONS(1418), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_error] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_loop] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_match] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_DOT_DOT] = ACTIONS(1418), - [anon_sym_try] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_source] = ACTIONS(1418), - [anon_sym_source_DASHenv] = ACTIONS(1418), - [anon_sym_register] = ACTIONS(1418), - [anon_sym_hide] = ACTIONS(1418), - [anon_sym_hide_DASHenv] = ACTIONS(1418), - [anon_sym_overlay] = ACTIONS(1418), - [anon_sym_as] = ACTIONS(1418), - [anon_sym_where] = ACTIONS(1418), - [anon_sym_not] = ACTIONS(1418), - [anon_sym_LPAREN2] = ACTIONS(1420), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1418), - [anon_sym_DOT_DOT_LT] = ACTIONS(1418), - [anon_sym_null] = ACTIONS(1418), - [anon_sym_true] = ACTIONS(1418), - [anon_sym_false] = ACTIONS(1418), - [aux_sym__val_number_decimal_token1] = ACTIONS(1418), - [aux_sym__val_number_decimal_token2] = ACTIONS(1418), - [anon_sym_DOT2] = ACTIONS(1418), - [aux_sym__val_number_decimal_token3] = ACTIONS(1418), - [aux_sym__val_number_token1] = ACTIONS(1418), - [aux_sym__val_number_token2] = ACTIONS(1418), - [aux_sym__val_number_token3] = ACTIONS(1418), - [aux_sym__val_number_token4] = ACTIONS(1418), - [aux_sym__val_number_token5] = ACTIONS(1418), - [aux_sym__val_number_token6] = ACTIONS(1418), - [anon_sym_0b] = ACTIONS(1418), - [anon_sym_0o] = ACTIONS(1418), - [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1418), - [anon_sym_DQUOTE] = ACTIONS(1418), - [sym__str_single_quotes] = ACTIONS(1418), - [sym__str_back_ticks] = ACTIONS(1418), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_POUND] = ACTIONS(113), + [2009] = { + [sym_comment] = STATE(2009), + [anon_sym_LBRACK] = ACTIONS(1181), + [anon_sym_COMMA] = ACTIONS(1181), + [anon_sym_RBRACK] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_DOLLAR] = ACTIONS(1181), + [anon_sym_GT] = ACTIONS(5711), + [anon_sym_DASH_DASH] = ACTIONS(1181), + [anon_sym_DASH] = ACTIONS(5713), + [anon_sym_in] = ACTIONS(5715), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(5705), + [anon_sym_STAR_STAR] = ACTIONS(5707), + [anon_sym_PLUS_PLUS] = ACTIONS(5707), + [anon_sym_SLASH] = ACTIONS(5705), + [anon_sym_mod] = ACTIONS(5709), + [anon_sym_SLASH_SLASH] = ACTIONS(5709), + [anon_sym_PLUS] = ACTIONS(5713), + [anon_sym_bit_DASHshl] = ACTIONS(5717), + [anon_sym_bit_DASHshr] = ACTIONS(5717), + [anon_sym_EQ_EQ] = ACTIONS(5719), + [anon_sym_BANG_EQ] = ACTIONS(5719), + [anon_sym_LT2] = ACTIONS(5711), + [anon_sym_LT_EQ] = ACTIONS(5719), + [anon_sym_GT_EQ] = ACTIONS(5719), + [anon_sym_not_DASHin] = ACTIONS(5721), + [anon_sym_starts_DASHwith] = ACTIONS(5721), + [anon_sym_ends_DASHwith] = ACTIONS(5721), + [anon_sym_EQ_TILDE] = ACTIONS(5723), + [anon_sym_BANG_TILDE] = ACTIONS(5723), + [anon_sym_bit_DASHand] = ACTIONS(5729), + [anon_sym_bit_DASHxor] = ACTIONS(1181), + [anon_sym_bit_DASHor] = ACTIONS(1181), + [anon_sym_and] = ACTIONS(1181), + [anon_sym_xor] = ACTIONS(1181), + [anon_sym_or] = ACTIONS(1181), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1181), + [anon_sym_DOT_DOT_LT] = ACTIONS(1181), + [anon_sym_null] = ACTIONS(1181), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1181), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1181), + [aux_sym__val_number_token1] = ACTIONS(1181), + [aux_sym__val_number_token2] = ACTIONS(1181), + [aux_sym__val_number_token3] = ACTIONS(1181), + [aux_sym__val_number_token4] = ACTIONS(1181), + [aux_sym__val_number_token5] = ACTIONS(1181), + [aux_sym__val_number_token6] = ACTIONS(1181), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym__str_single_quotes] = ACTIONS(1181), + [sym__str_back_ticks] = ACTIONS(1181), + [anon_sym_err_GT] = ACTIONS(1181), + [anon_sym_out_GT] = ACTIONS(1181), + [anon_sym_e_GT] = ACTIONS(1181), + [anon_sym_o_GT] = ACTIONS(1181), + [anon_sym_err_PLUSout_GT] = ACTIONS(1181), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1181), + [anon_sym_o_PLUSe_GT] = ACTIONS(1181), + [anon_sym_e_PLUSo_GT] = ACTIONS(1181), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(3), }, - [1799] = { - [sym__terminator] = STATE(2696), - [sym_comment] = STATE(1799), - [aux_sym__block_body_repeat1] = STATE(1799), - [anon_sym_export] = ACTIONS(5247), - [anon_sym_alias] = ACTIONS(5247), - [anon_sym_let] = ACTIONS(5247), - [anon_sym_let_DASHenv] = ACTIONS(5247), - [anon_sym_mut] = ACTIONS(5247), - [anon_sym_const] = ACTIONS(5247), - [anon_sym_SEMI] = ACTIONS(5249), - [sym_cmd_identifier] = ACTIONS(5247), - [anon_sym_LF] = ACTIONS(5252), - [anon_sym_def] = ACTIONS(5247), - [anon_sym_export_DASHenv] = ACTIONS(5247), - [anon_sym_extern] = ACTIONS(5247), - [anon_sym_module] = ACTIONS(5247), - [anon_sym_use] = ACTIONS(5247), - [anon_sym_LBRACK] = ACTIONS(5247), - [anon_sym_LPAREN] = ACTIONS(5247), - [anon_sym_RPAREN] = ACTIONS(5247), - [anon_sym_DOLLAR] = ACTIONS(5247), - [anon_sym_error] = ACTIONS(5247), - [anon_sym_DASH] = ACTIONS(5247), - [anon_sym_break] = ACTIONS(5247), - [anon_sym_continue] = ACTIONS(5247), - [anon_sym_for] = ACTIONS(5247), - [anon_sym_loop] = ACTIONS(5247), - [anon_sym_while] = ACTIONS(5247), - [anon_sym_do] = ACTIONS(5247), - [anon_sym_if] = ACTIONS(5247), - [anon_sym_match] = ACTIONS(5247), - [anon_sym_LBRACE] = ACTIONS(5247), - [anon_sym_RBRACE] = ACTIONS(5247), - [anon_sym_DOT_DOT] = ACTIONS(5247), - [anon_sym_try] = ACTIONS(5247), - [anon_sym_return] = ACTIONS(5247), - [anon_sym_source] = ACTIONS(5247), - [anon_sym_source_DASHenv] = ACTIONS(5247), - [anon_sym_register] = ACTIONS(5247), - [anon_sym_hide] = ACTIONS(5247), - [anon_sym_hide_DASHenv] = ACTIONS(5247), - [anon_sym_overlay] = ACTIONS(5247), - [anon_sym_where] = ACTIONS(5247), - [anon_sym_not] = ACTIONS(5247), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5247), - [anon_sym_DOT_DOT_LT] = ACTIONS(5247), - [anon_sym_null] = ACTIONS(5247), - [anon_sym_true] = ACTIONS(5247), - [anon_sym_false] = ACTIONS(5247), - [aux_sym__val_number_decimal_token1] = ACTIONS(5247), - [aux_sym__val_number_decimal_token2] = ACTIONS(5247), - [anon_sym_DOT2] = ACTIONS(5247), - [aux_sym__val_number_decimal_token3] = ACTIONS(5247), - [aux_sym__val_number_token1] = ACTIONS(5247), - [aux_sym__val_number_token2] = ACTIONS(5247), - [aux_sym__val_number_token3] = ACTIONS(5247), - [aux_sym__val_number_token4] = ACTIONS(5247), - [aux_sym__val_number_token5] = ACTIONS(5247), - [aux_sym__val_number_token6] = ACTIONS(5247), - [anon_sym_0b] = ACTIONS(5247), - [anon_sym_0o] = ACTIONS(5247), - [anon_sym_0x] = ACTIONS(5247), - [sym_val_date] = ACTIONS(5247), - [anon_sym_DQUOTE] = ACTIONS(5247), - [sym__str_single_quotes] = ACTIONS(5247), - [sym__str_back_ticks] = ACTIONS(5247), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5247), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5247), - [anon_sym_CARET] = ACTIONS(5247), + [2010] = { + [sym_comment] = STATE(2010), + [ts_builtin_sym_end] = ACTIONS(1091), + [anon_sym_export] = ACTIONS(1089), + [anon_sym_alias] = ACTIONS(1089), + [anon_sym_let] = ACTIONS(1089), + [anon_sym_let_DASHenv] = ACTIONS(1089), + [anon_sym_mut] = ACTIONS(1089), + [anon_sym_const] = ACTIONS(1089), + [anon_sym_SEMI] = ACTIONS(1089), + [sym_cmd_identifier] = ACTIONS(1089), + [anon_sym_LF] = ACTIONS(1091), + [anon_sym_def] = ACTIONS(1089), + [anon_sym_export_DASHenv] = ACTIONS(1089), + [anon_sym_extern] = ACTIONS(1089), + [anon_sym_module] = ACTIONS(1089), + [anon_sym_use] = ACTIONS(1089), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1089), + [anon_sym_error] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_DASH] = ACTIONS(1089), + [anon_sym_break] = ACTIONS(1089), + [anon_sym_continue] = ACTIONS(1089), + [anon_sym_for] = ACTIONS(1089), + [anon_sym_loop] = ACTIONS(1089), + [anon_sym_while] = ACTIONS(1089), + [anon_sym_do] = ACTIONS(1089), + [anon_sym_if] = ACTIONS(1089), + [anon_sym_match] = ACTIONS(1089), + [anon_sym_LBRACE] = ACTIONS(1089), + [anon_sym_DOT_DOT] = ACTIONS(1089), + [anon_sym_try] = ACTIONS(1089), + [anon_sym_return] = ACTIONS(1089), + [anon_sym_source] = ACTIONS(1089), + [anon_sym_source_DASHenv] = ACTIONS(1089), + [anon_sym_register] = ACTIONS(1089), + [anon_sym_hide] = ACTIONS(1089), + [anon_sym_hide_DASHenv] = ACTIONS(1089), + [anon_sym_overlay] = ACTIONS(1089), + [anon_sym_as] = ACTIONS(1089), + [anon_sym_where] = ACTIONS(1089), + [anon_sym_not] = ACTIONS(1089), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_DOT_DOT_LT] = ACTIONS(1089), + [anon_sym_null] = ACTIONS(1089), + [anon_sym_true] = ACTIONS(1089), + [anon_sym_false] = ACTIONS(1089), + [aux_sym__val_number_decimal_token1] = ACTIONS(1089), + [aux_sym__val_number_decimal_token2] = ACTIONS(1089), + [anon_sym_DOT2] = ACTIONS(1089), + [aux_sym__val_number_decimal_token3] = ACTIONS(1089), + [aux_sym__val_number_token1] = ACTIONS(1089), + [aux_sym__val_number_token2] = ACTIONS(1089), + [aux_sym__val_number_token3] = ACTIONS(1089), + [aux_sym__val_number_token4] = ACTIONS(1089), + [aux_sym__val_number_token5] = ACTIONS(1089), + [aux_sym__val_number_token6] = ACTIONS(1089), + [anon_sym_0b] = ACTIONS(1089), + [anon_sym_0o] = ACTIONS(1089), + [anon_sym_0x] = ACTIONS(1089), + [sym_val_date] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1089), + [sym__str_single_quotes] = ACTIONS(1089), + [sym__str_back_ticks] = ACTIONS(1089), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1089), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1089), + [anon_sym_CARET] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(113), }, - [1800] = { - [sym_comment] = STATE(1800), - [anon_sym_LBRACK] = ACTIONS(1259), - [anon_sym_COMMA] = ACTIONS(1261), + [2011] = { + [sym_comment] = STATE(2011), + [ts_builtin_sym_end] = ACTIONS(1263), + [anon_sym_export] = ACTIONS(1261), + [anon_sym_alias] = ACTIONS(1261), + [anon_sym_let] = ACTIONS(1261), + [anon_sym_let_DASHenv] = ACTIONS(1261), + [anon_sym_mut] = ACTIONS(1261), + [anon_sym_const] = ACTIONS(1261), + [anon_sym_SEMI] = ACTIONS(1261), + [sym_cmd_identifier] = ACTIONS(1261), + [anon_sym_LF] = ACTIONS(1263), + [anon_sym_def] = ACTIONS(1261), + [anon_sym_export_DASHenv] = ACTIONS(1261), + [anon_sym_extern] = ACTIONS(1261), + [anon_sym_module] = ACTIONS(1261), + [anon_sym_use] = ACTIONS(1261), + [anon_sym_LBRACK] = ACTIONS(1261), [anon_sym_LPAREN] = ACTIONS(1261), [anon_sym_DOLLAR] = ACTIONS(1261), - [anon_sym_GT] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_in] = ACTIONS(1259), + [anon_sym_error] = ACTIONS(1261), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1261), + [anon_sym_break] = ACTIONS(1261), + [anon_sym_continue] = ACTIONS(1261), + [anon_sym_for] = ACTIONS(1261), + [anon_sym_loop] = ACTIONS(1261), + [anon_sym_while] = ACTIONS(1261), + [anon_sym_do] = ACTIONS(1261), + [anon_sym_if] = ACTIONS(1261), + [anon_sym_match] = ACTIONS(1261), [anon_sym_LBRACE] = ACTIONS(1261), - [anon_sym_RBRACE] = ACTIONS(1261), - [anon_sym__] = ACTIONS(1259), - [anon_sym_DOT_DOT] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1259), - [anon_sym_STAR_STAR] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(1261), - [anon_sym_SLASH] = ACTIONS(1259), - [anon_sym_mod] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(1261), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_bit_DASHshl] = ACTIONS(1261), - [anon_sym_bit_DASHshr] = ACTIONS(1261), - [anon_sym_EQ_EQ] = ACTIONS(1261), - [anon_sym_BANG_EQ] = ACTIONS(1261), - [anon_sym_LT2] = ACTIONS(1259), - [anon_sym_LT_EQ] = ACTIONS(1261), - [anon_sym_GT_EQ] = ACTIONS(1261), - [anon_sym_not_DASHin] = ACTIONS(1261), - [anon_sym_starts_DASHwith] = ACTIONS(1261), - [anon_sym_ends_DASHwith] = ACTIONS(1261), - [anon_sym_EQ_TILDE] = ACTIONS(1261), - [anon_sym_BANG_TILDE] = ACTIONS(1261), - [anon_sym_bit_DASHand] = ACTIONS(1261), - [anon_sym_bit_DASHxor] = ACTIONS(1261), - [anon_sym_bit_DASHor] = ACTIONS(1261), - [anon_sym_and] = ACTIONS(1261), - [anon_sym_xor] = ACTIONS(1261), - [anon_sym_or] = ACTIONS(1261), + [anon_sym_DOT_DOT] = ACTIONS(1261), + [anon_sym_try] = ACTIONS(1261), + [anon_sym_return] = ACTIONS(1261), + [anon_sym_source] = ACTIONS(1261), + [anon_sym_source_DASHenv] = ACTIONS(1261), + [anon_sym_register] = ACTIONS(1261), + [anon_sym_hide] = ACTIONS(1261), + [anon_sym_hide_DASHenv] = ACTIONS(1261), + [anon_sym_overlay] = ACTIONS(1261), + [anon_sym_as] = ACTIONS(1261), + [anon_sym_where] = ACTIONS(1261), + [anon_sym_not] = ACTIONS(1261), [anon_sym_DOT_DOT_EQ] = ACTIONS(1261), [anon_sym_DOT_DOT_LT] = ACTIONS(1261), [anon_sym_null] = ACTIONS(1261), [anon_sym_true] = ACTIONS(1261), [anon_sym_false] = ACTIONS(1261), - [aux_sym__val_number_decimal_token1] = ACTIONS(1259), + [aux_sym__val_number_decimal_token1] = ACTIONS(1261), [aux_sym__val_number_decimal_token2] = ACTIONS(1261), - [anon_sym_DOT2] = ACTIONS(1259), + [anon_sym_DOT2] = ACTIONS(1261), [aux_sym__val_number_decimal_token3] = ACTIONS(1261), [aux_sym__val_number_token1] = ACTIONS(1261), [aux_sym__val_number_token2] = ACTIONS(1261), @@ -256485,150 +261519,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token4] = ACTIONS(1261), [aux_sym__val_number_token5] = ACTIONS(1261), [aux_sym__val_number_token6] = ACTIONS(1261), - [anon_sym_0b] = ACTIONS(1259), - [anon_sym_0o] = ACTIONS(1259), - [anon_sym_0x] = ACTIONS(1259), - [anon_sym_LBRACK2] = ACTIONS(5255), + [anon_sym_0b] = ACTIONS(1261), + [anon_sym_0o] = ACTIONS(1261), + [anon_sym_0x] = ACTIONS(1261), [sym_val_date] = ACTIONS(1261), [anon_sym_DQUOTE] = ACTIONS(1261), [sym__str_single_quotes] = ACTIONS(1261), [sym__str_back_ticks] = ACTIONS(1261), - [anon_sym_err_GT] = ACTIONS(1261), - [anon_sym_out_GT] = ACTIONS(1261), - [anon_sym_e_GT] = ACTIONS(1261), - [anon_sym_o_GT] = ACTIONS(1261), - [anon_sym_err_PLUSout_GT] = ACTIONS(1261), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1261), - [anon_sym_o_PLUSe_GT] = ACTIONS(1261), - [anon_sym_e_PLUSo_GT] = ACTIONS(1261), - [aux_sym_unquoted_token1] = ACTIONS(1259), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1261), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1261), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_POUND] = ACTIONS(113), }, - [1801] = { - [sym_comment] = STATE(1801), - [ts_builtin_sym_end] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(1059), - [anon_sym_alias] = ACTIONS(1059), - [anon_sym_let] = ACTIONS(1059), - [anon_sym_let_DASHenv] = ACTIONS(1059), - [anon_sym_mut] = ACTIONS(1059), - [anon_sym_const] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [sym_cmd_identifier] = ACTIONS(1059), - [anon_sym_LF] = ACTIONS(1061), - [anon_sym_def] = ACTIONS(1059), - [anon_sym_export_DASHenv] = ACTIONS(1059), - [anon_sym_extern] = ACTIONS(1059), - [anon_sym_module] = ACTIONS(1059), - [anon_sym_use] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_error] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_break] = ACTIONS(1059), - [anon_sym_continue] = ACTIONS(1059), - [anon_sym_for] = ACTIONS(1059), - [anon_sym_loop] = ACTIONS(1059), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_do] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1059), - [anon_sym_match] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_try] = ACTIONS(1059), - [anon_sym_return] = ACTIONS(1059), - [anon_sym_source] = ACTIONS(1059), - [anon_sym_source_DASHenv] = ACTIONS(1059), - [anon_sym_register] = ACTIONS(1059), - [anon_sym_hide] = ACTIONS(1059), - [anon_sym_hide_DASHenv] = ACTIONS(1059), - [anon_sym_overlay] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(1059), - [anon_sym_QMARK2] = ACTIONS(1059), - [anon_sym_not] = ACTIONS(1059), - [anon_sym_DOT] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1059), - [anon_sym_DOT_DOT_LT] = ACTIONS(1059), - [anon_sym_null] = ACTIONS(1059), - [anon_sym_true] = ACTIONS(1059), - [anon_sym_false] = ACTIONS(1059), - [aux_sym__val_number_decimal_token1] = ACTIONS(1059), - [aux_sym__val_number_decimal_token2] = ACTIONS(1059), - [anon_sym_DOT2] = ACTIONS(1059), - [aux_sym__val_number_decimal_token3] = ACTIONS(1059), - [aux_sym__val_number_token1] = ACTIONS(1059), - [aux_sym__val_number_token2] = ACTIONS(1059), - [aux_sym__val_number_token3] = ACTIONS(1059), - [aux_sym__val_number_token4] = ACTIONS(1059), - [aux_sym__val_number_token5] = ACTIONS(1059), - [aux_sym__val_number_token6] = ACTIONS(1059), - [anon_sym_0b] = ACTIONS(1059), - [anon_sym_0o] = ACTIONS(1059), - [anon_sym_0x] = ACTIONS(1059), - [sym_val_date] = ACTIONS(1059), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym__str_single_quotes] = ACTIONS(1059), - [sym__str_back_ticks] = ACTIONS(1059), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1059), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1059), - [anon_sym_CARET] = ACTIONS(1059), + [2012] = { + [sym__expression] = STATE(7157), + [sym_expr_unary] = STATE(5677), + [sym__expr_unary_minus] = STATE(5679), + [sym_expr_binary] = STATE(5677), + [sym__expr_binary_expression] = STATE(6377), + [sym_expr_parenthesized] = STATE(4919), + [sym_val_range] = STATE(8295), + [sym__value] = STATE(5677), + [sym_val_nothing] = STATE(5612), + [sym_val_bool] = STATE(5612), + [sym_val_variable] = STATE(4867), + [sym__var] = STATE(4310), + [sym_val_number] = STATE(5612), + [sym__val_number_decimal] = STATE(4408), + [sym__val_number] = STATE(5661), + [sym_val_duration] = STATE(5612), + [sym_val_filesize] = STATE(5612), + [sym_val_binary] = STATE(5612), + [sym_val_string] = STATE(5612), + [sym__str_double_quotes] = STATE(5733), + [sym_val_interpolated] = STATE(5612), + [sym__inter_single_quotes] = STATE(5590), + [sym__inter_double_quotes] = STATE(5591), + [sym_val_list] = STATE(5612), + [sym_val_record] = STATE(5612), + [sym_val_table] = STATE(5612), + [sym_val_closure] = STATE(5612), + [sym__flag] = STATE(2041), + [sym_short_flag] = STATE(4939), + [sym_long_flag] = STATE(4939), + [sym_long_flag_equals_value] = STATE(4865), + [sym_comment] = STATE(2012), + [ts_builtin_sym_end] = ACTIONS(4933), + [anon_sym_SEMI] = ACTIONS(4931), + [anon_sym_LF] = ACTIONS(4933), + [anon_sym_LBRACK] = ACTIONS(5667), + [anon_sym_LPAREN] = ACTIONS(5669), + [anon_sym_PIPE] = ACTIONS(4931), + [anon_sym_DOLLAR] = ACTIONS(2667), + [anon_sym_DASH_DASH] = ACTIONS(5671), + [anon_sym_DASH] = ACTIONS(5673), + [anon_sym_LBRACE] = ACTIONS(5675), + [anon_sym_DOT_DOT] = ACTIONS(5677), + [anon_sym_not] = ACTIONS(5679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5681), + [anon_sym_DOT_DOT_LT] = ACTIONS(5681), + [anon_sym_null] = ACTIONS(5683), + [anon_sym_true] = ACTIONS(5685), + [anon_sym_false] = ACTIONS(5685), + [aux_sym__val_number_decimal_token1] = ACTIONS(5687), + [aux_sym__val_number_decimal_token2] = ACTIONS(5687), + [anon_sym_DOT2] = ACTIONS(5689), + [aux_sym__val_number_decimal_token3] = ACTIONS(5691), + [aux_sym__val_number_token1] = ACTIONS(5693), + [aux_sym__val_number_token2] = ACTIONS(5693), + [aux_sym__val_number_token3] = ACTIONS(5693), + [aux_sym__val_number_token4] = ACTIONS(5693), + [aux_sym__val_number_token5] = ACTIONS(5693), + [aux_sym__val_number_token6] = ACTIONS(5693), + [anon_sym_0b] = ACTIONS(2695), + [anon_sym_0o] = ACTIONS(2697), + [anon_sym_0x] = ACTIONS(2697), + [sym_val_date] = ACTIONS(5695), + [anon_sym_DQUOTE] = ACTIONS(5697), + [sym__str_single_quotes] = ACTIONS(5699), + [sym__str_back_ticks] = ACTIONS(5699), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5703), [anon_sym_POUND] = ACTIONS(113), }, - [1802] = { - [sym_comment] = STATE(1802), - [ts_builtin_sym_end] = ACTIONS(1065), - [anon_sym_export] = ACTIONS(1063), - [anon_sym_alias] = ACTIONS(1063), - [anon_sym_let] = ACTIONS(1063), - [anon_sym_let_DASHenv] = ACTIONS(1063), - [anon_sym_mut] = ACTIONS(1063), - [anon_sym_const] = ACTIONS(1063), - [anon_sym_SEMI] = ACTIONS(1063), - [sym_cmd_identifier] = ACTIONS(1063), - [anon_sym_LF] = ACTIONS(1065), - [anon_sym_def] = ACTIONS(1063), - [anon_sym_export_DASHenv] = ACTIONS(1063), - [anon_sym_extern] = ACTIONS(1063), - [anon_sym_module] = ACTIONS(1063), - [anon_sym_use] = ACTIONS(1063), + [2013] = { + [sym_comment] = STATE(2013), [anon_sym_LBRACK] = ACTIONS(1063), + [anon_sym_COMMA] = ACTIONS(1063), + [anon_sym_RBRACK] = ACTIONS(1063), [anon_sym_LPAREN] = ACTIONS(1063), [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_error] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_break] = ACTIONS(1063), - [anon_sym_continue] = ACTIONS(1063), - [anon_sym_for] = ACTIONS(1063), - [anon_sym_loop] = ACTIONS(1063), - [anon_sym_while] = ACTIONS(1063), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_if] = ACTIONS(1063), - [anon_sym_match] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_DASH_DASH] = ACTIONS(1063), + [anon_sym_DASH] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1061), [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1063), - [anon_sym_return] = ACTIONS(1063), - [anon_sym_source] = ACTIONS(1063), - [anon_sym_source_DASHenv] = ACTIONS(1063), - [anon_sym_register] = ACTIONS(1063), - [anon_sym_hide] = ACTIONS(1063), - [anon_sym_hide_DASHenv] = ACTIONS(1063), - [anon_sym_overlay] = ACTIONS(1063), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_where] = ACTIONS(1063), - [anon_sym_QMARK2] = ACTIONS(1063), - [anon_sym_not] = ACTIONS(1063), - [anon_sym_DOT] = ACTIONS(1063), + [anon_sym_DOT_DOT] = ACTIONS(1061), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_STAR_STAR] = ACTIONS(1063), + [anon_sym_PLUS_PLUS] = ACTIONS(1063), + [anon_sym_SLASH] = ACTIONS(1061), + [anon_sym_mod] = ACTIONS(1063), + [anon_sym_SLASH_SLASH] = ACTIONS(1063), + [anon_sym_PLUS] = ACTIONS(1061), + [anon_sym_bit_DASHshl] = ACTIONS(1063), + [anon_sym_bit_DASHshr] = ACTIONS(1063), + [anon_sym_EQ_EQ] = ACTIONS(1063), + [anon_sym_BANG_EQ] = ACTIONS(1063), + [anon_sym_LT2] = ACTIONS(1061), + [anon_sym_LT_EQ] = ACTIONS(1063), + [anon_sym_GT_EQ] = ACTIONS(1063), + [anon_sym_not_DASHin] = ACTIONS(1063), + [anon_sym_starts_DASHwith] = ACTIONS(1063), + [anon_sym_ends_DASHwith] = ACTIONS(1063), + [anon_sym_EQ_TILDE] = ACTIONS(1063), + [anon_sym_BANG_TILDE] = ACTIONS(1063), + [anon_sym_bit_DASHand] = ACTIONS(1063), + [anon_sym_bit_DASHxor] = ACTIONS(1063), + [anon_sym_bit_DASHor] = ACTIONS(1063), + [anon_sym_and] = ACTIONS(1063), + [anon_sym_xor] = ACTIONS(1063), + [anon_sym_or] = ACTIONS(1063), [anon_sym_DOT_DOT_EQ] = ACTIONS(1063), [anon_sym_DOT_DOT_LT] = ACTIONS(1063), [anon_sym_null] = ACTIONS(1063), [anon_sym_true] = ACTIONS(1063), [anon_sym_false] = ACTIONS(1063), - [aux_sym__val_number_decimal_token1] = ACTIONS(1063), + [aux_sym__val_number_decimal_token1] = ACTIONS(1061), [aux_sym__val_number_decimal_token2] = ACTIONS(1063), - [anon_sym_DOT2] = ACTIONS(1063), + [anon_sym_DOT2] = ACTIONS(1061), [aux_sym__val_number_decimal_token3] = ACTIONS(1063), [aux_sym__val_number_token1] = ACTIONS(1063), [aux_sym__val_number_token2] = ACTIONS(1063), @@ -256636,4363 +261655,6865 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token4] = ACTIONS(1063), [aux_sym__val_number_token5] = ACTIONS(1063), [aux_sym__val_number_token6] = ACTIONS(1063), - [anon_sym_0b] = ACTIONS(1063), - [anon_sym_0o] = ACTIONS(1063), - [anon_sym_0x] = ACTIONS(1063), + [anon_sym_0b] = ACTIONS(1061), + [anon_sym_0o] = ACTIONS(1061), + [anon_sym_0x] = ACTIONS(1061), [sym_val_date] = ACTIONS(1063), [anon_sym_DQUOTE] = ACTIONS(1063), [sym__str_single_quotes] = ACTIONS(1063), [sym__str_back_ticks] = ACTIONS(1063), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1063), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1063), - [anon_sym_CARET] = ACTIONS(1063), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_err_GT] = ACTIONS(1063), + [anon_sym_out_GT] = ACTIONS(1063), + [anon_sym_e_GT] = ACTIONS(1063), + [anon_sym_o_GT] = ACTIONS(1063), + [anon_sym_err_PLUSout_GT] = ACTIONS(1063), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1063), + [anon_sym_o_PLUSe_GT] = ACTIONS(1063), + [anon_sym_e_PLUSo_GT] = ACTIONS(1063), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1061), + [anon_sym_POUND] = ACTIONS(3), }, - [1803] = { - [sym_comment] = STATE(1803), - [ts_builtin_sym_end] = ACTIONS(1170), - [anon_sym_export] = ACTIONS(1168), - [anon_sym_alias] = ACTIONS(1168), - [anon_sym_let] = ACTIONS(1168), - [anon_sym_let_DASHenv] = ACTIONS(1168), - [anon_sym_mut] = ACTIONS(1168), - [anon_sym_const] = ACTIONS(1168), - [anon_sym_SEMI] = ACTIONS(1168), - [sym_cmd_identifier] = ACTIONS(1168), - [anon_sym_LF] = ACTIONS(1170), - [anon_sym_def] = ACTIONS(1168), - [anon_sym_export_DASHenv] = ACTIONS(1168), - [anon_sym_extern] = ACTIONS(1168), - [anon_sym_module] = ACTIONS(1168), - [anon_sym_use] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_DOLLAR] = ACTIONS(1168), - [anon_sym_error] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1168), - [anon_sym_break] = ACTIONS(1168), - [anon_sym_continue] = ACTIONS(1168), - [anon_sym_for] = ACTIONS(1168), - [anon_sym_loop] = ACTIONS(1168), - [anon_sym_while] = ACTIONS(1168), - [anon_sym_do] = ACTIONS(1168), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_match] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1168), - [anon_sym_DOT_DOT] = ACTIONS(1168), - [anon_sym_try] = ACTIONS(1168), - [anon_sym_return] = ACTIONS(1168), - [anon_sym_source] = ACTIONS(1168), - [anon_sym_source_DASHenv] = ACTIONS(1168), - [anon_sym_register] = ACTIONS(1168), - [anon_sym_hide] = ACTIONS(1168), - [anon_sym_hide_DASHenv] = ACTIONS(1168), - [anon_sym_overlay] = ACTIONS(1168), - [anon_sym_where] = ACTIONS(1168), - [anon_sym_not] = ACTIONS(1168), - [anon_sym_DOT_DOT2] = ACTIONS(1168), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1168), - [anon_sym_DOT_DOT_LT] = ACTIONS(1168), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1170), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1170), - [anon_sym_null] = ACTIONS(1168), - [anon_sym_true] = ACTIONS(1168), - [anon_sym_false] = ACTIONS(1168), - [aux_sym__val_number_decimal_token1] = ACTIONS(1168), - [aux_sym__val_number_decimal_token2] = ACTIONS(1168), - [anon_sym_DOT2] = ACTIONS(1168), - [aux_sym__val_number_decimal_token3] = ACTIONS(1168), - [aux_sym__val_number_token1] = ACTIONS(1168), - [aux_sym__val_number_token2] = ACTIONS(1168), - [aux_sym__val_number_token3] = ACTIONS(1168), - [aux_sym__val_number_token4] = ACTIONS(1168), - [aux_sym__val_number_token5] = ACTIONS(1168), - [aux_sym__val_number_token6] = ACTIONS(1168), - [anon_sym_0b] = ACTIONS(1168), - [anon_sym_0o] = ACTIONS(1168), - [anon_sym_0x] = ACTIONS(1168), - [sym_val_date] = ACTIONS(1168), - [anon_sym_DQUOTE] = ACTIONS(1168), - [sym__str_single_quotes] = ACTIONS(1168), - [sym__str_back_ticks] = ACTIONS(1168), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1168), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1168), - [anon_sym_CARET] = ACTIONS(1168), - [anon_sym_POUND] = ACTIONS(113), + [2014] = { + [sym_comment] = STATE(2014), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_COMMA] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1239), + [anon_sym_DOLLAR] = ACTIONS(1239), + [anon_sym_GT] = ACTIONS(1237), + [anon_sym_DASH] = ACTIONS(1237), + [anon_sym_in] = ACTIONS(1237), + [anon_sym_LBRACE] = ACTIONS(1239), + [anon_sym_RBRACE] = ACTIONS(1239), + [anon_sym__] = ACTIONS(1237), + [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_STAR] = ACTIONS(1237), + [anon_sym_STAR_STAR] = ACTIONS(1239), + [anon_sym_PLUS_PLUS] = ACTIONS(1239), + [anon_sym_SLASH] = ACTIONS(1237), + [anon_sym_mod] = ACTIONS(1239), + [anon_sym_SLASH_SLASH] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1237), + [anon_sym_bit_DASHshl] = ACTIONS(1239), + [anon_sym_bit_DASHshr] = ACTIONS(1239), + [anon_sym_EQ_EQ] = ACTIONS(1239), + [anon_sym_BANG_EQ] = ACTIONS(1239), + [anon_sym_LT2] = ACTIONS(1237), + [anon_sym_LT_EQ] = ACTIONS(1239), + [anon_sym_GT_EQ] = ACTIONS(1239), + [anon_sym_not_DASHin] = ACTIONS(1239), + [anon_sym_starts_DASHwith] = ACTIONS(1239), + [anon_sym_ends_DASHwith] = ACTIONS(1239), + [anon_sym_EQ_TILDE] = ACTIONS(1239), + [anon_sym_BANG_TILDE] = ACTIONS(1239), + [anon_sym_bit_DASHand] = ACTIONS(1239), + [anon_sym_bit_DASHxor] = ACTIONS(1239), + [anon_sym_bit_DASHor] = ACTIONS(1239), + [anon_sym_and] = ACTIONS(1239), + [anon_sym_xor] = ACTIONS(1239), + [anon_sym_or] = ACTIONS(1239), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_DOT_DOT_LT] = ACTIONS(1239), + [anon_sym_null] = ACTIONS(1239), + [anon_sym_true] = ACTIONS(1239), + [anon_sym_false] = ACTIONS(1239), + [aux_sym__val_number_decimal_token1] = ACTIONS(1237), + [aux_sym__val_number_decimal_token2] = ACTIONS(1239), + [anon_sym_DOT2] = ACTIONS(1237), + [aux_sym__val_number_decimal_token3] = ACTIONS(1239), + [aux_sym__val_number_token1] = ACTIONS(1239), + [aux_sym__val_number_token2] = ACTIONS(1239), + [aux_sym__val_number_token3] = ACTIONS(1239), + [aux_sym__val_number_token4] = ACTIONS(1239), + [aux_sym__val_number_token5] = ACTIONS(1239), + [aux_sym__val_number_token6] = ACTIONS(1239), + [anon_sym_0b] = ACTIONS(1237), + [anon_sym_0o] = ACTIONS(1237), + [anon_sym_0x] = ACTIONS(1237), + [sym_val_date] = ACTIONS(1239), + [anon_sym_DQUOTE] = ACTIONS(1239), + [sym__str_single_quotes] = ACTIONS(1239), + [sym__str_back_ticks] = ACTIONS(1239), + [anon_sym_err_GT] = ACTIONS(1239), + [anon_sym_out_GT] = ACTIONS(1239), + [anon_sym_e_GT] = ACTIONS(1239), + [anon_sym_o_GT] = ACTIONS(1239), + [anon_sym_err_PLUSout_GT] = ACTIONS(1239), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1239), + [anon_sym_o_PLUSe_GT] = ACTIONS(1239), + [anon_sym_e_PLUSo_GT] = ACTIONS(1239), + [aux_sym_unquoted_token1] = ACTIONS(1237), + [anon_sym_POUND] = ACTIONS(3), }, - [1804] = { - [sym_comment] = STATE(1804), - [ts_builtin_sym_end] = ACTIONS(5085), - [anon_sym_export] = ACTIONS(5083), - [anon_sym_alias] = ACTIONS(5083), - [anon_sym_let] = ACTIONS(5083), - [anon_sym_let_DASHenv] = ACTIONS(5083), - [anon_sym_mut] = ACTIONS(5083), - [anon_sym_const] = ACTIONS(5083), - [anon_sym_SEMI] = ACTIONS(5083), - [sym_cmd_identifier] = ACTIONS(5083), - [anon_sym_LF] = ACTIONS(5085), - [anon_sym_def] = ACTIONS(5083), - [anon_sym_export_DASHenv] = ACTIONS(5083), - [anon_sym_extern] = ACTIONS(5083), - [anon_sym_module] = ACTIONS(5083), - [anon_sym_use] = ACTIONS(5083), - [anon_sym_LBRACK] = ACTIONS(5083), - [anon_sym_LPAREN] = ACTIONS(5083), - [anon_sym_DOLLAR] = ACTIONS(5083), - [anon_sym_error] = ACTIONS(5083), - [anon_sym_DASH_DASH] = ACTIONS(5083), - [anon_sym_DASH] = ACTIONS(5083), - [anon_sym_break] = ACTIONS(5083), - [anon_sym_continue] = ACTIONS(5083), - [anon_sym_for] = ACTIONS(5083), - [anon_sym_loop] = ACTIONS(5083), - [anon_sym_while] = ACTIONS(5083), - [anon_sym_do] = ACTIONS(5083), - [anon_sym_if] = ACTIONS(5083), - [anon_sym_match] = ACTIONS(5083), - [anon_sym_LBRACE] = ACTIONS(5083), - [anon_sym_DOT_DOT] = ACTIONS(5083), - [anon_sym_try] = ACTIONS(5083), - [anon_sym_return] = ACTIONS(5083), - [anon_sym_source] = ACTIONS(5083), - [anon_sym_source_DASHenv] = ACTIONS(5083), - [anon_sym_register] = ACTIONS(5083), - [anon_sym_hide] = ACTIONS(5083), - [anon_sym_hide_DASHenv] = ACTIONS(5083), - [anon_sym_overlay] = ACTIONS(5083), - [anon_sym_as] = ACTIONS(5083), - [anon_sym_where] = ACTIONS(5083), - [anon_sym_not] = ACTIONS(5083), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5083), - [anon_sym_DOT_DOT_LT] = ACTIONS(5083), - [aux_sym__immediate_decimal_token1] = ACTIONS(5257), - [anon_sym_null] = ACTIONS(5083), - [anon_sym_true] = ACTIONS(5083), - [anon_sym_false] = ACTIONS(5083), - [aux_sym__val_number_decimal_token1] = ACTIONS(5083), - [aux_sym__val_number_decimal_token2] = ACTIONS(5083), - [anon_sym_DOT2] = ACTIONS(5083), - [aux_sym__val_number_decimal_token3] = ACTIONS(5083), - [aux_sym__val_number_token1] = ACTIONS(5083), - [aux_sym__val_number_token2] = ACTIONS(5083), - [aux_sym__val_number_token3] = ACTIONS(5083), - [aux_sym__val_number_token4] = ACTIONS(5083), - [aux_sym__val_number_token5] = ACTIONS(5083), - [aux_sym__val_number_token6] = ACTIONS(5083), - [anon_sym_0b] = ACTIONS(5083), - [anon_sym_0o] = ACTIONS(5083), - [anon_sym_0x] = ACTIONS(5083), - [sym_val_date] = ACTIONS(5083), - [anon_sym_DQUOTE] = ACTIONS(5083), - [sym__str_single_quotes] = ACTIONS(5083), - [sym__str_back_ticks] = ACTIONS(5083), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5083), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5083), - [anon_sym_CARET] = ACTIONS(5083), + [2015] = { + [sym_comment] = STATE(2015), + [ts_builtin_sym_end] = ACTIONS(1095), + [anon_sym_export] = ACTIONS(1093), + [anon_sym_alias] = ACTIONS(1093), + [anon_sym_let] = ACTIONS(1093), + [anon_sym_let_DASHenv] = ACTIONS(1093), + [anon_sym_mut] = ACTIONS(1093), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_SEMI] = ACTIONS(1093), + [sym_cmd_identifier] = ACTIONS(1093), + [anon_sym_LF] = ACTIONS(1095), + [anon_sym_def] = ACTIONS(1093), + [anon_sym_export_DASHenv] = ACTIONS(1093), + [anon_sym_extern] = ACTIONS(1093), + [anon_sym_module] = ACTIONS(1093), + [anon_sym_use] = ACTIONS(1093), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_LPAREN] = ACTIONS(1093), + [anon_sym_DOLLAR] = ACTIONS(1093), + [anon_sym_error] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_break] = ACTIONS(1093), + [anon_sym_continue] = ACTIONS(1093), + [anon_sym_for] = ACTIONS(1093), + [anon_sym_loop] = ACTIONS(1093), + [anon_sym_while] = ACTIONS(1093), + [anon_sym_do] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1093), + [anon_sym_match] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1093), + [anon_sym_DOT_DOT] = ACTIONS(1093), + [anon_sym_try] = ACTIONS(1093), + [anon_sym_return] = ACTIONS(1093), + [anon_sym_source] = ACTIONS(1093), + [anon_sym_source_DASHenv] = ACTIONS(1093), + [anon_sym_register] = ACTIONS(1093), + [anon_sym_hide] = ACTIONS(1093), + [anon_sym_hide_DASHenv] = ACTIONS(1093), + [anon_sym_overlay] = ACTIONS(1093), + [anon_sym_as] = ACTIONS(1093), + [anon_sym_where] = ACTIONS(1093), + [anon_sym_not] = ACTIONS(1093), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1093), + [anon_sym_DOT_DOT_LT] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1093), + [anon_sym_true] = ACTIONS(1093), + [anon_sym_false] = ACTIONS(1093), + [aux_sym__val_number_decimal_token1] = ACTIONS(1093), + [aux_sym__val_number_decimal_token2] = ACTIONS(1093), + [anon_sym_DOT2] = ACTIONS(1093), + [aux_sym__val_number_decimal_token3] = ACTIONS(1093), + [aux_sym__val_number_token1] = ACTIONS(1093), + [aux_sym__val_number_token2] = ACTIONS(1093), + [aux_sym__val_number_token3] = ACTIONS(1093), + [aux_sym__val_number_token4] = ACTIONS(1093), + [aux_sym__val_number_token5] = ACTIONS(1093), + [aux_sym__val_number_token6] = ACTIONS(1093), + [anon_sym_0b] = ACTIONS(1093), + [anon_sym_0o] = ACTIONS(1093), + [anon_sym_0x] = ACTIONS(1093), + [sym_val_date] = ACTIONS(1093), + [anon_sym_DQUOTE] = ACTIONS(1093), + [sym__str_single_quotes] = ACTIONS(1093), + [sym__str_back_ticks] = ACTIONS(1093), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1093), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1093), + [anon_sym_CARET] = ACTIONS(1093), [anon_sym_POUND] = ACTIONS(113), }, - [1805] = { - [sym_comment] = STATE(1805), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_error] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_RBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_as] = ACTIONS(936), - [anon_sym_where] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [anon_sym_POUND] = ACTIONS(113), + [2016] = { + [sym_comment] = STATE(2016), + [anon_sym_LBRACK] = ACTIONS(1173), + [anon_sym_COMMA] = ACTIONS(1173), + [anon_sym_RBRACK] = ACTIONS(1173), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_DOLLAR] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1173), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1173), + [anon_sym_SLASH_SLASH] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1173), + [anon_sym_bit_DASHshr] = ACTIONS(1173), + [anon_sym_EQ_EQ] = ACTIONS(1173), + [anon_sym_BANG_EQ] = ACTIONS(1173), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1173), + [anon_sym_GT_EQ] = ACTIONS(1173), + [anon_sym_not_DASHin] = ACTIONS(1173), + [anon_sym_starts_DASHwith] = ACTIONS(1173), + [anon_sym_ends_DASHwith] = ACTIONS(1173), + [anon_sym_EQ_TILDE] = ACTIONS(1173), + [anon_sym_BANG_TILDE] = ACTIONS(1173), + [anon_sym_bit_DASHand] = ACTIONS(1173), + [anon_sym_bit_DASHxor] = ACTIONS(1173), + [anon_sym_bit_DASHor] = ACTIONS(1173), + [anon_sym_and] = ACTIONS(1173), + [anon_sym_xor] = ACTIONS(1173), + [anon_sym_or] = ACTIONS(1173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1173), + [anon_sym_DOT_DOT_LT] = ACTIONS(1173), + [anon_sym_null] = ACTIONS(1173), + [anon_sym_true] = ACTIONS(1173), + [anon_sym_false] = ACTIONS(1173), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1173), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1173), + [aux_sym__val_number_token1] = ACTIONS(1173), + [aux_sym__val_number_token2] = ACTIONS(1173), + [aux_sym__val_number_token3] = ACTIONS(1173), + [aux_sym__val_number_token4] = ACTIONS(1173), + [aux_sym__val_number_token5] = ACTIONS(1173), + [aux_sym__val_number_token6] = ACTIONS(1173), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym__str_single_quotes] = ACTIONS(1173), + [sym__str_back_ticks] = ACTIONS(1173), + [anon_sym_err_GT] = ACTIONS(1173), + [anon_sym_out_GT] = ACTIONS(1173), + [anon_sym_e_GT] = ACTIONS(1173), + [anon_sym_o_GT] = ACTIONS(1173), + [anon_sym_err_PLUSout_GT] = ACTIONS(1173), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1173), + [anon_sym_o_PLUSe_GT] = ACTIONS(1173), + [anon_sym_e_PLUSo_GT] = ACTIONS(1173), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(3), }, - [1806] = { - [sym_comment] = STATE(1806), - [anon_sym_export] = ACTIONS(1243), - [anon_sym_alias] = ACTIONS(1243), - [anon_sym_let] = ACTIONS(1243), - [anon_sym_let_DASHenv] = ACTIONS(1243), - [anon_sym_mut] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1243), - [sym_cmd_identifier] = ACTIONS(1243), - [anon_sym_LF] = ACTIONS(1290), - [anon_sym_def] = ACTIONS(1243), - [anon_sym_export_DASHenv] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1243), - [anon_sym_module] = ACTIONS(1243), - [anon_sym_use] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_RPAREN] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_error] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_loop] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_match] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_RBRACE] = ACTIONS(1243), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_try] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_source] = ACTIONS(1243), - [anon_sym_source_DASHenv] = ACTIONS(1243), - [anon_sym_register] = ACTIONS(1243), - [anon_sym_hide] = ACTIONS(1243), - [anon_sym_hide_DASHenv] = ACTIONS(1243), - [anon_sym_overlay] = ACTIONS(1243), - [anon_sym_as] = ACTIONS(1243), - [anon_sym_where] = ACTIONS(1243), - [anon_sym_not] = ACTIONS(1243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1243), - [anon_sym_DOT_DOT_LT] = ACTIONS(1243), - [anon_sym_null] = ACTIONS(1243), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_decimal_token2] = ACTIONS(1243), - [anon_sym_DOT2] = ACTIONS(1243), - [aux_sym__val_number_decimal_token3] = ACTIONS(1243), - [aux_sym__val_number_token1] = ACTIONS(1243), - [aux_sym__val_number_token2] = ACTIONS(1243), - [aux_sym__val_number_token3] = ACTIONS(1243), - [aux_sym__val_number_token4] = ACTIONS(1243), - [aux_sym__val_number_token5] = ACTIONS(1243), - [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_0b] = ACTIONS(1243), - [anon_sym_0o] = ACTIONS(1243), - [anon_sym_0x] = ACTIONS(1243), - [sym_val_date] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym__str_single_quotes] = ACTIONS(1243), - [sym__str_back_ticks] = ACTIONS(1243), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1243), - [anon_sym_CARET] = ACTIONS(1243), + [2017] = { + [sym_cell_path] = STATE(2568), + [sym_path] = STATE(2095), + [sym_comment] = STATE(2017), + [anon_sym_SEMI] = ACTIONS(1097), + [anon_sym_LF] = ACTIONS(1099), + [anon_sym_LBRACK] = ACTIONS(1097), + [anon_sym_LPAREN] = ACTIONS(1097), + [anon_sym_RPAREN] = ACTIONS(1097), + [anon_sym_PIPE] = ACTIONS(1097), + [anon_sym_DOLLAR] = ACTIONS(1097), + [anon_sym_GT] = ACTIONS(1097), + [anon_sym_DASH_DASH] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_RBRACE] = ACTIONS(1097), + [anon_sym_DOT_DOT] = ACTIONS(1097), + [anon_sym_STAR] = ACTIONS(1097), + [anon_sym_STAR_STAR] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1097), + [anon_sym_SLASH] = ACTIONS(1097), + [anon_sym_mod] = ACTIONS(1097), + [anon_sym_SLASH_SLASH] = ACTIONS(1097), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_bit_DASHshl] = ACTIONS(1097), + [anon_sym_bit_DASHshr] = ACTIONS(1097), + [anon_sym_EQ_EQ] = ACTIONS(1097), + [anon_sym_BANG_EQ] = ACTIONS(1097), + [anon_sym_LT2] = ACTIONS(1097), + [anon_sym_LT_EQ] = ACTIONS(1097), + [anon_sym_GT_EQ] = ACTIONS(1097), + [anon_sym_not_DASHin] = ACTIONS(1097), + [anon_sym_starts_DASHwith] = ACTIONS(1097), + [anon_sym_ends_DASHwith] = ACTIONS(1097), + [anon_sym_EQ_TILDE] = ACTIONS(1097), + [anon_sym_BANG_TILDE] = ACTIONS(1097), + [anon_sym_bit_DASHand] = ACTIONS(1097), + [anon_sym_bit_DASHxor] = ACTIONS(1097), + [anon_sym_bit_DASHor] = ACTIONS(1097), + [anon_sym_and] = ACTIONS(1097), + [anon_sym_xor] = ACTIONS(1097), + [anon_sym_or] = ACTIONS(1097), + [anon_sym_not] = ACTIONS(1097), + [anon_sym_DOT] = ACTIONS(5731), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1097), + [anon_sym_DOT_DOT_LT] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1097), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), + [aux_sym__val_number_decimal_token1] = ACTIONS(1097), + [aux_sym__val_number_decimal_token2] = ACTIONS(1097), + [anon_sym_DOT2] = ACTIONS(1097), + [aux_sym__val_number_decimal_token3] = ACTIONS(1097), + [aux_sym__val_number_token1] = ACTIONS(1097), + [aux_sym__val_number_token2] = ACTIONS(1097), + [aux_sym__val_number_token3] = ACTIONS(1097), + [aux_sym__val_number_token4] = ACTIONS(1097), + [aux_sym__val_number_token5] = ACTIONS(1097), + [aux_sym__val_number_token6] = ACTIONS(1097), + [anon_sym_0b] = ACTIONS(1097), + [anon_sym_0o] = ACTIONS(1097), + [anon_sym_0x] = ACTIONS(1097), + [sym_val_date] = ACTIONS(1097), + [anon_sym_DQUOTE] = ACTIONS(1097), + [sym__str_single_quotes] = ACTIONS(1097), + [sym__str_back_ticks] = ACTIONS(1097), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1097), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1097), [anon_sym_POUND] = ACTIONS(113), }, - [1807] = { - [sym_comment] = STATE(1807), - [anon_sym_export] = ACTIONS(1414), - [anon_sym_alias] = ACTIONS(1414), - [anon_sym_let] = ACTIONS(1414), - [anon_sym_let_DASHenv] = ACTIONS(1414), - [anon_sym_mut] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_SEMI] = ACTIONS(1414), - [sym_cmd_identifier] = ACTIONS(1414), - [anon_sym_LF] = ACTIONS(1416), - [anon_sym_def] = ACTIONS(1414), - [anon_sym_export_DASHenv] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym_module] = ACTIONS(1414), - [anon_sym_use] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_RPAREN] = ACTIONS(1414), - [anon_sym_DOLLAR] = ACTIONS(1414), - [anon_sym_error] = ACTIONS(1414), - [anon_sym_DASH_DASH] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_loop] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1414), - [anon_sym_RBRACE] = ACTIONS(1414), - [anon_sym_DOT_DOT] = ACTIONS(1414), - [anon_sym_try] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_source] = ACTIONS(1414), - [anon_sym_source_DASHenv] = ACTIONS(1414), - [anon_sym_register] = ACTIONS(1414), - [anon_sym_hide] = ACTIONS(1414), - [anon_sym_hide_DASHenv] = ACTIONS(1414), - [anon_sym_overlay] = ACTIONS(1414), - [anon_sym_as] = ACTIONS(1414), - [anon_sym_where] = ACTIONS(1414), - [anon_sym_not] = ACTIONS(1414), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1414), - [anon_sym_DOT_DOT_LT] = ACTIONS(1414), - [anon_sym_null] = ACTIONS(1414), - [anon_sym_true] = ACTIONS(1414), - [anon_sym_false] = ACTIONS(1414), - [aux_sym__val_number_decimal_token1] = ACTIONS(1414), - [aux_sym__val_number_decimal_token2] = ACTIONS(1414), - [anon_sym_DOT2] = ACTIONS(1414), - [aux_sym__val_number_decimal_token3] = ACTIONS(1414), - [aux_sym__val_number_token1] = ACTIONS(1414), - [aux_sym__val_number_token2] = ACTIONS(1414), - [aux_sym__val_number_token3] = ACTIONS(1414), - [aux_sym__val_number_token4] = ACTIONS(1414), - [aux_sym__val_number_token5] = ACTIONS(1414), - [aux_sym__val_number_token6] = ACTIONS(1414), - [anon_sym_0b] = ACTIONS(1414), - [anon_sym_0o] = ACTIONS(1414), - [anon_sym_0x] = ACTIONS(1414), - [sym_val_date] = ACTIONS(1414), - [anon_sym_DQUOTE] = ACTIONS(1414), - [sym__str_single_quotes] = ACTIONS(1414), - [sym__str_back_ticks] = ACTIONS(1414), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1414), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1414), - [anon_sym_POUND] = ACTIONS(113), + [2018] = { + [sym_comment] = STATE(2018), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_COMMA] = ACTIONS(1217), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_DOLLAR] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1215), + [anon_sym_DASH] = ACTIONS(1215), + [anon_sym_in] = ACTIONS(1215), + [anon_sym_LBRACE] = ACTIONS(1217), + [anon_sym_RBRACE] = ACTIONS(1217), + [anon_sym__] = ACTIONS(1215), + [anon_sym_DOT_DOT] = ACTIONS(1215), + [anon_sym_STAR] = ACTIONS(1215), + [anon_sym_STAR_STAR] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(1215), + [anon_sym_mod] = ACTIONS(1217), + [anon_sym_SLASH_SLASH] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1215), + [anon_sym_bit_DASHshl] = ACTIONS(1217), + [anon_sym_bit_DASHshr] = ACTIONS(1217), + [anon_sym_EQ_EQ] = ACTIONS(1217), + [anon_sym_BANG_EQ] = ACTIONS(1217), + [anon_sym_LT2] = ACTIONS(1215), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT_EQ] = ACTIONS(1217), + [anon_sym_not_DASHin] = ACTIONS(1217), + [anon_sym_starts_DASHwith] = ACTIONS(1217), + [anon_sym_ends_DASHwith] = ACTIONS(1217), + [anon_sym_EQ_TILDE] = ACTIONS(1217), + [anon_sym_BANG_TILDE] = ACTIONS(1217), + [anon_sym_bit_DASHand] = ACTIONS(1217), + [anon_sym_bit_DASHxor] = ACTIONS(1217), + [anon_sym_bit_DASHor] = ACTIONS(1217), + [anon_sym_and] = ACTIONS(1217), + [anon_sym_xor] = ACTIONS(1217), + [anon_sym_or] = ACTIONS(1217), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1217), + [anon_sym_DOT_DOT_LT] = ACTIONS(1217), + [anon_sym_null] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1217), + [anon_sym_false] = ACTIONS(1217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1215), + [aux_sym__val_number_decimal_token2] = ACTIONS(1217), + [anon_sym_DOT2] = ACTIONS(1215), + [aux_sym__val_number_decimal_token3] = ACTIONS(1217), + [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(1217), + [aux_sym__val_number_token5] = ACTIONS(1217), + [aux_sym__val_number_token6] = ACTIONS(1217), + [anon_sym_0b] = ACTIONS(1215), + [anon_sym_0o] = ACTIONS(1215), + [anon_sym_0x] = ACTIONS(1215), + [sym_val_date] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym__str_single_quotes] = ACTIONS(1217), + [sym__str_back_ticks] = ACTIONS(1217), + [anon_sym_err_GT] = ACTIONS(1217), + [anon_sym_out_GT] = ACTIONS(1217), + [anon_sym_e_GT] = ACTIONS(1217), + [anon_sym_o_GT] = ACTIONS(1217), + [anon_sym_err_PLUSout_GT] = ACTIONS(1217), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1217), + [anon_sym_o_PLUSe_GT] = ACTIONS(1217), + [anon_sym_e_PLUSo_GT] = ACTIONS(1217), + [aux_sym_unquoted_token1] = ACTIONS(1215), + [anon_sym_POUND] = ACTIONS(3), }, - [1808] = { - [sym_comment] = STATE(1808), - [anon_sym_export] = ACTIONS(1418), - [anon_sym_alias] = ACTIONS(1418), - [anon_sym_let] = ACTIONS(1418), - [anon_sym_let_DASHenv] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(1418), - [sym_cmd_identifier] = ACTIONS(1418), - [anon_sym_LF] = ACTIONS(1420), - [anon_sym_def] = ACTIONS(1418), - [anon_sym_export_DASHenv] = ACTIONS(1418), - [anon_sym_extern] = ACTIONS(1418), - [anon_sym_module] = ACTIONS(1418), - [anon_sym_use] = ACTIONS(1418), - [anon_sym_LBRACK] = ACTIONS(1418), - [anon_sym_LPAREN] = ACTIONS(1418), - [anon_sym_RPAREN] = ACTIONS(1418), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_error] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_loop] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_match] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_RBRACE] = ACTIONS(1418), - [anon_sym_DOT_DOT] = ACTIONS(1418), - [anon_sym_try] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_source] = ACTIONS(1418), - [anon_sym_source_DASHenv] = ACTIONS(1418), - [anon_sym_register] = ACTIONS(1418), - [anon_sym_hide] = ACTIONS(1418), - [anon_sym_hide_DASHenv] = ACTIONS(1418), - [anon_sym_overlay] = ACTIONS(1418), - [anon_sym_as] = ACTIONS(1418), - [anon_sym_where] = ACTIONS(1418), - [anon_sym_not] = ACTIONS(1418), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1418), - [anon_sym_DOT_DOT_LT] = ACTIONS(1418), - [anon_sym_null] = ACTIONS(1418), - [anon_sym_true] = ACTIONS(1418), - [anon_sym_false] = ACTIONS(1418), - [aux_sym__val_number_decimal_token1] = ACTIONS(1418), - [aux_sym__val_number_decimal_token2] = ACTIONS(1418), - [anon_sym_DOT2] = ACTIONS(1418), - [aux_sym__val_number_decimal_token3] = ACTIONS(1418), - [aux_sym__val_number_token1] = ACTIONS(1418), - [aux_sym__val_number_token2] = ACTIONS(1418), - [aux_sym__val_number_token3] = ACTIONS(1418), - [aux_sym__val_number_token4] = ACTIONS(1418), - [aux_sym__val_number_token5] = ACTIONS(1418), - [aux_sym__val_number_token6] = ACTIONS(1418), - [anon_sym_0b] = ACTIONS(1418), - [anon_sym_0o] = ACTIONS(1418), - [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1418), - [anon_sym_DQUOTE] = ACTIONS(1418), - [sym__str_single_quotes] = ACTIONS(1418), - [sym__str_back_ticks] = ACTIONS(1418), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_POUND] = ACTIONS(113), + [2019] = { + [sym_match_arm] = STATE(4342), + [sym_default_arm] = STATE(10697), + [sym_match_pattern] = STATE(10508), + [sym__match_pattern] = STATE(8876), + [sym__match_pattern_expression] = STATE(9859), + [sym__match_pattern_value] = STATE(9862), + [sym__match_pattern_list] = STATE(9863), + [sym__match_pattern_record] = STATE(9864), + [sym__expr_unary_minus] = STATE(9869), + [sym_expr_parenthesized] = STATE(8297), + [sym_val_range] = STATE(9862), + [sym__val_range] = STATE(10105), + [sym_val_nothing] = STATE(9875), + [sym_val_bool] = STATE(9626), + [sym_val_variable] = STATE(8298), + [sym__var] = STATE(3929), + [sym_val_number] = STATE(9875), + [sym__val_number_decimal] = STATE(7214), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(9875), + [sym_val_filesize] = STATE(9875), + [sym_val_binary] = STATE(9875), + [sym_val_string] = STATE(9875), + [sym__str_double_quotes] = STATE(5067), + [sym_val_table] = STATE(9875), + [sym_unquoted] = STATE(9878), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(2019), + [aux_sym_ctrl_match_repeat1] = STATE(2368), + [anon_sym_LBRACK] = ACTIONS(5733), + [anon_sym_LPAREN] = ACTIONS(3100), + [anon_sym_DOLLAR] = ACTIONS(5735), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(5737), + [anon_sym_RBRACE] = ACTIONS(5739), + [anon_sym__] = ACTIONS(5741), + [anon_sym_DOT_DOT] = ACTIONS(5743), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5745), + [anon_sym_DOT_DOT_LT] = ACTIONS(5745), + [anon_sym_null] = ACTIONS(5747), + [anon_sym_true] = ACTIONS(5749), + [anon_sym_false] = ACTIONS(5749), + [aux_sym__val_number_decimal_token1] = ACTIONS(5751), + [aux_sym__val_number_decimal_token2] = ACTIONS(5753), + [anon_sym_DOT2] = ACTIONS(5755), + [aux_sym__val_number_decimal_token3] = ACTIONS(5757), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(5759), + [aux_sym__val_number_token5] = ACTIONS(5759), + [aux_sym__val_number_token6] = ACTIONS(5759), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(5761), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), + [anon_sym_POUND] = ACTIONS(3), }, - [1809] = { - [sym_comment] = STATE(1809), - [anon_sym_export] = ACTIONS(1298), - [anon_sym_alias] = ACTIONS(1298), - [anon_sym_let] = ACTIONS(1298), - [anon_sym_let_DASHenv] = ACTIONS(1298), - [anon_sym_mut] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1298), - [sym_cmd_identifier] = ACTIONS(1298), - [anon_sym_LF] = ACTIONS(1300), - [anon_sym_def] = ACTIONS(1298), - [anon_sym_export_DASHenv] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_module] = ACTIONS(1298), - [anon_sym_use] = ACTIONS(1298), - [anon_sym_LBRACK] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1298), - [anon_sym_RPAREN] = ACTIONS(1298), - [anon_sym_DOLLAR] = ACTIONS(1298), - [anon_sym_error] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_loop] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_match] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1298), - [anon_sym_DOT_DOT] = ACTIONS(1298), - [anon_sym_try] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_source] = ACTIONS(1298), - [anon_sym_source_DASHenv] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_hide] = ACTIONS(1298), - [anon_sym_hide_DASHenv] = ACTIONS(1298), - [anon_sym_overlay] = ACTIONS(1298), - [anon_sym_as] = ACTIONS(1298), - [anon_sym_where] = ACTIONS(1298), - [anon_sym_not] = ACTIONS(1298), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1298), - [anon_sym_DOT_DOT_LT] = ACTIONS(1298), - [anon_sym_null] = ACTIONS(1298), - [anon_sym_true] = ACTIONS(1298), - [anon_sym_false] = ACTIONS(1298), - [aux_sym__val_number_decimal_token1] = ACTIONS(1298), - [aux_sym__val_number_decimal_token2] = ACTIONS(1298), - [anon_sym_DOT2] = ACTIONS(1298), - [aux_sym__val_number_decimal_token3] = 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(1298), - [aux_sym__val_number_token5] = ACTIONS(1298), - [aux_sym__val_number_token6] = ACTIONS(1298), - [anon_sym_0b] = ACTIONS(1298), - [anon_sym_0o] = ACTIONS(1298), - [anon_sym_0x] = ACTIONS(1298), - [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), + [2020] = { + [sym_comment] = STATE(2020), + [ts_builtin_sym_end] = ACTIONS(1281), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1279), + [anon_sym_let] = ACTIONS(1279), + [anon_sym_let_DASHenv] = ACTIONS(1279), + [anon_sym_mut] = ACTIONS(1279), + [anon_sym_const] = ACTIONS(1279), + [anon_sym_SEMI] = ACTIONS(1279), + [sym_cmd_identifier] = ACTIONS(1279), + [anon_sym_LF] = ACTIONS(1281), + [anon_sym_def] = ACTIONS(1279), + [anon_sym_export_DASHenv] = ACTIONS(1279), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_use] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_DOLLAR] = ACTIONS(1279), + [anon_sym_error] = ACTIONS(1279), + [anon_sym_DASH_DASH] = ACTIONS(1279), + [anon_sym_DASH] = ACTIONS(1279), + [anon_sym_break] = ACTIONS(1279), + [anon_sym_continue] = ACTIONS(1279), + [anon_sym_for] = ACTIONS(1279), + [anon_sym_loop] = ACTIONS(1279), + [anon_sym_while] = ACTIONS(1279), + [anon_sym_do] = ACTIONS(1279), + [anon_sym_if] = ACTIONS(1279), + [anon_sym_match] = ACTIONS(1279), + [anon_sym_LBRACE] = ACTIONS(1279), + [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym_try] = ACTIONS(1279), + [anon_sym_return] = ACTIONS(1279), + [anon_sym_source] = ACTIONS(1279), + [anon_sym_source_DASHenv] = ACTIONS(1279), + [anon_sym_register] = ACTIONS(1279), + [anon_sym_hide] = ACTIONS(1279), + [anon_sym_hide_DASHenv] = ACTIONS(1279), + [anon_sym_overlay] = ACTIONS(1279), + [anon_sym_as] = ACTIONS(1279), + [anon_sym_where] = ACTIONS(1279), + [anon_sym_not] = ACTIONS(1279), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1279), + [anon_sym_DOT_DOT_LT] = ACTIONS(1279), + [anon_sym_null] = ACTIONS(1279), + [anon_sym_true] = ACTIONS(1279), + [anon_sym_false] = ACTIONS(1279), + [aux_sym__val_number_decimal_token1] = ACTIONS(1279), + [aux_sym__val_number_decimal_token2] = ACTIONS(1279), + [anon_sym_DOT2] = ACTIONS(1279), + [aux_sym__val_number_decimal_token3] = ACTIONS(1279), + [aux_sym__val_number_token1] = ACTIONS(1279), + [aux_sym__val_number_token2] = ACTIONS(1279), + [aux_sym__val_number_token3] = ACTIONS(1279), + [aux_sym__val_number_token4] = ACTIONS(1279), + [aux_sym__val_number_token5] = ACTIONS(1279), + [aux_sym__val_number_token6] = ACTIONS(1279), + [anon_sym_0b] = ACTIONS(1279), + [anon_sym_0o] = ACTIONS(1279), + [anon_sym_0x] = ACTIONS(1279), + [sym_val_date] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(1279), + [sym__str_single_quotes] = ACTIONS(1279), + [sym__str_back_ticks] = ACTIONS(1279), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1279), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1279), + [anon_sym_CARET] = ACTIONS(1279), [anon_sym_POUND] = ACTIONS(113), }, - [1810] = { - [sym_comment] = STATE(1810), - [ts_builtin_sym_end] = ACTIONS(1261), - [anon_sym_export] = ACTIONS(1259), - [anon_sym_alias] = ACTIONS(1259), - [anon_sym_let] = ACTIONS(1259), - [anon_sym_let_DASHenv] = ACTIONS(1259), - [anon_sym_mut] = ACTIONS(1259), - [anon_sym_const] = ACTIONS(1259), - [anon_sym_SEMI] = ACTIONS(1259), - [sym_cmd_identifier] = ACTIONS(1259), - [anon_sym_LF] = ACTIONS(1261), - [anon_sym_def] = ACTIONS(1259), - [anon_sym_export_DASHenv] = ACTIONS(1259), - [anon_sym_extern] = ACTIONS(1259), - [anon_sym_module] = ACTIONS(1259), - [anon_sym_use] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_DOLLAR] = ACTIONS(1259), - [anon_sym_error] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_break] = ACTIONS(1259), - [anon_sym_continue] = ACTIONS(1259), - [anon_sym_for] = ACTIONS(1259), - [anon_sym_loop] = ACTIONS(1259), - [anon_sym_while] = ACTIONS(1259), - [anon_sym_do] = ACTIONS(1259), - [anon_sym_if] = ACTIONS(1259), - [anon_sym_match] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1259), - [anon_sym_DOT_DOT] = ACTIONS(1259), - [anon_sym_try] = ACTIONS(1259), - [anon_sym_return] = ACTIONS(1259), - [anon_sym_source] = ACTIONS(1259), - [anon_sym_source_DASHenv] = ACTIONS(1259), - [anon_sym_register] = ACTIONS(1259), - [anon_sym_hide] = ACTIONS(1259), - [anon_sym_hide_DASHenv] = ACTIONS(1259), - [anon_sym_overlay] = ACTIONS(1259), - [anon_sym_as] = ACTIONS(1259), - [anon_sym_where] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1259), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1259), - [anon_sym_DOT_DOT_LT] = ACTIONS(1259), - [anon_sym_null] = ACTIONS(1259), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [aux_sym__val_number_decimal_token1] = ACTIONS(1259), - [aux_sym__val_number_decimal_token2] = ACTIONS(1259), - [anon_sym_DOT2] = ACTIONS(1259), - [aux_sym__val_number_decimal_token3] = ACTIONS(1259), - [aux_sym__val_number_token1] = ACTIONS(1259), - [aux_sym__val_number_token2] = ACTIONS(1259), - [aux_sym__val_number_token3] = ACTIONS(1259), - [aux_sym__val_number_token4] = ACTIONS(1259), - [aux_sym__val_number_token5] = ACTIONS(1259), - [aux_sym__val_number_token6] = ACTIONS(1259), - [anon_sym_0b] = ACTIONS(1259), - [anon_sym_0o] = ACTIONS(1259), - [anon_sym_0x] = ACTIONS(1259), - [anon_sym_LBRACK2] = ACTIONS(5259), - [sym_val_date] = ACTIONS(1259), - [anon_sym_DQUOTE] = ACTIONS(1259), - [sym__str_single_quotes] = ACTIONS(1259), - [sym__str_back_ticks] = ACTIONS(1259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1259), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1259), - [anon_sym_CARET] = ACTIONS(1259), - [anon_sym_POUND] = ACTIONS(113), + [2021] = { + [sym_comment] = STATE(2021), + [anon_sym_LBRACK] = ACTIONS(940), + [anon_sym_COMMA] = ACTIONS(940), + [anon_sym_RBRACK] = ACTIONS(940), + [anon_sym_LPAREN] = ACTIONS(940), + [anon_sym_DOLLAR] = ACTIONS(940), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(940), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_in] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(940), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_STAR_STAR] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(940), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(940), + [anon_sym_SLASH_SLASH] = ACTIONS(940), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_bit_DASHshl] = ACTIONS(940), + [anon_sym_bit_DASHshr] = ACTIONS(940), + [anon_sym_EQ_EQ] = ACTIONS(940), + [anon_sym_BANG_EQ] = ACTIONS(940), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(940), + [anon_sym_GT_EQ] = ACTIONS(940), + [anon_sym_not_DASHin] = ACTIONS(940), + [anon_sym_starts_DASHwith] = ACTIONS(940), + [anon_sym_ends_DASHwith] = ACTIONS(940), + [anon_sym_EQ_TILDE] = ACTIONS(940), + [anon_sym_BANG_TILDE] = ACTIONS(940), + [anon_sym_bit_DASHand] = ACTIONS(940), + [anon_sym_bit_DASHxor] = ACTIONS(940), + [anon_sym_bit_DASHor] = ACTIONS(940), + [anon_sym_and] = ACTIONS(940), + [anon_sym_xor] = ACTIONS(940), + [anon_sym_or] = ACTIONS(940), + [anon_sym_DOT_DOT_EQ] = ACTIONS(940), + [anon_sym_DOT_DOT_LT] = ACTIONS(940), + [anon_sym_null] = ACTIONS(940), + [anon_sym_true] = ACTIONS(940), + [anon_sym_false] = ACTIONS(940), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(940), + [anon_sym_DOT2] = ACTIONS(938), + [aux_sym__val_number_decimal_token3] = ACTIONS(940), + [aux_sym__val_number_token1] = ACTIONS(940), + [aux_sym__val_number_token2] = ACTIONS(940), + [aux_sym__val_number_token3] = ACTIONS(940), + [aux_sym__val_number_token4] = ACTIONS(940), + [aux_sym__val_number_token5] = ACTIONS(940), + [aux_sym__val_number_token6] = ACTIONS(940), + [anon_sym_0b] = ACTIONS(938), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = ACTIONS(940), + [anon_sym_DQUOTE] = ACTIONS(940), + [sym__str_single_quotes] = ACTIONS(940), + [sym__str_back_ticks] = ACTIONS(940), + [anon_sym_err_GT] = ACTIONS(940), + [anon_sym_out_GT] = ACTIONS(940), + [anon_sym_e_GT] = ACTIONS(940), + [anon_sym_o_GT] = ACTIONS(940), + [anon_sym_err_PLUSout_GT] = ACTIONS(940), + [anon_sym_out_PLUSerr_GT] = ACTIONS(940), + [anon_sym_o_PLUSe_GT] = ACTIONS(940), + [anon_sym_e_PLUSo_GT] = ACTIONS(940), + [aux_sym__unquoted_in_list_token1] = ACTIONS(938), + [anon_sym_POUND] = ACTIONS(3), }, - [1811] = { - [sym_comment] = STATE(1811), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_alias] = ACTIONS(1158), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_let_DASHenv] = ACTIONS(1158), - [anon_sym_mut] = ACTIONS(1158), - [anon_sym_const] = ACTIONS(1158), - [anon_sym_SEMI] = ACTIONS(1158), - [sym_cmd_identifier] = ACTIONS(1158), - [anon_sym_LF] = ACTIONS(1160), - [anon_sym_def] = ACTIONS(1158), - [anon_sym_export_DASHenv] = ACTIONS(1158), - [anon_sym_extern] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_use] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_LPAREN] = ACTIONS(1158), - [anon_sym_RPAREN] = ACTIONS(1158), - [anon_sym_DOLLAR] = ACTIONS(1158), - [anon_sym_error] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_break] = ACTIONS(1158), - [anon_sym_continue] = ACTIONS(1158), - [anon_sym_for] = ACTIONS(1158), - [anon_sym_loop] = ACTIONS(1158), - [anon_sym_while] = ACTIONS(1158), - [anon_sym_do] = ACTIONS(1158), - [anon_sym_if] = ACTIONS(1158), - [anon_sym_match] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1158), - [anon_sym_RBRACE] = ACTIONS(1158), - [anon_sym_DOT_DOT] = ACTIONS(1158), - [anon_sym_try] = ACTIONS(1158), - [anon_sym_return] = ACTIONS(1158), - [anon_sym_source] = ACTIONS(1158), - [anon_sym_source_DASHenv] = ACTIONS(1158), - [anon_sym_register] = ACTIONS(1158), - [anon_sym_hide] = ACTIONS(1158), - [anon_sym_hide_DASHenv] = ACTIONS(1158), - [anon_sym_overlay] = ACTIONS(1158), - [anon_sym_as] = ACTIONS(1158), - [anon_sym_where] = ACTIONS(1158), - [anon_sym_not] = ACTIONS(1158), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1158), - [anon_sym_DOT_DOT_LT] = ACTIONS(1158), - [anon_sym_null] = ACTIONS(1158), - [anon_sym_true] = ACTIONS(1158), - [anon_sym_false] = ACTIONS(1158), - [aux_sym__val_number_decimal_token1] = ACTIONS(1158), - [aux_sym__val_number_decimal_token2] = ACTIONS(1158), - [anon_sym_DOT2] = ACTIONS(1158), - [aux_sym__val_number_decimal_token3] = ACTIONS(1158), - [aux_sym__val_number_token1] = ACTIONS(1158), - [aux_sym__val_number_token2] = ACTIONS(1158), - [aux_sym__val_number_token3] = ACTIONS(1158), - [aux_sym__val_number_token4] = ACTIONS(1158), - [aux_sym__val_number_token5] = ACTIONS(1158), - [aux_sym__val_number_token6] = ACTIONS(1158), - [anon_sym_0b] = ACTIONS(1158), - [anon_sym_0o] = ACTIONS(1158), - [anon_sym_0x] = ACTIONS(1158), - [sym_val_date] = ACTIONS(1158), - [anon_sym_DQUOTE] = ACTIONS(1158), - [sym__str_single_quotes] = ACTIONS(1158), - [sym__str_back_ticks] = ACTIONS(1158), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1158), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1158), - [anon_sym_CARET] = ACTIONS(1158), - [anon_sym_POUND] = ACTIONS(113), + [2022] = { + [sym_comment] = STATE(2022), + [anon_sym_LBRACK] = ACTIONS(1091), + [anon_sym_COMMA] = ACTIONS(1091), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_DOLLAR] = ACTIONS(1091), + [anon_sym_GT] = ACTIONS(1089), + [anon_sym_DASH] = ACTIONS(1089), + [anon_sym_in] = ACTIONS(1089), + [anon_sym_LBRACE] = ACTIONS(1091), + [anon_sym_RBRACE] = ACTIONS(1091), + [anon_sym__] = ACTIONS(1089), + [anon_sym_DOT_DOT] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_STAR_STAR] = ACTIONS(1091), + [anon_sym_PLUS_PLUS] = ACTIONS(1091), + [anon_sym_SLASH] = ACTIONS(1089), + [anon_sym_mod] = ACTIONS(1091), + [anon_sym_SLASH_SLASH] = ACTIONS(1091), + [anon_sym_PLUS] = ACTIONS(1089), + [anon_sym_bit_DASHshl] = ACTIONS(1091), + [anon_sym_bit_DASHshr] = ACTIONS(1091), + [anon_sym_EQ_EQ] = ACTIONS(1091), + [anon_sym_BANG_EQ] = ACTIONS(1091), + [anon_sym_LT2] = ACTIONS(1089), + [anon_sym_LT_EQ] = ACTIONS(1091), + [anon_sym_GT_EQ] = ACTIONS(1091), + [anon_sym_not_DASHin] = ACTIONS(1091), + [anon_sym_starts_DASHwith] = ACTIONS(1091), + [anon_sym_ends_DASHwith] = ACTIONS(1091), + [anon_sym_EQ_TILDE] = ACTIONS(1091), + [anon_sym_BANG_TILDE] = ACTIONS(1091), + [anon_sym_bit_DASHand] = ACTIONS(1091), + [anon_sym_bit_DASHxor] = ACTIONS(1091), + [anon_sym_bit_DASHor] = ACTIONS(1091), + [anon_sym_and] = ACTIONS(1091), + [anon_sym_xor] = ACTIONS(1091), + [anon_sym_or] = ACTIONS(1091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1091), + [anon_sym_DOT_DOT_LT] = ACTIONS(1091), + [anon_sym_null] = ACTIONS(1091), + [anon_sym_true] = ACTIONS(1091), + [anon_sym_false] = ACTIONS(1091), + [aux_sym__val_number_decimal_token1] = ACTIONS(1089), + [aux_sym__val_number_decimal_token2] = ACTIONS(1091), + [anon_sym_DOT2] = ACTIONS(1089), + [aux_sym__val_number_decimal_token3] = ACTIONS(1091), + [aux_sym__val_number_token1] = ACTIONS(1091), + [aux_sym__val_number_token2] = ACTIONS(1091), + [aux_sym__val_number_token3] = ACTIONS(1091), + [aux_sym__val_number_token4] = ACTIONS(1091), + [aux_sym__val_number_token5] = ACTIONS(1091), + [aux_sym__val_number_token6] = ACTIONS(1091), + [anon_sym_0b] = ACTIONS(1089), + [anon_sym_0o] = ACTIONS(1089), + [anon_sym_0x] = ACTIONS(1089), + [sym_val_date] = ACTIONS(1091), + [anon_sym_DQUOTE] = ACTIONS(1091), + [sym__str_single_quotes] = ACTIONS(1091), + [sym__str_back_ticks] = ACTIONS(1091), + [anon_sym_err_GT] = ACTIONS(1091), + [anon_sym_out_GT] = ACTIONS(1091), + [anon_sym_e_GT] = ACTIONS(1091), + [anon_sym_o_GT] = ACTIONS(1091), + [anon_sym_err_PLUSout_GT] = ACTIONS(1091), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1091), + [anon_sym_o_PLUSe_GT] = ACTIONS(1091), + [anon_sym_e_PLUSo_GT] = ACTIONS(1091), + [aux_sym_unquoted_token1] = ACTIONS(1089), + [anon_sym_POUND] = ACTIONS(3), }, - [1812] = { - [sym_comment] = STATE(1812), - [anon_sym_export] = ACTIONS(2581), - [anon_sym_alias] = ACTIONS(2581), - [anon_sym_let] = ACTIONS(2581), - [anon_sym_let_DASHenv] = ACTIONS(2581), - [anon_sym_mut] = ACTIONS(2581), - [anon_sym_const] = ACTIONS(2581), - [anon_sym_SEMI] = ACTIONS(2581), - [sym_cmd_identifier] = ACTIONS(2581), - [anon_sym_LF] = ACTIONS(2583), - [anon_sym_def] = ACTIONS(2581), - [anon_sym_export_DASHenv] = ACTIONS(2581), - [anon_sym_extern] = ACTIONS(2581), - [anon_sym_module] = ACTIONS(2581), - [anon_sym_use] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2581), - [anon_sym_RPAREN] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2581), - [anon_sym_error] = ACTIONS(2581), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_break] = ACTIONS(2581), - [anon_sym_continue] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2581), - [anon_sym_loop] = ACTIONS(2581), - [anon_sym_while] = ACTIONS(2581), - [anon_sym_do] = ACTIONS(2581), - [anon_sym_if] = ACTIONS(2581), - [anon_sym_match] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2581), - [anon_sym_RBRACE] = ACTIONS(2581), - [anon_sym_DOT_DOT] = ACTIONS(2581), - [anon_sym_try] = ACTIONS(2581), - [anon_sym_return] = ACTIONS(2581), - [anon_sym_source] = ACTIONS(2581), - [anon_sym_source_DASHenv] = ACTIONS(2581), - [anon_sym_register] = ACTIONS(2581), - [anon_sym_hide] = ACTIONS(2581), - [anon_sym_hide_DASHenv] = ACTIONS(2581), - [anon_sym_overlay] = ACTIONS(2581), - [anon_sym_where] = ACTIONS(2581), - [anon_sym_not] = ACTIONS(2581), - [anon_sym_DOT] = ACTIONS(5261), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2581), - [anon_sym_DOT_DOT_LT] = ACTIONS(2581), - [aux_sym__immediate_decimal_token2] = ACTIONS(5263), - [anon_sym_null] = ACTIONS(2581), - [anon_sym_true] = ACTIONS(2581), - [anon_sym_false] = ACTIONS(2581), - [aux_sym__val_number_decimal_token1] = ACTIONS(2581), - [aux_sym__val_number_decimal_token2] = ACTIONS(2581), - [anon_sym_DOT2] = ACTIONS(2581), - [aux_sym__val_number_decimal_token3] = ACTIONS(2581), - [aux_sym__val_number_token1] = ACTIONS(2581), - [aux_sym__val_number_token2] = ACTIONS(2581), - [aux_sym__val_number_token3] = ACTIONS(2581), - [aux_sym__val_number_token4] = ACTIONS(2581), - [aux_sym__val_number_token5] = ACTIONS(2581), - [aux_sym__val_number_token6] = ACTIONS(2581), - [anon_sym_0b] = ACTIONS(2581), - [anon_sym_0o] = ACTIONS(2581), - [anon_sym_0x] = ACTIONS(2581), - [sym_val_date] = ACTIONS(2581), - [anon_sym_DQUOTE] = ACTIONS(2581), - [sym__str_single_quotes] = ACTIONS(2581), - [sym__str_back_ticks] = ACTIONS(2581), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2581), - [anon_sym_CARET] = ACTIONS(2581), + [2023] = { + [sym__expression] = STATE(7223), + [sym_expr_unary] = STATE(5677), + [sym__expr_unary_minus] = STATE(5679), + [sym_expr_binary] = STATE(5677), + [sym__expr_binary_expression] = STATE(6377), + [sym_expr_parenthesized] = STATE(4919), + [sym_val_range] = STATE(8295), + [sym__value] = STATE(5677), + [sym_val_nothing] = STATE(5612), + [sym_val_bool] = STATE(5612), + [sym_val_variable] = STATE(4867), + [sym__var] = STATE(4310), + [sym_val_number] = STATE(5612), + [sym__val_number_decimal] = STATE(4408), + [sym__val_number] = STATE(5661), + [sym_val_duration] = STATE(5612), + [sym_val_filesize] = STATE(5612), + [sym_val_binary] = STATE(5612), + [sym_val_string] = STATE(5612), + [sym__str_double_quotes] = STATE(5733), + [sym_val_interpolated] = STATE(5612), + [sym__inter_single_quotes] = STATE(5590), + [sym__inter_double_quotes] = STATE(5591), + [sym_val_list] = STATE(5612), + [sym_val_record] = STATE(5612), + [sym_val_table] = STATE(5612), + [sym_val_closure] = STATE(5612), + [sym__flag] = STATE(7305), + [sym_short_flag] = STATE(8315), + [sym_long_flag] = STATE(8315), + [sym_long_flag_equals_value] = STATE(8239), + [sym_comment] = STATE(2023), + [ts_builtin_sym_end] = ACTIONS(4949), + [anon_sym_SEMI] = ACTIONS(4947), + [anon_sym_LF] = ACTIONS(4949), + [anon_sym_LBRACK] = ACTIONS(5667), + [anon_sym_LPAREN] = ACTIONS(5669), + [anon_sym_PIPE] = ACTIONS(4947), + [anon_sym_DOLLAR] = ACTIONS(2667), + [anon_sym_DASH_DASH] = ACTIONS(5763), + [anon_sym_DASH] = ACTIONS(5765), + [anon_sym_LBRACE] = ACTIONS(5675), + [anon_sym_DOT_DOT] = ACTIONS(5677), + [anon_sym_not] = ACTIONS(5679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5681), + [anon_sym_DOT_DOT_LT] = ACTIONS(5681), + [anon_sym_null] = ACTIONS(5683), + [anon_sym_true] = ACTIONS(5685), + [anon_sym_false] = ACTIONS(5685), + [aux_sym__val_number_decimal_token1] = ACTIONS(5687), + [aux_sym__val_number_decimal_token2] = ACTIONS(5687), + [anon_sym_DOT2] = ACTIONS(5689), + [aux_sym__val_number_decimal_token3] = ACTIONS(5691), + [aux_sym__val_number_token1] = ACTIONS(5693), + [aux_sym__val_number_token2] = ACTIONS(5693), + [aux_sym__val_number_token3] = ACTIONS(5693), + [aux_sym__val_number_token4] = ACTIONS(5693), + [aux_sym__val_number_token5] = ACTIONS(5693), + [aux_sym__val_number_token6] = ACTIONS(5693), + [anon_sym_0b] = ACTIONS(2695), + [anon_sym_0o] = ACTIONS(2697), + [anon_sym_0x] = ACTIONS(2697), + [sym_val_date] = ACTIONS(5695), + [anon_sym_DQUOTE] = ACTIONS(5697), + [sym__str_single_quotes] = ACTIONS(5699), + [sym__str_back_ticks] = ACTIONS(5699), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5703), [anon_sym_POUND] = ACTIONS(113), }, - [1813] = { - [sym_comment] = STATE(1813), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_alias] = ACTIONS(1190), - [anon_sym_let] = ACTIONS(1190), - [anon_sym_let_DASHenv] = ACTIONS(1190), - [anon_sym_mut] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1190), - [anon_sym_SEMI] = ACTIONS(1190), - [sym_cmd_identifier] = ACTIONS(1190), - [anon_sym_LF] = ACTIONS(1192), - [anon_sym_def] = ACTIONS(1190), - [anon_sym_export_DASHenv] = ACTIONS(1190), - [anon_sym_extern] = ACTIONS(1190), - [anon_sym_module] = ACTIONS(1190), - [anon_sym_use] = ACTIONS(1190), - [anon_sym_LBRACK] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(1190), - [anon_sym_RPAREN] = ACTIONS(1190), - [anon_sym_DOLLAR] = ACTIONS(1190), - [anon_sym_error] = ACTIONS(1190), - [anon_sym_DASH_DASH] = ACTIONS(1190), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_loop] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [anon_sym_do] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_match] = ACTIONS(1190), - [anon_sym_LBRACE] = ACTIONS(1190), - [anon_sym_RBRACE] = ACTIONS(1190), - [anon_sym_DOT_DOT] = ACTIONS(1190), - [anon_sym_try] = ACTIONS(1190), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_source] = ACTIONS(1190), - [anon_sym_source_DASHenv] = ACTIONS(1190), - [anon_sym_register] = ACTIONS(1190), - [anon_sym_hide] = ACTIONS(1190), - [anon_sym_hide_DASHenv] = ACTIONS(1190), - [anon_sym_overlay] = ACTIONS(1190), - [anon_sym_as] = ACTIONS(1190), - [anon_sym_where] = ACTIONS(1190), - [anon_sym_not] = ACTIONS(1190), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1190), - [anon_sym_DOT_DOT_LT] = ACTIONS(1190), - [anon_sym_null] = ACTIONS(1190), - [anon_sym_true] = ACTIONS(1190), - [anon_sym_false] = ACTIONS(1190), - [aux_sym__val_number_decimal_token1] = ACTIONS(1190), - [aux_sym__val_number_decimal_token2] = ACTIONS(1190), - [anon_sym_DOT2] = ACTIONS(1190), - [aux_sym__val_number_decimal_token3] = ACTIONS(1190), - [aux_sym__val_number_token1] = ACTIONS(1190), - [aux_sym__val_number_token2] = ACTIONS(1190), - [aux_sym__val_number_token3] = ACTIONS(1190), - [aux_sym__val_number_token4] = ACTIONS(1190), - [aux_sym__val_number_token5] = ACTIONS(1190), - [aux_sym__val_number_token6] = ACTIONS(1190), - [anon_sym_0b] = ACTIONS(1190), - [anon_sym_0o] = ACTIONS(1190), - [anon_sym_0x] = ACTIONS(1190), - [sym_val_date] = ACTIONS(1190), - [anon_sym_DQUOTE] = ACTIONS(1190), - [sym__str_single_quotes] = ACTIONS(1190), - [sym__str_back_ticks] = ACTIONS(1190), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1190), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1190), - [anon_sym_POUND] = ACTIONS(113), + [2024] = { + [sym_comment] = STATE(2024), + [anon_sym_LBRACK] = ACTIONS(1091), + [anon_sym_COMMA] = ACTIONS(1091), + [anon_sym_RBRACK] = ACTIONS(1091), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_DOLLAR] = ACTIONS(1091), + [anon_sym_GT] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1089), + [anon_sym_in] = ACTIONS(1089), + [anon_sym_LBRACE] = ACTIONS(1091), + [anon_sym_DOT_DOT] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_STAR_STAR] = ACTIONS(1091), + [anon_sym_PLUS_PLUS] = ACTIONS(1091), + [anon_sym_SLASH] = ACTIONS(1089), + [anon_sym_mod] = ACTIONS(1091), + [anon_sym_SLASH_SLASH] = ACTIONS(1091), + [anon_sym_PLUS] = ACTIONS(1089), + [anon_sym_bit_DASHshl] = ACTIONS(1091), + [anon_sym_bit_DASHshr] = ACTIONS(1091), + [anon_sym_EQ_EQ] = ACTIONS(1091), + [anon_sym_BANG_EQ] = ACTIONS(1091), + [anon_sym_LT2] = ACTIONS(1089), + [anon_sym_LT_EQ] = ACTIONS(1091), + [anon_sym_GT_EQ] = ACTIONS(1091), + [anon_sym_not_DASHin] = ACTIONS(1091), + [anon_sym_starts_DASHwith] = ACTIONS(1091), + [anon_sym_ends_DASHwith] = ACTIONS(1091), + [anon_sym_EQ_TILDE] = ACTIONS(1091), + [anon_sym_BANG_TILDE] = ACTIONS(1091), + [anon_sym_bit_DASHand] = ACTIONS(1091), + [anon_sym_bit_DASHxor] = ACTIONS(1091), + [anon_sym_bit_DASHor] = ACTIONS(1091), + [anon_sym_and] = ACTIONS(1091), + [anon_sym_xor] = ACTIONS(1091), + [anon_sym_or] = ACTIONS(1091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1091), + [anon_sym_DOT_DOT_LT] = ACTIONS(1091), + [anon_sym_null] = ACTIONS(1091), + [anon_sym_true] = ACTIONS(1091), + [anon_sym_false] = ACTIONS(1091), + [aux_sym__val_number_decimal_token1] = ACTIONS(1089), + [aux_sym__val_number_decimal_token2] = ACTIONS(1091), + [anon_sym_DOT2] = ACTIONS(1089), + [aux_sym__val_number_decimal_token3] = ACTIONS(1091), + [aux_sym__val_number_token1] = ACTIONS(1091), + [aux_sym__val_number_token2] = ACTIONS(1091), + [aux_sym__val_number_token3] = ACTIONS(1091), + [aux_sym__val_number_token4] = ACTIONS(1091), + [aux_sym__val_number_token5] = ACTIONS(1091), + [aux_sym__val_number_token6] = ACTIONS(1091), + [anon_sym_0b] = ACTIONS(1089), + [anon_sym_0o] = ACTIONS(1089), + [anon_sym_0x] = ACTIONS(1089), + [sym_val_date] = ACTIONS(1091), + [anon_sym_DQUOTE] = ACTIONS(1091), + [sym__str_single_quotes] = ACTIONS(1091), + [sym__str_back_ticks] = ACTIONS(1091), + [anon_sym_err_GT] = ACTIONS(1091), + [anon_sym_out_GT] = ACTIONS(1091), + [anon_sym_e_GT] = ACTIONS(1091), + [anon_sym_o_GT] = ACTIONS(1091), + [anon_sym_err_PLUSout_GT] = ACTIONS(1091), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1091), + [anon_sym_o_PLUSe_GT] = ACTIONS(1091), + [anon_sym_e_PLUSo_GT] = ACTIONS(1091), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1089), + [anon_sym_POUND] = ACTIONS(3), }, - [1814] = { - [sym_comment] = STATE(1814), - [anon_sym_export] = ACTIONS(1316), - [anon_sym_alias] = ACTIONS(1316), - [anon_sym_let] = ACTIONS(1316), - [anon_sym_let_DASHenv] = ACTIONS(1316), - [anon_sym_mut] = ACTIONS(1316), - [anon_sym_const] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1316), - [sym_cmd_identifier] = ACTIONS(1316), - [anon_sym_LF] = ACTIONS(1318), - [anon_sym_def] = ACTIONS(1316), - [anon_sym_export_DASHenv] = ACTIONS(1316), - [anon_sym_extern] = ACTIONS(1316), - [anon_sym_module] = ACTIONS(1316), - [anon_sym_use] = ACTIONS(1316), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1316), - [anon_sym_RPAREN] = ACTIONS(1316), - [anon_sym_DOLLAR] = ACTIONS(1316), - [anon_sym_error] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_break] = ACTIONS(1316), - [anon_sym_continue] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1316), - [anon_sym_loop] = ACTIONS(1316), - [anon_sym_while] = ACTIONS(1316), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_if] = ACTIONS(1316), - [anon_sym_match] = ACTIONS(1316), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_RBRACE] = ACTIONS(1316), - [anon_sym_DOT_DOT] = ACTIONS(1316), - [anon_sym_try] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1316), - [anon_sym_source] = ACTIONS(1316), - [anon_sym_source_DASHenv] = ACTIONS(1316), - [anon_sym_register] = ACTIONS(1316), - [anon_sym_hide] = ACTIONS(1316), - [anon_sym_hide_DASHenv] = ACTIONS(1316), - [anon_sym_overlay] = ACTIONS(1316), - [anon_sym_as] = ACTIONS(1316), - [anon_sym_where] = ACTIONS(1316), - [anon_sym_not] = ACTIONS(1316), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1316), - [anon_sym_DOT_DOT_LT] = ACTIONS(1316), - [anon_sym_null] = ACTIONS(1316), - [anon_sym_true] = ACTIONS(1316), - [anon_sym_false] = ACTIONS(1316), - [aux_sym__val_number_decimal_token1] = ACTIONS(1316), - [aux_sym__val_number_decimal_token2] = ACTIONS(1316), - [anon_sym_DOT2] = ACTIONS(1316), - [aux_sym__val_number_decimal_token3] = ACTIONS(1316), - [aux_sym__val_number_token1] = ACTIONS(1316), - [aux_sym__val_number_token2] = ACTIONS(1316), - [aux_sym__val_number_token3] = ACTIONS(1316), - [aux_sym__val_number_token4] = ACTIONS(1316), - [aux_sym__val_number_token5] = ACTIONS(1316), - [aux_sym__val_number_token6] = ACTIONS(1316), - [anon_sym_0b] = ACTIONS(1316), - [anon_sym_0o] = ACTIONS(1316), - [anon_sym_0x] = ACTIONS(1316), - [sym_val_date] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1316), - [sym__str_single_quotes] = ACTIONS(1316), - [sym__str_back_ticks] = ACTIONS(1316), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1316), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(113), + [2025] = { + [sym_comment] = STATE(2025), + [anon_sym_LBRACK] = ACTIONS(1181), + [anon_sym_COMMA] = ACTIONS(1181), + [anon_sym_RBRACK] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_DOLLAR] = ACTIONS(1181), + [anon_sym_GT] = ACTIONS(5711), + [anon_sym_DASH_DASH] = ACTIONS(1181), + [anon_sym_DASH] = ACTIONS(5713), + [anon_sym_in] = ACTIONS(5715), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(5705), + [anon_sym_STAR_STAR] = ACTIONS(5707), + [anon_sym_PLUS_PLUS] = ACTIONS(5707), + [anon_sym_SLASH] = ACTIONS(5705), + [anon_sym_mod] = ACTIONS(5709), + [anon_sym_SLASH_SLASH] = ACTIONS(5709), + [anon_sym_PLUS] = ACTIONS(5713), + [anon_sym_bit_DASHshl] = ACTIONS(5717), + [anon_sym_bit_DASHshr] = ACTIONS(5717), + [anon_sym_EQ_EQ] = ACTIONS(5719), + [anon_sym_BANG_EQ] = ACTIONS(5719), + [anon_sym_LT2] = ACTIONS(5711), + [anon_sym_LT_EQ] = ACTIONS(5719), + [anon_sym_GT_EQ] = ACTIONS(5719), + [anon_sym_not_DASHin] = ACTIONS(5721), + [anon_sym_starts_DASHwith] = ACTIONS(5721), + [anon_sym_ends_DASHwith] = ACTIONS(5721), + [anon_sym_EQ_TILDE] = ACTIONS(5723), + [anon_sym_BANG_TILDE] = ACTIONS(5723), + [anon_sym_bit_DASHand] = ACTIONS(5729), + [anon_sym_bit_DASHxor] = ACTIONS(5767), + [anon_sym_bit_DASHor] = ACTIONS(1181), + [anon_sym_and] = ACTIONS(1181), + [anon_sym_xor] = ACTIONS(1181), + [anon_sym_or] = ACTIONS(1181), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1181), + [anon_sym_DOT_DOT_LT] = ACTIONS(1181), + [anon_sym_null] = ACTIONS(1181), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1181), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1181), + [aux_sym__val_number_token1] = ACTIONS(1181), + [aux_sym__val_number_token2] = ACTIONS(1181), + [aux_sym__val_number_token3] = ACTIONS(1181), + [aux_sym__val_number_token4] = ACTIONS(1181), + [aux_sym__val_number_token5] = ACTIONS(1181), + [aux_sym__val_number_token6] = ACTIONS(1181), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym__str_single_quotes] = ACTIONS(1181), + [sym__str_back_ticks] = ACTIONS(1181), + [anon_sym_err_GT] = ACTIONS(1181), + [anon_sym_out_GT] = ACTIONS(1181), + [anon_sym_e_GT] = ACTIONS(1181), + [anon_sym_o_GT] = ACTIONS(1181), + [anon_sym_err_PLUSout_GT] = ACTIONS(1181), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1181), + [anon_sym_o_PLUSe_GT] = ACTIONS(1181), + [anon_sym_e_PLUSo_GT] = ACTIONS(1181), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(3), }, - [1815] = { - [sym_comment] = STATE(1815), - [anon_sym_export] = ACTIONS(1320), - [anon_sym_alias] = ACTIONS(1320), - [anon_sym_let] = ACTIONS(1320), - [anon_sym_let_DASHenv] = ACTIONS(1320), - [anon_sym_mut] = ACTIONS(1320), - [anon_sym_const] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [sym_cmd_identifier] = ACTIONS(1320), - [anon_sym_LF] = ACTIONS(1322), - [anon_sym_def] = ACTIONS(1320), - [anon_sym_export_DASHenv] = ACTIONS(1320), - [anon_sym_extern] = ACTIONS(1320), - [anon_sym_module] = ACTIONS(1320), - [anon_sym_use] = ACTIONS(1320), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_LPAREN] = ACTIONS(1320), - [anon_sym_RPAREN] = ACTIONS(1320), - [anon_sym_DOLLAR] = ACTIONS(1320), - [anon_sym_error] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1320), - [anon_sym_continue] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_loop] = ACTIONS(1320), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_do] = ACTIONS(1320), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_match] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_RBRACE] = ACTIONS(1320), - [anon_sym_DOT_DOT] = ACTIONS(1320), - [anon_sym_try] = ACTIONS(1320), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_source] = ACTIONS(1320), - [anon_sym_source_DASHenv] = ACTIONS(1320), - [anon_sym_register] = ACTIONS(1320), - [anon_sym_hide] = ACTIONS(1320), - [anon_sym_hide_DASHenv] = ACTIONS(1320), - [anon_sym_overlay] = ACTIONS(1320), - [anon_sym_as] = ACTIONS(1320), - [anon_sym_where] = ACTIONS(1320), - [anon_sym_not] = ACTIONS(1320), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1320), - [anon_sym_DOT_DOT_LT] = ACTIONS(1320), - [anon_sym_null] = ACTIONS(1320), - [anon_sym_true] = ACTIONS(1320), - [anon_sym_false] = ACTIONS(1320), - [aux_sym__val_number_decimal_token1] = ACTIONS(1320), - [aux_sym__val_number_decimal_token2] = ACTIONS(1320), - [anon_sym_DOT2] = ACTIONS(1320), - [aux_sym__val_number_decimal_token3] = ACTIONS(1320), - [aux_sym__val_number_token1] = ACTIONS(1320), - [aux_sym__val_number_token2] = ACTIONS(1320), - [aux_sym__val_number_token3] = ACTIONS(1320), - [aux_sym__val_number_token4] = ACTIONS(1320), - [aux_sym__val_number_token5] = ACTIONS(1320), - [aux_sym__val_number_token6] = ACTIONS(1320), - [anon_sym_0b] = ACTIONS(1320), - [anon_sym_0o] = ACTIONS(1320), - [anon_sym_0x] = ACTIONS(1320), - [sym_val_date] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1320), - [sym__str_single_quotes] = ACTIONS(1320), - [sym__str_back_ticks] = ACTIONS(1320), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1320), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1320), - [anon_sym_CARET] = ACTIONS(1320), + [2026] = { + [sym_cell_path] = STATE(2569), + [sym_path] = STATE(2095), + [sym_comment] = STATE(2026), + [anon_sym_SEMI] = ACTIONS(1101), + [anon_sym_LF] = ACTIONS(1103), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_RPAREN] = ACTIONS(1101), + [anon_sym_PIPE] = ACTIONS(1101), + [anon_sym_DOLLAR] = ACTIONS(1101), + [anon_sym_GT] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_in] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_RBRACE] = ACTIONS(1101), + [anon_sym_DOT_DOT] = ACTIONS(1101), + [anon_sym_STAR] = ACTIONS(1101), + [anon_sym_STAR_STAR] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_SLASH] = ACTIONS(1101), + [anon_sym_mod] = ACTIONS(1101), + [anon_sym_SLASH_SLASH] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_bit_DASHshl] = ACTIONS(1101), + [anon_sym_bit_DASHshr] = ACTIONS(1101), + [anon_sym_EQ_EQ] = ACTIONS(1101), + [anon_sym_BANG_EQ] = ACTIONS(1101), + [anon_sym_LT2] = ACTIONS(1101), + [anon_sym_LT_EQ] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1101), + [anon_sym_not_DASHin] = ACTIONS(1101), + [anon_sym_starts_DASHwith] = ACTIONS(1101), + [anon_sym_ends_DASHwith] = ACTIONS(1101), + [anon_sym_EQ_TILDE] = ACTIONS(1101), + [anon_sym_BANG_TILDE] = ACTIONS(1101), + [anon_sym_bit_DASHand] = ACTIONS(1101), + [anon_sym_bit_DASHxor] = ACTIONS(1101), + [anon_sym_bit_DASHor] = ACTIONS(1101), + [anon_sym_and] = ACTIONS(1101), + [anon_sym_xor] = ACTIONS(1101), + [anon_sym_or] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_DOT] = ACTIONS(5731), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1101), + [anon_sym_DOT_DOT_LT] = ACTIONS(1101), + [anon_sym_null] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(1101), + [anon_sym_false] = ACTIONS(1101), + [aux_sym__val_number_decimal_token1] = ACTIONS(1101), + [aux_sym__val_number_decimal_token2] = ACTIONS(1101), + [anon_sym_DOT2] = ACTIONS(1101), + [aux_sym__val_number_decimal_token3] = ACTIONS(1101), + [aux_sym__val_number_token1] = ACTIONS(1101), + [aux_sym__val_number_token2] = ACTIONS(1101), + [aux_sym__val_number_token3] = ACTIONS(1101), + [aux_sym__val_number_token4] = ACTIONS(1101), + [aux_sym__val_number_token5] = ACTIONS(1101), + [aux_sym__val_number_token6] = ACTIONS(1101), + [anon_sym_0b] = ACTIONS(1101), + [anon_sym_0o] = ACTIONS(1101), + [anon_sym_0x] = ACTIONS(1101), + [sym_val_date] = ACTIONS(1101), + [anon_sym_DQUOTE] = ACTIONS(1101), + [sym__str_single_quotes] = ACTIONS(1101), + [sym__str_back_ticks] = ACTIONS(1101), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1101), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1101), [anon_sym_POUND] = ACTIONS(113), }, - [1816] = { - [sym_comment] = STATE(1816), - [anon_sym_export] = ACTIONS(959), - [anon_sym_alias] = ACTIONS(959), - [anon_sym_let] = ACTIONS(959), - [anon_sym_let_DASHenv] = ACTIONS(959), - [anon_sym_mut] = ACTIONS(959), - [anon_sym_const] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(959), - [sym_cmd_identifier] = ACTIONS(959), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_def] = ACTIONS(959), - [anon_sym_export_DASHenv] = ACTIONS(959), - [anon_sym_extern] = ACTIONS(959), - [anon_sym_module] = ACTIONS(959), - [anon_sym_use] = ACTIONS(959), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_RPAREN] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_error] = ACTIONS(959), - [anon_sym_DASH_DASH] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_break] = ACTIONS(959), - [anon_sym_continue] = ACTIONS(959), - [anon_sym_for] = ACTIONS(959), - [anon_sym_loop] = ACTIONS(959), - [anon_sym_while] = ACTIONS(959), - [anon_sym_do] = ACTIONS(959), - [anon_sym_if] = ACTIONS(959), - [anon_sym_match] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_RBRACE] = ACTIONS(959), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_try] = ACTIONS(959), - [anon_sym_return] = ACTIONS(959), - [anon_sym_source] = ACTIONS(959), - [anon_sym_source_DASHenv] = ACTIONS(959), - [anon_sym_register] = ACTIONS(959), - [anon_sym_hide] = ACTIONS(959), - [anon_sym_hide_DASHenv] = ACTIONS(959), - [anon_sym_overlay] = ACTIONS(959), - [anon_sym_as] = ACTIONS(959), - [anon_sym_where] = ACTIONS(959), - [anon_sym_not] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_DOT_DOT_LT] = ACTIONS(959), - [anon_sym_null] = ACTIONS(959), - [anon_sym_true] = ACTIONS(959), - [anon_sym_false] = ACTIONS(959), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(959), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(959), - [aux_sym__val_number_token1] = ACTIONS(959), - [aux_sym__val_number_token2] = ACTIONS(959), - [aux_sym__val_number_token3] = ACTIONS(959), - [aux_sym__val_number_token4] = ACTIONS(959), - [aux_sym__val_number_token5] = ACTIONS(959), - [aux_sym__val_number_token6] = ACTIONS(959), - [anon_sym_0b] = ACTIONS(959), - [anon_sym_0o] = ACTIONS(959), - [anon_sym_0x] = ACTIONS(959), - [sym_val_date] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [sym__str_single_quotes] = ACTIONS(959), - [sym__str_back_ticks] = ACTIONS(959), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(959), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(959), - [anon_sym_CARET] = ACTIONS(959), + [2027] = { + [sym_comment] = STATE(2027), + [ts_builtin_sym_end] = ACTIONS(1167), + [anon_sym_export] = ACTIONS(1165), + [anon_sym_alias] = ACTIONS(1165), + [anon_sym_let] = ACTIONS(1165), + [anon_sym_let_DASHenv] = ACTIONS(1165), + [anon_sym_mut] = ACTIONS(1165), + [anon_sym_const] = ACTIONS(1165), + [anon_sym_SEMI] = ACTIONS(1165), + [sym_cmd_identifier] = ACTIONS(1165), + [anon_sym_LF] = ACTIONS(1167), + [anon_sym_def] = ACTIONS(1165), + [anon_sym_export_DASHenv] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1165), + [anon_sym_module] = ACTIONS(1165), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_LPAREN] = ACTIONS(1165), + [anon_sym_DOLLAR] = ACTIONS(1165), + [anon_sym_error] = ACTIONS(1165), + [anon_sym_DASH_DASH] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_break] = ACTIONS(1165), + [anon_sym_continue] = ACTIONS(1165), + [anon_sym_for] = ACTIONS(1165), + [anon_sym_loop] = ACTIONS(1165), + [anon_sym_while] = ACTIONS(1165), + [anon_sym_do] = ACTIONS(1165), + [anon_sym_if] = ACTIONS(1165), + [anon_sym_match] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(1165), + [anon_sym_DOT_DOT] = ACTIONS(1165), + [anon_sym_try] = ACTIONS(1165), + [anon_sym_return] = ACTIONS(1165), + [anon_sym_source] = ACTIONS(1165), + [anon_sym_source_DASHenv] = ACTIONS(1165), + [anon_sym_register] = ACTIONS(1165), + [anon_sym_hide] = ACTIONS(1165), + [anon_sym_hide_DASHenv] = ACTIONS(1165), + [anon_sym_overlay] = ACTIONS(1165), + [anon_sym_as] = ACTIONS(1165), + [anon_sym_where] = ACTIONS(1165), + [anon_sym_not] = ACTIONS(1165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1165), + [anon_sym_DOT_DOT_LT] = ACTIONS(1165), + [anon_sym_null] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1165), + [anon_sym_false] = ACTIONS(1165), + [aux_sym__val_number_decimal_token1] = ACTIONS(1165), + [aux_sym__val_number_decimal_token2] = ACTIONS(1165), + [anon_sym_DOT2] = ACTIONS(1165), + [aux_sym__val_number_decimal_token3] = ACTIONS(1165), + [aux_sym__val_number_token1] = ACTIONS(1165), + [aux_sym__val_number_token2] = ACTIONS(1165), + [aux_sym__val_number_token3] = ACTIONS(1165), + [aux_sym__val_number_token4] = ACTIONS(1165), + [aux_sym__val_number_token5] = ACTIONS(1165), + [aux_sym__val_number_token6] = ACTIONS(1165), + [anon_sym_0b] = ACTIONS(1165), + [anon_sym_0o] = ACTIONS(1165), + [anon_sym_0x] = ACTIONS(1165), + [sym_val_date] = ACTIONS(1165), + [anon_sym_DQUOTE] = ACTIONS(1165), + [sym__str_single_quotes] = ACTIONS(1165), + [sym__str_back_ticks] = ACTIONS(1165), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1165), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1165), + [anon_sym_CARET] = ACTIONS(1165), [anon_sym_POUND] = ACTIONS(113), }, - [1817] = { - [sym_comment] = STATE(1817), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_alias] = ACTIONS(1406), - [anon_sym_let] = ACTIONS(1406), - [anon_sym_let_DASHenv] = ACTIONS(1406), - [anon_sym_mut] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_SEMI] = ACTIONS(1406), - [sym_cmd_identifier] = ACTIONS(1406), - [anon_sym_LF] = ACTIONS(1408), - [anon_sym_def] = ACTIONS(1406), - [anon_sym_export_DASHenv] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_use] = ACTIONS(1406), - [anon_sym_LBRACK] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1406), - [anon_sym_RPAREN] = ACTIONS(1406), - [anon_sym_DOLLAR] = ACTIONS(1406), - [anon_sym_error] = ACTIONS(1406), - [anon_sym_DASH_DASH] = ACTIONS(1406), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_loop] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_match] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_RBRACE] = ACTIONS(1406), - [anon_sym_DOT_DOT] = ACTIONS(1406), - [anon_sym_try] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_source] = ACTIONS(1406), - [anon_sym_source_DASHenv] = ACTIONS(1406), - [anon_sym_register] = ACTIONS(1406), - [anon_sym_hide] = ACTIONS(1406), - [anon_sym_hide_DASHenv] = ACTIONS(1406), - [anon_sym_overlay] = ACTIONS(1406), - [anon_sym_as] = ACTIONS(1406), - [anon_sym_where] = ACTIONS(1406), - [anon_sym_not] = ACTIONS(1406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1406), - [anon_sym_DOT_DOT_LT] = ACTIONS(1406), - [anon_sym_null] = ACTIONS(1406), - [anon_sym_true] = ACTIONS(1406), - [anon_sym_false] = ACTIONS(1406), - [aux_sym__val_number_decimal_token1] = ACTIONS(1406), - [aux_sym__val_number_decimal_token2] = ACTIONS(1406), - [anon_sym_DOT2] = ACTIONS(1406), - [aux_sym__val_number_decimal_token3] = ACTIONS(1406), - [aux_sym__val_number_token1] = ACTIONS(1406), - [aux_sym__val_number_token2] = ACTIONS(1406), - [aux_sym__val_number_token3] = ACTIONS(1406), - [aux_sym__val_number_token4] = ACTIONS(1406), - [aux_sym__val_number_token5] = ACTIONS(1406), - [aux_sym__val_number_token6] = ACTIONS(1406), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1406), - [anon_sym_0x] = ACTIONS(1406), - [sym_val_date] = ACTIONS(1406), - [anon_sym_DQUOTE] = ACTIONS(1406), - [sym__str_single_quotes] = ACTIONS(1406), - [sym__str_back_ticks] = ACTIONS(1406), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1406), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1406), - [anon_sym_CARET] = ACTIONS(1406), - [anon_sym_POUND] = ACTIONS(113), + [2028] = { + [sym_comment] = STATE(2028), + [anon_sym_LBRACK] = ACTIONS(1177), + [anon_sym_COMMA] = ACTIONS(1177), + [anon_sym_RBRACK] = ACTIONS(1177), + [anon_sym_LPAREN] = ACTIONS(1177), + [anon_sym_DOLLAR] = ACTIONS(1177), + [anon_sym_GT] = ACTIONS(1175), + [anon_sym_DASH_DASH] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1175), + [anon_sym_in] = ACTIONS(1175), + [anon_sym_LBRACE] = ACTIONS(1177), + [anon_sym_DOT_DOT] = ACTIONS(1175), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_STAR_STAR] = ACTIONS(1177), + [anon_sym_PLUS_PLUS] = ACTIONS(1177), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_mod] = ACTIONS(1177), + [anon_sym_SLASH_SLASH] = ACTIONS(1177), + [anon_sym_PLUS] = ACTIONS(1175), + [anon_sym_bit_DASHshl] = ACTIONS(1177), + [anon_sym_bit_DASHshr] = ACTIONS(1177), + [anon_sym_EQ_EQ] = ACTIONS(1177), + [anon_sym_BANG_EQ] = ACTIONS(1177), + [anon_sym_LT2] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1177), + [anon_sym_GT_EQ] = ACTIONS(1177), + [anon_sym_not_DASHin] = ACTIONS(1177), + [anon_sym_starts_DASHwith] = ACTIONS(1177), + [anon_sym_ends_DASHwith] = ACTIONS(1177), + [anon_sym_EQ_TILDE] = ACTIONS(1177), + [anon_sym_BANG_TILDE] = ACTIONS(1177), + [anon_sym_bit_DASHand] = ACTIONS(1177), + [anon_sym_bit_DASHxor] = ACTIONS(1177), + [anon_sym_bit_DASHor] = ACTIONS(1177), + [anon_sym_and] = ACTIONS(1177), + [anon_sym_xor] = ACTIONS(1177), + [anon_sym_or] = ACTIONS(1177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1177), + [anon_sym_DOT_DOT_LT] = ACTIONS(1177), + [anon_sym_null] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(1177), + [anon_sym_false] = ACTIONS(1177), + [aux_sym__val_number_decimal_token1] = ACTIONS(1175), + [aux_sym__val_number_decimal_token2] = ACTIONS(1177), + [anon_sym_DOT2] = ACTIONS(1175), + [aux_sym__val_number_decimal_token3] = ACTIONS(1177), + [aux_sym__val_number_token1] = ACTIONS(1177), + [aux_sym__val_number_token2] = ACTIONS(1177), + [aux_sym__val_number_token3] = ACTIONS(1177), + [aux_sym__val_number_token4] = ACTIONS(1177), + [aux_sym__val_number_token5] = ACTIONS(1177), + [aux_sym__val_number_token6] = ACTIONS(1177), + [anon_sym_0b] = ACTIONS(1175), + [anon_sym_0o] = ACTIONS(1175), + [anon_sym_0x] = ACTIONS(1175), + [sym_val_date] = ACTIONS(1177), + [anon_sym_DQUOTE] = ACTIONS(1177), + [sym__str_single_quotes] = ACTIONS(1177), + [sym__str_back_ticks] = ACTIONS(1177), + [anon_sym_err_GT] = ACTIONS(1177), + [anon_sym_out_GT] = ACTIONS(1177), + [anon_sym_e_GT] = ACTIONS(1177), + [anon_sym_o_GT] = ACTIONS(1177), + [anon_sym_err_PLUSout_GT] = ACTIONS(1177), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1177), + [anon_sym_o_PLUSe_GT] = ACTIONS(1177), + [anon_sym_e_PLUSo_GT] = ACTIONS(1177), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1175), + [anon_sym_POUND] = ACTIONS(3), }, - [1818] = { - [sym_comment] = STATE(1818), - [anon_sym_LBRACK] = ACTIONS(1354), - [anon_sym_COMMA] = ACTIONS(1354), - [anon_sym_RBRACK] = ACTIONS(1354), - [anon_sym_LPAREN] = ACTIONS(1354), - [anon_sym_DOLLAR] = ACTIONS(1354), - [anon_sym_GT] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_in] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_DOT_DOT] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_STAR_STAR] = ACTIONS(1354), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [anon_sym_SLASH] = ACTIONS(1354), - [anon_sym_mod] = ACTIONS(1354), - [anon_sym_SLASH_SLASH] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_bit_DASHshl] = ACTIONS(1354), - [anon_sym_bit_DASHshr] = ACTIONS(1354), - [anon_sym_EQ_EQ] = ACTIONS(1354), - [anon_sym_BANG_EQ] = ACTIONS(1354), - [anon_sym_LT2] = ACTIONS(1354), - [anon_sym_LT_EQ] = ACTIONS(1354), - [anon_sym_GT_EQ] = ACTIONS(1354), - [anon_sym_not_DASHin] = ACTIONS(1354), - [anon_sym_starts_DASHwith] = ACTIONS(1354), - [anon_sym_ends_DASHwith] = ACTIONS(1354), - [anon_sym_EQ_TILDE] = ACTIONS(1354), - [anon_sym_BANG_TILDE] = ACTIONS(1354), - [anon_sym_bit_DASHand] = ACTIONS(1354), - [anon_sym_bit_DASHxor] = ACTIONS(1354), - [anon_sym_bit_DASHor] = ACTIONS(1354), - [anon_sym_and] = ACTIONS(1354), - [anon_sym_xor] = ACTIONS(1354), - [anon_sym_or] = ACTIONS(1354), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1354), - [anon_sym_DOT_DOT_LT] = ACTIONS(1354), - [anon_sym_null] = ACTIONS(1354), - [anon_sym_true] = ACTIONS(1354), - [anon_sym_false] = ACTIONS(1354), - [aux_sym__val_number_decimal_token1] = ACTIONS(1354), - [aux_sym__val_number_decimal_token2] = ACTIONS(1354), - [anon_sym_DOT2] = ACTIONS(1354), - [aux_sym__val_number_decimal_token3] = ACTIONS(1354), - [aux_sym__val_number_token1] = ACTIONS(1354), - [aux_sym__val_number_token2] = ACTIONS(1354), - [aux_sym__val_number_token3] = ACTIONS(1354), - [aux_sym__val_number_token4] = ACTIONS(1354), - [aux_sym__val_number_token5] = ACTIONS(1354), - [aux_sym__val_number_token6] = ACTIONS(1354), - [anon_sym_0b] = ACTIONS(1354), - [anon_sym_0o] = ACTIONS(1354), - [anon_sym_0x] = ACTIONS(1354), - [sym_val_date] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1354), - [sym__str_single_quotes] = ACTIONS(1354), - [sym__str_back_ticks] = ACTIONS(1354), - [sym__entry_separator] = ACTIONS(1356), - [anon_sym_err_GT] = ACTIONS(1354), - [anon_sym_out_GT] = ACTIONS(1354), - [anon_sym_e_GT] = ACTIONS(1354), - [anon_sym_o_GT] = ACTIONS(1354), - [anon_sym_err_PLUSout_GT] = ACTIONS(1354), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1354), - [anon_sym_o_PLUSe_GT] = ACTIONS(1354), - [anon_sym_e_PLUSo_GT] = ACTIONS(1354), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1354), - [anon_sym_POUND] = ACTIONS(113), + [2029] = { + [sym_comment] = STATE(2029), + [anon_sym_LBRACK] = ACTIONS(1173), + [anon_sym_COMMA] = ACTIONS(1173), + [anon_sym_RBRACK] = ACTIONS(1173), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_DOLLAR] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1173), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1173), + [anon_sym_SLASH_SLASH] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1173), + [anon_sym_bit_DASHshr] = ACTIONS(1173), + [anon_sym_EQ_EQ] = ACTIONS(1173), + [anon_sym_BANG_EQ] = ACTIONS(1173), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1173), + [anon_sym_GT_EQ] = ACTIONS(1173), + [anon_sym_not_DASHin] = ACTIONS(1173), + [anon_sym_starts_DASHwith] = ACTIONS(1173), + [anon_sym_ends_DASHwith] = ACTIONS(1173), + [anon_sym_EQ_TILDE] = ACTIONS(1173), + [anon_sym_BANG_TILDE] = ACTIONS(1173), + [anon_sym_bit_DASHand] = ACTIONS(1173), + [anon_sym_bit_DASHxor] = ACTIONS(1173), + [anon_sym_bit_DASHor] = ACTIONS(1173), + [anon_sym_and] = ACTIONS(1173), + [anon_sym_xor] = ACTIONS(1173), + [anon_sym_or] = ACTIONS(1173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1173), + [anon_sym_DOT_DOT_LT] = ACTIONS(1173), + [anon_sym_null] = ACTIONS(1173), + [anon_sym_true] = ACTIONS(1173), + [anon_sym_false] = ACTIONS(1173), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1173), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1173), + [aux_sym__val_number_token1] = ACTIONS(1173), + [aux_sym__val_number_token2] = ACTIONS(1173), + [aux_sym__val_number_token3] = ACTIONS(1173), + [aux_sym__val_number_token4] = ACTIONS(1173), + [aux_sym__val_number_token5] = ACTIONS(1173), + [aux_sym__val_number_token6] = ACTIONS(1173), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym__str_single_quotes] = ACTIONS(1173), + [sym__str_back_ticks] = ACTIONS(1173), + [anon_sym_err_GT] = ACTIONS(1173), + [anon_sym_out_GT] = ACTIONS(1173), + [anon_sym_e_GT] = ACTIONS(1173), + [anon_sym_o_GT] = ACTIONS(1173), + [anon_sym_err_PLUSout_GT] = ACTIONS(1173), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1173), + [anon_sym_o_PLUSe_GT] = ACTIONS(1173), + [anon_sym_e_PLUSo_GT] = ACTIONS(1173), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(3), }, - [1819] = { - [sym_comment] = STATE(1819), - [anon_sym_export] = ACTIONS(1410), - [anon_sym_alias] = ACTIONS(1410), - [anon_sym_let] = ACTIONS(1410), - [anon_sym_let_DASHenv] = ACTIONS(1410), - [anon_sym_mut] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_SEMI] = ACTIONS(1410), - [sym_cmd_identifier] = ACTIONS(1410), - [anon_sym_LF] = ACTIONS(1412), - [anon_sym_def] = ACTIONS(1410), - [anon_sym_export_DASHenv] = ACTIONS(1410), - [anon_sym_extern] = ACTIONS(1410), - [anon_sym_module] = ACTIONS(1410), - [anon_sym_use] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1410), - [anon_sym_LPAREN] = ACTIONS(1410), - [anon_sym_RPAREN] = ACTIONS(1410), - [anon_sym_DOLLAR] = ACTIONS(1410), - [anon_sym_error] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_loop] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1410), - [anon_sym_RBRACE] = ACTIONS(1410), - [anon_sym_DOT_DOT] = ACTIONS(1410), - [anon_sym_try] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_source] = ACTIONS(1410), - [anon_sym_source_DASHenv] = ACTIONS(1410), - [anon_sym_register] = ACTIONS(1410), - [anon_sym_hide] = ACTIONS(1410), - [anon_sym_hide_DASHenv] = ACTIONS(1410), - [anon_sym_overlay] = ACTIONS(1410), - [anon_sym_as] = ACTIONS(1410), - [anon_sym_where] = ACTIONS(1410), - [anon_sym_not] = ACTIONS(1410), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1410), - [anon_sym_DOT_DOT_LT] = ACTIONS(1410), - [anon_sym_null] = ACTIONS(1410), - [anon_sym_true] = ACTIONS(1410), - [anon_sym_false] = ACTIONS(1410), - [aux_sym__val_number_decimal_token1] = ACTIONS(1410), - [aux_sym__val_number_decimal_token2] = ACTIONS(1410), - [anon_sym_DOT2] = ACTIONS(1410), - [aux_sym__val_number_decimal_token3] = ACTIONS(1410), - [aux_sym__val_number_token1] = ACTIONS(1410), - [aux_sym__val_number_token2] = ACTIONS(1410), - [aux_sym__val_number_token3] = ACTIONS(1410), - [aux_sym__val_number_token4] = ACTIONS(1410), - [aux_sym__val_number_token5] = ACTIONS(1410), - [aux_sym__val_number_token6] = ACTIONS(1410), - [anon_sym_0b] = ACTIONS(1410), - [anon_sym_0o] = ACTIONS(1410), - [anon_sym_0x] = ACTIONS(1410), - [sym_val_date] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1410), - [sym__str_single_quotes] = ACTIONS(1410), - [sym__str_back_ticks] = ACTIONS(1410), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1410), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1410), - [anon_sym_CARET] = ACTIONS(1410), + [2030] = { + [sym__expression] = STATE(7173), + [sym_expr_unary] = STATE(5677), + [sym__expr_unary_minus] = STATE(5679), + [sym_expr_binary] = STATE(5677), + [sym__expr_binary_expression] = STATE(6377), + [sym_expr_parenthesized] = STATE(4919), + [sym_val_range] = STATE(8295), + [sym__value] = STATE(5677), + [sym_val_nothing] = STATE(5612), + [sym_val_bool] = STATE(5612), + [sym_val_variable] = STATE(4867), + [sym__var] = STATE(4310), + [sym_val_number] = STATE(5612), + [sym__val_number_decimal] = STATE(4408), + [sym__val_number] = STATE(5661), + [sym_val_duration] = STATE(5612), + [sym_val_filesize] = STATE(5612), + [sym_val_binary] = STATE(5612), + [sym_val_string] = STATE(5612), + [sym__str_double_quotes] = STATE(5733), + [sym_val_interpolated] = STATE(5612), + [sym__inter_single_quotes] = STATE(5590), + [sym__inter_double_quotes] = STATE(5591), + [sym_val_list] = STATE(5612), + [sym_val_record] = STATE(5612), + [sym_val_table] = STATE(5612), + [sym_val_closure] = STATE(5612), + [sym__flag] = STATE(2116), + [sym_short_flag] = STATE(4939), + [sym_long_flag] = STATE(4939), + [sym_long_flag_equals_value] = STATE(4865), + [sym_comment] = STATE(2030), + [ts_builtin_sym_end] = ACTIONS(5355), + [anon_sym_SEMI] = ACTIONS(5353), + [anon_sym_LF] = ACTIONS(5355), + [anon_sym_LBRACK] = ACTIONS(5667), + [anon_sym_LPAREN] = ACTIONS(5669), + [anon_sym_PIPE] = ACTIONS(5353), + [anon_sym_DOLLAR] = ACTIONS(2667), + [anon_sym_DASH_DASH] = ACTIONS(5671), + [anon_sym_DASH] = ACTIONS(5673), + [anon_sym_LBRACE] = ACTIONS(5675), + [anon_sym_DOT_DOT] = ACTIONS(5677), + [anon_sym_not] = ACTIONS(5679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5681), + [anon_sym_DOT_DOT_LT] = ACTIONS(5681), + [anon_sym_null] = ACTIONS(5683), + [anon_sym_true] = ACTIONS(5685), + [anon_sym_false] = ACTIONS(5685), + [aux_sym__val_number_decimal_token1] = ACTIONS(5687), + [aux_sym__val_number_decimal_token2] = ACTIONS(5687), + [anon_sym_DOT2] = ACTIONS(5689), + [aux_sym__val_number_decimal_token3] = ACTIONS(5691), + [aux_sym__val_number_token1] = ACTIONS(5693), + [aux_sym__val_number_token2] = ACTIONS(5693), + [aux_sym__val_number_token3] = ACTIONS(5693), + [aux_sym__val_number_token4] = ACTIONS(5693), + [aux_sym__val_number_token5] = ACTIONS(5693), + [aux_sym__val_number_token6] = ACTIONS(5693), + [anon_sym_0b] = ACTIONS(2695), + [anon_sym_0o] = ACTIONS(2697), + [anon_sym_0x] = ACTIONS(2697), + [sym_val_date] = ACTIONS(5695), + [anon_sym_DQUOTE] = ACTIONS(5697), + [sym__str_single_quotes] = ACTIONS(5699), + [sym__str_back_ticks] = ACTIONS(5699), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5703), [anon_sym_POUND] = ACTIONS(113), }, - [1820] = { - [sym_comment] = STATE(1820), - [anon_sym_export] = ACTIONS(1286), - [anon_sym_alias] = ACTIONS(1286), - [anon_sym_let] = ACTIONS(1286), - [anon_sym_let_DASHenv] = ACTIONS(1286), - [anon_sym_mut] = ACTIONS(1286), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_SEMI] = ACTIONS(1286), - [sym_cmd_identifier] = ACTIONS(1286), - [anon_sym_LF] = ACTIONS(1288), - [anon_sym_def] = ACTIONS(1286), - [anon_sym_export_DASHenv] = ACTIONS(1286), - [anon_sym_extern] = ACTIONS(1286), - [anon_sym_module] = ACTIONS(1286), - [anon_sym_use] = ACTIONS(1286), - [anon_sym_LBRACK] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(1286), - [anon_sym_RPAREN] = ACTIONS(1286), - [anon_sym_DOLLAR] = ACTIONS(1286), - [anon_sym_error] = ACTIONS(1286), - [anon_sym_DASH_DASH] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1286), - [anon_sym_break] = ACTIONS(1286), - [anon_sym_continue] = ACTIONS(1286), - [anon_sym_for] = ACTIONS(1286), - [anon_sym_loop] = ACTIONS(1286), - [anon_sym_while] = ACTIONS(1286), - [anon_sym_do] = ACTIONS(1286), - [anon_sym_if] = ACTIONS(1286), - [anon_sym_match] = ACTIONS(1286), - [anon_sym_LBRACE] = ACTIONS(1286), - [anon_sym_RBRACE] = ACTIONS(1286), - [anon_sym_DOT_DOT] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(1286), - [anon_sym_return] = ACTIONS(1286), - [anon_sym_source] = ACTIONS(1286), - [anon_sym_source_DASHenv] = ACTIONS(1286), - [anon_sym_register] = ACTIONS(1286), - [anon_sym_hide] = ACTIONS(1286), - [anon_sym_hide_DASHenv] = ACTIONS(1286), - [anon_sym_overlay] = ACTIONS(1286), - [anon_sym_as] = ACTIONS(1286), - [anon_sym_where] = ACTIONS(1286), - [anon_sym_not] = ACTIONS(1286), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1286), - [anon_sym_DOT_DOT_LT] = ACTIONS(1286), - [anon_sym_null] = ACTIONS(1286), - [anon_sym_true] = ACTIONS(1286), - [anon_sym_false] = ACTIONS(1286), - [aux_sym__val_number_decimal_token1] = ACTIONS(1286), - [aux_sym__val_number_decimal_token2] = ACTIONS(1286), - [anon_sym_DOT2] = ACTIONS(1286), - [aux_sym__val_number_decimal_token3] = ACTIONS(1286), - [aux_sym__val_number_token1] = ACTIONS(1286), - [aux_sym__val_number_token2] = ACTIONS(1286), - [aux_sym__val_number_token3] = ACTIONS(1286), - [aux_sym__val_number_token4] = ACTIONS(1286), - [aux_sym__val_number_token5] = ACTIONS(1286), - [aux_sym__val_number_token6] = ACTIONS(1286), - [anon_sym_0b] = ACTIONS(1286), - [anon_sym_0o] = ACTIONS(1286), - [anon_sym_0x] = ACTIONS(1286), - [sym_val_date] = ACTIONS(1286), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym__str_single_quotes] = ACTIONS(1286), - [sym__str_back_ticks] = ACTIONS(1286), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1286), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1286), - [anon_sym_CARET] = ACTIONS(1286), + [2031] = { + [sym_comment] = STATE(2031), + [anon_sym_export] = ACTIONS(5769), + [anon_sym_alias] = ACTIONS(5769), + [anon_sym_let] = ACTIONS(5769), + [anon_sym_let_DASHenv] = ACTIONS(5769), + [anon_sym_mut] = ACTIONS(5769), + [anon_sym_const] = ACTIONS(5769), + [anon_sym_SEMI] = ACTIONS(5769), + [sym_cmd_identifier] = ACTIONS(5769), + [anon_sym_LF] = ACTIONS(5771), + [anon_sym_def] = ACTIONS(5769), + [anon_sym_export_DASHenv] = ACTIONS(5769), + [anon_sym_extern] = ACTIONS(5769), + [anon_sym_module] = ACTIONS(5769), + [anon_sym_use] = ACTIONS(5769), + [anon_sym_LBRACK] = ACTIONS(5769), + [anon_sym_LPAREN] = ACTIONS(5769), + [anon_sym_RPAREN] = ACTIONS(5769), + [anon_sym_DOLLAR] = ACTIONS(5769), + [anon_sym_error] = ACTIONS(5769), + [anon_sym_DASH] = ACTIONS(5769), + [anon_sym_break] = ACTIONS(5769), + [anon_sym_continue] = ACTIONS(5769), + [anon_sym_for] = ACTIONS(5769), + [anon_sym_loop] = ACTIONS(5769), + [anon_sym_while] = ACTIONS(5769), + [anon_sym_do] = ACTIONS(5769), + [anon_sym_if] = ACTIONS(5769), + [anon_sym_match] = ACTIONS(5769), + [anon_sym_LBRACE] = ACTIONS(5769), + [anon_sym_RBRACE] = ACTIONS(5769), + [anon_sym_DOT_DOT] = ACTIONS(5769), + [anon_sym_try] = ACTIONS(5769), + [anon_sym_return] = ACTIONS(5769), + [anon_sym_source] = ACTIONS(5769), + [anon_sym_source_DASHenv] = ACTIONS(5769), + [anon_sym_register] = ACTIONS(5769), + [anon_sym_hide] = ACTIONS(5769), + [anon_sym_hide_DASHenv] = ACTIONS(5769), + [anon_sym_overlay] = ACTIONS(5769), + [anon_sym_STAR] = ACTIONS(5769), + [anon_sym_where] = ACTIONS(5769), + [anon_sym_not] = ACTIONS(5769), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5769), + [anon_sym_DOT_DOT_LT] = ACTIONS(5769), + [anon_sym_null] = ACTIONS(5769), + [anon_sym_true] = ACTIONS(5769), + [anon_sym_false] = ACTIONS(5769), + [aux_sym__val_number_decimal_token1] = ACTIONS(5769), + [aux_sym__val_number_decimal_token2] = ACTIONS(5769), + [anon_sym_DOT2] = ACTIONS(5769), + [aux_sym__val_number_decimal_token3] = ACTIONS(5769), + [aux_sym__val_number_token1] = ACTIONS(5769), + [aux_sym__val_number_token2] = ACTIONS(5769), + [aux_sym__val_number_token3] = ACTIONS(5769), + [aux_sym__val_number_token4] = ACTIONS(5769), + [aux_sym__val_number_token5] = ACTIONS(5769), + [aux_sym__val_number_token6] = ACTIONS(5769), + [anon_sym_0b] = ACTIONS(5769), + [anon_sym_0o] = ACTIONS(5769), + [anon_sym_0x] = ACTIONS(5769), + [sym_val_date] = ACTIONS(5769), + [anon_sym_DQUOTE] = ACTIONS(5769), + [sym__str_single_quotes] = ACTIONS(5769), + [sym__str_back_ticks] = ACTIONS(5769), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5769), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5769), + [anon_sym_CARET] = ACTIONS(5769), [anon_sym_POUND] = ACTIONS(113), }, - [1821] = { - [sym_comment] = STATE(1821), - [anon_sym_LBRACK] = ACTIONS(1358), - [anon_sym_COMMA] = ACTIONS(1358), - [anon_sym_RBRACK] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1358), - [anon_sym_DOLLAR] = ACTIONS(1358), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_in] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_DOT_DOT] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_STAR_STAR] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_SLASH] = ACTIONS(1358), - [anon_sym_mod] = ACTIONS(1358), - [anon_sym_SLASH_SLASH] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_bit_DASHshl] = ACTIONS(1358), - [anon_sym_bit_DASHshr] = ACTIONS(1358), - [anon_sym_EQ_EQ] = ACTIONS(1358), - [anon_sym_BANG_EQ] = ACTIONS(1358), - [anon_sym_LT2] = ACTIONS(1358), - [anon_sym_LT_EQ] = ACTIONS(1358), - [anon_sym_GT_EQ] = ACTIONS(1358), - [anon_sym_not_DASHin] = ACTIONS(1358), - [anon_sym_starts_DASHwith] = ACTIONS(1358), - [anon_sym_ends_DASHwith] = ACTIONS(1358), - [anon_sym_EQ_TILDE] = ACTIONS(1358), - [anon_sym_BANG_TILDE] = ACTIONS(1358), - [anon_sym_bit_DASHand] = ACTIONS(1358), - [anon_sym_bit_DASHxor] = ACTIONS(1358), - [anon_sym_bit_DASHor] = ACTIONS(1358), - [anon_sym_and] = ACTIONS(1358), - [anon_sym_xor] = ACTIONS(1358), - [anon_sym_or] = ACTIONS(1358), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1358), - [anon_sym_DOT_DOT_LT] = ACTIONS(1358), - [anon_sym_null] = ACTIONS(1358), - [anon_sym_true] = ACTIONS(1358), - [anon_sym_false] = ACTIONS(1358), - [aux_sym__val_number_decimal_token1] = ACTIONS(1358), - [aux_sym__val_number_decimal_token2] = ACTIONS(1358), - [anon_sym_DOT2] = ACTIONS(1358), - [aux_sym__val_number_decimal_token3] = ACTIONS(1358), - [aux_sym__val_number_token1] = ACTIONS(1358), - [aux_sym__val_number_token2] = ACTIONS(1358), - [aux_sym__val_number_token3] = ACTIONS(1358), - [aux_sym__val_number_token4] = ACTIONS(1358), - [aux_sym__val_number_token5] = ACTIONS(1358), - [aux_sym__val_number_token6] = ACTIONS(1358), - [anon_sym_0b] = ACTIONS(1358), - [anon_sym_0o] = ACTIONS(1358), - [anon_sym_0x] = ACTIONS(1358), - [sym_val_date] = ACTIONS(1358), - [anon_sym_DQUOTE] = ACTIONS(1358), - [sym__str_single_quotes] = ACTIONS(1358), - [sym__str_back_ticks] = ACTIONS(1358), - [sym__entry_separator] = ACTIONS(1360), - [anon_sym_err_GT] = ACTIONS(1358), - [anon_sym_out_GT] = ACTIONS(1358), - [anon_sym_e_GT] = ACTIONS(1358), - [anon_sym_o_GT] = ACTIONS(1358), - [anon_sym_err_PLUSout_GT] = ACTIONS(1358), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1358), - [anon_sym_o_PLUSe_GT] = ACTIONS(1358), - [anon_sym_e_PLUSo_GT] = ACTIONS(1358), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1358), + [2032] = { + [sym_block] = STATE(2345), + [sym_comment] = STATE(2032), + [anon_sym_export] = ACTIONS(5773), + [anon_sym_alias] = ACTIONS(5773), + [anon_sym_let] = ACTIONS(5773), + [anon_sym_let_DASHenv] = ACTIONS(5773), + [anon_sym_mut] = ACTIONS(5773), + [anon_sym_const] = ACTIONS(5773), + [anon_sym_SEMI] = ACTIONS(5773), + [sym_cmd_identifier] = ACTIONS(5773), + [anon_sym_LF] = ACTIONS(5775), + [anon_sym_def] = ACTIONS(5773), + [anon_sym_export_DASHenv] = ACTIONS(5773), + [anon_sym_extern] = ACTIONS(5773), + [anon_sym_module] = ACTIONS(5773), + [anon_sym_use] = ACTIONS(5773), + [anon_sym_LBRACK] = ACTIONS(5773), + [anon_sym_LPAREN] = ACTIONS(5773), + [anon_sym_RPAREN] = ACTIONS(5773), + [anon_sym_DOLLAR] = ACTIONS(5773), + [anon_sym_error] = ACTIONS(5773), + [anon_sym_DASH] = ACTIONS(5773), + [anon_sym_break] = ACTIONS(5773), + [anon_sym_continue] = ACTIONS(5773), + [anon_sym_for] = ACTIONS(5773), + [anon_sym_loop] = ACTIONS(5773), + [anon_sym_while] = ACTIONS(5773), + [anon_sym_do] = ACTIONS(5773), + [anon_sym_if] = ACTIONS(5773), + [anon_sym_match] = ACTIONS(5773), + [anon_sym_LBRACE] = ACTIONS(5777), + [anon_sym_RBRACE] = ACTIONS(5773), + [anon_sym_DOT_DOT] = ACTIONS(5773), + [anon_sym_try] = ACTIONS(5773), + [anon_sym_return] = ACTIONS(5773), + [anon_sym_source] = ACTIONS(5773), + [anon_sym_source_DASHenv] = ACTIONS(5773), + [anon_sym_register] = ACTIONS(5773), + [anon_sym_hide] = ACTIONS(5773), + [anon_sym_hide_DASHenv] = ACTIONS(5773), + [anon_sym_overlay] = ACTIONS(5773), + [anon_sym_where] = ACTIONS(5773), + [anon_sym_not] = ACTIONS(5773), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5773), + [anon_sym_DOT_DOT_LT] = ACTIONS(5773), + [anon_sym_null] = ACTIONS(5773), + [anon_sym_true] = ACTIONS(5773), + [anon_sym_false] = ACTIONS(5773), + [aux_sym__val_number_decimal_token1] = ACTIONS(5773), + [aux_sym__val_number_decimal_token2] = ACTIONS(5773), + [anon_sym_DOT2] = ACTIONS(5773), + [aux_sym__val_number_decimal_token3] = ACTIONS(5773), + [aux_sym__val_number_token1] = ACTIONS(5773), + [aux_sym__val_number_token2] = ACTIONS(5773), + [aux_sym__val_number_token3] = ACTIONS(5773), + [aux_sym__val_number_token4] = ACTIONS(5773), + [aux_sym__val_number_token5] = ACTIONS(5773), + [aux_sym__val_number_token6] = ACTIONS(5773), + [anon_sym_0b] = ACTIONS(5773), + [anon_sym_0o] = ACTIONS(5773), + [anon_sym_0x] = ACTIONS(5773), + [sym_val_date] = ACTIONS(5773), + [anon_sym_DQUOTE] = ACTIONS(5773), + [sym__str_single_quotes] = ACTIONS(5773), + [sym__str_back_ticks] = ACTIONS(5773), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5773), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5773), + [anon_sym_CARET] = ACTIONS(5773), [anon_sym_POUND] = ACTIONS(113), }, - [1822] = { - [sym_comment] = STATE(1822), - [anon_sym_export] = ACTIONS(1302), - [anon_sym_alias] = ACTIONS(1302), - [anon_sym_let] = ACTIONS(1302), - [anon_sym_let_DASHenv] = ACTIONS(1302), - [anon_sym_mut] = ACTIONS(1302), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1302), - [sym_cmd_identifier] = ACTIONS(1302), - [anon_sym_LF] = ACTIONS(1304), - [anon_sym_def] = ACTIONS(1302), - [anon_sym_export_DASHenv] = ACTIONS(1302), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_module] = ACTIONS(1302), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_LBRACK] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_RPAREN] = ACTIONS(1302), - [anon_sym_DOLLAR] = ACTIONS(1302), - [anon_sym_error] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_break] = ACTIONS(1302), - [anon_sym_continue] = ACTIONS(1302), - [anon_sym_for] = ACTIONS(1302), - [anon_sym_loop] = ACTIONS(1302), - [anon_sym_while] = ACTIONS(1302), - [anon_sym_do] = ACTIONS(1302), - [anon_sym_if] = ACTIONS(1302), - [anon_sym_match] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_RBRACE] = ACTIONS(1302), - [anon_sym_DOT_DOT] = ACTIONS(1302), - [anon_sym_try] = ACTIONS(1302), - [anon_sym_return] = ACTIONS(1302), - [anon_sym_source] = ACTIONS(1302), - [anon_sym_source_DASHenv] = ACTIONS(1302), - [anon_sym_register] = ACTIONS(1302), - [anon_sym_hide] = ACTIONS(1302), - [anon_sym_hide_DASHenv] = ACTIONS(1302), - [anon_sym_overlay] = ACTIONS(1302), - [anon_sym_as] = ACTIONS(1302), - [anon_sym_where] = ACTIONS(1302), - [anon_sym_not] = ACTIONS(1302), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1302), - [anon_sym_DOT_DOT_LT] = ACTIONS(1302), - [anon_sym_null] = ACTIONS(1302), - [anon_sym_true] = ACTIONS(1302), - [anon_sym_false] = ACTIONS(1302), - [aux_sym__val_number_decimal_token1] = ACTIONS(1302), - [aux_sym__val_number_decimal_token2] = ACTIONS(1302), - [anon_sym_DOT2] = ACTIONS(1302), - [aux_sym__val_number_decimal_token3] = ACTIONS(1302), - [aux_sym__val_number_token1] = ACTIONS(1302), - [aux_sym__val_number_token2] = ACTIONS(1302), - [aux_sym__val_number_token3] = ACTIONS(1302), - [aux_sym__val_number_token4] = ACTIONS(1302), - [aux_sym__val_number_token5] = ACTIONS(1302), - [aux_sym__val_number_token6] = ACTIONS(1302), - [anon_sym_0b] = ACTIONS(1302), - [anon_sym_0o] = ACTIONS(1302), - [anon_sym_0x] = ACTIONS(1302), - [sym_val_date] = ACTIONS(1302), - [anon_sym_DQUOTE] = ACTIONS(1302), - [sym__str_single_quotes] = ACTIONS(1302), - [sym__str_back_ticks] = ACTIONS(1302), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1302), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1302), - [anon_sym_CARET] = ACTIONS(1302), + [2033] = { + [sym_comment] = STATE(2033), + [anon_sym_export] = ACTIONS(5780), + [anon_sym_alias] = ACTIONS(5780), + [anon_sym_let] = ACTIONS(5780), + [anon_sym_let_DASHenv] = ACTIONS(5780), + [anon_sym_mut] = ACTIONS(5780), + [anon_sym_const] = ACTIONS(5780), + [anon_sym_SEMI] = ACTIONS(5780), + [sym_cmd_identifier] = ACTIONS(5780), + [anon_sym_LF] = ACTIONS(5782), + [anon_sym_def] = ACTIONS(5780), + [anon_sym_export_DASHenv] = ACTIONS(5780), + [anon_sym_extern] = ACTIONS(5780), + [anon_sym_module] = ACTIONS(5780), + [anon_sym_use] = ACTIONS(5780), + [anon_sym_LBRACK] = ACTIONS(5780), + [anon_sym_LPAREN] = ACTIONS(5780), + [anon_sym_RPAREN] = ACTIONS(5780), + [anon_sym_DOLLAR] = ACTIONS(5780), + [anon_sym_error] = ACTIONS(5780), + [anon_sym_DASH] = ACTIONS(5780), + [anon_sym_break] = ACTIONS(5780), + [anon_sym_continue] = ACTIONS(5780), + [anon_sym_for] = ACTIONS(5780), + [anon_sym_loop] = ACTIONS(5780), + [anon_sym_while] = ACTIONS(5780), + [anon_sym_do] = ACTIONS(5780), + [anon_sym_if] = ACTIONS(5780), + [anon_sym_match] = ACTIONS(5780), + [anon_sym_LBRACE] = ACTIONS(5780), + [anon_sym_RBRACE] = ACTIONS(5780), + [anon_sym_DOT_DOT] = ACTIONS(5780), + [anon_sym_try] = ACTIONS(5780), + [anon_sym_return] = ACTIONS(5780), + [anon_sym_source] = ACTIONS(5780), + [anon_sym_source_DASHenv] = ACTIONS(5780), + [anon_sym_register] = ACTIONS(5780), + [anon_sym_hide] = ACTIONS(5780), + [anon_sym_hide_DASHenv] = ACTIONS(5780), + [anon_sym_overlay] = ACTIONS(5780), + [anon_sym_STAR] = ACTIONS(5780), + [anon_sym_where] = ACTIONS(5780), + [anon_sym_not] = ACTIONS(5780), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5780), + [anon_sym_DOT_DOT_LT] = ACTIONS(5780), + [anon_sym_null] = ACTIONS(5780), + [anon_sym_true] = ACTIONS(5780), + [anon_sym_false] = ACTIONS(5780), + [aux_sym__val_number_decimal_token1] = ACTIONS(5780), + [aux_sym__val_number_decimal_token2] = ACTIONS(5780), + [anon_sym_DOT2] = ACTIONS(5780), + [aux_sym__val_number_decimal_token3] = ACTIONS(5780), + [aux_sym__val_number_token1] = ACTIONS(5780), + [aux_sym__val_number_token2] = ACTIONS(5780), + [aux_sym__val_number_token3] = ACTIONS(5780), + [aux_sym__val_number_token4] = ACTIONS(5780), + [aux_sym__val_number_token5] = ACTIONS(5780), + [aux_sym__val_number_token6] = ACTIONS(5780), + [anon_sym_0b] = ACTIONS(5780), + [anon_sym_0o] = ACTIONS(5780), + [anon_sym_0x] = ACTIONS(5780), + [sym_val_date] = ACTIONS(5780), + [anon_sym_DQUOTE] = ACTIONS(5780), + [sym__str_single_quotes] = ACTIONS(5780), + [sym__str_back_ticks] = ACTIONS(5780), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5780), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5780), + [anon_sym_CARET] = ACTIONS(5780), [anon_sym_POUND] = ACTIONS(113), }, - [1823] = { - [sym_comment] = STATE(1823), - [anon_sym_LBRACK] = ACTIONS(1198), - [anon_sym_COMMA] = ACTIONS(1198), - [anon_sym_RBRACK] = ACTIONS(1198), - [anon_sym_LPAREN] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(1198), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1198), - [anon_sym_in] = ACTIONS(1198), - [anon_sym_LBRACE] = ACTIONS(1198), - [anon_sym_DOT_DOT] = ACTIONS(1198), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_STAR_STAR] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_SLASH] = ACTIONS(1198), - [anon_sym_mod] = ACTIONS(1198), - [anon_sym_SLASH_SLASH] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1198), - [anon_sym_bit_DASHshl] = ACTIONS(1198), - [anon_sym_bit_DASHshr] = ACTIONS(1198), - [anon_sym_EQ_EQ] = ACTIONS(1198), - [anon_sym_BANG_EQ] = ACTIONS(1198), - [anon_sym_LT2] = ACTIONS(1198), - [anon_sym_LT_EQ] = ACTIONS(1198), - [anon_sym_GT_EQ] = ACTIONS(1198), - [anon_sym_not_DASHin] = ACTIONS(1198), - [anon_sym_starts_DASHwith] = ACTIONS(1198), - [anon_sym_ends_DASHwith] = ACTIONS(1198), - [anon_sym_EQ_TILDE] = ACTIONS(1198), - [anon_sym_BANG_TILDE] = ACTIONS(1198), - [anon_sym_bit_DASHand] = ACTIONS(1198), - [anon_sym_bit_DASHxor] = ACTIONS(1198), - [anon_sym_bit_DASHor] = ACTIONS(1198), - [anon_sym_and] = ACTIONS(1198), - [anon_sym_xor] = ACTIONS(1198), - [anon_sym_or] = ACTIONS(1198), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1198), - [anon_sym_DOT_DOT_LT] = ACTIONS(1198), - [anon_sym_null] = ACTIONS(1198), - [anon_sym_true] = ACTIONS(1198), - [anon_sym_false] = ACTIONS(1198), - [aux_sym__val_number_decimal_token1] = ACTIONS(1198), - [aux_sym__val_number_decimal_token2] = ACTIONS(1198), - [anon_sym_DOT2] = ACTIONS(1198), - [aux_sym__val_number_decimal_token3] = ACTIONS(1198), - [aux_sym__val_number_token1] = ACTIONS(1198), - [aux_sym__val_number_token2] = ACTIONS(1198), - [aux_sym__val_number_token3] = ACTIONS(1198), - [aux_sym__val_number_token4] = ACTIONS(1198), - [aux_sym__val_number_token5] = ACTIONS(1198), - [aux_sym__val_number_token6] = ACTIONS(1198), - [anon_sym_0b] = ACTIONS(1198), - [anon_sym_0o] = ACTIONS(1198), - [anon_sym_0x] = ACTIONS(1198), - [sym_val_date] = ACTIONS(1198), - [anon_sym_DQUOTE] = ACTIONS(1198), - [sym__str_single_quotes] = ACTIONS(1198), - [sym__str_back_ticks] = ACTIONS(1198), - [sym__entry_separator] = ACTIONS(1366), - [anon_sym_err_GT] = ACTIONS(1198), - [anon_sym_out_GT] = ACTIONS(1198), - [anon_sym_e_GT] = ACTIONS(1198), - [anon_sym_o_GT] = ACTIONS(1198), - [anon_sym_err_PLUSout_GT] = ACTIONS(1198), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1198), - [anon_sym_o_PLUSe_GT] = ACTIONS(1198), - [anon_sym_e_PLUSo_GT] = ACTIONS(1198), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1198), + [2034] = { + [sym__expression] = STATE(7173), + [sym_expr_unary] = STATE(5677), + [sym__expr_unary_minus] = STATE(5679), + [sym_expr_binary] = STATE(5677), + [sym__expr_binary_expression] = STATE(6377), + [sym_expr_parenthesized] = STATE(4919), + [sym_val_range] = STATE(8295), + [sym__value] = STATE(5677), + [sym_val_nothing] = STATE(5612), + [sym_val_bool] = STATE(5612), + [sym_val_variable] = STATE(4867), + [sym__var] = STATE(4310), + [sym_val_number] = STATE(5612), + [sym__val_number_decimal] = STATE(4408), + [sym__val_number] = STATE(5661), + [sym_val_duration] = STATE(5612), + [sym_val_filesize] = STATE(5612), + [sym_val_binary] = STATE(5612), + [sym_val_string] = STATE(5612), + [sym__str_double_quotes] = STATE(5733), + [sym_val_interpolated] = STATE(5612), + [sym__inter_single_quotes] = STATE(5590), + [sym__inter_double_quotes] = STATE(5591), + [sym_val_list] = STATE(5612), + [sym_val_record] = STATE(5612), + [sym_val_table] = STATE(5612), + [sym_val_closure] = STATE(5612), + [sym__flag] = STATE(2124), + [sym_short_flag] = STATE(4939), + [sym_long_flag] = STATE(4939), + [sym_long_flag_equals_value] = STATE(4865), + [sym_comment] = STATE(2034), + [ts_builtin_sym_end] = ACTIONS(5355), + [anon_sym_SEMI] = ACTIONS(5353), + [anon_sym_LF] = ACTIONS(5355), + [anon_sym_LBRACK] = ACTIONS(5667), + [anon_sym_LPAREN] = ACTIONS(5669), + [anon_sym_PIPE] = ACTIONS(5353), + [anon_sym_DOLLAR] = ACTIONS(2667), + [anon_sym_DASH_DASH] = ACTIONS(5671), + [anon_sym_DASH] = ACTIONS(5673), + [anon_sym_LBRACE] = ACTIONS(5675), + [anon_sym_DOT_DOT] = ACTIONS(5677), + [anon_sym_not] = ACTIONS(5679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5681), + [anon_sym_DOT_DOT_LT] = ACTIONS(5681), + [anon_sym_null] = ACTIONS(5683), + [anon_sym_true] = ACTIONS(5685), + [anon_sym_false] = ACTIONS(5685), + [aux_sym__val_number_decimal_token1] = ACTIONS(5687), + [aux_sym__val_number_decimal_token2] = ACTIONS(5687), + [anon_sym_DOT2] = ACTIONS(5689), + [aux_sym__val_number_decimal_token3] = ACTIONS(5691), + [aux_sym__val_number_token1] = ACTIONS(5693), + [aux_sym__val_number_token2] = ACTIONS(5693), + [aux_sym__val_number_token3] = ACTIONS(5693), + [aux_sym__val_number_token4] = ACTIONS(5693), + [aux_sym__val_number_token5] = ACTIONS(5693), + [aux_sym__val_number_token6] = ACTIONS(5693), + [anon_sym_0b] = ACTIONS(2695), + [anon_sym_0o] = ACTIONS(2697), + [anon_sym_0x] = ACTIONS(2697), + [sym_val_date] = ACTIONS(5695), + [anon_sym_DQUOTE] = ACTIONS(5697), + [sym__str_single_quotes] = ACTIONS(5699), + [sym__str_back_ticks] = ACTIONS(5699), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5703), [anon_sym_POUND] = ACTIONS(113), }, - [1824] = { - [sym_comment] = STATE(1824), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_COMMA] = ACTIONS(1368), - [anon_sym_RBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [sym__entry_separator] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1368), - [anon_sym_out_GT] = ACTIONS(1368), - [anon_sym_e_GT] = ACTIONS(1368), - [anon_sym_o_GT] = ACTIONS(1368), - [anon_sym_err_PLUSout_GT] = ACTIONS(1368), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1368), - [anon_sym_o_PLUSe_GT] = ACTIONS(1368), - [anon_sym_e_PLUSo_GT] = ACTIONS(1368), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1368), + [2035] = { + [sym__expression] = STATE(7145), + [sym_expr_unary] = STATE(5677), + [sym__expr_unary_minus] = STATE(5679), + [sym_expr_binary] = STATE(5677), + [sym__expr_binary_expression] = STATE(6377), + [sym_expr_parenthesized] = STATE(4919), + [sym_val_range] = STATE(8295), + [sym__value] = STATE(5677), + [sym_val_nothing] = STATE(5612), + [sym_val_bool] = STATE(5612), + [sym_val_variable] = STATE(4867), + [sym__var] = STATE(4310), + [sym_val_number] = STATE(5612), + [sym__val_number_decimal] = STATE(4408), + [sym__val_number] = STATE(5661), + [sym_val_duration] = STATE(5612), + [sym_val_filesize] = STATE(5612), + [sym_val_binary] = STATE(5612), + [sym_val_string] = STATE(5612), + [sym__str_double_quotes] = STATE(5733), + [sym_val_interpolated] = STATE(5612), + [sym__inter_single_quotes] = STATE(5590), + [sym__inter_double_quotes] = STATE(5591), + [sym_val_list] = STATE(5612), + [sym_val_record] = STATE(5612), + [sym_val_table] = STATE(5612), + [sym_val_closure] = STATE(5612), + [sym__flag] = STATE(7118), + [sym_short_flag] = STATE(8315), + [sym_long_flag] = STATE(8315), + [sym_long_flag_equals_value] = STATE(8239), + [sym_comment] = STATE(2035), + [ts_builtin_sym_end] = ACTIONS(4873), + [anon_sym_SEMI] = ACTIONS(4871), + [anon_sym_LF] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(5667), + [anon_sym_LPAREN] = ACTIONS(5669), + [anon_sym_PIPE] = ACTIONS(4871), + [anon_sym_DOLLAR] = ACTIONS(2667), + [anon_sym_DASH_DASH] = ACTIONS(5763), + [anon_sym_DASH] = ACTIONS(5765), + [anon_sym_LBRACE] = ACTIONS(5675), + [anon_sym_DOT_DOT] = ACTIONS(5677), + [anon_sym_not] = ACTIONS(5679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5681), + [anon_sym_DOT_DOT_LT] = ACTIONS(5681), + [anon_sym_null] = ACTIONS(5683), + [anon_sym_true] = ACTIONS(5685), + [anon_sym_false] = ACTIONS(5685), + [aux_sym__val_number_decimal_token1] = ACTIONS(5687), + [aux_sym__val_number_decimal_token2] = ACTIONS(5687), + [anon_sym_DOT2] = ACTIONS(5689), + [aux_sym__val_number_decimal_token3] = ACTIONS(5691), + [aux_sym__val_number_token1] = ACTIONS(5693), + [aux_sym__val_number_token2] = ACTIONS(5693), + [aux_sym__val_number_token3] = ACTIONS(5693), + [aux_sym__val_number_token4] = ACTIONS(5693), + [aux_sym__val_number_token5] = ACTIONS(5693), + [aux_sym__val_number_token6] = ACTIONS(5693), + [anon_sym_0b] = ACTIONS(2695), + [anon_sym_0o] = ACTIONS(2697), + [anon_sym_0x] = ACTIONS(2697), + [sym_val_date] = ACTIONS(5695), + [anon_sym_DQUOTE] = ACTIONS(5697), + [sym__str_single_quotes] = ACTIONS(5699), + [sym__str_back_ticks] = ACTIONS(5699), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5703), [anon_sym_POUND] = ACTIONS(113), }, - [1825] = { - [sym_comment] = STATE(1825), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_COMMA] = ACTIONS(1368), - [anon_sym_RBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [sym__entry_separator] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1368), - [anon_sym_out_GT] = ACTIONS(1368), - [anon_sym_e_GT] = ACTIONS(1368), - [anon_sym_o_GT] = ACTIONS(1368), - [anon_sym_err_PLUSout_GT] = ACTIONS(1368), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1368), - [anon_sym_o_PLUSe_GT] = ACTIONS(1368), - [anon_sym_e_PLUSo_GT] = ACTIONS(1368), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1368), + [2036] = { + [sym__expression] = STATE(7145), + [sym_expr_unary] = STATE(5677), + [sym__expr_unary_minus] = STATE(5679), + [sym_expr_binary] = STATE(5677), + [sym__expr_binary_expression] = STATE(6377), + [sym_expr_parenthesized] = STATE(4919), + [sym_val_range] = STATE(8295), + [sym__value] = STATE(5677), + [sym_val_nothing] = STATE(5612), + [sym_val_bool] = STATE(5612), + [sym_val_variable] = STATE(4867), + [sym__var] = STATE(4310), + [sym_val_number] = STATE(5612), + [sym__val_number_decimal] = STATE(4408), + [sym__val_number] = STATE(5661), + [sym_val_duration] = STATE(5612), + [sym_val_filesize] = STATE(5612), + [sym_val_binary] = STATE(5612), + [sym_val_string] = STATE(5612), + [sym__str_double_quotes] = STATE(5733), + [sym_val_interpolated] = STATE(5612), + [sym__inter_single_quotes] = STATE(5590), + [sym__inter_double_quotes] = STATE(5591), + [sym_val_list] = STATE(5612), + [sym_val_record] = STATE(5612), + [sym_val_table] = STATE(5612), + [sym_val_closure] = STATE(5612), + [sym__flag] = STATE(2188), + [sym_short_flag] = STATE(4939), + [sym_long_flag] = STATE(4939), + [sym_long_flag_equals_value] = STATE(4865), + [sym_comment] = STATE(2036), + [ts_builtin_sym_end] = ACTIONS(4873), + [anon_sym_SEMI] = ACTIONS(4871), + [anon_sym_LF] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(5667), + [anon_sym_LPAREN] = ACTIONS(5669), + [anon_sym_PIPE] = ACTIONS(4871), + [anon_sym_DOLLAR] = ACTIONS(2667), + [anon_sym_DASH_DASH] = ACTIONS(5671), + [anon_sym_DASH] = ACTIONS(5673), + [anon_sym_LBRACE] = ACTIONS(5675), + [anon_sym_DOT_DOT] = ACTIONS(5677), + [anon_sym_not] = ACTIONS(5679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5681), + [anon_sym_DOT_DOT_LT] = ACTIONS(5681), + [anon_sym_null] = ACTIONS(5683), + [anon_sym_true] = ACTIONS(5685), + [anon_sym_false] = ACTIONS(5685), + [aux_sym__val_number_decimal_token1] = ACTIONS(5687), + [aux_sym__val_number_decimal_token2] = ACTIONS(5687), + [anon_sym_DOT2] = ACTIONS(5689), + [aux_sym__val_number_decimal_token3] = ACTIONS(5691), + [aux_sym__val_number_token1] = ACTIONS(5693), + [aux_sym__val_number_token2] = ACTIONS(5693), + [aux_sym__val_number_token3] = ACTIONS(5693), + [aux_sym__val_number_token4] = ACTIONS(5693), + [aux_sym__val_number_token5] = ACTIONS(5693), + [aux_sym__val_number_token6] = ACTIONS(5693), + [anon_sym_0b] = ACTIONS(2695), + [anon_sym_0o] = ACTIONS(2697), + [anon_sym_0x] = ACTIONS(2697), + [sym_val_date] = ACTIONS(5695), + [anon_sym_DQUOTE] = ACTIONS(5697), + [sym__str_single_quotes] = ACTIONS(5699), + [sym__str_back_ticks] = ACTIONS(5699), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5703), [anon_sym_POUND] = ACTIONS(113), }, - [1826] = { - [sym_comment] = STATE(1826), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_COMMA] = ACTIONS(1368), - [anon_sym_RBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [sym__entry_separator] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1368), - [anon_sym_out_GT] = ACTIONS(1368), - [anon_sym_e_GT] = ACTIONS(1368), - [anon_sym_o_GT] = ACTIONS(1368), - [anon_sym_err_PLUSout_GT] = ACTIONS(1368), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1368), - [anon_sym_o_PLUSe_GT] = ACTIONS(1368), - [anon_sym_e_PLUSo_GT] = ACTIONS(1368), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), + [2037] = { + [sym_comment] = STATE(2037), + [anon_sym_LBRACK] = ACTIONS(1177), + [anon_sym_COMMA] = ACTIONS(1177), + [anon_sym_LPAREN] = ACTIONS(1177), + [anon_sym_DOLLAR] = ACTIONS(1177), + [anon_sym_GT] = ACTIONS(1175), + [anon_sym_DASH] = ACTIONS(1175), + [anon_sym_in] = ACTIONS(1175), + [anon_sym_LBRACE] = ACTIONS(1177), + [anon_sym_RBRACE] = ACTIONS(1177), + [anon_sym__] = ACTIONS(1175), + [anon_sym_DOT_DOT] = ACTIONS(1175), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_STAR_STAR] = ACTIONS(1177), + [anon_sym_PLUS_PLUS] = ACTIONS(1177), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_mod] = ACTIONS(1177), + [anon_sym_SLASH_SLASH] = ACTIONS(1177), + [anon_sym_PLUS] = ACTIONS(1175), + [anon_sym_bit_DASHshl] = ACTIONS(1177), + [anon_sym_bit_DASHshr] = ACTIONS(1177), + [anon_sym_EQ_EQ] = ACTIONS(1177), + [anon_sym_BANG_EQ] = ACTIONS(1177), + [anon_sym_LT2] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1177), + [anon_sym_GT_EQ] = ACTIONS(1177), + [anon_sym_not_DASHin] = ACTIONS(1177), + [anon_sym_starts_DASHwith] = ACTIONS(1177), + [anon_sym_ends_DASHwith] = ACTIONS(1177), + [anon_sym_EQ_TILDE] = ACTIONS(1177), + [anon_sym_BANG_TILDE] = ACTIONS(1177), + [anon_sym_bit_DASHand] = ACTIONS(1177), + [anon_sym_bit_DASHxor] = ACTIONS(1177), + [anon_sym_bit_DASHor] = ACTIONS(1177), + [anon_sym_and] = ACTIONS(1177), + [anon_sym_xor] = ACTIONS(1177), + [anon_sym_or] = ACTIONS(1177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1177), + [anon_sym_DOT_DOT_LT] = ACTIONS(1177), + [anon_sym_null] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(1177), + [anon_sym_false] = ACTIONS(1177), + [aux_sym__val_number_decimal_token1] = ACTIONS(1175), + [aux_sym__val_number_decimal_token2] = ACTIONS(1177), + [anon_sym_DOT2] = ACTIONS(1175), + [aux_sym__val_number_decimal_token3] = ACTIONS(1177), + [aux_sym__val_number_token1] = ACTIONS(1177), + [aux_sym__val_number_token2] = ACTIONS(1177), + [aux_sym__val_number_token3] = ACTIONS(1177), + [aux_sym__val_number_token4] = ACTIONS(1177), + [aux_sym__val_number_token5] = ACTIONS(1177), + [aux_sym__val_number_token6] = ACTIONS(1177), + [anon_sym_0b] = ACTIONS(1175), + [anon_sym_0o] = ACTIONS(1175), + [anon_sym_0x] = ACTIONS(1175), + [sym_val_date] = ACTIONS(1177), + [anon_sym_DQUOTE] = ACTIONS(1177), + [sym__str_single_quotes] = ACTIONS(1177), + [sym__str_back_ticks] = ACTIONS(1177), + [anon_sym_err_GT] = ACTIONS(1177), + [anon_sym_out_GT] = ACTIONS(1177), + [anon_sym_e_GT] = ACTIONS(1177), + [anon_sym_o_GT] = ACTIONS(1177), + [anon_sym_err_PLUSout_GT] = ACTIONS(1177), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1177), + [anon_sym_o_PLUSe_GT] = ACTIONS(1177), + [anon_sym_e_PLUSo_GT] = ACTIONS(1177), + [aux_sym_unquoted_token1] = ACTIONS(1175), + [anon_sym_POUND] = ACTIONS(3), }, - [1827] = { - [sym_comment] = STATE(1827), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_COMMA] = ACTIONS(1368), - [anon_sym_RBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [sym__entry_separator] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1368), - [anon_sym_out_GT] = ACTIONS(1368), - [anon_sym_e_GT] = ACTIONS(1368), - [anon_sym_o_GT] = ACTIONS(1368), - [anon_sym_err_PLUSout_GT] = ACTIONS(1368), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1368), - [anon_sym_o_PLUSe_GT] = ACTIONS(1368), - [anon_sym_e_PLUSo_GT] = ACTIONS(1368), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), + [2038] = { + [sym_comment] = STATE(2038), + [anon_sym_LBRACK] = ACTIONS(1227), + [anon_sym_COMMA] = ACTIONS(1227), + [anon_sym_RBRACK] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1227), + [anon_sym_DOLLAR] = ACTIONS(1227), + [anon_sym_GT] = ACTIONS(1225), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_in] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(1227), + [anon_sym_DOT_DOT] = ACTIONS(1225), + [anon_sym_STAR] = ACTIONS(1225), + [anon_sym_STAR_STAR] = ACTIONS(1227), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_SLASH] = ACTIONS(1225), + [anon_sym_mod] = ACTIONS(1227), + [anon_sym_SLASH_SLASH] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_bit_DASHshl] = ACTIONS(1227), + [anon_sym_bit_DASHshr] = ACTIONS(1227), + [anon_sym_EQ_EQ] = ACTIONS(1227), + [anon_sym_BANG_EQ] = ACTIONS(1227), + [anon_sym_LT2] = ACTIONS(1225), + [anon_sym_LT_EQ] = ACTIONS(1227), + [anon_sym_GT_EQ] = ACTIONS(1227), + [anon_sym_not_DASHin] = ACTIONS(1227), + [anon_sym_starts_DASHwith] = ACTIONS(1227), + [anon_sym_ends_DASHwith] = ACTIONS(1227), + [anon_sym_EQ_TILDE] = ACTIONS(1227), + [anon_sym_BANG_TILDE] = ACTIONS(1227), + [anon_sym_bit_DASHand] = ACTIONS(1227), + [anon_sym_bit_DASHxor] = ACTIONS(1227), + [anon_sym_bit_DASHor] = ACTIONS(1227), + [anon_sym_and] = ACTIONS(1227), + [anon_sym_xor] = ACTIONS(1227), + [anon_sym_or] = ACTIONS(1227), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1227), + [anon_sym_DOT_DOT_LT] = ACTIONS(1227), + [anon_sym_null] = ACTIONS(1227), + [anon_sym_true] = ACTIONS(1227), + [anon_sym_false] = ACTIONS(1227), + [aux_sym__val_number_decimal_token1] = ACTIONS(1225), + [aux_sym__val_number_decimal_token2] = ACTIONS(1227), + [anon_sym_DOT2] = ACTIONS(1225), + [aux_sym__val_number_decimal_token3] = ACTIONS(1227), + [aux_sym__val_number_token1] = ACTIONS(1227), + [aux_sym__val_number_token2] = ACTIONS(1227), + [aux_sym__val_number_token3] = ACTIONS(1227), + [aux_sym__val_number_token4] = ACTIONS(1227), + [aux_sym__val_number_token5] = ACTIONS(1227), + [aux_sym__val_number_token6] = ACTIONS(1227), + [anon_sym_0b] = ACTIONS(1225), + [anon_sym_0o] = ACTIONS(1225), + [anon_sym_0x] = ACTIONS(1225), + [sym_val_date] = ACTIONS(1227), + [anon_sym_DQUOTE] = ACTIONS(1227), + [sym__str_single_quotes] = ACTIONS(1227), + [sym__str_back_ticks] = ACTIONS(1227), + [anon_sym_err_GT] = ACTIONS(1227), + [anon_sym_out_GT] = ACTIONS(1227), + [anon_sym_e_GT] = ACTIONS(1227), + [anon_sym_o_GT] = ACTIONS(1227), + [anon_sym_err_PLUSout_GT] = ACTIONS(1227), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1227), + [anon_sym_o_PLUSe_GT] = ACTIONS(1227), + [anon_sym_e_PLUSo_GT] = ACTIONS(1227), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1225), + [anon_sym_POUND] = ACTIONS(3), }, - [1828] = { - [sym_comment] = STATE(1828), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_COMMA] = ACTIONS(1368), - [anon_sym_RBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [sym__entry_separator] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1368), - [anon_sym_out_GT] = ACTIONS(1368), - [anon_sym_e_GT] = ACTIONS(1368), - [anon_sym_o_GT] = ACTIONS(1368), - [anon_sym_err_PLUSout_GT] = ACTIONS(1368), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1368), - [anon_sym_o_PLUSe_GT] = ACTIONS(1368), - [anon_sym_e_PLUSo_GT] = ACTIONS(1368), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), + [2039] = { + [sym_comment] = STATE(2039), + [anon_sym_LBRACK] = ACTIONS(1181), + [anon_sym_COMMA] = ACTIONS(1181), + [anon_sym_RBRACK] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_DOLLAR] = ACTIONS(1181), + [anon_sym_GT] = ACTIONS(5711), + [anon_sym_DASH_DASH] = ACTIONS(1181), + [anon_sym_DASH] = ACTIONS(5713), + [anon_sym_in] = ACTIONS(5715), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(5705), + [anon_sym_STAR_STAR] = ACTIONS(5707), + [anon_sym_PLUS_PLUS] = ACTIONS(5707), + [anon_sym_SLASH] = ACTIONS(5705), + [anon_sym_mod] = ACTIONS(5709), + [anon_sym_SLASH_SLASH] = ACTIONS(5709), + [anon_sym_PLUS] = ACTIONS(5713), + [anon_sym_bit_DASHshl] = ACTIONS(5717), + [anon_sym_bit_DASHshr] = ACTIONS(5717), + [anon_sym_EQ_EQ] = ACTIONS(5719), + [anon_sym_BANG_EQ] = ACTIONS(5719), + [anon_sym_LT2] = ACTIONS(5711), + [anon_sym_LT_EQ] = ACTIONS(5719), + [anon_sym_GT_EQ] = ACTIONS(5719), + [anon_sym_not_DASHin] = ACTIONS(5721), + [anon_sym_starts_DASHwith] = ACTIONS(5721), + [anon_sym_ends_DASHwith] = ACTIONS(5721), + [anon_sym_EQ_TILDE] = ACTIONS(5723), + [anon_sym_BANG_TILDE] = ACTIONS(5723), + [anon_sym_bit_DASHand] = ACTIONS(5729), + [anon_sym_bit_DASHxor] = ACTIONS(5767), + [anon_sym_bit_DASHor] = ACTIONS(5784), + [anon_sym_and] = ACTIONS(1181), + [anon_sym_xor] = ACTIONS(1181), + [anon_sym_or] = ACTIONS(1181), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1181), + [anon_sym_DOT_DOT_LT] = ACTIONS(1181), + [anon_sym_null] = ACTIONS(1181), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1181), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1181), + [aux_sym__val_number_token1] = ACTIONS(1181), + [aux_sym__val_number_token2] = ACTIONS(1181), + [aux_sym__val_number_token3] = ACTIONS(1181), + [aux_sym__val_number_token4] = ACTIONS(1181), + [aux_sym__val_number_token5] = ACTIONS(1181), + [aux_sym__val_number_token6] = ACTIONS(1181), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym__str_single_quotes] = ACTIONS(1181), + [sym__str_back_ticks] = ACTIONS(1181), + [anon_sym_err_GT] = ACTIONS(1181), + [anon_sym_out_GT] = ACTIONS(1181), + [anon_sym_e_GT] = ACTIONS(1181), + [anon_sym_o_GT] = ACTIONS(1181), + [anon_sym_err_PLUSout_GT] = ACTIONS(1181), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1181), + [anon_sym_o_PLUSe_GT] = ACTIONS(1181), + [anon_sym_e_PLUSo_GT] = ACTIONS(1181), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(3), }, - [1829] = { - [sym_comment] = STATE(1829), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_COMMA] = ACTIONS(1368), - [anon_sym_RBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [sym__entry_separator] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1368), - [anon_sym_out_GT] = ACTIONS(1368), - [anon_sym_e_GT] = ACTIONS(1368), - [anon_sym_o_GT] = ACTIONS(1368), - [anon_sym_err_PLUSout_GT] = ACTIONS(1368), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1368), - [anon_sym_o_PLUSe_GT] = ACTIONS(1368), - [anon_sym_e_PLUSo_GT] = ACTIONS(1368), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1368), + [2040] = { + [sym_comment] = STATE(2040), + [anon_sym_export] = ACTIONS(5786), + [anon_sym_alias] = ACTIONS(5786), + [anon_sym_let] = ACTIONS(5786), + [anon_sym_let_DASHenv] = ACTIONS(5786), + [anon_sym_mut] = ACTIONS(5786), + [anon_sym_const] = ACTIONS(5786), + [anon_sym_SEMI] = ACTIONS(5786), + [sym_cmd_identifier] = ACTIONS(5786), + [anon_sym_LF] = ACTIONS(5788), + [anon_sym_def] = ACTIONS(5786), + [anon_sym_export_DASHenv] = ACTIONS(5786), + [anon_sym_extern] = ACTIONS(5786), + [anon_sym_module] = ACTIONS(5786), + [anon_sym_use] = ACTIONS(5786), + [anon_sym_LBRACK] = ACTIONS(5786), + [anon_sym_LPAREN] = ACTIONS(5786), + [anon_sym_RPAREN] = ACTIONS(5786), + [anon_sym_PIPE] = ACTIONS(5786), + [anon_sym_DOLLAR] = ACTIONS(5786), + [anon_sym_error] = ACTIONS(5786), + [anon_sym_DASH] = ACTIONS(5786), + [anon_sym_break] = ACTIONS(5786), + [anon_sym_continue] = ACTIONS(5786), + [anon_sym_for] = ACTIONS(5786), + [anon_sym_loop] = ACTIONS(5786), + [anon_sym_while] = ACTIONS(5786), + [anon_sym_do] = ACTIONS(5786), + [anon_sym_if] = ACTIONS(5786), + [anon_sym_match] = ACTIONS(5786), + [anon_sym_LBRACE] = ACTIONS(5786), + [anon_sym_RBRACE] = ACTIONS(5786), + [anon_sym_DOT_DOT] = ACTIONS(5786), + [anon_sym_try] = ACTIONS(5786), + [anon_sym_return] = ACTIONS(5786), + [anon_sym_source] = ACTIONS(5786), + [anon_sym_source_DASHenv] = ACTIONS(5786), + [anon_sym_register] = ACTIONS(5786), + [anon_sym_hide] = ACTIONS(5786), + [anon_sym_hide_DASHenv] = ACTIONS(5786), + [anon_sym_overlay] = ACTIONS(5786), + [anon_sym_where] = ACTIONS(5786), + [anon_sym_not] = ACTIONS(5786), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5786), + [anon_sym_DOT_DOT_LT] = ACTIONS(5786), + [anon_sym_null] = ACTIONS(5786), + [anon_sym_true] = ACTIONS(5786), + [anon_sym_false] = ACTIONS(5786), + [aux_sym__val_number_decimal_token1] = ACTIONS(5786), + [aux_sym__val_number_decimal_token2] = ACTIONS(5786), + [anon_sym_DOT2] = ACTIONS(5786), + [aux_sym__val_number_decimal_token3] = ACTIONS(5786), + [aux_sym__val_number_token1] = ACTIONS(5786), + [aux_sym__val_number_token2] = ACTIONS(5786), + [aux_sym__val_number_token3] = ACTIONS(5786), + [aux_sym__val_number_token4] = ACTIONS(5786), + [aux_sym__val_number_token5] = ACTIONS(5786), + [aux_sym__val_number_token6] = ACTIONS(5786), + [anon_sym_0b] = ACTIONS(5786), + [anon_sym_0o] = ACTIONS(5786), + [anon_sym_0x] = ACTIONS(5786), + [sym_val_date] = ACTIONS(5786), + [anon_sym_DQUOTE] = ACTIONS(5786), + [sym__str_single_quotes] = ACTIONS(5786), + [sym__str_back_ticks] = ACTIONS(5786), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5786), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5786), + [anon_sym_CARET] = ACTIONS(5786), [anon_sym_POUND] = ACTIONS(113), }, - [1830] = { - [sym_comment] = STATE(1830), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_COMMA] = ACTIONS(1368), - [anon_sym_RBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [sym__entry_separator] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1368), - [anon_sym_out_GT] = ACTIONS(1368), - [anon_sym_e_GT] = ACTIONS(1368), - [anon_sym_o_GT] = ACTIONS(1368), - [anon_sym_err_PLUSout_GT] = ACTIONS(1368), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1368), - [anon_sym_o_PLUSe_GT] = ACTIONS(1368), - [anon_sym_e_PLUSo_GT] = ACTIONS(1368), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1368), + [2041] = { + [sym__expression] = STATE(7223), + [sym_expr_unary] = STATE(5677), + [sym__expr_unary_minus] = STATE(5679), + [sym_expr_binary] = STATE(5677), + [sym__expr_binary_expression] = STATE(6377), + [sym_expr_parenthesized] = STATE(4919), + [sym_val_range] = STATE(8295), + [sym__value] = STATE(5677), + [sym_val_nothing] = STATE(5612), + [sym_val_bool] = STATE(5612), + [sym_val_variable] = STATE(4867), + [sym__var] = STATE(4310), + [sym_val_number] = STATE(5612), + [sym__val_number_decimal] = STATE(4408), + [sym__val_number] = STATE(5661), + [sym_val_duration] = STATE(5612), + [sym_val_filesize] = STATE(5612), + [sym_val_binary] = STATE(5612), + [sym_val_string] = STATE(5612), + [sym__str_double_quotes] = STATE(5733), + [sym_val_interpolated] = STATE(5612), + [sym__inter_single_quotes] = STATE(5590), + [sym__inter_double_quotes] = STATE(5591), + [sym_val_list] = STATE(5612), + [sym_val_record] = STATE(5612), + [sym_val_table] = STATE(5612), + [sym_val_closure] = STATE(5612), + [sym__flag] = STATE(2060), + [sym_short_flag] = STATE(4939), + [sym_long_flag] = STATE(4939), + [sym_long_flag_equals_value] = STATE(4865), + [sym_comment] = STATE(2041), + [ts_builtin_sym_end] = ACTIONS(4949), + [anon_sym_SEMI] = ACTIONS(4947), + [anon_sym_LF] = ACTIONS(4949), + [anon_sym_LBRACK] = ACTIONS(5667), + [anon_sym_LPAREN] = ACTIONS(5669), + [anon_sym_PIPE] = ACTIONS(4947), + [anon_sym_DOLLAR] = ACTIONS(2667), + [anon_sym_DASH_DASH] = ACTIONS(5671), + [anon_sym_DASH] = ACTIONS(5673), + [anon_sym_LBRACE] = ACTIONS(5675), + [anon_sym_DOT_DOT] = ACTIONS(5677), + [anon_sym_not] = ACTIONS(5679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5681), + [anon_sym_DOT_DOT_LT] = ACTIONS(5681), + [anon_sym_null] = ACTIONS(5683), + [anon_sym_true] = ACTIONS(5685), + [anon_sym_false] = ACTIONS(5685), + [aux_sym__val_number_decimal_token1] = ACTIONS(5687), + [aux_sym__val_number_decimal_token2] = ACTIONS(5687), + [anon_sym_DOT2] = ACTIONS(5689), + [aux_sym__val_number_decimal_token3] = ACTIONS(5691), + [aux_sym__val_number_token1] = ACTIONS(5693), + [aux_sym__val_number_token2] = ACTIONS(5693), + [aux_sym__val_number_token3] = ACTIONS(5693), + [aux_sym__val_number_token4] = ACTIONS(5693), + [aux_sym__val_number_token5] = ACTIONS(5693), + [aux_sym__val_number_token6] = ACTIONS(5693), + [anon_sym_0b] = ACTIONS(2695), + [anon_sym_0o] = ACTIONS(2697), + [anon_sym_0x] = ACTIONS(2697), + [sym_val_date] = ACTIONS(5695), + [anon_sym_DQUOTE] = ACTIONS(5697), + [sym__str_single_quotes] = ACTIONS(5699), + [sym__str_back_ticks] = ACTIONS(5699), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5703), [anon_sym_POUND] = ACTIONS(113), }, - [1831] = { - [sym_comment] = STATE(1831), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_COMMA] = ACTIONS(1368), - [anon_sym_RBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [sym__entry_separator] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1368), - [anon_sym_out_GT] = ACTIONS(1368), - [anon_sym_e_GT] = ACTIONS(1368), - [anon_sym_o_GT] = ACTIONS(1368), - [anon_sym_err_PLUSout_GT] = ACTIONS(1368), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1368), - [anon_sym_o_PLUSe_GT] = ACTIONS(1368), - [anon_sym_e_PLUSo_GT] = ACTIONS(1368), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1368), + [2042] = { + [sym_comment] = STATE(2042), + [ts_builtin_sym_end] = ACTIONS(5215), + [anon_sym_export] = ACTIONS(5213), + [anon_sym_alias] = ACTIONS(5213), + [anon_sym_let] = ACTIONS(5213), + [anon_sym_let_DASHenv] = ACTIONS(5213), + [anon_sym_mut] = ACTIONS(5213), + [anon_sym_const] = ACTIONS(5213), + [anon_sym_SEMI] = ACTIONS(5213), + [sym_cmd_identifier] = ACTIONS(5213), + [anon_sym_LF] = ACTIONS(5215), + [anon_sym_def] = ACTIONS(5213), + [anon_sym_export_DASHenv] = ACTIONS(5213), + [anon_sym_extern] = ACTIONS(5213), + [anon_sym_module] = ACTIONS(5213), + [anon_sym_use] = ACTIONS(5213), + [anon_sym_LBRACK] = ACTIONS(5213), + [anon_sym_LPAREN] = ACTIONS(5213), + [anon_sym_DOLLAR] = ACTIONS(5213), + [anon_sym_error] = ACTIONS(5213), + [anon_sym_DASH_DASH] = ACTIONS(5213), + [anon_sym_DASH] = ACTIONS(5213), + [anon_sym_break] = ACTIONS(5213), + [anon_sym_continue] = ACTIONS(5213), + [anon_sym_for] = ACTIONS(5213), + [anon_sym_loop] = ACTIONS(5213), + [anon_sym_while] = ACTIONS(5213), + [anon_sym_do] = ACTIONS(5213), + [anon_sym_if] = ACTIONS(5213), + [anon_sym_match] = ACTIONS(5213), + [anon_sym_LBRACE] = ACTIONS(5213), + [anon_sym_DOT_DOT] = ACTIONS(5213), + [anon_sym_try] = ACTIONS(5213), + [anon_sym_return] = ACTIONS(5213), + [anon_sym_source] = ACTIONS(5213), + [anon_sym_source_DASHenv] = ACTIONS(5213), + [anon_sym_register] = ACTIONS(5213), + [anon_sym_hide] = ACTIONS(5213), + [anon_sym_hide_DASHenv] = ACTIONS(5213), + [anon_sym_overlay] = ACTIONS(5213), + [anon_sym_as] = ACTIONS(5213), + [anon_sym_where] = ACTIONS(5213), + [anon_sym_not] = ACTIONS(5213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5213), + [anon_sym_DOT_DOT_LT] = ACTIONS(5213), + [anon_sym_null] = ACTIONS(5213), + [anon_sym_true] = ACTIONS(5213), + [anon_sym_false] = ACTIONS(5213), + [aux_sym__val_number_decimal_token1] = ACTIONS(5213), + [aux_sym__val_number_decimal_token2] = ACTIONS(5213), + [anon_sym_DOT2] = ACTIONS(5213), + [aux_sym__val_number_decimal_token3] = ACTIONS(5213), + [aux_sym__val_number_token1] = ACTIONS(5213), + [aux_sym__val_number_token2] = ACTIONS(5213), + [aux_sym__val_number_token3] = ACTIONS(5213), + [aux_sym__val_number_token4] = ACTIONS(5213), + [aux_sym__val_number_token5] = ACTIONS(5213), + [aux_sym__val_number_token6] = ACTIONS(5213), + [anon_sym_0b] = ACTIONS(5213), + [anon_sym_0o] = ACTIONS(5213), + [anon_sym_0x] = ACTIONS(5213), + [sym_val_date] = ACTIONS(5213), + [anon_sym_DQUOTE] = ACTIONS(5213), + [sym__str_single_quotes] = ACTIONS(5213), + [sym__str_back_ticks] = ACTIONS(5213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5213), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5213), + [anon_sym_CARET] = ACTIONS(5213), [anon_sym_POUND] = ACTIONS(113), }, - [1832] = { - [sym_comment] = STATE(1832), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_COMMA] = ACTIONS(1368), - [anon_sym_RBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [sym__entry_separator] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1368), - [anon_sym_out_GT] = ACTIONS(1368), - [anon_sym_e_GT] = ACTIONS(1368), - [anon_sym_o_GT] = ACTIONS(1368), - [anon_sym_err_PLUSout_GT] = ACTIONS(1368), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1368), - [anon_sym_o_PLUSe_GT] = ACTIONS(1368), - [anon_sym_e_PLUSo_GT] = ACTIONS(1368), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1368), + [2043] = { + [sym_comment] = STATE(2043), + [ts_builtin_sym_end] = ACTIONS(5219), + [anon_sym_export] = ACTIONS(5217), + [anon_sym_alias] = ACTIONS(5217), + [anon_sym_let] = ACTIONS(5217), + [anon_sym_let_DASHenv] = ACTIONS(5217), + [anon_sym_mut] = ACTIONS(5217), + [anon_sym_const] = ACTIONS(5217), + [anon_sym_SEMI] = ACTIONS(5217), + [sym_cmd_identifier] = ACTIONS(5217), + [anon_sym_LF] = ACTIONS(5219), + [anon_sym_def] = ACTIONS(5217), + [anon_sym_export_DASHenv] = ACTIONS(5217), + [anon_sym_extern] = ACTIONS(5217), + [anon_sym_module] = ACTIONS(5217), + [anon_sym_use] = ACTIONS(5217), + [anon_sym_LBRACK] = ACTIONS(5217), + [anon_sym_LPAREN] = ACTIONS(5217), + [anon_sym_DOLLAR] = ACTIONS(5217), + [anon_sym_error] = ACTIONS(5217), + [anon_sym_DASH_DASH] = ACTIONS(5217), + [anon_sym_DASH] = ACTIONS(5217), + [anon_sym_break] = ACTIONS(5217), + [anon_sym_continue] = ACTIONS(5217), + [anon_sym_for] = ACTIONS(5217), + [anon_sym_loop] = ACTIONS(5217), + [anon_sym_while] = ACTIONS(5217), + [anon_sym_do] = ACTIONS(5217), + [anon_sym_if] = ACTIONS(5217), + [anon_sym_match] = ACTIONS(5217), + [anon_sym_LBRACE] = ACTIONS(5217), + [anon_sym_DOT_DOT] = ACTIONS(5217), + [anon_sym_try] = ACTIONS(5217), + [anon_sym_return] = ACTIONS(5217), + [anon_sym_source] = ACTIONS(5217), + [anon_sym_source_DASHenv] = ACTIONS(5217), + [anon_sym_register] = ACTIONS(5217), + [anon_sym_hide] = ACTIONS(5217), + [anon_sym_hide_DASHenv] = ACTIONS(5217), + [anon_sym_overlay] = ACTIONS(5217), + [anon_sym_as] = ACTIONS(5217), + [anon_sym_where] = ACTIONS(5217), + [anon_sym_not] = ACTIONS(5217), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5217), + [anon_sym_DOT_DOT_LT] = ACTIONS(5217), + [anon_sym_null] = ACTIONS(5217), + [anon_sym_true] = ACTIONS(5217), + [anon_sym_false] = ACTIONS(5217), + [aux_sym__val_number_decimal_token1] = ACTIONS(5217), + [aux_sym__val_number_decimal_token2] = ACTIONS(5217), + [anon_sym_DOT2] = ACTIONS(5217), + [aux_sym__val_number_decimal_token3] = ACTIONS(5217), + [aux_sym__val_number_token1] = ACTIONS(5217), + [aux_sym__val_number_token2] = ACTIONS(5217), + [aux_sym__val_number_token3] = ACTIONS(5217), + [aux_sym__val_number_token4] = ACTIONS(5217), + [aux_sym__val_number_token5] = ACTIONS(5217), + [aux_sym__val_number_token6] = ACTIONS(5217), + [anon_sym_0b] = ACTIONS(5217), + [anon_sym_0o] = ACTIONS(5217), + [anon_sym_0x] = ACTIONS(5217), + [sym_val_date] = ACTIONS(5217), + [anon_sym_DQUOTE] = ACTIONS(5217), + [sym__str_single_quotes] = ACTIONS(5217), + [sym__str_back_ticks] = ACTIONS(5217), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5217), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5217), + [anon_sym_CARET] = ACTIONS(5217), [anon_sym_POUND] = ACTIONS(113), }, - [1833] = { - [sym_comment] = STATE(1833), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_COMMA] = ACTIONS(1368), - [anon_sym_RBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [sym__entry_separator] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1368), - [anon_sym_out_GT] = ACTIONS(1368), - [anon_sym_e_GT] = ACTIONS(1368), - [anon_sym_o_GT] = ACTIONS(1368), - [anon_sym_err_PLUSout_GT] = ACTIONS(1368), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1368), - [anon_sym_o_PLUSe_GT] = ACTIONS(1368), - [anon_sym_e_PLUSo_GT] = ACTIONS(1368), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), + [2044] = { + [sym_expr_parenthesized] = STATE(10494), + [sym_val_variable] = STATE(10494), + [sym__var] = STATE(7000), + [sym_val_number] = STATE(10494), + [sym__val_number_decimal] = STATE(4911), + [sym__val_number] = STATE(4922), + [sym_val_string] = STATE(10494), + [sym__str_double_quotes] = STATE(6592), + [sym_record_body] = STATE(10629), + [sym_record_entry] = STATE(10004), + [sym__record_key] = STATE(10433), + [sym_comment] = STATE(2044), + [aux_sym_record_body_repeat1] = STATE(2422), + [anon_sym_export] = ACTIONS(255), + [anon_sym_alias] = ACTIONS(255), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(255), + [anon_sym_const] = ACTIONS(255), + [sym_cmd_identifier] = ACTIONS(255), + [anon_sym_def] = ACTIONS(255), + [anon_sym_export_DASHenv] = ACTIONS(255), + [anon_sym_extern] = ACTIONS(255), + [anon_sym_module] = ACTIONS(255), + [anon_sym_use] = ACTIONS(255), + [anon_sym_LPAREN] = ACTIONS(5651), + [anon_sym_DOLLAR] = ACTIONS(5725), + [anon_sym_error] = ACTIONS(255), + [anon_sym_list] = ACTIONS(255), + [anon_sym_DASH] = ACTIONS(189), + [anon_sym_break] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_for] = ACTIONS(255), + [anon_sym_in] = ACTIONS(255), + [anon_sym_loop] = ACTIONS(255), + [anon_sym_make] = ACTIONS(255), + [anon_sym_while] = ACTIONS(255), + [anon_sym_do] = ACTIONS(255), + [anon_sym_if] = ACTIONS(255), + [anon_sym_else] = ACTIONS(255), + [anon_sym_match] = ACTIONS(255), + [anon_sym_RBRACE] = ACTIONS(5790), + [anon_sym_try] = ACTIONS(255), + [anon_sym_catch] = ACTIONS(255), + [anon_sym_return] = ACTIONS(255), + [anon_sym_source] = ACTIONS(255), + [anon_sym_source_DASHenv] = ACTIONS(255), + [anon_sym_register] = ACTIONS(255), + [anon_sym_hide] = ACTIONS(255), + [anon_sym_hide_DASHenv] = ACTIONS(255), + [anon_sym_overlay] = ACTIONS(255), + [anon_sym_new] = ACTIONS(255), + [anon_sym_as] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(189), + [aux_sym__val_number_decimal_token1] = ACTIONS(5657), + [aux_sym__val_number_decimal_token2] = ACTIONS(5659), + [anon_sym_DOT2] = ACTIONS(5661), + [aux_sym__val_number_decimal_token3] = ACTIONS(5663), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(5665), + [aux_sym__val_number_token5] = ACTIONS(3124), + [aux_sym__val_number_token6] = ACTIONS(5665), + [anon_sym_DQUOTE] = ACTIONS(2838), + [sym__str_single_quotes] = ACTIONS(2840), + [sym__str_back_ticks] = ACTIONS(2840), + [aux_sym__record_key_token2] = ACTIONS(225), + [anon_sym_POUND] = ACTIONS(3), }, - [1834] = { - [sym_comment] = STATE(1834), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_COMMA] = ACTIONS(1368), - [anon_sym_RBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [sym__entry_separator] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1368), - [anon_sym_out_GT] = ACTIONS(1368), - [anon_sym_e_GT] = ACTIONS(1368), - [anon_sym_o_GT] = ACTIONS(1368), - [anon_sym_err_PLUSout_GT] = ACTIONS(1368), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1368), - [anon_sym_o_PLUSe_GT] = ACTIONS(1368), - [anon_sym_e_PLUSo_GT] = ACTIONS(1368), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), + [2045] = { + [sym_match_arm] = STATE(4342), + [sym_default_arm] = STATE(10587), + [sym_match_pattern] = STATE(10508), + [sym__match_pattern] = STATE(8876), + [sym__match_pattern_expression] = STATE(9859), + [sym__match_pattern_value] = STATE(9862), + [sym__match_pattern_list] = STATE(9863), + [sym__match_pattern_record] = STATE(9864), + [sym__expr_unary_minus] = STATE(9869), + [sym_expr_parenthesized] = STATE(8297), + [sym_val_range] = STATE(9862), + [sym__val_range] = STATE(10105), + [sym_val_nothing] = STATE(9875), + [sym_val_bool] = STATE(9626), + [sym_val_variable] = STATE(8298), + [sym__var] = STATE(3929), + [sym_val_number] = STATE(9875), + [sym__val_number_decimal] = STATE(7214), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(9875), + [sym_val_filesize] = STATE(9875), + [sym_val_binary] = STATE(9875), + [sym_val_string] = STATE(9875), + [sym__str_double_quotes] = STATE(5067), + [sym_val_table] = STATE(9875), + [sym_unquoted] = STATE(9878), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(2045), + [aux_sym_ctrl_match_repeat1] = STATE(2048), + [anon_sym_LBRACK] = ACTIONS(5733), + [anon_sym_LPAREN] = ACTIONS(3100), + [anon_sym_DOLLAR] = ACTIONS(5735), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(5737), + [anon_sym_RBRACE] = ACTIONS(5792), + [anon_sym__] = ACTIONS(5741), + [anon_sym_DOT_DOT] = ACTIONS(5743), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5745), + [anon_sym_DOT_DOT_LT] = ACTIONS(5745), + [anon_sym_null] = ACTIONS(5747), + [anon_sym_true] = ACTIONS(5749), + [anon_sym_false] = ACTIONS(5749), + [aux_sym__val_number_decimal_token1] = ACTIONS(5751), + [aux_sym__val_number_decimal_token2] = ACTIONS(5753), + [anon_sym_DOT2] = ACTIONS(5755), + [aux_sym__val_number_decimal_token3] = ACTIONS(5757), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(5759), + [aux_sym__val_number_token5] = ACTIONS(5759), + [aux_sym__val_number_token6] = ACTIONS(5759), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(5761), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), + [anon_sym_POUND] = ACTIONS(3), }, - [1835] = { - [sym_comment] = STATE(1835), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_COMMA] = ACTIONS(1368), - [anon_sym_RBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [sym__entry_separator] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1368), - [anon_sym_out_GT] = ACTIONS(1368), - [anon_sym_e_GT] = ACTIONS(1368), - [anon_sym_o_GT] = ACTIONS(1368), - [anon_sym_err_PLUSout_GT] = ACTIONS(1368), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1368), - [anon_sym_o_PLUSe_GT] = ACTIONS(1368), - [anon_sym_e_PLUSo_GT] = ACTIONS(1368), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), + [2046] = { + [sym_match_arm] = STATE(4342), + [sym_default_arm] = STATE(10289), + [sym_match_pattern] = STATE(10508), + [sym__match_pattern] = STATE(8876), + [sym__match_pattern_expression] = STATE(9859), + [sym__match_pattern_value] = STATE(9862), + [sym__match_pattern_list] = STATE(9863), + [sym__match_pattern_record] = STATE(9864), + [sym__expr_unary_minus] = STATE(9869), + [sym_expr_parenthesized] = STATE(8297), + [sym_val_range] = STATE(9862), + [sym__val_range] = STATE(10105), + [sym_val_nothing] = STATE(9875), + [sym_val_bool] = STATE(9626), + [sym_val_variable] = STATE(8298), + [sym__var] = STATE(3929), + [sym_val_number] = STATE(9875), + [sym__val_number_decimal] = STATE(7214), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(9875), + [sym_val_filesize] = STATE(9875), + [sym_val_binary] = STATE(9875), + [sym_val_string] = STATE(9875), + [sym__str_double_quotes] = STATE(5067), + [sym_val_table] = STATE(9875), + [sym_unquoted] = STATE(9878), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(2046), + [aux_sym_ctrl_match_repeat1] = STATE(2049), + [anon_sym_LBRACK] = ACTIONS(5733), + [anon_sym_LPAREN] = ACTIONS(3100), + [anon_sym_DOLLAR] = ACTIONS(5735), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(5737), + [anon_sym_RBRACE] = ACTIONS(5794), + [anon_sym__] = ACTIONS(5741), + [anon_sym_DOT_DOT] = ACTIONS(5743), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5745), + [anon_sym_DOT_DOT_LT] = ACTIONS(5745), + [anon_sym_null] = ACTIONS(5747), + [anon_sym_true] = ACTIONS(5749), + [anon_sym_false] = ACTIONS(5749), + [aux_sym__val_number_decimal_token1] = ACTIONS(5751), + [aux_sym__val_number_decimal_token2] = ACTIONS(5753), + [anon_sym_DOT2] = ACTIONS(5755), + [aux_sym__val_number_decimal_token3] = ACTIONS(5757), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(5759), + [aux_sym__val_number_token5] = ACTIONS(5759), + [aux_sym__val_number_token6] = ACTIONS(5759), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(5761), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), + [anon_sym_POUND] = ACTIONS(3), }, - [1836] = { - [sym_comment] = STATE(1836), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_COMMA] = ACTIONS(1368), - [anon_sym_RBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [sym__entry_separator] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1368), - [anon_sym_out_GT] = ACTIONS(1368), - [anon_sym_e_GT] = ACTIONS(1368), - [anon_sym_o_GT] = ACTIONS(1368), - [anon_sym_err_PLUSout_GT] = ACTIONS(1368), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1368), - [anon_sym_o_PLUSe_GT] = ACTIONS(1368), - [anon_sym_e_PLUSo_GT] = ACTIONS(1368), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), + [2047] = { + [sym__match_pattern_record_variable] = STATE(3152), + [sym_expr_parenthesized] = STATE(10732), + [sym_val_variable] = STATE(3088), + [sym__var] = STATE(2820), + [sym_val_number] = STATE(10732), + [sym__val_number_decimal] = STATE(4911), + [sym__val_number] = STATE(4922), + [sym_val_string] = STATE(10732), + [sym__str_double_quotes] = STATE(6592), + [sym_record_entry] = STATE(3152), + [sym__record_key] = STATE(10419), + [sym_comment] = STATE(2047), + [aux_sym__match_pattern_record_repeat1] = STATE(2052), + [anon_sym_export] = ACTIONS(5649), + [anon_sym_alias] = ACTIONS(5649), + [anon_sym_let] = ACTIONS(5649), + [anon_sym_let_DASHenv] = ACTIONS(5649), + [anon_sym_mut] = ACTIONS(5649), + [anon_sym_const] = ACTIONS(5649), + [sym_cmd_identifier] = ACTIONS(5649), + [anon_sym_def] = ACTIONS(5649), + [anon_sym_export_DASHenv] = ACTIONS(5649), + [anon_sym_extern] = ACTIONS(5649), + [anon_sym_module] = ACTIONS(5649), + [anon_sym_use] = ACTIONS(5649), + [anon_sym_LPAREN] = ACTIONS(5651), + [anon_sym_DOLLAR] = ACTIONS(5653), + [anon_sym_error] = ACTIONS(5649), + [anon_sym_list] = ACTIONS(5649), + [anon_sym_DASH] = ACTIONS(189), + [anon_sym_break] = ACTIONS(5649), + [anon_sym_continue] = ACTIONS(5649), + [anon_sym_for] = ACTIONS(5649), + [anon_sym_in] = ACTIONS(5649), + [anon_sym_loop] = ACTIONS(5649), + [anon_sym_make] = ACTIONS(5649), + [anon_sym_while] = ACTIONS(5649), + [anon_sym_do] = ACTIONS(5649), + [anon_sym_if] = ACTIONS(5649), + [anon_sym_else] = ACTIONS(5649), + [anon_sym_match] = ACTIONS(5649), + [anon_sym_RBRACE] = ACTIONS(5796), + [anon_sym_try] = ACTIONS(5649), + [anon_sym_catch] = ACTIONS(5649), + [anon_sym_return] = ACTIONS(5649), + [anon_sym_source] = ACTIONS(5649), + [anon_sym_source_DASHenv] = ACTIONS(5649), + [anon_sym_register] = ACTIONS(5649), + [anon_sym_hide] = ACTIONS(5649), + [anon_sym_hide_DASHenv] = ACTIONS(5649), + [anon_sym_overlay] = ACTIONS(5649), + [anon_sym_new] = ACTIONS(5649), + [anon_sym_as] = ACTIONS(5649), + [anon_sym_PLUS] = ACTIONS(189), + [aux_sym__val_number_decimal_token1] = ACTIONS(5657), + [aux_sym__val_number_decimal_token2] = ACTIONS(5659), + [anon_sym_DOT2] = ACTIONS(5661), + [aux_sym__val_number_decimal_token3] = ACTIONS(5663), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(5665), + [aux_sym__val_number_token5] = ACTIONS(3124), + [aux_sym__val_number_token6] = ACTIONS(5665), + [anon_sym_DQUOTE] = ACTIONS(2838), + [sym__str_single_quotes] = ACTIONS(2840), + [sym__str_back_ticks] = ACTIONS(2840), + [aux_sym__record_key_token2] = ACTIONS(225), + [anon_sym_POUND] = ACTIONS(3), }, - [1837] = { - [sym_comment] = STATE(1837), - [anon_sym_export] = ACTIONS(1342), - [anon_sym_alias] = ACTIONS(1342), - [anon_sym_let] = ACTIONS(1342), - [anon_sym_let_DASHenv] = ACTIONS(1342), - [anon_sym_mut] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_SEMI] = ACTIONS(1342), - [sym_cmd_identifier] = ACTIONS(1342), - [anon_sym_LF] = ACTIONS(1344), - [anon_sym_def] = ACTIONS(1342), - [anon_sym_export_DASHenv] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1342), - [anon_sym_module] = ACTIONS(1342), - [anon_sym_use] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_RPAREN] = ACTIONS(1342), - [anon_sym_DOLLAR] = ACTIONS(1342), - [anon_sym_error] = ACTIONS(1342), - [anon_sym_DASH_DASH] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_loop] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_match] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_RBRACE] = ACTIONS(1342), - [anon_sym_DOT_DOT] = ACTIONS(1342), - [anon_sym_try] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_source] = ACTIONS(1342), - [anon_sym_source_DASHenv] = ACTIONS(1342), - [anon_sym_register] = ACTIONS(1342), - [anon_sym_hide] = ACTIONS(1342), - [anon_sym_hide_DASHenv] = ACTIONS(1342), - [anon_sym_overlay] = ACTIONS(1342), - [anon_sym_as] = ACTIONS(1342), - [anon_sym_where] = ACTIONS(1342), - [anon_sym_not] = ACTIONS(1342), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1342), - [anon_sym_DOT_DOT_LT] = ACTIONS(1342), - [anon_sym_null] = ACTIONS(1342), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym__val_number_decimal_token1] = ACTIONS(1342), - [aux_sym__val_number_decimal_token2] = ACTIONS(1342), - [anon_sym_DOT2] = ACTIONS(1342), - [aux_sym__val_number_decimal_token3] = ACTIONS(1342), - [aux_sym__val_number_token1] = ACTIONS(1342), - [aux_sym__val_number_token2] = ACTIONS(1342), - [aux_sym__val_number_token3] = ACTIONS(1342), - [aux_sym__val_number_token4] = ACTIONS(1342), - [aux_sym__val_number_token5] = ACTIONS(1342), - [aux_sym__val_number_token6] = ACTIONS(1342), - [anon_sym_0b] = ACTIONS(1342), - [anon_sym_0o] = ACTIONS(1342), - [anon_sym_0x] = ACTIONS(1342), - [sym_val_date] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [sym__str_single_quotes] = ACTIONS(1342), - [sym__str_back_ticks] = ACTIONS(1342), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1342), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1342), - [anon_sym_CARET] = ACTIONS(1342), - [anon_sym_POUND] = ACTIONS(113), + [2048] = { + [sym_match_arm] = STATE(4342), + [sym_default_arm] = STATE(10266), + [sym_match_pattern] = STATE(10508), + [sym__match_pattern] = STATE(8876), + [sym__match_pattern_expression] = STATE(9859), + [sym__match_pattern_value] = STATE(9862), + [sym__match_pattern_list] = STATE(9863), + [sym__match_pattern_record] = STATE(9864), + [sym__expr_unary_minus] = STATE(9869), + [sym_expr_parenthesized] = STATE(8297), + [sym_val_range] = STATE(9862), + [sym__val_range] = STATE(10105), + [sym_val_nothing] = STATE(9875), + [sym_val_bool] = STATE(9626), + [sym_val_variable] = STATE(8298), + [sym__var] = STATE(3929), + [sym_val_number] = STATE(9875), + [sym__val_number_decimal] = STATE(7214), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(9875), + [sym_val_filesize] = STATE(9875), + [sym_val_binary] = STATE(9875), + [sym_val_string] = STATE(9875), + [sym__str_double_quotes] = STATE(5067), + [sym_val_table] = STATE(9875), + [sym_unquoted] = STATE(9878), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(2048), + [aux_sym_ctrl_match_repeat1] = STATE(2368), + [anon_sym_LBRACK] = ACTIONS(5733), + [anon_sym_LPAREN] = ACTIONS(3100), + [anon_sym_DOLLAR] = ACTIONS(5735), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(5737), + [anon_sym_RBRACE] = ACTIONS(5798), + [anon_sym__] = ACTIONS(5741), + [anon_sym_DOT_DOT] = ACTIONS(5743), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5745), + [anon_sym_DOT_DOT_LT] = ACTIONS(5745), + [anon_sym_null] = ACTIONS(5747), + [anon_sym_true] = ACTIONS(5749), + [anon_sym_false] = ACTIONS(5749), + [aux_sym__val_number_decimal_token1] = ACTIONS(5751), + [aux_sym__val_number_decimal_token2] = ACTIONS(5753), + [anon_sym_DOT2] = ACTIONS(5755), + [aux_sym__val_number_decimal_token3] = ACTIONS(5757), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(5759), + [aux_sym__val_number_token5] = ACTIONS(5759), + [aux_sym__val_number_token6] = ACTIONS(5759), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(5761), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), + [anon_sym_POUND] = ACTIONS(3), }, - [1838] = { - [sym_comment] = STATE(1838), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_alias] = ACTIONS(1362), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_let_DASHenv] = ACTIONS(1362), - [anon_sym_mut] = ACTIONS(1362), - [anon_sym_const] = ACTIONS(1362), - [anon_sym_SEMI] = ACTIONS(1362), - [sym_cmd_identifier] = ACTIONS(1362), - [anon_sym_LF] = ACTIONS(1364), - [anon_sym_def] = ACTIONS(1362), - [anon_sym_export_DASHenv] = ACTIONS(1362), - [anon_sym_extern] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_use] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1362), - [anon_sym_LPAREN] = ACTIONS(1362), - [anon_sym_RPAREN] = ACTIONS(1362), - [anon_sym_DOLLAR] = ACTIONS(1362), - [anon_sym_error] = ACTIONS(1362), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_break] = ACTIONS(1362), - [anon_sym_continue] = ACTIONS(1362), - [anon_sym_for] = ACTIONS(1362), - [anon_sym_loop] = ACTIONS(1362), - [anon_sym_while] = ACTIONS(1362), - [anon_sym_do] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1362), - [anon_sym_match] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_RBRACE] = ACTIONS(1362), - [anon_sym_DOT_DOT] = ACTIONS(1362), - [anon_sym_try] = ACTIONS(1362), - [anon_sym_return] = ACTIONS(1362), - [anon_sym_source] = ACTIONS(1362), - [anon_sym_source_DASHenv] = ACTIONS(1362), - [anon_sym_register] = ACTIONS(1362), - [anon_sym_hide] = ACTIONS(1362), - [anon_sym_hide_DASHenv] = ACTIONS(1362), - [anon_sym_overlay] = ACTIONS(1362), - [anon_sym_as] = ACTIONS(1362), - [anon_sym_where] = ACTIONS(1362), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1362), - [anon_sym_DOT_DOT_LT] = ACTIONS(1362), - [anon_sym_null] = ACTIONS(1362), - [anon_sym_true] = ACTIONS(1362), - [anon_sym_false] = ACTIONS(1362), - [aux_sym__val_number_decimal_token1] = ACTIONS(1362), - [aux_sym__val_number_decimal_token2] = ACTIONS(1362), - [anon_sym_DOT2] = ACTIONS(1362), - [aux_sym__val_number_decimal_token3] = ACTIONS(1362), - [aux_sym__val_number_token1] = ACTIONS(1362), - [aux_sym__val_number_token2] = ACTIONS(1362), - [aux_sym__val_number_token3] = ACTIONS(1362), - [aux_sym__val_number_token4] = ACTIONS(1362), - [aux_sym__val_number_token5] = ACTIONS(1362), - [aux_sym__val_number_token6] = ACTIONS(1362), - [anon_sym_0b] = ACTIONS(1362), - [anon_sym_0o] = ACTIONS(1362), - [anon_sym_0x] = ACTIONS(1362), - [sym_val_date] = ACTIONS(1362), - [anon_sym_DQUOTE] = ACTIONS(1362), - [sym__str_single_quotes] = ACTIONS(1362), - [sym__str_back_ticks] = ACTIONS(1362), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1362), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1362), - [anon_sym_CARET] = ACTIONS(1362), - [anon_sym_POUND] = ACTIONS(113), + [2049] = { + [sym_match_arm] = STATE(4342), + [sym_default_arm] = STATE(10308), + [sym_match_pattern] = STATE(10508), + [sym__match_pattern] = STATE(8876), + [sym__match_pattern_expression] = STATE(9859), + [sym__match_pattern_value] = STATE(9862), + [sym__match_pattern_list] = STATE(9863), + [sym__match_pattern_record] = STATE(9864), + [sym__expr_unary_minus] = STATE(9869), + [sym_expr_parenthesized] = STATE(8297), + [sym_val_range] = STATE(9862), + [sym__val_range] = STATE(10105), + [sym_val_nothing] = STATE(9875), + [sym_val_bool] = STATE(9626), + [sym_val_variable] = STATE(8298), + [sym__var] = STATE(3929), + [sym_val_number] = STATE(9875), + [sym__val_number_decimal] = STATE(7214), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(9875), + [sym_val_filesize] = STATE(9875), + [sym_val_binary] = STATE(9875), + [sym_val_string] = STATE(9875), + [sym__str_double_quotes] = STATE(5067), + [sym_val_table] = STATE(9875), + [sym_unquoted] = STATE(9878), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(2049), + [aux_sym_ctrl_match_repeat1] = STATE(2368), + [anon_sym_LBRACK] = ACTIONS(5733), + [anon_sym_LPAREN] = ACTIONS(3100), + [anon_sym_DOLLAR] = ACTIONS(5735), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(5737), + [anon_sym_RBRACE] = ACTIONS(5800), + [anon_sym__] = ACTIONS(5741), + [anon_sym_DOT_DOT] = ACTIONS(5743), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5745), + [anon_sym_DOT_DOT_LT] = ACTIONS(5745), + [anon_sym_null] = ACTIONS(5747), + [anon_sym_true] = ACTIONS(5749), + [anon_sym_false] = ACTIONS(5749), + [aux_sym__val_number_decimal_token1] = ACTIONS(5751), + [aux_sym__val_number_decimal_token2] = ACTIONS(5753), + [anon_sym_DOT2] = ACTIONS(5755), + [aux_sym__val_number_decimal_token3] = ACTIONS(5757), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(5759), + [aux_sym__val_number_token5] = ACTIONS(5759), + [aux_sym__val_number_token6] = ACTIONS(5759), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(5761), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), + [anon_sym_POUND] = ACTIONS(3), }, - [1839] = { - [sym_comment] = STATE(1839), - [anon_sym_LBRACK] = ACTIONS(1194), - [anon_sym_COMMA] = ACTIONS(1194), - [anon_sym_RBRACK] = ACTIONS(1194), - [anon_sym_LPAREN] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1194), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_in] = ACTIONS(1198), - [anon_sym_LBRACE] = ACTIONS(1194), - [anon_sym_DOT_DOT] = ACTIONS(1194), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_STAR_STAR] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_SLASH] = ACTIONS(1198), - [anon_sym_mod] = ACTIONS(1198), - [anon_sym_SLASH_SLASH] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1200), - [anon_sym_bit_DASHshl] = ACTIONS(1198), - [anon_sym_bit_DASHshr] = ACTIONS(1198), - [anon_sym_EQ_EQ] = ACTIONS(1198), - [anon_sym_BANG_EQ] = ACTIONS(1198), - [anon_sym_LT2] = ACTIONS(1198), - [anon_sym_LT_EQ] = ACTIONS(1198), - [anon_sym_GT_EQ] = ACTIONS(1198), - [anon_sym_not_DASHin] = ACTIONS(1198), - [anon_sym_starts_DASHwith] = ACTIONS(1198), - [anon_sym_ends_DASHwith] = ACTIONS(1198), - [anon_sym_EQ_TILDE] = ACTIONS(1198), - [anon_sym_BANG_TILDE] = ACTIONS(1198), - [anon_sym_bit_DASHand] = ACTIONS(1198), - [anon_sym_bit_DASHxor] = ACTIONS(1198), - [anon_sym_bit_DASHor] = ACTIONS(1198), - [anon_sym_and] = ACTIONS(1198), - [anon_sym_xor] = ACTIONS(1198), - [anon_sym_or] = ACTIONS(1198), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1194), - [anon_sym_DOT_DOT_LT] = ACTIONS(1194), - [anon_sym_null] = ACTIONS(1194), - [anon_sym_true] = ACTIONS(1194), - [anon_sym_false] = ACTIONS(1194), - [aux_sym__val_number_decimal_token1] = ACTIONS(1194), - [aux_sym__val_number_decimal_token2] = ACTIONS(1194), - [anon_sym_DOT2] = ACTIONS(1194), - [aux_sym__val_number_decimal_token3] = ACTIONS(1194), - [aux_sym__val_number_token1] = ACTIONS(1194), - [aux_sym__val_number_token2] = ACTIONS(1194), - [aux_sym__val_number_token3] = ACTIONS(1194), - [aux_sym__val_number_token4] = ACTIONS(1194), - [aux_sym__val_number_token5] = ACTIONS(1194), - [aux_sym__val_number_token6] = ACTIONS(1194), - [anon_sym_0b] = ACTIONS(1194), - [anon_sym_0o] = ACTIONS(1194), - [anon_sym_0x] = ACTIONS(1194), - [sym_val_date] = ACTIONS(1194), - [anon_sym_DQUOTE] = ACTIONS(1194), - [sym__str_single_quotes] = ACTIONS(1194), - [sym__str_back_ticks] = ACTIONS(1194), - [sym__entry_separator] = ACTIONS(1196), - [anon_sym_err_GT] = ACTIONS(1194), - [anon_sym_out_GT] = ACTIONS(1194), - [anon_sym_e_GT] = ACTIONS(1194), - [anon_sym_o_GT] = ACTIONS(1194), - [anon_sym_err_PLUSout_GT] = ACTIONS(1194), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1194), - [anon_sym_o_PLUSe_GT] = ACTIONS(1194), - [anon_sym_e_PLUSo_GT] = ACTIONS(1194), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1194), + [2050] = { + [sym__expression] = STATE(7218), + [sym_expr_unary] = STATE(5677), + [sym__expr_unary_minus] = STATE(5679), + [sym_expr_binary] = STATE(5677), + [sym__expr_binary_expression] = STATE(6377), + [sym_expr_parenthesized] = STATE(4919), + [sym_val_range] = STATE(8295), + [sym__value] = STATE(5677), + [sym_val_nothing] = STATE(5612), + [sym_val_bool] = STATE(5612), + [sym_val_variable] = STATE(4867), + [sym__var] = STATE(4310), + [sym_val_number] = STATE(5612), + [sym__val_number_decimal] = STATE(4408), + [sym__val_number] = STATE(5661), + [sym_val_duration] = STATE(5612), + [sym_val_filesize] = STATE(5612), + [sym_val_binary] = STATE(5612), + [sym_val_string] = STATE(5612), + [sym__str_double_quotes] = STATE(5733), + [sym_val_interpolated] = STATE(5612), + [sym__inter_single_quotes] = STATE(5590), + [sym__inter_double_quotes] = STATE(5591), + [sym_val_list] = STATE(5612), + [sym_val_record] = STATE(5612), + [sym_val_table] = STATE(5612), + [sym_val_closure] = STATE(5612), + [sym__flag] = STATE(2012), + [sym_short_flag] = STATE(4939), + [sym_long_flag] = STATE(4939), + [sym_long_flag_equals_value] = STATE(4865), + [sym_comment] = STATE(2050), + [ts_builtin_sym_end] = ACTIONS(4831), + [anon_sym_SEMI] = ACTIONS(4829), + [anon_sym_LF] = ACTIONS(4831), + [anon_sym_LBRACK] = ACTIONS(5667), + [anon_sym_LPAREN] = ACTIONS(5669), + [anon_sym_PIPE] = ACTIONS(4829), + [anon_sym_DOLLAR] = ACTIONS(2667), + [anon_sym_DASH_DASH] = ACTIONS(5671), + [anon_sym_DASH] = ACTIONS(5673), + [anon_sym_LBRACE] = ACTIONS(5675), + [anon_sym_DOT_DOT] = ACTIONS(5677), + [anon_sym_not] = ACTIONS(5679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5681), + [anon_sym_DOT_DOT_LT] = ACTIONS(5681), + [anon_sym_null] = ACTIONS(5683), + [anon_sym_true] = ACTIONS(5685), + [anon_sym_false] = ACTIONS(5685), + [aux_sym__val_number_decimal_token1] = ACTIONS(5687), + [aux_sym__val_number_decimal_token2] = ACTIONS(5687), + [anon_sym_DOT2] = ACTIONS(5689), + [aux_sym__val_number_decimal_token3] = ACTIONS(5691), + [aux_sym__val_number_token1] = ACTIONS(5693), + [aux_sym__val_number_token2] = ACTIONS(5693), + [aux_sym__val_number_token3] = ACTIONS(5693), + [aux_sym__val_number_token4] = ACTIONS(5693), + [aux_sym__val_number_token5] = ACTIONS(5693), + [aux_sym__val_number_token6] = ACTIONS(5693), + [anon_sym_0b] = ACTIONS(2695), + [anon_sym_0o] = ACTIONS(2697), + [anon_sym_0x] = ACTIONS(2697), + [sym_val_date] = ACTIONS(5695), + [anon_sym_DQUOTE] = ACTIONS(5697), + [sym__str_single_quotes] = ACTIONS(5699), + [sym__str_back_ticks] = ACTIONS(5699), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5703), [anon_sym_POUND] = ACTIONS(113), }, - [1840] = { - [sym_comment] = STATE(1840), - [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), - [anon_sym_SEMI] = ACTIONS(1294), - [sym_cmd_identifier] = ACTIONS(1294), - [anon_sym_LF] = 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(1294), - [anon_sym_LPAREN] = ACTIONS(1294), - [anon_sym_RPAREN] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_error] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_DASH] = 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(1294), - [anon_sym_RBRACE] = ACTIONS(1294), - [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_register] = 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(1294), - [anon_sym_not] = ACTIONS(1294), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1294), - [anon_sym_DOT_DOT_LT] = ACTIONS(1294), - [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(1294), - [anon_sym_DOT2] = ACTIONS(1294), - [aux_sym__val_number_decimal_token3] = ACTIONS(1294), - [aux_sym__val_number_token1] = ACTIONS(1294), - [aux_sym__val_number_token2] = ACTIONS(1294), - [aux_sym__val_number_token3] = ACTIONS(1294), - [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(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym__str_single_quotes] = ACTIONS(1294), - [sym__str_back_ticks] = ACTIONS(1294), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1294), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1294), - [anon_sym_CARET] = ACTIONS(1294), - [anon_sym_POUND] = ACTIONS(113), + [2051] = { + [sym_comment] = STATE(2051), + [anon_sym_LBRACK] = ACTIONS(1231), + [anon_sym_COMMA] = ACTIONS(1231), + [anon_sym_RBRACK] = ACTIONS(1231), + [anon_sym_LPAREN] = ACTIONS(1231), + [anon_sym_DOLLAR] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1229), + [anon_sym_DASH_DASH] = ACTIONS(1231), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_in] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [anon_sym_DOT_DOT] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1229), + [anon_sym_STAR_STAR] = ACTIONS(1231), + [anon_sym_PLUS_PLUS] = ACTIONS(1231), + [anon_sym_SLASH] = ACTIONS(1229), + [anon_sym_mod] = ACTIONS(1231), + [anon_sym_SLASH_SLASH] = ACTIONS(1231), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_bit_DASHshl] = ACTIONS(1231), + [anon_sym_bit_DASHshr] = ACTIONS(1231), + [anon_sym_EQ_EQ] = ACTIONS(1231), + [anon_sym_BANG_EQ] = ACTIONS(1231), + [anon_sym_LT2] = ACTIONS(1229), + [anon_sym_LT_EQ] = ACTIONS(1231), + [anon_sym_GT_EQ] = ACTIONS(1231), + [anon_sym_not_DASHin] = ACTIONS(1231), + [anon_sym_starts_DASHwith] = ACTIONS(1231), + [anon_sym_ends_DASHwith] = ACTIONS(1231), + [anon_sym_EQ_TILDE] = ACTIONS(1231), + [anon_sym_BANG_TILDE] = ACTIONS(1231), + [anon_sym_bit_DASHand] = ACTIONS(1231), + [anon_sym_bit_DASHxor] = ACTIONS(1231), + [anon_sym_bit_DASHor] = ACTIONS(1231), + [anon_sym_and] = ACTIONS(1231), + [anon_sym_xor] = ACTIONS(1231), + [anon_sym_or] = ACTIONS(1231), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1231), + [anon_sym_DOT_DOT_LT] = ACTIONS(1231), + [anon_sym_null] = ACTIONS(1231), + [anon_sym_true] = ACTIONS(1231), + [anon_sym_false] = ACTIONS(1231), + [aux_sym__val_number_decimal_token1] = ACTIONS(1229), + [aux_sym__val_number_decimal_token2] = ACTIONS(1231), + [anon_sym_DOT2] = ACTIONS(1229), + [aux_sym__val_number_decimal_token3] = ACTIONS(1231), + [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(1231), + [aux_sym__val_number_token5] = ACTIONS(1231), + [aux_sym__val_number_token6] = ACTIONS(1231), + [anon_sym_0b] = ACTIONS(1229), + [anon_sym_0o] = ACTIONS(1229), + [anon_sym_0x] = ACTIONS(1229), + [sym_val_date] = ACTIONS(1231), + [anon_sym_DQUOTE] = ACTIONS(1231), + [sym__str_single_quotes] = ACTIONS(1231), + [sym__str_back_ticks] = ACTIONS(1231), + [anon_sym_err_GT] = ACTIONS(1231), + [anon_sym_out_GT] = ACTIONS(1231), + [anon_sym_e_GT] = ACTIONS(1231), + [anon_sym_o_GT] = ACTIONS(1231), + [anon_sym_err_PLUSout_GT] = ACTIONS(1231), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1231), + [anon_sym_o_PLUSe_GT] = ACTIONS(1231), + [anon_sym_e_PLUSo_GT] = ACTIONS(1231), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1229), + [anon_sym_POUND] = ACTIONS(3), }, - [1841] = { - [sym_comment] = STATE(1841), - [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), - [anon_sym_SEMI] = ACTIONS(1294), - [sym_cmd_identifier] = ACTIONS(1294), - [anon_sym_LF] = 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(1294), - [anon_sym_LPAREN] = ACTIONS(1294), - [anon_sym_RPAREN] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_error] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_DASH] = 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(1294), - [anon_sym_RBRACE] = ACTIONS(1294), - [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_register] = 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(1294), - [anon_sym_not] = ACTIONS(1294), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1294), - [anon_sym_DOT_DOT_LT] = ACTIONS(1294), - [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(1294), - [anon_sym_DOT2] = ACTIONS(1294), - [aux_sym__val_number_decimal_token3] = ACTIONS(1294), - [aux_sym__val_number_token1] = ACTIONS(1294), - [aux_sym__val_number_token2] = ACTIONS(1294), - [aux_sym__val_number_token3] = ACTIONS(1294), - [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(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym__str_single_quotes] = ACTIONS(1294), - [sym__str_back_ticks] = ACTIONS(1294), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1294), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1294), - [anon_sym_CARET] = ACTIONS(1294), - [anon_sym_POUND] = ACTIONS(113), + [2052] = { + [sym__match_pattern_record_variable] = STATE(3152), + [sym_expr_parenthesized] = STATE(10732), + [sym_val_variable] = STATE(3088), + [sym__var] = STATE(2820), + [sym_val_number] = STATE(10732), + [sym__val_number_decimal] = STATE(4911), + [sym__val_number] = STATE(4922), + [sym_val_string] = STATE(10732), + [sym__str_double_quotes] = STATE(6592), + [sym_record_entry] = STATE(3152), + [sym__record_key] = STATE(10419), + [sym_comment] = STATE(2052), + [aux_sym__match_pattern_record_repeat1] = STATE(2122), + [anon_sym_export] = ACTIONS(5649), + [anon_sym_alias] = ACTIONS(5649), + [anon_sym_let] = ACTIONS(5649), + [anon_sym_let_DASHenv] = ACTIONS(5649), + [anon_sym_mut] = ACTIONS(5649), + [anon_sym_const] = ACTIONS(5649), + [sym_cmd_identifier] = ACTIONS(5649), + [anon_sym_def] = ACTIONS(5649), + [anon_sym_export_DASHenv] = ACTIONS(5649), + [anon_sym_extern] = ACTIONS(5649), + [anon_sym_module] = ACTIONS(5649), + [anon_sym_use] = ACTIONS(5649), + [anon_sym_LPAREN] = ACTIONS(5651), + [anon_sym_DOLLAR] = ACTIONS(5653), + [anon_sym_error] = ACTIONS(5649), + [anon_sym_list] = ACTIONS(5649), + [anon_sym_DASH] = ACTIONS(189), + [anon_sym_break] = ACTIONS(5649), + [anon_sym_continue] = ACTIONS(5649), + [anon_sym_for] = ACTIONS(5649), + [anon_sym_in] = ACTIONS(5649), + [anon_sym_loop] = ACTIONS(5649), + [anon_sym_make] = ACTIONS(5649), + [anon_sym_while] = ACTIONS(5649), + [anon_sym_do] = ACTIONS(5649), + [anon_sym_if] = ACTIONS(5649), + [anon_sym_else] = ACTIONS(5649), + [anon_sym_match] = ACTIONS(5649), + [anon_sym_RBRACE] = ACTIONS(5802), + [anon_sym_try] = ACTIONS(5649), + [anon_sym_catch] = ACTIONS(5649), + [anon_sym_return] = ACTIONS(5649), + [anon_sym_source] = ACTIONS(5649), + [anon_sym_source_DASHenv] = ACTIONS(5649), + [anon_sym_register] = ACTIONS(5649), + [anon_sym_hide] = ACTIONS(5649), + [anon_sym_hide_DASHenv] = ACTIONS(5649), + [anon_sym_overlay] = ACTIONS(5649), + [anon_sym_new] = ACTIONS(5649), + [anon_sym_as] = ACTIONS(5649), + [anon_sym_PLUS] = ACTIONS(189), + [aux_sym__val_number_decimal_token1] = ACTIONS(5657), + [aux_sym__val_number_decimal_token2] = ACTIONS(5659), + [anon_sym_DOT2] = ACTIONS(5661), + [aux_sym__val_number_decimal_token3] = ACTIONS(5663), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(5665), + [aux_sym__val_number_token5] = ACTIONS(3124), + [aux_sym__val_number_token6] = ACTIONS(5665), + [anon_sym_DQUOTE] = ACTIONS(2838), + [sym__str_single_quotes] = ACTIONS(2840), + [sym__str_back_ticks] = ACTIONS(2840), + [aux_sym__record_key_token2] = ACTIONS(225), + [anon_sym_POUND] = ACTIONS(3), }, - [1842] = { - [sym_comment] = STATE(1842), - [anon_sym_export] = ACTIONS(1308), - [anon_sym_alias] = ACTIONS(1308), - [anon_sym_let] = ACTIONS(1308), - [anon_sym_let_DASHenv] = ACTIONS(1308), - [anon_sym_mut] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [sym_cmd_identifier] = ACTIONS(1308), - [anon_sym_LF] = ACTIONS(1310), - [anon_sym_def] = ACTIONS(1308), - [anon_sym_export_DASHenv] = ACTIONS(1308), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym_module] = ACTIONS(1308), - [anon_sym_use] = ACTIONS(1308), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_LPAREN] = ACTIONS(1308), - [anon_sym_RPAREN] = ACTIONS(1308), - [anon_sym_DOLLAR] = ACTIONS(1308), - [anon_sym_error] = ACTIONS(1308), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_break] = ACTIONS(1308), - [anon_sym_continue] = ACTIONS(1308), - [anon_sym_for] = ACTIONS(1308), - [anon_sym_loop] = ACTIONS(1308), - [anon_sym_while] = ACTIONS(1308), - [anon_sym_do] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_match] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_DOT_DOT] = ACTIONS(1308), - [anon_sym_try] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1308), - [anon_sym_source] = ACTIONS(1308), - [anon_sym_source_DASHenv] = ACTIONS(1308), - [anon_sym_register] = ACTIONS(1308), - [anon_sym_hide] = ACTIONS(1308), - [anon_sym_hide_DASHenv] = ACTIONS(1308), - [anon_sym_overlay] = ACTIONS(1308), - [anon_sym_as] = ACTIONS(1308), - [anon_sym_where] = ACTIONS(1308), - [anon_sym_not] = ACTIONS(1308), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1308), - [anon_sym_DOT_DOT_LT] = ACTIONS(1308), - [anon_sym_null] = ACTIONS(1308), - [anon_sym_true] = ACTIONS(1308), - [anon_sym_false] = ACTIONS(1308), - [aux_sym__val_number_decimal_token1] = ACTIONS(1308), - [aux_sym__val_number_decimal_token2] = ACTIONS(1308), - [anon_sym_DOT2] = ACTIONS(1308), - [aux_sym__val_number_decimal_token3] = ACTIONS(1308), - [aux_sym__val_number_token1] = ACTIONS(1308), - [aux_sym__val_number_token2] = ACTIONS(1308), - [aux_sym__val_number_token3] = ACTIONS(1308), - [aux_sym__val_number_token4] = ACTIONS(1308), - [aux_sym__val_number_token5] = ACTIONS(1308), - [aux_sym__val_number_token6] = ACTIONS(1308), - [anon_sym_0b] = ACTIONS(1308), - [anon_sym_0o] = ACTIONS(1308), - [anon_sym_0x] = ACTIONS(1308), - [sym_val_date] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym__str_single_quotes] = ACTIONS(1308), - [sym__str_back_ticks] = ACTIONS(1308), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1308), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1308), - [anon_sym_CARET] = ACTIONS(1308), - [anon_sym_POUND] = ACTIONS(113), + [2053] = { + [sym_comment] = STATE(2053), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_COMMA] = ACTIONS(1074), + [anon_sym_RBRACK] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_DOLLAR] = ACTIONS(1074), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_DASH_DASH] = ACTIONS(1074), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_in] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_DOT_DOT] = ACTIONS(1072), + [anon_sym_STAR] = ACTIONS(1076), + [anon_sym_STAR_STAR] = ACTIONS(1169), + [anon_sym_PLUS_PLUS] = ACTIONS(1169), + [anon_sym_SLASH] = ACTIONS(1076), + [anon_sym_mod] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_bit_DASHshl] = ACTIONS(1169), + [anon_sym_bit_DASHshr] = ACTIONS(1169), + [anon_sym_EQ_EQ] = ACTIONS(1169), + [anon_sym_BANG_EQ] = ACTIONS(1169), + [anon_sym_LT2] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1169), + [anon_sym_GT_EQ] = ACTIONS(1169), + [anon_sym_not_DASHin] = ACTIONS(1169), + [anon_sym_starts_DASHwith] = ACTIONS(1169), + [anon_sym_ends_DASHwith] = ACTIONS(1169), + [anon_sym_EQ_TILDE] = ACTIONS(1169), + [anon_sym_BANG_TILDE] = ACTIONS(1169), + [anon_sym_bit_DASHand] = ACTIONS(1169), + [anon_sym_bit_DASHxor] = ACTIONS(1169), + [anon_sym_bit_DASHor] = ACTIONS(1169), + [anon_sym_and] = ACTIONS(1169), + [anon_sym_xor] = ACTIONS(1169), + [anon_sym_or] = ACTIONS(1169), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1074), + [anon_sym_DOT_DOT_LT] = ACTIONS(1074), + [anon_sym_null] = ACTIONS(1074), + [anon_sym_true] = ACTIONS(1074), + [anon_sym_false] = ACTIONS(1074), + [aux_sym__val_number_decimal_token1] = ACTIONS(1072), + [aux_sym__val_number_decimal_token2] = ACTIONS(1074), + [anon_sym_DOT2] = ACTIONS(1072), + [aux_sym__val_number_decimal_token3] = ACTIONS(1074), + [aux_sym__val_number_token1] = ACTIONS(1074), + [aux_sym__val_number_token2] = ACTIONS(1074), + [aux_sym__val_number_token3] = ACTIONS(1074), + [aux_sym__val_number_token4] = ACTIONS(1074), + [aux_sym__val_number_token5] = ACTIONS(1074), + [aux_sym__val_number_token6] = ACTIONS(1074), + [anon_sym_0b] = ACTIONS(1072), + [anon_sym_0o] = ACTIONS(1072), + [anon_sym_0x] = ACTIONS(1072), + [sym_val_date] = ACTIONS(1074), + [anon_sym_DQUOTE] = ACTIONS(1074), + [sym__str_single_quotes] = ACTIONS(1074), + [sym__str_back_ticks] = ACTIONS(1074), + [anon_sym_err_GT] = ACTIONS(1074), + [anon_sym_out_GT] = ACTIONS(1074), + [anon_sym_e_GT] = ACTIONS(1074), + [anon_sym_o_GT] = ACTIONS(1074), + [anon_sym_err_PLUSout_GT] = ACTIONS(1074), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1074), + [anon_sym_o_PLUSe_GT] = ACTIONS(1074), + [anon_sym_e_PLUSo_GT] = ACTIONS(1074), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1072), + [anon_sym_POUND] = ACTIONS(3), }, - [1843] = { - [sym_comment] = STATE(1843), - [anon_sym_export] = ACTIONS(1312), - [anon_sym_alias] = ACTIONS(1312), - [anon_sym_let] = ACTIONS(1312), - [anon_sym_let_DASHenv] = ACTIONS(1312), - [anon_sym_mut] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [sym_cmd_identifier] = ACTIONS(1312), - [anon_sym_LF] = ACTIONS(1314), - [anon_sym_def] = ACTIONS(1312), - [anon_sym_export_DASHenv] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym_module] = ACTIONS(1312), - [anon_sym_use] = ACTIONS(1312), - [anon_sym_LBRACK] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1312), - [anon_sym_RPAREN] = ACTIONS(1312), - [anon_sym_DOLLAR] = ACTIONS(1312), - [anon_sym_error] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_loop] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_match] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_RBRACE] = ACTIONS(1312), - [anon_sym_DOT_DOT] = ACTIONS(1312), - [anon_sym_try] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_source] = ACTIONS(1312), - [anon_sym_source_DASHenv] = ACTIONS(1312), - [anon_sym_register] = ACTIONS(1312), - [anon_sym_hide] = ACTIONS(1312), - [anon_sym_hide_DASHenv] = ACTIONS(1312), - [anon_sym_overlay] = ACTIONS(1312), - [anon_sym_as] = ACTIONS(1312), - [anon_sym_where] = ACTIONS(1312), - [anon_sym_not] = ACTIONS(1312), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1312), - [anon_sym_DOT_DOT_LT] = ACTIONS(1312), - [anon_sym_null] = ACTIONS(1312), - [anon_sym_true] = ACTIONS(1312), - [anon_sym_false] = ACTIONS(1312), - [aux_sym__val_number_decimal_token1] = ACTIONS(1312), - [aux_sym__val_number_decimal_token2] = ACTIONS(1312), - [anon_sym_DOT2] = ACTIONS(1312), - [aux_sym__val_number_decimal_token3] = ACTIONS(1312), - [aux_sym__val_number_token1] = ACTIONS(1312), - [aux_sym__val_number_token2] = ACTIONS(1312), - [aux_sym__val_number_token3] = ACTIONS(1312), - [aux_sym__val_number_token4] = ACTIONS(1312), - [aux_sym__val_number_token5] = ACTIONS(1312), - [aux_sym__val_number_token6] = ACTIONS(1312), - [anon_sym_0b] = ACTIONS(1312), - [anon_sym_0o] = ACTIONS(1312), - [anon_sym_0x] = ACTIONS(1312), - [sym_val_date] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym__str_single_quotes] = ACTIONS(1312), - [sym__str_back_ticks] = ACTIONS(1312), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1312), - [anon_sym_CARET] = ACTIONS(1312), + [2054] = { + [sym_comment] = STATE(2054), + [ts_builtin_sym_end] = ACTIONS(3743), + [anon_sym_export] = ACTIONS(3741), + [anon_sym_alias] = ACTIONS(3741), + [anon_sym_let] = ACTIONS(3741), + [anon_sym_let_DASHenv] = ACTIONS(3741), + [anon_sym_mut] = ACTIONS(3741), + [anon_sym_const] = ACTIONS(3741), + [anon_sym_SEMI] = ACTIONS(3741), + [sym_cmd_identifier] = ACTIONS(3741), + [anon_sym_LF] = ACTIONS(3743), + [anon_sym_def] = ACTIONS(3741), + [anon_sym_export_DASHenv] = ACTIONS(3741), + [anon_sym_extern] = ACTIONS(3741), + [anon_sym_module] = ACTIONS(3741), + [anon_sym_use] = ACTIONS(3741), + [anon_sym_LBRACK] = ACTIONS(3741), + [anon_sym_LPAREN] = ACTIONS(3741), + [anon_sym_DOLLAR] = ACTIONS(3741), + [anon_sym_error] = ACTIONS(3741), + [anon_sym_DASH_DASH] = ACTIONS(3741), + [anon_sym_DASH] = ACTIONS(3741), + [anon_sym_break] = ACTIONS(3741), + [anon_sym_continue] = ACTIONS(3741), + [anon_sym_for] = ACTIONS(3741), + [anon_sym_loop] = ACTIONS(3741), + [anon_sym_while] = ACTIONS(3741), + [anon_sym_do] = ACTIONS(3741), + [anon_sym_if] = ACTIONS(3741), + [anon_sym_match] = ACTIONS(3741), + [anon_sym_LBRACE] = ACTIONS(3741), + [anon_sym_DOT_DOT] = ACTIONS(3741), + [anon_sym_try] = ACTIONS(3741), + [anon_sym_return] = ACTIONS(3741), + [anon_sym_source] = ACTIONS(3741), + [anon_sym_source_DASHenv] = ACTIONS(3741), + [anon_sym_register] = ACTIONS(3741), + [anon_sym_hide] = ACTIONS(3741), + [anon_sym_hide_DASHenv] = ACTIONS(3741), + [anon_sym_overlay] = ACTIONS(3741), + [anon_sym_as] = ACTIONS(3741), + [anon_sym_where] = ACTIONS(3741), + [anon_sym_not] = ACTIONS(3741), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3741), + [anon_sym_DOT_DOT_LT] = ACTIONS(3741), + [anon_sym_null] = ACTIONS(3741), + [anon_sym_true] = ACTIONS(3741), + [anon_sym_false] = ACTIONS(3741), + [aux_sym__val_number_decimal_token1] = ACTIONS(3741), + [aux_sym__val_number_decimal_token2] = ACTIONS(3741), + [anon_sym_DOT2] = ACTIONS(3741), + [aux_sym__val_number_decimal_token3] = ACTIONS(3741), + [aux_sym__val_number_token1] = ACTIONS(3741), + [aux_sym__val_number_token2] = ACTIONS(3741), + [aux_sym__val_number_token3] = ACTIONS(3741), + [aux_sym__val_number_token4] = ACTIONS(3741), + [aux_sym__val_number_token5] = ACTIONS(3741), + [aux_sym__val_number_token6] = ACTIONS(3741), + [anon_sym_0b] = ACTIONS(3741), + [anon_sym_0o] = ACTIONS(3741), + [anon_sym_0x] = ACTIONS(3741), + [sym_val_date] = ACTIONS(3741), + [anon_sym_DQUOTE] = ACTIONS(3741), + [sym__str_single_quotes] = ACTIONS(3741), + [sym__str_back_ticks] = ACTIONS(3741), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3741), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3741), + [anon_sym_CARET] = ACTIONS(3741), [anon_sym_POUND] = ACTIONS(113), }, - [1844] = { - [sym_comment] = STATE(1844), - [anon_sym_export] = ACTIONS(1186), - [anon_sym_alias] = ACTIONS(1186), - [anon_sym_let] = ACTIONS(1186), - [anon_sym_let_DASHenv] = ACTIONS(1186), - [anon_sym_mut] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1186), - [sym_cmd_identifier] = ACTIONS(1186), - [anon_sym_LF] = ACTIONS(1188), - [anon_sym_def] = ACTIONS(1186), - [anon_sym_export_DASHenv] = ACTIONS(1186), - [anon_sym_extern] = ACTIONS(1186), - [anon_sym_module] = ACTIONS(1186), - [anon_sym_use] = ACTIONS(1186), - [anon_sym_LBRACK] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(1186), - [anon_sym_RPAREN] = ACTIONS(1186), - [anon_sym_DOLLAR] = ACTIONS(1186), - [anon_sym_error] = ACTIONS(1186), - [anon_sym_DASH_DASH] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1186), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1186), - [anon_sym_loop] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_do] = ACTIONS(1186), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_match] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_RBRACE] = ACTIONS(1186), - [anon_sym_DOT_DOT] = ACTIONS(1186), - [anon_sym_try] = ACTIONS(1186), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_source] = ACTIONS(1186), - [anon_sym_source_DASHenv] = ACTIONS(1186), - [anon_sym_register] = ACTIONS(1186), - [anon_sym_hide] = ACTIONS(1186), - [anon_sym_hide_DASHenv] = ACTIONS(1186), - [anon_sym_overlay] = ACTIONS(1186), - [anon_sym_as] = ACTIONS(1186), - [anon_sym_where] = ACTIONS(1186), - [anon_sym_not] = ACTIONS(1186), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1186), - [anon_sym_DOT_DOT_LT] = ACTIONS(1186), - [anon_sym_null] = ACTIONS(1186), - [anon_sym_true] = ACTIONS(1186), - [anon_sym_false] = ACTIONS(1186), - [aux_sym__val_number_decimal_token1] = ACTIONS(1186), - [aux_sym__val_number_decimal_token2] = ACTIONS(1186), - [anon_sym_DOT2] = ACTIONS(1186), - [aux_sym__val_number_decimal_token3] = ACTIONS(1186), - [aux_sym__val_number_token1] = ACTIONS(1186), - [aux_sym__val_number_token2] = ACTIONS(1186), - [aux_sym__val_number_token3] = ACTIONS(1186), - [aux_sym__val_number_token4] = ACTIONS(1186), - [aux_sym__val_number_token5] = ACTIONS(1186), - [aux_sym__val_number_token6] = ACTIONS(1186), - [anon_sym_0b] = ACTIONS(1186), - [anon_sym_0o] = ACTIONS(1186), - [anon_sym_0x] = ACTIONS(1186), - [sym_val_date] = ACTIONS(1186), - [anon_sym_DQUOTE] = ACTIONS(1186), - [sym__str_single_quotes] = ACTIONS(1186), - [sym__str_back_ticks] = ACTIONS(1186), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1186), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1186), - [anon_sym_CARET] = ACTIONS(1186), - [anon_sym_POUND] = ACTIONS(113), + [2055] = { + [sym_comment] = STATE(2055), + [anon_sym_LBRACK] = ACTIONS(1173), + [anon_sym_COMMA] = ACTIONS(1173), + [anon_sym_RBRACK] = ACTIONS(1173), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_DOLLAR] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1173), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1173), + [anon_sym_SLASH_SLASH] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1173), + [anon_sym_bit_DASHshr] = ACTIONS(1173), + [anon_sym_EQ_EQ] = ACTIONS(1173), + [anon_sym_BANG_EQ] = ACTIONS(1173), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1173), + [anon_sym_GT_EQ] = ACTIONS(1173), + [anon_sym_not_DASHin] = ACTIONS(1173), + [anon_sym_starts_DASHwith] = ACTIONS(1173), + [anon_sym_ends_DASHwith] = ACTIONS(1173), + [anon_sym_EQ_TILDE] = ACTIONS(1173), + [anon_sym_BANG_TILDE] = ACTIONS(1173), + [anon_sym_bit_DASHand] = ACTIONS(1173), + [anon_sym_bit_DASHxor] = ACTIONS(1173), + [anon_sym_bit_DASHor] = ACTIONS(1173), + [anon_sym_and] = ACTIONS(1173), + [anon_sym_xor] = ACTIONS(1173), + [anon_sym_or] = ACTIONS(1173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1173), + [anon_sym_DOT_DOT_LT] = ACTIONS(1173), + [anon_sym_null] = ACTIONS(1173), + [anon_sym_true] = ACTIONS(1173), + [anon_sym_false] = ACTIONS(1173), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1173), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1173), + [aux_sym__val_number_token1] = ACTIONS(1173), + [aux_sym__val_number_token2] = ACTIONS(1173), + [aux_sym__val_number_token3] = ACTIONS(1173), + [aux_sym__val_number_token4] = ACTIONS(1173), + [aux_sym__val_number_token5] = ACTIONS(1173), + [aux_sym__val_number_token6] = ACTIONS(1173), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym__str_single_quotes] = ACTIONS(1173), + [sym__str_back_ticks] = ACTIONS(1173), + [anon_sym_err_GT] = ACTIONS(1173), + [anon_sym_out_GT] = ACTIONS(1173), + [anon_sym_e_GT] = ACTIONS(1173), + [anon_sym_o_GT] = ACTIONS(1173), + [anon_sym_err_PLUSout_GT] = ACTIONS(1173), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1173), + [anon_sym_o_PLUSe_GT] = ACTIONS(1173), + [anon_sym_e_PLUSo_GT] = ACTIONS(1173), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(3), }, - [1845] = { - [sym_comment] = STATE(1845), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_alias] = ACTIONS(1332), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_let_DASHenv] = ACTIONS(1332), - [anon_sym_mut] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1332), - [sym_cmd_identifier] = ACTIONS(1332), - [anon_sym_LF] = ACTIONS(1334), - [anon_sym_def] = ACTIONS(1332), - [anon_sym_export_DASHenv] = ACTIONS(1332), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_use] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1332), - [anon_sym_RPAREN] = ACTIONS(1332), - [anon_sym_DOLLAR] = ACTIONS(1332), - [anon_sym_error] = ACTIONS(1332), - [anon_sym_DASH_DASH] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_loop] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_do] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_match] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_RBRACE] = ACTIONS(1332), - [anon_sym_DOT_DOT] = ACTIONS(1332), - [anon_sym_try] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_source] = ACTIONS(1332), - [anon_sym_source_DASHenv] = ACTIONS(1332), - [anon_sym_register] = ACTIONS(1332), - [anon_sym_hide] = ACTIONS(1332), - [anon_sym_hide_DASHenv] = ACTIONS(1332), - [anon_sym_overlay] = ACTIONS(1332), - [anon_sym_as] = ACTIONS(1332), - [anon_sym_where] = ACTIONS(1332), - [anon_sym_not] = ACTIONS(1332), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1332), - [anon_sym_DOT_DOT_LT] = ACTIONS(1332), - [anon_sym_null] = ACTIONS(1332), - [anon_sym_true] = ACTIONS(1332), - [anon_sym_false] = ACTIONS(1332), - [aux_sym__val_number_decimal_token1] = ACTIONS(1332), - [aux_sym__val_number_decimal_token2] = ACTIONS(1332), - [anon_sym_DOT2] = ACTIONS(1332), - [aux_sym__val_number_decimal_token3] = ACTIONS(1332), - [aux_sym__val_number_token1] = ACTIONS(1332), - [aux_sym__val_number_token2] = ACTIONS(1332), - [aux_sym__val_number_token3] = ACTIONS(1332), - [aux_sym__val_number_token4] = ACTIONS(1332), - [aux_sym__val_number_token5] = ACTIONS(1332), - [aux_sym__val_number_token6] = ACTIONS(1332), - [anon_sym_0b] = ACTIONS(1332), - [anon_sym_0o] = ACTIONS(1332), - [anon_sym_0x] = ACTIONS(1332), - [sym_val_date] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym__str_single_quotes] = ACTIONS(1332), - [sym__str_back_ticks] = ACTIONS(1332), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1332), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1332), - [anon_sym_CARET] = ACTIONS(1332), - [anon_sym_POUND] = ACTIONS(113), + [2056] = { + [sym_comment] = STATE(2056), + [anon_sym_LBRACK] = ACTIONS(1022), + [anon_sym_COMMA] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_GT] = ACTIONS(1020), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_in] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1022), + [anon_sym_RBRACE] = ACTIONS(1022), + [anon_sym__] = ACTIONS(1020), + [anon_sym_DOT_DOT] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_STAR_STAR] = ACTIONS(1022), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_SLASH] = ACTIONS(1020), + [anon_sym_mod] = ACTIONS(1022), + [anon_sym_SLASH_SLASH] = ACTIONS(1022), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_bit_DASHshl] = ACTIONS(1022), + [anon_sym_bit_DASHshr] = ACTIONS(1022), + [anon_sym_EQ_EQ] = ACTIONS(1022), + [anon_sym_BANG_EQ] = ACTIONS(1022), + [anon_sym_LT2] = ACTIONS(1020), + [anon_sym_LT_EQ] = ACTIONS(1022), + [anon_sym_GT_EQ] = ACTIONS(1022), + [anon_sym_not_DASHin] = ACTIONS(1022), + [anon_sym_starts_DASHwith] = ACTIONS(1022), + [anon_sym_ends_DASHwith] = ACTIONS(1022), + [anon_sym_EQ_TILDE] = ACTIONS(1022), + [anon_sym_BANG_TILDE] = ACTIONS(1022), + [anon_sym_bit_DASHand] = ACTIONS(1022), + [anon_sym_bit_DASHxor] = ACTIONS(1022), + [anon_sym_bit_DASHor] = ACTIONS(1022), + [anon_sym_and] = ACTIONS(1022), + [anon_sym_xor] = ACTIONS(1022), + [anon_sym_or] = ACTIONS(1022), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1022), + [anon_sym_DOT_DOT_LT] = ACTIONS(1022), + [anon_sym_null] = ACTIONS(1022), + [anon_sym_true] = ACTIONS(1022), + [anon_sym_false] = ACTIONS(1022), + [aux_sym__val_number_decimal_token1] = ACTIONS(1020), + [aux_sym__val_number_decimal_token2] = ACTIONS(1022), + [anon_sym_DOT2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1022), + [aux_sym__val_number_token1] = ACTIONS(1022), + [aux_sym__val_number_token2] = ACTIONS(1022), + [aux_sym__val_number_token3] = ACTIONS(1022), + [aux_sym__val_number_token4] = ACTIONS(1022), + [aux_sym__val_number_token5] = ACTIONS(1022), + [aux_sym__val_number_token6] = ACTIONS(1022), + [anon_sym_0b] = ACTIONS(1020), + [anon_sym_0o] = ACTIONS(1020), + [anon_sym_0x] = ACTIONS(1020), + [sym_val_date] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1022), + [sym__str_single_quotes] = ACTIONS(1022), + [sym__str_back_ticks] = ACTIONS(1022), + [anon_sym_err_GT] = ACTIONS(1022), + [anon_sym_out_GT] = ACTIONS(1022), + [anon_sym_e_GT] = ACTIONS(1022), + [anon_sym_o_GT] = ACTIONS(1022), + [anon_sym_err_PLUSout_GT] = ACTIONS(1022), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1022), + [anon_sym_o_PLUSe_GT] = ACTIONS(1022), + [anon_sym_e_PLUSo_GT] = ACTIONS(1022), + [aux_sym_unquoted_token1] = ACTIONS(1020), + [anon_sym_POUND] = ACTIONS(3), }, - [1846] = { - [sym_comment] = STATE(1846), - [anon_sym_export] = ACTIONS(1336), - [anon_sym_alias] = ACTIONS(1336), - [anon_sym_let] = ACTIONS(1336), - [anon_sym_let_DASHenv] = ACTIONS(1336), - [anon_sym_mut] = ACTIONS(1336), - [anon_sym_const] = ACTIONS(1336), - [anon_sym_SEMI] = ACTIONS(1336), - [sym_cmd_identifier] = ACTIONS(1336), - [anon_sym_LF] = ACTIONS(1338), - [anon_sym_def] = ACTIONS(1336), - [anon_sym_export_DASHenv] = ACTIONS(1336), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym_module] = ACTIONS(1336), - [anon_sym_use] = ACTIONS(1336), - [anon_sym_LBRACK] = ACTIONS(1336), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_RPAREN] = ACTIONS(1336), - [anon_sym_DOLLAR] = ACTIONS(1336), - [anon_sym_error] = ACTIONS(1336), - [anon_sym_DASH_DASH] = ACTIONS(1336), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_break] = ACTIONS(1336), - [anon_sym_continue] = ACTIONS(1336), - [anon_sym_for] = ACTIONS(1336), - [anon_sym_loop] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1336), - [anon_sym_do] = ACTIONS(1336), - [anon_sym_if] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_RBRACE] = ACTIONS(1336), - [anon_sym_DOT_DOT] = ACTIONS(1336), - [anon_sym_try] = ACTIONS(1336), - [anon_sym_return] = ACTIONS(1336), - [anon_sym_source] = ACTIONS(1336), - [anon_sym_source_DASHenv] = ACTIONS(1336), - [anon_sym_register] = ACTIONS(1336), - [anon_sym_hide] = ACTIONS(1336), - [anon_sym_hide_DASHenv] = ACTIONS(1336), - [anon_sym_overlay] = ACTIONS(1336), - [anon_sym_as] = ACTIONS(1336), - [anon_sym_where] = ACTIONS(1336), - [anon_sym_not] = ACTIONS(1336), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1336), - [anon_sym_DOT_DOT_LT] = ACTIONS(1336), - [anon_sym_null] = ACTIONS(1336), - [anon_sym_true] = ACTIONS(1336), - [anon_sym_false] = ACTIONS(1336), - [aux_sym__val_number_decimal_token1] = ACTIONS(1336), - [aux_sym__val_number_decimal_token2] = ACTIONS(1336), - [anon_sym_DOT2] = ACTIONS(1336), - [aux_sym__val_number_decimal_token3] = ACTIONS(1336), - [aux_sym__val_number_token1] = ACTIONS(1336), - [aux_sym__val_number_token2] = ACTIONS(1336), - [aux_sym__val_number_token3] = ACTIONS(1336), - [aux_sym__val_number_token4] = ACTIONS(1336), - [aux_sym__val_number_token5] = ACTIONS(1336), - [aux_sym__val_number_token6] = ACTIONS(1336), - [anon_sym_0b] = ACTIONS(1336), - [anon_sym_0o] = ACTIONS(1336), - [anon_sym_0x] = ACTIONS(1336), - [sym_val_date] = ACTIONS(1336), - [anon_sym_DQUOTE] = ACTIONS(1336), - [sym__str_single_quotes] = ACTIONS(1336), - [sym__str_back_ticks] = ACTIONS(1336), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1336), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1336), - [anon_sym_CARET] = ACTIONS(1336), + [2057] = { + [sym_comment] = STATE(2057), + [ts_builtin_sym_end] = ACTIONS(1039), + [anon_sym_SEMI] = ACTIONS(1037), + [anon_sym_LF] = ACTIONS(1039), + [anon_sym_LBRACK] = ACTIONS(1037), + [anon_sym_LPAREN] = ACTIONS(1037), + [anon_sym_PIPE] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1037), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_in] = ACTIONS(1037), + [anon_sym_LBRACE] = ACTIONS(1037), + [anon_sym_DOT_DOT] = ACTIONS(1037), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_STAR_STAR] = ACTIONS(1037), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1037), + [anon_sym_mod] = ACTIONS(1037), + [anon_sym_SLASH_SLASH] = ACTIONS(1037), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_bit_DASHshl] = ACTIONS(1037), + [anon_sym_bit_DASHshr] = ACTIONS(1037), + [anon_sym_EQ_EQ] = ACTIONS(1037), + [anon_sym_BANG_EQ] = ACTIONS(1037), + [anon_sym_LT2] = ACTIONS(1037), + [anon_sym_LT_EQ] = ACTIONS(1037), + [anon_sym_GT_EQ] = ACTIONS(1037), + [anon_sym_not_DASHin] = ACTIONS(1037), + [anon_sym_starts_DASHwith] = ACTIONS(1037), + [anon_sym_ends_DASHwith] = ACTIONS(1037), + [anon_sym_EQ_TILDE] = ACTIONS(1037), + [anon_sym_BANG_TILDE] = ACTIONS(1037), + [anon_sym_bit_DASHand] = ACTIONS(1037), + [anon_sym_bit_DASHxor] = ACTIONS(1037), + [anon_sym_bit_DASHor] = ACTIONS(1037), + [anon_sym_and] = ACTIONS(1037), + [anon_sym_xor] = ACTIONS(1037), + [anon_sym_or] = ACTIONS(1037), + [anon_sym_not] = ACTIONS(1037), + [anon_sym_DOT_DOT2] = ACTIONS(1037), + [anon_sym_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1037), + [anon_sym_DOT_DOT_LT] = ACTIONS(1037), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1039), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1039), + [anon_sym_null] = ACTIONS(1037), + [anon_sym_true] = ACTIONS(1037), + [anon_sym_false] = ACTIONS(1037), + [aux_sym__val_number_decimal_token1] = ACTIONS(1037), + [aux_sym__val_number_decimal_token2] = ACTIONS(1037), + [anon_sym_DOT2] = ACTIONS(1037), + [aux_sym__val_number_decimal_token3] = ACTIONS(1037), + [aux_sym__val_number_token1] = ACTIONS(1037), + [aux_sym__val_number_token2] = ACTIONS(1037), + [aux_sym__val_number_token3] = ACTIONS(1037), + [aux_sym__val_number_token4] = ACTIONS(1037), + [aux_sym__val_number_token5] = ACTIONS(1037), + [aux_sym__val_number_token6] = ACTIONS(1037), + [anon_sym_0b] = ACTIONS(1037), + [anon_sym_0o] = ACTIONS(1037), + [anon_sym_0x] = ACTIONS(1037), + [sym_val_date] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1037), + [sym__str_single_quotes] = ACTIONS(1037), + [sym__str_back_ticks] = ACTIONS(1037), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1037), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1037), [anon_sym_POUND] = ACTIONS(113), }, - [1847] = { - [sym_comment] = STATE(1847), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_COMMA] = ACTIONS(1376), - [anon_sym_RBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(5265), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(5267), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(5269), - [anon_sym_STAR_STAR] = ACTIONS(5271), - [anon_sym_PLUS_PLUS] = ACTIONS(5271), - [anon_sym_SLASH] = ACTIONS(5269), - [anon_sym_mod] = ACTIONS(5269), - [anon_sym_SLASH_SLASH] = ACTIONS(5269), - [anon_sym_PLUS] = ACTIONS(5267), - [anon_sym_bit_DASHshl] = ACTIONS(5273), - [anon_sym_bit_DASHshr] = ACTIONS(5273), - [anon_sym_EQ_EQ] = ACTIONS(5265), - [anon_sym_BANG_EQ] = ACTIONS(5265), - [anon_sym_LT2] = ACTIONS(5265), - [anon_sym_LT_EQ] = ACTIONS(5265), - [anon_sym_GT_EQ] = ACTIONS(5265), - [anon_sym_not_DASHin] = ACTIONS(1376), - [anon_sym_starts_DASHwith] = ACTIONS(1376), - [anon_sym_ends_DASHwith] = ACTIONS(1376), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [sym__entry_separator] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1376), - [anon_sym_out_GT] = ACTIONS(1376), - [anon_sym_e_GT] = ACTIONS(1376), - [anon_sym_o_GT] = ACTIONS(1376), - [anon_sym_err_PLUSout_GT] = ACTIONS(1376), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1376), - [anon_sym_o_PLUSe_GT] = ACTIONS(1376), - [anon_sym_e_PLUSo_GT] = ACTIONS(1376), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), + [2058] = { + [sym_comment] = STATE(2058), + [anon_sym_LBRACK] = ACTIONS(1131), + [anon_sym_COMMA] = ACTIONS(1131), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_DOLLAR] = ACTIONS(1131), + [anon_sym_GT] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_in] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(1131), + [anon_sym_RBRACE] = ACTIONS(1131), + [anon_sym__] = ACTIONS(1129), + [anon_sym_DOT_DOT] = ACTIONS(1129), + [anon_sym_STAR] = ACTIONS(1129), + [anon_sym_STAR_STAR] = ACTIONS(1131), + [anon_sym_PLUS_PLUS] = ACTIONS(1131), + [anon_sym_SLASH] = ACTIONS(1129), + [anon_sym_mod] = ACTIONS(1131), + [anon_sym_SLASH_SLASH] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_bit_DASHshl] = ACTIONS(1131), + [anon_sym_bit_DASHshr] = ACTIONS(1131), + [anon_sym_EQ_EQ] = ACTIONS(1131), + [anon_sym_BANG_EQ] = ACTIONS(1131), + [anon_sym_LT2] = ACTIONS(1129), + [anon_sym_LT_EQ] = ACTIONS(1131), + [anon_sym_GT_EQ] = ACTIONS(1131), + [anon_sym_not_DASHin] = ACTIONS(1131), + [anon_sym_starts_DASHwith] = ACTIONS(1131), + [anon_sym_ends_DASHwith] = ACTIONS(1131), + [anon_sym_EQ_TILDE] = ACTIONS(1131), + [anon_sym_BANG_TILDE] = ACTIONS(1131), + [anon_sym_bit_DASHand] = ACTIONS(1131), + [anon_sym_bit_DASHxor] = ACTIONS(1131), + [anon_sym_bit_DASHor] = ACTIONS(1131), + [anon_sym_and] = ACTIONS(1131), + [anon_sym_xor] = ACTIONS(1131), + [anon_sym_or] = ACTIONS(1131), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_DOT_DOT_LT] = ACTIONS(1131), + [anon_sym_null] = ACTIONS(1131), + [anon_sym_true] = ACTIONS(1131), + [anon_sym_false] = ACTIONS(1131), + [aux_sym__val_number_decimal_token1] = ACTIONS(1129), + [aux_sym__val_number_decimal_token2] = ACTIONS(1131), + [anon_sym_DOT2] = ACTIONS(1129), + [aux_sym__val_number_decimal_token3] = ACTIONS(1131), + [aux_sym__val_number_token1] = ACTIONS(1131), + [aux_sym__val_number_token2] = ACTIONS(1131), + [aux_sym__val_number_token3] = ACTIONS(1131), + [aux_sym__val_number_token4] = ACTIONS(1131), + [aux_sym__val_number_token5] = ACTIONS(1131), + [aux_sym__val_number_token6] = ACTIONS(1131), + [anon_sym_0b] = ACTIONS(1129), + [anon_sym_0o] = ACTIONS(1129), + [anon_sym_0x] = ACTIONS(1129), + [sym_val_date] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1131), + [sym__str_single_quotes] = ACTIONS(1131), + [sym__str_back_ticks] = ACTIONS(1131), + [anon_sym_err_GT] = ACTIONS(1131), + [anon_sym_out_GT] = ACTIONS(1131), + [anon_sym_e_GT] = ACTIONS(1131), + [anon_sym_o_GT] = ACTIONS(1131), + [anon_sym_err_PLUSout_GT] = ACTIONS(1131), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1131), + [anon_sym_o_PLUSe_GT] = ACTIONS(1131), + [anon_sym_e_PLUSo_GT] = ACTIONS(1131), + [aux_sym_unquoted_token1] = ACTIONS(1129), + [anon_sym_POUND] = ACTIONS(3), }, - [1848] = { - [sym_comment] = STATE(1848), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_COMMA] = ACTIONS(1376), - [anon_sym_RBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(5267), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(5269), - [anon_sym_STAR_STAR] = ACTIONS(5271), - [anon_sym_PLUS_PLUS] = ACTIONS(5271), - [anon_sym_SLASH] = ACTIONS(5269), - [anon_sym_mod] = ACTIONS(5269), - [anon_sym_SLASH_SLASH] = ACTIONS(5269), - [anon_sym_PLUS] = ACTIONS(5267), - [anon_sym_bit_DASHshl] = ACTIONS(1376), - [anon_sym_bit_DASHshr] = ACTIONS(1376), - [anon_sym_EQ_EQ] = ACTIONS(1376), - [anon_sym_BANG_EQ] = ACTIONS(1376), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1376), - [anon_sym_GT_EQ] = ACTIONS(1376), - [anon_sym_not_DASHin] = ACTIONS(1376), - [anon_sym_starts_DASHwith] = ACTIONS(1376), - [anon_sym_ends_DASHwith] = ACTIONS(1376), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [sym__entry_separator] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1376), - [anon_sym_out_GT] = ACTIONS(1376), - [anon_sym_e_GT] = ACTIONS(1376), - [anon_sym_o_GT] = ACTIONS(1376), - [anon_sym_err_PLUSout_GT] = ACTIONS(1376), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1376), - [anon_sym_o_PLUSe_GT] = ACTIONS(1376), - [anon_sym_e_PLUSo_GT] = ACTIONS(1376), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1376), + [2059] = { + [sym_comment] = STATE(2059), + [ts_builtin_sym_end] = ACTIONS(1063), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_alias] = ACTIONS(1061), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_let_DASHenv] = ACTIONS(1061), + [anon_sym_mut] = ACTIONS(1061), + [anon_sym_const] = ACTIONS(1061), + [anon_sym_SEMI] = ACTIONS(1061), + [sym_cmd_identifier] = ACTIONS(1061), + [anon_sym_LF] = ACTIONS(1063), + [anon_sym_def] = ACTIONS(1061), + [anon_sym_export_DASHenv] = ACTIONS(1061), + [anon_sym_extern] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_use] = ACTIONS(1061), + [anon_sym_LBRACK] = ACTIONS(1061), + [anon_sym_LPAREN] = ACTIONS(1061), + [anon_sym_DOLLAR] = ACTIONS(1061), + [anon_sym_error] = ACTIONS(1061), + [anon_sym_DASH_DASH] = ACTIONS(1061), + [anon_sym_DASH] = ACTIONS(1061), + [anon_sym_break] = ACTIONS(1061), + [anon_sym_continue] = ACTIONS(1061), + [anon_sym_for] = ACTIONS(1061), + [anon_sym_loop] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(1061), + [anon_sym_do] = ACTIONS(1061), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_match] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(1061), + [anon_sym_DOT_DOT] = ACTIONS(1061), + [anon_sym_try] = ACTIONS(1061), + [anon_sym_return] = ACTIONS(1061), + [anon_sym_source] = ACTIONS(1061), + [anon_sym_source_DASHenv] = ACTIONS(1061), + [anon_sym_register] = ACTIONS(1061), + [anon_sym_hide] = ACTIONS(1061), + [anon_sym_hide_DASHenv] = ACTIONS(1061), + [anon_sym_overlay] = ACTIONS(1061), + [anon_sym_as] = ACTIONS(1061), + [anon_sym_where] = ACTIONS(1061), + [anon_sym_not] = ACTIONS(1061), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1061), + [anon_sym_DOT_DOT_LT] = ACTIONS(1061), + [anon_sym_null] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1061), + [anon_sym_false] = ACTIONS(1061), + [aux_sym__val_number_decimal_token1] = ACTIONS(1061), + [aux_sym__val_number_decimal_token2] = ACTIONS(1061), + [anon_sym_DOT2] = ACTIONS(1061), + [aux_sym__val_number_decimal_token3] = ACTIONS(1061), + [aux_sym__val_number_token1] = ACTIONS(1061), + [aux_sym__val_number_token2] = ACTIONS(1061), + [aux_sym__val_number_token3] = ACTIONS(1061), + [aux_sym__val_number_token4] = ACTIONS(1061), + [aux_sym__val_number_token5] = ACTIONS(1061), + [aux_sym__val_number_token6] = ACTIONS(1061), + [anon_sym_0b] = ACTIONS(1061), + [anon_sym_0o] = ACTIONS(1061), + [anon_sym_0x] = ACTIONS(1061), + [sym_val_date] = ACTIONS(1061), + [anon_sym_DQUOTE] = ACTIONS(1061), + [sym__str_single_quotes] = ACTIONS(1061), + [sym__str_back_ticks] = ACTIONS(1061), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1061), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1061), + [anon_sym_CARET] = ACTIONS(1061), [anon_sym_POUND] = ACTIONS(113), }, - [1849] = { - [sym_comment] = STATE(1849), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_COMMA] = ACTIONS(1376), - [anon_sym_RBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(5265), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(5267), - [anon_sym_in] = ACTIONS(5275), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(5269), - [anon_sym_STAR_STAR] = ACTIONS(5271), - [anon_sym_PLUS_PLUS] = ACTIONS(5271), - [anon_sym_SLASH] = ACTIONS(5269), - [anon_sym_mod] = ACTIONS(5269), - [anon_sym_SLASH_SLASH] = ACTIONS(5269), - [anon_sym_PLUS] = ACTIONS(5267), - [anon_sym_bit_DASHshl] = ACTIONS(5273), - [anon_sym_bit_DASHshr] = ACTIONS(5273), - [anon_sym_EQ_EQ] = ACTIONS(5265), - [anon_sym_BANG_EQ] = ACTIONS(5265), - [anon_sym_LT2] = ACTIONS(5265), - [anon_sym_LT_EQ] = ACTIONS(5265), - [anon_sym_GT_EQ] = ACTIONS(5265), - [anon_sym_not_DASHin] = ACTIONS(5275), - [anon_sym_starts_DASHwith] = ACTIONS(5275), - [anon_sym_ends_DASHwith] = ACTIONS(5275), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [sym__entry_separator] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1376), - [anon_sym_out_GT] = ACTIONS(1376), - [anon_sym_e_GT] = ACTIONS(1376), - [anon_sym_o_GT] = ACTIONS(1376), - [anon_sym_err_PLUSout_GT] = ACTIONS(1376), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1376), - [anon_sym_o_PLUSe_GT] = ACTIONS(1376), - [anon_sym_e_PLUSo_GT] = ACTIONS(1376), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1376), + [2060] = { + [sym__expression] = STATE(7249), + [sym_expr_unary] = STATE(5677), + [sym__expr_unary_minus] = STATE(5679), + [sym_expr_binary] = STATE(5677), + [sym__expr_binary_expression] = STATE(6377), + [sym_expr_parenthesized] = STATE(4919), + [sym_val_range] = STATE(8295), + [sym__value] = STATE(5677), + [sym_val_nothing] = STATE(5612), + [sym_val_bool] = STATE(5612), + [sym_val_variable] = STATE(4867), + [sym__var] = STATE(4310), + [sym_val_number] = STATE(5612), + [sym__val_number_decimal] = STATE(4408), + [sym__val_number] = STATE(5661), + [sym_val_duration] = STATE(5612), + [sym_val_filesize] = STATE(5612), + [sym_val_binary] = STATE(5612), + [sym_val_string] = STATE(5612), + [sym__str_double_quotes] = STATE(5733), + [sym_val_interpolated] = STATE(5612), + [sym__inter_single_quotes] = STATE(5590), + [sym__inter_double_quotes] = STATE(5591), + [sym_val_list] = STATE(5612), + [sym_val_record] = STATE(5612), + [sym_val_table] = STATE(5612), + [sym_val_closure] = STATE(5612), + [sym__flag] = STATE(7158), + [sym_short_flag] = STATE(8315), + [sym_long_flag] = STATE(8315), + [sym_long_flag_equals_value] = STATE(8239), + [sym_comment] = STATE(2060), + [ts_builtin_sym_end] = ACTIONS(4953), + [anon_sym_SEMI] = ACTIONS(4951), + [anon_sym_LF] = ACTIONS(4953), + [anon_sym_LBRACK] = ACTIONS(5667), + [anon_sym_LPAREN] = ACTIONS(5669), + [anon_sym_PIPE] = ACTIONS(4951), + [anon_sym_DOLLAR] = ACTIONS(2667), + [anon_sym_DASH_DASH] = ACTIONS(5763), + [anon_sym_DASH] = ACTIONS(5765), + [anon_sym_LBRACE] = ACTIONS(5675), + [anon_sym_DOT_DOT] = ACTIONS(5677), + [anon_sym_not] = ACTIONS(5679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5681), + [anon_sym_DOT_DOT_LT] = ACTIONS(5681), + [anon_sym_null] = ACTIONS(5683), + [anon_sym_true] = ACTIONS(5685), + [anon_sym_false] = ACTIONS(5685), + [aux_sym__val_number_decimal_token1] = ACTIONS(5687), + [aux_sym__val_number_decimal_token2] = ACTIONS(5687), + [anon_sym_DOT2] = ACTIONS(5689), + [aux_sym__val_number_decimal_token3] = ACTIONS(5691), + [aux_sym__val_number_token1] = ACTIONS(5693), + [aux_sym__val_number_token2] = ACTIONS(5693), + [aux_sym__val_number_token3] = ACTIONS(5693), + [aux_sym__val_number_token4] = ACTIONS(5693), + [aux_sym__val_number_token5] = ACTIONS(5693), + [aux_sym__val_number_token6] = ACTIONS(5693), + [anon_sym_0b] = ACTIONS(2695), + [anon_sym_0o] = ACTIONS(2697), + [anon_sym_0x] = ACTIONS(2697), + [sym_val_date] = ACTIONS(5695), + [anon_sym_DQUOTE] = ACTIONS(5697), + [sym__str_single_quotes] = ACTIONS(5699), + [sym__str_back_ticks] = ACTIONS(5699), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5703), [anon_sym_POUND] = ACTIONS(113), }, - [1850] = { - [sym_comment] = STATE(1850), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_COMMA] = ACTIONS(1376), - [anon_sym_RBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(5269), - [anon_sym_STAR_STAR] = ACTIONS(5271), - [anon_sym_PLUS_PLUS] = ACTIONS(5271), - [anon_sym_SLASH] = ACTIONS(5269), - [anon_sym_mod] = ACTIONS(5269), - [anon_sym_SLASH_SLASH] = ACTIONS(5269), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_bit_DASHshl] = ACTIONS(1376), - [anon_sym_bit_DASHshr] = ACTIONS(1376), - [anon_sym_EQ_EQ] = ACTIONS(1376), - [anon_sym_BANG_EQ] = ACTIONS(1376), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1376), - [anon_sym_GT_EQ] = ACTIONS(1376), - [anon_sym_not_DASHin] = ACTIONS(1376), - [anon_sym_starts_DASHwith] = ACTIONS(1376), - [anon_sym_ends_DASHwith] = ACTIONS(1376), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [sym__entry_separator] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1376), - [anon_sym_out_GT] = ACTIONS(1376), - [anon_sym_e_GT] = ACTIONS(1376), - [anon_sym_o_GT] = ACTIONS(1376), - [anon_sym_err_PLUSout_GT] = ACTIONS(1376), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1376), - [anon_sym_o_PLUSe_GT] = ACTIONS(1376), - [anon_sym_e_PLUSo_GT] = ACTIONS(1376), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1376), + [2061] = { + [sym_comment] = STATE(2061), + [anon_sym_LBRACK] = ACTIONS(1173), + [anon_sym_COMMA] = ACTIONS(1173), + [anon_sym_RBRACK] = ACTIONS(1173), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_DOLLAR] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1173), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1173), + [anon_sym_SLASH_SLASH] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1173), + [anon_sym_bit_DASHshr] = ACTIONS(1173), + [anon_sym_EQ_EQ] = ACTIONS(1173), + [anon_sym_BANG_EQ] = ACTIONS(1173), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1173), + [anon_sym_GT_EQ] = ACTIONS(1173), + [anon_sym_not_DASHin] = ACTIONS(1173), + [anon_sym_starts_DASHwith] = ACTIONS(1173), + [anon_sym_ends_DASHwith] = ACTIONS(1173), + [anon_sym_EQ_TILDE] = ACTIONS(1173), + [anon_sym_BANG_TILDE] = ACTIONS(1173), + [anon_sym_bit_DASHand] = ACTIONS(1173), + [anon_sym_bit_DASHxor] = ACTIONS(1173), + [anon_sym_bit_DASHor] = ACTIONS(1173), + [anon_sym_and] = ACTIONS(1173), + [anon_sym_xor] = ACTIONS(1173), + [anon_sym_or] = ACTIONS(1173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1173), + [anon_sym_DOT_DOT_LT] = ACTIONS(1173), + [anon_sym_null] = ACTIONS(1173), + [anon_sym_true] = ACTIONS(1173), + [anon_sym_false] = ACTIONS(1173), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1173), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1173), + [aux_sym__val_number_token1] = ACTIONS(1173), + [aux_sym__val_number_token2] = ACTIONS(1173), + [aux_sym__val_number_token3] = ACTIONS(1173), + [aux_sym__val_number_token4] = ACTIONS(1173), + [aux_sym__val_number_token5] = ACTIONS(1173), + [aux_sym__val_number_token6] = ACTIONS(1173), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym__str_single_quotes] = ACTIONS(1173), + [sym__str_back_ticks] = ACTIONS(1173), + [anon_sym_err_GT] = ACTIONS(1173), + [anon_sym_out_GT] = ACTIONS(1173), + [anon_sym_e_GT] = ACTIONS(1173), + [anon_sym_o_GT] = ACTIONS(1173), + [anon_sym_err_PLUSout_GT] = ACTIONS(1173), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1173), + [anon_sym_o_PLUSe_GT] = ACTIONS(1173), + [anon_sym_e_PLUSo_GT] = ACTIONS(1173), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(3), + }, + [2062] = { + [sym_comment] = STATE(2062), + [ts_builtin_sym_end] = ACTIONS(1053), + [anon_sym_export] = ACTIONS(1051), + [anon_sym_alias] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(1051), + [anon_sym_let_DASHenv] = ACTIONS(1051), + [anon_sym_mut] = ACTIONS(1051), + [anon_sym_const] = ACTIONS(1051), + [anon_sym_SEMI] = ACTIONS(1051), + [sym_cmd_identifier] = ACTIONS(1051), + [anon_sym_LF] = ACTIONS(1053), + [anon_sym_def] = ACTIONS(1051), + [anon_sym_export_DASHenv] = ACTIONS(1051), + [anon_sym_extern] = ACTIONS(1051), + [anon_sym_module] = ACTIONS(1051), + [anon_sym_use] = ACTIONS(1051), + [anon_sym_LBRACK] = ACTIONS(1051), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_DOLLAR] = ACTIONS(1051), + [anon_sym_error] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_break] = ACTIONS(1051), + [anon_sym_continue] = ACTIONS(1051), + [anon_sym_for] = ACTIONS(1051), + [anon_sym_loop] = ACTIONS(1051), + [anon_sym_while] = ACTIONS(1051), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_if] = ACTIONS(1051), + [anon_sym_match] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(1051), + [anon_sym_DOT_DOT] = ACTIONS(1051), + [anon_sym_try] = ACTIONS(1051), + [anon_sym_return] = ACTIONS(1051), + [anon_sym_source] = ACTIONS(1051), + [anon_sym_source_DASHenv] = ACTIONS(1051), + [anon_sym_register] = ACTIONS(1051), + [anon_sym_hide] = ACTIONS(1051), + [anon_sym_hide_DASHenv] = ACTIONS(1051), + [anon_sym_overlay] = ACTIONS(1051), + [anon_sym_as] = ACTIONS(1051), + [anon_sym_where] = ACTIONS(1051), + [anon_sym_not] = ACTIONS(1051), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1051), + [anon_sym_DOT_DOT_LT] = ACTIONS(1051), + [anon_sym_null] = ACTIONS(1051), + [anon_sym_true] = ACTIONS(1051), + [anon_sym_false] = ACTIONS(1051), + [aux_sym__val_number_decimal_token1] = ACTIONS(1051), + [aux_sym__val_number_decimal_token2] = ACTIONS(1051), + [anon_sym_DOT2] = ACTIONS(1051), + [aux_sym__val_number_decimal_token3] = ACTIONS(1051), + [aux_sym__val_number_token1] = ACTIONS(1051), + [aux_sym__val_number_token2] = ACTIONS(1051), + [aux_sym__val_number_token3] = ACTIONS(1051), + [aux_sym__val_number_token4] = ACTIONS(1051), + [aux_sym__val_number_token5] = ACTIONS(1051), + [aux_sym__val_number_token6] = ACTIONS(1051), + [anon_sym_0b] = ACTIONS(1051), + [anon_sym_0o] = ACTIONS(1051), + [anon_sym_0x] = ACTIONS(1051), + [sym_val_date] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(1051), + [sym__str_single_quotes] = ACTIONS(1051), + [sym__str_back_ticks] = ACTIONS(1051), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1051), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1051), + [anon_sym_CARET] = ACTIONS(1051), [anon_sym_POUND] = ACTIONS(113), }, - [1851] = { - [sym_comment] = STATE(1851), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_COMMA] = ACTIONS(1376), - [anon_sym_RBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(5271), - [anon_sym_PLUS_PLUS] = ACTIONS(5271), - [anon_sym_SLASH] = ACTIONS(1376), - [anon_sym_mod] = ACTIONS(1376), - [anon_sym_SLASH_SLASH] = ACTIONS(1376), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_bit_DASHshl] = ACTIONS(1376), - [anon_sym_bit_DASHshr] = ACTIONS(1376), - [anon_sym_EQ_EQ] = ACTIONS(1376), - [anon_sym_BANG_EQ] = ACTIONS(1376), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1376), - [anon_sym_GT_EQ] = ACTIONS(1376), - [anon_sym_not_DASHin] = ACTIONS(1376), - [anon_sym_starts_DASHwith] = ACTIONS(1376), - [anon_sym_ends_DASHwith] = ACTIONS(1376), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [sym__entry_separator] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1376), - [anon_sym_out_GT] = ACTIONS(1376), - [anon_sym_e_GT] = ACTIONS(1376), - [anon_sym_o_GT] = ACTIONS(1376), - [anon_sym_err_PLUSout_GT] = ACTIONS(1376), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1376), - [anon_sym_o_PLUSe_GT] = ACTIONS(1376), - [anon_sym_e_PLUSo_GT] = ACTIONS(1376), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1376), + [2063] = { + [sym_comment] = STATE(2063), + [ts_builtin_sym_end] = ACTIONS(1209), + [anon_sym_export] = ACTIONS(1139), + [anon_sym_alias] = ACTIONS(1139), + [anon_sym_let] = ACTIONS(1139), + [anon_sym_let_DASHenv] = ACTIONS(1139), + [anon_sym_mut] = ACTIONS(1139), + [anon_sym_const] = ACTIONS(1139), + [anon_sym_SEMI] = ACTIONS(1139), + [sym_cmd_identifier] = ACTIONS(1139), + [anon_sym_LF] = ACTIONS(1209), + [anon_sym_def] = ACTIONS(1139), + [anon_sym_export_DASHenv] = ACTIONS(1139), + [anon_sym_extern] = ACTIONS(1139), + [anon_sym_module] = ACTIONS(1139), + [anon_sym_use] = ACTIONS(1139), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LPAREN] = ACTIONS(1139), + [anon_sym_PIPE] = ACTIONS(1139), + [anon_sym_DOLLAR] = ACTIONS(1139), + [anon_sym_error] = ACTIONS(1139), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_break] = ACTIONS(1139), + [anon_sym_continue] = ACTIONS(1139), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_loop] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1139), + [anon_sym_do] = ACTIONS(1139), + [anon_sym_if] = ACTIONS(1139), + [anon_sym_match] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1139), + [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_try] = ACTIONS(1139), + [anon_sym_return] = ACTIONS(1139), + [anon_sym_source] = ACTIONS(1139), + [anon_sym_source_DASHenv] = ACTIONS(1139), + [anon_sym_register] = ACTIONS(1139), + [anon_sym_hide] = ACTIONS(1139), + [anon_sym_hide_DASHenv] = ACTIONS(1139), + [anon_sym_overlay] = ACTIONS(1139), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_where] = ACTIONS(1139), + [anon_sym_not] = ACTIONS(1139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1139), + [anon_sym_DOT_DOT_LT] = ACTIONS(1139), + [anon_sym_null] = ACTIONS(1139), + [anon_sym_true] = ACTIONS(1139), + [anon_sym_false] = ACTIONS(1139), + [aux_sym__val_number_decimal_token1] = ACTIONS(1139), + [aux_sym__val_number_decimal_token2] = ACTIONS(1139), + [anon_sym_DOT2] = ACTIONS(1139), + [aux_sym__val_number_decimal_token3] = ACTIONS(1139), + [aux_sym__val_number_token1] = ACTIONS(1139), + [aux_sym__val_number_token2] = ACTIONS(1139), + [aux_sym__val_number_token3] = ACTIONS(1139), + [aux_sym__val_number_token4] = ACTIONS(1139), + [aux_sym__val_number_token5] = ACTIONS(1139), + [aux_sym__val_number_token6] = ACTIONS(1139), + [anon_sym_0b] = ACTIONS(1139), + [anon_sym_0o] = ACTIONS(1139), + [anon_sym_0x] = ACTIONS(1139), + [sym_val_date] = ACTIONS(1139), + [anon_sym_DQUOTE] = ACTIONS(1139), + [sym__str_single_quotes] = ACTIONS(1139), + [sym__str_back_ticks] = ACTIONS(1139), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1139), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1139), + [anon_sym_CARET] = ACTIONS(1139), [anon_sym_POUND] = ACTIONS(113), }, - [1852] = { - [sym_comment] = STATE(1852), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_COMMA] = ACTIONS(1376), - [anon_sym_RBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(5267), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(5269), - [anon_sym_STAR_STAR] = ACTIONS(5271), - [anon_sym_PLUS_PLUS] = ACTIONS(5271), - [anon_sym_SLASH] = ACTIONS(5269), - [anon_sym_mod] = ACTIONS(5269), - [anon_sym_SLASH_SLASH] = ACTIONS(5269), - [anon_sym_PLUS] = ACTIONS(5267), - [anon_sym_bit_DASHshl] = ACTIONS(5273), - [anon_sym_bit_DASHshr] = ACTIONS(5273), - [anon_sym_EQ_EQ] = ACTIONS(1376), - [anon_sym_BANG_EQ] = ACTIONS(1376), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1376), - [anon_sym_GT_EQ] = ACTIONS(1376), - [anon_sym_not_DASHin] = ACTIONS(1376), - [anon_sym_starts_DASHwith] = ACTIONS(1376), - [anon_sym_ends_DASHwith] = ACTIONS(1376), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [sym__entry_separator] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1376), - [anon_sym_out_GT] = ACTIONS(1376), - [anon_sym_e_GT] = ACTIONS(1376), - [anon_sym_o_GT] = ACTIONS(1376), - [anon_sym_err_PLUSout_GT] = ACTIONS(1376), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1376), - [anon_sym_o_PLUSe_GT] = ACTIONS(1376), - [anon_sym_e_PLUSo_GT] = ACTIONS(1376), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1376), + [2064] = { + [sym_comment] = STATE(2064), + [anon_sym_LBRACK] = ACTIONS(1181), + [anon_sym_COMMA] = ACTIONS(1181), + [anon_sym_RBRACK] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_DOLLAR] = ACTIONS(1181), + [anon_sym_GT] = ACTIONS(5711), + [anon_sym_DASH_DASH] = ACTIONS(1181), + [anon_sym_DASH] = ACTIONS(5713), + [anon_sym_in] = ACTIONS(5715), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(5705), + [anon_sym_STAR_STAR] = ACTIONS(5707), + [anon_sym_PLUS_PLUS] = ACTIONS(5707), + [anon_sym_SLASH] = ACTIONS(5705), + [anon_sym_mod] = ACTIONS(5709), + [anon_sym_SLASH_SLASH] = ACTIONS(5709), + [anon_sym_PLUS] = ACTIONS(5713), + [anon_sym_bit_DASHshl] = ACTIONS(5717), + [anon_sym_bit_DASHshr] = ACTIONS(5717), + [anon_sym_EQ_EQ] = ACTIONS(5719), + [anon_sym_BANG_EQ] = ACTIONS(5719), + [anon_sym_LT2] = ACTIONS(5711), + [anon_sym_LT_EQ] = ACTIONS(5719), + [anon_sym_GT_EQ] = ACTIONS(5719), + [anon_sym_not_DASHin] = ACTIONS(5721), + [anon_sym_starts_DASHwith] = ACTIONS(5721), + [anon_sym_ends_DASHwith] = ACTIONS(5721), + [anon_sym_EQ_TILDE] = ACTIONS(5723), + [anon_sym_BANG_TILDE] = ACTIONS(5723), + [anon_sym_bit_DASHand] = ACTIONS(5729), + [anon_sym_bit_DASHxor] = ACTIONS(5767), + [anon_sym_bit_DASHor] = ACTIONS(5784), + [anon_sym_and] = ACTIONS(5804), + [anon_sym_xor] = ACTIONS(1181), + [anon_sym_or] = ACTIONS(1181), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1181), + [anon_sym_DOT_DOT_LT] = ACTIONS(1181), + [anon_sym_null] = ACTIONS(1181), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1181), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1181), + [aux_sym__val_number_token1] = ACTIONS(1181), + [aux_sym__val_number_token2] = ACTIONS(1181), + [aux_sym__val_number_token3] = ACTIONS(1181), + [aux_sym__val_number_token4] = ACTIONS(1181), + [aux_sym__val_number_token5] = ACTIONS(1181), + [aux_sym__val_number_token6] = ACTIONS(1181), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym__str_single_quotes] = ACTIONS(1181), + [sym__str_back_ticks] = ACTIONS(1181), + [anon_sym_err_GT] = ACTIONS(1181), + [anon_sym_out_GT] = ACTIONS(1181), + [anon_sym_e_GT] = ACTIONS(1181), + [anon_sym_o_GT] = ACTIONS(1181), + [anon_sym_err_PLUSout_GT] = ACTIONS(1181), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1181), + [anon_sym_o_PLUSe_GT] = ACTIONS(1181), + [anon_sym_e_PLUSo_GT] = ACTIONS(1181), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(3), + }, + [2065] = { + [sym__expression] = STATE(7145), + [sym_expr_unary] = STATE(5677), + [sym__expr_unary_minus] = STATE(5679), + [sym_expr_binary] = STATE(5677), + [sym__expr_binary_expression] = STATE(6377), + [sym_expr_parenthesized] = STATE(4919), + [sym_val_range] = STATE(8295), + [sym__value] = STATE(5677), + [sym_val_nothing] = STATE(5612), + [sym_val_bool] = STATE(5612), + [sym_val_variable] = STATE(4867), + [sym__var] = STATE(4310), + [sym_val_number] = STATE(5612), + [sym__val_number_decimal] = STATE(4408), + [sym__val_number] = STATE(5661), + [sym_val_duration] = STATE(5612), + [sym_val_filesize] = STATE(5612), + [sym_val_binary] = STATE(5612), + [sym_val_string] = STATE(5612), + [sym__str_double_quotes] = STATE(5733), + [sym_val_interpolated] = STATE(5612), + [sym__inter_single_quotes] = STATE(5590), + [sym__inter_double_quotes] = STATE(5591), + [sym_val_list] = STATE(5612), + [sym_val_record] = STATE(5612), + [sym_val_table] = STATE(5612), + [sym_val_closure] = STATE(5612), + [sym__flag] = STATE(2241), + [sym_short_flag] = STATE(4939), + [sym_long_flag] = STATE(4939), + [sym_long_flag_equals_value] = STATE(4865), + [sym_comment] = STATE(2065), + [ts_builtin_sym_end] = ACTIONS(4873), + [anon_sym_SEMI] = ACTIONS(4871), + [anon_sym_LF] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(5667), + [anon_sym_LPAREN] = ACTIONS(5669), + [anon_sym_PIPE] = ACTIONS(4871), + [anon_sym_DOLLAR] = ACTIONS(2667), + [anon_sym_DASH_DASH] = ACTIONS(5671), + [anon_sym_DASH] = ACTIONS(5673), + [anon_sym_LBRACE] = ACTIONS(5675), + [anon_sym_DOT_DOT] = ACTIONS(5677), + [anon_sym_not] = ACTIONS(5679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5681), + [anon_sym_DOT_DOT_LT] = ACTIONS(5681), + [anon_sym_null] = ACTIONS(5683), + [anon_sym_true] = ACTIONS(5685), + [anon_sym_false] = ACTIONS(5685), + [aux_sym__val_number_decimal_token1] = ACTIONS(5687), + [aux_sym__val_number_decimal_token2] = ACTIONS(5687), + [anon_sym_DOT2] = ACTIONS(5689), + [aux_sym__val_number_decimal_token3] = ACTIONS(5691), + [aux_sym__val_number_token1] = ACTIONS(5693), + [aux_sym__val_number_token2] = ACTIONS(5693), + [aux_sym__val_number_token3] = ACTIONS(5693), + [aux_sym__val_number_token4] = ACTIONS(5693), + [aux_sym__val_number_token5] = ACTIONS(5693), + [aux_sym__val_number_token6] = ACTIONS(5693), + [anon_sym_0b] = ACTIONS(2695), + [anon_sym_0o] = ACTIONS(2697), + [anon_sym_0x] = ACTIONS(2697), + [sym_val_date] = ACTIONS(5695), + [anon_sym_DQUOTE] = ACTIONS(5697), + [sym__str_single_quotes] = ACTIONS(5699), + [sym__str_back_ticks] = ACTIONS(5699), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5703), [anon_sym_POUND] = ACTIONS(113), }, - [1853] = { - [sym_comment] = STATE(1853), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_COMMA] = ACTIONS(1376), - [anon_sym_RBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(5265), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(5267), - [anon_sym_in] = ACTIONS(5275), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(5269), - [anon_sym_STAR_STAR] = ACTIONS(5271), - [anon_sym_PLUS_PLUS] = ACTIONS(5271), - [anon_sym_SLASH] = ACTIONS(5269), - [anon_sym_mod] = ACTIONS(5269), - [anon_sym_SLASH_SLASH] = ACTIONS(5269), - [anon_sym_PLUS] = ACTIONS(5267), - [anon_sym_bit_DASHshl] = ACTIONS(5273), - [anon_sym_bit_DASHshr] = ACTIONS(5273), - [anon_sym_EQ_EQ] = ACTIONS(5265), - [anon_sym_BANG_EQ] = ACTIONS(5265), - [anon_sym_LT2] = ACTIONS(5265), - [anon_sym_LT_EQ] = ACTIONS(5265), - [anon_sym_GT_EQ] = ACTIONS(5265), - [anon_sym_not_DASHin] = ACTIONS(5275), - [anon_sym_starts_DASHwith] = ACTIONS(5275), - [anon_sym_ends_DASHwith] = ACTIONS(5275), - [anon_sym_EQ_TILDE] = ACTIONS(5277), - [anon_sym_BANG_TILDE] = ACTIONS(5277), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [sym__entry_separator] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1376), - [anon_sym_out_GT] = ACTIONS(1376), - [anon_sym_e_GT] = ACTIONS(1376), - [anon_sym_o_GT] = ACTIONS(1376), - [anon_sym_err_PLUSout_GT] = ACTIONS(1376), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1376), - [anon_sym_o_PLUSe_GT] = ACTIONS(1376), - [anon_sym_e_PLUSo_GT] = ACTIONS(1376), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1376), + [2066] = { + [sym_comment] = STATE(2066), + [anon_sym_export] = ACTIONS(1047), + [anon_sym_alias] = ACTIONS(1047), + [anon_sym_let] = ACTIONS(1047), + [anon_sym_let_DASHenv] = ACTIONS(1047), + [anon_sym_mut] = ACTIONS(1047), + [anon_sym_const] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1047), + [sym_cmd_identifier] = ACTIONS(1047), + [anon_sym_LF] = ACTIONS(1049), + [anon_sym_def] = ACTIONS(1047), + [anon_sym_export_DASHenv] = ACTIONS(1047), + [anon_sym_extern] = ACTIONS(1047), + [anon_sym_module] = ACTIONS(1047), + [anon_sym_use] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1047), + [anon_sym_RPAREN] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1047), + [anon_sym_error] = ACTIONS(1047), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_break] = ACTIONS(1047), + [anon_sym_continue] = ACTIONS(1047), + [anon_sym_for] = ACTIONS(1047), + [anon_sym_loop] = ACTIONS(1047), + [anon_sym_while] = ACTIONS(1047), + [anon_sym_do] = ACTIONS(1047), + [anon_sym_if] = ACTIONS(1047), + [anon_sym_match] = ACTIONS(1047), + [anon_sym_LBRACE] = ACTIONS(1047), + [anon_sym_RBRACE] = ACTIONS(1047), + [anon_sym_DOT_DOT] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1047), + [anon_sym_return] = ACTIONS(1047), + [anon_sym_source] = ACTIONS(1047), + [anon_sym_source_DASHenv] = ACTIONS(1047), + [anon_sym_register] = ACTIONS(1047), + [anon_sym_hide] = ACTIONS(1047), + [anon_sym_hide_DASHenv] = ACTIONS(1047), + [anon_sym_overlay] = ACTIONS(1047), + [anon_sym_where] = ACTIONS(1047), + [anon_sym_not] = ACTIONS(1047), + [anon_sym_DOT] = ACTIONS(1047), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1047), + [anon_sym_DOT_DOT_LT] = ACTIONS(1047), + [anon_sym_null] = ACTIONS(1047), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [aux_sym__val_number_decimal_token1] = ACTIONS(1047), + [aux_sym__val_number_decimal_token2] = ACTIONS(1047), + [anon_sym_DOT2] = ACTIONS(1047), + [aux_sym__val_number_decimal_token3] = ACTIONS(1047), + [aux_sym__val_number_token1] = ACTIONS(1047), + [aux_sym__val_number_token2] = ACTIONS(1047), + [aux_sym__val_number_token3] = ACTIONS(1047), + [aux_sym__val_number_token4] = ACTIONS(1047), + [aux_sym__val_number_token5] = ACTIONS(1047), + [aux_sym__val_number_token6] = ACTIONS(1047), + [anon_sym_0b] = ACTIONS(1047), + [anon_sym_0o] = ACTIONS(1047), + [anon_sym_0x] = ACTIONS(1047), + [sym_val_date] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1047), + [sym__str_single_quotes] = ACTIONS(1047), + [sym__str_back_ticks] = ACTIONS(1047), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1047), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1047), + [anon_sym_CARET] = ACTIONS(1047), [anon_sym_POUND] = ACTIONS(113), }, - [1854] = { - [sym_comment] = STATE(1854), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_COMMA] = ACTIONS(1376), - [anon_sym_RBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(5265), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(5267), - [anon_sym_in] = ACTIONS(5275), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(5269), - [anon_sym_STAR_STAR] = ACTIONS(5271), - [anon_sym_PLUS_PLUS] = ACTIONS(5271), - [anon_sym_SLASH] = ACTIONS(5269), - [anon_sym_mod] = ACTIONS(5269), - [anon_sym_SLASH_SLASH] = ACTIONS(5269), - [anon_sym_PLUS] = ACTIONS(5267), - [anon_sym_bit_DASHshl] = ACTIONS(5273), - [anon_sym_bit_DASHshr] = ACTIONS(5273), - [anon_sym_EQ_EQ] = ACTIONS(5265), - [anon_sym_BANG_EQ] = ACTIONS(5265), - [anon_sym_LT2] = ACTIONS(5265), - [anon_sym_LT_EQ] = ACTIONS(5265), - [anon_sym_GT_EQ] = ACTIONS(5265), - [anon_sym_not_DASHin] = ACTIONS(5275), - [anon_sym_starts_DASHwith] = ACTIONS(5275), - [anon_sym_ends_DASHwith] = ACTIONS(5275), - [anon_sym_EQ_TILDE] = ACTIONS(5277), - [anon_sym_BANG_TILDE] = ACTIONS(5277), - [anon_sym_bit_DASHand] = ACTIONS(5279), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [sym__entry_separator] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1376), - [anon_sym_out_GT] = ACTIONS(1376), - [anon_sym_e_GT] = ACTIONS(1376), - [anon_sym_o_GT] = ACTIONS(1376), - [anon_sym_err_PLUSout_GT] = ACTIONS(1376), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1376), - [anon_sym_o_PLUSe_GT] = ACTIONS(1376), - [anon_sym_e_PLUSo_GT] = ACTIONS(1376), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1376), + [2067] = { + [sym_comment] = STATE(2067), + [anon_sym_LBRACK] = ACTIONS(1137), + [anon_sym_COMMA] = ACTIONS(1137), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_DOLLAR] = ACTIONS(1137), + [anon_sym_GT] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_in] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_RBRACE] = ACTIONS(1137), + [anon_sym__] = ACTIONS(1135), + [anon_sym_DOT_DOT] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1135), + [anon_sym_STAR_STAR] = ACTIONS(1137), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_SLASH] = ACTIONS(1135), + [anon_sym_mod] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_bit_DASHshl] = ACTIONS(1137), + [anon_sym_bit_DASHshr] = ACTIONS(1137), + [anon_sym_EQ_EQ] = ACTIONS(1137), + [anon_sym_BANG_EQ] = ACTIONS(1137), + [anon_sym_LT2] = ACTIONS(1135), + [anon_sym_LT_EQ] = ACTIONS(1137), + [anon_sym_GT_EQ] = ACTIONS(1137), + [anon_sym_not_DASHin] = ACTIONS(1137), + [anon_sym_starts_DASHwith] = ACTIONS(1137), + [anon_sym_ends_DASHwith] = ACTIONS(1137), + [anon_sym_EQ_TILDE] = ACTIONS(1137), + [anon_sym_BANG_TILDE] = ACTIONS(1137), + [anon_sym_bit_DASHand] = ACTIONS(1137), + [anon_sym_bit_DASHxor] = ACTIONS(1137), + [anon_sym_bit_DASHor] = ACTIONS(1137), + [anon_sym_and] = ACTIONS(1137), + [anon_sym_xor] = ACTIONS(1137), + [anon_sym_or] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1137), + [anon_sym_DOT_DOT_LT] = ACTIONS(1137), + [anon_sym_null] = ACTIONS(1137), + [anon_sym_true] = ACTIONS(1137), + [anon_sym_false] = ACTIONS(1137), + [aux_sym__val_number_decimal_token1] = ACTIONS(1135), + [aux_sym__val_number_decimal_token2] = ACTIONS(1137), + [anon_sym_DOT2] = ACTIONS(1135), + [aux_sym__val_number_decimal_token3] = ACTIONS(1137), + [aux_sym__val_number_token1] = ACTIONS(1137), + [aux_sym__val_number_token2] = ACTIONS(1137), + [aux_sym__val_number_token3] = ACTIONS(1137), + [aux_sym__val_number_token4] = ACTIONS(1137), + [aux_sym__val_number_token5] = ACTIONS(1137), + [aux_sym__val_number_token6] = ACTIONS(1137), + [anon_sym_0b] = ACTIONS(1135), + [anon_sym_0o] = ACTIONS(1135), + [anon_sym_0x] = ACTIONS(1135), + [sym_val_date] = ACTIONS(1137), + [anon_sym_DQUOTE] = ACTIONS(1137), + [sym__str_single_quotes] = ACTIONS(1137), + [sym__str_back_ticks] = ACTIONS(1137), + [anon_sym_err_GT] = ACTIONS(1137), + [anon_sym_out_GT] = ACTIONS(1137), + [anon_sym_e_GT] = ACTIONS(1137), + [anon_sym_o_GT] = ACTIONS(1137), + [anon_sym_err_PLUSout_GT] = ACTIONS(1137), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1137), + [anon_sym_o_PLUSe_GT] = ACTIONS(1137), + [anon_sym_e_PLUSo_GT] = ACTIONS(1137), + [aux_sym_unquoted_token1] = ACTIONS(1135), + [anon_sym_POUND] = ACTIONS(3), + }, + [2068] = { + [sym_comment] = STATE(2068), + [ts_builtin_sym_end] = ACTIONS(1043), + [anon_sym_SEMI] = ACTIONS(1041), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_LBRACK] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1041), + [anon_sym_PIPE] = ACTIONS(1041), + [anon_sym_DOLLAR] = ACTIONS(1041), + [anon_sym_GT] = ACTIONS(1041), + [anon_sym_DASH_DASH] = ACTIONS(1041), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_in] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_DOT_DOT] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_STAR_STAR] = ACTIONS(1041), + [anon_sym_PLUS_PLUS] = ACTIONS(1041), + [anon_sym_SLASH] = ACTIONS(1041), + [anon_sym_mod] = ACTIONS(1041), + [anon_sym_SLASH_SLASH] = ACTIONS(1041), + [anon_sym_PLUS] = ACTIONS(1041), + [anon_sym_bit_DASHshl] = ACTIONS(1041), + [anon_sym_bit_DASHshr] = ACTIONS(1041), + [anon_sym_EQ_EQ] = ACTIONS(1041), + [anon_sym_BANG_EQ] = ACTIONS(1041), + [anon_sym_LT2] = ACTIONS(1041), + [anon_sym_LT_EQ] = ACTIONS(1041), + [anon_sym_GT_EQ] = ACTIONS(1041), + [anon_sym_not_DASHin] = ACTIONS(1041), + [anon_sym_starts_DASHwith] = ACTIONS(1041), + [anon_sym_ends_DASHwith] = ACTIONS(1041), + [anon_sym_EQ_TILDE] = ACTIONS(1041), + [anon_sym_BANG_TILDE] = ACTIONS(1041), + [anon_sym_bit_DASHand] = ACTIONS(1041), + [anon_sym_bit_DASHxor] = ACTIONS(1041), + [anon_sym_bit_DASHor] = ACTIONS(1041), + [anon_sym_and] = ACTIONS(1041), + [anon_sym_xor] = ACTIONS(1041), + [anon_sym_or] = ACTIONS(1041), + [anon_sym_not] = ACTIONS(1041), + [anon_sym_DOT_DOT2] = ACTIONS(1041), + [anon_sym_DOT] = ACTIONS(1041), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1041), + [anon_sym_DOT_DOT_LT] = ACTIONS(1041), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1043), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1043), + [anon_sym_null] = ACTIONS(1041), + [anon_sym_true] = ACTIONS(1041), + [anon_sym_false] = ACTIONS(1041), + [aux_sym__val_number_decimal_token1] = ACTIONS(1041), + [aux_sym__val_number_decimal_token2] = ACTIONS(1041), + [anon_sym_DOT2] = ACTIONS(1041), + [aux_sym__val_number_decimal_token3] = ACTIONS(1041), + [aux_sym__val_number_token1] = ACTIONS(1041), + [aux_sym__val_number_token2] = ACTIONS(1041), + [aux_sym__val_number_token3] = ACTIONS(1041), + [aux_sym__val_number_token4] = ACTIONS(1041), + [aux_sym__val_number_token5] = ACTIONS(1041), + [aux_sym__val_number_token6] = ACTIONS(1041), + [anon_sym_0b] = ACTIONS(1041), + [anon_sym_0o] = ACTIONS(1041), + [anon_sym_0x] = ACTIONS(1041), + [sym_val_date] = ACTIONS(1041), + [anon_sym_DQUOTE] = ACTIONS(1041), + [sym__str_single_quotes] = ACTIONS(1041), + [sym__str_back_ticks] = ACTIONS(1041), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1041), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1041), [anon_sym_POUND] = ACTIONS(113), }, - [1855] = { - [sym_comment] = STATE(1855), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_COMMA] = ACTIONS(1376), - [anon_sym_RBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(5265), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(5267), - [anon_sym_in] = ACTIONS(5275), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(5269), - [anon_sym_STAR_STAR] = ACTIONS(5271), - [anon_sym_PLUS_PLUS] = ACTIONS(5271), - [anon_sym_SLASH] = ACTIONS(5269), - [anon_sym_mod] = ACTIONS(5269), - [anon_sym_SLASH_SLASH] = ACTIONS(5269), - [anon_sym_PLUS] = ACTIONS(5267), - [anon_sym_bit_DASHshl] = ACTIONS(5273), - [anon_sym_bit_DASHshr] = ACTIONS(5273), - [anon_sym_EQ_EQ] = ACTIONS(5265), - [anon_sym_BANG_EQ] = ACTIONS(5265), - [anon_sym_LT2] = ACTIONS(5265), - [anon_sym_LT_EQ] = ACTIONS(5265), - [anon_sym_GT_EQ] = ACTIONS(5265), - [anon_sym_not_DASHin] = ACTIONS(5275), - [anon_sym_starts_DASHwith] = ACTIONS(5275), - [anon_sym_ends_DASHwith] = ACTIONS(5275), - [anon_sym_EQ_TILDE] = ACTIONS(5277), - [anon_sym_BANG_TILDE] = ACTIONS(5277), - [anon_sym_bit_DASHand] = ACTIONS(5279), - [anon_sym_bit_DASHxor] = ACTIONS(5281), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [sym__entry_separator] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1376), - [anon_sym_out_GT] = ACTIONS(1376), - [anon_sym_e_GT] = ACTIONS(1376), - [anon_sym_o_GT] = ACTIONS(1376), - [anon_sym_err_PLUSout_GT] = ACTIONS(1376), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1376), - [anon_sym_o_PLUSe_GT] = ACTIONS(1376), - [anon_sym_e_PLUSo_GT] = ACTIONS(1376), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1376), + [2069] = { + [sym_comment] = STATE(2069), + [anon_sym_LBRACK] = ACTIONS(1181), + [anon_sym_COMMA] = ACTIONS(1181), + [anon_sym_RBRACK] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_DOLLAR] = ACTIONS(1181), + [anon_sym_GT] = ACTIONS(5711), + [anon_sym_DASH_DASH] = ACTIONS(1181), + [anon_sym_DASH] = ACTIONS(5713), + [anon_sym_in] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(5705), + [anon_sym_STAR_STAR] = ACTIONS(5707), + [anon_sym_PLUS_PLUS] = ACTIONS(5707), + [anon_sym_SLASH] = ACTIONS(5705), + [anon_sym_mod] = ACTIONS(5709), + [anon_sym_SLASH_SLASH] = ACTIONS(5709), + [anon_sym_PLUS] = ACTIONS(5713), + [anon_sym_bit_DASHshl] = ACTIONS(5717), + [anon_sym_bit_DASHshr] = ACTIONS(5717), + [anon_sym_EQ_EQ] = ACTIONS(5719), + [anon_sym_BANG_EQ] = ACTIONS(5719), + [anon_sym_LT2] = ACTIONS(5711), + [anon_sym_LT_EQ] = ACTIONS(5719), + [anon_sym_GT_EQ] = ACTIONS(5719), + [anon_sym_not_DASHin] = ACTIONS(1181), + [anon_sym_starts_DASHwith] = ACTIONS(1181), + [anon_sym_ends_DASHwith] = ACTIONS(1181), + [anon_sym_EQ_TILDE] = ACTIONS(1181), + [anon_sym_BANG_TILDE] = ACTIONS(1181), + [anon_sym_bit_DASHand] = ACTIONS(1181), + [anon_sym_bit_DASHxor] = ACTIONS(1181), + [anon_sym_bit_DASHor] = ACTIONS(1181), + [anon_sym_and] = ACTIONS(1181), + [anon_sym_xor] = ACTIONS(1181), + [anon_sym_or] = ACTIONS(1181), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1181), + [anon_sym_DOT_DOT_LT] = ACTIONS(1181), + [anon_sym_null] = ACTIONS(1181), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1181), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1181), + [aux_sym__val_number_token1] = ACTIONS(1181), + [aux_sym__val_number_token2] = ACTIONS(1181), + [aux_sym__val_number_token3] = ACTIONS(1181), + [aux_sym__val_number_token4] = ACTIONS(1181), + [aux_sym__val_number_token5] = ACTIONS(1181), + [aux_sym__val_number_token6] = ACTIONS(1181), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym__str_single_quotes] = ACTIONS(1181), + [sym__str_back_ticks] = ACTIONS(1181), + [anon_sym_err_GT] = ACTIONS(1181), + [anon_sym_out_GT] = ACTIONS(1181), + [anon_sym_e_GT] = ACTIONS(1181), + [anon_sym_o_GT] = ACTIONS(1181), + [anon_sym_err_PLUSout_GT] = ACTIONS(1181), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1181), + [anon_sym_o_PLUSe_GT] = ACTIONS(1181), + [anon_sym_e_PLUSo_GT] = ACTIONS(1181), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(3), + }, + [2070] = { + [sym_comment] = STATE(2070), + [ts_builtin_sym_end] = ACTIONS(1239), + [anon_sym_export] = ACTIONS(1237), + [anon_sym_alias] = ACTIONS(1237), + [anon_sym_let] = ACTIONS(1237), + [anon_sym_let_DASHenv] = ACTIONS(1237), + [anon_sym_mut] = ACTIONS(1237), + [anon_sym_const] = ACTIONS(1237), + [anon_sym_SEMI] = ACTIONS(1237), + [sym_cmd_identifier] = ACTIONS(1237), + [anon_sym_LF] = ACTIONS(1239), + [anon_sym_def] = ACTIONS(1237), + [anon_sym_export_DASHenv] = ACTIONS(1237), + [anon_sym_extern] = ACTIONS(1237), + [anon_sym_module] = ACTIONS(1237), + [anon_sym_use] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(1237), + [anon_sym_LPAREN] = ACTIONS(1237), + [anon_sym_DOLLAR] = ACTIONS(1237), + [anon_sym_error] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), + [anon_sym_DASH] = ACTIONS(1237), + [anon_sym_break] = ACTIONS(1237), + [anon_sym_continue] = ACTIONS(1237), + [anon_sym_for] = ACTIONS(1237), + [anon_sym_loop] = ACTIONS(1237), + [anon_sym_while] = ACTIONS(1237), + [anon_sym_do] = ACTIONS(1237), + [anon_sym_if] = ACTIONS(1237), + [anon_sym_match] = ACTIONS(1237), + [anon_sym_LBRACE] = ACTIONS(1237), + [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_try] = ACTIONS(1237), + [anon_sym_return] = ACTIONS(1237), + [anon_sym_source] = ACTIONS(1237), + [anon_sym_source_DASHenv] = ACTIONS(1237), + [anon_sym_register] = ACTIONS(1237), + [anon_sym_hide] = ACTIONS(1237), + [anon_sym_hide_DASHenv] = ACTIONS(1237), + [anon_sym_overlay] = ACTIONS(1237), + [anon_sym_as] = ACTIONS(1237), + [anon_sym_where] = ACTIONS(1237), + [anon_sym_not] = ACTIONS(1237), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1237), + [anon_sym_DOT_DOT_LT] = ACTIONS(1237), + [anon_sym_null] = ACTIONS(1237), + [anon_sym_true] = ACTIONS(1237), + [anon_sym_false] = ACTIONS(1237), + [aux_sym__val_number_decimal_token1] = ACTIONS(1237), + [aux_sym__val_number_decimal_token2] = ACTIONS(1237), + [anon_sym_DOT2] = ACTIONS(1237), + [aux_sym__val_number_decimal_token3] = ACTIONS(1237), + [aux_sym__val_number_token1] = ACTIONS(1237), + [aux_sym__val_number_token2] = ACTIONS(1237), + [aux_sym__val_number_token3] = ACTIONS(1237), + [aux_sym__val_number_token4] = ACTIONS(1237), + [aux_sym__val_number_token5] = ACTIONS(1237), + [aux_sym__val_number_token6] = ACTIONS(1237), + [anon_sym_0b] = ACTIONS(1237), + [anon_sym_0o] = ACTIONS(1237), + [anon_sym_0x] = ACTIONS(1237), + [sym_val_date] = ACTIONS(1237), + [anon_sym_DQUOTE] = ACTIONS(1237), + [sym__str_single_quotes] = ACTIONS(1237), + [sym__str_back_ticks] = ACTIONS(1237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1237), + [anon_sym_CARET] = ACTIONS(1237), [anon_sym_POUND] = ACTIONS(113), }, - [1856] = { - [sym_comment] = STATE(1856), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_COMMA] = ACTIONS(1376), - [anon_sym_RBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(5265), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(5267), - [anon_sym_in] = ACTIONS(5275), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(5269), - [anon_sym_STAR_STAR] = ACTIONS(5271), - [anon_sym_PLUS_PLUS] = ACTIONS(5271), - [anon_sym_SLASH] = ACTIONS(5269), - [anon_sym_mod] = ACTIONS(5269), - [anon_sym_SLASH_SLASH] = ACTIONS(5269), - [anon_sym_PLUS] = ACTIONS(5267), - [anon_sym_bit_DASHshl] = ACTIONS(5273), - [anon_sym_bit_DASHshr] = ACTIONS(5273), - [anon_sym_EQ_EQ] = ACTIONS(5265), - [anon_sym_BANG_EQ] = ACTIONS(5265), - [anon_sym_LT2] = ACTIONS(5265), - [anon_sym_LT_EQ] = ACTIONS(5265), - [anon_sym_GT_EQ] = ACTIONS(5265), - [anon_sym_not_DASHin] = ACTIONS(5275), - [anon_sym_starts_DASHwith] = ACTIONS(5275), - [anon_sym_ends_DASHwith] = ACTIONS(5275), - [anon_sym_EQ_TILDE] = ACTIONS(5277), - [anon_sym_BANG_TILDE] = ACTIONS(5277), - [anon_sym_bit_DASHand] = ACTIONS(5279), - [anon_sym_bit_DASHxor] = ACTIONS(5281), - [anon_sym_bit_DASHor] = ACTIONS(5283), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [sym__entry_separator] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1376), - [anon_sym_out_GT] = ACTIONS(1376), - [anon_sym_e_GT] = ACTIONS(1376), - [anon_sym_o_GT] = ACTIONS(1376), - [anon_sym_err_PLUSout_GT] = ACTIONS(1376), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1376), - [anon_sym_o_PLUSe_GT] = ACTIONS(1376), - [anon_sym_e_PLUSo_GT] = ACTIONS(1376), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1376), + [2071] = { + [sym_comment] = STATE(2071), + [ts_builtin_sym_end] = ACTIONS(3693), + [anon_sym_export] = ACTIONS(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_let] = ACTIONS(3691), + [anon_sym_let_DASHenv] = ACTIONS(3691), + [anon_sym_mut] = ACTIONS(3691), + [anon_sym_const] = ACTIONS(3691), + [anon_sym_SEMI] = ACTIONS(3691), + [sym_cmd_identifier] = ACTIONS(3691), + [anon_sym_LF] = ACTIONS(3693), + [anon_sym_def] = ACTIONS(3691), + [anon_sym_export_DASHenv] = ACTIONS(3691), + [anon_sym_extern] = ACTIONS(3691), + [anon_sym_module] = ACTIONS(3691), + [anon_sym_use] = ACTIONS(3691), + [anon_sym_LBRACK] = ACTIONS(3691), + [anon_sym_LPAREN] = ACTIONS(3691), + [anon_sym_DOLLAR] = ACTIONS(3691), + [anon_sym_error] = ACTIONS(3691), + [anon_sym_DASH_DASH] = ACTIONS(3691), + [anon_sym_DASH] = ACTIONS(3691), + [anon_sym_break] = ACTIONS(3691), + [anon_sym_continue] = ACTIONS(3691), + [anon_sym_for] = ACTIONS(3691), + [anon_sym_loop] = ACTIONS(3691), + [anon_sym_while] = ACTIONS(3691), + [anon_sym_do] = ACTIONS(3691), + [anon_sym_if] = ACTIONS(3691), + [anon_sym_match] = ACTIONS(3691), + [anon_sym_LBRACE] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3691), + [anon_sym_try] = ACTIONS(3691), + [anon_sym_return] = ACTIONS(3691), + [anon_sym_source] = ACTIONS(3691), + [anon_sym_source_DASHenv] = ACTIONS(3691), + [anon_sym_register] = ACTIONS(3691), + [anon_sym_hide] = ACTIONS(3691), + [anon_sym_hide_DASHenv] = ACTIONS(3691), + [anon_sym_overlay] = ACTIONS(3691), + [anon_sym_as] = ACTIONS(3691), + [anon_sym_where] = ACTIONS(3691), + [anon_sym_not] = ACTIONS(3691), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3691), + [anon_sym_DOT_DOT_LT] = ACTIONS(3691), + [anon_sym_null] = ACTIONS(3691), + [anon_sym_true] = ACTIONS(3691), + [anon_sym_false] = ACTIONS(3691), + [aux_sym__val_number_decimal_token1] = ACTIONS(3691), + [aux_sym__val_number_decimal_token2] = ACTIONS(3691), + [anon_sym_DOT2] = ACTIONS(3691), + [aux_sym__val_number_decimal_token3] = ACTIONS(3691), + [aux_sym__val_number_token1] = ACTIONS(3691), + [aux_sym__val_number_token2] = ACTIONS(3691), + [aux_sym__val_number_token3] = ACTIONS(3691), + [aux_sym__val_number_token4] = ACTIONS(3691), + [aux_sym__val_number_token5] = ACTIONS(3691), + [aux_sym__val_number_token6] = ACTIONS(3691), + [anon_sym_0b] = ACTIONS(3691), + [anon_sym_0o] = ACTIONS(3691), + [anon_sym_0x] = ACTIONS(3691), + [sym_val_date] = ACTIONS(3691), + [anon_sym_DQUOTE] = ACTIONS(3691), + [sym__str_single_quotes] = ACTIONS(3691), + [sym__str_back_ticks] = ACTIONS(3691), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3691), + [anon_sym_CARET] = ACTIONS(3691), [anon_sym_POUND] = ACTIONS(113), }, - [1857] = { - [sym_comment] = STATE(1857), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_COMMA] = ACTIONS(1376), - [anon_sym_RBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(5265), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(5267), - [anon_sym_in] = ACTIONS(5275), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(5269), - [anon_sym_STAR_STAR] = ACTIONS(5271), - [anon_sym_PLUS_PLUS] = ACTIONS(5271), - [anon_sym_SLASH] = ACTIONS(5269), - [anon_sym_mod] = ACTIONS(5269), - [anon_sym_SLASH_SLASH] = ACTIONS(5269), - [anon_sym_PLUS] = ACTIONS(5267), - [anon_sym_bit_DASHshl] = ACTIONS(5273), - [anon_sym_bit_DASHshr] = ACTIONS(5273), - [anon_sym_EQ_EQ] = ACTIONS(5265), - [anon_sym_BANG_EQ] = ACTIONS(5265), - [anon_sym_LT2] = ACTIONS(5265), - [anon_sym_LT_EQ] = ACTIONS(5265), - [anon_sym_GT_EQ] = ACTIONS(5265), - [anon_sym_not_DASHin] = ACTIONS(5275), - [anon_sym_starts_DASHwith] = ACTIONS(5275), - [anon_sym_ends_DASHwith] = ACTIONS(5275), - [anon_sym_EQ_TILDE] = ACTIONS(5277), - [anon_sym_BANG_TILDE] = ACTIONS(5277), - [anon_sym_bit_DASHand] = ACTIONS(5279), - [anon_sym_bit_DASHxor] = ACTIONS(5281), - [anon_sym_bit_DASHor] = ACTIONS(5283), - [anon_sym_and] = ACTIONS(5285), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [sym__entry_separator] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1376), - [anon_sym_out_GT] = ACTIONS(1376), - [anon_sym_e_GT] = ACTIONS(1376), - [anon_sym_o_GT] = ACTIONS(1376), - [anon_sym_err_PLUSout_GT] = ACTIONS(1376), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1376), - [anon_sym_o_PLUSe_GT] = ACTIONS(1376), - [anon_sym_e_PLUSo_GT] = ACTIONS(1376), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1376), + [2072] = { + [sym_comment] = STATE(2072), + [ts_builtin_sym_end] = ACTIONS(3701), + [anon_sym_export] = ACTIONS(3699), + [anon_sym_alias] = ACTIONS(3699), + [anon_sym_let] = ACTIONS(3699), + [anon_sym_let_DASHenv] = ACTIONS(3699), + [anon_sym_mut] = ACTIONS(3699), + [anon_sym_const] = ACTIONS(3699), + [anon_sym_SEMI] = ACTIONS(3699), + [sym_cmd_identifier] = ACTIONS(3699), + [anon_sym_LF] = ACTIONS(3701), + [anon_sym_def] = ACTIONS(3699), + [anon_sym_export_DASHenv] = ACTIONS(3699), + [anon_sym_extern] = ACTIONS(3699), + [anon_sym_module] = ACTIONS(3699), + [anon_sym_use] = ACTIONS(3699), + [anon_sym_LBRACK] = ACTIONS(3699), + [anon_sym_LPAREN] = ACTIONS(3699), + [anon_sym_DOLLAR] = ACTIONS(3699), + [anon_sym_error] = ACTIONS(3699), + [anon_sym_DASH_DASH] = ACTIONS(3699), + [anon_sym_DASH] = ACTIONS(3699), + [anon_sym_break] = ACTIONS(3699), + [anon_sym_continue] = ACTIONS(3699), + [anon_sym_for] = ACTIONS(3699), + [anon_sym_loop] = ACTIONS(3699), + [anon_sym_while] = ACTIONS(3699), + [anon_sym_do] = ACTIONS(3699), + [anon_sym_if] = ACTIONS(3699), + [anon_sym_match] = ACTIONS(3699), + [anon_sym_LBRACE] = ACTIONS(3699), + [anon_sym_DOT_DOT] = ACTIONS(3699), + [anon_sym_try] = ACTIONS(3699), + [anon_sym_return] = ACTIONS(3699), + [anon_sym_source] = ACTIONS(3699), + [anon_sym_source_DASHenv] = ACTIONS(3699), + [anon_sym_register] = ACTIONS(3699), + [anon_sym_hide] = ACTIONS(3699), + [anon_sym_hide_DASHenv] = ACTIONS(3699), + [anon_sym_overlay] = ACTIONS(3699), + [anon_sym_as] = ACTIONS(3699), + [anon_sym_where] = ACTIONS(3699), + [anon_sym_not] = ACTIONS(3699), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3699), + [anon_sym_DOT_DOT_LT] = ACTIONS(3699), + [anon_sym_null] = ACTIONS(3699), + [anon_sym_true] = ACTIONS(3699), + [anon_sym_false] = ACTIONS(3699), + [aux_sym__val_number_decimal_token1] = ACTIONS(3699), + [aux_sym__val_number_decimal_token2] = ACTIONS(3699), + [anon_sym_DOT2] = ACTIONS(3699), + [aux_sym__val_number_decimal_token3] = ACTIONS(3699), + [aux_sym__val_number_token1] = ACTIONS(3699), + [aux_sym__val_number_token2] = ACTIONS(3699), + [aux_sym__val_number_token3] = ACTIONS(3699), + [aux_sym__val_number_token4] = ACTIONS(3699), + [aux_sym__val_number_token5] = ACTIONS(3699), + [aux_sym__val_number_token6] = ACTIONS(3699), + [anon_sym_0b] = ACTIONS(3699), + [anon_sym_0o] = ACTIONS(3699), + [anon_sym_0x] = ACTIONS(3699), + [sym_val_date] = ACTIONS(3699), + [anon_sym_DQUOTE] = ACTIONS(3699), + [sym__str_single_quotes] = ACTIONS(3699), + [sym__str_back_ticks] = ACTIONS(3699), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3699), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3699), + [anon_sym_CARET] = ACTIONS(3699), [anon_sym_POUND] = ACTIONS(113), }, - [1858] = { - [sym_comment] = STATE(1858), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_COMMA] = ACTIONS(1376), - [anon_sym_RBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(5265), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(5267), - [anon_sym_in] = ACTIONS(5275), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(5269), - [anon_sym_STAR_STAR] = ACTIONS(5271), - [anon_sym_PLUS_PLUS] = ACTIONS(5271), - [anon_sym_SLASH] = ACTIONS(5269), - [anon_sym_mod] = ACTIONS(5269), - [anon_sym_SLASH_SLASH] = ACTIONS(5269), - [anon_sym_PLUS] = ACTIONS(5267), - [anon_sym_bit_DASHshl] = ACTIONS(5273), - [anon_sym_bit_DASHshr] = ACTIONS(5273), - [anon_sym_EQ_EQ] = ACTIONS(5265), - [anon_sym_BANG_EQ] = ACTIONS(5265), - [anon_sym_LT2] = ACTIONS(5265), - [anon_sym_LT_EQ] = ACTIONS(5265), - [anon_sym_GT_EQ] = ACTIONS(5265), - [anon_sym_not_DASHin] = ACTIONS(5275), - [anon_sym_starts_DASHwith] = ACTIONS(5275), - [anon_sym_ends_DASHwith] = ACTIONS(5275), - [anon_sym_EQ_TILDE] = ACTIONS(5277), - [anon_sym_BANG_TILDE] = ACTIONS(5277), - [anon_sym_bit_DASHand] = ACTIONS(5279), - [anon_sym_bit_DASHxor] = ACTIONS(5281), - [anon_sym_bit_DASHor] = ACTIONS(5283), - [anon_sym_and] = ACTIONS(5285), - [anon_sym_xor] = ACTIONS(5287), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [sym__entry_separator] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1376), - [anon_sym_out_GT] = ACTIONS(1376), - [anon_sym_e_GT] = ACTIONS(1376), - [anon_sym_o_GT] = ACTIONS(1376), - [anon_sym_err_PLUSout_GT] = ACTIONS(1376), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1376), - [anon_sym_o_PLUSe_GT] = ACTIONS(1376), - [anon_sym_e_PLUSo_GT] = ACTIONS(1376), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1376), + [2073] = { + [sym_cell_path] = STATE(2574), + [sym_path] = STATE(2095), + [sym_comment] = STATE(2073), + [anon_sym_SEMI] = ACTIONS(1057), + [anon_sym_LF] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_LPAREN] = ACTIONS(1057), + [anon_sym_RPAREN] = ACTIONS(1057), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_DOLLAR] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_in] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_mod] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_PLUS] = ACTIONS(1057), + [anon_sym_bit_DASHshl] = ACTIONS(1057), + [anon_sym_bit_DASHshr] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1057), + [anon_sym_LT2] = ACTIONS(1057), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_not_DASHin] = ACTIONS(1057), + [anon_sym_starts_DASHwith] = ACTIONS(1057), + [anon_sym_ends_DASHwith] = ACTIONS(1057), + [anon_sym_EQ_TILDE] = ACTIONS(1057), + [anon_sym_BANG_TILDE] = ACTIONS(1057), + [anon_sym_bit_DASHand] = ACTIONS(1057), + [anon_sym_bit_DASHxor] = ACTIONS(1057), + [anon_sym_bit_DASHor] = ACTIONS(1057), + [anon_sym_and] = ACTIONS(1057), + [anon_sym_xor] = ACTIONS(1057), + [anon_sym_or] = ACTIONS(1057), + [anon_sym_not] = ACTIONS(1057), + [anon_sym_DOT] = ACTIONS(5731), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1057), + [anon_sym_DOT_DOT_LT] = ACTIONS(1057), + [anon_sym_null] = ACTIONS(1057), + [anon_sym_true] = ACTIONS(1057), + [anon_sym_false] = ACTIONS(1057), + [aux_sym__val_number_decimal_token1] = ACTIONS(1057), + [aux_sym__val_number_decimal_token2] = ACTIONS(1057), + [anon_sym_DOT2] = ACTIONS(1057), + [aux_sym__val_number_decimal_token3] = ACTIONS(1057), + [aux_sym__val_number_token1] = ACTIONS(1057), + [aux_sym__val_number_token2] = ACTIONS(1057), + [aux_sym__val_number_token3] = ACTIONS(1057), + [aux_sym__val_number_token4] = ACTIONS(1057), + [aux_sym__val_number_token5] = ACTIONS(1057), + [aux_sym__val_number_token6] = ACTIONS(1057), + [anon_sym_0b] = ACTIONS(1057), + [anon_sym_0o] = ACTIONS(1057), + [anon_sym_0x] = ACTIONS(1057), + [sym_val_date] = ACTIONS(1057), + [anon_sym_DQUOTE] = ACTIONS(1057), + [sym__str_single_quotes] = ACTIONS(1057), + [sym__str_back_ticks] = ACTIONS(1057), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1057), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1057), [anon_sym_POUND] = ACTIONS(113), }, - [1859] = { - [sym_comment] = STATE(1859), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_COMMA] = ACTIONS(1376), - [anon_sym_RBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(5265), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(5267), - [anon_sym_in] = ACTIONS(5275), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(5269), - [anon_sym_STAR_STAR] = ACTIONS(5271), - [anon_sym_PLUS_PLUS] = ACTIONS(5271), - [anon_sym_SLASH] = ACTIONS(5269), - [anon_sym_mod] = ACTIONS(5269), - [anon_sym_SLASH_SLASH] = ACTIONS(5269), - [anon_sym_PLUS] = ACTIONS(5267), - [anon_sym_bit_DASHshl] = ACTIONS(5273), - [anon_sym_bit_DASHshr] = ACTIONS(5273), - [anon_sym_EQ_EQ] = ACTIONS(5265), - [anon_sym_BANG_EQ] = ACTIONS(5265), - [anon_sym_LT2] = ACTIONS(5265), - [anon_sym_LT_EQ] = ACTIONS(5265), - [anon_sym_GT_EQ] = ACTIONS(5265), - [anon_sym_not_DASHin] = ACTIONS(5275), - [anon_sym_starts_DASHwith] = ACTIONS(5275), - [anon_sym_ends_DASHwith] = ACTIONS(5275), - [anon_sym_EQ_TILDE] = ACTIONS(5277), - [anon_sym_BANG_TILDE] = ACTIONS(5277), - [anon_sym_bit_DASHand] = ACTIONS(5279), - [anon_sym_bit_DASHxor] = ACTIONS(5281), - [anon_sym_bit_DASHor] = ACTIONS(5283), - [anon_sym_and] = ACTIONS(5285), - [anon_sym_xor] = ACTIONS(5287), - [anon_sym_or] = ACTIONS(5289), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [sym__entry_separator] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1376), - [anon_sym_out_GT] = ACTIONS(1376), - [anon_sym_e_GT] = ACTIONS(1376), - [anon_sym_o_GT] = ACTIONS(1376), - [anon_sym_err_PLUSout_GT] = ACTIONS(1376), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1376), - [anon_sym_o_PLUSe_GT] = ACTIONS(1376), - [anon_sym_e_PLUSo_GT] = ACTIONS(1376), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1376), + [2074] = { + [sym_comment] = STATE(2074), + [ts_builtin_sym_end] = ACTIONS(922), + [anon_sym_export] = ACTIONS(920), + [anon_sym_alias] = ACTIONS(920), + [anon_sym_let] = ACTIONS(920), + [anon_sym_let_DASHenv] = ACTIONS(920), + [anon_sym_mut] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(920), + [sym_cmd_identifier] = ACTIONS(920), + [anon_sym_LF] = ACTIONS(922), + [anon_sym_def] = ACTIONS(920), + [anon_sym_export_DASHenv] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym_module] = ACTIONS(920), + [anon_sym_use] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_error] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_loop] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_match] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_try] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_source] = ACTIONS(920), + [anon_sym_source_DASHenv] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_hide] = ACTIONS(920), + [anon_sym_hide_DASHenv] = ACTIONS(920), + [anon_sym_overlay] = ACTIONS(920), + [anon_sym_where] = ACTIONS(920), + [anon_sym_not] = ACTIONS(920), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [aux_sym__immediate_decimal_token1] = ACTIONS(4777), + [anon_sym_null] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), + [anon_sym_CARET] = ACTIONS(920), + [aux_sym_unquoted_token2] = ACTIONS(5806), [anon_sym_POUND] = ACTIONS(113), }, - [1860] = { - [sym_comment] = STATE(1860), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_alias] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_let_DASHenv] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1350), - [sym_cmd_identifier] = ACTIONS(1350), - [anon_sym_LF] = ACTIONS(1352), - [anon_sym_def] = ACTIONS(1350), - [anon_sym_export_DASHenv] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_LBRACK] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1350), - [anon_sym_RPAREN] = ACTIONS(1350), - [anon_sym_DOLLAR] = ACTIONS(1350), - [anon_sym_error] = ACTIONS(1350), - [anon_sym_DASH_DASH] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1350), - [anon_sym_DOT_DOT] = ACTIONS(1350), - [anon_sym_try] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_source] = ACTIONS(1350), - [anon_sym_source_DASHenv] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_hide] = ACTIONS(1350), - [anon_sym_hide_DASHenv] = ACTIONS(1350), - [anon_sym_overlay] = ACTIONS(1350), - [anon_sym_as] = ACTIONS(1350), - [anon_sym_where] = ACTIONS(1350), - [anon_sym_not] = ACTIONS(1350), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1350), - [anon_sym_DOT_DOT_LT] = ACTIONS(1350), - [anon_sym_null] = ACTIONS(1350), - [anon_sym_true] = ACTIONS(1350), - [anon_sym_false] = ACTIONS(1350), - [aux_sym__val_number_decimal_token1] = ACTIONS(1350), - [aux_sym__val_number_decimal_token2] = ACTIONS(1350), - [anon_sym_DOT2] = ACTIONS(1350), - [aux_sym__val_number_decimal_token3] = ACTIONS(1350), - [aux_sym__val_number_token1] = ACTIONS(1350), - [aux_sym__val_number_token2] = ACTIONS(1350), - [aux_sym__val_number_token3] = ACTIONS(1350), - [aux_sym__val_number_token4] = ACTIONS(1350), - [aux_sym__val_number_token5] = ACTIONS(1350), - [aux_sym__val_number_token6] = ACTIONS(1350), - [anon_sym_0b] = ACTIONS(1350), - [anon_sym_0o] = ACTIONS(1350), - [anon_sym_0x] = ACTIONS(1350), - [sym_val_date] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [sym__str_single_quotes] = ACTIONS(1350), - [sym__str_back_ticks] = ACTIONS(1350), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1350), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1350), - [anon_sym_CARET] = ACTIONS(1350), + [2075] = { + [sym_comment] = STATE(2075), + [ts_builtin_sym_end] = ACTIONS(5243), + [anon_sym_export] = ACTIONS(5241), + [anon_sym_alias] = ACTIONS(5241), + [anon_sym_let] = ACTIONS(5241), + [anon_sym_let_DASHenv] = ACTIONS(5241), + [anon_sym_mut] = ACTIONS(5241), + [anon_sym_const] = ACTIONS(5241), + [anon_sym_SEMI] = ACTIONS(5241), + [sym_cmd_identifier] = ACTIONS(5241), + [anon_sym_LF] = ACTIONS(5243), + [anon_sym_def] = ACTIONS(5241), + [anon_sym_export_DASHenv] = ACTIONS(5241), + [anon_sym_extern] = ACTIONS(5241), + [anon_sym_module] = ACTIONS(5241), + [anon_sym_use] = ACTIONS(5241), + [anon_sym_LBRACK] = ACTIONS(5241), + [anon_sym_LPAREN] = ACTIONS(5241), + [anon_sym_DOLLAR] = ACTIONS(5241), + [anon_sym_error] = ACTIONS(5241), + [anon_sym_DASH_DASH] = ACTIONS(5241), + [anon_sym_DASH] = ACTIONS(5241), + [anon_sym_break] = ACTIONS(5241), + [anon_sym_continue] = ACTIONS(5241), + [anon_sym_for] = ACTIONS(5241), + [anon_sym_loop] = ACTIONS(5241), + [anon_sym_while] = ACTIONS(5241), + [anon_sym_do] = ACTIONS(5241), + [anon_sym_if] = ACTIONS(5241), + [anon_sym_match] = ACTIONS(5241), + [anon_sym_LBRACE] = ACTIONS(5241), + [anon_sym_DOT_DOT] = ACTIONS(5241), + [anon_sym_try] = ACTIONS(5241), + [anon_sym_return] = ACTIONS(5241), + [anon_sym_source] = ACTIONS(5241), + [anon_sym_source_DASHenv] = ACTIONS(5241), + [anon_sym_register] = ACTIONS(5241), + [anon_sym_hide] = ACTIONS(5241), + [anon_sym_hide_DASHenv] = ACTIONS(5241), + [anon_sym_overlay] = ACTIONS(5241), + [anon_sym_as] = ACTIONS(5241), + [anon_sym_where] = ACTIONS(5241), + [anon_sym_not] = ACTIONS(5241), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5241), + [anon_sym_DOT_DOT_LT] = ACTIONS(5241), + [anon_sym_null] = ACTIONS(5241), + [anon_sym_true] = ACTIONS(5241), + [anon_sym_false] = ACTIONS(5241), + [aux_sym__val_number_decimal_token1] = ACTIONS(5241), + [aux_sym__val_number_decimal_token2] = ACTIONS(5241), + [anon_sym_DOT2] = ACTIONS(5241), + [aux_sym__val_number_decimal_token3] = ACTIONS(5241), + [aux_sym__val_number_token1] = ACTIONS(5241), + [aux_sym__val_number_token2] = ACTIONS(5241), + [aux_sym__val_number_token3] = ACTIONS(5241), + [aux_sym__val_number_token4] = ACTIONS(5241), + [aux_sym__val_number_token5] = ACTIONS(5241), + [aux_sym__val_number_token6] = ACTIONS(5241), + [anon_sym_0b] = ACTIONS(5241), + [anon_sym_0o] = ACTIONS(5241), + [anon_sym_0x] = ACTIONS(5241), + [sym_val_date] = ACTIONS(5241), + [anon_sym_DQUOTE] = ACTIONS(5241), + [sym__str_single_quotes] = ACTIONS(5241), + [sym__str_back_ticks] = ACTIONS(5241), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5241), + [anon_sym_CARET] = ACTIONS(5241), [anon_sym_POUND] = ACTIONS(113), }, - [1861] = { - [sym_comment] = STATE(1861), - [anon_sym_LBRACK] = ACTIONS(1372), - [anon_sym_COMMA] = ACTIONS(1372), - [anon_sym_RBRACK] = ACTIONS(1372), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_DOLLAR] = ACTIONS(1372), - [anon_sym_GT] = ACTIONS(1372), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1372), - [anon_sym_in] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_DOT_DOT] = ACTIONS(1372), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_STAR_STAR] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_SLASH] = ACTIONS(1372), - [anon_sym_mod] = ACTIONS(1372), - [anon_sym_SLASH_SLASH] = ACTIONS(1372), - [anon_sym_PLUS] = ACTIONS(1372), - [anon_sym_bit_DASHshl] = ACTIONS(1372), - [anon_sym_bit_DASHshr] = ACTIONS(1372), - [anon_sym_EQ_EQ] = ACTIONS(1372), - [anon_sym_BANG_EQ] = ACTIONS(1372), - [anon_sym_LT2] = ACTIONS(1372), - [anon_sym_LT_EQ] = ACTIONS(1372), - [anon_sym_GT_EQ] = ACTIONS(1372), - [anon_sym_not_DASHin] = ACTIONS(1372), - [anon_sym_starts_DASHwith] = ACTIONS(1372), - [anon_sym_ends_DASHwith] = ACTIONS(1372), - [anon_sym_EQ_TILDE] = ACTIONS(1372), - [anon_sym_BANG_TILDE] = ACTIONS(1372), - [anon_sym_bit_DASHand] = ACTIONS(1372), - [anon_sym_bit_DASHxor] = ACTIONS(1372), - [anon_sym_bit_DASHor] = ACTIONS(1372), - [anon_sym_and] = ACTIONS(1372), - [anon_sym_xor] = ACTIONS(1372), - [anon_sym_or] = ACTIONS(1372), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1372), - [anon_sym_DOT_DOT_LT] = ACTIONS(1372), - [anon_sym_null] = ACTIONS(1372), - [anon_sym_true] = ACTIONS(1372), - [anon_sym_false] = ACTIONS(1372), - [aux_sym__val_number_decimal_token1] = ACTIONS(1372), - [aux_sym__val_number_decimal_token2] = ACTIONS(1372), - [anon_sym_DOT2] = ACTIONS(1372), - [aux_sym__val_number_decimal_token3] = ACTIONS(1372), - [aux_sym__val_number_token1] = ACTIONS(1372), - [aux_sym__val_number_token2] = ACTIONS(1372), - [aux_sym__val_number_token3] = ACTIONS(1372), - [aux_sym__val_number_token4] = ACTIONS(1372), - [aux_sym__val_number_token5] = ACTIONS(1372), - [aux_sym__val_number_token6] = ACTIONS(1372), - [anon_sym_0b] = ACTIONS(1372), - [anon_sym_0o] = ACTIONS(1372), - [anon_sym_0x] = ACTIONS(1372), - [sym_val_date] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [sym__str_single_quotes] = ACTIONS(1372), - [sym__str_back_ticks] = ACTIONS(1372), - [sym__entry_separator] = ACTIONS(1374), - [anon_sym_err_GT] = ACTIONS(1372), - [anon_sym_out_GT] = ACTIONS(1372), - [anon_sym_e_GT] = ACTIONS(1372), - [anon_sym_o_GT] = ACTIONS(1372), - [anon_sym_err_PLUSout_GT] = ACTIONS(1372), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1372), - [anon_sym_o_PLUSe_GT] = ACTIONS(1372), - [anon_sym_e_PLUSo_GT] = ACTIONS(1372), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1372), + [2076] = { + [sym_comment] = STATE(2076), + [anon_sym_LBRACK] = ACTIONS(1235), + [anon_sym_COMMA] = ACTIONS(1235), + [anon_sym_RBRACK] = ACTIONS(1235), + [anon_sym_LPAREN] = ACTIONS(1235), + [anon_sym_DOLLAR] = ACTIONS(1235), + [anon_sym_GT] = ACTIONS(1233), + [anon_sym_DASH_DASH] = ACTIONS(1235), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_in] = ACTIONS(1233), + [anon_sym_LBRACE] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1233), + [anon_sym_STAR_STAR] = ACTIONS(1235), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_SLASH] = ACTIONS(1233), + [anon_sym_mod] = ACTIONS(1235), + [anon_sym_SLASH_SLASH] = ACTIONS(1235), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_bit_DASHshl] = ACTIONS(1235), + [anon_sym_bit_DASHshr] = ACTIONS(1235), + [anon_sym_EQ_EQ] = ACTIONS(1235), + [anon_sym_BANG_EQ] = ACTIONS(1235), + [anon_sym_LT2] = ACTIONS(1233), + [anon_sym_LT_EQ] = ACTIONS(1235), + [anon_sym_GT_EQ] = ACTIONS(1235), + [anon_sym_not_DASHin] = ACTIONS(1235), + [anon_sym_starts_DASHwith] = ACTIONS(1235), + [anon_sym_ends_DASHwith] = ACTIONS(1235), + [anon_sym_EQ_TILDE] = ACTIONS(1235), + [anon_sym_BANG_TILDE] = ACTIONS(1235), + [anon_sym_bit_DASHand] = ACTIONS(1235), + [anon_sym_bit_DASHxor] = ACTIONS(1235), + [anon_sym_bit_DASHor] = ACTIONS(1235), + [anon_sym_and] = ACTIONS(1235), + [anon_sym_xor] = ACTIONS(1235), + [anon_sym_or] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1235), + [anon_sym_DOT_DOT_LT] = ACTIONS(1235), + [anon_sym_null] = ACTIONS(1235), + [anon_sym_true] = ACTIONS(1235), + [anon_sym_false] = ACTIONS(1235), + [aux_sym__val_number_decimal_token1] = ACTIONS(1233), + [aux_sym__val_number_decimal_token2] = ACTIONS(1235), + [anon_sym_DOT2] = ACTIONS(1233), + [aux_sym__val_number_decimal_token3] = ACTIONS(1235), + [aux_sym__val_number_token1] = ACTIONS(1235), + [aux_sym__val_number_token2] = ACTIONS(1235), + [aux_sym__val_number_token3] = ACTIONS(1235), + [aux_sym__val_number_token4] = ACTIONS(1235), + [aux_sym__val_number_token5] = ACTIONS(1235), + [aux_sym__val_number_token6] = ACTIONS(1235), + [anon_sym_0b] = ACTIONS(1233), + [anon_sym_0o] = ACTIONS(1233), + [anon_sym_0x] = ACTIONS(1233), + [sym_val_date] = ACTIONS(1235), + [anon_sym_DQUOTE] = ACTIONS(1235), + [sym__str_single_quotes] = ACTIONS(1235), + [sym__str_back_ticks] = ACTIONS(1235), + [anon_sym_err_GT] = ACTIONS(1235), + [anon_sym_out_GT] = ACTIONS(1235), + [anon_sym_e_GT] = ACTIONS(1235), + [anon_sym_o_GT] = ACTIONS(1235), + [anon_sym_err_PLUSout_GT] = ACTIONS(1235), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1235), + [anon_sym_o_PLUSe_GT] = ACTIONS(1235), + [anon_sym_e_PLUSo_GT] = ACTIONS(1235), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1233), + [anon_sym_POUND] = ACTIONS(3), + }, + [2077] = { + [sym_comment] = STATE(2077), + [ts_builtin_sym_end] = ACTIONS(5247), + [anon_sym_export] = ACTIONS(5245), + [anon_sym_alias] = ACTIONS(5245), + [anon_sym_let] = ACTIONS(5245), + [anon_sym_let_DASHenv] = ACTIONS(5245), + [anon_sym_mut] = ACTIONS(5245), + [anon_sym_const] = ACTIONS(5245), + [anon_sym_SEMI] = ACTIONS(5245), + [sym_cmd_identifier] = ACTIONS(5245), + [anon_sym_LF] = ACTIONS(5247), + [anon_sym_def] = ACTIONS(5245), + [anon_sym_export_DASHenv] = ACTIONS(5245), + [anon_sym_extern] = ACTIONS(5245), + [anon_sym_module] = ACTIONS(5245), + [anon_sym_use] = ACTIONS(5245), + [anon_sym_LBRACK] = ACTIONS(5245), + [anon_sym_LPAREN] = ACTIONS(5245), + [anon_sym_DOLLAR] = ACTIONS(5245), + [anon_sym_error] = ACTIONS(5245), + [anon_sym_DASH_DASH] = ACTIONS(5245), + [anon_sym_DASH] = ACTIONS(5245), + [anon_sym_break] = ACTIONS(5245), + [anon_sym_continue] = ACTIONS(5245), + [anon_sym_for] = ACTIONS(5245), + [anon_sym_loop] = ACTIONS(5245), + [anon_sym_while] = ACTIONS(5245), + [anon_sym_do] = ACTIONS(5245), + [anon_sym_if] = ACTIONS(5245), + [anon_sym_match] = ACTIONS(5245), + [anon_sym_LBRACE] = ACTIONS(5245), + [anon_sym_DOT_DOT] = ACTIONS(5245), + [anon_sym_try] = ACTIONS(5245), + [anon_sym_return] = ACTIONS(5245), + [anon_sym_source] = ACTIONS(5245), + [anon_sym_source_DASHenv] = ACTIONS(5245), + [anon_sym_register] = ACTIONS(5245), + [anon_sym_hide] = ACTIONS(5245), + [anon_sym_hide_DASHenv] = ACTIONS(5245), + [anon_sym_overlay] = ACTIONS(5245), + [anon_sym_as] = ACTIONS(5245), + [anon_sym_where] = ACTIONS(5245), + [anon_sym_not] = ACTIONS(5245), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5245), + [anon_sym_DOT_DOT_LT] = ACTIONS(5245), + [anon_sym_null] = ACTIONS(5245), + [anon_sym_true] = ACTIONS(5245), + [anon_sym_false] = ACTIONS(5245), + [aux_sym__val_number_decimal_token1] = ACTIONS(5245), + [aux_sym__val_number_decimal_token2] = ACTIONS(5245), + [anon_sym_DOT2] = ACTIONS(5245), + [aux_sym__val_number_decimal_token3] = ACTIONS(5245), + [aux_sym__val_number_token1] = ACTIONS(5245), + [aux_sym__val_number_token2] = ACTIONS(5245), + [aux_sym__val_number_token3] = ACTIONS(5245), + [aux_sym__val_number_token4] = ACTIONS(5245), + [aux_sym__val_number_token5] = ACTIONS(5245), + [aux_sym__val_number_token6] = ACTIONS(5245), + [anon_sym_0b] = ACTIONS(5245), + [anon_sym_0o] = ACTIONS(5245), + [anon_sym_0x] = ACTIONS(5245), + [sym_val_date] = ACTIONS(5245), + [anon_sym_DQUOTE] = ACTIONS(5245), + [sym__str_single_quotes] = ACTIONS(5245), + [sym__str_back_ticks] = ACTIONS(5245), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5245), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5245), + [anon_sym_CARET] = ACTIONS(5245), [anon_sym_POUND] = ACTIONS(113), }, - [1862] = { - [sym_comment] = STATE(1862), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_COMMA] = ACTIONS(936), - [anon_sym_RBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_STAR_STAR] = ACTIONS(936), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(936), - [anon_sym_SLASH_SLASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(936), - [anon_sym_bit_DASHshr] = ACTIONS(936), - [anon_sym_EQ_EQ] = ACTIONS(936), - [anon_sym_BANG_EQ] = ACTIONS(936), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(936), - [anon_sym_GT_EQ] = ACTIONS(936), - [anon_sym_not_DASHin] = ACTIONS(936), - [anon_sym_starts_DASHwith] = ACTIONS(936), - [anon_sym_ends_DASHwith] = ACTIONS(936), - [anon_sym_EQ_TILDE] = ACTIONS(936), - [anon_sym_BANG_TILDE] = ACTIONS(936), - [anon_sym_bit_DASHand] = ACTIONS(936), - [anon_sym_bit_DASHxor] = ACTIONS(936), - [anon_sym_bit_DASHor] = ACTIONS(936), - [anon_sym_and] = ACTIONS(936), - [anon_sym_xor] = ACTIONS(936), - [anon_sym_or] = ACTIONS(936), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [sym__entry_separator] = ACTIONS(938), - [anon_sym_err_GT] = ACTIONS(936), - [anon_sym_out_GT] = ACTIONS(936), - [anon_sym_e_GT] = ACTIONS(936), - [anon_sym_o_GT] = ACTIONS(936), - [anon_sym_err_PLUSout_GT] = ACTIONS(936), - [anon_sym_out_PLUSerr_GT] = ACTIONS(936), - [anon_sym_o_PLUSe_GT] = ACTIONS(936), - [anon_sym_e_PLUSo_GT] = ACTIONS(936), - [aux_sym__unquoted_in_list_token1] = ACTIONS(936), + [2078] = { + [sym_comment] = STATE(2078), + [anon_sym_LBRACK] = ACTIONS(1181), + [anon_sym_COMMA] = ACTIONS(1181), + [anon_sym_RBRACK] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_DOLLAR] = ACTIONS(1181), + [anon_sym_GT] = ACTIONS(5711), + [anon_sym_DASH_DASH] = ACTIONS(1181), + [anon_sym_DASH] = ACTIONS(5713), + [anon_sym_in] = ACTIONS(5715), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(5705), + [anon_sym_STAR_STAR] = ACTIONS(5707), + [anon_sym_PLUS_PLUS] = ACTIONS(5707), + [anon_sym_SLASH] = ACTIONS(5705), + [anon_sym_mod] = ACTIONS(5709), + [anon_sym_SLASH_SLASH] = ACTIONS(5709), + [anon_sym_PLUS] = ACTIONS(5713), + [anon_sym_bit_DASHshl] = ACTIONS(5717), + [anon_sym_bit_DASHshr] = ACTIONS(5717), + [anon_sym_EQ_EQ] = ACTIONS(5719), + [anon_sym_BANG_EQ] = ACTIONS(5719), + [anon_sym_LT2] = ACTIONS(5711), + [anon_sym_LT_EQ] = ACTIONS(5719), + [anon_sym_GT_EQ] = ACTIONS(5719), + [anon_sym_not_DASHin] = ACTIONS(5721), + [anon_sym_starts_DASHwith] = ACTIONS(5721), + [anon_sym_ends_DASHwith] = ACTIONS(5721), + [anon_sym_EQ_TILDE] = ACTIONS(5723), + [anon_sym_BANG_TILDE] = ACTIONS(5723), + [anon_sym_bit_DASHand] = ACTIONS(5729), + [anon_sym_bit_DASHxor] = ACTIONS(5767), + [anon_sym_bit_DASHor] = ACTIONS(5784), + [anon_sym_and] = ACTIONS(5804), + [anon_sym_xor] = ACTIONS(5808), + [anon_sym_or] = ACTIONS(1181), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1181), + [anon_sym_DOT_DOT_LT] = ACTIONS(1181), + [anon_sym_null] = ACTIONS(1181), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1181), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1181), + [aux_sym__val_number_token1] = ACTIONS(1181), + [aux_sym__val_number_token2] = ACTIONS(1181), + [aux_sym__val_number_token3] = ACTIONS(1181), + [aux_sym__val_number_token4] = ACTIONS(1181), + [aux_sym__val_number_token5] = ACTIONS(1181), + [aux_sym__val_number_token6] = ACTIONS(1181), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym__str_single_quotes] = ACTIONS(1181), + [sym__str_back_ticks] = ACTIONS(1181), + [anon_sym_err_GT] = ACTIONS(1181), + [anon_sym_out_GT] = ACTIONS(1181), + [anon_sym_e_GT] = ACTIONS(1181), + [anon_sym_o_GT] = ACTIONS(1181), + [anon_sym_err_PLUSout_GT] = ACTIONS(1181), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1181), + [anon_sym_o_PLUSe_GT] = ACTIONS(1181), + [anon_sym_e_PLUSo_GT] = ACTIONS(1181), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(3), + }, + [2079] = { + [sym_comment] = STATE(2079), + [anon_sym_LBRACK] = ACTIONS(1173), + [anon_sym_COMMA] = ACTIONS(1173), + [anon_sym_RBRACK] = ACTIONS(1173), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_DOLLAR] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1173), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1173), + [anon_sym_SLASH_SLASH] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1173), + [anon_sym_bit_DASHshr] = ACTIONS(1173), + [anon_sym_EQ_EQ] = ACTIONS(1173), + [anon_sym_BANG_EQ] = ACTIONS(1173), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1173), + [anon_sym_GT_EQ] = ACTIONS(1173), + [anon_sym_not_DASHin] = ACTIONS(1173), + [anon_sym_starts_DASHwith] = ACTIONS(1173), + [anon_sym_ends_DASHwith] = ACTIONS(1173), + [anon_sym_EQ_TILDE] = ACTIONS(1173), + [anon_sym_BANG_TILDE] = ACTIONS(1173), + [anon_sym_bit_DASHand] = ACTIONS(1173), + [anon_sym_bit_DASHxor] = ACTIONS(1173), + [anon_sym_bit_DASHor] = ACTIONS(1173), + [anon_sym_and] = ACTIONS(1173), + [anon_sym_xor] = ACTIONS(1173), + [anon_sym_or] = ACTIONS(1173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1173), + [anon_sym_DOT_DOT_LT] = ACTIONS(1173), + [anon_sym_null] = ACTIONS(1173), + [anon_sym_true] = ACTIONS(1173), + [anon_sym_false] = ACTIONS(1173), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1173), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1173), + [aux_sym__val_number_token1] = ACTIONS(1173), + [aux_sym__val_number_token2] = ACTIONS(1173), + [aux_sym__val_number_token3] = ACTIONS(1173), + [aux_sym__val_number_token4] = ACTIONS(1173), + [aux_sym__val_number_token5] = ACTIONS(1173), + [aux_sym__val_number_token6] = ACTIONS(1173), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym__str_single_quotes] = ACTIONS(1173), + [sym__str_back_ticks] = ACTIONS(1173), + [anon_sym_err_GT] = ACTIONS(1173), + [anon_sym_out_GT] = ACTIONS(1173), + [anon_sym_e_GT] = ACTIONS(1173), + [anon_sym_o_GT] = ACTIONS(1173), + [anon_sym_err_PLUSout_GT] = ACTIONS(1173), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1173), + [anon_sym_o_PLUSe_GT] = ACTIONS(1173), + [anon_sym_e_PLUSo_GT] = ACTIONS(1173), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(3), + }, + [2080] = { + [sym_comment] = STATE(2080), + [ts_builtin_sym_end] = ACTIONS(1039), + [anon_sym_export] = ACTIONS(1037), + [anon_sym_alias] = ACTIONS(1037), + [anon_sym_let] = ACTIONS(1037), + [anon_sym_let_DASHenv] = ACTIONS(1037), + [anon_sym_mut] = ACTIONS(1037), + [anon_sym_const] = ACTIONS(1037), + [anon_sym_SEMI] = ACTIONS(1037), + [sym_cmd_identifier] = ACTIONS(1037), + [anon_sym_LF] = ACTIONS(1039), + [anon_sym_def] = ACTIONS(1037), + [anon_sym_export_DASHenv] = ACTIONS(1037), + [anon_sym_extern] = ACTIONS(1037), + [anon_sym_module] = ACTIONS(1037), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_LBRACK] = ACTIONS(1037), + [anon_sym_LPAREN] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1037), + [anon_sym_error] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_break] = ACTIONS(1037), + [anon_sym_continue] = ACTIONS(1037), + [anon_sym_for] = ACTIONS(1037), + [anon_sym_loop] = ACTIONS(1037), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_do] = ACTIONS(1037), + [anon_sym_if] = ACTIONS(1037), + [anon_sym_match] = ACTIONS(1037), + [anon_sym_LBRACE] = ACTIONS(1037), + [anon_sym_DOT_DOT] = ACTIONS(1037), + [anon_sym_try] = ACTIONS(1037), + [anon_sym_return] = ACTIONS(1037), + [anon_sym_source] = ACTIONS(1037), + [anon_sym_source_DASHenv] = ACTIONS(1037), + [anon_sym_register] = ACTIONS(1037), + [anon_sym_hide] = ACTIONS(1037), + [anon_sym_hide_DASHenv] = ACTIONS(1037), + [anon_sym_overlay] = ACTIONS(1037), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_where] = ACTIONS(1037), + [anon_sym_not] = ACTIONS(1037), + [anon_sym_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1037), + [anon_sym_DOT_DOT_LT] = ACTIONS(1037), + [anon_sym_null] = ACTIONS(1037), + [anon_sym_true] = ACTIONS(1037), + [anon_sym_false] = ACTIONS(1037), + [aux_sym__val_number_decimal_token1] = ACTIONS(1037), + [aux_sym__val_number_decimal_token2] = ACTIONS(1037), + [anon_sym_DOT2] = ACTIONS(1037), + [aux_sym__val_number_decimal_token3] = ACTIONS(1037), + [aux_sym__val_number_token1] = ACTIONS(1037), + [aux_sym__val_number_token2] = ACTIONS(1037), + [aux_sym__val_number_token3] = ACTIONS(1037), + [aux_sym__val_number_token4] = ACTIONS(1037), + [aux_sym__val_number_token5] = ACTIONS(1037), + [aux_sym__val_number_token6] = ACTIONS(1037), + [anon_sym_0b] = ACTIONS(1037), + [anon_sym_0o] = ACTIONS(1037), + [anon_sym_0x] = ACTIONS(1037), + [sym_val_date] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1037), + [sym__str_single_quotes] = ACTIONS(1037), + [sym__str_back_ticks] = ACTIONS(1037), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1037), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1037), + [anon_sym_CARET] = ACTIONS(1037), [anon_sym_POUND] = ACTIONS(113), }, - [1863] = { - [sym_comment] = STATE(1863), + [2081] = { + [sym_comment] = STATE(2081), + [ts_builtin_sym_end] = ACTIONS(3713), + [anon_sym_export] = ACTIONS(3711), + [anon_sym_alias] = ACTIONS(3711), + [anon_sym_let] = ACTIONS(3711), + [anon_sym_let_DASHenv] = ACTIONS(3711), + [anon_sym_mut] = ACTIONS(3711), + [anon_sym_const] = ACTIONS(3711), + [anon_sym_SEMI] = ACTIONS(3711), + [sym_cmd_identifier] = ACTIONS(3711), + [anon_sym_LF] = ACTIONS(3713), + [anon_sym_def] = ACTIONS(3711), + [anon_sym_export_DASHenv] = ACTIONS(3711), + [anon_sym_extern] = ACTIONS(3711), + [anon_sym_module] = ACTIONS(3711), + [anon_sym_use] = ACTIONS(3711), + [anon_sym_LBRACK] = ACTIONS(3711), + [anon_sym_LPAREN] = ACTIONS(3711), + [anon_sym_DOLLAR] = ACTIONS(3711), + [anon_sym_error] = ACTIONS(3711), + [anon_sym_DASH_DASH] = ACTIONS(3711), + [anon_sym_DASH] = ACTIONS(3711), + [anon_sym_break] = ACTIONS(3711), + [anon_sym_continue] = ACTIONS(3711), + [anon_sym_for] = ACTIONS(3711), + [anon_sym_loop] = ACTIONS(3711), + [anon_sym_while] = ACTIONS(3711), + [anon_sym_do] = ACTIONS(3711), + [anon_sym_if] = ACTIONS(3711), + [anon_sym_match] = ACTIONS(3711), + [anon_sym_LBRACE] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3711), + [anon_sym_try] = ACTIONS(3711), + [anon_sym_return] = ACTIONS(3711), + [anon_sym_source] = ACTIONS(3711), + [anon_sym_source_DASHenv] = ACTIONS(3711), + [anon_sym_register] = ACTIONS(3711), + [anon_sym_hide] = ACTIONS(3711), + [anon_sym_hide_DASHenv] = ACTIONS(3711), + [anon_sym_overlay] = ACTIONS(3711), + [anon_sym_as] = ACTIONS(3711), + [anon_sym_where] = ACTIONS(3711), + [anon_sym_not] = ACTIONS(3711), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3711), + [anon_sym_DOT_DOT_LT] = ACTIONS(3711), + [anon_sym_null] = ACTIONS(3711), + [anon_sym_true] = ACTIONS(3711), + [anon_sym_false] = ACTIONS(3711), + [aux_sym__val_number_decimal_token1] = ACTIONS(3711), + [aux_sym__val_number_decimal_token2] = ACTIONS(3711), + [anon_sym_DOT2] = ACTIONS(3711), + [aux_sym__val_number_decimal_token3] = ACTIONS(3711), + [aux_sym__val_number_token1] = ACTIONS(3711), + [aux_sym__val_number_token2] = ACTIONS(3711), + [aux_sym__val_number_token3] = ACTIONS(3711), + [aux_sym__val_number_token4] = ACTIONS(3711), + [aux_sym__val_number_token5] = ACTIONS(3711), + [aux_sym__val_number_token6] = ACTIONS(3711), + [anon_sym_0b] = ACTIONS(3711), + [anon_sym_0o] = ACTIONS(3711), + [anon_sym_0x] = ACTIONS(3711), + [sym_val_date] = ACTIONS(3711), + [anon_sym_DQUOTE] = ACTIONS(3711), + [sym__str_single_quotes] = ACTIONS(3711), + [sym__str_back_ticks] = ACTIONS(3711), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3711), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), + [anon_sym_CARET] = ACTIONS(3711), + [anon_sym_POUND] = ACTIONS(113), + }, + [2082] = { + [sym_comment] = STATE(2082), + [anon_sym_export] = ACTIONS(1139), + [anon_sym_alias] = ACTIONS(1139), + [anon_sym_let] = ACTIONS(1139), + [anon_sym_let_DASHenv] = ACTIONS(1139), + [anon_sym_mut] = ACTIONS(1139), + [anon_sym_const] = ACTIONS(1139), + [anon_sym_SEMI] = ACTIONS(1139), + [sym_cmd_identifier] = ACTIONS(1139), + [anon_sym_LF] = ACTIONS(1139), + [anon_sym_def] = ACTIONS(1139), + [anon_sym_export_DASHenv] = ACTIONS(1139), + [anon_sym_extern] = ACTIONS(1139), + [anon_sym_module] = ACTIONS(1139), + [anon_sym_use] = ACTIONS(1139), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LPAREN] = ACTIONS(1139), + [anon_sym_RPAREN] = ACTIONS(1139), + [anon_sym_DOLLAR] = ACTIONS(1139), + [anon_sym_error] = ACTIONS(1139), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_break] = ACTIONS(1139), + [anon_sym_continue] = ACTIONS(1139), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_loop] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1139), + [anon_sym_do] = ACTIONS(1139), + [anon_sym_if] = ACTIONS(1139), + [anon_sym_match] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1139), + [anon_sym_RBRACE] = ACTIONS(1139), + [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_try] = ACTIONS(1139), + [anon_sym_return] = ACTIONS(1139), + [anon_sym_source] = ACTIONS(1139), + [anon_sym_source_DASHenv] = ACTIONS(1139), + [anon_sym_register] = ACTIONS(1139), + [anon_sym_hide] = ACTIONS(1139), + [anon_sym_hide_DASHenv] = ACTIONS(1139), + [anon_sym_overlay] = ACTIONS(1139), + [anon_sym_where] = ACTIONS(1139), + [anon_sym_not] = ACTIONS(1139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1139), + [anon_sym_DOT_DOT_LT] = ACTIONS(1139), + [anon_sym_null] = ACTIONS(1139), + [anon_sym_true] = ACTIONS(1139), + [anon_sym_false] = ACTIONS(1139), + [aux_sym__val_number_decimal_token1] = ACTIONS(1139), + [aux_sym__val_number_decimal_token2] = ACTIONS(1139), + [anon_sym_DOT2] = ACTIONS(1139), + [aux_sym__val_number_decimal_token3] = ACTIONS(1139), + [aux_sym__val_number_token1] = ACTIONS(1139), + [aux_sym__val_number_token2] = ACTIONS(1139), + [aux_sym__val_number_token3] = ACTIONS(1139), + [aux_sym__val_number_token4] = ACTIONS(1139), + [aux_sym__val_number_token5] = ACTIONS(1139), + [aux_sym__val_number_token6] = ACTIONS(1139), + [anon_sym_0b] = ACTIONS(1139), + [anon_sym_0o] = ACTIONS(1139), + [anon_sym_0x] = ACTIONS(1139), + [sym_val_date] = ACTIONS(1139), + [anon_sym_DQUOTE] = ACTIONS(1139), + [sym__str_single_quotes] = ACTIONS(1139), + [sym__str_back_ticks] = ACTIONS(1139), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1139), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1139), + [aux_sym__list_item_starts_with_sign_token1] = ACTIONS(4821), + [anon_sym_CARET] = ACTIONS(1139), + [anon_sym_POUND] = ACTIONS(113), + }, + [2083] = { + [sym_comment] = STATE(2083), + [ts_builtin_sym_end] = ACTIONS(4957), + [anon_sym_export] = ACTIONS(4955), + [anon_sym_alias] = ACTIONS(4955), + [anon_sym_let] = ACTIONS(4955), + [anon_sym_let_DASHenv] = ACTIONS(4955), + [anon_sym_mut] = ACTIONS(4955), + [anon_sym_const] = ACTIONS(4955), + [anon_sym_SEMI] = ACTIONS(4955), + [sym_cmd_identifier] = ACTIONS(4955), + [anon_sym_LF] = ACTIONS(4957), + [anon_sym_def] = ACTIONS(4955), + [anon_sym_export_DASHenv] = ACTIONS(4955), + [anon_sym_extern] = ACTIONS(4955), + [anon_sym_module] = ACTIONS(4955), + [anon_sym_use] = ACTIONS(4955), + [anon_sym_LBRACK] = ACTIONS(4955), + [anon_sym_LPAREN] = ACTIONS(4955), + [anon_sym_DOLLAR] = ACTIONS(4955), + [anon_sym_error] = ACTIONS(4955), + [anon_sym_DASH_DASH] = ACTIONS(4955), + [anon_sym_DASH] = ACTIONS(4955), + [anon_sym_break] = ACTIONS(4955), + [anon_sym_continue] = ACTIONS(4955), + [anon_sym_for] = ACTIONS(4955), + [anon_sym_loop] = ACTIONS(4955), + [anon_sym_while] = ACTIONS(4955), + [anon_sym_do] = ACTIONS(4955), + [anon_sym_if] = ACTIONS(4955), + [anon_sym_match] = ACTIONS(4955), + [anon_sym_LBRACE] = ACTIONS(4955), + [anon_sym_DOT_DOT] = ACTIONS(4955), + [anon_sym_try] = ACTIONS(4955), + [anon_sym_return] = ACTIONS(4955), + [anon_sym_source] = ACTIONS(4955), + [anon_sym_source_DASHenv] = ACTIONS(4955), + [anon_sym_register] = ACTIONS(4955), + [anon_sym_hide] = ACTIONS(4955), + [anon_sym_hide_DASHenv] = ACTIONS(4955), + [anon_sym_overlay] = ACTIONS(4955), + [anon_sym_as] = ACTIONS(4955), + [anon_sym_where] = ACTIONS(4955), + [anon_sym_not] = ACTIONS(4955), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4955), + [anon_sym_DOT_DOT_LT] = ACTIONS(4955), + [anon_sym_null] = ACTIONS(4955), + [anon_sym_true] = ACTIONS(4955), + [anon_sym_false] = ACTIONS(4955), + [aux_sym__val_number_decimal_token1] = ACTIONS(4955), + [aux_sym__val_number_decimal_token2] = ACTIONS(4955), + [anon_sym_DOT2] = ACTIONS(4955), + [aux_sym__val_number_decimal_token3] = ACTIONS(4955), + [aux_sym__val_number_token1] = ACTIONS(4955), + [aux_sym__val_number_token2] = ACTIONS(4955), + [aux_sym__val_number_token3] = ACTIONS(4955), + [aux_sym__val_number_token4] = ACTIONS(4955), + [aux_sym__val_number_token5] = ACTIONS(4955), + [aux_sym__val_number_token6] = ACTIONS(4955), + [anon_sym_0b] = ACTIONS(4955), + [anon_sym_0o] = ACTIONS(4955), + [anon_sym_0x] = ACTIONS(4955), + [sym_val_date] = ACTIONS(4955), + [anon_sym_DQUOTE] = ACTIONS(4955), + [sym__str_single_quotes] = ACTIONS(4955), + [sym__str_back_ticks] = ACTIONS(4955), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4955), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4955), + [anon_sym_CARET] = ACTIONS(4955), + [anon_sym_POUND] = ACTIONS(113), + }, + [2084] = { + [sym_comment] = STATE(2084), + [ts_builtin_sym_end] = ACTIONS(4961), + [anon_sym_export] = ACTIONS(4959), + [anon_sym_alias] = ACTIONS(4959), + [anon_sym_let] = ACTIONS(4959), + [anon_sym_let_DASHenv] = ACTIONS(4959), + [anon_sym_mut] = ACTIONS(4959), + [anon_sym_const] = ACTIONS(4959), + [anon_sym_SEMI] = ACTIONS(4959), + [sym_cmd_identifier] = ACTIONS(4959), + [anon_sym_LF] = ACTIONS(4961), + [anon_sym_def] = ACTIONS(4959), + [anon_sym_export_DASHenv] = ACTIONS(4959), + [anon_sym_extern] = ACTIONS(4959), + [anon_sym_module] = ACTIONS(4959), + [anon_sym_use] = ACTIONS(4959), + [anon_sym_LBRACK] = ACTIONS(4959), + [anon_sym_LPAREN] = ACTIONS(4959), + [anon_sym_DOLLAR] = ACTIONS(4959), + [anon_sym_error] = ACTIONS(4959), + [anon_sym_DASH_DASH] = ACTIONS(4959), + [anon_sym_DASH] = ACTIONS(4959), + [anon_sym_break] = ACTIONS(4959), + [anon_sym_continue] = ACTIONS(4959), + [anon_sym_for] = ACTIONS(4959), + [anon_sym_loop] = ACTIONS(4959), + [anon_sym_while] = ACTIONS(4959), + [anon_sym_do] = ACTIONS(4959), + [anon_sym_if] = ACTIONS(4959), + [anon_sym_match] = ACTIONS(4959), + [anon_sym_LBRACE] = ACTIONS(4959), + [anon_sym_DOT_DOT] = ACTIONS(4959), + [anon_sym_try] = ACTIONS(4959), + [anon_sym_return] = ACTIONS(4959), + [anon_sym_source] = ACTIONS(4959), + [anon_sym_source_DASHenv] = ACTIONS(4959), + [anon_sym_register] = ACTIONS(4959), + [anon_sym_hide] = ACTIONS(4959), + [anon_sym_hide_DASHenv] = ACTIONS(4959), + [anon_sym_overlay] = ACTIONS(4959), + [anon_sym_as] = ACTIONS(4959), + [anon_sym_where] = ACTIONS(4959), + [anon_sym_not] = ACTIONS(4959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4959), + [anon_sym_DOT_DOT_LT] = ACTIONS(4959), + [anon_sym_null] = ACTIONS(4959), + [anon_sym_true] = ACTIONS(4959), + [anon_sym_false] = ACTIONS(4959), + [aux_sym__val_number_decimal_token1] = ACTIONS(4959), + [aux_sym__val_number_decimal_token2] = ACTIONS(4959), + [anon_sym_DOT2] = ACTIONS(4959), + [aux_sym__val_number_decimal_token3] = ACTIONS(4959), + [aux_sym__val_number_token1] = ACTIONS(4959), + [aux_sym__val_number_token2] = ACTIONS(4959), + [aux_sym__val_number_token3] = ACTIONS(4959), + [aux_sym__val_number_token4] = ACTIONS(4959), + [aux_sym__val_number_token5] = ACTIONS(4959), + [aux_sym__val_number_token6] = ACTIONS(4959), + [anon_sym_0b] = ACTIONS(4959), + [anon_sym_0o] = ACTIONS(4959), + [anon_sym_0x] = ACTIONS(4959), + [sym_val_date] = ACTIONS(4959), + [anon_sym_DQUOTE] = ACTIONS(4959), + [sym__str_single_quotes] = ACTIONS(4959), + [sym__str_back_ticks] = ACTIONS(4959), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4959), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4959), + [anon_sym_CARET] = ACTIONS(4959), + [anon_sym_POUND] = ACTIONS(113), + }, + [2085] = { + [sym_comment] = STATE(2085), + [ts_builtin_sym_end] = ACTIONS(4965), + [anon_sym_export] = ACTIONS(4963), + [anon_sym_alias] = ACTIONS(4963), + [anon_sym_let] = ACTIONS(4963), + [anon_sym_let_DASHenv] = ACTIONS(4963), + [anon_sym_mut] = ACTIONS(4963), + [anon_sym_const] = ACTIONS(4963), + [anon_sym_SEMI] = ACTIONS(4963), + [sym_cmd_identifier] = ACTIONS(4963), + [anon_sym_LF] = ACTIONS(4965), + [anon_sym_def] = ACTIONS(4963), + [anon_sym_export_DASHenv] = ACTIONS(4963), + [anon_sym_extern] = ACTIONS(4963), + [anon_sym_module] = ACTIONS(4963), + [anon_sym_use] = ACTIONS(4963), + [anon_sym_LBRACK] = ACTIONS(4963), + [anon_sym_LPAREN] = ACTIONS(4963), + [anon_sym_DOLLAR] = ACTIONS(4963), + [anon_sym_error] = ACTIONS(4963), + [anon_sym_DASH_DASH] = ACTIONS(4963), + [anon_sym_DASH] = ACTIONS(4963), + [anon_sym_break] = ACTIONS(4963), + [anon_sym_continue] = ACTIONS(4963), + [anon_sym_for] = ACTIONS(4963), + [anon_sym_loop] = ACTIONS(4963), + [anon_sym_while] = ACTIONS(4963), + [anon_sym_do] = ACTIONS(4963), + [anon_sym_if] = ACTIONS(4963), + [anon_sym_match] = ACTIONS(4963), + [anon_sym_LBRACE] = ACTIONS(4963), + [anon_sym_DOT_DOT] = ACTIONS(4963), + [anon_sym_try] = ACTIONS(4963), + [anon_sym_return] = ACTIONS(4963), + [anon_sym_source] = ACTIONS(4963), + [anon_sym_source_DASHenv] = ACTIONS(4963), + [anon_sym_register] = ACTIONS(4963), + [anon_sym_hide] = ACTIONS(4963), + [anon_sym_hide_DASHenv] = ACTIONS(4963), + [anon_sym_overlay] = ACTIONS(4963), + [anon_sym_as] = ACTIONS(4963), + [anon_sym_where] = ACTIONS(4963), + [anon_sym_not] = ACTIONS(4963), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4963), + [anon_sym_DOT_DOT_LT] = ACTIONS(4963), + [anon_sym_null] = ACTIONS(4963), + [anon_sym_true] = ACTIONS(4963), + [anon_sym_false] = ACTIONS(4963), + [aux_sym__val_number_decimal_token1] = ACTIONS(4963), + [aux_sym__val_number_decimal_token2] = ACTIONS(4963), + [anon_sym_DOT2] = ACTIONS(4963), + [aux_sym__val_number_decimal_token3] = ACTIONS(4963), + [aux_sym__val_number_token1] = ACTIONS(4963), + [aux_sym__val_number_token2] = ACTIONS(4963), + [aux_sym__val_number_token3] = ACTIONS(4963), + [aux_sym__val_number_token4] = ACTIONS(4963), + [aux_sym__val_number_token5] = ACTIONS(4963), + [aux_sym__val_number_token6] = ACTIONS(4963), + [anon_sym_0b] = ACTIONS(4963), + [anon_sym_0o] = ACTIONS(4963), + [anon_sym_0x] = ACTIONS(4963), + [sym_val_date] = ACTIONS(4963), + [anon_sym_DQUOTE] = ACTIONS(4963), + [sym__str_single_quotes] = ACTIONS(4963), + [sym__str_back_ticks] = ACTIONS(4963), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4963), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4963), + [anon_sym_CARET] = ACTIONS(4963), + [anon_sym_POUND] = ACTIONS(113), + }, + [2086] = { + [sym_comment] = STATE(2086), + [anon_sym_LBRACK] = ACTIONS(1095), + [anon_sym_COMMA] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1095), + [anon_sym_DOLLAR] = ACTIONS(1095), + [anon_sym_GT] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_in] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_RBRACE] = ACTIONS(1095), + [anon_sym__] = ACTIONS(1093), + [anon_sym_DOT_DOT] = ACTIONS(1093), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_STAR_STAR] = ACTIONS(1095), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_SLASH] = ACTIONS(1093), + [anon_sym_mod] = ACTIONS(1095), + [anon_sym_SLASH_SLASH] = ACTIONS(1095), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_bit_DASHshl] = ACTIONS(1095), + [anon_sym_bit_DASHshr] = ACTIONS(1095), + [anon_sym_EQ_EQ] = ACTIONS(1095), + [anon_sym_BANG_EQ] = ACTIONS(1095), + [anon_sym_LT2] = ACTIONS(1093), + [anon_sym_LT_EQ] = ACTIONS(1095), + [anon_sym_GT_EQ] = ACTIONS(1095), + [anon_sym_not_DASHin] = ACTIONS(1095), + [anon_sym_starts_DASHwith] = ACTIONS(1095), + [anon_sym_ends_DASHwith] = ACTIONS(1095), + [anon_sym_EQ_TILDE] = ACTIONS(1095), + [anon_sym_BANG_TILDE] = ACTIONS(1095), + [anon_sym_bit_DASHand] = ACTIONS(1095), + [anon_sym_bit_DASHxor] = ACTIONS(1095), + [anon_sym_bit_DASHor] = ACTIONS(1095), + [anon_sym_and] = ACTIONS(1095), + [anon_sym_xor] = ACTIONS(1095), + [anon_sym_or] = ACTIONS(1095), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1095), + [anon_sym_DOT_DOT_LT] = ACTIONS(1095), + [anon_sym_null] = ACTIONS(1095), + [anon_sym_true] = ACTIONS(1095), + [anon_sym_false] = ACTIONS(1095), + [aux_sym__val_number_decimal_token1] = ACTIONS(1093), + [aux_sym__val_number_decimal_token2] = ACTIONS(1095), + [anon_sym_DOT2] = ACTIONS(1093), + [aux_sym__val_number_decimal_token3] = ACTIONS(1095), + [aux_sym__val_number_token1] = ACTIONS(1095), + [aux_sym__val_number_token2] = ACTIONS(1095), + [aux_sym__val_number_token3] = ACTIONS(1095), + [aux_sym__val_number_token4] = ACTIONS(1095), + [aux_sym__val_number_token5] = ACTIONS(1095), + [aux_sym__val_number_token6] = ACTIONS(1095), + [anon_sym_0b] = ACTIONS(1093), + [anon_sym_0o] = ACTIONS(1093), + [anon_sym_0x] = ACTIONS(1093), + [sym_val_date] = ACTIONS(1095), + [anon_sym_DQUOTE] = ACTIONS(1095), + [sym__str_single_quotes] = ACTIONS(1095), + [sym__str_back_ticks] = ACTIONS(1095), + [anon_sym_err_GT] = ACTIONS(1095), + [anon_sym_out_GT] = ACTIONS(1095), + [anon_sym_e_GT] = ACTIONS(1095), + [anon_sym_o_GT] = ACTIONS(1095), + [anon_sym_err_PLUSout_GT] = ACTIONS(1095), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1095), + [anon_sym_o_PLUSe_GT] = ACTIONS(1095), + [anon_sym_e_PLUSo_GT] = ACTIONS(1095), + [aux_sym_unquoted_token1] = ACTIONS(1093), + [anon_sym_POUND] = ACTIONS(3), + }, + [2087] = { + [sym_comment] = STATE(2087), + [ts_builtin_sym_end] = ACTIONS(1043), + [anon_sym_export] = ACTIONS(1041), + [anon_sym_alias] = ACTIONS(1041), + [anon_sym_let] = ACTIONS(1041), + [anon_sym_let_DASHenv] = ACTIONS(1041), + [anon_sym_mut] = ACTIONS(1041), + [anon_sym_const] = ACTIONS(1041), + [anon_sym_SEMI] = ACTIONS(1041), + [sym_cmd_identifier] = ACTIONS(1041), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_def] = ACTIONS(1041), + [anon_sym_export_DASHenv] = ACTIONS(1041), + [anon_sym_extern] = ACTIONS(1041), + [anon_sym_module] = ACTIONS(1041), + [anon_sym_use] = ACTIONS(1041), + [anon_sym_LBRACK] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1041), + [anon_sym_DOLLAR] = ACTIONS(1041), + [anon_sym_error] = ACTIONS(1041), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_break] = ACTIONS(1041), + [anon_sym_continue] = ACTIONS(1041), + [anon_sym_for] = ACTIONS(1041), + [anon_sym_loop] = ACTIONS(1041), + [anon_sym_while] = ACTIONS(1041), + [anon_sym_do] = ACTIONS(1041), + [anon_sym_if] = ACTIONS(1041), + [anon_sym_match] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_DOT_DOT] = ACTIONS(1041), + [anon_sym_try] = ACTIONS(1041), + [anon_sym_return] = ACTIONS(1041), + [anon_sym_source] = ACTIONS(1041), + [anon_sym_source_DASHenv] = ACTIONS(1041), + [anon_sym_register] = ACTIONS(1041), + [anon_sym_hide] = ACTIONS(1041), + [anon_sym_hide_DASHenv] = ACTIONS(1041), + [anon_sym_overlay] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_where] = ACTIONS(1041), + [anon_sym_not] = ACTIONS(1041), + [anon_sym_DOT] = ACTIONS(1041), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1041), + [anon_sym_DOT_DOT_LT] = ACTIONS(1041), + [anon_sym_null] = ACTIONS(1041), + [anon_sym_true] = ACTIONS(1041), + [anon_sym_false] = ACTIONS(1041), + [aux_sym__val_number_decimal_token1] = ACTIONS(1041), + [aux_sym__val_number_decimal_token2] = ACTIONS(1041), + [anon_sym_DOT2] = ACTIONS(1041), + [aux_sym__val_number_decimal_token3] = ACTIONS(1041), + [aux_sym__val_number_token1] = ACTIONS(1041), + [aux_sym__val_number_token2] = ACTIONS(1041), + [aux_sym__val_number_token3] = ACTIONS(1041), + [aux_sym__val_number_token4] = ACTIONS(1041), + [aux_sym__val_number_token5] = ACTIONS(1041), + [aux_sym__val_number_token6] = ACTIONS(1041), + [anon_sym_0b] = ACTIONS(1041), + [anon_sym_0o] = ACTIONS(1041), + [anon_sym_0x] = ACTIONS(1041), + [sym_val_date] = ACTIONS(1041), + [anon_sym_DQUOTE] = ACTIONS(1041), + [sym__str_single_quotes] = ACTIONS(1041), + [sym__str_back_ticks] = ACTIONS(1041), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1041), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1041), + [anon_sym_CARET] = ACTIONS(1041), + [anon_sym_POUND] = ACTIONS(113), + }, + [2088] = { + [sym_comment] = STATE(2088), + [anon_sym_LBRACK] = ACTIONS(922), + [anon_sym_COMMA] = ACTIONS(922), + [anon_sym_RBRACK] = ACTIONS(922), + [anon_sym_LPAREN] = ACTIONS(922), + [anon_sym_DOLLAR] = ACTIONS(922), + [anon_sym_GT] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_in] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_STAR_STAR] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_mod] = ACTIONS(922), + [anon_sym_SLASH_SLASH] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_bit_DASHshl] = ACTIONS(922), + [anon_sym_bit_DASHshr] = ACTIONS(922), + [anon_sym_EQ_EQ] = ACTIONS(922), + [anon_sym_BANG_EQ] = ACTIONS(922), + [anon_sym_LT2] = ACTIONS(920), + [anon_sym_LT_EQ] = ACTIONS(922), + [anon_sym_GT_EQ] = ACTIONS(922), + [anon_sym_not_DASHin] = ACTIONS(922), + [anon_sym_starts_DASHwith] = ACTIONS(922), + [anon_sym_ends_DASHwith] = ACTIONS(922), + [anon_sym_EQ_TILDE] = ACTIONS(922), + [anon_sym_BANG_TILDE] = ACTIONS(922), + [anon_sym_bit_DASHand] = ACTIONS(922), + [anon_sym_bit_DASHxor] = ACTIONS(922), + [anon_sym_bit_DASHor] = ACTIONS(922), + [anon_sym_and] = ACTIONS(922), + [anon_sym_xor] = ACTIONS(922), + [anon_sym_or] = ACTIONS(922), + [anon_sym_DOT_DOT_EQ] = ACTIONS(922), + [anon_sym_DOT_DOT_LT] = ACTIONS(922), + [anon_sym_null] = ACTIONS(922), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(922), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(922), + [aux_sym__val_number_token1] = ACTIONS(922), + [aux_sym__val_number_token2] = ACTIONS(922), + [aux_sym__val_number_token3] = ACTIONS(922), + [aux_sym__val_number_token4] = ACTIONS(922), + [aux_sym__val_number_token5] = ACTIONS(922), + [aux_sym__val_number_token6] = ACTIONS(922), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(922), + [anon_sym_DQUOTE] = ACTIONS(922), + [sym__str_single_quotes] = ACTIONS(922), + [sym__str_back_ticks] = ACTIONS(922), + [anon_sym_err_GT] = ACTIONS(922), + [anon_sym_out_GT] = ACTIONS(922), + [anon_sym_e_GT] = ACTIONS(922), + [anon_sym_o_GT] = ACTIONS(922), + [anon_sym_err_PLUSout_GT] = ACTIONS(922), + [anon_sym_out_PLUSerr_GT] = ACTIONS(922), + [anon_sym_o_PLUSe_GT] = ACTIONS(922), + [anon_sym_e_PLUSo_GT] = ACTIONS(922), + [aux_sym__unquoted_in_list_token1] = ACTIONS(920), + [anon_sym_POUND] = ACTIONS(3), + }, + [2089] = { + [sym_comment] = STATE(2089), + [ts_builtin_sym_end] = ACTIONS(4999), + [anon_sym_export] = ACTIONS(4997), + [anon_sym_alias] = ACTIONS(4997), + [anon_sym_let] = ACTIONS(4997), + [anon_sym_let_DASHenv] = ACTIONS(4997), + [anon_sym_mut] = ACTIONS(4997), + [anon_sym_const] = ACTIONS(4997), + [anon_sym_SEMI] = ACTIONS(4997), + [sym_cmd_identifier] = ACTIONS(4997), + [anon_sym_LF] = ACTIONS(4999), + [anon_sym_def] = ACTIONS(4997), + [anon_sym_export_DASHenv] = ACTIONS(4997), + [anon_sym_extern] = ACTIONS(4997), + [anon_sym_module] = ACTIONS(4997), + [anon_sym_use] = ACTIONS(4997), + [anon_sym_LBRACK] = ACTIONS(4997), + [anon_sym_LPAREN] = ACTIONS(4997), + [anon_sym_DOLLAR] = ACTIONS(4997), + [anon_sym_error] = ACTIONS(4997), + [anon_sym_DASH_DASH] = ACTIONS(4997), + [anon_sym_DASH] = ACTIONS(4997), + [anon_sym_break] = ACTIONS(4997), + [anon_sym_continue] = ACTIONS(4997), + [anon_sym_for] = ACTIONS(4997), + [anon_sym_loop] = ACTIONS(4997), + [anon_sym_while] = ACTIONS(4997), + [anon_sym_do] = ACTIONS(4997), + [anon_sym_if] = ACTIONS(4997), + [anon_sym_match] = ACTIONS(4997), + [anon_sym_LBRACE] = ACTIONS(4997), + [anon_sym_DOT_DOT] = ACTIONS(4997), + [anon_sym_try] = ACTIONS(4997), + [anon_sym_return] = ACTIONS(4997), + [anon_sym_source] = ACTIONS(4997), + [anon_sym_source_DASHenv] = ACTIONS(4997), + [anon_sym_register] = ACTIONS(4997), + [anon_sym_hide] = ACTIONS(4997), + [anon_sym_hide_DASHenv] = ACTIONS(4997), + [anon_sym_overlay] = ACTIONS(4997), + [anon_sym_as] = ACTIONS(4997), + [anon_sym_where] = ACTIONS(4997), + [anon_sym_not] = ACTIONS(4997), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4997), + [anon_sym_DOT_DOT_LT] = ACTIONS(4997), + [anon_sym_null] = ACTIONS(4997), + [anon_sym_true] = ACTIONS(4997), + [anon_sym_false] = ACTIONS(4997), + [aux_sym__val_number_decimal_token1] = ACTIONS(4997), + [aux_sym__val_number_decimal_token2] = ACTIONS(4997), + [anon_sym_DOT2] = ACTIONS(4997), + [aux_sym__val_number_decimal_token3] = ACTIONS(4997), + [aux_sym__val_number_token1] = ACTIONS(4997), + [aux_sym__val_number_token2] = ACTIONS(4997), + [aux_sym__val_number_token3] = ACTIONS(4997), + [aux_sym__val_number_token4] = ACTIONS(4997), + [aux_sym__val_number_token5] = ACTIONS(4997), + [aux_sym__val_number_token6] = ACTIONS(4997), + [anon_sym_0b] = ACTIONS(4997), + [anon_sym_0o] = ACTIONS(4997), + [anon_sym_0x] = ACTIONS(4997), + [sym_val_date] = ACTIONS(4997), + [anon_sym_DQUOTE] = ACTIONS(4997), + [sym__str_single_quotes] = ACTIONS(4997), + [sym__str_back_ticks] = ACTIONS(4997), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4997), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4997), + [anon_sym_CARET] = ACTIONS(4997), + [anon_sym_POUND] = ACTIONS(113), + }, + [2090] = { + [sym_comment] = STATE(2090), + [ts_builtin_sym_end] = ACTIONS(5003), + [anon_sym_export] = ACTIONS(5001), + [anon_sym_alias] = ACTIONS(5001), + [anon_sym_let] = ACTIONS(5001), + [anon_sym_let_DASHenv] = ACTIONS(5001), + [anon_sym_mut] = ACTIONS(5001), + [anon_sym_const] = ACTIONS(5001), + [anon_sym_SEMI] = ACTIONS(5001), + [sym_cmd_identifier] = ACTIONS(5001), + [anon_sym_LF] = ACTIONS(5003), + [anon_sym_def] = ACTIONS(5001), + [anon_sym_export_DASHenv] = ACTIONS(5001), + [anon_sym_extern] = ACTIONS(5001), + [anon_sym_module] = ACTIONS(5001), + [anon_sym_use] = ACTIONS(5001), + [anon_sym_LBRACK] = ACTIONS(5001), + [anon_sym_LPAREN] = ACTIONS(5001), + [anon_sym_DOLLAR] = ACTIONS(5001), + [anon_sym_error] = ACTIONS(5001), + [anon_sym_DASH_DASH] = ACTIONS(5001), + [anon_sym_DASH] = ACTIONS(5001), + [anon_sym_break] = ACTIONS(5001), + [anon_sym_continue] = ACTIONS(5001), + [anon_sym_for] = ACTIONS(5001), + [anon_sym_loop] = ACTIONS(5001), + [anon_sym_while] = ACTIONS(5001), + [anon_sym_do] = ACTIONS(5001), + [anon_sym_if] = ACTIONS(5001), + [anon_sym_match] = ACTIONS(5001), + [anon_sym_LBRACE] = ACTIONS(5001), + [anon_sym_DOT_DOT] = ACTIONS(5001), + [anon_sym_try] = ACTIONS(5001), + [anon_sym_return] = ACTIONS(5001), + [anon_sym_source] = ACTIONS(5001), + [anon_sym_source_DASHenv] = ACTIONS(5001), + [anon_sym_register] = ACTIONS(5001), + [anon_sym_hide] = ACTIONS(5001), + [anon_sym_hide_DASHenv] = ACTIONS(5001), + [anon_sym_overlay] = ACTIONS(5001), + [anon_sym_as] = ACTIONS(5001), + [anon_sym_where] = ACTIONS(5001), + [anon_sym_not] = ACTIONS(5001), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5001), + [anon_sym_DOT_DOT_LT] = ACTIONS(5001), + [anon_sym_null] = ACTIONS(5001), + [anon_sym_true] = ACTIONS(5001), + [anon_sym_false] = ACTIONS(5001), + [aux_sym__val_number_decimal_token1] = ACTIONS(5001), + [aux_sym__val_number_decimal_token2] = ACTIONS(5001), + [anon_sym_DOT2] = ACTIONS(5001), + [aux_sym__val_number_decimal_token3] = ACTIONS(5001), + [aux_sym__val_number_token1] = ACTIONS(5001), + [aux_sym__val_number_token2] = ACTIONS(5001), + [aux_sym__val_number_token3] = ACTIONS(5001), + [aux_sym__val_number_token4] = ACTIONS(5001), + [aux_sym__val_number_token5] = ACTIONS(5001), + [aux_sym__val_number_token6] = ACTIONS(5001), + [anon_sym_0b] = ACTIONS(5001), + [anon_sym_0o] = ACTIONS(5001), + [anon_sym_0x] = ACTIONS(5001), + [sym_val_date] = ACTIONS(5001), + [anon_sym_DQUOTE] = ACTIONS(5001), + [sym__str_single_quotes] = ACTIONS(5001), + [sym__str_back_ticks] = ACTIONS(5001), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5001), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5001), + [anon_sym_CARET] = ACTIONS(5001), + [anon_sym_POUND] = ACTIONS(113), + }, + [2091] = { + [sym_comment] = STATE(2091), + [ts_builtin_sym_end] = ACTIONS(5007), + [anon_sym_export] = ACTIONS(5005), + [anon_sym_alias] = ACTIONS(5005), + [anon_sym_let] = ACTIONS(5005), + [anon_sym_let_DASHenv] = ACTIONS(5005), + [anon_sym_mut] = ACTIONS(5005), + [anon_sym_const] = ACTIONS(5005), + [anon_sym_SEMI] = ACTIONS(5005), + [sym_cmd_identifier] = ACTIONS(5005), + [anon_sym_LF] = ACTIONS(5007), + [anon_sym_def] = ACTIONS(5005), + [anon_sym_export_DASHenv] = ACTIONS(5005), + [anon_sym_extern] = ACTIONS(5005), + [anon_sym_module] = ACTIONS(5005), + [anon_sym_use] = ACTIONS(5005), + [anon_sym_LBRACK] = ACTIONS(5005), + [anon_sym_LPAREN] = ACTIONS(5005), + [anon_sym_DOLLAR] = ACTIONS(5005), + [anon_sym_error] = ACTIONS(5005), + [anon_sym_DASH_DASH] = ACTIONS(5005), + [anon_sym_DASH] = ACTIONS(5005), + [anon_sym_break] = ACTIONS(5005), + [anon_sym_continue] = ACTIONS(5005), + [anon_sym_for] = ACTIONS(5005), + [anon_sym_loop] = ACTIONS(5005), + [anon_sym_while] = ACTIONS(5005), + [anon_sym_do] = ACTIONS(5005), + [anon_sym_if] = ACTIONS(5005), + [anon_sym_match] = ACTIONS(5005), + [anon_sym_LBRACE] = ACTIONS(5005), + [anon_sym_DOT_DOT] = ACTIONS(5005), + [anon_sym_try] = ACTIONS(5005), + [anon_sym_return] = ACTIONS(5005), + [anon_sym_source] = ACTIONS(5005), + [anon_sym_source_DASHenv] = ACTIONS(5005), + [anon_sym_register] = ACTIONS(5005), + [anon_sym_hide] = ACTIONS(5005), + [anon_sym_hide_DASHenv] = ACTIONS(5005), + [anon_sym_overlay] = ACTIONS(5005), + [anon_sym_as] = ACTIONS(5005), + [anon_sym_where] = ACTIONS(5005), + [anon_sym_not] = ACTIONS(5005), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5005), + [anon_sym_DOT_DOT_LT] = ACTIONS(5005), + [anon_sym_null] = ACTIONS(5005), + [anon_sym_true] = ACTIONS(5005), + [anon_sym_false] = ACTIONS(5005), + [aux_sym__val_number_decimal_token1] = ACTIONS(5005), + [aux_sym__val_number_decimal_token2] = ACTIONS(5005), + [anon_sym_DOT2] = ACTIONS(5005), + [aux_sym__val_number_decimal_token3] = ACTIONS(5005), + [aux_sym__val_number_token1] = ACTIONS(5005), + [aux_sym__val_number_token2] = ACTIONS(5005), + [aux_sym__val_number_token3] = ACTIONS(5005), + [aux_sym__val_number_token4] = ACTIONS(5005), + [aux_sym__val_number_token5] = ACTIONS(5005), + [aux_sym__val_number_token6] = ACTIONS(5005), + [anon_sym_0b] = ACTIONS(5005), + [anon_sym_0o] = ACTIONS(5005), + [anon_sym_0x] = ACTIONS(5005), + [sym_val_date] = ACTIONS(5005), + [anon_sym_DQUOTE] = ACTIONS(5005), + [sym__str_single_quotes] = ACTIONS(5005), + [sym__str_back_ticks] = ACTIONS(5005), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5005), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5005), + [anon_sym_CARET] = ACTIONS(5005), + [anon_sym_POUND] = ACTIONS(113), + }, + [2092] = { + [sym_cell_path] = STATE(2593), + [sym_path] = STATE(2095), + [sym_comment] = STATE(2092), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_SLASH] = ACTIONS(1002), + [anon_sym_mod] = ACTIONS(1002), + [anon_sym_SLASH_SLASH] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1002), + [anon_sym_bit_DASHshl] = ACTIONS(1002), + [anon_sym_bit_DASHshr] = ACTIONS(1002), + [anon_sym_EQ_EQ] = ACTIONS(1002), + [anon_sym_BANG_EQ] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ] = ACTIONS(1002), + [anon_sym_GT_EQ] = ACTIONS(1002), + [anon_sym_not_DASHin] = ACTIONS(1002), + [anon_sym_starts_DASHwith] = ACTIONS(1002), + [anon_sym_ends_DASHwith] = ACTIONS(1002), + [anon_sym_EQ_TILDE] = ACTIONS(1002), + [anon_sym_BANG_TILDE] = ACTIONS(1002), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT] = ACTIONS(5731), + [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), + [anon_sym_DOT2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = 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(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_POUND] = ACTIONS(113), + }, + [2093] = { + [sym_comment] = STATE(2093), + [ts_builtin_sym_end] = ACTIONS(5021), + [anon_sym_export] = ACTIONS(5019), + [anon_sym_alias] = ACTIONS(5019), + [anon_sym_let] = ACTIONS(5019), + [anon_sym_let_DASHenv] = ACTIONS(5019), + [anon_sym_mut] = ACTIONS(5019), + [anon_sym_const] = ACTIONS(5019), + [anon_sym_SEMI] = ACTIONS(5019), + [sym_cmd_identifier] = ACTIONS(5019), + [anon_sym_LF] = ACTIONS(5021), + [anon_sym_def] = ACTIONS(5019), + [anon_sym_export_DASHenv] = ACTIONS(5019), + [anon_sym_extern] = ACTIONS(5019), + [anon_sym_module] = ACTIONS(5019), + [anon_sym_use] = ACTIONS(5019), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_LPAREN] = ACTIONS(5019), + [anon_sym_DOLLAR] = ACTIONS(5019), + [anon_sym_error] = ACTIONS(5019), + [anon_sym_DASH_DASH] = ACTIONS(5019), + [anon_sym_DASH] = ACTIONS(5019), + [anon_sym_break] = ACTIONS(5019), + [anon_sym_continue] = ACTIONS(5019), + [anon_sym_for] = ACTIONS(5019), + [anon_sym_loop] = ACTIONS(5019), + [anon_sym_while] = ACTIONS(5019), + [anon_sym_do] = ACTIONS(5019), + [anon_sym_if] = ACTIONS(5019), + [anon_sym_match] = ACTIONS(5019), + [anon_sym_LBRACE] = ACTIONS(5019), + [anon_sym_DOT_DOT] = ACTIONS(5019), + [anon_sym_try] = ACTIONS(5019), + [anon_sym_return] = ACTIONS(5019), + [anon_sym_source] = ACTIONS(5019), + [anon_sym_source_DASHenv] = ACTIONS(5019), + [anon_sym_register] = ACTIONS(5019), + [anon_sym_hide] = ACTIONS(5019), + [anon_sym_hide_DASHenv] = ACTIONS(5019), + [anon_sym_overlay] = ACTIONS(5019), + [anon_sym_as] = ACTIONS(5019), + [anon_sym_where] = ACTIONS(5019), + [anon_sym_not] = ACTIONS(5019), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5019), + [anon_sym_DOT_DOT_LT] = ACTIONS(5019), + [anon_sym_null] = ACTIONS(5019), + [anon_sym_true] = ACTIONS(5019), + [anon_sym_false] = ACTIONS(5019), + [aux_sym__val_number_decimal_token1] = ACTIONS(5019), + [aux_sym__val_number_decimal_token2] = ACTIONS(5019), + [anon_sym_DOT2] = ACTIONS(5019), + [aux_sym__val_number_decimal_token3] = ACTIONS(5019), + [aux_sym__val_number_token1] = ACTIONS(5019), + [aux_sym__val_number_token2] = ACTIONS(5019), + [aux_sym__val_number_token3] = ACTIONS(5019), + [aux_sym__val_number_token4] = ACTIONS(5019), + [aux_sym__val_number_token5] = ACTIONS(5019), + [aux_sym__val_number_token6] = ACTIONS(5019), + [anon_sym_0b] = ACTIONS(5019), + [anon_sym_0o] = ACTIONS(5019), + [anon_sym_0x] = ACTIONS(5019), + [sym_val_date] = ACTIONS(5019), + [anon_sym_DQUOTE] = ACTIONS(5019), + [sym__str_single_quotes] = ACTIONS(5019), + [sym__str_back_ticks] = ACTIONS(5019), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5019), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5019), + [anon_sym_CARET] = ACTIONS(5019), + [anon_sym_POUND] = ACTIONS(113), + }, + [2094] = { + [sym_comment] = STATE(2094), + [ts_builtin_sym_end] = ACTIONS(1243), + [anon_sym_export] = ACTIONS(1241), + [anon_sym_alias] = ACTIONS(1241), + [anon_sym_let] = ACTIONS(1241), + [anon_sym_let_DASHenv] = ACTIONS(1241), + [anon_sym_mut] = ACTIONS(1241), + [anon_sym_const] = ACTIONS(1241), + [anon_sym_SEMI] = ACTIONS(1241), + [sym_cmd_identifier] = ACTIONS(1241), + [anon_sym_LF] = ACTIONS(1243), + [anon_sym_def] = ACTIONS(1241), + [anon_sym_export_DASHenv] = ACTIONS(1241), + [anon_sym_extern] = ACTIONS(1241), + [anon_sym_module] = ACTIONS(1241), + [anon_sym_use] = ACTIONS(1241), + [anon_sym_LBRACK] = ACTIONS(1241), + [anon_sym_LPAREN] = ACTIONS(1241), + [anon_sym_DOLLAR] = ACTIONS(1241), + [anon_sym_error] = ACTIONS(1241), + [anon_sym_DASH_DASH] = ACTIONS(1241), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_break] = ACTIONS(1241), + [anon_sym_continue] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_loop] = ACTIONS(1241), + [anon_sym_while] = ACTIONS(1241), + [anon_sym_do] = ACTIONS(1241), + [anon_sym_if] = ACTIONS(1241), + [anon_sym_match] = ACTIONS(1241), + [anon_sym_LBRACE] = ACTIONS(1241), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_try] = ACTIONS(1241), + [anon_sym_return] = ACTIONS(1241), + [anon_sym_source] = ACTIONS(1241), + [anon_sym_source_DASHenv] = ACTIONS(1241), + [anon_sym_register] = ACTIONS(1241), + [anon_sym_hide] = ACTIONS(1241), + [anon_sym_hide_DASHenv] = ACTIONS(1241), + [anon_sym_overlay] = ACTIONS(1241), + [anon_sym_as] = ACTIONS(1241), + [anon_sym_where] = ACTIONS(1241), + [anon_sym_not] = ACTIONS(1241), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1241), + [anon_sym_DOT_DOT_LT] = ACTIONS(1241), + [anon_sym_null] = ACTIONS(1241), + [anon_sym_true] = ACTIONS(1241), + [anon_sym_false] = ACTIONS(1241), + [aux_sym__val_number_decimal_token1] = ACTIONS(1241), + [aux_sym__val_number_decimal_token2] = ACTIONS(1241), + [anon_sym_DOT2] = ACTIONS(1241), + [aux_sym__val_number_decimal_token3] = ACTIONS(1241), + [aux_sym__val_number_token1] = ACTIONS(1241), + [aux_sym__val_number_token2] = ACTIONS(1241), + [aux_sym__val_number_token3] = ACTIONS(1241), + [aux_sym__val_number_token4] = ACTIONS(1241), + [aux_sym__val_number_token5] = ACTIONS(1241), + [aux_sym__val_number_token6] = ACTIONS(1241), + [anon_sym_0b] = ACTIONS(1241), + [anon_sym_0o] = ACTIONS(1241), + [anon_sym_0x] = ACTIONS(1241), + [sym_val_date] = ACTIONS(1241), + [anon_sym_DQUOTE] = ACTIONS(1241), + [sym__str_single_quotes] = ACTIONS(1241), + [sym__str_back_ticks] = ACTIONS(1241), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1241), + [anon_sym_CARET] = ACTIONS(1241), + [anon_sym_POUND] = ACTIONS(113), + }, + [2095] = { + [sym_path] = STATE(2507), + [sym_comment] = STATE(2095), + [aux_sym_cell_path_repeat1] = STATE(2097), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT] = ACTIONS(5731), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_null] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym__val_number_decimal_token1] = ACTIONS(1010), + [aux_sym__val_number_decimal_token2] = ACTIONS(1010), + [anon_sym_DOT2] = ACTIONS(1010), + [aux_sym__val_number_decimal_token3] = 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(1010), + [aux_sym__val_number_token5] = ACTIONS(1010), + [aux_sym__val_number_token6] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [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_POUND] = ACTIONS(113), + }, + [2096] = { + [sym_comment] = STATE(2096), + [anon_sym_LBRACK] = ACTIONS(1173), + [anon_sym_COMMA] = ACTIONS(1173), + [anon_sym_RBRACK] = ACTIONS(1173), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_DOLLAR] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1173), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1173), + [anon_sym_SLASH_SLASH] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1173), + [anon_sym_bit_DASHshr] = ACTIONS(1173), + [anon_sym_EQ_EQ] = ACTIONS(1173), + [anon_sym_BANG_EQ] = ACTIONS(1173), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1173), + [anon_sym_GT_EQ] = ACTIONS(1173), + [anon_sym_not_DASHin] = ACTIONS(1173), + [anon_sym_starts_DASHwith] = ACTIONS(1173), + [anon_sym_ends_DASHwith] = ACTIONS(1173), + [anon_sym_EQ_TILDE] = ACTIONS(1173), + [anon_sym_BANG_TILDE] = ACTIONS(1173), + [anon_sym_bit_DASHand] = ACTIONS(1173), + [anon_sym_bit_DASHxor] = ACTIONS(1173), + [anon_sym_bit_DASHor] = ACTIONS(1173), + [anon_sym_and] = ACTIONS(1173), + [anon_sym_xor] = ACTIONS(1173), + [anon_sym_or] = ACTIONS(1173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1173), + [anon_sym_DOT_DOT_LT] = ACTIONS(1173), + [anon_sym_null] = ACTIONS(1173), + [anon_sym_true] = ACTIONS(1173), + [anon_sym_false] = ACTIONS(1173), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1173), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1173), + [aux_sym__val_number_token1] = ACTIONS(1173), + [aux_sym__val_number_token2] = ACTIONS(1173), + [aux_sym__val_number_token3] = ACTIONS(1173), + [aux_sym__val_number_token4] = ACTIONS(1173), + [aux_sym__val_number_token5] = ACTIONS(1173), + [aux_sym__val_number_token6] = ACTIONS(1173), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym__str_single_quotes] = ACTIONS(1173), + [sym__str_back_ticks] = ACTIONS(1173), + [anon_sym_err_GT] = ACTIONS(1173), + [anon_sym_out_GT] = ACTIONS(1173), + [anon_sym_e_GT] = ACTIONS(1173), + [anon_sym_o_GT] = ACTIONS(1173), + [anon_sym_err_PLUSout_GT] = ACTIONS(1173), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1173), + [anon_sym_o_PLUSe_GT] = ACTIONS(1173), + [anon_sym_e_PLUSo_GT] = ACTIONS(1173), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(3), + }, + [2097] = { + [sym_path] = STATE(2507), + [sym_comment] = STATE(2097), + [aux_sym_cell_path_repeat1] = STATE(2099), + [anon_sym_SEMI] = ACTIONS(1006), + [anon_sym_LF] = ACTIONS(1008), + [anon_sym_LBRACK] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_RPAREN] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1006), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_GT] = ACTIONS(1006), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_in] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(1006), + [anon_sym_DOT_DOT] = ACTIONS(1006), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_STAR_STAR] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_mod] = ACTIONS(1006), + [anon_sym_SLASH_SLASH] = ACTIONS(1006), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_bit_DASHshl] = ACTIONS(1006), + [anon_sym_bit_DASHshr] = ACTIONS(1006), + [anon_sym_EQ_EQ] = ACTIONS(1006), + [anon_sym_BANG_EQ] = ACTIONS(1006), + [anon_sym_LT2] = ACTIONS(1006), + [anon_sym_LT_EQ] = ACTIONS(1006), + [anon_sym_GT_EQ] = ACTIONS(1006), + [anon_sym_not_DASHin] = ACTIONS(1006), + [anon_sym_starts_DASHwith] = ACTIONS(1006), + [anon_sym_ends_DASHwith] = ACTIONS(1006), + [anon_sym_EQ_TILDE] = ACTIONS(1006), + [anon_sym_BANG_TILDE] = ACTIONS(1006), + [anon_sym_bit_DASHand] = ACTIONS(1006), + [anon_sym_bit_DASHxor] = ACTIONS(1006), + [anon_sym_bit_DASHor] = ACTIONS(1006), + [anon_sym_and] = ACTIONS(1006), + [anon_sym_xor] = ACTIONS(1006), + [anon_sym_or] = ACTIONS(1006), + [anon_sym_not] = ACTIONS(1006), + [anon_sym_DOT] = ACTIONS(5731), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), + [anon_sym_DOT_DOT_LT] = ACTIONS(1006), + [anon_sym_null] = ACTIONS(1006), + [anon_sym_true] = ACTIONS(1006), + [anon_sym_false] = ACTIONS(1006), + [aux_sym__val_number_decimal_token1] = ACTIONS(1006), + [aux_sym__val_number_decimal_token2] = ACTIONS(1006), + [anon_sym_DOT2] = ACTIONS(1006), + [aux_sym__val_number_decimal_token3] = ACTIONS(1006), + [aux_sym__val_number_token1] = ACTIONS(1006), + [aux_sym__val_number_token2] = ACTIONS(1006), + [aux_sym__val_number_token3] = ACTIONS(1006), + [aux_sym__val_number_token4] = ACTIONS(1006), + [aux_sym__val_number_token5] = ACTIONS(1006), + [aux_sym__val_number_token6] = ACTIONS(1006), + [anon_sym_0b] = ACTIONS(1006), + [anon_sym_0o] = ACTIONS(1006), + [anon_sym_0x] = ACTIONS(1006), + [sym_val_date] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym__str_single_quotes] = ACTIONS(1006), + [sym__str_back_ticks] = ACTIONS(1006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1006), + [anon_sym_POUND] = ACTIONS(113), + }, + [2098] = { + [sym_comment] = STATE(2098), + [anon_sym_LBRACK] = ACTIONS(1095), + [anon_sym_COMMA] = ACTIONS(1095), + [anon_sym_RBRACK] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1095), + [anon_sym_DOLLAR] = ACTIONS(1095), + [anon_sym_GT] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_in] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_DOT_DOT] = ACTIONS(1093), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_STAR_STAR] = ACTIONS(1095), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_SLASH] = ACTIONS(1093), + [anon_sym_mod] = ACTIONS(1095), + [anon_sym_SLASH_SLASH] = ACTIONS(1095), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_bit_DASHshl] = ACTIONS(1095), + [anon_sym_bit_DASHshr] = ACTIONS(1095), + [anon_sym_EQ_EQ] = ACTIONS(1095), + [anon_sym_BANG_EQ] = ACTIONS(1095), + [anon_sym_LT2] = ACTIONS(1093), + [anon_sym_LT_EQ] = ACTIONS(1095), + [anon_sym_GT_EQ] = ACTIONS(1095), + [anon_sym_not_DASHin] = ACTIONS(1095), + [anon_sym_starts_DASHwith] = ACTIONS(1095), + [anon_sym_ends_DASHwith] = ACTIONS(1095), + [anon_sym_EQ_TILDE] = ACTIONS(1095), + [anon_sym_BANG_TILDE] = ACTIONS(1095), + [anon_sym_bit_DASHand] = ACTIONS(1095), + [anon_sym_bit_DASHxor] = ACTIONS(1095), + [anon_sym_bit_DASHor] = ACTIONS(1095), + [anon_sym_and] = ACTIONS(1095), + [anon_sym_xor] = ACTIONS(1095), + [anon_sym_or] = ACTIONS(1095), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1095), + [anon_sym_DOT_DOT_LT] = ACTIONS(1095), + [anon_sym_null] = ACTIONS(1095), + [anon_sym_true] = ACTIONS(1095), + [anon_sym_false] = ACTIONS(1095), + [aux_sym__val_number_decimal_token1] = ACTIONS(1093), + [aux_sym__val_number_decimal_token2] = ACTIONS(1095), + [anon_sym_DOT2] = ACTIONS(1093), + [aux_sym__val_number_decimal_token3] = ACTIONS(1095), + [aux_sym__val_number_token1] = ACTIONS(1095), + [aux_sym__val_number_token2] = ACTIONS(1095), + [aux_sym__val_number_token3] = ACTIONS(1095), + [aux_sym__val_number_token4] = ACTIONS(1095), + [aux_sym__val_number_token5] = ACTIONS(1095), + [aux_sym__val_number_token6] = ACTIONS(1095), + [anon_sym_0b] = ACTIONS(1093), + [anon_sym_0o] = ACTIONS(1093), + [anon_sym_0x] = ACTIONS(1093), + [sym_val_date] = ACTIONS(1095), + [anon_sym_DQUOTE] = ACTIONS(1095), + [sym__str_single_quotes] = ACTIONS(1095), + [sym__str_back_ticks] = ACTIONS(1095), + [anon_sym_err_GT] = ACTIONS(1095), + [anon_sym_out_GT] = ACTIONS(1095), + [anon_sym_e_GT] = ACTIONS(1095), + [anon_sym_o_GT] = ACTIONS(1095), + [anon_sym_err_PLUSout_GT] = ACTIONS(1095), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1095), + [anon_sym_o_PLUSe_GT] = ACTIONS(1095), + [anon_sym_e_PLUSo_GT] = ACTIONS(1095), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1093), + [anon_sym_POUND] = ACTIONS(3), + }, + [2099] = { + [sym_path] = STATE(2507), + [sym_comment] = STATE(2099), + [aux_sym_cell_path_repeat1] = STATE(2099), + [anon_sym_SEMI] = ACTIONS(985), + [anon_sym_LF] = ACTIONS(987), + [anon_sym_LBRACK] = ACTIONS(985), + [anon_sym_LPAREN] = ACTIONS(985), + [anon_sym_RPAREN] = ACTIONS(985), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_GT] = ACTIONS(985), + [anon_sym_DASH_DASH] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_in] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(985), + [anon_sym_RBRACE] = ACTIONS(985), + [anon_sym_DOT_DOT] = ACTIONS(985), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_STAR_STAR] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(985), + [anon_sym_SLASH] = ACTIONS(985), + [anon_sym_mod] = ACTIONS(985), + [anon_sym_SLASH_SLASH] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_bit_DASHshl] = ACTIONS(985), + [anon_sym_bit_DASHshr] = ACTIONS(985), + [anon_sym_EQ_EQ] = ACTIONS(985), + [anon_sym_BANG_EQ] = ACTIONS(985), + [anon_sym_LT2] = ACTIONS(985), + [anon_sym_LT_EQ] = ACTIONS(985), + [anon_sym_GT_EQ] = ACTIONS(985), + [anon_sym_not_DASHin] = ACTIONS(985), + [anon_sym_starts_DASHwith] = ACTIONS(985), + [anon_sym_ends_DASHwith] = ACTIONS(985), + [anon_sym_EQ_TILDE] = ACTIONS(985), + [anon_sym_BANG_TILDE] = ACTIONS(985), + [anon_sym_bit_DASHand] = ACTIONS(985), + [anon_sym_bit_DASHxor] = ACTIONS(985), + [anon_sym_bit_DASHor] = ACTIONS(985), + [anon_sym_and] = ACTIONS(985), + [anon_sym_xor] = ACTIONS(985), + [anon_sym_or] = ACTIONS(985), + [anon_sym_not] = ACTIONS(985), + [anon_sym_DOT] = ACTIONS(5810), + [anon_sym_DOT_DOT_EQ] = ACTIONS(985), + [anon_sym_DOT_DOT_LT] = ACTIONS(985), + [anon_sym_null] = ACTIONS(985), + [anon_sym_true] = ACTIONS(985), + [anon_sym_false] = ACTIONS(985), + [aux_sym__val_number_decimal_token1] = ACTIONS(985), + [aux_sym__val_number_decimal_token2] = ACTIONS(985), + [anon_sym_DOT2] = ACTIONS(985), + [aux_sym__val_number_decimal_token3] = ACTIONS(985), + [aux_sym__val_number_token1] = ACTIONS(985), + [aux_sym__val_number_token2] = ACTIONS(985), + [aux_sym__val_number_token3] = ACTIONS(985), + [aux_sym__val_number_token4] = ACTIONS(985), + [aux_sym__val_number_token5] = ACTIONS(985), + [aux_sym__val_number_token6] = ACTIONS(985), + [anon_sym_0b] = ACTIONS(985), + [anon_sym_0o] = ACTIONS(985), + [anon_sym_0x] = ACTIONS(985), + [sym_val_date] = ACTIONS(985), + [anon_sym_DQUOTE] = ACTIONS(985), + [sym__str_single_quotes] = ACTIONS(985), + [sym__str_back_ticks] = ACTIONS(985), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(985), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(985), + [anon_sym_POUND] = ACTIONS(113), + }, + [2100] = { + [sym_comment] = STATE(2100), + [ts_builtin_sym_end] = ACTIONS(5591), + [anon_sym_export] = ACTIONS(5589), + [anon_sym_alias] = ACTIONS(5589), + [anon_sym_let] = ACTIONS(5589), + [anon_sym_let_DASHenv] = ACTIONS(5589), + [anon_sym_mut] = ACTIONS(5589), + [anon_sym_const] = ACTIONS(5589), + [anon_sym_SEMI] = ACTIONS(5589), + [sym_cmd_identifier] = ACTIONS(5589), + [anon_sym_LF] = ACTIONS(5591), + [anon_sym_def] = ACTIONS(5589), + [anon_sym_export_DASHenv] = ACTIONS(5589), + [anon_sym_extern] = ACTIONS(5589), + [anon_sym_module] = ACTIONS(5589), + [anon_sym_use] = ACTIONS(5589), + [anon_sym_LBRACK] = ACTIONS(5589), + [anon_sym_LPAREN] = ACTIONS(5589), + [anon_sym_DOLLAR] = ACTIONS(5589), + [anon_sym_error] = ACTIONS(5589), + [anon_sym_DASH_DASH] = ACTIONS(5589), + [anon_sym_DASH] = ACTIONS(5589), + [anon_sym_break] = ACTIONS(5589), + [anon_sym_continue] = ACTIONS(5589), + [anon_sym_for] = ACTIONS(5589), + [anon_sym_loop] = ACTIONS(5589), + [anon_sym_while] = ACTIONS(5589), + [anon_sym_do] = ACTIONS(5589), + [anon_sym_if] = ACTIONS(5589), + [anon_sym_match] = ACTIONS(5589), + [anon_sym_LBRACE] = ACTIONS(5589), + [anon_sym_DOT_DOT] = ACTIONS(5589), + [anon_sym_try] = ACTIONS(5589), + [anon_sym_return] = ACTIONS(5589), + [anon_sym_source] = ACTIONS(5589), + [anon_sym_source_DASHenv] = ACTIONS(5589), + [anon_sym_register] = ACTIONS(5589), + [anon_sym_hide] = ACTIONS(5589), + [anon_sym_hide_DASHenv] = ACTIONS(5589), + [anon_sym_overlay] = ACTIONS(5589), + [anon_sym_as] = ACTIONS(5589), + [anon_sym_where] = ACTIONS(5589), + [anon_sym_not] = ACTIONS(5589), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5589), + [anon_sym_DOT_DOT_LT] = ACTIONS(5589), + [anon_sym_null] = ACTIONS(5589), + [anon_sym_true] = ACTIONS(5589), + [anon_sym_false] = ACTIONS(5589), + [aux_sym__val_number_decimal_token1] = ACTIONS(5589), + [aux_sym__val_number_decimal_token2] = ACTIONS(5589), + [anon_sym_DOT2] = ACTIONS(5589), + [aux_sym__val_number_decimal_token3] = ACTIONS(5589), + [aux_sym__val_number_token1] = ACTIONS(5589), + [aux_sym__val_number_token2] = ACTIONS(5589), + [aux_sym__val_number_token3] = ACTIONS(5589), + [aux_sym__val_number_token4] = ACTIONS(5589), + [aux_sym__val_number_token5] = ACTIONS(5589), + [aux_sym__val_number_token6] = ACTIONS(5589), + [anon_sym_0b] = ACTIONS(5589), + [anon_sym_0o] = ACTIONS(5589), + [anon_sym_0x] = ACTIONS(5589), + [sym_val_date] = ACTIONS(5589), + [anon_sym_DQUOTE] = ACTIONS(5589), + [sym__str_single_quotes] = ACTIONS(5589), + [sym__str_back_ticks] = ACTIONS(5589), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5589), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5589), + [anon_sym_CARET] = ACTIONS(5589), + [anon_sym_POUND] = ACTIONS(113), + }, + [2101] = { + [sym_comment] = STATE(2101), + [ts_builtin_sym_end] = ACTIONS(5025), + [anon_sym_export] = ACTIONS(5023), + [anon_sym_alias] = ACTIONS(5023), + [anon_sym_let] = ACTIONS(5023), + [anon_sym_let_DASHenv] = ACTIONS(5023), + [anon_sym_mut] = ACTIONS(5023), + [anon_sym_const] = ACTIONS(5023), + [anon_sym_SEMI] = ACTIONS(5023), + [sym_cmd_identifier] = ACTIONS(5023), + [anon_sym_LF] = ACTIONS(5025), + [anon_sym_def] = ACTIONS(5023), + [anon_sym_export_DASHenv] = ACTIONS(5023), + [anon_sym_extern] = ACTIONS(5023), + [anon_sym_module] = ACTIONS(5023), + [anon_sym_use] = ACTIONS(5023), + [anon_sym_LBRACK] = ACTIONS(5023), + [anon_sym_LPAREN] = ACTIONS(5023), + [anon_sym_DOLLAR] = ACTIONS(5023), + [anon_sym_error] = ACTIONS(5023), + [anon_sym_DASH_DASH] = ACTIONS(5023), + [anon_sym_DASH] = ACTIONS(5023), + [anon_sym_break] = ACTIONS(5023), + [anon_sym_continue] = ACTIONS(5023), + [anon_sym_for] = ACTIONS(5023), + [anon_sym_loop] = ACTIONS(5023), + [anon_sym_while] = ACTIONS(5023), + [anon_sym_do] = ACTIONS(5023), + [anon_sym_if] = ACTIONS(5023), + [anon_sym_match] = ACTIONS(5023), + [anon_sym_LBRACE] = ACTIONS(5023), + [anon_sym_DOT_DOT] = ACTIONS(5023), + [anon_sym_try] = ACTIONS(5023), + [anon_sym_return] = ACTIONS(5023), + [anon_sym_source] = ACTIONS(5023), + [anon_sym_source_DASHenv] = ACTIONS(5023), + [anon_sym_register] = ACTIONS(5023), + [anon_sym_hide] = ACTIONS(5023), + [anon_sym_hide_DASHenv] = ACTIONS(5023), + [anon_sym_overlay] = ACTIONS(5023), + [anon_sym_as] = ACTIONS(5023), + [anon_sym_where] = ACTIONS(5023), + [anon_sym_not] = ACTIONS(5023), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5023), + [anon_sym_DOT_DOT_LT] = ACTIONS(5023), + [anon_sym_null] = ACTIONS(5023), + [anon_sym_true] = ACTIONS(5023), + [anon_sym_false] = ACTIONS(5023), + [aux_sym__val_number_decimal_token1] = ACTIONS(5023), + [aux_sym__val_number_decimal_token2] = ACTIONS(5023), + [anon_sym_DOT2] = ACTIONS(5023), + [aux_sym__val_number_decimal_token3] = ACTIONS(5023), + [aux_sym__val_number_token1] = ACTIONS(5023), + [aux_sym__val_number_token2] = ACTIONS(5023), + [aux_sym__val_number_token3] = ACTIONS(5023), + [aux_sym__val_number_token4] = ACTIONS(5023), + [aux_sym__val_number_token5] = ACTIONS(5023), + [aux_sym__val_number_token6] = ACTIONS(5023), + [anon_sym_0b] = ACTIONS(5023), + [anon_sym_0o] = ACTIONS(5023), + [anon_sym_0x] = ACTIONS(5023), + [sym_val_date] = ACTIONS(5023), + [anon_sym_DQUOTE] = ACTIONS(5023), + [sym__str_single_quotes] = ACTIONS(5023), + [sym__str_back_ticks] = ACTIONS(5023), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5023), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5023), + [anon_sym_CARET] = ACTIONS(5023), + [anon_sym_POUND] = ACTIONS(113), + }, + [2102] = { + [sym_comment] = STATE(2102), + [ts_builtin_sym_end] = ACTIONS(5029), + [anon_sym_export] = ACTIONS(5027), + [anon_sym_alias] = ACTIONS(5027), + [anon_sym_let] = ACTIONS(5027), + [anon_sym_let_DASHenv] = ACTIONS(5027), + [anon_sym_mut] = ACTIONS(5027), + [anon_sym_const] = ACTIONS(5027), + [anon_sym_SEMI] = ACTIONS(5027), + [sym_cmd_identifier] = ACTIONS(5027), + [anon_sym_LF] = ACTIONS(5029), + [anon_sym_def] = ACTIONS(5027), + [anon_sym_export_DASHenv] = ACTIONS(5027), + [anon_sym_extern] = ACTIONS(5027), + [anon_sym_module] = ACTIONS(5027), + [anon_sym_use] = ACTIONS(5027), + [anon_sym_LBRACK] = ACTIONS(5027), + [anon_sym_LPAREN] = ACTIONS(5027), + [anon_sym_DOLLAR] = ACTIONS(5027), + [anon_sym_error] = ACTIONS(5027), + [anon_sym_DASH_DASH] = ACTIONS(5027), + [anon_sym_DASH] = ACTIONS(5027), + [anon_sym_break] = ACTIONS(5027), + [anon_sym_continue] = ACTIONS(5027), + [anon_sym_for] = ACTIONS(5027), + [anon_sym_loop] = ACTIONS(5027), + [anon_sym_while] = ACTIONS(5027), + [anon_sym_do] = ACTIONS(5027), + [anon_sym_if] = ACTIONS(5027), + [anon_sym_match] = ACTIONS(5027), + [anon_sym_LBRACE] = ACTIONS(5027), + [anon_sym_DOT_DOT] = ACTIONS(5027), + [anon_sym_try] = ACTIONS(5027), + [anon_sym_return] = ACTIONS(5027), + [anon_sym_source] = ACTIONS(5027), + [anon_sym_source_DASHenv] = ACTIONS(5027), + [anon_sym_register] = ACTIONS(5027), + [anon_sym_hide] = ACTIONS(5027), + [anon_sym_hide_DASHenv] = ACTIONS(5027), + [anon_sym_overlay] = ACTIONS(5027), + [anon_sym_as] = ACTIONS(5027), + [anon_sym_where] = ACTIONS(5027), + [anon_sym_not] = ACTIONS(5027), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5027), + [anon_sym_DOT_DOT_LT] = ACTIONS(5027), + [anon_sym_null] = ACTIONS(5027), + [anon_sym_true] = ACTIONS(5027), + [anon_sym_false] = ACTIONS(5027), + [aux_sym__val_number_decimal_token1] = ACTIONS(5027), + [aux_sym__val_number_decimal_token2] = ACTIONS(5027), + [anon_sym_DOT2] = ACTIONS(5027), + [aux_sym__val_number_decimal_token3] = ACTIONS(5027), + [aux_sym__val_number_token1] = ACTIONS(5027), + [aux_sym__val_number_token2] = ACTIONS(5027), + [aux_sym__val_number_token3] = ACTIONS(5027), + [aux_sym__val_number_token4] = ACTIONS(5027), + [aux_sym__val_number_token5] = ACTIONS(5027), + [aux_sym__val_number_token6] = ACTIONS(5027), + [anon_sym_0b] = ACTIONS(5027), + [anon_sym_0o] = ACTIONS(5027), + [anon_sym_0x] = ACTIONS(5027), + [sym_val_date] = ACTIONS(5027), + [anon_sym_DQUOTE] = ACTIONS(5027), + [sym__str_single_quotes] = ACTIONS(5027), + [sym__str_back_ticks] = ACTIONS(5027), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5027), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5027), + [anon_sym_CARET] = ACTIONS(5027), + [anon_sym_POUND] = ACTIONS(113), + }, + [2103] = { + [sym_comment] = STATE(2103), + [ts_builtin_sym_end] = ACTIONS(5033), + [anon_sym_export] = ACTIONS(5031), + [anon_sym_alias] = ACTIONS(5031), + [anon_sym_let] = ACTIONS(5031), + [anon_sym_let_DASHenv] = ACTIONS(5031), + [anon_sym_mut] = ACTIONS(5031), + [anon_sym_const] = ACTIONS(5031), + [anon_sym_SEMI] = ACTIONS(5031), + [sym_cmd_identifier] = ACTIONS(5031), + [anon_sym_LF] = ACTIONS(5033), + [anon_sym_def] = ACTIONS(5031), + [anon_sym_export_DASHenv] = ACTIONS(5031), + [anon_sym_extern] = ACTIONS(5031), + [anon_sym_module] = ACTIONS(5031), + [anon_sym_use] = ACTIONS(5031), + [anon_sym_LBRACK] = ACTIONS(5031), + [anon_sym_LPAREN] = ACTIONS(5031), + [anon_sym_DOLLAR] = ACTIONS(5031), + [anon_sym_error] = ACTIONS(5031), + [anon_sym_DASH_DASH] = ACTIONS(5031), + [anon_sym_DASH] = ACTIONS(5031), + [anon_sym_break] = ACTIONS(5031), + [anon_sym_continue] = ACTIONS(5031), + [anon_sym_for] = ACTIONS(5031), + [anon_sym_loop] = ACTIONS(5031), + [anon_sym_while] = ACTIONS(5031), + [anon_sym_do] = ACTIONS(5031), + [anon_sym_if] = ACTIONS(5031), + [anon_sym_match] = ACTIONS(5031), + [anon_sym_LBRACE] = ACTIONS(5031), + [anon_sym_DOT_DOT] = ACTIONS(5031), + [anon_sym_try] = ACTIONS(5031), + [anon_sym_return] = ACTIONS(5031), + [anon_sym_source] = ACTIONS(5031), + [anon_sym_source_DASHenv] = ACTIONS(5031), + [anon_sym_register] = ACTIONS(5031), + [anon_sym_hide] = ACTIONS(5031), + [anon_sym_hide_DASHenv] = ACTIONS(5031), + [anon_sym_overlay] = ACTIONS(5031), + [anon_sym_as] = ACTIONS(5031), + [anon_sym_where] = ACTIONS(5031), + [anon_sym_not] = ACTIONS(5031), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5031), + [anon_sym_DOT_DOT_LT] = ACTIONS(5031), + [anon_sym_null] = ACTIONS(5031), + [anon_sym_true] = ACTIONS(5031), + [anon_sym_false] = ACTIONS(5031), + [aux_sym__val_number_decimal_token1] = ACTIONS(5031), + [aux_sym__val_number_decimal_token2] = ACTIONS(5031), + [anon_sym_DOT2] = ACTIONS(5031), + [aux_sym__val_number_decimal_token3] = ACTIONS(5031), + [aux_sym__val_number_token1] = ACTIONS(5031), + [aux_sym__val_number_token2] = ACTIONS(5031), + [aux_sym__val_number_token3] = ACTIONS(5031), + [aux_sym__val_number_token4] = ACTIONS(5031), + [aux_sym__val_number_token5] = ACTIONS(5031), + [aux_sym__val_number_token6] = ACTIONS(5031), + [anon_sym_0b] = ACTIONS(5031), + [anon_sym_0o] = ACTIONS(5031), + [anon_sym_0x] = ACTIONS(5031), + [sym_val_date] = ACTIONS(5031), + [anon_sym_DQUOTE] = ACTIONS(5031), + [sym__str_single_quotes] = ACTIONS(5031), + [sym__str_back_ticks] = ACTIONS(5031), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5031), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5031), + [anon_sym_CARET] = ACTIONS(5031), + [anon_sym_POUND] = ACTIONS(113), + }, + [2104] = { + [sym_comment] = STATE(2104), + [ts_builtin_sym_end] = ACTIONS(1213), + [anon_sym_export] = ACTIONS(1211), + [anon_sym_alias] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(1211), + [anon_sym_let_DASHenv] = ACTIONS(1211), + [anon_sym_mut] = ACTIONS(1211), + [anon_sym_const] = ACTIONS(1211), + [anon_sym_SEMI] = ACTIONS(1211), + [sym_cmd_identifier] = ACTIONS(1211), + [anon_sym_LF] = ACTIONS(1213), + [anon_sym_def] = ACTIONS(1211), + [anon_sym_export_DASHenv] = ACTIONS(1211), + [anon_sym_extern] = ACTIONS(1211), + [anon_sym_module] = ACTIONS(1211), + [anon_sym_use] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(1211), + [anon_sym_PIPE] = ACTIONS(1211), + [anon_sym_DOLLAR] = ACTIONS(1211), + [anon_sym_error] = ACTIONS(1211), + [anon_sym_DASH] = ACTIONS(1211), + [anon_sym_break] = ACTIONS(1211), + [anon_sym_continue] = ACTIONS(1211), + [anon_sym_for] = ACTIONS(1211), + [anon_sym_loop] = ACTIONS(1211), + [anon_sym_while] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(1211), + [anon_sym_if] = ACTIONS(1211), + [anon_sym_match] = ACTIONS(1211), + [anon_sym_LBRACE] = ACTIONS(1211), + [anon_sym_DOT_DOT] = ACTIONS(1211), + [anon_sym_try] = ACTIONS(1211), + [anon_sym_return] = ACTIONS(1211), + [anon_sym_source] = ACTIONS(1211), + [anon_sym_source_DASHenv] = ACTIONS(1211), + [anon_sym_register] = ACTIONS(1211), + [anon_sym_hide] = ACTIONS(1211), + [anon_sym_hide_DASHenv] = ACTIONS(1211), + [anon_sym_overlay] = ACTIONS(1211), + [anon_sym_STAR] = ACTIONS(1211), + [anon_sym_where] = ACTIONS(1211), + [anon_sym_not] = ACTIONS(1211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1211), + [anon_sym_DOT_DOT_LT] = ACTIONS(1211), + [anon_sym_null] = ACTIONS(1211), + [anon_sym_true] = ACTIONS(1211), + [anon_sym_false] = ACTIONS(1211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1211), + [aux_sym__val_number_decimal_token2] = ACTIONS(1211), + [anon_sym_DOT2] = ACTIONS(1211), + [aux_sym__val_number_decimal_token3] = ACTIONS(1211), + [aux_sym__val_number_token1] = ACTIONS(1211), + [aux_sym__val_number_token2] = ACTIONS(1211), + [aux_sym__val_number_token3] = ACTIONS(1211), + [aux_sym__val_number_token4] = ACTIONS(1211), + [aux_sym__val_number_token5] = ACTIONS(1211), + [aux_sym__val_number_token6] = ACTIONS(1211), + [anon_sym_0b] = ACTIONS(1211), + [anon_sym_0o] = ACTIONS(1211), + [anon_sym_0x] = ACTIONS(1211), + [sym_val_date] = ACTIONS(1211), + [anon_sym_DQUOTE] = ACTIONS(1211), + [sym__str_single_quotes] = ACTIONS(1211), + [sym__str_back_ticks] = ACTIONS(1211), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1211), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1211), + [anon_sym_CARET] = ACTIONS(1211), + [anon_sym_POUND] = ACTIONS(113), + }, + [2105] = { + [sym__expression] = STATE(7145), + [sym_expr_unary] = STATE(5677), + [sym__expr_unary_minus] = STATE(5679), + [sym_expr_binary] = STATE(5677), + [sym__expr_binary_expression] = STATE(6377), + [sym_expr_parenthesized] = STATE(4919), + [sym_val_range] = STATE(8295), + [sym__value] = STATE(5677), + [sym_val_nothing] = STATE(5612), + [sym_val_bool] = STATE(5612), + [sym_val_variable] = STATE(4867), + [sym__var] = STATE(4310), + [sym_val_number] = STATE(5612), + [sym__val_number_decimal] = STATE(4408), + [sym__val_number] = STATE(5661), + [sym_val_duration] = STATE(5612), + [sym_val_filesize] = STATE(5612), + [sym_val_binary] = STATE(5612), + [sym_val_string] = STATE(5612), + [sym__str_double_quotes] = STATE(5733), + [sym_val_interpolated] = STATE(5612), + [sym__inter_single_quotes] = STATE(5590), + [sym__inter_double_quotes] = STATE(5591), + [sym_val_list] = STATE(5612), + [sym_val_record] = STATE(5612), + [sym_val_table] = STATE(5612), + [sym_val_closure] = STATE(5612), + [sym__flag] = STATE(2006), + [sym_short_flag] = STATE(4939), + [sym_long_flag] = STATE(4939), + [sym_long_flag_equals_value] = STATE(4865), + [sym_comment] = STATE(2105), + [ts_builtin_sym_end] = ACTIONS(4873), + [anon_sym_SEMI] = ACTIONS(4871), + [anon_sym_LF] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(5667), + [anon_sym_LPAREN] = ACTIONS(5669), + [anon_sym_PIPE] = ACTIONS(4871), + [anon_sym_DOLLAR] = ACTIONS(2667), + [anon_sym_DASH_DASH] = ACTIONS(5671), + [anon_sym_DASH] = ACTIONS(5673), + [anon_sym_LBRACE] = ACTIONS(5675), + [anon_sym_DOT_DOT] = ACTIONS(5677), + [anon_sym_not] = ACTIONS(5679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5681), + [anon_sym_DOT_DOT_LT] = ACTIONS(5681), + [anon_sym_null] = ACTIONS(5683), + [anon_sym_true] = ACTIONS(5685), + [anon_sym_false] = ACTIONS(5685), + [aux_sym__val_number_decimal_token1] = ACTIONS(5687), + [aux_sym__val_number_decimal_token2] = ACTIONS(5687), + [anon_sym_DOT2] = ACTIONS(5689), + [aux_sym__val_number_decimal_token3] = ACTIONS(5691), + [aux_sym__val_number_token1] = ACTIONS(5693), + [aux_sym__val_number_token2] = ACTIONS(5693), + [aux_sym__val_number_token3] = ACTIONS(5693), + [aux_sym__val_number_token4] = ACTIONS(5693), + [aux_sym__val_number_token5] = ACTIONS(5693), + [aux_sym__val_number_token6] = ACTIONS(5693), + [anon_sym_0b] = ACTIONS(2695), + [anon_sym_0o] = ACTIONS(2697), + [anon_sym_0x] = ACTIONS(2697), + [sym_val_date] = ACTIONS(5695), + [anon_sym_DQUOTE] = ACTIONS(5697), + [sym__str_single_quotes] = ACTIONS(5699), + [sym__str_back_ticks] = ACTIONS(5699), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5703), + [anon_sym_POUND] = ACTIONS(113), + }, + [2106] = { + [sym_comment] = STATE(2106), + [ts_builtin_sym_end] = ACTIONS(5111), + [anon_sym_export] = ACTIONS(5109), + [anon_sym_alias] = ACTIONS(5109), + [anon_sym_let] = ACTIONS(5109), + [anon_sym_let_DASHenv] = ACTIONS(5109), + [anon_sym_mut] = ACTIONS(5109), + [anon_sym_const] = ACTIONS(5109), + [anon_sym_SEMI] = ACTIONS(5109), + [sym_cmd_identifier] = ACTIONS(5109), + [anon_sym_LF] = ACTIONS(5111), + [anon_sym_def] = ACTIONS(5109), + [anon_sym_export_DASHenv] = ACTIONS(5109), + [anon_sym_extern] = ACTIONS(5109), + [anon_sym_module] = ACTIONS(5109), + [anon_sym_use] = ACTIONS(5109), + [anon_sym_LBRACK] = ACTIONS(5109), + [anon_sym_LPAREN] = ACTIONS(5109), + [anon_sym_DOLLAR] = ACTIONS(5109), + [anon_sym_error] = ACTIONS(5109), + [anon_sym_DASH_DASH] = ACTIONS(5109), + [anon_sym_DASH] = ACTIONS(5109), + [anon_sym_break] = ACTIONS(5109), + [anon_sym_continue] = ACTIONS(5109), + [anon_sym_for] = ACTIONS(5109), + [anon_sym_loop] = ACTIONS(5109), + [anon_sym_while] = ACTIONS(5109), + [anon_sym_do] = ACTIONS(5109), + [anon_sym_if] = ACTIONS(5109), + [anon_sym_match] = ACTIONS(5109), + [anon_sym_LBRACE] = ACTIONS(5109), + [anon_sym_DOT_DOT] = ACTIONS(5109), + [anon_sym_try] = ACTIONS(5109), + [anon_sym_return] = ACTIONS(5109), + [anon_sym_source] = ACTIONS(5109), + [anon_sym_source_DASHenv] = ACTIONS(5109), + [anon_sym_register] = ACTIONS(5109), + [anon_sym_hide] = ACTIONS(5109), + [anon_sym_hide_DASHenv] = ACTIONS(5109), + [anon_sym_overlay] = ACTIONS(5109), + [anon_sym_as] = ACTIONS(5109), + [anon_sym_where] = ACTIONS(5109), + [anon_sym_not] = ACTIONS(5109), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5109), + [anon_sym_DOT_DOT_LT] = ACTIONS(5109), + [anon_sym_null] = ACTIONS(5109), + [anon_sym_true] = ACTIONS(5109), + [anon_sym_false] = ACTIONS(5109), + [aux_sym__val_number_decimal_token1] = ACTIONS(5109), + [aux_sym__val_number_decimal_token2] = ACTIONS(5109), + [anon_sym_DOT2] = ACTIONS(5109), + [aux_sym__val_number_decimal_token3] = ACTIONS(5109), + [aux_sym__val_number_token1] = ACTIONS(5109), + [aux_sym__val_number_token2] = ACTIONS(5109), + [aux_sym__val_number_token3] = ACTIONS(5109), + [aux_sym__val_number_token4] = ACTIONS(5109), + [aux_sym__val_number_token5] = ACTIONS(5109), + [aux_sym__val_number_token6] = ACTIONS(5109), + [anon_sym_0b] = ACTIONS(5109), + [anon_sym_0o] = ACTIONS(5109), + [anon_sym_0x] = ACTIONS(5109), + [sym_val_date] = ACTIONS(5109), + [anon_sym_DQUOTE] = ACTIONS(5109), + [sym__str_single_quotes] = ACTIONS(5109), + [sym__str_back_ticks] = ACTIONS(5109), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5109), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5109), + [anon_sym_CARET] = ACTIONS(5109), + [anon_sym_POUND] = ACTIONS(113), + }, + [2107] = { + [sym_comment] = STATE(2107), + [anon_sym_LBRACK] = ACTIONS(1181), + [anon_sym_COMMA] = ACTIONS(1181), + [anon_sym_RBRACK] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_DOLLAR] = ACTIONS(1181), + [anon_sym_GT] = ACTIONS(5711), + [anon_sym_DASH_DASH] = ACTIONS(1181), + [anon_sym_DASH] = ACTIONS(5713), + [anon_sym_in] = ACTIONS(5715), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(5705), + [anon_sym_STAR_STAR] = ACTIONS(5707), + [anon_sym_PLUS_PLUS] = ACTIONS(5707), + [anon_sym_SLASH] = ACTIONS(5705), + [anon_sym_mod] = ACTIONS(5709), + [anon_sym_SLASH_SLASH] = ACTIONS(5709), + [anon_sym_PLUS] = ACTIONS(5713), + [anon_sym_bit_DASHshl] = ACTIONS(5717), + [anon_sym_bit_DASHshr] = ACTIONS(5717), + [anon_sym_EQ_EQ] = ACTIONS(5719), + [anon_sym_BANG_EQ] = ACTIONS(5719), + [anon_sym_LT2] = ACTIONS(5711), + [anon_sym_LT_EQ] = ACTIONS(5719), + [anon_sym_GT_EQ] = ACTIONS(5719), + [anon_sym_not_DASHin] = ACTIONS(5721), + [anon_sym_starts_DASHwith] = ACTIONS(5721), + [anon_sym_ends_DASHwith] = ACTIONS(5721), + [anon_sym_EQ_TILDE] = ACTIONS(5723), + [anon_sym_BANG_TILDE] = ACTIONS(5723), + [anon_sym_bit_DASHand] = ACTIONS(5729), + [anon_sym_bit_DASHxor] = ACTIONS(5767), + [anon_sym_bit_DASHor] = ACTIONS(5784), + [anon_sym_and] = ACTIONS(5804), + [anon_sym_xor] = ACTIONS(5808), + [anon_sym_or] = ACTIONS(5813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1181), + [anon_sym_DOT_DOT_LT] = ACTIONS(1181), + [anon_sym_null] = ACTIONS(1181), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1181), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1181), + [aux_sym__val_number_token1] = ACTIONS(1181), + [aux_sym__val_number_token2] = ACTIONS(1181), + [aux_sym__val_number_token3] = ACTIONS(1181), + [aux_sym__val_number_token4] = ACTIONS(1181), + [aux_sym__val_number_token5] = ACTIONS(1181), + [aux_sym__val_number_token6] = ACTIONS(1181), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym__str_single_quotes] = ACTIONS(1181), + [sym__str_back_ticks] = ACTIONS(1181), + [anon_sym_err_GT] = ACTIONS(1181), + [anon_sym_out_GT] = ACTIONS(1181), + [anon_sym_e_GT] = ACTIONS(1181), + [anon_sym_o_GT] = ACTIONS(1181), + [anon_sym_err_PLUSout_GT] = ACTIONS(1181), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1181), + [anon_sym_o_PLUSe_GT] = ACTIONS(1181), + [anon_sym_e_PLUSo_GT] = ACTIONS(1181), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(3), + }, + [2108] = { + [sym_comment] = STATE(2108), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_COMMA] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_DOLLAR] = ACTIONS(1074), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_in] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(1074), + [anon_sym__] = ACTIONS(1072), + [anon_sym_DOT_DOT] = ACTIONS(1072), + [anon_sym_STAR] = ACTIONS(1076), + [anon_sym_STAR_STAR] = ACTIONS(1169), + [anon_sym_PLUS_PLUS] = ACTIONS(1169), + [anon_sym_SLASH] = ACTIONS(1076), + [anon_sym_mod] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1076), + [anon_sym_bit_DASHshl] = ACTIONS(1169), + [anon_sym_bit_DASHshr] = ACTIONS(1169), + [anon_sym_EQ_EQ] = ACTIONS(1169), + [anon_sym_BANG_EQ] = ACTIONS(1169), + [anon_sym_LT2] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1169), + [anon_sym_GT_EQ] = ACTIONS(1169), + [anon_sym_not_DASHin] = ACTIONS(1169), + [anon_sym_starts_DASHwith] = ACTIONS(1169), + [anon_sym_ends_DASHwith] = ACTIONS(1169), + [anon_sym_EQ_TILDE] = ACTIONS(1169), + [anon_sym_BANG_TILDE] = ACTIONS(1169), + [anon_sym_bit_DASHand] = ACTIONS(1169), + [anon_sym_bit_DASHxor] = ACTIONS(1169), + [anon_sym_bit_DASHor] = ACTIONS(1169), + [anon_sym_and] = ACTIONS(1169), + [anon_sym_xor] = ACTIONS(1169), + [anon_sym_or] = ACTIONS(1169), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1074), + [anon_sym_DOT_DOT_LT] = ACTIONS(1074), + [anon_sym_null] = ACTIONS(1074), + [anon_sym_true] = ACTIONS(1074), + [anon_sym_false] = ACTIONS(1074), + [aux_sym__val_number_decimal_token1] = ACTIONS(1072), + [aux_sym__val_number_decimal_token2] = ACTIONS(1074), + [anon_sym_DOT2] = ACTIONS(1072), + [aux_sym__val_number_decimal_token3] = ACTIONS(1074), + [aux_sym__val_number_token1] = ACTIONS(1074), + [aux_sym__val_number_token2] = ACTIONS(1074), + [aux_sym__val_number_token3] = ACTIONS(1074), + [aux_sym__val_number_token4] = ACTIONS(1074), + [aux_sym__val_number_token5] = ACTIONS(1074), + [aux_sym__val_number_token6] = ACTIONS(1074), + [anon_sym_0b] = ACTIONS(1072), + [anon_sym_0o] = ACTIONS(1072), + [anon_sym_0x] = ACTIONS(1072), + [sym_val_date] = ACTIONS(1074), + [anon_sym_DQUOTE] = ACTIONS(1074), + [sym__str_single_quotes] = ACTIONS(1074), + [sym__str_back_ticks] = ACTIONS(1074), + [anon_sym_err_GT] = ACTIONS(1074), + [anon_sym_out_GT] = ACTIONS(1074), + [anon_sym_e_GT] = ACTIONS(1074), + [anon_sym_o_GT] = ACTIONS(1074), + [anon_sym_err_PLUSout_GT] = ACTIONS(1074), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1074), + [anon_sym_o_PLUSe_GT] = ACTIONS(1074), + [anon_sym_e_PLUSo_GT] = ACTIONS(1074), + [aux_sym_unquoted_token1] = ACTIONS(1072), + [anon_sym_POUND] = ACTIONS(3), + }, + [2109] = { + [sym_comment] = STATE(2109), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_COMMA] = ACTIONS(1239), + [anon_sym_RBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1239), + [anon_sym_DOLLAR] = ACTIONS(1239), + [anon_sym_GT] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1239), + [anon_sym_DASH] = ACTIONS(1237), + [anon_sym_in] = ACTIONS(1237), + [anon_sym_LBRACE] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_STAR] = ACTIONS(1237), + [anon_sym_STAR_STAR] = ACTIONS(1239), + [anon_sym_PLUS_PLUS] = ACTIONS(1239), + [anon_sym_SLASH] = ACTIONS(1237), + [anon_sym_mod] = ACTIONS(1239), + [anon_sym_SLASH_SLASH] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1237), + [anon_sym_bit_DASHshl] = ACTIONS(1239), + [anon_sym_bit_DASHshr] = ACTIONS(1239), + [anon_sym_EQ_EQ] = ACTIONS(1239), + [anon_sym_BANG_EQ] = ACTIONS(1239), + [anon_sym_LT2] = ACTIONS(1237), + [anon_sym_LT_EQ] = ACTIONS(1239), + [anon_sym_GT_EQ] = ACTIONS(1239), + [anon_sym_not_DASHin] = ACTIONS(1239), + [anon_sym_starts_DASHwith] = ACTIONS(1239), + [anon_sym_ends_DASHwith] = ACTIONS(1239), + [anon_sym_EQ_TILDE] = ACTIONS(1239), + [anon_sym_BANG_TILDE] = ACTIONS(1239), + [anon_sym_bit_DASHand] = ACTIONS(1239), + [anon_sym_bit_DASHxor] = ACTIONS(1239), + [anon_sym_bit_DASHor] = ACTIONS(1239), + [anon_sym_and] = ACTIONS(1239), + [anon_sym_xor] = ACTIONS(1239), + [anon_sym_or] = ACTIONS(1239), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_DOT_DOT_LT] = ACTIONS(1239), + [anon_sym_null] = ACTIONS(1239), + [anon_sym_true] = ACTIONS(1239), + [anon_sym_false] = ACTIONS(1239), + [aux_sym__val_number_decimal_token1] = ACTIONS(1237), + [aux_sym__val_number_decimal_token2] = ACTIONS(1239), + [anon_sym_DOT2] = ACTIONS(1237), + [aux_sym__val_number_decimal_token3] = ACTIONS(1239), + [aux_sym__val_number_token1] = ACTIONS(1239), + [aux_sym__val_number_token2] = ACTIONS(1239), + [aux_sym__val_number_token3] = ACTIONS(1239), + [aux_sym__val_number_token4] = ACTIONS(1239), + [aux_sym__val_number_token5] = ACTIONS(1239), + [aux_sym__val_number_token6] = ACTIONS(1239), + [anon_sym_0b] = ACTIONS(1237), + [anon_sym_0o] = ACTIONS(1237), + [anon_sym_0x] = ACTIONS(1237), + [sym_val_date] = ACTIONS(1239), + [anon_sym_DQUOTE] = ACTIONS(1239), + [sym__str_single_quotes] = ACTIONS(1239), + [sym__str_back_ticks] = ACTIONS(1239), + [anon_sym_err_GT] = ACTIONS(1239), + [anon_sym_out_GT] = ACTIONS(1239), + [anon_sym_e_GT] = ACTIONS(1239), + [anon_sym_o_GT] = ACTIONS(1239), + [anon_sym_err_PLUSout_GT] = ACTIONS(1239), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1239), + [anon_sym_o_PLUSe_GT] = ACTIONS(1239), + [anon_sym_e_PLUSo_GT] = ACTIONS(1239), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1237), + [anon_sym_POUND] = ACTIONS(3), + }, + [2110] = { + [sym_comment] = STATE(2110), [anon_sym_LBRACK] = ACTIONS(1243), [anon_sym_COMMA] = ACTIONS(1243), [anon_sym_RBRACK] = ACTIONS(1243), [anon_sym_LPAREN] = ACTIONS(1243), [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1243), + [anon_sym_GT] = ACTIONS(1241), [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_in] = ACTIONS(1243), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_in] = ACTIONS(1241), [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1243), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_STAR] = ACTIONS(1241), [anon_sym_STAR_STAR] = ACTIONS(1243), [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_SLASH] = ACTIONS(1243), + [anon_sym_SLASH] = ACTIONS(1241), [anon_sym_mod] = ACTIONS(1243), [anon_sym_SLASH_SLASH] = ACTIONS(1243), - [anon_sym_PLUS] = ACTIONS(1243), + [anon_sym_PLUS] = ACTIONS(1241), [anon_sym_bit_DASHshl] = ACTIONS(1243), [anon_sym_bit_DASHshr] = ACTIONS(1243), [anon_sym_EQ_EQ] = ACTIONS(1243), [anon_sym_BANG_EQ] = ACTIONS(1243), - [anon_sym_LT2] = ACTIONS(1243), + [anon_sym_LT2] = ACTIONS(1241), [anon_sym_LT_EQ] = ACTIONS(1243), [anon_sym_GT_EQ] = ACTIONS(1243), [anon_sym_not_DASHin] = ACTIONS(1243), @@ -261011,9 +268532,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(1243), [anon_sym_true] = ACTIONS(1243), [anon_sym_false] = ACTIONS(1243), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), + [aux_sym__val_number_decimal_token1] = ACTIONS(1241), [aux_sym__val_number_decimal_token2] = ACTIONS(1243), - [anon_sym_DOT2] = ACTIONS(1243), + [anon_sym_DOT2] = ACTIONS(1241), [aux_sym__val_number_decimal_token3] = ACTIONS(1243), [aux_sym__val_number_token1] = ACTIONS(1243), [aux_sym__val_number_token2] = ACTIONS(1243), @@ -261021,14 +268542,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token4] = ACTIONS(1243), [aux_sym__val_number_token5] = ACTIONS(1243), [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_0b] = ACTIONS(1243), - [anon_sym_0o] = ACTIONS(1243), - [anon_sym_0x] = ACTIONS(1243), + [anon_sym_0b] = ACTIONS(1241), + [anon_sym_0o] = ACTIONS(1241), + [anon_sym_0x] = ACTIONS(1241), [sym_val_date] = ACTIONS(1243), [anon_sym_DQUOTE] = ACTIONS(1243), [sym__str_single_quotes] = ACTIONS(1243), [sym__str_back_ticks] = ACTIONS(1243), - [sym__entry_separator] = ACTIONS(1290), [anon_sym_err_GT] = ACTIONS(1243), [anon_sym_out_GT] = ACTIONS(1243), [anon_sym_e_GT] = ACTIONS(1243), @@ -261037,2410 +268557,744 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT] = ACTIONS(1243), [anon_sym_o_PLUSe_GT] = ACTIONS(1243), [anon_sym_e_PLUSo_GT] = ACTIONS(1243), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1243), - [anon_sym_POUND] = ACTIONS(113), - }, - [1864] = { - [sym_comment] = STATE(1864), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_COMMA] = ACTIONS(1414), - [anon_sym_RBRACK] = ACTIONS(1414), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_DOLLAR] = ACTIONS(1414), - [anon_sym_GT] = ACTIONS(1414), - [anon_sym_DASH_DASH] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_in] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1414), - [anon_sym_DOT_DOT] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_STAR_STAR] = ACTIONS(1414), - [anon_sym_PLUS_PLUS] = ACTIONS(1414), - [anon_sym_SLASH] = ACTIONS(1414), - [anon_sym_mod] = ACTIONS(1414), - [anon_sym_SLASH_SLASH] = ACTIONS(1414), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_bit_DASHshl] = ACTIONS(1414), - [anon_sym_bit_DASHshr] = ACTIONS(1414), - [anon_sym_EQ_EQ] = ACTIONS(1414), - [anon_sym_BANG_EQ] = ACTIONS(1414), - [anon_sym_LT2] = ACTIONS(1414), - [anon_sym_LT_EQ] = ACTIONS(1414), - [anon_sym_GT_EQ] = ACTIONS(1414), - [anon_sym_not_DASHin] = ACTIONS(1414), - [anon_sym_starts_DASHwith] = ACTIONS(1414), - [anon_sym_ends_DASHwith] = ACTIONS(1414), - [anon_sym_EQ_TILDE] = ACTIONS(1414), - [anon_sym_BANG_TILDE] = ACTIONS(1414), - [anon_sym_bit_DASHand] = ACTIONS(1414), - [anon_sym_bit_DASHxor] = ACTIONS(1414), - [anon_sym_bit_DASHor] = ACTIONS(1414), - [anon_sym_and] = ACTIONS(1414), - [anon_sym_xor] = ACTIONS(1414), - [anon_sym_or] = ACTIONS(1414), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1414), - [anon_sym_DOT_DOT_LT] = ACTIONS(1414), - [anon_sym_null] = ACTIONS(1414), - [anon_sym_true] = ACTIONS(1414), - [anon_sym_false] = ACTIONS(1414), - [aux_sym__val_number_decimal_token1] = ACTIONS(1414), - [aux_sym__val_number_decimal_token2] = ACTIONS(1414), - [anon_sym_DOT2] = ACTIONS(1414), - [aux_sym__val_number_decimal_token3] = ACTIONS(1414), - [aux_sym__val_number_token1] = ACTIONS(1414), - [aux_sym__val_number_token2] = ACTIONS(1414), - [aux_sym__val_number_token3] = ACTIONS(1414), - [aux_sym__val_number_token4] = ACTIONS(1414), - [aux_sym__val_number_token5] = ACTIONS(1414), - [aux_sym__val_number_token6] = ACTIONS(1414), - [anon_sym_0b] = ACTIONS(1414), - [anon_sym_0o] = ACTIONS(1414), - [anon_sym_0x] = ACTIONS(1414), - [sym_val_date] = ACTIONS(1414), - [anon_sym_DQUOTE] = ACTIONS(1414), - [sym__str_single_quotes] = ACTIONS(1414), - [sym__str_back_ticks] = ACTIONS(1414), - [sym__entry_separator] = ACTIONS(1416), - [anon_sym_err_GT] = ACTIONS(1414), - [anon_sym_out_GT] = ACTIONS(1414), - [anon_sym_e_GT] = ACTIONS(1414), - [anon_sym_o_GT] = ACTIONS(1414), - [anon_sym_err_PLUSout_GT] = ACTIONS(1414), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1414), - [anon_sym_o_PLUSe_GT] = ACTIONS(1414), - [anon_sym_e_PLUSo_GT] = ACTIONS(1414), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1414), - [anon_sym_POUND] = ACTIONS(113), - }, - [1865] = { - [sym_comment] = STATE(1865), - [anon_sym_LBRACK] = ACTIONS(1418), - [anon_sym_COMMA] = ACTIONS(1418), - [anon_sym_RBRACK] = ACTIONS(1418), - [anon_sym_LPAREN] = ACTIONS(1418), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_GT] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_in] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_DOT_DOT] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_STAR_STAR] = ACTIONS(1418), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_SLASH] = ACTIONS(1418), - [anon_sym_mod] = ACTIONS(1418), - [anon_sym_SLASH_SLASH] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_bit_DASHshl] = ACTIONS(1418), - [anon_sym_bit_DASHshr] = ACTIONS(1418), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_LT2] = ACTIONS(1418), - [anon_sym_LT_EQ] = ACTIONS(1418), - [anon_sym_GT_EQ] = ACTIONS(1418), - [anon_sym_not_DASHin] = ACTIONS(1418), - [anon_sym_starts_DASHwith] = ACTIONS(1418), - [anon_sym_ends_DASHwith] = ACTIONS(1418), - [anon_sym_EQ_TILDE] = ACTIONS(1418), - [anon_sym_BANG_TILDE] = ACTIONS(1418), - [anon_sym_bit_DASHand] = ACTIONS(1418), - [anon_sym_bit_DASHxor] = ACTIONS(1418), - [anon_sym_bit_DASHor] = ACTIONS(1418), - [anon_sym_and] = ACTIONS(1418), - [anon_sym_xor] = ACTIONS(1418), - [anon_sym_or] = ACTIONS(1418), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1418), - [anon_sym_DOT_DOT_LT] = ACTIONS(1418), - [anon_sym_null] = ACTIONS(1418), - [anon_sym_true] = ACTIONS(1418), - [anon_sym_false] = ACTIONS(1418), - [aux_sym__val_number_decimal_token1] = ACTIONS(1418), - [aux_sym__val_number_decimal_token2] = ACTIONS(1418), - [anon_sym_DOT2] = ACTIONS(1418), - [aux_sym__val_number_decimal_token3] = ACTIONS(1418), - [aux_sym__val_number_token1] = ACTIONS(1418), - [aux_sym__val_number_token2] = ACTIONS(1418), - [aux_sym__val_number_token3] = ACTIONS(1418), - [aux_sym__val_number_token4] = ACTIONS(1418), - [aux_sym__val_number_token5] = ACTIONS(1418), - [aux_sym__val_number_token6] = ACTIONS(1418), - [anon_sym_0b] = ACTIONS(1418), - [anon_sym_0o] = ACTIONS(1418), - [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1418), - [anon_sym_DQUOTE] = ACTIONS(1418), - [sym__str_single_quotes] = ACTIONS(1418), - [sym__str_back_ticks] = ACTIONS(1418), - [sym__entry_separator] = ACTIONS(1420), - [anon_sym_err_GT] = ACTIONS(1418), - [anon_sym_out_GT] = ACTIONS(1418), - [anon_sym_e_GT] = ACTIONS(1418), - [anon_sym_o_GT] = ACTIONS(1418), - [anon_sym_err_PLUSout_GT] = ACTIONS(1418), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1418), - [anon_sym_o_PLUSe_GT] = ACTIONS(1418), - [anon_sym_e_PLUSo_GT] = ACTIONS(1418), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1418), - [anon_sym_POUND] = ACTIONS(113), - }, - [1866] = { - [sym_comment] = STATE(1866), - [anon_sym_LBRACK] = ACTIONS(1259), - [anon_sym_COMMA] = ACTIONS(1261), - [anon_sym_RBRACK] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(1261), - [anon_sym_DOLLAR] = ACTIONS(1261), - [anon_sym_GT] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_in] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1261), - [anon_sym_DOT_DOT] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1259), - [anon_sym_STAR_STAR] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(1261), - [anon_sym_SLASH] = ACTIONS(1259), - [anon_sym_mod] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(1261), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_bit_DASHshl] = ACTIONS(1261), - [anon_sym_bit_DASHshr] = ACTIONS(1261), - [anon_sym_EQ_EQ] = ACTIONS(1261), - [anon_sym_BANG_EQ] = ACTIONS(1261), - [anon_sym_LT2] = ACTIONS(1259), - [anon_sym_LT_EQ] = ACTIONS(1261), - [anon_sym_GT_EQ] = ACTIONS(1261), - [anon_sym_not_DASHin] = ACTIONS(1261), - [anon_sym_starts_DASHwith] = ACTIONS(1261), - [anon_sym_ends_DASHwith] = ACTIONS(1261), - [anon_sym_EQ_TILDE] = ACTIONS(1261), - [anon_sym_BANG_TILDE] = ACTIONS(1261), - [anon_sym_bit_DASHand] = ACTIONS(1261), - [anon_sym_bit_DASHxor] = ACTIONS(1261), - [anon_sym_bit_DASHor] = ACTIONS(1261), - [anon_sym_and] = ACTIONS(1261), - [anon_sym_xor] = ACTIONS(1261), - [anon_sym_or] = ACTIONS(1261), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1261), - [anon_sym_DOT_DOT_LT] = ACTIONS(1261), - [anon_sym_null] = ACTIONS(1261), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [aux_sym__val_number_decimal_token1] = ACTIONS(1259), - [aux_sym__val_number_decimal_token2] = ACTIONS(1261), - [anon_sym_DOT2] = ACTIONS(1259), - [aux_sym__val_number_decimal_token3] = ACTIONS(1261), - [aux_sym__val_number_token1] = ACTIONS(1261), - [aux_sym__val_number_token2] = ACTIONS(1261), - [aux_sym__val_number_token3] = ACTIONS(1261), - [aux_sym__val_number_token4] = ACTIONS(1261), - [aux_sym__val_number_token5] = ACTIONS(1261), - [aux_sym__val_number_token6] = ACTIONS(1261), - [anon_sym_0b] = ACTIONS(1259), - [anon_sym_0o] = ACTIONS(1259), - [anon_sym_0x] = ACTIONS(1259), - [anon_sym_LBRACK2] = ACTIONS(5291), - [sym_val_date] = ACTIONS(1261), - [anon_sym_DQUOTE] = ACTIONS(1261), - [sym__str_single_quotes] = ACTIONS(1261), - [sym__str_back_ticks] = ACTIONS(1261), - [anon_sym_err_GT] = ACTIONS(1261), - [anon_sym_out_GT] = ACTIONS(1261), - [anon_sym_e_GT] = ACTIONS(1261), - [anon_sym_o_GT] = ACTIONS(1261), - [anon_sym_err_PLUSout_GT] = ACTIONS(1261), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1261), - [anon_sym_o_PLUSe_GT] = ACTIONS(1261), - [anon_sym_e_PLUSo_GT] = ACTIONS(1261), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1259), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1241), [anon_sym_POUND] = ACTIONS(3), }, - [1867] = { - [sym__match_pattern_expression] = STATE(4408), - [sym__match_pattern_value] = STATE(4362), - [sym__match_pattern_list] = STATE(4365), - [sym__match_pattern_record] = STATE(4367), - [sym__expr_unary_minus] = STATE(4368), - [sym_expr_parenthesized] = STATE(3973), - [sym_val_range] = STATE(4362), - [sym__val_range] = STATE(10474), - [sym_val_nothing] = STATE(4371), - [sym_val_bool] = STATE(4248), - [sym_val_variable] = STATE(3974), - [sym__var] = STATE(3741), - [sym_val_number] = STATE(4371), - [sym__val_number_decimal] = STATE(3705), - [sym__val_number] = STATE(4345), - [sym_val_duration] = STATE(4371), - [sym_val_filesize] = STATE(4371), - [sym_val_binary] = STATE(4371), - [sym_val_string] = STATE(4371), - [sym__str_double_quotes] = STATE(4434), - [sym__list_item_starts_with_sign] = STATE(4508), - [sym_val_table] = STATE(4371), - [sym_short_flag] = STATE(4508), - [sym_long_flag] = STATE(4508), - [sym_long_flag_equals_value] = STATE(4347), - [sym__unquoted_in_list] = STATE(4508), - [sym__unquoted_anonymous_prefix] = STATE(11104), - [sym_comment] = STATE(1867), - [aux_sym__match_pattern_list_repeat1] = STATE(1867), - [anon_sym_LBRACK] = ACTIONS(5293), - [anon_sym_RBRACK] = ACTIONS(5296), - [anon_sym_LPAREN] = ACTIONS(5298), - [anon_sym_DOLLAR] = ACTIONS(5301), - [anon_sym_DASH_DASH] = ACTIONS(5304), - [anon_sym_DASH] = ACTIONS(5307), - [anon_sym_LBRACE] = ACTIONS(5310), - [anon_sym_DOT_DOT] = ACTIONS(5313), - [anon_sym_PLUS] = ACTIONS(5316), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5319), - [anon_sym_DOT_DOT_LT] = ACTIONS(5319), - [anon_sym_null] = ACTIONS(5322), - [anon_sym_true] = ACTIONS(5325), - [anon_sym_false] = ACTIONS(5325), - [aux_sym__val_number_decimal_token1] = ACTIONS(5328), - [aux_sym__val_number_decimal_token2] = ACTIONS(5331), - [anon_sym_DOT2] = ACTIONS(5334), - [aux_sym__val_number_decimal_token3] = ACTIONS(5337), - [aux_sym__val_number_token1] = ACTIONS(5340), - [aux_sym__val_number_token2] = ACTIONS(5340), - [aux_sym__val_number_token3] = ACTIONS(5340), - [aux_sym__val_number_token4] = ACTIONS(5343), - [aux_sym__val_number_token5] = ACTIONS(5343), - [aux_sym__val_number_token6] = ACTIONS(5343), - [anon_sym_0b] = ACTIONS(5346), - [anon_sym_0o] = ACTIONS(5349), - [anon_sym_0x] = ACTIONS(5349), - [sym_val_date] = ACTIONS(5352), - [anon_sym_DQUOTE] = ACTIONS(5355), - [sym__str_single_quotes] = ACTIONS(5358), - [sym__str_back_ticks] = ACTIONS(5358), - [anon_sym_err_GT] = ACTIONS(5361), - [anon_sym_out_GT] = ACTIONS(5361), - [anon_sym_e_GT] = ACTIONS(5361), - [anon_sym_o_GT] = ACTIONS(5361), - [anon_sym_err_PLUSout_GT] = ACTIONS(5361), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5361), - [anon_sym_o_PLUSe_GT] = ACTIONS(5361), - [anon_sym_e_PLUSo_GT] = ACTIONS(5361), - [aux_sym__unquoted_in_list_token1] = ACTIONS(5364), - [anon_sym_POUND] = ACTIONS(3), - }, - [1868] = { - [sym_comment] = STATE(1868), - [anon_sym_export] = ACTIONS(4000), - [anon_sym_alias] = ACTIONS(4000), - [anon_sym_let] = ACTIONS(4000), - [anon_sym_let_DASHenv] = ACTIONS(4000), - [anon_sym_mut] = ACTIONS(4000), - [anon_sym_const] = ACTIONS(4000), - [anon_sym_SEMI] = ACTIONS(4000), - [sym_cmd_identifier] = ACTIONS(4000), - [anon_sym_LF] = ACTIONS(4002), - [anon_sym_def] = ACTIONS(4000), - [anon_sym_export_DASHenv] = ACTIONS(4000), - [anon_sym_extern] = ACTIONS(4000), - [anon_sym_module] = ACTIONS(4000), - [anon_sym_use] = ACTIONS(4000), - [anon_sym_LBRACK] = ACTIONS(4000), - [anon_sym_LPAREN] = ACTIONS(4000), - [anon_sym_RPAREN] = ACTIONS(4000), - [anon_sym_DOLLAR] = ACTIONS(4000), - [anon_sym_error] = ACTIONS(4000), - [anon_sym_DASH_DASH] = ACTIONS(4000), - [anon_sym_DASH] = ACTIONS(4000), - [anon_sym_break] = ACTIONS(4000), - [anon_sym_continue] = ACTIONS(4000), - [anon_sym_for] = ACTIONS(4000), - [anon_sym_loop] = ACTIONS(4000), - [anon_sym_while] = ACTIONS(4000), - [anon_sym_do] = ACTIONS(4000), - [anon_sym_if] = ACTIONS(4000), - [anon_sym_match] = ACTIONS(4000), - [anon_sym_LBRACE] = ACTIONS(4000), - [anon_sym_RBRACE] = ACTIONS(4000), - [anon_sym_DOT_DOT] = ACTIONS(4000), - [anon_sym_try] = ACTIONS(4000), - [anon_sym_return] = ACTIONS(4000), - [anon_sym_source] = ACTIONS(4000), - [anon_sym_source_DASHenv] = ACTIONS(4000), - [anon_sym_register] = ACTIONS(4000), - [anon_sym_hide] = ACTIONS(4000), - [anon_sym_hide_DASHenv] = ACTIONS(4000), - [anon_sym_overlay] = ACTIONS(4000), - [anon_sym_as] = ACTIONS(4000), - [anon_sym_where] = ACTIONS(4000), - [anon_sym_not] = ACTIONS(4000), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4000), - [anon_sym_DOT_DOT_LT] = ACTIONS(4000), - [anon_sym_null] = ACTIONS(4000), - [anon_sym_true] = ACTIONS(4000), - [anon_sym_false] = ACTIONS(4000), - [aux_sym__val_number_decimal_token1] = ACTIONS(4000), - [aux_sym__val_number_decimal_token2] = ACTIONS(4000), - [anon_sym_DOT2] = ACTIONS(4000), - [aux_sym__val_number_decimal_token3] = ACTIONS(4000), - [aux_sym__val_number_token1] = ACTIONS(4000), - [aux_sym__val_number_token2] = ACTIONS(4000), - [aux_sym__val_number_token3] = ACTIONS(4000), - [aux_sym__val_number_token4] = ACTIONS(4000), - [aux_sym__val_number_token5] = ACTIONS(4000), - [aux_sym__val_number_token6] = ACTIONS(4000), - [anon_sym_0b] = ACTIONS(4000), - [anon_sym_0o] = ACTIONS(4000), - [anon_sym_0x] = ACTIONS(4000), - [sym_val_date] = ACTIONS(4000), - [anon_sym_DQUOTE] = ACTIONS(4000), - [sym__str_single_quotes] = ACTIONS(4000), - [sym__str_back_ticks] = ACTIONS(4000), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4000), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4000), - [anon_sym_CARET] = ACTIONS(4000), - [anon_sym_POUND] = ACTIONS(113), - }, - [1869] = { - [sym_comment] = STATE(1869), - [anon_sym_export] = ACTIONS(3960), - [anon_sym_alias] = ACTIONS(3960), - [anon_sym_let] = ACTIONS(3960), - [anon_sym_let_DASHenv] = ACTIONS(3960), - [anon_sym_mut] = ACTIONS(3960), - [anon_sym_const] = ACTIONS(3960), - [anon_sym_SEMI] = ACTIONS(3960), - [sym_cmd_identifier] = ACTIONS(3960), - [anon_sym_LF] = ACTIONS(3962), - [anon_sym_def] = ACTIONS(3960), - [anon_sym_export_DASHenv] = ACTIONS(3960), - [anon_sym_extern] = ACTIONS(3960), - [anon_sym_module] = ACTIONS(3960), - [anon_sym_use] = ACTIONS(3960), - [anon_sym_LBRACK] = ACTIONS(3960), - [anon_sym_LPAREN] = ACTIONS(3960), - [anon_sym_RPAREN] = ACTIONS(3960), - [anon_sym_DOLLAR] = ACTIONS(3960), - [anon_sym_error] = ACTIONS(3960), - [anon_sym_DASH_DASH] = ACTIONS(3960), - [anon_sym_DASH] = ACTIONS(3960), - [anon_sym_break] = ACTIONS(3960), - [anon_sym_continue] = ACTIONS(3960), - [anon_sym_for] = ACTIONS(3960), - [anon_sym_loop] = ACTIONS(3960), - [anon_sym_while] = ACTIONS(3960), - [anon_sym_do] = ACTIONS(3960), - [anon_sym_if] = ACTIONS(3960), - [anon_sym_match] = ACTIONS(3960), - [anon_sym_LBRACE] = ACTIONS(3960), - [anon_sym_RBRACE] = ACTIONS(3960), - [anon_sym_DOT_DOT] = ACTIONS(3960), - [anon_sym_try] = ACTIONS(3960), - [anon_sym_return] = ACTIONS(3960), - [anon_sym_source] = ACTIONS(3960), - [anon_sym_source_DASHenv] = ACTIONS(3960), - [anon_sym_register] = ACTIONS(3960), - [anon_sym_hide] = ACTIONS(3960), - [anon_sym_hide_DASHenv] = ACTIONS(3960), - [anon_sym_overlay] = ACTIONS(3960), - [anon_sym_as] = ACTIONS(3960), - [anon_sym_where] = ACTIONS(3960), - [anon_sym_not] = ACTIONS(3960), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3960), - [anon_sym_DOT_DOT_LT] = ACTIONS(3960), - [anon_sym_null] = ACTIONS(3960), - [anon_sym_true] = ACTIONS(3960), - [anon_sym_false] = ACTIONS(3960), - [aux_sym__val_number_decimal_token1] = ACTIONS(3960), - [aux_sym__val_number_decimal_token2] = ACTIONS(3960), - [anon_sym_DOT2] = ACTIONS(3960), - [aux_sym__val_number_decimal_token3] = ACTIONS(3960), - [aux_sym__val_number_token1] = ACTIONS(3960), - [aux_sym__val_number_token2] = ACTIONS(3960), - [aux_sym__val_number_token3] = ACTIONS(3960), - [aux_sym__val_number_token4] = ACTIONS(3960), - [aux_sym__val_number_token5] = ACTIONS(3960), - [aux_sym__val_number_token6] = ACTIONS(3960), - [anon_sym_0b] = ACTIONS(3960), - [anon_sym_0o] = ACTIONS(3960), - [anon_sym_0x] = ACTIONS(3960), - [sym_val_date] = ACTIONS(3960), - [anon_sym_DQUOTE] = ACTIONS(3960), - [sym__str_single_quotes] = ACTIONS(3960), - [sym__str_back_ticks] = ACTIONS(3960), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3960), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3960), - [anon_sym_CARET] = ACTIONS(3960), - [anon_sym_POUND] = ACTIONS(113), - }, - [1870] = { - [sym_comment] = STATE(1870), - [ts_builtin_sym_end] = ACTIONS(961), - [anon_sym_export] = ACTIONS(959), - [anon_sym_alias] = ACTIONS(959), - [anon_sym_let] = ACTIONS(959), - [anon_sym_let_DASHenv] = ACTIONS(959), - [anon_sym_mut] = ACTIONS(959), - [anon_sym_const] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(959), - [sym_cmd_identifier] = ACTIONS(959), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_def] = ACTIONS(959), - [anon_sym_export_DASHenv] = ACTIONS(959), - [anon_sym_extern] = ACTIONS(959), - [anon_sym_module] = ACTIONS(959), - [anon_sym_use] = ACTIONS(959), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_error] = ACTIONS(959), - [anon_sym_DASH_DASH] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_break] = ACTIONS(959), - [anon_sym_continue] = ACTIONS(959), - [anon_sym_for] = ACTIONS(959), - [anon_sym_loop] = ACTIONS(959), - [anon_sym_while] = ACTIONS(959), - [anon_sym_do] = ACTIONS(959), - [anon_sym_if] = ACTIONS(959), - [anon_sym_match] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_try] = ACTIONS(959), - [anon_sym_return] = ACTIONS(959), - [anon_sym_source] = ACTIONS(959), - [anon_sym_source_DASHenv] = ACTIONS(959), - [anon_sym_register] = ACTIONS(959), - [anon_sym_hide] = ACTIONS(959), - [anon_sym_hide_DASHenv] = ACTIONS(959), - [anon_sym_overlay] = ACTIONS(959), - [anon_sym_as] = ACTIONS(959), - [anon_sym_where] = ACTIONS(959), - [anon_sym_not] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_DOT_DOT_LT] = ACTIONS(959), - [anon_sym_null] = ACTIONS(959), - [anon_sym_true] = ACTIONS(959), - [anon_sym_false] = ACTIONS(959), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(959), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(959), - [aux_sym__val_number_token1] = ACTIONS(959), - [aux_sym__val_number_token2] = ACTIONS(959), - [aux_sym__val_number_token3] = ACTIONS(959), - [aux_sym__val_number_token4] = ACTIONS(959), - [aux_sym__val_number_token5] = ACTIONS(959), - [aux_sym__val_number_token6] = ACTIONS(959), - [anon_sym_0b] = ACTIONS(959), - [anon_sym_0o] = ACTIONS(959), - [anon_sym_0x] = ACTIONS(959), - [sym_val_date] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [sym__str_single_quotes] = ACTIONS(959), - [sym__str_back_ticks] = ACTIONS(959), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(959), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(959), - [anon_sym_CARET] = ACTIONS(959), - [aux_sym_unquoted_token5] = ACTIONS(2338), - [anon_sym_POUND] = ACTIONS(113), - }, - [1871] = { - [sym_comment] = STATE(1871), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_COMMA] = ACTIONS(959), - [anon_sym_RBRACK] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH_DASH] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(959), - [anon_sym_PLUS_PLUS] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(959), - [anon_sym_SLASH_SLASH] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(959), - [anon_sym_bit_DASHshr] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(959), - [anon_sym_BANG_EQ] = ACTIONS(959), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(959), - [anon_sym_GT_EQ] = ACTIONS(959), - [anon_sym_not_DASHin] = ACTIONS(959), - [anon_sym_starts_DASHwith] = ACTIONS(959), - [anon_sym_ends_DASHwith] = ACTIONS(959), - [anon_sym_EQ_TILDE] = ACTIONS(959), - [anon_sym_BANG_TILDE] = ACTIONS(959), - [anon_sym_bit_DASHand] = ACTIONS(959), - [anon_sym_bit_DASHxor] = ACTIONS(959), - [anon_sym_bit_DASHor] = ACTIONS(959), - [anon_sym_and] = ACTIONS(959), - [anon_sym_xor] = ACTIONS(959), - [anon_sym_or] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_DOT_DOT_LT] = ACTIONS(959), - [anon_sym_null] = ACTIONS(959), - [anon_sym_true] = ACTIONS(959), - [anon_sym_false] = ACTIONS(959), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(959), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(959), - [aux_sym__val_number_token1] = ACTIONS(959), - [aux_sym__val_number_token2] = ACTIONS(959), - [aux_sym__val_number_token3] = ACTIONS(959), - [aux_sym__val_number_token4] = ACTIONS(959), - [aux_sym__val_number_token5] = ACTIONS(959), - [aux_sym__val_number_token6] = ACTIONS(959), - [anon_sym_0b] = ACTIONS(959), - [anon_sym_0o] = ACTIONS(959), - [anon_sym_0x] = ACTIONS(959), - [sym_val_date] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [sym__str_single_quotes] = ACTIONS(959), - [sym__str_back_ticks] = ACTIONS(959), - [sym__entry_separator] = ACTIONS(961), - [anon_sym_err_GT] = ACTIONS(959), - [anon_sym_out_GT] = ACTIONS(959), - [anon_sym_e_GT] = ACTIONS(959), - [anon_sym_o_GT] = ACTIONS(959), - [anon_sym_err_PLUSout_GT] = ACTIONS(959), - [anon_sym_out_PLUSerr_GT] = ACTIONS(959), - [anon_sym_o_PLUSe_GT] = ACTIONS(959), - [anon_sym_e_PLUSo_GT] = ACTIONS(959), - [aux_sym__unquoted_in_list_token1] = ACTIONS(959), - [anon_sym_POUND] = ACTIONS(113), - }, - [1872] = { - [sym_comment] = STATE(1872), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_COMMA] = ACTIONS(1158), - [anon_sym_RBRACK] = ACTIONS(1158), - [anon_sym_LPAREN] = ACTIONS(1158), - [anon_sym_DOLLAR] = ACTIONS(1158), - [anon_sym_GT] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_in] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1158), - [anon_sym_DOT_DOT] = ACTIONS(1158), - [anon_sym_STAR] = ACTIONS(1158), - [anon_sym_STAR_STAR] = ACTIONS(1158), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_SLASH] = ACTIONS(1158), - [anon_sym_mod] = ACTIONS(1158), - [anon_sym_SLASH_SLASH] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1158), - [anon_sym_bit_DASHshl] = ACTIONS(1158), - [anon_sym_bit_DASHshr] = ACTIONS(1158), - [anon_sym_EQ_EQ] = ACTIONS(1158), - [anon_sym_BANG_EQ] = ACTIONS(1158), - [anon_sym_LT2] = ACTIONS(1158), - [anon_sym_LT_EQ] = ACTIONS(1158), - [anon_sym_GT_EQ] = ACTIONS(1158), - [anon_sym_not_DASHin] = ACTIONS(1158), - [anon_sym_starts_DASHwith] = ACTIONS(1158), - [anon_sym_ends_DASHwith] = ACTIONS(1158), - [anon_sym_EQ_TILDE] = ACTIONS(1158), - [anon_sym_BANG_TILDE] = ACTIONS(1158), - [anon_sym_bit_DASHand] = ACTIONS(1158), - [anon_sym_bit_DASHxor] = ACTIONS(1158), - [anon_sym_bit_DASHor] = ACTIONS(1158), - [anon_sym_and] = ACTIONS(1158), - [anon_sym_xor] = ACTIONS(1158), - [anon_sym_or] = ACTIONS(1158), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1158), - [anon_sym_DOT_DOT_LT] = ACTIONS(1158), - [anon_sym_null] = ACTIONS(1158), - [anon_sym_true] = ACTIONS(1158), - [anon_sym_false] = ACTIONS(1158), - [aux_sym__val_number_decimal_token1] = ACTIONS(1158), - [aux_sym__val_number_decimal_token2] = ACTIONS(1158), - [anon_sym_DOT2] = ACTIONS(1158), - [aux_sym__val_number_decimal_token3] = ACTIONS(1158), - [aux_sym__val_number_token1] = ACTIONS(1158), - [aux_sym__val_number_token2] = ACTIONS(1158), - [aux_sym__val_number_token3] = ACTIONS(1158), - [aux_sym__val_number_token4] = ACTIONS(1158), - [aux_sym__val_number_token5] = ACTIONS(1158), - [aux_sym__val_number_token6] = ACTIONS(1158), - [anon_sym_0b] = ACTIONS(1158), - [anon_sym_0o] = ACTIONS(1158), - [anon_sym_0x] = ACTIONS(1158), - [sym_val_date] = ACTIONS(1158), - [anon_sym_DQUOTE] = ACTIONS(1158), - [sym__str_single_quotes] = ACTIONS(1158), - [sym__str_back_ticks] = ACTIONS(1158), - [sym__entry_separator] = ACTIONS(1160), - [anon_sym_err_GT] = ACTIONS(1158), - [anon_sym_out_GT] = ACTIONS(1158), - [anon_sym_e_GT] = ACTIONS(1158), - [anon_sym_o_GT] = ACTIONS(1158), - [anon_sym_err_PLUSout_GT] = ACTIONS(1158), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1158), - [anon_sym_o_PLUSe_GT] = ACTIONS(1158), - [anon_sym_e_PLUSo_GT] = ACTIONS(1158), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1158), - [anon_sym_POUND] = ACTIONS(113), - }, - [1873] = { - [sym_comment] = STATE(1873), - [anon_sym_LBRACK] = ACTIONS(1410), - [anon_sym_COMMA] = ACTIONS(1410), - [anon_sym_RBRACK] = ACTIONS(1410), - [anon_sym_LPAREN] = ACTIONS(1410), - [anon_sym_DOLLAR] = ACTIONS(1410), - [anon_sym_GT] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_in] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1410), - [anon_sym_DOT_DOT] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1410), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_SLASH] = ACTIONS(1410), - [anon_sym_mod] = ACTIONS(1410), - [anon_sym_SLASH_SLASH] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_bit_DASHshl] = ACTIONS(1410), - [anon_sym_bit_DASHshr] = ACTIONS(1410), - [anon_sym_EQ_EQ] = ACTIONS(1410), - [anon_sym_BANG_EQ] = ACTIONS(1410), - [anon_sym_LT2] = ACTIONS(1410), - [anon_sym_LT_EQ] = ACTIONS(1410), - [anon_sym_GT_EQ] = ACTIONS(1410), - [anon_sym_not_DASHin] = ACTIONS(1410), - [anon_sym_starts_DASHwith] = ACTIONS(1410), - [anon_sym_ends_DASHwith] = ACTIONS(1410), - [anon_sym_EQ_TILDE] = ACTIONS(1410), - [anon_sym_BANG_TILDE] = ACTIONS(1410), - [anon_sym_bit_DASHand] = ACTIONS(1410), - [anon_sym_bit_DASHxor] = ACTIONS(1410), - [anon_sym_bit_DASHor] = ACTIONS(1410), - [anon_sym_and] = ACTIONS(1410), - [anon_sym_xor] = ACTIONS(1410), - [anon_sym_or] = ACTIONS(1410), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1410), - [anon_sym_DOT_DOT_LT] = ACTIONS(1410), - [anon_sym_null] = ACTIONS(1410), - [anon_sym_true] = ACTIONS(1410), - [anon_sym_false] = ACTIONS(1410), - [aux_sym__val_number_decimal_token1] = ACTIONS(1410), - [aux_sym__val_number_decimal_token2] = ACTIONS(1410), - [anon_sym_DOT2] = ACTIONS(1410), - [aux_sym__val_number_decimal_token3] = ACTIONS(1410), - [aux_sym__val_number_token1] = ACTIONS(1410), - [aux_sym__val_number_token2] = ACTIONS(1410), - [aux_sym__val_number_token3] = ACTIONS(1410), - [aux_sym__val_number_token4] = ACTIONS(1410), - [aux_sym__val_number_token5] = ACTIONS(1410), - [aux_sym__val_number_token6] = ACTIONS(1410), - [anon_sym_0b] = ACTIONS(1410), - [anon_sym_0o] = ACTIONS(1410), - [anon_sym_0x] = ACTIONS(1410), - [sym_val_date] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1410), - [sym__str_single_quotes] = ACTIONS(1410), - [sym__str_back_ticks] = ACTIONS(1410), - [sym__entry_separator] = ACTIONS(1412), - [anon_sym_err_GT] = ACTIONS(1410), - [anon_sym_out_GT] = ACTIONS(1410), - [anon_sym_e_GT] = ACTIONS(1410), - [anon_sym_o_GT] = ACTIONS(1410), - [anon_sym_err_PLUSout_GT] = ACTIONS(1410), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1410), - [anon_sym_o_PLUSe_GT] = ACTIONS(1410), - [anon_sym_e_PLUSo_GT] = ACTIONS(1410), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1410), - [anon_sym_POUND] = ACTIONS(113), - }, - [1874] = { - [sym_comment] = STATE(1874), - [anon_sym_LBRACK] = ACTIONS(1286), - [anon_sym_COMMA] = ACTIONS(1286), - [anon_sym_RBRACK] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(1286), - [anon_sym_DOLLAR] = ACTIONS(1286), - [anon_sym_GT] = ACTIONS(1286), - [anon_sym_DASH_DASH] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1286), - [anon_sym_in] = ACTIONS(1286), - [anon_sym_LBRACE] = ACTIONS(1286), - [anon_sym_DOT_DOT] = ACTIONS(1286), - [anon_sym_STAR] = ACTIONS(1286), - [anon_sym_STAR_STAR] = ACTIONS(1286), - [anon_sym_PLUS_PLUS] = ACTIONS(1286), - [anon_sym_SLASH] = ACTIONS(1286), - [anon_sym_mod] = ACTIONS(1286), - [anon_sym_SLASH_SLASH] = ACTIONS(1286), - [anon_sym_PLUS] = ACTIONS(1286), - [anon_sym_bit_DASHshl] = ACTIONS(1286), - [anon_sym_bit_DASHshr] = ACTIONS(1286), - [anon_sym_EQ_EQ] = ACTIONS(1286), - [anon_sym_BANG_EQ] = ACTIONS(1286), - [anon_sym_LT2] = ACTIONS(1286), - [anon_sym_LT_EQ] = ACTIONS(1286), - [anon_sym_GT_EQ] = ACTIONS(1286), - [anon_sym_not_DASHin] = ACTIONS(1286), - [anon_sym_starts_DASHwith] = ACTIONS(1286), - [anon_sym_ends_DASHwith] = ACTIONS(1286), - [anon_sym_EQ_TILDE] = ACTIONS(1286), - [anon_sym_BANG_TILDE] = ACTIONS(1286), - [anon_sym_bit_DASHand] = ACTIONS(1286), - [anon_sym_bit_DASHxor] = ACTIONS(1286), - [anon_sym_bit_DASHor] = ACTIONS(1286), - [anon_sym_and] = ACTIONS(1286), - [anon_sym_xor] = ACTIONS(1286), - [anon_sym_or] = ACTIONS(1286), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1286), - [anon_sym_DOT_DOT_LT] = ACTIONS(1286), - [anon_sym_null] = ACTIONS(1286), - [anon_sym_true] = ACTIONS(1286), - [anon_sym_false] = ACTIONS(1286), - [aux_sym__val_number_decimal_token1] = ACTIONS(1286), - [aux_sym__val_number_decimal_token2] = ACTIONS(1286), - [anon_sym_DOT2] = ACTIONS(1286), - [aux_sym__val_number_decimal_token3] = ACTIONS(1286), - [aux_sym__val_number_token1] = ACTIONS(1286), - [aux_sym__val_number_token2] = ACTIONS(1286), - [aux_sym__val_number_token3] = ACTIONS(1286), - [aux_sym__val_number_token4] = ACTIONS(1286), - [aux_sym__val_number_token5] = ACTIONS(1286), - [aux_sym__val_number_token6] = ACTIONS(1286), - [anon_sym_0b] = ACTIONS(1286), - [anon_sym_0o] = ACTIONS(1286), - [anon_sym_0x] = ACTIONS(1286), - [sym_val_date] = ACTIONS(1286), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym__str_single_quotes] = ACTIONS(1286), - [sym__str_back_ticks] = ACTIONS(1286), - [sym__entry_separator] = ACTIONS(1288), - [anon_sym_err_GT] = ACTIONS(1286), - [anon_sym_out_GT] = ACTIONS(1286), - [anon_sym_e_GT] = ACTIONS(1286), - [anon_sym_o_GT] = ACTIONS(1286), - [anon_sym_err_PLUSout_GT] = ACTIONS(1286), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1286), - [anon_sym_o_PLUSe_GT] = ACTIONS(1286), - [anon_sym_e_PLUSo_GT] = ACTIONS(1286), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1286), - [anon_sym_POUND] = ACTIONS(113), - }, - [1875] = { - [sym_comment] = STATE(1875), - [anon_sym_LBRACK] = ACTIONS(1190), - [anon_sym_COMMA] = ACTIONS(1190), - [anon_sym_RBRACK] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(1190), - [anon_sym_DOLLAR] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1190), - [anon_sym_DASH_DASH] = ACTIONS(1190), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_in] = ACTIONS(1190), - [anon_sym_LBRACE] = ACTIONS(1190), - [anon_sym_DOT_DOT] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1190), - [anon_sym_STAR_STAR] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1190), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_mod] = ACTIONS(1190), - [anon_sym_SLASH_SLASH] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_bit_DASHshl] = ACTIONS(1190), - [anon_sym_bit_DASHshr] = ACTIONS(1190), - [anon_sym_EQ_EQ] = ACTIONS(1190), - [anon_sym_BANG_EQ] = ACTIONS(1190), - [anon_sym_LT2] = ACTIONS(1190), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_not_DASHin] = ACTIONS(1190), - [anon_sym_starts_DASHwith] = ACTIONS(1190), - [anon_sym_ends_DASHwith] = ACTIONS(1190), - [anon_sym_EQ_TILDE] = ACTIONS(1190), - [anon_sym_BANG_TILDE] = ACTIONS(1190), - [anon_sym_bit_DASHand] = ACTIONS(1190), - [anon_sym_bit_DASHxor] = ACTIONS(1190), - [anon_sym_bit_DASHor] = ACTIONS(1190), - [anon_sym_and] = ACTIONS(1190), - [anon_sym_xor] = ACTIONS(1190), - [anon_sym_or] = ACTIONS(1190), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1190), - [anon_sym_DOT_DOT_LT] = ACTIONS(1190), - [anon_sym_null] = ACTIONS(1190), - [anon_sym_true] = ACTIONS(1190), - [anon_sym_false] = ACTIONS(1190), - [aux_sym__val_number_decimal_token1] = ACTIONS(1190), - [aux_sym__val_number_decimal_token2] = ACTIONS(1190), - [anon_sym_DOT2] = ACTIONS(1190), - [aux_sym__val_number_decimal_token3] = ACTIONS(1190), - [aux_sym__val_number_token1] = ACTIONS(1190), - [aux_sym__val_number_token2] = ACTIONS(1190), - [aux_sym__val_number_token3] = ACTIONS(1190), - [aux_sym__val_number_token4] = ACTIONS(1190), - [aux_sym__val_number_token5] = ACTIONS(1190), - [aux_sym__val_number_token6] = ACTIONS(1190), - [anon_sym_0b] = ACTIONS(1190), - [anon_sym_0o] = ACTIONS(1190), - [anon_sym_0x] = ACTIONS(1190), - [sym_val_date] = ACTIONS(1190), - [anon_sym_DQUOTE] = ACTIONS(1190), - [sym__str_single_quotes] = ACTIONS(1190), - [sym__str_back_ticks] = ACTIONS(1190), - [sym__entry_separator] = ACTIONS(1192), - [anon_sym_err_GT] = ACTIONS(1190), - [anon_sym_out_GT] = ACTIONS(1190), - [anon_sym_e_GT] = ACTIONS(1190), - [anon_sym_o_GT] = ACTIONS(1190), - [anon_sym_err_PLUSout_GT] = ACTIONS(1190), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1190), - [anon_sym_o_PLUSe_GT] = ACTIONS(1190), - [anon_sym_e_PLUSo_GT] = ACTIONS(1190), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1190), - [anon_sym_POUND] = ACTIONS(113), - }, - [1876] = { - [sym_comment] = STATE(1876), - [anon_sym_LBRACK] = ACTIONS(1298), - [anon_sym_COMMA] = ACTIONS(1298), - [anon_sym_RBRACK] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1298), - [anon_sym_DOLLAR] = ACTIONS(1298), - [anon_sym_GT] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_in] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_DOT_DOT] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_STAR_STAR] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1298), - [anon_sym_SLASH] = ACTIONS(1298), - [anon_sym_mod] = ACTIONS(1298), - [anon_sym_SLASH_SLASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_bit_DASHshl] = ACTIONS(1298), - [anon_sym_bit_DASHshr] = ACTIONS(1298), - [anon_sym_EQ_EQ] = ACTIONS(1298), - [anon_sym_BANG_EQ] = ACTIONS(1298), - [anon_sym_LT2] = ACTIONS(1298), - [anon_sym_LT_EQ] = ACTIONS(1298), - [anon_sym_GT_EQ] = ACTIONS(1298), - [anon_sym_not_DASHin] = ACTIONS(1298), - [anon_sym_starts_DASHwith] = ACTIONS(1298), - [anon_sym_ends_DASHwith] = ACTIONS(1298), - [anon_sym_EQ_TILDE] = ACTIONS(1298), - [anon_sym_BANG_TILDE] = ACTIONS(1298), - [anon_sym_bit_DASHand] = ACTIONS(1298), - [anon_sym_bit_DASHxor] = ACTIONS(1298), - [anon_sym_bit_DASHor] = ACTIONS(1298), - [anon_sym_and] = ACTIONS(1298), - [anon_sym_xor] = ACTIONS(1298), - [anon_sym_or] = ACTIONS(1298), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1298), - [anon_sym_DOT_DOT_LT] = ACTIONS(1298), - [anon_sym_null] = ACTIONS(1298), - [anon_sym_true] = ACTIONS(1298), - [anon_sym_false] = ACTIONS(1298), - [aux_sym__val_number_decimal_token1] = ACTIONS(1298), - [aux_sym__val_number_decimal_token2] = ACTIONS(1298), - [anon_sym_DOT2] = ACTIONS(1298), - [aux_sym__val_number_decimal_token3] = 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(1298), - [aux_sym__val_number_token5] = ACTIONS(1298), - [aux_sym__val_number_token6] = ACTIONS(1298), - [anon_sym_0b] = ACTIONS(1298), - [anon_sym_0o] = ACTIONS(1298), - [anon_sym_0x] = ACTIONS(1298), - [sym_val_date] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1298), - [sym__str_single_quotes] = ACTIONS(1298), - [sym__str_back_ticks] = ACTIONS(1298), - [sym__entry_separator] = ACTIONS(1300), - [anon_sym_err_GT] = ACTIONS(1298), - [anon_sym_out_GT] = ACTIONS(1298), - [anon_sym_e_GT] = ACTIONS(1298), - [anon_sym_o_GT] = ACTIONS(1298), - [anon_sym_err_PLUSout_GT] = ACTIONS(1298), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1298), - [anon_sym_o_PLUSe_GT] = ACTIONS(1298), - [anon_sym_e_PLUSo_GT] = ACTIONS(1298), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1298), - [anon_sym_POUND] = ACTIONS(113), - }, - [1877] = { - [sym_comment] = STATE(1877), - [anon_sym_LBRACK] = ACTIONS(1302), - [anon_sym_COMMA] = ACTIONS(1302), - [anon_sym_RBRACK] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_DOLLAR] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_in] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_DOT_DOT] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_STAR_STAR] = ACTIONS(1302), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_SLASH] = ACTIONS(1302), - [anon_sym_mod] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_bit_DASHshl] = ACTIONS(1302), - [anon_sym_bit_DASHshr] = ACTIONS(1302), - [anon_sym_EQ_EQ] = ACTIONS(1302), - [anon_sym_BANG_EQ] = ACTIONS(1302), - [anon_sym_LT2] = ACTIONS(1302), - [anon_sym_LT_EQ] = ACTIONS(1302), - [anon_sym_GT_EQ] = ACTIONS(1302), - [anon_sym_not_DASHin] = ACTIONS(1302), - [anon_sym_starts_DASHwith] = ACTIONS(1302), - [anon_sym_ends_DASHwith] = ACTIONS(1302), - [anon_sym_EQ_TILDE] = ACTIONS(1302), - [anon_sym_BANG_TILDE] = ACTIONS(1302), - [anon_sym_bit_DASHand] = ACTIONS(1302), - [anon_sym_bit_DASHxor] = ACTIONS(1302), - [anon_sym_bit_DASHor] = ACTIONS(1302), - [anon_sym_and] = ACTIONS(1302), - [anon_sym_xor] = ACTIONS(1302), - [anon_sym_or] = ACTIONS(1302), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1302), - [anon_sym_DOT_DOT_LT] = ACTIONS(1302), - [anon_sym_null] = ACTIONS(1302), - [anon_sym_true] = ACTIONS(1302), - [anon_sym_false] = ACTIONS(1302), - [aux_sym__val_number_decimal_token1] = ACTIONS(1302), - [aux_sym__val_number_decimal_token2] = ACTIONS(1302), - [anon_sym_DOT2] = ACTIONS(1302), - [aux_sym__val_number_decimal_token3] = ACTIONS(1302), - [aux_sym__val_number_token1] = ACTIONS(1302), - [aux_sym__val_number_token2] = ACTIONS(1302), - [aux_sym__val_number_token3] = ACTIONS(1302), - [aux_sym__val_number_token4] = ACTIONS(1302), - [aux_sym__val_number_token5] = ACTIONS(1302), - [aux_sym__val_number_token6] = ACTIONS(1302), - [anon_sym_0b] = ACTIONS(1302), - [anon_sym_0o] = ACTIONS(1302), - [anon_sym_0x] = ACTIONS(1302), - [sym_val_date] = ACTIONS(1302), - [anon_sym_DQUOTE] = ACTIONS(1302), - [sym__str_single_quotes] = ACTIONS(1302), - [sym__str_back_ticks] = ACTIONS(1302), - [sym__entry_separator] = ACTIONS(1304), - [anon_sym_err_GT] = ACTIONS(1302), - [anon_sym_out_GT] = ACTIONS(1302), - [anon_sym_e_GT] = ACTIONS(1302), - [anon_sym_o_GT] = ACTIONS(1302), - [anon_sym_err_PLUSout_GT] = ACTIONS(1302), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1302), - [anon_sym_o_PLUSe_GT] = ACTIONS(1302), - [anon_sym_e_PLUSo_GT] = ACTIONS(1302), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1302), - [anon_sym_POUND] = ACTIONS(113), - }, - [1878] = { - [sym_comment] = STATE(1878), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_COMMA] = ACTIONS(1316), - [anon_sym_RBRACK] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1316), - [anon_sym_DOLLAR] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_in] = ACTIONS(1316), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_DOT_DOT] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_STAR_STAR] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_SLASH] = ACTIONS(1316), - [anon_sym_mod] = ACTIONS(1316), - [anon_sym_SLASH_SLASH] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_bit_DASHshl] = ACTIONS(1316), - [anon_sym_bit_DASHshr] = ACTIONS(1316), - [anon_sym_EQ_EQ] = ACTIONS(1316), - [anon_sym_BANG_EQ] = ACTIONS(1316), - [anon_sym_LT2] = ACTIONS(1316), - [anon_sym_LT_EQ] = ACTIONS(1316), - [anon_sym_GT_EQ] = ACTIONS(1316), - [anon_sym_not_DASHin] = ACTIONS(1316), - [anon_sym_starts_DASHwith] = ACTIONS(1316), - [anon_sym_ends_DASHwith] = ACTIONS(1316), - [anon_sym_EQ_TILDE] = ACTIONS(1316), - [anon_sym_BANG_TILDE] = ACTIONS(1316), - [anon_sym_bit_DASHand] = ACTIONS(1316), - [anon_sym_bit_DASHxor] = ACTIONS(1316), - [anon_sym_bit_DASHor] = ACTIONS(1316), - [anon_sym_and] = ACTIONS(1316), - [anon_sym_xor] = ACTIONS(1316), - [anon_sym_or] = ACTIONS(1316), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1316), - [anon_sym_DOT_DOT_LT] = ACTIONS(1316), - [anon_sym_null] = ACTIONS(1316), - [anon_sym_true] = ACTIONS(1316), - [anon_sym_false] = ACTIONS(1316), - [aux_sym__val_number_decimal_token1] = ACTIONS(1316), - [aux_sym__val_number_decimal_token2] = ACTIONS(1316), - [anon_sym_DOT2] = ACTIONS(1316), - [aux_sym__val_number_decimal_token3] = ACTIONS(1316), - [aux_sym__val_number_token1] = ACTIONS(1316), - [aux_sym__val_number_token2] = ACTIONS(1316), - [aux_sym__val_number_token3] = ACTIONS(1316), - [aux_sym__val_number_token4] = ACTIONS(1316), - [aux_sym__val_number_token5] = ACTIONS(1316), - [aux_sym__val_number_token6] = ACTIONS(1316), - [anon_sym_0b] = ACTIONS(1316), - [anon_sym_0o] = ACTIONS(1316), - [anon_sym_0x] = ACTIONS(1316), - [sym_val_date] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1316), - [sym__str_single_quotes] = ACTIONS(1316), - [sym__str_back_ticks] = ACTIONS(1316), - [sym__entry_separator] = ACTIONS(1318), - [anon_sym_err_GT] = ACTIONS(1316), - [anon_sym_out_GT] = ACTIONS(1316), - [anon_sym_e_GT] = ACTIONS(1316), - [anon_sym_o_GT] = ACTIONS(1316), - [anon_sym_err_PLUSout_GT] = ACTIONS(1316), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1316), - [anon_sym_o_PLUSe_GT] = ACTIONS(1316), - [anon_sym_e_PLUSo_GT] = ACTIONS(1316), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(113), - }, - [1879] = { - [sym_comment] = STATE(1879), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_COMMA] = ACTIONS(1320), - [anon_sym_RBRACK] = ACTIONS(1320), - [anon_sym_LPAREN] = ACTIONS(1320), - [anon_sym_DOLLAR] = ACTIONS(1320), - [anon_sym_GT] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_in] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_DOT_DOT] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_STAR_STAR] = ACTIONS(1320), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_SLASH] = ACTIONS(1320), - [anon_sym_mod] = ACTIONS(1320), - [anon_sym_SLASH_SLASH] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1320), - [anon_sym_bit_DASHshl] = ACTIONS(1320), - [anon_sym_bit_DASHshr] = ACTIONS(1320), - [anon_sym_EQ_EQ] = ACTIONS(1320), - [anon_sym_BANG_EQ] = ACTIONS(1320), - [anon_sym_LT2] = ACTIONS(1320), - [anon_sym_LT_EQ] = ACTIONS(1320), - [anon_sym_GT_EQ] = ACTIONS(1320), - [anon_sym_not_DASHin] = ACTIONS(1320), - [anon_sym_starts_DASHwith] = ACTIONS(1320), - [anon_sym_ends_DASHwith] = ACTIONS(1320), - [anon_sym_EQ_TILDE] = ACTIONS(1320), - [anon_sym_BANG_TILDE] = ACTIONS(1320), - [anon_sym_bit_DASHand] = ACTIONS(1320), - [anon_sym_bit_DASHxor] = ACTIONS(1320), - [anon_sym_bit_DASHor] = ACTIONS(1320), - [anon_sym_and] = ACTIONS(1320), - [anon_sym_xor] = ACTIONS(1320), - [anon_sym_or] = ACTIONS(1320), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1320), - [anon_sym_DOT_DOT_LT] = ACTIONS(1320), - [anon_sym_null] = ACTIONS(1320), - [anon_sym_true] = ACTIONS(1320), - [anon_sym_false] = ACTIONS(1320), - [aux_sym__val_number_decimal_token1] = ACTIONS(1320), - [aux_sym__val_number_decimal_token2] = ACTIONS(1320), - [anon_sym_DOT2] = ACTIONS(1320), - [aux_sym__val_number_decimal_token3] = ACTIONS(1320), - [aux_sym__val_number_token1] = ACTIONS(1320), - [aux_sym__val_number_token2] = ACTIONS(1320), - [aux_sym__val_number_token3] = ACTIONS(1320), - [aux_sym__val_number_token4] = ACTIONS(1320), - [aux_sym__val_number_token5] = ACTIONS(1320), - [aux_sym__val_number_token6] = ACTIONS(1320), - [anon_sym_0b] = ACTIONS(1320), - [anon_sym_0o] = ACTIONS(1320), - [anon_sym_0x] = ACTIONS(1320), - [sym_val_date] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1320), - [sym__str_single_quotes] = ACTIONS(1320), - [sym__str_back_ticks] = ACTIONS(1320), - [sym__entry_separator] = ACTIONS(1322), - [anon_sym_err_GT] = ACTIONS(1320), - [anon_sym_out_GT] = ACTIONS(1320), - [anon_sym_e_GT] = ACTIONS(1320), - [anon_sym_o_GT] = ACTIONS(1320), - [anon_sym_err_PLUSout_GT] = ACTIONS(1320), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1320), - [anon_sym_o_PLUSe_GT] = ACTIONS(1320), - [anon_sym_e_PLUSo_GT] = ACTIONS(1320), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1320), - [anon_sym_POUND] = ACTIONS(113), - }, - [1880] = { - [sym_comment] = STATE(1880), - [anon_sym_LBRACK] = ACTIONS(1342), - [anon_sym_COMMA] = ACTIONS(1342), - [anon_sym_RBRACK] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_DOLLAR] = ACTIONS(1342), - [anon_sym_GT] = ACTIONS(1342), - [anon_sym_DASH_DASH] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_in] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_DOT_DOT] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_STAR_STAR] = ACTIONS(1342), - [anon_sym_PLUS_PLUS] = ACTIONS(1342), - [anon_sym_SLASH] = ACTIONS(1342), - [anon_sym_mod] = ACTIONS(1342), - [anon_sym_SLASH_SLASH] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_bit_DASHshl] = ACTIONS(1342), - [anon_sym_bit_DASHshr] = ACTIONS(1342), - [anon_sym_EQ_EQ] = ACTIONS(1342), - [anon_sym_BANG_EQ] = ACTIONS(1342), - [anon_sym_LT2] = ACTIONS(1342), - [anon_sym_LT_EQ] = ACTIONS(1342), - [anon_sym_GT_EQ] = ACTIONS(1342), - [anon_sym_not_DASHin] = ACTIONS(1342), - [anon_sym_starts_DASHwith] = ACTIONS(1342), - [anon_sym_ends_DASHwith] = ACTIONS(1342), - [anon_sym_EQ_TILDE] = ACTIONS(1342), - [anon_sym_BANG_TILDE] = ACTIONS(1342), - [anon_sym_bit_DASHand] = ACTIONS(1342), - [anon_sym_bit_DASHxor] = ACTIONS(1342), - [anon_sym_bit_DASHor] = ACTIONS(1342), - [anon_sym_and] = ACTIONS(1342), - [anon_sym_xor] = ACTIONS(1342), - [anon_sym_or] = ACTIONS(1342), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1342), - [anon_sym_DOT_DOT_LT] = ACTIONS(1342), - [anon_sym_null] = ACTIONS(1342), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym__val_number_decimal_token1] = ACTIONS(1342), - [aux_sym__val_number_decimal_token2] = ACTIONS(1342), - [anon_sym_DOT2] = ACTIONS(1342), - [aux_sym__val_number_decimal_token3] = ACTIONS(1342), - [aux_sym__val_number_token1] = ACTIONS(1342), - [aux_sym__val_number_token2] = ACTIONS(1342), - [aux_sym__val_number_token3] = ACTIONS(1342), - [aux_sym__val_number_token4] = ACTIONS(1342), - [aux_sym__val_number_token5] = ACTIONS(1342), - [aux_sym__val_number_token6] = ACTIONS(1342), - [anon_sym_0b] = ACTIONS(1342), - [anon_sym_0o] = ACTIONS(1342), - [anon_sym_0x] = ACTIONS(1342), - [sym_val_date] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [sym__str_single_quotes] = ACTIONS(1342), - [sym__str_back_ticks] = ACTIONS(1342), - [sym__entry_separator] = ACTIONS(1344), - [anon_sym_err_GT] = ACTIONS(1342), - [anon_sym_out_GT] = ACTIONS(1342), - [anon_sym_e_GT] = ACTIONS(1342), - [anon_sym_o_GT] = ACTIONS(1342), - [anon_sym_err_PLUSout_GT] = ACTIONS(1342), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1342), - [anon_sym_o_PLUSe_GT] = ACTIONS(1342), - [anon_sym_e_PLUSo_GT] = ACTIONS(1342), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1342), - [anon_sym_POUND] = ACTIONS(113), - }, - [1881] = { - [sym_comment] = STATE(1881), - [anon_sym_LBRACK] = ACTIONS(1346), - [anon_sym_COMMA] = ACTIONS(1346), - [anon_sym_RBRACK] = ACTIONS(1346), - [anon_sym_LPAREN] = ACTIONS(1346), - [anon_sym_DOLLAR] = ACTIONS(1346), - [anon_sym_GT] = ACTIONS(1346), - [anon_sym_DASH_DASH] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_in] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_DOT_DOT] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_STAR_STAR] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1346), - [anon_sym_SLASH] = ACTIONS(1346), - [anon_sym_mod] = ACTIONS(1346), - [anon_sym_SLASH_SLASH] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_bit_DASHshl] = ACTIONS(1346), - [anon_sym_bit_DASHshr] = ACTIONS(1346), - [anon_sym_EQ_EQ] = ACTIONS(1346), - [anon_sym_BANG_EQ] = ACTIONS(1346), - [anon_sym_LT2] = ACTIONS(1346), - [anon_sym_LT_EQ] = ACTIONS(1346), - [anon_sym_GT_EQ] = ACTIONS(1346), - [anon_sym_not_DASHin] = ACTIONS(1346), - [anon_sym_starts_DASHwith] = ACTIONS(1346), - [anon_sym_ends_DASHwith] = ACTIONS(1346), - [anon_sym_EQ_TILDE] = ACTIONS(1346), - [anon_sym_BANG_TILDE] = ACTIONS(1346), - [anon_sym_bit_DASHand] = ACTIONS(1346), - [anon_sym_bit_DASHxor] = ACTIONS(1346), - [anon_sym_bit_DASHor] = ACTIONS(1346), - [anon_sym_and] = ACTIONS(1346), - [anon_sym_xor] = ACTIONS(1346), - [anon_sym_or] = ACTIONS(1346), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1346), - [anon_sym_DOT_DOT_LT] = ACTIONS(1346), - [anon_sym_null] = ACTIONS(1346), - [anon_sym_true] = ACTIONS(1346), - [anon_sym_false] = ACTIONS(1346), - [aux_sym__val_number_decimal_token1] = ACTIONS(1346), - [aux_sym__val_number_decimal_token2] = ACTIONS(1346), - [anon_sym_DOT2] = ACTIONS(1346), - [aux_sym__val_number_decimal_token3] = ACTIONS(1346), - [aux_sym__val_number_token1] = ACTIONS(1346), - [aux_sym__val_number_token2] = ACTIONS(1346), - [aux_sym__val_number_token3] = ACTIONS(1346), - [aux_sym__val_number_token4] = ACTIONS(1346), - [aux_sym__val_number_token5] = ACTIONS(1346), - [aux_sym__val_number_token6] = ACTIONS(1346), - [anon_sym_0b] = ACTIONS(1346), - [anon_sym_0o] = ACTIONS(1346), - [anon_sym_0x] = ACTIONS(1346), - [sym_val_date] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym__str_single_quotes] = ACTIONS(1346), - [sym__str_back_ticks] = ACTIONS(1346), - [sym__entry_separator] = ACTIONS(1348), - [anon_sym_err_GT] = ACTIONS(1346), - [anon_sym_out_GT] = ACTIONS(1346), - [anon_sym_e_GT] = ACTIONS(1346), - [anon_sym_o_GT] = ACTIONS(1346), - [anon_sym_err_PLUSout_GT] = ACTIONS(1346), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1346), - [anon_sym_o_PLUSe_GT] = ACTIONS(1346), - [anon_sym_e_PLUSo_GT] = ACTIONS(1346), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1346), - [anon_sym_POUND] = ACTIONS(113), - }, - [1882] = { - [sym_comment] = STATE(1882), - [anon_sym_LBRACK] = ACTIONS(1362), - [anon_sym_COMMA] = ACTIONS(1362), - [anon_sym_RBRACK] = ACTIONS(1362), - [anon_sym_LPAREN] = ACTIONS(1362), - [anon_sym_DOLLAR] = ACTIONS(1362), - [anon_sym_GT] = ACTIONS(1362), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_in] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_DOT_DOT] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_STAR_STAR] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_SLASH] = ACTIONS(1362), - [anon_sym_mod] = ACTIONS(1362), - [anon_sym_SLASH_SLASH] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_bit_DASHshl] = ACTIONS(1362), - [anon_sym_bit_DASHshr] = ACTIONS(1362), - [anon_sym_EQ_EQ] = ACTIONS(1362), - [anon_sym_BANG_EQ] = ACTIONS(1362), - [anon_sym_LT2] = ACTIONS(1362), - [anon_sym_LT_EQ] = ACTIONS(1362), - [anon_sym_GT_EQ] = ACTIONS(1362), - [anon_sym_not_DASHin] = ACTIONS(1362), - [anon_sym_starts_DASHwith] = ACTIONS(1362), - [anon_sym_ends_DASHwith] = ACTIONS(1362), - [anon_sym_EQ_TILDE] = ACTIONS(1362), - [anon_sym_BANG_TILDE] = ACTIONS(1362), - [anon_sym_bit_DASHand] = ACTIONS(1362), - [anon_sym_bit_DASHxor] = ACTIONS(1362), - [anon_sym_bit_DASHor] = ACTIONS(1362), - [anon_sym_and] = ACTIONS(1362), - [anon_sym_xor] = ACTIONS(1362), - [anon_sym_or] = ACTIONS(1362), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1362), - [anon_sym_DOT_DOT_LT] = ACTIONS(1362), - [anon_sym_null] = ACTIONS(1362), - [anon_sym_true] = ACTIONS(1362), - [anon_sym_false] = ACTIONS(1362), - [aux_sym__val_number_decimal_token1] = ACTIONS(1362), - [aux_sym__val_number_decimal_token2] = ACTIONS(1362), - [anon_sym_DOT2] = ACTIONS(1362), - [aux_sym__val_number_decimal_token3] = ACTIONS(1362), - [aux_sym__val_number_token1] = ACTIONS(1362), - [aux_sym__val_number_token2] = ACTIONS(1362), - [aux_sym__val_number_token3] = ACTIONS(1362), - [aux_sym__val_number_token4] = ACTIONS(1362), - [aux_sym__val_number_token5] = ACTIONS(1362), - [aux_sym__val_number_token6] = ACTIONS(1362), - [anon_sym_0b] = ACTIONS(1362), - [anon_sym_0o] = ACTIONS(1362), - [anon_sym_0x] = ACTIONS(1362), - [sym_val_date] = ACTIONS(1362), - [anon_sym_DQUOTE] = ACTIONS(1362), - [sym__str_single_quotes] = ACTIONS(1362), - [sym__str_back_ticks] = ACTIONS(1362), - [sym__entry_separator] = ACTIONS(1364), - [anon_sym_err_GT] = ACTIONS(1362), - [anon_sym_out_GT] = ACTIONS(1362), - [anon_sym_e_GT] = ACTIONS(1362), - [anon_sym_o_GT] = ACTIONS(1362), - [anon_sym_err_PLUSout_GT] = ACTIONS(1362), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1362), - [anon_sym_o_PLUSe_GT] = ACTIONS(1362), - [anon_sym_e_PLUSo_GT] = ACTIONS(1362), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1362), - [anon_sym_POUND] = ACTIONS(113), - }, - [1883] = { - [sym_comment] = STATE(1883), - [anon_sym_LBRACK] = ACTIONS(1406), - [anon_sym_COMMA] = ACTIONS(1406), - [anon_sym_RBRACK] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1406), - [anon_sym_DOLLAR] = ACTIONS(1406), - [anon_sym_GT] = ACTIONS(1406), - [anon_sym_DASH_DASH] = ACTIONS(1406), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_in] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_DOT_DOT] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1406), - [anon_sym_STAR_STAR] = ACTIONS(1406), - [anon_sym_PLUS_PLUS] = ACTIONS(1406), - [anon_sym_SLASH] = ACTIONS(1406), - [anon_sym_mod] = ACTIONS(1406), - [anon_sym_SLASH_SLASH] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_bit_DASHshl] = ACTIONS(1406), - [anon_sym_bit_DASHshr] = ACTIONS(1406), - [anon_sym_EQ_EQ] = ACTIONS(1406), - [anon_sym_BANG_EQ] = ACTIONS(1406), - [anon_sym_LT2] = ACTIONS(1406), - [anon_sym_LT_EQ] = ACTIONS(1406), - [anon_sym_GT_EQ] = ACTIONS(1406), - [anon_sym_not_DASHin] = ACTIONS(1406), - [anon_sym_starts_DASHwith] = ACTIONS(1406), - [anon_sym_ends_DASHwith] = ACTIONS(1406), - [anon_sym_EQ_TILDE] = ACTIONS(1406), - [anon_sym_BANG_TILDE] = ACTIONS(1406), - [anon_sym_bit_DASHand] = ACTIONS(1406), - [anon_sym_bit_DASHxor] = ACTIONS(1406), - [anon_sym_bit_DASHor] = ACTIONS(1406), - [anon_sym_and] = ACTIONS(1406), - [anon_sym_xor] = ACTIONS(1406), - [anon_sym_or] = ACTIONS(1406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1406), - [anon_sym_DOT_DOT_LT] = ACTIONS(1406), - [anon_sym_null] = ACTIONS(1406), - [anon_sym_true] = ACTIONS(1406), - [anon_sym_false] = ACTIONS(1406), - [aux_sym__val_number_decimal_token1] = ACTIONS(1406), - [aux_sym__val_number_decimal_token2] = ACTIONS(1406), - [anon_sym_DOT2] = ACTIONS(1406), - [aux_sym__val_number_decimal_token3] = ACTIONS(1406), - [aux_sym__val_number_token1] = ACTIONS(1406), - [aux_sym__val_number_token2] = ACTIONS(1406), - [aux_sym__val_number_token3] = ACTIONS(1406), - [aux_sym__val_number_token4] = ACTIONS(1406), - [aux_sym__val_number_token5] = ACTIONS(1406), - [aux_sym__val_number_token6] = ACTIONS(1406), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1406), - [anon_sym_0x] = ACTIONS(1406), - [sym_val_date] = ACTIONS(1406), - [anon_sym_DQUOTE] = ACTIONS(1406), - [sym__str_single_quotes] = ACTIONS(1406), - [sym__str_back_ticks] = ACTIONS(1406), - [sym__entry_separator] = ACTIONS(1408), - [anon_sym_err_GT] = ACTIONS(1406), - [anon_sym_out_GT] = ACTIONS(1406), - [anon_sym_e_GT] = ACTIONS(1406), - [anon_sym_o_GT] = ACTIONS(1406), - [anon_sym_err_PLUSout_GT] = ACTIONS(1406), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1406), - [anon_sym_o_PLUSe_GT] = ACTIONS(1406), - [anon_sym_e_PLUSo_GT] = ACTIONS(1406), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1406), - [anon_sym_POUND] = ACTIONS(113), - }, - [1884] = { - [sym_comment] = STATE(1884), - [anon_sym_LBRACK] = ACTIONS(1294), - [anon_sym_COMMA] = ACTIONS(1294), - [anon_sym_RBRACK] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_in] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_DOT_DOT] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_STAR_STAR] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_mod] = ACTIONS(1294), - [anon_sym_SLASH_SLASH] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_bit_DASHshl] = ACTIONS(1294), - [anon_sym_bit_DASHshr] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_LT2] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_not_DASHin] = ACTIONS(1294), - [anon_sym_starts_DASHwith] = ACTIONS(1294), - [anon_sym_ends_DASHwith] = ACTIONS(1294), - [anon_sym_EQ_TILDE] = ACTIONS(1294), - [anon_sym_BANG_TILDE] = ACTIONS(1294), - [anon_sym_bit_DASHand] = ACTIONS(1294), - [anon_sym_bit_DASHxor] = ACTIONS(1294), - [anon_sym_bit_DASHor] = ACTIONS(1294), - [anon_sym_and] = ACTIONS(1294), - [anon_sym_xor] = ACTIONS(1294), - [anon_sym_or] = ACTIONS(1294), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1294), - [anon_sym_DOT_DOT_LT] = ACTIONS(1294), - [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(1294), - [anon_sym_DOT2] = ACTIONS(1294), - [aux_sym__val_number_decimal_token3] = ACTIONS(1294), - [aux_sym__val_number_token1] = ACTIONS(1294), - [aux_sym__val_number_token2] = ACTIONS(1294), - [aux_sym__val_number_token3] = ACTIONS(1294), - [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(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym__str_single_quotes] = ACTIONS(1294), - [sym__str_back_ticks] = ACTIONS(1294), - [sym__entry_separator] = 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), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1294), - [anon_sym_POUND] = ACTIONS(113), - }, - [1885] = { - [sym_comment] = STATE(1885), - [anon_sym_LBRACK] = ACTIONS(1294), - [anon_sym_COMMA] = ACTIONS(1294), - [anon_sym_RBRACK] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_in] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_DOT_DOT] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_STAR_STAR] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_mod] = ACTIONS(1294), - [anon_sym_SLASH_SLASH] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_bit_DASHshl] = ACTIONS(1294), - [anon_sym_bit_DASHshr] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_LT2] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_not_DASHin] = ACTIONS(1294), - [anon_sym_starts_DASHwith] = ACTIONS(1294), - [anon_sym_ends_DASHwith] = ACTIONS(1294), - [anon_sym_EQ_TILDE] = ACTIONS(1294), - [anon_sym_BANG_TILDE] = ACTIONS(1294), - [anon_sym_bit_DASHand] = ACTIONS(1294), - [anon_sym_bit_DASHxor] = ACTIONS(1294), - [anon_sym_bit_DASHor] = ACTIONS(1294), - [anon_sym_and] = ACTIONS(1294), - [anon_sym_xor] = ACTIONS(1294), - [anon_sym_or] = ACTIONS(1294), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1294), - [anon_sym_DOT_DOT_LT] = ACTIONS(1294), - [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(1294), - [anon_sym_DOT2] = ACTIONS(1294), - [aux_sym__val_number_decimal_token3] = ACTIONS(1294), - [aux_sym__val_number_token1] = ACTIONS(1294), - [aux_sym__val_number_token2] = ACTIONS(1294), - [aux_sym__val_number_token3] = ACTIONS(1294), - [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(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym__str_single_quotes] = ACTIONS(1294), - [sym__str_back_ticks] = ACTIONS(1294), - [sym__entry_separator] = 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), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1294), - [anon_sym_POUND] = ACTIONS(113), - }, - [1886] = { - [sym_comment] = STATE(1886), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_COMMA] = ACTIONS(1308), - [anon_sym_RBRACK] = ACTIONS(1308), - [anon_sym_LPAREN] = ACTIONS(1308), - [anon_sym_DOLLAR] = ACTIONS(1308), - [anon_sym_GT] = ACTIONS(1308), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_in] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_DOT_DOT] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_STAR_STAR] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(1308), - [anon_sym_mod] = ACTIONS(1308), - [anon_sym_SLASH_SLASH] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_bit_DASHshl] = ACTIONS(1308), - [anon_sym_bit_DASHshr] = ACTIONS(1308), - [anon_sym_EQ_EQ] = ACTIONS(1308), - [anon_sym_BANG_EQ] = ACTIONS(1308), - [anon_sym_LT2] = ACTIONS(1308), - [anon_sym_LT_EQ] = ACTIONS(1308), - [anon_sym_GT_EQ] = ACTIONS(1308), - [anon_sym_not_DASHin] = ACTIONS(1308), - [anon_sym_starts_DASHwith] = ACTIONS(1308), - [anon_sym_ends_DASHwith] = ACTIONS(1308), - [anon_sym_EQ_TILDE] = ACTIONS(1308), - [anon_sym_BANG_TILDE] = ACTIONS(1308), - [anon_sym_bit_DASHand] = ACTIONS(1308), - [anon_sym_bit_DASHxor] = ACTIONS(1308), - [anon_sym_bit_DASHor] = ACTIONS(1308), - [anon_sym_and] = ACTIONS(1308), - [anon_sym_xor] = ACTIONS(1308), - [anon_sym_or] = ACTIONS(1308), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1308), - [anon_sym_DOT_DOT_LT] = ACTIONS(1308), - [anon_sym_null] = ACTIONS(1308), - [anon_sym_true] = ACTIONS(1308), - [anon_sym_false] = ACTIONS(1308), - [aux_sym__val_number_decimal_token1] = ACTIONS(1308), - [aux_sym__val_number_decimal_token2] = ACTIONS(1308), - [anon_sym_DOT2] = ACTIONS(1308), - [aux_sym__val_number_decimal_token3] = ACTIONS(1308), - [aux_sym__val_number_token1] = ACTIONS(1308), - [aux_sym__val_number_token2] = ACTIONS(1308), - [aux_sym__val_number_token3] = ACTIONS(1308), - [aux_sym__val_number_token4] = ACTIONS(1308), - [aux_sym__val_number_token5] = ACTIONS(1308), - [aux_sym__val_number_token6] = ACTIONS(1308), - [anon_sym_0b] = ACTIONS(1308), - [anon_sym_0o] = ACTIONS(1308), - [anon_sym_0x] = ACTIONS(1308), - [sym_val_date] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym__str_single_quotes] = ACTIONS(1308), - [sym__str_back_ticks] = ACTIONS(1308), - [sym__entry_separator] = ACTIONS(1310), - [anon_sym_err_GT] = ACTIONS(1308), - [anon_sym_out_GT] = ACTIONS(1308), - [anon_sym_e_GT] = ACTIONS(1308), - [anon_sym_o_GT] = ACTIONS(1308), - [anon_sym_err_PLUSout_GT] = ACTIONS(1308), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1308), - [anon_sym_o_PLUSe_GT] = ACTIONS(1308), - [anon_sym_e_PLUSo_GT] = ACTIONS(1308), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1308), - [anon_sym_POUND] = ACTIONS(113), - }, - [1887] = { - [sym_comment] = STATE(1887), - [anon_sym_LBRACK] = ACTIONS(1312), - [anon_sym_COMMA] = ACTIONS(1312), - [anon_sym_RBRACK] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1312), - [anon_sym_DOLLAR] = ACTIONS(1312), - [anon_sym_GT] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_in] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_DOT_DOT] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_STAR_STAR] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_SLASH] = ACTIONS(1312), - [anon_sym_mod] = ACTIONS(1312), - [anon_sym_SLASH_SLASH] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_bit_DASHshl] = ACTIONS(1312), - [anon_sym_bit_DASHshr] = ACTIONS(1312), - [anon_sym_EQ_EQ] = ACTIONS(1312), - [anon_sym_BANG_EQ] = ACTIONS(1312), - [anon_sym_LT2] = ACTIONS(1312), - [anon_sym_LT_EQ] = ACTIONS(1312), - [anon_sym_GT_EQ] = ACTIONS(1312), - [anon_sym_not_DASHin] = ACTIONS(1312), - [anon_sym_starts_DASHwith] = ACTIONS(1312), - [anon_sym_ends_DASHwith] = ACTIONS(1312), - [anon_sym_EQ_TILDE] = ACTIONS(1312), - [anon_sym_BANG_TILDE] = ACTIONS(1312), - [anon_sym_bit_DASHand] = ACTIONS(1312), - [anon_sym_bit_DASHxor] = ACTIONS(1312), - [anon_sym_bit_DASHor] = ACTIONS(1312), - [anon_sym_and] = ACTIONS(1312), - [anon_sym_xor] = ACTIONS(1312), - [anon_sym_or] = ACTIONS(1312), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1312), - [anon_sym_DOT_DOT_LT] = ACTIONS(1312), - [anon_sym_null] = ACTIONS(1312), - [anon_sym_true] = ACTIONS(1312), - [anon_sym_false] = ACTIONS(1312), - [aux_sym__val_number_decimal_token1] = ACTIONS(1312), - [aux_sym__val_number_decimal_token2] = ACTIONS(1312), - [anon_sym_DOT2] = ACTIONS(1312), - [aux_sym__val_number_decimal_token3] = ACTIONS(1312), - [aux_sym__val_number_token1] = ACTIONS(1312), - [aux_sym__val_number_token2] = ACTIONS(1312), - [aux_sym__val_number_token3] = ACTIONS(1312), - [aux_sym__val_number_token4] = ACTIONS(1312), - [aux_sym__val_number_token5] = ACTIONS(1312), - [aux_sym__val_number_token6] = ACTIONS(1312), - [anon_sym_0b] = ACTIONS(1312), - [anon_sym_0o] = ACTIONS(1312), - [anon_sym_0x] = ACTIONS(1312), - [sym_val_date] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym__str_single_quotes] = ACTIONS(1312), - [sym__str_back_ticks] = ACTIONS(1312), - [sym__entry_separator] = ACTIONS(1314), - [anon_sym_err_GT] = ACTIONS(1312), - [anon_sym_out_GT] = ACTIONS(1312), - [anon_sym_e_GT] = ACTIONS(1312), - [anon_sym_o_GT] = ACTIONS(1312), - [anon_sym_err_PLUSout_GT] = ACTIONS(1312), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1312), - [anon_sym_o_PLUSe_GT] = ACTIONS(1312), - [anon_sym_e_PLUSo_GT] = ACTIONS(1312), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1312), + [2111] = { + [sym_comment] = STATE(2111), + [ts_builtin_sym_end] = ACTIONS(2231), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_alias] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_let_DASHenv] = ACTIONS(2229), + [anon_sym_mut] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2229), + [sym_cmd_identifier] = ACTIONS(2229), + [anon_sym_LF] = ACTIONS(2231), + [anon_sym_def] = ACTIONS(2229), + [anon_sym_export_DASHenv] = ACTIONS(2229), + [anon_sym_extern] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2229), + [anon_sym_error] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_loop] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_source] = ACTIONS(2229), + [anon_sym_source_DASHenv] = ACTIONS(2229), + [anon_sym_register] = ACTIONS(2229), + [anon_sym_hide] = ACTIONS(2229), + [anon_sym_hide_DASHenv] = ACTIONS(2229), + [anon_sym_overlay] = ACTIONS(2229), + [anon_sym_as] = ACTIONS(2229), + [anon_sym_where] = ACTIONS(2229), + [anon_sym_not] = ACTIONS(2229), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2229), + [anon_sym_DOT_DOT_LT] = ACTIONS(2229), + [anon_sym_null] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [aux_sym__val_number_decimal_token1] = ACTIONS(2229), + [aux_sym__val_number_decimal_token2] = ACTIONS(2229), + [anon_sym_DOT2] = ACTIONS(2229), + [aux_sym__val_number_decimal_token3] = ACTIONS(2229), + [aux_sym__val_number_token1] = ACTIONS(2229), + [aux_sym__val_number_token2] = ACTIONS(2229), + [aux_sym__val_number_token3] = ACTIONS(2229), + [aux_sym__val_number_token4] = ACTIONS(2229), + [aux_sym__val_number_token5] = ACTIONS(2229), + [aux_sym__val_number_token6] = ACTIONS(2229), + [anon_sym_0b] = ACTIONS(2229), + [anon_sym_0o] = ACTIONS(2229), + [anon_sym_0x] = ACTIONS(2229), + [sym_val_date] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2229), + [anon_sym_CARET] = ACTIONS(2229), [anon_sym_POUND] = ACTIONS(113), }, - [1888] = { - [sym_comment] = STATE(1888), - [anon_sym_LBRACK] = ACTIONS(1186), - [anon_sym_COMMA] = ACTIONS(1186), - [anon_sym_RBRACK] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(1186), - [anon_sym_DOLLAR] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_DASH_DASH] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_in] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_DOT_DOT] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_STAR_STAR] = ACTIONS(1186), - [anon_sym_PLUS_PLUS] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_mod] = ACTIONS(1186), - [anon_sym_SLASH_SLASH] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_bit_DASHshl] = ACTIONS(1186), - [anon_sym_bit_DASHshr] = ACTIONS(1186), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_LT2] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1186), - [anon_sym_GT_EQ] = ACTIONS(1186), - [anon_sym_not_DASHin] = ACTIONS(1186), - [anon_sym_starts_DASHwith] = ACTIONS(1186), - [anon_sym_ends_DASHwith] = ACTIONS(1186), - [anon_sym_EQ_TILDE] = ACTIONS(1186), - [anon_sym_BANG_TILDE] = ACTIONS(1186), - [anon_sym_bit_DASHand] = ACTIONS(1186), - [anon_sym_bit_DASHxor] = ACTIONS(1186), - [anon_sym_bit_DASHor] = ACTIONS(1186), - [anon_sym_and] = ACTIONS(1186), - [anon_sym_xor] = ACTIONS(1186), - [anon_sym_or] = ACTIONS(1186), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1186), - [anon_sym_DOT_DOT_LT] = ACTIONS(1186), - [anon_sym_null] = ACTIONS(1186), - [anon_sym_true] = ACTIONS(1186), - [anon_sym_false] = ACTIONS(1186), - [aux_sym__val_number_decimal_token1] = ACTIONS(1186), - [aux_sym__val_number_decimal_token2] = ACTIONS(1186), - [anon_sym_DOT2] = ACTIONS(1186), - [aux_sym__val_number_decimal_token3] = ACTIONS(1186), - [aux_sym__val_number_token1] = ACTIONS(1186), - [aux_sym__val_number_token2] = ACTIONS(1186), - [aux_sym__val_number_token3] = ACTIONS(1186), - [aux_sym__val_number_token4] = ACTIONS(1186), - [aux_sym__val_number_token5] = ACTIONS(1186), - [aux_sym__val_number_token6] = ACTIONS(1186), - [anon_sym_0b] = ACTIONS(1186), - [anon_sym_0o] = ACTIONS(1186), - [anon_sym_0x] = ACTIONS(1186), - [sym_val_date] = ACTIONS(1186), - [anon_sym_DQUOTE] = ACTIONS(1186), - [sym__str_single_quotes] = ACTIONS(1186), - [sym__str_back_ticks] = ACTIONS(1186), - [sym__entry_separator] = ACTIONS(1188), - [anon_sym_err_GT] = ACTIONS(1186), - [anon_sym_out_GT] = ACTIONS(1186), - [anon_sym_e_GT] = ACTIONS(1186), - [anon_sym_o_GT] = ACTIONS(1186), - [anon_sym_err_PLUSout_GT] = ACTIONS(1186), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1186), - [anon_sym_o_PLUSe_GT] = ACTIONS(1186), - [anon_sym_e_PLUSo_GT] = ACTIONS(1186), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1186), + [2112] = { + [sym_comment] = STATE(2112), + [ts_builtin_sym_end] = ACTIONS(2364), + [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), + [anon_sym_SEMI] = ACTIONS(2362), + [sym_cmd_identifier] = ACTIONS(2362), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2362), + [anon_sym_LPAREN] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2362), + [anon_sym_error] = ACTIONS(2362), + [anon_sym_DASH_DASH] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_break] = ACTIONS(2362), + [anon_sym_continue] = ACTIONS(2362), + [anon_sym_for] = ACTIONS(2362), + [anon_sym_loop] = ACTIONS(2362), + [anon_sym_while] = ACTIONS(2362), + [anon_sym_do] = ACTIONS(2362), + [anon_sym_if] = ACTIONS(2362), + [anon_sym_match] = ACTIONS(2362), + [anon_sym_LBRACE] = ACTIONS(2362), + [anon_sym_DOT_DOT] = ACTIONS(2362), + [anon_sym_try] = 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_where] = ACTIONS(2362), + [anon_sym_not] = ACTIONS(2362), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2362), + [anon_sym_DOT_DOT_LT] = ACTIONS(2362), + [anon_sym_null] = ACTIONS(2362), + [anon_sym_true] = ACTIONS(2362), + [anon_sym_false] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2362), + [aux_sym__val_number_decimal_token2] = ACTIONS(2362), + [anon_sym_DOT2] = ACTIONS(2362), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2362), + [anon_sym_0o] = ACTIONS(2362), + [anon_sym_0x] = ACTIONS(2362), + [sym_val_date] = 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_CARET] = ACTIONS(2362), [anon_sym_POUND] = ACTIONS(113), }, - [1889] = { - [sym_comment] = STATE(1889), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_COMMA] = ACTIONS(1332), - [anon_sym_RBRACK] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1332), - [anon_sym_DOLLAR] = ACTIONS(1332), - [anon_sym_GT] = ACTIONS(1332), - [anon_sym_DASH_DASH] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_in] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_DOT_DOT] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_STAR_STAR] = ACTIONS(1332), - [anon_sym_PLUS_PLUS] = ACTIONS(1332), - [anon_sym_SLASH] = ACTIONS(1332), - [anon_sym_mod] = ACTIONS(1332), - [anon_sym_SLASH_SLASH] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_bit_DASHshl] = ACTIONS(1332), - [anon_sym_bit_DASHshr] = ACTIONS(1332), - [anon_sym_EQ_EQ] = ACTIONS(1332), - [anon_sym_BANG_EQ] = ACTIONS(1332), - [anon_sym_LT2] = ACTIONS(1332), - [anon_sym_LT_EQ] = ACTIONS(1332), - [anon_sym_GT_EQ] = ACTIONS(1332), - [anon_sym_not_DASHin] = ACTIONS(1332), - [anon_sym_starts_DASHwith] = ACTIONS(1332), - [anon_sym_ends_DASHwith] = ACTIONS(1332), - [anon_sym_EQ_TILDE] = ACTIONS(1332), - [anon_sym_BANG_TILDE] = ACTIONS(1332), - [anon_sym_bit_DASHand] = ACTIONS(1332), - [anon_sym_bit_DASHxor] = ACTIONS(1332), - [anon_sym_bit_DASHor] = ACTIONS(1332), - [anon_sym_and] = ACTIONS(1332), - [anon_sym_xor] = ACTIONS(1332), - [anon_sym_or] = ACTIONS(1332), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1332), - [anon_sym_DOT_DOT_LT] = ACTIONS(1332), - [anon_sym_null] = ACTIONS(1332), - [anon_sym_true] = ACTIONS(1332), - [anon_sym_false] = ACTIONS(1332), - [aux_sym__val_number_decimal_token1] = ACTIONS(1332), - [aux_sym__val_number_decimal_token2] = ACTIONS(1332), - [anon_sym_DOT2] = ACTIONS(1332), - [aux_sym__val_number_decimal_token3] = ACTIONS(1332), - [aux_sym__val_number_token1] = ACTIONS(1332), - [aux_sym__val_number_token2] = ACTIONS(1332), - [aux_sym__val_number_token3] = ACTIONS(1332), - [aux_sym__val_number_token4] = ACTIONS(1332), - [aux_sym__val_number_token5] = ACTIONS(1332), - [aux_sym__val_number_token6] = ACTIONS(1332), - [anon_sym_0b] = ACTIONS(1332), - [anon_sym_0o] = ACTIONS(1332), - [anon_sym_0x] = ACTIONS(1332), - [sym_val_date] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym__str_single_quotes] = ACTIONS(1332), - [sym__str_back_ticks] = ACTIONS(1332), - [sym__entry_separator] = ACTIONS(1334), - [anon_sym_err_GT] = ACTIONS(1332), - [anon_sym_out_GT] = ACTIONS(1332), - [anon_sym_e_GT] = ACTIONS(1332), - [anon_sym_o_GT] = ACTIONS(1332), - [anon_sym_err_PLUSout_GT] = ACTIONS(1332), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1332), - [anon_sym_o_PLUSe_GT] = ACTIONS(1332), - [anon_sym_e_PLUSo_GT] = ACTIONS(1332), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1332), + [2113] = { + [sym_comment] = STATE(2113), + [ts_builtin_sym_end] = ACTIONS(2404), + [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), + [anon_sym_SEMI] = ACTIONS(2402), + [sym_cmd_identifier] = ACTIONS(2402), + [anon_sym_LF] = 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_LBRACK] = ACTIONS(2402), + [anon_sym_LPAREN] = ACTIONS(2402), + [anon_sym_DOLLAR] = ACTIONS(2402), + [anon_sym_error] = ACTIONS(2402), + [anon_sym_DASH_DASH] = ACTIONS(2402), + [anon_sym_DASH] = ACTIONS(2402), + [anon_sym_break] = ACTIONS(2402), + [anon_sym_continue] = ACTIONS(2402), + [anon_sym_for] = ACTIONS(2402), + [anon_sym_loop] = ACTIONS(2402), + [anon_sym_while] = ACTIONS(2402), + [anon_sym_do] = ACTIONS(2402), + [anon_sym_if] = ACTIONS(2402), + [anon_sym_match] = ACTIONS(2402), + [anon_sym_LBRACE] = ACTIONS(2402), + [anon_sym_DOT_DOT] = ACTIONS(2402), + [anon_sym_try] = 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_where] = ACTIONS(2402), + [anon_sym_not] = ACTIONS(2402), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2402), + [anon_sym_DOT_DOT_LT] = ACTIONS(2402), + [anon_sym_null] = ACTIONS(2402), + [anon_sym_true] = ACTIONS(2402), + [anon_sym_false] = ACTIONS(2402), + [aux_sym__val_number_decimal_token1] = ACTIONS(2402), + [aux_sym__val_number_decimal_token2] = ACTIONS(2402), + [anon_sym_DOT2] = ACTIONS(2402), + [aux_sym__val_number_decimal_token3] = ACTIONS(2402), + [aux_sym__val_number_token1] = ACTIONS(2402), + [aux_sym__val_number_token2] = ACTIONS(2402), + [aux_sym__val_number_token3] = ACTIONS(2402), + [aux_sym__val_number_token4] = ACTIONS(2402), + [aux_sym__val_number_token5] = ACTIONS(2402), + [aux_sym__val_number_token6] = ACTIONS(2402), + [anon_sym_0b] = ACTIONS(2402), + [anon_sym_0o] = ACTIONS(2402), + [anon_sym_0x] = ACTIONS(2402), + [sym_val_date] = 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_CARET] = ACTIONS(2402), [anon_sym_POUND] = ACTIONS(113), }, - [1890] = { - [sym_comment] = STATE(1890), - [anon_sym_LBRACK] = ACTIONS(1336), - [anon_sym_COMMA] = ACTIONS(1336), - [anon_sym_RBRACK] = ACTIONS(1336), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_DOLLAR] = ACTIONS(1336), - [anon_sym_GT] = ACTIONS(1336), - [anon_sym_DASH_DASH] = ACTIONS(1336), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_in] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_DOT_DOT] = ACTIONS(1336), - [anon_sym_STAR] = ACTIONS(1336), - [anon_sym_STAR_STAR] = ACTIONS(1336), - [anon_sym_PLUS_PLUS] = ACTIONS(1336), - [anon_sym_SLASH] = ACTIONS(1336), - [anon_sym_mod] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(1336), - [anon_sym_PLUS] = ACTIONS(1336), - [anon_sym_bit_DASHshl] = ACTIONS(1336), - [anon_sym_bit_DASHshr] = ACTIONS(1336), - [anon_sym_EQ_EQ] = ACTIONS(1336), - [anon_sym_BANG_EQ] = ACTIONS(1336), - [anon_sym_LT2] = ACTIONS(1336), - [anon_sym_LT_EQ] = ACTIONS(1336), - [anon_sym_GT_EQ] = ACTIONS(1336), - [anon_sym_not_DASHin] = ACTIONS(1336), - [anon_sym_starts_DASHwith] = ACTIONS(1336), - [anon_sym_ends_DASHwith] = ACTIONS(1336), - [anon_sym_EQ_TILDE] = ACTIONS(1336), - [anon_sym_BANG_TILDE] = ACTIONS(1336), - [anon_sym_bit_DASHand] = ACTIONS(1336), - [anon_sym_bit_DASHxor] = ACTIONS(1336), - [anon_sym_bit_DASHor] = ACTIONS(1336), - [anon_sym_and] = ACTIONS(1336), - [anon_sym_xor] = ACTIONS(1336), - [anon_sym_or] = ACTIONS(1336), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1336), - [anon_sym_DOT_DOT_LT] = ACTIONS(1336), - [anon_sym_null] = ACTIONS(1336), - [anon_sym_true] = ACTIONS(1336), - [anon_sym_false] = ACTIONS(1336), - [aux_sym__val_number_decimal_token1] = ACTIONS(1336), - [aux_sym__val_number_decimal_token2] = ACTIONS(1336), - [anon_sym_DOT2] = ACTIONS(1336), - [aux_sym__val_number_decimal_token3] = ACTIONS(1336), - [aux_sym__val_number_token1] = ACTIONS(1336), - [aux_sym__val_number_token2] = ACTIONS(1336), - [aux_sym__val_number_token3] = ACTIONS(1336), - [aux_sym__val_number_token4] = ACTIONS(1336), - [aux_sym__val_number_token5] = ACTIONS(1336), - [aux_sym__val_number_token6] = ACTIONS(1336), - [anon_sym_0b] = ACTIONS(1336), - [anon_sym_0o] = ACTIONS(1336), - [anon_sym_0x] = ACTIONS(1336), - [sym_val_date] = ACTIONS(1336), - [anon_sym_DQUOTE] = ACTIONS(1336), - [sym__str_single_quotes] = ACTIONS(1336), - [sym__str_back_ticks] = ACTIONS(1336), - [sym__entry_separator] = ACTIONS(1338), - [anon_sym_err_GT] = ACTIONS(1336), - [anon_sym_out_GT] = ACTIONS(1336), - [anon_sym_e_GT] = ACTIONS(1336), - [anon_sym_o_GT] = ACTIONS(1336), - [anon_sym_err_PLUSout_GT] = ACTIONS(1336), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1336), - [anon_sym_o_PLUSe_GT] = ACTIONS(1336), - [anon_sym_e_PLUSo_GT] = ACTIONS(1336), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1336), - [anon_sym_POUND] = ACTIONS(113), + [2114] = { + [sym_comment] = STATE(2114), + [anon_sym_LBRACK] = ACTIONS(1289), + [anon_sym_COMMA] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1289), + [anon_sym_DOLLAR] = ACTIONS(1289), + [anon_sym_GT] = ACTIONS(1287), + [anon_sym_DASH] = ACTIONS(1287), + [anon_sym_in] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_RBRACE] = ACTIONS(1289), + [anon_sym__] = ACTIONS(1287), + [anon_sym_DOT_DOT] = ACTIONS(1287), + [anon_sym_STAR] = ACTIONS(1287), + [anon_sym_STAR_STAR] = ACTIONS(1289), + [anon_sym_PLUS_PLUS] = ACTIONS(1289), + [anon_sym_SLASH] = ACTIONS(1287), + [anon_sym_mod] = ACTIONS(1289), + [anon_sym_SLASH_SLASH] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1287), + [anon_sym_bit_DASHshl] = ACTIONS(1289), + [anon_sym_bit_DASHshr] = ACTIONS(1289), + [anon_sym_EQ_EQ] = ACTIONS(1289), + [anon_sym_BANG_EQ] = ACTIONS(1289), + [anon_sym_LT2] = ACTIONS(1287), + [anon_sym_LT_EQ] = ACTIONS(1289), + [anon_sym_GT_EQ] = ACTIONS(1289), + [anon_sym_not_DASHin] = ACTIONS(1289), + [anon_sym_starts_DASHwith] = ACTIONS(1289), + [anon_sym_ends_DASHwith] = ACTIONS(1289), + [anon_sym_EQ_TILDE] = ACTIONS(1289), + [anon_sym_BANG_TILDE] = ACTIONS(1289), + [anon_sym_bit_DASHand] = ACTIONS(1289), + [anon_sym_bit_DASHxor] = ACTIONS(1289), + [anon_sym_bit_DASHor] = ACTIONS(1289), + [anon_sym_and] = ACTIONS(1289), + [anon_sym_xor] = ACTIONS(1289), + [anon_sym_or] = ACTIONS(1289), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1289), + [anon_sym_DOT_DOT_LT] = ACTIONS(1289), + [anon_sym_null] = ACTIONS(1289), + [anon_sym_true] = ACTIONS(1289), + [anon_sym_false] = ACTIONS(1289), + [aux_sym__val_number_decimal_token1] = ACTIONS(1287), + [aux_sym__val_number_decimal_token2] = ACTIONS(1289), + [anon_sym_DOT2] = ACTIONS(1287), + [aux_sym__val_number_decimal_token3] = ACTIONS(1289), + [aux_sym__val_number_token1] = ACTIONS(1289), + [aux_sym__val_number_token2] = ACTIONS(1289), + [aux_sym__val_number_token3] = ACTIONS(1289), + [aux_sym__val_number_token4] = ACTIONS(1289), + [aux_sym__val_number_token5] = ACTIONS(1289), + [aux_sym__val_number_token6] = ACTIONS(1289), + [anon_sym_0b] = ACTIONS(1287), + [anon_sym_0o] = ACTIONS(1287), + [anon_sym_0x] = ACTIONS(1287), + [sym_val_date] = ACTIONS(1289), + [anon_sym_DQUOTE] = ACTIONS(1289), + [sym__str_single_quotes] = ACTIONS(1289), + [sym__str_back_ticks] = ACTIONS(1289), + [anon_sym_err_GT] = ACTIONS(1289), + [anon_sym_out_GT] = ACTIONS(1289), + [anon_sym_e_GT] = ACTIONS(1289), + [anon_sym_o_GT] = ACTIONS(1289), + [anon_sym_err_PLUSout_GT] = ACTIONS(1289), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1289), + [anon_sym_o_PLUSe_GT] = ACTIONS(1289), + [anon_sym_e_PLUSo_GT] = ACTIONS(1289), + [aux_sym_unquoted_token1] = ACTIONS(1287), + [anon_sym_POUND] = ACTIONS(3), }, - [1891] = { - [sym_comment] = STATE(1891), - [anon_sym_LBRACK] = ACTIONS(1350), - [anon_sym_COMMA] = ACTIONS(1350), - [anon_sym_RBRACK] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1350), - [anon_sym_DOLLAR] = ACTIONS(1350), - [anon_sym_GT] = ACTIONS(1350), - [anon_sym_DASH_DASH] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_in] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_DOT_DOT] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_STAR_STAR] = ACTIONS(1350), - [anon_sym_PLUS_PLUS] = ACTIONS(1350), - [anon_sym_SLASH] = ACTIONS(1350), - [anon_sym_mod] = ACTIONS(1350), - [anon_sym_SLASH_SLASH] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_bit_DASHshl] = ACTIONS(1350), - [anon_sym_bit_DASHshr] = ACTIONS(1350), - [anon_sym_EQ_EQ] = ACTIONS(1350), - [anon_sym_BANG_EQ] = ACTIONS(1350), - [anon_sym_LT2] = ACTIONS(1350), - [anon_sym_LT_EQ] = ACTIONS(1350), - [anon_sym_GT_EQ] = ACTIONS(1350), - [anon_sym_not_DASHin] = ACTIONS(1350), - [anon_sym_starts_DASHwith] = ACTIONS(1350), - [anon_sym_ends_DASHwith] = ACTIONS(1350), - [anon_sym_EQ_TILDE] = ACTIONS(1350), - [anon_sym_BANG_TILDE] = ACTIONS(1350), - [anon_sym_bit_DASHand] = ACTIONS(1350), - [anon_sym_bit_DASHxor] = ACTIONS(1350), - [anon_sym_bit_DASHor] = ACTIONS(1350), - [anon_sym_and] = ACTIONS(1350), - [anon_sym_xor] = ACTIONS(1350), - [anon_sym_or] = ACTIONS(1350), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1350), - [anon_sym_DOT_DOT_LT] = ACTIONS(1350), - [anon_sym_null] = ACTIONS(1350), - [anon_sym_true] = ACTIONS(1350), - [anon_sym_false] = ACTIONS(1350), - [aux_sym__val_number_decimal_token1] = ACTIONS(1350), - [aux_sym__val_number_decimal_token2] = ACTIONS(1350), - [anon_sym_DOT2] = ACTIONS(1350), - [aux_sym__val_number_decimal_token3] = ACTIONS(1350), - [aux_sym__val_number_token1] = ACTIONS(1350), - [aux_sym__val_number_token2] = ACTIONS(1350), - [aux_sym__val_number_token3] = ACTIONS(1350), - [aux_sym__val_number_token4] = ACTIONS(1350), - [aux_sym__val_number_token5] = ACTIONS(1350), - [aux_sym__val_number_token6] = ACTIONS(1350), - [anon_sym_0b] = ACTIONS(1350), - [anon_sym_0o] = ACTIONS(1350), - [anon_sym_0x] = ACTIONS(1350), - [sym_val_date] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [sym__str_single_quotes] = ACTIONS(1350), - [sym__str_back_ticks] = ACTIONS(1350), - [sym__entry_separator] = ACTIONS(1352), - [anon_sym_err_GT] = ACTIONS(1350), - [anon_sym_out_GT] = ACTIONS(1350), - [anon_sym_e_GT] = ACTIONS(1350), - [anon_sym_o_GT] = ACTIONS(1350), - [anon_sym_err_PLUSout_GT] = ACTIONS(1350), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1350), - [anon_sym_o_PLUSe_GT] = ACTIONS(1350), - [anon_sym_e_PLUSo_GT] = ACTIONS(1350), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1350), - [anon_sym_POUND] = ACTIONS(113), + [2115] = { + [sym_comment] = STATE(2115), + [anon_sym_LBRACK] = ACTIONS(5815), + [anon_sym_COMMA] = ACTIONS(5815), + [anon_sym_LPAREN] = ACTIONS(5815), + [anon_sym_DOLLAR] = ACTIONS(5815), + [anon_sym_GT] = ACTIONS(1237), + [anon_sym_DASH] = ACTIONS(5818), + [anon_sym_in] = ACTIONS(1237), + [anon_sym_LBRACE] = ACTIONS(5815), + [anon_sym_RBRACE] = ACTIONS(5815), + [anon_sym__] = ACTIONS(5818), + [anon_sym_DOT_DOT] = ACTIONS(5818), + [anon_sym_STAR] = ACTIONS(1237), + [anon_sym_STAR_STAR] = ACTIONS(1239), + [anon_sym_PLUS_PLUS] = ACTIONS(1239), + [anon_sym_SLASH] = ACTIONS(1237), + [anon_sym_mod] = ACTIONS(1239), + [anon_sym_SLASH_SLASH] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1237), + [anon_sym_bit_DASHshl] = ACTIONS(1239), + [anon_sym_bit_DASHshr] = ACTIONS(1239), + [anon_sym_EQ_EQ] = ACTIONS(1239), + [anon_sym_BANG_EQ] = ACTIONS(1239), + [anon_sym_LT2] = ACTIONS(1237), + [anon_sym_LT_EQ] = ACTIONS(1239), + [anon_sym_GT_EQ] = ACTIONS(1239), + [anon_sym_not_DASHin] = ACTIONS(1239), + [anon_sym_starts_DASHwith] = ACTIONS(1239), + [anon_sym_ends_DASHwith] = ACTIONS(1239), + [anon_sym_EQ_TILDE] = ACTIONS(1239), + [anon_sym_BANG_TILDE] = ACTIONS(1239), + [anon_sym_bit_DASHand] = ACTIONS(1239), + [anon_sym_bit_DASHxor] = ACTIONS(1239), + [anon_sym_bit_DASHor] = ACTIONS(1239), + [anon_sym_and] = ACTIONS(1239), + [anon_sym_xor] = ACTIONS(1239), + [anon_sym_or] = ACTIONS(1239), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5815), + [anon_sym_DOT_DOT_LT] = ACTIONS(5815), + [anon_sym_null] = ACTIONS(5815), + [anon_sym_true] = ACTIONS(5815), + [anon_sym_false] = ACTIONS(5815), + [aux_sym__val_number_decimal_token1] = ACTIONS(5818), + [aux_sym__val_number_decimal_token2] = ACTIONS(5815), + [anon_sym_DOT2] = ACTIONS(5818), + [aux_sym__val_number_decimal_token3] = ACTIONS(5815), + [aux_sym__val_number_token1] = ACTIONS(5815), + [aux_sym__val_number_token2] = ACTIONS(5815), + [aux_sym__val_number_token3] = ACTIONS(5815), + [aux_sym__val_number_token4] = ACTIONS(5815), + [aux_sym__val_number_token5] = ACTIONS(5815), + [aux_sym__val_number_token6] = ACTIONS(5815), + [anon_sym_0b] = ACTIONS(5818), + [anon_sym_0o] = ACTIONS(5818), + [anon_sym_0x] = ACTIONS(5818), + [sym_val_date] = ACTIONS(5815), + [anon_sym_DQUOTE] = ACTIONS(5815), + [sym__str_single_quotes] = ACTIONS(5815), + [sym__str_back_ticks] = ACTIONS(5815), + [anon_sym_err_GT] = ACTIONS(5815), + [anon_sym_out_GT] = ACTIONS(5815), + [anon_sym_e_GT] = ACTIONS(5815), + [anon_sym_o_GT] = ACTIONS(5815), + [anon_sym_err_PLUSout_GT] = ACTIONS(5815), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5815), + [anon_sym_o_PLUSe_GT] = ACTIONS(5815), + [anon_sym_e_PLUSo_GT] = ACTIONS(5815), + [aux_sym_unquoted_token1] = ACTIONS(5818), + [anon_sym_POUND] = ACTIONS(3), }, - [1892] = { - [sym_comment] = STATE(1892), - [anon_sym_export] = ACTIONS(1059), - [anon_sym_alias] = ACTIONS(1059), - [anon_sym_let] = ACTIONS(1059), - [anon_sym_let_DASHenv] = ACTIONS(1059), - [anon_sym_mut] = ACTIONS(1059), - [anon_sym_const] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [sym_cmd_identifier] = ACTIONS(1059), - [anon_sym_LF] = ACTIONS(1061), - [anon_sym_def] = ACTIONS(1059), - [anon_sym_export_DASHenv] = ACTIONS(1059), - [anon_sym_extern] = ACTIONS(1059), - [anon_sym_module] = ACTIONS(1059), - [anon_sym_use] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_error] = ACTIONS(1059), - [anon_sym_DASH_DASH] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_break] = ACTIONS(1059), - [anon_sym_continue] = ACTIONS(1059), - [anon_sym_for] = ACTIONS(1059), - [anon_sym_loop] = ACTIONS(1059), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_do] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1059), - [anon_sym_match] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(1059), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_try] = ACTIONS(1059), - [anon_sym_return] = ACTIONS(1059), - [anon_sym_source] = ACTIONS(1059), - [anon_sym_source_DASHenv] = ACTIONS(1059), - [anon_sym_register] = ACTIONS(1059), - [anon_sym_hide] = ACTIONS(1059), - [anon_sym_hide_DASHenv] = ACTIONS(1059), - [anon_sym_overlay] = ACTIONS(1059), - [anon_sym_as] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(1059), - [anon_sym_not] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1059), - [anon_sym_DOT_DOT_LT] = ACTIONS(1059), - [anon_sym_null] = ACTIONS(1059), - [anon_sym_true] = ACTIONS(1059), - [anon_sym_false] = ACTIONS(1059), - [aux_sym__val_number_decimal_token1] = ACTIONS(1059), - [aux_sym__val_number_decimal_token2] = ACTIONS(1059), - [anon_sym_DOT2] = ACTIONS(1059), - [aux_sym__val_number_decimal_token3] = ACTIONS(1059), - [aux_sym__val_number_token1] = ACTIONS(1059), - [aux_sym__val_number_token2] = ACTIONS(1059), - [aux_sym__val_number_token3] = ACTIONS(1059), - [aux_sym__val_number_token4] = ACTIONS(1059), - [aux_sym__val_number_token5] = ACTIONS(1059), - [aux_sym__val_number_token6] = ACTIONS(1059), - [anon_sym_0b] = ACTIONS(1059), - [anon_sym_0o] = ACTIONS(1059), - [anon_sym_0x] = ACTIONS(1059), - [sym_val_date] = ACTIONS(1059), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym__str_single_quotes] = ACTIONS(1059), - [sym__str_back_ticks] = ACTIONS(1059), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1059), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1059), - [anon_sym_CARET] = ACTIONS(1059), + [2116] = { + [sym__expression] = STATE(7142), + [sym_expr_unary] = STATE(5677), + [sym__expr_unary_minus] = STATE(5679), + [sym_expr_binary] = STATE(5677), + [sym__expr_binary_expression] = STATE(6377), + [sym_expr_parenthesized] = STATE(4919), + [sym_val_range] = STATE(8295), + [sym__value] = STATE(5677), + [sym_val_nothing] = STATE(5612), + [sym_val_bool] = STATE(5612), + [sym_val_variable] = STATE(4867), + [sym__var] = STATE(4310), + [sym_val_number] = STATE(5612), + [sym__val_number_decimal] = STATE(4408), + [sym__val_number] = STATE(5661), + [sym_val_duration] = STATE(5612), + [sym_val_filesize] = STATE(5612), + [sym_val_binary] = STATE(5612), + [sym_val_string] = STATE(5612), + [sym__str_double_quotes] = STATE(5733), + [sym_val_interpolated] = STATE(5612), + [sym__inter_single_quotes] = STATE(5590), + [sym__inter_double_quotes] = STATE(5591), + [sym_val_list] = STATE(5612), + [sym_val_record] = STATE(5612), + [sym_val_table] = STATE(5612), + [sym_val_closure] = STATE(5612), + [sym__flag] = STATE(2126), + [sym_short_flag] = STATE(4939), + [sym_long_flag] = STATE(4939), + [sym_long_flag_equals_value] = STATE(4865), + [sym_comment] = STATE(2116), + [ts_builtin_sym_end] = ACTIONS(5597), + [anon_sym_SEMI] = ACTIONS(5595), + [anon_sym_LF] = ACTIONS(5597), + [anon_sym_LBRACK] = ACTIONS(5667), + [anon_sym_LPAREN] = ACTIONS(5669), + [anon_sym_PIPE] = ACTIONS(5595), + [anon_sym_DOLLAR] = ACTIONS(2667), + [anon_sym_DASH_DASH] = ACTIONS(5671), + [anon_sym_DASH] = ACTIONS(5673), + [anon_sym_LBRACE] = ACTIONS(5675), + [anon_sym_DOT_DOT] = ACTIONS(5677), + [anon_sym_not] = ACTIONS(5679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5681), + [anon_sym_DOT_DOT_LT] = ACTIONS(5681), + [anon_sym_null] = ACTIONS(5683), + [anon_sym_true] = ACTIONS(5685), + [anon_sym_false] = ACTIONS(5685), + [aux_sym__val_number_decimal_token1] = ACTIONS(5687), + [aux_sym__val_number_decimal_token2] = ACTIONS(5687), + [anon_sym_DOT2] = ACTIONS(5689), + [aux_sym__val_number_decimal_token3] = ACTIONS(5691), + [aux_sym__val_number_token1] = ACTIONS(5693), + [aux_sym__val_number_token2] = ACTIONS(5693), + [aux_sym__val_number_token3] = ACTIONS(5693), + [aux_sym__val_number_token4] = ACTIONS(5693), + [aux_sym__val_number_token5] = ACTIONS(5693), + [aux_sym__val_number_token6] = ACTIONS(5693), + [anon_sym_0b] = ACTIONS(2695), + [anon_sym_0o] = ACTIONS(2697), + [anon_sym_0x] = ACTIONS(2697), + [sym_val_date] = ACTIONS(5695), + [anon_sym_DQUOTE] = ACTIONS(5697), + [sym__str_single_quotes] = ACTIONS(5699), + [sym__str_back_ticks] = ACTIONS(5699), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5703), [anon_sym_POUND] = ACTIONS(113), }, - [1893] = { - [sym_comment] = STATE(1893), - [anon_sym_export] = ACTIONS(1063), - [anon_sym_alias] = ACTIONS(1063), - [anon_sym_let] = ACTIONS(1063), - [anon_sym_let_DASHenv] = ACTIONS(1063), - [anon_sym_mut] = ACTIONS(1063), - [anon_sym_const] = ACTIONS(1063), - [anon_sym_SEMI] = ACTIONS(1063), - [sym_cmd_identifier] = ACTIONS(1063), - [anon_sym_LF] = ACTIONS(1065), - [anon_sym_def] = ACTIONS(1063), - [anon_sym_export_DASHenv] = ACTIONS(1063), - [anon_sym_extern] = ACTIONS(1063), - [anon_sym_module] = ACTIONS(1063), - [anon_sym_use] = ACTIONS(1063), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_RPAREN] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_error] = ACTIONS(1063), - [anon_sym_DASH_DASH] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_break] = ACTIONS(1063), - [anon_sym_continue] = ACTIONS(1063), - [anon_sym_for] = ACTIONS(1063), - [anon_sym_loop] = ACTIONS(1063), - [anon_sym_while] = ACTIONS(1063), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_if] = ACTIONS(1063), - [anon_sym_match] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_RBRACE] = ACTIONS(1063), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1063), - [anon_sym_return] = ACTIONS(1063), - [anon_sym_source] = ACTIONS(1063), - [anon_sym_source_DASHenv] = ACTIONS(1063), - [anon_sym_register] = ACTIONS(1063), - [anon_sym_hide] = ACTIONS(1063), - [anon_sym_hide_DASHenv] = ACTIONS(1063), - [anon_sym_overlay] = ACTIONS(1063), - [anon_sym_as] = ACTIONS(1063), - [anon_sym_where] = ACTIONS(1063), - [anon_sym_not] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1063), - [anon_sym_DOT_DOT_LT] = ACTIONS(1063), - [anon_sym_null] = ACTIONS(1063), - [anon_sym_true] = ACTIONS(1063), - [anon_sym_false] = ACTIONS(1063), - [aux_sym__val_number_decimal_token1] = ACTIONS(1063), - [aux_sym__val_number_decimal_token2] = ACTIONS(1063), - [anon_sym_DOT2] = ACTIONS(1063), - [aux_sym__val_number_decimal_token3] = ACTIONS(1063), - [aux_sym__val_number_token1] = ACTIONS(1063), - [aux_sym__val_number_token2] = ACTIONS(1063), - [aux_sym__val_number_token3] = ACTIONS(1063), - [aux_sym__val_number_token4] = ACTIONS(1063), - [aux_sym__val_number_token5] = ACTIONS(1063), - [aux_sym__val_number_token6] = ACTIONS(1063), - [anon_sym_0b] = ACTIONS(1063), - [anon_sym_0o] = ACTIONS(1063), - [anon_sym_0x] = ACTIONS(1063), - [sym_val_date] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [sym__str_single_quotes] = ACTIONS(1063), - [sym__str_back_ticks] = ACTIONS(1063), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1063), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1063), - [anon_sym_CARET] = ACTIONS(1063), + [2117] = { + [sym_comment] = STATE(2117), + [anon_sym_export] = ACTIONS(1265), + [anon_sym_alias] = ACTIONS(1265), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_let_DASHenv] = ACTIONS(1265), + [anon_sym_mut] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_SEMI] = ACTIONS(1265), + [sym_cmd_identifier] = ACTIONS(1265), + [anon_sym_LF] = ACTIONS(1267), + [anon_sym_def] = ACTIONS(1265), + [anon_sym_export_DASHenv] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_module] = ACTIONS(1265), + [anon_sym_use] = ACTIONS(1265), + [anon_sym_LBRACK] = ACTIONS(1265), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_RPAREN] = ACTIONS(1265), + [anon_sym_DOLLAR] = ACTIONS(1265), + [anon_sym_error] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1265), + [anon_sym_break] = ACTIONS(1265), + [anon_sym_continue] = ACTIONS(1265), + [anon_sym_for] = ACTIONS(1265), + [anon_sym_loop] = ACTIONS(1265), + [anon_sym_while] = ACTIONS(1265), + [anon_sym_do] = ACTIONS(1265), + [anon_sym_if] = ACTIONS(1265), + [anon_sym_match] = ACTIONS(1265), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_RBRACE] = ACTIONS(1265), + [anon_sym_DOT_DOT] = ACTIONS(1265), + [anon_sym_try] = ACTIONS(1265), + [anon_sym_return] = ACTIONS(1265), + [anon_sym_source] = ACTIONS(1265), + [anon_sym_source_DASHenv] = ACTIONS(1265), + [anon_sym_register] = ACTIONS(1265), + [anon_sym_hide] = ACTIONS(1265), + [anon_sym_hide_DASHenv] = ACTIONS(1265), + [anon_sym_overlay] = ACTIONS(1265), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_where] = ACTIONS(1265), + [anon_sym_not] = ACTIONS(1265), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1265), + [anon_sym_DOT_DOT_LT] = ACTIONS(1265), + [anon_sym_null] = ACTIONS(1265), + [anon_sym_true] = ACTIONS(1265), + [anon_sym_false] = ACTIONS(1265), + [aux_sym__val_number_decimal_token1] = ACTIONS(1265), + [aux_sym__val_number_decimal_token2] = ACTIONS(1265), + [anon_sym_DOT2] = ACTIONS(1265), + [aux_sym__val_number_decimal_token3] = ACTIONS(1265), + [aux_sym__val_number_token1] = ACTIONS(1265), + [aux_sym__val_number_token2] = ACTIONS(1265), + [aux_sym__val_number_token3] = ACTIONS(1265), + [aux_sym__val_number_token4] = ACTIONS(1265), + [aux_sym__val_number_token5] = ACTIONS(1265), + [aux_sym__val_number_token6] = ACTIONS(1265), + [anon_sym_0b] = ACTIONS(1265), + [anon_sym_0o] = ACTIONS(1265), + [anon_sym_0x] = ACTIONS(1265), + [sym_val_date] = ACTIONS(1265), + [anon_sym_DQUOTE] = ACTIONS(1265), + [sym__str_single_quotes] = ACTIONS(1265), + [sym__str_back_ticks] = ACTIONS(1265), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1265), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(1265), [anon_sym_POUND] = ACTIONS(113), }, - [1894] = { - [sym_comment] = STATE(1894), - [anon_sym_LBRACK] = ACTIONS(1160), - [anon_sym_COMMA] = ACTIONS(1158), - [anon_sym_LPAREN] = ACTIONS(1160), - [anon_sym_DOLLAR] = ACTIONS(1158), - [anon_sym_GT] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_in] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1160), - [anon_sym_RBRACE] = ACTIONS(1160), - [anon_sym__] = ACTIONS(1158), - [anon_sym_DOT_DOT] = ACTIONS(1158), - [anon_sym_STAR] = ACTIONS(1158), - [anon_sym_STAR_STAR] = ACTIONS(1158), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_SLASH] = ACTIONS(1158), - [anon_sym_mod] = ACTIONS(1158), - [anon_sym_SLASH_SLASH] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1158), - [anon_sym_bit_DASHshl] = ACTIONS(1158), - [anon_sym_bit_DASHshr] = ACTIONS(1158), - [anon_sym_EQ_EQ] = ACTIONS(1158), - [anon_sym_BANG_EQ] = ACTIONS(1158), - [anon_sym_LT2] = ACTIONS(1158), - [anon_sym_LT_EQ] = ACTIONS(1158), - [anon_sym_GT_EQ] = ACTIONS(1158), - [anon_sym_not_DASHin] = ACTIONS(1158), - [anon_sym_starts_DASHwith] = ACTIONS(1158), - [anon_sym_ends_DASHwith] = ACTIONS(1158), - [anon_sym_EQ_TILDE] = ACTIONS(1158), - [anon_sym_BANG_TILDE] = ACTIONS(1158), - [anon_sym_bit_DASHand] = ACTIONS(1158), - [anon_sym_bit_DASHxor] = ACTIONS(1158), - [anon_sym_bit_DASHor] = ACTIONS(1158), - [anon_sym_and] = ACTIONS(1158), - [anon_sym_xor] = ACTIONS(1158), - [anon_sym_or] = ACTIONS(1158), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1158), - [anon_sym_DOT_DOT_LT] = ACTIONS(1158), - [anon_sym_null] = ACTIONS(1158), - [anon_sym_true] = ACTIONS(1158), - [anon_sym_false] = ACTIONS(1158), - [aux_sym__val_number_decimal_token1] = ACTIONS(1158), - [aux_sym__val_number_decimal_token2] = ACTIONS(1158), - [anon_sym_DOT2] = ACTIONS(1158), - [aux_sym__val_number_decimal_token3] = ACTIONS(1158), - [aux_sym__val_number_token1] = ACTIONS(1158), - [aux_sym__val_number_token2] = ACTIONS(1158), - [aux_sym__val_number_token3] = ACTIONS(1158), - [aux_sym__val_number_token4] = ACTIONS(1158), - [aux_sym__val_number_token5] = ACTIONS(1158), - [aux_sym__val_number_token6] = ACTIONS(1158), - [anon_sym_0b] = ACTIONS(1158), - [anon_sym_0o] = ACTIONS(1158), - [anon_sym_0x] = ACTIONS(1158), - [sym_val_date] = ACTIONS(1158), - [anon_sym_DQUOTE] = ACTIONS(1160), - [sym__str_single_quotes] = ACTIONS(1160), - [sym__str_back_ticks] = ACTIONS(1160), - [anon_sym_err_GT] = ACTIONS(1158), - [anon_sym_out_GT] = ACTIONS(1158), - [anon_sym_e_GT] = ACTIONS(1158), - [anon_sym_o_GT] = ACTIONS(1158), - [anon_sym_err_PLUSout_GT] = ACTIONS(1158), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1158), - [anon_sym_o_PLUSe_GT] = ACTIONS(1158), - [anon_sym_e_PLUSo_GT] = ACTIONS(1158), - [aux_sym_unquoted_token1] = ACTIONS(1158), - [aux_sym_unquoted_token6] = ACTIONS(1284), + [2118] = { + [sym__expression] = STATE(7219), + [sym_expr_unary] = STATE(5677), + [sym__expr_unary_minus] = STATE(5679), + [sym_expr_binary] = STATE(5677), + [sym__expr_binary_expression] = STATE(6377), + [sym_expr_parenthesized] = STATE(4919), + [sym_val_range] = STATE(8295), + [sym__value] = STATE(5677), + [sym_val_nothing] = STATE(5612), + [sym_val_bool] = STATE(5612), + [sym_val_variable] = STATE(4867), + [sym__var] = STATE(4310), + [sym_val_number] = STATE(5612), + [sym__val_number_decimal] = STATE(4408), + [sym__val_number] = STATE(5661), + [sym_val_duration] = STATE(5612), + [sym_val_filesize] = STATE(5612), + [sym_val_binary] = STATE(5612), + [sym_val_string] = STATE(5612), + [sym__str_double_quotes] = STATE(5733), + [sym_val_interpolated] = STATE(5612), + [sym__inter_single_quotes] = STATE(5590), + [sym__inter_double_quotes] = STATE(5591), + [sym_val_list] = STATE(5612), + [sym_val_record] = STATE(5612), + [sym_val_table] = STATE(5612), + [sym_val_closure] = STATE(5612), + [sym__flag] = STATE(2030), + [sym_short_flag] = STATE(4939), + [sym_long_flag] = STATE(4939), + [sym_long_flag_equals_value] = STATE(4865), + [sym_comment] = STATE(2118), + [ts_builtin_sym_end] = ACTIONS(4923), + [anon_sym_SEMI] = ACTIONS(4921), + [anon_sym_LF] = ACTIONS(4923), + [anon_sym_LBRACK] = ACTIONS(5667), + [anon_sym_LPAREN] = ACTIONS(5669), + [anon_sym_PIPE] = ACTIONS(4921), + [anon_sym_DOLLAR] = ACTIONS(2667), + [anon_sym_DASH_DASH] = ACTIONS(5671), + [anon_sym_DASH] = ACTIONS(5673), + [anon_sym_LBRACE] = ACTIONS(5675), + [anon_sym_DOT_DOT] = ACTIONS(5677), + [anon_sym_not] = ACTIONS(5679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5681), + [anon_sym_DOT_DOT_LT] = ACTIONS(5681), + [anon_sym_null] = ACTIONS(5683), + [anon_sym_true] = ACTIONS(5685), + [anon_sym_false] = ACTIONS(5685), + [aux_sym__val_number_decimal_token1] = ACTIONS(5687), + [aux_sym__val_number_decimal_token2] = ACTIONS(5687), + [anon_sym_DOT2] = ACTIONS(5689), + [aux_sym__val_number_decimal_token3] = ACTIONS(5691), + [aux_sym__val_number_token1] = ACTIONS(5693), + [aux_sym__val_number_token2] = ACTIONS(5693), + [aux_sym__val_number_token3] = ACTIONS(5693), + [aux_sym__val_number_token4] = ACTIONS(5693), + [aux_sym__val_number_token5] = ACTIONS(5693), + [aux_sym__val_number_token6] = ACTIONS(5693), + [anon_sym_0b] = ACTIONS(2695), + [anon_sym_0o] = ACTIONS(2697), + [anon_sym_0x] = ACTIONS(2697), + [sym_val_date] = ACTIONS(5695), + [anon_sym_DQUOTE] = ACTIONS(5697), + [sym__str_single_quotes] = ACTIONS(5699), + [sym__str_back_ticks] = ACTIONS(5699), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5703), [anon_sym_POUND] = ACTIONS(113), }, - [1895] = { - [sym_comment] = STATE(1895), - [anon_sym_LBRACK] = ACTIONS(961), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(961), - [anon_sym_DOLLAR] = ACTIONS(961), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(961), - [anon_sym__] = ACTIONS(959), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(961), - [anon_sym_SLASH_SLASH] = ACTIONS(961), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(961), - [anon_sym_bit_DASHshr] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(961), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_not_DASHin] = ACTIONS(961), - [anon_sym_starts_DASHwith] = ACTIONS(961), - [anon_sym_ends_DASHwith] = ACTIONS(961), - [anon_sym_EQ_TILDE] = ACTIONS(961), - [anon_sym_BANG_TILDE] = ACTIONS(961), - [anon_sym_bit_DASHand] = ACTIONS(961), - [anon_sym_bit_DASHxor] = ACTIONS(961), - [anon_sym_bit_DASHor] = ACTIONS(961), - [anon_sym_and] = ACTIONS(961), - [anon_sym_xor] = ACTIONS(961), - [anon_sym_or] = ACTIONS(961), - [anon_sym_DOT_DOT_EQ] = ACTIONS(961), - [anon_sym_DOT_DOT_LT] = ACTIONS(961), - [anon_sym_null] = ACTIONS(961), - [anon_sym_true] = ACTIONS(961), - [anon_sym_false] = ACTIONS(961), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(961), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(961), - [aux_sym__val_number_token1] = ACTIONS(961), - [aux_sym__val_number_token2] = ACTIONS(961), - [aux_sym__val_number_token3] = ACTIONS(961), - [aux_sym__val_number_token4] = ACTIONS(961), - [aux_sym__val_number_token5] = ACTIONS(961), - [aux_sym__val_number_token6] = ACTIONS(961), - [anon_sym_0b] = ACTIONS(959), - [anon_sym_0o] = ACTIONS(959), - [anon_sym_0x] = ACTIONS(959), - [sym_val_date] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(961), - [sym__str_single_quotes] = ACTIONS(961), - [sym__str_back_ticks] = ACTIONS(961), - [anon_sym_err_GT] = ACTIONS(961), - [anon_sym_out_GT] = ACTIONS(961), - [anon_sym_e_GT] = ACTIONS(961), - [anon_sym_o_GT] = ACTIONS(961), - [anon_sym_err_PLUSout_GT] = ACTIONS(961), - [anon_sym_out_PLUSerr_GT] = ACTIONS(961), - [anon_sym_o_PLUSe_GT] = ACTIONS(961), - [anon_sym_e_PLUSo_GT] = ACTIONS(961), - [aux_sym_unquoted_token1] = ACTIONS(959), - [aux_sym_unquoted_token5] = ACTIONS(2905), + [2119] = { + [sym_comment] = STATE(2119), + [anon_sym_LBRACK] = ACTIONS(1209), + [anon_sym_COMMA] = ACTIONS(1209), + [anon_sym_RBRACK] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_DOLLAR] = ACTIONS(1209), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_DASH_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_in] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_STAR_STAR] = ACTIONS(1209), + [anon_sym_PLUS_PLUS] = ACTIONS(1209), + [anon_sym_SLASH] = ACTIONS(1139), + [anon_sym_mod] = ACTIONS(1209), + [anon_sym_SLASH_SLASH] = ACTIONS(1209), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_bit_DASHshl] = ACTIONS(1209), + [anon_sym_bit_DASHshr] = ACTIONS(1209), + [anon_sym_EQ_EQ] = ACTIONS(1209), + [anon_sym_BANG_EQ] = ACTIONS(1209), + [anon_sym_LT2] = ACTIONS(1139), + [anon_sym_LT_EQ] = ACTIONS(1209), + [anon_sym_GT_EQ] = ACTIONS(1209), + [anon_sym_not_DASHin] = ACTIONS(1209), + [anon_sym_starts_DASHwith] = ACTIONS(1209), + [anon_sym_ends_DASHwith] = ACTIONS(1209), + [anon_sym_EQ_TILDE] = ACTIONS(1209), + [anon_sym_BANG_TILDE] = ACTIONS(1209), + [anon_sym_bit_DASHand] = ACTIONS(1209), + [anon_sym_bit_DASHxor] = ACTIONS(1209), + [anon_sym_bit_DASHor] = ACTIONS(1209), + [anon_sym_and] = ACTIONS(1209), + [anon_sym_xor] = ACTIONS(1209), + [anon_sym_or] = ACTIONS(1209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1209), + [anon_sym_DOT_DOT_LT] = ACTIONS(1209), + [anon_sym_null] = ACTIONS(1209), + [anon_sym_true] = ACTIONS(1209), + [anon_sym_false] = ACTIONS(1209), + [aux_sym__val_number_decimal_token1] = ACTIONS(1139), + [aux_sym__val_number_decimal_token2] = ACTIONS(1209), + [anon_sym_DOT2] = ACTIONS(1139), + [aux_sym__val_number_decimal_token3] = ACTIONS(1209), + [aux_sym__val_number_token1] = ACTIONS(1209), + [aux_sym__val_number_token2] = ACTIONS(1209), + [aux_sym__val_number_token3] = ACTIONS(1209), + [aux_sym__val_number_token4] = ACTIONS(1209), + [aux_sym__val_number_token5] = ACTIONS(1209), + [aux_sym__val_number_token6] = ACTIONS(1209), + [anon_sym_0b] = ACTIONS(1139), + [anon_sym_0o] = ACTIONS(1139), + [anon_sym_0x] = ACTIONS(1139), + [sym_val_date] = ACTIONS(1209), + [anon_sym_DQUOTE] = ACTIONS(1209), + [sym__str_single_quotes] = ACTIONS(1209), + [sym__str_back_ticks] = ACTIONS(1209), + [anon_sym_err_GT] = ACTIONS(1209), + [anon_sym_out_GT] = ACTIONS(1209), + [anon_sym_e_GT] = ACTIONS(1209), + [anon_sym_o_GT] = ACTIONS(1209), + [anon_sym_err_PLUSout_GT] = ACTIONS(1209), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1209), + [anon_sym_o_PLUSe_GT] = ACTIONS(1209), + [anon_sym_e_PLUSo_GT] = ACTIONS(1209), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1139), [anon_sym_POUND] = ACTIONS(3), }, - [1896] = { - [sym__expression] = STATE(7503), - [sym_expr_unary] = STATE(5715), - [sym__expr_unary_minus] = STATE(5723), - [sym_expr_binary] = STATE(5715), - [sym__expr_binary_expression] = STATE(6788), - [sym_expr_parenthesized] = STATE(5176), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(5715), - [sym_val_nothing] = STATE(5705), - [sym_val_bool] = STATE(5705), - [sym_val_variable] = STATE(5170), - [sym__var] = STATE(4674), - [sym_val_number] = STATE(5705), - [sym__val_number_decimal] = STATE(4718), - [sym__val_number] = STATE(5875), - [sym_val_duration] = STATE(5705), - [sym_val_filesize] = STATE(5705), - [sym_val_binary] = STATE(5705), - [sym_val_string] = STATE(5705), - [sym__str_double_quotes] = STATE(5788), - [sym_val_interpolated] = STATE(5705), - [sym__inter_single_quotes] = STATE(5899), - [sym__inter_double_quotes] = STATE(5903), - [sym_val_list] = STATE(5705), - [sym_val_record] = STATE(5705), - [sym_val_table] = STATE(5705), - [sym_val_closure] = STATE(5705), - [sym__flag] = STATE(1919), - [sym_short_flag] = STATE(5044), - [sym_long_flag] = STATE(5044), - [sym_long_flag_equals_value] = STATE(5143), - [sym_comment] = STATE(1896), - [anon_sym_SEMI] = ACTIONS(5367), - [anon_sym_LF] = ACTIONS(5369), - [anon_sym_LBRACK] = ACTIONS(5371), - [anon_sym_LPAREN] = ACTIONS(5373), - [anon_sym_RPAREN] = ACTIONS(5367), - [anon_sym_PIPE] = ACTIONS(5367), - [anon_sym_DOLLAR] = ACTIONS(3317), - [anon_sym_DASH_DASH] = ACTIONS(5375), - [anon_sym_DASH] = ACTIONS(5377), - [anon_sym_LBRACE] = ACTIONS(5379), - [anon_sym_RBRACE] = ACTIONS(5367), - [anon_sym_DOT_DOT] = ACTIONS(5381), - [anon_sym_not] = ACTIONS(5383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5385), - [anon_sym_DOT_DOT_LT] = ACTIONS(5385), - [anon_sym_null] = ACTIONS(5387), - [anon_sym_true] = ACTIONS(5389), - [anon_sym_false] = ACTIONS(5389), - [aux_sym__val_number_decimal_token1] = ACTIONS(5391), - [aux_sym__val_number_decimal_token2] = ACTIONS(5391), - [anon_sym_DOT2] = ACTIONS(5393), - [aux_sym__val_number_decimal_token3] = ACTIONS(5395), - [aux_sym__val_number_token1] = ACTIONS(5397), - [aux_sym__val_number_token2] = ACTIONS(5397), - [aux_sym__val_number_token3] = ACTIONS(5397), - [aux_sym__val_number_token4] = ACTIONS(5397), - [aux_sym__val_number_token5] = ACTIONS(5397), - [aux_sym__val_number_token6] = ACTIONS(5397), - [anon_sym_0b] = ACTIONS(3345), - [anon_sym_0o] = ACTIONS(3347), - [anon_sym_0x] = ACTIONS(3347), - [sym_val_date] = ACTIONS(5399), - [anon_sym_DQUOTE] = ACTIONS(5401), - [sym__str_single_quotes] = ACTIONS(5403), - [sym__str_back_ticks] = ACTIONS(5403), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5405), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5407), + [2120] = { + [sym_block] = STATE(2336), + [sym_comment] = STATE(2120), + [anon_sym_export] = ACTIONS(5821), + [anon_sym_alias] = ACTIONS(5821), + [anon_sym_let] = ACTIONS(5821), + [anon_sym_let_DASHenv] = ACTIONS(5821), + [anon_sym_mut] = ACTIONS(5821), + [anon_sym_const] = ACTIONS(5821), + [anon_sym_SEMI] = ACTIONS(5821), + [sym_cmd_identifier] = ACTIONS(5821), + [anon_sym_LF] = ACTIONS(5823), + [anon_sym_def] = ACTIONS(5821), + [anon_sym_export_DASHenv] = ACTIONS(5821), + [anon_sym_extern] = ACTIONS(5821), + [anon_sym_module] = ACTIONS(5821), + [anon_sym_use] = ACTIONS(5821), + [anon_sym_LBRACK] = ACTIONS(5821), + [anon_sym_LPAREN] = ACTIONS(5821), + [anon_sym_RPAREN] = ACTIONS(5821), + [anon_sym_DOLLAR] = ACTIONS(5821), + [anon_sym_error] = ACTIONS(5821), + [anon_sym_DASH] = ACTIONS(5821), + [anon_sym_break] = ACTIONS(5821), + [anon_sym_continue] = ACTIONS(5821), + [anon_sym_for] = ACTIONS(5821), + [anon_sym_loop] = ACTIONS(5821), + [anon_sym_while] = ACTIONS(5821), + [anon_sym_do] = ACTIONS(5821), + [anon_sym_if] = ACTIONS(5821), + [anon_sym_match] = ACTIONS(5821), + [anon_sym_LBRACE] = ACTIONS(5825), + [anon_sym_RBRACE] = ACTIONS(5821), + [anon_sym_DOT_DOT] = ACTIONS(5821), + [anon_sym_try] = ACTIONS(5821), + [anon_sym_return] = ACTIONS(5821), + [anon_sym_source] = ACTIONS(5821), + [anon_sym_source_DASHenv] = ACTIONS(5821), + [anon_sym_register] = ACTIONS(5821), + [anon_sym_hide] = ACTIONS(5821), + [anon_sym_hide_DASHenv] = ACTIONS(5821), + [anon_sym_overlay] = ACTIONS(5821), + [anon_sym_where] = ACTIONS(5821), + [anon_sym_not] = ACTIONS(5821), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5821), + [anon_sym_DOT_DOT_LT] = ACTIONS(5821), + [anon_sym_null] = ACTIONS(5821), + [anon_sym_true] = ACTIONS(5821), + [anon_sym_false] = ACTIONS(5821), + [aux_sym__val_number_decimal_token1] = ACTIONS(5821), + [aux_sym__val_number_decimal_token2] = ACTIONS(5821), + [anon_sym_DOT2] = ACTIONS(5821), + [aux_sym__val_number_decimal_token3] = ACTIONS(5821), + [aux_sym__val_number_token1] = ACTIONS(5821), + [aux_sym__val_number_token2] = ACTIONS(5821), + [aux_sym__val_number_token3] = ACTIONS(5821), + [aux_sym__val_number_token4] = ACTIONS(5821), + [aux_sym__val_number_token5] = ACTIONS(5821), + [aux_sym__val_number_token6] = ACTIONS(5821), + [anon_sym_0b] = ACTIONS(5821), + [anon_sym_0o] = ACTIONS(5821), + [anon_sym_0x] = ACTIONS(5821), + [sym_val_date] = ACTIONS(5821), + [anon_sym_DQUOTE] = ACTIONS(5821), + [sym__str_single_quotes] = ACTIONS(5821), + [sym__str_back_ticks] = ACTIONS(5821), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5821), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5821), + [anon_sym_CARET] = ACTIONS(5821), [anon_sym_POUND] = ACTIONS(113), }, - [1897] = { - [sym_comment] = STATE(1897), - [anon_sym_LBRACK] = ACTIONS(1249), + [2121] = { + [sym_comment] = STATE(2121), + [anon_sym_LBRACK] = ACTIONS(1247), [anon_sym_COMMA] = ACTIONS(1247), - [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RBRACK] = ACTIONS(1247), + [anon_sym_LPAREN] = ACTIONS(1247), [anon_sym_DOLLAR] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1247), - [anon_sym_in] = ACTIONS(1247), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_RBRACE] = ACTIONS(1249), - [anon_sym__] = ACTIONS(1247), - [anon_sym_DOT_DOT] = ACTIONS(1247), - [anon_sym_STAR] = ACTIONS(1247), + [anon_sym_GT] = ACTIONS(1245), + [anon_sym_DASH_DASH] = ACTIONS(1247), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_in] = ACTIONS(1245), + [anon_sym_LBRACE] = ACTIONS(1247), + [anon_sym_DOT_DOT] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(1245), [anon_sym_STAR_STAR] = ACTIONS(1247), [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), + [anon_sym_SLASH] = ACTIONS(1245), [anon_sym_mod] = ACTIONS(1247), [anon_sym_SLASH_SLASH] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(1245), [anon_sym_bit_DASHshl] = ACTIONS(1247), [anon_sym_bit_DASHshr] = ACTIONS(1247), [anon_sym_EQ_EQ] = ACTIONS(1247), [anon_sym_BANG_EQ] = ACTIONS(1247), - [anon_sym_LT2] = ACTIONS(1247), + [anon_sym_LT2] = ACTIONS(1245), [anon_sym_LT_EQ] = ACTIONS(1247), [anon_sym_GT_EQ] = ACTIONS(1247), [anon_sym_not_DASHin] = ACTIONS(1247), @@ -263459,9 +269313,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(1247), [anon_sym_true] = ACTIONS(1247), [anon_sym_false] = ACTIONS(1247), - [aux_sym__val_number_decimal_token1] = ACTIONS(1247), + [aux_sym__val_number_decimal_token1] = ACTIONS(1245), [aux_sym__val_number_decimal_token2] = ACTIONS(1247), - [anon_sym_DOT2] = ACTIONS(1247), + [anon_sym_DOT2] = ACTIONS(1245), [aux_sym__val_number_decimal_token3] = ACTIONS(1247), [aux_sym__val_number_token1] = ACTIONS(1247), [aux_sym__val_number_token2] = ACTIONS(1247), @@ -263469,13 +269323,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token4] = ACTIONS(1247), [aux_sym__val_number_token5] = ACTIONS(1247), [aux_sym__val_number_token6] = ACTIONS(1247), - [anon_sym_0b] = ACTIONS(1247), - [anon_sym_0o] = ACTIONS(1247), - [anon_sym_0x] = ACTIONS(1247), + [anon_sym_0b] = ACTIONS(1245), + [anon_sym_0o] = ACTIONS(1245), + [anon_sym_0x] = ACTIONS(1245), [sym_val_date] = ACTIONS(1247), - [anon_sym_DQUOTE] = ACTIONS(1249), - [sym__str_single_quotes] = ACTIONS(1249), - [sym__str_back_ticks] = ACTIONS(1249), + [anon_sym_DQUOTE] = ACTIONS(1247), + [sym__str_single_quotes] = ACTIONS(1247), + [sym__str_back_ticks] = ACTIONS(1247), [anon_sym_err_GT] = ACTIONS(1247), [anon_sym_out_GT] = ACTIONS(1247), [anon_sym_e_GT] = ACTIONS(1247), @@ -263484,1259 +269338,4152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT] = ACTIONS(1247), [anon_sym_o_PLUSe_GT] = ACTIONS(1247), [anon_sym_e_PLUSo_GT] = ACTIONS(1247), - [aux_sym_unquoted_token1] = ACTIONS(1247), - [aux_sym_unquoted_token6] = ACTIONS(1251), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1245), + [anon_sym_POUND] = ACTIONS(3), + }, + [2122] = { + [sym__match_pattern_record_variable] = STATE(3152), + [sym_expr_parenthesized] = STATE(10732), + [sym_val_variable] = STATE(3088), + [sym__var] = STATE(2820), + [sym_val_number] = STATE(10732), + [sym__val_number_decimal] = STATE(4911), + [sym__val_number] = STATE(4922), + [sym_val_string] = STATE(10732), + [sym__str_double_quotes] = STATE(6592), + [sym_record_entry] = STATE(3152), + [sym__record_key] = STATE(10419), + [sym_comment] = STATE(2122), + [aux_sym__match_pattern_record_repeat1] = STATE(2122), + [anon_sym_export] = ACTIONS(5827), + [anon_sym_alias] = ACTIONS(5827), + [anon_sym_let] = ACTIONS(5827), + [anon_sym_let_DASHenv] = ACTIONS(5827), + [anon_sym_mut] = ACTIONS(5827), + [anon_sym_const] = ACTIONS(5827), + [sym_cmd_identifier] = ACTIONS(5827), + [anon_sym_def] = ACTIONS(5827), + [anon_sym_export_DASHenv] = ACTIONS(5827), + [anon_sym_extern] = ACTIONS(5827), + [anon_sym_module] = ACTIONS(5827), + [anon_sym_use] = ACTIONS(5827), + [anon_sym_LPAREN] = ACTIONS(5830), + [anon_sym_DOLLAR] = ACTIONS(5833), + [anon_sym_error] = ACTIONS(5827), + [anon_sym_list] = ACTIONS(5827), + [anon_sym_DASH] = ACTIONS(5836), + [anon_sym_break] = ACTIONS(5827), + [anon_sym_continue] = ACTIONS(5827), + [anon_sym_for] = ACTIONS(5827), + [anon_sym_in] = ACTIONS(5827), + [anon_sym_loop] = ACTIONS(5827), + [anon_sym_make] = ACTIONS(5827), + [anon_sym_while] = ACTIONS(5827), + [anon_sym_do] = ACTIONS(5827), + [anon_sym_if] = ACTIONS(5827), + [anon_sym_else] = ACTIONS(5827), + [anon_sym_match] = ACTIONS(5827), + [anon_sym_RBRACE] = ACTIONS(5839), + [anon_sym_try] = ACTIONS(5827), + [anon_sym_catch] = ACTIONS(5827), + [anon_sym_return] = ACTIONS(5827), + [anon_sym_source] = ACTIONS(5827), + [anon_sym_source_DASHenv] = ACTIONS(5827), + [anon_sym_register] = ACTIONS(5827), + [anon_sym_hide] = ACTIONS(5827), + [anon_sym_hide_DASHenv] = ACTIONS(5827), + [anon_sym_overlay] = ACTIONS(5827), + [anon_sym_new] = ACTIONS(5827), + [anon_sym_as] = ACTIONS(5827), + [anon_sym_PLUS] = ACTIONS(5836), + [aux_sym__val_number_decimal_token1] = ACTIONS(5841), + [aux_sym__val_number_decimal_token2] = ACTIONS(5844), + [anon_sym_DOT2] = ACTIONS(5847), + [aux_sym__val_number_decimal_token3] = ACTIONS(5850), + [aux_sym__val_number_token1] = ACTIONS(5853), + [aux_sym__val_number_token2] = ACTIONS(5853), + [aux_sym__val_number_token3] = ACTIONS(5853), + [aux_sym__val_number_token4] = ACTIONS(5856), + [aux_sym__val_number_token5] = ACTIONS(5853), + [aux_sym__val_number_token6] = ACTIONS(5856), + [anon_sym_DQUOTE] = ACTIONS(5859), + [sym__str_single_quotes] = ACTIONS(5862), + [sym__str_back_ticks] = ACTIONS(5862), + [aux_sym__record_key_token2] = ACTIONS(5865), + [anon_sym_POUND] = ACTIONS(3), + }, + [2123] = { + [sym_block] = STATE(2337), + [sym_comment] = STATE(2123), + [anon_sym_export] = ACTIONS(5821), + [anon_sym_alias] = ACTIONS(5821), + [anon_sym_let] = ACTIONS(5821), + [anon_sym_let_DASHenv] = ACTIONS(5821), + [anon_sym_mut] = ACTIONS(5821), + [anon_sym_const] = ACTIONS(5821), + [anon_sym_SEMI] = ACTIONS(5821), + [sym_cmd_identifier] = ACTIONS(5821), + [anon_sym_LF] = ACTIONS(5823), + [anon_sym_def] = ACTIONS(5821), + [anon_sym_export_DASHenv] = ACTIONS(5821), + [anon_sym_extern] = ACTIONS(5821), + [anon_sym_module] = ACTIONS(5821), + [anon_sym_use] = ACTIONS(5821), + [anon_sym_LBRACK] = ACTIONS(5821), + [anon_sym_LPAREN] = ACTIONS(5821), + [anon_sym_RPAREN] = ACTIONS(5821), + [anon_sym_DOLLAR] = ACTIONS(5821), + [anon_sym_error] = ACTIONS(5821), + [anon_sym_DASH] = ACTIONS(5821), + [anon_sym_break] = ACTIONS(5821), + [anon_sym_continue] = ACTIONS(5821), + [anon_sym_for] = ACTIONS(5821), + [anon_sym_loop] = ACTIONS(5821), + [anon_sym_while] = ACTIONS(5821), + [anon_sym_do] = ACTIONS(5821), + [anon_sym_if] = ACTIONS(5821), + [anon_sym_match] = ACTIONS(5821), + [anon_sym_LBRACE] = ACTIONS(5825), + [anon_sym_RBRACE] = ACTIONS(5821), + [anon_sym_DOT_DOT] = ACTIONS(5821), + [anon_sym_try] = ACTIONS(5821), + [anon_sym_return] = ACTIONS(5821), + [anon_sym_source] = ACTIONS(5821), + [anon_sym_source_DASHenv] = ACTIONS(5821), + [anon_sym_register] = ACTIONS(5821), + [anon_sym_hide] = ACTIONS(5821), + [anon_sym_hide_DASHenv] = ACTIONS(5821), + [anon_sym_overlay] = ACTIONS(5821), + [anon_sym_where] = ACTIONS(5821), + [anon_sym_not] = ACTIONS(5821), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5821), + [anon_sym_DOT_DOT_LT] = ACTIONS(5821), + [anon_sym_null] = ACTIONS(5821), + [anon_sym_true] = ACTIONS(5821), + [anon_sym_false] = ACTIONS(5821), + [aux_sym__val_number_decimal_token1] = ACTIONS(5821), + [aux_sym__val_number_decimal_token2] = ACTIONS(5821), + [anon_sym_DOT2] = ACTIONS(5821), + [aux_sym__val_number_decimal_token3] = ACTIONS(5821), + [aux_sym__val_number_token1] = ACTIONS(5821), + [aux_sym__val_number_token2] = ACTIONS(5821), + [aux_sym__val_number_token3] = ACTIONS(5821), + [aux_sym__val_number_token4] = ACTIONS(5821), + [aux_sym__val_number_token5] = ACTIONS(5821), + [aux_sym__val_number_token6] = ACTIONS(5821), + [anon_sym_0b] = ACTIONS(5821), + [anon_sym_0o] = ACTIONS(5821), + [anon_sym_0x] = ACTIONS(5821), + [sym_val_date] = ACTIONS(5821), + [anon_sym_DQUOTE] = ACTIONS(5821), + [sym__str_single_quotes] = ACTIONS(5821), + [sym__str_back_ticks] = ACTIONS(5821), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5821), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5821), + [anon_sym_CARET] = ACTIONS(5821), [anon_sym_POUND] = ACTIONS(113), }, - [1898] = { - [sym_comment] = STATE(1898), + [2124] = { + [sym__expression] = STATE(7142), + [sym_expr_unary] = STATE(5677), + [sym__expr_unary_minus] = STATE(5679), + [sym_expr_binary] = STATE(5677), + [sym__expr_binary_expression] = STATE(6377), + [sym_expr_parenthesized] = STATE(4919), + [sym_val_range] = STATE(8295), + [sym__value] = STATE(5677), + [sym_val_nothing] = STATE(5612), + [sym_val_bool] = STATE(5612), + [sym_val_variable] = STATE(4867), + [sym__var] = STATE(4310), + [sym_val_number] = STATE(5612), + [sym__val_number_decimal] = STATE(4408), + [sym__val_number] = STATE(5661), + [sym_val_duration] = STATE(5612), + [sym_val_filesize] = STATE(5612), + [sym_val_binary] = STATE(5612), + [sym_val_string] = STATE(5612), + [sym__str_double_quotes] = STATE(5733), + [sym_val_interpolated] = STATE(5612), + [sym__inter_single_quotes] = STATE(5590), + [sym__inter_double_quotes] = STATE(5591), + [sym_val_list] = STATE(5612), + [sym_val_record] = STATE(5612), + [sym_val_table] = STATE(5612), + [sym_val_closure] = STATE(5612), + [sym__flag] = STATE(2139), + [sym_short_flag] = STATE(4939), + [sym_long_flag] = STATE(4939), + [sym_long_flag_equals_value] = STATE(4865), + [sym_comment] = STATE(2124), + [ts_builtin_sym_end] = ACTIONS(5597), + [anon_sym_SEMI] = ACTIONS(5595), + [anon_sym_LF] = ACTIONS(5597), + [anon_sym_LBRACK] = ACTIONS(5667), + [anon_sym_LPAREN] = ACTIONS(5669), + [anon_sym_PIPE] = ACTIONS(5595), + [anon_sym_DOLLAR] = ACTIONS(2667), + [anon_sym_DASH_DASH] = ACTIONS(5671), + [anon_sym_DASH] = ACTIONS(5673), + [anon_sym_LBRACE] = ACTIONS(5675), + [anon_sym_DOT_DOT] = ACTIONS(5677), + [anon_sym_not] = ACTIONS(5679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5681), + [anon_sym_DOT_DOT_LT] = ACTIONS(5681), + [anon_sym_null] = ACTIONS(5683), + [anon_sym_true] = ACTIONS(5685), + [anon_sym_false] = ACTIONS(5685), + [aux_sym__val_number_decimal_token1] = ACTIONS(5687), + [aux_sym__val_number_decimal_token2] = ACTIONS(5687), + [anon_sym_DOT2] = ACTIONS(5689), + [aux_sym__val_number_decimal_token3] = ACTIONS(5691), + [aux_sym__val_number_token1] = ACTIONS(5693), + [aux_sym__val_number_token2] = ACTIONS(5693), + [aux_sym__val_number_token3] = ACTIONS(5693), + [aux_sym__val_number_token4] = ACTIONS(5693), + [aux_sym__val_number_token5] = ACTIONS(5693), + [aux_sym__val_number_token6] = ACTIONS(5693), + [anon_sym_0b] = ACTIONS(2695), + [anon_sym_0o] = ACTIONS(2697), + [anon_sym_0x] = ACTIONS(2697), + [sym_val_date] = ACTIONS(5695), + [anon_sym_DQUOTE] = ACTIONS(5697), + [sym__str_single_quotes] = ACTIONS(5699), + [sym__str_back_ticks] = ACTIONS(5699), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5703), + [anon_sym_POUND] = ACTIONS(113), + }, + [2125] = { + [sym__expression] = STATE(7142), + [sym_expr_unary] = STATE(5677), + [sym__expr_unary_minus] = STATE(5679), + [sym_expr_binary] = STATE(5677), + [sym__expr_binary_expression] = STATE(6377), + [sym_expr_parenthesized] = STATE(4919), + [sym_val_range] = STATE(8295), + [sym__value] = STATE(5677), + [sym_val_nothing] = STATE(5612), + [sym_val_bool] = STATE(5612), + [sym_val_variable] = STATE(4867), + [sym__var] = STATE(4310), + [sym_val_number] = STATE(5612), + [sym__val_number_decimal] = STATE(4408), + [sym__val_number] = STATE(5661), + [sym_val_duration] = STATE(5612), + [sym_val_filesize] = STATE(5612), + [sym_val_binary] = STATE(5612), + [sym_val_string] = STATE(5612), + [sym__str_double_quotes] = STATE(5733), + [sym_val_interpolated] = STATE(5612), + [sym__inter_single_quotes] = STATE(5590), + [sym__inter_double_quotes] = STATE(5591), + [sym_val_list] = STATE(5612), + [sym_val_record] = STATE(5612), + [sym_val_table] = STATE(5612), + [sym_val_closure] = STATE(5612), + [sym__flag] = STATE(2142), + [sym_short_flag] = STATE(4939), + [sym_long_flag] = STATE(4939), + [sym_long_flag_equals_value] = STATE(4865), + [sym_comment] = STATE(2125), + [ts_builtin_sym_end] = ACTIONS(5597), + [anon_sym_SEMI] = ACTIONS(5595), + [anon_sym_LF] = ACTIONS(5597), + [anon_sym_LBRACK] = ACTIONS(5667), + [anon_sym_LPAREN] = ACTIONS(5669), + [anon_sym_PIPE] = ACTIONS(5595), + [anon_sym_DOLLAR] = ACTIONS(2667), + [anon_sym_DASH_DASH] = ACTIONS(5671), + [anon_sym_DASH] = ACTIONS(5673), + [anon_sym_LBRACE] = ACTIONS(5675), + [anon_sym_DOT_DOT] = ACTIONS(5677), + [anon_sym_not] = ACTIONS(5679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5681), + [anon_sym_DOT_DOT_LT] = ACTIONS(5681), + [anon_sym_null] = ACTIONS(5683), + [anon_sym_true] = ACTIONS(5685), + [anon_sym_false] = ACTIONS(5685), + [aux_sym__val_number_decimal_token1] = ACTIONS(5687), + [aux_sym__val_number_decimal_token2] = ACTIONS(5687), + [anon_sym_DOT2] = ACTIONS(5689), + [aux_sym__val_number_decimal_token3] = ACTIONS(5691), + [aux_sym__val_number_token1] = ACTIONS(5693), + [aux_sym__val_number_token2] = ACTIONS(5693), + [aux_sym__val_number_token3] = ACTIONS(5693), + [aux_sym__val_number_token4] = ACTIONS(5693), + [aux_sym__val_number_token5] = ACTIONS(5693), + [aux_sym__val_number_token6] = ACTIONS(5693), + [anon_sym_0b] = ACTIONS(2695), + [anon_sym_0o] = ACTIONS(2697), + [anon_sym_0x] = ACTIONS(2697), + [sym_val_date] = ACTIONS(5695), + [anon_sym_DQUOTE] = ACTIONS(5697), + [sym__str_single_quotes] = ACTIONS(5699), + [sym__str_back_ticks] = ACTIONS(5699), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5703), + [anon_sym_POUND] = ACTIONS(113), + }, + [2126] = { + [sym__expression] = STATE(7132), + [sym_expr_unary] = STATE(5677), + [sym__expr_unary_minus] = STATE(5679), + [sym_expr_binary] = STATE(5677), + [sym__expr_binary_expression] = STATE(6377), + [sym_expr_parenthesized] = STATE(4919), + [sym_val_range] = STATE(8295), + [sym__value] = STATE(5677), + [sym_val_nothing] = STATE(5612), + [sym_val_bool] = STATE(5612), + [sym_val_variable] = STATE(4867), + [sym__var] = STATE(4310), + [sym_val_number] = STATE(5612), + [sym__val_number_decimal] = STATE(4408), + [sym__val_number] = STATE(5661), + [sym_val_duration] = STATE(5612), + [sym_val_filesize] = STATE(5612), + [sym_val_binary] = STATE(5612), + [sym_val_string] = STATE(5612), + [sym__str_double_quotes] = STATE(5733), + [sym_val_interpolated] = STATE(5612), + [sym__inter_single_quotes] = STATE(5590), + [sym__inter_double_quotes] = STATE(5591), + [sym_val_list] = STATE(5612), + [sym_val_record] = STATE(5612), + [sym_val_table] = STATE(5612), + [sym_val_closure] = STATE(5612), + [sym__flag] = STATE(2035), + [sym_short_flag] = STATE(4939), + [sym_long_flag] = STATE(4939), + [sym_long_flag_equals_value] = STATE(4865), + [sym_comment] = STATE(2126), + [ts_builtin_sym_end] = ACTIONS(5603), + [anon_sym_SEMI] = ACTIONS(5601), + [anon_sym_LF] = ACTIONS(5603), + [anon_sym_LBRACK] = ACTIONS(5667), + [anon_sym_LPAREN] = ACTIONS(5669), + [anon_sym_PIPE] = ACTIONS(5601), + [anon_sym_DOLLAR] = ACTIONS(2667), + [anon_sym_DASH_DASH] = ACTIONS(5671), + [anon_sym_DASH] = ACTIONS(5673), + [anon_sym_LBRACE] = ACTIONS(5675), + [anon_sym_DOT_DOT] = ACTIONS(5677), + [anon_sym_not] = ACTIONS(5679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5681), + [anon_sym_DOT_DOT_LT] = ACTIONS(5681), + [anon_sym_null] = ACTIONS(5683), + [anon_sym_true] = ACTIONS(5685), + [anon_sym_false] = ACTIONS(5685), + [aux_sym__val_number_decimal_token1] = ACTIONS(5687), + [aux_sym__val_number_decimal_token2] = ACTIONS(5687), + [anon_sym_DOT2] = ACTIONS(5689), + [aux_sym__val_number_decimal_token3] = ACTIONS(5691), + [aux_sym__val_number_token1] = ACTIONS(5693), + [aux_sym__val_number_token2] = ACTIONS(5693), + [aux_sym__val_number_token3] = ACTIONS(5693), + [aux_sym__val_number_token4] = ACTIONS(5693), + [aux_sym__val_number_token5] = ACTIONS(5693), + [aux_sym__val_number_token6] = ACTIONS(5693), + [anon_sym_0b] = ACTIONS(2695), + [anon_sym_0o] = ACTIONS(2697), + [anon_sym_0x] = ACTIONS(2697), + [sym_val_date] = ACTIONS(5695), + [anon_sym_DQUOTE] = ACTIONS(5697), + [sym__str_single_quotes] = ACTIONS(5699), + [sym__str_back_ticks] = ACTIONS(5699), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5703), + [anon_sym_POUND] = ACTIONS(113), + }, + [2127] = { + [sym_comment] = STATE(2127), + [anon_sym_LBRACK] = ACTIONS(1173), + [anon_sym_COMMA] = ACTIONS(1173), + [anon_sym_RBRACK] = ACTIONS(1173), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_DOLLAR] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1173), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1173), + [anon_sym_SLASH_SLASH] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1173), + [anon_sym_bit_DASHshr] = ACTIONS(1173), + [anon_sym_EQ_EQ] = ACTIONS(1173), + [anon_sym_BANG_EQ] = ACTIONS(1173), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1173), + [anon_sym_GT_EQ] = ACTIONS(1173), + [anon_sym_not_DASHin] = ACTIONS(1173), + [anon_sym_starts_DASHwith] = ACTIONS(1173), + [anon_sym_ends_DASHwith] = ACTIONS(1173), + [anon_sym_EQ_TILDE] = ACTIONS(1173), + [anon_sym_BANG_TILDE] = ACTIONS(1173), + [anon_sym_bit_DASHand] = ACTIONS(1173), + [anon_sym_bit_DASHxor] = ACTIONS(1173), + [anon_sym_bit_DASHor] = ACTIONS(1173), + [anon_sym_and] = ACTIONS(1173), + [anon_sym_xor] = ACTIONS(1173), + [anon_sym_or] = ACTIONS(1173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1173), + [anon_sym_DOT_DOT_LT] = ACTIONS(1173), + [anon_sym_null] = ACTIONS(1173), + [anon_sym_true] = ACTIONS(1173), + [anon_sym_false] = ACTIONS(1173), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1173), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1173), + [aux_sym__val_number_token1] = ACTIONS(1173), + [aux_sym__val_number_token2] = ACTIONS(1173), + [aux_sym__val_number_token3] = ACTIONS(1173), + [aux_sym__val_number_token4] = ACTIONS(1173), + [aux_sym__val_number_token5] = ACTIONS(1173), + [aux_sym__val_number_token6] = ACTIONS(1173), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym__str_single_quotes] = ACTIONS(1173), + [sym__str_back_ticks] = ACTIONS(1173), + [anon_sym_err_GT] = ACTIONS(1173), + [anon_sym_out_GT] = ACTIONS(1173), + [anon_sym_e_GT] = ACTIONS(1173), + [anon_sym_o_GT] = ACTIONS(1173), + [anon_sym_err_PLUSout_GT] = ACTIONS(1173), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1173), + [anon_sym_o_PLUSe_GT] = ACTIONS(1173), + [anon_sym_e_PLUSo_GT] = ACTIONS(1173), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(3), + }, + [2128] = { + [sym_comment] = STATE(2128), + [anon_sym_export] = ACTIONS(1265), + [anon_sym_alias] = ACTIONS(1265), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_let_DASHenv] = ACTIONS(1265), + [anon_sym_mut] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_SEMI] = ACTIONS(1265), + [sym_cmd_identifier] = ACTIONS(1265), + [anon_sym_LF] = ACTIONS(1267), + [anon_sym_def] = ACTIONS(1265), + [anon_sym_export_DASHenv] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_module] = ACTIONS(1265), + [anon_sym_use] = ACTIONS(1265), + [anon_sym_LBRACK] = ACTIONS(1265), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_RPAREN] = ACTIONS(1265), + [anon_sym_DOLLAR] = ACTIONS(1265), + [anon_sym_error] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1265), + [anon_sym_break] = ACTIONS(1265), + [anon_sym_continue] = ACTIONS(1265), + [anon_sym_for] = ACTIONS(1265), + [anon_sym_loop] = ACTIONS(1265), + [anon_sym_while] = ACTIONS(1265), + [anon_sym_do] = ACTIONS(1265), + [anon_sym_if] = ACTIONS(1265), + [anon_sym_match] = ACTIONS(1265), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_RBRACE] = ACTIONS(1265), + [anon_sym_DOT_DOT] = ACTIONS(1265), + [anon_sym_try] = ACTIONS(1265), + [anon_sym_return] = ACTIONS(1265), + [anon_sym_source] = ACTIONS(1265), + [anon_sym_source_DASHenv] = ACTIONS(1265), + [anon_sym_register] = ACTIONS(1265), + [anon_sym_hide] = ACTIONS(1265), + [anon_sym_hide_DASHenv] = ACTIONS(1265), + [anon_sym_overlay] = ACTIONS(1265), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_where] = ACTIONS(1265), + [anon_sym_not] = ACTIONS(1265), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1265), + [anon_sym_DOT_DOT_LT] = ACTIONS(1265), + [anon_sym_null] = ACTIONS(1265), + [anon_sym_true] = ACTIONS(1265), + [anon_sym_false] = ACTIONS(1265), + [aux_sym__val_number_decimal_token1] = ACTIONS(1265), + [aux_sym__val_number_decimal_token2] = ACTIONS(1265), + [anon_sym_DOT2] = ACTIONS(1265), + [aux_sym__val_number_decimal_token3] = ACTIONS(1265), + [aux_sym__val_number_token1] = ACTIONS(1265), + [aux_sym__val_number_token2] = ACTIONS(1265), + [aux_sym__val_number_token3] = ACTIONS(1265), + [aux_sym__val_number_token4] = ACTIONS(1265), + [aux_sym__val_number_token5] = ACTIONS(1265), + [aux_sym__val_number_token6] = ACTIONS(1265), + [anon_sym_0b] = ACTIONS(1265), + [anon_sym_0o] = ACTIONS(1265), + [anon_sym_0x] = ACTIONS(1265), + [sym_val_date] = ACTIONS(1265), + [anon_sym_DQUOTE] = ACTIONS(1265), + [sym__str_single_quotes] = ACTIONS(1265), + [sym__str_back_ticks] = ACTIONS(1265), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1265), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(1265), + [anon_sym_POUND] = ACTIONS(113), + }, + [2129] = { + [sym_comment] = STATE(2129), + [anon_sym_export] = ACTIONS(1271), + [anon_sym_alias] = ACTIONS(1271), + [anon_sym_let] = ACTIONS(1271), + [anon_sym_let_DASHenv] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(1271), + [anon_sym_const] = ACTIONS(1271), + [anon_sym_SEMI] = ACTIONS(1271), + [sym_cmd_identifier] = ACTIONS(1271), + [anon_sym_LF] = ACTIONS(1273), + [anon_sym_def] = ACTIONS(1271), + [anon_sym_export_DASHenv] = ACTIONS(1271), + [anon_sym_extern] = ACTIONS(1271), + [anon_sym_module] = ACTIONS(1271), + [anon_sym_use] = ACTIONS(1271), + [anon_sym_LBRACK] = ACTIONS(1271), + [anon_sym_LPAREN] = ACTIONS(1271), + [anon_sym_RPAREN] = ACTIONS(1271), + [anon_sym_DOLLAR] = ACTIONS(1271), + [anon_sym_error] = ACTIONS(1271), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_break] = ACTIONS(1271), + [anon_sym_continue] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1271), + [anon_sym_loop] = ACTIONS(1271), + [anon_sym_while] = ACTIONS(1271), + [anon_sym_do] = ACTIONS(1271), + [anon_sym_if] = ACTIONS(1271), + [anon_sym_match] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(1271), + [anon_sym_DOT_DOT] = ACTIONS(1271), + [anon_sym_try] = ACTIONS(1271), + [anon_sym_return] = ACTIONS(1271), + [anon_sym_source] = ACTIONS(1271), + [anon_sym_source_DASHenv] = ACTIONS(1271), + [anon_sym_register] = ACTIONS(1271), + [anon_sym_hide] = ACTIONS(1271), + [anon_sym_hide_DASHenv] = ACTIONS(1271), + [anon_sym_overlay] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(1271), + [anon_sym_where] = ACTIONS(1271), + [anon_sym_not] = ACTIONS(1271), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1271), + [anon_sym_DOT_DOT_LT] = ACTIONS(1271), + [anon_sym_null] = ACTIONS(1271), + [anon_sym_true] = ACTIONS(1271), + [anon_sym_false] = ACTIONS(1271), + [aux_sym__val_number_decimal_token1] = ACTIONS(1271), + [aux_sym__val_number_decimal_token2] = ACTIONS(1271), + [anon_sym_DOT2] = ACTIONS(1271), + [aux_sym__val_number_decimal_token3] = ACTIONS(1271), + [aux_sym__val_number_token1] = ACTIONS(1271), + [aux_sym__val_number_token2] = ACTIONS(1271), + [aux_sym__val_number_token3] = ACTIONS(1271), + [aux_sym__val_number_token4] = ACTIONS(1271), + [aux_sym__val_number_token5] = ACTIONS(1271), + [aux_sym__val_number_token6] = ACTIONS(1271), + [anon_sym_0b] = ACTIONS(1271), + [anon_sym_0o] = ACTIONS(1271), + [anon_sym_0x] = ACTIONS(1271), + [sym_val_date] = ACTIONS(1271), + [anon_sym_DQUOTE] = ACTIONS(1271), + [sym__str_single_quotes] = ACTIONS(1271), + [sym__str_back_ticks] = ACTIONS(1271), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1271), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1271), + [anon_sym_CARET] = ACTIONS(1271), + [anon_sym_POUND] = ACTIONS(113), + }, + [2130] = { + [sym_val_record] = STATE(2351), + [sym_comment] = STATE(2130), + [anon_sym_export] = ACTIONS(5868), + [anon_sym_alias] = ACTIONS(5868), + [anon_sym_let] = ACTIONS(5868), + [anon_sym_let_DASHenv] = ACTIONS(5868), + [anon_sym_mut] = ACTIONS(5868), + [anon_sym_const] = ACTIONS(5868), + [anon_sym_SEMI] = ACTIONS(5868), + [sym_cmd_identifier] = ACTIONS(5868), + [anon_sym_LF] = ACTIONS(5870), + [anon_sym_def] = ACTIONS(5868), + [anon_sym_export_DASHenv] = ACTIONS(5868), + [anon_sym_extern] = ACTIONS(5868), + [anon_sym_module] = ACTIONS(5868), + [anon_sym_use] = ACTIONS(5868), + [anon_sym_LBRACK] = ACTIONS(5868), + [anon_sym_LPAREN] = ACTIONS(5868), + [anon_sym_RPAREN] = ACTIONS(5868), + [anon_sym_DOLLAR] = ACTIONS(5868), + [anon_sym_error] = ACTIONS(5868), + [anon_sym_DASH] = ACTIONS(5868), + [anon_sym_break] = ACTIONS(5868), + [anon_sym_continue] = ACTIONS(5868), + [anon_sym_for] = ACTIONS(5868), + [anon_sym_loop] = ACTIONS(5868), + [anon_sym_while] = ACTIONS(5868), + [anon_sym_do] = ACTIONS(5868), + [anon_sym_if] = ACTIONS(5868), + [anon_sym_match] = ACTIONS(5868), + [anon_sym_LBRACE] = ACTIONS(5868), + [anon_sym_RBRACE] = ACTIONS(5868), + [anon_sym_DOT_DOT] = ACTIONS(5868), + [anon_sym_try] = ACTIONS(5868), + [anon_sym_return] = ACTIONS(5868), + [anon_sym_source] = ACTIONS(5868), + [anon_sym_source_DASHenv] = ACTIONS(5868), + [anon_sym_register] = ACTIONS(5868), + [anon_sym_hide] = ACTIONS(5868), + [anon_sym_hide_DASHenv] = ACTIONS(5868), + [anon_sym_overlay] = ACTIONS(5868), + [anon_sym_where] = ACTIONS(5868), + [anon_sym_not] = ACTIONS(5868), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5868), + [anon_sym_DOT_DOT_LT] = ACTIONS(5868), + [anon_sym_null] = ACTIONS(5868), + [anon_sym_true] = ACTIONS(5868), + [anon_sym_false] = ACTIONS(5868), + [aux_sym__val_number_decimal_token1] = ACTIONS(5868), + [aux_sym__val_number_decimal_token2] = ACTIONS(5868), + [anon_sym_DOT2] = ACTIONS(5868), + [aux_sym__val_number_decimal_token3] = ACTIONS(5868), + [aux_sym__val_number_token1] = ACTIONS(5868), + [aux_sym__val_number_token2] = ACTIONS(5868), + [aux_sym__val_number_token3] = ACTIONS(5868), + [aux_sym__val_number_token4] = ACTIONS(5868), + [aux_sym__val_number_token5] = ACTIONS(5868), + [aux_sym__val_number_token6] = ACTIONS(5868), + [anon_sym_0b] = ACTIONS(5868), + [anon_sym_0o] = ACTIONS(5868), + [anon_sym_0x] = ACTIONS(5868), + [sym_val_date] = ACTIONS(5868), + [anon_sym_DQUOTE] = ACTIONS(5868), + [sym__str_single_quotes] = ACTIONS(5868), + [sym__str_back_ticks] = ACTIONS(5868), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5868), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5868), + [anon_sym_CARET] = ACTIONS(5868), + [anon_sym_POUND] = ACTIONS(113), + }, + [2131] = { + [sym_comment] = STATE(2131), + [anon_sym_LBRACK] = ACTIONS(1213), + [anon_sym_COMMA] = ACTIONS(1213), + [anon_sym_RBRACK] = ACTIONS(1213), + [anon_sym_LPAREN] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1213), + [anon_sym_GT] = ACTIONS(1211), + [anon_sym_DASH_DASH] = ACTIONS(1213), + [anon_sym_DASH] = ACTIONS(1211), + [anon_sym_in] = ACTIONS(1211), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_DOT_DOT] = ACTIONS(1211), + [anon_sym_STAR] = ACTIONS(1211), + [anon_sym_STAR_STAR] = ACTIONS(1213), + [anon_sym_PLUS_PLUS] = ACTIONS(1213), + [anon_sym_SLASH] = ACTIONS(1211), + [anon_sym_mod] = ACTIONS(1213), + [anon_sym_SLASH_SLASH] = ACTIONS(1213), + [anon_sym_PLUS] = ACTIONS(1211), + [anon_sym_bit_DASHshl] = ACTIONS(1213), + [anon_sym_bit_DASHshr] = ACTIONS(1213), + [anon_sym_EQ_EQ] = ACTIONS(1213), + [anon_sym_BANG_EQ] = ACTIONS(1213), + [anon_sym_LT2] = ACTIONS(1211), + [anon_sym_LT_EQ] = ACTIONS(1213), + [anon_sym_GT_EQ] = ACTIONS(1213), + [anon_sym_not_DASHin] = ACTIONS(1213), + [anon_sym_starts_DASHwith] = ACTIONS(1213), + [anon_sym_ends_DASHwith] = ACTIONS(1213), + [anon_sym_EQ_TILDE] = ACTIONS(1213), + [anon_sym_BANG_TILDE] = ACTIONS(1213), + [anon_sym_bit_DASHand] = ACTIONS(1213), + [anon_sym_bit_DASHxor] = ACTIONS(1213), + [anon_sym_bit_DASHor] = ACTIONS(1213), + [anon_sym_and] = ACTIONS(1213), + [anon_sym_xor] = ACTIONS(1213), + [anon_sym_or] = ACTIONS(1213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1213), + [anon_sym_DOT_DOT_LT] = ACTIONS(1213), + [anon_sym_null] = ACTIONS(1213), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1211), + [aux_sym__val_number_decimal_token2] = ACTIONS(1213), + [anon_sym_DOT2] = ACTIONS(1211), + [aux_sym__val_number_decimal_token3] = ACTIONS(1213), + [aux_sym__val_number_token1] = ACTIONS(1213), + [aux_sym__val_number_token2] = ACTIONS(1213), + [aux_sym__val_number_token3] = ACTIONS(1213), + [aux_sym__val_number_token4] = ACTIONS(1213), + [aux_sym__val_number_token5] = ACTIONS(1213), + [aux_sym__val_number_token6] = ACTIONS(1213), + [anon_sym_0b] = ACTIONS(1211), + [anon_sym_0o] = ACTIONS(1211), + [anon_sym_0x] = ACTIONS(1211), + [sym_val_date] = ACTIONS(1213), + [anon_sym_DQUOTE] = ACTIONS(1213), + [sym__str_single_quotes] = ACTIONS(1213), + [sym__str_back_ticks] = ACTIONS(1213), + [anon_sym_err_GT] = ACTIONS(1213), + [anon_sym_out_GT] = ACTIONS(1213), + [anon_sym_e_GT] = ACTIONS(1213), + [anon_sym_o_GT] = ACTIONS(1213), + [anon_sym_err_PLUSout_GT] = ACTIONS(1213), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1213), + [anon_sym_o_PLUSe_GT] = ACTIONS(1213), + [anon_sym_e_PLUSo_GT] = ACTIONS(1213), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1211), + [anon_sym_POUND] = ACTIONS(3), + }, + [2132] = { + [sym_comment] = STATE(2132), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_COMMA] = ACTIONS(1251), + [anon_sym_RBRACK] = ACTIONS(1251), + [anon_sym_LPAREN] = ACTIONS(1251), + [anon_sym_DOLLAR] = ACTIONS(1251), + [anon_sym_GT] = ACTIONS(1249), + [anon_sym_DASH_DASH] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1249), + [anon_sym_in] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_DOT_DOT] = ACTIONS(1249), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_STAR_STAR] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(1249), + [anon_sym_mod] = ACTIONS(1251), + [anon_sym_SLASH_SLASH] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1249), + [anon_sym_bit_DASHshl] = ACTIONS(1251), + [anon_sym_bit_DASHshr] = ACTIONS(1251), + [anon_sym_EQ_EQ] = ACTIONS(1251), + [anon_sym_BANG_EQ] = ACTIONS(1251), + [anon_sym_LT2] = ACTIONS(1249), + [anon_sym_LT_EQ] = ACTIONS(1251), + [anon_sym_GT_EQ] = ACTIONS(1251), + [anon_sym_not_DASHin] = ACTIONS(1251), + [anon_sym_starts_DASHwith] = ACTIONS(1251), + [anon_sym_ends_DASHwith] = ACTIONS(1251), + [anon_sym_EQ_TILDE] = ACTIONS(1251), + [anon_sym_BANG_TILDE] = ACTIONS(1251), + [anon_sym_bit_DASHand] = ACTIONS(1251), + [anon_sym_bit_DASHxor] = ACTIONS(1251), + [anon_sym_bit_DASHor] = ACTIONS(1251), + [anon_sym_and] = ACTIONS(1251), + [anon_sym_xor] = ACTIONS(1251), + [anon_sym_or] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1251), + [anon_sym_DOT_DOT_LT] = ACTIONS(1251), + [anon_sym_null] = ACTIONS(1251), + [anon_sym_true] = ACTIONS(1251), + [anon_sym_false] = ACTIONS(1251), + [aux_sym__val_number_decimal_token1] = ACTIONS(1249), + [aux_sym__val_number_decimal_token2] = ACTIONS(1251), + [anon_sym_DOT2] = ACTIONS(1249), + [aux_sym__val_number_decimal_token3] = ACTIONS(1251), + [aux_sym__val_number_token1] = ACTIONS(1251), + [aux_sym__val_number_token2] = ACTIONS(1251), + [aux_sym__val_number_token3] = ACTIONS(1251), + [aux_sym__val_number_token4] = ACTIONS(1251), + [aux_sym__val_number_token5] = ACTIONS(1251), + [aux_sym__val_number_token6] = ACTIONS(1251), + [anon_sym_0b] = ACTIONS(1249), + [anon_sym_0o] = ACTIONS(1249), + [anon_sym_0x] = ACTIONS(1249), + [sym_val_date] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(1251), + [sym__str_single_quotes] = ACTIONS(1251), + [sym__str_back_ticks] = ACTIONS(1251), + [anon_sym_err_GT] = ACTIONS(1251), + [anon_sym_out_GT] = ACTIONS(1251), + [anon_sym_e_GT] = ACTIONS(1251), + [anon_sym_o_GT] = ACTIONS(1251), + [anon_sym_err_PLUSout_GT] = ACTIONS(1251), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1251), + [anon_sym_o_PLUSe_GT] = ACTIONS(1251), + [anon_sym_e_PLUSo_GT] = ACTIONS(1251), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1249), + [anon_sym_POUND] = ACTIONS(3), + }, + [2133] = { + [sym_comment] = STATE(2133), [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_COMMA] = ACTIONS(1253), + [anon_sym_COMMA] = ACTIONS(1255), + [anon_sym_RBRACK] = ACTIONS(1255), [anon_sym_LPAREN] = ACTIONS(1255), - [anon_sym_DOLLAR] = ACTIONS(1253), + [anon_sym_DOLLAR] = ACTIONS(1255), [anon_sym_GT] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1255), [anon_sym_DASH] = ACTIONS(1253), [anon_sym_in] = ACTIONS(1253), [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_RBRACE] = ACTIONS(1255), - [anon_sym__] = ACTIONS(1253), [anon_sym_DOT_DOT] = ACTIONS(1253), [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_STAR_STAR] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_STAR_STAR] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_mod] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(1253), + [anon_sym_mod] = ACTIONS(1255), + [anon_sym_SLASH_SLASH] = ACTIONS(1255), [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_bit_DASHshl] = ACTIONS(1253), - [anon_sym_bit_DASHshr] = ACTIONS(1253), - [anon_sym_EQ_EQ] = ACTIONS(1253), - [anon_sym_BANG_EQ] = ACTIONS(1253), + [anon_sym_bit_DASHshl] = ACTIONS(1255), + [anon_sym_bit_DASHshr] = ACTIONS(1255), + [anon_sym_EQ_EQ] = ACTIONS(1255), + [anon_sym_BANG_EQ] = ACTIONS(1255), [anon_sym_LT2] = ACTIONS(1253), - [anon_sym_LT_EQ] = ACTIONS(1253), - [anon_sym_GT_EQ] = ACTIONS(1253), - [anon_sym_not_DASHin] = ACTIONS(1253), - [anon_sym_starts_DASHwith] = ACTIONS(1253), - [anon_sym_ends_DASHwith] = ACTIONS(1253), - [anon_sym_EQ_TILDE] = ACTIONS(1253), - [anon_sym_BANG_TILDE] = ACTIONS(1253), - [anon_sym_bit_DASHand] = ACTIONS(1253), - [anon_sym_bit_DASHxor] = ACTIONS(1253), - [anon_sym_bit_DASHor] = ACTIONS(1253), - [anon_sym_and] = ACTIONS(1253), - [anon_sym_xor] = ACTIONS(1253), - [anon_sym_or] = ACTIONS(1253), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1253), - [anon_sym_DOT_DOT_LT] = ACTIONS(1253), - [anon_sym_null] = ACTIONS(1253), - [anon_sym_true] = ACTIONS(1253), - [anon_sym_false] = ACTIONS(1253), + [anon_sym_LT_EQ] = ACTIONS(1255), + [anon_sym_GT_EQ] = ACTIONS(1255), + [anon_sym_not_DASHin] = ACTIONS(1255), + [anon_sym_starts_DASHwith] = ACTIONS(1255), + [anon_sym_ends_DASHwith] = ACTIONS(1255), + [anon_sym_EQ_TILDE] = ACTIONS(1255), + [anon_sym_BANG_TILDE] = ACTIONS(1255), + [anon_sym_bit_DASHand] = ACTIONS(1255), + [anon_sym_bit_DASHxor] = ACTIONS(1255), + [anon_sym_bit_DASHor] = ACTIONS(1255), + [anon_sym_and] = ACTIONS(1255), + [anon_sym_xor] = ACTIONS(1255), + [anon_sym_or] = ACTIONS(1255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_DOT_DOT_LT] = ACTIONS(1255), + [anon_sym_null] = ACTIONS(1255), + [anon_sym_true] = ACTIONS(1255), + [anon_sym_false] = ACTIONS(1255), [aux_sym__val_number_decimal_token1] = ACTIONS(1253), - [aux_sym__val_number_decimal_token2] = ACTIONS(1253), + [aux_sym__val_number_decimal_token2] = ACTIONS(1255), [anon_sym_DOT2] = ACTIONS(1253), - [aux_sym__val_number_decimal_token3] = ACTIONS(1253), - [aux_sym__val_number_token1] = ACTIONS(1253), - [aux_sym__val_number_token2] = ACTIONS(1253), - [aux_sym__val_number_token3] = ACTIONS(1253), - [aux_sym__val_number_token4] = ACTIONS(1253), - [aux_sym__val_number_token5] = ACTIONS(1253), - [aux_sym__val_number_token6] = ACTIONS(1253), + [aux_sym__val_number_decimal_token3] = ACTIONS(1255), + [aux_sym__val_number_token1] = ACTIONS(1255), + [aux_sym__val_number_token2] = ACTIONS(1255), + [aux_sym__val_number_token3] = ACTIONS(1255), + [aux_sym__val_number_token4] = ACTIONS(1255), + [aux_sym__val_number_token5] = ACTIONS(1255), + [aux_sym__val_number_token6] = ACTIONS(1255), [anon_sym_0b] = ACTIONS(1253), [anon_sym_0o] = ACTIONS(1253), [anon_sym_0x] = ACTIONS(1253), - [sym_val_date] = ACTIONS(1253), + [sym_val_date] = ACTIONS(1255), [anon_sym_DQUOTE] = ACTIONS(1255), [sym__str_single_quotes] = ACTIONS(1255), [sym__str_back_ticks] = ACTIONS(1255), - [anon_sym_err_GT] = ACTIONS(1253), - [anon_sym_out_GT] = ACTIONS(1253), - [anon_sym_e_GT] = ACTIONS(1253), - [anon_sym_o_GT] = ACTIONS(1253), - [anon_sym_err_PLUSout_GT] = ACTIONS(1253), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1253), - [anon_sym_o_PLUSe_GT] = ACTIONS(1253), - [anon_sym_e_PLUSo_GT] = ACTIONS(1253), - [aux_sym_unquoted_token1] = ACTIONS(1253), - [aux_sym_unquoted_token6] = ACTIONS(1257), + [anon_sym_err_GT] = ACTIONS(1255), + [anon_sym_out_GT] = ACTIONS(1255), + [anon_sym_e_GT] = ACTIONS(1255), + [anon_sym_o_GT] = ACTIONS(1255), + [anon_sym_err_PLUSout_GT] = ACTIONS(1255), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1255), + [anon_sym_o_PLUSe_GT] = ACTIONS(1255), + [anon_sym_e_PLUSo_GT] = ACTIONS(1255), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1253), + [anon_sym_POUND] = ACTIONS(3), + }, + [2134] = { + [sym_comment] = STATE(2134), + [anon_sym_LBRACK] = ACTIONS(1259), + [anon_sym_COMMA] = ACTIONS(1259), + [anon_sym_RBRACK] = ACTIONS(1259), + [anon_sym_LPAREN] = ACTIONS(1259), + [anon_sym_DOLLAR] = ACTIONS(1259), + [anon_sym_GT] = ACTIONS(1257), + [anon_sym_DASH_DASH] = ACTIONS(1259), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_in] = ACTIONS(1257), + [anon_sym_LBRACE] = ACTIONS(1259), + [anon_sym_DOT_DOT] = ACTIONS(1257), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_STAR_STAR] = ACTIONS(1259), + [anon_sym_PLUS_PLUS] = ACTIONS(1259), + [anon_sym_SLASH] = ACTIONS(1257), + [anon_sym_mod] = ACTIONS(1259), + [anon_sym_SLASH_SLASH] = ACTIONS(1259), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_bit_DASHshl] = ACTIONS(1259), + [anon_sym_bit_DASHshr] = ACTIONS(1259), + [anon_sym_EQ_EQ] = ACTIONS(1259), + [anon_sym_BANG_EQ] = ACTIONS(1259), + [anon_sym_LT2] = ACTIONS(1257), + [anon_sym_LT_EQ] = ACTIONS(1259), + [anon_sym_GT_EQ] = ACTIONS(1259), + [anon_sym_not_DASHin] = ACTIONS(1259), + [anon_sym_starts_DASHwith] = ACTIONS(1259), + [anon_sym_ends_DASHwith] = ACTIONS(1259), + [anon_sym_EQ_TILDE] = ACTIONS(1259), + [anon_sym_BANG_TILDE] = ACTIONS(1259), + [anon_sym_bit_DASHand] = ACTIONS(1259), + [anon_sym_bit_DASHxor] = ACTIONS(1259), + [anon_sym_bit_DASHor] = ACTIONS(1259), + [anon_sym_and] = ACTIONS(1259), + [anon_sym_xor] = ACTIONS(1259), + [anon_sym_or] = ACTIONS(1259), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1259), + [anon_sym_DOT_DOT_LT] = ACTIONS(1259), + [anon_sym_null] = ACTIONS(1259), + [anon_sym_true] = ACTIONS(1259), + [anon_sym_false] = ACTIONS(1259), + [aux_sym__val_number_decimal_token1] = ACTIONS(1257), + [aux_sym__val_number_decimal_token2] = ACTIONS(1259), + [anon_sym_DOT2] = ACTIONS(1257), + [aux_sym__val_number_decimal_token3] = ACTIONS(1259), + [aux_sym__val_number_token1] = ACTIONS(1259), + [aux_sym__val_number_token2] = ACTIONS(1259), + [aux_sym__val_number_token3] = ACTIONS(1259), + [aux_sym__val_number_token4] = ACTIONS(1259), + [aux_sym__val_number_token5] = ACTIONS(1259), + [aux_sym__val_number_token6] = ACTIONS(1259), + [anon_sym_0b] = ACTIONS(1257), + [anon_sym_0o] = ACTIONS(1257), + [anon_sym_0x] = ACTIONS(1257), + [sym_val_date] = ACTIONS(1259), + [anon_sym_DQUOTE] = ACTIONS(1259), + [sym__str_single_quotes] = ACTIONS(1259), + [sym__str_back_ticks] = ACTIONS(1259), + [anon_sym_err_GT] = ACTIONS(1259), + [anon_sym_out_GT] = ACTIONS(1259), + [anon_sym_e_GT] = ACTIONS(1259), + [anon_sym_o_GT] = ACTIONS(1259), + [anon_sym_err_PLUSout_GT] = ACTIONS(1259), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1259), + [anon_sym_o_PLUSe_GT] = ACTIONS(1259), + [anon_sym_e_PLUSo_GT] = ACTIONS(1259), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1257), + [anon_sym_POUND] = ACTIONS(3), + }, + [2135] = { + [sym_comment] = STATE(2135), + [anon_sym_LBRACK] = ACTIONS(1223), + [anon_sym_COMMA] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1223), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_in] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_RBRACE] = ACTIONS(1223), + [anon_sym__] = ACTIONS(1221), + [anon_sym_DOT_DOT] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_STAR_STAR] = ACTIONS(1223), + [anon_sym_PLUS_PLUS] = ACTIONS(1223), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_mod] = ACTIONS(1223), + [anon_sym_SLASH_SLASH] = ACTIONS(1223), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_bit_DASHshl] = ACTIONS(1223), + [anon_sym_bit_DASHshr] = ACTIONS(1223), + [anon_sym_EQ_EQ] = ACTIONS(1223), + [anon_sym_BANG_EQ] = ACTIONS(1223), + [anon_sym_LT2] = ACTIONS(1221), + [anon_sym_LT_EQ] = ACTIONS(1223), + [anon_sym_GT_EQ] = ACTIONS(1223), + [anon_sym_not_DASHin] = ACTIONS(1223), + [anon_sym_starts_DASHwith] = ACTIONS(1223), + [anon_sym_ends_DASHwith] = ACTIONS(1223), + [anon_sym_EQ_TILDE] = ACTIONS(1223), + [anon_sym_BANG_TILDE] = ACTIONS(1223), + [anon_sym_bit_DASHand] = ACTIONS(1223), + [anon_sym_bit_DASHxor] = ACTIONS(1223), + [anon_sym_bit_DASHor] = ACTIONS(1223), + [anon_sym_and] = ACTIONS(1223), + [anon_sym_xor] = ACTIONS(1223), + [anon_sym_or] = ACTIONS(1223), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_DOT_DOT_LT] = ACTIONS(1223), + [anon_sym_null] = ACTIONS(1223), + [anon_sym_true] = ACTIONS(1223), + [anon_sym_false] = ACTIONS(1223), + [aux_sym__val_number_decimal_token1] = ACTIONS(1221), + [aux_sym__val_number_decimal_token2] = ACTIONS(1223), + [anon_sym_DOT2] = ACTIONS(1221), + [aux_sym__val_number_decimal_token3] = ACTIONS(1223), + [aux_sym__val_number_token1] = ACTIONS(1223), + [aux_sym__val_number_token2] = ACTIONS(1223), + [aux_sym__val_number_token3] = ACTIONS(1223), + [aux_sym__val_number_token4] = ACTIONS(1223), + [aux_sym__val_number_token5] = ACTIONS(1223), + [aux_sym__val_number_token6] = ACTIONS(1223), + [anon_sym_0b] = ACTIONS(1221), + [anon_sym_0o] = ACTIONS(1221), + [anon_sym_0x] = ACTIONS(1221), + [sym_val_date] = ACTIONS(1223), + [anon_sym_DQUOTE] = ACTIONS(1223), + [sym__str_single_quotes] = ACTIONS(1223), + [sym__str_back_ticks] = ACTIONS(1223), + [anon_sym_err_GT] = ACTIONS(1223), + [anon_sym_out_GT] = ACTIONS(1223), + [anon_sym_e_GT] = ACTIONS(1223), + [anon_sym_o_GT] = ACTIONS(1223), + [anon_sym_err_PLUSout_GT] = ACTIONS(1223), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1223), + [anon_sym_o_PLUSe_GT] = ACTIONS(1223), + [anon_sym_e_PLUSo_GT] = ACTIONS(1223), + [aux_sym_unquoted_token1] = ACTIONS(1221), + [anon_sym_POUND] = ACTIONS(3), + }, + [2136] = { + [sym_comment] = STATE(2136), + [ts_builtin_sym_end] = ACTIONS(1285), + [anon_sym_export] = ACTIONS(1283), + [anon_sym_alias] = ACTIONS(1283), + [anon_sym_let] = ACTIONS(1283), + [anon_sym_let_DASHenv] = ACTIONS(1283), + [anon_sym_mut] = ACTIONS(1283), + [anon_sym_const] = ACTIONS(1283), + [anon_sym_SEMI] = ACTIONS(1283), + [sym_cmd_identifier] = ACTIONS(1283), + [anon_sym_LF] = ACTIONS(1285), + [anon_sym_def] = ACTIONS(1283), + [anon_sym_export_DASHenv] = ACTIONS(1283), + [anon_sym_extern] = ACTIONS(1283), + [anon_sym_module] = ACTIONS(1283), + [anon_sym_use] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_LPAREN] = ACTIONS(1283), + [anon_sym_DOLLAR] = ACTIONS(1283), + [anon_sym_error] = ACTIONS(1283), + [anon_sym_DASH_DASH] = ACTIONS(1283), + [anon_sym_DASH] = ACTIONS(1283), + [anon_sym_break] = ACTIONS(1283), + [anon_sym_continue] = ACTIONS(1283), + [anon_sym_for] = ACTIONS(1283), + [anon_sym_loop] = ACTIONS(1283), + [anon_sym_while] = ACTIONS(1283), + [anon_sym_do] = ACTIONS(1283), + [anon_sym_if] = ACTIONS(1283), + [anon_sym_match] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1283), + [anon_sym_DOT_DOT] = ACTIONS(1283), + [anon_sym_try] = ACTIONS(1283), + [anon_sym_return] = ACTIONS(1283), + [anon_sym_source] = ACTIONS(1283), + [anon_sym_source_DASHenv] = ACTIONS(1283), + [anon_sym_register] = ACTIONS(1283), + [anon_sym_hide] = ACTIONS(1283), + [anon_sym_hide_DASHenv] = ACTIONS(1283), + [anon_sym_overlay] = ACTIONS(1283), + [anon_sym_as] = ACTIONS(1283), + [anon_sym_where] = ACTIONS(1283), + [anon_sym_not] = ACTIONS(1283), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1283), + [anon_sym_DOT_DOT_LT] = ACTIONS(1283), + [anon_sym_null] = ACTIONS(1283), + [anon_sym_true] = ACTIONS(1283), + [anon_sym_false] = ACTIONS(1283), + [aux_sym__val_number_decimal_token1] = ACTIONS(1283), + [aux_sym__val_number_decimal_token2] = ACTIONS(1283), + [anon_sym_DOT2] = ACTIONS(1283), + [aux_sym__val_number_decimal_token3] = ACTIONS(1283), + [aux_sym__val_number_token1] = ACTIONS(1283), + [aux_sym__val_number_token2] = ACTIONS(1283), + [aux_sym__val_number_token3] = ACTIONS(1283), + [aux_sym__val_number_token4] = ACTIONS(1283), + [aux_sym__val_number_token5] = ACTIONS(1283), + [aux_sym__val_number_token6] = ACTIONS(1283), + [anon_sym_0b] = ACTIONS(1283), + [anon_sym_0o] = ACTIONS(1283), + [anon_sym_0x] = ACTIONS(1283), + [sym_val_date] = ACTIONS(1283), + [anon_sym_DQUOTE] = ACTIONS(1283), + [sym__str_single_quotes] = ACTIONS(1283), + [sym__str_back_ticks] = ACTIONS(1283), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1283), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1283), + [anon_sym_CARET] = ACTIONS(1283), [anon_sym_POUND] = ACTIONS(113), }, - [1899] = { - [sym_comment] = STATE(1899), + [2137] = { + [sym_comment] = STATE(2137), + [anon_sym_export] = ACTIONS(1275), + [anon_sym_alias] = ACTIONS(1275), + [anon_sym_let] = ACTIONS(1275), + [anon_sym_let_DASHenv] = ACTIONS(1275), + [anon_sym_mut] = ACTIONS(1275), + [anon_sym_const] = ACTIONS(1275), + [anon_sym_SEMI] = ACTIONS(1275), + [sym_cmd_identifier] = ACTIONS(1275), + [anon_sym_LF] = ACTIONS(1277), + [anon_sym_def] = ACTIONS(1275), + [anon_sym_export_DASHenv] = ACTIONS(1275), + [anon_sym_extern] = ACTIONS(1275), + [anon_sym_module] = ACTIONS(1275), + [anon_sym_use] = ACTIONS(1275), [anon_sym_LBRACK] = ACTIONS(1275), - [anon_sym_COMMA] = ACTIONS(1273), [anon_sym_LPAREN] = ACTIONS(1275), - [anon_sym_DOLLAR] = ACTIONS(1273), - [anon_sym_GT] = ACTIONS(1273), - [anon_sym_DASH] = ACTIONS(1273), - [anon_sym_in] = ACTIONS(1273), + [anon_sym_RPAREN] = ACTIONS(1275), + [anon_sym_DOLLAR] = ACTIONS(1275), + [anon_sym_error] = ACTIONS(1275), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_break] = ACTIONS(1275), + [anon_sym_continue] = ACTIONS(1275), + [anon_sym_for] = ACTIONS(1275), + [anon_sym_loop] = ACTIONS(1275), + [anon_sym_while] = ACTIONS(1275), + [anon_sym_do] = ACTIONS(1275), + [anon_sym_if] = ACTIONS(1275), + [anon_sym_match] = ACTIONS(1275), [anon_sym_LBRACE] = ACTIONS(1275), [anon_sym_RBRACE] = ACTIONS(1275), - [anon_sym__] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_STAR] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1273), - [anon_sym_PLUS_PLUS] = ACTIONS(1273), - [anon_sym_SLASH] = ACTIONS(1273), - [anon_sym_mod] = ACTIONS(1273), - [anon_sym_SLASH_SLASH] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(1273), - [anon_sym_bit_DASHshl] = ACTIONS(1273), - [anon_sym_bit_DASHshr] = ACTIONS(1273), - [anon_sym_EQ_EQ] = ACTIONS(1273), - [anon_sym_BANG_EQ] = ACTIONS(1273), - [anon_sym_LT2] = ACTIONS(1273), - [anon_sym_LT_EQ] = ACTIONS(1273), - [anon_sym_GT_EQ] = ACTIONS(1273), - [anon_sym_not_DASHin] = ACTIONS(1273), - [anon_sym_starts_DASHwith] = ACTIONS(1273), - [anon_sym_ends_DASHwith] = ACTIONS(1273), - [anon_sym_EQ_TILDE] = ACTIONS(1273), - [anon_sym_BANG_TILDE] = ACTIONS(1273), - [anon_sym_bit_DASHand] = ACTIONS(1273), - [anon_sym_bit_DASHxor] = ACTIONS(1273), - [anon_sym_bit_DASHor] = ACTIONS(1273), - [anon_sym_and] = ACTIONS(1273), - [anon_sym_xor] = ACTIONS(1273), - [anon_sym_or] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1273), - [anon_sym_DOT_DOT_LT] = ACTIONS(1273), - [anon_sym_null] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1273), - [anon_sym_false] = ACTIONS(1273), - [aux_sym__val_number_decimal_token1] = ACTIONS(1273), - [aux_sym__val_number_decimal_token2] = ACTIONS(1273), - [anon_sym_DOT2] = ACTIONS(1273), - [aux_sym__val_number_decimal_token3] = ACTIONS(1273), - [aux_sym__val_number_token1] = ACTIONS(1273), - [aux_sym__val_number_token2] = ACTIONS(1273), - [aux_sym__val_number_token3] = ACTIONS(1273), - [aux_sym__val_number_token4] = ACTIONS(1273), - [aux_sym__val_number_token5] = ACTIONS(1273), - [aux_sym__val_number_token6] = ACTIONS(1273), - [anon_sym_0b] = ACTIONS(1273), - [anon_sym_0o] = ACTIONS(1273), - [anon_sym_0x] = ACTIONS(1273), - [sym_val_date] = ACTIONS(1273), + [anon_sym_DOT_DOT] = ACTIONS(1275), + [anon_sym_try] = ACTIONS(1275), + [anon_sym_return] = ACTIONS(1275), + [anon_sym_source] = ACTIONS(1275), + [anon_sym_source_DASHenv] = ACTIONS(1275), + [anon_sym_register] = ACTIONS(1275), + [anon_sym_hide] = ACTIONS(1275), + [anon_sym_hide_DASHenv] = ACTIONS(1275), + [anon_sym_overlay] = ACTIONS(1275), + [anon_sym_STAR] = ACTIONS(1275), + [anon_sym_where] = ACTIONS(1275), + [anon_sym_not] = ACTIONS(1275), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1275), + [anon_sym_DOT_DOT_LT] = ACTIONS(1275), + [anon_sym_null] = ACTIONS(1275), + [anon_sym_true] = ACTIONS(1275), + [anon_sym_false] = ACTIONS(1275), + [aux_sym__val_number_decimal_token1] = ACTIONS(1275), + [aux_sym__val_number_decimal_token2] = ACTIONS(1275), + [anon_sym_DOT2] = ACTIONS(1275), + [aux_sym__val_number_decimal_token3] = ACTIONS(1275), + [aux_sym__val_number_token1] = ACTIONS(1275), + [aux_sym__val_number_token2] = ACTIONS(1275), + [aux_sym__val_number_token3] = ACTIONS(1275), + [aux_sym__val_number_token4] = ACTIONS(1275), + [aux_sym__val_number_token5] = ACTIONS(1275), + [aux_sym__val_number_token6] = ACTIONS(1275), + [anon_sym_0b] = ACTIONS(1275), + [anon_sym_0o] = ACTIONS(1275), + [anon_sym_0x] = ACTIONS(1275), + [sym_val_date] = ACTIONS(1275), [anon_sym_DQUOTE] = ACTIONS(1275), [sym__str_single_quotes] = ACTIONS(1275), [sym__str_back_ticks] = ACTIONS(1275), - [anon_sym_err_GT] = ACTIONS(1273), - [anon_sym_out_GT] = ACTIONS(1273), - [anon_sym_e_GT] = ACTIONS(1273), - [anon_sym_o_GT] = ACTIONS(1273), - [anon_sym_err_PLUSout_GT] = ACTIONS(1273), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1273), - [anon_sym_o_PLUSe_GT] = ACTIONS(1273), - [anon_sym_e_PLUSo_GT] = ACTIONS(1273), - [aux_sym_unquoted_token1] = ACTIONS(1273), - [aux_sym_unquoted_token6] = ACTIONS(1257), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1275), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1275), + [anon_sym_CARET] = ACTIONS(1275), [anon_sym_POUND] = ACTIONS(113), }, - [1900] = { - [sym_expr_unary] = STATE(6058), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6058), - [sym__expr_binary_expression] = STATE(6060), - [sym_expr_parenthesized] = STATE(6058), - [sym__val_range] = STATE(10591), - [sym__value] = STATE(6058), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(5863), - [sym_val_variable] = STATE(6241), - [sym__var] = STATE(5322), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4555), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_unquoted] = STATE(6066), - [sym__unquoted_anonymous_prefix] = STATE(10940), - [sym_comment] = STATE(1900), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(5409), - [anon_sym_DOLLAR] = ACTIONS(5411), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(5413), - [anon_sym_not] = ACTIONS(4591), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5415), - [anon_sym_DOT_DOT_LT] = ACTIONS(5415), - [anon_sym_null] = ACTIONS(4595), - [anon_sym_true] = ACTIONS(4597), - [anon_sym_false] = ACTIONS(4597), - [aux_sym__val_number_decimal_token1] = ACTIONS(4599), - [aux_sym__val_number_decimal_token2] = ACTIONS(4601), - [anon_sym_DOT2] = ACTIONS(5417), - [aux_sym__val_number_decimal_token3] = ACTIONS(4605), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(5419), - [aux_sym__val_number_token5] = ACTIONS(5419), - [aux_sym__val_number_token6] = ACTIONS(5419), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(4609), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(3620), - [anon_sym_POUND] = ACTIONS(3), + [2138] = { + [sym_cell_path] = STATE(2577), + [sym_path] = STATE(2095), + [sym_comment] = STATE(2138), + [anon_sym_SEMI] = ACTIONS(1051), + [anon_sym_LF] = ACTIONS(1053), + [anon_sym_LBRACK] = ACTIONS(1051), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_RPAREN] = ACTIONS(1051), + [anon_sym_PIPE] = ACTIONS(1051), + [anon_sym_DOLLAR] = ACTIONS(1051), + [anon_sym_GT] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_in] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(1051), + [anon_sym_RBRACE] = ACTIONS(1051), + [anon_sym_DOT_DOT] = ACTIONS(1051), + [anon_sym_STAR] = ACTIONS(1051), + [anon_sym_STAR_STAR] = ACTIONS(1051), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_mod] = ACTIONS(1051), + [anon_sym_SLASH_SLASH] = ACTIONS(1051), + [anon_sym_PLUS] = ACTIONS(1051), + [anon_sym_bit_DASHshl] = ACTIONS(1051), + [anon_sym_bit_DASHshr] = ACTIONS(1051), + [anon_sym_EQ_EQ] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1051), + [anon_sym_LT2] = ACTIONS(1051), + [anon_sym_LT_EQ] = ACTIONS(1051), + [anon_sym_GT_EQ] = ACTIONS(1051), + [anon_sym_not_DASHin] = ACTIONS(1051), + [anon_sym_starts_DASHwith] = ACTIONS(1051), + [anon_sym_ends_DASHwith] = ACTIONS(1051), + [anon_sym_EQ_TILDE] = ACTIONS(1051), + [anon_sym_BANG_TILDE] = ACTIONS(1051), + [anon_sym_bit_DASHand] = ACTIONS(1051), + [anon_sym_bit_DASHxor] = ACTIONS(1051), + [anon_sym_bit_DASHor] = ACTIONS(1051), + [anon_sym_and] = ACTIONS(1051), + [anon_sym_xor] = ACTIONS(1051), + [anon_sym_or] = ACTIONS(1051), + [anon_sym_not] = ACTIONS(1051), + [anon_sym_DOT] = ACTIONS(5731), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1051), + [anon_sym_DOT_DOT_LT] = ACTIONS(1051), + [anon_sym_null] = ACTIONS(1051), + [anon_sym_true] = ACTIONS(1051), + [anon_sym_false] = ACTIONS(1051), + [aux_sym__val_number_decimal_token1] = ACTIONS(1051), + [aux_sym__val_number_decimal_token2] = ACTIONS(1051), + [anon_sym_DOT2] = ACTIONS(1051), + [aux_sym__val_number_decimal_token3] = ACTIONS(1051), + [aux_sym__val_number_token1] = ACTIONS(1051), + [aux_sym__val_number_token2] = ACTIONS(1051), + [aux_sym__val_number_token3] = ACTIONS(1051), + [aux_sym__val_number_token4] = ACTIONS(1051), + [aux_sym__val_number_token5] = ACTIONS(1051), + [aux_sym__val_number_token6] = ACTIONS(1051), + [anon_sym_0b] = ACTIONS(1051), + [anon_sym_0o] = ACTIONS(1051), + [anon_sym_0x] = ACTIONS(1051), + [sym_val_date] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(1051), + [sym__str_single_quotes] = ACTIONS(1051), + [sym__str_back_ticks] = ACTIONS(1051), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1051), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1051), + [anon_sym_POUND] = ACTIONS(113), }, - [1901] = { - [sym_expr_unary] = STATE(6058), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6058), - [sym__expr_binary_expression] = STATE(6067), - [sym_expr_parenthesized] = STATE(6058), - [sym__val_range] = STATE(10591), - [sym__value] = STATE(6058), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(5863), - [sym_val_variable] = STATE(6241), - [sym__var] = STATE(5322), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4555), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_unquoted] = STATE(6070), - [sym__unquoted_anonymous_prefix] = STATE(10940), - [sym_comment] = STATE(1901), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(5409), - [anon_sym_DOLLAR] = ACTIONS(5411), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(5413), - [anon_sym_not] = ACTIONS(4591), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5415), - [anon_sym_DOT_DOT_LT] = ACTIONS(5415), - [anon_sym_null] = ACTIONS(4595), - [anon_sym_true] = ACTIONS(4597), - [anon_sym_false] = ACTIONS(4597), - [aux_sym__val_number_decimal_token1] = ACTIONS(4599), - [aux_sym__val_number_decimal_token2] = ACTIONS(4601), - [anon_sym_DOT2] = ACTIONS(5417), - [aux_sym__val_number_decimal_token3] = ACTIONS(4605), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(5419), - [aux_sym__val_number_token5] = ACTIONS(5419), - [aux_sym__val_number_token6] = ACTIONS(5419), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(4609), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(3620), - [anon_sym_POUND] = ACTIONS(3), + [2139] = { + [sym__expression] = STATE(7132), + [sym_expr_unary] = STATE(5677), + [sym__expr_unary_minus] = STATE(5679), + [sym_expr_binary] = STATE(5677), + [sym__expr_binary_expression] = STATE(6377), + [sym_expr_parenthesized] = STATE(4919), + [sym_val_range] = STATE(8295), + [sym__value] = STATE(5677), + [sym_val_nothing] = STATE(5612), + [sym_val_bool] = STATE(5612), + [sym_val_variable] = STATE(4867), + [sym__var] = STATE(4310), + [sym_val_number] = STATE(5612), + [sym__val_number_decimal] = STATE(4408), + [sym__val_number] = STATE(5661), + [sym_val_duration] = STATE(5612), + [sym_val_filesize] = STATE(5612), + [sym_val_binary] = STATE(5612), + [sym_val_string] = STATE(5612), + [sym__str_double_quotes] = STATE(5733), + [sym_val_interpolated] = STATE(5612), + [sym__inter_single_quotes] = STATE(5590), + [sym__inter_double_quotes] = STATE(5591), + [sym_val_list] = STATE(5612), + [sym_val_record] = STATE(5612), + [sym_val_table] = STATE(5612), + [sym_val_closure] = STATE(5612), + [sym__flag] = STATE(2036), + [sym_short_flag] = STATE(4939), + [sym_long_flag] = STATE(4939), + [sym_long_flag_equals_value] = STATE(4865), + [sym_comment] = STATE(2139), + [ts_builtin_sym_end] = ACTIONS(5603), + [anon_sym_SEMI] = ACTIONS(5601), + [anon_sym_LF] = ACTIONS(5603), + [anon_sym_LBRACK] = ACTIONS(5667), + [anon_sym_LPAREN] = ACTIONS(5669), + [anon_sym_PIPE] = ACTIONS(5601), + [anon_sym_DOLLAR] = ACTIONS(2667), + [anon_sym_DASH_DASH] = ACTIONS(5671), + [anon_sym_DASH] = ACTIONS(5673), + [anon_sym_LBRACE] = ACTIONS(5675), + [anon_sym_DOT_DOT] = ACTIONS(5677), + [anon_sym_not] = ACTIONS(5679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5681), + [anon_sym_DOT_DOT_LT] = ACTIONS(5681), + [anon_sym_null] = ACTIONS(5683), + [anon_sym_true] = ACTIONS(5685), + [anon_sym_false] = ACTIONS(5685), + [aux_sym__val_number_decimal_token1] = ACTIONS(5687), + [aux_sym__val_number_decimal_token2] = ACTIONS(5687), + [anon_sym_DOT2] = ACTIONS(5689), + [aux_sym__val_number_decimal_token3] = ACTIONS(5691), + [aux_sym__val_number_token1] = ACTIONS(5693), + [aux_sym__val_number_token2] = ACTIONS(5693), + [aux_sym__val_number_token3] = ACTIONS(5693), + [aux_sym__val_number_token4] = ACTIONS(5693), + [aux_sym__val_number_token5] = ACTIONS(5693), + [aux_sym__val_number_token6] = ACTIONS(5693), + [anon_sym_0b] = ACTIONS(2695), + [anon_sym_0o] = ACTIONS(2697), + [anon_sym_0x] = ACTIONS(2697), + [sym_val_date] = ACTIONS(5695), + [anon_sym_DQUOTE] = ACTIONS(5697), + [sym__str_single_quotes] = ACTIONS(5699), + [sym__str_back_ticks] = ACTIONS(5699), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5703), + [anon_sym_POUND] = ACTIONS(113), }, - [1902] = { - [sym_expr_unary] = STATE(6058), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6058), - [sym__expr_binary_expression] = STATE(6074), - [sym_expr_parenthesized] = STATE(6058), - [sym__val_range] = STATE(10591), - [sym__value] = STATE(6058), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(5863), - [sym_val_variable] = STATE(6241), - [sym__var] = STATE(5322), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4555), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_unquoted] = STATE(6077), - [sym__unquoted_anonymous_prefix] = STATE(10940), - [sym_comment] = STATE(1902), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(5409), - [anon_sym_DOLLAR] = ACTIONS(5411), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(5413), - [anon_sym_not] = ACTIONS(4591), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5415), - [anon_sym_DOT_DOT_LT] = ACTIONS(5415), - [anon_sym_null] = ACTIONS(4595), - [anon_sym_true] = ACTIONS(4597), - [anon_sym_false] = ACTIONS(4597), - [aux_sym__val_number_decimal_token1] = ACTIONS(4599), - [aux_sym__val_number_decimal_token2] = ACTIONS(4601), - [anon_sym_DOT2] = ACTIONS(5417), - [aux_sym__val_number_decimal_token3] = ACTIONS(4605), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(5419), - [aux_sym__val_number_token5] = ACTIONS(5419), - [aux_sym__val_number_token6] = ACTIONS(5419), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(4609), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(3620), + [2140] = { + [sym_comment] = STATE(2140), + [ts_builtin_sym_end] = ACTIONS(5153), + [anon_sym_export] = ACTIONS(5151), + [anon_sym_alias] = ACTIONS(5151), + [anon_sym_let] = ACTIONS(5151), + [anon_sym_let_DASHenv] = ACTIONS(5151), + [anon_sym_mut] = ACTIONS(5151), + [anon_sym_const] = ACTIONS(5151), + [anon_sym_SEMI] = ACTIONS(5151), + [sym_cmd_identifier] = ACTIONS(5151), + [anon_sym_LF] = ACTIONS(5153), + [anon_sym_def] = ACTIONS(5151), + [anon_sym_export_DASHenv] = ACTIONS(5151), + [anon_sym_extern] = ACTIONS(5151), + [anon_sym_module] = ACTIONS(5151), + [anon_sym_use] = ACTIONS(5151), + [anon_sym_LBRACK] = ACTIONS(5151), + [anon_sym_LPAREN] = ACTIONS(5151), + [anon_sym_DOLLAR] = ACTIONS(5151), + [anon_sym_error] = ACTIONS(5151), + [anon_sym_DASH_DASH] = ACTIONS(5151), + [anon_sym_DASH] = ACTIONS(5151), + [anon_sym_break] = ACTIONS(5151), + [anon_sym_continue] = ACTIONS(5151), + [anon_sym_for] = ACTIONS(5151), + [anon_sym_loop] = ACTIONS(5151), + [anon_sym_while] = ACTIONS(5151), + [anon_sym_do] = ACTIONS(5151), + [anon_sym_if] = ACTIONS(5151), + [anon_sym_match] = ACTIONS(5151), + [anon_sym_LBRACE] = ACTIONS(5151), + [anon_sym_DOT_DOT] = ACTIONS(5151), + [anon_sym_try] = ACTIONS(5151), + [anon_sym_return] = ACTIONS(5151), + [anon_sym_source] = ACTIONS(5151), + [anon_sym_source_DASHenv] = ACTIONS(5151), + [anon_sym_register] = ACTIONS(5151), + [anon_sym_hide] = ACTIONS(5151), + [anon_sym_hide_DASHenv] = ACTIONS(5151), + [anon_sym_overlay] = ACTIONS(5151), + [anon_sym_as] = ACTIONS(5151), + [anon_sym_where] = ACTIONS(5151), + [anon_sym_not] = ACTIONS(5151), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5151), + [anon_sym_DOT_DOT_LT] = ACTIONS(5151), + [anon_sym_null] = ACTIONS(5151), + [anon_sym_true] = ACTIONS(5151), + [anon_sym_false] = ACTIONS(5151), + [aux_sym__val_number_decimal_token1] = ACTIONS(5151), + [aux_sym__val_number_decimal_token2] = ACTIONS(5151), + [anon_sym_DOT2] = ACTIONS(5151), + [aux_sym__val_number_decimal_token3] = ACTIONS(5151), + [aux_sym__val_number_token1] = ACTIONS(5151), + [aux_sym__val_number_token2] = ACTIONS(5151), + [aux_sym__val_number_token3] = ACTIONS(5151), + [aux_sym__val_number_token4] = ACTIONS(5151), + [aux_sym__val_number_token5] = ACTIONS(5151), + [aux_sym__val_number_token6] = ACTIONS(5151), + [anon_sym_0b] = ACTIONS(5151), + [anon_sym_0o] = ACTIONS(5151), + [anon_sym_0x] = ACTIONS(5151), + [sym_val_date] = ACTIONS(5151), + [anon_sym_DQUOTE] = ACTIONS(5151), + [sym__str_single_quotes] = ACTIONS(5151), + [sym__str_back_ticks] = ACTIONS(5151), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5151), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5151), + [anon_sym_CARET] = ACTIONS(5151), + [anon_sym_POUND] = ACTIONS(113), + }, + [2141] = { + [sym_comment] = STATE(2141), + [anon_sym_LBRACK] = ACTIONS(1169), + [anon_sym_COMMA] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(1169), + [anon_sym_DOLLAR] = ACTIONS(1169), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_DASH] = ACTIONS(1076), + [anon_sym_in] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1169), + [anon_sym_RBRACE] = ACTIONS(1169), + [anon_sym__] = ACTIONS(1076), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_STAR] = ACTIONS(1076), + [anon_sym_STAR_STAR] = ACTIONS(1169), + [anon_sym_PLUS_PLUS] = ACTIONS(1169), + [anon_sym_SLASH] = ACTIONS(1076), + [anon_sym_mod] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1076), + [anon_sym_bit_DASHshl] = ACTIONS(1169), + [anon_sym_bit_DASHshr] = ACTIONS(1169), + [anon_sym_EQ_EQ] = ACTIONS(1169), + [anon_sym_BANG_EQ] = ACTIONS(1169), + [anon_sym_LT2] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1169), + [anon_sym_GT_EQ] = ACTIONS(1169), + [anon_sym_not_DASHin] = ACTIONS(1169), + [anon_sym_starts_DASHwith] = ACTIONS(1169), + [anon_sym_ends_DASHwith] = ACTIONS(1169), + [anon_sym_EQ_TILDE] = ACTIONS(1169), + [anon_sym_BANG_TILDE] = ACTIONS(1169), + [anon_sym_bit_DASHand] = ACTIONS(1169), + [anon_sym_bit_DASHxor] = ACTIONS(1169), + [anon_sym_bit_DASHor] = ACTIONS(1169), + [anon_sym_and] = ACTIONS(1169), + [anon_sym_xor] = ACTIONS(1169), + [anon_sym_or] = ACTIONS(1169), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1169), + [anon_sym_DOT_DOT_LT] = ACTIONS(1169), + [anon_sym_null] = ACTIONS(1169), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [aux_sym__val_number_decimal_token1] = ACTIONS(1076), + [aux_sym__val_number_decimal_token2] = ACTIONS(1169), + [anon_sym_DOT2] = ACTIONS(1076), + [aux_sym__val_number_decimal_token3] = ACTIONS(1169), + [aux_sym__val_number_token1] = ACTIONS(1169), + [aux_sym__val_number_token2] = ACTIONS(1169), + [aux_sym__val_number_token3] = ACTIONS(1169), + [aux_sym__val_number_token4] = ACTIONS(1169), + [aux_sym__val_number_token5] = ACTIONS(1169), + [aux_sym__val_number_token6] = ACTIONS(1169), + [anon_sym_0b] = ACTIONS(1076), + [anon_sym_0o] = ACTIONS(1076), + [anon_sym_0x] = ACTIONS(1076), + [sym_val_date] = ACTIONS(1169), + [anon_sym_DQUOTE] = ACTIONS(1169), + [sym__str_single_quotes] = ACTIONS(1169), + [sym__str_back_ticks] = ACTIONS(1169), + [anon_sym_err_GT] = ACTIONS(1169), + [anon_sym_out_GT] = ACTIONS(1169), + [anon_sym_e_GT] = ACTIONS(1169), + [anon_sym_o_GT] = ACTIONS(1169), + [anon_sym_err_PLUSout_GT] = ACTIONS(1169), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1169), + [anon_sym_o_PLUSe_GT] = ACTIONS(1169), + [anon_sym_e_PLUSo_GT] = ACTIONS(1169), + [aux_sym_unquoted_token1] = ACTIONS(1076), [anon_sym_POUND] = ACTIONS(3), }, - [1903] = { - [sym_expr_unary] = STATE(6058), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6058), - [sym__expr_binary_expression] = STATE(6081), - [sym_expr_parenthesized] = STATE(6058), - [sym__val_range] = STATE(10591), - [sym__value] = STATE(6058), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(5863), - [sym_val_variable] = STATE(6241), - [sym__var] = STATE(5322), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4555), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_unquoted] = STATE(6082), - [sym__unquoted_anonymous_prefix] = STATE(10940), - [sym_comment] = STATE(1903), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(5409), - [anon_sym_DOLLAR] = ACTIONS(5411), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(5413), - [anon_sym_not] = ACTIONS(4591), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5415), - [anon_sym_DOT_DOT_LT] = ACTIONS(5415), - [anon_sym_null] = ACTIONS(4595), - [anon_sym_true] = ACTIONS(4597), - [anon_sym_false] = ACTIONS(4597), - [aux_sym__val_number_decimal_token1] = ACTIONS(4599), - [aux_sym__val_number_decimal_token2] = ACTIONS(4601), - [anon_sym_DOT2] = ACTIONS(5417), - [aux_sym__val_number_decimal_token3] = ACTIONS(4605), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(5419), - [aux_sym__val_number_token5] = ACTIONS(5419), - [aux_sym__val_number_token6] = ACTIONS(5419), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(4609), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(3620), + [2142] = { + [sym__expression] = STATE(7132), + [sym_expr_unary] = STATE(5677), + [sym__expr_unary_minus] = STATE(5679), + [sym_expr_binary] = STATE(5677), + [sym__expr_binary_expression] = STATE(6377), + [sym_expr_parenthesized] = STATE(4919), + [sym_val_range] = STATE(8295), + [sym__value] = STATE(5677), + [sym_val_nothing] = STATE(5612), + [sym_val_bool] = STATE(5612), + [sym_val_variable] = STATE(4867), + [sym__var] = STATE(4310), + [sym_val_number] = STATE(5612), + [sym__val_number_decimal] = STATE(4408), + [sym__val_number] = STATE(5661), + [sym_val_duration] = STATE(5612), + [sym_val_filesize] = STATE(5612), + [sym_val_binary] = STATE(5612), + [sym_val_string] = STATE(5612), + [sym__str_double_quotes] = STATE(5733), + [sym_val_interpolated] = STATE(5612), + [sym__inter_single_quotes] = STATE(5590), + [sym__inter_double_quotes] = STATE(5591), + [sym_val_list] = STATE(5612), + [sym_val_record] = STATE(5612), + [sym_val_table] = STATE(5612), + [sym_val_closure] = STATE(5612), + [sym__flag] = STATE(2065), + [sym_short_flag] = STATE(4939), + [sym_long_flag] = STATE(4939), + [sym_long_flag_equals_value] = STATE(4865), + [sym_comment] = STATE(2142), + [ts_builtin_sym_end] = ACTIONS(5603), + [anon_sym_SEMI] = ACTIONS(5601), + [anon_sym_LF] = ACTIONS(5603), + [anon_sym_LBRACK] = ACTIONS(5667), + [anon_sym_LPAREN] = ACTIONS(5669), + [anon_sym_PIPE] = ACTIONS(5601), + [anon_sym_DOLLAR] = ACTIONS(2667), + [anon_sym_DASH_DASH] = ACTIONS(5671), + [anon_sym_DASH] = ACTIONS(5673), + [anon_sym_LBRACE] = ACTIONS(5675), + [anon_sym_DOT_DOT] = ACTIONS(5677), + [anon_sym_not] = ACTIONS(5679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5681), + [anon_sym_DOT_DOT_LT] = ACTIONS(5681), + [anon_sym_null] = ACTIONS(5683), + [anon_sym_true] = ACTIONS(5685), + [anon_sym_false] = ACTIONS(5685), + [aux_sym__val_number_decimal_token1] = ACTIONS(5687), + [aux_sym__val_number_decimal_token2] = ACTIONS(5687), + [anon_sym_DOT2] = ACTIONS(5689), + [aux_sym__val_number_decimal_token3] = ACTIONS(5691), + [aux_sym__val_number_token1] = ACTIONS(5693), + [aux_sym__val_number_token2] = ACTIONS(5693), + [aux_sym__val_number_token3] = ACTIONS(5693), + [aux_sym__val_number_token4] = ACTIONS(5693), + [aux_sym__val_number_token5] = ACTIONS(5693), + [aux_sym__val_number_token6] = ACTIONS(5693), + [anon_sym_0b] = ACTIONS(2695), + [anon_sym_0o] = ACTIONS(2697), + [anon_sym_0x] = ACTIONS(2697), + [sym_val_date] = ACTIONS(5695), + [anon_sym_DQUOTE] = ACTIONS(5697), + [sym__str_single_quotes] = ACTIONS(5699), + [sym__str_back_ticks] = ACTIONS(5699), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5703), + [anon_sym_POUND] = ACTIONS(113), + }, + [2143] = { + [sym_comment] = STATE(2143), + [anon_sym_LBRACK] = ACTIONS(1173), + [anon_sym_COMMA] = ACTIONS(1173), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_DOLLAR] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_RBRACE] = ACTIONS(1173), + [anon_sym__] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1173), + [anon_sym_SLASH_SLASH] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1173), + [anon_sym_bit_DASHshr] = ACTIONS(1173), + [anon_sym_EQ_EQ] = ACTIONS(1173), + [anon_sym_BANG_EQ] = ACTIONS(1173), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1173), + [anon_sym_GT_EQ] = ACTIONS(1173), + [anon_sym_not_DASHin] = ACTIONS(1173), + [anon_sym_starts_DASHwith] = ACTIONS(1173), + [anon_sym_ends_DASHwith] = ACTIONS(1173), + [anon_sym_EQ_TILDE] = ACTIONS(1173), + [anon_sym_BANG_TILDE] = ACTIONS(1173), + [anon_sym_bit_DASHand] = ACTIONS(1173), + [anon_sym_bit_DASHxor] = ACTIONS(1173), + [anon_sym_bit_DASHor] = ACTIONS(1173), + [anon_sym_and] = ACTIONS(1173), + [anon_sym_xor] = ACTIONS(1173), + [anon_sym_or] = ACTIONS(1173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1173), + [anon_sym_DOT_DOT_LT] = ACTIONS(1173), + [anon_sym_null] = ACTIONS(1173), + [anon_sym_true] = ACTIONS(1173), + [anon_sym_false] = ACTIONS(1173), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1173), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1173), + [aux_sym__val_number_token1] = ACTIONS(1173), + [aux_sym__val_number_token2] = ACTIONS(1173), + [aux_sym__val_number_token3] = ACTIONS(1173), + [aux_sym__val_number_token4] = ACTIONS(1173), + [aux_sym__val_number_token5] = ACTIONS(1173), + [aux_sym__val_number_token6] = ACTIONS(1173), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym__str_single_quotes] = ACTIONS(1173), + [sym__str_back_ticks] = ACTIONS(1173), + [anon_sym_err_GT] = ACTIONS(1173), + [anon_sym_out_GT] = ACTIONS(1173), + [anon_sym_e_GT] = ACTIONS(1173), + [anon_sym_o_GT] = ACTIONS(1173), + [anon_sym_err_PLUSout_GT] = ACTIONS(1173), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1173), + [anon_sym_o_PLUSe_GT] = ACTIONS(1173), + [anon_sym_e_PLUSo_GT] = ACTIONS(1173), + [aux_sym_unquoted_token1] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(3), }, - [1904] = { - [sym_expr_unary] = STATE(6058), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6058), - [sym__expr_binary_expression] = STATE(6083), - [sym_expr_parenthesized] = STATE(6058), - [sym__val_range] = STATE(10591), - [sym__value] = STATE(6058), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(5863), - [sym_val_variable] = STATE(6241), - [sym__var] = STATE(5322), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4555), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_unquoted] = STATE(6086), - [sym__unquoted_anonymous_prefix] = STATE(10940), - [sym_comment] = STATE(1904), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(5409), - [anon_sym_DOLLAR] = ACTIONS(5411), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(5413), - [anon_sym_not] = ACTIONS(4591), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5415), - [anon_sym_DOT_DOT_LT] = ACTIONS(5415), - [anon_sym_null] = ACTIONS(4595), - [anon_sym_true] = ACTIONS(4597), - [anon_sym_false] = ACTIONS(4597), - [aux_sym__val_number_decimal_token1] = ACTIONS(4599), - [aux_sym__val_number_decimal_token2] = ACTIONS(4601), - [anon_sym_DOT2] = ACTIONS(5417), - [aux_sym__val_number_decimal_token3] = ACTIONS(4605), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(5419), - [aux_sym__val_number_token5] = ACTIONS(5419), - [aux_sym__val_number_token6] = ACTIONS(5419), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(4609), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(3620), + [2144] = { + [sym_comment] = STATE(2144), + [anon_sym_LBRACK] = ACTIONS(1173), + [anon_sym_COMMA] = ACTIONS(1173), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_DOLLAR] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_RBRACE] = ACTIONS(1173), + [anon_sym__] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1173), + [anon_sym_SLASH_SLASH] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1173), + [anon_sym_bit_DASHshr] = ACTIONS(1173), + [anon_sym_EQ_EQ] = ACTIONS(1173), + [anon_sym_BANG_EQ] = ACTIONS(1173), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1173), + [anon_sym_GT_EQ] = ACTIONS(1173), + [anon_sym_not_DASHin] = ACTIONS(1173), + [anon_sym_starts_DASHwith] = ACTIONS(1173), + [anon_sym_ends_DASHwith] = ACTIONS(1173), + [anon_sym_EQ_TILDE] = ACTIONS(1173), + [anon_sym_BANG_TILDE] = ACTIONS(1173), + [anon_sym_bit_DASHand] = ACTIONS(1173), + [anon_sym_bit_DASHxor] = ACTIONS(1173), + [anon_sym_bit_DASHor] = ACTIONS(1173), + [anon_sym_and] = ACTIONS(1173), + [anon_sym_xor] = ACTIONS(1173), + [anon_sym_or] = ACTIONS(1173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1173), + [anon_sym_DOT_DOT_LT] = ACTIONS(1173), + [anon_sym_null] = ACTIONS(1173), + [anon_sym_true] = ACTIONS(1173), + [anon_sym_false] = ACTIONS(1173), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1173), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1173), + [aux_sym__val_number_token1] = ACTIONS(1173), + [aux_sym__val_number_token2] = ACTIONS(1173), + [aux_sym__val_number_token3] = ACTIONS(1173), + [aux_sym__val_number_token4] = ACTIONS(1173), + [aux_sym__val_number_token5] = ACTIONS(1173), + [aux_sym__val_number_token6] = ACTIONS(1173), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym__str_single_quotes] = ACTIONS(1173), + [sym__str_back_ticks] = ACTIONS(1173), + [anon_sym_err_GT] = ACTIONS(1173), + [anon_sym_out_GT] = ACTIONS(1173), + [anon_sym_e_GT] = ACTIONS(1173), + [anon_sym_o_GT] = ACTIONS(1173), + [anon_sym_err_PLUSout_GT] = ACTIONS(1173), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1173), + [anon_sym_o_PLUSe_GT] = ACTIONS(1173), + [anon_sym_e_PLUSo_GT] = ACTIONS(1173), + [aux_sym_unquoted_token1] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(3), }, - [1905] = { - [sym_comment] = STATE(1905), - [anon_sym_export] = ACTIONS(1168), - [anon_sym_alias] = ACTIONS(1168), - [anon_sym_let] = ACTIONS(1168), - [anon_sym_let_DASHenv] = ACTIONS(1168), - [anon_sym_mut] = ACTIONS(1168), - [anon_sym_const] = ACTIONS(1168), - [anon_sym_SEMI] = ACTIONS(1168), - [sym_cmd_identifier] = ACTIONS(1168), - [anon_sym_LF] = ACTIONS(1170), - [anon_sym_def] = ACTIONS(1168), - [anon_sym_export_DASHenv] = ACTIONS(1168), - [anon_sym_extern] = ACTIONS(1168), - [anon_sym_module] = ACTIONS(1168), - [anon_sym_use] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_RPAREN] = ACTIONS(1168), - [anon_sym_DOLLAR] = ACTIONS(1168), - [anon_sym_error] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1168), - [anon_sym_break] = ACTIONS(1168), - [anon_sym_continue] = ACTIONS(1168), - [anon_sym_for] = ACTIONS(1168), - [anon_sym_loop] = ACTIONS(1168), - [anon_sym_while] = ACTIONS(1168), - [anon_sym_do] = ACTIONS(1168), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_match] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1168), - [anon_sym_RBRACE] = ACTIONS(1168), - [anon_sym_DOT_DOT] = ACTIONS(1168), - [anon_sym_try] = ACTIONS(1168), - [anon_sym_return] = ACTIONS(1168), - [anon_sym_source] = ACTIONS(1168), - [anon_sym_source_DASHenv] = ACTIONS(1168), - [anon_sym_register] = ACTIONS(1168), - [anon_sym_hide] = ACTIONS(1168), - [anon_sym_hide_DASHenv] = ACTIONS(1168), - [anon_sym_overlay] = ACTIONS(1168), - [anon_sym_as] = ACTIONS(1168), - [anon_sym_where] = ACTIONS(1168), - [anon_sym_not] = ACTIONS(1168), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1168), - [anon_sym_DOT_DOT_LT] = ACTIONS(1168), - [anon_sym_null] = ACTIONS(1168), - [anon_sym_true] = ACTIONS(1168), - [anon_sym_false] = ACTIONS(1168), - [aux_sym__val_number_decimal_token1] = ACTIONS(1168), - [aux_sym__val_number_decimal_token2] = ACTIONS(1168), - [anon_sym_DOT2] = ACTIONS(1168), - [aux_sym__val_number_decimal_token3] = ACTIONS(1168), - [aux_sym__val_number_token1] = ACTIONS(1168), - [aux_sym__val_number_token2] = ACTIONS(1168), - [aux_sym__val_number_token3] = ACTIONS(1168), - [aux_sym__val_number_token4] = ACTIONS(1168), - [aux_sym__val_number_token5] = ACTIONS(1168), - [aux_sym__val_number_token6] = ACTIONS(1168), - [anon_sym_0b] = ACTIONS(1168), - [anon_sym_0o] = ACTIONS(1168), - [anon_sym_0x] = ACTIONS(1168), - [sym_val_date] = ACTIONS(1168), - [anon_sym_DQUOTE] = ACTIONS(1168), - [sym__str_single_quotes] = ACTIONS(1168), - [sym__str_back_ticks] = ACTIONS(1168), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1168), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1168), - [anon_sym_CARET] = ACTIONS(1168), + [2145] = { + [sym_comment] = STATE(2145), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1279), + [anon_sym_let] = ACTIONS(1279), + [anon_sym_let_DASHenv] = ACTIONS(1279), + [anon_sym_mut] = ACTIONS(1279), + [anon_sym_const] = ACTIONS(1279), + [anon_sym_SEMI] = ACTIONS(1279), + [sym_cmd_identifier] = ACTIONS(1279), + [anon_sym_LF] = ACTIONS(1281), + [anon_sym_def] = ACTIONS(1279), + [anon_sym_export_DASHenv] = ACTIONS(1279), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_use] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_RPAREN] = ACTIONS(1279), + [anon_sym_DOLLAR] = ACTIONS(1279), + [anon_sym_error] = ACTIONS(1279), + [anon_sym_DASH] = ACTIONS(1279), + [anon_sym_break] = ACTIONS(1279), + [anon_sym_continue] = ACTIONS(1279), + [anon_sym_for] = ACTIONS(1279), + [anon_sym_loop] = ACTIONS(1279), + [anon_sym_while] = ACTIONS(1279), + [anon_sym_do] = ACTIONS(1279), + [anon_sym_if] = ACTIONS(1279), + [anon_sym_match] = ACTIONS(1279), + [anon_sym_LBRACE] = ACTIONS(1279), + [anon_sym_RBRACE] = ACTIONS(1279), + [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym_try] = ACTIONS(1279), + [anon_sym_return] = ACTIONS(1279), + [anon_sym_source] = ACTIONS(1279), + [anon_sym_source_DASHenv] = ACTIONS(1279), + [anon_sym_register] = ACTIONS(1279), + [anon_sym_hide] = ACTIONS(1279), + [anon_sym_hide_DASHenv] = ACTIONS(1279), + [anon_sym_overlay] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1279), + [anon_sym_where] = ACTIONS(1279), + [anon_sym_not] = ACTIONS(1279), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1279), + [anon_sym_DOT_DOT_LT] = ACTIONS(1279), + [anon_sym_null] = ACTIONS(1279), + [anon_sym_true] = ACTIONS(1279), + [anon_sym_false] = ACTIONS(1279), + [aux_sym__val_number_decimal_token1] = ACTIONS(1279), + [aux_sym__val_number_decimal_token2] = ACTIONS(1279), + [anon_sym_DOT2] = ACTIONS(1279), + [aux_sym__val_number_decimal_token3] = ACTIONS(1279), + [aux_sym__val_number_token1] = ACTIONS(1279), + [aux_sym__val_number_token2] = ACTIONS(1279), + [aux_sym__val_number_token3] = ACTIONS(1279), + [aux_sym__val_number_token4] = ACTIONS(1279), + [aux_sym__val_number_token5] = ACTIONS(1279), + [aux_sym__val_number_token6] = ACTIONS(1279), + [anon_sym_0b] = ACTIONS(1279), + [anon_sym_0o] = ACTIONS(1279), + [anon_sym_0x] = ACTIONS(1279), + [sym_val_date] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(1279), + [sym__str_single_quotes] = ACTIONS(1279), + [sym__str_back_ticks] = ACTIONS(1279), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1279), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1279), + [anon_sym_CARET] = ACTIONS(1279), [anon_sym_POUND] = ACTIONS(113), }, - [1906] = { - [sym_expr_unary] = STATE(6058), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6058), - [sym__expr_binary_expression] = STATE(6090), - [sym_expr_parenthesized] = STATE(6058), - [sym__val_range] = STATE(10591), - [sym__value] = STATE(6058), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(5863), - [sym_val_variable] = STATE(6241), - [sym__var] = STATE(5322), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4555), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_unquoted] = STATE(6095), - [sym__unquoted_anonymous_prefix] = STATE(10940), - [sym_comment] = STATE(1906), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(5409), - [anon_sym_DOLLAR] = ACTIONS(5411), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(5413), - [anon_sym_not] = ACTIONS(4591), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5415), - [anon_sym_DOT_DOT_LT] = ACTIONS(5415), - [anon_sym_null] = ACTIONS(4595), - [anon_sym_true] = ACTIONS(4597), - [anon_sym_false] = ACTIONS(4597), - [aux_sym__val_number_decimal_token1] = ACTIONS(4599), - [aux_sym__val_number_decimal_token2] = ACTIONS(4601), - [anon_sym_DOT2] = ACTIONS(5417), - [aux_sym__val_number_decimal_token3] = ACTIONS(4605), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(5419), - [aux_sym__val_number_token5] = ACTIONS(5419), - [aux_sym__val_number_token6] = ACTIONS(5419), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(4609), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(3620), + [2146] = { + [sym_comment] = STATE(2146), + [anon_sym_LBRACK] = ACTIONS(1173), + [anon_sym_COMMA] = ACTIONS(1173), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_DOLLAR] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_RBRACE] = ACTIONS(1173), + [anon_sym__] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1173), + [anon_sym_SLASH_SLASH] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1173), + [anon_sym_bit_DASHshr] = ACTIONS(1173), + [anon_sym_EQ_EQ] = ACTIONS(1173), + [anon_sym_BANG_EQ] = ACTIONS(1173), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1173), + [anon_sym_GT_EQ] = ACTIONS(1173), + [anon_sym_not_DASHin] = ACTIONS(1173), + [anon_sym_starts_DASHwith] = ACTIONS(1173), + [anon_sym_ends_DASHwith] = ACTIONS(1173), + [anon_sym_EQ_TILDE] = ACTIONS(1173), + [anon_sym_BANG_TILDE] = ACTIONS(1173), + [anon_sym_bit_DASHand] = ACTIONS(1173), + [anon_sym_bit_DASHxor] = ACTIONS(1173), + [anon_sym_bit_DASHor] = ACTIONS(1173), + [anon_sym_and] = ACTIONS(1173), + [anon_sym_xor] = ACTIONS(1173), + [anon_sym_or] = ACTIONS(1173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1173), + [anon_sym_DOT_DOT_LT] = ACTIONS(1173), + [anon_sym_null] = ACTIONS(1173), + [anon_sym_true] = ACTIONS(1173), + [anon_sym_false] = ACTIONS(1173), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1173), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1173), + [aux_sym__val_number_token1] = ACTIONS(1173), + [aux_sym__val_number_token2] = ACTIONS(1173), + [aux_sym__val_number_token3] = ACTIONS(1173), + [aux_sym__val_number_token4] = ACTIONS(1173), + [aux_sym__val_number_token5] = ACTIONS(1173), + [aux_sym__val_number_token6] = ACTIONS(1173), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym__str_single_quotes] = ACTIONS(1173), + [sym__str_back_ticks] = ACTIONS(1173), + [anon_sym_err_GT] = ACTIONS(1173), + [anon_sym_out_GT] = ACTIONS(1173), + [anon_sym_e_GT] = ACTIONS(1173), + [anon_sym_o_GT] = ACTIONS(1173), + [anon_sym_err_PLUSout_GT] = ACTIONS(1173), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1173), + [anon_sym_o_PLUSe_GT] = ACTIONS(1173), + [anon_sym_e_PLUSo_GT] = ACTIONS(1173), + [aux_sym_unquoted_token1] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(3), }, - [1907] = { - [sym_expr_unary] = STATE(6058), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6058), - [sym__expr_binary_expression] = STATE(6096), - [sym_expr_parenthesized] = STATE(6058), - [sym__val_range] = STATE(10591), - [sym__value] = STATE(6058), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(5863), - [sym_val_variable] = STATE(6241), - [sym__var] = STATE(5322), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4555), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_unquoted] = STATE(6109), - [sym__unquoted_anonymous_prefix] = STATE(10940), - [sym_comment] = STATE(1907), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(5409), - [anon_sym_DOLLAR] = ACTIONS(5411), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(5413), - [anon_sym_not] = ACTIONS(4591), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5415), - [anon_sym_DOT_DOT_LT] = ACTIONS(5415), - [anon_sym_null] = ACTIONS(4595), - [anon_sym_true] = ACTIONS(4597), - [anon_sym_false] = ACTIONS(4597), - [aux_sym__val_number_decimal_token1] = ACTIONS(4599), - [aux_sym__val_number_decimal_token2] = ACTIONS(4601), - [anon_sym_DOT2] = ACTIONS(5417), - [aux_sym__val_number_decimal_token3] = ACTIONS(4605), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(5419), - [aux_sym__val_number_token5] = ACTIONS(5419), - [aux_sym__val_number_token6] = ACTIONS(5419), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(4609), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(3620), + [2147] = { + [sym_comment] = STATE(2147), + [anon_sym_LBRACK] = ACTIONS(1263), + [anon_sym_COMMA] = ACTIONS(1263), + [anon_sym_RBRACK] = ACTIONS(1263), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_DOLLAR] = ACTIONS(1263), + [anon_sym_GT] = ACTIONS(1261), + [anon_sym_DASH_DASH] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1261), + [anon_sym_in] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(1263), + [anon_sym_DOT_DOT] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_STAR_STAR] = ACTIONS(1263), + [anon_sym_PLUS_PLUS] = ACTIONS(1263), + [anon_sym_SLASH] = ACTIONS(1261), + [anon_sym_mod] = ACTIONS(1263), + [anon_sym_SLASH_SLASH] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1261), + [anon_sym_bit_DASHshl] = ACTIONS(1263), + [anon_sym_bit_DASHshr] = ACTIONS(1263), + [anon_sym_EQ_EQ] = ACTIONS(1263), + [anon_sym_BANG_EQ] = ACTIONS(1263), + [anon_sym_LT2] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1263), + [anon_sym_not_DASHin] = ACTIONS(1263), + [anon_sym_starts_DASHwith] = ACTIONS(1263), + [anon_sym_ends_DASHwith] = ACTIONS(1263), + [anon_sym_EQ_TILDE] = ACTIONS(1263), + [anon_sym_BANG_TILDE] = ACTIONS(1263), + [anon_sym_bit_DASHand] = ACTIONS(1263), + [anon_sym_bit_DASHxor] = ACTIONS(1263), + [anon_sym_bit_DASHor] = ACTIONS(1263), + [anon_sym_and] = ACTIONS(1263), + [anon_sym_xor] = ACTIONS(1263), + [anon_sym_or] = ACTIONS(1263), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1263), + [anon_sym_DOT_DOT_LT] = ACTIONS(1263), + [anon_sym_null] = ACTIONS(1263), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [aux_sym__val_number_decimal_token1] = ACTIONS(1261), + [aux_sym__val_number_decimal_token2] = ACTIONS(1263), + [anon_sym_DOT2] = ACTIONS(1261), + [aux_sym__val_number_decimal_token3] = ACTIONS(1263), + [aux_sym__val_number_token1] = ACTIONS(1263), + [aux_sym__val_number_token2] = ACTIONS(1263), + [aux_sym__val_number_token3] = ACTIONS(1263), + [aux_sym__val_number_token4] = ACTIONS(1263), + [aux_sym__val_number_token5] = ACTIONS(1263), + [aux_sym__val_number_token6] = ACTIONS(1263), + [anon_sym_0b] = ACTIONS(1261), + [anon_sym_0o] = ACTIONS(1261), + [anon_sym_0x] = ACTIONS(1261), + [sym_val_date] = ACTIONS(1263), + [anon_sym_DQUOTE] = ACTIONS(1263), + [sym__str_single_quotes] = ACTIONS(1263), + [sym__str_back_ticks] = ACTIONS(1263), + [anon_sym_err_GT] = ACTIONS(1263), + [anon_sym_out_GT] = ACTIONS(1263), + [anon_sym_e_GT] = ACTIONS(1263), + [anon_sym_o_GT] = ACTIONS(1263), + [anon_sym_err_PLUSout_GT] = ACTIONS(1263), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1263), + [anon_sym_o_PLUSe_GT] = ACTIONS(1263), + [anon_sym_e_PLUSo_GT] = ACTIONS(1263), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1261), [anon_sym_POUND] = ACTIONS(3), }, - [1908] = { - [sym_comment] = STATE(1908), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_COMMA] = ACTIONS(1172), - [anon_sym_RBRACK] = ACTIONS(1172), - [anon_sym_LPAREN] = ACTIONS(1172), - [anon_sym_DOLLAR] = ACTIONS(1172), - [anon_sym_GT] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_DASH] = ACTIONS(1172), - [anon_sym_in] = ACTIONS(1172), - [anon_sym_LBRACE] = ACTIONS(1172), - [anon_sym_DOT_DOT] = ACTIONS(1172), - [anon_sym_STAR] = ACTIONS(1172), - [anon_sym_STAR_STAR] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_SLASH] = ACTIONS(1172), - [anon_sym_mod] = ACTIONS(1172), - [anon_sym_SLASH_SLASH] = ACTIONS(1172), - [anon_sym_PLUS] = ACTIONS(1172), - [anon_sym_bit_DASHshl] = ACTIONS(1172), - [anon_sym_bit_DASHshr] = ACTIONS(1172), - [anon_sym_EQ_EQ] = ACTIONS(1172), - [anon_sym_BANG_EQ] = ACTIONS(1172), - [anon_sym_LT2] = ACTIONS(1172), - [anon_sym_LT_EQ] = ACTIONS(1172), - [anon_sym_GT_EQ] = ACTIONS(1172), - [anon_sym_not_DASHin] = ACTIONS(1172), - [anon_sym_starts_DASHwith] = ACTIONS(1172), - [anon_sym_ends_DASHwith] = ACTIONS(1172), - [anon_sym_EQ_TILDE] = ACTIONS(1172), - [anon_sym_BANG_TILDE] = ACTIONS(1172), - [anon_sym_bit_DASHand] = ACTIONS(1172), - [anon_sym_bit_DASHxor] = ACTIONS(1172), - [anon_sym_bit_DASHor] = ACTIONS(1172), - [anon_sym_and] = ACTIONS(1172), - [anon_sym_xor] = ACTIONS(1172), - [anon_sym_or] = ACTIONS(1172), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1172), - [anon_sym_DOT_DOT_LT] = ACTIONS(1172), - [anon_sym_null] = ACTIONS(1172), - [anon_sym_true] = ACTIONS(1172), - [anon_sym_false] = ACTIONS(1172), - [aux_sym__val_number_decimal_token1] = ACTIONS(1172), - [aux_sym__val_number_decimal_token2] = ACTIONS(1172), - [anon_sym_DOT2] = ACTIONS(1172), - [aux_sym__val_number_decimal_token3] = ACTIONS(1172), - [aux_sym__val_number_token1] = ACTIONS(1172), - [aux_sym__val_number_token2] = ACTIONS(1172), - [aux_sym__val_number_token3] = ACTIONS(1172), - [aux_sym__val_number_token4] = ACTIONS(1172), - [aux_sym__val_number_token5] = ACTIONS(1172), - [aux_sym__val_number_token6] = ACTIONS(1172), - [anon_sym_0b] = ACTIONS(1172), - [anon_sym_0o] = ACTIONS(1172), - [anon_sym_0x] = ACTIONS(1172), - [sym_val_date] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(1172), - [sym__str_single_quotes] = ACTIONS(1172), - [sym__str_back_ticks] = ACTIONS(1172), - [sym__entry_separator] = ACTIONS(1174), - [anon_sym_err_GT] = ACTIONS(1172), - [anon_sym_out_GT] = ACTIONS(1172), - [anon_sym_e_GT] = ACTIONS(1172), - [anon_sym_o_GT] = ACTIONS(1172), - [anon_sym_err_PLUSout_GT] = ACTIONS(1172), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1172), - [anon_sym_o_PLUSe_GT] = ACTIONS(1172), - [anon_sym_e_PLUSo_GT] = ACTIONS(1172), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1172), + [2148] = { + [sym_block] = STATE(2285), + [sym_comment] = STATE(2148), + [anon_sym_export] = ACTIONS(5872), + [anon_sym_alias] = ACTIONS(5872), + [anon_sym_let] = ACTIONS(5872), + [anon_sym_let_DASHenv] = ACTIONS(5872), + [anon_sym_mut] = ACTIONS(5872), + [anon_sym_const] = ACTIONS(5872), + [anon_sym_SEMI] = ACTIONS(5872), + [sym_cmd_identifier] = ACTIONS(5872), + [anon_sym_LF] = ACTIONS(5874), + [anon_sym_def] = ACTIONS(5872), + [anon_sym_export_DASHenv] = ACTIONS(5872), + [anon_sym_extern] = ACTIONS(5872), + [anon_sym_module] = ACTIONS(5872), + [anon_sym_use] = ACTIONS(5872), + [anon_sym_LBRACK] = ACTIONS(5872), + [anon_sym_LPAREN] = ACTIONS(5872), + [anon_sym_RPAREN] = ACTIONS(5872), + [anon_sym_DOLLAR] = ACTIONS(5872), + [anon_sym_error] = ACTIONS(5872), + [anon_sym_DASH] = ACTIONS(5872), + [anon_sym_break] = ACTIONS(5872), + [anon_sym_continue] = ACTIONS(5872), + [anon_sym_for] = ACTIONS(5872), + [anon_sym_loop] = ACTIONS(5872), + [anon_sym_while] = ACTIONS(5872), + [anon_sym_do] = ACTIONS(5872), + [anon_sym_if] = ACTIONS(5872), + [anon_sym_match] = ACTIONS(5872), + [anon_sym_LBRACE] = ACTIONS(5825), + [anon_sym_RBRACE] = ACTIONS(5872), + [anon_sym_DOT_DOT] = ACTIONS(5872), + [anon_sym_try] = ACTIONS(5872), + [anon_sym_return] = ACTIONS(5872), + [anon_sym_source] = ACTIONS(5872), + [anon_sym_source_DASHenv] = ACTIONS(5872), + [anon_sym_register] = ACTIONS(5872), + [anon_sym_hide] = ACTIONS(5872), + [anon_sym_hide_DASHenv] = ACTIONS(5872), + [anon_sym_overlay] = ACTIONS(5872), + [anon_sym_where] = ACTIONS(5872), + [anon_sym_not] = ACTIONS(5872), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5872), + [anon_sym_DOT_DOT_LT] = ACTIONS(5872), + [anon_sym_null] = ACTIONS(5872), + [anon_sym_true] = ACTIONS(5872), + [anon_sym_false] = ACTIONS(5872), + [aux_sym__val_number_decimal_token1] = ACTIONS(5872), + [aux_sym__val_number_decimal_token2] = ACTIONS(5872), + [anon_sym_DOT2] = ACTIONS(5872), + [aux_sym__val_number_decimal_token3] = ACTIONS(5872), + [aux_sym__val_number_token1] = ACTIONS(5872), + [aux_sym__val_number_token2] = ACTIONS(5872), + [aux_sym__val_number_token3] = ACTIONS(5872), + [aux_sym__val_number_token4] = ACTIONS(5872), + [aux_sym__val_number_token5] = ACTIONS(5872), + [aux_sym__val_number_token6] = ACTIONS(5872), + [anon_sym_0b] = ACTIONS(5872), + [anon_sym_0o] = ACTIONS(5872), + [anon_sym_0x] = ACTIONS(5872), + [sym_val_date] = ACTIONS(5872), + [anon_sym_DQUOTE] = ACTIONS(5872), + [sym__str_single_quotes] = ACTIONS(5872), + [sym__str_back_ticks] = ACTIONS(5872), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5872), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5872), + [anon_sym_CARET] = ACTIONS(5872), [anon_sym_POUND] = ACTIONS(113), }, - [1909] = { - [sym_expr_unary] = STATE(6058), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6058), - [sym__expr_binary_expression] = STATE(6115), - [sym_expr_parenthesized] = STATE(6058), - [sym__val_range] = STATE(10591), - [sym__value] = STATE(6058), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(5863), - [sym_val_variable] = STATE(6241), - [sym__var] = STATE(5322), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4555), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_unquoted] = STATE(6120), - [sym__unquoted_anonymous_prefix] = STATE(10940), - [sym_comment] = STATE(1909), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(5409), - [anon_sym_DOLLAR] = ACTIONS(5411), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(5413), - [anon_sym_not] = ACTIONS(4591), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5415), - [anon_sym_DOT_DOT_LT] = ACTIONS(5415), - [anon_sym_null] = ACTIONS(4595), - [anon_sym_true] = ACTIONS(4597), - [anon_sym_false] = ACTIONS(4597), - [aux_sym__val_number_decimal_token1] = ACTIONS(4599), - [aux_sym__val_number_decimal_token2] = ACTIONS(4601), - [anon_sym_DOT2] = ACTIONS(5417), - [aux_sym__val_number_decimal_token3] = ACTIONS(4605), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(5419), - [aux_sym__val_number_token5] = ACTIONS(5419), - [aux_sym__val_number_token6] = ACTIONS(5419), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(4609), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(3620), + [2149] = { + [sym_block] = STATE(2292), + [sym_comment] = STATE(2149), + [anon_sym_export] = ACTIONS(5872), + [anon_sym_alias] = ACTIONS(5872), + [anon_sym_let] = ACTIONS(5872), + [anon_sym_let_DASHenv] = ACTIONS(5872), + [anon_sym_mut] = ACTIONS(5872), + [anon_sym_const] = ACTIONS(5872), + [anon_sym_SEMI] = ACTIONS(5872), + [sym_cmd_identifier] = ACTIONS(5872), + [anon_sym_LF] = ACTIONS(5874), + [anon_sym_def] = ACTIONS(5872), + [anon_sym_export_DASHenv] = ACTIONS(5872), + [anon_sym_extern] = ACTIONS(5872), + [anon_sym_module] = ACTIONS(5872), + [anon_sym_use] = ACTIONS(5872), + [anon_sym_LBRACK] = ACTIONS(5872), + [anon_sym_LPAREN] = ACTIONS(5872), + [anon_sym_RPAREN] = ACTIONS(5872), + [anon_sym_DOLLAR] = ACTIONS(5872), + [anon_sym_error] = ACTIONS(5872), + [anon_sym_DASH] = ACTIONS(5872), + [anon_sym_break] = ACTIONS(5872), + [anon_sym_continue] = ACTIONS(5872), + [anon_sym_for] = ACTIONS(5872), + [anon_sym_loop] = ACTIONS(5872), + [anon_sym_while] = ACTIONS(5872), + [anon_sym_do] = ACTIONS(5872), + [anon_sym_if] = ACTIONS(5872), + [anon_sym_match] = ACTIONS(5872), + [anon_sym_LBRACE] = ACTIONS(5825), + [anon_sym_RBRACE] = ACTIONS(5872), + [anon_sym_DOT_DOT] = ACTIONS(5872), + [anon_sym_try] = ACTIONS(5872), + [anon_sym_return] = ACTIONS(5872), + [anon_sym_source] = ACTIONS(5872), + [anon_sym_source_DASHenv] = ACTIONS(5872), + [anon_sym_register] = ACTIONS(5872), + [anon_sym_hide] = ACTIONS(5872), + [anon_sym_hide_DASHenv] = ACTIONS(5872), + [anon_sym_overlay] = ACTIONS(5872), + [anon_sym_where] = ACTIONS(5872), + [anon_sym_not] = ACTIONS(5872), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5872), + [anon_sym_DOT_DOT_LT] = ACTIONS(5872), + [anon_sym_null] = ACTIONS(5872), + [anon_sym_true] = ACTIONS(5872), + [anon_sym_false] = ACTIONS(5872), + [aux_sym__val_number_decimal_token1] = ACTIONS(5872), + [aux_sym__val_number_decimal_token2] = ACTIONS(5872), + [anon_sym_DOT2] = ACTIONS(5872), + [aux_sym__val_number_decimal_token3] = ACTIONS(5872), + [aux_sym__val_number_token1] = ACTIONS(5872), + [aux_sym__val_number_token2] = ACTIONS(5872), + [aux_sym__val_number_token3] = ACTIONS(5872), + [aux_sym__val_number_token4] = ACTIONS(5872), + [aux_sym__val_number_token5] = ACTIONS(5872), + [aux_sym__val_number_token6] = ACTIONS(5872), + [anon_sym_0b] = ACTIONS(5872), + [anon_sym_0o] = ACTIONS(5872), + [anon_sym_0x] = ACTIONS(5872), + [sym_val_date] = ACTIONS(5872), + [anon_sym_DQUOTE] = ACTIONS(5872), + [sym__str_single_quotes] = ACTIONS(5872), + [sym__str_back_ticks] = ACTIONS(5872), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5872), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5872), + [anon_sym_CARET] = ACTIONS(5872), + [anon_sym_POUND] = ACTIONS(113), + }, + [2150] = { + [sym_comment] = STATE(2150), + [anon_sym_export] = ACTIONS(1165), + [anon_sym_alias] = ACTIONS(1165), + [anon_sym_let] = ACTIONS(1165), + [anon_sym_let_DASHenv] = ACTIONS(1165), + [anon_sym_mut] = ACTIONS(1165), + [anon_sym_const] = ACTIONS(1165), + [anon_sym_SEMI] = ACTIONS(1165), + [sym_cmd_identifier] = ACTIONS(1165), + [anon_sym_LF] = ACTIONS(1167), + [anon_sym_def] = ACTIONS(1165), + [anon_sym_export_DASHenv] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1165), + [anon_sym_module] = ACTIONS(1165), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_LPAREN] = ACTIONS(1165), + [anon_sym_RPAREN] = ACTIONS(1165), + [anon_sym_DOLLAR] = ACTIONS(1165), + [anon_sym_error] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_break] = ACTIONS(1165), + [anon_sym_continue] = ACTIONS(1165), + [anon_sym_for] = ACTIONS(1165), + [anon_sym_loop] = ACTIONS(1165), + [anon_sym_while] = ACTIONS(1165), + [anon_sym_do] = ACTIONS(1165), + [anon_sym_if] = ACTIONS(1165), + [anon_sym_match] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(1165), + [anon_sym_RBRACE] = ACTIONS(1165), + [anon_sym_DOT_DOT] = ACTIONS(1165), + [anon_sym_try] = ACTIONS(1165), + [anon_sym_return] = ACTIONS(1165), + [anon_sym_source] = ACTIONS(1165), + [anon_sym_source_DASHenv] = ACTIONS(1165), + [anon_sym_register] = ACTIONS(1165), + [anon_sym_hide] = ACTIONS(1165), + [anon_sym_hide_DASHenv] = ACTIONS(1165), + [anon_sym_overlay] = ACTIONS(1165), + [anon_sym_STAR] = ACTIONS(1165), + [anon_sym_where] = ACTIONS(1165), + [anon_sym_not] = ACTIONS(1165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1165), + [anon_sym_DOT_DOT_LT] = ACTIONS(1165), + [anon_sym_null] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1165), + [anon_sym_false] = ACTIONS(1165), + [aux_sym__val_number_decimal_token1] = ACTIONS(1165), + [aux_sym__val_number_decimal_token2] = ACTIONS(1165), + [anon_sym_DOT2] = ACTIONS(1165), + [aux_sym__val_number_decimal_token3] = ACTIONS(1165), + [aux_sym__val_number_token1] = ACTIONS(1165), + [aux_sym__val_number_token2] = ACTIONS(1165), + [aux_sym__val_number_token3] = ACTIONS(1165), + [aux_sym__val_number_token4] = ACTIONS(1165), + [aux_sym__val_number_token5] = ACTIONS(1165), + [aux_sym__val_number_token6] = ACTIONS(1165), + [anon_sym_0b] = ACTIONS(1165), + [anon_sym_0o] = ACTIONS(1165), + [anon_sym_0x] = ACTIONS(1165), + [sym_val_date] = ACTIONS(1165), + [anon_sym_DQUOTE] = ACTIONS(1165), + [sym__str_single_quotes] = ACTIONS(1165), + [sym__str_back_ticks] = ACTIONS(1165), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1165), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1165), + [anon_sym_CARET] = ACTIONS(1165), + [anon_sym_POUND] = ACTIONS(113), + }, + [2151] = { + [sym__expression] = STATE(7132), + [sym_expr_unary] = STATE(5677), + [sym__expr_unary_minus] = STATE(5679), + [sym_expr_binary] = STATE(5677), + [sym__expr_binary_expression] = STATE(6377), + [sym_expr_parenthesized] = STATE(4919), + [sym_val_range] = STATE(8295), + [sym__value] = STATE(5677), + [sym_val_nothing] = STATE(5612), + [sym_val_bool] = STATE(5612), + [sym_val_variable] = STATE(4867), + [sym__var] = STATE(4310), + [sym_val_number] = STATE(5612), + [sym__val_number_decimal] = STATE(4408), + [sym__val_number] = STATE(5661), + [sym_val_duration] = STATE(5612), + [sym_val_filesize] = STATE(5612), + [sym_val_binary] = STATE(5612), + [sym_val_string] = STATE(5612), + [sym__str_double_quotes] = STATE(5733), + [sym_val_interpolated] = STATE(5612), + [sym__inter_single_quotes] = STATE(5590), + [sym__inter_double_quotes] = STATE(5591), + [sym_val_list] = STATE(5612), + [sym_val_record] = STATE(5612), + [sym_val_table] = STATE(5612), + [sym_val_closure] = STATE(5612), + [sym__flag] = STATE(2105), + [sym_short_flag] = STATE(4939), + [sym_long_flag] = STATE(4939), + [sym_long_flag_equals_value] = STATE(4865), + [sym_comment] = STATE(2151), + [ts_builtin_sym_end] = ACTIONS(5603), + [anon_sym_SEMI] = ACTIONS(5601), + [anon_sym_LF] = ACTIONS(5603), + [anon_sym_LBRACK] = ACTIONS(5667), + [anon_sym_LPAREN] = ACTIONS(5669), + [anon_sym_PIPE] = ACTIONS(5601), + [anon_sym_DOLLAR] = ACTIONS(2667), + [anon_sym_DASH_DASH] = ACTIONS(5671), + [anon_sym_DASH] = ACTIONS(5673), + [anon_sym_LBRACE] = ACTIONS(5675), + [anon_sym_DOT_DOT] = ACTIONS(5677), + [anon_sym_not] = ACTIONS(5679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5681), + [anon_sym_DOT_DOT_LT] = ACTIONS(5681), + [anon_sym_null] = ACTIONS(5683), + [anon_sym_true] = ACTIONS(5685), + [anon_sym_false] = ACTIONS(5685), + [aux_sym__val_number_decimal_token1] = ACTIONS(5687), + [aux_sym__val_number_decimal_token2] = ACTIONS(5687), + [anon_sym_DOT2] = ACTIONS(5689), + [aux_sym__val_number_decimal_token3] = ACTIONS(5691), + [aux_sym__val_number_token1] = ACTIONS(5693), + [aux_sym__val_number_token2] = ACTIONS(5693), + [aux_sym__val_number_token3] = ACTIONS(5693), + [aux_sym__val_number_token4] = ACTIONS(5693), + [aux_sym__val_number_token5] = ACTIONS(5693), + [aux_sym__val_number_token6] = ACTIONS(5693), + [anon_sym_0b] = ACTIONS(2695), + [anon_sym_0o] = ACTIONS(2697), + [anon_sym_0x] = ACTIONS(2697), + [sym_val_date] = ACTIONS(5695), + [anon_sym_DQUOTE] = ACTIONS(5697), + [sym__str_single_quotes] = ACTIONS(5699), + [sym__str_back_ticks] = ACTIONS(5699), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5703), + [anon_sym_POUND] = ACTIONS(113), + }, + [2152] = { + [sym_comment] = STATE(2152), + [anon_sym_LBRACK] = ACTIONS(1173), + [anon_sym_COMMA] = ACTIONS(1173), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_DOLLAR] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_RBRACE] = ACTIONS(1173), + [anon_sym__] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1173), + [anon_sym_SLASH_SLASH] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1173), + [anon_sym_bit_DASHshr] = ACTIONS(1173), + [anon_sym_EQ_EQ] = ACTIONS(1173), + [anon_sym_BANG_EQ] = ACTIONS(1173), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1173), + [anon_sym_GT_EQ] = ACTIONS(1173), + [anon_sym_not_DASHin] = ACTIONS(1173), + [anon_sym_starts_DASHwith] = ACTIONS(1173), + [anon_sym_ends_DASHwith] = ACTIONS(1173), + [anon_sym_EQ_TILDE] = ACTIONS(1173), + [anon_sym_BANG_TILDE] = ACTIONS(1173), + [anon_sym_bit_DASHand] = ACTIONS(1173), + [anon_sym_bit_DASHxor] = ACTIONS(1173), + [anon_sym_bit_DASHor] = ACTIONS(1173), + [anon_sym_and] = ACTIONS(1173), + [anon_sym_xor] = ACTIONS(1173), + [anon_sym_or] = ACTIONS(1173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1173), + [anon_sym_DOT_DOT_LT] = ACTIONS(1173), + [anon_sym_null] = ACTIONS(1173), + [anon_sym_true] = ACTIONS(1173), + [anon_sym_false] = ACTIONS(1173), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1173), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1173), + [aux_sym__val_number_token1] = ACTIONS(1173), + [aux_sym__val_number_token2] = ACTIONS(1173), + [aux_sym__val_number_token3] = ACTIONS(1173), + [aux_sym__val_number_token4] = ACTIONS(1173), + [aux_sym__val_number_token5] = ACTIONS(1173), + [aux_sym__val_number_token6] = ACTIONS(1173), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym__str_single_quotes] = ACTIONS(1173), + [sym__str_back_ticks] = ACTIONS(1173), + [anon_sym_err_GT] = ACTIONS(1173), + [anon_sym_out_GT] = ACTIONS(1173), + [anon_sym_e_GT] = ACTIONS(1173), + [anon_sym_o_GT] = ACTIONS(1173), + [anon_sym_err_PLUSout_GT] = ACTIONS(1173), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1173), + [anon_sym_o_PLUSe_GT] = ACTIONS(1173), + [anon_sym_e_PLUSo_GT] = ACTIONS(1173), + [aux_sym_unquoted_token1] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(3), }, - [1910] = { - [sym_expr_unary] = STATE(6058), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6058), - [sym__expr_binary_expression] = STATE(6124), - [sym_expr_parenthesized] = STATE(6058), - [sym__val_range] = STATE(10591), - [sym__value] = STATE(6058), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(5863), - [sym_val_variable] = STATE(6241), - [sym__var] = STATE(5322), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4555), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_unquoted] = STATE(6126), - [sym__unquoted_anonymous_prefix] = STATE(10940), - [sym_comment] = STATE(1910), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(5409), - [anon_sym_DOLLAR] = ACTIONS(5411), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(5413), - [anon_sym_not] = ACTIONS(4591), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5415), - [anon_sym_DOT_DOT_LT] = ACTIONS(5415), - [anon_sym_null] = ACTIONS(4595), - [anon_sym_true] = ACTIONS(4597), - [anon_sym_false] = ACTIONS(4597), - [aux_sym__val_number_decimal_token1] = ACTIONS(4599), - [aux_sym__val_number_decimal_token2] = ACTIONS(4601), - [anon_sym_DOT2] = ACTIONS(5417), - [aux_sym__val_number_decimal_token3] = ACTIONS(4605), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(5419), - [aux_sym__val_number_token5] = ACTIONS(5419), - [aux_sym__val_number_token6] = ACTIONS(5419), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(4609), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(3620), + [2153] = { + [sym_comment] = STATE(2153), + [anon_sym_LBRACK] = ACTIONS(1173), + [anon_sym_COMMA] = ACTIONS(1173), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_DOLLAR] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_RBRACE] = ACTIONS(1173), + [anon_sym__] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1173), + [anon_sym_SLASH_SLASH] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1173), + [anon_sym_bit_DASHshr] = ACTIONS(1173), + [anon_sym_EQ_EQ] = ACTIONS(1173), + [anon_sym_BANG_EQ] = ACTIONS(1173), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1173), + [anon_sym_GT_EQ] = ACTIONS(1173), + [anon_sym_not_DASHin] = ACTIONS(1173), + [anon_sym_starts_DASHwith] = ACTIONS(1173), + [anon_sym_ends_DASHwith] = ACTIONS(1173), + [anon_sym_EQ_TILDE] = ACTIONS(1173), + [anon_sym_BANG_TILDE] = ACTIONS(1173), + [anon_sym_bit_DASHand] = ACTIONS(1173), + [anon_sym_bit_DASHxor] = ACTIONS(1173), + [anon_sym_bit_DASHor] = ACTIONS(1173), + [anon_sym_and] = ACTIONS(1173), + [anon_sym_xor] = ACTIONS(1173), + [anon_sym_or] = ACTIONS(1173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1173), + [anon_sym_DOT_DOT_LT] = ACTIONS(1173), + [anon_sym_null] = ACTIONS(1173), + [anon_sym_true] = ACTIONS(1173), + [anon_sym_false] = ACTIONS(1173), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1173), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1173), + [aux_sym__val_number_token1] = ACTIONS(1173), + [aux_sym__val_number_token2] = ACTIONS(1173), + [aux_sym__val_number_token3] = ACTIONS(1173), + [aux_sym__val_number_token4] = ACTIONS(1173), + [aux_sym__val_number_token5] = ACTIONS(1173), + [aux_sym__val_number_token6] = ACTIONS(1173), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym__str_single_quotes] = ACTIONS(1173), + [sym__str_back_ticks] = ACTIONS(1173), + [anon_sym_err_GT] = ACTIONS(1173), + [anon_sym_out_GT] = ACTIONS(1173), + [anon_sym_e_GT] = ACTIONS(1173), + [anon_sym_o_GT] = ACTIONS(1173), + [anon_sym_err_PLUSout_GT] = ACTIONS(1173), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1173), + [anon_sym_o_PLUSe_GT] = ACTIONS(1173), + [anon_sym_e_PLUSo_GT] = ACTIONS(1173), + [aux_sym_unquoted_token1] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(3), }, - [1911] = { - [sym_expr_unary] = STATE(6058), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6058), - [sym__expr_binary_expression] = STATE(6127), - [sym_expr_parenthesized] = STATE(6058), - [sym__val_range] = STATE(10591), - [sym__value] = STATE(6058), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(5863), - [sym_val_variable] = STATE(6241), - [sym__var] = STATE(5322), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4555), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_unquoted] = STATE(6131), - [sym__unquoted_anonymous_prefix] = STATE(10940), - [sym_comment] = STATE(1911), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(5409), - [anon_sym_DOLLAR] = ACTIONS(5411), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(5413), - [anon_sym_not] = ACTIONS(4591), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5415), - [anon_sym_DOT_DOT_LT] = ACTIONS(5415), - [anon_sym_null] = ACTIONS(4595), - [anon_sym_true] = ACTIONS(4597), - [anon_sym_false] = ACTIONS(4597), - [aux_sym__val_number_decimal_token1] = ACTIONS(4599), - [aux_sym__val_number_decimal_token2] = ACTIONS(4601), - [anon_sym_DOT2] = ACTIONS(5417), - [aux_sym__val_number_decimal_token3] = ACTIONS(4605), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(5419), - [aux_sym__val_number_token5] = ACTIONS(5419), - [aux_sym__val_number_token6] = ACTIONS(5419), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(4609), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(3620), + [2154] = { + [sym_comment] = STATE(2154), + [anon_sym_LBRACK] = ACTIONS(1173), + [anon_sym_COMMA] = ACTIONS(1173), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_DOLLAR] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_RBRACE] = ACTIONS(1173), + [anon_sym__] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1173), + [anon_sym_SLASH_SLASH] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1173), + [anon_sym_bit_DASHshr] = ACTIONS(1173), + [anon_sym_EQ_EQ] = ACTIONS(1173), + [anon_sym_BANG_EQ] = ACTIONS(1173), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1173), + [anon_sym_GT_EQ] = ACTIONS(1173), + [anon_sym_not_DASHin] = ACTIONS(1173), + [anon_sym_starts_DASHwith] = ACTIONS(1173), + [anon_sym_ends_DASHwith] = ACTIONS(1173), + [anon_sym_EQ_TILDE] = ACTIONS(1173), + [anon_sym_BANG_TILDE] = ACTIONS(1173), + [anon_sym_bit_DASHand] = ACTIONS(1173), + [anon_sym_bit_DASHxor] = ACTIONS(1173), + [anon_sym_bit_DASHor] = ACTIONS(1173), + [anon_sym_and] = ACTIONS(1173), + [anon_sym_xor] = ACTIONS(1173), + [anon_sym_or] = ACTIONS(1173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1173), + [anon_sym_DOT_DOT_LT] = ACTIONS(1173), + [anon_sym_null] = ACTIONS(1173), + [anon_sym_true] = ACTIONS(1173), + [anon_sym_false] = ACTIONS(1173), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1173), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1173), + [aux_sym__val_number_token1] = ACTIONS(1173), + [aux_sym__val_number_token2] = ACTIONS(1173), + [aux_sym__val_number_token3] = ACTIONS(1173), + [aux_sym__val_number_token4] = ACTIONS(1173), + [aux_sym__val_number_token5] = ACTIONS(1173), + [aux_sym__val_number_token6] = ACTIONS(1173), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym__str_single_quotes] = ACTIONS(1173), + [sym__str_back_ticks] = ACTIONS(1173), + [anon_sym_err_GT] = ACTIONS(1173), + [anon_sym_out_GT] = ACTIONS(1173), + [anon_sym_e_GT] = ACTIONS(1173), + [anon_sym_o_GT] = ACTIONS(1173), + [anon_sym_err_PLUSout_GT] = ACTIONS(1173), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1173), + [anon_sym_o_PLUSe_GT] = ACTIONS(1173), + [anon_sym_e_PLUSo_GT] = ACTIONS(1173), + [aux_sym_unquoted_token1] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(3), }, - [1912] = { - [sym_expr_unary] = STATE(6058), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6058), - [sym__expr_binary_expression] = STATE(6134), - [sym_expr_parenthesized] = STATE(6058), - [sym__val_range] = STATE(10591), - [sym__value] = STATE(6058), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(5863), - [sym_val_variable] = STATE(6241), - [sym__var] = STATE(5322), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4555), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_unquoted] = STATE(6136), - [sym__unquoted_anonymous_prefix] = STATE(10940), - [sym_comment] = STATE(1912), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(5409), - [anon_sym_DOLLAR] = ACTIONS(5411), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(5413), - [anon_sym_not] = ACTIONS(4591), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5415), - [anon_sym_DOT_DOT_LT] = ACTIONS(5415), - [anon_sym_null] = ACTIONS(4595), - [anon_sym_true] = ACTIONS(4597), - [anon_sym_false] = ACTIONS(4597), - [aux_sym__val_number_decimal_token1] = ACTIONS(4599), - [aux_sym__val_number_decimal_token2] = ACTIONS(4601), - [anon_sym_DOT2] = ACTIONS(5417), - [aux_sym__val_number_decimal_token3] = ACTIONS(4605), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(5419), - [aux_sym__val_number_token5] = ACTIONS(5419), - [aux_sym__val_number_token6] = ACTIONS(5419), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(4609), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(3620), + [2155] = { + [sym_comment] = STATE(2155), + [anon_sym_LBRACK] = ACTIONS(1173), + [anon_sym_COMMA] = ACTIONS(1173), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_DOLLAR] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_RBRACE] = ACTIONS(1173), + [anon_sym__] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1173), + [anon_sym_SLASH_SLASH] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1173), + [anon_sym_bit_DASHshr] = ACTIONS(1173), + [anon_sym_EQ_EQ] = ACTIONS(1173), + [anon_sym_BANG_EQ] = ACTIONS(1173), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1173), + [anon_sym_GT_EQ] = ACTIONS(1173), + [anon_sym_not_DASHin] = ACTIONS(1173), + [anon_sym_starts_DASHwith] = ACTIONS(1173), + [anon_sym_ends_DASHwith] = ACTIONS(1173), + [anon_sym_EQ_TILDE] = ACTIONS(1173), + [anon_sym_BANG_TILDE] = ACTIONS(1173), + [anon_sym_bit_DASHand] = ACTIONS(1173), + [anon_sym_bit_DASHxor] = ACTIONS(1173), + [anon_sym_bit_DASHor] = ACTIONS(1173), + [anon_sym_and] = ACTIONS(1173), + [anon_sym_xor] = ACTIONS(1173), + [anon_sym_or] = ACTIONS(1173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1173), + [anon_sym_DOT_DOT_LT] = ACTIONS(1173), + [anon_sym_null] = ACTIONS(1173), + [anon_sym_true] = ACTIONS(1173), + [anon_sym_false] = ACTIONS(1173), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1173), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1173), + [aux_sym__val_number_token1] = ACTIONS(1173), + [aux_sym__val_number_token2] = ACTIONS(1173), + [aux_sym__val_number_token3] = ACTIONS(1173), + [aux_sym__val_number_token4] = ACTIONS(1173), + [aux_sym__val_number_token5] = ACTIONS(1173), + [aux_sym__val_number_token6] = ACTIONS(1173), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym__str_single_quotes] = ACTIONS(1173), + [sym__str_back_ticks] = ACTIONS(1173), + [anon_sym_err_GT] = ACTIONS(1173), + [anon_sym_out_GT] = ACTIONS(1173), + [anon_sym_e_GT] = ACTIONS(1173), + [anon_sym_o_GT] = ACTIONS(1173), + [anon_sym_err_PLUSout_GT] = ACTIONS(1173), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1173), + [anon_sym_o_PLUSe_GT] = ACTIONS(1173), + [anon_sym_e_PLUSo_GT] = ACTIONS(1173), + [aux_sym_unquoted_token1] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(3), }, - [1913] = { - [sym_expr_unary] = STATE(6058), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6058), - [sym__expr_binary_expression] = STATE(6137), - [sym_expr_parenthesized] = STATE(6058), - [sym__val_range] = STATE(10591), - [sym__value] = STATE(6058), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(5863), - [sym_val_variable] = STATE(6241), - [sym__var] = STATE(5322), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4555), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_unquoted] = STATE(6139), - [sym__unquoted_anonymous_prefix] = STATE(10940), - [sym_comment] = STATE(1913), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(5409), - [anon_sym_DOLLAR] = ACTIONS(5411), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(5413), - [anon_sym_not] = ACTIONS(4591), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5415), - [anon_sym_DOT_DOT_LT] = ACTIONS(5415), - [anon_sym_null] = ACTIONS(4595), - [anon_sym_true] = ACTIONS(4597), - [anon_sym_false] = ACTIONS(4597), - [aux_sym__val_number_decimal_token1] = ACTIONS(4599), - [aux_sym__val_number_decimal_token2] = ACTIONS(4601), - [anon_sym_DOT2] = ACTIONS(5417), - [aux_sym__val_number_decimal_token3] = ACTIONS(4605), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(5419), - [aux_sym__val_number_token5] = ACTIONS(5419), - [aux_sym__val_number_token6] = ACTIONS(5419), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(4609), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(3620), + [2156] = { + [sym_val_record] = STATE(2355), + [sym_comment] = STATE(2156), + [anon_sym_export] = ACTIONS(5876), + [anon_sym_alias] = ACTIONS(5876), + [anon_sym_let] = ACTIONS(5876), + [anon_sym_let_DASHenv] = ACTIONS(5876), + [anon_sym_mut] = ACTIONS(5876), + [anon_sym_const] = ACTIONS(5876), + [anon_sym_SEMI] = ACTIONS(5876), + [sym_cmd_identifier] = ACTIONS(5876), + [anon_sym_LF] = ACTIONS(5878), + [anon_sym_def] = ACTIONS(5876), + [anon_sym_export_DASHenv] = ACTIONS(5876), + [anon_sym_extern] = ACTIONS(5876), + [anon_sym_module] = ACTIONS(5876), + [anon_sym_use] = ACTIONS(5876), + [anon_sym_LBRACK] = ACTIONS(5876), + [anon_sym_LPAREN] = ACTIONS(5876), + [anon_sym_RPAREN] = ACTIONS(5876), + [anon_sym_DOLLAR] = ACTIONS(5876), + [anon_sym_error] = ACTIONS(5876), + [anon_sym_DASH] = ACTIONS(5876), + [anon_sym_break] = ACTIONS(5876), + [anon_sym_continue] = ACTIONS(5876), + [anon_sym_for] = ACTIONS(5876), + [anon_sym_loop] = ACTIONS(5876), + [anon_sym_while] = ACTIONS(5876), + [anon_sym_do] = ACTIONS(5876), + [anon_sym_if] = ACTIONS(5876), + [anon_sym_match] = ACTIONS(5876), + [anon_sym_LBRACE] = ACTIONS(5876), + [anon_sym_RBRACE] = ACTIONS(5876), + [anon_sym_DOT_DOT] = ACTIONS(5876), + [anon_sym_try] = ACTIONS(5876), + [anon_sym_return] = ACTIONS(5876), + [anon_sym_source] = ACTIONS(5876), + [anon_sym_source_DASHenv] = ACTIONS(5876), + [anon_sym_register] = ACTIONS(5876), + [anon_sym_hide] = ACTIONS(5876), + [anon_sym_hide_DASHenv] = ACTIONS(5876), + [anon_sym_overlay] = ACTIONS(5876), + [anon_sym_where] = ACTIONS(5876), + [anon_sym_not] = ACTIONS(5876), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5876), + [anon_sym_DOT_DOT_LT] = ACTIONS(5876), + [anon_sym_null] = ACTIONS(5876), + [anon_sym_true] = ACTIONS(5876), + [anon_sym_false] = ACTIONS(5876), + [aux_sym__val_number_decimal_token1] = ACTIONS(5876), + [aux_sym__val_number_decimal_token2] = ACTIONS(5876), + [anon_sym_DOT2] = ACTIONS(5876), + [aux_sym__val_number_decimal_token3] = ACTIONS(5876), + [aux_sym__val_number_token1] = ACTIONS(5876), + [aux_sym__val_number_token2] = ACTIONS(5876), + [aux_sym__val_number_token3] = ACTIONS(5876), + [aux_sym__val_number_token4] = ACTIONS(5876), + [aux_sym__val_number_token5] = ACTIONS(5876), + [aux_sym__val_number_token6] = ACTIONS(5876), + [anon_sym_0b] = ACTIONS(5876), + [anon_sym_0o] = ACTIONS(5876), + [anon_sym_0x] = ACTIONS(5876), + [sym_val_date] = ACTIONS(5876), + [anon_sym_DQUOTE] = ACTIONS(5876), + [sym__str_single_quotes] = ACTIONS(5876), + [sym__str_back_ticks] = ACTIONS(5876), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5876), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5876), + [anon_sym_CARET] = ACTIONS(5876), + [anon_sym_POUND] = ACTIONS(113), + }, + [2157] = { + [sym_comment] = STATE(2157), + [anon_sym_LBRACK] = ACTIONS(1181), + [anon_sym_COMMA] = ACTIONS(1181), + [anon_sym_RBRACK] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_DOLLAR] = ACTIONS(1181), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1181), + [anon_sym_DASH] = ACTIONS(5713), + [anon_sym_in] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(5705), + [anon_sym_STAR_STAR] = ACTIONS(5707), + [anon_sym_PLUS_PLUS] = ACTIONS(5707), + [anon_sym_SLASH] = ACTIONS(5705), + [anon_sym_mod] = ACTIONS(5709), + [anon_sym_SLASH_SLASH] = ACTIONS(5709), + [anon_sym_PLUS] = ACTIONS(5713), + [anon_sym_bit_DASHshl] = ACTIONS(1181), + [anon_sym_bit_DASHshr] = ACTIONS(1181), + [anon_sym_EQ_EQ] = ACTIONS(1181), + [anon_sym_BANG_EQ] = ACTIONS(1181), + [anon_sym_LT2] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1181), + [anon_sym_GT_EQ] = ACTIONS(1181), + [anon_sym_not_DASHin] = ACTIONS(1181), + [anon_sym_starts_DASHwith] = ACTIONS(1181), + [anon_sym_ends_DASHwith] = ACTIONS(1181), + [anon_sym_EQ_TILDE] = ACTIONS(1181), + [anon_sym_BANG_TILDE] = ACTIONS(1181), + [anon_sym_bit_DASHand] = ACTIONS(1181), + [anon_sym_bit_DASHxor] = ACTIONS(1181), + [anon_sym_bit_DASHor] = ACTIONS(1181), + [anon_sym_and] = ACTIONS(1181), + [anon_sym_xor] = ACTIONS(1181), + [anon_sym_or] = ACTIONS(1181), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1181), + [anon_sym_DOT_DOT_LT] = ACTIONS(1181), + [anon_sym_null] = ACTIONS(1181), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1181), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1181), + [aux_sym__val_number_token1] = ACTIONS(1181), + [aux_sym__val_number_token2] = ACTIONS(1181), + [aux_sym__val_number_token3] = ACTIONS(1181), + [aux_sym__val_number_token4] = ACTIONS(1181), + [aux_sym__val_number_token5] = ACTIONS(1181), + [aux_sym__val_number_token6] = ACTIONS(1181), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym__str_single_quotes] = ACTIONS(1181), + [sym__str_back_ticks] = ACTIONS(1181), + [anon_sym_err_GT] = ACTIONS(1181), + [anon_sym_out_GT] = ACTIONS(1181), + [anon_sym_e_GT] = ACTIONS(1181), + [anon_sym_o_GT] = ACTIONS(1181), + [anon_sym_err_PLUSout_GT] = ACTIONS(1181), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1181), + [anon_sym_o_PLUSe_GT] = ACTIONS(1181), + [anon_sym_e_PLUSo_GT] = ACTIONS(1181), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(3), }, - [1914] = { - [sym_expr_unary] = STATE(6058), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6058), - [sym__expr_binary_expression] = STATE(6140), - [sym_expr_parenthesized] = STATE(6058), - [sym__val_range] = STATE(10591), - [sym__value] = STATE(6058), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(5863), - [sym_val_variable] = STATE(6241), - [sym__var] = STATE(5322), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4555), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_unquoted] = STATE(6148), - [sym__unquoted_anonymous_prefix] = STATE(10940), - [sym_comment] = STATE(1914), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(5409), - [anon_sym_DOLLAR] = ACTIONS(5411), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(5413), - [anon_sym_not] = ACTIONS(4591), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5415), - [anon_sym_DOT_DOT_LT] = ACTIONS(5415), - [anon_sym_null] = ACTIONS(4595), - [anon_sym_true] = ACTIONS(4597), - [anon_sym_false] = ACTIONS(4597), - [aux_sym__val_number_decimal_token1] = ACTIONS(4599), - [aux_sym__val_number_decimal_token2] = ACTIONS(4601), - [anon_sym_DOT2] = ACTIONS(5417), - [aux_sym__val_number_decimal_token3] = ACTIONS(4605), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(5419), - [aux_sym__val_number_token5] = ACTIONS(5419), - [aux_sym__val_number_token6] = ACTIONS(5419), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(4609), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(3620), + [2158] = { + [sym_comment] = STATE(2158), + [anon_sym_LBRACK] = ACTIONS(1173), + [anon_sym_COMMA] = ACTIONS(1173), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_DOLLAR] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_RBRACE] = ACTIONS(1173), + [anon_sym__] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1173), + [anon_sym_SLASH_SLASH] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1173), + [anon_sym_bit_DASHshr] = ACTIONS(1173), + [anon_sym_EQ_EQ] = ACTIONS(1173), + [anon_sym_BANG_EQ] = ACTIONS(1173), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1173), + [anon_sym_GT_EQ] = ACTIONS(1173), + [anon_sym_not_DASHin] = ACTIONS(1173), + [anon_sym_starts_DASHwith] = ACTIONS(1173), + [anon_sym_ends_DASHwith] = ACTIONS(1173), + [anon_sym_EQ_TILDE] = ACTIONS(1173), + [anon_sym_BANG_TILDE] = ACTIONS(1173), + [anon_sym_bit_DASHand] = ACTIONS(1173), + [anon_sym_bit_DASHxor] = ACTIONS(1173), + [anon_sym_bit_DASHor] = ACTIONS(1173), + [anon_sym_and] = ACTIONS(1173), + [anon_sym_xor] = ACTIONS(1173), + [anon_sym_or] = ACTIONS(1173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1173), + [anon_sym_DOT_DOT_LT] = ACTIONS(1173), + [anon_sym_null] = ACTIONS(1173), + [anon_sym_true] = ACTIONS(1173), + [anon_sym_false] = ACTIONS(1173), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1173), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1173), + [aux_sym__val_number_token1] = ACTIONS(1173), + [aux_sym__val_number_token2] = ACTIONS(1173), + [aux_sym__val_number_token3] = ACTIONS(1173), + [aux_sym__val_number_token4] = ACTIONS(1173), + [aux_sym__val_number_token5] = ACTIONS(1173), + [aux_sym__val_number_token6] = ACTIONS(1173), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym__str_single_quotes] = ACTIONS(1173), + [sym__str_back_ticks] = ACTIONS(1173), + [anon_sym_err_GT] = ACTIONS(1173), + [anon_sym_out_GT] = ACTIONS(1173), + [anon_sym_e_GT] = ACTIONS(1173), + [anon_sym_o_GT] = ACTIONS(1173), + [anon_sym_err_PLUSout_GT] = ACTIONS(1173), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1173), + [anon_sym_o_PLUSe_GT] = ACTIONS(1173), + [anon_sym_e_PLUSo_GT] = ACTIONS(1173), + [aux_sym_unquoted_token1] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(3), }, - [1915] = { - [sym_comment] = STATE(1915), + [2159] = { + [sym_comment] = STATE(2159), + [anon_sym_LBRACK] = ACTIONS(1173), + [anon_sym_COMMA] = ACTIONS(1173), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_DOLLAR] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_RBRACE] = ACTIONS(1173), + [anon_sym__] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1173), + [anon_sym_SLASH_SLASH] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1173), + [anon_sym_bit_DASHshr] = ACTIONS(1173), + [anon_sym_EQ_EQ] = ACTIONS(1173), + [anon_sym_BANG_EQ] = ACTIONS(1173), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1173), + [anon_sym_GT_EQ] = ACTIONS(1173), + [anon_sym_not_DASHin] = ACTIONS(1173), + [anon_sym_starts_DASHwith] = ACTIONS(1173), + [anon_sym_ends_DASHwith] = ACTIONS(1173), + [anon_sym_EQ_TILDE] = ACTIONS(1173), + [anon_sym_BANG_TILDE] = ACTIONS(1173), + [anon_sym_bit_DASHand] = ACTIONS(1173), + [anon_sym_bit_DASHxor] = ACTIONS(1173), + [anon_sym_bit_DASHor] = ACTIONS(1173), + [anon_sym_and] = ACTIONS(1173), + [anon_sym_xor] = ACTIONS(1173), + [anon_sym_or] = ACTIONS(1173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1173), + [anon_sym_DOT_DOT_LT] = ACTIONS(1173), + [anon_sym_null] = ACTIONS(1173), + [anon_sym_true] = ACTIONS(1173), + [anon_sym_false] = ACTIONS(1173), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1173), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1173), + [aux_sym__val_number_token1] = ACTIONS(1173), + [aux_sym__val_number_token2] = ACTIONS(1173), + [aux_sym__val_number_token3] = ACTIONS(1173), + [aux_sym__val_number_token4] = ACTIONS(1173), + [aux_sym__val_number_token5] = ACTIONS(1173), + [aux_sym__val_number_token6] = ACTIONS(1173), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym__str_single_quotes] = ACTIONS(1173), + [sym__str_back_ticks] = ACTIONS(1173), + [anon_sym_err_GT] = ACTIONS(1173), + [anon_sym_out_GT] = ACTIONS(1173), + [anon_sym_e_GT] = ACTIONS(1173), + [anon_sym_o_GT] = ACTIONS(1173), + [anon_sym_err_PLUSout_GT] = ACTIONS(1173), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1173), + [anon_sym_o_PLUSe_GT] = ACTIONS(1173), + [anon_sym_e_PLUSo_GT] = ACTIONS(1173), + [aux_sym_unquoted_token1] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(3), + }, + [2160] = { + [sym_comment] = STATE(2160), + [anon_sym_LBRACK] = ACTIONS(1173), + [anon_sym_COMMA] = ACTIONS(1173), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_DOLLAR] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_RBRACE] = ACTIONS(1173), + [anon_sym__] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1173), + [anon_sym_SLASH_SLASH] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1173), + [anon_sym_bit_DASHshr] = ACTIONS(1173), + [anon_sym_EQ_EQ] = ACTIONS(1173), + [anon_sym_BANG_EQ] = ACTIONS(1173), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1173), + [anon_sym_GT_EQ] = ACTIONS(1173), + [anon_sym_not_DASHin] = ACTIONS(1173), + [anon_sym_starts_DASHwith] = ACTIONS(1173), + [anon_sym_ends_DASHwith] = ACTIONS(1173), + [anon_sym_EQ_TILDE] = ACTIONS(1173), + [anon_sym_BANG_TILDE] = ACTIONS(1173), + [anon_sym_bit_DASHand] = ACTIONS(1173), + [anon_sym_bit_DASHxor] = ACTIONS(1173), + [anon_sym_bit_DASHor] = ACTIONS(1173), + [anon_sym_and] = ACTIONS(1173), + [anon_sym_xor] = ACTIONS(1173), + [anon_sym_or] = ACTIONS(1173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1173), + [anon_sym_DOT_DOT_LT] = ACTIONS(1173), + [anon_sym_null] = ACTIONS(1173), + [anon_sym_true] = ACTIONS(1173), + [anon_sym_false] = ACTIONS(1173), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1173), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1173), + [aux_sym__val_number_token1] = ACTIONS(1173), + [aux_sym__val_number_token2] = ACTIONS(1173), + [aux_sym__val_number_token3] = ACTIONS(1173), + [aux_sym__val_number_token4] = ACTIONS(1173), + [aux_sym__val_number_token5] = ACTIONS(1173), + [aux_sym__val_number_token6] = ACTIONS(1173), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym__str_single_quotes] = ACTIONS(1173), + [sym__str_back_ticks] = ACTIONS(1173), + [anon_sym_err_GT] = ACTIONS(1173), + [anon_sym_out_GT] = ACTIONS(1173), + [anon_sym_e_GT] = ACTIONS(1173), + [anon_sym_o_GT] = ACTIONS(1173), + [anon_sym_err_PLUSout_GT] = ACTIONS(1173), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1173), + [anon_sym_o_PLUSe_GT] = ACTIONS(1173), + [anon_sym_e_PLUSo_GT] = ACTIONS(1173), + [aux_sym_unquoted_token1] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(3), + }, + [2161] = { + [sym_comment] = STATE(2161), + [anon_sym_LBRACK] = ACTIONS(1289), + [anon_sym_COMMA] = ACTIONS(1289), + [anon_sym_RBRACK] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1289), + [anon_sym_DOLLAR] = ACTIONS(1289), + [anon_sym_GT] = ACTIONS(1287), + [anon_sym_DASH_DASH] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1287), + [anon_sym_in] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(1287), + [anon_sym_STAR] = ACTIONS(1287), + [anon_sym_STAR_STAR] = ACTIONS(1289), + [anon_sym_PLUS_PLUS] = ACTIONS(1289), + [anon_sym_SLASH] = ACTIONS(1287), + [anon_sym_mod] = ACTIONS(1289), + [anon_sym_SLASH_SLASH] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1287), + [anon_sym_bit_DASHshl] = ACTIONS(1289), + [anon_sym_bit_DASHshr] = ACTIONS(1289), + [anon_sym_EQ_EQ] = ACTIONS(1289), + [anon_sym_BANG_EQ] = ACTIONS(1289), + [anon_sym_LT2] = ACTIONS(1287), + [anon_sym_LT_EQ] = ACTIONS(1289), + [anon_sym_GT_EQ] = ACTIONS(1289), + [anon_sym_not_DASHin] = ACTIONS(1289), + [anon_sym_starts_DASHwith] = ACTIONS(1289), + [anon_sym_ends_DASHwith] = ACTIONS(1289), + [anon_sym_EQ_TILDE] = ACTIONS(1289), + [anon_sym_BANG_TILDE] = ACTIONS(1289), + [anon_sym_bit_DASHand] = ACTIONS(1289), + [anon_sym_bit_DASHxor] = ACTIONS(1289), + [anon_sym_bit_DASHor] = ACTIONS(1289), + [anon_sym_and] = ACTIONS(1289), + [anon_sym_xor] = ACTIONS(1289), + [anon_sym_or] = ACTIONS(1289), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1289), + [anon_sym_DOT_DOT_LT] = ACTIONS(1289), + [anon_sym_null] = ACTIONS(1289), + [anon_sym_true] = ACTIONS(1289), + [anon_sym_false] = ACTIONS(1289), + [aux_sym__val_number_decimal_token1] = ACTIONS(1287), + [aux_sym__val_number_decimal_token2] = ACTIONS(1289), + [anon_sym_DOT2] = ACTIONS(1287), + [aux_sym__val_number_decimal_token3] = ACTIONS(1289), + [aux_sym__val_number_token1] = ACTIONS(1289), + [aux_sym__val_number_token2] = ACTIONS(1289), + [aux_sym__val_number_token3] = ACTIONS(1289), + [aux_sym__val_number_token4] = ACTIONS(1289), + [aux_sym__val_number_token5] = ACTIONS(1289), + [aux_sym__val_number_token6] = ACTIONS(1289), + [anon_sym_0b] = ACTIONS(1287), + [anon_sym_0o] = ACTIONS(1287), + [anon_sym_0x] = ACTIONS(1287), + [sym_val_date] = ACTIONS(1289), + [anon_sym_DQUOTE] = ACTIONS(1289), + [sym__str_single_quotes] = ACTIONS(1289), + [sym__str_back_ticks] = ACTIONS(1289), + [anon_sym_err_GT] = ACTIONS(1289), + [anon_sym_out_GT] = ACTIONS(1289), + [anon_sym_e_GT] = ACTIONS(1289), + [anon_sym_o_GT] = ACTIONS(1289), + [anon_sym_err_PLUSout_GT] = ACTIONS(1289), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1289), + [anon_sym_o_PLUSe_GT] = ACTIONS(1289), + [anon_sym_e_PLUSo_GT] = ACTIONS(1289), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1287), + [anon_sym_POUND] = ACTIONS(3), + }, + [2162] = { + [sym_comment] = STATE(2162), + [ts_builtin_sym_end] = ACTIONS(3769), + [anon_sym_export] = ACTIONS(3767), + [anon_sym_alias] = ACTIONS(3767), + [anon_sym_let] = ACTIONS(3767), + [anon_sym_let_DASHenv] = ACTIONS(3767), + [anon_sym_mut] = ACTIONS(3767), + [anon_sym_const] = ACTIONS(3767), + [anon_sym_SEMI] = ACTIONS(3767), + [sym_cmd_identifier] = ACTIONS(3767), + [anon_sym_LF] = ACTIONS(3769), + [anon_sym_def] = ACTIONS(3767), + [anon_sym_export_DASHenv] = ACTIONS(3767), + [anon_sym_extern] = ACTIONS(3767), + [anon_sym_module] = ACTIONS(3767), + [anon_sym_use] = ACTIONS(3767), + [anon_sym_LBRACK] = ACTIONS(3767), + [anon_sym_LPAREN] = ACTIONS(3767), + [anon_sym_DOLLAR] = ACTIONS(3767), + [anon_sym_error] = ACTIONS(3767), + [anon_sym_DASH_DASH] = ACTIONS(3767), + [anon_sym_DASH] = ACTIONS(3767), + [anon_sym_break] = ACTIONS(3767), + [anon_sym_continue] = ACTIONS(3767), + [anon_sym_for] = ACTIONS(3767), + [anon_sym_loop] = ACTIONS(3767), + [anon_sym_while] = ACTIONS(3767), + [anon_sym_do] = ACTIONS(3767), + [anon_sym_if] = ACTIONS(3767), + [anon_sym_match] = ACTIONS(3767), + [anon_sym_LBRACE] = ACTIONS(3767), + [anon_sym_DOT_DOT] = ACTIONS(3767), + [anon_sym_try] = ACTIONS(3767), + [anon_sym_return] = ACTIONS(3767), + [anon_sym_source] = ACTIONS(3767), + [anon_sym_source_DASHenv] = ACTIONS(3767), + [anon_sym_register] = ACTIONS(3767), + [anon_sym_hide] = ACTIONS(3767), + [anon_sym_hide_DASHenv] = ACTIONS(3767), + [anon_sym_overlay] = ACTIONS(3767), + [anon_sym_as] = ACTIONS(3767), + [anon_sym_where] = ACTIONS(3767), + [anon_sym_not] = ACTIONS(3767), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3767), + [anon_sym_DOT_DOT_LT] = ACTIONS(3767), + [anon_sym_null] = ACTIONS(3767), + [anon_sym_true] = ACTIONS(3767), + [anon_sym_false] = ACTIONS(3767), + [aux_sym__val_number_decimal_token1] = ACTIONS(3767), + [aux_sym__val_number_decimal_token2] = ACTIONS(3767), + [anon_sym_DOT2] = ACTIONS(3767), + [aux_sym__val_number_decimal_token3] = ACTIONS(3767), + [aux_sym__val_number_token1] = ACTIONS(3767), + [aux_sym__val_number_token2] = ACTIONS(3767), + [aux_sym__val_number_token3] = ACTIONS(3767), + [aux_sym__val_number_token4] = ACTIONS(3767), + [aux_sym__val_number_token5] = ACTIONS(3767), + [aux_sym__val_number_token6] = ACTIONS(3767), + [anon_sym_0b] = ACTIONS(3767), + [anon_sym_0o] = ACTIONS(3767), + [anon_sym_0x] = ACTIONS(3767), + [sym_val_date] = ACTIONS(3767), + [anon_sym_DQUOTE] = ACTIONS(3767), + [sym__str_single_quotes] = ACTIONS(3767), + [sym__str_back_ticks] = ACTIONS(3767), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3767), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3767), + [anon_sym_CARET] = ACTIONS(3767), + [anon_sym_POUND] = ACTIONS(113), + }, + [2163] = { + [sym_comment] = STATE(2163), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_COMMA] = ACTIONS(1217), + [anon_sym_RBRACK] = ACTIONS(1217), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_DOLLAR] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1215), + [anon_sym_DASH_DASH] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1215), + [anon_sym_in] = ACTIONS(1215), + [anon_sym_LBRACE] = ACTIONS(1217), + [anon_sym_DOT_DOT] = ACTIONS(1215), + [anon_sym_STAR] = ACTIONS(1215), + [anon_sym_STAR_STAR] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(1215), + [anon_sym_mod] = ACTIONS(1217), + [anon_sym_SLASH_SLASH] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1215), + [anon_sym_bit_DASHshl] = ACTIONS(1217), + [anon_sym_bit_DASHshr] = ACTIONS(1217), + [anon_sym_EQ_EQ] = ACTIONS(1217), + [anon_sym_BANG_EQ] = ACTIONS(1217), + [anon_sym_LT2] = ACTIONS(1215), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT_EQ] = ACTIONS(1217), + [anon_sym_not_DASHin] = ACTIONS(1217), + [anon_sym_starts_DASHwith] = ACTIONS(1217), + [anon_sym_ends_DASHwith] = ACTIONS(1217), + [anon_sym_EQ_TILDE] = ACTIONS(1217), + [anon_sym_BANG_TILDE] = ACTIONS(1217), + [anon_sym_bit_DASHand] = ACTIONS(1217), + [anon_sym_bit_DASHxor] = ACTIONS(1217), + [anon_sym_bit_DASHor] = ACTIONS(1217), + [anon_sym_and] = ACTIONS(1217), + [anon_sym_xor] = ACTIONS(1217), + [anon_sym_or] = ACTIONS(1217), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1217), + [anon_sym_DOT_DOT_LT] = ACTIONS(1217), + [anon_sym_null] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1217), + [anon_sym_false] = ACTIONS(1217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1215), + [aux_sym__val_number_decimal_token2] = ACTIONS(1217), + [anon_sym_DOT2] = ACTIONS(1215), + [aux_sym__val_number_decimal_token3] = ACTIONS(1217), + [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(1217), + [aux_sym__val_number_token5] = ACTIONS(1217), + [aux_sym__val_number_token6] = ACTIONS(1217), + [anon_sym_0b] = ACTIONS(1215), + [anon_sym_0o] = ACTIONS(1215), + [anon_sym_0x] = ACTIONS(1215), + [sym_val_date] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym__str_single_quotes] = ACTIONS(1217), + [sym__str_back_ticks] = ACTIONS(1217), + [anon_sym_err_GT] = ACTIONS(1217), + [anon_sym_out_GT] = ACTIONS(1217), + [anon_sym_e_GT] = ACTIONS(1217), + [anon_sym_o_GT] = ACTIONS(1217), + [anon_sym_err_PLUSout_GT] = ACTIONS(1217), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1217), + [anon_sym_o_PLUSe_GT] = ACTIONS(1217), + [anon_sym_e_PLUSo_GT] = ACTIONS(1217), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1215), + [anon_sym_POUND] = ACTIONS(3), + }, + [2164] = { + [sym_comment] = STATE(2164), + [ts_builtin_sym_end] = ACTIONS(1235), + [anon_sym_export] = ACTIONS(1233), + [anon_sym_alias] = ACTIONS(1233), + [anon_sym_let] = ACTIONS(1233), + [anon_sym_let_DASHenv] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1233), + [sym_cmd_identifier] = ACTIONS(1233), + [anon_sym_LF] = ACTIONS(1235), + [anon_sym_def] = ACTIONS(1233), + [anon_sym_export_DASHenv] = ACTIONS(1233), + [anon_sym_extern] = ACTIONS(1233), + [anon_sym_module] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(1233), + [anon_sym_DOLLAR] = ACTIONS(1233), + [anon_sym_error] = ACTIONS(1233), + [anon_sym_DASH_DASH] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_break] = ACTIONS(1233), + [anon_sym_continue] = ACTIONS(1233), + [anon_sym_for] = ACTIONS(1233), + [anon_sym_loop] = ACTIONS(1233), + [anon_sym_while] = ACTIONS(1233), + [anon_sym_do] = ACTIONS(1233), + [anon_sym_if] = ACTIONS(1233), + [anon_sym_match] = ACTIONS(1233), + [anon_sym_LBRACE] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1233), + [anon_sym_try] = ACTIONS(1233), + [anon_sym_return] = ACTIONS(1233), + [anon_sym_source] = ACTIONS(1233), + [anon_sym_source_DASHenv] = ACTIONS(1233), + [anon_sym_register] = ACTIONS(1233), + [anon_sym_hide] = ACTIONS(1233), + [anon_sym_hide_DASHenv] = ACTIONS(1233), + [anon_sym_overlay] = ACTIONS(1233), + [anon_sym_as] = ACTIONS(1233), + [anon_sym_where] = ACTIONS(1233), + [anon_sym_not] = ACTIONS(1233), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1233), + [anon_sym_DOT_DOT_LT] = ACTIONS(1233), + [anon_sym_null] = ACTIONS(1233), + [anon_sym_true] = ACTIONS(1233), + [anon_sym_false] = ACTIONS(1233), + [aux_sym__val_number_decimal_token1] = ACTIONS(1233), + [aux_sym__val_number_decimal_token2] = ACTIONS(1233), + [anon_sym_DOT2] = ACTIONS(1233), + [aux_sym__val_number_decimal_token3] = ACTIONS(1233), + [aux_sym__val_number_token1] = ACTIONS(1233), + [aux_sym__val_number_token2] = ACTIONS(1233), + [aux_sym__val_number_token3] = ACTIONS(1233), + [aux_sym__val_number_token4] = ACTIONS(1233), + [aux_sym__val_number_token5] = ACTIONS(1233), + [aux_sym__val_number_token6] = ACTIONS(1233), + [anon_sym_0b] = ACTIONS(1233), + [anon_sym_0o] = ACTIONS(1233), + [anon_sym_0x] = ACTIONS(1233), + [sym_val_date] = ACTIONS(1233), + [anon_sym_DQUOTE] = ACTIONS(1233), + [sym__str_single_quotes] = ACTIONS(1233), + [sym__str_back_ticks] = ACTIONS(1233), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1233), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1233), + [anon_sym_CARET] = ACTIONS(1233), + [anon_sym_POUND] = ACTIONS(113), + }, + [2165] = { + [sym__match_pattern_record_variable] = STATE(3152), + [sym_expr_parenthesized] = STATE(10732), + [sym_val_variable] = STATE(3088), + [sym__var] = STATE(2820), + [sym_val_number] = STATE(10732), + [sym__val_number_decimal] = STATE(4911), + [sym__val_number] = STATE(4922), + [sym_val_string] = STATE(10732), + [sym__str_double_quotes] = STATE(6592), + [sym_record_entry] = STATE(3152), + [sym__record_key] = STATE(10419), + [sym_comment] = STATE(2165), + [aux_sym__match_pattern_record_repeat1] = STATE(2122), + [anon_sym_export] = ACTIONS(5649), + [anon_sym_alias] = ACTIONS(5649), + [anon_sym_let] = ACTIONS(5649), + [anon_sym_let_DASHenv] = ACTIONS(5649), + [anon_sym_mut] = ACTIONS(5649), + [anon_sym_const] = ACTIONS(5649), + [sym_cmd_identifier] = ACTIONS(5649), + [anon_sym_def] = ACTIONS(5649), + [anon_sym_export_DASHenv] = ACTIONS(5649), + [anon_sym_extern] = ACTIONS(5649), + [anon_sym_module] = ACTIONS(5649), + [anon_sym_use] = ACTIONS(5649), + [anon_sym_LPAREN] = ACTIONS(5651), + [anon_sym_DOLLAR] = ACTIONS(5653), + [anon_sym_error] = ACTIONS(5649), + [anon_sym_list] = ACTIONS(5649), + [anon_sym_DASH] = ACTIONS(189), + [anon_sym_break] = ACTIONS(5649), + [anon_sym_continue] = ACTIONS(5649), + [anon_sym_for] = ACTIONS(5649), + [anon_sym_in] = ACTIONS(5649), + [anon_sym_loop] = ACTIONS(5649), + [anon_sym_make] = ACTIONS(5649), + [anon_sym_while] = ACTIONS(5649), + [anon_sym_do] = ACTIONS(5649), + [anon_sym_if] = ACTIONS(5649), + [anon_sym_else] = ACTIONS(5649), + [anon_sym_match] = ACTIONS(5649), + [anon_sym_RBRACE] = ACTIONS(5880), + [anon_sym_try] = ACTIONS(5649), + [anon_sym_catch] = ACTIONS(5649), + [anon_sym_return] = ACTIONS(5649), + [anon_sym_source] = ACTIONS(5649), + [anon_sym_source_DASHenv] = ACTIONS(5649), + [anon_sym_register] = ACTIONS(5649), + [anon_sym_hide] = ACTIONS(5649), + [anon_sym_hide_DASHenv] = ACTIONS(5649), + [anon_sym_overlay] = ACTIONS(5649), + [anon_sym_new] = ACTIONS(5649), + [anon_sym_as] = ACTIONS(5649), + [anon_sym_PLUS] = ACTIONS(189), + [aux_sym__val_number_decimal_token1] = ACTIONS(5657), + [aux_sym__val_number_decimal_token2] = ACTIONS(5659), + [anon_sym_DOT2] = ACTIONS(5661), + [aux_sym__val_number_decimal_token3] = ACTIONS(5663), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(5665), + [aux_sym__val_number_token5] = ACTIONS(3124), + [aux_sym__val_number_token6] = ACTIONS(5665), + [anon_sym_DQUOTE] = ACTIONS(2838), + [sym__str_single_quotes] = ACTIONS(2840), + [sym__str_back_ticks] = ACTIONS(2840), + [aux_sym__record_key_token2] = ACTIONS(225), + [anon_sym_POUND] = ACTIONS(3), + }, + [2166] = { + [sym_comment] = STATE(2166), + [anon_sym_LBRACK] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(1070), + [anon_sym_LPAREN] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_GT] = ACTIONS(1068), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_in] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_RBRACE] = ACTIONS(1070), + [anon_sym__] = ACTIONS(1068), + [anon_sym_DOT_DOT] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_STAR_STAR] = ACTIONS(1070), + [anon_sym_PLUS_PLUS] = ACTIONS(1070), + [anon_sym_SLASH] = ACTIONS(1068), + [anon_sym_mod] = ACTIONS(1070), + [anon_sym_SLASH_SLASH] = ACTIONS(1070), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_bit_DASHshl] = ACTIONS(1070), + [anon_sym_bit_DASHshr] = ACTIONS(1070), + [anon_sym_EQ_EQ] = ACTIONS(1070), + [anon_sym_BANG_EQ] = ACTIONS(1070), + [anon_sym_LT2] = ACTIONS(1068), + [anon_sym_LT_EQ] = ACTIONS(1070), + [anon_sym_GT_EQ] = ACTIONS(1070), + [anon_sym_not_DASHin] = ACTIONS(1070), + [anon_sym_starts_DASHwith] = ACTIONS(1070), + [anon_sym_ends_DASHwith] = ACTIONS(1070), + [anon_sym_EQ_TILDE] = ACTIONS(1070), + [anon_sym_BANG_TILDE] = ACTIONS(1070), + [anon_sym_bit_DASHand] = ACTIONS(1070), + [anon_sym_bit_DASHxor] = ACTIONS(1070), + [anon_sym_bit_DASHor] = ACTIONS(1070), + [anon_sym_and] = ACTIONS(1070), + [anon_sym_xor] = ACTIONS(1070), + [anon_sym_or] = ACTIONS(1070), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), + [anon_sym_DOT_DOT_LT] = ACTIONS(1070), + [anon_sym_null] = ACTIONS(1070), + [anon_sym_true] = ACTIONS(1070), + [anon_sym_false] = ACTIONS(1070), + [aux_sym__val_number_decimal_token1] = ACTIONS(1068), + [aux_sym__val_number_decimal_token2] = ACTIONS(1070), + [anon_sym_DOT2] = ACTIONS(1068), + [aux_sym__val_number_decimal_token3] = ACTIONS(1070), + [aux_sym__val_number_token1] = ACTIONS(1070), + [aux_sym__val_number_token2] = ACTIONS(1070), + [aux_sym__val_number_token3] = ACTIONS(1070), + [aux_sym__val_number_token4] = ACTIONS(1070), + [aux_sym__val_number_token5] = ACTIONS(1070), + [aux_sym__val_number_token6] = ACTIONS(1070), + [anon_sym_0b] = ACTIONS(1068), + [anon_sym_0o] = ACTIONS(1068), + [anon_sym_0x] = ACTIONS(1068), + [sym_val_date] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1070), + [sym__str_single_quotes] = ACTIONS(1070), + [sym__str_back_ticks] = ACTIONS(1070), + [anon_sym_err_GT] = ACTIONS(1070), + [anon_sym_out_GT] = ACTIONS(1070), + [anon_sym_e_GT] = ACTIONS(1070), + [anon_sym_o_GT] = ACTIONS(1070), + [anon_sym_err_PLUSout_GT] = ACTIONS(1070), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1070), + [anon_sym_o_PLUSe_GT] = ACTIONS(1070), + [anon_sym_e_PLUSo_GT] = ACTIONS(1070), + [aux_sym_unquoted_token1] = ACTIONS(1068), + [anon_sym_POUND] = ACTIONS(3), + }, + [2167] = { + [sym_comment] = STATE(2167), + [anon_sym_LBRACK] = ACTIONS(1209), + [anon_sym_COMMA] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_DOLLAR] = ACTIONS(1209), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_in] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym__] = ACTIONS(1139), + [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_STAR_STAR] = ACTIONS(1209), + [anon_sym_PLUS_PLUS] = ACTIONS(1209), + [anon_sym_SLASH] = ACTIONS(1139), + [anon_sym_mod] = ACTIONS(1209), + [anon_sym_SLASH_SLASH] = ACTIONS(1209), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_bit_DASHshl] = ACTIONS(1209), + [anon_sym_bit_DASHshr] = ACTIONS(1209), + [anon_sym_EQ_EQ] = ACTIONS(1209), + [anon_sym_BANG_EQ] = ACTIONS(1209), + [anon_sym_LT2] = ACTIONS(1139), + [anon_sym_LT_EQ] = ACTIONS(1209), + [anon_sym_GT_EQ] = ACTIONS(1209), + [anon_sym_not_DASHin] = ACTIONS(1209), + [anon_sym_starts_DASHwith] = ACTIONS(1209), + [anon_sym_ends_DASHwith] = ACTIONS(1209), + [anon_sym_EQ_TILDE] = ACTIONS(1209), + [anon_sym_BANG_TILDE] = ACTIONS(1209), + [anon_sym_bit_DASHand] = ACTIONS(1209), + [anon_sym_bit_DASHxor] = ACTIONS(1209), + [anon_sym_bit_DASHor] = ACTIONS(1209), + [anon_sym_and] = ACTIONS(1209), + [anon_sym_xor] = ACTIONS(1209), + [anon_sym_or] = ACTIONS(1209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1209), + [anon_sym_DOT_DOT_LT] = ACTIONS(1209), + [anon_sym_null] = ACTIONS(1209), + [anon_sym_true] = ACTIONS(1209), + [anon_sym_false] = ACTIONS(1209), + [aux_sym__val_number_decimal_token1] = ACTIONS(1139), + [aux_sym__val_number_decimal_token2] = ACTIONS(1209), + [anon_sym_DOT2] = ACTIONS(1139), + [aux_sym__val_number_decimal_token3] = ACTIONS(1209), + [aux_sym__val_number_token1] = ACTIONS(1209), + [aux_sym__val_number_token2] = ACTIONS(1209), + [aux_sym__val_number_token3] = ACTIONS(1209), + [aux_sym__val_number_token4] = ACTIONS(1209), + [aux_sym__val_number_token5] = ACTIONS(1209), + [aux_sym__val_number_token6] = ACTIONS(1209), + [anon_sym_0b] = ACTIONS(1139), + [anon_sym_0o] = ACTIONS(1139), + [anon_sym_0x] = ACTIONS(1139), + [sym_val_date] = ACTIONS(1209), + [anon_sym_DQUOTE] = ACTIONS(1209), + [sym__str_single_quotes] = ACTIONS(1209), + [sym__str_back_ticks] = ACTIONS(1209), + [anon_sym_err_GT] = ACTIONS(1209), + [anon_sym_out_GT] = ACTIONS(1209), + [anon_sym_e_GT] = ACTIONS(1209), + [anon_sym_o_GT] = ACTIONS(1209), + [anon_sym_err_PLUSout_GT] = ACTIONS(1209), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1209), + [anon_sym_o_PLUSe_GT] = ACTIONS(1209), + [anon_sym_e_PLUSo_GT] = ACTIONS(1209), + [aux_sym_unquoted_token1] = ACTIONS(1139), + [anon_sym_POUND] = ACTIONS(3), + }, + [2168] = { + [sym_comment] = STATE(2168), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_alias] = ACTIONS(1068), + [anon_sym_let] = ACTIONS(1068), + [anon_sym_let_DASHenv] = ACTIONS(1068), + [anon_sym_mut] = ACTIONS(1068), + [anon_sym_const] = ACTIONS(1068), + [anon_sym_SEMI] = ACTIONS(1068), + [sym_cmd_identifier] = ACTIONS(1068), + [anon_sym_LF] = ACTIONS(1070), + [anon_sym_def] = ACTIONS(1068), + [anon_sym_export_DASHenv] = ACTIONS(1068), + [anon_sym_extern] = ACTIONS(1068), + [anon_sym_module] = ACTIONS(1068), + [anon_sym_use] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(1068), + [anon_sym_LPAREN] = ACTIONS(1068), + [anon_sym_RPAREN] = ACTIONS(1068), + [anon_sym_DOLLAR] = ACTIONS(1068), + [anon_sym_error] = ACTIONS(1068), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_break] = ACTIONS(1068), + [anon_sym_continue] = ACTIONS(1068), + [anon_sym_for] = ACTIONS(1068), + [anon_sym_loop] = ACTIONS(1068), + [anon_sym_while] = ACTIONS(1068), + [anon_sym_do] = ACTIONS(1068), + [anon_sym_if] = ACTIONS(1068), + [anon_sym_match] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_RBRACE] = ACTIONS(1068), + [anon_sym_DOT_DOT] = ACTIONS(1068), + [anon_sym_try] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1068), + [anon_sym_source] = ACTIONS(1068), + [anon_sym_source_DASHenv] = ACTIONS(1068), + [anon_sym_register] = ACTIONS(1068), + [anon_sym_hide] = ACTIONS(1068), + [anon_sym_hide_DASHenv] = ACTIONS(1068), + [anon_sym_overlay] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_where] = ACTIONS(1068), + [anon_sym_not] = ACTIONS(1068), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1068), + [anon_sym_DOT_DOT_LT] = ACTIONS(1068), + [anon_sym_null] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1068), + [anon_sym_false] = ACTIONS(1068), + [aux_sym__val_number_decimal_token1] = ACTIONS(1068), + [aux_sym__val_number_decimal_token2] = ACTIONS(1068), + [anon_sym_DOT2] = ACTIONS(1068), + [aux_sym__val_number_decimal_token3] = ACTIONS(1068), + [aux_sym__val_number_token1] = ACTIONS(1068), + [aux_sym__val_number_token2] = ACTIONS(1068), + [aux_sym__val_number_token3] = ACTIONS(1068), + [aux_sym__val_number_token4] = ACTIONS(1068), + [aux_sym__val_number_token5] = ACTIONS(1068), + [aux_sym__val_number_token6] = ACTIONS(1068), + [anon_sym_0b] = ACTIONS(1068), + [anon_sym_0o] = ACTIONS(1068), + [anon_sym_0x] = ACTIONS(1068), + [sym_val_date] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(1068), + [sym__str_single_quotes] = ACTIONS(1068), + [sym__str_back_ticks] = ACTIONS(1068), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1068), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1068), + [anon_sym_CARET] = ACTIONS(1068), + [anon_sym_POUND] = ACTIONS(113), + }, + [2169] = { + [sym_comment] = STATE(2169), + [ts_builtin_sym_end] = ACTIONS(3723), + [anon_sym_export] = ACTIONS(3721), + [anon_sym_alias] = ACTIONS(3721), + [anon_sym_let] = ACTIONS(3721), + [anon_sym_let_DASHenv] = ACTIONS(3721), + [anon_sym_mut] = ACTIONS(3721), + [anon_sym_const] = ACTIONS(3721), + [anon_sym_SEMI] = ACTIONS(3721), + [sym_cmd_identifier] = ACTIONS(3721), + [anon_sym_LF] = ACTIONS(3723), + [anon_sym_def] = ACTIONS(3721), + [anon_sym_export_DASHenv] = ACTIONS(3721), + [anon_sym_extern] = ACTIONS(3721), + [anon_sym_module] = ACTIONS(3721), + [anon_sym_use] = ACTIONS(3721), + [anon_sym_LBRACK] = ACTIONS(3721), + [anon_sym_LPAREN] = ACTIONS(3721), + [anon_sym_DOLLAR] = ACTIONS(3721), + [anon_sym_error] = ACTIONS(3721), + [anon_sym_DASH_DASH] = ACTIONS(3721), + [anon_sym_DASH] = ACTIONS(3721), + [anon_sym_break] = ACTIONS(3721), + [anon_sym_continue] = ACTIONS(3721), + [anon_sym_for] = ACTIONS(3721), + [anon_sym_loop] = ACTIONS(3721), + [anon_sym_while] = ACTIONS(3721), + [anon_sym_do] = ACTIONS(3721), + [anon_sym_if] = ACTIONS(3721), + [anon_sym_match] = ACTIONS(3721), + [anon_sym_LBRACE] = ACTIONS(3721), + [anon_sym_DOT_DOT] = ACTIONS(3721), + [anon_sym_try] = ACTIONS(3721), + [anon_sym_return] = ACTIONS(3721), + [anon_sym_source] = ACTIONS(3721), + [anon_sym_source_DASHenv] = ACTIONS(3721), + [anon_sym_register] = ACTIONS(3721), + [anon_sym_hide] = ACTIONS(3721), + [anon_sym_hide_DASHenv] = ACTIONS(3721), + [anon_sym_overlay] = ACTIONS(3721), + [anon_sym_as] = ACTIONS(3721), + [anon_sym_where] = ACTIONS(3721), + [anon_sym_not] = ACTIONS(3721), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3721), + [anon_sym_DOT_DOT_LT] = ACTIONS(3721), + [anon_sym_null] = ACTIONS(3721), + [anon_sym_true] = ACTIONS(3721), + [anon_sym_false] = ACTIONS(3721), + [aux_sym__val_number_decimal_token1] = ACTIONS(3721), + [aux_sym__val_number_decimal_token2] = ACTIONS(3721), + [anon_sym_DOT2] = ACTIONS(3721), + [aux_sym__val_number_decimal_token3] = ACTIONS(3721), + [aux_sym__val_number_token1] = ACTIONS(3721), + [aux_sym__val_number_token2] = ACTIONS(3721), + [aux_sym__val_number_token3] = ACTIONS(3721), + [aux_sym__val_number_token4] = ACTIONS(3721), + [aux_sym__val_number_token5] = ACTIONS(3721), + [aux_sym__val_number_token6] = ACTIONS(3721), + [anon_sym_0b] = ACTIONS(3721), + [anon_sym_0o] = ACTIONS(3721), + [anon_sym_0x] = ACTIONS(3721), + [sym_val_date] = ACTIONS(3721), + [anon_sym_DQUOTE] = ACTIONS(3721), + [sym__str_single_quotes] = ACTIONS(3721), + [sym__str_back_ticks] = ACTIONS(3721), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3721), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3721), + [anon_sym_CARET] = ACTIONS(3721), + [anon_sym_POUND] = ACTIONS(113), + }, + [2170] = { + [sym__expression] = STATE(7145), + [sym_expr_unary] = STATE(5677), + [sym__expr_unary_minus] = STATE(5679), + [sym_expr_binary] = STATE(5677), + [sym__expr_binary_expression] = STATE(6377), + [sym_expr_parenthesized] = STATE(4919), + [sym_val_range] = STATE(8295), + [sym__value] = STATE(5677), + [sym_val_nothing] = STATE(5612), + [sym_val_bool] = STATE(5612), + [sym_val_variable] = STATE(4867), + [sym__var] = STATE(4310), + [sym_val_number] = STATE(5612), + [sym__val_number_decimal] = STATE(4408), + [sym__val_number] = STATE(5661), + [sym_val_duration] = STATE(5612), + [sym_val_filesize] = STATE(5612), + [sym_val_binary] = STATE(5612), + [sym_val_string] = STATE(5612), + [sym__str_double_quotes] = STATE(5733), + [sym_val_interpolated] = STATE(5612), + [sym__inter_single_quotes] = STATE(5590), + [sym__inter_double_quotes] = STATE(5591), + [sym_val_list] = STATE(5612), + [sym_val_record] = STATE(5612), + [sym_val_table] = STATE(5612), + [sym_val_closure] = STATE(5612), + [sym__flag] = STATE(2050), + [sym_short_flag] = STATE(4939), + [sym_long_flag] = STATE(4939), + [sym_long_flag_equals_value] = STATE(4865), + [sym_comment] = STATE(2170), + [ts_builtin_sym_end] = ACTIONS(4873), + [anon_sym_SEMI] = ACTIONS(4871), + [anon_sym_LF] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(5667), + [anon_sym_LPAREN] = ACTIONS(5669), + [anon_sym_PIPE] = ACTIONS(4871), + [anon_sym_DOLLAR] = ACTIONS(2667), + [anon_sym_DASH_DASH] = ACTIONS(5671), + [anon_sym_DASH] = ACTIONS(5673), + [anon_sym_LBRACE] = ACTIONS(5675), + [anon_sym_DOT_DOT] = ACTIONS(5677), + [anon_sym_not] = ACTIONS(5679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5681), + [anon_sym_DOT_DOT_LT] = ACTIONS(5681), + [anon_sym_null] = ACTIONS(5683), + [anon_sym_true] = ACTIONS(5685), + [anon_sym_false] = ACTIONS(5685), + [aux_sym__val_number_decimal_token1] = ACTIONS(5687), + [aux_sym__val_number_decimal_token2] = ACTIONS(5687), + [anon_sym_DOT2] = ACTIONS(5689), + [aux_sym__val_number_decimal_token3] = ACTIONS(5691), + [aux_sym__val_number_token1] = ACTIONS(5693), + [aux_sym__val_number_token2] = ACTIONS(5693), + [aux_sym__val_number_token3] = ACTIONS(5693), + [aux_sym__val_number_token4] = ACTIONS(5693), + [aux_sym__val_number_token5] = ACTIONS(5693), + [aux_sym__val_number_token6] = ACTIONS(5693), + [anon_sym_0b] = ACTIONS(2695), + [anon_sym_0o] = ACTIONS(2697), + [anon_sym_0x] = ACTIONS(2697), + [sym_val_date] = ACTIONS(5695), + [anon_sym_DQUOTE] = ACTIONS(5697), + [sym__str_single_quotes] = ACTIONS(5699), + [sym__str_back_ticks] = ACTIONS(5699), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5703), + [anon_sym_POUND] = ACTIONS(113), + }, + [2171] = { + [sym_comment] = STATE(2171), + [anon_sym_LBRACK] = ACTIONS(1169), + [anon_sym_COMMA] = ACTIONS(1169), + [anon_sym_RBRACK] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(1169), + [anon_sym_DOLLAR] = ACTIONS(1169), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_DASH_DASH] = ACTIONS(1169), + [anon_sym_DASH] = ACTIONS(1076), + [anon_sym_in] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1169), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_STAR] = ACTIONS(1076), + [anon_sym_STAR_STAR] = ACTIONS(1169), + [anon_sym_PLUS_PLUS] = ACTIONS(1169), + [anon_sym_SLASH] = ACTIONS(1076), + [anon_sym_mod] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1076), + [anon_sym_bit_DASHshl] = ACTIONS(1169), + [anon_sym_bit_DASHshr] = ACTIONS(1169), + [anon_sym_EQ_EQ] = ACTIONS(1169), + [anon_sym_BANG_EQ] = ACTIONS(1169), + [anon_sym_LT2] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1169), + [anon_sym_GT_EQ] = ACTIONS(1169), + [anon_sym_not_DASHin] = ACTIONS(1169), + [anon_sym_starts_DASHwith] = ACTIONS(1169), + [anon_sym_ends_DASHwith] = ACTIONS(1169), + [anon_sym_EQ_TILDE] = ACTIONS(1169), + [anon_sym_BANG_TILDE] = ACTIONS(1169), + [anon_sym_bit_DASHand] = ACTIONS(1169), + [anon_sym_bit_DASHxor] = ACTIONS(1169), + [anon_sym_bit_DASHor] = ACTIONS(1169), + [anon_sym_and] = ACTIONS(1169), + [anon_sym_xor] = ACTIONS(1169), + [anon_sym_or] = ACTIONS(1169), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1169), + [anon_sym_DOT_DOT_LT] = ACTIONS(1169), + [anon_sym_null] = ACTIONS(1169), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [aux_sym__val_number_decimal_token1] = ACTIONS(1076), + [aux_sym__val_number_decimal_token2] = ACTIONS(1169), + [anon_sym_DOT2] = ACTIONS(1076), + [aux_sym__val_number_decimal_token3] = ACTIONS(1169), + [aux_sym__val_number_token1] = ACTIONS(1169), + [aux_sym__val_number_token2] = ACTIONS(1169), + [aux_sym__val_number_token3] = ACTIONS(1169), + [aux_sym__val_number_token4] = ACTIONS(1169), + [aux_sym__val_number_token5] = ACTIONS(1169), + [aux_sym__val_number_token6] = ACTIONS(1169), + [anon_sym_0b] = ACTIONS(1076), + [anon_sym_0o] = ACTIONS(1076), + [anon_sym_0x] = ACTIONS(1076), + [sym_val_date] = ACTIONS(1169), + [anon_sym_DQUOTE] = ACTIONS(1169), + [sym__str_single_quotes] = ACTIONS(1169), + [sym__str_back_ticks] = ACTIONS(1169), + [anon_sym_err_GT] = ACTIONS(1169), + [anon_sym_out_GT] = ACTIONS(1169), + [anon_sym_e_GT] = ACTIONS(1169), + [anon_sym_o_GT] = ACTIONS(1169), + [anon_sym_err_PLUSout_GT] = ACTIONS(1169), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1169), + [anon_sym_o_PLUSe_GT] = ACTIONS(1169), + [anon_sym_e_PLUSo_GT] = ACTIONS(1169), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1076), + [anon_sym_POUND] = ACTIONS(3), + }, + [2172] = { + [sym_comment] = STATE(2172), + [anon_sym_LBRACK] = ACTIONS(1247), + [anon_sym_COMMA] = ACTIONS(1247), + [anon_sym_LPAREN] = ACTIONS(1247), + [anon_sym_DOLLAR] = ACTIONS(1247), + [anon_sym_GT] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_in] = ACTIONS(1245), + [anon_sym_LBRACE] = ACTIONS(1247), + [anon_sym_RBRACE] = ACTIONS(1247), + [anon_sym__] = ACTIONS(1245), + [anon_sym_DOT_DOT] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(1245), + [anon_sym_STAR_STAR] = ACTIONS(1247), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_SLASH] = ACTIONS(1245), + [anon_sym_mod] = ACTIONS(1247), + [anon_sym_SLASH_SLASH] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_bit_DASHshl] = ACTIONS(1247), + [anon_sym_bit_DASHshr] = ACTIONS(1247), + [anon_sym_EQ_EQ] = ACTIONS(1247), + [anon_sym_BANG_EQ] = ACTIONS(1247), + [anon_sym_LT2] = ACTIONS(1245), + [anon_sym_LT_EQ] = ACTIONS(1247), + [anon_sym_GT_EQ] = ACTIONS(1247), + [anon_sym_not_DASHin] = ACTIONS(1247), + [anon_sym_starts_DASHwith] = ACTIONS(1247), + [anon_sym_ends_DASHwith] = ACTIONS(1247), + [anon_sym_EQ_TILDE] = ACTIONS(1247), + [anon_sym_BANG_TILDE] = ACTIONS(1247), + [anon_sym_bit_DASHand] = ACTIONS(1247), + [anon_sym_bit_DASHxor] = ACTIONS(1247), + [anon_sym_bit_DASHor] = ACTIONS(1247), + [anon_sym_and] = ACTIONS(1247), + [anon_sym_xor] = ACTIONS(1247), + [anon_sym_or] = ACTIONS(1247), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1247), + [anon_sym_DOT_DOT_LT] = ACTIONS(1247), + [anon_sym_null] = ACTIONS(1247), + [anon_sym_true] = ACTIONS(1247), + [anon_sym_false] = ACTIONS(1247), + [aux_sym__val_number_decimal_token1] = ACTIONS(1245), + [aux_sym__val_number_decimal_token2] = ACTIONS(1247), + [anon_sym_DOT2] = ACTIONS(1245), + [aux_sym__val_number_decimal_token3] = ACTIONS(1247), + [aux_sym__val_number_token1] = ACTIONS(1247), + [aux_sym__val_number_token2] = ACTIONS(1247), + [aux_sym__val_number_token3] = ACTIONS(1247), + [aux_sym__val_number_token4] = ACTIONS(1247), + [aux_sym__val_number_token5] = ACTIONS(1247), + [aux_sym__val_number_token6] = ACTIONS(1247), + [anon_sym_0b] = ACTIONS(1245), + [anon_sym_0o] = ACTIONS(1245), + [anon_sym_0x] = ACTIONS(1245), + [sym_val_date] = ACTIONS(1247), + [anon_sym_DQUOTE] = ACTIONS(1247), + [sym__str_single_quotes] = ACTIONS(1247), + [sym__str_back_ticks] = ACTIONS(1247), + [anon_sym_err_GT] = ACTIONS(1247), + [anon_sym_out_GT] = ACTIONS(1247), + [anon_sym_e_GT] = ACTIONS(1247), + [anon_sym_o_GT] = ACTIONS(1247), + [anon_sym_err_PLUSout_GT] = ACTIONS(1247), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1247), + [anon_sym_o_PLUSe_GT] = ACTIONS(1247), + [anon_sym_e_PLUSo_GT] = ACTIONS(1247), + [aux_sym_unquoted_token1] = ACTIONS(1245), + [anon_sym_POUND] = ACTIONS(3), + }, + [2173] = { + [sym_comment] = STATE(2173), + [anon_sym_LBRACK] = ACTIONS(1181), + [anon_sym_COMMA] = ACTIONS(1181), + [anon_sym_RBRACK] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_DOLLAR] = ACTIONS(1181), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1181), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1179), + [anon_sym_STAR_STAR] = ACTIONS(5707), + [anon_sym_PLUS_PLUS] = ACTIONS(5707), + [anon_sym_SLASH] = ACTIONS(1179), + [anon_sym_mod] = ACTIONS(1181), + [anon_sym_SLASH_SLASH] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_bit_DASHshl] = ACTIONS(1181), + [anon_sym_bit_DASHshr] = ACTIONS(1181), + [anon_sym_EQ_EQ] = ACTIONS(1181), + [anon_sym_BANG_EQ] = ACTIONS(1181), + [anon_sym_LT2] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1181), + [anon_sym_GT_EQ] = ACTIONS(1181), + [anon_sym_not_DASHin] = ACTIONS(1181), + [anon_sym_starts_DASHwith] = ACTIONS(1181), + [anon_sym_ends_DASHwith] = ACTIONS(1181), + [anon_sym_EQ_TILDE] = ACTIONS(1181), + [anon_sym_BANG_TILDE] = ACTIONS(1181), + [anon_sym_bit_DASHand] = ACTIONS(1181), + [anon_sym_bit_DASHxor] = ACTIONS(1181), + [anon_sym_bit_DASHor] = ACTIONS(1181), + [anon_sym_and] = ACTIONS(1181), + [anon_sym_xor] = ACTIONS(1181), + [anon_sym_or] = ACTIONS(1181), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1181), + [anon_sym_DOT_DOT_LT] = ACTIONS(1181), + [anon_sym_null] = ACTIONS(1181), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1181), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1181), + [aux_sym__val_number_token1] = ACTIONS(1181), + [aux_sym__val_number_token2] = ACTIONS(1181), + [aux_sym__val_number_token3] = ACTIONS(1181), + [aux_sym__val_number_token4] = ACTIONS(1181), + [aux_sym__val_number_token5] = ACTIONS(1181), + [aux_sym__val_number_token6] = ACTIONS(1181), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym__str_single_quotes] = ACTIONS(1181), + [sym__str_back_ticks] = ACTIONS(1181), + [anon_sym_err_GT] = ACTIONS(1181), + [anon_sym_out_GT] = ACTIONS(1181), + [anon_sym_e_GT] = ACTIONS(1181), + [anon_sym_o_GT] = ACTIONS(1181), + [anon_sym_err_PLUSout_GT] = ACTIONS(1181), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1181), + [anon_sym_o_PLUSe_GT] = ACTIONS(1181), + [anon_sym_e_PLUSo_GT] = ACTIONS(1181), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(3), + }, + [2174] = { + [sym_comment] = STATE(2174), + [anon_sym_LBRACK] = ACTIONS(895), + [anon_sym_LPAREN] = ACTIONS(895), + [anon_sym_DOLLAR] = ACTIONS(893), + [anon_sym_GT] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_in] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(895), + [anon_sym_DOT_DOT] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(893), + [anon_sym_STAR_STAR] = ACTIONS(895), + [anon_sym_PLUS_PLUS] = ACTIONS(895), + [anon_sym_SLASH] = ACTIONS(893), + [anon_sym_mod] = ACTIONS(895), + [anon_sym_SLASH_SLASH] = ACTIONS(895), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_bit_DASHshl] = ACTIONS(895), + [anon_sym_bit_DASHshr] = ACTIONS(895), + [anon_sym_EQ_EQ] = ACTIONS(895), + [anon_sym_BANG_EQ] = ACTIONS(895), + [anon_sym_LT2] = ACTIONS(893), + [anon_sym_LT_EQ] = ACTIONS(895), + [anon_sym_GT_EQ] = ACTIONS(895), + [anon_sym_not_DASHin] = ACTIONS(895), + [anon_sym_starts_DASHwith] = ACTIONS(895), + [anon_sym_ends_DASHwith] = ACTIONS(895), + [anon_sym_EQ_TILDE] = ACTIONS(895), + [anon_sym_BANG_TILDE] = ACTIONS(895), + [anon_sym_bit_DASHand] = ACTIONS(895), + [anon_sym_bit_DASHxor] = ACTIONS(895), + [anon_sym_bit_DASHor] = ACTIONS(895), + [anon_sym_and] = ACTIONS(895), + [anon_sym_xor] = ACTIONS(895), + [anon_sym_or] = ACTIONS(895), + [anon_sym_not] = ACTIONS(893), + [anon_sym_DOT_DOT2] = ACTIONS(893), + [anon_sym_DOT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ] = ACTIONS(893), + [anon_sym_DOT_DOT_LT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), + [anon_sym_DOT_DOT_LT2] = ACTIONS(895), + [aux_sym__immediate_decimal_token1] = ACTIONS(5882), + [aux_sym__immediate_decimal_token2] = ACTIONS(5884), + [anon_sym_null] = ACTIONS(895), + [anon_sym_true] = ACTIONS(895), + [anon_sym_false] = ACTIONS(895), + [aux_sym__val_number_decimal_token1] = ACTIONS(893), + [aux_sym__val_number_decimal_token2] = ACTIONS(895), + [anon_sym_DOT2] = ACTIONS(893), + [aux_sym__val_number_decimal_token3] = ACTIONS(895), + [aux_sym__val_number_token1] = ACTIONS(895), + [aux_sym__val_number_token2] = ACTIONS(895), + [aux_sym__val_number_token3] = ACTIONS(895), + [aux_sym__val_number_token4] = ACTIONS(895), + [aux_sym__val_number_token5] = ACTIONS(895), + [aux_sym__val_number_token6] = ACTIONS(895), + [anon_sym_0b] = ACTIONS(893), + [sym_filesize_unit] = ACTIONS(893), + [sym_duration_unit] = ACTIONS(895), + [anon_sym_0o] = ACTIONS(893), + [anon_sym_0x] = ACTIONS(893), + [sym_val_date] = ACTIONS(895), + [anon_sym_DQUOTE] = ACTIONS(895), + [sym__str_single_quotes] = ACTIONS(895), + [sym__str_back_ticks] = ACTIONS(895), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(895), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(895), + [aux_sym_unquoted_token5] = ACTIONS(893), + [anon_sym_POUND] = ACTIONS(3), + }, + [2175] = { + [sym_comment] = STATE(2175), + [anon_sym_LBRACK] = ACTIONS(940), + [anon_sym_COMMA] = ACTIONS(940), + [anon_sym_LPAREN] = ACTIONS(940), + [anon_sym_DOLLAR] = ACTIONS(940), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_in] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(940), + [anon_sym_RBRACE] = ACTIONS(940), + [anon_sym__] = ACTIONS(938), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_STAR_STAR] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(940), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(940), + [anon_sym_SLASH_SLASH] = ACTIONS(940), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_bit_DASHshl] = ACTIONS(940), + [anon_sym_bit_DASHshr] = ACTIONS(940), + [anon_sym_EQ_EQ] = ACTIONS(940), + [anon_sym_BANG_EQ] = ACTIONS(940), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(940), + [anon_sym_GT_EQ] = ACTIONS(940), + [anon_sym_not_DASHin] = ACTIONS(940), + [anon_sym_starts_DASHwith] = ACTIONS(940), + [anon_sym_ends_DASHwith] = ACTIONS(940), + [anon_sym_EQ_TILDE] = ACTIONS(940), + [anon_sym_BANG_TILDE] = ACTIONS(940), + [anon_sym_bit_DASHand] = ACTIONS(940), + [anon_sym_bit_DASHxor] = ACTIONS(940), + [anon_sym_bit_DASHor] = ACTIONS(940), + [anon_sym_and] = ACTIONS(940), + [anon_sym_xor] = ACTIONS(940), + [anon_sym_or] = ACTIONS(940), + [anon_sym_DOT_DOT_EQ] = ACTIONS(940), + [anon_sym_DOT_DOT_LT] = ACTIONS(940), + [anon_sym_null] = ACTIONS(940), + [anon_sym_true] = ACTIONS(940), + [anon_sym_false] = ACTIONS(940), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(940), + [anon_sym_DOT2] = ACTIONS(938), + [aux_sym__val_number_decimal_token3] = ACTIONS(940), + [aux_sym__val_number_token1] = ACTIONS(940), + [aux_sym__val_number_token2] = ACTIONS(940), + [aux_sym__val_number_token3] = ACTIONS(940), + [aux_sym__val_number_token4] = ACTIONS(940), + [aux_sym__val_number_token5] = ACTIONS(940), + [aux_sym__val_number_token6] = ACTIONS(940), + [anon_sym_0b] = ACTIONS(938), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = ACTIONS(940), + [anon_sym_DQUOTE] = ACTIONS(940), + [sym__str_single_quotes] = ACTIONS(940), + [sym__str_back_ticks] = ACTIONS(940), + [anon_sym_err_GT] = ACTIONS(940), + [anon_sym_out_GT] = ACTIONS(940), + [anon_sym_e_GT] = ACTIONS(940), + [anon_sym_o_GT] = ACTIONS(940), + [anon_sym_err_PLUSout_GT] = ACTIONS(940), + [anon_sym_out_PLUSerr_GT] = ACTIONS(940), + [anon_sym_o_PLUSe_GT] = ACTIONS(940), + [anon_sym_e_PLUSo_GT] = ACTIONS(940), + [aux_sym_unquoted_token1] = ACTIONS(938), + [anon_sym_POUND] = ACTIONS(3), + }, + [2176] = { + [sym_comment] = STATE(2176), + [anon_sym_LBRACK] = ACTIONS(1231), + [anon_sym_COMMA] = ACTIONS(1231), + [anon_sym_LPAREN] = ACTIONS(1231), + [anon_sym_DOLLAR] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_in] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [anon_sym_RBRACE] = ACTIONS(1231), + [anon_sym__] = ACTIONS(1229), + [anon_sym_DOT_DOT] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1229), + [anon_sym_STAR_STAR] = ACTIONS(1231), + [anon_sym_PLUS_PLUS] = ACTIONS(1231), + [anon_sym_SLASH] = ACTIONS(1229), + [anon_sym_mod] = ACTIONS(1231), + [anon_sym_SLASH_SLASH] = ACTIONS(1231), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_bit_DASHshl] = ACTIONS(1231), + [anon_sym_bit_DASHshr] = ACTIONS(1231), + [anon_sym_EQ_EQ] = ACTIONS(1231), + [anon_sym_BANG_EQ] = ACTIONS(1231), + [anon_sym_LT2] = ACTIONS(1229), + [anon_sym_LT_EQ] = ACTIONS(1231), + [anon_sym_GT_EQ] = ACTIONS(1231), + [anon_sym_not_DASHin] = ACTIONS(1231), + [anon_sym_starts_DASHwith] = ACTIONS(1231), + [anon_sym_ends_DASHwith] = ACTIONS(1231), + [anon_sym_EQ_TILDE] = ACTIONS(1231), + [anon_sym_BANG_TILDE] = ACTIONS(1231), + [anon_sym_bit_DASHand] = ACTIONS(1231), + [anon_sym_bit_DASHxor] = ACTIONS(1231), + [anon_sym_bit_DASHor] = ACTIONS(1231), + [anon_sym_and] = ACTIONS(1231), + [anon_sym_xor] = ACTIONS(1231), + [anon_sym_or] = ACTIONS(1231), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1231), + [anon_sym_DOT_DOT_LT] = ACTIONS(1231), + [anon_sym_null] = ACTIONS(1231), + [anon_sym_true] = ACTIONS(1231), + [anon_sym_false] = ACTIONS(1231), + [aux_sym__val_number_decimal_token1] = ACTIONS(1229), + [aux_sym__val_number_decimal_token2] = ACTIONS(1231), + [anon_sym_DOT2] = ACTIONS(1229), + [aux_sym__val_number_decimal_token3] = ACTIONS(1231), + [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(1231), + [aux_sym__val_number_token5] = ACTIONS(1231), + [aux_sym__val_number_token6] = ACTIONS(1231), + [anon_sym_0b] = ACTIONS(1229), + [anon_sym_0o] = ACTIONS(1229), + [anon_sym_0x] = ACTIONS(1229), + [sym_val_date] = ACTIONS(1231), + [anon_sym_DQUOTE] = ACTIONS(1231), + [sym__str_single_quotes] = ACTIONS(1231), + [sym__str_back_ticks] = ACTIONS(1231), + [anon_sym_err_GT] = ACTIONS(1231), + [anon_sym_out_GT] = ACTIONS(1231), + [anon_sym_e_GT] = ACTIONS(1231), + [anon_sym_o_GT] = ACTIONS(1231), + [anon_sym_err_PLUSout_GT] = ACTIONS(1231), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1231), + [anon_sym_o_PLUSe_GT] = ACTIONS(1231), + [anon_sym_e_PLUSo_GT] = ACTIONS(1231), + [aux_sym_unquoted_token1] = ACTIONS(1229), + [anon_sym_POUND] = ACTIONS(3), + }, + [2177] = { + [sym_comment] = STATE(2177), + [anon_sym_LBRACK] = ACTIONS(1235), + [anon_sym_COMMA] = ACTIONS(1235), + [anon_sym_LPAREN] = ACTIONS(1235), + [anon_sym_DOLLAR] = ACTIONS(1235), + [anon_sym_GT] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_in] = ACTIONS(1233), + [anon_sym_LBRACE] = ACTIONS(1235), + [anon_sym_RBRACE] = ACTIONS(1235), + [anon_sym__] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1233), + [anon_sym_STAR_STAR] = ACTIONS(1235), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_SLASH] = ACTIONS(1233), + [anon_sym_mod] = ACTIONS(1235), + [anon_sym_SLASH_SLASH] = ACTIONS(1235), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_bit_DASHshl] = ACTIONS(1235), + [anon_sym_bit_DASHshr] = ACTIONS(1235), + [anon_sym_EQ_EQ] = ACTIONS(1235), + [anon_sym_BANG_EQ] = ACTIONS(1235), + [anon_sym_LT2] = ACTIONS(1233), + [anon_sym_LT_EQ] = ACTIONS(1235), + [anon_sym_GT_EQ] = ACTIONS(1235), + [anon_sym_not_DASHin] = ACTIONS(1235), + [anon_sym_starts_DASHwith] = ACTIONS(1235), + [anon_sym_ends_DASHwith] = ACTIONS(1235), + [anon_sym_EQ_TILDE] = ACTIONS(1235), + [anon_sym_BANG_TILDE] = ACTIONS(1235), + [anon_sym_bit_DASHand] = ACTIONS(1235), + [anon_sym_bit_DASHxor] = ACTIONS(1235), + [anon_sym_bit_DASHor] = ACTIONS(1235), + [anon_sym_and] = ACTIONS(1235), + [anon_sym_xor] = ACTIONS(1235), + [anon_sym_or] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1235), + [anon_sym_DOT_DOT_LT] = ACTIONS(1235), + [anon_sym_null] = ACTIONS(1235), + [anon_sym_true] = ACTIONS(1235), + [anon_sym_false] = ACTIONS(1235), + [aux_sym__val_number_decimal_token1] = ACTIONS(1233), + [aux_sym__val_number_decimal_token2] = ACTIONS(1235), + [anon_sym_DOT2] = ACTIONS(1233), + [aux_sym__val_number_decimal_token3] = ACTIONS(1235), + [aux_sym__val_number_token1] = ACTIONS(1235), + [aux_sym__val_number_token2] = ACTIONS(1235), + [aux_sym__val_number_token3] = ACTIONS(1235), + [aux_sym__val_number_token4] = ACTIONS(1235), + [aux_sym__val_number_token5] = ACTIONS(1235), + [aux_sym__val_number_token6] = ACTIONS(1235), + [anon_sym_0b] = ACTIONS(1233), + [anon_sym_0o] = ACTIONS(1233), + [anon_sym_0x] = ACTIONS(1233), + [sym_val_date] = ACTIONS(1235), + [anon_sym_DQUOTE] = ACTIONS(1235), + [sym__str_single_quotes] = ACTIONS(1235), + [sym__str_back_ticks] = ACTIONS(1235), + [anon_sym_err_GT] = ACTIONS(1235), + [anon_sym_out_GT] = ACTIONS(1235), + [anon_sym_e_GT] = ACTIONS(1235), + [anon_sym_o_GT] = ACTIONS(1235), + [anon_sym_err_PLUSout_GT] = ACTIONS(1235), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1235), + [anon_sym_o_PLUSe_GT] = ACTIONS(1235), + [anon_sym_e_PLUSo_GT] = ACTIONS(1235), + [aux_sym_unquoted_token1] = ACTIONS(1233), + [anon_sym_POUND] = ACTIONS(3), + }, + [2178] = { + [sym_comment] = STATE(2178), + [ts_builtin_sym_end] = ACTIONS(1035), + [anon_sym_export] = ACTIONS(1033), + [anon_sym_alias] = ACTIONS(1033), + [anon_sym_let] = ACTIONS(1033), + [anon_sym_let_DASHenv] = ACTIONS(1033), + [anon_sym_mut] = ACTIONS(1033), + [anon_sym_const] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(1033), + [sym_cmd_identifier] = ACTIONS(1033), + [anon_sym_LF] = ACTIONS(1035), + [anon_sym_def] = ACTIONS(1033), + [anon_sym_export_DASHenv] = ACTIONS(1033), + [anon_sym_extern] = ACTIONS(1033), + [anon_sym_module] = ACTIONS(1033), + [anon_sym_use] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1033), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_error] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1033), + [anon_sym_break] = ACTIONS(1033), + [anon_sym_continue] = ACTIONS(1033), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_loop] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(1033), + [anon_sym_do] = ACTIONS(1033), + [anon_sym_if] = ACTIONS(1033), + [anon_sym_match] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_DOT_DOT] = ACTIONS(1033), + [anon_sym_try] = ACTIONS(1033), + [anon_sym_return] = ACTIONS(1033), + [anon_sym_source] = ACTIONS(1033), + [anon_sym_source_DASHenv] = ACTIONS(1033), + [anon_sym_register] = ACTIONS(1033), + [anon_sym_hide] = ACTIONS(1033), + [anon_sym_hide_DASHenv] = ACTIONS(1033), + [anon_sym_overlay] = ACTIONS(1033), + [anon_sym_as] = ACTIONS(1033), + [anon_sym_where] = ACTIONS(1033), + [anon_sym_not] = ACTIONS(1033), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1033), + [anon_sym_DOT_DOT_LT] = ACTIONS(1033), + [anon_sym_null] = ACTIONS(1033), + [anon_sym_true] = ACTIONS(1033), + [anon_sym_false] = ACTIONS(1033), + [aux_sym__val_number_decimal_token1] = ACTIONS(1033), + [aux_sym__val_number_decimal_token2] = ACTIONS(1033), + [anon_sym_DOT2] = ACTIONS(1033), + [aux_sym__val_number_decimal_token3] = ACTIONS(1033), + [aux_sym__val_number_token1] = ACTIONS(1033), + [aux_sym__val_number_token2] = ACTIONS(1033), + [aux_sym__val_number_token3] = ACTIONS(1033), + [aux_sym__val_number_token4] = ACTIONS(1033), + [aux_sym__val_number_token5] = ACTIONS(1033), + [aux_sym__val_number_token6] = ACTIONS(1033), + [anon_sym_0b] = ACTIONS(1033), + [anon_sym_0o] = ACTIONS(1033), + [anon_sym_0x] = ACTIONS(1033), + [sym_val_date] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [sym__str_single_quotes] = ACTIONS(1033), + [sym__str_back_ticks] = ACTIONS(1033), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1033), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1033), + [anon_sym_CARET] = ACTIONS(1033), + [anon_sym_POUND] = ACTIONS(113), + }, + [2179] = { + [sym__expression] = STATE(7157), + [sym_expr_unary] = STATE(5677), + [sym__expr_unary_minus] = STATE(5679), + [sym_expr_binary] = STATE(5677), + [sym__expr_binary_expression] = STATE(6377), + [sym_expr_parenthesized] = STATE(4919), + [sym_val_range] = STATE(8295), + [sym__value] = STATE(5677), + [sym_val_nothing] = STATE(5612), + [sym_val_bool] = STATE(5612), + [sym_val_variable] = STATE(4867), + [sym__var] = STATE(4310), + [sym_val_number] = STATE(5612), + [sym__val_number_decimal] = STATE(4408), + [sym__val_number] = STATE(5661), + [sym_val_duration] = STATE(5612), + [sym_val_filesize] = STATE(5612), + [sym_val_binary] = STATE(5612), + [sym_val_string] = STATE(5612), + [sym__str_double_quotes] = STATE(5733), + [sym_val_interpolated] = STATE(5612), + [sym__inter_single_quotes] = STATE(5590), + [sym__inter_double_quotes] = STATE(5591), + [sym_val_list] = STATE(5612), + [sym_val_record] = STATE(5612), + [sym_val_table] = STATE(5612), + [sym_val_closure] = STATE(5612), + [sym__flag] = STATE(7216), + [sym_short_flag] = STATE(8315), + [sym_long_flag] = STATE(8315), + [sym_long_flag_equals_value] = STATE(8239), + [sym_comment] = STATE(2179), + [ts_builtin_sym_end] = ACTIONS(4933), + [anon_sym_SEMI] = ACTIONS(4931), + [anon_sym_LF] = ACTIONS(4933), + [anon_sym_LBRACK] = ACTIONS(5667), + [anon_sym_LPAREN] = ACTIONS(5669), + [anon_sym_PIPE] = ACTIONS(4931), + [anon_sym_DOLLAR] = ACTIONS(2667), + [anon_sym_DASH_DASH] = ACTIONS(5763), + [anon_sym_DASH] = ACTIONS(5765), + [anon_sym_LBRACE] = ACTIONS(5675), + [anon_sym_DOT_DOT] = ACTIONS(5677), + [anon_sym_not] = ACTIONS(5679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5681), + [anon_sym_DOT_DOT_LT] = ACTIONS(5681), + [anon_sym_null] = ACTIONS(5683), + [anon_sym_true] = ACTIONS(5685), + [anon_sym_false] = ACTIONS(5685), + [aux_sym__val_number_decimal_token1] = ACTIONS(5687), + [aux_sym__val_number_decimal_token2] = ACTIONS(5687), + [anon_sym_DOT2] = ACTIONS(5689), + [aux_sym__val_number_decimal_token3] = ACTIONS(5691), + [aux_sym__val_number_token1] = ACTIONS(5693), + [aux_sym__val_number_token2] = ACTIONS(5693), + [aux_sym__val_number_token3] = ACTIONS(5693), + [aux_sym__val_number_token4] = ACTIONS(5693), + [aux_sym__val_number_token5] = ACTIONS(5693), + [aux_sym__val_number_token6] = ACTIONS(5693), + [anon_sym_0b] = ACTIONS(2695), + [anon_sym_0o] = ACTIONS(2697), + [anon_sym_0x] = ACTIONS(2697), + [sym_val_date] = ACTIONS(5695), + [anon_sym_DQUOTE] = ACTIONS(5697), + [sym__str_single_quotes] = ACTIONS(5699), + [sym__str_back_ticks] = ACTIONS(5699), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5703), + [anon_sym_POUND] = ACTIONS(113), + }, + [2180] = { + [sym_comment] = STATE(2180), [anon_sym_LBRACK] = ACTIONS(1243), [anon_sym_COMMA] = ACTIONS(1243), [anon_sym_LPAREN] = ACTIONS(1243), [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_in] = ACTIONS(1243), + [anon_sym_GT] = ACTIONS(1241), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_in] = ACTIONS(1241), [anon_sym_LBRACE] = ACTIONS(1243), [anon_sym_RBRACE] = ACTIONS(1243), - [anon_sym__] = ACTIONS(1243), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1243), + [anon_sym__] = ACTIONS(1241), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_STAR] = ACTIONS(1241), [anon_sym_STAR_STAR] = ACTIONS(1243), [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_SLASH] = ACTIONS(1243), + [anon_sym_SLASH] = ACTIONS(1241), [anon_sym_mod] = ACTIONS(1243), [anon_sym_SLASH_SLASH] = ACTIONS(1243), - [anon_sym_PLUS] = ACTIONS(1243), + [anon_sym_PLUS] = ACTIONS(1241), [anon_sym_bit_DASHshl] = ACTIONS(1243), [anon_sym_bit_DASHshr] = ACTIONS(1243), [anon_sym_EQ_EQ] = ACTIONS(1243), [anon_sym_BANG_EQ] = ACTIONS(1243), - [anon_sym_LT2] = ACTIONS(1243), + [anon_sym_LT2] = ACTIONS(1241), [anon_sym_LT_EQ] = ACTIONS(1243), [anon_sym_GT_EQ] = ACTIONS(1243), [anon_sym_not_DASHin] = ACTIONS(1243), @@ -264755,9 +273502,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(1243), [anon_sym_true] = ACTIONS(1243), [anon_sym_false] = ACTIONS(1243), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), + [aux_sym__val_number_decimal_token1] = ACTIONS(1241), [aux_sym__val_number_decimal_token2] = ACTIONS(1243), - [anon_sym_DOT2] = ACTIONS(1243), + [anon_sym_DOT2] = ACTIONS(1241), [aux_sym__val_number_decimal_token3] = ACTIONS(1243), [aux_sym__val_number_token1] = ACTIONS(1243), [aux_sym__val_number_token2] = ACTIONS(1243), @@ -264765,14 +273512,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token4] = ACTIONS(1243), [aux_sym__val_number_token5] = ACTIONS(1243), [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_0b] = ACTIONS(1243), - [anon_sym_0o] = ACTIONS(1243), - [anon_sym_0x] = ACTIONS(1243), + [anon_sym_0b] = ACTIONS(1241), + [anon_sym_0o] = ACTIONS(1241), + [anon_sym_0x] = ACTIONS(1241), [sym_val_date] = ACTIONS(1243), [anon_sym_DQUOTE] = ACTIONS(1243), [sym__str_single_quotes] = ACTIONS(1243), [sym__str_back_ticks] = ACTIONS(1243), - [aux_sym__list_item_starts_with_sign_token1] = ACTIONS(5421), [anon_sym_err_GT] = ACTIONS(1243), [anon_sym_out_GT] = ACTIONS(1243), [anon_sym_e_GT] = ACTIONS(1243), @@ -264781,754 +273527,1667 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT] = ACTIONS(1243), [anon_sym_o_PLUSe_GT] = ACTIONS(1243), [anon_sym_e_PLUSo_GT] = ACTIONS(1243), - [aux_sym_unquoted_token1] = ACTIONS(1243), + [aux_sym_unquoted_token1] = ACTIONS(1241), + [anon_sym_POUND] = ACTIONS(3), + }, + [2181] = { + [sym_match_arm] = STATE(4342), + [sym_default_arm] = STATE(10661), + [sym_match_pattern] = STATE(10508), + [sym__match_pattern] = STATE(8876), + [sym__match_pattern_expression] = STATE(9859), + [sym__match_pattern_value] = STATE(9862), + [sym__match_pattern_list] = STATE(9863), + [sym__match_pattern_record] = STATE(9864), + [sym__expr_unary_minus] = STATE(9869), + [sym_expr_parenthesized] = STATE(8297), + [sym_val_range] = STATE(9862), + [sym__val_range] = STATE(10105), + [sym_val_nothing] = STATE(9875), + [sym_val_bool] = STATE(9626), + [sym_val_variable] = STATE(8298), + [sym__var] = STATE(3929), + [sym_val_number] = STATE(9875), + [sym__val_number_decimal] = STATE(7214), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(9875), + [sym_val_filesize] = STATE(9875), + [sym_val_binary] = STATE(9875), + [sym_val_string] = STATE(9875), + [sym__str_double_quotes] = STATE(5067), + [sym_val_table] = STATE(9875), + [sym_unquoted] = STATE(9878), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(2181), + [aux_sym_ctrl_match_repeat1] = STATE(2368), + [anon_sym_LBRACK] = ACTIONS(5733), + [anon_sym_LPAREN] = ACTIONS(3100), + [anon_sym_DOLLAR] = ACTIONS(5735), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(5737), + [anon_sym_RBRACE] = ACTIONS(5886), + [anon_sym__] = ACTIONS(5741), + [anon_sym_DOT_DOT] = ACTIONS(5743), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5745), + [anon_sym_DOT_DOT_LT] = ACTIONS(5745), + [anon_sym_null] = ACTIONS(5747), + [anon_sym_true] = ACTIONS(5749), + [anon_sym_false] = ACTIONS(5749), + [aux_sym__val_number_decimal_token1] = ACTIONS(5751), + [aux_sym__val_number_decimal_token2] = ACTIONS(5753), + [anon_sym_DOT2] = ACTIONS(5755), + [aux_sym__val_number_decimal_token3] = ACTIONS(5757), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(5759), + [aux_sym__val_number_token5] = ACTIONS(5759), + [aux_sym__val_number_token6] = ACTIONS(5759), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(5761), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), + [anon_sym_POUND] = ACTIONS(3), + }, + [2182] = { + [sym_comment] = STATE(2182), + [ts_builtin_sym_end] = ACTIONS(1022), + [anon_sym_export] = ACTIONS(1020), + [anon_sym_alias] = ACTIONS(1020), + [anon_sym_let] = ACTIONS(1020), + [anon_sym_let_DASHenv] = ACTIONS(1020), + [anon_sym_mut] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1020), + [sym_cmd_identifier] = ACTIONS(1020), + [anon_sym_LF] = ACTIONS(1022), + [anon_sym_def] = ACTIONS(1020), + [anon_sym_export_DASHenv] = ACTIONS(1020), + [anon_sym_extern] = ACTIONS(1020), + [anon_sym_module] = ACTIONS(1020), + [anon_sym_use] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_error] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1020), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_loop] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_match] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_DOT_DOT] = ACTIONS(1020), + [anon_sym_try] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_source] = ACTIONS(1020), + [anon_sym_source_DASHenv] = ACTIONS(1020), + [anon_sym_register] = ACTIONS(1020), + [anon_sym_hide] = ACTIONS(1020), + [anon_sym_hide_DASHenv] = ACTIONS(1020), + [anon_sym_overlay] = ACTIONS(1020), + [anon_sym_as] = ACTIONS(1020), + [anon_sym_where] = ACTIONS(1020), + [anon_sym_not] = ACTIONS(1020), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1020), + [anon_sym_DOT_DOT_LT] = ACTIONS(1020), + [anon_sym_null] = ACTIONS(1020), + [anon_sym_true] = ACTIONS(1020), + [anon_sym_false] = ACTIONS(1020), + [aux_sym__val_number_decimal_token1] = ACTIONS(1020), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [anon_sym_DOT2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1020), + [aux_sym__val_number_token1] = ACTIONS(1020), + [aux_sym__val_number_token2] = ACTIONS(1020), + [aux_sym__val_number_token3] = ACTIONS(1020), + [aux_sym__val_number_token4] = ACTIONS(1020), + [aux_sym__val_number_token5] = ACTIONS(1020), + [aux_sym__val_number_token6] = ACTIONS(1020), + [anon_sym_0b] = ACTIONS(1020), + [anon_sym_0o] = ACTIONS(1020), + [anon_sym_0x] = ACTIONS(1020), + [sym_val_date] = ACTIONS(1020), + [anon_sym_DQUOTE] = ACTIONS(1020), + [sym__str_single_quotes] = ACTIONS(1020), + [sym__str_back_ticks] = ACTIONS(1020), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1020), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1020), + [anon_sym_CARET] = ACTIONS(1020), [anon_sym_POUND] = ACTIONS(113), }, - [1916] = { - [sym_comment] = STATE(1916), - [anon_sym_LBRACK] = ACTIONS(1160), - [anon_sym_COMMA] = ACTIONS(1158), - [anon_sym_RBRACK] = ACTIONS(1160), - [anon_sym_LPAREN] = ACTIONS(1160), - [anon_sym_DOLLAR] = ACTIONS(1158), - [anon_sym_GT] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_in] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1160), - [anon_sym_DOT_DOT] = ACTIONS(1158), - [anon_sym_STAR] = ACTIONS(1158), - [anon_sym_STAR_STAR] = ACTIONS(1158), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_SLASH] = ACTIONS(1158), - [anon_sym_mod] = ACTIONS(1158), - [anon_sym_SLASH_SLASH] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1158), - [anon_sym_bit_DASHshl] = ACTIONS(1158), - [anon_sym_bit_DASHshr] = ACTIONS(1158), - [anon_sym_EQ_EQ] = ACTIONS(1158), - [anon_sym_BANG_EQ] = ACTIONS(1158), - [anon_sym_LT2] = ACTIONS(1158), - [anon_sym_LT_EQ] = ACTIONS(1158), - [anon_sym_GT_EQ] = ACTIONS(1158), - [anon_sym_not_DASHin] = ACTIONS(1158), - [anon_sym_starts_DASHwith] = ACTIONS(1158), - [anon_sym_ends_DASHwith] = ACTIONS(1158), - [anon_sym_EQ_TILDE] = ACTIONS(1158), - [anon_sym_BANG_TILDE] = ACTIONS(1158), - [anon_sym_bit_DASHand] = ACTIONS(1158), - [anon_sym_bit_DASHxor] = ACTIONS(1158), - [anon_sym_bit_DASHor] = ACTIONS(1158), - [anon_sym_and] = ACTIONS(1158), - [anon_sym_xor] = ACTIONS(1158), - [anon_sym_or] = ACTIONS(1158), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1158), - [anon_sym_DOT_DOT_LT] = ACTIONS(1158), - [anon_sym_null] = ACTIONS(1158), - [anon_sym_true] = ACTIONS(1158), - [anon_sym_false] = ACTIONS(1158), - [aux_sym__val_number_decimal_token1] = ACTIONS(1158), - [aux_sym__val_number_decimal_token2] = ACTIONS(1158), - [anon_sym_DOT2] = ACTIONS(1158), - [aux_sym__val_number_decimal_token3] = ACTIONS(1158), - [aux_sym__val_number_token1] = ACTIONS(1158), - [aux_sym__val_number_token2] = ACTIONS(1158), - [aux_sym__val_number_token3] = ACTIONS(1158), - [aux_sym__val_number_token4] = ACTIONS(1158), - [aux_sym__val_number_token5] = ACTIONS(1158), - [aux_sym__val_number_token6] = ACTIONS(1158), - [anon_sym_0b] = ACTIONS(1158), - [anon_sym_0o] = ACTIONS(1158), - [anon_sym_0x] = ACTIONS(1158), - [sym_val_date] = ACTIONS(1158), - [anon_sym_DQUOTE] = ACTIONS(1160), - [sym__str_single_quotes] = ACTIONS(1160), - [sym__str_back_ticks] = ACTIONS(1160), - [anon_sym_err_GT] = ACTIONS(1158), - [anon_sym_out_GT] = ACTIONS(1158), - [anon_sym_e_GT] = ACTIONS(1158), - [anon_sym_o_GT] = ACTIONS(1158), - [anon_sym_err_PLUSout_GT] = ACTIONS(1158), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1158), - [anon_sym_o_PLUSe_GT] = ACTIONS(1158), - [anon_sym_e_PLUSo_GT] = ACTIONS(1158), - [aux_sym_unquoted_token6] = ACTIONS(1284), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1158), + [2183] = { + [sym_match_arm] = STATE(4342), + [sym_default_arm] = STATE(10505), + [sym_match_pattern] = STATE(10508), + [sym__match_pattern] = STATE(8876), + [sym__match_pattern_expression] = STATE(9859), + [sym__match_pattern_value] = STATE(9862), + [sym__match_pattern_list] = STATE(9863), + [sym__match_pattern_record] = STATE(9864), + [sym__expr_unary_minus] = STATE(9869), + [sym_expr_parenthesized] = STATE(8297), + [sym_val_range] = STATE(9862), + [sym__val_range] = STATE(10105), + [sym_val_nothing] = STATE(9875), + [sym_val_bool] = STATE(9626), + [sym_val_variable] = STATE(8298), + [sym__var] = STATE(3929), + [sym_val_number] = STATE(9875), + [sym__val_number_decimal] = STATE(7214), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(9875), + [sym_val_filesize] = STATE(9875), + [sym_val_binary] = STATE(9875), + [sym_val_string] = STATE(9875), + [sym__str_double_quotes] = STATE(5067), + [sym_val_table] = STATE(9875), + [sym_unquoted] = STATE(9878), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(2183), + [aux_sym_ctrl_match_repeat1] = STATE(2019), + [anon_sym_LBRACK] = ACTIONS(5733), + [anon_sym_LPAREN] = ACTIONS(3100), + [anon_sym_DOLLAR] = ACTIONS(5735), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(5737), + [anon_sym_RBRACE] = ACTIONS(5888), + [anon_sym__] = ACTIONS(5741), + [anon_sym_DOT_DOT] = ACTIONS(5743), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5745), + [anon_sym_DOT_DOT_LT] = ACTIONS(5745), + [anon_sym_null] = ACTIONS(5747), + [anon_sym_true] = ACTIONS(5749), + [anon_sym_false] = ACTIONS(5749), + [aux_sym__val_number_decimal_token1] = ACTIONS(5751), + [aux_sym__val_number_decimal_token2] = ACTIONS(5753), + [anon_sym_DOT2] = ACTIONS(5755), + [aux_sym__val_number_decimal_token3] = ACTIONS(5757), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(5759), + [aux_sym__val_number_token5] = ACTIONS(5759), + [aux_sym__val_number_token6] = ACTIONS(5759), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(5761), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), + [anon_sym_POUND] = ACTIONS(3), + }, + [2184] = { + [sym_comment] = STATE(2184), + [anon_sym_SEMI] = ACTIONS(1061), + [anon_sym_LF] = ACTIONS(1063), + [anon_sym_LBRACK] = ACTIONS(1061), + [anon_sym_LPAREN] = ACTIONS(1061), + [anon_sym_RPAREN] = ACTIONS(1061), + [anon_sym_PIPE] = ACTIONS(1061), + [anon_sym_DOLLAR] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_DASH_DASH] = ACTIONS(1061), + [anon_sym_DASH] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(1061), + [anon_sym_RBRACE] = ACTIONS(1061), + [anon_sym_DOT_DOT] = ACTIONS(1061), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_STAR_STAR] = ACTIONS(1061), + [anon_sym_PLUS_PLUS] = ACTIONS(1061), + [anon_sym_SLASH] = ACTIONS(1061), + [anon_sym_mod] = ACTIONS(1061), + [anon_sym_SLASH_SLASH] = ACTIONS(1061), + [anon_sym_PLUS] = ACTIONS(1061), + [anon_sym_bit_DASHshl] = ACTIONS(1061), + [anon_sym_bit_DASHshr] = ACTIONS(1061), + [anon_sym_EQ_EQ] = ACTIONS(1061), + [anon_sym_BANG_EQ] = ACTIONS(1061), + [anon_sym_LT2] = ACTIONS(1061), + [anon_sym_LT_EQ] = ACTIONS(1061), + [anon_sym_GT_EQ] = ACTIONS(1061), + [anon_sym_not_DASHin] = ACTIONS(1061), + [anon_sym_starts_DASHwith] = ACTIONS(1061), + [anon_sym_ends_DASHwith] = ACTIONS(1061), + [anon_sym_EQ_TILDE] = ACTIONS(1061), + [anon_sym_BANG_TILDE] = ACTIONS(1061), + [anon_sym_bit_DASHand] = ACTIONS(1061), + [anon_sym_bit_DASHxor] = ACTIONS(1061), + [anon_sym_bit_DASHor] = ACTIONS(1061), + [anon_sym_and] = ACTIONS(1061), + [anon_sym_xor] = ACTIONS(1061), + [anon_sym_or] = ACTIONS(1061), + [anon_sym_not] = ACTIONS(1061), + [anon_sym_DOT_DOT2] = ACTIONS(1061), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1061), + [anon_sym_DOT_DOT_LT] = ACTIONS(1061), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1063), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1063), + [anon_sym_null] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1061), + [anon_sym_false] = ACTIONS(1061), + [aux_sym__val_number_decimal_token1] = ACTIONS(1061), + [aux_sym__val_number_decimal_token2] = ACTIONS(1061), + [anon_sym_DOT2] = ACTIONS(1061), + [aux_sym__val_number_decimal_token3] = ACTIONS(1061), + [aux_sym__val_number_token1] = ACTIONS(1061), + [aux_sym__val_number_token2] = ACTIONS(1061), + [aux_sym__val_number_token3] = ACTIONS(1061), + [aux_sym__val_number_token4] = ACTIONS(1061), + [aux_sym__val_number_token5] = ACTIONS(1061), + [aux_sym__val_number_token6] = ACTIONS(1061), + [anon_sym_0b] = ACTIONS(1061), + [anon_sym_0o] = ACTIONS(1061), + [anon_sym_0x] = ACTIONS(1061), + [sym_val_date] = ACTIONS(1061), + [anon_sym_DQUOTE] = ACTIONS(1061), + [sym__str_single_quotes] = ACTIONS(1061), + [sym__str_back_ticks] = ACTIONS(1061), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1061), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1061), [anon_sym_POUND] = ACTIONS(113), }, - [1917] = { - [sym_comment] = STATE(1917), - [anon_sym_LBRACK] = ACTIONS(1115), - [anon_sym_COMMA] = ACTIONS(1115), - [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_DOLLAR] = ACTIONS(1115), - [anon_sym_GT] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_in] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1115), - [anon_sym_RBRACE] = ACTIONS(1115), - [anon_sym__] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_STAR_STAR] = ACTIONS(1115), - [anon_sym_PLUS_PLUS] = ACTIONS(1115), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_mod] = ACTIONS(1115), - [anon_sym_SLASH_SLASH] = ACTIONS(1115), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_bit_DASHshl] = ACTIONS(1115), - [anon_sym_bit_DASHshr] = ACTIONS(1115), - [anon_sym_EQ_EQ] = ACTIONS(1115), - [anon_sym_BANG_EQ] = ACTIONS(1115), - [anon_sym_LT2] = ACTIONS(1113), - [anon_sym_LT_EQ] = ACTIONS(1115), - [anon_sym_GT_EQ] = ACTIONS(1115), - [anon_sym_not_DASHin] = ACTIONS(1115), - [anon_sym_starts_DASHwith] = ACTIONS(1115), - [anon_sym_ends_DASHwith] = ACTIONS(1115), - [anon_sym_EQ_TILDE] = ACTIONS(1115), - [anon_sym_BANG_TILDE] = ACTIONS(1115), - [anon_sym_bit_DASHand] = ACTIONS(1115), - [anon_sym_bit_DASHxor] = ACTIONS(1115), - [anon_sym_bit_DASHor] = ACTIONS(1115), - [anon_sym_and] = ACTIONS(1115), - [anon_sym_xor] = ACTIONS(1115), - [anon_sym_or] = ACTIONS(1115), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1115), - [anon_sym_DOT_DOT_LT] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1115), - [anon_sym_true] = ACTIONS(1115), - [anon_sym_false] = ACTIONS(1115), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_decimal_token2] = ACTIONS(1115), - [anon_sym_DOT2] = ACTIONS(1113), - [aux_sym__val_number_decimal_token3] = ACTIONS(1115), - [aux_sym__val_number_token1] = ACTIONS(1115), - [aux_sym__val_number_token2] = ACTIONS(1115), - [aux_sym__val_number_token3] = ACTIONS(1115), - [aux_sym__val_number_token4] = ACTIONS(1115), - [aux_sym__val_number_token5] = ACTIONS(1115), - [aux_sym__val_number_token6] = ACTIONS(1115), - [anon_sym_0b] = ACTIONS(1113), - [anon_sym_0o] = ACTIONS(1113), - [anon_sym_0x] = ACTIONS(1113), - [sym_val_date] = ACTIONS(1115), - [anon_sym_DQUOTE] = ACTIONS(1115), - [sym__str_single_quotes] = ACTIONS(1115), - [sym__str_back_ticks] = ACTIONS(1115), - [anon_sym_err_GT] = ACTIONS(1115), - [anon_sym_out_GT] = ACTIONS(1115), - [anon_sym_e_GT] = ACTIONS(1115), - [anon_sym_o_GT] = ACTIONS(1115), - [anon_sym_err_PLUSout_GT] = ACTIONS(1115), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1115), - [anon_sym_o_PLUSe_GT] = ACTIONS(1115), - [anon_sym_e_PLUSo_GT] = ACTIONS(1115), - [aux_sym_unquoted_token1] = ACTIONS(1113), + [2185] = { + [sym_comment] = STATE(2185), + [ts_builtin_sym_end] = ACTIONS(1231), + [anon_sym_export] = ACTIONS(1229), + [anon_sym_alias] = ACTIONS(1229), + [anon_sym_let] = ACTIONS(1229), + [anon_sym_let_DASHenv] = ACTIONS(1229), + [anon_sym_mut] = ACTIONS(1229), + [anon_sym_const] = ACTIONS(1229), + [anon_sym_SEMI] = ACTIONS(1229), + [sym_cmd_identifier] = ACTIONS(1229), + [anon_sym_LF] = ACTIONS(1231), + [anon_sym_def] = ACTIONS(1229), + [anon_sym_export_DASHenv] = ACTIONS(1229), + [anon_sym_extern] = ACTIONS(1229), + [anon_sym_module] = ACTIONS(1229), + [anon_sym_use] = ACTIONS(1229), + [anon_sym_LBRACK] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_DOLLAR] = ACTIONS(1229), + [anon_sym_error] = ACTIONS(1229), + [anon_sym_DASH_DASH] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_break] = ACTIONS(1229), + [anon_sym_continue] = ACTIONS(1229), + [anon_sym_for] = ACTIONS(1229), + [anon_sym_loop] = ACTIONS(1229), + [anon_sym_while] = ACTIONS(1229), + [anon_sym_do] = ACTIONS(1229), + [anon_sym_if] = ACTIONS(1229), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1229), + [anon_sym_DOT_DOT] = ACTIONS(1229), + [anon_sym_try] = ACTIONS(1229), + [anon_sym_return] = ACTIONS(1229), + [anon_sym_source] = ACTIONS(1229), + [anon_sym_source_DASHenv] = ACTIONS(1229), + [anon_sym_register] = ACTIONS(1229), + [anon_sym_hide] = ACTIONS(1229), + [anon_sym_hide_DASHenv] = ACTIONS(1229), + [anon_sym_overlay] = ACTIONS(1229), + [anon_sym_as] = ACTIONS(1229), + [anon_sym_where] = ACTIONS(1229), + [anon_sym_not] = ACTIONS(1229), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1229), + [anon_sym_DOT_DOT_LT] = ACTIONS(1229), + [anon_sym_null] = ACTIONS(1229), + [anon_sym_true] = ACTIONS(1229), + [anon_sym_false] = ACTIONS(1229), + [aux_sym__val_number_decimal_token1] = ACTIONS(1229), + [aux_sym__val_number_decimal_token2] = ACTIONS(1229), + [anon_sym_DOT2] = ACTIONS(1229), + [aux_sym__val_number_decimal_token3] = ACTIONS(1229), + [aux_sym__val_number_token1] = ACTIONS(1229), + [aux_sym__val_number_token2] = ACTIONS(1229), + [aux_sym__val_number_token3] = ACTIONS(1229), + [aux_sym__val_number_token4] = ACTIONS(1229), + [aux_sym__val_number_token5] = ACTIONS(1229), + [aux_sym__val_number_token6] = ACTIONS(1229), + [anon_sym_0b] = ACTIONS(1229), + [anon_sym_0o] = ACTIONS(1229), + [anon_sym_0x] = ACTIONS(1229), + [sym_val_date] = ACTIONS(1229), + [anon_sym_DQUOTE] = ACTIONS(1229), + [sym__str_single_quotes] = ACTIONS(1229), + [sym__str_back_ticks] = ACTIONS(1229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_POUND] = ACTIONS(113), + }, + [2186] = { + [sym_comment] = STATE(2186), + [anon_sym_LBRACK] = ACTIONS(1181), + [anon_sym_COMMA] = ACTIONS(1181), + [anon_sym_RBRACK] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_DOLLAR] = ACTIONS(1181), + [anon_sym_GT] = ACTIONS(5711), + [anon_sym_DASH_DASH] = ACTIONS(1181), + [anon_sym_DASH] = ACTIONS(5713), + [anon_sym_in] = ACTIONS(5715), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(5705), + [anon_sym_STAR_STAR] = ACTIONS(5707), + [anon_sym_PLUS_PLUS] = ACTIONS(5707), + [anon_sym_SLASH] = ACTIONS(5705), + [anon_sym_mod] = ACTIONS(5709), + [anon_sym_SLASH_SLASH] = ACTIONS(5709), + [anon_sym_PLUS] = ACTIONS(5713), + [anon_sym_bit_DASHshl] = ACTIONS(5717), + [anon_sym_bit_DASHshr] = ACTIONS(5717), + [anon_sym_EQ_EQ] = ACTIONS(5719), + [anon_sym_BANG_EQ] = ACTIONS(5719), + [anon_sym_LT2] = ACTIONS(5711), + [anon_sym_LT_EQ] = ACTIONS(5719), + [anon_sym_GT_EQ] = ACTIONS(5719), + [anon_sym_not_DASHin] = ACTIONS(5721), + [anon_sym_starts_DASHwith] = ACTIONS(5721), + [anon_sym_ends_DASHwith] = ACTIONS(5721), + [anon_sym_EQ_TILDE] = ACTIONS(1181), + [anon_sym_BANG_TILDE] = ACTIONS(1181), + [anon_sym_bit_DASHand] = ACTIONS(1181), + [anon_sym_bit_DASHxor] = ACTIONS(1181), + [anon_sym_bit_DASHor] = ACTIONS(1181), + [anon_sym_and] = ACTIONS(1181), + [anon_sym_xor] = ACTIONS(1181), + [anon_sym_or] = ACTIONS(1181), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1181), + [anon_sym_DOT_DOT_LT] = ACTIONS(1181), + [anon_sym_null] = ACTIONS(1181), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1181), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1181), + [aux_sym__val_number_token1] = ACTIONS(1181), + [aux_sym__val_number_token2] = ACTIONS(1181), + [aux_sym__val_number_token3] = ACTIONS(1181), + [aux_sym__val_number_token4] = ACTIONS(1181), + [aux_sym__val_number_token5] = ACTIONS(1181), + [aux_sym__val_number_token6] = ACTIONS(1181), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym__str_single_quotes] = ACTIONS(1181), + [sym__str_back_ticks] = ACTIONS(1181), + [anon_sym_err_GT] = ACTIONS(1181), + [anon_sym_out_GT] = ACTIONS(1181), + [anon_sym_e_GT] = ACTIONS(1181), + [anon_sym_o_GT] = ACTIONS(1181), + [anon_sym_err_PLUSout_GT] = ACTIONS(1181), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1181), + [anon_sym_o_PLUSe_GT] = ACTIONS(1181), + [anon_sym_e_PLUSo_GT] = ACTIONS(1181), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(3), }, - [1918] = { - [sym_comment] = STATE(1918), - [anon_sym_LBRACK] = ACTIONS(1119), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_LPAREN] = ACTIONS(1119), - [anon_sym_DOLLAR] = ACTIONS(1119), - [anon_sym_GT] = ACTIONS(1117), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1117), - [anon_sym_LBRACE] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1119), - [anon_sym__] = ACTIONS(1117), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_STAR] = ACTIONS(1117), - [anon_sym_STAR_STAR] = ACTIONS(1119), - [anon_sym_PLUS_PLUS] = ACTIONS(1119), - [anon_sym_SLASH] = ACTIONS(1117), - [anon_sym_mod] = ACTIONS(1119), - [anon_sym_SLASH_SLASH] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1117), - [anon_sym_bit_DASHshl] = ACTIONS(1119), - [anon_sym_bit_DASHshr] = ACTIONS(1119), - [anon_sym_EQ_EQ] = ACTIONS(1119), - [anon_sym_BANG_EQ] = ACTIONS(1119), - [anon_sym_LT2] = ACTIONS(1117), - [anon_sym_LT_EQ] = ACTIONS(1119), - [anon_sym_GT_EQ] = ACTIONS(1119), - [anon_sym_not_DASHin] = ACTIONS(1119), - [anon_sym_starts_DASHwith] = ACTIONS(1119), - [anon_sym_ends_DASHwith] = ACTIONS(1119), - [anon_sym_EQ_TILDE] = ACTIONS(1119), - [anon_sym_BANG_TILDE] = ACTIONS(1119), - [anon_sym_bit_DASHand] = ACTIONS(1119), - [anon_sym_bit_DASHxor] = ACTIONS(1119), - [anon_sym_bit_DASHor] = ACTIONS(1119), - [anon_sym_and] = ACTIONS(1119), - [anon_sym_xor] = ACTIONS(1119), - [anon_sym_or] = ACTIONS(1119), - [anon_sym_DOT] = ACTIONS(1117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1119), - [anon_sym_DOT_DOT_LT] = ACTIONS(1119), - [anon_sym_null] = ACTIONS(1119), - [anon_sym_true] = ACTIONS(1119), - [anon_sym_false] = ACTIONS(1119), - [aux_sym__val_number_decimal_token1] = ACTIONS(1117), - [aux_sym__val_number_decimal_token2] = ACTIONS(1119), - [anon_sym_DOT2] = ACTIONS(1117), - [aux_sym__val_number_decimal_token3] = ACTIONS(1119), - [aux_sym__val_number_token1] = ACTIONS(1119), - [aux_sym__val_number_token2] = ACTIONS(1119), - [aux_sym__val_number_token3] = ACTIONS(1119), - [aux_sym__val_number_token4] = ACTIONS(1119), - [aux_sym__val_number_token5] = ACTIONS(1119), - [aux_sym__val_number_token6] = ACTIONS(1119), - [anon_sym_0b] = ACTIONS(1117), - [anon_sym_0o] = ACTIONS(1117), - [anon_sym_0x] = ACTIONS(1117), - [sym_val_date] = ACTIONS(1119), - [anon_sym_DQUOTE] = ACTIONS(1119), - [sym__str_single_quotes] = ACTIONS(1119), - [sym__str_back_ticks] = ACTIONS(1119), - [anon_sym_err_GT] = ACTIONS(1119), - [anon_sym_out_GT] = ACTIONS(1119), - [anon_sym_e_GT] = ACTIONS(1119), - [anon_sym_o_GT] = ACTIONS(1119), - [anon_sym_err_PLUSout_GT] = ACTIONS(1119), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1119), - [anon_sym_o_PLUSe_GT] = ACTIONS(1119), - [anon_sym_e_PLUSo_GT] = ACTIONS(1119), - [aux_sym_unquoted_token1] = ACTIONS(1117), + [2187] = { + [sym_match_arm] = STATE(4342), + [sym_default_arm] = STATE(10578), + [sym_match_pattern] = STATE(10508), + [sym__match_pattern] = STATE(8876), + [sym__match_pattern_expression] = STATE(9859), + [sym__match_pattern_value] = STATE(9862), + [sym__match_pattern_list] = STATE(9863), + [sym__match_pattern_record] = STATE(9864), + [sym__expr_unary_minus] = STATE(9869), + [sym_expr_parenthesized] = STATE(8297), + [sym_val_range] = STATE(9862), + [sym__val_range] = STATE(10105), + [sym_val_nothing] = STATE(9875), + [sym_val_bool] = STATE(9626), + [sym_val_variable] = STATE(8298), + [sym__var] = STATE(3929), + [sym_val_number] = STATE(9875), + [sym__val_number_decimal] = STATE(7214), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(9875), + [sym_val_filesize] = STATE(9875), + [sym_val_binary] = STATE(9875), + [sym_val_string] = STATE(9875), + [sym__str_double_quotes] = STATE(5067), + [sym_val_table] = STATE(9875), + [sym_unquoted] = STATE(9878), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(2187), + [aux_sym_ctrl_match_repeat1] = STATE(2181), + [anon_sym_LBRACK] = ACTIONS(5733), + [anon_sym_LPAREN] = ACTIONS(3100), + [anon_sym_DOLLAR] = ACTIONS(5735), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_LBRACE] = ACTIONS(5737), + [anon_sym_RBRACE] = ACTIONS(5890), + [anon_sym__] = ACTIONS(5741), + [anon_sym_DOT_DOT] = ACTIONS(5743), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5745), + [anon_sym_DOT_DOT_LT] = ACTIONS(5745), + [anon_sym_null] = ACTIONS(5747), + [anon_sym_true] = ACTIONS(5749), + [anon_sym_false] = ACTIONS(5749), + [aux_sym__val_number_decimal_token1] = ACTIONS(5751), + [aux_sym__val_number_decimal_token2] = ACTIONS(5753), + [anon_sym_DOT2] = ACTIONS(5755), + [aux_sym__val_number_decimal_token3] = ACTIONS(5757), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(5759), + [aux_sym__val_number_token5] = ACTIONS(5759), + [aux_sym__val_number_token6] = ACTIONS(5759), + [anon_sym_0b] = ACTIONS(3128), + [anon_sym_0o] = ACTIONS(3130), + [anon_sym_0x] = ACTIONS(3130), + [sym_val_date] = ACTIONS(5761), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym__str_single_quotes] = ACTIONS(3180), + [sym__str_back_ticks] = ACTIONS(3180), + [anon_sym_err_GT] = ACTIONS(3685), + [anon_sym_out_GT] = ACTIONS(3685), + [anon_sym_e_GT] = ACTIONS(3685), + [anon_sym_o_GT] = ACTIONS(3685), + [anon_sym_err_PLUSout_GT] = ACTIONS(3685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3685), + [anon_sym_o_PLUSe_GT] = ACTIONS(3685), + [anon_sym_e_PLUSo_GT] = ACTIONS(3685), + [aux_sym_unquoted_token1] = ACTIONS(3140), [anon_sym_POUND] = ACTIONS(3), }, - [1919] = { - [sym__expression] = STATE(7453), - [sym_expr_unary] = STATE(5715), - [sym__expr_unary_minus] = STATE(5723), - [sym_expr_binary] = STATE(5715), - [sym__expr_binary_expression] = STATE(6788), - [sym_expr_parenthesized] = STATE(5176), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(5715), - [sym_val_nothing] = STATE(5705), - [sym_val_bool] = STATE(5705), - [sym_val_variable] = STATE(5170), - [sym__var] = STATE(4674), - [sym_val_number] = STATE(5705), - [sym__val_number_decimal] = STATE(4718), - [sym__val_number] = STATE(5875), - [sym_val_duration] = STATE(5705), - [sym_val_filesize] = STATE(5705), - [sym_val_binary] = STATE(5705), - [sym_val_string] = STATE(5705), - [sym__str_double_quotes] = STATE(5788), - [sym_val_interpolated] = STATE(5705), - [sym__inter_single_quotes] = STATE(5899), - [sym__inter_double_quotes] = STATE(5903), - [sym_val_list] = STATE(5705), - [sym_val_record] = STATE(5705), - [sym_val_table] = STATE(5705), - [sym_val_closure] = STATE(5705), - [sym__flag] = STATE(1932), - [sym_short_flag] = STATE(5044), - [sym_long_flag] = STATE(5044), - [sym_long_flag_equals_value] = STATE(5143), - [sym_comment] = STATE(1919), - [anon_sym_SEMI] = ACTIONS(5423), - [anon_sym_LF] = ACTIONS(5425), - [anon_sym_LBRACK] = ACTIONS(5371), - [anon_sym_LPAREN] = ACTIONS(5373), - [anon_sym_RPAREN] = ACTIONS(5423), - [anon_sym_PIPE] = ACTIONS(5423), - [anon_sym_DOLLAR] = ACTIONS(3317), - [anon_sym_DASH_DASH] = ACTIONS(5375), - [anon_sym_DASH] = ACTIONS(5377), - [anon_sym_LBRACE] = ACTIONS(5379), - [anon_sym_RBRACE] = ACTIONS(5423), - [anon_sym_DOT_DOT] = ACTIONS(5381), - [anon_sym_not] = ACTIONS(5383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5385), - [anon_sym_DOT_DOT_LT] = ACTIONS(5385), - [anon_sym_null] = ACTIONS(5387), - [anon_sym_true] = ACTIONS(5389), - [anon_sym_false] = ACTIONS(5389), - [aux_sym__val_number_decimal_token1] = ACTIONS(5391), - [aux_sym__val_number_decimal_token2] = ACTIONS(5391), - [anon_sym_DOT2] = ACTIONS(5393), - [aux_sym__val_number_decimal_token3] = ACTIONS(5395), - [aux_sym__val_number_token1] = ACTIONS(5397), - [aux_sym__val_number_token2] = ACTIONS(5397), - [aux_sym__val_number_token3] = ACTIONS(5397), - [aux_sym__val_number_token4] = ACTIONS(5397), - [aux_sym__val_number_token5] = ACTIONS(5397), - [aux_sym__val_number_token6] = ACTIONS(5397), - [anon_sym_0b] = ACTIONS(3345), - [anon_sym_0o] = ACTIONS(3347), - [anon_sym_0x] = ACTIONS(3347), - [sym_val_date] = ACTIONS(5399), - [anon_sym_DQUOTE] = ACTIONS(5401), - [sym__str_single_quotes] = ACTIONS(5403), - [sym__str_back_ticks] = ACTIONS(5403), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5405), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5407), + [2188] = { + [sym__expression] = STATE(7218), + [sym_expr_unary] = STATE(5677), + [sym__expr_unary_minus] = STATE(5679), + [sym_expr_binary] = STATE(5677), + [sym__expr_binary_expression] = STATE(6377), + [sym_expr_parenthesized] = STATE(4919), + [sym_val_range] = STATE(8295), + [sym__value] = STATE(5677), + [sym_val_nothing] = STATE(5612), + [sym_val_bool] = STATE(5612), + [sym_val_variable] = STATE(4867), + [sym__var] = STATE(4310), + [sym_val_number] = STATE(5612), + [sym__val_number_decimal] = STATE(4408), + [sym__val_number] = STATE(5661), + [sym_val_duration] = STATE(5612), + [sym_val_filesize] = STATE(5612), + [sym_val_binary] = STATE(5612), + [sym_val_string] = STATE(5612), + [sym__str_double_quotes] = STATE(5733), + [sym_val_interpolated] = STATE(5612), + [sym__inter_single_quotes] = STATE(5590), + [sym__inter_double_quotes] = STATE(5591), + [sym_val_list] = STATE(5612), + [sym_val_record] = STATE(5612), + [sym_val_table] = STATE(5612), + [sym_val_closure] = STATE(5612), + [sym__flag] = STATE(7349), + [sym_short_flag] = STATE(8315), + [sym_long_flag] = STATE(8315), + [sym_long_flag_equals_value] = STATE(8239), + [sym_comment] = STATE(2188), + [ts_builtin_sym_end] = ACTIONS(4831), + [anon_sym_SEMI] = ACTIONS(4829), + [anon_sym_LF] = ACTIONS(4831), + [anon_sym_LBRACK] = ACTIONS(5667), + [anon_sym_LPAREN] = ACTIONS(5669), + [anon_sym_PIPE] = ACTIONS(4829), + [anon_sym_DOLLAR] = ACTIONS(2667), + [anon_sym_DASH_DASH] = ACTIONS(5763), + [anon_sym_DASH] = ACTIONS(5765), + [anon_sym_LBRACE] = ACTIONS(5675), + [anon_sym_DOT_DOT] = ACTIONS(5677), + [anon_sym_not] = ACTIONS(5679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5681), + [anon_sym_DOT_DOT_LT] = ACTIONS(5681), + [anon_sym_null] = ACTIONS(5683), + [anon_sym_true] = ACTIONS(5685), + [anon_sym_false] = ACTIONS(5685), + [aux_sym__val_number_decimal_token1] = ACTIONS(5687), + [aux_sym__val_number_decimal_token2] = ACTIONS(5687), + [anon_sym_DOT2] = ACTIONS(5689), + [aux_sym__val_number_decimal_token3] = ACTIONS(5691), + [aux_sym__val_number_token1] = ACTIONS(5693), + [aux_sym__val_number_token2] = ACTIONS(5693), + [aux_sym__val_number_token3] = ACTIONS(5693), + [aux_sym__val_number_token4] = ACTIONS(5693), + [aux_sym__val_number_token5] = ACTIONS(5693), + [aux_sym__val_number_token6] = ACTIONS(5693), + [anon_sym_0b] = ACTIONS(2695), + [anon_sym_0o] = ACTIONS(2697), + [anon_sym_0x] = ACTIONS(2697), + [sym_val_date] = ACTIONS(5695), + [anon_sym_DQUOTE] = ACTIONS(5697), + [sym__str_single_quotes] = ACTIONS(5699), + [sym__str_back_ticks] = ACTIONS(5699), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5703), [anon_sym_POUND] = ACTIONS(113), }, - [1920] = { - [sym__expression] = STATE(7453), - [sym_expr_unary] = STATE(5715), - [sym__expr_unary_minus] = STATE(5723), - [sym_expr_binary] = STATE(5715), - [sym__expr_binary_expression] = STATE(6788), - [sym_expr_parenthesized] = STATE(5176), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(5715), - [sym_val_nothing] = STATE(5705), - [sym_val_bool] = STATE(5705), - [sym_val_variable] = STATE(5170), - [sym__var] = STATE(4674), - [sym_val_number] = STATE(5705), - [sym__val_number_decimal] = STATE(4718), - [sym__val_number] = STATE(5875), - [sym_val_duration] = STATE(5705), - [sym_val_filesize] = STATE(5705), - [sym_val_binary] = STATE(5705), - [sym_val_string] = STATE(5705), - [sym__str_double_quotes] = STATE(5788), - [sym_val_interpolated] = STATE(5705), - [sym__inter_single_quotes] = STATE(5899), - [sym__inter_double_quotes] = STATE(5903), - [sym_val_list] = STATE(5705), - [sym_val_record] = STATE(5705), - [sym_val_table] = STATE(5705), - [sym_val_closure] = STATE(5705), - [sym__flag] = STATE(1933), - [sym_short_flag] = STATE(5044), - [sym_long_flag] = STATE(5044), - [sym_long_flag_equals_value] = STATE(5143), - [sym_comment] = STATE(1920), - [anon_sym_SEMI] = ACTIONS(5423), - [anon_sym_LF] = ACTIONS(5425), - [anon_sym_LBRACK] = ACTIONS(5371), - [anon_sym_LPAREN] = ACTIONS(5373), - [anon_sym_RPAREN] = ACTIONS(5423), - [anon_sym_PIPE] = ACTIONS(5423), - [anon_sym_DOLLAR] = ACTIONS(3317), - [anon_sym_DASH_DASH] = ACTIONS(5375), - [anon_sym_DASH] = ACTIONS(5377), - [anon_sym_LBRACE] = ACTIONS(5379), - [anon_sym_RBRACE] = ACTIONS(5423), - [anon_sym_DOT_DOT] = ACTIONS(5381), - [anon_sym_not] = ACTIONS(5383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5385), - [anon_sym_DOT_DOT_LT] = ACTIONS(5385), - [anon_sym_null] = ACTIONS(5387), - [anon_sym_true] = ACTIONS(5389), - [anon_sym_false] = ACTIONS(5389), - [aux_sym__val_number_decimal_token1] = ACTIONS(5391), - [aux_sym__val_number_decimal_token2] = ACTIONS(5391), - [anon_sym_DOT2] = ACTIONS(5393), - [aux_sym__val_number_decimal_token3] = ACTIONS(5395), - [aux_sym__val_number_token1] = ACTIONS(5397), - [aux_sym__val_number_token2] = ACTIONS(5397), - [aux_sym__val_number_token3] = ACTIONS(5397), - [aux_sym__val_number_token4] = ACTIONS(5397), - [aux_sym__val_number_token5] = ACTIONS(5397), - [aux_sym__val_number_token6] = ACTIONS(5397), - [anon_sym_0b] = ACTIONS(3345), - [anon_sym_0o] = ACTIONS(3347), - [anon_sym_0x] = ACTIONS(3347), - [sym_val_date] = ACTIONS(5399), - [anon_sym_DQUOTE] = ACTIONS(5401), - [sym__str_single_quotes] = ACTIONS(5403), - [sym__str_back_ticks] = ACTIONS(5403), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5405), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5407), - [anon_sym_POUND] = ACTIONS(113), + [2189] = { + [sym_comment] = STATE(2189), + [anon_sym_LBRACK] = ACTIONS(1267), + [anon_sym_COMMA] = ACTIONS(1267), + [anon_sym_RBRACK] = ACTIONS(1267), + [anon_sym_LPAREN] = ACTIONS(1267), + [anon_sym_DOLLAR] = ACTIONS(1267), + [anon_sym_GT] = ACTIONS(1265), + [anon_sym_DASH_DASH] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1265), + [anon_sym_in] = ACTIONS(1265), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_DOT_DOT] = ACTIONS(1265), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_STAR_STAR] = ACTIONS(1267), + [anon_sym_PLUS_PLUS] = ACTIONS(1267), + [anon_sym_SLASH] = ACTIONS(1265), + [anon_sym_mod] = ACTIONS(1267), + [anon_sym_SLASH_SLASH] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1265), + [anon_sym_bit_DASHshl] = ACTIONS(1267), + [anon_sym_bit_DASHshr] = ACTIONS(1267), + [anon_sym_EQ_EQ] = ACTIONS(1267), + [anon_sym_BANG_EQ] = ACTIONS(1267), + [anon_sym_LT2] = ACTIONS(1265), + [anon_sym_LT_EQ] = ACTIONS(1267), + [anon_sym_GT_EQ] = ACTIONS(1267), + [anon_sym_not_DASHin] = ACTIONS(1267), + [anon_sym_starts_DASHwith] = ACTIONS(1267), + [anon_sym_ends_DASHwith] = ACTIONS(1267), + [anon_sym_EQ_TILDE] = ACTIONS(1267), + [anon_sym_BANG_TILDE] = ACTIONS(1267), + [anon_sym_bit_DASHand] = ACTIONS(1267), + [anon_sym_bit_DASHxor] = ACTIONS(1267), + [anon_sym_bit_DASHor] = ACTIONS(1267), + [anon_sym_and] = ACTIONS(1267), + [anon_sym_xor] = ACTIONS(1267), + [anon_sym_or] = ACTIONS(1267), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1267), + [anon_sym_DOT_DOT_LT] = ACTIONS(1267), + [anon_sym_null] = ACTIONS(1267), + [anon_sym_true] = ACTIONS(1267), + [anon_sym_false] = ACTIONS(1267), + [aux_sym__val_number_decimal_token1] = ACTIONS(1265), + [aux_sym__val_number_decimal_token2] = ACTIONS(1267), + [anon_sym_DOT2] = ACTIONS(1265), + [aux_sym__val_number_decimal_token3] = ACTIONS(1267), + [aux_sym__val_number_token1] = ACTIONS(1267), + [aux_sym__val_number_token2] = ACTIONS(1267), + [aux_sym__val_number_token3] = ACTIONS(1267), + [aux_sym__val_number_token4] = ACTIONS(1267), + [aux_sym__val_number_token5] = ACTIONS(1267), + [aux_sym__val_number_token6] = ACTIONS(1267), + [anon_sym_0b] = ACTIONS(1265), + [anon_sym_0o] = ACTIONS(1265), + [anon_sym_0x] = ACTIONS(1265), + [sym_val_date] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1267), + [sym__str_single_quotes] = ACTIONS(1267), + [sym__str_back_ticks] = ACTIONS(1267), + [anon_sym_err_GT] = ACTIONS(1267), + [anon_sym_out_GT] = ACTIONS(1267), + [anon_sym_e_GT] = ACTIONS(1267), + [anon_sym_o_GT] = ACTIONS(1267), + [anon_sym_err_PLUSout_GT] = ACTIONS(1267), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1267), + [anon_sym_o_PLUSe_GT] = ACTIONS(1267), + [anon_sym_e_PLUSo_GT] = ACTIONS(1267), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1265), + [anon_sym_POUND] = ACTIONS(3), }, - [1921] = { - [sym_comment] = STATE(1921), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_COMMA] = ACTIONS(1111), - [anon_sym_LPAREN] = ACTIONS(1111), - [anon_sym_DOLLAR] = ACTIONS(1111), - [anon_sym_GT] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_in] = ACTIONS(1109), - [anon_sym_LBRACE] = ACTIONS(1111), - [anon_sym_RBRACE] = ACTIONS(1111), - [anon_sym__] = ACTIONS(1109), - [anon_sym_DOT_DOT] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_STAR_STAR] = ACTIONS(1111), - [anon_sym_PLUS_PLUS] = ACTIONS(1111), - [anon_sym_SLASH] = ACTIONS(1109), - [anon_sym_mod] = ACTIONS(1111), - [anon_sym_SLASH_SLASH] = ACTIONS(1111), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_bit_DASHshl] = ACTIONS(1111), - [anon_sym_bit_DASHshr] = ACTIONS(1111), - [anon_sym_EQ_EQ] = ACTIONS(1111), - [anon_sym_BANG_EQ] = ACTIONS(1111), - [anon_sym_LT2] = ACTIONS(1109), - [anon_sym_LT_EQ] = ACTIONS(1111), - [anon_sym_GT_EQ] = ACTIONS(1111), - [anon_sym_not_DASHin] = ACTIONS(1111), - [anon_sym_starts_DASHwith] = ACTIONS(1111), - [anon_sym_ends_DASHwith] = ACTIONS(1111), - [anon_sym_EQ_TILDE] = ACTIONS(1111), - [anon_sym_BANG_TILDE] = ACTIONS(1111), - [anon_sym_bit_DASHand] = ACTIONS(1111), - [anon_sym_bit_DASHxor] = ACTIONS(1111), - [anon_sym_bit_DASHor] = ACTIONS(1111), - [anon_sym_and] = ACTIONS(1111), - [anon_sym_xor] = ACTIONS(1111), - [anon_sym_or] = ACTIONS(1111), - [anon_sym_DOT] = ACTIONS(1109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1111), - [anon_sym_DOT_DOT_LT] = ACTIONS(1111), - [anon_sym_null] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1111), - [anon_sym_false] = ACTIONS(1111), - [aux_sym__val_number_decimal_token1] = ACTIONS(1109), - [aux_sym__val_number_decimal_token2] = ACTIONS(1111), - [anon_sym_DOT2] = ACTIONS(1109), - [aux_sym__val_number_decimal_token3] = ACTIONS(1111), - [aux_sym__val_number_token1] = ACTIONS(1111), - [aux_sym__val_number_token2] = ACTIONS(1111), - [aux_sym__val_number_token3] = ACTIONS(1111), - [aux_sym__val_number_token4] = ACTIONS(1111), - [aux_sym__val_number_token5] = ACTIONS(1111), - [aux_sym__val_number_token6] = ACTIONS(1111), - [anon_sym_0b] = ACTIONS(1109), - [anon_sym_0o] = ACTIONS(1109), - [anon_sym_0x] = ACTIONS(1109), - [sym_val_date] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(1111), - [sym__str_single_quotes] = ACTIONS(1111), - [sym__str_back_ticks] = ACTIONS(1111), - [anon_sym_err_GT] = ACTIONS(1111), - [anon_sym_out_GT] = ACTIONS(1111), - [anon_sym_e_GT] = ACTIONS(1111), - [anon_sym_o_GT] = ACTIONS(1111), - [anon_sym_err_PLUSout_GT] = ACTIONS(1111), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1111), - [anon_sym_o_PLUSe_GT] = ACTIONS(1111), - [anon_sym_e_PLUSo_GT] = ACTIONS(1111), - [aux_sym_unquoted_token1] = ACTIONS(1109), + [2190] = { + [sym_comment] = STATE(2190), + [anon_sym_LBRACK] = ACTIONS(1267), + [anon_sym_COMMA] = ACTIONS(1267), + [anon_sym_RBRACK] = ACTIONS(1267), + [anon_sym_LPAREN] = ACTIONS(1267), + [anon_sym_DOLLAR] = ACTIONS(1267), + [anon_sym_GT] = ACTIONS(1265), + [anon_sym_DASH_DASH] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1265), + [anon_sym_in] = ACTIONS(1265), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_DOT_DOT] = ACTIONS(1265), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_STAR_STAR] = ACTIONS(1267), + [anon_sym_PLUS_PLUS] = ACTIONS(1267), + [anon_sym_SLASH] = ACTIONS(1265), + [anon_sym_mod] = ACTIONS(1267), + [anon_sym_SLASH_SLASH] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1265), + [anon_sym_bit_DASHshl] = ACTIONS(1267), + [anon_sym_bit_DASHshr] = ACTIONS(1267), + [anon_sym_EQ_EQ] = ACTIONS(1267), + [anon_sym_BANG_EQ] = ACTIONS(1267), + [anon_sym_LT2] = ACTIONS(1265), + [anon_sym_LT_EQ] = ACTIONS(1267), + [anon_sym_GT_EQ] = ACTIONS(1267), + [anon_sym_not_DASHin] = ACTIONS(1267), + [anon_sym_starts_DASHwith] = ACTIONS(1267), + [anon_sym_ends_DASHwith] = ACTIONS(1267), + [anon_sym_EQ_TILDE] = ACTIONS(1267), + [anon_sym_BANG_TILDE] = ACTIONS(1267), + [anon_sym_bit_DASHand] = ACTIONS(1267), + [anon_sym_bit_DASHxor] = ACTIONS(1267), + [anon_sym_bit_DASHor] = ACTIONS(1267), + [anon_sym_and] = ACTIONS(1267), + [anon_sym_xor] = ACTIONS(1267), + [anon_sym_or] = ACTIONS(1267), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1267), + [anon_sym_DOT_DOT_LT] = ACTIONS(1267), + [anon_sym_null] = ACTIONS(1267), + [anon_sym_true] = ACTIONS(1267), + [anon_sym_false] = ACTIONS(1267), + [aux_sym__val_number_decimal_token1] = ACTIONS(1265), + [aux_sym__val_number_decimal_token2] = ACTIONS(1267), + [anon_sym_DOT2] = ACTIONS(1265), + [aux_sym__val_number_decimal_token3] = ACTIONS(1267), + [aux_sym__val_number_token1] = ACTIONS(1267), + [aux_sym__val_number_token2] = ACTIONS(1267), + [aux_sym__val_number_token3] = ACTIONS(1267), + [aux_sym__val_number_token4] = ACTIONS(1267), + [aux_sym__val_number_token5] = ACTIONS(1267), + [aux_sym__val_number_token6] = ACTIONS(1267), + [anon_sym_0b] = ACTIONS(1265), + [anon_sym_0o] = ACTIONS(1265), + [anon_sym_0x] = ACTIONS(1265), + [sym_val_date] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1267), + [sym__str_single_quotes] = ACTIONS(1267), + [sym__str_back_ticks] = ACTIONS(1267), + [anon_sym_err_GT] = ACTIONS(1267), + [anon_sym_out_GT] = ACTIONS(1267), + [anon_sym_e_GT] = ACTIONS(1267), + [anon_sym_o_GT] = ACTIONS(1267), + [anon_sym_err_PLUSout_GT] = ACTIONS(1267), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1267), + [anon_sym_o_PLUSe_GT] = ACTIONS(1267), + [anon_sym_e_PLUSo_GT] = ACTIONS(1267), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1265), [anon_sym_POUND] = ACTIONS(3), }, - [1922] = { - [sym_comment] = STATE(1922), - [anon_sym_LBRACK] = ACTIONS(961), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_RBRACK] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(961), - [anon_sym_DOLLAR] = ACTIONS(961), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH_DASH] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(961), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(961), - [anon_sym_SLASH_SLASH] = ACTIONS(961), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(961), - [anon_sym_bit_DASHshr] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(961), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_not_DASHin] = ACTIONS(961), - [anon_sym_starts_DASHwith] = ACTIONS(961), - [anon_sym_ends_DASHwith] = ACTIONS(961), - [anon_sym_EQ_TILDE] = ACTIONS(961), - [anon_sym_BANG_TILDE] = ACTIONS(961), - [anon_sym_bit_DASHand] = ACTIONS(961), - [anon_sym_bit_DASHxor] = ACTIONS(961), - [anon_sym_bit_DASHor] = ACTIONS(961), - [anon_sym_and] = ACTIONS(961), - [anon_sym_xor] = ACTIONS(961), - [anon_sym_or] = ACTIONS(961), - [anon_sym_DOT_DOT_EQ] = ACTIONS(961), - [anon_sym_DOT_DOT_LT] = ACTIONS(961), - [anon_sym_null] = ACTIONS(961), - [anon_sym_true] = ACTIONS(961), - [anon_sym_false] = ACTIONS(961), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(961), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(961), - [aux_sym__val_number_token1] = ACTIONS(961), - [aux_sym__val_number_token2] = ACTIONS(961), - [aux_sym__val_number_token3] = ACTIONS(961), - [aux_sym__val_number_token4] = ACTIONS(961), - [aux_sym__val_number_token5] = ACTIONS(961), - [aux_sym__val_number_token6] = ACTIONS(961), - [anon_sym_0b] = ACTIONS(959), - [anon_sym_0o] = ACTIONS(959), - [anon_sym_0x] = ACTIONS(959), - [sym_val_date] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(961), - [sym__str_single_quotes] = ACTIONS(961), - [sym__str_back_ticks] = ACTIONS(961), - [anon_sym_err_GT] = ACTIONS(961), - [anon_sym_out_GT] = ACTIONS(961), - [anon_sym_e_GT] = ACTIONS(961), - [anon_sym_o_GT] = ACTIONS(961), - [anon_sym_err_PLUSout_GT] = ACTIONS(961), - [anon_sym_out_PLUSerr_GT] = ACTIONS(961), - [anon_sym_o_PLUSe_GT] = ACTIONS(961), - [anon_sym_e_PLUSo_GT] = ACTIONS(961), - [aux_sym_unquoted_token5] = ACTIONS(2919), - [aux_sym__unquoted_in_list_token1] = ACTIONS(959), + [2191] = { + [sym_comment] = STATE(2191), + [ts_builtin_sym_end] = ACTIONS(1227), + [anon_sym_export] = ACTIONS(1225), + [anon_sym_alias] = ACTIONS(1225), + [anon_sym_let] = ACTIONS(1225), + [anon_sym_let_DASHenv] = ACTIONS(1225), + [anon_sym_mut] = ACTIONS(1225), + [anon_sym_const] = ACTIONS(1225), + [anon_sym_SEMI] = ACTIONS(1225), + [sym_cmd_identifier] = ACTIONS(1225), + [anon_sym_LF] = ACTIONS(1227), + [anon_sym_def] = ACTIONS(1225), + [anon_sym_export_DASHenv] = ACTIONS(1225), + [anon_sym_extern] = ACTIONS(1225), + [anon_sym_module] = ACTIONS(1225), + [anon_sym_use] = ACTIONS(1225), + [anon_sym_LBRACK] = ACTIONS(1225), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_DOLLAR] = ACTIONS(1225), + [anon_sym_error] = ACTIONS(1225), + [anon_sym_DASH_DASH] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_break] = ACTIONS(1225), + [anon_sym_continue] = ACTIONS(1225), + [anon_sym_for] = ACTIONS(1225), + [anon_sym_loop] = ACTIONS(1225), + [anon_sym_while] = ACTIONS(1225), + [anon_sym_do] = ACTIONS(1225), + [anon_sym_if] = ACTIONS(1225), + [anon_sym_match] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_DOT_DOT] = ACTIONS(1225), + [anon_sym_try] = ACTIONS(1225), + [anon_sym_return] = ACTIONS(1225), + [anon_sym_source] = ACTIONS(1225), + [anon_sym_source_DASHenv] = ACTIONS(1225), + [anon_sym_register] = ACTIONS(1225), + [anon_sym_hide] = ACTIONS(1225), + [anon_sym_hide_DASHenv] = ACTIONS(1225), + [anon_sym_overlay] = ACTIONS(1225), + [anon_sym_as] = ACTIONS(1225), + [anon_sym_where] = ACTIONS(1225), + [anon_sym_not] = ACTIONS(1225), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1225), + [anon_sym_DOT_DOT_LT] = ACTIONS(1225), + [anon_sym_null] = ACTIONS(1225), + [anon_sym_true] = ACTIONS(1225), + [anon_sym_false] = ACTIONS(1225), + [aux_sym__val_number_decimal_token1] = ACTIONS(1225), + [aux_sym__val_number_decimal_token2] = ACTIONS(1225), + [anon_sym_DOT2] = ACTIONS(1225), + [aux_sym__val_number_decimal_token3] = ACTIONS(1225), + [aux_sym__val_number_token1] = ACTIONS(1225), + [aux_sym__val_number_token2] = ACTIONS(1225), + [aux_sym__val_number_token3] = ACTIONS(1225), + [aux_sym__val_number_token4] = ACTIONS(1225), + [aux_sym__val_number_token5] = ACTIONS(1225), + [aux_sym__val_number_token6] = ACTIONS(1225), + [anon_sym_0b] = ACTIONS(1225), + [anon_sym_0o] = ACTIONS(1225), + [anon_sym_0x] = ACTIONS(1225), + [sym_val_date] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1225), + [sym__str_single_quotes] = ACTIONS(1225), + [sym__str_back_ticks] = ACTIONS(1225), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1225), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1225), + [anon_sym_CARET] = ACTIONS(1225), + [anon_sym_POUND] = ACTIONS(113), + }, + [2192] = { + [sym_comment] = STATE(2192), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_COMMA] = ACTIONS(1035), + [anon_sym_RBRACK] = ACTIONS(1035), + [anon_sym_LPAREN] = ACTIONS(1035), + [anon_sym_DOLLAR] = ACTIONS(1035), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1033), + [anon_sym_in] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(1035), + [anon_sym_DOT_DOT] = ACTIONS(1033), + [anon_sym_STAR] = ACTIONS(1033), + [anon_sym_STAR_STAR] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1035), + [anon_sym_SLASH] = ACTIONS(1033), + [anon_sym_mod] = ACTIONS(1035), + [anon_sym_SLASH_SLASH] = ACTIONS(1035), + [anon_sym_PLUS] = ACTIONS(1033), + [anon_sym_bit_DASHshl] = ACTIONS(1035), + [anon_sym_bit_DASHshr] = ACTIONS(1035), + [anon_sym_EQ_EQ] = ACTIONS(1035), + [anon_sym_BANG_EQ] = ACTIONS(1035), + [anon_sym_LT2] = ACTIONS(1033), + [anon_sym_LT_EQ] = ACTIONS(1035), + [anon_sym_GT_EQ] = ACTIONS(1035), + [anon_sym_not_DASHin] = ACTIONS(1035), + [anon_sym_starts_DASHwith] = ACTIONS(1035), + [anon_sym_ends_DASHwith] = ACTIONS(1035), + [anon_sym_EQ_TILDE] = ACTIONS(1035), + [anon_sym_BANG_TILDE] = ACTIONS(1035), + [anon_sym_bit_DASHand] = ACTIONS(1035), + [anon_sym_bit_DASHxor] = ACTIONS(1035), + [anon_sym_bit_DASHor] = ACTIONS(1035), + [anon_sym_and] = ACTIONS(1035), + [anon_sym_xor] = ACTIONS(1035), + [anon_sym_or] = ACTIONS(1035), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1035), + [anon_sym_DOT_DOT_LT] = ACTIONS(1035), + [anon_sym_null] = ACTIONS(1035), + [anon_sym_true] = ACTIONS(1035), + [anon_sym_false] = ACTIONS(1035), + [aux_sym__val_number_decimal_token1] = ACTIONS(1033), + [aux_sym__val_number_decimal_token2] = ACTIONS(1035), + [anon_sym_DOT2] = ACTIONS(1033), + [aux_sym__val_number_decimal_token3] = ACTIONS(1035), + [aux_sym__val_number_token1] = ACTIONS(1035), + [aux_sym__val_number_token2] = ACTIONS(1035), + [aux_sym__val_number_token3] = ACTIONS(1035), + [aux_sym__val_number_token4] = ACTIONS(1035), + [aux_sym__val_number_token5] = ACTIONS(1035), + [aux_sym__val_number_token6] = ACTIONS(1035), + [anon_sym_0b] = ACTIONS(1033), + [anon_sym_0o] = ACTIONS(1033), + [anon_sym_0x] = ACTIONS(1033), + [sym_val_date] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(1035), + [sym__str_single_quotes] = ACTIONS(1035), + [sym__str_back_ticks] = ACTIONS(1035), + [anon_sym_err_GT] = ACTIONS(1035), + [anon_sym_out_GT] = ACTIONS(1035), + [anon_sym_e_GT] = ACTIONS(1035), + [anon_sym_o_GT] = ACTIONS(1035), + [anon_sym_err_PLUSout_GT] = ACTIONS(1035), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1035), + [anon_sym_o_PLUSe_GT] = ACTIONS(1035), + [anon_sym_e_PLUSo_GT] = ACTIONS(1035), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1033), [anon_sym_POUND] = ACTIONS(3), }, - [1923] = { - [sym_comment] = STATE(1923), - [anon_sym_LBRACK] = ACTIONS(1249), - [anon_sym_COMMA] = ACTIONS(1247), - [anon_sym_RBRACK] = ACTIONS(1249), - [anon_sym_LPAREN] = ACTIONS(1249), - [anon_sym_DOLLAR] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1247), - [anon_sym_in] = ACTIONS(1247), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_DOT_DOT] = ACTIONS(1247), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_STAR_STAR] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_mod] = ACTIONS(1247), - [anon_sym_SLASH_SLASH] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1247), - [anon_sym_bit_DASHshl] = ACTIONS(1247), - [anon_sym_bit_DASHshr] = ACTIONS(1247), - [anon_sym_EQ_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1247), - [anon_sym_LT2] = ACTIONS(1247), - [anon_sym_LT_EQ] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1247), - [anon_sym_not_DASHin] = ACTIONS(1247), - [anon_sym_starts_DASHwith] = ACTIONS(1247), - [anon_sym_ends_DASHwith] = ACTIONS(1247), - [anon_sym_EQ_TILDE] = ACTIONS(1247), - [anon_sym_BANG_TILDE] = ACTIONS(1247), - [anon_sym_bit_DASHand] = ACTIONS(1247), - [anon_sym_bit_DASHxor] = ACTIONS(1247), - [anon_sym_bit_DASHor] = ACTIONS(1247), - [anon_sym_and] = ACTIONS(1247), - [anon_sym_xor] = ACTIONS(1247), - [anon_sym_or] = ACTIONS(1247), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1247), - [anon_sym_DOT_DOT_LT] = ACTIONS(1247), - [anon_sym_null] = ACTIONS(1247), - [anon_sym_true] = ACTIONS(1247), - [anon_sym_false] = ACTIONS(1247), - [aux_sym__val_number_decimal_token1] = ACTIONS(1247), - [aux_sym__val_number_decimal_token2] = ACTIONS(1247), - [anon_sym_DOT2] = ACTIONS(1247), - [aux_sym__val_number_decimal_token3] = ACTIONS(1247), - [aux_sym__val_number_token1] = ACTIONS(1247), - [aux_sym__val_number_token2] = ACTIONS(1247), - [aux_sym__val_number_token3] = ACTIONS(1247), - [aux_sym__val_number_token4] = ACTIONS(1247), - [aux_sym__val_number_token5] = ACTIONS(1247), - [aux_sym__val_number_token6] = ACTIONS(1247), - [anon_sym_0b] = ACTIONS(1247), - [anon_sym_0o] = ACTIONS(1247), - [anon_sym_0x] = ACTIONS(1247), - [sym_val_date] = ACTIONS(1247), - [anon_sym_DQUOTE] = ACTIONS(1249), - [sym__str_single_quotes] = ACTIONS(1249), - [sym__str_back_ticks] = ACTIONS(1249), - [anon_sym_err_GT] = ACTIONS(1247), - [anon_sym_out_GT] = ACTIONS(1247), - [anon_sym_e_GT] = ACTIONS(1247), - [anon_sym_o_GT] = ACTIONS(1247), - [anon_sym_err_PLUSout_GT] = ACTIONS(1247), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1247), - [anon_sym_o_PLUSe_GT] = ACTIONS(1247), - [anon_sym_e_PLUSo_GT] = ACTIONS(1247), - [aux_sym_unquoted_token6] = ACTIONS(1251), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1247), + [2193] = { + [sym_block] = STATE(2302), + [sym_comment] = STATE(2193), + [anon_sym_export] = ACTIONS(5892), + [anon_sym_alias] = ACTIONS(5892), + [anon_sym_let] = ACTIONS(5892), + [anon_sym_let_DASHenv] = ACTIONS(5892), + [anon_sym_mut] = ACTIONS(5892), + [anon_sym_const] = ACTIONS(5892), + [anon_sym_SEMI] = ACTIONS(5892), + [sym_cmd_identifier] = ACTIONS(5892), + [anon_sym_LF] = ACTIONS(5894), + [anon_sym_def] = ACTIONS(5892), + [anon_sym_export_DASHenv] = ACTIONS(5892), + [anon_sym_extern] = ACTIONS(5892), + [anon_sym_module] = ACTIONS(5892), + [anon_sym_use] = ACTIONS(5892), + [anon_sym_LBRACK] = ACTIONS(5892), + [anon_sym_LPAREN] = ACTIONS(5892), + [anon_sym_RPAREN] = ACTIONS(5892), + [anon_sym_DOLLAR] = ACTIONS(5892), + [anon_sym_error] = ACTIONS(5892), + [anon_sym_DASH] = ACTIONS(5892), + [anon_sym_break] = ACTIONS(5892), + [anon_sym_continue] = ACTIONS(5892), + [anon_sym_for] = ACTIONS(5892), + [anon_sym_loop] = ACTIONS(5892), + [anon_sym_while] = ACTIONS(5892), + [anon_sym_do] = ACTIONS(5892), + [anon_sym_if] = ACTIONS(5892), + [anon_sym_match] = ACTIONS(5892), + [anon_sym_LBRACE] = ACTIONS(5896), + [anon_sym_RBRACE] = ACTIONS(5892), + [anon_sym_DOT_DOT] = ACTIONS(5892), + [anon_sym_try] = ACTIONS(5892), + [anon_sym_return] = ACTIONS(5892), + [anon_sym_source] = ACTIONS(5892), + [anon_sym_source_DASHenv] = ACTIONS(5892), + [anon_sym_register] = ACTIONS(5892), + [anon_sym_hide] = ACTIONS(5892), + [anon_sym_hide_DASHenv] = ACTIONS(5892), + [anon_sym_overlay] = ACTIONS(5892), + [anon_sym_where] = ACTIONS(5892), + [anon_sym_not] = ACTIONS(5892), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5892), + [anon_sym_DOT_DOT_LT] = ACTIONS(5892), + [anon_sym_null] = ACTIONS(5892), + [anon_sym_true] = ACTIONS(5892), + [anon_sym_false] = ACTIONS(5892), + [aux_sym__val_number_decimal_token1] = ACTIONS(5892), + [aux_sym__val_number_decimal_token2] = ACTIONS(5892), + [anon_sym_DOT2] = ACTIONS(5892), + [aux_sym__val_number_decimal_token3] = ACTIONS(5892), + [aux_sym__val_number_token1] = ACTIONS(5892), + [aux_sym__val_number_token2] = ACTIONS(5892), + [aux_sym__val_number_token3] = ACTIONS(5892), + [aux_sym__val_number_token4] = ACTIONS(5892), + [aux_sym__val_number_token5] = ACTIONS(5892), + [aux_sym__val_number_token6] = ACTIONS(5892), + [anon_sym_0b] = ACTIONS(5892), + [anon_sym_0o] = ACTIONS(5892), + [anon_sym_0x] = ACTIONS(5892), + [sym_val_date] = ACTIONS(5892), + [anon_sym_DQUOTE] = ACTIONS(5892), + [sym__str_single_quotes] = ACTIONS(5892), + [sym__str_back_ticks] = ACTIONS(5892), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5892), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5892), + [anon_sym_CARET] = ACTIONS(5892), [anon_sym_POUND] = ACTIONS(113), }, - [1924] = { - [sym_comment] = STATE(1924), - [ts_builtin_sym_end] = ACTIONS(1061), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_LF] = ACTIONS(1061), - [anon_sym_LBRACK] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_DASH_DASH] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_QMARK2] = ACTIONS(1059), - [anon_sym_STAR_STAR] = ACTIONS(1059), - [anon_sym_PLUS_PLUS] = ACTIONS(1059), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_mod] = ACTIONS(1059), - [anon_sym_SLASH_SLASH] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_bit_DASHshl] = ACTIONS(1059), - [anon_sym_bit_DASHshr] = ACTIONS(1059), - [anon_sym_EQ_EQ] = ACTIONS(1059), - [anon_sym_BANG_EQ] = ACTIONS(1059), - [anon_sym_LT2] = ACTIONS(1059), - [anon_sym_LT_EQ] = ACTIONS(1059), - [anon_sym_GT_EQ] = ACTIONS(1059), - [anon_sym_not_DASHin] = ACTIONS(1059), - [anon_sym_starts_DASHwith] = ACTIONS(1059), - [anon_sym_ends_DASHwith] = ACTIONS(1059), - [anon_sym_EQ_TILDE] = ACTIONS(1059), - [anon_sym_BANG_TILDE] = ACTIONS(1059), - [anon_sym_bit_DASHand] = ACTIONS(1059), - [anon_sym_bit_DASHxor] = ACTIONS(1059), - [anon_sym_bit_DASHor] = ACTIONS(1059), - [anon_sym_and] = ACTIONS(1059), - [anon_sym_xor] = ACTIONS(1059), - [anon_sym_or] = ACTIONS(1059), - [anon_sym_not] = ACTIONS(1059), - [anon_sym_DOT_DOT2] = ACTIONS(1059), - [anon_sym_DOT] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1059), - [anon_sym_DOT_DOT_LT] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1061), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1061), - [anon_sym_null] = ACTIONS(1059), - [anon_sym_true] = ACTIONS(1059), - [anon_sym_false] = ACTIONS(1059), - [aux_sym__val_number_decimal_token1] = ACTIONS(1059), - [aux_sym__val_number_decimal_token2] = ACTIONS(1059), - [anon_sym_DOT2] = ACTIONS(1059), - [aux_sym__val_number_decimal_token3] = ACTIONS(1059), - [aux_sym__val_number_token1] = ACTIONS(1059), - [aux_sym__val_number_token2] = ACTIONS(1059), - [aux_sym__val_number_token3] = ACTIONS(1059), - [aux_sym__val_number_token4] = ACTIONS(1059), - [aux_sym__val_number_token5] = ACTIONS(1059), - [aux_sym__val_number_token6] = ACTIONS(1059), - [anon_sym_0b] = ACTIONS(1059), - [anon_sym_0o] = ACTIONS(1059), - [anon_sym_0x] = ACTIONS(1059), - [sym_val_date] = ACTIONS(1059), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym__str_single_quotes] = ACTIONS(1059), - [sym__str_back_ticks] = ACTIONS(1059), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1059), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1059), + [2194] = { + [sym_comment] = STATE(2194), + [anon_sym_LBRACK] = ACTIONS(1173), + [anon_sym_COMMA] = ACTIONS(1173), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_DOLLAR] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_RBRACE] = ACTIONS(1173), + [anon_sym__] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1173), + [anon_sym_SLASH_SLASH] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1173), + [anon_sym_bit_DASHshr] = ACTIONS(1173), + [anon_sym_EQ_EQ] = ACTIONS(1173), + [anon_sym_BANG_EQ] = ACTIONS(1173), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1173), + [anon_sym_GT_EQ] = ACTIONS(1173), + [anon_sym_not_DASHin] = ACTIONS(1173), + [anon_sym_starts_DASHwith] = ACTIONS(1173), + [anon_sym_ends_DASHwith] = ACTIONS(1173), + [anon_sym_EQ_TILDE] = ACTIONS(1173), + [anon_sym_BANG_TILDE] = ACTIONS(1173), + [anon_sym_bit_DASHand] = ACTIONS(1173), + [anon_sym_bit_DASHxor] = ACTIONS(1173), + [anon_sym_bit_DASHor] = ACTIONS(1173), + [anon_sym_and] = ACTIONS(1173), + [anon_sym_xor] = ACTIONS(1173), + [anon_sym_or] = ACTIONS(1173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1173), + [anon_sym_DOT_DOT_LT] = ACTIONS(1173), + [anon_sym_null] = ACTIONS(1173), + [anon_sym_true] = ACTIONS(1173), + [anon_sym_false] = ACTIONS(1173), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1173), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1173), + [aux_sym__val_number_token1] = ACTIONS(1173), + [aux_sym__val_number_token2] = ACTIONS(1173), + [aux_sym__val_number_token3] = ACTIONS(1173), + [aux_sym__val_number_token4] = ACTIONS(1173), + [aux_sym__val_number_token5] = ACTIONS(1173), + [aux_sym__val_number_token6] = ACTIONS(1173), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym__str_single_quotes] = ACTIONS(1173), + [sym__str_back_ticks] = ACTIONS(1173), + [anon_sym_err_GT] = ACTIONS(1173), + [anon_sym_out_GT] = ACTIONS(1173), + [anon_sym_e_GT] = ACTIONS(1173), + [anon_sym_o_GT] = ACTIONS(1173), + [anon_sym_err_PLUSout_GT] = ACTIONS(1173), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1173), + [anon_sym_o_PLUSe_GT] = ACTIONS(1173), + [anon_sym_e_PLUSo_GT] = ACTIONS(1173), + [aux_sym_unquoted_token1] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(3), + }, + [2195] = { + [sym_comment] = STATE(2195), + [anon_sym_LBRACK] = ACTIONS(922), + [anon_sym_COMMA] = ACTIONS(922), + [anon_sym_LPAREN] = ACTIONS(922), + [anon_sym_DOLLAR] = ACTIONS(922), + [anon_sym_GT] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_in] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_RBRACE] = ACTIONS(922), + [anon_sym__] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_STAR_STAR] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_mod] = ACTIONS(922), + [anon_sym_SLASH_SLASH] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_bit_DASHshl] = ACTIONS(922), + [anon_sym_bit_DASHshr] = ACTIONS(922), + [anon_sym_EQ_EQ] = ACTIONS(922), + [anon_sym_BANG_EQ] = ACTIONS(922), + [anon_sym_LT2] = ACTIONS(920), + [anon_sym_LT_EQ] = ACTIONS(922), + [anon_sym_GT_EQ] = ACTIONS(922), + [anon_sym_not_DASHin] = ACTIONS(922), + [anon_sym_starts_DASHwith] = ACTIONS(922), + [anon_sym_ends_DASHwith] = ACTIONS(922), + [anon_sym_EQ_TILDE] = ACTIONS(922), + [anon_sym_BANG_TILDE] = ACTIONS(922), + [anon_sym_bit_DASHand] = ACTIONS(922), + [anon_sym_bit_DASHxor] = ACTIONS(922), + [anon_sym_bit_DASHor] = ACTIONS(922), + [anon_sym_and] = ACTIONS(922), + [anon_sym_xor] = ACTIONS(922), + [anon_sym_or] = ACTIONS(922), + [anon_sym_DOT_DOT_EQ] = ACTIONS(922), + [anon_sym_DOT_DOT_LT] = ACTIONS(922), + [anon_sym_null] = ACTIONS(922), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(922), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(922), + [aux_sym__val_number_token1] = ACTIONS(922), + [aux_sym__val_number_token2] = ACTIONS(922), + [aux_sym__val_number_token3] = ACTIONS(922), + [aux_sym__val_number_token4] = ACTIONS(922), + [aux_sym__val_number_token5] = ACTIONS(922), + [aux_sym__val_number_token6] = ACTIONS(922), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(922), + [anon_sym_DQUOTE] = ACTIONS(922), + [sym__str_single_quotes] = ACTIONS(922), + [sym__str_back_ticks] = ACTIONS(922), + [anon_sym_err_GT] = ACTIONS(922), + [anon_sym_out_GT] = ACTIONS(922), + [anon_sym_e_GT] = ACTIONS(922), + [anon_sym_o_GT] = ACTIONS(922), + [anon_sym_err_PLUSout_GT] = ACTIONS(922), + [anon_sym_out_PLUSerr_GT] = ACTIONS(922), + [anon_sym_o_PLUSe_GT] = ACTIONS(922), + [anon_sym_e_PLUSo_GT] = ACTIONS(922), + [aux_sym_unquoted_token1] = ACTIONS(920), + [anon_sym_POUND] = ACTIONS(3), + }, + [2196] = { + [sym_comment] = STATE(2196), + [anon_sym_export] = ACTIONS(1225), + [anon_sym_alias] = ACTIONS(1225), + [anon_sym_let] = ACTIONS(1225), + [anon_sym_let_DASHenv] = ACTIONS(1225), + [anon_sym_mut] = ACTIONS(1225), + [anon_sym_const] = ACTIONS(1225), + [anon_sym_SEMI] = ACTIONS(1225), + [sym_cmd_identifier] = ACTIONS(1225), + [anon_sym_LF] = ACTIONS(1227), + [anon_sym_def] = ACTIONS(1225), + [anon_sym_export_DASHenv] = ACTIONS(1225), + [anon_sym_extern] = ACTIONS(1225), + [anon_sym_module] = ACTIONS(1225), + [anon_sym_use] = ACTIONS(1225), + [anon_sym_LBRACK] = ACTIONS(1225), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_RPAREN] = ACTIONS(1225), + [anon_sym_DOLLAR] = ACTIONS(1225), + [anon_sym_error] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_break] = ACTIONS(1225), + [anon_sym_continue] = ACTIONS(1225), + [anon_sym_for] = ACTIONS(1225), + [anon_sym_loop] = ACTIONS(1225), + [anon_sym_while] = ACTIONS(1225), + [anon_sym_do] = ACTIONS(1225), + [anon_sym_if] = ACTIONS(1225), + [anon_sym_match] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_RBRACE] = ACTIONS(1225), + [anon_sym_DOT_DOT] = ACTIONS(1225), + [anon_sym_try] = ACTIONS(1225), + [anon_sym_return] = ACTIONS(1225), + [anon_sym_source] = ACTIONS(1225), + [anon_sym_source_DASHenv] = ACTIONS(1225), + [anon_sym_register] = ACTIONS(1225), + [anon_sym_hide] = ACTIONS(1225), + [anon_sym_hide_DASHenv] = ACTIONS(1225), + [anon_sym_overlay] = ACTIONS(1225), + [anon_sym_STAR] = ACTIONS(1225), + [anon_sym_where] = ACTIONS(1225), + [anon_sym_not] = ACTIONS(1225), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1225), + [anon_sym_DOT_DOT_LT] = ACTIONS(1225), + [anon_sym_null] = ACTIONS(1225), + [anon_sym_true] = ACTIONS(1225), + [anon_sym_false] = ACTIONS(1225), + [aux_sym__val_number_decimal_token1] = ACTIONS(1225), + [aux_sym__val_number_decimal_token2] = ACTIONS(1225), + [anon_sym_DOT2] = ACTIONS(1225), + [aux_sym__val_number_decimal_token3] = ACTIONS(1225), + [aux_sym__val_number_token1] = ACTIONS(1225), + [aux_sym__val_number_token2] = ACTIONS(1225), + [aux_sym__val_number_token3] = ACTIONS(1225), + [aux_sym__val_number_token4] = ACTIONS(1225), + [aux_sym__val_number_token5] = ACTIONS(1225), + [aux_sym__val_number_token6] = ACTIONS(1225), + [anon_sym_0b] = ACTIONS(1225), + [anon_sym_0o] = ACTIONS(1225), + [anon_sym_0x] = ACTIONS(1225), + [sym_val_date] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1225), + [sym__str_single_quotes] = ACTIONS(1225), + [sym__str_back_ticks] = ACTIONS(1225), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1225), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1225), + [anon_sym_CARET] = ACTIONS(1225), [anon_sym_POUND] = ACTIONS(113), }, - [1925] = { - [sym_comment] = STATE(1925), + [2197] = { + [sym_comment] = STATE(2197), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_COMMA] = ACTIONS(1251), + [anon_sym_LPAREN] = ACTIONS(1251), + [anon_sym_DOLLAR] = ACTIONS(1251), + [anon_sym_GT] = ACTIONS(1249), + [anon_sym_DASH] = ACTIONS(1249), + [anon_sym_in] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_RBRACE] = ACTIONS(1251), + [anon_sym__] = ACTIONS(1249), + [anon_sym_DOT_DOT] = ACTIONS(1249), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_STAR_STAR] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(1249), + [anon_sym_mod] = ACTIONS(1251), + [anon_sym_SLASH_SLASH] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1249), + [anon_sym_bit_DASHshl] = ACTIONS(1251), + [anon_sym_bit_DASHshr] = ACTIONS(1251), + [anon_sym_EQ_EQ] = ACTIONS(1251), + [anon_sym_BANG_EQ] = ACTIONS(1251), + [anon_sym_LT2] = ACTIONS(1249), + [anon_sym_LT_EQ] = ACTIONS(1251), + [anon_sym_GT_EQ] = ACTIONS(1251), + [anon_sym_not_DASHin] = ACTIONS(1251), + [anon_sym_starts_DASHwith] = ACTIONS(1251), + [anon_sym_ends_DASHwith] = ACTIONS(1251), + [anon_sym_EQ_TILDE] = ACTIONS(1251), + [anon_sym_BANG_TILDE] = ACTIONS(1251), + [anon_sym_bit_DASHand] = ACTIONS(1251), + [anon_sym_bit_DASHxor] = ACTIONS(1251), + [anon_sym_bit_DASHor] = ACTIONS(1251), + [anon_sym_and] = ACTIONS(1251), + [anon_sym_xor] = ACTIONS(1251), + [anon_sym_or] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1251), + [anon_sym_DOT_DOT_LT] = ACTIONS(1251), + [anon_sym_null] = ACTIONS(1251), + [anon_sym_true] = ACTIONS(1251), + [anon_sym_false] = ACTIONS(1251), + [aux_sym__val_number_decimal_token1] = ACTIONS(1249), + [aux_sym__val_number_decimal_token2] = ACTIONS(1251), + [anon_sym_DOT2] = ACTIONS(1249), + [aux_sym__val_number_decimal_token3] = ACTIONS(1251), + [aux_sym__val_number_token1] = ACTIONS(1251), + [aux_sym__val_number_token2] = ACTIONS(1251), + [aux_sym__val_number_token3] = ACTIONS(1251), + [aux_sym__val_number_token4] = ACTIONS(1251), + [aux_sym__val_number_token5] = ACTIONS(1251), + [aux_sym__val_number_token6] = ACTIONS(1251), + [anon_sym_0b] = ACTIONS(1249), + [anon_sym_0o] = ACTIONS(1249), + [anon_sym_0x] = ACTIONS(1249), + [sym_val_date] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(1251), + [sym__str_single_quotes] = ACTIONS(1251), + [sym__str_back_ticks] = ACTIONS(1251), + [anon_sym_err_GT] = ACTIONS(1251), + [anon_sym_out_GT] = ACTIONS(1251), + [anon_sym_e_GT] = ACTIONS(1251), + [anon_sym_o_GT] = ACTIONS(1251), + [anon_sym_err_PLUSout_GT] = ACTIONS(1251), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1251), + [anon_sym_o_PLUSe_GT] = ACTIONS(1251), + [anon_sym_e_PLUSo_GT] = ACTIONS(1251), + [aux_sym_unquoted_token1] = ACTIONS(1249), + [anon_sym_POUND] = ACTIONS(3), + }, + [2198] = { + [sym_comment] = STATE(2198), [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_COMMA] = ACTIONS(1253), - [anon_sym_RBRACK] = ACTIONS(1255), + [anon_sym_COMMA] = ACTIONS(1255), [anon_sym_LPAREN] = ACTIONS(1255), - [anon_sym_DOLLAR] = ACTIONS(1253), + [anon_sym_DOLLAR] = ACTIONS(1255), [anon_sym_GT] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1253), [anon_sym_DASH] = ACTIONS(1253), [anon_sym_in] = ACTIONS(1253), [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_RBRACE] = ACTIONS(1255), + [anon_sym__] = ACTIONS(1253), [anon_sym_DOT_DOT] = ACTIONS(1253), [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_STAR_STAR] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_STAR_STAR] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_mod] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(1253), + [anon_sym_mod] = ACTIONS(1255), + [anon_sym_SLASH_SLASH] = ACTIONS(1255), [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_bit_DASHshl] = ACTIONS(1253), - [anon_sym_bit_DASHshr] = ACTIONS(1253), - [anon_sym_EQ_EQ] = ACTIONS(1253), - [anon_sym_BANG_EQ] = ACTIONS(1253), + [anon_sym_bit_DASHshl] = ACTIONS(1255), + [anon_sym_bit_DASHshr] = ACTIONS(1255), + [anon_sym_EQ_EQ] = ACTIONS(1255), + [anon_sym_BANG_EQ] = ACTIONS(1255), [anon_sym_LT2] = ACTIONS(1253), - [anon_sym_LT_EQ] = ACTIONS(1253), - [anon_sym_GT_EQ] = ACTIONS(1253), - [anon_sym_not_DASHin] = ACTIONS(1253), - [anon_sym_starts_DASHwith] = ACTIONS(1253), - [anon_sym_ends_DASHwith] = ACTIONS(1253), - [anon_sym_EQ_TILDE] = ACTIONS(1253), - [anon_sym_BANG_TILDE] = ACTIONS(1253), - [anon_sym_bit_DASHand] = ACTIONS(1253), - [anon_sym_bit_DASHxor] = ACTIONS(1253), - [anon_sym_bit_DASHor] = ACTIONS(1253), - [anon_sym_and] = ACTIONS(1253), - [anon_sym_xor] = ACTIONS(1253), - [anon_sym_or] = ACTIONS(1253), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1253), - [anon_sym_DOT_DOT_LT] = ACTIONS(1253), - [anon_sym_null] = ACTIONS(1253), - [anon_sym_true] = ACTIONS(1253), - [anon_sym_false] = ACTIONS(1253), + [anon_sym_LT_EQ] = ACTIONS(1255), + [anon_sym_GT_EQ] = ACTIONS(1255), + [anon_sym_not_DASHin] = ACTIONS(1255), + [anon_sym_starts_DASHwith] = ACTIONS(1255), + [anon_sym_ends_DASHwith] = ACTIONS(1255), + [anon_sym_EQ_TILDE] = ACTIONS(1255), + [anon_sym_BANG_TILDE] = ACTIONS(1255), + [anon_sym_bit_DASHand] = ACTIONS(1255), + [anon_sym_bit_DASHxor] = ACTIONS(1255), + [anon_sym_bit_DASHor] = ACTIONS(1255), + [anon_sym_and] = ACTIONS(1255), + [anon_sym_xor] = ACTIONS(1255), + [anon_sym_or] = ACTIONS(1255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_DOT_DOT_LT] = ACTIONS(1255), + [anon_sym_null] = ACTIONS(1255), + [anon_sym_true] = ACTIONS(1255), + [anon_sym_false] = ACTIONS(1255), [aux_sym__val_number_decimal_token1] = ACTIONS(1253), - [aux_sym__val_number_decimal_token2] = ACTIONS(1253), + [aux_sym__val_number_decimal_token2] = ACTIONS(1255), [anon_sym_DOT2] = ACTIONS(1253), - [aux_sym__val_number_decimal_token3] = ACTIONS(1253), - [aux_sym__val_number_token1] = ACTIONS(1253), - [aux_sym__val_number_token2] = ACTIONS(1253), - [aux_sym__val_number_token3] = ACTIONS(1253), - [aux_sym__val_number_token4] = ACTIONS(1253), - [aux_sym__val_number_token5] = ACTIONS(1253), - [aux_sym__val_number_token6] = ACTIONS(1253), + [aux_sym__val_number_decimal_token3] = ACTIONS(1255), + [aux_sym__val_number_token1] = ACTIONS(1255), + [aux_sym__val_number_token2] = ACTIONS(1255), + [aux_sym__val_number_token3] = ACTIONS(1255), + [aux_sym__val_number_token4] = ACTIONS(1255), + [aux_sym__val_number_token5] = ACTIONS(1255), + [aux_sym__val_number_token6] = ACTIONS(1255), [anon_sym_0b] = ACTIONS(1253), [anon_sym_0o] = ACTIONS(1253), [anon_sym_0x] = ACTIONS(1253), - [sym_val_date] = ACTIONS(1253), + [sym_val_date] = ACTIONS(1255), [anon_sym_DQUOTE] = ACTIONS(1255), [sym__str_single_quotes] = ACTIONS(1255), [sym__str_back_ticks] = ACTIONS(1255), - [anon_sym_err_GT] = ACTIONS(1253), - [anon_sym_out_GT] = ACTIONS(1253), - [anon_sym_e_GT] = ACTIONS(1253), - [anon_sym_o_GT] = ACTIONS(1253), - [anon_sym_err_PLUSout_GT] = ACTIONS(1253), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1253), - [anon_sym_o_PLUSe_GT] = ACTIONS(1253), - [anon_sym_e_PLUSo_GT] = ACTIONS(1253), - [aux_sym_unquoted_token6] = ACTIONS(1257), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1253), - [anon_sym_POUND] = ACTIONS(113), + [anon_sym_err_GT] = ACTIONS(1255), + [anon_sym_out_GT] = ACTIONS(1255), + [anon_sym_e_GT] = ACTIONS(1255), + [anon_sym_o_GT] = ACTIONS(1255), + [anon_sym_err_PLUSout_GT] = ACTIONS(1255), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1255), + [anon_sym_o_PLUSe_GT] = ACTIONS(1255), + [anon_sym_e_PLUSo_GT] = ACTIONS(1255), + [aux_sym_unquoted_token1] = ACTIONS(1253), + [anon_sym_POUND] = ACTIONS(3), }, - [1926] = { - [sym_comment] = STATE(1926), - [anon_sym_LBRACK] = ACTIONS(1275), + [2199] = { + [sym_comment] = STATE(2199), + [anon_sym_LBRACK] = ACTIONS(1259), + [anon_sym_COMMA] = ACTIONS(1259), + [anon_sym_LPAREN] = ACTIONS(1259), + [anon_sym_DOLLAR] = ACTIONS(1259), + [anon_sym_GT] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_in] = ACTIONS(1257), + [anon_sym_LBRACE] = ACTIONS(1259), + [anon_sym_RBRACE] = ACTIONS(1259), + [anon_sym__] = ACTIONS(1257), + [anon_sym_DOT_DOT] = ACTIONS(1257), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_STAR_STAR] = ACTIONS(1259), + [anon_sym_PLUS_PLUS] = ACTIONS(1259), + [anon_sym_SLASH] = ACTIONS(1257), + [anon_sym_mod] = ACTIONS(1259), + [anon_sym_SLASH_SLASH] = ACTIONS(1259), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_bit_DASHshl] = ACTIONS(1259), + [anon_sym_bit_DASHshr] = ACTIONS(1259), + [anon_sym_EQ_EQ] = ACTIONS(1259), + [anon_sym_BANG_EQ] = ACTIONS(1259), + [anon_sym_LT2] = ACTIONS(1257), + [anon_sym_LT_EQ] = ACTIONS(1259), + [anon_sym_GT_EQ] = ACTIONS(1259), + [anon_sym_not_DASHin] = ACTIONS(1259), + [anon_sym_starts_DASHwith] = ACTIONS(1259), + [anon_sym_ends_DASHwith] = ACTIONS(1259), + [anon_sym_EQ_TILDE] = ACTIONS(1259), + [anon_sym_BANG_TILDE] = ACTIONS(1259), + [anon_sym_bit_DASHand] = ACTIONS(1259), + [anon_sym_bit_DASHxor] = ACTIONS(1259), + [anon_sym_bit_DASHor] = ACTIONS(1259), + [anon_sym_and] = ACTIONS(1259), + [anon_sym_xor] = ACTIONS(1259), + [anon_sym_or] = ACTIONS(1259), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1259), + [anon_sym_DOT_DOT_LT] = ACTIONS(1259), + [anon_sym_null] = ACTIONS(1259), + [anon_sym_true] = ACTIONS(1259), + [anon_sym_false] = ACTIONS(1259), + [aux_sym__val_number_decimal_token1] = ACTIONS(1257), + [aux_sym__val_number_decimal_token2] = ACTIONS(1259), + [anon_sym_DOT2] = ACTIONS(1257), + [aux_sym__val_number_decimal_token3] = ACTIONS(1259), + [aux_sym__val_number_token1] = ACTIONS(1259), + [aux_sym__val_number_token2] = ACTIONS(1259), + [aux_sym__val_number_token3] = ACTIONS(1259), + [aux_sym__val_number_token4] = ACTIONS(1259), + [aux_sym__val_number_token5] = ACTIONS(1259), + [aux_sym__val_number_token6] = ACTIONS(1259), + [anon_sym_0b] = ACTIONS(1257), + [anon_sym_0o] = ACTIONS(1257), + [anon_sym_0x] = ACTIONS(1257), + [sym_val_date] = ACTIONS(1259), + [anon_sym_DQUOTE] = ACTIONS(1259), + [sym__str_single_quotes] = ACTIONS(1259), + [sym__str_back_ticks] = ACTIONS(1259), + [anon_sym_err_GT] = ACTIONS(1259), + [anon_sym_out_GT] = ACTIONS(1259), + [anon_sym_e_GT] = ACTIONS(1259), + [anon_sym_o_GT] = ACTIONS(1259), + [anon_sym_err_PLUSout_GT] = ACTIONS(1259), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1259), + [anon_sym_o_PLUSe_GT] = ACTIONS(1259), + [anon_sym_e_PLUSo_GT] = ACTIONS(1259), + [aux_sym_unquoted_token1] = ACTIONS(1257), + [anon_sym_POUND] = ACTIONS(3), + }, + [2200] = { + [sym_comment] = STATE(2200), + [anon_sym_LBRACK] = ACTIONS(1263), + [anon_sym_COMMA] = ACTIONS(1263), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_DOLLAR] = ACTIONS(1263), + [anon_sym_GT] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1261), + [anon_sym_in] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(1263), + [anon_sym_RBRACE] = ACTIONS(1263), + [anon_sym__] = ACTIONS(1261), + [anon_sym_DOT_DOT] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_STAR_STAR] = ACTIONS(1263), + [anon_sym_PLUS_PLUS] = ACTIONS(1263), + [anon_sym_SLASH] = ACTIONS(1261), + [anon_sym_mod] = ACTIONS(1263), + [anon_sym_SLASH_SLASH] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1261), + [anon_sym_bit_DASHshl] = ACTIONS(1263), + [anon_sym_bit_DASHshr] = ACTIONS(1263), + [anon_sym_EQ_EQ] = ACTIONS(1263), + [anon_sym_BANG_EQ] = ACTIONS(1263), + [anon_sym_LT2] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1263), + [anon_sym_not_DASHin] = ACTIONS(1263), + [anon_sym_starts_DASHwith] = ACTIONS(1263), + [anon_sym_ends_DASHwith] = ACTIONS(1263), + [anon_sym_EQ_TILDE] = ACTIONS(1263), + [anon_sym_BANG_TILDE] = ACTIONS(1263), + [anon_sym_bit_DASHand] = ACTIONS(1263), + [anon_sym_bit_DASHxor] = ACTIONS(1263), + [anon_sym_bit_DASHor] = ACTIONS(1263), + [anon_sym_and] = ACTIONS(1263), + [anon_sym_xor] = ACTIONS(1263), + [anon_sym_or] = ACTIONS(1263), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1263), + [anon_sym_DOT_DOT_LT] = ACTIONS(1263), + [anon_sym_null] = ACTIONS(1263), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [aux_sym__val_number_decimal_token1] = ACTIONS(1261), + [aux_sym__val_number_decimal_token2] = ACTIONS(1263), + [anon_sym_DOT2] = ACTIONS(1261), + [aux_sym__val_number_decimal_token3] = ACTIONS(1263), + [aux_sym__val_number_token1] = ACTIONS(1263), + [aux_sym__val_number_token2] = ACTIONS(1263), + [aux_sym__val_number_token3] = ACTIONS(1263), + [aux_sym__val_number_token4] = ACTIONS(1263), + [aux_sym__val_number_token5] = ACTIONS(1263), + [aux_sym__val_number_token6] = ACTIONS(1263), + [anon_sym_0b] = ACTIONS(1261), + [anon_sym_0o] = ACTIONS(1261), + [anon_sym_0x] = ACTIONS(1261), + [sym_val_date] = ACTIONS(1263), + [anon_sym_DQUOTE] = ACTIONS(1263), + [sym__str_single_quotes] = ACTIONS(1263), + [sym__str_back_ticks] = ACTIONS(1263), + [anon_sym_err_GT] = ACTIONS(1263), + [anon_sym_out_GT] = ACTIONS(1263), + [anon_sym_e_GT] = ACTIONS(1263), + [anon_sym_o_GT] = ACTIONS(1263), + [anon_sym_err_PLUSout_GT] = ACTIONS(1263), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1263), + [anon_sym_o_PLUSe_GT] = ACTIONS(1263), + [anon_sym_e_PLUSo_GT] = ACTIONS(1263), + [aux_sym_unquoted_token1] = ACTIONS(1261), + [anon_sym_POUND] = ACTIONS(3), + }, + [2201] = { + [sym_comment] = STATE(2201), + [anon_sym_LBRACK] = ACTIONS(1227), + [anon_sym_COMMA] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1227), + [anon_sym_DOLLAR] = ACTIONS(1227), + [anon_sym_GT] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_in] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(1227), + [anon_sym_RBRACE] = ACTIONS(1227), + [anon_sym__] = ACTIONS(1225), + [anon_sym_DOT_DOT] = ACTIONS(1225), + [anon_sym_STAR] = ACTIONS(1225), + [anon_sym_STAR_STAR] = ACTIONS(1227), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_SLASH] = ACTIONS(1225), + [anon_sym_mod] = ACTIONS(1227), + [anon_sym_SLASH_SLASH] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_bit_DASHshl] = ACTIONS(1227), + [anon_sym_bit_DASHshr] = ACTIONS(1227), + [anon_sym_EQ_EQ] = ACTIONS(1227), + [anon_sym_BANG_EQ] = ACTIONS(1227), + [anon_sym_LT2] = ACTIONS(1225), + [anon_sym_LT_EQ] = ACTIONS(1227), + [anon_sym_GT_EQ] = ACTIONS(1227), + [anon_sym_not_DASHin] = ACTIONS(1227), + [anon_sym_starts_DASHwith] = ACTIONS(1227), + [anon_sym_ends_DASHwith] = ACTIONS(1227), + [anon_sym_EQ_TILDE] = ACTIONS(1227), + [anon_sym_BANG_TILDE] = ACTIONS(1227), + [anon_sym_bit_DASHand] = ACTIONS(1227), + [anon_sym_bit_DASHxor] = ACTIONS(1227), + [anon_sym_bit_DASHor] = ACTIONS(1227), + [anon_sym_and] = ACTIONS(1227), + [anon_sym_xor] = ACTIONS(1227), + [anon_sym_or] = ACTIONS(1227), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1227), + [anon_sym_DOT_DOT_LT] = ACTIONS(1227), + [anon_sym_null] = ACTIONS(1227), + [anon_sym_true] = ACTIONS(1227), + [anon_sym_false] = ACTIONS(1227), + [aux_sym__val_number_decimal_token1] = ACTIONS(1225), + [aux_sym__val_number_decimal_token2] = ACTIONS(1227), + [anon_sym_DOT2] = ACTIONS(1225), + [aux_sym__val_number_decimal_token3] = ACTIONS(1227), + [aux_sym__val_number_token1] = ACTIONS(1227), + [aux_sym__val_number_token2] = ACTIONS(1227), + [aux_sym__val_number_token3] = ACTIONS(1227), + [aux_sym__val_number_token4] = ACTIONS(1227), + [aux_sym__val_number_token5] = ACTIONS(1227), + [aux_sym__val_number_token6] = ACTIONS(1227), + [anon_sym_0b] = ACTIONS(1225), + [anon_sym_0o] = ACTIONS(1225), + [anon_sym_0x] = ACTIONS(1225), + [sym_val_date] = ACTIONS(1227), + [anon_sym_DQUOTE] = ACTIONS(1227), + [sym__str_single_quotes] = ACTIONS(1227), + [sym__str_back_ticks] = ACTIONS(1227), + [anon_sym_err_GT] = ACTIONS(1227), + [anon_sym_out_GT] = ACTIONS(1227), + [anon_sym_e_GT] = ACTIONS(1227), + [anon_sym_o_GT] = ACTIONS(1227), + [anon_sym_err_PLUSout_GT] = ACTIONS(1227), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1227), + [anon_sym_o_PLUSe_GT] = ACTIONS(1227), + [anon_sym_e_PLUSo_GT] = ACTIONS(1227), + [aux_sym_unquoted_token1] = ACTIONS(1225), + [anon_sym_POUND] = ACTIONS(3), + }, + [2202] = { + [sym_comment] = STATE(2202), + [anon_sym_LBRACK] = ACTIONS(1267), + [anon_sym_COMMA] = ACTIONS(1267), + [anon_sym_LPAREN] = ACTIONS(1267), + [anon_sym_DOLLAR] = ACTIONS(1267), + [anon_sym_GT] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1265), + [anon_sym_in] = ACTIONS(1265), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_RBRACE] = ACTIONS(1267), + [anon_sym__] = ACTIONS(1265), + [anon_sym_DOT_DOT] = ACTIONS(1265), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_STAR_STAR] = ACTIONS(1267), + [anon_sym_PLUS_PLUS] = ACTIONS(1267), + [anon_sym_SLASH] = ACTIONS(1265), + [anon_sym_mod] = ACTIONS(1267), + [anon_sym_SLASH_SLASH] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1265), + [anon_sym_bit_DASHshl] = ACTIONS(1267), + [anon_sym_bit_DASHshr] = ACTIONS(1267), + [anon_sym_EQ_EQ] = ACTIONS(1267), + [anon_sym_BANG_EQ] = ACTIONS(1267), + [anon_sym_LT2] = ACTIONS(1265), + [anon_sym_LT_EQ] = ACTIONS(1267), + [anon_sym_GT_EQ] = ACTIONS(1267), + [anon_sym_not_DASHin] = ACTIONS(1267), + [anon_sym_starts_DASHwith] = ACTIONS(1267), + [anon_sym_ends_DASHwith] = ACTIONS(1267), + [anon_sym_EQ_TILDE] = ACTIONS(1267), + [anon_sym_BANG_TILDE] = ACTIONS(1267), + [anon_sym_bit_DASHand] = ACTIONS(1267), + [anon_sym_bit_DASHxor] = ACTIONS(1267), + [anon_sym_bit_DASHor] = ACTIONS(1267), + [anon_sym_and] = ACTIONS(1267), + [anon_sym_xor] = ACTIONS(1267), + [anon_sym_or] = ACTIONS(1267), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1267), + [anon_sym_DOT_DOT_LT] = ACTIONS(1267), + [anon_sym_null] = ACTIONS(1267), + [anon_sym_true] = ACTIONS(1267), + [anon_sym_false] = ACTIONS(1267), + [aux_sym__val_number_decimal_token1] = ACTIONS(1265), + [aux_sym__val_number_decimal_token2] = ACTIONS(1267), + [anon_sym_DOT2] = ACTIONS(1265), + [aux_sym__val_number_decimal_token3] = ACTIONS(1267), + [aux_sym__val_number_token1] = ACTIONS(1267), + [aux_sym__val_number_token2] = ACTIONS(1267), + [aux_sym__val_number_token3] = ACTIONS(1267), + [aux_sym__val_number_token4] = ACTIONS(1267), + [aux_sym__val_number_token5] = ACTIONS(1267), + [aux_sym__val_number_token6] = ACTIONS(1267), + [anon_sym_0b] = ACTIONS(1265), + [anon_sym_0o] = ACTIONS(1265), + [anon_sym_0x] = ACTIONS(1265), + [sym_val_date] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1267), + [sym__str_single_quotes] = ACTIONS(1267), + [sym__str_back_ticks] = ACTIONS(1267), + [anon_sym_err_GT] = ACTIONS(1267), + [anon_sym_out_GT] = ACTIONS(1267), + [anon_sym_e_GT] = ACTIONS(1267), + [anon_sym_o_GT] = ACTIONS(1267), + [anon_sym_err_PLUSout_GT] = ACTIONS(1267), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1267), + [anon_sym_o_PLUSe_GT] = ACTIONS(1267), + [anon_sym_e_PLUSo_GT] = ACTIONS(1267), + [aux_sym_unquoted_token1] = ACTIONS(1265), + [anon_sym_POUND] = ACTIONS(3), + }, + [2203] = { + [sym_comment] = STATE(2203), + [anon_sym_LBRACK] = ACTIONS(1267), + [anon_sym_COMMA] = ACTIONS(1267), + [anon_sym_LPAREN] = ACTIONS(1267), + [anon_sym_DOLLAR] = ACTIONS(1267), + [anon_sym_GT] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1265), + [anon_sym_in] = ACTIONS(1265), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_RBRACE] = ACTIONS(1267), + [anon_sym__] = ACTIONS(1265), + [anon_sym_DOT_DOT] = ACTIONS(1265), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_STAR_STAR] = ACTIONS(1267), + [anon_sym_PLUS_PLUS] = ACTIONS(1267), + [anon_sym_SLASH] = ACTIONS(1265), + [anon_sym_mod] = ACTIONS(1267), + [anon_sym_SLASH_SLASH] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1265), + [anon_sym_bit_DASHshl] = ACTIONS(1267), + [anon_sym_bit_DASHshr] = ACTIONS(1267), + [anon_sym_EQ_EQ] = ACTIONS(1267), + [anon_sym_BANG_EQ] = ACTIONS(1267), + [anon_sym_LT2] = ACTIONS(1265), + [anon_sym_LT_EQ] = ACTIONS(1267), + [anon_sym_GT_EQ] = ACTIONS(1267), + [anon_sym_not_DASHin] = ACTIONS(1267), + [anon_sym_starts_DASHwith] = ACTIONS(1267), + [anon_sym_ends_DASHwith] = ACTIONS(1267), + [anon_sym_EQ_TILDE] = ACTIONS(1267), + [anon_sym_BANG_TILDE] = ACTIONS(1267), + [anon_sym_bit_DASHand] = ACTIONS(1267), + [anon_sym_bit_DASHxor] = ACTIONS(1267), + [anon_sym_bit_DASHor] = ACTIONS(1267), + [anon_sym_and] = ACTIONS(1267), + [anon_sym_xor] = ACTIONS(1267), + [anon_sym_or] = ACTIONS(1267), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1267), + [anon_sym_DOT_DOT_LT] = ACTIONS(1267), + [anon_sym_null] = ACTIONS(1267), + [anon_sym_true] = ACTIONS(1267), + [anon_sym_false] = ACTIONS(1267), + [aux_sym__val_number_decimal_token1] = ACTIONS(1265), + [aux_sym__val_number_decimal_token2] = ACTIONS(1267), + [anon_sym_DOT2] = ACTIONS(1265), + [aux_sym__val_number_decimal_token3] = ACTIONS(1267), + [aux_sym__val_number_token1] = ACTIONS(1267), + [aux_sym__val_number_token2] = ACTIONS(1267), + [aux_sym__val_number_token3] = ACTIONS(1267), + [aux_sym__val_number_token4] = ACTIONS(1267), + [aux_sym__val_number_token5] = ACTIONS(1267), + [aux_sym__val_number_token6] = ACTIONS(1267), + [anon_sym_0b] = ACTIONS(1265), + [anon_sym_0o] = ACTIONS(1265), + [anon_sym_0x] = ACTIONS(1265), + [sym_val_date] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1267), + [sym__str_single_quotes] = ACTIONS(1267), + [sym__str_back_ticks] = ACTIONS(1267), + [anon_sym_err_GT] = ACTIONS(1267), + [anon_sym_out_GT] = ACTIONS(1267), + [anon_sym_e_GT] = ACTIONS(1267), + [anon_sym_o_GT] = ACTIONS(1267), + [anon_sym_err_PLUSout_GT] = ACTIONS(1267), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1267), + [anon_sym_o_PLUSe_GT] = ACTIONS(1267), + [anon_sym_e_PLUSo_GT] = ACTIONS(1267), + [aux_sym_unquoted_token1] = ACTIONS(1265), + [anon_sym_POUND] = ACTIONS(3), + }, + [2204] = { + [sym_comment] = STATE(2204), + [anon_sym_LBRACK] = ACTIONS(1273), [anon_sym_COMMA] = ACTIONS(1273), - [anon_sym_RBRACK] = ACTIONS(1275), - [anon_sym_LPAREN] = ACTIONS(1275), + [anon_sym_RBRACK] = ACTIONS(1273), + [anon_sym_LPAREN] = ACTIONS(1273), [anon_sym_DOLLAR] = ACTIONS(1273), - [anon_sym_GT] = ACTIONS(1273), + [anon_sym_GT] = ACTIONS(1271), [anon_sym_DASH_DASH] = ACTIONS(1273), - [anon_sym_DASH] = ACTIONS(1273), - [anon_sym_in] = ACTIONS(1273), - [anon_sym_LBRACE] = ACTIONS(1275), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_STAR] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_in] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_DOT_DOT] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(1271), [anon_sym_STAR_STAR] = ACTIONS(1273), [anon_sym_PLUS_PLUS] = ACTIONS(1273), - [anon_sym_SLASH] = ACTIONS(1273), + [anon_sym_SLASH] = ACTIONS(1271), [anon_sym_mod] = ACTIONS(1273), [anon_sym_SLASH_SLASH] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(1273), + [anon_sym_PLUS] = ACTIONS(1271), [anon_sym_bit_DASHshl] = ACTIONS(1273), [anon_sym_bit_DASHshr] = ACTIONS(1273), [anon_sym_EQ_EQ] = ACTIONS(1273), [anon_sym_BANG_EQ] = ACTIONS(1273), - [anon_sym_LT2] = ACTIONS(1273), + [anon_sym_LT2] = ACTIONS(1271), [anon_sym_LT_EQ] = ACTIONS(1273), [anon_sym_GT_EQ] = ACTIONS(1273), [anon_sym_not_DASHin] = ACTIONS(1273), @@ -265547,9 +275206,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(1273), [anon_sym_true] = ACTIONS(1273), [anon_sym_false] = ACTIONS(1273), - [aux_sym__val_number_decimal_token1] = ACTIONS(1273), + [aux_sym__val_number_decimal_token1] = ACTIONS(1271), [aux_sym__val_number_decimal_token2] = ACTIONS(1273), - [anon_sym_DOT2] = ACTIONS(1273), + [anon_sym_DOT2] = ACTIONS(1271), [aux_sym__val_number_decimal_token3] = ACTIONS(1273), [aux_sym__val_number_token1] = ACTIONS(1273), [aux_sym__val_number_token2] = ACTIONS(1273), @@ -265557,13 +275216,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token4] = ACTIONS(1273), [aux_sym__val_number_token5] = ACTIONS(1273), [aux_sym__val_number_token6] = ACTIONS(1273), - [anon_sym_0b] = ACTIONS(1273), - [anon_sym_0o] = ACTIONS(1273), - [anon_sym_0x] = ACTIONS(1273), + [anon_sym_0b] = ACTIONS(1271), + [anon_sym_0o] = ACTIONS(1271), + [anon_sym_0x] = ACTIONS(1271), [sym_val_date] = ACTIONS(1273), - [anon_sym_DQUOTE] = ACTIONS(1275), - [sym__str_single_quotes] = ACTIONS(1275), - [sym__str_back_ticks] = ACTIONS(1275), + [anon_sym_DQUOTE] = ACTIONS(1273), + [sym__str_single_quotes] = ACTIONS(1273), + [sym__str_back_ticks] = ACTIONS(1273), [anon_sym_err_GT] = ACTIONS(1273), [anon_sym_out_GT] = ACTIONS(1273), [anon_sym_e_GT] = ACTIONS(1273), @@ -265572,2339 +275231,3087 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT] = ACTIONS(1273), [anon_sym_o_PLUSe_GT] = ACTIONS(1273), [anon_sym_e_PLUSo_GT] = ACTIONS(1273), - [aux_sym_unquoted_token6] = ACTIONS(1257), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1273), - [anon_sym_POUND] = ACTIONS(113), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1271), + [anon_sym_POUND] = ACTIONS(3), }, - [1927] = { - [sym_comment] = STATE(1927), - [ts_builtin_sym_end] = ACTIONS(1065), - [anon_sym_SEMI] = ACTIONS(1063), - [anon_sym_LF] = ACTIONS(1065), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_PIPE] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_DASH_DASH] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_QMARK2] = ACTIONS(1063), - [anon_sym_STAR_STAR] = ACTIONS(1063), - [anon_sym_PLUS_PLUS] = ACTIONS(1063), - [anon_sym_SLASH] = ACTIONS(1063), - [anon_sym_mod] = ACTIONS(1063), - [anon_sym_SLASH_SLASH] = ACTIONS(1063), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_bit_DASHshl] = ACTIONS(1063), - [anon_sym_bit_DASHshr] = ACTIONS(1063), - [anon_sym_EQ_EQ] = ACTIONS(1063), - [anon_sym_BANG_EQ] = ACTIONS(1063), - [anon_sym_LT2] = ACTIONS(1063), - [anon_sym_LT_EQ] = ACTIONS(1063), - [anon_sym_GT_EQ] = ACTIONS(1063), - [anon_sym_not_DASHin] = ACTIONS(1063), - [anon_sym_starts_DASHwith] = ACTIONS(1063), - [anon_sym_ends_DASHwith] = ACTIONS(1063), - [anon_sym_EQ_TILDE] = ACTIONS(1063), - [anon_sym_BANG_TILDE] = ACTIONS(1063), - [anon_sym_bit_DASHand] = ACTIONS(1063), - [anon_sym_bit_DASHxor] = ACTIONS(1063), - [anon_sym_bit_DASHor] = ACTIONS(1063), - [anon_sym_and] = ACTIONS(1063), - [anon_sym_xor] = ACTIONS(1063), - [anon_sym_or] = ACTIONS(1063), - [anon_sym_not] = ACTIONS(1063), - [anon_sym_DOT_DOT2] = ACTIONS(1063), - [anon_sym_DOT] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1063), - [anon_sym_DOT_DOT_LT] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1065), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1065), - [anon_sym_null] = ACTIONS(1063), - [anon_sym_true] = ACTIONS(1063), - [anon_sym_false] = ACTIONS(1063), - [aux_sym__val_number_decimal_token1] = ACTIONS(1063), - [aux_sym__val_number_decimal_token2] = ACTIONS(1063), - [anon_sym_DOT2] = ACTIONS(1063), - [aux_sym__val_number_decimal_token3] = ACTIONS(1063), - [aux_sym__val_number_token1] = ACTIONS(1063), - [aux_sym__val_number_token2] = ACTIONS(1063), - [aux_sym__val_number_token3] = ACTIONS(1063), - [aux_sym__val_number_token4] = ACTIONS(1063), - [aux_sym__val_number_token5] = ACTIONS(1063), - [aux_sym__val_number_token6] = ACTIONS(1063), - [anon_sym_0b] = ACTIONS(1063), - [anon_sym_0o] = ACTIONS(1063), - [anon_sym_0x] = ACTIONS(1063), - [sym_val_date] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [sym__str_single_quotes] = ACTIONS(1063), - [sym__str_back_ticks] = ACTIONS(1063), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1063), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1063), - [anon_sym_POUND] = ACTIONS(113), + [2205] = { + [sym_comment] = STATE(2205), + [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(1277), + [anon_sym_DOLLAR] = ACTIONS(1277), + [anon_sym_GT] = ACTIONS(1275), + [anon_sym_DASH_DASH] = ACTIONS(1277), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_in] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(1277), + [anon_sym_DOT_DOT] = ACTIONS(1275), + [anon_sym_STAR] = ACTIONS(1275), + [anon_sym_STAR_STAR] = ACTIONS(1277), + [anon_sym_PLUS_PLUS] = ACTIONS(1277), + [anon_sym_SLASH] = ACTIONS(1275), + [anon_sym_mod] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(1277), + [anon_sym_PLUS] = ACTIONS(1275), + [anon_sym_bit_DASHshl] = ACTIONS(1277), + [anon_sym_bit_DASHshr] = ACTIONS(1277), + [anon_sym_EQ_EQ] = ACTIONS(1277), + [anon_sym_BANG_EQ] = ACTIONS(1277), + [anon_sym_LT2] = ACTIONS(1275), + [anon_sym_LT_EQ] = ACTIONS(1277), + [anon_sym_GT_EQ] = ACTIONS(1277), + [anon_sym_not_DASHin] = ACTIONS(1277), + [anon_sym_starts_DASHwith] = ACTIONS(1277), + [anon_sym_ends_DASHwith] = ACTIONS(1277), + [anon_sym_EQ_TILDE] = ACTIONS(1277), + [anon_sym_BANG_TILDE] = ACTIONS(1277), + [anon_sym_bit_DASHand] = ACTIONS(1277), + [anon_sym_bit_DASHxor] = ACTIONS(1277), + [anon_sym_bit_DASHor] = ACTIONS(1277), + [anon_sym_and] = ACTIONS(1277), + [anon_sym_xor] = ACTIONS(1277), + [anon_sym_or] = ACTIONS(1277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), + [anon_sym_DOT_DOT_LT] = ACTIONS(1277), + [anon_sym_null] = ACTIONS(1277), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [aux_sym__val_number_decimal_token1] = ACTIONS(1275), + [aux_sym__val_number_decimal_token2] = ACTIONS(1277), + [anon_sym_DOT2] = ACTIONS(1275), + [aux_sym__val_number_decimal_token3] = ACTIONS(1277), + [aux_sym__val_number_token1] = ACTIONS(1277), + [aux_sym__val_number_token2] = ACTIONS(1277), + [aux_sym__val_number_token3] = ACTIONS(1277), + [aux_sym__val_number_token4] = ACTIONS(1277), + [aux_sym__val_number_token5] = ACTIONS(1277), + [aux_sym__val_number_token6] = ACTIONS(1277), + [anon_sym_0b] = ACTIONS(1275), + [anon_sym_0o] = ACTIONS(1275), + [anon_sym_0x] = ACTIONS(1275), + [sym_val_date] = ACTIONS(1277), + [anon_sym_DQUOTE] = ACTIONS(1277), + [sym__str_single_quotes] = ACTIONS(1277), + [sym__str_back_ticks] = ACTIONS(1277), + [anon_sym_err_GT] = ACTIONS(1277), + [anon_sym_out_GT] = ACTIONS(1277), + [anon_sym_e_GT] = ACTIONS(1277), + [anon_sym_o_GT] = ACTIONS(1277), + [anon_sym_err_PLUSout_GT] = ACTIONS(1277), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1277), + [anon_sym_o_PLUSe_GT] = ACTIONS(1277), + [anon_sym_e_PLUSo_GT] = ACTIONS(1277), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1275), + [anon_sym_POUND] = ACTIONS(3), }, - [1928] = { - [sym_comment] = STATE(1928), - [anon_sym_LBRACK] = ACTIONS(1282), - [anon_sym_COMMA] = ACTIONS(1280), - [anon_sym_LPAREN] = ACTIONS(1282), - [anon_sym_DOLLAR] = ACTIONS(1280), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_in] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1282), - [anon_sym_RBRACE] = ACTIONS(1282), - [anon_sym__] = ACTIONS(1280), - [anon_sym_DOT_DOT] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1280), - [anon_sym_STAR_STAR] = ACTIONS(1280), - [anon_sym_PLUS_PLUS] = ACTIONS(1280), - [anon_sym_SLASH] = ACTIONS(1280), - [anon_sym_mod] = ACTIONS(1280), - [anon_sym_SLASH_SLASH] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_bit_DASHshl] = ACTIONS(1280), - [anon_sym_bit_DASHshr] = ACTIONS(1280), - [anon_sym_EQ_EQ] = ACTIONS(1280), - [anon_sym_BANG_EQ] = ACTIONS(1280), - [anon_sym_LT2] = ACTIONS(1280), - [anon_sym_LT_EQ] = ACTIONS(1280), - [anon_sym_GT_EQ] = ACTIONS(1280), - [anon_sym_not_DASHin] = ACTIONS(1280), - [anon_sym_starts_DASHwith] = ACTIONS(1280), - [anon_sym_ends_DASHwith] = ACTIONS(1280), - [anon_sym_EQ_TILDE] = ACTIONS(1280), - [anon_sym_BANG_TILDE] = ACTIONS(1280), - [anon_sym_bit_DASHand] = ACTIONS(1280), - [anon_sym_bit_DASHxor] = ACTIONS(1280), - [anon_sym_bit_DASHor] = ACTIONS(1280), - [anon_sym_and] = ACTIONS(1280), - [anon_sym_xor] = ACTIONS(1280), - [anon_sym_or] = ACTIONS(1280), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1280), - [anon_sym_DOT_DOT_LT] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1280), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [aux_sym__val_number_decimal_token1] = ACTIONS(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1280), - [anon_sym_DOT2] = ACTIONS(1280), - [aux_sym__val_number_decimal_token3] = ACTIONS(1280), - [aux_sym__val_number_token1] = ACTIONS(1280), - [aux_sym__val_number_token2] = ACTIONS(1280), - [aux_sym__val_number_token3] = ACTIONS(1280), - [aux_sym__val_number_token4] = ACTIONS(1280), - [aux_sym__val_number_token5] = ACTIONS(1280), - [aux_sym__val_number_token6] = ACTIONS(1280), - [anon_sym_0b] = ACTIONS(1280), - [anon_sym_0o] = ACTIONS(1280), - [anon_sym_0x] = ACTIONS(1280), - [sym_val_date] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1282), - [sym__str_single_quotes] = ACTIONS(1282), - [sym__str_back_ticks] = ACTIONS(1282), - [anon_sym_err_GT] = ACTIONS(1280), - [anon_sym_out_GT] = ACTIONS(1280), - [anon_sym_e_GT] = ACTIONS(1280), - [anon_sym_o_GT] = ACTIONS(1280), - [anon_sym_err_PLUSout_GT] = ACTIONS(1280), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1280), - [anon_sym_o_PLUSe_GT] = ACTIONS(1280), - [anon_sym_e_PLUSo_GT] = ACTIONS(1280), - [aux_sym_unquoted_token1] = ACTIONS(1280), - [aux_sym_unquoted_token6] = ACTIONS(1280), + [2206] = { + [sym_cell_path] = STATE(2585), + [sym_path] = STATE(2095), + [sym_comment] = STATE(2206), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym_LF] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(992), + [anon_sym_RPAREN] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(992), + [anon_sym_DOLLAR] = ACTIONS(992), + [anon_sym_GT] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_in] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(992), + [anon_sym_RBRACE] = ACTIONS(992), + [anon_sym_DOT_DOT] = ACTIONS(992), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_STAR_STAR] = ACTIONS(992), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_SLASH] = ACTIONS(992), + [anon_sym_mod] = ACTIONS(992), + [anon_sym_SLASH_SLASH] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_bit_DASHshl] = ACTIONS(992), + [anon_sym_bit_DASHshr] = ACTIONS(992), + [anon_sym_EQ_EQ] = ACTIONS(992), + [anon_sym_BANG_EQ] = ACTIONS(992), + [anon_sym_LT2] = ACTIONS(992), + [anon_sym_LT_EQ] = ACTIONS(992), + [anon_sym_GT_EQ] = ACTIONS(992), + [anon_sym_not_DASHin] = ACTIONS(992), + [anon_sym_starts_DASHwith] = ACTIONS(992), + [anon_sym_ends_DASHwith] = ACTIONS(992), + [anon_sym_EQ_TILDE] = ACTIONS(992), + [anon_sym_BANG_TILDE] = ACTIONS(992), + [anon_sym_bit_DASHand] = ACTIONS(992), + [anon_sym_bit_DASHxor] = ACTIONS(992), + [anon_sym_bit_DASHor] = ACTIONS(992), + [anon_sym_and] = ACTIONS(992), + [anon_sym_xor] = ACTIONS(992), + [anon_sym_or] = ACTIONS(992), + [anon_sym_not] = ACTIONS(992), + [anon_sym_DOT] = ACTIONS(5731), + [anon_sym_DOT_DOT_EQ] = ACTIONS(992), + [anon_sym_DOT_DOT_LT] = ACTIONS(992), + [anon_sym_null] = ACTIONS(992), + [anon_sym_true] = ACTIONS(992), + [anon_sym_false] = ACTIONS(992), + [aux_sym__val_number_decimal_token1] = ACTIONS(992), + [aux_sym__val_number_decimal_token2] = ACTIONS(992), + [anon_sym_DOT2] = ACTIONS(992), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(992), + [anon_sym_0o] = ACTIONS(992), + [anon_sym_0x] = ACTIONS(992), + [sym_val_date] = ACTIONS(992), + [anon_sym_DQUOTE] = ACTIONS(992), + [sym__str_single_quotes] = ACTIONS(992), + [sym__str_back_ticks] = ACTIONS(992), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(992), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(992), [anon_sym_POUND] = ACTIONS(113), }, - [1929] = { - [sym_comment] = STATE(1929), - [ts_builtin_sym_end] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(1070), - [anon_sym_LF] = ACTIONS(1072), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_in] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(5427), - [anon_sym_STAR_STAR] = ACTIONS(1070), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_mod] = ACTIONS(1070), - [anon_sym_SLASH_SLASH] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_bit_DASHshl] = ACTIONS(1070), - [anon_sym_bit_DASHshr] = ACTIONS(1070), - [anon_sym_EQ_EQ] = ACTIONS(1070), - [anon_sym_BANG_EQ] = ACTIONS(1070), - [anon_sym_LT2] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1070), - [anon_sym_GT_EQ] = ACTIONS(1070), - [anon_sym_not_DASHin] = ACTIONS(1070), - [anon_sym_starts_DASHwith] = ACTIONS(1070), - [anon_sym_ends_DASHwith] = ACTIONS(1070), - [anon_sym_EQ_TILDE] = ACTIONS(1070), - [anon_sym_BANG_TILDE] = ACTIONS(1070), - [anon_sym_bit_DASHand] = ACTIONS(1070), - [anon_sym_bit_DASHxor] = ACTIONS(1070), - [anon_sym_bit_DASHor] = ACTIONS(1070), - [anon_sym_and] = ACTIONS(1070), - [anon_sym_xor] = ACTIONS(1070), - [anon_sym_or] = ACTIONS(1070), - [anon_sym_not] = ACTIONS(1070), - [anon_sym_DOT_DOT2] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1072), - [anon_sym_null] = ACTIONS(1070), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1070), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), - [anon_sym_POUND] = ACTIONS(113), + [2207] = { + [sym_comment] = STATE(2207), + [anon_sym_LBRACK] = ACTIONS(1173), + [anon_sym_COMMA] = ACTIONS(1173), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_DOLLAR] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_RBRACE] = ACTIONS(1173), + [anon_sym__] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1173), + [anon_sym_SLASH_SLASH] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1173), + [anon_sym_bit_DASHshr] = ACTIONS(1173), + [anon_sym_EQ_EQ] = ACTIONS(1173), + [anon_sym_BANG_EQ] = ACTIONS(1173), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1173), + [anon_sym_GT_EQ] = ACTIONS(1173), + [anon_sym_not_DASHin] = ACTIONS(1173), + [anon_sym_starts_DASHwith] = ACTIONS(1173), + [anon_sym_ends_DASHwith] = ACTIONS(1173), + [anon_sym_EQ_TILDE] = ACTIONS(1173), + [anon_sym_BANG_TILDE] = ACTIONS(1173), + [anon_sym_bit_DASHand] = ACTIONS(1173), + [anon_sym_bit_DASHxor] = ACTIONS(1173), + [anon_sym_bit_DASHor] = ACTIONS(1173), + [anon_sym_and] = ACTIONS(1173), + [anon_sym_xor] = ACTIONS(1173), + [anon_sym_or] = ACTIONS(1173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1173), + [anon_sym_DOT_DOT_LT] = ACTIONS(1173), + [anon_sym_null] = ACTIONS(1173), + [anon_sym_true] = ACTIONS(1173), + [anon_sym_false] = ACTIONS(1173), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1173), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1173), + [aux_sym__val_number_token1] = ACTIONS(1173), + [aux_sym__val_number_token2] = ACTIONS(1173), + [aux_sym__val_number_token3] = ACTIONS(1173), + [aux_sym__val_number_token4] = ACTIONS(1173), + [aux_sym__val_number_token5] = ACTIONS(1173), + [aux_sym__val_number_token6] = ACTIONS(1173), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym__str_single_quotes] = ACTIONS(1173), + [sym__str_back_ticks] = ACTIONS(1173), + [anon_sym_err_GT] = ACTIONS(1173), + [anon_sym_out_GT] = ACTIONS(1173), + [anon_sym_e_GT] = ACTIONS(1173), + [anon_sym_o_GT] = ACTIONS(1173), + [anon_sym_err_PLUSout_GT] = ACTIONS(1173), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1173), + [anon_sym_o_PLUSe_GT] = ACTIONS(1173), + [anon_sym_e_PLUSo_GT] = ACTIONS(1173), + [aux_sym_unquoted_token1] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(3), }, - [1930] = { - [sym_comment] = STATE(1930), - [ts_builtin_sym_end] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(1070), - [anon_sym_LF] = ACTIONS(1072), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_in] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(5427), - [anon_sym_STAR_STAR] = ACTIONS(1070), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_mod] = ACTIONS(1070), - [anon_sym_SLASH_SLASH] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_bit_DASHshl] = ACTIONS(1070), - [anon_sym_bit_DASHshr] = ACTIONS(1070), - [anon_sym_EQ_EQ] = ACTIONS(1070), - [anon_sym_BANG_EQ] = ACTIONS(1070), - [anon_sym_LT2] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1070), - [anon_sym_GT_EQ] = ACTIONS(1070), - [anon_sym_not_DASHin] = ACTIONS(1070), - [anon_sym_starts_DASHwith] = ACTIONS(1070), - [anon_sym_ends_DASHwith] = ACTIONS(1070), - [anon_sym_EQ_TILDE] = ACTIONS(1070), - [anon_sym_BANG_TILDE] = ACTIONS(1070), - [anon_sym_bit_DASHand] = ACTIONS(1070), - [anon_sym_bit_DASHxor] = ACTIONS(1070), - [anon_sym_bit_DASHor] = ACTIONS(1070), - [anon_sym_and] = ACTIONS(1070), - [anon_sym_xor] = ACTIONS(1070), - [anon_sym_or] = ACTIONS(1070), - [anon_sym_not] = ACTIONS(1070), - [anon_sym_DOT_DOT2] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1072), - [anon_sym_null] = ACTIONS(1070), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1070), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), - [anon_sym_POUND] = ACTIONS(113), + [2208] = { + [sym_comment] = STATE(2208), + [anon_sym_LBRACK] = ACTIONS(1273), + [anon_sym_COMMA] = ACTIONS(1273), + [anon_sym_LPAREN] = ACTIONS(1273), + [anon_sym_DOLLAR] = ACTIONS(1273), + [anon_sym_GT] = ACTIONS(1271), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_in] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_RBRACE] = ACTIONS(1273), + [anon_sym__] = ACTIONS(1271), + [anon_sym_DOT_DOT] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(1271), + [anon_sym_STAR_STAR] = ACTIONS(1273), + [anon_sym_PLUS_PLUS] = ACTIONS(1273), + [anon_sym_SLASH] = ACTIONS(1271), + [anon_sym_mod] = ACTIONS(1273), + [anon_sym_SLASH_SLASH] = ACTIONS(1273), + [anon_sym_PLUS] = ACTIONS(1271), + [anon_sym_bit_DASHshl] = ACTIONS(1273), + [anon_sym_bit_DASHshr] = ACTIONS(1273), + [anon_sym_EQ_EQ] = ACTIONS(1273), + [anon_sym_BANG_EQ] = ACTIONS(1273), + [anon_sym_LT2] = ACTIONS(1271), + [anon_sym_LT_EQ] = ACTIONS(1273), + [anon_sym_GT_EQ] = ACTIONS(1273), + [anon_sym_not_DASHin] = ACTIONS(1273), + [anon_sym_starts_DASHwith] = ACTIONS(1273), + [anon_sym_ends_DASHwith] = ACTIONS(1273), + [anon_sym_EQ_TILDE] = ACTIONS(1273), + [anon_sym_BANG_TILDE] = ACTIONS(1273), + [anon_sym_bit_DASHand] = ACTIONS(1273), + [anon_sym_bit_DASHxor] = ACTIONS(1273), + [anon_sym_bit_DASHor] = ACTIONS(1273), + [anon_sym_and] = ACTIONS(1273), + [anon_sym_xor] = ACTIONS(1273), + [anon_sym_or] = ACTIONS(1273), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1273), + [anon_sym_DOT_DOT_LT] = ACTIONS(1273), + [anon_sym_null] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1273), + [anon_sym_false] = ACTIONS(1273), + [aux_sym__val_number_decimal_token1] = ACTIONS(1271), + [aux_sym__val_number_decimal_token2] = ACTIONS(1273), + [anon_sym_DOT2] = ACTIONS(1271), + [aux_sym__val_number_decimal_token3] = ACTIONS(1273), + [aux_sym__val_number_token1] = ACTIONS(1273), + [aux_sym__val_number_token2] = ACTIONS(1273), + [aux_sym__val_number_token3] = ACTIONS(1273), + [aux_sym__val_number_token4] = ACTIONS(1273), + [aux_sym__val_number_token5] = ACTIONS(1273), + [aux_sym__val_number_token6] = ACTIONS(1273), + [anon_sym_0b] = ACTIONS(1271), + [anon_sym_0o] = ACTIONS(1271), + [anon_sym_0x] = ACTIONS(1271), + [sym_val_date] = ACTIONS(1273), + [anon_sym_DQUOTE] = ACTIONS(1273), + [sym__str_single_quotes] = ACTIONS(1273), + [sym__str_back_ticks] = ACTIONS(1273), + [anon_sym_err_GT] = ACTIONS(1273), + [anon_sym_out_GT] = ACTIONS(1273), + [anon_sym_e_GT] = ACTIONS(1273), + [anon_sym_o_GT] = ACTIONS(1273), + [anon_sym_err_PLUSout_GT] = ACTIONS(1273), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1273), + [anon_sym_o_PLUSe_GT] = ACTIONS(1273), + [anon_sym_e_PLUSo_GT] = ACTIONS(1273), + [aux_sym_unquoted_token1] = ACTIONS(1271), + [anon_sym_POUND] = ACTIONS(3), }, - [1931] = { - [sym_comment] = STATE(1931), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_COMMA] = ACTIONS(1168), - [anon_sym_RBRACK] = ACTIONS(1168), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_DOLLAR] = ACTIONS(1168), - [anon_sym_GT] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1168), - [anon_sym_in] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1168), - [anon_sym_DOT_DOT] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_STAR_STAR] = ACTIONS(1168), - [anon_sym_PLUS_PLUS] = ACTIONS(1168), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_mod] = ACTIONS(1168), - [anon_sym_SLASH_SLASH] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(1168), - [anon_sym_bit_DASHshl] = ACTIONS(1168), - [anon_sym_bit_DASHshr] = ACTIONS(1168), - [anon_sym_EQ_EQ] = ACTIONS(1168), - [anon_sym_BANG_EQ] = ACTIONS(1168), - [anon_sym_LT2] = ACTIONS(1168), - [anon_sym_LT_EQ] = ACTIONS(1168), - [anon_sym_GT_EQ] = ACTIONS(1168), - [anon_sym_not_DASHin] = ACTIONS(1168), - [anon_sym_starts_DASHwith] = ACTIONS(1168), - [anon_sym_ends_DASHwith] = ACTIONS(1168), - [anon_sym_EQ_TILDE] = ACTIONS(1168), - [anon_sym_BANG_TILDE] = ACTIONS(1168), - [anon_sym_bit_DASHand] = ACTIONS(1168), - [anon_sym_bit_DASHxor] = ACTIONS(1168), - [anon_sym_bit_DASHor] = ACTIONS(1168), - [anon_sym_and] = ACTIONS(1168), - [anon_sym_xor] = ACTIONS(1168), - [anon_sym_or] = ACTIONS(1168), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1168), - [anon_sym_DOT_DOT_LT] = ACTIONS(1168), - [anon_sym_null] = ACTIONS(1168), - [anon_sym_true] = ACTIONS(1168), - [anon_sym_false] = ACTIONS(1168), - [aux_sym__val_number_decimal_token1] = ACTIONS(1168), - [aux_sym__val_number_decimal_token2] = ACTIONS(1168), - [anon_sym_DOT2] = ACTIONS(1168), - [aux_sym__val_number_decimal_token3] = ACTIONS(1168), - [aux_sym__val_number_token1] = ACTIONS(1168), - [aux_sym__val_number_token2] = ACTIONS(1168), - [aux_sym__val_number_token3] = ACTIONS(1168), - [aux_sym__val_number_token4] = ACTIONS(1168), - [aux_sym__val_number_token5] = ACTIONS(1168), - [aux_sym__val_number_token6] = ACTIONS(1168), - [anon_sym_0b] = ACTIONS(1168), - [anon_sym_0o] = ACTIONS(1168), - [anon_sym_0x] = ACTIONS(1168), - [sym_val_date] = ACTIONS(1168), - [anon_sym_DQUOTE] = ACTIONS(1168), - [sym__str_single_quotes] = ACTIONS(1168), - [sym__str_back_ticks] = ACTIONS(1168), - [sym__entry_separator] = ACTIONS(1170), - [anon_sym_err_GT] = ACTIONS(1168), - [anon_sym_out_GT] = ACTIONS(1168), - [anon_sym_e_GT] = ACTIONS(1168), - [anon_sym_o_GT] = ACTIONS(1168), - [anon_sym_err_PLUSout_GT] = ACTIONS(1168), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1168), - [anon_sym_o_PLUSe_GT] = ACTIONS(1168), - [anon_sym_e_PLUSo_GT] = ACTIONS(1168), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1168), - [anon_sym_POUND] = ACTIONS(113), + [2209] = { + [sym_comment] = STATE(2209), + [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(1277), + [anon_sym_DOLLAR] = ACTIONS(1277), + [anon_sym_GT] = ACTIONS(1275), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_in] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(1277), + [anon_sym_RBRACE] = ACTIONS(1277), + [anon_sym__] = ACTIONS(1275), + [anon_sym_DOT_DOT] = ACTIONS(1275), + [anon_sym_STAR] = ACTIONS(1275), + [anon_sym_STAR_STAR] = ACTIONS(1277), + [anon_sym_PLUS_PLUS] = ACTIONS(1277), + [anon_sym_SLASH] = ACTIONS(1275), + [anon_sym_mod] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(1277), + [anon_sym_PLUS] = ACTIONS(1275), + [anon_sym_bit_DASHshl] = ACTIONS(1277), + [anon_sym_bit_DASHshr] = ACTIONS(1277), + [anon_sym_EQ_EQ] = ACTIONS(1277), + [anon_sym_BANG_EQ] = ACTIONS(1277), + [anon_sym_LT2] = ACTIONS(1275), + [anon_sym_LT_EQ] = ACTIONS(1277), + [anon_sym_GT_EQ] = ACTIONS(1277), + [anon_sym_not_DASHin] = ACTIONS(1277), + [anon_sym_starts_DASHwith] = ACTIONS(1277), + [anon_sym_ends_DASHwith] = ACTIONS(1277), + [anon_sym_EQ_TILDE] = ACTIONS(1277), + [anon_sym_BANG_TILDE] = ACTIONS(1277), + [anon_sym_bit_DASHand] = ACTIONS(1277), + [anon_sym_bit_DASHxor] = ACTIONS(1277), + [anon_sym_bit_DASHor] = ACTIONS(1277), + [anon_sym_and] = ACTIONS(1277), + [anon_sym_xor] = ACTIONS(1277), + [anon_sym_or] = ACTIONS(1277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), + [anon_sym_DOT_DOT_LT] = ACTIONS(1277), + [anon_sym_null] = ACTIONS(1277), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [aux_sym__val_number_decimal_token1] = ACTIONS(1275), + [aux_sym__val_number_decimal_token2] = ACTIONS(1277), + [anon_sym_DOT2] = ACTIONS(1275), + [aux_sym__val_number_decimal_token3] = ACTIONS(1277), + [aux_sym__val_number_token1] = ACTIONS(1277), + [aux_sym__val_number_token2] = ACTIONS(1277), + [aux_sym__val_number_token3] = ACTIONS(1277), + [aux_sym__val_number_token4] = ACTIONS(1277), + [aux_sym__val_number_token5] = ACTIONS(1277), + [aux_sym__val_number_token6] = ACTIONS(1277), + [anon_sym_0b] = ACTIONS(1275), + [anon_sym_0o] = ACTIONS(1275), + [anon_sym_0x] = ACTIONS(1275), + [sym_val_date] = ACTIONS(1277), + [anon_sym_DQUOTE] = ACTIONS(1277), + [sym__str_single_quotes] = ACTIONS(1277), + [sym__str_back_ticks] = ACTIONS(1277), + [anon_sym_err_GT] = ACTIONS(1277), + [anon_sym_out_GT] = ACTIONS(1277), + [anon_sym_e_GT] = ACTIONS(1277), + [anon_sym_o_GT] = ACTIONS(1277), + [anon_sym_err_PLUSout_GT] = ACTIONS(1277), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1277), + [anon_sym_o_PLUSe_GT] = ACTIONS(1277), + [anon_sym_e_PLUSo_GT] = ACTIONS(1277), + [aux_sym_unquoted_token1] = ACTIONS(1275), + [anon_sym_POUND] = ACTIONS(3), }, - [1932] = { - [sym__expression] = STATE(7375), - [sym_expr_unary] = STATE(5715), - [sym__expr_unary_minus] = STATE(5723), - [sym_expr_binary] = STATE(5715), - [sym__expr_binary_expression] = STATE(6788), - [sym_expr_parenthesized] = STATE(5176), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(5715), - [sym_val_nothing] = STATE(5705), - [sym_val_bool] = STATE(5705), - [sym_val_variable] = STATE(5170), - [sym__var] = STATE(4674), - [sym_val_number] = STATE(5705), - [sym__val_number_decimal] = STATE(4718), - [sym__val_number] = STATE(5875), - [sym_val_duration] = STATE(5705), - [sym_val_filesize] = STATE(5705), - [sym_val_binary] = STATE(5705), - [sym_val_string] = STATE(5705), - [sym__str_double_quotes] = STATE(5788), - [sym_val_interpolated] = STATE(5705), - [sym__inter_single_quotes] = STATE(5899), - [sym__inter_double_quotes] = STATE(5903), - [sym_val_list] = STATE(5705), - [sym_val_record] = STATE(5705), - [sym_val_table] = STATE(5705), - [sym_val_closure] = STATE(5705), - [sym__flag] = STATE(1952), - [sym_short_flag] = STATE(5044), - [sym_long_flag] = STATE(5044), - [sym_long_flag_equals_value] = STATE(5143), - [sym_comment] = STATE(1932), - [anon_sym_SEMI] = ACTIONS(5429), - [anon_sym_LF] = ACTIONS(5431), - [anon_sym_LBRACK] = ACTIONS(5371), - [anon_sym_LPAREN] = ACTIONS(5373), - [anon_sym_RPAREN] = ACTIONS(5429), - [anon_sym_PIPE] = ACTIONS(5429), - [anon_sym_DOLLAR] = ACTIONS(3317), - [anon_sym_DASH_DASH] = ACTIONS(5375), - [anon_sym_DASH] = ACTIONS(5377), - [anon_sym_LBRACE] = ACTIONS(5379), - [anon_sym_RBRACE] = ACTIONS(5429), - [anon_sym_DOT_DOT] = ACTIONS(5381), - [anon_sym_not] = ACTIONS(5383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5385), - [anon_sym_DOT_DOT_LT] = ACTIONS(5385), - [anon_sym_null] = ACTIONS(5387), - [anon_sym_true] = ACTIONS(5389), - [anon_sym_false] = ACTIONS(5389), - [aux_sym__val_number_decimal_token1] = ACTIONS(5391), - [aux_sym__val_number_decimal_token2] = ACTIONS(5391), - [anon_sym_DOT2] = ACTIONS(5393), - [aux_sym__val_number_decimal_token3] = ACTIONS(5395), - [aux_sym__val_number_token1] = ACTIONS(5397), - [aux_sym__val_number_token2] = ACTIONS(5397), - [aux_sym__val_number_token3] = ACTIONS(5397), - [aux_sym__val_number_token4] = ACTIONS(5397), - [aux_sym__val_number_token5] = ACTIONS(5397), - [aux_sym__val_number_token6] = ACTIONS(5397), - [anon_sym_0b] = ACTIONS(3345), - [anon_sym_0o] = ACTIONS(3347), - [anon_sym_0x] = ACTIONS(3347), - [sym_val_date] = ACTIONS(5399), - [anon_sym_DQUOTE] = ACTIONS(5401), - [sym__str_single_quotes] = ACTIONS(5403), - [sym__str_back_ticks] = ACTIONS(5403), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5405), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5407), - [anon_sym_POUND] = ACTIONS(113), + [2210] = { + [sym_comment] = STATE(2210), + [anon_sym_LBRACK] = ACTIONS(1022), + [anon_sym_COMMA] = ACTIONS(1022), + [anon_sym_RBRACK] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_GT] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_in] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1022), + [anon_sym_DOT_DOT] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_STAR_STAR] = ACTIONS(1022), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_SLASH] = ACTIONS(1020), + [anon_sym_mod] = ACTIONS(1022), + [anon_sym_SLASH_SLASH] = ACTIONS(1022), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_bit_DASHshl] = ACTIONS(1022), + [anon_sym_bit_DASHshr] = ACTIONS(1022), + [anon_sym_EQ_EQ] = ACTIONS(1022), + [anon_sym_BANG_EQ] = ACTIONS(1022), + [anon_sym_LT2] = ACTIONS(1020), + [anon_sym_LT_EQ] = ACTIONS(1022), + [anon_sym_GT_EQ] = ACTIONS(1022), + [anon_sym_not_DASHin] = ACTIONS(1022), + [anon_sym_starts_DASHwith] = ACTIONS(1022), + [anon_sym_ends_DASHwith] = ACTIONS(1022), + [anon_sym_EQ_TILDE] = ACTIONS(1022), + [anon_sym_BANG_TILDE] = ACTIONS(1022), + [anon_sym_bit_DASHand] = ACTIONS(1022), + [anon_sym_bit_DASHxor] = ACTIONS(1022), + [anon_sym_bit_DASHor] = ACTIONS(1022), + [anon_sym_and] = ACTIONS(1022), + [anon_sym_xor] = ACTIONS(1022), + [anon_sym_or] = ACTIONS(1022), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1022), + [anon_sym_DOT_DOT_LT] = ACTIONS(1022), + [anon_sym_null] = ACTIONS(1022), + [anon_sym_true] = ACTIONS(1022), + [anon_sym_false] = ACTIONS(1022), + [aux_sym__val_number_decimal_token1] = ACTIONS(1020), + [aux_sym__val_number_decimal_token2] = ACTIONS(1022), + [anon_sym_DOT2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1022), + [aux_sym__val_number_token1] = ACTIONS(1022), + [aux_sym__val_number_token2] = ACTIONS(1022), + [aux_sym__val_number_token3] = ACTIONS(1022), + [aux_sym__val_number_token4] = ACTIONS(1022), + [aux_sym__val_number_token5] = ACTIONS(1022), + [aux_sym__val_number_token6] = ACTIONS(1022), + [anon_sym_0b] = ACTIONS(1020), + [anon_sym_0o] = ACTIONS(1020), + [anon_sym_0x] = ACTIONS(1020), + [sym_val_date] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1022), + [sym__str_single_quotes] = ACTIONS(1022), + [sym__str_back_ticks] = ACTIONS(1022), + [anon_sym_err_GT] = ACTIONS(1022), + [anon_sym_out_GT] = ACTIONS(1022), + [anon_sym_e_GT] = ACTIONS(1022), + [anon_sym_o_GT] = ACTIONS(1022), + [anon_sym_err_PLUSout_GT] = ACTIONS(1022), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1022), + [anon_sym_o_PLUSe_GT] = ACTIONS(1022), + [anon_sym_e_PLUSo_GT] = ACTIONS(1022), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1020), + [anon_sym_POUND] = ACTIONS(3), }, - [1933] = { - [sym__expression] = STATE(7375), - [sym_expr_unary] = STATE(5715), - [sym__expr_unary_minus] = STATE(5723), - [sym_expr_binary] = STATE(5715), - [sym__expr_binary_expression] = STATE(6788), - [sym_expr_parenthesized] = STATE(5176), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(5715), - [sym_val_nothing] = STATE(5705), - [sym_val_bool] = STATE(5705), - [sym_val_variable] = STATE(5170), - [sym__var] = STATE(4674), - [sym_val_number] = STATE(5705), - [sym__val_number_decimal] = STATE(4718), - [sym__val_number] = STATE(5875), - [sym_val_duration] = STATE(5705), - [sym_val_filesize] = STATE(5705), - [sym_val_binary] = STATE(5705), - [sym_val_string] = STATE(5705), - [sym__str_double_quotes] = STATE(5788), - [sym_val_interpolated] = STATE(5705), - [sym__inter_single_quotes] = STATE(5899), - [sym__inter_double_quotes] = STATE(5903), - [sym_val_list] = STATE(5705), - [sym_val_record] = STATE(5705), - [sym_val_table] = STATE(5705), - [sym_val_closure] = STATE(5705), - [sym__flag] = STATE(1953), - [sym_short_flag] = STATE(5044), - [sym_long_flag] = STATE(5044), - [sym_long_flag_equals_value] = STATE(5143), - [sym_comment] = STATE(1933), - [anon_sym_SEMI] = ACTIONS(5429), - [anon_sym_LF] = ACTIONS(5431), - [anon_sym_LBRACK] = ACTIONS(5371), - [anon_sym_LPAREN] = ACTIONS(5373), - [anon_sym_RPAREN] = ACTIONS(5429), - [anon_sym_PIPE] = ACTIONS(5429), - [anon_sym_DOLLAR] = ACTIONS(3317), - [anon_sym_DASH_DASH] = ACTIONS(5375), - [anon_sym_DASH] = ACTIONS(5377), - [anon_sym_LBRACE] = ACTIONS(5379), - [anon_sym_RBRACE] = ACTIONS(5429), - [anon_sym_DOT_DOT] = ACTIONS(5381), - [anon_sym_not] = ACTIONS(5383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5385), - [anon_sym_DOT_DOT_LT] = ACTIONS(5385), - [anon_sym_null] = ACTIONS(5387), - [anon_sym_true] = ACTIONS(5389), - [anon_sym_false] = ACTIONS(5389), - [aux_sym__val_number_decimal_token1] = ACTIONS(5391), - [aux_sym__val_number_decimal_token2] = ACTIONS(5391), - [anon_sym_DOT2] = ACTIONS(5393), - [aux_sym__val_number_decimal_token3] = ACTIONS(5395), - [aux_sym__val_number_token1] = ACTIONS(5397), - [aux_sym__val_number_token2] = ACTIONS(5397), - [aux_sym__val_number_token3] = ACTIONS(5397), - [aux_sym__val_number_token4] = ACTIONS(5397), - [aux_sym__val_number_token5] = ACTIONS(5397), - [aux_sym__val_number_token6] = ACTIONS(5397), - [anon_sym_0b] = ACTIONS(3345), - [anon_sym_0o] = ACTIONS(3347), - [anon_sym_0x] = ACTIONS(3347), - [sym_val_date] = ACTIONS(5399), - [anon_sym_DQUOTE] = ACTIONS(5401), - [sym__str_single_quotes] = ACTIONS(5403), - [sym__str_back_ticks] = ACTIONS(5403), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5405), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5407), - [anon_sym_POUND] = ACTIONS(113), + [2211] = { + [sym_comment] = STATE(2211), + [anon_sym_LBRACK] = ACTIONS(1053), + [anon_sym_COMMA] = ACTIONS(1053), + [anon_sym_RBRACK] = ACTIONS(1053), + [anon_sym_LPAREN] = ACTIONS(1053), + [anon_sym_DOLLAR] = ACTIONS(1053), + [anon_sym_GT] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_in] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(1051), + [anon_sym_STAR] = ACTIONS(1051), + [anon_sym_STAR_STAR] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1053), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_mod] = ACTIONS(1053), + [anon_sym_SLASH_SLASH] = ACTIONS(1053), + [anon_sym_PLUS] = ACTIONS(1051), + [anon_sym_bit_DASHshl] = ACTIONS(1053), + [anon_sym_bit_DASHshr] = ACTIONS(1053), + [anon_sym_EQ_EQ] = ACTIONS(1053), + [anon_sym_BANG_EQ] = ACTIONS(1053), + [anon_sym_LT2] = ACTIONS(1051), + [anon_sym_LT_EQ] = ACTIONS(1053), + [anon_sym_GT_EQ] = ACTIONS(1053), + [anon_sym_not_DASHin] = ACTIONS(1053), + [anon_sym_starts_DASHwith] = ACTIONS(1053), + [anon_sym_ends_DASHwith] = ACTIONS(1053), + [anon_sym_EQ_TILDE] = ACTIONS(1053), + [anon_sym_BANG_TILDE] = ACTIONS(1053), + [anon_sym_bit_DASHand] = ACTIONS(1053), + [anon_sym_bit_DASHxor] = ACTIONS(1053), + [anon_sym_bit_DASHor] = ACTIONS(1053), + [anon_sym_and] = ACTIONS(1053), + [anon_sym_xor] = ACTIONS(1053), + [anon_sym_or] = ACTIONS(1053), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1053), + [anon_sym_DOT_DOT_LT] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1053), + [anon_sym_true] = ACTIONS(1053), + [anon_sym_false] = ACTIONS(1053), + [aux_sym__val_number_decimal_token1] = ACTIONS(1051), + [aux_sym__val_number_decimal_token2] = ACTIONS(1053), + [anon_sym_DOT2] = ACTIONS(1051), + [aux_sym__val_number_decimal_token3] = ACTIONS(1053), + [aux_sym__val_number_token1] = ACTIONS(1053), + [aux_sym__val_number_token2] = ACTIONS(1053), + [aux_sym__val_number_token3] = ACTIONS(1053), + [aux_sym__val_number_token4] = ACTIONS(1053), + [aux_sym__val_number_token5] = ACTIONS(1053), + [aux_sym__val_number_token6] = ACTIONS(1053), + [anon_sym_0b] = ACTIONS(1051), + [anon_sym_0o] = ACTIONS(1051), + [anon_sym_0x] = ACTIONS(1051), + [sym_val_date] = ACTIONS(1053), + [anon_sym_DQUOTE] = ACTIONS(1053), + [sym__str_single_quotes] = ACTIONS(1053), + [sym__str_back_ticks] = ACTIONS(1053), + [anon_sym_err_GT] = ACTIONS(1053), + [anon_sym_out_GT] = ACTIONS(1053), + [anon_sym_e_GT] = ACTIONS(1053), + [anon_sym_o_GT] = ACTIONS(1053), + [anon_sym_err_PLUSout_GT] = ACTIONS(1053), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1053), + [anon_sym_o_PLUSe_GT] = ACTIONS(1053), + [anon_sym_e_PLUSo_GT] = ACTIONS(1053), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1051), + [anon_sym_POUND] = ACTIONS(3), }, - [1934] = { - [sym__expression] = STATE(7375), - [sym_expr_unary] = STATE(5715), - [sym__expr_unary_minus] = STATE(5723), - [sym_expr_binary] = STATE(5715), - [sym__expr_binary_expression] = STATE(6788), - [sym_expr_parenthesized] = STATE(5176), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(5715), - [sym_val_nothing] = STATE(5705), - [sym_val_bool] = STATE(5705), - [sym_val_variable] = STATE(5170), - [sym__var] = STATE(4674), - [sym_val_number] = STATE(5705), - [sym__val_number_decimal] = STATE(4718), - [sym__val_number] = STATE(5875), - [sym_val_duration] = STATE(5705), - [sym_val_filesize] = STATE(5705), - [sym_val_binary] = STATE(5705), - [sym_val_string] = STATE(5705), - [sym__str_double_quotes] = STATE(5788), - [sym_val_interpolated] = STATE(5705), - [sym__inter_single_quotes] = STATE(5899), - [sym__inter_double_quotes] = STATE(5903), - [sym_val_list] = STATE(5705), - [sym_val_record] = STATE(5705), - [sym_val_table] = STATE(5705), - [sym_val_closure] = STATE(5705), - [sym__flag] = STATE(1954), - [sym_short_flag] = STATE(5044), - [sym_long_flag] = STATE(5044), - [sym_long_flag_equals_value] = STATE(5143), - [sym_comment] = STATE(1934), - [anon_sym_SEMI] = ACTIONS(5429), - [anon_sym_LF] = ACTIONS(5431), - [anon_sym_LBRACK] = ACTIONS(5371), - [anon_sym_LPAREN] = ACTIONS(5373), - [anon_sym_RPAREN] = ACTIONS(5429), - [anon_sym_PIPE] = ACTIONS(5429), - [anon_sym_DOLLAR] = ACTIONS(3317), - [anon_sym_DASH_DASH] = ACTIONS(5375), - [anon_sym_DASH] = ACTIONS(5377), - [anon_sym_LBRACE] = ACTIONS(5379), - [anon_sym_RBRACE] = ACTIONS(5429), - [anon_sym_DOT_DOT] = ACTIONS(5381), - [anon_sym_not] = ACTIONS(5383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5385), - [anon_sym_DOT_DOT_LT] = ACTIONS(5385), - [anon_sym_null] = ACTIONS(5387), - [anon_sym_true] = ACTIONS(5389), - [anon_sym_false] = ACTIONS(5389), - [aux_sym__val_number_decimal_token1] = ACTIONS(5391), - [aux_sym__val_number_decimal_token2] = ACTIONS(5391), - [anon_sym_DOT2] = ACTIONS(5393), - [aux_sym__val_number_decimal_token3] = ACTIONS(5395), - [aux_sym__val_number_token1] = ACTIONS(5397), - [aux_sym__val_number_token2] = ACTIONS(5397), - [aux_sym__val_number_token3] = ACTIONS(5397), - [aux_sym__val_number_token4] = ACTIONS(5397), - [aux_sym__val_number_token5] = ACTIONS(5397), - [aux_sym__val_number_token6] = ACTIONS(5397), - [anon_sym_0b] = ACTIONS(3345), - [anon_sym_0o] = ACTIONS(3347), - [anon_sym_0x] = ACTIONS(3347), - [sym_val_date] = ACTIONS(5399), - [anon_sym_DQUOTE] = ACTIONS(5401), - [sym__str_single_quotes] = ACTIONS(5403), - [sym__str_back_ticks] = ACTIONS(5403), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5405), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5407), + [2212] = { + [sym_comment] = STATE(2212), + [ts_builtin_sym_end] = ACTIONS(1267), + [anon_sym_export] = ACTIONS(1265), + [anon_sym_alias] = ACTIONS(1265), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_let_DASHenv] = ACTIONS(1265), + [anon_sym_mut] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_SEMI] = ACTIONS(1265), + [sym_cmd_identifier] = ACTIONS(1265), + [anon_sym_LF] = ACTIONS(1267), + [anon_sym_def] = ACTIONS(1265), + [anon_sym_export_DASHenv] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_module] = ACTIONS(1265), + [anon_sym_use] = ACTIONS(1265), + [anon_sym_LBRACK] = ACTIONS(1265), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_DOLLAR] = ACTIONS(1265), + [anon_sym_error] = ACTIONS(1265), + [anon_sym_DASH_DASH] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1265), + [anon_sym_break] = ACTIONS(1265), + [anon_sym_continue] = ACTIONS(1265), + [anon_sym_for] = ACTIONS(1265), + [anon_sym_loop] = ACTIONS(1265), + [anon_sym_while] = ACTIONS(1265), + [anon_sym_do] = ACTIONS(1265), + [anon_sym_if] = ACTIONS(1265), + [anon_sym_match] = ACTIONS(1265), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_DOT_DOT] = ACTIONS(1265), + [anon_sym_try] = ACTIONS(1265), + [anon_sym_return] = ACTIONS(1265), + [anon_sym_source] = ACTIONS(1265), + [anon_sym_source_DASHenv] = ACTIONS(1265), + [anon_sym_register] = ACTIONS(1265), + [anon_sym_hide] = ACTIONS(1265), + [anon_sym_hide_DASHenv] = ACTIONS(1265), + [anon_sym_overlay] = ACTIONS(1265), + [anon_sym_as] = ACTIONS(1265), + [anon_sym_where] = ACTIONS(1265), + [anon_sym_not] = ACTIONS(1265), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1265), + [anon_sym_DOT_DOT_LT] = ACTIONS(1265), + [anon_sym_null] = ACTIONS(1265), + [anon_sym_true] = ACTIONS(1265), + [anon_sym_false] = ACTIONS(1265), + [aux_sym__val_number_decimal_token1] = ACTIONS(1265), + [aux_sym__val_number_decimal_token2] = ACTIONS(1265), + [anon_sym_DOT2] = ACTIONS(1265), + [aux_sym__val_number_decimal_token3] = ACTIONS(1265), + [aux_sym__val_number_token1] = ACTIONS(1265), + [aux_sym__val_number_token2] = ACTIONS(1265), + [aux_sym__val_number_token3] = ACTIONS(1265), + [aux_sym__val_number_token4] = ACTIONS(1265), + [aux_sym__val_number_token5] = ACTIONS(1265), + [aux_sym__val_number_token6] = ACTIONS(1265), + [anon_sym_0b] = ACTIONS(1265), + [anon_sym_0o] = ACTIONS(1265), + [anon_sym_0x] = ACTIONS(1265), + [sym_val_date] = ACTIONS(1265), + [anon_sym_DQUOTE] = ACTIONS(1265), + [sym__str_single_quotes] = ACTIONS(1265), + [sym__str_back_ticks] = ACTIONS(1265), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1265), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(1265), [anon_sym_POUND] = ACTIONS(113), }, - [1935] = { - [sym_comment] = STATE(1935), - [ts_builtin_sym_end] = ACTIONS(1111), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_alias] = ACTIONS(1109), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_let_DASHenv] = ACTIONS(1109), - [anon_sym_mut] = ACTIONS(1109), - [anon_sym_const] = ACTIONS(1109), - [anon_sym_SEMI] = ACTIONS(1109), - [sym_cmd_identifier] = ACTIONS(1109), - [anon_sym_LF] = ACTIONS(1111), - [anon_sym_def] = ACTIONS(1109), - [anon_sym_export_DASHenv] = ACTIONS(1109), - [anon_sym_extern] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_use] = ACTIONS(1109), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_DOLLAR] = ACTIONS(1109), - [anon_sym_error] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_break] = ACTIONS(1109), - [anon_sym_continue] = ACTIONS(1109), - [anon_sym_for] = ACTIONS(1109), - [anon_sym_loop] = ACTIONS(1109), - [anon_sym_while] = ACTIONS(1109), - [anon_sym_do] = ACTIONS(1109), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_DOT_DOT] = ACTIONS(1109), - [anon_sym_try] = ACTIONS(1109), - [anon_sym_return] = ACTIONS(1109), - [anon_sym_source] = ACTIONS(1109), - [anon_sym_source_DASHenv] = ACTIONS(1109), - [anon_sym_register] = ACTIONS(1109), - [anon_sym_hide] = ACTIONS(1109), - [anon_sym_hide_DASHenv] = ACTIONS(1109), - [anon_sym_overlay] = ACTIONS(1109), - [anon_sym_as] = ACTIONS(1109), - [anon_sym_where] = ACTIONS(1109), - [anon_sym_not] = ACTIONS(1109), - [anon_sym_DOT] = ACTIONS(1109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1109), - [anon_sym_DOT_DOT_LT] = ACTIONS(1109), - [anon_sym_null] = ACTIONS(1109), - [anon_sym_true] = ACTIONS(1109), - [anon_sym_false] = ACTIONS(1109), - [aux_sym__val_number_decimal_token1] = ACTIONS(1109), - [aux_sym__val_number_decimal_token2] = ACTIONS(1109), - [anon_sym_DOT2] = ACTIONS(1109), - [aux_sym__val_number_decimal_token3] = ACTIONS(1109), - [aux_sym__val_number_token1] = ACTIONS(1109), - [aux_sym__val_number_token2] = ACTIONS(1109), - [aux_sym__val_number_token3] = ACTIONS(1109), - [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(1109), - [anon_sym_0o] = ACTIONS(1109), - [anon_sym_0x] = ACTIONS(1109), - [sym_val_date] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(1109), - [sym__str_single_quotes] = ACTIONS(1109), - [sym__str_back_ticks] = ACTIONS(1109), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1109), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1109), - [anon_sym_CARET] = ACTIONS(1109), - [anon_sym_POUND] = ACTIONS(113), + [2213] = { + [sym_comment] = STATE(2213), + [anon_sym_LBRACK] = ACTIONS(1053), + [anon_sym_COMMA] = ACTIONS(1053), + [anon_sym_LPAREN] = ACTIONS(1053), + [anon_sym_DOLLAR] = ACTIONS(1053), + [anon_sym_GT] = ACTIONS(1051), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_in] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(1053), + [anon_sym_RBRACE] = ACTIONS(1053), + [anon_sym__] = ACTIONS(1051), + [anon_sym_DOT_DOT] = ACTIONS(1051), + [anon_sym_STAR] = ACTIONS(1051), + [anon_sym_STAR_STAR] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1053), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_mod] = ACTIONS(1053), + [anon_sym_SLASH_SLASH] = ACTIONS(1053), + [anon_sym_PLUS] = ACTIONS(1051), + [anon_sym_bit_DASHshl] = ACTIONS(1053), + [anon_sym_bit_DASHshr] = ACTIONS(1053), + [anon_sym_EQ_EQ] = ACTIONS(1053), + [anon_sym_BANG_EQ] = ACTIONS(1053), + [anon_sym_LT2] = ACTIONS(1051), + [anon_sym_LT_EQ] = ACTIONS(1053), + [anon_sym_GT_EQ] = ACTIONS(1053), + [anon_sym_not_DASHin] = ACTIONS(1053), + [anon_sym_starts_DASHwith] = ACTIONS(1053), + [anon_sym_ends_DASHwith] = ACTIONS(1053), + [anon_sym_EQ_TILDE] = ACTIONS(1053), + [anon_sym_BANG_TILDE] = ACTIONS(1053), + [anon_sym_bit_DASHand] = ACTIONS(1053), + [anon_sym_bit_DASHxor] = ACTIONS(1053), + [anon_sym_bit_DASHor] = ACTIONS(1053), + [anon_sym_and] = ACTIONS(1053), + [anon_sym_xor] = ACTIONS(1053), + [anon_sym_or] = ACTIONS(1053), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1053), + [anon_sym_DOT_DOT_LT] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1053), + [anon_sym_true] = ACTIONS(1053), + [anon_sym_false] = ACTIONS(1053), + [aux_sym__val_number_decimal_token1] = ACTIONS(1051), + [aux_sym__val_number_decimal_token2] = ACTIONS(1053), + [anon_sym_DOT2] = ACTIONS(1051), + [aux_sym__val_number_decimal_token3] = ACTIONS(1053), + [aux_sym__val_number_token1] = ACTIONS(1053), + [aux_sym__val_number_token2] = ACTIONS(1053), + [aux_sym__val_number_token3] = ACTIONS(1053), + [aux_sym__val_number_token4] = ACTIONS(1053), + [aux_sym__val_number_token5] = ACTIONS(1053), + [aux_sym__val_number_token6] = ACTIONS(1053), + [anon_sym_0b] = ACTIONS(1051), + [anon_sym_0o] = ACTIONS(1051), + [anon_sym_0x] = ACTIONS(1051), + [sym_val_date] = ACTIONS(1053), + [anon_sym_DQUOTE] = ACTIONS(1053), + [sym__str_single_quotes] = ACTIONS(1053), + [sym__str_back_ticks] = ACTIONS(1053), + [anon_sym_err_GT] = ACTIONS(1053), + [anon_sym_out_GT] = ACTIONS(1053), + [anon_sym_e_GT] = ACTIONS(1053), + [anon_sym_o_GT] = ACTIONS(1053), + [anon_sym_err_PLUSout_GT] = ACTIONS(1053), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1053), + [anon_sym_o_PLUSe_GT] = ACTIONS(1053), + [anon_sym_e_PLUSo_GT] = ACTIONS(1053), + [aux_sym_unquoted_token1] = ACTIONS(1051), + [anon_sym_POUND] = ACTIONS(3), }, - [1936] = { - [sym_comment] = STATE(1936), - [ts_builtin_sym_end] = ACTIONS(1290), - [anon_sym_export] = ACTIONS(1243), - [anon_sym_alias] = ACTIONS(1243), - [anon_sym_let] = ACTIONS(1243), - [anon_sym_let_DASHenv] = ACTIONS(1243), - [anon_sym_mut] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1243), - [sym_cmd_identifier] = ACTIONS(1243), - [anon_sym_LF] = ACTIONS(1243), - [anon_sym_def] = ACTIONS(1243), - [anon_sym_export_DASHenv] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1243), - [anon_sym_module] = ACTIONS(1243), - [anon_sym_use] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_error] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_loop] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_match] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_try] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_source] = ACTIONS(1243), - [anon_sym_source_DASHenv] = ACTIONS(1243), - [anon_sym_register] = ACTIONS(1243), - [anon_sym_hide] = ACTIONS(1243), - [anon_sym_hide_DASHenv] = ACTIONS(1243), - [anon_sym_overlay] = ACTIONS(1243), - [anon_sym_as] = ACTIONS(1243), - [anon_sym_where] = ACTIONS(1243), - [anon_sym_not] = ACTIONS(1243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1243), - [anon_sym_DOT_DOT_LT] = ACTIONS(1243), - [anon_sym_null] = ACTIONS(1243), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_decimal_token2] = ACTIONS(1243), - [anon_sym_DOT2] = ACTIONS(1243), - [aux_sym__val_number_decimal_token3] = ACTIONS(1243), - [aux_sym__val_number_token1] = ACTIONS(1243), - [aux_sym__val_number_token2] = ACTIONS(1243), - [aux_sym__val_number_token3] = ACTIONS(1243), - [aux_sym__val_number_token4] = ACTIONS(1243), - [aux_sym__val_number_token5] = ACTIONS(1243), - [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_0b] = ACTIONS(1243), - [anon_sym_0o] = ACTIONS(1243), - [anon_sym_0x] = ACTIONS(1243), - [sym_val_date] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym__str_single_quotes] = ACTIONS(1243), - [sym__str_back_ticks] = ACTIONS(1243), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1243), - [aux_sym__list_item_starts_with_sign_token1] = ACTIONS(5433), - [anon_sym_CARET] = ACTIONS(1243), + [2214] = { + [sym_cell_path] = STATE(2560), + [sym_path] = STATE(2095), + [sym_comment] = STATE(2214), + [anon_sym_SEMI] = ACTIONS(1085), + [anon_sym_LF] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LPAREN] = ACTIONS(1085), + [anon_sym_RPAREN] = ACTIONS(1085), + [anon_sym_PIPE] = ACTIONS(1085), + [anon_sym_DOLLAR] = ACTIONS(1085), + [anon_sym_GT] = ACTIONS(1085), + [anon_sym_DASH_DASH] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_in] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_RBRACE] = ACTIONS(1085), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(1085), + [anon_sym_STAR_STAR] = ACTIONS(1085), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_SLASH] = ACTIONS(1085), + [anon_sym_mod] = ACTIONS(1085), + [anon_sym_SLASH_SLASH] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_bit_DASHshl] = ACTIONS(1085), + [anon_sym_bit_DASHshr] = ACTIONS(1085), + [anon_sym_EQ_EQ] = ACTIONS(1085), + [anon_sym_BANG_EQ] = ACTIONS(1085), + [anon_sym_LT2] = ACTIONS(1085), + [anon_sym_LT_EQ] = ACTIONS(1085), + [anon_sym_GT_EQ] = ACTIONS(1085), + [anon_sym_not_DASHin] = ACTIONS(1085), + [anon_sym_starts_DASHwith] = ACTIONS(1085), + [anon_sym_ends_DASHwith] = ACTIONS(1085), + [anon_sym_EQ_TILDE] = ACTIONS(1085), + [anon_sym_BANG_TILDE] = ACTIONS(1085), + [anon_sym_bit_DASHand] = ACTIONS(1085), + [anon_sym_bit_DASHxor] = ACTIONS(1085), + [anon_sym_bit_DASHor] = ACTIONS(1085), + [anon_sym_and] = ACTIONS(1085), + [anon_sym_xor] = ACTIONS(1085), + [anon_sym_or] = ACTIONS(1085), + [anon_sym_not] = ACTIONS(1085), + [anon_sym_DOT] = ACTIONS(5731), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1085), + [anon_sym_DOT_DOT_LT] = ACTIONS(1085), + [anon_sym_null] = ACTIONS(1085), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [aux_sym__val_number_decimal_token1] = ACTIONS(1085), + [aux_sym__val_number_decimal_token2] = ACTIONS(1085), + [anon_sym_DOT2] = ACTIONS(1085), + [aux_sym__val_number_decimal_token3] = ACTIONS(1085), + [aux_sym__val_number_token1] = ACTIONS(1085), + [aux_sym__val_number_token2] = ACTIONS(1085), + [aux_sym__val_number_token3] = ACTIONS(1085), + [aux_sym__val_number_token4] = ACTIONS(1085), + [aux_sym__val_number_token5] = ACTIONS(1085), + [aux_sym__val_number_token6] = ACTIONS(1085), + [anon_sym_0b] = ACTIONS(1085), + [anon_sym_0o] = ACTIONS(1085), + [anon_sym_0x] = ACTIONS(1085), + [sym_val_date] = ACTIONS(1085), + [anon_sym_DQUOTE] = ACTIONS(1085), + [sym__str_single_quotes] = ACTIONS(1085), + [sym__str_back_ticks] = ACTIONS(1085), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1085), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1085), [anon_sym_POUND] = ACTIONS(113), }, - [1937] = { - [sym_comment] = STATE(1937), - [ts_builtin_sym_end] = ACTIONS(1115), - [anon_sym_export] = ACTIONS(1113), - [anon_sym_alias] = ACTIONS(1113), - [anon_sym_let] = ACTIONS(1113), - [anon_sym_let_DASHenv] = ACTIONS(1113), - [anon_sym_mut] = ACTIONS(1113), - [anon_sym_const] = ACTIONS(1113), - [anon_sym_SEMI] = ACTIONS(1113), - [sym_cmd_identifier] = ACTIONS(1113), - [anon_sym_LF] = ACTIONS(1115), - [anon_sym_def] = ACTIONS(1113), - [anon_sym_export_DASHenv] = ACTIONS(1113), - [anon_sym_extern] = ACTIONS(1113), - [anon_sym_module] = ACTIONS(1113), - [anon_sym_use] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1113), - [anon_sym_error] = ACTIONS(1113), - [anon_sym_DASH_DASH] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_loop] = ACTIONS(1113), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1113), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_source] = ACTIONS(1113), - [anon_sym_source_DASHenv] = ACTIONS(1113), - [anon_sym_register] = ACTIONS(1113), - [anon_sym_hide] = ACTIONS(1113), - [anon_sym_hide_DASHenv] = ACTIONS(1113), - [anon_sym_overlay] = ACTIONS(1113), - [anon_sym_as] = ACTIONS(1113), - [anon_sym_where] = ACTIONS(1113), - [anon_sym_not] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1113), - [anon_sym_DOT_DOT_LT] = ACTIONS(1113), - [anon_sym_null] = ACTIONS(1113), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1113), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_decimal_token2] = ACTIONS(1113), - [anon_sym_DOT2] = ACTIONS(1113), - [aux_sym__val_number_decimal_token3] = ACTIONS(1113), - [aux_sym__val_number_token1] = ACTIONS(1113), - [aux_sym__val_number_token2] = ACTIONS(1113), - [aux_sym__val_number_token3] = ACTIONS(1113), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1113), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_0b] = ACTIONS(1113), - [anon_sym_0o] = ACTIONS(1113), - [anon_sym_0x] = ACTIONS(1113), - [sym_val_date] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym__str_single_quotes] = ACTIONS(1113), - [sym__str_back_ticks] = ACTIONS(1113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), - [anon_sym_CARET] = ACTIONS(1113), - [anon_sym_POUND] = ACTIONS(113), + [2215] = { + [sym_comment] = STATE(2215), + [anon_sym_LBRACK] = ACTIONS(1281), + [anon_sym_COMMA] = ACTIONS(1281), + [anon_sym_LPAREN] = ACTIONS(1281), + [anon_sym_DOLLAR] = ACTIONS(1281), + [anon_sym_GT] = ACTIONS(1279), + [anon_sym_DASH] = ACTIONS(1279), + [anon_sym_in] = ACTIONS(1279), + [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_RBRACE] = ACTIONS(1281), + [anon_sym__] = ACTIONS(1279), + [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1279), + [anon_sym_STAR_STAR] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_mod] = ACTIONS(1281), + [anon_sym_SLASH_SLASH] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1279), + [anon_sym_bit_DASHshl] = ACTIONS(1281), + [anon_sym_bit_DASHshr] = ACTIONS(1281), + [anon_sym_EQ_EQ] = ACTIONS(1281), + [anon_sym_BANG_EQ] = ACTIONS(1281), + [anon_sym_LT2] = ACTIONS(1279), + [anon_sym_LT_EQ] = ACTIONS(1281), + [anon_sym_GT_EQ] = ACTIONS(1281), + [anon_sym_not_DASHin] = ACTIONS(1281), + [anon_sym_starts_DASHwith] = ACTIONS(1281), + [anon_sym_ends_DASHwith] = ACTIONS(1281), + [anon_sym_EQ_TILDE] = ACTIONS(1281), + [anon_sym_BANG_TILDE] = ACTIONS(1281), + [anon_sym_bit_DASHand] = ACTIONS(1281), + [anon_sym_bit_DASHxor] = ACTIONS(1281), + [anon_sym_bit_DASHor] = ACTIONS(1281), + [anon_sym_and] = ACTIONS(1281), + [anon_sym_xor] = ACTIONS(1281), + [anon_sym_or] = ACTIONS(1281), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1281), + [anon_sym_DOT_DOT_LT] = ACTIONS(1281), + [anon_sym_null] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(1281), + [anon_sym_false] = ACTIONS(1281), + [aux_sym__val_number_decimal_token1] = ACTIONS(1279), + [aux_sym__val_number_decimal_token2] = ACTIONS(1281), + [anon_sym_DOT2] = ACTIONS(1279), + [aux_sym__val_number_decimal_token3] = ACTIONS(1281), + [aux_sym__val_number_token1] = ACTIONS(1281), + [aux_sym__val_number_token2] = ACTIONS(1281), + [aux_sym__val_number_token3] = ACTIONS(1281), + [aux_sym__val_number_token4] = ACTIONS(1281), + [aux_sym__val_number_token5] = ACTIONS(1281), + [aux_sym__val_number_token6] = ACTIONS(1281), + [anon_sym_0b] = ACTIONS(1279), + [anon_sym_0o] = ACTIONS(1279), + [anon_sym_0x] = ACTIONS(1279), + [sym_val_date] = ACTIONS(1281), + [anon_sym_DQUOTE] = ACTIONS(1281), + [sym__str_single_quotes] = ACTIONS(1281), + [sym__str_back_ticks] = ACTIONS(1281), + [anon_sym_err_GT] = ACTIONS(1281), + [anon_sym_out_GT] = ACTIONS(1281), + [anon_sym_e_GT] = ACTIONS(1281), + [anon_sym_o_GT] = ACTIONS(1281), + [anon_sym_err_PLUSout_GT] = ACTIONS(1281), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1281), + [anon_sym_o_PLUSe_GT] = ACTIONS(1281), + [anon_sym_e_PLUSo_GT] = ACTIONS(1281), + [aux_sym_unquoted_token1] = ACTIONS(1279), + [anon_sym_POUND] = ACTIONS(3), }, - [1938] = { - [sym_comment] = STATE(1938), - [ts_builtin_sym_end] = ACTIONS(1119), - [anon_sym_export] = ACTIONS(1117), - [anon_sym_alias] = ACTIONS(1117), - [anon_sym_let] = ACTIONS(1117), - [anon_sym_let_DASHenv] = ACTIONS(1117), - [anon_sym_mut] = ACTIONS(1117), - [anon_sym_const] = ACTIONS(1117), - [anon_sym_SEMI] = ACTIONS(1117), - [sym_cmd_identifier] = ACTIONS(1117), - [anon_sym_LF] = ACTIONS(1119), - [anon_sym_def] = ACTIONS(1117), - [anon_sym_export_DASHenv] = ACTIONS(1117), - [anon_sym_extern] = ACTIONS(1117), - [anon_sym_module] = ACTIONS(1117), - [anon_sym_use] = ACTIONS(1117), - [anon_sym_LBRACK] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1117), - [anon_sym_DOLLAR] = ACTIONS(1117), - [anon_sym_error] = ACTIONS(1117), - [anon_sym_DASH_DASH] = ACTIONS(1117), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_break] = ACTIONS(1117), - [anon_sym_continue] = ACTIONS(1117), - [anon_sym_for] = ACTIONS(1117), - [anon_sym_loop] = ACTIONS(1117), - [anon_sym_while] = ACTIONS(1117), - [anon_sym_do] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1117), - [anon_sym_LBRACE] = ACTIONS(1117), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_try] = ACTIONS(1117), - [anon_sym_return] = ACTIONS(1117), - [anon_sym_source] = ACTIONS(1117), - [anon_sym_source_DASHenv] = ACTIONS(1117), - [anon_sym_register] = ACTIONS(1117), - [anon_sym_hide] = ACTIONS(1117), - [anon_sym_hide_DASHenv] = ACTIONS(1117), - [anon_sym_overlay] = ACTIONS(1117), - [anon_sym_as] = ACTIONS(1117), - [anon_sym_where] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1117), - [anon_sym_DOT] = ACTIONS(1117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1117), - [anon_sym_DOT_DOT_LT] = ACTIONS(1117), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_true] = ACTIONS(1117), - [anon_sym_false] = ACTIONS(1117), - [aux_sym__val_number_decimal_token1] = ACTIONS(1117), - [aux_sym__val_number_decimal_token2] = ACTIONS(1117), - [anon_sym_DOT2] = ACTIONS(1117), - [aux_sym__val_number_decimal_token3] = ACTIONS(1117), - [aux_sym__val_number_token1] = ACTIONS(1117), - [aux_sym__val_number_token2] = ACTIONS(1117), - [aux_sym__val_number_token3] = ACTIONS(1117), - [aux_sym__val_number_token4] = ACTIONS(1117), - [aux_sym__val_number_token5] = ACTIONS(1117), - [aux_sym__val_number_token6] = ACTIONS(1117), - [anon_sym_0b] = ACTIONS(1117), - [anon_sym_0o] = ACTIONS(1117), - [anon_sym_0x] = ACTIONS(1117), - [sym_val_date] = ACTIONS(1117), - [anon_sym_DQUOTE] = ACTIONS(1117), - [sym__str_single_quotes] = ACTIONS(1117), - [sym__str_back_ticks] = ACTIONS(1117), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1117), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1117), - [anon_sym_CARET] = ACTIONS(1117), - [anon_sym_POUND] = ACTIONS(113), + [2216] = { + [sym_comment] = STATE(2216), + [anon_sym_LBRACK] = ACTIONS(1167), + [anon_sym_COMMA] = ACTIONS(1167), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_DOLLAR] = ACTIONS(1167), + [anon_sym_GT] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_in] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_RBRACE] = ACTIONS(1167), + [anon_sym__] = ACTIONS(1165), + [anon_sym_DOT_DOT] = ACTIONS(1165), + [anon_sym_STAR] = ACTIONS(1165), + [anon_sym_STAR_STAR] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_SLASH] = ACTIONS(1165), + [anon_sym_mod] = ACTIONS(1167), + [anon_sym_SLASH_SLASH] = ACTIONS(1167), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_bit_DASHshl] = ACTIONS(1167), + [anon_sym_bit_DASHshr] = ACTIONS(1167), + [anon_sym_EQ_EQ] = ACTIONS(1167), + [anon_sym_BANG_EQ] = ACTIONS(1167), + [anon_sym_LT2] = ACTIONS(1165), + [anon_sym_LT_EQ] = ACTIONS(1167), + [anon_sym_GT_EQ] = ACTIONS(1167), + [anon_sym_not_DASHin] = ACTIONS(1167), + [anon_sym_starts_DASHwith] = ACTIONS(1167), + [anon_sym_ends_DASHwith] = ACTIONS(1167), + [anon_sym_EQ_TILDE] = ACTIONS(1167), + [anon_sym_BANG_TILDE] = ACTIONS(1167), + [anon_sym_bit_DASHand] = ACTIONS(1167), + [anon_sym_bit_DASHxor] = ACTIONS(1167), + [anon_sym_bit_DASHor] = ACTIONS(1167), + [anon_sym_and] = ACTIONS(1167), + [anon_sym_xor] = ACTIONS(1167), + [anon_sym_or] = ACTIONS(1167), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1167), + [anon_sym_DOT_DOT_LT] = ACTIONS(1167), + [anon_sym_null] = ACTIONS(1167), + [anon_sym_true] = ACTIONS(1167), + [anon_sym_false] = ACTIONS(1167), + [aux_sym__val_number_decimal_token1] = ACTIONS(1165), + [aux_sym__val_number_decimal_token2] = ACTIONS(1167), + [anon_sym_DOT2] = ACTIONS(1165), + [aux_sym__val_number_decimal_token3] = ACTIONS(1167), + [aux_sym__val_number_token1] = ACTIONS(1167), + [aux_sym__val_number_token2] = ACTIONS(1167), + [aux_sym__val_number_token3] = ACTIONS(1167), + [aux_sym__val_number_token4] = ACTIONS(1167), + [aux_sym__val_number_token5] = ACTIONS(1167), + [aux_sym__val_number_token6] = ACTIONS(1167), + [anon_sym_0b] = ACTIONS(1165), + [anon_sym_0o] = ACTIONS(1165), + [anon_sym_0x] = ACTIONS(1165), + [sym_val_date] = ACTIONS(1167), + [anon_sym_DQUOTE] = ACTIONS(1167), + [sym__str_single_quotes] = ACTIONS(1167), + [sym__str_back_ticks] = ACTIONS(1167), + [anon_sym_err_GT] = ACTIONS(1167), + [anon_sym_out_GT] = ACTIONS(1167), + [anon_sym_e_GT] = ACTIONS(1167), + [anon_sym_o_GT] = ACTIONS(1167), + [anon_sym_err_PLUSout_GT] = ACTIONS(1167), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1167), + [anon_sym_o_PLUSe_GT] = ACTIONS(1167), + [anon_sym_e_PLUSo_GT] = ACTIONS(1167), + [aux_sym_unquoted_token1] = ACTIONS(1165), + [anon_sym_POUND] = ACTIONS(3), }, - [1939] = { - [sym_comment] = STATE(1939), - [anon_sym_SEMI] = ACTIONS(1109), - [anon_sym_LF] = ACTIONS(1111), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_RPAREN] = ACTIONS(1109), - [anon_sym_PIPE] = ACTIONS(1109), - [anon_sym_DOLLAR] = ACTIONS(1109), - [anon_sym_GT] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_in] = ACTIONS(1109), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_RBRACE] = ACTIONS(1109), - [anon_sym_DOT_DOT] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_STAR_STAR] = ACTIONS(1109), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_SLASH] = ACTIONS(1109), - [anon_sym_mod] = ACTIONS(1109), - [anon_sym_SLASH_SLASH] = ACTIONS(1109), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_bit_DASHshl] = ACTIONS(1109), - [anon_sym_bit_DASHshr] = ACTIONS(1109), - [anon_sym_EQ_EQ] = ACTIONS(1109), - [anon_sym_BANG_EQ] = ACTIONS(1109), - [anon_sym_LT2] = ACTIONS(1109), - [anon_sym_LT_EQ] = ACTIONS(1109), - [anon_sym_GT_EQ] = ACTIONS(1109), - [anon_sym_not_DASHin] = ACTIONS(1109), - [anon_sym_starts_DASHwith] = ACTIONS(1109), - [anon_sym_ends_DASHwith] = ACTIONS(1109), - [anon_sym_EQ_TILDE] = ACTIONS(1109), - [anon_sym_BANG_TILDE] = ACTIONS(1109), - [anon_sym_bit_DASHand] = ACTIONS(1109), - [anon_sym_bit_DASHxor] = ACTIONS(1109), - [anon_sym_bit_DASHor] = ACTIONS(1109), - [anon_sym_and] = ACTIONS(1109), - [anon_sym_xor] = ACTIONS(1109), - [anon_sym_or] = ACTIONS(1109), - [anon_sym_not] = ACTIONS(1109), - [anon_sym_DOT_DOT2] = ACTIONS(1109), - [anon_sym_DOT] = ACTIONS(1109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1109), - [anon_sym_DOT_DOT_LT] = ACTIONS(1109), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1111), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1111), - [anon_sym_null] = ACTIONS(1109), - [anon_sym_true] = ACTIONS(1109), - [anon_sym_false] = ACTIONS(1109), - [aux_sym__val_number_decimal_token1] = ACTIONS(1109), - [aux_sym__val_number_decimal_token2] = ACTIONS(1109), - [anon_sym_DOT2] = ACTIONS(1109), - [aux_sym__val_number_decimal_token3] = ACTIONS(1109), - [aux_sym__val_number_token1] = ACTIONS(1109), - [aux_sym__val_number_token2] = ACTIONS(1109), - [aux_sym__val_number_token3] = ACTIONS(1109), - [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(1109), - [anon_sym_0o] = ACTIONS(1109), - [anon_sym_0x] = ACTIONS(1109), - [sym_val_date] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(1109), - [sym__str_single_quotes] = ACTIONS(1109), - [sym__str_back_ticks] = ACTIONS(1109), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1109), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1109), - [anon_sym_POUND] = ACTIONS(113), + [2217] = { + [sym_comment] = STATE(2217), + [anon_sym_LBRACK] = ACTIONS(1281), + [anon_sym_COMMA] = ACTIONS(1281), + [anon_sym_RBRACK] = ACTIONS(1281), + [anon_sym_LPAREN] = ACTIONS(1281), + [anon_sym_DOLLAR] = ACTIONS(1281), + [anon_sym_GT] = ACTIONS(1279), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_DASH] = ACTIONS(1279), + [anon_sym_in] = ACTIONS(1279), + [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1279), + [anon_sym_STAR_STAR] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_mod] = ACTIONS(1281), + [anon_sym_SLASH_SLASH] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1279), + [anon_sym_bit_DASHshl] = ACTIONS(1281), + [anon_sym_bit_DASHshr] = ACTIONS(1281), + [anon_sym_EQ_EQ] = ACTIONS(1281), + [anon_sym_BANG_EQ] = ACTIONS(1281), + [anon_sym_LT2] = ACTIONS(1279), + [anon_sym_LT_EQ] = ACTIONS(1281), + [anon_sym_GT_EQ] = ACTIONS(1281), + [anon_sym_not_DASHin] = ACTIONS(1281), + [anon_sym_starts_DASHwith] = ACTIONS(1281), + [anon_sym_ends_DASHwith] = ACTIONS(1281), + [anon_sym_EQ_TILDE] = ACTIONS(1281), + [anon_sym_BANG_TILDE] = ACTIONS(1281), + [anon_sym_bit_DASHand] = ACTIONS(1281), + [anon_sym_bit_DASHxor] = ACTIONS(1281), + [anon_sym_bit_DASHor] = ACTIONS(1281), + [anon_sym_and] = ACTIONS(1281), + [anon_sym_xor] = ACTIONS(1281), + [anon_sym_or] = ACTIONS(1281), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1281), + [anon_sym_DOT_DOT_LT] = ACTIONS(1281), + [anon_sym_null] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(1281), + [anon_sym_false] = ACTIONS(1281), + [aux_sym__val_number_decimal_token1] = ACTIONS(1279), + [aux_sym__val_number_decimal_token2] = ACTIONS(1281), + [anon_sym_DOT2] = ACTIONS(1279), + [aux_sym__val_number_decimal_token3] = ACTIONS(1281), + [aux_sym__val_number_token1] = ACTIONS(1281), + [aux_sym__val_number_token2] = ACTIONS(1281), + [aux_sym__val_number_token3] = ACTIONS(1281), + [aux_sym__val_number_token4] = ACTIONS(1281), + [aux_sym__val_number_token5] = ACTIONS(1281), + [aux_sym__val_number_token6] = ACTIONS(1281), + [anon_sym_0b] = ACTIONS(1279), + [anon_sym_0o] = ACTIONS(1279), + [anon_sym_0x] = ACTIONS(1279), + [sym_val_date] = ACTIONS(1281), + [anon_sym_DQUOTE] = ACTIONS(1281), + [sym__str_single_quotes] = ACTIONS(1281), + [sym__str_back_ticks] = ACTIONS(1281), + [anon_sym_err_GT] = ACTIONS(1281), + [anon_sym_out_GT] = ACTIONS(1281), + [anon_sym_e_GT] = ACTIONS(1281), + [anon_sym_o_GT] = ACTIONS(1281), + [anon_sym_err_PLUSout_GT] = ACTIONS(1281), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1281), + [anon_sym_o_PLUSe_GT] = ACTIONS(1281), + [anon_sym_e_PLUSo_GT] = ACTIONS(1281), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1279), + [anon_sym_POUND] = ACTIONS(3), }, - [1940] = { - [sym_comment] = STATE(1940), - [anon_sym_SEMI] = ACTIONS(1113), - [anon_sym_LF] = ACTIONS(1115), - [anon_sym_LBRACK] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_RPAREN] = ACTIONS(1113), - [anon_sym_PIPE] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1113), - [anon_sym_GT] = ACTIONS(1113), - [anon_sym_DASH_DASH] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_in] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_RBRACE] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_STAR_STAR] = ACTIONS(1113), - [anon_sym_PLUS_PLUS] = ACTIONS(1113), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_mod] = ACTIONS(1113), - [anon_sym_SLASH_SLASH] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_bit_DASHshl] = ACTIONS(1113), - [anon_sym_bit_DASHshr] = ACTIONS(1113), - [anon_sym_EQ_EQ] = ACTIONS(1113), - [anon_sym_BANG_EQ] = ACTIONS(1113), - [anon_sym_LT2] = ACTIONS(1113), - [anon_sym_LT_EQ] = ACTIONS(1113), - [anon_sym_GT_EQ] = ACTIONS(1113), - [anon_sym_not_DASHin] = ACTIONS(1113), - [anon_sym_starts_DASHwith] = ACTIONS(1113), - [anon_sym_ends_DASHwith] = ACTIONS(1113), - [anon_sym_EQ_TILDE] = ACTIONS(1113), - [anon_sym_BANG_TILDE] = ACTIONS(1113), - [anon_sym_bit_DASHand] = ACTIONS(1113), - [anon_sym_bit_DASHxor] = ACTIONS(1113), - [anon_sym_bit_DASHor] = ACTIONS(1113), - [anon_sym_and] = ACTIONS(1113), - [anon_sym_xor] = ACTIONS(1113), - [anon_sym_or] = ACTIONS(1113), - [anon_sym_not] = ACTIONS(1113), - [anon_sym_DOT_DOT2] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1113), - [anon_sym_DOT_DOT_LT] = ACTIONS(1113), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1115), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1113), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1113), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_decimal_token2] = ACTIONS(1113), - [anon_sym_DOT2] = ACTIONS(1113), - [aux_sym__val_number_decimal_token3] = ACTIONS(1113), - [aux_sym__val_number_token1] = ACTIONS(1113), - [aux_sym__val_number_token2] = ACTIONS(1113), - [aux_sym__val_number_token3] = ACTIONS(1113), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1113), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_0b] = ACTIONS(1113), - [anon_sym_0o] = ACTIONS(1113), - [anon_sym_0x] = ACTIONS(1113), - [sym_val_date] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym__str_single_quotes] = ACTIONS(1113), - [sym__str_back_ticks] = ACTIONS(1113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), + [2218] = { + [sym_comment] = STATE(2218), + [anon_sym_LBRACK] = ACTIONS(1167), + [anon_sym_COMMA] = ACTIONS(1167), + [anon_sym_RBRACK] = ACTIONS(1167), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_DOLLAR] = ACTIONS(1167), + [anon_sym_GT] = ACTIONS(1165), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_in] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_DOT_DOT] = ACTIONS(1165), + [anon_sym_STAR] = ACTIONS(1165), + [anon_sym_STAR_STAR] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_SLASH] = ACTIONS(1165), + [anon_sym_mod] = ACTIONS(1167), + [anon_sym_SLASH_SLASH] = ACTIONS(1167), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_bit_DASHshl] = ACTIONS(1167), + [anon_sym_bit_DASHshr] = ACTIONS(1167), + [anon_sym_EQ_EQ] = ACTIONS(1167), + [anon_sym_BANG_EQ] = ACTIONS(1167), + [anon_sym_LT2] = ACTIONS(1165), + [anon_sym_LT_EQ] = ACTIONS(1167), + [anon_sym_GT_EQ] = ACTIONS(1167), + [anon_sym_not_DASHin] = ACTIONS(1167), + [anon_sym_starts_DASHwith] = ACTIONS(1167), + [anon_sym_ends_DASHwith] = ACTIONS(1167), + [anon_sym_EQ_TILDE] = ACTIONS(1167), + [anon_sym_BANG_TILDE] = ACTIONS(1167), + [anon_sym_bit_DASHand] = ACTIONS(1167), + [anon_sym_bit_DASHxor] = ACTIONS(1167), + [anon_sym_bit_DASHor] = ACTIONS(1167), + [anon_sym_and] = ACTIONS(1167), + [anon_sym_xor] = ACTIONS(1167), + [anon_sym_or] = ACTIONS(1167), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1167), + [anon_sym_DOT_DOT_LT] = ACTIONS(1167), + [anon_sym_null] = ACTIONS(1167), + [anon_sym_true] = ACTIONS(1167), + [anon_sym_false] = ACTIONS(1167), + [aux_sym__val_number_decimal_token1] = ACTIONS(1165), + [aux_sym__val_number_decimal_token2] = ACTIONS(1167), + [anon_sym_DOT2] = ACTIONS(1165), + [aux_sym__val_number_decimal_token3] = ACTIONS(1167), + [aux_sym__val_number_token1] = ACTIONS(1167), + [aux_sym__val_number_token2] = ACTIONS(1167), + [aux_sym__val_number_token3] = ACTIONS(1167), + [aux_sym__val_number_token4] = ACTIONS(1167), + [aux_sym__val_number_token5] = ACTIONS(1167), + [aux_sym__val_number_token6] = ACTIONS(1167), + [anon_sym_0b] = ACTIONS(1165), + [anon_sym_0o] = ACTIONS(1165), + [anon_sym_0x] = ACTIONS(1165), + [sym_val_date] = ACTIONS(1167), + [anon_sym_DQUOTE] = ACTIONS(1167), + [sym__str_single_quotes] = ACTIONS(1167), + [sym__str_back_ticks] = ACTIONS(1167), + [anon_sym_err_GT] = ACTIONS(1167), + [anon_sym_out_GT] = ACTIONS(1167), + [anon_sym_e_GT] = ACTIONS(1167), + [anon_sym_o_GT] = ACTIONS(1167), + [anon_sym_err_PLUSout_GT] = ACTIONS(1167), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1167), + [anon_sym_o_PLUSe_GT] = ACTIONS(1167), + [anon_sym_e_PLUSo_GT] = ACTIONS(1167), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1165), + [anon_sym_POUND] = ACTIONS(3), + }, + [2219] = { + [sym_comment] = STATE(2219), + [ts_builtin_sym_end] = ACTIONS(1267), + [anon_sym_export] = ACTIONS(1265), + [anon_sym_alias] = ACTIONS(1265), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_let_DASHenv] = ACTIONS(1265), + [anon_sym_mut] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_SEMI] = ACTIONS(1265), + [sym_cmd_identifier] = ACTIONS(1265), + [anon_sym_LF] = ACTIONS(1267), + [anon_sym_def] = ACTIONS(1265), + [anon_sym_export_DASHenv] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_module] = ACTIONS(1265), + [anon_sym_use] = ACTIONS(1265), + [anon_sym_LBRACK] = ACTIONS(1265), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_DOLLAR] = ACTIONS(1265), + [anon_sym_error] = ACTIONS(1265), + [anon_sym_DASH_DASH] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1265), + [anon_sym_break] = ACTIONS(1265), + [anon_sym_continue] = ACTIONS(1265), + [anon_sym_for] = ACTIONS(1265), + [anon_sym_loop] = ACTIONS(1265), + [anon_sym_while] = ACTIONS(1265), + [anon_sym_do] = ACTIONS(1265), + [anon_sym_if] = ACTIONS(1265), + [anon_sym_match] = ACTIONS(1265), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_DOT_DOT] = ACTIONS(1265), + [anon_sym_try] = ACTIONS(1265), + [anon_sym_return] = ACTIONS(1265), + [anon_sym_source] = ACTIONS(1265), + [anon_sym_source_DASHenv] = ACTIONS(1265), + [anon_sym_register] = ACTIONS(1265), + [anon_sym_hide] = ACTIONS(1265), + [anon_sym_hide_DASHenv] = ACTIONS(1265), + [anon_sym_overlay] = ACTIONS(1265), + [anon_sym_as] = ACTIONS(1265), + [anon_sym_where] = ACTIONS(1265), + [anon_sym_not] = ACTIONS(1265), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1265), + [anon_sym_DOT_DOT_LT] = ACTIONS(1265), + [anon_sym_null] = ACTIONS(1265), + [anon_sym_true] = ACTIONS(1265), + [anon_sym_false] = ACTIONS(1265), + [aux_sym__val_number_decimal_token1] = ACTIONS(1265), + [aux_sym__val_number_decimal_token2] = ACTIONS(1265), + [anon_sym_DOT2] = ACTIONS(1265), + [aux_sym__val_number_decimal_token3] = ACTIONS(1265), + [aux_sym__val_number_token1] = ACTIONS(1265), + [aux_sym__val_number_token2] = ACTIONS(1265), + [aux_sym__val_number_token3] = ACTIONS(1265), + [aux_sym__val_number_token4] = ACTIONS(1265), + [aux_sym__val_number_token5] = ACTIONS(1265), + [aux_sym__val_number_token6] = ACTIONS(1265), + [anon_sym_0b] = ACTIONS(1265), + [anon_sym_0o] = ACTIONS(1265), + [anon_sym_0x] = ACTIONS(1265), + [sym_val_date] = ACTIONS(1265), + [anon_sym_DQUOTE] = ACTIONS(1265), + [sym__str_single_quotes] = ACTIONS(1265), + [sym__str_back_ticks] = ACTIONS(1265), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1265), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(1265), [anon_sym_POUND] = ACTIONS(113), }, - [1941] = { - [sym_comment] = STATE(1941), - [anon_sym_SEMI] = ACTIONS(1117), - [anon_sym_LF] = ACTIONS(1119), - [anon_sym_LBRACK] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1117), - [anon_sym_RPAREN] = ACTIONS(1117), - [anon_sym_PIPE] = ACTIONS(1117), - [anon_sym_DOLLAR] = ACTIONS(1117), - [anon_sym_GT] = ACTIONS(1117), - [anon_sym_DASH_DASH] = ACTIONS(1117), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1117), - [anon_sym_LBRACE] = ACTIONS(1117), - [anon_sym_RBRACE] = ACTIONS(1117), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_STAR] = ACTIONS(1117), - [anon_sym_STAR_STAR] = ACTIONS(1117), - [anon_sym_PLUS_PLUS] = ACTIONS(1117), - [anon_sym_SLASH] = ACTIONS(1117), - [anon_sym_mod] = ACTIONS(1117), - [anon_sym_SLASH_SLASH] = ACTIONS(1117), - [anon_sym_PLUS] = ACTIONS(1117), - [anon_sym_bit_DASHshl] = ACTIONS(1117), - [anon_sym_bit_DASHshr] = ACTIONS(1117), - [anon_sym_EQ_EQ] = ACTIONS(1117), - [anon_sym_BANG_EQ] = ACTIONS(1117), - [anon_sym_LT2] = ACTIONS(1117), - [anon_sym_LT_EQ] = ACTIONS(1117), - [anon_sym_GT_EQ] = ACTIONS(1117), - [anon_sym_not_DASHin] = ACTIONS(1117), - [anon_sym_starts_DASHwith] = ACTIONS(1117), - [anon_sym_ends_DASHwith] = ACTIONS(1117), - [anon_sym_EQ_TILDE] = ACTIONS(1117), - [anon_sym_BANG_TILDE] = ACTIONS(1117), - [anon_sym_bit_DASHand] = ACTIONS(1117), - [anon_sym_bit_DASHxor] = ACTIONS(1117), - [anon_sym_bit_DASHor] = ACTIONS(1117), - [anon_sym_and] = ACTIONS(1117), - [anon_sym_xor] = ACTIONS(1117), - [anon_sym_or] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1117), - [anon_sym_DOT_DOT2] = ACTIONS(1117), - [anon_sym_DOT] = ACTIONS(1117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1117), - [anon_sym_DOT_DOT_LT] = ACTIONS(1117), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1119), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1119), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_true] = ACTIONS(1117), - [anon_sym_false] = ACTIONS(1117), - [aux_sym__val_number_decimal_token1] = ACTIONS(1117), - [aux_sym__val_number_decimal_token2] = ACTIONS(1117), - [anon_sym_DOT2] = ACTIONS(1117), - [aux_sym__val_number_decimal_token3] = ACTIONS(1117), - [aux_sym__val_number_token1] = ACTIONS(1117), - [aux_sym__val_number_token2] = ACTIONS(1117), - [aux_sym__val_number_token3] = ACTIONS(1117), - [aux_sym__val_number_token4] = ACTIONS(1117), - [aux_sym__val_number_token5] = ACTIONS(1117), - [aux_sym__val_number_token6] = ACTIONS(1117), - [anon_sym_0b] = ACTIONS(1117), - [anon_sym_0o] = ACTIONS(1117), - [anon_sym_0x] = ACTIONS(1117), - [sym_val_date] = ACTIONS(1117), - [anon_sym_DQUOTE] = ACTIONS(1117), - [sym__str_single_quotes] = ACTIONS(1117), - [sym__str_back_ticks] = ACTIONS(1117), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1117), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1117), + [2220] = { + [sym_comment] = STATE(2220), + [anon_sym_SEMI] = ACTIONS(1089), + [anon_sym_LF] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1089), + [anon_sym_RPAREN] = ACTIONS(1089), + [anon_sym_PIPE] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1089), + [anon_sym_GT] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_DASH] = ACTIONS(1089), + [anon_sym_in] = ACTIONS(1089), + [anon_sym_LBRACE] = ACTIONS(1089), + [anon_sym_RBRACE] = ACTIONS(1089), + [anon_sym_DOT_DOT] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_STAR_STAR] = ACTIONS(1089), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_SLASH] = ACTIONS(1089), + [anon_sym_mod] = ACTIONS(1089), + [anon_sym_SLASH_SLASH] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1089), + [anon_sym_bit_DASHshl] = ACTIONS(1089), + [anon_sym_bit_DASHshr] = ACTIONS(1089), + [anon_sym_EQ_EQ] = ACTIONS(1089), + [anon_sym_BANG_EQ] = ACTIONS(1089), + [anon_sym_LT2] = ACTIONS(1089), + [anon_sym_LT_EQ] = ACTIONS(1089), + [anon_sym_GT_EQ] = ACTIONS(1089), + [anon_sym_not_DASHin] = ACTIONS(1089), + [anon_sym_starts_DASHwith] = ACTIONS(1089), + [anon_sym_ends_DASHwith] = ACTIONS(1089), + [anon_sym_EQ_TILDE] = ACTIONS(1089), + [anon_sym_BANG_TILDE] = ACTIONS(1089), + [anon_sym_bit_DASHand] = ACTIONS(1089), + [anon_sym_bit_DASHxor] = ACTIONS(1089), + [anon_sym_bit_DASHor] = ACTIONS(1089), + [anon_sym_and] = ACTIONS(1089), + [anon_sym_xor] = ACTIONS(1089), + [anon_sym_or] = ACTIONS(1089), + [anon_sym_not] = ACTIONS(1089), + [anon_sym_DOT_DOT2] = ACTIONS(5899), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_DOT_DOT_LT] = ACTIONS(1089), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(5901), + [anon_sym_DOT_DOT_LT2] = ACTIONS(5901), + [anon_sym_null] = ACTIONS(1089), + [anon_sym_true] = ACTIONS(1089), + [anon_sym_false] = ACTIONS(1089), + [aux_sym__val_number_decimal_token1] = ACTIONS(1089), + [aux_sym__val_number_decimal_token2] = ACTIONS(1089), + [anon_sym_DOT2] = ACTIONS(1089), + [aux_sym__val_number_decimal_token3] = ACTIONS(1089), + [aux_sym__val_number_token1] = ACTIONS(1089), + [aux_sym__val_number_token2] = ACTIONS(1089), + [aux_sym__val_number_token3] = ACTIONS(1089), + [aux_sym__val_number_token4] = ACTIONS(1089), + [aux_sym__val_number_token5] = ACTIONS(1089), + [aux_sym__val_number_token6] = ACTIONS(1089), + [anon_sym_0b] = ACTIONS(1089), + [anon_sym_0o] = ACTIONS(1089), + [anon_sym_0x] = ACTIONS(1089), + [sym_val_date] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1089), + [sym__str_single_quotes] = ACTIONS(1089), + [sym__str_back_ticks] = ACTIONS(1089), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1089), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(113), }, - [1942] = { - [sym_comment] = STATE(1942), - [ts_builtin_sym_end] = ACTIONS(2583), - [anon_sym_export] = ACTIONS(2581), - [anon_sym_alias] = ACTIONS(2581), - [anon_sym_let] = ACTIONS(2581), - [anon_sym_let_DASHenv] = ACTIONS(2581), - [anon_sym_mut] = ACTIONS(2581), - [anon_sym_const] = ACTIONS(2581), - [anon_sym_SEMI] = ACTIONS(2581), - [sym_cmd_identifier] = ACTIONS(2581), - [anon_sym_LF] = ACTIONS(2583), - [anon_sym_def] = ACTIONS(2581), - [anon_sym_export_DASHenv] = ACTIONS(2581), - [anon_sym_extern] = ACTIONS(2581), - [anon_sym_module] = ACTIONS(2581), - [anon_sym_use] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2581), - [anon_sym_error] = ACTIONS(2581), - [anon_sym_DASH_DASH] = ACTIONS(2581), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_break] = ACTIONS(2581), - [anon_sym_continue] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2581), - [anon_sym_loop] = ACTIONS(2581), - [anon_sym_while] = ACTIONS(2581), - [anon_sym_do] = ACTIONS(2581), - [anon_sym_if] = ACTIONS(2581), - [anon_sym_match] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2581), - [anon_sym_DOT_DOT] = ACTIONS(2581), - [anon_sym_try] = ACTIONS(2581), - [anon_sym_return] = ACTIONS(2581), - [anon_sym_source] = ACTIONS(2581), - [anon_sym_source_DASHenv] = ACTIONS(2581), - [anon_sym_register] = ACTIONS(2581), - [anon_sym_hide] = ACTIONS(2581), - [anon_sym_hide_DASHenv] = ACTIONS(2581), - [anon_sym_overlay] = ACTIONS(2581), - [anon_sym_as] = ACTIONS(2581), - [anon_sym_where] = ACTIONS(2581), - [anon_sym_not] = ACTIONS(2581), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2581), - [anon_sym_DOT_DOT_LT] = ACTIONS(2581), - [aux_sym__immediate_decimal_token2] = ACTIONS(5021), - [anon_sym_null] = ACTIONS(2581), - [anon_sym_true] = ACTIONS(2581), - [anon_sym_false] = ACTIONS(2581), - [aux_sym__val_number_decimal_token1] = ACTIONS(2581), - [aux_sym__val_number_decimal_token2] = ACTIONS(2581), - [anon_sym_DOT2] = ACTIONS(2581), - [aux_sym__val_number_decimal_token3] = ACTIONS(2581), - [aux_sym__val_number_token1] = ACTIONS(2581), - [aux_sym__val_number_token2] = ACTIONS(2581), - [aux_sym__val_number_token3] = ACTIONS(2581), - [aux_sym__val_number_token4] = ACTIONS(2581), - [aux_sym__val_number_token5] = ACTIONS(2581), - [aux_sym__val_number_token6] = ACTIONS(2581), - [anon_sym_0b] = ACTIONS(2581), - [anon_sym_0o] = ACTIONS(2581), - [anon_sym_0x] = ACTIONS(2581), - [sym_val_date] = ACTIONS(2581), - [anon_sym_DQUOTE] = ACTIONS(2581), - [sym__str_single_quotes] = ACTIONS(2581), - [sym__str_back_ticks] = ACTIONS(2581), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2581), - [anon_sym_CARET] = ACTIONS(2581), + [2221] = { + [sym_comment] = STATE(2221), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_LPAREN] = ACTIONS(1285), + [anon_sym_DOLLAR] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1283), + [anon_sym_DASH] = ACTIONS(1283), + [anon_sym_in] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym__] = ACTIONS(1283), + [anon_sym_DOT_DOT] = ACTIONS(1283), + [anon_sym_STAR] = ACTIONS(1283), + [anon_sym_STAR_STAR] = ACTIONS(1285), + [anon_sym_PLUS_PLUS] = ACTIONS(1285), + [anon_sym_SLASH] = ACTIONS(1283), + [anon_sym_mod] = ACTIONS(1285), + [anon_sym_SLASH_SLASH] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1283), + [anon_sym_bit_DASHshl] = ACTIONS(1285), + [anon_sym_bit_DASHshr] = ACTIONS(1285), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT2] = ACTIONS(1283), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_not_DASHin] = ACTIONS(1285), + [anon_sym_starts_DASHwith] = ACTIONS(1285), + [anon_sym_ends_DASHwith] = ACTIONS(1285), + [anon_sym_EQ_TILDE] = ACTIONS(1285), + [anon_sym_BANG_TILDE] = ACTIONS(1285), + [anon_sym_bit_DASHand] = ACTIONS(1285), + [anon_sym_bit_DASHxor] = ACTIONS(1285), + [anon_sym_bit_DASHor] = ACTIONS(1285), + [anon_sym_and] = ACTIONS(1285), + [anon_sym_xor] = ACTIONS(1285), + [anon_sym_or] = ACTIONS(1285), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_DOT_DOT_LT] = ACTIONS(1285), + [anon_sym_null] = ACTIONS(1285), + [anon_sym_true] = ACTIONS(1285), + [anon_sym_false] = ACTIONS(1285), + [aux_sym__val_number_decimal_token1] = ACTIONS(1283), + [aux_sym__val_number_decimal_token2] = ACTIONS(1285), + [anon_sym_DOT2] = ACTIONS(1283), + [aux_sym__val_number_decimal_token3] = 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(1285), + [aux_sym__val_number_token5] = ACTIONS(1285), + [aux_sym__val_number_token6] = ACTIONS(1285), + [anon_sym_0b] = ACTIONS(1283), + [anon_sym_0o] = ACTIONS(1283), + [anon_sym_0x] = ACTIONS(1283), + [sym_val_date] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym__str_single_quotes] = ACTIONS(1285), + [sym__str_back_ticks] = ACTIONS(1285), + [anon_sym_err_GT] = ACTIONS(1285), + [anon_sym_out_GT] = ACTIONS(1285), + [anon_sym_e_GT] = ACTIONS(1285), + [anon_sym_o_GT] = ACTIONS(1285), + [anon_sym_err_PLUSout_GT] = ACTIONS(1285), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1285), + [anon_sym_o_PLUSe_GT] = ACTIONS(1285), + [anon_sym_e_PLUSo_GT] = ACTIONS(1285), + [aux_sym_unquoted_token1] = ACTIONS(1283), + [anon_sym_POUND] = ACTIONS(3), + }, + [2222] = { + [sym_comment] = STATE(2222), + [anon_sym_SEMI] = ACTIONS(1068), + [anon_sym_LF] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1068), + [anon_sym_LPAREN] = ACTIONS(1068), + [anon_sym_RPAREN] = ACTIONS(1068), + [anon_sym_PIPE] = ACTIONS(1068), + [anon_sym_DOLLAR] = ACTIONS(1068), + [anon_sym_GT] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1068), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_in] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_RBRACE] = ACTIONS(1068), + [anon_sym_DOT_DOT] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_STAR_STAR] = ACTIONS(1068), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_SLASH] = ACTIONS(1068), + [anon_sym_mod] = ACTIONS(1068), + [anon_sym_SLASH_SLASH] = ACTIONS(1068), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_bit_DASHshl] = ACTIONS(1068), + [anon_sym_bit_DASHshr] = ACTIONS(1068), + [anon_sym_EQ_EQ] = ACTIONS(1068), + [anon_sym_BANG_EQ] = ACTIONS(1068), + [anon_sym_LT2] = ACTIONS(1068), + [anon_sym_LT_EQ] = ACTIONS(1068), + [anon_sym_GT_EQ] = ACTIONS(1068), + [anon_sym_not_DASHin] = ACTIONS(1068), + [anon_sym_starts_DASHwith] = ACTIONS(1068), + [anon_sym_ends_DASHwith] = ACTIONS(1068), + [anon_sym_EQ_TILDE] = ACTIONS(1068), + [anon_sym_BANG_TILDE] = ACTIONS(1068), + [anon_sym_bit_DASHand] = ACTIONS(1068), + [anon_sym_bit_DASHxor] = ACTIONS(1068), + [anon_sym_bit_DASHor] = ACTIONS(1068), + [anon_sym_and] = ACTIONS(1068), + [anon_sym_xor] = ACTIONS(1068), + [anon_sym_or] = ACTIONS(1068), + [anon_sym_not] = ACTIONS(1068), + [anon_sym_DOT_DOT2] = ACTIONS(1068), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1068), + [anon_sym_DOT_DOT_LT] = ACTIONS(1068), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1070), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1070), + [anon_sym_null] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1068), + [anon_sym_false] = ACTIONS(1068), + [aux_sym__val_number_decimal_token1] = ACTIONS(1068), + [aux_sym__val_number_decimal_token2] = ACTIONS(1068), + [anon_sym_DOT2] = ACTIONS(1068), + [aux_sym__val_number_decimal_token3] = ACTIONS(1068), + [aux_sym__val_number_token1] = ACTIONS(1068), + [aux_sym__val_number_token2] = ACTIONS(1068), + [aux_sym__val_number_token3] = ACTIONS(1068), + [aux_sym__val_number_token4] = ACTIONS(1068), + [aux_sym__val_number_token5] = ACTIONS(1068), + [aux_sym__val_number_token6] = ACTIONS(1068), + [anon_sym_0b] = ACTIONS(1068), + [anon_sym_0o] = ACTIONS(1068), + [anon_sym_0x] = ACTIONS(1068), + [sym_val_date] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(1068), + [sym__str_single_quotes] = ACTIONS(1068), + [sym__str_back_ticks] = ACTIONS(1068), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1068), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1068), [anon_sym_POUND] = ACTIONS(113), }, - [1943] = { - [sym_comment] = STATE(1943), - [ts_builtin_sym_end] = ACTIONS(2439), - [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), - [anon_sym_SEMI] = ACTIONS(2437), - [sym_cmd_identifier] = ACTIONS(2437), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_DASH_DASH] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_as] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_not] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [aux_sym__immediate_decimal_token2] = ACTIONS(4987), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [anon_sym_DOT2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2437), - [anon_sym_0o] = ACTIONS(2437), - [anon_sym_0x] = ACTIONS(2437), - [sym_val_date] = 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_CARET] = ACTIONS(2437), + [2223] = { + [sym_comment] = STATE(2223), + [ts_builtin_sym_end] = ACTIONS(922), + [anon_sym_export] = ACTIONS(920), + [anon_sym_alias] = ACTIONS(920), + [anon_sym_let] = ACTIONS(920), + [anon_sym_let_DASHenv] = ACTIONS(920), + [anon_sym_mut] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(920), + [sym_cmd_identifier] = ACTIONS(920), + [anon_sym_LF] = ACTIONS(922), + [anon_sym_def] = ACTIONS(920), + [anon_sym_export_DASHenv] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym_module] = ACTIONS(920), + [anon_sym_use] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_error] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_loop] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_match] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_try] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_source] = ACTIONS(920), + [anon_sym_source_DASHenv] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_hide] = ACTIONS(920), + [anon_sym_hide_DASHenv] = ACTIONS(920), + [anon_sym_overlay] = ACTIONS(920), + [anon_sym_as] = ACTIONS(920), + [anon_sym_where] = ACTIONS(920), + [anon_sym_not] = ACTIONS(920), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [anon_sym_null] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), + [anon_sym_CARET] = ACTIONS(920), [anon_sym_POUND] = ACTIONS(113), }, - [1944] = { - [sym_comment] = STATE(1944), - [ts_builtin_sym_end] = ACTIONS(2549), - [anon_sym_export] = ACTIONS(2547), - [anon_sym_alias] = ACTIONS(2547), - [anon_sym_let] = ACTIONS(2547), - [anon_sym_let_DASHenv] = ACTIONS(2547), - [anon_sym_mut] = ACTIONS(2547), - [anon_sym_const] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [sym_cmd_identifier] = ACTIONS(2547), - [anon_sym_LF] = ACTIONS(2549), - [anon_sym_def] = ACTIONS(2547), - [anon_sym_export_DASHenv] = ACTIONS(2547), - [anon_sym_extern] = ACTIONS(2547), - [anon_sym_module] = ACTIONS(2547), - [anon_sym_use] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_DOLLAR] = ACTIONS(2547), - [anon_sym_error] = ACTIONS(2547), - [anon_sym_DASH_DASH] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_break] = ACTIONS(2547), - [anon_sym_continue] = ACTIONS(2547), - [anon_sym_for] = ACTIONS(2547), - [anon_sym_loop] = ACTIONS(2547), - [anon_sym_while] = ACTIONS(2547), - [anon_sym_do] = ACTIONS(2547), - [anon_sym_if] = ACTIONS(2547), - [anon_sym_match] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2547), - [anon_sym_DOT_DOT] = ACTIONS(2547), - [anon_sym_try] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2547), - [anon_sym_source] = ACTIONS(2547), - [anon_sym_source_DASHenv] = ACTIONS(2547), - [anon_sym_register] = ACTIONS(2547), - [anon_sym_hide] = ACTIONS(2547), - [anon_sym_hide_DASHenv] = ACTIONS(2547), - [anon_sym_overlay] = ACTIONS(2547), - [anon_sym_as] = ACTIONS(2547), - [anon_sym_where] = ACTIONS(2547), - [anon_sym_not] = ACTIONS(2547), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), - [anon_sym_DOT_DOT_LT] = ACTIONS(2547), - [aux_sym__immediate_decimal_token2] = ACTIONS(5435), - [anon_sym_null] = ACTIONS(2547), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [aux_sym__val_number_decimal_token1] = ACTIONS(2547), - [aux_sym__val_number_decimal_token2] = ACTIONS(2547), - [anon_sym_DOT2] = ACTIONS(2547), - [aux_sym__val_number_decimal_token3] = ACTIONS(2547), - [aux_sym__val_number_token1] = ACTIONS(2547), - [aux_sym__val_number_token2] = ACTIONS(2547), - [aux_sym__val_number_token3] = ACTIONS(2547), - [aux_sym__val_number_token4] = ACTIONS(2547), - [aux_sym__val_number_token5] = ACTIONS(2547), - [aux_sym__val_number_token6] = ACTIONS(2547), - [anon_sym_0b] = ACTIONS(2547), - [anon_sym_0o] = ACTIONS(2547), - [anon_sym_0x] = ACTIONS(2547), - [sym_val_date] = ACTIONS(2547), - [anon_sym_DQUOTE] = ACTIONS(2547), - [sym__str_single_quotes] = ACTIONS(2547), - [sym__str_back_ticks] = ACTIONS(2547), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2547), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2547), + [2224] = { + [sym_comment] = STATE(2224), + [anon_sym_LBRACK] = ACTIONS(1223), + [anon_sym_COMMA] = ACTIONS(1223), + [anon_sym_RBRACK] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1223), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_DASH_DASH] = ACTIONS(1223), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_in] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_DOT_DOT] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_STAR_STAR] = ACTIONS(1223), + [anon_sym_PLUS_PLUS] = ACTIONS(1223), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_mod] = ACTIONS(1223), + [anon_sym_SLASH_SLASH] = ACTIONS(1223), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_bit_DASHshl] = ACTIONS(1223), + [anon_sym_bit_DASHshr] = ACTIONS(1223), + [anon_sym_EQ_EQ] = ACTIONS(1223), + [anon_sym_BANG_EQ] = ACTIONS(1223), + [anon_sym_LT2] = ACTIONS(1221), + [anon_sym_LT_EQ] = ACTIONS(1223), + [anon_sym_GT_EQ] = ACTIONS(1223), + [anon_sym_not_DASHin] = ACTIONS(1223), + [anon_sym_starts_DASHwith] = ACTIONS(1223), + [anon_sym_ends_DASHwith] = ACTIONS(1223), + [anon_sym_EQ_TILDE] = ACTIONS(1223), + [anon_sym_BANG_TILDE] = ACTIONS(1223), + [anon_sym_bit_DASHand] = ACTIONS(1223), + [anon_sym_bit_DASHxor] = ACTIONS(1223), + [anon_sym_bit_DASHor] = ACTIONS(1223), + [anon_sym_and] = ACTIONS(1223), + [anon_sym_xor] = ACTIONS(1223), + [anon_sym_or] = ACTIONS(1223), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_DOT_DOT_LT] = ACTIONS(1223), + [anon_sym_null] = ACTIONS(1223), + [anon_sym_true] = ACTIONS(1223), + [anon_sym_false] = ACTIONS(1223), + [aux_sym__val_number_decimal_token1] = ACTIONS(1221), + [aux_sym__val_number_decimal_token2] = ACTIONS(1223), + [anon_sym_DOT2] = ACTIONS(1221), + [aux_sym__val_number_decimal_token3] = ACTIONS(1223), + [aux_sym__val_number_token1] = ACTIONS(1223), + [aux_sym__val_number_token2] = ACTIONS(1223), + [aux_sym__val_number_token3] = ACTIONS(1223), + [aux_sym__val_number_token4] = ACTIONS(1223), + [aux_sym__val_number_token5] = ACTIONS(1223), + [aux_sym__val_number_token6] = ACTIONS(1223), + [anon_sym_0b] = ACTIONS(1221), + [anon_sym_0o] = ACTIONS(1221), + [anon_sym_0x] = ACTIONS(1221), + [sym_val_date] = ACTIONS(1223), + [anon_sym_DQUOTE] = ACTIONS(1223), + [sym__str_single_quotes] = ACTIONS(1223), + [sym__str_back_ticks] = ACTIONS(1223), + [anon_sym_err_GT] = ACTIONS(1223), + [anon_sym_out_GT] = ACTIONS(1223), + [anon_sym_e_GT] = ACTIONS(1223), + [anon_sym_o_GT] = ACTIONS(1223), + [anon_sym_err_PLUSout_GT] = ACTIONS(1223), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1223), + [anon_sym_o_PLUSe_GT] = ACTIONS(1223), + [anon_sym_e_PLUSo_GT] = ACTIONS(1223), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1221), + [anon_sym_POUND] = ACTIONS(3), + }, + [2225] = { + [sym_comment] = STATE(2225), + [ts_builtin_sym_end] = ACTIONS(1209), + [anon_sym_export] = ACTIONS(1139), + [anon_sym_alias] = ACTIONS(1139), + [anon_sym_let] = ACTIONS(1139), + [anon_sym_let_DASHenv] = ACTIONS(1139), + [anon_sym_mut] = ACTIONS(1139), + [anon_sym_const] = ACTIONS(1139), + [anon_sym_SEMI] = ACTIONS(1139), + [sym_cmd_identifier] = ACTIONS(1139), + [anon_sym_LF] = ACTIONS(1209), + [anon_sym_def] = ACTIONS(1139), + [anon_sym_export_DASHenv] = ACTIONS(1139), + [anon_sym_extern] = ACTIONS(1139), + [anon_sym_module] = ACTIONS(1139), + [anon_sym_use] = ACTIONS(1139), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LPAREN] = ACTIONS(1139), + [anon_sym_DOLLAR] = ACTIONS(1139), + [anon_sym_error] = ACTIONS(1139), + [anon_sym_DASH_DASH] = ACTIONS(1139), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_break] = ACTIONS(1139), + [anon_sym_continue] = ACTIONS(1139), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_loop] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1139), + [anon_sym_do] = ACTIONS(1139), + [anon_sym_if] = ACTIONS(1139), + [anon_sym_match] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1139), + [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_try] = ACTIONS(1139), + [anon_sym_return] = ACTIONS(1139), + [anon_sym_source] = ACTIONS(1139), + [anon_sym_source_DASHenv] = ACTIONS(1139), + [anon_sym_register] = ACTIONS(1139), + [anon_sym_hide] = ACTIONS(1139), + [anon_sym_hide_DASHenv] = ACTIONS(1139), + [anon_sym_overlay] = ACTIONS(1139), + [anon_sym_as] = ACTIONS(1139), + [anon_sym_where] = ACTIONS(1139), + [anon_sym_not] = ACTIONS(1139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1139), + [anon_sym_DOT_DOT_LT] = ACTIONS(1139), + [anon_sym_null] = ACTIONS(1139), + [anon_sym_true] = ACTIONS(1139), + [anon_sym_false] = ACTIONS(1139), + [aux_sym__val_number_decimal_token1] = ACTIONS(1139), + [aux_sym__val_number_decimal_token2] = ACTIONS(1139), + [anon_sym_DOT2] = ACTIONS(1139), + [aux_sym__val_number_decimal_token3] = ACTIONS(1139), + [aux_sym__val_number_token1] = ACTIONS(1139), + [aux_sym__val_number_token2] = ACTIONS(1139), + [aux_sym__val_number_token3] = ACTIONS(1139), + [aux_sym__val_number_token4] = ACTIONS(1139), + [aux_sym__val_number_token5] = ACTIONS(1139), + [aux_sym__val_number_token6] = ACTIONS(1139), + [anon_sym_0b] = ACTIONS(1139), + [anon_sym_0o] = ACTIONS(1139), + [anon_sym_0x] = ACTIONS(1139), + [sym_val_date] = ACTIONS(1139), + [anon_sym_DQUOTE] = ACTIONS(1139), + [sym__str_single_quotes] = ACTIONS(1139), + [sym__str_back_ticks] = ACTIONS(1139), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1139), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1139), + [anon_sym_CARET] = ACTIONS(1139), [anon_sym_POUND] = ACTIONS(113), }, - [1945] = { - [sym_comment] = STATE(1945), - [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), - [anon_sym_SEMI] = ACTIONS(2437), - [sym_cmd_identifier] = ACTIONS(2437), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_RPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_DASH_DASH] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_RBRACE] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_as] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_not] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [anon_sym_DOT2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2437), - [anon_sym_0o] = ACTIONS(2437), - [anon_sym_0x] = ACTIONS(2437), - [sym_val_date] = 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_CARET] = ACTIONS(2437), + [2226] = { + [sym_comment] = STATE(2226), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_RBRACK] = ACTIONS(1285), + [anon_sym_LPAREN] = ACTIONS(1285), + [anon_sym_DOLLAR] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1283), + [anon_sym_DASH_DASH] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1283), + [anon_sym_in] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_DOT_DOT] = ACTIONS(1283), + [anon_sym_STAR] = ACTIONS(1283), + [anon_sym_STAR_STAR] = ACTIONS(1285), + [anon_sym_PLUS_PLUS] = ACTIONS(1285), + [anon_sym_SLASH] = ACTIONS(1283), + [anon_sym_mod] = ACTIONS(1285), + [anon_sym_SLASH_SLASH] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1283), + [anon_sym_bit_DASHshl] = ACTIONS(1285), + [anon_sym_bit_DASHshr] = ACTIONS(1285), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_LT2] = ACTIONS(1283), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_not_DASHin] = ACTIONS(1285), + [anon_sym_starts_DASHwith] = ACTIONS(1285), + [anon_sym_ends_DASHwith] = ACTIONS(1285), + [anon_sym_EQ_TILDE] = ACTIONS(1285), + [anon_sym_BANG_TILDE] = ACTIONS(1285), + [anon_sym_bit_DASHand] = ACTIONS(1285), + [anon_sym_bit_DASHxor] = ACTIONS(1285), + [anon_sym_bit_DASHor] = ACTIONS(1285), + [anon_sym_and] = ACTIONS(1285), + [anon_sym_xor] = ACTIONS(1285), + [anon_sym_or] = ACTIONS(1285), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_DOT_DOT_LT] = ACTIONS(1285), + [anon_sym_null] = ACTIONS(1285), + [anon_sym_true] = ACTIONS(1285), + [anon_sym_false] = ACTIONS(1285), + [aux_sym__val_number_decimal_token1] = ACTIONS(1283), + [aux_sym__val_number_decimal_token2] = ACTIONS(1285), + [anon_sym_DOT2] = ACTIONS(1283), + [aux_sym__val_number_decimal_token3] = 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(1285), + [aux_sym__val_number_token5] = ACTIONS(1285), + [aux_sym__val_number_token6] = ACTIONS(1285), + [anon_sym_0b] = ACTIONS(1283), + [anon_sym_0o] = ACTIONS(1283), + [anon_sym_0x] = ACTIONS(1283), + [sym_val_date] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym__str_single_quotes] = ACTIONS(1285), + [sym__str_back_ticks] = ACTIONS(1285), + [anon_sym_err_GT] = ACTIONS(1285), + [anon_sym_out_GT] = ACTIONS(1285), + [anon_sym_e_GT] = ACTIONS(1285), + [anon_sym_o_GT] = ACTIONS(1285), + [anon_sym_err_PLUSout_GT] = ACTIONS(1285), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1285), + [anon_sym_o_PLUSe_GT] = ACTIONS(1285), + [anon_sym_e_PLUSo_GT] = ACTIONS(1285), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1283), + [anon_sym_POUND] = ACTIONS(3), + }, + [2227] = { + [sym_comment] = STATE(2227), + [anon_sym_LBRACK] = ACTIONS(1181), + [anon_sym_COMMA] = ACTIONS(1181), + [anon_sym_RBRACK] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_DOLLAR] = ACTIONS(1181), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1181), + [anon_sym_DASH] = ACTIONS(5713), + [anon_sym_in] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(5705), + [anon_sym_STAR_STAR] = ACTIONS(5707), + [anon_sym_PLUS_PLUS] = ACTIONS(5707), + [anon_sym_SLASH] = ACTIONS(5705), + [anon_sym_mod] = ACTIONS(5709), + [anon_sym_SLASH_SLASH] = ACTIONS(5709), + [anon_sym_PLUS] = ACTIONS(5713), + [anon_sym_bit_DASHshl] = ACTIONS(5717), + [anon_sym_bit_DASHshr] = ACTIONS(5717), + [anon_sym_EQ_EQ] = ACTIONS(1181), + [anon_sym_BANG_EQ] = ACTIONS(1181), + [anon_sym_LT2] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1181), + [anon_sym_GT_EQ] = ACTIONS(1181), + [anon_sym_not_DASHin] = ACTIONS(1181), + [anon_sym_starts_DASHwith] = ACTIONS(1181), + [anon_sym_ends_DASHwith] = ACTIONS(1181), + [anon_sym_EQ_TILDE] = ACTIONS(1181), + [anon_sym_BANG_TILDE] = ACTIONS(1181), + [anon_sym_bit_DASHand] = ACTIONS(1181), + [anon_sym_bit_DASHxor] = ACTIONS(1181), + [anon_sym_bit_DASHor] = ACTIONS(1181), + [anon_sym_and] = ACTIONS(1181), + [anon_sym_xor] = ACTIONS(1181), + [anon_sym_or] = ACTIONS(1181), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1181), + [anon_sym_DOT_DOT_LT] = ACTIONS(1181), + [anon_sym_null] = ACTIONS(1181), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1181), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1181), + [aux_sym__val_number_token1] = ACTIONS(1181), + [aux_sym__val_number_token2] = ACTIONS(1181), + [aux_sym__val_number_token3] = ACTIONS(1181), + [aux_sym__val_number_token4] = ACTIONS(1181), + [aux_sym__val_number_token5] = ACTIONS(1181), + [aux_sym__val_number_token6] = ACTIONS(1181), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym__str_single_quotes] = ACTIONS(1181), + [sym__str_back_ticks] = ACTIONS(1181), + [anon_sym_err_GT] = ACTIONS(1181), + [anon_sym_out_GT] = ACTIONS(1181), + [anon_sym_e_GT] = ACTIONS(1181), + [anon_sym_o_GT] = ACTIONS(1181), + [anon_sym_err_PLUSout_GT] = ACTIONS(1181), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1181), + [anon_sym_o_PLUSe_GT] = ACTIONS(1181), + [anon_sym_e_PLUSo_GT] = ACTIONS(1181), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(3), + }, + [2228] = { + [sym_comment] = STATE(2228), + [anon_sym_export] = ACTIONS(1033), + [anon_sym_alias] = ACTIONS(1033), + [anon_sym_let] = ACTIONS(1033), + [anon_sym_let_DASHenv] = ACTIONS(1033), + [anon_sym_mut] = ACTIONS(1033), + [anon_sym_const] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(1033), + [sym_cmd_identifier] = ACTIONS(1033), + [anon_sym_LF] = ACTIONS(1035), + [anon_sym_def] = ACTIONS(1033), + [anon_sym_export_DASHenv] = ACTIONS(1033), + [anon_sym_extern] = ACTIONS(1033), + [anon_sym_module] = ACTIONS(1033), + [anon_sym_use] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1033), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_RPAREN] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_error] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1033), + [anon_sym_break] = ACTIONS(1033), + [anon_sym_continue] = ACTIONS(1033), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_loop] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(1033), + [anon_sym_do] = ACTIONS(1033), + [anon_sym_if] = ACTIONS(1033), + [anon_sym_match] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1033), + [anon_sym_DOT_DOT] = ACTIONS(1033), + [anon_sym_try] = ACTIONS(1033), + [anon_sym_return] = ACTIONS(1033), + [anon_sym_source] = ACTIONS(1033), + [anon_sym_source_DASHenv] = ACTIONS(1033), + [anon_sym_register] = ACTIONS(1033), + [anon_sym_hide] = ACTIONS(1033), + [anon_sym_hide_DASHenv] = ACTIONS(1033), + [anon_sym_overlay] = ACTIONS(1033), + [anon_sym_STAR] = ACTIONS(1033), + [anon_sym_where] = ACTIONS(1033), + [anon_sym_not] = ACTIONS(1033), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1033), + [anon_sym_DOT_DOT_LT] = ACTIONS(1033), + [anon_sym_null] = ACTIONS(1033), + [anon_sym_true] = ACTIONS(1033), + [anon_sym_false] = ACTIONS(1033), + [aux_sym__val_number_decimal_token1] = ACTIONS(1033), + [aux_sym__val_number_decimal_token2] = ACTIONS(1033), + [anon_sym_DOT2] = ACTIONS(1033), + [aux_sym__val_number_decimal_token3] = ACTIONS(1033), + [aux_sym__val_number_token1] = ACTIONS(1033), + [aux_sym__val_number_token2] = ACTIONS(1033), + [aux_sym__val_number_token3] = ACTIONS(1033), + [aux_sym__val_number_token4] = ACTIONS(1033), + [aux_sym__val_number_token5] = ACTIONS(1033), + [aux_sym__val_number_token6] = ACTIONS(1033), + [anon_sym_0b] = ACTIONS(1033), + [anon_sym_0o] = ACTIONS(1033), + [anon_sym_0x] = ACTIONS(1033), + [sym_val_date] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [sym__str_single_quotes] = ACTIONS(1033), + [sym__str_back_ticks] = ACTIONS(1033), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1033), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1033), + [anon_sym_CARET] = ACTIONS(1033), [anon_sym_POUND] = ACTIONS(113), }, - [1946] = { - [sym_comment] = STATE(1946), - [anon_sym_export] = ACTIONS(2547), - [anon_sym_alias] = ACTIONS(2547), - [anon_sym_let] = ACTIONS(2547), - [anon_sym_let_DASHenv] = ACTIONS(2547), - [anon_sym_mut] = ACTIONS(2547), - [anon_sym_const] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [sym_cmd_identifier] = ACTIONS(2547), - [anon_sym_LF] = ACTIONS(2549), - [anon_sym_def] = ACTIONS(2547), - [anon_sym_export_DASHenv] = ACTIONS(2547), - [anon_sym_extern] = ACTIONS(2547), - [anon_sym_module] = ACTIONS(2547), - [anon_sym_use] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_RPAREN] = ACTIONS(2547), - [anon_sym_DOLLAR] = ACTIONS(2547), - [anon_sym_error] = ACTIONS(2547), - [anon_sym_DASH_DASH] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_break] = ACTIONS(2547), - [anon_sym_continue] = ACTIONS(2547), - [anon_sym_for] = ACTIONS(2547), - [anon_sym_loop] = ACTIONS(2547), - [anon_sym_while] = ACTIONS(2547), - [anon_sym_do] = ACTIONS(2547), - [anon_sym_if] = ACTIONS(2547), - [anon_sym_match] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2547), - [anon_sym_RBRACE] = ACTIONS(2547), - [anon_sym_DOT_DOT] = ACTIONS(2547), - [anon_sym_try] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2547), - [anon_sym_source] = ACTIONS(2547), - [anon_sym_source_DASHenv] = ACTIONS(2547), - [anon_sym_register] = ACTIONS(2547), - [anon_sym_hide] = ACTIONS(2547), - [anon_sym_hide_DASHenv] = ACTIONS(2547), - [anon_sym_overlay] = ACTIONS(2547), - [anon_sym_as] = ACTIONS(2547), - [anon_sym_where] = ACTIONS(2547), - [anon_sym_not] = ACTIONS(2547), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), - [anon_sym_DOT_DOT_LT] = ACTIONS(2547), - [anon_sym_null] = ACTIONS(2547), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [aux_sym__val_number_decimal_token1] = ACTIONS(2547), - [aux_sym__val_number_decimal_token2] = ACTIONS(2547), - [anon_sym_DOT2] = ACTIONS(2547), - [aux_sym__val_number_decimal_token3] = ACTIONS(2547), - [aux_sym__val_number_token1] = ACTIONS(2547), - [aux_sym__val_number_token2] = ACTIONS(2547), - [aux_sym__val_number_token3] = ACTIONS(2547), - [aux_sym__val_number_token4] = ACTIONS(2547), - [aux_sym__val_number_token5] = ACTIONS(2547), - [aux_sym__val_number_token6] = ACTIONS(2547), - [anon_sym_0b] = ACTIONS(2547), - [anon_sym_0o] = ACTIONS(2547), - [anon_sym_0x] = ACTIONS(2547), - [sym_val_date] = ACTIONS(2547), - [anon_sym_DQUOTE] = ACTIONS(2547), - [sym__str_single_quotes] = ACTIONS(2547), - [sym__str_back_ticks] = ACTIONS(2547), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2547), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2547), + [2229] = { + [sym_comment] = STATE(2229), + [ts_builtin_sym_end] = ACTIONS(1213), + [anon_sym_export] = ACTIONS(1211), + [anon_sym_alias] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(1211), + [anon_sym_let_DASHenv] = ACTIONS(1211), + [anon_sym_mut] = ACTIONS(1211), + [anon_sym_const] = ACTIONS(1211), + [anon_sym_SEMI] = ACTIONS(1211), + [sym_cmd_identifier] = ACTIONS(1211), + [anon_sym_LF] = ACTIONS(1213), + [anon_sym_def] = ACTIONS(1211), + [anon_sym_export_DASHenv] = ACTIONS(1211), + [anon_sym_extern] = ACTIONS(1211), + [anon_sym_module] = ACTIONS(1211), + [anon_sym_use] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(1211), + [anon_sym_DOLLAR] = ACTIONS(1211), + [anon_sym_error] = ACTIONS(1211), + [anon_sym_DASH_DASH] = ACTIONS(1211), + [anon_sym_DASH] = ACTIONS(1211), + [anon_sym_break] = ACTIONS(1211), + [anon_sym_continue] = ACTIONS(1211), + [anon_sym_for] = ACTIONS(1211), + [anon_sym_loop] = ACTIONS(1211), + [anon_sym_while] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(1211), + [anon_sym_if] = ACTIONS(1211), + [anon_sym_match] = ACTIONS(1211), + [anon_sym_LBRACE] = ACTIONS(1211), + [anon_sym_DOT_DOT] = ACTIONS(1211), + [anon_sym_try] = ACTIONS(1211), + [anon_sym_return] = ACTIONS(1211), + [anon_sym_source] = ACTIONS(1211), + [anon_sym_source_DASHenv] = ACTIONS(1211), + [anon_sym_register] = ACTIONS(1211), + [anon_sym_hide] = ACTIONS(1211), + [anon_sym_hide_DASHenv] = ACTIONS(1211), + [anon_sym_overlay] = ACTIONS(1211), + [anon_sym_as] = ACTIONS(1211), + [anon_sym_where] = ACTIONS(1211), + [anon_sym_not] = ACTIONS(1211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1211), + [anon_sym_DOT_DOT_LT] = ACTIONS(1211), + [anon_sym_null] = ACTIONS(1211), + [anon_sym_true] = ACTIONS(1211), + [anon_sym_false] = ACTIONS(1211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1211), + [aux_sym__val_number_decimal_token2] = ACTIONS(1211), + [anon_sym_DOT2] = ACTIONS(1211), + [aux_sym__val_number_decimal_token3] = ACTIONS(1211), + [aux_sym__val_number_token1] = ACTIONS(1211), + [aux_sym__val_number_token2] = ACTIONS(1211), + [aux_sym__val_number_token3] = ACTIONS(1211), + [aux_sym__val_number_token4] = ACTIONS(1211), + [aux_sym__val_number_token5] = ACTIONS(1211), + [aux_sym__val_number_token6] = ACTIONS(1211), + [anon_sym_0b] = ACTIONS(1211), + [anon_sym_0o] = ACTIONS(1211), + [anon_sym_0x] = ACTIONS(1211), + [sym_val_date] = ACTIONS(1211), + [anon_sym_DQUOTE] = ACTIONS(1211), + [sym__str_single_quotes] = ACTIONS(1211), + [sym__str_back_ticks] = ACTIONS(1211), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1211), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1211), + [anon_sym_CARET] = ACTIONS(1211), [anon_sym_POUND] = ACTIONS(113), }, - [1947] = { - [sym_comment] = STATE(1947), - [anon_sym_export] = ACTIONS(3505), - [anon_sym_alias] = ACTIONS(3505), - [anon_sym_let] = ACTIONS(3505), - [anon_sym_let_DASHenv] = ACTIONS(3505), - [anon_sym_mut] = ACTIONS(3505), - [anon_sym_const] = ACTIONS(3505), - [anon_sym_SEMI] = ACTIONS(3505), - [sym_cmd_identifier] = ACTIONS(3505), - [anon_sym_LF] = ACTIONS(3507), - [anon_sym_def] = ACTIONS(3505), - [anon_sym_export_DASHenv] = ACTIONS(3505), - [anon_sym_extern] = ACTIONS(3505), - [anon_sym_module] = ACTIONS(3505), - [anon_sym_use] = ACTIONS(3505), - [anon_sym_LBRACK] = ACTIONS(3505), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_RPAREN] = ACTIONS(3505), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_error] = ACTIONS(3505), - [anon_sym_DASH_DASH] = ACTIONS(3505), - [anon_sym_DASH] = ACTIONS(3505), - [anon_sym_break] = ACTIONS(3505), - [anon_sym_continue] = ACTIONS(3505), - [anon_sym_for] = ACTIONS(3505), - [anon_sym_loop] = ACTIONS(3505), - [anon_sym_while] = ACTIONS(3505), - [anon_sym_do] = ACTIONS(3505), - [anon_sym_if] = ACTIONS(3505), - [anon_sym_match] = ACTIONS(3505), - [anon_sym_LBRACE] = ACTIONS(3505), - [anon_sym_RBRACE] = ACTIONS(3505), - [anon_sym_DOT_DOT] = ACTIONS(3505), - [anon_sym_try] = ACTIONS(3505), - [anon_sym_return] = ACTIONS(3505), - [anon_sym_source] = ACTIONS(3505), - [anon_sym_source_DASHenv] = ACTIONS(3505), - [anon_sym_register] = ACTIONS(3505), - [anon_sym_hide] = ACTIONS(3505), - [anon_sym_hide_DASHenv] = ACTIONS(3505), - [anon_sym_overlay] = ACTIONS(3505), - [anon_sym_as] = ACTIONS(3505), - [anon_sym_where] = ACTIONS(3505), - [anon_sym_not] = ACTIONS(3505), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3505), - [anon_sym_DOT_DOT_LT] = ACTIONS(3505), - [anon_sym_null] = ACTIONS(3505), - [anon_sym_true] = ACTIONS(3505), - [anon_sym_false] = ACTIONS(3505), - [aux_sym__val_number_decimal_token1] = ACTIONS(3505), - [aux_sym__val_number_decimal_token2] = ACTIONS(3505), - [anon_sym_DOT2] = ACTIONS(3505), - [aux_sym__val_number_decimal_token3] = ACTIONS(3505), - [aux_sym__val_number_token1] = ACTIONS(3505), - [aux_sym__val_number_token2] = ACTIONS(3505), - [aux_sym__val_number_token3] = ACTIONS(3505), - [aux_sym__val_number_token4] = ACTIONS(3505), - [aux_sym__val_number_token5] = ACTIONS(3505), - [aux_sym__val_number_token6] = ACTIONS(3505), - [anon_sym_0b] = ACTIONS(3505), - [anon_sym_0o] = ACTIONS(3505), - [anon_sym_0x] = ACTIONS(3505), - [sym_val_date] = ACTIONS(3505), - [anon_sym_DQUOTE] = ACTIONS(3505), - [sym__str_single_quotes] = ACTIONS(3505), - [sym__str_back_ticks] = ACTIONS(3505), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3505), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3505), - [anon_sym_CARET] = ACTIONS(3505), + [2230] = { + [sym_cell_path] = STATE(2564), + [sym_path] = STATE(2095), + [sym_comment] = STATE(2230), + [anon_sym_SEMI] = ACTIONS(1093), + [anon_sym_LF] = ACTIONS(1095), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_LPAREN] = ACTIONS(1093), + [anon_sym_RPAREN] = ACTIONS(1093), + [anon_sym_PIPE] = ACTIONS(1093), + [anon_sym_DOLLAR] = ACTIONS(1093), + [anon_sym_GT] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_in] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1093), + [anon_sym_RBRACE] = ACTIONS(1093), + [anon_sym_DOT_DOT] = ACTIONS(1093), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_STAR_STAR] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1093), + [anon_sym_SLASH] = ACTIONS(1093), + [anon_sym_mod] = ACTIONS(1093), + [anon_sym_SLASH_SLASH] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_bit_DASHshl] = ACTIONS(1093), + [anon_sym_bit_DASHshr] = ACTIONS(1093), + [anon_sym_EQ_EQ] = ACTIONS(1093), + [anon_sym_BANG_EQ] = ACTIONS(1093), + [anon_sym_LT2] = ACTIONS(1093), + [anon_sym_LT_EQ] = ACTIONS(1093), + [anon_sym_GT_EQ] = ACTIONS(1093), + [anon_sym_not_DASHin] = ACTIONS(1093), + [anon_sym_starts_DASHwith] = ACTIONS(1093), + [anon_sym_ends_DASHwith] = ACTIONS(1093), + [anon_sym_EQ_TILDE] = ACTIONS(1093), + [anon_sym_BANG_TILDE] = ACTIONS(1093), + [anon_sym_bit_DASHand] = ACTIONS(1093), + [anon_sym_bit_DASHxor] = ACTIONS(1093), + [anon_sym_bit_DASHor] = ACTIONS(1093), + [anon_sym_and] = ACTIONS(1093), + [anon_sym_xor] = ACTIONS(1093), + [anon_sym_or] = ACTIONS(1093), + [anon_sym_not] = ACTIONS(1093), + [anon_sym_DOT] = ACTIONS(5731), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1093), + [anon_sym_DOT_DOT_LT] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1093), + [anon_sym_true] = ACTIONS(1093), + [anon_sym_false] = ACTIONS(1093), + [aux_sym__val_number_decimal_token1] = ACTIONS(1093), + [aux_sym__val_number_decimal_token2] = ACTIONS(1093), + [anon_sym_DOT2] = ACTIONS(1093), + [aux_sym__val_number_decimal_token3] = ACTIONS(1093), + [aux_sym__val_number_token1] = ACTIONS(1093), + [aux_sym__val_number_token2] = ACTIONS(1093), + [aux_sym__val_number_token3] = ACTIONS(1093), + [aux_sym__val_number_token4] = ACTIONS(1093), + [aux_sym__val_number_token5] = ACTIONS(1093), + [aux_sym__val_number_token6] = ACTIONS(1093), + [anon_sym_0b] = ACTIONS(1093), + [anon_sym_0o] = ACTIONS(1093), + [anon_sym_0x] = ACTIONS(1093), + [sym_val_date] = ACTIONS(1093), + [anon_sym_DQUOTE] = ACTIONS(1093), + [sym__str_single_quotes] = ACTIONS(1093), + [sym__str_back_ticks] = ACTIONS(1093), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1093), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1093), [anon_sym_POUND] = ACTIONS(113), }, - [1948] = { - [sym_comment] = STATE(1948), - [anon_sym_LBRACK] = ACTIONS(1282), - [anon_sym_COMMA] = ACTIONS(1280), - [anon_sym_RBRACK] = ACTIONS(1282), - [anon_sym_LPAREN] = ACTIONS(1282), - [anon_sym_DOLLAR] = ACTIONS(1280), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_DASH_DASH] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_in] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1282), - [anon_sym_DOT_DOT] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1280), - [anon_sym_STAR_STAR] = ACTIONS(1280), - [anon_sym_PLUS_PLUS] = ACTIONS(1280), - [anon_sym_SLASH] = ACTIONS(1280), - [anon_sym_mod] = ACTIONS(1280), - [anon_sym_SLASH_SLASH] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_bit_DASHshl] = ACTIONS(1280), - [anon_sym_bit_DASHshr] = ACTIONS(1280), - [anon_sym_EQ_EQ] = ACTIONS(1280), - [anon_sym_BANG_EQ] = ACTIONS(1280), - [anon_sym_LT2] = ACTIONS(1280), - [anon_sym_LT_EQ] = ACTIONS(1280), - [anon_sym_GT_EQ] = ACTIONS(1280), - [anon_sym_not_DASHin] = ACTIONS(1280), - [anon_sym_starts_DASHwith] = ACTIONS(1280), - [anon_sym_ends_DASHwith] = ACTIONS(1280), - [anon_sym_EQ_TILDE] = ACTIONS(1280), - [anon_sym_BANG_TILDE] = ACTIONS(1280), - [anon_sym_bit_DASHand] = ACTIONS(1280), - [anon_sym_bit_DASHxor] = ACTIONS(1280), - [anon_sym_bit_DASHor] = ACTIONS(1280), - [anon_sym_and] = ACTIONS(1280), - [anon_sym_xor] = ACTIONS(1280), - [anon_sym_or] = ACTIONS(1280), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1280), - [anon_sym_DOT_DOT_LT] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1280), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [aux_sym__val_number_decimal_token1] = ACTIONS(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1280), - [anon_sym_DOT2] = ACTIONS(1280), - [aux_sym__val_number_decimal_token3] = ACTIONS(1280), - [aux_sym__val_number_token1] = ACTIONS(1280), - [aux_sym__val_number_token2] = ACTIONS(1280), - [aux_sym__val_number_token3] = ACTIONS(1280), - [aux_sym__val_number_token4] = ACTIONS(1280), - [aux_sym__val_number_token5] = ACTIONS(1280), - [aux_sym__val_number_token6] = ACTIONS(1280), - [anon_sym_0b] = ACTIONS(1280), - [anon_sym_0o] = ACTIONS(1280), - [anon_sym_0x] = ACTIONS(1280), - [sym_val_date] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1282), - [sym__str_single_quotes] = ACTIONS(1282), - [sym__str_back_ticks] = ACTIONS(1282), - [anon_sym_err_GT] = ACTIONS(1280), - [anon_sym_out_GT] = ACTIONS(1280), - [anon_sym_e_GT] = ACTIONS(1280), - [anon_sym_o_GT] = ACTIONS(1280), - [anon_sym_err_PLUSout_GT] = ACTIONS(1280), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1280), - [anon_sym_o_PLUSe_GT] = ACTIONS(1280), - [anon_sym_e_PLUSo_GT] = ACTIONS(1280), - [aux_sym_unquoted_token6] = ACTIONS(1280), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1280), + [2231] = { + [sym_comment] = STATE(2231), + [ts_builtin_sym_end] = ACTIONS(1217), + [anon_sym_export] = ACTIONS(1215), + [anon_sym_alias] = ACTIONS(1215), + [anon_sym_let] = ACTIONS(1215), + [anon_sym_let_DASHenv] = ACTIONS(1215), + [anon_sym_mut] = ACTIONS(1215), + [anon_sym_const] = ACTIONS(1215), + [anon_sym_SEMI] = ACTIONS(1215), + [sym_cmd_identifier] = ACTIONS(1215), + [anon_sym_LF] = ACTIONS(1217), + [anon_sym_def] = ACTIONS(1215), + [anon_sym_export_DASHenv] = ACTIONS(1215), + [anon_sym_extern] = ACTIONS(1215), + [anon_sym_module] = ACTIONS(1215), + [anon_sym_use] = ACTIONS(1215), + [anon_sym_LBRACK] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1215), + [anon_sym_DOLLAR] = ACTIONS(1215), + [anon_sym_error] = ACTIONS(1215), + [anon_sym_DASH_DASH] = ACTIONS(1215), + [anon_sym_DASH] = ACTIONS(1215), + [anon_sym_break] = ACTIONS(1215), + [anon_sym_continue] = ACTIONS(1215), + [anon_sym_for] = ACTIONS(1215), + [anon_sym_loop] = ACTIONS(1215), + [anon_sym_while] = ACTIONS(1215), + [anon_sym_do] = ACTIONS(1215), + [anon_sym_if] = ACTIONS(1215), + [anon_sym_match] = ACTIONS(1215), + [anon_sym_LBRACE] = ACTIONS(1215), + [anon_sym_DOT_DOT] = ACTIONS(1215), + [anon_sym_try] = ACTIONS(1215), + [anon_sym_return] = ACTIONS(1215), + [anon_sym_source] = ACTIONS(1215), + [anon_sym_source_DASHenv] = ACTIONS(1215), + [anon_sym_register] = ACTIONS(1215), + [anon_sym_hide] = ACTIONS(1215), + [anon_sym_hide_DASHenv] = ACTIONS(1215), + [anon_sym_overlay] = ACTIONS(1215), + [anon_sym_as] = ACTIONS(1215), + [anon_sym_where] = ACTIONS(1215), + [anon_sym_not] = ACTIONS(1215), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1215), + [anon_sym_DOT_DOT_LT] = ACTIONS(1215), + [anon_sym_null] = ACTIONS(1215), + [anon_sym_true] = ACTIONS(1215), + [anon_sym_false] = ACTIONS(1215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1215), + [aux_sym__val_number_decimal_token2] = ACTIONS(1215), + [anon_sym_DOT2] = ACTIONS(1215), + [aux_sym__val_number_decimal_token3] = ACTIONS(1215), + [aux_sym__val_number_token1] = ACTIONS(1215), + [aux_sym__val_number_token2] = ACTIONS(1215), + [aux_sym__val_number_token3] = ACTIONS(1215), + [aux_sym__val_number_token4] = ACTIONS(1215), + [aux_sym__val_number_token5] = ACTIONS(1215), + [aux_sym__val_number_token6] = ACTIONS(1215), + [anon_sym_0b] = ACTIONS(1215), + [anon_sym_0o] = ACTIONS(1215), + [anon_sym_0x] = ACTIONS(1215), + [sym_val_date] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1215), + [sym__str_single_quotes] = ACTIONS(1215), + [sym__str_back_ticks] = ACTIONS(1215), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1215), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), + [anon_sym_CARET] = ACTIONS(1215), [anon_sym_POUND] = ACTIONS(113), }, - [1949] = { - [sym_comment] = STATE(1949), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_COMMA] = ACTIONS(1111), - [anon_sym_RBRACK] = ACTIONS(1111), - [anon_sym_LPAREN] = ACTIONS(1111), - [anon_sym_DOLLAR] = ACTIONS(1111), - [anon_sym_GT] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1111), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_in] = ACTIONS(1109), - [anon_sym_LBRACE] = ACTIONS(1111), - [anon_sym_DOT_DOT] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_STAR_STAR] = ACTIONS(1111), - [anon_sym_PLUS_PLUS] = ACTIONS(1111), - [anon_sym_SLASH] = ACTIONS(1109), - [anon_sym_mod] = ACTIONS(1111), - [anon_sym_SLASH_SLASH] = ACTIONS(1111), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_bit_DASHshl] = ACTIONS(1111), - [anon_sym_bit_DASHshr] = ACTIONS(1111), - [anon_sym_EQ_EQ] = ACTIONS(1111), - [anon_sym_BANG_EQ] = ACTIONS(1111), - [anon_sym_LT2] = ACTIONS(1109), - [anon_sym_LT_EQ] = ACTIONS(1111), - [anon_sym_GT_EQ] = ACTIONS(1111), - [anon_sym_not_DASHin] = ACTIONS(1111), - [anon_sym_starts_DASHwith] = ACTIONS(1111), - [anon_sym_ends_DASHwith] = ACTIONS(1111), - [anon_sym_EQ_TILDE] = ACTIONS(1111), - [anon_sym_BANG_TILDE] = ACTIONS(1111), - [anon_sym_bit_DASHand] = ACTIONS(1111), - [anon_sym_bit_DASHxor] = ACTIONS(1111), - [anon_sym_bit_DASHor] = ACTIONS(1111), - [anon_sym_and] = ACTIONS(1111), - [anon_sym_xor] = ACTIONS(1111), - [anon_sym_or] = ACTIONS(1111), - [anon_sym_DOT] = ACTIONS(1109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1111), - [anon_sym_DOT_DOT_LT] = ACTIONS(1111), - [anon_sym_null] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1111), - [anon_sym_false] = ACTIONS(1111), - [aux_sym__val_number_decimal_token1] = ACTIONS(1109), - [aux_sym__val_number_decimal_token2] = ACTIONS(1111), - [anon_sym_DOT2] = ACTIONS(1109), - [aux_sym__val_number_decimal_token3] = ACTIONS(1111), - [aux_sym__val_number_token1] = ACTIONS(1111), - [aux_sym__val_number_token2] = ACTIONS(1111), - [aux_sym__val_number_token3] = ACTIONS(1111), - [aux_sym__val_number_token4] = ACTIONS(1111), - [aux_sym__val_number_token5] = ACTIONS(1111), - [aux_sym__val_number_token6] = ACTIONS(1111), - [anon_sym_0b] = ACTIONS(1109), - [anon_sym_0o] = ACTIONS(1109), - [anon_sym_0x] = ACTIONS(1109), - [sym_val_date] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(1111), - [sym__str_single_quotes] = ACTIONS(1111), - [sym__str_back_ticks] = ACTIONS(1111), - [anon_sym_err_GT] = ACTIONS(1111), - [anon_sym_out_GT] = ACTIONS(1111), - [anon_sym_e_GT] = ACTIONS(1111), - [anon_sym_o_GT] = ACTIONS(1111), - [anon_sym_err_PLUSout_GT] = ACTIONS(1111), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1111), - [anon_sym_o_PLUSe_GT] = ACTIONS(1111), - [anon_sym_e_PLUSo_GT] = ACTIONS(1111), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1109), + [2232] = { + [sym_comment] = STATE(2232), + [anon_sym_LBRACK] = ACTIONS(1173), + [anon_sym_COMMA] = ACTIONS(1173), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_DOLLAR] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_RBRACE] = ACTIONS(1173), + [anon_sym__] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1173), + [anon_sym_SLASH_SLASH] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1173), + [anon_sym_bit_DASHshr] = ACTIONS(1173), + [anon_sym_EQ_EQ] = ACTIONS(1173), + [anon_sym_BANG_EQ] = ACTIONS(1173), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1173), + [anon_sym_GT_EQ] = ACTIONS(1173), + [anon_sym_not_DASHin] = ACTIONS(1173), + [anon_sym_starts_DASHwith] = ACTIONS(1173), + [anon_sym_ends_DASHwith] = ACTIONS(1173), + [anon_sym_EQ_TILDE] = ACTIONS(1173), + [anon_sym_BANG_TILDE] = ACTIONS(1173), + [anon_sym_bit_DASHand] = ACTIONS(1173), + [anon_sym_bit_DASHxor] = ACTIONS(1173), + [anon_sym_bit_DASHor] = ACTIONS(1173), + [anon_sym_and] = ACTIONS(1173), + [anon_sym_xor] = ACTIONS(1173), + [anon_sym_or] = ACTIONS(1173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1173), + [anon_sym_DOT_DOT_LT] = ACTIONS(1173), + [anon_sym_null] = ACTIONS(1173), + [anon_sym_true] = ACTIONS(1173), + [anon_sym_false] = ACTIONS(1173), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1173), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1173), + [aux_sym__val_number_token1] = ACTIONS(1173), + [aux_sym__val_number_token2] = ACTIONS(1173), + [aux_sym__val_number_token3] = ACTIONS(1173), + [aux_sym__val_number_token4] = ACTIONS(1173), + [aux_sym__val_number_token5] = ACTIONS(1173), + [aux_sym__val_number_token6] = ACTIONS(1173), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym__str_single_quotes] = ACTIONS(1173), + [sym__str_back_ticks] = ACTIONS(1173), + [anon_sym_err_GT] = ACTIONS(1173), + [anon_sym_out_GT] = ACTIONS(1173), + [anon_sym_e_GT] = ACTIONS(1173), + [anon_sym_o_GT] = ACTIONS(1173), + [anon_sym_err_PLUSout_GT] = ACTIONS(1173), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1173), + [anon_sym_o_PLUSe_GT] = ACTIONS(1173), + [anon_sym_e_PLUSo_GT] = ACTIONS(1173), + [aux_sym_unquoted_token1] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(3), }, - [1950] = { - [sym_comment] = STATE(1950), - [anon_sym_LBRACK] = ACTIONS(1115), - [anon_sym_COMMA] = ACTIONS(1115), - [anon_sym_RBRACK] = ACTIONS(1115), - [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_DOLLAR] = ACTIONS(1115), - [anon_sym_GT] = ACTIONS(1113), - [anon_sym_DASH_DASH] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_in] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1115), - [anon_sym_DOT_DOT] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_STAR_STAR] = ACTIONS(1115), - [anon_sym_PLUS_PLUS] = ACTIONS(1115), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_mod] = ACTIONS(1115), - [anon_sym_SLASH_SLASH] = ACTIONS(1115), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_bit_DASHshl] = ACTIONS(1115), - [anon_sym_bit_DASHshr] = ACTIONS(1115), - [anon_sym_EQ_EQ] = ACTIONS(1115), - [anon_sym_BANG_EQ] = ACTIONS(1115), - [anon_sym_LT2] = ACTIONS(1113), - [anon_sym_LT_EQ] = ACTIONS(1115), - [anon_sym_GT_EQ] = ACTIONS(1115), - [anon_sym_not_DASHin] = ACTIONS(1115), - [anon_sym_starts_DASHwith] = ACTIONS(1115), - [anon_sym_ends_DASHwith] = ACTIONS(1115), - [anon_sym_EQ_TILDE] = ACTIONS(1115), - [anon_sym_BANG_TILDE] = ACTIONS(1115), - [anon_sym_bit_DASHand] = ACTIONS(1115), - [anon_sym_bit_DASHxor] = ACTIONS(1115), - [anon_sym_bit_DASHor] = ACTIONS(1115), - [anon_sym_and] = ACTIONS(1115), - [anon_sym_xor] = ACTIONS(1115), - [anon_sym_or] = ACTIONS(1115), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1115), - [anon_sym_DOT_DOT_LT] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1115), - [anon_sym_true] = ACTIONS(1115), - [anon_sym_false] = ACTIONS(1115), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_decimal_token2] = ACTIONS(1115), - [anon_sym_DOT2] = ACTIONS(1113), - [aux_sym__val_number_decimal_token3] = ACTIONS(1115), - [aux_sym__val_number_token1] = ACTIONS(1115), - [aux_sym__val_number_token2] = ACTIONS(1115), - [aux_sym__val_number_token3] = ACTIONS(1115), - [aux_sym__val_number_token4] = ACTIONS(1115), - [aux_sym__val_number_token5] = ACTIONS(1115), - [aux_sym__val_number_token6] = ACTIONS(1115), - [anon_sym_0b] = ACTIONS(1113), - [anon_sym_0o] = ACTIONS(1113), - [anon_sym_0x] = ACTIONS(1113), - [sym_val_date] = ACTIONS(1115), - [anon_sym_DQUOTE] = ACTIONS(1115), - [sym__str_single_quotes] = ACTIONS(1115), - [sym__str_back_ticks] = ACTIONS(1115), - [anon_sym_err_GT] = ACTIONS(1115), - [anon_sym_out_GT] = ACTIONS(1115), - [anon_sym_e_GT] = ACTIONS(1115), - [anon_sym_o_GT] = ACTIONS(1115), - [anon_sym_err_PLUSout_GT] = ACTIONS(1115), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1115), - [anon_sym_o_PLUSe_GT] = ACTIONS(1115), - [anon_sym_e_PLUSo_GT] = ACTIONS(1115), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1113), + [2233] = { + [sym_comment] = STATE(2233), + [anon_sym_LBRACK] = ACTIONS(1157), + [anon_sym_COMMA] = ACTIONS(1157), + [anon_sym_LPAREN] = ACTIONS(1157), + [anon_sym_DOLLAR] = ACTIONS(1157), + [anon_sym_GT] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_in] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1157), + [anon_sym_RBRACE] = ACTIONS(1157), + [anon_sym__] = ACTIONS(1155), + [anon_sym_DOT_DOT] = ACTIONS(1155), + [anon_sym_STAR] = ACTIONS(1155), + [anon_sym_STAR_STAR] = ACTIONS(1157), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1155), + [anon_sym_mod] = ACTIONS(1157), + [anon_sym_SLASH_SLASH] = ACTIONS(1157), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_bit_DASHshl] = ACTIONS(1157), + [anon_sym_bit_DASHshr] = ACTIONS(1157), + [anon_sym_EQ_EQ] = ACTIONS(1157), + [anon_sym_BANG_EQ] = ACTIONS(1157), + [anon_sym_LT2] = ACTIONS(1155), + [anon_sym_LT_EQ] = ACTIONS(1157), + [anon_sym_GT_EQ] = ACTIONS(1157), + [anon_sym_not_DASHin] = ACTIONS(1157), + [anon_sym_starts_DASHwith] = ACTIONS(1157), + [anon_sym_ends_DASHwith] = ACTIONS(1157), + [anon_sym_EQ_TILDE] = ACTIONS(1157), + [anon_sym_BANG_TILDE] = ACTIONS(1157), + [anon_sym_bit_DASHand] = ACTIONS(1157), + [anon_sym_bit_DASHxor] = ACTIONS(1157), + [anon_sym_bit_DASHor] = ACTIONS(1157), + [anon_sym_and] = ACTIONS(1157), + [anon_sym_xor] = ACTIONS(1157), + [anon_sym_or] = ACTIONS(1157), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1157), + [anon_sym_DOT_DOT_LT] = ACTIONS(1157), + [anon_sym_null] = ACTIONS(1157), + [anon_sym_true] = ACTIONS(1157), + [anon_sym_false] = ACTIONS(1157), + [aux_sym__val_number_decimal_token1] = ACTIONS(1155), + [aux_sym__val_number_decimal_token2] = ACTIONS(1157), + [anon_sym_DOT2] = ACTIONS(1155), + [aux_sym__val_number_decimal_token3] = ACTIONS(1157), + [aux_sym__val_number_token1] = ACTIONS(1157), + [aux_sym__val_number_token2] = ACTIONS(1157), + [aux_sym__val_number_token3] = ACTIONS(1157), + [aux_sym__val_number_token4] = ACTIONS(1157), + [aux_sym__val_number_token5] = ACTIONS(1157), + [aux_sym__val_number_token6] = ACTIONS(1157), + [anon_sym_0b] = ACTIONS(1155), + [anon_sym_0o] = ACTIONS(1155), + [anon_sym_0x] = ACTIONS(1155), + [sym_val_date] = ACTIONS(1157), + [anon_sym_DQUOTE] = ACTIONS(1157), + [sym__str_single_quotes] = ACTIONS(1157), + [sym__str_back_ticks] = ACTIONS(1157), + [anon_sym_err_GT] = ACTIONS(1157), + [anon_sym_out_GT] = ACTIONS(1157), + [anon_sym_e_GT] = ACTIONS(1157), + [anon_sym_o_GT] = ACTIONS(1157), + [anon_sym_err_PLUSout_GT] = ACTIONS(1157), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1157), + [anon_sym_o_PLUSe_GT] = ACTIONS(1157), + [anon_sym_e_PLUSo_GT] = ACTIONS(1157), + [aux_sym_unquoted_token1] = ACTIONS(1155), [anon_sym_POUND] = ACTIONS(3), }, - [1951] = { - [sym_comment] = STATE(1951), - [anon_sym_LBRACK] = ACTIONS(1119), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_LPAREN] = ACTIONS(1119), - [anon_sym_DOLLAR] = ACTIONS(1119), - [anon_sym_GT] = ACTIONS(1117), - [anon_sym_DASH_DASH] = ACTIONS(1119), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1117), - [anon_sym_LBRACE] = ACTIONS(1119), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_STAR] = ACTIONS(1117), - [anon_sym_STAR_STAR] = ACTIONS(1119), - [anon_sym_PLUS_PLUS] = ACTIONS(1119), - [anon_sym_SLASH] = ACTIONS(1117), - [anon_sym_mod] = ACTIONS(1119), - [anon_sym_SLASH_SLASH] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1117), - [anon_sym_bit_DASHshl] = ACTIONS(1119), - [anon_sym_bit_DASHshr] = ACTIONS(1119), - [anon_sym_EQ_EQ] = ACTIONS(1119), - [anon_sym_BANG_EQ] = ACTIONS(1119), - [anon_sym_LT2] = ACTIONS(1117), - [anon_sym_LT_EQ] = ACTIONS(1119), - [anon_sym_GT_EQ] = ACTIONS(1119), - [anon_sym_not_DASHin] = ACTIONS(1119), - [anon_sym_starts_DASHwith] = ACTIONS(1119), - [anon_sym_ends_DASHwith] = ACTIONS(1119), - [anon_sym_EQ_TILDE] = ACTIONS(1119), - [anon_sym_BANG_TILDE] = ACTIONS(1119), - [anon_sym_bit_DASHand] = ACTIONS(1119), - [anon_sym_bit_DASHxor] = ACTIONS(1119), - [anon_sym_bit_DASHor] = ACTIONS(1119), - [anon_sym_and] = ACTIONS(1119), - [anon_sym_xor] = ACTIONS(1119), - [anon_sym_or] = ACTIONS(1119), - [anon_sym_DOT] = ACTIONS(1117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1119), - [anon_sym_DOT_DOT_LT] = ACTIONS(1119), - [anon_sym_null] = ACTIONS(1119), - [anon_sym_true] = ACTIONS(1119), - [anon_sym_false] = ACTIONS(1119), - [aux_sym__val_number_decimal_token1] = ACTIONS(1117), - [aux_sym__val_number_decimal_token2] = ACTIONS(1119), - [anon_sym_DOT2] = ACTIONS(1117), - [aux_sym__val_number_decimal_token3] = ACTIONS(1119), - [aux_sym__val_number_token1] = ACTIONS(1119), - [aux_sym__val_number_token2] = ACTIONS(1119), - [aux_sym__val_number_token3] = ACTIONS(1119), - [aux_sym__val_number_token4] = ACTIONS(1119), - [aux_sym__val_number_token5] = ACTIONS(1119), - [aux_sym__val_number_token6] = ACTIONS(1119), - [anon_sym_0b] = ACTIONS(1117), - [anon_sym_0o] = ACTIONS(1117), - [anon_sym_0x] = ACTIONS(1117), - [sym_val_date] = ACTIONS(1119), - [anon_sym_DQUOTE] = ACTIONS(1119), - [sym__str_single_quotes] = ACTIONS(1119), - [sym__str_back_ticks] = ACTIONS(1119), - [anon_sym_err_GT] = ACTIONS(1119), - [anon_sym_out_GT] = ACTIONS(1119), - [anon_sym_e_GT] = ACTIONS(1119), - [anon_sym_o_GT] = ACTIONS(1119), - [anon_sym_err_PLUSout_GT] = ACTIONS(1119), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1119), - [anon_sym_o_PLUSe_GT] = ACTIONS(1119), - [anon_sym_e_PLUSo_GT] = ACTIONS(1119), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1117), + [2234] = { + [sym_comment] = STATE(2234), + [anon_sym_LBRACK] = ACTIONS(1173), + [anon_sym_COMMA] = ACTIONS(1173), + [anon_sym_RBRACK] = ACTIONS(1173), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_DOLLAR] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1173), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1173), + [anon_sym_SLASH_SLASH] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1173), + [anon_sym_bit_DASHshr] = ACTIONS(1173), + [anon_sym_EQ_EQ] = ACTIONS(1173), + [anon_sym_BANG_EQ] = ACTIONS(1173), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1173), + [anon_sym_GT_EQ] = ACTIONS(1173), + [anon_sym_not_DASHin] = ACTIONS(1173), + [anon_sym_starts_DASHwith] = ACTIONS(1173), + [anon_sym_ends_DASHwith] = ACTIONS(1173), + [anon_sym_EQ_TILDE] = ACTIONS(1173), + [anon_sym_BANG_TILDE] = ACTIONS(1173), + [anon_sym_bit_DASHand] = ACTIONS(1173), + [anon_sym_bit_DASHxor] = ACTIONS(1173), + [anon_sym_bit_DASHor] = ACTIONS(1173), + [anon_sym_and] = ACTIONS(1173), + [anon_sym_xor] = ACTIONS(1173), + [anon_sym_or] = ACTIONS(1173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1173), + [anon_sym_DOT_DOT_LT] = ACTIONS(1173), + [anon_sym_null] = ACTIONS(1173), + [anon_sym_true] = ACTIONS(1173), + [anon_sym_false] = ACTIONS(1173), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1173), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1173), + [aux_sym__val_number_token1] = ACTIONS(1173), + [aux_sym__val_number_token2] = ACTIONS(1173), + [aux_sym__val_number_token3] = ACTIONS(1173), + [aux_sym__val_number_token4] = ACTIONS(1173), + [aux_sym__val_number_token5] = ACTIONS(1173), + [aux_sym__val_number_token6] = ACTIONS(1173), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym__str_single_quotes] = ACTIONS(1173), + [sym__str_back_ticks] = ACTIONS(1173), + [anon_sym_err_GT] = ACTIONS(1173), + [anon_sym_out_GT] = ACTIONS(1173), + [anon_sym_e_GT] = ACTIONS(1173), + [anon_sym_o_GT] = ACTIONS(1173), + [anon_sym_err_PLUSout_GT] = ACTIONS(1173), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1173), + [anon_sym_o_PLUSe_GT] = ACTIONS(1173), + [anon_sym_e_PLUSo_GT] = ACTIONS(1173), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(3), }, - [1952] = { - [sym__expression] = STATE(7373), - [sym_expr_unary] = STATE(5715), - [sym__expr_unary_minus] = STATE(5723), - [sym_expr_binary] = STATE(5715), - [sym__expr_binary_expression] = STATE(6788), - [sym_expr_parenthesized] = STATE(5176), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(5715), - [sym_val_nothing] = STATE(5705), - [sym_val_bool] = STATE(5705), - [sym_val_variable] = STATE(5170), - [sym__var] = STATE(4674), - [sym_val_number] = STATE(5705), - [sym__val_number_decimal] = STATE(4718), - [sym__val_number] = STATE(5875), - [sym_val_duration] = STATE(5705), - [sym_val_filesize] = STATE(5705), - [sym_val_binary] = STATE(5705), - [sym_val_string] = STATE(5705), - [sym__str_double_quotes] = STATE(5788), - [sym_val_interpolated] = STATE(5705), - [sym__inter_single_quotes] = STATE(5899), - [sym__inter_double_quotes] = STATE(5903), - [sym_val_list] = STATE(5705), - [sym_val_record] = STATE(5705), - [sym_val_table] = STATE(5705), - [sym_val_closure] = STATE(5705), - [sym__flag] = STATE(2064), - [sym_short_flag] = STATE(5044), - [sym_long_flag] = STATE(5044), - [sym_long_flag_equals_value] = STATE(5143), - [sym_comment] = STATE(1952), - [anon_sym_SEMI] = ACTIONS(5437), - [anon_sym_LF] = ACTIONS(5439), - [anon_sym_LBRACK] = ACTIONS(5371), - [anon_sym_LPAREN] = ACTIONS(5373), - [anon_sym_RPAREN] = ACTIONS(5437), - [anon_sym_PIPE] = ACTIONS(5437), - [anon_sym_DOLLAR] = ACTIONS(3317), - [anon_sym_DASH_DASH] = ACTIONS(5375), - [anon_sym_DASH] = ACTIONS(5377), - [anon_sym_LBRACE] = ACTIONS(5379), - [anon_sym_RBRACE] = ACTIONS(5437), - [anon_sym_DOT_DOT] = ACTIONS(5381), - [anon_sym_not] = ACTIONS(5383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5385), - [anon_sym_DOT_DOT_LT] = ACTIONS(5385), - [anon_sym_null] = ACTIONS(5387), - [anon_sym_true] = ACTIONS(5389), - [anon_sym_false] = ACTIONS(5389), - [aux_sym__val_number_decimal_token1] = ACTIONS(5391), - [aux_sym__val_number_decimal_token2] = ACTIONS(5391), - [anon_sym_DOT2] = ACTIONS(5393), - [aux_sym__val_number_decimal_token3] = ACTIONS(5395), - [aux_sym__val_number_token1] = ACTIONS(5397), - [aux_sym__val_number_token2] = ACTIONS(5397), - [aux_sym__val_number_token3] = ACTIONS(5397), - [aux_sym__val_number_token4] = ACTIONS(5397), - [aux_sym__val_number_token5] = ACTIONS(5397), - [aux_sym__val_number_token6] = ACTIONS(5397), - [anon_sym_0b] = ACTIONS(3345), - [anon_sym_0o] = ACTIONS(3347), - [anon_sym_0x] = ACTIONS(3347), - [sym_val_date] = ACTIONS(5399), - [anon_sym_DQUOTE] = ACTIONS(5401), - [sym__str_single_quotes] = ACTIONS(5403), - [sym__str_back_ticks] = ACTIONS(5403), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5405), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5407), + [2235] = { + [sym_comment] = STATE(2235), + [anon_sym_SEMI] = ACTIONS(1072), + [anon_sym_LF] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1072), + [anon_sym_LPAREN] = ACTIONS(1072), + [anon_sym_RPAREN] = ACTIONS(1072), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_DOLLAR] = ACTIONS(1072), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_DASH_DASH] = ACTIONS(1072), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_in] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1072), + [anon_sym_DOT_DOT] = ACTIONS(1072), + [anon_sym_STAR] = ACTIONS(1076), + [anon_sym_STAR_STAR] = ACTIONS(1076), + [anon_sym_PLUS_PLUS] = ACTIONS(1076), + [anon_sym_SLASH] = ACTIONS(1076), + [anon_sym_mod] = ACTIONS(1076), + [anon_sym_SLASH_SLASH] = ACTIONS(1076), + [anon_sym_PLUS] = ACTIONS(1076), + [anon_sym_bit_DASHshl] = ACTIONS(1076), + [anon_sym_bit_DASHshr] = ACTIONS(1076), + [anon_sym_EQ_EQ] = ACTIONS(1076), + [anon_sym_BANG_EQ] = ACTIONS(1076), + [anon_sym_LT2] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1076), + [anon_sym_GT_EQ] = ACTIONS(1076), + [anon_sym_not_DASHin] = ACTIONS(1076), + [anon_sym_starts_DASHwith] = ACTIONS(1076), + [anon_sym_ends_DASHwith] = ACTIONS(1076), + [anon_sym_EQ_TILDE] = ACTIONS(1076), + [anon_sym_BANG_TILDE] = ACTIONS(1076), + [anon_sym_bit_DASHand] = ACTIONS(1076), + [anon_sym_bit_DASHxor] = ACTIONS(1076), + [anon_sym_bit_DASHor] = ACTIONS(1076), + [anon_sym_and] = ACTIONS(1076), + [anon_sym_xor] = ACTIONS(1076), + [anon_sym_or] = ACTIONS(1076), + [anon_sym_not] = ACTIONS(1072), + [anon_sym_DOT_DOT2] = ACTIONS(5899), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1072), + [anon_sym_DOT_DOT_LT] = ACTIONS(1072), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(5901), + [anon_sym_DOT_DOT_LT2] = ACTIONS(5901), + [anon_sym_null] = ACTIONS(1072), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [aux_sym__val_number_decimal_token1] = ACTIONS(1072), + [aux_sym__val_number_decimal_token2] = ACTIONS(1072), + [anon_sym_DOT2] = ACTIONS(1072), + [aux_sym__val_number_decimal_token3] = ACTIONS(1072), + [aux_sym__val_number_token1] = ACTIONS(1072), + [aux_sym__val_number_token2] = ACTIONS(1072), + [aux_sym__val_number_token3] = ACTIONS(1072), + [aux_sym__val_number_token4] = ACTIONS(1072), + [aux_sym__val_number_token5] = ACTIONS(1072), + [aux_sym__val_number_token6] = ACTIONS(1072), + [anon_sym_0b] = ACTIONS(1072), + [anon_sym_0o] = ACTIONS(1072), + [anon_sym_0x] = ACTIONS(1072), + [sym_val_date] = ACTIONS(1072), + [anon_sym_DQUOTE] = ACTIONS(1072), + [sym__str_single_quotes] = ACTIONS(1072), + [sym__str_back_ticks] = ACTIONS(1072), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1072), [anon_sym_POUND] = ACTIONS(113), }, - [1953] = { - [sym__expression] = STATE(7373), - [sym_expr_unary] = STATE(5715), - [sym__expr_unary_minus] = STATE(5723), - [sym_expr_binary] = STATE(5715), - [sym__expr_binary_expression] = STATE(6788), - [sym_expr_parenthesized] = STATE(5176), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(5715), - [sym_val_nothing] = STATE(5705), - [sym_val_bool] = STATE(5705), - [sym_val_variable] = STATE(5170), - [sym__var] = STATE(4674), - [sym_val_number] = STATE(5705), - [sym__val_number_decimal] = STATE(4718), - [sym__val_number] = STATE(5875), - [sym_val_duration] = STATE(5705), - [sym_val_filesize] = STATE(5705), - [sym_val_binary] = STATE(5705), - [sym_val_string] = STATE(5705), - [sym__str_double_quotes] = STATE(5788), - [sym_val_interpolated] = STATE(5705), - [sym__inter_single_quotes] = STATE(5899), - [sym__inter_double_quotes] = STATE(5903), - [sym_val_list] = STATE(5705), - [sym_val_record] = STATE(5705), - [sym_val_table] = STATE(5705), - [sym_val_closure] = STATE(5705), - [sym__flag] = STATE(2065), - [sym_short_flag] = STATE(5044), - [sym_long_flag] = STATE(5044), - [sym_long_flag_equals_value] = STATE(5143), - [sym_comment] = STATE(1953), - [anon_sym_SEMI] = ACTIONS(5437), - [anon_sym_LF] = ACTIONS(5439), - [anon_sym_LBRACK] = ACTIONS(5371), - [anon_sym_LPAREN] = ACTIONS(5373), - [anon_sym_RPAREN] = ACTIONS(5437), - [anon_sym_PIPE] = ACTIONS(5437), - [anon_sym_DOLLAR] = ACTIONS(3317), - [anon_sym_DASH_DASH] = ACTIONS(5375), - [anon_sym_DASH] = ACTIONS(5377), - [anon_sym_LBRACE] = ACTIONS(5379), - [anon_sym_RBRACE] = ACTIONS(5437), - [anon_sym_DOT_DOT] = ACTIONS(5381), - [anon_sym_not] = ACTIONS(5383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5385), - [anon_sym_DOT_DOT_LT] = ACTIONS(5385), - [anon_sym_null] = ACTIONS(5387), - [anon_sym_true] = ACTIONS(5389), - [anon_sym_false] = ACTIONS(5389), - [aux_sym__val_number_decimal_token1] = ACTIONS(5391), - [aux_sym__val_number_decimal_token2] = ACTIONS(5391), - [anon_sym_DOT2] = ACTIONS(5393), - [aux_sym__val_number_decimal_token3] = ACTIONS(5395), - [aux_sym__val_number_token1] = ACTIONS(5397), - [aux_sym__val_number_token2] = ACTIONS(5397), - [aux_sym__val_number_token3] = ACTIONS(5397), - [aux_sym__val_number_token4] = ACTIONS(5397), - [aux_sym__val_number_token5] = ACTIONS(5397), - [aux_sym__val_number_token6] = ACTIONS(5397), - [anon_sym_0b] = ACTIONS(3345), - [anon_sym_0o] = ACTIONS(3347), - [anon_sym_0x] = ACTIONS(3347), - [sym_val_date] = ACTIONS(5399), - [anon_sym_DQUOTE] = ACTIONS(5401), - [sym__str_single_quotes] = ACTIONS(5403), - [sym__str_back_ticks] = ACTIONS(5403), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5405), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5407), + [2236] = { + [sym_comment] = STATE(2236), + [anon_sym_LBRACK] = ACTIONS(1173), + [anon_sym_COMMA] = ACTIONS(1173), + [anon_sym_RBRACK] = ACTIONS(1173), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_DOLLAR] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1173), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1173), + [anon_sym_SLASH_SLASH] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1173), + [anon_sym_bit_DASHshr] = ACTIONS(1173), + [anon_sym_EQ_EQ] = ACTIONS(1173), + [anon_sym_BANG_EQ] = ACTIONS(1173), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1173), + [anon_sym_GT_EQ] = ACTIONS(1173), + [anon_sym_not_DASHin] = ACTIONS(1173), + [anon_sym_starts_DASHwith] = ACTIONS(1173), + [anon_sym_ends_DASHwith] = ACTIONS(1173), + [anon_sym_EQ_TILDE] = ACTIONS(1173), + [anon_sym_BANG_TILDE] = ACTIONS(1173), + [anon_sym_bit_DASHand] = ACTIONS(1173), + [anon_sym_bit_DASHxor] = ACTIONS(1173), + [anon_sym_bit_DASHor] = ACTIONS(1173), + [anon_sym_and] = ACTIONS(1173), + [anon_sym_xor] = ACTIONS(1173), + [anon_sym_or] = ACTIONS(1173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1173), + [anon_sym_DOT_DOT_LT] = ACTIONS(1173), + [anon_sym_null] = ACTIONS(1173), + [anon_sym_true] = ACTIONS(1173), + [anon_sym_false] = ACTIONS(1173), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1173), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1173), + [aux_sym__val_number_token1] = ACTIONS(1173), + [aux_sym__val_number_token2] = ACTIONS(1173), + [aux_sym__val_number_token3] = ACTIONS(1173), + [aux_sym__val_number_token4] = ACTIONS(1173), + [aux_sym__val_number_token5] = ACTIONS(1173), + [aux_sym__val_number_token6] = ACTIONS(1173), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym__str_single_quotes] = ACTIONS(1173), + [sym__str_back_ticks] = ACTIONS(1173), + [anon_sym_err_GT] = ACTIONS(1173), + [anon_sym_out_GT] = ACTIONS(1173), + [anon_sym_e_GT] = ACTIONS(1173), + [anon_sym_o_GT] = ACTIONS(1173), + [anon_sym_err_PLUSout_GT] = ACTIONS(1173), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1173), + [anon_sym_o_PLUSe_GT] = ACTIONS(1173), + [anon_sym_e_PLUSo_GT] = ACTIONS(1173), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(3), + }, + [2237] = { + [sym_comment] = STATE(2237), + [ts_builtin_sym_end] = ACTIONS(4738), + [anon_sym_export] = ACTIONS(4734), + [anon_sym_alias] = ACTIONS(4734), + [anon_sym_let] = ACTIONS(4734), + [anon_sym_let_DASHenv] = ACTIONS(4734), + [anon_sym_mut] = ACTIONS(4734), + [anon_sym_const] = ACTIONS(4734), + [anon_sym_SEMI] = ACTIONS(4734), + [sym_cmd_identifier] = ACTIONS(4734), + [anon_sym_LF] = ACTIONS(4738), + [anon_sym_def] = ACTIONS(4734), + [anon_sym_export_DASHenv] = ACTIONS(4734), + [anon_sym_extern] = ACTIONS(4734), + [anon_sym_module] = ACTIONS(4734), + [anon_sym_use] = ACTIONS(4734), + [anon_sym_LBRACK] = ACTIONS(4734), + [anon_sym_LPAREN] = ACTIONS(4734), + [anon_sym_DOLLAR] = ACTIONS(4734), + [anon_sym_error] = ACTIONS(4734), + [anon_sym_DASH_DASH] = ACTIONS(4734), + [anon_sym_DASH] = ACTIONS(4734), + [anon_sym_break] = ACTIONS(4734), + [anon_sym_continue] = ACTIONS(4734), + [anon_sym_for] = ACTIONS(4734), + [anon_sym_loop] = ACTIONS(4734), + [anon_sym_while] = ACTIONS(4734), + [anon_sym_do] = ACTIONS(4734), + [anon_sym_if] = ACTIONS(4734), + [anon_sym_match] = ACTIONS(4734), + [anon_sym_LBRACE] = ACTIONS(4734), + [anon_sym_DOT_DOT] = ACTIONS(4734), + [anon_sym_try] = ACTIONS(4734), + [anon_sym_return] = ACTIONS(4734), + [anon_sym_source] = ACTIONS(4734), + [anon_sym_source_DASHenv] = ACTIONS(4734), + [anon_sym_register] = ACTIONS(4734), + [anon_sym_hide] = ACTIONS(4734), + [anon_sym_hide_DASHenv] = ACTIONS(4734), + [anon_sym_overlay] = ACTIONS(4734), + [anon_sym_as] = ACTIONS(4734), + [anon_sym_where] = ACTIONS(4734), + [anon_sym_not] = ACTIONS(4734), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4734), + [anon_sym_DOT_DOT_LT] = ACTIONS(4734), + [anon_sym_null] = ACTIONS(4734), + [anon_sym_true] = ACTIONS(4734), + [anon_sym_false] = ACTIONS(4734), + [aux_sym__val_number_decimal_token1] = ACTIONS(4734), + [aux_sym__val_number_decimal_token2] = ACTIONS(4734), + [anon_sym_DOT2] = ACTIONS(4734), + [aux_sym__val_number_decimal_token3] = ACTIONS(4734), + [aux_sym__val_number_token1] = ACTIONS(4734), + [aux_sym__val_number_token2] = ACTIONS(4734), + [aux_sym__val_number_token3] = ACTIONS(4734), + [aux_sym__val_number_token4] = ACTIONS(4734), + [aux_sym__val_number_token5] = ACTIONS(4734), + [aux_sym__val_number_token6] = ACTIONS(4734), + [anon_sym_0b] = ACTIONS(4734), + [anon_sym_0o] = ACTIONS(4734), + [anon_sym_0x] = ACTIONS(4734), + [sym_val_date] = ACTIONS(4734), + [anon_sym_DQUOTE] = ACTIONS(4734), + [sym__str_single_quotes] = ACTIONS(4734), + [sym__str_back_ticks] = ACTIONS(4734), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4734), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4734), + [anon_sym_CARET] = ACTIONS(4734), [anon_sym_POUND] = ACTIONS(113), }, - [1954] = { - [sym__expression] = STATE(7373), - [sym_expr_unary] = STATE(5715), - [sym__expr_unary_minus] = STATE(5723), - [sym_expr_binary] = STATE(5715), - [sym__expr_binary_expression] = STATE(6788), - [sym_expr_parenthesized] = STATE(5176), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(5715), - [sym_val_nothing] = STATE(5705), - [sym_val_bool] = STATE(5705), - [sym_val_variable] = STATE(5170), - [sym__var] = STATE(4674), - [sym_val_number] = STATE(5705), - [sym__val_number_decimal] = STATE(4718), - [sym__val_number] = STATE(5875), - [sym_val_duration] = STATE(5705), - [sym_val_filesize] = STATE(5705), - [sym_val_binary] = STATE(5705), - [sym_val_string] = STATE(5705), - [sym__str_double_quotes] = STATE(5788), - [sym_val_interpolated] = STATE(5705), - [sym__inter_single_quotes] = STATE(5899), - [sym__inter_double_quotes] = STATE(5903), - [sym_val_list] = STATE(5705), - [sym_val_record] = STATE(5705), - [sym_val_table] = STATE(5705), - [sym_val_closure] = STATE(5705), - [sym__flag] = STATE(2066), - [sym_short_flag] = STATE(5044), - [sym_long_flag] = STATE(5044), - [sym_long_flag_equals_value] = STATE(5143), - [sym_comment] = STATE(1954), - [anon_sym_SEMI] = ACTIONS(5437), - [anon_sym_LF] = ACTIONS(5439), - [anon_sym_LBRACK] = ACTIONS(5371), - [anon_sym_LPAREN] = ACTIONS(5373), - [anon_sym_RPAREN] = ACTIONS(5437), - [anon_sym_PIPE] = ACTIONS(5437), - [anon_sym_DOLLAR] = ACTIONS(3317), - [anon_sym_DASH_DASH] = ACTIONS(5375), - [anon_sym_DASH] = ACTIONS(5377), - [anon_sym_LBRACE] = ACTIONS(5379), - [anon_sym_RBRACE] = ACTIONS(5437), - [anon_sym_DOT_DOT] = ACTIONS(5381), - [anon_sym_not] = ACTIONS(5383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5385), - [anon_sym_DOT_DOT_LT] = ACTIONS(5385), - [anon_sym_null] = ACTIONS(5387), - [anon_sym_true] = ACTIONS(5389), - [anon_sym_false] = ACTIONS(5389), - [aux_sym__val_number_decimal_token1] = ACTIONS(5391), - [aux_sym__val_number_decimal_token2] = ACTIONS(5391), - [anon_sym_DOT2] = ACTIONS(5393), - [aux_sym__val_number_decimal_token3] = ACTIONS(5395), - [aux_sym__val_number_token1] = ACTIONS(5397), - [aux_sym__val_number_token2] = ACTIONS(5397), - [aux_sym__val_number_token3] = ACTIONS(5397), - [aux_sym__val_number_token4] = ACTIONS(5397), - [aux_sym__val_number_token5] = ACTIONS(5397), - [aux_sym__val_number_token6] = ACTIONS(5397), - [anon_sym_0b] = ACTIONS(3345), - [anon_sym_0o] = ACTIONS(3347), - [anon_sym_0x] = ACTIONS(3347), - [sym_val_date] = ACTIONS(5399), - [anon_sym_DQUOTE] = ACTIONS(5401), - [sym__str_single_quotes] = ACTIONS(5403), - [sym__str_back_ticks] = ACTIONS(5403), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5405), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5407), + [2238] = { + [sym_comment] = STATE(2238), + [anon_sym_LBRACK] = ACTIONS(1173), + [anon_sym_COMMA] = ACTIONS(1173), + [anon_sym_RBRACK] = ACTIONS(1173), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_DOLLAR] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1173), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1173), + [anon_sym_SLASH_SLASH] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1173), + [anon_sym_bit_DASHshr] = ACTIONS(1173), + [anon_sym_EQ_EQ] = ACTIONS(1173), + [anon_sym_BANG_EQ] = ACTIONS(1173), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1173), + [anon_sym_GT_EQ] = ACTIONS(1173), + [anon_sym_not_DASHin] = ACTIONS(1173), + [anon_sym_starts_DASHwith] = ACTIONS(1173), + [anon_sym_ends_DASHwith] = ACTIONS(1173), + [anon_sym_EQ_TILDE] = ACTIONS(1173), + [anon_sym_BANG_TILDE] = ACTIONS(1173), + [anon_sym_bit_DASHand] = ACTIONS(1173), + [anon_sym_bit_DASHxor] = ACTIONS(1173), + [anon_sym_bit_DASHor] = ACTIONS(1173), + [anon_sym_and] = ACTIONS(1173), + [anon_sym_xor] = ACTIONS(1173), + [anon_sym_or] = ACTIONS(1173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1173), + [anon_sym_DOT_DOT_LT] = ACTIONS(1173), + [anon_sym_null] = ACTIONS(1173), + [anon_sym_true] = ACTIONS(1173), + [anon_sym_false] = ACTIONS(1173), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1173), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1173), + [aux_sym__val_number_token1] = ACTIONS(1173), + [aux_sym__val_number_token2] = ACTIONS(1173), + [aux_sym__val_number_token3] = ACTIONS(1173), + [aux_sym__val_number_token4] = ACTIONS(1173), + [aux_sym__val_number_token5] = ACTIONS(1173), + [aux_sym__val_number_token6] = ACTIONS(1173), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym__str_single_quotes] = ACTIONS(1173), + [sym__str_back_ticks] = ACTIONS(1173), + [anon_sym_err_GT] = ACTIONS(1173), + [anon_sym_out_GT] = ACTIONS(1173), + [anon_sym_e_GT] = ACTIONS(1173), + [anon_sym_o_GT] = ACTIONS(1173), + [anon_sym_err_PLUSout_GT] = ACTIONS(1173), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1173), + [anon_sym_o_PLUSe_GT] = ACTIONS(1173), + [anon_sym_e_PLUSo_GT] = ACTIONS(1173), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(3), + }, + [2239] = { + [sym_comment] = STATE(2239), + [anon_sym_export] = ACTIONS(1020), + [anon_sym_alias] = ACTIONS(1020), + [anon_sym_let] = ACTIONS(1020), + [anon_sym_let_DASHenv] = ACTIONS(1020), + [anon_sym_mut] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1020), + [sym_cmd_identifier] = ACTIONS(1020), + [anon_sym_LF] = ACTIONS(1022), + [anon_sym_def] = ACTIONS(1020), + [anon_sym_export_DASHenv] = ACTIONS(1020), + [anon_sym_extern] = ACTIONS(1020), + [anon_sym_module] = ACTIONS(1020), + [anon_sym_use] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1020), + [anon_sym_RPAREN] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_error] = ACTIONS(1020), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_loop] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_match] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_RBRACE] = ACTIONS(1020), + [anon_sym_DOT_DOT] = ACTIONS(1020), + [anon_sym_try] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_source] = ACTIONS(1020), + [anon_sym_source_DASHenv] = ACTIONS(1020), + [anon_sym_register] = ACTIONS(1020), + [anon_sym_hide] = ACTIONS(1020), + [anon_sym_hide_DASHenv] = ACTIONS(1020), + [anon_sym_overlay] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_where] = ACTIONS(1020), + [anon_sym_not] = ACTIONS(1020), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1020), + [anon_sym_DOT_DOT_LT] = ACTIONS(1020), + [anon_sym_null] = ACTIONS(1020), + [anon_sym_true] = ACTIONS(1020), + [anon_sym_false] = ACTIONS(1020), + [aux_sym__val_number_decimal_token1] = ACTIONS(1020), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [anon_sym_DOT2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1020), + [aux_sym__val_number_token1] = ACTIONS(1020), + [aux_sym__val_number_token2] = ACTIONS(1020), + [aux_sym__val_number_token3] = ACTIONS(1020), + [aux_sym__val_number_token4] = ACTIONS(1020), + [aux_sym__val_number_token5] = ACTIONS(1020), + [aux_sym__val_number_token6] = ACTIONS(1020), + [anon_sym_0b] = ACTIONS(1020), + [anon_sym_0o] = ACTIONS(1020), + [anon_sym_0x] = ACTIONS(1020), + [sym_val_date] = ACTIONS(1020), + [anon_sym_DQUOTE] = ACTIONS(1020), + [sym__str_single_quotes] = ACTIONS(1020), + [sym__str_back_ticks] = ACTIONS(1020), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1020), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1020), + [anon_sym_CARET] = ACTIONS(1020), [anon_sym_POUND] = ACTIONS(113), }, - [1955] = { - [sym__expression] = STATE(7373), - [sym_expr_unary] = STATE(5715), - [sym__expr_unary_minus] = STATE(5723), - [sym_expr_binary] = STATE(5715), - [sym__expr_binary_expression] = STATE(6788), - [sym_expr_parenthesized] = STATE(5176), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(5715), - [sym_val_nothing] = STATE(5705), - [sym_val_bool] = STATE(5705), - [sym_val_variable] = STATE(5170), - [sym__var] = STATE(4674), - [sym_val_number] = STATE(5705), - [sym__val_number_decimal] = STATE(4718), - [sym__val_number] = STATE(5875), - [sym_val_duration] = STATE(5705), - [sym_val_filesize] = STATE(5705), - [sym_val_binary] = STATE(5705), - [sym_val_string] = STATE(5705), - [sym__str_double_quotes] = STATE(5788), - [sym_val_interpolated] = STATE(5705), - [sym__inter_single_quotes] = STATE(5899), - [sym__inter_double_quotes] = STATE(5903), - [sym_val_list] = STATE(5705), - [sym_val_record] = STATE(5705), - [sym_val_table] = STATE(5705), - [sym_val_closure] = STATE(5705), - [sym__flag] = STATE(2067), - [sym_short_flag] = STATE(5044), - [sym_long_flag] = STATE(5044), - [sym_long_flag_equals_value] = STATE(5143), - [sym_comment] = STATE(1955), - [anon_sym_SEMI] = ACTIONS(5437), - [anon_sym_LF] = ACTIONS(5439), - [anon_sym_LBRACK] = ACTIONS(5371), - [anon_sym_LPAREN] = ACTIONS(5373), - [anon_sym_RPAREN] = ACTIONS(5437), - [anon_sym_PIPE] = ACTIONS(5437), - [anon_sym_DOLLAR] = ACTIONS(3317), - [anon_sym_DASH_DASH] = ACTIONS(5375), - [anon_sym_DASH] = ACTIONS(5377), - [anon_sym_LBRACE] = ACTIONS(5379), - [anon_sym_RBRACE] = ACTIONS(5437), - [anon_sym_DOT_DOT] = ACTIONS(5381), - [anon_sym_not] = ACTIONS(5383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5385), - [anon_sym_DOT_DOT_LT] = ACTIONS(5385), - [anon_sym_null] = ACTIONS(5387), - [anon_sym_true] = ACTIONS(5389), - [anon_sym_false] = ACTIONS(5389), - [aux_sym__val_number_decimal_token1] = ACTIONS(5391), - [aux_sym__val_number_decimal_token2] = ACTIONS(5391), - [anon_sym_DOT2] = ACTIONS(5393), - [aux_sym__val_number_decimal_token3] = ACTIONS(5395), - [aux_sym__val_number_token1] = ACTIONS(5397), - [aux_sym__val_number_token2] = ACTIONS(5397), - [aux_sym__val_number_token3] = ACTIONS(5397), - [aux_sym__val_number_token4] = ACTIONS(5397), - [aux_sym__val_number_token5] = ACTIONS(5397), - [aux_sym__val_number_token6] = ACTIONS(5397), - [anon_sym_0b] = ACTIONS(3345), - [anon_sym_0o] = ACTIONS(3347), - [anon_sym_0x] = ACTIONS(3347), - [sym_val_date] = ACTIONS(5399), - [anon_sym_DQUOTE] = ACTIONS(5401), - [sym__str_single_quotes] = ACTIONS(5403), - [sym__str_back_ticks] = ACTIONS(5403), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5405), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5407), + [2240] = { + [sym_comment] = STATE(2240), + [ts_builtin_sym_end] = ACTIONS(1247), + [anon_sym_export] = ACTIONS(1245), + [anon_sym_alias] = ACTIONS(1245), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_let_DASHenv] = ACTIONS(1245), + [anon_sym_mut] = ACTIONS(1245), + [anon_sym_const] = ACTIONS(1245), + [anon_sym_SEMI] = ACTIONS(1245), + [sym_cmd_identifier] = ACTIONS(1245), + [anon_sym_LF] = ACTIONS(1247), + [anon_sym_def] = ACTIONS(1245), + [anon_sym_export_DASHenv] = ACTIONS(1245), + [anon_sym_extern] = ACTIONS(1245), + [anon_sym_module] = ACTIONS(1245), + [anon_sym_use] = ACTIONS(1245), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_DOLLAR] = ACTIONS(1245), + [anon_sym_error] = ACTIONS(1245), + [anon_sym_DASH_DASH] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_break] = ACTIONS(1245), + [anon_sym_continue] = ACTIONS(1245), + [anon_sym_for] = ACTIONS(1245), + [anon_sym_loop] = ACTIONS(1245), + [anon_sym_while] = ACTIONS(1245), + [anon_sym_do] = ACTIONS(1245), + [anon_sym_if] = ACTIONS(1245), + [anon_sym_match] = ACTIONS(1245), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_DOT_DOT] = ACTIONS(1245), + [anon_sym_try] = ACTIONS(1245), + [anon_sym_return] = ACTIONS(1245), + [anon_sym_source] = ACTIONS(1245), + [anon_sym_source_DASHenv] = ACTIONS(1245), + [anon_sym_register] = ACTIONS(1245), + [anon_sym_hide] = ACTIONS(1245), + [anon_sym_hide_DASHenv] = ACTIONS(1245), + [anon_sym_overlay] = ACTIONS(1245), + [anon_sym_as] = ACTIONS(1245), + [anon_sym_where] = ACTIONS(1245), + [anon_sym_not] = ACTIONS(1245), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1245), + [anon_sym_DOT_DOT_LT] = ACTIONS(1245), + [anon_sym_null] = ACTIONS(1245), + [anon_sym_true] = ACTIONS(1245), + [anon_sym_false] = ACTIONS(1245), + [aux_sym__val_number_decimal_token1] = ACTIONS(1245), + [aux_sym__val_number_decimal_token2] = ACTIONS(1245), + [anon_sym_DOT2] = ACTIONS(1245), + [aux_sym__val_number_decimal_token3] = ACTIONS(1245), + [aux_sym__val_number_token1] = ACTIONS(1245), + [aux_sym__val_number_token2] = ACTIONS(1245), + [aux_sym__val_number_token3] = ACTIONS(1245), + [aux_sym__val_number_token4] = ACTIONS(1245), + [aux_sym__val_number_token5] = ACTIONS(1245), + [aux_sym__val_number_token6] = ACTIONS(1245), + [anon_sym_0b] = ACTIONS(1245), + [anon_sym_0o] = ACTIONS(1245), + [anon_sym_0x] = ACTIONS(1245), + [sym_val_date] = ACTIONS(1245), + [anon_sym_DQUOTE] = ACTIONS(1245), + [sym__str_single_quotes] = ACTIONS(1245), + [sym__str_back_ticks] = ACTIONS(1245), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1245), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1245), + [anon_sym_CARET] = ACTIONS(1245), [anon_sym_POUND] = ACTIONS(113), }, - [1956] = { - [sym_comment] = STATE(1956), - [anon_sym_LBRACK] = ACTIONS(1243), - [anon_sym_COMMA] = ACTIONS(1243), - [anon_sym_RBRACK] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_in] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1243), - [anon_sym_STAR_STAR] = ACTIONS(1243), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_SLASH] = ACTIONS(1243), - [anon_sym_mod] = ACTIONS(1243), - [anon_sym_SLASH_SLASH] = ACTIONS(1243), - [anon_sym_PLUS] = ACTIONS(1243), - [anon_sym_bit_DASHshl] = ACTIONS(1243), - [anon_sym_bit_DASHshr] = ACTIONS(1243), - [anon_sym_EQ_EQ] = ACTIONS(1243), - [anon_sym_BANG_EQ] = ACTIONS(1243), - [anon_sym_LT2] = ACTIONS(1243), - [anon_sym_LT_EQ] = ACTIONS(1243), - [anon_sym_GT_EQ] = ACTIONS(1243), - [anon_sym_not_DASHin] = ACTIONS(1243), - [anon_sym_starts_DASHwith] = ACTIONS(1243), - [anon_sym_ends_DASHwith] = ACTIONS(1243), - [anon_sym_EQ_TILDE] = ACTIONS(1243), - [anon_sym_BANG_TILDE] = ACTIONS(1243), - [anon_sym_bit_DASHand] = ACTIONS(1243), - [anon_sym_bit_DASHxor] = ACTIONS(1243), - [anon_sym_bit_DASHor] = ACTIONS(1243), - [anon_sym_and] = ACTIONS(1243), - [anon_sym_xor] = ACTIONS(1243), - [anon_sym_or] = ACTIONS(1243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1243), - [anon_sym_DOT_DOT_LT] = ACTIONS(1243), - [anon_sym_null] = ACTIONS(1243), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_decimal_token2] = ACTIONS(1243), - [anon_sym_DOT2] = ACTIONS(1243), - [aux_sym__val_number_decimal_token3] = ACTIONS(1243), - [aux_sym__val_number_token1] = ACTIONS(1243), - [aux_sym__val_number_token2] = ACTIONS(1243), - [aux_sym__val_number_token3] = ACTIONS(1243), - [aux_sym__val_number_token4] = ACTIONS(1243), - [aux_sym__val_number_token5] = ACTIONS(1243), - [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_0b] = ACTIONS(1243), - [anon_sym_0o] = ACTIONS(1243), - [anon_sym_0x] = ACTIONS(1243), - [sym_val_date] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym__str_single_quotes] = ACTIONS(1243), - [sym__str_back_ticks] = ACTIONS(1243), - [aux_sym__list_item_starts_with_sign_token1] = ACTIONS(5441), - [anon_sym_err_GT] = ACTIONS(1243), - [anon_sym_out_GT] = ACTIONS(1243), - [anon_sym_e_GT] = ACTIONS(1243), - [anon_sym_o_GT] = ACTIONS(1243), - [anon_sym_err_PLUSout_GT] = ACTIONS(1243), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1243), - [anon_sym_o_PLUSe_GT] = ACTIONS(1243), - [anon_sym_e_PLUSo_GT] = ACTIONS(1243), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1243), + [2241] = { + [sym__expression] = STATE(7218), + [sym_expr_unary] = STATE(5677), + [sym__expr_unary_minus] = STATE(5679), + [sym_expr_binary] = STATE(5677), + [sym__expr_binary_expression] = STATE(6377), + [sym_expr_parenthesized] = STATE(4919), + [sym_val_range] = STATE(8295), + [sym__value] = STATE(5677), + [sym_val_nothing] = STATE(5612), + [sym_val_bool] = STATE(5612), + [sym_val_variable] = STATE(4867), + [sym__var] = STATE(4310), + [sym_val_number] = STATE(5612), + [sym__val_number_decimal] = STATE(4408), + [sym__val_number] = STATE(5661), + [sym_val_duration] = STATE(5612), + [sym_val_filesize] = STATE(5612), + [sym_val_binary] = STATE(5612), + [sym_val_string] = STATE(5612), + [sym__str_double_quotes] = STATE(5733), + [sym_val_interpolated] = STATE(5612), + [sym__inter_single_quotes] = STATE(5590), + [sym__inter_double_quotes] = STATE(5591), + [sym_val_list] = STATE(5612), + [sym_val_record] = STATE(5612), + [sym_val_table] = STATE(5612), + [sym_val_closure] = STATE(5612), + [sym__flag] = STATE(2179), + [sym_short_flag] = STATE(4939), + [sym_long_flag] = STATE(4939), + [sym_long_flag_equals_value] = STATE(4865), + [sym_comment] = STATE(2241), + [ts_builtin_sym_end] = ACTIONS(4831), + [anon_sym_SEMI] = ACTIONS(4829), + [anon_sym_LF] = ACTIONS(4831), + [anon_sym_LBRACK] = ACTIONS(5667), + [anon_sym_LPAREN] = ACTIONS(5669), + [anon_sym_PIPE] = ACTIONS(4829), + [anon_sym_DOLLAR] = ACTIONS(2667), + [anon_sym_DASH_DASH] = ACTIONS(5671), + [anon_sym_DASH] = ACTIONS(5673), + [anon_sym_LBRACE] = ACTIONS(5675), + [anon_sym_DOT_DOT] = ACTIONS(5677), + [anon_sym_not] = ACTIONS(5679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5681), + [anon_sym_DOT_DOT_LT] = ACTIONS(5681), + [anon_sym_null] = ACTIONS(5683), + [anon_sym_true] = ACTIONS(5685), + [anon_sym_false] = ACTIONS(5685), + [aux_sym__val_number_decimal_token1] = ACTIONS(5687), + [aux_sym__val_number_decimal_token2] = ACTIONS(5687), + [anon_sym_DOT2] = ACTIONS(5689), + [aux_sym__val_number_decimal_token3] = ACTIONS(5691), + [aux_sym__val_number_token1] = ACTIONS(5693), + [aux_sym__val_number_token2] = ACTIONS(5693), + [aux_sym__val_number_token3] = ACTIONS(5693), + [aux_sym__val_number_token4] = ACTIONS(5693), + [aux_sym__val_number_token5] = ACTIONS(5693), + [aux_sym__val_number_token6] = ACTIONS(5693), + [anon_sym_0b] = ACTIONS(2695), + [anon_sym_0o] = ACTIONS(2697), + [anon_sym_0x] = ACTIONS(2697), + [sym_val_date] = ACTIONS(5695), + [anon_sym_DQUOTE] = ACTIONS(5697), + [sym__str_single_quotes] = ACTIONS(5699), + [sym__str_back_ticks] = ACTIONS(5699), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5703), [anon_sym_POUND] = ACTIONS(113), }, - [1957] = { - [sym_comment] = STATE(1957), - [anon_sym_LBRACK] = ACTIONS(1280), - [anon_sym_COMMA] = ACTIONS(1280), - [anon_sym_RBRACK] = ACTIONS(1280), - [anon_sym_LPAREN] = ACTIONS(1280), - [anon_sym_DOLLAR] = ACTIONS(1280), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_DASH_DASH] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_in] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1280), - [anon_sym_DOT_DOT] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1280), - [anon_sym_STAR_STAR] = ACTIONS(1280), - [anon_sym_PLUS_PLUS] = ACTIONS(1280), - [anon_sym_SLASH] = ACTIONS(1280), - [anon_sym_mod] = ACTIONS(1280), - [anon_sym_SLASH_SLASH] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_bit_DASHshl] = ACTIONS(1280), - [anon_sym_bit_DASHshr] = ACTIONS(1280), - [anon_sym_EQ_EQ] = ACTIONS(1280), - [anon_sym_BANG_EQ] = ACTIONS(1280), - [anon_sym_LT2] = ACTIONS(1280), - [anon_sym_LT_EQ] = ACTIONS(1280), - [anon_sym_GT_EQ] = ACTIONS(1280), - [anon_sym_not_DASHin] = ACTIONS(1280), - [anon_sym_starts_DASHwith] = ACTIONS(1280), - [anon_sym_ends_DASHwith] = ACTIONS(1280), - [anon_sym_EQ_TILDE] = ACTIONS(1280), - [anon_sym_BANG_TILDE] = ACTIONS(1280), - [anon_sym_bit_DASHand] = ACTIONS(1280), - [anon_sym_bit_DASHxor] = ACTIONS(1280), - [anon_sym_bit_DASHor] = ACTIONS(1280), - [anon_sym_and] = ACTIONS(1280), - [anon_sym_xor] = ACTIONS(1280), - [anon_sym_or] = ACTIONS(1280), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1280), - [anon_sym_DOT_DOT_LT] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1280), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [aux_sym__val_number_decimal_token1] = ACTIONS(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1280), - [anon_sym_DOT2] = ACTIONS(1280), - [aux_sym__val_number_decimal_token3] = ACTIONS(1280), - [aux_sym__val_number_token1] = ACTIONS(1280), - [aux_sym__val_number_token2] = ACTIONS(1280), - [aux_sym__val_number_token3] = ACTIONS(1280), - [aux_sym__val_number_token4] = ACTIONS(1280), - [aux_sym__val_number_token5] = ACTIONS(1280), - [aux_sym__val_number_token6] = ACTIONS(1280), - [anon_sym_0b] = ACTIONS(1280), - [anon_sym_0o] = ACTIONS(1280), - [anon_sym_0x] = ACTIONS(1280), - [sym_val_date] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1280), - [sym__str_single_quotes] = ACTIONS(1280), - [sym__str_back_ticks] = ACTIONS(1280), - [sym__entry_separator] = ACTIONS(1282), - [anon_sym_err_GT] = ACTIONS(1280), - [anon_sym_out_GT] = ACTIONS(1280), - [anon_sym_e_GT] = ACTIONS(1280), - [anon_sym_o_GT] = ACTIONS(1280), - [anon_sym_err_PLUSout_GT] = ACTIONS(1280), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1280), - [anon_sym_o_PLUSe_GT] = ACTIONS(1280), - [anon_sym_e_PLUSo_GT] = ACTIONS(1280), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1280), + [2242] = { + [sym_comment] = STATE(2242), + [ts_builtin_sym_end] = ACTIONS(1251), + [anon_sym_export] = ACTIONS(1249), + [anon_sym_alias] = ACTIONS(1249), + [anon_sym_let] = ACTIONS(1249), + [anon_sym_let_DASHenv] = ACTIONS(1249), + [anon_sym_mut] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1249), + [sym_cmd_identifier] = ACTIONS(1249), + [anon_sym_LF] = ACTIONS(1251), + [anon_sym_def] = ACTIONS(1249), + [anon_sym_export_DASHenv] = ACTIONS(1249), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_module] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1249), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_DOLLAR] = ACTIONS(1249), + [anon_sym_error] = ACTIONS(1249), + [anon_sym_DASH_DASH] = ACTIONS(1249), + [anon_sym_DASH] = ACTIONS(1249), + [anon_sym_break] = ACTIONS(1249), + [anon_sym_continue] = ACTIONS(1249), + [anon_sym_for] = ACTIONS(1249), + [anon_sym_loop] = ACTIONS(1249), + [anon_sym_while] = ACTIONS(1249), + [anon_sym_do] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1249), + [anon_sym_match] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_DOT_DOT] = ACTIONS(1249), + [anon_sym_try] = ACTIONS(1249), + [anon_sym_return] = ACTIONS(1249), + [anon_sym_source] = ACTIONS(1249), + [anon_sym_source_DASHenv] = ACTIONS(1249), + [anon_sym_register] = ACTIONS(1249), + [anon_sym_hide] = ACTIONS(1249), + [anon_sym_hide_DASHenv] = ACTIONS(1249), + [anon_sym_overlay] = ACTIONS(1249), + [anon_sym_as] = ACTIONS(1249), + [anon_sym_where] = ACTIONS(1249), + [anon_sym_not] = ACTIONS(1249), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1249), + [anon_sym_DOT_DOT_LT] = ACTIONS(1249), + [anon_sym_null] = ACTIONS(1249), + [anon_sym_true] = ACTIONS(1249), + [anon_sym_false] = ACTIONS(1249), + [aux_sym__val_number_decimal_token1] = ACTIONS(1249), + [aux_sym__val_number_decimal_token2] = ACTIONS(1249), + [anon_sym_DOT2] = ACTIONS(1249), + [aux_sym__val_number_decimal_token3] = ACTIONS(1249), + [aux_sym__val_number_token1] = ACTIONS(1249), + [aux_sym__val_number_token2] = ACTIONS(1249), + [aux_sym__val_number_token3] = ACTIONS(1249), + [aux_sym__val_number_token4] = ACTIONS(1249), + [aux_sym__val_number_token5] = ACTIONS(1249), + [aux_sym__val_number_token6] = ACTIONS(1249), + [anon_sym_0b] = ACTIONS(1249), + [anon_sym_0o] = ACTIONS(1249), + [anon_sym_0x] = ACTIONS(1249), + [sym_val_date] = ACTIONS(1249), + [anon_sym_DQUOTE] = ACTIONS(1249), + [sym__str_single_quotes] = ACTIONS(1249), + [sym__str_back_ticks] = ACTIONS(1249), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1249), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1249), + [anon_sym_CARET] = ACTIONS(1249), [anon_sym_POUND] = ACTIONS(113), }, - [1958] = { - [sym_comment] = STATE(1958), - [anon_sym_LBRACK] = ACTIONS(1059), - [anon_sym_COMMA] = ACTIONS(1059), - [anon_sym_RBRACK] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_DASH_DASH] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_STAR_STAR] = ACTIONS(1059), - [anon_sym_PLUS_PLUS] = ACTIONS(1059), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_mod] = ACTIONS(1059), - [anon_sym_SLASH_SLASH] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_bit_DASHshl] = ACTIONS(1059), - [anon_sym_bit_DASHshr] = ACTIONS(1059), - [anon_sym_EQ_EQ] = ACTIONS(1059), - [anon_sym_BANG_EQ] = ACTIONS(1059), - [anon_sym_LT2] = ACTIONS(1059), - [anon_sym_LT_EQ] = ACTIONS(1059), - [anon_sym_GT_EQ] = ACTIONS(1059), - [anon_sym_not_DASHin] = ACTIONS(1059), - [anon_sym_starts_DASHwith] = ACTIONS(1059), - [anon_sym_ends_DASHwith] = ACTIONS(1059), - [anon_sym_EQ_TILDE] = ACTIONS(1059), - [anon_sym_BANG_TILDE] = ACTIONS(1059), - [anon_sym_bit_DASHand] = ACTIONS(1059), - [anon_sym_bit_DASHxor] = ACTIONS(1059), - [anon_sym_bit_DASHor] = ACTIONS(1059), - [anon_sym_and] = ACTIONS(1059), - [anon_sym_xor] = ACTIONS(1059), - [anon_sym_or] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1059), - [anon_sym_DOT_DOT_LT] = ACTIONS(1059), - [anon_sym_null] = ACTIONS(1059), - [anon_sym_true] = ACTIONS(1059), - [anon_sym_false] = ACTIONS(1059), - [aux_sym__val_number_decimal_token1] = ACTIONS(1059), - [aux_sym__val_number_decimal_token2] = ACTIONS(1059), - [anon_sym_DOT2] = ACTIONS(1059), - [aux_sym__val_number_decimal_token3] = ACTIONS(1059), - [aux_sym__val_number_token1] = ACTIONS(1059), - [aux_sym__val_number_token2] = ACTIONS(1059), - [aux_sym__val_number_token3] = ACTIONS(1059), - [aux_sym__val_number_token4] = ACTIONS(1059), - [aux_sym__val_number_token5] = ACTIONS(1059), - [aux_sym__val_number_token6] = ACTIONS(1059), - [anon_sym_0b] = ACTIONS(1059), - [anon_sym_0o] = ACTIONS(1059), - [anon_sym_0x] = ACTIONS(1059), - [sym_val_date] = ACTIONS(1059), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym__str_single_quotes] = ACTIONS(1059), - [sym__str_back_ticks] = ACTIONS(1059), - [sym__entry_separator] = ACTIONS(1061), - [anon_sym_err_GT] = ACTIONS(1059), - [anon_sym_out_GT] = ACTIONS(1059), - [anon_sym_e_GT] = ACTIONS(1059), - [anon_sym_o_GT] = ACTIONS(1059), - [anon_sym_err_PLUSout_GT] = ACTIONS(1059), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1059), - [anon_sym_o_PLUSe_GT] = ACTIONS(1059), - [anon_sym_e_PLUSo_GT] = ACTIONS(1059), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1059), + [2243] = { + [sym_comment] = STATE(2243), + [ts_builtin_sym_end] = ACTIONS(3759), + [anon_sym_export] = ACTIONS(3757), + [anon_sym_alias] = ACTIONS(3757), + [anon_sym_let] = ACTIONS(3757), + [anon_sym_let_DASHenv] = ACTIONS(3757), + [anon_sym_mut] = ACTIONS(3757), + [anon_sym_const] = ACTIONS(3757), + [anon_sym_SEMI] = ACTIONS(3757), + [sym_cmd_identifier] = ACTIONS(3757), + [anon_sym_LF] = ACTIONS(3759), + [anon_sym_def] = ACTIONS(3757), + [anon_sym_export_DASHenv] = ACTIONS(3757), + [anon_sym_extern] = ACTIONS(3757), + [anon_sym_module] = ACTIONS(3757), + [anon_sym_use] = ACTIONS(3757), + [anon_sym_LBRACK] = ACTIONS(3757), + [anon_sym_LPAREN] = ACTIONS(3757), + [anon_sym_DOLLAR] = ACTIONS(3757), + [anon_sym_error] = ACTIONS(3757), + [anon_sym_DASH_DASH] = ACTIONS(3757), + [anon_sym_DASH] = ACTIONS(3757), + [anon_sym_break] = ACTIONS(3757), + [anon_sym_continue] = ACTIONS(3757), + [anon_sym_for] = ACTIONS(3757), + [anon_sym_loop] = ACTIONS(3757), + [anon_sym_while] = ACTIONS(3757), + [anon_sym_do] = ACTIONS(3757), + [anon_sym_if] = ACTIONS(3757), + [anon_sym_match] = ACTIONS(3757), + [anon_sym_LBRACE] = ACTIONS(3757), + [anon_sym_DOT_DOT] = ACTIONS(3757), + [anon_sym_try] = ACTIONS(3757), + [anon_sym_return] = ACTIONS(3757), + [anon_sym_source] = ACTIONS(3757), + [anon_sym_source_DASHenv] = ACTIONS(3757), + [anon_sym_register] = ACTIONS(3757), + [anon_sym_hide] = ACTIONS(3757), + [anon_sym_hide_DASHenv] = ACTIONS(3757), + [anon_sym_overlay] = ACTIONS(3757), + [anon_sym_as] = ACTIONS(3757), + [anon_sym_where] = ACTIONS(3757), + [anon_sym_not] = ACTIONS(3757), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3757), + [anon_sym_DOT_DOT_LT] = ACTIONS(3757), + [anon_sym_null] = ACTIONS(3757), + [anon_sym_true] = ACTIONS(3757), + [anon_sym_false] = ACTIONS(3757), + [aux_sym__val_number_decimal_token1] = ACTIONS(3757), + [aux_sym__val_number_decimal_token2] = ACTIONS(3757), + [anon_sym_DOT2] = ACTIONS(3757), + [aux_sym__val_number_decimal_token3] = ACTIONS(3757), + [aux_sym__val_number_token1] = ACTIONS(3757), + [aux_sym__val_number_token2] = ACTIONS(3757), + [aux_sym__val_number_token3] = ACTIONS(3757), + [aux_sym__val_number_token4] = ACTIONS(3757), + [aux_sym__val_number_token5] = ACTIONS(3757), + [aux_sym__val_number_token6] = ACTIONS(3757), + [anon_sym_0b] = ACTIONS(3757), + [anon_sym_0o] = ACTIONS(3757), + [anon_sym_0x] = ACTIONS(3757), + [sym_val_date] = ACTIONS(3757), + [anon_sym_DQUOTE] = ACTIONS(3757), + [sym__str_single_quotes] = ACTIONS(3757), + [sym__str_back_ticks] = ACTIONS(3757), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3757), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3757), + [anon_sym_CARET] = ACTIONS(3757), [anon_sym_POUND] = ACTIONS(113), }, - [1959] = { - [sym_comment] = STATE(1959), + [2244] = { + [sym_comment] = STATE(2244), + [ts_builtin_sym_end] = ACTIONS(5115), + [anon_sym_export] = ACTIONS(5113), + [anon_sym_alias] = ACTIONS(5113), + [anon_sym_let] = ACTIONS(5113), + [anon_sym_let_DASHenv] = ACTIONS(5113), + [anon_sym_mut] = ACTIONS(5113), + [anon_sym_const] = ACTIONS(5113), + [anon_sym_SEMI] = ACTIONS(5113), + [sym_cmd_identifier] = ACTIONS(5113), + [anon_sym_LF] = ACTIONS(5115), + [anon_sym_def] = ACTIONS(5113), + [anon_sym_export_DASHenv] = ACTIONS(5113), + [anon_sym_extern] = ACTIONS(5113), + [anon_sym_module] = ACTIONS(5113), + [anon_sym_use] = ACTIONS(5113), + [anon_sym_LBRACK] = ACTIONS(5113), + [anon_sym_LPAREN] = ACTIONS(5113), + [anon_sym_DOLLAR] = ACTIONS(5113), + [anon_sym_error] = ACTIONS(5113), + [anon_sym_DASH_DASH] = ACTIONS(5113), + [anon_sym_DASH] = ACTIONS(5113), + [anon_sym_break] = ACTIONS(5113), + [anon_sym_continue] = ACTIONS(5113), + [anon_sym_for] = ACTIONS(5113), + [anon_sym_loop] = ACTIONS(5113), + [anon_sym_while] = ACTIONS(5113), + [anon_sym_do] = ACTIONS(5113), + [anon_sym_if] = ACTIONS(5113), + [anon_sym_match] = ACTIONS(5113), + [anon_sym_LBRACE] = ACTIONS(5113), + [anon_sym_DOT_DOT] = ACTIONS(5113), + [anon_sym_try] = ACTIONS(5113), + [anon_sym_return] = ACTIONS(5113), + [anon_sym_source] = ACTIONS(5113), + [anon_sym_source_DASHenv] = ACTIONS(5113), + [anon_sym_register] = ACTIONS(5113), + [anon_sym_hide] = ACTIONS(5113), + [anon_sym_hide_DASHenv] = ACTIONS(5113), + [anon_sym_overlay] = ACTIONS(5113), + [anon_sym_as] = ACTIONS(5113), + [anon_sym_where] = ACTIONS(5113), + [anon_sym_not] = ACTIONS(5113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5113), + [anon_sym_DOT_DOT_LT] = ACTIONS(5113), + [anon_sym_null] = ACTIONS(5113), + [anon_sym_true] = ACTIONS(5113), + [anon_sym_false] = ACTIONS(5113), + [aux_sym__val_number_decimal_token1] = ACTIONS(5113), + [aux_sym__val_number_decimal_token2] = ACTIONS(5113), + [anon_sym_DOT2] = ACTIONS(5113), + [aux_sym__val_number_decimal_token3] = ACTIONS(5113), + [aux_sym__val_number_token1] = ACTIONS(5113), + [aux_sym__val_number_token2] = ACTIONS(5113), + [aux_sym__val_number_token3] = ACTIONS(5113), + [aux_sym__val_number_token4] = ACTIONS(5113), + [aux_sym__val_number_token5] = ACTIONS(5113), + [aux_sym__val_number_token6] = ACTIONS(5113), + [anon_sym_0b] = ACTIONS(5113), + [anon_sym_0o] = ACTIONS(5113), + [anon_sym_0x] = ACTIONS(5113), + [sym_val_date] = ACTIONS(5113), + [anon_sym_DQUOTE] = ACTIONS(5113), + [sym__str_single_quotes] = ACTIONS(5113), + [sym__str_back_ticks] = ACTIONS(5113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5113), + [anon_sym_CARET] = ACTIONS(5113), + [anon_sym_POUND] = ACTIONS(113), + }, + [2245] = { + [sym_comment] = STATE(2245), + [ts_builtin_sym_end] = ACTIONS(5139), + [anon_sym_export] = ACTIONS(5137), + [anon_sym_alias] = ACTIONS(5137), + [anon_sym_let] = ACTIONS(5137), + [anon_sym_let_DASHenv] = ACTIONS(5137), + [anon_sym_mut] = ACTIONS(5137), + [anon_sym_const] = ACTIONS(5137), + [anon_sym_SEMI] = ACTIONS(5137), + [sym_cmd_identifier] = ACTIONS(5137), + [anon_sym_LF] = ACTIONS(5139), + [anon_sym_def] = ACTIONS(5137), + [anon_sym_export_DASHenv] = ACTIONS(5137), + [anon_sym_extern] = ACTIONS(5137), + [anon_sym_module] = ACTIONS(5137), + [anon_sym_use] = ACTIONS(5137), + [anon_sym_LBRACK] = ACTIONS(5137), + [anon_sym_LPAREN] = ACTIONS(5137), + [anon_sym_DOLLAR] = ACTIONS(5137), + [anon_sym_error] = ACTIONS(5137), + [anon_sym_DASH_DASH] = ACTIONS(5137), + [anon_sym_DASH] = ACTIONS(5137), + [anon_sym_break] = ACTIONS(5137), + [anon_sym_continue] = ACTIONS(5137), + [anon_sym_for] = ACTIONS(5137), + [anon_sym_loop] = ACTIONS(5137), + [anon_sym_while] = ACTIONS(5137), + [anon_sym_do] = ACTIONS(5137), + [anon_sym_if] = ACTIONS(5137), + [anon_sym_match] = ACTIONS(5137), + [anon_sym_LBRACE] = ACTIONS(5137), + [anon_sym_DOT_DOT] = ACTIONS(5137), + [anon_sym_try] = ACTIONS(5137), + [anon_sym_return] = ACTIONS(5137), + [anon_sym_source] = ACTIONS(5137), + [anon_sym_source_DASHenv] = ACTIONS(5137), + [anon_sym_register] = ACTIONS(5137), + [anon_sym_hide] = ACTIONS(5137), + [anon_sym_hide_DASHenv] = ACTIONS(5137), + [anon_sym_overlay] = ACTIONS(5137), + [anon_sym_as] = ACTIONS(5137), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_not] = ACTIONS(5137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5137), + [anon_sym_DOT_DOT_LT] = ACTIONS(5137), + [anon_sym_null] = ACTIONS(5137), + [anon_sym_true] = ACTIONS(5137), + [anon_sym_false] = ACTIONS(5137), + [aux_sym__val_number_decimal_token1] = ACTIONS(5137), + [aux_sym__val_number_decimal_token2] = ACTIONS(5137), + [anon_sym_DOT2] = ACTIONS(5137), + [aux_sym__val_number_decimal_token3] = ACTIONS(5137), + [aux_sym__val_number_token1] = ACTIONS(5137), + [aux_sym__val_number_token2] = ACTIONS(5137), + [aux_sym__val_number_token3] = ACTIONS(5137), + [aux_sym__val_number_token4] = ACTIONS(5137), + [aux_sym__val_number_token5] = ACTIONS(5137), + [aux_sym__val_number_token6] = ACTIONS(5137), + [anon_sym_0b] = ACTIONS(5137), + [anon_sym_0o] = ACTIONS(5137), + [anon_sym_0x] = ACTIONS(5137), + [sym_val_date] = ACTIONS(5137), + [anon_sym_DQUOTE] = ACTIONS(5137), + [sym__str_single_quotes] = ACTIONS(5137), + [sym__str_back_ticks] = ACTIONS(5137), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5137), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5137), + [anon_sym_CARET] = ACTIONS(5137), + [anon_sym_POUND] = ACTIONS(113), + }, + [2246] = { + [sym_comment] = STATE(2246), + [ts_builtin_sym_end] = ACTIONS(4198), + [anon_sym_export] = ACTIONS(4196), + [anon_sym_alias] = ACTIONS(4196), + [anon_sym_let] = ACTIONS(4196), + [anon_sym_let_DASHenv] = ACTIONS(4196), + [anon_sym_mut] = ACTIONS(4196), + [anon_sym_const] = ACTIONS(4196), + [anon_sym_SEMI] = ACTIONS(4196), + [sym_cmd_identifier] = ACTIONS(4196), + [anon_sym_LF] = ACTIONS(4198), + [anon_sym_def] = ACTIONS(4196), + [anon_sym_export_DASHenv] = ACTIONS(4196), + [anon_sym_extern] = ACTIONS(4196), + [anon_sym_module] = ACTIONS(4196), + [anon_sym_use] = ACTIONS(4196), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_DOLLAR] = ACTIONS(4196), + [anon_sym_error] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_break] = ACTIONS(4196), + [anon_sym_continue] = ACTIONS(4196), + [anon_sym_for] = ACTIONS(4196), + [anon_sym_loop] = ACTIONS(4196), + [anon_sym_while] = ACTIONS(4196), + [anon_sym_do] = ACTIONS(4196), + [anon_sym_if] = ACTIONS(4196), + [anon_sym_match] = ACTIONS(4196), + [anon_sym_LBRACE] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_try] = ACTIONS(4196), + [anon_sym_return] = ACTIONS(4196), + [anon_sym_source] = ACTIONS(4196), + [anon_sym_source_DASHenv] = ACTIONS(4196), + [anon_sym_register] = ACTIONS(4196), + [anon_sym_hide] = ACTIONS(4196), + [anon_sym_hide_DASHenv] = ACTIONS(4196), + [anon_sym_overlay] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_where] = ACTIONS(4196), + [anon_sym_not] = ACTIONS(4196), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4196), + [anon_sym_DOT_DOT_LT] = ACTIONS(4196), + [anon_sym_null] = ACTIONS(4196), + [anon_sym_true] = ACTIONS(4196), + [anon_sym_false] = ACTIONS(4196), + [aux_sym__val_number_decimal_token1] = ACTIONS(4196), + [aux_sym__val_number_decimal_token2] = ACTIONS(4196), + [anon_sym_DOT2] = ACTIONS(4196), + [aux_sym__val_number_decimal_token3] = ACTIONS(4196), + [aux_sym__val_number_token1] = ACTIONS(4196), + [aux_sym__val_number_token2] = ACTIONS(4196), + [aux_sym__val_number_token3] = ACTIONS(4196), + [aux_sym__val_number_token4] = ACTIONS(4196), + [aux_sym__val_number_token5] = ACTIONS(4196), + [aux_sym__val_number_token6] = ACTIONS(4196), + [anon_sym_0b] = ACTIONS(4196), + [anon_sym_0o] = ACTIONS(4196), + [anon_sym_0x] = ACTIONS(4196), + [sym_val_date] = ACTIONS(4196), + [anon_sym_DQUOTE] = ACTIONS(4196), + [sym__str_single_quotes] = ACTIONS(4196), + [sym__str_back_ticks] = ACTIONS(4196), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4196), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4196), + [anon_sym_CARET] = ACTIONS(4196), + [anon_sym_POUND] = ACTIONS(113), + }, + [2247] = { + [sym_comment] = STATE(2247), + [anon_sym_LBRACK] = ACTIONS(1173), + [anon_sym_COMMA] = ACTIONS(1173), + [anon_sym_RBRACK] = ACTIONS(1173), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_DOLLAR] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1173), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1173), + [anon_sym_SLASH_SLASH] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1173), + [anon_sym_bit_DASHshr] = ACTIONS(1173), + [anon_sym_EQ_EQ] = ACTIONS(1173), + [anon_sym_BANG_EQ] = ACTIONS(1173), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1173), + [anon_sym_GT_EQ] = ACTIONS(1173), + [anon_sym_not_DASHin] = ACTIONS(1173), + [anon_sym_starts_DASHwith] = ACTIONS(1173), + [anon_sym_ends_DASHwith] = ACTIONS(1173), + [anon_sym_EQ_TILDE] = ACTIONS(1173), + [anon_sym_BANG_TILDE] = ACTIONS(1173), + [anon_sym_bit_DASHand] = ACTIONS(1173), + [anon_sym_bit_DASHxor] = ACTIONS(1173), + [anon_sym_bit_DASHor] = ACTIONS(1173), + [anon_sym_and] = ACTIONS(1173), + [anon_sym_xor] = ACTIONS(1173), + [anon_sym_or] = ACTIONS(1173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1173), + [anon_sym_DOT_DOT_LT] = ACTIONS(1173), + [anon_sym_null] = ACTIONS(1173), + [anon_sym_true] = ACTIONS(1173), + [anon_sym_false] = ACTIONS(1173), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1173), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1173), + [aux_sym__val_number_token1] = ACTIONS(1173), + [aux_sym__val_number_token2] = ACTIONS(1173), + [aux_sym__val_number_token3] = ACTIONS(1173), + [aux_sym__val_number_token4] = ACTIONS(1173), + [aux_sym__val_number_token5] = ACTIONS(1173), + [aux_sym__val_number_token6] = ACTIONS(1173), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym__str_single_quotes] = ACTIONS(1173), + [sym__str_back_ticks] = ACTIONS(1173), + [anon_sym_err_GT] = ACTIONS(1173), + [anon_sym_out_GT] = ACTIONS(1173), + [anon_sym_e_GT] = ACTIONS(1173), + [anon_sym_o_GT] = ACTIONS(1173), + [anon_sym_err_PLUSout_GT] = ACTIONS(1173), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1173), + [anon_sym_o_PLUSe_GT] = ACTIONS(1173), + [anon_sym_e_PLUSo_GT] = ACTIONS(1173), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(3), + }, + [2248] = { + [sym_comment] = STATE(2248), [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_COMMA] = ACTIONS(1063), - [anon_sym_RBRACK] = ACTIONS(1063), [anon_sym_LPAREN] = ACTIONS(1063), [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_DASH_DASH] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_DASH] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1061), [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_STAR] = ACTIONS(1063), + [anon_sym_RBRACE] = ACTIONS(1063), + [anon_sym__] = ACTIONS(1061), + [anon_sym_DOT_DOT] = ACTIONS(1061), + [anon_sym_STAR] = ACTIONS(1061), [anon_sym_STAR_STAR] = ACTIONS(1063), [anon_sym_PLUS_PLUS] = ACTIONS(1063), - [anon_sym_SLASH] = ACTIONS(1063), + [anon_sym_SLASH] = ACTIONS(1061), [anon_sym_mod] = ACTIONS(1063), [anon_sym_SLASH_SLASH] = ACTIONS(1063), - [anon_sym_PLUS] = ACTIONS(1063), + [anon_sym_PLUS] = ACTIONS(1061), [anon_sym_bit_DASHshl] = ACTIONS(1063), [anon_sym_bit_DASHshr] = ACTIONS(1063), [anon_sym_EQ_EQ] = ACTIONS(1063), [anon_sym_BANG_EQ] = ACTIONS(1063), - [anon_sym_LT2] = ACTIONS(1063), + [anon_sym_LT2] = ACTIONS(1061), [anon_sym_LT_EQ] = ACTIONS(1063), [anon_sym_GT_EQ] = ACTIONS(1063), [anon_sym_not_DASHin] = ACTIONS(1063), @@ -267923,9 +278330,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(1063), [anon_sym_true] = ACTIONS(1063), [anon_sym_false] = ACTIONS(1063), - [aux_sym__val_number_decimal_token1] = ACTIONS(1063), + [aux_sym__val_number_decimal_token1] = ACTIONS(1061), [aux_sym__val_number_decimal_token2] = ACTIONS(1063), - [anon_sym_DOT2] = ACTIONS(1063), + [anon_sym_DOT2] = ACTIONS(1061), [aux_sym__val_number_decimal_token3] = ACTIONS(1063), [aux_sym__val_number_token1] = ACTIONS(1063), [aux_sym__val_number_token2] = ACTIONS(1063), @@ -267933,14 +278340,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token4] = ACTIONS(1063), [aux_sym__val_number_token5] = ACTIONS(1063), [aux_sym__val_number_token6] = ACTIONS(1063), - [anon_sym_0b] = ACTIONS(1063), - [anon_sym_0o] = ACTIONS(1063), - [anon_sym_0x] = ACTIONS(1063), + [anon_sym_0b] = ACTIONS(1061), + [anon_sym_0o] = ACTIONS(1061), + [anon_sym_0x] = ACTIONS(1061), [sym_val_date] = ACTIONS(1063), [anon_sym_DQUOTE] = ACTIONS(1063), [sym__str_single_quotes] = ACTIONS(1063), [sym__str_back_ticks] = ACTIONS(1063), - [sym__entry_separator] = ACTIONS(1065), [anon_sym_err_GT] = ACTIONS(1063), [anon_sym_out_GT] = ACTIONS(1063), [anon_sym_e_GT] = ACTIONS(1063), @@ -267949,33017 +278355,23866 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT] = ACTIONS(1063), [anon_sym_o_PLUSe_GT] = ACTIONS(1063), [anon_sym_e_PLUSo_GT] = ACTIONS(1063), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1063), - [anon_sym_POUND] = ACTIONS(113), - }, - [1960] = { - [sym_expr_unary] = STATE(6193), - [sym__expr_unary_minus] = STATE(6200), - [sym_expr_binary] = STATE(6193), - [sym__expr_binary_expression] = STATE(6199), - [sym_expr_parenthesized] = STATE(6193), - [sym__val_range] = STATE(10614), - [sym__value] = STATE(6193), - [sym_val_nothing] = STATE(6059), - [sym_val_bool] = STATE(5905), - [sym_val_variable] = STATE(6059), - [sym__var] = STATE(5293), - [sym_val_number] = STATE(6059), - [sym__val_number_decimal] = STATE(4661), - [sym__val_number] = STATE(6097), - [sym_val_duration] = STATE(6059), - [sym_val_filesize] = STATE(6059), - [sym_val_binary] = STATE(6059), - [sym_val_string] = STATE(6059), - [sym__str_double_quotes] = STATE(6144), - [sym_val_interpolated] = STATE(6059), - [sym__inter_single_quotes] = STATE(6158), - [sym__inter_double_quotes] = STATE(6159), - [sym_val_list] = STATE(6059), - [sym_val_record] = STATE(6059), - [sym_val_table] = STATE(6059), - [sym_val_closure] = STATE(6059), - [sym_unquoted] = STATE(6206), - [sym__unquoted_anonymous_prefix] = STATE(11079), - [sym_comment] = STATE(1960), - [anon_sym_LBRACK] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(5443), - [anon_sym_DOLLAR] = ACTIONS(5445), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_DOT_DOT] = ACTIONS(5447), - [anon_sym_not] = ACTIONS(4303), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5449), - [anon_sym_DOT_DOT_LT] = ACTIONS(5449), - [anon_sym_null] = ACTIONS(4307), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_false] = ACTIONS(4309), - [aux_sym__val_number_decimal_token1] = ACTIONS(4311), - [aux_sym__val_number_decimal_token2] = ACTIONS(4313), - [anon_sym_DOT2] = ACTIONS(5451), - [aux_sym__val_number_decimal_token3] = ACTIONS(4317), - [aux_sym__val_number_token1] = ACTIONS(2949), - [aux_sym__val_number_token2] = ACTIONS(2949), - [aux_sym__val_number_token3] = ACTIONS(2949), - [aux_sym__val_number_token4] = ACTIONS(4319), - [aux_sym__val_number_token5] = ACTIONS(4319), - [aux_sym__val_number_token6] = ACTIONS(4319), - [anon_sym_0b] = ACTIONS(2953), - [anon_sym_0o] = ACTIONS(2955), - [anon_sym_0x] = ACTIONS(2955), - [sym_val_date] = ACTIONS(4321), - [anon_sym_DQUOTE] = ACTIONS(2959), - [sym__str_single_quotes] = ACTIONS(2961), - [sym__str_back_ticks] = ACTIONS(2961), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2963), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2965), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2969), - [anon_sym_POUND] = ACTIONS(3), - }, - [1961] = { - [sym_expr_unary] = STATE(6193), - [sym__expr_unary_minus] = STATE(6200), - [sym_expr_binary] = STATE(6193), - [sym__expr_binary_expression] = STATE(6221), - [sym_expr_parenthesized] = STATE(6193), - [sym__val_range] = STATE(10614), - [sym__value] = STATE(6193), - [sym_val_nothing] = STATE(6059), - [sym_val_bool] = STATE(5905), - [sym_val_variable] = STATE(6059), - [sym__var] = STATE(5293), - [sym_val_number] = STATE(6059), - [sym__val_number_decimal] = STATE(4661), - [sym__val_number] = STATE(6097), - [sym_val_duration] = STATE(6059), - [sym_val_filesize] = STATE(6059), - [sym_val_binary] = STATE(6059), - [sym_val_string] = STATE(6059), - [sym__str_double_quotes] = STATE(6144), - [sym_val_interpolated] = STATE(6059), - [sym__inter_single_quotes] = STATE(6158), - [sym__inter_double_quotes] = STATE(6159), - [sym_val_list] = STATE(6059), - [sym_val_record] = STATE(6059), - [sym_val_table] = STATE(6059), - [sym_val_closure] = STATE(6059), - [sym_unquoted] = STATE(6225), - [sym__unquoted_anonymous_prefix] = STATE(11079), - [sym_comment] = STATE(1961), - [anon_sym_LBRACK] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(5443), - [anon_sym_DOLLAR] = ACTIONS(5445), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_DOT_DOT] = ACTIONS(5447), - [anon_sym_not] = ACTIONS(4303), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5449), - [anon_sym_DOT_DOT_LT] = ACTIONS(5449), - [anon_sym_null] = ACTIONS(4307), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_false] = ACTIONS(4309), - [aux_sym__val_number_decimal_token1] = ACTIONS(4311), - [aux_sym__val_number_decimal_token2] = ACTIONS(4313), - [anon_sym_DOT2] = ACTIONS(5451), - [aux_sym__val_number_decimal_token3] = ACTIONS(4317), - [aux_sym__val_number_token1] = ACTIONS(2949), - [aux_sym__val_number_token2] = ACTIONS(2949), - [aux_sym__val_number_token3] = ACTIONS(2949), - [aux_sym__val_number_token4] = ACTIONS(4319), - [aux_sym__val_number_token5] = ACTIONS(4319), - [aux_sym__val_number_token6] = ACTIONS(4319), - [anon_sym_0b] = ACTIONS(2953), - [anon_sym_0o] = ACTIONS(2955), - [anon_sym_0x] = ACTIONS(2955), - [sym_val_date] = ACTIONS(4321), - [anon_sym_DQUOTE] = ACTIONS(2959), - [sym__str_single_quotes] = ACTIONS(2961), - [sym__str_back_ticks] = ACTIONS(2961), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2963), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2965), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2969), - [anon_sym_POUND] = ACTIONS(3), - }, - [1962] = { - [sym_expr_unary] = STATE(6193), - [sym__expr_unary_minus] = STATE(6200), - [sym_expr_binary] = STATE(6193), - [sym__expr_binary_expression] = STATE(6226), - [sym_expr_parenthesized] = STATE(6193), - [sym__val_range] = STATE(10614), - [sym__value] = STATE(6193), - [sym_val_nothing] = STATE(6059), - [sym_val_bool] = STATE(5905), - [sym_val_variable] = STATE(6059), - [sym__var] = STATE(5293), - [sym_val_number] = STATE(6059), - [sym__val_number_decimal] = STATE(4661), - [sym__val_number] = STATE(6097), - [sym_val_duration] = STATE(6059), - [sym_val_filesize] = STATE(6059), - [sym_val_binary] = STATE(6059), - [sym_val_string] = STATE(6059), - [sym__str_double_quotes] = STATE(6144), - [sym_val_interpolated] = STATE(6059), - [sym__inter_single_quotes] = STATE(6158), - [sym__inter_double_quotes] = STATE(6159), - [sym_val_list] = STATE(6059), - [sym_val_record] = STATE(6059), - [sym_val_table] = STATE(6059), - [sym_val_closure] = STATE(6059), - [sym_unquoted] = STATE(6227), - [sym__unquoted_anonymous_prefix] = STATE(11079), - [sym_comment] = STATE(1962), - [anon_sym_LBRACK] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(5443), - [anon_sym_DOLLAR] = ACTIONS(5445), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_DOT_DOT] = ACTIONS(5447), - [anon_sym_not] = ACTIONS(4303), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5449), - [anon_sym_DOT_DOT_LT] = ACTIONS(5449), - [anon_sym_null] = ACTIONS(4307), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_false] = ACTIONS(4309), - [aux_sym__val_number_decimal_token1] = ACTIONS(4311), - [aux_sym__val_number_decimal_token2] = ACTIONS(4313), - [anon_sym_DOT2] = ACTIONS(5451), - [aux_sym__val_number_decimal_token3] = ACTIONS(4317), - [aux_sym__val_number_token1] = ACTIONS(2949), - [aux_sym__val_number_token2] = ACTIONS(2949), - [aux_sym__val_number_token3] = ACTIONS(2949), - [aux_sym__val_number_token4] = ACTIONS(4319), - [aux_sym__val_number_token5] = ACTIONS(4319), - [aux_sym__val_number_token6] = ACTIONS(4319), - [anon_sym_0b] = ACTIONS(2953), - [anon_sym_0o] = ACTIONS(2955), - [anon_sym_0x] = ACTIONS(2955), - [sym_val_date] = ACTIONS(4321), - [anon_sym_DQUOTE] = ACTIONS(2959), - [sym__str_single_quotes] = ACTIONS(2961), - [sym__str_back_ticks] = ACTIONS(2961), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2963), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2965), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2969), - [anon_sym_POUND] = ACTIONS(3), - }, - [1963] = { - [sym_expr_unary] = STATE(6193), - [sym__expr_unary_minus] = STATE(6200), - [sym_expr_binary] = STATE(6193), - [sym__expr_binary_expression] = STATE(6228), - [sym_expr_parenthesized] = STATE(6193), - [sym__val_range] = STATE(10614), - [sym__value] = STATE(6193), - [sym_val_nothing] = STATE(6059), - [sym_val_bool] = STATE(5905), - [sym_val_variable] = STATE(6059), - [sym__var] = STATE(5293), - [sym_val_number] = STATE(6059), - [sym__val_number_decimal] = STATE(4661), - [sym__val_number] = STATE(6097), - [sym_val_duration] = STATE(6059), - [sym_val_filesize] = STATE(6059), - [sym_val_binary] = STATE(6059), - [sym_val_string] = STATE(6059), - [sym__str_double_quotes] = STATE(6144), - [sym_val_interpolated] = STATE(6059), - [sym__inter_single_quotes] = STATE(6158), - [sym__inter_double_quotes] = STATE(6159), - [sym_val_list] = STATE(6059), - [sym_val_record] = STATE(6059), - [sym_val_table] = STATE(6059), - [sym_val_closure] = STATE(6059), - [sym_unquoted] = STATE(6230), - [sym__unquoted_anonymous_prefix] = STATE(11079), - [sym_comment] = STATE(1963), - [anon_sym_LBRACK] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(5443), - [anon_sym_DOLLAR] = ACTIONS(5445), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_DOT_DOT] = ACTIONS(5447), - [anon_sym_not] = ACTIONS(4303), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5449), - [anon_sym_DOT_DOT_LT] = ACTIONS(5449), - [anon_sym_null] = ACTIONS(4307), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_false] = ACTIONS(4309), - [aux_sym__val_number_decimal_token1] = ACTIONS(4311), - [aux_sym__val_number_decimal_token2] = ACTIONS(4313), - [anon_sym_DOT2] = ACTIONS(5451), - [aux_sym__val_number_decimal_token3] = ACTIONS(4317), - [aux_sym__val_number_token1] = ACTIONS(2949), - [aux_sym__val_number_token2] = ACTIONS(2949), - [aux_sym__val_number_token3] = ACTIONS(2949), - [aux_sym__val_number_token4] = ACTIONS(4319), - [aux_sym__val_number_token5] = ACTIONS(4319), - [aux_sym__val_number_token6] = ACTIONS(4319), - [anon_sym_0b] = ACTIONS(2953), - [anon_sym_0o] = ACTIONS(2955), - [anon_sym_0x] = ACTIONS(2955), - [sym_val_date] = ACTIONS(4321), - [anon_sym_DQUOTE] = ACTIONS(2959), - [sym__str_single_quotes] = ACTIONS(2961), - [sym__str_back_ticks] = ACTIONS(2961), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2963), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2965), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2969), + [aux_sym_unquoted_token1] = ACTIONS(1061), [anon_sym_POUND] = ACTIONS(3), }, - [1964] = { - [sym_expr_unary] = STATE(6193), - [sym__expr_unary_minus] = STATE(6200), - [sym_expr_binary] = STATE(6193), - [sym__expr_binary_expression] = STATE(6231), - [sym_expr_parenthesized] = STATE(6193), - [sym__val_range] = STATE(10614), - [sym__value] = STATE(6193), - [sym_val_nothing] = STATE(6059), - [sym_val_bool] = STATE(5905), - [sym_val_variable] = STATE(6059), - [sym__var] = STATE(5293), - [sym_val_number] = STATE(6059), - [sym__val_number_decimal] = STATE(4661), - [sym__val_number] = STATE(6097), - [sym_val_duration] = STATE(6059), - [sym_val_filesize] = STATE(6059), - [sym_val_binary] = STATE(6059), - [sym_val_string] = STATE(6059), - [sym__str_double_quotes] = STATE(6144), - [sym_val_interpolated] = STATE(6059), - [sym__inter_single_quotes] = STATE(6158), - [sym__inter_double_quotes] = STATE(6159), - [sym_val_list] = STATE(6059), - [sym_val_record] = STATE(6059), - [sym_val_table] = STATE(6059), - [sym_val_closure] = STATE(6059), - [sym_unquoted] = STATE(6238), - [sym__unquoted_anonymous_prefix] = STATE(11079), - [sym_comment] = STATE(1964), - [anon_sym_LBRACK] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(5443), - [anon_sym_DOLLAR] = ACTIONS(5445), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_DOT_DOT] = ACTIONS(5447), - [anon_sym_not] = ACTIONS(4303), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5449), - [anon_sym_DOT_DOT_LT] = ACTIONS(5449), - [anon_sym_null] = ACTIONS(4307), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_false] = ACTIONS(4309), - [aux_sym__val_number_decimal_token1] = ACTIONS(4311), - [aux_sym__val_number_decimal_token2] = ACTIONS(4313), - [anon_sym_DOT2] = ACTIONS(5451), - [aux_sym__val_number_decimal_token3] = ACTIONS(4317), - [aux_sym__val_number_token1] = ACTIONS(2949), - [aux_sym__val_number_token2] = ACTIONS(2949), - [aux_sym__val_number_token3] = ACTIONS(2949), - [aux_sym__val_number_token4] = ACTIONS(4319), - [aux_sym__val_number_token5] = ACTIONS(4319), - [aux_sym__val_number_token6] = ACTIONS(4319), - [anon_sym_0b] = ACTIONS(2953), - [anon_sym_0o] = ACTIONS(2955), - [anon_sym_0x] = ACTIONS(2955), - [sym_val_date] = ACTIONS(4321), - [anon_sym_DQUOTE] = ACTIONS(2959), - [sym__str_single_quotes] = ACTIONS(2961), - [sym__str_back_ticks] = ACTIONS(2961), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2963), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2965), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2969), + [2249] = { + [sym_comment] = STATE(2249), + [anon_sym_LBRACK] = ACTIONS(1181), + [anon_sym_COMMA] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_DOLLAR] = ACTIONS(1181), + [anon_sym_GT] = ACTIONS(5617), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_in] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_RBRACE] = ACTIONS(1181), + [anon_sym__] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(5623), + [anon_sym_STAR_STAR] = ACTIONS(5625), + [anon_sym_PLUS_PLUS] = ACTIONS(5625), + [anon_sym_SLASH] = ACTIONS(5623), + [anon_sym_mod] = ACTIONS(5627), + [anon_sym_SLASH_SLASH] = ACTIONS(5627), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_bit_DASHshl] = ACTIONS(5629), + [anon_sym_bit_DASHshr] = ACTIONS(5629), + [anon_sym_EQ_EQ] = ACTIONS(5631), + [anon_sym_BANG_EQ] = ACTIONS(5631), + [anon_sym_LT2] = ACTIONS(5617), + [anon_sym_LT_EQ] = ACTIONS(5631), + [anon_sym_GT_EQ] = ACTIONS(5631), + [anon_sym_not_DASHin] = ACTIONS(1181), + [anon_sym_starts_DASHwith] = ACTIONS(1181), + [anon_sym_ends_DASHwith] = ACTIONS(1181), + [anon_sym_EQ_TILDE] = ACTIONS(1181), + [anon_sym_BANG_TILDE] = ACTIONS(1181), + [anon_sym_bit_DASHand] = ACTIONS(1181), + [anon_sym_bit_DASHxor] = ACTIONS(1181), + [anon_sym_bit_DASHor] = ACTIONS(1181), + [anon_sym_and] = ACTIONS(1181), + [anon_sym_xor] = ACTIONS(1181), + [anon_sym_or] = ACTIONS(1181), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1181), + [anon_sym_DOT_DOT_LT] = ACTIONS(1181), + [anon_sym_null] = ACTIONS(1181), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1181), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1181), + [aux_sym__val_number_token1] = ACTIONS(1181), + [aux_sym__val_number_token2] = ACTIONS(1181), + [aux_sym__val_number_token3] = ACTIONS(1181), + [aux_sym__val_number_token4] = ACTIONS(1181), + [aux_sym__val_number_token5] = ACTIONS(1181), + [aux_sym__val_number_token6] = ACTIONS(1181), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym__str_single_quotes] = ACTIONS(1181), + [sym__str_back_ticks] = ACTIONS(1181), + [anon_sym_err_GT] = ACTIONS(1181), + [anon_sym_out_GT] = ACTIONS(1181), + [anon_sym_e_GT] = ACTIONS(1181), + [anon_sym_o_GT] = ACTIONS(1181), + [anon_sym_err_PLUSout_GT] = ACTIONS(1181), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1181), + [anon_sym_o_PLUSe_GT] = ACTIONS(1181), + [anon_sym_e_PLUSo_GT] = ACTIONS(1181), + [aux_sym_unquoted_token1] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(3), }, - [1965] = { - [sym_expr_unary] = STATE(6193), - [sym__expr_unary_minus] = STATE(6200), - [sym_expr_binary] = STATE(6193), - [sym__expr_binary_expression] = STATE(6239), - [sym_expr_parenthesized] = STATE(6193), - [sym__val_range] = STATE(10614), - [sym__value] = STATE(6193), - [sym_val_nothing] = STATE(6059), - [sym_val_bool] = STATE(5905), - [sym_val_variable] = STATE(6059), - [sym__var] = STATE(5293), - [sym_val_number] = STATE(6059), - [sym__val_number_decimal] = STATE(4661), - [sym__val_number] = STATE(6097), - [sym_val_duration] = STATE(6059), - [sym_val_filesize] = STATE(6059), - [sym_val_binary] = STATE(6059), - [sym_val_string] = STATE(6059), - [sym__str_double_quotes] = STATE(6144), - [sym_val_interpolated] = STATE(6059), - [sym__inter_single_quotes] = STATE(6158), - [sym__inter_double_quotes] = STATE(6159), - [sym_val_list] = STATE(6059), - [sym_val_record] = STATE(6059), - [sym_val_table] = STATE(6059), - [sym_val_closure] = STATE(6059), - [sym_unquoted] = STATE(6267), - [sym__unquoted_anonymous_prefix] = STATE(11079), - [sym_comment] = STATE(1965), - [anon_sym_LBRACK] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(5443), - [anon_sym_DOLLAR] = ACTIONS(5445), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_DOT_DOT] = ACTIONS(5447), - [anon_sym_not] = ACTIONS(4303), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5449), - [anon_sym_DOT_DOT_LT] = ACTIONS(5449), - [anon_sym_null] = ACTIONS(4307), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_false] = ACTIONS(4309), - [aux_sym__val_number_decimal_token1] = ACTIONS(4311), - [aux_sym__val_number_decimal_token2] = ACTIONS(4313), - [anon_sym_DOT2] = ACTIONS(5451), - [aux_sym__val_number_decimal_token3] = ACTIONS(4317), - [aux_sym__val_number_token1] = ACTIONS(2949), - [aux_sym__val_number_token2] = ACTIONS(2949), - [aux_sym__val_number_token3] = ACTIONS(2949), - [aux_sym__val_number_token4] = ACTIONS(4319), - [aux_sym__val_number_token5] = ACTIONS(4319), - [aux_sym__val_number_token6] = ACTIONS(4319), - [anon_sym_0b] = ACTIONS(2953), - [anon_sym_0o] = ACTIONS(2955), - [anon_sym_0x] = ACTIONS(2955), - [sym_val_date] = ACTIONS(4321), - [anon_sym_DQUOTE] = ACTIONS(2959), - [sym__str_single_quotes] = ACTIONS(2961), - [sym__str_back_ticks] = ACTIONS(2961), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2963), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2965), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2969), + [2250] = { + [sym_comment] = STATE(2250), + [anon_sym_LBRACK] = ACTIONS(1181), + [anon_sym_COMMA] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_DOLLAR] = ACTIONS(1181), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_in] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_RBRACE] = ACTIONS(1181), + [anon_sym__] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(5623), + [anon_sym_STAR_STAR] = ACTIONS(5625), + [anon_sym_PLUS_PLUS] = ACTIONS(5625), + [anon_sym_SLASH] = ACTIONS(5623), + [anon_sym_mod] = ACTIONS(5627), + [anon_sym_SLASH_SLASH] = ACTIONS(5627), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_bit_DASHshl] = ACTIONS(1181), + [anon_sym_bit_DASHshr] = ACTIONS(1181), + [anon_sym_EQ_EQ] = ACTIONS(1181), + [anon_sym_BANG_EQ] = ACTIONS(1181), + [anon_sym_LT2] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1181), + [anon_sym_GT_EQ] = ACTIONS(1181), + [anon_sym_not_DASHin] = ACTIONS(1181), + [anon_sym_starts_DASHwith] = ACTIONS(1181), + [anon_sym_ends_DASHwith] = ACTIONS(1181), + [anon_sym_EQ_TILDE] = ACTIONS(1181), + [anon_sym_BANG_TILDE] = ACTIONS(1181), + [anon_sym_bit_DASHand] = ACTIONS(1181), + [anon_sym_bit_DASHxor] = ACTIONS(1181), + [anon_sym_bit_DASHor] = ACTIONS(1181), + [anon_sym_and] = ACTIONS(1181), + [anon_sym_xor] = ACTIONS(1181), + [anon_sym_or] = ACTIONS(1181), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1181), + [anon_sym_DOT_DOT_LT] = ACTIONS(1181), + [anon_sym_null] = ACTIONS(1181), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1181), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1181), + [aux_sym__val_number_token1] = ACTIONS(1181), + [aux_sym__val_number_token2] = ACTIONS(1181), + [aux_sym__val_number_token3] = ACTIONS(1181), + [aux_sym__val_number_token4] = ACTIONS(1181), + [aux_sym__val_number_token5] = ACTIONS(1181), + [aux_sym__val_number_token6] = ACTIONS(1181), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym__str_single_quotes] = ACTIONS(1181), + [sym__str_back_ticks] = ACTIONS(1181), + [anon_sym_err_GT] = ACTIONS(1181), + [anon_sym_out_GT] = ACTIONS(1181), + [anon_sym_e_GT] = ACTIONS(1181), + [anon_sym_o_GT] = ACTIONS(1181), + [anon_sym_err_PLUSout_GT] = ACTIONS(1181), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1181), + [anon_sym_o_PLUSe_GT] = ACTIONS(1181), + [anon_sym_e_PLUSo_GT] = ACTIONS(1181), + [aux_sym_unquoted_token1] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(3), }, - [1966] = { - [sym_expr_unary] = STATE(6193), - [sym__expr_unary_minus] = STATE(6200), - [sym_expr_binary] = STATE(6193), - [sym__expr_binary_expression] = STATE(5949), - [sym_expr_parenthesized] = STATE(6193), - [sym__val_range] = STATE(10614), - [sym__value] = STATE(6193), - [sym_val_nothing] = STATE(6059), - [sym_val_bool] = STATE(5905), - [sym_val_variable] = STATE(6059), - [sym__var] = STATE(5293), - [sym_val_number] = STATE(6059), - [sym__val_number_decimal] = STATE(4661), - [sym__val_number] = STATE(6097), - [sym_val_duration] = STATE(6059), - [sym_val_filesize] = STATE(6059), - [sym_val_binary] = STATE(6059), - [sym_val_string] = STATE(6059), - [sym__str_double_quotes] = STATE(6144), - [sym_val_interpolated] = STATE(6059), - [sym__inter_single_quotes] = STATE(6158), - [sym__inter_double_quotes] = STATE(6159), - [sym_val_list] = STATE(6059), - [sym_val_record] = STATE(6059), - [sym_val_table] = STATE(6059), - [sym_val_closure] = STATE(6059), - [sym_unquoted] = STATE(6281), - [sym__unquoted_anonymous_prefix] = STATE(11079), - [sym_comment] = STATE(1966), - [anon_sym_LBRACK] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(5443), - [anon_sym_DOLLAR] = ACTIONS(5445), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_DOT_DOT] = ACTIONS(5447), - [anon_sym_not] = ACTIONS(4303), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5449), - [anon_sym_DOT_DOT_LT] = ACTIONS(5449), - [anon_sym_null] = ACTIONS(4307), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_false] = ACTIONS(4309), - [aux_sym__val_number_decimal_token1] = ACTIONS(4311), - [aux_sym__val_number_decimal_token2] = ACTIONS(4313), - [anon_sym_DOT2] = ACTIONS(5451), - [aux_sym__val_number_decimal_token3] = ACTIONS(4317), - [aux_sym__val_number_token1] = ACTIONS(2949), - [aux_sym__val_number_token2] = ACTIONS(2949), - [aux_sym__val_number_token3] = ACTIONS(2949), - [aux_sym__val_number_token4] = ACTIONS(4319), - [aux_sym__val_number_token5] = ACTIONS(4319), - [aux_sym__val_number_token6] = ACTIONS(4319), - [anon_sym_0b] = ACTIONS(2953), - [anon_sym_0o] = ACTIONS(2955), - [anon_sym_0x] = ACTIONS(2955), - [sym_val_date] = ACTIONS(4321), - [anon_sym_DQUOTE] = ACTIONS(2959), - [sym__str_single_quotes] = ACTIONS(2961), - [sym__str_back_ticks] = ACTIONS(2961), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2963), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2965), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2969), - [anon_sym_POUND] = ACTIONS(3), + [2251] = { + [sym_comment] = STATE(2251), + [ts_builtin_sym_end] = ACTIONS(922), + [anon_sym_export] = ACTIONS(920), + [anon_sym_alias] = ACTIONS(920), + [anon_sym_let] = ACTIONS(920), + [anon_sym_let_DASHenv] = ACTIONS(920), + [anon_sym_mut] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(920), + [sym_cmd_identifier] = ACTIONS(920), + [anon_sym_LF] = ACTIONS(922), + [anon_sym_def] = ACTIONS(920), + [anon_sym_export_DASHenv] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym_module] = ACTIONS(920), + [anon_sym_use] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_PIPE] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_error] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_loop] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_match] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_try] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_source] = ACTIONS(920), + [anon_sym_source_DASHenv] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_hide] = ACTIONS(920), + [anon_sym_hide_DASHenv] = ACTIONS(920), + [anon_sym_overlay] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_where] = ACTIONS(920), + [anon_sym_not] = ACTIONS(920), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [anon_sym_null] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), + [anon_sym_CARET] = ACTIONS(920), + [anon_sym_POUND] = ACTIONS(113), }, - [1967] = { - [sym_expr_unary] = STATE(6193), - [sym__expr_unary_minus] = STATE(6200), - [sym_expr_binary] = STATE(6193), - [sym__expr_binary_expression] = STATE(6286), - [sym_expr_parenthesized] = STATE(6193), - [sym__val_range] = STATE(10614), - [sym__value] = STATE(6193), - [sym_val_nothing] = STATE(6059), - [sym_val_bool] = STATE(5905), - [sym_val_variable] = STATE(6059), - [sym__var] = STATE(5293), - [sym_val_number] = STATE(6059), - [sym__val_number_decimal] = STATE(4661), - [sym__val_number] = STATE(6097), - [sym_val_duration] = STATE(6059), - [sym_val_filesize] = STATE(6059), - [sym_val_binary] = STATE(6059), - [sym_val_string] = STATE(6059), - [sym__str_double_quotes] = STATE(6144), - [sym_val_interpolated] = STATE(6059), - [sym__inter_single_quotes] = STATE(6158), - [sym__inter_double_quotes] = STATE(6159), - [sym_val_list] = STATE(6059), - [sym_val_record] = STATE(6059), - [sym_val_table] = STATE(6059), - [sym_val_closure] = STATE(6059), - [sym_unquoted] = STATE(5950), - [sym__unquoted_anonymous_prefix] = STATE(11079), - [sym_comment] = STATE(1967), - [anon_sym_LBRACK] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(5443), - [anon_sym_DOLLAR] = ACTIONS(5445), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_DOT_DOT] = ACTIONS(5447), - [anon_sym_not] = ACTIONS(4303), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5449), - [anon_sym_DOT_DOT_LT] = ACTIONS(5449), - [anon_sym_null] = ACTIONS(4307), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_false] = ACTIONS(4309), - [aux_sym__val_number_decimal_token1] = ACTIONS(4311), - [aux_sym__val_number_decimal_token2] = ACTIONS(4313), - [anon_sym_DOT2] = ACTIONS(5451), - [aux_sym__val_number_decimal_token3] = ACTIONS(4317), - [aux_sym__val_number_token1] = ACTIONS(2949), - [aux_sym__val_number_token2] = ACTIONS(2949), - [aux_sym__val_number_token3] = ACTIONS(2949), - [aux_sym__val_number_token4] = ACTIONS(4319), - [aux_sym__val_number_token5] = ACTIONS(4319), - [aux_sym__val_number_token6] = ACTIONS(4319), - [anon_sym_0b] = ACTIONS(2953), - [anon_sym_0o] = ACTIONS(2955), - [anon_sym_0x] = ACTIONS(2955), - [sym_val_date] = ACTIONS(4321), - [anon_sym_DQUOTE] = ACTIONS(2959), - [sym__str_single_quotes] = ACTIONS(2961), - [sym__str_back_ticks] = ACTIONS(2961), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2963), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2965), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2969), + [2252] = { + [sym_comment] = STATE(2252), + [anon_sym_LBRACK] = ACTIONS(1181), + [anon_sym_COMMA] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_DOLLAR] = ACTIONS(1181), + [anon_sym_GT] = ACTIONS(5617), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_in] = ACTIONS(5621), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_RBRACE] = ACTIONS(1181), + [anon_sym__] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(5623), + [anon_sym_STAR_STAR] = ACTIONS(5625), + [anon_sym_PLUS_PLUS] = ACTIONS(5625), + [anon_sym_SLASH] = ACTIONS(5623), + [anon_sym_mod] = ACTIONS(5627), + [anon_sym_SLASH_SLASH] = ACTIONS(5627), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_bit_DASHshl] = ACTIONS(5629), + [anon_sym_bit_DASHshr] = ACTIONS(5629), + [anon_sym_EQ_EQ] = ACTIONS(5631), + [anon_sym_BANG_EQ] = ACTIONS(5631), + [anon_sym_LT2] = ACTIONS(5617), + [anon_sym_LT_EQ] = ACTIONS(5631), + [anon_sym_GT_EQ] = ACTIONS(5631), + [anon_sym_not_DASHin] = ACTIONS(5633), + [anon_sym_starts_DASHwith] = ACTIONS(5633), + [anon_sym_ends_DASHwith] = ACTIONS(5633), + [anon_sym_EQ_TILDE] = ACTIONS(1181), + [anon_sym_BANG_TILDE] = ACTIONS(1181), + [anon_sym_bit_DASHand] = ACTIONS(1181), + [anon_sym_bit_DASHxor] = ACTIONS(1181), + [anon_sym_bit_DASHor] = ACTIONS(1181), + [anon_sym_and] = ACTIONS(1181), + [anon_sym_xor] = ACTIONS(1181), + [anon_sym_or] = ACTIONS(1181), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1181), + [anon_sym_DOT_DOT_LT] = ACTIONS(1181), + [anon_sym_null] = ACTIONS(1181), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1181), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1181), + [aux_sym__val_number_token1] = ACTIONS(1181), + [aux_sym__val_number_token2] = ACTIONS(1181), + [aux_sym__val_number_token3] = ACTIONS(1181), + [aux_sym__val_number_token4] = ACTIONS(1181), + [aux_sym__val_number_token5] = ACTIONS(1181), + [aux_sym__val_number_token6] = ACTIONS(1181), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym__str_single_quotes] = ACTIONS(1181), + [sym__str_back_ticks] = ACTIONS(1181), + [anon_sym_err_GT] = ACTIONS(1181), + [anon_sym_out_GT] = ACTIONS(1181), + [anon_sym_e_GT] = ACTIONS(1181), + [anon_sym_o_GT] = ACTIONS(1181), + [anon_sym_err_PLUSout_GT] = ACTIONS(1181), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1181), + [anon_sym_o_PLUSe_GT] = ACTIONS(1181), + [anon_sym_e_PLUSo_GT] = ACTIONS(1181), + [aux_sym_unquoted_token1] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(3), }, - [1968] = { - [sym_expr_unary] = STATE(6193), - [sym__expr_unary_minus] = STATE(6200), - [sym_expr_binary] = STATE(6193), - [sym__expr_binary_expression] = STATE(6165), - [sym_expr_parenthesized] = STATE(6193), - [sym__val_range] = STATE(10614), - [sym__value] = STATE(6193), - [sym_val_nothing] = STATE(6059), - [sym_val_bool] = STATE(5905), - [sym_val_variable] = STATE(6059), - [sym__var] = STATE(5293), - [sym_val_number] = STATE(6059), - [sym__val_number_decimal] = STATE(4661), - [sym__val_number] = STATE(6097), - [sym_val_duration] = STATE(6059), - [sym_val_filesize] = STATE(6059), - [sym_val_binary] = STATE(6059), - [sym_val_string] = STATE(6059), - [sym__str_double_quotes] = STATE(6144), - [sym_val_interpolated] = STATE(6059), - [sym__inter_single_quotes] = STATE(6158), - [sym__inter_double_quotes] = STATE(6159), - [sym_val_list] = STATE(6059), - [sym_val_record] = STATE(6059), - [sym_val_table] = STATE(6059), - [sym_val_closure] = STATE(6059), - [sym_unquoted] = STATE(6049), - [sym__unquoted_anonymous_prefix] = STATE(11079), - [sym_comment] = STATE(1968), - [anon_sym_LBRACK] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(5443), - [anon_sym_DOLLAR] = ACTIONS(5445), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_DOT_DOT] = ACTIONS(5447), - [anon_sym_not] = ACTIONS(4303), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5449), - [anon_sym_DOT_DOT_LT] = ACTIONS(5449), - [anon_sym_null] = ACTIONS(4307), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_false] = ACTIONS(4309), - [aux_sym__val_number_decimal_token1] = ACTIONS(4311), - [aux_sym__val_number_decimal_token2] = ACTIONS(4313), - [anon_sym_DOT2] = ACTIONS(5451), - [aux_sym__val_number_decimal_token3] = ACTIONS(4317), - [aux_sym__val_number_token1] = ACTIONS(2949), - [aux_sym__val_number_token2] = ACTIONS(2949), - [aux_sym__val_number_token3] = ACTIONS(2949), - [aux_sym__val_number_token4] = ACTIONS(4319), - [aux_sym__val_number_token5] = ACTIONS(4319), - [aux_sym__val_number_token6] = ACTIONS(4319), - [anon_sym_0b] = ACTIONS(2953), - [anon_sym_0o] = ACTIONS(2955), - [anon_sym_0x] = ACTIONS(2955), - [sym_val_date] = ACTIONS(4321), - [anon_sym_DQUOTE] = ACTIONS(2959), - [sym__str_single_quotes] = ACTIONS(2961), - [sym__str_back_ticks] = ACTIONS(2961), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2963), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2965), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2969), + [2253] = { + [sym_comment] = STATE(2253), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_COMMA] = ACTIONS(1035), + [anon_sym_LPAREN] = ACTIONS(1035), + [anon_sym_DOLLAR] = ACTIONS(1035), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1033), + [anon_sym_in] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(1035), + [anon_sym_RBRACE] = ACTIONS(1035), + [anon_sym__] = ACTIONS(1033), + [anon_sym_DOT_DOT] = ACTIONS(1033), + [anon_sym_STAR] = ACTIONS(1033), + [anon_sym_STAR_STAR] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1035), + [anon_sym_SLASH] = ACTIONS(1033), + [anon_sym_mod] = ACTIONS(1035), + [anon_sym_SLASH_SLASH] = ACTIONS(1035), + [anon_sym_PLUS] = ACTIONS(1033), + [anon_sym_bit_DASHshl] = ACTIONS(1035), + [anon_sym_bit_DASHshr] = ACTIONS(1035), + [anon_sym_EQ_EQ] = ACTIONS(1035), + [anon_sym_BANG_EQ] = ACTIONS(1035), + [anon_sym_LT2] = ACTIONS(1033), + [anon_sym_LT_EQ] = ACTIONS(1035), + [anon_sym_GT_EQ] = ACTIONS(1035), + [anon_sym_not_DASHin] = ACTIONS(1035), + [anon_sym_starts_DASHwith] = ACTIONS(1035), + [anon_sym_ends_DASHwith] = ACTIONS(1035), + [anon_sym_EQ_TILDE] = ACTIONS(1035), + [anon_sym_BANG_TILDE] = ACTIONS(1035), + [anon_sym_bit_DASHand] = ACTIONS(1035), + [anon_sym_bit_DASHxor] = ACTIONS(1035), + [anon_sym_bit_DASHor] = ACTIONS(1035), + [anon_sym_and] = ACTIONS(1035), + [anon_sym_xor] = ACTIONS(1035), + [anon_sym_or] = ACTIONS(1035), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1035), + [anon_sym_DOT_DOT_LT] = ACTIONS(1035), + [anon_sym_null] = ACTIONS(1035), + [anon_sym_true] = ACTIONS(1035), + [anon_sym_false] = ACTIONS(1035), + [aux_sym__val_number_decimal_token1] = ACTIONS(1033), + [aux_sym__val_number_decimal_token2] = ACTIONS(1035), + [anon_sym_DOT2] = ACTIONS(1033), + [aux_sym__val_number_decimal_token3] = ACTIONS(1035), + [aux_sym__val_number_token1] = ACTIONS(1035), + [aux_sym__val_number_token2] = ACTIONS(1035), + [aux_sym__val_number_token3] = ACTIONS(1035), + [aux_sym__val_number_token4] = ACTIONS(1035), + [aux_sym__val_number_token5] = ACTIONS(1035), + [aux_sym__val_number_token6] = ACTIONS(1035), + [anon_sym_0b] = ACTIONS(1033), + [anon_sym_0o] = ACTIONS(1033), + [anon_sym_0x] = ACTIONS(1033), + [sym_val_date] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(1035), + [sym__str_single_quotes] = ACTIONS(1035), + [sym__str_back_ticks] = ACTIONS(1035), + [anon_sym_err_GT] = ACTIONS(1035), + [anon_sym_out_GT] = ACTIONS(1035), + [anon_sym_e_GT] = ACTIONS(1035), + [anon_sym_o_GT] = ACTIONS(1035), + [anon_sym_err_PLUSout_GT] = ACTIONS(1035), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1035), + [anon_sym_o_PLUSe_GT] = ACTIONS(1035), + [anon_sym_e_PLUSo_GT] = ACTIONS(1035), + [aux_sym_unquoted_token1] = ACTIONS(1033), [anon_sym_POUND] = ACTIONS(3), }, - [1969] = { - [sym_expr_unary] = STATE(6193), - [sym__expr_unary_minus] = STATE(6200), - [sym_expr_binary] = STATE(6193), - [sym__expr_binary_expression] = STATE(6011), - [sym_expr_parenthesized] = STATE(6193), - [sym__val_range] = STATE(10614), - [sym__value] = STATE(6193), - [sym_val_nothing] = STATE(6059), - [sym_val_bool] = STATE(5905), - [sym_val_variable] = STATE(6059), - [sym__var] = STATE(5293), - [sym_val_number] = STATE(6059), - [sym__val_number_decimal] = STATE(4661), - [sym__val_number] = STATE(6097), - [sym_val_duration] = STATE(6059), - [sym_val_filesize] = STATE(6059), - [sym_val_binary] = STATE(6059), - [sym_val_string] = STATE(6059), - [sym__str_double_quotes] = STATE(6144), - [sym_val_interpolated] = STATE(6059), - [sym__inter_single_quotes] = STATE(6158), - [sym__inter_double_quotes] = STATE(6159), - [sym_val_list] = STATE(6059), - [sym_val_record] = STATE(6059), - [sym_val_table] = STATE(6059), - [sym_val_closure] = STATE(6059), - [sym_unquoted] = STATE(6003), - [sym__unquoted_anonymous_prefix] = STATE(11079), - [sym_comment] = STATE(1969), - [anon_sym_LBRACK] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(5443), - [anon_sym_DOLLAR] = ACTIONS(5445), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_DOT_DOT] = ACTIONS(5447), - [anon_sym_not] = ACTIONS(4303), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5449), - [anon_sym_DOT_DOT_LT] = ACTIONS(5449), - [anon_sym_null] = ACTIONS(4307), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_false] = ACTIONS(4309), - [aux_sym__val_number_decimal_token1] = ACTIONS(4311), - [aux_sym__val_number_decimal_token2] = ACTIONS(4313), - [anon_sym_DOT2] = ACTIONS(5451), - [aux_sym__val_number_decimal_token3] = ACTIONS(4317), - [aux_sym__val_number_token1] = ACTIONS(2949), - [aux_sym__val_number_token2] = ACTIONS(2949), - [aux_sym__val_number_token3] = ACTIONS(2949), - [aux_sym__val_number_token4] = ACTIONS(4319), - [aux_sym__val_number_token5] = ACTIONS(4319), - [aux_sym__val_number_token6] = ACTIONS(4319), - [anon_sym_0b] = ACTIONS(2953), - [anon_sym_0o] = ACTIONS(2955), - [anon_sym_0x] = ACTIONS(2955), - [sym_val_date] = ACTIONS(4321), - [anon_sym_DQUOTE] = ACTIONS(2959), - [sym__str_single_quotes] = ACTIONS(2961), - [sym__str_back_ticks] = ACTIONS(2961), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2963), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2965), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2969), + [2254] = { + [sym_comment] = STATE(2254), + [anon_sym_LBRACK] = ACTIONS(1181), + [anon_sym_COMMA] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_DOLLAR] = ACTIONS(1181), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_RBRACE] = ACTIONS(1181), + [anon_sym__] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(5623), + [anon_sym_STAR_STAR] = ACTIONS(5625), + [anon_sym_PLUS_PLUS] = ACTIONS(5625), + [anon_sym_SLASH] = ACTIONS(5623), + [anon_sym_mod] = ACTIONS(5627), + [anon_sym_SLASH_SLASH] = ACTIONS(5627), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_bit_DASHshl] = ACTIONS(1181), + [anon_sym_bit_DASHshr] = ACTIONS(1181), + [anon_sym_EQ_EQ] = ACTIONS(1181), + [anon_sym_BANG_EQ] = ACTIONS(1181), + [anon_sym_LT2] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1181), + [anon_sym_GT_EQ] = ACTIONS(1181), + [anon_sym_not_DASHin] = ACTIONS(1181), + [anon_sym_starts_DASHwith] = ACTIONS(1181), + [anon_sym_ends_DASHwith] = ACTIONS(1181), + [anon_sym_EQ_TILDE] = ACTIONS(1181), + [anon_sym_BANG_TILDE] = ACTIONS(1181), + [anon_sym_bit_DASHand] = ACTIONS(1181), + [anon_sym_bit_DASHxor] = ACTIONS(1181), + [anon_sym_bit_DASHor] = ACTIONS(1181), + [anon_sym_and] = ACTIONS(1181), + [anon_sym_xor] = ACTIONS(1181), + [anon_sym_or] = ACTIONS(1181), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1181), + [anon_sym_DOT_DOT_LT] = ACTIONS(1181), + [anon_sym_null] = ACTIONS(1181), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1181), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1181), + [aux_sym__val_number_token1] = ACTIONS(1181), + [aux_sym__val_number_token2] = ACTIONS(1181), + [aux_sym__val_number_token3] = ACTIONS(1181), + [aux_sym__val_number_token4] = ACTIONS(1181), + [aux_sym__val_number_token5] = ACTIONS(1181), + [aux_sym__val_number_token6] = ACTIONS(1181), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym__str_single_quotes] = ACTIONS(1181), + [sym__str_back_ticks] = ACTIONS(1181), + [anon_sym_err_GT] = ACTIONS(1181), + [anon_sym_out_GT] = ACTIONS(1181), + [anon_sym_e_GT] = ACTIONS(1181), + [anon_sym_o_GT] = ACTIONS(1181), + [anon_sym_err_PLUSout_GT] = ACTIONS(1181), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1181), + [anon_sym_o_PLUSe_GT] = ACTIONS(1181), + [anon_sym_e_PLUSo_GT] = ACTIONS(1181), + [aux_sym_unquoted_token1] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(3), }, - [1970] = { - [sym_expr_unary] = STATE(6193), - [sym__expr_unary_minus] = STATE(6200), - [sym_expr_binary] = STATE(6193), - [sym__expr_binary_expression] = STATE(6100), - [sym_expr_parenthesized] = STATE(6193), - [sym__val_range] = STATE(10614), - [sym__value] = STATE(6193), - [sym_val_nothing] = STATE(6059), - [sym_val_bool] = STATE(5905), - [sym_val_variable] = STATE(6059), - [sym__var] = STATE(5293), - [sym_val_number] = STATE(6059), - [sym__val_number_decimal] = STATE(4661), - [sym__val_number] = STATE(6097), - [sym_val_duration] = STATE(6059), - [sym_val_filesize] = STATE(6059), - [sym_val_binary] = STATE(6059), - [sym_val_string] = STATE(6059), - [sym__str_double_quotes] = STATE(6144), - [sym_val_interpolated] = STATE(6059), - [sym__inter_single_quotes] = STATE(6158), - [sym__inter_double_quotes] = STATE(6159), - [sym_val_list] = STATE(6059), - [sym_val_record] = STATE(6059), - [sym_val_table] = STATE(6059), - [sym_val_closure] = STATE(6059), - [sym_unquoted] = STATE(6022), - [sym__unquoted_anonymous_prefix] = STATE(11079), - [sym_comment] = STATE(1970), - [anon_sym_LBRACK] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(5443), - [anon_sym_DOLLAR] = ACTIONS(5445), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_DOT_DOT] = ACTIONS(5447), - [anon_sym_not] = ACTIONS(4303), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5449), - [anon_sym_DOT_DOT_LT] = ACTIONS(5449), - [anon_sym_null] = ACTIONS(4307), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_false] = ACTIONS(4309), - [aux_sym__val_number_decimal_token1] = ACTIONS(4311), - [aux_sym__val_number_decimal_token2] = ACTIONS(4313), - [anon_sym_DOT2] = ACTIONS(5451), - [aux_sym__val_number_decimal_token3] = ACTIONS(4317), - [aux_sym__val_number_token1] = ACTIONS(2949), - [aux_sym__val_number_token2] = ACTIONS(2949), - [aux_sym__val_number_token3] = ACTIONS(2949), - [aux_sym__val_number_token4] = ACTIONS(4319), - [aux_sym__val_number_token5] = ACTIONS(4319), - [aux_sym__val_number_token6] = ACTIONS(4319), - [anon_sym_0b] = ACTIONS(2953), - [anon_sym_0o] = ACTIONS(2955), - [anon_sym_0x] = ACTIONS(2955), - [sym_val_date] = ACTIONS(4321), - [anon_sym_DQUOTE] = ACTIONS(2959), - [sym__str_single_quotes] = ACTIONS(2961), - [sym__str_back_ticks] = ACTIONS(2961), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2963), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2965), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2969), + [2255] = { + [sym_comment] = STATE(2255), + [anon_sym_LBRACK] = ACTIONS(1157), + [anon_sym_COMMA] = ACTIONS(1157), + [anon_sym_RBRACK] = ACTIONS(1157), + [anon_sym_LPAREN] = ACTIONS(1157), + [anon_sym_DOLLAR] = ACTIONS(1157), + [anon_sym_GT] = ACTIONS(1155), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_in] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1157), + [anon_sym_DOT_DOT] = ACTIONS(1155), + [anon_sym_STAR] = ACTIONS(1155), + [anon_sym_STAR_STAR] = ACTIONS(1157), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1155), + [anon_sym_mod] = ACTIONS(1157), + [anon_sym_SLASH_SLASH] = ACTIONS(1157), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_bit_DASHshl] = ACTIONS(1157), + [anon_sym_bit_DASHshr] = ACTIONS(1157), + [anon_sym_EQ_EQ] = ACTIONS(1157), + [anon_sym_BANG_EQ] = ACTIONS(1157), + [anon_sym_LT2] = ACTIONS(1155), + [anon_sym_LT_EQ] = ACTIONS(1157), + [anon_sym_GT_EQ] = ACTIONS(1157), + [anon_sym_not_DASHin] = ACTIONS(1157), + [anon_sym_starts_DASHwith] = ACTIONS(1157), + [anon_sym_ends_DASHwith] = ACTIONS(1157), + [anon_sym_EQ_TILDE] = ACTIONS(1157), + [anon_sym_BANG_TILDE] = ACTIONS(1157), + [anon_sym_bit_DASHand] = ACTIONS(1157), + [anon_sym_bit_DASHxor] = ACTIONS(1157), + [anon_sym_bit_DASHor] = ACTIONS(1157), + [anon_sym_and] = ACTIONS(1157), + [anon_sym_xor] = ACTIONS(1157), + [anon_sym_or] = ACTIONS(1157), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1157), + [anon_sym_DOT_DOT_LT] = ACTIONS(1157), + [anon_sym_null] = ACTIONS(1157), + [anon_sym_true] = ACTIONS(1157), + [anon_sym_false] = ACTIONS(1157), + [aux_sym__val_number_decimal_token1] = ACTIONS(1155), + [aux_sym__val_number_decimal_token2] = ACTIONS(1157), + [anon_sym_DOT2] = ACTIONS(1155), + [aux_sym__val_number_decimal_token3] = ACTIONS(1157), + [aux_sym__val_number_token1] = ACTIONS(1157), + [aux_sym__val_number_token2] = ACTIONS(1157), + [aux_sym__val_number_token3] = ACTIONS(1157), + [aux_sym__val_number_token4] = ACTIONS(1157), + [aux_sym__val_number_token5] = ACTIONS(1157), + [aux_sym__val_number_token6] = ACTIONS(1157), + [anon_sym_0b] = ACTIONS(1155), + [anon_sym_0o] = ACTIONS(1155), + [anon_sym_0x] = ACTIONS(1155), + [sym_val_date] = ACTIONS(1157), + [anon_sym_DQUOTE] = ACTIONS(1157), + [sym__str_single_quotes] = ACTIONS(1157), + [sym__str_back_ticks] = ACTIONS(1157), + [anon_sym_err_GT] = ACTIONS(1157), + [anon_sym_out_GT] = ACTIONS(1157), + [anon_sym_e_GT] = ACTIONS(1157), + [anon_sym_o_GT] = ACTIONS(1157), + [anon_sym_err_PLUSout_GT] = ACTIONS(1157), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1157), + [anon_sym_o_PLUSe_GT] = ACTIONS(1157), + [anon_sym_e_PLUSo_GT] = ACTIONS(1157), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1155), [anon_sym_POUND] = ACTIONS(3), }, - [1971] = { - [sym_expr_unary] = STATE(6193), - [sym__expr_unary_minus] = STATE(6200), - [sym_expr_binary] = STATE(6193), - [sym__expr_binary_expression] = STATE(6062), - [sym_expr_parenthesized] = STATE(6193), - [sym__val_range] = STATE(10614), - [sym__value] = STATE(6193), - [sym_val_nothing] = STATE(6059), - [sym_val_bool] = STATE(5905), - [sym_val_variable] = STATE(6059), - [sym__var] = STATE(5293), - [sym_val_number] = STATE(6059), - [sym__val_number_decimal] = STATE(4661), - [sym__val_number] = STATE(6097), - [sym_val_duration] = STATE(6059), - [sym_val_filesize] = STATE(6059), - [sym_val_binary] = STATE(6059), - [sym_val_string] = STATE(6059), - [sym__str_double_quotes] = STATE(6144), - [sym_val_interpolated] = STATE(6059), - [sym__inter_single_quotes] = STATE(6158), - [sym__inter_double_quotes] = STATE(6159), - [sym_val_list] = STATE(6059), - [sym_val_record] = STATE(6059), - [sym_val_table] = STATE(6059), - [sym_val_closure] = STATE(6059), - [sym_unquoted] = STATE(6069), - [sym__unquoted_anonymous_prefix] = STATE(11079), - [sym_comment] = STATE(1971), - [anon_sym_LBRACK] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(5443), - [anon_sym_DOLLAR] = ACTIONS(5445), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_DOT_DOT] = ACTIONS(5447), - [anon_sym_not] = ACTIONS(4303), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5449), - [anon_sym_DOT_DOT_LT] = ACTIONS(5449), - [anon_sym_null] = ACTIONS(4307), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_false] = ACTIONS(4309), - [aux_sym__val_number_decimal_token1] = ACTIONS(4311), - [aux_sym__val_number_decimal_token2] = ACTIONS(4313), - [anon_sym_DOT2] = ACTIONS(5451), - [aux_sym__val_number_decimal_token3] = ACTIONS(4317), - [aux_sym__val_number_token1] = ACTIONS(2949), - [aux_sym__val_number_token2] = ACTIONS(2949), - [aux_sym__val_number_token3] = ACTIONS(2949), - [aux_sym__val_number_token4] = ACTIONS(4319), - [aux_sym__val_number_token5] = ACTIONS(4319), - [aux_sym__val_number_token6] = ACTIONS(4319), - [anon_sym_0b] = ACTIONS(2953), - [anon_sym_0o] = ACTIONS(2955), - [anon_sym_0x] = ACTIONS(2955), - [sym_val_date] = ACTIONS(4321), - [anon_sym_DQUOTE] = ACTIONS(2959), - [sym__str_single_quotes] = ACTIONS(2961), - [sym__str_back_ticks] = ACTIONS(2961), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2963), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2965), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2969), + [2256] = { + [sym_comment] = STATE(2256), + [anon_sym_LBRACK] = ACTIONS(1181), + [anon_sym_COMMA] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_DOLLAR] = ACTIONS(1181), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_RBRACE] = ACTIONS(1181), + [anon_sym__] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1179), + [anon_sym_STAR_STAR] = ACTIONS(5625), + [anon_sym_PLUS_PLUS] = ACTIONS(5625), + [anon_sym_SLASH] = ACTIONS(1179), + [anon_sym_mod] = ACTIONS(1181), + [anon_sym_SLASH_SLASH] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_bit_DASHshl] = ACTIONS(1181), + [anon_sym_bit_DASHshr] = ACTIONS(1181), + [anon_sym_EQ_EQ] = ACTIONS(1181), + [anon_sym_BANG_EQ] = ACTIONS(1181), + [anon_sym_LT2] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1181), + [anon_sym_GT_EQ] = ACTIONS(1181), + [anon_sym_not_DASHin] = ACTIONS(1181), + [anon_sym_starts_DASHwith] = ACTIONS(1181), + [anon_sym_ends_DASHwith] = ACTIONS(1181), + [anon_sym_EQ_TILDE] = ACTIONS(1181), + [anon_sym_BANG_TILDE] = ACTIONS(1181), + [anon_sym_bit_DASHand] = ACTIONS(1181), + [anon_sym_bit_DASHxor] = ACTIONS(1181), + [anon_sym_bit_DASHor] = ACTIONS(1181), + [anon_sym_and] = ACTIONS(1181), + [anon_sym_xor] = ACTIONS(1181), + [anon_sym_or] = ACTIONS(1181), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1181), + [anon_sym_DOT_DOT_LT] = ACTIONS(1181), + [anon_sym_null] = ACTIONS(1181), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1181), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1181), + [aux_sym__val_number_token1] = ACTIONS(1181), + [aux_sym__val_number_token2] = ACTIONS(1181), + [aux_sym__val_number_token3] = ACTIONS(1181), + [aux_sym__val_number_token4] = ACTIONS(1181), + [aux_sym__val_number_token5] = ACTIONS(1181), + [aux_sym__val_number_token6] = ACTIONS(1181), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym__str_single_quotes] = ACTIONS(1181), + [sym__str_back_ticks] = ACTIONS(1181), + [anon_sym_err_GT] = ACTIONS(1181), + [anon_sym_out_GT] = ACTIONS(1181), + [anon_sym_e_GT] = ACTIONS(1181), + [anon_sym_o_GT] = ACTIONS(1181), + [anon_sym_err_PLUSout_GT] = ACTIONS(1181), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1181), + [anon_sym_o_PLUSe_GT] = ACTIONS(1181), + [anon_sym_e_PLUSo_GT] = ACTIONS(1181), + [aux_sym_unquoted_token1] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(3), }, - [1972] = { - [sym_expr_unary] = STATE(6193), - [sym__expr_unary_minus] = STATE(6200), - [sym_expr_binary] = STATE(6193), - [sym__expr_binary_expression] = STATE(6071), - [sym_expr_parenthesized] = STATE(6193), - [sym__val_range] = STATE(10614), - [sym__value] = STATE(6193), - [sym_val_nothing] = STATE(6059), - [sym_val_bool] = STATE(5905), - [sym_val_variable] = STATE(6059), - [sym__var] = STATE(5293), - [sym_val_number] = STATE(6059), - [sym__val_number_decimal] = STATE(4661), - [sym__val_number] = STATE(6097), - [sym_val_duration] = STATE(6059), - [sym_val_filesize] = STATE(6059), - [sym_val_binary] = STATE(6059), - [sym_val_string] = STATE(6059), - [sym__str_double_quotes] = STATE(6144), - [sym_val_interpolated] = STATE(6059), - [sym__inter_single_quotes] = STATE(6158), - [sym__inter_double_quotes] = STATE(6159), - [sym_val_list] = STATE(6059), - [sym_val_record] = STATE(6059), - [sym_val_table] = STATE(6059), - [sym_val_closure] = STATE(6059), - [sym_unquoted] = STATE(6079), - [sym__unquoted_anonymous_prefix] = STATE(11079), - [sym_comment] = STATE(1972), - [anon_sym_LBRACK] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(5443), - [anon_sym_DOLLAR] = ACTIONS(5445), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_DOT_DOT] = ACTIONS(5447), - [anon_sym_not] = ACTIONS(4303), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5449), - [anon_sym_DOT_DOT_LT] = ACTIONS(5449), - [anon_sym_null] = ACTIONS(4307), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_false] = ACTIONS(4309), - [aux_sym__val_number_decimal_token1] = ACTIONS(4311), - [aux_sym__val_number_decimal_token2] = ACTIONS(4313), - [anon_sym_DOT2] = ACTIONS(5451), - [aux_sym__val_number_decimal_token3] = ACTIONS(4317), - [aux_sym__val_number_token1] = ACTIONS(2949), - [aux_sym__val_number_token2] = ACTIONS(2949), - [aux_sym__val_number_token3] = ACTIONS(2949), - [aux_sym__val_number_token4] = ACTIONS(4319), - [aux_sym__val_number_token5] = ACTIONS(4319), - [aux_sym__val_number_token6] = ACTIONS(4319), - [anon_sym_0b] = ACTIONS(2953), - [anon_sym_0o] = ACTIONS(2955), - [anon_sym_0x] = ACTIONS(2955), - [sym_val_date] = ACTIONS(4321), - [anon_sym_DQUOTE] = ACTIONS(2959), - [sym__str_single_quotes] = ACTIONS(2961), - [sym__str_back_ticks] = ACTIONS(2961), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2963), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2965), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2969), - [anon_sym_POUND] = ACTIONS(3), + [2257] = { + [sym_comment] = STATE(2257), + [ts_builtin_sym_end] = ACTIONS(1209), + [anon_sym_export] = ACTIONS(1139), + [anon_sym_alias] = ACTIONS(1139), + [anon_sym_let] = ACTIONS(1139), + [anon_sym_let_DASHenv] = ACTIONS(1139), + [anon_sym_mut] = ACTIONS(1139), + [anon_sym_const] = ACTIONS(1139), + [anon_sym_SEMI] = ACTIONS(1139), + [sym_cmd_identifier] = ACTIONS(1139), + [anon_sym_LF] = ACTIONS(1139), + [anon_sym_def] = ACTIONS(1139), + [anon_sym_export_DASHenv] = ACTIONS(1139), + [anon_sym_extern] = ACTIONS(1139), + [anon_sym_module] = ACTIONS(1139), + [anon_sym_use] = ACTIONS(1139), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LPAREN] = ACTIONS(1139), + [anon_sym_DOLLAR] = ACTIONS(1139), + [anon_sym_error] = ACTIONS(1139), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_break] = ACTIONS(1139), + [anon_sym_continue] = ACTIONS(1139), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_loop] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1139), + [anon_sym_do] = ACTIONS(1139), + [anon_sym_if] = ACTIONS(1139), + [anon_sym_match] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1139), + [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_try] = ACTIONS(1139), + [anon_sym_return] = ACTIONS(1139), + [anon_sym_source] = ACTIONS(1139), + [anon_sym_source_DASHenv] = ACTIONS(1139), + [anon_sym_register] = ACTIONS(1139), + [anon_sym_hide] = ACTIONS(1139), + [anon_sym_hide_DASHenv] = ACTIONS(1139), + [anon_sym_overlay] = ACTIONS(1139), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_where] = ACTIONS(1139), + [anon_sym_not] = ACTIONS(1139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1139), + [anon_sym_DOT_DOT_LT] = ACTIONS(1139), + [anon_sym_null] = ACTIONS(1139), + [anon_sym_true] = ACTIONS(1139), + [anon_sym_false] = ACTIONS(1139), + [aux_sym__val_number_decimal_token1] = ACTIONS(1139), + [aux_sym__val_number_decimal_token2] = ACTIONS(1139), + [anon_sym_DOT2] = ACTIONS(1139), + [aux_sym__val_number_decimal_token3] = ACTIONS(1139), + [aux_sym__val_number_token1] = ACTIONS(1139), + [aux_sym__val_number_token2] = ACTIONS(1139), + [aux_sym__val_number_token3] = ACTIONS(1139), + [aux_sym__val_number_token4] = ACTIONS(1139), + [aux_sym__val_number_token5] = ACTIONS(1139), + [aux_sym__val_number_token6] = ACTIONS(1139), + [anon_sym_0b] = ACTIONS(1139), + [anon_sym_0o] = ACTIONS(1139), + [anon_sym_0x] = ACTIONS(1139), + [sym_val_date] = ACTIONS(1139), + [anon_sym_DQUOTE] = ACTIONS(1139), + [sym__str_single_quotes] = ACTIONS(1139), + [sym__str_back_ticks] = ACTIONS(1139), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1139), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1139), + [aux_sym__list_item_starts_with_sign_token1] = ACTIONS(5903), + [anon_sym_CARET] = ACTIONS(1139), + [anon_sym_POUND] = ACTIONS(113), }, - [1973] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6636), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6599), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5163), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(6284), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(1973), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(5453), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5455), - [anon_sym_DOT_DOT_LT] = ACTIONS(5455), - [anon_sym_null] = ACTIONS(5457), - [anon_sym_true] = ACTIONS(5459), - [anon_sym_false] = ACTIONS(5459), - [aux_sym__val_number_decimal_token1] = ACTIONS(5461), - [aux_sym__val_number_decimal_token2] = ACTIONS(5463), - [anon_sym_DOT2] = ACTIONS(5465), - [aux_sym__val_number_decimal_token3] = ACTIONS(5467), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(5469), - [aux_sym__val_number_token5] = ACTIONS(5469), - [aux_sym__val_number_token6] = ACTIONS(5469), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(5471), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(3), + [2258] = { + [sym_comment] = STATE(2258), + [ts_builtin_sym_end] = ACTIONS(1273), + [anon_sym_export] = ACTIONS(1271), + [anon_sym_alias] = ACTIONS(1271), + [anon_sym_let] = ACTIONS(1271), + [anon_sym_let_DASHenv] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(1271), + [anon_sym_const] = ACTIONS(1271), + [anon_sym_SEMI] = ACTIONS(1271), + [sym_cmd_identifier] = ACTIONS(1271), + [anon_sym_LF] = ACTIONS(1273), + [anon_sym_def] = ACTIONS(1271), + [anon_sym_export_DASHenv] = ACTIONS(1271), + [anon_sym_extern] = ACTIONS(1271), + [anon_sym_module] = ACTIONS(1271), + [anon_sym_use] = ACTIONS(1271), + [anon_sym_LBRACK] = ACTIONS(1271), + [anon_sym_LPAREN] = ACTIONS(1271), + [anon_sym_DOLLAR] = ACTIONS(1271), + [anon_sym_error] = ACTIONS(1271), + [anon_sym_DASH_DASH] = ACTIONS(1271), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_break] = ACTIONS(1271), + [anon_sym_continue] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1271), + [anon_sym_loop] = ACTIONS(1271), + [anon_sym_while] = ACTIONS(1271), + [anon_sym_do] = ACTIONS(1271), + [anon_sym_if] = ACTIONS(1271), + [anon_sym_match] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_DOT_DOT] = ACTIONS(1271), + [anon_sym_try] = ACTIONS(1271), + [anon_sym_return] = ACTIONS(1271), + [anon_sym_source] = ACTIONS(1271), + [anon_sym_source_DASHenv] = ACTIONS(1271), + [anon_sym_register] = ACTIONS(1271), + [anon_sym_hide] = ACTIONS(1271), + [anon_sym_hide_DASHenv] = ACTIONS(1271), + [anon_sym_overlay] = ACTIONS(1271), + [anon_sym_as] = ACTIONS(1271), + [anon_sym_where] = ACTIONS(1271), + [anon_sym_not] = ACTIONS(1271), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1271), + [anon_sym_DOT_DOT_LT] = ACTIONS(1271), + [anon_sym_null] = ACTIONS(1271), + [anon_sym_true] = ACTIONS(1271), + [anon_sym_false] = ACTIONS(1271), + [aux_sym__val_number_decimal_token1] = ACTIONS(1271), + [aux_sym__val_number_decimal_token2] = ACTIONS(1271), + [anon_sym_DOT2] = ACTIONS(1271), + [aux_sym__val_number_decimal_token3] = ACTIONS(1271), + [aux_sym__val_number_token1] = ACTIONS(1271), + [aux_sym__val_number_token2] = ACTIONS(1271), + [aux_sym__val_number_token3] = ACTIONS(1271), + [aux_sym__val_number_token4] = ACTIONS(1271), + [aux_sym__val_number_token5] = ACTIONS(1271), + [aux_sym__val_number_token6] = ACTIONS(1271), + [anon_sym_0b] = ACTIONS(1271), + [anon_sym_0o] = ACTIONS(1271), + [anon_sym_0x] = ACTIONS(1271), + [sym_val_date] = ACTIONS(1271), + [anon_sym_DQUOTE] = ACTIONS(1271), + [sym__str_single_quotes] = ACTIONS(1271), + [sym__str_back_ticks] = ACTIONS(1271), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1271), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1271), + [anon_sym_CARET] = ACTIONS(1271), + [anon_sym_POUND] = ACTIONS(113), }, - [1974] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6666), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6599), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5163), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(6285), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(1974), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(5453), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5455), - [anon_sym_DOT_DOT_LT] = ACTIONS(5455), - [anon_sym_null] = ACTIONS(5457), - [anon_sym_true] = ACTIONS(5459), - [anon_sym_false] = ACTIONS(5459), - [aux_sym__val_number_decimal_token1] = ACTIONS(5461), - [aux_sym__val_number_decimal_token2] = ACTIONS(5463), - [anon_sym_DOT2] = ACTIONS(5465), - [aux_sym__val_number_decimal_token3] = ACTIONS(5467), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(5469), - [aux_sym__val_number_token5] = ACTIONS(5469), - [aux_sym__val_number_token6] = ACTIONS(5469), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(5471), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), + [2259] = { + [sym_comment] = STATE(2259), + [anon_sym_LBRACK] = ACTIONS(1181), + [anon_sym_COMMA] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_DOLLAR] = ACTIONS(1181), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_in] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_RBRACE] = ACTIONS(1181), + [anon_sym__] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(5623), + [anon_sym_STAR_STAR] = ACTIONS(5625), + [anon_sym_PLUS_PLUS] = ACTIONS(5625), + [anon_sym_SLASH] = ACTIONS(5623), + [anon_sym_mod] = ACTIONS(5627), + [anon_sym_SLASH_SLASH] = ACTIONS(5627), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_bit_DASHshl] = ACTIONS(5629), + [anon_sym_bit_DASHshr] = ACTIONS(5629), + [anon_sym_EQ_EQ] = ACTIONS(1181), + [anon_sym_BANG_EQ] = ACTIONS(1181), + [anon_sym_LT2] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1181), + [anon_sym_GT_EQ] = ACTIONS(1181), + [anon_sym_not_DASHin] = ACTIONS(1181), + [anon_sym_starts_DASHwith] = ACTIONS(1181), + [anon_sym_ends_DASHwith] = ACTIONS(1181), + [anon_sym_EQ_TILDE] = ACTIONS(1181), + [anon_sym_BANG_TILDE] = ACTIONS(1181), + [anon_sym_bit_DASHand] = ACTIONS(1181), + [anon_sym_bit_DASHxor] = ACTIONS(1181), + [anon_sym_bit_DASHor] = ACTIONS(1181), + [anon_sym_and] = ACTIONS(1181), + [anon_sym_xor] = ACTIONS(1181), + [anon_sym_or] = ACTIONS(1181), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1181), + [anon_sym_DOT_DOT_LT] = ACTIONS(1181), + [anon_sym_null] = ACTIONS(1181), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1181), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1181), + [aux_sym__val_number_token1] = ACTIONS(1181), + [aux_sym__val_number_token2] = ACTIONS(1181), + [aux_sym__val_number_token3] = ACTIONS(1181), + [aux_sym__val_number_token4] = ACTIONS(1181), + [aux_sym__val_number_token5] = ACTIONS(1181), + [aux_sym__val_number_token6] = ACTIONS(1181), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym__str_single_quotes] = ACTIONS(1181), + [sym__str_back_ticks] = ACTIONS(1181), + [anon_sym_err_GT] = ACTIONS(1181), + [anon_sym_out_GT] = ACTIONS(1181), + [anon_sym_e_GT] = ACTIONS(1181), + [anon_sym_o_GT] = ACTIONS(1181), + [anon_sym_err_PLUSout_GT] = ACTIONS(1181), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1181), + [anon_sym_o_PLUSe_GT] = ACTIONS(1181), + [anon_sym_e_PLUSo_GT] = ACTIONS(1181), + [aux_sym_unquoted_token1] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(3), }, - [1975] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6670), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6599), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5163), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(6089), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(1975), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(5453), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5455), - [anon_sym_DOT_DOT_LT] = ACTIONS(5455), - [anon_sym_null] = ACTIONS(5457), - [anon_sym_true] = ACTIONS(5459), - [anon_sym_false] = ACTIONS(5459), - [aux_sym__val_number_decimal_token1] = ACTIONS(5461), - [aux_sym__val_number_decimal_token2] = ACTIONS(5463), - [anon_sym_DOT2] = ACTIONS(5465), - [aux_sym__val_number_decimal_token3] = ACTIONS(5467), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(5469), - [aux_sym__val_number_token5] = ACTIONS(5469), - [aux_sym__val_number_token6] = ACTIONS(5469), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(5471), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), + [2260] = { + [sym_comment] = STATE(2260), + [anon_sym_LBRACK] = ACTIONS(1181), + [anon_sym_COMMA] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_DOLLAR] = ACTIONS(1181), + [anon_sym_GT] = ACTIONS(5617), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_in] = ACTIONS(5621), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_RBRACE] = ACTIONS(1181), + [anon_sym__] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(5623), + [anon_sym_STAR_STAR] = ACTIONS(5625), + [anon_sym_PLUS_PLUS] = ACTIONS(5625), + [anon_sym_SLASH] = ACTIONS(5623), + [anon_sym_mod] = ACTIONS(5627), + [anon_sym_SLASH_SLASH] = ACTIONS(5627), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_bit_DASHshl] = ACTIONS(5629), + [anon_sym_bit_DASHshr] = ACTIONS(5629), + [anon_sym_EQ_EQ] = ACTIONS(5631), + [anon_sym_BANG_EQ] = ACTIONS(5631), + [anon_sym_LT2] = ACTIONS(5617), + [anon_sym_LT_EQ] = ACTIONS(5631), + [anon_sym_GT_EQ] = ACTIONS(5631), + [anon_sym_not_DASHin] = ACTIONS(5633), + [anon_sym_starts_DASHwith] = ACTIONS(5633), + [anon_sym_ends_DASHwith] = ACTIONS(5633), + [anon_sym_EQ_TILDE] = ACTIONS(5635), + [anon_sym_BANG_TILDE] = ACTIONS(5635), + [anon_sym_bit_DASHand] = ACTIONS(1181), + [anon_sym_bit_DASHxor] = ACTIONS(1181), + [anon_sym_bit_DASHor] = ACTIONS(1181), + [anon_sym_and] = ACTIONS(1181), + [anon_sym_xor] = ACTIONS(1181), + [anon_sym_or] = ACTIONS(1181), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1181), + [anon_sym_DOT_DOT_LT] = ACTIONS(1181), + [anon_sym_null] = ACTIONS(1181), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1181), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1181), + [aux_sym__val_number_token1] = ACTIONS(1181), + [aux_sym__val_number_token2] = ACTIONS(1181), + [aux_sym__val_number_token3] = ACTIONS(1181), + [aux_sym__val_number_token4] = ACTIONS(1181), + [aux_sym__val_number_token5] = ACTIONS(1181), + [aux_sym__val_number_token6] = ACTIONS(1181), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym__str_single_quotes] = ACTIONS(1181), + [sym__str_back_ticks] = ACTIONS(1181), + [anon_sym_err_GT] = ACTIONS(1181), + [anon_sym_out_GT] = ACTIONS(1181), + [anon_sym_e_GT] = ACTIONS(1181), + [anon_sym_o_GT] = ACTIONS(1181), + [anon_sym_err_PLUSout_GT] = ACTIONS(1181), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1181), + [anon_sym_o_PLUSe_GT] = ACTIONS(1181), + [anon_sym_e_PLUSo_GT] = ACTIONS(1181), + [aux_sym_unquoted_token1] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(3), }, - [1976] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6677), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6599), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5163), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(6260), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(1976), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(5453), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5455), - [anon_sym_DOT_DOT_LT] = ACTIONS(5455), - [anon_sym_null] = ACTIONS(5457), - [anon_sym_true] = ACTIONS(5459), - [anon_sym_false] = ACTIONS(5459), - [aux_sym__val_number_decimal_token1] = ACTIONS(5461), - [aux_sym__val_number_decimal_token2] = ACTIONS(5463), - [anon_sym_DOT2] = ACTIONS(5465), - [aux_sym__val_number_decimal_token3] = ACTIONS(5467), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(5469), - [aux_sym__val_number_token5] = ACTIONS(5469), - [aux_sym__val_number_token6] = ACTIONS(5469), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(5471), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(3), - }, - [1977] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6695), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6599), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5163), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(5954), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(1977), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(5453), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5455), - [anon_sym_DOT_DOT_LT] = ACTIONS(5455), - [anon_sym_null] = ACTIONS(5457), - [anon_sym_true] = ACTIONS(5459), - [anon_sym_false] = ACTIONS(5459), - [aux_sym__val_number_decimal_token1] = ACTIONS(5461), - [aux_sym__val_number_decimal_token2] = ACTIONS(5463), - [anon_sym_DOT2] = ACTIONS(5465), - [aux_sym__val_number_decimal_token3] = ACTIONS(5467), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(5469), - [aux_sym__val_number_token5] = ACTIONS(5469), - [aux_sym__val_number_token6] = ACTIONS(5469), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(5471), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(3), - }, - [1978] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6721), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6599), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5163), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(5955), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(1978), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(5453), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5455), - [anon_sym_DOT_DOT_LT] = ACTIONS(5455), - [anon_sym_null] = ACTIONS(5457), - [anon_sym_true] = ACTIONS(5459), - [anon_sym_false] = ACTIONS(5459), - [aux_sym__val_number_decimal_token1] = ACTIONS(5461), - [aux_sym__val_number_decimal_token2] = ACTIONS(5463), - [anon_sym_DOT2] = ACTIONS(5465), - [aux_sym__val_number_decimal_token3] = ACTIONS(5467), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(5469), - [aux_sym__val_number_token5] = ACTIONS(5469), - [aux_sym__val_number_token6] = ACTIONS(5469), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(5471), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(3), - }, - [1979] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6726), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6599), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5163), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(5962), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(1979), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(5453), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5455), - [anon_sym_DOT_DOT_LT] = ACTIONS(5455), - [anon_sym_null] = ACTIONS(5457), - [anon_sym_true] = ACTIONS(5459), - [anon_sym_false] = ACTIONS(5459), - [aux_sym__val_number_decimal_token1] = ACTIONS(5461), - [aux_sym__val_number_decimal_token2] = ACTIONS(5463), - [anon_sym_DOT2] = ACTIONS(5465), - [aux_sym__val_number_decimal_token3] = ACTIONS(5467), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(5469), - [aux_sym__val_number_token5] = ACTIONS(5469), - [aux_sym__val_number_token6] = ACTIONS(5469), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(5471), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(3), - }, - [1980] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6735), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6599), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5163), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(5981), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(1980), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(5453), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5455), - [anon_sym_DOT_DOT_LT] = ACTIONS(5455), - [anon_sym_null] = ACTIONS(5457), - [anon_sym_true] = ACTIONS(5459), - [anon_sym_false] = ACTIONS(5459), - [aux_sym__val_number_decimal_token1] = ACTIONS(5461), - [aux_sym__val_number_decimal_token2] = ACTIONS(5463), - [anon_sym_DOT2] = ACTIONS(5465), - [aux_sym__val_number_decimal_token3] = ACTIONS(5467), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(5469), - [aux_sym__val_number_token5] = ACTIONS(5469), - [aux_sym__val_number_token6] = ACTIONS(5469), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(5471), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(3), - }, - [1981] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6736), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6599), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5163), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(5958), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(1981), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(5453), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5455), - [anon_sym_DOT_DOT_LT] = ACTIONS(5455), - [anon_sym_null] = ACTIONS(5457), - [anon_sym_true] = ACTIONS(5459), - [anon_sym_false] = ACTIONS(5459), - [aux_sym__val_number_decimal_token1] = ACTIONS(5461), - [aux_sym__val_number_decimal_token2] = ACTIONS(5463), - [anon_sym_DOT2] = ACTIONS(5465), - [aux_sym__val_number_decimal_token3] = ACTIONS(5467), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(5469), - [aux_sym__val_number_token5] = ACTIONS(5469), - [aux_sym__val_number_token6] = ACTIONS(5469), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(5471), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(3), - }, - [1982] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6748), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6599), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5163), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(6177), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(1982), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(5453), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5455), - [anon_sym_DOT_DOT_LT] = ACTIONS(5455), - [anon_sym_null] = ACTIONS(5457), - [anon_sym_true] = ACTIONS(5459), - [anon_sym_false] = ACTIONS(5459), - [aux_sym__val_number_decimal_token1] = ACTIONS(5461), - [aux_sym__val_number_decimal_token2] = ACTIONS(5463), - [anon_sym_DOT2] = ACTIONS(5465), - [aux_sym__val_number_decimal_token3] = ACTIONS(5467), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(5469), - [aux_sym__val_number_token5] = ACTIONS(5469), - [aux_sym__val_number_token6] = ACTIONS(5469), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(5471), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(3), + [2261] = { + [sym_comment] = STATE(2261), + [ts_builtin_sym_end] = ACTIONS(940), + [anon_sym_export] = ACTIONS(938), + [anon_sym_alias] = ACTIONS(938), + [anon_sym_let] = ACTIONS(938), + [anon_sym_let_DASHenv] = ACTIONS(938), + [anon_sym_mut] = ACTIONS(938), + [anon_sym_const] = ACTIONS(938), + [anon_sym_SEMI] = ACTIONS(938), + [sym_cmd_identifier] = ACTIONS(938), + [anon_sym_LF] = ACTIONS(940), + [anon_sym_def] = ACTIONS(938), + [anon_sym_export_DASHenv] = ACTIONS(938), + [anon_sym_extern] = ACTIONS(938), + [anon_sym_module] = ACTIONS(938), + [anon_sym_use] = ACTIONS(938), + [anon_sym_LBRACK] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(938), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_error] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_break] = ACTIONS(938), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_for] = ACTIONS(938), + [anon_sym_loop] = ACTIONS(938), + [anon_sym_while] = ACTIONS(938), + [anon_sym_do] = ACTIONS(938), + [anon_sym_if] = ACTIONS(938), + [anon_sym_match] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_try] = ACTIONS(938), + [anon_sym_return] = ACTIONS(938), + [anon_sym_source] = ACTIONS(938), + [anon_sym_source_DASHenv] = ACTIONS(938), + [anon_sym_register] = ACTIONS(938), + [anon_sym_hide] = ACTIONS(938), + [anon_sym_hide_DASHenv] = ACTIONS(938), + [anon_sym_overlay] = ACTIONS(938), + [anon_sym_as] = ACTIONS(938), + [anon_sym_where] = ACTIONS(938), + [anon_sym_not] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ] = ACTIONS(938), + [anon_sym_DOT_DOT_LT] = ACTIONS(938), + [anon_sym_null] = ACTIONS(938), + [anon_sym_true] = ACTIONS(938), + [anon_sym_false] = ACTIONS(938), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(938), + [anon_sym_DOT2] = ACTIONS(938), + [aux_sym__val_number_decimal_token3] = ACTIONS(938), + [aux_sym__val_number_token1] = ACTIONS(938), + [aux_sym__val_number_token2] = ACTIONS(938), + [aux_sym__val_number_token3] = ACTIONS(938), + [aux_sym__val_number_token4] = ACTIONS(938), + [aux_sym__val_number_token5] = ACTIONS(938), + [aux_sym__val_number_token6] = ACTIONS(938), + [anon_sym_0b] = ACTIONS(938), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym__str_single_quotes] = ACTIONS(938), + [sym__str_back_ticks] = ACTIONS(938), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(938), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(938), + [anon_sym_CARET] = ACTIONS(938), + [anon_sym_POUND] = ACTIONS(113), }, - [1983] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6754), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6599), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5163), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(6203), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(1983), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(5453), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5455), - [anon_sym_DOT_DOT_LT] = ACTIONS(5455), - [anon_sym_null] = ACTIONS(5457), - [anon_sym_true] = ACTIONS(5459), - [anon_sym_false] = ACTIONS(5459), - [aux_sym__val_number_decimal_token1] = ACTIONS(5461), - [aux_sym__val_number_decimal_token2] = ACTIONS(5463), - [anon_sym_DOT2] = ACTIONS(5465), - [aux_sym__val_number_decimal_token3] = ACTIONS(5467), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(5469), - [aux_sym__val_number_token5] = ACTIONS(5469), - [aux_sym__val_number_token6] = ACTIONS(5469), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(5471), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), + [2262] = { + [sym__match_pattern_record_variable] = STATE(3152), + [sym_expr_parenthesized] = STATE(10732), + [sym_val_variable] = STATE(3088), + [sym__var] = STATE(2820), + [sym_val_number] = STATE(10732), + [sym__val_number_decimal] = STATE(4911), + [sym__val_number] = STATE(4922), + [sym_val_string] = STATE(10732), + [sym__str_double_quotes] = STATE(6592), + [sym_record_entry] = STATE(3152), + [sym__record_key] = STATE(10419), + [sym_comment] = STATE(2262), + [aux_sym__match_pattern_record_repeat1] = STATE(2263), + [anon_sym_export] = ACTIONS(5649), + [anon_sym_alias] = ACTIONS(5649), + [anon_sym_let] = ACTIONS(5649), + [anon_sym_let_DASHenv] = ACTIONS(5649), + [anon_sym_mut] = ACTIONS(5649), + [anon_sym_const] = ACTIONS(5649), + [sym_cmd_identifier] = ACTIONS(5649), + [anon_sym_def] = ACTIONS(5649), + [anon_sym_export_DASHenv] = ACTIONS(5649), + [anon_sym_extern] = ACTIONS(5649), + [anon_sym_module] = ACTIONS(5649), + [anon_sym_use] = ACTIONS(5649), + [anon_sym_LPAREN] = ACTIONS(5651), + [anon_sym_DOLLAR] = ACTIONS(5653), + [anon_sym_error] = ACTIONS(5649), + [anon_sym_list] = ACTIONS(5649), + [anon_sym_DASH] = ACTIONS(189), + [anon_sym_break] = ACTIONS(5649), + [anon_sym_continue] = ACTIONS(5649), + [anon_sym_for] = ACTIONS(5649), + [anon_sym_in] = ACTIONS(5649), + [anon_sym_loop] = ACTIONS(5649), + [anon_sym_make] = ACTIONS(5649), + [anon_sym_while] = ACTIONS(5649), + [anon_sym_do] = ACTIONS(5649), + [anon_sym_if] = ACTIONS(5649), + [anon_sym_else] = ACTIONS(5649), + [anon_sym_match] = ACTIONS(5649), + [anon_sym_RBRACE] = ACTIONS(5905), + [anon_sym_try] = ACTIONS(5649), + [anon_sym_catch] = ACTIONS(5649), + [anon_sym_return] = ACTIONS(5649), + [anon_sym_source] = ACTIONS(5649), + [anon_sym_source_DASHenv] = ACTIONS(5649), + [anon_sym_register] = ACTIONS(5649), + [anon_sym_hide] = ACTIONS(5649), + [anon_sym_hide_DASHenv] = ACTIONS(5649), + [anon_sym_overlay] = ACTIONS(5649), + [anon_sym_new] = ACTIONS(5649), + [anon_sym_as] = ACTIONS(5649), + [anon_sym_PLUS] = ACTIONS(189), + [aux_sym__val_number_decimal_token1] = ACTIONS(5657), + [aux_sym__val_number_decimal_token2] = ACTIONS(5659), + [anon_sym_DOT2] = ACTIONS(5661), + [aux_sym__val_number_decimal_token3] = ACTIONS(5663), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(5665), + [aux_sym__val_number_token5] = ACTIONS(3124), + [aux_sym__val_number_token6] = ACTIONS(5665), + [anon_sym_DQUOTE] = ACTIONS(2838), + [sym__str_single_quotes] = ACTIONS(2840), + [sym__str_back_ticks] = ACTIONS(2840), + [aux_sym__record_key_token2] = ACTIONS(225), [anon_sym_POUND] = ACTIONS(3), }, - [1984] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6632), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6599), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5163), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(6218), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(1984), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(5453), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5455), - [anon_sym_DOT_DOT_LT] = ACTIONS(5455), - [anon_sym_null] = ACTIONS(5457), - [anon_sym_true] = ACTIONS(5459), - [anon_sym_false] = ACTIONS(5459), - [aux_sym__val_number_decimal_token1] = ACTIONS(5461), - [aux_sym__val_number_decimal_token2] = ACTIONS(5463), - [anon_sym_DOT2] = ACTIONS(5465), - [aux_sym__val_number_decimal_token3] = ACTIONS(5467), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(5469), - [aux_sym__val_number_token5] = ACTIONS(5469), - [aux_sym__val_number_token6] = ACTIONS(5469), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(5471), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), + [2263] = { + [sym__match_pattern_record_variable] = STATE(3152), + [sym_expr_parenthesized] = STATE(10732), + [sym_val_variable] = STATE(3088), + [sym__var] = STATE(2820), + [sym_val_number] = STATE(10732), + [sym__val_number_decimal] = STATE(4911), + [sym__val_number] = STATE(4922), + [sym_val_string] = STATE(10732), + [sym__str_double_quotes] = STATE(6592), + [sym_record_entry] = STATE(3152), + [sym__record_key] = STATE(10419), + [sym_comment] = STATE(2263), + [aux_sym__match_pattern_record_repeat1] = STATE(2122), + [anon_sym_export] = ACTIONS(5649), + [anon_sym_alias] = ACTIONS(5649), + [anon_sym_let] = ACTIONS(5649), + [anon_sym_let_DASHenv] = ACTIONS(5649), + [anon_sym_mut] = ACTIONS(5649), + [anon_sym_const] = ACTIONS(5649), + [sym_cmd_identifier] = ACTIONS(5649), + [anon_sym_def] = ACTIONS(5649), + [anon_sym_export_DASHenv] = ACTIONS(5649), + [anon_sym_extern] = ACTIONS(5649), + [anon_sym_module] = ACTIONS(5649), + [anon_sym_use] = ACTIONS(5649), + [anon_sym_LPAREN] = ACTIONS(5651), + [anon_sym_DOLLAR] = ACTIONS(5653), + [anon_sym_error] = ACTIONS(5649), + [anon_sym_list] = ACTIONS(5649), + [anon_sym_DASH] = ACTIONS(189), + [anon_sym_break] = ACTIONS(5649), + [anon_sym_continue] = ACTIONS(5649), + [anon_sym_for] = ACTIONS(5649), + [anon_sym_in] = ACTIONS(5649), + [anon_sym_loop] = ACTIONS(5649), + [anon_sym_make] = ACTIONS(5649), + [anon_sym_while] = ACTIONS(5649), + [anon_sym_do] = ACTIONS(5649), + [anon_sym_if] = ACTIONS(5649), + [anon_sym_else] = ACTIONS(5649), + [anon_sym_match] = ACTIONS(5649), + [anon_sym_RBRACE] = ACTIONS(5907), + [anon_sym_try] = ACTIONS(5649), + [anon_sym_catch] = ACTIONS(5649), + [anon_sym_return] = ACTIONS(5649), + [anon_sym_source] = ACTIONS(5649), + [anon_sym_source_DASHenv] = ACTIONS(5649), + [anon_sym_register] = ACTIONS(5649), + [anon_sym_hide] = ACTIONS(5649), + [anon_sym_hide_DASHenv] = ACTIONS(5649), + [anon_sym_overlay] = ACTIONS(5649), + [anon_sym_new] = ACTIONS(5649), + [anon_sym_as] = ACTIONS(5649), + [anon_sym_PLUS] = ACTIONS(189), + [aux_sym__val_number_decimal_token1] = ACTIONS(5657), + [aux_sym__val_number_decimal_token2] = ACTIONS(5659), + [anon_sym_DOT2] = ACTIONS(5661), + [aux_sym__val_number_decimal_token3] = ACTIONS(5663), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(5665), + [aux_sym__val_number_token5] = ACTIONS(3124), + [aux_sym__val_number_token6] = ACTIONS(5665), + [anon_sym_DQUOTE] = ACTIONS(2838), + [sym__str_single_quotes] = ACTIONS(2840), + [sym__str_back_ticks] = ACTIONS(2840), + [aux_sym__record_key_token2] = ACTIONS(225), [anon_sym_POUND] = ACTIONS(3), }, - [1985] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6660), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6599), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5163), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(6055), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(1985), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(5453), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5455), - [anon_sym_DOT_DOT_LT] = ACTIONS(5455), - [anon_sym_null] = ACTIONS(5457), - [anon_sym_true] = ACTIONS(5459), - [anon_sym_false] = ACTIONS(5459), - [aux_sym__val_number_decimal_token1] = ACTIONS(5461), - [aux_sym__val_number_decimal_token2] = ACTIONS(5463), - [anon_sym_DOT2] = ACTIONS(5465), - [aux_sym__val_number_decimal_token3] = ACTIONS(5467), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(5469), - [aux_sym__val_number_token5] = ACTIONS(5469), - [aux_sym__val_number_token6] = ACTIONS(5469), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(5471), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(3), + [2264] = { + [sym_comment] = STATE(2264), + [ts_builtin_sym_end] = ACTIONS(1255), + [anon_sym_export] = ACTIONS(1253), + [anon_sym_alias] = ACTIONS(1253), + [anon_sym_let] = ACTIONS(1253), + [anon_sym_let_DASHenv] = ACTIONS(1253), + [anon_sym_mut] = ACTIONS(1253), + [anon_sym_const] = ACTIONS(1253), + [anon_sym_SEMI] = ACTIONS(1253), + [sym_cmd_identifier] = ACTIONS(1253), + [anon_sym_LF] = ACTIONS(1255), + [anon_sym_def] = ACTIONS(1253), + [anon_sym_export_DASHenv] = ACTIONS(1253), + [anon_sym_extern] = ACTIONS(1253), + [anon_sym_module] = ACTIONS(1253), + [anon_sym_use] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1253), + [anon_sym_LPAREN] = ACTIONS(1253), + [anon_sym_DOLLAR] = ACTIONS(1253), + [anon_sym_error] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_break] = ACTIONS(1253), + [anon_sym_continue] = ACTIONS(1253), + [anon_sym_for] = ACTIONS(1253), + [anon_sym_loop] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1253), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_if] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1253), + [anon_sym_LBRACE] = ACTIONS(1253), + [anon_sym_DOT_DOT] = ACTIONS(1253), + [anon_sym_try] = ACTIONS(1253), + [anon_sym_return] = ACTIONS(1253), + [anon_sym_source] = ACTIONS(1253), + [anon_sym_source_DASHenv] = ACTIONS(1253), + [anon_sym_register] = ACTIONS(1253), + [anon_sym_hide] = ACTIONS(1253), + [anon_sym_hide_DASHenv] = ACTIONS(1253), + [anon_sym_overlay] = ACTIONS(1253), + [anon_sym_as] = ACTIONS(1253), + [anon_sym_where] = ACTIONS(1253), + [anon_sym_not] = ACTIONS(1253), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1253), + [anon_sym_DOT_DOT_LT] = ACTIONS(1253), + [anon_sym_null] = ACTIONS(1253), + [anon_sym_true] = ACTIONS(1253), + [anon_sym_false] = ACTIONS(1253), + [aux_sym__val_number_decimal_token1] = ACTIONS(1253), + [aux_sym__val_number_decimal_token2] = ACTIONS(1253), + [anon_sym_DOT2] = ACTIONS(1253), + [aux_sym__val_number_decimal_token3] = ACTIONS(1253), + [aux_sym__val_number_token1] = ACTIONS(1253), + [aux_sym__val_number_token2] = ACTIONS(1253), + [aux_sym__val_number_token3] = ACTIONS(1253), + [aux_sym__val_number_token4] = ACTIONS(1253), + [aux_sym__val_number_token5] = ACTIONS(1253), + [aux_sym__val_number_token6] = ACTIONS(1253), + [anon_sym_0b] = ACTIONS(1253), + [anon_sym_0o] = ACTIONS(1253), + [anon_sym_0x] = ACTIONS(1253), + [sym_val_date] = ACTIONS(1253), + [anon_sym_DQUOTE] = ACTIONS(1253), + [sym__str_single_quotes] = ACTIONS(1253), + [sym__str_back_ticks] = ACTIONS(1253), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1253), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1253), + [anon_sym_CARET] = ACTIONS(1253), + [anon_sym_POUND] = ACTIONS(113), }, - [1986] = { - [sym_expr_unary] = STATE(700), - [sym__expr_unary_minus] = STATE(692), - [sym_expr_binary] = STATE(700), - [sym__expr_binary_expression] = STATE(702), - [sym_expr_parenthesized] = STATE(700), - [sym__val_range] = STATE(10619), - [sym__value] = STATE(700), - [sym_val_nothing] = STATE(731), - [sym_val_bool] = STATE(647), - [sym_val_variable] = STATE(731), - [sym__var] = STATE(530), - [sym_val_number] = STATE(731), - [sym__val_number_decimal] = STATE(305), - [sym__val_number] = STATE(732), - [sym_val_duration] = STATE(731), - [sym_val_filesize] = STATE(731), - [sym_val_binary] = STATE(731), - [sym_val_string] = STATE(731), - [sym__str_double_quotes] = STATE(695), - [sym_val_interpolated] = STATE(731), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(731), - [sym_val_record] = STATE(731), - [sym_val_table] = STATE(731), - [sym_val_closure] = STATE(731), - [sym_unquoted] = STATE(703), - [sym__unquoted_anonymous_prefix] = STATE(11163), - [sym_comment] = STATE(1986), - [anon_sym_LBRACK] = ACTIONS(5473), - [anon_sym_LPAREN] = ACTIONS(5475), - [anon_sym_DOLLAR] = ACTIONS(5477), - [anon_sym_DASH] = ACTIONS(5479), - [anon_sym_LBRACE] = ACTIONS(5481), - [anon_sym_DOT_DOT] = ACTIONS(5483), - [anon_sym_not] = ACTIONS(5485), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5487), - [anon_sym_DOT_DOT_LT] = ACTIONS(5487), - [anon_sym_null] = ACTIONS(5489), - [anon_sym_true] = ACTIONS(5491), - [anon_sym_false] = ACTIONS(5491), - [aux_sym__val_number_decimal_token1] = ACTIONS(5493), - [aux_sym__val_number_decimal_token2] = ACTIONS(5495), - [anon_sym_DOT2] = ACTIONS(5497), - [aux_sym__val_number_decimal_token3] = ACTIONS(5499), - [aux_sym__val_number_token1] = ACTIONS(5501), - [aux_sym__val_number_token2] = ACTIONS(5501), - [aux_sym__val_number_token3] = ACTIONS(5501), - [aux_sym__val_number_token4] = ACTIONS(5503), - [aux_sym__val_number_token5] = ACTIONS(5503), - [aux_sym__val_number_token6] = ACTIONS(5503), - [anon_sym_0b] = ACTIONS(5505), - [anon_sym_0o] = ACTIONS(5507), - [anon_sym_0x] = ACTIONS(5507), - [sym_val_date] = ACTIONS(5509), - [anon_sym_DQUOTE] = ACTIONS(5511), - [sym__str_single_quotes] = ACTIONS(5513), - [sym__str_back_ticks] = ACTIONS(5513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5517), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5519), - [anon_sym_POUND] = ACTIONS(3), + [2265] = { + [sym_comment] = STATE(2265), + [anon_sym_export] = ACTIONS(5909), + [anon_sym_alias] = ACTIONS(5909), + [anon_sym_let] = ACTIONS(5909), + [anon_sym_let_DASHenv] = ACTIONS(5909), + [anon_sym_mut] = ACTIONS(5909), + [anon_sym_const] = ACTIONS(5909), + [anon_sym_SEMI] = ACTIONS(5909), + [sym_cmd_identifier] = ACTIONS(5909), + [anon_sym_LF] = ACTIONS(5911), + [anon_sym_def] = ACTIONS(5909), + [anon_sym_export_DASHenv] = ACTIONS(5909), + [anon_sym_extern] = ACTIONS(5909), + [anon_sym_module] = ACTIONS(5909), + [anon_sym_use] = ACTIONS(5909), + [anon_sym_LBRACK] = ACTIONS(5909), + [anon_sym_LPAREN] = ACTIONS(5909), + [anon_sym_RPAREN] = ACTIONS(5909), + [anon_sym_DOLLAR] = ACTIONS(5909), + [anon_sym_error] = ACTIONS(5909), + [anon_sym_DASH] = ACTIONS(5909), + [anon_sym_break] = ACTIONS(5909), + [anon_sym_continue] = ACTIONS(5909), + [anon_sym_for] = ACTIONS(5909), + [anon_sym_loop] = ACTIONS(5909), + [anon_sym_while] = ACTIONS(5909), + [anon_sym_do] = ACTIONS(5909), + [anon_sym_if] = ACTIONS(5909), + [anon_sym_match] = ACTIONS(5909), + [anon_sym_LBRACE] = ACTIONS(5909), + [anon_sym_RBRACE] = ACTIONS(5909), + [anon_sym_DOT_DOT] = ACTIONS(5909), + [anon_sym_try] = ACTIONS(5909), + [anon_sym_return] = ACTIONS(5909), + [anon_sym_source] = ACTIONS(5909), + [anon_sym_source_DASHenv] = ACTIONS(5909), + [anon_sym_register] = ACTIONS(5909), + [anon_sym_hide] = ACTIONS(5909), + [anon_sym_hide_DASHenv] = ACTIONS(5909), + [anon_sym_overlay] = ACTIONS(5909), + [anon_sym_where] = ACTIONS(5909), + [anon_sym_not] = ACTIONS(5909), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5909), + [anon_sym_DOT_DOT_LT] = ACTIONS(5909), + [anon_sym_null] = ACTIONS(5909), + [anon_sym_true] = ACTIONS(5909), + [anon_sym_false] = ACTIONS(5909), + [aux_sym__val_number_decimal_token1] = ACTIONS(5909), + [aux_sym__val_number_decimal_token2] = ACTIONS(5909), + [anon_sym_DOT2] = ACTIONS(5909), + [aux_sym__val_number_decimal_token3] = ACTIONS(5909), + [aux_sym__val_number_token1] = ACTIONS(5909), + [aux_sym__val_number_token2] = ACTIONS(5909), + [aux_sym__val_number_token3] = ACTIONS(5909), + [aux_sym__val_number_token4] = ACTIONS(5909), + [aux_sym__val_number_token5] = ACTIONS(5909), + [aux_sym__val_number_token6] = ACTIONS(5909), + [anon_sym_0b] = ACTIONS(5909), + [anon_sym_0o] = ACTIONS(5909), + [anon_sym_0x] = ACTIONS(5909), + [sym_val_date] = ACTIONS(5909), + [anon_sym_DQUOTE] = ACTIONS(5909), + [sym__str_single_quotes] = ACTIONS(5909), + [sym__str_back_ticks] = ACTIONS(5909), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5909), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5909), + [anon_sym_CARET] = ACTIONS(5909), + [anon_sym_POUND] = ACTIONS(113), }, - [1987] = { - [sym_expr_unary] = STATE(700), - [sym__expr_unary_minus] = STATE(692), - [sym_expr_binary] = STATE(700), - [sym__expr_binary_expression] = STATE(704), - [sym_expr_parenthesized] = STATE(700), - [sym__val_range] = STATE(10619), - [sym__value] = STATE(700), - [sym_val_nothing] = STATE(731), - [sym_val_bool] = STATE(647), - [sym_val_variable] = STATE(731), - [sym__var] = STATE(530), - [sym_val_number] = STATE(731), - [sym__val_number_decimal] = STATE(305), - [sym__val_number] = STATE(732), - [sym_val_duration] = STATE(731), - [sym_val_filesize] = STATE(731), - [sym_val_binary] = STATE(731), - [sym_val_string] = STATE(731), - [sym__str_double_quotes] = STATE(695), - [sym_val_interpolated] = STATE(731), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(731), - [sym_val_record] = STATE(731), - [sym_val_table] = STATE(731), - [sym_val_closure] = STATE(731), - [sym_unquoted] = STATE(705), - [sym__unquoted_anonymous_prefix] = STATE(11163), - [sym_comment] = STATE(1987), - [anon_sym_LBRACK] = ACTIONS(5473), - [anon_sym_LPAREN] = ACTIONS(5475), - [anon_sym_DOLLAR] = ACTIONS(5477), - [anon_sym_DASH] = ACTIONS(5479), - [anon_sym_LBRACE] = ACTIONS(5481), - [anon_sym_DOT_DOT] = ACTIONS(5483), - [anon_sym_not] = ACTIONS(5485), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5487), - [anon_sym_DOT_DOT_LT] = ACTIONS(5487), - [anon_sym_null] = ACTIONS(5489), - [anon_sym_true] = ACTIONS(5491), - [anon_sym_false] = ACTIONS(5491), - [aux_sym__val_number_decimal_token1] = ACTIONS(5493), - [aux_sym__val_number_decimal_token2] = ACTIONS(5495), - [anon_sym_DOT2] = ACTIONS(5497), - [aux_sym__val_number_decimal_token3] = ACTIONS(5499), - [aux_sym__val_number_token1] = ACTIONS(5501), - [aux_sym__val_number_token2] = ACTIONS(5501), - [aux_sym__val_number_token3] = ACTIONS(5501), - [aux_sym__val_number_token4] = ACTIONS(5503), - [aux_sym__val_number_token5] = ACTIONS(5503), - [aux_sym__val_number_token6] = ACTIONS(5503), - [anon_sym_0b] = ACTIONS(5505), - [anon_sym_0o] = ACTIONS(5507), - [anon_sym_0x] = ACTIONS(5507), - [sym_val_date] = ACTIONS(5509), - [anon_sym_DQUOTE] = ACTIONS(5511), - [sym__str_single_quotes] = ACTIONS(5513), - [sym__str_back_ticks] = ACTIONS(5513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5517), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5519), - [anon_sym_POUND] = ACTIONS(3), + [2266] = { + [sym_comment] = STATE(2266), + [anon_sym_export] = ACTIONS(1283), + [anon_sym_alias] = ACTIONS(1283), + [anon_sym_let] = ACTIONS(1283), + [anon_sym_let_DASHenv] = ACTIONS(1283), + [anon_sym_mut] = ACTIONS(1283), + [anon_sym_const] = ACTIONS(1283), + [anon_sym_SEMI] = ACTIONS(1283), + [sym_cmd_identifier] = ACTIONS(1283), + [anon_sym_LF] = ACTIONS(1285), + [anon_sym_def] = ACTIONS(1283), + [anon_sym_export_DASHenv] = ACTIONS(1283), + [anon_sym_extern] = ACTIONS(1283), + [anon_sym_module] = ACTIONS(1283), + [anon_sym_use] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_LPAREN] = ACTIONS(1283), + [anon_sym_RPAREN] = ACTIONS(1283), + [anon_sym_DOLLAR] = ACTIONS(1283), + [anon_sym_error] = ACTIONS(1283), + [anon_sym_DASH] = ACTIONS(1283), + [anon_sym_break] = ACTIONS(1283), + [anon_sym_continue] = ACTIONS(1283), + [anon_sym_for] = ACTIONS(1283), + [anon_sym_loop] = ACTIONS(1283), + [anon_sym_while] = ACTIONS(1283), + [anon_sym_do] = ACTIONS(1283), + [anon_sym_if] = ACTIONS(1283), + [anon_sym_match] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1283), + [anon_sym_RBRACE] = ACTIONS(1283), + [anon_sym_DOT_DOT] = ACTIONS(1283), + [anon_sym_try] = ACTIONS(1283), + [anon_sym_return] = ACTIONS(1283), + [anon_sym_source] = ACTIONS(1283), + [anon_sym_source_DASHenv] = ACTIONS(1283), + [anon_sym_register] = ACTIONS(1283), + [anon_sym_hide] = ACTIONS(1283), + [anon_sym_hide_DASHenv] = ACTIONS(1283), + [anon_sym_overlay] = ACTIONS(1283), + [anon_sym_where] = ACTIONS(1283), + [anon_sym_not] = ACTIONS(1283), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1283), + [anon_sym_DOT_DOT_LT] = ACTIONS(1283), + [anon_sym_null] = ACTIONS(1283), + [anon_sym_true] = ACTIONS(1283), + [anon_sym_false] = ACTIONS(1283), + [aux_sym__val_number_decimal_token1] = ACTIONS(1283), + [aux_sym__val_number_decimal_token2] = ACTIONS(1283), + [anon_sym_DOT2] = ACTIONS(1283), + [aux_sym__val_number_decimal_token3] = ACTIONS(1283), + [aux_sym__val_number_token1] = ACTIONS(1283), + [aux_sym__val_number_token2] = ACTIONS(1283), + [aux_sym__val_number_token3] = ACTIONS(1283), + [aux_sym__val_number_token4] = ACTIONS(1283), + [aux_sym__val_number_token5] = ACTIONS(1283), + [aux_sym__val_number_token6] = ACTIONS(1283), + [anon_sym_0b] = ACTIONS(1283), + [anon_sym_0o] = ACTIONS(1283), + [anon_sym_0x] = ACTIONS(1283), + [sym_val_date] = ACTIONS(1283), + [anon_sym_DQUOTE] = ACTIONS(1283), + [sym__str_single_quotes] = ACTIONS(1283), + [sym__str_back_ticks] = ACTIONS(1283), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1283), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1283), + [anon_sym_CARET] = ACTIONS(1283), + [anon_sym_POUND] = ACTIONS(113), }, - [1988] = { - [sym_expr_unary] = STATE(700), - [sym__expr_unary_minus] = STATE(692), - [sym_expr_binary] = STATE(700), - [sym__expr_binary_expression] = STATE(686), - [sym_expr_parenthesized] = STATE(700), - [sym__val_range] = STATE(10619), - [sym__value] = STATE(700), - [sym_val_nothing] = STATE(731), - [sym_val_bool] = STATE(647), - [sym_val_variable] = STATE(731), - [sym__var] = STATE(530), - [sym_val_number] = STATE(731), - [sym__val_number_decimal] = STATE(305), - [sym__val_number] = STATE(732), - [sym_val_duration] = STATE(731), - [sym_val_filesize] = STATE(731), - [sym_val_binary] = STATE(731), - [sym_val_string] = STATE(731), - [sym__str_double_quotes] = STATE(695), - [sym_val_interpolated] = STATE(731), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(731), - [sym_val_record] = STATE(731), - [sym_val_table] = STATE(731), - [sym_val_closure] = STATE(731), - [sym_unquoted] = STATE(706), - [sym__unquoted_anonymous_prefix] = STATE(11163), - [sym_comment] = STATE(1988), - [anon_sym_LBRACK] = ACTIONS(5473), - [anon_sym_LPAREN] = ACTIONS(5475), - [anon_sym_DOLLAR] = ACTIONS(5477), - [anon_sym_DASH] = ACTIONS(5479), - [anon_sym_LBRACE] = ACTIONS(5481), - [anon_sym_DOT_DOT] = ACTIONS(5483), - [anon_sym_not] = ACTIONS(5485), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5487), - [anon_sym_DOT_DOT_LT] = ACTIONS(5487), - [anon_sym_null] = ACTIONS(5489), - [anon_sym_true] = ACTIONS(5491), - [anon_sym_false] = ACTIONS(5491), - [aux_sym__val_number_decimal_token1] = ACTIONS(5493), - [aux_sym__val_number_decimal_token2] = ACTIONS(5495), - [anon_sym_DOT2] = ACTIONS(5497), - [aux_sym__val_number_decimal_token3] = ACTIONS(5499), - [aux_sym__val_number_token1] = ACTIONS(5501), - [aux_sym__val_number_token2] = ACTIONS(5501), - [aux_sym__val_number_token3] = ACTIONS(5501), - [aux_sym__val_number_token4] = ACTIONS(5503), - [aux_sym__val_number_token5] = ACTIONS(5503), - [aux_sym__val_number_token6] = ACTIONS(5503), - [anon_sym_0b] = ACTIONS(5505), - [anon_sym_0o] = ACTIONS(5507), - [anon_sym_0x] = ACTIONS(5507), - [sym_val_date] = ACTIONS(5509), - [anon_sym_DQUOTE] = ACTIONS(5511), - [sym__str_single_quotes] = ACTIONS(5513), - [sym__str_back_ticks] = ACTIONS(5513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5517), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5519), - [anon_sym_POUND] = ACTIONS(3), + [2267] = { + [sym_comment] = STATE(2267), + [anon_sym_export] = ACTIONS(5913), + [anon_sym_alias] = ACTIONS(5913), + [anon_sym_let] = ACTIONS(5913), + [anon_sym_let_DASHenv] = ACTIONS(5913), + [anon_sym_mut] = ACTIONS(5913), + [anon_sym_const] = ACTIONS(5913), + [anon_sym_SEMI] = ACTIONS(5913), + [sym_cmd_identifier] = ACTIONS(5913), + [anon_sym_LF] = ACTIONS(5915), + [anon_sym_def] = ACTIONS(5913), + [anon_sym_export_DASHenv] = ACTIONS(5913), + [anon_sym_extern] = ACTIONS(5913), + [anon_sym_module] = ACTIONS(5913), + [anon_sym_use] = ACTIONS(5913), + [anon_sym_LBRACK] = ACTIONS(5913), + [anon_sym_LPAREN] = ACTIONS(5913), + [anon_sym_RPAREN] = ACTIONS(5913), + [anon_sym_DOLLAR] = ACTIONS(5913), + [anon_sym_error] = ACTIONS(5913), + [anon_sym_DASH] = ACTIONS(5913), + [anon_sym_break] = ACTIONS(5913), + [anon_sym_continue] = ACTIONS(5913), + [anon_sym_for] = ACTIONS(5913), + [anon_sym_loop] = ACTIONS(5913), + [anon_sym_while] = ACTIONS(5913), + [anon_sym_do] = ACTIONS(5913), + [anon_sym_if] = ACTIONS(5913), + [anon_sym_match] = ACTIONS(5913), + [anon_sym_LBRACE] = ACTIONS(5913), + [anon_sym_RBRACE] = ACTIONS(5913), + [anon_sym_DOT_DOT] = ACTIONS(5913), + [anon_sym_try] = ACTIONS(5913), + [anon_sym_return] = ACTIONS(5913), + [anon_sym_source] = ACTIONS(5913), + [anon_sym_source_DASHenv] = ACTIONS(5913), + [anon_sym_register] = ACTIONS(5913), + [anon_sym_hide] = ACTIONS(5913), + [anon_sym_hide_DASHenv] = ACTIONS(5913), + [anon_sym_overlay] = ACTIONS(5913), + [anon_sym_where] = ACTIONS(5913), + [anon_sym_not] = ACTIONS(5913), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5913), + [anon_sym_DOT_DOT_LT] = ACTIONS(5913), + [anon_sym_null] = ACTIONS(5913), + [anon_sym_true] = ACTIONS(5913), + [anon_sym_false] = ACTIONS(5913), + [aux_sym__val_number_decimal_token1] = ACTIONS(5913), + [aux_sym__val_number_decimal_token2] = ACTIONS(5913), + [anon_sym_DOT2] = ACTIONS(5913), + [aux_sym__val_number_decimal_token3] = ACTIONS(5913), + [aux_sym__val_number_token1] = ACTIONS(5913), + [aux_sym__val_number_token2] = ACTIONS(5913), + [aux_sym__val_number_token3] = ACTIONS(5913), + [aux_sym__val_number_token4] = ACTIONS(5913), + [aux_sym__val_number_token5] = ACTIONS(5913), + [aux_sym__val_number_token6] = ACTIONS(5913), + [anon_sym_0b] = ACTIONS(5913), + [anon_sym_0o] = ACTIONS(5913), + [anon_sym_0x] = ACTIONS(5913), + [sym_val_date] = ACTIONS(5913), + [anon_sym_DQUOTE] = ACTIONS(5913), + [sym__str_single_quotes] = ACTIONS(5913), + [sym__str_back_ticks] = ACTIONS(5913), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5913), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5913), + [anon_sym_CARET] = ACTIONS(5913), + [anon_sym_POUND] = ACTIONS(113), }, - [1989] = { - [sym_expr_unary] = STATE(700), - [sym__expr_unary_minus] = STATE(692), - [sym_expr_binary] = STATE(700), - [sym__expr_binary_expression] = STATE(707), - [sym_expr_parenthesized] = STATE(700), - [sym__val_range] = STATE(10619), - [sym__value] = STATE(700), - [sym_val_nothing] = STATE(731), - [sym_val_bool] = STATE(647), - [sym_val_variable] = STATE(731), - [sym__var] = STATE(530), - [sym_val_number] = STATE(731), - [sym__val_number_decimal] = STATE(305), - [sym__val_number] = STATE(732), - [sym_val_duration] = STATE(731), - [sym_val_filesize] = STATE(731), - [sym_val_binary] = STATE(731), - [sym_val_string] = STATE(731), - [sym__str_double_quotes] = STATE(695), - [sym_val_interpolated] = STATE(731), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(731), - [sym_val_record] = STATE(731), - [sym_val_table] = STATE(731), - [sym_val_closure] = STATE(731), - [sym_unquoted] = STATE(708), - [sym__unquoted_anonymous_prefix] = STATE(11163), - [sym_comment] = STATE(1989), - [anon_sym_LBRACK] = ACTIONS(5473), - [anon_sym_LPAREN] = ACTIONS(5475), - [anon_sym_DOLLAR] = ACTIONS(5477), - [anon_sym_DASH] = ACTIONS(5479), - [anon_sym_LBRACE] = ACTIONS(5481), - [anon_sym_DOT_DOT] = ACTIONS(5483), - [anon_sym_not] = ACTIONS(5485), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5487), - [anon_sym_DOT_DOT_LT] = ACTIONS(5487), - [anon_sym_null] = ACTIONS(5489), - [anon_sym_true] = ACTIONS(5491), - [anon_sym_false] = ACTIONS(5491), - [aux_sym__val_number_decimal_token1] = ACTIONS(5493), - [aux_sym__val_number_decimal_token2] = ACTIONS(5495), - [anon_sym_DOT2] = ACTIONS(5497), - [aux_sym__val_number_decimal_token3] = ACTIONS(5499), - [aux_sym__val_number_token1] = ACTIONS(5501), - [aux_sym__val_number_token2] = ACTIONS(5501), - [aux_sym__val_number_token3] = ACTIONS(5501), - [aux_sym__val_number_token4] = ACTIONS(5503), - [aux_sym__val_number_token5] = ACTIONS(5503), - [aux_sym__val_number_token6] = ACTIONS(5503), - [anon_sym_0b] = ACTIONS(5505), - [anon_sym_0o] = ACTIONS(5507), - [anon_sym_0x] = ACTIONS(5507), - [sym_val_date] = ACTIONS(5509), - [anon_sym_DQUOTE] = ACTIONS(5511), - [sym__str_single_quotes] = ACTIONS(5513), - [sym__str_back_ticks] = ACTIONS(5513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5517), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5519), - [anon_sym_POUND] = ACTIONS(3), + [2268] = { + [sym_comment] = STATE(2268), + [ts_builtin_sym_end] = ACTIONS(1070), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_alias] = ACTIONS(1068), + [anon_sym_let] = ACTIONS(1068), + [anon_sym_let_DASHenv] = ACTIONS(1068), + [anon_sym_mut] = ACTIONS(1068), + [anon_sym_const] = ACTIONS(1068), + [anon_sym_SEMI] = ACTIONS(1068), + [sym_cmd_identifier] = ACTIONS(1068), + [anon_sym_LF] = ACTIONS(1070), + [anon_sym_def] = ACTIONS(1068), + [anon_sym_export_DASHenv] = ACTIONS(1068), + [anon_sym_extern] = ACTIONS(1068), + [anon_sym_module] = ACTIONS(1068), + [anon_sym_use] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(1068), + [anon_sym_LPAREN] = ACTIONS(1068), + [anon_sym_DOLLAR] = ACTIONS(1068), + [anon_sym_error] = ACTIONS(1068), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_break] = ACTIONS(1068), + [anon_sym_continue] = ACTIONS(1068), + [anon_sym_for] = ACTIONS(1068), + [anon_sym_loop] = ACTIONS(1068), + [anon_sym_while] = ACTIONS(1068), + [anon_sym_do] = ACTIONS(1068), + [anon_sym_if] = ACTIONS(1068), + [anon_sym_match] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_DOT_DOT] = ACTIONS(1068), + [anon_sym_try] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1068), + [anon_sym_source] = ACTIONS(1068), + [anon_sym_source_DASHenv] = ACTIONS(1068), + [anon_sym_register] = ACTIONS(1068), + [anon_sym_hide] = ACTIONS(1068), + [anon_sym_hide_DASHenv] = ACTIONS(1068), + [anon_sym_overlay] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_where] = ACTIONS(1068), + [anon_sym_not] = ACTIONS(1068), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1068), + [anon_sym_DOT_DOT_LT] = ACTIONS(1068), + [anon_sym_null] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1068), + [anon_sym_false] = ACTIONS(1068), + [aux_sym__val_number_decimal_token1] = ACTIONS(1068), + [aux_sym__val_number_decimal_token2] = ACTIONS(1068), + [anon_sym_DOT2] = ACTIONS(1068), + [aux_sym__val_number_decimal_token3] = ACTIONS(1068), + [aux_sym__val_number_token1] = ACTIONS(1068), + [aux_sym__val_number_token2] = ACTIONS(1068), + [aux_sym__val_number_token3] = ACTIONS(1068), + [aux_sym__val_number_token4] = ACTIONS(1068), + [aux_sym__val_number_token5] = ACTIONS(1068), + [aux_sym__val_number_token6] = ACTIONS(1068), + [anon_sym_0b] = ACTIONS(1068), + [anon_sym_0o] = ACTIONS(1068), + [anon_sym_0x] = ACTIONS(1068), + [sym_val_date] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(1068), + [sym__str_single_quotes] = ACTIONS(1068), + [sym__str_back_ticks] = ACTIONS(1068), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1068), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1068), + [anon_sym_CARET] = ACTIONS(1068), + [anon_sym_POUND] = ACTIONS(113), }, - [1990] = { - [sym_expr_unary] = STATE(700), - [sym__expr_unary_minus] = STATE(692), - [sym_expr_binary] = STATE(700), - [sym__expr_binary_expression] = STATE(709), - [sym_expr_parenthesized] = STATE(700), - [sym__val_range] = STATE(10619), - [sym__value] = STATE(700), - [sym_val_nothing] = STATE(731), - [sym_val_bool] = STATE(647), - [sym_val_variable] = STATE(731), - [sym__var] = STATE(530), - [sym_val_number] = STATE(731), - [sym__val_number_decimal] = STATE(305), - [sym__val_number] = STATE(732), - [sym_val_duration] = STATE(731), - [sym_val_filesize] = STATE(731), - [sym_val_binary] = STATE(731), - [sym_val_string] = STATE(731), - [sym__str_double_quotes] = STATE(695), - [sym_val_interpolated] = STATE(731), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(731), - [sym_val_record] = STATE(731), - [sym_val_table] = STATE(731), - [sym_val_closure] = STATE(731), - [sym_unquoted] = STATE(710), - [sym__unquoted_anonymous_prefix] = STATE(11163), - [sym_comment] = STATE(1990), - [anon_sym_LBRACK] = ACTIONS(5473), - [anon_sym_LPAREN] = ACTIONS(5475), - [anon_sym_DOLLAR] = ACTIONS(5477), - [anon_sym_DASH] = ACTIONS(5479), - [anon_sym_LBRACE] = ACTIONS(5481), - [anon_sym_DOT_DOT] = ACTIONS(5483), - [anon_sym_not] = ACTIONS(5485), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5487), - [anon_sym_DOT_DOT_LT] = ACTIONS(5487), - [anon_sym_null] = ACTIONS(5489), - [anon_sym_true] = ACTIONS(5491), - [anon_sym_false] = ACTIONS(5491), - [aux_sym__val_number_decimal_token1] = ACTIONS(5493), - [aux_sym__val_number_decimal_token2] = ACTIONS(5495), - [anon_sym_DOT2] = ACTIONS(5497), - [aux_sym__val_number_decimal_token3] = ACTIONS(5499), - [aux_sym__val_number_token1] = ACTIONS(5501), - [aux_sym__val_number_token2] = ACTIONS(5501), - [aux_sym__val_number_token3] = ACTIONS(5501), - [aux_sym__val_number_token4] = ACTIONS(5503), - [aux_sym__val_number_token5] = ACTIONS(5503), - [aux_sym__val_number_token6] = ACTIONS(5503), - [anon_sym_0b] = ACTIONS(5505), - [anon_sym_0o] = ACTIONS(5507), - [anon_sym_0x] = ACTIONS(5507), - [sym_val_date] = ACTIONS(5509), - [anon_sym_DQUOTE] = ACTIONS(5511), - [sym__str_single_quotes] = ACTIONS(5513), - [sym__str_back_ticks] = ACTIONS(5513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5517), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5519), - [anon_sym_POUND] = ACTIONS(3), + [2269] = { + [sym_comment] = STATE(2269), + [ts_builtin_sym_end] = ACTIONS(1209), + [anon_sym_export] = ACTIONS(1139), + [anon_sym_alias] = ACTIONS(1139), + [anon_sym_let] = ACTIONS(1139), + [anon_sym_let_DASHenv] = ACTIONS(1139), + [anon_sym_mut] = ACTIONS(1139), + [anon_sym_const] = ACTIONS(1139), + [anon_sym_SEMI] = ACTIONS(1139), + [sym_cmd_identifier] = ACTIONS(1139), + [anon_sym_LF] = ACTIONS(1139), + [anon_sym_def] = ACTIONS(1139), + [anon_sym_export_DASHenv] = ACTIONS(1139), + [anon_sym_extern] = ACTIONS(1139), + [anon_sym_module] = ACTIONS(1139), + [anon_sym_use] = ACTIONS(1139), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LPAREN] = ACTIONS(1139), + [anon_sym_DOLLAR] = ACTIONS(1139), + [anon_sym_error] = ACTIONS(1139), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_break] = ACTIONS(1139), + [anon_sym_continue] = ACTIONS(1139), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_loop] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1139), + [anon_sym_do] = ACTIONS(1139), + [anon_sym_if] = ACTIONS(1139), + [anon_sym_match] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1139), + [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_try] = ACTIONS(1139), + [anon_sym_return] = ACTIONS(1139), + [anon_sym_source] = ACTIONS(1139), + [anon_sym_source_DASHenv] = ACTIONS(1139), + [anon_sym_register] = ACTIONS(1139), + [anon_sym_hide] = ACTIONS(1139), + [anon_sym_hide_DASHenv] = ACTIONS(1139), + [anon_sym_overlay] = ACTIONS(1139), + [anon_sym_where] = ACTIONS(1139), + [anon_sym_not] = ACTIONS(1139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1139), + [anon_sym_DOT_DOT_LT] = ACTIONS(1139), + [anon_sym_null] = ACTIONS(1139), + [anon_sym_true] = ACTIONS(1139), + [anon_sym_false] = ACTIONS(1139), + [aux_sym__val_number_decimal_token1] = ACTIONS(1139), + [aux_sym__val_number_decimal_token2] = ACTIONS(1139), + [anon_sym_DOT2] = ACTIONS(1139), + [aux_sym__val_number_decimal_token3] = ACTIONS(1139), + [aux_sym__val_number_token1] = ACTIONS(1139), + [aux_sym__val_number_token2] = ACTIONS(1139), + [aux_sym__val_number_token3] = ACTIONS(1139), + [aux_sym__val_number_token4] = ACTIONS(1139), + [aux_sym__val_number_token5] = ACTIONS(1139), + [aux_sym__val_number_token6] = ACTIONS(1139), + [anon_sym_0b] = ACTIONS(1139), + [anon_sym_0o] = ACTIONS(1139), + [anon_sym_0x] = ACTIONS(1139), + [sym_val_date] = ACTIONS(1139), + [anon_sym_DQUOTE] = ACTIONS(1139), + [sym__str_single_quotes] = ACTIONS(1139), + [sym__str_back_ticks] = ACTIONS(1139), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1139), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1139), + [aux_sym__list_item_starts_with_sign_token1] = ACTIONS(5903), + [anon_sym_CARET] = ACTIONS(1139), + [anon_sym_POUND] = ACTIONS(113), }, - [1991] = { - [sym_expr_unary] = STATE(700), - [sym__expr_unary_minus] = STATE(692), - [sym_expr_binary] = STATE(700), - [sym__expr_binary_expression] = STATE(711), - [sym_expr_parenthesized] = STATE(700), - [sym__val_range] = STATE(10619), - [sym__value] = STATE(700), - [sym_val_nothing] = STATE(731), - [sym_val_bool] = STATE(647), - [sym_val_variable] = STATE(731), - [sym__var] = STATE(530), - [sym_val_number] = STATE(731), - [sym__val_number_decimal] = STATE(305), - [sym__val_number] = STATE(732), - [sym_val_duration] = STATE(731), - [sym_val_filesize] = STATE(731), - [sym_val_binary] = STATE(731), - [sym_val_string] = STATE(731), - [sym__str_double_quotes] = STATE(695), - [sym_val_interpolated] = STATE(731), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(731), - [sym_val_record] = STATE(731), - [sym_val_table] = STATE(731), - [sym_val_closure] = STATE(731), - [sym_unquoted] = STATE(712), - [sym__unquoted_anonymous_prefix] = STATE(11163), - [sym_comment] = STATE(1991), - [anon_sym_LBRACK] = ACTIONS(5473), - [anon_sym_LPAREN] = ACTIONS(5475), - [anon_sym_DOLLAR] = ACTIONS(5477), - [anon_sym_DASH] = ACTIONS(5479), - [anon_sym_LBRACE] = ACTIONS(5481), - [anon_sym_DOT_DOT] = ACTIONS(5483), - [anon_sym_not] = ACTIONS(5485), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5487), - [anon_sym_DOT_DOT_LT] = ACTIONS(5487), - [anon_sym_null] = ACTIONS(5489), - [anon_sym_true] = ACTIONS(5491), - [anon_sym_false] = ACTIONS(5491), - [aux_sym__val_number_decimal_token1] = ACTIONS(5493), - [aux_sym__val_number_decimal_token2] = ACTIONS(5495), - [anon_sym_DOT2] = ACTIONS(5497), - [aux_sym__val_number_decimal_token3] = ACTIONS(5499), - [aux_sym__val_number_token1] = ACTIONS(5501), - [aux_sym__val_number_token2] = ACTIONS(5501), - [aux_sym__val_number_token3] = ACTIONS(5501), - [aux_sym__val_number_token4] = ACTIONS(5503), - [aux_sym__val_number_token5] = ACTIONS(5503), - [aux_sym__val_number_token6] = ACTIONS(5503), - [anon_sym_0b] = ACTIONS(5505), - [anon_sym_0o] = ACTIONS(5507), - [anon_sym_0x] = ACTIONS(5507), - [sym_val_date] = ACTIONS(5509), - [anon_sym_DQUOTE] = ACTIONS(5511), - [sym__str_single_quotes] = ACTIONS(5513), - [sym__str_back_ticks] = ACTIONS(5513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5517), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5519), - [anon_sym_POUND] = ACTIONS(3), + [2270] = { + [sym_comment] = STATE(2270), + [anon_sym_export] = ACTIONS(5917), + [anon_sym_alias] = ACTIONS(5917), + [anon_sym_let] = ACTIONS(5917), + [anon_sym_let_DASHenv] = ACTIONS(5917), + [anon_sym_mut] = ACTIONS(5917), + [anon_sym_const] = ACTIONS(5917), + [anon_sym_SEMI] = ACTIONS(5917), + [sym_cmd_identifier] = ACTIONS(5917), + [anon_sym_LF] = ACTIONS(5919), + [anon_sym_def] = ACTIONS(5917), + [anon_sym_export_DASHenv] = ACTIONS(5917), + [anon_sym_extern] = ACTIONS(5917), + [anon_sym_module] = ACTIONS(5917), + [anon_sym_use] = ACTIONS(5917), + [anon_sym_LBRACK] = ACTIONS(5917), + [anon_sym_LPAREN] = ACTIONS(5917), + [anon_sym_RPAREN] = ACTIONS(5917), + [anon_sym_DOLLAR] = ACTIONS(5917), + [anon_sym_error] = ACTIONS(5917), + [anon_sym_DASH] = ACTIONS(5917), + [anon_sym_break] = ACTIONS(5917), + [anon_sym_continue] = ACTIONS(5917), + [anon_sym_for] = ACTIONS(5917), + [anon_sym_loop] = ACTIONS(5917), + [anon_sym_while] = ACTIONS(5917), + [anon_sym_do] = ACTIONS(5917), + [anon_sym_if] = ACTIONS(5917), + [anon_sym_match] = ACTIONS(5917), + [anon_sym_LBRACE] = ACTIONS(5917), + [anon_sym_RBRACE] = ACTIONS(5917), + [anon_sym_DOT_DOT] = ACTIONS(5917), + [anon_sym_try] = ACTIONS(5917), + [anon_sym_return] = ACTIONS(5917), + [anon_sym_source] = ACTIONS(5917), + [anon_sym_source_DASHenv] = ACTIONS(5917), + [anon_sym_register] = ACTIONS(5917), + [anon_sym_hide] = ACTIONS(5917), + [anon_sym_hide_DASHenv] = ACTIONS(5917), + [anon_sym_overlay] = ACTIONS(5917), + [anon_sym_where] = ACTIONS(5917), + [anon_sym_not] = ACTIONS(5917), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5917), + [anon_sym_DOT_DOT_LT] = ACTIONS(5917), + [anon_sym_null] = ACTIONS(5917), + [anon_sym_true] = ACTIONS(5917), + [anon_sym_false] = ACTIONS(5917), + [aux_sym__val_number_decimal_token1] = ACTIONS(5917), + [aux_sym__val_number_decimal_token2] = ACTIONS(5917), + [anon_sym_DOT2] = ACTIONS(5917), + [aux_sym__val_number_decimal_token3] = ACTIONS(5917), + [aux_sym__val_number_token1] = ACTIONS(5917), + [aux_sym__val_number_token2] = ACTIONS(5917), + [aux_sym__val_number_token3] = ACTIONS(5917), + [aux_sym__val_number_token4] = ACTIONS(5917), + [aux_sym__val_number_token5] = ACTIONS(5917), + [aux_sym__val_number_token6] = ACTIONS(5917), + [anon_sym_0b] = ACTIONS(5917), + [anon_sym_0o] = ACTIONS(5917), + [anon_sym_0x] = ACTIONS(5917), + [sym_val_date] = ACTIONS(5917), + [anon_sym_DQUOTE] = ACTIONS(5917), + [sym__str_single_quotes] = ACTIONS(5917), + [sym__str_back_ticks] = ACTIONS(5917), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5917), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5917), + [anon_sym_CARET] = ACTIONS(5917), + [anon_sym_POUND] = ACTIONS(113), }, - [1992] = { - [sym_expr_unary] = STATE(700), - [sym__expr_unary_minus] = STATE(692), - [sym_expr_binary] = STATE(700), - [sym__expr_binary_expression] = STATE(713), - [sym_expr_parenthesized] = STATE(700), - [sym__val_range] = STATE(10619), - [sym__value] = STATE(700), - [sym_val_nothing] = STATE(731), - [sym_val_bool] = STATE(647), - [sym_val_variable] = STATE(731), - [sym__var] = STATE(530), - [sym_val_number] = STATE(731), - [sym__val_number_decimal] = STATE(305), - [sym__val_number] = STATE(732), - [sym_val_duration] = STATE(731), - [sym_val_filesize] = STATE(731), - [sym_val_binary] = STATE(731), - [sym_val_string] = STATE(731), - [sym__str_double_quotes] = STATE(695), - [sym_val_interpolated] = STATE(731), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(731), - [sym_val_record] = STATE(731), - [sym_val_table] = STATE(731), - [sym_val_closure] = STATE(731), - [sym_unquoted] = STATE(714), - [sym__unquoted_anonymous_prefix] = STATE(11163), - [sym_comment] = STATE(1992), - [anon_sym_LBRACK] = ACTIONS(5473), - [anon_sym_LPAREN] = ACTIONS(5475), - [anon_sym_DOLLAR] = ACTIONS(5477), - [anon_sym_DASH] = ACTIONS(5479), - [anon_sym_LBRACE] = ACTIONS(5481), - [anon_sym_DOT_DOT] = ACTIONS(5483), - [anon_sym_not] = ACTIONS(5485), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5487), - [anon_sym_DOT_DOT_LT] = ACTIONS(5487), - [anon_sym_null] = ACTIONS(5489), - [anon_sym_true] = ACTIONS(5491), - [anon_sym_false] = ACTIONS(5491), - [aux_sym__val_number_decimal_token1] = ACTIONS(5493), - [aux_sym__val_number_decimal_token2] = ACTIONS(5495), - [anon_sym_DOT2] = ACTIONS(5497), - [aux_sym__val_number_decimal_token3] = ACTIONS(5499), - [aux_sym__val_number_token1] = ACTIONS(5501), - [aux_sym__val_number_token2] = ACTIONS(5501), - [aux_sym__val_number_token3] = ACTIONS(5501), - [aux_sym__val_number_token4] = ACTIONS(5503), - [aux_sym__val_number_token5] = ACTIONS(5503), - [aux_sym__val_number_token6] = ACTIONS(5503), - [anon_sym_0b] = ACTIONS(5505), - [anon_sym_0o] = ACTIONS(5507), - [anon_sym_0x] = ACTIONS(5507), - [sym_val_date] = ACTIONS(5509), - [anon_sym_DQUOTE] = ACTIONS(5511), - [sym__str_single_quotes] = ACTIONS(5513), - [sym__str_back_ticks] = ACTIONS(5513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5517), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5519), - [anon_sym_POUND] = ACTIONS(3), + [2271] = { + [sym_cell_path] = STATE(2644), + [sym_path] = STATE(2311), + [sym_comment] = STATE(2271), + [ts_builtin_sym_end] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym_LF] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(992), + [anon_sym_DOLLAR] = ACTIONS(992), + [anon_sym_GT] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_in] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(992), + [anon_sym_DOT_DOT] = ACTIONS(992), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_STAR_STAR] = ACTIONS(992), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_SLASH] = ACTIONS(992), + [anon_sym_mod] = ACTIONS(992), + [anon_sym_SLASH_SLASH] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_bit_DASHshl] = ACTIONS(992), + [anon_sym_bit_DASHshr] = ACTIONS(992), + [anon_sym_EQ_EQ] = ACTIONS(992), + [anon_sym_BANG_EQ] = ACTIONS(992), + [anon_sym_LT2] = ACTIONS(992), + [anon_sym_LT_EQ] = ACTIONS(992), + [anon_sym_GT_EQ] = ACTIONS(992), + [anon_sym_not_DASHin] = ACTIONS(992), + [anon_sym_starts_DASHwith] = ACTIONS(992), + [anon_sym_ends_DASHwith] = ACTIONS(992), + [anon_sym_EQ_TILDE] = ACTIONS(992), + [anon_sym_BANG_TILDE] = ACTIONS(992), + [anon_sym_bit_DASHand] = ACTIONS(992), + [anon_sym_bit_DASHxor] = ACTIONS(992), + [anon_sym_bit_DASHor] = ACTIONS(992), + [anon_sym_and] = ACTIONS(992), + [anon_sym_xor] = ACTIONS(992), + [anon_sym_or] = ACTIONS(992), + [anon_sym_not] = ACTIONS(992), + [anon_sym_DOT] = ACTIONS(5921), + [anon_sym_DOT_DOT_EQ] = ACTIONS(992), + [anon_sym_DOT_DOT_LT] = ACTIONS(992), + [anon_sym_null] = ACTIONS(992), + [anon_sym_true] = ACTIONS(992), + [anon_sym_false] = ACTIONS(992), + [aux_sym__val_number_decimal_token1] = ACTIONS(992), + [aux_sym__val_number_decimal_token2] = ACTIONS(992), + [anon_sym_DOT2] = ACTIONS(992), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(992), + [anon_sym_0o] = ACTIONS(992), + [anon_sym_0x] = ACTIONS(992), + [sym_val_date] = ACTIONS(992), + [anon_sym_DQUOTE] = ACTIONS(992), + [sym__str_single_quotes] = ACTIONS(992), + [sym__str_back_ticks] = ACTIONS(992), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(992), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(992), + [anon_sym_POUND] = ACTIONS(113), }, - [1993] = { - [sym_expr_unary] = STATE(700), - [sym__expr_unary_minus] = STATE(692), - [sym_expr_binary] = STATE(700), - [sym__expr_binary_expression] = STATE(715), - [sym_expr_parenthesized] = STATE(700), - [sym__val_range] = STATE(10619), - [sym__value] = STATE(700), - [sym_val_nothing] = STATE(731), - [sym_val_bool] = STATE(647), - [sym_val_variable] = STATE(731), - [sym__var] = STATE(530), - [sym_val_number] = STATE(731), - [sym__val_number_decimal] = STATE(305), - [sym__val_number] = STATE(732), - [sym_val_duration] = STATE(731), - [sym_val_filesize] = STATE(731), - [sym_val_binary] = STATE(731), - [sym_val_string] = STATE(731), - [sym__str_double_quotes] = STATE(695), - [sym_val_interpolated] = STATE(731), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(731), - [sym_val_record] = STATE(731), - [sym_val_table] = STATE(731), - [sym_val_closure] = STATE(731), - [sym_unquoted] = STATE(716), - [sym__unquoted_anonymous_prefix] = STATE(11163), - [sym_comment] = STATE(1993), - [anon_sym_LBRACK] = ACTIONS(5473), - [anon_sym_LPAREN] = ACTIONS(5475), - [anon_sym_DOLLAR] = ACTIONS(5477), - [anon_sym_DASH] = ACTIONS(5479), - [anon_sym_LBRACE] = ACTIONS(5481), - [anon_sym_DOT_DOT] = ACTIONS(5483), - [anon_sym_not] = ACTIONS(5485), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5487), - [anon_sym_DOT_DOT_LT] = ACTIONS(5487), - [anon_sym_null] = ACTIONS(5489), - [anon_sym_true] = ACTIONS(5491), - [anon_sym_false] = ACTIONS(5491), - [aux_sym__val_number_decimal_token1] = ACTIONS(5493), - [aux_sym__val_number_decimal_token2] = ACTIONS(5495), - [anon_sym_DOT2] = ACTIONS(5497), - [aux_sym__val_number_decimal_token3] = ACTIONS(5499), - [aux_sym__val_number_token1] = ACTIONS(5501), - [aux_sym__val_number_token2] = ACTIONS(5501), - [aux_sym__val_number_token3] = ACTIONS(5501), - [aux_sym__val_number_token4] = ACTIONS(5503), - [aux_sym__val_number_token5] = ACTIONS(5503), - [aux_sym__val_number_token6] = ACTIONS(5503), - [anon_sym_0b] = ACTIONS(5505), - [anon_sym_0o] = ACTIONS(5507), - [anon_sym_0x] = ACTIONS(5507), - [sym_val_date] = ACTIONS(5509), - [anon_sym_DQUOTE] = ACTIONS(5511), - [sym__str_single_quotes] = ACTIONS(5513), - [sym__str_back_ticks] = ACTIONS(5513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5517), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5519), - [anon_sym_POUND] = ACTIONS(3), + [2272] = { + [sym_comment] = STATE(2272), + [anon_sym_export] = ACTIONS(5923), + [anon_sym_alias] = ACTIONS(5923), + [anon_sym_let] = ACTIONS(5923), + [anon_sym_let_DASHenv] = ACTIONS(5923), + [anon_sym_mut] = ACTIONS(5923), + [anon_sym_const] = ACTIONS(5923), + [anon_sym_SEMI] = ACTIONS(5923), + [sym_cmd_identifier] = ACTIONS(5923), + [anon_sym_LF] = ACTIONS(5925), + [anon_sym_def] = ACTIONS(5923), + [anon_sym_export_DASHenv] = ACTIONS(5923), + [anon_sym_extern] = ACTIONS(5923), + [anon_sym_module] = ACTIONS(5923), + [anon_sym_use] = ACTIONS(5923), + [anon_sym_LBRACK] = ACTIONS(5923), + [anon_sym_LPAREN] = ACTIONS(5923), + [anon_sym_RPAREN] = ACTIONS(5923), + [anon_sym_DOLLAR] = ACTIONS(5923), + [anon_sym_error] = ACTIONS(5923), + [anon_sym_DASH] = ACTIONS(5923), + [anon_sym_break] = ACTIONS(5923), + [anon_sym_continue] = ACTIONS(5923), + [anon_sym_for] = ACTIONS(5923), + [anon_sym_loop] = ACTIONS(5923), + [anon_sym_while] = ACTIONS(5923), + [anon_sym_do] = ACTIONS(5923), + [anon_sym_if] = ACTIONS(5923), + [anon_sym_match] = ACTIONS(5923), + [anon_sym_LBRACE] = ACTIONS(5923), + [anon_sym_RBRACE] = ACTIONS(5923), + [anon_sym_DOT_DOT] = ACTIONS(5923), + [anon_sym_try] = ACTIONS(5923), + [anon_sym_return] = ACTIONS(5923), + [anon_sym_source] = ACTIONS(5923), + [anon_sym_source_DASHenv] = ACTIONS(5923), + [anon_sym_register] = ACTIONS(5923), + [anon_sym_hide] = ACTIONS(5923), + [anon_sym_hide_DASHenv] = ACTIONS(5923), + [anon_sym_overlay] = ACTIONS(5923), + [anon_sym_where] = ACTIONS(5923), + [anon_sym_not] = ACTIONS(5923), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5923), + [anon_sym_DOT_DOT_LT] = ACTIONS(5923), + [anon_sym_null] = ACTIONS(5923), + [anon_sym_true] = ACTIONS(5923), + [anon_sym_false] = ACTIONS(5923), + [aux_sym__val_number_decimal_token1] = ACTIONS(5923), + [aux_sym__val_number_decimal_token2] = ACTIONS(5923), + [anon_sym_DOT2] = ACTIONS(5923), + [aux_sym__val_number_decimal_token3] = ACTIONS(5923), + [aux_sym__val_number_token1] = ACTIONS(5923), + [aux_sym__val_number_token2] = ACTIONS(5923), + [aux_sym__val_number_token3] = ACTIONS(5923), + [aux_sym__val_number_token4] = ACTIONS(5923), + [aux_sym__val_number_token5] = ACTIONS(5923), + [aux_sym__val_number_token6] = ACTIONS(5923), + [anon_sym_0b] = ACTIONS(5923), + [anon_sym_0o] = ACTIONS(5923), + [anon_sym_0x] = ACTIONS(5923), + [sym_val_date] = ACTIONS(5923), + [anon_sym_DQUOTE] = ACTIONS(5923), + [sym__str_single_quotes] = ACTIONS(5923), + [sym__str_back_ticks] = ACTIONS(5923), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5923), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5923), + [anon_sym_CARET] = ACTIONS(5923), + [anon_sym_POUND] = ACTIONS(113), }, - [1994] = { - [sym_expr_unary] = STATE(700), - [sym__expr_unary_minus] = STATE(692), - [sym_expr_binary] = STATE(700), - [sym__expr_binary_expression] = STATE(718), - [sym_expr_parenthesized] = STATE(700), - [sym__val_range] = STATE(10619), - [sym__value] = STATE(700), - [sym_val_nothing] = STATE(731), - [sym_val_bool] = STATE(647), - [sym_val_variable] = STATE(731), - [sym__var] = STATE(530), - [sym_val_number] = STATE(731), - [sym__val_number_decimal] = STATE(305), - [sym__val_number] = STATE(732), - [sym_val_duration] = STATE(731), - [sym_val_filesize] = STATE(731), - [sym_val_binary] = STATE(731), - [sym_val_string] = STATE(731), - [sym__str_double_quotes] = STATE(695), - [sym_val_interpolated] = STATE(731), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(731), - [sym_val_record] = STATE(731), - [sym_val_table] = STATE(731), - [sym_val_closure] = STATE(731), - [sym_unquoted] = STATE(719), - [sym__unquoted_anonymous_prefix] = STATE(11163), - [sym_comment] = STATE(1994), - [anon_sym_LBRACK] = ACTIONS(5473), - [anon_sym_LPAREN] = ACTIONS(5475), - [anon_sym_DOLLAR] = ACTIONS(5477), - [anon_sym_DASH] = ACTIONS(5479), - [anon_sym_LBRACE] = ACTIONS(5481), - [anon_sym_DOT_DOT] = ACTIONS(5483), - [anon_sym_not] = ACTIONS(5485), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5487), - [anon_sym_DOT_DOT_LT] = ACTIONS(5487), - [anon_sym_null] = ACTIONS(5489), - [anon_sym_true] = ACTIONS(5491), - [anon_sym_false] = ACTIONS(5491), - [aux_sym__val_number_decimal_token1] = ACTIONS(5493), - [aux_sym__val_number_decimal_token2] = ACTIONS(5495), - [anon_sym_DOT2] = ACTIONS(5497), - [aux_sym__val_number_decimal_token3] = ACTIONS(5499), - [aux_sym__val_number_token1] = ACTIONS(5501), - [aux_sym__val_number_token2] = ACTIONS(5501), - [aux_sym__val_number_token3] = ACTIONS(5501), - [aux_sym__val_number_token4] = ACTIONS(5503), - [aux_sym__val_number_token5] = ACTIONS(5503), - [aux_sym__val_number_token6] = ACTIONS(5503), - [anon_sym_0b] = ACTIONS(5505), - [anon_sym_0o] = ACTIONS(5507), - [anon_sym_0x] = ACTIONS(5507), - [sym_val_date] = ACTIONS(5509), - [anon_sym_DQUOTE] = ACTIONS(5511), - [sym__str_single_quotes] = ACTIONS(5513), - [sym__str_back_ticks] = ACTIONS(5513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5517), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5519), - [anon_sym_POUND] = ACTIONS(3), + [2273] = { + [sym_comment] = STATE(2273), + [anon_sym_SEMI] = ACTIONS(1033), + [anon_sym_LF] = ACTIONS(1035), + [anon_sym_LBRACK] = ACTIONS(1033), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_RPAREN] = ACTIONS(1033), + [anon_sym_PIPE] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1033), + [anon_sym_in] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1033), + [anon_sym_DOT_DOT] = ACTIONS(1033), + [anon_sym_STAR] = ACTIONS(1033), + [anon_sym_QMARK2] = ACTIONS(1033), + [anon_sym_STAR_STAR] = ACTIONS(1033), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_SLASH] = ACTIONS(1033), + [anon_sym_mod] = ACTIONS(1033), + [anon_sym_SLASH_SLASH] = ACTIONS(1033), + [anon_sym_PLUS] = ACTIONS(1033), + [anon_sym_bit_DASHshl] = ACTIONS(1033), + [anon_sym_bit_DASHshr] = ACTIONS(1033), + [anon_sym_EQ_EQ] = ACTIONS(1033), + [anon_sym_BANG_EQ] = ACTIONS(1033), + [anon_sym_LT2] = ACTIONS(1033), + [anon_sym_LT_EQ] = ACTIONS(1033), + [anon_sym_GT_EQ] = ACTIONS(1033), + [anon_sym_not_DASHin] = ACTIONS(1033), + [anon_sym_starts_DASHwith] = ACTIONS(1033), + [anon_sym_ends_DASHwith] = ACTIONS(1033), + [anon_sym_EQ_TILDE] = ACTIONS(1033), + [anon_sym_BANG_TILDE] = ACTIONS(1033), + [anon_sym_bit_DASHand] = ACTIONS(1033), + [anon_sym_bit_DASHxor] = ACTIONS(1033), + [anon_sym_bit_DASHor] = ACTIONS(1033), + [anon_sym_and] = ACTIONS(1033), + [anon_sym_xor] = ACTIONS(1033), + [anon_sym_or] = ACTIONS(1033), + [anon_sym_not] = ACTIONS(1033), + [anon_sym_DOT] = ACTIONS(1033), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1033), + [anon_sym_DOT_DOT_LT] = ACTIONS(1033), + [anon_sym_null] = ACTIONS(1033), + [anon_sym_true] = ACTIONS(1033), + [anon_sym_false] = ACTIONS(1033), + [aux_sym__val_number_decimal_token1] = ACTIONS(1033), + [aux_sym__val_number_decimal_token2] = ACTIONS(1033), + [anon_sym_DOT2] = ACTIONS(1033), + [aux_sym__val_number_decimal_token3] = ACTIONS(1033), + [aux_sym__val_number_token1] = ACTIONS(1033), + [aux_sym__val_number_token2] = ACTIONS(1033), + [aux_sym__val_number_token3] = ACTIONS(1033), + [aux_sym__val_number_token4] = ACTIONS(1033), + [aux_sym__val_number_token5] = ACTIONS(1033), + [aux_sym__val_number_token6] = ACTIONS(1033), + [anon_sym_0b] = ACTIONS(1033), + [anon_sym_0o] = ACTIONS(1033), + [anon_sym_0x] = ACTIONS(1033), + [sym_val_date] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [sym__str_single_quotes] = ACTIONS(1033), + [sym__str_back_ticks] = ACTIONS(1033), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1033), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1033), + [anon_sym_POUND] = ACTIONS(113), }, - [1995] = { - [sym_expr_unary] = STATE(700), - [sym__expr_unary_minus] = STATE(692), - [sym_expr_binary] = STATE(700), - [sym__expr_binary_expression] = STATE(720), - [sym_expr_parenthesized] = STATE(700), - [sym__val_range] = STATE(10619), - [sym__value] = STATE(700), - [sym_val_nothing] = STATE(731), - [sym_val_bool] = STATE(647), - [sym_val_variable] = STATE(731), - [sym__var] = STATE(530), - [sym_val_number] = STATE(731), - [sym__val_number_decimal] = STATE(305), - [sym__val_number] = STATE(732), - [sym_val_duration] = STATE(731), - [sym_val_filesize] = STATE(731), - [sym_val_binary] = STATE(731), - [sym_val_string] = STATE(731), - [sym__str_double_quotes] = STATE(695), - [sym_val_interpolated] = STATE(731), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(731), - [sym_val_record] = STATE(731), - [sym_val_table] = STATE(731), - [sym_val_closure] = STATE(731), - [sym_unquoted] = STATE(721), - [sym__unquoted_anonymous_prefix] = STATE(11163), - [sym_comment] = STATE(1995), - [anon_sym_LBRACK] = ACTIONS(5473), - [anon_sym_LPAREN] = ACTIONS(5475), - [anon_sym_DOLLAR] = ACTIONS(5477), - [anon_sym_DASH] = ACTIONS(5479), - [anon_sym_LBRACE] = ACTIONS(5481), - [anon_sym_DOT_DOT] = ACTIONS(5483), - [anon_sym_not] = ACTIONS(5485), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5487), - [anon_sym_DOT_DOT_LT] = ACTIONS(5487), - [anon_sym_null] = ACTIONS(5489), - [anon_sym_true] = ACTIONS(5491), - [anon_sym_false] = ACTIONS(5491), - [aux_sym__val_number_decimal_token1] = ACTIONS(5493), - [aux_sym__val_number_decimal_token2] = ACTIONS(5495), - [anon_sym_DOT2] = ACTIONS(5497), - [aux_sym__val_number_decimal_token3] = ACTIONS(5499), - [aux_sym__val_number_token1] = ACTIONS(5501), - [aux_sym__val_number_token2] = ACTIONS(5501), - [aux_sym__val_number_token3] = ACTIONS(5501), - [aux_sym__val_number_token4] = ACTIONS(5503), - [aux_sym__val_number_token5] = ACTIONS(5503), - [aux_sym__val_number_token6] = ACTIONS(5503), - [anon_sym_0b] = ACTIONS(5505), - [anon_sym_0o] = ACTIONS(5507), - [anon_sym_0x] = ACTIONS(5507), - [sym_val_date] = ACTIONS(5509), - [anon_sym_DQUOTE] = ACTIONS(5511), - [sym__str_single_quotes] = ACTIONS(5513), - [sym__str_back_ticks] = ACTIONS(5513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5517), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5519), - [anon_sym_POUND] = ACTIONS(3), + [2274] = { + [sym_comment] = STATE(2274), + [anon_sym_export] = ACTIONS(5927), + [anon_sym_alias] = ACTIONS(5927), + [anon_sym_let] = ACTIONS(5927), + [anon_sym_let_DASHenv] = ACTIONS(5927), + [anon_sym_mut] = ACTIONS(5927), + [anon_sym_const] = ACTIONS(5927), + [anon_sym_SEMI] = ACTIONS(5927), + [sym_cmd_identifier] = ACTIONS(5927), + [anon_sym_LF] = ACTIONS(5929), + [anon_sym_def] = ACTIONS(5927), + [anon_sym_export_DASHenv] = ACTIONS(5927), + [anon_sym_extern] = ACTIONS(5927), + [anon_sym_module] = ACTIONS(5927), + [anon_sym_use] = ACTIONS(5927), + [anon_sym_LBRACK] = ACTIONS(5927), + [anon_sym_LPAREN] = ACTIONS(5927), + [anon_sym_RPAREN] = ACTIONS(5927), + [anon_sym_DOLLAR] = ACTIONS(5927), + [anon_sym_error] = ACTIONS(5927), + [anon_sym_DASH] = ACTIONS(5927), + [anon_sym_break] = ACTIONS(5927), + [anon_sym_continue] = ACTIONS(5927), + [anon_sym_for] = ACTIONS(5927), + [anon_sym_loop] = ACTIONS(5927), + [anon_sym_while] = ACTIONS(5927), + [anon_sym_do] = ACTIONS(5927), + [anon_sym_if] = ACTIONS(5927), + [anon_sym_match] = ACTIONS(5927), + [anon_sym_LBRACE] = ACTIONS(5927), + [anon_sym_RBRACE] = ACTIONS(5927), + [anon_sym_DOT_DOT] = ACTIONS(5927), + [anon_sym_try] = ACTIONS(5927), + [anon_sym_return] = ACTIONS(5927), + [anon_sym_source] = ACTIONS(5927), + [anon_sym_source_DASHenv] = ACTIONS(5927), + [anon_sym_register] = ACTIONS(5927), + [anon_sym_hide] = ACTIONS(5927), + [anon_sym_hide_DASHenv] = ACTIONS(5927), + [anon_sym_overlay] = ACTIONS(5927), + [anon_sym_where] = ACTIONS(5927), + [anon_sym_not] = ACTIONS(5927), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5927), + [anon_sym_DOT_DOT_LT] = ACTIONS(5927), + [anon_sym_null] = ACTIONS(5927), + [anon_sym_true] = ACTIONS(5927), + [anon_sym_false] = ACTIONS(5927), + [aux_sym__val_number_decimal_token1] = ACTIONS(5927), + [aux_sym__val_number_decimal_token2] = ACTIONS(5927), + [anon_sym_DOT2] = ACTIONS(5927), + [aux_sym__val_number_decimal_token3] = ACTIONS(5927), + [aux_sym__val_number_token1] = ACTIONS(5927), + [aux_sym__val_number_token2] = ACTIONS(5927), + [aux_sym__val_number_token3] = ACTIONS(5927), + [aux_sym__val_number_token4] = ACTIONS(5927), + [aux_sym__val_number_token5] = ACTIONS(5927), + [aux_sym__val_number_token6] = ACTIONS(5927), + [anon_sym_0b] = ACTIONS(5927), + [anon_sym_0o] = ACTIONS(5927), + [anon_sym_0x] = ACTIONS(5927), + [sym_val_date] = ACTIONS(5927), + [anon_sym_DQUOTE] = ACTIONS(5927), + [sym__str_single_quotes] = ACTIONS(5927), + [sym__str_back_ticks] = ACTIONS(5927), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5927), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5927), + [anon_sym_CARET] = ACTIONS(5927), + [anon_sym_POUND] = ACTIONS(113), }, - [1996] = { - [sym_expr_unary] = STATE(700), - [sym__expr_unary_minus] = STATE(692), - [sym_expr_binary] = STATE(700), - [sym__expr_binary_expression] = STATE(722), - [sym_expr_parenthesized] = STATE(700), - [sym__val_range] = STATE(10619), - [sym__value] = STATE(700), - [sym_val_nothing] = STATE(731), - [sym_val_bool] = STATE(647), - [sym_val_variable] = STATE(731), - [sym__var] = STATE(530), - [sym_val_number] = STATE(731), - [sym__val_number_decimal] = STATE(305), - [sym__val_number] = STATE(732), - [sym_val_duration] = STATE(731), - [sym_val_filesize] = STATE(731), - [sym_val_binary] = STATE(731), - [sym_val_string] = STATE(731), - [sym__str_double_quotes] = STATE(695), - [sym_val_interpolated] = STATE(731), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(731), - [sym_val_record] = STATE(731), - [sym_val_table] = STATE(731), - [sym_val_closure] = STATE(731), - [sym_unquoted] = STATE(723), - [sym__unquoted_anonymous_prefix] = STATE(11163), - [sym_comment] = STATE(1996), - [anon_sym_LBRACK] = ACTIONS(5473), - [anon_sym_LPAREN] = ACTIONS(5475), - [anon_sym_DOLLAR] = ACTIONS(5477), - [anon_sym_DASH] = ACTIONS(5479), - [anon_sym_LBRACE] = ACTIONS(5481), - [anon_sym_DOT_DOT] = ACTIONS(5483), - [anon_sym_not] = ACTIONS(5485), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5487), - [anon_sym_DOT_DOT_LT] = ACTIONS(5487), - [anon_sym_null] = ACTIONS(5489), - [anon_sym_true] = ACTIONS(5491), - [anon_sym_false] = ACTIONS(5491), - [aux_sym__val_number_decimal_token1] = ACTIONS(5493), - [aux_sym__val_number_decimal_token2] = ACTIONS(5495), - [anon_sym_DOT2] = ACTIONS(5497), - [aux_sym__val_number_decimal_token3] = ACTIONS(5499), - [aux_sym__val_number_token1] = ACTIONS(5501), - [aux_sym__val_number_token2] = ACTIONS(5501), - [aux_sym__val_number_token3] = ACTIONS(5501), - [aux_sym__val_number_token4] = ACTIONS(5503), - [aux_sym__val_number_token5] = ACTIONS(5503), - [aux_sym__val_number_token6] = ACTIONS(5503), - [anon_sym_0b] = ACTIONS(5505), - [anon_sym_0o] = ACTIONS(5507), - [anon_sym_0x] = ACTIONS(5507), - [sym_val_date] = ACTIONS(5509), - [anon_sym_DQUOTE] = ACTIONS(5511), - [sym__str_single_quotes] = ACTIONS(5513), - [sym__str_back_ticks] = ACTIONS(5513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5517), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5519), + [2275] = { + [sym_comment] = STATE(2275), + [anon_sym_LBRACK] = ACTIONS(903), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_DOLLAR] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_in] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(903), + [anon_sym_DOT_DOT] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_STAR_STAR] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_mod] = ACTIONS(903), + [anon_sym_SLASH_SLASH] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_bit_DASHshl] = ACTIONS(903), + [anon_sym_bit_DASHshr] = ACTIONS(903), + [anon_sym_EQ_EQ] = ACTIONS(903), + [anon_sym_BANG_EQ] = ACTIONS(903), + [anon_sym_LT2] = ACTIONS(901), + [anon_sym_LT_EQ] = ACTIONS(903), + [anon_sym_GT_EQ] = ACTIONS(903), + [anon_sym_not_DASHin] = ACTIONS(903), + [anon_sym_starts_DASHwith] = ACTIONS(903), + [anon_sym_ends_DASHwith] = ACTIONS(903), + [anon_sym_EQ_TILDE] = ACTIONS(903), + [anon_sym_BANG_TILDE] = ACTIONS(903), + [anon_sym_bit_DASHand] = ACTIONS(903), + [anon_sym_bit_DASHxor] = ACTIONS(903), + [anon_sym_bit_DASHor] = ACTIONS(903), + [anon_sym_and] = ACTIONS(903), + [anon_sym_xor] = ACTIONS(903), + [anon_sym_or] = ACTIONS(903), + [anon_sym_not] = ACTIONS(901), + [anon_sym_DOT_DOT2] = ACTIONS(901), + [anon_sym_DOT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ] = ACTIONS(901), + [anon_sym_DOT_DOT_LT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(903), + [anon_sym_DOT_DOT_LT2] = ACTIONS(903), + [aux_sym__immediate_decimal_token2] = ACTIONS(5931), + [anon_sym_null] = ACTIONS(903), + [anon_sym_true] = ACTIONS(903), + [anon_sym_false] = ACTIONS(903), + [aux_sym__val_number_decimal_token1] = ACTIONS(901), + [aux_sym__val_number_decimal_token2] = ACTIONS(903), + [anon_sym_DOT2] = ACTIONS(901), + [aux_sym__val_number_decimal_token3] = ACTIONS(903), + [aux_sym__val_number_token1] = ACTIONS(903), + [aux_sym__val_number_token2] = ACTIONS(903), + [aux_sym__val_number_token3] = ACTIONS(903), + [aux_sym__val_number_token4] = ACTIONS(903), + [aux_sym__val_number_token5] = ACTIONS(903), + [aux_sym__val_number_token6] = ACTIONS(903), + [anon_sym_0b] = ACTIONS(901), + [sym_filesize_unit] = ACTIONS(901), + [sym_duration_unit] = ACTIONS(903), + [anon_sym_0o] = ACTIONS(901), + [anon_sym_0x] = ACTIONS(901), + [sym_val_date] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(903), + [sym__str_single_quotes] = ACTIONS(903), + [sym__str_back_ticks] = ACTIONS(903), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(903), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(903), + [aux_sym_unquoted_token5] = ACTIONS(901), [anon_sym_POUND] = ACTIONS(3), }, - [1997] = { - [sym_expr_unary] = STATE(700), - [sym__expr_unary_minus] = STATE(692), - [sym_expr_binary] = STATE(700), - [sym__expr_binary_expression] = STATE(724), - [sym_expr_parenthesized] = STATE(700), - [sym__val_range] = STATE(10619), - [sym__value] = STATE(700), - [sym_val_nothing] = STATE(731), - [sym_val_bool] = STATE(647), - [sym_val_variable] = STATE(731), - [sym__var] = STATE(530), - [sym_val_number] = STATE(731), - [sym__val_number_decimal] = STATE(305), - [sym__val_number] = STATE(732), - [sym_val_duration] = STATE(731), - [sym_val_filesize] = STATE(731), - [sym_val_binary] = STATE(731), - [sym_val_string] = STATE(731), - [sym__str_double_quotes] = STATE(695), - [sym_val_interpolated] = STATE(731), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(731), - [sym_val_record] = STATE(731), - [sym_val_table] = STATE(731), - [sym_val_closure] = STATE(731), - [sym_unquoted] = STATE(725), - [sym__unquoted_anonymous_prefix] = STATE(11163), - [sym_comment] = STATE(1997), - [anon_sym_LBRACK] = ACTIONS(5473), - [anon_sym_LPAREN] = ACTIONS(5475), - [anon_sym_DOLLAR] = ACTIONS(5477), - [anon_sym_DASH] = ACTIONS(5479), - [anon_sym_LBRACE] = ACTIONS(5481), - [anon_sym_DOT_DOT] = ACTIONS(5483), - [anon_sym_not] = ACTIONS(5485), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5487), - [anon_sym_DOT_DOT_LT] = ACTIONS(5487), - [anon_sym_null] = ACTIONS(5489), - [anon_sym_true] = ACTIONS(5491), - [anon_sym_false] = ACTIONS(5491), - [aux_sym__val_number_decimal_token1] = ACTIONS(5493), - [aux_sym__val_number_decimal_token2] = ACTIONS(5495), - [anon_sym_DOT2] = ACTIONS(5497), - [aux_sym__val_number_decimal_token3] = ACTIONS(5499), - [aux_sym__val_number_token1] = ACTIONS(5501), - [aux_sym__val_number_token2] = ACTIONS(5501), - [aux_sym__val_number_token3] = ACTIONS(5501), - [aux_sym__val_number_token4] = ACTIONS(5503), - [aux_sym__val_number_token5] = ACTIONS(5503), - [aux_sym__val_number_token6] = ACTIONS(5503), - [anon_sym_0b] = ACTIONS(5505), - [anon_sym_0o] = ACTIONS(5507), - [anon_sym_0x] = ACTIONS(5507), - [sym_val_date] = ACTIONS(5509), - [anon_sym_DQUOTE] = ACTIONS(5511), - [sym__str_single_quotes] = ACTIONS(5513), - [sym__str_back_ticks] = ACTIONS(5513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5517), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5519), - [anon_sym_POUND] = ACTIONS(3), + [2276] = { + [sym_block] = STATE(2455), + [sym_comment] = STATE(2276), + [ts_builtin_sym_end] = ACTIONS(5894), + [anon_sym_export] = ACTIONS(5892), + [anon_sym_alias] = ACTIONS(5892), + [anon_sym_let] = ACTIONS(5892), + [anon_sym_let_DASHenv] = ACTIONS(5892), + [anon_sym_mut] = ACTIONS(5892), + [anon_sym_const] = ACTIONS(5892), + [anon_sym_SEMI] = ACTIONS(5892), + [sym_cmd_identifier] = ACTIONS(5892), + [anon_sym_LF] = ACTIONS(5894), + [anon_sym_def] = ACTIONS(5892), + [anon_sym_export_DASHenv] = ACTIONS(5892), + [anon_sym_extern] = ACTIONS(5892), + [anon_sym_module] = ACTIONS(5892), + [anon_sym_use] = ACTIONS(5892), + [anon_sym_LBRACK] = ACTIONS(5892), + [anon_sym_LPAREN] = ACTIONS(5892), + [anon_sym_DOLLAR] = ACTIONS(5892), + [anon_sym_error] = ACTIONS(5892), + [anon_sym_DASH] = ACTIONS(5892), + [anon_sym_break] = ACTIONS(5892), + [anon_sym_continue] = ACTIONS(5892), + [anon_sym_for] = ACTIONS(5892), + [anon_sym_loop] = ACTIONS(5892), + [anon_sym_while] = ACTIONS(5892), + [anon_sym_do] = ACTIONS(5892), + [anon_sym_if] = ACTIONS(5892), + [anon_sym_match] = ACTIONS(5892), + [anon_sym_LBRACE] = ACTIONS(5933), + [anon_sym_DOT_DOT] = ACTIONS(5892), + [anon_sym_try] = ACTIONS(5892), + [anon_sym_return] = ACTIONS(5892), + [anon_sym_source] = ACTIONS(5892), + [anon_sym_source_DASHenv] = ACTIONS(5892), + [anon_sym_register] = ACTIONS(5892), + [anon_sym_hide] = ACTIONS(5892), + [anon_sym_hide_DASHenv] = ACTIONS(5892), + [anon_sym_overlay] = ACTIONS(5892), + [anon_sym_where] = ACTIONS(5892), + [anon_sym_not] = ACTIONS(5892), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5892), + [anon_sym_DOT_DOT_LT] = ACTIONS(5892), + [anon_sym_null] = ACTIONS(5892), + [anon_sym_true] = ACTIONS(5892), + [anon_sym_false] = ACTIONS(5892), + [aux_sym__val_number_decimal_token1] = ACTIONS(5892), + [aux_sym__val_number_decimal_token2] = ACTIONS(5892), + [anon_sym_DOT2] = ACTIONS(5892), + [aux_sym__val_number_decimal_token3] = ACTIONS(5892), + [aux_sym__val_number_token1] = ACTIONS(5892), + [aux_sym__val_number_token2] = ACTIONS(5892), + [aux_sym__val_number_token3] = ACTIONS(5892), + [aux_sym__val_number_token4] = ACTIONS(5892), + [aux_sym__val_number_token5] = ACTIONS(5892), + [aux_sym__val_number_token6] = ACTIONS(5892), + [anon_sym_0b] = ACTIONS(5892), + [anon_sym_0o] = ACTIONS(5892), + [anon_sym_0x] = ACTIONS(5892), + [sym_val_date] = ACTIONS(5892), + [anon_sym_DQUOTE] = ACTIONS(5892), + [sym__str_single_quotes] = ACTIONS(5892), + [sym__str_back_ticks] = ACTIONS(5892), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5892), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5892), + [anon_sym_CARET] = ACTIONS(5892), + [anon_sym_POUND] = ACTIONS(113), }, - [1998] = { - [sym_expr_unary] = STATE(700), - [sym__expr_unary_minus] = STATE(692), - [sym_expr_binary] = STATE(700), - [sym__expr_binary_expression] = STATE(726), - [sym_expr_parenthesized] = STATE(700), - [sym__val_range] = STATE(10619), - [sym__value] = STATE(700), - [sym_val_nothing] = STATE(731), - [sym_val_bool] = STATE(647), - [sym_val_variable] = STATE(731), - [sym__var] = STATE(530), - [sym_val_number] = STATE(731), - [sym__val_number_decimal] = STATE(305), - [sym__val_number] = STATE(732), - [sym_val_duration] = STATE(731), - [sym_val_filesize] = STATE(731), - [sym_val_binary] = STATE(731), - [sym_val_string] = STATE(731), - [sym__str_double_quotes] = STATE(695), - [sym_val_interpolated] = STATE(731), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(731), - [sym_val_record] = STATE(731), - [sym_val_table] = STATE(731), - [sym_val_closure] = STATE(731), - [sym_unquoted] = STATE(727), - [sym__unquoted_anonymous_prefix] = STATE(11163), - [sym_comment] = STATE(1998), - [anon_sym_LBRACK] = ACTIONS(5473), - [anon_sym_LPAREN] = ACTIONS(5475), - [anon_sym_DOLLAR] = ACTIONS(5477), - [anon_sym_DASH] = ACTIONS(5479), - [anon_sym_LBRACE] = ACTIONS(5481), - [anon_sym_DOT_DOT] = ACTIONS(5483), - [anon_sym_not] = ACTIONS(5485), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5487), - [anon_sym_DOT_DOT_LT] = ACTIONS(5487), - [anon_sym_null] = ACTIONS(5489), - [anon_sym_true] = ACTIONS(5491), - [anon_sym_false] = ACTIONS(5491), - [aux_sym__val_number_decimal_token1] = ACTIONS(5493), - [aux_sym__val_number_decimal_token2] = ACTIONS(5495), - [anon_sym_DOT2] = ACTIONS(5497), - [aux_sym__val_number_decimal_token3] = ACTIONS(5499), - [aux_sym__val_number_token1] = ACTIONS(5501), - [aux_sym__val_number_token2] = ACTIONS(5501), - [aux_sym__val_number_token3] = ACTIONS(5501), - [aux_sym__val_number_token4] = ACTIONS(5503), - [aux_sym__val_number_token5] = ACTIONS(5503), - [aux_sym__val_number_token6] = ACTIONS(5503), - [anon_sym_0b] = ACTIONS(5505), - [anon_sym_0o] = ACTIONS(5507), - [anon_sym_0x] = ACTIONS(5507), - [sym_val_date] = ACTIONS(5509), - [anon_sym_DQUOTE] = ACTIONS(5511), - [sym__str_single_quotes] = ACTIONS(5513), - [sym__str_back_ticks] = ACTIONS(5513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5517), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5519), - [anon_sym_POUND] = ACTIONS(3), + [2277] = { + [sym_val_record] = STATE(2475), + [sym_comment] = STATE(2277), + [ts_builtin_sym_end] = ACTIONS(5878), + [anon_sym_export] = ACTIONS(5876), + [anon_sym_alias] = ACTIONS(5876), + [anon_sym_let] = ACTIONS(5876), + [anon_sym_let_DASHenv] = ACTIONS(5876), + [anon_sym_mut] = ACTIONS(5876), + [anon_sym_const] = ACTIONS(5876), + [anon_sym_SEMI] = ACTIONS(5876), + [sym_cmd_identifier] = ACTIONS(5876), + [anon_sym_LF] = ACTIONS(5878), + [anon_sym_def] = ACTIONS(5876), + [anon_sym_export_DASHenv] = ACTIONS(5876), + [anon_sym_extern] = ACTIONS(5876), + [anon_sym_module] = ACTIONS(5876), + [anon_sym_use] = ACTIONS(5876), + [anon_sym_LBRACK] = ACTIONS(5876), + [anon_sym_LPAREN] = ACTIONS(5876), + [anon_sym_DOLLAR] = ACTIONS(5876), + [anon_sym_error] = ACTIONS(5876), + [anon_sym_DASH] = ACTIONS(5876), + [anon_sym_break] = ACTIONS(5876), + [anon_sym_continue] = ACTIONS(5876), + [anon_sym_for] = ACTIONS(5876), + [anon_sym_loop] = ACTIONS(5876), + [anon_sym_while] = ACTIONS(5876), + [anon_sym_do] = ACTIONS(5876), + [anon_sym_if] = ACTIONS(5876), + [anon_sym_match] = ACTIONS(5876), + [anon_sym_LBRACE] = ACTIONS(5876), + [anon_sym_DOT_DOT] = ACTIONS(5876), + [anon_sym_try] = ACTIONS(5876), + [anon_sym_return] = ACTIONS(5876), + [anon_sym_source] = ACTIONS(5876), + [anon_sym_source_DASHenv] = ACTIONS(5876), + [anon_sym_register] = ACTIONS(5876), + [anon_sym_hide] = ACTIONS(5876), + [anon_sym_hide_DASHenv] = ACTIONS(5876), + [anon_sym_overlay] = ACTIONS(5876), + [anon_sym_where] = ACTIONS(5876), + [anon_sym_not] = ACTIONS(5876), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5876), + [anon_sym_DOT_DOT_LT] = ACTIONS(5876), + [anon_sym_null] = ACTIONS(5876), + [anon_sym_true] = ACTIONS(5876), + [anon_sym_false] = ACTIONS(5876), + [aux_sym__val_number_decimal_token1] = ACTIONS(5876), + [aux_sym__val_number_decimal_token2] = ACTIONS(5876), + [anon_sym_DOT2] = ACTIONS(5876), + [aux_sym__val_number_decimal_token3] = ACTIONS(5876), + [aux_sym__val_number_token1] = ACTIONS(5876), + [aux_sym__val_number_token2] = ACTIONS(5876), + [aux_sym__val_number_token3] = ACTIONS(5876), + [aux_sym__val_number_token4] = ACTIONS(5876), + [aux_sym__val_number_token5] = ACTIONS(5876), + [aux_sym__val_number_token6] = ACTIONS(5876), + [anon_sym_0b] = ACTIONS(5876), + [anon_sym_0o] = ACTIONS(5876), + [anon_sym_0x] = ACTIONS(5876), + [sym_val_date] = ACTIONS(5876), + [anon_sym_DQUOTE] = ACTIONS(5876), + [sym__str_single_quotes] = ACTIONS(5876), + [sym__str_back_ticks] = ACTIONS(5876), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5876), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5876), + [anon_sym_CARET] = ACTIONS(5876), + [anon_sym_POUND] = ACTIONS(113), }, - [1999] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6744), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6451), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5133), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(6284), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(1999), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(5521), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5523), - [anon_sym_DOT_DOT_LT] = ACTIONS(5523), - [anon_sym_null] = ACTIONS(4676), - [anon_sym_true] = ACTIONS(4678), - [anon_sym_false] = ACTIONS(4678), - [aux_sym__val_number_decimal_token1] = ACTIONS(4680), - [aux_sym__val_number_decimal_token2] = ACTIONS(4682), - [anon_sym_DOT2] = ACTIONS(5525), - [aux_sym__val_number_decimal_token3] = ACTIONS(4686), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(4688), - [aux_sym__val_number_token5] = ACTIONS(4688), - [aux_sym__val_number_token6] = ACTIONS(4688), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(4690), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(3), + [2278] = { + [sym_comment] = STATE(2278), + [anon_sym_export] = ACTIONS(5936), + [anon_sym_alias] = ACTIONS(5936), + [anon_sym_let] = ACTIONS(5936), + [anon_sym_let_DASHenv] = ACTIONS(5936), + [anon_sym_mut] = ACTIONS(5936), + [anon_sym_const] = ACTIONS(5936), + [anon_sym_SEMI] = ACTIONS(5936), + [sym_cmd_identifier] = ACTIONS(5936), + [anon_sym_LF] = ACTIONS(5938), + [anon_sym_def] = ACTIONS(5936), + [anon_sym_export_DASHenv] = ACTIONS(5936), + [anon_sym_extern] = ACTIONS(5936), + [anon_sym_module] = ACTIONS(5936), + [anon_sym_use] = ACTIONS(5936), + [anon_sym_LBRACK] = ACTIONS(5936), + [anon_sym_LPAREN] = ACTIONS(5936), + [anon_sym_RPAREN] = ACTIONS(5936), + [anon_sym_DOLLAR] = ACTIONS(5936), + [anon_sym_error] = ACTIONS(5936), + [anon_sym_DASH] = ACTIONS(5936), + [anon_sym_break] = ACTIONS(5936), + [anon_sym_continue] = ACTIONS(5936), + [anon_sym_for] = ACTIONS(5936), + [anon_sym_loop] = ACTIONS(5936), + [anon_sym_while] = ACTIONS(5936), + [anon_sym_do] = ACTIONS(5936), + [anon_sym_if] = ACTIONS(5936), + [anon_sym_match] = ACTIONS(5936), + [anon_sym_LBRACE] = ACTIONS(5936), + [anon_sym_RBRACE] = ACTIONS(5936), + [anon_sym_DOT_DOT] = ACTIONS(5936), + [anon_sym_try] = ACTIONS(5936), + [anon_sym_return] = ACTIONS(5936), + [anon_sym_source] = ACTIONS(5936), + [anon_sym_source_DASHenv] = ACTIONS(5936), + [anon_sym_register] = ACTIONS(5936), + [anon_sym_hide] = ACTIONS(5936), + [anon_sym_hide_DASHenv] = ACTIONS(5936), + [anon_sym_overlay] = ACTIONS(5936), + [anon_sym_where] = ACTIONS(5936), + [anon_sym_not] = ACTIONS(5936), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5936), + [anon_sym_DOT_DOT_LT] = ACTIONS(5936), + [anon_sym_null] = ACTIONS(5936), + [anon_sym_true] = ACTIONS(5936), + [anon_sym_false] = ACTIONS(5936), + [aux_sym__val_number_decimal_token1] = ACTIONS(5936), + [aux_sym__val_number_decimal_token2] = ACTIONS(5936), + [anon_sym_DOT2] = ACTIONS(5936), + [aux_sym__val_number_decimal_token3] = ACTIONS(5936), + [aux_sym__val_number_token1] = ACTIONS(5936), + [aux_sym__val_number_token2] = ACTIONS(5936), + [aux_sym__val_number_token3] = ACTIONS(5936), + [aux_sym__val_number_token4] = ACTIONS(5936), + [aux_sym__val_number_token5] = ACTIONS(5936), + [aux_sym__val_number_token6] = ACTIONS(5936), + [anon_sym_0b] = ACTIONS(5936), + [anon_sym_0o] = ACTIONS(5936), + [anon_sym_0x] = ACTIONS(5936), + [sym_val_date] = ACTIONS(5936), + [anon_sym_DQUOTE] = ACTIONS(5936), + [sym__str_single_quotes] = ACTIONS(5936), + [sym__str_back_ticks] = ACTIONS(5936), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5936), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5936), + [anon_sym_CARET] = ACTIONS(5936), + [anon_sym_POUND] = ACTIONS(113), }, - [2000] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6745), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6451), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5133), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(6285), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(2000), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(5521), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5523), - [anon_sym_DOT_DOT_LT] = ACTIONS(5523), - [anon_sym_null] = ACTIONS(4676), - [anon_sym_true] = ACTIONS(4678), - [anon_sym_false] = ACTIONS(4678), - [aux_sym__val_number_decimal_token1] = ACTIONS(4680), - [aux_sym__val_number_decimal_token2] = ACTIONS(4682), - [anon_sym_DOT2] = ACTIONS(5525), - [aux_sym__val_number_decimal_token3] = ACTIONS(4686), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(4688), - [aux_sym__val_number_token5] = ACTIONS(4688), - [aux_sym__val_number_token6] = ACTIONS(4688), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(4690), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(3), + [2279] = { + [sym_comment] = STATE(2279), + [anon_sym_export] = ACTIONS(5940), + [anon_sym_alias] = ACTIONS(5940), + [anon_sym_let] = ACTIONS(5940), + [anon_sym_let_DASHenv] = ACTIONS(5940), + [anon_sym_mut] = ACTIONS(5940), + [anon_sym_const] = ACTIONS(5940), + [anon_sym_SEMI] = ACTIONS(5940), + [sym_cmd_identifier] = ACTIONS(5940), + [anon_sym_LF] = ACTIONS(5942), + [anon_sym_def] = ACTIONS(5940), + [anon_sym_export_DASHenv] = ACTIONS(5940), + [anon_sym_extern] = ACTIONS(5940), + [anon_sym_module] = ACTIONS(5940), + [anon_sym_use] = ACTIONS(5940), + [anon_sym_LBRACK] = ACTIONS(5940), + [anon_sym_LPAREN] = ACTIONS(5940), + [anon_sym_RPAREN] = ACTIONS(5940), + [anon_sym_DOLLAR] = ACTIONS(5940), + [anon_sym_error] = ACTIONS(5940), + [anon_sym_DASH] = ACTIONS(5940), + [anon_sym_break] = ACTIONS(5940), + [anon_sym_continue] = ACTIONS(5940), + [anon_sym_for] = ACTIONS(5940), + [anon_sym_loop] = ACTIONS(5940), + [anon_sym_while] = ACTIONS(5940), + [anon_sym_do] = ACTIONS(5940), + [anon_sym_if] = ACTIONS(5940), + [anon_sym_match] = ACTIONS(5940), + [anon_sym_LBRACE] = ACTIONS(5940), + [anon_sym_RBRACE] = ACTIONS(5940), + [anon_sym_DOT_DOT] = ACTIONS(5940), + [anon_sym_try] = ACTIONS(5940), + [anon_sym_return] = ACTIONS(5940), + [anon_sym_source] = ACTIONS(5940), + [anon_sym_source_DASHenv] = ACTIONS(5940), + [anon_sym_register] = ACTIONS(5940), + [anon_sym_hide] = ACTIONS(5940), + [anon_sym_hide_DASHenv] = ACTIONS(5940), + [anon_sym_overlay] = ACTIONS(5940), + [anon_sym_where] = ACTIONS(5940), + [anon_sym_not] = ACTIONS(5940), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5940), + [anon_sym_DOT_DOT_LT] = ACTIONS(5940), + [anon_sym_null] = ACTIONS(5940), + [anon_sym_true] = ACTIONS(5940), + [anon_sym_false] = ACTIONS(5940), + [aux_sym__val_number_decimal_token1] = ACTIONS(5940), + [aux_sym__val_number_decimal_token2] = ACTIONS(5940), + [anon_sym_DOT2] = ACTIONS(5940), + [aux_sym__val_number_decimal_token3] = ACTIONS(5940), + [aux_sym__val_number_token1] = ACTIONS(5940), + [aux_sym__val_number_token2] = ACTIONS(5940), + [aux_sym__val_number_token3] = ACTIONS(5940), + [aux_sym__val_number_token4] = ACTIONS(5940), + [aux_sym__val_number_token5] = ACTIONS(5940), + [aux_sym__val_number_token6] = ACTIONS(5940), + [anon_sym_0b] = ACTIONS(5940), + [anon_sym_0o] = ACTIONS(5940), + [anon_sym_0x] = ACTIONS(5940), + [sym_val_date] = ACTIONS(5940), + [anon_sym_DQUOTE] = ACTIONS(5940), + [sym__str_single_quotes] = ACTIONS(5940), + [sym__str_back_ticks] = ACTIONS(5940), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5940), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5940), + [anon_sym_CARET] = ACTIONS(5940), + [anon_sym_POUND] = ACTIONS(113), }, - [2001] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6746), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6451), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5133), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(6089), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(2001), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(5521), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5523), - [anon_sym_DOT_DOT_LT] = ACTIONS(5523), - [anon_sym_null] = ACTIONS(4676), - [anon_sym_true] = ACTIONS(4678), - [anon_sym_false] = ACTIONS(4678), - [aux_sym__val_number_decimal_token1] = ACTIONS(4680), - [aux_sym__val_number_decimal_token2] = ACTIONS(4682), - [anon_sym_DOT2] = ACTIONS(5525), - [aux_sym__val_number_decimal_token3] = ACTIONS(4686), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(4688), - [aux_sym__val_number_token5] = ACTIONS(4688), - [aux_sym__val_number_token6] = ACTIONS(4688), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(4690), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(3), + [2280] = { + [sym_comment] = STATE(2280), + [anon_sym_export] = ACTIONS(5940), + [anon_sym_alias] = ACTIONS(5940), + [anon_sym_let] = ACTIONS(5940), + [anon_sym_let_DASHenv] = ACTIONS(5940), + [anon_sym_mut] = ACTIONS(5940), + [anon_sym_const] = ACTIONS(5940), + [anon_sym_SEMI] = ACTIONS(5940), + [sym_cmd_identifier] = ACTIONS(5940), + [anon_sym_LF] = ACTIONS(5942), + [anon_sym_def] = ACTIONS(5940), + [anon_sym_export_DASHenv] = ACTIONS(5940), + [anon_sym_extern] = ACTIONS(5940), + [anon_sym_module] = ACTIONS(5940), + [anon_sym_use] = ACTIONS(5940), + [anon_sym_LBRACK] = ACTIONS(5940), + [anon_sym_LPAREN] = ACTIONS(5940), + [anon_sym_RPAREN] = ACTIONS(5940), + [anon_sym_DOLLAR] = ACTIONS(5940), + [anon_sym_error] = ACTIONS(5940), + [anon_sym_DASH] = ACTIONS(5940), + [anon_sym_break] = ACTIONS(5940), + [anon_sym_continue] = ACTIONS(5940), + [anon_sym_for] = ACTIONS(5940), + [anon_sym_loop] = ACTIONS(5940), + [anon_sym_while] = ACTIONS(5940), + [anon_sym_do] = ACTIONS(5940), + [anon_sym_if] = ACTIONS(5940), + [anon_sym_match] = ACTIONS(5940), + [anon_sym_LBRACE] = ACTIONS(5940), + [anon_sym_RBRACE] = ACTIONS(5940), + [anon_sym_DOT_DOT] = ACTIONS(5940), + [anon_sym_try] = ACTIONS(5940), + [anon_sym_return] = ACTIONS(5940), + [anon_sym_source] = ACTIONS(5940), + [anon_sym_source_DASHenv] = ACTIONS(5940), + [anon_sym_register] = ACTIONS(5940), + [anon_sym_hide] = ACTIONS(5940), + [anon_sym_hide_DASHenv] = ACTIONS(5940), + [anon_sym_overlay] = ACTIONS(5940), + [anon_sym_where] = ACTIONS(5940), + [anon_sym_not] = ACTIONS(5940), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5940), + [anon_sym_DOT_DOT_LT] = ACTIONS(5940), + [anon_sym_null] = ACTIONS(5940), + [anon_sym_true] = ACTIONS(5940), + [anon_sym_false] = ACTIONS(5940), + [aux_sym__val_number_decimal_token1] = ACTIONS(5940), + [aux_sym__val_number_decimal_token2] = ACTIONS(5940), + [anon_sym_DOT2] = ACTIONS(5940), + [aux_sym__val_number_decimal_token3] = ACTIONS(5940), + [aux_sym__val_number_token1] = ACTIONS(5940), + [aux_sym__val_number_token2] = ACTIONS(5940), + [aux_sym__val_number_token3] = ACTIONS(5940), + [aux_sym__val_number_token4] = ACTIONS(5940), + [aux_sym__val_number_token5] = ACTIONS(5940), + [aux_sym__val_number_token6] = ACTIONS(5940), + [anon_sym_0b] = ACTIONS(5940), + [anon_sym_0o] = ACTIONS(5940), + [anon_sym_0x] = ACTIONS(5940), + [sym_val_date] = ACTIONS(5940), + [anon_sym_DQUOTE] = ACTIONS(5940), + [sym__str_single_quotes] = ACTIONS(5940), + [sym__str_back_ticks] = ACTIONS(5940), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5940), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5940), + [anon_sym_CARET] = ACTIONS(5940), + [anon_sym_POUND] = ACTIONS(113), }, - [2002] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6747), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6451), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5133), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(6260), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(2002), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(5521), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5523), - [anon_sym_DOT_DOT_LT] = ACTIONS(5523), - [anon_sym_null] = ACTIONS(4676), - [anon_sym_true] = ACTIONS(4678), - [anon_sym_false] = ACTIONS(4678), - [aux_sym__val_number_decimal_token1] = ACTIONS(4680), - [aux_sym__val_number_decimal_token2] = ACTIONS(4682), - [anon_sym_DOT2] = ACTIONS(5525), - [aux_sym__val_number_decimal_token3] = ACTIONS(4686), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(4688), - [aux_sym__val_number_token5] = ACTIONS(4688), - [aux_sym__val_number_token6] = ACTIONS(4688), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(4690), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(3), + [2281] = { + [sym_block] = STATE(2404), + [sym_comment] = STATE(2281), + [ts_builtin_sym_end] = ACTIONS(5874), + [anon_sym_export] = ACTIONS(5872), + [anon_sym_alias] = ACTIONS(5872), + [anon_sym_let] = ACTIONS(5872), + [anon_sym_let_DASHenv] = ACTIONS(5872), + [anon_sym_mut] = ACTIONS(5872), + [anon_sym_const] = ACTIONS(5872), + [anon_sym_SEMI] = ACTIONS(5872), + [sym_cmd_identifier] = ACTIONS(5872), + [anon_sym_LF] = ACTIONS(5874), + [anon_sym_def] = ACTIONS(5872), + [anon_sym_export_DASHenv] = ACTIONS(5872), + [anon_sym_extern] = ACTIONS(5872), + [anon_sym_module] = ACTIONS(5872), + [anon_sym_use] = ACTIONS(5872), + [anon_sym_LBRACK] = ACTIONS(5872), + [anon_sym_LPAREN] = ACTIONS(5872), + [anon_sym_DOLLAR] = ACTIONS(5872), + [anon_sym_error] = ACTIONS(5872), + [anon_sym_DASH] = ACTIONS(5872), + [anon_sym_break] = ACTIONS(5872), + [anon_sym_continue] = ACTIONS(5872), + [anon_sym_for] = ACTIONS(5872), + [anon_sym_loop] = ACTIONS(5872), + [anon_sym_while] = ACTIONS(5872), + [anon_sym_do] = ACTIONS(5872), + [anon_sym_if] = ACTIONS(5872), + [anon_sym_match] = ACTIONS(5872), + [anon_sym_LBRACE] = ACTIONS(5944), + [anon_sym_DOT_DOT] = ACTIONS(5872), + [anon_sym_try] = ACTIONS(5872), + [anon_sym_return] = ACTIONS(5872), + [anon_sym_source] = ACTIONS(5872), + [anon_sym_source_DASHenv] = ACTIONS(5872), + [anon_sym_register] = ACTIONS(5872), + [anon_sym_hide] = ACTIONS(5872), + [anon_sym_hide_DASHenv] = ACTIONS(5872), + [anon_sym_overlay] = ACTIONS(5872), + [anon_sym_where] = ACTIONS(5872), + [anon_sym_not] = ACTIONS(5872), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5872), + [anon_sym_DOT_DOT_LT] = ACTIONS(5872), + [anon_sym_null] = ACTIONS(5872), + [anon_sym_true] = ACTIONS(5872), + [anon_sym_false] = ACTIONS(5872), + [aux_sym__val_number_decimal_token1] = ACTIONS(5872), + [aux_sym__val_number_decimal_token2] = ACTIONS(5872), + [anon_sym_DOT2] = ACTIONS(5872), + [aux_sym__val_number_decimal_token3] = ACTIONS(5872), + [aux_sym__val_number_token1] = ACTIONS(5872), + [aux_sym__val_number_token2] = ACTIONS(5872), + [aux_sym__val_number_token3] = ACTIONS(5872), + [aux_sym__val_number_token4] = ACTIONS(5872), + [aux_sym__val_number_token5] = ACTIONS(5872), + [aux_sym__val_number_token6] = ACTIONS(5872), + [anon_sym_0b] = ACTIONS(5872), + [anon_sym_0o] = ACTIONS(5872), + [anon_sym_0x] = ACTIONS(5872), + [sym_val_date] = ACTIONS(5872), + [anon_sym_DQUOTE] = ACTIONS(5872), + [sym__str_single_quotes] = ACTIONS(5872), + [sym__str_back_ticks] = ACTIONS(5872), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5872), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5872), + [anon_sym_CARET] = ACTIONS(5872), + [anon_sym_POUND] = ACTIONS(113), }, - [2003] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6749), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6451), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5133), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(5954), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(2003), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(5521), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5523), - [anon_sym_DOT_DOT_LT] = ACTIONS(5523), - [anon_sym_null] = ACTIONS(4676), - [anon_sym_true] = ACTIONS(4678), - [anon_sym_false] = ACTIONS(4678), - [aux_sym__val_number_decimal_token1] = ACTIONS(4680), - [aux_sym__val_number_decimal_token2] = ACTIONS(4682), - [anon_sym_DOT2] = ACTIONS(5525), - [aux_sym__val_number_decimal_token3] = ACTIONS(4686), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(4688), - [aux_sym__val_number_token5] = ACTIONS(4688), - [aux_sym__val_number_token6] = ACTIONS(4688), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(4690), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(3), + [2282] = { + [sym_comment] = STATE(2282), + [ts_builtin_sym_end] = ACTIONS(1022), + [anon_sym_export] = ACTIONS(1020), + [anon_sym_alias] = ACTIONS(1020), + [anon_sym_let] = ACTIONS(1020), + [anon_sym_let_DASHenv] = ACTIONS(1020), + [anon_sym_mut] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1020), + [sym_cmd_identifier] = ACTIONS(1020), + [anon_sym_LF] = ACTIONS(1022), + [anon_sym_def] = ACTIONS(1020), + [anon_sym_export_DASHenv] = ACTIONS(1020), + [anon_sym_extern] = ACTIONS(1020), + [anon_sym_module] = ACTIONS(1020), + [anon_sym_use] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_error] = ACTIONS(1020), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_loop] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_match] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_DOT_DOT] = ACTIONS(1020), + [anon_sym_try] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_source] = ACTIONS(1020), + [anon_sym_source_DASHenv] = ACTIONS(1020), + [anon_sym_register] = ACTIONS(1020), + [anon_sym_hide] = ACTIONS(1020), + [anon_sym_hide_DASHenv] = ACTIONS(1020), + [anon_sym_overlay] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_where] = ACTIONS(1020), + [anon_sym_not] = ACTIONS(1020), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1020), + [anon_sym_DOT_DOT_LT] = ACTIONS(1020), + [anon_sym_null] = ACTIONS(1020), + [anon_sym_true] = ACTIONS(1020), + [anon_sym_false] = ACTIONS(1020), + [aux_sym__val_number_decimal_token1] = ACTIONS(1020), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [anon_sym_DOT2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1020), + [aux_sym__val_number_token1] = ACTIONS(1020), + [aux_sym__val_number_token2] = ACTIONS(1020), + [aux_sym__val_number_token3] = ACTIONS(1020), + [aux_sym__val_number_token4] = ACTIONS(1020), + [aux_sym__val_number_token5] = ACTIONS(1020), + [aux_sym__val_number_token6] = ACTIONS(1020), + [anon_sym_0b] = ACTIONS(1020), + [anon_sym_0o] = ACTIONS(1020), + [anon_sym_0x] = ACTIONS(1020), + [sym_val_date] = ACTIONS(1020), + [anon_sym_DQUOTE] = ACTIONS(1020), + [sym__str_single_quotes] = ACTIONS(1020), + [sym__str_back_ticks] = ACTIONS(1020), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1020), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1020), + [anon_sym_CARET] = ACTIONS(1020), + [anon_sym_POUND] = ACTIONS(113), }, - [2004] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6750), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6451), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5133), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(5955), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(2004), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(5521), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5523), - [anon_sym_DOT_DOT_LT] = ACTIONS(5523), - [anon_sym_null] = ACTIONS(4676), - [anon_sym_true] = ACTIONS(4678), - [anon_sym_false] = ACTIONS(4678), - [aux_sym__val_number_decimal_token1] = ACTIONS(4680), - [aux_sym__val_number_decimal_token2] = ACTIONS(4682), - [anon_sym_DOT2] = ACTIONS(5525), - [aux_sym__val_number_decimal_token3] = ACTIONS(4686), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(4688), - [aux_sym__val_number_token5] = ACTIONS(4688), - [aux_sym__val_number_token6] = ACTIONS(4688), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(4690), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(3), + [2283] = { + [sym_comment] = STATE(2283), + [anon_sym_export] = ACTIONS(5946), + [anon_sym_alias] = ACTIONS(5946), + [anon_sym_let] = ACTIONS(5946), + [anon_sym_let_DASHenv] = ACTIONS(5946), + [anon_sym_mut] = ACTIONS(5946), + [anon_sym_const] = ACTIONS(5946), + [anon_sym_SEMI] = ACTIONS(5946), + [sym_cmd_identifier] = ACTIONS(5946), + [anon_sym_LF] = ACTIONS(5948), + [anon_sym_def] = ACTIONS(5946), + [anon_sym_export_DASHenv] = ACTIONS(5946), + [anon_sym_extern] = ACTIONS(5946), + [anon_sym_module] = ACTIONS(5946), + [anon_sym_use] = ACTIONS(5946), + [anon_sym_LBRACK] = ACTIONS(5946), + [anon_sym_LPAREN] = ACTIONS(5946), + [anon_sym_RPAREN] = ACTIONS(5946), + [anon_sym_DOLLAR] = ACTIONS(5946), + [anon_sym_error] = ACTIONS(5946), + [anon_sym_DASH] = ACTIONS(5946), + [anon_sym_break] = ACTIONS(5946), + [anon_sym_continue] = ACTIONS(5946), + [anon_sym_for] = ACTIONS(5946), + [anon_sym_loop] = ACTIONS(5946), + [anon_sym_while] = ACTIONS(5946), + [anon_sym_do] = ACTIONS(5946), + [anon_sym_if] = ACTIONS(5946), + [anon_sym_match] = ACTIONS(5946), + [anon_sym_LBRACE] = ACTIONS(5946), + [anon_sym_RBRACE] = ACTIONS(5946), + [anon_sym_DOT_DOT] = ACTIONS(5946), + [anon_sym_try] = ACTIONS(5946), + [anon_sym_return] = ACTIONS(5946), + [anon_sym_source] = ACTIONS(5946), + [anon_sym_source_DASHenv] = ACTIONS(5946), + [anon_sym_register] = ACTIONS(5946), + [anon_sym_hide] = ACTIONS(5946), + [anon_sym_hide_DASHenv] = ACTIONS(5946), + [anon_sym_overlay] = ACTIONS(5946), + [anon_sym_where] = ACTIONS(5946), + [anon_sym_not] = ACTIONS(5946), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5946), + [anon_sym_DOT_DOT_LT] = ACTIONS(5946), + [anon_sym_null] = ACTIONS(5946), + [anon_sym_true] = ACTIONS(5946), + [anon_sym_false] = ACTIONS(5946), + [aux_sym__val_number_decimal_token1] = ACTIONS(5946), + [aux_sym__val_number_decimal_token2] = ACTIONS(5946), + [anon_sym_DOT2] = ACTIONS(5946), + [aux_sym__val_number_decimal_token3] = ACTIONS(5946), + [aux_sym__val_number_token1] = ACTIONS(5946), + [aux_sym__val_number_token2] = ACTIONS(5946), + [aux_sym__val_number_token3] = ACTIONS(5946), + [aux_sym__val_number_token4] = ACTIONS(5946), + [aux_sym__val_number_token5] = ACTIONS(5946), + [aux_sym__val_number_token6] = ACTIONS(5946), + [anon_sym_0b] = ACTIONS(5946), + [anon_sym_0o] = ACTIONS(5946), + [anon_sym_0x] = ACTIONS(5946), + [sym_val_date] = ACTIONS(5946), + [anon_sym_DQUOTE] = ACTIONS(5946), + [sym__str_single_quotes] = ACTIONS(5946), + [sym__str_back_ticks] = ACTIONS(5946), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5946), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5946), + [anon_sym_CARET] = ACTIONS(5946), + [anon_sym_POUND] = ACTIONS(113), }, - [2005] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6637), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6451), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5133), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(5962), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(2005), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(5521), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5523), - [anon_sym_DOT_DOT_LT] = ACTIONS(5523), - [anon_sym_null] = ACTIONS(4676), - [anon_sym_true] = ACTIONS(4678), - [anon_sym_false] = ACTIONS(4678), - [aux_sym__val_number_decimal_token1] = ACTIONS(4680), - [aux_sym__val_number_decimal_token2] = ACTIONS(4682), - [anon_sym_DOT2] = ACTIONS(5525), - [aux_sym__val_number_decimal_token3] = ACTIONS(4686), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(4688), - [aux_sym__val_number_token5] = ACTIONS(4688), - [aux_sym__val_number_token6] = ACTIONS(4688), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(4690), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(3), + [2284] = { + [sym_comment] = STATE(2284), + [anon_sym_export] = ACTIONS(5950), + [anon_sym_alias] = ACTIONS(5950), + [anon_sym_let] = ACTIONS(5950), + [anon_sym_let_DASHenv] = ACTIONS(5950), + [anon_sym_mut] = ACTIONS(5950), + [anon_sym_const] = ACTIONS(5950), + [anon_sym_SEMI] = ACTIONS(5950), + [sym_cmd_identifier] = ACTIONS(5950), + [anon_sym_LF] = ACTIONS(5952), + [anon_sym_def] = ACTIONS(5950), + [anon_sym_export_DASHenv] = ACTIONS(5950), + [anon_sym_extern] = ACTIONS(5950), + [anon_sym_module] = ACTIONS(5950), + [anon_sym_use] = ACTIONS(5950), + [anon_sym_LBRACK] = ACTIONS(5950), + [anon_sym_LPAREN] = ACTIONS(5950), + [anon_sym_RPAREN] = ACTIONS(5950), + [anon_sym_DOLLAR] = ACTIONS(5950), + [anon_sym_error] = ACTIONS(5950), + [anon_sym_DASH] = ACTIONS(5950), + [anon_sym_break] = ACTIONS(5950), + [anon_sym_continue] = ACTIONS(5950), + [anon_sym_for] = ACTIONS(5950), + [anon_sym_loop] = ACTIONS(5950), + [anon_sym_while] = ACTIONS(5950), + [anon_sym_do] = ACTIONS(5950), + [anon_sym_if] = ACTIONS(5950), + [anon_sym_match] = ACTIONS(5950), + [anon_sym_LBRACE] = ACTIONS(5950), + [anon_sym_RBRACE] = ACTIONS(5950), + [anon_sym_DOT_DOT] = ACTIONS(5950), + [anon_sym_try] = ACTIONS(5950), + [anon_sym_return] = ACTIONS(5950), + [anon_sym_source] = ACTIONS(5950), + [anon_sym_source_DASHenv] = ACTIONS(5950), + [anon_sym_register] = ACTIONS(5950), + [anon_sym_hide] = ACTIONS(5950), + [anon_sym_hide_DASHenv] = ACTIONS(5950), + [anon_sym_overlay] = ACTIONS(5950), + [anon_sym_where] = ACTIONS(5950), + [anon_sym_not] = ACTIONS(5950), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5950), + [anon_sym_DOT_DOT_LT] = ACTIONS(5950), + [anon_sym_null] = ACTIONS(5950), + [anon_sym_true] = ACTIONS(5950), + [anon_sym_false] = ACTIONS(5950), + [aux_sym__val_number_decimal_token1] = ACTIONS(5950), + [aux_sym__val_number_decimal_token2] = ACTIONS(5950), + [anon_sym_DOT2] = ACTIONS(5950), + [aux_sym__val_number_decimal_token3] = ACTIONS(5950), + [aux_sym__val_number_token1] = ACTIONS(5950), + [aux_sym__val_number_token2] = ACTIONS(5950), + [aux_sym__val_number_token3] = ACTIONS(5950), + [aux_sym__val_number_token4] = ACTIONS(5950), + [aux_sym__val_number_token5] = ACTIONS(5950), + [aux_sym__val_number_token6] = ACTIONS(5950), + [anon_sym_0b] = ACTIONS(5950), + [anon_sym_0o] = ACTIONS(5950), + [anon_sym_0x] = ACTIONS(5950), + [sym_val_date] = ACTIONS(5950), + [anon_sym_DQUOTE] = ACTIONS(5950), + [sym__str_single_quotes] = ACTIONS(5950), + [sym__str_back_ticks] = ACTIONS(5950), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5950), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5950), + [anon_sym_POUND] = ACTIONS(113), }, - [2006] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6638), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6451), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5133), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(5981), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(2006), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(5521), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5523), - [anon_sym_DOT_DOT_LT] = ACTIONS(5523), - [anon_sym_null] = ACTIONS(4676), - [anon_sym_true] = ACTIONS(4678), - [anon_sym_false] = ACTIONS(4678), - [aux_sym__val_number_decimal_token1] = ACTIONS(4680), - [aux_sym__val_number_decimal_token2] = ACTIONS(4682), - [anon_sym_DOT2] = ACTIONS(5525), - [aux_sym__val_number_decimal_token3] = ACTIONS(4686), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(4688), - [aux_sym__val_number_token5] = ACTIONS(4688), - [aux_sym__val_number_token6] = ACTIONS(4688), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(4690), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(3), + [2285] = { + [sym_comment] = STATE(2285), + [anon_sym_export] = ACTIONS(5954), + [anon_sym_alias] = ACTIONS(5954), + [anon_sym_let] = ACTIONS(5954), + [anon_sym_let_DASHenv] = ACTIONS(5954), + [anon_sym_mut] = ACTIONS(5954), + [anon_sym_const] = ACTIONS(5954), + [anon_sym_SEMI] = ACTIONS(5954), + [sym_cmd_identifier] = ACTIONS(5954), + [anon_sym_LF] = ACTIONS(5956), + [anon_sym_def] = ACTIONS(5954), + [anon_sym_export_DASHenv] = ACTIONS(5954), + [anon_sym_extern] = ACTIONS(5954), + [anon_sym_module] = ACTIONS(5954), + [anon_sym_use] = ACTIONS(5954), + [anon_sym_LBRACK] = ACTIONS(5954), + [anon_sym_LPAREN] = ACTIONS(5954), + [anon_sym_RPAREN] = ACTIONS(5954), + [anon_sym_DOLLAR] = ACTIONS(5954), + [anon_sym_error] = ACTIONS(5954), + [anon_sym_DASH] = ACTIONS(5954), + [anon_sym_break] = ACTIONS(5954), + [anon_sym_continue] = ACTIONS(5954), + [anon_sym_for] = ACTIONS(5954), + [anon_sym_loop] = ACTIONS(5954), + [anon_sym_while] = ACTIONS(5954), + [anon_sym_do] = ACTIONS(5954), + [anon_sym_if] = ACTIONS(5954), + [anon_sym_match] = ACTIONS(5954), + [anon_sym_LBRACE] = ACTIONS(5954), + [anon_sym_RBRACE] = ACTIONS(5954), + [anon_sym_DOT_DOT] = ACTIONS(5954), + [anon_sym_try] = ACTIONS(5954), + [anon_sym_return] = ACTIONS(5954), + [anon_sym_source] = ACTIONS(5954), + [anon_sym_source_DASHenv] = ACTIONS(5954), + [anon_sym_register] = ACTIONS(5954), + [anon_sym_hide] = ACTIONS(5954), + [anon_sym_hide_DASHenv] = ACTIONS(5954), + [anon_sym_overlay] = ACTIONS(5954), + [anon_sym_where] = ACTIONS(5954), + [anon_sym_not] = ACTIONS(5954), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5954), + [anon_sym_DOT_DOT_LT] = ACTIONS(5954), + [anon_sym_null] = ACTIONS(5954), + [anon_sym_true] = ACTIONS(5954), + [anon_sym_false] = ACTIONS(5954), + [aux_sym__val_number_decimal_token1] = ACTIONS(5954), + [aux_sym__val_number_decimal_token2] = ACTIONS(5954), + [anon_sym_DOT2] = ACTIONS(5954), + [aux_sym__val_number_decimal_token3] = ACTIONS(5954), + [aux_sym__val_number_token1] = ACTIONS(5954), + [aux_sym__val_number_token2] = ACTIONS(5954), + [aux_sym__val_number_token3] = ACTIONS(5954), + [aux_sym__val_number_token4] = ACTIONS(5954), + [aux_sym__val_number_token5] = ACTIONS(5954), + [aux_sym__val_number_token6] = ACTIONS(5954), + [anon_sym_0b] = ACTIONS(5954), + [anon_sym_0o] = ACTIONS(5954), + [anon_sym_0x] = ACTIONS(5954), + [sym_val_date] = ACTIONS(5954), + [anon_sym_DQUOTE] = ACTIONS(5954), + [sym__str_single_quotes] = ACTIONS(5954), + [sym__str_back_ticks] = ACTIONS(5954), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5954), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5954), + [anon_sym_CARET] = ACTIONS(5954), + [anon_sym_POUND] = ACTIONS(113), }, - [2007] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6645), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6451), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5133), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(5958), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(2007), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(5521), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5523), - [anon_sym_DOT_DOT_LT] = ACTIONS(5523), - [anon_sym_null] = ACTIONS(4676), - [anon_sym_true] = ACTIONS(4678), - [anon_sym_false] = ACTIONS(4678), - [aux_sym__val_number_decimal_token1] = ACTIONS(4680), - [aux_sym__val_number_decimal_token2] = ACTIONS(4682), - [anon_sym_DOT2] = ACTIONS(5525), - [aux_sym__val_number_decimal_token3] = ACTIONS(4686), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(4688), - [aux_sym__val_number_token5] = ACTIONS(4688), - [aux_sym__val_number_token6] = ACTIONS(4688), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(4690), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(3), + [2286] = { + [sym_comment] = STATE(2286), + [anon_sym_export] = ACTIONS(5958), + [anon_sym_alias] = ACTIONS(5958), + [anon_sym_let] = ACTIONS(5958), + [anon_sym_let_DASHenv] = ACTIONS(5958), + [anon_sym_mut] = ACTIONS(5958), + [anon_sym_const] = ACTIONS(5958), + [anon_sym_SEMI] = ACTIONS(5958), + [sym_cmd_identifier] = ACTIONS(5958), + [anon_sym_LF] = ACTIONS(5960), + [anon_sym_def] = ACTIONS(5958), + [anon_sym_export_DASHenv] = ACTIONS(5958), + [anon_sym_extern] = ACTIONS(5958), + [anon_sym_module] = ACTIONS(5958), + [anon_sym_use] = ACTIONS(5958), + [anon_sym_LBRACK] = ACTIONS(5958), + [anon_sym_LPAREN] = ACTIONS(5958), + [anon_sym_RPAREN] = ACTIONS(5958), + [anon_sym_DOLLAR] = ACTIONS(5958), + [anon_sym_error] = ACTIONS(5958), + [anon_sym_DASH] = ACTIONS(5958), + [anon_sym_break] = ACTIONS(5958), + [anon_sym_continue] = ACTIONS(5958), + [anon_sym_for] = ACTIONS(5958), + [anon_sym_loop] = ACTIONS(5958), + [anon_sym_while] = ACTIONS(5958), + [anon_sym_do] = ACTIONS(5958), + [anon_sym_if] = ACTIONS(5958), + [anon_sym_match] = ACTIONS(5958), + [anon_sym_LBRACE] = ACTIONS(5958), + [anon_sym_RBRACE] = ACTIONS(5958), + [anon_sym_DOT_DOT] = ACTIONS(5958), + [anon_sym_try] = ACTIONS(5958), + [anon_sym_return] = ACTIONS(5958), + [anon_sym_source] = ACTIONS(5958), + [anon_sym_source_DASHenv] = ACTIONS(5958), + [anon_sym_register] = ACTIONS(5958), + [anon_sym_hide] = ACTIONS(5958), + [anon_sym_hide_DASHenv] = ACTIONS(5958), + [anon_sym_overlay] = ACTIONS(5958), + [anon_sym_where] = ACTIONS(5958), + [anon_sym_not] = ACTIONS(5958), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5958), + [anon_sym_DOT_DOT_LT] = ACTIONS(5958), + [anon_sym_null] = ACTIONS(5958), + [anon_sym_true] = ACTIONS(5958), + [anon_sym_false] = ACTIONS(5958), + [aux_sym__val_number_decimal_token1] = ACTIONS(5958), + [aux_sym__val_number_decimal_token2] = ACTIONS(5958), + [anon_sym_DOT2] = ACTIONS(5958), + [aux_sym__val_number_decimal_token3] = ACTIONS(5958), + [aux_sym__val_number_token1] = ACTIONS(5958), + [aux_sym__val_number_token2] = ACTIONS(5958), + [aux_sym__val_number_token3] = ACTIONS(5958), + [aux_sym__val_number_token4] = ACTIONS(5958), + [aux_sym__val_number_token5] = ACTIONS(5958), + [aux_sym__val_number_token6] = ACTIONS(5958), + [anon_sym_0b] = ACTIONS(5958), + [anon_sym_0o] = ACTIONS(5958), + [anon_sym_0x] = ACTIONS(5958), + [sym_val_date] = ACTIONS(5958), + [anon_sym_DQUOTE] = ACTIONS(5958), + [sym__str_single_quotes] = ACTIONS(5958), + [sym__str_back_ticks] = ACTIONS(5958), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5958), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5958), + [anon_sym_CARET] = ACTIONS(5958), + [anon_sym_POUND] = ACTIONS(113), }, - [2008] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6649), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6451), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5133), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(6177), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(2008), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(5521), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5523), - [anon_sym_DOT_DOT_LT] = ACTIONS(5523), - [anon_sym_null] = ACTIONS(4676), - [anon_sym_true] = ACTIONS(4678), - [anon_sym_false] = ACTIONS(4678), - [aux_sym__val_number_decimal_token1] = ACTIONS(4680), - [aux_sym__val_number_decimal_token2] = ACTIONS(4682), - [anon_sym_DOT2] = ACTIONS(5525), - [aux_sym__val_number_decimal_token3] = ACTIONS(4686), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(4688), - [aux_sym__val_number_token5] = ACTIONS(4688), - [aux_sym__val_number_token6] = ACTIONS(4688), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(4690), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(3), + [2287] = { + [sym_comment] = STATE(2287), + [anon_sym_export] = ACTIONS(5962), + [anon_sym_alias] = ACTIONS(5962), + [anon_sym_let] = ACTIONS(5962), + [anon_sym_let_DASHenv] = ACTIONS(5962), + [anon_sym_mut] = ACTIONS(5962), + [anon_sym_const] = ACTIONS(5962), + [anon_sym_SEMI] = ACTIONS(5962), + [sym_cmd_identifier] = ACTIONS(5962), + [anon_sym_LF] = ACTIONS(5964), + [anon_sym_def] = ACTIONS(5962), + [anon_sym_export_DASHenv] = ACTIONS(5962), + [anon_sym_extern] = ACTIONS(5962), + [anon_sym_module] = ACTIONS(5962), + [anon_sym_use] = ACTIONS(5962), + [anon_sym_LBRACK] = ACTIONS(5962), + [anon_sym_LPAREN] = ACTIONS(5962), + [anon_sym_RPAREN] = ACTIONS(5962), + [anon_sym_DOLLAR] = ACTIONS(5962), + [anon_sym_error] = ACTIONS(5962), + [anon_sym_DASH] = ACTIONS(5962), + [anon_sym_break] = ACTIONS(5962), + [anon_sym_continue] = ACTIONS(5962), + [anon_sym_for] = ACTIONS(5962), + [anon_sym_loop] = ACTIONS(5962), + [anon_sym_while] = ACTIONS(5962), + [anon_sym_do] = ACTIONS(5962), + [anon_sym_if] = ACTIONS(5962), + [anon_sym_match] = ACTIONS(5962), + [anon_sym_LBRACE] = ACTIONS(5962), + [anon_sym_RBRACE] = ACTIONS(5962), + [anon_sym_DOT_DOT] = ACTIONS(5962), + [anon_sym_try] = ACTIONS(5962), + [anon_sym_return] = ACTIONS(5962), + [anon_sym_source] = ACTIONS(5962), + [anon_sym_source_DASHenv] = ACTIONS(5962), + [anon_sym_register] = ACTIONS(5962), + [anon_sym_hide] = ACTIONS(5962), + [anon_sym_hide_DASHenv] = ACTIONS(5962), + [anon_sym_overlay] = ACTIONS(5962), + [anon_sym_where] = ACTIONS(5962), + [anon_sym_not] = ACTIONS(5962), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5962), + [anon_sym_DOT_DOT_LT] = ACTIONS(5962), + [anon_sym_null] = ACTIONS(5962), + [anon_sym_true] = ACTIONS(5962), + [anon_sym_false] = ACTIONS(5962), + [aux_sym__val_number_decimal_token1] = ACTIONS(5962), + [aux_sym__val_number_decimal_token2] = ACTIONS(5962), + [anon_sym_DOT2] = ACTIONS(5962), + [aux_sym__val_number_decimal_token3] = ACTIONS(5962), + [aux_sym__val_number_token1] = ACTIONS(5962), + [aux_sym__val_number_token2] = ACTIONS(5962), + [aux_sym__val_number_token3] = ACTIONS(5962), + [aux_sym__val_number_token4] = ACTIONS(5962), + [aux_sym__val_number_token5] = ACTIONS(5962), + [aux_sym__val_number_token6] = ACTIONS(5962), + [anon_sym_0b] = ACTIONS(5962), + [anon_sym_0o] = ACTIONS(5962), + [anon_sym_0x] = ACTIONS(5962), + [sym_val_date] = ACTIONS(5962), + [anon_sym_DQUOTE] = ACTIONS(5962), + [sym__str_single_quotes] = ACTIONS(5962), + [sym__str_back_ticks] = ACTIONS(5962), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5962), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5962), + [anon_sym_CARET] = ACTIONS(5962), + [anon_sym_POUND] = ACTIONS(113), }, - [2009] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6656), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6451), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5133), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(6203), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(2009), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(5521), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5523), - [anon_sym_DOT_DOT_LT] = ACTIONS(5523), - [anon_sym_null] = ACTIONS(4676), - [anon_sym_true] = ACTIONS(4678), - [anon_sym_false] = ACTIONS(4678), - [aux_sym__val_number_decimal_token1] = ACTIONS(4680), - [aux_sym__val_number_decimal_token2] = ACTIONS(4682), - [anon_sym_DOT2] = ACTIONS(5525), - [aux_sym__val_number_decimal_token3] = ACTIONS(4686), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(4688), - [aux_sym__val_number_token5] = ACTIONS(4688), - [aux_sym__val_number_token6] = ACTIONS(4688), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(4690), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(3), + [2288] = { + [sym_comment] = STATE(2288), + [ts_builtin_sym_end] = ACTIONS(1063), + [anon_sym_SEMI] = ACTIONS(1061), + [anon_sym_LF] = ACTIONS(1063), + [anon_sym_LBRACK] = ACTIONS(1061), + [anon_sym_LPAREN] = ACTIONS(1061), + [anon_sym_PIPE] = ACTIONS(1061), + [anon_sym_DOLLAR] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_DASH_DASH] = ACTIONS(1061), + [anon_sym_DASH] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(1061), + [anon_sym_DOT_DOT] = ACTIONS(1061), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_STAR_STAR] = ACTIONS(1061), + [anon_sym_PLUS_PLUS] = ACTIONS(1061), + [anon_sym_SLASH] = ACTIONS(1061), + [anon_sym_mod] = ACTIONS(1061), + [anon_sym_SLASH_SLASH] = ACTIONS(1061), + [anon_sym_PLUS] = ACTIONS(1061), + [anon_sym_bit_DASHshl] = ACTIONS(1061), + [anon_sym_bit_DASHshr] = ACTIONS(1061), + [anon_sym_EQ_EQ] = ACTIONS(1061), + [anon_sym_BANG_EQ] = ACTIONS(1061), + [anon_sym_LT2] = ACTIONS(1061), + [anon_sym_LT_EQ] = ACTIONS(1061), + [anon_sym_GT_EQ] = ACTIONS(1061), + [anon_sym_not_DASHin] = ACTIONS(1061), + [anon_sym_starts_DASHwith] = ACTIONS(1061), + [anon_sym_ends_DASHwith] = ACTIONS(1061), + [anon_sym_EQ_TILDE] = ACTIONS(1061), + [anon_sym_BANG_TILDE] = ACTIONS(1061), + [anon_sym_bit_DASHand] = ACTIONS(1061), + [anon_sym_bit_DASHxor] = ACTIONS(1061), + [anon_sym_bit_DASHor] = ACTIONS(1061), + [anon_sym_and] = ACTIONS(1061), + [anon_sym_xor] = ACTIONS(1061), + [anon_sym_or] = ACTIONS(1061), + [anon_sym_not] = ACTIONS(1061), + [anon_sym_DOT_DOT2] = ACTIONS(1061), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1061), + [anon_sym_DOT_DOT_LT] = ACTIONS(1061), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1063), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1063), + [anon_sym_null] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1061), + [anon_sym_false] = ACTIONS(1061), + [aux_sym__val_number_decimal_token1] = ACTIONS(1061), + [aux_sym__val_number_decimal_token2] = ACTIONS(1061), + [anon_sym_DOT2] = ACTIONS(1061), + [aux_sym__val_number_decimal_token3] = ACTIONS(1061), + [aux_sym__val_number_token1] = ACTIONS(1061), + [aux_sym__val_number_token2] = ACTIONS(1061), + [aux_sym__val_number_token3] = ACTIONS(1061), + [aux_sym__val_number_token4] = ACTIONS(1061), + [aux_sym__val_number_token5] = ACTIONS(1061), + [aux_sym__val_number_token6] = ACTIONS(1061), + [anon_sym_0b] = ACTIONS(1061), + [anon_sym_0o] = ACTIONS(1061), + [anon_sym_0x] = ACTIONS(1061), + [sym_val_date] = ACTIONS(1061), + [anon_sym_DQUOTE] = ACTIONS(1061), + [sym__str_single_quotes] = ACTIONS(1061), + [sym__str_back_ticks] = ACTIONS(1061), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1061), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1061), + [anon_sym_POUND] = ACTIONS(113), }, - [2010] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6661), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6451), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5133), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(6218), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(2010), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(5521), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5523), - [anon_sym_DOT_DOT_LT] = ACTIONS(5523), - [anon_sym_null] = ACTIONS(4676), - [anon_sym_true] = ACTIONS(4678), - [anon_sym_false] = ACTIONS(4678), - [aux_sym__val_number_decimal_token1] = ACTIONS(4680), - [aux_sym__val_number_decimal_token2] = ACTIONS(4682), - [anon_sym_DOT2] = ACTIONS(5525), - [aux_sym__val_number_decimal_token3] = ACTIONS(4686), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(4688), - [aux_sym__val_number_token5] = ACTIONS(4688), - [aux_sym__val_number_token6] = ACTIONS(4688), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(4690), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(3), + [2289] = { + [sym_cell_path] = STATE(2645), + [sym_path] = STATE(2311), + [sym_comment] = STATE(2289), + [ts_builtin_sym_end] = ACTIONS(1103), + [anon_sym_SEMI] = ACTIONS(1101), + [anon_sym_LF] = ACTIONS(1103), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_PIPE] = ACTIONS(1101), + [anon_sym_DOLLAR] = ACTIONS(1101), + [anon_sym_GT] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_in] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_DOT_DOT] = ACTIONS(1101), + [anon_sym_STAR] = ACTIONS(1101), + [anon_sym_STAR_STAR] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_SLASH] = ACTIONS(1101), + [anon_sym_mod] = ACTIONS(1101), + [anon_sym_SLASH_SLASH] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_bit_DASHshl] = ACTIONS(1101), + [anon_sym_bit_DASHshr] = ACTIONS(1101), + [anon_sym_EQ_EQ] = ACTIONS(1101), + [anon_sym_BANG_EQ] = ACTIONS(1101), + [anon_sym_LT2] = ACTIONS(1101), + [anon_sym_LT_EQ] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1101), + [anon_sym_not_DASHin] = ACTIONS(1101), + [anon_sym_starts_DASHwith] = ACTIONS(1101), + [anon_sym_ends_DASHwith] = ACTIONS(1101), + [anon_sym_EQ_TILDE] = ACTIONS(1101), + [anon_sym_BANG_TILDE] = ACTIONS(1101), + [anon_sym_bit_DASHand] = ACTIONS(1101), + [anon_sym_bit_DASHxor] = ACTIONS(1101), + [anon_sym_bit_DASHor] = ACTIONS(1101), + [anon_sym_and] = ACTIONS(1101), + [anon_sym_xor] = ACTIONS(1101), + [anon_sym_or] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_DOT] = ACTIONS(5921), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1101), + [anon_sym_DOT_DOT_LT] = ACTIONS(1101), + [anon_sym_null] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(1101), + [anon_sym_false] = ACTIONS(1101), + [aux_sym__val_number_decimal_token1] = ACTIONS(1101), + [aux_sym__val_number_decimal_token2] = ACTIONS(1101), + [anon_sym_DOT2] = ACTIONS(1101), + [aux_sym__val_number_decimal_token3] = ACTIONS(1101), + [aux_sym__val_number_token1] = ACTIONS(1101), + [aux_sym__val_number_token2] = ACTIONS(1101), + [aux_sym__val_number_token3] = ACTIONS(1101), + [aux_sym__val_number_token4] = ACTIONS(1101), + [aux_sym__val_number_token5] = ACTIONS(1101), + [aux_sym__val_number_token6] = ACTIONS(1101), + [anon_sym_0b] = ACTIONS(1101), + [anon_sym_0o] = ACTIONS(1101), + [anon_sym_0x] = ACTIONS(1101), + [sym_val_date] = ACTIONS(1101), + [anon_sym_DQUOTE] = ACTIONS(1101), + [sym__str_single_quotes] = ACTIONS(1101), + [sym__str_back_ticks] = ACTIONS(1101), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1101), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1101), + [anon_sym_POUND] = ACTIONS(113), }, - [2011] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6669), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6451), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5133), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(6055), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(2011), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(5521), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5523), - [anon_sym_DOT_DOT_LT] = ACTIONS(5523), - [anon_sym_null] = ACTIONS(4676), - [anon_sym_true] = ACTIONS(4678), - [anon_sym_false] = ACTIONS(4678), - [aux_sym__val_number_decimal_token1] = ACTIONS(4680), - [aux_sym__val_number_decimal_token2] = ACTIONS(4682), - [anon_sym_DOT2] = ACTIONS(5525), - [aux_sym__val_number_decimal_token3] = ACTIONS(4686), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(4688), - [aux_sym__val_number_token5] = ACTIONS(4688), - [aux_sym__val_number_token6] = ACTIONS(4688), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(4690), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(3), + [2290] = { + [sym_comment] = STATE(2290), + [anon_sym_export] = ACTIONS(5966), + [anon_sym_alias] = ACTIONS(5966), + [anon_sym_let] = ACTIONS(5966), + [anon_sym_let_DASHenv] = ACTIONS(5966), + [anon_sym_mut] = ACTIONS(5966), + [anon_sym_const] = ACTIONS(5966), + [anon_sym_SEMI] = ACTIONS(5966), + [sym_cmd_identifier] = ACTIONS(5966), + [anon_sym_LF] = ACTIONS(5968), + [anon_sym_def] = ACTIONS(5966), + [anon_sym_export_DASHenv] = ACTIONS(5966), + [anon_sym_extern] = ACTIONS(5966), + [anon_sym_module] = ACTIONS(5966), + [anon_sym_use] = ACTIONS(5966), + [anon_sym_LBRACK] = ACTIONS(5966), + [anon_sym_LPAREN] = ACTIONS(5966), + [anon_sym_RPAREN] = ACTIONS(5966), + [anon_sym_DOLLAR] = ACTIONS(5966), + [anon_sym_error] = ACTIONS(5966), + [anon_sym_DASH] = ACTIONS(5966), + [anon_sym_break] = ACTIONS(5966), + [anon_sym_continue] = ACTIONS(5966), + [anon_sym_for] = ACTIONS(5966), + [anon_sym_loop] = ACTIONS(5966), + [anon_sym_while] = ACTIONS(5966), + [anon_sym_do] = ACTIONS(5966), + [anon_sym_if] = ACTIONS(5966), + [anon_sym_match] = ACTIONS(5966), + [anon_sym_LBRACE] = ACTIONS(5966), + [anon_sym_RBRACE] = ACTIONS(5966), + [anon_sym_DOT_DOT] = ACTIONS(5966), + [anon_sym_try] = ACTIONS(5966), + [anon_sym_return] = ACTIONS(5966), + [anon_sym_source] = ACTIONS(5966), + [anon_sym_source_DASHenv] = ACTIONS(5966), + [anon_sym_register] = ACTIONS(5966), + [anon_sym_hide] = ACTIONS(5966), + [anon_sym_hide_DASHenv] = ACTIONS(5966), + [anon_sym_overlay] = ACTIONS(5966), + [anon_sym_where] = ACTIONS(5966), + [anon_sym_not] = ACTIONS(5966), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5966), + [anon_sym_DOT_DOT_LT] = ACTIONS(5966), + [anon_sym_null] = ACTIONS(5966), + [anon_sym_true] = ACTIONS(5966), + [anon_sym_false] = ACTIONS(5966), + [aux_sym__val_number_decimal_token1] = ACTIONS(5966), + [aux_sym__val_number_decimal_token2] = ACTIONS(5966), + [anon_sym_DOT2] = ACTIONS(5966), + [aux_sym__val_number_decimal_token3] = ACTIONS(5966), + [aux_sym__val_number_token1] = ACTIONS(5966), + [aux_sym__val_number_token2] = ACTIONS(5966), + [aux_sym__val_number_token3] = ACTIONS(5966), + [aux_sym__val_number_token4] = ACTIONS(5966), + [aux_sym__val_number_token5] = ACTIONS(5966), + [aux_sym__val_number_token6] = ACTIONS(5966), + [anon_sym_0b] = ACTIONS(5966), + [anon_sym_0o] = ACTIONS(5966), + [anon_sym_0x] = ACTIONS(5966), + [sym_val_date] = ACTIONS(5966), + [anon_sym_DQUOTE] = ACTIONS(5966), + [sym__str_single_quotes] = ACTIONS(5966), + [sym__str_back_ticks] = ACTIONS(5966), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5966), + [anon_sym_CARET] = ACTIONS(5966), + [anon_sym_POUND] = ACTIONS(113), }, - [2012] = { - [sym_expr_unary] = STATE(5670), - [sym__expr_unary_minus] = STATE(5723), - [sym_expr_binary] = STATE(5670), - [sym__expr_binary_expression] = STATE(5677), - [sym_expr_parenthesized] = STATE(5670), - [sym__val_range] = STATE(10625), - [sym__value] = STATE(5670), - [sym_val_nothing] = STATE(5705), - [sym_val_bool] = STATE(5473), - [sym_val_variable] = STATE(5705), - [sym__var] = STATE(5098), - [sym_val_number] = STATE(5705), - [sym__val_number_decimal] = STATE(4336), - [sym__val_number] = STATE(5875), - [sym_val_duration] = STATE(5705), - [sym_val_filesize] = STATE(5705), - [sym_val_binary] = STATE(5705), - [sym_val_string] = STATE(5705), - [sym__str_double_quotes] = STATE(5788), - [sym_val_interpolated] = STATE(5705), - [sym__inter_single_quotes] = STATE(5899), - [sym__inter_double_quotes] = STATE(5903), - [sym_val_list] = STATE(5705), - [sym_val_record] = STATE(5705), - [sym_val_table] = STATE(5705), - [sym_val_closure] = STATE(5705), - [sym_unquoted] = STATE(5706), - [sym__unquoted_anonymous_prefix] = STATE(11373), - [sym_comment] = STATE(2012), - [anon_sym_LBRACK] = ACTIONS(3313), - [anon_sym_LPAREN] = ACTIONS(5527), - [anon_sym_DOLLAR] = ACTIONS(5529), - [anon_sym_DASH] = ACTIONS(4379), - [anon_sym_LBRACE] = ACTIONS(3323), - [anon_sym_DOT_DOT] = ACTIONS(5531), - [anon_sym_not] = ACTIONS(4383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5533), - [anon_sym_DOT_DOT_LT] = ACTIONS(5533), - [anon_sym_null] = ACTIONS(4387), - [anon_sym_true] = ACTIONS(4389), - [anon_sym_false] = ACTIONS(4389), - [aux_sym__val_number_decimal_token1] = ACTIONS(4391), - [aux_sym__val_number_decimal_token2] = ACTIONS(4393), - [anon_sym_DOT2] = ACTIONS(5535), - [aux_sym__val_number_decimal_token3] = ACTIONS(4397), - [aux_sym__val_number_token1] = ACTIONS(3341), - [aux_sym__val_number_token2] = ACTIONS(3341), - [aux_sym__val_number_token3] = ACTIONS(3341), - [aux_sym__val_number_token4] = ACTIONS(4399), - [aux_sym__val_number_token5] = ACTIONS(4399), - [aux_sym__val_number_token6] = ACTIONS(4399), - [anon_sym_0b] = ACTIONS(3345), - [anon_sym_0o] = ACTIONS(3347), - [anon_sym_0x] = ACTIONS(3347), - [sym_val_date] = ACTIONS(4401), - [anon_sym_DQUOTE] = ACTIONS(3351), - [sym__str_single_quotes] = ACTIONS(3353), - [sym__str_back_ticks] = ACTIONS(3353), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3355), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3357), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(3361), - [anon_sym_POUND] = ACTIONS(3), + [2291] = { + [sym_comment] = STATE(2291), + [anon_sym_export] = ACTIONS(5970), + [anon_sym_alias] = ACTIONS(5970), + [anon_sym_let] = ACTIONS(5970), + [anon_sym_let_DASHenv] = ACTIONS(5970), + [anon_sym_mut] = ACTIONS(5970), + [anon_sym_const] = ACTIONS(5970), + [anon_sym_SEMI] = ACTIONS(5970), + [sym_cmd_identifier] = ACTIONS(5970), + [anon_sym_LF] = ACTIONS(5972), + [anon_sym_def] = ACTIONS(5970), + [anon_sym_export_DASHenv] = ACTIONS(5970), + [anon_sym_extern] = ACTIONS(5970), + [anon_sym_module] = ACTIONS(5970), + [anon_sym_use] = ACTIONS(5970), + [anon_sym_LBRACK] = ACTIONS(5970), + [anon_sym_LPAREN] = ACTIONS(5970), + [anon_sym_RPAREN] = ACTIONS(5970), + [anon_sym_DOLLAR] = ACTIONS(5970), + [anon_sym_error] = ACTIONS(5970), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_break] = ACTIONS(5970), + [anon_sym_continue] = ACTIONS(5970), + [anon_sym_for] = ACTIONS(5970), + [anon_sym_loop] = ACTIONS(5970), + [anon_sym_while] = ACTIONS(5970), + [anon_sym_do] = ACTIONS(5970), + [anon_sym_if] = ACTIONS(5970), + [anon_sym_match] = ACTIONS(5970), + [anon_sym_LBRACE] = ACTIONS(5970), + [anon_sym_RBRACE] = ACTIONS(5970), + [anon_sym_DOT_DOT] = ACTIONS(5970), + [anon_sym_try] = ACTIONS(5970), + [anon_sym_return] = ACTIONS(5970), + [anon_sym_source] = ACTIONS(5970), + [anon_sym_source_DASHenv] = ACTIONS(5970), + [anon_sym_register] = ACTIONS(5970), + [anon_sym_hide] = ACTIONS(5970), + [anon_sym_hide_DASHenv] = ACTIONS(5970), + [anon_sym_overlay] = ACTIONS(5970), + [anon_sym_where] = ACTIONS(5970), + [anon_sym_not] = ACTIONS(5970), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5970), + [anon_sym_DOT_DOT_LT] = ACTIONS(5970), + [anon_sym_null] = ACTIONS(5970), + [anon_sym_true] = ACTIONS(5970), + [anon_sym_false] = ACTIONS(5970), + [aux_sym__val_number_decimal_token1] = ACTIONS(5970), + [aux_sym__val_number_decimal_token2] = ACTIONS(5970), + [anon_sym_DOT2] = ACTIONS(5970), + [aux_sym__val_number_decimal_token3] = ACTIONS(5970), + [aux_sym__val_number_token1] = ACTIONS(5970), + [aux_sym__val_number_token2] = ACTIONS(5970), + [aux_sym__val_number_token3] = ACTIONS(5970), + [aux_sym__val_number_token4] = ACTIONS(5970), + [aux_sym__val_number_token5] = ACTIONS(5970), + [aux_sym__val_number_token6] = ACTIONS(5970), + [anon_sym_0b] = ACTIONS(5970), + [anon_sym_0o] = ACTIONS(5970), + [anon_sym_0x] = ACTIONS(5970), + [sym_val_date] = ACTIONS(5970), + [anon_sym_DQUOTE] = ACTIONS(5970), + [sym__str_single_quotes] = ACTIONS(5970), + [sym__str_back_ticks] = ACTIONS(5970), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5970), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5970), + [anon_sym_POUND] = ACTIONS(113), }, - [2013] = { - [sym_expr_unary] = STATE(5670), - [sym__expr_unary_minus] = STATE(5723), - [sym_expr_binary] = STATE(5670), - [sym__expr_binary_expression] = STATE(5709), - [sym_expr_parenthesized] = STATE(5670), - [sym__val_range] = STATE(10625), - [sym__value] = STATE(5670), - [sym_val_nothing] = STATE(5705), - [sym_val_bool] = STATE(5473), - [sym_val_variable] = STATE(5705), - [sym__var] = STATE(5098), - [sym_val_number] = STATE(5705), - [sym__val_number_decimal] = STATE(4336), - [sym__val_number] = STATE(5875), - [sym_val_duration] = STATE(5705), - [sym_val_filesize] = STATE(5705), - [sym_val_binary] = STATE(5705), - [sym_val_string] = STATE(5705), - [sym__str_double_quotes] = STATE(5788), - [sym_val_interpolated] = STATE(5705), - [sym__inter_single_quotes] = STATE(5899), - [sym__inter_double_quotes] = STATE(5903), - [sym_val_list] = STATE(5705), - [sym_val_record] = STATE(5705), - [sym_val_table] = STATE(5705), - [sym_val_closure] = STATE(5705), - [sym_unquoted] = STATE(5710), - [sym__unquoted_anonymous_prefix] = STATE(11373), - [sym_comment] = STATE(2013), - [anon_sym_LBRACK] = ACTIONS(3313), - [anon_sym_LPAREN] = ACTIONS(5527), - [anon_sym_DOLLAR] = ACTIONS(5529), - [anon_sym_DASH] = ACTIONS(4379), - [anon_sym_LBRACE] = ACTIONS(3323), - [anon_sym_DOT_DOT] = ACTIONS(5531), - [anon_sym_not] = ACTIONS(4383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5533), - [anon_sym_DOT_DOT_LT] = ACTIONS(5533), - [anon_sym_null] = ACTIONS(4387), - [anon_sym_true] = ACTIONS(4389), - [anon_sym_false] = ACTIONS(4389), - [aux_sym__val_number_decimal_token1] = ACTIONS(4391), - [aux_sym__val_number_decimal_token2] = ACTIONS(4393), - [anon_sym_DOT2] = ACTIONS(5535), - [aux_sym__val_number_decimal_token3] = ACTIONS(4397), - [aux_sym__val_number_token1] = ACTIONS(3341), - [aux_sym__val_number_token2] = ACTIONS(3341), - [aux_sym__val_number_token3] = ACTIONS(3341), - [aux_sym__val_number_token4] = ACTIONS(4399), - [aux_sym__val_number_token5] = ACTIONS(4399), - [aux_sym__val_number_token6] = ACTIONS(4399), - [anon_sym_0b] = ACTIONS(3345), - [anon_sym_0o] = ACTIONS(3347), - [anon_sym_0x] = ACTIONS(3347), - [sym_val_date] = ACTIONS(4401), - [anon_sym_DQUOTE] = ACTIONS(3351), - [sym__str_single_quotes] = ACTIONS(3353), - [sym__str_back_ticks] = ACTIONS(3353), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3355), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3357), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(3361), - [anon_sym_POUND] = ACTIONS(3), + [2292] = { + [sym_comment] = STATE(2292), + [anon_sym_export] = ACTIONS(5954), + [anon_sym_alias] = ACTIONS(5954), + [anon_sym_let] = ACTIONS(5954), + [anon_sym_let_DASHenv] = ACTIONS(5954), + [anon_sym_mut] = ACTIONS(5954), + [anon_sym_const] = ACTIONS(5954), + [anon_sym_SEMI] = ACTIONS(5954), + [sym_cmd_identifier] = ACTIONS(5954), + [anon_sym_LF] = ACTIONS(5956), + [anon_sym_def] = ACTIONS(5954), + [anon_sym_export_DASHenv] = ACTIONS(5954), + [anon_sym_extern] = ACTIONS(5954), + [anon_sym_module] = ACTIONS(5954), + [anon_sym_use] = ACTIONS(5954), + [anon_sym_LBRACK] = ACTIONS(5954), + [anon_sym_LPAREN] = ACTIONS(5954), + [anon_sym_RPAREN] = ACTIONS(5954), + [anon_sym_DOLLAR] = ACTIONS(5954), + [anon_sym_error] = ACTIONS(5954), + [anon_sym_DASH] = ACTIONS(5954), + [anon_sym_break] = ACTIONS(5954), + [anon_sym_continue] = ACTIONS(5954), + [anon_sym_for] = ACTIONS(5954), + [anon_sym_loop] = ACTIONS(5954), + [anon_sym_while] = ACTIONS(5954), + [anon_sym_do] = ACTIONS(5954), + [anon_sym_if] = ACTIONS(5954), + [anon_sym_match] = ACTIONS(5954), + [anon_sym_LBRACE] = ACTIONS(5954), + [anon_sym_RBRACE] = ACTIONS(5954), + [anon_sym_DOT_DOT] = ACTIONS(5954), + [anon_sym_try] = ACTIONS(5954), + [anon_sym_return] = ACTIONS(5954), + [anon_sym_source] = ACTIONS(5954), + [anon_sym_source_DASHenv] = ACTIONS(5954), + [anon_sym_register] = ACTIONS(5954), + [anon_sym_hide] = ACTIONS(5954), + [anon_sym_hide_DASHenv] = ACTIONS(5954), + [anon_sym_overlay] = ACTIONS(5954), + [anon_sym_where] = ACTIONS(5954), + [anon_sym_not] = ACTIONS(5954), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5954), + [anon_sym_DOT_DOT_LT] = ACTIONS(5954), + [anon_sym_null] = ACTIONS(5954), + [anon_sym_true] = ACTIONS(5954), + [anon_sym_false] = ACTIONS(5954), + [aux_sym__val_number_decimal_token1] = ACTIONS(5954), + [aux_sym__val_number_decimal_token2] = ACTIONS(5954), + [anon_sym_DOT2] = ACTIONS(5954), + [aux_sym__val_number_decimal_token3] = ACTIONS(5954), + [aux_sym__val_number_token1] = ACTIONS(5954), + [aux_sym__val_number_token2] = ACTIONS(5954), + [aux_sym__val_number_token3] = ACTIONS(5954), + [aux_sym__val_number_token4] = ACTIONS(5954), + [aux_sym__val_number_token5] = ACTIONS(5954), + [aux_sym__val_number_token6] = ACTIONS(5954), + [anon_sym_0b] = ACTIONS(5954), + [anon_sym_0o] = ACTIONS(5954), + [anon_sym_0x] = ACTIONS(5954), + [sym_val_date] = ACTIONS(5954), + [anon_sym_DQUOTE] = ACTIONS(5954), + [sym__str_single_quotes] = ACTIONS(5954), + [sym__str_back_ticks] = ACTIONS(5954), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5954), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5954), + [anon_sym_CARET] = ACTIONS(5954), + [anon_sym_POUND] = ACTIONS(113), }, - [2014] = { - [sym_expr_unary] = STATE(5670), - [sym__expr_unary_minus] = STATE(5723), - [sym_expr_binary] = STATE(5670), - [sym__expr_binary_expression] = STATE(5720), - [sym_expr_parenthesized] = STATE(5670), - [sym__val_range] = STATE(10625), - [sym__value] = STATE(5670), - [sym_val_nothing] = STATE(5705), - [sym_val_bool] = STATE(5473), - [sym_val_variable] = STATE(5705), - [sym__var] = STATE(5098), - [sym_val_number] = STATE(5705), - [sym__val_number_decimal] = STATE(4336), - [sym__val_number] = STATE(5875), - [sym_val_duration] = STATE(5705), - [sym_val_filesize] = STATE(5705), - [sym_val_binary] = STATE(5705), - [sym_val_string] = STATE(5705), - [sym__str_double_quotes] = STATE(5788), - [sym_val_interpolated] = STATE(5705), - [sym__inter_single_quotes] = STATE(5899), - [sym__inter_double_quotes] = STATE(5903), - [sym_val_list] = STATE(5705), - [sym_val_record] = STATE(5705), - [sym_val_table] = STATE(5705), - [sym_val_closure] = STATE(5705), - [sym_unquoted] = STATE(5728), - [sym__unquoted_anonymous_prefix] = STATE(11373), - [sym_comment] = STATE(2014), - [anon_sym_LBRACK] = ACTIONS(3313), - [anon_sym_LPAREN] = ACTIONS(5527), - [anon_sym_DOLLAR] = ACTIONS(5529), - [anon_sym_DASH] = ACTIONS(4379), - [anon_sym_LBRACE] = ACTIONS(3323), - [anon_sym_DOT_DOT] = ACTIONS(5531), - [anon_sym_not] = ACTIONS(4383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5533), - [anon_sym_DOT_DOT_LT] = ACTIONS(5533), - [anon_sym_null] = ACTIONS(4387), - [anon_sym_true] = ACTIONS(4389), - [anon_sym_false] = ACTIONS(4389), - [aux_sym__val_number_decimal_token1] = ACTIONS(4391), - [aux_sym__val_number_decimal_token2] = ACTIONS(4393), - [anon_sym_DOT2] = ACTIONS(5535), - [aux_sym__val_number_decimal_token3] = ACTIONS(4397), - [aux_sym__val_number_token1] = ACTIONS(3341), - [aux_sym__val_number_token2] = ACTIONS(3341), - [aux_sym__val_number_token3] = ACTIONS(3341), - [aux_sym__val_number_token4] = ACTIONS(4399), - [aux_sym__val_number_token5] = ACTIONS(4399), - [aux_sym__val_number_token6] = ACTIONS(4399), - [anon_sym_0b] = ACTIONS(3345), - [anon_sym_0o] = ACTIONS(3347), - [anon_sym_0x] = ACTIONS(3347), - [sym_val_date] = ACTIONS(4401), - [anon_sym_DQUOTE] = ACTIONS(3351), - [sym__str_single_quotes] = ACTIONS(3353), - [sym__str_back_ticks] = ACTIONS(3353), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3355), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3357), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(3361), - [anon_sym_POUND] = ACTIONS(3), + [2293] = { + [sym_comment] = STATE(2293), + [anon_sym_export] = ACTIONS(5974), + [anon_sym_alias] = ACTIONS(5974), + [anon_sym_let] = ACTIONS(5974), + [anon_sym_let_DASHenv] = ACTIONS(5974), + [anon_sym_mut] = ACTIONS(5974), + [anon_sym_const] = ACTIONS(5974), + [anon_sym_SEMI] = ACTIONS(5976), + [sym_cmd_identifier] = ACTIONS(5974), + [anon_sym_LF] = ACTIONS(5979), + [anon_sym_def] = ACTIONS(5974), + [anon_sym_export_DASHenv] = ACTIONS(5974), + [anon_sym_extern] = ACTIONS(5974), + [anon_sym_module] = ACTIONS(5974), + [anon_sym_use] = ACTIONS(5974), + [anon_sym_LBRACK] = ACTIONS(5974), + [anon_sym_LPAREN] = ACTIONS(5974), + [anon_sym_RPAREN] = ACTIONS(5982), + [anon_sym_DOLLAR] = ACTIONS(5974), + [anon_sym_error] = ACTIONS(5974), + [anon_sym_DASH] = ACTIONS(5974), + [anon_sym_break] = ACTIONS(5974), + [anon_sym_continue] = ACTIONS(5974), + [anon_sym_for] = ACTIONS(5974), + [anon_sym_loop] = ACTIONS(5974), + [anon_sym_while] = ACTIONS(5974), + [anon_sym_do] = ACTIONS(5974), + [anon_sym_if] = ACTIONS(5974), + [anon_sym_match] = ACTIONS(5974), + [anon_sym_LBRACE] = ACTIONS(5974), + [anon_sym_RBRACE] = ACTIONS(5982), + [anon_sym_DOT_DOT] = ACTIONS(5974), + [anon_sym_try] = ACTIONS(5974), + [anon_sym_return] = ACTIONS(5974), + [anon_sym_source] = ACTIONS(5974), + [anon_sym_source_DASHenv] = ACTIONS(5974), + [anon_sym_register] = ACTIONS(5974), + [anon_sym_hide] = ACTIONS(5974), + [anon_sym_hide_DASHenv] = ACTIONS(5974), + [anon_sym_overlay] = ACTIONS(5974), + [anon_sym_where] = ACTIONS(5974), + [anon_sym_not] = ACTIONS(5974), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5974), + [anon_sym_DOT_DOT_LT] = ACTIONS(5974), + [anon_sym_null] = ACTIONS(5974), + [anon_sym_true] = ACTIONS(5974), + [anon_sym_false] = ACTIONS(5974), + [aux_sym__val_number_decimal_token1] = ACTIONS(5974), + [aux_sym__val_number_decimal_token2] = ACTIONS(5974), + [anon_sym_DOT2] = ACTIONS(5974), + [aux_sym__val_number_decimal_token3] = ACTIONS(5974), + [aux_sym__val_number_token1] = ACTIONS(5974), + [aux_sym__val_number_token2] = ACTIONS(5974), + [aux_sym__val_number_token3] = ACTIONS(5974), + [aux_sym__val_number_token4] = ACTIONS(5974), + [aux_sym__val_number_token5] = ACTIONS(5974), + [aux_sym__val_number_token6] = ACTIONS(5974), + [anon_sym_0b] = ACTIONS(5974), + [anon_sym_0o] = ACTIONS(5974), + [anon_sym_0x] = ACTIONS(5974), + [sym_val_date] = ACTIONS(5974), + [anon_sym_DQUOTE] = ACTIONS(5974), + [sym__str_single_quotes] = ACTIONS(5974), + [sym__str_back_ticks] = ACTIONS(5974), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5974), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5974), + [anon_sym_CARET] = ACTIONS(5974), + [anon_sym_POUND] = ACTIONS(113), }, - [2015] = { - [sym_expr_unary] = STATE(5670), - [sym__expr_unary_minus] = STATE(5723), - [sym_expr_binary] = STATE(5670), - [sym__expr_binary_expression] = STATE(5731), - [sym_expr_parenthesized] = STATE(5670), - [sym__val_range] = STATE(10625), - [sym__value] = STATE(5670), - [sym_val_nothing] = STATE(5705), - [sym_val_bool] = STATE(5473), - [sym_val_variable] = STATE(5705), - [sym__var] = STATE(5098), - [sym_val_number] = STATE(5705), - [sym__val_number_decimal] = STATE(4336), - [sym__val_number] = STATE(5875), - [sym_val_duration] = STATE(5705), - [sym_val_filesize] = STATE(5705), - [sym_val_binary] = STATE(5705), - [sym_val_string] = STATE(5705), - [sym__str_double_quotes] = STATE(5788), - [sym_val_interpolated] = STATE(5705), - [sym__inter_single_quotes] = STATE(5899), - [sym__inter_double_quotes] = STATE(5903), - [sym_val_list] = STATE(5705), - [sym_val_record] = STATE(5705), - [sym_val_table] = STATE(5705), - [sym_val_closure] = STATE(5705), - [sym_unquoted] = STATE(5732), - [sym__unquoted_anonymous_prefix] = STATE(11373), - [sym_comment] = STATE(2015), - [anon_sym_LBRACK] = ACTIONS(3313), - [anon_sym_LPAREN] = ACTIONS(5527), - [anon_sym_DOLLAR] = ACTIONS(5529), - [anon_sym_DASH] = ACTIONS(4379), - [anon_sym_LBRACE] = ACTIONS(3323), - [anon_sym_DOT_DOT] = ACTIONS(5531), - [anon_sym_not] = ACTIONS(4383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5533), - [anon_sym_DOT_DOT_LT] = ACTIONS(5533), - [anon_sym_null] = ACTIONS(4387), - [anon_sym_true] = ACTIONS(4389), - [anon_sym_false] = ACTIONS(4389), - [aux_sym__val_number_decimal_token1] = ACTIONS(4391), - [aux_sym__val_number_decimal_token2] = ACTIONS(4393), - [anon_sym_DOT2] = ACTIONS(5535), - [aux_sym__val_number_decimal_token3] = ACTIONS(4397), - [aux_sym__val_number_token1] = ACTIONS(3341), - [aux_sym__val_number_token2] = ACTIONS(3341), - [aux_sym__val_number_token3] = ACTIONS(3341), - [aux_sym__val_number_token4] = ACTIONS(4399), - [aux_sym__val_number_token5] = ACTIONS(4399), - [aux_sym__val_number_token6] = ACTIONS(4399), - [anon_sym_0b] = ACTIONS(3345), - [anon_sym_0o] = ACTIONS(3347), - [anon_sym_0x] = ACTIONS(3347), - [sym_val_date] = ACTIONS(4401), - [anon_sym_DQUOTE] = ACTIONS(3351), - [sym__str_single_quotes] = ACTIONS(3353), - [sym__str_back_ticks] = ACTIONS(3353), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3355), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3357), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(3361), - [anon_sym_POUND] = ACTIONS(3), + [2294] = { + [sym_comment] = STATE(2294), + [ts_builtin_sym_end] = ACTIONS(1227), + [anon_sym_export] = ACTIONS(1225), + [anon_sym_alias] = ACTIONS(1225), + [anon_sym_let] = ACTIONS(1225), + [anon_sym_let_DASHenv] = ACTIONS(1225), + [anon_sym_mut] = ACTIONS(1225), + [anon_sym_const] = ACTIONS(1225), + [anon_sym_SEMI] = ACTIONS(1225), + [sym_cmd_identifier] = ACTIONS(1225), + [anon_sym_LF] = ACTIONS(1227), + [anon_sym_def] = ACTIONS(1225), + [anon_sym_export_DASHenv] = ACTIONS(1225), + [anon_sym_extern] = ACTIONS(1225), + [anon_sym_module] = ACTIONS(1225), + [anon_sym_use] = ACTIONS(1225), + [anon_sym_LBRACK] = ACTIONS(1225), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_DOLLAR] = ACTIONS(1225), + [anon_sym_error] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_break] = ACTIONS(1225), + [anon_sym_continue] = ACTIONS(1225), + [anon_sym_for] = ACTIONS(1225), + [anon_sym_loop] = ACTIONS(1225), + [anon_sym_while] = ACTIONS(1225), + [anon_sym_do] = ACTIONS(1225), + [anon_sym_if] = ACTIONS(1225), + [anon_sym_match] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_DOT_DOT] = ACTIONS(1225), + [anon_sym_try] = ACTIONS(1225), + [anon_sym_return] = ACTIONS(1225), + [anon_sym_source] = ACTIONS(1225), + [anon_sym_source_DASHenv] = ACTIONS(1225), + [anon_sym_register] = ACTIONS(1225), + [anon_sym_hide] = ACTIONS(1225), + [anon_sym_hide_DASHenv] = ACTIONS(1225), + [anon_sym_overlay] = ACTIONS(1225), + [anon_sym_STAR] = ACTIONS(1225), + [anon_sym_where] = ACTIONS(1225), + [anon_sym_not] = ACTIONS(1225), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1225), + [anon_sym_DOT_DOT_LT] = ACTIONS(1225), + [anon_sym_null] = ACTIONS(1225), + [anon_sym_true] = ACTIONS(1225), + [anon_sym_false] = ACTIONS(1225), + [aux_sym__val_number_decimal_token1] = ACTIONS(1225), + [aux_sym__val_number_decimal_token2] = ACTIONS(1225), + [anon_sym_DOT2] = ACTIONS(1225), + [aux_sym__val_number_decimal_token3] = ACTIONS(1225), + [aux_sym__val_number_token1] = ACTIONS(1225), + [aux_sym__val_number_token2] = ACTIONS(1225), + [aux_sym__val_number_token3] = ACTIONS(1225), + [aux_sym__val_number_token4] = ACTIONS(1225), + [aux_sym__val_number_token5] = ACTIONS(1225), + [aux_sym__val_number_token6] = ACTIONS(1225), + [anon_sym_0b] = ACTIONS(1225), + [anon_sym_0o] = ACTIONS(1225), + [anon_sym_0x] = ACTIONS(1225), + [sym_val_date] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1225), + [sym__str_single_quotes] = ACTIONS(1225), + [sym__str_back_ticks] = ACTIONS(1225), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1225), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1225), + [anon_sym_CARET] = ACTIONS(1225), + [anon_sym_POUND] = ACTIONS(113), }, - [2016] = { - [sym_expr_unary] = STATE(5670), - [sym__expr_unary_minus] = STATE(5723), - [sym_expr_binary] = STATE(5670), - [sym__expr_binary_expression] = STATE(5738), - [sym_expr_parenthesized] = STATE(5670), - [sym__val_range] = STATE(10625), - [sym__value] = STATE(5670), - [sym_val_nothing] = STATE(5705), - [sym_val_bool] = STATE(5473), - [sym_val_variable] = STATE(5705), - [sym__var] = STATE(5098), - [sym_val_number] = STATE(5705), - [sym__val_number_decimal] = STATE(4336), - [sym__val_number] = STATE(5875), - [sym_val_duration] = STATE(5705), - [sym_val_filesize] = STATE(5705), - [sym_val_binary] = STATE(5705), - [sym_val_string] = STATE(5705), - [sym__str_double_quotes] = STATE(5788), - [sym_val_interpolated] = STATE(5705), - [sym__inter_single_quotes] = STATE(5899), - [sym__inter_double_quotes] = STATE(5903), - [sym_val_list] = STATE(5705), - [sym_val_record] = STATE(5705), - [sym_val_table] = STATE(5705), - [sym_val_closure] = STATE(5705), - [sym_unquoted] = STATE(5741), - [sym__unquoted_anonymous_prefix] = STATE(11373), - [sym_comment] = STATE(2016), - [anon_sym_LBRACK] = ACTIONS(3313), - [anon_sym_LPAREN] = ACTIONS(5527), - [anon_sym_DOLLAR] = ACTIONS(5529), - [anon_sym_DASH] = ACTIONS(4379), - [anon_sym_LBRACE] = ACTIONS(3323), - [anon_sym_DOT_DOT] = ACTIONS(5531), - [anon_sym_not] = ACTIONS(4383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5533), - [anon_sym_DOT_DOT_LT] = ACTIONS(5533), - [anon_sym_null] = ACTIONS(4387), - [anon_sym_true] = ACTIONS(4389), - [anon_sym_false] = ACTIONS(4389), - [aux_sym__val_number_decimal_token1] = ACTIONS(4391), - [aux_sym__val_number_decimal_token2] = ACTIONS(4393), - [anon_sym_DOT2] = ACTIONS(5535), - [aux_sym__val_number_decimal_token3] = ACTIONS(4397), - [aux_sym__val_number_token1] = ACTIONS(3341), - [aux_sym__val_number_token2] = ACTIONS(3341), - [aux_sym__val_number_token3] = ACTIONS(3341), - [aux_sym__val_number_token4] = ACTIONS(4399), - [aux_sym__val_number_token5] = ACTIONS(4399), - [aux_sym__val_number_token6] = ACTIONS(4399), - [anon_sym_0b] = ACTIONS(3345), - [anon_sym_0o] = ACTIONS(3347), - [anon_sym_0x] = ACTIONS(3347), - [sym_val_date] = ACTIONS(4401), - [anon_sym_DQUOTE] = ACTIONS(3351), - [sym__str_single_quotes] = ACTIONS(3353), - [sym__str_back_ticks] = ACTIONS(3353), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3355), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3357), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(3361), + [2295] = { + [sym_comment] = STATE(2295), + [anon_sym_LBRACK] = ACTIONS(913), + [anon_sym_LPAREN] = ACTIONS(913), + [anon_sym_DOLLAR] = ACTIONS(911), + [anon_sym_GT] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_in] = ACTIONS(911), + [anon_sym_LBRACE] = ACTIONS(913), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(911), + [anon_sym_STAR_STAR] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_SLASH] = ACTIONS(911), + [anon_sym_mod] = ACTIONS(913), + [anon_sym_SLASH_SLASH] = ACTIONS(913), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_bit_DASHshl] = ACTIONS(913), + [anon_sym_bit_DASHshr] = ACTIONS(913), + [anon_sym_EQ_EQ] = ACTIONS(913), + [anon_sym_BANG_EQ] = ACTIONS(913), + [anon_sym_LT2] = ACTIONS(911), + [anon_sym_LT_EQ] = ACTIONS(913), + [anon_sym_GT_EQ] = ACTIONS(913), + [anon_sym_not_DASHin] = ACTIONS(913), + [anon_sym_starts_DASHwith] = ACTIONS(913), + [anon_sym_ends_DASHwith] = ACTIONS(913), + [anon_sym_EQ_TILDE] = ACTIONS(913), + [anon_sym_BANG_TILDE] = ACTIONS(913), + [anon_sym_bit_DASHand] = ACTIONS(913), + [anon_sym_bit_DASHxor] = ACTIONS(913), + [anon_sym_bit_DASHor] = ACTIONS(913), + [anon_sym_and] = ACTIONS(913), + [anon_sym_xor] = ACTIONS(913), + [anon_sym_or] = ACTIONS(913), + [anon_sym_not] = ACTIONS(911), + [anon_sym_DOT_DOT2] = ACTIONS(911), + [anon_sym_DOT] = ACTIONS(5984), + [anon_sym_DOT_DOT_EQ] = ACTIONS(911), + [anon_sym_DOT_DOT_LT] = ACTIONS(911), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(913), + [anon_sym_DOT_DOT_LT2] = ACTIONS(913), + [aux_sym__immediate_decimal_token2] = ACTIONS(5987), + [anon_sym_null] = ACTIONS(913), + [anon_sym_true] = ACTIONS(913), + [anon_sym_false] = ACTIONS(913), + [aux_sym__val_number_decimal_token1] = ACTIONS(911), + [aux_sym__val_number_decimal_token2] = ACTIONS(913), + [anon_sym_DOT2] = ACTIONS(911), + [aux_sym__val_number_decimal_token3] = ACTIONS(913), + [aux_sym__val_number_token1] = ACTIONS(913), + [aux_sym__val_number_token2] = ACTIONS(913), + [aux_sym__val_number_token3] = ACTIONS(913), + [aux_sym__val_number_token4] = ACTIONS(913), + [aux_sym__val_number_token5] = ACTIONS(913), + [aux_sym__val_number_token6] = ACTIONS(913), + [anon_sym_0b] = ACTIONS(911), + [sym_filesize_unit] = ACTIONS(911), + [sym_duration_unit] = ACTIONS(913), + [anon_sym_0o] = ACTIONS(911), + [anon_sym_0x] = ACTIONS(911), + [sym_val_date] = ACTIONS(913), + [anon_sym_DQUOTE] = ACTIONS(913), + [sym__str_single_quotes] = ACTIONS(913), + [sym__str_back_ticks] = ACTIONS(913), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(913), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(913), + [aux_sym_unquoted_token5] = ACTIONS(911), [anon_sym_POUND] = ACTIONS(3), }, - [2017] = { - [sym_expr_unary] = STATE(5670), - [sym__expr_unary_minus] = STATE(5723), - [sym_expr_binary] = STATE(5670), - [sym__expr_binary_expression] = STATE(5742), - [sym_expr_parenthesized] = STATE(5670), - [sym__val_range] = STATE(10625), - [sym__value] = STATE(5670), - [sym_val_nothing] = STATE(5705), - [sym_val_bool] = STATE(5473), - [sym_val_variable] = STATE(5705), - [sym__var] = STATE(5098), - [sym_val_number] = STATE(5705), - [sym__val_number_decimal] = STATE(4336), - [sym__val_number] = STATE(5875), - [sym_val_duration] = STATE(5705), - [sym_val_filesize] = STATE(5705), - [sym_val_binary] = STATE(5705), - [sym_val_string] = STATE(5705), - [sym__str_double_quotes] = STATE(5788), - [sym_val_interpolated] = STATE(5705), - [sym__inter_single_quotes] = STATE(5899), - [sym__inter_double_quotes] = STATE(5903), - [sym_val_list] = STATE(5705), - [sym_val_record] = STATE(5705), - [sym_val_table] = STATE(5705), - [sym_val_closure] = STATE(5705), - [sym_unquoted] = STATE(5750), - [sym__unquoted_anonymous_prefix] = STATE(11373), - [sym_comment] = STATE(2017), - [anon_sym_LBRACK] = ACTIONS(3313), - [anon_sym_LPAREN] = ACTIONS(5527), - [anon_sym_DOLLAR] = ACTIONS(5529), - [anon_sym_DASH] = ACTIONS(4379), - [anon_sym_LBRACE] = ACTIONS(3323), - [anon_sym_DOT_DOT] = ACTIONS(5531), - [anon_sym_not] = ACTIONS(4383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5533), - [anon_sym_DOT_DOT_LT] = ACTIONS(5533), - [anon_sym_null] = ACTIONS(4387), - [anon_sym_true] = ACTIONS(4389), - [anon_sym_false] = ACTIONS(4389), - [aux_sym__val_number_decimal_token1] = ACTIONS(4391), - [aux_sym__val_number_decimal_token2] = ACTIONS(4393), - [anon_sym_DOT2] = ACTIONS(5535), - [aux_sym__val_number_decimal_token3] = ACTIONS(4397), - [aux_sym__val_number_token1] = ACTIONS(3341), - [aux_sym__val_number_token2] = ACTIONS(3341), - [aux_sym__val_number_token3] = ACTIONS(3341), - [aux_sym__val_number_token4] = ACTIONS(4399), - [aux_sym__val_number_token5] = ACTIONS(4399), - [aux_sym__val_number_token6] = ACTIONS(4399), - [anon_sym_0b] = ACTIONS(3345), - [anon_sym_0o] = ACTIONS(3347), - [anon_sym_0x] = ACTIONS(3347), - [sym_val_date] = ACTIONS(4401), - [anon_sym_DQUOTE] = ACTIONS(3351), - [sym__str_single_quotes] = ACTIONS(3353), - [sym__str_back_ticks] = ACTIONS(3353), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3355), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3357), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(3361), - [anon_sym_POUND] = ACTIONS(3), + [2296] = { + [sym_comment] = STATE(2296), + [anon_sym_export] = ACTIONS(5989), + [anon_sym_alias] = ACTIONS(5989), + [anon_sym_let] = ACTIONS(5989), + [anon_sym_let_DASHenv] = ACTIONS(5989), + [anon_sym_mut] = ACTIONS(5989), + [anon_sym_const] = ACTIONS(5989), + [anon_sym_SEMI] = ACTIONS(5989), + [sym_cmd_identifier] = ACTIONS(5989), + [anon_sym_LF] = ACTIONS(5991), + [anon_sym_def] = ACTIONS(5989), + [anon_sym_export_DASHenv] = ACTIONS(5989), + [anon_sym_extern] = ACTIONS(5989), + [anon_sym_module] = ACTIONS(5989), + [anon_sym_use] = ACTIONS(5989), + [anon_sym_LBRACK] = ACTIONS(5989), + [anon_sym_LPAREN] = ACTIONS(5989), + [anon_sym_RPAREN] = ACTIONS(5989), + [anon_sym_DOLLAR] = ACTIONS(5989), + [anon_sym_error] = ACTIONS(5989), + [anon_sym_DASH] = ACTIONS(5989), + [anon_sym_break] = ACTIONS(5989), + [anon_sym_continue] = ACTIONS(5989), + [anon_sym_for] = ACTIONS(5989), + [anon_sym_loop] = ACTIONS(5989), + [anon_sym_while] = ACTIONS(5989), + [anon_sym_do] = ACTIONS(5989), + [anon_sym_if] = ACTIONS(5989), + [anon_sym_match] = ACTIONS(5989), + [anon_sym_LBRACE] = ACTIONS(5989), + [anon_sym_RBRACE] = ACTIONS(5989), + [anon_sym_DOT_DOT] = ACTIONS(5989), + [anon_sym_try] = ACTIONS(5989), + [anon_sym_return] = ACTIONS(5989), + [anon_sym_source] = ACTIONS(5989), + [anon_sym_source_DASHenv] = ACTIONS(5989), + [anon_sym_register] = ACTIONS(5989), + [anon_sym_hide] = ACTIONS(5989), + [anon_sym_hide_DASHenv] = ACTIONS(5989), + [anon_sym_overlay] = ACTIONS(5989), + [anon_sym_where] = ACTIONS(5989), + [anon_sym_not] = ACTIONS(5989), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5989), + [anon_sym_DOT_DOT_LT] = ACTIONS(5989), + [anon_sym_null] = ACTIONS(5989), + [anon_sym_true] = ACTIONS(5989), + [anon_sym_false] = ACTIONS(5989), + [aux_sym__val_number_decimal_token1] = ACTIONS(5989), + [aux_sym__val_number_decimal_token2] = ACTIONS(5989), + [anon_sym_DOT2] = ACTIONS(5989), + [aux_sym__val_number_decimal_token3] = ACTIONS(5989), + [aux_sym__val_number_token1] = ACTIONS(5989), + [aux_sym__val_number_token2] = ACTIONS(5989), + [aux_sym__val_number_token3] = ACTIONS(5989), + [aux_sym__val_number_token4] = ACTIONS(5989), + [aux_sym__val_number_token5] = ACTIONS(5989), + [aux_sym__val_number_token6] = ACTIONS(5989), + [anon_sym_0b] = ACTIONS(5989), + [anon_sym_0o] = ACTIONS(5989), + [anon_sym_0x] = ACTIONS(5989), + [sym_val_date] = ACTIONS(5989), + [anon_sym_DQUOTE] = ACTIONS(5989), + [sym__str_single_quotes] = ACTIONS(5989), + [sym__str_back_ticks] = ACTIONS(5989), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5989), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5989), + [anon_sym_CARET] = ACTIONS(5989), + [anon_sym_POUND] = ACTIONS(113), }, - [2018] = { - [sym_expr_unary] = STATE(5670), - [sym__expr_unary_minus] = STATE(5723), - [sym_expr_binary] = STATE(5670), - [sym__expr_binary_expression] = STATE(5751), - [sym_expr_parenthesized] = STATE(5670), - [sym__val_range] = STATE(10625), - [sym__value] = STATE(5670), - [sym_val_nothing] = STATE(5705), - [sym_val_bool] = STATE(5473), - [sym_val_variable] = STATE(5705), - [sym__var] = STATE(5098), - [sym_val_number] = STATE(5705), - [sym__val_number_decimal] = STATE(4336), - [sym__val_number] = STATE(5875), - [sym_val_duration] = STATE(5705), - [sym_val_filesize] = STATE(5705), - [sym_val_binary] = STATE(5705), - [sym_val_string] = STATE(5705), - [sym__str_double_quotes] = STATE(5788), - [sym_val_interpolated] = STATE(5705), - [sym__inter_single_quotes] = STATE(5899), - [sym__inter_double_quotes] = STATE(5903), - [sym_val_list] = STATE(5705), - [sym_val_record] = STATE(5705), - [sym_val_table] = STATE(5705), - [sym_val_closure] = STATE(5705), - [sym_unquoted] = STATE(5752), - [sym__unquoted_anonymous_prefix] = STATE(11373), - [sym_comment] = STATE(2018), - [anon_sym_LBRACK] = ACTIONS(3313), - [anon_sym_LPAREN] = ACTIONS(5527), - [anon_sym_DOLLAR] = ACTIONS(5529), - [anon_sym_DASH] = ACTIONS(4379), - [anon_sym_LBRACE] = ACTIONS(3323), - [anon_sym_DOT_DOT] = ACTIONS(5531), - [anon_sym_not] = ACTIONS(4383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5533), - [anon_sym_DOT_DOT_LT] = ACTIONS(5533), - [anon_sym_null] = ACTIONS(4387), - [anon_sym_true] = ACTIONS(4389), - [anon_sym_false] = ACTIONS(4389), - [aux_sym__val_number_decimal_token1] = ACTIONS(4391), - [aux_sym__val_number_decimal_token2] = ACTIONS(4393), - [anon_sym_DOT2] = ACTIONS(5535), - [aux_sym__val_number_decimal_token3] = ACTIONS(4397), - [aux_sym__val_number_token1] = ACTIONS(3341), - [aux_sym__val_number_token2] = ACTIONS(3341), - [aux_sym__val_number_token3] = ACTIONS(3341), - [aux_sym__val_number_token4] = ACTIONS(4399), - [aux_sym__val_number_token5] = ACTIONS(4399), - [aux_sym__val_number_token6] = ACTIONS(4399), - [anon_sym_0b] = ACTIONS(3345), - [anon_sym_0o] = ACTIONS(3347), - [anon_sym_0x] = ACTIONS(3347), - [sym_val_date] = ACTIONS(4401), - [anon_sym_DQUOTE] = ACTIONS(3351), - [sym__str_single_quotes] = ACTIONS(3353), - [sym__str_back_ticks] = ACTIONS(3353), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3355), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3357), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(3361), - [anon_sym_POUND] = ACTIONS(3), + [2297] = { + [sym_comment] = STATE(2297), + [anon_sym_export] = ACTIONS(5993), + [anon_sym_alias] = ACTIONS(5993), + [anon_sym_let] = ACTIONS(5993), + [anon_sym_let_DASHenv] = ACTIONS(5993), + [anon_sym_mut] = ACTIONS(5993), + [anon_sym_const] = ACTIONS(5993), + [anon_sym_SEMI] = ACTIONS(5993), + [sym_cmd_identifier] = ACTIONS(5993), + [anon_sym_LF] = ACTIONS(5995), + [anon_sym_def] = ACTIONS(5993), + [anon_sym_export_DASHenv] = ACTIONS(5993), + [anon_sym_extern] = ACTIONS(5993), + [anon_sym_module] = ACTIONS(5993), + [anon_sym_use] = ACTIONS(5993), + [anon_sym_LBRACK] = ACTIONS(5993), + [anon_sym_LPAREN] = ACTIONS(5993), + [anon_sym_RPAREN] = ACTIONS(5993), + [anon_sym_DOLLAR] = ACTIONS(5993), + [anon_sym_error] = ACTIONS(5993), + [anon_sym_DASH] = ACTIONS(5993), + [anon_sym_break] = ACTIONS(5993), + [anon_sym_continue] = ACTIONS(5993), + [anon_sym_for] = ACTIONS(5993), + [anon_sym_loop] = ACTIONS(5993), + [anon_sym_while] = ACTIONS(5993), + [anon_sym_do] = ACTIONS(5993), + [anon_sym_if] = ACTIONS(5993), + [anon_sym_match] = ACTIONS(5993), + [anon_sym_LBRACE] = ACTIONS(5993), + [anon_sym_RBRACE] = ACTIONS(5993), + [anon_sym_DOT_DOT] = ACTIONS(5993), + [anon_sym_try] = ACTIONS(5993), + [anon_sym_return] = ACTIONS(5993), + [anon_sym_source] = ACTIONS(5993), + [anon_sym_source_DASHenv] = ACTIONS(5993), + [anon_sym_register] = ACTIONS(5993), + [anon_sym_hide] = ACTIONS(5993), + [anon_sym_hide_DASHenv] = ACTIONS(5993), + [anon_sym_overlay] = ACTIONS(5993), + [anon_sym_where] = ACTIONS(5993), + [anon_sym_not] = ACTIONS(5993), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5993), + [anon_sym_DOT_DOT_LT] = ACTIONS(5993), + [anon_sym_null] = ACTIONS(5993), + [anon_sym_true] = ACTIONS(5993), + [anon_sym_false] = ACTIONS(5993), + [aux_sym__val_number_decimal_token1] = ACTIONS(5993), + [aux_sym__val_number_decimal_token2] = ACTIONS(5993), + [anon_sym_DOT2] = ACTIONS(5993), + [aux_sym__val_number_decimal_token3] = ACTIONS(5993), + [aux_sym__val_number_token1] = ACTIONS(5993), + [aux_sym__val_number_token2] = ACTIONS(5993), + [aux_sym__val_number_token3] = ACTIONS(5993), + [aux_sym__val_number_token4] = ACTIONS(5993), + [aux_sym__val_number_token5] = ACTIONS(5993), + [aux_sym__val_number_token6] = ACTIONS(5993), + [anon_sym_0b] = ACTIONS(5993), + [anon_sym_0o] = ACTIONS(5993), + [anon_sym_0x] = ACTIONS(5993), + [sym_val_date] = ACTIONS(5993), + [anon_sym_DQUOTE] = ACTIONS(5993), + [sym__str_single_quotes] = ACTIONS(5993), + [sym__str_back_ticks] = ACTIONS(5993), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5993), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5993), + [anon_sym_CARET] = ACTIONS(5993), + [anon_sym_POUND] = ACTIONS(113), }, - [2019] = { - [sym_expr_unary] = STATE(5670), - [sym__expr_unary_minus] = STATE(5723), - [sym_expr_binary] = STATE(5670), - [sym__expr_binary_expression] = STATE(5755), - [sym_expr_parenthesized] = STATE(5670), - [sym__val_range] = STATE(10625), - [sym__value] = STATE(5670), - [sym_val_nothing] = STATE(5705), - [sym_val_bool] = STATE(5473), - [sym_val_variable] = STATE(5705), - [sym__var] = STATE(5098), - [sym_val_number] = STATE(5705), - [sym__val_number_decimal] = STATE(4336), - [sym__val_number] = STATE(5875), - [sym_val_duration] = STATE(5705), - [sym_val_filesize] = STATE(5705), - [sym_val_binary] = STATE(5705), - [sym_val_string] = STATE(5705), - [sym__str_double_quotes] = STATE(5788), - [sym_val_interpolated] = STATE(5705), - [sym__inter_single_quotes] = STATE(5899), - [sym__inter_double_quotes] = STATE(5903), - [sym_val_list] = STATE(5705), - [sym_val_record] = STATE(5705), - [sym_val_table] = STATE(5705), - [sym_val_closure] = STATE(5705), - [sym_unquoted] = STATE(5761), - [sym__unquoted_anonymous_prefix] = STATE(11373), - [sym_comment] = STATE(2019), - [anon_sym_LBRACK] = ACTIONS(3313), - [anon_sym_LPAREN] = ACTIONS(5527), - [anon_sym_DOLLAR] = ACTIONS(5529), - [anon_sym_DASH] = ACTIONS(4379), - [anon_sym_LBRACE] = ACTIONS(3323), - [anon_sym_DOT_DOT] = ACTIONS(5531), - [anon_sym_not] = ACTIONS(4383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5533), - [anon_sym_DOT_DOT_LT] = ACTIONS(5533), - [anon_sym_null] = ACTIONS(4387), - [anon_sym_true] = ACTIONS(4389), - [anon_sym_false] = ACTIONS(4389), - [aux_sym__val_number_decimal_token1] = ACTIONS(4391), - [aux_sym__val_number_decimal_token2] = ACTIONS(4393), - [anon_sym_DOT2] = ACTIONS(5535), - [aux_sym__val_number_decimal_token3] = ACTIONS(4397), - [aux_sym__val_number_token1] = ACTIONS(3341), - [aux_sym__val_number_token2] = ACTIONS(3341), - [aux_sym__val_number_token3] = ACTIONS(3341), - [aux_sym__val_number_token4] = ACTIONS(4399), - [aux_sym__val_number_token5] = ACTIONS(4399), - [aux_sym__val_number_token6] = ACTIONS(4399), - [anon_sym_0b] = ACTIONS(3345), - [anon_sym_0o] = ACTIONS(3347), - [anon_sym_0x] = ACTIONS(3347), - [sym_val_date] = ACTIONS(4401), - [anon_sym_DQUOTE] = ACTIONS(3351), - [sym__str_single_quotes] = ACTIONS(3353), - [sym__str_back_ticks] = ACTIONS(3353), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3355), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3357), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(3361), - [anon_sym_POUND] = ACTIONS(3), + [2298] = { + [sym_comment] = STATE(2298), + [anon_sym_export] = ACTIONS(5997), + [anon_sym_alias] = ACTIONS(5997), + [anon_sym_let] = ACTIONS(5997), + [anon_sym_let_DASHenv] = ACTIONS(5997), + [anon_sym_mut] = ACTIONS(5997), + [anon_sym_const] = ACTIONS(5997), + [anon_sym_SEMI] = ACTIONS(5997), + [sym_cmd_identifier] = ACTIONS(5997), + [anon_sym_LF] = ACTIONS(5999), + [anon_sym_def] = ACTIONS(5997), + [anon_sym_export_DASHenv] = ACTIONS(5997), + [anon_sym_extern] = ACTIONS(5997), + [anon_sym_module] = ACTIONS(5997), + [anon_sym_use] = ACTIONS(5997), + [anon_sym_LBRACK] = ACTIONS(5997), + [anon_sym_LPAREN] = ACTIONS(5997), + [anon_sym_RPAREN] = ACTIONS(5997), + [anon_sym_DOLLAR] = ACTIONS(5997), + [anon_sym_error] = ACTIONS(5997), + [anon_sym_DASH] = ACTIONS(5997), + [anon_sym_break] = ACTIONS(5997), + [anon_sym_continue] = ACTIONS(5997), + [anon_sym_for] = ACTIONS(5997), + [anon_sym_loop] = ACTIONS(5997), + [anon_sym_while] = ACTIONS(5997), + [anon_sym_do] = ACTIONS(5997), + [anon_sym_if] = ACTIONS(5997), + [anon_sym_match] = ACTIONS(5997), + [anon_sym_LBRACE] = ACTIONS(5997), + [anon_sym_RBRACE] = ACTIONS(5997), + [anon_sym_DOT_DOT] = ACTIONS(5997), + [anon_sym_try] = ACTIONS(5997), + [anon_sym_return] = ACTIONS(5997), + [anon_sym_source] = ACTIONS(5997), + [anon_sym_source_DASHenv] = ACTIONS(5997), + [anon_sym_register] = ACTIONS(5997), + [anon_sym_hide] = ACTIONS(5997), + [anon_sym_hide_DASHenv] = ACTIONS(5997), + [anon_sym_overlay] = ACTIONS(5997), + [anon_sym_where] = ACTIONS(5997), + [anon_sym_not] = ACTIONS(5997), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5997), + [anon_sym_DOT_DOT_LT] = ACTIONS(5997), + [anon_sym_null] = ACTIONS(5997), + [anon_sym_true] = ACTIONS(5997), + [anon_sym_false] = ACTIONS(5997), + [aux_sym__val_number_decimal_token1] = ACTIONS(5997), + [aux_sym__val_number_decimal_token2] = ACTIONS(5997), + [anon_sym_DOT2] = ACTIONS(5997), + [aux_sym__val_number_decimal_token3] = ACTIONS(5997), + [aux_sym__val_number_token1] = ACTIONS(5997), + [aux_sym__val_number_token2] = ACTIONS(5997), + [aux_sym__val_number_token3] = ACTIONS(5997), + [aux_sym__val_number_token4] = ACTIONS(5997), + [aux_sym__val_number_token5] = ACTIONS(5997), + [aux_sym__val_number_token6] = ACTIONS(5997), + [anon_sym_0b] = ACTIONS(5997), + [anon_sym_0o] = ACTIONS(5997), + [anon_sym_0x] = ACTIONS(5997), + [sym_val_date] = ACTIONS(5997), + [anon_sym_DQUOTE] = ACTIONS(5997), + [sym__str_single_quotes] = ACTIONS(5997), + [sym__str_back_ticks] = ACTIONS(5997), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5997), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5997), + [anon_sym_CARET] = ACTIONS(5997), + [anon_sym_POUND] = ACTIONS(113), }, - [2020] = { - [sym_expr_unary] = STATE(5670), - [sym__expr_unary_minus] = STATE(5723), - [sym_expr_binary] = STATE(5670), - [sym__expr_binary_expression] = STATE(5779), - [sym_expr_parenthesized] = STATE(5670), - [sym__val_range] = STATE(10625), - [sym__value] = STATE(5670), - [sym_val_nothing] = STATE(5705), - [sym_val_bool] = STATE(5473), - [sym_val_variable] = STATE(5705), - [sym__var] = STATE(5098), - [sym_val_number] = STATE(5705), - [sym__val_number_decimal] = STATE(4336), - [sym__val_number] = STATE(5875), - [sym_val_duration] = STATE(5705), - [sym_val_filesize] = STATE(5705), - [sym_val_binary] = STATE(5705), - [sym_val_string] = STATE(5705), - [sym__str_double_quotes] = STATE(5788), - [sym_val_interpolated] = STATE(5705), - [sym__inter_single_quotes] = STATE(5899), - [sym__inter_double_quotes] = STATE(5903), - [sym_val_list] = STATE(5705), - [sym_val_record] = STATE(5705), - [sym_val_table] = STATE(5705), - [sym_val_closure] = STATE(5705), - [sym_unquoted] = STATE(5824), - [sym__unquoted_anonymous_prefix] = STATE(11373), - [sym_comment] = STATE(2020), - [anon_sym_LBRACK] = ACTIONS(3313), - [anon_sym_LPAREN] = ACTIONS(5527), - [anon_sym_DOLLAR] = ACTIONS(5529), - [anon_sym_DASH] = ACTIONS(4379), - [anon_sym_LBRACE] = ACTIONS(3323), - [anon_sym_DOT_DOT] = ACTIONS(5531), - [anon_sym_not] = ACTIONS(4383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5533), - [anon_sym_DOT_DOT_LT] = ACTIONS(5533), - [anon_sym_null] = ACTIONS(4387), - [anon_sym_true] = ACTIONS(4389), - [anon_sym_false] = ACTIONS(4389), - [aux_sym__val_number_decimal_token1] = ACTIONS(4391), - [aux_sym__val_number_decimal_token2] = ACTIONS(4393), - [anon_sym_DOT2] = ACTIONS(5535), - [aux_sym__val_number_decimal_token3] = ACTIONS(4397), - [aux_sym__val_number_token1] = ACTIONS(3341), - [aux_sym__val_number_token2] = ACTIONS(3341), - [aux_sym__val_number_token3] = ACTIONS(3341), - [aux_sym__val_number_token4] = ACTIONS(4399), - [aux_sym__val_number_token5] = ACTIONS(4399), - [aux_sym__val_number_token6] = ACTIONS(4399), - [anon_sym_0b] = ACTIONS(3345), - [anon_sym_0o] = ACTIONS(3347), - [anon_sym_0x] = ACTIONS(3347), - [sym_val_date] = ACTIONS(4401), - [anon_sym_DQUOTE] = ACTIONS(3351), - [sym__str_single_quotes] = ACTIONS(3353), - [sym__str_back_ticks] = ACTIONS(3353), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3355), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3357), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(3361), - [anon_sym_POUND] = ACTIONS(3), + [2299] = { + [sym_comment] = STATE(2299), + [anon_sym_export] = ACTIONS(6001), + [anon_sym_alias] = ACTIONS(6001), + [anon_sym_let] = ACTIONS(6001), + [anon_sym_let_DASHenv] = ACTIONS(6001), + [anon_sym_mut] = ACTIONS(6001), + [anon_sym_const] = ACTIONS(6001), + [anon_sym_SEMI] = ACTIONS(6001), + [sym_cmd_identifier] = ACTIONS(6001), + [anon_sym_LF] = ACTIONS(6003), + [anon_sym_def] = ACTIONS(6001), + [anon_sym_export_DASHenv] = ACTIONS(6001), + [anon_sym_extern] = ACTIONS(6001), + [anon_sym_module] = ACTIONS(6001), + [anon_sym_use] = ACTIONS(6001), + [anon_sym_LBRACK] = ACTIONS(6001), + [anon_sym_LPAREN] = ACTIONS(6001), + [anon_sym_RPAREN] = ACTIONS(6001), + [anon_sym_DOLLAR] = ACTIONS(6001), + [anon_sym_error] = ACTIONS(6001), + [anon_sym_DASH] = ACTIONS(6001), + [anon_sym_break] = ACTIONS(6001), + [anon_sym_continue] = ACTIONS(6001), + [anon_sym_for] = ACTIONS(6001), + [anon_sym_loop] = ACTIONS(6001), + [anon_sym_while] = ACTIONS(6001), + [anon_sym_do] = ACTIONS(6001), + [anon_sym_if] = ACTIONS(6001), + [anon_sym_match] = ACTIONS(6001), + [anon_sym_LBRACE] = ACTIONS(6001), + [anon_sym_RBRACE] = ACTIONS(6001), + [anon_sym_DOT_DOT] = ACTIONS(6001), + [anon_sym_try] = ACTIONS(6001), + [anon_sym_return] = ACTIONS(6001), + [anon_sym_source] = ACTIONS(6001), + [anon_sym_source_DASHenv] = ACTIONS(6001), + [anon_sym_register] = ACTIONS(6001), + [anon_sym_hide] = ACTIONS(6001), + [anon_sym_hide_DASHenv] = ACTIONS(6001), + [anon_sym_overlay] = ACTIONS(6001), + [anon_sym_where] = ACTIONS(6001), + [anon_sym_not] = ACTIONS(6001), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6001), + [anon_sym_DOT_DOT_LT] = ACTIONS(6001), + [anon_sym_null] = ACTIONS(6001), + [anon_sym_true] = ACTIONS(6001), + [anon_sym_false] = ACTIONS(6001), + [aux_sym__val_number_decimal_token1] = ACTIONS(6001), + [aux_sym__val_number_decimal_token2] = ACTIONS(6001), + [anon_sym_DOT2] = ACTIONS(6001), + [aux_sym__val_number_decimal_token3] = ACTIONS(6001), + [aux_sym__val_number_token1] = ACTIONS(6001), + [aux_sym__val_number_token2] = ACTIONS(6001), + [aux_sym__val_number_token3] = ACTIONS(6001), + [aux_sym__val_number_token4] = ACTIONS(6001), + [aux_sym__val_number_token5] = ACTIONS(6001), + [aux_sym__val_number_token6] = ACTIONS(6001), + [anon_sym_0b] = ACTIONS(6001), + [anon_sym_0o] = ACTIONS(6001), + [anon_sym_0x] = ACTIONS(6001), + [sym_val_date] = ACTIONS(6001), + [anon_sym_DQUOTE] = ACTIONS(6001), + [sym__str_single_quotes] = ACTIONS(6001), + [sym__str_back_ticks] = ACTIONS(6001), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6001), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6001), + [anon_sym_CARET] = ACTIONS(6001), + [anon_sym_POUND] = ACTIONS(113), }, - [2021] = { - [sym_expr_unary] = STATE(5670), - [sym__expr_unary_minus] = STATE(5723), - [sym_expr_binary] = STATE(5670), - [sym__expr_binary_expression] = STATE(5862), - [sym_expr_parenthesized] = STATE(5670), - [sym__val_range] = STATE(10625), - [sym__value] = STATE(5670), - [sym_val_nothing] = STATE(5705), - [sym_val_bool] = STATE(5473), - [sym_val_variable] = STATE(5705), - [sym__var] = STATE(5098), - [sym_val_number] = STATE(5705), - [sym__val_number_decimal] = STATE(4336), - [sym__val_number] = STATE(5875), - [sym_val_duration] = STATE(5705), - [sym_val_filesize] = STATE(5705), - [sym_val_binary] = STATE(5705), - [sym_val_string] = STATE(5705), - [sym__str_double_quotes] = STATE(5788), - [sym_val_interpolated] = STATE(5705), - [sym__inter_single_quotes] = STATE(5899), - [sym__inter_double_quotes] = STATE(5903), - [sym_val_list] = STATE(5705), - [sym_val_record] = STATE(5705), - [sym_val_table] = STATE(5705), - [sym_val_closure] = STATE(5705), - [sym_unquoted] = STATE(5871), - [sym__unquoted_anonymous_prefix] = STATE(11373), - [sym_comment] = STATE(2021), - [anon_sym_LBRACK] = ACTIONS(3313), - [anon_sym_LPAREN] = ACTIONS(5527), - [anon_sym_DOLLAR] = ACTIONS(5529), - [anon_sym_DASH] = ACTIONS(4379), - [anon_sym_LBRACE] = ACTIONS(3323), - [anon_sym_DOT_DOT] = ACTIONS(5531), - [anon_sym_not] = ACTIONS(4383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5533), - [anon_sym_DOT_DOT_LT] = ACTIONS(5533), - [anon_sym_null] = ACTIONS(4387), - [anon_sym_true] = ACTIONS(4389), - [anon_sym_false] = ACTIONS(4389), - [aux_sym__val_number_decimal_token1] = ACTIONS(4391), - [aux_sym__val_number_decimal_token2] = ACTIONS(4393), - [anon_sym_DOT2] = ACTIONS(5535), - [aux_sym__val_number_decimal_token3] = ACTIONS(4397), - [aux_sym__val_number_token1] = ACTIONS(3341), - [aux_sym__val_number_token2] = ACTIONS(3341), - [aux_sym__val_number_token3] = ACTIONS(3341), - [aux_sym__val_number_token4] = ACTIONS(4399), - [aux_sym__val_number_token5] = ACTIONS(4399), - [aux_sym__val_number_token6] = ACTIONS(4399), - [anon_sym_0b] = ACTIONS(3345), - [anon_sym_0o] = ACTIONS(3347), - [anon_sym_0x] = ACTIONS(3347), - [sym_val_date] = ACTIONS(4401), - [anon_sym_DQUOTE] = ACTIONS(3351), - [sym__str_single_quotes] = ACTIONS(3353), - [sym__str_back_ticks] = ACTIONS(3353), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3355), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3357), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(3361), - [anon_sym_POUND] = ACTIONS(3), + [2300] = { + [sym_comment] = STATE(2300), + [anon_sym_export] = ACTIONS(6005), + [anon_sym_alias] = ACTIONS(6005), + [anon_sym_let] = ACTIONS(6005), + [anon_sym_let_DASHenv] = ACTIONS(6005), + [anon_sym_mut] = ACTIONS(6005), + [anon_sym_const] = ACTIONS(6005), + [anon_sym_SEMI] = ACTIONS(6005), + [sym_cmd_identifier] = ACTIONS(6005), + [anon_sym_LF] = ACTIONS(6007), + [anon_sym_def] = ACTIONS(6005), + [anon_sym_export_DASHenv] = ACTIONS(6005), + [anon_sym_extern] = ACTIONS(6005), + [anon_sym_module] = ACTIONS(6005), + [anon_sym_use] = ACTIONS(6005), + [anon_sym_LBRACK] = ACTIONS(6005), + [anon_sym_LPAREN] = ACTIONS(6005), + [anon_sym_RPAREN] = ACTIONS(6005), + [anon_sym_DOLLAR] = ACTIONS(6005), + [anon_sym_error] = ACTIONS(6005), + [anon_sym_DASH] = ACTIONS(6005), + [anon_sym_break] = ACTIONS(6005), + [anon_sym_continue] = ACTIONS(6005), + [anon_sym_for] = ACTIONS(6005), + [anon_sym_loop] = ACTIONS(6005), + [anon_sym_while] = ACTIONS(6005), + [anon_sym_do] = ACTIONS(6005), + [anon_sym_if] = ACTIONS(6005), + [anon_sym_match] = ACTIONS(6005), + [anon_sym_LBRACE] = ACTIONS(6005), + [anon_sym_RBRACE] = ACTIONS(6005), + [anon_sym_DOT_DOT] = ACTIONS(6005), + [anon_sym_try] = ACTIONS(6005), + [anon_sym_return] = ACTIONS(6005), + [anon_sym_source] = ACTIONS(6005), + [anon_sym_source_DASHenv] = ACTIONS(6005), + [anon_sym_register] = ACTIONS(6005), + [anon_sym_hide] = ACTIONS(6005), + [anon_sym_hide_DASHenv] = ACTIONS(6005), + [anon_sym_overlay] = ACTIONS(6005), + [anon_sym_where] = ACTIONS(6005), + [anon_sym_not] = ACTIONS(6005), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6005), + [anon_sym_DOT_DOT_LT] = ACTIONS(6005), + [anon_sym_null] = ACTIONS(6005), + [anon_sym_true] = ACTIONS(6005), + [anon_sym_false] = ACTIONS(6005), + [aux_sym__val_number_decimal_token1] = ACTIONS(6005), + [aux_sym__val_number_decimal_token2] = ACTIONS(6005), + [anon_sym_DOT2] = ACTIONS(6005), + [aux_sym__val_number_decimal_token3] = ACTIONS(6005), + [aux_sym__val_number_token1] = ACTIONS(6005), + [aux_sym__val_number_token2] = ACTIONS(6005), + [aux_sym__val_number_token3] = ACTIONS(6005), + [aux_sym__val_number_token4] = ACTIONS(6005), + [aux_sym__val_number_token5] = ACTIONS(6005), + [aux_sym__val_number_token6] = ACTIONS(6005), + [anon_sym_0b] = ACTIONS(6005), + [anon_sym_0o] = ACTIONS(6005), + [anon_sym_0x] = ACTIONS(6005), + [sym_val_date] = ACTIONS(6005), + [anon_sym_DQUOTE] = ACTIONS(6005), + [sym__str_single_quotes] = ACTIONS(6005), + [sym__str_back_ticks] = ACTIONS(6005), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6005), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6005), + [anon_sym_CARET] = ACTIONS(6005), + [anon_sym_POUND] = ACTIONS(113), }, - [2022] = { - [sym_expr_unary] = STATE(5670), - [sym__expr_unary_minus] = STATE(5723), - [sym_expr_binary] = STATE(5670), - [sym__expr_binary_expression] = STATE(5872), - [sym_expr_parenthesized] = STATE(5670), - [sym__val_range] = STATE(10625), - [sym__value] = STATE(5670), - [sym_val_nothing] = STATE(5705), - [sym_val_bool] = STATE(5473), - [sym_val_variable] = STATE(5705), - [sym__var] = STATE(5098), - [sym_val_number] = STATE(5705), - [sym__val_number_decimal] = STATE(4336), - [sym__val_number] = STATE(5875), - [sym_val_duration] = STATE(5705), - [sym_val_filesize] = STATE(5705), - [sym_val_binary] = STATE(5705), - [sym_val_string] = STATE(5705), - [sym__str_double_quotes] = STATE(5788), - [sym_val_interpolated] = STATE(5705), - [sym__inter_single_quotes] = STATE(5899), - [sym__inter_double_quotes] = STATE(5903), - [sym_val_list] = STATE(5705), - [sym_val_record] = STATE(5705), - [sym_val_table] = STATE(5705), - [sym_val_closure] = STATE(5705), - [sym_unquoted] = STATE(5719), - [sym__unquoted_anonymous_prefix] = STATE(11373), - [sym_comment] = STATE(2022), - [anon_sym_LBRACK] = ACTIONS(3313), - [anon_sym_LPAREN] = ACTIONS(5527), - [anon_sym_DOLLAR] = ACTIONS(5529), - [anon_sym_DASH] = ACTIONS(4379), - [anon_sym_LBRACE] = ACTIONS(3323), - [anon_sym_DOT_DOT] = ACTIONS(5531), - [anon_sym_not] = ACTIONS(4383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5533), - [anon_sym_DOT_DOT_LT] = ACTIONS(5533), - [anon_sym_null] = ACTIONS(4387), - [anon_sym_true] = ACTIONS(4389), - [anon_sym_false] = ACTIONS(4389), - [aux_sym__val_number_decimal_token1] = ACTIONS(4391), - [aux_sym__val_number_decimal_token2] = ACTIONS(4393), - [anon_sym_DOT2] = ACTIONS(5535), - [aux_sym__val_number_decimal_token3] = ACTIONS(4397), - [aux_sym__val_number_token1] = ACTIONS(3341), - [aux_sym__val_number_token2] = ACTIONS(3341), - [aux_sym__val_number_token3] = ACTIONS(3341), - [aux_sym__val_number_token4] = ACTIONS(4399), - [aux_sym__val_number_token5] = ACTIONS(4399), - [aux_sym__val_number_token6] = ACTIONS(4399), - [anon_sym_0b] = ACTIONS(3345), - [anon_sym_0o] = ACTIONS(3347), - [anon_sym_0x] = ACTIONS(3347), - [sym_val_date] = ACTIONS(4401), - [anon_sym_DQUOTE] = ACTIONS(3351), - [sym__str_single_quotes] = ACTIONS(3353), - [sym__str_back_ticks] = ACTIONS(3353), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3355), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3357), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(3361), - [anon_sym_POUND] = ACTIONS(3), + [2301] = { + [sym_comment] = STATE(2301), + [ts_builtin_sym_end] = ACTIONS(1074), + [anon_sym_SEMI] = ACTIONS(1072), + [anon_sym_LF] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1072), + [anon_sym_LPAREN] = ACTIONS(1072), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_DOLLAR] = ACTIONS(1072), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_DASH_DASH] = ACTIONS(1072), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_in] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_DOT_DOT] = ACTIONS(1072), + [anon_sym_STAR] = ACTIONS(1076), + [anon_sym_STAR_STAR] = ACTIONS(1076), + [anon_sym_PLUS_PLUS] = ACTIONS(1076), + [anon_sym_SLASH] = ACTIONS(1076), + [anon_sym_mod] = ACTIONS(1076), + [anon_sym_SLASH_SLASH] = ACTIONS(1076), + [anon_sym_PLUS] = ACTIONS(1076), + [anon_sym_bit_DASHshl] = ACTIONS(1076), + [anon_sym_bit_DASHshr] = ACTIONS(1076), + [anon_sym_EQ_EQ] = ACTIONS(1076), + [anon_sym_BANG_EQ] = ACTIONS(1076), + [anon_sym_LT2] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1076), + [anon_sym_GT_EQ] = ACTIONS(1076), + [anon_sym_not_DASHin] = ACTIONS(1076), + [anon_sym_starts_DASHwith] = ACTIONS(1076), + [anon_sym_ends_DASHwith] = ACTIONS(1076), + [anon_sym_EQ_TILDE] = ACTIONS(1076), + [anon_sym_BANG_TILDE] = ACTIONS(1076), + [anon_sym_bit_DASHand] = ACTIONS(1076), + [anon_sym_bit_DASHxor] = ACTIONS(1076), + [anon_sym_bit_DASHor] = ACTIONS(1076), + [anon_sym_and] = ACTIONS(1076), + [anon_sym_xor] = ACTIONS(1076), + [anon_sym_or] = ACTIONS(1076), + [anon_sym_not] = ACTIONS(1072), + [anon_sym_DOT_DOT2] = ACTIONS(6009), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1072), + [anon_sym_DOT_DOT_LT] = ACTIONS(1072), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(6011), + [anon_sym_DOT_DOT_LT2] = ACTIONS(6011), + [anon_sym_null] = ACTIONS(1072), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [aux_sym__val_number_decimal_token1] = ACTIONS(1072), + [aux_sym__val_number_decimal_token2] = ACTIONS(1072), + [anon_sym_DOT2] = ACTIONS(1072), + [aux_sym__val_number_decimal_token3] = ACTIONS(1072), + [aux_sym__val_number_token1] = ACTIONS(1072), + [aux_sym__val_number_token2] = ACTIONS(1072), + [aux_sym__val_number_token3] = ACTIONS(1072), + [aux_sym__val_number_token4] = ACTIONS(1072), + [aux_sym__val_number_token5] = ACTIONS(1072), + [aux_sym__val_number_token6] = ACTIONS(1072), + [anon_sym_0b] = ACTIONS(1072), + [anon_sym_0o] = ACTIONS(1072), + [anon_sym_0x] = ACTIONS(1072), + [sym_val_date] = ACTIONS(1072), + [anon_sym_DQUOTE] = ACTIONS(1072), + [sym__str_single_quotes] = ACTIONS(1072), + [sym__str_back_ticks] = ACTIONS(1072), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1072), + [anon_sym_POUND] = ACTIONS(113), }, - [2023] = { - [sym_expr_unary] = STATE(5670), - [sym__expr_unary_minus] = STATE(5723), - [sym_expr_binary] = STATE(5670), - [sym__expr_binary_expression] = STATE(5721), - [sym_expr_parenthesized] = STATE(5670), - [sym__val_range] = STATE(10625), - [sym__value] = STATE(5670), - [sym_val_nothing] = STATE(5705), - [sym_val_bool] = STATE(5473), - [sym_val_variable] = STATE(5705), - [sym__var] = STATE(5098), - [sym_val_number] = STATE(5705), - [sym__val_number_decimal] = STATE(4336), - [sym__val_number] = STATE(5875), - [sym_val_duration] = STATE(5705), - [sym_val_filesize] = STATE(5705), - [sym_val_binary] = STATE(5705), - [sym_val_string] = STATE(5705), - [sym__str_double_quotes] = STATE(5788), - [sym_val_interpolated] = STATE(5705), - [sym__inter_single_quotes] = STATE(5899), - [sym__inter_double_quotes] = STATE(5903), - [sym_val_list] = STATE(5705), - [sym_val_record] = STATE(5705), - [sym_val_table] = STATE(5705), - [sym_val_closure] = STATE(5705), - [sym_unquoted] = STATE(5691), - [sym__unquoted_anonymous_prefix] = STATE(11373), - [sym_comment] = STATE(2023), - [anon_sym_LBRACK] = ACTIONS(3313), - [anon_sym_LPAREN] = ACTIONS(5527), - [anon_sym_DOLLAR] = ACTIONS(5529), - [anon_sym_DASH] = ACTIONS(4379), - [anon_sym_LBRACE] = ACTIONS(3323), - [anon_sym_DOT_DOT] = ACTIONS(5531), - [anon_sym_not] = ACTIONS(4383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5533), - [anon_sym_DOT_DOT_LT] = ACTIONS(5533), - [anon_sym_null] = ACTIONS(4387), - [anon_sym_true] = ACTIONS(4389), - [anon_sym_false] = ACTIONS(4389), - [aux_sym__val_number_decimal_token1] = ACTIONS(4391), - [aux_sym__val_number_decimal_token2] = ACTIONS(4393), - [anon_sym_DOT2] = ACTIONS(5535), - [aux_sym__val_number_decimal_token3] = ACTIONS(4397), - [aux_sym__val_number_token1] = ACTIONS(3341), - [aux_sym__val_number_token2] = ACTIONS(3341), - [aux_sym__val_number_token3] = ACTIONS(3341), - [aux_sym__val_number_token4] = ACTIONS(4399), - [aux_sym__val_number_token5] = ACTIONS(4399), - [aux_sym__val_number_token6] = ACTIONS(4399), - [anon_sym_0b] = ACTIONS(3345), - [anon_sym_0o] = ACTIONS(3347), - [anon_sym_0x] = ACTIONS(3347), - [sym_val_date] = ACTIONS(4401), - [anon_sym_DQUOTE] = ACTIONS(3351), - [sym__str_single_quotes] = ACTIONS(3353), - [sym__str_back_ticks] = ACTIONS(3353), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3355), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3357), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(3361), - [anon_sym_POUND] = ACTIONS(3), + [2302] = { + [sym_comment] = STATE(2302), + [anon_sym_export] = ACTIONS(6013), + [anon_sym_alias] = ACTIONS(6013), + [anon_sym_let] = ACTIONS(6013), + [anon_sym_let_DASHenv] = ACTIONS(6013), + [anon_sym_mut] = ACTIONS(6013), + [anon_sym_const] = ACTIONS(6013), + [anon_sym_SEMI] = ACTIONS(6013), + [sym_cmd_identifier] = ACTIONS(6013), + [anon_sym_LF] = ACTIONS(6015), + [anon_sym_def] = ACTIONS(6013), + [anon_sym_export_DASHenv] = ACTIONS(6013), + [anon_sym_extern] = ACTIONS(6013), + [anon_sym_module] = ACTIONS(6013), + [anon_sym_use] = ACTIONS(6013), + [anon_sym_LBRACK] = ACTIONS(6013), + [anon_sym_LPAREN] = ACTIONS(6013), + [anon_sym_RPAREN] = ACTIONS(6013), + [anon_sym_DOLLAR] = ACTIONS(6013), + [anon_sym_error] = ACTIONS(6013), + [anon_sym_DASH] = ACTIONS(6013), + [anon_sym_break] = ACTIONS(6013), + [anon_sym_continue] = ACTIONS(6013), + [anon_sym_for] = ACTIONS(6013), + [anon_sym_loop] = ACTIONS(6013), + [anon_sym_while] = ACTIONS(6013), + [anon_sym_do] = ACTIONS(6013), + [anon_sym_if] = ACTIONS(6013), + [anon_sym_match] = ACTIONS(6013), + [anon_sym_LBRACE] = ACTIONS(6013), + [anon_sym_RBRACE] = ACTIONS(6013), + [anon_sym_DOT_DOT] = ACTIONS(6013), + [anon_sym_try] = ACTIONS(6013), + [anon_sym_return] = ACTIONS(6013), + [anon_sym_source] = ACTIONS(6013), + [anon_sym_source_DASHenv] = ACTIONS(6013), + [anon_sym_register] = ACTIONS(6013), + [anon_sym_hide] = ACTIONS(6013), + [anon_sym_hide_DASHenv] = ACTIONS(6013), + [anon_sym_overlay] = ACTIONS(6013), + [anon_sym_where] = ACTIONS(6013), + [anon_sym_not] = ACTIONS(6013), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6013), + [anon_sym_DOT_DOT_LT] = ACTIONS(6013), + [anon_sym_null] = ACTIONS(6013), + [anon_sym_true] = ACTIONS(6013), + [anon_sym_false] = ACTIONS(6013), + [aux_sym__val_number_decimal_token1] = ACTIONS(6013), + [aux_sym__val_number_decimal_token2] = ACTIONS(6013), + [anon_sym_DOT2] = ACTIONS(6013), + [aux_sym__val_number_decimal_token3] = ACTIONS(6013), + [aux_sym__val_number_token1] = ACTIONS(6013), + [aux_sym__val_number_token2] = ACTIONS(6013), + [aux_sym__val_number_token3] = ACTIONS(6013), + [aux_sym__val_number_token4] = ACTIONS(6013), + [aux_sym__val_number_token5] = ACTIONS(6013), + [aux_sym__val_number_token6] = ACTIONS(6013), + [anon_sym_0b] = ACTIONS(6013), + [anon_sym_0o] = ACTIONS(6013), + [anon_sym_0x] = ACTIONS(6013), + [sym_val_date] = ACTIONS(6013), + [anon_sym_DQUOTE] = ACTIONS(6013), + [sym__str_single_quotes] = ACTIONS(6013), + [sym__str_back_ticks] = ACTIONS(6013), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6013), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6013), + [anon_sym_CARET] = ACTIONS(6013), + [anon_sym_POUND] = ACTIONS(113), }, - [2024] = { - [sym_expr_unary] = STATE(5670), - [sym__expr_unary_minus] = STATE(5723), - [sym_expr_binary] = STATE(5670), - [sym__expr_binary_expression] = STATE(5695), - [sym_expr_parenthesized] = STATE(5670), - [sym__val_range] = STATE(10625), - [sym__value] = STATE(5670), - [sym_val_nothing] = STATE(5705), - [sym_val_bool] = STATE(5473), - [sym_val_variable] = STATE(5705), - [sym__var] = STATE(5098), - [sym_val_number] = STATE(5705), - [sym__val_number_decimal] = STATE(4336), - [sym__val_number] = STATE(5875), - [sym_val_duration] = STATE(5705), - [sym_val_filesize] = STATE(5705), - [sym_val_binary] = STATE(5705), - [sym_val_string] = STATE(5705), - [sym__str_double_quotes] = STATE(5788), - [sym_val_interpolated] = STATE(5705), - [sym__inter_single_quotes] = STATE(5899), - [sym__inter_double_quotes] = STATE(5903), - [sym_val_list] = STATE(5705), - [sym_val_record] = STATE(5705), - [sym_val_table] = STATE(5705), - [sym_val_closure] = STATE(5705), - [sym_unquoted] = STATE(5711), - [sym__unquoted_anonymous_prefix] = STATE(11373), - [sym_comment] = STATE(2024), - [anon_sym_LBRACK] = ACTIONS(3313), - [anon_sym_LPAREN] = ACTIONS(5527), - [anon_sym_DOLLAR] = ACTIONS(5529), - [anon_sym_DASH] = ACTIONS(4379), - [anon_sym_LBRACE] = ACTIONS(3323), - [anon_sym_DOT_DOT] = ACTIONS(5531), - [anon_sym_not] = ACTIONS(4383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5533), - [anon_sym_DOT_DOT_LT] = ACTIONS(5533), - [anon_sym_null] = ACTIONS(4387), - [anon_sym_true] = ACTIONS(4389), - [anon_sym_false] = ACTIONS(4389), - [aux_sym__val_number_decimal_token1] = ACTIONS(4391), - [aux_sym__val_number_decimal_token2] = ACTIONS(4393), - [anon_sym_DOT2] = ACTIONS(5535), - [aux_sym__val_number_decimal_token3] = ACTIONS(4397), - [aux_sym__val_number_token1] = ACTIONS(3341), - [aux_sym__val_number_token2] = ACTIONS(3341), - [aux_sym__val_number_token3] = ACTIONS(3341), - [aux_sym__val_number_token4] = ACTIONS(4399), - [aux_sym__val_number_token5] = ACTIONS(4399), - [aux_sym__val_number_token6] = ACTIONS(4399), - [anon_sym_0b] = ACTIONS(3345), - [anon_sym_0o] = ACTIONS(3347), - [anon_sym_0x] = ACTIONS(3347), - [sym_val_date] = ACTIONS(4401), - [anon_sym_DQUOTE] = ACTIONS(3351), - [sym__str_single_quotes] = ACTIONS(3353), - [sym__str_back_ticks] = ACTIONS(3353), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3355), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3357), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(3361), - [anon_sym_POUND] = ACTIONS(3), + [2303] = { + [sym_comment] = STATE(2303), + [anon_sym_export] = ACTIONS(6017), + [anon_sym_alias] = ACTIONS(6017), + [anon_sym_let] = ACTIONS(6017), + [anon_sym_let_DASHenv] = ACTIONS(6017), + [anon_sym_mut] = ACTIONS(6017), + [anon_sym_const] = ACTIONS(6017), + [anon_sym_SEMI] = ACTIONS(6017), + [sym_cmd_identifier] = ACTIONS(6017), + [anon_sym_LF] = ACTIONS(6019), + [anon_sym_def] = ACTIONS(6017), + [anon_sym_export_DASHenv] = ACTIONS(6017), + [anon_sym_extern] = ACTIONS(6017), + [anon_sym_module] = ACTIONS(6017), + [anon_sym_use] = ACTIONS(6017), + [anon_sym_LBRACK] = ACTIONS(6017), + [anon_sym_LPAREN] = ACTIONS(6017), + [anon_sym_RPAREN] = ACTIONS(6017), + [anon_sym_DOLLAR] = ACTIONS(6017), + [anon_sym_error] = ACTIONS(6017), + [anon_sym_DASH] = ACTIONS(6017), + [anon_sym_break] = ACTIONS(6017), + [anon_sym_continue] = ACTIONS(6017), + [anon_sym_for] = ACTIONS(6017), + [anon_sym_loop] = ACTIONS(6017), + [anon_sym_while] = ACTIONS(6017), + [anon_sym_do] = ACTIONS(6017), + [anon_sym_if] = ACTIONS(6017), + [anon_sym_match] = ACTIONS(6017), + [anon_sym_LBRACE] = ACTIONS(6017), + [anon_sym_RBRACE] = ACTIONS(6017), + [anon_sym_DOT_DOT] = ACTIONS(6017), + [anon_sym_try] = ACTIONS(6017), + [anon_sym_return] = ACTIONS(6017), + [anon_sym_source] = ACTIONS(6017), + [anon_sym_source_DASHenv] = ACTIONS(6017), + [anon_sym_register] = ACTIONS(6017), + [anon_sym_hide] = ACTIONS(6017), + [anon_sym_hide_DASHenv] = ACTIONS(6017), + [anon_sym_overlay] = ACTIONS(6017), + [anon_sym_where] = ACTIONS(6017), + [anon_sym_not] = ACTIONS(6017), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6017), + [anon_sym_DOT_DOT_LT] = ACTIONS(6017), + [anon_sym_null] = ACTIONS(6017), + [anon_sym_true] = ACTIONS(6017), + [anon_sym_false] = ACTIONS(6017), + [aux_sym__val_number_decimal_token1] = ACTIONS(6017), + [aux_sym__val_number_decimal_token2] = ACTIONS(6017), + [anon_sym_DOT2] = ACTIONS(6017), + [aux_sym__val_number_decimal_token3] = ACTIONS(6017), + [aux_sym__val_number_token1] = ACTIONS(6017), + [aux_sym__val_number_token2] = ACTIONS(6017), + [aux_sym__val_number_token3] = ACTIONS(6017), + [aux_sym__val_number_token4] = ACTIONS(6017), + [aux_sym__val_number_token5] = ACTIONS(6017), + [aux_sym__val_number_token6] = ACTIONS(6017), + [anon_sym_0b] = ACTIONS(6017), + [anon_sym_0o] = ACTIONS(6017), + [anon_sym_0x] = ACTIONS(6017), + [sym_val_date] = ACTIONS(6017), + [anon_sym_DQUOTE] = ACTIONS(6017), + [sym__str_single_quotes] = ACTIONS(6017), + [sym__str_back_ticks] = ACTIONS(6017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6017), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6017), + [anon_sym_CARET] = ACTIONS(6017), + [anon_sym_POUND] = ACTIONS(113), }, - [2025] = { - [sym_expr_unary] = STATE(671), - [sym__expr_unary_minus] = STATE(650), - [sym_expr_binary] = STATE(671), - [sym__expr_binary_expression] = STATE(673), - [sym_expr_parenthesized] = STATE(671), - [sym__val_range] = STATE(10629), - [sym__value] = STATE(671), - [sym_val_nothing] = STATE(661), - [sym_val_bool] = STATE(605), - [sym_val_variable] = STATE(661), - [sym__var] = STATE(410), - [sym_val_number] = STATE(661), - [sym__val_number_decimal] = STATE(287), - [sym__val_number] = STATE(663), - [sym_val_duration] = STATE(661), - [sym_val_filesize] = STATE(661), - [sym_val_binary] = STATE(661), - [sym_val_string] = STATE(661), - [sym__str_double_quotes] = STATE(645), - [sym_val_interpolated] = STATE(661), - [sym__inter_single_quotes] = STATE(613), - [sym__inter_double_quotes] = STATE(615), - [sym_val_list] = STATE(661), - [sym_val_record] = STATE(661), - [sym_val_table] = STATE(661), - [sym_val_closure] = STATE(661), - [sym_unquoted] = STATE(678), - [sym__unquoted_anonymous_prefix] = STATE(10914), - [sym_comment] = STATE(2025), - [anon_sym_LBRACK] = ACTIONS(5537), - [anon_sym_LPAREN] = ACTIONS(5539), - [anon_sym_DOLLAR] = ACTIONS(5541), - [anon_sym_DASH] = ACTIONS(5543), - [anon_sym_LBRACE] = ACTIONS(5545), - [anon_sym_DOT_DOT] = ACTIONS(5547), - [anon_sym_not] = ACTIONS(5549), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5551), - [anon_sym_DOT_DOT_LT] = ACTIONS(5551), - [anon_sym_null] = ACTIONS(5553), - [anon_sym_true] = ACTIONS(5555), - [anon_sym_false] = ACTIONS(5555), - [aux_sym__val_number_decimal_token1] = ACTIONS(5557), - [aux_sym__val_number_decimal_token2] = ACTIONS(5559), - [anon_sym_DOT2] = ACTIONS(5561), - [aux_sym__val_number_decimal_token3] = ACTIONS(5563), - [aux_sym__val_number_token1] = ACTIONS(5565), - [aux_sym__val_number_token2] = ACTIONS(5565), - [aux_sym__val_number_token3] = ACTIONS(5565), - [aux_sym__val_number_token4] = ACTIONS(5567), - [aux_sym__val_number_token5] = ACTIONS(5567), - [aux_sym__val_number_token6] = ACTIONS(5567), - [anon_sym_0b] = ACTIONS(5569), - [anon_sym_0o] = ACTIONS(5571), - [anon_sym_0x] = ACTIONS(5571), - [sym_val_date] = ACTIONS(5573), - [anon_sym_DQUOTE] = ACTIONS(5575), - [sym__str_single_quotes] = ACTIONS(5577), - [sym__str_back_ticks] = ACTIONS(5577), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5581), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5583), - [anon_sym_POUND] = ACTIONS(3), + [2304] = { + [sym_comment] = STATE(2304), + [anon_sym_export] = ACTIONS(6021), + [anon_sym_alias] = ACTIONS(6021), + [anon_sym_let] = ACTIONS(6021), + [anon_sym_let_DASHenv] = ACTIONS(6021), + [anon_sym_mut] = ACTIONS(6021), + [anon_sym_const] = ACTIONS(6021), + [anon_sym_SEMI] = ACTIONS(6021), + [sym_cmd_identifier] = ACTIONS(6021), + [anon_sym_LF] = ACTIONS(6023), + [anon_sym_def] = ACTIONS(6021), + [anon_sym_export_DASHenv] = ACTIONS(6021), + [anon_sym_extern] = ACTIONS(6021), + [anon_sym_module] = ACTIONS(6021), + [anon_sym_use] = ACTIONS(6021), + [anon_sym_LBRACK] = ACTIONS(6021), + [anon_sym_LPAREN] = ACTIONS(6021), + [anon_sym_RPAREN] = ACTIONS(6021), + [anon_sym_DOLLAR] = ACTIONS(6021), + [anon_sym_error] = ACTIONS(6021), + [anon_sym_DASH] = ACTIONS(6021), + [anon_sym_break] = ACTIONS(6021), + [anon_sym_continue] = ACTIONS(6021), + [anon_sym_for] = ACTIONS(6021), + [anon_sym_loop] = ACTIONS(6021), + [anon_sym_while] = ACTIONS(6021), + [anon_sym_do] = ACTIONS(6021), + [anon_sym_if] = ACTIONS(6021), + [anon_sym_match] = ACTIONS(6021), + [anon_sym_LBRACE] = ACTIONS(6021), + [anon_sym_RBRACE] = ACTIONS(6021), + [anon_sym_DOT_DOT] = ACTIONS(6021), + [anon_sym_try] = ACTIONS(6021), + [anon_sym_return] = ACTIONS(6021), + [anon_sym_source] = ACTIONS(6021), + [anon_sym_source_DASHenv] = ACTIONS(6021), + [anon_sym_register] = ACTIONS(6021), + [anon_sym_hide] = ACTIONS(6021), + [anon_sym_hide_DASHenv] = ACTIONS(6021), + [anon_sym_overlay] = ACTIONS(6021), + [anon_sym_where] = ACTIONS(6021), + [anon_sym_not] = ACTIONS(6021), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6021), + [anon_sym_DOT_DOT_LT] = ACTIONS(6021), + [anon_sym_null] = ACTIONS(6021), + [anon_sym_true] = ACTIONS(6021), + [anon_sym_false] = ACTIONS(6021), + [aux_sym__val_number_decimal_token1] = ACTIONS(6021), + [aux_sym__val_number_decimal_token2] = ACTIONS(6021), + [anon_sym_DOT2] = ACTIONS(6021), + [aux_sym__val_number_decimal_token3] = ACTIONS(6021), + [aux_sym__val_number_token1] = ACTIONS(6021), + [aux_sym__val_number_token2] = ACTIONS(6021), + [aux_sym__val_number_token3] = ACTIONS(6021), + [aux_sym__val_number_token4] = ACTIONS(6021), + [aux_sym__val_number_token5] = ACTIONS(6021), + [aux_sym__val_number_token6] = ACTIONS(6021), + [anon_sym_0b] = ACTIONS(6021), + [anon_sym_0o] = ACTIONS(6021), + [anon_sym_0x] = ACTIONS(6021), + [sym_val_date] = ACTIONS(6021), + [anon_sym_DQUOTE] = ACTIONS(6021), + [sym__str_single_quotes] = ACTIONS(6021), + [sym__str_back_ticks] = ACTIONS(6021), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6021), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6021), + [anon_sym_CARET] = ACTIONS(6021), + [anon_sym_POUND] = ACTIONS(113), }, - [2026] = { - [sym_expr_unary] = STATE(671), - [sym__expr_unary_minus] = STATE(650), - [sym_expr_binary] = STATE(671), - [sym__expr_binary_expression] = STATE(680), - [sym_expr_parenthesized] = STATE(671), - [sym__val_range] = STATE(10629), - [sym__value] = STATE(671), - [sym_val_nothing] = STATE(661), - [sym_val_bool] = STATE(605), - [sym_val_variable] = STATE(661), - [sym__var] = STATE(410), - [sym_val_number] = STATE(661), - [sym__val_number_decimal] = STATE(287), - [sym__val_number] = STATE(663), - [sym_val_duration] = STATE(661), - [sym_val_filesize] = STATE(661), - [sym_val_binary] = STATE(661), - [sym_val_string] = STATE(661), - [sym__str_double_quotes] = STATE(645), - [sym_val_interpolated] = STATE(661), - [sym__inter_single_quotes] = STATE(613), - [sym__inter_double_quotes] = STATE(615), - [sym_val_list] = STATE(661), - [sym_val_record] = STATE(661), - [sym_val_table] = STATE(661), - [sym_val_closure] = STATE(661), - [sym_unquoted] = STATE(682), - [sym__unquoted_anonymous_prefix] = STATE(10914), - [sym_comment] = STATE(2026), - [anon_sym_LBRACK] = ACTIONS(5537), - [anon_sym_LPAREN] = ACTIONS(5539), - [anon_sym_DOLLAR] = ACTIONS(5541), - [anon_sym_DASH] = ACTIONS(5543), - [anon_sym_LBRACE] = ACTIONS(5545), - [anon_sym_DOT_DOT] = ACTIONS(5547), - [anon_sym_not] = ACTIONS(5549), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5551), - [anon_sym_DOT_DOT_LT] = ACTIONS(5551), - [anon_sym_null] = ACTIONS(5553), - [anon_sym_true] = ACTIONS(5555), - [anon_sym_false] = ACTIONS(5555), - [aux_sym__val_number_decimal_token1] = ACTIONS(5557), - [aux_sym__val_number_decimal_token2] = ACTIONS(5559), - [anon_sym_DOT2] = ACTIONS(5561), - [aux_sym__val_number_decimal_token3] = ACTIONS(5563), - [aux_sym__val_number_token1] = ACTIONS(5565), - [aux_sym__val_number_token2] = ACTIONS(5565), - [aux_sym__val_number_token3] = ACTIONS(5565), - [aux_sym__val_number_token4] = ACTIONS(5567), - [aux_sym__val_number_token5] = ACTIONS(5567), - [aux_sym__val_number_token6] = ACTIONS(5567), - [anon_sym_0b] = ACTIONS(5569), - [anon_sym_0o] = ACTIONS(5571), - [anon_sym_0x] = ACTIONS(5571), - [sym_val_date] = ACTIONS(5573), - [anon_sym_DQUOTE] = ACTIONS(5575), - [sym__str_single_quotes] = ACTIONS(5577), - [sym__str_back_ticks] = ACTIONS(5577), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5581), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5583), - [anon_sym_POUND] = ACTIONS(3), + [2305] = { + [sym_block] = STATE(2403), + [sym_comment] = STATE(2305), + [ts_builtin_sym_end] = ACTIONS(5874), + [anon_sym_export] = ACTIONS(5872), + [anon_sym_alias] = ACTIONS(5872), + [anon_sym_let] = ACTIONS(5872), + [anon_sym_let_DASHenv] = ACTIONS(5872), + [anon_sym_mut] = ACTIONS(5872), + [anon_sym_const] = ACTIONS(5872), + [anon_sym_SEMI] = ACTIONS(5872), + [sym_cmd_identifier] = ACTIONS(5872), + [anon_sym_LF] = ACTIONS(5874), + [anon_sym_def] = ACTIONS(5872), + [anon_sym_export_DASHenv] = ACTIONS(5872), + [anon_sym_extern] = ACTIONS(5872), + [anon_sym_module] = ACTIONS(5872), + [anon_sym_use] = ACTIONS(5872), + [anon_sym_LBRACK] = ACTIONS(5872), + [anon_sym_LPAREN] = ACTIONS(5872), + [anon_sym_DOLLAR] = ACTIONS(5872), + [anon_sym_error] = ACTIONS(5872), + [anon_sym_DASH] = ACTIONS(5872), + [anon_sym_break] = ACTIONS(5872), + [anon_sym_continue] = ACTIONS(5872), + [anon_sym_for] = ACTIONS(5872), + [anon_sym_loop] = ACTIONS(5872), + [anon_sym_while] = ACTIONS(5872), + [anon_sym_do] = ACTIONS(5872), + [anon_sym_if] = ACTIONS(5872), + [anon_sym_match] = ACTIONS(5872), + [anon_sym_LBRACE] = ACTIONS(5944), + [anon_sym_DOT_DOT] = ACTIONS(5872), + [anon_sym_try] = ACTIONS(5872), + [anon_sym_return] = ACTIONS(5872), + [anon_sym_source] = ACTIONS(5872), + [anon_sym_source_DASHenv] = ACTIONS(5872), + [anon_sym_register] = ACTIONS(5872), + [anon_sym_hide] = ACTIONS(5872), + [anon_sym_hide_DASHenv] = ACTIONS(5872), + [anon_sym_overlay] = ACTIONS(5872), + [anon_sym_where] = ACTIONS(5872), + [anon_sym_not] = ACTIONS(5872), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5872), + [anon_sym_DOT_DOT_LT] = ACTIONS(5872), + [anon_sym_null] = ACTIONS(5872), + [anon_sym_true] = ACTIONS(5872), + [anon_sym_false] = ACTIONS(5872), + [aux_sym__val_number_decimal_token1] = ACTIONS(5872), + [aux_sym__val_number_decimal_token2] = ACTIONS(5872), + [anon_sym_DOT2] = ACTIONS(5872), + [aux_sym__val_number_decimal_token3] = ACTIONS(5872), + [aux_sym__val_number_token1] = ACTIONS(5872), + [aux_sym__val_number_token2] = ACTIONS(5872), + [aux_sym__val_number_token3] = ACTIONS(5872), + [aux_sym__val_number_token4] = ACTIONS(5872), + [aux_sym__val_number_token5] = ACTIONS(5872), + [aux_sym__val_number_token6] = ACTIONS(5872), + [anon_sym_0b] = ACTIONS(5872), + [anon_sym_0o] = ACTIONS(5872), + [anon_sym_0x] = ACTIONS(5872), + [sym_val_date] = ACTIONS(5872), + [anon_sym_DQUOTE] = ACTIONS(5872), + [sym__str_single_quotes] = ACTIONS(5872), + [sym__str_back_ticks] = ACTIONS(5872), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5872), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5872), + [anon_sym_CARET] = ACTIONS(5872), + [anon_sym_POUND] = ACTIONS(113), }, - [2027] = { - [sym_expr_unary] = STATE(671), - [sym__expr_unary_minus] = STATE(650), - [sym_expr_binary] = STATE(671), - [sym__expr_binary_expression] = STATE(684), - [sym_expr_parenthesized] = STATE(671), - [sym__val_range] = STATE(10629), - [sym__value] = STATE(671), - [sym_val_nothing] = STATE(661), - [sym_val_bool] = STATE(605), - [sym_val_variable] = STATE(661), - [sym__var] = STATE(410), - [sym_val_number] = STATE(661), - [sym__val_number_decimal] = STATE(287), - [sym__val_number] = STATE(663), - [sym_val_duration] = STATE(661), - [sym_val_filesize] = STATE(661), - [sym_val_binary] = STATE(661), - [sym_val_string] = STATE(661), - [sym__str_double_quotes] = STATE(645), - [sym_val_interpolated] = STATE(661), - [sym__inter_single_quotes] = STATE(613), - [sym__inter_double_quotes] = STATE(615), - [sym_val_list] = STATE(661), - [sym_val_record] = STATE(661), - [sym_val_table] = STATE(661), - [sym_val_closure] = STATE(661), - [sym_unquoted] = STATE(612), - [sym__unquoted_anonymous_prefix] = STATE(10914), - [sym_comment] = STATE(2027), - [anon_sym_LBRACK] = ACTIONS(5537), - [anon_sym_LPAREN] = ACTIONS(5539), - [anon_sym_DOLLAR] = ACTIONS(5541), - [anon_sym_DASH] = ACTIONS(5543), - [anon_sym_LBRACE] = ACTIONS(5545), - [anon_sym_DOT_DOT] = ACTIONS(5547), - [anon_sym_not] = ACTIONS(5549), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5551), - [anon_sym_DOT_DOT_LT] = ACTIONS(5551), - [anon_sym_null] = ACTIONS(5553), - [anon_sym_true] = ACTIONS(5555), - [anon_sym_false] = ACTIONS(5555), - [aux_sym__val_number_decimal_token1] = ACTIONS(5557), - [aux_sym__val_number_decimal_token2] = ACTIONS(5559), - [anon_sym_DOT2] = ACTIONS(5561), - [aux_sym__val_number_decimal_token3] = ACTIONS(5563), - [aux_sym__val_number_token1] = ACTIONS(5565), - [aux_sym__val_number_token2] = ACTIONS(5565), - [aux_sym__val_number_token3] = ACTIONS(5565), - [aux_sym__val_number_token4] = ACTIONS(5567), - [aux_sym__val_number_token5] = ACTIONS(5567), - [aux_sym__val_number_token6] = ACTIONS(5567), - [anon_sym_0b] = ACTIONS(5569), - [anon_sym_0o] = ACTIONS(5571), - [anon_sym_0x] = ACTIONS(5571), - [sym_val_date] = ACTIONS(5573), - [anon_sym_DQUOTE] = ACTIONS(5575), - [sym__str_single_quotes] = ACTIONS(5577), - [sym__str_back_ticks] = ACTIONS(5577), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5581), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5583), - [anon_sym_POUND] = ACTIONS(3), + [2306] = { + [sym_comment] = STATE(2306), + [anon_sym_SEMI] = ACTIONS(1024), + [anon_sym_LF] = ACTIONS(1026), + [anon_sym_LBRACK] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_RPAREN] = ACTIONS(1024), + [anon_sym_PIPE] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_GT] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym_RBRACE] = ACTIONS(1024), + [anon_sym_DOT_DOT] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(6025), + [anon_sym_STAR_STAR] = ACTIONS(1024), + [anon_sym_PLUS_PLUS] = ACTIONS(1024), + [anon_sym_SLASH] = ACTIONS(1024), + [anon_sym_mod] = ACTIONS(1024), + [anon_sym_SLASH_SLASH] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_bit_DASHshl] = ACTIONS(1024), + [anon_sym_bit_DASHshr] = ACTIONS(1024), + [anon_sym_EQ_EQ] = ACTIONS(1024), + [anon_sym_BANG_EQ] = ACTIONS(1024), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ] = ACTIONS(1024), + [anon_sym_GT_EQ] = ACTIONS(1024), + [anon_sym_not_DASHin] = ACTIONS(1024), + [anon_sym_starts_DASHwith] = ACTIONS(1024), + [anon_sym_ends_DASHwith] = ACTIONS(1024), + [anon_sym_EQ_TILDE] = ACTIONS(1024), + [anon_sym_BANG_TILDE] = ACTIONS(1024), + [anon_sym_bit_DASHand] = ACTIONS(1024), + [anon_sym_bit_DASHxor] = ACTIONS(1024), + [anon_sym_bit_DASHor] = ACTIONS(1024), + [anon_sym_and] = ACTIONS(1024), + [anon_sym_xor] = ACTIONS(1024), + [anon_sym_or] = ACTIONS(1024), + [anon_sym_not] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT] = ACTIONS(1024), + [anon_sym_null] = ACTIONS(1024), + [anon_sym_true] = ACTIONS(1024), + [anon_sym_false] = ACTIONS(1024), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1024), + [aux_sym__val_number_token1] = ACTIONS(1024), + [aux_sym__val_number_token2] = ACTIONS(1024), + [aux_sym__val_number_token3] = ACTIONS(1024), + [aux_sym__val_number_token4] = ACTIONS(1024), + [aux_sym__val_number_token5] = ACTIONS(1024), + [aux_sym__val_number_token6] = ACTIONS(1024), + [anon_sym_0b] = ACTIONS(1024), + [anon_sym_0o] = ACTIONS(1024), + [anon_sym_0x] = ACTIONS(1024), + [sym_val_date] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym__str_single_quotes] = ACTIONS(1024), + [sym__str_back_ticks] = ACTIONS(1024), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1024), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1024), + [anon_sym_POUND] = ACTIONS(113), }, - [2028] = { - [sym_expr_unary] = STATE(671), - [sym__expr_unary_minus] = STATE(650), - [sym_expr_binary] = STATE(671), - [sym__expr_binary_expression] = STATE(618), - [sym_expr_parenthesized] = STATE(671), - [sym__val_range] = STATE(10629), - [sym__value] = STATE(671), - [sym_val_nothing] = STATE(661), - [sym_val_bool] = STATE(605), - [sym_val_variable] = STATE(661), - [sym__var] = STATE(410), - [sym_val_number] = STATE(661), - [sym__val_number_decimal] = STATE(287), - [sym__val_number] = STATE(663), - [sym_val_duration] = STATE(661), - [sym_val_filesize] = STATE(661), - [sym_val_binary] = STATE(661), - [sym_val_string] = STATE(661), - [sym__str_double_quotes] = STATE(645), - [sym_val_interpolated] = STATE(661), - [sym__inter_single_quotes] = STATE(613), - [sym__inter_double_quotes] = STATE(615), - [sym_val_list] = STATE(661), - [sym_val_record] = STATE(661), - [sym_val_table] = STATE(661), - [sym_val_closure] = STATE(661), - [sym_unquoted] = STATE(623), - [sym__unquoted_anonymous_prefix] = STATE(10914), - [sym_comment] = STATE(2028), - [anon_sym_LBRACK] = ACTIONS(5537), - [anon_sym_LPAREN] = ACTIONS(5539), - [anon_sym_DOLLAR] = ACTIONS(5541), - [anon_sym_DASH] = ACTIONS(5543), - [anon_sym_LBRACE] = ACTIONS(5545), - [anon_sym_DOT_DOT] = ACTIONS(5547), - [anon_sym_not] = ACTIONS(5549), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5551), - [anon_sym_DOT_DOT_LT] = ACTIONS(5551), - [anon_sym_null] = ACTIONS(5553), - [anon_sym_true] = ACTIONS(5555), - [anon_sym_false] = ACTIONS(5555), - [aux_sym__val_number_decimal_token1] = ACTIONS(5557), - [aux_sym__val_number_decimal_token2] = ACTIONS(5559), - [anon_sym_DOT2] = ACTIONS(5561), - [aux_sym__val_number_decimal_token3] = ACTIONS(5563), - [aux_sym__val_number_token1] = ACTIONS(5565), - [aux_sym__val_number_token2] = ACTIONS(5565), - [aux_sym__val_number_token3] = ACTIONS(5565), - [aux_sym__val_number_token4] = ACTIONS(5567), - [aux_sym__val_number_token5] = ACTIONS(5567), - [aux_sym__val_number_token6] = ACTIONS(5567), - [anon_sym_0b] = ACTIONS(5569), - [anon_sym_0o] = ACTIONS(5571), - [anon_sym_0x] = ACTIONS(5571), - [sym_val_date] = ACTIONS(5573), - [anon_sym_DQUOTE] = ACTIONS(5575), - [sym__str_single_quotes] = ACTIONS(5577), - [sym__str_back_ticks] = ACTIONS(5577), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5581), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5583), - [anon_sym_POUND] = ACTIONS(3), + [2307] = { + [sym_comment] = STATE(2307), + [anon_sym_SEMI] = ACTIONS(1024), + [anon_sym_LF] = ACTIONS(1026), + [anon_sym_LBRACK] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_RPAREN] = ACTIONS(1024), + [anon_sym_PIPE] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_GT] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym_RBRACE] = ACTIONS(1024), + [anon_sym_DOT_DOT] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(6025), + [anon_sym_STAR_STAR] = ACTIONS(1024), + [anon_sym_PLUS_PLUS] = ACTIONS(1024), + [anon_sym_SLASH] = ACTIONS(1024), + [anon_sym_mod] = ACTIONS(1024), + [anon_sym_SLASH_SLASH] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_bit_DASHshl] = ACTIONS(1024), + [anon_sym_bit_DASHshr] = ACTIONS(1024), + [anon_sym_EQ_EQ] = ACTIONS(1024), + [anon_sym_BANG_EQ] = ACTIONS(1024), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ] = ACTIONS(1024), + [anon_sym_GT_EQ] = ACTIONS(1024), + [anon_sym_not_DASHin] = ACTIONS(1024), + [anon_sym_starts_DASHwith] = ACTIONS(1024), + [anon_sym_ends_DASHwith] = ACTIONS(1024), + [anon_sym_EQ_TILDE] = ACTIONS(1024), + [anon_sym_BANG_TILDE] = ACTIONS(1024), + [anon_sym_bit_DASHand] = ACTIONS(1024), + [anon_sym_bit_DASHxor] = ACTIONS(1024), + [anon_sym_bit_DASHor] = ACTIONS(1024), + [anon_sym_and] = ACTIONS(1024), + [anon_sym_xor] = ACTIONS(1024), + [anon_sym_or] = ACTIONS(1024), + [anon_sym_not] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT] = ACTIONS(1024), + [anon_sym_null] = ACTIONS(1024), + [anon_sym_true] = ACTIONS(1024), + [anon_sym_false] = ACTIONS(1024), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1024), + [aux_sym__val_number_token1] = ACTIONS(1024), + [aux_sym__val_number_token2] = ACTIONS(1024), + [aux_sym__val_number_token3] = ACTIONS(1024), + [aux_sym__val_number_token4] = ACTIONS(1024), + [aux_sym__val_number_token5] = ACTIONS(1024), + [aux_sym__val_number_token6] = ACTIONS(1024), + [anon_sym_0b] = ACTIONS(1024), + [anon_sym_0o] = ACTIONS(1024), + [anon_sym_0x] = ACTIONS(1024), + [sym_val_date] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym__str_single_quotes] = ACTIONS(1024), + [sym__str_back_ticks] = ACTIONS(1024), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1024), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1024), + [anon_sym_POUND] = ACTIONS(113), }, - [2029] = { - [sym_expr_unary] = STATE(671), - [sym__expr_unary_minus] = STATE(650), - [sym_expr_binary] = STATE(671), - [sym__expr_binary_expression] = STATE(628), - [sym_expr_parenthesized] = STATE(671), - [sym__val_range] = STATE(10629), - [sym__value] = STATE(671), - [sym_val_nothing] = STATE(661), - [sym_val_bool] = STATE(605), - [sym_val_variable] = STATE(661), - [sym__var] = STATE(410), - [sym_val_number] = STATE(661), - [sym__val_number_decimal] = STATE(287), - [sym__val_number] = STATE(663), - [sym_val_duration] = STATE(661), - [sym_val_filesize] = STATE(661), - [sym_val_binary] = STATE(661), - [sym_val_string] = STATE(661), - [sym__str_double_quotes] = STATE(645), - [sym_val_interpolated] = STATE(661), - [sym__inter_single_quotes] = STATE(613), - [sym__inter_double_quotes] = STATE(615), - [sym_val_list] = STATE(661), - [sym_val_record] = STATE(661), - [sym_val_table] = STATE(661), - [sym_val_closure] = STATE(661), - [sym_unquoted] = STATE(632), - [sym__unquoted_anonymous_prefix] = STATE(10914), - [sym_comment] = STATE(2029), - [anon_sym_LBRACK] = ACTIONS(5537), - [anon_sym_LPAREN] = ACTIONS(5539), - [anon_sym_DOLLAR] = ACTIONS(5541), - [anon_sym_DASH] = ACTIONS(5543), - [anon_sym_LBRACE] = ACTIONS(5545), - [anon_sym_DOT_DOT] = ACTIONS(5547), - [anon_sym_not] = ACTIONS(5549), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5551), - [anon_sym_DOT_DOT_LT] = ACTIONS(5551), - [anon_sym_null] = ACTIONS(5553), - [anon_sym_true] = ACTIONS(5555), - [anon_sym_false] = ACTIONS(5555), - [aux_sym__val_number_decimal_token1] = ACTIONS(5557), - [aux_sym__val_number_decimal_token2] = ACTIONS(5559), - [anon_sym_DOT2] = ACTIONS(5561), - [aux_sym__val_number_decimal_token3] = ACTIONS(5563), - [aux_sym__val_number_token1] = ACTIONS(5565), - [aux_sym__val_number_token2] = ACTIONS(5565), - [aux_sym__val_number_token3] = ACTIONS(5565), - [aux_sym__val_number_token4] = ACTIONS(5567), - [aux_sym__val_number_token5] = ACTIONS(5567), - [aux_sym__val_number_token6] = ACTIONS(5567), - [anon_sym_0b] = ACTIONS(5569), - [anon_sym_0o] = ACTIONS(5571), - [anon_sym_0x] = ACTIONS(5571), - [sym_val_date] = ACTIONS(5573), - [anon_sym_DQUOTE] = ACTIONS(5575), - [sym__str_single_quotes] = ACTIONS(5577), - [sym__str_back_ticks] = ACTIONS(5577), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5581), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5583), - [anon_sym_POUND] = ACTIONS(3), + [2308] = { + [sym_cell_path] = STATE(2651), + [sym_path] = STATE(2311), + [sym_comment] = STATE(2308), + [ts_builtin_sym_end] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_SLASH] = ACTIONS(1002), + [anon_sym_mod] = ACTIONS(1002), + [anon_sym_SLASH_SLASH] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1002), + [anon_sym_bit_DASHshl] = ACTIONS(1002), + [anon_sym_bit_DASHshr] = ACTIONS(1002), + [anon_sym_EQ_EQ] = ACTIONS(1002), + [anon_sym_BANG_EQ] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ] = ACTIONS(1002), + [anon_sym_GT_EQ] = ACTIONS(1002), + [anon_sym_not_DASHin] = ACTIONS(1002), + [anon_sym_starts_DASHwith] = ACTIONS(1002), + [anon_sym_ends_DASHwith] = ACTIONS(1002), + [anon_sym_EQ_TILDE] = ACTIONS(1002), + [anon_sym_BANG_TILDE] = ACTIONS(1002), + [anon_sym_bit_DASHand] = ACTIONS(1002), + [anon_sym_bit_DASHxor] = ACTIONS(1002), + [anon_sym_bit_DASHor] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_xor] = ACTIONS(1002), + [anon_sym_or] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT] = ACTIONS(5921), + [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), + [anon_sym_DOT2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = 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(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_POUND] = ACTIONS(113), }, - [2030] = { - [sym_expr_unary] = STATE(671), - [sym__expr_unary_minus] = STATE(650), - [sym_expr_binary] = STATE(671), - [sym__expr_binary_expression] = STATE(657), - [sym_expr_parenthesized] = STATE(671), - [sym__val_range] = STATE(10629), - [sym__value] = STATE(671), - [sym_val_nothing] = STATE(661), - [sym_val_bool] = STATE(605), - [sym_val_variable] = STATE(661), - [sym__var] = STATE(410), - [sym_val_number] = STATE(661), - [sym__val_number_decimal] = STATE(287), - [sym__val_number] = STATE(663), - [sym_val_duration] = STATE(661), - [sym_val_filesize] = STATE(661), - [sym_val_binary] = STATE(661), - [sym_val_string] = STATE(661), - [sym__str_double_quotes] = STATE(645), - [sym_val_interpolated] = STATE(661), - [sym__inter_single_quotes] = STATE(613), - [sym__inter_double_quotes] = STATE(615), - [sym_val_list] = STATE(661), - [sym_val_record] = STATE(661), - [sym_val_table] = STATE(661), - [sym_val_closure] = STATE(661), - [sym_unquoted] = STATE(654), - [sym__unquoted_anonymous_prefix] = STATE(10914), - [sym_comment] = STATE(2030), - [anon_sym_LBRACK] = ACTIONS(5537), - [anon_sym_LPAREN] = ACTIONS(5539), - [anon_sym_DOLLAR] = ACTIONS(5541), - [anon_sym_DASH] = ACTIONS(5543), - [anon_sym_LBRACE] = ACTIONS(5545), - [anon_sym_DOT_DOT] = ACTIONS(5547), - [anon_sym_not] = ACTIONS(5549), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5551), - [anon_sym_DOT_DOT_LT] = ACTIONS(5551), - [anon_sym_null] = ACTIONS(5553), - [anon_sym_true] = ACTIONS(5555), - [anon_sym_false] = ACTIONS(5555), - [aux_sym__val_number_decimal_token1] = ACTIONS(5557), - [aux_sym__val_number_decimal_token2] = ACTIONS(5559), - [anon_sym_DOT2] = ACTIONS(5561), - [aux_sym__val_number_decimal_token3] = ACTIONS(5563), - [aux_sym__val_number_token1] = ACTIONS(5565), - [aux_sym__val_number_token2] = ACTIONS(5565), - [aux_sym__val_number_token3] = ACTIONS(5565), - [aux_sym__val_number_token4] = ACTIONS(5567), - [aux_sym__val_number_token5] = ACTIONS(5567), - [aux_sym__val_number_token6] = ACTIONS(5567), - [anon_sym_0b] = ACTIONS(5569), - [anon_sym_0o] = ACTIONS(5571), - [anon_sym_0x] = ACTIONS(5571), - [sym_val_date] = ACTIONS(5573), - [anon_sym_DQUOTE] = ACTIONS(5575), - [sym__str_single_quotes] = ACTIONS(5577), - [sym__str_back_ticks] = ACTIONS(5577), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5581), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5583), - [anon_sym_POUND] = ACTIONS(3), + [2309] = { + [sym_comment] = STATE(2309), + [anon_sym_SEMI] = ACTIONS(1020), + [anon_sym_LF] = ACTIONS(1022), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1020), + [anon_sym_RPAREN] = ACTIONS(1020), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_GT] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1020), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_in] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_RBRACE] = ACTIONS(1020), + [anon_sym_DOT_DOT] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_QMARK2] = ACTIONS(1020), + [anon_sym_STAR_STAR] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1020), + [anon_sym_SLASH] = ACTIONS(1020), + [anon_sym_mod] = ACTIONS(1020), + [anon_sym_SLASH_SLASH] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_bit_DASHshl] = ACTIONS(1020), + [anon_sym_bit_DASHshr] = ACTIONS(1020), + [anon_sym_EQ_EQ] = ACTIONS(1020), + [anon_sym_BANG_EQ] = ACTIONS(1020), + [anon_sym_LT2] = ACTIONS(1020), + [anon_sym_LT_EQ] = ACTIONS(1020), + [anon_sym_GT_EQ] = ACTIONS(1020), + [anon_sym_not_DASHin] = ACTIONS(1020), + [anon_sym_starts_DASHwith] = ACTIONS(1020), + [anon_sym_ends_DASHwith] = ACTIONS(1020), + [anon_sym_EQ_TILDE] = ACTIONS(1020), + [anon_sym_BANG_TILDE] = ACTIONS(1020), + [anon_sym_bit_DASHand] = ACTIONS(1020), + [anon_sym_bit_DASHxor] = ACTIONS(1020), + [anon_sym_bit_DASHor] = ACTIONS(1020), + [anon_sym_and] = ACTIONS(1020), + [anon_sym_xor] = ACTIONS(1020), + [anon_sym_or] = ACTIONS(1020), + [anon_sym_not] = ACTIONS(1020), + [anon_sym_DOT] = ACTIONS(1020), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1020), + [anon_sym_DOT_DOT_LT] = ACTIONS(1020), + [anon_sym_null] = ACTIONS(1020), + [anon_sym_true] = ACTIONS(1020), + [anon_sym_false] = ACTIONS(1020), + [aux_sym__val_number_decimal_token1] = ACTIONS(1020), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [anon_sym_DOT2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1020), + [aux_sym__val_number_token1] = ACTIONS(1020), + [aux_sym__val_number_token2] = ACTIONS(1020), + [aux_sym__val_number_token3] = ACTIONS(1020), + [aux_sym__val_number_token4] = ACTIONS(1020), + [aux_sym__val_number_token5] = ACTIONS(1020), + [aux_sym__val_number_token6] = ACTIONS(1020), + [anon_sym_0b] = ACTIONS(1020), + [anon_sym_0o] = ACTIONS(1020), + [anon_sym_0x] = ACTIONS(1020), + [sym_val_date] = ACTIONS(1020), + [anon_sym_DQUOTE] = ACTIONS(1020), + [sym__str_single_quotes] = ACTIONS(1020), + [sym__str_back_ticks] = ACTIONS(1020), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1020), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1020), + [anon_sym_POUND] = ACTIONS(113), }, - [2031] = { - [sym_expr_unary] = STATE(671), - [sym__expr_unary_minus] = STATE(650), - [sym_expr_binary] = STATE(671), - [sym__expr_binary_expression] = STATE(674), - [sym_expr_parenthesized] = STATE(671), - [sym__val_range] = STATE(10629), - [sym__value] = STATE(671), - [sym_val_nothing] = STATE(661), - [sym_val_bool] = STATE(605), - [sym_val_variable] = STATE(661), - [sym__var] = STATE(410), - [sym_val_number] = STATE(661), - [sym__val_number_decimal] = STATE(287), - [sym__val_number] = STATE(663), - [sym_val_duration] = STATE(661), - [sym_val_filesize] = STATE(661), - [sym_val_binary] = STATE(661), - [sym_val_string] = STATE(661), - [sym__str_double_quotes] = STATE(645), - [sym_val_interpolated] = STATE(661), - [sym__inter_single_quotes] = STATE(613), - [sym__inter_double_quotes] = STATE(615), - [sym_val_list] = STATE(661), - [sym_val_record] = STATE(661), - [sym_val_table] = STATE(661), - [sym_val_closure] = STATE(661), - [sym_unquoted] = STATE(681), - [sym__unquoted_anonymous_prefix] = STATE(10914), - [sym_comment] = STATE(2031), - [anon_sym_LBRACK] = ACTIONS(5537), - [anon_sym_LPAREN] = ACTIONS(5539), - [anon_sym_DOLLAR] = ACTIONS(5541), - [anon_sym_DASH] = ACTIONS(5543), - [anon_sym_LBRACE] = ACTIONS(5545), - [anon_sym_DOT_DOT] = ACTIONS(5547), - [anon_sym_not] = ACTIONS(5549), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5551), - [anon_sym_DOT_DOT_LT] = ACTIONS(5551), - [anon_sym_null] = ACTIONS(5553), - [anon_sym_true] = ACTIONS(5555), - [anon_sym_false] = ACTIONS(5555), - [aux_sym__val_number_decimal_token1] = ACTIONS(5557), - [aux_sym__val_number_decimal_token2] = ACTIONS(5559), - [anon_sym_DOT2] = ACTIONS(5561), - [aux_sym__val_number_decimal_token3] = ACTIONS(5563), - [aux_sym__val_number_token1] = ACTIONS(5565), - [aux_sym__val_number_token2] = ACTIONS(5565), - [aux_sym__val_number_token3] = ACTIONS(5565), - [aux_sym__val_number_token4] = ACTIONS(5567), - [aux_sym__val_number_token5] = ACTIONS(5567), - [aux_sym__val_number_token6] = ACTIONS(5567), - [anon_sym_0b] = ACTIONS(5569), - [anon_sym_0o] = ACTIONS(5571), - [anon_sym_0x] = ACTIONS(5571), - [sym_val_date] = ACTIONS(5573), - [anon_sym_DQUOTE] = ACTIONS(5575), - [sym__str_single_quotes] = ACTIONS(5577), - [sym__str_back_ticks] = ACTIONS(5577), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5581), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5583), - [anon_sym_POUND] = ACTIONS(3), + [2310] = { + [sym_comment] = STATE(2310), + [anon_sym_export] = ACTIONS(6027), + [anon_sym_alias] = ACTIONS(6027), + [anon_sym_let] = ACTIONS(6027), + [anon_sym_let_DASHenv] = ACTIONS(6027), + [anon_sym_mut] = ACTIONS(6027), + [anon_sym_const] = ACTIONS(6027), + [anon_sym_SEMI] = ACTIONS(6027), + [sym_cmd_identifier] = ACTIONS(6027), + [anon_sym_LF] = ACTIONS(6029), + [anon_sym_def] = ACTIONS(6027), + [anon_sym_export_DASHenv] = ACTIONS(6027), + [anon_sym_extern] = ACTIONS(6027), + [anon_sym_module] = ACTIONS(6027), + [anon_sym_use] = ACTIONS(6027), + [anon_sym_LBRACK] = ACTIONS(6027), + [anon_sym_LPAREN] = ACTIONS(6027), + [anon_sym_RPAREN] = ACTIONS(6027), + [anon_sym_DOLLAR] = ACTIONS(6027), + [anon_sym_error] = ACTIONS(6027), + [anon_sym_DASH] = ACTIONS(6027), + [anon_sym_break] = ACTIONS(6027), + [anon_sym_continue] = ACTIONS(6027), + [anon_sym_for] = ACTIONS(6027), + [anon_sym_loop] = ACTIONS(6027), + [anon_sym_while] = ACTIONS(6027), + [anon_sym_do] = ACTIONS(6027), + [anon_sym_if] = ACTIONS(6027), + [anon_sym_match] = ACTIONS(6027), + [anon_sym_LBRACE] = ACTIONS(6027), + [anon_sym_RBRACE] = ACTIONS(6027), + [anon_sym_DOT_DOT] = ACTIONS(6027), + [anon_sym_try] = ACTIONS(6027), + [anon_sym_return] = ACTIONS(6027), + [anon_sym_source] = ACTIONS(6027), + [anon_sym_source_DASHenv] = ACTIONS(6027), + [anon_sym_register] = ACTIONS(6027), + [anon_sym_hide] = ACTIONS(6027), + [anon_sym_hide_DASHenv] = ACTIONS(6027), + [anon_sym_overlay] = ACTIONS(6027), + [anon_sym_where] = ACTIONS(6027), + [anon_sym_not] = ACTIONS(6027), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6027), + [anon_sym_DOT_DOT_LT] = ACTIONS(6027), + [anon_sym_null] = ACTIONS(6027), + [anon_sym_true] = ACTIONS(6027), + [anon_sym_false] = ACTIONS(6027), + [aux_sym__val_number_decimal_token1] = ACTIONS(6027), + [aux_sym__val_number_decimal_token2] = ACTIONS(6027), + [anon_sym_DOT2] = ACTIONS(6027), + [aux_sym__val_number_decimal_token3] = ACTIONS(6027), + [aux_sym__val_number_token1] = ACTIONS(6027), + [aux_sym__val_number_token2] = ACTIONS(6027), + [aux_sym__val_number_token3] = ACTIONS(6027), + [aux_sym__val_number_token4] = ACTIONS(6027), + [aux_sym__val_number_token5] = ACTIONS(6027), + [aux_sym__val_number_token6] = ACTIONS(6027), + [anon_sym_0b] = ACTIONS(6027), + [anon_sym_0o] = ACTIONS(6027), + [anon_sym_0x] = ACTIONS(6027), + [sym_val_date] = ACTIONS(6027), + [anon_sym_DQUOTE] = ACTIONS(6027), + [sym__str_single_quotes] = ACTIONS(6027), + [sym__str_back_ticks] = ACTIONS(6027), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6027), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6027), + [anon_sym_CARET] = ACTIONS(6027), + [anon_sym_POUND] = ACTIONS(113), }, - [2032] = { - [sym_expr_unary] = STATE(671), - [sym__expr_unary_minus] = STATE(650), - [sym_expr_binary] = STATE(671), - [sym__expr_binary_expression] = STATE(619), - [sym_expr_parenthesized] = STATE(671), - [sym__val_range] = STATE(10629), - [sym__value] = STATE(671), - [sym_val_nothing] = STATE(661), - [sym_val_bool] = STATE(605), - [sym_val_variable] = STATE(661), - [sym__var] = STATE(410), - [sym_val_number] = STATE(661), - [sym__val_number_decimal] = STATE(287), - [sym__val_number] = STATE(663), - [sym_val_duration] = STATE(661), - [sym_val_filesize] = STATE(661), - [sym_val_binary] = STATE(661), - [sym_val_string] = STATE(661), - [sym__str_double_quotes] = STATE(645), - [sym_val_interpolated] = STATE(661), - [sym__inter_single_quotes] = STATE(613), - [sym__inter_double_quotes] = STATE(615), - [sym_val_list] = STATE(661), - [sym_val_record] = STATE(661), - [sym_val_table] = STATE(661), - [sym_val_closure] = STATE(661), - [sym_unquoted] = STATE(635), - [sym__unquoted_anonymous_prefix] = STATE(10914), - [sym_comment] = STATE(2032), - [anon_sym_LBRACK] = ACTIONS(5537), - [anon_sym_LPAREN] = ACTIONS(5539), - [anon_sym_DOLLAR] = ACTIONS(5541), - [anon_sym_DASH] = ACTIONS(5543), - [anon_sym_LBRACE] = ACTIONS(5545), - [anon_sym_DOT_DOT] = ACTIONS(5547), - [anon_sym_not] = ACTIONS(5549), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5551), - [anon_sym_DOT_DOT_LT] = ACTIONS(5551), - [anon_sym_null] = ACTIONS(5553), - [anon_sym_true] = ACTIONS(5555), - [anon_sym_false] = ACTIONS(5555), - [aux_sym__val_number_decimal_token1] = ACTIONS(5557), - [aux_sym__val_number_decimal_token2] = ACTIONS(5559), - [anon_sym_DOT2] = ACTIONS(5561), - [aux_sym__val_number_decimal_token3] = ACTIONS(5563), - [aux_sym__val_number_token1] = ACTIONS(5565), - [aux_sym__val_number_token2] = ACTIONS(5565), - [aux_sym__val_number_token3] = ACTIONS(5565), - [aux_sym__val_number_token4] = ACTIONS(5567), - [aux_sym__val_number_token5] = ACTIONS(5567), - [aux_sym__val_number_token6] = ACTIONS(5567), - [anon_sym_0b] = ACTIONS(5569), - [anon_sym_0o] = ACTIONS(5571), - [anon_sym_0x] = ACTIONS(5571), - [sym_val_date] = ACTIONS(5573), - [anon_sym_DQUOTE] = ACTIONS(5575), - [sym__str_single_quotes] = ACTIONS(5577), - [sym__str_back_ticks] = ACTIONS(5577), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5581), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5583), - [anon_sym_POUND] = ACTIONS(3), + [2311] = { + [sym_path] = STATE(2617), + [sym_comment] = STATE(2311), + [aux_sym_cell_path_repeat1] = STATE(2318), + [ts_builtin_sym_end] = ACTIONS(1012), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1010), + [anon_sym_bit_DASHshr] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_not_DASHin] = ACTIONS(1010), + [anon_sym_starts_DASHwith] = ACTIONS(1010), + [anon_sym_ends_DASHwith] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1010), + [anon_sym_BANG_TILDE] = ACTIONS(1010), + [anon_sym_bit_DASHand] = ACTIONS(1010), + [anon_sym_bit_DASHxor] = ACTIONS(1010), + [anon_sym_bit_DASHor] = ACTIONS(1010), + [anon_sym_and] = ACTIONS(1010), + [anon_sym_xor] = ACTIONS(1010), + [anon_sym_or] = ACTIONS(1010), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT] = ACTIONS(5921), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_null] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym__val_number_decimal_token1] = ACTIONS(1010), + [aux_sym__val_number_decimal_token2] = ACTIONS(1010), + [anon_sym_DOT2] = ACTIONS(1010), + [aux_sym__val_number_decimal_token3] = 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(1010), + [aux_sym__val_number_token5] = ACTIONS(1010), + [aux_sym__val_number_token6] = ACTIONS(1010), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1010), + [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_POUND] = ACTIONS(113), }, - [2033] = { - [sym_expr_unary] = STATE(671), - [sym__expr_unary_minus] = STATE(650), - [sym_expr_binary] = STATE(671), - [sym__expr_binary_expression] = STATE(640), - [sym_expr_parenthesized] = STATE(671), - [sym__val_range] = STATE(10629), - [sym__value] = STATE(671), - [sym_val_nothing] = STATE(661), - [sym_val_bool] = STATE(605), - [sym_val_variable] = STATE(661), - [sym__var] = STATE(410), - [sym_val_number] = STATE(661), - [sym__val_number_decimal] = STATE(287), - [sym__val_number] = STATE(663), - [sym_val_duration] = STATE(661), - [sym_val_filesize] = STATE(661), - [sym_val_binary] = STATE(661), - [sym_val_string] = STATE(661), - [sym__str_double_quotes] = STATE(645), - [sym_val_interpolated] = STATE(661), - [sym__inter_single_quotes] = STATE(613), - [sym__inter_double_quotes] = STATE(615), - [sym_val_list] = STATE(661), - [sym_val_record] = STATE(661), - [sym_val_table] = STATE(661), - [sym_val_closure] = STATE(661), - [sym_unquoted] = STATE(644), - [sym__unquoted_anonymous_prefix] = STATE(10914), - [sym_comment] = STATE(2033), - [anon_sym_LBRACK] = ACTIONS(5537), - [anon_sym_LPAREN] = ACTIONS(5539), - [anon_sym_DOLLAR] = ACTIONS(5541), - [anon_sym_DASH] = ACTIONS(5543), - [anon_sym_LBRACE] = ACTIONS(5545), - [anon_sym_DOT_DOT] = ACTIONS(5547), - [anon_sym_not] = ACTIONS(5549), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5551), - [anon_sym_DOT_DOT_LT] = ACTIONS(5551), - [anon_sym_null] = ACTIONS(5553), - [anon_sym_true] = ACTIONS(5555), - [anon_sym_false] = ACTIONS(5555), - [aux_sym__val_number_decimal_token1] = ACTIONS(5557), - [aux_sym__val_number_decimal_token2] = ACTIONS(5559), - [anon_sym_DOT2] = ACTIONS(5561), - [aux_sym__val_number_decimal_token3] = ACTIONS(5563), - [aux_sym__val_number_token1] = ACTIONS(5565), - [aux_sym__val_number_token2] = ACTIONS(5565), - [aux_sym__val_number_token3] = ACTIONS(5565), - [aux_sym__val_number_token4] = ACTIONS(5567), - [aux_sym__val_number_token5] = ACTIONS(5567), - [aux_sym__val_number_token6] = ACTIONS(5567), - [anon_sym_0b] = ACTIONS(5569), - [anon_sym_0o] = ACTIONS(5571), - [anon_sym_0x] = ACTIONS(5571), - [sym_val_date] = ACTIONS(5573), - [anon_sym_DQUOTE] = ACTIONS(5575), - [sym__str_single_quotes] = ACTIONS(5577), - [sym__str_back_ticks] = ACTIONS(5577), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5581), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5583), - [anon_sym_POUND] = ACTIONS(3), + [2312] = { + [sym_comment] = STATE(2312), + [ts_builtin_sym_end] = ACTIONS(1277), + [anon_sym_export] = ACTIONS(1275), + [anon_sym_alias] = ACTIONS(1275), + [anon_sym_let] = ACTIONS(1275), + [anon_sym_let_DASHenv] = ACTIONS(1275), + [anon_sym_mut] = ACTIONS(1275), + [anon_sym_const] = ACTIONS(1275), + [anon_sym_SEMI] = ACTIONS(1275), + [sym_cmd_identifier] = ACTIONS(1275), + [anon_sym_LF] = ACTIONS(1277), + [anon_sym_def] = ACTIONS(1275), + [anon_sym_export_DASHenv] = ACTIONS(1275), + [anon_sym_extern] = ACTIONS(1275), + [anon_sym_module] = ACTIONS(1275), + [anon_sym_use] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(1275), + [anon_sym_DOLLAR] = ACTIONS(1275), + [anon_sym_error] = ACTIONS(1275), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_break] = ACTIONS(1275), + [anon_sym_continue] = ACTIONS(1275), + [anon_sym_for] = ACTIONS(1275), + [anon_sym_loop] = ACTIONS(1275), + [anon_sym_while] = ACTIONS(1275), + [anon_sym_do] = ACTIONS(1275), + [anon_sym_if] = ACTIONS(1275), + [anon_sym_match] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(1275), + [anon_sym_DOT_DOT] = ACTIONS(1275), + [anon_sym_try] = ACTIONS(1275), + [anon_sym_return] = ACTIONS(1275), + [anon_sym_source] = ACTIONS(1275), + [anon_sym_source_DASHenv] = ACTIONS(1275), + [anon_sym_register] = ACTIONS(1275), + [anon_sym_hide] = ACTIONS(1275), + [anon_sym_hide_DASHenv] = ACTIONS(1275), + [anon_sym_overlay] = ACTIONS(1275), + [anon_sym_STAR] = ACTIONS(1275), + [anon_sym_where] = ACTIONS(1275), + [anon_sym_not] = ACTIONS(1275), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1275), + [anon_sym_DOT_DOT_LT] = ACTIONS(1275), + [anon_sym_null] = ACTIONS(1275), + [anon_sym_true] = ACTIONS(1275), + [anon_sym_false] = ACTIONS(1275), + [aux_sym__val_number_decimal_token1] = ACTIONS(1275), + [aux_sym__val_number_decimal_token2] = ACTIONS(1275), + [anon_sym_DOT2] = ACTIONS(1275), + [aux_sym__val_number_decimal_token3] = ACTIONS(1275), + [aux_sym__val_number_token1] = ACTIONS(1275), + [aux_sym__val_number_token2] = ACTIONS(1275), + [aux_sym__val_number_token3] = ACTIONS(1275), + [aux_sym__val_number_token4] = ACTIONS(1275), + [aux_sym__val_number_token5] = ACTIONS(1275), + [aux_sym__val_number_token6] = ACTIONS(1275), + [anon_sym_0b] = ACTIONS(1275), + [anon_sym_0o] = ACTIONS(1275), + [anon_sym_0x] = ACTIONS(1275), + [sym_val_date] = ACTIONS(1275), + [anon_sym_DQUOTE] = ACTIONS(1275), + [sym__str_single_quotes] = ACTIONS(1275), + [sym__str_back_ticks] = ACTIONS(1275), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1275), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1275), + [anon_sym_CARET] = ACTIONS(1275), + [anon_sym_POUND] = ACTIONS(113), }, - [2034] = { - [sym_expr_unary] = STATE(671), - [sym__expr_unary_minus] = STATE(650), - [sym_expr_binary] = STATE(671), - [sym__expr_binary_expression] = STATE(669), - [sym_expr_parenthesized] = STATE(671), - [sym__val_range] = STATE(10629), - [sym__value] = STATE(671), - [sym_val_nothing] = STATE(661), - [sym_val_bool] = STATE(605), - [sym_val_variable] = STATE(661), - [sym__var] = STATE(410), - [sym_val_number] = STATE(661), - [sym__val_number_decimal] = STATE(287), - [sym__val_number] = STATE(663), - [sym_val_duration] = STATE(661), - [sym_val_filesize] = STATE(661), - [sym_val_binary] = STATE(661), - [sym_val_string] = STATE(661), - [sym__str_double_quotes] = STATE(645), - [sym_val_interpolated] = STATE(661), - [sym__inter_single_quotes] = STATE(613), - [sym__inter_double_quotes] = STATE(615), - [sym_val_list] = STATE(661), - [sym_val_record] = STATE(661), - [sym_val_table] = STATE(661), - [sym_val_closure] = STATE(661), - [sym_unquoted] = STATE(679), - [sym__unquoted_anonymous_prefix] = STATE(10914), - [sym_comment] = STATE(2034), - [anon_sym_LBRACK] = ACTIONS(5537), - [anon_sym_LPAREN] = ACTIONS(5539), - [anon_sym_DOLLAR] = ACTIONS(5541), - [anon_sym_DASH] = ACTIONS(5543), - [anon_sym_LBRACE] = ACTIONS(5545), - [anon_sym_DOT_DOT] = ACTIONS(5547), - [anon_sym_not] = ACTIONS(5549), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5551), - [anon_sym_DOT_DOT_LT] = ACTIONS(5551), - [anon_sym_null] = ACTIONS(5553), - [anon_sym_true] = ACTIONS(5555), - [anon_sym_false] = ACTIONS(5555), - [aux_sym__val_number_decimal_token1] = ACTIONS(5557), - [aux_sym__val_number_decimal_token2] = ACTIONS(5559), - [anon_sym_DOT2] = ACTIONS(5561), - [aux_sym__val_number_decimal_token3] = ACTIONS(5563), - [aux_sym__val_number_token1] = ACTIONS(5565), - [aux_sym__val_number_token2] = ACTIONS(5565), - [aux_sym__val_number_token3] = ACTIONS(5565), - [aux_sym__val_number_token4] = ACTIONS(5567), - [aux_sym__val_number_token5] = ACTIONS(5567), - [aux_sym__val_number_token6] = ACTIONS(5567), - [anon_sym_0b] = ACTIONS(5569), - [anon_sym_0o] = ACTIONS(5571), - [anon_sym_0x] = ACTIONS(5571), - [sym_val_date] = ACTIONS(5573), - [anon_sym_DQUOTE] = ACTIONS(5575), - [sym__str_single_quotes] = ACTIONS(5577), - [sym__str_back_ticks] = ACTIONS(5577), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5581), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5583), - [anon_sym_POUND] = ACTIONS(3), + [2313] = { + [sym_comment] = STATE(2313), + [anon_sym_export] = ACTIONS(6027), + [anon_sym_alias] = ACTIONS(6027), + [anon_sym_let] = ACTIONS(6027), + [anon_sym_let_DASHenv] = ACTIONS(6027), + [anon_sym_mut] = ACTIONS(6027), + [anon_sym_const] = ACTIONS(6027), + [anon_sym_SEMI] = ACTIONS(6027), + [sym_cmd_identifier] = ACTIONS(6027), + [anon_sym_LF] = ACTIONS(6029), + [anon_sym_def] = ACTIONS(6027), + [anon_sym_export_DASHenv] = ACTIONS(6027), + [anon_sym_extern] = ACTIONS(6027), + [anon_sym_module] = ACTIONS(6027), + [anon_sym_use] = ACTIONS(6027), + [anon_sym_LBRACK] = ACTIONS(6027), + [anon_sym_LPAREN] = ACTIONS(6027), + [anon_sym_RPAREN] = ACTIONS(6027), + [anon_sym_DOLLAR] = ACTIONS(6027), + [anon_sym_error] = ACTIONS(6027), + [anon_sym_DASH] = ACTIONS(6027), + [anon_sym_break] = ACTIONS(6027), + [anon_sym_continue] = ACTIONS(6027), + [anon_sym_for] = ACTIONS(6027), + [anon_sym_loop] = ACTIONS(6027), + [anon_sym_while] = ACTIONS(6027), + [anon_sym_do] = ACTIONS(6027), + [anon_sym_if] = ACTIONS(6027), + [anon_sym_match] = ACTIONS(6027), + [anon_sym_LBRACE] = ACTIONS(6027), + [anon_sym_RBRACE] = ACTIONS(6027), + [anon_sym_DOT_DOT] = ACTIONS(6027), + [anon_sym_try] = ACTIONS(6027), + [anon_sym_return] = ACTIONS(6027), + [anon_sym_source] = ACTIONS(6027), + [anon_sym_source_DASHenv] = ACTIONS(6027), + [anon_sym_register] = ACTIONS(6027), + [anon_sym_hide] = ACTIONS(6027), + [anon_sym_hide_DASHenv] = ACTIONS(6027), + [anon_sym_overlay] = ACTIONS(6027), + [anon_sym_where] = ACTIONS(6027), + [anon_sym_not] = ACTIONS(6027), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6027), + [anon_sym_DOT_DOT_LT] = ACTIONS(6027), + [anon_sym_null] = ACTIONS(6027), + [anon_sym_true] = ACTIONS(6027), + [anon_sym_false] = ACTIONS(6027), + [aux_sym__val_number_decimal_token1] = ACTIONS(6027), + [aux_sym__val_number_decimal_token2] = ACTIONS(6027), + [anon_sym_DOT2] = ACTIONS(6027), + [aux_sym__val_number_decimal_token3] = ACTIONS(6027), + [aux_sym__val_number_token1] = ACTIONS(6027), + [aux_sym__val_number_token2] = ACTIONS(6027), + [aux_sym__val_number_token3] = ACTIONS(6027), + [aux_sym__val_number_token4] = ACTIONS(6027), + [aux_sym__val_number_token5] = ACTIONS(6027), + [aux_sym__val_number_token6] = ACTIONS(6027), + [anon_sym_0b] = ACTIONS(6027), + [anon_sym_0o] = ACTIONS(6027), + [anon_sym_0x] = ACTIONS(6027), + [sym_val_date] = ACTIONS(6027), + [anon_sym_DQUOTE] = ACTIONS(6027), + [sym__str_single_quotes] = ACTIONS(6027), + [sym__str_back_ticks] = ACTIONS(6027), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6027), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6027), + [anon_sym_CARET] = ACTIONS(6027), + [anon_sym_POUND] = ACTIONS(113), }, - [2035] = { - [sym_expr_unary] = STATE(671), - [sym__expr_unary_minus] = STATE(650), - [sym_expr_binary] = STATE(671), - [sym__expr_binary_expression] = STATE(660), - [sym_expr_parenthesized] = STATE(671), - [sym__val_range] = STATE(10629), - [sym__value] = STATE(671), - [sym_val_nothing] = STATE(661), - [sym_val_bool] = STATE(605), - [sym_val_variable] = STATE(661), - [sym__var] = STATE(410), - [sym_val_number] = STATE(661), - [sym__val_number_decimal] = STATE(287), - [sym__val_number] = STATE(663), - [sym_val_duration] = STATE(661), - [sym_val_filesize] = STATE(661), - [sym_val_binary] = STATE(661), - [sym_val_string] = STATE(661), - [sym__str_double_quotes] = STATE(645), - [sym_val_interpolated] = STATE(661), - [sym__inter_single_quotes] = STATE(613), - [sym__inter_double_quotes] = STATE(615), - [sym_val_list] = STATE(661), - [sym_val_record] = STATE(661), - [sym_val_table] = STATE(661), - [sym_val_closure] = STATE(661), - [sym_unquoted] = STATE(664), - [sym__unquoted_anonymous_prefix] = STATE(10914), - [sym_comment] = STATE(2035), - [anon_sym_LBRACK] = ACTIONS(5537), - [anon_sym_LPAREN] = ACTIONS(5539), - [anon_sym_DOLLAR] = ACTIONS(5541), - [anon_sym_DASH] = ACTIONS(5543), - [anon_sym_LBRACE] = ACTIONS(5545), - [anon_sym_DOT_DOT] = ACTIONS(5547), - [anon_sym_not] = ACTIONS(5549), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5551), - [anon_sym_DOT_DOT_LT] = ACTIONS(5551), - [anon_sym_null] = ACTIONS(5553), - [anon_sym_true] = ACTIONS(5555), - [anon_sym_false] = ACTIONS(5555), - [aux_sym__val_number_decimal_token1] = ACTIONS(5557), - [aux_sym__val_number_decimal_token2] = ACTIONS(5559), - [anon_sym_DOT2] = ACTIONS(5561), - [aux_sym__val_number_decimal_token3] = ACTIONS(5563), - [aux_sym__val_number_token1] = ACTIONS(5565), - [aux_sym__val_number_token2] = ACTIONS(5565), - [aux_sym__val_number_token3] = ACTIONS(5565), - [aux_sym__val_number_token4] = ACTIONS(5567), - [aux_sym__val_number_token5] = ACTIONS(5567), - [aux_sym__val_number_token6] = ACTIONS(5567), - [anon_sym_0b] = ACTIONS(5569), - [anon_sym_0o] = ACTIONS(5571), - [anon_sym_0x] = ACTIONS(5571), - [sym_val_date] = ACTIONS(5573), - [anon_sym_DQUOTE] = ACTIONS(5575), - [sym__str_single_quotes] = ACTIONS(5577), - [sym__str_back_ticks] = ACTIONS(5577), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5581), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5583), - [anon_sym_POUND] = ACTIONS(3), + [2314] = { + [sym_comment] = STATE(2314), + [anon_sym_export] = ACTIONS(5940), + [anon_sym_alias] = ACTIONS(5940), + [anon_sym_let] = ACTIONS(5940), + [anon_sym_let_DASHenv] = ACTIONS(5940), + [anon_sym_mut] = ACTIONS(5940), + [anon_sym_const] = ACTIONS(5940), + [anon_sym_SEMI] = ACTIONS(5940), + [sym_cmd_identifier] = ACTIONS(5940), + [anon_sym_LF] = ACTIONS(5942), + [anon_sym_def] = ACTIONS(5940), + [anon_sym_export_DASHenv] = ACTIONS(5940), + [anon_sym_extern] = ACTIONS(5940), + [anon_sym_module] = ACTIONS(5940), + [anon_sym_use] = ACTIONS(5940), + [anon_sym_LBRACK] = ACTIONS(5940), + [anon_sym_LPAREN] = ACTIONS(5940), + [anon_sym_RPAREN] = ACTIONS(5940), + [anon_sym_DOLLAR] = ACTIONS(5940), + [anon_sym_error] = ACTIONS(5940), + [anon_sym_DASH] = ACTIONS(5940), + [anon_sym_break] = ACTIONS(5940), + [anon_sym_continue] = ACTIONS(5940), + [anon_sym_for] = ACTIONS(5940), + [anon_sym_loop] = ACTIONS(5940), + [anon_sym_while] = ACTIONS(5940), + [anon_sym_do] = ACTIONS(5940), + [anon_sym_if] = ACTIONS(5940), + [anon_sym_match] = ACTIONS(5940), + [anon_sym_LBRACE] = ACTIONS(5940), + [anon_sym_RBRACE] = ACTIONS(5940), + [anon_sym_DOT_DOT] = ACTIONS(5940), + [anon_sym_try] = ACTIONS(5940), + [anon_sym_return] = ACTIONS(5940), + [anon_sym_source] = ACTIONS(5940), + [anon_sym_source_DASHenv] = ACTIONS(5940), + [anon_sym_register] = ACTIONS(5940), + [anon_sym_hide] = ACTIONS(5940), + [anon_sym_hide_DASHenv] = ACTIONS(5940), + [anon_sym_overlay] = ACTIONS(5940), + [anon_sym_where] = ACTIONS(5940), + [anon_sym_not] = ACTIONS(5940), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5940), + [anon_sym_DOT_DOT_LT] = ACTIONS(5940), + [anon_sym_null] = ACTIONS(5940), + [anon_sym_true] = ACTIONS(5940), + [anon_sym_false] = ACTIONS(5940), + [aux_sym__val_number_decimal_token1] = ACTIONS(5940), + [aux_sym__val_number_decimal_token2] = ACTIONS(5940), + [anon_sym_DOT2] = ACTIONS(5940), + [aux_sym__val_number_decimal_token3] = ACTIONS(5940), + [aux_sym__val_number_token1] = ACTIONS(5940), + [aux_sym__val_number_token2] = ACTIONS(5940), + [aux_sym__val_number_token3] = ACTIONS(5940), + [aux_sym__val_number_token4] = ACTIONS(5940), + [aux_sym__val_number_token5] = ACTIONS(5940), + [aux_sym__val_number_token6] = ACTIONS(5940), + [anon_sym_0b] = ACTIONS(5940), + [anon_sym_0o] = ACTIONS(5940), + [anon_sym_0x] = ACTIONS(5940), + [sym_val_date] = ACTIONS(5940), + [anon_sym_DQUOTE] = ACTIONS(5940), + [sym__str_single_quotes] = ACTIONS(5940), + [sym__str_back_ticks] = ACTIONS(5940), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5940), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5940), + [anon_sym_CARET] = ACTIONS(5940), + [anon_sym_POUND] = ACTIONS(113), }, - [2036] = { - [sym_expr_unary] = STATE(671), - [sym__expr_unary_minus] = STATE(650), - [sym_expr_binary] = STATE(671), - [sym__expr_binary_expression] = STATE(651), - [sym_expr_parenthesized] = STATE(671), - [sym__val_range] = STATE(10629), - [sym__value] = STATE(671), - [sym_val_nothing] = STATE(661), - [sym_val_bool] = STATE(605), - [sym_val_variable] = STATE(661), - [sym__var] = STATE(410), - [sym_val_number] = STATE(661), - [sym__val_number_decimal] = STATE(287), - [sym__val_number] = STATE(663), - [sym_val_duration] = STATE(661), - [sym_val_filesize] = STATE(661), - [sym_val_binary] = STATE(661), - [sym_val_string] = STATE(661), - [sym__str_double_quotes] = STATE(645), - [sym_val_interpolated] = STATE(661), - [sym__inter_single_quotes] = STATE(613), - [sym__inter_double_quotes] = STATE(615), - [sym_val_list] = STATE(661), - [sym_val_record] = STATE(661), - [sym_val_table] = STATE(661), - [sym_val_closure] = STATE(661), - [sym_unquoted] = STATE(666), - [sym__unquoted_anonymous_prefix] = STATE(10914), - [sym_comment] = STATE(2036), - [anon_sym_LBRACK] = ACTIONS(5537), - [anon_sym_LPAREN] = ACTIONS(5539), - [anon_sym_DOLLAR] = ACTIONS(5541), - [anon_sym_DASH] = ACTIONS(5543), - [anon_sym_LBRACE] = ACTIONS(5545), - [anon_sym_DOT_DOT] = ACTIONS(5547), - [anon_sym_not] = ACTIONS(5549), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5551), - [anon_sym_DOT_DOT_LT] = ACTIONS(5551), - [anon_sym_null] = ACTIONS(5553), - [anon_sym_true] = ACTIONS(5555), - [anon_sym_false] = ACTIONS(5555), - [aux_sym__val_number_decimal_token1] = ACTIONS(5557), - [aux_sym__val_number_decimal_token2] = ACTIONS(5559), - [anon_sym_DOT2] = ACTIONS(5561), - [aux_sym__val_number_decimal_token3] = ACTIONS(5563), - [aux_sym__val_number_token1] = ACTIONS(5565), - [aux_sym__val_number_token2] = ACTIONS(5565), - [aux_sym__val_number_token3] = ACTIONS(5565), - [aux_sym__val_number_token4] = ACTIONS(5567), - [aux_sym__val_number_token5] = ACTIONS(5567), - [aux_sym__val_number_token6] = ACTIONS(5567), - [anon_sym_0b] = ACTIONS(5569), - [anon_sym_0o] = ACTIONS(5571), - [anon_sym_0x] = ACTIONS(5571), - [sym_val_date] = ACTIONS(5573), - [anon_sym_DQUOTE] = ACTIONS(5575), - [sym__str_single_quotes] = ACTIONS(5577), - [sym__str_back_ticks] = ACTIONS(5577), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5581), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5583), - [anon_sym_POUND] = ACTIONS(3), + [2315] = { + [sym_comment] = STATE(2315), + [anon_sym_export] = ACTIONS(6031), + [anon_sym_alias] = ACTIONS(6031), + [anon_sym_let] = ACTIONS(6031), + [anon_sym_let_DASHenv] = ACTIONS(6031), + [anon_sym_mut] = ACTIONS(6031), + [anon_sym_const] = ACTIONS(6031), + [anon_sym_SEMI] = ACTIONS(6031), + [sym_cmd_identifier] = ACTIONS(6031), + [anon_sym_LF] = ACTIONS(6033), + [anon_sym_def] = ACTIONS(6031), + [anon_sym_export_DASHenv] = ACTIONS(6031), + [anon_sym_extern] = ACTIONS(6031), + [anon_sym_module] = ACTIONS(6031), + [anon_sym_use] = ACTIONS(6031), + [anon_sym_LBRACK] = ACTIONS(6031), + [anon_sym_LPAREN] = ACTIONS(6031), + [anon_sym_RPAREN] = ACTIONS(6031), + [anon_sym_DOLLAR] = ACTIONS(6031), + [anon_sym_error] = ACTIONS(6031), + [anon_sym_DASH] = ACTIONS(6031), + [anon_sym_break] = ACTIONS(6031), + [anon_sym_continue] = ACTIONS(6031), + [anon_sym_for] = ACTIONS(6031), + [anon_sym_loop] = ACTIONS(6031), + [anon_sym_while] = ACTIONS(6031), + [anon_sym_do] = ACTIONS(6031), + [anon_sym_if] = ACTIONS(6031), + [anon_sym_match] = ACTIONS(6031), + [anon_sym_LBRACE] = ACTIONS(6031), + [anon_sym_RBRACE] = ACTIONS(6031), + [anon_sym_DOT_DOT] = ACTIONS(6031), + [anon_sym_try] = ACTIONS(6031), + [anon_sym_return] = ACTIONS(6031), + [anon_sym_source] = ACTIONS(6031), + [anon_sym_source_DASHenv] = ACTIONS(6031), + [anon_sym_register] = ACTIONS(6031), + [anon_sym_hide] = ACTIONS(6031), + [anon_sym_hide_DASHenv] = ACTIONS(6031), + [anon_sym_overlay] = ACTIONS(6031), + [anon_sym_where] = ACTIONS(6031), + [anon_sym_not] = ACTIONS(6031), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6031), + [anon_sym_DOT_DOT_LT] = ACTIONS(6031), + [anon_sym_null] = ACTIONS(6031), + [anon_sym_true] = ACTIONS(6031), + [anon_sym_false] = ACTIONS(6031), + [aux_sym__val_number_decimal_token1] = ACTIONS(6031), + [aux_sym__val_number_decimal_token2] = ACTIONS(6031), + [anon_sym_DOT2] = ACTIONS(6031), + [aux_sym__val_number_decimal_token3] = ACTIONS(6031), + [aux_sym__val_number_token1] = ACTIONS(6031), + [aux_sym__val_number_token2] = ACTIONS(6031), + [aux_sym__val_number_token3] = ACTIONS(6031), + [aux_sym__val_number_token4] = ACTIONS(6031), + [aux_sym__val_number_token5] = ACTIONS(6031), + [aux_sym__val_number_token6] = ACTIONS(6031), + [anon_sym_0b] = ACTIONS(6031), + [anon_sym_0o] = ACTIONS(6031), + [anon_sym_0x] = ACTIONS(6031), + [sym_val_date] = ACTIONS(6031), + [anon_sym_DQUOTE] = ACTIONS(6031), + [sym__str_single_quotes] = ACTIONS(6031), + [sym__str_back_ticks] = ACTIONS(6031), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6031), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6031), + [anon_sym_CARET] = ACTIONS(6031), + [anon_sym_POUND] = ACTIONS(113), }, - [2037] = { - [sym_expr_unary] = STATE(671), - [sym__expr_unary_minus] = STATE(650), - [sym_expr_binary] = STATE(671), - [sym__expr_binary_expression] = STATE(675), - [sym_expr_parenthesized] = STATE(671), - [sym__val_range] = STATE(10629), - [sym__value] = STATE(671), - [sym_val_nothing] = STATE(661), - [sym_val_bool] = STATE(605), - [sym_val_variable] = STATE(661), - [sym__var] = STATE(410), - [sym_val_number] = STATE(661), - [sym__val_number_decimal] = STATE(287), - [sym__val_number] = STATE(663), - [sym_val_duration] = STATE(661), - [sym_val_filesize] = STATE(661), - [sym_val_binary] = STATE(661), - [sym_val_string] = STATE(661), - [sym__str_double_quotes] = STATE(645), - [sym_val_interpolated] = STATE(661), - [sym__inter_single_quotes] = STATE(613), - [sym__inter_double_quotes] = STATE(615), - [sym_val_list] = STATE(661), - [sym_val_record] = STATE(661), - [sym_val_table] = STATE(661), - [sym_val_closure] = STATE(661), - [sym_unquoted] = STATE(616), - [sym__unquoted_anonymous_prefix] = STATE(10914), - [sym_comment] = STATE(2037), - [anon_sym_LBRACK] = ACTIONS(5537), - [anon_sym_LPAREN] = ACTIONS(5539), - [anon_sym_DOLLAR] = ACTIONS(5541), - [anon_sym_DASH] = ACTIONS(5543), - [anon_sym_LBRACE] = ACTIONS(5545), - [anon_sym_DOT_DOT] = ACTIONS(5547), - [anon_sym_not] = ACTIONS(5549), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5551), - [anon_sym_DOT_DOT_LT] = ACTIONS(5551), - [anon_sym_null] = ACTIONS(5553), - [anon_sym_true] = ACTIONS(5555), - [anon_sym_false] = ACTIONS(5555), - [aux_sym__val_number_decimal_token1] = ACTIONS(5557), - [aux_sym__val_number_decimal_token2] = ACTIONS(5559), - [anon_sym_DOT2] = ACTIONS(5561), - [aux_sym__val_number_decimal_token3] = ACTIONS(5563), - [aux_sym__val_number_token1] = ACTIONS(5565), - [aux_sym__val_number_token2] = ACTIONS(5565), - [aux_sym__val_number_token3] = ACTIONS(5565), - [aux_sym__val_number_token4] = ACTIONS(5567), - [aux_sym__val_number_token5] = ACTIONS(5567), - [aux_sym__val_number_token6] = ACTIONS(5567), - [anon_sym_0b] = ACTIONS(5569), - [anon_sym_0o] = ACTIONS(5571), - [anon_sym_0x] = ACTIONS(5571), - [sym_val_date] = ACTIONS(5573), - [anon_sym_DQUOTE] = ACTIONS(5575), - [sym__str_single_quotes] = ACTIONS(5577), - [sym__str_back_ticks] = ACTIONS(5577), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5581), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5583), - [anon_sym_POUND] = ACTIONS(3), + [2316] = { + [sym_comment] = STATE(2316), + [anon_sym_export] = ACTIONS(5940), + [anon_sym_alias] = ACTIONS(5940), + [anon_sym_let] = ACTIONS(5940), + [anon_sym_let_DASHenv] = ACTIONS(5940), + [anon_sym_mut] = ACTIONS(5940), + [anon_sym_const] = ACTIONS(5940), + [anon_sym_SEMI] = ACTIONS(5940), + [sym_cmd_identifier] = ACTIONS(5940), + [anon_sym_LF] = ACTIONS(5942), + [anon_sym_def] = ACTIONS(5940), + [anon_sym_export_DASHenv] = ACTIONS(5940), + [anon_sym_extern] = ACTIONS(5940), + [anon_sym_module] = ACTIONS(5940), + [anon_sym_use] = ACTIONS(5940), + [anon_sym_LBRACK] = ACTIONS(5940), + [anon_sym_LPAREN] = ACTIONS(5940), + [anon_sym_RPAREN] = ACTIONS(5940), + [anon_sym_DOLLAR] = ACTIONS(5940), + [anon_sym_error] = ACTIONS(5940), + [anon_sym_DASH] = ACTIONS(5940), + [anon_sym_break] = ACTIONS(5940), + [anon_sym_continue] = ACTIONS(5940), + [anon_sym_for] = ACTIONS(5940), + [anon_sym_loop] = ACTIONS(5940), + [anon_sym_while] = ACTIONS(5940), + [anon_sym_do] = ACTIONS(5940), + [anon_sym_if] = ACTIONS(5940), + [anon_sym_match] = ACTIONS(5940), + [anon_sym_LBRACE] = ACTIONS(5940), + [anon_sym_RBRACE] = ACTIONS(5940), + [anon_sym_DOT_DOT] = ACTIONS(5940), + [anon_sym_try] = ACTIONS(5940), + [anon_sym_return] = ACTIONS(5940), + [anon_sym_source] = ACTIONS(5940), + [anon_sym_source_DASHenv] = ACTIONS(5940), + [anon_sym_register] = ACTIONS(5940), + [anon_sym_hide] = ACTIONS(5940), + [anon_sym_hide_DASHenv] = ACTIONS(5940), + [anon_sym_overlay] = ACTIONS(5940), + [anon_sym_where] = ACTIONS(5940), + [anon_sym_not] = ACTIONS(5940), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5940), + [anon_sym_DOT_DOT_LT] = ACTIONS(5940), + [anon_sym_null] = ACTIONS(5940), + [anon_sym_true] = ACTIONS(5940), + [anon_sym_false] = ACTIONS(5940), + [aux_sym__val_number_decimal_token1] = ACTIONS(5940), + [aux_sym__val_number_decimal_token2] = ACTIONS(5940), + [anon_sym_DOT2] = ACTIONS(5940), + [aux_sym__val_number_decimal_token3] = ACTIONS(5940), + [aux_sym__val_number_token1] = ACTIONS(5940), + [aux_sym__val_number_token2] = ACTIONS(5940), + [aux_sym__val_number_token3] = ACTIONS(5940), + [aux_sym__val_number_token4] = ACTIONS(5940), + [aux_sym__val_number_token5] = ACTIONS(5940), + [aux_sym__val_number_token6] = ACTIONS(5940), + [anon_sym_0b] = ACTIONS(5940), + [anon_sym_0o] = ACTIONS(5940), + [anon_sym_0x] = ACTIONS(5940), + [sym_val_date] = ACTIONS(5940), + [anon_sym_DQUOTE] = ACTIONS(5940), + [sym__str_single_quotes] = ACTIONS(5940), + [sym__str_back_ticks] = ACTIONS(5940), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5940), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5940), + [anon_sym_CARET] = ACTIONS(5940), + [anon_sym_POUND] = ACTIONS(113), }, - [2038] = { - [sym_expr_unary] = STATE(6485), - [sym__expr_unary_minus] = STATE(6430), - [sym_expr_binary] = STATE(6485), - [sym__expr_binary_expression] = STATE(6698), - [sym_expr_parenthesized] = STATE(6485), - [sym__val_range] = STATE(10636), - [sym__value] = STATE(6485), - [sym_val_nothing] = STATE(6590), - [sym_val_bool] = STATE(6483), - [sym_val_variable] = STATE(6590), - [sym__var] = STATE(5737), - [sym_val_number] = STATE(6590), - [sym__val_number_decimal] = STATE(5187), - [sym__val_number] = STATE(6519), - [sym_val_duration] = STATE(6590), - [sym_val_filesize] = STATE(6590), - [sym_val_binary] = STATE(6590), - [sym_val_string] = STATE(6590), - [sym__str_double_quotes] = STATE(6540), - [sym_val_interpolated] = STATE(6590), - [sym__inter_single_quotes] = STATE(6464), - [sym__inter_double_quotes] = STATE(6419), - [sym_val_list] = STATE(6590), - [sym_val_record] = STATE(6590), - [sym_val_table] = STATE(6590), - [sym_val_closure] = STATE(6590), - [sym_unquoted] = STATE(6489), - [sym__unquoted_anonymous_prefix] = STATE(10827), - [sym_comment] = STATE(2038), - [anon_sym_LBRACK] = ACTIONS(4051), - [anon_sym_LPAREN] = ACTIONS(5585), - [anon_sym_DOLLAR] = ACTIONS(5587), - [anon_sym_DASH] = ACTIONS(4053), - [anon_sym_LBRACE] = ACTIONS(4055), - [anon_sym_DOT_DOT] = ACTIONS(5589), - [anon_sym_not] = ACTIONS(4059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5591), - [anon_sym_DOT_DOT_LT] = ACTIONS(5591), - [anon_sym_null] = ACTIONS(5593), - [anon_sym_true] = ACTIONS(5595), - [anon_sym_false] = ACTIONS(5595), - [aux_sym__val_number_decimal_token1] = ACTIONS(5597), - [aux_sym__val_number_decimal_token2] = ACTIONS(5599), - [anon_sym_DOT2] = ACTIONS(5601), - [aux_sym__val_number_decimal_token3] = ACTIONS(5603), - [aux_sym__val_number_token1] = ACTIONS(2764), - [aux_sym__val_number_token2] = ACTIONS(2764), - [aux_sym__val_number_token3] = ACTIONS(2764), - [aux_sym__val_number_token4] = ACTIONS(5605), - [aux_sym__val_number_token5] = ACTIONS(5605), - [aux_sym__val_number_token6] = ACTIONS(5605), - [anon_sym_0b] = ACTIONS(2768), - [anon_sym_0o] = ACTIONS(2770), - [anon_sym_0x] = ACTIONS(2770), - [sym_val_date] = ACTIONS(5607), - [anon_sym_DQUOTE] = ACTIONS(4079), - [sym__str_single_quotes] = ACTIONS(4081), - [sym__str_back_ticks] = ACTIONS(4081), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5609), - [anon_sym_POUND] = ACTIONS(3), + [2317] = { + [sym_comment] = STATE(2317), + [anon_sym_export] = ACTIONS(6035), + [anon_sym_alias] = ACTIONS(6035), + [anon_sym_let] = ACTIONS(6035), + [anon_sym_let_DASHenv] = ACTIONS(6035), + [anon_sym_mut] = ACTIONS(6035), + [anon_sym_const] = ACTIONS(6035), + [anon_sym_SEMI] = ACTIONS(6035), + [sym_cmd_identifier] = ACTIONS(6035), + [anon_sym_LF] = ACTIONS(6037), + [anon_sym_def] = ACTIONS(6035), + [anon_sym_export_DASHenv] = ACTIONS(6035), + [anon_sym_extern] = ACTIONS(6035), + [anon_sym_module] = ACTIONS(6035), + [anon_sym_use] = ACTIONS(6035), + [anon_sym_LBRACK] = ACTIONS(6035), + [anon_sym_LPAREN] = ACTIONS(6035), + [anon_sym_RPAREN] = ACTIONS(6035), + [anon_sym_DOLLAR] = ACTIONS(6035), + [anon_sym_error] = ACTIONS(6035), + [anon_sym_DASH] = ACTIONS(6035), + [anon_sym_break] = ACTIONS(6035), + [anon_sym_continue] = ACTIONS(6035), + [anon_sym_for] = ACTIONS(6035), + [anon_sym_loop] = ACTIONS(6035), + [anon_sym_while] = ACTIONS(6035), + [anon_sym_do] = ACTIONS(6035), + [anon_sym_if] = ACTIONS(6035), + [anon_sym_match] = ACTIONS(6035), + [anon_sym_LBRACE] = ACTIONS(6035), + [anon_sym_RBRACE] = ACTIONS(6035), + [anon_sym_DOT_DOT] = ACTIONS(6035), + [anon_sym_try] = ACTIONS(6035), + [anon_sym_return] = ACTIONS(6035), + [anon_sym_source] = ACTIONS(6035), + [anon_sym_source_DASHenv] = ACTIONS(6035), + [anon_sym_register] = ACTIONS(6035), + [anon_sym_hide] = ACTIONS(6035), + [anon_sym_hide_DASHenv] = ACTIONS(6035), + [anon_sym_overlay] = ACTIONS(6035), + [anon_sym_where] = ACTIONS(6035), + [anon_sym_not] = ACTIONS(6035), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6035), + [anon_sym_DOT_DOT_LT] = ACTIONS(6035), + [anon_sym_null] = ACTIONS(6035), + [anon_sym_true] = ACTIONS(6035), + [anon_sym_false] = ACTIONS(6035), + [aux_sym__val_number_decimal_token1] = ACTIONS(6035), + [aux_sym__val_number_decimal_token2] = ACTIONS(6035), + [anon_sym_DOT2] = ACTIONS(6035), + [aux_sym__val_number_decimal_token3] = ACTIONS(6035), + [aux_sym__val_number_token1] = ACTIONS(6035), + [aux_sym__val_number_token2] = ACTIONS(6035), + [aux_sym__val_number_token3] = ACTIONS(6035), + [aux_sym__val_number_token4] = ACTIONS(6035), + [aux_sym__val_number_token5] = ACTIONS(6035), + [aux_sym__val_number_token6] = ACTIONS(6035), + [anon_sym_0b] = ACTIONS(6035), + [anon_sym_0o] = ACTIONS(6035), + [anon_sym_0x] = ACTIONS(6035), + [sym_val_date] = ACTIONS(6035), + [anon_sym_DQUOTE] = ACTIONS(6035), + [sym__str_single_quotes] = ACTIONS(6035), + [sym__str_back_ticks] = ACTIONS(6035), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6035), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6035), + [anon_sym_CARET] = ACTIONS(6035), + [anon_sym_POUND] = ACTIONS(113), }, - [2039] = { - [sym_expr_unary] = STATE(6485), - [sym__expr_unary_minus] = STATE(6430), - [sym_expr_binary] = STATE(6485), - [sym__expr_binary_expression] = STATE(6635), - [sym_expr_parenthesized] = STATE(6485), - [sym__val_range] = STATE(10636), - [sym__value] = STATE(6485), - [sym_val_nothing] = STATE(6590), - [sym_val_bool] = STATE(6483), - [sym_val_variable] = STATE(6590), - [sym__var] = STATE(5737), - [sym_val_number] = STATE(6590), - [sym__val_number_decimal] = STATE(5187), - [sym__val_number] = STATE(6519), - [sym_val_duration] = STATE(6590), - [sym_val_filesize] = STATE(6590), - [sym_val_binary] = STATE(6590), - [sym_val_string] = STATE(6590), - [sym__str_double_quotes] = STATE(6540), - [sym_val_interpolated] = STATE(6590), - [sym__inter_single_quotes] = STATE(6464), - [sym__inter_double_quotes] = STATE(6419), - [sym_val_list] = STATE(6590), - [sym_val_record] = STATE(6590), - [sym_val_table] = STATE(6590), - [sym_val_closure] = STATE(6590), - [sym_unquoted] = STATE(6492), - [sym__unquoted_anonymous_prefix] = STATE(10827), - [sym_comment] = STATE(2039), - [anon_sym_LBRACK] = ACTIONS(4051), - [anon_sym_LPAREN] = ACTIONS(5585), - [anon_sym_DOLLAR] = ACTIONS(5587), - [anon_sym_DASH] = ACTIONS(4053), - [anon_sym_LBRACE] = ACTIONS(4055), - [anon_sym_DOT_DOT] = ACTIONS(5589), - [anon_sym_not] = ACTIONS(4059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5591), - [anon_sym_DOT_DOT_LT] = ACTIONS(5591), - [anon_sym_null] = ACTIONS(5593), - [anon_sym_true] = ACTIONS(5595), - [anon_sym_false] = ACTIONS(5595), - [aux_sym__val_number_decimal_token1] = ACTIONS(5597), - [aux_sym__val_number_decimal_token2] = ACTIONS(5599), - [anon_sym_DOT2] = ACTIONS(5601), - [aux_sym__val_number_decimal_token3] = ACTIONS(5603), - [aux_sym__val_number_token1] = ACTIONS(2764), - [aux_sym__val_number_token2] = ACTIONS(2764), - [aux_sym__val_number_token3] = ACTIONS(2764), - [aux_sym__val_number_token4] = ACTIONS(5605), - [aux_sym__val_number_token5] = ACTIONS(5605), - [aux_sym__val_number_token6] = ACTIONS(5605), - [anon_sym_0b] = ACTIONS(2768), - [anon_sym_0o] = ACTIONS(2770), - [anon_sym_0x] = ACTIONS(2770), - [sym_val_date] = ACTIONS(5607), - [anon_sym_DQUOTE] = ACTIONS(4079), - [sym__str_single_quotes] = ACTIONS(4081), - [sym__str_back_ticks] = ACTIONS(4081), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5609), - [anon_sym_POUND] = ACTIONS(3), + [2318] = { + [sym_path] = STATE(2617), + [sym_comment] = STATE(2318), + [aux_sym_cell_path_repeat1] = STATE(2320), + [ts_builtin_sym_end] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1006), + [anon_sym_LF] = ACTIONS(1008), + [anon_sym_LBRACK] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1006), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_GT] = ACTIONS(1006), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_in] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_DOT_DOT] = ACTIONS(1006), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_STAR_STAR] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_mod] = ACTIONS(1006), + [anon_sym_SLASH_SLASH] = ACTIONS(1006), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_bit_DASHshl] = ACTIONS(1006), + [anon_sym_bit_DASHshr] = ACTIONS(1006), + [anon_sym_EQ_EQ] = ACTIONS(1006), + [anon_sym_BANG_EQ] = ACTIONS(1006), + [anon_sym_LT2] = ACTIONS(1006), + [anon_sym_LT_EQ] = ACTIONS(1006), + [anon_sym_GT_EQ] = ACTIONS(1006), + [anon_sym_not_DASHin] = ACTIONS(1006), + [anon_sym_starts_DASHwith] = ACTIONS(1006), + [anon_sym_ends_DASHwith] = ACTIONS(1006), + [anon_sym_EQ_TILDE] = ACTIONS(1006), + [anon_sym_BANG_TILDE] = ACTIONS(1006), + [anon_sym_bit_DASHand] = ACTIONS(1006), + [anon_sym_bit_DASHxor] = ACTIONS(1006), + [anon_sym_bit_DASHor] = ACTIONS(1006), + [anon_sym_and] = ACTIONS(1006), + [anon_sym_xor] = ACTIONS(1006), + [anon_sym_or] = ACTIONS(1006), + [anon_sym_not] = ACTIONS(1006), + [anon_sym_DOT] = ACTIONS(5921), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), + [anon_sym_DOT_DOT_LT] = ACTIONS(1006), + [anon_sym_null] = ACTIONS(1006), + [anon_sym_true] = ACTIONS(1006), + [anon_sym_false] = ACTIONS(1006), + [aux_sym__val_number_decimal_token1] = ACTIONS(1006), + [aux_sym__val_number_decimal_token2] = ACTIONS(1006), + [anon_sym_DOT2] = ACTIONS(1006), + [aux_sym__val_number_decimal_token3] = ACTIONS(1006), + [aux_sym__val_number_token1] = ACTIONS(1006), + [aux_sym__val_number_token2] = ACTIONS(1006), + [aux_sym__val_number_token3] = ACTIONS(1006), + [aux_sym__val_number_token4] = ACTIONS(1006), + [aux_sym__val_number_token5] = ACTIONS(1006), + [aux_sym__val_number_token6] = ACTIONS(1006), + [anon_sym_0b] = ACTIONS(1006), + [anon_sym_0o] = ACTIONS(1006), + [anon_sym_0x] = ACTIONS(1006), + [sym_val_date] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym__str_single_quotes] = ACTIONS(1006), + [sym__str_back_ticks] = ACTIONS(1006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1006), + [anon_sym_POUND] = ACTIONS(113), }, - [2040] = { - [sym_expr_unary] = STATE(6485), - [sym__expr_unary_minus] = STATE(6430), - [sym_expr_binary] = STATE(6485), - [sym__expr_binary_expression] = STATE(6643), - [sym_expr_parenthesized] = STATE(6485), - [sym__val_range] = STATE(10636), - [sym__value] = STATE(6485), - [sym_val_nothing] = STATE(6590), - [sym_val_bool] = STATE(6483), - [sym_val_variable] = STATE(6590), - [sym__var] = STATE(5737), - [sym_val_number] = STATE(6590), - [sym__val_number_decimal] = STATE(5187), - [sym__val_number] = STATE(6519), - [sym_val_duration] = STATE(6590), - [sym_val_filesize] = STATE(6590), - [sym_val_binary] = STATE(6590), - [sym_val_string] = STATE(6590), - [sym__str_double_quotes] = STATE(6540), - [sym_val_interpolated] = STATE(6590), - [sym__inter_single_quotes] = STATE(6464), - [sym__inter_double_quotes] = STATE(6419), - [sym_val_list] = STATE(6590), - [sym_val_record] = STATE(6590), - [sym_val_table] = STATE(6590), - [sym_val_closure] = STATE(6590), - [sym_unquoted] = STATE(6493), - [sym__unquoted_anonymous_prefix] = STATE(10827), - [sym_comment] = STATE(2040), - [anon_sym_LBRACK] = ACTIONS(4051), - [anon_sym_LPAREN] = ACTIONS(5585), - [anon_sym_DOLLAR] = ACTIONS(5587), - [anon_sym_DASH] = ACTIONS(4053), - [anon_sym_LBRACE] = ACTIONS(4055), - [anon_sym_DOT_DOT] = ACTIONS(5589), - [anon_sym_not] = ACTIONS(4059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5591), - [anon_sym_DOT_DOT_LT] = ACTIONS(5591), - [anon_sym_null] = ACTIONS(5593), - [anon_sym_true] = ACTIONS(5595), - [anon_sym_false] = ACTIONS(5595), - [aux_sym__val_number_decimal_token1] = ACTIONS(5597), - [aux_sym__val_number_decimal_token2] = ACTIONS(5599), - [anon_sym_DOT2] = ACTIONS(5601), - [aux_sym__val_number_decimal_token3] = ACTIONS(5603), - [aux_sym__val_number_token1] = ACTIONS(2764), - [aux_sym__val_number_token2] = ACTIONS(2764), - [aux_sym__val_number_token3] = ACTIONS(2764), - [aux_sym__val_number_token4] = ACTIONS(5605), - [aux_sym__val_number_token5] = ACTIONS(5605), - [aux_sym__val_number_token6] = ACTIONS(5605), - [anon_sym_0b] = ACTIONS(2768), - [anon_sym_0o] = ACTIONS(2770), - [anon_sym_0x] = ACTIONS(2770), - [sym_val_date] = ACTIONS(5607), - [anon_sym_DQUOTE] = ACTIONS(4079), - [sym__str_single_quotes] = ACTIONS(4081), - [sym__str_back_ticks] = ACTIONS(4081), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5609), - [anon_sym_POUND] = ACTIONS(3), + [2319] = { + [sym_comment] = STATE(2319), + [anon_sym_export] = ACTIONS(6039), + [anon_sym_alias] = ACTIONS(6039), + [anon_sym_let] = ACTIONS(6039), + [anon_sym_let_DASHenv] = ACTIONS(6039), + [anon_sym_mut] = ACTIONS(6039), + [anon_sym_const] = ACTIONS(6039), + [anon_sym_SEMI] = ACTIONS(6039), + [sym_cmd_identifier] = ACTIONS(6039), + [anon_sym_LF] = ACTIONS(6041), + [anon_sym_def] = ACTIONS(6039), + [anon_sym_export_DASHenv] = ACTIONS(6039), + [anon_sym_extern] = ACTIONS(6039), + [anon_sym_module] = ACTIONS(6039), + [anon_sym_use] = ACTIONS(6039), + [anon_sym_LBRACK] = ACTIONS(6039), + [anon_sym_LPAREN] = ACTIONS(6039), + [anon_sym_RPAREN] = ACTIONS(6039), + [anon_sym_DOLLAR] = ACTIONS(6039), + [anon_sym_error] = ACTIONS(6039), + [anon_sym_DASH] = ACTIONS(6039), + [anon_sym_break] = ACTIONS(6039), + [anon_sym_continue] = ACTIONS(6039), + [anon_sym_for] = ACTIONS(6039), + [anon_sym_loop] = ACTIONS(6039), + [anon_sym_while] = ACTIONS(6039), + [anon_sym_do] = ACTIONS(6039), + [anon_sym_if] = ACTIONS(6039), + [anon_sym_match] = ACTIONS(6039), + [anon_sym_LBRACE] = ACTIONS(6039), + [anon_sym_RBRACE] = ACTIONS(6039), + [anon_sym_DOT_DOT] = ACTIONS(6039), + [anon_sym_try] = ACTIONS(6039), + [anon_sym_return] = ACTIONS(6039), + [anon_sym_source] = ACTIONS(6039), + [anon_sym_source_DASHenv] = ACTIONS(6039), + [anon_sym_register] = ACTIONS(6039), + [anon_sym_hide] = ACTIONS(6039), + [anon_sym_hide_DASHenv] = ACTIONS(6039), + [anon_sym_overlay] = ACTIONS(6039), + [anon_sym_where] = ACTIONS(6039), + [anon_sym_not] = ACTIONS(6039), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6039), + [anon_sym_DOT_DOT_LT] = ACTIONS(6039), + [anon_sym_null] = ACTIONS(6039), + [anon_sym_true] = ACTIONS(6039), + [anon_sym_false] = ACTIONS(6039), + [aux_sym__val_number_decimal_token1] = ACTIONS(6039), + [aux_sym__val_number_decimal_token2] = ACTIONS(6039), + [anon_sym_DOT2] = ACTIONS(6039), + [aux_sym__val_number_decimal_token3] = ACTIONS(6039), + [aux_sym__val_number_token1] = ACTIONS(6039), + [aux_sym__val_number_token2] = ACTIONS(6039), + [aux_sym__val_number_token3] = ACTIONS(6039), + [aux_sym__val_number_token4] = ACTIONS(6039), + [aux_sym__val_number_token5] = ACTIONS(6039), + [aux_sym__val_number_token6] = ACTIONS(6039), + [anon_sym_0b] = ACTIONS(6039), + [anon_sym_0o] = ACTIONS(6039), + [anon_sym_0x] = ACTIONS(6039), + [sym_val_date] = ACTIONS(6039), + [anon_sym_DQUOTE] = ACTIONS(6039), + [sym__str_single_quotes] = ACTIONS(6039), + [sym__str_back_ticks] = ACTIONS(6039), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6039), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6039), + [anon_sym_CARET] = ACTIONS(6039), + [anon_sym_POUND] = ACTIONS(113), }, - [2041] = { - [sym_expr_unary] = STATE(6485), - [sym__expr_unary_minus] = STATE(6430), - [sym_expr_binary] = STATE(6485), - [sym__expr_binary_expression] = STATE(6647), - [sym_expr_parenthesized] = STATE(6485), - [sym__val_range] = STATE(10636), - [sym__value] = STATE(6485), - [sym_val_nothing] = STATE(6590), - [sym_val_bool] = STATE(6483), - [sym_val_variable] = STATE(6590), - [sym__var] = STATE(5737), - [sym_val_number] = STATE(6590), - [sym__val_number_decimal] = STATE(5187), - [sym__val_number] = STATE(6519), - [sym_val_duration] = STATE(6590), - [sym_val_filesize] = STATE(6590), - [sym_val_binary] = STATE(6590), - [sym_val_string] = STATE(6590), - [sym__str_double_quotes] = STATE(6540), - [sym_val_interpolated] = STATE(6590), - [sym__inter_single_quotes] = STATE(6464), - [sym__inter_double_quotes] = STATE(6419), - [sym_val_list] = STATE(6590), - [sym_val_record] = STATE(6590), - [sym_val_table] = STATE(6590), - [sym_val_closure] = STATE(6590), - [sym_unquoted] = STATE(6494), - [sym__unquoted_anonymous_prefix] = STATE(10827), - [sym_comment] = STATE(2041), - [anon_sym_LBRACK] = ACTIONS(4051), - [anon_sym_LPAREN] = ACTIONS(5585), - [anon_sym_DOLLAR] = ACTIONS(5587), - [anon_sym_DASH] = ACTIONS(4053), - [anon_sym_LBRACE] = ACTIONS(4055), - [anon_sym_DOT_DOT] = ACTIONS(5589), - [anon_sym_not] = ACTIONS(4059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5591), - [anon_sym_DOT_DOT_LT] = ACTIONS(5591), - [anon_sym_null] = ACTIONS(5593), - [anon_sym_true] = ACTIONS(5595), - [anon_sym_false] = ACTIONS(5595), - [aux_sym__val_number_decimal_token1] = ACTIONS(5597), - [aux_sym__val_number_decimal_token2] = ACTIONS(5599), - [anon_sym_DOT2] = ACTIONS(5601), - [aux_sym__val_number_decimal_token3] = ACTIONS(5603), - [aux_sym__val_number_token1] = ACTIONS(2764), - [aux_sym__val_number_token2] = ACTIONS(2764), - [aux_sym__val_number_token3] = ACTIONS(2764), - [aux_sym__val_number_token4] = ACTIONS(5605), - [aux_sym__val_number_token5] = ACTIONS(5605), - [aux_sym__val_number_token6] = ACTIONS(5605), - [anon_sym_0b] = ACTIONS(2768), - [anon_sym_0o] = ACTIONS(2770), - [anon_sym_0x] = ACTIONS(2770), - [sym_val_date] = ACTIONS(5607), - [anon_sym_DQUOTE] = ACTIONS(4079), - [sym__str_single_quotes] = ACTIONS(4081), - [sym__str_back_ticks] = ACTIONS(4081), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5609), - [anon_sym_POUND] = ACTIONS(3), + [2320] = { + [sym_path] = STATE(2617), + [sym_comment] = STATE(2320), + [aux_sym_cell_path_repeat1] = STATE(2320), + [ts_builtin_sym_end] = ACTIONS(987), + [anon_sym_SEMI] = ACTIONS(985), + [anon_sym_LF] = ACTIONS(987), + [anon_sym_LBRACK] = ACTIONS(985), + [anon_sym_LPAREN] = ACTIONS(985), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_GT] = ACTIONS(985), + [anon_sym_DASH_DASH] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_in] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(985), + [anon_sym_DOT_DOT] = ACTIONS(985), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_STAR_STAR] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(985), + [anon_sym_SLASH] = ACTIONS(985), + [anon_sym_mod] = ACTIONS(985), + [anon_sym_SLASH_SLASH] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_bit_DASHshl] = ACTIONS(985), + [anon_sym_bit_DASHshr] = ACTIONS(985), + [anon_sym_EQ_EQ] = ACTIONS(985), + [anon_sym_BANG_EQ] = ACTIONS(985), + [anon_sym_LT2] = ACTIONS(985), + [anon_sym_LT_EQ] = ACTIONS(985), + [anon_sym_GT_EQ] = ACTIONS(985), + [anon_sym_not_DASHin] = ACTIONS(985), + [anon_sym_starts_DASHwith] = ACTIONS(985), + [anon_sym_ends_DASHwith] = ACTIONS(985), + [anon_sym_EQ_TILDE] = ACTIONS(985), + [anon_sym_BANG_TILDE] = ACTIONS(985), + [anon_sym_bit_DASHand] = ACTIONS(985), + [anon_sym_bit_DASHxor] = ACTIONS(985), + [anon_sym_bit_DASHor] = ACTIONS(985), + [anon_sym_and] = ACTIONS(985), + [anon_sym_xor] = ACTIONS(985), + [anon_sym_or] = ACTIONS(985), + [anon_sym_not] = ACTIONS(985), + [anon_sym_DOT] = ACTIONS(6043), + [anon_sym_DOT_DOT_EQ] = ACTIONS(985), + [anon_sym_DOT_DOT_LT] = ACTIONS(985), + [anon_sym_null] = ACTIONS(985), + [anon_sym_true] = ACTIONS(985), + [anon_sym_false] = ACTIONS(985), + [aux_sym__val_number_decimal_token1] = ACTIONS(985), + [aux_sym__val_number_decimal_token2] = ACTIONS(985), + [anon_sym_DOT2] = ACTIONS(985), + [aux_sym__val_number_decimal_token3] = ACTIONS(985), + [aux_sym__val_number_token1] = ACTIONS(985), + [aux_sym__val_number_token2] = ACTIONS(985), + [aux_sym__val_number_token3] = ACTIONS(985), + [aux_sym__val_number_token4] = ACTIONS(985), + [aux_sym__val_number_token5] = ACTIONS(985), + [aux_sym__val_number_token6] = ACTIONS(985), + [anon_sym_0b] = ACTIONS(985), + [anon_sym_0o] = ACTIONS(985), + [anon_sym_0x] = ACTIONS(985), + [sym_val_date] = ACTIONS(985), + [anon_sym_DQUOTE] = ACTIONS(985), + [sym__str_single_quotes] = ACTIONS(985), + [sym__str_back_ticks] = ACTIONS(985), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(985), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(985), + [anon_sym_POUND] = ACTIONS(113), }, - [2042] = { - [sym_expr_unary] = STATE(6485), - [sym__expr_unary_minus] = STATE(6430), - [sym_expr_binary] = STATE(6485), - [sym__expr_binary_expression] = STATE(6651), - [sym_expr_parenthesized] = STATE(6485), - [sym__val_range] = STATE(10636), - [sym__value] = STATE(6485), - [sym_val_nothing] = STATE(6590), - [sym_val_bool] = STATE(6483), - [sym_val_variable] = STATE(6590), - [sym__var] = STATE(5737), - [sym_val_number] = STATE(6590), - [sym__val_number_decimal] = STATE(5187), - [sym__val_number] = STATE(6519), - [sym_val_duration] = STATE(6590), - [sym_val_filesize] = STATE(6590), - [sym_val_binary] = STATE(6590), - [sym_val_string] = STATE(6590), - [sym__str_double_quotes] = STATE(6540), - [sym_val_interpolated] = STATE(6590), - [sym__inter_single_quotes] = STATE(6464), - [sym__inter_double_quotes] = STATE(6419), - [sym_val_list] = STATE(6590), - [sym_val_record] = STATE(6590), - [sym_val_table] = STATE(6590), - [sym_val_closure] = STATE(6590), - [sym_unquoted] = STATE(6495), - [sym__unquoted_anonymous_prefix] = STATE(10827), - [sym_comment] = STATE(2042), - [anon_sym_LBRACK] = ACTIONS(4051), - [anon_sym_LPAREN] = ACTIONS(5585), - [anon_sym_DOLLAR] = ACTIONS(5587), - [anon_sym_DASH] = ACTIONS(4053), - [anon_sym_LBRACE] = ACTIONS(4055), - [anon_sym_DOT_DOT] = ACTIONS(5589), - [anon_sym_not] = ACTIONS(4059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5591), - [anon_sym_DOT_DOT_LT] = ACTIONS(5591), - [anon_sym_null] = ACTIONS(5593), - [anon_sym_true] = ACTIONS(5595), - [anon_sym_false] = ACTIONS(5595), - [aux_sym__val_number_decimal_token1] = ACTIONS(5597), - [aux_sym__val_number_decimal_token2] = ACTIONS(5599), - [anon_sym_DOT2] = ACTIONS(5601), - [aux_sym__val_number_decimal_token3] = ACTIONS(5603), - [aux_sym__val_number_token1] = ACTIONS(2764), - [aux_sym__val_number_token2] = ACTIONS(2764), - [aux_sym__val_number_token3] = ACTIONS(2764), - [aux_sym__val_number_token4] = ACTIONS(5605), - [aux_sym__val_number_token5] = ACTIONS(5605), - [aux_sym__val_number_token6] = ACTIONS(5605), - [anon_sym_0b] = ACTIONS(2768), - [anon_sym_0o] = ACTIONS(2770), - [anon_sym_0x] = ACTIONS(2770), - [sym_val_date] = ACTIONS(5607), - [anon_sym_DQUOTE] = ACTIONS(4079), - [sym__str_single_quotes] = ACTIONS(4081), - [sym__str_back_ticks] = ACTIONS(4081), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5609), - [anon_sym_POUND] = ACTIONS(3), + [2321] = { + [sym_comment] = STATE(2321), + [anon_sym_export] = ACTIONS(1051), + [anon_sym_alias] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(1051), + [anon_sym_let_DASHenv] = ACTIONS(1051), + [anon_sym_mut] = ACTIONS(1051), + [anon_sym_const] = ACTIONS(1051), + [anon_sym_SEMI] = ACTIONS(1051), + [sym_cmd_identifier] = ACTIONS(1051), + [anon_sym_LF] = ACTIONS(1053), + [anon_sym_def] = ACTIONS(1051), + [anon_sym_export_DASHenv] = ACTIONS(1051), + [anon_sym_extern] = ACTIONS(1051), + [anon_sym_module] = ACTIONS(1051), + [anon_sym_use] = ACTIONS(1051), + [anon_sym_LBRACK] = ACTIONS(1051), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_RPAREN] = ACTIONS(1051), + [anon_sym_DOLLAR] = ACTIONS(1051), + [anon_sym_error] = ACTIONS(1051), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_break] = ACTIONS(1051), + [anon_sym_continue] = ACTIONS(1051), + [anon_sym_for] = ACTIONS(1051), + [anon_sym_loop] = ACTIONS(1051), + [anon_sym_while] = ACTIONS(1051), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_if] = ACTIONS(1051), + [anon_sym_match] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(1051), + [anon_sym_RBRACE] = ACTIONS(1051), + [anon_sym_DOT_DOT] = ACTIONS(1051), + [anon_sym_try] = ACTIONS(1051), + [anon_sym_return] = ACTIONS(1051), + [anon_sym_source] = ACTIONS(1051), + [anon_sym_source_DASHenv] = ACTIONS(1051), + [anon_sym_register] = ACTIONS(1051), + [anon_sym_hide] = ACTIONS(1051), + [anon_sym_hide_DASHenv] = ACTIONS(1051), + [anon_sym_overlay] = ACTIONS(1051), + [anon_sym_where] = ACTIONS(1051), + [anon_sym_not] = ACTIONS(1051), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1051), + [anon_sym_DOT_DOT_LT] = ACTIONS(1051), + [anon_sym_null] = ACTIONS(1051), + [anon_sym_true] = ACTIONS(1051), + [anon_sym_false] = ACTIONS(1051), + [aux_sym__val_number_decimal_token1] = ACTIONS(1051), + [aux_sym__val_number_decimal_token2] = ACTIONS(1051), + [anon_sym_DOT2] = ACTIONS(1051), + [aux_sym__val_number_decimal_token3] = ACTIONS(1051), + [aux_sym__val_number_token1] = ACTIONS(1051), + [aux_sym__val_number_token2] = ACTIONS(1051), + [aux_sym__val_number_token3] = ACTIONS(1051), + [aux_sym__val_number_token4] = ACTIONS(1051), + [aux_sym__val_number_token5] = ACTIONS(1051), + [aux_sym__val_number_token6] = ACTIONS(1051), + [anon_sym_0b] = ACTIONS(1051), + [anon_sym_0o] = ACTIONS(1051), + [anon_sym_0x] = ACTIONS(1051), + [sym_val_date] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(1051), + [sym__str_single_quotes] = ACTIONS(1051), + [sym__str_back_ticks] = ACTIONS(1051), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1051), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1051), + [anon_sym_CARET] = ACTIONS(1051), + [anon_sym_POUND] = ACTIONS(113), }, - [2043] = { - [sym_expr_unary] = STATE(6485), - [sym__expr_unary_minus] = STATE(6430), - [sym_expr_binary] = STATE(6485), - [sym__expr_binary_expression] = STATE(6659), - [sym_expr_parenthesized] = STATE(6485), - [sym__val_range] = STATE(10636), - [sym__value] = STATE(6485), - [sym_val_nothing] = STATE(6590), - [sym_val_bool] = STATE(6483), - [sym_val_variable] = STATE(6590), - [sym__var] = STATE(5737), - [sym_val_number] = STATE(6590), - [sym__val_number_decimal] = STATE(5187), - [sym__val_number] = STATE(6519), - [sym_val_duration] = STATE(6590), - [sym_val_filesize] = STATE(6590), - [sym_val_binary] = STATE(6590), - [sym_val_string] = STATE(6590), - [sym__str_double_quotes] = STATE(6540), - [sym_val_interpolated] = STATE(6590), - [sym__inter_single_quotes] = STATE(6464), - [sym__inter_double_quotes] = STATE(6419), - [sym_val_list] = STATE(6590), - [sym_val_record] = STATE(6590), - [sym_val_table] = STATE(6590), - [sym_val_closure] = STATE(6590), - [sym_unquoted] = STATE(6499), - [sym__unquoted_anonymous_prefix] = STATE(10827), - [sym_comment] = STATE(2043), - [anon_sym_LBRACK] = ACTIONS(4051), - [anon_sym_LPAREN] = ACTIONS(5585), - [anon_sym_DOLLAR] = ACTIONS(5587), - [anon_sym_DASH] = ACTIONS(4053), - [anon_sym_LBRACE] = ACTIONS(4055), - [anon_sym_DOT_DOT] = ACTIONS(5589), - [anon_sym_not] = ACTIONS(4059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5591), - [anon_sym_DOT_DOT_LT] = ACTIONS(5591), - [anon_sym_null] = ACTIONS(5593), - [anon_sym_true] = ACTIONS(5595), - [anon_sym_false] = ACTIONS(5595), - [aux_sym__val_number_decimal_token1] = ACTIONS(5597), - [aux_sym__val_number_decimal_token2] = ACTIONS(5599), - [anon_sym_DOT2] = ACTIONS(5601), - [aux_sym__val_number_decimal_token3] = ACTIONS(5603), - [aux_sym__val_number_token1] = ACTIONS(2764), - [aux_sym__val_number_token2] = ACTIONS(2764), - [aux_sym__val_number_token3] = ACTIONS(2764), - [aux_sym__val_number_token4] = ACTIONS(5605), - [aux_sym__val_number_token5] = ACTIONS(5605), - [aux_sym__val_number_token6] = ACTIONS(5605), - [anon_sym_0b] = ACTIONS(2768), - [anon_sym_0o] = ACTIONS(2770), - [anon_sym_0x] = ACTIONS(2770), - [sym_val_date] = ACTIONS(5607), - [anon_sym_DQUOTE] = ACTIONS(4079), - [sym__str_single_quotes] = ACTIONS(4081), - [sym__str_back_ticks] = ACTIONS(4081), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5609), - [anon_sym_POUND] = ACTIONS(3), + [2322] = { + [sym_val_record] = STATE(2474), + [sym_comment] = STATE(2322), + [ts_builtin_sym_end] = ACTIONS(5870), + [anon_sym_export] = ACTIONS(5868), + [anon_sym_alias] = ACTIONS(5868), + [anon_sym_let] = ACTIONS(5868), + [anon_sym_let_DASHenv] = ACTIONS(5868), + [anon_sym_mut] = ACTIONS(5868), + [anon_sym_const] = ACTIONS(5868), + [anon_sym_SEMI] = ACTIONS(5868), + [sym_cmd_identifier] = ACTIONS(5868), + [anon_sym_LF] = ACTIONS(5870), + [anon_sym_def] = ACTIONS(5868), + [anon_sym_export_DASHenv] = ACTIONS(5868), + [anon_sym_extern] = ACTIONS(5868), + [anon_sym_module] = ACTIONS(5868), + [anon_sym_use] = ACTIONS(5868), + [anon_sym_LBRACK] = ACTIONS(5868), + [anon_sym_LPAREN] = ACTIONS(5868), + [anon_sym_DOLLAR] = ACTIONS(5868), + [anon_sym_error] = ACTIONS(5868), + [anon_sym_DASH] = ACTIONS(5868), + [anon_sym_break] = ACTIONS(5868), + [anon_sym_continue] = ACTIONS(5868), + [anon_sym_for] = ACTIONS(5868), + [anon_sym_loop] = ACTIONS(5868), + [anon_sym_while] = ACTIONS(5868), + [anon_sym_do] = ACTIONS(5868), + [anon_sym_if] = ACTIONS(5868), + [anon_sym_match] = ACTIONS(5868), + [anon_sym_LBRACE] = ACTIONS(5868), + [anon_sym_DOT_DOT] = ACTIONS(5868), + [anon_sym_try] = ACTIONS(5868), + [anon_sym_return] = ACTIONS(5868), + [anon_sym_source] = ACTIONS(5868), + [anon_sym_source_DASHenv] = ACTIONS(5868), + [anon_sym_register] = ACTIONS(5868), + [anon_sym_hide] = ACTIONS(5868), + [anon_sym_hide_DASHenv] = ACTIONS(5868), + [anon_sym_overlay] = ACTIONS(5868), + [anon_sym_where] = ACTIONS(5868), + [anon_sym_not] = ACTIONS(5868), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5868), + [anon_sym_DOT_DOT_LT] = ACTIONS(5868), + [anon_sym_null] = ACTIONS(5868), + [anon_sym_true] = ACTIONS(5868), + [anon_sym_false] = ACTIONS(5868), + [aux_sym__val_number_decimal_token1] = ACTIONS(5868), + [aux_sym__val_number_decimal_token2] = ACTIONS(5868), + [anon_sym_DOT2] = ACTIONS(5868), + [aux_sym__val_number_decimal_token3] = ACTIONS(5868), + [aux_sym__val_number_token1] = ACTIONS(5868), + [aux_sym__val_number_token2] = ACTIONS(5868), + [aux_sym__val_number_token3] = ACTIONS(5868), + [aux_sym__val_number_token4] = ACTIONS(5868), + [aux_sym__val_number_token5] = ACTIONS(5868), + [aux_sym__val_number_token6] = ACTIONS(5868), + [anon_sym_0b] = ACTIONS(5868), + [anon_sym_0o] = ACTIONS(5868), + [anon_sym_0x] = ACTIONS(5868), + [sym_val_date] = ACTIONS(5868), + [anon_sym_DQUOTE] = ACTIONS(5868), + [sym__str_single_quotes] = ACTIONS(5868), + [sym__str_back_ticks] = ACTIONS(5868), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5868), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5868), + [anon_sym_CARET] = ACTIONS(5868), + [anon_sym_POUND] = ACTIONS(113), }, - [2044] = { - [sym_expr_unary] = STATE(6485), - [sym__expr_unary_minus] = STATE(6430), - [sym_expr_binary] = STATE(6485), - [sym__expr_binary_expression] = STATE(6673), - [sym_expr_parenthesized] = STATE(6485), - [sym__val_range] = STATE(10636), - [sym__value] = STATE(6485), - [sym_val_nothing] = STATE(6590), - [sym_val_bool] = STATE(6483), - [sym_val_variable] = STATE(6590), - [sym__var] = STATE(5737), - [sym_val_number] = STATE(6590), - [sym__val_number_decimal] = STATE(5187), - [sym__val_number] = STATE(6519), - [sym_val_duration] = STATE(6590), - [sym_val_filesize] = STATE(6590), - [sym_val_binary] = STATE(6590), - [sym_val_string] = STATE(6590), - [sym__str_double_quotes] = STATE(6540), - [sym_val_interpolated] = STATE(6590), - [sym__inter_single_quotes] = STATE(6464), - [sym__inter_double_quotes] = STATE(6419), - [sym_val_list] = STATE(6590), - [sym_val_record] = STATE(6590), - [sym_val_table] = STATE(6590), - [sym_val_closure] = STATE(6590), - [sym_unquoted] = STATE(6504), - [sym__unquoted_anonymous_prefix] = STATE(10827), - [sym_comment] = STATE(2044), - [anon_sym_LBRACK] = ACTIONS(4051), - [anon_sym_LPAREN] = ACTIONS(5585), - [anon_sym_DOLLAR] = ACTIONS(5587), - [anon_sym_DASH] = ACTIONS(4053), - [anon_sym_LBRACE] = ACTIONS(4055), - [anon_sym_DOT_DOT] = ACTIONS(5589), - [anon_sym_not] = ACTIONS(4059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5591), - [anon_sym_DOT_DOT_LT] = ACTIONS(5591), - [anon_sym_null] = ACTIONS(5593), - [anon_sym_true] = ACTIONS(5595), - [anon_sym_false] = ACTIONS(5595), - [aux_sym__val_number_decimal_token1] = ACTIONS(5597), - [aux_sym__val_number_decimal_token2] = ACTIONS(5599), - [anon_sym_DOT2] = ACTIONS(5601), - [aux_sym__val_number_decimal_token3] = ACTIONS(5603), - [aux_sym__val_number_token1] = ACTIONS(2764), - [aux_sym__val_number_token2] = ACTIONS(2764), - [aux_sym__val_number_token3] = ACTIONS(2764), - [aux_sym__val_number_token4] = ACTIONS(5605), - [aux_sym__val_number_token5] = ACTIONS(5605), - [aux_sym__val_number_token6] = ACTIONS(5605), - [anon_sym_0b] = ACTIONS(2768), - [anon_sym_0o] = ACTIONS(2770), - [anon_sym_0x] = ACTIONS(2770), - [sym_val_date] = ACTIONS(5607), - [anon_sym_DQUOTE] = ACTIONS(4079), - [sym__str_single_quotes] = ACTIONS(4081), - [sym__str_back_ticks] = ACTIONS(4081), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5609), - [anon_sym_POUND] = ACTIONS(3), + [2323] = { + [sym_comment] = STATE(2323), + [anon_sym_export] = ACTIONS(5962), + [anon_sym_alias] = ACTIONS(5962), + [anon_sym_let] = ACTIONS(5962), + [anon_sym_let_DASHenv] = ACTIONS(5962), + [anon_sym_mut] = ACTIONS(5962), + [anon_sym_const] = ACTIONS(5962), + [anon_sym_SEMI] = ACTIONS(5962), + [sym_cmd_identifier] = ACTIONS(5962), + [anon_sym_LF] = ACTIONS(5964), + [anon_sym_def] = ACTIONS(5962), + [anon_sym_export_DASHenv] = ACTIONS(5962), + [anon_sym_extern] = ACTIONS(5962), + [anon_sym_module] = ACTIONS(5962), + [anon_sym_use] = ACTIONS(5962), + [anon_sym_LBRACK] = ACTIONS(5962), + [anon_sym_LPAREN] = ACTIONS(5962), + [anon_sym_RPAREN] = ACTIONS(5962), + [anon_sym_DOLLAR] = ACTIONS(5962), + [anon_sym_error] = ACTIONS(5962), + [anon_sym_DASH] = ACTIONS(5962), + [anon_sym_break] = ACTIONS(5962), + [anon_sym_continue] = ACTIONS(5962), + [anon_sym_for] = ACTIONS(5962), + [anon_sym_loop] = ACTIONS(5962), + [anon_sym_while] = ACTIONS(5962), + [anon_sym_do] = ACTIONS(5962), + [anon_sym_if] = ACTIONS(5962), + [anon_sym_match] = ACTIONS(5962), + [anon_sym_LBRACE] = ACTIONS(5962), + [anon_sym_RBRACE] = ACTIONS(5962), + [anon_sym_DOT_DOT] = ACTIONS(5962), + [anon_sym_try] = ACTIONS(5962), + [anon_sym_return] = ACTIONS(5962), + [anon_sym_source] = ACTIONS(5962), + [anon_sym_source_DASHenv] = ACTIONS(5962), + [anon_sym_register] = ACTIONS(5962), + [anon_sym_hide] = ACTIONS(5962), + [anon_sym_hide_DASHenv] = ACTIONS(5962), + [anon_sym_overlay] = ACTIONS(5962), + [anon_sym_where] = ACTIONS(5962), + [anon_sym_not] = ACTIONS(5962), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5962), + [anon_sym_DOT_DOT_LT] = ACTIONS(5962), + [anon_sym_null] = ACTIONS(5962), + [anon_sym_true] = ACTIONS(5962), + [anon_sym_false] = ACTIONS(5962), + [aux_sym__val_number_decimal_token1] = ACTIONS(5962), + [aux_sym__val_number_decimal_token2] = ACTIONS(5962), + [anon_sym_DOT2] = ACTIONS(5962), + [aux_sym__val_number_decimal_token3] = ACTIONS(5962), + [aux_sym__val_number_token1] = ACTIONS(5962), + [aux_sym__val_number_token2] = ACTIONS(5962), + [aux_sym__val_number_token3] = ACTIONS(5962), + [aux_sym__val_number_token4] = ACTIONS(5962), + [aux_sym__val_number_token5] = ACTIONS(5962), + [aux_sym__val_number_token6] = ACTIONS(5962), + [anon_sym_0b] = ACTIONS(5962), + [anon_sym_0o] = ACTIONS(5962), + [anon_sym_0x] = ACTIONS(5962), + [sym_val_date] = ACTIONS(5962), + [anon_sym_DQUOTE] = ACTIONS(5962), + [sym__str_single_quotes] = ACTIONS(5962), + [sym__str_back_ticks] = ACTIONS(5962), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5962), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5962), + [anon_sym_CARET] = ACTIONS(5962), + [anon_sym_POUND] = ACTIONS(113), }, - [2045] = { - [sym_expr_unary] = STATE(6485), - [sym__expr_unary_minus] = STATE(6430), - [sym_expr_binary] = STATE(6485), - [sym__expr_binary_expression] = STATE(6676), - [sym_expr_parenthesized] = STATE(6485), - [sym__val_range] = STATE(10636), - [sym__value] = STATE(6485), - [sym_val_nothing] = STATE(6590), - [sym_val_bool] = STATE(6483), - [sym_val_variable] = STATE(6590), - [sym__var] = STATE(5737), - [sym_val_number] = STATE(6590), - [sym__val_number_decimal] = STATE(5187), - [sym__val_number] = STATE(6519), - [sym_val_duration] = STATE(6590), - [sym_val_filesize] = STATE(6590), - [sym_val_binary] = STATE(6590), - [sym_val_string] = STATE(6590), - [sym__str_double_quotes] = STATE(6540), - [sym_val_interpolated] = STATE(6590), - [sym__inter_single_quotes] = STATE(6464), - [sym__inter_double_quotes] = STATE(6419), - [sym_val_list] = STATE(6590), - [sym_val_record] = STATE(6590), - [sym_val_table] = STATE(6590), - [sym_val_closure] = STATE(6590), - [sym_unquoted] = STATE(6506), - [sym__unquoted_anonymous_prefix] = STATE(10827), - [sym_comment] = STATE(2045), - [anon_sym_LBRACK] = ACTIONS(4051), - [anon_sym_LPAREN] = ACTIONS(5585), - [anon_sym_DOLLAR] = ACTIONS(5587), - [anon_sym_DASH] = ACTIONS(4053), - [anon_sym_LBRACE] = ACTIONS(4055), - [anon_sym_DOT_DOT] = ACTIONS(5589), - [anon_sym_not] = ACTIONS(4059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5591), - [anon_sym_DOT_DOT_LT] = ACTIONS(5591), - [anon_sym_null] = ACTIONS(5593), - [anon_sym_true] = ACTIONS(5595), - [anon_sym_false] = ACTIONS(5595), - [aux_sym__val_number_decimal_token1] = ACTIONS(5597), - [aux_sym__val_number_decimal_token2] = ACTIONS(5599), - [anon_sym_DOT2] = ACTIONS(5601), - [aux_sym__val_number_decimal_token3] = ACTIONS(5603), - [aux_sym__val_number_token1] = ACTIONS(2764), - [aux_sym__val_number_token2] = ACTIONS(2764), - [aux_sym__val_number_token3] = ACTIONS(2764), - [aux_sym__val_number_token4] = ACTIONS(5605), - [aux_sym__val_number_token5] = ACTIONS(5605), - [aux_sym__val_number_token6] = ACTIONS(5605), - [anon_sym_0b] = ACTIONS(2768), - [anon_sym_0o] = ACTIONS(2770), - [anon_sym_0x] = ACTIONS(2770), - [sym_val_date] = ACTIONS(5607), - [anon_sym_DQUOTE] = ACTIONS(4079), - [sym__str_single_quotes] = ACTIONS(4081), - [sym__str_back_ticks] = ACTIONS(4081), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5609), - [anon_sym_POUND] = ACTIONS(3), + [2324] = { + [sym_comment] = STATE(2324), + [anon_sym_export] = ACTIONS(6046), + [anon_sym_alias] = ACTIONS(6046), + [anon_sym_let] = ACTIONS(6046), + [anon_sym_let_DASHenv] = ACTIONS(6046), + [anon_sym_mut] = ACTIONS(6046), + [anon_sym_const] = ACTIONS(6046), + [anon_sym_SEMI] = ACTIONS(6048), + [sym_cmd_identifier] = ACTIONS(6046), + [anon_sym_LF] = ACTIONS(6051), + [anon_sym_def] = ACTIONS(6046), + [anon_sym_export_DASHenv] = ACTIONS(6046), + [anon_sym_extern] = ACTIONS(6046), + [anon_sym_module] = ACTIONS(6046), + [anon_sym_use] = ACTIONS(6046), + [anon_sym_LBRACK] = ACTIONS(6046), + [anon_sym_LPAREN] = ACTIONS(6046), + [anon_sym_RPAREN] = ACTIONS(6054), + [anon_sym_DOLLAR] = ACTIONS(6046), + [anon_sym_error] = ACTIONS(6046), + [anon_sym_DASH] = ACTIONS(6046), + [anon_sym_break] = ACTIONS(6046), + [anon_sym_continue] = ACTIONS(6046), + [anon_sym_for] = ACTIONS(6046), + [anon_sym_loop] = ACTIONS(6046), + [anon_sym_while] = ACTIONS(6046), + [anon_sym_do] = ACTIONS(6046), + [anon_sym_if] = ACTIONS(6046), + [anon_sym_match] = ACTIONS(6046), + [anon_sym_LBRACE] = ACTIONS(6046), + [anon_sym_RBRACE] = ACTIONS(6054), + [anon_sym_DOT_DOT] = ACTIONS(6046), + [anon_sym_try] = ACTIONS(6046), + [anon_sym_return] = ACTIONS(6046), + [anon_sym_source] = ACTIONS(6046), + [anon_sym_source_DASHenv] = ACTIONS(6046), + [anon_sym_register] = ACTIONS(6046), + [anon_sym_hide] = ACTIONS(6046), + [anon_sym_hide_DASHenv] = ACTIONS(6046), + [anon_sym_overlay] = ACTIONS(6046), + [anon_sym_where] = ACTIONS(6046), + [anon_sym_not] = ACTIONS(6046), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6046), + [anon_sym_DOT_DOT_LT] = ACTIONS(6046), + [anon_sym_null] = ACTIONS(6046), + [anon_sym_true] = ACTIONS(6046), + [anon_sym_false] = ACTIONS(6046), + [aux_sym__val_number_decimal_token1] = ACTIONS(6046), + [aux_sym__val_number_decimal_token2] = ACTIONS(6046), + [anon_sym_DOT2] = ACTIONS(6046), + [aux_sym__val_number_decimal_token3] = ACTIONS(6046), + [aux_sym__val_number_token1] = ACTIONS(6046), + [aux_sym__val_number_token2] = ACTIONS(6046), + [aux_sym__val_number_token3] = ACTIONS(6046), + [aux_sym__val_number_token4] = ACTIONS(6046), + [aux_sym__val_number_token5] = ACTIONS(6046), + [aux_sym__val_number_token6] = ACTIONS(6046), + [anon_sym_0b] = ACTIONS(6046), + [anon_sym_0o] = ACTIONS(6046), + [anon_sym_0x] = ACTIONS(6046), + [sym_val_date] = ACTIONS(6046), + [anon_sym_DQUOTE] = ACTIONS(6046), + [sym__str_single_quotes] = ACTIONS(6046), + [sym__str_back_ticks] = ACTIONS(6046), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6046), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6046), + [anon_sym_CARET] = ACTIONS(6046), + [anon_sym_POUND] = ACTIONS(113), }, - [2046] = { - [sym_expr_unary] = STATE(6485), - [sym__expr_unary_minus] = STATE(6430), - [sym_expr_binary] = STATE(6485), - [sym__expr_binary_expression] = STATE(6678), - [sym_expr_parenthesized] = STATE(6485), - [sym__val_range] = STATE(10636), - [sym__value] = STATE(6485), - [sym_val_nothing] = STATE(6590), - [sym_val_bool] = STATE(6483), - [sym_val_variable] = STATE(6590), - [sym__var] = STATE(5737), - [sym_val_number] = STATE(6590), - [sym__val_number_decimal] = STATE(5187), - [sym__val_number] = STATE(6519), - [sym_val_duration] = STATE(6590), - [sym_val_filesize] = STATE(6590), - [sym_val_binary] = STATE(6590), - [sym_val_string] = STATE(6590), - [sym__str_double_quotes] = STATE(6540), - [sym_val_interpolated] = STATE(6590), - [sym__inter_single_quotes] = STATE(6464), - [sym__inter_double_quotes] = STATE(6419), - [sym_val_list] = STATE(6590), - [sym_val_record] = STATE(6590), - [sym_val_table] = STATE(6590), - [sym_val_closure] = STATE(6590), - [sym_unquoted] = STATE(6507), - [sym__unquoted_anonymous_prefix] = STATE(10827), - [sym_comment] = STATE(2046), - [anon_sym_LBRACK] = ACTIONS(4051), - [anon_sym_LPAREN] = ACTIONS(5585), - [anon_sym_DOLLAR] = ACTIONS(5587), - [anon_sym_DASH] = ACTIONS(4053), - [anon_sym_LBRACE] = ACTIONS(4055), - [anon_sym_DOT_DOT] = ACTIONS(5589), - [anon_sym_not] = ACTIONS(4059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5591), - [anon_sym_DOT_DOT_LT] = ACTIONS(5591), - [anon_sym_null] = ACTIONS(5593), - [anon_sym_true] = ACTIONS(5595), - [anon_sym_false] = ACTIONS(5595), - [aux_sym__val_number_decimal_token1] = ACTIONS(5597), - [aux_sym__val_number_decimal_token2] = ACTIONS(5599), - [anon_sym_DOT2] = ACTIONS(5601), - [aux_sym__val_number_decimal_token3] = ACTIONS(5603), - [aux_sym__val_number_token1] = ACTIONS(2764), - [aux_sym__val_number_token2] = ACTIONS(2764), - [aux_sym__val_number_token3] = ACTIONS(2764), - [aux_sym__val_number_token4] = ACTIONS(5605), - [aux_sym__val_number_token5] = ACTIONS(5605), - [aux_sym__val_number_token6] = ACTIONS(5605), - [anon_sym_0b] = ACTIONS(2768), - [anon_sym_0o] = ACTIONS(2770), - [anon_sym_0x] = ACTIONS(2770), - [sym_val_date] = ACTIONS(5607), - [anon_sym_DQUOTE] = ACTIONS(4079), - [sym__str_single_quotes] = ACTIONS(4081), - [sym__str_back_ticks] = ACTIONS(4081), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5609), - [anon_sym_POUND] = ACTIONS(3), + [2325] = { + [sym__terminator] = STATE(2372), + [sym_comment] = STATE(2325), + [aux_sym__block_body_repeat1] = STATE(1977), + [anon_sym_export] = ACTIONS(6056), + [anon_sym_alias] = ACTIONS(6056), + [anon_sym_let] = ACTIONS(6056), + [anon_sym_let_DASHenv] = ACTIONS(6056), + [anon_sym_mut] = ACTIONS(6056), + [anon_sym_const] = ACTIONS(6056), + [anon_sym_SEMI] = ACTIONS(6058), + [sym_cmd_identifier] = ACTIONS(6056), + [anon_sym_LF] = ACTIONS(6060), + [anon_sym_def] = ACTIONS(6056), + [anon_sym_export_DASHenv] = ACTIONS(6056), + [anon_sym_extern] = ACTIONS(6056), + [anon_sym_module] = ACTIONS(6056), + [anon_sym_use] = ACTIONS(6056), + [anon_sym_LBRACK] = ACTIONS(6056), + [anon_sym_LPAREN] = ACTIONS(6056), + [anon_sym_DOLLAR] = ACTIONS(6056), + [anon_sym_error] = ACTIONS(6056), + [anon_sym_DASH] = ACTIONS(6056), + [anon_sym_break] = ACTIONS(6056), + [anon_sym_continue] = ACTIONS(6056), + [anon_sym_for] = ACTIONS(6056), + [anon_sym_loop] = ACTIONS(6056), + [anon_sym_while] = ACTIONS(6056), + [anon_sym_do] = ACTIONS(6056), + [anon_sym_if] = ACTIONS(6056), + [anon_sym_match] = ACTIONS(6056), + [anon_sym_LBRACE] = ACTIONS(6056), + [anon_sym_DOT_DOT] = ACTIONS(6056), + [anon_sym_try] = ACTIONS(6056), + [anon_sym_return] = ACTIONS(6056), + [anon_sym_source] = ACTIONS(6056), + [anon_sym_source_DASHenv] = ACTIONS(6056), + [anon_sym_register] = ACTIONS(6056), + [anon_sym_hide] = ACTIONS(6056), + [anon_sym_hide_DASHenv] = ACTIONS(6056), + [anon_sym_overlay] = ACTIONS(6056), + [anon_sym_where] = ACTIONS(6056), + [anon_sym_not] = ACTIONS(6056), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6056), + [anon_sym_DOT_DOT_LT] = ACTIONS(6056), + [anon_sym_null] = ACTIONS(6056), + [anon_sym_true] = ACTIONS(6056), + [anon_sym_false] = ACTIONS(6056), + [aux_sym__val_number_decimal_token1] = ACTIONS(6056), + [aux_sym__val_number_decimal_token2] = ACTIONS(6056), + [anon_sym_DOT2] = ACTIONS(6056), + [aux_sym__val_number_decimal_token3] = ACTIONS(6056), + [aux_sym__val_number_token1] = ACTIONS(6056), + [aux_sym__val_number_token2] = ACTIONS(6056), + [aux_sym__val_number_token3] = ACTIONS(6056), + [aux_sym__val_number_token4] = ACTIONS(6056), + [aux_sym__val_number_token5] = ACTIONS(6056), + [aux_sym__val_number_token6] = ACTIONS(6056), + [anon_sym_0b] = ACTIONS(6056), + [anon_sym_0o] = ACTIONS(6056), + [anon_sym_0x] = ACTIONS(6056), + [sym_val_date] = ACTIONS(6056), + [anon_sym_DQUOTE] = ACTIONS(6056), + [sym__str_single_quotes] = ACTIONS(6056), + [sym__str_back_ticks] = ACTIONS(6056), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6056), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6056), + [anon_sym_CARET] = ACTIONS(6056), + [anon_sym_POUND] = ACTIONS(113), }, - [2047] = { - [sym_expr_unary] = STATE(6485), - [sym__expr_unary_minus] = STATE(6430), - [sym_expr_binary] = STATE(6485), - [sym__expr_binary_expression] = STATE(6682), - [sym_expr_parenthesized] = STATE(6485), - [sym__val_range] = STATE(10636), - [sym__value] = STATE(6485), - [sym_val_nothing] = STATE(6590), - [sym_val_bool] = STATE(6483), - [sym_val_variable] = STATE(6590), - [sym__var] = STATE(5737), - [sym_val_number] = STATE(6590), - [sym__val_number_decimal] = STATE(5187), - [sym__val_number] = STATE(6519), - [sym_val_duration] = STATE(6590), - [sym_val_filesize] = STATE(6590), - [sym_val_binary] = STATE(6590), - [sym_val_string] = STATE(6590), - [sym__str_double_quotes] = STATE(6540), - [sym_val_interpolated] = STATE(6590), - [sym__inter_single_quotes] = STATE(6464), - [sym__inter_double_quotes] = STATE(6419), - [sym_val_list] = STATE(6590), - [sym_val_record] = STATE(6590), - [sym_val_table] = STATE(6590), - [sym_val_closure] = STATE(6590), - [sym_unquoted] = STATE(6508), - [sym__unquoted_anonymous_prefix] = STATE(10827), - [sym_comment] = STATE(2047), - [anon_sym_LBRACK] = ACTIONS(4051), - [anon_sym_LPAREN] = ACTIONS(5585), - [anon_sym_DOLLAR] = ACTIONS(5587), - [anon_sym_DASH] = ACTIONS(4053), - [anon_sym_LBRACE] = ACTIONS(4055), - [anon_sym_DOT_DOT] = ACTIONS(5589), - [anon_sym_not] = ACTIONS(4059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5591), - [anon_sym_DOT_DOT_LT] = ACTIONS(5591), - [anon_sym_null] = ACTIONS(5593), - [anon_sym_true] = ACTIONS(5595), - [anon_sym_false] = ACTIONS(5595), - [aux_sym__val_number_decimal_token1] = ACTIONS(5597), - [aux_sym__val_number_decimal_token2] = ACTIONS(5599), - [anon_sym_DOT2] = ACTIONS(5601), - [aux_sym__val_number_decimal_token3] = ACTIONS(5603), - [aux_sym__val_number_token1] = ACTIONS(2764), - [aux_sym__val_number_token2] = ACTIONS(2764), - [aux_sym__val_number_token3] = ACTIONS(2764), - [aux_sym__val_number_token4] = ACTIONS(5605), - [aux_sym__val_number_token5] = ACTIONS(5605), - [aux_sym__val_number_token6] = ACTIONS(5605), - [anon_sym_0b] = ACTIONS(2768), - [anon_sym_0o] = ACTIONS(2770), - [anon_sym_0x] = ACTIONS(2770), - [sym_val_date] = ACTIONS(5607), - [anon_sym_DQUOTE] = ACTIONS(4079), - [sym__str_single_quotes] = ACTIONS(4081), - [sym__str_back_ticks] = ACTIONS(4081), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5609), - [anon_sym_POUND] = ACTIONS(3), + [2326] = { + [sym_comment] = STATE(2326), + [ts_builtin_sym_end] = ACTIONS(5771), + [anon_sym_export] = ACTIONS(5769), + [anon_sym_alias] = ACTIONS(5769), + [anon_sym_let] = ACTIONS(5769), + [anon_sym_let_DASHenv] = ACTIONS(5769), + [anon_sym_mut] = ACTIONS(5769), + [anon_sym_const] = ACTIONS(5769), + [anon_sym_SEMI] = ACTIONS(5769), + [sym_cmd_identifier] = ACTIONS(5769), + [anon_sym_LF] = ACTIONS(5771), + [anon_sym_def] = ACTIONS(5769), + [anon_sym_export_DASHenv] = ACTIONS(5769), + [anon_sym_extern] = ACTIONS(5769), + [anon_sym_module] = ACTIONS(5769), + [anon_sym_use] = ACTIONS(5769), + [anon_sym_LBRACK] = ACTIONS(5769), + [anon_sym_LPAREN] = ACTIONS(5769), + [anon_sym_DOLLAR] = ACTIONS(5769), + [anon_sym_error] = ACTIONS(5769), + [anon_sym_DASH] = ACTIONS(5769), + [anon_sym_break] = ACTIONS(5769), + [anon_sym_continue] = ACTIONS(5769), + [anon_sym_for] = ACTIONS(5769), + [anon_sym_loop] = ACTIONS(5769), + [anon_sym_while] = ACTIONS(5769), + [anon_sym_do] = ACTIONS(5769), + [anon_sym_if] = ACTIONS(5769), + [anon_sym_match] = ACTIONS(5769), + [anon_sym_LBRACE] = ACTIONS(5769), + [anon_sym_DOT_DOT] = ACTIONS(5769), + [anon_sym_try] = ACTIONS(5769), + [anon_sym_return] = ACTIONS(5769), + [anon_sym_source] = ACTIONS(5769), + [anon_sym_source_DASHenv] = ACTIONS(5769), + [anon_sym_register] = ACTIONS(5769), + [anon_sym_hide] = ACTIONS(5769), + [anon_sym_hide_DASHenv] = ACTIONS(5769), + [anon_sym_overlay] = ACTIONS(5769), + [anon_sym_STAR] = ACTIONS(5769), + [anon_sym_where] = ACTIONS(5769), + [anon_sym_not] = ACTIONS(5769), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5769), + [anon_sym_DOT_DOT_LT] = ACTIONS(5769), + [anon_sym_null] = ACTIONS(5769), + [anon_sym_true] = ACTIONS(5769), + [anon_sym_false] = ACTIONS(5769), + [aux_sym__val_number_decimal_token1] = ACTIONS(5769), + [aux_sym__val_number_decimal_token2] = ACTIONS(5769), + [anon_sym_DOT2] = ACTIONS(5769), + [aux_sym__val_number_decimal_token3] = ACTIONS(5769), + [aux_sym__val_number_token1] = ACTIONS(5769), + [aux_sym__val_number_token2] = ACTIONS(5769), + [aux_sym__val_number_token3] = ACTIONS(5769), + [aux_sym__val_number_token4] = ACTIONS(5769), + [aux_sym__val_number_token5] = ACTIONS(5769), + [aux_sym__val_number_token6] = ACTIONS(5769), + [anon_sym_0b] = ACTIONS(5769), + [anon_sym_0o] = ACTIONS(5769), + [anon_sym_0x] = ACTIONS(5769), + [sym_val_date] = ACTIONS(5769), + [anon_sym_DQUOTE] = ACTIONS(5769), + [sym__str_single_quotes] = ACTIONS(5769), + [sym__str_back_ticks] = ACTIONS(5769), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5769), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5769), + [anon_sym_CARET] = ACTIONS(5769), + [anon_sym_POUND] = ACTIONS(113), }, - [2048] = { - [sym_expr_unary] = STATE(6485), - [sym__expr_unary_minus] = STATE(6430), - [sym_expr_binary] = STATE(6485), - [sym__expr_binary_expression] = STATE(6685), - [sym_expr_parenthesized] = STATE(6485), - [sym__val_range] = STATE(10636), - [sym__value] = STATE(6485), - [sym_val_nothing] = STATE(6590), - [sym_val_bool] = STATE(6483), - [sym_val_variable] = STATE(6590), - [sym__var] = STATE(5737), - [sym_val_number] = STATE(6590), - [sym__val_number_decimal] = STATE(5187), - [sym__val_number] = STATE(6519), - [sym_val_duration] = STATE(6590), - [sym_val_filesize] = STATE(6590), - [sym_val_binary] = STATE(6590), - [sym_val_string] = STATE(6590), - [sym__str_double_quotes] = STATE(6540), - [sym_val_interpolated] = STATE(6590), - [sym__inter_single_quotes] = STATE(6464), - [sym__inter_double_quotes] = STATE(6419), - [sym_val_list] = STATE(6590), - [sym_val_record] = STATE(6590), - [sym_val_table] = STATE(6590), - [sym_val_closure] = STATE(6590), - [sym_unquoted] = STATE(6509), - [sym__unquoted_anonymous_prefix] = STATE(10827), - [sym_comment] = STATE(2048), - [anon_sym_LBRACK] = ACTIONS(4051), - [anon_sym_LPAREN] = ACTIONS(5585), - [anon_sym_DOLLAR] = ACTIONS(5587), - [anon_sym_DASH] = ACTIONS(4053), - [anon_sym_LBRACE] = ACTIONS(4055), - [anon_sym_DOT_DOT] = ACTIONS(5589), - [anon_sym_not] = ACTIONS(4059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5591), - [anon_sym_DOT_DOT_LT] = ACTIONS(5591), - [anon_sym_null] = ACTIONS(5593), - [anon_sym_true] = ACTIONS(5595), - [anon_sym_false] = ACTIONS(5595), - [aux_sym__val_number_decimal_token1] = ACTIONS(5597), - [aux_sym__val_number_decimal_token2] = ACTIONS(5599), - [anon_sym_DOT2] = ACTIONS(5601), - [aux_sym__val_number_decimal_token3] = ACTIONS(5603), - [aux_sym__val_number_token1] = ACTIONS(2764), - [aux_sym__val_number_token2] = ACTIONS(2764), - [aux_sym__val_number_token3] = ACTIONS(2764), - [aux_sym__val_number_token4] = ACTIONS(5605), - [aux_sym__val_number_token5] = ACTIONS(5605), - [aux_sym__val_number_token6] = ACTIONS(5605), - [anon_sym_0b] = ACTIONS(2768), - [anon_sym_0o] = ACTIONS(2770), - [anon_sym_0x] = ACTIONS(2770), - [sym_val_date] = ACTIONS(5607), - [anon_sym_DQUOTE] = ACTIONS(4079), - [sym__str_single_quotes] = ACTIONS(4081), - [sym__str_back_ticks] = ACTIONS(4081), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5609), - [anon_sym_POUND] = ACTIONS(3), + [2327] = { + [sym_comment] = STATE(2327), + [anon_sym_export] = ACTIONS(6062), + [anon_sym_alias] = ACTIONS(6062), + [anon_sym_let] = ACTIONS(6062), + [anon_sym_let_DASHenv] = ACTIONS(6062), + [anon_sym_mut] = ACTIONS(6062), + [anon_sym_const] = ACTIONS(6062), + [anon_sym_SEMI] = ACTIONS(6062), + [sym_cmd_identifier] = ACTIONS(6062), + [anon_sym_LF] = ACTIONS(6064), + [anon_sym_def] = ACTIONS(6062), + [anon_sym_export_DASHenv] = ACTIONS(6062), + [anon_sym_extern] = ACTIONS(6062), + [anon_sym_module] = ACTIONS(6062), + [anon_sym_use] = ACTIONS(6062), + [anon_sym_LBRACK] = ACTIONS(6062), + [anon_sym_LPAREN] = ACTIONS(6062), + [anon_sym_RPAREN] = ACTIONS(6062), + [anon_sym_DOLLAR] = ACTIONS(6062), + [anon_sym_error] = ACTIONS(6062), + [anon_sym_DASH] = ACTIONS(6062), + [anon_sym_break] = ACTIONS(6062), + [anon_sym_continue] = ACTIONS(6062), + [anon_sym_for] = ACTIONS(6062), + [anon_sym_loop] = ACTIONS(6062), + [anon_sym_while] = ACTIONS(6062), + [anon_sym_do] = ACTIONS(6062), + [anon_sym_if] = ACTIONS(6062), + [anon_sym_match] = ACTIONS(6062), + [anon_sym_LBRACE] = ACTIONS(6062), + [anon_sym_RBRACE] = ACTIONS(6062), + [anon_sym_DOT_DOT] = ACTIONS(6062), + [anon_sym_try] = ACTIONS(6062), + [anon_sym_return] = ACTIONS(6062), + [anon_sym_source] = ACTIONS(6062), + [anon_sym_source_DASHenv] = ACTIONS(6062), + [anon_sym_register] = ACTIONS(6062), + [anon_sym_hide] = ACTIONS(6062), + [anon_sym_hide_DASHenv] = ACTIONS(6062), + [anon_sym_overlay] = ACTIONS(6062), + [anon_sym_where] = ACTIONS(6062), + [anon_sym_not] = ACTIONS(6062), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6062), + [anon_sym_DOT_DOT_LT] = ACTIONS(6062), + [anon_sym_null] = ACTIONS(6062), + [anon_sym_true] = ACTIONS(6062), + [anon_sym_false] = ACTIONS(6062), + [aux_sym__val_number_decimal_token1] = ACTIONS(6062), + [aux_sym__val_number_decimal_token2] = ACTIONS(6062), + [anon_sym_DOT2] = ACTIONS(6062), + [aux_sym__val_number_decimal_token3] = ACTIONS(6062), + [aux_sym__val_number_token1] = ACTIONS(6062), + [aux_sym__val_number_token2] = ACTIONS(6062), + [aux_sym__val_number_token3] = ACTIONS(6062), + [aux_sym__val_number_token4] = ACTIONS(6062), + [aux_sym__val_number_token5] = ACTIONS(6062), + [aux_sym__val_number_token6] = ACTIONS(6062), + [anon_sym_0b] = ACTIONS(6062), + [anon_sym_0o] = ACTIONS(6062), + [anon_sym_0x] = ACTIONS(6062), + [sym_val_date] = ACTIONS(6062), + [anon_sym_DQUOTE] = ACTIONS(6062), + [sym__str_single_quotes] = ACTIONS(6062), + [sym__str_back_ticks] = ACTIONS(6062), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6062), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6062), + [anon_sym_CARET] = ACTIONS(6062), + [anon_sym_POUND] = ACTIONS(113), }, - [2049] = { - [sym_expr_unary] = STATE(6485), - [sym__expr_unary_minus] = STATE(6430), - [sym_expr_binary] = STATE(6485), - [sym__expr_binary_expression] = STATE(6689), - [sym_expr_parenthesized] = STATE(6485), - [sym__val_range] = STATE(10636), - [sym__value] = STATE(6485), - [sym_val_nothing] = STATE(6590), - [sym_val_bool] = STATE(6483), - [sym_val_variable] = STATE(6590), - [sym__var] = STATE(5737), - [sym_val_number] = STATE(6590), - [sym__val_number_decimal] = STATE(5187), - [sym__val_number] = STATE(6519), - [sym_val_duration] = STATE(6590), - [sym_val_filesize] = STATE(6590), - [sym_val_binary] = STATE(6590), - [sym_val_string] = STATE(6590), - [sym__str_double_quotes] = STATE(6540), - [sym_val_interpolated] = STATE(6590), - [sym__inter_single_quotes] = STATE(6464), - [sym__inter_double_quotes] = STATE(6419), - [sym_val_list] = STATE(6590), - [sym_val_record] = STATE(6590), - [sym_val_table] = STATE(6590), - [sym_val_closure] = STATE(6590), - [sym_unquoted] = STATE(6510), - [sym__unquoted_anonymous_prefix] = STATE(10827), - [sym_comment] = STATE(2049), - [anon_sym_LBRACK] = ACTIONS(4051), - [anon_sym_LPAREN] = ACTIONS(5585), - [anon_sym_DOLLAR] = ACTIONS(5587), - [anon_sym_DASH] = ACTIONS(4053), - [anon_sym_LBRACE] = ACTIONS(4055), - [anon_sym_DOT_DOT] = ACTIONS(5589), - [anon_sym_not] = ACTIONS(4059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5591), - [anon_sym_DOT_DOT_LT] = ACTIONS(5591), - [anon_sym_null] = ACTIONS(5593), - [anon_sym_true] = ACTIONS(5595), - [anon_sym_false] = ACTIONS(5595), - [aux_sym__val_number_decimal_token1] = ACTIONS(5597), - [aux_sym__val_number_decimal_token2] = ACTIONS(5599), - [anon_sym_DOT2] = ACTIONS(5601), - [aux_sym__val_number_decimal_token3] = ACTIONS(5603), - [aux_sym__val_number_token1] = ACTIONS(2764), - [aux_sym__val_number_token2] = ACTIONS(2764), - [aux_sym__val_number_token3] = ACTIONS(2764), - [aux_sym__val_number_token4] = ACTIONS(5605), - [aux_sym__val_number_token5] = ACTIONS(5605), - [aux_sym__val_number_token6] = ACTIONS(5605), - [anon_sym_0b] = ACTIONS(2768), - [anon_sym_0o] = ACTIONS(2770), - [anon_sym_0x] = ACTIONS(2770), - [sym_val_date] = ACTIONS(5607), - [anon_sym_DQUOTE] = ACTIONS(4079), - [sym__str_single_quotes] = ACTIONS(4081), - [sym__str_back_ticks] = ACTIONS(4081), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5609), - [anon_sym_POUND] = ACTIONS(3), + [2328] = { + [sym_comment] = STATE(2328), + [anon_sym_export] = ACTIONS(6066), + [anon_sym_alias] = ACTIONS(6066), + [anon_sym_let] = ACTIONS(6066), + [anon_sym_let_DASHenv] = ACTIONS(6066), + [anon_sym_mut] = ACTIONS(6066), + [anon_sym_const] = ACTIONS(6066), + [anon_sym_SEMI] = ACTIONS(6066), + [sym_cmd_identifier] = ACTIONS(6066), + [anon_sym_LF] = ACTIONS(6068), + [anon_sym_def] = ACTIONS(6066), + [anon_sym_export_DASHenv] = ACTIONS(6066), + [anon_sym_extern] = ACTIONS(6066), + [anon_sym_module] = ACTIONS(6066), + [anon_sym_use] = ACTIONS(6066), + [anon_sym_LBRACK] = ACTIONS(6066), + [anon_sym_LPAREN] = ACTIONS(6066), + [anon_sym_RPAREN] = ACTIONS(6066), + [anon_sym_DOLLAR] = ACTIONS(6066), + [anon_sym_error] = ACTIONS(6066), + [anon_sym_DASH] = ACTIONS(6066), + [anon_sym_break] = ACTIONS(6066), + [anon_sym_continue] = ACTIONS(6066), + [anon_sym_for] = ACTIONS(6066), + [anon_sym_loop] = ACTIONS(6066), + [anon_sym_while] = ACTIONS(6066), + [anon_sym_do] = ACTIONS(6066), + [anon_sym_if] = ACTIONS(6066), + [anon_sym_match] = ACTIONS(6066), + [anon_sym_LBRACE] = ACTIONS(6066), + [anon_sym_RBRACE] = ACTIONS(6066), + [anon_sym_DOT_DOT] = ACTIONS(6066), + [anon_sym_try] = ACTIONS(6066), + [anon_sym_return] = ACTIONS(6066), + [anon_sym_source] = ACTIONS(6066), + [anon_sym_source_DASHenv] = ACTIONS(6066), + [anon_sym_register] = ACTIONS(6066), + [anon_sym_hide] = ACTIONS(6066), + [anon_sym_hide_DASHenv] = ACTIONS(6066), + [anon_sym_overlay] = ACTIONS(6066), + [anon_sym_where] = ACTIONS(6066), + [anon_sym_not] = ACTIONS(6066), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6066), + [anon_sym_DOT_DOT_LT] = ACTIONS(6066), + [anon_sym_null] = ACTIONS(6066), + [anon_sym_true] = ACTIONS(6066), + [anon_sym_false] = ACTIONS(6066), + [aux_sym__val_number_decimal_token1] = ACTIONS(6066), + [aux_sym__val_number_decimal_token2] = ACTIONS(6066), + [anon_sym_DOT2] = ACTIONS(6066), + [aux_sym__val_number_decimal_token3] = ACTIONS(6066), + [aux_sym__val_number_token1] = ACTIONS(6066), + [aux_sym__val_number_token2] = ACTIONS(6066), + [aux_sym__val_number_token3] = ACTIONS(6066), + [aux_sym__val_number_token4] = ACTIONS(6066), + [aux_sym__val_number_token5] = ACTIONS(6066), + [aux_sym__val_number_token6] = ACTIONS(6066), + [anon_sym_0b] = ACTIONS(6066), + [anon_sym_0o] = ACTIONS(6066), + [anon_sym_0x] = ACTIONS(6066), + [sym_val_date] = ACTIONS(6066), + [anon_sym_DQUOTE] = ACTIONS(6066), + [sym__str_single_quotes] = ACTIONS(6066), + [sym__str_back_ticks] = ACTIONS(6066), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6066), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6066), + [anon_sym_CARET] = ACTIONS(6066), + [anon_sym_POUND] = ACTIONS(113), }, - [2050] = { - [sym_expr_unary] = STATE(6485), - [sym__expr_unary_minus] = STATE(6430), - [sym_expr_binary] = STATE(6485), - [sym__expr_binary_expression] = STATE(6691), - [sym_expr_parenthesized] = STATE(6485), - [sym__val_range] = STATE(10636), - [sym__value] = STATE(6485), - [sym_val_nothing] = STATE(6590), - [sym_val_bool] = STATE(6483), - [sym_val_variable] = STATE(6590), - [sym__var] = STATE(5737), - [sym_val_number] = STATE(6590), - [sym__val_number_decimal] = STATE(5187), - [sym__val_number] = STATE(6519), - [sym_val_duration] = STATE(6590), - [sym_val_filesize] = STATE(6590), - [sym_val_binary] = STATE(6590), - [sym_val_string] = STATE(6590), - [sym__str_double_quotes] = STATE(6540), - [sym_val_interpolated] = STATE(6590), - [sym__inter_single_quotes] = STATE(6464), - [sym__inter_double_quotes] = STATE(6419), - [sym_val_list] = STATE(6590), - [sym_val_record] = STATE(6590), - [sym_val_table] = STATE(6590), - [sym_val_closure] = STATE(6590), - [sym_unquoted] = STATE(6512), - [sym__unquoted_anonymous_prefix] = STATE(10827), - [sym_comment] = STATE(2050), - [anon_sym_LBRACK] = ACTIONS(4051), - [anon_sym_LPAREN] = ACTIONS(5585), - [anon_sym_DOLLAR] = ACTIONS(5587), - [anon_sym_DASH] = ACTIONS(4053), - [anon_sym_LBRACE] = ACTIONS(4055), - [anon_sym_DOT_DOT] = ACTIONS(5589), - [anon_sym_not] = ACTIONS(4059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5591), - [anon_sym_DOT_DOT_LT] = ACTIONS(5591), - [anon_sym_null] = ACTIONS(5593), - [anon_sym_true] = ACTIONS(5595), - [anon_sym_false] = ACTIONS(5595), - [aux_sym__val_number_decimal_token1] = ACTIONS(5597), - [aux_sym__val_number_decimal_token2] = ACTIONS(5599), - [anon_sym_DOT2] = ACTIONS(5601), - [aux_sym__val_number_decimal_token3] = ACTIONS(5603), - [aux_sym__val_number_token1] = ACTIONS(2764), - [aux_sym__val_number_token2] = ACTIONS(2764), - [aux_sym__val_number_token3] = ACTIONS(2764), - [aux_sym__val_number_token4] = ACTIONS(5605), - [aux_sym__val_number_token5] = ACTIONS(5605), - [aux_sym__val_number_token6] = ACTIONS(5605), - [anon_sym_0b] = ACTIONS(2768), - [anon_sym_0o] = ACTIONS(2770), - [anon_sym_0x] = ACTIONS(2770), - [sym_val_date] = ACTIONS(5607), - [anon_sym_DQUOTE] = ACTIONS(4079), - [sym__str_single_quotes] = ACTIONS(4081), - [sym__str_back_ticks] = ACTIONS(4081), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5609), - [anon_sym_POUND] = ACTIONS(3), + [2329] = { + [sym_cell_path] = STATE(2683), + [sym_path] = STATE(2311), + [sym_comment] = STATE(2329), + [ts_builtin_sym_end] = ACTIONS(1087), + [anon_sym_SEMI] = ACTIONS(1085), + [anon_sym_LF] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LPAREN] = ACTIONS(1085), + [anon_sym_PIPE] = ACTIONS(1085), + [anon_sym_DOLLAR] = ACTIONS(1085), + [anon_sym_GT] = ACTIONS(1085), + [anon_sym_DASH_DASH] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_in] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(1085), + [anon_sym_STAR_STAR] = ACTIONS(1085), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_SLASH] = ACTIONS(1085), + [anon_sym_mod] = ACTIONS(1085), + [anon_sym_SLASH_SLASH] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_bit_DASHshl] = ACTIONS(1085), + [anon_sym_bit_DASHshr] = ACTIONS(1085), + [anon_sym_EQ_EQ] = ACTIONS(1085), + [anon_sym_BANG_EQ] = ACTIONS(1085), + [anon_sym_LT2] = ACTIONS(1085), + [anon_sym_LT_EQ] = ACTIONS(1085), + [anon_sym_GT_EQ] = ACTIONS(1085), + [anon_sym_not_DASHin] = ACTIONS(1085), + [anon_sym_starts_DASHwith] = ACTIONS(1085), + [anon_sym_ends_DASHwith] = ACTIONS(1085), + [anon_sym_EQ_TILDE] = ACTIONS(1085), + [anon_sym_BANG_TILDE] = ACTIONS(1085), + [anon_sym_bit_DASHand] = ACTIONS(1085), + [anon_sym_bit_DASHxor] = ACTIONS(1085), + [anon_sym_bit_DASHor] = ACTIONS(1085), + [anon_sym_and] = ACTIONS(1085), + [anon_sym_xor] = ACTIONS(1085), + [anon_sym_or] = ACTIONS(1085), + [anon_sym_not] = ACTIONS(1085), + [anon_sym_DOT] = ACTIONS(5921), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1085), + [anon_sym_DOT_DOT_LT] = ACTIONS(1085), + [anon_sym_null] = ACTIONS(1085), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [aux_sym__val_number_decimal_token1] = ACTIONS(1085), + [aux_sym__val_number_decimal_token2] = ACTIONS(1085), + [anon_sym_DOT2] = ACTIONS(1085), + [aux_sym__val_number_decimal_token3] = ACTIONS(1085), + [aux_sym__val_number_token1] = ACTIONS(1085), + [aux_sym__val_number_token2] = ACTIONS(1085), + [aux_sym__val_number_token3] = ACTIONS(1085), + [aux_sym__val_number_token4] = ACTIONS(1085), + [aux_sym__val_number_token5] = ACTIONS(1085), + [aux_sym__val_number_token6] = ACTIONS(1085), + [anon_sym_0b] = ACTIONS(1085), + [anon_sym_0o] = ACTIONS(1085), + [anon_sym_0x] = ACTIONS(1085), + [sym_val_date] = ACTIONS(1085), + [anon_sym_DQUOTE] = ACTIONS(1085), + [sym__str_single_quotes] = ACTIONS(1085), + [sym__str_back_ticks] = ACTIONS(1085), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1085), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1085), + [anon_sym_POUND] = ACTIONS(113), }, - [2051] = { - [sym_expr_unary] = STATE(6271), - [sym__expr_unary_minus] = STATE(6202), - [sym_expr_binary] = STATE(6271), - [sym__expr_binary_expression] = STATE(5953), - [sym_expr_parenthesized] = STATE(6271), - [sym__val_range] = STATE(10544), - [sym__value] = STATE(6271), - [sym_val_nothing] = STATE(6237), - [sym_val_bool] = STATE(5819), - [sym_val_variable] = STATE(6237), - [sym__var] = STATE(5240), - [sym_val_number] = STATE(6237), - [sym__val_number_decimal] = STATE(4542), - [sym__val_number] = STATE(6253), - [sym_val_duration] = STATE(6237), - [sym_val_filesize] = STATE(6237), - [sym_val_binary] = STATE(6237), - [sym_val_string] = STATE(6237), - [sym__str_double_quotes] = STATE(6028), - [sym_val_interpolated] = STATE(6237), - [sym__inter_single_quotes] = STATE(6107), - [sym__inter_double_quotes] = STATE(6113), - [sym_val_list] = STATE(6237), - [sym_val_record] = STATE(6237), - [sym_val_table] = STATE(6237), - [sym_val_closure] = STATE(6237), - [sym_unquoted] = STATE(5964), - [sym__unquoted_anonymous_prefix] = STATE(11010), - [sym_comment] = STATE(2051), - [anon_sym_LBRACK] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(5611), - [anon_sym_DOLLAR] = ACTIONS(5613), - [anon_sym_DASH] = ACTIONS(4642), - [anon_sym_LBRACE] = ACTIONS(3007), - [anon_sym_DOT_DOT] = ACTIONS(5615), - [anon_sym_not] = ACTIONS(4646), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5617), - [anon_sym_DOT_DOT_LT] = ACTIONS(5617), - [anon_sym_null] = ACTIONS(4650), - [anon_sym_true] = ACTIONS(4652), - [anon_sym_false] = ACTIONS(4652), - [aux_sym__val_number_decimal_token1] = ACTIONS(4654), - [aux_sym__val_number_decimal_token2] = ACTIONS(4656), - [anon_sym_DOT2] = ACTIONS(5619), - [aux_sym__val_number_decimal_token3] = ACTIONS(4660), - [aux_sym__val_number_token1] = ACTIONS(3019), - [aux_sym__val_number_token2] = ACTIONS(3019), - [aux_sym__val_number_token3] = ACTIONS(3019), - [aux_sym__val_number_token4] = ACTIONS(4662), - [aux_sym__val_number_token5] = ACTIONS(4662), - [aux_sym__val_number_token6] = ACTIONS(4662), - [anon_sym_0b] = ACTIONS(2090), - [anon_sym_0o] = ACTIONS(2092), - [anon_sym_0x] = ACTIONS(2092), - [sym_val_date] = ACTIONS(4664), - [anon_sym_DQUOTE] = ACTIONS(3025), - [sym__str_single_quotes] = ACTIONS(3027), - [sym__str_back_ticks] = ACTIONS(3027), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3029), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3031), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2106), - [anon_sym_POUND] = ACTIONS(3), + [2330] = { + [sym_comment] = STATE(2330), + [anon_sym_export] = ACTIONS(6070), + [anon_sym_alias] = ACTIONS(6070), + [anon_sym_let] = ACTIONS(6070), + [anon_sym_let_DASHenv] = ACTIONS(6070), + [anon_sym_mut] = ACTIONS(6070), + [anon_sym_const] = ACTIONS(6070), + [anon_sym_SEMI] = ACTIONS(6070), + [sym_cmd_identifier] = ACTIONS(6070), + [anon_sym_LF] = ACTIONS(6072), + [anon_sym_def] = ACTIONS(6070), + [anon_sym_export_DASHenv] = ACTIONS(6070), + [anon_sym_extern] = ACTIONS(6070), + [anon_sym_module] = ACTIONS(6070), + [anon_sym_use] = ACTIONS(6070), + [anon_sym_LBRACK] = ACTIONS(6070), + [anon_sym_LPAREN] = ACTIONS(6070), + [anon_sym_RPAREN] = ACTIONS(6070), + [anon_sym_DOLLAR] = ACTIONS(6070), + [anon_sym_error] = ACTIONS(6070), + [anon_sym_DASH] = ACTIONS(6070), + [anon_sym_break] = ACTIONS(6070), + [anon_sym_continue] = ACTIONS(6070), + [anon_sym_for] = ACTIONS(6070), + [anon_sym_loop] = ACTIONS(6070), + [anon_sym_while] = ACTIONS(6070), + [anon_sym_do] = ACTIONS(6070), + [anon_sym_if] = ACTIONS(6070), + [anon_sym_match] = ACTIONS(6070), + [anon_sym_LBRACE] = ACTIONS(6070), + [anon_sym_RBRACE] = ACTIONS(6070), + [anon_sym_DOT_DOT] = ACTIONS(6070), + [anon_sym_try] = ACTIONS(6070), + [anon_sym_return] = ACTIONS(6070), + [anon_sym_source] = ACTIONS(6070), + [anon_sym_source_DASHenv] = ACTIONS(6070), + [anon_sym_register] = ACTIONS(6070), + [anon_sym_hide] = ACTIONS(6070), + [anon_sym_hide_DASHenv] = ACTIONS(6070), + [anon_sym_overlay] = ACTIONS(6070), + [anon_sym_where] = ACTIONS(6070), + [anon_sym_not] = ACTIONS(6070), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6070), + [anon_sym_DOT_DOT_LT] = ACTIONS(6070), + [anon_sym_null] = ACTIONS(6070), + [anon_sym_true] = ACTIONS(6070), + [anon_sym_false] = ACTIONS(6070), + [aux_sym__val_number_decimal_token1] = ACTIONS(6070), + [aux_sym__val_number_decimal_token2] = ACTIONS(6070), + [anon_sym_DOT2] = ACTIONS(6070), + [aux_sym__val_number_decimal_token3] = ACTIONS(6070), + [aux_sym__val_number_token1] = ACTIONS(6070), + [aux_sym__val_number_token2] = ACTIONS(6070), + [aux_sym__val_number_token3] = ACTIONS(6070), + [aux_sym__val_number_token4] = ACTIONS(6070), + [aux_sym__val_number_token5] = ACTIONS(6070), + [aux_sym__val_number_token6] = ACTIONS(6070), + [anon_sym_0b] = ACTIONS(6070), + [anon_sym_0o] = ACTIONS(6070), + [anon_sym_0x] = ACTIONS(6070), + [sym_val_date] = ACTIONS(6070), + [anon_sym_DQUOTE] = ACTIONS(6070), + [sym__str_single_quotes] = ACTIONS(6070), + [sym__str_back_ticks] = ACTIONS(6070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6070), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6070), + [anon_sym_CARET] = ACTIONS(6070), + [anon_sym_POUND] = ACTIONS(113), }, - [2052] = { - [sym_expr_unary] = STATE(6271), - [sym__expr_unary_minus] = STATE(6202), - [sym_expr_binary] = STATE(6271), - [sym__expr_binary_expression] = STATE(5966), - [sym_expr_parenthesized] = STATE(6271), - [sym__val_range] = STATE(10544), - [sym__value] = STATE(6271), - [sym_val_nothing] = STATE(6237), - [sym_val_bool] = STATE(5819), - [sym_val_variable] = STATE(6237), - [sym__var] = STATE(5240), - [sym_val_number] = STATE(6237), - [sym__val_number_decimal] = STATE(4542), - [sym__val_number] = STATE(6253), - [sym_val_duration] = STATE(6237), - [sym_val_filesize] = STATE(6237), - [sym_val_binary] = STATE(6237), - [sym_val_string] = STATE(6237), - [sym__str_double_quotes] = STATE(6028), - [sym_val_interpolated] = STATE(6237), - [sym__inter_single_quotes] = STATE(6107), - [sym__inter_double_quotes] = STATE(6113), - [sym_val_list] = STATE(6237), - [sym_val_record] = STATE(6237), - [sym_val_table] = STATE(6237), - [sym_val_closure] = STATE(6237), - [sym_unquoted] = STATE(5982), - [sym__unquoted_anonymous_prefix] = STATE(11010), - [sym_comment] = STATE(2052), - [anon_sym_LBRACK] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(5611), - [anon_sym_DOLLAR] = ACTIONS(5613), - [anon_sym_DASH] = ACTIONS(4642), - [anon_sym_LBRACE] = ACTIONS(3007), - [anon_sym_DOT_DOT] = ACTIONS(5615), - [anon_sym_not] = ACTIONS(4646), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5617), - [anon_sym_DOT_DOT_LT] = ACTIONS(5617), - [anon_sym_null] = ACTIONS(4650), - [anon_sym_true] = ACTIONS(4652), - [anon_sym_false] = ACTIONS(4652), - [aux_sym__val_number_decimal_token1] = ACTIONS(4654), - [aux_sym__val_number_decimal_token2] = ACTIONS(4656), - [anon_sym_DOT2] = ACTIONS(5619), - [aux_sym__val_number_decimal_token3] = ACTIONS(4660), - [aux_sym__val_number_token1] = ACTIONS(3019), - [aux_sym__val_number_token2] = ACTIONS(3019), - [aux_sym__val_number_token3] = ACTIONS(3019), - [aux_sym__val_number_token4] = ACTIONS(4662), - [aux_sym__val_number_token5] = ACTIONS(4662), - [aux_sym__val_number_token6] = ACTIONS(4662), - [anon_sym_0b] = ACTIONS(2090), - [anon_sym_0o] = ACTIONS(2092), - [anon_sym_0x] = ACTIONS(2092), - [sym_val_date] = ACTIONS(4664), - [anon_sym_DQUOTE] = ACTIONS(3025), - [sym__str_single_quotes] = ACTIONS(3027), - [sym__str_back_ticks] = ACTIONS(3027), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3029), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3031), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2106), - [anon_sym_POUND] = ACTIONS(3), + [2331] = { + [sym_comment] = STATE(2331), + [anon_sym_export] = ACTIONS(6074), + [anon_sym_alias] = ACTIONS(6074), + [anon_sym_let] = ACTIONS(6074), + [anon_sym_let_DASHenv] = ACTIONS(6074), + [anon_sym_mut] = ACTIONS(6074), + [anon_sym_const] = ACTIONS(6074), + [anon_sym_SEMI] = ACTIONS(6074), + [sym_cmd_identifier] = ACTIONS(6074), + [anon_sym_LF] = ACTIONS(6076), + [anon_sym_def] = ACTIONS(6074), + [anon_sym_export_DASHenv] = ACTIONS(6074), + [anon_sym_extern] = ACTIONS(6074), + [anon_sym_module] = ACTIONS(6074), + [anon_sym_use] = ACTIONS(6074), + [anon_sym_LBRACK] = ACTIONS(6074), + [anon_sym_LPAREN] = ACTIONS(6074), + [anon_sym_RPAREN] = ACTIONS(6074), + [anon_sym_DOLLAR] = ACTIONS(6074), + [anon_sym_error] = ACTIONS(6074), + [anon_sym_DASH] = ACTIONS(6074), + [anon_sym_break] = ACTIONS(6074), + [anon_sym_continue] = ACTIONS(6074), + [anon_sym_for] = ACTIONS(6074), + [anon_sym_loop] = ACTIONS(6074), + [anon_sym_while] = ACTIONS(6074), + [anon_sym_do] = ACTIONS(6074), + [anon_sym_if] = ACTIONS(6074), + [anon_sym_match] = ACTIONS(6074), + [anon_sym_LBRACE] = ACTIONS(6074), + [anon_sym_RBRACE] = ACTIONS(6074), + [anon_sym_DOT_DOT] = ACTIONS(6074), + [anon_sym_try] = ACTIONS(6074), + [anon_sym_return] = ACTIONS(6074), + [anon_sym_source] = ACTIONS(6074), + [anon_sym_source_DASHenv] = ACTIONS(6074), + [anon_sym_register] = ACTIONS(6074), + [anon_sym_hide] = ACTIONS(6074), + [anon_sym_hide_DASHenv] = ACTIONS(6074), + [anon_sym_overlay] = ACTIONS(6074), + [anon_sym_where] = ACTIONS(6074), + [anon_sym_not] = ACTIONS(6074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6074), + [anon_sym_DOT_DOT_LT] = ACTIONS(6074), + [anon_sym_null] = ACTIONS(6074), + [anon_sym_true] = ACTIONS(6074), + [anon_sym_false] = ACTIONS(6074), + [aux_sym__val_number_decimal_token1] = ACTIONS(6074), + [aux_sym__val_number_decimal_token2] = ACTIONS(6074), + [anon_sym_DOT2] = ACTIONS(6074), + [aux_sym__val_number_decimal_token3] = ACTIONS(6074), + [aux_sym__val_number_token1] = ACTIONS(6074), + [aux_sym__val_number_token2] = ACTIONS(6074), + [aux_sym__val_number_token3] = ACTIONS(6074), + [aux_sym__val_number_token4] = ACTIONS(6074), + [aux_sym__val_number_token5] = ACTIONS(6074), + [aux_sym__val_number_token6] = ACTIONS(6074), + [anon_sym_0b] = ACTIONS(6074), + [anon_sym_0o] = ACTIONS(6074), + [anon_sym_0x] = ACTIONS(6074), + [sym_val_date] = ACTIONS(6074), + [anon_sym_DQUOTE] = ACTIONS(6074), + [sym__str_single_quotes] = ACTIONS(6074), + [sym__str_back_ticks] = ACTIONS(6074), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6074), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6074), + [anon_sym_CARET] = ACTIONS(6074), + [anon_sym_POUND] = ACTIONS(113), }, - [2053] = { - [sym_expr_unary] = STATE(6271), - [sym__expr_unary_minus] = STATE(6202), - [sym_expr_binary] = STATE(6271), - [sym__expr_binary_expression] = STATE(5985), - [sym_expr_parenthesized] = STATE(6271), - [sym__val_range] = STATE(10544), - [sym__value] = STATE(6271), - [sym_val_nothing] = STATE(6237), - [sym_val_bool] = STATE(5819), - [sym_val_variable] = STATE(6237), - [sym__var] = STATE(5240), - [sym_val_number] = STATE(6237), - [sym__val_number_decimal] = STATE(4542), - [sym__val_number] = STATE(6253), - [sym_val_duration] = STATE(6237), - [sym_val_filesize] = STATE(6237), - [sym_val_binary] = STATE(6237), - [sym_val_string] = STATE(6237), - [sym__str_double_quotes] = STATE(6028), - [sym_val_interpolated] = STATE(6237), - [sym__inter_single_quotes] = STATE(6107), - [sym__inter_double_quotes] = STATE(6113), - [sym_val_list] = STATE(6237), - [sym_val_record] = STATE(6237), - [sym_val_table] = STATE(6237), - [sym_val_closure] = STATE(6237), - [sym_unquoted] = STATE(5988), - [sym__unquoted_anonymous_prefix] = STATE(11010), - [sym_comment] = STATE(2053), - [anon_sym_LBRACK] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(5611), - [anon_sym_DOLLAR] = ACTIONS(5613), - [anon_sym_DASH] = ACTIONS(4642), - [anon_sym_LBRACE] = ACTIONS(3007), - [anon_sym_DOT_DOT] = ACTIONS(5615), - [anon_sym_not] = ACTIONS(4646), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5617), - [anon_sym_DOT_DOT_LT] = ACTIONS(5617), - [anon_sym_null] = ACTIONS(4650), - [anon_sym_true] = ACTIONS(4652), - [anon_sym_false] = ACTIONS(4652), - [aux_sym__val_number_decimal_token1] = ACTIONS(4654), - [aux_sym__val_number_decimal_token2] = ACTIONS(4656), - [anon_sym_DOT2] = ACTIONS(5619), - [aux_sym__val_number_decimal_token3] = ACTIONS(4660), - [aux_sym__val_number_token1] = ACTIONS(3019), - [aux_sym__val_number_token2] = ACTIONS(3019), - [aux_sym__val_number_token3] = ACTIONS(3019), - [aux_sym__val_number_token4] = ACTIONS(4662), - [aux_sym__val_number_token5] = ACTIONS(4662), - [aux_sym__val_number_token6] = ACTIONS(4662), - [anon_sym_0b] = ACTIONS(2090), - [anon_sym_0o] = ACTIONS(2092), - [anon_sym_0x] = ACTIONS(2092), - [sym_val_date] = ACTIONS(4664), - [anon_sym_DQUOTE] = ACTIONS(3025), - [sym__str_single_quotes] = ACTIONS(3027), - [sym__str_back_ticks] = ACTIONS(3027), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3029), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3031), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2106), - [anon_sym_POUND] = ACTIONS(3), + [2332] = { + [sym_comment] = STATE(2332), + [ts_builtin_sym_end] = ACTIONS(1091), + [anon_sym_SEMI] = ACTIONS(1089), + [anon_sym_LF] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1089), + [anon_sym_PIPE] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1089), + [anon_sym_GT] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_DASH] = ACTIONS(1089), + [anon_sym_in] = ACTIONS(1089), + [anon_sym_LBRACE] = ACTIONS(1089), + [anon_sym_DOT_DOT] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_STAR_STAR] = ACTIONS(1089), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_SLASH] = ACTIONS(1089), + [anon_sym_mod] = ACTIONS(1089), + [anon_sym_SLASH_SLASH] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1089), + [anon_sym_bit_DASHshl] = ACTIONS(1089), + [anon_sym_bit_DASHshr] = ACTIONS(1089), + [anon_sym_EQ_EQ] = ACTIONS(1089), + [anon_sym_BANG_EQ] = ACTIONS(1089), + [anon_sym_LT2] = ACTIONS(1089), + [anon_sym_LT_EQ] = ACTIONS(1089), + [anon_sym_GT_EQ] = ACTIONS(1089), + [anon_sym_not_DASHin] = ACTIONS(1089), + [anon_sym_starts_DASHwith] = ACTIONS(1089), + [anon_sym_ends_DASHwith] = ACTIONS(1089), + [anon_sym_EQ_TILDE] = ACTIONS(1089), + [anon_sym_BANG_TILDE] = ACTIONS(1089), + [anon_sym_bit_DASHand] = ACTIONS(1089), + [anon_sym_bit_DASHxor] = ACTIONS(1089), + [anon_sym_bit_DASHor] = ACTIONS(1089), + [anon_sym_and] = ACTIONS(1089), + [anon_sym_xor] = ACTIONS(1089), + [anon_sym_or] = ACTIONS(1089), + [anon_sym_not] = ACTIONS(1089), + [anon_sym_DOT_DOT2] = ACTIONS(6009), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_DOT_DOT_LT] = ACTIONS(1089), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(6011), + [anon_sym_DOT_DOT_LT2] = ACTIONS(6011), + [anon_sym_null] = ACTIONS(1089), + [anon_sym_true] = ACTIONS(1089), + [anon_sym_false] = ACTIONS(1089), + [aux_sym__val_number_decimal_token1] = ACTIONS(1089), + [aux_sym__val_number_decimal_token2] = ACTIONS(1089), + [anon_sym_DOT2] = ACTIONS(1089), + [aux_sym__val_number_decimal_token3] = ACTIONS(1089), + [aux_sym__val_number_token1] = ACTIONS(1089), + [aux_sym__val_number_token2] = ACTIONS(1089), + [aux_sym__val_number_token3] = ACTIONS(1089), + [aux_sym__val_number_token4] = ACTIONS(1089), + [aux_sym__val_number_token5] = ACTIONS(1089), + [aux_sym__val_number_token6] = ACTIONS(1089), + [anon_sym_0b] = ACTIONS(1089), + [anon_sym_0o] = ACTIONS(1089), + [anon_sym_0x] = ACTIONS(1089), + [sym_val_date] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1089), + [sym__str_single_quotes] = ACTIONS(1089), + [sym__str_back_ticks] = ACTIONS(1089), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1089), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1089), + [anon_sym_POUND] = ACTIONS(113), }, - [2054] = { - [sym_expr_unary] = STATE(6271), - [sym__expr_unary_minus] = STATE(6202), - [sym_expr_binary] = STATE(6271), - [sym__expr_binary_expression] = STATE(5993), - [sym_expr_parenthesized] = STATE(6271), - [sym__val_range] = STATE(10544), - [sym__value] = STATE(6271), - [sym_val_nothing] = STATE(6237), - [sym_val_bool] = STATE(5819), - [sym_val_variable] = STATE(6237), - [sym__var] = STATE(5240), - [sym_val_number] = STATE(6237), - [sym__val_number_decimal] = STATE(4542), - [sym__val_number] = STATE(6253), - [sym_val_duration] = STATE(6237), - [sym_val_filesize] = STATE(6237), - [sym_val_binary] = STATE(6237), - [sym_val_string] = STATE(6237), - [sym__str_double_quotes] = STATE(6028), - [sym_val_interpolated] = STATE(6237), - [sym__inter_single_quotes] = STATE(6107), - [sym__inter_double_quotes] = STATE(6113), - [sym_val_list] = STATE(6237), - [sym_val_record] = STATE(6237), - [sym_val_table] = STATE(6237), - [sym_val_closure] = STATE(6237), - [sym_unquoted] = STATE(5995), - [sym__unquoted_anonymous_prefix] = STATE(11010), - [sym_comment] = STATE(2054), - [anon_sym_LBRACK] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(5611), - [anon_sym_DOLLAR] = ACTIONS(5613), - [anon_sym_DASH] = ACTIONS(4642), - [anon_sym_LBRACE] = ACTIONS(3007), - [anon_sym_DOT_DOT] = ACTIONS(5615), - [anon_sym_not] = ACTIONS(4646), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5617), - [anon_sym_DOT_DOT_LT] = ACTIONS(5617), - [anon_sym_null] = ACTIONS(4650), - [anon_sym_true] = ACTIONS(4652), - [anon_sym_false] = ACTIONS(4652), - [aux_sym__val_number_decimal_token1] = ACTIONS(4654), - [aux_sym__val_number_decimal_token2] = ACTIONS(4656), - [anon_sym_DOT2] = ACTIONS(5619), - [aux_sym__val_number_decimal_token3] = ACTIONS(4660), - [aux_sym__val_number_token1] = ACTIONS(3019), - [aux_sym__val_number_token2] = ACTIONS(3019), - [aux_sym__val_number_token3] = ACTIONS(3019), - [aux_sym__val_number_token4] = ACTIONS(4662), - [aux_sym__val_number_token5] = ACTIONS(4662), - [aux_sym__val_number_token6] = ACTIONS(4662), - [anon_sym_0b] = ACTIONS(2090), - [anon_sym_0o] = ACTIONS(2092), - [anon_sym_0x] = ACTIONS(2092), - [sym_val_date] = ACTIONS(4664), - [anon_sym_DQUOTE] = ACTIONS(3025), - [sym__str_single_quotes] = ACTIONS(3027), - [sym__str_back_ticks] = ACTIONS(3027), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3029), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3031), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2106), - [anon_sym_POUND] = ACTIONS(3), + [2333] = { + [sym_comment] = STATE(2333), + [anon_sym_export] = ACTIONS(6078), + [anon_sym_alias] = ACTIONS(6078), + [anon_sym_let] = ACTIONS(6078), + [anon_sym_let_DASHenv] = ACTIONS(6078), + [anon_sym_mut] = ACTIONS(6078), + [anon_sym_const] = ACTIONS(6078), + [anon_sym_SEMI] = ACTIONS(6078), + [sym_cmd_identifier] = ACTIONS(6078), + [anon_sym_LF] = ACTIONS(6080), + [anon_sym_def] = ACTIONS(6078), + [anon_sym_export_DASHenv] = ACTIONS(6078), + [anon_sym_extern] = ACTIONS(6078), + [anon_sym_module] = ACTIONS(6078), + [anon_sym_use] = ACTIONS(6078), + [anon_sym_LBRACK] = ACTIONS(6078), + [anon_sym_LPAREN] = ACTIONS(6078), + [anon_sym_RPAREN] = ACTIONS(6078), + [anon_sym_DOLLAR] = ACTIONS(6078), + [anon_sym_error] = ACTIONS(6078), + [anon_sym_DASH] = ACTIONS(6078), + [anon_sym_break] = ACTIONS(6078), + [anon_sym_continue] = ACTIONS(6078), + [anon_sym_for] = ACTIONS(6078), + [anon_sym_loop] = ACTIONS(6078), + [anon_sym_while] = ACTIONS(6078), + [anon_sym_do] = ACTIONS(6078), + [anon_sym_if] = ACTIONS(6078), + [anon_sym_match] = ACTIONS(6078), + [anon_sym_LBRACE] = ACTIONS(6078), + [anon_sym_RBRACE] = ACTIONS(6078), + [anon_sym_DOT_DOT] = ACTIONS(6078), + [anon_sym_try] = ACTIONS(6078), + [anon_sym_return] = ACTIONS(6078), + [anon_sym_source] = ACTIONS(6078), + [anon_sym_source_DASHenv] = ACTIONS(6078), + [anon_sym_register] = ACTIONS(6078), + [anon_sym_hide] = ACTIONS(6078), + [anon_sym_hide_DASHenv] = ACTIONS(6078), + [anon_sym_overlay] = ACTIONS(6078), + [anon_sym_where] = ACTIONS(6078), + [anon_sym_not] = ACTIONS(6078), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6078), + [anon_sym_DOT_DOT_LT] = ACTIONS(6078), + [anon_sym_null] = ACTIONS(6078), + [anon_sym_true] = ACTIONS(6078), + [anon_sym_false] = ACTIONS(6078), + [aux_sym__val_number_decimal_token1] = ACTIONS(6078), + [aux_sym__val_number_decimal_token2] = ACTIONS(6078), + [anon_sym_DOT2] = ACTIONS(6078), + [aux_sym__val_number_decimal_token3] = ACTIONS(6078), + [aux_sym__val_number_token1] = ACTIONS(6078), + [aux_sym__val_number_token2] = ACTIONS(6078), + [aux_sym__val_number_token3] = ACTIONS(6078), + [aux_sym__val_number_token4] = ACTIONS(6078), + [aux_sym__val_number_token5] = ACTIONS(6078), + [aux_sym__val_number_token6] = ACTIONS(6078), + [anon_sym_0b] = ACTIONS(6078), + [anon_sym_0o] = ACTIONS(6078), + [anon_sym_0x] = ACTIONS(6078), + [sym_val_date] = ACTIONS(6078), + [anon_sym_DQUOTE] = ACTIONS(6078), + [sym__str_single_quotes] = ACTIONS(6078), + [sym__str_back_ticks] = ACTIONS(6078), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6078), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6078), + [anon_sym_CARET] = ACTIONS(6078), + [anon_sym_POUND] = ACTIONS(113), }, - [2055] = { - [sym_expr_unary] = STATE(6271), - [sym__expr_unary_minus] = STATE(6202), - [sym_expr_binary] = STATE(6271), - [sym__expr_binary_expression] = STATE(6002), - [sym_expr_parenthesized] = STATE(6271), - [sym__val_range] = STATE(10544), - [sym__value] = STATE(6271), - [sym_val_nothing] = STATE(6237), - [sym_val_bool] = STATE(5819), - [sym_val_variable] = STATE(6237), - [sym__var] = STATE(5240), - [sym_val_number] = STATE(6237), - [sym__val_number_decimal] = STATE(4542), - [sym__val_number] = STATE(6253), - [sym_val_duration] = STATE(6237), - [sym_val_filesize] = STATE(6237), - [sym_val_binary] = STATE(6237), - [sym_val_string] = STATE(6237), - [sym__str_double_quotes] = STATE(6028), - [sym_val_interpolated] = STATE(6237), - [sym__inter_single_quotes] = STATE(6107), - [sym__inter_double_quotes] = STATE(6113), - [sym_val_list] = STATE(6237), - [sym_val_record] = STATE(6237), - [sym_val_table] = STATE(6237), - [sym_val_closure] = STATE(6237), - [sym_unquoted] = STATE(6004), - [sym__unquoted_anonymous_prefix] = STATE(11010), - [sym_comment] = STATE(2055), - [anon_sym_LBRACK] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(5611), - [anon_sym_DOLLAR] = ACTIONS(5613), - [anon_sym_DASH] = ACTIONS(4642), - [anon_sym_LBRACE] = ACTIONS(3007), - [anon_sym_DOT_DOT] = ACTIONS(5615), - [anon_sym_not] = ACTIONS(4646), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5617), - [anon_sym_DOT_DOT_LT] = ACTIONS(5617), - [anon_sym_null] = ACTIONS(4650), - [anon_sym_true] = ACTIONS(4652), - [anon_sym_false] = ACTIONS(4652), - [aux_sym__val_number_decimal_token1] = ACTIONS(4654), - [aux_sym__val_number_decimal_token2] = ACTIONS(4656), - [anon_sym_DOT2] = ACTIONS(5619), - [aux_sym__val_number_decimal_token3] = ACTIONS(4660), - [aux_sym__val_number_token1] = ACTIONS(3019), - [aux_sym__val_number_token2] = ACTIONS(3019), - [aux_sym__val_number_token3] = ACTIONS(3019), - [aux_sym__val_number_token4] = ACTIONS(4662), - [aux_sym__val_number_token5] = ACTIONS(4662), - [aux_sym__val_number_token6] = ACTIONS(4662), - [anon_sym_0b] = ACTIONS(2090), - [anon_sym_0o] = ACTIONS(2092), - [anon_sym_0x] = ACTIONS(2092), - [sym_val_date] = ACTIONS(4664), - [anon_sym_DQUOTE] = ACTIONS(3025), - [sym__str_single_quotes] = ACTIONS(3027), - [sym__str_back_ticks] = ACTIONS(3027), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3029), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3031), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2106), - [anon_sym_POUND] = ACTIONS(3), + [2334] = { + [sym_comment] = STATE(2334), + [anon_sym_export] = ACTIONS(6082), + [anon_sym_alias] = ACTIONS(6082), + [anon_sym_let] = ACTIONS(6082), + [anon_sym_let_DASHenv] = ACTIONS(6082), + [anon_sym_mut] = ACTIONS(6082), + [anon_sym_const] = ACTIONS(6082), + [anon_sym_SEMI] = ACTIONS(6082), + [sym_cmd_identifier] = ACTIONS(6082), + [anon_sym_LF] = ACTIONS(6084), + [anon_sym_def] = ACTIONS(6082), + [anon_sym_export_DASHenv] = ACTIONS(6082), + [anon_sym_extern] = ACTIONS(6082), + [anon_sym_module] = ACTIONS(6082), + [anon_sym_use] = ACTIONS(6082), + [anon_sym_LBRACK] = ACTIONS(6082), + [anon_sym_LPAREN] = ACTIONS(6082), + [anon_sym_RPAREN] = ACTIONS(6082), + [anon_sym_DOLLAR] = ACTIONS(6082), + [anon_sym_error] = ACTIONS(6082), + [anon_sym_DASH] = ACTIONS(6082), + [anon_sym_break] = ACTIONS(6082), + [anon_sym_continue] = ACTIONS(6082), + [anon_sym_for] = ACTIONS(6082), + [anon_sym_loop] = ACTIONS(6082), + [anon_sym_while] = ACTIONS(6082), + [anon_sym_do] = ACTIONS(6082), + [anon_sym_if] = ACTIONS(6082), + [anon_sym_match] = ACTIONS(6082), + [anon_sym_LBRACE] = ACTIONS(6082), + [anon_sym_RBRACE] = ACTIONS(6082), + [anon_sym_DOT_DOT] = ACTIONS(6082), + [anon_sym_try] = ACTIONS(6082), + [anon_sym_return] = ACTIONS(6082), + [anon_sym_source] = ACTIONS(6082), + [anon_sym_source_DASHenv] = ACTIONS(6082), + [anon_sym_register] = ACTIONS(6082), + [anon_sym_hide] = ACTIONS(6082), + [anon_sym_hide_DASHenv] = ACTIONS(6082), + [anon_sym_overlay] = ACTIONS(6082), + [anon_sym_where] = ACTIONS(6082), + [anon_sym_not] = ACTIONS(6082), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6082), + [anon_sym_DOT_DOT_LT] = ACTIONS(6082), + [anon_sym_null] = ACTIONS(6082), + [anon_sym_true] = ACTIONS(6082), + [anon_sym_false] = ACTIONS(6082), + [aux_sym__val_number_decimal_token1] = ACTIONS(6082), + [aux_sym__val_number_decimal_token2] = ACTIONS(6082), + [anon_sym_DOT2] = ACTIONS(6082), + [aux_sym__val_number_decimal_token3] = ACTIONS(6082), + [aux_sym__val_number_token1] = ACTIONS(6082), + [aux_sym__val_number_token2] = ACTIONS(6082), + [aux_sym__val_number_token3] = ACTIONS(6082), + [aux_sym__val_number_token4] = ACTIONS(6082), + [aux_sym__val_number_token5] = ACTIONS(6082), + [aux_sym__val_number_token6] = ACTIONS(6082), + [anon_sym_0b] = ACTIONS(6082), + [anon_sym_0o] = ACTIONS(6082), + [anon_sym_0x] = ACTIONS(6082), + [sym_val_date] = ACTIONS(6082), + [anon_sym_DQUOTE] = ACTIONS(6082), + [sym__str_single_quotes] = ACTIONS(6082), + [sym__str_back_ticks] = ACTIONS(6082), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6082), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6082), + [anon_sym_CARET] = ACTIONS(6082), + [anon_sym_POUND] = ACTIONS(113), }, - [2056] = { - [sym_expr_unary] = STATE(6271), - [sym__expr_unary_minus] = STATE(6202), - [sym_expr_binary] = STATE(6271), - [sym__expr_binary_expression] = STATE(6005), - [sym_expr_parenthesized] = STATE(6271), - [sym__val_range] = STATE(10544), - [sym__value] = STATE(6271), - [sym_val_nothing] = STATE(6237), - [sym_val_bool] = STATE(5819), - [sym_val_variable] = STATE(6237), - [sym__var] = STATE(5240), - [sym_val_number] = STATE(6237), - [sym__val_number_decimal] = STATE(4542), - [sym__val_number] = STATE(6253), - [sym_val_duration] = STATE(6237), - [sym_val_filesize] = STATE(6237), - [sym_val_binary] = STATE(6237), - [sym_val_string] = STATE(6237), - [sym__str_double_quotes] = STATE(6028), - [sym_val_interpolated] = STATE(6237), - [sym__inter_single_quotes] = STATE(6107), - [sym__inter_double_quotes] = STATE(6113), - [sym_val_list] = STATE(6237), - [sym_val_record] = STATE(6237), - [sym_val_table] = STATE(6237), - [sym_val_closure] = STATE(6237), - [sym_unquoted] = STATE(6006), - [sym__unquoted_anonymous_prefix] = STATE(11010), - [sym_comment] = STATE(2056), - [anon_sym_LBRACK] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(5611), - [anon_sym_DOLLAR] = ACTIONS(5613), - [anon_sym_DASH] = ACTIONS(4642), - [anon_sym_LBRACE] = ACTIONS(3007), - [anon_sym_DOT_DOT] = ACTIONS(5615), - [anon_sym_not] = ACTIONS(4646), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5617), - [anon_sym_DOT_DOT_LT] = ACTIONS(5617), - [anon_sym_null] = ACTIONS(4650), - [anon_sym_true] = ACTIONS(4652), - [anon_sym_false] = ACTIONS(4652), - [aux_sym__val_number_decimal_token1] = ACTIONS(4654), - [aux_sym__val_number_decimal_token2] = ACTIONS(4656), - [anon_sym_DOT2] = ACTIONS(5619), - [aux_sym__val_number_decimal_token3] = ACTIONS(4660), - [aux_sym__val_number_token1] = ACTIONS(3019), - [aux_sym__val_number_token2] = ACTIONS(3019), - [aux_sym__val_number_token3] = ACTIONS(3019), - [aux_sym__val_number_token4] = ACTIONS(4662), - [aux_sym__val_number_token5] = ACTIONS(4662), - [aux_sym__val_number_token6] = ACTIONS(4662), - [anon_sym_0b] = ACTIONS(2090), - [anon_sym_0o] = ACTIONS(2092), - [anon_sym_0x] = ACTIONS(2092), - [sym_val_date] = ACTIONS(4664), - [anon_sym_DQUOTE] = ACTIONS(3025), - [sym__str_single_quotes] = ACTIONS(3027), - [sym__str_back_ticks] = ACTIONS(3027), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3029), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3031), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2106), - [anon_sym_POUND] = ACTIONS(3), + [2335] = { + [sym_comment] = STATE(2335), + [anon_sym_export] = ACTIONS(6062), + [anon_sym_alias] = ACTIONS(6062), + [anon_sym_let] = ACTIONS(6062), + [anon_sym_let_DASHenv] = ACTIONS(6062), + [anon_sym_mut] = ACTIONS(6062), + [anon_sym_const] = ACTIONS(6062), + [anon_sym_SEMI] = ACTIONS(6062), + [sym_cmd_identifier] = ACTIONS(6062), + [anon_sym_LF] = ACTIONS(6064), + [anon_sym_def] = ACTIONS(6062), + [anon_sym_export_DASHenv] = ACTIONS(6062), + [anon_sym_extern] = ACTIONS(6062), + [anon_sym_module] = ACTIONS(6062), + [anon_sym_use] = ACTIONS(6062), + [anon_sym_LBRACK] = ACTIONS(6062), + [anon_sym_LPAREN] = ACTIONS(6062), + [anon_sym_RPAREN] = ACTIONS(6062), + [anon_sym_DOLLAR] = ACTIONS(6062), + [anon_sym_error] = ACTIONS(6062), + [anon_sym_DASH] = ACTIONS(6062), + [anon_sym_break] = ACTIONS(6062), + [anon_sym_continue] = ACTIONS(6062), + [anon_sym_for] = ACTIONS(6062), + [anon_sym_loop] = ACTIONS(6062), + [anon_sym_while] = ACTIONS(6062), + [anon_sym_do] = ACTIONS(6062), + [anon_sym_if] = ACTIONS(6062), + [anon_sym_match] = ACTIONS(6062), + [anon_sym_LBRACE] = ACTIONS(6062), + [anon_sym_RBRACE] = ACTIONS(6062), + [anon_sym_DOT_DOT] = ACTIONS(6062), + [anon_sym_try] = ACTIONS(6062), + [anon_sym_return] = ACTIONS(6062), + [anon_sym_source] = ACTIONS(6062), + [anon_sym_source_DASHenv] = ACTIONS(6062), + [anon_sym_register] = ACTIONS(6062), + [anon_sym_hide] = ACTIONS(6062), + [anon_sym_hide_DASHenv] = ACTIONS(6062), + [anon_sym_overlay] = ACTIONS(6062), + [anon_sym_where] = ACTIONS(6062), + [anon_sym_not] = ACTIONS(6062), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6062), + [anon_sym_DOT_DOT_LT] = ACTIONS(6062), + [anon_sym_null] = ACTIONS(6062), + [anon_sym_true] = ACTIONS(6062), + [anon_sym_false] = ACTIONS(6062), + [aux_sym__val_number_decimal_token1] = ACTIONS(6062), + [aux_sym__val_number_decimal_token2] = ACTIONS(6062), + [anon_sym_DOT2] = ACTIONS(6062), + [aux_sym__val_number_decimal_token3] = ACTIONS(6062), + [aux_sym__val_number_token1] = ACTIONS(6062), + [aux_sym__val_number_token2] = ACTIONS(6062), + [aux_sym__val_number_token3] = ACTIONS(6062), + [aux_sym__val_number_token4] = ACTIONS(6062), + [aux_sym__val_number_token5] = ACTIONS(6062), + [aux_sym__val_number_token6] = ACTIONS(6062), + [anon_sym_0b] = ACTIONS(6062), + [anon_sym_0o] = ACTIONS(6062), + [anon_sym_0x] = ACTIONS(6062), + [sym_val_date] = ACTIONS(6062), + [anon_sym_DQUOTE] = ACTIONS(6062), + [sym__str_single_quotes] = ACTIONS(6062), + [sym__str_back_ticks] = ACTIONS(6062), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6062), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6062), + [anon_sym_CARET] = ACTIONS(6062), + [anon_sym_POUND] = ACTIONS(113), }, - [2057] = { - [sym_expr_unary] = STATE(6271), - [sym__expr_unary_minus] = STATE(6202), - [sym_expr_binary] = STATE(6271), - [sym__expr_binary_expression] = STATE(6007), - [sym_expr_parenthesized] = STATE(6271), - [sym__val_range] = STATE(10544), - [sym__value] = STATE(6271), - [sym_val_nothing] = STATE(6237), - [sym_val_bool] = STATE(5819), - [sym_val_variable] = STATE(6237), - [sym__var] = STATE(5240), - [sym_val_number] = STATE(6237), - [sym__val_number_decimal] = STATE(4542), - [sym__val_number] = STATE(6253), - [sym_val_duration] = STATE(6237), - [sym_val_filesize] = STATE(6237), - [sym_val_binary] = STATE(6237), - [sym_val_string] = STATE(6237), - [sym__str_double_quotes] = STATE(6028), - [sym_val_interpolated] = STATE(6237), - [sym__inter_single_quotes] = STATE(6107), - [sym__inter_double_quotes] = STATE(6113), - [sym_val_list] = STATE(6237), - [sym_val_record] = STATE(6237), - [sym_val_table] = STATE(6237), - [sym_val_closure] = STATE(6237), - [sym_unquoted] = STATE(6013), - [sym__unquoted_anonymous_prefix] = STATE(11010), - [sym_comment] = STATE(2057), - [anon_sym_LBRACK] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(5611), - [anon_sym_DOLLAR] = ACTIONS(5613), - [anon_sym_DASH] = ACTIONS(4642), - [anon_sym_LBRACE] = ACTIONS(3007), - [anon_sym_DOT_DOT] = ACTIONS(5615), - [anon_sym_not] = ACTIONS(4646), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5617), - [anon_sym_DOT_DOT_LT] = ACTIONS(5617), - [anon_sym_null] = ACTIONS(4650), - [anon_sym_true] = ACTIONS(4652), - [anon_sym_false] = ACTIONS(4652), - [aux_sym__val_number_decimal_token1] = ACTIONS(4654), - [aux_sym__val_number_decimal_token2] = ACTIONS(4656), - [anon_sym_DOT2] = ACTIONS(5619), - [aux_sym__val_number_decimal_token3] = ACTIONS(4660), - [aux_sym__val_number_token1] = ACTIONS(3019), - [aux_sym__val_number_token2] = ACTIONS(3019), - [aux_sym__val_number_token3] = ACTIONS(3019), - [aux_sym__val_number_token4] = ACTIONS(4662), - [aux_sym__val_number_token5] = ACTIONS(4662), - [aux_sym__val_number_token6] = ACTIONS(4662), - [anon_sym_0b] = ACTIONS(2090), - [anon_sym_0o] = ACTIONS(2092), - [anon_sym_0x] = ACTIONS(2092), - [sym_val_date] = ACTIONS(4664), - [anon_sym_DQUOTE] = ACTIONS(3025), - [sym__str_single_quotes] = ACTIONS(3027), - [sym__str_back_ticks] = ACTIONS(3027), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3029), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3031), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2106), - [anon_sym_POUND] = ACTIONS(3), + [2336] = { + [sym_comment] = STATE(2336), + [anon_sym_export] = ACTIONS(6086), + [anon_sym_alias] = ACTIONS(6086), + [anon_sym_let] = ACTIONS(6086), + [anon_sym_let_DASHenv] = ACTIONS(6086), + [anon_sym_mut] = ACTIONS(6086), + [anon_sym_const] = ACTIONS(6086), + [anon_sym_SEMI] = ACTIONS(6086), + [sym_cmd_identifier] = ACTIONS(6086), + [anon_sym_LF] = ACTIONS(6088), + [anon_sym_def] = ACTIONS(6086), + [anon_sym_export_DASHenv] = ACTIONS(6086), + [anon_sym_extern] = ACTIONS(6086), + [anon_sym_module] = ACTIONS(6086), + [anon_sym_use] = ACTIONS(6086), + [anon_sym_LBRACK] = ACTIONS(6086), + [anon_sym_LPAREN] = ACTIONS(6086), + [anon_sym_RPAREN] = ACTIONS(6086), + [anon_sym_DOLLAR] = ACTIONS(6086), + [anon_sym_error] = ACTIONS(6086), + [anon_sym_DASH] = ACTIONS(6086), + [anon_sym_break] = ACTIONS(6086), + [anon_sym_continue] = ACTIONS(6086), + [anon_sym_for] = ACTIONS(6086), + [anon_sym_loop] = ACTIONS(6086), + [anon_sym_while] = ACTIONS(6086), + [anon_sym_do] = ACTIONS(6086), + [anon_sym_if] = ACTIONS(6086), + [anon_sym_match] = ACTIONS(6086), + [anon_sym_LBRACE] = ACTIONS(6086), + [anon_sym_RBRACE] = ACTIONS(6086), + [anon_sym_DOT_DOT] = ACTIONS(6086), + [anon_sym_try] = ACTIONS(6086), + [anon_sym_return] = ACTIONS(6086), + [anon_sym_source] = ACTIONS(6086), + [anon_sym_source_DASHenv] = ACTIONS(6086), + [anon_sym_register] = ACTIONS(6086), + [anon_sym_hide] = ACTIONS(6086), + [anon_sym_hide_DASHenv] = ACTIONS(6086), + [anon_sym_overlay] = ACTIONS(6086), + [anon_sym_where] = ACTIONS(6086), + [anon_sym_not] = ACTIONS(6086), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6086), + [anon_sym_DOT_DOT_LT] = ACTIONS(6086), + [anon_sym_null] = ACTIONS(6086), + [anon_sym_true] = ACTIONS(6086), + [anon_sym_false] = ACTIONS(6086), + [aux_sym__val_number_decimal_token1] = ACTIONS(6086), + [aux_sym__val_number_decimal_token2] = ACTIONS(6086), + [anon_sym_DOT2] = ACTIONS(6086), + [aux_sym__val_number_decimal_token3] = ACTIONS(6086), + [aux_sym__val_number_token1] = ACTIONS(6086), + [aux_sym__val_number_token2] = ACTIONS(6086), + [aux_sym__val_number_token3] = ACTIONS(6086), + [aux_sym__val_number_token4] = ACTIONS(6086), + [aux_sym__val_number_token5] = ACTIONS(6086), + [aux_sym__val_number_token6] = ACTIONS(6086), + [anon_sym_0b] = ACTIONS(6086), + [anon_sym_0o] = ACTIONS(6086), + [anon_sym_0x] = ACTIONS(6086), + [sym_val_date] = ACTIONS(6086), + [anon_sym_DQUOTE] = ACTIONS(6086), + [sym__str_single_quotes] = ACTIONS(6086), + [sym__str_back_ticks] = ACTIONS(6086), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6086), + [anon_sym_CARET] = ACTIONS(6086), + [anon_sym_POUND] = ACTIONS(113), }, - [2058] = { - [sym_expr_unary] = STATE(6271), - [sym__expr_unary_minus] = STATE(6202), - [sym_expr_binary] = STATE(6271), - [sym__expr_binary_expression] = STATE(6014), - [sym_expr_parenthesized] = STATE(6271), - [sym__val_range] = STATE(10544), - [sym__value] = STATE(6271), - [sym_val_nothing] = STATE(6237), - [sym_val_bool] = STATE(5819), - [sym_val_variable] = STATE(6237), - [sym__var] = STATE(5240), - [sym_val_number] = STATE(6237), - [sym__val_number_decimal] = STATE(4542), - [sym__val_number] = STATE(6253), - [sym_val_duration] = STATE(6237), - [sym_val_filesize] = STATE(6237), - [sym_val_binary] = STATE(6237), - [sym_val_string] = STATE(6237), - [sym__str_double_quotes] = STATE(6028), - [sym_val_interpolated] = STATE(6237), - [sym__inter_single_quotes] = STATE(6107), - [sym__inter_double_quotes] = STATE(6113), - [sym_val_list] = STATE(6237), - [sym_val_record] = STATE(6237), - [sym_val_table] = STATE(6237), - [sym_val_closure] = STATE(6237), - [sym_unquoted] = STATE(6020), - [sym__unquoted_anonymous_prefix] = STATE(11010), - [sym_comment] = STATE(2058), - [anon_sym_LBRACK] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(5611), - [anon_sym_DOLLAR] = ACTIONS(5613), - [anon_sym_DASH] = ACTIONS(4642), - [anon_sym_LBRACE] = ACTIONS(3007), - [anon_sym_DOT_DOT] = ACTIONS(5615), - [anon_sym_not] = ACTIONS(4646), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5617), - [anon_sym_DOT_DOT_LT] = ACTIONS(5617), - [anon_sym_null] = ACTIONS(4650), - [anon_sym_true] = ACTIONS(4652), - [anon_sym_false] = ACTIONS(4652), - [aux_sym__val_number_decimal_token1] = ACTIONS(4654), - [aux_sym__val_number_decimal_token2] = ACTIONS(4656), - [anon_sym_DOT2] = ACTIONS(5619), - [aux_sym__val_number_decimal_token3] = ACTIONS(4660), - [aux_sym__val_number_token1] = ACTIONS(3019), - [aux_sym__val_number_token2] = ACTIONS(3019), - [aux_sym__val_number_token3] = ACTIONS(3019), - [aux_sym__val_number_token4] = ACTIONS(4662), - [aux_sym__val_number_token5] = ACTIONS(4662), - [aux_sym__val_number_token6] = ACTIONS(4662), - [anon_sym_0b] = ACTIONS(2090), - [anon_sym_0o] = ACTIONS(2092), - [anon_sym_0x] = ACTIONS(2092), - [sym_val_date] = ACTIONS(4664), - [anon_sym_DQUOTE] = ACTIONS(3025), - [sym__str_single_quotes] = ACTIONS(3027), - [sym__str_back_ticks] = ACTIONS(3027), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3029), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3031), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2106), - [anon_sym_POUND] = ACTIONS(3), + [2337] = { + [sym_comment] = STATE(2337), + [anon_sym_export] = ACTIONS(6086), + [anon_sym_alias] = ACTIONS(6086), + [anon_sym_let] = ACTIONS(6086), + [anon_sym_let_DASHenv] = ACTIONS(6086), + [anon_sym_mut] = ACTIONS(6086), + [anon_sym_const] = ACTIONS(6086), + [anon_sym_SEMI] = ACTIONS(6086), + [sym_cmd_identifier] = ACTIONS(6086), + [anon_sym_LF] = ACTIONS(6088), + [anon_sym_def] = ACTIONS(6086), + [anon_sym_export_DASHenv] = ACTIONS(6086), + [anon_sym_extern] = ACTIONS(6086), + [anon_sym_module] = ACTIONS(6086), + [anon_sym_use] = ACTIONS(6086), + [anon_sym_LBRACK] = ACTIONS(6086), + [anon_sym_LPAREN] = ACTIONS(6086), + [anon_sym_RPAREN] = ACTIONS(6086), + [anon_sym_DOLLAR] = ACTIONS(6086), + [anon_sym_error] = ACTIONS(6086), + [anon_sym_DASH] = ACTIONS(6086), + [anon_sym_break] = ACTIONS(6086), + [anon_sym_continue] = ACTIONS(6086), + [anon_sym_for] = ACTIONS(6086), + [anon_sym_loop] = ACTIONS(6086), + [anon_sym_while] = ACTIONS(6086), + [anon_sym_do] = ACTIONS(6086), + [anon_sym_if] = ACTIONS(6086), + [anon_sym_match] = ACTIONS(6086), + [anon_sym_LBRACE] = ACTIONS(6086), + [anon_sym_RBRACE] = ACTIONS(6086), + [anon_sym_DOT_DOT] = ACTIONS(6086), + [anon_sym_try] = ACTIONS(6086), + [anon_sym_return] = ACTIONS(6086), + [anon_sym_source] = ACTIONS(6086), + [anon_sym_source_DASHenv] = ACTIONS(6086), + [anon_sym_register] = ACTIONS(6086), + [anon_sym_hide] = ACTIONS(6086), + [anon_sym_hide_DASHenv] = ACTIONS(6086), + [anon_sym_overlay] = ACTIONS(6086), + [anon_sym_where] = ACTIONS(6086), + [anon_sym_not] = ACTIONS(6086), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6086), + [anon_sym_DOT_DOT_LT] = ACTIONS(6086), + [anon_sym_null] = ACTIONS(6086), + [anon_sym_true] = ACTIONS(6086), + [anon_sym_false] = ACTIONS(6086), + [aux_sym__val_number_decimal_token1] = ACTIONS(6086), + [aux_sym__val_number_decimal_token2] = ACTIONS(6086), + [anon_sym_DOT2] = ACTIONS(6086), + [aux_sym__val_number_decimal_token3] = ACTIONS(6086), + [aux_sym__val_number_token1] = ACTIONS(6086), + [aux_sym__val_number_token2] = ACTIONS(6086), + [aux_sym__val_number_token3] = ACTIONS(6086), + [aux_sym__val_number_token4] = ACTIONS(6086), + [aux_sym__val_number_token5] = ACTIONS(6086), + [aux_sym__val_number_token6] = ACTIONS(6086), + [anon_sym_0b] = ACTIONS(6086), + [anon_sym_0o] = ACTIONS(6086), + [anon_sym_0x] = ACTIONS(6086), + [sym_val_date] = ACTIONS(6086), + [anon_sym_DQUOTE] = ACTIONS(6086), + [sym__str_single_quotes] = ACTIONS(6086), + [sym__str_back_ticks] = ACTIONS(6086), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6086), + [anon_sym_CARET] = ACTIONS(6086), + [anon_sym_POUND] = ACTIONS(113), }, - [2059] = { - [sym_expr_unary] = STATE(6271), - [sym__expr_unary_minus] = STATE(6202), - [sym_expr_binary] = STATE(6271), - [sym__expr_binary_expression] = STATE(6034), - [sym_expr_parenthesized] = STATE(6271), - [sym__val_range] = STATE(10544), - [sym__value] = STATE(6271), - [sym_val_nothing] = STATE(6237), - [sym_val_bool] = STATE(5819), - [sym_val_variable] = STATE(6237), - [sym__var] = STATE(5240), - [sym_val_number] = STATE(6237), - [sym__val_number_decimal] = STATE(4542), - [sym__val_number] = STATE(6253), - [sym_val_duration] = STATE(6237), - [sym_val_filesize] = STATE(6237), - [sym_val_binary] = STATE(6237), - [sym_val_string] = STATE(6237), - [sym__str_double_quotes] = STATE(6028), - [sym_val_interpolated] = STATE(6237), - [sym__inter_single_quotes] = STATE(6107), - [sym__inter_double_quotes] = STATE(6113), - [sym_val_list] = STATE(6237), - [sym_val_record] = STATE(6237), - [sym_val_table] = STATE(6237), - [sym_val_closure] = STATE(6237), - [sym_unquoted] = STATE(6036), - [sym__unquoted_anonymous_prefix] = STATE(11010), - [sym_comment] = STATE(2059), - [anon_sym_LBRACK] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(5611), - [anon_sym_DOLLAR] = ACTIONS(5613), - [anon_sym_DASH] = ACTIONS(4642), - [anon_sym_LBRACE] = ACTIONS(3007), - [anon_sym_DOT_DOT] = ACTIONS(5615), - [anon_sym_not] = ACTIONS(4646), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5617), - [anon_sym_DOT_DOT_LT] = ACTIONS(5617), - [anon_sym_null] = ACTIONS(4650), - [anon_sym_true] = ACTIONS(4652), - [anon_sym_false] = ACTIONS(4652), - [aux_sym__val_number_decimal_token1] = ACTIONS(4654), - [aux_sym__val_number_decimal_token2] = ACTIONS(4656), - [anon_sym_DOT2] = ACTIONS(5619), - [aux_sym__val_number_decimal_token3] = ACTIONS(4660), - [aux_sym__val_number_token1] = ACTIONS(3019), - [aux_sym__val_number_token2] = ACTIONS(3019), - [aux_sym__val_number_token3] = ACTIONS(3019), - [aux_sym__val_number_token4] = ACTIONS(4662), - [aux_sym__val_number_token5] = ACTIONS(4662), - [aux_sym__val_number_token6] = ACTIONS(4662), - [anon_sym_0b] = ACTIONS(2090), - [anon_sym_0o] = ACTIONS(2092), - [anon_sym_0x] = ACTIONS(2092), - [sym_val_date] = ACTIONS(4664), - [anon_sym_DQUOTE] = ACTIONS(3025), - [sym__str_single_quotes] = ACTIONS(3027), - [sym__str_back_ticks] = ACTIONS(3027), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3029), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3031), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2106), - [anon_sym_POUND] = ACTIONS(3), + [2338] = { + [sym_comment] = STATE(2338), + [anon_sym_export] = ACTIONS(6090), + [anon_sym_alias] = ACTIONS(6090), + [anon_sym_let] = ACTIONS(6090), + [anon_sym_let_DASHenv] = ACTIONS(6090), + [anon_sym_mut] = ACTIONS(6090), + [anon_sym_const] = ACTIONS(6090), + [anon_sym_SEMI] = ACTIONS(6090), + [sym_cmd_identifier] = ACTIONS(6090), + [anon_sym_LF] = ACTIONS(6092), + [anon_sym_def] = ACTIONS(6090), + [anon_sym_export_DASHenv] = ACTIONS(6090), + [anon_sym_extern] = ACTIONS(6090), + [anon_sym_module] = ACTIONS(6090), + [anon_sym_use] = ACTIONS(6090), + [anon_sym_LBRACK] = ACTIONS(6090), + [anon_sym_LPAREN] = ACTIONS(6090), + [anon_sym_RPAREN] = ACTIONS(6090), + [anon_sym_DOLLAR] = ACTIONS(6090), + [anon_sym_error] = ACTIONS(6090), + [anon_sym_DASH] = ACTIONS(6090), + [anon_sym_break] = ACTIONS(6090), + [anon_sym_continue] = ACTIONS(6090), + [anon_sym_for] = ACTIONS(6090), + [anon_sym_loop] = ACTIONS(6090), + [anon_sym_while] = ACTIONS(6090), + [anon_sym_do] = ACTIONS(6090), + [anon_sym_if] = ACTIONS(6090), + [anon_sym_match] = ACTIONS(6090), + [anon_sym_LBRACE] = ACTIONS(6090), + [anon_sym_RBRACE] = ACTIONS(6090), + [anon_sym_DOT_DOT] = ACTIONS(6090), + [anon_sym_try] = ACTIONS(6090), + [anon_sym_return] = ACTIONS(6090), + [anon_sym_source] = ACTIONS(6090), + [anon_sym_source_DASHenv] = ACTIONS(6090), + [anon_sym_register] = ACTIONS(6090), + [anon_sym_hide] = ACTIONS(6090), + [anon_sym_hide_DASHenv] = ACTIONS(6090), + [anon_sym_overlay] = ACTIONS(6090), + [anon_sym_where] = ACTIONS(6090), + [anon_sym_not] = ACTIONS(6090), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6090), + [anon_sym_DOT_DOT_LT] = ACTIONS(6090), + [anon_sym_null] = ACTIONS(6090), + [anon_sym_true] = ACTIONS(6090), + [anon_sym_false] = ACTIONS(6090), + [aux_sym__val_number_decimal_token1] = ACTIONS(6090), + [aux_sym__val_number_decimal_token2] = ACTIONS(6090), + [anon_sym_DOT2] = ACTIONS(6090), + [aux_sym__val_number_decimal_token3] = ACTIONS(6090), + [aux_sym__val_number_token1] = ACTIONS(6090), + [aux_sym__val_number_token2] = ACTIONS(6090), + [aux_sym__val_number_token3] = ACTIONS(6090), + [aux_sym__val_number_token4] = ACTIONS(6090), + [aux_sym__val_number_token5] = ACTIONS(6090), + [aux_sym__val_number_token6] = ACTIONS(6090), + [anon_sym_0b] = ACTIONS(6090), + [anon_sym_0o] = ACTIONS(6090), + [anon_sym_0x] = ACTIONS(6090), + [sym_val_date] = ACTIONS(6090), + [anon_sym_DQUOTE] = ACTIONS(6090), + [sym__str_single_quotes] = ACTIONS(6090), + [sym__str_back_ticks] = ACTIONS(6090), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6090), + [anon_sym_CARET] = ACTIONS(6090), + [anon_sym_POUND] = ACTIONS(113), }, - [2060] = { - [sym_expr_unary] = STATE(6271), - [sym__expr_unary_minus] = STATE(6202), - [sym_expr_binary] = STATE(6271), - [sym__expr_binary_expression] = STATE(6045), - [sym_expr_parenthesized] = STATE(6271), - [sym__val_range] = STATE(10544), - [sym__value] = STATE(6271), - [sym_val_nothing] = STATE(6237), - [sym_val_bool] = STATE(5819), - [sym_val_variable] = STATE(6237), - [sym__var] = STATE(5240), - [sym_val_number] = STATE(6237), - [sym__val_number_decimal] = STATE(4542), - [sym__val_number] = STATE(6253), - [sym_val_duration] = STATE(6237), - [sym_val_filesize] = STATE(6237), - [sym_val_binary] = STATE(6237), - [sym_val_string] = STATE(6237), - [sym__str_double_quotes] = STATE(6028), - [sym_val_interpolated] = STATE(6237), - [sym__inter_single_quotes] = STATE(6107), - [sym__inter_double_quotes] = STATE(6113), - [sym_val_list] = STATE(6237), - [sym_val_record] = STATE(6237), - [sym_val_table] = STATE(6237), - [sym_val_closure] = STATE(6237), - [sym_unquoted] = STATE(6048), - [sym__unquoted_anonymous_prefix] = STATE(11010), - [sym_comment] = STATE(2060), - [anon_sym_LBRACK] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(5611), - [anon_sym_DOLLAR] = ACTIONS(5613), - [anon_sym_DASH] = ACTIONS(4642), - [anon_sym_LBRACE] = ACTIONS(3007), - [anon_sym_DOT_DOT] = ACTIONS(5615), - [anon_sym_not] = ACTIONS(4646), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5617), - [anon_sym_DOT_DOT_LT] = ACTIONS(5617), - [anon_sym_null] = ACTIONS(4650), - [anon_sym_true] = ACTIONS(4652), - [anon_sym_false] = ACTIONS(4652), - [aux_sym__val_number_decimal_token1] = ACTIONS(4654), - [aux_sym__val_number_decimal_token2] = ACTIONS(4656), - [anon_sym_DOT2] = ACTIONS(5619), - [aux_sym__val_number_decimal_token3] = ACTIONS(4660), - [aux_sym__val_number_token1] = ACTIONS(3019), - [aux_sym__val_number_token2] = ACTIONS(3019), - [aux_sym__val_number_token3] = ACTIONS(3019), - [aux_sym__val_number_token4] = ACTIONS(4662), - [aux_sym__val_number_token5] = ACTIONS(4662), - [aux_sym__val_number_token6] = ACTIONS(4662), - [anon_sym_0b] = ACTIONS(2090), - [anon_sym_0o] = ACTIONS(2092), - [anon_sym_0x] = ACTIONS(2092), - [sym_val_date] = ACTIONS(4664), - [anon_sym_DQUOTE] = ACTIONS(3025), - [sym__str_single_quotes] = ACTIONS(3027), - [sym__str_back_ticks] = ACTIONS(3027), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3029), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3031), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2106), - [anon_sym_POUND] = ACTIONS(3), + [2339] = { + [sym_comment] = STATE(2339), + [anon_sym_export] = ACTIONS(6094), + [anon_sym_alias] = ACTIONS(6094), + [anon_sym_let] = ACTIONS(6094), + [anon_sym_let_DASHenv] = ACTIONS(6094), + [anon_sym_mut] = ACTIONS(6094), + [anon_sym_const] = ACTIONS(6094), + [anon_sym_SEMI] = ACTIONS(6096), + [sym_cmd_identifier] = ACTIONS(6094), + [anon_sym_LF] = ACTIONS(6099), + [anon_sym_def] = ACTIONS(6094), + [anon_sym_export_DASHenv] = ACTIONS(6094), + [anon_sym_extern] = ACTIONS(6094), + [anon_sym_module] = ACTIONS(6094), + [anon_sym_use] = ACTIONS(6094), + [anon_sym_LBRACK] = ACTIONS(6094), + [anon_sym_LPAREN] = ACTIONS(6094), + [anon_sym_RPAREN] = ACTIONS(6102), + [anon_sym_DOLLAR] = ACTIONS(6094), + [anon_sym_error] = ACTIONS(6094), + [anon_sym_DASH] = ACTIONS(6094), + [anon_sym_break] = ACTIONS(6094), + [anon_sym_continue] = ACTIONS(6094), + [anon_sym_for] = ACTIONS(6094), + [anon_sym_loop] = ACTIONS(6094), + [anon_sym_while] = ACTIONS(6094), + [anon_sym_do] = ACTIONS(6094), + [anon_sym_if] = ACTIONS(6094), + [anon_sym_match] = ACTIONS(6094), + [anon_sym_LBRACE] = ACTIONS(6094), + [anon_sym_RBRACE] = ACTIONS(6102), + [anon_sym_DOT_DOT] = ACTIONS(6094), + [anon_sym_try] = ACTIONS(6094), + [anon_sym_return] = ACTIONS(6094), + [anon_sym_source] = ACTIONS(6094), + [anon_sym_source_DASHenv] = ACTIONS(6094), + [anon_sym_register] = ACTIONS(6094), + [anon_sym_hide] = ACTIONS(6094), + [anon_sym_hide_DASHenv] = ACTIONS(6094), + [anon_sym_overlay] = ACTIONS(6094), + [anon_sym_where] = ACTIONS(6094), + [anon_sym_not] = ACTIONS(6094), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6094), + [anon_sym_DOT_DOT_LT] = ACTIONS(6094), + [anon_sym_null] = ACTIONS(6094), + [anon_sym_true] = ACTIONS(6094), + [anon_sym_false] = ACTIONS(6094), + [aux_sym__val_number_decimal_token1] = ACTIONS(6094), + [aux_sym__val_number_decimal_token2] = ACTIONS(6094), + [anon_sym_DOT2] = ACTIONS(6094), + [aux_sym__val_number_decimal_token3] = ACTIONS(6094), + [aux_sym__val_number_token1] = ACTIONS(6094), + [aux_sym__val_number_token2] = ACTIONS(6094), + [aux_sym__val_number_token3] = ACTIONS(6094), + [aux_sym__val_number_token4] = ACTIONS(6094), + [aux_sym__val_number_token5] = ACTIONS(6094), + [aux_sym__val_number_token6] = ACTIONS(6094), + [anon_sym_0b] = ACTIONS(6094), + [anon_sym_0o] = ACTIONS(6094), + [anon_sym_0x] = ACTIONS(6094), + [sym_val_date] = ACTIONS(6094), + [anon_sym_DQUOTE] = ACTIONS(6094), + [sym__str_single_quotes] = ACTIONS(6094), + [sym__str_back_ticks] = ACTIONS(6094), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6094), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6094), + [anon_sym_CARET] = ACTIONS(6094), + [anon_sym_POUND] = ACTIONS(113), }, - [2061] = { - [sym_expr_unary] = STATE(6271), - [sym__expr_unary_minus] = STATE(6202), - [sym_expr_binary] = STATE(6271), - [sym__expr_binary_expression] = STATE(6051), - [sym_expr_parenthesized] = STATE(6271), - [sym__val_range] = STATE(10544), - [sym__value] = STATE(6271), - [sym_val_nothing] = STATE(6237), - [sym_val_bool] = STATE(5819), - [sym_val_variable] = STATE(6237), - [sym__var] = STATE(5240), - [sym_val_number] = STATE(6237), - [sym__val_number_decimal] = STATE(4542), - [sym__val_number] = STATE(6253), - [sym_val_duration] = STATE(6237), - [sym_val_filesize] = STATE(6237), - [sym_val_binary] = STATE(6237), - [sym_val_string] = STATE(6237), - [sym__str_double_quotes] = STATE(6028), - [sym_val_interpolated] = STATE(6237), - [sym__inter_single_quotes] = STATE(6107), - [sym__inter_double_quotes] = STATE(6113), - [sym_val_list] = STATE(6237), - [sym_val_record] = STATE(6237), - [sym_val_table] = STATE(6237), - [sym_val_closure] = STATE(6237), - [sym_unquoted] = STATE(6053), - [sym__unquoted_anonymous_prefix] = STATE(11010), - [sym_comment] = STATE(2061), - [anon_sym_LBRACK] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(5611), - [anon_sym_DOLLAR] = ACTIONS(5613), - [anon_sym_DASH] = ACTIONS(4642), - [anon_sym_LBRACE] = ACTIONS(3007), - [anon_sym_DOT_DOT] = ACTIONS(5615), - [anon_sym_not] = ACTIONS(4646), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5617), - [anon_sym_DOT_DOT_LT] = ACTIONS(5617), - [anon_sym_null] = ACTIONS(4650), - [anon_sym_true] = ACTIONS(4652), - [anon_sym_false] = ACTIONS(4652), - [aux_sym__val_number_decimal_token1] = ACTIONS(4654), - [aux_sym__val_number_decimal_token2] = ACTIONS(4656), - [anon_sym_DOT2] = ACTIONS(5619), - [aux_sym__val_number_decimal_token3] = ACTIONS(4660), - [aux_sym__val_number_token1] = ACTIONS(3019), - [aux_sym__val_number_token2] = ACTIONS(3019), - [aux_sym__val_number_token3] = ACTIONS(3019), - [aux_sym__val_number_token4] = ACTIONS(4662), - [aux_sym__val_number_token5] = ACTIONS(4662), - [aux_sym__val_number_token6] = ACTIONS(4662), - [anon_sym_0b] = ACTIONS(2090), - [anon_sym_0o] = ACTIONS(2092), - [anon_sym_0x] = ACTIONS(2092), - [sym_val_date] = ACTIONS(4664), - [anon_sym_DQUOTE] = ACTIONS(3025), - [sym__str_single_quotes] = ACTIONS(3027), - [sym__str_back_ticks] = ACTIONS(3027), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3029), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3031), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2106), - [anon_sym_POUND] = ACTIONS(3), + [2340] = { + [sym_comment] = STATE(2340), + [anon_sym_export] = ACTIONS(6104), + [anon_sym_alias] = ACTIONS(6104), + [anon_sym_let] = ACTIONS(6104), + [anon_sym_let_DASHenv] = ACTIONS(6104), + [anon_sym_mut] = ACTIONS(6104), + [anon_sym_const] = ACTIONS(6104), + [anon_sym_SEMI] = ACTIONS(6104), + [sym_cmd_identifier] = ACTIONS(6104), + [anon_sym_LF] = ACTIONS(6106), + [anon_sym_def] = ACTIONS(6104), + [anon_sym_export_DASHenv] = ACTIONS(6104), + [anon_sym_extern] = ACTIONS(6104), + [anon_sym_module] = ACTIONS(6104), + [anon_sym_use] = ACTIONS(6104), + [anon_sym_LBRACK] = ACTIONS(6104), + [anon_sym_LPAREN] = ACTIONS(6104), + [anon_sym_RPAREN] = ACTIONS(6104), + [anon_sym_DOLLAR] = ACTIONS(6104), + [anon_sym_error] = ACTIONS(6104), + [anon_sym_DASH] = ACTIONS(6104), + [anon_sym_break] = ACTIONS(6104), + [anon_sym_continue] = ACTIONS(6104), + [anon_sym_for] = ACTIONS(6104), + [anon_sym_loop] = ACTIONS(6104), + [anon_sym_while] = ACTIONS(6104), + [anon_sym_do] = ACTIONS(6104), + [anon_sym_if] = ACTIONS(6104), + [anon_sym_match] = ACTIONS(6104), + [anon_sym_LBRACE] = ACTIONS(6104), + [anon_sym_RBRACE] = ACTIONS(6104), + [anon_sym_DOT_DOT] = ACTIONS(6104), + [anon_sym_try] = ACTIONS(6104), + [anon_sym_return] = ACTIONS(6104), + [anon_sym_source] = ACTIONS(6104), + [anon_sym_source_DASHenv] = ACTIONS(6104), + [anon_sym_register] = ACTIONS(6104), + [anon_sym_hide] = ACTIONS(6104), + [anon_sym_hide_DASHenv] = ACTIONS(6104), + [anon_sym_overlay] = ACTIONS(6104), + [anon_sym_where] = ACTIONS(6104), + [anon_sym_not] = ACTIONS(6104), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6104), + [anon_sym_DOT_DOT_LT] = ACTIONS(6104), + [anon_sym_null] = ACTIONS(6104), + [anon_sym_true] = ACTIONS(6104), + [anon_sym_false] = ACTIONS(6104), + [aux_sym__val_number_decimal_token1] = ACTIONS(6104), + [aux_sym__val_number_decimal_token2] = ACTIONS(6104), + [anon_sym_DOT2] = ACTIONS(6104), + [aux_sym__val_number_decimal_token3] = ACTIONS(6104), + [aux_sym__val_number_token1] = ACTIONS(6104), + [aux_sym__val_number_token2] = ACTIONS(6104), + [aux_sym__val_number_token3] = ACTIONS(6104), + [aux_sym__val_number_token4] = ACTIONS(6104), + [aux_sym__val_number_token5] = ACTIONS(6104), + [aux_sym__val_number_token6] = ACTIONS(6104), + [anon_sym_0b] = ACTIONS(6104), + [anon_sym_0o] = ACTIONS(6104), + [anon_sym_0x] = ACTIONS(6104), + [sym_val_date] = ACTIONS(6104), + [anon_sym_DQUOTE] = ACTIONS(6104), + [sym__str_single_quotes] = ACTIONS(6104), + [sym__str_back_ticks] = ACTIONS(6104), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6104), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6104), + [anon_sym_CARET] = ACTIONS(6104), + [anon_sym_POUND] = ACTIONS(113), }, - [2062] = { - [sym_expr_unary] = STATE(6271), - [sym__expr_unary_minus] = STATE(6202), - [sym_expr_binary] = STATE(6271), - [sym__expr_binary_expression] = STATE(6056), - [sym_expr_parenthesized] = STATE(6271), - [sym__val_range] = STATE(10544), - [sym__value] = STATE(6271), - [sym_val_nothing] = STATE(6237), - [sym_val_bool] = STATE(5819), - [sym_val_variable] = STATE(6237), - [sym__var] = STATE(5240), - [sym_val_number] = STATE(6237), - [sym__val_number_decimal] = STATE(4542), - [sym__val_number] = STATE(6253), - [sym_val_duration] = STATE(6237), - [sym_val_filesize] = STATE(6237), - [sym_val_binary] = STATE(6237), - [sym_val_string] = STATE(6237), - [sym__str_double_quotes] = STATE(6028), - [sym_val_interpolated] = STATE(6237), - [sym__inter_single_quotes] = STATE(6107), - [sym__inter_double_quotes] = STATE(6113), - [sym_val_list] = STATE(6237), - [sym_val_record] = STATE(6237), - [sym_val_table] = STATE(6237), - [sym_val_closure] = STATE(6237), - [sym_unquoted] = STATE(6061), - [sym__unquoted_anonymous_prefix] = STATE(11010), - [sym_comment] = STATE(2062), - [anon_sym_LBRACK] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(5611), - [anon_sym_DOLLAR] = ACTIONS(5613), - [anon_sym_DASH] = ACTIONS(4642), - [anon_sym_LBRACE] = ACTIONS(3007), - [anon_sym_DOT_DOT] = ACTIONS(5615), - [anon_sym_not] = ACTIONS(4646), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5617), - [anon_sym_DOT_DOT_LT] = ACTIONS(5617), - [anon_sym_null] = ACTIONS(4650), - [anon_sym_true] = ACTIONS(4652), - [anon_sym_false] = ACTIONS(4652), - [aux_sym__val_number_decimal_token1] = ACTIONS(4654), - [aux_sym__val_number_decimal_token2] = ACTIONS(4656), - [anon_sym_DOT2] = ACTIONS(5619), - [aux_sym__val_number_decimal_token3] = ACTIONS(4660), - [aux_sym__val_number_token1] = ACTIONS(3019), - [aux_sym__val_number_token2] = ACTIONS(3019), - [aux_sym__val_number_token3] = ACTIONS(3019), - [aux_sym__val_number_token4] = ACTIONS(4662), - [aux_sym__val_number_token5] = ACTIONS(4662), - [aux_sym__val_number_token6] = ACTIONS(4662), - [anon_sym_0b] = ACTIONS(2090), - [anon_sym_0o] = ACTIONS(2092), - [anon_sym_0x] = ACTIONS(2092), - [sym_val_date] = ACTIONS(4664), - [anon_sym_DQUOTE] = ACTIONS(3025), - [sym__str_single_quotes] = ACTIONS(3027), - [sym__str_back_ticks] = ACTIONS(3027), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3029), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3031), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2106), - [anon_sym_POUND] = ACTIONS(3), + [2341] = { + [sym__terminator] = STATE(2372), + [sym_comment] = STATE(2341), + [aux_sym__block_body_repeat1] = STATE(2386), + [anon_sym_export] = ACTIONS(6108), + [anon_sym_alias] = ACTIONS(6108), + [anon_sym_let] = ACTIONS(6108), + [anon_sym_let_DASHenv] = ACTIONS(6108), + [anon_sym_mut] = ACTIONS(6108), + [anon_sym_const] = ACTIONS(6108), + [anon_sym_SEMI] = ACTIONS(6058), + [sym_cmd_identifier] = ACTIONS(6108), + [anon_sym_LF] = ACTIONS(6060), + [anon_sym_def] = ACTIONS(6108), + [anon_sym_export_DASHenv] = ACTIONS(6108), + [anon_sym_extern] = ACTIONS(6108), + [anon_sym_module] = ACTIONS(6108), + [anon_sym_use] = ACTIONS(6108), + [anon_sym_LBRACK] = ACTIONS(6108), + [anon_sym_LPAREN] = ACTIONS(6108), + [anon_sym_DOLLAR] = ACTIONS(6108), + [anon_sym_error] = ACTIONS(6108), + [anon_sym_DASH] = ACTIONS(6108), + [anon_sym_break] = ACTIONS(6108), + [anon_sym_continue] = ACTIONS(6108), + [anon_sym_for] = ACTIONS(6108), + [anon_sym_loop] = ACTIONS(6108), + [anon_sym_while] = ACTIONS(6108), + [anon_sym_do] = ACTIONS(6108), + [anon_sym_if] = ACTIONS(6108), + [anon_sym_match] = ACTIONS(6108), + [anon_sym_LBRACE] = ACTIONS(6108), + [anon_sym_DOT_DOT] = ACTIONS(6108), + [anon_sym_try] = ACTIONS(6108), + [anon_sym_return] = ACTIONS(6108), + [anon_sym_source] = ACTIONS(6108), + [anon_sym_source_DASHenv] = ACTIONS(6108), + [anon_sym_register] = ACTIONS(6108), + [anon_sym_hide] = ACTIONS(6108), + [anon_sym_hide_DASHenv] = ACTIONS(6108), + [anon_sym_overlay] = ACTIONS(6108), + [anon_sym_where] = ACTIONS(6108), + [anon_sym_not] = ACTIONS(6108), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6108), + [anon_sym_DOT_DOT_LT] = ACTIONS(6108), + [anon_sym_null] = ACTIONS(6108), + [anon_sym_true] = ACTIONS(6108), + [anon_sym_false] = ACTIONS(6108), + [aux_sym__val_number_decimal_token1] = ACTIONS(6108), + [aux_sym__val_number_decimal_token2] = ACTIONS(6108), + [anon_sym_DOT2] = ACTIONS(6108), + [aux_sym__val_number_decimal_token3] = ACTIONS(6108), + [aux_sym__val_number_token1] = ACTIONS(6108), + [aux_sym__val_number_token2] = ACTIONS(6108), + [aux_sym__val_number_token3] = ACTIONS(6108), + [aux_sym__val_number_token4] = ACTIONS(6108), + [aux_sym__val_number_token5] = ACTIONS(6108), + [aux_sym__val_number_token6] = ACTIONS(6108), + [anon_sym_0b] = ACTIONS(6108), + [anon_sym_0o] = ACTIONS(6108), + [anon_sym_0x] = ACTIONS(6108), + [sym_val_date] = ACTIONS(6108), + [anon_sym_DQUOTE] = ACTIONS(6108), + [sym__str_single_quotes] = ACTIONS(6108), + [sym__str_back_ticks] = ACTIONS(6108), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6108), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6108), + [anon_sym_CARET] = ACTIONS(6108), + [anon_sym_POUND] = ACTIONS(113), }, - [2063] = { - [sym_expr_unary] = STATE(6271), - [sym__expr_unary_minus] = STATE(6202), - [sym_expr_binary] = STATE(6271), - [sym__expr_binary_expression] = STATE(6063), - [sym_expr_parenthesized] = STATE(6271), - [sym__val_range] = STATE(10544), - [sym__value] = STATE(6271), - [sym_val_nothing] = STATE(6237), - [sym_val_bool] = STATE(5819), - [sym_val_variable] = STATE(6237), - [sym__var] = STATE(5240), - [sym_val_number] = STATE(6237), - [sym__val_number_decimal] = STATE(4542), - [sym__val_number] = STATE(6253), - [sym_val_duration] = STATE(6237), - [sym_val_filesize] = STATE(6237), - [sym_val_binary] = STATE(6237), - [sym_val_string] = STATE(6237), - [sym__str_double_quotes] = STATE(6028), - [sym_val_interpolated] = STATE(6237), - [sym__inter_single_quotes] = STATE(6107), - [sym__inter_double_quotes] = STATE(6113), - [sym_val_list] = STATE(6237), - [sym_val_record] = STATE(6237), - [sym_val_table] = STATE(6237), - [sym_val_closure] = STATE(6237), - [sym_unquoted] = STATE(6068), - [sym__unquoted_anonymous_prefix] = STATE(11010), - [sym_comment] = STATE(2063), - [anon_sym_LBRACK] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(5611), - [anon_sym_DOLLAR] = ACTIONS(5613), - [anon_sym_DASH] = ACTIONS(4642), - [anon_sym_LBRACE] = ACTIONS(3007), - [anon_sym_DOT_DOT] = ACTIONS(5615), - [anon_sym_not] = ACTIONS(4646), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5617), - [anon_sym_DOT_DOT_LT] = ACTIONS(5617), - [anon_sym_null] = ACTIONS(4650), - [anon_sym_true] = ACTIONS(4652), - [anon_sym_false] = ACTIONS(4652), - [aux_sym__val_number_decimal_token1] = ACTIONS(4654), - [aux_sym__val_number_decimal_token2] = ACTIONS(4656), - [anon_sym_DOT2] = ACTIONS(5619), - [aux_sym__val_number_decimal_token3] = ACTIONS(4660), - [aux_sym__val_number_token1] = ACTIONS(3019), - [aux_sym__val_number_token2] = ACTIONS(3019), - [aux_sym__val_number_token3] = ACTIONS(3019), - [aux_sym__val_number_token4] = ACTIONS(4662), - [aux_sym__val_number_token5] = ACTIONS(4662), - [aux_sym__val_number_token6] = ACTIONS(4662), - [anon_sym_0b] = ACTIONS(2090), - [anon_sym_0o] = ACTIONS(2092), - [anon_sym_0x] = ACTIONS(2092), - [sym_val_date] = ACTIONS(4664), - [anon_sym_DQUOTE] = ACTIONS(3025), - [sym__str_single_quotes] = ACTIONS(3027), - [sym__str_back_ticks] = ACTIONS(3027), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3029), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3031), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2106), - [anon_sym_POUND] = ACTIONS(3), + [2342] = { + [sym_comment] = STATE(2342), + [ts_builtin_sym_end] = ACTIONS(1049), + [anon_sym_export] = ACTIONS(1047), + [anon_sym_alias] = ACTIONS(1047), + [anon_sym_let] = ACTIONS(1047), + [anon_sym_let_DASHenv] = ACTIONS(1047), + [anon_sym_mut] = ACTIONS(1047), + [anon_sym_const] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1047), + [sym_cmd_identifier] = ACTIONS(1047), + [anon_sym_LF] = ACTIONS(1049), + [anon_sym_def] = ACTIONS(1047), + [anon_sym_export_DASHenv] = ACTIONS(1047), + [anon_sym_extern] = ACTIONS(1047), + [anon_sym_module] = ACTIONS(1047), + [anon_sym_use] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1047), + [anon_sym_error] = ACTIONS(1047), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_break] = ACTIONS(1047), + [anon_sym_continue] = ACTIONS(1047), + [anon_sym_for] = ACTIONS(1047), + [anon_sym_loop] = ACTIONS(1047), + [anon_sym_while] = ACTIONS(1047), + [anon_sym_do] = ACTIONS(1047), + [anon_sym_if] = ACTIONS(1047), + [anon_sym_match] = ACTIONS(1047), + [anon_sym_LBRACE] = ACTIONS(1047), + [anon_sym_DOT_DOT] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1047), + [anon_sym_return] = ACTIONS(1047), + [anon_sym_source] = ACTIONS(1047), + [anon_sym_source_DASHenv] = ACTIONS(1047), + [anon_sym_register] = ACTIONS(1047), + [anon_sym_hide] = ACTIONS(1047), + [anon_sym_hide_DASHenv] = ACTIONS(1047), + [anon_sym_overlay] = ACTIONS(1047), + [anon_sym_where] = ACTIONS(1047), + [anon_sym_not] = ACTIONS(1047), + [anon_sym_DOT] = ACTIONS(1047), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1047), + [anon_sym_DOT_DOT_LT] = ACTIONS(1047), + [anon_sym_null] = ACTIONS(1047), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [aux_sym__val_number_decimal_token1] = ACTIONS(1047), + [aux_sym__val_number_decimal_token2] = ACTIONS(1047), + [anon_sym_DOT2] = ACTIONS(1047), + [aux_sym__val_number_decimal_token3] = ACTIONS(1047), + [aux_sym__val_number_token1] = ACTIONS(1047), + [aux_sym__val_number_token2] = ACTIONS(1047), + [aux_sym__val_number_token3] = ACTIONS(1047), + [aux_sym__val_number_token4] = ACTIONS(1047), + [aux_sym__val_number_token5] = ACTIONS(1047), + [aux_sym__val_number_token6] = ACTIONS(1047), + [anon_sym_0b] = ACTIONS(1047), + [anon_sym_0o] = ACTIONS(1047), + [anon_sym_0x] = ACTIONS(1047), + [sym_val_date] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1047), + [sym__str_single_quotes] = ACTIONS(1047), + [sym__str_back_ticks] = ACTIONS(1047), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1047), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1047), + [anon_sym_CARET] = ACTIONS(1047), + [anon_sym_POUND] = ACTIONS(113), }, - [2064] = { - [sym__expression] = STATE(7365), - [sym_expr_unary] = STATE(5715), - [sym__expr_unary_minus] = STATE(5723), - [sym_expr_binary] = STATE(5715), - [sym__expr_binary_expression] = STATE(6788), - [sym_expr_parenthesized] = STATE(5176), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(5715), - [sym_val_nothing] = STATE(5705), - [sym_val_bool] = STATE(5705), - [sym_val_variable] = STATE(5170), - [sym__var] = STATE(4674), - [sym_val_number] = STATE(5705), - [sym__val_number_decimal] = STATE(4718), - [sym__val_number] = STATE(5875), - [sym_val_duration] = STATE(5705), - [sym_val_filesize] = STATE(5705), - [sym_val_binary] = STATE(5705), - [sym_val_string] = STATE(5705), - [sym__str_double_quotes] = STATE(5788), - [sym_val_interpolated] = STATE(5705), - [sym__inter_single_quotes] = STATE(5899), - [sym__inter_double_quotes] = STATE(5903), - [sym_val_list] = STATE(5705), - [sym_val_record] = STATE(5705), - [sym_val_table] = STATE(5705), - [sym_val_closure] = STATE(5705), - [sym__flag] = STATE(7364), - [sym_short_flag] = STATE(8329), - [sym_long_flag] = STATE(8329), - [sym_long_flag_equals_value] = STATE(8282), - [sym_comment] = STATE(2064), - [anon_sym_SEMI] = ACTIONS(5621), - [anon_sym_LF] = ACTIONS(5623), - [anon_sym_LBRACK] = ACTIONS(5371), - [anon_sym_LPAREN] = ACTIONS(5373), - [anon_sym_RPAREN] = ACTIONS(5621), - [anon_sym_PIPE] = ACTIONS(5621), - [anon_sym_DOLLAR] = ACTIONS(3317), - [anon_sym_DASH_DASH] = ACTIONS(5625), - [anon_sym_DASH] = ACTIONS(5627), - [anon_sym_LBRACE] = ACTIONS(5379), - [anon_sym_RBRACE] = ACTIONS(5621), - [anon_sym_DOT_DOT] = ACTIONS(5381), - [anon_sym_not] = ACTIONS(5383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5385), - [anon_sym_DOT_DOT_LT] = ACTIONS(5385), - [anon_sym_null] = ACTIONS(5387), - [anon_sym_true] = ACTIONS(5389), - [anon_sym_false] = ACTIONS(5389), - [aux_sym__val_number_decimal_token1] = ACTIONS(5391), - [aux_sym__val_number_decimal_token2] = ACTIONS(5391), - [anon_sym_DOT2] = ACTIONS(5393), - [aux_sym__val_number_decimal_token3] = ACTIONS(5395), - [aux_sym__val_number_token1] = ACTIONS(5397), - [aux_sym__val_number_token2] = ACTIONS(5397), - [aux_sym__val_number_token3] = ACTIONS(5397), - [aux_sym__val_number_token4] = ACTIONS(5397), - [aux_sym__val_number_token5] = ACTIONS(5397), - [aux_sym__val_number_token6] = ACTIONS(5397), - [anon_sym_0b] = ACTIONS(3345), - [anon_sym_0o] = ACTIONS(3347), - [anon_sym_0x] = ACTIONS(3347), - [sym_val_date] = ACTIONS(5399), - [anon_sym_DQUOTE] = ACTIONS(5401), - [sym__str_single_quotes] = ACTIONS(5403), - [sym__str_back_ticks] = ACTIONS(5403), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5405), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5407), + [2343] = { + [sym_cell_path] = STATE(2675), + [sym_path] = STATE(2311), + [sym_comment] = STATE(2343), + [ts_builtin_sym_end] = ACTIONS(1053), + [anon_sym_SEMI] = ACTIONS(1051), + [anon_sym_LF] = ACTIONS(1053), + [anon_sym_LBRACK] = ACTIONS(1051), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_PIPE] = ACTIONS(1051), + [anon_sym_DOLLAR] = ACTIONS(1051), + [anon_sym_GT] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_in] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(1051), + [anon_sym_DOT_DOT] = ACTIONS(1051), + [anon_sym_STAR] = ACTIONS(1051), + [anon_sym_STAR_STAR] = ACTIONS(1051), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_mod] = ACTIONS(1051), + [anon_sym_SLASH_SLASH] = ACTIONS(1051), + [anon_sym_PLUS] = ACTIONS(1051), + [anon_sym_bit_DASHshl] = ACTIONS(1051), + [anon_sym_bit_DASHshr] = ACTIONS(1051), + [anon_sym_EQ_EQ] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1051), + [anon_sym_LT2] = ACTIONS(1051), + [anon_sym_LT_EQ] = ACTIONS(1051), + [anon_sym_GT_EQ] = ACTIONS(1051), + [anon_sym_not_DASHin] = ACTIONS(1051), + [anon_sym_starts_DASHwith] = ACTIONS(1051), + [anon_sym_ends_DASHwith] = ACTIONS(1051), + [anon_sym_EQ_TILDE] = ACTIONS(1051), + [anon_sym_BANG_TILDE] = ACTIONS(1051), + [anon_sym_bit_DASHand] = ACTIONS(1051), + [anon_sym_bit_DASHxor] = ACTIONS(1051), + [anon_sym_bit_DASHor] = ACTIONS(1051), + [anon_sym_and] = ACTIONS(1051), + [anon_sym_xor] = ACTIONS(1051), + [anon_sym_or] = ACTIONS(1051), + [anon_sym_not] = ACTIONS(1051), + [anon_sym_DOT] = ACTIONS(5921), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1051), + [anon_sym_DOT_DOT_LT] = ACTIONS(1051), + [anon_sym_null] = ACTIONS(1051), + [anon_sym_true] = ACTIONS(1051), + [anon_sym_false] = ACTIONS(1051), + [aux_sym__val_number_decimal_token1] = ACTIONS(1051), + [aux_sym__val_number_decimal_token2] = ACTIONS(1051), + [anon_sym_DOT2] = ACTIONS(1051), + [aux_sym__val_number_decimal_token3] = ACTIONS(1051), + [aux_sym__val_number_token1] = ACTIONS(1051), + [aux_sym__val_number_token2] = ACTIONS(1051), + [aux_sym__val_number_token3] = ACTIONS(1051), + [aux_sym__val_number_token4] = ACTIONS(1051), + [aux_sym__val_number_token5] = ACTIONS(1051), + [aux_sym__val_number_token6] = ACTIONS(1051), + [anon_sym_0b] = ACTIONS(1051), + [anon_sym_0o] = ACTIONS(1051), + [anon_sym_0x] = ACTIONS(1051), + [sym_val_date] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(1051), + [sym__str_single_quotes] = ACTIONS(1051), + [sym__str_back_ticks] = ACTIONS(1051), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1051), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1051), [anon_sym_POUND] = ACTIONS(113), }, - [2065] = { - [sym__expression] = STATE(7365), - [sym_expr_unary] = STATE(5715), - [sym__expr_unary_minus] = STATE(5723), - [sym_expr_binary] = STATE(5715), - [sym__expr_binary_expression] = STATE(6788), - [sym_expr_parenthesized] = STATE(5176), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(5715), - [sym_val_nothing] = STATE(5705), - [sym_val_bool] = STATE(5705), - [sym_val_variable] = STATE(5170), - [sym__var] = STATE(4674), - [sym_val_number] = STATE(5705), - [sym__val_number_decimal] = STATE(4718), - [sym__val_number] = STATE(5875), - [sym_val_duration] = STATE(5705), - [sym_val_filesize] = STATE(5705), - [sym_val_binary] = STATE(5705), - [sym_val_string] = STATE(5705), - [sym__str_double_quotes] = STATE(5788), - [sym_val_interpolated] = STATE(5705), - [sym__inter_single_quotes] = STATE(5899), - [sym__inter_double_quotes] = STATE(5903), - [sym_val_list] = STATE(5705), - [sym_val_record] = STATE(5705), - [sym_val_table] = STATE(5705), - [sym_val_closure] = STATE(5705), - [sym__flag] = STATE(2290), - [sym_short_flag] = STATE(5044), - [sym_long_flag] = STATE(5044), - [sym_long_flag_equals_value] = STATE(5143), - [sym_comment] = STATE(2065), - [anon_sym_SEMI] = ACTIONS(5621), - [anon_sym_LF] = ACTIONS(5623), - [anon_sym_LBRACK] = ACTIONS(5371), - [anon_sym_LPAREN] = ACTIONS(5373), - [anon_sym_RPAREN] = ACTIONS(5621), - [anon_sym_PIPE] = ACTIONS(5621), - [anon_sym_DOLLAR] = ACTIONS(3317), - [anon_sym_DASH_DASH] = ACTIONS(5375), - [anon_sym_DASH] = ACTIONS(5377), - [anon_sym_LBRACE] = ACTIONS(5379), - [anon_sym_RBRACE] = ACTIONS(5621), - [anon_sym_DOT_DOT] = ACTIONS(5381), - [anon_sym_not] = ACTIONS(5383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5385), - [anon_sym_DOT_DOT_LT] = ACTIONS(5385), - [anon_sym_null] = ACTIONS(5387), - [anon_sym_true] = ACTIONS(5389), - [anon_sym_false] = ACTIONS(5389), - [aux_sym__val_number_decimal_token1] = ACTIONS(5391), - [aux_sym__val_number_decimal_token2] = ACTIONS(5391), - [anon_sym_DOT2] = ACTIONS(5393), - [aux_sym__val_number_decimal_token3] = ACTIONS(5395), - [aux_sym__val_number_token1] = ACTIONS(5397), - [aux_sym__val_number_token2] = ACTIONS(5397), - [aux_sym__val_number_token3] = ACTIONS(5397), - [aux_sym__val_number_token4] = ACTIONS(5397), - [aux_sym__val_number_token5] = ACTIONS(5397), - [aux_sym__val_number_token6] = ACTIONS(5397), - [anon_sym_0b] = ACTIONS(3345), - [anon_sym_0o] = ACTIONS(3347), - [anon_sym_0x] = ACTIONS(3347), - [sym_val_date] = ACTIONS(5399), - [anon_sym_DQUOTE] = ACTIONS(5401), - [sym__str_single_quotes] = ACTIONS(5403), - [sym__str_back_ticks] = ACTIONS(5403), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5405), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5407), + [2344] = { + [sym_comment] = STATE(2344), + [anon_sym_export] = ACTIONS(6110), + [anon_sym_alias] = ACTIONS(6110), + [anon_sym_let] = ACTIONS(6110), + [anon_sym_let_DASHenv] = ACTIONS(6110), + [anon_sym_mut] = ACTIONS(6110), + [anon_sym_const] = ACTIONS(6110), + [anon_sym_SEMI] = ACTIONS(6110), + [sym_cmd_identifier] = ACTIONS(6110), + [anon_sym_LF] = ACTIONS(6112), + [anon_sym_def] = ACTIONS(6110), + [anon_sym_export_DASHenv] = ACTIONS(6110), + [anon_sym_extern] = ACTIONS(6110), + [anon_sym_module] = ACTIONS(6110), + [anon_sym_use] = ACTIONS(6110), + [anon_sym_LBRACK] = ACTIONS(6110), + [anon_sym_LPAREN] = ACTIONS(6110), + [anon_sym_RPAREN] = ACTIONS(6110), + [anon_sym_DOLLAR] = ACTIONS(6110), + [anon_sym_error] = ACTIONS(6110), + [anon_sym_DASH] = ACTIONS(6110), + [anon_sym_break] = ACTIONS(6110), + [anon_sym_continue] = ACTIONS(6110), + [anon_sym_for] = ACTIONS(6110), + [anon_sym_loop] = ACTIONS(6110), + [anon_sym_while] = ACTIONS(6110), + [anon_sym_do] = ACTIONS(6110), + [anon_sym_if] = ACTIONS(6110), + [anon_sym_match] = ACTIONS(6110), + [anon_sym_LBRACE] = ACTIONS(6110), + [anon_sym_RBRACE] = ACTIONS(6110), + [anon_sym_DOT_DOT] = ACTIONS(6110), + [anon_sym_try] = ACTIONS(6110), + [anon_sym_return] = ACTIONS(6110), + [anon_sym_source] = ACTIONS(6110), + [anon_sym_source_DASHenv] = ACTIONS(6110), + [anon_sym_register] = ACTIONS(6110), + [anon_sym_hide] = ACTIONS(6110), + [anon_sym_hide_DASHenv] = ACTIONS(6110), + [anon_sym_overlay] = ACTIONS(6110), + [anon_sym_where] = ACTIONS(6110), + [anon_sym_not] = ACTIONS(6110), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6110), + [anon_sym_DOT_DOT_LT] = ACTIONS(6110), + [anon_sym_null] = ACTIONS(6110), + [anon_sym_true] = ACTIONS(6110), + [anon_sym_false] = ACTIONS(6110), + [aux_sym__val_number_decimal_token1] = ACTIONS(6110), + [aux_sym__val_number_decimal_token2] = ACTIONS(6110), + [anon_sym_DOT2] = ACTIONS(6110), + [aux_sym__val_number_decimal_token3] = ACTIONS(6110), + [aux_sym__val_number_token1] = ACTIONS(6110), + [aux_sym__val_number_token2] = ACTIONS(6110), + [aux_sym__val_number_token3] = ACTIONS(6110), + [aux_sym__val_number_token4] = ACTIONS(6110), + [aux_sym__val_number_token5] = ACTIONS(6110), + [aux_sym__val_number_token6] = ACTIONS(6110), + [anon_sym_0b] = ACTIONS(6110), + [anon_sym_0o] = ACTIONS(6110), + [anon_sym_0x] = ACTIONS(6110), + [sym_val_date] = ACTIONS(6110), + [anon_sym_DQUOTE] = ACTIONS(6110), + [sym__str_single_quotes] = ACTIONS(6110), + [sym__str_back_ticks] = ACTIONS(6110), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6110), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6110), + [anon_sym_CARET] = ACTIONS(6110), [anon_sym_POUND] = ACTIONS(113), }, - [2066] = { - [sym__expression] = STATE(7365), - [sym_expr_unary] = STATE(5715), - [sym__expr_unary_minus] = STATE(5723), - [sym_expr_binary] = STATE(5715), - [sym__expr_binary_expression] = STATE(6788), - [sym_expr_parenthesized] = STATE(5176), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(5715), - [sym_val_nothing] = STATE(5705), - [sym_val_bool] = STATE(5705), - [sym_val_variable] = STATE(5170), - [sym__var] = STATE(4674), - [sym_val_number] = STATE(5705), - [sym__val_number_decimal] = STATE(4718), - [sym__val_number] = STATE(5875), - [sym_val_duration] = STATE(5705), - [sym_val_filesize] = STATE(5705), - [sym_val_binary] = STATE(5705), - [sym_val_string] = STATE(5705), - [sym__str_double_quotes] = STATE(5788), - [sym_val_interpolated] = STATE(5705), - [sym__inter_single_quotes] = STATE(5899), - [sym__inter_double_quotes] = STATE(5903), - [sym_val_list] = STATE(5705), - [sym_val_record] = STATE(5705), - [sym_val_table] = STATE(5705), - [sym_val_closure] = STATE(5705), - [sym__flag] = STATE(2304), - [sym_short_flag] = STATE(5044), - [sym_long_flag] = STATE(5044), - [sym_long_flag_equals_value] = STATE(5143), - [sym_comment] = STATE(2066), - [anon_sym_SEMI] = ACTIONS(5621), - [anon_sym_LF] = ACTIONS(5623), - [anon_sym_LBRACK] = ACTIONS(5371), - [anon_sym_LPAREN] = ACTIONS(5373), - [anon_sym_RPAREN] = ACTIONS(5621), - [anon_sym_PIPE] = ACTIONS(5621), - [anon_sym_DOLLAR] = ACTIONS(3317), - [anon_sym_DASH_DASH] = ACTIONS(5375), - [anon_sym_DASH] = ACTIONS(5377), - [anon_sym_LBRACE] = ACTIONS(5379), - [anon_sym_RBRACE] = ACTIONS(5621), - [anon_sym_DOT_DOT] = ACTIONS(5381), - [anon_sym_not] = ACTIONS(5383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5385), - [anon_sym_DOT_DOT_LT] = ACTIONS(5385), - [anon_sym_null] = ACTIONS(5387), - [anon_sym_true] = ACTIONS(5389), - [anon_sym_false] = ACTIONS(5389), - [aux_sym__val_number_decimal_token1] = ACTIONS(5391), - [aux_sym__val_number_decimal_token2] = ACTIONS(5391), - [anon_sym_DOT2] = ACTIONS(5393), - [aux_sym__val_number_decimal_token3] = ACTIONS(5395), - [aux_sym__val_number_token1] = ACTIONS(5397), - [aux_sym__val_number_token2] = ACTIONS(5397), - [aux_sym__val_number_token3] = ACTIONS(5397), - [aux_sym__val_number_token4] = ACTIONS(5397), - [aux_sym__val_number_token5] = ACTIONS(5397), - [aux_sym__val_number_token6] = ACTIONS(5397), - [anon_sym_0b] = ACTIONS(3345), - [anon_sym_0o] = ACTIONS(3347), - [anon_sym_0x] = ACTIONS(3347), - [sym_val_date] = ACTIONS(5399), - [anon_sym_DQUOTE] = ACTIONS(5401), - [sym__str_single_quotes] = ACTIONS(5403), - [sym__str_back_ticks] = ACTIONS(5403), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5405), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5407), + [2345] = { + [sym_comment] = STATE(2345), + [anon_sym_export] = ACTIONS(6114), + [anon_sym_alias] = ACTIONS(6114), + [anon_sym_let] = ACTIONS(6114), + [anon_sym_let_DASHenv] = ACTIONS(6114), + [anon_sym_mut] = ACTIONS(6114), + [anon_sym_const] = ACTIONS(6114), + [anon_sym_SEMI] = ACTIONS(6114), + [sym_cmd_identifier] = ACTIONS(6114), + [anon_sym_LF] = ACTIONS(6116), + [anon_sym_def] = ACTIONS(6114), + [anon_sym_export_DASHenv] = ACTIONS(6114), + [anon_sym_extern] = ACTIONS(6114), + [anon_sym_module] = ACTIONS(6114), + [anon_sym_use] = ACTIONS(6114), + [anon_sym_LBRACK] = ACTIONS(6114), + [anon_sym_LPAREN] = ACTIONS(6114), + [anon_sym_RPAREN] = ACTIONS(6114), + [anon_sym_DOLLAR] = ACTIONS(6114), + [anon_sym_error] = ACTIONS(6114), + [anon_sym_DASH] = ACTIONS(6114), + [anon_sym_break] = ACTIONS(6114), + [anon_sym_continue] = ACTIONS(6114), + [anon_sym_for] = ACTIONS(6114), + [anon_sym_loop] = ACTIONS(6114), + [anon_sym_while] = ACTIONS(6114), + [anon_sym_do] = ACTIONS(6114), + [anon_sym_if] = ACTIONS(6114), + [anon_sym_match] = ACTIONS(6114), + [anon_sym_LBRACE] = ACTIONS(6114), + [anon_sym_RBRACE] = ACTIONS(6114), + [anon_sym_DOT_DOT] = ACTIONS(6114), + [anon_sym_try] = ACTIONS(6114), + [anon_sym_return] = ACTIONS(6114), + [anon_sym_source] = ACTIONS(6114), + [anon_sym_source_DASHenv] = ACTIONS(6114), + [anon_sym_register] = ACTIONS(6114), + [anon_sym_hide] = ACTIONS(6114), + [anon_sym_hide_DASHenv] = ACTIONS(6114), + [anon_sym_overlay] = ACTIONS(6114), + [anon_sym_where] = ACTIONS(6114), + [anon_sym_not] = ACTIONS(6114), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6114), + [anon_sym_DOT_DOT_LT] = ACTIONS(6114), + [anon_sym_null] = ACTIONS(6114), + [anon_sym_true] = ACTIONS(6114), + [anon_sym_false] = ACTIONS(6114), + [aux_sym__val_number_decimal_token1] = ACTIONS(6114), + [aux_sym__val_number_decimal_token2] = ACTIONS(6114), + [anon_sym_DOT2] = ACTIONS(6114), + [aux_sym__val_number_decimal_token3] = ACTIONS(6114), + [aux_sym__val_number_token1] = ACTIONS(6114), + [aux_sym__val_number_token2] = ACTIONS(6114), + [aux_sym__val_number_token3] = ACTIONS(6114), + [aux_sym__val_number_token4] = ACTIONS(6114), + [aux_sym__val_number_token5] = ACTIONS(6114), + [aux_sym__val_number_token6] = ACTIONS(6114), + [anon_sym_0b] = ACTIONS(6114), + [anon_sym_0o] = ACTIONS(6114), + [anon_sym_0x] = ACTIONS(6114), + [sym_val_date] = ACTIONS(6114), + [anon_sym_DQUOTE] = ACTIONS(6114), + [sym__str_single_quotes] = ACTIONS(6114), + [sym__str_back_ticks] = ACTIONS(6114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6114), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6114), + [anon_sym_CARET] = ACTIONS(6114), [anon_sym_POUND] = ACTIONS(113), }, - [2067] = { - [sym__expression] = STATE(7365), - [sym_expr_unary] = STATE(5715), - [sym__expr_unary_minus] = STATE(5723), - [sym_expr_binary] = STATE(5715), - [sym__expr_binary_expression] = STATE(6788), - [sym_expr_parenthesized] = STATE(5176), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(5715), - [sym_val_nothing] = STATE(5705), - [sym_val_bool] = STATE(5705), - [sym_val_variable] = STATE(5170), - [sym__var] = STATE(4674), - [sym_val_number] = STATE(5705), - [sym__val_number_decimal] = STATE(4718), - [sym__val_number] = STATE(5875), - [sym_val_duration] = STATE(5705), - [sym_val_filesize] = STATE(5705), - [sym_val_binary] = STATE(5705), - [sym_val_string] = STATE(5705), - [sym__str_double_quotes] = STATE(5788), - [sym_val_interpolated] = STATE(5705), - [sym__inter_single_quotes] = STATE(5899), - [sym__inter_double_quotes] = STATE(5903), - [sym_val_list] = STATE(5705), - [sym_val_record] = STATE(5705), - [sym_val_table] = STATE(5705), - [sym_val_closure] = STATE(5705), - [sym__flag] = STATE(2305), - [sym_short_flag] = STATE(5044), - [sym_long_flag] = STATE(5044), - [sym_long_flag_equals_value] = STATE(5143), - [sym_comment] = STATE(2067), - [anon_sym_SEMI] = ACTIONS(5621), - [anon_sym_LF] = ACTIONS(5623), - [anon_sym_LBRACK] = ACTIONS(5371), - [anon_sym_LPAREN] = ACTIONS(5373), - [anon_sym_RPAREN] = ACTIONS(5621), - [anon_sym_PIPE] = ACTIONS(5621), - [anon_sym_DOLLAR] = ACTIONS(3317), - [anon_sym_DASH_DASH] = ACTIONS(5375), - [anon_sym_DASH] = ACTIONS(5377), - [anon_sym_LBRACE] = ACTIONS(5379), - [anon_sym_RBRACE] = ACTIONS(5621), - [anon_sym_DOT_DOT] = ACTIONS(5381), - [anon_sym_not] = ACTIONS(5383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5385), - [anon_sym_DOT_DOT_LT] = ACTIONS(5385), - [anon_sym_null] = ACTIONS(5387), - [anon_sym_true] = ACTIONS(5389), - [anon_sym_false] = ACTIONS(5389), - [aux_sym__val_number_decimal_token1] = ACTIONS(5391), - [aux_sym__val_number_decimal_token2] = ACTIONS(5391), - [anon_sym_DOT2] = ACTIONS(5393), - [aux_sym__val_number_decimal_token3] = ACTIONS(5395), - [aux_sym__val_number_token1] = ACTIONS(5397), - [aux_sym__val_number_token2] = ACTIONS(5397), - [aux_sym__val_number_token3] = ACTIONS(5397), - [aux_sym__val_number_token4] = ACTIONS(5397), - [aux_sym__val_number_token5] = ACTIONS(5397), - [aux_sym__val_number_token6] = ACTIONS(5397), - [anon_sym_0b] = ACTIONS(3345), - [anon_sym_0o] = ACTIONS(3347), - [anon_sym_0x] = ACTIONS(3347), - [sym_val_date] = ACTIONS(5399), - [anon_sym_DQUOTE] = ACTIONS(5401), - [sym__str_single_quotes] = ACTIONS(5403), - [sym__str_back_ticks] = ACTIONS(5403), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5405), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5407), + [2346] = { + [sym_comment] = STATE(2346), + [anon_sym_export] = ACTIONS(6118), + [anon_sym_alias] = ACTIONS(6118), + [anon_sym_let] = ACTIONS(6118), + [anon_sym_let_DASHenv] = ACTIONS(6118), + [anon_sym_mut] = ACTIONS(6118), + [anon_sym_const] = ACTIONS(6118), + [anon_sym_SEMI] = ACTIONS(6118), + [sym_cmd_identifier] = ACTIONS(6118), + [anon_sym_LF] = ACTIONS(6120), + [anon_sym_def] = ACTIONS(6118), + [anon_sym_export_DASHenv] = ACTIONS(6118), + [anon_sym_extern] = ACTIONS(6118), + [anon_sym_module] = ACTIONS(6118), + [anon_sym_use] = ACTIONS(6118), + [anon_sym_LBRACK] = ACTIONS(6118), + [anon_sym_LPAREN] = ACTIONS(6118), + [anon_sym_RPAREN] = ACTIONS(6118), + [anon_sym_DOLLAR] = ACTIONS(6118), + [anon_sym_error] = ACTIONS(6118), + [anon_sym_DASH] = ACTIONS(6118), + [anon_sym_break] = ACTIONS(6118), + [anon_sym_continue] = ACTIONS(6118), + [anon_sym_for] = ACTIONS(6118), + [anon_sym_loop] = ACTIONS(6118), + [anon_sym_while] = ACTIONS(6118), + [anon_sym_do] = ACTIONS(6118), + [anon_sym_if] = ACTIONS(6118), + [anon_sym_match] = ACTIONS(6118), + [anon_sym_LBRACE] = ACTIONS(6118), + [anon_sym_RBRACE] = ACTIONS(6118), + [anon_sym_DOT_DOT] = ACTIONS(6118), + [anon_sym_try] = ACTIONS(6118), + [anon_sym_return] = ACTIONS(6118), + [anon_sym_source] = ACTIONS(6118), + [anon_sym_source_DASHenv] = ACTIONS(6118), + [anon_sym_register] = ACTIONS(6118), + [anon_sym_hide] = ACTIONS(6118), + [anon_sym_hide_DASHenv] = ACTIONS(6118), + [anon_sym_overlay] = ACTIONS(6118), + [anon_sym_where] = ACTIONS(6118), + [anon_sym_not] = ACTIONS(6118), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6118), + [anon_sym_DOT_DOT_LT] = ACTIONS(6118), + [anon_sym_null] = ACTIONS(6118), + [anon_sym_true] = ACTIONS(6118), + [anon_sym_false] = ACTIONS(6118), + [aux_sym__val_number_decimal_token1] = ACTIONS(6118), + [aux_sym__val_number_decimal_token2] = ACTIONS(6118), + [anon_sym_DOT2] = ACTIONS(6118), + [aux_sym__val_number_decimal_token3] = ACTIONS(6118), + [aux_sym__val_number_token1] = ACTIONS(6118), + [aux_sym__val_number_token2] = ACTIONS(6118), + [aux_sym__val_number_token3] = ACTIONS(6118), + [aux_sym__val_number_token4] = ACTIONS(6118), + [aux_sym__val_number_token5] = ACTIONS(6118), + [aux_sym__val_number_token6] = ACTIONS(6118), + [anon_sym_0b] = ACTIONS(6118), + [anon_sym_0o] = ACTIONS(6118), + [anon_sym_0x] = ACTIONS(6118), + [sym_val_date] = ACTIONS(6118), + [anon_sym_DQUOTE] = ACTIONS(6118), + [sym__str_single_quotes] = ACTIONS(6118), + [sym__str_back_ticks] = ACTIONS(6118), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6118), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6118), + [anon_sym_CARET] = ACTIONS(6118), [anon_sym_POUND] = ACTIONS(113), }, - [2068] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5540), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5238), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4170), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5002), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2068), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5637), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5641), - [anon_sym_DOT_DOT_LT] = ACTIONS(5641), - [anon_sym_null] = ACTIONS(5643), - [anon_sym_true] = ACTIONS(5645), - [anon_sym_false] = ACTIONS(5645), - [aux_sym__val_number_decimal_token1] = ACTIONS(5647), - [aux_sym__val_number_decimal_token2] = ACTIONS(5649), - [anon_sym_DOT2] = ACTIONS(5651), - [aux_sym__val_number_decimal_token3] = ACTIONS(5653), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5655), - [aux_sym__val_number_token5] = ACTIONS(5655), - [aux_sym__val_number_token6] = ACTIONS(5655), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5657), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2347] = { + [sym_cell_path] = STATE(2662), + [sym_path] = STATE(2311), + [sym_comment] = STATE(2347), + [ts_builtin_sym_end] = ACTIONS(1059), + [anon_sym_SEMI] = ACTIONS(1057), + [anon_sym_LF] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_LPAREN] = ACTIONS(1057), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_DOLLAR] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_in] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_STAR_STAR] = ACTIONS(1057), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_mod] = ACTIONS(1057), + [anon_sym_SLASH_SLASH] = ACTIONS(1057), + [anon_sym_PLUS] = ACTIONS(1057), + [anon_sym_bit_DASHshl] = ACTIONS(1057), + [anon_sym_bit_DASHshr] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1057), + [anon_sym_LT2] = ACTIONS(1057), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_not_DASHin] = ACTIONS(1057), + [anon_sym_starts_DASHwith] = ACTIONS(1057), + [anon_sym_ends_DASHwith] = ACTIONS(1057), + [anon_sym_EQ_TILDE] = ACTIONS(1057), + [anon_sym_BANG_TILDE] = ACTIONS(1057), + [anon_sym_bit_DASHand] = ACTIONS(1057), + [anon_sym_bit_DASHxor] = ACTIONS(1057), + [anon_sym_bit_DASHor] = ACTIONS(1057), + [anon_sym_and] = ACTIONS(1057), + [anon_sym_xor] = ACTIONS(1057), + [anon_sym_or] = ACTIONS(1057), + [anon_sym_not] = ACTIONS(1057), + [anon_sym_DOT] = ACTIONS(5921), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1057), + [anon_sym_DOT_DOT_LT] = ACTIONS(1057), + [anon_sym_null] = ACTIONS(1057), + [anon_sym_true] = ACTIONS(1057), + [anon_sym_false] = ACTIONS(1057), + [aux_sym__val_number_decimal_token1] = ACTIONS(1057), + [aux_sym__val_number_decimal_token2] = ACTIONS(1057), + [anon_sym_DOT2] = ACTIONS(1057), + [aux_sym__val_number_decimal_token3] = ACTIONS(1057), + [aux_sym__val_number_token1] = ACTIONS(1057), + [aux_sym__val_number_token2] = ACTIONS(1057), + [aux_sym__val_number_token3] = ACTIONS(1057), + [aux_sym__val_number_token4] = ACTIONS(1057), + [aux_sym__val_number_token5] = ACTIONS(1057), + [aux_sym__val_number_token6] = ACTIONS(1057), + [anon_sym_0b] = ACTIONS(1057), + [anon_sym_0o] = ACTIONS(1057), + [anon_sym_0x] = ACTIONS(1057), + [sym_val_date] = ACTIONS(1057), + [anon_sym_DQUOTE] = ACTIONS(1057), + [sym__str_single_quotes] = ACTIONS(1057), + [sym__str_back_ticks] = ACTIONS(1057), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1057), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(113), }, - [2069] = { - [sym_comment] = STATE(2069), - [anon_sym_export] = ACTIONS(5661), - [anon_sym_alias] = ACTIONS(5661), - [anon_sym_let] = ACTIONS(5661), - [anon_sym_let_DASHenv] = ACTIONS(5661), - [anon_sym_mut] = ACTIONS(5661), - [anon_sym_const] = ACTIONS(5661), - [anon_sym_SEMI] = ACTIONS(5661), - [sym_cmd_identifier] = ACTIONS(5661), - [anon_sym_LF] = ACTIONS(5663), - [anon_sym_def] = ACTIONS(5661), - [anon_sym_export_DASHenv] = ACTIONS(5661), - [anon_sym_extern] = ACTIONS(5661), - [anon_sym_module] = ACTIONS(5661), - [anon_sym_use] = ACTIONS(5661), - [anon_sym_LBRACK] = ACTIONS(5661), - [anon_sym_LPAREN] = ACTIONS(5661), - [anon_sym_RPAREN] = ACTIONS(5661), - [anon_sym_DOLLAR] = ACTIONS(5661), - [anon_sym_error] = ACTIONS(5661), - [anon_sym_DASH_DASH] = ACTIONS(5661), - [anon_sym_DASH] = ACTIONS(5661), - [anon_sym_break] = ACTIONS(5661), - [anon_sym_continue] = ACTIONS(5661), - [anon_sym_for] = ACTIONS(5661), - [anon_sym_loop] = ACTIONS(5661), - [anon_sym_while] = ACTIONS(5661), - [anon_sym_do] = ACTIONS(5661), - [anon_sym_if] = ACTIONS(5661), - [anon_sym_match] = ACTIONS(5661), - [anon_sym_LBRACE] = ACTIONS(5661), - [anon_sym_RBRACE] = ACTIONS(5661), - [anon_sym_DOT_DOT] = ACTIONS(5661), - [anon_sym_try] = ACTIONS(5661), - [anon_sym_return] = ACTIONS(5661), - [anon_sym_source] = ACTIONS(5661), - [anon_sym_source_DASHenv] = ACTIONS(5661), - [anon_sym_register] = ACTIONS(5661), - [anon_sym_hide] = ACTIONS(5661), - [anon_sym_hide_DASHenv] = ACTIONS(5661), - [anon_sym_overlay] = ACTIONS(5661), - [anon_sym_as] = ACTIONS(5661), - [anon_sym_where] = ACTIONS(5661), - [anon_sym_not] = ACTIONS(5661), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5661), - [anon_sym_DOT_DOT_LT] = ACTIONS(5661), - [anon_sym_null] = ACTIONS(5661), - [anon_sym_true] = ACTIONS(5661), - [anon_sym_false] = ACTIONS(5661), - [aux_sym__val_number_decimal_token1] = ACTIONS(5661), - [aux_sym__val_number_decimal_token2] = ACTIONS(5661), - [anon_sym_DOT2] = ACTIONS(5661), - [aux_sym__val_number_decimal_token3] = ACTIONS(5661), - [aux_sym__val_number_token1] = ACTIONS(5661), - [aux_sym__val_number_token2] = ACTIONS(5661), - [aux_sym__val_number_token3] = ACTIONS(5661), - [aux_sym__val_number_token4] = ACTIONS(5661), - [aux_sym__val_number_token5] = ACTIONS(5661), - [aux_sym__val_number_token6] = ACTIONS(5661), - [anon_sym_0b] = ACTIONS(5661), - [anon_sym_0o] = ACTIONS(5661), - [anon_sym_0x] = ACTIONS(5661), - [sym_val_date] = ACTIONS(5661), - [anon_sym_DQUOTE] = ACTIONS(5661), - [sym__str_single_quotes] = ACTIONS(5661), - [sym__str_back_ticks] = ACTIONS(5661), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5661), - [anon_sym_CARET] = ACTIONS(5661), + [2348] = { + [sym_comment] = STATE(2348), + [anon_sym_export] = ACTIONS(6122), + [anon_sym_alias] = ACTIONS(6122), + [anon_sym_let] = ACTIONS(6122), + [anon_sym_let_DASHenv] = ACTIONS(6122), + [anon_sym_mut] = ACTIONS(6122), + [anon_sym_const] = ACTIONS(6122), + [anon_sym_SEMI] = ACTIONS(6122), + [sym_cmd_identifier] = ACTIONS(6122), + [anon_sym_LF] = ACTIONS(6124), + [anon_sym_def] = ACTIONS(6122), + [anon_sym_export_DASHenv] = ACTIONS(6122), + [anon_sym_extern] = ACTIONS(6122), + [anon_sym_module] = ACTIONS(6122), + [anon_sym_use] = ACTIONS(6122), + [anon_sym_LBRACK] = ACTIONS(6122), + [anon_sym_LPAREN] = ACTIONS(6122), + [anon_sym_RPAREN] = ACTIONS(6122), + [anon_sym_DOLLAR] = ACTIONS(6122), + [anon_sym_error] = ACTIONS(6122), + [anon_sym_DASH] = ACTIONS(6122), + [anon_sym_break] = ACTIONS(6122), + [anon_sym_continue] = ACTIONS(6122), + [anon_sym_for] = ACTIONS(6122), + [anon_sym_loop] = ACTIONS(6122), + [anon_sym_while] = ACTIONS(6122), + [anon_sym_do] = ACTIONS(6122), + [anon_sym_if] = ACTIONS(6122), + [anon_sym_match] = ACTIONS(6122), + [anon_sym_LBRACE] = ACTIONS(6122), + [anon_sym_RBRACE] = ACTIONS(6122), + [anon_sym_DOT_DOT] = ACTIONS(6122), + [anon_sym_try] = ACTIONS(6122), + [anon_sym_return] = ACTIONS(6122), + [anon_sym_source] = ACTIONS(6122), + [anon_sym_source_DASHenv] = ACTIONS(6122), + [anon_sym_register] = ACTIONS(6122), + [anon_sym_hide] = ACTIONS(6122), + [anon_sym_hide_DASHenv] = ACTIONS(6122), + [anon_sym_overlay] = ACTIONS(6122), + [anon_sym_where] = ACTIONS(6122), + [anon_sym_not] = ACTIONS(6122), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6122), + [anon_sym_DOT_DOT_LT] = ACTIONS(6122), + [anon_sym_null] = ACTIONS(6122), + [anon_sym_true] = ACTIONS(6122), + [anon_sym_false] = ACTIONS(6122), + [aux_sym__val_number_decimal_token1] = ACTIONS(6122), + [aux_sym__val_number_decimal_token2] = ACTIONS(6122), + [anon_sym_DOT2] = ACTIONS(6122), + [aux_sym__val_number_decimal_token3] = ACTIONS(6122), + [aux_sym__val_number_token1] = ACTIONS(6122), + [aux_sym__val_number_token2] = ACTIONS(6122), + [aux_sym__val_number_token3] = ACTIONS(6122), + [aux_sym__val_number_token4] = ACTIONS(6122), + [aux_sym__val_number_token5] = ACTIONS(6122), + [aux_sym__val_number_token6] = ACTIONS(6122), + [anon_sym_0b] = ACTIONS(6122), + [anon_sym_0o] = ACTIONS(6122), + [anon_sym_0x] = ACTIONS(6122), + [sym_val_date] = ACTIONS(6122), + [anon_sym_DQUOTE] = ACTIONS(6122), + [sym__str_single_quotes] = ACTIONS(6122), + [sym__str_back_ticks] = ACTIONS(6122), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6122), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6122), + [anon_sym_CARET] = ACTIONS(6122), [anon_sym_POUND] = ACTIONS(113), }, - [2070] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5547), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5238), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4170), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5010), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2070), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5637), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5641), - [anon_sym_DOT_DOT_LT] = ACTIONS(5641), - [anon_sym_null] = ACTIONS(5643), - [anon_sym_true] = ACTIONS(5645), - [anon_sym_false] = ACTIONS(5645), - [aux_sym__val_number_decimal_token1] = ACTIONS(5647), - [aux_sym__val_number_decimal_token2] = ACTIONS(5649), - [anon_sym_DOT2] = ACTIONS(5651), - [aux_sym__val_number_decimal_token3] = ACTIONS(5653), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5655), - [aux_sym__val_number_token5] = ACTIONS(5655), - [aux_sym__val_number_token6] = ACTIONS(5655), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5657), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), + [2349] = { + [sym_comment] = STATE(2349), + [anon_sym_LBRACK] = ACTIONS(913), + [anon_sym_LPAREN] = ACTIONS(913), + [anon_sym_DOLLAR] = ACTIONS(911), + [anon_sym_GT] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_in] = ACTIONS(911), + [anon_sym_LBRACE] = ACTIONS(913), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(911), + [anon_sym_STAR_STAR] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_SLASH] = ACTIONS(911), + [anon_sym_mod] = ACTIONS(913), + [anon_sym_SLASH_SLASH] = ACTIONS(913), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_bit_DASHshl] = ACTIONS(913), + [anon_sym_bit_DASHshr] = ACTIONS(913), + [anon_sym_EQ_EQ] = ACTIONS(913), + [anon_sym_BANG_EQ] = ACTIONS(913), + [anon_sym_LT2] = ACTIONS(911), + [anon_sym_LT_EQ] = ACTIONS(913), + [anon_sym_GT_EQ] = ACTIONS(913), + [anon_sym_not_DASHin] = ACTIONS(913), + [anon_sym_starts_DASHwith] = ACTIONS(913), + [anon_sym_ends_DASHwith] = ACTIONS(913), + [anon_sym_EQ_TILDE] = ACTIONS(913), + [anon_sym_BANG_TILDE] = ACTIONS(913), + [anon_sym_bit_DASHand] = ACTIONS(913), + [anon_sym_bit_DASHxor] = ACTIONS(913), + [anon_sym_bit_DASHor] = ACTIONS(913), + [anon_sym_and] = ACTIONS(913), + [anon_sym_xor] = ACTIONS(913), + [anon_sym_or] = ACTIONS(913), + [anon_sym_not] = ACTIONS(911), + [anon_sym_DOT_DOT2] = ACTIONS(911), + [anon_sym_DOT] = ACTIONS(911), + [anon_sym_DOT_DOT_EQ] = ACTIONS(911), + [anon_sym_DOT_DOT_LT] = ACTIONS(911), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(913), + [anon_sym_DOT_DOT_LT2] = ACTIONS(913), + [aux_sym__immediate_decimal_token2] = ACTIONS(5987), + [anon_sym_null] = ACTIONS(913), + [anon_sym_true] = ACTIONS(913), + [anon_sym_false] = ACTIONS(913), + [aux_sym__val_number_decimal_token1] = ACTIONS(911), + [aux_sym__val_number_decimal_token2] = ACTIONS(913), + [anon_sym_DOT2] = ACTIONS(911), + [aux_sym__val_number_decimal_token3] = ACTIONS(913), + [aux_sym__val_number_token1] = ACTIONS(913), + [aux_sym__val_number_token2] = ACTIONS(913), + [aux_sym__val_number_token3] = ACTIONS(913), + [aux_sym__val_number_token4] = ACTIONS(913), + [aux_sym__val_number_token5] = ACTIONS(913), + [aux_sym__val_number_token6] = ACTIONS(913), + [anon_sym_0b] = ACTIONS(911), + [sym_filesize_unit] = ACTIONS(911), + [sym_duration_unit] = ACTIONS(913), + [anon_sym_0o] = ACTIONS(911), + [anon_sym_0x] = ACTIONS(911), + [sym_val_date] = ACTIONS(913), + [anon_sym_DQUOTE] = ACTIONS(913), + [sym__str_single_quotes] = ACTIONS(913), + [sym__str_back_ticks] = ACTIONS(913), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(913), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(913), + [aux_sym_unquoted_token5] = ACTIONS(911), [anon_sym_POUND] = ACTIONS(3), }, - [2071] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5551), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5238), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4170), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5011), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2071), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5637), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5641), - [anon_sym_DOT_DOT_LT] = ACTIONS(5641), - [anon_sym_null] = ACTIONS(5643), - [anon_sym_true] = ACTIONS(5645), - [anon_sym_false] = ACTIONS(5645), - [aux_sym__val_number_decimal_token1] = ACTIONS(5647), - [aux_sym__val_number_decimal_token2] = ACTIONS(5649), - [anon_sym_DOT2] = ACTIONS(5651), - [aux_sym__val_number_decimal_token3] = ACTIONS(5653), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5655), - [aux_sym__val_number_token5] = ACTIONS(5655), - [aux_sym__val_number_token6] = ACTIONS(5655), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5657), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2350] = { + [sym_comment] = STATE(2350), + [anon_sym_export] = ACTIONS(6126), + [anon_sym_alias] = ACTIONS(6126), + [anon_sym_let] = ACTIONS(6126), + [anon_sym_let_DASHenv] = ACTIONS(6126), + [anon_sym_mut] = ACTIONS(6126), + [anon_sym_const] = ACTIONS(6126), + [anon_sym_SEMI] = ACTIONS(6126), + [sym_cmd_identifier] = ACTIONS(6126), + [anon_sym_LF] = ACTIONS(6128), + [anon_sym_def] = ACTIONS(6126), + [anon_sym_export_DASHenv] = ACTIONS(6126), + [anon_sym_extern] = ACTIONS(6126), + [anon_sym_module] = ACTIONS(6126), + [anon_sym_use] = ACTIONS(6126), + [anon_sym_LBRACK] = ACTIONS(6126), + [anon_sym_LPAREN] = ACTIONS(6126), + [anon_sym_RPAREN] = ACTIONS(6126), + [anon_sym_DOLLAR] = ACTIONS(6126), + [anon_sym_error] = ACTIONS(6126), + [anon_sym_DASH] = ACTIONS(6126), + [anon_sym_break] = ACTIONS(6126), + [anon_sym_continue] = ACTIONS(6126), + [anon_sym_for] = ACTIONS(6126), + [anon_sym_loop] = ACTIONS(6126), + [anon_sym_while] = ACTIONS(6126), + [anon_sym_do] = ACTIONS(6126), + [anon_sym_if] = ACTIONS(6126), + [anon_sym_match] = ACTIONS(6126), + [anon_sym_LBRACE] = ACTIONS(6126), + [anon_sym_RBRACE] = ACTIONS(6126), + [anon_sym_DOT_DOT] = ACTIONS(6126), + [anon_sym_try] = ACTIONS(6126), + [anon_sym_return] = ACTIONS(6126), + [anon_sym_source] = ACTIONS(6126), + [anon_sym_source_DASHenv] = ACTIONS(6126), + [anon_sym_register] = ACTIONS(6126), + [anon_sym_hide] = ACTIONS(6126), + [anon_sym_hide_DASHenv] = ACTIONS(6126), + [anon_sym_overlay] = ACTIONS(6126), + [anon_sym_where] = ACTIONS(6126), + [anon_sym_not] = ACTIONS(6126), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6126), + [anon_sym_DOT_DOT_LT] = ACTIONS(6126), + [anon_sym_null] = ACTIONS(6126), + [anon_sym_true] = ACTIONS(6126), + [anon_sym_false] = ACTIONS(6126), + [aux_sym__val_number_decimal_token1] = ACTIONS(6126), + [aux_sym__val_number_decimal_token2] = ACTIONS(6126), + [anon_sym_DOT2] = ACTIONS(6126), + [aux_sym__val_number_decimal_token3] = ACTIONS(6126), + [aux_sym__val_number_token1] = ACTIONS(6126), + [aux_sym__val_number_token2] = ACTIONS(6126), + [aux_sym__val_number_token3] = ACTIONS(6126), + [aux_sym__val_number_token4] = ACTIONS(6126), + [aux_sym__val_number_token5] = ACTIONS(6126), + [aux_sym__val_number_token6] = ACTIONS(6126), + [anon_sym_0b] = ACTIONS(6126), + [anon_sym_0o] = ACTIONS(6126), + [anon_sym_0x] = ACTIONS(6126), + [sym_val_date] = ACTIONS(6126), + [anon_sym_DQUOTE] = ACTIONS(6126), + [sym__str_single_quotes] = ACTIONS(6126), + [sym__str_back_ticks] = ACTIONS(6126), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6126), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6126), + [anon_sym_CARET] = ACTIONS(6126), + [anon_sym_POUND] = ACTIONS(113), }, - [2072] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5555), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5238), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4170), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5019), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2072), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5637), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5641), - [anon_sym_DOT_DOT_LT] = ACTIONS(5641), - [anon_sym_null] = ACTIONS(5643), - [anon_sym_true] = ACTIONS(5645), - [anon_sym_false] = ACTIONS(5645), - [aux_sym__val_number_decimal_token1] = ACTIONS(5647), - [aux_sym__val_number_decimal_token2] = ACTIONS(5649), - [anon_sym_DOT2] = ACTIONS(5651), - [aux_sym__val_number_decimal_token3] = ACTIONS(5653), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5655), - [aux_sym__val_number_token5] = ACTIONS(5655), - [aux_sym__val_number_token6] = ACTIONS(5655), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5657), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2351] = { + [sym_comment] = STATE(2351), + [anon_sym_export] = ACTIONS(6130), + [anon_sym_alias] = ACTIONS(6130), + [anon_sym_let] = ACTIONS(6130), + [anon_sym_let_DASHenv] = ACTIONS(6130), + [anon_sym_mut] = ACTIONS(6130), + [anon_sym_const] = ACTIONS(6130), + [anon_sym_SEMI] = ACTIONS(6130), + [sym_cmd_identifier] = ACTIONS(6130), + [anon_sym_LF] = ACTIONS(6132), + [anon_sym_def] = ACTIONS(6130), + [anon_sym_export_DASHenv] = ACTIONS(6130), + [anon_sym_extern] = ACTIONS(6130), + [anon_sym_module] = ACTIONS(6130), + [anon_sym_use] = ACTIONS(6130), + [anon_sym_LBRACK] = ACTIONS(6130), + [anon_sym_LPAREN] = ACTIONS(6130), + [anon_sym_RPAREN] = ACTIONS(6130), + [anon_sym_DOLLAR] = ACTIONS(6130), + [anon_sym_error] = ACTIONS(6130), + [anon_sym_DASH] = ACTIONS(6130), + [anon_sym_break] = ACTIONS(6130), + [anon_sym_continue] = ACTIONS(6130), + [anon_sym_for] = ACTIONS(6130), + [anon_sym_loop] = ACTIONS(6130), + [anon_sym_while] = ACTIONS(6130), + [anon_sym_do] = ACTIONS(6130), + [anon_sym_if] = ACTIONS(6130), + [anon_sym_match] = ACTIONS(6130), + [anon_sym_LBRACE] = ACTIONS(6130), + [anon_sym_RBRACE] = ACTIONS(6130), + [anon_sym_DOT_DOT] = ACTIONS(6130), + [anon_sym_try] = ACTIONS(6130), + [anon_sym_return] = ACTIONS(6130), + [anon_sym_source] = ACTIONS(6130), + [anon_sym_source_DASHenv] = ACTIONS(6130), + [anon_sym_register] = ACTIONS(6130), + [anon_sym_hide] = ACTIONS(6130), + [anon_sym_hide_DASHenv] = ACTIONS(6130), + [anon_sym_overlay] = ACTIONS(6130), + [anon_sym_where] = ACTIONS(6130), + [anon_sym_not] = ACTIONS(6130), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6130), + [anon_sym_DOT_DOT_LT] = ACTIONS(6130), + [anon_sym_null] = ACTIONS(6130), + [anon_sym_true] = ACTIONS(6130), + [anon_sym_false] = ACTIONS(6130), + [aux_sym__val_number_decimal_token1] = ACTIONS(6130), + [aux_sym__val_number_decimal_token2] = ACTIONS(6130), + [anon_sym_DOT2] = ACTIONS(6130), + [aux_sym__val_number_decimal_token3] = ACTIONS(6130), + [aux_sym__val_number_token1] = ACTIONS(6130), + [aux_sym__val_number_token2] = ACTIONS(6130), + [aux_sym__val_number_token3] = ACTIONS(6130), + [aux_sym__val_number_token4] = ACTIONS(6130), + [aux_sym__val_number_token5] = ACTIONS(6130), + [aux_sym__val_number_token6] = ACTIONS(6130), + [anon_sym_0b] = ACTIONS(6130), + [anon_sym_0o] = ACTIONS(6130), + [anon_sym_0x] = ACTIONS(6130), + [sym_val_date] = ACTIONS(6130), + [anon_sym_DQUOTE] = ACTIONS(6130), + [sym__str_single_quotes] = ACTIONS(6130), + [sym__str_back_ticks] = ACTIONS(6130), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6130), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6130), + [anon_sym_CARET] = ACTIONS(6130), + [anon_sym_POUND] = ACTIONS(113), }, - [2073] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5631), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5238), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4170), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5020), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2073), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5637), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5641), - [anon_sym_DOT_DOT_LT] = ACTIONS(5641), - [anon_sym_null] = ACTIONS(5643), - [anon_sym_true] = ACTIONS(5645), - [anon_sym_false] = ACTIONS(5645), - [aux_sym__val_number_decimal_token1] = ACTIONS(5647), - [aux_sym__val_number_decimal_token2] = ACTIONS(5649), - [anon_sym_DOT2] = ACTIONS(5651), - [aux_sym__val_number_decimal_token3] = ACTIONS(5653), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5655), - [aux_sym__val_number_token5] = ACTIONS(5655), - [aux_sym__val_number_token6] = ACTIONS(5655), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5657), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2352] = { + [sym_comment] = STATE(2352), + [anon_sym_export] = ACTIONS(6134), + [anon_sym_alias] = ACTIONS(6134), + [anon_sym_let] = ACTIONS(6134), + [anon_sym_let_DASHenv] = ACTIONS(6134), + [anon_sym_mut] = ACTIONS(6134), + [anon_sym_const] = ACTIONS(6134), + [anon_sym_SEMI] = ACTIONS(6134), + [sym_cmd_identifier] = ACTIONS(6134), + [anon_sym_LF] = ACTIONS(6136), + [anon_sym_def] = ACTIONS(6134), + [anon_sym_export_DASHenv] = ACTIONS(6134), + [anon_sym_extern] = ACTIONS(6134), + [anon_sym_module] = ACTIONS(6134), + [anon_sym_use] = ACTIONS(6134), + [anon_sym_LBRACK] = ACTIONS(6134), + [anon_sym_LPAREN] = ACTIONS(6134), + [anon_sym_RPAREN] = ACTIONS(6134), + [anon_sym_DOLLAR] = ACTIONS(6134), + [anon_sym_error] = ACTIONS(6134), + [anon_sym_DASH] = ACTIONS(6134), + [anon_sym_break] = ACTIONS(6134), + [anon_sym_continue] = ACTIONS(6134), + [anon_sym_for] = ACTIONS(6134), + [anon_sym_loop] = ACTIONS(6134), + [anon_sym_while] = ACTIONS(6134), + [anon_sym_do] = ACTIONS(6134), + [anon_sym_if] = ACTIONS(6134), + [anon_sym_match] = ACTIONS(6134), + [anon_sym_LBRACE] = ACTIONS(6134), + [anon_sym_RBRACE] = ACTIONS(6134), + [anon_sym_DOT_DOT] = ACTIONS(6134), + [anon_sym_try] = ACTIONS(6134), + [anon_sym_return] = ACTIONS(6134), + [anon_sym_source] = ACTIONS(6134), + [anon_sym_source_DASHenv] = ACTIONS(6134), + [anon_sym_register] = ACTIONS(6134), + [anon_sym_hide] = ACTIONS(6134), + [anon_sym_hide_DASHenv] = ACTIONS(6134), + [anon_sym_overlay] = ACTIONS(6134), + [anon_sym_where] = ACTIONS(6134), + [anon_sym_not] = ACTIONS(6134), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6134), + [anon_sym_DOT_DOT_LT] = ACTIONS(6134), + [anon_sym_null] = ACTIONS(6134), + [anon_sym_true] = ACTIONS(6134), + [anon_sym_false] = ACTIONS(6134), + [aux_sym__val_number_decimal_token1] = ACTIONS(6134), + [aux_sym__val_number_decimal_token2] = ACTIONS(6134), + [anon_sym_DOT2] = ACTIONS(6134), + [aux_sym__val_number_decimal_token3] = ACTIONS(6134), + [aux_sym__val_number_token1] = ACTIONS(6134), + [aux_sym__val_number_token2] = ACTIONS(6134), + [aux_sym__val_number_token3] = ACTIONS(6134), + [aux_sym__val_number_token4] = ACTIONS(6134), + [aux_sym__val_number_token5] = ACTIONS(6134), + [aux_sym__val_number_token6] = ACTIONS(6134), + [anon_sym_0b] = ACTIONS(6134), + [anon_sym_0o] = ACTIONS(6134), + [anon_sym_0x] = ACTIONS(6134), + [sym_val_date] = ACTIONS(6134), + [anon_sym_DQUOTE] = ACTIONS(6134), + [sym__str_single_quotes] = ACTIONS(6134), + [sym__str_back_ticks] = ACTIONS(6134), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6134), + [anon_sym_CARET] = ACTIONS(6134), + [anon_sym_POUND] = ACTIONS(113), }, - [2074] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5560), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5238), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4170), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5026), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2074), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5637), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5641), - [anon_sym_DOT_DOT_LT] = ACTIONS(5641), - [anon_sym_null] = ACTIONS(5643), - [anon_sym_true] = ACTIONS(5645), - [anon_sym_false] = ACTIONS(5645), - [aux_sym__val_number_decimal_token1] = ACTIONS(5647), - [aux_sym__val_number_decimal_token2] = ACTIONS(5649), - [anon_sym_DOT2] = ACTIONS(5651), - [aux_sym__val_number_decimal_token3] = ACTIONS(5653), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5655), - [aux_sym__val_number_token5] = ACTIONS(5655), - [aux_sym__val_number_token6] = ACTIONS(5655), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5657), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2353] = { + [sym_comment] = STATE(2353), + [anon_sym_export] = ACTIONS(6138), + [anon_sym_alias] = ACTIONS(6138), + [anon_sym_let] = ACTIONS(6138), + [anon_sym_let_DASHenv] = ACTIONS(6138), + [anon_sym_mut] = ACTIONS(6138), + [anon_sym_const] = ACTIONS(6138), + [anon_sym_SEMI] = ACTIONS(6138), + [sym_cmd_identifier] = ACTIONS(6138), + [anon_sym_LF] = ACTIONS(6140), + [anon_sym_def] = ACTIONS(6138), + [anon_sym_export_DASHenv] = ACTIONS(6138), + [anon_sym_extern] = ACTIONS(6138), + [anon_sym_module] = ACTIONS(6138), + [anon_sym_use] = ACTIONS(6138), + [anon_sym_LBRACK] = ACTIONS(6138), + [anon_sym_LPAREN] = ACTIONS(6138), + [anon_sym_RPAREN] = ACTIONS(6138), + [anon_sym_DOLLAR] = ACTIONS(6138), + [anon_sym_error] = ACTIONS(6138), + [anon_sym_DASH] = ACTIONS(6138), + [anon_sym_break] = ACTIONS(6138), + [anon_sym_continue] = ACTIONS(6138), + [anon_sym_for] = ACTIONS(6138), + [anon_sym_loop] = ACTIONS(6138), + [anon_sym_while] = ACTIONS(6138), + [anon_sym_do] = ACTIONS(6138), + [anon_sym_if] = ACTIONS(6138), + [anon_sym_match] = ACTIONS(6138), + [anon_sym_LBRACE] = ACTIONS(6138), + [anon_sym_RBRACE] = ACTIONS(6138), + [anon_sym_DOT_DOT] = ACTIONS(6138), + [anon_sym_try] = ACTIONS(6138), + [anon_sym_return] = ACTIONS(6138), + [anon_sym_source] = ACTIONS(6138), + [anon_sym_source_DASHenv] = ACTIONS(6138), + [anon_sym_register] = ACTIONS(6138), + [anon_sym_hide] = ACTIONS(6138), + [anon_sym_hide_DASHenv] = ACTIONS(6138), + [anon_sym_overlay] = ACTIONS(6138), + [anon_sym_where] = ACTIONS(6138), + [anon_sym_not] = ACTIONS(6138), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6138), + [anon_sym_DOT_DOT_LT] = ACTIONS(6138), + [anon_sym_null] = ACTIONS(6138), + [anon_sym_true] = ACTIONS(6138), + [anon_sym_false] = ACTIONS(6138), + [aux_sym__val_number_decimal_token1] = ACTIONS(6138), + [aux_sym__val_number_decimal_token2] = ACTIONS(6138), + [anon_sym_DOT2] = ACTIONS(6138), + [aux_sym__val_number_decimal_token3] = ACTIONS(6138), + [aux_sym__val_number_token1] = ACTIONS(6138), + [aux_sym__val_number_token2] = ACTIONS(6138), + [aux_sym__val_number_token3] = ACTIONS(6138), + [aux_sym__val_number_token4] = ACTIONS(6138), + [aux_sym__val_number_token5] = ACTIONS(6138), + [aux_sym__val_number_token6] = ACTIONS(6138), + [anon_sym_0b] = ACTIONS(6138), + [anon_sym_0o] = ACTIONS(6138), + [anon_sym_0x] = ACTIONS(6138), + [sym_val_date] = ACTIONS(6138), + [anon_sym_DQUOTE] = ACTIONS(6138), + [sym__str_single_quotes] = ACTIONS(6138), + [sym__str_back_ticks] = ACTIONS(6138), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6138), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6138), + [anon_sym_CARET] = ACTIONS(6138), + [anon_sym_POUND] = ACTIONS(113), }, - [2075] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5561), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5238), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4170), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5033), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2075), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5637), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5641), - [anon_sym_DOT_DOT_LT] = ACTIONS(5641), - [anon_sym_null] = ACTIONS(5643), - [anon_sym_true] = ACTIONS(5645), - [anon_sym_false] = ACTIONS(5645), - [aux_sym__val_number_decimal_token1] = ACTIONS(5647), - [aux_sym__val_number_decimal_token2] = ACTIONS(5649), - [anon_sym_DOT2] = ACTIONS(5651), - [aux_sym__val_number_decimal_token3] = ACTIONS(5653), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5655), - [aux_sym__val_number_token5] = ACTIONS(5655), - [aux_sym__val_number_token6] = ACTIONS(5655), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5657), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2354] = { + [sym__terminator] = STATE(2372), + [sym_comment] = STATE(2354), + [aux_sym__block_body_repeat1] = STATE(2325), + [anon_sym_export] = ACTIONS(6142), + [anon_sym_alias] = ACTIONS(6142), + [anon_sym_let] = ACTIONS(6142), + [anon_sym_let_DASHenv] = ACTIONS(6142), + [anon_sym_mut] = ACTIONS(6142), + [anon_sym_const] = ACTIONS(6142), + [anon_sym_SEMI] = ACTIONS(6058), + [sym_cmd_identifier] = ACTIONS(6142), + [anon_sym_LF] = ACTIONS(6060), + [anon_sym_def] = ACTIONS(6142), + [anon_sym_export_DASHenv] = ACTIONS(6142), + [anon_sym_extern] = ACTIONS(6142), + [anon_sym_module] = ACTIONS(6142), + [anon_sym_use] = ACTIONS(6142), + [anon_sym_LBRACK] = ACTIONS(6142), + [anon_sym_LPAREN] = ACTIONS(6142), + [anon_sym_DOLLAR] = ACTIONS(6142), + [anon_sym_error] = ACTIONS(6142), + [anon_sym_DASH] = ACTIONS(6142), + [anon_sym_break] = ACTIONS(6142), + [anon_sym_continue] = ACTIONS(6142), + [anon_sym_for] = ACTIONS(6142), + [anon_sym_loop] = ACTIONS(6142), + [anon_sym_while] = ACTIONS(6142), + [anon_sym_do] = ACTIONS(6142), + [anon_sym_if] = ACTIONS(6142), + [anon_sym_match] = ACTIONS(6142), + [anon_sym_LBRACE] = ACTIONS(6142), + [anon_sym_DOT_DOT] = ACTIONS(6142), + [anon_sym_try] = ACTIONS(6142), + [anon_sym_return] = ACTIONS(6142), + [anon_sym_source] = ACTIONS(6142), + [anon_sym_source_DASHenv] = ACTIONS(6142), + [anon_sym_register] = ACTIONS(6142), + [anon_sym_hide] = ACTIONS(6142), + [anon_sym_hide_DASHenv] = ACTIONS(6142), + [anon_sym_overlay] = ACTIONS(6142), + [anon_sym_where] = ACTIONS(6142), + [anon_sym_not] = ACTIONS(6142), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6142), + [anon_sym_DOT_DOT_LT] = ACTIONS(6142), + [anon_sym_null] = ACTIONS(6142), + [anon_sym_true] = ACTIONS(6142), + [anon_sym_false] = ACTIONS(6142), + [aux_sym__val_number_decimal_token1] = ACTIONS(6142), + [aux_sym__val_number_decimal_token2] = ACTIONS(6142), + [anon_sym_DOT2] = ACTIONS(6142), + [aux_sym__val_number_decimal_token3] = ACTIONS(6142), + [aux_sym__val_number_token1] = ACTIONS(6142), + [aux_sym__val_number_token2] = ACTIONS(6142), + [aux_sym__val_number_token3] = ACTIONS(6142), + [aux_sym__val_number_token4] = ACTIONS(6142), + [aux_sym__val_number_token5] = ACTIONS(6142), + [aux_sym__val_number_token6] = ACTIONS(6142), + [anon_sym_0b] = ACTIONS(6142), + [anon_sym_0o] = ACTIONS(6142), + [anon_sym_0x] = ACTIONS(6142), + [sym_val_date] = ACTIONS(6142), + [anon_sym_DQUOTE] = ACTIONS(6142), + [sym__str_single_quotes] = ACTIONS(6142), + [sym__str_back_ticks] = ACTIONS(6142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6142), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6142), + [anon_sym_CARET] = ACTIONS(6142), + [anon_sym_POUND] = ACTIONS(113), }, - [2076] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5565), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5238), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4170), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5036), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2076), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5637), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5641), - [anon_sym_DOT_DOT_LT] = ACTIONS(5641), - [anon_sym_null] = ACTIONS(5643), - [anon_sym_true] = ACTIONS(5645), - [anon_sym_false] = ACTIONS(5645), - [aux_sym__val_number_decimal_token1] = ACTIONS(5647), - [aux_sym__val_number_decimal_token2] = ACTIONS(5649), - [anon_sym_DOT2] = ACTIONS(5651), - [aux_sym__val_number_decimal_token3] = ACTIONS(5653), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5655), - [aux_sym__val_number_token5] = ACTIONS(5655), - [aux_sym__val_number_token6] = ACTIONS(5655), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5657), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2355] = { + [sym_comment] = STATE(2355), + [anon_sym_export] = ACTIONS(6144), + [anon_sym_alias] = ACTIONS(6144), + [anon_sym_let] = ACTIONS(6144), + [anon_sym_let_DASHenv] = ACTIONS(6144), + [anon_sym_mut] = ACTIONS(6144), + [anon_sym_const] = ACTIONS(6144), + [anon_sym_SEMI] = ACTIONS(6144), + [sym_cmd_identifier] = ACTIONS(6144), + [anon_sym_LF] = ACTIONS(6146), + [anon_sym_def] = ACTIONS(6144), + [anon_sym_export_DASHenv] = ACTIONS(6144), + [anon_sym_extern] = ACTIONS(6144), + [anon_sym_module] = ACTIONS(6144), + [anon_sym_use] = ACTIONS(6144), + [anon_sym_LBRACK] = ACTIONS(6144), + [anon_sym_LPAREN] = ACTIONS(6144), + [anon_sym_RPAREN] = ACTIONS(6144), + [anon_sym_DOLLAR] = ACTIONS(6144), + [anon_sym_error] = ACTIONS(6144), + [anon_sym_DASH] = ACTIONS(6144), + [anon_sym_break] = ACTIONS(6144), + [anon_sym_continue] = ACTIONS(6144), + [anon_sym_for] = ACTIONS(6144), + [anon_sym_loop] = ACTIONS(6144), + [anon_sym_while] = ACTIONS(6144), + [anon_sym_do] = ACTIONS(6144), + [anon_sym_if] = ACTIONS(6144), + [anon_sym_match] = ACTIONS(6144), + [anon_sym_LBRACE] = ACTIONS(6144), + [anon_sym_RBRACE] = ACTIONS(6144), + [anon_sym_DOT_DOT] = ACTIONS(6144), + [anon_sym_try] = ACTIONS(6144), + [anon_sym_return] = ACTIONS(6144), + [anon_sym_source] = ACTIONS(6144), + [anon_sym_source_DASHenv] = ACTIONS(6144), + [anon_sym_register] = ACTIONS(6144), + [anon_sym_hide] = ACTIONS(6144), + [anon_sym_hide_DASHenv] = ACTIONS(6144), + [anon_sym_overlay] = ACTIONS(6144), + [anon_sym_where] = ACTIONS(6144), + [anon_sym_not] = ACTIONS(6144), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6144), + [anon_sym_DOT_DOT_LT] = ACTIONS(6144), + [anon_sym_null] = ACTIONS(6144), + [anon_sym_true] = ACTIONS(6144), + [anon_sym_false] = ACTIONS(6144), + [aux_sym__val_number_decimal_token1] = ACTIONS(6144), + [aux_sym__val_number_decimal_token2] = ACTIONS(6144), + [anon_sym_DOT2] = ACTIONS(6144), + [aux_sym__val_number_decimal_token3] = ACTIONS(6144), + [aux_sym__val_number_token1] = ACTIONS(6144), + [aux_sym__val_number_token2] = ACTIONS(6144), + [aux_sym__val_number_token3] = ACTIONS(6144), + [aux_sym__val_number_token4] = ACTIONS(6144), + [aux_sym__val_number_token5] = ACTIONS(6144), + [aux_sym__val_number_token6] = ACTIONS(6144), + [anon_sym_0b] = ACTIONS(6144), + [anon_sym_0o] = ACTIONS(6144), + [anon_sym_0x] = ACTIONS(6144), + [sym_val_date] = ACTIONS(6144), + [anon_sym_DQUOTE] = ACTIONS(6144), + [sym__str_single_quotes] = ACTIONS(6144), + [sym__str_back_ticks] = ACTIONS(6144), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6144), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6144), + [anon_sym_CARET] = ACTIONS(6144), + [anon_sym_POUND] = ACTIONS(113), }, - [2077] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5568), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5238), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4170), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(4951), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2077), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5637), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5641), - [anon_sym_DOT_DOT_LT] = ACTIONS(5641), - [anon_sym_null] = ACTIONS(5643), - [anon_sym_true] = ACTIONS(5645), - [anon_sym_false] = ACTIONS(5645), - [aux_sym__val_number_decimal_token1] = ACTIONS(5647), - [aux_sym__val_number_decimal_token2] = ACTIONS(5649), - [anon_sym_DOT2] = ACTIONS(5651), - [aux_sym__val_number_decimal_token3] = ACTIONS(5653), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5655), - [aux_sym__val_number_token5] = ACTIONS(5655), - [aux_sym__val_number_token6] = ACTIONS(5655), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5657), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2356] = { + [sym_comment] = STATE(2356), + [anon_sym_export] = ACTIONS(6148), + [anon_sym_alias] = ACTIONS(6148), + [anon_sym_let] = ACTIONS(6148), + [anon_sym_let_DASHenv] = ACTIONS(6148), + [anon_sym_mut] = ACTIONS(6148), + [anon_sym_const] = ACTIONS(6148), + [anon_sym_SEMI] = ACTIONS(6148), + [sym_cmd_identifier] = ACTIONS(6148), + [anon_sym_LF] = ACTIONS(6150), + [anon_sym_def] = ACTIONS(6148), + [anon_sym_export_DASHenv] = ACTIONS(6148), + [anon_sym_extern] = ACTIONS(6148), + [anon_sym_module] = ACTIONS(6148), + [anon_sym_use] = ACTIONS(6148), + [anon_sym_LBRACK] = ACTIONS(6148), + [anon_sym_LPAREN] = ACTIONS(6148), + [anon_sym_RPAREN] = ACTIONS(6148), + [anon_sym_DOLLAR] = ACTIONS(6148), + [anon_sym_error] = ACTIONS(6148), + [anon_sym_DASH] = ACTIONS(6148), + [anon_sym_break] = ACTIONS(6148), + [anon_sym_continue] = ACTIONS(6148), + [anon_sym_for] = ACTIONS(6148), + [anon_sym_loop] = ACTIONS(6148), + [anon_sym_while] = ACTIONS(6148), + [anon_sym_do] = ACTIONS(6148), + [anon_sym_if] = ACTIONS(6148), + [anon_sym_match] = ACTIONS(6148), + [anon_sym_LBRACE] = ACTIONS(6148), + [anon_sym_RBRACE] = ACTIONS(6148), + [anon_sym_DOT_DOT] = ACTIONS(6148), + [anon_sym_try] = ACTIONS(6148), + [anon_sym_return] = ACTIONS(6148), + [anon_sym_source] = ACTIONS(6148), + [anon_sym_source_DASHenv] = ACTIONS(6148), + [anon_sym_register] = ACTIONS(6148), + [anon_sym_hide] = ACTIONS(6148), + [anon_sym_hide_DASHenv] = ACTIONS(6148), + [anon_sym_overlay] = ACTIONS(6148), + [anon_sym_where] = ACTIONS(6148), + [anon_sym_not] = ACTIONS(6148), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6148), + [anon_sym_DOT_DOT_LT] = ACTIONS(6148), + [anon_sym_null] = ACTIONS(6148), + [anon_sym_true] = ACTIONS(6148), + [anon_sym_false] = ACTIONS(6148), + [aux_sym__val_number_decimal_token1] = ACTIONS(6148), + [aux_sym__val_number_decimal_token2] = ACTIONS(6148), + [anon_sym_DOT2] = ACTIONS(6148), + [aux_sym__val_number_decimal_token3] = ACTIONS(6148), + [aux_sym__val_number_token1] = ACTIONS(6148), + [aux_sym__val_number_token2] = ACTIONS(6148), + [aux_sym__val_number_token3] = ACTIONS(6148), + [aux_sym__val_number_token4] = ACTIONS(6148), + [aux_sym__val_number_token5] = ACTIONS(6148), + [aux_sym__val_number_token6] = ACTIONS(6148), + [anon_sym_0b] = ACTIONS(6148), + [anon_sym_0o] = ACTIONS(6148), + [anon_sym_0x] = ACTIONS(6148), + [sym_val_date] = ACTIONS(6148), + [anon_sym_DQUOTE] = ACTIONS(6148), + [sym__str_single_quotes] = ACTIONS(6148), + [sym__str_back_ticks] = ACTIONS(6148), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6148), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6148), + [anon_sym_CARET] = ACTIONS(6148), + [anon_sym_POUND] = ACTIONS(113), }, - [2078] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5574), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5238), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4170), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5052), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2078), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5637), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5641), - [anon_sym_DOT_DOT_LT] = ACTIONS(5641), - [anon_sym_null] = ACTIONS(5643), - [anon_sym_true] = ACTIONS(5645), - [anon_sym_false] = ACTIONS(5645), - [aux_sym__val_number_decimal_token1] = ACTIONS(5647), - [aux_sym__val_number_decimal_token2] = ACTIONS(5649), - [anon_sym_DOT2] = ACTIONS(5651), - [aux_sym__val_number_decimal_token3] = ACTIONS(5653), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5655), - [aux_sym__val_number_token5] = ACTIONS(5655), - [aux_sym__val_number_token6] = ACTIONS(5655), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5657), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2357] = { + [sym_comment] = STATE(2357), + [anon_sym_export] = ACTIONS(6152), + [anon_sym_alias] = ACTIONS(6152), + [anon_sym_let] = ACTIONS(6152), + [anon_sym_let_DASHenv] = ACTIONS(6152), + [anon_sym_mut] = ACTIONS(6152), + [anon_sym_const] = ACTIONS(6152), + [anon_sym_SEMI] = ACTIONS(6152), + [sym_cmd_identifier] = ACTIONS(6152), + [anon_sym_LF] = ACTIONS(6154), + [anon_sym_def] = ACTIONS(6152), + [anon_sym_export_DASHenv] = ACTIONS(6152), + [anon_sym_extern] = ACTIONS(6152), + [anon_sym_module] = ACTIONS(6152), + [anon_sym_use] = ACTIONS(6152), + [anon_sym_LBRACK] = ACTIONS(6152), + [anon_sym_LPAREN] = ACTIONS(6152), + [anon_sym_RPAREN] = ACTIONS(6152), + [anon_sym_DOLLAR] = ACTIONS(6152), + [anon_sym_error] = ACTIONS(6152), + [anon_sym_DASH] = ACTIONS(6152), + [anon_sym_break] = ACTIONS(6152), + [anon_sym_continue] = ACTIONS(6152), + [anon_sym_for] = ACTIONS(6152), + [anon_sym_loop] = ACTIONS(6152), + [anon_sym_while] = ACTIONS(6152), + [anon_sym_do] = ACTIONS(6152), + [anon_sym_if] = ACTIONS(6152), + [anon_sym_match] = ACTIONS(6152), + [anon_sym_LBRACE] = ACTIONS(6152), + [anon_sym_RBRACE] = ACTIONS(6152), + [anon_sym_DOT_DOT] = ACTIONS(6152), + [anon_sym_try] = ACTIONS(6152), + [anon_sym_return] = ACTIONS(6152), + [anon_sym_source] = ACTIONS(6152), + [anon_sym_source_DASHenv] = ACTIONS(6152), + [anon_sym_register] = ACTIONS(6152), + [anon_sym_hide] = ACTIONS(6152), + [anon_sym_hide_DASHenv] = ACTIONS(6152), + [anon_sym_overlay] = ACTIONS(6152), + [anon_sym_where] = ACTIONS(6152), + [anon_sym_not] = ACTIONS(6152), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6152), + [anon_sym_DOT_DOT_LT] = ACTIONS(6152), + [anon_sym_null] = ACTIONS(6152), + [anon_sym_true] = ACTIONS(6152), + [anon_sym_false] = ACTIONS(6152), + [aux_sym__val_number_decimal_token1] = ACTIONS(6152), + [aux_sym__val_number_decimal_token2] = ACTIONS(6152), + [anon_sym_DOT2] = ACTIONS(6152), + [aux_sym__val_number_decimal_token3] = ACTIONS(6152), + [aux_sym__val_number_token1] = ACTIONS(6152), + [aux_sym__val_number_token2] = ACTIONS(6152), + [aux_sym__val_number_token3] = ACTIONS(6152), + [aux_sym__val_number_token4] = ACTIONS(6152), + [aux_sym__val_number_token5] = ACTIONS(6152), + [aux_sym__val_number_token6] = ACTIONS(6152), + [anon_sym_0b] = ACTIONS(6152), + [anon_sym_0o] = ACTIONS(6152), + [anon_sym_0x] = ACTIONS(6152), + [sym_val_date] = ACTIONS(6152), + [anon_sym_DQUOTE] = ACTIONS(6152), + [sym__str_single_quotes] = ACTIONS(6152), + [sym__str_back_ticks] = ACTIONS(6152), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6152), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6152), + [anon_sym_CARET] = ACTIONS(6152), + [anon_sym_POUND] = ACTIONS(113), }, - [2079] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5579), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5238), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4170), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5054), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2079), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5637), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5641), - [anon_sym_DOT_DOT_LT] = ACTIONS(5641), - [anon_sym_null] = ACTIONS(5643), - [anon_sym_true] = ACTIONS(5645), - [anon_sym_false] = ACTIONS(5645), - [aux_sym__val_number_decimal_token1] = ACTIONS(5647), - [aux_sym__val_number_decimal_token2] = ACTIONS(5649), - [anon_sym_DOT2] = ACTIONS(5651), - [aux_sym__val_number_decimal_token3] = ACTIONS(5653), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5655), - [aux_sym__val_number_token5] = ACTIONS(5655), - [aux_sym__val_number_token6] = ACTIONS(5655), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5657), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2358] = { + [sym_comment] = STATE(2358), + [anon_sym_export] = ACTIONS(6156), + [anon_sym_alias] = ACTIONS(6156), + [anon_sym_let] = ACTIONS(6156), + [anon_sym_let_DASHenv] = ACTIONS(6156), + [anon_sym_mut] = ACTIONS(6156), + [anon_sym_const] = ACTIONS(6156), + [anon_sym_SEMI] = ACTIONS(6156), + [sym_cmd_identifier] = ACTIONS(6156), + [anon_sym_LF] = ACTIONS(6158), + [anon_sym_def] = ACTIONS(6156), + [anon_sym_export_DASHenv] = ACTIONS(6156), + [anon_sym_extern] = ACTIONS(6156), + [anon_sym_module] = ACTIONS(6156), + [anon_sym_use] = ACTIONS(6156), + [anon_sym_LBRACK] = ACTIONS(6156), + [anon_sym_LPAREN] = ACTIONS(6156), + [anon_sym_RPAREN] = ACTIONS(6156), + [anon_sym_DOLLAR] = ACTIONS(6156), + [anon_sym_error] = ACTIONS(6156), + [anon_sym_DASH] = ACTIONS(6156), + [anon_sym_break] = ACTIONS(6156), + [anon_sym_continue] = ACTIONS(6156), + [anon_sym_for] = ACTIONS(6156), + [anon_sym_loop] = ACTIONS(6156), + [anon_sym_while] = ACTIONS(6156), + [anon_sym_do] = ACTIONS(6156), + [anon_sym_if] = ACTIONS(6156), + [anon_sym_match] = ACTIONS(6156), + [anon_sym_LBRACE] = ACTIONS(6156), + [anon_sym_RBRACE] = ACTIONS(6156), + [anon_sym_DOT_DOT] = ACTIONS(6156), + [anon_sym_try] = ACTIONS(6156), + [anon_sym_return] = ACTIONS(6156), + [anon_sym_source] = ACTIONS(6156), + [anon_sym_source_DASHenv] = ACTIONS(6156), + [anon_sym_register] = ACTIONS(6156), + [anon_sym_hide] = ACTIONS(6156), + [anon_sym_hide_DASHenv] = ACTIONS(6156), + [anon_sym_overlay] = ACTIONS(6156), + [anon_sym_where] = ACTIONS(6156), + [anon_sym_not] = ACTIONS(6156), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6156), + [anon_sym_DOT_DOT_LT] = ACTIONS(6156), + [anon_sym_null] = ACTIONS(6156), + [anon_sym_true] = ACTIONS(6156), + [anon_sym_false] = ACTIONS(6156), + [aux_sym__val_number_decimal_token1] = ACTIONS(6156), + [aux_sym__val_number_decimal_token2] = ACTIONS(6156), + [anon_sym_DOT2] = ACTIONS(6156), + [aux_sym__val_number_decimal_token3] = ACTIONS(6156), + [aux_sym__val_number_token1] = ACTIONS(6156), + [aux_sym__val_number_token2] = ACTIONS(6156), + [aux_sym__val_number_token3] = ACTIONS(6156), + [aux_sym__val_number_token4] = ACTIONS(6156), + [aux_sym__val_number_token5] = ACTIONS(6156), + [aux_sym__val_number_token6] = ACTIONS(6156), + [anon_sym_0b] = ACTIONS(6156), + [anon_sym_0o] = ACTIONS(6156), + [anon_sym_0x] = ACTIONS(6156), + [sym_val_date] = ACTIONS(6156), + [anon_sym_DQUOTE] = ACTIONS(6156), + [sym__str_single_quotes] = ACTIONS(6156), + [sym__str_back_ticks] = ACTIONS(6156), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6156), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6156), + [anon_sym_CARET] = ACTIONS(6156), + [anon_sym_POUND] = ACTIONS(113), }, - [2080] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5582), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5238), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4170), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5067), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2080), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5637), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5641), - [anon_sym_DOT_DOT_LT] = ACTIONS(5641), - [anon_sym_null] = ACTIONS(5643), - [anon_sym_true] = ACTIONS(5645), - [anon_sym_false] = ACTIONS(5645), - [aux_sym__val_number_decimal_token1] = ACTIONS(5647), - [aux_sym__val_number_decimal_token2] = ACTIONS(5649), - [anon_sym_DOT2] = ACTIONS(5651), - [aux_sym__val_number_decimal_token3] = ACTIONS(5653), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5655), - [aux_sym__val_number_token5] = ACTIONS(5655), - [aux_sym__val_number_token6] = ACTIONS(5655), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5657), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2359] = { + [sym_comment] = STATE(2359), + [anon_sym_export] = ACTIONS(6160), + [anon_sym_alias] = ACTIONS(6160), + [anon_sym_let] = ACTIONS(6160), + [anon_sym_let_DASHenv] = ACTIONS(6160), + [anon_sym_mut] = ACTIONS(6160), + [anon_sym_const] = ACTIONS(6160), + [anon_sym_SEMI] = ACTIONS(6160), + [sym_cmd_identifier] = ACTIONS(6160), + [anon_sym_LF] = ACTIONS(6162), + [anon_sym_def] = ACTIONS(6160), + [anon_sym_export_DASHenv] = ACTIONS(6160), + [anon_sym_extern] = ACTIONS(6160), + [anon_sym_module] = ACTIONS(6160), + [anon_sym_use] = ACTIONS(6160), + [anon_sym_LBRACK] = ACTIONS(6160), + [anon_sym_LPAREN] = ACTIONS(6160), + [anon_sym_RPAREN] = ACTIONS(6160), + [anon_sym_DOLLAR] = ACTIONS(6160), + [anon_sym_error] = ACTIONS(6160), + [anon_sym_DASH] = ACTIONS(6160), + [anon_sym_break] = ACTIONS(6160), + [anon_sym_continue] = ACTIONS(6160), + [anon_sym_for] = ACTIONS(6160), + [anon_sym_loop] = ACTIONS(6160), + [anon_sym_while] = ACTIONS(6160), + [anon_sym_do] = ACTIONS(6160), + [anon_sym_if] = ACTIONS(6160), + [anon_sym_match] = ACTIONS(6160), + [anon_sym_LBRACE] = ACTIONS(6160), + [anon_sym_RBRACE] = ACTIONS(6160), + [anon_sym_DOT_DOT] = ACTIONS(6160), + [anon_sym_try] = ACTIONS(6160), + [anon_sym_return] = ACTIONS(6160), + [anon_sym_source] = ACTIONS(6160), + [anon_sym_source_DASHenv] = ACTIONS(6160), + [anon_sym_register] = ACTIONS(6160), + [anon_sym_hide] = ACTIONS(6160), + [anon_sym_hide_DASHenv] = ACTIONS(6160), + [anon_sym_overlay] = ACTIONS(6160), + [anon_sym_where] = ACTIONS(6160), + [anon_sym_not] = ACTIONS(6160), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6160), + [anon_sym_DOT_DOT_LT] = ACTIONS(6160), + [anon_sym_null] = ACTIONS(6160), + [anon_sym_true] = ACTIONS(6160), + [anon_sym_false] = ACTIONS(6160), + [aux_sym__val_number_decimal_token1] = ACTIONS(6160), + [aux_sym__val_number_decimal_token2] = ACTIONS(6160), + [anon_sym_DOT2] = ACTIONS(6160), + [aux_sym__val_number_decimal_token3] = ACTIONS(6160), + [aux_sym__val_number_token1] = ACTIONS(6160), + [aux_sym__val_number_token2] = ACTIONS(6160), + [aux_sym__val_number_token3] = ACTIONS(6160), + [aux_sym__val_number_token4] = ACTIONS(6160), + [aux_sym__val_number_token5] = ACTIONS(6160), + [aux_sym__val_number_token6] = ACTIONS(6160), + [anon_sym_0b] = ACTIONS(6160), + [anon_sym_0o] = ACTIONS(6160), + [anon_sym_0x] = ACTIONS(6160), + [sym_val_date] = ACTIONS(6160), + [anon_sym_DQUOTE] = ACTIONS(6160), + [sym__str_single_quotes] = ACTIONS(6160), + [sym__str_back_ticks] = ACTIONS(6160), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6160), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6160), + [anon_sym_CARET] = ACTIONS(6160), + [anon_sym_POUND] = ACTIONS(113), }, - [2081] = { - [sym__expression] = STATE(7365), - [sym_expr_unary] = STATE(5715), - [sym__expr_unary_minus] = STATE(5723), - [sym_expr_binary] = STATE(5715), - [sym__expr_binary_expression] = STATE(6788), - [sym_expr_parenthesized] = STATE(5176), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(5715), - [sym_val_nothing] = STATE(5705), - [sym_val_bool] = STATE(5705), - [sym_val_variable] = STATE(5170), - [sym__var] = STATE(4674), - [sym_val_number] = STATE(5705), - [sym__val_number_decimal] = STATE(4718), - [sym__val_number] = STATE(5875), - [sym_val_duration] = STATE(5705), - [sym_val_filesize] = STATE(5705), - [sym_val_binary] = STATE(5705), - [sym_val_string] = STATE(5705), - [sym__str_double_quotes] = STATE(5788), - [sym_val_interpolated] = STATE(5705), - [sym__inter_single_quotes] = STATE(5899), - [sym__inter_double_quotes] = STATE(5903), - [sym_val_list] = STATE(5705), - [sym_val_record] = STATE(5705), - [sym_val_table] = STATE(5705), - [sym_val_closure] = STATE(5705), - [sym__flag] = STATE(2306), - [sym_short_flag] = STATE(5044), - [sym_long_flag] = STATE(5044), - [sym_long_flag_equals_value] = STATE(5143), - [sym_comment] = STATE(2081), - [anon_sym_SEMI] = ACTIONS(5621), - [anon_sym_LF] = ACTIONS(5623), - [anon_sym_LBRACK] = ACTIONS(5371), - [anon_sym_LPAREN] = ACTIONS(5373), - [anon_sym_RPAREN] = ACTIONS(5621), - [anon_sym_PIPE] = ACTIONS(5621), - [anon_sym_DOLLAR] = ACTIONS(3317), - [anon_sym_DASH_DASH] = ACTIONS(5375), - [anon_sym_DASH] = ACTIONS(5377), - [anon_sym_LBRACE] = ACTIONS(5379), - [anon_sym_RBRACE] = ACTIONS(5621), - [anon_sym_DOT_DOT] = ACTIONS(5381), - [anon_sym_not] = ACTIONS(5383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5385), - [anon_sym_DOT_DOT_LT] = ACTIONS(5385), - [anon_sym_null] = ACTIONS(5387), - [anon_sym_true] = ACTIONS(5389), - [anon_sym_false] = ACTIONS(5389), - [aux_sym__val_number_decimal_token1] = ACTIONS(5391), - [aux_sym__val_number_decimal_token2] = ACTIONS(5391), - [anon_sym_DOT2] = ACTIONS(5393), - [aux_sym__val_number_decimal_token3] = ACTIONS(5395), - [aux_sym__val_number_token1] = ACTIONS(5397), - [aux_sym__val_number_token2] = ACTIONS(5397), - [aux_sym__val_number_token3] = ACTIONS(5397), - [aux_sym__val_number_token4] = ACTIONS(5397), - [aux_sym__val_number_token5] = ACTIONS(5397), - [aux_sym__val_number_token6] = ACTIONS(5397), - [anon_sym_0b] = ACTIONS(3345), - [anon_sym_0o] = ACTIONS(3347), - [anon_sym_0x] = ACTIONS(3347), - [sym_val_date] = ACTIONS(5399), - [anon_sym_DQUOTE] = ACTIONS(5401), - [sym__str_single_quotes] = ACTIONS(5403), - [sym__str_back_ticks] = ACTIONS(5403), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5405), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5407), + [2360] = { + [sym_comment] = STATE(2360), + [ts_builtin_sym_end] = ACTIONS(1070), + [anon_sym_SEMI] = ACTIONS(1068), + [anon_sym_LF] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1068), + [anon_sym_LPAREN] = ACTIONS(1068), + [anon_sym_PIPE] = ACTIONS(1068), + [anon_sym_DOLLAR] = ACTIONS(1068), + [anon_sym_GT] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1068), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_in] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_DOT_DOT] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_STAR_STAR] = ACTIONS(1068), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_SLASH] = ACTIONS(1068), + [anon_sym_mod] = ACTIONS(1068), + [anon_sym_SLASH_SLASH] = ACTIONS(1068), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_bit_DASHshl] = ACTIONS(1068), + [anon_sym_bit_DASHshr] = ACTIONS(1068), + [anon_sym_EQ_EQ] = ACTIONS(1068), + [anon_sym_BANG_EQ] = ACTIONS(1068), + [anon_sym_LT2] = ACTIONS(1068), + [anon_sym_LT_EQ] = ACTIONS(1068), + [anon_sym_GT_EQ] = ACTIONS(1068), + [anon_sym_not_DASHin] = ACTIONS(1068), + [anon_sym_starts_DASHwith] = ACTIONS(1068), + [anon_sym_ends_DASHwith] = ACTIONS(1068), + [anon_sym_EQ_TILDE] = ACTIONS(1068), + [anon_sym_BANG_TILDE] = ACTIONS(1068), + [anon_sym_bit_DASHand] = ACTIONS(1068), + [anon_sym_bit_DASHxor] = ACTIONS(1068), + [anon_sym_bit_DASHor] = ACTIONS(1068), + [anon_sym_and] = ACTIONS(1068), + [anon_sym_xor] = ACTIONS(1068), + [anon_sym_or] = ACTIONS(1068), + [anon_sym_not] = ACTIONS(1068), + [anon_sym_DOT_DOT2] = ACTIONS(1068), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1068), + [anon_sym_DOT_DOT_LT] = ACTIONS(1068), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1070), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1070), + [anon_sym_null] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1068), + [anon_sym_false] = ACTIONS(1068), + [aux_sym__val_number_decimal_token1] = ACTIONS(1068), + [aux_sym__val_number_decimal_token2] = ACTIONS(1068), + [anon_sym_DOT2] = ACTIONS(1068), + [aux_sym__val_number_decimal_token3] = ACTIONS(1068), + [aux_sym__val_number_token1] = ACTIONS(1068), + [aux_sym__val_number_token2] = ACTIONS(1068), + [aux_sym__val_number_token3] = ACTIONS(1068), + [aux_sym__val_number_token4] = ACTIONS(1068), + [aux_sym__val_number_token5] = ACTIONS(1068), + [aux_sym__val_number_token6] = ACTIONS(1068), + [anon_sym_0b] = ACTIONS(1068), + [anon_sym_0o] = ACTIONS(1068), + [anon_sym_0x] = ACTIONS(1068), + [sym_val_date] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(1068), + [sym__str_single_quotes] = ACTIONS(1068), + [sym__str_back_ticks] = ACTIONS(1068), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1068), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1068), [anon_sym_POUND] = ACTIONS(113), }, - [2082] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5447), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5099), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4154), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5002), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2082), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5665), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5667), - [anon_sym_DOT_DOT_LT] = ACTIONS(5667), - [anon_sym_null] = ACTIONS(5669), - [anon_sym_true] = ACTIONS(5671), - [anon_sym_false] = ACTIONS(5671), - [aux_sym__val_number_decimal_token1] = ACTIONS(5673), - [aux_sym__val_number_decimal_token2] = ACTIONS(5675), - [anon_sym_DOT2] = ACTIONS(5677), - [aux_sym__val_number_decimal_token3] = ACTIONS(5679), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5681), - [aux_sym__val_number_token5] = ACTIONS(5681), - [aux_sym__val_number_token6] = ACTIONS(5681), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5683), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2361] = { + [sym_comment] = STATE(2361), + [anon_sym_export] = ACTIONS(6164), + [anon_sym_alias] = ACTIONS(6164), + [anon_sym_let] = ACTIONS(6164), + [anon_sym_let_DASHenv] = ACTIONS(6164), + [anon_sym_mut] = ACTIONS(6164), + [anon_sym_const] = ACTIONS(6164), + [anon_sym_SEMI] = ACTIONS(6164), + [sym_cmd_identifier] = ACTIONS(6164), + [anon_sym_LF] = ACTIONS(6166), + [anon_sym_def] = ACTIONS(6164), + [anon_sym_export_DASHenv] = ACTIONS(6164), + [anon_sym_extern] = ACTIONS(6164), + [anon_sym_module] = ACTIONS(6164), + [anon_sym_use] = ACTIONS(6164), + [anon_sym_LBRACK] = ACTIONS(6164), + [anon_sym_LPAREN] = ACTIONS(6164), + [anon_sym_RPAREN] = ACTIONS(6164), + [anon_sym_DOLLAR] = ACTIONS(6164), + [anon_sym_error] = ACTIONS(6164), + [anon_sym_DASH] = ACTIONS(6164), + [anon_sym_break] = ACTIONS(6164), + [anon_sym_continue] = ACTIONS(6164), + [anon_sym_for] = ACTIONS(6164), + [anon_sym_loop] = ACTIONS(6164), + [anon_sym_while] = ACTIONS(6164), + [anon_sym_do] = ACTIONS(6164), + [anon_sym_if] = ACTIONS(6164), + [anon_sym_match] = ACTIONS(6164), + [anon_sym_LBRACE] = ACTIONS(6164), + [anon_sym_RBRACE] = ACTIONS(6164), + [anon_sym_DOT_DOT] = ACTIONS(6164), + [anon_sym_try] = ACTIONS(6164), + [anon_sym_return] = ACTIONS(6164), + [anon_sym_source] = ACTIONS(6164), + [anon_sym_source_DASHenv] = ACTIONS(6164), + [anon_sym_register] = ACTIONS(6164), + [anon_sym_hide] = ACTIONS(6164), + [anon_sym_hide_DASHenv] = ACTIONS(6164), + [anon_sym_overlay] = ACTIONS(6164), + [anon_sym_where] = ACTIONS(6164), + [anon_sym_not] = ACTIONS(6164), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6164), + [anon_sym_DOT_DOT_LT] = ACTIONS(6164), + [anon_sym_null] = ACTIONS(6164), + [anon_sym_true] = ACTIONS(6164), + [anon_sym_false] = ACTIONS(6164), + [aux_sym__val_number_decimal_token1] = ACTIONS(6164), + [aux_sym__val_number_decimal_token2] = ACTIONS(6164), + [anon_sym_DOT2] = ACTIONS(6164), + [aux_sym__val_number_decimal_token3] = ACTIONS(6164), + [aux_sym__val_number_token1] = ACTIONS(6164), + [aux_sym__val_number_token2] = ACTIONS(6164), + [aux_sym__val_number_token3] = ACTIONS(6164), + [aux_sym__val_number_token4] = ACTIONS(6164), + [aux_sym__val_number_token5] = ACTIONS(6164), + [aux_sym__val_number_token6] = ACTIONS(6164), + [anon_sym_0b] = ACTIONS(6164), + [anon_sym_0o] = ACTIONS(6164), + [anon_sym_0x] = ACTIONS(6164), + [sym_val_date] = ACTIONS(6164), + [anon_sym_DQUOTE] = ACTIONS(6164), + [sym__str_single_quotes] = ACTIONS(6164), + [sym__str_back_ticks] = ACTIONS(6164), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6164), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6164), + [anon_sym_CARET] = ACTIONS(6164), + [anon_sym_POUND] = ACTIONS(113), }, - [2083] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5448), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5099), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4154), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5007), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2083), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5665), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5667), - [anon_sym_DOT_DOT_LT] = ACTIONS(5667), - [anon_sym_null] = ACTIONS(5669), - [anon_sym_true] = ACTIONS(5671), - [anon_sym_false] = ACTIONS(5671), - [aux_sym__val_number_decimal_token1] = ACTIONS(5673), - [aux_sym__val_number_decimal_token2] = ACTIONS(5675), - [anon_sym_DOT2] = ACTIONS(5677), - [aux_sym__val_number_decimal_token3] = ACTIONS(5679), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5681), - [aux_sym__val_number_token5] = ACTIONS(5681), - [aux_sym__val_number_token6] = ACTIONS(5681), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5683), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2362] = { + [sym_cell_path] = STATE(2713), + [sym_path] = STATE(2311), + [sym_comment] = STATE(2362), + [ts_builtin_sym_end] = ACTIONS(1099), + [anon_sym_SEMI] = ACTIONS(1097), + [anon_sym_LF] = ACTIONS(1099), + [anon_sym_LBRACK] = ACTIONS(1097), + [anon_sym_LPAREN] = ACTIONS(1097), + [anon_sym_PIPE] = ACTIONS(1097), + [anon_sym_DOLLAR] = ACTIONS(1097), + [anon_sym_GT] = ACTIONS(1097), + [anon_sym_DASH_DASH] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_DOT_DOT] = ACTIONS(1097), + [anon_sym_STAR] = ACTIONS(1097), + [anon_sym_STAR_STAR] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1097), + [anon_sym_SLASH] = ACTIONS(1097), + [anon_sym_mod] = ACTIONS(1097), + [anon_sym_SLASH_SLASH] = ACTIONS(1097), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_bit_DASHshl] = ACTIONS(1097), + [anon_sym_bit_DASHshr] = ACTIONS(1097), + [anon_sym_EQ_EQ] = ACTIONS(1097), + [anon_sym_BANG_EQ] = ACTIONS(1097), + [anon_sym_LT2] = ACTIONS(1097), + [anon_sym_LT_EQ] = ACTIONS(1097), + [anon_sym_GT_EQ] = ACTIONS(1097), + [anon_sym_not_DASHin] = ACTIONS(1097), + [anon_sym_starts_DASHwith] = ACTIONS(1097), + [anon_sym_ends_DASHwith] = ACTIONS(1097), + [anon_sym_EQ_TILDE] = ACTIONS(1097), + [anon_sym_BANG_TILDE] = ACTIONS(1097), + [anon_sym_bit_DASHand] = ACTIONS(1097), + [anon_sym_bit_DASHxor] = ACTIONS(1097), + [anon_sym_bit_DASHor] = ACTIONS(1097), + [anon_sym_and] = ACTIONS(1097), + [anon_sym_xor] = ACTIONS(1097), + [anon_sym_or] = ACTIONS(1097), + [anon_sym_not] = ACTIONS(1097), + [anon_sym_DOT] = ACTIONS(5921), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1097), + [anon_sym_DOT_DOT_LT] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1097), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), + [aux_sym__val_number_decimal_token1] = ACTIONS(1097), + [aux_sym__val_number_decimal_token2] = ACTIONS(1097), + [anon_sym_DOT2] = ACTIONS(1097), + [aux_sym__val_number_decimal_token3] = ACTIONS(1097), + [aux_sym__val_number_token1] = ACTIONS(1097), + [aux_sym__val_number_token2] = ACTIONS(1097), + [aux_sym__val_number_token3] = ACTIONS(1097), + [aux_sym__val_number_token4] = ACTIONS(1097), + [aux_sym__val_number_token5] = ACTIONS(1097), + [aux_sym__val_number_token6] = ACTIONS(1097), + [anon_sym_0b] = ACTIONS(1097), + [anon_sym_0o] = ACTIONS(1097), + [anon_sym_0x] = ACTIONS(1097), + [sym_val_date] = ACTIONS(1097), + [anon_sym_DQUOTE] = ACTIONS(1097), + [sym__str_single_quotes] = ACTIONS(1097), + [sym__str_back_ticks] = ACTIONS(1097), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1097), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1097), + [anon_sym_POUND] = ACTIONS(113), }, - [2084] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5449), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5099), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4154), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5010), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2084), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5665), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5667), - [anon_sym_DOT_DOT_LT] = ACTIONS(5667), - [anon_sym_null] = ACTIONS(5669), - [anon_sym_true] = ACTIONS(5671), - [anon_sym_false] = ACTIONS(5671), - [aux_sym__val_number_decimal_token1] = ACTIONS(5673), - [aux_sym__val_number_decimal_token2] = ACTIONS(5675), - [anon_sym_DOT2] = ACTIONS(5677), - [aux_sym__val_number_decimal_token3] = ACTIONS(5679), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5681), - [aux_sym__val_number_token5] = ACTIONS(5681), - [aux_sym__val_number_token6] = ACTIONS(5681), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5683), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), - }, - [2085] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5450), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5099), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4154), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5011), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2085), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5665), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5667), - [anon_sym_DOT_DOT_LT] = ACTIONS(5667), - [anon_sym_null] = ACTIONS(5669), - [anon_sym_true] = ACTIONS(5671), - [anon_sym_false] = ACTIONS(5671), - [aux_sym__val_number_decimal_token1] = ACTIONS(5673), - [aux_sym__val_number_decimal_token2] = ACTIONS(5675), - [anon_sym_DOT2] = ACTIONS(5677), - [aux_sym__val_number_decimal_token3] = ACTIONS(5679), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5681), - [aux_sym__val_number_token5] = ACTIONS(5681), - [aux_sym__val_number_token6] = ACTIONS(5681), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5683), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), - }, - [2086] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5451), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5099), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4154), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5019), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2086), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5665), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5667), - [anon_sym_DOT_DOT_LT] = ACTIONS(5667), - [anon_sym_null] = ACTIONS(5669), - [anon_sym_true] = ACTIONS(5671), - [anon_sym_false] = ACTIONS(5671), - [aux_sym__val_number_decimal_token1] = ACTIONS(5673), - [aux_sym__val_number_decimal_token2] = ACTIONS(5675), - [anon_sym_DOT2] = ACTIONS(5677), - [aux_sym__val_number_decimal_token3] = ACTIONS(5679), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5681), - [aux_sym__val_number_token5] = ACTIONS(5681), - [aux_sym__val_number_token6] = ACTIONS(5681), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5683), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), - }, - [2087] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5452), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5099), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4154), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5020), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2087), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5665), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5667), - [anon_sym_DOT_DOT_LT] = ACTIONS(5667), - [anon_sym_null] = ACTIONS(5669), - [anon_sym_true] = ACTIONS(5671), - [anon_sym_false] = ACTIONS(5671), - [aux_sym__val_number_decimal_token1] = ACTIONS(5673), - [aux_sym__val_number_decimal_token2] = ACTIONS(5675), - [anon_sym_DOT2] = ACTIONS(5677), - [aux_sym__val_number_decimal_token3] = ACTIONS(5679), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5681), - [aux_sym__val_number_token5] = ACTIONS(5681), - [aux_sym__val_number_token6] = ACTIONS(5681), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5683), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), - }, - [2088] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5453), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5099), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4154), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5026), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2088), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5665), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5667), - [anon_sym_DOT_DOT_LT] = ACTIONS(5667), - [anon_sym_null] = ACTIONS(5669), - [anon_sym_true] = ACTIONS(5671), - [anon_sym_false] = ACTIONS(5671), - [aux_sym__val_number_decimal_token1] = ACTIONS(5673), - [aux_sym__val_number_decimal_token2] = ACTIONS(5675), - [anon_sym_DOT2] = ACTIONS(5677), - [aux_sym__val_number_decimal_token3] = ACTIONS(5679), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5681), - [aux_sym__val_number_token5] = ACTIONS(5681), - [aux_sym__val_number_token6] = ACTIONS(5681), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5683), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), - }, - [2089] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5454), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5099), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4154), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5033), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2089), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5665), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5667), - [anon_sym_DOT_DOT_LT] = ACTIONS(5667), - [anon_sym_null] = ACTIONS(5669), - [anon_sym_true] = ACTIONS(5671), - [anon_sym_false] = ACTIONS(5671), - [aux_sym__val_number_decimal_token1] = ACTIONS(5673), - [aux_sym__val_number_decimal_token2] = ACTIONS(5675), - [anon_sym_DOT2] = ACTIONS(5677), - [aux_sym__val_number_decimal_token3] = ACTIONS(5679), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5681), - [aux_sym__val_number_token5] = ACTIONS(5681), - [aux_sym__val_number_token6] = ACTIONS(5681), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5683), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2363] = { + [sym_comment] = STATE(2363), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_alias] = ACTIONS(1061), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_let_DASHenv] = ACTIONS(1061), + [anon_sym_mut] = ACTIONS(1061), + [anon_sym_const] = ACTIONS(1061), + [anon_sym_SEMI] = ACTIONS(1061), + [sym_cmd_identifier] = ACTIONS(1061), + [anon_sym_LF] = ACTIONS(1063), + [anon_sym_def] = ACTIONS(1061), + [anon_sym_export_DASHenv] = ACTIONS(1061), + [anon_sym_extern] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_use] = ACTIONS(1061), + [anon_sym_LBRACK] = ACTIONS(1061), + [anon_sym_LPAREN] = ACTIONS(1061), + [anon_sym_RPAREN] = ACTIONS(1061), + [anon_sym_DOLLAR] = ACTIONS(1061), + [anon_sym_error] = ACTIONS(1061), + [anon_sym_DASH] = ACTIONS(1061), + [anon_sym_break] = ACTIONS(1061), + [anon_sym_continue] = ACTIONS(1061), + [anon_sym_for] = ACTIONS(1061), + [anon_sym_loop] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(1061), + [anon_sym_do] = ACTIONS(1061), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_match] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(1061), + [anon_sym_RBRACE] = ACTIONS(1061), + [anon_sym_DOT_DOT] = ACTIONS(1061), + [anon_sym_try] = ACTIONS(1061), + [anon_sym_return] = ACTIONS(1061), + [anon_sym_source] = ACTIONS(1061), + [anon_sym_source_DASHenv] = ACTIONS(1061), + [anon_sym_register] = ACTIONS(1061), + [anon_sym_hide] = ACTIONS(1061), + [anon_sym_hide_DASHenv] = ACTIONS(1061), + [anon_sym_overlay] = ACTIONS(1061), + [anon_sym_where] = ACTIONS(1061), + [anon_sym_not] = ACTIONS(1061), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1061), + [anon_sym_DOT_DOT_LT] = ACTIONS(1061), + [anon_sym_null] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1061), + [anon_sym_false] = ACTIONS(1061), + [aux_sym__val_number_decimal_token1] = ACTIONS(1061), + [aux_sym__val_number_decimal_token2] = ACTIONS(1061), + [anon_sym_DOT2] = ACTIONS(1061), + [aux_sym__val_number_decimal_token3] = ACTIONS(1061), + [aux_sym__val_number_token1] = ACTIONS(1061), + [aux_sym__val_number_token2] = ACTIONS(1061), + [aux_sym__val_number_token3] = ACTIONS(1061), + [aux_sym__val_number_token4] = ACTIONS(1061), + [aux_sym__val_number_token5] = ACTIONS(1061), + [aux_sym__val_number_token6] = ACTIONS(1061), + [anon_sym_0b] = ACTIONS(1061), + [anon_sym_0o] = ACTIONS(1061), + [anon_sym_0x] = ACTIONS(1061), + [sym_val_date] = ACTIONS(1061), + [anon_sym_DQUOTE] = ACTIONS(1061), + [sym__str_single_quotes] = ACTIONS(1061), + [sym__str_back_ticks] = ACTIONS(1061), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1061), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1061), + [anon_sym_CARET] = ACTIONS(1061), + [anon_sym_POUND] = ACTIONS(113), }, - [2090] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5455), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5099), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4154), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5036), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2090), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5665), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5667), - [anon_sym_DOT_DOT_LT] = ACTIONS(5667), - [anon_sym_null] = ACTIONS(5669), - [anon_sym_true] = ACTIONS(5671), - [anon_sym_false] = ACTIONS(5671), - [aux_sym__val_number_decimal_token1] = ACTIONS(5673), - [aux_sym__val_number_decimal_token2] = ACTIONS(5675), - [anon_sym_DOT2] = ACTIONS(5677), - [aux_sym__val_number_decimal_token3] = ACTIONS(5679), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5681), - [aux_sym__val_number_token5] = ACTIONS(5681), - [aux_sym__val_number_token6] = ACTIONS(5681), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5683), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2364] = { + [sym_comment] = STATE(2364), + [ts_builtin_sym_end] = ACTIONS(5782), + [anon_sym_export] = ACTIONS(5780), + [anon_sym_alias] = ACTIONS(5780), + [anon_sym_let] = ACTIONS(5780), + [anon_sym_let_DASHenv] = ACTIONS(5780), + [anon_sym_mut] = ACTIONS(5780), + [anon_sym_const] = ACTIONS(5780), + [anon_sym_SEMI] = ACTIONS(5780), + [sym_cmd_identifier] = ACTIONS(5780), + [anon_sym_LF] = ACTIONS(5782), + [anon_sym_def] = ACTIONS(5780), + [anon_sym_export_DASHenv] = ACTIONS(5780), + [anon_sym_extern] = ACTIONS(5780), + [anon_sym_module] = ACTIONS(5780), + [anon_sym_use] = ACTIONS(5780), + [anon_sym_LBRACK] = ACTIONS(5780), + [anon_sym_LPAREN] = ACTIONS(5780), + [anon_sym_DOLLAR] = ACTIONS(5780), + [anon_sym_error] = ACTIONS(5780), + [anon_sym_DASH] = ACTIONS(5780), + [anon_sym_break] = ACTIONS(5780), + [anon_sym_continue] = ACTIONS(5780), + [anon_sym_for] = ACTIONS(5780), + [anon_sym_loop] = ACTIONS(5780), + [anon_sym_while] = ACTIONS(5780), + [anon_sym_do] = ACTIONS(5780), + [anon_sym_if] = ACTIONS(5780), + [anon_sym_match] = ACTIONS(5780), + [anon_sym_LBRACE] = ACTIONS(5780), + [anon_sym_DOT_DOT] = ACTIONS(5780), + [anon_sym_try] = ACTIONS(5780), + [anon_sym_return] = ACTIONS(5780), + [anon_sym_source] = ACTIONS(5780), + [anon_sym_source_DASHenv] = ACTIONS(5780), + [anon_sym_register] = ACTIONS(5780), + [anon_sym_hide] = ACTIONS(5780), + [anon_sym_hide_DASHenv] = ACTIONS(5780), + [anon_sym_overlay] = ACTIONS(5780), + [anon_sym_STAR] = ACTIONS(5780), + [anon_sym_where] = ACTIONS(5780), + [anon_sym_not] = ACTIONS(5780), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5780), + [anon_sym_DOT_DOT_LT] = ACTIONS(5780), + [anon_sym_null] = ACTIONS(5780), + [anon_sym_true] = ACTIONS(5780), + [anon_sym_false] = ACTIONS(5780), + [aux_sym__val_number_decimal_token1] = ACTIONS(5780), + [aux_sym__val_number_decimal_token2] = ACTIONS(5780), + [anon_sym_DOT2] = ACTIONS(5780), + [aux_sym__val_number_decimal_token3] = ACTIONS(5780), + [aux_sym__val_number_token1] = ACTIONS(5780), + [aux_sym__val_number_token2] = ACTIONS(5780), + [aux_sym__val_number_token3] = ACTIONS(5780), + [aux_sym__val_number_token4] = ACTIONS(5780), + [aux_sym__val_number_token5] = ACTIONS(5780), + [aux_sym__val_number_token6] = ACTIONS(5780), + [anon_sym_0b] = ACTIONS(5780), + [anon_sym_0o] = ACTIONS(5780), + [anon_sym_0x] = ACTIONS(5780), + [sym_val_date] = ACTIONS(5780), + [anon_sym_DQUOTE] = ACTIONS(5780), + [sym__str_single_quotes] = ACTIONS(5780), + [sym__str_back_ticks] = ACTIONS(5780), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5780), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5780), + [anon_sym_CARET] = ACTIONS(5780), + [anon_sym_POUND] = ACTIONS(113), }, - [2091] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5456), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5099), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4154), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(4951), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2091), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5665), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5667), - [anon_sym_DOT_DOT_LT] = ACTIONS(5667), - [anon_sym_null] = ACTIONS(5669), - [anon_sym_true] = ACTIONS(5671), - [anon_sym_false] = ACTIONS(5671), - [aux_sym__val_number_decimal_token1] = ACTIONS(5673), - [aux_sym__val_number_decimal_token2] = ACTIONS(5675), - [anon_sym_DOT2] = ACTIONS(5677), - [aux_sym__val_number_decimal_token3] = ACTIONS(5679), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5681), - [aux_sym__val_number_token5] = ACTIONS(5681), - [aux_sym__val_number_token6] = ACTIONS(5681), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5683), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2365] = { + [sym_comment] = STATE(2365), + [anon_sym_export] = ACTIONS(5946), + [anon_sym_alias] = ACTIONS(5946), + [anon_sym_let] = ACTIONS(5946), + [anon_sym_let_DASHenv] = ACTIONS(5946), + [anon_sym_mut] = ACTIONS(5946), + [anon_sym_const] = ACTIONS(5946), + [anon_sym_SEMI] = ACTIONS(5946), + [sym_cmd_identifier] = ACTIONS(5946), + [anon_sym_LF] = ACTIONS(5948), + [anon_sym_def] = ACTIONS(5946), + [anon_sym_export_DASHenv] = ACTIONS(5946), + [anon_sym_extern] = ACTIONS(5946), + [anon_sym_module] = ACTIONS(5946), + [anon_sym_use] = ACTIONS(5946), + [anon_sym_LBRACK] = ACTIONS(5946), + [anon_sym_LPAREN] = ACTIONS(5946), + [anon_sym_RPAREN] = ACTIONS(5946), + [anon_sym_DOLLAR] = ACTIONS(5946), + [anon_sym_error] = ACTIONS(5946), + [anon_sym_DASH] = ACTIONS(5946), + [anon_sym_break] = ACTIONS(5946), + [anon_sym_continue] = ACTIONS(5946), + [anon_sym_for] = ACTIONS(5946), + [anon_sym_loop] = ACTIONS(5946), + [anon_sym_while] = ACTIONS(5946), + [anon_sym_do] = ACTIONS(5946), + [anon_sym_if] = ACTIONS(5946), + [anon_sym_match] = ACTIONS(5946), + [anon_sym_LBRACE] = ACTIONS(5946), + [anon_sym_RBRACE] = ACTIONS(5946), + [anon_sym_DOT_DOT] = ACTIONS(5946), + [anon_sym_try] = ACTIONS(5946), + [anon_sym_return] = ACTIONS(5946), + [anon_sym_source] = ACTIONS(5946), + [anon_sym_source_DASHenv] = ACTIONS(5946), + [anon_sym_register] = ACTIONS(5946), + [anon_sym_hide] = ACTIONS(5946), + [anon_sym_hide_DASHenv] = ACTIONS(5946), + [anon_sym_overlay] = ACTIONS(5946), + [anon_sym_where] = ACTIONS(5946), + [anon_sym_not] = ACTIONS(5946), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5946), + [anon_sym_DOT_DOT_LT] = ACTIONS(5946), + [anon_sym_null] = ACTIONS(5946), + [anon_sym_true] = ACTIONS(5946), + [anon_sym_false] = ACTIONS(5946), + [aux_sym__val_number_decimal_token1] = ACTIONS(5946), + [aux_sym__val_number_decimal_token2] = ACTIONS(5946), + [anon_sym_DOT2] = ACTIONS(5946), + [aux_sym__val_number_decimal_token3] = ACTIONS(5946), + [aux_sym__val_number_token1] = ACTIONS(5946), + [aux_sym__val_number_token2] = ACTIONS(5946), + [aux_sym__val_number_token3] = ACTIONS(5946), + [aux_sym__val_number_token4] = ACTIONS(5946), + [aux_sym__val_number_token5] = ACTIONS(5946), + [aux_sym__val_number_token6] = ACTIONS(5946), + [anon_sym_0b] = ACTIONS(5946), + [anon_sym_0o] = ACTIONS(5946), + [anon_sym_0x] = ACTIONS(5946), + [sym_val_date] = ACTIONS(5946), + [anon_sym_DQUOTE] = ACTIONS(5946), + [sym__str_single_quotes] = ACTIONS(5946), + [sym__str_back_ticks] = ACTIONS(5946), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5946), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5946), + [anon_sym_CARET] = ACTIONS(5946), + [anon_sym_POUND] = ACTIONS(113), }, - [2092] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5457), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5099), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4154), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5052), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2092), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5665), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5667), - [anon_sym_DOT_DOT_LT] = ACTIONS(5667), - [anon_sym_null] = ACTIONS(5669), - [anon_sym_true] = ACTIONS(5671), - [anon_sym_false] = ACTIONS(5671), - [aux_sym__val_number_decimal_token1] = ACTIONS(5673), - [aux_sym__val_number_decimal_token2] = ACTIONS(5675), - [anon_sym_DOT2] = ACTIONS(5677), - [aux_sym__val_number_decimal_token3] = ACTIONS(5679), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5681), - [aux_sym__val_number_token5] = ACTIONS(5681), - [aux_sym__val_number_token6] = ACTIONS(5681), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5683), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2366] = { + [sym_comment] = STATE(2366), + [anon_sym_export] = ACTIONS(6104), + [anon_sym_alias] = ACTIONS(6104), + [anon_sym_let] = ACTIONS(6104), + [anon_sym_let_DASHenv] = ACTIONS(6104), + [anon_sym_mut] = ACTIONS(6104), + [anon_sym_const] = ACTIONS(6104), + [anon_sym_SEMI] = ACTIONS(6104), + [sym_cmd_identifier] = ACTIONS(6104), + [anon_sym_LF] = ACTIONS(6106), + [anon_sym_def] = ACTIONS(6104), + [anon_sym_export_DASHenv] = ACTIONS(6104), + [anon_sym_extern] = ACTIONS(6104), + [anon_sym_module] = ACTIONS(6104), + [anon_sym_use] = ACTIONS(6104), + [anon_sym_LBRACK] = ACTIONS(6104), + [anon_sym_LPAREN] = ACTIONS(6104), + [anon_sym_RPAREN] = ACTIONS(6104), + [anon_sym_DOLLAR] = ACTIONS(6104), + [anon_sym_error] = ACTIONS(6104), + [anon_sym_DASH] = ACTIONS(6104), + [anon_sym_break] = ACTIONS(6104), + [anon_sym_continue] = ACTIONS(6104), + [anon_sym_for] = ACTIONS(6104), + [anon_sym_loop] = ACTIONS(6104), + [anon_sym_while] = ACTIONS(6104), + [anon_sym_do] = ACTIONS(6104), + [anon_sym_if] = ACTIONS(6104), + [anon_sym_match] = ACTIONS(6104), + [anon_sym_LBRACE] = ACTIONS(6104), + [anon_sym_RBRACE] = ACTIONS(6104), + [anon_sym_DOT_DOT] = ACTIONS(6104), + [anon_sym_try] = ACTIONS(6104), + [anon_sym_return] = ACTIONS(6104), + [anon_sym_source] = ACTIONS(6104), + [anon_sym_source_DASHenv] = ACTIONS(6104), + [anon_sym_register] = ACTIONS(6104), + [anon_sym_hide] = ACTIONS(6104), + [anon_sym_hide_DASHenv] = ACTIONS(6104), + [anon_sym_overlay] = ACTIONS(6104), + [anon_sym_where] = ACTIONS(6104), + [anon_sym_not] = ACTIONS(6104), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6104), + [anon_sym_DOT_DOT_LT] = ACTIONS(6104), + [anon_sym_null] = ACTIONS(6104), + [anon_sym_true] = ACTIONS(6104), + [anon_sym_false] = ACTIONS(6104), + [aux_sym__val_number_decimal_token1] = ACTIONS(6104), + [aux_sym__val_number_decimal_token2] = ACTIONS(6104), + [anon_sym_DOT2] = ACTIONS(6104), + [aux_sym__val_number_decimal_token3] = ACTIONS(6104), + [aux_sym__val_number_token1] = ACTIONS(6104), + [aux_sym__val_number_token2] = ACTIONS(6104), + [aux_sym__val_number_token3] = ACTIONS(6104), + [aux_sym__val_number_token4] = ACTIONS(6104), + [aux_sym__val_number_token5] = ACTIONS(6104), + [aux_sym__val_number_token6] = ACTIONS(6104), + [anon_sym_0b] = ACTIONS(6104), + [anon_sym_0o] = ACTIONS(6104), + [anon_sym_0x] = ACTIONS(6104), + [sym_val_date] = ACTIONS(6104), + [anon_sym_DQUOTE] = ACTIONS(6104), + [sym__str_single_quotes] = ACTIONS(6104), + [sym__str_back_ticks] = ACTIONS(6104), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6104), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6104), + [anon_sym_CARET] = ACTIONS(6104), + [anon_sym_POUND] = ACTIONS(113), }, - [2093] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5458), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5099), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4154), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5054), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2093), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5665), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5667), - [anon_sym_DOT_DOT_LT] = ACTIONS(5667), - [anon_sym_null] = ACTIONS(5669), - [anon_sym_true] = ACTIONS(5671), - [anon_sym_false] = ACTIONS(5671), - [aux_sym__val_number_decimal_token1] = ACTIONS(5673), - [aux_sym__val_number_decimal_token2] = ACTIONS(5675), - [anon_sym_DOT2] = ACTIONS(5677), - [aux_sym__val_number_decimal_token3] = ACTIONS(5679), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5681), - [aux_sym__val_number_token5] = ACTIONS(5681), - [aux_sym__val_number_token6] = ACTIONS(5681), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5683), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2367] = { + [sym_comment] = STATE(2367), + [anon_sym_export] = ACTIONS(6021), + [anon_sym_alias] = ACTIONS(6021), + [anon_sym_let] = ACTIONS(6021), + [anon_sym_let_DASHenv] = ACTIONS(6021), + [anon_sym_mut] = ACTIONS(6021), + [anon_sym_const] = ACTIONS(6021), + [anon_sym_SEMI] = ACTIONS(6021), + [sym_cmd_identifier] = ACTIONS(6021), + [anon_sym_LF] = ACTIONS(6023), + [anon_sym_def] = ACTIONS(6021), + [anon_sym_export_DASHenv] = ACTIONS(6021), + [anon_sym_extern] = ACTIONS(6021), + [anon_sym_module] = ACTIONS(6021), + [anon_sym_use] = ACTIONS(6021), + [anon_sym_LBRACK] = ACTIONS(6021), + [anon_sym_LPAREN] = ACTIONS(6021), + [anon_sym_RPAREN] = ACTIONS(6021), + [anon_sym_DOLLAR] = ACTIONS(6021), + [anon_sym_error] = ACTIONS(6021), + [anon_sym_DASH] = ACTIONS(6021), + [anon_sym_break] = ACTIONS(6021), + [anon_sym_continue] = ACTIONS(6021), + [anon_sym_for] = ACTIONS(6021), + [anon_sym_loop] = ACTIONS(6021), + [anon_sym_while] = ACTIONS(6021), + [anon_sym_do] = ACTIONS(6021), + [anon_sym_if] = ACTIONS(6021), + [anon_sym_match] = ACTIONS(6021), + [anon_sym_LBRACE] = ACTIONS(6021), + [anon_sym_RBRACE] = ACTIONS(6021), + [anon_sym_DOT_DOT] = ACTIONS(6021), + [anon_sym_try] = ACTIONS(6021), + [anon_sym_return] = ACTIONS(6021), + [anon_sym_source] = ACTIONS(6021), + [anon_sym_source_DASHenv] = ACTIONS(6021), + [anon_sym_register] = ACTIONS(6021), + [anon_sym_hide] = ACTIONS(6021), + [anon_sym_hide_DASHenv] = ACTIONS(6021), + [anon_sym_overlay] = ACTIONS(6021), + [anon_sym_where] = ACTIONS(6021), + [anon_sym_not] = ACTIONS(6021), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6021), + [anon_sym_DOT_DOT_LT] = ACTIONS(6021), + [anon_sym_null] = ACTIONS(6021), + [anon_sym_true] = ACTIONS(6021), + [anon_sym_false] = ACTIONS(6021), + [aux_sym__val_number_decimal_token1] = ACTIONS(6021), + [aux_sym__val_number_decimal_token2] = ACTIONS(6021), + [anon_sym_DOT2] = ACTIONS(6021), + [aux_sym__val_number_decimal_token3] = ACTIONS(6021), + [aux_sym__val_number_token1] = ACTIONS(6021), + [aux_sym__val_number_token2] = ACTIONS(6021), + [aux_sym__val_number_token3] = ACTIONS(6021), + [aux_sym__val_number_token4] = ACTIONS(6021), + [aux_sym__val_number_token5] = ACTIONS(6021), + [aux_sym__val_number_token6] = ACTIONS(6021), + [anon_sym_0b] = ACTIONS(6021), + [anon_sym_0o] = ACTIONS(6021), + [anon_sym_0x] = ACTIONS(6021), + [sym_val_date] = ACTIONS(6021), + [anon_sym_DQUOTE] = ACTIONS(6021), + [sym__str_single_quotes] = ACTIONS(6021), + [sym__str_back_ticks] = ACTIONS(6021), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6021), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6021), + [anon_sym_CARET] = ACTIONS(6021), + [anon_sym_POUND] = ACTIONS(113), }, - [2094] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5459), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5099), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4154), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5067), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2094), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5665), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5667), - [anon_sym_DOT_DOT_LT] = ACTIONS(5667), - [anon_sym_null] = ACTIONS(5669), - [anon_sym_true] = ACTIONS(5671), - [anon_sym_false] = ACTIONS(5671), - [aux_sym__val_number_decimal_token1] = ACTIONS(5673), - [aux_sym__val_number_decimal_token2] = ACTIONS(5675), - [anon_sym_DOT2] = ACTIONS(5677), - [aux_sym__val_number_decimal_token3] = ACTIONS(5679), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5681), - [aux_sym__val_number_token5] = ACTIONS(5681), - [aux_sym__val_number_token6] = ACTIONS(5681), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5683), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), + [2368] = { + [sym_match_arm] = STATE(4342), + [sym_match_pattern] = STATE(10508), + [sym__match_pattern] = STATE(8876), + [sym__match_pattern_expression] = STATE(9859), + [sym__match_pattern_value] = STATE(9862), + [sym__match_pattern_list] = STATE(9863), + [sym__match_pattern_record] = STATE(9864), + [sym__expr_unary_minus] = STATE(9869), + [sym_expr_parenthesized] = STATE(8297), + [sym_val_range] = STATE(9862), + [sym__val_range] = STATE(10105), + [sym_val_nothing] = STATE(9875), + [sym_val_bool] = STATE(9626), + [sym_val_variable] = STATE(8298), + [sym__var] = STATE(3929), + [sym_val_number] = STATE(9875), + [sym__val_number_decimal] = STATE(7214), + [sym__val_number] = STATE(4922), + [sym_val_duration] = STATE(9875), + [sym_val_filesize] = STATE(9875), + [sym_val_binary] = STATE(9875), + [sym_val_string] = STATE(9875), + [sym__str_double_quotes] = STATE(5067), + [sym_val_table] = STATE(9875), + [sym_unquoted] = STATE(9878), + [sym__unquoted_anonymous_prefix] = STATE(10523), + [sym_comment] = STATE(2368), + [aux_sym_ctrl_match_repeat1] = STATE(2368), + [anon_sym_LBRACK] = ACTIONS(6168), + [anon_sym_LPAREN] = ACTIONS(6171), + [anon_sym_DOLLAR] = ACTIONS(6174), + [anon_sym_DASH] = ACTIONS(6177), + [anon_sym_LBRACE] = ACTIONS(6180), + [anon_sym_RBRACE] = ACTIONS(6183), + [anon_sym__] = ACTIONS(6185), + [anon_sym_DOT_DOT] = ACTIONS(6188), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6191), + [anon_sym_DOT_DOT_LT] = ACTIONS(6191), + [anon_sym_null] = ACTIONS(6194), + [anon_sym_true] = ACTIONS(6197), + [anon_sym_false] = ACTIONS(6197), + [aux_sym__val_number_decimal_token1] = ACTIONS(6200), + [aux_sym__val_number_decimal_token2] = ACTIONS(6203), + [anon_sym_DOT2] = ACTIONS(6206), + [aux_sym__val_number_decimal_token3] = ACTIONS(6209), + [aux_sym__val_number_token1] = ACTIONS(6212), + [aux_sym__val_number_token2] = ACTIONS(6212), + [aux_sym__val_number_token3] = ACTIONS(6212), + [aux_sym__val_number_token4] = ACTIONS(6215), + [aux_sym__val_number_token5] = ACTIONS(6215), + [aux_sym__val_number_token6] = ACTIONS(6215), + [anon_sym_0b] = ACTIONS(6218), + [anon_sym_0o] = ACTIONS(6221), + [anon_sym_0x] = ACTIONS(6221), + [sym_val_date] = ACTIONS(6224), + [anon_sym_DQUOTE] = ACTIONS(6227), + [sym__str_single_quotes] = ACTIONS(6230), + [sym__str_back_ticks] = ACTIONS(6230), + [anon_sym_err_GT] = ACTIONS(6233), + [anon_sym_out_GT] = ACTIONS(6233), + [anon_sym_e_GT] = ACTIONS(6233), + [anon_sym_o_GT] = ACTIONS(6233), + [anon_sym_err_PLUSout_GT] = ACTIONS(6233), + [anon_sym_out_PLUSerr_GT] = ACTIONS(6233), + [anon_sym_o_PLUSe_GT] = ACTIONS(6233), + [anon_sym_e_PLUSo_GT] = ACTIONS(6233), + [aux_sym_unquoted_token1] = ACTIONS(6236), [anon_sym_POUND] = ACTIONS(3), }, - [2095] = { - [sym_expr_unary] = STATE(5815), - [sym__expr_unary_minus] = STATE(5920), - [sym_expr_binary] = STATE(5815), - [sym__expr_binary_expression] = STATE(5817), - [sym_expr_parenthesized] = STATE(5815), - [sym__val_range] = STATE(10586), - [sym__value] = STATE(5815), - [sym_val_nothing] = STATE(5948), - [sym_val_bool] = STATE(5584), - [sym_val_variable] = STATE(5948), - [sym__var] = STATE(5027), - [sym_val_number] = STATE(5948), - [sym__val_number_decimal] = STATE(4459), - [sym__val_number] = STATE(5814), - [sym_val_duration] = STATE(5948), - [sym_val_filesize] = STATE(5948), - [sym_val_binary] = STATE(5948), - [sym_val_string] = STATE(5948), - [sym__str_double_quotes] = STATE(5661), - [sym_val_interpolated] = STATE(5948), - [sym__inter_single_quotes] = STATE(5778), - [sym__inter_double_quotes] = STATE(5857), - [sym_val_list] = STATE(5948), - [sym_val_record] = STATE(5948), - [sym_val_table] = STATE(5948), - [sym_val_closure] = STATE(5948), - [sym_unquoted] = STATE(5830), - [sym__unquoted_anonymous_prefix] = STATE(11268), - [sym_comment] = STATE(2095), - [anon_sym_LBRACK] = ACTIONS(3528), - [anon_sym_LPAREN] = ACTIONS(5685), - [anon_sym_DOLLAR] = ACTIONS(5687), - [anon_sym_DASH] = ACTIONS(4831), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_DOT_DOT] = ACTIONS(5689), - [anon_sym_not] = ACTIONS(4835), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5691), - [anon_sym_DOT_DOT_LT] = ACTIONS(5691), - [anon_sym_null] = ACTIONS(4839), - [anon_sym_true] = ACTIONS(4841), - [anon_sym_false] = ACTIONS(4841), - [aux_sym__val_number_decimal_token1] = ACTIONS(4843), - [aux_sym__val_number_decimal_token2] = ACTIONS(4845), - [anon_sym_DOT2] = ACTIONS(5693), - [aux_sym__val_number_decimal_token3] = ACTIONS(4849), - [aux_sym__val_number_token1] = ACTIONS(3546), - [aux_sym__val_number_token2] = ACTIONS(3546), - [aux_sym__val_number_token3] = ACTIONS(3546), - [aux_sym__val_number_token4] = ACTIONS(4851), - [aux_sym__val_number_token5] = ACTIONS(4851), - [aux_sym__val_number_token6] = ACTIONS(4851), - [anon_sym_0b] = ACTIONS(1848), - [anon_sym_0o] = ACTIONS(1850), - [anon_sym_0x] = ACTIONS(1850), - [sym_val_date] = ACTIONS(4853), - [anon_sym_DQUOTE] = ACTIONS(3552), - [sym__str_single_quotes] = ACTIONS(3554), - [sym__str_back_ticks] = ACTIONS(3554), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3558), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(1866), - [anon_sym_POUND] = ACTIONS(3), + [2369] = { + [sym_comment] = STATE(2369), + [ts_builtin_sym_end] = ACTIONS(1267), + [anon_sym_export] = ACTIONS(1265), + [anon_sym_alias] = ACTIONS(1265), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_let_DASHenv] = ACTIONS(1265), + [anon_sym_mut] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_SEMI] = ACTIONS(1265), + [sym_cmd_identifier] = ACTIONS(1265), + [anon_sym_LF] = ACTIONS(1267), + [anon_sym_def] = ACTIONS(1265), + [anon_sym_export_DASHenv] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_module] = ACTIONS(1265), + [anon_sym_use] = ACTIONS(1265), + [anon_sym_LBRACK] = ACTIONS(1265), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_DOLLAR] = ACTIONS(1265), + [anon_sym_error] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1265), + [anon_sym_break] = ACTIONS(1265), + [anon_sym_continue] = ACTIONS(1265), + [anon_sym_for] = ACTIONS(1265), + [anon_sym_loop] = ACTIONS(1265), + [anon_sym_while] = ACTIONS(1265), + [anon_sym_do] = ACTIONS(1265), + [anon_sym_if] = ACTIONS(1265), + [anon_sym_match] = ACTIONS(1265), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_DOT_DOT] = ACTIONS(1265), + [anon_sym_try] = ACTIONS(1265), + [anon_sym_return] = ACTIONS(1265), + [anon_sym_source] = ACTIONS(1265), + [anon_sym_source_DASHenv] = ACTIONS(1265), + [anon_sym_register] = ACTIONS(1265), + [anon_sym_hide] = ACTIONS(1265), + [anon_sym_hide_DASHenv] = ACTIONS(1265), + [anon_sym_overlay] = ACTIONS(1265), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_where] = ACTIONS(1265), + [anon_sym_not] = ACTIONS(1265), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1265), + [anon_sym_DOT_DOT_LT] = ACTIONS(1265), + [anon_sym_null] = ACTIONS(1265), + [anon_sym_true] = ACTIONS(1265), + [anon_sym_false] = ACTIONS(1265), + [aux_sym__val_number_decimal_token1] = ACTIONS(1265), + [aux_sym__val_number_decimal_token2] = ACTIONS(1265), + [anon_sym_DOT2] = ACTIONS(1265), + [aux_sym__val_number_decimal_token3] = ACTIONS(1265), + [aux_sym__val_number_token1] = ACTIONS(1265), + [aux_sym__val_number_token2] = ACTIONS(1265), + [aux_sym__val_number_token3] = ACTIONS(1265), + [aux_sym__val_number_token4] = ACTIONS(1265), + [aux_sym__val_number_token5] = ACTIONS(1265), + [aux_sym__val_number_token6] = ACTIONS(1265), + [anon_sym_0b] = ACTIONS(1265), + [anon_sym_0o] = ACTIONS(1265), + [anon_sym_0x] = ACTIONS(1265), + [sym_val_date] = ACTIONS(1265), + [anon_sym_DQUOTE] = ACTIONS(1265), + [sym__str_single_quotes] = ACTIONS(1265), + [sym__str_back_ticks] = ACTIONS(1265), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1265), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(1265), + [anon_sym_POUND] = ACTIONS(113), }, - [2096] = { - [sym_expr_unary] = STATE(5815), - [sym__expr_unary_minus] = STATE(5920), - [sym_expr_binary] = STATE(5815), - [sym__expr_binary_expression] = STATE(5831), - [sym_expr_parenthesized] = STATE(5815), - [sym__val_range] = STATE(10586), - [sym__value] = STATE(5815), - [sym_val_nothing] = STATE(5948), - [sym_val_bool] = STATE(5584), - [sym_val_variable] = STATE(5948), - [sym__var] = STATE(5027), - [sym_val_number] = STATE(5948), - [sym__val_number_decimal] = STATE(4459), - [sym__val_number] = STATE(5814), - [sym_val_duration] = STATE(5948), - [sym_val_filesize] = STATE(5948), - [sym_val_binary] = STATE(5948), - [sym_val_string] = STATE(5948), - [sym__str_double_quotes] = STATE(5661), - [sym_val_interpolated] = STATE(5948), - [sym__inter_single_quotes] = STATE(5778), - [sym__inter_double_quotes] = STATE(5857), - [sym_val_list] = STATE(5948), - [sym_val_record] = STATE(5948), - [sym_val_table] = STATE(5948), - [sym_val_closure] = STATE(5948), - [sym_unquoted] = STATE(5833), - [sym__unquoted_anonymous_prefix] = STATE(11268), - [sym_comment] = STATE(2096), - [anon_sym_LBRACK] = ACTIONS(3528), - [anon_sym_LPAREN] = ACTIONS(5685), - [anon_sym_DOLLAR] = ACTIONS(5687), - [anon_sym_DASH] = ACTIONS(4831), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_DOT_DOT] = ACTIONS(5689), - [anon_sym_not] = ACTIONS(4835), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5691), - [anon_sym_DOT_DOT_LT] = ACTIONS(5691), - [anon_sym_null] = ACTIONS(4839), - [anon_sym_true] = ACTIONS(4841), - [anon_sym_false] = ACTIONS(4841), - [aux_sym__val_number_decimal_token1] = ACTIONS(4843), - [aux_sym__val_number_decimal_token2] = ACTIONS(4845), - [anon_sym_DOT2] = ACTIONS(5693), - [aux_sym__val_number_decimal_token3] = ACTIONS(4849), - [aux_sym__val_number_token1] = ACTIONS(3546), - [aux_sym__val_number_token2] = ACTIONS(3546), - [aux_sym__val_number_token3] = ACTIONS(3546), - [aux_sym__val_number_token4] = ACTIONS(4851), - [aux_sym__val_number_token5] = ACTIONS(4851), - [aux_sym__val_number_token6] = ACTIONS(4851), - [anon_sym_0b] = ACTIONS(1848), - [anon_sym_0o] = ACTIONS(1850), - [anon_sym_0x] = ACTIONS(1850), - [sym_val_date] = ACTIONS(4853), - [anon_sym_DQUOTE] = ACTIONS(3552), - [sym__str_single_quotes] = ACTIONS(3554), - [sym__str_back_ticks] = ACTIONS(3554), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3558), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(1866), - [anon_sym_POUND] = ACTIONS(3), + [2370] = { + [sym_comment] = STATE(2370), + [ts_builtin_sym_end] = ACTIONS(1267), + [anon_sym_export] = ACTIONS(1265), + [anon_sym_alias] = ACTIONS(1265), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_let_DASHenv] = ACTIONS(1265), + [anon_sym_mut] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_SEMI] = ACTIONS(1265), + [sym_cmd_identifier] = ACTIONS(1265), + [anon_sym_LF] = ACTIONS(1267), + [anon_sym_def] = ACTIONS(1265), + [anon_sym_export_DASHenv] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_module] = ACTIONS(1265), + [anon_sym_use] = ACTIONS(1265), + [anon_sym_LBRACK] = ACTIONS(1265), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_DOLLAR] = ACTIONS(1265), + [anon_sym_error] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1265), + [anon_sym_break] = ACTIONS(1265), + [anon_sym_continue] = ACTIONS(1265), + [anon_sym_for] = ACTIONS(1265), + [anon_sym_loop] = ACTIONS(1265), + [anon_sym_while] = ACTIONS(1265), + [anon_sym_do] = ACTIONS(1265), + [anon_sym_if] = ACTIONS(1265), + [anon_sym_match] = ACTIONS(1265), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_DOT_DOT] = ACTIONS(1265), + [anon_sym_try] = ACTIONS(1265), + [anon_sym_return] = ACTIONS(1265), + [anon_sym_source] = ACTIONS(1265), + [anon_sym_source_DASHenv] = ACTIONS(1265), + [anon_sym_register] = ACTIONS(1265), + [anon_sym_hide] = ACTIONS(1265), + [anon_sym_hide_DASHenv] = ACTIONS(1265), + [anon_sym_overlay] = ACTIONS(1265), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_where] = ACTIONS(1265), + [anon_sym_not] = ACTIONS(1265), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1265), + [anon_sym_DOT_DOT_LT] = ACTIONS(1265), + [anon_sym_null] = ACTIONS(1265), + [anon_sym_true] = ACTIONS(1265), + [anon_sym_false] = ACTIONS(1265), + [aux_sym__val_number_decimal_token1] = ACTIONS(1265), + [aux_sym__val_number_decimal_token2] = ACTIONS(1265), + [anon_sym_DOT2] = ACTIONS(1265), + [aux_sym__val_number_decimal_token3] = ACTIONS(1265), + [aux_sym__val_number_token1] = ACTIONS(1265), + [aux_sym__val_number_token2] = ACTIONS(1265), + [aux_sym__val_number_token3] = ACTIONS(1265), + [aux_sym__val_number_token4] = ACTIONS(1265), + [aux_sym__val_number_token5] = ACTIONS(1265), + [aux_sym__val_number_token6] = ACTIONS(1265), + [anon_sym_0b] = ACTIONS(1265), + [anon_sym_0o] = ACTIONS(1265), + [anon_sym_0x] = ACTIONS(1265), + [sym_val_date] = ACTIONS(1265), + [anon_sym_DQUOTE] = ACTIONS(1265), + [sym__str_single_quotes] = ACTIONS(1265), + [sym__str_back_ticks] = ACTIONS(1265), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1265), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(1265), + [anon_sym_POUND] = ACTIONS(113), }, - [2097] = { - [sym_expr_unary] = STATE(5815), - [sym__expr_unary_minus] = STATE(5920), - [sym_expr_binary] = STATE(5815), - [sym__expr_binary_expression] = STATE(5836), - [sym_expr_parenthesized] = STATE(5815), - [sym__val_range] = STATE(10586), - [sym__value] = STATE(5815), - [sym_val_nothing] = STATE(5948), - [sym_val_bool] = STATE(5584), - [sym_val_variable] = STATE(5948), - [sym__var] = STATE(5027), - [sym_val_number] = STATE(5948), - [sym__val_number_decimal] = STATE(4459), - [sym__val_number] = STATE(5814), - [sym_val_duration] = STATE(5948), - [sym_val_filesize] = STATE(5948), - [sym_val_binary] = STATE(5948), - [sym_val_string] = STATE(5948), - [sym__str_double_quotes] = STATE(5661), - [sym_val_interpolated] = STATE(5948), - [sym__inter_single_quotes] = STATE(5778), - [sym__inter_double_quotes] = STATE(5857), - [sym_val_list] = STATE(5948), - [sym_val_record] = STATE(5948), - [sym_val_table] = STATE(5948), - [sym_val_closure] = STATE(5948), - [sym_unquoted] = STATE(5841), - [sym__unquoted_anonymous_prefix] = STATE(11268), - [sym_comment] = STATE(2097), - [anon_sym_LBRACK] = ACTIONS(3528), - [anon_sym_LPAREN] = ACTIONS(5685), - [anon_sym_DOLLAR] = ACTIONS(5687), - [anon_sym_DASH] = ACTIONS(4831), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_DOT_DOT] = ACTIONS(5689), - [anon_sym_not] = ACTIONS(4835), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5691), - [anon_sym_DOT_DOT_LT] = ACTIONS(5691), - [anon_sym_null] = ACTIONS(4839), - [anon_sym_true] = ACTIONS(4841), - [anon_sym_false] = ACTIONS(4841), - [aux_sym__val_number_decimal_token1] = ACTIONS(4843), - [aux_sym__val_number_decimal_token2] = ACTIONS(4845), - [anon_sym_DOT2] = ACTIONS(5693), - [aux_sym__val_number_decimal_token3] = ACTIONS(4849), - [aux_sym__val_number_token1] = ACTIONS(3546), - [aux_sym__val_number_token2] = ACTIONS(3546), - [aux_sym__val_number_token3] = ACTIONS(3546), - [aux_sym__val_number_token4] = ACTIONS(4851), - [aux_sym__val_number_token5] = ACTIONS(4851), - [aux_sym__val_number_token6] = ACTIONS(4851), - [anon_sym_0b] = ACTIONS(1848), - [anon_sym_0o] = ACTIONS(1850), - [anon_sym_0x] = ACTIONS(1850), - [sym_val_date] = ACTIONS(4853), - [anon_sym_DQUOTE] = ACTIONS(3552), - [sym__str_single_quotes] = ACTIONS(3554), - [sym__str_back_ticks] = ACTIONS(3554), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3558), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(1866), - [anon_sym_POUND] = ACTIONS(3), + [2371] = { + [sym_comment] = STATE(2371), + [anon_sym_export] = ACTIONS(6239), + [anon_sym_alias] = ACTIONS(6239), + [anon_sym_let] = ACTIONS(6239), + [anon_sym_let_DASHenv] = ACTIONS(6239), + [anon_sym_mut] = ACTIONS(6239), + [anon_sym_const] = ACTIONS(6239), + [anon_sym_SEMI] = ACTIONS(6239), + [sym_cmd_identifier] = ACTIONS(6239), + [anon_sym_LF] = ACTIONS(6241), + [anon_sym_def] = ACTIONS(6239), + [anon_sym_export_DASHenv] = ACTIONS(6239), + [anon_sym_extern] = ACTIONS(6239), + [anon_sym_module] = ACTIONS(6239), + [anon_sym_use] = ACTIONS(6239), + [anon_sym_LBRACK] = ACTIONS(6239), + [anon_sym_LPAREN] = ACTIONS(6239), + [anon_sym_RPAREN] = ACTIONS(6239), + [anon_sym_DOLLAR] = ACTIONS(6239), + [anon_sym_error] = ACTIONS(6239), + [anon_sym_DASH] = ACTIONS(6239), + [anon_sym_break] = ACTIONS(6239), + [anon_sym_continue] = ACTIONS(6239), + [anon_sym_for] = ACTIONS(6239), + [anon_sym_loop] = ACTIONS(6239), + [anon_sym_while] = ACTIONS(6239), + [anon_sym_do] = ACTIONS(6239), + [anon_sym_if] = ACTIONS(6239), + [anon_sym_match] = ACTIONS(6239), + [anon_sym_LBRACE] = ACTIONS(6239), + [anon_sym_RBRACE] = ACTIONS(6239), + [anon_sym_DOT_DOT] = ACTIONS(6239), + [anon_sym_try] = ACTIONS(6239), + [anon_sym_return] = ACTIONS(6239), + [anon_sym_source] = ACTIONS(6239), + [anon_sym_source_DASHenv] = ACTIONS(6239), + [anon_sym_register] = ACTIONS(6239), + [anon_sym_hide] = ACTIONS(6239), + [anon_sym_hide_DASHenv] = ACTIONS(6239), + [anon_sym_overlay] = ACTIONS(6239), + [anon_sym_where] = ACTIONS(6239), + [anon_sym_not] = ACTIONS(6239), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6239), + [anon_sym_DOT_DOT_LT] = ACTIONS(6239), + [anon_sym_null] = ACTIONS(6239), + [anon_sym_true] = ACTIONS(6239), + [anon_sym_false] = ACTIONS(6239), + [aux_sym__val_number_decimal_token1] = ACTIONS(6239), + [aux_sym__val_number_decimal_token2] = ACTIONS(6239), + [anon_sym_DOT2] = ACTIONS(6239), + [aux_sym__val_number_decimal_token3] = ACTIONS(6239), + [aux_sym__val_number_token1] = ACTIONS(6239), + [aux_sym__val_number_token2] = ACTIONS(6239), + [aux_sym__val_number_token3] = ACTIONS(6239), + [aux_sym__val_number_token4] = ACTIONS(6239), + [aux_sym__val_number_token5] = ACTIONS(6239), + [aux_sym__val_number_token6] = ACTIONS(6239), + [anon_sym_0b] = ACTIONS(6239), + [anon_sym_0o] = ACTIONS(6239), + [anon_sym_0x] = ACTIONS(6239), + [sym_val_date] = ACTIONS(6239), + [anon_sym_DQUOTE] = ACTIONS(6239), + [sym__str_single_quotes] = ACTIONS(6239), + [sym__str_back_ticks] = ACTIONS(6239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6239), + [anon_sym_CARET] = ACTIONS(6239), + [anon_sym_POUND] = ACTIONS(113), }, - [2098] = { - [sym_expr_unary] = STATE(5815), - [sym__expr_unary_minus] = STATE(5920), - [sym_expr_binary] = STATE(5815), - [sym__expr_binary_expression] = STATE(5842), - [sym_expr_parenthesized] = STATE(5815), - [sym__val_range] = STATE(10586), - [sym__value] = STATE(5815), - [sym_val_nothing] = STATE(5948), - [sym_val_bool] = STATE(5584), - [sym_val_variable] = STATE(5948), - [sym__var] = STATE(5027), - [sym_val_number] = STATE(5948), - [sym__val_number_decimal] = STATE(4459), - [sym__val_number] = STATE(5814), - [sym_val_duration] = STATE(5948), - [sym_val_filesize] = STATE(5948), - [sym_val_binary] = STATE(5948), - [sym_val_string] = STATE(5948), - [sym__str_double_quotes] = STATE(5661), - [sym_val_interpolated] = STATE(5948), - [sym__inter_single_quotes] = STATE(5778), - [sym__inter_double_quotes] = STATE(5857), - [sym_val_list] = STATE(5948), - [sym_val_record] = STATE(5948), - [sym_val_table] = STATE(5948), - [sym_val_closure] = STATE(5948), - [sym_unquoted] = STATE(5845), - [sym__unquoted_anonymous_prefix] = STATE(11268), - [sym_comment] = STATE(2098), - [anon_sym_LBRACK] = ACTIONS(3528), - [anon_sym_LPAREN] = ACTIONS(5685), - [anon_sym_DOLLAR] = ACTIONS(5687), - [anon_sym_DASH] = ACTIONS(4831), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_DOT_DOT] = ACTIONS(5689), - [anon_sym_not] = ACTIONS(4835), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5691), - [anon_sym_DOT_DOT_LT] = ACTIONS(5691), - [anon_sym_null] = ACTIONS(4839), - [anon_sym_true] = ACTIONS(4841), - [anon_sym_false] = ACTIONS(4841), - [aux_sym__val_number_decimal_token1] = ACTIONS(4843), - [aux_sym__val_number_decimal_token2] = ACTIONS(4845), - [anon_sym_DOT2] = ACTIONS(5693), - [aux_sym__val_number_decimal_token3] = ACTIONS(4849), - [aux_sym__val_number_token1] = ACTIONS(3546), - [aux_sym__val_number_token2] = ACTIONS(3546), - [aux_sym__val_number_token3] = ACTIONS(3546), - [aux_sym__val_number_token4] = ACTIONS(4851), - [aux_sym__val_number_token5] = ACTIONS(4851), - [aux_sym__val_number_token6] = ACTIONS(4851), - [anon_sym_0b] = ACTIONS(1848), - [anon_sym_0o] = ACTIONS(1850), - [anon_sym_0x] = ACTIONS(1850), - [sym_val_date] = ACTIONS(4853), - [anon_sym_DQUOTE] = ACTIONS(3552), - [sym__str_single_quotes] = ACTIONS(3554), - [sym__str_back_ticks] = ACTIONS(3554), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3558), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(1866), - [anon_sym_POUND] = ACTIONS(3), + [2372] = { + [sym_comment] = STATE(2372), + [anon_sym_export] = ACTIONS(6243), + [anon_sym_alias] = ACTIONS(6243), + [anon_sym_let] = ACTIONS(6243), + [anon_sym_let_DASHenv] = ACTIONS(6243), + [anon_sym_mut] = ACTIONS(6243), + [anon_sym_const] = ACTIONS(6243), + [anon_sym_SEMI] = ACTIONS(6243), + [sym_cmd_identifier] = ACTIONS(6243), + [anon_sym_LF] = ACTIONS(6245), + [anon_sym_def] = ACTIONS(6243), + [anon_sym_export_DASHenv] = ACTIONS(6243), + [anon_sym_extern] = ACTIONS(6243), + [anon_sym_module] = ACTIONS(6243), + [anon_sym_use] = ACTIONS(6243), + [anon_sym_LBRACK] = ACTIONS(6243), + [anon_sym_LPAREN] = ACTIONS(6243), + [anon_sym_RPAREN] = ACTIONS(6243), + [anon_sym_DOLLAR] = ACTIONS(6243), + [anon_sym_error] = ACTIONS(6243), + [anon_sym_DASH] = ACTIONS(6243), + [anon_sym_break] = ACTIONS(6243), + [anon_sym_continue] = ACTIONS(6243), + [anon_sym_for] = ACTIONS(6243), + [anon_sym_loop] = ACTIONS(6243), + [anon_sym_while] = ACTIONS(6243), + [anon_sym_do] = ACTIONS(6243), + [anon_sym_if] = ACTIONS(6243), + [anon_sym_match] = ACTIONS(6243), + [anon_sym_LBRACE] = ACTIONS(6243), + [anon_sym_RBRACE] = ACTIONS(6243), + [anon_sym_DOT_DOT] = ACTIONS(6243), + [anon_sym_try] = ACTIONS(6243), + [anon_sym_return] = ACTIONS(6243), + [anon_sym_source] = ACTIONS(6243), + [anon_sym_source_DASHenv] = ACTIONS(6243), + [anon_sym_register] = ACTIONS(6243), + [anon_sym_hide] = ACTIONS(6243), + [anon_sym_hide_DASHenv] = ACTIONS(6243), + [anon_sym_overlay] = ACTIONS(6243), + [anon_sym_where] = ACTIONS(6243), + [anon_sym_not] = ACTIONS(6243), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6243), + [anon_sym_DOT_DOT_LT] = ACTIONS(6243), + [anon_sym_null] = ACTIONS(6243), + [anon_sym_true] = ACTIONS(6243), + [anon_sym_false] = ACTIONS(6243), + [aux_sym__val_number_decimal_token1] = ACTIONS(6243), + [aux_sym__val_number_decimal_token2] = ACTIONS(6243), + [anon_sym_DOT2] = ACTIONS(6243), + [aux_sym__val_number_decimal_token3] = ACTIONS(6243), + [aux_sym__val_number_token1] = ACTIONS(6243), + [aux_sym__val_number_token2] = ACTIONS(6243), + [aux_sym__val_number_token3] = ACTIONS(6243), + [aux_sym__val_number_token4] = ACTIONS(6243), + [aux_sym__val_number_token5] = ACTIONS(6243), + [aux_sym__val_number_token6] = ACTIONS(6243), + [anon_sym_0b] = ACTIONS(6243), + [anon_sym_0o] = ACTIONS(6243), + [anon_sym_0x] = ACTIONS(6243), + [sym_val_date] = ACTIONS(6243), + [anon_sym_DQUOTE] = ACTIONS(6243), + [sym__str_single_quotes] = ACTIONS(6243), + [sym__str_back_ticks] = ACTIONS(6243), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6243), + [anon_sym_CARET] = ACTIONS(6243), + [anon_sym_POUND] = ACTIONS(113), }, - [2099] = { - [sym_expr_unary] = STATE(5815), - [sym__expr_unary_minus] = STATE(5920), - [sym_expr_binary] = STATE(5815), - [sym__expr_binary_expression] = STATE(5846), - [sym_expr_parenthesized] = STATE(5815), - [sym__val_range] = STATE(10586), - [sym__value] = STATE(5815), - [sym_val_nothing] = STATE(5948), - [sym_val_bool] = STATE(5584), - [sym_val_variable] = STATE(5948), - [sym__var] = STATE(5027), - [sym_val_number] = STATE(5948), - [sym__val_number_decimal] = STATE(4459), - [sym__val_number] = STATE(5814), - [sym_val_duration] = STATE(5948), - [sym_val_filesize] = STATE(5948), - [sym_val_binary] = STATE(5948), - [sym_val_string] = STATE(5948), - [sym__str_double_quotes] = STATE(5661), - [sym_val_interpolated] = STATE(5948), - [sym__inter_single_quotes] = STATE(5778), - [sym__inter_double_quotes] = STATE(5857), - [sym_val_list] = STATE(5948), - [sym_val_record] = STATE(5948), - [sym_val_table] = STATE(5948), - [sym_val_closure] = STATE(5948), - [sym_unquoted] = STATE(5847), - [sym__unquoted_anonymous_prefix] = STATE(11268), - [sym_comment] = STATE(2099), - [anon_sym_LBRACK] = ACTIONS(3528), - [anon_sym_LPAREN] = ACTIONS(5685), - [anon_sym_DOLLAR] = ACTIONS(5687), - [anon_sym_DASH] = ACTIONS(4831), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_DOT_DOT] = ACTIONS(5689), - [anon_sym_not] = ACTIONS(4835), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5691), - [anon_sym_DOT_DOT_LT] = ACTIONS(5691), - [anon_sym_null] = ACTIONS(4839), - [anon_sym_true] = ACTIONS(4841), - [anon_sym_false] = ACTIONS(4841), - [aux_sym__val_number_decimal_token1] = ACTIONS(4843), - [aux_sym__val_number_decimal_token2] = ACTIONS(4845), - [anon_sym_DOT2] = ACTIONS(5693), - [aux_sym__val_number_decimal_token3] = ACTIONS(4849), - [aux_sym__val_number_token1] = ACTIONS(3546), - [aux_sym__val_number_token2] = ACTIONS(3546), - [aux_sym__val_number_token3] = ACTIONS(3546), - [aux_sym__val_number_token4] = ACTIONS(4851), - [aux_sym__val_number_token5] = ACTIONS(4851), - [aux_sym__val_number_token6] = ACTIONS(4851), - [anon_sym_0b] = ACTIONS(1848), - [anon_sym_0o] = ACTIONS(1850), - [anon_sym_0x] = ACTIONS(1850), - [sym_val_date] = ACTIONS(4853), - [anon_sym_DQUOTE] = ACTIONS(3552), - [sym__str_single_quotes] = ACTIONS(3554), - [sym__str_back_ticks] = ACTIONS(3554), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3558), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(1866), - [anon_sym_POUND] = ACTIONS(3), + [2373] = { + [sym_comment] = STATE(2373), + [anon_sym_export] = ACTIONS(6247), + [anon_sym_alias] = ACTIONS(6247), + [anon_sym_let] = ACTIONS(6247), + [anon_sym_let_DASHenv] = ACTIONS(6247), + [anon_sym_mut] = ACTIONS(6247), + [anon_sym_const] = ACTIONS(6247), + [anon_sym_SEMI] = ACTIONS(6247), + [sym_cmd_identifier] = ACTIONS(6247), + [anon_sym_LF] = ACTIONS(6249), + [anon_sym_def] = ACTIONS(6247), + [anon_sym_export_DASHenv] = ACTIONS(6247), + [anon_sym_extern] = ACTIONS(6247), + [anon_sym_module] = ACTIONS(6247), + [anon_sym_use] = ACTIONS(6247), + [anon_sym_LBRACK] = ACTIONS(6247), + [anon_sym_LPAREN] = ACTIONS(6247), + [anon_sym_RPAREN] = ACTIONS(6247), + [anon_sym_DOLLAR] = ACTIONS(6247), + [anon_sym_error] = ACTIONS(6247), + [anon_sym_DASH] = ACTIONS(6247), + [anon_sym_break] = ACTIONS(6247), + [anon_sym_continue] = ACTIONS(6247), + [anon_sym_for] = ACTIONS(6247), + [anon_sym_loop] = ACTIONS(6247), + [anon_sym_while] = ACTIONS(6247), + [anon_sym_do] = ACTIONS(6247), + [anon_sym_if] = ACTIONS(6247), + [anon_sym_match] = ACTIONS(6247), + [anon_sym_LBRACE] = ACTIONS(6247), + [anon_sym_RBRACE] = ACTIONS(6247), + [anon_sym_DOT_DOT] = ACTIONS(6247), + [anon_sym_try] = ACTIONS(6247), + [anon_sym_return] = ACTIONS(6247), + [anon_sym_source] = ACTIONS(6247), + [anon_sym_source_DASHenv] = ACTIONS(6247), + [anon_sym_register] = ACTIONS(6247), + [anon_sym_hide] = ACTIONS(6247), + [anon_sym_hide_DASHenv] = ACTIONS(6247), + [anon_sym_overlay] = ACTIONS(6247), + [anon_sym_where] = ACTIONS(6247), + [anon_sym_not] = ACTIONS(6247), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6247), + [anon_sym_DOT_DOT_LT] = ACTIONS(6247), + [anon_sym_null] = ACTIONS(6247), + [anon_sym_true] = ACTIONS(6247), + [anon_sym_false] = ACTIONS(6247), + [aux_sym__val_number_decimal_token1] = ACTIONS(6247), + [aux_sym__val_number_decimal_token2] = ACTIONS(6247), + [anon_sym_DOT2] = ACTIONS(6247), + [aux_sym__val_number_decimal_token3] = ACTIONS(6247), + [aux_sym__val_number_token1] = ACTIONS(6247), + [aux_sym__val_number_token2] = ACTIONS(6247), + [aux_sym__val_number_token3] = ACTIONS(6247), + [aux_sym__val_number_token4] = ACTIONS(6247), + [aux_sym__val_number_token5] = ACTIONS(6247), + [aux_sym__val_number_token6] = ACTIONS(6247), + [anon_sym_0b] = ACTIONS(6247), + [anon_sym_0o] = ACTIONS(6247), + [anon_sym_0x] = ACTIONS(6247), + [sym_val_date] = ACTIONS(6247), + [anon_sym_DQUOTE] = ACTIONS(6247), + [sym__str_single_quotes] = ACTIONS(6247), + [sym__str_back_ticks] = ACTIONS(6247), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6247), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6247), + [anon_sym_CARET] = ACTIONS(6247), + [anon_sym_POUND] = ACTIONS(113), }, - [2100] = { - [sym_expr_unary] = STATE(5815), - [sym__expr_unary_minus] = STATE(5920), - [sym_expr_binary] = STATE(5815), - [sym__expr_binary_expression] = STATE(5852), - [sym_expr_parenthesized] = STATE(5815), - [sym__val_range] = STATE(10586), - [sym__value] = STATE(5815), - [sym_val_nothing] = STATE(5948), - [sym_val_bool] = STATE(5584), - [sym_val_variable] = STATE(5948), - [sym__var] = STATE(5027), - [sym_val_number] = STATE(5948), - [sym__val_number_decimal] = STATE(4459), - [sym__val_number] = STATE(5814), - [sym_val_duration] = STATE(5948), - [sym_val_filesize] = STATE(5948), - [sym_val_binary] = STATE(5948), - [sym_val_string] = STATE(5948), - [sym__str_double_quotes] = STATE(5661), - [sym_val_interpolated] = STATE(5948), - [sym__inter_single_quotes] = STATE(5778), - [sym__inter_double_quotes] = STATE(5857), - [sym_val_list] = STATE(5948), - [sym_val_record] = STATE(5948), - [sym_val_table] = STATE(5948), - [sym_val_closure] = STATE(5948), - [sym_unquoted] = STATE(5856), - [sym__unquoted_anonymous_prefix] = STATE(11268), - [sym_comment] = STATE(2100), - [anon_sym_LBRACK] = ACTIONS(3528), - [anon_sym_LPAREN] = ACTIONS(5685), - [anon_sym_DOLLAR] = ACTIONS(5687), - [anon_sym_DASH] = ACTIONS(4831), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_DOT_DOT] = ACTIONS(5689), - [anon_sym_not] = ACTIONS(4835), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5691), - [anon_sym_DOT_DOT_LT] = ACTIONS(5691), - [anon_sym_null] = ACTIONS(4839), - [anon_sym_true] = ACTIONS(4841), - [anon_sym_false] = ACTIONS(4841), - [aux_sym__val_number_decimal_token1] = ACTIONS(4843), - [aux_sym__val_number_decimal_token2] = ACTIONS(4845), - [anon_sym_DOT2] = ACTIONS(5693), - [aux_sym__val_number_decimal_token3] = ACTIONS(4849), - [aux_sym__val_number_token1] = ACTIONS(3546), - [aux_sym__val_number_token2] = ACTIONS(3546), - [aux_sym__val_number_token3] = ACTIONS(3546), - [aux_sym__val_number_token4] = ACTIONS(4851), - [aux_sym__val_number_token5] = ACTIONS(4851), - [aux_sym__val_number_token6] = ACTIONS(4851), - [anon_sym_0b] = ACTIONS(1848), - [anon_sym_0o] = ACTIONS(1850), - [anon_sym_0x] = ACTIONS(1850), - [sym_val_date] = ACTIONS(4853), - [anon_sym_DQUOTE] = ACTIONS(3552), - [sym__str_single_quotes] = ACTIONS(3554), - [sym__str_back_ticks] = ACTIONS(3554), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3558), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(1866), - [anon_sym_POUND] = ACTIONS(3), + [2374] = { + [sym_comment] = STATE(2374), + [anon_sym_export] = ACTIONS(5958), + [anon_sym_alias] = ACTIONS(5958), + [anon_sym_let] = ACTIONS(5958), + [anon_sym_let_DASHenv] = ACTIONS(5958), + [anon_sym_mut] = ACTIONS(5958), + [anon_sym_const] = ACTIONS(5958), + [anon_sym_SEMI] = ACTIONS(5958), + [sym_cmd_identifier] = ACTIONS(5958), + [anon_sym_LF] = ACTIONS(5960), + [anon_sym_def] = ACTIONS(5958), + [anon_sym_export_DASHenv] = ACTIONS(5958), + [anon_sym_extern] = ACTIONS(5958), + [anon_sym_module] = ACTIONS(5958), + [anon_sym_use] = ACTIONS(5958), + [anon_sym_LBRACK] = ACTIONS(5958), + [anon_sym_LPAREN] = ACTIONS(5958), + [anon_sym_RPAREN] = ACTIONS(5958), + [anon_sym_DOLLAR] = ACTIONS(5958), + [anon_sym_error] = ACTIONS(5958), + [anon_sym_DASH] = ACTIONS(5958), + [anon_sym_break] = ACTIONS(5958), + [anon_sym_continue] = ACTIONS(5958), + [anon_sym_for] = ACTIONS(5958), + [anon_sym_loop] = ACTIONS(5958), + [anon_sym_while] = ACTIONS(5958), + [anon_sym_do] = ACTIONS(5958), + [anon_sym_if] = ACTIONS(5958), + [anon_sym_match] = ACTIONS(5958), + [anon_sym_LBRACE] = ACTIONS(5958), + [anon_sym_RBRACE] = ACTIONS(5958), + [anon_sym_DOT_DOT] = ACTIONS(5958), + [anon_sym_try] = ACTIONS(5958), + [anon_sym_return] = ACTIONS(5958), + [anon_sym_source] = ACTIONS(5958), + [anon_sym_source_DASHenv] = ACTIONS(5958), + [anon_sym_register] = ACTIONS(5958), + [anon_sym_hide] = ACTIONS(5958), + [anon_sym_hide_DASHenv] = ACTIONS(5958), + [anon_sym_overlay] = ACTIONS(5958), + [anon_sym_where] = ACTIONS(5958), + [anon_sym_not] = ACTIONS(5958), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5958), + [anon_sym_DOT_DOT_LT] = ACTIONS(5958), + [anon_sym_null] = ACTIONS(5958), + [anon_sym_true] = ACTIONS(5958), + [anon_sym_false] = ACTIONS(5958), + [aux_sym__val_number_decimal_token1] = ACTIONS(5958), + [aux_sym__val_number_decimal_token2] = ACTIONS(5958), + [anon_sym_DOT2] = ACTIONS(5958), + [aux_sym__val_number_decimal_token3] = ACTIONS(5958), + [aux_sym__val_number_token1] = ACTIONS(5958), + [aux_sym__val_number_token2] = ACTIONS(5958), + [aux_sym__val_number_token3] = ACTIONS(5958), + [aux_sym__val_number_token4] = ACTIONS(5958), + [aux_sym__val_number_token5] = ACTIONS(5958), + [aux_sym__val_number_token6] = ACTIONS(5958), + [anon_sym_0b] = ACTIONS(5958), + [anon_sym_0o] = ACTIONS(5958), + [anon_sym_0x] = ACTIONS(5958), + [sym_val_date] = ACTIONS(5958), + [anon_sym_DQUOTE] = ACTIONS(5958), + [sym__str_single_quotes] = ACTIONS(5958), + [sym__str_back_ticks] = ACTIONS(5958), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5958), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5958), + [anon_sym_CARET] = ACTIONS(5958), + [anon_sym_POUND] = ACTIONS(113), }, - [2101] = { - [sym_expr_unary] = STATE(5815), - [sym__expr_unary_minus] = STATE(5920), - [sym_expr_binary] = STATE(5815), - [sym__expr_binary_expression] = STATE(5859), - [sym_expr_parenthesized] = STATE(5815), - [sym__val_range] = STATE(10586), - [sym__value] = STATE(5815), - [sym_val_nothing] = STATE(5948), - [sym_val_bool] = STATE(5584), - [sym_val_variable] = STATE(5948), - [sym__var] = STATE(5027), - [sym_val_number] = STATE(5948), - [sym__val_number_decimal] = STATE(4459), - [sym__val_number] = STATE(5814), - [sym_val_duration] = STATE(5948), - [sym_val_filesize] = STATE(5948), - [sym_val_binary] = STATE(5948), - [sym_val_string] = STATE(5948), - [sym__str_double_quotes] = STATE(5661), - [sym_val_interpolated] = STATE(5948), - [sym__inter_single_quotes] = STATE(5778), - [sym__inter_double_quotes] = STATE(5857), - [sym_val_list] = STATE(5948), - [sym_val_record] = STATE(5948), - [sym_val_table] = STATE(5948), - [sym_val_closure] = STATE(5948), - [sym_unquoted] = STATE(5870), - [sym__unquoted_anonymous_prefix] = STATE(11268), - [sym_comment] = STATE(2101), - [anon_sym_LBRACK] = ACTIONS(3528), - [anon_sym_LPAREN] = ACTIONS(5685), - [anon_sym_DOLLAR] = ACTIONS(5687), - [anon_sym_DASH] = ACTIONS(4831), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_DOT_DOT] = ACTIONS(5689), - [anon_sym_not] = ACTIONS(4835), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5691), - [anon_sym_DOT_DOT_LT] = ACTIONS(5691), - [anon_sym_null] = ACTIONS(4839), - [anon_sym_true] = ACTIONS(4841), - [anon_sym_false] = ACTIONS(4841), - [aux_sym__val_number_decimal_token1] = ACTIONS(4843), - [aux_sym__val_number_decimal_token2] = ACTIONS(4845), - [anon_sym_DOT2] = ACTIONS(5693), - [aux_sym__val_number_decimal_token3] = ACTIONS(4849), - [aux_sym__val_number_token1] = ACTIONS(3546), - [aux_sym__val_number_token2] = ACTIONS(3546), - [aux_sym__val_number_token3] = ACTIONS(3546), - [aux_sym__val_number_token4] = ACTIONS(4851), - [aux_sym__val_number_token5] = ACTIONS(4851), - [aux_sym__val_number_token6] = ACTIONS(4851), - [anon_sym_0b] = ACTIONS(1848), - [anon_sym_0o] = ACTIONS(1850), - [anon_sym_0x] = ACTIONS(1850), - [sym_val_date] = ACTIONS(4853), - [anon_sym_DQUOTE] = ACTIONS(3552), - [sym__str_single_quotes] = ACTIONS(3554), - [sym__str_back_ticks] = ACTIONS(3554), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3558), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(1866), - [anon_sym_POUND] = ACTIONS(3), + [2375] = { + [sym_comment] = STATE(2375), + [anon_sym_export] = ACTIONS(6251), + [anon_sym_alias] = ACTIONS(6251), + [anon_sym_let] = ACTIONS(6251), + [anon_sym_let_DASHenv] = ACTIONS(6251), + [anon_sym_mut] = ACTIONS(6251), + [anon_sym_const] = ACTIONS(6251), + [anon_sym_SEMI] = ACTIONS(6251), + [sym_cmd_identifier] = ACTIONS(6251), + [anon_sym_LF] = ACTIONS(6253), + [anon_sym_def] = ACTIONS(6251), + [anon_sym_export_DASHenv] = ACTIONS(6251), + [anon_sym_extern] = ACTIONS(6251), + [anon_sym_module] = ACTIONS(6251), + [anon_sym_use] = ACTIONS(6251), + [anon_sym_LBRACK] = ACTIONS(6251), + [anon_sym_LPAREN] = ACTIONS(6251), + [anon_sym_RPAREN] = ACTIONS(6251), + [anon_sym_DOLLAR] = ACTIONS(6251), + [anon_sym_error] = ACTIONS(6251), + [anon_sym_DASH] = ACTIONS(6251), + [anon_sym_break] = ACTIONS(6251), + [anon_sym_continue] = ACTIONS(6251), + [anon_sym_for] = ACTIONS(6251), + [anon_sym_loop] = ACTIONS(6251), + [anon_sym_while] = ACTIONS(6251), + [anon_sym_do] = ACTIONS(6251), + [anon_sym_if] = ACTIONS(6251), + [anon_sym_match] = ACTIONS(6251), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(6251), + [anon_sym_DOT_DOT] = ACTIONS(6251), + [anon_sym_try] = ACTIONS(6251), + [anon_sym_return] = ACTIONS(6251), + [anon_sym_source] = ACTIONS(6251), + [anon_sym_source_DASHenv] = ACTIONS(6251), + [anon_sym_register] = ACTIONS(6251), + [anon_sym_hide] = ACTIONS(6251), + [anon_sym_hide_DASHenv] = ACTIONS(6251), + [anon_sym_overlay] = ACTIONS(6251), + [anon_sym_where] = ACTIONS(6251), + [anon_sym_not] = ACTIONS(6251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6251), + [anon_sym_DOT_DOT_LT] = ACTIONS(6251), + [anon_sym_null] = ACTIONS(6251), + [anon_sym_true] = ACTIONS(6251), + [anon_sym_false] = ACTIONS(6251), + [aux_sym__val_number_decimal_token1] = ACTIONS(6251), + [aux_sym__val_number_decimal_token2] = ACTIONS(6251), + [anon_sym_DOT2] = ACTIONS(6251), + [aux_sym__val_number_decimal_token3] = ACTIONS(6251), + [aux_sym__val_number_token1] = ACTIONS(6251), + [aux_sym__val_number_token2] = ACTIONS(6251), + [aux_sym__val_number_token3] = ACTIONS(6251), + [aux_sym__val_number_token4] = ACTIONS(6251), + [aux_sym__val_number_token5] = ACTIONS(6251), + [aux_sym__val_number_token6] = ACTIONS(6251), + [anon_sym_0b] = ACTIONS(6251), + [anon_sym_0o] = ACTIONS(6251), + [anon_sym_0x] = ACTIONS(6251), + [sym_val_date] = ACTIONS(6251), + [anon_sym_DQUOTE] = ACTIONS(6251), + [sym__str_single_quotes] = ACTIONS(6251), + [sym__str_back_ticks] = ACTIONS(6251), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6251), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6251), + [anon_sym_CARET] = ACTIONS(6251), + [anon_sym_POUND] = ACTIONS(113), }, - [2102] = { - [sym_expr_unary] = STATE(5815), - [sym__expr_unary_minus] = STATE(5920), - [sym_expr_binary] = STATE(5815), - [sym__expr_binary_expression] = STATE(5874), - [sym_expr_parenthesized] = STATE(5815), - [sym__val_range] = STATE(10586), - [sym__value] = STATE(5815), - [sym_val_nothing] = STATE(5948), - [sym_val_bool] = STATE(5584), - [sym_val_variable] = STATE(5948), - [sym__var] = STATE(5027), - [sym_val_number] = STATE(5948), - [sym__val_number_decimal] = STATE(4459), - [sym__val_number] = STATE(5814), - [sym_val_duration] = STATE(5948), - [sym_val_filesize] = STATE(5948), - [sym_val_binary] = STATE(5948), - [sym_val_string] = STATE(5948), - [sym__str_double_quotes] = STATE(5661), - [sym_val_interpolated] = STATE(5948), - [sym__inter_single_quotes] = STATE(5778), - [sym__inter_double_quotes] = STATE(5857), - [sym_val_list] = STATE(5948), - [sym_val_record] = STATE(5948), - [sym_val_table] = STATE(5948), - [sym_val_closure] = STATE(5948), - [sym_unquoted] = STATE(5876), - [sym__unquoted_anonymous_prefix] = STATE(11268), - [sym_comment] = STATE(2102), - [anon_sym_LBRACK] = ACTIONS(3528), - [anon_sym_LPAREN] = ACTIONS(5685), - [anon_sym_DOLLAR] = ACTIONS(5687), - [anon_sym_DASH] = ACTIONS(4831), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_DOT_DOT] = ACTIONS(5689), - [anon_sym_not] = ACTIONS(4835), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5691), - [anon_sym_DOT_DOT_LT] = ACTIONS(5691), - [anon_sym_null] = ACTIONS(4839), - [anon_sym_true] = ACTIONS(4841), - [anon_sym_false] = ACTIONS(4841), - [aux_sym__val_number_decimal_token1] = ACTIONS(4843), - [aux_sym__val_number_decimal_token2] = ACTIONS(4845), - [anon_sym_DOT2] = ACTIONS(5693), - [aux_sym__val_number_decimal_token3] = ACTIONS(4849), - [aux_sym__val_number_token1] = ACTIONS(3546), - [aux_sym__val_number_token2] = ACTIONS(3546), - [aux_sym__val_number_token3] = ACTIONS(3546), - [aux_sym__val_number_token4] = ACTIONS(4851), - [aux_sym__val_number_token5] = ACTIONS(4851), - [aux_sym__val_number_token6] = ACTIONS(4851), - [anon_sym_0b] = ACTIONS(1848), - [anon_sym_0o] = ACTIONS(1850), - [anon_sym_0x] = ACTIONS(1850), - [sym_val_date] = ACTIONS(4853), - [anon_sym_DQUOTE] = ACTIONS(3552), - [sym__str_single_quotes] = ACTIONS(3554), - [sym__str_back_ticks] = ACTIONS(3554), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3558), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(1866), - [anon_sym_POUND] = ACTIONS(3), + [2376] = { + [sym_block] = STATE(2486), + [sym_comment] = STATE(2376), + [ts_builtin_sym_end] = ACTIONS(5775), + [anon_sym_export] = ACTIONS(5773), + [anon_sym_alias] = ACTIONS(5773), + [anon_sym_let] = ACTIONS(5773), + [anon_sym_let_DASHenv] = ACTIONS(5773), + [anon_sym_mut] = ACTIONS(5773), + [anon_sym_const] = ACTIONS(5773), + [anon_sym_SEMI] = ACTIONS(5773), + [sym_cmd_identifier] = ACTIONS(5773), + [anon_sym_LF] = ACTIONS(5775), + [anon_sym_def] = ACTIONS(5773), + [anon_sym_export_DASHenv] = ACTIONS(5773), + [anon_sym_extern] = ACTIONS(5773), + [anon_sym_module] = ACTIONS(5773), + [anon_sym_use] = ACTIONS(5773), + [anon_sym_LBRACK] = ACTIONS(5773), + [anon_sym_LPAREN] = ACTIONS(5773), + [anon_sym_DOLLAR] = ACTIONS(5773), + [anon_sym_error] = ACTIONS(5773), + [anon_sym_DASH] = ACTIONS(5773), + [anon_sym_break] = ACTIONS(5773), + [anon_sym_continue] = ACTIONS(5773), + [anon_sym_for] = ACTIONS(5773), + [anon_sym_loop] = ACTIONS(5773), + [anon_sym_while] = ACTIONS(5773), + [anon_sym_do] = ACTIONS(5773), + [anon_sym_if] = ACTIONS(5773), + [anon_sym_match] = ACTIONS(5773), + [anon_sym_LBRACE] = ACTIONS(6255), + [anon_sym_DOT_DOT] = ACTIONS(5773), + [anon_sym_try] = ACTIONS(5773), + [anon_sym_return] = ACTIONS(5773), + [anon_sym_source] = ACTIONS(5773), + [anon_sym_source_DASHenv] = ACTIONS(5773), + [anon_sym_register] = ACTIONS(5773), + [anon_sym_hide] = ACTIONS(5773), + [anon_sym_hide_DASHenv] = ACTIONS(5773), + [anon_sym_overlay] = ACTIONS(5773), + [anon_sym_where] = ACTIONS(5773), + [anon_sym_not] = ACTIONS(5773), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5773), + [anon_sym_DOT_DOT_LT] = ACTIONS(5773), + [anon_sym_null] = ACTIONS(5773), + [anon_sym_true] = ACTIONS(5773), + [anon_sym_false] = ACTIONS(5773), + [aux_sym__val_number_decimal_token1] = ACTIONS(5773), + [aux_sym__val_number_decimal_token2] = ACTIONS(5773), + [anon_sym_DOT2] = ACTIONS(5773), + [aux_sym__val_number_decimal_token3] = ACTIONS(5773), + [aux_sym__val_number_token1] = ACTIONS(5773), + [aux_sym__val_number_token2] = ACTIONS(5773), + [aux_sym__val_number_token3] = ACTIONS(5773), + [aux_sym__val_number_token4] = ACTIONS(5773), + [aux_sym__val_number_token5] = ACTIONS(5773), + [aux_sym__val_number_token6] = ACTIONS(5773), + [anon_sym_0b] = ACTIONS(5773), + [anon_sym_0o] = ACTIONS(5773), + [anon_sym_0x] = ACTIONS(5773), + [sym_val_date] = ACTIONS(5773), + [anon_sym_DQUOTE] = ACTIONS(5773), + [sym__str_single_quotes] = ACTIONS(5773), + [sym__str_back_ticks] = ACTIONS(5773), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5773), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5773), + [anon_sym_CARET] = ACTIONS(5773), + [anon_sym_POUND] = ACTIONS(113), }, - [2103] = { - [sym_expr_unary] = STATE(5815), - [sym__expr_unary_minus] = STATE(5920), - [sym_expr_binary] = STATE(5815), - [sym__expr_binary_expression] = STATE(5877), - [sym_expr_parenthesized] = STATE(5815), - [sym__val_range] = STATE(10586), - [sym__value] = STATE(5815), - [sym_val_nothing] = STATE(5948), - [sym_val_bool] = STATE(5584), - [sym_val_variable] = STATE(5948), - [sym__var] = STATE(5027), - [sym_val_number] = STATE(5948), - [sym__val_number_decimal] = STATE(4459), - [sym__val_number] = STATE(5814), - [sym_val_duration] = STATE(5948), - [sym_val_filesize] = STATE(5948), - [sym_val_binary] = STATE(5948), - [sym_val_string] = STATE(5948), - [sym__str_double_quotes] = STATE(5661), - [sym_val_interpolated] = STATE(5948), - [sym__inter_single_quotes] = STATE(5778), - [sym__inter_double_quotes] = STATE(5857), - [sym_val_list] = STATE(5948), - [sym_val_record] = STATE(5948), - [sym_val_table] = STATE(5948), - [sym_val_closure] = STATE(5948), - [sym_unquoted] = STATE(5878), - [sym__unquoted_anonymous_prefix] = STATE(11268), - [sym_comment] = STATE(2103), - [anon_sym_LBRACK] = ACTIONS(3528), - [anon_sym_LPAREN] = ACTIONS(5685), - [anon_sym_DOLLAR] = ACTIONS(5687), - [anon_sym_DASH] = ACTIONS(4831), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_DOT_DOT] = ACTIONS(5689), - [anon_sym_not] = ACTIONS(4835), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5691), - [anon_sym_DOT_DOT_LT] = ACTIONS(5691), - [anon_sym_null] = ACTIONS(4839), - [anon_sym_true] = ACTIONS(4841), - [anon_sym_false] = ACTIONS(4841), - [aux_sym__val_number_decimal_token1] = ACTIONS(4843), - [aux_sym__val_number_decimal_token2] = ACTIONS(4845), - [anon_sym_DOT2] = ACTIONS(5693), - [aux_sym__val_number_decimal_token3] = ACTIONS(4849), - [aux_sym__val_number_token1] = ACTIONS(3546), - [aux_sym__val_number_token2] = ACTIONS(3546), - [aux_sym__val_number_token3] = ACTIONS(3546), - [aux_sym__val_number_token4] = ACTIONS(4851), - [aux_sym__val_number_token5] = ACTIONS(4851), - [aux_sym__val_number_token6] = ACTIONS(4851), - [anon_sym_0b] = ACTIONS(1848), - [anon_sym_0o] = ACTIONS(1850), - [anon_sym_0x] = ACTIONS(1850), - [sym_val_date] = ACTIONS(4853), - [anon_sym_DQUOTE] = ACTIONS(3552), - [sym__str_single_quotes] = ACTIONS(3554), - [sym__str_back_ticks] = ACTIONS(3554), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3558), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(1866), - [anon_sym_POUND] = ACTIONS(3), + [2377] = { + [sym_comment] = STATE(2377), + [anon_sym_export] = ACTIONS(6110), + [anon_sym_alias] = ACTIONS(6110), + [anon_sym_let] = ACTIONS(6110), + [anon_sym_let_DASHenv] = ACTIONS(6110), + [anon_sym_mut] = ACTIONS(6110), + [anon_sym_const] = ACTIONS(6110), + [anon_sym_SEMI] = ACTIONS(6110), + [sym_cmd_identifier] = ACTIONS(6110), + [anon_sym_LF] = ACTIONS(6112), + [anon_sym_def] = ACTIONS(6110), + [anon_sym_export_DASHenv] = ACTIONS(6110), + [anon_sym_extern] = ACTIONS(6110), + [anon_sym_module] = ACTIONS(6110), + [anon_sym_use] = ACTIONS(6110), + [anon_sym_LBRACK] = ACTIONS(6110), + [anon_sym_LPAREN] = ACTIONS(6110), + [anon_sym_RPAREN] = ACTIONS(6110), + [anon_sym_DOLLAR] = ACTIONS(6110), + [anon_sym_error] = ACTIONS(6110), + [anon_sym_DASH] = ACTIONS(6110), + [anon_sym_break] = ACTIONS(6110), + [anon_sym_continue] = ACTIONS(6110), + [anon_sym_for] = ACTIONS(6110), + [anon_sym_loop] = ACTIONS(6110), + [anon_sym_while] = ACTIONS(6110), + [anon_sym_do] = ACTIONS(6110), + [anon_sym_if] = ACTIONS(6110), + [anon_sym_match] = ACTIONS(6110), + [anon_sym_LBRACE] = ACTIONS(6110), + [anon_sym_RBRACE] = ACTIONS(6110), + [anon_sym_DOT_DOT] = ACTIONS(6110), + [anon_sym_try] = ACTIONS(6110), + [anon_sym_return] = ACTIONS(6110), + [anon_sym_source] = ACTIONS(6110), + [anon_sym_source_DASHenv] = ACTIONS(6110), + [anon_sym_register] = ACTIONS(6110), + [anon_sym_hide] = ACTIONS(6110), + [anon_sym_hide_DASHenv] = ACTIONS(6110), + [anon_sym_overlay] = ACTIONS(6110), + [anon_sym_where] = ACTIONS(6110), + [anon_sym_not] = ACTIONS(6110), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6110), + [anon_sym_DOT_DOT_LT] = ACTIONS(6110), + [anon_sym_null] = ACTIONS(6110), + [anon_sym_true] = ACTIONS(6110), + [anon_sym_false] = ACTIONS(6110), + [aux_sym__val_number_decimal_token1] = ACTIONS(6110), + [aux_sym__val_number_decimal_token2] = ACTIONS(6110), + [anon_sym_DOT2] = ACTIONS(6110), + [aux_sym__val_number_decimal_token3] = ACTIONS(6110), + [aux_sym__val_number_token1] = ACTIONS(6110), + [aux_sym__val_number_token2] = ACTIONS(6110), + [aux_sym__val_number_token3] = ACTIONS(6110), + [aux_sym__val_number_token4] = ACTIONS(6110), + [aux_sym__val_number_token5] = ACTIONS(6110), + [aux_sym__val_number_token6] = ACTIONS(6110), + [anon_sym_0b] = ACTIONS(6110), + [anon_sym_0o] = ACTIONS(6110), + [anon_sym_0x] = ACTIONS(6110), + [sym_val_date] = ACTIONS(6110), + [anon_sym_DQUOTE] = ACTIONS(6110), + [sym__str_single_quotes] = ACTIONS(6110), + [sym__str_back_ticks] = ACTIONS(6110), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6110), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6110), + [anon_sym_CARET] = ACTIONS(6110), + [anon_sym_POUND] = ACTIONS(113), }, - [2104] = { - [sym_expr_unary] = STATE(5815), - [sym__expr_unary_minus] = STATE(5920), - [sym_expr_binary] = STATE(5815), - [sym__expr_binary_expression] = STATE(5880), - [sym_expr_parenthesized] = STATE(5815), - [sym__val_range] = STATE(10586), - [sym__value] = STATE(5815), - [sym_val_nothing] = STATE(5948), - [sym_val_bool] = STATE(5584), - [sym_val_variable] = STATE(5948), - [sym__var] = STATE(5027), - [sym_val_number] = STATE(5948), - [sym__val_number_decimal] = STATE(4459), - [sym__val_number] = STATE(5814), - [sym_val_duration] = STATE(5948), - [sym_val_filesize] = STATE(5948), - [sym_val_binary] = STATE(5948), - [sym_val_string] = STATE(5948), - [sym__str_double_quotes] = STATE(5661), - [sym_val_interpolated] = STATE(5948), - [sym__inter_single_quotes] = STATE(5778), - [sym__inter_double_quotes] = STATE(5857), - [sym_val_list] = STATE(5948), - [sym_val_record] = STATE(5948), - [sym_val_table] = STATE(5948), - [sym_val_closure] = STATE(5948), - [sym_unquoted] = STATE(5882), - [sym__unquoted_anonymous_prefix] = STATE(11268), - [sym_comment] = STATE(2104), - [anon_sym_LBRACK] = ACTIONS(3528), - [anon_sym_LPAREN] = ACTIONS(5685), - [anon_sym_DOLLAR] = ACTIONS(5687), - [anon_sym_DASH] = ACTIONS(4831), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_DOT_DOT] = ACTIONS(5689), - [anon_sym_not] = ACTIONS(4835), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5691), - [anon_sym_DOT_DOT_LT] = ACTIONS(5691), - [anon_sym_null] = ACTIONS(4839), - [anon_sym_true] = ACTIONS(4841), - [anon_sym_false] = ACTIONS(4841), - [aux_sym__val_number_decimal_token1] = ACTIONS(4843), - [aux_sym__val_number_decimal_token2] = ACTIONS(4845), - [anon_sym_DOT2] = ACTIONS(5693), - [aux_sym__val_number_decimal_token3] = ACTIONS(4849), - [aux_sym__val_number_token1] = ACTIONS(3546), - [aux_sym__val_number_token2] = ACTIONS(3546), - [aux_sym__val_number_token3] = ACTIONS(3546), - [aux_sym__val_number_token4] = ACTIONS(4851), - [aux_sym__val_number_token5] = ACTIONS(4851), - [aux_sym__val_number_token6] = ACTIONS(4851), - [anon_sym_0b] = ACTIONS(1848), - [anon_sym_0o] = ACTIONS(1850), - [anon_sym_0x] = ACTIONS(1850), - [sym_val_date] = ACTIONS(4853), - [anon_sym_DQUOTE] = ACTIONS(3552), - [sym__str_single_quotes] = ACTIONS(3554), - [sym__str_back_ticks] = ACTIONS(3554), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3558), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(1866), - [anon_sym_POUND] = ACTIONS(3), + [2378] = { + [sym_comment] = STATE(2378), + [ts_builtin_sym_end] = ACTIONS(1035), + [anon_sym_export] = ACTIONS(1033), + [anon_sym_alias] = ACTIONS(1033), + [anon_sym_let] = ACTIONS(1033), + [anon_sym_let_DASHenv] = ACTIONS(1033), + [anon_sym_mut] = ACTIONS(1033), + [anon_sym_const] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(1033), + [sym_cmd_identifier] = ACTIONS(1033), + [anon_sym_LF] = ACTIONS(1035), + [anon_sym_def] = ACTIONS(1033), + [anon_sym_export_DASHenv] = ACTIONS(1033), + [anon_sym_extern] = ACTIONS(1033), + [anon_sym_module] = ACTIONS(1033), + [anon_sym_use] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1033), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_error] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1033), + [anon_sym_break] = ACTIONS(1033), + [anon_sym_continue] = ACTIONS(1033), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_loop] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(1033), + [anon_sym_do] = ACTIONS(1033), + [anon_sym_if] = ACTIONS(1033), + [anon_sym_match] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_DOT_DOT] = ACTIONS(1033), + [anon_sym_try] = ACTIONS(1033), + [anon_sym_return] = ACTIONS(1033), + [anon_sym_source] = ACTIONS(1033), + [anon_sym_source_DASHenv] = ACTIONS(1033), + [anon_sym_register] = ACTIONS(1033), + [anon_sym_hide] = ACTIONS(1033), + [anon_sym_hide_DASHenv] = ACTIONS(1033), + [anon_sym_overlay] = ACTIONS(1033), + [anon_sym_STAR] = ACTIONS(1033), + [anon_sym_where] = ACTIONS(1033), + [anon_sym_not] = ACTIONS(1033), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1033), + [anon_sym_DOT_DOT_LT] = ACTIONS(1033), + [anon_sym_null] = ACTIONS(1033), + [anon_sym_true] = ACTIONS(1033), + [anon_sym_false] = ACTIONS(1033), + [aux_sym__val_number_decimal_token1] = ACTIONS(1033), + [aux_sym__val_number_decimal_token2] = ACTIONS(1033), + [anon_sym_DOT2] = ACTIONS(1033), + [aux_sym__val_number_decimal_token3] = ACTIONS(1033), + [aux_sym__val_number_token1] = ACTIONS(1033), + [aux_sym__val_number_token2] = ACTIONS(1033), + [aux_sym__val_number_token3] = ACTIONS(1033), + [aux_sym__val_number_token4] = ACTIONS(1033), + [aux_sym__val_number_token5] = ACTIONS(1033), + [aux_sym__val_number_token6] = ACTIONS(1033), + [anon_sym_0b] = ACTIONS(1033), + [anon_sym_0o] = ACTIONS(1033), + [anon_sym_0x] = ACTIONS(1033), + [sym_val_date] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [sym__str_single_quotes] = ACTIONS(1033), + [sym__str_back_ticks] = ACTIONS(1033), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1033), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1033), + [anon_sym_CARET] = ACTIONS(1033), + [anon_sym_POUND] = ACTIONS(113), }, - [2105] = { - [sym_expr_unary] = STATE(5815), - [sym__expr_unary_minus] = STATE(5920), - [sym_expr_binary] = STATE(5815), - [sym__expr_binary_expression] = STATE(5886), - [sym_expr_parenthesized] = STATE(5815), - [sym__val_range] = STATE(10586), - [sym__value] = STATE(5815), - [sym_val_nothing] = STATE(5948), - [sym_val_bool] = STATE(5584), - [sym_val_variable] = STATE(5948), - [sym__var] = STATE(5027), - [sym_val_number] = STATE(5948), - [sym__val_number_decimal] = STATE(4459), - [sym__val_number] = STATE(5814), - [sym_val_duration] = STATE(5948), - [sym_val_filesize] = STATE(5948), - [sym_val_binary] = STATE(5948), - [sym_val_string] = STATE(5948), - [sym__str_double_quotes] = STATE(5661), - [sym_val_interpolated] = STATE(5948), - [sym__inter_single_quotes] = STATE(5778), - [sym__inter_double_quotes] = STATE(5857), - [sym_val_list] = STATE(5948), - [sym_val_record] = STATE(5948), - [sym_val_table] = STATE(5948), - [sym_val_closure] = STATE(5948), - [sym_unquoted] = STATE(5888), - [sym__unquoted_anonymous_prefix] = STATE(11268), - [sym_comment] = STATE(2105), - [anon_sym_LBRACK] = ACTIONS(3528), - [anon_sym_LPAREN] = ACTIONS(5685), - [anon_sym_DOLLAR] = ACTIONS(5687), - [anon_sym_DASH] = ACTIONS(4831), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_DOT_DOT] = ACTIONS(5689), - [anon_sym_not] = ACTIONS(4835), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5691), - [anon_sym_DOT_DOT_LT] = ACTIONS(5691), - [anon_sym_null] = ACTIONS(4839), - [anon_sym_true] = ACTIONS(4841), - [anon_sym_false] = ACTIONS(4841), - [aux_sym__val_number_decimal_token1] = ACTIONS(4843), - [aux_sym__val_number_decimal_token2] = ACTIONS(4845), - [anon_sym_DOT2] = ACTIONS(5693), - [aux_sym__val_number_decimal_token3] = ACTIONS(4849), - [aux_sym__val_number_token1] = ACTIONS(3546), - [aux_sym__val_number_token2] = ACTIONS(3546), - [aux_sym__val_number_token3] = ACTIONS(3546), - [aux_sym__val_number_token4] = ACTIONS(4851), - [aux_sym__val_number_token5] = ACTIONS(4851), - [aux_sym__val_number_token6] = ACTIONS(4851), - [anon_sym_0b] = ACTIONS(1848), - [anon_sym_0o] = ACTIONS(1850), - [anon_sym_0x] = ACTIONS(1850), - [sym_val_date] = ACTIONS(4853), - [anon_sym_DQUOTE] = ACTIONS(3552), - [sym__str_single_quotes] = ACTIONS(3554), - [sym__str_back_ticks] = ACTIONS(3554), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3558), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(1866), - [anon_sym_POUND] = ACTIONS(3), + [2379] = { + [sym_comment] = STATE(2379), + [anon_sym_export] = ACTIONS(6021), + [anon_sym_alias] = ACTIONS(6021), + [anon_sym_let] = ACTIONS(6021), + [anon_sym_let_DASHenv] = ACTIONS(6021), + [anon_sym_mut] = ACTIONS(6021), + [anon_sym_const] = ACTIONS(6021), + [anon_sym_SEMI] = ACTIONS(6021), + [sym_cmd_identifier] = ACTIONS(6021), + [anon_sym_LF] = ACTIONS(6023), + [anon_sym_def] = ACTIONS(6021), + [anon_sym_export_DASHenv] = ACTIONS(6021), + [anon_sym_extern] = ACTIONS(6021), + [anon_sym_module] = ACTIONS(6021), + [anon_sym_use] = ACTIONS(6021), + [anon_sym_LBRACK] = ACTIONS(6021), + [anon_sym_LPAREN] = ACTIONS(6021), + [anon_sym_RPAREN] = ACTIONS(6021), + [anon_sym_DOLLAR] = ACTIONS(6021), + [anon_sym_error] = ACTIONS(6021), + [anon_sym_DASH] = ACTIONS(6021), + [anon_sym_break] = ACTIONS(6021), + [anon_sym_continue] = ACTIONS(6021), + [anon_sym_for] = ACTIONS(6021), + [anon_sym_loop] = ACTIONS(6021), + [anon_sym_while] = ACTIONS(6021), + [anon_sym_do] = ACTIONS(6021), + [anon_sym_if] = ACTIONS(6021), + [anon_sym_match] = ACTIONS(6021), + [anon_sym_LBRACE] = ACTIONS(6021), + [anon_sym_RBRACE] = ACTIONS(6021), + [anon_sym_DOT_DOT] = ACTIONS(6021), + [anon_sym_try] = ACTIONS(6021), + [anon_sym_return] = ACTIONS(6021), + [anon_sym_source] = ACTIONS(6021), + [anon_sym_source_DASHenv] = ACTIONS(6021), + [anon_sym_register] = ACTIONS(6021), + [anon_sym_hide] = ACTIONS(6021), + [anon_sym_hide_DASHenv] = ACTIONS(6021), + [anon_sym_overlay] = ACTIONS(6021), + [anon_sym_where] = ACTIONS(6021), + [anon_sym_not] = ACTIONS(6021), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6021), + [anon_sym_DOT_DOT_LT] = ACTIONS(6021), + [anon_sym_null] = ACTIONS(6021), + [anon_sym_true] = ACTIONS(6021), + [anon_sym_false] = ACTIONS(6021), + [aux_sym__val_number_decimal_token1] = ACTIONS(6021), + [aux_sym__val_number_decimal_token2] = ACTIONS(6021), + [anon_sym_DOT2] = ACTIONS(6021), + [aux_sym__val_number_decimal_token3] = ACTIONS(6021), + [aux_sym__val_number_token1] = ACTIONS(6021), + [aux_sym__val_number_token2] = ACTIONS(6021), + [aux_sym__val_number_token3] = ACTIONS(6021), + [aux_sym__val_number_token4] = ACTIONS(6021), + [aux_sym__val_number_token5] = ACTIONS(6021), + [aux_sym__val_number_token6] = ACTIONS(6021), + [anon_sym_0b] = ACTIONS(6021), + [anon_sym_0o] = ACTIONS(6021), + [anon_sym_0x] = ACTIONS(6021), + [sym_val_date] = ACTIONS(6021), + [anon_sym_DQUOTE] = ACTIONS(6021), + [sym__str_single_quotes] = ACTIONS(6021), + [sym__str_back_ticks] = ACTIONS(6021), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6021), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6021), + [anon_sym_CARET] = ACTIONS(6021), + [anon_sym_POUND] = ACTIONS(113), }, - [2106] = { - [sym_expr_unary] = STATE(5815), - [sym__expr_unary_minus] = STATE(5920), - [sym_expr_binary] = STATE(5815), - [sym__expr_binary_expression] = STATE(5898), - [sym_expr_parenthesized] = STATE(5815), - [sym__val_range] = STATE(10586), - [sym__value] = STATE(5815), - [sym_val_nothing] = STATE(5948), - [sym_val_bool] = STATE(5584), - [sym_val_variable] = STATE(5948), - [sym__var] = STATE(5027), - [sym_val_number] = STATE(5948), - [sym__val_number_decimal] = STATE(4459), - [sym__val_number] = STATE(5814), - [sym_val_duration] = STATE(5948), - [sym_val_filesize] = STATE(5948), - [sym_val_binary] = STATE(5948), - [sym_val_string] = STATE(5948), - [sym__str_double_quotes] = STATE(5661), - [sym_val_interpolated] = STATE(5948), - [sym__inter_single_quotes] = STATE(5778), - [sym__inter_double_quotes] = STATE(5857), - [sym_val_list] = STATE(5948), - [sym_val_record] = STATE(5948), - [sym_val_table] = STATE(5948), - [sym_val_closure] = STATE(5948), - [sym_unquoted] = STATE(5900), - [sym__unquoted_anonymous_prefix] = STATE(11268), - [sym_comment] = STATE(2106), - [anon_sym_LBRACK] = ACTIONS(3528), - [anon_sym_LPAREN] = ACTIONS(5685), - [anon_sym_DOLLAR] = ACTIONS(5687), - [anon_sym_DASH] = ACTIONS(4831), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_DOT_DOT] = ACTIONS(5689), - [anon_sym_not] = ACTIONS(4835), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5691), - [anon_sym_DOT_DOT_LT] = ACTIONS(5691), - [anon_sym_null] = ACTIONS(4839), - [anon_sym_true] = ACTIONS(4841), - [anon_sym_false] = ACTIONS(4841), - [aux_sym__val_number_decimal_token1] = ACTIONS(4843), - [aux_sym__val_number_decimal_token2] = ACTIONS(4845), - [anon_sym_DOT2] = ACTIONS(5693), - [aux_sym__val_number_decimal_token3] = ACTIONS(4849), - [aux_sym__val_number_token1] = ACTIONS(3546), - [aux_sym__val_number_token2] = ACTIONS(3546), - [aux_sym__val_number_token3] = ACTIONS(3546), - [aux_sym__val_number_token4] = ACTIONS(4851), - [aux_sym__val_number_token5] = ACTIONS(4851), - [aux_sym__val_number_token6] = ACTIONS(4851), - [anon_sym_0b] = ACTIONS(1848), - [anon_sym_0o] = ACTIONS(1850), - [anon_sym_0x] = ACTIONS(1850), - [sym_val_date] = ACTIONS(4853), - [anon_sym_DQUOTE] = ACTIONS(3552), - [sym__str_single_quotes] = ACTIONS(3554), - [sym__str_back_ticks] = ACTIONS(3554), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3558), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(1866), - [anon_sym_POUND] = ACTIONS(3), + [2380] = { + [sym_comment] = STATE(2380), + [ts_builtin_sym_end] = ACTIONS(5788), + [anon_sym_export] = ACTIONS(5786), + [anon_sym_alias] = ACTIONS(5786), + [anon_sym_let] = ACTIONS(5786), + [anon_sym_let_DASHenv] = ACTIONS(5786), + [anon_sym_mut] = ACTIONS(5786), + [anon_sym_const] = ACTIONS(5786), + [anon_sym_SEMI] = ACTIONS(5786), + [sym_cmd_identifier] = ACTIONS(5786), + [anon_sym_LF] = ACTIONS(5788), + [anon_sym_def] = ACTIONS(5786), + [anon_sym_export_DASHenv] = ACTIONS(5786), + [anon_sym_extern] = ACTIONS(5786), + [anon_sym_module] = ACTIONS(5786), + [anon_sym_use] = ACTIONS(5786), + [anon_sym_LBRACK] = ACTIONS(5786), + [anon_sym_LPAREN] = ACTIONS(5786), + [anon_sym_PIPE] = ACTIONS(5786), + [anon_sym_DOLLAR] = ACTIONS(5786), + [anon_sym_error] = ACTIONS(5786), + [anon_sym_DASH] = ACTIONS(5786), + [anon_sym_break] = ACTIONS(5786), + [anon_sym_continue] = ACTIONS(5786), + [anon_sym_for] = ACTIONS(5786), + [anon_sym_loop] = ACTIONS(5786), + [anon_sym_while] = ACTIONS(5786), + [anon_sym_do] = ACTIONS(5786), + [anon_sym_if] = ACTIONS(5786), + [anon_sym_match] = ACTIONS(5786), + [anon_sym_LBRACE] = ACTIONS(5786), + [anon_sym_DOT_DOT] = ACTIONS(5786), + [anon_sym_try] = ACTIONS(5786), + [anon_sym_return] = ACTIONS(5786), + [anon_sym_source] = ACTIONS(5786), + [anon_sym_source_DASHenv] = ACTIONS(5786), + [anon_sym_register] = ACTIONS(5786), + [anon_sym_hide] = ACTIONS(5786), + [anon_sym_hide_DASHenv] = ACTIONS(5786), + [anon_sym_overlay] = ACTIONS(5786), + [anon_sym_where] = ACTIONS(5786), + [anon_sym_not] = ACTIONS(5786), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5786), + [anon_sym_DOT_DOT_LT] = ACTIONS(5786), + [anon_sym_null] = ACTIONS(5786), + [anon_sym_true] = ACTIONS(5786), + [anon_sym_false] = ACTIONS(5786), + [aux_sym__val_number_decimal_token1] = ACTIONS(5786), + [aux_sym__val_number_decimal_token2] = ACTIONS(5786), + [anon_sym_DOT2] = ACTIONS(5786), + [aux_sym__val_number_decimal_token3] = ACTIONS(5786), + [aux_sym__val_number_token1] = ACTIONS(5786), + [aux_sym__val_number_token2] = ACTIONS(5786), + [aux_sym__val_number_token3] = ACTIONS(5786), + [aux_sym__val_number_token4] = ACTIONS(5786), + [aux_sym__val_number_token5] = ACTIONS(5786), + [aux_sym__val_number_token6] = ACTIONS(5786), + [anon_sym_0b] = ACTIONS(5786), + [anon_sym_0o] = ACTIONS(5786), + [anon_sym_0x] = ACTIONS(5786), + [sym_val_date] = ACTIONS(5786), + [anon_sym_DQUOTE] = ACTIONS(5786), + [sym__str_single_quotes] = ACTIONS(5786), + [sym__str_back_ticks] = ACTIONS(5786), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5786), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5786), + [anon_sym_CARET] = ACTIONS(5786), + [anon_sym_POUND] = ACTIONS(113), }, - [2107] = { - [sym_expr_unary] = STATE(5815), - [sym__expr_unary_minus] = STATE(5920), - [sym_expr_binary] = STATE(5815), - [sym__expr_binary_expression] = STATE(5939), - [sym_expr_parenthesized] = STATE(5815), - [sym__val_range] = STATE(10586), - [sym__value] = STATE(5815), - [sym_val_nothing] = STATE(5948), - [sym_val_bool] = STATE(5584), - [sym_val_variable] = STATE(5948), - [sym__var] = STATE(5027), - [sym_val_number] = STATE(5948), - [sym__val_number_decimal] = STATE(4459), - [sym__val_number] = STATE(5814), - [sym_val_duration] = STATE(5948), - [sym_val_filesize] = STATE(5948), - [sym_val_binary] = STATE(5948), - [sym_val_string] = STATE(5948), - [sym__str_double_quotes] = STATE(5661), - [sym_val_interpolated] = STATE(5948), - [sym__inter_single_quotes] = STATE(5778), - [sym__inter_double_quotes] = STATE(5857), - [sym_val_list] = STATE(5948), - [sym_val_record] = STATE(5948), - [sym_val_table] = STATE(5948), - [sym_val_closure] = STATE(5948), - [sym_unquoted] = STATE(5812), - [sym__unquoted_anonymous_prefix] = STATE(11268), - [sym_comment] = STATE(2107), - [anon_sym_LBRACK] = ACTIONS(3528), - [anon_sym_LPAREN] = ACTIONS(5685), - [anon_sym_DOLLAR] = ACTIONS(5687), - [anon_sym_DASH] = ACTIONS(4831), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_DOT_DOT] = ACTIONS(5689), - [anon_sym_not] = ACTIONS(4835), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5691), - [anon_sym_DOT_DOT_LT] = ACTIONS(5691), - [anon_sym_null] = ACTIONS(4839), - [anon_sym_true] = ACTIONS(4841), - [anon_sym_false] = ACTIONS(4841), - [aux_sym__val_number_decimal_token1] = ACTIONS(4843), - [aux_sym__val_number_decimal_token2] = ACTIONS(4845), - [anon_sym_DOT2] = ACTIONS(5693), - [aux_sym__val_number_decimal_token3] = ACTIONS(4849), - [aux_sym__val_number_token1] = ACTIONS(3546), - [aux_sym__val_number_token2] = ACTIONS(3546), - [aux_sym__val_number_token3] = ACTIONS(3546), - [aux_sym__val_number_token4] = ACTIONS(4851), - [aux_sym__val_number_token5] = ACTIONS(4851), - [aux_sym__val_number_token6] = ACTIONS(4851), - [anon_sym_0b] = ACTIONS(1848), - [anon_sym_0o] = ACTIONS(1850), - [anon_sym_0x] = ACTIONS(1850), - [sym_val_date] = ACTIONS(4853), - [anon_sym_DQUOTE] = ACTIONS(3552), - [sym__str_single_quotes] = ACTIONS(3554), - [sym__str_back_ticks] = ACTIONS(3554), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3558), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(1866), - [anon_sym_POUND] = ACTIONS(3), + [2381] = { + [sym_block] = STATE(2498), + [sym_comment] = STATE(2381), + [ts_builtin_sym_end] = ACTIONS(5823), + [anon_sym_export] = ACTIONS(5821), + [anon_sym_alias] = ACTIONS(5821), + [anon_sym_let] = ACTIONS(5821), + [anon_sym_let_DASHenv] = ACTIONS(5821), + [anon_sym_mut] = ACTIONS(5821), + [anon_sym_const] = ACTIONS(5821), + [anon_sym_SEMI] = ACTIONS(5821), + [sym_cmd_identifier] = ACTIONS(5821), + [anon_sym_LF] = ACTIONS(5823), + [anon_sym_def] = ACTIONS(5821), + [anon_sym_export_DASHenv] = ACTIONS(5821), + [anon_sym_extern] = ACTIONS(5821), + [anon_sym_module] = ACTIONS(5821), + [anon_sym_use] = ACTIONS(5821), + [anon_sym_LBRACK] = ACTIONS(5821), + [anon_sym_LPAREN] = ACTIONS(5821), + [anon_sym_DOLLAR] = ACTIONS(5821), + [anon_sym_error] = ACTIONS(5821), + [anon_sym_DASH] = ACTIONS(5821), + [anon_sym_break] = ACTIONS(5821), + [anon_sym_continue] = ACTIONS(5821), + [anon_sym_for] = ACTIONS(5821), + [anon_sym_loop] = ACTIONS(5821), + [anon_sym_while] = ACTIONS(5821), + [anon_sym_do] = ACTIONS(5821), + [anon_sym_if] = ACTIONS(5821), + [anon_sym_match] = ACTIONS(5821), + [anon_sym_LBRACE] = ACTIONS(5944), + [anon_sym_DOT_DOT] = ACTIONS(5821), + [anon_sym_try] = ACTIONS(5821), + [anon_sym_return] = ACTIONS(5821), + [anon_sym_source] = ACTIONS(5821), + [anon_sym_source_DASHenv] = ACTIONS(5821), + [anon_sym_register] = ACTIONS(5821), + [anon_sym_hide] = ACTIONS(5821), + [anon_sym_hide_DASHenv] = ACTIONS(5821), + [anon_sym_overlay] = ACTIONS(5821), + [anon_sym_where] = ACTIONS(5821), + [anon_sym_not] = ACTIONS(5821), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5821), + [anon_sym_DOT_DOT_LT] = ACTIONS(5821), + [anon_sym_null] = ACTIONS(5821), + [anon_sym_true] = ACTIONS(5821), + [anon_sym_false] = ACTIONS(5821), + [aux_sym__val_number_decimal_token1] = ACTIONS(5821), + [aux_sym__val_number_decimal_token2] = ACTIONS(5821), + [anon_sym_DOT2] = ACTIONS(5821), + [aux_sym__val_number_decimal_token3] = ACTIONS(5821), + [aux_sym__val_number_token1] = ACTIONS(5821), + [aux_sym__val_number_token2] = ACTIONS(5821), + [aux_sym__val_number_token3] = ACTIONS(5821), + [aux_sym__val_number_token4] = ACTIONS(5821), + [aux_sym__val_number_token5] = ACTIONS(5821), + [aux_sym__val_number_token6] = ACTIONS(5821), + [anon_sym_0b] = ACTIONS(5821), + [anon_sym_0o] = ACTIONS(5821), + [anon_sym_0x] = ACTIONS(5821), + [sym_val_date] = ACTIONS(5821), + [anon_sym_DQUOTE] = ACTIONS(5821), + [sym__str_single_quotes] = ACTIONS(5821), + [sym__str_back_ticks] = ACTIONS(5821), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5821), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5821), + [anon_sym_CARET] = ACTIONS(5821), + [anon_sym_POUND] = ACTIONS(113), }, - [2108] = { - [sym_expr_unary] = STATE(2556), - [sym__expr_unary_minus] = STATE(2550), - [sym_expr_binary] = STATE(2556), - [sym__expr_binary_expression] = STATE(2573), - [sym_expr_parenthesized] = STATE(2556), - [sym__val_range] = STATE(10676), - [sym__value] = STATE(2556), - [sym_val_nothing] = STATE(2599), - [sym_val_bool] = STATE(1894), - [sym_val_variable] = STATE(2599), - [sym__var] = STATE(1504), - [sym_val_number] = STATE(2599), - [sym__val_number_decimal] = STATE(1193), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2599), - [sym_val_filesize] = STATE(2599), - [sym_val_binary] = STATE(2599), - [sym_val_string] = STATE(2599), - [sym__str_double_quotes] = STATE(2611), - [sym_val_interpolated] = STATE(2599), - [sym__inter_single_quotes] = STATE(2612), - [sym__inter_double_quotes] = STATE(2613), - [sym_val_list] = STATE(2599), - [sym_val_record] = STATE(2599), - [sym_val_table] = STATE(2599), - [sym_val_closure] = STATE(2599), - [sym_unquoted] = STATE(2557), - [sym__unquoted_anonymous_prefix] = STATE(11354), - [sym_comment] = STATE(2108), - [anon_sym_LBRACK] = ACTIONS(5695), - [anon_sym_LPAREN] = ACTIONS(5697), - [anon_sym_DOLLAR] = ACTIONS(5699), - [anon_sym_DASH] = ACTIONS(5701), - [anon_sym_LBRACE] = ACTIONS(5703), - [anon_sym_DOT_DOT] = ACTIONS(5705), - [anon_sym_not] = ACTIONS(5707), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5709), - [anon_sym_DOT_DOT_LT] = ACTIONS(5709), - [anon_sym_null] = ACTIONS(5711), - [anon_sym_true] = ACTIONS(5713), - [anon_sym_false] = ACTIONS(5713), - [aux_sym__val_number_decimal_token1] = ACTIONS(5715), - [aux_sym__val_number_decimal_token2] = ACTIONS(5717), - [anon_sym_DOT2] = ACTIONS(5719), - [aux_sym__val_number_decimal_token3] = ACTIONS(5721), - [aux_sym__val_number_token1] = ACTIONS(5723), - [aux_sym__val_number_token2] = ACTIONS(5723), - [aux_sym__val_number_token3] = ACTIONS(5723), - [aux_sym__val_number_token4] = ACTIONS(5725), - [aux_sym__val_number_token5] = ACTIONS(5725), - [aux_sym__val_number_token6] = ACTIONS(5725), - [anon_sym_0b] = ACTIONS(5727), - [anon_sym_0o] = ACTIONS(5729), - [anon_sym_0x] = ACTIONS(5729), - [sym_val_date] = ACTIONS(5731), - [anon_sym_DQUOTE] = ACTIONS(5733), - [sym__str_single_quotes] = ACTIONS(5735), - [sym__str_back_ticks] = ACTIONS(5735), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5737), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5739), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5741), - [anon_sym_POUND] = ACTIONS(3), + [2382] = { + [sym_block] = STATE(2499), + [sym_comment] = STATE(2382), + [ts_builtin_sym_end] = ACTIONS(5823), + [anon_sym_export] = ACTIONS(5821), + [anon_sym_alias] = ACTIONS(5821), + [anon_sym_let] = ACTIONS(5821), + [anon_sym_let_DASHenv] = ACTIONS(5821), + [anon_sym_mut] = ACTIONS(5821), + [anon_sym_const] = ACTIONS(5821), + [anon_sym_SEMI] = ACTIONS(5821), + [sym_cmd_identifier] = ACTIONS(5821), + [anon_sym_LF] = ACTIONS(5823), + [anon_sym_def] = ACTIONS(5821), + [anon_sym_export_DASHenv] = ACTIONS(5821), + [anon_sym_extern] = ACTIONS(5821), + [anon_sym_module] = ACTIONS(5821), + [anon_sym_use] = ACTIONS(5821), + [anon_sym_LBRACK] = ACTIONS(5821), + [anon_sym_LPAREN] = ACTIONS(5821), + [anon_sym_DOLLAR] = ACTIONS(5821), + [anon_sym_error] = ACTIONS(5821), + [anon_sym_DASH] = ACTIONS(5821), + [anon_sym_break] = ACTIONS(5821), + [anon_sym_continue] = ACTIONS(5821), + [anon_sym_for] = ACTIONS(5821), + [anon_sym_loop] = ACTIONS(5821), + [anon_sym_while] = ACTIONS(5821), + [anon_sym_do] = ACTIONS(5821), + [anon_sym_if] = ACTIONS(5821), + [anon_sym_match] = ACTIONS(5821), + [anon_sym_LBRACE] = ACTIONS(5944), + [anon_sym_DOT_DOT] = ACTIONS(5821), + [anon_sym_try] = ACTIONS(5821), + [anon_sym_return] = ACTIONS(5821), + [anon_sym_source] = ACTIONS(5821), + [anon_sym_source_DASHenv] = ACTIONS(5821), + [anon_sym_register] = ACTIONS(5821), + [anon_sym_hide] = ACTIONS(5821), + [anon_sym_hide_DASHenv] = ACTIONS(5821), + [anon_sym_overlay] = ACTIONS(5821), + [anon_sym_where] = ACTIONS(5821), + [anon_sym_not] = ACTIONS(5821), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5821), + [anon_sym_DOT_DOT_LT] = ACTIONS(5821), + [anon_sym_null] = ACTIONS(5821), + [anon_sym_true] = ACTIONS(5821), + [anon_sym_false] = ACTIONS(5821), + [aux_sym__val_number_decimal_token1] = ACTIONS(5821), + [aux_sym__val_number_decimal_token2] = ACTIONS(5821), + [anon_sym_DOT2] = ACTIONS(5821), + [aux_sym__val_number_decimal_token3] = ACTIONS(5821), + [aux_sym__val_number_token1] = ACTIONS(5821), + [aux_sym__val_number_token2] = ACTIONS(5821), + [aux_sym__val_number_token3] = ACTIONS(5821), + [aux_sym__val_number_token4] = ACTIONS(5821), + [aux_sym__val_number_token5] = ACTIONS(5821), + [aux_sym__val_number_token6] = ACTIONS(5821), + [anon_sym_0b] = ACTIONS(5821), + [anon_sym_0o] = ACTIONS(5821), + [anon_sym_0x] = ACTIONS(5821), + [sym_val_date] = ACTIONS(5821), + [anon_sym_DQUOTE] = ACTIONS(5821), + [sym__str_single_quotes] = ACTIONS(5821), + [sym__str_back_ticks] = ACTIONS(5821), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5821), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5821), + [anon_sym_CARET] = ACTIONS(5821), + [anon_sym_POUND] = ACTIONS(113), }, - [2109] = { - [sym_expr_unary] = STATE(2556), - [sym__expr_unary_minus] = STATE(2550), - [sym_expr_binary] = STATE(2556), - [sym__expr_binary_expression] = STATE(2574), - [sym_expr_parenthesized] = STATE(2556), - [sym__val_range] = STATE(10676), - [sym__value] = STATE(2556), - [sym_val_nothing] = STATE(2599), - [sym_val_bool] = STATE(1894), - [sym_val_variable] = STATE(2599), - [sym__var] = STATE(1504), - [sym_val_number] = STATE(2599), - [sym__val_number_decimal] = STATE(1193), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2599), - [sym_val_filesize] = STATE(2599), - [sym_val_binary] = STATE(2599), - [sym_val_string] = STATE(2599), - [sym__str_double_quotes] = STATE(2611), - [sym_val_interpolated] = STATE(2599), - [sym__inter_single_quotes] = STATE(2612), - [sym__inter_double_quotes] = STATE(2613), - [sym_val_list] = STATE(2599), - [sym_val_record] = STATE(2599), - [sym_val_table] = STATE(2599), - [sym_val_closure] = STATE(2599), - [sym_unquoted] = STATE(2558), - [sym__unquoted_anonymous_prefix] = STATE(11354), - [sym_comment] = STATE(2109), - [anon_sym_LBRACK] = ACTIONS(5695), - [anon_sym_LPAREN] = ACTIONS(5697), - [anon_sym_DOLLAR] = ACTIONS(5699), - [anon_sym_DASH] = ACTIONS(5701), - [anon_sym_LBRACE] = ACTIONS(5703), - [anon_sym_DOT_DOT] = ACTIONS(5705), - [anon_sym_not] = ACTIONS(5707), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5709), - [anon_sym_DOT_DOT_LT] = ACTIONS(5709), - [anon_sym_null] = ACTIONS(5711), - [anon_sym_true] = ACTIONS(5713), - [anon_sym_false] = ACTIONS(5713), - [aux_sym__val_number_decimal_token1] = ACTIONS(5715), - [aux_sym__val_number_decimal_token2] = ACTIONS(5717), - [anon_sym_DOT2] = ACTIONS(5719), - [aux_sym__val_number_decimal_token3] = ACTIONS(5721), - [aux_sym__val_number_token1] = ACTIONS(5723), - [aux_sym__val_number_token2] = ACTIONS(5723), - [aux_sym__val_number_token3] = ACTIONS(5723), - [aux_sym__val_number_token4] = ACTIONS(5725), - [aux_sym__val_number_token5] = ACTIONS(5725), - [aux_sym__val_number_token6] = ACTIONS(5725), - [anon_sym_0b] = ACTIONS(5727), - [anon_sym_0o] = ACTIONS(5729), - [anon_sym_0x] = ACTIONS(5729), - [sym_val_date] = ACTIONS(5731), - [anon_sym_DQUOTE] = ACTIONS(5733), - [sym__str_single_quotes] = ACTIONS(5735), - [sym__str_back_ticks] = ACTIONS(5735), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5737), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5739), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5741), - [anon_sym_POUND] = ACTIONS(3), + [2383] = { + [sym_comment] = STATE(2383), + [anon_sym_export] = ACTIONS(6258), + [anon_sym_alias] = ACTIONS(6258), + [anon_sym_let] = ACTIONS(6258), + [anon_sym_let_DASHenv] = ACTIONS(6258), + [anon_sym_mut] = ACTIONS(6258), + [anon_sym_const] = ACTIONS(6258), + [anon_sym_SEMI] = ACTIONS(6258), + [sym_cmd_identifier] = ACTIONS(6258), + [anon_sym_LF] = ACTIONS(6260), + [anon_sym_def] = ACTIONS(6258), + [anon_sym_export_DASHenv] = ACTIONS(6258), + [anon_sym_extern] = ACTIONS(6258), + [anon_sym_module] = ACTIONS(6258), + [anon_sym_use] = ACTIONS(6258), + [anon_sym_LBRACK] = ACTIONS(6258), + [anon_sym_LPAREN] = ACTIONS(6258), + [anon_sym_RPAREN] = ACTIONS(6258), + [anon_sym_DOLLAR] = ACTIONS(6258), + [anon_sym_error] = ACTIONS(6258), + [anon_sym_DASH] = ACTIONS(6258), + [anon_sym_break] = ACTIONS(6258), + [anon_sym_continue] = ACTIONS(6258), + [anon_sym_for] = ACTIONS(6258), + [anon_sym_loop] = ACTIONS(6258), + [anon_sym_while] = ACTIONS(6258), + [anon_sym_do] = ACTIONS(6258), + [anon_sym_if] = ACTIONS(6258), + [anon_sym_match] = ACTIONS(6258), + [anon_sym_LBRACE] = ACTIONS(6258), + [anon_sym_RBRACE] = ACTIONS(6258), + [anon_sym_DOT_DOT] = ACTIONS(6258), + [anon_sym_try] = ACTIONS(6258), + [anon_sym_return] = ACTIONS(6258), + [anon_sym_source] = ACTIONS(6258), + [anon_sym_source_DASHenv] = ACTIONS(6258), + [anon_sym_register] = ACTIONS(6258), + [anon_sym_hide] = ACTIONS(6258), + [anon_sym_hide_DASHenv] = ACTIONS(6258), + [anon_sym_overlay] = ACTIONS(6258), + [anon_sym_where] = ACTIONS(6258), + [anon_sym_not] = ACTIONS(6258), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6258), + [anon_sym_DOT_DOT_LT] = ACTIONS(6258), + [anon_sym_null] = ACTIONS(6258), + [anon_sym_true] = ACTIONS(6258), + [anon_sym_false] = ACTIONS(6258), + [aux_sym__val_number_decimal_token1] = ACTIONS(6258), + [aux_sym__val_number_decimal_token2] = ACTIONS(6258), + [anon_sym_DOT2] = ACTIONS(6258), + [aux_sym__val_number_decimal_token3] = ACTIONS(6258), + [aux_sym__val_number_token1] = ACTIONS(6258), + [aux_sym__val_number_token2] = ACTIONS(6258), + [aux_sym__val_number_token3] = ACTIONS(6258), + [aux_sym__val_number_token4] = ACTIONS(6258), + [aux_sym__val_number_token5] = ACTIONS(6258), + [aux_sym__val_number_token6] = ACTIONS(6258), + [anon_sym_0b] = ACTIONS(6258), + [anon_sym_0o] = ACTIONS(6258), + [anon_sym_0x] = ACTIONS(6258), + [sym_val_date] = ACTIONS(6258), + [anon_sym_DQUOTE] = ACTIONS(6258), + [sym__str_single_quotes] = ACTIONS(6258), + [sym__str_back_ticks] = ACTIONS(6258), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6258), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6258), + [anon_sym_CARET] = ACTIONS(6258), + [anon_sym_POUND] = ACTIONS(113), }, - [2110] = { - [sym_expr_unary] = STATE(2556), - [sym__expr_unary_minus] = STATE(2550), - [sym_expr_binary] = STATE(2556), - [sym__expr_binary_expression] = STATE(2575), - [sym_expr_parenthesized] = STATE(2556), - [sym__val_range] = STATE(10676), - [sym__value] = STATE(2556), - [sym_val_nothing] = STATE(2599), - [sym_val_bool] = STATE(1894), - [sym_val_variable] = STATE(2599), - [sym__var] = STATE(1504), - [sym_val_number] = STATE(2599), - [sym__val_number_decimal] = STATE(1193), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2599), - [sym_val_filesize] = STATE(2599), - [sym_val_binary] = STATE(2599), - [sym_val_string] = STATE(2599), - [sym__str_double_quotes] = STATE(2611), - [sym_val_interpolated] = STATE(2599), - [sym__inter_single_quotes] = STATE(2612), - [sym__inter_double_quotes] = STATE(2613), - [sym_val_list] = STATE(2599), - [sym_val_record] = STATE(2599), - [sym_val_table] = STATE(2599), - [sym_val_closure] = STATE(2599), - [sym_unquoted] = STATE(2559), - [sym__unquoted_anonymous_prefix] = STATE(11354), - [sym_comment] = STATE(2110), - [anon_sym_LBRACK] = ACTIONS(5695), - [anon_sym_LPAREN] = ACTIONS(5697), - [anon_sym_DOLLAR] = ACTIONS(5699), - [anon_sym_DASH] = ACTIONS(5701), - [anon_sym_LBRACE] = ACTIONS(5703), - [anon_sym_DOT_DOT] = ACTIONS(5705), - [anon_sym_not] = ACTIONS(5707), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5709), - [anon_sym_DOT_DOT_LT] = ACTIONS(5709), - [anon_sym_null] = ACTIONS(5711), - [anon_sym_true] = ACTIONS(5713), - [anon_sym_false] = ACTIONS(5713), - [aux_sym__val_number_decimal_token1] = ACTIONS(5715), - [aux_sym__val_number_decimal_token2] = ACTIONS(5717), - [anon_sym_DOT2] = ACTIONS(5719), - [aux_sym__val_number_decimal_token3] = ACTIONS(5721), - [aux_sym__val_number_token1] = ACTIONS(5723), - [aux_sym__val_number_token2] = ACTIONS(5723), - [aux_sym__val_number_token3] = ACTIONS(5723), - [aux_sym__val_number_token4] = ACTIONS(5725), - [aux_sym__val_number_token5] = ACTIONS(5725), - [aux_sym__val_number_token6] = ACTIONS(5725), - [anon_sym_0b] = ACTIONS(5727), - [anon_sym_0o] = ACTIONS(5729), - [anon_sym_0x] = ACTIONS(5729), - [sym_val_date] = ACTIONS(5731), - [anon_sym_DQUOTE] = ACTIONS(5733), - [sym__str_single_quotes] = ACTIONS(5735), - [sym__str_back_ticks] = ACTIONS(5735), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5737), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5739), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5741), + [2384] = { + [sym_comment] = STATE(2384), + [anon_sym_LBRACK] = ACTIONS(895), + [anon_sym_LPAREN] = ACTIONS(895), + [anon_sym_DOLLAR] = ACTIONS(893), + [anon_sym_GT] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_in] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(895), + [anon_sym_DOT_DOT] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(893), + [anon_sym_STAR_STAR] = ACTIONS(895), + [anon_sym_PLUS_PLUS] = ACTIONS(895), + [anon_sym_SLASH] = ACTIONS(893), + [anon_sym_mod] = ACTIONS(895), + [anon_sym_SLASH_SLASH] = ACTIONS(895), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_bit_DASHshl] = ACTIONS(895), + [anon_sym_bit_DASHshr] = ACTIONS(895), + [anon_sym_EQ_EQ] = ACTIONS(895), + [anon_sym_BANG_EQ] = ACTIONS(895), + [anon_sym_LT2] = ACTIONS(893), + [anon_sym_LT_EQ] = ACTIONS(895), + [anon_sym_GT_EQ] = ACTIONS(895), + [anon_sym_not_DASHin] = ACTIONS(895), + [anon_sym_starts_DASHwith] = ACTIONS(895), + [anon_sym_ends_DASHwith] = ACTIONS(895), + [anon_sym_EQ_TILDE] = ACTIONS(895), + [anon_sym_BANG_TILDE] = ACTIONS(895), + [anon_sym_bit_DASHand] = ACTIONS(895), + [anon_sym_bit_DASHxor] = ACTIONS(895), + [anon_sym_bit_DASHor] = ACTIONS(895), + [anon_sym_and] = ACTIONS(895), + [anon_sym_xor] = ACTIONS(895), + [anon_sym_or] = ACTIONS(895), + [anon_sym_not] = ACTIONS(893), + [anon_sym_DOT_DOT2] = ACTIONS(893), + [anon_sym_DOT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ] = ACTIONS(893), + [anon_sym_DOT_DOT_LT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), + [anon_sym_DOT_DOT_LT2] = ACTIONS(895), + [aux_sym__immediate_decimal_token2] = ACTIONS(5884), + [anon_sym_null] = ACTIONS(895), + [anon_sym_true] = ACTIONS(895), + [anon_sym_false] = ACTIONS(895), + [aux_sym__val_number_decimal_token1] = ACTIONS(893), + [aux_sym__val_number_decimal_token2] = ACTIONS(895), + [anon_sym_DOT2] = ACTIONS(893), + [aux_sym__val_number_decimal_token3] = ACTIONS(895), + [aux_sym__val_number_token1] = ACTIONS(895), + [aux_sym__val_number_token2] = ACTIONS(895), + [aux_sym__val_number_token3] = ACTIONS(895), + [aux_sym__val_number_token4] = ACTIONS(895), + [aux_sym__val_number_token5] = ACTIONS(895), + [aux_sym__val_number_token6] = ACTIONS(895), + [anon_sym_0b] = ACTIONS(893), + [sym_filesize_unit] = ACTIONS(893), + [sym_duration_unit] = ACTIONS(895), + [anon_sym_0o] = ACTIONS(893), + [anon_sym_0x] = ACTIONS(893), + [sym_val_date] = ACTIONS(895), + [anon_sym_DQUOTE] = ACTIONS(895), + [sym__str_single_quotes] = ACTIONS(895), + [sym__str_back_ticks] = ACTIONS(895), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(895), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(895), + [aux_sym_unquoted_token5] = ACTIONS(893), [anon_sym_POUND] = ACTIONS(3), }, - [2111] = { - [sym_expr_unary] = STATE(2556), - [sym__expr_unary_minus] = STATE(2550), - [sym_expr_binary] = STATE(2556), - [sym__expr_binary_expression] = STATE(2576), - [sym_expr_parenthesized] = STATE(2556), - [sym__val_range] = STATE(10676), - [sym__value] = STATE(2556), - [sym_val_nothing] = STATE(2599), - [sym_val_bool] = STATE(1894), - [sym_val_variable] = STATE(2599), - [sym__var] = STATE(1504), - [sym_val_number] = STATE(2599), - [sym__val_number_decimal] = STATE(1193), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2599), - [sym_val_filesize] = STATE(2599), - [sym_val_binary] = STATE(2599), - [sym_val_string] = STATE(2599), - [sym__str_double_quotes] = STATE(2611), - [sym_val_interpolated] = STATE(2599), - [sym__inter_single_quotes] = STATE(2612), - [sym__inter_double_quotes] = STATE(2613), - [sym_val_list] = STATE(2599), - [sym_val_record] = STATE(2599), - [sym_val_table] = STATE(2599), - [sym_val_closure] = STATE(2599), - [sym_unquoted] = STATE(2560), - [sym__unquoted_anonymous_prefix] = STATE(11354), - [sym_comment] = STATE(2111), - [anon_sym_LBRACK] = ACTIONS(5695), - [anon_sym_LPAREN] = ACTIONS(5697), - [anon_sym_DOLLAR] = ACTIONS(5699), - [anon_sym_DASH] = ACTIONS(5701), - [anon_sym_LBRACE] = ACTIONS(5703), - [anon_sym_DOT_DOT] = ACTIONS(5705), - [anon_sym_not] = ACTIONS(5707), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5709), - [anon_sym_DOT_DOT_LT] = ACTIONS(5709), - [anon_sym_null] = ACTIONS(5711), - [anon_sym_true] = ACTIONS(5713), - [anon_sym_false] = ACTIONS(5713), - [aux_sym__val_number_decimal_token1] = ACTIONS(5715), - [aux_sym__val_number_decimal_token2] = ACTIONS(5717), - [anon_sym_DOT2] = ACTIONS(5719), - [aux_sym__val_number_decimal_token3] = ACTIONS(5721), - [aux_sym__val_number_token1] = ACTIONS(5723), - [aux_sym__val_number_token2] = ACTIONS(5723), - [aux_sym__val_number_token3] = ACTIONS(5723), - [aux_sym__val_number_token4] = ACTIONS(5725), - [aux_sym__val_number_token5] = ACTIONS(5725), - [aux_sym__val_number_token6] = ACTIONS(5725), - [anon_sym_0b] = ACTIONS(5727), - [anon_sym_0o] = ACTIONS(5729), - [anon_sym_0x] = ACTIONS(5729), - [sym_val_date] = ACTIONS(5731), - [anon_sym_DQUOTE] = ACTIONS(5733), - [sym__str_single_quotes] = ACTIONS(5735), - [sym__str_back_ticks] = ACTIONS(5735), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5737), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5739), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5741), - [anon_sym_POUND] = ACTIONS(3), + [2385] = { + [sym_comment] = STATE(2385), + [anon_sym_export] = ACTIONS(6262), + [anon_sym_alias] = ACTIONS(6262), + [anon_sym_let] = ACTIONS(6262), + [anon_sym_let_DASHenv] = ACTIONS(6262), + [anon_sym_mut] = ACTIONS(6262), + [anon_sym_const] = ACTIONS(6262), + [anon_sym_SEMI] = ACTIONS(6264), + [sym_cmd_identifier] = ACTIONS(6262), + [anon_sym_LF] = ACTIONS(6267), + [anon_sym_def] = ACTIONS(6262), + [anon_sym_export_DASHenv] = ACTIONS(6262), + [anon_sym_extern] = ACTIONS(6262), + [anon_sym_module] = ACTIONS(6262), + [anon_sym_use] = ACTIONS(6262), + [anon_sym_LBRACK] = ACTIONS(6262), + [anon_sym_LPAREN] = ACTIONS(6262), + [anon_sym_RPAREN] = ACTIONS(6270), + [anon_sym_DOLLAR] = ACTIONS(6262), + [anon_sym_error] = ACTIONS(6262), + [anon_sym_DASH] = ACTIONS(6262), + [anon_sym_break] = ACTIONS(6262), + [anon_sym_continue] = ACTIONS(6262), + [anon_sym_for] = ACTIONS(6262), + [anon_sym_loop] = ACTIONS(6262), + [anon_sym_while] = ACTIONS(6262), + [anon_sym_do] = ACTIONS(6262), + [anon_sym_if] = ACTIONS(6262), + [anon_sym_match] = ACTIONS(6262), + [anon_sym_LBRACE] = ACTIONS(6262), + [anon_sym_RBRACE] = ACTIONS(6270), + [anon_sym_DOT_DOT] = ACTIONS(6262), + [anon_sym_try] = ACTIONS(6262), + [anon_sym_return] = ACTIONS(6262), + [anon_sym_source] = ACTIONS(6262), + [anon_sym_source_DASHenv] = ACTIONS(6262), + [anon_sym_register] = ACTIONS(6262), + [anon_sym_hide] = ACTIONS(6262), + [anon_sym_hide_DASHenv] = ACTIONS(6262), + [anon_sym_overlay] = ACTIONS(6262), + [anon_sym_where] = ACTIONS(6262), + [anon_sym_not] = ACTIONS(6262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6262), + [anon_sym_DOT_DOT_LT] = ACTIONS(6262), + [anon_sym_null] = ACTIONS(6262), + [anon_sym_true] = ACTIONS(6262), + [anon_sym_false] = ACTIONS(6262), + [aux_sym__val_number_decimal_token1] = ACTIONS(6262), + [aux_sym__val_number_decimal_token2] = ACTIONS(6262), + [anon_sym_DOT2] = ACTIONS(6262), + [aux_sym__val_number_decimal_token3] = ACTIONS(6262), + [aux_sym__val_number_token1] = ACTIONS(6262), + [aux_sym__val_number_token2] = ACTIONS(6262), + [aux_sym__val_number_token3] = ACTIONS(6262), + [aux_sym__val_number_token4] = ACTIONS(6262), + [aux_sym__val_number_token5] = ACTIONS(6262), + [aux_sym__val_number_token6] = ACTIONS(6262), + [anon_sym_0b] = ACTIONS(6262), + [anon_sym_0o] = ACTIONS(6262), + [anon_sym_0x] = ACTIONS(6262), + [sym_val_date] = ACTIONS(6262), + [anon_sym_DQUOTE] = ACTIONS(6262), + [sym__str_single_quotes] = ACTIONS(6262), + [sym__str_back_ticks] = ACTIONS(6262), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6262), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6262), + [anon_sym_CARET] = ACTIONS(6262), + [anon_sym_POUND] = ACTIONS(113), }, - [2112] = { - [sym_expr_unary] = STATE(2556), - [sym__expr_unary_minus] = STATE(2550), - [sym_expr_binary] = STATE(2556), - [sym__expr_binary_expression] = STATE(2577), - [sym_expr_parenthesized] = STATE(2556), - [sym__val_range] = STATE(10676), - [sym__value] = STATE(2556), - [sym_val_nothing] = STATE(2599), - [sym_val_bool] = STATE(1894), - [sym_val_variable] = STATE(2599), - [sym__var] = STATE(1504), - [sym_val_number] = STATE(2599), - [sym__val_number_decimal] = STATE(1193), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2599), - [sym_val_filesize] = STATE(2599), - [sym_val_binary] = STATE(2599), - [sym_val_string] = STATE(2599), - [sym__str_double_quotes] = STATE(2611), - [sym_val_interpolated] = STATE(2599), - [sym__inter_single_quotes] = STATE(2612), - [sym__inter_double_quotes] = STATE(2613), - [sym_val_list] = STATE(2599), - [sym_val_record] = STATE(2599), - [sym_val_table] = STATE(2599), - [sym_val_closure] = STATE(2599), - [sym_unquoted] = STATE(2561), - [sym__unquoted_anonymous_prefix] = STATE(11354), - [sym_comment] = STATE(2112), - [anon_sym_LBRACK] = ACTIONS(5695), - [anon_sym_LPAREN] = ACTIONS(5697), - [anon_sym_DOLLAR] = ACTIONS(5699), - [anon_sym_DASH] = ACTIONS(5701), - [anon_sym_LBRACE] = ACTIONS(5703), - [anon_sym_DOT_DOT] = ACTIONS(5705), - [anon_sym_not] = ACTIONS(5707), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5709), - [anon_sym_DOT_DOT_LT] = ACTIONS(5709), - [anon_sym_null] = ACTIONS(5711), - [anon_sym_true] = ACTIONS(5713), - [anon_sym_false] = ACTIONS(5713), - [aux_sym__val_number_decimal_token1] = ACTIONS(5715), - [aux_sym__val_number_decimal_token2] = ACTIONS(5717), - [anon_sym_DOT2] = ACTIONS(5719), - [aux_sym__val_number_decimal_token3] = ACTIONS(5721), - [aux_sym__val_number_token1] = ACTIONS(5723), - [aux_sym__val_number_token2] = ACTIONS(5723), - [aux_sym__val_number_token3] = ACTIONS(5723), - [aux_sym__val_number_token4] = ACTIONS(5725), - [aux_sym__val_number_token5] = ACTIONS(5725), - [aux_sym__val_number_token6] = ACTIONS(5725), - [anon_sym_0b] = ACTIONS(5727), - [anon_sym_0o] = ACTIONS(5729), - [anon_sym_0x] = ACTIONS(5729), - [sym_val_date] = ACTIONS(5731), - [anon_sym_DQUOTE] = ACTIONS(5733), - [sym__str_single_quotes] = ACTIONS(5735), - [sym__str_back_ticks] = ACTIONS(5735), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5737), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5739), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5741), - [anon_sym_POUND] = ACTIONS(3), + [2386] = { + [sym__terminator] = STATE(2372), + [sym_comment] = STATE(2386), + [aux_sym__block_body_repeat1] = STATE(1977), + [anon_sym_export] = ACTIONS(6272), + [anon_sym_alias] = ACTIONS(6272), + [anon_sym_let] = ACTIONS(6272), + [anon_sym_let_DASHenv] = ACTIONS(6272), + [anon_sym_mut] = ACTIONS(6272), + [anon_sym_const] = ACTIONS(6272), + [anon_sym_SEMI] = ACTIONS(6058), + [sym_cmd_identifier] = ACTIONS(6272), + [anon_sym_LF] = ACTIONS(6060), + [anon_sym_def] = ACTIONS(6272), + [anon_sym_export_DASHenv] = ACTIONS(6272), + [anon_sym_extern] = ACTIONS(6272), + [anon_sym_module] = ACTIONS(6272), + [anon_sym_use] = ACTIONS(6272), + [anon_sym_LBRACK] = ACTIONS(6272), + [anon_sym_LPAREN] = ACTIONS(6272), + [anon_sym_DOLLAR] = ACTIONS(6272), + [anon_sym_error] = ACTIONS(6272), + [anon_sym_DASH] = ACTIONS(6272), + [anon_sym_break] = ACTIONS(6272), + [anon_sym_continue] = ACTIONS(6272), + [anon_sym_for] = ACTIONS(6272), + [anon_sym_loop] = ACTIONS(6272), + [anon_sym_while] = ACTIONS(6272), + [anon_sym_do] = ACTIONS(6272), + [anon_sym_if] = ACTIONS(6272), + [anon_sym_match] = ACTIONS(6272), + [anon_sym_LBRACE] = ACTIONS(6272), + [anon_sym_DOT_DOT] = ACTIONS(6272), + [anon_sym_try] = ACTIONS(6272), + [anon_sym_return] = ACTIONS(6272), + [anon_sym_source] = ACTIONS(6272), + [anon_sym_source_DASHenv] = ACTIONS(6272), + [anon_sym_register] = ACTIONS(6272), + [anon_sym_hide] = ACTIONS(6272), + [anon_sym_hide_DASHenv] = ACTIONS(6272), + [anon_sym_overlay] = ACTIONS(6272), + [anon_sym_where] = ACTIONS(6272), + [anon_sym_not] = ACTIONS(6272), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6272), + [anon_sym_DOT_DOT_LT] = ACTIONS(6272), + [anon_sym_null] = ACTIONS(6272), + [anon_sym_true] = ACTIONS(6272), + [anon_sym_false] = ACTIONS(6272), + [aux_sym__val_number_decimal_token1] = ACTIONS(6272), + [aux_sym__val_number_decimal_token2] = ACTIONS(6272), + [anon_sym_DOT2] = ACTIONS(6272), + [aux_sym__val_number_decimal_token3] = ACTIONS(6272), + [aux_sym__val_number_token1] = ACTIONS(6272), + [aux_sym__val_number_token2] = ACTIONS(6272), + [aux_sym__val_number_token3] = ACTIONS(6272), + [aux_sym__val_number_token4] = ACTIONS(6272), + [aux_sym__val_number_token5] = ACTIONS(6272), + [aux_sym__val_number_token6] = ACTIONS(6272), + [anon_sym_0b] = ACTIONS(6272), + [anon_sym_0o] = ACTIONS(6272), + [anon_sym_0x] = ACTIONS(6272), + [sym_val_date] = ACTIONS(6272), + [anon_sym_DQUOTE] = ACTIONS(6272), + [sym__str_single_quotes] = ACTIONS(6272), + [sym__str_back_ticks] = ACTIONS(6272), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6272), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6272), + [anon_sym_CARET] = ACTIONS(6272), + [anon_sym_POUND] = ACTIONS(113), }, - [2113] = { - [sym_expr_unary] = STATE(2556), - [sym__expr_unary_minus] = STATE(2550), - [sym_expr_binary] = STATE(2556), - [sym__expr_binary_expression] = STATE(2578), - [sym_expr_parenthesized] = STATE(2556), - [sym__val_range] = STATE(10676), - [sym__value] = STATE(2556), - [sym_val_nothing] = STATE(2599), - [sym_val_bool] = STATE(1894), - [sym_val_variable] = STATE(2599), - [sym__var] = STATE(1504), - [sym_val_number] = STATE(2599), - [sym__val_number_decimal] = STATE(1193), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2599), - [sym_val_filesize] = STATE(2599), - [sym_val_binary] = STATE(2599), - [sym_val_string] = STATE(2599), - [sym__str_double_quotes] = STATE(2611), - [sym_val_interpolated] = STATE(2599), - [sym__inter_single_quotes] = STATE(2612), - [sym__inter_double_quotes] = STATE(2613), - [sym_val_list] = STATE(2599), - [sym_val_record] = STATE(2599), - [sym_val_table] = STATE(2599), - [sym_val_closure] = STATE(2599), - [sym_unquoted] = STATE(2562), - [sym__unquoted_anonymous_prefix] = STATE(11354), - [sym_comment] = STATE(2113), - [anon_sym_LBRACK] = ACTIONS(5695), - [anon_sym_LPAREN] = ACTIONS(5697), - [anon_sym_DOLLAR] = ACTIONS(5699), - [anon_sym_DASH] = ACTIONS(5701), - [anon_sym_LBRACE] = ACTIONS(5703), - [anon_sym_DOT_DOT] = ACTIONS(5705), - [anon_sym_not] = ACTIONS(5707), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5709), - [anon_sym_DOT_DOT_LT] = ACTIONS(5709), - [anon_sym_null] = ACTIONS(5711), - [anon_sym_true] = ACTIONS(5713), - [anon_sym_false] = ACTIONS(5713), - [aux_sym__val_number_decimal_token1] = ACTIONS(5715), - [aux_sym__val_number_decimal_token2] = ACTIONS(5717), - [anon_sym_DOT2] = ACTIONS(5719), - [aux_sym__val_number_decimal_token3] = ACTIONS(5721), - [aux_sym__val_number_token1] = ACTIONS(5723), - [aux_sym__val_number_token2] = ACTIONS(5723), - [aux_sym__val_number_token3] = ACTIONS(5723), - [aux_sym__val_number_token4] = ACTIONS(5725), - [aux_sym__val_number_token5] = ACTIONS(5725), - [aux_sym__val_number_token6] = ACTIONS(5725), - [anon_sym_0b] = ACTIONS(5727), - [anon_sym_0o] = ACTIONS(5729), - [anon_sym_0x] = ACTIONS(5729), - [sym_val_date] = ACTIONS(5731), - [anon_sym_DQUOTE] = ACTIONS(5733), - [sym__str_single_quotes] = ACTIONS(5735), - [sym__str_back_ticks] = ACTIONS(5735), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5737), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5739), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5741), - [anon_sym_POUND] = ACTIONS(3), + [2387] = { + [sym_comment] = STATE(2387), + [anon_sym_export] = ACTIONS(6274), + [anon_sym_alias] = ACTIONS(6274), + [anon_sym_let] = ACTIONS(6274), + [anon_sym_let_DASHenv] = ACTIONS(6274), + [anon_sym_mut] = ACTIONS(6274), + [anon_sym_const] = ACTIONS(6274), + [anon_sym_SEMI] = ACTIONS(6274), + [sym_cmd_identifier] = ACTIONS(6274), + [anon_sym_LF] = ACTIONS(6276), + [anon_sym_def] = ACTIONS(6274), + [anon_sym_export_DASHenv] = ACTIONS(6274), + [anon_sym_extern] = ACTIONS(6274), + [anon_sym_module] = ACTIONS(6274), + [anon_sym_use] = ACTIONS(6274), + [anon_sym_LBRACK] = ACTIONS(6274), + [anon_sym_LPAREN] = ACTIONS(6274), + [anon_sym_RPAREN] = ACTIONS(6274), + [anon_sym_DOLLAR] = ACTIONS(6274), + [anon_sym_error] = ACTIONS(6274), + [anon_sym_DASH] = ACTIONS(6274), + [anon_sym_break] = ACTIONS(6274), + [anon_sym_continue] = ACTIONS(6274), + [anon_sym_for] = ACTIONS(6274), + [anon_sym_loop] = ACTIONS(6274), + [anon_sym_while] = ACTIONS(6274), + [anon_sym_do] = ACTIONS(6274), + [anon_sym_if] = ACTIONS(6274), + [anon_sym_match] = ACTIONS(6274), + [anon_sym_LBRACE] = ACTIONS(6274), + [anon_sym_RBRACE] = ACTIONS(6274), + [anon_sym_DOT_DOT] = ACTIONS(6274), + [anon_sym_try] = ACTIONS(6274), + [anon_sym_return] = ACTIONS(6274), + [anon_sym_source] = ACTIONS(6274), + [anon_sym_source_DASHenv] = ACTIONS(6274), + [anon_sym_register] = ACTIONS(6274), + [anon_sym_hide] = ACTIONS(6274), + [anon_sym_hide_DASHenv] = ACTIONS(6274), + [anon_sym_overlay] = ACTIONS(6274), + [anon_sym_where] = ACTIONS(6274), + [anon_sym_not] = ACTIONS(6274), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6274), + [anon_sym_DOT_DOT_LT] = ACTIONS(6274), + [anon_sym_null] = ACTIONS(6274), + [anon_sym_true] = ACTIONS(6274), + [anon_sym_false] = ACTIONS(6274), + [aux_sym__val_number_decimal_token1] = ACTIONS(6274), + [aux_sym__val_number_decimal_token2] = ACTIONS(6274), + [anon_sym_DOT2] = ACTIONS(6274), + [aux_sym__val_number_decimal_token3] = ACTIONS(6274), + [aux_sym__val_number_token1] = ACTIONS(6274), + [aux_sym__val_number_token2] = ACTIONS(6274), + [aux_sym__val_number_token3] = ACTIONS(6274), + [aux_sym__val_number_token4] = ACTIONS(6274), + [aux_sym__val_number_token5] = ACTIONS(6274), + [aux_sym__val_number_token6] = ACTIONS(6274), + [anon_sym_0b] = ACTIONS(6274), + [anon_sym_0o] = ACTIONS(6274), + [anon_sym_0x] = ACTIONS(6274), + [sym_val_date] = ACTIONS(6274), + [anon_sym_DQUOTE] = ACTIONS(6274), + [sym__str_single_quotes] = ACTIONS(6274), + [sym__str_back_ticks] = ACTIONS(6274), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6274), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6274), + [anon_sym_CARET] = ACTIONS(6274), + [anon_sym_POUND] = ACTIONS(113), }, - [2114] = { - [sym_expr_unary] = STATE(2556), - [sym__expr_unary_minus] = STATE(2550), - [sym_expr_binary] = STATE(2556), - [sym__expr_binary_expression] = STATE(2579), - [sym_expr_parenthesized] = STATE(2556), - [sym__val_range] = STATE(10676), - [sym__value] = STATE(2556), - [sym_val_nothing] = STATE(2599), - [sym_val_bool] = STATE(1894), - [sym_val_variable] = STATE(2599), - [sym__var] = STATE(1504), - [sym_val_number] = STATE(2599), - [sym__val_number_decimal] = STATE(1193), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2599), - [sym_val_filesize] = STATE(2599), - [sym_val_binary] = STATE(2599), - [sym_val_string] = STATE(2599), - [sym__str_double_quotes] = STATE(2611), - [sym_val_interpolated] = STATE(2599), - [sym__inter_single_quotes] = STATE(2612), - [sym__inter_double_quotes] = STATE(2613), - [sym_val_list] = STATE(2599), - [sym_val_record] = STATE(2599), - [sym_val_table] = STATE(2599), - [sym_val_closure] = STATE(2599), - [sym_unquoted] = STATE(2563), - [sym__unquoted_anonymous_prefix] = STATE(11354), - [sym_comment] = STATE(2114), - [anon_sym_LBRACK] = ACTIONS(5695), - [anon_sym_LPAREN] = ACTIONS(5697), - [anon_sym_DOLLAR] = ACTIONS(5699), - [anon_sym_DASH] = ACTIONS(5701), - [anon_sym_LBRACE] = ACTIONS(5703), - [anon_sym_DOT_DOT] = ACTIONS(5705), - [anon_sym_not] = ACTIONS(5707), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5709), - [anon_sym_DOT_DOT_LT] = ACTIONS(5709), - [anon_sym_null] = ACTIONS(5711), - [anon_sym_true] = ACTIONS(5713), - [anon_sym_false] = ACTIONS(5713), - [aux_sym__val_number_decimal_token1] = ACTIONS(5715), - [aux_sym__val_number_decimal_token2] = ACTIONS(5717), - [anon_sym_DOT2] = ACTIONS(5719), - [aux_sym__val_number_decimal_token3] = ACTIONS(5721), - [aux_sym__val_number_token1] = ACTIONS(5723), - [aux_sym__val_number_token2] = ACTIONS(5723), - [aux_sym__val_number_token3] = ACTIONS(5723), - [aux_sym__val_number_token4] = ACTIONS(5725), - [aux_sym__val_number_token5] = ACTIONS(5725), - [aux_sym__val_number_token6] = ACTIONS(5725), - [anon_sym_0b] = ACTIONS(5727), - [anon_sym_0o] = ACTIONS(5729), - [anon_sym_0x] = ACTIONS(5729), - [sym_val_date] = ACTIONS(5731), - [anon_sym_DQUOTE] = ACTIONS(5733), - [sym__str_single_quotes] = ACTIONS(5735), - [sym__str_back_ticks] = ACTIONS(5735), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5737), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5739), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5741), - [anon_sym_POUND] = ACTIONS(3), + [2388] = { + [sym_cell_path] = STATE(2696), + [sym_path] = STATE(2311), + [sym_comment] = STATE(2388), + [ts_builtin_sym_end] = ACTIONS(1095), + [anon_sym_SEMI] = ACTIONS(1093), + [anon_sym_LF] = ACTIONS(1095), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_LPAREN] = ACTIONS(1093), + [anon_sym_PIPE] = ACTIONS(1093), + [anon_sym_DOLLAR] = ACTIONS(1093), + [anon_sym_GT] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_in] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1093), + [anon_sym_DOT_DOT] = ACTIONS(1093), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_STAR_STAR] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1093), + [anon_sym_SLASH] = ACTIONS(1093), + [anon_sym_mod] = ACTIONS(1093), + [anon_sym_SLASH_SLASH] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_bit_DASHshl] = ACTIONS(1093), + [anon_sym_bit_DASHshr] = ACTIONS(1093), + [anon_sym_EQ_EQ] = ACTIONS(1093), + [anon_sym_BANG_EQ] = ACTIONS(1093), + [anon_sym_LT2] = ACTIONS(1093), + [anon_sym_LT_EQ] = ACTIONS(1093), + [anon_sym_GT_EQ] = ACTIONS(1093), + [anon_sym_not_DASHin] = ACTIONS(1093), + [anon_sym_starts_DASHwith] = ACTIONS(1093), + [anon_sym_ends_DASHwith] = ACTIONS(1093), + [anon_sym_EQ_TILDE] = ACTIONS(1093), + [anon_sym_BANG_TILDE] = ACTIONS(1093), + [anon_sym_bit_DASHand] = ACTIONS(1093), + [anon_sym_bit_DASHxor] = ACTIONS(1093), + [anon_sym_bit_DASHor] = ACTIONS(1093), + [anon_sym_and] = ACTIONS(1093), + [anon_sym_xor] = ACTIONS(1093), + [anon_sym_or] = ACTIONS(1093), + [anon_sym_not] = ACTIONS(1093), + [anon_sym_DOT] = ACTIONS(5921), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1093), + [anon_sym_DOT_DOT_LT] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1093), + [anon_sym_true] = ACTIONS(1093), + [anon_sym_false] = ACTIONS(1093), + [aux_sym__val_number_decimal_token1] = ACTIONS(1093), + [aux_sym__val_number_decimal_token2] = ACTIONS(1093), + [anon_sym_DOT2] = ACTIONS(1093), + [aux_sym__val_number_decimal_token3] = ACTIONS(1093), + [aux_sym__val_number_token1] = ACTIONS(1093), + [aux_sym__val_number_token2] = ACTIONS(1093), + [aux_sym__val_number_token3] = ACTIONS(1093), + [aux_sym__val_number_token4] = ACTIONS(1093), + [aux_sym__val_number_token5] = ACTIONS(1093), + [aux_sym__val_number_token6] = ACTIONS(1093), + [anon_sym_0b] = ACTIONS(1093), + [anon_sym_0o] = ACTIONS(1093), + [anon_sym_0x] = ACTIONS(1093), + [sym_val_date] = ACTIONS(1093), + [anon_sym_DQUOTE] = ACTIONS(1093), + [sym__str_single_quotes] = ACTIONS(1093), + [sym__str_back_ticks] = ACTIONS(1093), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1093), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1093), + [anon_sym_POUND] = ACTIONS(113), }, - [2115] = { - [sym_expr_unary] = STATE(2556), - [sym__expr_unary_minus] = STATE(2550), - [sym_expr_binary] = STATE(2556), - [sym__expr_binary_expression] = STATE(2580), - [sym_expr_parenthesized] = STATE(2556), - [sym__val_range] = STATE(10676), - [sym__value] = STATE(2556), - [sym_val_nothing] = STATE(2599), - [sym_val_bool] = STATE(1894), - [sym_val_variable] = STATE(2599), - [sym__var] = STATE(1504), - [sym_val_number] = STATE(2599), - [sym__val_number_decimal] = STATE(1193), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2599), - [sym_val_filesize] = STATE(2599), - [sym_val_binary] = STATE(2599), - [sym_val_string] = STATE(2599), - [sym__str_double_quotes] = STATE(2611), - [sym_val_interpolated] = STATE(2599), - [sym__inter_single_quotes] = STATE(2612), - [sym__inter_double_quotes] = STATE(2613), - [sym_val_list] = STATE(2599), - [sym_val_record] = STATE(2599), - [sym_val_table] = STATE(2599), - [sym_val_closure] = STATE(2599), - [sym_unquoted] = STATE(2564), - [sym__unquoted_anonymous_prefix] = STATE(11354), - [sym_comment] = STATE(2115), - [anon_sym_LBRACK] = ACTIONS(5695), - [anon_sym_LPAREN] = ACTIONS(5697), - [anon_sym_DOLLAR] = ACTIONS(5699), - [anon_sym_DASH] = ACTIONS(5701), - [anon_sym_LBRACE] = ACTIONS(5703), - [anon_sym_DOT_DOT] = ACTIONS(5705), - [anon_sym_not] = ACTIONS(5707), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5709), - [anon_sym_DOT_DOT_LT] = ACTIONS(5709), - [anon_sym_null] = ACTIONS(5711), - [anon_sym_true] = ACTIONS(5713), - [anon_sym_false] = ACTIONS(5713), - [aux_sym__val_number_decimal_token1] = ACTIONS(5715), - [aux_sym__val_number_decimal_token2] = ACTIONS(5717), - [anon_sym_DOT2] = ACTIONS(5719), - [aux_sym__val_number_decimal_token3] = ACTIONS(5721), - [aux_sym__val_number_token1] = ACTIONS(5723), - [aux_sym__val_number_token2] = ACTIONS(5723), - [aux_sym__val_number_token3] = ACTIONS(5723), - [aux_sym__val_number_token4] = ACTIONS(5725), - [aux_sym__val_number_token5] = ACTIONS(5725), - [aux_sym__val_number_token6] = ACTIONS(5725), - [anon_sym_0b] = ACTIONS(5727), - [anon_sym_0o] = ACTIONS(5729), - [anon_sym_0x] = ACTIONS(5729), - [sym_val_date] = ACTIONS(5731), - [anon_sym_DQUOTE] = ACTIONS(5733), - [sym__str_single_quotes] = ACTIONS(5735), - [sym__str_back_ticks] = ACTIONS(5735), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5737), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5739), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5741), - [anon_sym_POUND] = ACTIONS(3), + [2389] = { + [sym_comment] = STATE(2389), + [ts_builtin_sym_end] = ACTIONS(1281), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1279), + [anon_sym_let] = ACTIONS(1279), + [anon_sym_let_DASHenv] = ACTIONS(1279), + [anon_sym_mut] = ACTIONS(1279), + [anon_sym_const] = ACTIONS(1279), + [anon_sym_SEMI] = ACTIONS(1279), + [sym_cmd_identifier] = ACTIONS(1279), + [anon_sym_LF] = ACTIONS(1281), + [anon_sym_def] = ACTIONS(1279), + [anon_sym_export_DASHenv] = ACTIONS(1279), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_use] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_DOLLAR] = ACTIONS(1279), + [anon_sym_error] = ACTIONS(1279), + [anon_sym_DASH] = ACTIONS(1279), + [anon_sym_break] = ACTIONS(1279), + [anon_sym_continue] = ACTIONS(1279), + [anon_sym_for] = ACTIONS(1279), + [anon_sym_loop] = ACTIONS(1279), + [anon_sym_while] = ACTIONS(1279), + [anon_sym_do] = ACTIONS(1279), + [anon_sym_if] = ACTIONS(1279), + [anon_sym_match] = ACTIONS(1279), + [anon_sym_LBRACE] = ACTIONS(1279), + [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym_try] = ACTIONS(1279), + [anon_sym_return] = ACTIONS(1279), + [anon_sym_source] = ACTIONS(1279), + [anon_sym_source_DASHenv] = ACTIONS(1279), + [anon_sym_register] = ACTIONS(1279), + [anon_sym_hide] = ACTIONS(1279), + [anon_sym_hide_DASHenv] = ACTIONS(1279), + [anon_sym_overlay] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1279), + [anon_sym_where] = ACTIONS(1279), + [anon_sym_not] = ACTIONS(1279), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1279), + [anon_sym_DOT_DOT_LT] = ACTIONS(1279), + [anon_sym_null] = ACTIONS(1279), + [anon_sym_true] = ACTIONS(1279), + [anon_sym_false] = ACTIONS(1279), + [aux_sym__val_number_decimal_token1] = ACTIONS(1279), + [aux_sym__val_number_decimal_token2] = ACTIONS(1279), + [anon_sym_DOT2] = ACTIONS(1279), + [aux_sym__val_number_decimal_token3] = ACTIONS(1279), + [aux_sym__val_number_token1] = ACTIONS(1279), + [aux_sym__val_number_token2] = ACTIONS(1279), + [aux_sym__val_number_token3] = ACTIONS(1279), + [aux_sym__val_number_token4] = ACTIONS(1279), + [aux_sym__val_number_token5] = ACTIONS(1279), + [aux_sym__val_number_token6] = ACTIONS(1279), + [anon_sym_0b] = ACTIONS(1279), + [anon_sym_0o] = ACTIONS(1279), + [anon_sym_0x] = ACTIONS(1279), + [sym_val_date] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(1279), + [sym__str_single_quotes] = ACTIONS(1279), + [sym__str_back_ticks] = ACTIONS(1279), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1279), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1279), + [anon_sym_CARET] = ACTIONS(1279), + [anon_sym_POUND] = ACTIONS(113), }, - [2116] = { - [sym_expr_unary] = STATE(2556), - [sym__expr_unary_minus] = STATE(2550), - [sym_expr_binary] = STATE(2556), - [sym__expr_binary_expression] = STATE(2581), - [sym_expr_parenthesized] = STATE(2556), - [sym__val_range] = STATE(10676), - [sym__value] = STATE(2556), - [sym_val_nothing] = STATE(2599), - [sym_val_bool] = STATE(1894), - [sym_val_variable] = STATE(2599), - [sym__var] = STATE(1504), - [sym_val_number] = STATE(2599), - [sym__val_number_decimal] = STATE(1193), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2599), - [sym_val_filesize] = STATE(2599), - [sym_val_binary] = STATE(2599), - [sym_val_string] = STATE(2599), - [sym__str_double_quotes] = STATE(2611), - [sym_val_interpolated] = STATE(2599), - [sym__inter_single_quotes] = STATE(2612), - [sym__inter_double_quotes] = STATE(2613), - [sym_val_list] = STATE(2599), - [sym_val_record] = STATE(2599), - [sym_val_table] = STATE(2599), - [sym_val_closure] = STATE(2599), - [sym_unquoted] = STATE(2565), - [sym__unquoted_anonymous_prefix] = STATE(11354), - [sym_comment] = STATE(2116), - [anon_sym_LBRACK] = ACTIONS(5695), - [anon_sym_LPAREN] = ACTIONS(5697), - [anon_sym_DOLLAR] = ACTIONS(5699), - [anon_sym_DASH] = ACTIONS(5701), - [anon_sym_LBRACE] = ACTIONS(5703), - [anon_sym_DOT_DOT] = ACTIONS(5705), - [anon_sym_not] = ACTIONS(5707), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5709), - [anon_sym_DOT_DOT_LT] = ACTIONS(5709), - [anon_sym_null] = ACTIONS(5711), - [anon_sym_true] = ACTIONS(5713), - [anon_sym_false] = ACTIONS(5713), - [aux_sym__val_number_decimal_token1] = ACTIONS(5715), - [aux_sym__val_number_decimal_token2] = ACTIONS(5717), - [anon_sym_DOT2] = ACTIONS(5719), - [aux_sym__val_number_decimal_token3] = ACTIONS(5721), - [aux_sym__val_number_token1] = ACTIONS(5723), - [aux_sym__val_number_token2] = ACTIONS(5723), - [aux_sym__val_number_token3] = ACTIONS(5723), - [aux_sym__val_number_token4] = ACTIONS(5725), - [aux_sym__val_number_token5] = ACTIONS(5725), - [aux_sym__val_number_token6] = ACTIONS(5725), - [anon_sym_0b] = ACTIONS(5727), - [anon_sym_0o] = ACTIONS(5729), - [anon_sym_0x] = ACTIONS(5729), - [sym_val_date] = ACTIONS(5731), - [anon_sym_DQUOTE] = ACTIONS(5733), - [sym__str_single_quotes] = ACTIONS(5735), - [sym__str_back_ticks] = ACTIONS(5735), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5737), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5739), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5741), - [anon_sym_POUND] = ACTIONS(3), + [2390] = { + [sym_comment] = STATE(2390), + [ts_builtin_sym_end] = ACTIONS(1167), + [anon_sym_export] = ACTIONS(1165), + [anon_sym_alias] = ACTIONS(1165), + [anon_sym_let] = ACTIONS(1165), + [anon_sym_let_DASHenv] = ACTIONS(1165), + [anon_sym_mut] = ACTIONS(1165), + [anon_sym_const] = ACTIONS(1165), + [anon_sym_SEMI] = ACTIONS(1165), + [sym_cmd_identifier] = ACTIONS(1165), + [anon_sym_LF] = ACTIONS(1167), + [anon_sym_def] = ACTIONS(1165), + [anon_sym_export_DASHenv] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1165), + [anon_sym_module] = ACTIONS(1165), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_LPAREN] = ACTIONS(1165), + [anon_sym_DOLLAR] = ACTIONS(1165), + [anon_sym_error] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_break] = ACTIONS(1165), + [anon_sym_continue] = ACTIONS(1165), + [anon_sym_for] = ACTIONS(1165), + [anon_sym_loop] = ACTIONS(1165), + [anon_sym_while] = ACTIONS(1165), + [anon_sym_do] = ACTIONS(1165), + [anon_sym_if] = ACTIONS(1165), + [anon_sym_match] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(1165), + [anon_sym_DOT_DOT] = ACTIONS(1165), + [anon_sym_try] = ACTIONS(1165), + [anon_sym_return] = ACTIONS(1165), + [anon_sym_source] = ACTIONS(1165), + [anon_sym_source_DASHenv] = ACTIONS(1165), + [anon_sym_register] = ACTIONS(1165), + [anon_sym_hide] = ACTIONS(1165), + [anon_sym_hide_DASHenv] = ACTIONS(1165), + [anon_sym_overlay] = ACTIONS(1165), + [anon_sym_STAR] = ACTIONS(1165), + [anon_sym_where] = ACTIONS(1165), + [anon_sym_not] = ACTIONS(1165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1165), + [anon_sym_DOT_DOT_LT] = ACTIONS(1165), + [anon_sym_null] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1165), + [anon_sym_false] = ACTIONS(1165), + [aux_sym__val_number_decimal_token1] = ACTIONS(1165), + [aux_sym__val_number_decimal_token2] = ACTIONS(1165), + [anon_sym_DOT2] = ACTIONS(1165), + [aux_sym__val_number_decimal_token3] = ACTIONS(1165), + [aux_sym__val_number_token1] = ACTIONS(1165), + [aux_sym__val_number_token2] = ACTIONS(1165), + [aux_sym__val_number_token3] = ACTIONS(1165), + [aux_sym__val_number_token4] = ACTIONS(1165), + [aux_sym__val_number_token5] = ACTIONS(1165), + [aux_sym__val_number_token6] = ACTIONS(1165), + [anon_sym_0b] = ACTIONS(1165), + [anon_sym_0o] = ACTIONS(1165), + [anon_sym_0x] = ACTIONS(1165), + [sym_val_date] = ACTIONS(1165), + [anon_sym_DQUOTE] = ACTIONS(1165), + [sym__str_single_quotes] = ACTIONS(1165), + [sym__str_back_ticks] = ACTIONS(1165), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1165), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1165), + [anon_sym_CARET] = ACTIONS(1165), + [anon_sym_POUND] = ACTIONS(113), }, - [2117] = { - [sym_expr_unary] = STATE(2556), - [sym__expr_unary_minus] = STATE(2550), - [sym_expr_binary] = STATE(2556), - [sym__expr_binary_expression] = STATE(2582), - [sym_expr_parenthesized] = STATE(2556), - [sym__val_range] = STATE(10676), - [sym__value] = STATE(2556), - [sym_val_nothing] = STATE(2599), - [sym_val_bool] = STATE(1894), - [sym_val_variable] = STATE(2599), - [sym__var] = STATE(1504), - [sym_val_number] = STATE(2599), - [sym__val_number_decimal] = STATE(1193), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2599), - [sym_val_filesize] = STATE(2599), - [sym_val_binary] = STATE(2599), - [sym_val_string] = STATE(2599), - [sym__str_double_quotes] = STATE(2611), - [sym_val_interpolated] = STATE(2599), - [sym__inter_single_quotes] = STATE(2612), - [sym__inter_double_quotes] = STATE(2613), - [sym_val_list] = STATE(2599), - [sym_val_record] = STATE(2599), - [sym_val_table] = STATE(2599), - [sym_val_closure] = STATE(2599), - [sym_unquoted] = STATE(2566), - [sym__unquoted_anonymous_prefix] = STATE(11354), - [sym_comment] = STATE(2117), - [anon_sym_LBRACK] = ACTIONS(5695), - [anon_sym_LPAREN] = ACTIONS(5697), - [anon_sym_DOLLAR] = ACTIONS(5699), - [anon_sym_DASH] = ACTIONS(5701), - [anon_sym_LBRACE] = ACTIONS(5703), - [anon_sym_DOT_DOT] = ACTIONS(5705), - [anon_sym_not] = ACTIONS(5707), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5709), - [anon_sym_DOT_DOT_LT] = ACTIONS(5709), - [anon_sym_null] = ACTIONS(5711), - [anon_sym_true] = ACTIONS(5713), - [anon_sym_false] = ACTIONS(5713), - [aux_sym__val_number_decimal_token1] = ACTIONS(5715), - [aux_sym__val_number_decimal_token2] = ACTIONS(5717), - [anon_sym_DOT2] = ACTIONS(5719), - [aux_sym__val_number_decimal_token3] = ACTIONS(5721), - [aux_sym__val_number_token1] = ACTIONS(5723), - [aux_sym__val_number_token2] = ACTIONS(5723), - [aux_sym__val_number_token3] = ACTIONS(5723), - [aux_sym__val_number_token4] = ACTIONS(5725), - [aux_sym__val_number_token5] = ACTIONS(5725), - [aux_sym__val_number_token6] = ACTIONS(5725), - [anon_sym_0b] = ACTIONS(5727), - [anon_sym_0o] = ACTIONS(5729), - [anon_sym_0x] = ACTIONS(5729), - [sym_val_date] = ACTIONS(5731), - [anon_sym_DQUOTE] = ACTIONS(5733), - [sym__str_single_quotes] = ACTIONS(5735), - [sym__str_back_ticks] = ACTIONS(5735), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5737), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5739), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5741), - [anon_sym_POUND] = ACTIONS(3), + [2391] = { + [sym_comment] = STATE(2391), + [anon_sym_export] = ACTIONS(6278), + [anon_sym_alias] = ACTIONS(6278), + [anon_sym_let] = ACTIONS(6278), + [anon_sym_let_DASHenv] = ACTIONS(6278), + [anon_sym_mut] = ACTIONS(6278), + [anon_sym_const] = ACTIONS(6278), + [anon_sym_SEMI] = ACTIONS(6278), + [sym_cmd_identifier] = ACTIONS(6278), + [anon_sym_LF] = ACTIONS(6280), + [anon_sym_def] = ACTIONS(6278), + [anon_sym_export_DASHenv] = ACTIONS(6278), + [anon_sym_extern] = ACTIONS(6278), + [anon_sym_module] = ACTIONS(6278), + [anon_sym_use] = ACTIONS(6278), + [anon_sym_LBRACK] = ACTIONS(6278), + [anon_sym_LPAREN] = ACTIONS(6278), + [anon_sym_RPAREN] = ACTIONS(6278), + [anon_sym_DOLLAR] = ACTIONS(6278), + [anon_sym_error] = ACTIONS(6278), + [anon_sym_DASH] = ACTIONS(6278), + [anon_sym_break] = ACTIONS(6278), + [anon_sym_continue] = ACTIONS(6278), + [anon_sym_for] = ACTIONS(6278), + [anon_sym_loop] = ACTIONS(6278), + [anon_sym_while] = ACTIONS(6278), + [anon_sym_do] = ACTIONS(6278), + [anon_sym_if] = ACTIONS(6278), + [anon_sym_match] = ACTIONS(6278), + [anon_sym_LBRACE] = ACTIONS(6278), + [anon_sym_RBRACE] = ACTIONS(6278), + [anon_sym_DOT_DOT] = ACTIONS(6278), + [anon_sym_try] = ACTIONS(6278), + [anon_sym_return] = ACTIONS(6278), + [anon_sym_source] = ACTIONS(6278), + [anon_sym_source_DASHenv] = ACTIONS(6278), + [anon_sym_register] = ACTIONS(6278), + [anon_sym_hide] = ACTIONS(6278), + [anon_sym_hide_DASHenv] = ACTIONS(6278), + [anon_sym_overlay] = ACTIONS(6278), + [anon_sym_where] = ACTIONS(6278), + [anon_sym_not] = ACTIONS(6278), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6278), + [anon_sym_DOT_DOT_LT] = ACTIONS(6278), + [anon_sym_null] = ACTIONS(6278), + [anon_sym_true] = ACTIONS(6278), + [anon_sym_false] = ACTIONS(6278), + [aux_sym__val_number_decimal_token1] = ACTIONS(6278), + [aux_sym__val_number_decimal_token2] = ACTIONS(6278), + [anon_sym_DOT2] = ACTIONS(6278), + [aux_sym__val_number_decimal_token3] = ACTIONS(6278), + [aux_sym__val_number_token1] = ACTIONS(6278), + [aux_sym__val_number_token2] = ACTIONS(6278), + [aux_sym__val_number_token3] = ACTIONS(6278), + [aux_sym__val_number_token4] = ACTIONS(6278), + [aux_sym__val_number_token5] = ACTIONS(6278), + [aux_sym__val_number_token6] = ACTIONS(6278), + [anon_sym_0b] = ACTIONS(6278), + [anon_sym_0o] = ACTIONS(6278), + [anon_sym_0x] = ACTIONS(6278), + [sym_val_date] = ACTIONS(6278), + [anon_sym_DQUOTE] = ACTIONS(6278), + [sym__str_single_quotes] = ACTIONS(6278), + [sym__str_back_ticks] = ACTIONS(6278), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6278), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6278), + [anon_sym_CARET] = ACTIONS(6278), + [anon_sym_POUND] = ACTIONS(113), }, - [2118] = { - [sym_expr_unary] = STATE(2556), - [sym__expr_unary_minus] = STATE(2550), - [sym_expr_binary] = STATE(2556), - [sym__expr_binary_expression] = STATE(2583), - [sym_expr_parenthesized] = STATE(2556), - [sym__val_range] = STATE(10676), - [sym__value] = STATE(2556), - [sym_val_nothing] = STATE(2599), - [sym_val_bool] = STATE(1894), - [sym_val_variable] = STATE(2599), - [sym__var] = STATE(1504), - [sym_val_number] = STATE(2599), - [sym__val_number_decimal] = STATE(1193), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2599), - [sym_val_filesize] = STATE(2599), - [sym_val_binary] = STATE(2599), - [sym_val_string] = STATE(2599), - [sym__str_double_quotes] = STATE(2611), - [sym_val_interpolated] = STATE(2599), - [sym__inter_single_quotes] = STATE(2612), - [sym__inter_double_quotes] = STATE(2613), - [sym_val_list] = STATE(2599), - [sym_val_record] = STATE(2599), - [sym_val_table] = STATE(2599), - [sym_val_closure] = STATE(2599), - [sym_unquoted] = STATE(2567), - [sym__unquoted_anonymous_prefix] = STATE(11354), - [sym_comment] = STATE(2118), - [anon_sym_LBRACK] = ACTIONS(5695), - [anon_sym_LPAREN] = ACTIONS(5697), - [anon_sym_DOLLAR] = ACTIONS(5699), - [anon_sym_DASH] = ACTIONS(5701), - [anon_sym_LBRACE] = ACTIONS(5703), - [anon_sym_DOT_DOT] = ACTIONS(5705), - [anon_sym_not] = ACTIONS(5707), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5709), - [anon_sym_DOT_DOT_LT] = ACTIONS(5709), - [anon_sym_null] = ACTIONS(5711), - [anon_sym_true] = ACTIONS(5713), - [anon_sym_false] = ACTIONS(5713), - [aux_sym__val_number_decimal_token1] = ACTIONS(5715), - [aux_sym__val_number_decimal_token2] = ACTIONS(5717), - [anon_sym_DOT2] = ACTIONS(5719), - [aux_sym__val_number_decimal_token3] = ACTIONS(5721), - [aux_sym__val_number_token1] = ACTIONS(5723), - [aux_sym__val_number_token2] = ACTIONS(5723), - [aux_sym__val_number_token3] = ACTIONS(5723), - [aux_sym__val_number_token4] = ACTIONS(5725), - [aux_sym__val_number_token5] = ACTIONS(5725), - [aux_sym__val_number_token6] = ACTIONS(5725), - [anon_sym_0b] = ACTIONS(5727), - [anon_sym_0o] = ACTIONS(5729), - [anon_sym_0x] = ACTIONS(5729), - [sym_val_date] = ACTIONS(5731), - [anon_sym_DQUOTE] = ACTIONS(5733), - [sym__str_single_quotes] = ACTIONS(5735), - [sym__str_back_ticks] = ACTIONS(5735), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5737), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5739), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5741), - [anon_sym_POUND] = ACTIONS(3), + [2392] = { + [sym_comment] = STATE(2392), + [anon_sym_export] = ACTIONS(6282), + [anon_sym_alias] = ACTIONS(6282), + [anon_sym_let] = ACTIONS(6282), + [anon_sym_let_DASHenv] = ACTIONS(6282), + [anon_sym_mut] = ACTIONS(6282), + [anon_sym_const] = ACTIONS(6282), + [anon_sym_SEMI] = ACTIONS(6282), + [sym_cmd_identifier] = ACTIONS(6282), + [anon_sym_LF] = ACTIONS(6284), + [anon_sym_def] = ACTIONS(6282), + [anon_sym_export_DASHenv] = ACTIONS(6282), + [anon_sym_extern] = ACTIONS(6282), + [anon_sym_module] = ACTIONS(6282), + [anon_sym_use] = ACTIONS(6282), + [anon_sym_LBRACK] = ACTIONS(6282), + [anon_sym_LPAREN] = ACTIONS(6282), + [anon_sym_RPAREN] = ACTIONS(6282), + [anon_sym_DOLLAR] = ACTIONS(6282), + [anon_sym_error] = ACTIONS(6282), + [anon_sym_DASH] = ACTIONS(6282), + [anon_sym_break] = ACTIONS(6282), + [anon_sym_continue] = ACTIONS(6282), + [anon_sym_for] = ACTIONS(6282), + [anon_sym_loop] = ACTIONS(6282), + [anon_sym_while] = ACTIONS(6282), + [anon_sym_do] = ACTIONS(6282), + [anon_sym_if] = ACTIONS(6282), + [anon_sym_match] = ACTIONS(6282), + [anon_sym_LBRACE] = ACTIONS(6282), + [anon_sym_RBRACE] = ACTIONS(6282), + [anon_sym_DOT_DOT] = ACTIONS(6282), + [anon_sym_try] = ACTIONS(6282), + [anon_sym_return] = ACTIONS(6282), + [anon_sym_source] = ACTIONS(6282), + [anon_sym_source_DASHenv] = ACTIONS(6282), + [anon_sym_register] = ACTIONS(6282), + [anon_sym_hide] = ACTIONS(6282), + [anon_sym_hide_DASHenv] = ACTIONS(6282), + [anon_sym_overlay] = ACTIONS(6282), + [anon_sym_where] = ACTIONS(6282), + [anon_sym_not] = ACTIONS(6282), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6282), + [anon_sym_DOT_DOT_LT] = ACTIONS(6282), + [anon_sym_null] = ACTIONS(6282), + [anon_sym_true] = ACTIONS(6282), + [anon_sym_false] = ACTIONS(6282), + [aux_sym__val_number_decimal_token1] = ACTIONS(6282), + [aux_sym__val_number_decimal_token2] = ACTIONS(6282), + [anon_sym_DOT2] = ACTIONS(6282), + [aux_sym__val_number_decimal_token3] = ACTIONS(6282), + [aux_sym__val_number_token1] = ACTIONS(6282), + [aux_sym__val_number_token2] = ACTIONS(6282), + [aux_sym__val_number_token3] = ACTIONS(6282), + [aux_sym__val_number_token4] = ACTIONS(6282), + [aux_sym__val_number_token5] = ACTIONS(6282), + [aux_sym__val_number_token6] = ACTIONS(6282), + [anon_sym_0b] = ACTIONS(6282), + [anon_sym_0o] = ACTIONS(6282), + [anon_sym_0x] = ACTIONS(6282), + [sym_val_date] = ACTIONS(6282), + [anon_sym_DQUOTE] = ACTIONS(6282), + [sym__str_single_quotes] = ACTIONS(6282), + [sym__str_back_ticks] = ACTIONS(6282), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6282), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6282), + [anon_sym_CARET] = ACTIONS(6282), + [anon_sym_POUND] = ACTIONS(113), }, - [2119] = { - [sym_expr_unary] = STATE(2556), - [sym__expr_unary_minus] = STATE(2550), - [sym_expr_binary] = STATE(2556), - [sym__expr_binary_expression] = STATE(2584), - [sym_expr_parenthesized] = STATE(2556), - [sym__val_range] = STATE(10676), - [sym__value] = STATE(2556), - [sym_val_nothing] = STATE(2599), - [sym_val_bool] = STATE(1894), - [sym_val_variable] = STATE(2599), - [sym__var] = STATE(1504), - [sym_val_number] = STATE(2599), - [sym__val_number_decimal] = STATE(1193), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2599), - [sym_val_filesize] = STATE(2599), - [sym_val_binary] = STATE(2599), - [sym_val_string] = STATE(2599), - [sym__str_double_quotes] = STATE(2611), - [sym_val_interpolated] = STATE(2599), - [sym__inter_single_quotes] = STATE(2612), - [sym__inter_double_quotes] = STATE(2613), - [sym_val_list] = STATE(2599), - [sym_val_record] = STATE(2599), - [sym_val_table] = STATE(2599), - [sym_val_closure] = STATE(2599), - [sym_unquoted] = STATE(2568), - [sym__unquoted_anonymous_prefix] = STATE(11354), - [sym_comment] = STATE(2119), - [anon_sym_LBRACK] = ACTIONS(5695), - [anon_sym_LPAREN] = ACTIONS(5697), - [anon_sym_DOLLAR] = ACTIONS(5699), - [anon_sym_DASH] = ACTIONS(5701), - [anon_sym_LBRACE] = ACTIONS(5703), - [anon_sym_DOT_DOT] = ACTIONS(5705), - [anon_sym_not] = ACTIONS(5707), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5709), - [anon_sym_DOT_DOT_LT] = ACTIONS(5709), - [anon_sym_null] = ACTIONS(5711), - [anon_sym_true] = ACTIONS(5713), - [anon_sym_false] = ACTIONS(5713), - [aux_sym__val_number_decimal_token1] = ACTIONS(5715), - [aux_sym__val_number_decimal_token2] = ACTIONS(5717), - [anon_sym_DOT2] = ACTIONS(5719), - [aux_sym__val_number_decimal_token3] = ACTIONS(5721), - [aux_sym__val_number_token1] = ACTIONS(5723), - [aux_sym__val_number_token2] = ACTIONS(5723), - [aux_sym__val_number_token3] = ACTIONS(5723), - [aux_sym__val_number_token4] = ACTIONS(5725), - [aux_sym__val_number_token5] = ACTIONS(5725), - [aux_sym__val_number_token6] = ACTIONS(5725), - [anon_sym_0b] = ACTIONS(5727), - [anon_sym_0o] = ACTIONS(5729), - [anon_sym_0x] = ACTIONS(5729), - [sym_val_date] = ACTIONS(5731), - [anon_sym_DQUOTE] = ACTIONS(5733), - [sym__str_single_quotes] = ACTIONS(5735), - [sym__str_back_ticks] = ACTIONS(5735), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5737), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5739), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5741), - [anon_sym_POUND] = ACTIONS(3), + [2393] = { + [sym_comment] = STATE(2393), + [ts_builtin_sym_end] = ACTIONS(1273), + [anon_sym_export] = ACTIONS(1271), + [anon_sym_alias] = ACTIONS(1271), + [anon_sym_let] = ACTIONS(1271), + [anon_sym_let_DASHenv] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(1271), + [anon_sym_const] = ACTIONS(1271), + [anon_sym_SEMI] = ACTIONS(1271), + [sym_cmd_identifier] = ACTIONS(1271), + [anon_sym_LF] = ACTIONS(1273), + [anon_sym_def] = ACTIONS(1271), + [anon_sym_export_DASHenv] = ACTIONS(1271), + [anon_sym_extern] = ACTIONS(1271), + [anon_sym_module] = ACTIONS(1271), + [anon_sym_use] = ACTIONS(1271), + [anon_sym_LBRACK] = ACTIONS(1271), + [anon_sym_LPAREN] = ACTIONS(1271), + [anon_sym_DOLLAR] = ACTIONS(1271), + [anon_sym_error] = ACTIONS(1271), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_break] = ACTIONS(1271), + [anon_sym_continue] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1271), + [anon_sym_loop] = ACTIONS(1271), + [anon_sym_while] = ACTIONS(1271), + [anon_sym_do] = ACTIONS(1271), + [anon_sym_if] = ACTIONS(1271), + [anon_sym_match] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_DOT_DOT] = ACTIONS(1271), + [anon_sym_try] = ACTIONS(1271), + [anon_sym_return] = ACTIONS(1271), + [anon_sym_source] = ACTIONS(1271), + [anon_sym_source_DASHenv] = ACTIONS(1271), + [anon_sym_register] = ACTIONS(1271), + [anon_sym_hide] = ACTIONS(1271), + [anon_sym_hide_DASHenv] = ACTIONS(1271), + [anon_sym_overlay] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(1271), + [anon_sym_where] = ACTIONS(1271), + [anon_sym_not] = ACTIONS(1271), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1271), + [anon_sym_DOT_DOT_LT] = ACTIONS(1271), + [anon_sym_null] = ACTIONS(1271), + [anon_sym_true] = ACTIONS(1271), + [anon_sym_false] = ACTIONS(1271), + [aux_sym__val_number_decimal_token1] = ACTIONS(1271), + [aux_sym__val_number_decimal_token2] = ACTIONS(1271), + [anon_sym_DOT2] = ACTIONS(1271), + [aux_sym__val_number_decimal_token3] = ACTIONS(1271), + [aux_sym__val_number_token1] = ACTIONS(1271), + [aux_sym__val_number_token2] = ACTIONS(1271), + [aux_sym__val_number_token3] = ACTIONS(1271), + [aux_sym__val_number_token4] = ACTIONS(1271), + [aux_sym__val_number_token5] = ACTIONS(1271), + [aux_sym__val_number_token6] = ACTIONS(1271), + [anon_sym_0b] = ACTIONS(1271), + [anon_sym_0o] = ACTIONS(1271), + [anon_sym_0x] = ACTIONS(1271), + [sym_val_date] = ACTIONS(1271), + [anon_sym_DQUOTE] = ACTIONS(1271), + [sym__str_single_quotes] = ACTIONS(1271), + [sym__str_back_ticks] = ACTIONS(1271), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1271), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1271), + [anon_sym_CARET] = ACTIONS(1271), + [anon_sym_POUND] = ACTIONS(113), }, - [2120] = { - [sym_expr_unary] = STATE(2556), - [sym__expr_unary_minus] = STATE(2550), - [sym_expr_binary] = STATE(2556), - [sym__expr_binary_expression] = STATE(2585), - [sym_expr_parenthesized] = STATE(2556), - [sym__val_range] = STATE(10676), - [sym__value] = STATE(2556), - [sym_val_nothing] = STATE(2599), - [sym_val_bool] = STATE(1894), - [sym_val_variable] = STATE(2599), - [sym__var] = STATE(1504), - [sym_val_number] = STATE(2599), - [sym__val_number_decimal] = STATE(1193), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2599), - [sym_val_filesize] = STATE(2599), - [sym_val_binary] = STATE(2599), - [sym_val_string] = STATE(2599), - [sym__str_double_quotes] = STATE(2611), - [sym_val_interpolated] = STATE(2599), - [sym__inter_single_quotes] = STATE(2612), - [sym__inter_double_quotes] = STATE(2613), - [sym_val_list] = STATE(2599), - [sym_val_record] = STATE(2599), - [sym_val_table] = STATE(2599), - [sym_val_closure] = STATE(2599), - [sym_unquoted] = STATE(2569), - [sym__unquoted_anonymous_prefix] = STATE(11354), - [sym_comment] = STATE(2120), - [anon_sym_LBRACK] = ACTIONS(5695), - [anon_sym_LPAREN] = ACTIONS(5697), - [anon_sym_DOLLAR] = ACTIONS(5699), - [anon_sym_DASH] = ACTIONS(5701), - [anon_sym_LBRACE] = ACTIONS(5703), - [anon_sym_DOT_DOT] = ACTIONS(5705), - [anon_sym_not] = ACTIONS(5707), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5709), - [anon_sym_DOT_DOT_LT] = ACTIONS(5709), - [anon_sym_null] = ACTIONS(5711), - [anon_sym_true] = ACTIONS(5713), - [anon_sym_false] = ACTIONS(5713), - [aux_sym__val_number_decimal_token1] = ACTIONS(5715), - [aux_sym__val_number_decimal_token2] = ACTIONS(5717), - [anon_sym_DOT2] = ACTIONS(5719), - [aux_sym__val_number_decimal_token3] = ACTIONS(5721), - [aux_sym__val_number_token1] = ACTIONS(5723), - [aux_sym__val_number_token2] = ACTIONS(5723), - [aux_sym__val_number_token3] = ACTIONS(5723), - [aux_sym__val_number_token4] = ACTIONS(5725), - [aux_sym__val_number_token5] = ACTIONS(5725), - [aux_sym__val_number_token6] = ACTIONS(5725), - [anon_sym_0b] = ACTIONS(5727), - [anon_sym_0o] = ACTIONS(5729), - [anon_sym_0x] = ACTIONS(5729), - [sym_val_date] = ACTIONS(5731), - [anon_sym_DQUOTE] = ACTIONS(5733), - [sym__str_single_quotes] = ACTIONS(5735), - [sym__str_back_ticks] = ACTIONS(5735), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5737), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5739), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5741), - [anon_sym_POUND] = ACTIONS(3), + [2394] = { + [sym_comment] = STATE(2394), + [anon_sym_export] = ACTIONS(6286), + [anon_sym_alias] = ACTIONS(6286), + [anon_sym_let] = ACTIONS(6286), + [anon_sym_let_DASHenv] = ACTIONS(6286), + [anon_sym_mut] = ACTIONS(6286), + [anon_sym_const] = ACTIONS(6286), + [anon_sym_SEMI] = ACTIONS(6286), + [sym_cmd_identifier] = ACTIONS(6286), + [anon_sym_LF] = ACTIONS(6288), + [anon_sym_def] = ACTIONS(6286), + [anon_sym_export_DASHenv] = ACTIONS(6286), + [anon_sym_extern] = ACTIONS(6286), + [anon_sym_module] = ACTIONS(6286), + [anon_sym_use] = ACTIONS(6286), + [anon_sym_LBRACK] = ACTIONS(6286), + [anon_sym_LPAREN] = ACTIONS(6286), + [anon_sym_RPAREN] = ACTIONS(6286), + [anon_sym_DOLLAR] = ACTIONS(6286), + [anon_sym_error] = ACTIONS(6286), + [anon_sym_DASH] = ACTIONS(6286), + [anon_sym_break] = ACTIONS(6286), + [anon_sym_continue] = ACTIONS(6286), + [anon_sym_for] = ACTIONS(6286), + [anon_sym_loop] = ACTIONS(6286), + [anon_sym_while] = ACTIONS(6286), + [anon_sym_do] = ACTIONS(6286), + [anon_sym_if] = ACTIONS(6286), + [anon_sym_match] = ACTIONS(6286), + [anon_sym_LBRACE] = ACTIONS(6286), + [anon_sym_RBRACE] = ACTIONS(6286), + [anon_sym_DOT_DOT] = ACTIONS(6286), + [anon_sym_try] = ACTIONS(6286), + [anon_sym_return] = ACTIONS(6286), + [anon_sym_source] = ACTIONS(6286), + [anon_sym_source_DASHenv] = ACTIONS(6286), + [anon_sym_register] = ACTIONS(6286), + [anon_sym_hide] = ACTIONS(6286), + [anon_sym_hide_DASHenv] = ACTIONS(6286), + [anon_sym_overlay] = ACTIONS(6286), + [anon_sym_where] = ACTIONS(6286), + [anon_sym_not] = ACTIONS(6286), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6286), + [anon_sym_DOT_DOT_LT] = ACTIONS(6286), + [anon_sym_null] = ACTIONS(6286), + [anon_sym_true] = ACTIONS(6286), + [anon_sym_false] = ACTIONS(6286), + [aux_sym__val_number_decimal_token1] = ACTIONS(6286), + [aux_sym__val_number_decimal_token2] = ACTIONS(6286), + [anon_sym_DOT2] = ACTIONS(6286), + [aux_sym__val_number_decimal_token3] = ACTIONS(6286), + [aux_sym__val_number_token1] = ACTIONS(6286), + [aux_sym__val_number_token2] = ACTIONS(6286), + [aux_sym__val_number_token3] = ACTIONS(6286), + [aux_sym__val_number_token4] = ACTIONS(6286), + [aux_sym__val_number_token5] = ACTIONS(6286), + [aux_sym__val_number_token6] = ACTIONS(6286), + [anon_sym_0b] = ACTIONS(6286), + [anon_sym_0o] = ACTIONS(6286), + [anon_sym_0x] = ACTIONS(6286), + [sym_val_date] = ACTIONS(6286), + [anon_sym_DQUOTE] = ACTIONS(6286), + [sym__str_single_quotes] = ACTIONS(6286), + [sym__str_back_ticks] = ACTIONS(6286), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6286), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6286), + [anon_sym_CARET] = ACTIONS(6286), + [anon_sym_POUND] = ACTIONS(113), }, - [2121] = { - [sym_expr_unary] = STATE(5783), - [sym__expr_unary_minus] = STATE(5713), - [sym_expr_binary] = STATE(5783), - [sym__expr_binary_expression] = STATE(5806), - [sym_expr_parenthesized] = STATE(5783), - [sym__val_range] = STATE(10596), - [sym__value] = STATE(5783), - [sym_val_nothing] = STATE(5674), - [sym_val_bool] = STATE(5487), - [sym_val_variable] = STATE(5674), - [sym__var] = STATE(5184), - [sym_val_number] = STATE(5674), - [sym__val_number_decimal] = STATE(4475), - [sym__val_number] = STATE(5809), - [sym_val_duration] = STATE(5674), - [sym_val_filesize] = STATE(5674), - [sym_val_binary] = STATE(5674), - [sym_val_string] = STATE(5674), - [sym__str_double_quotes] = STATE(5813), - [sym_val_interpolated] = STATE(5674), - [sym__inter_single_quotes] = STATE(5696), - [sym__inter_double_quotes] = STATE(5868), - [sym_val_list] = STATE(5674), - [sym_val_record] = STATE(5674), - [sym_val_table] = STATE(5674), - [sym_val_closure] = STATE(5674), - [sym_unquoted] = STATE(5805), - [sym__unquoted_anonymous_prefix] = STATE(10924), - [sym_comment] = STATE(2121), - [anon_sym_LBRACK] = ACTIONS(2646), - [anon_sym_LPAREN] = ACTIONS(5743), - [anon_sym_DOLLAR] = ACTIONS(5745), - [anon_sym_DASH] = ACTIONS(4871), - [anon_sym_LBRACE] = ACTIONS(2652), - [anon_sym_DOT_DOT] = ACTIONS(5747), - [anon_sym_not] = ACTIONS(4875), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5749), - [anon_sym_DOT_DOT_LT] = ACTIONS(5749), - [anon_sym_null] = ACTIONS(4879), - [anon_sym_true] = ACTIONS(4881), - [anon_sym_false] = ACTIONS(4881), - [aux_sym__val_number_decimal_token1] = ACTIONS(4883), - [aux_sym__val_number_decimal_token2] = ACTIONS(4885), - [anon_sym_DOT2] = ACTIONS(5751), - [aux_sym__val_number_decimal_token3] = ACTIONS(4889), - [aux_sym__val_number_token1] = ACTIONS(2664), - [aux_sym__val_number_token2] = ACTIONS(2664), - [aux_sym__val_number_token3] = ACTIONS(2664), - [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(1900), - [anon_sym_0o] = ACTIONS(1902), - [anon_sym_0x] = ACTIONS(1902), - [sym_val_date] = ACTIONS(4893), - [anon_sym_DQUOTE] = ACTIONS(2670), - [sym__str_single_quotes] = ACTIONS(2672), - [sym__str_back_ticks] = ACTIONS(2672), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2674), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2676), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(1918), - [anon_sym_POUND] = ACTIONS(3), + [2395] = { + [sym_comment] = STATE(2395), + [anon_sym_SEMI] = ACTIONS(920), + [anon_sym_LF] = ACTIONS(922), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_RPAREN] = ACTIONS(920), + [anon_sym_PIPE] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_in] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_RBRACE] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_STAR_STAR] = ACTIONS(920), + [anon_sym_PLUS_PLUS] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_mod] = ACTIONS(920), + [anon_sym_SLASH_SLASH] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_bit_DASHshl] = ACTIONS(920), + [anon_sym_bit_DASHshr] = ACTIONS(920), + [anon_sym_EQ_EQ] = ACTIONS(920), + [anon_sym_BANG_EQ] = ACTIONS(920), + [anon_sym_LT2] = ACTIONS(920), + [anon_sym_LT_EQ] = ACTIONS(920), + [anon_sym_GT_EQ] = ACTIONS(920), + [anon_sym_not_DASHin] = ACTIONS(920), + [anon_sym_starts_DASHwith] = ACTIONS(920), + [anon_sym_ends_DASHwith] = ACTIONS(920), + [anon_sym_EQ_TILDE] = ACTIONS(920), + [anon_sym_BANG_TILDE] = ACTIONS(920), + [anon_sym_bit_DASHand] = ACTIONS(920), + [anon_sym_bit_DASHxor] = ACTIONS(920), + [anon_sym_bit_DASHor] = ACTIONS(920), + [anon_sym_and] = ACTIONS(920), + [anon_sym_xor] = ACTIONS(920), + [anon_sym_or] = ACTIONS(920), + [anon_sym_not] = ACTIONS(920), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [aux_sym__immediate_decimal_token1] = ACTIONS(6290), + [anon_sym_null] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), + [aux_sym_unquoted_token2] = ACTIONS(6292), + [anon_sym_POUND] = ACTIONS(113), }, - [2122] = { - [sym_expr_unary] = STATE(5783), - [sym__expr_unary_minus] = STATE(5713), - [sym_expr_binary] = STATE(5783), - [sym__expr_binary_expression] = STATE(5834), - [sym_expr_parenthesized] = STATE(5783), - [sym__val_range] = STATE(10596), - [sym__value] = STATE(5783), - [sym_val_nothing] = STATE(5674), - [sym_val_bool] = STATE(5487), - [sym_val_variable] = STATE(5674), - [sym__var] = STATE(5184), - [sym_val_number] = STATE(5674), - [sym__val_number_decimal] = STATE(4475), - [sym__val_number] = STATE(5809), - [sym_val_duration] = STATE(5674), - [sym_val_filesize] = STATE(5674), - [sym_val_binary] = STATE(5674), - [sym_val_string] = STATE(5674), - [sym__str_double_quotes] = STATE(5813), - [sym_val_interpolated] = STATE(5674), - [sym__inter_single_quotes] = STATE(5696), - [sym__inter_double_quotes] = STATE(5868), - [sym_val_list] = STATE(5674), - [sym_val_record] = STATE(5674), - [sym_val_table] = STATE(5674), - [sym_val_closure] = STATE(5674), - [sym_unquoted] = STATE(5858), - [sym__unquoted_anonymous_prefix] = STATE(10924), - [sym_comment] = STATE(2122), - [anon_sym_LBRACK] = ACTIONS(2646), - [anon_sym_LPAREN] = ACTIONS(5743), - [anon_sym_DOLLAR] = ACTIONS(5745), - [anon_sym_DASH] = ACTIONS(4871), - [anon_sym_LBRACE] = ACTIONS(2652), - [anon_sym_DOT_DOT] = ACTIONS(5747), - [anon_sym_not] = ACTIONS(4875), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5749), - [anon_sym_DOT_DOT_LT] = ACTIONS(5749), - [anon_sym_null] = ACTIONS(4879), - [anon_sym_true] = ACTIONS(4881), - [anon_sym_false] = ACTIONS(4881), - [aux_sym__val_number_decimal_token1] = ACTIONS(4883), - [aux_sym__val_number_decimal_token2] = ACTIONS(4885), - [anon_sym_DOT2] = ACTIONS(5751), - [aux_sym__val_number_decimal_token3] = ACTIONS(4889), - [aux_sym__val_number_token1] = ACTIONS(2664), - [aux_sym__val_number_token2] = ACTIONS(2664), - [aux_sym__val_number_token3] = ACTIONS(2664), - [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(1900), - [anon_sym_0o] = ACTIONS(1902), - [anon_sym_0x] = ACTIONS(1902), - [sym_val_date] = ACTIONS(4893), - [anon_sym_DQUOTE] = ACTIONS(2670), - [sym__str_single_quotes] = ACTIONS(2672), - [sym__str_back_ticks] = ACTIONS(2672), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2674), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2676), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(1918), - [anon_sym_POUND] = ACTIONS(3), + [2396] = { + [sym_comment] = STATE(2396), + [anon_sym_export] = ACTIONS(6021), + [anon_sym_alias] = ACTIONS(6021), + [anon_sym_let] = ACTIONS(6021), + [anon_sym_let_DASHenv] = ACTIONS(6021), + [anon_sym_mut] = ACTIONS(6021), + [anon_sym_const] = ACTIONS(6021), + [anon_sym_SEMI] = ACTIONS(6021), + [sym_cmd_identifier] = ACTIONS(6021), + [anon_sym_LF] = ACTIONS(6023), + [anon_sym_def] = ACTIONS(6021), + [anon_sym_export_DASHenv] = ACTIONS(6021), + [anon_sym_extern] = ACTIONS(6021), + [anon_sym_module] = ACTIONS(6021), + [anon_sym_use] = ACTIONS(6021), + [anon_sym_LBRACK] = ACTIONS(6021), + [anon_sym_LPAREN] = ACTIONS(6021), + [anon_sym_RPAREN] = ACTIONS(6021), + [anon_sym_DOLLAR] = ACTIONS(6021), + [anon_sym_error] = ACTIONS(6021), + [anon_sym_DASH] = ACTIONS(6021), + [anon_sym_break] = ACTIONS(6021), + [anon_sym_continue] = ACTIONS(6021), + [anon_sym_for] = ACTIONS(6021), + [anon_sym_loop] = ACTIONS(6021), + [anon_sym_while] = ACTIONS(6021), + [anon_sym_do] = ACTIONS(6021), + [anon_sym_if] = ACTIONS(6021), + [anon_sym_match] = ACTIONS(6021), + [anon_sym_LBRACE] = ACTIONS(6021), + [anon_sym_RBRACE] = ACTIONS(6021), + [anon_sym_DOT_DOT] = ACTIONS(6021), + [anon_sym_try] = ACTIONS(6021), + [anon_sym_return] = ACTIONS(6021), + [anon_sym_source] = ACTIONS(6021), + [anon_sym_source_DASHenv] = ACTIONS(6021), + [anon_sym_register] = ACTIONS(6021), + [anon_sym_hide] = ACTIONS(6021), + [anon_sym_hide_DASHenv] = ACTIONS(6021), + [anon_sym_overlay] = ACTIONS(6021), + [anon_sym_where] = ACTIONS(6021), + [anon_sym_not] = ACTIONS(6021), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6021), + [anon_sym_DOT_DOT_LT] = ACTIONS(6021), + [anon_sym_null] = ACTIONS(6021), + [anon_sym_true] = ACTIONS(6021), + [anon_sym_false] = ACTIONS(6021), + [aux_sym__val_number_decimal_token1] = ACTIONS(6021), + [aux_sym__val_number_decimal_token2] = ACTIONS(6021), + [anon_sym_DOT2] = ACTIONS(6021), + [aux_sym__val_number_decimal_token3] = ACTIONS(6021), + [aux_sym__val_number_token1] = ACTIONS(6021), + [aux_sym__val_number_token2] = ACTIONS(6021), + [aux_sym__val_number_token3] = ACTIONS(6021), + [aux_sym__val_number_token4] = ACTIONS(6021), + [aux_sym__val_number_token5] = ACTIONS(6021), + [aux_sym__val_number_token6] = ACTIONS(6021), + [anon_sym_0b] = ACTIONS(6021), + [anon_sym_0o] = ACTIONS(6021), + [anon_sym_0x] = ACTIONS(6021), + [sym_val_date] = ACTIONS(6021), + [anon_sym_DQUOTE] = ACTIONS(6021), + [sym__str_single_quotes] = ACTIONS(6021), + [sym__str_back_ticks] = ACTIONS(6021), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6021), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6021), + [anon_sym_CARET] = ACTIONS(6021), + [anon_sym_POUND] = ACTIONS(113), }, - [2123] = { - [sym_expr_unary] = STATE(5783), - [sym__expr_unary_minus] = STATE(5713), - [sym_expr_binary] = STATE(5783), - [sym__expr_binary_expression] = STATE(5849), - [sym_expr_parenthesized] = STATE(5783), - [sym__val_range] = STATE(10596), - [sym__value] = STATE(5783), - [sym_val_nothing] = STATE(5674), - [sym_val_bool] = STATE(5487), - [sym_val_variable] = STATE(5674), - [sym__var] = STATE(5184), - [sym_val_number] = STATE(5674), - [sym__val_number_decimal] = STATE(4475), - [sym__val_number] = STATE(5809), - [sym_val_duration] = STATE(5674), - [sym_val_filesize] = STATE(5674), - [sym_val_binary] = STATE(5674), - [sym_val_string] = STATE(5674), - [sym__str_double_quotes] = STATE(5813), - [sym_val_interpolated] = STATE(5674), - [sym__inter_single_quotes] = STATE(5696), - [sym__inter_double_quotes] = STATE(5868), - [sym_val_list] = STATE(5674), - [sym_val_record] = STATE(5674), - [sym_val_table] = STATE(5674), - [sym_val_closure] = STATE(5674), - [sym_unquoted] = STATE(5891), - [sym__unquoted_anonymous_prefix] = STATE(10924), - [sym_comment] = STATE(2123), - [anon_sym_LBRACK] = ACTIONS(2646), - [anon_sym_LPAREN] = ACTIONS(5743), - [anon_sym_DOLLAR] = ACTIONS(5745), - [anon_sym_DASH] = ACTIONS(4871), - [anon_sym_LBRACE] = ACTIONS(2652), - [anon_sym_DOT_DOT] = ACTIONS(5747), - [anon_sym_not] = ACTIONS(4875), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5749), - [anon_sym_DOT_DOT_LT] = ACTIONS(5749), - [anon_sym_null] = ACTIONS(4879), - [anon_sym_true] = ACTIONS(4881), - [anon_sym_false] = ACTIONS(4881), - [aux_sym__val_number_decimal_token1] = ACTIONS(4883), - [aux_sym__val_number_decimal_token2] = ACTIONS(4885), - [anon_sym_DOT2] = ACTIONS(5751), - [aux_sym__val_number_decimal_token3] = ACTIONS(4889), - [aux_sym__val_number_token1] = ACTIONS(2664), - [aux_sym__val_number_token2] = ACTIONS(2664), - [aux_sym__val_number_token3] = ACTIONS(2664), - [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(1900), - [anon_sym_0o] = ACTIONS(1902), - [anon_sym_0x] = ACTIONS(1902), - [sym_val_date] = ACTIONS(4893), - [anon_sym_DQUOTE] = ACTIONS(2670), - [sym__str_single_quotes] = ACTIONS(2672), - [sym__str_back_ticks] = ACTIONS(2672), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2674), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2676), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(1918), - [anon_sym_POUND] = ACTIONS(3), + [2397] = { + [sym_comment] = STATE(2397), + [anon_sym_export] = ACTIONS(6294), + [anon_sym_alias] = ACTIONS(6294), + [anon_sym_let] = ACTIONS(6294), + [anon_sym_let_DASHenv] = ACTIONS(6294), + [anon_sym_mut] = ACTIONS(6294), + [anon_sym_const] = ACTIONS(6294), + [anon_sym_SEMI] = ACTIONS(6294), + [sym_cmd_identifier] = ACTIONS(6294), + [anon_sym_LF] = ACTIONS(6296), + [anon_sym_def] = ACTIONS(6294), + [anon_sym_export_DASHenv] = ACTIONS(6294), + [anon_sym_extern] = ACTIONS(6294), + [anon_sym_module] = ACTIONS(6294), + [anon_sym_use] = ACTIONS(6294), + [anon_sym_LBRACK] = ACTIONS(6294), + [anon_sym_LPAREN] = ACTIONS(6294), + [anon_sym_RPAREN] = ACTIONS(6294), + [anon_sym_DOLLAR] = ACTIONS(6294), + [anon_sym_error] = ACTIONS(6294), + [anon_sym_DASH] = ACTIONS(6294), + [anon_sym_break] = ACTIONS(6294), + [anon_sym_continue] = ACTIONS(6294), + [anon_sym_for] = ACTIONS(6294), + [anon_sym_loop] = ACTIONS(6294), + [anon_sym_while] = ACTIONS(6294), + [anon_sym_do] = ACTIONS(6294), + [anon_sym_if] = ACTIONS(6294), + [anon_sym_match] = ACTIONS(6294), + [anon_sym_LBRACE] = ACTIONS(6294), + [anon_sym_RBRACE] = ACTIONS(6294), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_try] = ACTIONS(6294), + [anon_sym_return] = ACTIONS(6294), + [anon_sym_source] = ACTIONS(6294), + [anon_sym_source_DASHenv] = ACTIONS(6294), + [anon_sym_register] = ACTIONS(6294), + [anon_sym_hide] = ACTIONS(6294), + [anon_sym_hide_DASHenv] = ACTIONS(6294), + [anon_sym_overlay] = ACTIONS(6294), + [anon_sym_where] = ACTIONS(6294), + [anon_sym_not] = ACTIONS(6294), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6294), + [anon_sym_DOT_DOT_LT] = ACTIONS(6294), + [anon_sym_null] = ACTIONS(6294), + [anon_sym_true] = ACTIONS(6294), + [anon_sym_false] = ACTIONS(6294), + [aux_sym__val_number_decimal_token1] = ACTIONS(6294), + [aux_sym__val_number_decimal_token2] = ACTIONS(6294), + [anon_sym_DOT2] = ACTIONS(6294), + [aux_sym__val_number_decimal_token3] = ACTIONS(6294), + [aux_sym__val_number_token1] = ACTIONS(6294), + [aux_sym__val_number_token2] = ACTIONS(6294), + [aux_sym__val_number_token3] = ACTIONS(6294), + [aux_sym__val_number_token4] = ACTIONS(6294), + [aux_sym__val_number_token5] = ACTIONS(6294), + [aux_sym__val_number_token6] = ACTIONS(6294), + [anon_sym_0b] = ACTIONS(6294), + [anon_sym_0o] = ACTIONS(6294), + [anon_sym_0x] = ACTIONS(6294), + [sym_val_date] = ACTIONS(6294), + [anon_sym_DQUOTE] = ACTIONS(6294), + [sym__str_single_quotes] = ACTIONS(6294), + [sym__str_back_ticks] = ACTIONS(6294), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6294), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6294), + [anon_sym_CARET] = ACTIONS(6294), + [anon_sym_POUND] = ACTIONS(113), }, - [2124] = { - [sym_expr_unary] = STATE(5783), - [sym__expr_unary_minus] = STATE(5713), - [sym_expr_binary] = STATE(5783), - [sym__expr_binary_expression] = STATE(5904), - [sym_expr_parenthesized] = STATE(5783), - [sym__val_range] = STATE(10596), - [sym__value] = STATE(5783), - [sym_val_nothing] = STATE(5674), - [sym_val_bool] = STATE(5487), - [sym_val_variable] = STATE(5674), - [sym__var] = STATE(5184), - [sym_val_number] = STATE(5674), - [sym__val_number_decimal] = STATE(4475), - [sym__val_number] = STATE(5809), - [sym_val_duration] = STATE(5674), - [sym_val_filesize] = STATE(5674), - [sym_val_binary] = STATE(5674), - [sym_val_string] = STATE(5674), - [sym__str_double_quotes] = STATE(5813), - [sym_val_interpolated] = STATE(5674), - [sym__inter_single_quotes] = STATE(5696), - [sym__inter_double_quotes] = STATE(5868), - [sym_val_list] = STATE(5674), - [sym_val_record] = STATE(5674), - [sym_val_table] = STATE(5674), - [sym_val_closure] = STATE(5674), - [sym_unquoted] = STATE(5896), - [sym__unquoted_anonymous_prefix] = STATE(10924), - [sym_comment] = STATE(2124), - [anon_sym_LBRACK] = ACTIONS(2646), - [anon_sym_LPAREN] = ACTIONS(5743), - [anon_sym_DOLLAR] = ACTIONS(5745), - [anon_sym_DASH] = ACTIONS(4871), - [anon_sym_LBRACE] = ACTIONS(2652), - [anon_sym_DOT_DOT] = ACTIONS(5747), - [anon_sym_not] = ACTIONS(4875), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5749), - [anon_sym_DOT_DOT_LT] = ACTIONS(5749), - [anon_sym_null] = ACTIONS(4879), - [anon_sym_true] = ACTIONS(4881), - [anon_sym_false] = ACTIONS(4881), - [aux_sym__val_number_decimal_token1] = ACTIONS(4883), - [aux_sym__val_number_decimal_token2] = ACTIONS(4885), - [anon_sym_DOT2] = ACTIONS(5751), - [aux_sym__val_number_decimal_token3] = ACTIONS(4889), - [aux_sym__val_number_token1] = ACTIONS(2664), - [aux_sym__val_number_token2] = ACTIONS(2664), - [aux_sym__val_number_token3] = ACTIONS(2664), - [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(1900), - [anon_sym_0o] = ACTIONS(1902), - [anon_sym_0x] = ACTIONS(1902), - [sym_val_date] = ACTIONS(4893), - [anon_sym_DQUOTE] = ACTIONS(2670), - [sym__str_single_quotes] = ACTIONS(2672), - [sym__str_back_ticks] = ACTIONS(2672), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2674), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2676), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(1918), - [anon_sym_POUND] = ACTIONS(3), + [2398] = { + [sym_comment] = STATE(2398), + [anon_sym_export] = ACTIONS(6294), + [anon_sym_alias] = ACTIONS(6294), + [anon_sym_let] = ACTIONS(6294), + [anon_sym_let_DASHenv] = ACTIONS(6294), + [anon_sym_mut] = ACTIONS(6294), + [anon_sym_const] = ACTIONS(6294), + [anon_sym_SEMI] = ACTIONS(6294), + [sym_cmd_identifier] = ACTIONS(6294), + [anon_sym_LF] = ACTIONS(6296), + [anon_sym_def] = ACTIONS(6294), + [anon_sym_export_DASHenv] = ACTIONS(6294), + [anon_sym_extern] = ACTIONS(6294), + [anon_sym_module] = ACTIONS(6294), + [anon_sym_use] = ACTIONS(6294), + [anon_sym_LBRACK] = ACTIONS(6294), + [anon_sym_LPAREN] = ACTIONS(6294), + [anon_sym_RPAREN] = ACTIONS(6294), + [anon_sym_DOLLAR] = ACTIONS(6294), + [anon_sym_error] = ACTIONS(6294), + [anon_sym_DASH] = ACTIONS(6294), + [anon_sym_break] = ACTIONS(6294), + [anon_sym_continue] = ACTIONS(6294), + [anon_sym_for] = ACTIONS(6294), + [anon_sym_loop] = ACTIONS(6294), + [anon_sym_while] = ACTIONS(6294), + [anon_sym_do] = ACTIONS(6294), + [anon_sym_if] = ACTIONS(6294), + [anon_sym_match] = ACTIONS(6294), + [anon_sym_LBRACE] = ACTIONS(6294), + [anon_sym_RBRACE] = ACTIONS(6294), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_try] = ACTIONS(6294), + [anon_sym_return] = ACTIONS(6294), + [anon_sym_source] = ACTIONS(6294), + [anon_sym_source_DASHenv] = ACTIONS(6294), + [anon_sym_register] = ACTIONS(6294), + [anon_sym_hide] = ACTIONS(6294), + [anon_sym_hide_DASHenv] = ACTIONS(6294), + [anon_sym_overlay] = ACTIONS(6294), + [anon_sym_where] = ACTIONS(6294), + [anon_sym_not] = ACTIONS(6294), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6294), + [anon_sym_DOT_DOT_LT] = ACTIONS(6294), + [anon_sym_null] = ACTIONS(6294), + [anon_sym_true] = ACTIONS(6294), + [anon_sym_false] = ACTIONS(6294), + [aux_sym__val_number_decimal_token1] = ACTIONS(6294), + [aux_sym__val_number_decimal_token2] = ACTIONS(6294), + [anon_sym_DOT2] = ACTIONS(6294), + [aux_sym__val_number_decimal_token3] = ACTIONS(6294), + [aux_sym__val_number_token1] = ACTIONS(6294), + [aux_sym__val_number_token2] = ACTIONS(6294), + [aux_sym__val_number_token3] = ACTIONS(6294), + [aux_sym__val_number_token4] = ACTIONS(6294), + [aux_sym__val_number_token5] = ACTIONS(6294), + [aux_sym__val_number_token6] = ACTIONS(6294), + [anon_sym_0b] = ACTIONS(6294), + [anon_sym_0o] = ACTIONS(6294), + [anon_sym_0x] = ACTIONS(6294), + [sym_val_date] = ACTIONS(6294), + [anon_sym_DQUOTE] = ACTIONS(6294), + [sym__str_single_quotes] = ACTIONS(6294), + [sym__str_back_ticks] = ACTIONS(6294), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6294), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6294), + [anon_sym_CARET] = ACTIONS(6294), + [anon_sym_POUND] = ACTIONS(113), }, - [2125] = { - [sym_expr_unary] = STATE(5783), - [sym__expr_unary_minus] = STATE(5713), - [sym_expr_binary] = STATE(5783), - [sym__expr_binary_expression] = STATE(5925), - [sym_expr_parenthesized] = STATE(5783), - [sym__val_range] = STATE(10596), - [sym__value] = STATE(5783), - [sym_val_nothing] = STATE(5674), - [sym_val_bool] = STATE(5487), - [sym_val_variable] = STATE(5674), - [sym__var] = STATE(5184), - [sym_val_number] = STATE(5674), - [sym__val_number_decimal] = STATE(4475), - [sym__val_number] = STATE(5809), - [sym_val_duration] = STATE(5674), - [sym_val_filesize] = STATE(5674), - [sym_val_binary] = STATE(5674), - [sym_val_string] = STATE(5674), - [sym__str_double_quotes] = STATE(5813), - [sym_val_interpolated] = STATE(5674), - [sym__inter_single_quotes] = STATE(5696), - [sym__inter_double_quotes] = STATE(5868), - [sym_val_list] = STATE(5674), - [sym_val_record] = STATE(5674), - [sym_val_table] = STATE(5674), - [sym_val_closure] = STATE(5674), - [sym_unquoted] = STATE(5923), - [sym__unquoted_anonymous_prefix] = STATE(10924), - [sym_comment] = STATE(2125), - [anon_sym_LBRACK] = ACTIONS(2646), - [anon_sym_LPAREN] = ACTIONS(5743), - [anon_sym_DOLLAR] = ACTIONS(5745), - [anon_sym_DASH] = ACTIONS(4871), - [anon_sym_LBRACE] = ACTIONS(2652), - [anon_sym_DOT_DOT] = ACTIONS(5747), - [anon_sym_not] = ACTIONS(4875), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5749), - [anon_sym_DOT_DOT_LT] = ACTIONS(5749), - [anon_sym_null] = ACTIONS(4879), - [anon_sym_true] = ACTIONS(4881), - [anon_sym_false] = ACTIONS(4881), - [aux_sym__val_number_decimal_token1] = ACTIONS(4883), - [aux_sym__val_number_decimal_token2] = ACTIONS(4885), - [anon_sym_DOT2] = ACTIONS(5751), - [aux_sym__val_number_decimal_token3] = ACTIONS(4889), - [aux_sym__val_number_token1] = ACTIONS(2664), - [aux_sym__val_number_token2] = ACTIONS(2664), - [aux_sym__val_number_token3] = ACTIONS(2664), - [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(1900), - [anon_sym_0o] = ACTIONS(1902), - [anon_sym_0x] = ACTIONS(1902), - [sym_val_date] = ACTIONS(4893), - [anon_sym_DQUOTE] = ACTIONS(2670), - [sym__str_single_quotes] = ACTIONS(2672), - [sym__str_back_ticks] = ACTIONS(2672), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2674), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2676), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(1918), - [anon_sym_POUND] = ACTIONS(3), + [2399] = { + [sym_comment] = STATE(2399), + [anon_sym_export] = ACTIONS(6298), + [anon_sym_alias] = ACTIONS(6298), + [anon_sym_let] = ACTIONS(6298), + [anon_sym_let_DASHenv] = ACTIONS(6298), + [anon_sym_mut] = ACTIONS(6298), + [anon_sym_const] = ACTIONS(6298), + [anon_sym_SEMI] = ACTIONS(6298), + [sym_cmd_identifier] = ACTIONS(6298), + [anon_sym_LF] = ACTIONS(6300), + [anon_sym_def] = ACTIONS(6298), + [anon_sym_export_DASHenv] = ACTIONS(6298), + [anon_sym_extern] = ACTIONS(6298), + [anon_sym_module] = ACTIONS(6298), + [anon_sym_use] = ACTIONS(6298), + [anon_sym_LBRACK] = ACTIONS(6298), + [anon_sym_LPAREN] = ACTIONS(6298), + [anon_sym_RPAREN] = ACTIONS(6298), + [anon_sym_DOLLAR] = ACTIONS(6298), + [anon_sym_error] = ACTIONS(6298), + [anon_sym_DASH] = ACTIONS(6298), + [anon_sym_break] = ACTIONS(6298), + [anon_sym_continue] = ACTIONS(6298), + [anon_sym_for] = ACTIONS(6298), + [anon_sym_loop] = ACTIONS(6298), + [anon_sym_while] = ACTIONS(6298), + [anon_sym_do] = ACTIONS(6298), + [anon_sym_if] = ACTIONS(6298), + [anon_sym_match] = ACTIONS(6298), + [anon_sym_LBRACE] = ACTIONS(6298), + [anon_sym_RBRACE] = ACTIONS(6298), + [anon_sym_DOT_DOT] = ACTIONS(6298), + [anon_sym_try] = ACTIONS(6298), + [anon_sym_return] = ACTIONS(6298), + [anon_sym_source] = ACTIONS(6298), + [anon_sym_source_DASHenv] = ACTIONS(6298), + [anon_sym_register] = ACTIONS(6298), + [anon_sym_hide] = ACTIONS(6298), + [anon_sym_hide_DASHenv] = ACTIONS(6298), + [anon_sym_overlay] = ACTIONS(6298), + [anon_sym_where] = ACTIONS(6298), + [anon_sym_not] = ACTIONS(6298), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6298), + [anon_sym_DOT_DOT_LT] = ACTIONS(6298), + [anon_sym_null] = ACTIONS(6298), + [anon_sym_true] = ACTIONS(6298), + [anon_sym_false] = ACTIONS(6298), + [aux_sym__val_number_decimal_token1] = ACTIONS(6298), + [aux_sym__val_number_decimal_token2] = ACTIONS(6298), + [anon_sym_DOT2] = ACTIONS(6298), + [aux_sym__val_number_decimal_token3] = ACTIONS(6298), + [aux_sym__val_number_token1] = ACTIONS(6298), + [aux_sym__val_number_token2] = ACTIONS(6298), + [aux_sym__val_number_token3] = ACTIONS(6298), + [aux_sym__val_number_token4] = ACTIONS(6298), + [aux_sym__val_number_token5] = ACTIONS(6298), + [aux_sym__val_number_token6] = ACTIONS(6298), + [anon_sym_0b] = ACTIONS(6298), + [anon_sym_0o] = ACTIONS(6298), + [anon_sym_0x] = ACTIONS(6298), + [sym_val_date] = ACTIONS(6298), + [anon_sym_DQUOTE] = ACTIONS(6298), + [sym__str_single_quotes] = ACTIONS(6298), + [sym__str_back_ticks] = ACTIONS(6298), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6298), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6298), + [anon_sym_CARET] = ACTIONS(6298), + [anon_sym_POUND] = ACTIONS(113), }, - [2126] = { - [sym_expr_unary] = STATE(5783), - [sym__expr_unary_minus] = STATE(5713), - [sym_expr_binary] = STATE(5783), - [sym__expr_binary_expression] = STATE(5926), - [sym_expr_parenthesized] = STATE(5783), - [sym__val_range] = STATE(10596), - [sym__value] = STATE(5783), - [sym_val_nothing] = STATE(5674), - [sym_val_bool] = STATE(5487), - [sym_val_variable] = STATE(5674), - [sym__var] = STATE(5184), - [sym_val_number] = STATE(5674), - [sym__val_number_decimal] = STATE(4475), - [sym__val_number] = STATE(5809), - [sym_val_duration] = STATE(5674), - [sym_val_filesize] = STATE(5674), - [sym_val_binary] = STATE(5674), - [sym_val_string] = STATE(5674), - [sym__str_double_quotes] = STATE(5813), - [sym_val_interpolated] = STATE(5674), - [sym__inter_single_quotes] = STATE(5696), - [sym__inter_double_quotes] = STATE(5868), - [sym_val_list] = STATE(5674), - [sym_val_record] = STATE(5674), - [sym_val_table] = STATE(5674), - [sym_val_closure] = STATE(5674), - [sym_unquoted] = STATE(5931), - [sym__unquoted_anonymous_prefix] = STATE(10924), - [sym_comment] = STATE(2126), - [anon_sym_LBRACK] = ACTIONS(2646), - [anon_sym_LPAREN] = ACTIONS(5743), - [anon_sym_DOLLAR] = ACTIONS(5745), - [anon_sym_DASH] = ACTIONS(4871), - [anon_sym_LBRACE] = ACTIONS(2652), - [anon_sym_DOT_DOT] = ACTIONS(5747), - [anon_sym_not] = ACTIONS(4875), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5749), - [anon_sym_DOT_DOT_LT] = ACTIONS(5749), - [anon_sym_null] = ACTIONS(4879), - [anon_sym_true] = ACTIONS(4881), - [anon_sym_false] = ACTIONS(4881), - [aux_sym__val_number_decimal_token1] = ACTIONS(4883), - [aux_sym__val_number_decimal_token2] = ACTIONS(4885), - [anon_sym_DOT2] = ACTIONS(5751), - [aux_sym__val_number_decimal_token3] = ACTIONS(4889), - [aux_sym__val_number_token1] = ACTIONS(2664), - [aux_sym__val_number_token2] = ACTIONS(2664), - [aux_sym__val_number_token3] = ACTIONS(2664), - [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(1900), - [anon_sym_0o] = ACTIONS(1902), - [anon_sym_0x] = ACTIONS(1902), - [sym_val_date] = ACTIONS(4893), - [anon_sym_DQUOTE] = ACTIONS(2670), - [sym__str_single_quotes] = ACTIONS(2672), - [sym__str_back_ticks] = ACTIONS(2672), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2674), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2676), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(1918), - [anon_sym_POUND] = ACTIONS(3), + [2400] = { + [sym_comment] = STATE(2400), + [ts_builtin_sym_end] = ACTIONS(5942), + [anon_sym_export] = ACTIONS(5940), + [anon_sym_alias] = ACTIONS(5940), + [anon_sym_let] = ACTIONS(5940), + [anon_sym_let_DASHenv] = ACTIONS(5940), + [anon_sym_mut] = ACTIONS(5940), + [anon_sym_const] = ACTIONS(5940), + [anon_sym_SEMI] = ACTIONS(5940), + [sym_cmd_identifier] = ACTIONS(5940), + [anon_sym_LF] = ACTIONS(5942), + [anon_sym_def] = ACTIONS(5940), + [anon_sym_export_DASHenv] = ACTIONS(5940), + [anon_sym_extern] = ACTIONS(5940), + [anon_sym_module] = ACTIONS(5940), + [anon_sym_use] = ACTIONS(5940), + [anon_sym_LBRACK] = ACTIONS(5940), + [anon_sym_LPAREN] = ACTIONS(5940), + [anon_sym_DOLLAR] = ACTIONS(5940), + [anon_sym_error] = ACTIONS(5940), + [anon_sym_DASH] = ACTIONS(5940), + [anon_sym_break] = ACTIONS(5940), + [anon_sym_continue] = ACTIONS(5940), + [anon_sym_for] = ACTIONS(5940), + [anon_sym_loop] = ACTIONS(5940), + [anon_sym_while] = ACTIONS(5940), + [anon_sym_do] = ACTIONS(5940), + [anon_sym_if] = ACTIONS(5940), + [anon_sym_match] = ACTIONS(5940), + [anon_sym_LBRACE] = ACTIONS(5940), + [anon_sym_DOT_DOT] = ACTIONS(5940), + [anon_sym_try] = ACTIONS(5940), + [anon_sym_return] = ACTIONS(5940), + [anon_sym_source] = ACTIONS(5940), + [anon_sym_source_DASHenv] = ACTIONS(5940), + [anon_sym_register] = ACTIONS(5940), + [anon_sym_hide] = ACTIONS(5940), + [anon_sym_hide_DASHenv] = ACTIONS(5940), + [anon_sym_overlay] = ACTIONS(5940), + [anon_sym_where] = ACTIONS(5940), + [anon_sym_not] = ACTIONS(5940), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5940), + [anon_sym_DOT_DOT_LT] = ACTIONS(5940), + [anon_sym_null] = ACTIONS(5940), + [anon_sym_true] = ACTIONS(5940), + [anon_sym_false] = ACTIONS(5940), + [aux_sym__val_number_decimal_token1] = ACTIONS(5940), + [aux_sym__val_number_decimal_token2] = ACTIONS(5940), + [anon_sym_DOT2] = ACTIONS(5940), + [aux_sym__val_number_decimal_token3] = ACTIONS(5940), + [aux_sym__val_number_token1] = ACTIONS(5940), + [aux_sym__val_number_token2] = ACTIONS(5940), + [aux_sym__val_number_token3] = ACTIONS(5940), + [aux_sym__val_number_token4] = ACTIONS(5940), + [aux_sym__val_number_token5] = ACTIONS(5940), + [aux_sym__val_number_token6] = ACTIONS(5940), + [anon_sym_0b] = ACTIONS(5940), + [anon_sym_0o] = ACTIONS(5940), + [anon_sym_0x] = ACTIONS(5940), + [sym_val_date] = ACTIONS(5940), + [anon_sym_DQUOTE] = ACTIONS(5940), + [sym__str_single_quotes] = ACTIONS(5940), + [sym__str_back_ticks] = ACTIONS(5940), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5940), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5940), + [anon_sym_CARET] = ACTIONS(5940), + [anon_sym_POUND] = ACTIONS(113), }, - [2127] = { - [sym_expr_unary] = STATE(5783), - [sym__expr_unary_minus] = STATE(5713), - [sym_expr_binary] = STATE(5783), - [sym__expr_binary_expression] = STATE(5940), - [sym_expr_parenthesized] = STATE(5783), - [sym__val_range] = STATE(10596), - [sym__value] = STATE(5783), - [sym_val_nothing] = STATE(5674), - [sym_val_bool] = STATE(5487), - [sym_val_variable] = STATE(5674), - [sym__var] = STATE(5184), - [sym_val_number] = STATE(5674), - [sym__val_number_decimal] = STATE(4475), - [sym__val_number] = STATE(5809), - [sym_val_duration] = STATE(5674), - [sym_val_filesize] = STATE(5674), - [sym_val_binary] = STATE(5674), - [sym_val_string] = STATE(5674), - [sym__str_double_quotes] = STATE(5813), - [sym_val_interpolated] = STATE(5674), - [sym__inter_single_quotes] = STATE(5696), - [sym__inter_double_quotes] = STATE(5868), - [sym_val_list] = STATE(5674), - [sym_val_record] = STATE(5674), - [sym_val_table] = STATE(5674), - [sym_val_closure] = STATE(5674), - [sym_unquoted] = STATE(5634), - [sym__unquoted_anonymous_prefix] = STATE(10924), - [sym_comment] = STATE(2127), - [anon_sym_LBRACK] = ACTIONS(2646), - [anon_sym_LPAREN] = ACTIONS(5743), - [anon_sym_DOLLAR] = ACTIONS(5745), - [anon_sym_DASH] = ACTIONS(4871), - [anon_sym_LBRACE] = ACTIONS(2652), - [anon_sym_DOT_DOT] = ACTIONS(5747), - [anon_sym_not] = ACTIONS(4875), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5749), - [anon_sym_DOT_DOT_LT] = ACTIONS(5749), - [anon_sym_null] = ACTIONS(4879), - [anon_sym_true] = ACTIONS(4881), - [anon_sym_false] = ACTIONS(4881), - [aux_sym__val_number_decimal_token1] = ACTIONS(4883), - [aux_sym__val_number_decimal_token2] = ACTIONS(4885), - [anon_sym_DOT2] = ACTIONS(5751), - [aux_sym__val_number_decimal_token3] = ACTIONS(4889), - [aux_sym__val_number_token1] = ACTIONS(2664), - [aux_sym__val_number_token2] = ACTIONS(2664), - [aux_sym__val_number_token3] = ACTIONS(2664), - [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(1900), - [anon_sym_0o] = ACTIONS(1902), - [anon_sym_0x] = ACTIONS(1902), - [sym_val_date] = ACTIONS(4893), - [anon_sym_DQUOTE] = ACTIONS(2670), - [sym__str_single_quotes] = ACTIONS(2672), - [sym__str_back_ticks] = ACTIONS(2672), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2674), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2676), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(1918), - [anon_sym_POUND] = ACTIONS(3), + [2401] = { + [sym_comment] = STATE(2401), + [ts_builtin_sym_end] = ACTIONS(5942), + [anon_sym_export] = ACTIONS(5940), + [anon_sym_alias] = ACTIONS(5940), + [anon_sym_let] = ACTIONS(5940), + [anon_sym_let_DASHenv] = ACTIONS(5940), + [anon_sym_mut] = ACTIONS(5940), + [anon_sym_const] = ACTIONS(5940), + [anon_sym_SEMI] = ACTIONS(5940), + [sym_cmd_identifier] = ACTIONS(5940), + [anon_sym_LF] = ACTIONS(5942), + [anon_sym_def] = ACTIONS(5940), + [anon_sym_export_DASHenv] = ACTIONS(5940), + [anon_sym_extern] = ACTIONS(5940), + [anon_sym_module] = ACTIONS(5940), + [anon_sym_use] = ACTIONS(5940), + [anon_sym_LBRACK] = ACTIONS(5940), + [anon_sym_LPAREN] = ACTIONS(5940), + [anon_sym_DOLLAR] = ACTIONS(5940), + [anon_sym_error] = ACTIONS(5940), + [anon_sym_DASH] = ACTIONS(5940), + [anon_sym_break] = ACTIONS(5940), + [anon_sym_continue] = ACTIONS(5940), + [anon_sym_for] = ACTIONS(5940), + [anon_sym_loop] = ACTIONS(5940), + [anon_sym_while] = ACTIONS(5940), + [anon_sym_do] = ACTIONS(5940), + [anon_sym_if] = ACTIONS(5940), + [anon_sym_match] = ACTIONS(5940), + [anon_sym_LBRACE] = ACTIONS(5940), + [anon_sym_DOT_DOT] = ACTIONS(5940), + [anon_sym_try] = ACTIONS(5940), + [anon_sym_return] = ACTIONS(5940), + [anon_sym_source] = ACTIONS(5940), + [anon_sym_source_DASHenv] = ACTIONS(5940), + [anon_sym_register] = ACTIONS(5940), + [anon_sym_hide] = ACTIONS(5940), + [anon_sym_hide_DASHenv] = ACTIONS(5940), + [anon_sym_overlay] = ACTIONS(5940), + [anon_sym_where] = ACTIONS(5940), + [anon_sym_not] = ACTIONS(5940), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5940), + [anon_sym_DOT_DOT_LT] = ACTIONS(5940), + [anon_sym_null] = ACTIONS(5940), + [anon_sym_true] = ACTIONS(5940), + [anon_sym_false] = ACTIONS(5940), + [aux_sym__val_number_decimal_token1] = ACTIONS(5940), + [aux_sym__val_number_decimal_token2] = ACTIONS(5940), + [anon_sym_DOT2] = ACTIONS(5940), + [aux_sym__val_number_decimal_token3] = ACTIONS(5940), + [aux_sym__val_number_token1] = ACTIONS(5940), + [aux_sym__val_number_token2] = ACTIONS(5940), + [aux_sym__val_number_token3] = ACTIONS(5940), + [aux_sym__val_number_token4] = ACTIONS(5940), + [aux_sym__val_number_token5] = ACTIONS(5940), + [aux_sym__val_number_token6] = ACTIONS(5940), + [anon_sym_0b] = ACTIONS(5940), + [anon_sym_0o] = ACTIONS(5940), + [anon_sym_0x] = ACTIONS(5940), + [sym_val_date] = ACTIONS(5940), + [anon_sym_DQUOTE] = ACTIONS(5940), + [sym__str_single_quotes] = ACTIONS(5940), + [sym__str_back_ticks] = ACTIONS(5940), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5940), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5940), + [anon_sym_CARET] = ACTIONS(5940), + [anon_sym_POUND] = ACTIONS(113), }, - [2128] = { - [sym_expr_unary] = STATE(5783), - [sym__expr_unary_minus] = STATE(5713), - [sym_expr_binary] = STATE(5783), - [sym__expr_binary_expression] = STATE(5633), - [sym_expr_parenthesized] = STATE(5783), - [sym__val_range] = STATE(10596), - [sym__value] = STATE(5783), - [sym_val_nothing] = STATE(5674), - [sym_val_bool] = STATE(5487), - [sym_val_variable] = STATE(5674), - [sym__var] = STATE(5184), - [sym_val_number] = STATE(5674), - [sym__val_number_decimal] = STATE(4475), - [sym__val_number] = STATE(5809), - [sym_val_duration] = STATE(5674), - [sym_val_filesize] = STATE(5674), - [sym_val_binary] = STATE(5674), - [sym_val_string] = STATE(5674), - [sym__str_double_quotes] = STATE(5813), - [sym_val_interpolated] = STATE(5674), - [sym__inter_single_quotes] = STATE(5696), - [sym__inter_double_quotes] = STATE(5868), - [sym_val_list] = STATE(5674), - [sym_val_record] = STATE(5674), - [sym_val_table] = STATE(5674), - [sym_val_closure] = STATE(5674), - [sym_unquoted] = STATE(5636), - [sym__unquoted_anonymous_prefix] = STATE(10924), - [sym_comment] = STATE(2128), - [anon_sym_LBRACK] = ACTIONS(2646), - [anon_sym_LPAREN] = ACTIONS(5743), - [anon_sym_DOLLAR] = ACTIONS(5745), - [anon_sym_DASH] = ACTIONS(4871), - [anon_sym_LBRACE] = ACTIONS(2652), - [anon_sym_DOT_DOT] = ACTIONS(5747), - [anon_sym_not] = ACTIONS(4875), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5749), - [anon_sym_DOT_DOT_LT] = ACTIONS(5749), - [anon_sym_null] = ACTIONS(4879), - [anon_sym_true] = ACTIONS(4881), - [anon_sym_false] = ACTIONS(4881), - [aux_sym__val_number_decimal_token1] = ACTIONS(4883), - [aux_sym__val_number_decimal_token2] = ACTIONS(4885), - [anon_sym_DOT2] = ACTIONS(5751), - [aux_sym__val_number_decimal_token3] = ACTIONS(4889), - [aux_sym__val_number_token1] = ACTIONS(2664), - [aux_sym__val_number_token2] = ACTIONS(2664), - [aux_sym__val_number_token3] = ACTIONS(2664), - [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(1900), - [anon_sym_0o] = ACTIONS(1902), - [anon_sym_0x] = ACTIONS(1902), - [sym_val_date] = ACTIONS(4893), - [anon_sym_DQUOTE] = ACTIONS(2670), - [sym__str_single_quotes] = ACTIONS(2672), - [sym__str_back_ticks] = ACTIONS(2672), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2674), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2676), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(1918), - [anon_sym_POUND] = ACTIONS(3), + [2402] = { + [sym_comment] = STATE(2402), + [ts_builtin_sym_end] = ACTIONS(5942), + [anon_sym_export] = ACTIONS(5940), + [anon_sym_alias] = ACTIONS(5940), + [anon_sym_let] = ACTIONS(5940), + [anon_sym_let_DASHenv] = ACTIONS(5940), + [anon_sym_mut] = ACTIONS(5940), + [anon_sym_const] = ACTIONS(5940), + [anon_sym_SEMI] = ACTIONS(5940), + [sym_cmd_identifier] = ACTIONS(5940), + [anon_sym_LF] = ACTIONS(5942), + [anon_sym_def] = ACTIONS(5940), + [anon_sym_export_DASHenv] = ACTIONS(5940), + [anon_sym_extern] = ACTIONS(5940), + [anon_sym_module] = ACTIONS(5940), + [anon_sym_use] = ACTIONS(5940), + [anon_sym_LBRACK] = ACTIONS(5940), + [anon_sym_LPAREN] = ACTIONS(5940), + [anon_sym_DOLLAR] = ACTIONS(5940), + [anon_sym_error] = ACTIONS(5940), + [anon_sym_DASH] = ACTIONS(5940), + [anon_sym_break] = ACTIONS(5940), + [anon_sym_continue] = ACTIONS(5940), + [anon_sym_for] = ACTIONS(5940), + [anon_sym_loop] = ACTIONS(5940), + [anon_sym_while] = ACTIONS(5940), + [anon_sym_do] = ACTIONS(5940), + [anon_sym_if] = ACTIONS(5940), + [anon_sym_match] = ACTIONS(5940), + [anon_sym_LBRACE] = ACTIONS(5940), + [anon_sym_DOT_DOT] = ACTIONS(5940), + [anon_sym_try] = ACTIONS(5940), + [anon_sym_return] = ACTIONS(5940), + [anon_sym_source] = ACTIONS(5940), + [anon_sym_source_DASHenv] = ACTIONS(5940), + [anon_sym_register] = ACTIONS(5940), + [anon_sym_hide] = ACTIONS(5940), + [anon_sym_hide_DASHenv] = ACTIONS(5940), + [anon_sym_overlay] = ACTIONS(5940), + [anon_sym_where] = ACTIONS(5940), + [anon_sym_not] = ACTIONS(5940), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5940), + [anon_sym_DOT_DOT_LT] = ACTIONS(5940), + [anon_sym_null] = ACTIONS(5940), + [anon_sym_true] = ACTIONS(5940), + [anon_sym_false] = ACTIONS(5940), + [aux_sym__val_number_decimal_token1] = ACTIONS(5940), + [aux_sym__val_number_decimal_token2] = ACTIONS(5940), + [anon_sym_DOT2] = ACTIONS(5940), + [aux_sym__val_number_decimal_token3] = ACTIONS(5940), + [aux_sym__val_number_token1] = ACTIONS(5940), + [aux_sym__val_number_token2] = ACTIONS(5940), + [aux_sym__val_number_token3] = ACTIONS(5940), + [aux_sym__val_number_token4] = ACTIONS(5940), + [aux_sym__val_number_token5] = ACTIONS(5940), + [aux_sym__val_number_token6] = ACTIONS(5940), + [anon_sym_0b] = ACTIONS(5940), + [anon_sym_0o] = ACTIONS(5940), + [anon_sym_0x] = ACTIONS(5940), + [sym_val_date] = ACTIONS(5940), + [anon_sym_DQUOTE] = ACTIONS(5940), + [sym__str_single_quotes] = ACTIONS(5940), + [sym__str_back_ticks] = ACTIONS(5940), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5940), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5940), + [anon_sym_CARET] = ACTIONS(5940), + [anon_sym_POUND] = ACTIONS(113), }, - [2129] = { - [sym_expr_unary] = STATE(5783), - [sym__expr_unary_minus] = STATE(5713), - [sym_expr_binary] = STATE(5783), - [sym__expr_binary_expression] = STATE(5639), - [sym_expr_parenthesized] = STATE(5783), - [sym__val_range] = STATE(10596), - [sym__value] = STATE(5783), - [sym_val_nothing] = STATE(5674), - [sym_val_bool] = STATE(5487), - [sym_val_variable] = STATE(5674), - [sym__var] = STATE(5184), - [sym_val_number] = STATE(5674), - [sym__val_number_decimal] = STATE(4475), - [sym__val_number] = STATE(5809), - [sym_val_duration] = STATE(5674), - [sym_val_filesize] = STATE(5674), - [sym_val_binary] = STATE(5674), - [sym_val_string] = STATE(5674), - [sym__str_double_quotes] = STATE(5813), - [sym_val_interpolated] = STATE(5674), - [sym__inter_single_quotes] = STATE(5696), - [sym__inter_double_quotes] = STATE(5868), - [sym_val_list] = STATE(5674), - [sym_val_record] = STATE(5674), - [sym_val_table] = STATE(5674), - [sym_val_closure] = STATE(5674), - [sym_unquoted] = STATE(5642), - [sym__unquoted_anonymous_prefix] = STATE(10924), - [sym_comment] = STATE(2129), - [anon_sym_LBRACK] = ACTIONS(2646), - [anon_sym_LPAREN] = ACTIONS(5743), - [anon_sym_DOLLAR] = ACTIONS(5745), - [anon_sym_DASH] = ACTIONS(4871), - [anon_sym_LBRACE] = ACTIONS(2652), - [anon_sym_DOT_DOT] = ACTIONS(5747), - [anon_sym_not] = ACTIONS(4875), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5749), - [anon_sym_DOT_DOT_LT] = ACTIONS(5749), - [anon_sym_null] = ACTIONS(4879), - [anon_sym_true] = ACTIONS(4881), - [anon_sym_false] = ACTIONS(4881), - [aux_sym__val_number_decimal_token1] = ACTIONS(4883), - [aux_sym__val_number_decimal_token2] = ACTIONS(4885), - [anon_sym_DOT2] = ACTIONS(5751), - [aux_sym__val_number_decimal_token3] = ACTIONS(4889), - [aux_sym__val_number_token1] = ACTIONS(2664), - [aux_sym__val_number_token2] = ACTIONS(2664), - [aux_sym__val_number_token3] = ACTIONS(2664), - [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(1900), - [anon_sym_0o] = ACTIONS(1902), - [anon_sym_0x] = ACTIONS(1902), - [sym_val_date] = ACTIONS(4893), - [anon_sym_DQUOTE] = ACTIONS(2670), - [sym__str_single_quotes] = ACTIONS(2672), - [sym__str_back_ticks] = ACTIONS(2672), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2674), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2676), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(1918), - [anon_sym_POUND] = ACTIONS(3), + [2403] = { + [sym_comment] = STATE(2403), + [ts_builtin_sym_end] = ACTIONS(5956), + [anon_sym_export] = ACTIONS(5954), + [anon_sym_alias] = ACTIONS(5954), + [anon_sym_let] = ACTIONS(5954), + [anon_sym_let_DASHenv] = ACTIONS(5954), + [anon_sym_mut] = ACTIONS(5954), + [anon_sym_const] = ACTIONS(5954), + [anon_sym_SEMI] = ACTIONS(5954), + [sym_cmd_identifier] = ACTIONS(5954), + [anon_sym_LF] = ACTIONS(5956), + [anon_sym_def] = ACTIONS(5954), + [anon_sym_export_DASHenv] = ACTIONS(5954), + [anon_sym_extern] = ACTIONS(5954), + [anon_sym_module] = ACTIONS(5954), + [anon_sym_use] = ACTIONS(5954), + [anon_sym_LBRACK] = ACTIONS(5954), + [anon_sym_LPAREN] = ACTIONS(5954), + [anon_sym_DOLLAR] = ACTIONS(5954), + [anon_sym_error] = ACTIONS(5954), + [anon_sym_DASH] = ACTIONS(5954), + [anon_sym_break] = ACTIONS(5954), + [anon_sym_continue] = ACTIONS(5954), + [anon_sym_for] = ACTIONS(5954), + [anon_sym_loop] = ACTIONS(5954), + [anon_sym_while] = ACTIONS(5954), + [anon_sym_do] = ACTIONS(5954), + [anon_sym_if] = ACTIONS(5954), + [anon_sym_match] = ACTIONS(5954), + [anon_sym_LBRACE] = ACTIONS(5954), + [anon_sym_DOT_DOT] = ACTIONS(5954), + [anon_sym_try] = ACTIONS(5954), + [anon_sym_return] = ACTIONS(5954), + [anon_sym_source] = ACTIONS(5954), + [anon_sym_source_DASHenv] = ACTIONS(5954), + [anon_sym_register] = ACTIONS(5954), + [anon_sym_hide] = ACTIONS(5954), + [anon_sym_hide_DASHenv] = ACTIONS(5954), + [anon_sym_overlay] = ACTIONS(5954), + [anon_sym_where] = ACTIONS(5954), + [anon_sym_not] = ACTIONS(5954), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5954), + [anon_sym_DOT_DOT_LT] = ACTIONS(5954), + [anon_sym_null] = ACTIONS(5954), + [anon_sym_true] = ACTIONS(5954), + [anon_sym_false] = ACTIONS(5954), + [aux_sym__val_number_decimal_token1] = ACTIONS(5954), + [aux_sym__val_number_decimal_token2] = ACTIONS(5954), + [anon_sym_DOT2] = ACTIONS(5954), + [aux_sym__val_number_decimal_token3] = ACTIONS(5954), + [aux_sym__val_number_token1] = ACTIONS(5954), + [aux_sym__val_number_token2] = ACTIONS(5954), + [aux_sym__val_number_token3] = ACTIONS(5954), + [aux_sym__val_number_token4] = ACTIONS(5954), + [aux_sym__val_number_token5] = ACTIONS(5954), + [aux_sym__val_number_token6] = ACTIONS(5954), + [anon_sym_0b] = ACTIONS(5954), + [anon_sym_0o] = ACTIONS(5954), + [anon_sym_0x] = ACTIONS(5954), + [sym_val_date] = ACTIONS(5954), + [anon_sym_DQUOTE] = ACTIONS(5954), + [sym__str_single_quotes] = ACTIONS(5954), + [sym__str_back_ticks] = ACTIONS(5954), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5954), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5954), + [anon_sym_CARET] = ACTIONS(5954), + [anon_sym_POUND] = ACTIONS(113), }, - [2130] = { - [sym_expr_unary] = STATE(5783), - [sym__expr_unary_minus] = STATE(5713), - [sym_expr_binary] = STATE(5783), - [sym__expr_binary_expression] = STATE(5640), - [sym_expr_parenthesized] = STATE(5783), - [sym__val_range] = STATE(10596), - [sym__value] = STATE(5783), - [sym_val_nothing] = STATE(5674), - [sym_val_bool] = STATE(5487), - [sym_val_variable] = STATE(5674), - [sym__var] = STATE(5184), - [sym_val_number] = STATE(5674), - [sym__val_number_decimal] = STATE(4475), - [sym__val_number] = STATE(5809), - [sym_val_duration] = STATE(5674), - [sym_val_filesize] = STATE(5674), - [sym_val_binary] = STATE(5674), - [sym_val_string] = STATE(5674), - [sym__str_double_quotes] = STATE(5813), - [sym_val_interpolated] = STATE(5674), - [sym__inter_single_quotes] = STATE(5696), - [sym__inter_double_quotes] = STATE(5868), - [sym_val_list] = STATE(5674), - [sym_val_record] = STATE(5674), - [sym_val_table] = STATE(5674), - [sym_val_closure] = STATE(5674), - [sym_unquoted] = STATE(5643), - [sym__unquoted_anonymous_prefix] = STATE(10924), - [sym_comment] = STATE(2130), - [anon_sym_LBRACK] = ACTIONS(2646), - [anon_sym_LPAREN] = ACTIONS(5743), - [anon_sym_DOLLAR] = ACTIONS(5745), - [anon_sym_DASH] = ACTIONS(4871), - [anon_sym_LBRACE] = ACTIONS(2652), - [anon_sym_DOT_DOT] = ACTIONS(5747), - [anon_sym_not] = ACTIONS(4875), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5749), - [anon_sym_DOT_DOT_LT] = ACTIONS(5749), - [anon_sym_null] = ACTIONS(4879), - [anon_sym_true] = ACTIONS(4881), - [anon_sym_false] = ACTIONS(4881), - [aux_sym__val_number_decimal_token1] = ACTIONS(4883), - [aux_sym__val_number_decimal_token2] = ACTIONS(4885), - [anon_sym_DOT2] = ACTIONS(5751), - [aux_sym__val_number_decimal_token3] = ACTIONS(4889), - [aux_sym__val_number_token1] = ACTIONS(2664), - [aux_sym__val_number_token2] = ACTIONS(2664), - [aux_sym__val_number_token3] = ACTIONS(2664), - [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(1900), - [anon_sym_0o] = ACTIONS(1902), - [anon_sym_0x] = ACTIONS(1902), - [sym_val_date] = ACTIONS(4893), - [anon_sym_DQUOTE] = ACTIONS(2670), - [sym__str_single_quotes] = ACTIONS(2672), - [sym__str_back_ticks] = ACTIONS(2672), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2674), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2676), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(1918), - [anon_sym_POUND] = ACTIONS(3), + [2404] = { + [sym_comment] = STATE(2404), + [ts_builtin_sym_end] = ACTIONS(5956), + [anon_sym_export] = ACTIONS(5954), + [anon_sym_alias] = ACTIONS(5954), + [anon_sym_let] = ACTIONS(5954), + [anon_sym_let_DASHenv] = ACTIONS(5954), + [anon_sym_mut] = ACTIONS(5954), + [anon_sym_const] = ACTIONS(5954), + [anon_sym_SEMI] = ACTIONS(5954), + [sym_cmd_identifier] = ACTIONS(5954), + [anon_sym_LF] = ACTIONS(5956), + [anon_sym_def] = ACTIONS(5954), + [anon_sym_export_DASHenv] = ACTIONS(5954), + [anon_sym_extern] = ACTIONS(5954), + [anon_sym_module] = ACTIONS(5954), + [anon_sym_use] = ACTIONS(5954), + [anon_sym_LBRACK] = ACTIONS(5954), + [anon_sym_LPAREN] = ACTIONS(5954), + [anon_sym_DOLLAR] = ACTIONS(5954), + [anon_sym_error] = ACTIONS(5954), + [anon_sym_DASH] = ACTIONS(5954), + [anon_sym_break] = ACTIONS(5954), + [anon_sym_continue] = ACTIONS(5954), + [anon_sym_for] = ACTIONS(5954), + [anon_sym_loop] = ACTIONS(5954), + [anon_sym_while] = ACTIONS(5954), + [anon_sym_do] = ACTIONS(5954), + [anon_sym_if] = ACTIONS(5954), + [anon_sym_match] = ACTIONS(5954), + [anon_sym_LBRACE] = ACTIONS(5954), + [anon_sym_DOT_DOT] = ACTIONS(5954), + [anon_sym_try] = ACTIONS(5954), + [anon_sym_return] = ACTIONS(5954), + [anon_sym_source] = ACTIONS(5954), + [anon_sym_source_DASHenv] = ACTIONS(5954), + [anon_sym_register] = ACTIONS(5954), + [anon_sym_hide] = ACTIONS(5954), + [anon_sym_hide_DASHenv] = ACTIONS(5954), + [anon_sym_overlay] = ACTIONS(5954), + [anon_sym_where] = ACTIONS(5954), + [anon_sym_not] = ACTIONS(5954), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5954), + [anon_sym_DOT_DOT_LT] = ACTIONS(5954), + [anon_sym_null] = ACTIONS(5954), + [anon_sym_true] = ACTIONS(5954), + [anon_sym_false] = ACTIONS(5954), + [aux_sym__val_number_decimal_token1] = ACTIONS(5954), + [aux_sym__val_number_decimal_token2] = ACTIONS(5954), + [anon_sym_DOT2] = ACTIONS(5954), + [aux_sym__val_number_decimal_token3] = ACTIONS(5954), + [aux_sym__val_number_token1] = ACTIONS(5954), + [aux_sym__val_number_token2] = ACTIONS(5954), + [aux_sym__val_number_token3] = ACTIONS(5954), + [aux_sym__val_number_token4] = ACTIONS(5954), + [aux_sym__val_number_token5] = ACTIONS(5954), + [aux_sym__val_number_token6] = ACTIONS(5954), + [anon_sym_0b] = ACTIONS(5954), + [anon_sym_0o] = ACTIONS(5954), + [anon_sym_0x] = ACTIONS(5954), + [sym_val_date] = ACTIONS(5954), + [anon_sym_DQUOTE] = ACTIONS(5954), + [sym__str_single_quotes] = ACTIONS(5954), + [sym__str_back_ticks] = ACTIONS(5954), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5954), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5954), + [anon_sym_CARET] = ACTIONS(5954), + [anon_sym_POUND] = ACTIONS(113), }, - [2131] = { - [sym_expr_unary] = STATE(5783), - [sym__expr_unary_minus] = STATE(5713), - [sym_expr_binary] = STATE(5783), - [sym__expr_binary_expression] = STATE(5644), - [sym_expr_parenthesized] = STATE(5783), - [sym__val_range] = STATE(10596), - [sym__value] = STATE(5783), - [sym_val_nothing] = STATE(5674), - [sym_val_bool] = STATE(5487), - [sym_val_variable] = STATE(5674), - [sym__var] = STATE(5184), - [sym_val_number] = STATE(5674), - [sym__val_number_decimal] = STATE(4475), - [sym__val_number] = STATE(5809), - [sym_val_duration] = STATE(5674), - [sym_val_filesize] = STATE(5674), - [sym_val_binary] = STATE(5674), - [sym_val_string] = STATE(5674), - [sym__str_double_quotes] = STATE(5813), - [sym_val_interpolated] = STATE(5674), - [sym__inter_single_quotes] = STATE(5696), - [sym__inter_double_quotes] = STATE(5868), - [sym_val_list] = STATE(5674), - [sym_val_record] = STATE(5674), - [sym_val_table] = STATE(5674), - [sym_val_closure] = STATE(5674), - [sym_unquoted] = STATE(5652), - [sym__unquoted_anonymous_prefix] = STATE(10924), - [sym_comment] = STATE(2131), - [anon_sym_LBRACK] = ACTIONS(2646), - [anon_sym_LPAREN] = ACTIONS(5743), - [anon_sym_DOLLAR] = ACTIONS(5745), - [anon_sym_DASH] = ACTIONS(4871), - [anon_sym_LBRACE] = ACTIONS(2652), - [anon_sym_DOT_DOT] = ACTIONS(5747), - [anon_sym_not] = ACTIONS(4875), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5749), - [anon_sym_DOT_DOT_LT] = ACTIONS(5749), - [anon_sym_null] = ACTIONS(4879), - [anon_sym_true] = ACTIONS(4881), - [anon_sym_false] = ACTIONS(4881), - [aux_sym__val_number_decimal_token1] = ACTIONS(4883), - [aux_sym__val_number_decimal_token2] = ACTIONS(4885), - [anon_sym_DOT2] = ACTIONS(5751), - [aux_sym__val_number_decimal_token3] = ACTIONS(4889), - [aux_sym__val_number_token1] = ACTIONS(2664), - [aux_sym__val_number_token2] = ACTIONS(2664), - [aux_sym__val_number_token3] = ACTIONS(2664), - [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(1900), - [anon_sym_0o] = ACTIONS(1902), - [anon_sym_0x] = ACTIONS(1902), - [sym_val_date] = ACTIONS(4893), - [anon_sym_DQUOTE] = ACTIONS(2670), - [sym__str_single_quotes] = ACTIONS(2672), - [sym__str_back_ticks] = ACTIONS(2672), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2674), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2676), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(1918), - [anon_sym_POUND] = ACTIONS(3), + [2405] = { + [sym_comment] = STATE(2405), + [ts_builtin_sym_end] = ACTIONS(6029), + [anon_sym_export] = ACTIONS(6027), + [anon_sym_alias] = ACTIONS(6027), + [anon_sym_let] = ACTIONS(6027), + [anon_sym_let_DASHenv] = ACTIONS(6027), + [anon_sym_mut] = ACTIONS(6027), + [anon_sym_const] = ACTIONS(6027), + [anon_sym_SEMI] = ACTIONS(6027), + [sym_cmd_identifier] = ACTIONS(6027), + [anon_sym_LF] = ACTIONS(6029), + [anon_sym_def] = ACTIONS(6027), + [anon_sym_export_DASHenv] = ACTIONS(6027), + [anon_sym_extern] = ACTIONS(6027), + [anon_sym_module] = ACTIONS(6027), + [anon_sym_use] = ACTIONS(6027), + [anon_sym_LBRACK] = ACTIONS(6027), + [anon_sym_LPAREN] = ACTIONS(6027), + [anon_sym_DOLLAR] = ACTIONS(6027), + [anon_sym_error] = ACTIONS(6027), + [anon_sym_DASH] = ACTIONS(6027), + [anon_sym_break] = ACTIONS(6027), + [anon_sym_continue] = ACTIONS(6027), + [anon_sym_for] = ACTIONS(6027), + [anon_sym_loop] = ACTIONS(6027), + [anon_sym_while] = ACTIONS(6027), + [anon_sym_do] = ACTIONS(6027), + [anon_sym_if] = ACTIONS(6027), + [anon_sym_match] = ACTIONS(6027), + [anon_sym_LBRACE] = ACTIONS(6027), + [anon_sym_DOT_DOT] = ACTIONS(6027), + [anon_sym_try] = ACTIONS(6027), + [anon_sym_return] = ACTIONS(6027), + [anon_sym_source] = ACTIONS(6027), + [anon_sym_source_DASHenv] = ACTIONS(6027), + [anon_sym_register] = ACTIONS(6027), + [anon_sym_hide] = ACTIONS(6027), + [anon_sym_hide_DASHenv] = ACTIONS(6027), + [anon_sym_overlay] = ACTIONS(6027), + [anon_sym_where] = ACTIONS(6027), + [anon_sym_not] = ACTIONS(6027), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6027), + [anon_sym_DOT_DOT_LT] = ACTIONS(6027), + [anon_sym_null] = ACTIONS(6027), + [anon_sym_true] = ACTIONS(6027), + [anon_sym_false] = ACTIONS(6027), + [aux_sym__val_number_decimal_token1] = ACTIONS(6027), + [aux_sym__val_number_decimal_token2] = ACTIONS(6027), + [anon_sym_DOT2] = ACTIONS(6027), + [aux_sym__val_number_decimal_token3] = ACTIONS(6027), + [aux_sym__val_number_token1] = ACTIONS(6027), + [aux_sym__val_number_token2] = ACTIONS(6027), + [aux_sym__val_number_token3] = ACTIONS(6027), + [aux_sym__val_number_token4] = ACTIONS(6027), + [aux_sym__val_number_token5] = ACTIONS(6027), + [aux_sym__val_number_token6] = ACTIONS(6027), + [anon_sym_0b] = ACTIONS(6027), + [anon_sym_0o] = ACTIONS(6027), + [anon_sym_0x] = ACTIONS(6027), + [sym_val_date] = ACTIONS(6027), + [anon_sym_DQUOTE] = ACTIONS(6027), + [sym__str_single_quotes] = ACTIONS(6027), + [sym__str_back_ticks] = ACTIONS(6027), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6027), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6027), + [anon_sym_CARET] = ACTIONS(6027), + [anon_sym_POUND] = ACTIONS(113), }, - [2132] = { - [sym_expr_unary] = STATE(5783), - [sym__expr_unary_minus] = STATE(5713), - [sym_expr_binary] = STATE(5783), - [sym__expr_binary_expression] = STATE(5656), - [sym_expr_parenthesized] = STATE(5783), - [sym__val_range] = STATE(10596), - [sym__value] = STATE(5783), - [sym_val_nothing] = STATE(5674), - [sym_val_bool] = STATE(5487), - [sym_val_variable] = STATE(5674), - [sym__var] = STATE(5184), - [sym_val_number] = STATE(5674), - [sym__val_number_decimal] = STATE(4475), - [sym__val_number] = STATE(5809), - [sym_val_duration] = STATE(5674), - [sym_val_filesize] = STATE(5674), - [sym_val_binary] = STATE(5674), - [sym_val_string] = STATE(5674), - [sym__str_double_quotes] = STATE(5813), - [sym_val_interpolated] = STATE(5674), - [sym__inter_single_quotes] = STATE(5696), - [sym__inter_double_quotes] = STATE(5868), - [sym_val_list] = STATE(5674), - [sym_val_record] = STATE(5674), - [sym_val_table] = STATE(5674), - [sym_val_closure] = STATE(5674), - [sym_unquoted] = STATE(5655), - [sym__unquoted_anonymous_prefix] = STATE(10924), - [sym_comment] = STATE(2132), - [anon_sym_LBRACK] = ACTIONS(2646), - [anon_sym_LPAREN] = ACTIONS(5743), - [anon_sym_DOLLAR] = ACTIONS(5745), - [anon_sym_DASH] = ACTIONS(4871), - [anon_sym_LBRACE] = ACTIONS(2652), - [anon_sym_DOT_DOT] = ACTIONS(5747), - [anon_sym_not] = ACTIONS(4875), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5749), - [anon_sym_DOT_DOT_LT] = ACTIONS(5749), - [anon_sym_null] = ACTIONS(4879), - [anon_sym_true] = ACTIONS(4881), - [anon_sym_false] = ACTIONS(4881), - [aux_sym__val_number_decimal_token1] = ACTIONS(4883), - [aux_sym__val_number_decimal_token2] = ACTIONS(4885), - [anon_sym_DOT2] = ACTIONS(5751), - [aux_sym__val_number_decimal_token3] = ACTIONS(4889), - [aux_sym__val_number_token1] = ACTIONS(2664), - [aux_sym__val_number_token2] = ACTIONS(2664), - [aux_sym__val_number_token3] = ACTIONS(2664), - [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(1900), - [anon_sym_0o] = ACTIONS(1902), - [anon_sym_0x] = ACTIONS(1902), - [sym_val_date] = ACTIONS(4893), - [anon_sym_DQUOTE] = ACTIONS(2670), - [sym__str_single_quotes] = ACTIONS(2672), - [sym__str_back_ticks] = ACTIONS(2672), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2674), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2676), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(1918), - [anon_sym_POUND] = ACTIONS(3), + [2406] = { + [sym_comment] = STATE(2406), + [ts_builtin_sym_end] = ACTIONS(6029), + [anon_sym_export] = ACTIONS(6027), + [anon_sym_alias] = ACTIONS(6027), + [anon_sym_let] = ACTIONS(6027), + [anon_sym_let_DASHenv] = ACTIONS(6027), + [anon_sym_mut] = ACTIONS(6027), + [anon_sym_const] = ACTIONS(6027), + [anon_sym_SEMI] = ACTIONS(6027), + [sym_cmd_identifier] = ACTIONS(6027), + [anon_sym_LF] = ACTIONS(6029), + [anon_sym_def] = ACTIONS(6027), + [anon_sym_export_DASHenv] = ACTIONS(6027), + [anon_sym_extern] = ACTIONS(6027), + [anon_sym_module] = ACTIONS(6027), + [anon_sym_use] = ACTIONS(6027), + [anon_sym_LBRACK] = ACTIONS(6027), + [anon_sym_LPAREN] = ACTIONS(6027), + [anon_sym_DOLLAR] = ACTIONS(6027), + [anon_sym_error] = ACTIONS(6027), + [anon_sym_DASH] = ACTIONS(6027), + [anon_sym_break] = ACTIONS(6027), + [anon_sym_continue] = ACTIONS(6027), + [anon_sym_for] = ACTIONS(6027), + [anon_sym_loop] = ACTIONS(6027), + [anon_sym_while] = ACTIONS(6027), + [anon_sym_do] = ACTIONS(6027), + [anon_sym_if] = ACTIONS(6027), + [anon_sym_match] = ACTIONS(6027), + [anon_sym_LBRACE] = ACTIONS(6027), + [anon_sym_DOT_DOT] = ACTIONS(6027), + [anon_sym_try] = ACTIONS(6027), + [anon_sym_return] = ACTIONS(6027), + [anon_sym_source] = ACTIONS(6027), + [anon_sym_source_DASHenv] = ACTIONS(6027), + [anon_sym_register] = ACTIONS(6027), + [anon_sym_hide] = ACTIONS(6027), + [anon_sym_hide_DASHenv] = ACTIONS(6027), + [anon_sym_overlay] = ACTIONS(6027), + [anon_sym_where] = ACTIONS(6027), + [anon_sym_not] = ACTIONS(6027), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6027), + [anon_sym_DOT_DOT_LT] = ACTIONS(6027), + [anon_sym_null] = ACTIONS(6027), + [anon_sym_true] = ACTIONS(6027), + [anon_sym_false] = ACTIONS(6027), + [aux_sym__val_number_decimal_token1] = ACTIONS(6027), + [aux_sym__val_number_decimal_token2] = ACTIONS(6027), + [anon_sym_DOT2] = ACTIONS(6027), + [aux_sym__val_number_decimal_token3] = ACTIONS(6027), + [aux_sym__val_number_token1] = ACTIONS(6027), + [aux_sym__val_number_token2] = ACTIONS(6027), + [aux_sym__val_number_token3] = ACTIONS(6027), + [aux_sym__val_number_token4] = ACTIONS(6027), + [aux_sym__val_number_token5] = ACTIONS(6027), + [aux_sym__val_number_token6] = ACTIONS(6027), + [anon_sym_0b] = ACTIONS(6027), + [anon_sym_0o] = ACTIONS(6027), + [anon_sym_0x] = ACTIONS(6027), + [sym_val_date] = ACTIONS(6027), + [anon_sym_DQUOTE] = ACTIONS(6027), + [sym__str_single_quotes] = ACTIONS(6027), + [sym__str_back_ticks] = ACTIONS(6027), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6027), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6027), + [anon_sym_CARET] = ACTIONS(6027), + [anon_sym_POUND] = ACTIONS(113), }, - [2133] = { - [sym_expr_unary] = STATE(5783), - [sym__expr_unary_minus] = STATE(5713), - [sym_expr_binary] = STATE(5783), - [sym__expr_binary_expression] = STATE(5658), - [sym_expr_parenthesized] = STATE(5783), - [sym__val_range] = STATE(10596), - [sym__value] = STATE(5783), - [sym_val_nothing] = STATE(5674), - [sym_val_bool] = STATE(5487), - [sym_val_variable] = STATE(5674), - [sym__var] = STATE(5184), - [sym_val_number] = STATE(5674), - [sym__val_number_decimal] = STATE(4475), - [sym__val_number] = STATE(5809), - [sym_val_duration] = STATE(5674), - [sym_val_filesize] = STATE(5674), - [sym_val_binary] = STATE(5674), - [sym_val_string] = STATE(5674), - [sym__str_double_quotes] = STATE(5813), - [sym_val_interpolated] = STATE(5674), - [sym__inter_single_quotes] = STATE(5696), - [sym__inter_double_quotes] = STATE(5868), - [sym_val_list] = STATE(5674), - [sym_val_record] = STATE(5674), - [sym_val_table] = STATE(5674), - [sym_val_closure] = STATE(5674), - [sym_unquoted] = STATE(5659), - [sym__unquoted_anonymous_prefix] = STATE(10924), - [sym_comment] = STATE(2133), - [anon_sym_LBRACK] = ACTIONS(2646), - [anon_sym_LPAREN] = ACTIONS(5743), - [anon_sym_DOLLAR] = ACTIONS(5745), - [anon_sym_DASH] = ACTIONS(4871), - [anon_sym_LBRACE] = ACTIONS(2652), - [anon_sym_DOT_DOT] = ACTIONS(5747), - [anon_sym_not] = ACTIONS(4875), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5749), - [anon_sym_DOT_DOT_LT] = ACTIONS(5749), - [anon_sym_null] = ACTIONS(4879), - [anon_sym_true] = ACTIONS(4881), - [anon_sym_false] = ACTIONS(4881), - [aux_sym__val_number_decimal_token1] = ACTIONS(4883), - [aux_sym__val_number_decimal_token2] = ACTIONS(4885), - [anon_sym_DOT2] = ACTIONS(5751), - [aux_sym__val_number_decimal_token3] = ACTIONS(4889), - [aux_sym__val_number_token1] = ACTIONS(2664), - [aux_sym__val_number_token2] = ACTIONS(2664), - [aux_sym__val_number_token3] = ACTIONS(2664), - [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(1900), - [anon_sym_0o] = ACTIONS(1902), - [anon_sym_0x] = ACTIONS(1902), - [sym_val_date] = ACTIONS(4893), - [anon_sym_DQUOTE] = ACTIONS(2670), - [sym__str_single_quotes] = ACTIONS(2672), - [sym__str_back_ticks] = ACTIONS(2672), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2674), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2676), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(1918), - [anon_sym_POUND] = ACTIONS(3), + [2407] = { + [sym_comment] = STATE(2407), + [ts_builtin_sym_end] = ACTIONS(5942), + [anon_sym_export] = ACTIONS(5940), + [anon_sym_alias] = ACTIONS(5940), + [anon_sym_let] = ACTIONS(5940), + [anon_sym_let_DASHenv] = ACTIONS(5940), + [anon_sym_mut] = ACTIONS(5940), + [anon_sym_const] = ACTIONS(5940), + [anon_sym_SEMI] = ACTIONS(5940), + [sym_cmd_identifier] = ACTIONS(5940), + [anon_sym_LF] = ACTIONS(5942), + [anon_sym_def] = ACTIONS(5940), + [anon_sym_export_DASHenv] = ACTIONS(5940), + [anon_sym_extern] = ACTIONS(5940), + [anon_sym_module] = ACTIONS(5940), + [anon_sym_use] = ACTIONS(5940), + [anon_sym_LBRACK] = ACTIONS(5940), + [anon_sym_LPAREN] = ACTIONS(5940), + [anon_sym_DOLLAR] = ACTIONS(5940), + [anon_sym_error] = ACTIONS(5940), + [anon_sym_DASH] = ACTIONS(5940), + [anon_sym_break] = ACTIONS(5940), + [anon_sym_continue] = ACTIONS(5940), + [anon_sym_for] = ACTIONS(5940), + [anon_sym_loop] = ACTIONS(5940), + [anon_sym_while] = ACTIONS(5940), + [anon_sym_do] = ACTIONS(5940), + [anon_sym_if] = ACTIONS(5940), + [anon_sym_match] = ACTIONS(5940), + [anon_sym_LBRACE] = ACTIONS(5940), + [anon_sym_DOT_DOT] = ACTIONS(5940), + [anon_sym_try] = ACTIONS(5940), + [anon_sym_return] = ACTIONS(5940), + [anon_sym_source] = ACTIONS(5940), + [anon_sym_source_DASHenv] = ACTIONS(5940), + [anon_sym_register] = ACTIONS(5940), + [anon_sym_hide] = ACTIONS(5940), + [anon_sym_hide_DASHenv] = ACTIONS(5940), + [anon_sym_overlay] = ACTIONS(5940), + [anon_sym_where] = ACTIONS(5940), + [anon_sym_not] = ACTIONS(5940), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5940), + [anon_sym_DOT_DOT_LT] = ACTIONS(5940), + [anon_sym_null] = ACTIONS(5940), + [anon_sym_true] = ACTIONS(5940), + [anon_sym_false] = ACTIONS(5940), + [aux_sym__val_number_decimal_token1] = ACTIONS(5940), + [aux_sym__val_number_decimal_token2] = ACTIONS(5940), + [anon_sym_DOT2] = ACTIONS(5940), + [aux_sym__val_number_decimal_token3] = ACTIONS(5940), + [aux_sym__val_number_token1] = ACTIONS(5940), + [aux_sym__val_number_token2] = ACTIONS(5940), + [aux_sym__val_number_token3] = ACTIONS(5940), + [aux_sym__val_number_token4] = ACTIONS(5940), + [aux_sym__val_number_token5] = ACTIONS(5940), + [aux_sym__val_number_token6] = ACTIONS(5940), + [anon_sym_0b] = ACTIONS(5940), + [anon_sym_0o] = ACTIONS(5940), + [anon_sym_0x] = ACTIONS(5940), + [sym_val_date] = ACTIONS(5940), + [anon_sym_DQUOTE] = ACTIONS(5940), + [sym__str_single_quotes] = ACTIONS(5940), + [sym__str_back_ticks] = ACTIONS(5940), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5940), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5940), + [anon_sym_CARET] = ACTIONS(5940), + [anon_sym_POUND] = ACTIONS(113), }, - [2134] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5907), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5522), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4484), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5002), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2134), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5753), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5755), - [anon_sym_DOT_DOT_LT] = ACTIONS(5755), - [anon_sym_null] = ACTIONS(5757), - [anon_sym_true] = ACTIONS(5759), - [anon_sym_false] = ACTIONS(5759), - [aux_sym__val_number_decimal_token1] = ACTIONS(5761), - [aux_sym__val_number_decimal_token2] = ACTIONS(5763), - [anon_sym_DOT2] = ACTIONS(5765), - [aux_sym__val_number_decimal_token3] = ACTIONS(5767), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5769), - [aux_sym__val_number_token5] = ACTIONS(5769), - [aux_sym__val_number_token6] = ACTIONS(5769), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5771), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2408] = { + [sym_comment] = STATE(2408), + [ts_builtin_sym_end] = ACTIONS(6080), + [anon_sym_export] = ACTIONS(6078), + [anon_sym_alias] = ACTIONS(6078), + [anon_sym_let] = ACTIONS(6078), + [anon_sym_let_DASHenv] = ACTIONS(6078), + [anon_sym_mut] = ACTIONS(6078), + [anon_sym_const] = ACTIONS(6078), + [anon_sym_SEMI] = ACTIONS(6078), + [sym_cmd_identifier] = ACTIONS(6078), + [anon_sym_LF] = ACTIONS(6080), + [anon_sym_def] = ACTIONS(6078), + [anon_sym_export_DASHenv] = ACTIONS(6078), + [anon_sym_extern] = ACTIONS(6078), + [anon_sym_module] = ACTIONS(6078), + [anon_sym_use] = ACTIONS(6078), + [anon_sym_LBRACK] = ACTIONS(6078), + [anon_sym_LPAREN] = ACTIONS(6078), + [anon_sym_DOLLAR] = ACTIONS(6078), + [anon_sym_error] = ACTIONS(6078), + [anon_sym_DASH] = ACTIONS(6078), + [anon_sym_break] = ACTIONS(6078), + [anon_sym_continue] = ACTIONS(6078), + [anon_sym_for] = ACTIONS(6078), + [anon_sym_loop] = ACTIONS(6078), + [anon_sym_while] = ACTIONS(6078), + [anon_sym_do] = ACTIONS(6078), + [anon_sym_if] = ACTIONS(6078), + [anon_sym_match] = ACTIONS(6078), + [anon_sym_LBRACE] = ACTIONS(6078), + [anon_sym_DOT_DOT] = ACTIONS(6078), + [anon_sym_try] = ACTIONS(6078), + [anon_sym_return] = ACTIONS(6078), + [anon_sym_source] = ACTIONS(6078), + [anon_sym_source_DASHenv] = ACTIONS(6078), + [anon_sym_register] = ACTIONS(6078), + [anon_sym_hide] = ACTIONS(6078), + [anon_sym_hide_DASHenv] = ACTIONS(6078), + [anon_sym_overlay] = ACTIONS(6078), + [anon_sym_where] = ACTIONS(6078), + [anon_sym_not] = ACTIONS(6078), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6078), + [anon_sym_DOT_DOT_LT] = ACTIONS(6078), + [anon_sym_null] = ACTIONS(6078), + [anon_sym_true] = ACTIONS(6078), + [anon_sym_false] = ACTIONS(6078), + [aux_sym__val_number_decimal_token1] = ACTIONS(6078), + [aux_sym__val_number_decimal_token2] = ACTIONS(6078), + [anon_sym_DOT2] = ACTIONS(6078), + [aux_sym__val_number_decimal_token3] = ACTIONS(6078), + [aux_sym__val_number_token1] = ACTIONS(6078), + [aux_sym__val_number_token2] = ACTIONS(6078), + [aux_sym__val_number_token3] = ACTIONS(6078), + [aux_sym__val_number_token4] = ACTIONS(6078), + [aux_sym__val_number_token5] = ACTIONS(6078), + [aux_sym__val_number_token6] = ACTIONS(6078), + [anon_sym_0b] = ACTIONS(6078), + [anon_sym_0o] = ACTIONS(6078), + [anon_sym_0x] = ACTIONS(6078), + [sym_val_date] = ACTIONS(6078), + [anon_sym_DQUOTE] = ACTIONS(6078), + [sym__str_single_quotes] = ACTIONS(6078), + [sym__str_back_ticks] = ACTIONS(6078), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6078), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6078), + [anon_sym_CARET] = ACTIONS(6078), + [anon_sym_POUND] = ACTIONS(113), }, - [2135] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5908), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5522), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4484), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5007), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2135), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5753), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5755), - [anon_sym_DOT_DOT_LT] = ACTIONS(5755), - [anon_sym_null] = ACTIONS(5757), - [anon_sym_true] = ACTIONS(5759), - [anon_sym_false] = ACTIONS(5759), - [aux_sym__val_number_decimal_token1] = ACTIONS(5761), - [aux_sym__val_number_decimal_token2] = ACTIONS(5763), - [anon_sym_DOT2] = ACTIONS(5765), - [aux_sym__val_number_decimal_token3] = ACTIONS(5767), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5769), - [aux_sym__val_number_token5] = ACTIONS(5769), - [aux_sym__val_number_token6] = ACTIONS(5769), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5771), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2409] = { + [sym_comment] = STATE(2409), + [ts_builtin_sym_end] = ACTIONS(6300), + [anon_sym_export] = ACTIONS(6298), + [anon_sym_alias] = ACTIONS(6298), + [anon_sym_let] = ACTIONS(6298), + [anon_sym_let_DASHenv] = ACTIONS(6298), + [anon_sym_mut] = ACTIONS(6298), + [anon_sym_const] = ACTIONS(6298), + [anon_sym_SEMI] = ACTIONS(6298), + [sym_cmd_identifier] = ACTIONS(6298), + [anon_sym_LF] = ACTIONS(6300), + [anon_sym_def] = ACTIONS(6298), + [anon_sym_export_DASHenv] = ACTIONS(6298), + [anon_sym_extern] = ACTIONS(6298), + [anon_sym_module] = ACTIONS(6298), + [anon_sym_use] = ACTIONS(6298), + [anon_sym_LBRACK] = ACTIONS(6298), + [anon_sym_LPAREN] = ACTIONS(6298), + [anon_sym_DOLLAR] = ACTIONS(6298), + [anon_sym_error] = ACTIONS(6298), + [anon_sym_DASH] = ACTIONS(6298), + [anon_sym_break] = ACTIONS(6298), + [anon_sym_continue] = ACTIONS(6298), + [anon_sym_for] = ACTIONS(6298), + [anon_sym_loop] = ACTIONS(6298), + [anon_sym_while] = ACTIONS(6298), + [anon_sym_do] = ACTIONS(6298), + [anon_sym_if] = ACTIONS(6298), + [anon_sym_match] = ACTIONS(6298), + [anon_sym_LBRACE] = ACTIONS(6298), + [anon_sym_DOT_DOT] = ACTIONS(6298), + [anon_sym_try] = ACTIONS(6298), + [anon_sym_return] = ACTIONS(6298), + [anon_sym_source] = ACTIONS(6298), + [anon_sym_source_DASHenv] = ACTIONS(6298), + [anon_sym_register] = ACTIONS(6298), + [anon_sym_hide] = ACTIONS(6298), + [anon_sym_hide_DASHenv] = ACTIONS(6298), + [anon_sym_overlay] = ACTIONS(6298), + [anon_sym_where] = ACTIONS(6298), + [anon_sym_not] = ACTIONS(6298), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6298), + [anon_sym_DOT_DOT_LT] = ACTIONS(6298), + [anon_sym_null] = ACTIONS(6298), + [anon_sym_true] = ACTIONS(6298), + [anon_sym_false] = ACTIONS(6298), + [aux_sym__val_number_decimal_token1] = ACTIONS(6298), + [aux_sym__val_number_decimal_token2] = ACTIONS(6298), + [anon_sym_DOT2] = ACTIONS(6298), + [aux_sym__val_number_decimal_token3] = ACTIONS(6298), + [aux_sym__val_number_token1] = ACTIONS(6298), + [aux_sym__val_number_token2] = ACTIONS(6298), + [aux_sym__val_number_token3] = ACTIONS(6298), + [aux_sym__val_number_token4] = ACTIONS(6298), + [aux_sym__val_number_token5] = ACTIONS(6298), + [aux_sym__val_number_token6] = ACTIONS(6298), + [anon_sym_0b] = ACTIONS(6298), + [anon_sym_0o] = ACTIONS(6298), + [anon_sym_0x] = ACTIONS(6298), + [sym_val_date] = ACTIONS(6298), + [anon_sym_DQUOTE] = ACTIONS(6298), + [sym__str_single_quotes] = ACTIONS(6298), + [sym__str_back_ticks] = ACTIONS(6298), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6298), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6298), + [anon_sym_CARET] = ACTIONS(6298), + [anon_sym_POUND] = ACTIONS(113), }, - [2136] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5909), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5522), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4484), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5010), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2136), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5753), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5755), - [anon_sym_DOT_DOT_LT] = ACTIONS(5755), - [anon_sym_null] = ACTIONS(5757), - [anon_sym_true] = ACTIONS(5759), - [anon_sym_false] = ACTIONS(5759), - [aux_sym__val_number_decimal_token1] = ACTIONS(5761), - [aux_sym__val_number_decimal_token2] = ACTIONS(5763), - [anon_sym_DOT2] = ACTIONS(5765), - [aux_sym__val_number_decimal_token3] = ACTIONS(5767), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5769), - [aux_sym__val_number_token5] = ACTIONS(5769), - [aux_sym__val_number_token6] = ACTIONS(5769), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5771), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), + [2410] = { + [sym_comment] = STATE(2410), + [anon_sym_LBRACK] = ACTIONS(940), + [anon_sym_LPAREN] = ACTIONS(940), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_in] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(940), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_STAR_STAR] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(940), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(940), + [anon_sym_SLASH_SLASH] = ACTIONS(940), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_bit_DASHshl] = ACTIONS(940), + [anon_sym_bit_DASHshr] = ACTIONS(940), + [anon_sym_EQ_EQ] = ACTIONS(940), + [anon_sym_BANG_EQ] = ACTIONS(940), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(940), + [anon_sym_GT_EQ] = ACTIONS(940), + [anon_sym_not_DASHin] = ACTIONS(940), + [anon_sym_starts_DASHwith] = ACTIONS(940), + [anon_sym_ends_DASHwith] = ACTIONS(940), + [anon_sym_EQ_TILDE] = ACTIONS(940), + [anon_sym_BANG_TILDE] = ACTIONS(940), + [anon_sym_bit_DASHand] = ACTIONS(940), + [anon_sym_bit_DASHxor] = ACTIONS(940), + [anon_sym_bit_DASHor] = ACTIONS(940), + [anon_sym_and] = ACTIONS(940), + [anon_sym_xor] = ACTIONS(940), + [anon_sym_or] = ACTIONS(940), + [anon_sym_not] = ACTIONS(938), + [anon_sym_DOT_DOT2] = ACTIONS(6302), + [anon_sym_DOT] = ACTIONS(6304), + [anon_sym_DOT_DOT_EQ] = ACTIONS(938), + [anon_sym_DOT_DOT_LT] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(6306), + [anon_sym_DOT_DOT_LT2] = ACTIONS(6306), + [anon_sym_null] = ACTIONS(940), + [anon_sym_true] = ACTIONS(940), + [anon_sym_false] = ACTIONS(940), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(940), + [anon_sym_DOT2] = ACTIONS(938), + [aux_sym__val_number_decimal_token3] = ACTIONS(940), + [aux_sym__val_number_token1] = ACTIONS(940), + [aux_sym__val_number_token2] = ACTIONS(940), + [aux_sym__val_number_token3] = ACTIONS(940), + [aux_sym__val_number_token4] = ACTIONS(940), + [aux_sym__val_number_token5] = ACTIONS(940), + [aux_sym__val_number_token6] = ACTIONS(940), + [anon_sym_0b] = ACTIONS(938), + [sym_filesize_unit] = ACTIONS(6308), + [sym_duration_unit] = ACTIONS(6310), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = ACTIONS(940), + [anon_sym_DQUOTE] = ACTIONS(940), + [sym__str_single_quotes] = ACTIONS(940), + [sym__str_back_ticks] = ACTIONS(940), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(940), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(940), + [aux_sym_unquoted_token5] = ACTIONS(6312), [anon_sym_POUND] = ACTIONS(3), }, - [2137] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5910), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5522), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4484), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5011), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2137), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5753), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5755), - [anon_sym_DOT_DOT_LT] = ACTIONS(5755), - [anon_sym_null] = ACTIONS(5757), - [anon_sym_true] = ACTIONS(5759), - [anon_sym_false] = ACTIONS(5759), - [aux_sym__val_number_decimal_token1] = ACTIONS(5761), - [aux_sym__val_number_decimal_token2] = ACTIONS(5763), - [anon_sym_DOT2] = ACTIONS(5765), - [aux_sym__val_number_decimal_token3] = ACTIONS(5767), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5769), - [aux_sym__val_number_token5] = ACTIONS(5769), - [aux_sym__val_number_token6] = ACTIONS(5769), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5771), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2411] = { + [sym_comment] = STATE(2411), + [ts_builtin_sym_end] = ACTIONS(6249), + [anon_sym_export] = ACTIONS(6247), + [anon_sym_alias] = ACTIONS(6247), + [anon_sym_let] = ACTIONS(6247), + [anon_sym_let_DASHenv] = ACTIONS(6247), + [anon_sym_mut] = ACTIONS(6247), + [anon_sym_const] = ACTIONS(6247), + [anon_sym_SEMI] = ACTIONS(6247), + [sym_cmd_identifier] = ACTIONS(6247), + [anon_sym_LF] = ACTIONS(6249), + [anon_sym_def] = ACTIONS(6247), + [anon_sym_export_DASHenv] = ACTIONS(6247), + [anon_sym_extern] = ACTIONS(6247), + [anon_sym_module] = ACTIONS(6247), + [anon_sym_use] = ACTIONS(6247), + [anon_sym_LBRACK] = ACTIONS(6247), + [anon_sym_LPAREN] = ACTIONS(6247), + [anon_sym_DOLLAR] = ACTIONS(6247), + [anon_sym_error] = ACTIONS(6247), + [anon_sym_DASH] = ACTIONS(6247), + [anon_sym_break] = ACTIONS(6247), + [anon_sym_continue] = ACTIONS(6247), + [anon_sym_for] = ACTIONS(6247), + [anon_sym_loop] = ACTIONS(6247), + [anon_sym_while] = ACTIONS(6247), + [anon_sym_do] = ACTIONS(6247), + [anon_sym_if] = ACTIONS(6247), + [anon_sym_match] = ACTIONS(6247), + [anon_sym_LBRACE] = ACTIONS(6247), + [anon_sym_DOT_DOT] = ACTIONS(6247), + [anon_sym_try] = ACTIONS(6247), + [anon_sym_return] = ACTIONS(6247), + [anon_sym_source] = ACTIONS(6247), + [anon_sym_source_DASHenv] = ACTIONS(6247), + [anon_sym_register] = ACTIONS(6247), + [anon_sym_hide] = ACTIONS(6247), + [anon_sym_hide_DASHenv] = ACTIONS(6247), + [anon_sym_overlay] = ACTIONS(6247), + [anon_sym_where] = ACTIONS(6247), + [anon_sym_not] = ACTIONS(6247), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6247), + [anon_sym_DOT_DOT_LT] = ACTIONS(6247), + [anon_sym_null] = ACTIONS(6247), + [anon_sym_true] = ACTIONS(6247), + [anon_sym_false] = ACTIONS(6247), + [aux_sym__val_number_decimal_token1] = ACTIONS(6247), + [aux_sym__val_number_decimal_token2] = ACTIONS(6247), + [anon_sym_DOT2] = ACTIONS(6247), + [aux_sym__val_number_decimal_token3] = ACTIONS(6247), + [aux_sym__val_number_token1] = ACTIONS(6247), + [aux_sym__val_number_token2] = ACTIONS(6247), + [aux_sym__val_number_token3] = ACTIONS(6247), + [aux_sym__val_number_token4] = ACTIONS(6247), + [aux_sym__val_number_token5] = ACTIONS(6247), + [aux_sym__val_number_token6] = ACTIONS(6247), + [anon_sym_0b] = ACTIONS(6247), + [anon_sym_0o] = ACTIONS(6247), + [anon_sym_0x] = ACTIONS(6247), + [sym_val_date] = ACTIONS(6247), + [anon_sym_DQUOTE] = ACTIONS(6247), + [sym__str_single_quotes] = ACTIONS(6247), + [sym__str_back_ticks] = ACTIONS(6247), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6247), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6247), + [anon_sym_CARET] = ACTIONS(6247), + [anon_sym_POUND] = ACTIONS(113), }, - [2138] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5911), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5522), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4484), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5019), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2138), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5753), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5755), - [anon_sym_DOT_DOT_LT] = ACTIONS(5755), - [anon_sym_null] = ACTIONS(5757), - [anon_sym_true] = ACTIONS(5759), - [anon_sym_false] = ACTIONS(5759), - [aux_sym__val_number_decimal_token1] = ACTIONS(5761), - [aux_sym__val_number_decimal_token2] = ACTIONS(5763), - [anon_sym_DOT2] = ACTIONS(5765), - [aux_sym__val_number_decimal_token3] = ACTIONS(5767), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5769), - [aux_sym__val_number_token5] = ACTIONS(5769), - [aux_sym__val_number_token6] = ACTIONS(5769), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5771), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2412] = { + [sym_comment] = STATE(2412), + [ts_builtin_sym_end] = ACTIONS(6023), + [anon_sym_export] = ACTIONS(6021), + [anon_sym_alias] = ACTIONS(6021), + [anon_sym_let] = ACTIONS(6021), + [anon_sym_let_DASHenv] = ACTIONS(6021), + [anon_sym_mut] = ACTIONS(6021), + [anon_sym_const] = ACTIONS(6021), + [anon_sym_SEMI] = ACTIONS(6021), + [sym_cmd_identifier] = ACTIONS(6021), + [anon_sym_LF] = ACTIONS(6023), + [anon_sym_def] = ACTIONS(6021), + [anon_sym_export_DASHenv] = ACTIONS(6021), + [anon_sym_extern] = ACTIONS(6021), + [anon_sym_module] = ACTIONS(6021), + [anon_sym_use] = ACTIONS(6021), + [anon_sym_LBRACK] = ACTIONS(6021), + [anon_sym_LPAREN] = ACTIONS(6021), + [anon_sym_DOLLAR] = ACTIONS(6021), + [anon_sym_error] = ACTIONS(6021), + [anon_sym_DASH] = ACTIONS(6021), + [anon_sym_break] = ACTIONS(6021), + [anon_sym_continue] = ACTIONS(6021), + [anon_sym_for] = ACTIONS(6021), + [anon_sym_loop] = ACTIONS(6021), + [anon_sym_while] = ACTIONS(6021), + [anon_sym_do] = ACTIONS(6021), + [anon_sym_if] = ACTIONS(6021), + [anon_sym_match] = ACTIONS(6021), + [anon_sym_LBRACE] = ACTIONS(6021), + [anon_sym_DOT_DOT] = ACTIONS(6021), + [anon_sym_try] = ACTIONS(6021), + [anon_sym_return] = ACTIONS(6021), + [anon_sym_source] = ACTIONS(6021), + [anon_sym_source_DASHenv] = ACTIONS(6021), + [anon_sym_register] = ACTIONS(6021), + [anon_sym_hide] = ACTIONS(6021), + [anon_sym_hide_DASHenv] = ACTIONS(6021), + [anon_sym_overlay] = ACTIONS(6021), + [anon_sym_where] = ACTIONS(6021), + [anon_sym_not] = ACTIONS(6021), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6021), + [anon_sym_DOT_DOT_LT] = ACTIONS(6021), + [anon_sym_null] = ACTIONS(6021), + [anon_sym_true] = ACTIONS(6021), + [anon_sym_false] = ACTIONS(6021), + [aux_sym__val_number_decimal_token1] = ACTIONS(6021), + [aux_sym__val_number_decimal_token2] = ACTIONS(6021), + [anon_sym_DOT2] = ACTIONS(6021), + [aux_sym__val_number_decimal_token3] = ACTIONS(6021), + [aux_sym__val_number_token1] = ACTIONS(6021), + [aux_sym__val_number_token2] = ACTIONS(6021), + [aux_sym__val_number_token3] = ACTIONS(6021), + [aux_sym__val_number_token4] = ACTIONS(6021), + [aux_sym__val_number_token5] = ACTIONS(6021), + [aux_sym__val_number_token6] = ACTIONS(6021), + [anon_sym_0b] = ACTIONS(6021), + [anon_sym_0o] = ACTIONS(6021), + [anon_sym_0x] = ACTIONS(6021), + [sym_val_date] = ACTIONS(6021), + [anon_sym_DQUOTE] = ACTIONS(6021), + [sym__str_single_quotes] = ACTIONS(6021), + [sym__str_back_ticks] = ACTIONS(6021), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6021), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6021), + [anon_sym_CARET] = ACTIONS(6021), + [anon_sym_POUND] = ACTIONS(113), }, - [2139] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5912), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5522), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4484), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5020), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2139), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5753), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5755), - [anon_sym_DOT_DOT_LT] = ACTIONS(5755), - [anon_sym_null] = ACTIONS(5757), - [anon_sym_true] = ACTIONS(5759), - [anon_sym_false] = ACTIONS(5759), - [aux_sym__val_number_decimal_token1] = ACTIONS(5761), - [aux_sym__val_number_decimal_token2] = ACTIONS(5763), - [anon_sym_DOT2] = ACTIONS(5765), - [aux_sym__val_number_decimal_token3] = ACTIONS(5767), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5769), - [aux_sym__val_number_token5] = ACTIONS(5769), - [aux_sym__val_number_token6] = ACTIONS(5769), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5771), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2413] = { + [sym_comment] = STATE(2413), + [ts_builtin_sym_end] = ACTIONS(6023), + [anon_sym_export] = ACTIONS(6021), + [anon_sym_alias] = ACTIONS(6021), + [anon_sym_let] = ACTIONS(6021), + [anon_sym_let_DASHenv] = ACTIONS(6021), + [anon_sym_mut] = ACTIONS(6021), + [anon_sym_const] = ACTIONS(6021), + [anon_sym_SEMI] = ACTIONS(6021), + [sym_cmd_identifier] = ACTIONS(6021), + [anon_sym_LF] = ACTIONS(6023), + [anon_sym_def] = ACTIONS(6021), + [anon_sym_export_DASHenv] = ACTIONS(6021), + [anon_sym_extern] = ACTIONS(6021), + [anon_sym_module] = ACTIONS(6021), + [anon_sym_use] = ACTIONS(6021), + [anon_sym_LBRACK] = ACTIONS(6021), + [anon_sym_LPAREN] = ACTIONS(6021), + [anon_sym_DOLLAR] = ACTIONS(6021), + [anon_sym_error] = ACTIONS(6021), + [anon_sym_DASH] = ACTIONS(6021), + [anon_sym_break] = ACTIONS(6021), + [anon_sym_continue] = ACTIONS(6021), + [anon_sym_for] = ACTIONS(6021), + [anon_sym_loop] = ACTIONS(6021), + [anon_sym_while] = ACTIONS(6021), + [anon_sym_do] = ACTIONS(6021), + [anon_sym_if] = ACTIONS(6021), + [anon_sym_match] = ACTIONS(6021), + [anon_sym_LBRACE] = ACTIONS(6021), + [anon_sym_DOT_DOT] = ACTIONS(6021), + [anon_sym_try] = ACTIONS(6021), + [anon_sym_return] = ACTIONS(6021), + [anon_sym_source] = ACTIONS(6021), + [anon_sym_source_DASHenv] = ACTIONS(6021), + [anon_sym_register] = ACTIONS(6021), + [anon_sym_hide] = ACTIONS(6021), + [anon_sym_hide_DASHenv] = ACTIONS(6021), + [anon_sym_overlay] = ACTIONS(6021), + [anon_sym_where] = ACTIONS(6021), + [anon_sym_not] = ACTIONS(6021), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6021), + [anon_sym_DOT_DOT_LT] = ACTIONS(6021), + [anon_sym_null] = ACTIONS(6021), + [anon_sym_true] = ACTIONS(6021), + [anon_sym_false] = ACTIONS(6021), + [aux_sym__val_number_decimal_token1] = ACTIONS(6021), + [aux_sym__val_number_decimal_token2] = ACTIONS(6021), + [anon_sym_DOT2] = ACTIONS(6021), + [aux_sym__val_number_decimal_token3] = ACTIONS(6021), + [aux_sym__val_number_token1] = ACTIONS(6021), + [aux_sym__val_number_token2] = ACTIONS(6021), + [aux_sym__val_number_token3] = ACTIONS(6021), + [aux_sym__val_number_token4] = ACTIONS(6021), + [aux_sym__val_number_token5] = ACTIONS(6021), + [aux_sym__val_number_token6] = ACTIONS(6021), + [anon_sym_0b] = ACTIONS(6021), + [anon_sym_0o] = ACTIONS(6021), + [anon_sym_0x] = ACTIONS(6021), + [sym_val_date] = ACTIONS(6021), + [anon_sym_DQUOTE] = ACTIONS(6021), + [sym__str_single_quotes] = ACTIONS(6021), + [sym__str_back_ticks] = ACTIONS(6021), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6021), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6021), + [anon_sym_CARET] = ACTIONS(6021), + [anon_sym_POUND] = ACTIONS(113), }, - [2140] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5913), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5522), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4484), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5026), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2140), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5753), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5755), - [anon_sym_DOT_DOT_LT] = ACTIONS(5755), - [anon_sym_null] = ACTIONS(5757), - [anon_sym_true] = ACTIONS(5759), - [anon_sym_false] = ACTIONS(5759), - [aux_sym__val_number_decimal_token1] = ACTIONS(5761), - [aux_sym__val_number_decimal_token2] = ACTIONS(5763), - [anon_sym_DOT2] = ACTIONS(5765), - [aux_sym__val_number_decimal_token3] = ACTIONS(5767), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5769), - [aux_sym__val_number_token5] = ACTIONS(5769), - [aux_sym__val_number_token6] = ACTIONS(5769), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5771), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2414] = { + [sym_comment] = STATE(2414), + [ts_builtin_sym_end] = ACTIONS(6106), + [anon_sym_export] = ACTIONS(6104), + [anon_sym_alias] = ACTIONS(6104), + [anon_sym_let] = ACTIONS(6104), + [anon_sym_let_DASHenv] = ACTIONS(6104), + [anon_sym_mut] = ACTIONS(6104), + [anon_sym_const] = ACTIONS(6104), + [anon_sym_SEMI] = ACTIONS(6104), + [sym_cmd_identifier] = ACTIONS(6104), + [anon_sym_LF] = ACTIONS(6106), + [anon_sym_def] = ACTIONS(6104), + [anon_sym_export_DASHenv] = ACTIONS(6104), + [anon_sym_extern] = ACTIONS(6104), + [anon_sym_module] = ACTIONS(6104), + [anon_sym_use] = ACTIONS(6104), + [anon_sym_LBRACK] = ACTIONS(6104), + [anon_sym_LPAREN] = ACTIONS(6104), + [anon_sym_DOLLAR] = ACTIONS(6104), + [anon_sym_error] = ACTIONS(6104), + [anon_sym_DASH] = ACTIONS(6104), + [anon_sym_break] = ACTIONS(6104), + [anon_sym_continue] = ACTIONS(6104), + [anon_sym_for] = ACTIONS(6104), + [anon_sym_loop] = ACTIONS(6104), + [anon_sym_while] = ACTIONS(6104), + [anon_sym_do] = ACTIONS(6104), + [anon_sym_if] = ACTIONS(6104), + [anon_sym_match] = ACTIONS(6104), + [anon_sym_LBRACE] = ACTIONS(6104), + [anon_sym_DOT_DOT] = ACTIONS(6104), + [anon_sym_try] = ACTIONS(6104), + [anon_sym_return] = ACTIONS(6104), + [anon_sym_source] = ACTIONS(6104), + [anon_sym_source_DASHenv] = ACTIONS(6104), + [anon_sym_register] = ACTIONS(6104), + [anon_sym_hide] = ACTIONS(6104), + [anon_sym_hide_DASHenv] = ACTIONS(6104), + [anon_sym_overlay] = ACTIONS(6104), + [anon_sym_where] = ACTIONS(6104), + [anon_sym_not] = ACTIONS(6104), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6104), + [anon_sym_DOT_DOT_LT] = ACTIONS(6104), + [anon_sym_null] = ACTIONS(6104), + [anon_sym_true] = ACTIONS(6104), + [anon_sym_false] = ACTIONS(6104), + [aux_sym__val_number_decimal_token1] = ACTIONS(6104), + [aux_sym__val_number_decimal_token2] = ACTIONS(6104), + [anon_sym_DOT2] = ACTIONS(6104), + [aux_sym__val_number_decimal_token3] = ACTIONS(6104), + [aux_sym__val_number_token1] = ACTIONS(6104), + [aux_sym__val_number_token2] = ACTIONS(6104), + [aux_sym__val_number_token3] = ACTIONS(6104), + [aux_sym__val_number_token4] = ACTIONS(6104), + [aux_sym__val_number_token5] = ACTIONS(6104), + [aux_sym__val_number_token6] = ACTIONS(6104), + [anon_sym_0b] = ACTIONS(6104), + [anon_sym_0o] = ACTIONS(6104), + [anon_sym_0x] = ACTIONS(6104), + [sym_val_date] = ACTIONS(6104), + [anon_sym_DQUOTE] = ACTIONS(6104), + [sym__str_single_quotes] = ACTIONS(6104), + [sym__str_back_ticks] = ACTIONS(6104), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6104), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6104), + [anon_sym_CARET] = ACTIONS(6104), + [anon_sym_POUND] = ACTIONS(113), }, - [2141] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5914), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5522), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4484), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5033), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2141), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5753), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5755), - [anon_sym_DOT_DOT_LT] = ACTIONS(5755), - [anon_sym_null] = ACTIONS(5757), - [anon_sym_true] = ACTIONS(5759), - [anon_sym_false] = ACTIONS(5759), - [aux_sym__val_number_decimal_token1] = ACTIONS(5761), - [aux_sym__val_number_decimal_token2] = ACTIONS(5763), - [anon_sym_DOT2] = ACTIONS(5765), - [aux_sym__val_number_decimal_token3] = ACTIONS(5767), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5769), - [aux_sym__val_number_token5] = ACTIONS(5769), - [aux_sym__val_number_token6] = ACTIONS(5769), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5771), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2415] = { + [sym_comment] = STATE(2415), + [ts_builtin_sym_end] = ACTIONS(6106), + [anon_sym_export] = ACTIONS(6104), + [anon_sym_alias] = ACTIONS(6104), + [anon_sym_let] = ACTIONS(6104), + [anon_sym_let_DASHenv] = ACTIONS(6104), + [anon_sym_mut] = ACTIONS(6104), + [anon_sym_const] = ACTIONS(6104), + [anon_sym_SEMI] = ACTIONS(6104), + [sym_cmd_identifier] = ACTIONS(6104), + [anon_sym_LF] = ACTIONS(6106), + [anon_sym_def] = ACTIONS(6104), + [anon_sym_export_DASHenv] = ACTIONS(6104), + [anon_sym_extern] = ACTIONS(6104), + [anon_sym_module] = ACTIONS(6104), + [anon_sym_use] = ACTIONS(6104), + [anon_sym_LBRACK] = ACTIONS(6104), + [anon_sym_LPAREN] = ACTIONS(6104), + [anon_sym_DOLLAR] = ACTIONS(6104), + [anon_sym_error] = ACTIONS(6104), + [anon_sym_DASH] = ACTIONS(6104), + [anon_sym_break] = ACTIONS(6104), + [anon_sym_continue] = ACTIONS(6104), + [anon_sym_for] = ACTIONS(6104), + [anon_sym_loop] = ACTIONS(6104), + [anon_sym_while] = ACTIONS(6104), + [anon_sym_do] = ACTIONS(6104), + [anon_sym_if] = ACTIONS(6104), + [anon_sym_match] = ACTIONS(6104), + [anon_sym_LBRACE] = ACTIONS(6104), + [anon_sym_DOT_DOT] = ACTIONS(6104), + [anon_sym_try] = ACTIONS(6104), + [anon_sym_return] = ACTIONS(6104), + [anon_sym_source] = ACTIONS(6104), + [anon_sym_source_DASHenv] = ACTIONS(6104), + [anon_sym_register] = ACTIONS(6104), + [anon_sym_hide] = ACTIONS(6104), + [anon_sym_hide_DASHenv] = ACTIONS(6104), + [anon_sym_overlay] = ACTIONS(6104), + [anon_sym_where] = ACTIONS(6104), + [anon_sym_not] = ACTIONS(6104), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6104), + [anon_sym_DOT_DOT_LT] = ACTIONS(6104), + [anon_sym_null] = ACTIONS(6104), + [anon_sym_true] = ACTIONS(6104), + [anon_sym_false] = ACTIONS(6104), + [aux_sym__val_number_decimal_token1] = ACTIONS(6104), + [aux_sym__val_number_decimal_token2] = ACTIONS(6104), + [anon_sym_DOT2] = ACTIONS(6104), + [aux_sym__val_number_decimal_token3] = ACTIONS(6104), + [aux_sym__val_number_token1] = ACTIONS(6104), + [aux_sym__val_number_token2] = ACTIONS(6104), + [aux_sym__val_number_token3] = ACTIONS(6104), + [aux_sym__val_number_token4] = ACTIONS(6104), + [aux_sym__val_number_token5] = ACTIONS(6104), + [aux_sym__val_number_token6] = ACTIONS(6104), + [anon_sym_0b] = ACTIONS(6104), + [anon_sym_0o] = ACTIONS(6104), + [anon_sym_0x] = ACTIONS(6104), + [sym_val_date] = ACTIONS(6104), + [anon_sym_DQUOTE] = ACTIONS(6104), + [sym__str_single_quotes] = ACTIONS(6104), + [sym__str_back_ticks] = ACTIONS(6104), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6104), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6104), + [anon_sym_CARET] = ACTIONS(6104), + [anon_sym_POUND] = ACTIONS(113), }, - [2142] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5915), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5522), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4484), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5036), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2142), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5753), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5755), - [anon_sym_DOT_DOT_LT] = ACTIONS(5755), - [anon_sym_null] = ACTIONS(5757), - [anon_sym_true] = ACTIONS(5759), - [anon_sym_false] = ACTIONS(5759), - [aux_sym__val_number_decimal_token1] = ACTIONS(5761), - [aux_sym__val_number_decimal_token2] = ACTIONS(5763), - [anon_sym_DOT2] = ACTIONS(5765), - [aux_sym__val_number_decimal_token3] = ACTIONS(5767), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5769), - [aux_sym__val_number_token5] = ACTIONS(5769), - [aux_sym__val_number_token6] = ACTIONS(5769), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5771), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2416] = { + [sym_comment] = STATE(2416), + [ts_builtin_sym_end] = ACTIONS(6023), + [anon_sym_export] = ACTIONS(6021), + [anon_sym_alias] = ACTIONS(6021), + [anon_sym_let] = ACTIONS(6021), + [anon_sym_let_DASHenv] = ACTIONS(6021), + [anon_sym_mut] = ACTIONS(6021), + [anon_sym_const] = ACTIONS(6021), + [anon_sym_SEMI] = ACTIONS(6021), + [sym_cmd_identifier] = ACTIONS(6021), + [anon_sym_LF] = ACTIONS(6023), + [anon_sym_def] = ACTIONS(6021), + [anon_sym_export_DASHenv] = ACTIONS(6021), + [anon_sym_extern] = ACTIONS(6021), + [anon_sym_module] = ACTIONS(6021), + [anon_sym_use] = ACTIONS(6021), + [anon_sym_LBRACK] = ACTIONS(6021), + [anon_sym_LPAREN] = ACTIONS(6021), + [anon_sym_DOLLAR] = ACTIONS(6021), + [anon_sym_error] = ACTIONS(6021), + [anon_sym_DASH] = ACTIONS(6021), + [anon_sym_break] = ACTIONS(6021), + [anon_sym_continue] = ACTIONS(6021), + [anon_sym_for] = ACTIONS(6021), + [anon_sym_loop] = ACTIONS(6021), + [anon_sym_while] = ACTIONS(6021), + [anon_sym_do] = ACTIONS(6021), + [anon_sym_if] = ACTIONS(6021), + [anon_sym_match] = ACTIONS(6021), + [anon_sym_LBRACE] = ACTIONS(6021), + [anon_sym_DOT_DOT] = ACTIONS(6021), + [anon_sym_try] = ACTIONS(6021), + [anon_sym_return] = ACTIONS(6021), + [anon_sym_source] = ACTIONS(6021), + [anon_sym_source_DASHenv] = ACTIONS(6021), + [anon_sym_register] = ACTIONS(6021), + [anon_sym_hide] = ACTIONS(6021), + [anon_sym_hide_DASHenv] = ACTIONS(6021), + [anon_sym_overlay] = ACTIONS(6021), + [anon_sym_where] = ACTIONS(6021), + [anon_sym_not] = ACTIONS(6021), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6021), + [anon_sym_DOT_DOT_LT] = ACTIONS(6021), + [anon_sym_null] = ACTIONS(6021), + [anon_sym_true] = ACTIONS(6021), + [anon_sym_false] = ACTIONS(6021), + [aux_sym__val_number_decimal_token1] = ACTIONS(6021), + [aux_sym__val_number_decimal_token2] = ACTIONS(6021), + [anon_sym_DOT2] = ACTIONS(6021), + [aux_sym__val_number_decimal_token3] = ACTIONS(6021), + [aux_sym__val_number_token1] = ACTIONS(6021), + [aux_sym__val_number_token2] = ACTIONS(6021), + [aux_sym__val_number_token3] = ACTIONS(6021), + [aux_sym__val_number_token4] = ACTIONS(6021), + [aux_sym__val_number_token5] = ACTIONS(6021), + [aux_sym__val_number_token6] = ACTIONS(6021), + [anon_sym_0b] = ACTIONS(6021), + [anon_sym_0o] = ACTIONS(6021), + [anon_sym_0x] = ACTIONS(6021), + [sym_val_date] = ACTIONS(6021), + [anon_sym_DQUOTE] = ACTIONS(6021), + [sym__str_single_quotes] = ACTIONS(6021), + [sym__str_back_ticks] = ACTIONS(6021), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6021), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6021), + [anon_sym_CARET] = ACTIONS(6021), + [anon_sym_POUND] = ACTIONS(113), }, - [2143] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5916), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5522), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4484), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(4951), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2143), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5753), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5755), - [anon_sym_DOT_DOT_LT] = ACTIONS(5755), - [anon_sym_null] = ACTIONS(5757), - [anon_sym_true] = ACTIONS(5759), - [anon_sym_false] = ACTIONS(5759), - [aux_sym__val_number_decimal_token1] = ACTIONS(5761), - [aux_sym__val_number_decimal_token2] = ACTIONS(5763), - [anon_sym_DOT2] = ACTIONS(5765), - [aux_sym__val_number_decimal_token3] = ACTIONS(5767), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5769), - [aux_sym__val_number_token5] = ACTIONS(5769), - [aux_sym__val_number_token6] = ACTIONS(5769), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5771), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2417] = { + [sym_comment] = STATE(2417), + [ts_builtin_sym_end] = ACTIONS(6023), + [anon_sym_export] = ACTIONS(6021), + [anon_sym_alias] = ACTIONS(6021), + [anon_sym_let] = ACTIONS(6021), + [anon_sym_let_DASHenv] = ACTIONS(6021), + [anon_sym_mut] = ACTIONS(6021), + [anon_sym_const] = ACTIONS(6021), + [anon_sym_SEMI] = ACTIONS(6021), + [sym_cmd_identifier] = ACTIONS(6021), + [anon_sym_LF] = ACTIONS(6023), + [anon_sym_def] = ACTIONS(6021), + [anon_sym_export_DASHenv] = ACTIONS(6021), + [anon_sym_extern] = ACTIONS(6021), + [anon_sym_module] = ACTIONS(6021), + [anon_sym_use] = ACTIONS(6021), + [anon_sym_LBRACK] = ACTIONS(6021), + [anon_sym_LPAREN] = ACTIONS(6021), + [anon_sym_DOLLAR] = ACTIONS(6021), + [anon_sym_error] = ACTIONS(6021), + [anon_sym_DASH] = ACTIONS(6021), + [anon_sym_break] = ACTIONS(6021), + [anon_sym_continue] = ACTIONS(6021), + [anon_sym_for] = ACTIONS(6021), + [anon_sym_loop] = ACTIONS(6021), + [anon_sym_while] = ACTIONS(6021), + [anon_sym_do] = ACTIONS(6021), + [anon_sym_if] = ACTIONS(6021), + [anon_sym_match] = ACTIONS(6021), + [anon_sym_LBRACE] = ACTIONS(6021), + [anon_sym_DOT_DOT] = ACTIONS(6021), + [anon_sym_try] = ACTIONS(6021), + [anon_sym_return] = ACTIONS(6021), + [anon_sym_source] = ACTIONS(6021), + [anon_sym_source_DASHenv] = ACTIONS(6021), + [anon_sym_register] = ACTIONS(6021), + [anon_sym_hide] = ACTIONS(6021), + [anon_sym_hide_DASHenv] = ACTIONS(6021), + [anon_sym_overlay] = ACTIONS(6021), + [anon_sym_where] = ACTIONS(6021), + [anon_sym_not] = ACTIONS(6021), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6021), + [anon_sym_DOT_DOT_LT] = ACTIONS(6021), + [anon_sym_null] = ACTIONS(6021), + [anon_sym_true] = ACTIONS(6021), + [anon_sym_false] = ACTIONS(6021), + [aux_sym__val_number_decimal_token1] = ACTIONS(6021), + [aux_sym__val_number_decimal_token2] = ACTIONS(6021), + [anon_sym_DOT2] = ACTIONS(6021), + [aux_sym__val_number_decimal_token3] = ACTIONS(6021), + [aux_sym__val_number_token1] = ACTIONS(6021), + [aux_sym__val_number_token2] = ACTIONS(6021), + [aux_sym__val_number_token3] = ACTIONS(6021), + [aux_sym__val_number_token4] = ACTIONS(6021), + [aux_sym__val_number_token5] = ACTIONS(6021), + [aux_sym__val_number_token6] = ACTIONS(6021), + [anon_sym_0b] = ACTIONS(6021), + [anon_sym_0o] = ACTIONS(6021), + [anon_sym_0x] = ACTIONS(6021), + [sym_val_date] = ACTIONS(6021), + [anon_sym_DQUOTE] = ACTIONS(6021), + [sym__str_single_quotes] = ACTIONS(6021), + [sym__str_back_ticks] = ACTIONS(6021), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6021), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6021), + [anon_sym_CARET] = ACTIONS(6021), + [anon_sym_POUND] = ACTIONS(113), }, - [2144] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5917), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5522), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4484), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5052), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2144), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5753), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5755), - [anon_sym_DOT_DOT_LT] = ACTIONS(5755), - [anon_sym_null] = ACTIONS(5757), - [anon_sym_true] = ACTIONS(5759), - [anon_sym_false] = ACTIONS(5759), - [aux_sym__val_number_decimal_token1] = ACTIONS(5761), - [aux_sym__val_number_decimal_token2] = ACTIONS(5763), - [anon_sym_DOT2] = ACTIONS(5765), - [aux_sym__val_number_decimal_token3] = ACTIONS(5767), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5769), - [aux_sym__val_number_token5] = ACTIONS(5769), - [aux_sym__val_number_token6] = ACTIONS(5769), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5771), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2418] = { + [sym_comment] = STATE(2418), + [ts_builtin_sym_end] = ACTIONS(6092), + [anon_sym_export] = ACTIONS(6090), + [anon_sym_alias] = ACTIONS(6090), + [anon_sym_let] = ACTIONS(6090), + [anon_sym_let_DASHenv] = ACTIONS(6090), + [anon_sym_mut] = ACTIONS(6090), + [anon_sym_const] = ACTIONS(6090), + [anon_sym_SEMI] = ACTIONS(6090), + [sym_cmd_identifier] = ACTIONS(6090), + [anon_sym_LF] = ACTIONS(6092), + [anon_sym_def] = ACTIONS(6090), + [anon_sym_export_DASHenv] = ACTIONS(6090), + [anon_sym_extern] = ACTIONS(6090), + [anon_sym_module] = ACTIONS(6090), + [anon_sym_use] = ACTIONS(6090), + [anon_sym_LBRACK] = ACTIONS(6090), + [anon_sym_LPAREN] = ACTIONS(6090), + [anon_sym_DOLLAR] = ACTIONS(6090), + [anon_sym_error] = ACTIONS(6090), + [anon_sym_DASH] = ACTIONS(6090), + [anon_sym_break] = ACTIONS(6090), + [anon_sym_continue] = ACTIONS(6090), + [anon_sym_for] = ACTIONS(6090), + [anon_sym_loop] = ACTIONS(6090), + [anon_sym_while] = ACTIONS(6090), + [anon_sym_do] = ACTIONS(6090), + [anon_sym_if] = ACTIONS(6090), + [anon_sym_match] = ACTIONS(6090), + [anon_sym_LBRACE] = ACTIONS(6090), + [anon_sym_DOT_DOT] = ACTIONS(6090), + [anon_sym_try] = ACTIONS(6090), + [anon_sym_return] = ACTIONS(6090), + [anon_sym_source] = ACTIONS(6090), + [anon_sym_source_DASHenv] = ACTIONS(6090), + [anon_sym_register] = ACTIONS(6090), + [anon_sym_hide] = ACTIONS(6090), + [anon_sym_hide_DASHenv] = ACTIONS(6090), + [anon_sym_overlay] = ACTIONS(6090), + [anon_sym_where] = ACTIONS(6090), + [anon_sym_not] = ACTIONS(6090), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6090), + [anon_sym_DOT_DOT_LT] = ACTIONS(6090), + [anon_sym_null] = ACTIONS(6090), + [anon_sym_true] = ACTIONS(6090), + [anon_sym_false] = ACTIONS(6090), + [aux_sym__val_number_decimal_token1] = ACTIONS(6090), + [aux_sym__val_number_decimal_token2] = ACTIONS(6090), + [anon_sym_DOT2] = ACTIONS(6090), + [aux_sym__val_number_decimal_token3] = ACTIONS(6090), + [aux_sym__val_number_token1] = ACTIONS(6090), + [aux_sym__val_number_token2] = ACTIONS(6090), + [aux_sym__val_number_token3] = ACTIONS(6090), + [aux_sym__val_number_token4] = ACTIONS(6090), + [aux_sym__val_number_token5] = ACTIONS(6090), + [aux_sym__val_number_token6] = ACTIONS(6090), + [anon_sym_0b] = ACTIONS(6090), + [anon_sym_0o] = ACTIONS(6090), + [anon_sym_0x] = ACTIONS(6090), + [sym_val_date] = ACTIONS(6090), + [anon_sym_DQUOTE] = ACTIONS(6090), + [sym__str_single_quotes] = ACTIONS(6090), + [sym__str_back_ticks] = ACTIONS(6090), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6090), + [anon_sym_CARET] = ACTIONS(6090), + [anon_sym_POUND] = ACTIONS(113), }, - [2145] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5918), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5522), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4484), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5054), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2145), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5753), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5755), - [anon_sym_DOT_DOT_LT] = ACTIONS(5755), - [anon_sym_null] = ACTIONS(5757), - [anon_sym_true] = ACTIONS(5759), - [anon_sym_false] = ACTIONS(5759), - [aux_sym__val_number_decimal_token1] = ACTIONS(5761), - [aux_sym__val_number_decimal_token2] = ACTIONS(5763), - [anon_sym_DOT2] = ACTIONS(5765), - [aux_sym__val_number_decimal_token3] = ACTIONS(5767), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5769), - [aux_sym__val_number_token5] = ACTIONS(5769), - [aux_sym__val_number_token6] = ACTIONS(5769), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5771), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2419] = { + [sym_comment] = STATE(2419), + [ts_builtin_sym_end] = ACTIONS(5960), + [anon_sym_export] = ACTIONS(5958), + [anon_sym_alias] = ACTIONS(5958), + [anon_sym_let] = ACTIONS(5958), + [anon_sym_let_DASHenv] = ACTIONS(5958), + [anon_sym_mut] = ACTIONS(5958), + [anon_sym_const] = ACTIONS(5958), + [anon_sym_SEMI] = ACTIONS(5958), + [sym_cmd_identifier] = ACTIONS(5958), + [anon_sym_LF] = ACTIONS(5960), + [anon_sym_def] = ACTIONS(5958), + [anon_sym_export_DASHenv] = ACTIONS(5958), + [anon_sym_extern] = ACTIONS(5958), + [anon_sym_module] = ACTIONS(5958), + [anon_sym_use] = ACTIONS(5958), + [anon_sym_LBRACK] = ACTIONS(5958), + [anon_sym_LPAREN] = ACTIONS(5958), + [anon_sym_DOLLAR] = ACTIONS(5958), + [anon_sym_error] = ACTIONS(5958), + [anon_sym_DASH] = ACTIONS(5958), + [anon_sym_break] = ACTIONS(5958), + [anon_sym_continue] = ACTIONS(5958), + [anon_sym_for] = ACTIONS(5958), + [anon_sym_loop] = ACTIONS(5958), + [anon_sym_while] = ACTIONS(5958), + [anon_sym_do] = ACTIONS(5958), + [anon_sym_if] = ACTIONS(5958), + [anon_sym_match] = ACTIONS(5958), + [anon_sym_LBRACE] = ACTIONS(5958), + [anon_sym_DOT_DOT] = ACTIONS(5958), + [anon_sym_try] = ACTIONS(5958), + [anon_sym_return] = ACTIONS(5958), + [anon_sym_source] = ACTIONS(5958), + [anon_sym_source_DASHenv] = ACTIONS(5958), + [anon_sym_register] = ACTIONS(5958), + [anon_sym_hide] = ACTIONS(5958), + [anon_sym_hide_DASHenv] = ACTIONS(5958), + [anon_sym_overlay] = ACTIONS(5958), + [anon_sym_where] = ACTIONS(5958), + [anon_sym_not] = ACTIONS(5958), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5958), + [anon_sym_DOT_DOT_LT] = ACTIONS(5958), + [anon_sym_null] = ACTIONS(5958), + [anon_sym_true] = ACTIONS(5958), + [anon_sym_false] = ACTIONS(5958), + [aux_sym__val_number_decimal_token1] = ACTIONS(5958), + [aux_sym__val_number_decimal_token2] = ACTIONS(5958), + [anon_sym_DOT2] = ACTIONS(5958), + [aux_sym__val_number_decimal_token3] = ACTIONS(5958), + [aux_sym__val_number_token1] = ACTIONS(5958), + [aux_sym__val_number_token2] = ACTIONS(5958), + [aux_sym__val_number_token3] = ACTIONS(5958), + [aux_sym__val_number_token4] = ACTIONS(5958), + [aux_sym__val_number_token5] = ACTIONS(5958), + [aux_sym__val_number_token6] = ACTIONS(5958), + [anon_sym_0b] = ACTIONS(5958), + [anon_sym_0o] = ACTIONS(5958), + [anon_sym_0x] = ACTIONS(5958), + [sym_val_date] = ACTIONS(5958), + [anon_sym_DQUOTE] = ACTIONS(5958), + [sym__str_single_quotes] = ACTIONS(5958), + [sym__str_back_ticks] = ACTIONS(5958), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5958), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5958), + [anon_sym_CARET] = ACTIONS(5958), + [anon_sym_POUND] = ACTIONS(113), }, - [2146] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5919), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5522), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4484), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5067), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2146), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5753), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5755), - [anon_sym_DOT_DOT_LT] = ACTIONS(5755), - [anon_sym_null] = ACTIONS(5757), - [anon_sym_true] = ACTIONS(5759), - [anon_sym_false] = ACTIONS(5759), - [aux_sym__val_number_decimal_token1] = ACTIONS(5761), - [aux_sym__val_number_decimal_token2] = ACTIONS(5763), - [anon_sym_DOT2] = ACTIONS(5765), - [aux_sym__val_number_decimal_token3] = ACTIONS(5767), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5769), - [aux_sym__val_number_token5] = ACTIONS(5769), - [aux_sym__val_number_token6] = ACTIONS(5769), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5771), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2420] = { + [sym_comment] = STATE(2420), + [ts_builtin_sym_end] = ACTIONS(5960), + [anon_sym_export] = ACTIONS(5958), + [anon_sym_alias] = ACTIONS(5958), + [anon_sym_let] = ACTIONS(5958), + [anon_sym_let_DASHenv] = ACTIONS(5958), + [anon_sym_mut] = ACTIONS(5958), + [anon_sym_const] = ACTIONS(5958), + [anon_sym_SEMI] = ACTIONS(5958), + [sym_cmd_identifier] = ACTIONS(5958), + [anon_sym_LF] = ACTIONS(5960), + [anon_sym_def] = ACTIONS(5958), + [anon_sym_export_DASHenv] = ACTIONS(5958), + [anon_sym_extern] = ACTIONS(5958), + [anon_sym_module] = ACTIONS(5958), + [anon_sym_use] = ACTIONS(5958), + [anon_sym_LBRACK] = ACTIONS(5958), + [anon_sym_LPAREN] = ACTIONS(5958), + [anon_sym_DOLLAR] = ACTIONS(5958), + [anon_sym_error] = ACTIONS(5958), + [anon_sym_DASH] = ACTIONS(5958), + [anon_sym_break] = ACTIONS(5958), + [anon_sym_continue] = ACTIONS(5958), + [anon_sym_for] = ACTIONS(5958), + [anon_sym_loop] = ACTIONS(5958), + [anon_sym_while] = ACTIONS(5958), + [anon_sym_do] = ACTIONS(5958), + [anon_sym_if] = ACTIONS(5958), + [anon_sym_match] = ACTIONS(5958), + [anon_sym_LBRACE] = ACTIONS(5958), + [anon_sym_DOT_DOT] = ACTIONS(5958), + [anon_sym_try] = ACTIONS(5958), + [anon_sym_return] = ACTIONS(5958), + [anon_sym_source] = ACTIONS(5958), + [anon_sym_source_DASHenv] = ACTIONS(5958), + [anon_sym_register] = ACTIONS(5958), + [anon_sym_hide] = ACTIONS(5958), + [anon_sym_hide_DASHenv] = ACTIONS(5958), + [anon_sym_overlay] = ACTIONS(5958), + [anon_sym_where] = ACTIONS(5958), + [anon_sym_not] = ACTIONS(5958), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5958), + [anon_sym_DOT_DOT_LT] = ACTIONS(5958), + [anon_sym_null] = ACTIONS(5958), + [anon_sym_true] = ACTIONS(5958), + [anon_sym_false] = ACTIONS(5958), + [aux_sym__val_number_decimal_token1] = ACTIONS(5958), + [aux_sym__val_number_decimal_token2] = ACTIONS(5958), + [anon_sym_DOT2] = ACTIONS(5958), + [aux_sym__val_number_decimal_token3] = ACTIONS(5958), + [aux_sym__val_number_token1] = ACTIONS(5958), + [aux_sym__val_number_token2] = ACTIONS(5958), + [aux_sym__val_number_token3] = ACTIONS(5958), + [aux_sym__val_number_token4] = ACTIONS(5958), + [aux_sym__val_number_token5] = ACTIONS(5958), + [aux_sym__val_number_token6] = ACTIONS(5958), + [anon_sym_0b] = ACTIONS(5958), + [anon_sym_0o] = ACTIONS(5958), + [anon_sym_0x] = ACTIONS(5958), + [sym_val_date] = ACTIONS(5958), + [anon_sym_DQUOTE] = ACTIONS(5958), + [sym__str_single_quotes] = ACTIONS(5958), + [sym__str_back_ticks] = ACTIONS(5958), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5958), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5958), + [anon_sym_CARET] = ACTIONS(5958), + [anon_sym_POUND] = ACTIONS(113), }, - [2147] = { - [sym_expr_unary] = STATE(6084), - [sym__expr_unary_minus] = STATE(6242), - [sym_expr_binary] = STATE(6084), - [sym__expr_binary_expression] = STATE(5965), - [sym_expr_parenthesized] = STATE(6084), - [sym__val_range] = STATE(10678), - [sym__value] = STATE(6084), - [sym_val_nothing] = STATE(6075), - [sym_val_bool] = STATE(5936), - [sym_val_variable] = STATE(6075), - [sym__var] = STATE(5266), - [sym_val_number] = STATE(6075), - [sym__val_number_decimal] = STATE(4509), - [sym__val_number] = STATE(6146), - [sym_val_duration] = STATE(6075), - [sym_val_filesize] = STATE(6075), - [sym_val_binary] = STATE(6075), - [sym_val_string] = STATE(6075), - [sym__str_double_quotes] = STATE(6198), - [sym_val_interpolated] = STATE(6075), - [sym__inter_single_quotes] = STATE(6204), - [sym__inter_double_quotes] = STATE(6205), - [sym_val_list] = STATE(6075), - [sym_val_record] = STATE(6075), - [sym_val_table] = STATE(6075), - [sym_val_closure] = STATE(6075), - [sym_unquoted] = STATE(6091), - [sym__unquoted_anonymous_prefix] = STATE(10797), - [sym_comment] = STATE(2147), - [anon_sym_LBRACK] = ACTIONS(4901), - [anon_sym_LPAREN] = ACTIONS(5773), - [anon_sym_DOLLAR] = ACTIONS(5775), - [anon_sym_DASH] = ACTIONS(4907), - [anon_sym_LBRACE] = ACTIONS(4909), - [anon_sym_DOT_DOT] = ACTIONS(5777), - [anon_sym_not] = ACTIONS(4913), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5779), - [anon_sym_DOT_DOT_LT] = ACTIONS(5779), - [anon_sym_null] = ACTIONS(4917), - [anon_sym_true] = ACTIONS(4919), - [anon_sym_false] = ACTIONS(4919), - [aux_sym__val_number_decimal_token1] = ACTIONS(4921), - [aux_sym__val_number_decimal_token2] = ACTIONS(4923), - [anon_sym_DOT2] = ACTIONS(5781), - [aux_sym__val_number_decimal_token3] = ACTIONS(4927), - [aux_sym__val_number_token1] = ACTIONS(4929), - [aux_sym__val_number_token2] = ACTIONS(4929), - [aux_sym__val_number_token3] = ACTIONS(4929), - [aux_sym__val_number_token4] = ACTIONS(5783), - [aux_sym__val_number_token5] = ACTIONS(5783), - [aux_sym__val_number_token6] = ACTIONS(5783), - [anon_sym_0b] = ACTIONS(4933), - [anon_sym_0o] = ACTIONS(4935), - [anon_sym_0x] = ACTIONS(4935), - [sym_val_date] = ACTIONS(4937), - [anon_sym_DQUOTE] = ACTIONS(4939), - [sym__str_single_quotes] = ACTIONS(4941), - [sym__str_back_ticks] = ACTIONS(4941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4943), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4945), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5785), - [anon_sym_POUND] = ACTIONS(3), + [2421] = { + [sym_comment] = STATE(2421), + [ts_builtin_sym_end] = ACTIONS(5991), + [anon_sym_export] = ACTIONS(5989), + [anon_sym_alias] = ACTIONS(5989), + [anon_sym_let] = ACTIONS(5989), + [anon_sym_let_DASHenv] = ACTIONS(5989), + [anon_sym_mut] = ACTIONS(5989), + [anon_sym_const] = ACTIONS(5989), + [anon_sym_SEMI] = ACTIONS(5989), + [sym_cmd_identifier] = ACTIONS(5989), + [anon_sym_LF] = ACTIONS(5991), + [anon_sym_def] = ACTIONS(5989), + [anon_sym_export_DASHenv] = ACTIONS(5989), + [anon_sym_extern] = ACTIONS(5989), + [anon_sym_module] = ACTIONS(5989), + [anon_sym_use] = ACTIONS(5989), + [anon_sym_LBRACK] = ACTIONS(5989), + [anon_sym_LPAREN] = ACTIONS(5989), + [anon_sym_DOLLAR] = ACTIONS(5989), + [anon_sym_error] = ACTIONS(5989), + [anon_sym_DASH] = ACTIONS(5989), + [anon_sym_break] = ACTIONS(5989), + [anon_sym_continue] = ACTIONS(5989), + [anon_sym_for] = ACTIONS(5989), + [anon_sym_loop] = ACTIONS(5989), + [anon_sym_while] = ACTIONS(5989), + [anon_sym_do] = ACTIONS(5989), + [anon_sym_if] = ACTIONS(5989), + [anon_sym_match] = ACTIONS(5989), + [anon_sym_LBRACE] = ACTIONS(5989), + [anon_sym_DOT_DOT] = ACTIONS(5989), + [anon_sym_try] = ACTIONS(5989), + [anon_sym_return] = ACTIONS(5989), + [anon_sym_source] = ACTIONS(5989), + [anon_sym_source_DASHenv] = ACTIONS(5989), + [anon_sym_register] = ACTIONS(5989), + [anon_sym_hide] = ACTIONS(5989), + [anon_sym_hide_DASHenv] = ACTIONS(5989), + [anon_sym_overlay] = ACTIONS(5989), + [anon_sym_where] = ACTIONS(5989), + [anon_sym_not] = ACTIONS(5989), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5989), + [anon_sym_DOT_DOT_LT] = ACTIONS(5989), + [anon_sym_null] = ACTIONS(5989), + [anon_sym_true] = ACTIONS(5989), + [anon_sym_false] = ACTIONS(5989), + [aux_sym__val_number_decimal_token1] = ACTIONS(5989), + [aux_sym__val_number_decimal_token2] = ACTIONS(5989), + [anon_sym_DOT2] = ACTIONS(5989), + [aux_sym__val_number_decimal_token3] = ACTIONS(5989), + [aux_sym__val_number_token1] = ACTIONS(5989), + [aux_sym__val_number_token2] = ACTIONS(5989), + [aux_sym__val_number_token3] = ACTIONS(5989), + [aux_sym__val_number_token4] = ACTIONS(5989), + [aux_sym__val_number_token5] = ACTIONS(5989), + [aux_sym__val_number_token6] = ACTIONS(5989), + [anon_sym_0b] = ACTIONS(5989), + [anon_sym_0o] = ACTIONS(5989), + [anon_sym_0x] = ACTIONS(5989), + [sym_val_date] = ACTIONS(5989), + [anon_sym_DQUOTE] = ACTIONS(5989), + [sym__str_single_quotes] = ACTIONS(5989), + [sym__str_back_ticks] = ACTIONS(5989), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5989), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5989), + [anon_sym_CARET] = ACTIONS(5989), + [anon_sym_POUND] = ACTIONS(113), }, - [2148] = { - [sym_expr_unary] = STATE(6084), - [sym__expr_unary_minus] = STATE(6242), - [sym_expr_binary] = STATE(6084), - [sym__expr_binary_expression] = STATE(5967), - [sym_expr_parenthesized] = STATE(6084), - [sym__val_range] = STATE(10678), - [sym__value] = STATE(6084), - [sym_val_nothing] = STATE(6075), - [sym_val_bool] = STATE(5936), - [sym_val_variable] = STATE(6075), - [sym__var] = STATE(5266), - [sym_val_number] = STATE(6075), - [sym__val_number_decimal] = STATE(4509), - [sym__val_number] = STATE(6146), - [sym_val_duration] = STATE(6075), - [sym_val_filesize] = STATE(6075), - [sym_val_binary] = STATE(6075), - [sym_val_string] = STATE(6075), - [sym__str_double_quotes] = STATE(6198), - [sym_val_interpolated] = STATE(6075), - [sym__inter_single_quotes] = STATE(6204), - [sym__inter_double_quotes] = STATE(6205), - [sym_val_list] = STATE(6075), - [sym_val_record] = STATE(6075), - [sym_val_table] = STATE(6075), - [sym_val_closure] = STATE(6075), - [sym_unquoted] = STATE(6092), - [sym__unquoted_anonymous_prefix] = STATE(10797), - [sym_comment] = STATE(2148), - [anon_sym_LBRACK] = ACTIONS(4901), - [anon_sym_LPAREN] = ACTIONS(5773), - [anon_sym_DOLLAR] = ACTIONS(5775), - [anon_sym_DASH] = ACTIONS(4907), - [anon_sym_LBRACE] = ACTIONS(4909), - [anon_sym_DOT_DOT] = ACTIONS(5777), - [anon_sym_not] = ACTIONS(4913), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5779), - [anon_sym_DOT_DOT_LT] = ACTIONS(5779), - [anon_sym_null] = ACTIONS(4917), - [anon_sym_true] = ACTIONS(4919), - [anon_sym_false] = ACTIONS(4919), - [aux_sym__val_number_decimal_token1] = ACTIONS(4921), - [aux_sym__val_number_decimal_token2] = ACTIONS(4923), - [anon_sym_DOT2] = ACTIONS(5781), - [aux_sym__val_number_decimal_token3] = ACTIONS(4927), - [aux_sym__val_number_token1] = ACTIONS(4929), - [aux_sym__val_number_token2] = ACTIONS(4929), - [aux_sym__val_number_token3] = ACTIONS(4929), - [aux_sym__val_number_token4] = ACTIONS(5783), - [aux_sym__val_number_token5] = ACTIONS(5783), - [aux_sym__val_number_token6] = ACTIONS(5783), - [anon_sym_0b] = ACTIONS(4933), - [anon_sym_0o] = ACTIONS(4935), - [anon_sym_0x] = ACTIONS(4935), - [sym_val_date] = ACTIONS(4937), - [anon_sym_DQUOTE] = ACTIONS(4939), - [sym__str_single_quotes] = ACTIONS(4941), - [sym__str_back_ticks] = ACTIONS(4941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4943), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4945), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5785), + [2422] = { + [sym_expr_parenthesized] = STATE(10494), + [sym_val_variable] = STATE(10494), + [sym__var] = STATE(7000), + [sym_val_number] = STATE(10494), + [sym__val_number_decimal] = STATE(4911), + [sym__val_number] = STATE(4922), + [sym_val_string] = STATE(10494), + [sym__str_double_quotes] = STATE(6592), + [sym_record_entry] = STATE(10013), + [sym__record_key] = STATE(10433), + [sym_comment] = STATE(2422), + [aux_sym_record_body_repeat1] = STATE(2473), + [anon_sym_export] = ACTIONS(255), + [anon_sym_alias] = ACTIONS(255), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(255), + [anon_sym_const] = ACTIONS(255), + [sym_cmd_identifier] = ACTIONS(255), + [anon_sym_def] = ACTIONS(255), + [anon_sym_export_DASHenv] = ACTIONS(255), + [anon_sym_extern] = ACTIONS(255), + [anon_sym_module] = ACTIONS(255), + [anon_sym_use] = ACTIONS(255), + [anon_sym_LPAREN] = ACTIONS(5651), + [anon_sym_DOLLAR] = ACTIONS(5725), + [anon_sym_error] = ACTIONS(255), + [anon_sym_list] = ACTIONS(255), + [anon_sym_DASH] = ACTIONS(189), + [anon_sym_break] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_for] = ACTIONS(255), + [anon_sym_in] = ACTIONS(255), + [anon_sym_loop] = ACTIONS(255), + [anon_sym_make] = ACTIONS(255), + [anon_sym_while] = ACTIONS(255), + [anon_sym_do] = ACTIONS(255), + [anon_sym_if] = ACTIONS(255), + [anon_sym_else] = ACTIONS(255), + [anon_sym_match] = ACTIONS(255), + [anon_sym_try] = ACTIONS(255), + [anon_sym_catch] = ACTIONS(255), + [anon_sym_return] = ACTIONS(255), + [anon_sym_source] = ACTIONS(255), + [anon_sym_source_DASHenv] = ACTIONS(255), + [anon_sym_register] = ACTIONS(255), + [anon_sym_hide] = ACTIONS(255), + [anon_sym_hide_DASHenv] = ACTIONS(255), + [anon_sym_overlay] = ACTIONS(255), + [anon_sym_new] = ACTIONS(255), + [anon_sym_as] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(189), + [aux_sym__val_number_decimal_token1] = ACTIONS(5657), + [aux_sym__val_number_decimal_token2] = ACTIONS(5659), + [anon_sym_DOT2] = ACTIONS(5661), + [aux_sym__val_number_decimal_token3] = ACTIONS(5663), + [aux_sym__val_number_token1] = ACTIONS(3124), + [aux_sym__val_number_token2] = ACTIONS(3124), + [aux_sym__val_number_token3] = ACTIONS(3124), + [aux_sym__val_number_token4] = ACTIONS(5665), + [aux_sym__val_number_token5] = ACTIONS(3124), + [aux_sym__val_number_token6] = ACTIONS(5665), + [anon_sym_DQUOTE] = ACTIONS(2838), + [sym__str_single_quotes] = ACTIONS(2840), + [sym__str_back_ticks] = ACTIONS(2840), + [aux_sym__record_key_token2] = ACTIONS(225), [anon_sym_POUND] = ACTIONS(3), }, - [2149] = { - [sym_expr_unary] = STATE(6084), - [sym__expr_unary_minus] = STATE(6242), - [sym_expr_binary] = STATE(6084), - [sym__expr_binary_expression] = STATE(5968), - [sym_expr_parenthesized] = STATE(6084), - [sym__val_range] = STATE(10678), - [sym__value] = STATE(6084), - [sym_val_nothing] = STATE(6075), - [sym_val_bool] = STATE(5936), - [sym_val_variable] = STATE(6075), - [sym__var] = STATE(5266), - [sym_val_number] = STATE(6075), - [sym__val_number_decimal] = STATE(4509), - [sym__val_number] = STATE(6146), - [sym_val_duration] = STATE(6075), - [sym_val_filesize] = STATE(6075), - [sym_val_binary] = STATE(6075), - [sym_val_string] = STATE(6075), - [sym__str_double_quotes] = STATE(6198), - [sym_val_interpolated] = STATE(6075), - [sym__inter_single_quotes] = STATE(6204), - [sym__inter_double_quotes] = STATE(6205), - [sym_val_list] = STATE(6075), - [sym_val_record] = STATE(6075), - [sym_val_table] = STATE(6075), - [sym_val_closure] = STATE(6075), - [sym_unquoted] = STATE(6094), - [sym__unquoted_anonymous_prefix] = STATE(10797), - [sym_comment] = STATE(2149), - [anon_sym_LBRACK] = ACTIONS(4901), - [anon_sym_LPAREN] = ACTIONS(5773), - [anon_sym_DOLLAR] = ACTIONS(5775), - [anon_sym_DASH] = ACTIONS(4907), - [anon_sym_LBRACE] = ACTIONS(4909), - [anon_sym_DOT_DOT] = ACTIONS(5777), - [anon_sym_not] = ACTIONS(4913), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5779), - [anon_sym_DOT_DOT_LT] = ACTIONS(5779), - [anon_sym_null] = ACTIONS(4917), - [anon_sym_true] = ACTIONS(4919), - [anon_sym_false] = ACTIONS(4919), - [aux_sym__val_number_decimal_token1] = ACTIONS(4921), - [aux_sym__val_number_decimal_token2] = ACTIONS(4923), - [anon_sym_DOT2] = ACTIONS(5781), - [aux_sym__val_number_decimal_token3] = ACTIONS(4927), - [aux_sym__val_number_token1] = ACTIONS(4929), - [aux_sym__val_number_token2] = ACTIONS(4929), - [aux_sym__val_number_token3] = ACTIONS(4929), - [aux_sym__val_number_token4] = ACTIONS(5783), - [aux_sym__val_number_token5] = ACTIONS(5783), - [aux_sym__val_number_token6] = ACTIONS(5783), - [anon_sym_0b] = ACTIONS(4933), - [anon_sym_0o] = ACTIONS(4935), - [anon_sym_0x] = ACTIONS(4935), - [sym_val_date] = ACTIONS(4937), - [anon_sym_DQUOTE] = ACTIONS(4939), - [sym__str_single_quotes] = ACTIONS(4941), - [sym__str_back_ticks] = ACTIONS(4941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4943), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4945), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5785), - [anon_sym_POUND] = ACTIONS(3), + [2423] = { + [sym_comment] = STATE(2423), + [ts_builtin_sym_end] = ACTIONS(6276), + [anon_sym_export] = ACTIONS(6274), + [anon_sym_alias] = ACTIONS(6274), + [anon_sym_let] = ACTIONS(6274), + [anon_sym_let_DASHenv] = ACTIONS(6274), + [anon_sym_mut] = ACTIONS(6274), + [anon_sym_const] = ACTIONS(6274), + [anon_sym_SEMI] = ACTIONS(6274), + [sym_cmd_identifier] = ACTIONS(6274), + [anon_sym_LF] = ACTIONS(6276), + [anon_sym_def] = ACTIONS(6274), + [anon_sym_export_DASHenv] = ACTIONS(6274), + [anon_sym_extern] = ACTIONS(6274), + [anon_sym_module] = ACTIONS(6274), + [anon_sym_use] = ACTIONS(6274), + [anon_sym_LBRACK] = ACTIONS(6274), + [anon_sym_LPAREN] = ACTIONS(6274), + [anon_sym_DOLLAR] = ACTIONS(6274), + [anon_sym_error] = ACTIONS(6274), + [anon_sym_DASH] = ACTIONS(6274), + [anon_sym_break] = ACTIONS(6274), + [anon_sym_continue] = ACTIONS(6274), + [anon_sym_for] = ACTIONS(6274), + [anon_sym_loop] = ACTIONS(6274), + [anon_sym_while] = ACTIONS(6274), + [anon_sym_do] = ACTIONS(6274), + [anon_sym_if] = ACTIONS(6274), + [anon_sym_match] = ACTIONS(6274), + [anon_sym_LBRACE] = ACTIONS(6274), + [anon_sym_DOT_DOT] = ACTIONS(6274), + [anon_sym_try] = ACTIONS(6274), + [anon_sym_return] = ACTIONS(6274), + [anon_sym_source] = ACTIONS(6274), + [anon_sym_source_DASHenv] = ACTIONS(6274), + [anon_sym_register] = ACTIONS(6274), + [anon_sym_hide] = ACTIONS(6274), + [anon_sym_hide_DASHenv] = ACTIONS(6274), + [anon_sym_overlay] = ACTIONS(6274), + [anon_sym_where] = ACTIONS(6274), + [anon_sym_not] = ACTIONS(6274), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6274), + [anon_sym_DOT_DOT_LT] = ACTIONS(6274), + [anon_sym_null] = ACTIONS(6274), + [anon_sym_true] = ACTIONS(6274), + [anon_sym_false] = ACTIONS(6274), + [aux_sym__val_number_decimal_token1] = ACTIONS(6274), + [aux_sym__val_number_decimal_token2] = ACTIONS(6274), + [anon_sym_DOT2] = ACTIONS(6274), + [aux_sym__val_number_decimal_token3] = ACTIONS(6274), + [aux_sym__val_number_token1] = ACTIONS(6274), + [aux_sym__val_number_token2] = ACTIONS(6274), + [aux_sym__val_number_token3] = ACTIONS(6274), + [aux_sym__val_number_token4] = ACTIONS(6274), + [aux_sym__val_number_token5] = ACTIONS(6274), + [aux_sym__val_number_token6] = ACTIONS(6274), + [anon_sym_0b] = ACTIONS(6274), + [anon_sym_0o] = ACTIONS(6274), + [anon_sym_0x] = ACTIONS(6274), + [sym_val_date] = ACTIONS(6274), + [anon_sym_DQUOTE] = ACTIONS(6274), + [sym__str_single_quotes] = ACTIONS(6274), + [sym__str_back_ticks] = ACTIONS(6274), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6274), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6274), + [anon_sym_CARET] = ACTIONS(6274), + [anon_sym_POUND] = ACTIONS(113), }, - [2150] = { - [sym_expr_unary] = STATE(6084), - [sym__expr_unary_minus] = STATE(6242), - [sym_expr_binary] = STATE(6084), - [sym__expr_binary_expression] = STATE(5969), - [sym_expr_parenthesized] = STATE(6084), - [sym__val_range] = STATE(10678), - [sym__value] = STATE(6084), - [sym_val_nothing] = STATE(6075), - [sym_val_bool] = STATE(5936), - [sym_val_variable] = STATE(6075), - [sym__var] = STATE(5266), - [sym_val_number] = STATE(6075), - [sym__val_number_decimal] = STATE(4509), - [sym__val_number] = STATE(6146), - [sym_val_duration] = STATE(6075), - [sym_val_filesize] = STATE(6075), - [sym_val_binary] = STATE(6075), - [sym_val_string] = STATE(6075), - [sym__str_double_quotes] = STATE(6198), - [sym_val_interpolated] = STATE(6075), - [sym__inter_single_quotes] = STATE(6204), - [sym__inter_double_quotes] = STATE(6205), - [sym_val_list] = STATE(6075), - [sym_val_record] = STATE(6075), - [sym_val_table] = STATE(6075), - [sym_val_closure] = STATE(6075), - [sym_unquoted] = STATE(6098), - [sym__unquoted_anonymous_prefix] = STATE(10797), - [sym_comment] = STATE(2150), - [anon_sym_LBRACK] = ACTIONS(4901), - [anon_sym_LPAREN] = ACTIONS(5773), - [anon_sym_DOLLAR] = ACTIONS(5775), - [anon_sym_DASH] = ACTIONS(4907), - [anon_sym_LBRACE] = ACTIONS(4909), - [anon_sym_DOT_DOT] = ACTIONS(5777), - [anon_sym_not] = ACTIONS(4913), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5779), - [anon_sym_DOT_DOT_LT] = ACTIONS(5779), - [anon_sym_null] = ACTIONS(4917), - [anon_sym_true] = ACTIONS(4919), - [anon_sym_false] = ACTIONS(4919), - [aux_sym__val_number_decimal_token1] = ACTIONS(4921), - [aux_sym__val_number_decimal_token2] = ACTIONS(4923), - [anon_sym_DOT2] = ACTIONS(5781), - [aux_sym__val_number_decimal_token3] = ACTIONS(4927), - [aux_sym__val_number_token1] = ACTIONS(4929), - [aux_sym__val_number_token2] = ACTIONS(4929), - [aux_sym__val_number_token3] = ACTIONS(4929), - [aux_sym__val_number_token4] = ACTIONS(5783), - [aux_sym__val_number_token5] = ACTIONS(5783), - [aux_sym__val_number_token6] = ACTIONS(5783), - [anon_sym_0b] = ACTIONS(4933), - [anon_sym_0o] = ACTIONS(4935), - [anon_sym_0x] = ACTIONS(4935), - [sym_val_date] = ACTIONS(4937), - [anon_sym_DQUOTE] = ACTIONS(4939), - [sym__str_single_quotes] = ACTIONS(4941), - [sym__str_back_ticks] = ACTIONS(4941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4943), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4945), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5785), - [anon_sym_POUND] = ACTIONS(3), + [2424] = { + [sym_comment] = STATE(2424), + [ts_builtin_sym_end] = ACTIONS(5938), + [anon_sym_export] = ACTIONS(5936), + [anon_sym_alias] = ACTIONS(5936), + [anon_sym_let] = ACTIONS(5936), + [anon_sym_let_DASHenv] = ACTIONS(5936), + [anon_sym_mut] = ACTIONS(5936), + [anon_sym_const] = ACTIONS(5936), + [anon_sym_SEMI] = ACTIONS(5936), + [sym_cmd_identifier] = ACTIONS(5936), + [anon_sym_LF] = ACTIONS(5938), + [anon_sym_def] = ACTIONS(5936), + [anon_sym_export_DASHenv] = ACTIONS(5936), + [anon_sym_extern] = ACTIONS(5936), + [anon_sym_module] = ACTIONS(5936), + [anon_sym_use] = ACTIONS(5936), + [anon_sym_LBRACK] = ACTIONS(5936), + [anon_sym_LPAREN] = ACTIONS(5936), + [anon_sym_DOLLAR] = ACTIONS(5936), + [anon_sym_error] = ACTIONS(5936), + [anon_sym_DASH] = ACTIONS(5936), + [anon_sym_break] = ACTIONS(5936), + [anon_sym_continue] = ACTIONS(5936), + [anon_sym_for] = ACTIONS(5936), + [anon_sym_loop] = ACTIONS(5936), + [anon_sym_while] = ACTIONS(5936), + [anon_sym_do] = ACTIONS(5936), + [anon_sym_if] = ACTIONS(5936), + [anon_sym_match] = ACTIONS(5936), + [anon_sym_LBRACE] = ACTIONS(5936), + [anon_sym_DOT_DOT] = ACTIONS(5936), + [anon_sym_try] = ACTIONS(5936), + [anon_sym_return] = ACTIONS(5936), + [anon_sym_source] = ACTIONS(5936), + [anon_sym_source_DASHenv] = ACTIONS(5936), + [anon_sym_register] = ACTIONS(5936), + [anon_sym_hide] = ACTIONS(5936), + [anon_sym_hide_DASHenv] = ACTIONS(5936), + [anon_sym_overlay] = ACTIONS(5936), + [anon_sym_where] = ACTIONS(5936), + [anon_sym_not] = ACTIONS(5936), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5936), + [anon_sym_DOT_DOT_LT] = ACTIONS(5936), + [anon_sym_null] = ACTIONS(5936), + [anon_sym_true] = ACTIONS(5936), + [anon_sym_false] = ACTIONS(5936), + [aux_sym__val_number_decimal_token1] = ACTIONS(5936), + [aux_sym__val_number_decimal_token2] = ACTIONS(5936), + [anon_sym_DOT2] = ACTIONS(5936), + [aux_sym__val_number_decimal_token3] = ACTIONS(5936), + [aux_sym__val_number_token1] = ACTIONS(5936), + [aux_sym__val_number_token2] = ACTIONS(5936), + [aux_sym__val_number_token3] = ACTIONS(5936), + [aux_sym__val_number_token4] = ACTIONS(5936), + [aux_sym__val_number_token5] = ACTIONS(5936), + [aux_sym__val_number_token6] = ACTIONS(5936), + [anon_sym_0b] = ACTIONS(5936), + [anon_sym_0o] = ACTIONS(5936), + [anon_sym_0x] = ACTIONS(5936), + [sym_val_date] = ACTIONS(5936), + [anon_sym_DQUOTE] = ACTIONS(5936), + [sym__str_single_quotes] = ACTIONS(5936), + [sym__str_back_ticks] = ACTIONS(5936), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5936), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5936), + [anon_sym_CARET] = ACTIONS(5936), + [anon_sym_POUND] = ACTIONS(113), }, - [2151] = { - [sym_expr_unary] = STATE(6084), - [sym__expr_unary_minus] = STATE(6242), - [sym_expr_binary] = STATE(6084), - [sym__expr_binary_expression] = STATE(5971), - [sym_expr_parenthesized] = STATE(6084), - [sym__val_range] = STATE(10678), - [sym__value] = STATE(6084), - [sym_val_nothing] = STATE(6075), - [sym_val_bool] = STATE(5936), - [sym_val_variable] = STATE(6075), - [sym__var] = STATE(5266), - [sym_val_number] = STATE(6075), - [sym__val_number_decimal] = STATE(4509), - [sym__val_number] = STATE(6146), - [sym_val_duration] = STATE(6075), - [sym_val_filesize] = STATE(6075), - [sym_val_binary] = STATE(6075), - [sym_val_string] = STATE(6075), - [sym__str_double_quotes] = STATE(6198), - [sym_val_interpolated] = STATE(6075), - [sym__inter_single_quotes] = STATE(6204), - [sym__inter_double_quotes] = STATE(6205), - [sym_val_list] = STATE(6075), - [sym_val_record] = STATE(6075), - [sym_val_table] = STATE(6075), - [sym_val_closure] = STATE(6075), - [sym_unquoted] = STATE(6099), - [sym__unquoted_anonymous_prefix] = STATE(10797), - [sym_comment] = STATE(2151), - [anon_sym_LBRACK] = ACTIONS(4901), - [anon_sym_LPAREN] = ACTIONS(5773), - [anon_sym_DOLLAR] = ACTIONS(5775), - [anon_sym_DASH] = ACTIONS(4907), - [anon_sym_LBRACE] = ACTIONS(4909), - [anon_sym_DOT_DOT] = ACTIONS(5777), - [anon_sym_not] = ACTIONS(4913), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5779), - [anon_sym_DOT_DOT_LT] = ACTIONS(5779), - [anon_sym_null] = ACTIONS(4917), - [anon_sym_true] = ACTIONS(4919), - [anon_sym_false] = ACTIONS(4919), - [aux_sym__val_number_decimal_token1] = ACTIONS(4921), - [aux_sym__val_number_decimal_token2] = ACTIONS(4923), - [anon_sym_DOT2] = ACTIONS(5781), - [aux_sym__val_number_decimal_token3] = ACTIONS(4927), - [aux_sym__val_number_token1] = ACTIONS(4929), - [aux_sym__val_number_token2] = ACTIONS(4929), - [aux_sym__val_number_token3] = ACTIONS(4929), - [aux_sym__val_number_token4] = ACTIONS(5783), - [aux_sym__val_number_token5] = ACTIONS(5783), - [aux_sym__val_number_token6] = ACTIONS(5783), - [anon_sym_0b] = ACTIONS(4933), - [anon_sym_0o] = ACTIONS(4935), - [anon_sym_0x] = ACTIONS(4935), - [sym_val_date] = ACTIONS(4937), - [anon_sym_DQUOTE] = ACTIONS(4939), - [sym__str_single_quotes] = ACTIONS(4941), - [sym__str_back_ticks] = ACTIONS(4941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4943), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4945), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5785), - [anon_sym_POUND] = ACTIONS(3), + [2425] = { + [sym_comment] = STATE(2425), + [ts_builtin_sym_end] = ACTIONS(6314), + [anon_sym_export] = ACTIONS(6262), + [anon_sym_alias] = ACTIONS(6262), + [anon_sym_let] = ACTIONS(6262), + [anon_sym_let_DASHenv] = ACTIONS(6262), + [anon_sym_mut] = ACTIONS(6262), + [anon_sym_const] = ACTIONS(6262), + [anon_sym_SEMI] = ACTIONS(6264), + [sym_cmd_identifier] = ACTIONS(6262), + [anon_sym_LF] = ACTIONS(6267), + [anon_sym_def] = ACTIONS(6262), + [anon_sym_export_DASHenv] = ACTIONS(6262), + [anon_sym_extern] = ACTIONS(6262), + [anon_sym_module] = ACTIONS(6262), + [anon_sym_use] = ACTIONS(6262), + [anon_sym_LBRACK] = ACTIONS(6262), + [anon_sym_LPAREN] = ACTIONS(6262), + [anon_sym_DOLLAR] = ACTIONS(6262), + [anon_sym_error] = ACTIONS(6262), + [anon_sym_DASH] = ACTIONS(6262), + [anon_sym_break] = ACTIONS(6262), + [anon_sym_continue] = ACTIONS(6262), + [anon_sym_for] = ACTIONS(6262), + [anon_sym_loop] = ACTIONS(6262), + [anon_sym_while] = ACTIONS(6262), + [anon_sym_do] = ACTIONS(6262), + [anon_sym_if] = ACTIONS(6262), + [anon_sym_match] = ACTIONS(6262), + [anon_sym_LBRACE] = ACTIONS(6262), + [anon_sym_DOT_DOT] = ACTIONS(6262), + [anon_sym_try] = ACTIONS(6262), + [anon_sym_return] = ACTIONS(6262), + [anon_sym_source] = ACTIONS(6262), + [anon_sym_source_DASHenv] = ACTIONS(6262), + [anon_sym_register] = ACTIONS(6262), + [anon_sym_hide] = ACTIONS(6262), + [anon_sym_hide_DASHenv] = ACTIONS(6262), + [anon_sym_overlay] = ACTIONS(6262), + [anon_sym_where] = ACTIONS(6262), + [anon_sym_not] = ACTIONS(6262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6262), + [anon_sym_DOT_DOT_LT] = ACTIONS(6262), + [anon_sym_null] = ACTIONS(6262), + [anon_sym_true] = ACTIONS(6262), + [anon_sym_false] = ACTIONS(6262), + [aux_sym__val_number_decimal_token1] = ACTIONS(6262), + [aux_sym__val_number_decimal_token2] = ACTIONS(6262), + [anon_sym_DOT2] = ACTIONS(6262), + [aux_sym__val_number_decimal_token3] = ACTIONS(6262), + [aux_sym__val_number_token1] = ACTIONS(6262), + [aux_sym__val_number_token2] = ACTIONS(6262), + [aux_sym__val_number_token3] = ACTIONS(6262), + [aux_sym__val_number_token4] = ACTIONS(6262), + [aux_sym__val_number_token5] = ACTIONS(6262), + [aux_sym__val_number_token6] = ACTIONS(6262), + [anon_sym_0b] = ACTIONS(6262), + [anon_sym_0o] = ACTIONS(6262), + [anon_sym_0x] = ACTIONS(6262), + [sym_val_date] = ACTIONS(6262), + [anon_sym_DQUOTE] = ACTIONS(6262), + [sym__str_single_quotes] = ACTIONS(6262), + [sym__str_back_ticks] = ACTIONS(6262), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6262), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6262), + [anon_sym_CARET] = ACTIONS(6262), + [anon_sym_POUND] = ACTIONS(113), }, - [2152] = { - [sym_expr_unary] = STATE(6084), - [sym__expr_unary_minus] = STATE(6242), - [sym_expr_binary] = STATE(6084), - [sym__expr_binary_expression] = STATE(5972), - [sym_expr_parenthesized] = STATE(6084), - [sym__val_range] = STATE(10678), - [sym__value] = STATE(6084), - [sym_val_nothing] = STATE(6075), - [sym_val_bool] = STATE(5936), - [sym_val_variable] = STATE(6075), - [sym__var] = STATE(5266), - [sym_val_number] = STATE(6075), - [sym__val_number_decimal] = STATE(4509), - [sym__val_number] = STATE(6146), - [sym_val_duration] = STATE(6075), - [sym_val_filesize] = STATE(6075), - [sym_val_binary] = STATE(6075), - [sym_val_string] = STATE(6075), - [sym__str_double_quotes] = STATE(6198), - [sym_val_interpolated] = STATE(6075), - [sym__inter_single_quotes] = STATE(6204), - [sym__inter_double_quotes] = STATE(6205), - [sym_val_list] = STATE(6075), - [sym_val_record] = STATE(6075), - [sym_val_table] = STATE(6075), - [sym_val_closure] = STATE(6075), - [sym_unquoted] = STATE(6102), - [sym__unquoted_anonymous_prefix] = STATE(10797), - [sym_comment] = STATE(2152), - [anon_sym_LBRACK] = ACTIONS(4901), - [anon_sym_LPAREN] = ACTIONS(5773), - [anon_sym_DOLLAR] = ACTIONS(5775), - [anon_sym_DASH] = ACTIONS(4907), - [anon_sym_LBRACE] = ACTIONS(4909), - [anon_sym_DOT_DOT] = ACTIONS(5777), - [anon_sym_not] = ACTIONS(4913), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5779), - [anon_sym_DOT_DOT_LT] = ACTIONS(5779), - [anon_sym_null] = ACTIONS(4917), - [anon_sym_true] = ACTIONS(4919), - [anon_sym_false] = ACTIONS(4919), - [aux_sym__val_number_decimal_token1] = ACTIONS(4921), - [aux_sym__val_number_decimal_token2] = ACTIONS(4923), - [anon_sym_DOT2] = ACTIONS(5781), - [aux_sym__val_number_decimal_token3] = ACTIONS(4927), - [aux_sym__val_number_token1] = ACTIONS(4929), - [aux_sym__val_number_token2] = ACTIONS(4929), - [aux_sym__val_number_token3] = ACTIONS(4929), - [aux_sym__val_number_token4] = ACTIONS(5783), - [aux_sym__val_number_token5] = ACTIONS(5783), - [aux_sym__val_number_token6] = ACTIONS(5783), - [anon_sym_0b] = ACTIONS(4933), - [anon_sym_0o] = ACTIONS(4935), - [anon_sym_0x] = ACTIONS(4935), - [sym_val_date] = ACTIONS(4937), - [anon_sym_DQUOTE] = ACTIONS(4939), - [sym__str_single_quotes] = ACTIONS(4941), - [sym__str_back_ticks] = ACTIONS(4941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4943), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4945), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5785), - [anon_sym_POUND] = ACTIONS(3), + [2426] = { + [sym_comment] = STATE(2426), + [ts_builtin_sym_end] = ACTIONS(6068), + [anon_sym_export] = ACTIONS(6066), + [anon_sym_alias] = ACTIONS(6066), + [anon_sym_let] = ACTIONS(6066), + [anon_sym_let_DASHenv] = ACTIONS(6066), + [anon_sym_mut] = ACTIONS(6066), + [anon_sym_const] = ACTIONS(6066), + [anon_sym_SEMI] = ACTIONS(6066), + [sym_cmd_identifier] = ACTIONS(6066), + [anon_sym_LF] = ACTIONS(6068), + [anon_sym_def] = ACTIONS(6066), + [anon_sym_export_DASHenv] = ACTIONS(6066), + [anon_sym_extern] = ACTIONS(6066), + [anon_sym_module] = ACTIONS(6066), + [anon_sym_use] = ACTIONS(6066), + [anon_sym_LBRACK] = ACTIONS(6066), + [anon_sym_LPAREN] = ACTIONS(6066), + [anon_sym_DOLLAR] = ACTIONS(6066), + [anon_sym_error] = ACTIONS(6066), + [anon_sym_DASH] = ACTIONS(6066), + [anon_sym_break] = ACTIONS(6066), + [anon_sym_continue] = ACTIONS(6066), + [anon_sym_for] = ACTIONS(6066), + [anon_sym_loop] = ACTIONS(6066), + [anon_sym_while] = ACTIONS(6066), + [anon_sym_do] = ACTIONS(6066), + [anon_sym_if] = ACTIONS(6066), + [anon_sym_match] = ACTIONS(6066), + [anon_sym_LBRACE] = ACTIONS(6066), + [anon_sym_DOT_DOT] = ACTIONS(6066), + [anon_sym_try] = ACTIONS(6066), + [anon_sym_return] = ACTIONS(6066), + [anon_sym_source] = ACTIONS(6066), + [anon_sym_source_DASHenv] = ACTIONS(6066), + [anon_sym_register] = ACTIONS(6066), + [anon_sym_hide] = ACTIONS(6066), + [anon_sym_hide_DASHenv] = ACTIONS(6066), + [anon_sym_overlay] = ACTIONS(6066), + [anon_sym_where] = ACTIONS(6066), + [anon_sym_not] = ACTIONS(6066), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6066), + [anon_sym_DOT_DOT_LT] = ACTIONS(6066), + [anon_sym_null] = ACTIONS(6066), + [anon_sym_true] = ACTIONS(6066), + [anon_sym_false] = ACTIONS(6066), + [aux_sym__val_number_decimal_token1] = ACTIONS(6066), + [aux_sym__val_number_decimal_token2] = ACTIONS(6066), + [anon_sym_DOT2] = ACTIONS(6066), + [aux_sym__val_number_decimal_token3] = ACTIONS(6066), + [aux_sym__val_number_token1] = ACTIONS(6066), + [aux_sym__val_number_token2] = ACTIONS(6066), + [aux_sym__val_number_token3] = ACTIONS(6066), + [aux_sym__val_number_token4] = ACTIONS(6066), + [aux_sym__val_number_token5] = ACTIONS(6066), + [aux_sym__val_number_token6] = ACTIONS(6066), + [anon_sym_0b] = ACTIONS(6066), + [anon_sym_0o] = ACTIONS(6066), + [anon_sym_0x] = ACTIONS(6066), + [sym_val_date] = ACTIONS(6066), + [anon_sym_DQUOTE] = ACTIONS(6066), + [sym__str_single_quotes] = ACTIONS(6066), + [sym__str_back_ticks] = ACTIONS(6066), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6066), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6066), + [anon_sym_CARET] = ACTIONS(6066), + [anon_sym_POUND] = ACTIONS(113), }, - [2153] = { - [sym_expr_unary] = STATE(6084), - [sym__expr_unary_minus] = STATE(6242), - [sym_expr_binary] = STATE(6084), - [sym__expr_binary_expression] = STATE(6287), - [sym_expr_parenthesized] = STATE(6084), - [sym__val_range] = STATE(10678), - [sym__value] = STATE(6084), - [sym_val_nothing] = STATE(6075), - [sym_val_bool] = STATE(5936), - [sym_val_variable] = STATE(6075), - [sym__var] = STATE(5266), - [sym_val_number] = STATE(6075), - [sym__val_number_decimal] = STATE(4509), - [sym__val_number] = STATE(6146), - [sym_val_duration] = STATE(6075), - [sym_val_filesize] = STATE(6075), - [sym_val_binary] = STATE(6075), - [sym_val_string] = STATE(6075), - [sym__str_double_quotes] = STATE(6198), - [sym_val_interpolated] = STATE(6075), - [sym__inter_single_quotes] = STATE(6204), - [sym__inter_double_quotes] = STATE(6205), - [sym_val_list] = STATE(6075), - [sym_val_record] = STATE(6075), - [sym_val_table] = STATE(6075), - [sym_val_closure] = STATE(6075), - [sym_unquoted] = STATE(6114), - [sym__unquoted_anonymous_prefix] = STATE(10797), - [sym_comment] = STATE(2153), - [anon_sym_LBRACK] = ACTIONS(4901), - [anon_sym_LPAREN] = ACTIONS(5773), - [anon_sym_DOLLAR] = ACTIONS(5775), - [anon_sym_DASH] = ACTIONS(4907), - [anon_sym_LBRACE] = ACTIONS(4909), - [anon_sym_DOT_DOT] = ACTIONS(5777), - [anon_sym_not] = ACTIONS(4913), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5779), - [anon_sym_DOT_DOT_LT] = ACTIONS(5779), - [anon_sym_null] = ACTIONS(4917), - [anon_sym_true] = ACTIONS(4919), - [anon_sym_false] = ACTIONS(4919), - [aux_sym__val_number_decimal_token1] = ACTIONS(4921), - [aux_sym__val_number_decimal_token2] = ACTIONS(4923), - [anon_sym_DOT2] = ACTIONS(5781), - [aux_sym__val_number_decimal_token3] = ACTIONS(4927), - [aux_sym__val_number_token1] = ACTIONS(4929), - [aux_sym__val_number_token2] = ACTIONS(4929), - [aux_sym__val_number_token3] = ACTIONS(4929), - [aux_sym__val_number_token4] = ACTIONS(5783), - [aux_sym__val_number_token5] = ACTIONS(5783), - [aux_sym__val_number_token6] = ACTIONS(5783), - [anon_sym_0b] = ACTIONS(4933), - [anon_sym_0o] = ACTIONS(4935), - [anon_sym_0x] = ACTIONS(4935), - [sym_val_date] = ACTIONS(4937), - [anon_sym_DQUOTE] = ACTIONS(4939), - [sym__str_single_quotes] = ACTIONS(4941), - [sym__str_back_ticks] = ACTIONS(4941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4943), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4945), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5785), - [anon_sym_POUND] = ACTIONS(3), + [2427] = { + [sym_comment] = STATE(2427), + [ts_builtin_sym_end] = ACTIONS(6288), + [anon_sym_export] = ACTIONS(6286), + [anon_sym_alias] = ACTIONS(6286), + [anon_sym_let] = ACTIONS(6286), + [anon_sym_let_DASHenv] = ACTIONS(6286), + [anon_sym_mut] = ACTIONS(6286), + [anon_sym_const] = ACTIONS(6286), + [anon_sym_SEMI] = ACTIONS(6286), + [sym_cmd_identifier] = ACTIONS(6286), + [anon_sym_LF] = ACTIONS(6288), + [anon_sym_def] = ACTIONS(6286), + [anon_sym_export_DASHenv] = ACTIONS(6286), + [anon_sym_extern] = ACTIONS(6286), + [anon_sym_module] = ACTIONS(6286), + [anon_sym_use] = ACTIONS(6286), + [anon_sym_LBRACK] = ACTIONS(6286), + [anon_sym_LPAREN] = ACTIONS(6286), + [anon_sym_DOLLAR] = ACTIONS(6286), + [anon_sym_error] = ACTIONS(6286), + [anon_sym_DASH] = ACTIONS(6286), + [anon_sym_break] = ACTIONS(6286), + [anon_sym_continue] = ACTIONS(6286), + [anon_sym_for] = ACTIONS(6286), + [anon_sym_loop] = ACTIONS(6286), + [anon_sym_while] = ACTIONS(6286), + [anon_sym_do] = ACTIONS(6286), + [anon_sym_if] = ACTIONS(6286), + [anon_sym_match] = ACTIONS(6286), + [anon_sym_LBRACE] = ACTIONS(6286), + [anon_sym_DOT_DOT] = ACTIONS(6286), + [anon_sym_try] = ACTIONS(6286), + [anon_sym_return] = ACTIONS(6286), + [anon_sym_source] = ACTIONS(6286), + [anon_sym_source_DASHenv] = ACTIONS(6286), + [anon_sym_register] = ACTIONS(6286), + [anon_sym_hide] = ACTIONS(6286), + [anon_sym_hide_DASHenv] = ACTIONS(6286), + [anon_sym_overlay] = ACTIONS(6286), + [anon_sym_where] = ACTIONS(6286), + [anon_sym_not] = ACTIONS(6286), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6286), + [anon_sym_DOT_DOT_LT] = ACTIONS(6286), + [anon_sym_null] = ACTIONS(6286), + [anon_sym_true] = ACTIONS(6286), + [anon_sym_false] = ACTIONS(6286), + [aux_sym__val_number_decimal_token1] = ACTIONS(6286), + [aux_sym__val_number_decimal_token2] = ACTIONS(6286), + [anon_sym_DOT2] = ACTIONS(6286), + [aux_sym__val_number_decimal_token3] = ACTIONS(6286), + [aux_sym__val_number_token1] = ACTIONS(6286), + [aux_sym__val_number_token2] = ACTIONS(6286), + [aux_sym__val_number_token3] = ACTIONS(6286), + [aux_sym__val_number_token4] = ACTIONS(6286), + [aux_sym__val_number_token5] = ACTIONS(6286), + [aux_sym__val_number_token6] = ACTIONS(6286), + [anon_sym_0b] = ACTIONS(6286), + [anon_sym_0o] = ACTIONS(6286), + [anon_sym_0x] = ACTIONS(6286), + [sym_val_date] = ACTIONS(6286), + [anon_sym_DQUOTE] = ACTIONS(6286), + [sym__str_single_quotes] = ACTIONS(6286), + [sym__str_back_ticks] = ACTIONS(6286), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6286), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6286), + [anon_sym_CARET] = ACTIONS(6286), + [anon_sym_POUND] = ACTIONS(113), }, - [2154] = { - [sym_expr_unary] = STATE(6084), - [sym__expr_unary_minus] = STATE(6242), - [sym_expr_binary] = STATE(6084), - [sym__expr_binary_expression] = STATE(5973), - [sym_expr_parenthesized] = STATE(6084), - [sym__val_range] = STATE(10678), - [sym__value] = STATE(6084), - [sym_val_nothing] = STATE(6075), - [sym_val_bool] = STATE(5936), - [sym_val_variable] = STATE(6075), - [sym__var] = STATE(5266), - [sym_val_number] = STATE(6075), - [sym__val_number_decimal] = STATE(4509), - [sym__val_number] = STATE(6146), - [sym_val_duration] = STATE(6075), - [sym_val_filesize] = STATE(6075), - [sym_val_binary] = STATE(6075), - [sym_val_string] = STATE(6075), - [sym__str_double_quotes] = STATE(6198), - [sym_val_interpolated] = STATE(6075), - [sym__inter_single_quotes] = STATE(6204), - [sym__inter_double_quotes] = STATE(6205), - [sym_val_list] = STATE(6075), - [sym_val_record] = STATE(6075), - [sym_val_table] = STATE(6075), - [sym_val_closure] = STATE(6075), - [sym_unquoted] = STATE(6117), - [sym__unquoted_anonymous_prefix] = STATE(10797), - [sym_comment] = STATE(2154), - [anon_sym_LBRACK] = ACTIONS(4901), - [anon_sym_LPAREN] = ACTIONS(5773), - [anon_sym_DOLLAR] = ACTIONS(5775), - [anon_sym_DASH] = ACTIONS(4907), - [anon_sym_LBRACE] = ACTIONS(4909), - [anon_sym_DOT_DOT] = ACTIONS(5777), - [anon_sym_not] = ACTIONS(4913), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5779), - [anon_sym_DOT_DOT_LT] = ACTIONS(5779), - [anon_sym_null] = ACTIONS(4917), - [anon_sym_true] = ACTIONS(4919), - [anon_sym_false] = ACTIONS(4919), - [aux_sym__val_number_decimal_token1] = ACTIONS(4921), - [aux_sym__val_number_decimal_token2] = ACTIONS(4923), - [anon_sym_DOT2] = ACTIONS(5781), - [aux_sym__val_number_decimal_token3] = ACTIONS(4927), - [aux_sym__val_number_token1] = ACTIONS(4929), - [aux_sym__val_number_token2] = ACTIONS(4929), - [aux_sym__val_number_token3] = ACTIONS(4929), - [aux_sym__val_number_token4] = ACTIONS(5783), - [aux_sym__val_number_token5] = ACTIONS(5783), - [aux_sym__val_number_token6] = ACTIONS(5783), - [anon_sym_0b] = ACTIONS(4933), - [anon_sym_0o] = ACTIONS(4935), - [anon_sym_0x] = ACTIONS(4935), - [sym_val_date] = ACTIONS(4937), - [anon_sym_DQUOTE] = ACTIONS(4939), - [sym__str_single_quotes] = ACTIONS(4941), - [sym__str_back_ticks] = ACTIONS(4941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4943), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4945), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5785), - [anon_sym_POUND] = ACTIONS(3), + [2428] = { + [sym_comment] = STATE(2428), + [ts_builtin_sym_end] = ACTIONS(6316), + [anon_sym_export] = ACTIONS(6094), + [anon_sym_alias] = ACTIONS(6094), + [anon_sym_let] = ACTIONS(6094), + [anon_sym_let_DASHenv] = ACTIONS(6094), + [anon_sym_mut] = ACTIONS(6094), + [anon_sym_const] = ACTIONS(6094), + [anon_sym_SEMI] = ACTIONS(6096), + [sym_cmd_identifier] = ACTIONS(6094), + [anon_sym_LF] = ACTIONS(6099), + [anon_sym_def] = ACTIONS(6094), + [anon_sym_export_DASHenv] = ACTIONS(6094), + [anon_sym_extern] = ACTIONS(6094), + [anon_sym_module] = ACTIONS(6094), + [anon_sym_use] = ACTIONS(6094), + [anon_sym_LBRACK] = ACTIONS(6094), + [anon_sym_LPAREN] = ACTIONS(6094), + [anon_sym_DOLLAR] = ACTIONS(6094), + [anon_sym_error] = ACTIONS(6094), + [anon_sym_DASH] = ACTIONS(6094), + [anon_sym_break] = ACTIONS(6094), + [anon_sym_continue] = ACTIONS(6094), + [anon_sym_for] = ACTIONS(6094), + [anon_sym_loop] = ACTIONS(6094), + [anon_sym_while] = ACTIONS(6094), + [anon_sym_do] = ACTIONS(6094), + [anon_sym_if] = ACTIONS(6094), + [anon_sym_match] = ACTIONS(6094), + [anon_sym_LBRACE] = ACTIONS(6094), + [anon_sym_DOT_DOT] = ACTIONS(6094), + [anon_sym_try] = ACTIONS(6094), + [anon_sym_return] = ACTIONS(6094), + [anon_sym_source] = ACTIONS(6094), + [anon_sym_source_DASHenv] = ACTIONS(6094), + [anon_sym_register] = ACTIONS(6094), + [anon_sym_hide] = ACTIONS(6094), + [anon_sym_hide_DASHenv] = ACTIONS(6094), + [anon_sym_overlay] = ACTIONS(6094), + [anon_sym_where] = ACTIONS(6094), + [anon_sym_not] = ACTIONS(6094), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6094), + [anon_sym_DOT_DOT_LT] = ACTIONS(6094), + [anon_sym_null] = ACTIONS(6094), + [anon_sym_true] = ACTIONS(6094), + [anon_sym_false] = ACTIONS(6094), + [aux_sym__val_number_decimal_token1] = ACTIONS(6094), + [aux_sym__val_number_decimal_token2] = ACTIONS(6094), + [anon_sym_DOT2] = ACTIONS(6094), + [aux_sym__val_number_decimal_token3] = ACTIONS(6094), + [aux_sym__val_number_token1] = ACTIONS(6094), + [aux_sym__val_number_token2] = ACTIONS(6094), + [aux_sym__val_number_token3] = ACTIONS(6094), + [aux_sym__val_number_token4] = ACTIONS(6094), + [aux_sym__val_number_token5] = ACTIONS(6094), + [aux_sym__val_number_token6] = ACTIONS(6094), + [anon_sym_0b] = ACTIONS(6094), + [anon_sym_0o] = ACTIONS(6094), + [anon_sym_0x] = ACTIONS(6094), + [sym_val_date] = ACTIONS(6094), + [anon_sym_DQUOTE] = ACTIONS(6094), + [sym__str_single_quotes] = ACTIONS(6094), + [sym__str_back_ticks] = ACTIONS(6094), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6094), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6094), + [anon_sym_CARET] = ACTIONS(6094), + [anon_sym_POUND] = ACTIONS(113), }, - [2155] = { - [sym_expr_unary] = STATE(6084), - [sym__expr_unary_minus] = STATE(6242), - [sym_expr_binary] = STATE(6084), - [sym__expr_binary_expression] = STATE(5974), - [sym_expr_parenthesized] = STATE(6084), - [sym__val_range] = STATE(10678), - [sym__value] = STATE(6084), - [sym_val_nothing] = STATE(6075), - [sym_val_bool] = STATE(5936), - [sym_val_variable] = STATE(6075), - [sym__var] = STATE(5266), - [sym_val_number] = STATE(6075), - [sym__val_number_decimal] = STATE(4509), - [sym__val_number] = STATE(6146), - [sym_val_duration] = STATE(6075), - [sym_val_filesize] = STATE(6075), - [sym_val_binary] = STATE(6075), - [sym_val_string] = STATE(6075), - [sym__str_double_quotes] = STATE(6198), - [sym_val_interpolated] = STATE(6075), - [sym__inter_single_quotes] = STATE(6204), - [sym__inter_double_quotes] = STATE(6205), - [sym_val_list] = STATE(6075), - [sym_val_record] = STATE(6075), - [sym_val_table] = STATE(6075), - [sym_val_closure] = STATE(6075), - [sym_unquoted] = STATE(6119), - [sym__unquoted_anonymous_prefix] = STATE(10797), - [sym_comment] = STATE(2155), - [anon_sym_LBRACK] = ACTIONS(4901), - [anon_sym_LPAREN] = ACTIONS(5773), - [anon_sym_DOLLAR] = ACTIONS(5775), - [anon_sym_DASH] = ACTIONS(4907), - [anon_sym_LBRACE] = ACTIONS(4909), - [anon_sym_DOT_DOT] = ACTIONS(5777), - [anon_sym_not] = ACTIONS(4913), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5779), - [anon_sym_DOT_DOT_LT] = ACTIONS(5779), - [anon_sym_null] = ACTIONS(4917), - [anon_sym_true] = ACTIONS(4919), - [anon_sym_false] = ACTIONS(4919), - [aux_sym__val_number_decimal_token1] = ACTIONS(4921), - [aux_sym__val_number_decimal_token2] = ACTIONS(4923), - [anon_sym_DOT2] = ACTIONS(5781), - [aux_sym__val_number_decimal_token3] = ACTIONS(4927), - [aux_sym__val_number_token1] = ACTIONS(4929), - [aux_sym__val_number_token2] = ACTIONS(4929), - [aux_sym__val_number_token3] = ACTIONS(4929), - [aux_sym__val_number_token4] = ACTIONS(5783), - [aux_sym__val_number_token5] = ACTIONS(5783), - [aux_sym__val_number_token6] = ACTIONS(5783), - [anon_sym_0b] = ACTIONS(4933), - [anon_sym_0o] = ACTIONS(4935), - [anon_sym_0x] = ACTIONS(4935), - [sym_val_date] = ACTIONS(4937), - [anon_sym_DQUOTE] = ACTIONS(4939), - [sym__str_single_quotes] = ACTIONS(4941), - [sym__str_back_ticks] = ACTIONS(4941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4943), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4945), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5785), - [anon_sym_POUND] = ACTIONS(3), + [2429] = { + [sym_comment] = STATE(2429), + [ts_builtin_sym_end] = ACTIONS(6260), + [anon_sym_export] = ACTIONS(6258), + [anon_sym_alias] = ACTIONS(6258), + [anon_sym_let] = ACTIONS(6258), + [anon_sym_let_DASHenv] = ACTIONS(6258), + [anon_sym_mut] = ACTIONS(6258), + [anon_sym_const] = ACTIONS(6258), + [anon_sym_SEMI] = ACTIONS(6258), + [sym_cmd_identifier] = ACTIONS(6258), + [anon_sym_LF] = ACTIONS(6260), + [anon_sym_def] = ACTIONS(6258), + [anon_sym_export_DASHenv] = ACTIONS(6258), + [anon_sym_extern] = ACTIONS(6258), + [anon_sym_module] = ACTIONS(6258), + [anon_sym_use] = ACTIONS(6258), + [anon_sym_LBRACK] = ACTIONS(6258), + [anon_sym_LPAREN] = ACTIONS(6258), + [anon_sym_DOLLAR] = ACTIONS(6258), + [anon_sym_error] = ACTIONS(6258), + [anon_sym_DASH] = ACTIONS(6258), + [anon_sym_break] = ACTIONS(6258), + [anon_sym_continue] = ACTIONS(6258), + [anon_sym_for] = ACTIONS(6258), + [anon_sym_loop] = ACTIONS(6258), + [anon_sym_while] = ACTIONS(6258), + [anon_sym_do] = ACTIONS(6258), + [anon_sym_if] = ACTIONS(6258), + [anon_sym_match] = ACTIONS(6258), + [anon_sym_LBRACE] = ACTIONS(6258), + [anon_sym_DOT_DOT] = ACTIONS(6258), + [anon_sym_try] = ACTIONS(6258), + [anon_sym_return] = ACTIONS(6258), + [anon_sym_source] = ACTIONS(6258), + [anon_sym_source_DASHenv] = ACTIONS(6258), + [anon_sym_register] = ACTIONS(6258), + [anon_sym_hide] = ACTIONS(6258), + [anon_sym_hide_DASHenv] = ACTIONS(6258), + [anon_sym_overlay] = ACTIONS(6258), + [anon_sym_where] = ACTIONS(6258), + [anon_sym_not] = ACTIONS(6258), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6258), + [anon_sym_DOT_DOT_LT] = ACTIONS(6258), + [anon_sym_null] = ACTIONS(6258), + [anon_sym_true] = ACTIONS(6258), + [anon_sym_false] = ACTIONS(6258), + [aux_sym__val_number_decimal_token1] = ACTIONS(6258), + [aux_sym__val_number_decimal_token2] = ACTIONS(6258), + [anon_sym_DOT2] = ACTIONS(6258), + [aux_sym__val_number_decimal_token3] = ACTIONS(6258), + [aux_sym__val_number_token1] = ACTIONS(6258), + [aux_sym__val_number_token2] = ACTIONS(6258), + [aux_sym__val_number_token3] = ACTIONS(6258), + [aux_sym__val_number_token4] = ACTIONS(6258), + [aux_sym__val_number_token5] = ACTIONS(6258), + [aux_sym__val_number_token6] = ACTIONS(6258), + [anon_sym_0b] = ACTIONS(6258), + [anon_sym_0o] = ACTIONS(6258), + [anon_sym_0x] = ACTIONS(6258), + [sym_val_date] = ACTIONS(6258), + [anon_sym_DQUOTE] = ACTIONS(6258), + [sym__str_single_quotes] = ACTIONS(6258), + [sym__str_back_ticks] = ACTIONS(6258), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6258), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6258), + [anon_sym_CARET] = ACTIONS(6258), + [anon_sym_POUND] = ACTIONS(113), }, - [2156] = { - [sym_expr_unary] = STATE(6084), - [sym__expr_unary_minus] = STATE(6242), - [sym_expr_binary] = STATE(6084), - [sym__expr_binary_expression] = STATE(5975), - [sym_expr_parenthesized] = STATE(6084), - [sym__val_range] = STATE(10678), - [sym__value] = STATE(6084), - [sym_val_nothing] = STATE(6075), - [sym_val_bool] = STATE(5936), - [sym_val_variable] = STATE(6075), - [sym__var] = STATE(5266), - [sym_val_number] = STATE(6075), - [sym__val_number_decimal] = STATE(4509), - [sym__val_number] = STATE(6146), - [sym_val_duration] = STATE(6075), - [sym_val_filesize] = STATE(6075), - [sym_val_binary] = STATE(6075), - [sym_val_string] = STATE(6075), - [sym__str_double_quotes] = STATE(6198), - [sym_val_interpolated] = STATE(6075), - [sym__inter_single_quotes] = STATE(6204), - [sym__inter_double_quotes] = STATE(6205), - [sym_val_list] = STATE(6075), - [sym_val_record] = STATE(6075), - [sym_val_table] = STATE(6075), - [sym_val_closure] = STATE(6075), - [sym_unquoted] = STATE(6123), - [sym__unquoted_anonymous_prefix] = STATE(10797), - [sym_comment] = STATE(2156), - [anon_sym_LBRACK] = ACTIONS(4901), - [anon_sym_LPAREN] = ACTIONS(5773), - [anon_sym_DOLLAR] = ACTIONS(5775), - [anon_sym_DASH] = ACTIONS(4907), - [anon_sym_LBRACE] = ACTIONS(4909), - [anon_sym_DOT_DOT] = ACTIONS(5777), - [anon_sym_not] = ACTIONS(4913), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5779), - [anon_sym_DOT_DOT_LT] = ACTIONS(5779), - [anon_sym_null] = ACTIONS(4917), - [anon_sym_true] = ACTIONS(4919), - [anon_sym_false] = ACTIONS(4919), - [aux_sym__val_number_decimal_token1] = ACTIONS(4921), - [aux_sym__val_number_decimal_token2] = ACTIONS(4923), - [anon_sym_DOT2] = ACTIONS(5781), - [aux_sym__val_number_decimal_token3] = ACTIONS(4927), - [aux_sym__val_number_token1] = ACTIONS(4929), - [aux_sym__val_number_token2] = ACTIONS(4929), - [aux_sym__val_number_token3] = ACTIONS(4929), - [aux_sym__val_number_token4] = ACTIONS(5783), - [aux_sym__val_number_token5] = ACTIONS(5783), - [aux_sym__val_number_token6] = ACTIONS(5783), - [anon_sym_0b] = ACTIONS(4933), - [anon_sym_0o] = ACTIONS(4935), - [anon_sym_0x] = ACTIONS(4935), - [sym_val_date] = ACTIONS(4937), - [anon_sym_DQUOTE] = ACTIONS(4939), - [sym__str_single_quotes] = ACTIONS(4941), - [sym__str_back_ticks] = ACTIONS(4941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4943), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4945), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5785), - [anon_sym_POUND] = ACTIONS(3), + [2430] = { + [sym_comment] = STATE(2430), + [ts_builtin_sym_end] = ACTIONS(5948), + [anon_sym_export] = ACTIONS(5946), + [anon_sym_alias] = ACTIONS(5946), + [anon_sym_let] = ACTIONS(5946), + [anon_sym_let_DASHenv] = ACTIONS(5946), + [anon_sym_mut] = ACTIONS(5946), + [anon_sym_const] = ACTIONS(5946), + [anon_sym_SEMI] = ACTIONS(5946), + [sym_cmd_identifier] = ACTIONS(5946), + [anon_sym_LF] = ACTIONS(5948), + [anon_sym_def] = ACTIONS(5946), + [anon_sym_export_DASHenv] = ACTIONS(5946), + [anon_sym_extern] = ACTIONS(5946), + [anon_sym_module] = ACTIONS(5946), + [anon_sym_use] = ACTIONS(5946), + [anon_sym_LBRACK] = ACTIONS(5946), + [anon_sym_LPAREN] = ACTIONS(5946), + [anon_sym_DOLLAR] = ACTIONS(5946), + [anon_sym_error] = ACTIONS(5946), + [anon_sym_DASH] = ACTIONS(5946), + [anon_sym_break] = ACTIONS(5946), + [anon_sym_continue] = ACTIONS(5946), + [anon_sym_for] = ACTIONS(5946), + [anon_sym_loop] = ACTIONS(5946), + [anon_sym_while] = ACTIONS(5946), + [anon_sym_do] = ACTIONS(5946), + [anon_sym_if] = ACTIONS(5946), + [anon_sym_match] = ACTIONS(5946), + [anon_sym_LBRACE] = ACTIONS(5946), + [anon_sym_DOT_DOT] = ACTIONS(5946), + [anon_sym_try] = ACTIONS(5946), + [anon_sym_return] = ACTIONS(5946), + [anon_sym_source] = ACTIONS(5946), + [anon_sym_source_DASHenv] = ACTIONS(5946), + [anon_sym_register] = ACTIONS(5946), + [anon_sym_hide] = ACTIONS(5946), + [anon_sym_hide_DASHenv] = ACTIONS(5946), + [anon_sym_overlay] = ACTIONS(5946), + [anon_sym_where] = ACTIONS(5946), + [anon_sym_not] = ACTIONS(5946), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5946), + [anon_sym_DOT_DOT_LT] = ACTIONS(5946), + [anon_sym_null] = ACTIONS(5946), + [anon_sym_true] = ACTIONS(5946), + [anon_sym_false] = ACTIONS(5946), + [aux_sym__val_number_decimal_token1] = ACTIONS(5946), + [aux_sym__val_number_decimal_token2] = ACTIONS(5946), + [anon_sym_DOT2] = ACTIONS(5946), + [aux_sym__val_number_decimal_token3] = ACTIONS(5946), + [aux_sym__val_number_token1] = ACTIONS(5946), + [aux_sym__val_number_token2] = ACTIONS(5946), + [aux_sym__val_number_token3] = ACTIONS(5946), + [aux_sym__val_number_token4] = ACTIONS(5946), + [aux_sym__val_number_token5] = ACTIONS(5946), + [aux_sym__val_number_token6] = ACTIONS(5946), + [anon_sym_0b] = ACTIONS(5946), + [anon_sym_0o] = ACTIONS(5946), + [anon_sym_0x] = ACTIONS(5946), + [sym_val_date] = ACTIONS(5946), + [anon_sym_DQUOTE] = ACTIONS(5946), + [sym__str_single_quotes] = ACTIONS(5946), + [sym__str_back_ticks] = ACTIONS(5946), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5946), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5946), + [anon_sym_CARET] = ACTIONS(5946), + [anon_sym_POUND] = ACTIONS(113), }, - [2157] = { - [sym_expr_unary] = STATE(6084), - [sym__expr_unary_minus] = STATE(6242), - [sym_expr_binary] = STATE(6084), - [sym__expr_binary_expression] = STATE(5976), - [sym_expr_parenthesized] = STATE(6084), - [sym__val_range] = STATE(10678), - [sym__value] = STATE(6084), - [sym_val_nothing] = STATE(6075), - [sym_val_bool] = STATE(5936), - [sym_val_variable] = STATE(6075), - [sym__var] = STATE(5266), - [sym_val_number] = STATE(6075), - [sym__val_number_decimal] = STATE(4509), - [sym__val_number] = STATE(6146), - [sym_val_duration] = STATE(6075), - [sym_val_filesize] = STATE(6075), - [sym_val_binary] = STATE(6075), - [sym_val_string] = STATE(6075), - [sym__str_double_quotes] = STATE(6198), - [sym_val_interpolated] = STATE(6075), - [sym__inter_single_quotes] = STATE(6204), - [sym__inter_double_quotes] = STATE(6205), - [sym_val_list] = STATE(6075), - [sym_val_record] = STATE(6075), - [sym_val_table] = STATE(6075), - [sym_val_closure] = STATE(6075), - [sym_unquoted] = STATE(6125), - [sym__unquoted_anonymous_prefix] = STATE(10797), - [sym_comment] = STATE(2157), - [anon_sym_LBRACK] = ACTIONS(4901), - [anon_sym_LPAREN] = ACTIONS(5773), - [anon_sym_DOLLAR] = ACTIONS(5775), - [anon_sym_DASH] = ACTIONS(4907), - [anon_sym_LBRACE] = ACTIONS(4909), - [anon_sym_DOT_DOT] = ACTIONS(5777), - [anon_sym_not] = ACTIONS(4913), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5779), - [anon_sym_DOT_DOT_LT] = ACTIONS(5779), - [anon_sym_null] = ACTIONS(4917), - [anon_sym_true] = ACTIONS(4919), - [anon_sym_false] = ACTIONS(4919), - [aux_sym__val_number_decimal_token1] = ACTIONS(4921), - [aux_sym__val_number_decimal_token2] = ACTIONS(4923), - [anon_sym_DOT2] = ACTIONS(5781), - [aux_sym__val_number_decimal_token3] = ACTIONS(4927), - [aux_sym__val_number_token1] = ACTIONS(4929), - [aux_sym__val_number_token2] = ACTIONS(4929), - [aux_sym__val_number_token3] = ACTIONS(4929), - [aux_sym__val_number_token4] = ACTIONS(5783), - [aux_sym__val_number_token5] = ACTIONS(5783), - [aux_sym__val_number_token6] = ACTIONS(5783), - [anon_sym_0b] = ACTIONS(4933), - [anon_sym_0o] = ACTIONS(4935), - [anon_sym_0x] = ACTIONS(4935), - [sym_val_date] = ACTIONS(4937), - [anon_sym_DQUOTE] = ACTIONS(4939), - [sym__str_single_quotes] = ACTIONS(4941), - [sym__str_back_ticks] = ACTIONS(4941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4943), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4945), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5785), - [anon_sym_POUND] = ACTIONS(3), + [2431] = { + [sym_comment] = STATE(2431), + [ts_builtin_sym_end] = ACTIONS(5948), + [anon_sym_export] = ACTIONS(5946), + [anon_sym_alias] = ACTIONS(5946), + [anon_sym_let] = ACTIONS(5946), + [anon_sym_let_DASHenv] = ACTIONS(5946), + [anon_sym_mut] = ACTIONS(5946), + [anon_sym_const] = ACTIONS(5946), + [anon_sym_SEMI] = ACTIONS(5946), + [sym_cmd_identifier] = ACTIONS(5946), + [anon_sym_LF] = ACTIONS(5948), + [anon_sym_def] = ACTIONS(5946), + [anon_sym_export_DASHenv] = ACTIONS(5946), + [anon_sym_extern] = ACTIONS(5946), + [anon_sym_module] = ACTIONS(5946), + [anon_sym_use] = ACTIONS(5946), + [anon_sym_LBRACK] = ACTIONS(5946), + [anon_sym_LPAREN] = ACTIONS(5946), + [anon_sym_DOLLAR] = ACTIONS(5946), + [anon_sym_error] = ACTIONS(5946), + [anon_sym_DASH] = ACTIONS(5946), + [anon_sym_break] = ACTIONS(5946), + [anon_sym_continue] = ACTIONS(5946), + [anon_sym_for] = ACTIONS(5946), + [anon_sym_loop] = ACTIONS(5946), + [anon_sym_while] = ACTIONS(5946), + [anon_sym_do] = ACTIONS(5946), + [anon_sym_if] = ACTIONS(5946), + [anon_sym_match] = ACTIONS(5946), + [anon_sym_LBRACE] = ACTIONS(5946), + [anon_sym_DOT_DOT] = ACTIONS(5946), + [anon_sym_try] = ACTIONS(5946), + [anon_sym_return] = ACTIONS(5946), + [anon_sym_source] = ACTIONS(5946), + [anon_sym_source_DASHenv] = ACTIONS(5946), + [anon_sym_register] = ACTIONS(5946), + [anon_sym_hide] = ACTIONS(5946), + [anon_sym_hide_DASHenv] = ACTIONS(5946), + [anon_sym_overlay] = ACTIONS(5946), + [anon_sym_where] = ACTIONS(5946), + [anon_sym_not] = ACTIONS(5946), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5946), + [anon_sym_DOT_DOT_LT] = ACTIONS(5946), + [anon_sym_null] = ACTIONS(5946), + [anon_sym_true] = ACTIONS(5946), + [anon_sym_false] = ACTIONS(5946), + [aux_sym__val_number_decimal_token1] = ACTIONS(5946), + [aux_sym__val_number_decimal_token2] = ACTIONS(5946), + [anon_sym_DOT2] = ACTIONS(5946), + [aux_sym__val_number_decimal_token3] = ACTIONS(5946), + [aux_sym__val_number_token1] = ACTIONS(5946), + [aux_sym__val_number_token2] = ACTIONS(5946), + [aux_sym__val_number_token3] = ACTIONS(5946), + [aux_sym__val_number_token4] = ACTIONS(5946), + [aux_sym__val_number_token5] = ACTIONS(5946), + [aux_sym__val_number_token6] = ACTIONS(5946), + [anon_sym_0b] = ACTIONS(5946), + [anon_sym_0o] = ACTIONS(5946), + [anon_sym_0x] = ACTIONS(5946), + [sym_val_date] = ACTIONS(5946), + [anon_sym_DQUOTE] = ACTIONS(5946), + [sym__str_single_quotes] = ACTIONS(5946), + [sym__str_back_ticks] = ACTIONS(5946), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5946), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5946), + [anon_sym_CARET] = ACTIONS(5946), + [anon_sym_POUND] = ACTIONS(113), }, - [2158] = { - [sym_expr_unary] = STATE(6084), - [sym__expr_unary_minus] = STATE(6242), - [sym_expr_binary] = STATE(6084), - [sym__expr_binary_expression] = STATE(5977), - [sym_expr_parenthesized] = STATE(6084), - [sym__val_range] = STATE(10678), - [sym__value] = STATE(6084), - [sym_val_nothing] = STATE(6075), - [sym_val_bool] = STATE(5936), - [sym_val_variable] = STATE(6075), - [sym__var] = STATE(5266), - [sym_val_number] = STATE(6075), - [sym__val_number_decimal] = STATE(4509), - [sym__val_number] = STATE(6146), - [sym_val_duration] = STATE(6075), - [sym_val_filesize] = STATE(6075), - [sym_val_binary] = STATE(6075), - [sym_val_string] = STATE(6075), - [sym__str_double_quotes] = STATE(6198), - [sym_val_interpolated] = STATE(6075), - [sym__inter_single_quotes] = STATE(6204), - [sym__inter_double_quotes] = STATE(6205), - [sym_val_list] = STATE(6075), - [sym_val_record] = STATE(6075), - [sym_val_table] = STATE(6075), - [sym_val_closure] = STATE(6075), - [sym_unquoted] = STATE(6130), - [sym__unquoted_anonymous_prefix] = STATE(10797), - [sym_comment] = STATE(2158), - [anon_sym_LBRACK] = ACTIONS(4901), - [anon_sym_LPAREN] = ACTIONS(5773), - [anon_sym_DOLLAR] = ACTIONS(5775), - [anon_sym_DASH] = ACTIONS(4907), - [anon_sym_LBRACE] = ACTIONS(4909), - [anon_sym_DOT_DOT] = ACTIONS(5777), - [anon_sym_not] = ACTIONS(4913), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5779), - [anon_sym_DOT_DOT_LT] = ACTIONS(5779), - [anon_sym_null] = ACTIONS(4917), - [anon_sym_true] = ACTIONS(4919), - [anon_sym_false] = ACTIONS(4919), - [aux_sym__val_number_decimal_token1] = ACTIONS(4921), - [aux_sym__val_number_decimal_token2] = ACTIONS(4923), - [anon_sym_DOT2] = ACTIONS(5781), - [aux_sym__val_number_decimal_token3] = ACTIONS(4927), - [aux_sym__val_number_token1] = ACTIONS(4929), - [aux_sym__val_number_token2] = ACTIONS(4929), - [aux_sym__val_number_token3] = ACTIONS(4929), - [aux_sym__val_number_token4] = ACTIONS(5783), - [aux_sym__val_number_token5] = ACTIONS(5783), - [aux_sym__val_number_token6] = ACTIONS(5783), - [anon_sym_0b] = ACTIONS(4933), - [anon_sym_0o] = ACTIONS(4935), - [anon_sym_0x] = ACTIONS(4935), - [sym_val_date] = ACTIONS(4937), - [anon_sym_DQUOTE] = ACTIONS(4939), - [sym__str_single_quotes] = ACTIONS(4941), - [sym__str_back_ticks] = ACTIONS(4941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4943), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4945), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5785), - [anon_sym_POUND] = ACTIONS(3), + [2432] = { + [sym_comment] = STATE(2432), + [ts_builtin_sym_end] = ACTIONS(6284), + [anon_sym_export] = ACTIONS(6282), + [anon_sym_alias] = ACTIONS(6282), + [anon_sym_let] = ACTIONS(6282), + [anon_sym_let_DASHenv] = ACTIONS(6282), + [anon_sym_mut] = ACTIONS(6282), + [anon_sym_const] = ACTIONS(6282), + [anon_sym_SEMI] = ACTIONS(6282), + [sym_cmd_identifier] = ACTIONS(6282), + [anon_sym_LF] = ACTIONS(6284), + [anon_sym_def] = ACTIONS(6282), + [anon_sym_export_DASHenv] = ACTIONS(6282), + [anon_sym_extern] = ACTIONS(6282), + [anon_sym_module] = ACTIONS(6282), + [anon_sym_use] = ACTIONS(6282), + [anon_sym_LBRACK] = ACTIONS(6282), + [anon_sym_LPAREN] = ACTIONS(6282), + [anon_sym_DOLLAR] = ACTIONS(6282), + [anon_sym_error] = ACTIONS(6282), + [anon_sym_DASH] = ACTIONS(6282), + [anon_sym_break] = ACTIONS(6282), + [anon_sym_continue] = ACTIONS(6282), + [anon_sym_for] = ACTIONS(6282), + [anon_sym_loop] = ACTIONS(6282), + [anon_sym_while] = ACTIONS(6282), + [anon_sym_do] = ACTIONS(6282), + [anon_sym_if] = ACTIONS(6282), + [anon_sym_match] = ACTIONS(6282), + [anon_sym_LBRACE] = ACTIONS(6282), + [anon_sym_DOT_DOT] = ACTIONS(6282), + [anon_sym_try] = ACTIONS(6282), + [anon_sym_return] = ACTIONS(6282), + [anon_sym_source] = ACTIONS(6282), + [anon_sym_source_DASHenv] = ACTIONS(6282), + [anon_sym_register] = ACTIONS(6282), + [anon_sym_hide] = ACTIONS(6282), + [anon_sym_hide_DASHenv] = ACTIONS(6282), + [anon_sym_overlay] = ACTIONS(6282), + [anon_sym_where] = ACTIONS(6282), + [anon_sym_not] = ACTIONS(6282), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6282), + [anon_sym_DOT_DOT_LT] = ACTIONS(6282), + [anon_sym_null] = ACTIONS(6282), + [anon_sym_true] = ACTIONS(6282), + [anon_sym_false] = ACTIONS(6282), + [aux_sym__val_number_decimal_token1] = ACTIONS(6282), + [aux_sym__val_number_decimal_token2] = ACTIONS(6282), + [anon_sym_DOT2] = ACTIONS(6282), + [aux_sym__val_number_decimal_token3] = ACTIONS(6282), + [aux_sym__val_number_token1] = ACTIONS(6282), + [aux_sym__val_number_token2] = ACTIONS(6282), + [aux_sym__val_number_token3] = ACTIONS(6282), + [aux_sym__val_number_token4] = ACTIONS(6282), + [aux_sym__val_number_token5] = ACTIONS(6282), + [aux_sym__val_number_token6] = ACTIONS(6282), + [anon_sym_0b] = ACTIONS(6282), + [anon_sym_0o] = ACTIONS(6282), + [anon_sym_0x] = ACTIONS(6282), + [sym_val_date] = ACTIONS(6282), + [anon_sym_DQUOTE] = ACTIONS(6282), + [sym__str_single_quotes] = ACTIONS(6282), + [sym__str_back_ticks] = ACTIONS(6282), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6282), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6282), + [anon_sym_CARET] = ACTIONS(6282), + [anon_sym_POUND] = ACTIONS(113), }, - [2159] = { - [sym_expr_unary] = STATE(6084), - [sym__expr_unary_minus] = STATE(6242), - [sym_expr_binary] = STATE(6084), - [sym__expr_binary_expression] = STATE(5979), - [sym_expr_parenthesized] = STATE(6084), - [sym__val_range] = STATE(10678), - [sym__value] = STATE(6084), - [sym_val_nothing] = STATE(6075), - [sym_val_bool] = STATE(5936), - [sym_val_variable] = STATE(6075), - [sym__var] = STATE(5266), - [sym_val_number] = STATE(6075), - [sym__val_number_decimal] = STATE(4509), - [sym__val_number] = STATE(6146), - [sym_val_duration] = STATE(6075), - [sym_val_filesize] = STATE(6075), - [sym_val_binary] = STATE(6075), - [sym_val_string] = STATE(6075), - [sym__str_double_quotes] = STATE(6198), - [sym_val_interpolated] = STATE(6075), - [sym__inter_single_quotes] = STATE(6204), - [sym__inter_double_quotes] = STATE(6205), - [sym_val_list] = STATE(6075), - [sym_val_record] = STATE(6075), - [sym_val_table] = STATE(6075), - [sym_val_closure] = STATE(6075), - [sym_unquoted] = STATE(6132), - [sym__unquoted_anonymous_prefix] = STATE(10797), - [sym_comment] = STATE(2159), - [anon_sym_LBRACK] = ACTIONS(4901), - [anon_sym_LPAREN] = ACTIONS(5773), - [anon_sym_DOLLAR] = ACTIONS(5775), - [anon_sym_DASH] = ACTIONS(4907), - [anon_sym_LBRACE] = ACTIONS(4909), - [anon_sym_DOT_DOT] = ACTIONS(5777), - [anon_sym_not] = ACTIONS(4913), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5779), - [anon_sym_DOT_DOT_LT] = ACTIONS(5779), - [anon_sym_null] = ACTIONS(4917), - [anon_sym_true] = ACTIONS(4919), - [anon_sym_false] = ACTIONS(4919), - [aux_sym__val_number_decimal_token1] = ACTIONS(4921), - [aux_sym__val_number_decimal_token2] = ACTIONS(4923), - [anon_sym_DOT2] = ACTIONS(5781), - [aux_sym__val_number_decimal_token3] = ACTIONS(4927), - [aux_sym__val_number_token1] = ACTIONS(4929), - [aux_sym__val_number_token2] = ACTIONS(4929), - [aux_sym__val_number_token3] = ACTIONS(4929), - [aux_sym__val_number_token4] = ACTIONS(5783), - [aux_sym__val_number_token5] = ACTIONS(5783), - [aux_sym__val_number_token6] = ACTIONS(5783), - [anon_sym_0b] = ACTIONS(4933), - [anon_sym_0o] = ACTIONS(4935), - [anon_sym_0x] = ACTIONS(4935), - [sym_val_date] = ACTIONS(4937), - [anon_sym_DQUOTE] = ACTIONS(4939), - [sym__str_single_quotes] = ACTIONS(4941), - [sym__str_back_ticks] = ACTIONS(4941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4943), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4945), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5785), - [anon_sym_POUND] = ACTIONS(3), + [2433] = { + [sym_comment] = STATE(2433), + [ts_builtin_sym_end] = ACTIONS(6112), + [anon_sym_export] = ACTIONS(6110), + [anon_sym_alias] = ACTIONS(6110), + [anon_sym_let] = ACTIONS(6110), + [anon_sym_let_DASHenv] = ACTIONS(6110), + [anon_sym_mut] = ACTIONS(6110), + [anon_sym_const] = ACTIONS(6110), + [anon_sym_SEMI] = ACTIONS(6110), + [sym_cmd_identifier] = ACTIONS(6110), + [anon_sym_LF] = ACTIONS(6112), + [anon_sym_def] = ACTIONS(6110), + [anon_sym_export_DASHenv] = ACTIONS(6110), + [anon_sym_extern] = ACTIONS(6110), + [anon_sym_module] = ACTIONS(6110), + [anon_sym_use] = ACTIONS(6110), + [anon_sym_LBRACK] = ACTIONS(6110), + [anon_sym_LPAREN] = ACTIONS(6110), + [anon_sym_DOLLAR] = ACTIONS(6110), + [anon_sym_error] = ACTIONS(6110), + [anon_sym_DASH] = ACTIONS(6110), + [anon_sym_break] = ACTIONS(6110), + [anon_sym_continue] = ACTIONS(6110), + [anon_sym_for] = ACTIONS(6110), + [anon_sym_loop] = ACTIONS(6110), + [anon_sym_while] = ACTIONS(6110), + [anon_sym_do] = ACTIONS(6110), + [anon_sym_if] = ACTIONS(6110), + [anon_sym_match] = ACTIONS(6110), + [anon_sym_LBRACE] = ACTIONS(6110), + [anon_sym_DOT_DOT] = ACTIONS(6110), + [anon_sym_try] = ACTIONS(6110), + [anon_sym_return] = ACTIONS(6110), + [anon_sym_source] = ACTIONS(6110), + [anon_sym_source_DASHenv] = ACTIONS(6110), + [anon_sym_register] = ACTIONS(6110), + [anon_sym_hide] = ACTIONS(6110), + [anon_sym_hide_DASHenv] = ACTIONS(6110), + [anon_sym_overlay] = ACTIONS(6110), + [anon_sym_where] = ACTIONS(6110), + [anon_sym_not] = ACTIONS(6110), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6110), + [anon_sym_DOT_DOT_LT] = ACTIONS(6110), + [anon_sym_null] = ACTIONS(6110), + [anon_sym_true] = ACTIONS(6110), + [anon_sym_false] = ACTIONS(6110), + [aux_sym__val_number_decimal_token1] = ACTIONS(6110), + [aux_sym__val_number_decimal_token2] = ACTIONS(6110), + [anon_sym_DOT2] = ACTIONS(6110), + [aux_sym__val_number_decimal_token3] = ACTIONS(6110), + [aux_sym__val_number_token1] = ACTIONS(6110), + [aux_sym__val_number_token2] = ACTIONS(6110), + [aux_sym__val_number_token3] = ACTIONS(6110), + [aux_sym__val_number_token4] = ACTIONS(6110), + [aux_sym__val_number_token5] = ACTIONS(6110), + [aux_sym__val_number_token6] = ACTIONS(6110), + [anon_sym_0b] = ACTIONS(6110), + [anon_sym_0o] = ACTIONS(6110), + [anon_sym_0x] = ACTIONS(6110), + [sym_val_date] = ACTIONS(6110), + [anon_sym_DQUOTE] = ACTIONS(6110), + [sym__str_single_quotes] = ACTIONS(6110), + [sym__str_back_ticks] = ACTIONS(6110), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6110), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6110), + [anon_sym_CARET] = ACTIONS(6110), + [anon_sym_POUND] = ACTIONS(113), }, - [2160] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5612), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5371), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4317), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5002), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2160), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5787), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5789), - [anon_sym_DOT_DOT_LT] = ACTIONS(5789), - [anon_sym_null] = ACTIONS(5791), - [anon_sym_true] = ACTIONS(5793), - [anon_sym_false] = ACTIONS(5793), - [aux_sym__val_number_decimal_token1] = ACTIONS(5795), - [aux_sym__val_number_decimal_token2] = ACTIONS(5797), - [anon_sym_DOT2] = ACTIONS(5799), - [aux_sym__val_number_decimal_token3] = ACTIONS(5801), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5803), - [aux_sym__val_number_token5] = ACTIONS(5803), - [aux_sym__val_number_token6] = ACTIONS(5803), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5805), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2434] = { + [sym_comment] = STATE(2434), + [ts_builtin_sym_end] = ACTIONS(6112), + [anon_sym_export] = ACTIONS(6110), + [anon_sym_alias] = ACTIONS(6110), + [anon_sym_let] = ACTIONS(6110), + [anon_sym_let_DASHenv] = ACTIONS(6110), + [anon_sym_mut] = ACTIONS(6110), + [anon_sym_const] = ACTIONS(6110), + [anon_sym_SEMI] = ACTIONS(6110), + [sym_cmd_identifier] = ACTIONS(6110), + [anon_sym_LF] = ACTIONS(6112), + [anon_sym_def] = ACTIONS(6110), + [anon_sym_export_DASHenv] = ACTIONS(6110), + [anon_sym_extern] = ACTIONS(6110), + [anon_sym_module] = ACTIONS(6110), + [anon_sym_use] = ACTIONS(6110), + [anon_sym_LBRACK] = ACTIONS(6110), + [anon_sym_LPAREN] = ACTIONS(6110), + [anon_sym_DOLLAR] = ACTIONS(6110), + [anon_sym_error] = ACTIONS(6110), + [anon_sym_DASH] = ACTIONS(6110), + [anon_sym_break] = ACTIONS(6110), + [anon_sym_continue] = ACTIONS(6110), + [anon_sym_for] = ACTIONS(6110), + [anon_sym_loop] = ACTIONS(6110), + [anon_sym_while] = ACTIONS(6110), + [anon_sym_do] = ACTIONS(6110), + [anon_sym_if] = ACTIONS(6110), + [anon_sym_match] = ACTIONS(6110), + [anon_sym_LBRACE] = ACTIONS(6110), + [anon_sym_DOT_DOT] = ACTIONS(6110), + [anon_sym_try] = ACTIONS(6110), + [anon_sym_return] = ACTIONS(6110), + [anon_sym_source] = ACTIONS(6110), + [anon_sym_source_DASHenv] = ACTIONS(6110), + [anon_sym_register] = ACTIONS(6110), + [anon_sym_hide] = ACTIONS(6110), + [anon_sym_hide_DASHenv] = ACTIONS(6110), + [anon_sym_overlay] = ACTIONS(6110), + [anon_sym_where] = ACTIONS(6110), + [anon_sym_not] = ACTIONS(6110), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6110), + [anon_sym_DOT_DOT_LT] = ACTIONS(6110), + [anon_sym_null] = ACTIONS(6110), + [anon_sym_true] = ACTIONS(6110), + [anon_sym_false] = ACTIONS(6110), + [aux_sym__val_number_decimal_token1] = ACTIONS(6110), + [aux_sym__val_number_decimal_token2] = ACTIONS(6110), + [anon_sym_DOT2] = ACTIONS(6110), + [aux_sym__val_number_decimal_token3] = ACTIONS(6110), + [aux_sym__val_number_token1] = ACTIONS(6110), + [aux_sym__val_number_token2] = ACTIONS(6110), + [aux_sym__val_number_token3] = ACTIONS(6110), + [aux_sym__val_number_token4] = ACTIONS(6110), + [aux_sym__val_number_token5] = ACTIONS(6110), + [aux_sym__val_number_token6] = ACTIONS(6110), + [anon_sym_0b] = ACTIONS(6110), + [anon_sym_0o] = ACTIONS(6110), + [anon_sym_0x] = ACTIONS(6110), + [sym_val_date] = ACTIONS(6110), + [anon_sym_DQUOTE] = ACTIONS(6110), + [sym__str_single_quotes] = ACTIONS(6110), + [sym__str_back_ticks] = ACTIONS(6110), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6110), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6110), + [anon_sym_CARET] = ACTIONS(6110), + [anon_sym_POUND] = ACTIONS(113), }, - [2161] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5613), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5371), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4317), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5007), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2161), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5787), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5789), - [anon_sym_DOT_DOT_LT] = ACTIONS(5789), - [anon_sym_null] = ACTIONS(5791), - [anon_sym_true] = ACTIONS(5793), - [anon_sym_false] = ACTIONS(5793), - [aux_sym__val_number_decimal_token1] = ACTIONS(5795), - [aux_sym__val_number_decimal_token2] = ACTIONS(5797), - [anon_sym_DOT2] = ACTIONS(5799), - [aux_sym__val_number_decimal_token3] = ACTIONS(5801), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5803), - [aux_sym__val_number_token5] = ACTIONS(5803), - [aux_sym__val_number_token6] = ACTIONS(5803), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5805), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2435] = { + [sym_comment] = STATE(2435), + [ts_builtin_sym_end] = ACTIONS(5925), + [anon_sym_export] = ACTIONS(5923), + [anon_sym_alias] = ACTIONS(5923), + [anon_sym_let] = ACTIONS(5923), + [anon_sym_let_DASHenv] = ACTIONS(5923), + [anon_sym_mut] = ACTIONS(5923), + [anon_sym_const] = ACTIONS(5923), + [anon_sym_SEMI] = ACTIONS(5923), + [sym_cmd_identifier] = ACTIONS(5923), + [anon_sym_LF] = ACTIONS(5925), + [anon_sym_def] = ACTIONS(5923), + [anon_sym_export_DASHenv] = ACTIONS(5923), + [anon_sym_extern] = ACTIONS(5923), + [anon_sym_module] = ACTIONS(5923), + [anon_sym_use] = ACTIONS(5923), + [anon_sym_LBRACK] = ACTIONS(5923), + [anon_sym_LPAREN] = ACTIONS(5923), + [anon_sym_DOLLAR] = ACTIONS(5923), + [anon_sym_error] = ACTIONS(5923), + [anon_sym_DASH] = ACTIONS(5923), + [anon_sym_break] = ACTIONS(5923), + [anon_sym_continue] = ACTIONS(5923), + [anon_sym_for] = ACTIONS(5923), + [anon_sym_loop] = ACTIONS(5923), + [anon_sym_while] = ACTIONS(5923), + [anon_sym_do] = ACTIONS(5923), + [anon_sym_if] = ACTIONS(5923), + [anon_sym_match] = ACTIONS(5923), + [anon_sym_LBRACE] = ACTIONS(5923), + [anon_sym_DOT_DOT] = ACTIONS(5923), + [anon_sym_try] = ACTIONS(5923), + [anon_sym_return] = ACTIONS(5923), + [anon_sym_source] = ACTIONS(5923), + [anon_sym_source_DASHenv] = ACTIONS(5923), + [anon_sym_register] = ACTIONS(5923), + [anon_sym_hide] = ACTIONS(5923), + [anon_sym_hide_DASHenv] = ACTIONS(5923), + [anon_sym_overlay] = ACTIONS(5923), + [anon_sym_where] = ACTIONS(5923), + [anon_sym_not] = ACTIONS(5923), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5923), + [anon_sym_DOT_DOT_LT] = ACTIONS(5923), + [anon_sym_null] = ACTIONS(5923), + [anon_sym_true] = ACTIONS(5923), + [anon_sym_false] = ACTIONS(5923), + [aux_sym__val_number_decimal_token1] = ACTIONS(5923), + [aux_sym__val_number_decimal_token2] = ACTIONS(5923), + [anon_sym_DOT2] = ACTIONS(5923), + [aux_sym__val_number_decimal_token3] = ACTIONS(5923), + [aux_sym__val_number_token1] = ACTIONS(5923), + [aux_sym__val_number_token2] = ACTIONS(5923), + [aux_sym__val_number_token3] = ACTIONS(5923), + [aux_sym__val_number_token4] = ACTIONS(5923), + [aux_sym__val_number_token5] = ACTIONS(5923), + [aux_sym__val_number_token6] = ACTIONS(5923), + [anon_sym_0b] = ACTIONS(5923), + [anon_sym_0o] = ACTIONS(5923), + [anon_sym_0x] = ACTIONS(5923), + [sym_val_date] = ACTIONS(5923), + [anon_sym_DQUOTE] = ACTIONS(5923), + [sym__str_single_quotes] = ACTIONS(5923), + [sym__str_back_ticks] = ACTIONS(5923), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5923), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5923), + [anon_sym_CARET] = ACTIONS(5923), + [anon_sym_POUND] = ACTIONS(113), }, - [2162] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5614), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5371), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4317), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5010), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2162), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5787), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5789), - [anon_sym_DOT_DOT_LT] = ACTIONS(5789), - [anon_sym_null] = ACTIONS(5791), - [anon_sym_true] = ACTIONS(5793), - [anon_sym_false] = ACTIONS(5793), - [aux_sym__val_number_decimal_token1] = ACTIONS(5795), - [aux_sym__val_number_decimal_token2] = ACTIONS(5797), - [anon_sym_DOT2] = ACTIONS(5799), - [aux_sym__val_number_decimal_token3] = ACTIONS(5801), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5803), - [aux_sym__val_number_token5] = ACTIONS(5803), - [aux_sym__val_number_token6] = ACTIONS(5803), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5805), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2436] = { + [sym_comment] = STATE(2436), + [ts_builtin_sym_end] = ACTIONS(5968), + [anon_sym_export] = ACTIONS(5966), + [anon_sym_alias] = ACTIONS(5966), + [anon_sym_let] = ACTIONS(5966), + [anon_sym_let_DASHenv] = ACTIONS(5966), + [anon_sym_mut] = ACTIONS(5966), + [anon_sym_const] = ACTIONS(5966), + [anon_sym_SEMI] = ACTIONS(5966), + [sym_cmd_identifier] = ACTIONS(5966), + [anon_sym_LF] = ACTIONS(5968), + [anon_sym_def] = ACTIONS(5966), + [anon_sym_export_DASHenv] = ACTIONS(5966), + [anon_sym_extern] = ACTIONS(5966), + [anon_sym_module] = ACTIONS(5966), + [anon_sym_use] = ACTIONS(5966), + [anon_sym_LBRACK] = ACTIONS(5966), + [anon_sym_LPAREN] = ACTIONS(5966), + [anon_sym_DOLLAR] = ACTIONS(5966), + [anon_sym_error] = ACTIONS(5966), + [anon_sym_DASH] = ACTIONS(5966), + [anon_sym_break] = ACTIONS(5966), + [anon_sym_continue] = ACTIONS(5966), + [anon_sym_for] = ACTIONS(5966), + [anon_sym_loop] = ACTIONS(5966), + [anon_sym_while] = ACTIONS(5966), + [anon_sym_do] = ACTIONS(5966), + [anon_sym_if] = ACTIONS(5966), + [anon_sym_match] = ACTIONS(5966), + [anon_sym_LBRACE] = ACTIONS(5966), + [anon_sym_DOT_DOT] = ACTIONS(5966), + [anon_sym_try] = ACTIONS(5966), + [anon_sym_return] = ACTIONS(5966), + [anon_sym_source] = ACTIONS(5966), + [anon_sym_source_DASHenv] = ACTIONS(5966), + [anon_sym_register] = ACTIONS(5966), + [anon_sym_hide] = ACTIONS(5966), + [anon_sym_hide_DASHenv] = ACTIONS(5966), + [anon_sym_overlay] = ACTIONS(5966), + [anon_sym_where] = ACTIONS(5966), + [anon_sym_not] = ACTIONS(5966), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5966), + [anon_sym_DOT_DOT_LT] = ACTIONS(5966), + [anon_sym_null] = ACTIONS(5966), + [anon_sym_true] = ACTIONS(5966), + [anon_sym_false] = ACTIONS(5966), + [aux_sym__val_number_decimal_token1] = ACTIONS(5966), + [aux_sym__val_number_decimal_token2] = ACTIONS(5966), + [anon_sym_DOT2] = ACTIONS(5966), + [aux_sym__val_number_decimal_token3] = ACTIONS(5966), + [aux_sym__val_number_token1] = ACTIONS(5966), + [aux_sym__val_number_token2] = ACTIONS(5966), + [aux_sym__val_number_token3] = ACTIONS(5966), + [aux_sym__val_number_token4] = ACTIONS(5966), + [aux_sym__val_number_token5] = ACTIONS(5966), + [aux_sym__val_number_token6] = ACTIONS(5966), + [anon_sym_0b] = ACTIONS(5966), + [anon_sym_0o] = ACTIONS(5966), + [anon_sym_0x] = ACTIONS(5966), + [sym_val_date] = ACTIONS(5966), + [anon_sym_DQUOTE] = ACTIONS(5966), + [sym__str_single_quotes] = ACTIONS(5966), + [sym__str_back_ticks] = ACTIONS(5966), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5966), + [anon_sym_CARET] = ACTIONS(5966), + [anon_sym_POUND] = ACTIONS(113), }, - [2163] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5615), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5371), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4317), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5011), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2163), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5787), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5789), - [anon_sym_DOT_DOT_LT] = ACTIONS(5789), - [anon_sym_null] = ACTIONS(5791), - [anon_sym_true] = ACTIONS(5793), - [anon_sym_false] = ACTIONS(5793), - [aux_sym__val_number_decimal_token1] = ACTIONS(5795), - [aux_sym__val_number_decimal_token2] = ACTIONS(5797), - [anon_sym_DOT2] = ACTIONS(5799), - [aux_sym__val_number_decimal_token3] = ACTIONS(5801), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5803), - [aux_sym__val_number_token5] = ACTIONS(5803), - [aux_sym__val_number_token6] = ACTIONS(5803), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5805), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2437] = { + [sym_comment] = STATE(2437), + [ts_builtin_sym_end] = ACTIONS(6064), + [anon_sym_export] = ACTIONS(6062), + [anon_sym_alias] = ACTIONS(6062), + [anon_sym_let] = ACTIONS(6062), + [anon_sym_let_DASHenv] = ACTIONS(6062), + [anon_sym_mut] = ACTIONS(6062), + [anon_sym_const] = ACTIONS(6062), + [anon_sym_SEMI] = ACTIONS(6062), + [sym_cmd_identifier] = ACTIONS(6062), + [anon_sym_LF] = ACTIONS(6064), + [anon_sym_def] = ACTIONS(6062), + [anon_sym_export_DASHenv] = ACTIONS(6062), + [anon_sym_extern] = ACTIONS(6062), + [anon_sym_module] = ACTIONS(6062), + [anon_sym_use] = ACTIONS(6062), + [anon_sym_LBRACK] = ACTIONS(6062), + [anon_sym_LPAREN] = ACTIONS(6062), + [anon_sym_DOLLAR] = ACTIONS(6062), + [anon_sym_error] = ACTIONS(6062), + [anon_sym_DASH] = ACTIONS(6062), + [anon_sym_break] = ACTIONS(6062), + [anon_sym_continue] = ACTIONS(6062), + [anon_sym_for] = ACTIONS(6062), + [anon_sym_loop] = ACTIONS(6062), + [anon_sym_while] = ACTIONS(6062), + [anon_sym_do] = ACTIONS(6062), + [anon_sym_if] = ACTIONS(6062), + [anon_sym_match] = ACTIONS(6062), + [anon_sym_LBRACE] = ACTIONS(6062), + [anon_sym_DOT_DOT] = ACTIONS(6062), + [anon_sym_try] = ACTIONS(6062), + [anon_sym_return] = ACTIONS(6062), + [anon_sym_source] = ACTIONS(6062), + [anon_sym_source_DASHenv] = ACTIONS(6062), + [anon_sym_register] = ACTIONS(6062), + [anon_sym_hide] = ACTIONS(6062), + [anon_sym_hide_DASHenv] = ACTIONS(6062), + [anon_sym_overlay] = ACTIONS(6062), + [anon_sym_where] = ACTIONS(6062), + [anon_sym_not] = ACTIONS(6062), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6062), + [anon_sym_DOT_DOT_LT] = ACTIONS(6062), + [anon_sym_null] = ACTIONS(6062), + [anon_sym_true] = ACTIONS(6062), + [anon_sym_false] = ACTIONS(6062), + [aux_sym__val_number_decimal_token1] = ACTIONS(6062), + [aux_sym__val_number_decimal_token2] = ACTIONS(6062), + [anon_sym_DOT2] = ACTIONS(6062), + [aux_sym__val_number_decimal_token3] = ACTIONS(6062), + [aux_sym__val_number_token1] = ACTIONS(6062), + [aux_sym__val_number_token2] = ACTIONS(6062), + [aux_sym__val_number_token3] = ACTIONS(6062), + [aux_sym__val_number_token4] = ACTIONS(6062), + [aux_sym__val_number_token5] = ACTIONS(6062), + [aux_sym__val_number_token6] = ACTIONS(6062), + [anon_sym_0b] = ACTIONS(6062), + [anon_sym_0o] = ACTIONS(6062), + [anon_sym_0x] = ACTIONS(6062), + [sym_val_date] = ACTIONS(6062), + [anon_sym_DQUOTE] = ACTIONS(6062), + [sym__str_single_quotes] = ACTIONS(6062), + [sym__str_back_ticks] = ACTIONS(6062), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6062), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6062), + [anon_sym_CARET] = ACTIONS(6062), + [anon_sym_POUND] = ACTIONS(113), }, - [2164] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5616), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5371), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4317), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5019), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2164), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5787), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5789), - [anon_sym_DOT_DOT_LT] = ACTIONS(5789), - [anon_sym_null] = ACTIONS(5791), - [anon_sym_true] = ACTIONS(5793), - [anon_sym_false] = ACTIONS(5793), - [aux_sym__val_number_decimal_token1] = ACTIONS(5795), - [aux_sym__val_number_decimal_token2] = ACTIONS(5797), - [anon_sym_DOT2] = ACTIONS(5799), - [aux_sym__val_number_decimal_token3] = ACTIONS(5801), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5803), - [aux_sym__val_number_token5] = ACTIONS(5803), - [aux_sym__val_number_token6] = ACTIONS(5803), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5805), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2438] = { + [sym_comment] = STATE(2438), + [ts_builtin_sym_end] = ACTIONS(6064), + [anon_sym_export] = ACTIONS(6062), + [anon_sym_alias] = ACTIONS(6062), + [anon_sym_let] = ACTIONS(6062), + [anon_sym_let_DASHenv] = ACTIONS(6062), + [anon_sym_mut] = ACTIONS(6062), + [anon_sym_const] = ACTIONS(6062), + [anon_sym_SEMI] = ACTIONS(6062), + [sym_cmd_identifier] = ACTIONS(6062), + [anon_sym_LF] = ACTIONS(6064), + [anon_sym_def] = ACTIONS(6062), + [anon_sym_export_DASHenv] = ACTIONS(6062), + [anon_sym_extern] = ACTIONS(6062), + [anon_sym_module] = ACTIONS(6062), + [anon_sym_use] = ACTIONS(6062), + [anon_sym_LBRACK] = ACTIONS(6062), + [anon_sym_LPAREN] = ACTIONS(6062), + [anon_sym_DOLLAR] = ACTIONS(6062), + [anon_sym_error] = ACTIONS(6062), + [anon_sym_DASH] = ACTIONS(6062), + [anon_sym_break] = ACTIONS(6062), + [anon_sym_continue] = ACTIONS(6062), + [anon_sym_for] = ACTIONS(6062), + [anon_sym_loop] = ACTIONS(6062), + [anon_sym_while] = ACTIONS(6062), + [anon_sym_do] = ACTIONS(6062), + [anon_sym_if] = ACTIONS(6062), + [anon_sym_match] = ACTIONS(6062), + [anon_sym_LBRACE] = ACTIONS(6062), + [anon_sym_DOT_DOT] = ACTIONS(6062), + [anon_sym_try] = ACTIONS(6062), + [anon_sym_return] = ACTIONS(6062), + [anon_sym_source] = ACTIONS(6062), + [anon_sym_source_DASHenv] = ACTIONS(6062), + [anon_sym_register] = ACTIONS(6062), + [anon_sym_hide] = ACTIONS(6062), + [anon_sym_hide_DASHenv] = ACTIONS(6062), + [anon_sym_overlay] = ACTIONS(6062), + [anon_sym_where] = ACTIONS(6062), + [anon_sym_not] = ACTIONS(6062), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6062), + [anon_sym_DOT_DOT_LT] = ACTIONS(6062), + [anon_sym_null] = ACTIONS(6062), + [anon_sym_true] = ACTIONS(6062), + [anon_sym_false] = ACTIONS(6062), + [aux_sym__val_number_decimal_token1] = ACTIONS(6062), + [aux_sym__val_number_decimal_token2] = ACTIONS(6062), + [anon_sym_DOT2] = ACTIONS(6062), + [aux_sym__val_number_decimal_token3] = ACTIONS(6062), + [aux_sym__val_number_token1] = ACTIONS(6062), + [aux_sym__val_number_token2] = ACTIONS(6062), + [aux_sym__val_number_token3] = ACTIONS(6062), + [aux_sym__val_number_token4] = ACTIONS(6062), + [aux_sym__val_number_token5] = ACTIONS(6062), + [aux_sym__val_number_token6] = ACTIONS(6062), + [anon_sym_0b] = ACTIONS(6062), + [anon_sym_0o] = ACTIONS(6062), + [anon_sym_0x] = ACTIONS(6062), + [sym_val_date] = ACTIONS(6062), + [anon_sym_DQUOTE] = ACTIONS(6062), + [sym__str_single_quotes] = ACTIONS(6062), + [sym__str_back_ticks] = ACTIONS(6062), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6062), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6062), + [anon_sym_CARET] = ACTIONS(6062), + [anon_sym_POUND] = ACTIONS(113), }, - [2165] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5617), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5371), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4317), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5020), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2165), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5787), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5789), - [anon_sym_DOT_DOT_LT] = ACTIONS(5789), - [anon_sym_null] = ACTIONS(5791), - [anon_sym_true] = ACTIONS(5793), - [anon_sym_false] = ACTIONS(5793), - [aux_sym__val_number_decimal_token1] = ACTIONS(5795), - [aux_sym__val_number_decimal_token2] = ACTIONS(5797), - [anon_sym_DOT2] = ACTIONS(5799), - [aux_sym__val_number_decimal_token3] = ACTIONS(5801), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5803), - [aux_sym__val_number_token5] = ACTIONS(5803), - [aux_sym__val_number_token6] = ACTIONS(5803), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5805), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2439] = { + [sym_comment] = STATE(2439), + [ts_builtin_sym_end] = ACTIONS(6124), + [anon_sym_export] = ACTIONS(6122), + [anon_sym_alias] = ACTIONS(6122), + [anon_sym_let] = ACTIONS(6122), + [anon_sym_let_DASHenv] = ACTIONS(6122), + [anon_sym_mut] = ACTIONS(6122), + [anon_sym_const] = ACTIONS(6122), + [anon_sym_SEMI] = ACTIONS(6122), + [sym_cmd_identifier] = ACTIONS(6122), + [anon_sym_LF] = ACTIONS(6124), + [anon_sym_def] = ACTIONS(6122), + [anon_sym_export_DASHenv] = ACTIONS(6122), + [anon_sym_extern] = ACTIONS(6122), + [anon_sym_module] = ACTIONS(6122), + [anon_sym_use] = ACTIONS(6122), + [anon_sym_LBRACK] = ACTIONS(6122), + [anon_sym_LPAREN] = ACTIONS(6122), + [anon_sym_DOLLAR] = ACTIONS(6122), + [anon_sym_error] = ACTIONS(6122), + [anon_sym_DASH] = ACTIONS(6122), + [anon_sym_break] = ACTIONS(6122), + [anon_sym_continue] = ACTIONS(6122), + [anon_sym_for] = ACTIONS(6122), + [anon_sym_loop] = ACTIONS(6122), + [anon_sym_while] = ACTIONS(6122), + [anon_sym_do] = ACTIONS(6122), + [anon_sym_if] = ACTIONS(6122), + [anon_sym_match] = ACTIONS(6122), + [anon_sym_LBRACE] = ACTIONS(6122), + [anon_sym_DOT_DOT] = ACTIONS(6122), + [anon_sym_try] = ACTIONS(6122), + [anon_sym_return] = ACTIONS(6122), + [anon_sym_source] = ACTIONS(6122), + [anon_sym_source_DASHenv] = ACTIONS(6122), + [anon_sym_register] = ACTIONS(6122), + [anon_sym_hide] = ACTIONS(6122), + [anon_sym_hide_DASHenv] = ACTIONS(6122), + [anon_sym_overlay] = ACTIONS(6122), + [anon_sym_where] = ACTIONS(6122), + [anon_sym_not] = ACTIONS(6122), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6122), + [anon_sym_DOT_DOT_LT] = ACTIONS(6122), + [anon_sym_null] = ACTIONS(6122), + [anon_sym_true] = ACTIONS(6122), + [anon_sym_false] = ACTIONS(6122), + [aux_sym__val_number_decimal_token1] = ACTIONS(6122), + [aux_sym__val_number_decimal_token2] = ACTIONS(6122), + [anon_sym_DOT2] = ACTIONS(6122), + [aux_sym__val_number_decimal_token3] = ACTIONS(6122), + [aux_sym__val_number_token1] = ACTIONS(6122), + [aux_sym__val_number_token2] = ACTIONS(6122), + [aux_sym__val_number_token3] = ACTIONS(6122), + [aux_sym__val_number_token4] = ACTIONS(6122), + [aux_sym__val_number_token5] = ACTIONS(6122), + [aux_sym__val_number_token6] = ACTIONS(6122), + [anon_sym_0b] = ACTIONS(6122), + [anon_sym_0o] = ACTIONS(6122), + [anon_sym_0x] = ACTIONS(6122), + [sym_val_date] = ACTIONS(6122), + [anon_sym_DQUOTE] = ACTIONS(6122), + [sym__str_single_quotes] = ACTIONS(6122), + [sym__str_back_ticks] = ACTIONS(6122), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6122), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6122), + [anon_sym_CARET] = ACTIONS(6122), + [anon_sym_POUND] = ACTIONS(113), }, - [2166] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5618), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5371), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4317), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5026), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2166), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5787), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5789), - [anon_sym_DOT_DOT_LT] = ACTIONS(5789), - [anon_sym_null] = ACTIONS(5791), - [anon_sym_true] = ACTIONS(5793), - [anon_sym_false] = ACTIONS(5793), - [aux_sym__val_number_decimal_token1] = ACTIONS(5795), - [aux_sym__val_number_decimal_token2] = ACTIONS(5797), - [anon_sym_DOT2] = ACTIONS(5799), - [aux_sym__val_number_decimal_token3] = ACTIONS(5801), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5803), - [aux_sym__val_number_token5] = ACTIONS(5803), - [aux_sym__val_number_token6] = ACTIONS(5803), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5805), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2440] = { + [sym_comment] = STATE(2440), + [ts_builtin_sym_end] = ACTIONS(6158), + [anon_sym_export] = ACTIONS(6156), + [anon_sym_alias] = ACTIONS(6156), + [anon_sym_let] = ACTIONS(6156), + [anon_sym_let_DASHenv] = ACTIONS(6156), + [anon_sym_mut] = ACTIONS(6156), + [anon_sym_const] = ACTIONS(6156), + [anon_sym_SEMI] = ACTIONS(6156), + [sym_cmd_identifier] = ACTIONS(6156), + [anon_sym_LF] = ACTIONS(6158), + [anon_sym_def] = ACTIONS(6156), + [anon_sym_export_DASHenv] = ACTIONS(6156), + [anon_sym_extern] = ACTIONS(6156), + [anon_sym_module] = ACTIONS(6156), + [anon_sym_use] = ACTIONS(6156), + [anon_sym_LBRACK] = ACTIONS(6156), + [anon_sym_LPAREN] = ACTIONS(6156), + [anon_sym_DOLLAR] = ACTIONS(6156), + [anon_sym_error] = ACTIONS(6156), + [anon_sym_DASH] = ACTIONS(6156), + [anon_sym_break] = ACTIONS(6156), + [anon_sym_continue] = ACTIONS(6156), + [anon_sym_for] = ACTIONS(6156), + [anon_sym_loop] = ACTIONS(6156), + [anon_sym_while] = ACTIONS(6156), + [anon_sym_do] = ACTIONS(6156), + [anon_sym_if] = ACTIONS(6156), + [anon_sym_match] = ACTIONS(6156), + [anon_sym_LBRACE] = ACTIONS(6156), + [anon_sym_DOT_DOT] = ACTIONS(6156), + [anon_sym_try] = ACTIONS(6156), + [anon_sym_return] = ACTIONS(6156), + [anon_sym_source] = ACTIONS(6156), + [anon_sym_source_DASHenv] = ACTIONS(6156), + [anon_sym_register] = ACTIONS(6156), + [anon_sym_hide] = ACTIONS(6156), + [anon_sym_hide_DASHenv] = ACTIONS(6156), + [anon_sym_overlay] = ACTIONS(6156), + [anon_sym_where] = ACTIONS(6156), + [anon_sym_not] = ACTIONS(6156), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6156), + [anon_sym_DOT_DOT_LT] = ACTIONS(6156), + [anon_sym_null] = ACTIONS(6156), + [anon_sym_true] = ACTIONS(6156), + [anon_sym_false] = ACTIONS(6156), + [aux_sym__val_number_decimal_token1] = ACTIONS(6156), + [aux_sym__val_number_decimal_token2] = ACTIONS(6156), + [anon_sym_DOT2] = ACTIONS(6156), + [aux_sym__val_number_decimal_token3] = ACTIONS(6156), + [aux_sym__val_number_token1] = ACTIONS(6156), + [aux_sym__val_number_token2] = ACTIONS(6156), + [aux_sym__val_number_token3] = ACTIONS(6156), + [aux_sym__val_number_token4] = ACTIONS(6156), + [aux_sym__val_number_token5] = ACTIONS(6156), + [aux_sym__val_number_token6] = ACTIONS(6156), + [anon_sym_0b] = ACTIONS(6156), + [anon_sym_0o] = ACTIONS(6156), + [anon_sym_0x] = ACTIONS(6156), + [sym_val_date] = ACTIONS(6156), + [anon_sym_DQUOTE] = ACTIONS(6156), + [sym__str_single_quotes] = ACTIONS(6156), + [sym__str_back_ticks] = ACTIONS(6156), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6156), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6156), + [anon_sym_CARET] = ACTIONS(6156), + [anon_sym_POUND] = ACTIONS(113), }, - [2167] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5619), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5371), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4317), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5033), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2167), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5787), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5789), - [anon_sym_DOT_DOT_LT] = ACTIONS(5789), - [anon_sym_null] = ACTIONS(5791), - [anon_sym_true] = ACTIONS(5793), - [anon_sym_false] = ACTIONS(5793), - [aux_sym__val_number_decimal_token1] = ACTIONS(5795), - [aux_sym__val_number_decimal_token2] = ACTIONS(5797), - [anon_sym_DOT2] = ACTIONS(5799), - [aux_sym__val_number_decimal_token3] = ACTIONS(5801), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5803), - [aux_sym__val_number_token5] = ACTIONS(5803), - [aux_sym__val_number_token6] = ACTIONS(5803), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5805), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2441] = { + [sym_comment] = STATE(2441), + [ts_builtin_sym_end] = ACTIONS(5952), + [anon_sym_export] = ACTIONS(5950), + [anon_sym_alias] = ACTIONS(5950), + [anon_sym_let] = ACTIONS(5950), + [anon_sym_let_DASHenv] = ACTIONS(5950), + [anon_sym_mut] = ACTIONS(5950), + [anon_sym_const] = ACTIONS(5950), + [anon_sym_SEMI] = ACTIONS(5950), + [sym_cmd_identifier] = ACTIONS(5950), + [anon_sym_LF] = ACTIONS(5952), + [anon_sym_def] = ACTIONS(5950), + [anon_sym_export_DASHenv] = ACTIONS(5950), + [anon_sym_extern] = ACTIONS(5950), + [anon_sym_module] = ACTIONS(5950), + [anon_sym_use] = ACTIONS(5950), + [anon_sym_LBRACK] = ACTIONS(5950), + [anon_sym_LPAREN] = ACTIONS(5950), + [anon_sym_DOLLAR] = ACTIONS(5950), + [anon_sym_error] = ACTIONS(5950), + [anon_sym_DASH] = ACTIONS(5950), + [anon_sym_break] = ACTIONS(5950), + [anon_sym_continue] = ACTIONS(5950), + [anon_sym_for] = ACTIONS(5950), + [anon_sym_loop] = ACTIONS(5950), + [anon_sym_while] = ACTIONS(5950), + [anon_sym_do] = ACTIONS(5950), + [anon_sym_if] = ACTIONS(5950), + [anon_sym_match] = ACTIONS(5950), + [anon_sym_LBRACE] = ACTIONS(5950), + [anon_sym_DOT_DOT] = ACTIONS(5950), + [anon_sym_try] = ACTIONS(5950), + [anon_sym_return] = ACTIONS(5950), + [anon_sym_source] = ACTIONS(5950), + [anon_sym_source_DASHenv] = ACTIONS(5950), + [anon_sym_register] = ACTIONS(5950), + [anon_sym_hide] = ACTIONS(5950), + [anon_sym_hide_DASHenv] = ACTIONS(5950), + [anon_sym_overlay] = ACTIONS(5950), + [anon_sym_where] = ACTIONS(5950), + [anon_sym_not] = ACTIONS(5950), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5950), + [anon_sym_DOT_DOT_LT] = ACTIONS(5950), + [anon_sym_null] = ACTIONS(5950), + [anon_sym_true] = ACTIONS(5950), + [anon_sym_false] = ACTIONS(5950), + [aux_sym__val_number_decimal_token1] = ACTIONS(5950), + [aux_sym__val_number_decimal_token2] = ACTIONS(5950), + [anon_sym_DOT2] = ACTIONS(5950), + [aux_sym__val_number_decimal_token3] = ACTIONS(5950), + [aux_sym__val_number_token1] = ACTIONS(5950), + [aux_sym__val_number_token2] = ACTIONS(5950), + [aux_sym__val_number_token3] = ACTIONS(5950), + [aux_sym__val_number_token4] = ACTIONS(5950), + [aux_sym__val_number_token5] = ACTIONS(5950), + [aux_sym__val_number_token6] = ACTIONS(5950), + [anon_sym_0b] = ACTIONS(5950), + [anon_sym_0o] = ACTIONS(5950), + [anon_sym_0x] = ACTIONS(5950), + [sym_val_date] = ACTIONS(5950), + [anon_sym_DQUOTE] = ACTIONS(5950), + [sym__str_single_quotes] = ACTIONS(5950), + [sym__str_back_ticks] = ACTIONS(5950), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5950), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5950), + [anon_sym_POUND] = ACTIONS(113), }, - [2168] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5620), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5371), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4317), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5036), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2168), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5787), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5789), - [anon_sym_DOT_DOT_LT] = ACTIONS(5789), - [anon_sym_null] = ACTIONS(5791), - [anon_sym_true] = ACTIONS(5793), - [anon_sym_false] = ACTIONS(5793), - [aux_sym__val_number_decimal_token1] = ACTIONS(5795), - [aux_sym__val_number_decimal_token2] = ACTIONS(5797), - [anon_sym_DOT2] = ACTIONS(5799), - [aux_sym__val_number_decimal_token3] = ACTIONS(5801), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5803), - [aux_sym__val_number_token5] = ACTIONS(5803), - [aux_sym__val_number_token6] = ACTIONS(5803), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5805), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2442] = { + [sym_comment] = STATE(2442), + [ts_builtin_sym_end] = ACTIONS(5964), + [anon_sym_export] = ACTIONS(5962), + [anon_sym_alias] = ACTIONS(5962), + [anon_sym_let] = ACTIONS(5962), + [anon_sym_let_DASHenv] = ACTIONS(5962), + [anon_sym_mut] = ACTIONS(5962), + [anon_sym_const] = ACTIONS(5962), + [anon_sym_SEMI] = ACTIONS(5962), + [sym_cmd_identifier] = ACTIONS(5962), + [anon_sym_LF] = ACTIONS(5964), + [anon_sym_def] = ACTIONS(5962), + [anon_sym_export_DASHenv] = ACTIONS(5962), + [anon_sym_extern] = ACTIONS(5962), + [anon_sym_module] = ACTIONS(5962), + [anon_sym_use] = ACTIONS(5962), + [anon_sym_LBRACK] = ACTIONS(5962), + [anon_sym_LPAREN] = ACTIONS(5962), + [anon_sym_DOLLAR] = ACTIONS(5962), + [anon_sym_error] = ACTIONS(5962), + [anon_sym_DASH] = ACTIONS(5962), + [anon_sym_break] = ACTIONS(5962), + [anon_sym_continue] = ACTIONS(5962), + [anon_sym_for] = ACTIONS(5962), + [anon_sym_loop] = ACTIONS(5962), + [anon_sym_while] = ACTIONS(5962), + [anon_sym_do] = ACTIONS(5962), + [anon_sym_if] = ACTIONS(5962), + [anon_sym_match] = ACTIONS(5962), + [anon_sym_LBRACE] = ACTIONS(5962), + [anon_sym_DOT_DOT] = ACTIONS(5962), + [anon_sym_try] = ACTIONS(5962), + [anon_sym_return] = ACTIONS(5962), + [anon_sym_source] = ACTIONS(5962), + [anon_sym_source_DASHenv] = ACTIONS(5962), + [anon_sym_register] = ACTIONS(5962), + [anon_sym_hide] = ACTIONS(5962), + [anon_sym_hide_DASHenv] = ACTIONS(5962), + [anon_sym_overlay] = ACTIONS(5962), + [anon_sym_where] = ACTIONS(5962), + [anon_sym_not] = ACTIONS(5962), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5962), + [anon_sym_DOT_DOT_LT] = ACTIONS(5962), + [anon_sym_null] = ACTIONS(5962), + [anon_sym_true] = ACTIONS(5962), + [anon_sym_false] = ACTIONS(5962), + [aux_sym__val_number_decimal_token1] = ACTIONS(5962), + [aux_sym__val_number_decimal_token2] = ACTIONS(5962), + [anon_sym_DOT2] = ACTIONS(5962), + [aux_sym__val_number_decimal_token3] = ACTIONS(5962), + [aux_sym__val_number_token1] = ACTIONS(5962), + [aux_sym__val_number_token2] = ACTIONS(5962), + [aux_sym__val_number_token3] = ACTIONS(5962), + [aux_sym__val_number_token4] = ACTIONS(5962), + [aux_sym__val_number_token5] = ACTIONS(5962), + [aux_sym__val_number_token6] = ACTIONS(5962), + [anon_sym_0b] = ACTIONS(5962), + [anon_sym_0o] = ACTIONS(5962), + [anon_sym_0x] = ACTIONS(5962), + [sym_val_date] = ACTIONS(5962), + [anon_sym_DQUOTE] = ACTIONS(5962), + [sym__str_single_quotes] = ACTIONS(5962), + [sym__str_back_ticks] = ACTIONS(5962), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5962), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5962), + [anon_sym_CARET] = ACTIONS(5962), + [anon_sym_POUND] = ACTIONS(113), }, - [2169] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5621), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5371), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4317), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(4951), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2169), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5787), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5789), - [anon_sym_DOT_DOT_LT] = ACTIONS(5789), - [anon_sym_null] = ACTIONS(5791), - [anon_sym_true] = ACTIONS(5793), - [anon_sym_false] = ACTIONS(5793), - [aux_sym__val_number_decimal_token1] = ACTIONS(5795), - [aux_sym__val_number_decimal_token2] = ACTIONS(5797), - [anon_sym_DOT2] = ACTIONS(5799), - [aux_sym__val_number_decimal_token3] = ACTIONS(5801), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5803), - [aux_sym__val_number_token5] = ACTIONS(5803), - [aux_sym__val_number_token6] = ACTIONS(5803), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5805), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2443] = { + [sym_comment] = STATE(2443), + [ts_builtin_sym_end] = ACTIONS(5964), + [anon_sym_export] = ACTIONS(5962), + [anon_sym_alias] = ACTIONS(5962), + [anon_sym_let] = ACTIONS(5962), + [anon_sym_let_DASHenv] = ACTIONS(5962), + [anon_sym_mut] = ACTIONS(5962), + [anon_sym_const] = ACTIONS(5962), + [anon_sym_SEMI] = ACTIONS(5962), + [sym_cmd_identifier] = ACTIONS(5962), + [anon_sym_LF] = ACTIONS(5964), + [anon_sym_def] = ACTIONS(5962), + [anon_sym_export_DASHenv] = ACTIONS(5962), + [anon_sym_extern] = ACTIONS(5962), + [anon_sym_module] = ACTIONS(5962), + [anon_sym_use] = ACTIONS(5962), + [anon_sym_LBRACK] = ACTIONS(5962), + [anon_sym_LPAREN] = ACTIONS(5962), + [anon_sym_DOLLAR] = ACTIONS(5962), + [anon_sym_error] = ACTIONS(5962), + [anon_sym_DASH] = ACTIONS(5962), + [anon_sym_break] = ACTIONS(5962), + [anon_sym_continue] = ACTIONS(5962), + [anon_sym_for] = ACTIONS(5962), + [anon_sym_loop] = ACTIONS(5962), + [anon_sym_while] = ACTIONS(5962), + [anon_sym_do] = ACTIONS(5962), + [anon_sym_if] = ACTIONS(5962), + [anon_sym_match] = ACTIONS(5962), + [anon_sym_LBRACE] = ACTIONS(5962), + [anon_sym_DOT_DOT] = ACTIONS(5962), + [anon_sym_try] = ACTIONS(5962), + [anon_sym_return] = ACTIONS(5962), + [anon_sym_source] = ACTIONS(5962), + [anon_sym_source_DASHenv] = ACTIONS(5962), + [anon_sym_register] = ACTIONS(5962), + [anon_sym_hide] = ACTIONS(5962), + [anon_sym_hide_DASHenv] = ACTIONS(5962), + [anon_sym_overlay] = ACTIONS(5962), + [anon_sym_where] = ACTIONS(5962), + [anon_sym_not] = ACTIONS(5962), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5962), + [anon_sym_DOT_DOT_LT] = ACTIONS(5962), + [anon_sym_null] = ACTIONS(5962), + [anon_sym_true] = ACTIONS(5962), + [anon_sym_false] = ACTIONS(5962), + [aux_sym__val_number_decimal_token1] = ACTIONS(5962), + [aux_sym__val_number_decimal_token2] = ACTIONS(5962), + [anon_sym_DOT2] = ACTIONS(5962), + [aux_sym__val_number_decimal_token3] = ACTIONS(5962), + [aux_sym__val_number_token1] = ACTIONS(5962), + [aux_sym__val_number_token2] = ACTIONS(5962), + [aux_sym__val_number_token3] = ACTIONS(5962), + [aux_sym__val_number_token4] = ACTIONS(5962), + [aux_sym__val_number_token5] = ACTIONS(5962), + [aux_sym__val_number_token6] = ACTIONS(5962), + [anon_sym_0b] = ACTIONS(5962), + [anon_sym_0o] = ACTIONS(5962), + [anon_sym_0x] = ACTIONS(5962), + [sym_val_date] = ACTIONS(5962), + [anon_sym_DQUOTE] = ACTIONS(5962), + [sym__str_single_quotes] = ACTIONS(5962), + [sym__str_back_ticks] = ACTIONS(5962), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5962), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5962), + [anon_sym_CARET] = ACTIONS(5962), + [anon_sym_POUND] = ACTIONS(113), }, - [2170] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5622), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5371), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4317), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5052), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2170), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5787), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5789), - [anon_sym_DOT_DOT_LT] = ACTIONS(5789), - [anon_sym_null] = ACTIONS(5791), - [anon_sym_true] = ACTIONS(5793), - [anon_sym_false] = ACTIONS(5793), - [aux_sym__val_number_decimal_token1] = ACTIONS(5795), - [aux_sym__val_number_decimal_token2] = ACTIONS(5797), - [anon_sym_DOT2] = ACTIONS(5799), - [aux_sym__val_number_decimal_token3] = ACTIONS(5801), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5803), - [aux_sym__val_number_token5] = ACTIONS(5803), - [aux_sym__val_number_token6] = ACTIONS(5803), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5805), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2444] = { + [sym_comment] = STATE(2444), + [ts_builtin_sym_end] = ACTIONS(6120), + [anon_sym_export] = ACTIONS(6118), + [anon_sym_alias] = ACTIONS(6118), + [anon_sym_let] = ACTIONS(6118), + [anon_sym_let_DASHenv] = ACTIONS(6118), + [anon_sym_mut] = ACTIONS(6118), + [anon_sym_const] = ACTIONS(6118), + [anon_sym_SEMI] = ACTIONS(6118), + [sym_cmd_identifier] = ACTIONS(6118), + [anon_sym_LF] = ACTIONS(6120), + [anon_sym_def] = ACTIONS(6118), + [anon_sym_export_DASHenv] = ACTIONS(6118), + [anon_sym_extern] = ACTIONS(6118), + [anon_sym_module] = ACTIONS(6118), + [anon_sym_use] = ACTIONS(6118), + [anon_sym_LBRACK] = ACTIONS(6118), + [anon_sym_LPAREN] = ACTIONS(6118), + [anon_sym_DOLLAR] = ACTIONS(6118), + [anon_sym_error] = ACTIONS(6118), + [anon_sym_DASH] = ACTIONS(6118), + [anon_sym_break] = ACTIONS(6118), + [anon_sym_continue] = ACTIONS(6118), + [anon_sym_for] = ACTIONS(6118), + [anon_sym_loop] = ACTIONS(6118), + [anon_sym_while] = ACTIONS(6118), + [anon_sym_do] = ACTIONS(6118), + [anon_sym_if] = ACTIONS(6118), + [anon_sym_match] = ACTIONS(6118), + [anon_sym_LBRACE] = ACTIONS(6118), + [anon_sym_DOT_DOT] = ACTIONS(6118), + [anon_sym_try] = ACTIONS(6118), + [anon_sym_return] = ACTIONS(6118), + [anon_sym_source] = ACTIONS(6118), + [anon_sym_source_DASHenv] = ACTIONS(6118), + [anon_sym_register] = ACTIONS(6118), + [anon_sym_hide] = ACTIONS(6118), + [anon_sym_hide_DASHenv] = ACTIONS(6118), + [anon_sym_overlay] = ACTIONS(6118), + [anon_sym_where] = ACTIONS(6118), + [anon_sym_not] = ACTIONS(6118), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6118), + [anon_sym_DOT_DOT_LT] = ACTIONS(6118), + [anon_sym_null] = ACTIONS(6118), + [anon_sym_true] = ACTIONS(6118), + [anon_sym_false] = ACTIONS(6118), + [aux_sym__val_number_decimal_token1] = ACTIONS(6118), + [aux_sym__val_number_decimal_token2] = ACTIONS(6118), + [anon_sym_DOT2] = ACTIONS(6118), + [aux_sym__val_number_decimal_token3] = ACTIONS(6118), + [aux_sym__val_number_token1] = ACTIONS(6118), + [aux_sym__val_number_token2] = ACTIONS(6118), + [aux_sym__val_number_token3] = ACTIONS(6118), + [aux_sym__val_number_token4] = ACTIONS(6118), + [aux_sym__val_number_token5] = ACTIONS(6118), + [aux_sym__val_number_token6] = ACTIONS(6118), + [anon_sym_0b] = ACTIONS(6118), + [anon_sym_0o] = ACTIONS(6118), + [anon_sym_0x] = ACTIONS(6118), + [sym_val_date] = ACTIONS(6118), + [anon_sym_DQUOTE] = ACTIONS(6118), + [sym__str_single_quotes] = ACTIONS(6118), + [sym__str_back_ticks] = ACTIONS(6118), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6118), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6118), + [anon_sym_CARET] = ACTIONS(6118), + [anon_sym_POUND] = ACTIONS(113), }, - [2171] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5623), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5371), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4317), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5054), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2171), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5787), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5789), - [anon_sym_DOT_DOT_LT] = ACTIONS(5789), - [anon_sym_null] = ACTIONS(5791), - [anon_sym_true] = ACTIONS(5793), - [anon_sym_false] = ACTIONS(5793), - [aux_sym__val_number_decimal_token1] = ACTIONS(5795), - [aux_sym__val_number_decimal_token2] = ACTIONS(5797), - [anon_sym_DOT2] = ACTIONS(5799), - [aux_sym__val_number_decimal_token3] = ACTIONS(5801), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5803), - [aux_sym__val_number_token5] = ACTIONS(5803), - [aux_sym__val_number_token6] = ACTIONS(5803), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5805), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2445] = { + [sym_comment] = STATE(2445), + [ts_builtin_sym_end] = ACTIONS(6019), + [anon_sym_export] = ACTIONS(6017), + [anon_sym_alias] = ACTIONS(6017), + [anon_sym_let] = ACTIONS(6017), + [anon_sym_let_DASHenv] = ACTIONS(6017), + [anon_sym_mut] = ACTIONS(6017), + [anon_sym_const] = ACTIONS(6017), + [anon_sym_SEMI] = ACTIONS(6017), + [sym_cmd_identifier] = ACTIONS(6017), + [anon_sym_LF] = ACTIONS(6019), + [anon_sym_def] = ACTIONS(6017), + [anon_sym_export_DASHenv] = ACTIONS(6017), + [anon_sym_extern] = ACTIONS(6017), + [anon_sym_module] = ACTIONS(6017), + [anon_sym_use] = ACTIONS(6017), + [anon_sym_LBRACK] = ACTIONS(6017), + [anon_sym_LPAREN] = ACTIONS(6017), + [anon_sym_DOLLAR] = ACTIONS(6017), + [anon_sym_error] = ACTIONS(6017), + [anon_sym_DASH] = ACTIONS(6017), + [anon_sym_break] = ACTIONS(6017), + [anon_sym_continue] = ACTIONS(6017), + [anon_sym_for] = ACTIONS(6017), + [anon_sym_loop] = ACTIONS(6017), + [anon_sym_while] = ACTIONS(6017), + [anon_sym_do] = ACTIONS(6017), + [anon_sym_if] = ACTIONS(6017), + [anon_sym_match] = ACTIONS(6017), + [anon_sym_LBRACE] = ACTIONS(6017), + [anon_sym_DOT_DOT] = ACTIONS(6017), + [anon_sym_try] = ACTIONS(6017), + [anon_sym_return] = ACTIONS(6017), + [anon_sym_source] = ACTIONS(6017), + [anon_sym_source_DASHenv] = ACTIONS(6017), + [anon_sym_register] = ACTIONS(6017), + [anon_sym_hide] = ACTIONS(6017), + [anon_sym_hide_DASHenv] = ACTIONS(6017), + [anon_sym_overlay] = ACTIONS(6017), + [anon_sym_where] = ACTIONS(6017), + [anon_sym_not] = ACTIONS(6017), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6017), + [anon_sym_DOT_DOT_LT] = ACTIONS(6017), + [anon_sym_null] = ACTIONS(6017), + [anon_sym_true] = ACTIONS(6017), + [anon_sym_false] = ACTIONS(6017), + [aux_sym__val_number_decimal_token1] = ACTIONS(6017), + [aux_sym__val_number_decimal_token2] = ACTIONS(6017), + [anon_sym_DOT2] = ACTIONS(6017), + [aux_sym__val_number_decimal_token3] = ACTIONS(6017), + [aux_sym__val_number_token1] = ACTIONS(6017), + [aux_sym__val_number_token2] = ACTIONS(6017), + [aux_sym__val_number_token3] = ACTIONS(6017), + [aux_sym__val_number_token4] = ACTIONS(6017), + [aux_sym__val_number_token5] = ACTIONS(6017), + [aux_sym__val_number_token6] = ACTIONS(6017), + [anon_sym_0b] = ACTIONS(6017), + [anon_sym_0o] = ACTIONS(6017), + [anon_sym_0x] = ACTIONS(6017), + [sym_val_date] = ACTIONS(6017), + [anon_sym_DQUOTE] = ACTIONS(6017), + [sym__str_single_quotes] = ACTIONS(6017), + [sym__str_back_ticks] = ACTIONS(6017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6017), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6017), + [anon_sym_CARET] = ACTIONS(6017), + [anon_sym_POUND] = ACTIONS(113), }, - [2172] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5624), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5371), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4317), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5067), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2172), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5787), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5789), - [anon_sym_DOT_DOT_LT] = ACTIONS(5789), - [anon_sym_null] = ACTIONS(5791), - [anon_sym_true] = ACTIONS(5793), - [anon_sym_false] = ACTIONS(5793), - [aux_sym__val_number_decimal_token1] = ACTIONS(5795), - [aux_sym__val_number_decimal_token2] = ACTIONS(5797), - [anon_sym_DOT2] = ACTIONS(5799), - [aux_sym__val_number_decimal_token3] = ACTIONS(5801), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5803), - [aux_sym__val_number_token5] = ACTIONS(5803), - [aux_sym__val_number_token6] = ACTIONS(5803), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5805), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2446] = { + [sym_comment] = STATE(2446), + [ts_builtin_sym_end] = ACTIONS(6140), + [anon_sym_export] = ACTIONS(6138), + [anon_sym_alias] = ACTIONS(6138), + [anon_sym_let] = ACTIONS(6138), + [anon_sym_let_DASHenv] = ACTIONS(6138), + [anon_sym_mut] = ACTIONS(6138), + [anon_sym_const] = ACTIONS(6138), + [anon_sym_SEMI] = ACTIONS(6138), + [sym_cmd_identifier] = ACTIONS(6138), + [anon_sym_LF] = ACTIONS(6140), + [anon_sym_def] = ACTIONS(6138), + [anon_sym_export_DASHenv] = ACTIONS(6138), + [anon_sym_extern] = ACTIONS(6138), + [anon_sym_module] = ACTIONS(6138), + [anon_sym_use] = ACTIONS(6138), + [anon_sym_LBRACK] = ACTIONS(6138), + [anon_sym_LPAREN] = ACTIONS(6138), + [anon_sym_DOLLAR] = ACTIONS(6138), + [anon_sym_error] = ACTIONS(6138), + [anon_sym_DASH] = ACTIONS(6138), + [anon_sym_break] = ACTIONS(6138), + [anon_sym_continue] = ACTIONS(6138), + [anon_sym_for] = ACTIONS(6138), + [anon_sym_loop] = ACTIONS(6138), + [anon_sym_while] = ACTIONS(6138), + [anon_sym_do] = ACTIONS(6138), + [anon_sym_if] = ACTIONS(6138), + [anon_sym_match] = ACTIONS(6138), + [anon_sym_LBRACE] = ACTIONS(6138), + [anon_sym_DOT_DOT] = ACTIONS(6138), + [anon_sym_try] = ACTIONS(6138), + [anon_sym_return] = ACTIONS(6138), + [anon_sym_source] = ACTIONS(6138), + [anon_sym_source_DASHenv] = ACTIONS(6138), + [anon_sym_register] = ACTIONS(6138), + [anon_sym_hide] = ACTIONS(6138), + [anon_sym_hide_DASHenv] = ACTIONS(6138), + [anon_sym_overlay] = ACTIONS(6138), + [anon_sym_where] = ACTIONS(6138), + [anon_sym_not] = ACTIONS(6138), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6138), + [anon_sym_DOT_DOT_LT] = ACTIONS(6138), + [anon_sym_null] = ACTIONS(6138), + [anon_sym_true] = ACTIONS(6138), + [anon_sym_false] = ACTIONS(6138), + [aux_sym__val_number_decimal_token1] = ACTIONS(6138), + [aux_sym__val_number_decimal_token2] = ACTIONS(6138), + [anon_sym_DOT2] = ACTIONS(6138), + [aux_sym__val_number_decimal_token3] = ACTIONS(6138), + [aux_sym__val_number_token1] = ACTIONS(6138), + [aux_sym__val_number_token2] = ACTIONS(6138), + [aux_sym__val_number_token3] = ACTIONS(6138), + [aux_sym__val_number_token4] = ACTIONS(6138), + [aux_sym__val_number_token5] = ACTIONS(6138), + [aux_sym__val_number_token6] = ACTIONS(6138), + [anon_sym_0b] = ACTIONS(6138), + [anon_sym_0o] = ACTIONS(6138), + [anon_sym_0x] = ACTIONS(6138), + [sym_val_date] = ACTIONS(6138), + [anon_sym_DQUOTE] = ACTIONS(6138), + [sym__str_single_quotes] = ACTIONS(6138), + [sym__str_back_ticks] = ACTIONS(6138), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6138), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6138), + [anon_sym_CARET] = ACTIONS(6138), + [anon_sym_POUND] = ACTIONS(113), }, - [2173] = { - [sym_expr_unary] = STATE(6727), - [sym__expr_unary_minus] = STATE(6665), - [sym_expr_binary] = STATE(6727), - [sym__expr_binary_expression] = STATE(6737), - [sym_expr_parenthesized] = STATE(6727), - [sym__val_range] = STATE(10688), - [sym__value] = STATE(6727), - [sym_val_nothing] = STATE(6724), - [sym_val_bool] = STATE(6425), - [sym_val_variable] = STATE(6724), - [sym__var] = STATE(6112), - [sym_val_number] = STATE(6724), - [sym__val_number_decimal] = STATE(5189), - [sym__val_number] = STATE(6672), - [sym_val_duration] = STATE(6724), - [sym_val_filesize] = STATE(6724), - [sym_val_binary] = STATE(6724), - [sym_val_string] = STATE(6724), - [sym__str_double_quotes] = STATE(6725), - [sym_val_interpolated] = STATE(6724), - [sym__inter_single_quotes] = STATE(6738), - [sym__inter_double_quotes] = STATE(6652), - [sym_val_list] = STATE(6724), - [sym_val_record] = STATE(6724), - [sym_val_table] = STATE(6724), - [sym_val_closure] = STATE(6724), - [sym_unquoted] = STATE(6683), - [sym__unquoted_anonymous_prefix] = STATE(10915), - [sym_comment] = STATE(2173), - [anon_sym_LBRACK] = ACTIONS(4692), - [anon_sym_LPAREN] = ACTIONS(5807), - [anon_sym_DOLLAR] = ACTIONS(5809), - [anon_sym_DASH] = ACTIONS(4698), - [anon_sym_LBRACE] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_not] = ACTIONS(4704), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5813), - [anon_sym_DOT_DOT_LT] = ACTIONS(5813), - [anon_sym_null] = ACTIONS(4708), - [anon_sym_true] = ACTIONS(4710), - [anon_sym_false] = ACTIONS(4710), - [aux_sym__val_number_decimal_token1] = ACTIONS(4712), - [aux_sym__val_number_decimal_token2] = ACTIONS(4714), - [anon_sym_DOT2] = ACTIONS(5815), - [aux_sym__val_number_decimal_token3] = ACTIONS(4718), - [aux_sym__val_number_token1] = ACTIONS(4720), - [aux_sym__val_number_token2] = ACTIONS(4720), - [aux_sym__val_number_token3] = ACTIONS(4720), - [aux_sym__val_number_token4] = ACTIONS(5817), - [aux_sym__val_number_token5] = ACTIONS(5817), - [aux_sym__val_number_token6] = ACTIONS(5817), - [anon_sym_0b] = ACTIONS(4724), - [anon_sym_0o] = ACTIONS(4726), - [anon_sym_0x] = ACTIONS(4726), - [sym_val_date] = ACTIONS(4728), - [anon_sym_DQUOTE] = ACTIONS(4730), - [sym__str_single_quotes] = ACTIONS(4732), - [sym__str_back_ticks] = ACTIONS(4732), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4734), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4736), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5819), - [anon_sym_POUND] = ACTIONS(3), + [2447] = { + [sym_comment] = STATE(2447), + [ts_builtin_sym_end] = ACTIONS(6150), + [anon_sym_export] = ACTIONS(6148), + [anon_sym_alias] = ACTIONS(6148), + [anon_sym_let] = ACTIONS(6148), + [anon_sym_let_DASHenv] = ACTIONS(6148), + [anon_sym_mut] = ACTIONS(6148), + [anon_sym_const] = ACTIONS(6148), + [anon_sym_SEMI] = ACTIONS(6148), + [sym_cmd_identifier] = ACTIONS(6148), + [anon_sym_LF] = ACTIONS(6150), + [anon_sym_def] = ACTIONS(6148), + [anon_sym_export_DASHenv] = ACTIONS(6148), + [anon_sym_extern] = ACTIONS(6148), + [anon_sym_module] = ACTIONS(6148), + [anon_sym_use] = ACTIONS(6148), + [anon_sym_LBRACK] = ACTIONS(6148), + [anon_sym_LPAREN] = ACTIONS(6148), + [anon_sym_DOLLAR] = ACTIONS(6148), + [anon_sym_error] = ACTIONS(6148), + [anon_sym_DASH] = ACTIONS(6148), + [anon_sym_break] = ACTIONS(6148), + [anon_sym_continue] = ACTIONS(6148), + [anon_sym_for] = ACTIONS(6148), + [anon_sym_loop] = ACTIONS(6148), + [anon_sym_while] = ACTIONS(6148), + [anon_sym_do] = ACTIONS(6148), + [anon_sym_if] = ACTIONS(6148), + [anon_sym_match] = ACTIONS(6148), + [anon_sym_LBRACE] = ACTIONS(6148), + [anon_sym_DOT_DOT] = ACTIONS(6148), + [anon_sym_try] = ACTIONS(6148), + [anon_sym_return] = ACTIONS(6148), + [anon_sym_source] = ACTIONS(6148), + [anon_sym_source_DASHenv] = ACTIONS(6148), + [anon_sym_register] = ACTIONS(6148), + [anon_sym_hide] = ACTIONS(6148), + [anon_sym_hide_DASHenv] = ACTIONS(6148), + [anon_sym_overlay] = ACTIONS(6148), + [anon_sym_where] = ACTIONS(6148), + [anon_sym_not] = ACTIONS(6148), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6148), + [anon_sym_DOT_DOT_LT] = ACTIONS(6148), + [anon_sym_null] = ACTIONS(6148), + [anon_sym_true] = ACTIONS(6148), + [anon_sym_false] = ACTIONS(6148), + [aux_sym__val_number_decimal_token1] = ACTIONS(6148), + [aux_sym__val_number_decimal_token2] = ACTIONS(6148), + [anon_sym_DOT2] = ACTIONS(6148), + [aux_sym__val_number_decimal_token3] = ACTIONS(6148), + [aux_sym__val_number_token1] = ACTIONS(6148), + [aux_sym__val_number_token2] = ACTIONS(6148), + [aux_sym__val_number_token3] = ACTIONS(6148), + [aux_sym__val_number_token4] = ACTIONS(6148), + [aux_sym__val_number_token5] = ACTIONS(6148), + [aux_sym__val_number_token6] = ACTIONS(6148), + [anon_sym_0b] = ACTIONS(6148), + [anon_sym_0o] = ACTIONS(6148), + [anon_sym_0x] = ACTIONS(6148), + [sym_val_date] = ACTIONS(6148), + [anon_sym_DQUOTE] = ACTIONS(6148), + [sym__str_single_quotes] = ACTIONS(6148), + [sym__str_back_ticks] = ACTIONS(6148), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6148), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6148), + [anon_sym_CARET] = ACTIONS(6148), + [anon_sym_POUND] = ACTIONS(113), }, - [2174] = { - [sym_expr_unary] = STATE(6727), - [sym__expr_unary_minus] = STATE(6665), - [sym_expr_binary] = STATE(6727), - [sym__expr_binary_expression] = STATE(6627), - [sym_expr_parenthesized] = STATE(6727), - [sym__val_range] = STATE(10688), - [sym__value] = STATE(6727), - [sym_val_nothing] = STATE(6724), - [sym_val_bool] = STATE(6425), - [sym_val_variable] = STATE(6724), - [sym__var] = STATE(6112), - [sym_val_number] = STATE(6724), - [sym__val_number_decimal] = STATE(5189), - [sym__val_number] = STATE(6672), - [sym_val_duration] = STATE(6724), - [sym_val_filesize] = STATE(6724), - [sym_val_binary] = STATE(6724), - [sym_val_string] = STATE(6724), - [sym__str_double_quotes] = STATE(6725), - [sym_val_interpolated] = STATE(6724), - [sym__inter_single_quotes] = STATE(6738), - [sym__inter_double_quotes] = STATE(6652), - [sym_val_list] = STATE(6724), - [sym_val_record] = STATE(6724), - [sym_val_table] = STATE(6724), - [sym_val_closure] = STATE(6724), - [sym_unquoted] = STATE(6653), - [sym__unquoted_anonymous_prefix] = STATE(10915), - [sym_comment] = STATE(2174), - [anon_sym_LBRACK] = ACTIONS(4692), - [anon_sym_LPAREN] = ACTIONS(5807), - [anon_sym_DOLLAR] = ACTIONS(5809), - [anon_sym_DASH] = ACTIONS(4698), - [anon_sym_LBRACE] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_not] = ACTIONS(4704), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5813), - [anon_sym_DOT_DOT_LT] = ACTIONS(5813), - [anon_sym_null] = ACTIONS(4708), - [anon_sym_true] = ACTIONS(4710), - [anon_sym_false] = ACTIONS(4710), - [aux_sym__val_number_decimal_token1] = ACTIONS(4712), - [aux_sym__val_number_decimal_token2] = ACTIONS(4714), - [anon_sym_DOT2] = ACTIONS(5815), - [aux_sym__val_number_decimal_token3] = ACTIONS(4718), - [aux_sym__val_number_token1] = ACTIONS(4720), - [aux_sym__val_number_token2] = ACTIONS(4720), - [aux_sym__val_number_token3] = ACTIONS(4720), - [aux_sym__val_number_token4] = ACTIONS(5817), - [aux_sym__val_number_token5] = ACTIONS(5817), - [aux_sym__val_number_token6] = ACTIONS(5817), - [anon_sym_0b] = ACTIONS(4724), - [anon_sym_0o] = ACTIONS(4726), - [anon_sym_0x] = ACTIONS(4726), - [sym_val_date] = ACTIONS(4728), - [anon_sym_DQUOTE] = ACTIONS(4730), - [sym__str_single_quotes] = ACTIONS(4732), - [sym__str_back_ticks] = ACTIONS(4732), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4734), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4736), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5819), - [anon_sym_POUND] = ACTIONS(3), + [2448] = { + [sym_comment] = STATE(2448), + [ts_builtin_sym_end] = ACTIONS(6318), + [anon_sym_export] = ACTIONS(6046), + [anon_sym_alias] = ACTIONS(6046), + [anon_sym_let] = ACTIONS(6046), + [anon_sym_let_DASHenv] = ACTIONS(6046), + [anon_sym_mut] = ACTIONS(6046), + [anon_sym_const] = ACTIONS(6046), + [anon_sym_SEMI] = ACTIONS(6048), + [sym_cmd_identifier] = ACTIONS(6046), + [anon_sym_LF] = ACTIONS(6051), + [anon_sym_def] = ACTIONS(6046), + [anon_sym_export_DASHenv] = ACTIONS(6046), + [anon_sym_extern] = ACTIONS(6046), + [anon_sym_module] = ACTIONS(6046), + [anon_sym_use] = ACTIONS(6046), + [anon_sym_LBRACK] = ACTIONS(6046), + [anon_sym_LPAREN] = ACTIONS(6046), + [anon_sym_DOLLAR] = ACTIONS(6046), + [anon_sym_error] = ACTIONS(6046), + [anon_sym_DASH] = ACTIONS(6046), + [anon_sym_break] = ACTIONS(6046), + [anon_sym_continue] = ACTIONS(6046), + [anon_sym_for] = ACTIONS(6046), + [anon_sym_loop] = ACTIONS(6046), + [anon_sym_while] = ACTIONS(6046), + [anon_sym_do] = ACTIONS(6046), + [anon_sym_if] = ACTIONS(6046), + [anon_sym_match] = ACTIONS(6046), + [anon_sym_LBRACE] = ACTIONS(6046), + [anon_sym_DOT_DOT] = ACTIONS(6046), + [anon_sym_try] = ACTIONS(6046), + [anon_sym_return] = ACTIONS(6046), + [anon_sym_source] = ACTIONS(6046), + [anon_sym_source_DASHenv] = ACTIONS(6046), + [anon_sym_register] = ACTIONS(6046), + [anon_sym_hide] = ACTIONS(6046), + [anon_sym_hide_DASHenv] = ACTIONS(6046), + [anon_sym_overlay] = ACTIONS(6046), + [anon_sym_where] = ACTIONS(6046), + [anon_sym_not] = ACTIONS(6046), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6046), + [anon_sym_DOT_DOT_LT] = ACTIONS(6046), + [anon_sym_null] = ACTIONS(6046), + [anon_sym_true] = ACTIONS(6046), + [anon_sym_false] = ACTIONS(6046), + [aux_sym__val_number_decimal_token1] = ACTIONS(6046), + [aux_sym__val_number_decimal_token2] = ACTIONS(6046), + [anon_sym_DOT2] = ACTIONS(6046), + [aux_sym__val_number_decimal_token3] = ACTIONS(6046), + [aux_sym__val_number_token1] = ACTIONS(6046), + [aux_sym__val_number_token2] = ACTIONS(6046), + [aux_sym__val_number_token3] = ACTIONS(6046), + [aux_sym__val_number_token4] = ACTIONS(6046), + [aux_sym__val_number_token5] = ACTIONS(6046), + [aux_sym__val_number_token6] = ACTIONS(6046), + [anon_sym_0b] = ACTIONS(6046), + [anon_sym_0o] = ACTIONS(6046), + [anon_sym_0x] = ACTIONS(6046), + [sym_val_date] = ACTIONS(6046), + [anon_sym_DQUOTE] = ACTIONS(6046), + [sym__str_single_quotes] = ACTIONS(6046), + [sym__str_back_ticks] = ACTIONS(6046), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6046), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6046), + [anon_sym_CARET] = ACTIONS(6046), + [anon_sym_POUND] = ACTIONS(113), }, - [2175] = { - [sym_expr_unary] = STATE(6727), - [sym__expr_unary_minus] = STATE(6665), - [sym_expr_binary] = STATE(6727), - [sym__expr_binary_expression] = STATE(6700), - [sym_expr_parenthesized] = STATE(6727), - [sym__val_range] = STATE(10688), - [sym__value] = STATE(6727), - [sym_val_nothing] = STATE(6724), - [sym_val_bool] = STATE(6425), - [sym_val_variable] = STATE(6724), - [sym__var] = STATE(6112), - [sym_val_number] = STATE(6724), - [sym__val_number_decimal] = STATE(5189), - [sym__val_number] = STATE(6672), - [sym_val_duration] = STATE(6724), - [sym_val_filesize] = STATE(6724), - [sym_val_binary] = STATE(6724), - [sym_val_string] = STATE(6724), - [sym__str_double_quotes] = STATE(6725), - [sym_val_interpolated] = STATE(6724), - [sym__inter_single_quotes] = STATE(6738), - [sym__inter_double_quotes] = STATE(6652), - [sym_val_list] = STATE(6724), - [sym_val_record] = STATE(6724), - [sym_val_table] = STATE(6724), - [sym_val_closure] = STATE(6724), - [sym_unquoted] = STATE(6756), - [sym__unquoted_anonymous_prefix] = STATE(10915), - [sym_comment] = STATE(2175), - [anon_sym_LBRACK] = ACTIONS(4692), - [anon_sym_LPAREN] = ACTIONS(5807), - [anon_sym_DOLLAR] = ACTIONS(5809), - [anon_sym_DASH] = ACTIONS(4698), - [anon_sym_LBRACE] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_not] = ACTIONS(4704), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5813), - [anon_sym_DOT_DOT_LT] = ACTIONS(5813), - [anon_sym_null] = ACTIONS(4708), - [anon_sym_true] = ACTIONS(4710), - [anon_sym_false] = ACTIONS(4710), - [aux_sym__val_number_decimal_token1] = ACTIONS(4712), - [aux_sym__val_number_decimal_token2] = ACTIONS(4714), - [anon_sym_DOT2] = ACTIONS(5815), - [aux_sym__val_number_decimal_token3] = ACTIONS(4718), - [aux_sym__val_number_token1] = ACTIONS(4720), - [aux_sym__val_number_token2] = ACTIONS(4720), - [aux_sym__val_number_token3] = ACTIONS(4720), - [aux_sym__val_number_token4] = ACTIONS(5817), - [aux_sym__val_number_token5] = ACTIONS(5817), - [aux_sym__val_number_token6] = ACTIONS(5817), - [anon_sym_0b] = ACTIONS(4724), - [anon_sym_0o] = ACTIONS(4726), - [anon_sym_0x] = ACTIONS(4726), - [sym_val_date] = ACTIONS(4728), - [anon_sym_DQUOTE] = ACTIONS(4730), - [sym__str_single_quotes] = ACTIONS(4732), - [sym__str_back_ticks] = ACTIONS(4732), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4734), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4736), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5819), - [anon_sym_POUND] = ACTIONS(3), + [2449] = { + [sym_comment] = STATE(2449), + [ts_builtin_sym_end] = ACTIONS(6003), + [anon_sym_export] = ACTIONS(6001), + [anon_sym_alias] = ACTIONS(6001), + [anon_sym_let] = ACTIONS(6001), + [anon_sym_let_DASHenv] = ACTIONS(6001), + [anon_sym_mut] = ACTIONS(6001), + [anon_sym_const] = ACTIONS(6001), + [anon_sym_SEMI] = ACTIONS(6001), + [sym_cmd_identifier] = ACTIONS(6001), + [anon_sym_LF] = ACTIONS(6003), + [anon_sym_def] = ACTIONS(6001), + [anon_sym_export_DASHenv] = ACTIONS(6001), + [anon_sym_extern] = ACTIONS(6001), + [anon_sym_module] = ACTIONS(6001), + [anon_sym_use] = ACTIONS(6001), + [anon_sym_LBRACK] = ACTIONS(6001), + [anon_sym_LPAREN] = ACTIONS(6001), + [anon_sym_DOLLAR] = ACTIONS(6001), + [anon_sym_error] = ACTIONS(6001), + [anon_sym_DASH] = ACTIONS(6001), + [anon_sym_break] = ACTIONS(6001), + [anon_sym_continue] = ACTIONS(6001), + [anon_sym_for] = ACTIONS(6001), + [anon_sym_loop] = ACTIONS(6001), + [anon_sym_while] = ACTIONS(6001), + [anon_sym_do] = ACTIONS(6001), + [anon_sym_if] = ACTIONS(6001), + [anon_sym_match] = ACTIONS(6001), + [anon_sym_LBRACE] = ACTIONS(6001), + [anon_sym_DOT_DOT] = ACTIONS(6001), + [anon_sym_try] = ACTIONS(6001), + [anon_sym_return] = ACTIONS(6001), + [anon_sym_source] = ACTIONS(6001), + [anon_sym_source_DASHenv] = ACTIONS(6001), + [anon_sym_register] = ACTIONS(6001), + [anon_sym_hide] = ACTIONS(6001), + [anon_sym_hide_DASHenv] = ACTIONS(6001), + [anon_sym_overlay] = ACTIONS(6001), + [anon_sym_where] = ACTIONS(6001), + [anon_sym_not] = ACTIONS(6001), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6001), + [anon_sym_DOT_DOT_LT] = ACTIONS(6001), + [anon_sym_null] = ACTIONS(6001), + [anon_sym_true] = ACTIONS(6001), + [anon_sym_false] = ACTIONS(6001), + [aux_sym__val_number_decimal_token1] = ACTIONS(6001), + [aux_sym__val_number_decimal_token2] = ACTIONS(6001), + [anon_sym_DOT2] = ACTIONS(6001), + [aux_sym__val_number_decimal_token3] = ACTIONS(6001), + [aux_sym__val_number_token1] = ACTIONS(6001), + [aux_sym__val_number_token2] = ACTIONS(6001), + [aux_sym__val_number_token3] = ACTIONS(6001), + [aux_sym__val_number_token4] = ACTIONS(6001), + [aux_sym__val_number_token5] = ACTIONS(6001), + [aux_sym__val_number_token6] = ACTIONS(6001), + [anon_sym_0b] = ACTIONS(6001), + [anon_sym_0o] = ACTIONS(6001), + [anon_sym_0x] = ACTIONS(6001), + [sym_val_date] = ACTIONS(6001), + [anon_sym_DQUOTE] = ACTIONS(6001), + [sym__str_single_quotes] = ACTIONS(6001), + [sym__str_back_ticks] = ACTIONS(6001), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6001), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6001), + [anon_sym_CARET] = ACTIONS(6001), + [anon_sym_POUND] = ACTIONS(113), }, - [2176] = { - [sym_expr_unary] = STATE(6727), - [sym__expr_unary_minus] = STATE(6665), - [sym_expr_binary] = STATE(6727), - [sym__expr_binary_expression] = STATE(6715), - [sym_expr_parenthesized] = STATE(6727), - [sym__val_range] = STATE(10688), - [sym__value] = STATE(6727), - [sym_val_nothing] = STATE(6724), - [sym_val_bool] = STATE(6425), - [sym_val_variable] = STATE(6724), - [sym__var] = STATE(6112), - [sym_val_number] = STATE(6724), - [sym__val_number_decimal] = STATE(5189), - [sym__val_number] = STATE(6672), - [sym_val_duration] = STATE(6724), - [sym_val_filesize] = STATE(6724), - [sym_val_binary] = STATE(6724), - [sym_val_string] = STATE(6724), - [sym__str_double_quotes] = STATE(6725), - [sym_val_interpolated] = STATE(6724), - [sym__inter_single_quotes] = STATE(6738), - [sym__inter_double_quotes] = STATE(6652), - [sym_val_list] = STATE(6724), - [sym_val_record] = STATE(6724), - [sym_val_table] = STATE(6724), - [sym_val_closure] = STATE(6724), - [sym_unquoted] = STATE(6628), - [sym__unquoted_anonymous_prefix] = STATE(10915), - [sym_comment] = STATE(2176), - [anon_sym_LBRACK] = ACTIONS(4692), - [anon_sym_LPAREN] = ACTIONS(5807), - [anon_sym_DOLLAR] = ACTIONS(5809), - [anon_sym_DASH] = ACTIONS(4698), - [anon_sym_LBRACE] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_not] = ACTIONS(4704), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5813), - [anon_sym_DOT_DOT_LT] = ACTIONS(5813), - [anon_sym_null] = ACTIONS(4708), - [anon_sym_true] = ACTIONS(4710), - [anon_sym_false] = ACTIONS(4710), - [aux_sym__val_number_decimal_token1] = ACTIONS(4712), - [aux_sym__val_number_decimal_token2] = ACTIONS(4714), - [anon_sym_DOT2] = ACTIONS(5815), - [aux_sym__val_number_decimal_token3] = ACTIONS(4718), - [aux_sym__val_number_token1] = ACTIONS(4720), - [aux_sym__val_number_token2] = ACTIONS(4720), - [aux_sym__val_number_token3] = ACTIONS(4720), - [aux_sym__val_number_token4] = ACTIONS(5817), - [aux_sym__val_number_token5] = ACTIONS(5817), - [aux_sym__val_number_token6] = ACTIONS(5817), - [anon_sym_0b] = ACTIONS(4724), - [anon_sym_0o] = ACTIONS(4726), - [anon_sym_0x] = ACTIONS(4726), - [sym_val_date] = ACTIONS(4728), - [anon_sym_DQUOTE] = ACTIONS(4730), - [sym__str_single_quotes] = ACTIONS(4732), - [sym__str_back_ticks] = ACTIONS(4732), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4734), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4736), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5819), - [anon_sym_POUND] = ACTIONS(3), + [2450] = { + [sym_comment] = STATE(2450), + [ts_builtin_sym_end] = ACTIONS(6007), + [anon_sym_export] = ACTIONS(6005), + [anon_sym_alias] = ACTIONS(6005), + [anon_sym_let] = ACTIONS(6005), + [anon_sym_let_DASHenv] = ACTIONS(6005), + [anon_sym_mut] = ACTIONS(6005), + [anon_sym_const] = ACTIONS(6005), + [anon_sym_SEMI] = ACTIONS(6005), + [sym_cmd_identifier] = ACTIONS(6005), + [anon_sym_LF] = ACTIONS(6007), + [anon_sym_def] = ACTIONS(6005), + [anon_sym_export_DASHenv] = ACTIONS(6005), + [anon_sym_extern] = ACTIONS(6005), + [anon_sym_module] = ACTIONS(6005), + [anon_sym_use] = ACTIONS(6005), + [anon_sym_LBRACK] = ACTIONS(6005), + [anon_sym_LPAREN] = ACTIONS(6005), + [anon_sym_DOLLAR] = ACTIONS(6005), + [anon_sym_error] = ACTIONS(6005), + [anon_sym_DASH] = ACTIONS(6005), + [anon_sym_break] = ACTIONS(6005), + [anon_sym_continue] = ACTIONS(6005), + [anon_sym_for] = ACTIONS(6005), + [anon_sym_loop] = ACTIONS(6005), + [anon_sym_while] = ACTIONS(6005), + [anon_sym_do] = ACTIONS(6005), + [anon_sym_if] = ACTIONS(6005), + [anon_sym_match] = ACTIONS(6005), + [anon_sym_LBRACE] = ACTIONS(6005), + [anon_sym_DOT_DOT] = ACTIONS(6005), + [anon_sym_try] = ACTIONS(6005), + [anon_sym_return] = ACTIONS(6005), + [anon_sym_source] = ACTIONS(6005), + [anon_sym_source_DASHenv] = ACTIONS(6005), + [anon_sym_register] = ACTIONS(6005), + [anon_sym_hide] = ACTIONS(6005), + [anon_sym_hide_DASHenv] = ACTIONS(6005), + [anon_sym_overlay] = ACTIONS(6005), + [anon_sym_where] = ACTIONS(6005), + [anon_sym_not] = ACTIONS(6005), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6005), + [anon_sym_DOT_DOT_LT] = ACTIONS(6005), + [anon_sym_null] = ACTIONS(6005), + [anon_sym_true] = ACTIONS(6005), + [anon_sym_false] = ACTIONS(6005), + [aux_sym__val_number_decimal_token1] = ACTIONS(6005), + [aux_sym__val_number_decimal_token2] = ACTIONS(6005), + [anon_sym_DOT2] = ACTIONS(6005), + [aux_sym__val_number_decimal_token3] = ACTIONS(6005), + [aux_sym__val_number_token1] = ACTIONS(6005), + [aux_sym__val_number_token2] = ACTIONS(6005), + [aux_sym__val_number_token3] = ACTIONS(6005), + [aux_sym__val_number_token4] = ACTIONS(6005), + [aux_sym__val_number_token5] = ACTIONS(6005), + [aux_sym__val_number_token6] = ACTIONS(6005), + [anon_sym_0b] = ACTIONS(6005), + [anon_sym_0o] = ACTIONS(6005), + [anon_sym_0x] = ACTIONS(6005), + [sym_val_date] = ACTIONS(6005), + [anon_sym_DQUOTE] = ACTIONS(6005), + [sym__str_single_quotes] = ACTIONS(6005), + [sym__str_back_ticks] = ACTIONS(6005), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6005), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6005), + [anon_sym_CARET] = ACTIONS(6005), + [anon_sym_POUND] = ACTIONS(113), }, - [2177] = { - [sym_expr_unary] = STATE(6727), - [sym__expr_unary_minus] = STATE(6665), - [sym_expr_binary] = STATE(6727), - [sym__expr_binary_expression] = STATE(6717), - [sym_expr_parenthesized] = STATE(6727), - [sym__val_range] = STATE(10688), - [sym__value] = STATE(6727), - [sym_val_nothing] = STATE(6724), - [sym_val_bool] = STATE(6425), - [sym_val_variable] = STATE(6724), - [sym__var] = STATE(6112), - [sym_val_number] = STATE(6724), - [sym__val_number_decimal] = STATE(5189), - [sym__val_number] = STATE(6672), - [sym_val_duration] = STATE(6724), - [sym_val_filesize] = STATE(6724), - [sym_val_binary] = STATE(6724), - [sym_val_string] = STATE(6724), - [sym__str_double_quotes] = STATE(6725), - [sym_val_interpolated] = STATE(6724), - [sym__inter_single_quotes] = STATE(6738), - [sym__inter_double_quotes] = STATE(6652), - [sym_val_list] = STATE(6724), - [sym_val_record] = STATE(6724), - [sym_val_table] = STATE(6724), - [sym_val_closure] = STATE(6724), - [sym_unquoted] = STATE(6681), - [sym__unquoted_anonymous_prefix] = STATE(10915), - [sym_comment] = STATE(2177), - [anon_sym_LBRACK] = ACTIONS(4692), - [anon_sym_LPAREN] = ACTIONS(5807), - [anon_sym_DOLLAR] = ACTIONS(5809), - [anon_sym_DASH] = ACTIONS(4698), - [anon_sym_LBRACE] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_not] = ACTIONS(4704), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5813), - [anon_sym_DOT_DOT_LT] = ACTIONS(5813), - [anon_sym_null] = ACTIONS(4708), - [anon_sym_true] = ACTIONS(4710), - [anon_sym_false] = ACTIONS(4710), - [aux_sym__val_number_decimal_token1] = ACTIONS(4712), - [aux_sym__val_number_decimal_token2] = ACTIONS(4714), - [anon_sym_DOT2] = ACTIONS(5815), - [aux_sym__val_number_decimal_token3] = ACTIONS(4718), - [aux_sym__val_number_token1] = ACTIONS(4720), - [aux_sym__val_number_token2] = ACTIONS(4720), - [aux_sym__val_number_token3] = ACTIONS(4720), - [aux_sym__val_number_token4] = ACTIONS(5817), - [aux_sym__val_number_token5] = ACTIONS(5817), - [aux_sym__val_number_token6] = ACTIONS(5817), - [anon_sym_0b] = ACTIONS(4724), - [anon_sym_0o] = ACTIONS(4726), - [anon_sym_0x] = ACTIONS(4726), - [sym_val_date] = ACTIONS(4728), - [anon_sym_DQUOTE] = ACTIONS(4730), - [sym__str_single_quotes] = ACTIONS(4732), - [sym__str_back_ticks] = ACTIONS(4732), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4734), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4736), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5819), - [anon_sym_POUND] = ACTIONS(3), + [2451] = { + [sym_comment] = STATE(2451), + [ts_builtin_sym_end] = ACTIONS(6033), + [anon_sym_export] = ACTIONS(6031), + [anon_sym_alias] = ACTIONS(6031), + [anon_sym_let] = ACTIONS(6031), + [anon_sym_let_DASHenv] = ACTIONS(6031), + [anon_sym_mut] = ACTIONS(6031), + [anon_sym_const] = ACTIONS(6031), + [anon_sym_SEMI] = ACTIONS(6031), + [sym_cmd_identifier] = ACTIONS(6031), + [anon_sym_LF] = ACTIONS(6033), + [anon_sym_def] = ACTIONS(6031), + [anon_sym_export_DASHenv] = ACTIONS(6031), + [anon_sym_extern] = ACTIONS(6031), + [anon_sym_module] = ACTIONS(6031), + [anon_sym_use] = ACTIONS(6031), + [anon_sym_LBRACK] = ACTIONS(6031), + [anon_sym_LPAREN] = ACTIONS(6031), + [anon_sym_DOLLAR] = ACTIONS(6031), + [anon_sym_error] = ACTIONS(6031), + [anon_sym_DASH] = ACTIONS(6031), + [anon_sym_break] = ACTIONS(6031), + [anon_sym_continue] = ACTIONS(6031), + [anon_sym_for] = ACTIONS(6031), + [anon_sym_loop] = ACTIONS(6031), + [anon_sym_while] = ACTIONS(6031), + [anon_sym_do] = ACTIONS(6031), + [anon_sym_if] = ACTIONS(6031), + [anon_sym_match] = ACTIONS(6031), + [anon_sym_LBRACE] = ACTIONS(6031), + [anon_sym_DOT_DOT] = ACTIONS(6031), + [anon_sym_try] = ACTIONS(6031), + [anon_sym_return] = ACTIONS(6031), + [anon_sym_source] = ACTIONS(6031), + [anon_sym_source_DASHenv] = ACTIONS(6031), + [anon_sym_register] = ACTIONS(6031), + [anon_sym_hide] = ACTIONS(6031), + [anon_sym_hide_DASHenv] = ACTIONS(6031), + [anon_sym_overlay] = ACTIONS(6031), + [anon_sym_where] = ACTIONS(6031), + [anon_sym_not] = ACTIONS(6031), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6031), + [anon_sym_DOT_DOT_LT] = ACTIONS(6031), + [anon_sym_null] = ACTIONS(6031), + [anon_sym_true] = ACTIONS(6031), + [anon_sym_false] = ACTIONS(6031), + [aux_sym__val_number_decimal_token1] = ACTIONS(6031), + [aux_sym__val_number_decimal_token2] = ACTIONS(6031), + [anon_sym_DOT2] = ACTIONS(6031), + [aux_sym__val_number_decimal_token3] = ACTIONS(6031), + [aux_sym__val_number_token1] = ACTIONS(6031), + [aux_sym__val_number_token2] = ACTIONS(6031), + [aux_sym__val_number_token3] = ACTIONS(6031), + [aux_sym__val_number_token4] = ACTIONS(6031), + [aux_sym__val_number_token5] = ACTIONS(6031), + [aux_sym__val_number_token6] = ACTIONS(6031), + [anon_sym_0b] = ACTIONS(6031), + [anon_sym_0o] = ACTIONS(6031), + [anon_sym_0x] = ACTIONS(6031), + [sym_val_date] = ACTIONS(6031), + [anon_sym_DQUOTE] = ACTIONS(6031), + [sym__str_single_quotes] = ACTIONS(6031), + [sym__str_back_ticks] = ACTIONS(6031), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6031), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6031), + [anon_sym_CARET] = ACTIONS(6031), + [anon_sym_POUND] = ACTIONS(113), }, - [2178] = { - [sym_expr_unary] = STATE(6727), - [sym__expr_unary_minus] = STATE(6665), - [sym_expr_binary] = STATE(6727), - [sym__expr_binary_expression] = STATE(6720), - [sym_expr_parenthesized] = STATE(6727), - [sym__val_range] = STATE(10688), - [sym__value] = STATE(6727), - [sym_val_nothing] = STATE(6724), - [sym_val_bool] = STATE(6425), - [sym_val_variable] = STATE(6724), - [sym__var] = STATE(6112), - [sym_val_number] = STATE(6724), - [sym__val_number_decimal] = STATE(5189), - [sym__val_number] = STATE(6672), - [sym_val_duration] = STATE(6724), - [sym_val_filesize] = STATE(6724), - [sym_val_binary] = STATE(6724), - [sym_val_string] = STATE(6724), - [sym__str_double_quotes] = STATE(6725), - [sym_val_interpolated] = STATE(6724), - [sym__inter_single_quotes] = STATE(6738), - [sym__inter_double_quotes] = STATE(6652), - [sym_val_list] = STATE(6724), - [sym_val_record] = STATE(6724), - [sym_val_table] = STATE(6724), - [sym_val_closure] = STATE(6724), - [sym_unquoted] = STATE(6730), - [sym__unquoted_anonymous_prefix] = STATE(10915), - [sym_comment] = STATE(2178), - [anon_sym_LBRACK] = ACTIONS(4692), - [anon_sym_LPAREN] = ACTIONS(5807), - [anon_sym_DOLLAR] = ACTIONS(5809), - [anon_sym_DASH] = ACTIONS(4698), - [anon_sym_LBRACE] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_not] = ACTIONS(4704), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5813), - [anon_sym_DOT_DOT_LT] = ACTIONS(5813), - [anon_sym_null] = ACTIONS(4708), - [anon_sym_true] = ACTIONS(4710), - [anon_sym_false] = ACTIONS(4710), - [aux_sym__val_number_decimal_token1] = ACTIONS(4712), - [aux_sym__val_number_decimal_token2] = ACTIONS(4714), - [anon_sym_DOT2] = ACTIONS(5815), - [aux_sym__val_number_decimal_token3] = ACTIONS(4718), - [aux_sym__val_number_token1] = ACTIONS(4720), - [aux_sym__val_number_token2] = ACTIONS(4720), - [aux_sym__val_number_token3] = ACTIONS(4720), - [aux_sym__val_number_token4] = ACTIONS(5817), - [aux_sym__val_number_token5] = ACTIONS(5817), - [aux_sym__val_number_token6] = ACTIONS(5817), - [anon_sym_0b] = ACTIONS(4724), - [anon_sym_0o] = ACTIONS(4726), - [anon_sym_0x] = ACTIONS(4726), - [sym_val_date] = ACTIONS(4728), - [anon_sym_DQUOTE] = ACTIONS(4730), - [sym__str_single_quotes] = ACTIONS(4732), - [sym__str_back_ticks] = ACTIONS(4732), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4734), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4736), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5819), - [anon_sym_POUND] = ACTIONS(3), + [2452] = { + [sym__expr_parenthesized_immediate] = STATE(2952), + [sym__immediate_decimal] = STATE(2953), + [sym_val_variable] = STATE(2952), + [sym__var] = STATE(2717), + [sym_comment] = STATE(2452), + [anon_sym_export] = ACTIONS(2169), + [anon_sym_alias] = ACTIONS(2169), + [anon_sym_let] = ACTIONS(2169), + [anon_sym_let_DASHenv] = ACTIONS(2169), + [anon_sym_mut] = ACTIONS(2169), + [anon_sym_const] = ACTIONS(2169), + [sym_cmd_identifier] = ACTIONS(2169), + [anon_sym_def] = ACTIONS(2169), + [anon_sym_export_DASHenv] = ACTIONS(2169), + [anon_sym_extern] = ACTIONS(2169), + [anon_sym_module] = ACTIONS(2169), + [anon_sym_use] = ACTIONS(2169), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_DOLLAR] = ACTIONS(6320), + [anon_sym_error] = ACTIONS(2169), + [anon_sym_list] = ACTIONS(2169), + [anon_sym_DASH] = ACTIONS(2169), + [anon_sym_break] = ACTIONS(2169), + [anon_sym_continue] = ACTIONS(2169), + [anon_sym_for] = ACTIONS(2169), + [anon_sym_in] = ACTIONS(2169), + [anon_sym_loop] = ACTIONS(2169), + [anon_sym_make] = ACTIONS(2169), + [anon_sym_while] = ACTIONS(2169), + [anon_sym_do] = ACTIONS(2169), + [anon_sym_if] = ACTIONS(2169), + [anon_sym_else] = ACTIONS(2169), + [anon_sym_match] = ACTIONS(2169), + [anon_sym_RBRACE] = ACTIONS(2169), + [anon_sym_try] = ACTIONS(2169), + [anon_sym_catch] = ACTIONS(2169), + [anon_sym_return] = ACTIONS(2169), + [anon_sym_source] = ACTIONS(2169), + [anon_sym_source_DASHenv] = ACTIONS(2169), + [anon_sym_register] = ACTIONS(2169), + [anon_sym_hide] = ACTIONS(2169), + [anon_sym_hide_DASHenv] = ACTIONS(2169), + [anon_sym_overlay] = ACTIONS(2169), + [anon_sym_new] = ACTIONS(2169), + [anon_sym_as] = ACTIONS(2169), + [anon_sym_PLUS] = ACTIONS(2169), + [anon_sym_LPAREN2] = ACTIONS(6322), + [anon_sym_DOT] = ACTIONS(6324), + [aux_sym__immediate_decimal_token1] = ACTIONS(6326), + [aux_sym__immediate_decimal_token3] = ACTIONS(6326), + [aux_sym__immediate_decimal_token4] = ACTIONS(6328), + [aux_sym__val_number_decimal_token1] = ACTIONS(2169), + [aux_sym__val_number_decimal_token2] = ACTIONS(2169), + [anon_sym_DOT2] = ACTIONS(2169), + [aux_sym__val_number_decimal_token3] = ACTIONS(2169), + [aux_sym__val_number_token1] = ACTIONS(2169), + [aux_sym__val_number_token2] = ACTIONS(2169), + [aux_sym__val_number_token3] = ACTIONS(2169), + [aux_sym__val_number_token4] = ACTIONS(2169), + [aux_sym__val_number_token5] = ACTIONS(2169), + [aux_sym__val_number_token6] = ACTIONS(2169), + [anon_sym_DQUOTE] = ACTIONS(2169), + [sym__str_single_quotes] = ACTIONS(2169), + [sym__str_back_ticks] = ACTIONS(2169), + [sym__entry_separator] = ACTIONS(2171), + [aux_sym__record_key_token2] = ACTIONS(2169), + [anon_sym_POUND] = ACTIONS(113), }, - [2179] = { - [sym_expr_unary] = STATE(6727), - [sym__expr_unary_minus] = STATE(6665), - [sym_expr_binary] = STATE(6727), - [sym__expr_binary_expression] = STATE(6723), - [sym_expr_parenthesized] = STATE(6727), - [sym__val_range] = STATE(10688), - [sym__value] = STATE(6727), - [sym_val_nothing] = STATE(6724), - [sym_val_bool] = STATE(6425), - [sym_val_variable] = STATE(6724), - [sym__var] = STATE(6112), - [sym_val_number] = STATE(6724), - [sym__val_number_decimal] = STATE(5189), - [sym__val_number] = STATE(6672), - [sym_val_duration] = STATE(6724), - [sym_val_filesize] = STATE(6724), - [sym_val_binary] = STATE(6724), - [sym_val_string] = STATE(6724), - [sym__str_double_quotes] = STATE(6725), - [sym_val_interpolated] = STATE(6724), - [sym__inter_single_quotes] = STATE(6738), - [sym__inter_double_quotes] = STATE(6652), - [sym_val_list] = STATE(6724), - [sym_val_record] = STATE(6724), - [sym_val_table] = STATE(6724), - [sym_val_closure] = STATE(6724), - [sym_unquoted] = STATE(6654), - [sym__unquoted_anonymous_prefix] = STATE(10915), - [sym_comment] = STATE(2179), - [anon_sym_LBRACK] = ACTIONS(4692), - [anon_sym_LPAREN] = ACTIONS(5807), - [anon_sym_DOLLAR] = ACTIONS(5809), - [anon_sym_DASH] = ACTIONS(4698), - [anon_sym_LBRACE] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_not] = ACTIONS(4704), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5813), - [anon_sym_DOT_DOT_LT] = ACTIONS(5813), - [anon_sym_null] = ACTIONS(4708), - [anon_sym_true] = ACTIONS(4710), - [anon_sym_false] = ACTIONS(4710), - [aux_sym__val_number_decimal_token1] = ACTIONS(4712), - [aux_sym__val_number_decimal_token2] = ACTIONS(4714), - [anon_sym_DOT2] = ACTIONS(5815), - [aux_sym__val_number_decimal_token3] = ACTIONS(4718), - [aux_sym__val_number_token1] = ACTIONS(4720), - [aux_sym__val_number_token2] = ACTIONS(4720), - [aux_sym__val_number_token3] = ACTIONS(4720), - [aux_sym__val_number_token4] = ACTIONS(5817), - [aux_sym__val_number_token5] = ACTIONS(5817), - [aux_sym__val_number_token6] = ACTIONS(5817), - [anon_sym_0b] = ACTIONS(4724), - [anon_sym_0o] = ACTIONS(4726), - [anon_sym_0x] = ACTIONS(4726), - [sym_val_date] = ACTIONS(4728), - [anon_sym_DQUOTE] = ACTIONS(4730), - [sym__str_single_quotes] = ACTIONS(4732), - [sym__str_back_ticks] = ACTIONS(4732), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4734), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4736), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5819), - [anon_sym_POUND] = ACTIONS(3), + [2453] = { + [sym__expr_parenthesized_immediate] = STATE(3101), + [sym__immediate_decimal] = STATE(3102), + [sym_val_variable] = STATE(3101), + [sym__var] = STATE(2939), + [sym_comment] = STATE(2453), + [anon_sym_export] = ACTIONS(2169), + [anon_sym_alias] = ACTIONS(2169), + [anon_sym_let] = ACTIONS(2169), + [anon_sym_let_DASHenv] = ACTIONS(2169), + [anon_sym_mut] = ACTIONS(2169), + [anon_sym_const] = ACTIONS(2169), + [sym_cmd_identifier] = ACTIONS(2169), + [anon_sym_def] = ACTIONS(2169), + [anon_sym_export_DASHenv] = ACTIONS(2169), + [anon_sym_extern] = ACTIONS(2169), + [anon_sym_module] = ACTIONS(2169), + [anon_sym_use] = ACTIONS(2169), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_DOLLAR] = ACTIONS(6330), + [anon_sym_error] = ACTIONS(2169), + [anon_sym_list] = ACTIONS(2169), + [anon_sym_DASH] = ACTIONS(2169), + [anon_sym_break] = ACTIONS(2169), + [anon_sym_continue] = ACTIONS(2169), + [anon_sym_for] = ACTIONS(2169), + [anon_sym_in] = ACTIONS(2169), + [anon_sym_loop] = ACTIONS(2169), + [anon_sym_make] = ACTIONS(2169), + [anon_sym_while] = ACTIONS(2169), + [anon_sym_do] = ACTIONS(2169), + [anon_sym_if] = ACTIONS(2169), + [anon_sym_else] = ACTIONS(2169), + [anon_sym_match] = ACTIONS(2169), + [anon_sym_RBRACE] = ACTIONS(2169), + [anon_sym_try] = ACTIONS(2169), + [anon_sym_catch] = ACTIONS(2169), + [anon_sym_return] = ACTIONS(2169), + [anon_sym_source] = ACTIONS(2169), + [anon_sym_source_DASHenv] = ACTIONS(2169), + [anon_sym_register] = ACTIONS(2169), + [anon_sym_hide] = ACTIONS(2169), + [anon_sym_hide_DASHenv] = ACTIONS(2169), + [anon_sym_overlay] = ACTIONS(2169), + [anon_sym_new] = ACTIONS(2169), + [anon_sym_as] = ACTIONS(2169), + [anon_sym_PLUS] = ACTIONS(2169), + [anon_sym_LPAREN2] = ACTIONS(6332), + [anon_sym_DOT] = ACTIONS(6334), + [aux_sym__immediate_decimal_token1] = ACTIONS(6336), + [aux_sym__immediate_decimal_token3] = ACTIONS(6336), + [aux_sym__immediate_decimal_token4] = ACTIONS(6338), + [aux_sym__val_number_decimal_token1] = ACTIONS(2169), + [aux_sym__val_number_decimal_token2] = ACTIONS(2169), + [anon_sym_DOT2] = ACTIONS(2169), + [aux_sym__val_number_decimal_token3] = ACTIONS(2169), + [aux_sym__val_number_token1] = ACTIONS(2169), + [aux_sym__val_number_token2] = ACTIONS(2169), + [aux_sym__val_number_token3] = ACTIONS(2169), + [aux_sym__val_number_token4] = ACTIONS(2169), + [aux_sym__val_number_token5] = ACTIONS(2169), + [aux_sym__val_number_token6] = ACTIONS(2169), + [anon_sym_DQUOTE] = ACTIONS(2169), + [sym__str_single_quotes] = ACTIONS(2169), + [sym__str_back_ticks] = ACTIONS(2169), + [sym__entry_separator] = ACTIONS(2171), + [aux_sym__record_key_token2] = ACTIONS(2169), + [anon_sym_POUND] = ACTIONS(113), }, - [2180] = { - [sym_expr_unary] = STATE(6727), - [sym__expr_unary_minus] = STATE(6665), - [sym_expr_binary] = STATE(6727), - [sym__expr_binary_expression] = STATE(6731), - [sym_expr_parenthesized] = STATE(6727), - [sym__val_range] = STATE(10688), - [sym__value] = STATE(6727), - [sym_val_nothing] = STATE(6724), - [sym_val_bool] = STATE(6425), - [sym_val_variable] = STATE(6724), - [sym__var] = STATE(6112), - [sym_val_number] = STATE(6724), - [sym__val_number_decimal] = STATE(5189), - [sym__val_number] = STATE(6672), - [sym_val_duration] = STATE(6724), - [sym_val_filesize] = STATE(6724), - [sym_val_binary] = STATE(6724), - [sym_val_string] = STATE(6724), - [sym__str_double_quotes] = STATE(6725), - [sym_val_interpolated] = STATE(6724), - [sym__inter_single_quotes] = STATE(6738), - [sym__inter_double_quotes] = STATE(6652), - [sym_val_list] = STATE(6724), - [sym_val_record] = STATE(6724), - [sym_val_table] = STATE(6724), - [sym_val_closure] = STATE(6724), - [sym_unquoted] = STATE(6644), - [sym__unquoted_anonymous_prefix] = STATE(10915), - [sym_comment] = STATE(2180), - [anon_sym_LBRACK] = ACTIONS(4692), - [anon_sym_LPAREN] = ACTIONS(5807), - [anon_sym_DOLLAR] = ACTIONS(5809), - [anon_sym_DASH] = ACTIONS(4698), - [anon_sym_LBRACE] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_not] = ACTIONS(4704), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5813), - [anon_sym_DOT_DOT_LT] = ACTIONS(5813), - [anon_sym_null] = ACTIONS(4708), - [anon_sym_true] = ACTIONS(4710), - [anon_sym_false] = ACTIONS(4710), - [aux_sym__val_number_decimal_token1] = ACTIONS(4712), - [aux_sym__val_number_decimal_token2] = ACTIONS(4714), - [anon_sym_DOT2] = ACTIONS(5815), - [aux_sym__val_number_decimal_token3] = ACTIONS(4718), - [aux_sym__val_number_token1] = ACTIONS(4720), - [aux_sym__val_number_token2] = ACTIONS(4720), - [aux_sym__val_number_token3] = ACTIONS(4720), - [aux_sym__val_number_token4] = ACTIONS(5817), - [aux_sym__val_number_token5] = ACTIONS(5817), - [aux_sym__val_number_token6] = ACTIONS(5817), - [anon_sym_0b] = ACTIONS(4724), - [anon_sym_0o] = ACTIONS(4726), - [anon_sym_0x] = ACTIONS(4726), - [sym_val_date] = ACTIONS(4728), - [anon_sym_DQUOTE] = ACTIONS(4730), - [sym__str_single_quotes] = ACTIONS(4732), - [sym__str_back_ticks] = ACTIONS(4732), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4734), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4736), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5819), - [anon_sym_POUND] = ACTIONS(3), + [2454] = { + [sym_comment] = STATE(2454), + [ts_builtin_sym_end] = ACTIONS(6136), + [anon_sym_export] = ACTIONS(6134), + [anon_sym_alias] = ACTIONS(6134), + [anon_sym_let] = ACTIONS(6134), + [anon_sym_let_DASHenv] = ACTIONS(6134), + [anon_sym_mut] = ACTIONS(6134), + [anon_sym_const] = ACTIONS(6134), + [anon_sym_SEMI] = ACTIONS(6134), + [sym_cmd_identifier] = ACTIONS(6134), + [anon_sym_LF] = ACTIONS(6136), + [anon_sym_def] = ACTIONS(6134), + [anon_sym_export_DASHenv] = ACTIONS(6134), + [anon_sym_extern] = ACTIONS(6134), + [anon_sym_module] = ACTIONS(6134), + [anon_sym_use] = ACTIONS(6134), + [anon_sym_LBRACK] = ACTIONS(6134), + [anon_sym_LPAREN] = ACTIONS(6134), + [anon_sym_DOLLAR] = ACTIONS(6134), + [anon_sym_error] = ACTIONS(6134), + [anon_sym_DASH] = ACTIONS(6134), + [anon_sym_break] = ACTIONS(6134), + [anon_sym_continue] = ACTIONS(6134), + [anon_sym_for] = ACTIONS(6134), + [anon_sym_loop] = ACTIONS(6134), + [anon_sym_while] = ACTIONS(6134), + [anon_sym_do] = ACTIONS(6134), + [anon_sym_if] = ACTIONS(6134), + [anon_sym_match] = ACTIONS(6134), + [anon_sym_LBRACE] = ACTIONS(6134), + [anon_sym_DOT_DOT] = ACTIONS(6134), + [anon_sym_try] = ACTIONS(6134), + [anon_sym_return] = ACTIONS(6134), + [anon_sym_source] = ACTIONS(6134), + [anon_sym_source_DASHenv] = ACTIONS(6134), + [anon_sym_register] = ACTIONS(6134), + [anon_sym_hide] = ACTIONS(6134), + [anon_sym_hide_DASHenv] = ACTIONS(6134), + [anon_sym_overlay] = ACTIONS(6134), + [anon_sym_where] = ACTIONS(6134), + [anon_sym_not] = ACTIONS(6134), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6134), + [anon_sym_DOT_DOT_LT] = ACTIONS(6134), + [anon_sym_null] = ACTIONS(6134), + [anon_sym_true] = ACTIONS(6134), + [anon_sym_false] = ACTIONS(6134), + [aux_sym__val_number_decimal_token1] = ACTIONS(6134), + [aux_sym__val_number_decimal_token2] = ACTIONS(6134), + [anon_sym_DOT2] = ACTIONS(6134), + [aux_sym__val_number_decimal_token3] = ACTIONS(6134), + [aux_sym__val_number_token1] = ACTIONS(6134), + [aux_sym__val_number_token2] = ACTIONS(6134), + [aux_sym__val_number_token3] = ACTIONS(6134), + [aux_sym__val_number_token4] = ACTIONS(6134), + [aux_sym__val_number_token5] = ACTIONS(6134), + [aux_sym__val_number_token6] = ACTIONS(6134), + [anon_sym_0b] = ACTIONS(6134), + [anon_sym_0o] = ACTIONS(6134), + [anon_sym_0x] = ACTIONS(6134), + [sym_val_date] = ACTIONS(6134), + [anon_sym_DQUOTE] = ACTIONS(6134), + [sym__str_single_quotes] = ACTIONS(6134), + [sym__str_back_ticks] = ACTIONS(6134), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6134), + [anon_sym_CARET] = ACTIONS(6134), + [anon_sym_POUND] = ACTIONS(113), }, - [2181] = { - [sym_expr_unary] = STATE(6727), - [sym__expr_unary_minus] = STATE(6665), - [sym_expr_binary] = STATE(6727), - [sym__expr_binary_expression] = STATE(6753), - [sym_expr_parenthesized] = STATE(6727), - [sym__val_range] = STATE(10688), - [sym__value] = STATE(6727), - [sym_val_nothing] = STATE(6724), - [sym_val_bool] = STATE(6425), - [sym_val_variable] = STATE(6724), - [sym__var] = STATE(6112), - [sym_val_number] = STATE(6724), - [sym__val_number_decimal] = STATE(5189), - [sym__val_number] = STATE(6672), - [sym_val_duration] = STATE(6724), - [sym_val_filesize] = STATE(6724), - [sym_val_binary] = STATE(6724), - [sym_val_string] = STATE(6724), - [sym__str_double_quotes] = STATE(6725), - [sym_val_interpolated] = STATE(6724), - [sym__inter_single_quotes] = STATE(6738), - [sym__inter_double_quotes] = STATE(6652), - [sym_val_list] = STATE(6724), - [sym_val_record] = STATE(6724), - [sym_val_table] = STATE(6724), - [sym_val_closure] = STATE(6724), - [sym_unquoted] = STATE(6697), - [sym__unquoted_anonymous_prefix] = STATE(10915), - [sym_comment] = STATE(2181), - [anon_sym_LBRACK] = ACTIONS(4692), - [anon_sym_LPAREN] = ACTIONS(5807), - [anon_sym_DOLLAR] = ACTIONS(5809), - [anon_sym_DASH] = ACTIONS(4698), - [anon_sym_LBRACE] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_not] = ACTIONS(4704), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5813), - [anon_sym_DOT_DOT_LT] = ACTIONS(5813), - [anon_sym_null] = ACTIONS(4708), - [anon_sym_true] = ACTIONS(4710), - [anon_sym_false] = ACTIONS(4710), - [aux_sym__val_number_decimal_token1] = ACTIONS(4712), - [aux_sym__val_number_decimal_token2] = ACTIONS(4714), - [anon_sym_DOT2] = ACTIONS(5815), - [aux_sym__val_number_decimal_token3] = ACTIONS(4718), - [aux_sym__val_number_token1] = ACTIONS(4720), - [aux_sym__val_number_token2] = ACTIONS(4720), - [aux_sym__val_number_token3] = ACTIONS(4720), - [aux_sym__val_number_token4] = ACTIONS(5817), - [aux_sym__val_number_token5] = ACTIONS(5817), - [aux_sym__val_number_token6] = ACTIONS(5817), - [anon_sym_0b] = ACTIONS(4724), - [anon_sym_0o] = ACTIONS(4726), - [anon_sym_0x] = ACTIONS(4726), - [sym_val_date] = ACTIONS(4728), - [anon_sym_DQUOTE] = ACTIONS(4730), - [sym__str_single_quotes] = ACTIONS(4732), - [sym__str_back_ticks] = ACTIONS(4732), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4734), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4736), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5819), - [anon_sym_POUND] = ACTIONS(3), + [2455] = { + [sym_comment] = STATE(2455), + [ts_builtin_sym_end] = ACTIONS(6015), + [anon_sym_export] = ACTIONS(6013), + [anon_sym_alias] = ACTIONS(6013), + [anon_sym_let] = ACTIONS(6013), + [anon_sym_let_DASHenv] = ACTIONS(6013), + [anon_sym_mut] = ACTIONS(6013), + [anon_sym_const] = ACTIONS(6013), + [anon_sym_SEMI] = ACTIONS(6013), + [sym_cmd_identifier] = ACTIONS(6013), + [anon_sym_LF] = ACTIONS(6015), + [anon_sym_def] = ACTIONS(6013), + [anon_sym_export_DASHenv] = ACTIONS(6013), + [anon_sym_extern] = ACTIONS(6013), + [anon_sym_module] = ACTIONS(6013), + [anon_sym_use] = ACTIONS(6013), + [anon_sym_LBRACK] = ACTIONS(6013), + [anon_sym_LPAREN] = ACTIONS(6013), + [anon_sym_DOLLAR] = ACTIONS(6013), + [anon_sym_error] = ACTIONS(6013), + [anon_sym_DASH] = ACTIONS(6013), + [anon_sym_break] = ACTIONS(6013), + [anon_sym_continue] = ACTIONS(6013), + [anon_sym_for] = ACTIONS(6013), + [anon_sym_loop] = ACTIONS(6013), + [anon_sym_while] = ACTIONS(6013), + [anon_sym_do] = ACTIONS(6013), + [anon_sym_if] = ACTIONS(6013), + [anon_sym_match] = ACTIONS(6013), + [anon_sym_LBRACE] = ACTIONS(6013), + [anon_sym_DOT_DOT] = ACTIONS(6013), + [anon_sym_try] = ACTIONS(6013), + [anon_sym_return] = ACTIONS(6013), + [anon_sym_source] = ACTIONS(6013), + [anon_sym_source_DASHenv] = ACTIONS(6013), + [anon_sym_register] = ACTIONS(6013), + [anon_sym_hide] = ACTIONS(6013), + [anon_sym_hide_DASHenv] = ACTIONS(6013), + [anon_sym_overlay] = ACTIONS(6013), + [anon_sym_where] = ACTIONS(6013), + [anon_sym_not] = ACTIONS(6013), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6013), + [anon_sym_DOT_DOT_LT] = ACTIONS(6013), + [anon_sym_null] = ACTIONS(6013), + [anon_sym_true] = ACTIONS(6013), + [anon_sym_false] = ACTIONS(6013), + [aux_sym__val_number_decimal_token1] = ACTIONS(6013), + [aux_sym__val_number_decimal_token2] = ACTIONS(6013), + [anon_sym_DOT2] = ACTIONS(6013), + [aux_sym__val_number_decimal_token3] = ACTIONS(6013), + [aux_sym__val_number_token1] = ACTIONS(6013), + [aux_sym__val_number_token2] = ACTIONS(6013), + [aux_sym__val_number_token3] = ACTIONS(6013), + [aux_sym__val_number_token4] = ACTIONS(6013), + [aux_sym__val_number_token5] = ACTIONS(6013), + [aux_sym__val_number_token6] = ACTIONS(6013), + [anon_sym_0b] = ACTIONS(6013), + [anon_sym_0o] = ACTIONS(6013), + [anon_sym_0x] = ACTIONS(6013), + [sym_val_date] = ACTIONS(6013), + [anon_sym_DQUOTE] = ACTIONS(6013), + [sym__str_single_quotes] = ACTIONS(6013), + [sym__str_back_ticks] = ACTIONS(6013), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6013), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6013), + [anon_sym_CARET] = ACTIONS(6013), + [anon_sym_POUND] = ACTIONS(113), }, - [2182] = { - [sym_expr_unary] = STATE(6727), - [sym__expr_unary_minus] = STATE(6665), - [sym_expr_binary] = STATE(6727), - [sym__expr_binary_expression] = STATE(6755), - [sym_expr_parenthesized] = STATE(6727), - [sym__val_range] = STATE(10688), - [sym__value] = STATE(6727), - [sym_val_nothing] = STATE(6724), - [sym_val_bool] = STATE(6425), - [sym_val_variable] = STATE(6724), - [sym__var] = STATE(6112), - [sym_val_number] = STATE(6724), - [sym__val_number_decimal] = STATE(5189), - [sym__val_number] = STATE(6672), - [sym_val_duration] = STATE(6724), - [sym_val_filesize] = STATE(6724), - [sym_val_binary] = STATE(6724), - [sym_val_string] = STATE(6724), - [sym__str_double_quotes] = STATE(6725), - [sym_val_interpolated] = STATE(6724), - [sym__inter_single_quotes] = STATE(6738), - [sym__inter_double_quotes] = STATE(6652), - [sym_val_list] = STATE(6724), - [sym_val_record] = STATE(6724), - [sym_val_table] = STATE(6724), - [sym_val_closure] = STATE(6724), - [sym_unquoted] = STATE(6694), - [sym__unquoted_anonymous_prefix] = STATE(10915), - [sym_comment] = STATE(2182), - [anon_sym_LBRACK] = ACTIONS(4692), - [anon_sym_LPAREN] = ACTIONS(5807), - [anon_sym_DOLLAR] = ACTIONS(5809), - [anon_sym_DASH] = ACTIONS(4698), - [anon_sym_LBRACE] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_not] = ACTIONS(4704), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5813), - [anon_sym_DOT_DOT_LT] = ACTIONS(5813), - [anon_sym_null] = ACTIONS(4708), - [anon_sym_true] = ACTIONS(4710), - [anon_sym_false] = ACTIONS(4710), - [aux_sym__val_number_decimal_token1] = ACTIONS(4712), - [aux_sym__val_number_decimal_token2] = ACTIONS(4714), - [anon_sym_DOT2] = ACTIONS(5815), - [aux_sym__val_number_decimal_token3] = ACTIONS(4718), - [aux_sym__val_number_token1] = ACTIONS(4720), - [aux_sym__val_number_token2] = ACTIONS(4720), - [aux_sym__val_number_token3] = ACTIONS(4720), - [aux_sym__val_number_token4] = ACTIONS(5817), - [aux_sym__val_number_token5] = ACTIONS(5817), - [aux_sym__val_number_token6] = ACTIONS(5817), - [anon_sym_0b] = ACTIONS(4724), - [anon_sym_0o] = ACTIONS(4726), - [anon_sym_0x] = ACTIONS(4726), - [sym_val_date] = ACTIONS(4728), - [anon_sym_DQUOTE] = ACTIONS(4730), - [sym__str_single_quotes] = ACTIONS(4732), - [sym__str_back_ticks] = ACTIONS(4732), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4734), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4736), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5819), - [anon_sym_POUND] = ACTIONS(3), + [2456] = { + [sym_comment] = STATE(2456), + [ts_builtin_sym_end] = ACTIONS(5911), + [anon_sym_export] = ACTIONS(5909), + [anon_sym_alias] = ACTIONS(5909), + [anon_sym_let] = ACTIONS(5909), + [anon_sym_let_DASHenv] = ACTIONS(5909), + [anon_sym_mut] = ACTIONS(5909), + [anon_sym_const] = ACTIONS(5909), + [anon_sym_SEMI] = ACTIONS(5909), + [sym_cmd_identifier] = ACTIONS(5909), + [anon_sym_LF] = ACTIONS(5911), + [anon_sym_def] = ACTIONS(5909), + [anon_sym_export_DASHenv] = ACTIONS(5909), + [anon_sym_extern] = ACTIONS(5909), + [anon_sym_module] = ACTIONS(5909), + [anon_sym_use] = ACTIONS(5909), + [anon_sym_LBRACK] = ACTIONS(5909), + [anon_sym_LPAREN] = ACTIONS(5909), + [anon_sym_DOLLAR] = ACTIONS(5909), + [anon_sym_error] = ACTIONS(5909), + [anon_sym_DASH] = ACTIONS(5909), + [anon_sym_break] = ACTIONS(5909), + [anon_sym_continue] = ACTIONS(5909), + [anon_sym_for] = ACTIONS(5909), + [anon_sym_loop] = ACTIONS(5909), + [anon_sym_while] = ACTIONS(5909), + [anon_sym_do] = ACTIONS(5909), + [anon_sym_if] = ACTIONS(5909), + [anon_sym_match] = ACTIONS(5909), + [anon_sym_LBRACE] = ACTIONS(5909), + [anon_sym_DOT_DOT] = ACTIONS(5909), + [anon_sym_try] = ACTIONS(5909), + [anon_sym_return] = ACTIONS(5909), + [anon_sym_source] = ACTIONS(5909), + [anon_sym_source_DASHenv] = ACTIONS(5909), + [anon_sym_register] = ACTIONS(5909), + [anon_sym_hide] = ACTIONS(5909), + [anon_sym_hide_DASHenv] = ACTIONS(5909), + [anon_sym_overlay] = ACTIONS(5909), + [anon_sym_where] = ACTIONS(5909), + [anon_sym_not] = ACTIONS(5909), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5909), + [anon_sym_DOT_DOT_LT] = ACTIONS(5909), + [anon_sym_null] = ACTIONS(5909), + [anon_sym_true] = ACTIONS(5909), + [anon_sym_false] = ACTIONS(5909), + [aux_sym__val_number_decimal_token1] = ACTIONS(5909), + [aux_sym__val_number_decimal_token2] = ACTIONS(5909), + [anon_sym_DOT2] = ACTIONS(5909), + [aux_sym__val_number_decimal_token3] = ACTIONS(5909), + [aux_sym__val_number_token1] = ACTIONS(5909), + [aux_sym__val_number_token2] = ACTIONS(5909), + [aux_sym__val_number_token3] = ACTIONS(5909), + [aux_sym__val_number_token4] = ACTIONS(5909), + [aux_sym__val_number_token5] = ACTIONS(5909), + [aux_sym__val_number_token6] = ACTIONS(5909), + [anon_sym_0b] = ACTIONS(5909), + [anon_sym_0o] = ACTIONS(5909), + [anon_sym_0x] = ACTIONS(5909), + [sym_val_date] = ACTIONS(5909), + [anon_sym_DQUOTE] = ACTIONS(5909), + [sym__str_single_quotes] = ACTIONS(5909), + [sym__str_back_ticks] = ACTIONS(5909), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5909), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5909), + [anon_sym_CARET] = ACTIONS(5909), + [anon_sym_POUND] = ACTIONS(113), }, - [2183] = { - [sym_expr_unary] = STATE(6727), - [sym__expr_unary_minus] = STATE(6665), - [sym_expr_binary] = STATE(6727), - [sym__expr_binary_expression] = STATE(6631), - [sym_expr_parenthesized] = STATE(6727), - [sym__val_range] = STATE(10688), - [sym__value] = STATE(6727), - [sym_val_nothing] = STATE(6724), - [sym_val_bool] = STATE(6425), - [sym_val_variable] = STATE(6724), - [sym__var] = STATE(6112), - [sym_val_number] = STATE(6724), - [sym__val_number_decimal] = STATE(5189), - [sym__val_number] = STATE(6672), - [sym_val_duration] = STATE(6724), - [sym_val_filesize] = STATE(6724), - [sym_val_binary] = STATE(6724), - [sym_val_string] = STATE(6724), - [sym__str_double_quotes] = STATE(6725), - [sym_val_interpolated] = STATE(6724), - [sym__inter_single_quotes] = STATE(6738), - [sym__inter_double_quotes] = STATE(6652), - [sym_val_list] = STATE(6724), - [sym_val_record] = STATE(6724), - [sym_val_table] = STATE(6724), - [sym_val_closure] = STATE(6724), - [sym_unquoted] = STATE(6646), - [sym__unquoted_anonymous_prefix] = STATE(10915), - [sym_comment] = STATE(2183), - [anon_sym_LBRACK] = ACTIONS(4692), - [anon_sym_LPAREN] = ACTIONS(5807), - [anon_sym_DOLLAR] = ACTIONS(5809), - [anon_sym_DASH] = ACTIONS(4698), - [anon_sym_LBRACE] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_not] = ACTIONS(4704), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5813), - [anon_sym_DOT_DOT_LT] = ACTIONS(5813), - [anon_sym_null] = ACTIONS(4708), - [anon_sym_true] = ACTIONS(4710), - [anon_sym_false] = ACTIONS(4710), - [aux_sym__val_number_decimal_token1] = ACTIONS(4712), - [aux_sym__val_number_decimal_token2] = ACTIONS(4714), - [anon_sym_DOT2] = ACTIONS(5815), - [aux_sym__val_number_decimal_token3] = ACTIONS(4718), - [aux_sym__val_number_token1] = ACTIONS(4720), - [aux_sym__val_number_token2] = ACTIONS(4720), - [aux_sym__val_number_token3] = ACTIONS(4720), - [aux_sym__val_number_token4] = ACTIONS(5817), - [aux_sym__val_number_token5] = ACTIONS(5817), - [aux_sym__val_number_token6] = ACTIONS(5817), - [anon_sym_0b] = ACTIONS(4724), - [anon_sym_0o] = ACTIONS(4726), - [anon_sym_0x] = ACTIONS(4726), - [sym_val_date] = ACTIONS(4728), - [anon_sym_DQUOTE] = ACTIONS(4730), - [sym__str_single_quotes] = ACTIONS(4732), - [sym__str_back_ticks] = ACTIONS(4732), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4734), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4736), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5819), - [anon_sym_POUND] = ACTIONS(3), + [2457] = { + [sym_comment] = STATE(2457), + [ts_builtin_sym_end] = ACTIONS(6037), + [anon_sym_export] = ACTIONS(6035), + [anon_sym_alias] = ACTIONS(6035), + [anon_sym_let] = ACTIONS(6035), + [anon_sym_let_DASHenv] = ACTIONS(6035), + [anon_sym_mut] = ACTIONS(6035), + [anon_sym_const] = ACTIONS(6035), + [anon_sym_SEMI] = ACTIONS(6035), + [sym_cmd_identifier] = ACTIONS(6035), + [anon_sym_LF] = ACTIONS(6037), + [anon_sym_def] = ACTIONS(6035), + [anon_sym_export_DASHenv] = ACTIONS(6035), + [anon_sym_extern] = ACTIONS(6035), + [anon_sym_module] = ACTIONS(6035), + [anon_sym_use] = ACTIONS(6035), + [anon_sym_LBRACK] = ACTIONS(6035), + [anon_sym_LPAREN] = ACTIONS(6035), + [anon_sym_DOLLAR] = ACTIONS(6035), + [anon_sym_error] = ACTIONS(6035), + [anon_sym_DASH] = ACTIONS(6035), + [anon_sym_break] = ACTIONS(6035), + [anon_sym_continue] = ACTIONS(6035), + [anon_sym_for] = ACTIONS(6035), + [anon_sym_loop] = ACTIONS(6035), + [anon_sym_while] = ACTIONS(6035), + [anon_sym_do] = ACTIONS(6035), + [anon_sym_if] = ACTIONS(6035), + [anon_sym_match] = ACTIONS(6035), + [anon_sym_LBRACE] = ACTIONS(6035), + [anon_sym_DOT_DOT] = ACTIONS(6035), + [anon_sym_try] = ACTIONS(6035), + [anon_sym_return] = ACTIONS(6035), + [anon_sym_source] = ACTIONS(6035), + [anon_sym_source_DASHenv] = ACTIONS(6035), + [anon_sym_register] = ACTIONS(6035), + [anon_sym_hide] = ACTIONS(6035), + [anon_sym_hide_DASHenv] = ACTIONS(6035), + [anon_sym_overlay] = ACTIONS(6035), + [anon_sym_where] = ACTIONS(6035), + [anon_sym_not] = ACTIONS(6035), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6035), + [anon_sym_DOT_DOT_LT] = ACTIONS(6035), + [anon_sym_null] = ACTIONS(6035), + [anon_sym_true] = ACTIONS(6035), + [anon_sym_false] = ACTIONS(6035), + [aux_sym__val_number_decimal_token1] = ACTIONS(6035), + [aux_sym__val_number_decimal_token2] = ACTIONS(6035), + [anon_sym_DOT2] = ACTIONS(6035), + [aux_sym__val_number_decimal_token3] = ACTIONS(6035), + [aux_sym__val_number_token1] = ACTIONS(6035), + [aux_sym__val_number_token2] = ACTIONS(6035), + [aux_sym__val_number_token3] = ACTIONS(6035), + [aux_sym__val_number_token4] = ACTIONS(6035), + [aux_sym__val_number_token5] = ACTIONS(6035), + [aux_sym__val_number_token6] = ACTIONS(6035), + [anon_sym_0b] = ACTIONS(6035), + [anon_sym_0o] = ACTIONS(6035), + [anon_sym_0x] = ACTIONS(6035), + [sym_val_date] = ACTIONS(6035), + [anon_sym_DQUOTE] = ACTIONS(6035), + [sym__str_single_quotes] = ACTIONS(6035), + [sym__str_back_ticks] = ACTIONS(6035), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6035), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6035), + [anon_sym_CARET] = ACTIONS(6035), + [anon_sym_POUND] = ACTIONS(113), }, - [2184] = { - [sym_expr_unary] = STATE(6727), - [sym__expr_unary_minus] = STATE(6665), - [sym_expr_binary] = STATE(6727), - [sym__expr_binary_expression] = STATE(6640), - [sym_expr_parenthesized] = STATE(6727), - [sym__val_range] = STATE(10688), - [sym__value] = STATE(6727), - [sym_val_nothing] = STATE(6724), - [sym_val_bool] = STATE(6425), - [sym_val_variable] = STATE(6724), - [sym__var] = STATE(6112), - [sym_val_number] = STATE(6724), - [sym__val_number_decimal] = STATE(5189), - [sym__val_number] = STATE(6672), - [sym_val_duration] = STATE(6724), - [sym_val_filesize] = STATE(6724), - [sym_val_binary] = STATE(6724), - [sym_val_string] = STATE(6724), - [sym__str_double_quotes] = STATE(6725), - [sym_val_interpolated] = STATE(6724), - [sym__inter_single_quotes] = STATE(6738), - [sym__inter_double_quotes] = STATE(6652), - [sym_val_list] = STATE(6724), - [sym_val_record] = STATE(6724), - [sym_val_table] = STATE(6724), - [sym_val_closure] = STATE(6724), - [sym_unquoted] = STATE(6668), - [sym__unquoted_anonymous_prefix] = STATE(10915), - [sym_comment] = STATE(2184), - [anon_sym_LBRACK] = ACTIONS(4692), - [anon_sym_LPAREN] = ACTIONS(5807), - [anon_sym_DOLLAR] = ACTIONS(5809), - [anon_sym_DASH] = ACTIONS(4698), - [anon_sym_LBRACE] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_not] = ACTIONS(4704), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5813), - [anon_sym_DOT_DOT_LT] = ACTIONS(5813), - [anon_sym_null] = ACTIONS(4708), - [anon_sym_true] = ACTIONS(4710), - [anon_sym_false] = ACTIONS(4710), - [aux_sym__val_number_decimal_token1] = ACTIONS(4712), - [aux_sym__val_number_decimal_token2] = ACTIONS(4714), - [anon_sym_DOT2] = ACTIONS(5815), - [aux_sym__val_number_decimal_token3] = ACTIONS(4718), - [aux_sym__val_number_token1] = ACTIONS(4720), - [aux_sym__val_number_token2] = ACTIONS(4720), - [aux_sym__val_number_token3] = ACTIONS(4720), - [aux_sym__val_number_token4] = ACTIONS(5817), - [aux_sym__val_number_token5] = ACTIONS(5817), - [aux_sym__val_number_token6] = ACTIONS(5817), - [anon_sym_0b] = ACTIONS(4724), - [anon_sym_0o] = ACTIONS(4726), - [anon_sym_0x] = ACTIONS(4726), - [sym_val_date] = ACTIONS(4728), - [anon_sym_DQUOTE] = ACTIONS(4730), - [sym__str_single_quotes] = ACTIONS(4732), - [sym__str_back_ticks] = ACTIONS(4732), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4734), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4736), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5819), - [anon_sym_POUND] = ACTIONS(3), + [2458] = { + [sym_comment] = STATE(2458), + [ts_builtin_sym_end] = ACTIONS(6162), + [anon_sym_export] = ACTIONS(6160), + [anon_sym_alias] = ACTIONS(6160), + [anon_sym_let] = ACTIONS(6160), + [anon_sym_let_DASHenv] = ACTIONS(6160), + [anon_sym_mut] = ACTIONS(6160), + [anon_sym_const] = ACTIONS(6160), + [anon_sym_SEMI] = ACTIONS(6160), + [sym_cmd_identifier] = ACTIONS(6160), + [anon_sym_LF] = ACTIONS(6162), + [anon_sym_def] = ACTIONS(6160), + [anon_sym_export_DASHenv] = ACTIONS(6160), + [anon_sym_extern] = ACTIONS(6160), + [anon_sym_module] = ACTIONS(6160), + [anon_sym_use] = ACTIONS(6160), + [anon_sym_LBRACK] = ACTIONS(6160), + [anon_sym_LPAREN] = ACTIONS(6160), + [anon_sym_DOLLAR] = ACTIONS(6160), + [anon_sym_error] = ACTIONS(6160), + [anon_sym_DASH] = ACTIONS(6160), + [anon_sym_break] = ACTIONS(6160), + [anon_sym_continue] = ACTIONS(6160), + [anon_sym_for] = ACTIONS(6160), + [anon_sym_loop] = ACTIONS(6160), + [anon_sym_while] = ACTIONS(6160), + [anon_sym_do] = ACTIONS(6160), + [anon_sym_if] = ACTIONS(6160), + [anon_sym_match] = ACTIONS(6160), + [anon_sym_LBRACE] = ACTIONS(6160), + [anon_sym_DOT_DOT] = ACTIONS(6160), + [anon_sym_try] = ACTIONS(6160), + [anon_sym_return] = ACTIONS(6160), + [anon_sym_source] = ACTIONS(6160), + [anon_sym_source_DASHenv] = ACTIONS(6160), + [anon_sym_register] = ACTIONS(6160), + [anon_sym_hide] = ACTIONS(6160), + [anon_sym_hide_DASHenv] = ACTIONS(6160), + [anon_sym_overlay] = ACTIONS(6160), + [anon_sym_where] = ACTIONS(6160), + [anon_sym_not] = ACTIONS(6160), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6160), + [anon_sym_DOT_DOT_LT] = ACTIONS(6160), + [anon_sym_null] = ACTIONS(6160), + [anon_sym_true] = ACTIONS(6160), + [anon_sym_false] = ACTIONS(6160), + [aux_sym__val_number_decimal_token1] = ACTIONS(6160), + [aux_sym__val_number_decimal_token2] = ACTIONS(6160), + [anon_sym_DOT2] = ACTIONS(6160), + [aux_sym__val_number_decimal_token3] = ACTIONS(6160), + [aux_sym__val_number_token1] = ACTIONS(6160), + [aux_sym__val_number_token2] = ACTIONS(6160), + [aux_sym__val_number_token3] = ACTIONS(6160), + [aux_sym__val_number_token4] = ACTIONS(6160), + [aux_sym__val_number_token5] = ACTIONS(6160), + [aux_sym__val_number_token6] = ACTIONS(6160), + [anon_sym_0b] = ACTIONS(6160), + [anon_sym_0o] = ACTIONS(6160), + [anon_sym_0x] = ACTIONS(6160), + [sym_val_date] = ACTIONS(6160), + [anon_sym_DQUOTE] = ACTIONS(6160), + [sym__str_single_quotes] = ACTIONS(6160), + [sym__str_back_ticks] = ACTIONS(6160), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6160), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6160), + [anon_sym_CARET] = ACTIONS(6160), + [anon_sym_POUND] = ACTIONS(113), }, - [2185] = { - [sym_expr_unary] = STATE(6727), - [sym__expr_unary_minus] = STATE(6665), - [sym_expr_binary] = STATE(6727), - [sym__expr_binary_expression] = STATE(6642), - [sym_expr_parenthesized] = STATE(6727), - [sym__val_range] = STATE(10688), - [sym__value] = STATE(6727), - [sym_val_nothing] = STATE(6724), - [sym_val_bool] = STATE(6425), - [sym_val_variable] = STATE(6724), - [sym__var] = STATE(6112), - [sym_val_number] = STATE(6724), - [sym__val_number_decimal] = STATE(5189), - [sym__val_number] = STATE(6672), - [sym_val_duration] = STATE(6724), - [sym_val_filesize] = STATE(6724), - [sym_val_binary] = STATE(6724), - [sym_val_string] = STATE(6724), - [sym__str_double_quotes] = STATE(6725), - [sym_val_interpolated] = STATE(6724), - [sym__inter_single_quotes] = STATE(6738), - [sym__inter_double_quotes] = STATE(6652), - [sym_val_list] = STATE(6724), - [sym_val_record] = STATE(6724), - [sym_val_table] = STATE(6724), - [sym_val_closure] = STATE(6724), - [sym_unquoted] = STATE(6742), - [sym__unquoted_anonymous_prefix] = STATE(10915), - [sym_comment] = STATE(2185), - [anon_sym_LBRACK] = ACTIONS(4692), - [anon_sym_LPAREN] = ACTIONS(5807), - [anon_sym_DOLLAR] = ACTIONS(5809), - [anon_sym_DASH] = ACTIONS(4698), - [anon_sym_LBRACE] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_not] = ACTIONS(4704), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5813), - [anon_sym_DOT_DOT_LT] = ACTIONS(5813), - [anon_sym_null] = ACTIONS(4708), - [anon_sym_true] = ACTIONS(4710), - [anon_sym_false] = ACTIONS(4710), - [aux_sym__val_number_decimal_token1] = ACTIONS(4712), - [aux_sym__val_number_decimal_token2] = ACTIONS(4714), - [anon_sym_DOT2] = ACTIONS(5815), - [aux_sym__val_number_decimal_token3] = ACTIONS(4718), - [aux_sym__val_number_token1] = ACTIONS(4720), - [aux_sym__val_number_token2] = ACTIONS(4720), - [aux_sym__val_number_token3] = ACTIONS(4720), - [aux_sym__val_number_token4] = ACTIONS(5817), - [aux_sym__val_number_token5] = ACTIONS(5817), - [aux_sym__val_number_token6] = ACTIONS(5817), - [anon_sym_0b] = ACTIONS(4724), - [anon_sym_0o] = ACTIONS(4726), - [anon_sym_0x] = ACTIONS(4726), - [sym_val_date] = ACTIONS(4728), - [anon_sym_DQUOTE] = ACTIONS(4730), - [sym__str_single_quotes] = ACTIONS(4732), - [sym__str_back_ticks] = ACTIONS(4732), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4734), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4736), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5819), - [anon_sym_POUND] = ACTIONS(3), + [2459] = { + [sym_comment] = STATE(2459), + [ts_builtin_sym_end] = ACTIONS(6166), + [anon_sym_export] = ACTIONS(6164), + [anon_sym_alias] = ACTIONS(6164), + [anon_sym_let] = ACTIONS(6164), + [anon_sym_let_DASHenv] = ACTIONS(6164), + [anon_sym_mut] = ACTIONS(6164), + [anon_sym_const] = ACTIONS(6164), + [anon_sym_SEMI] = ACTIONS(6164), + [sym_cmd_identifier] = ACTIONS(6164), + [anon_sym_LF] = ACTIONS(6166), + [anon_sym_def] = ACTIONS(6164), + [anon_sym_export_DASHenv] = ACTIONS(6164), + [anon_sym_extern] = ACTIONS(6164), + [anon_sym_module] = ACTIONS(6164), + [anon_sym_use] = ACTIONS(6164), + [anon_sym_LBRACK] = ACTIONS(6164), + [anon_sym_LPAREN] = ACTIONS(6164), + [anon_sym_DOLLAR] = ACTIONS(6164), + [anon_sym_error] = ACTIONS(6164), + [anon_sym_DASH] = ACTIONS(6164), + [anon_sym_break] = ACTIONS(6164), + [anon_sym_continue] = ACTIONS(6164), + [anon_sym_for] = ACTIONS(6164), + [anon_sym_loop] = ACTIONS(6164), + [anon_sym_while] = ACTIONS(6164), + [anon_sym_do] = ACTIONS(6164), + [anon_sym_if] = ACTIONS(6164), + [anon_sym_match] = ACTIONS(6164), + [anon_sym_LBRACE] = ACTIONS(6164), + [anon_sym_DOT_DOT] = ACTIONS(6164), + [anon_sym_try] = ACTIONS(6164), + [anon_sym_return] = ACTIONS(6164), + [anon_sym_source] = ACTIONS(6164), + [anon_sym_source_DASHenv] = ACTIONS(6164), + [anon_sym_register] = ACTIONS(6164), + [anon_sym_hide] = ACTIONS(6164), + [anon_sym_hide_DASHenv] = ACTIONS(6164), + [anon_sym_overlay] = ACTIONS(6164), + [anon_sym_where] = ACTIONS(6164), + [anon_sym_not] = ACTIONS(6164), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6164), + [anon_sym_DOT_DOT_LT] = ACTIONS(6164), + [anon_sym_null] = ACTIONS(6164), + [anon_sym_true] = ACTIONS(6164), + [anon_sym_false] = ACTIONS(6164), + [aux_sym__val_number_decimal_token1] = ACTIONS(6164), + [aux_sym__val_number_decimal_token2] = ACTIONS(6164), + [anon_sym_DOT2] = ACTIONS(6164), + [aux_sym__val_number_decimal_token3] = ACTIONS(6164), + [aux_sym__val_number_token1] = ACTIONS(6164), + [aux_sym__val_number_token2] = ACTIONS(6164), + [aux_sym__val_number_token3] = ACTIONS(6164), + [aux_sym__val_number_token4] = ACTIONS(6164), + [aux_sym__val_number_token5] = ACTIONS(6164), + [aux_sym__val_number_token6] = ACTIONS(6164), + [anon_sym_0b] = ACTIONS(6164), + [anon_sym_0o] = ACTIONS(6164), + [anon_sym_0x] = ACTIONS(6164), + [sym_val_date] = ACTIONS(6164), + [anon_sym_DQUOTE] = ACTIONS(6164), + [sym__str_single_quotes] = ACTIONS(6164), + [sym__str_back_ticks] = ACTIONS(6164), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6164), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6164), + [anon_sym_CARET] = ACTIONS(6164), + [anon_sym_POUND] = ACTIONS(113), }, - [2186] = { - [sym_expr_unary] = STATE(6485), - [sym__expr_unary_minus] = STATE(6430), - [sym_expr_binary] = STATE(6485), - [sym__expr_binary_expression] = STATE(6522), - [sym_expr_parenthesized] = STATE(6485), - [sym__val_range] = STATE(10636), - [sym__value] = STATE(6485), - [sym_val_nothing] = STATE(6590), - [sym_val_bool] = STATE(6343), - [sym_val_variable] = STATE(6590), - [sym__var] = STATE(5737), - [sym_val_number] = STATE(6590), - [sym__val_number_decimal] = STATE(4858), - [sym__val_number] = STATE(6519), - [sym_val_duration] = STATE(6590), - [sym_val_filesize] = STATE(6590), - [sym_val_binary] = STATE(6590), - [sym_val_string] = STATE(6590), - [sym__str_double_quotes] = STATE(6540), - [sym_val_interpolated] = STATE(6590), - [sym__inter_single_quotes] = STATE(6464), - [sym__inter_double_quotes] = STATE(6419), - [sym_val_list] = STATE(6590), - [sym_val_record] = STATE(6590), - [sym_val_table] = STATE(6590), - [sym_val_closure] = STATE(6590), - [sym_unquoted] = STATE(6489), - [sym__unquoted_anonymous_prefix] = STATE(10827), - [sym_comment] = STATE(2186), - [anon_sym_LBRACK] = ACTIONS(4051), - [anon_sym_LPAREN] = ACTIONS(5585), - [anon_sym_DOLLAR] = ACTIONS(5587), - [anon_sym_DASH] = ACTIONS(4053), - [anon_sym_LBRACE] = ACTIONS(4055), - [anon_sym_DOT_DOT] = ACTIONS(5821), - [anon_sym_not] = ACTIONS(4059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5591), - [anon_sym_DOT_DOT_LT] = ACTIONS(5591), - [anon_sym_null] = ACTIONS(4063), - [anon_sym_true] = ACTIONS(4065), - [anon_sym_false] = ACTIONS(4065), - [aux_sym__val_number_decimal_token1] = ACTIONS(4067), - [aux_sym__val_number_decimal_token2] = ACTIONS(4069), - [anon_sym_DOT2] = ACTIONS(5823), - [aux_sym__val_number_decimal_token3] = ACTIONS(4073), - [aux_sym__val_number_token1] = ACTIONS(2764), - [aux_sym__val_number_token2] = ACTIONS(2764), - [aux_sym__val_number_token3] = ACTIONS(2764), - [aux_sym__val_number_token4] = ACTIONS(5825), - [aux_sym__val_number_token5] = ACTIONS(5825), - [aux_sym__val_number_token6] = ACTIONS(5825), - [anon_sym_0b] = ACTIONS(2768), - [anon_sym_0o] = ACTIONS(2770), - [anon_sym_0x] = ACTIONS(2770), - [sym_val_date] = ACTIONS(4077), - [anon_sym_DQUOTE] = ACTIONS(4079), - [sym__str_single_quotes] = ACTIONS(4081), - [sym__str_back_ticks] = ACTIONS(4081), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5609), - [anon_sym_POUND] = ACTIONS(3), + [2460] = { + [sym__expr_parenthesized_immediate] = STATE(3115), + [sym__immediate_decimal] = STATE(3112), + [sym_val_variable] = STATE(3115), + [sym__var] = STATE(2939), + [sym_comment] = STATE(2460), + [anon_sym_export] = ACTIONS(1882), + [anon_sym_alias] = ACTIONS(1882), + [anon_sym_let] = ACTIONS(1882), + [anon_sym_let_DASHenv] = ACTIONS(1882), + [anon_sym_mut] = ACTIONS(1882), + [anon_sym_const] = ACTIONS(1882), + [sym_cmd_identifier] = ACTIONS(1882), + [anon_sym_def] = ACTIONS(1882), + [anon_sym_export_DASHenv] = ACTIONS(1882), + [anon_sym_extern] = ACTIONS(1882), + [anon_sym_module] = ACTIONS(1882), + [anon_sym_use] = ACTIONS(1882), + [anon_sym_LPAREN] = ACTIONS(1882), + [anon_sym_DOLLAR] = ACTIONS(6330), + [anon_sym_error] = ACTIONS(1882), + [anon_sym_list] = ACTIONS(1882), + [anon_sym_DASH] = ACTIONS(1882), + [anon_sym_break] = ACTIONS(1882), + [anon_sym_continue] = ACTIONS(1882), + [anon_sym_for] = ACTIONS(1882), + [anon_sym_in] = ACTIONS(1882), + [anon_sym_loop] = ACTIONS(1882), + [anon_sym_make] = ACTIONS(1882), + [anon_sym_while] = ACTIONS(1882), + [anon_sym_do] = ACTIONS(1882), + [anon_sym_if] = ACTIONS(1882), + [anon_sym_else] = ACTIONS(1882), + [anon_sym_match] = ACTIONS(1882), + [anon_sym_RBRACE] = ACTIONS(1882), + [anon_sym_try] = ACTIONS(1882), + [anon_sym_catch] = ACTIONS(1882), + [anon_sym_return] = ACTIONS(1882), + [anon_sym_source] = ACTIONS(1882), + [anon_sym_source_DASHenv] = ACTIONS(1882), + [anon_sym_register] = ACTIONS(1882), + [anon_sym_hide] = ACTIONS(1882), + [anon_sym_hide_DASHenv] = ACTIONS(1882), + [anon_sym_overlay] = ACTIONS(1882), + [anon_sym_new] = ACTIONS(1882), + [anon_sym_as] = ACTIONS(1882), + [anon_sym_PLUS] = ACTIONS(1882), + [anon_sym_LPAREN2] = ACTIONS(6332), + [anon_sym_DOT] = ACTIONS(6334), + [aux_sym__immediate_decimal_token1] = ACTIONS(6336), + [aux_sym__immediate_decimal_token3] = ACTIONS(6336), + [aux_sym__immediate_decimal_token4] = ACTIONS(6338), + [aux_sym__val_number_decimal_token1] = ACTIONS(1882), + [aux_sym__val_number_decimal_token2] = ACTIONS(1882), + [anon_sym_DOT2] = ACTIONS(1882), + [aux_sym__val_number_decimal_token3] = ACTIONS(1882), + [aux_sym__val_number_token1] = ACTIONS(1882), + [aux_sym__val_number_token2] = ACTIONS(1882), + [aux_sym__val_number_token3] = ACTIONS(1882), + [aux_sym__val_number_token4] = ACTIONS(1882), + [aux_sym__val_number_token5] = ACTIONS(1882), + [aux_sym__val_number_token6] = ACTIONS(1882), + [anon_sym_DQUOTE] = ACTIONS(1882), + [sym__str_single_quotes] = ACTIONS(1882), + [sym__str_back_ticks] = ACTIONS(1882), + [sym__entry_separator] = ACTIONS(1884), + [aux_sym__record_key_token2] = ACTIONS(1882), + [anon_sym_POUND] = ACTIONS(113), }, - [2187] = { - [sym_expr_unary] = STATE(6485), - [sym__expr_unary_minus] = STATE(6430), - [sym_expr_binary] = STATE(6485), - [sym__expr_binary_expression] = STATE(6523), - [sym_expr_parenthesized] = STATE(6485), - [sym__val_range] = STATE(10636), - [sym__value] = STATE(6485), - [sym_val_nothing] = STATE(6590), - [sym_val_bool] = STATE(6343), - [sym_val_variable] = STATE(6590), - [sym__var] = STATE(5737), - [sym_val_number] = STATE(6590), - [sym__val_number_decimal] = STATE(4858), - [sym__val_number] = STATE(6519), - [sym_val_duration] = STATE(6590), - [sym_val_filesize] = STATE(6590), - [sym_val_binary] = STATE(6590), - [sym_val_string] = STATE(6590), - [sym__str_double_quotes] = STATE(6540), - [sym_val_interpolated] = STATE(6590), - [sym__inter_single_quotes] = STATE(6464), - [sym__inter_double_quotes] = STATE(6419), - [sym_val_list] = STATE(6590), - [sym_val_record] = STATE(6590), - [sym_val_table] = STATE(6590), - [sym_val_closure] = STATE(6590), - [sym_unquoted] = STATE(6492), - [sym__unquoted_anonymous_prefix] = STATE(10827), - [sym_comment] = STATE(2187), - [anon_sym_LBRACK] = ACTIONS(4051), - [anon_sym_LPAREN] = ACTIONS(5585), - [anon_sym_DOLLAR] = ACTIONS(5587), - [anon_sym_DASH] = ACTIONS(4053), - [anon_sym_LBRACE] = ACTIONS(4055), - [anon_sym_DOT_DOT] = ACTIONS(5821), - [anon_sym_not] = ACTIONS(4059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5591), - [anon_sym_DOT_DOT_LT] = ACTIONS(5591), - [anon_sym_null] = ACTIONS(4063), - [anon_sym_true] = ACTIONS(4065), - [anon_sym_false] = ACTIONS(4065), - [aux_sym__val_number_decimal_token1] = ACTIONS(4067), - [aux_sym__val_number_decimal_token2] = ACTIONS(4069), - [anon_sym_DOT2] = ACTIONS(5823), - [aux_sym__val_number_decimal_token3] = ACTIONS(4073), - [aux_sym__val_number_token1] = ACTIONS(2764), - [aux_sym__val_number_token2] = ACTIONS(2764), - [aux_sym__val_number_token3] = ACTIONS(2764), - [aux_sym__val_number_token4] = ACTIONS(5825), - [aux_sym__val_number_token5] = ACTIONS(5825), - [aux_sym__val_number_token6] = ACTIONS(5825), - [anon_sym_0b] = ACTIONS(2768), - [anon_sym_0o] = ACTIONS(2770), - [anon_sym_0x] = ACTIONS(2770), - [sym_val_date] = ACTIONS(4077), - [anon_sym_DQUOTE] = ACTIONS(4079), - [sym__str_single_quotes] = ACTIONS(4081), - [sym__str_back_ticks] = ACTIONS(4081), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5609), - [anon_sym_POUND] = ACTIONS(3), + [2461] = { + [sym__expr_parenthesized_immediate] = STATE(3109), + [sym__immediate_decimal] = STATE(3110), + [sym_val_variable] = STATE(3109), + [sym__var] = STATE(2939), + [sym_comment] = STATE(2461), + [anon_sym_export] = ACTIONS(2207), + [anon_sym_alias] = ACTIONS(2207), + [anon_sym_let] = ACTIONS(2207), + [anon_sym_let_DASHenv] = ACTIONS(2207), + [anon_sym_mut] = ACTIONS(2207), + [anon_sym_const] = ACTIONS(2207), + [sym_cmd_identifier] = ACTIONS(2207), + [anon_sym_def] = ACTIONS(2207), + [anon_sym_export_DASHenv] = ACTIONS(2207), + [anon_sym_extern] = ACTIONS(2207), + [anon_sym_module] = ACTIONS(2207), + [anon_sym_use] = ACTIONS(2207), + [anon_sym_LPAREN] = ACTIONS(2207), + [anon_sym_DOLLAR] = ACTIONS(6330), + [anon_sym_error] = ACTIONS(2207), + [anon_sym_list] = ACTIONS(2207), + [anon_sym_DASH] = ACTIONS(2207), + [anon_sym_break] = ACTIONS(2207), + [anon_sym_continue] = ACTIONS(2207), + [anon_sym_for] = ACTIONS(2207), + [anon_sym_in] = ACTIONS(2207), + [anon_sym_loop] = ACTIONS(2207), + [anon_sym_make] = ACTIONS(2207), + [anon_sym_while] = ACTIONS(2207), + [anon_sym_do] = ACTIONS(2207), + [anon_sym_if] = ACTIONS(2207), + [anon_sym_else] = ACTIONS(2207), + [anon_sym_match] = ACTIONS(2207), + [anon_sym_RBRACE] = ACTIONS(2207), + [anon_sym_try] = ACTIONS(2207), + [anon_sym_catch] = ACTIONS(2207), + [anon_sym_return] = ACTIONS(2207), + [anon_sym_source] = ACTIONS(2207), + [anon_sym_source_DASHenv] = ACTIONS(2207), + [anon_sym_register] = ACTIONS(2207), + [anon_sym_hide] = ACTIONS(2207), + [anon_sym_hide_DASHenv] = ACTIONS(2207), + [anon_sym_overlay] = ACTIONS(2207), + [anon_sym_new] = ACTIONS(2207), + [anon_sym_as] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(2207), + [anon_sym_LPAREN2] = ACTIONS(6332), + [anon_sym_DOT] = ACTIONS(6334), + [aux_sym__immediate_decimal_token1] = ACTIONS(6336), + [aux_sym__immediate_decimal_token3] = ACTIONS(6336), + [aux_sym__immediate_decimal_token4] = ACTIONS(6338), + [aux_sym__val_number_decimal_token1] = ACTIONS(2207), + [aux_sym__val_number_decimal_token2] = ACTIONS(2207), + [anon_sym_DOT2] = ACTIONS(2207), + [aux_sym__val_number_decimal_token3] = ACTIONS(2207), + [aux_sym__val_number_token1] = ACTIONS(2207), + [aux_sym__val_number_token2] = ACTIONS(2207), + [aux_sym__val_number_token3] = ACTIONS(2207), + [aux_sym__val_number_token4] = ACTIONS(2207), + [aux_sym__val_number_token5] = ACTIONS(2207), + [aux_sym__val_number_token6] = ACTIONS(2207), + [anon_sym_DQUOTE] = ACTIONS(2207), + [sym__str_single_quotes] = ACTIONS(2207), + [sym__str_back_ticks] = ACTIONS(2207), + [sym__entry_separator] = ACTIONS(2209), + [aux_sym__record_key_token2] = ACTIONS(2207), + [anon_sym_POUND] = ACTIONS(113), }, - [2188] = { - [sym_expr_unary] = STATE(6485), - [sym__expr_unary_minus] = STATE(6430), - [sym_expr_binary] = STATE(6485), - [sym__expr_binary_expression] = STATE(6524), - [sym_expr_parenthesized] = STATE(6485), - [sym__val_range] = STATE(10636), - [sym__value] = STATE(6485), - [sym_val_nothing] = STATE(6590), - [sym_val_bool] = STATE(6343), - [sym_val_variable] = STATE(6590), - [sym__var] = STATE(5737), - [sym_val_number] = STATE(6590), - [sym__val_number_decimal] = STATE(4858), - [sym__val_number] = STATE(6519), - [sym_val_duration] = STATE(6590), - [sym_val_filesize] = STATE(6590), - [sym_val_binary] = STATE(6590), - [sym_val_string] = STATE(6590), - [sym__str_double_quotes] = STATE(6540), - [sym_val_interpolated] = STATE(6590), - [sym__inter_single_quotes] = STATE(6464), - [sym__inter_double_quotes] = STATE(6419), - [sym_val_list] = STATE(6590), - [sym_val_record] = STATE(6590), - [sym_val_table] = STATE(6590), - [sym_val_closure] = STATE(6590), - [sym_unquoted] = STATE(6493), - [sym__unquoted_anonymous_prefix] = STATE(10827), - [sym_comment] = STATE(2188), - [anon_sym_LBRACK] = ACTIONS(4051), - [anon_sym_LPAREN] = ACTIONS(5585), - [anon_sym_DOLLAR] = ACTIONS(5587), - [anon_sym_DASH] = ACTIONS(4053), - [anon_sym_LBRACE] = ACTIONS(4055), - [anon_sym_DOT_DOT] = ACTIONS(5821), - [anon_sym_not] = ACTIONS(4059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5591), - [anon_sym_DOT_DOT_LT] = ACTIONS(5591), - [anon_sym_null] = ACTIONS(4063), - [anon_sym_true] = ACTIONS(4065), - [anon_sym_false] = ACTIONS(4065), - [aux_sym__val_number_decimal_token1] = ACTIONS(4067), - [aux_sym__val_number_decimal_token2] = ACTIONS(4069), - [anon_sym_DOT2] = ACTIONS(5823), - [aux_sym__val_number_decimal_token3] = ACTIONS(4073), - [aux_sym__val_number_token1] = ACTIONS(2764), - [aux_sym__val_number_token2] = ACTIONS(2764), - [aux_sym__val_number_token3] = ACTIONS(2764), - [aux_sym__val_number_token4] = ACTIONS(5825), - [aux_sym__val_number_token5] = ACTIONS(5825), - [aux_sym__val_number_token6] = ACTIONS(5825), - [anon_sym_0b] = ACTIONS(2768), - [anon_sym_0o] = ACTIONS(2770), - [anon_sym_0x] = ACTIONS(2770), - [sym_val_date] = ACTIONS(4077), - [anon_sym_DQUOTE] = ACTIONS(4079), - [sym__str_single_quotes] = ACTIONS(4081), - [sym__str_back_ticks] = ACTIONS(4081), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5609), - [anon_sym_POUND] = ACTIONS(3), + [2462] = { + [sym__expr_parenthesized_immediate] = STATE(3111), + [sym__immediate_decimal] = STATE(3091), + [sym_val_variable] = STATE(3111), + [sym__var] = STATE(2939), + [sym_comment] = STATE(2462), + [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), + [sym_cmd_identifier] = 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_DOLLAR] = ACTIONS(6330), + [anon_sym_error] = ACTIONS(2136), + [anon_sym_list] = ACTIONS(2136), + [anon_sym_DASH] = ACTIONS(2136), + [anon_sym_break] = ACTIONS(2136), + [anon_sym_continue] = ACTIONS(2136), + [anon_sym_for] = ACTIONS(2136), + [anon_sym_in] = 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_new] = ACTIONS(2136), + [anon_sym_as] = ACTIONS(2136), + [anon_sym_PLUS] = ACTIONS(2136), + [anon_sym_LPAREN2] = ACTIONS(6332), + [anon_sym_DOT] = ACTIONS(6334), + [aux_sym__immediate_decimal_token1] = ACTIONS(6336), + [aux_sym__immediate_decimal_token3] = ACTIONS(6336), + [aux_sym__immediate_decimal_token4] = ACTIONS(6338), + [aux_sym__val_number_decimal_token1] = ACTIONS(2136), + [aux_sym__val_number_decimal_token2] = ACTIONS(2136), + [anon_sym_DOT2] = ACTIONS(2136), + [aux_sym__val_number_decimal_token3] = 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), + [sym__entry_separator] = ACTIONS(2138), + [aux_sym__record_key_token2] = ACTIONS(2136), + [anon_sym_POUND] = ACTIONS(113), }, - [2189] = { - [sym_expr_unary] = STATE(6485), - [sym__expr_unary_minus] = STATE(6430), - [sym_expr_binary] = STATE(6485), - [sym__expr_binary_expression] = STATE(6525), - [sym_expr_parenthesized] = STATE(6485), - [sym__val_range] = STATE(10636), - [sym__value] = STATE(6485), - [sym_val_nothing] = STATE(6590), - [sym_val_bool] = STATE(6343), - [sym_val_variable] = STATE(6590), - [sym__var] = STATE(5737), - [sym_val_number] = STATE(6590), - [sym__val_number_decimal] = STATE(4858), - [sym__val_number] = STATE(6519), - [sym_val_duration] = STATE(6590), - [sym_val_filesize] = STATE(6590), - [sym_val_binary] = STATE(6590), - [sym_val_string] = STATE(6590), - [sym__str_double_quotes] = STATE(6540), - [sym_val_interpolated] = STATE(6590), - [sym__inter_single_quotes] = STATE(6464), - [sym__inter_double_quotes] = STATE(6419), - [sym_val_list] = STATE(6590), - [sym_val_record] = STATE(6590), - [sym_val_table] = STATE(6590), - [sym_val_closure] = STATE(6590), - [sym_unquoted] = STATE(6494), - [sym__unquoted_anonymous_prefix] = STATE(10827), - [sym_comment] = STATE(2189), - [anon_sym_LBRACK] = ACTIONS(4051), - [anon_sym_LPAREN] = ACTIONS(5585), - [anon_sym_DOLLAR] = ACTIONS(5587), - [anon_sym_DASH] = ACTIONS(4053), - [anon_sym_LBRACE] = ACTIONS(4055), - [anon_sym_DOT_DOT] = ACTIONS(5821), - [anon_sym_not] = ACTIONS(4059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5591), - [anon_sym_DOT_DOT_LT] = ACTIONS(5591), - [anon_sym_null] = ACTIONS(4063), - [anon_sym_true] = ACTIONS(4065), - [anon_sym_false] = ACTIONS(4065), - [aux_sym__val_number_decimal_token1] = ACTIONS(4067), - [aux_sym__val_number_decimal_token2] = ACTIONS(4069), - [anon_sym_DOT2] = ACTIONS(5823), - [aux_sym__val_number_decimal_token3] = ACTIONS(4073), - [aux_sym__val_number_token1] = ACTIONS(2764), - [aux_sym__val_number_token2] = ACTIONS(2764), - [aux_sym__val_number_token3] = ACTIONS(2764), - [aux_sym__val_number_token4] = ACTIONS(5825), - [aux_sym__val_number_token5] = ACTIONS(5825), - [aux_sym__val_number_token6] = ACTIONS(5825), - [anon_sym_0b] = ACTIONS(2768), - [anon_sym_0o] = ACTIONS(2770), - [anon_sym_0x] = ACTIONS(2770), - [sym_val_date] = ACTIONS(4077), - [anon_sym_DQUOTE] = ACTIONS(4079), - [sym__str_single_quotes] = ACTIONS(4081), - [sym__str_back_ticks] = ACTIONS(4081), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5609), - [anon_sym_POUND] = ACTIONS(3), + [2463] = { + [sym__expr_parenthesized_immediate] = STATE(3113), + [sym__immediate_decimal] = STATE(3114), + [sym_val_variable] = STATE(3113), + [sym__var] = STATE(2939), + [sym_comment] = STATE(2463), + [anon_sym_export] = ACTIONS(2146), + [anon_sym_alias] = ACTIONS(2146), + [anon_sym_let] = ACTIONS(2146), + [anon_sym_let_DASHenv] = ACTIONS(2146), + [anon_sym_mut] = ACTIONS(2146), + [anon_sym_const] = ACTIONS(2146), + [sym_cmd_identifier] = ACTIONS(2146), + [anon_sym_def] = ACTIONS(2146), + [anon_sym_export_DASHenv] = ACTIONS(2146), + [anon_sym_extern] = ACTIONS(2146), + [anon_sym_module] = ACTIONS(2146), + [anon_sym_use] = ACTIONS(2146), + [anon_sym_LPAREN] = ACTIONS(2146), + [anon_sym_DOLLAR] = ACTIONS(6330), + [anon_sym_error] = ACTIONS(2146), + [anon_sym_list] = ACTIONS(2146), + [anon_sym_DASH] = ACTIONS(2146), + [anon_sym_break] = ACTIONS(2146), + [anon_sym_continue] = ACTIONS(2146), + [anon_sym_for] = ACTIONS(2146), + [anon_sym_in] = ACTIONS(2146), + [anon_sym_loop] = ACTIONS(2146), + [anon_sym_make] = ACTIONS(2146), + [anon_sym_while] = ACTIONS(2146), + [anon_sym_do] = ACTIONS(2146), + [anon_sym_if] = ACTIONS(2146), + [anon_sym_else] = ACTIONS(2146), + [anon_sym_match] = ACTIONS(2146), + [anon_sym_RBRACE] = ACTIONS(2146), + [anon_sym_try] = ACTIONS(2146), + [anon_sym_catch] = ACTIONS(2146), + [anon_sym_return] = ACTIONS(2146), + [anon_sym_source] = ACTIONS(2146), + [anon_sym_source_DASHenv] = ACTIONS(2146), + [anon_sym_register] = ACTIONS(2146), + [anon_sym_hide] = ACTIONS(2146), + [anon_sym_hide_DASHenv] = ACTIONS(2146), + [anon_sym_overlay] = ACTIONS(2146), + [anon_sym_new] = ACTIONS(2146), + [anon_sym_as] = ACTIONS(2146), + [anon_sym_PLUS] = ACTIONS(2146), + [anon_sym_LPAREN2] = ACTIONS(6332), + [anon_sym_DOT] = ACTIONS(6334), + [aux_sym__immediate_decimal_token1] = ACTIONS(6336), + [aux_sym__immediate_decimal_token3] = ACTIONS(6336), + [aux_sym__immediate_decimal_token4] = ACTIONS(6338), + [aux_sym__val_number_decimal_token1] = ACTIONS(2146), + [aux_sym__val_number_decimal_token2] = ACTIONS(2146), + [anon_sym_DOT2] = ACTIONS(2146), + [aux_sym__val_number_decimal_token3] = ACTIONS(2146), + [aux_sym__val_number_token1] = ACTIONS(2146), + [aux_sym__val_number_token2] = ACTIONS(2146), + [aux_sym__val_number_token3] = ACTIONS(2146), + [aux_sym__val_number_token4] = ACTIONS(2146), + [aux_sym__val_number_token5] = ACTIONS(2146), + [aux_sym__val_number_token6] = ACTIONS(2146), + [anon_sym_DQUOTE] = ACTIONS(2146), + [sym__str_single_quotes] = ACTIONS(2146), + [sym__str_back_ticks] = ACTIONS(2146), + [sym__entry_separator] = ACTIONS(2148), + [aux_sym__record_key_token2] = ACTIONS(2146), + [anon_sym_POUND] = ACTIONS(113), }, - [2190] = { - [sym_expr_unary] = STATE(6485), - [sym__expr_unary_minus] = STATE(6430), - [sym_expr_binary] = STATE(6485), - [sym__expr_binary_expression] = STATE(6526), - [sym_expr_parenthesized] = STATE(6485), - [sym__val_range] = STATE(10636), - [sym__value] = STATE(6485), - [sym_val_nothing] = STATE(6590), - [sym_val_bool] = STATE(6343), - [sym_val_variable] = STATE(6590), - [sym__var] = STATE(5737), - [sym_val_number] = STATE(6590), - [sym__val_number_decimal] = STATE(4858), - [sym__val_number] = STATE(6519), - [sym_val_duration] = STATE(6590), - [sym_val_filesize] = STATE(6590), - [sym_val_binary] = STATE(6590), - [sym_val_string] = STATE(6590), - [sym__str_double_quotes] = STATE(6540), - [sym_val_interpolated] = STATE(6590), - [sym__inter_single_quotes] = STATE(6464), - [sym__inter_double_quotes] = STATE(6419), - [sym_val_list] = STATE(6590), - [sym_val_record] = STATE(6590), - [sym_val_table] = STATE(6590), - [sym_val_closure] = STATE(6590), - [sym_unquoted] = STATE(6495), - [sym__unquoted_anonymous_prefix] = STATE(10827), - [sym_comment] = STATE(2190), - [anon_sym_LBRACK] = ACTIONS(4051), - [anon_sym_LPAREN] = ACTIONS(5585), - [anon_sym_DOLLAR] = ACTIONS(5587), - [anon_sym_DASH] = ACTIONS(4053), - [anon_sym_LBRACE] = ACTIONS(4055), - [anon_sym_DOT_DOT] = ACTIONS(5821), - [anon_sym_not] = ACTIONS(4059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5591), - [anon_sym_DOT_DOT_LT] = ACTIONS(5591), - [anon_sym_null] = ACTIONS(4063), - [anon_sym_true] = ACTIONS(4065), - [anon_sym_false] = ACTIONS(4065), - [aux_sym__val_number_decimal_token1] = ACTIONS(4067), - [aux_sym__val_number_decimal_token2] = ACTIONS(4069), - [anon_sym_DOT2] = ACTIONS(5823), - [aux_sym__val_number_decimal_token3] = ACTIONS(4073), - [aux_sym__val_number_token1] = ACTIONS(2764), - [aux_sym__val_number_token2] = ACTIONS(2764), - [aux_sym__val_number_token3] = ACTIONS(2764), - [aux_sym__val_number_token4] = ACTIONS(5825), - [aux_sym__val_number_token5] = ACTIONS(5825), - [aux_sym__val_number_token6] = ACTIONS(5825), - [anon_sym_0b] = ACTIONS(2768), - [anon_sym_0o] = ACTIONS(2770), - [anon_sym_0x] = ACTIONS(2770), - [sym_val_date] = ACTIONS(4077), - [anon_sym_DQUOTE] = ACTIONS(4079), - [sym__str_single_quotes] = ACTIONS(4081), - [sym__str_back_ticks] = ACTIONS(4081), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5609), - [anon_sym_POUND] = ACTIONS(3), + [2464] = { + [sym_comment] = STATE(2464), + [anon_sym_export] = ACTIONS(6340), + [anon_sym_alias] = ACTIONS(6340), + [anon_sym_let] = ACTIONS(6340), + [anon_sym_let_DASHenv] = ACTIONS(6340), + [anon_sym_mut] = ACTIONS(6340), + [anon_sym_const] = ACTIONS(6340), + [anon_sym_SEMI] = ACTIONS(6342), + [sym_cmd_identifier] = ACTIONS(6340), + [anon_sym_LF] = ACTIONS(6345), + [anon_sym_def] = ACTIONS(6340), + [anon_sym_export_DASHenv] = ACTIONS(6340), + [anon_sym_extern] = ACTIONS(6340), + [anon_sym_module] = ACTIONS(6340), + [anon_sym_use] = ACTIONS(6340), + [anon_sym_LBRACK] = ACTIONS(6340), + [anon_sym_LPAREN] = ACTIONS(6340), + [anon_sym_RPAREN] = ACTIONS(6348), + [anon_sym_DOLLAR] = ACTIONS(6340), + [anon_sym_error] = ACTIONS(6340), + [anon_sym_DASH] = ACTIONS(6340), + [anon_sym_break] = ACTIONS(6340), + [anon_sym_continue] = ACTIONS(6340), + [anon_sym_for] = ACTIONS(6340), + [anon_sym_loop] = ACTIONS(6340), + [anon_sym_while] = ACTIONS(6340), + [anon_sym_do] = ACTIONS(6340), + [anon_sym_if] = ACTIONS(6340), + [anon_sym_match] = ACTIONS(6340), + [anon_sym_LBRACE] = ACTIONS(6340), + [anon_sym_DOT_DOT] = ACTIONS(6340), + [anon_sym_try] = ACTIONS(6340), + [anon_sym_return] = ACTIONS(6340), + [anon_sym_source] = ACTIONS(6340), + [anon_sym_source_DASHenv] = ACTIONS(6340), + [anon_sym_register] = ACTIONS(6340), + [anon_sym_hide] = ACTIONS(6340), + [anon_sym_hide_DASHenv] = ACTIONS(6340), + [anon_sym_overlay] = ACTIONS(6340), + [anon_sym_where] = ACTIONS(6340), + [anon_sym_not] = ACTIONS(6340), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6340), + [anon_sym_DOT_DOT_LT] = ACTIONS(6340), + [anon_sym_null] = ACTIONS(6340), + [anon_sym_true] = ACTIONS(6340), + [anon_sym_false] = ACTIONS(6340), + [aux_sym__val_number_decimal_token1] = ACTIONS(6340), + [aux_sym__val_number_decimal_token2] = ACTIONS(6340), + [anon_sym_DOT2] = ACTIONS(6340), + [aux_sym__val_number_decimal_token3] = ACTIONS(6340), + [aux_sym__val_number_token1] = ACTIONS(6340), + [aux_sym__val_number_token2] = ACTIONS(6340), + [aux_sym__val_number_token3] = ACTIONS(6340), + [aux_sym__val_number_token4] = ACTIONS(6340), + [aux_sym__val_number_token5] = ACTIONS(6340), + [aux_sym__val_number_token6] = ACTIONS(6340), + [anon_sym_0b] = ACTIONS(6340), + [anon_sym_0o] = ACTIONS(6340), + [anon_sym_0x] = ACTIONS(6340), + [sym_val_date] = ACTIONS(6340), + [anon_sym_DQUOTE] = ACTIONS(6340), + [sym__str_single_quotes] = ACTIONS(6340), + [sym__str_back_ticks] = ACTIONS(6340), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6340), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6340), + [anon_sym_CARET] = ACTIONS(6340), + [anon_sym_POUND] = ACTIONS(113), }, - [2191] = { - [sym_expr_unary] = STATE(6485), - [sym__expr_unary_minus] = STATE(6430), - [sym_expr_binary] = STATE(6485), - [sym__expr_binary_expression] = STATE(6527), - [sym_expr_parenthesized] = STATE(6485), - [sym__val_range] = STATE(10636), - [sym__value] = STATE(6485), - [sym_val_nothing] = STATE(6590), - [sym_val_bool] = STATE(6343), - [sym_val_variable] = STATE(6590), - [sym__var] = STATE(5737), - [sym_val_number] = STATE(6590), - [sym__val_number_decimal] = STATE(4858), - [sym__val_number] = STATE(6519), - [sym_val_duration] = STATE(6590), - [sym_val_filesize] = STATE(6590), - [sym_val_binary] = STATE(6590), - [sym_val_string] = STATE(6590), - [sym__str_double_quotes] = STATE(6540), - [sym_val_interpolated] = STATE(6590), - [sym__inter_single_quotes] = STATE(6464), - [sym__inter_double_quotes] = STATE(6419), - [sym_val_list] = STATE(6590), - [sym_val_record] = STATE(6590), - [sym_val_table] = STATE(6590), - [sym_val_closure] = STATE(6590), - [sym_unquoted] = STATE(6499), - [sym__unquoted_anonymous_prefix] = STATE(10827), - [sym_comment] = STATE(2191), - [anon_sym_LBRACK] = ACTIONS(4051), - [anon_sym_LPAREN] = ACTIONS(5585), - [anon_sym_DOLLAR] = ACTIONS(5587), - [anon_sym_DASH] = ACTIONS(4053), - [anon_sym_LBRACE] = ACTIONS(4055), - [anon_sym_DOT_DOT] = ACTIONS(5821), - [anon_sym_not] = ACTIONS(4059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5591), - [anon_sym_DOT_DOT_LT] = ACTIONS(5591), - [anon_sym_null] = ACTIONS(4063), - [anon_sym_true] = ACTIONS(4065), - [anon_sym_false] = ACTIONS(4065), - [aux_sym__val_number_decimal_token1] = ACTIONS(4067), - [aux_sym__val_number_decimal_token2] = ACTIONS(4069), - [anon_sym_DOT2] = ACTIONS(5823), - [aux_sym__val_number_decimal_token3] = ACTIONS(4073), - [aux_sym__val_number_token1] = ACTIONS(2764), - [aux_sym__val_number_token2] = ACTIONS(2764), - [aux_sym__val_number_token3] = ACTIONS(2764), - [aux_sym__val_number_token4] = ACTIONS(5825), - [aux_sym__val_number_token5] = ACTIONS(5825), - [aux_sym__val_number_token6] = ACTIONS(5825), - [anon_sym_0b] = ACTIONS(2768), - [anon_sym_0o] = ACTIONS(2770), - [anon_sym_0x] = ACTIONS(2770), - [sym_val_date] = ACTIONS(4077), - [anon_sym_DQUOTE] = ACTIONS(4079), - [sym__str_single_quotes] = ACTIONS(4081), - [sym__str_back_ticks] = ACTIONS(4081), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5609), - [anon_sym_POUND] = ACTIONS(3), + [2465] = { + [sym_comment] = STATE(2465), + [ts_builtin_sym_end] = ACTIONS(6084), + [anon_sym_export] = ACTIONS(6082), + [anon_sym_alias] = ACTIONS(6082), + [anon_sym_let] = ACTIONS(6082), + [anon_sym_let_DASHenv] = ACTIONS(6082), + [anon_sym_mut] = ACTIONS(6082), + [anon_sym_const] = ACTIONS(6082), + [anon_sym_SEMI] = ACTIONS(6082), + [sym_cmd_identifier] = ACTIONS(6082), + [anon_sym_LF] = ACTIONS(6084), + [anon_sym_def] = ACTIONS(6082), + [anon_sym_export_DASHenv] = ACTIONS(6082), + [anon_sym_extern] = ACTIONS(6082), + [anon_sym_module] = ACTIONS(6082), + [anon_sym_use] = ACTIONS(6082), + [anon_sym_LBRACK] = ACTIONS(6082), + [anon_sym_LPAREN] = ACTIONS(6082), + [anon_sym_DOLLAR] = ACTIONS(6082), + [anon_sym_error] = ACTIONS(6082), + [anon_sym_DASH] = ACTIONS(6082), + [anon_sym_break] = ACTIONS(6082), + [anon_sym_continue] = ACTIONS(6082), + [anon_sym_for] = ACTIONS(6082), + [anon_sym_loop] = ACTIONS(6082), + [anon_sym_while] = ACTIONS(6082), + [anon_sym_do] = ACTIONS(6082), + [anon_sym_if] = ACTIONS(6082), + [anon_sym_match] = ACTIONS(6082), + [anon_sym_LBRACE] = ACTIONS(6082), + [anon_sym_DOT_DOT] = ACTIONS(6082), + [anon_sym_try] = ACTIONS(6082), + [anon_sym_return] = ACTIONS(6082), + [anon_sym_source] = ACTIONS(6082), + [anon_sym_source_DASHenv] = ACTIONS(6082), + [anon_sym_register] = ACTIONS(6082), + [anon_sym_hide] = ACTIONS(6082), + [anon_sym_hide_DASHenv] = ACTIONS(6082), + [anon_sym_overlay] = ACTIONS(6082), + [anon_sym_where] = ACTIONS(6082), + [anon_sym_not] = ACTIONS(6082), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6082), + [anon_sym_DOT_DOT_LT] = ACTIONS(6082), + [anon_sym_null] = ACTIONS(6082), + [anon_sym_true] = ACTIONS(6082), + [anon_sym_false] = ACTIONS(6082), + [aux_sym__val_number_decimal_token1] = ACTIONS(6082), + [aux_sym__val_number_decimal_token2] = ACTIONS(6082), + [anon_sym_DOT2] = ACTIONS(6082), + [aux_sym__val_number_decimal_token3] = ACTIONS(6082), + [aux_sym__val_number_token1] = ACTIONS(6082), + [aux_sym__val_number_token2] = ACTIONS(6082), + [aux_sym__val_number_token3] = ACTIONS(6082), + [aux_sym__val_number_token4] = ACTIONS(6082), + [aux_sym__val_number_token5] = ACTIONS(6082), + [aux_sym__val_number_token6] = ACTIONS(6082), + [anon_sym_0b] = ACTIONS(6082), + [anon_sym_0o] = ACTIONS(6082), + [anon_sym_0x] = ACTIONS(6082), + [sym_val_date] = ACTIONS(6082), + [anon_sym_DQUOTE] = ACTIONS(6082), + [sym__str_single_quotes] = ACTIONS(6082), + [sym__str_back_ticks] = ACTIONS(6082), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6082), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6082), + [anon_sym_CARET] = ACTIONS(6082), + [anon_sym_POUND] = ACTIONS(113), }, - [2192] = { - [sym_expr_unary] = STATE(6485), - [sym__expr_unary_minus] = STATE(6430), - [sym_expr_binary] = STATE(6485), - [sym__expr_binary_expression] = STATE(6528), - [sym_expr_parenthesized] = STATE(6485), - [sym__val_range] = STATE(10636), - [sym__value] = STATE(6485), - [sym_val_nothing] = STATE(6590), - [sym_val_bool] = STATE(6343), - [sym_val_variable] = STATE(6590), - [sym__var] = STATE(5737), - [sym_val_number] = STATE(6590), - [sym__val_number_decimal] = STATE(4858), - [sym__val_number] = STATE(6519), - [sym_val_duration] = STATE(6590), - [sym_val_filesize] = STATE(6590), - [sym_val_binary] = STATE(6590), - [sym_val_string] = STATE(6590), - [sym__str_double_quotes] = STATE(6540), - [sym_val_interpolated] = STATE(6590), - [sym__inter_single_quotes] = STATE(6464), - [sym__inter_double_quotes] = STATE(6419), - [sym_val_list] = STATE(6590), - [sym_val_record] = STATE(6590), - [sym_val_table] = STATE(6590), - [sym_val_closure] = STATE(6590), - [sym_unquoted] = STATE(6504), - [sym__unquoted_anonymous_prefix] = STATE(10827), - [sym_comment] = STATE(2192), - [anon_sym_LBRACK] = ACTIONS(4051), - [anon_sym_LPAREN] = ACTIONS(5585), - [anon_sym_DOLLAR] = ACTIONS(5587), - [anon_sym_DASH] = ACTIONS(4053), - [anon_sym_LBRACE] = ACTIONS(4055), - [anon_sym_DOT_DOT] = ACTIONS(5821), - [anon_sym_not] = ACTIONS(4059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5591), - [anon_sym_DOT_DOT_LT] = ACTIONS(5591), - [anon_sym_null] = ACTIONS(4063), - [anon_sym_true] = ACTIONS(4065), - [anon_sym_false] = ACTIONS(4065), - [aux_sym__val_number_decimal_token1] = ACTIONS(4067), - [aux_sym__val_number_decimal_token2] = ACTIONS(4069), - [anon_sym_DOT2] = ACTIONS(5823), - [aux_sym__val_number_decimal_token3] = ACTIONS(4073), - [aux_sym__val_number_token1] = ACTIONS(2764), - [aux_sym__val_number_token2] = ACTIONS(2764), - [aux_sym__val_number_token3] = ACTIONS(2764), - [aux_sym__val_number_token4] = ACTIONS(5825), - [aux_sym__val_number_token5] = ACTIONS(5825), - [aux_sym__val_number_token6] = ACTIONS(5825), - [anon_sym_0b] = ACTIONS(2768), - [anon_sym_0o] = ACTIONS(2770), - [anon_sym_0x] = ACTIONS(2770), - [sym_val_date] = ACTIONS(4077), - [anon_sym_DQUOTE] = ACTIONS(4079), - [sym__str_single_quotes] = ACTIONS(4081), - [sym__str_back_ticks] = ACTIONS(4081), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5609), - [anon_sym_POUND] = ACTIONS(3), + [2466] = { + [sym_comment] = STATE(2466), + [ts_builtin_sym_end] = ACTIONS(5972), + [anon_sym_export] = ACTIONS(5970), + [anon_sym_alias] = ACTIONS(5970), + [anon_sym_let] = ACTIONS(5970), + [anon_sym_let_DASHenv] = ACTIONS(5970), + [anon_sym_mut] = ACTIONS(5970), + [anon_sym_const] = ACTIONS(5970), + [anon_sym_SEMI] = ACTIONS(5970), + [sym_cmd_identifier] = ACTIONS(5970), + [anon_sym_LF] = ACTIONS(5972), + [anon_sym_def] = ACTIONS(5970), + [anon_sym_export_DASHenv] = ACTIONS(5970), + [anon_sym_extern] = ACTIONS(5970), + [anon_sym_module] = ACTIONS(5970), + [anon_sym_use] = ACTIONS(5970), + [anon_sym_LBRACK] = ACTIONS(5970), + [anon_sym_LPAREN] = ACTIONS(5970), + [anon_sym_DOLLAR] = ACTIONS(5970), + [anon_sym_error] = ACTIONS(5970), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_break] = ACTIONS(5970), + [anon_sym_continue] = ACTIONS(5970), + [anon_sym_for] = ACTIONS(5970), + [anon_sym_loop] = ACTIONS(5970), + [anon_sym_while] = ACTIONS(5970), + [anon_sym_do] = ACTIONS(5970), + [anon_sym_if] = ACTIONS(5970), + [anon_sym_match] = ACTIONS(5970), + [anon_sym_LBRACE] = ACTIONS(5970), + [anon_sym_DOT_DOT] = ACTIONS(5970), + [anon_sym_try] = ACTIONS(5970), + [anon_sym_return] = ACTIONS(5970), + [anon_sym_source] = ACTIONS(5970), + [anon_sym_source_DASHenv] = ACTIONS(5970), + [anon_sym_register] = ACTIONS(5970), + [anon_sym_hide] = ACTIONS(5970), + [anon_sym_hide_DASHenv] = ACTIONS(5970), + [anon_sym_overlay] = ACTIONS(5970), + [anon_sym_where] = ACTIONS(5970), + [anon_sym_not] = ACTIONS(5970), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5970), + [anon_sym_DOT_DOT_LT] = ACTIONS(5970), + [anon_sym_null] = ACTIONS(5970), + [anon_sym_true] = ACTIONS(5970), + [anon_sym_false] = ACTIONS(5970), + [aux_sym__val_number_decimal_token1] = ACTIONS(5970), + [aux_sym__val_number_decimal_token2] = ACTIONS(5970), + [anon_sym_DOT2] = ACTIONS(5970), + [aux_sym__val_number_decimal_token3] = ACTIONS(5970), + [aux_sym__val_number_token1] = ACTIONS(5970), + [aux_sym__val_number_token2] = ACTIONS(5970), + [aux_sym__val_number_token3] = ACTIONS(5970), + [aux_sym__val_number_token4] = ACTIONS(5970), + [aux_sym__val_number_token5] = ACTIONS(5970), + [aux_sym__val_number_token6] = ACTIONS(5970), + [anon_sym_0b] = ACTIONS(5970), + [anon_sym_0o] = ACTIONS(5970), + [anon_sym_0x] = ACTIONS(5970), + [sym_val_date] = ACTIONS(5970), + [anon_sym_DQUOTE] = ACTIONS(5970), + [sym__str_single_quotes] = ACTIONS(5970), + [sym__str_back_ticks] = ACTIONS(5970), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5970), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5970), + [anon_sym_POUND] = ACTIONS(113), }, - [2193] = { - [sym_expr_unary] = STATE(6485), - [sym__expr_unary_minus] = STATE(6430), - [sym_expr_binary] = STATE(6485), - [sym__expr_binary_expression] = STATE(6529), - [sym_expr_parenthesized] = STATE(6485), - [sym__val_range] = STATE(10636), - [sym__value] = STATE(6485), - [sym_val_nothing] = STATE(6590), - [sym_val_bool] = STATE(6343), - [sym_val_variable] = STATE(6590), - [sym__var] = STATE(5737), - [sym_val_number] = STATE(6590), - [sym__val_number_decimal] = STATE(4858), - [sym__val_number] = STATE(6519), - [sym_val_duration] = STATE(6590), - [sym_val_filesize] = STATE(6590), - [sym_val_binary] = STATE(6590), - [sym_val_string] = STATE(6590), - [sym__str_double_quotes] = STATE(6540), - [sym_val_interpolated] = STATE(6590), - [sym__inter_single_quotes] = STATE(6464), - [sym__inter_double_quotes] = STATE(6419), - [sym_val_list] = STATE(6590), - [sym_val_record] = STATE(6590), - [sym_val_table] = STATE(6590), - [sym_val_closure] = STATE(6590), - [sym_unquoted] = STATE(6506), - [sym__unquoted_anonymous_prefix] = STATE(10827), - [sym_comment] = STATE(2193), - [anon_sym_LBRACK] = ACTIONS(4051), - [anon_sym_LPAREN] = ACTIONS(5585), - [anon_sym_DOLLAR] = ACTIONS(5587), - [anon_sym_DASH] = ACTIONS(4053), - [anon_sym_LBRACE] = ACTIONS(4055), - [anon_sym_DOT_DOT] = ACTIONS(5821), - [anon_sym_not] = ACTIONS(4059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5591), - [anon_sym_DOT_DOT_LT] = ACTIONS(5591), - [anon_sym_null] = ACTIONS(4063), - [anon_sym_true] = ACTIONS(4065), - [anon_sym_false] = ACTIONS(4065), - [aux_sym__val_number_decimal_token1] = ACTIONS(4067), - [aux_sym__val_number_decimal_token2] = ACTIONS(4069), - [anon_sym_DOT2] = ACTIONS(5823), - [aux_sym__val_number_decimal_token3] = ACTIONS(4073), - [aux_sym__val_number_token1] = ACTIONS(2764), - [aux_sym__val_number_token2] = ACTIONS(2764), - [aux_sym__val_number_token3] = ACTIONS(2764), - [aux_sym__val_number_token4] = ACTIONS(5825), - [aux_sym__val_number_token5] = ACTIONS(5825), - [aux_sym__val_number_token6] = ACTIONS(5825), - [anon_sym_0b] = ACTIONS(2768), - [anon_sym_0o] = ACTIONS(2770), - [anon_sym_0x] = ACTIONS(2770), - [sym_val_date] = ACTIONS(4077), - [anon_sym_DQUOTE] = ACTIONS(4079), - [sym__str_single_quotes] = ACTIONS(4081), - [sym__str_back_ticks] = ACTIONS(4081), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5609), - [anon_sym_POUND] = ACTIONS(3), + [2467] = { + [sym_comment] = STATE(2467), + [ts_builtin_sym_end] = ACTIONS(5995), + [anon_sym_export] = ACTIONS(5993), + [anon_sym_alias] = ACTIONS(5993), + [anon_sym_let] = ACTIONS(5993), + [anon_sym_let_DASHenv] = ACTIONS(5993), + [anon_sym_mut] = ACTIONS(5993), + [anon_sym_const] = ACTIONS(5993), + [anon_sym_SEMI] = ACTIONS(5993), + [sym_cmd_identifier] = ACTIONS(5993), + [anon_sym_LF] = ACTIONS(5995), + [anon_sym_def] = ACTIONS(5993), + [anon_sym_export_DASHenv] = ACTIONS(5993), + [anon_sym_extern] = ACTIONS(5993), + [anon_sym_module] = ACTIONS(5993), + [anon_sym_use] = ACTIONS(5993), + [anon_sym_LBRACK] = ACTIONS(5993), + [anon_sym_LPAREN] = ACTIONS(5993), + [anon_sym_DOLLAR] = ACTIONS(5993), + [anon_sym_error] = ACTIONS(5993), + [anon_sym_DASH] = ACTIONS(5993), + [anon_sym_break] = ACTIONS(5993), + [anon_sym_continue] = ACTIONS(5993), + [anon_sym_for] = ACTIONS(5993), + [anon_sym_loop] = ACTIONS(5993), + [anon_sym_while] = ACTIONS(5993), + [anon_sym_do] = ACTIONS(5993), + [anon_sym_if] = ACTIONS(5993), + [anon_sym_match] = ACTIONS(5993), + [anon_sym_LBRACE] = ACTIONS(5993), + [anon_sym_DOT_DOT] = ACTIONS(5993), + [anon_sym_try] = ACTIONS(5993), + [anon_sym_return] = ACTIONS(5993), + [anon_sym_source] = ACTIONS(5993), + [anon_sym_source_DASHenv] = ACTIONS(5993), + [anon_sym_register] = ACTIONS(5993), + [anon_sym_hide] = ACTIONS(5993), + [anon_sym_hide_DASHenv] = ACTIONS(5993), + [anon_sym_overlay] = ACTIONS(5993), + [anon_sym_where] = ACTIONS(5993), + [anon_sym_not] = ACTIONS(5993), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5993), + [anon_sym_DOT_DOT_LT] = ACTIONS(5993), + [anon_sym_null] = ACTIONS(5993), + [anon_sym_true] = ACTIONS(5993), + [anon_sym_false] = ACTIONS(5993), + [aux_sym__val_number_decimal_token1] = ACTIONS(5993), + [aux_sym__val_number_decimal_token2] = ACTIONS(5993), + [anon_sym_DOT2] = ACTIONS(5993), + [aux_sym__val_number_decimal_token3] = ACTIONS(5993), + [aux_sym__val_number_token1] = ACTIONS(5993), + [aux_sym__val_number_token2] = ACTIONS(5993), + [aux_sym__val_number_token3] = ACTIONS(5993), + [aux_sym__val_number_token4] = ACTIONS(5993), + [aux_sym__val_number_token5] = ACTIONS(5993), + [aux_sym__val_number_token6] = ACTIONS(5993), + [anon_sym_0b] = ACTIONS(5993), + [anon_sym_0o] = ACTIONS(5993), + [anon_sym_0x] = ACTIONS(5993), + [sym_val_date] = ACTIONS(5993), + [anon_sym_DQUOTE] = ACTIONS(5993), + [sym__str_single_quotes] = ACTIONS(5993), + [sym__str_back_ticks] = ACTIONS(5993), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5993), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5993), + [anon_sym_CARET] = ACTIONS(5993), + [anon_sym_POUND] = ACTIONS(113), }, - [2194] = { - [sym_expr_unary] = STATE(6485), - [sym__expr_unary_minus] = STATE(6430), - [sym_expr_binary] = STATE(6485), - [sym__expr_binary_expression] = STATE(6530), - [sym_expr_parenthesized] = STATE(6485), - [sym__val_range] = STATE(10636), - [sym__value] = STATE(6485), - [sym_val_nothing] = STATE(6590), - [sym_val_bool] = STATE(6343), - [sym_val_variable] = STATE(6590), - [sym__var] = STATE(5737), - [sym_val_number] = STATE(6590), - [sym__val_number_decimal] = STATE(4858), - [sym__val_number] = STATE(6519), - [sym_val_duration] = STATE(6590), - [sym_val_filesize] = STATE(6590), - [sym_val_binary] = STATE(6590), - [sym_val_string] = STATE(6590), - [sym__str_double_quotes] = STATE(6540), - [sym_val_interpolated] = STATE(6590), - [sym__inter_single_quotes] = STATE(6464), - [sym__inter_double_quotes] = STATE(6419), - [sym_val_list] = STATE(6590), - [sym_val_record] = STATE(6590), - [sym_val_table] = STATE(6590), - [sym_val_closure] = STATE(6590), - [sym_unquoted] = STATE(6507), - [sym__unquoted_anonymous_prefix] = STATE(10827), - [sym_comment] = STATE(2194), - [anon_sym_LBRACK] = ACTIONS(4051), - [anon_sym_LPAREN] = ACTIONS(5585), - [anon_sym_DOLLAR] = ACTIONS(5587), - [anon_sym_DASH] = ACTIONS(4053), - [anon_sym_LBRACE] = ACTIONS(4055), - [anon_sym_DOT_DOT] = ACTIONS(5821), - [anon_sym_not] = ACTIONS(4059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5591), - [anon_sym_DOT_DOT_LT] = ACTIONS(5591), - [anon_sym_null] = ACTIONS(4063), - [anon_sym_true] = ACTIONS(4065), - [anon_sym_false] = ACTIONS(4065), - [aux_sym__val_number_decimal_token1] = ACTIONS(4067), - [aux_sym__val_number_decimal_token2] = ACTIONS(4069), - [anon_sym_DOT2] = ACTIONS(5823), - [aux_sym__val_number_decimal_token3] = ACTIONS(4073), - [aux_sym__val_number_token1] = ACTIONS(2764), - [aux_sym__val_number_token2] = ACTIONS(2764), - [aux_sym__val_number_token3] = ACTIONS(2764), - [aux_sym__val_number_token4] = ACTIONS(5825), - [aux_sym__val_number_token5] = ACTIONS(5825), - [aux_sym__val_number_token6] = ACTIONS(5825), - [anon_sym_0b] = ACTIONS(2768), - [anon_sym_0o] = ACTIONS(2770), - [anon_sym_0x] = ACTIONS(2770), - [sym_val_date] = ACTIONS(4077), - [anon_sym_DQUOTE] = ACTIONS(4079), - [sym__str_single_quotes] = ACTIONS(4081), - [sym__str_back_ticks] = ACTIONS(4081), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5609), - [anon_sym_POUND] = ACTIONS(3), + [2468] = { + [sym_comment] = STATE(2468), + [ts_builtin_sym_end] = ACTIONS(5999), + [anon_sym_export] = ACTIONS(5997), + [anon_sym_alias] = ACTIONS(5997), + [anon_sym_let] = ACTIONS(5997), + [anon_sym_let_DASHenv] = ACTIONS(5997), + [anon_sym_mut] = ACTIONS(5997), + [anon_sym_const] = ACTIONS(5997), + [anon_sym_SEMI] = ACTIONS(5997), + [sym_cmd_identifier] = ACTIONS(5997), + [anon_sym_LF] = ACTIONS(5999), + [anon_sym_def] = ACTIONS(5997), + [anon_sym_export_DASHenv] = ACTIONS(5997), + [anon_sym_extern] = ACTIONS(5997), + [anon_sym_module] = ACTIONS(5997), + [anon_sym_use] = ACTIONS(5997), + [anon_sym_LBRACK] = ACTIONS(5997), + [anon_sym_LPAREN] = ACTIONS(5997), + [anon_sym_DOLLAR] = ACTIONS(5997), + [anon_sym_error] = ACTIONS(5997), + [anon_sym_DASH] = ACTIONS(5997), + [anon_sym_break] = ACTIONS(5997), + [anon_sym_continue] = ACTIONS(5997), + [anon_sym_for] = ACTIONS(5997), + [anon_sym_loop] = ACTIONS(5997), + [anon_sym_while] = ACTIONS(5997), + [anon_sym_do] = ACTIONS(5997), + [anon_sym_if] = ACTIONS(5997), + [anon_sym_match] = ACTIONS(5997), + [anon_sym_LBRACE] = ACTIONS(5997), + [anon_sym_DOT_DOT] = ACTIONS(5997), + [anon_sym_try] = ACTIONS(5997), + [anon_sym_return] = ACTIONS(5997), + [anon_sym_source] = ACTIONS(5997), + [anon_sym_source_DASHenv] = ACTIONS(5997), + [anon_sym_register] = ACTIONS(5997), + [anon_sym_hide] = ACTIONS(5997), + [anon_sym_hide_DASHenv] = ACTIONS(5997), + [anon_sym_overlay] = ACTIONS(5997), + [anon_sym_where] = ACTIONS(5997), + [anon_sym_not] = ACTIONS(5997), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5997), + [anon_sym_DOT_DOT_LT] = ACTIONS(5997), + [anon_sym_null] = ACTIONS(5997), + [anon_sym_true] = ACTIONS(5997), + [anon_sym_false] = ACTIONS(5997), + [aux_sym__val_number_decimal_token1] = ACTIONS(5997), + [aux_sym__val_number_decimal_token2] = ACTIONS(5997), + [anon_sym_DOT2] = ACTIONS(5997), + [aux_sym__val_number_decimal_token3] = ACTIONS(5997), + [aux_sym__val_number_token1] = ACTIONS(5997), + [aux_sym__val_number_token2] = ACTIONS(5997), + [aux_sym__val_number_token3] = ACTIONS(5997), + [aux_sym__val_number_token4] = ACTIONS(5997), + [aux_sym__val_number_token5] = ACTIONS(5997), + [aux_sym__val_number_token6] = ACTIONS(5997), + [anon_sym_0b] = ACTIONS(5997), + [anon_sym_0o] = ACTIONS(5997), + [anon_sym_0x] = ACTIONS(5997), + [sym_val_date] = ACTIONS(5997), + [anon_sym_DQUOTE] = ACTIONS(5997), + [sym__str_single_quotes] = ACTIONS(5997), + [sym__str_back_ticks] = ACTIONS(5997), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5997), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5997), + [anon_sym_CARET] = ACTIONS(5997), + [anon_sym_POUND] = ACTIONS(113), }, - [2195] = { - [sym_expr_unary] = STATE(6485), - [sym__expr_unary_minus] = STATE(6430), - [sym_expr_binary] = STATE(6485), - [sym__expr_binary_expression] = STATE(6531), - [sym_expr_parenthesized] = STATE(6485), - [sym__val_range] = STATE(10636), - [sym__value] = STATE(6485), - [sym_val_nothing] = STATE(6590), - [sym_val_bool] = STATE(6343), - [sym_val_variable] = STATE(6590), - [sym__var] = STATE(5737), - [sym_val_number] = STATE(6590), - [sym__val_number_decimal] = STATE(4858), - [sym__val_number] = STATE(6519), - [sym_val_duration] = STATE(6590), - [sym_val_filesize] = STATE(6590), - [sym_val_binary] = STATE(6590), - [sym_val_string] = STATE(6590), - [sym__str_double_quotes] = STATE(6540), - [sym_val_interpolated] = STATE(6590), - [sym__inter_single_quotes] = STATE(6464), - [sym__inter_double_quotes] = STATE(6419), - [sym_val_list] = STATE(6590), - [sym_val_record] = STATE(6590), - [sym_val_table] = STATE(6590), - [sym_val_closure] = STATE(6590), - [sym_unquoted] = STATE(6508), - [sym__unquoted_anonymous_prefix] = STATE(10827), - [sym_comment] = STATE(2195), - [anon_sym_LBRACK] = ACTIONS(4051), - [anon_sym_LPAREN] = ACTIONS(5585), - [anon_sym_DOLLAR] = ACTIONS(5587), - [anon_sym_DASH] = ACTIONS(4053), - [anon_sym_LBRACE] = ACTIONS(4055), - [anon_sym_DOT_DOT] = ACTIONS(5821), - [anon_sym_not] = ACTIONS(4059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5591), - [anon_sym_DOT_DOT_LT] = ACTIONS(5591), - [anon_sym_null] = ACTIONS(4063), - [anon_sym_true] = ACTIONS(4065), - [anon_sym_false] = ACTIONS(4065), - [aux_sym__val_number_decimal_token1] = ACTIONS(4067), - [aux_sym__val_number_decimal_token2] = ACTIONS(4069), - [anon_sym_DOT2] = ACTIONS(5823), - [aux_sym__val_number_decimal_token3] = ACTIONS(4073), - [aux_sym__val_number_token1] = ACTIONS(2764), - [aux_sym__val_number_token2] = ACTIONS(2764), - [aux_sym__val_number_token3] = ACTIONS(2764), - [aux_sym__val_number_token4] = ACTIONS(5825), - [aux_sym__val_number_token5] = ACTIONS(5825), - [aux_sym__val_number_token6] = ACTIONS(5825), - [anon_sym_0b] = ACTIONS(2768), - [anon_sym_0o] = ACTIONS(2770), - [anon_sym_0x] = ACTIONS(2770), - [sym_val_date] = ACTIONS(4077), - [anon_sym_DQUOTE] = ACTIONS(4079), - [sym__str_single_quotes] = ACTIONS(4081), - [sym__str_back_ticks] = ACTIONS(4081), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5609), - [anon_sym_POUND] = ACTIONS(3), + [2469] = { + [sym_comment] = STATE(2469), + [anon_sym_SEMI] = ACTIONS(1143), + [anon_sym_LF] = ACTIONS(1145), + [anon_sym_LBRACK] = ACTIONS(1143), + [anon_sym_LPAREN] = ACTIONS(1143), + [anon_sym_RPAREN] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1143), + [anon_sym_DOLLAR] = ACTIONS(1143), + [anon_sym_GT] = ACTIONS(1143), + [anon_sym_DASH_DASH] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_LBRACE] = ACTIONS(1143), + [anon_sym_RBRACE] = ACTIONS(1143), + [anon_sym_DOT_DOT] = ACTIONS(1143), + [anon_sym_STAR] = ACTIONS(1143), + [anon_sym_STAR_STAR] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(1143), + [anon_sym_mod] = ACTIONS(1143), + [anon_sym_SLASH_SLASH] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_bit_DASHshl] = ACTIONS(1143), + [anon_sym_bit_DASHshr] = ACTIONS(1143), + [anon_sym_EQ_EQ] = ACTIONS(1143), + [anon_sym_BANG_EQ] = ACTIONS(1143), + [anon_sym_LT2] = ACTIONS(1143), + [anon_sym_LT_EQ] = ACTIONS(1143), + [anon_sym_GT_EQ] = ACTIONS(1143), + [anon_sym_not_DASHin] = ACTIONS(1143), + [anon_sym_starts_DASHwith] = ACTIONS(1143), + [anon_sym_ends_DASHwith] = ACTIONS(1143), + [anon_sym_EQ_TILDE] = ACTIONS(1143), + [anon_sym_BANG_TILDE] = ACTIONS(1143), + [anon_sym_bit_DASHand] = ACTIONS(1143), + [anon_sym_bit_DASHxor] = ACTIONS(1143), + [anon_sym_bit_DASHor] = ACTIONS(1143), + [anon_sym_and] = ACTIONS(1143), + [anon_sym_xor] = ACTIONS(1143), + [anon_sym_or] = ACTIONS(1143), + [anon_sym_not] = ACTIONS(1143), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1143), + [anon_sym_DOT_DOT_LT] = ACTIONS(1143), + [anon_sym_null] = ACTIONS(1143), + [anon_sym_true] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [aux_sym__val_number_decimal_token1] = ACTIONS(1143), + [aux_sym__val_number_decimal_token2] = ACTIONS(1143), + [anon_sym_DOT2] = ACTIONS(1143), + [aux_sym__val_number_decimal_token3] = ACTIONS(1143), + [aux_sym__val_number_token1] = ACTIONS(1143), + [aux_sym__val_number_token2] = ACTIONS(1143), + [aux_sym__val_number_token3] = ACTIONS(1143), + [aux_sym__val_number_token4] = ACTIONS(1143), + [aux_sym__val_number_token5] = ACTIONS(1143), + [aux_sym__val_number_token6] = ACTIONS(1143), + [anon_sym_0b] = ACTIONS(1143), + [anon_sym_0o] = ACTIONS(1143), + [anon_sym_0x] = ACTIONS(1143), + [anon_sym_LBRACK2] = ACTIONS(6350), + [sym_val_date] = ACTIONS(1143), + [anon_sym_DQUOTE] = ACTIONS(1143), + [sym__str_single_quotes] = ACTIONS(1143), + [sym__str_back_ticks] = ACTIONS(1143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1143), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1143), + [anon_sym_POUND] = ACTIONS(113), }, - [2196] = { - [sym_expr_unary] = STATE(6485), - [sym__expr_unary_minus] = STATE(6430), - [sym_expr_binary] = STATE(6485), - [sym__expr_binary_expression] = STATE(6532), - [sym_expr_parenthesized] = STATE(6485), - [sym__val_range] = STATE(10636), - [sym__value] = STATE(6485), - [sym_val_nothing] = STATE(6590), - [sym_val_bool] = STATE(6343), - [sym_val_variable] = STATE(6590), - [sym__var] = STATE(5737), - [sym_val_number] = STATE(6590), - [sym__val_number_decimal] = STATE(4858), - [sym__val_number] = STATE(6519), - [sym_val_duration] = STATE(6590), - [sym_val_filesize] = STATE(6590), - [sym_val_binary] = STATE(6590), - [sym_val_string] = STATE(6590), - [sym__str_double_quotes] = STATE(6540), - [sym_val_interpolated] = STATE(6590), - [sym__inter_single_quotes] = STATE(6464), - [sym__inter_double_quotes] = STATE(6419), - [sym_val_list] = STATE(6590), - [sym_val_record] = STATE(6590), - [sym_val_table] = STATE(6590), - [sym_val_closure] = STATE(6590), - [sym_unquoted] = STATE(6509), - [sym__unquoted_anonymous_prefix] = STATE(10827), - [sym_comment] = STATE(2196), - [anon_sym_LBRACK] = ACTIONS(4051), - [anon_sym_LPAREN] = ACTIONS(5585), - [anon_sym_DOLLAR] = ACTIONS(5587), - [anon_sym_DASH] = ACTIONS(4053), - [anon_sym_LBRACE] = ACTIONS(4055), - [anon_sym_DOT_DOT] = ACTIONS(5821), - [anon_sym_not] = ACTIONS(4059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5591), - [anon_sym_DOT_DOT_LT] = ACTIONS(5591), - [anon_sym_null] = ACTIONS(4063), - [anon_sym_true] = ACTIONS(4065), - [anon_sym_false] = ACTIONS(4065), - [aux_sym__val_number_decimal_token1] = ACTIONS(4067), - [aux_sym__val_number_decimal_token2] = ACTIONS(4069), - [anon_sym_DOT2] = ACTIONS(5823), - [aux_sym__val_number_decimal_token3] = ACTIONS(4073), - [aux_sym__val_number_token1] = ACTIONS(2764), - [aux_sym__val_number_token2] = ACTIONS(2764), - [aux_sym__val_number_token3] = ACTIONS(2764), - [aux_sym__val_number_token4] = ACTIONS(5825), - [aux_sym__val_number_token5] = ACTIONS(5825), - [aux_sym__val_number_token6] = ACTIONS(5825), - [anon_sym_0b] = ACTIONS(2768), - [anon_sym_0o] = ACTIONS(2770), - [anon_sym_0x] = ACTIONS(2770), - [sym_val_date] = ACTIONS(4077), - [anon_sym_DQUOTE] = ACTIONS(4079), - [sym__str_single_quotes] = ACTIONS(4081), - [sym__str_back_ticks] = ACTIONS(4081), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5609), + [2470] = { + [sym_comment] = STATE(2470), + [anon_sym_LBRACK] = ACTIONS(940), + [anon_sym_LPAREN] = ACTIONS(940), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_in] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(940), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_STAR_STAR] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(940), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(940), + [anon_sym_SLASH_SLASH] = ACTIONS(940), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_bit_DASHshl] = ACTIONS(940), + [anon_sym_bit_DASHshr] = ACTIONS(940), + [anon_sym_EQ_EQ] = ACTIONS(940), + [anon_sym_BANG_EQ] = ACTIONS(940), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(940), + [anon_sym_GT_EQ] = ACTIONS(940), + [anon_sym_not_DASHin] = ACTIONS(940), + [anon_sym_starts_DASHwith] = ACTIONS(940), + [anon_sym_ends_DASHwith] = ACTIONS(940), + [anon_sym_EQ_TILDE] = ACTIONS(940), + [anon_sym_BANG_TILDE] = ACTIONS(940), + [anon_sym_bit_DASHand] = ACTIONS(940), + [anon_sym_bit_DASHxor] = ACTIONS(940), + [anon_sym_bit_DASHor] = ACTIONS(940), + [anon_sym_and] = ACTIONS(940), + [anon_sym_xor] = ACTIONS(940), + [anon_sym_or] = ACTIONS(940), + [anon_sym_not] = ACTIONS(938), + [anon_sym_DOT_DOT2] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(6352), + [anon_sym_DOT_DOT_EQ] = ACTIONS(938), + [anon_sym_DOT_DOT_LT] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(965), + [anon_sym_DOT_DOT_LT2] = ACTIONS(965), + [anon_sym_null] = ACTIONS(940), + [anon_sym_true] = ACTIONS(940), + [anon_sym_false] = ACTIONS(940), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(940), + [anon_sym_DOT2] = ACTIONS(938), + [aux_sym__val_number_decimal_token3] = ACTIONS(940), + [aux_sym__val_number_token1] = ACTIONS(940), + [aux_sym__val_number_token2] = ACTIONS(940), + [aux_sym__val_number_token3] = ACTIONS(940), + [aux_sym__val_number_token4] = ACTIONS(940), + [aux_sym__val_number_token5] = ACTIONS(940), + [aux_sym__val_number_token6] = ACTIONS(940), + [anon_sym_0b] = ACTIONS(938), + [sym_filesize_unit] = ACTIONS(6308), + [sym_duration_unit] = ACTIONS(6310), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = ACTIONS(940), + [anon_sym_DQUOTE] = ACTIONS(940), + [sym__str_single_quotes] = ACTIONS(940), + [sym__str_back_ticks] = ACTIONS(940), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(940), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(940), + [aux_sym_unquoted_token5] = ACTIONS(6354), [anon_sym_POUND] = ACTIONS(3), }, - [2197] = { - [sym_expr_unary] = STATE(6485), - [sym__expr_unary_minus] = STATE(6430), - [sym_expr_binary] = STATE(6485), - [sym__expr_binary_expression] = STATE(6533), - [sym_expr_parenthesized] = STATE(6485), - [sym__val_range] = STATE(10636), - [sym__value] = STATE(6485), - [sym_val_nothing] = STATE(6590), - [sym_val_bool] = STATE(6343), - [sym_val_variable] = STATE(6590), - [sym__var] = STATE(5737), - [sym_val_number] = STATE(6590), - [sym__val_number_decimal] = STATE(4858), - [sym__val_number] = STATE(6519), - [sym_val_duration] = STATE(6590), - [sym_val_filesize] = STATE(6590), - [sym_val_binary] = STATE(6590), - [sym_val_string] = STATE(6590), - [sym__str_double_quotes] = STATE(6540), - [sym_val_interpolated] = STATE(6590), - [sym__inter_single_quotes] = STATE(6464), - [sym__inter_double_quotes] = STATE(6419), - [sym_val_list] = STATE(6590), - [sym_val_record] = STATE(6590), - [sym_val_table] = STATE(6590), - [sym_val_closure] = STATE(6590), - [sym_unquoted] = STATE(6510), - [sym__unquoted_anonymous_prefix] = STATE(10827), - [sym_comment] = STATE(2197), - [anon_sym_LBRACK] = ACTIONS(4051), - [anon_sym_LPAREN] = ACTIONS(5585), - [anon_sym_DOLLAR] = ACTIONS(5587), - [anon_sym_DASH] = ACTIONS(4053), - [anon_sym_LBRACE] = ACTIONS(4055), - [anon_sym_DOT_DOT] = ACTIONS(5821), - [anon_sym_not] = ACTIONS(4059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5591), - [anon_sym_DOT_DOT_LT] = ACTIONS(5591), - [anon_sym_null] = ACTIONS(4063), - [anon_sym_true] = ACTIONS(4065), - [anon_sym_false] = ACTIONS(4065), - [aux_sym__val_number_decimal_token1] = ACTIONS(4067), - [aux_sym__val_number_decimal_token2] = ACTIONS(4069), - [anon_sym_DOT2] = ACTIONS(5823), - [aux_sym__val_number_decimal_token3] = ACTIONS(4073), - [aux_sym__val_number_token1] = ACTIONS(2764), - [aux_sym__val_number_token2] = ACTIONS(2764), - [aux_sym__val_number_token3] = ACTIONS(2764), - [aux_sym__val_number_token4] = ACTIONS(5825), - [aux_sym__val_number_token5] = ACTIONS(5825), - [aux_sym__val_number_token6] = ACTIONS(5825), - [anon_sym_0b] = ACTIONS(2768), - [anon_sym_0o] = ACTIONS(2770), - [anon_sym_0x] = ACTIONS(2770), - [sym_val_date] = ACTIONS(4077), - [anon_sym_DQUOTE] = ACTIONS(4079), - [sym__str_single_quotes] = ACTIONS(4081), - [sym__str_back_ticks] = ACTIONS(4081), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5609), - [anon_sym_POUND] = ACTIONS(3), + [2471] = { + [sym_comment] = STATE(2471), + [ts_builtin_sym_end] = ACTIONS(6072), + [anon_sym_export] = ACTIONS(6070), + [anon_sym_alias] = ACTIONS(6070), + [anon_sym_let] = ACTIONS(6070), + [anon_sym_let_DASHenv] = ACTIONS(6070), + [anon_sym_mut] = ACTIONS(6070), + [anon_sym_const] = ACTIONS(6070), + [anon_sym_SEMI] = ACTIONS(6070), + [sym_cmd_identifier] = ACTIONS(6070), + [anon_sym_LF] = ACTIONS(6072), + [anon_sym_def] = ACTIONS(6070), + [anon_sym_export_DASHenv] = ACTIONS(6070), + [anon_sym_extern] = ACTIONS(6070), + [anon_sym_module] = ACTIONS(6070), + [anon_sym_use] = ACTIONS(6070), + [anon_sym_LBRACK] = ACTIONS(6070), + [anon_sym_LPAREN] = ACTIONS(6070), + [anon_sym_DOLLAR] = ACTIONS(6070), + [anon_sym_error] = ACTIONS(6070), + [anon_sym_DASH] = ACTIONS(6070), + [anon_sym_break] = ACTIONS(6070), + [anon_sym_continue] = ACTIONS(6070), + [anon_sym_for] = ACTIONS(6070), + [anon_sym_loop] = ACTIONS(6070), + [anon_sym_while] = ACTIONS(6070), + [anon_sym_do] = ACTIONS(6070), + [anon_sym_if] = ACTIONS(6070), + [anon_sym_match] = ACTIONS(6070), + [anon_sym_LBRACE] = ACTIONS(6070), + [anon_sym_DOT_DOT] = ACTIONS(6070), + [anon_sym_try] = ACTIONS(6070), + [anon_sym_return] = ACTIONS(6070), + [anon_sym_source] = ACTIONS(6070), + [anon_sym_source_DASHenv] = ACTIONS(6070), + [anon_sym_register] = ACTIONS(6070), + [anon_sym_hide] = ACTIONS(6070), + [anon_sym_hide_DASHenv] = ACTIONS(6070), + [anon_sym_overlay] = ACTIONS(6070), + [anon_sym_where] = ACTIONS(6070), + [anon_sym_not] = ACTIONS(6070), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6070), + [anon_sym_DOT_DOT_LT] = ACTIONS(6070), + [anon_sym_null] = ACTIONS(6070), + [anon_sym_true] = ACTIONS(6070), + [anon_sym_false] = ACTIONS(6070), + [aux_sym__val_number_decimal_token1] = ACTIONS(6070), + [aux_sym__val_number_decimal_token2] = ACTIONS(6070), + [anon_sym_DOT2] = ACTIONS(6070), + [aux_sym__val_number_decimal_token3] = ACTIONS(6070), + [aux_sym__val_number_token1] = ACTIONS(6070), + [aux_sym__val_number_token2] = ACTIONS(6070), + [aux_sym__val_number_token3] = ACTIONS(6070), + [aux_sym__val_number_token4] = ACTIONS(6070), + [aux_sym__val_number_token5] = ACTIONS(6070), + [aux_sym__val_number_token6] = ACTIONS(6070), + [anon_sym_0b] = ACTIONS(6070), + [anon_sym_0o] = ACTIONS(6070), + [anon_sym_0x] = ACTIONS(6070), + [sym_val_date] = ACTIONS(6070), + [anon_sym_DQUOTE] = ACTIONS(6070), + [sym__str_single_quotes] = ACTIONS(6070), + [sym__str_back_ticks] = ACTIONS(6070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6070), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6070), + [anon_sym_CARET] = ACTIONS(6070), + [anon_sym_POUND] = ACTIONS(113), }, - [2198] = { - [sym_expr_unary] = STATE(6485), - [sym__expr_unary_minus] = STATE(6430), - [sym_expr_binary] = STATE(6485), - [sym__expr_binary_expression] = STATE(6534), - [sym_expr_parenthesized] = STATE(6485), - [sym__val_range] = STATE(10636), - [sym__value] = STATE(6485), - [sym_val_nothing] = STATE(6590), - [sym_val_bool] = STATE(6343), - [sym_val_variable] = STATE(6590), - [sym__var] = STATE(5737), - [sym_val_number] = STATE(6590), - [sym__val_number_decimal] = STATE(4858), - [sym__val_number] = STATE(6519), - [sym_val_duration] = STATE(6590), - [sym_val_filesize] = STATE(6590), - [sym_val_binary] = STATE(6590), - [sym_val_string] = STATE(6590), - [sym__str_double_quotes] = STATE(6540), - [sym_val_interpolated] = STATE(6590), - [sym__inter_single_quotes] = STATE(6464), - [sym__inter_double_quotes] = STATE(6419), - [sym_val_list] = STATE(6590), - [sym_val_record] = STATE(6590), - [sym_val_table] = STATE(6590), - [sym_val_closure] = STATE(6590), - [sym_unquoted] = STATE(6512), - [sym__unquoted_anonymous_prefix] = STATE(10827), - [sym_comment] = STATE(2198), - [anon_sym_LBRACK] = ACTIONS(4051), - [anon_sym_LPAREN] = ACTIONS(5585), - [anon_sym_DOLLAR] = ACTIONS(5587), - [anon_sym_DASH] = ACTIONS(4053), - [anon_sym_LBRACE] = ACTIONS(4055), - [anon_sym_DOT_DOT] = ACTIONS(5821), - [anon_sym_not] = ACTIONS(4059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5591), - [anon_sym_DOT_DOT_LT] = ACTIONS(5591), - [anon_sym_null] = ACTIONS(4063), - [anon_sym_true] = ACTIONS(4065), - [anon_sym_false] = ACTIONS(4065), - [aux_sym__val_number_decimal_token1] = ACTIONS(4067), - [aux_sym__val_number_decimal_token2] = ACTIONS(4069), - [anon_sym_DOT2] = ACTIONS(5823), - [aux_sym__val_number_decimal_token3] = ACTIONS(4073), - [aux_sym__val_number_token1] = ACTIONS(2764), - [aux_sym__val_number_token2] = ACTIONS(2764), - [aux_sym__val_number_token3] = ACTIONS(2764), - [aux_sym__val_number_token4] = ACTIONS(5825), - [aux_sym__val_number_token5] = ACTIONS(5825), - [aux_sym__val_number_token6] = ACTIONS(5825), - [anon_sym_0b] = ACTIONS(2768), - [anon_sym_0o] = ACTIONS(2770), - [anon_sym_0x] = ACTIONS(2770), - [sym_val_date] = ACTIONS(4077), - [anon_sym_DQUOTE] = ACTIONS(4079), - [sym__str_single_quotes] = ACTIONS(4081), - [sym__str_back_ticks] = ACTIONS(4081), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5609), - [anon_sym_POUND] = ACTIONS(3), + [2472] = { + [sym_comment] = STATE(2472), + [ts_builtin_sym_end] = ACTIONS(6076), + [anon_sym_export] = ACTIONS(6074), + [anon_sym_alias] = ACTIONS(6074), + [anon_sym_let] = ACTIONS(6074), + [anon_sym_let_DASHenv] = ACTIONS(6074), + [anon_sym_mut] = ACTIONS(6074), + [anon_sym_const] = ACTIONS(6074), + [anon_sym_SEMI] = ACTIONS(6074), + [sym_cmd_identifier] = ACTIONS(6074), + [anon_sym_LF] = ACTIONS(6076), + [anon_sym_def] = ACTIONS(6074), + [anon_sym_export_DASHenv] = ACTIONS(6074), + [anon_sym_extern] = ACTIONS(6074), + [anon_sym_module] = ACTIONS(6074), + [anon_sym_use] = ACTIONS(6074), + [anon_sym_LBRACK] = ACTIONS(6074), + [anon_sym_LPAREN] = ACTIONS(6074), + [anon_sym_DOLLAR] = ACTIONS(6074), + [anon_sym_error] = ACTIONS(6074), + [anon_sym_DASH] = ACTIONS(6074), + [anon_sym_break] = ACTIONS(6074), + [anon_sym_continue] = ACTIONS(6074), + [anon_sym_for] = ACTIONS(6074), + [anon_sym_loop] = ACTIONS(6074), + [anon_sym_while] = ACTIONS(6074), + [anon_sym_do] = ACTIONS(6074), + [anon_sym_if] = ACTIONS(6074), + [anon_sym_match] = ACTIONS(6074), + [anon_sym_LBRACE] = ACTIONS(6074), + [anon_sym_DOT_DOT] = ACTIONS(6074), + [anon_sym_try] = ACTIONS(6074), + [anon_sym_return] = ACTIONS(6074), + [anon_sym_source] = ACTIONS(6074), + [anon_sym_source_DASHenv] = ACTIONS(6074), + [anon_sym_register] = ACTIONS(6074), + [anon_sym_hide] = ACTIONS(6074), + [anon_sym_hide_DASHenv] = ACTIONS(6074), + [anon_sym_overlay] = ACTIONS(6074), + [anon_sym_where] = ACTIONS(6074), + [anon_sym_not] = ACTIONS(6074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6074), + [anon_sym_DOT_DOT_LT] = ACTIONS(6074), + [anon_sym_null] = ACTIONS(6074), + [anon_sym_true] = ACTIONS(6074), + [anon_sym_false] = ACTIONS(6074), + [aux_sym__val_number_decimal_token1] = ACTIONS(6074), + [aux_sym__val_number_decimal_token2] = ACTIONS(6074), + [anon_sym_DOT2] = ACTIONS(6074), + [aux_sym__val_number_decimal_token3] = ACTIONS(6074), + [aux_sym__val_number_token1] = ACTIONS(6074), + [aux_sym__val_number_token2] = ACTIONS(6074), + [aux_sym__val_number_token3] = ACTIONS(6074), + [aux_sym__val_number_token4] = ACTIONS(6074), + [aux_sym__val_number_token5] = ACTIONS(6074), + [aux_sym__val_number_token6] = ACTIONS(6074), + [anon_sym_0b] = ACTIONS(6074), + [anon_sym_0o] = ACTIONS(6074), + [anon_sym_0x] = ACTIONS(6074), + [sym_val_date] = ACTIONS(6074), + [anon_sym_DQUOTE] = ACTIONS(6074), + [sym__str_single_quotes] = ACTIONS(6074), + [sym__str_back_ticks] = ACTIONS(6074), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6074), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6074), + [anon_sym_CARET] = ACTIONS(6074), + [anon_sym_POUND] = ACTIONS(113), }, - [2199] = { - [sym_expr_unary] = STATE(1023), - [sym__expr_unary_minus] = STATE(1019), - [sym_expr_binary] = STATE(1023), - [sym__expr_binary_expression] = STATE(962), - [sym_expr_parenthesized] = STATE(1023), - [sym__val_range] = STATE(10695), - [sym__value] = STATE(1023), - [sym_val_nothing] = STATE(963), - [sym_val_bool] = STATE(934), - [sym_val_variable] = STATE(963), - [sym__var] = STATE(835), - [sym_val_number] = STATE(963), - [sym__val_number_decimal] = STATE(778), - [sym__val_number] = STATE(988), - [sym_val_duration] = STATE(963), - [sym_val_filesize] = STATE(963), - [sym_val_binary] = STATE(963), - [sym_val_string] = STATE(963), - [sym__str_double_quotes] = STATE(986), - [sym_val_interpolated] = STATE(963), - [sym__inter_single_quotes] = STATE(1009), - [sym__inter_double_quotes] = STATE(1010), - [sym_val_list] = STATE(963), - [sym_val_record] = STATE(963), - [sym_val_table] = STATE(963), - [sym_val_closure] = STATE(963), - [sym_unquoted] = STATE(1024), - [sym__unquoted_anonymous_prefix] = STATE(11073), - [sym_comment] = STATE(2199), - [anon_sym_LBRACK] = ACTIONS(5827), - [anon_sym_LPAREN] = ACTIONS(5829), - [anon_sym_DOLLAR] = ACTIONS(5831), - [anon_sym_DASH] = ACTIONS(5833), - [anon_sym_LBRACE] = ACTIONS(5835), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_not] = ACTIONS(5839), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5841), - [anon_sym_DOT_DOT_LT] = ACTIONS(5841), - [anon_sym_null] = ACTIONS(5843), - [anon_sym_true] = ACTIONS(5845), - [anon_sym_false] = ACTIONS(5845), - [aux_sym__val_number_decimal_token1] = ACTIONS(5847), - [aux_sym__val_number_decimal_token2] = ACTIONS(5849), - [anon_sym_DOT2] = ACTIONS(5851), - [aux_sym__val_number_decimal_token3] = ACTIONS(5853), - [aux_sym__val_number_token1] = ACTIONS(5855), - [aux_sym__val_number_token2] = ACTIONS(5855), - [aux_sym__val_number_token3] = ACTIONS(5855), - [aux_sym__val_number_token4] = ACTIONS(5857), - [aux_sym__val_number_token5] = ACTIONS(5857), - [aux_sym__val_number_token6] = ACTIONS(5857), - [anon_sym_0b] = ACTIONS(5859), - [anon_sym_0o] = ACTIONS(5861), - [anon_sym_0x] = ACTIONS(5861), - [sym_val_date] = ACTIONS(5863), - [anon_sym_DQUOTE] = ACTIONS(5865), - [sym__str_single_quotes] = ACTIONS(5867), - [sym__str_back_ticks] = ACTIONS(5867), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5869), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5871), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5873), + [2473] = { + [sym_expr_parenthesized] = STATE(10494), + [sym_val_variable] = STATE(10494), + [sym__var] = STATE(7000), + [sym_val_number] = STATE(10494), + [sym__val_number_decimal] = STATE(4911), + [sym__val_number] = STATE(4922), + [sym_val_string] = STATE(10494), + [sym__str_double_quotes] = STATE(6592), + [sym_record_entry] = STATE(10679), + [sym__record_key] = STATE(10433), + [sym_comment] = STATE(2473), + [aux_sym_record_body_repeat1] = STATE(2473), + [anon_sym_export] = ACTIONS(6356), + [anon_sym_alias] = ACTIONS(6356), + [anon_sym_let] = ACTIONS(6356), + [anon_sym_let_DASHenv] = ACTIONS(6356), + [anon_sym_mut] = ACTIONS(6356), + [anon_sym_const] = ACTIONS(6356), + [sym_cmd_identifier] = ACTIONS(6356), + [anon_sym_def] = ACTIONS(6356), + [anon_sym_export_DASHenv] = ACTIONS(6356), + [anon_sym_extern] = ACTIONS(6356), + [anon_sym_module] = ACTIONS(6356), + [anon_sym_use] = ACTIONS(6356), + [anon_sym_LPAREN] = ACTIONS(6359), + [anon_sym_DOLLAR] = ACTIONS(6362), + [anon_sym_error] = ACTIONS(6356), + [anon_sym_list] = ACTIONS(6356), + [anon_sym_DASH] = ACTIONS(6365), + [anon_sym_break] = ACTIONS(6356), + [anon_sym_continue] = ACTIONS(6356), + [anon_sym_for] = ACTIONS(6356), + [anon_sym_in] = ACTIONS(6356), + [anon_sym_loop] = ACTIONS(6356), + [anon_sym_make] = ACTIONS(6356), + [anon_sym_while] = ACTIONS(6356), + [anon_sym_do] = ACTIONS(6356), + [anon_sym_if] = ACTIONS(6356), + [anon_sym_else] = ACTIONS(6356), + [anon_sym_match] = ACTIONS(6356), + [anon_sym_try] = ACTIONS(6356), + [anon_sym_catch] = ACTIONS(6356), + [anon_sym_return] = ACTIONS(6356), + [anon_sym_source] = ACTIONS(6356), + [anon_sym_source_DASHenv] = ACTIONS(6356), + [anon_sym_register] = ACTIONS(6356), + [anon_sym_hide] = ACTIONS(6356), + [anon_sym_hide_DASHenv] = ACTIONS(6356), + [anon_sym_overlay] = ACTIONS(6356), + [anon_sym_new] = ACTIONS(6356), + [anon_sym_as] = ACTIONS(6356), + [anon_sym_PLUS] = ACTIONS(6365), + [aux_sym__val_number_decimal_token1] = ACTIONS(6368), + [aux_sym__val_number_decimal_token2] = ACTIONS(6371), + [anon_sym_DOT2] = ACTIONS(6374), + [aux_sym__val_number_decimal_token3] = ACTIONS(6377), + [aux_sym__val_number_token1] = ACTIONS(6380), + [aux_sym__val_number_token2] = ACTIONS(6380), + [aux_sym__val_number_token3] = ACTIONS(6380), + [aux_sym__val_number_token4] = ACTIONS(6383), + [aux_sym__val_number_token5] = ACTIONS(6380), + [aux_sym__val_number_token6] = ACTIONS(6383), + [anon_sym_DQUOTE] = ACTIONS(6386), + [sym__str_single_quotes] = ACTIONS(6389), + [sym__str_back_ticks] = ACTIONS(6389), + [aux_sym__record_key_token2] = ACTIONS(6392), [anon_sym_POUND] = ACTIONS(3), }, - [2200] = { - [sym_expr_unary] = STATE(1023), - [sym__expr_unary_minus] = STATE(1019), - [sym_expr_binary] = STATE(1023), - [sym__expr_binary_expression] = STATE(964), - [sym_expr_parenthesized] = STATE(1023), - [sym__val_range] = STATE(10695), - [sym__value] = STATE(1023), - [sym_val_nothing] = STATE(963), - [sym_val_bool] = STATE(934), - [sym_val_variable] = STATE(963), - [sym__var] = STATE(835), - [sym_val_number] = STATE(963), - [sym__val_number_decimal] = STATE(778), - [sym__val_number] = STATE(988), - [sym_val_duration] = STATE(963), - [sym_val_filesize] = STATE(963), - [sym_val_binary] = STATE(963), - [sym_val_string] = STATE(963), - [sym__str_double_quotes] = STATE(986), - [sym_val_interpolated] = STATE(963), - [sym__inter_single_quotes] = STATE(1009), - [sym__inter_double_quotes] = STATE(1010), - [sym_val_list] = STATE(963), - [sym_val_record] = STATE(963), - [sym_val_table] = STATE(963), - [sym_val_closure] = STATE(963), - [sym_unquoted] = STATE(982), - [sym__unquoted_anonymous_prefix] = STATE(11073), - [sym_comment] = STATE(2200), - [anon_sym_LBRACK] = ACTIONS(5827), - [anon_sym_LPAREN] = ACTIONS(5829), - [anon_sym_DOLLAR] = ACTIONS(5831), - [anon_sym_DASH] = ACTIONS(5833), - [anon_sym_LBRACE] = ACTIONS(5835), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_not] = ACTIONS(5839), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5841), - [anon_sym_DOT_DOT_LT] = ACTIONS(5841), - [anon_sym_null] = ACTIONS(5843), - [anon_sym_true] = ACTIONS(5845), - [anon_sym_false] = ACTIONS(5845), - [aux_sym__val_number_decimal_token1] = ACTIONS(5847), - [aux_sym__val_number_decimal_token2] = ACTIONS(5849), - [anon_sym_DOT2] = ACTIONS(5851), - [aux_sym__val_number_decimal_token3] = ACTIONS(5853), - [aux_sym__val_number_token1] = ACTIONS(5855), - [aux_sym__val_number_token2] = ACTIONS(5855), - [aux_sym__val_number_token3] = ACTIONS(5855), - [aux_sym__val_number_token4] = ACTIONS(5857), - [aux_sym__val_number_token5] = ACTIONS(5857), - [aux_sym__val_number_token6] = ACTIONS(5857), - [anon_sym_0b] = ACTIONS(5859), - [anon_sym_0o] = ACTIONS(5861), - [anon_sym_0x] = ACTIONS(5861), - [sym_val_date] = ACTIONS(5863), - [anon_sym_DQUOTE] = ACTIONS(5865), - [sym__str_single_quotes] = ACTIONS(5867), - [sym__str_back_ticks] = ACTIONS(5867), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5869), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5871), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5873), - [anon_sym_POUND] = ACTIONS(3), + [2474] = { + [sym_comment] = STATE(2474), + [ts_builtin_sym_end] = ACTIONS(6132), + [anon_sym_export] = ACTIONS(6130), + [anon_sym_alias] = ACTIONS(6130), + [anon_sym_let] = ACTIONS(6130), + [anon_sym_let_DASHenv] = ACTIONS(6130), + [anon_sym_mut] = ACTIONS(6130), + [anon_sym_const] = ACTIONS(6130), + [anon_sym_SEMI] = ACTIONS(6130), + [sym_cmd_identifier] = ACTIONS(6130), + [anon_sym_LF] = ACTIONS(6132), + [anon_sym_def] = ACTIONS(6130), + [anon_sym_export_DASHenv] = ACTIONS(6130), + [anon_sym_extern] = ACTIONS(6130), + [anon_sym_module] = ACTIONS(6130), + [anon_sym_use] = ACTIONS(6130), + [anon_sym_LBRACK] = ACTIONS(6130), + [anon_sym_LPAREN] = ACTIONS(6130), + [anon_sym_DOLLAR] = ACTIONS(6130), + [anon_sym_error] = ACTIONS(6130), + [anon_sym_DASH] = ACTIONS(6130), + [anon_sym_break] = ACTIONS(6130), + [anon_sym_continue] = ACTIONS(6130), + [anon_sym_for] = ACTIONS(6130), + [anon_sym_loop] = ACTIONS(6130), + [anon_sym_while] = ACTIONS(6130), + [anon_sym_do] = ACTIONS(6130), + [anon_sym_if] = ACTIONS(6130), + [anon_sym_match] = ACTIONS(6130), + [anon_sym_LBRACE] = ACTIONS(6130), + [anon_sym_DOT_DOT] = ACTIONS(6130), + [anon_sym_try] = ACTIONS(6130), + [anon_sym_return] = ACTIONS(6130), + [anon_sym_source] = ACTIONS(6130), + [anon_sym_source_DASHenv] = ACTIONS(6130), + [anon_sym_register] = ACTIONS(6130), + [anon_sym_hide] = ACTIONS(6130), + [anon_sym_hide_DASHenv] = ACTIONS(6130), + [anon_sym_overlay] = ACTIONS(6130), + [anon_sym_where] = ACTIONS(6130), + [anon_sym_not] = ACTIONS(6130), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6130), + [anon_sym_DOT_DOT_LT] = ACTIONS(6130), + [anon_sym_null] = ACTIONS(6130), + [anon_sym_true] = ACTIONS(6130), + [anon_sym_false] = ACTIONS(6130), + [aux_sym__val_number_decimal_token1] = ACTIONS(6130), + [aux_sym__val_number_decimal_token2] = ACTIONS(6130), + [anon_sym_DOT2] = ACTIONS(6130), + [aux_sym__val_number_decimal_token3] = ACTIONS(6130), + [aux_sym__val_number_token1] = ACTIONS(6130), + [aux_sym__val_number_token2] = ACTIONS(6130), + [aux_sym__val_number_token3] = ACTIONS(6130), + [aux_sym__val_number_token4] = ACTIONS(6130), + [aux_sym__val_number_token5] = ACTIONS(6130), + [aux_sym__val_number_token6] = ACTIONS(6130), + [anon_sym_0b] = ACTIONS(6130), + [anon_sym_0o] = ACTIONS(6130), + [anon_sym_0x] = ACTIONS(6130), + [sym_val_date] = ACTIONS(6130), + [anon_sym_DQUOTE] = ACTIONS(6130), + [sym__str_single_quotes] = ACTIONS(6130), + [sym__str_back_ticks] = ACTIONS(6130), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6130), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6130), + [anon_sym_CARET] = ACTIONS(6130), + [anon_sym_POUND] = ACTIONS(113), }, - [2201] = { - [sym_expr_unary] = STATE(1023), - [sym__expr_unary_minus] = STATE(1019), - [sym_expr_binary] = STATE(1023), - [sym__expr_binary_expression] = STATE(965), - [sym_expr_parenthesized] = STATE(1023), - [sym__val_range] = STATE(10695), - [sym__value] = STATE(1023), - [sym_val_nothing] = STATE(963), - [sym_val_bool] = STATE(934), - [sym_val_variable] = STATE(963), - [sym__var] = STATE(835), - [sym_val_number] = STATE(963), - [sym__val_number_decimal] = STATE(778), - [sym__val_number] = STATE(988), - [sym_val_duration] = STATE(963), - [sym_val_filesize] = STATE(963), - [sym_val_binary] = STATE(963), - [sym_val_string] = STATE(963), - [sym__str_double_quotes] = STATE(986), - [sym_val_interpolated] = STATE(963), - [sym__inter_single_quotes] = STATE(1009), - [sym__inter_double_quotes] = STATE(1010), - [sym_val_list] = STATE(963), - [sym_val_record] = STATE(963), - [sym_val_table] = STATE(963), - [sym_val_closure] = STATE(963), - [sym_unquoted] = STATE(990), - [sym__unquoted_anonymous_prefix] = STATE(11073), - [sym_comment] = STATE(2201), - [anon_sym_LBRACK] = ACTIONS(5827), - [anon_sym_LPAREN] = ACTIONS(5829), - [anon_sym_DOLLAR] = ACTIONS(5831), - [anon_sym_DASH] = ACTIONS(5833), - [anon_sym_LBRACE] = ACTIONS(5835), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_not] = ACTIONS(5839), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5841), - [anon_sym_DOT_DOT_LT] = ACTIONS(5841), - [anon_sym_null] = ACTIONS(5843), - [anon_sym_true] = ACTIONS(5845), - [anon_sym_false] = ACTIONS(5845), - [aux_sym__val_number_decimal_token1] = ACTIONS(5847), - [aux_sym__val_number_decimal_token2] = ACTIONS(5849), - [anon_sym_DOT2] = ACTIONS(5851), - [aux_sym__val_number_decimal_token3] = ACTIONS(5853), - [aux_sym__val_number_token1] = ACTIONS(5855), - [aux_sym__val_number_token2] = ACTIONS(5855), - [aux_sym__val_number_token3] = ACTIONS(5855), - [aux_sym__val_number_token4] = ACTIONS(5857), - [aux_sym__val_number_token5] = ACTIONS(5857), - [aux_sym__val_number_token6] = ACTIONS(5857), - [anon_sym_0b] = ACTIONS(5859), - [anon_sym_0o] = ACTIONS(5861), - [anon_sym_0x] = ACTIONS(5861), - [sym_val_date] = ACTIONS(5863), - [anon_sym_DQUOTE] = ACTIONS(5865), - [sym__str_single_quotes] = ACTIONS(5867), - [sym__str_back_ticks] = ACTIONS(5867), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5869), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5871), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5873), - [anon_sym_POUND] = ACTIONS(3), + [2475] = { + [sym_comment] = STATE(2475), + [ts_builtin_sym_end] = ACTIONS(6146), + [anon_sym_export] = ACTIONS(6144), + [anon_sym_alias] = ACTIONS(6144), + [anon_sym_let] = ACTIONS(6144), + [anon_sym_let_DASHenv] = ACTIONS(6144), + [anon_sym_mut] = ACTIONS(6144), + [anon_sym_const] = ACTIONS(6144), + [anon_sym_SEMI] = ACTIONS(6144), + [sym_cmd_identifier] = ACTIONS(6144), + [anon_sym_LF] = ACTIONS(6146), + [anon_sym_def] = ACTIONS(6144), + [anon_sym_export_DASHenv] = ACTIONS(6144), + [anon_sym_extern] = ACTIONS(6144), + [anon_sym_module] = ACTIONS(6144), + [anon_sym_use] = ACTIONS(6144), + [anon_sym_LBRACK] = ACTIONS(6144), + [anon_sym_LPAREN] = ACTIONS(6144), + [anon_sym_DOLLAR] = ACTIONS(6144), + [anon_sym_error] = ACTIONS(6144), + [anon_sym_DASH] = ACTIONS(6144), + [anon_sym_break] = ACTIONS(6144), + [anon_sym_continue] = ACTIONS(6144), + [anon_sym_for] = ACTIONS(6144), + [anon_sym_loop] = ACTIONS(6144), + [anon_sym_while] = ACTIONS(6144), + [anon_sym_do] = ACTIONS(6144), + [anon_sym_if] = ACTIONS(6144), + [anon_sym_match] = ACTIONS(6144), + [anon_sym_LBRACE] = ACTIONS(6144), + [anon_sym_DOT_DOT] = ACTIONS(6144), + [anon_sym_try] = ACTIONS(6144), + [anon_sym_return] = ACTIONS(6144), + [anon_sym_source] = ACTIONS(6144), + [anon_sym_source_DASHenv] = ACTIONS(6144), + [anon_sym_register] = ACTIONS(6144), + [anon_sym_hide] = ACTIONS(6144), + [anon_sym_hide_DASHenv] = ACTIONS(6144), + [anon_sym_overlay] = ACTIONS(6144), + [anon_sym_where] = ACTIONS(6144), + [anon_sym_not] = ACTIONS(6144), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6144), + [anon_sym_DOT_DOT_LT] = ACTIONS(6144), + [anon_sym_null] = ACTIONS(6144), + [anon_sym_true] = ACTIONS(6144), + [anon_sym_false] = ACTIONS(6144), + [aux_sym__val_number_decimal_token1] = ACTIONS(6144), + [aux_sym__val_number_decimal_token2] = ACTIONS(6144), + [anon_sym_DOT2] = ACTIONS(6144), + [aux_sym__val_number_decimal_token3] = ACTIONS(6144), + [aux_sym__val_number_token1] = ACTIONS(6144), + [aux_sym__val_number_token2] = ACTIONS(6144), + [aux_sym__val_number_token3] = ACTIONS(6144), + [aux_sym__val_number_token4] = ACTIONS(6144), + [aux_sym__val_number_token5] = ACTIONS(6144), + [aux_sym__val_number_token6] = ACTIONS(6144), + [anon_sym_0b] = ACTIONS(6144), + [anon_sym_0o] = ACTIONS(6144), + [anon_sym_0x] = ACTIONS(6144), + [sym_val_date] = ACTIONS(6144), + [anon_sym_DQUOTE] = ACTIONS(6144), + [sym__str_single_quotes] = ACTIONS(6144), + [sym__str_back_ticks] = ACTIONS(6144), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6144), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6144), + [anon_sym_CARET] = ACTIONS(6144), + [anon_sym_POUND] = ACTIONS(113), }, - [2202] = { - [sym_expr_unary] = STATE(1023), - [sym__expr_unary_minus] = STATE(1019), - [sym_expr_binary] = STATE(1023), - [sym__expr_binary_expression] = STATE(969), - [sym_expr_parenthesized] = STATE(1023), - [sym__val_range] = STATE(10695), - [sym__value] = STATE(1023), - [sym_val_nothing] = STATE(963), - [sym_val_bool] = STATE(934), - [sym_val_variable] = STATE(963), - [sym__var] = STATE(835), - [sym_val_number] = STATE(963), - [sym__val_number_decimal] = STATE(778), - [sym__val_number] = STATE(988), - [sym_val_duration] = STATE(963), - [sym_val_filesize] = STATE(963), - [sym_val_binary] = STATE(963), - [sym_val_string] = STATE(963), - [sym__str_double_quotes] = STATE(986), - [sym_val_interpolated] = STATE(963), - [sym__inter_single_quotes] = STATE(1009), - [sym__inter_double_quotes] = STATE(1010), - [sym_val_list] = STATE(963), - [sym_val_record] = STATE(963), - [sym_val_table] = STATE(963), - [sym_val_closure] = STATE(963), - [sym_unquoted] = STATE(955), - [sym__unquoted_anonymous_prefix] = STATE(11073), - [sym_comment] = STATE(2202), - [anon_sym_LBRACK] = ACTIONS(5827), - [anon_sym_LPAREN] = ACTIONS(5829), - [anon_sym_DOLLAR] = ACTIONS(5831), - [anon_sym_DASH] = ACTIONS(5833), - [anon_sym_LBRACE] = ACTIONS(5835), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_not] = ACTIONS(5839), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5841), - [anon_sym_DOT_DOT_LT] = ACTIONS(5841), - [anon_sym_null] = ACTIONS(5843), - [anon_sym_true] = ACTIONS(5845), - [anon_sym_false] = ACTIONS(5845), - [aux_sym__val_number_decimal_token1] = ACTIONS(5847), - [aux_sym__val_number_decimal_token2] = ACTIONS(5849), - [anon_sym_DOT2] = ACTIONS(5851), - [aux_sym__val_number_decimal_token3] = ACTIONS(5853), - [aux_sym__val_number_token1] = ACTIONS(5855), - [aux_sym__val_number_token2] = ACTIONS(5855), - [aux_sym__val_number_token3] = ACTIONS(5855), - [aux_sym__val_number_token4] = ACTIONS(5857), - [aux_sym__val_number_token5] = ACTIONS(5857), - [aux_sym__val_number_token6] = ACTIONS(5857), - [anon_sym_0b] = ACTIONS(5859), - [anon_sym_0o] = ACTIONS(5861), - [anon_sym_0x] = ACTIONS(5861), - [sym_val_date] = ACTIONS(5863), - [anon_sym_DQUOTE] = ACTIONS(5865), - [sym__str_single_quotes] = ACTIONS(5867), - [sym__str_back_ticks] = ACTIONS(5867), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5869), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5871), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5873), - [anon_sym_POUND] = ACTIONS(3), + [2476] = { + [sym_comment] = STATE(2476), + [ts_builtin_sym_end] = ACTIONS(5929), + [anon_sym_export] = ACTIONS(5927), + [anon_sym_alias] = ACTIONS(5927), + [anon_sym_let] = ACTIONS(5927), + [anon_sym_let_DASHenv] = ACTIONS(5927), + [anon_sym_mut] = ACTIONS(5927), + [anon_sym_const] = ACTIONS(5927), + [anon_sym_SEMI] = ACTIONS(5927), + [sym_cmd_identifier] = ACTIONS(5927), + [anon_sym_LF] = ACTIONS(5929), + [anon_sym_def] = ACTIONS(5927), + [anon_sym_export_DASHenv] = ACTIONS(5927), + [anon_sym_extern] = ACTIONS(5927), + [anon_sym_module] = ACTIONS(5927), + [anon_sym_use] = ACTIONS(5927), + [anon_sym_LBRACK] = ACTIONS(5927), + [anon_sym_LPAREN] = ACTIONS(5927), + [anon_sym_DOLLAR] = ACTIONS(5927), + [anon_sym_error] = ACTIONS(5927), + [anon_sym_DASH] = ACTIONS(5927), + [anon_sym_break] = ACTIONS(5927), + [anon_sym_continue] = ACTIONS(5927), + [anon_sym_for] = ACTIONS(5927), + [anon_sym_loop] = ACTIONS(5927), + [anon_sym_while] = ACTIONS(5927), + [anon_sym_do] = ACTIONS(5927), + [anon_sym_if] = ACTIONS(5927), + [anon_sym_match] = ACTIONS(5927), + [anon_sym_LBRACE] = ACTIONS(5927), + [anon_sym_DOT_DOT] = ACTIONS(5927), + [anon_sym_try] = ACTIONS(5927), + [anon_sym_return] = ACTIONS(5927), + [anon_sym_source] = ACTIONS(5927), + [anon_sym_source_DASHenv] = ACTIONS(5927), + [anon_sym_register] = ACTIONS(5927), + [anon_sym_hide] = ACTIONS(5927), + [anon_sym_hide_DASHenv] = ACTIONS(5927), + [anon_sym_overlay] = ACTIONS(5927), + [anon_sym_where] = ACTIONS(5927), + [anon_sym_not] = ACTIONS(5927), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5927), + [anon_sym_DOT_DOT_LT] = ACTIONS(5927), + [anon_sym_null] = ACTIONS(5927), + [anon_sym_true] = ACTIONS(5927), + [anon_sym_false] = ACTIONS(5927), + [aux_sym__val_number_decimal_token1] = ACTIONS(5927), + [aux_sym__val_number_decimal_token2] = ACTIONS(5927), + [anon_sym_DOT2] = ACTIONS(5927), + [aux_sym__val_number_decimal_token3] = ACTIONS(5927), + [aux_sym__val_number_token1] = ACTIONS(5927), + [aux_sym__val_number_token2] = ACTIONS(5927), + [aux_sym__val_number_token3] = ACTIONS(5927), + [aux_sym__val_number_token4] = ACTIONS(5927), + [aux_sym__val_number_token5] = ACTIONS(5927), + [aux_sym__val_number_token6] = ACTIONS(5927), + [anon_sym_0b] = ACTIONS(5927), + [anon_sym_0o] = ACTIONS(5927), + [anon_sym_0x] = ACTIONS(5927), + [sym_val_date] = ACTIONS(5927), + [anon_sym_DQUOTE] = ACTIONS(5927), + [sym__str_single_quotes] = ACTIONS(5927), + [sym__str_back_ticks] = ACTIONS(5927), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5927), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5927), + [anon_sym_CARET] = ACTIONS(5927), + [anon_sym_POUND] = ACTIONS(113), }, - [2203] = { - [sym_expr_unary] = STATE(1023), - [sym__expr_unary_minus] = STATE(1019), - [sym_expr_binary] = STATE(1023), - [sym__expr_binary_expression] = STATE(970), - [sym_expr_parenthesized] = STATE(1023), - [sym__val_range] = STATE(10695), - [sym__value] = STATE(1023), - [sym_val_nothing] = STATE(963), - [sym_val_bool] = STATE(934), - [sym_val_variable] = STATE(963), - [sym__var] = STATE(835), - [sym_val_number] = STATE(963), - [sym__val_number_decimal] = STATE(778), - [sym__val_number] = STATE(988), - [sym_val_duration] = STATE(963), - [sym_val_filesize] = STATE(963), - [sym_val_binary] = STATE(963), - [sym_val_string] = STATE(963), - [sym__str_double_quotes] = STATE(986), - [sym_val_interpolated] = STATE(963), - [sym__inter_single_quotes] = STATE(1009), - [sym__inter_double_quotes] = STATE(1010), - [sym_val_list] = STATE(963), - [sym_val_record] = STATE(963), - [sym_val_table] = STATE(963), - [sym_val_closure] = STATE(963), - [sym_unquoted] = STATE(954), - [sym__unquoted_anonymous_prefix] = STATE(11073), - [sym_comment] = STATE(2203), - [anon_sym_LBRACK] = ACTIONS(5827), - [anon_sym_LPAREN] = ACTIONS(5829), - [anon_sym_DOLLAR] = ACTIONS(5831), - [anon_sym_DASH] = ACTIONS(5833), - [anon_sym_LBRACE] = ACTIONS(5835), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_not] = ACTIONS(5839), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5841), - [anon_sym_DOT_DOT_LT] = ACTIONS(5841), - [anon_sym_null] = ACTIONS(5843), - [anon_sym_true] = ACTIONS(5845), - [anon_sym_false] = ACTIONS(5845), - [aux_sym__val_number_decimal_token1] = ACTIONS(5847), - [aux_sym__val_number_decimal_token2] = ACTIONS(5849), - [anon_sym_DOT2] = ACTIONS(5851), - [aux_sym__val_number_decimal_token3] = ACTIONS(5853), - [aux_sym__val_number_token1] = ACTIONS(5855), - [aux_sym__val_number_token2] = ACTIONS(5855), - [aux_sym__val_number_token3] = ACTIONS(5855), - [aux_sym__val_number_token4] = ACTIONS(5857), - [aux_sym__val_number_token5] = ACTIONS(5857), - [aux_sym__val_number_token6] = ACTIONS(5857), - [anon_sym_0b] = ACTIONS(5859), - [anon_sym_0o] = ACTIONS(5861), - [anon_sym_0x] = ACTIONS(5861), - [sym_val_date] = ACTIONS(5863), - [anon_sym_DQUOTE] = ACTIONS(5865), - [sym__str_single_quotes] = ACTIONS(5867), - [sym__str_back_ticks] = ACTIONS(5867), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5869), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5871), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5873), - [anon_sym_POUND] = ACTIONS(3), + [2477] = { + [sym_comment] = STATE(2477), + [ts_builtin_sym_end] = ACTIONS(6128), + [anon_sym_export] = ACTIONS(6126), + [anon_sym_alias] = ACTIONS(6126), + [anon_sym_let] = ACTIONS(6126), + [anon_sym_let_DASHenv] = ACTIONS(6126), + [anon_sym_mut] = ACTIONS(6126), + [anon_sym_const] = ACTIONS(6126), + [anon_sym_SEMI] = ACTIONS(6126), + [sym_cmd_identifier] = ACTIONS(6126), + [anon_sym_LF] = ACTIONS(6128), + [anon_sym_def] = ACTIONS(6126), + [anon_sym_export_DASHenv] = ACTIONS(6126), + [anon_sym_extern] = ACTIONS(6126), + [anon_sym_module] = ACTIONS(6126), + [anon_sym_use] = ACTIONS(6126), + [anon_sym_LBRACK] = ACTIONS(6126), + [anon_sym_LPAREN] = ACTIONS(6126), + [anon_sym_DOLLAR] = ACTIONS(6126), + [anon_sym_error] = ACTIONS(6126), + [anon_sym_DASH] = ACTIONS(6126), + [anon_sym_break] = ACTIONS(6126), + [anon_sym_continue] = ACTIONS(6126), + [anon_sym_for] = ACTIONS(6126), + [anon_sym_loop] = ACTIONS(6126), + [anon_sym_while] = ACTIONS(6126), + [anon_sym_do] = ACTIONS(6126), + [anon_sym_if] = ACTIONS(6126), + [anon_sym_match] = ACTIONS(6126), + [anon_sym_LBRACE] = ACTIONS(6126), + [anon_sym_DOT_DOT] = ACTIONS(6126), + [anon_sym_try] = ACTIONS(6126), + [anon_sym_return] = ACTIONS(6126), + [anon_sym_source] = ACTIONS(6126), + [anon_sym_source_DASHenv] = ACTIONS(6126), + [anon_sym_register] = ACTIONS(6126), + [anon_sym_hide] = ACTIONS(6126), + [anon_sym_hide_DASHenv] = ACTIONS(6126), + [anon_sym_overlay] = ACTIONS(6126), + [anon_sym_where] = ACTIONS(6126), + [anon_sym_not] = ACTIONS(6126), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6126), + [anon_sym_DOT_DOT_LT] = ACTIONS(6126), + [anon_sym_null] = ACTIONS(6126), + [anon_sym_true] = ACTIONS(6126), + [anon_sym_false] = ACTIONS(6126), + [aux_sym__val_number_decimal_token1] = ACTIONS(6126), + [aux_sym__val_number_decimal_token2] = ACTIONS(6126), + [anon_sym_DOT2] = ACTIONS(6126), + [aux_sym__val_number_decimal_token3] = ACTIONS(6126), + [aux_sym__val_number_token1] = ACTIONS(6126), + [aux_sym__val_number_token2] = ACTIONS(6126), + [aux_sym__val_number_token3] = ACTIONS(6126), + [aux_sym__val_number_token4] = ACTIONS(6126), + [aux_sym__val_number_token5] = ACTIONS(6126), + [aux_sym__val_number_token6] = ACTIONS(6126), + [anon_sym_0b] = ACTIONS(6126), + [anon_sym_0o] = ACTIONS(6126), + [anon_sym_0x] = ACTIONS(6126), + [sym_val_date] = ACTIONS(6126), + [anon_sym_DQUOTE] = ACTIONS(6126), + [sym__str_single_quotes] = ACTIONS(6126), + [sym__str_back_ticks] = ACTIONS(6126), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6126), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6126), + [anon_sym_CARET] = ACTIONS(6126), + [anon_sym_POUND] = ACTIONS(113), }, - [2204] = { - [sym_expr_unary] = STATE(1023), - [sym__expr_unary_minus] = STATE(1019), - [sym_expr_binary] = STATE(1023), - [sym__expr_binary_expression] = STATE(971), - [sym_expr_parenthesized] = STATE(1023), - [sym__val_range] = STATE(10695), - [sym__value] = STATE(1023), - [sym_val_nothing] = STATE(963), - [sym_val_bool] = STATE(934), - [sym_val_variable] = STATE(963), - [sym__var] = STATE(835), - [sym_val_number] = STATE(963), - [sym__val_number_decimal] = STATE(778), - [sym__val_number] = STATE(988), - [sym_val_duration] = STATE(963), - [sym_val_filesize] = STATE(963), - [sym_val_binary] = STATE(963), - [sym_val_string] = STATE(963), - [sym__str_double_quotes] = STATE(986), - [sym_val_interpolated] = STATE(963), - [sym__inter_single_quotes] = STATE(1009), - [sym__inter_double_quotes] = STATE(1010), - [sym_val_list] = STATE(963), - [sym_val_record] = STATE(963), - [sym_val_table] = STATE(963), - [sym_val_closure] = STATE(963), - [sym_unquoted] = STATE(968), - [sym__unquoted_anonymous_prefix] = STATE(11073), - [sym_comment] = STATE(2204), - [anon_sym_LBRACK] = ACTIONS(5827), - [anon_sym_LPAREN] = ACTIONS(5829), - [anon_sym_DOLLAR] = ACTIONS(5831), - [anon_sym_DASH] = ACTIONS(5833), - [anon_sym_LBRACE] = ACTIONS(5835), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_not] = ACTIONS(5839), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5841), - [anon_sym_DOT_DOT_LT] = ACTIONS(5841), - [anon_sym_null] = ACTIONS(5843), - [anon_sym_true] = ACTIONS(5845), - [anon_sym_false] = ACTIONS(5845), - [aux_sym__val_number_decimal_token1] = ACTIONS(5847), - [aux_sym__val_number_decimal_token2] = ACTIONS(5849), - [anon_sym_DOT2] = ACTIONS(5851), - [aux_sym__val_number_decimal_token3] = ACTIONS(5853), - [aux_sym__val_number_token1] = ACTIONS(5855), - [aux_sym__val_number_token2] = ACTIONS(5855), - [aux_sym__val_number_token3] = ACTIONS(5855), - [aux_sym__val_number_token4] = ACTIONS(5857), - [aux_sym__val_number_token5] = ACTIONS(5857), - [aux_sym__val_number_token6] = ACTIONS(5857), - [anon_sym_0b] = ACTIONS(5859), - [anon_sym_0o] = ACTIONS(5861), - [anon_sym_0x] = ACTIONS(5861), - [sym_val_date] = ACTIONS(5863), - [anon_sym_DQUOTE] = ACTIONS(5865), - [sym__str_single_quotes] = ACTIONS(5867), - [sym__str_back_ticks] = ACTIONS(5867), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5869), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5871), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5873), - [anon_sym_POUND] = ACTIONS(3), + [2478] = { + [sym_comment] = STATE(2478), + [ts_builtin_sym_end] = ACTIONS(6154), + [anon_sym_export] = ACTIONS(6152), + [anon_sym_alias] = ACTIONS(6152), + [anon_sym_let] = ACTIONS(6152), + [anon_sym_let_DASHenv] = ACTIONS(6152), + [anon_sym_mut] = ACTIONS(6152), + [anon_sym_const] = ACTIONS(6152), + [anon_sym_SEMI] = ACTIONS(6152), + [sym_cmd_identifier] = ACTIONS(6152), + [anon_sym_LF] = ACTIONS(6154), + [anon_sym_def] = ACTIONS(6152), + [anon_sym_export_DASHenv] = ACTIONS(6152), + [anon_sym_extern] = ACTIONS(6152), + [anon_sym_module] = ACTIONS(6152), + [anon_sym_use] = ACTIONS(6152), + [anon_sym_LBRACK] = ACTIONS(6152), + [anon_sym_LPAREN] = ACTIONS(6152), + [anon_sym_DOLLAR] = ACTIONS(6152), + [anon_sym_error] = ACTIONS(6152), + [anon_sym_DASH] = ACTIONS(6152), + [anon_sym_break] = ACTIONS(6152), + [anon_sym_continue] = ACTIONS(6152), + [anon_sym_for] = ACTIONS(6152), + [anon_sym_loop] = ACTIONS(6152), + [anon_sym_while] = ACTIONS(6152), + [anon_sym_do] = ACTIONS(6152), + [anon_sym_if] = ACTIONS(6152), + [anon_sym_match] = ACTIONS(6152), + [anon_sym_LBRACE] = ACTIONS(6152), + [anon_sym_DOT_DOT] = ACTIONS(6152), + [anon_sym_try] = ACTIONS(6152), + [anon_sym_return] = ACTIONS(6152), + [anon_sym_source] = ACTIONS(6152), + [anon_sym_source_DASHenv] = ACTIONS(6152), + [anon_sym_register] = ACTIONS(6152), + [anon_sym_hide] = ACTIONS(6152), + [anon_sym_hide_DASHenv] = ACTIONS(6152), + [anon_sym_overlay] = ACTIONS(6152), + [anon_sym_where] = ACTIONS(6152), + [anon_sym_not] = ACTIONS(6152), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6152), + [anon_sym_DOT_DOT_LT] = ACTIONS(6152), + [anon_sym_null] = ACTIONS(6152), + [anon_sym_true] = ACTIONS(6152), + [anon_sym_false] = ACTIONS(6152), + [aux_sym__val_number_decimal_token1] = ACTIONS(6152), + [aux_sym__val_number_decimal_token2] = ACTIONS(6152), + [anon_sym_DOT2] = ACTIONS(6152), + [aux_sym__val_number_decimal_token3] = ACTIONS(6152), + [aux_sym__val_number_token1] = ACTIONS(6152), + [aux_sym__val_number_token2] = ACTIONS(6152), + [aux_sym__val_number_token3] = ACTIONS(6152), + [aux_sym__val_number_token4] = ACTIONS(6152), + [aux_sym__val_number_token5] = ACTIONS(6152), + [aux_sym__val_number_token6] = ACTIONS(6152), + [anon_sym_0b] = ACTIONS(6152), + [anon_sym_0o] = ACTIONS(6152), + [anon_sym_0x] = ACTIONS(6152), + [sym_val_date] = ACTIONS(6152), + [anon_sym_DQUOTE] = ACTIONS(6152), + [sym__str_single_quotes] = ACTIONS(6152), + [sym__str_back_ticks] = ACTIONS(6152), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6152), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6152), + [anon_sym_CARET] = ACTIONS(6152), + [anon_sym_POUND] = ACTIONS(113), }, - [2205] = { - [sym_expr_unary] = STATE(1023), - [sym__expr_unary_minus] = STATE(1019), - [sym_expr_binary] = STATE(1023), - [sym__expr_binary_expression] = STATE(972), - [sym_expr_parenthesized] = STATE(1023), - [sym__val_range] = STATE(10695), - [sym__value] = STATE(1023), - [sym_val_nothing] = STATE(963), - [sym_val_bool] = STATE(934), - [sym_val_variable] = STATE(963), - [sym__var] = STATE(835), - [sym_val_number] = STATE(963), - [sym__val_number_decimal] = STATE(778), - [sym__val_number] = STATE(988), - [sym_val_duration] = STATE(963), - [sym_val_filesize] = STATE(963), - [sym_val_binary] = STATE(963), - [sym_val_string] = STATE(963), - [sym__str_double_quotes] = STATE(986), - [sym_val_interpolated] = STATE(963), - [sym__inter_single_quotes] = STATE(1009), - [sym__inter_double_quotes] = STATE(1010), - [sym_val_list] = STATE(963), - [sym_val_record] = STATE(963), - [sym_val_table] = STATE(963), - [sym_val_closure] = STATE(963), - [sym_unquoted] = STATE(987), - [sym__unquoted_anonymous_prefix] = STATE(11073), - [sym_comment] = STATE(2205), - [anon_sym_LBRACK] = ACTIONS(5827), - [anon_sym_LPAREN] = ACTIONS(5829), - [anon_sym_DOLLAR] = ACTIONS(5831), - [anon_sym_DASH] = ACTIONS(5833), - [anon_sym_LBRACE] = ACTIONS(5835), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_not] = ACTIONS(5839), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5841), - [anon_sym_DOT_DOT_LT] = ACTIONS(5841), - [anon_sym_null] = ACTIONS(5843), - [anon_sym_true] = ACTIONS(5845), - [anon_sym_false] = ACTIONS(5845), - [aux_sym__val_number_decimal_token1] = ACTIONS(5847), - [aux_sym__val_number_decimal_token2] = ACTIONS(5849), - [anon_sym_DOT2] = ACTIONS(5851), - [aux_sym__val_number_decimal_token3] = ACTIONS(5853), - [aux_sym__val_number_token1] = ACTIONS(5855), - [aux_sym__val_number_token2] = ACTIONS(5855), - [aux_sym__val_number_token3] = ACTIONS(5855), - [aux_sym__val_number_token4] = ACTIONS(5857), - [aux_sym__val_number_token5] = ACTIONS(5857), - [aux_sym__val_number_token6] = ACTIONS(5857), - [anon_sym_0b] = ACTIONS(5859), - [anon_sym_0o] = ACTIONS(5861), - [anon_sym_0x] = ACTIONS(5861), - [sym_val_date] = ACTIONS(5863), - [anon_sym_DQUOTE] = ACTIONS(5865), - [sym__str_single_quotes] = ACTIONS(5867), - [sym__str_back_ticks] = ACTIONS(5867), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5869), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5871), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5873), + [2479] = { + [sym__immediate_decimal] = STATE(8796), + [sym_comment] = STATE(2479), + [anon_sym_LBRACK] = ACTIONS(922), + [anon_sym_LPAREN] = ACTIONS(922), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_in] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_STAR_STAR] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_mod] = ACTIONS(922), + [anon_sym_SLASH_SLASH] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_bit_DASHshl] = ACTIONS(922), + [anon_sym_bit_DASHshr] = ACTIONS(922), + [anon_sym_EQ_EQ] = ACTIONS(922), + [anon_sym_BANG_EQ] = ACTIONS(922), + [anon_sym_LT2] = ACTIONS(920), + [anon_sym_LT_EQ] = ACTIONS(922), + [anon_sym_GT_EQ] = ACTIONS(922), + [anon_sym_not_DASHin] = ACTIONS(922), + [anon_sym_starts_DASHwith] = ACTIONS(922), + [anon_sym_ends_DASHwith] = ACTIONS(922), + [anon_sym_EQ_TILDE] = ACTIONS(922), + [anon_sym_BANG_TILDE] = ACTIONS(922), + [anon_sym_bit_DASHand] = ACTIONS(922), + [anon_sym_bit_DASHxor] = ACTIONS(922), + [anon_sym_bit_DASHor] = ACTIONS(922), + [anon_sym_and] = ACTIONS(922), + [anon_sym_xor] = ACTIONS(922), + [anon_sym_or] = ACTIONS(922), + [anon_sym_not] = ACTIONS(920), + [anon_sym_DOT] = ACTIONS(6395), + [anon_sym_DOT_DOT_EQ] = ACTIONS(922), + [anon_sym_DOT_DOT_LT] = ACTIONS(922), + [aux_sym__immediate_decimal_token1] = ACTIONS(926), + [aux_sym__immediate_decimal_token3] = ACTIONS(1379), + [aux_sym__immediate_decimal_token4] = ACTIONS(1381), + [anon_sym_null] = ACTIONS(922), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(922), + [aux_sym__val_number_token2] = ACTIONS(922), + [aux_sym__val_number_token3] = ACTIONS(922), + [aux_sym__val_number_token4] = ACTIONS(922), + [aux_sym__val_number_token5] = ACTIONS(922), + [aux_sym__val_number_token6] = ACTIONS(922), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(922), + [anon_sym_DQUOTE] = ACTIONS(922), + [sym__str_single_quotes] = ACTIONS(922), + [sym__str_back_ticks] = ACTIONS(922), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(922), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(922), + [aux_sym_unquoted_token3] = ACTIONS(6354), + [aux_sym_unquoted_token5] = ACTIONS(6397), [anon_sym_POUND] = ACTIONS(3), }, - [2206] = { - [sym_expr_unary] = STATE(1023), - [sym__expr_unary_minus] = STATE(1019), - [sym_expr_binary] = STATE(1023), - [sym__expr_binary_expression] = STATE(973), - [sym_expr_parenthesized] = STATE(1023), - [sym__val_range] = STATE(10695), - [sym__value] = STATE(1023), - [sym_val_nothing] = STATE(963), - [sym_val_bool] = STATE(934), - [sym_val_variable] = STATE(963), - [sym__var] = STATE(835), - [sym_val_number] = STATE(963), - [sym__val_number_decimal] = STATE(778), - [sym__val_number] = STATE(988), - [sym_val_duration] = STATE(963), - [sym_val_filesize] = STATE(963), - [sym_val_binary] = STATE(963), - [sym_val_string] = STATE(963), - [sym__str_double_quotes] = STATE(986), - [sym_val_interpolated] = STATE(963), - [sym__inter_single_quotes] = STATE(1009), - [sym__inter_double_quotes] = STATE(1010), - [sym_val_list] = STATE(963), - [sym_val_record] = STATE(963), - [sym_val_table] = STATE(963), - [sym_val_closure] = STATE(963), - [sym_unquoted] = STATE(1025), - [sym__unquoted_anonymous_prefix] = STATE(11073), - [sym_comment] = STATE(2206), - [anon_sym_LBRACK] = ACTIONS(5827), - [anon_sym_LPAREN] = ACTIONS(5829), - [anon_sym_DOLLAR] = ACTIONS(5831), - [anon_sym_DASH] = ACTIONS(5833), - [anon_sym_LBRACE] = ACTIONS(5835), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_not] = ACTIONS(5839), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5841), - [anon_sym_DOT_DOT_LT] = ACTIONS(5841), - [anon_sym_null] = ACTIONS(5843), - [anon_sym_true] = ACTIONS(5845), - [anon_sym_false] = ACTIONS(5845), - [aux_sym__val_number_decimal_token1] = ACTIONS(5847), - [aux_sym__val_number_decimal_token2] = ACTIONS(5849), - [anon_sym_DOT2] = ACTIONS(5851), - [aux_sym__val_number_decimal_token3] = ACTIONS(5853), - [aux_sym__val_number_token1] = ACTIONS(5855), - [aux_sym__val_number_token2] = ACTIONS(5855), - [aux_sym__val_number_token3] = ACTIONS(5855), - [aux_sym__val_number_token4] = ACTIONS(5857), - [aux_sym__val_number_token5] = ACTIONS(5857), - [aux_sym__val_number_token6] = ACTIONS(5857), - [anon_sym_0b] = ACTIONS(5859), - [anon_sym_0o] = ACTIONS(5861), - [anon_sym_0x] = ACTIONS(5861), - [sym_val_date] = ACTIONS(5863), - [anon_sym_DQUOTE] = ACTIONS(5865), - [sym__str_single_quotes] = ACTIONS(5867), - [sym__str_back_ticks] = ACTIONS(5867), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5869), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5871), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5873), - [anon_sym_POUND] = ACTIONS(3), + [2480] = { + [sym_comment] = STATE(2480), + [anon_sym_SEMI] = ACTIONS(1089), + [anon_sym_LF] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1089), + [anon_sym_RPAREN] = ACTIONS(1089), + [anon_sym_PIPE] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1089), + [anon_sym_GT] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_DASH] = ACTIONS(1089), + [anon_sym_in] = ACTIONS(1089), + [anon_sym_LBRACE] = ACTIONS(1089), + [anon_sym_RBRACE] = ACTIONS(1089), + [anon_sym_DOT_DOT] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_STAR_STAR] = ACTIONS(1089), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_SLASH] = ACTIONS(1089), + [anon_sym_mod] = ACTIONS(1089), + [anon_sym_SLASH_SLASH] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1089), + [anon_sym_bit_DASHshl] = ACTIONS(1089), + [anon_sym_bit_DASHshr] = ACTIONS(1089), + [anon_sym_EQ_EQ] = ACTIONS(1089), + [anon_sym_BANG_EQ] = ACTIONS(1089), + [anon_sym_LT2] = ACTIONS(1089), + [anon_sym_LT_EQ] = ACTIONS(1089), + [anon_sym_GT_EQ] = ACTIONS(1089), + [anon_sym_not_DASHin] = ACTIONS(1089), + [anon_sym_starts_DASHwith] = ACTIONS(1089), + [anon_sym_ends_DASHwith] = ACTIONS(1089), + [anon_sym_EQ_TILDE] = ACTIONS(1089), + [anon_sym_BANG_TILDE] = ACTIONS(1089), + [anon_sym_bit_DASHand] = ACTIONS(1089), + [anon_sym_bit_DASHxor] = ACTIONS(1089), + [anon_sym_bit_DASHor] = ACTIONS(1089), + [anon_sym_and] = ACTIONS(1089), + [anon_sym_xor] = ACTIONS(1089), + [anon_sym_or] = ACTIONS(1089), + [anon_sym_not] = ACTIONS(1089), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_DOT_DOT_LT] = ACTIONS(1089), + [anon_sym_null] = ACTIONS(1089), + [anon_sym_true] = ACTIONS(1089), + [anon_sym_false] = ACTIONS(1089), + [aux_sym__val_number_decimal_token1] = ACTIONS(1089), + [aux_sym__val_number_decimal_token2] = ACTIONS(1089), + [anon_sym_DOT2] = ACTIONS(1089), + [aux_sym__val_number_decimal_token3] = ACTIONS(1089), + [aux_sym__val_number_token1] = ACTIONS(1089), + [aux_sym__val_number_token2] = ACTIONS(1089), + [aux_sym__val_number_token3] = ACTIONS(1089), + [aux_sym__val_number_token4] = ACTIONS(1089), + [aux_sym__val_number_token5] = ACTIONS(1089), + [aux_sym__val_number_token6] = ACTIONS(1089), + [anon_sym_0b] = ACTIONS(1089), + [anon_sym_0o] = ACTIONS(1089), + [anon_sym_0x] = ACTIONS(1089), + [sym_val_date] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1089), + [sym__str_single_quotes] = ACTIONS(1089), + [sym__str_back_ticks] = ACTIONS(1089), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1089), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1089), + [aux_sym_unquoted_token6] = ACTIONS(1149), + [anon_sym_POUND] = ACTIONS(113), }, - [2207] = { - [sym_expr_unary] = STATE(1023), - [sym__expr_unary_minus] = STATE(1019), - [sym_expr_binary] = STATE(1023), - [sym__expr_binary_expression] = STATE(974), - [sym_expr_parenthesized] = STATE(1023), - [sym__val_range] = STATE(10695), - [sym__value] = STATE(1023), - [sym_val_nothing] = STATE(963), - [sym_val_bool] = STATE(934), - [sym_val_variable] = STATE(963), - [sym__var] = STATE(835), - [sym_val_number] = STATE(963), - [sym__val_number_decimal] = STATE(778), - [sym__val_number] = STATE(988), - [sym_val_duration] = STATE(963), - [sym_val_filesize] = STATE(963), - [sym_val_binary] = STATE(963), - [sym_val_string] = STATE(963), - [sym__str_double_quotes] = STATE(986), - [sym_val_interpolated] = STATE(963), - [sym__inter_single_quotes] = STATE(1009), - [sym__inter_double_quotes] = STATE(1010), - [sym_val_list] = STATE(963), - [sym_val_record] = STATE(963), - [sym_val_table] = STATE(963), - [sym_val_closure] = STATE(963), - [sym_unquoted] = STATE(994), - [sym__unquoted_anonymous_prefix] = STATE(11073), - [sym_comment] = STATE(2207), - [anon_sym_LBRACK] = ACTIONS(5827), - [anon_sym_LPAREN] = ACTIONS(5829), - [anon_sym_DOLLAR] = ACTIONS(5831), - [anon_sym_DASH] = ACTIONS(5833), - [anon_sym_LBRACE] = ACTIONS(5835), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_not] = ACTIONS(5839), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5841), - [anon_sym_DOT_DOT_LT] = ACTIONS(5841), - [anon_sym_null] = ACTIONS(5843), - [anon_sym_true] = ACTIONS(5845), - [anon_sym_false] = ACTIONS(5845), - [aux_sym__val_number_decimal_token1] = ACTIONS(5847), - [aux_sym__val_number_decimal_token2] = ACTIONS(5849), - [anon_sym_DOT2] = ACTIONS(5851), - [aux_sym__val_number_decimal_token3] = ACTIONS(5853), - [aux_sym__val_number_token1] = ACTIONS(5855), - [aux_sym__val_number_token2] = ACTIONS(5855), - [aux_sym__val_number_token3] = ACTIONS(5855), - [aux_sym__val_number_token4] = ACTIONS(5857), - [aux_sym__val_number_token5] = ACTIONS(5857), - [aux_sym__val_number_token6] = ACTIONS(5857), - [anon_sym_0b] = ACTIONS(5859), - [anon_sym_0o] = ACTIONS(5861), - [anon_sym_0x] = ACTIONS(5861), - [sym_val_date] = ACTIONS(5863), - [anon_sym_DQUOTE] = ACTIONS(5865), - [sym__str_single_quotes] = ACTIONS(5867), - [sym__str_back_ticks] = ACTIONS(5867), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5869), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5871), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5873), - [anon_sym_POUND] = ACTIONS(3), + [2481] = { + [sym_comment] = STATE(2481), + [anon_sym_SEMI] = ACTIONS(938), + [anon_sym_LF] = ACTIONS(940), + [anon_sym_LBRACK] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(938), + [anon_sym_RPAREN] = ACTIONS(938), + [anon_sym_PIPE] = ACTIONS(938), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_in] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_RBRACE] = ACTIONS(938), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_STAR_STAR] = ACTIONS(938), + [anon_sym_PLUS_PLUS] = ACTIONS(938), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(938), + [anon_sym_SLASH_SLASH] = ACTIONS(938), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_bit_DASHshl] = ACTIONS(938), + [anon_sym_bit_DASHshr] = ACTIONS(938), + [anon_sym_EQ_EQ] = ACTIONS(938), + [anon_sym_BANG_EQ] = ACTIONS(938), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(938), + [anon_sym_GT_EQ] = ACTIONS(938), + [anon_sym_not_DASHin] = ACTIONS(938), + [anon_sym_starts_DASHwith] = ACTIONS(938), + [anon_sym_ends_DASHwith] = ACTIONS(938), + [anon_sym_EQ_TILDE] = ACTIONS(938), + [anon_sym_BANG_TILDE] = ACTIONS(938), + [anon_sym_bit_DASHand] = ACTIONS(938), + [anon_sym_bit_DASHxor] = ACTIONS(938), + [anon_sym_bit_DASHor] = ACTIONS(938), + [anon_sym_and] = ACTIONS(938), + [anon_sym_xor] = ACTIONS(938), + [anon_sym_or] = ACTIONS(938), + [anon_sym_not] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ] = ACTIONS(938), + [anon_sym_DOT_DOT_LT] = ACTIONS(938), + [anon_sym_null] = ACTIONS(938), + [anon_sym_true] = ACTIONS(938), + [anon_sym_false] = ACTIONS(938), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(938), + [anon_sym_DOT2] = ACTIONS(938), + [aux_sym__val_number_decimal_token3] = ACTIONS(938), + [aux_sym__val_number_token1] = ACTIONS(938), + [aux_sym__val_number_token2] = ACTIONS(938), + [aux_sym__val_number_token3] = ACTIONS(938), + [aux_sym__val_number_token4] = ACTIONS(938), + [aux_sym__val_number_token5] = ACTIONS(938), + [aux_sym__val_number_token6] = ACTIONS(938), + [anon_sym_0b] = ACTIONS(938), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym__str_single_quotes] = ACTIONS(938), + [sym__str_back_ticks] = ACTIONS(938), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(938), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(938), + [aux_sym_unquoted_token5] = ACTIONS(3625), + [anon_sym_POUND] = ACTIONS(113), }, - [2208] = { - [sym_expr_unary] = STATE(1023), - [sym__expr_unary_minus] = STATE(1019), - [sym_expr_binary] = STATE(1023), - [sym__expr_binary_expression] = STATE(975), - [sym_expr_parenthesized] = STATE(1023), - [sym__val_range] = STATE(10695), - [sym__value] = STATE(1023), - [sym_val_nothing] = STATE(963), - [sym_val_bool] = STATE(934), - [sym_val_variable] = STATE(963), - [sym__var] = STATE(835), - [sym_val_number] = STATE(963), - [sym__val_number_decimal] = STATE(778), - [sym__val_number] = STATE(988), - [sym_val_duration] = STATE(963), - [sym_val_filesize] = STATE(963), - [sym_val_binary] = STATE(963), - [sym_val_string] = STATE(963), - [sym__str_double_quotes] = STATE(986), - [sym_val_interpolated] = STATE(963), - [sym__inter_single_quotes] = STATE(1009), - [sym__inter_double_quotes] = STATE(1010), - [sym_val_list] = STATE(963), - [sym_val_record] = STATE(963), - [sym_val_table] = STATE(963), - [sym_val_closure] = STATE(963), - [sym_unquoted] = STATE(1014), - [sym__unquoted_anonymous_prefix] = STATE(11073), - [sym_comment] = STATE(2208), - [anon_sym_LBRACK] = ACTIONS(5827), - [anon_sym_LPAREN] = ACTIONS(5829), - [anon_sym_DOLLAR] = ACTIONS(5831), - [anon_sym_DASH] = ACTIONS(5833), - [anon_sym_LBRACE] = ACTIONS(5835), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_not] = ACTIONS(5839), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5841), - [anon_sym_DOT_DOT_LT] = ACTIONS(5841), - [anon_sym_null] = ACTIONS(5843), - [anon_sym_true] = ACTIONS(5845), - [anon_sym_false] = ACTIONS(5845), - [aux_sym__val_number_decimal_token1] = ACTIONS(5847), - [aux_sym__val_number_decimal_token2] = ACTIONS(5849), - [anon_sym_DOT2] = ACTIONS(5851), - [aux_sym__val_number_decimal_token3] = ACTIONS(5853), - [aux_sym__val_number_token1] = ACTIONS(5855), - [aux_sym__val_number_token2] = ACTIONS(5855), - [aux_sym__val_number_token3] = ACTIONS(5855), - [aux_sym__val_number_token4] = ACTIONS(5857), - [aux_sym__val_number_token5] = ACTIONS(5857), - [aux_sym__val_number_token6] = ACTIONS(5857), - [anon_sym_0b] = ACTIONS(5859), - [anon_sym_0o] = ACTIONS(5861), - [anon_sym_0x] = ACTIONS(5861), - [sym_val_date] = ACTIONS(5863), - [anon_sym_DQUOTE] = ACTIONS(5865), - [sym__str_single_quotes] = ACTIONS(5867), - [sym__str_back_ticks] = ACTIONS(5867), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5869), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5871), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5873), - [anon_sym_POUND] = ACTIONS(3), + [2482] = { + [sym_comment] = STATE(2482), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym_LF] = ACTIONS(1161), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LPAREN] = ACTIONS(1159), + [anon_sym_RPAREN] = ACTIONS(1159), + [anon_sym_PIPE] = ACTIONS(1159), + [anon_sym_DOLLAR] = ACTIONS(1159), + [anon_sym_GT] = ACTIONS(1159), + [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_DASH] = ACTIONS(1159), + [anon_sym_in] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(1159), + [anon_sym_RBRACE] = ACTIONS(1159), + [anon_sym_DOT_DOT] = ACTIONS(1159), + [anon_sym_STAR] = ACTIONS(1159), + [anon_sym_STAR_STAR] = ACTIONS(1159), + [anon_sym_PLUS_PLUS] = ACTIONS(1159), + [anon_sym_SLASH] = ACTIONS(1159), + [anon_sym_mod] = ACTIONS(1159), + [anon_sym_SLASH_SLASH] = ACTIONS(1159), + [anon_sym_PLUS] = ACTIONS(1159), + [anon_sym_bit_DASHshl] = ACTIONS(1159), + [anon_sym_bit_DASHshr] = ACTIONS(1159), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_LT2] = ACTIONS(1159), + [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_not_DASHin] = ACTIONS(1159), + [anon_sym_starts_DASHwith] = ACTIONS(1159), + [anon_sym_ends_DASHwith] = ACTIONS(1159), + [anon_sym_EQ_TILDE] = ACTIONS(1159), + [anon_sym_BANG_TILDE] = ACTIONS(1159), + [anon_sym_bit_DASHand] = ACTIONS(1159), + [anon_sym_bit_DASHxor] = ACTIONS(1159), + [anon_sym_bit_DASHor] = ACTIONS(1159), + [anon_sym_and] = ACTIONS(1159), + [anon_sym_xor] = ACTIONS(1159), + [anon_sym_or] = ACTIONS(1159), + [anon_sym_not] = ACTIONS(1159), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1159), + [anon_sym_DOT_DOT_LT] = ACTIONS(1159), + [anon_sym_null] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1159), + [anon_sym_false] = ACTIONS(1159), + [aux_sym__val_number_decimal_token1] = ACTIONS(1159), + [aux_sym__val_number_decimal_token2] = ACTIONS(1159), + [anon_sym_DOT2] = ACTIONS(1159), + [aux_sym__val_number_decimal_token3] = ACTIONS(1159), + [aux_sym__val_number_token1] = ACTIONS(1159), + [aux_sym__val_number_token2] = ACTIONS(1159), + [aux_sym__val_number_token3] = ACTIONS(1159), + [aux_sym__val_number_token4] = ACTIONS(1159), + [aux_sym__val_number_token5] = ACTIONS(1159), + [aux_sym__val_number_token6] = ACTIONS(1159), + [anon_sym_0b] = ACTIONS(1159), + [anon_sym_0o] = ACTIONS(1159), + [anon_sym_0x] = ACTIONS(1159), + [sym_val_date] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(1159), + [sym__str_single_quotes] = ACTIONS(1159), + [sym__str_back_ticks] = ACTIONS(1159), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1159), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1159), + [aux_sym_unquoted_token6] = ACTIONS(1163), + [anon_sym_POUND] = ACTIONS(113), }, - [2209] = { - [sym_expr_unary] = STATE(1023), - [sym__expr_unary_minus] = STATE(1019), - [sym_expr_binary] = STATE(1023), - [sym__expr_binary_expression] = STATE(977), - [sym_expr_parenthesized] = STATE(1023), - [sym__val_range] = STATE(10695), - [sym__value] = STATE(1023), - [sym_val_nothing] = STATE(963), - [sym_val_bool] = STATE(934), - [sym_val_variable] = STATE(963), - [sym__var] = STATE(835), - [sym_val_number] = STATE(963), - [sym__val_number_decimal] = STATE(778), - [sym__val_number] = STATE(988), - [sym_val_duration] = STATE(963), - [sym_val_filesize] = STATE(963), - [sym_val_binary] = STATE(963), - [sym_val_string] = STATE(963), - [sym__str_double_quotes] = STATE(986), - [sym_val_interpolated] = STATE(963), - [sym__inter_single_quotes] = STATE(1009), - [sym__inter_double_quotes] = STATE(1010), - [sym_val_list] = STATE(963), - [sym_val_record] = STATE(963), - [sym_val_table] = STATE(963), - [sym_val_closure] = STATE(963), - [sym_unquoted] = STATE(1020), - [sym__unquoted_anonymous_prefix] = STATE(11073), - [sym_comment] = STATE(2209), - [anon_sym_LBRACK] = ACTIONS(5827), - [anon_sym_LPAREN] = ACTIONS(5829), - [anon_sym_DOLLAR] = ACTIONS(5831), - [anon_sym_DASH] = ACTIONS(5833), - [anon_sym_LBRACE] = ACTIONS(5835), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_not] = ACTIONS(5839), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5841), - [anon_sym_DOT_DOT_LT] = ACTIONS(5841), - [anon_sym_null] = ACTIONS(5843), - [anon_sym_true] = ACTIONS(5845), - [anon_sym_false] = ACTIONS(5845), - [aux_sym__val_number_decimal_token1] = ACTIONS(5847), - [aux_sym__val_number_decimal_token2] = ACTIONS(5849), - [anon_sym_DOT2] = ACTIONS(5851), - [aux_sym__val_number_decimal_token3] = ACTIONS(5853), - [aux_sym__val_number_token1] = ACTIONS(5855), - [aux_sym__val_number_token2] = ACTIONS(5855), - [aux_sym__val_number_token3] = ACTIONS(5855), - [aux_sym__val_number_token4] = ACTIONS(5857), - [aux_sym__val_number_token5] = ACTIONS(5857), - [aux_sym__val_number_token6] = ACTIONS(5857), - [anon_sym_0b] = ACTIONS(5859), - [anon_sym_0o] = ACTIONS(5861), - [anon_sym_0x] = ACTIONS(5861), - [sym_val_date] = ACTIONS(5863), - [anon_sym_DQUOTE] = ACTIONS(5865), - [sym__str_single_quotes] = ACTIONS(5867), - [sym__str_back_ticks] = ACTIONS(5867), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5869), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5871), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5873), - [anon_sym_POUND] = ACTIONS(3), + [2483] = { + [sym_comment] = STATE(2483), + [anon_sym_SEMI] = ACTIONS(1129), + [anon_sym_LF] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(1129), + [anon_sym_RPAREN] = ACTIONS(1129), + [anon_sym_PIPE] = ACTIONS(1129), + [anon_sym_DOLLAR] = ACTIONS(1129), + [anon_sym_GT] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_in] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(1129), + [anon_sym_RBRACE] = ACTIONS(1129), + [anon_sym_DOT_DOT] = ACTIONS(1129), + [anon_sym_STAR] = ACTIONS(1129), + [anon_sym_STAR_STAR] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(1129), + [anon_sym_mod] = ACTIONS(1129), + [anon_sym_SLASH_SLASH] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_bit_DASHshl] = ACTIONS(1129), + [anon_sym_bit_DASHshr] = ACTIONS(1129), + [anon_sym_EQ_EQ] = ACTIONS(1129), + [anon_sym_BANG_EQ] = ACTIONS(1129), + [anon_sym_LT2] = ACTIONS(1129), + [anon_sym_LT_EQ] = ACTIONS(1129), + [anon_sym_GT_EQ] = ACTIONS(1129), + [anon_sym_not_DASHin] = ACTIONS(1129), + [anon_sym_starts_DASHwith] = ACTIONS(1129), + [anon_sym_ends_DASHwith] = ACTIONS(1129), + [anon_sym_EQ_TILDE] = ACTIONS(1129), + [anon_sym_BANG_TILDE] = ACTIONS(1129), + [anon_sym_bit_DASHand] = ACTIONS(1129), + [anon_sym_bit_DASHxor] = ACTIONS(1129), + [anon_sym_bit_DASHor] = ACTIONS(1129), + [anon_sym_and] = ACTIONS(1129), + [anon_sym_xor] = ACTIONS(1129), + [anon_sym_or] = ACTIONS(1129), + [anon_sym_not] = ACTIONS(1129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1129), + [anon_sym_DOT_DOT_LT] = ACTIONS(1129), + [anon_sym_null] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1129), + [anon_sym_false] = ACTIONS(1129), + [aux_sym__val_number_decimal_token1] = ACTIONS(1129), + [aux_sym__val_number_decimal_token2] = ACTIONS(1129), + [anon_sym_DOT2] = ACTIONS(1129), + [aux_sym__val_number_decimal_token3] = ACTIONS(1129), + [aux_sym__val_number_token1] = ACTIONS(1129), + [aux_sym__val_number_token2] = ACTIONS(1129), + [aux_sym__val_number_token3] = ACTIONS(1129), + [aux_sym__val_number_token4] = ACTIONS(1129), + [aux_sym__val_number_token5] = ACTIONS(1129), + [aux_sym__val_number_token6] = ACTIONS(1129), + [anon_sym_0b] = ACTIONS(1129), + [anon_sym_0o] = ACTIONS(1129), + [anon_sym_0x] = ACTIONS(1129), + [sym_val_date] = ACTIONS(1129), + [anon_sym_DQUOTE] = ACTIONS(1129), + [sym__str_single_quotes] = ACTIONS(1129), + [sym__str_back_ticks] = ACTIONS(1129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1129), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1129), + [aux_sym_unquoted_token6] = ACTIONS(1133), + [anon_sym_POUND] = ACTIONS(113), }, - [2210] = { - [sym_expr_unary] = STATE(1023), - [sym__expr_unary_minus] = STATE(1019), - [sym_expr_binary] = STATE(1023), - [sym__expr_binary_expression] = STATE(978), - [sym_expr_parenthesized] = STATE(1023), - [sym__val_range] = STATE(10695), - [sym__value] = STATE(1023), - [sym_val_nothing] = STATE(963), - [sym_val_bool] = STATE(934), - [sym_val_variable] = STATE(963), - [sym__var] = STATE(835), - [sym_val_number] = STATE(963), - [sym__val_number_decimal] = STATE(778), - [sym__val_number] = STATE(988), - [sym_val_duration] = STATE(963), - [sym_val_filesize] = STATE(963), - [sym_val_binary] = STATE(963), - [sym_val_string] = STATE(963), - [sym__str_double_quotes] = STATE(986), - [sym_val_interpolated] = STATE(963), - [sym__inter_single_quotes] = STATE(1009), - [sym__inter_double_quotes] = STATE(1010), - [sym_val_list] = STATE(963), - [sym_val_record] = STATE(963), - [sym_val_table] = STATE(963), - [sym_val_closure] = STATE(963), - [sym_unquoted] = STATE(1022), - [sym__unquoted_anonymous_prefix] = STATE(11073), - [sym_comment] = STATE(2210), - [anon_sym_LBRACK] = ACTIONS(5827), - [anon_sym_LPAREN] = ACTIONS(5829), - [anon_sym_DOLLAR] = ACTIONS(5831), - [anon_sym_DASH] = ACTIONS(5833), - [anon_sym_LBRACE] = ACTIONS(5835), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_not] = ACTIONS(5839), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5841), - [anon_sym_DOT_DOT_LT] = ACTIONS(5841), - [anon_sym_null] = ACTIONS(5843), - [anon_sym_true] = ACTIONS(5845), - [anon_sym_false] = ACTIONS(5845), - [aux_sym__val_number_decimal_token1] = ACTIONS(5847), - [aux_sym__val_number_decimal_token2] = ACTIONS(5849), - [anon_sym_DOT2] = ACTIONS(5851), - [aux_sym__val_number_decimal_token3] = ACTIONS(5853), - [aux_sym__val_number_token1] = ACTIONS(5855), - [aux_sym__val_number_token2] = ACTIONS(5855), - [aux_sym__val_number_token3] = ACTIONS(5855), - [aux_sym__val_number_token4] = ACTIONS(5857), - [aux_sym__val_number_token5] = ACTIONS(5857), - [aux_sym__val_number_token6] = ACTIONS(5857), - [anon_sym_0b] = ACTIONS(5859), - [anon_sym_0o] = ACTIONS(5861), - [anon_sym_0x] = ACTIONS(5861), - [sym_val_date] = ACTIONS(5863), - [anon_sym_DQUOTE] = ACTIONS(5865), - [sym__str_single_quotes] = ACTIONS(5867), - [sym__str_back_ticks] = ACTIONS(5867), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5869), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5871), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5873), - [anon_sym_POUND] = ACTIONS(3), + [2484] = { + [sym_comment] = STATE(2484), + [anon_sym_SEMI] = ACTIONS(1135), + [anon_sym_LF] = ACTIONS(1137), + [anon_sym_LBRACK] = ACTIONS(1135), + [anon_sym_LPAREN] = ACTIONS(1135), + [anon_sym_RPAREN] = ACTIONS(1135), + [anon_sym_PIPE] = ACTIONS(1135), + [anon_sym_DOLLAR] = ACTIONS(1135), + [anon_sym_GT] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_in] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1135), + [anon_sym_RBRACE] = ACTIONS(1135), + [anon_sym_DOT_DOT] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1135), + [anon_sym_STAR_STAR] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_SLASH] = ACTIONS(1135), + [anon_sym_mod] = ACTIONS(1135), + [anon_sym_SLASH_SLASH] = ACTIONS(1135), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_bit_DASHshl] = ACTIONS(1135), + [anon_sym_bit_DASHshr] = ACTIONS(1135), + [anon_sym_EQ_EQ] = ACTIONS(1135), + [anon_sym_BANG_EQ] = ACTIONS(1135), + [anon_sym_LT2] = ACTIONS(1135), + [anon_sym_LT_EQ] = ACTIONS(1135), + [anon_sym_GT_EQ] = ACTIONS(1135), + [anon_sym_not_DASHin] = ACTIONS(1135), + [anon_sym_starts_DASHwith] = ACTIONS(1135), + [anon_sym_ends_DASHwith] = ACTIONS(1135), + [anon_sym_EQ_TILDE] = ACTIONS(1135), + [anon_sym_BANG_TILDE] = ACTIONS(1135), + [anon_sym_bit_DASHand] = ACTIONS(1135), + [anon_sym_bit_DASHxor] = ACTIONS(1135), + [anon_sym_bit_DASHor] = ACTIONS(1135), + [anon_sym_and] = ACTIONS(1135), + [anon_sym_xor] = ACTIONS(1135), + [anon_sym_or] = ACTIONS(1135), + [anon_sym_not] = ACTIONS(1135), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1135), + [anon_sym_DOT_DOT_LT] = ACTIONS(1135), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_true] = ACTIONS(1135), + [anon_sym_false] = ACTIONS(1135), + [aux_sym__val_number_decimal_token1] = ACTIONS(1135), + [aux_sym__val_number_decimal_token2] = ACTIONS(1135), + [anon_sym_DOT2] = ACTIONS(1135), + [aux_sym__val_number_decimal_token3] = ACTIONS(1135), + [aux_sym__val_number_token1] = ACTIONS(1135), + [aux_sym__val_number_token2] = ACTIONS(1135), + [aux_sym__val_number_token3] = ACTIONS(1135), + [aux_sym__val_number_token4] = ACTIONS(1135), + [aux_sym__val_number_token5] = ACTIONS(1135), + [aux_sym__val_number_token6] = ACTIONS(1135), + [anon_sym_0b] = ACTIONS(1135), + [anon_sym_0o] = ACTIONS(1135), + [anon_sym_0x] = ACTIONS(1135), + [sym_val_date] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1135), + [sym__str_single_quotes] = ACTIONS(1135), + [sym__str_back_ticks] = ACTIONS(1135), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1135), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1135), + [aux_sym_unquoted_token6] = ACTIONS(1133), + [anon_sym_POUND] = ACTIONS(113), }, - [2211] = { - [sym_expr_unary] = STATE(1023), - [sym__expr_unary_minus] = STATE(1019), - [sym_expr_binary] = STATE(1023), - [sym__expr_binary_expression] = STATE(980), - [sym_expr_parenthesized] = STATE(1023), - [sym__val_range] = STATE(10695), - [sym__value] = STATE(1023), - [sym_val_nothing] = STATE(963), - [sym_val_bool] = STATE(934), - [sym_val_variable] = STATE(963), - [sym__var] = STATE(835), - [sym_val_number] = STATE(963), - [sym__val_number_decimal] = STATE(778), - [sym__val_number] = STATE(988), - [sym_val_duration] = STATE(963), - [sym_val_filesize] = STATE(963), - [sym_val_binary] = STATE(963), - [sym_val_string] = STATE(963), - [sym__str_double_quotes] = STATE(986), - [sym_val_interpolated] = STATE(963), - [sym__inter_single_quotes] = STATE(1009), - [sym__inter_double_quotes] = STATE(1010), - [sym_val_list] = STATE(963), - [sym_val_record] = STATE(963), - [sym_val_table] = STATE(963), - [sym_val_closure] = STATE(963), - [sym_unquoted] = STATE(1017), - [sym__unquoted_anonymous_prefix] = STATE(11073), - [sym_comment] = STATE(2211), - [anon_sym_LBRACK] = ACTIONS(5827), - [anon_sym_LPAREN] = ACTIONS(5829), - [anon_sym_DOLLAR] = ACTIONS(5831), - [anon_sym_DASH] = ACTIONS(5833), - [anon_sym_LBRACE] = ACTIONS(5835), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_not] = ACTIONS(5839), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5841), - [anon_sym_DOT_DOT_LT] = ACTIONS(5841), - [anon_sym_null] = ACTIONS(5843), - [anon_sym_true] = ACTIONS(5845), - [anon_sym_false] = ACTIONS(5845), - [aux_sym__val_number_decimal_token1] = ACTIONS(5847), - [aux_sym__val_number_decimal_token2] = ACTIONS(5849), - [anon_sym_DOT2] = ACTIONS(5851), - [aux_sym__val_number_decimal_token3] = ACTIONS(5853), - [aux_sym__val_number_token1] = ACTIONS(5855), - [aux_sym__val_number_token2] = ACTIONS(5855), - [aux_sym__val_number_token3] = ACTIONS(5855), - [aux_sym__val_number_token4] = ACTIONS(5857), - [aux_sym__val_number_token5] = ACTIONS(5857), - [aux_sym__val_number_token6] = ACTIONS(5857), - [anon_sym_0b] = ACTIONS(5859), - [anon_sym_0o] = ACTIONS(5861), - [anon_sym_0x] = ACTIONS(5861), - [sym_val_date] = ACTIONS(5863), - [anon_sym_DQUOTE] = ACTIONS(5865), - [sym__str_single_quotes] = ACTIONS(5867), - [sym__str_back_ticks] = ACTIONS(5867), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5869), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5871), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5873), - [anon_sym_POUND] = ACTIONS(3), + [2485] = { + [sym_comment] = STATE(2485), + [ts_builtin_sym_end] = ACTIONS(6399), + [anon_sym_export] = ACTIONS(5974), + [anon_sym_alias] = ACTIONS(5974), + [anon_sym_let] = ACTIONS(5974), + [anon_sym_let_DASHenv] = ACTIONS(5974), + [anon_sym_mut] = ACTIONS(5974), + [anon_sym_const] = ACTIONS(5974), + [anon_sym_SEMI] = ACTIONS(5976), + [sym_cmd_identifier] = ACTIONS(5974), + [anon_sym_LF] = ACTIONS(5979), + [anon_sym_def] = ACTIONS(5974), + [anon_sym_export_DASHenv] = ACTIONS(5974), + [anon_sym_extern] = ACTIONS(5974), + [anon_sym_module] = ACTIONS(5974), + [anon_sym_use] = ACTIONS(5974), + [anon_sym_LBRACK] = ACTIONS(5974), + [anon_sym_LPAREN] = ACTIONS(5974), + [anon_sym_DOLLAR] = ACTIONS(5974), + [anon_sym_error] = ACTIONS(5974), + [anon_sym_DASH] = ACTIONS(5974), + [anon_sym_break] = ACTIONS(5974), + [anon_sym_continue] = ACTIONS(5974), + [anon_sym_for] = ACTIONS(5974), + [anon_sym_loop] = ACTIONS(5974), + [anon_sym_while] = ACTIONS(5974), + [anon_sym_do] = ACTIONS(5974), + [anon_sym_if] = ACTIONS(5974), + [anon_sym_match] = ACTIONS(5974), + [anon_sym_LBRACE] = ACTIONS(5974), + [anon_sym_DOT_DOT] = ACTIONS(5974), + [anon_sym_try] = ACTIONS(5974), + [anon_sym_return] = ACTIONS(5974), + [anon_sym_source] = ACTIONS(5974), + [anon_sym_source_DASHenv] = ACTIONS(5974), + [anon_sym_register] = ACTIONS(5974), + [anon_sym_hide] = ACTIONS(5974), + [anon_sym_hide_DASHenv] = ACTIONS(5974), + [anon_sym_overlay] = ACTIONS(5974), + [anon_sym_where] = ACTIONS(5974), + [anon_sym_not] = ACTIONS(5974), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5974), + [anon_sym_DOT_DOT_LT] = ACTIONS(5974), + [anon_sym_null] = ACTIONS(5974), + [anon_sym_true] = ACTIONS(5974), + [anon_sym_false] = ACTIONS(5974), + [aux_sym__val_number_decimal_token1] = ACTIONS(5974), + [aux_sym__val_number_decimal_token2] = ACTIONS(5974), + [anon_sym_DOT2] = ACTIONS(5974), + [aux_sym__val_number_decimal_token3] = ACTIONS(5974), + [aux_sym__val_number_token1] = ACTIONS(5974), + [aux_sym__val_number_token2] = ACTIONS(5974), + [aux_sym__val_number_token3] = ACTIONS(5974), + [aux_sym__val_number_token4] = ACTIONS(5974), + [aux_sym__val_number_token5] = ACTIONS(5974), + [aux_sym__val_number_token6] = ACTIONS(5974), + [anon_sym_0b] = ACTIONS(5974), + [anon_sym_0o] = ACTIONS(5974), + [anon_sym_0x] = ACTIONS(5974), + [sym_val_date] = ACTIONS(5974), + [anon_sym_DQUOTE] = ACTIONS(5974), + [sym__str_single_quotes] = ACTIONS(5974), + [sym__str_back_ticks] = ACTIONS(5974), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5974), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5974), + [anon_sym_CARET] = ACTIONS(5974), + [anon_sym_POUND] = ACTIONS(113), }, - [2212] = { - [sym_expr_unary] = STATE(3096), - [sym__expr_unary_minus] = STATE(3093), - [sym_expr_binary] = STATE(3096), - [sym__expr_binary_expression] = STATE(3115), - [sym_expr_parenthesized] = STATE(3096), - [sym__val_range] = STATE(10705), - [sym__value] = STATE(3096), - [sym_val_nothing] = STATE(3125), - [sym_val_bool] = STATE(2990), - [sym_val_variable] = STATE(3125), - [sym__var] = STATE(2692), - [sym_val_number] = STATE(3125), - [sym__val_number_decimal] = STATE(1567), - [sym__val_number] = STATE(3113), - [sym_val_duration] = STATE(3125), - [sym_val_filesize] = STATE(3125), - [sym_val_binary] = STATE(3125), - [sym_val_string] = STATE(3125), - [sym__str_double_quotes] = STATE(3110), - [sym_val_interpolated] = STATE(3125), - [sym__inter_single_quotes] = STATE(3069), - [sym__inter_double_quotes] = STATE(3071), - [sym_val_list] = STATE(3125), - [sym_val_record] = STATE(3125), - [sym_val_table] = STATE(3125), - [sym_val_closure] = STATE(3125), - [sym_unquoted] = STATE(3097), - [sym__unquoted_anonymous_prefix] = STATE(11116), - [sym_comment] = STATE(2212), - [anon_sym_LBRACK] = ACTIONS(4097), - [anon_sym_LPAREN] = ACTIONS(5875), - [anon_sym_DOLLAR] = ACTIONS(5877), - [anon_sym_DASH] = ACTIONS(4103), - [anon_sym_LBRACE] = ACTIONS(4105), - [anon_sym_DOT_DOT] = ACTIONS(5879), - [anon_sym_not] = ACTIONS(4109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5881), - [anon_sym_DOT_DOT_LT] = ACTIONS(5881), - [anon_sym_null] = ACTIONS(4113), - [anon_sym_true] = ACTIONS(4115), - [anon_sym_false] = ACTIONS(4115), - [aux_sym__val_number_decimal_token1] = ACTIONS(4117), - [aux_sym__val_number_decimal_token2] = ACTIONS(4119), - [anon_sym_DOT2] = ACTIONS(5883), - [aux_sym__val_number_decimal_token3] = ACTIONS(4123), - [aux_sym__val_number_token1] = ACTIONS(4125), - [aux_sym__val_number_token2] = ACTIONS(4125), - [aux_sym__val_number_token3] = ACTIONS(4125), - [aux_sym__val_number_token4] = ACTIONS(5885), - [aux_sym__val_number_token5] = ACTIONS(5885), - [aux_sym__val_number_token6] = ACTIONS(5885), - [anon_sym_0b] = ACTIONS(4129), - [anon_sym_0o] = ACTIONS(4131), - [anon_sym_0x] = ACTIONS(4131), - [sym_val_date] = ACTIONS(4133), - [anon_sym_DQUOTE] = ACTIONS(4135), - [sym__str_single_quotes] = ACTIONS(4137), - [sym__str_back_ticks] = ACTIONS(4137), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4139), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4141), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5887), - [anon_sym_POUND] = ACTIONS(3), + [2486] = { + [sym_comment] = STATE(2486), + [ts_builtin_sym_end] = ACTIONS(6116), + [anon_sym_export] = ACTIONS(6114), + [anon_sym_alias] = ACTIONS(6114), + [anon_sym_let] = ACTIONS(6114), + [anon_sym_let_DASHenv] = ACTIONS(6114), + [anon_sym_mut] = ACTIONS(6114), + [anon_sym_const] = ACTIONS(6114), + [anon_sym_SEMI] = ACTIONS(6114), + [sym_cmd_identifier] = ACTIONS(6114), + [anon_sym_LF] = ACTIONS(6116), + [anon_sym_def] = ACTIONS(6114), + [anon_sym_export_DASHenv] = ACTIONS(6114), + [anon_sym_extern] = ACTIONS(6114), + [anon_sym_module] = ACTIONS(6114), + [anon_sym_use] = ACTIONS(6114), + [anon_sym_LBRACK] = ACTIONS(6114), + [anon_sym_LPAREN] = ACTIONS(6114), + [anon_sym_DOLLAR] = ACTIONS(6114), + [anon_sym_error] = ACTIONS(6114), + [anon_sym_DASH] = ACTIONS(6114), + [anon_sym_break] = ACTIONS(6114), + [anon_sym_continue] = ACTIONS(6114), + [anon_sym_for] = ACTIONS(6114), + [anon_sym_loop] = ACTIONS(6114), + [anon_sym_while] = ACTIONS(6114), + [anon_sym_do] = ACTIONS(6114), + [anon_sym_if] = ACTIONS(6114), + [anon_sym_match] = ACTIONS(6114), + [anon_sym_LBRACE] = ACTIONS(6114), + [anon_sym_DOT_DOT] = ACTIONS(6114), + [anon_sym_try] = ACTIONS(6114), + [anon_sym_return] = ACTIONS(6114), + [anon_sym_source] = ACTIONS(6114), + [anon_sym_source_DASHenv] = ACTIONS(6114), + [anon_sym_register] = ACTIONS(6114), + [anon_sym_hide] = ACTIONS(6114), + [anon_sym_hide_DASHenv] = ACTIONS(6114), + [anon_sym_overlay] = ACTIONS(6114), + [anon_sym_where] = ACTIONS(6114), + [anon_sym_not] = ACTIONS(6114), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6114), + [anon_sym_DOT_DOT_LT] = ACTIONS(6114), + [anon_sym_null] = ACTIONS(6114), + [anon_sym_true] = ACTIONS(6114), + [anon_sym_false] = ACTIONS(6114), + [aux_sym__val_number_decimal_token1] = ACTIONS(6114), + [aux_sym__val_number_decimal_token2] = ACTIONS(6114), + [anon_sym_DOT2] = ACTIONS(6114), + [aux_sym__val_number_decimal_token3] = ACTIONS(6114), + [aux_sym__val_number_token1] = ACTIONS(6114), + [aux_sym__val_number_token2] = ACTIONS(6114), + [aux_sym__val_number_token3] = ACTIONS(6114), + [aux_sym__val_number_token4] = ACTIONS(6114), + [aux_sym__val_number_token5] = ACTIONS(6114), + [aux_sym__val_number_token6] = ACTIONS(6114), + [anon_sym_0b] = ACTIONS(6114), + [anon_sym_0o] = ACTIONS(6114), + [anon_sym_0x] = ACTIONS(6114), + [sym_val_date] = ACTIONS(6114), + [anon_sym_DQUOTE] = ACTIONS(6114), + [sym__str_single_quotes] = ACTIONS(6114), + [sym__str_back_ticks] = ACTIONS(6114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6114), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6114), + [anon_sym_CARET] = ACTIONS(6114), + [anon_sym_POUND] = ACTIONS(113), }, - [2213] = { - [sym_expr_unary] = STATE(3096), - [sym__expr_unary_minus] = STATE(3093), - [sym_expr_binary] = STATE(3096), - [sym__expr_binary_expression] = STATE(3116), - [sym_expr_parenthesized] = STATE(3096), - [sym__val_range] = STATE(10705), - [sym__value] = STATE(3096), - [sym_val_nothing] = STATE(3125), - [sym_val_bool] = STATE(2990), - [sym_val_variable] = STATE(3125), - [sym__var] = STATE(2692), - [sym_val_number] = STATE(3125), - [sym__val_number_decimal] = STATE(1567), - [sym__val_number] = STATE(3113), - [sym_val_duration] = STATE(3125), - [sym_val_filesize] = STATE(3125), - [sym_val_binary] = STATE(3125), - [sym_val_string] = STATE(3125), - [sym__str_double_quotes] = STATE(3110), - [sym_val_interpolated] = STATE(3125), - [sym__inter_single_quotes] = STATE(3069), - [sym__inter_double_quotes] = STATE(3071), - [sym_val_list] = STATE(3125), - [sym_val_record] = STATE(3125), - [sym_val_table] = STATE(3125), - [sym_val_closure] = STATE(3125), - [sym_unquoted] = STATE(3098), - [sym__unquoted_anonymous_prefix] = STATE(11116), - [sym_comment] = STATE(2213), - [anon_sym_LBRACK] = ACTIONS(4097), - [anon_sym_LPAREN] = ACTIONS(5875), - [anon_sym_DOLLAR] = ACTIONS(5877), - [anon_sym_DASH] = ACTIONS(4103), - [anon_sym_LBRACE] = ACTIONS(4105), - [anon_sym_DOT_DOT] = ACTIONS(5879), - [anon_sym_not] = ACTIONS(4109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5881), - [anon_sym_DOT_DOT_LT] = ACTIONS(5881), - [anon_sym_null] = ACTIONS(4113), - [anon_sym_true] = ACTIONS(4115), - [anon_sym_false] = ACTIONS(4115), - [aux_sym__val_number_decimal_token1] = ACTIONS(4117), - [aux_sym__val_number_decimal_token2] = ACTIONS(4119), - [anon_sym_DOT2] = ACTIONS(5883), - [aux_sym__val_number_decimal_token3] = ACTIONS(4123), - [aux_sym__val_number_token1] = ACTIONS(4125), - [aux_sym__val_number_token2] = ACTIONS(4125), - [aux_sym__val_number_token3] = ACTIONS(4125), - [aux_sym__val_number_token4] = ACTIONS(5885), - [aux_sym__val_number_token5] = ACTIONS(5885), - [aux_sym__val_number_token6] = ACTIONS(5885), - [anon_sym_0b] = ACTIONS(4129), - [anon_sym_0o] = ACTIONS(4131), - [anon_sym_0x] = ACTIONS(4131), - [sym_val_date] = ACTIONS(4133), - [anon_sym_DQUOTE] = ACTIONS(4135), - [sym__str_single_quotes] = ACTIONS(4137), - [sym__str_back_ticks] = ACTIONS(4137), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4139), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4141), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5887), - [anon_sym_POUND] = ACTIONS(3), + [2487] = { + [sym_comment] = STATE(2487), + [ts_builtin_sym_end] = ACTIONS(6241), + [anon_sym_export] = ACTIONS(6239), + [anon_sym_alias] = ACTIONS(6239), + [anon_sym_let] = ACTIONS(6239), + [anon_sym_let_DASHenv] = ACTIONS(6239), + [anon_sym_mut] = ACTIONS(6239), + [anon_sym_const] = ACTIONS(6239), + [anon_sym_SEMI] = ACTIONS(6239), + [sym_cmd_identifier] = ACTIONS(6239), + [anon_sym_LF] = ACTIONS(6241), + [anon_sym_def] = ACTIONS(6239), + [anon_sym_export_DASHenv] = ACTIONS(6239), + [anon_sym_extern] = ACTIONS(6239), + [anon_sym_module] = ACTIONS(6239), + [anon_sym_use] = ACTIONS(6239), + [anon_sym_LBRACK] = ACTIONS(6239), + [anon_sym_LPAREN] = ACTIONS(6239), + [anon_sym_DOLLAR] = ACTIONS(6239), + [anon_sym_error] = ACTIONS(6239), + [anon_sym_DASH] = ACTIONS(6239), + [anon_sym_break] = ACTIONS(6239), + [anon_sym_continue] = ACTIONS(6239), + [anon_sym_for] = ACTIONS(6239), + [anon_sym_loop] = ACTIONS(6239), + [anon_sym_while] = ACTIONS(6239), + [anon_sym_do] = ACTIONS(6239), + [anon_sym_if] = ACTIONS(6239), + [anon_sym_match] = ACTIONS(6239), + [anon_sym_LBRACE] = ACTIONS(6239), + [anon_sym_DOT_DOT] = ACTIONS(6239), + [anon_sym_try] = ACTIONS(6239), + [anon_sym_return] = ACTIONS(6239), + [anon_sym_source] = ACTIONS(6239), + [anon_sym_source_DASHenv] = ACTIONS(6239), + [anon_sym_register] = ACTIONS(6239), + [anon_sym_hide] = ACTIONS(6239), + [anon_sym_hide_DASHenv] = ACTIONS(6239), + [anon_sym_overlay] = ACTIONS(6239), + [anon_sym_where] = ACTIONS(6239), + [anon_sym_not] = ACTIONS(6239), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6239), + [anon_sym_DOT_DOT_LT] = ACTIONS(6239), + [anon_sym_null] = ACTIONS(6239), + [anon_sym_true] = ACTIONS(6239), + [anon_sym_false] = ACTIONS(6239), + [aux_sym__val_number_decimal_token1] = ACTIONS(6239), + [aux_sym__val_number_decimal_token2] = ACTIONS(6239), + [anon_sym_DOT2] = ACTIONS(6239), + [aux_sym__val_number_decimal_token3] = ACTIONS(6239), + [aux_sym__val_number_token1] = ACTIONS(6239), + [aux_sym__val_number_token2] = ACTIONS(6239), + [aux_sym__val_number_token3] = ACTIONS(6239), + [aux_sym__val_number_token4] = ACTIONS(6239), + [aux_sym__val_number_token5] = ACTIONS(6239), + [aux_sym__val_number_token6] = ACTIONS(6239), + [anon_sym_0b] = ACTIONS(6239), + [anon_sym_0o] = ACTIONS(6239), + [anon_sym_0x] = ACTIONS(6239), + [sym_val_date] = ACTIONS(6239), + [anon_sym_DQUOTE] = ACTIONS(6239), + [sym__str_single_quotes] = ACTIONS(6239), + [sym__str_back_ticks] = ACTIONS(6239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6239), + [anon_sym_CARET] = ACTIONS(6239), + [anon_sym_POUND] = ACTIONS(113), }, - [2214] = { - [sym_expr_unary] = STATE(3096), - [sym__expr_unary_minus] = STATE(3093), - [sym_expr_binary] = STATE(3096), - [sym__expr_binary_expression] = STATE(3117), - [sym_expr_parenthesized] = STATE(3096), - [sym__val_range] = STATE(10705), - [sym__value] = STATE(3096), - [sym_val_nothing] = STATE(3125), - [sym_val_bool] = STATE(2990), - [sym_val_variable] = STATE(3125), - [sym__var] = STATE(2692), - [sym_val_number] = STATE(3125), - [sym__val_number_decimal] = STATE(1567), - [sym__val_number] = STATE(3113), - [sym_val_duration] = STATE(3125), - [sym_val_filesize] = STATE(3125), - [sym_val_binary] = STATE(3125), - [sym_val_string] = STATE(3125), - [sym__str_double_quotes] = STATE(3110), - [sym_val_interpolated] = STATE(3125), - [sym__inter_single_quotes] = STATE(3069), - [sym__inter_double_quotes] = STATE(3071), - [sym_val_list] = STATE(3125), - [sym_val_record] = STATE(3125), - [sym_val_table] = STATE(3125), - [sym_val_closure] = STATE(3125), - [sym_unquoted] = STATE(3099), - [sym__unquoted_anonymous_prefix] = STATE(11116), - [sym_comment] = STATE(2214), - [anon_sym_LBRACK] = ACTIONS(4097), - [anon_sym_LPAREN] = ACTIONS(5875), - [anon_sym_DOLLAR] = ACTIONS(5877), - [anon_sym_DASH] = ACTIONS(4103), - [anon_sym_LBRACE] = ACTIONS(4105), - [anon_sym_DOT_DOT] = ACTIONS(5879), - [anon_sym_not] = ACTIONS(4109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5881), - [anon_sym_DOT_DOT_LT] = ACTIONS(5881), - [anon_sym_null] = ACTIONS(4113), - [anon_sym_true] = ACTIONS(4115), - [anon_sym_false] = ACTIONS(4115), - [aux_sym__val_number_decimal_token1] = ACTIONS(4117), - [aux_sym__val_number_decimal_token2] = ACTIONS(4119), - [anon_sym_DOT2] = ACTIONS(5883), - [aux_sym__val_number_decimal_token3] = ACTIONS(4123), - [aux_sym__val_number_token1] = ACTIONS(4125), - [aux_sym__val_number_token2] = ACTIONS(4125), - [aux_sym__val_number_token3] = ACTIONS(4125), - [aux_sym__val_number_token4] = ACTIONS(5885), - [aux_sym__val_number_token5] = ACTIONS(5885), - [aux_sym__val_number_token6] = ACTIONS(5885), - [anon_sym_0b] = ACTIONS(4129), - [anon_sym_0o] = ACTIONS(4131), - [anon_sym_0x] = ACTIONS(4131), - [sym_val_date] = ACTIONS(4133), - [anon_sym_DQUOTE] = ACTIONS(4135), - [sym__str_single_quotes] = ACTIONS(4137), - [sym__str_back_ticks] = ACTIONS(4137), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4139), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4141), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5887), + [2488] = { + [sym_comment] = STATE(2488), + [anon_sym_LBRACK] = ACTIONS(895), + [anon_sym_LPAREN] = ACTIONS(895), + [anon_sym_DOLLAR] = ACTIONS(893), + [anon_sym_GT] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_in] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(895), + [anon_sym_DOT_DOT] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(893), + [anon_sym_STAR_STAR] = ACTIONS(895), + [anon_sym_PLUS_PLUS] = ACTIONS(895), + [anon_sym_SLASH] = ACTIONS(893), + [anon_sym_mod] = ACTIONS(895), + [anon_sym_SLASH_SLASH] = ACTIONS(895), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_bit_DASHshl] = ACTIONS(895), + [anon_sym_bit_DASHshr] = ACTIONS(895), + [anon_sym_EQ_EQ] = ACTIONS(895), + [anon_sym_BANG_EQ] = ACTIONS(895), + [anon_sym_LT2] = ACTIONS(893), + [anon_sym_LT_EQ] = ACTIONS(895), + [anon_sym_GT_EQ] = ACTIONS(895), + [anon_sym_not_DASHin] = ACTIONS(895), + [anon_sym_starts_DASHwith] = ACTIONS(895), + [anon_sym_ends_DASHwith] = ACTIONS(895), + [anon_sym_EQ_TILDE] = ACTIONS(895), + [anon_sym_BANG_TILDE] = ACTIONS(895), + [anon_sym_bit_DASHand] = ACTIONS(895), + [anon_sym_bit_DASHxor] = ACTIONS(895), + [anon_sym_bit_DASHor] = ACTIONS(895), + [anon_sym_and] = ACTIONS(895), + [anon_sym_xor] = ACTIONS(895), + [anon_sym_or] = ACTIONS(895), + [anon_sym_not] = ACTIONS(893), + [anon_sym_DOT_DOT2] = ACTIONS(893), + [anon_sym_DOT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ] = ACTIONS(893), + [anon_sym_DOT_DOT_LT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), + [anon_sym_DOT_DOT_LT2] = ACTIONS(895), + [anon_sym_null] = ACTIONS(895), + [anon_sym_true] = ACTIONS(895), + [anon_sym_false] = ACTIONS(895), + [aux_sym__val_number_decimal_token1] = ACTIONS(893), + [aux_sym__val_number_decimal_token2] = ACTIONS(895), + [anon_sym_DOT2] = ACTIONS(893), + [aux_sym__val_number_decimal_token3] = ACTIONS(895), + [aux_sym__val_number_token1] = ACTIONS(895), + [aux_sym__val_number_token2] = ACTIONS(895), + [aux_sym__val_number_token3] = ACTIONS(895), + [aux_sym__val_number_token4] = ACTIONS(895), + [aux_sym__val_number_token5] = ACTIONS(895), + [aux_sym__val_number_token6] = ACTIONS(895), + [anon_sym_0b] = ACTIONS(893), + [sym_filesize_unit] = ACTIONS(893), + [sym_duration_unit] = ACTIONS(895), + [anon_sym_0o] = ACTIONS(893), + [anon_sym_0x] = ACTIONS(893), + [sym_val_date] = ACTIONS(895), + [anon_sym_DQUOTE] = ACTIONS(895), + [sym__str_single_quotes] = ACTIONS(895), + [sym__str_back_ticks] = ACTIONS(895), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(895), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(895), + [aux_sym_unquoted_token5] = ACTIONS(893), [anon_sym_POUND] = ACTIONS(3), }, - [2215] = { - [sym_expr_unary] = STATE(3096), - [sym__expr_unary_minus] = STATE(3093), - [sym_expr_binary] = STATE(3096), - [sym__expr_binary_expression] = STATE(3118), - [sym_expr_parenthesized] = STATE(3096), - [sym__val_range] = STATE(10705), - [sym__value] = STATE(3096), - [sym_val_nothing] = STATE(3125), - [sym_val_bool] = STATE(2990), - [sym_val_variable] = STATE(3125), - [sym__var] = STATE(2692), - [sym_val_number] = STATE(3125), - [sym__val_number_decimal] = STATE(1567), - [sym__val_number] = STATE(3113), - [sym_val_duration] = STATE(3125), - [sym_val_filesize] = STATE(3125), - [sym_val_binary] = STATE(3125), - [sym_val_string] = STATE(3125), - [sym__str_double_quotes] = STATE(3110), - [sym_val_interpolated] = STATE(3125), - [sym__inter_single_quotes] = STATE(3069), - [sym__inter_double_quotes] = STATE(3071), - [sym_val_list] = STATE(3125), - [sym_val_record] = STATE(3125), - [sym_val_table] = STATE(3125), - [sym_val_closure] = STATE(3125), - [sym_unquoted] = STATE(3100), - [sym__unquoted_anonymous_prefix] = STATE(11116), - [sym_comment] = STATE(2215), - [anon_sym_LBRACK] = ACTIONS(4097), - [anon_sym_LPAREN] = ACTIONS(5875), - [anon_sym_DOLLAR] = ACTIONS(5877), - [anon_sym_DASH] = ACTIONS(4103), - [anon_sym_LBRACE] = ACTIONS(4105), - [anon_sym_DOT_DOT] = ACTIONS(5879), - [anon_sym_not] = ACTIONS(4109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5881), - [anon_sym_DOT_DOT_LT] = ACTIONS(5881), - [anon_sym_null] = ACTIONS(4113), - [anon_sym_true] = ACTIONS(4115), - [anon_sym_false] = ACTIONS(4115), - [aux_sym__val_number_decimal_token1] = ACTIONS(4117), - [aux_sym__val_number_decimal_token2] = ACTIONS(4119), - [anon_sym_DOT2] = ACTIONS(5883), - [aux_sym__val_number_decimal_token3] = ACTIONS(4123), - [aux_sym__val_number_token1] = ACTIONS(4125), - [aux_sym__val_number_token2] = ACTIONS(4125), - [aux_sym__val_number_token3] = ACTIONS(4125), - [aux_sym__val_number_token4] = ACTIONS(5885), - [aux_sym__val_number_token5] = ACTIONS(5885), - [aux_sym__val_number_token6] = ACTIONS(5885), - [anon_sym_0b] = ACTIONS(4129), - [anon_sym_0o] = ACTIONS(4131), - [anon_sym_0x] = ACTIONS(4131), - [sym_val_date] = ACTIONS(4133), - [anon_sym_DQUOTE] = ACTIONS(4135), - [sym__str_single_quotes] = ACTIONS(4137), - [sym__str_back_ticks] = ACTIONS(4137), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4139), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4141), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5887), + [2489] = { + [sym_comment] = STATE(2489), + [anon_sym_LBRACK] = ACTIONS(903), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_DOLLAR] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_in] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(903), + [anon_sym_DOT_DOT] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_STAR_STAR] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_mod] = ACTIONS(903), + [anon_sym_SLASH_SLASH] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_bit_DASHshl] = ACTIONS(903), + [anon_sym_bit_DASHshr] = ACTIONS(903), + [anon_sym_EQ_EQ] = ACTIONS(903), + [anon_sym_BANG_EQ] = ACTIONS(903), + [anon_sym_LT2] = ACTIONS(901), + [anon_sym_LT_EQ] = ACTIONS(903), + [anon_sym_GT_EQ] = ACTIONS(903), + [anon_sym_not_DASHin] = ACTIONS(903), + [anon_sym_starts_DASHwith] = ACTIONS(903), + [anon_sym_ends_DASHwith] = ACTIONS(903), + [anon_sym_EQ_TILDE] = ACTIONS(903), + [anon_sym_BANG_TILDE] = ACTIONS(903), + [anon_sym_bit_DASHand] = ACTIONS(903), + [anon_sym_bit_DASHxor] = ACTIONS(903), + [anon_sym_bit_DASHor] = ACTIONS(903), + [anon_sym_and] = ACTIONS(903), + [anon_sym_xor] = ACTIONS(903), + [anon_sym_or] = ACTIONS(903), + [anon_sym_not] = ACTIONS(901), + [anon_sym_DOT_DOT2] = ACTIONS(901), + [anon_sym_DOT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ] = ACTIONS(901), + [anon_sym_DOT_DOT_LT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(903), + [anon_sym_DOT_DOT_LT2] = ACTIONS(903), + [anon_sym_null] = ACTIONS(903), + [anon_sym_true] = ACTIONS(903), + [anon_sym_false] = ACTIONS(903), + [aux_sym__val_number_decimal_token1] = ACTIONS(901), + [aux_sym__val_number_decimal_token2] = ACTIONS(903), + [anon_sym_DOT2] = ACTIONS(901), + [aux_sym__val_number_decimal_token3] = ACTIONS(903), + [aux_sym__val_number_token1] = ACTIONS(903), + [aux_sym__val_number_token2] = ACTIONS(903), + [aux_sym__val_number_token3] = ACTIONS(903), + [aux_sym__val_number_token4] = ACTIONS(903), + [aux_sym__val_number_token5] = ACTIONS(903), + [aux_sym__val_number_token6] = ACTIONS(903), + [anon_sym_0b] = ACTIONS(901), + [sym_filesize_unit] = ACTIONS(901), + [sym_duration_unit] = ACTIONS(903), + [anon_sym_0o] = ACTIONS(901), + [anon_sym_0x] = ACTIONS(901), + [sym_val_date] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(903), + [sym__str_single_quotes] = ACTIONS(903), + [sym__str_back_ticks] = ACTIONS(903), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(903), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(903), + [aux_sym_unquoted_token5] = ACTIONS(901), [anon_sym_POUND] = ACTIONS(3), }, - [2216] = { - [sym_expr_unary] = STATE(3096), - [sym__expr_unary_minus] = STATE(3093), - [sym_expr_binary] = STATE(3096), - [sym__expr_binary_expression] = STATE(3119), - [sym_expr_parenthesized] = STATE(3096), - [sym__val_range] = STATE(10705), - [sym__value] = STATE(3096), - [sym_val_nothing] = STATE(3125), - [sym_val_bool] = STATE(2990), - [sym_val_variable] = STATE(3125), - [sym__var] = STATE(2692), - [sym_val_number] = STATE(3125), - [sym__val_number_decimal] = STATE(1567), - [sym__val_number] = STATE(3113), - [sym_val_duration] = STATE(3125), - [sym_val_filesize] = STATE(3125), - [sym_val_binary] = STATE(3125), - [sym_val_string] = STATE(3125), - [sym__str_double_quotes] = STATE(3110), - [sym_val_interpolated] = STATE(3125), - [sym__inter_single_quotes] = STATE(3069), - [sym__inter_double_quotes] = STATE(3071), - [sym_val_list] = STATE(3125), - [sym_val_record] = STATE(3125), - [sym_val_table] = STATE(3125), - [sym_val_closure] = STATE(3125), - [sym_unquoted] = STATE(3101), - [sym__unquoted_anonymous_prefix] = STATE(11116), - [sym_comment] = STATE(2216), - [anon_sym_LBRACK] = ACTIONS(4097), - [anon_sym_LPAREN] = ACTIONS(5875), - [anon_sym_DOLLAR] = ACTIONS(5877), - [anon_sym_DASH] = ACTIONS(4103), - [anon_sym_LBRACE] = ACTIONS(4105), - [anon_sym_DOT_DOT] = ACTIONS(5879), - [anon_sym_not] = ACTIONS(4109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5881), - [anon_sym_DOT_DOT_LT] = ACTIONS(5881), - [anon_sym_null] = ACTIONS(4113), - [anon_sym_true] = ACTIONS(4115), - [anon_sym_false] = ACTIONS(4115), - [aux_sym__val_number_decimal_token1] = ACTIONS(4117), - [aux_sym__val_number_decimal_token2] = ACTIONS(4119), - [anon_sym_DOT2] = ACTIONS(5883), - [aux_sym__val_number_decimal_token3] = ACTIONS(4123), - [aux_sym__val_number_token1] = ACTIONS(4125), - [aux_sym__val_number_token2] = ACTIONS(4125), - [aux_sym__val_number_token3] = ACTIONS(4125), - [aux_sym__val_number_token4] = ACTIONS(5885), - [aux_sym__val_number_token5] = ACTIONS(5885), - [aux_sym__val_number_token6] = ACTIONS(5885), - [anon_sym_0b] = ACTIONS(4129), - [anon_sym_0o] = ACTIONS(4131), - [anon_sym_0x] = ACTIONS(4131), - [sym_val_date] = ACTIONS(4133), - [anon_sym_DQUOTE] = ACTIONS(4135), - [sym__str_single_quotes] = ACTIONS(4137), - [sym__str_back_ticks] = ACTIONS(4137), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4139), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4141), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5887), - [anon_sym_POUND] = ACTIONS(3), - }, - [2217] = { - [sym_expr_unary] = STATE(3096), - [sym__expr_unary_minus] = STATE(3093), - [sym_expr_binary] = STATE(3096), - [sym__expr_binary_expression] = STATE(3120), - [sym_expr_parenthesized] = STATE(3096), - [sym__val_range] = STATE(10705), - [sym__value] = STATE(3096), - [sym_val_nothing] = STATE(3125), - [sym_val_bool] = STATE(2990), - [sym_val_variable] = STATE(3125), - [sym__var] = STATE(2692), - [sym_val_number] = STATE(3125), - [sym__val_number_decimal] = STATE(1567), - [sym__val_number] = STATE(3113), - [sym_val_duration] = STATE(3125), - [sym_val_filesize] = STATE(3125), - [sym_val_binary] = STATE(3125), - [sym_val_string] = STATE(3125), - [sym__str_double_quotes] = STATE(3110), - [sym_val_interpolated] = STATE(3125), - [sym__inter_single_quotes] = STATE(3069), - [sym__inter_double_quotes] = STATE(3071), - [sym_val_list] = STATE(3125), - [sym_val_record] = STATE(3125), - [sym_val_table] = STATE(3125), - [sym_val_closure] = STATE(3125), - [sym_unquoted] = STATE(3102), - [sym__unquoted_anonymous_prefix] = STATE(11116), - [sym_comment] = STATE(2217), - [anon_sym_LBRACK] = ACTIONS(4097), - [anon_sym_LPAREN] = ACTIONS(5875), - [anon_sym_DOLLAR] = ACTIONS(5877), - [anon_sym_DASH] = ACTIONS(4103), - [anon_sym_LBRACE] = ACTIONS(4105), - [anon_sym_DOT_DOT] = ACTIONS(5879), - [anon_sym_not] = ACTIONS(4109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5881), - [anon_sym_DOT_DOT_LT] = ACTIONS(5881), - [anon_sym_null] = ACTIONS(4113), - [anon_sym_true] = ACTIONS(4115), - [anon_sym_false] = ACTIONS(4115), - [aux_sym__val_number_decimal_token1] = ACTIONS(4117), - [aux_sym__val_number_decimal_token2] = ACTIONS(4119), - [anon_sym_DOT2] = ACTIONS(5883), - [aux_sym__val_number_decimal_token3] = ACTIONS(4123), - [aux_sym__val_number_token1] = ACTIONS(4125), - [aux_sym__val_number_token2] = ACTIONS(4125), - [aux_sym__val_number_token3] = ACTIONS(4125), - [aux_sym__val_number_token4] = ACTIONS(5885), - [aux_sym__val_number_token5] = ACTIONS(5885), - [aux_sym__val_number_token6] = ACTIONS(5885), - [anon_sym_0b] = ACTIONS(4129), - [anon_sym_0o] = ACTIONS(4131), - [anon_sym_0x] = ACTIONS(4131), - [sym_val_date] = ACTIONS(4133), - [anon_sym_DQUOTE] = ACTIONS(4135), - [sym__str_single_quotes] = ACTIONS(4137), - [sym__str_back_ticks] = ACTIONS(4137), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4139), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4141), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5887), - [anon_sym_POUND] = ACTIONS(3), - }, - [2218] = { - [sym_expr_unary] = STATE(3096), - [sym__expr_unary_minus] = STATE(3093), - [sym_expr_binary] = STATE(3096), - [sym__expr_binary_expression] = STATE(3121), - [sym_expr_parenthesized] = STATE(3096), - [sym__val_range] = STATE(10705), - [sym__value] = STATE(3096), - [sym_val_nothing] = STATE(3125), - [sym_val_bool] = STATE(2990), - [sym_val_variable] = STATE(3125), - [sym__var] = STATE(2692), - [sym_val_number] = STATE(3125), - [sym__val_number_decimal] = STATE(1567), - [sym__val_number] = STATE(3113), - [sym_val_duration] = STATE(3125), - [sym_val_filesize] = STATE(3125), - [sym_val_binary] = STATE(3125), - [sym_val_string] = STATE(3125), - [sym__str_double_quotes] = STATE(3110), - [sym_val_interpolated] = STATE(3125), - [sym__inter_single_quotes] = STATE(3069), - [sym__inter_double_quotes] = STATE(3071), - [sym_val_list] = STATE(3125), - [sym_val_record] = STATE(3125), - [sym_val_table] = STATE(3125), - [sym_val_closure] = STATE(3125), - [sym_unquoted] = STATE(3103), - [sym__unquoted_anonymous_prefix] = STATE(11116), - [sym_comment] = STATE(2218), - [anon_sym_LBRACK] = ACTIONS(4097), - [anon_sym_LPAREN] = ACTIONS(5875), - [anon_sym_DOLLAR] = ACTIONS(5877), - [anon_sym_DASH] = ACTIONS(4103), - [anon_sym_LBRACE] = ACTIONS(4105), - [anon_sym_DOT_DOT] = ACTIONS(5879), - [anon_sym_not] = ACTIONS(4109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5881), - [anon_sym_DOT_DOT_LT] = ACTIONS(5881), - [anon_sym_null] = ACTIONS(4113), - [anon_sym_true] = ACTIONS(4115), - [anon_sym_false] = ACTIONS(4115), - [aux_sym__val_number_decimal_token1] = ACTIONS(4117), - [aux_sym__val_number_decimal_token2] = ACTIONS(4119), - [anon_sym_DOT2] = ACTIONS(5883), - [aux_sym__val_number_decimal_token3] = ACTIONS(4123), - [aux_sym__val_number_token1] = ACTIONS(4125), - [aux_sym__val_number_token2] = ACTIONS(4125), - [aux_sym__val_number_token3] = ACTIONS(4125), - [aux_sym__val_number_token4] = ACTIONS(5885), - [aux_sym__val_number_token5] = ACTIONS(5885), - [aux_sym__val_number_token6] = ACTIONS(5885), - [anon_sym_0b] = ACTIONS(4129), - [anon_sym_0o] = ACTIONS(4131), - [anon_sym_0x] = ACTIONS(4131), - [sym_val_date] = ACTIONS(4133), - [anon_sym_DQUOTE] = ACTIONS(4135), - [sym__str_single_quotes] = ACTIONS(4137), - [sym__str_back_ticks] = ACTIONS(4137), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4139), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4141), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5887), - [anon_sym_POUND] = ACTIONS(3), - }, - [2219] = { - [sym_expr_unary] = STATE(3096), - [sym__expr_unary_minus] = STATE(3093), - [sym_expr_binary] = STATE(3096), - [sym__expr_binary_expression] = STATE(3065), - [sym_expr_parenthesized] = STATE(3096), - [sym__val_range] = STATE(10705), - [sym__value] = STATE(3096), - [sym_val_nothing] = STATE(3125), - [sym_val_bool] = STATE(2990), - [sym_val_variable] = STATE(3125), - [sym__var] = STATE(2692), - [sym_val_number] = STATE(3125), - [sym__val_number_decimal] = STATE(1567), - [sym__val_number] = STATE(3113), - [sym_val_duration] = STATE(3125), - [sym_val_filesize] = STATE(3125), - [sym_val_binary] = STATE(3125), - [sym_val_string] = STATE(3125), - [sym__str_double_quotes] = STATE(3110), - [sym_val_interpolated] = STATE(3125), - [sym__inter_single_quotes] = STATE(3069), - [sym__inter_double_quotes] = STATE(3071), - [sym_val_list] = STATE(3125), - [sym_val_record] = STATE(3125), - [sym_val_table] = STATE(3125), - [sym_val_closure] = STATE(3125), - [sym_unquoted] = STATE(3104), - [sym__unquoted_anonymous_prefix] = STATE(11116), - [sym_comment] = STATE(2219), - [anon_sym_LBRACK] = ACTIONS(4097), - [anon_sym_LPAREN] = ACTIONS(5875), - [anon_sym_DOLLAR] = ACTIONS(5877), - [anon_sym_DASH] = ACTIONS(4103), - [anon_sym_LBRACE] = ACTIONS(4105), - [anon_sym_DOT_DOT] = ACTIONS(5879), - [anon_sym_not] = ACTIONS(4109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5881), - [anon_sym_DOT_DOT_LT] = ACTIONS(5881), - [anon_sym_null] = ACTIONS(4113), - [anon_sym_true] = ACTIONS(4115), - [anon_sym_false] = ACTIONS(4115), - [aux_sym__val_number_decimal_token1] = ACTIONS(4117), - [aux_sym__val_number_decimal_token2] = ACTIONS(4119), - [anon_sym_DOT2] = ACTIONS(5883), - [aux_sym__val_number_decimal_token3] = ACTIONS(4123), - [aux_sym__val_number_token1] = ACTIONS(4125), - [aux_sym__val_number_token2] = ACTIONS(4125), - [aux_sym__val_number_token3] = ACTIONS(4125), - [aux_sym__val_number_token4] = ACTIONS(5885), - [aux_sym__val_number_token5] = ACTIONS(5885), - [aux_sym__val_number_token6] = ACTIONS(5885), - [anon_sym_0b] = ACTIONS(4129), - [anon_sym_0o] = ACTIONS(4131), - [anon_sym_0x] = ACTIONS(4131), - [sym_val_date] = ACTIONS(4133), - [anon_sym_DQUOTE] = ACTIONS(4135), - [sym__str_single_quotes] = ACTIONS(4137), - [sym__str_back_ticks] = ACTIONS(4137), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4139), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4141), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5887), + [2490] = { + [sym_comment] = STATE(2490), + [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_DOLLAR] = ACTIONS(934), + [anon_sym_GT] = ACTIONS(934), + [anon_sym_DASH] = ACTIONS(934), + [anon_sym_in] = ACTIONS(934), + [anon_sym_LBRACE] = ACTIONS(936), + [anon_sym_DOT_DOT] = ACTIONS(934), + [anon_sym_STAR] = ACTIONS(934), + [anon_sym_STAR_STAR] = ACTIONS(936), + [anon_sym_PLUS_PLUS] = ACTIONS(936), + [anon_sym_SLASH] = ACTIONS(934), + [anon_sym_mod] = ACTIONS(936), + [anon_sym_SLASH_SLASH] = ACTIONS(936), + [anon_sym_PLUS] = ACTIONS(934), + [anon_sym_bit_DASHshl] = ACTIONS(936), + [anon_sym_bit_DASHshr] = ACTIONS(936), + [anon_sym_EQ_EQ] = ACTIONS(936), + [anon_sym_BANG_EQ] = ACTIONS(936), + [anon_sym_LT2] = ACTIONS(934), + [anon_sym_LT_EQ] = ACTIONS(936), + [anon_sym_GT_EQ] = ACTIONS(936), + [anon_sym_not_DASHin] = ACTIONS(936), + [anon_sym_starts_DASHwith] = ACTIONS(936), + [anon_sym_ends_DASHwith] = ACTIONS(936), + [anon_sym_EQ_TILDE] = ACTIONS(936), + [anon_sym_BANG_TILDE] = ACTIONS(936), + [anon_sym_bit_DASHand] = ACTIONS(936), + [anon_sym_bit_DASHxor] = ACTIONS(936), + [anon_sym_bit_DASHor] = ACTIONS(936), + [anon_sym_and] = ACTIONS(936), + [anon_sym_xor] = ACTIONS(936), + [anon_sym_or] = ACTIONS(936), + [anon_sym_not] = ACTIONS(934), + [anon_sym_DOT_DOT2] = ACTIONS(934), + [anon_sym_DOT] = ACTIONS(934), + [anon_sym_DOT_DOT_EQ] = ACTIONS(934), + [anon_sym_DOT_DOT_LT] = ACTIONS(934), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(936), + [anon_sym_DOT_DOT_LT2] = ACTIONS(936), + [anon_sym_null] = ACTIONS(936), + [anon_sym_true] = ACTIONS(936), + [anon_sym_false] = ACTIONS(936), + [aux_sym__val_number_decimal_token1] = ACTIONS(934), + [aux_sym__val_number_decimal_token2] = ACTIONS(936), + [anon_sym_DOT2] = ACTIONS(934), + [aux_sym__val_number_decimal_token3] = ACTIONS(936), + [aux_sym__val_number_token1] = ACTIONS(936), + [aux_sym__val_number_token2] = ACTIONS(936), + [aux_sym__val_number_token3] = ACTIONS(936), + [aux_sym__val_number_token4] = ACTIONS(936), + [aux_sym__val_number_token5] = ACTIONS(936), + [aux_sym__val_number_token6] = ACTIONS(936), + [anon_sym_0b] = ACTIONS(934), + [sym_filesize_unit] = ACTIONS(934), + [sym_duration_unit] = ACTIONS(936), + [anon_sym_0o] = ACTIONS(934), + [anon_sym_0x] = ACTIONS(934), + [sym_val_date] = ACTIONS(936), + [anon_sym_DQUOTE] = ACTIONS(936), + [sym__str_single_quotes] = ACTIONS(936), + [sym__str_back_ticks] = ACTIONS(936), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), + [aux_sym_unquoted_token5] = ACTIONS(934), [anon_sym_POUND] = ACTIONS(3), }, - [2220] = { - [sym_expr_unary] = STATE(3096), - [sym__expr_unary_minus] = STATE(3093), - [sym_expr_binary] = STATE(3096), - [sym__expr_binary_expression] = STATE(3122), - [sym_expr_parenthesized] = STATE(3096), - [sym__val_range] = STATE(10705), - [sym__value] = STATE(3096), - [sym_val_nothing] = STATE(3125), - [sym_val_bool] = STATE(2990), - [sym_val_variable] = STATE(3125), - [sym__var] = STATE(2692), - [sym_val_number] = STATE(3125), - [sym__val_number_decimal] = STATE(1567), - [sym__val_number] = STATE(3113), - [sym_val_duration] = STATE(3125), - [sym_val_filesize] = STATE(3125), - [sym_val_binary] = STATE(3125), - [sym_val_string] = STATE(3125), - [sym__str_double_quotes] = STATE(3110), - [sym_val_interpolated] = STATE(3125), - [sym__inter_single_quotes] = STATE(3069), - [sym__inter_double_quotes] = STATE(3071), - [sym_val_list] = STATE(3125), - [sym_val_record] = STATE(3125), - [sym_val_table] = STATE(3125), - [sym_val_closure] = STATE(3125), - [sym_unquoted] = STATE(3105), - [sym__unquoted_anonymous_prefix] = STATE(11116), - [sym_comment] = STATE(2220), - [anon_sym_LBRACK] = ACTIONS(4097), - [anon_sym_LPAREN] = ACTIONS(5875), - [anon_sym_DOLLAR] = ACTIONS(5877), - [anon_sym_DASH] = ACTIONS(4103), - [anon_sym_LBRACE] = ACTIONS(4105), - [anon_sym_DOT_DOT] = ACTIONS(5879), - [anon_sym_not] = ACTIONS(4109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5881), - [anon_sym_DOT_DOT_LT] = ACTIONS(5881), - [anon_sym_null] = ACTIONS(4113), - [anon_sym_true] = ACTIONS(4115), - [anon_sym_false] = ACTIONS(4115), - [aux_sym__val_number_decimal_token1] = ACTIONS(4117), - [aux_sym__val_number_decimal_token2] = ACTIONS(4119), - [anon_sym_DOT2] = ACTIONS(5883), - [aux_sym__val_number_decimal_token3] = ACTIONS(4123), - [aux_sym__val_number_token1] = ACTIONS(4125), - [aux_sym__val_number_token2] = ACTIONS(4125), - [aux_sym__val_number_token3] = ACTIONS(4125), - [aux_sym__val_number_token4] = ACTIONS(5885), - [aux_sym__val_number_token5] = ACTIONS(5885), - [aux_sym__val_number_token6] = ACTIONS(5885), - [anon_sym_0b] = ACTIONS(4129), - [anon_sym_0o] = ACTIONS(4131), - [anon_sym_0x] = ACTIONS(4131), - [sym_val_date] = ACTIONS(4133), - [anon_sym_DQUOTE] = ACTIONS(4135), - [sym__str_single_quotes] = ACTIONS(4137), - [sym__str_back_ticks] = ACTIONS(4137), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4139), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4141), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5887), - [anon_sym_POUND] = ACTIONS(3), + [2491] = { + [sym_comment] = STATE(2491), + [anon_sym_export] = ACTIONS(6401), + [anon_sym_alias] = ACTIONS(6401), + [anon_sym_let] = ACTIONS(6401), + [anon_sym_let_DASHenv] = ACTIONS(6401), + [anon_sym_mut] = ACTIONS(6401), + [anon_sym_const] = ACTIONS(6401), + [anon_sym_SEMI] = ACTIONS(6403), + [sym_cmd_identifier] = ACTIONS(6401), + [anon_sym_LF] = ACTIONS(6406), + [anon_sym_def] = ACTIONS(6401), + [anon_sym_export_DASHenv] = ACTIONS(6401), + [anon_sym_extern] = ACTIONS(6401), + [anon_sym_module] = ACTIONS(6401), + [anon_sym_use] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6401), + [anon_sym_LPAREN] = ACTIONS(6401), + [anon_sym_RPAREN] = ACTIONS(6409), + [anon_sym_DOLLAR] = ACTIONS(6401), + [anon_sym_error] = ACTIONS(6401), + [anon_sym_DASH] = ACTIONS(6401), + [anon_sym_break] = ACTIONS(6401), + [anon_sym_continue] = ACTIONS(6401), + [anon_sym_for] = ACTIONS(6401), + [anon_sym_loop] = ACTIONS(6401), + [anon_sym_while] = ACTIONS(6401), + [anon_sym_do] = ACTIONS(6401), + [anon_sym_if] = ACTIONS(6401), + [anon_sym_match] = ACTIONS(6401), + [anon_sym_LBRACE] = ACTIONS(6401), + [anon_sym_DOT_DOT] = ACTIONS(6401), + [anon_sym_try] = ACTIONS(6401), + [anon_sym_return] = ACTIONS(6401), + [anon_sym_source] = ACTIONS(6401), + [anon_sym_source_DASHenv] = ACTIONS(6401), + [anon_sym_register] = ACTIONS(6401), + [anon_sym_hide] = ACTIONS(6401), + [anon_sym_hide_DASHenv] = ACTIONS(6401), + [anon_sym_overlay] = ACTIONS(6401), + [anon_sym_where] = ACTIONS(6401), + [anon_sym_not] = ACTIONS(6401), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6401), + [anon_sym_DOT_DOT_LT] = ACTIONS(6401), + [anon_sym_null] = ACTIONS(6401), + [anon_sym_true] = ACTIONS(6401), + [anon_sym_false] = ACTIONS(6401), + [aux_sym__val_number_decimal_token1] = ACTIONS(6401), + [aux_sym__val_number_decimal_token2] = ACTIONS(6401), + [anon_sym_DOT2] = ACTIONS(6401), + [aux_sym__val_number_decimal_token3] = ACTIONS(6401), + [aux_sym__val_number_token1] = ACTIONS(6401), + [aux_sym__val_number_token2] = ACTIONS(6401), + [aux_sym__val_number_token3] = ACTIONS(6401), + [aux_sym__val_number_token4] = ACTIONS(6401), + [aux_sym__val_number_token5] = ACTIONS(6401), + [aux_sym__val_number_token6] = ACTIONS(6401), + [anon_sym_0b] = ACTIONS(6401), + [anon_sym_0o] = ACTIONS(6401), + [anon_sym_0x] = ACTIONS(6401), + [sym_val_date] = ACTIONS(6401), + [anon_sym_DQUOTE] = ACTIONS(6401), + [sym__str_single_quotes] = ACTIONS(6401), + [sym__str_back_ticks] = ACTIONS(6401), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6401), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6401), + [anon_sym_CARET] = ACTIONS(6401), + [anon_sym_POUND] = ACTIONS(113), }, - [2221] = { - [sym_expr_unary] = STATE(3096), - [sym__expr_unary_minus] = STATE(3093), - [sym_expr_binary] = STATE(3096), - [sym__expr_binary_expression] = STATE(3123), - [sym_expr_parenthesized] = STATE(3096), - [sym__val_range] = STATE(10705), - [sym__value] = STATE(3096), - [sym_val_nothing] = STATE(3125), - [sym_val_bool] = STATE(2990), - [sym_val_variable] = STATE(3125), - [sym__var] = STATE(2692), - [sym_val_number] = STATE(3125), - [sym__val_number_decimal] = STATE(1567), - [sym__val_number] = STATE(3113), - [sym_val_duration] = STATE(3125), - [sym_val_filesize] = STATE(3125), - [sym_val_binary] = STATE(3125), - [sym_val_string] = STATE(3125), - [sym__str_double_quotes] = STATE(3110), - [sym_val_interpolated] = STATE(3125), - [sym__inter_single_quotes] = STATE(3069), - [sym__inter_double_quotes] = STATE(3071), - [sym_val_list] = STATE(3125), - [sym_val_record] = STATE(3125), - [sym_val_table] = STATE(3125), - [sym_val_closure] = STATE(3125), - [sym_unquoted] = STATE(3106), - [sym__unquoted_anonymous_prefix] = STATE(11116), - [sym_comment] = STATE(2221), - [anon_sym_LBRACK] = ACTIONS(4097), - [anon_sym_LPAREN] = ACTIONS(5875), - [anon_sym_DOLLAR] = ACTIONS(5877), - [anon_sym_DASH] = ACTIONS(4103), - [anon_sym_LBRACE] = ACTIONS(4105), - [anon_sym_DOT_DOT] = ACTIONS(5879), - [anon_sym_not] = ACTIONS(4109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5881), - [anon_sym_DOT_DOT_LT] = ACTIONS(5881), - [anon_sym_null] = ACTIONS(4113), - [anon_sym_true] = ACTIONS(4115), - [anon_sym_false] = ACTIONS(4115), - [aux_sym__val_number_decimal_token1] = ACTIONS(4117), - [aux_sym__val_number_decimal_token2] = ACTIONS(4119), - [anon_sym_DOT2] = ACTIONS(5883), - [aux_sym__val_number_decimal_token3] = ACTIONS(4123), - [aux_sym__val_number_token1] = ACTIONS(4125), - [aux_sym__val_number_token2] = ACTIONS(4125), - [aux_sym__val_number_token3] = ACTIONS(4125), - [aux_sym__val_number_token4] = ACTIONS(5885), - [aux_sym__val_number_token5] = ACTIONS(5885), - [aux_sym__val_number_token6] = ACTIONS(5885), - [anon_sym_0b] = ACTIONS(4129), - [anon_sym_0o] = ACTIONS(4131), - [anon_sym_0x] = ACTIONS(4131), - [sym_val_date] = ACTIONS(4133), - [anon_sym_DQUOTE] = ACTIONS(4135), - [sym__str_single_quotes] = ACTIONS(4137), - [sym__str_back_ticks] = ACTIONS(4137), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4139), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4141), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5887), - [anon_sym_POUND] = ACTIONS(3), + [2492] = { + [sym_comment] = STATE(2492), + [ts_builtin_sym_end] = ACTIONS(922), + [anon_sym_SEMI] = ACTIONS(920), + [anon_sym_LF] = ACTIONS(922), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_PIPE] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_in] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_STAR_STAR] = ACTIONS(920), + [anon_sym_PLUS_PLUS] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_mod] = ACTIONS(920), + [anon_sym_SLASH_SLASH] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_bit_DASHshl] = ACTIONS(920), + [anon_sym_bit_DASHshr] = ACTIONS(920), + [anon_sym_EQ_EQ] = ACTIONS(920), + [anon_sym_BANG_EQ] = ACTIONS(920), + [anon_sym_LT2] = ACTIONS(920), + [anon_sym_LT_EQ] = ACTIONS(920), + [anon_sym_GT_EQ] = ACTIONS(920), + [anon_sym_not_DASHin] = ACTIONS(920), + [anon_sym_starts_DASHwith] = ACTIONS(920), + [anon_sym_ends_DASHwith] = ACTIONS(920), + [anon_sym_EQ_TILDE] = ACTIONS(920), + [anon_sym_BANG_TILDE] = ACTIONS(920), + [anon_sym_bit_DASHand] = ACTIONS(920), + [anon_sym_bit_DASHxor] = ACTIONS(920), + [anon_sym_bit_DASHor] = ACTIONS(920), + [anon_sym_and] = ACTIONS(920), + [anon_sym_xor] = ACTIONS(920), + [anon_sym_or] = ACTIONS(920), + [anon_sym_not] = ACTIONS(920), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [aux_sym__immediate_decimal_token1] = ACTIONS(6411), + [anon_sym_null] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), + [aux_sym_unquoted_token2] = ACTIONS(6413), + [anon_sym_POUND] = ACTIONS(113), }, - [2222] = { - [sym_expr_unary] = STATE(3096), - [sym__expr_unary_minus] = STATE(3093), - [sym_expr_binary] = STATE(3096), - [sym__expr_binary_expression] = STATE(3124), - [sym_expr_parenthesized] = STATE(3096), - [sym__val_range] = STATE(10705), - [sym__value] = STATE(3096), - [sym_val_nothing] = STATE(3125), - [sym_val_bool] = STATE(2990), - [sym_val_variable] = STATE(3125), - [sym__var] = STATE(2692), - [sym_val_number] = STATE(3125), - [sym__val_number_decimal] = STATE(1567), - [sym__val_number] = STATE(3113), - [sym_val_duration] = STATE(3125), - [sym_val_filesize] = STATE(3125), - [sym_val_binary] = STATE(3125), - [sym_val_string] = STATE(3125), - [sym__str_double_quotes] = STATE(3110), - [sym_val_interpolated] = STATE(3125), - [sym__inter_single_quotes] = STATE(3069), - [sym__inter_double_quotes] = STATE(3071), - [sym_val_list] = STATE(3125), - [sym_val_record] = STATE(3125), - [sym_val_table] = STATE(3125), - [sym_val_closure] = STATE(3125), - [sym_unquoted] = STATE(3107), - [sym__unquoted_anonymous_prefix] = STATE(11116), - [sym_comment] = STATE(2222), - [anon_sym_LBRACK] = ACTIONS(4097), - [anon_sym_LPAREN] = ACTIONS(5875), - [anon_sym_DOLLAR] = ACTIONS(5877), - [anon_sym_DASH] = ACTIONS(4103), - [anon_sym_LBRACE] = ACTIONS(4105), - [anon_sym_DOT_DOT] = ACTIONS(5879), - [anon_sym_not] = ACTIONS(4109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5881), - [anon_sym_DOT_DOT_LT] = ACTIONS(5881), - [anon_sym_null] = ACTIONS(4113), - [anon_sym_true] = ACTIONS(4115), - [anon_sym_false] = ACTIONS(4115), - [aux_sym__val_number_decimal_token1] = ACTIONS(4117), - [aux_sym__val_number_decimal_token2] = ACTIONS(4119), - [anon_sym_DOT2] = ACTIONS(5883), - [aux_sym__val_number_decimal_token3] = ACTIONS(4123), - [aux_sym__val_number_token1] = ACTIONS(4125), - [aux_sym__val_number_token2] = ACTIONS(4125), - [aux_sym__val_number_token3] = ACTIONS(4125), - [aux_sym__val_number_token4] = ACTIONS(5885), - [aux_sym__val_number_token5] = ACTIONS(5885), - [aux_sym__val_number_token6] = ACTIONS(5885), - [anon_sym_0b] = ACTIONS(4129), - [anon_sym_0o] = ACTIONS(4131), - [anon_sym_0x] = ACTIONS(4131), - [sym_val_date] = ACTIONS(4133), - [anon_sym_DQUOTE] = ACTIONS(4135), - [sym__str_single_quotes] = ACTIONS(4137), - [sym__str_back_ticks] = ACTIONS(4137), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4139), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4141), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5887), - [anon_sym_POUND] = ACTIONS(3), + [2493] = { + [sym_comment] = STATE(2493), + [ts_builtin_sym_end] = ACTIONS(1035), + [anon_sym_SEMI] = ACTIONS(1033), + [anon_sym_LF] = ACTIONS(1035), + [anon_sym_LBRACK] = ACTIONS(1033), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_PIPE] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1033), + [anon_sym_in] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_DOT_DOT] = ACTIONS(1033), + [anon_sym_STAR] = ACTIONS(1033), + [anon_sym_QMARK2] = ACTIONS(1033), + [anon_sym_STAR_STAR] = ACTIONS(1033), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_SLASH] = ACTIONS(1033), + [anon_sym_mod] = ACTIONS(1033), + [anon_sym_SLASH_SLASH] = ACTIONS(1033), + [anon_sym_PLUS] = ACTIONS(1033), + [anon_sym_bit_DASHshl] = ACTIONS(1033), + [anon_sym_bit_DASHshr] = ACTIONS(1033), + [anon_sym_EQ_EQ] = ACTIONS(1033), + [anon_sym_BANG_EQ] = ACTIONS(1033), + [anon_sym_LT2] = ACTIONS(1033), + [anon_sym_LT_EQ] = ACTIONS(1033), + [anon_sym_GT_EQ] = ACTIONS(1033), + [anon_sym_not_DASHin] = ACTIONS(1033), + [anon_sym_starts_DASHwith] = ACTIONS(1033), + [anon_sym_ends_DASHwith] = ACTIONS(1033), + [anon_sym_EQ_TILDE] = ACTIONS(1033), + [anon_sym_BANG_TILDE] = ACTIONS(1033), + [anon_sym_bit_DASHand] = ACTIONS(1033), + [anon_sym_bit_DASHxor] = ACTIONS(1033), + [anon_sym_bit_DASHor] = ACTIONS(1033), + [anon_sym_and] = ACTIONS(1033), + [anon_sym_xor] = ACTIONS(1033), + [anon_sym_or] = ACTIONS(1033), + [anon_sym_not] = ACTIONS(1033), + [anon_sym_DOT] = ACTIONS(1033), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1033), + [anon_sym_DOT_DOT_LT] = ACTIONS(1033), + [anon_sym_null] = ACTIONS(1033), + [anon_sym_true] = ACTIONS(1033), + [anon_sym_false] = ACTIONS(1033), + [aux_sym__val_number_decimal_token1] = ACTIONS(1033), + [aux_sym__val_number_decimal_token2] = ACTIONS(1033), + [anon_sym_DOT2] = ACTIONS(1033), + [aux_sym__val_number_decimal_token3] = ACTIONS(1033), + [aux_sym__val_number_token1] = ACTIONS(1033), + [aux_sym__val_number_token2] = ACTIONS(1033), + [aux_sym__val_number_token3] = ACTIONS(1033), + [aux_sym__val_number_token4] = ACTIONS(1033), + [aux_sym__val_number_token5] = ACTIONS(1033), + [aux_sym__val_number_token6] = ACTIONS(1033), + [anon_sym_0b] = ACTIONS(1033), + [anon_sym_0o] = ACTIONS(1033), + [anon_sym_0x] = ACTIONS(1033), + [sym_val_date] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [sym__str_single_quotes] = ACTIONS(1033), + [sym__str_back_ticks] = ACTIONS(1033), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1033), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1033), + [anon_sym_POUND] = ACTIONS(113), }, - [2223] = { - [sym_expr_unary] = STATE(3096), - [sym__expr_unary_minus] = STATE(3093), - [sym_expr_binary] = STATE(3096), - [sym__expr_binary_expression] = STATE(3126), - [sym_expr_parenthesized] = STATE(3096), - [sym__val_range] = STATE(10705), - [sym__value] = STATE(3096), - [sym_val_nothing] = STATE(3125), - [sym_val_bool] = STATE(2990), - [sym_val_variable] = STATE(3125), - [sym__var] = STATE(2692), - [sym_val_number] = STATE(3125), - [sym__val_number_decimal] = STATE(1567), - [sym__val_number] = STATE(3113), - [sym_val_duration] = STATE(3125), - [sym_val_filesize] = STATE(3125), - [sym_val_binary] = STATE(3125), - [sym_val_string] = STATE(3125), - [sym__str_double_quotes] = STATE(3110), - [sym_val_interpolated] = STATE(3125), - [sym__inter_single_quotes] = STATE(3069), - [sym__inter_double_quotes] = STATE(3071), - [sym_val_list] = STATE(3125), - [sym_val_record] = STATE(3125), - [sym_val_table] = STATE(3125), - [sym_val_closure] = STATE(3125), - [sym_unquoted] = STATE(3108), - [sym__unquoted_anonymous_prefix] = STATE(11116), - [sym_comment] = STATE(2223), - [anon_sym_LBRACK] = ACTIONS(4097), - [anon_sym_LPAREN] = ACTIONS(5875), - [anon_sym_DOLLAR] = ACTIONS(5877), - [anon_sym_DASH] = ACTIONS(4103), - [anon_sym_LBRACE] = ACTIONS(4105), - [anon_sym_DOT_DOT] = ACTIONS(5879), - [anon_sym_not] = ACTIONS(4109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5881), - [anon_sym_DOT_DOT_LT] = ACTIONS(5881), - [anon_sym_null] = ACTIONS(4113), - [anon_sym_true] = ACTIONS(4115), - [anon_sym_false] = ACTIONS(4115), - [aux_sym__val_number_decimal_token1] = ACTIONS(4117), - [aux_sym__val_number_decimal_token2] = ACTIONS(4119), - [anon_sym_DOT2] = ACTIONS(5883), - [aux_sym__val_number_decimal_token3] = ACTIONS(4123), - [aux_sym__val_number_token1] = ACTIONS(4125), - [aux_sym__val_number_token2] = ACTIONS(4125), - [aux_sym__val_number_token3] = ACTIONS(4125), - [aux_sym__val_number_token4] = ACTIONS(5885), - [aux_sym__val_number_token5] = ACTIONS(5885), - [aux_sym__val_number_token6] = ACTIONS(5885), - [anon_sym_0b] = ACTIONS(4129), - [anon_sym_0o] = ACTIONS(4131), - [anon_sym_0x] = ACTIONS(4131), - [sym_val_date] = ACTIONS(4133), - [anon_sym_DQUOTE] = ACTIONS(4135), - [sym__str_single_quotes] = ACTIONS(4137), - [sym__str_back_ticks] = ACTIONS(4137), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4139), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4141), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5887), - [anon_sym_POUND] = ACTIONS(3), + [2494] = { + [sym_comment] = STATE(2494), + [ts_builtin_sym_end] = ACTIONS(1022), + [anon_sym_SEMI] = ACTIONS(1020), + [anon_sym_LF] = ACTIONS(1022), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1020), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_GT] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1020), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_in] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_DOT_DOT] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_QMARK2] = ACTIONS(1020), + [anon_sym_STAR_STAR] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1020), + [anon_sym_SLASH] = ACTIONS(1020), + [anon_sym_mod] = ACTIONS(1020), + [anon_sym_SLASH_SLASH] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_bit_DASHshl] = ACTIONS(1020), + [anon_sym_bit_DASHshr] = ACTIONS(1020), + [anon_sym_EQ_EQ] = ACTIONS(1020), + [anon_sym_BANG_EQ] = ACTIONS(1020), + [anon_sym_LT2] = ACTIONS(1020), + [anon_sym_LT_EQ] = ACTIONS(1020), + [anon_sym_GT_EQ] = ACTIONS(1020), + [anon_sym_not_DASHin] = ACTIONS(1020), + [anon_sym_starts_DASHwith] = ACTIONS(1020), + [anon_sym_ends_DASHwith] = ACTIONS(1020), + [anon_sym_EQ_TILDE] = ACTIONS(1020), + [anon_sym_BANG_TILDE] = ACTIONS(1020), + [anon_sym_bit_DASHand] = ACTIONS(1020), + [anon_sym_bit_DASHxor] = ACTIONS(1020), + [anon_sym_bit_DASHor] = ACTIONS(1020), + [anon_sym_and] = ACTIONS(1020), + [anon_sym_xor] = ACTIONS(1020), + [anon_sym_or] = ACTIONS(1020), + [anon_sym_not] = ACTIONS(1020), + [anon_sym_DOT] = ACTIONS(1020), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1020), + [anon_sym_DOT_DOT_LT] = ACTIONS(1020), + [anon_sym_null] = ACTIONS(1020), + [anon_sym_true] = ACTIONS(1020), + [anon_sym_false] = ACTIONS(1020), + [aux_sym__val_number_decimal_token1] = ACTIONS(1020), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [anon_sym_DOT2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1020), + [aux_sym__val_number_token1] = ACTIONS(1020), + [aux_sym__val_number_token2] = ACTIONS(1020), + [aux_sym__val_number_token3] = ACTIONS(1020), + [aux_sym__val_number_token4] = ACTIONS(1020), + [aux_sym__val_number_token5] = ACTIONS(1020), + [aux_sym__val_number_token6] = ACTIONS(1020), + [anon_sym_0b] = ACTIONS(1020), + [anon_sym_0o] = ACTIONS(1020), + [anon_sym_0x] = ACTIONS(1020), + [sym_val_date] = ACTIONS(1020), + [anon_sym_DQUOTE] = ACTIONS(1020), + [sym__str_single_quotes] = ACTIONS(1020), + [sym__str_back_ticks] = ACTIONS(1020), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1020), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1020), + [anon_sym_POUND] = ACTIONS(113), }, - [2224] = { - [sym_expr_unary] = STATE(3096), - [sym__expr_unary_minus] = STATE(3093), - [sym_expr_binary] = STATE(3096), - [sym__expr_binary_expression] = STATE(3127), - [sym_expr_parenthesized] = STATE(3096), - [sym__val_range] = STATE(10705), - [sym__value] = STATE(3096), - [sym_val_nothing] = STATE(3125), - [sym_val_bool] = STATE(2990), - [sym_val_variable] = STATE(3125), - [sym__var] = STATE(2692), - [sym_val_number] = STATE(3125), - [sym__val_number_decimal] = STATE(1567), - [sym__val_number] = STATE(3113), - [sym_val_duration] = STATE(3125), - [sym_val_filesize] = STATE(3125), - [sym_val_binary] = STATE(3125), - [sym_val_string] = STATE(3125), - [sym__str_double_quotes] = STATE(3110), - [sym_val_interpolated] = STATE(3125), - [sym__inter_single_quotes] = STATE(3069), - [sym__inter_double_quotes] = STATE(3071), - [sym_val_list] = STATE(3125), - [sym_val_record] = STATE(3125), - [sym_val_table] = STATE(3125), - [sym_val_closure] = STATE(3125), - [sym_unquoted] = STATE(3109), - [sym__unquoted_anonymous_prefix] = STATE(11116), - [sym_comment] = STATE(2224), - [anon_sym_LBRACK] = ACTIONS(4097), - [anon_sym_LPAREN] = ACTIONS(5875), - [anon_sym_DOLLAR] = ACTIONS(5877), - [anon_sym_DASH] = ACTIONS(4103), - [anon_sym_LBRACE] = ACTIONS(4105), - [anon_sym_DOT_DOT] = ACTIONS(5879), - [anon_sym_not] = ACTIONS(4109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5881), - [anon_sym_DOT_DOT_LT] = ACTIONS(5881), - [anon_sym_null] = ACTIONS(4113), - [anon_sym_true] = ACTIONS(4115), - [anon_sym_false] = ACTIONS(4115), - [aux_sym__val_number_decimal_token1] = ACTIONS(4117), - [aux_sym__val_number_decimal_token2] = ACTIONS(4119), - [anon_sym_DOT2] = ACTIONS(5883), - [aux_sym__val_number_decimal_token3] = ACTIONS(4123), - [aux_sym__val_number_token1] = ACTIONS(4125), - [aux_sym__val_number_token2] = ACTIONS(4125), - [aux_sym__val_number_token3] = ACTIONS(4125), - [aux_sym__val_number_token4] = ACTIONS(5885), - [aux_sym__val_number_token5] = ACTIONS(5885), - [aux_sym__val_number_token6] = ACTIONS(5885), - [anon_sym_0b] = ACTIONS(4129), - [anon_sym_0o] = ACTIONS(4131), - [anon_sym_0x] = ACTIONS(4131), - [sym_val_date] = ACTIONS(4133), - [anon_sym_DQUOTE] = ACTIONS(4135), - [sym__str_single_quotes] = ACTIONS(4137), - [sym__str_back_ticks] = ACTIONS(4137), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4139), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4141), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5887), - [anon_sym_POUND] = ACTIONS(3), + [2495] = { + [sym_comment] = STATE(2495), + [ts_builtin_sym_end] = ACTIONS(6296), + [anon_sym_export] = ACTIONS(6294), + [anon_sym_alias] = ACTIONS(6294), + [anon_sym_let] = ACTIONS(6294), + [anon_sym_let_DASHenv] = ACTIONS(6294), + [anon_sym_mut] = ACTIONS(6294), + [anon_sym_const] = ACTIONS(6294), + [anon_sym_SEMI] = ACTIONS(6294), + [sym_cmd_identifier] = ACTIONS(6294), + [anon_sym_LF] = ACTIONS(6296), + [anon_sym_def] = ACTIONS(6294), + [anon_sym_export_DASHenv] = ACTIONS(6294), + [anon_sym_extern] = ACTIONS(6294), + [anon_sym_module] = ACTIONS(6294), + [anon_sym_use] = ACTIONS(6294), + [anon_sym_LBRACK] = ACTIONS(6294), + [anon_sym_LPAREN] = ACTIONS(6294), + [anon_sym_DOLLAR] = ACTIONS(6294), + [anon_sym_error] = ACTIONS(6294), + [anon_sym_DASH] = ACTIONS(6294), + [anon_sym_break] = ACTIONS(6294), + [anon_sym_continue] = ACTIONS(6294), + [anon_sym_for] = ACTIONS(6294), + [anon_sym_loop] = ACTIONS(6294), + [anon_sym_while] = ACTIONS(6294), + [anon_sym_do] = ACTIONS(6294), + [anon_sym_if] = ACTIONS(6294), + [anon_sym_match] = ACTIONS(6294), + [anon_sym_LBRACE] = ACTIONS(6294), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_try] = ACTIONS(6294), + [anon_sym_return] = ACTIONS(6294), + [anon_sym_source] = ACTIONS(6294), + [anon_sym_source_DASHenv] = ACTIONS(6294), + [anon_sym_register] = ACTIONS(6294), + [anon_sym_hide] = ACTIONS(6294), + [anon_sym_hide_DASHenv] = ACTIONS(6294), + [anon_sym_overlay] = ACTIONS(6294), + [anon_sym_where] = ACTIONS(6294), + [anon_sym_not] = ACTIONS(6294), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6294), + [anon_sym_DOT_DOT_LT] = ACTIONS(6294), + [anon_sym_null] = ACTIONS(6294), + [anon_sym_true] = ACTIONS(6294), + [anon_sym_false] = ACTIONS(6294), + [aux_sym__val_number_decimal_token1] = ACTIONS(6294), + [aux_sym__val_number_decimal_token2] = ACTIONS(6294), + [anon_sym_DOT2] = ACTIONS(6294), + [aux_sym__val_number_decimal_token3] = ACTIONS(6294), + [aux_sym__val_number_token1] = ACTIONS(6294), + [aux_sym__val_number_token2] = ACTIONS(6294), + [aux_sym__val_number_token3] = ACTIONS(6294), + [aux_sym__val_number_token4] = ACTIONS(6294), + [aux_sym__val_number_token5] = ACTIONS(6294), + [aux_sym__val_number_token6] = ACTIONS(6294), + [anon_sym_0b] = ACTIONS(6294), + [anon_sym_0o] = ACTIONS(6294), + [anon_sym_0x] = ACTIONS(6294), + [sym_val_date] = ACTIONS(6294), + [anon_sym_DQUOTE] = ACTIONS(6294), + [sym__str_single_quotes] = ACTIONS(6294), + [sym__str_back_ticks] = ACTIONS(6294), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6294), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6294), + [anon_sym_CARET] = ACTIONS(6294), + [anon_sym_POUND] = ACTIONS(113), }, - [2225] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(6701), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(6448), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(6152), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(5210), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5002), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2225), - [anon_sym_LBRACK] = ACTIONS(4145), - [anon_sym_LPAREN] = ACTIONS(5889), - [anon_sym_DOLLAR] = ACTIONS(5891), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(4153), - [anon_sym_DOT_DOT] = ACTIONS(5893), - [anon_sym_not] = ACTIONS(4157), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5895), - [anon_sym_DOT_DOT_LT] = ACTIONS(5895), - [anon_sym_null] = ACTIONS(4161), - [anon_sym_true] = ACTIONS(4163), - [anon_sym_false] = ACTIONS(4163), - [aux_sym__val_number_decimal_token1] = ACTIONS(4165), - [aux_sym__val_number_decimal_token2] = ACTIONS(4167), - [anon_sym_DOT2] = ACTIONS(5897), - [aux_sym__val_number_decimal_token3] = ACTIONS(4171), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5899), - [aux_sym__val_number_token5] = ACTIONS(5899), - [aux_sym__val_number_token6] = ACTIONS(5899), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(4181), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2496] = { + [sym_comment] = STATE(2496), + [ts_builtin_sym_end] = ACTIONS(6296), + [anon_sym_export] = ACTIONS(6294), + [anon_sym_alias] = ACTIONS(6294), + [anon_sym_let] = ACTIONS(6294), + [anon_sym_let_DASHenv] = ACTIONS(6294), + [anon_sym_mut] = ACTIONS(6294), + [anon_sym_const] = ACTIONS(6294), + [anon_sym_SEMI] = ACTIONS(6294), + [sym_cmd_identifier] = ACTIONS(6294), + [anon_sym_LF] = ACTIONS(6296), + [anon_sym_def] = ACTIONS(6294), + [anon_sym_export_DASHenv] = ACTIONS(6294), + [anon_sym_extern] = ACTIONS(6294), + [anon_sym_module] = ACTIONS(6294), + [anon_sym_use] = ACTIONS(6294), + [anon_sym_LBRACK] = ACTIONS(6294), + [anon_sym_LPAREN] = ACTIONS(6294), + [anon_sym_DOLLAR] = ACTIONS(6294), + [anon_sym_error] = ACTIONS(6294), + [anon_sym_DASH] = ACTIONS(6294), + [anon_sym_break] = ACTIONS(6294), + [anon_sym_continue] = ACTIONS(6294), + [anon_sym_for] = ACTIONS(6294), + [anon_sym_loop] = ACTIONS(6294), + [anon_sym_while] = ACTIONS(6294), + [anon_sym_do] = ACTIONS(6294), + [anon_sym_if] = ACTIONS(6294), + [anon_sym_match] = ACTIONS(6294), + [anon_sym_LBRACE] = ACTIONS(6294), + [anon_sym_DOT_DOT] = ACTIONS(6294), + [anon_sym_try] = ACTIONS(6294), + [anon_sym_return] = ACTIONS(6294), + [anon_sym_source] = ACTIONS(6294), + [anon_sym_source_DASHenv] = ACTIONS(6294), + [anon_sym_register] = ACTIONS(6294), + [anon_sym_hide] = ACTIONS(6294), + [anon_sym_hide_DASHenv] = ACTIONS(6294), + [anon_sym_overlay] = ACTIONS(6294), + [anon_sym_where] = ACTIONS(6294), + [anon_sym_not] = ACTIONS(6294), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6294), + [anon_sym_DOT_DOT_LT] = ACTIONS(6294), + [anon_sym_null] = ACTIONS(6294), + [anon_sym_true] = ACTIONS(6294), + [anon_sym_false] = ACTIONS(6294), + [aux_sym__val_number_decimal_token1] = ACTIONS(6294), + [aux_sym__val_number_decimal_token2] = ACTIONS(6294), + [anon_sym_DOT2] = ACTIONS(6294), + [aux_sym__val_number_decimal_token3] = ACTIONS(6294), + [aux_sym__val_number_token1] = ACTIONS(6294), + [aux_sym__val_number_token2] = ACTIONS(6294), + [aux_sym__val_number_token3] = ACTIONS(6294), + [aux_sym__val_number_token4] = ACTIONS(6294), + [aux_sym__val_number_token5] = ACTIONS(6294), + [aux_sym__val_number_token6] = ACTIONS(6294), + [anon_sym_0b] = ACTIONS(6294), + [anon_sym_0o] = ACTIONS(6294), + [anon_sym_0x] = ACTIONS(6294), + [sym_val_date] = ACTIONS(6294), + [anon_sym_DQUOTE] = ACTIONS(6294), + [sym__str_single_quotes] = ACTIONS(6294), + [sym__str_back_ticks] = ACTIONS(6294), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6294), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6294), + [anon_sym_CARET] = ACTIONS(6294), + [anon_sym_POUND] = ACTIONS(113), }, - [2226] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(6702), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(6448), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(6152), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(5210), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5007), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2226), - [anon_sym_LBRACK] = ACTIONS(4145), - [anon_sym_LPAREN] = ACTIONS(5889), - [anon_sym_DOLLAR] = ACTIONS(5891), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(4153), - [anon_sym_DOT_DOT] = ACTIONS(5893), - [anon_sym_not] = ACTIONS(4157), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5895), - [anon_sym_DOT_DOT_LT] = ACTIONS(5895), - [anon_sym_null] = ACTIONS(4161), - [anon_sym_true] = ACTIONS(4163), - [anon_sym_false] = ACTIONS(4163), - [aux_sym__val_number_decimal_token1] = ACTIONS(4165), - [aux_sym__val_number_decimal_token2] = ACTIONS(4167), - [anon_sym_DOT2] = ACTIONS(5897), - [aux_sym__val_number_decimal_token3] = ACTIONS(4171), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5899), - [aux_sym__val_number_token5] = ACTIONS(5899), - [aux_sym__val_number_token6] = ACTIONS(5899), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(4181), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2497] = { + [sym_comment] = STATE(2497), + [ts_builtin_sym_end] = ACTIONS(6041), + [anon_sym_export] = ACTIONS(6039), + [anon_sym_alias] = ACTIONS(6039), + [anon_sym_let] = ACTIONS(6039), + [anon_sym_let_DASHenv] = ACTIONS(6039), + [anon_sym_mut] = ACTIONS(6039), + [anon_sym_const] = ACTIONS(6039), + [anon_sym_SEMI] = ACTIONS(6039), + [sym_cmd_identifier] = ACTIONS(6039), + [anon_sym_LF] = ACTIONS(6041), + [anon_sym_def] = ACTIONS(6039), + [anon_sym_export_DASHenv] = ACTIONS(6039), + [anon_sym_extern] = ACTIONS(6039), + [anon_sym_module] = ACTIONS(6039), + [anon_sym_use] = ACTIONS(6039), + [anon_sym_LBRACK] = ACTIONS(6039), + [anon_sym_LPAREN] = ACTIONS(6039), + [anon_sym_DOLLAR] = ACTIONS(6039), + [anon_sym_error] = ACTIONS(6039), + [anon_sym_DASH] = ACTIONS(6039), + [anon_sym_break] = ACTIONS(6039), + [anon_sym_continue] = ACTIONS(6039), + [anon_sym_for] = ACTIONS(6039), + [anon_sym_loop] = ACTIONS(6039), + [anon_sym_while] = ACTIONS(6039), + [anon_sym_do] = ACTIONS(6039), + [anon_sym_if] = ACTIONS(6039), + [anon_sym_match] = ACTIONS(6039), + [anon_sym_LBRACE] = ACTIONS(6039), + [anon_sym_DOT_DOT] = ACTIONS(6039), + [anon_sym_try] = ACTIONS(6039), + [anon_sym_return] = ACTIONS(6039), + [anon_sym_source] = ACTIONS(6039), + [anon_sym_source_DASHenv] = ACTIONS(6039), + [anon_sym_register] = ACTIONS(6039), + [anon_sym_hide] = ACTIONS(6039), + [anon_sym_hide_DASHenv] = ACTIONS(6039), + [anon_sym_overlay] = ACTIONS(6039), + [anon_sym_where] = ACTIONS(6039), + [anon_sym_not] = ACTIONS(6039), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6039), + [anon_sym_DOT_DOT_LT] = ACTIONS(6039), + [anon_sym_null] = ACTIONS(6039), + [anon_sym_true] = ACTIONS(6039), + [anon_sym_false] = ACTIONS(6039), + [aux_sym__val_number_decimal_token1] = ACTIONS(6039), + [aux_sym__val_number_decimal_token2] = ACTIONS(6039), + [anon_sym_DOT2] = ACTIONS(6039), + [aux_sym__val_number_decimal_token3] = ACTIONS(6039), + [aux_sym__val_number_token1] = ACTIONS(6039), + [aux_sym__val_number_token2] = ACTIONS(6039), + [aux_sym__val_number_token3] = ACTIONS(6039), + [aux_sym__val_number_token4] = ACTIONS(6039), + [aux_sym__val_number_token5] = ACTIONS(6039), + [aux_sym__val_number_token6] = ACTIONS(6039), + [anon_sym_0b] = ACTIONS(6039), + [anon_sym_0o] = ACTIONS(6039), + [anon_sym_0x] = ACTIONS(6039), + [sym_val_date] = ACTIONS(6039), + [anon_sym_DQUOTE] = ACTIONS(6039), + [sym__str_single_quotes] = ACTIONS(6039), + [sym__str_back_ticks] = ACTIONS(6039), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6039), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6039), + [anon_sym_CARET] = ACTIONS(6039), + [anon_sym_POUND] = ACTIONS(113), }, - [2227] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(6703), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(6448), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(6152), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(5210), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5010), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2227), - [anon_sym_LBRACK] = ACTIONS(4145), - [anon_sym_LPAREN] = ACTIONS(5889), - [anon_sym_DOLLAR] = ACTIONS(5891), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(4153), - [anon_sym_DOT_DOT] = ACTIONS(5893), - [anon_sym_not] = ACTIONS(4157), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5895), - [anon_sym_DOT_DOT_LT] = ACTIONS(5895), - [anon_sym_null] = ACTIONS(4161), - [anon_sym_true] = ACTIONS(4163), - [anon_sym_false] = ACTIONS(4163), - [aux_sym__val_number_decimal_token1] = ACTIONS(4165), - [aux_sym__val_number_decimal_token2] = ACTIONS(4167), - [anon_sym_DOT2] = ACTIONS(5897), - [aux_sym__val_number_decimal_token3] = ACTIONS(4171), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5899), - [aux_sym__val_number_token5] = ACTIONS(5899), - [aux_sym__val_number_token6] = ACTIONS(5899), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(4181), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2498] = { + [sym_comment] = STATE(2498), + [ts_builtin_sym_end] = ACTIONS(6088), + [anon_sym_export] = ACTIONS(6086), + [anon_sym_alias] = ACTIONS(6086), + [anon_sym_let] = ACTIONS(6086), + [anon_sym_let_DASHenv] = ACTIONS(6086), + [anon_sym_mut] = ACTIONS(6086), + [anon_sym_const] = ACTIONS(6086), + [anon_sym_SEMI] = ACTIONS(6086), + [sym_cmd_identifier] = ACTIONS(6086), + [anon_sym_LF] = ACTIONS(6088), + [anon_sym_def] = ACTIONS(6086), + [anon_sym_export_DASHenv] = ACTIONS(6086), + [anon_sym_extern] = ACTIONS(6086), + [anon_sym_module] = ACTIONS(6086), + [anon_sym_use] = ACTIONS(6086), + [anon_sym_LBRACK] = ACTIONS(6086), + [anon_sym_LPAREN] = ACTIONS(6086), + [anon_sym_DOLLAR] = ACTIONS(6086), + [anon_sym_error] = ACTIONS(6086), + [anon_sym_DASH] = ACTIONS(6086), + [anon_sym_break] = ACTIONS(6086), + [anon_sym_continue] = ACTIONS(6086), + [anon_sym_for] = ACTIONS(6086), + [anon_sym_loop] = ACTIONS(6086), + [anon_sym_while] = ACTIONS(6086), + [anon_sym_do] = ACTIONS(6086), + [anon_sym_if] = ACTIONS(6086), + [anon_sym_match] = ACTIONS(6086), + [anon_sym_LBRACE] = ACTIONS(6086), + [anon_sym_DOT_DOT] = ACTIONS(6086), + [anon_sym_try] = ACTIONS(6086), + [anon_sym_return] = ACTIONS(6086), + [anon_sym_source] = ACTIONS(6086), + [anon_sym_source_DASHenv] = ACTIONS(6086), + [anon_sym_register] = ACTIONS(6086), + [anon_sym_hide] = ACTIONS(6086), + [anon_sym_hide_DASHenv] = ACTIONS(6086), + [anon_sym_overlay] = ACTIONS(6086), + [anon_sym_where] = ACTIONS(6086), + [anon_sym_not] = ACTIONS(6086), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6086), + [anon_sym_DOT_DOT_LT] = ACTIONS(6086), + [anon_sym_null] = ACTIONS(6086), + [anon_sym_true] = ACTIONS(6086), + [anon_sym_false] = ACTIONS(6086), + [aux_sym__val_number_decimal_token1] = ACTIONS(6086), + [aux_sym__val_number_decimal_token2] = ACTIONS(6086), + [anon_sym_DOT2] = ACTIONS(6086), + [aux_sym__val_number_decimal_token3] = ACTIONS(6086), + [aux_sym__val_number_token1] = ACTIONS(6086), + [aux_sym__val_number_token2] = ACTIONS(6086), + [aux_sym__val_number_token3] = ACTIONS(6086), + [aux_sym__val_number_token4] = ACTIONS(6086), + [aux_sym__val_number_token5] = ACTIONS(6086), + [aux_sym__val_number_token6] = ACTIONS(6086), + [anon_sym_0b] = ACTIONS(6086), + [anon_sym_0o] = ACTIONS(6086), + [anon_sym_0x] = ACTIONS(6086), + [sym_val_date] = ACTIONS(6086), + [anon_sym_DQUOTE] = ACTIONS(6086), + [sym__str_single_quotes] = ACTIONS(6086), + [sym__str_back_ticks] = ACTIONS(6086), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6086), + [anon_sym_CARET] = ACTIONS(6086), + [anon_sym_POUND] = ACTIONS(113), }, - [2228] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(6704), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(6448), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(6152), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(5210), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5011), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2228), - [anon_sym_LBRACK] = ACTIONS(4145), - [anon_sym_LPAREN] = ACTIONS(5889), - [anon_sym_DOLLAR] = ACTIONS(5891), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(4153), - [anon_sym_DOT_DOT] = ACTIONS(5893), - [anon_sym_not] = ACTIONS(4157), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5895), - [anon_sym_DOT_DOT_LT] = ACTIONS(5895), - [anon_sym_null] = ACTIONS(4161), - [anon_sym_true] = ACTIONS(4163), - [anon_sym_false] = ACTIONS(4163), - [aux_sym__val_number_decimal_token1] = ACTIONS(4165), - [aux_sym__val_number_decimal_token2] = ACTIONS(4167), - [anon_sym_DOT2] = ACTIONS(5897), - [aux_sym__val_number_decimal_token3] = ACTIONS(4171), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5899), - [aux_sym__val_number_token5] = ACTIONS(5899), - [aux_sym__val_number_token6] = ACTIONS(5899), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(4181), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2499] = { + [sym_comment] = STATE(2499), + [ts_builtin_sym_end] = ACTIONS(6088), + [anon_sym_export] = ACTIONS(6086), + [anon_sym_alias] = ACTIONS(6086), + [anon_sym_let] = ACTIONS(6086), + [anon_sym_let_DASHenv] = ACTIONS(6086), + [anon_sym_mut] = ACTIONS(6086), + [anon_sym_const] = ACTIONS(6086), + [anon_sym_SEMI] = ACTIONS(6086), + [sym_cmd_identifier] = ACTIONS(6086), + [anon_sym_LF] = ACTIONS(6088), + [anon_sym_def] = ACTIONS(6086), + [anon_sym_export_DASHenv] = ACTIONS(6086), + [anon_sym_extern] = ACTIONS(6086), + [anon_sym_module] = ACTIONS(6086), + [anon_sym_use] = ACTIONS(6086), + [anon_sym_LBRACK] = ACTIONS(6086), + [anon_sym_LPAREN] = ACTIONS(6086), + [anon_sym_DOLLAR] = ACTIONS(6086), + [anon_sym_error] = ACTIONS(6086), + [anon_sym_DASH] = ACTIONS(6086), + [anon_sym_break] = ACTIONS(6086), + [anon_sym_continue] = ACTIONS(6086), + [anon_sym_for] = ACTIONS(6086), + [anon_sym_loop] = ACTIONS(6086), + [anon_sym_while] = ACTIONS(6086), + [anon_sym_do] = ACTIONS(6086), + [anon_sym_if] = ACTIONS(6086), + [anon_sym_match] = ACTIONS(6086), + [anon_sym_LBRACE] = ACTIONS(6086), + [anon_sym_DOT_DOT] = ACTIONS(6086), + [anon_sym_try] = ACTIONS(6086), + [anon_sym_return] = ACTIONS(6086), + [anon_sym_source] = ACTIONS(6086), + [anon_sym_source_DASHenv] = ACTIONS(6086), + [anon_sym_register] = ACTIONS(6086), + [anon_sym_hide] = ACTIONS(6086), + [anon_sym_hide_DASHenv] = ACTIONS(6086), + [anon_sym_overlay] = ACTIONS(6086), + [anon_sym_where] = ACTIONS(6086), + [anon_sym_not] = ACTIONS(6086), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6086), + [anon_sym_DOT_DOT_LT] = ACTIONS(6086), + [anon_sym_null] = ACTIONS(6086), + [anon_sym_true] = ACTIONS(6086), + [anon_sym_false] = ACTIONS(6086), + [aux_sym__val_number_decimal_token1] = ACTIONS(6086), + [aux_sym__val_number_decimal_token2] = ACTIONS(6086), + [anon_sym_DOT2] = ACTIONS(6086), + [aux_sym__val_number_decimal_token3] = ACTIONS(6086), + [aux_sym__val_number_token1] = ACTIONS(6086), + [aux_sym__val_number_token2] = ACTIONS(6086), + [aux_sym__val_number_token3] = ACTIONS(6086), + [aux_sym__val_number_token4] = ACTIONS(6086), + [aux_sym__val_number_token5] = ACTIONS(6086), + [aux_sym__val_number_token6] = ACTIONS(6086), + [anon_sym_0b] = ACTIONS(6086), + [anon_sym_0o] = ACTIONS(6086), + [anon_sym_0x] = ACTIONS(6086), + [sym_val_date] = ACTIONS(6086), + [anon_sym_DQUOTE] = ACTIONS(6086), + [sym__str_single_quotes] = ACTIONS(6086), + [sym__str_back_ticks] = ACTIONS(6086), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6086), + [anon_sym_CARET] = ACTIONS(6086), + [anon_sym_POUND] = ACTIONS(113), }, - [2229] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(6705), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(6448), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(6152), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(5210), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5019), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2229), - [anon_sym_LBRACK] = ACTIONS(4145), - [anon_sym_LPAREN] = ACTIONS(5889), - [anon_sym_DOLLAR] = ACTIONS(5891), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(4153), - [anon_sym_DOT_DOT] = ACTIONS(5893), - [anon_sym_not] = ACTIONS(4157), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5895), - [anon_sym_DOT_DOT_LT] = ACTIONS(5895), - [anon_sym_null] = ACTIONS(4161), - [anon_sym_true] = ACTIONS(4163), - [anon_sym_false] = ACTIONS(4163), - [aux_sym__val_number_decimal_token1] = ACTIONS(4165), - [aux_sym__val_number_decimal_token2] = ACTIONS(4167), - [anon_sym_DOT2] = ACTIONS(5897), - [aux_sym__val_number_decimal_token3] = ACTIONS(4171), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5899), - [aux_sym__val_number_token5] = ACTIONS(5899), - [aux_sym__val_number_token6] = ACTIONS(5899), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(4181), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2500] = { + [sym_comment] = STATE(2500), + [anon_sym_export] = ACTIONS(6415), + [anon_sym_alias] = ACTIONS(6415), + [anon_sym_let] = ACTIONS(6415), + [anon_sym_let_DASHenv] = ACTIONS(6415), + [anon_sym_mut] = ACTIONS(6415), + [anon_sym_const] = ACTIONS(6415), + [anon_sym_SEMI] = ACTIONS(6417), + [sym_cmd_identifier] = ACTIONS(6415), + [anon_sym_LF] = ACTIONS(6420), + [anon_sym_def] = ACTIONS(6415), + [anon_sym_export_DASHenv] = ACTIONS(6415), + [anon_sym_extern] = ACTIONS(6415), + [anon_sym_module] = ACTIONS(6415), + [anon_sym_use] = ACTIONS(6415), + [anon_sym_LBRACK] = ACTIONS(6415), + [anon_sym_LPAREN] = ACTIONS(6415), + [anon_sym_RPAREN] = ACTIONS(6423), + [anon_sym_DOLLAR] = ACTIONS(6415), + [anon_sym_error] = ACTIONS(6415), + [anon_sym_DASH] = ACTIONS(6415), + [anon_sym_break] = ACTIONS(6415), + [anon_sym_continue] = ACTIONS(6415), + [anon_sym_for] = ACTIONS(6415), + [anon_sym_loop] = ACTIONS(6415), + [anon_sym_while] = ACTIONS(6415), + [anon_sym_do] = ACTIONS(6415), + [anon_sym_if] = ACTIONS(6415), + [anon_sym_match] = ACTIONS(6415), + [anon_sym_LBRACE] = ACTIONS(6415), + [anon_sym_DOT_DOT] = ACTIONS(6415), + [anon_sym_try] = ACTIONS(6415), + [anon_sym_return] = ACTIONS(6415), + [anon_sym_source] = ACTIONS(6415), + [anon_sym_source_DASHenv] = ACTIONS(6415), + [anon_sym_register] = ACTIONS(6415), + [anon_sym_hide] = ACTIONS(6415), + [anon_sym_hide_DASHenv] = ACTIONS(6415), + [anon_sym_overlay] = ACTIONS(6415), + [anon_sym_where] = ACTIONS(6415), + [anon_sym_not] = ACTIONS(6415), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6415), + [anon_sym_DOT_DOT_LT] = ACTIONS(6415), + [anon_sym_null] = ACTIONS(6415), + [anon_sym_true] = ACTIONS(6415), + [anon_sym_false] = ACTIONS(6415), + [aux_sym__val_number_decimal_token1] = ACTIONS(6415), + [aux_sym__val_number_decimal_token2] = ACTIONS(6415), + [anon_sym_DOT2] = ACTIONS(6415), + [aux_sym__val_number_decimal_token3] = ACTIONS(6415), + [aux_sym__val_number_token1] = ACTIONS(6415), + [aux_sym__val_number_token2] = ACTIONS(6415), + [aux_sym__val_number_token3] = ACTIONS(6415), + [aux_sym__val_number_token4] = ACTIONS(6415), + [aux_sym__val_number_token5] = ACTIONS(6415), + [aux_sym__val_number_token6] = ACTIONS(6415), + [anon_sym_0b] = ACTIONS(6415), + [anon_sym_0o] = ACTIONS(6415), + [anon_sym_0x] = ACTIONS(6415), + [sym_val_date] = ACTIONS(6415), + [anon_sym_DQUOTE] = ACTIONS(6415), + [sym__str_single_quotes] = ACTIONS(6415), + [sym__str_back_ticks] = ACTIONS(6415), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6415), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6415), + [anon_sym_CARET] = ACTIONS(6415), + [anon_sym_POUND] = ACTIONS(113), }, - [2230] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(6706), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(6448), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(6152), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(5210), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5020), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2230), - [anon_sym_LBRACK] = ACTIONS(4145), - [anon_sym_LPAREN] = ACTIONS(5889), - [anon_sym_DOLLAR] = ACTIONS(5891), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(4153), - [anon_sym_DOT_DOT] = ACTIONS(5893), - [anon_sym_not] = ACTIONS(4157), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5895), - [anon_sym_DOT_DOT_LT] = ACTIONS(5895), - [anon_sym_null] = ACTIONS(4161), - [anon_sym_true] = ACTIONS(4163), - [anon_sym_false] = ACTIONS(4163), - [aux_sym__val_number_decimal_token1] = ACTIONS(4165), - [aux_sym__val_number_decimal_token2] = ACTIONS(4167), - [anon_sym_DOT2] = ACTIONS(5897), - [aux_sym__val_number_decimal_token3] = ACTIONS(4171), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5899), - [aux_sym__val_number_token5] = ACTIONS(5899), - [aux_sym__val_number_token6] = ACTIONS(5899), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(4181), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2501] = { + [sym_comment] = STATE(2501), + [ts_builtin_sym_end] = ACTIONS(5915), + [anon_sym_export] = ACTIONS(5913), + [anon_sym_alias] = ACTIONS(5913), + [anon_sym_let] = ACTIONS(5913), + [anon_sym_let_DASHenv] = ACTIONS(5913), + [anon_sym_mut] = ACTIONS(5913), + [anon_sym_const] = ACTIONS(5913), + [anon_sym_SEMI] = ACTIONS(5913), + [sym_cmd_identifier] = ACTIONS(5913), + [anon_sym_LF] = ACTIONS(5915), + [anon_sym_def] = ACTIONS(5913), + [anon_sym_export_DASHenv] = ACTIONS(5913), + [anon_sym_extern] = ACTIONS(5913), + [anon_sym_module] = ACTIONS(5913), + [anon_sym_use] = ACTIONS(5913), + [anon_sym_LBRACK] = ACTIONS(5913), + [anon_sym_LPAREN] = ACTIONS(5913), + [anon_sym_DOLLAR] = ACTIONS(5913), + [anon_sym_error] = ACTIONS(5913), + [anon_sym_DASH] = ACTIONS(5913), + [anon_sym_break] = ACTIONS(5913), + [anon_sym_continue] = ACTIONS(5913), + [anon_sym_for] = ACTIONS(5913), + [anon_sym_loop] = ACTIONS(5913), + [anon_sym_while] = ACTIONS(5913), + [anon_sym_do] = ACTIONS(5913), + [anon_sym_if] = ACTIONS(5913), + [anon_sym_match] = ACTIONS(5913), + [anon_sym_LBRACE] = ACTIONS(5913), + [anon_sym_DOT_DOT] = ACTIONS(5913), + [anon_sym_try] = ACTIONS(5913), + [anon_sym_return] = ACTIONS(5913), + [anon_sym_source] = ACTIONS(5913), + [anon_sym_source_DASHenv] = ACTIONS(5913), + [anon_sym_register] = ACTIONS(5913), + [anon_sym_hide] = ACTIONS(5913), + [anon_sym_hide_DASHenv] = ACTIONS(5913), + [anon_sym_overlay] = ACTIONS(5913), + [anon_sym_where] = ACTIONS(5913), + [anon_sym_not] = ACTIONS(5913), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5913), + [anon_sym_DOT_DOT_LT] = ACTIONS(5913), + [anon_sym_null] = ACTIONS(5913), + [anon_sym_true] = ACTIONS(5913), + [anon_sym_false] = ACTIONS(5913), + [aux_sym__val_number_decimal_token1] = ACTIONS(5913), + [aux_sym__val_number_decimal_token2] = ACTIONS(5913), + [anon_sym_DOT2] = ACTIONS(5913), + [aux_sym__val_number_decimal_token3] = ACTIONS(5913), + [aux_sym__val_number_token1] = ACTIONS(5913), + [aux_sym__val_number_token2] = ACTIONS(5913), + [aux_sym__val_number_token3] = ACTIONS(5913), + [aux_sym__val_number_token4] = ACTIONS(5913), + [aux_sym__val_number_token5] = ACTIONS(5913), + [aux_sym__val_number_token6] = ACTIONS(5913), + [anon_sym_0b] = ACTIONS(5913), + [anon_sym_0o] = ACTIONS(5913), + [anon_sym_0x] = ACTIONS(5913), + [sym_val_date] = ACTIONS(5913), + [anon_sym_DQUOTE] = ACTIONS(5913), + [sym__str_single_quotes] = ACTIONS(5913), + [sym__str_back_ticks] = ACTIONS(5913), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5913), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5913), + [anon_sym_CARET] = ACTIONS(5913), + [anon_sym_POUND] = ACTIONS(113), }, - [2231] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(6707), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(6448), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(6152), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(5210), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5026), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2231), - [anon_sym_LBRACK] = ACTIONS(4145), - [anon_sym_LPAREN] = ACTIONS(5889), - [anon_sym_DOLLAR] = ACTIONS(5891), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(4153), - [anon_sym_DOT_DOT] = ACTIONS(5893), - [anon_sym_not] = ACTIONS(4157), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5895), - [anon_sym_DOT_DOT_LT] = ACTIONS(5895), - [anon_sym_null] = ACTIONS(4161), - [anon_sym_true] = ACTIONS(4163), - [anon_sym_false] = ACTIONS(4163), - [aux_sym__val_number_decimal_token1] = ACTIONS(4165), - [aux_sym__val_number_decimal_token2] = ACTIONS(4167), - [anon_sym_DOT2] = ACTIONS(5897), - [aux_sym__val_number_decimal_token3] = ACTIONS(4171), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5899), - [aux_sym__val_number_token5] = ACTIONS(5899), - [aux_sym__val_number_token6] = ACTIONS(5899), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(4181), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2502] = { + [sym_comment] = STATE(2502), + [anon_sym_SEMI] = ACTIONS(1155), + [anon_sym_LF] = ACTIONS(1157), + [anon_sym_LBRACK] = ACTIONS(1155), + [anon_sym_LPAREN] = ACTIONS(1155), + [anon_sym_RPAREN] = ACTIONS(1155), + [anon_sym_PIPE] = ACTIONS(1155), + [anon_sym_DOLLAR] = ACTIONS(1155), + [anon_sym_GT] = ACTIONS(1155), + [anon_sym_DASH_DASH] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_in] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_RBRACE] = ACTIONS(1155), + [anon_sym_DOT_DOT] = ACTIONS(1155), + [anon_sym_STAR] = ACTIONS(1155), + [anon_sym_STAR_STAR] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(1155), + [anon_sym_mod] = ACTIONS(1155), + [anon_sym_SLASH_SLASH] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_bit_DASHshl] = ACTIONS(1155), + [anon_sym_bit_DASHshr] = ACTIONS(1155), + [anon_sym_EQ_EQ] = ACTIONS(1155), + [anon_sym_BANG_EQ] = ACTIONS(1155), + [anon_sym_LT2] = ACTIONS(1155), + [anon_sym_LT_EQ] = ACTIONS(1155), + [anon_sym_GT_EQ] = ACTIONS(1155), + [anon_sym_not_DASHin] = ACTIONS(1155), + [anon_sym_starts_DASHwith] = ACTIONS(1155), + [anon_sym_ends_DASHwith] = ACTIONS(1155), + [anon_sym_EQ_TILDE] = ACTIONS(1155), + [anon_sym_BANG_TILDE] = ACTIONS(1155), + [anon_sym_bit_DASHand] = ACTIONS(1155), + [anon_sym_bit_DASHxor] = ACTIONS(1155), + [anon_sym_bit_DASHor] = ACTIONS(1155), + [anon_sym_and] = ACTIONS(1155), + [anon_sym_xor] = ACTIONS(1155), + [anon_sym_or] = ACTIONS(1155), + [anon_sym_not] = ACTIONS(1155), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1155), + [anon_sym_DOT_DOT_LT] = ACTIONS(1155), + [anon_sym_null] = ACTIONS(1155), + [anon_sym_true] = ACTIONS(1155), + [anon_sym_false] = ACTIONS(1155), + [aux_sym__val_number_decimal_token1] = ACTIONS(1155), + [aux_sym__val_number_decimal_token2] = ACTIONS(1155), + [anon_sym_DOT2] = ACTIONS(1155), + [aux_sym__val_number_decimal_token3] = ACTIONS(1155), + [aux_sym__val_number_token1] = ACTIONS(1155), + [aux_sym__val_number_token2] = ACTIONS(1155), + [aux_sym__val_number_token3] = ACTIONS(1155), + [aux_sym__val_number_token4] = ACTIONS(1155), + [aux_sym__val_number_token5] = ACTIONS(1155), + [aux_sym__val_number_token6] = ACTIONS(1155), + [anon_sym_0b] = ACTIONS(1155), + [anon_sym_0o] = ACTIONS(1155), + [anon_sym_0x] = ACTIONS(1155), + [sym_val_date] = ACTIONS(1155), + [anon_sym_DQUOTE] = ACTIONS(1155), + [sym__str_single_quotes] = ACTIONS(1155), + [sym__str_back_ticks] = ACTIONS(1155), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1155), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1155), + [aux_sym_unquoted_token6] = ACTIONS(1155), + [anon_sym_POUND] = ACTIONS(113), }, - [2232] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(6708), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(6448), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(6152), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(5210), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5033), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2232), - [anon_sym_LBRACK] = ACTIONS(4145), - [anon_sym_LPAREN] = ACTIONS(5889), - [anon_sym_DOLLAR] = ACTIONS(5891), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(4153), - [anon_sym_DOT_DOT] = ACTIONS(5893), - [anon_sym_not] = ACTIONS(4157), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5895), - [anon_sym_DOT_DOT_LT] = ACTIONS(5895), - [anon_sym_null] = ACTIONS(4161), - [anon_sym_true] = ACTIONS(4163), - [anon_sym_false] = ACTIONS(4163), - [aux_sym__val_number_decimal_token1] = ACTIONS(4165), - [aux_sym__val_number_decimal_token2] = ACTIONS(4167), - [anon_sym_DOT2] = ACTIONS(5897), - [aux_sym__val_number_decimal_token3] = ACTIONS(4171), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5899), - [aux_sym__val_number_token5] = ACTIONS(5899), - [aux_sym__val_number_token6] = ACTIONS(5899), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(4181), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2503] = { + [sym_comment] = STATE(2503), + [anon_sym_SEMI] = ACTIONS(938), + [anon_sym_LF] = ACTIONS(940), + [anon_sym_LBRACK] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(938), + [anon_sym_RPAREN] = ACTIONS(938), + [anon_sym_PIPE] = ACTIONS(938), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_in] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_RBRACE] = ACTIONS(938), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_STAR_STAR] = ACTIONS(938), + [anon_sym_PLUS_PLUS] = ACTIONS(938), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(938), + [anon_sym_SLASH_SLASH] = ACTIONS(938), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_bit_DASHshl] = ACTIONS(938), + [anon_sym_bit_DASHshr] = ACTIONS(938), + [anon_sym_EQ_EQ] = ACTIONS(938), + [anon_sym_BANG_EQ] = ACTIONS(938), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(938), + [anon_sym_GT_EQ] = ACTIONS(938), + [anon_sym_not_DASHin] = ACTIONS(938), + [anon_sym_starts_DASHwith] = ACTIONS(938), + [anon_sym_ends_DASHwith] = ACTIONS(938), + [anon_sym_EQ_TILDE] = ACTIONS(938), + [anon_sym_BANG_TILDE] = ACTIONS(938), + [anon_sym_bit_DASHand] = ACTIONS(938), + [anon_sym_bit_DASHxor] = ACTIONS(938), + [anon_sym_bit_DASHor] = ACTIONS(938), + [anon_sym_and] = ACTIONS(938), + [anon_sym_xor] = ACTIONS(938), + [anon_sym_or] = ACTIONS(938), + [anon_sym_not] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ] = ACTIONS(938), + [anon_sym_DOT_DOT_LT] = ACTIONS(938), + [anon_sym_null] = ACTIONS(938), + [anon_sym_true] = ACTIONS(938), + [anon_sym_false] = ACTIONS(938), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(938), + [anon_sym_DOT2] = ACTIONS(938), + [aux_sym__val_number_decimal_token3] = ACTIONS(938), + [aux_sym__val_number_token1] = ACTIONS(938), + [aux_sym__val_number_token2] = ACTIONS(938), + [aux_sym__val_number_token3] = ACTIONS(938), + [aux_sym__val_number_token4] = ACTIONS(938), + [aux_sym__val_number_token5] = ACTIONS(938), + [aux_sym__val_number_token6] = ACTIONS(938), + [anon_sym_0b] = ACTIONS(938), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym__str_single_quotes] = ACTIONS(938), + [sym__str_back_ticks] = ACTIONS(938), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(938), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(938), + [aux_sym_unquoted_token5] = ACTIONS(3638), + [anon_sym_POUND] = ACTIONS(113), }, - [2233] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(6709), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(6448), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(6152), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(5210), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5036), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2233), - [anon_sym_LBRACK] = ACTIONS(4145), - [anon_sym_LPAREN] = ACTIONS(5889), - [anon_sym_DOLLAR] = ACTIONS(5891), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(4153), - [anon_sym_DOT_DOT] = ACTIONS(5893), - [anon_sym_not] = ACTIONS(4157), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5895), - [anon_sym_DOT_DOT_LT] = ACTIONS(5895), - [anon_sym_null] = ACTIONS(4161), - [anon_sym_true] = ACTIONS(4163), - [anon_sym_false] = ACTIONS(4163), - [aux_sym__val_number_decimal_token1] = ACTIONS(4165), - [aux_sym__val_number_decimal_token2] = ACTIONS(4167), - [anon_sym_DOT2] = ACTIONS(5897), - [aux_sym__val_number_decimal_token3] = ACTIONS(4171), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5899), - [aux_sym__val_number_token5] = ACTIONS(5899), - [aux_sym__val_number_token6] = ACTIONS(5899), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(4181), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2504] = { + [sym_comment] = STATE(2504), + [ts_builtin_sym_end] = ACTIONS(1026), + [anon_sym_SEMI] = ACTIONS(1024), + [anon_sym_LF] = ACTIONS(1026), + [anon_sym_LBRACK] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_PIPE] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_GT] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym_DOT_DOT] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(6425), + [anon_sym_STAR_STAR] = ACTIONS(1024), + [anon_sym_PLUS_PLUS] = ACTIONS(1024), + [anon_sym_SLASH] = ACTIONS(1024), + [anon_sym_mod] = ACTIONS(1024), + [anon_sym_SLASH_SLASH] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_bit_DASHshl] = ACTIONS(1024), + [anon_sym_bit_DASHshr] = ACTIONS(1024), + [anon_sym_EQ_EQ] = ACTIONS(1024), + [anon_sym_BANG_EQ] = ACTIONS(1024), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ] = ACTIONS(1024), + [anon_sym_GT_EQ] = ACTIONS(1024), + [anon_sym_not_DASHin] = ACTIONS(1024), + [anon_sym_starts_DASHwith] = ACTIONS(1024), + [anon_sym_ends_DASHwith] = ACTIONS(1024), + [anon_sym_EQ_TILDE] = ACTIONS(1024), + [anon_sym_BANG_TILDE] = ACTIONS(1024), + [anon_sym_bit_DASHand] = ACTIONS(1024), + [anon_sym_bit_DASHxor] = ACTIONS(1024), + [anon_sym_bit_DASHor] = ACTIONS(1024), + [anon_sym_and] = ACTIONS(1024), + [anon_sym_xor] = ACTIONS(1024), + [anon_sym_or] = ACTIONS(1024), + [anon_sym_not] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT] = ACTIONS(1024), + [anon_sym_null] = ACTIONS(1024), + [anon_sym_true] = ACTIONS(1024), + [anon_sym_false] = ACTIONS(1024), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1024), + [aux_sym__val_number_token1] = ACTIONS(1024), + [aux_sym__val_number_token2] = ACTIONS(1024), + [aux_sym__val_number_token3] = ACTIONS(1024), + [aux_sym__val_number_token4] = ACTIONS(1024), + [aux_sym__val_number_token5] = ACTIONS(1024), + [aux_sym__val_number_token6] = ACTIONS(1024), + [anon_sym_0b] = ACTIONS(1024), + [anon_sym_0o] = ACTIONS(1024), + [anon_sym_0x] = ACTIONS(1024), + [sym_val_date] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym__str_single_quotes] = ACTIONS(1024), + [sym__str_back_ticks] = ACTIONS(1024), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1024), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1024), + [anon_sym_POUND] = ACTIONS(113), }, - [2234] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(6710), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(6448), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(6152), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(5210), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(4951), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2234), - [anon_sym_LBRACK] = ACTIONS(4145), - [anon_sym_LPAREN] = ACTIONS(5889), - [anon_sym_DOLLAR] = ACTIONS(5891), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(4153), - [anon_sym_DOT_DOT] = ACTIONS(5893), - [anon_sym_not] = ACTIONS(4157), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5895), - [anon_sym_DOT_DOT_LT] = ACTIONS(5895), - [anon_sym_null] = ACTIONS(4161), - [anon_sym_true] = ACTIONS(4163), - [anon_sym_false] = ACTIONS(4163), - [aux_sym__val_number_decimal_token1] = ACTIONS(4165), - [aux_sym__val_number_decimal_token2] = ACTIONS(4167), - [anon_sym_DOT2] = ACTIONS(5897), - [aux_sym__val_number_decimal_token3] = ACTIONS(4171), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5899), - [aux_sym__val_number_token5] = ACTIONS(5899), - [aux_sym__val_number_token6] = ACTIONS(5899), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(4181), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2505] = { + [sym_comment] = STATE(2505), + [ts_builtin_sym_end] = ACTIONS(1026), + [anon_sym_SEMI] = ACTIONS(1024), + [anon_sym_LF] = ACTIONS(1026), + [anon_sym_LBRACK] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_PIPE] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_GT] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym_DOT_DOT] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(6425), + [anon_sym_STAR_STAR] = ACTIONS(1024), + [anon_sym_PLUS_PLUS] = ACTIONS(1024), + [anon_sym_SLASH] = ACTIONS(1024), + [anon_sym_mod] = ACTIONS(1024), + [anon_sym_SLASH_SLASH] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_bit_DASHshl] = ACTIONS(1024), + [anon_sym_bit_DASHshr] = ACTIONS(1024), + [anon_sym_EQ_EQ] = ACTIONS(1024), + [anon_sym_BANG_EQ] = ACTIONS(1024), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ] = ACTIONS(1024), + [anon_sym_GT_EQ] = ACTIONS(1024), + [anon_sym_not_DASHin] = ACTIONS(1024), + [anon_sym_starts_DASHwith] = ACTIONS(1024), + [anon_sym_ends_DASHwith] = ACTIONS(1024), + [anon_sym_EQ_TILDE] = ACTIONS(1024), + [anon_sym_BANG_TILDE] = ACTIONS(1024), + [anon_sym_bit_DASHand] = ACTIONS(1024), + [anon_sym_bit_DASHxor] = ACTIONS(1024), + [anon_sym_bit_DASHor] = ACTIONS(1024), + [anon_sym_and] = ACTIONS(1024), + [anon_sym_xor] = ACTIONS(1024), + [anon_sym_or] = ACTIONS(1024), + [anon_sym_not] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT] = ACTIONS(1024), + [anon_sym_null] = ACTIONS(1024), + [anon_sym_true] = ACTIONS(1024), + [anon_sym_false] = ACTIONS(1024), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1024), + [aux_sym__val_number_token1] = ACTIONS(1024), + [aux_sym__val_number_token2] = ACTIONS(1024), + [aux_sym__val_number_token3] = ACTIONS(1024), + [aux_sym__val_number_token4] = ACTIONS(1024), + [aux_sym__val_number_token5] = ACTIONS(1024), + [aux_sym__val_number_token6] = ACTIONS(1024), + [anon_sym_0b] = ACTIONS(1024), + [anon_sym_0o] = ACTIONS(1024), + [anon_sym_0x] = ACTIONS(1024), + [sym_val_date] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym__str_single_quotes] = ACTIONS(1024), + [sym__str_back_ticks] = ACTIONS(1024), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1024), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1024), + [anon_sym_POUND] = ACTIONS(113), }, - [2235] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(6711), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(6448), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(6152), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(5210), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5052), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2235), - [anon_sym_LBRACK] = ACTIONS(4145), - [anon_sym_LPAREN] = ACTIONS(5889), - [anon_sym_DOLLAR] = ACTIONS(5891), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(4153), - [anon_sym_DOT_DOT] = ACTIONS(5893), - [anon_sym_not] = ACTIONS(4157), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5895), - [anon_sym_DOT_DOT_LT] = ACTIONS(5895), - [anon_sym_null] = ACTIONS(4161), - [anon_sym_true] = ACTIONS(4163), - [anon_sym_false] = ACTIONS(4163), - [aux_sym__val_number_decimal_token1] = ACTIONS(4165), - [aux_sym__val_number_decimal_token2] = ACTIONS(4167), - [anon_sym_DOT2] = ACTIONS(5897), - [aux_sym__val_number_decimal_token3] = ACTIONS(4171), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5899), - [aux_sym__val_number_token5] = ACTIONS(5899), - [aux_sym__val_number_token6] = ACTIONS(5899), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(4181), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2506] = { + [sym_comment] = STATE(2506), + [anon_sym_SEMI] = ACTIONS(1047), + [anon_sym_LF] = ACTIONS(1049), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1047), + [anon_sym_RPAREN] = ACTIONS(1047), + [anon_sym_PIPE] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1047), + [anon_sym_GT] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_in] = ACTIONS(1047), + [anon_sym_LBRACE] = ACTIONS(1047), + [anon_sym_RBRACE] = ACTIONS(1047), + [anon_sym_DOT_DOT] = ACTIONS(1047), + [anon_sym_STAR] = ACTIONS(1047), + [anon_sym_STAR_STAR] = ACTIONS(1047), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_SLASH] = ACTIONS(1047), + [anon_sym_mod] = ACTIONS(1047), + [anon_sym_SLASH_SLASH] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1047), + [anon_sym_bit_DASHshl] = ACTIONS(1047), + [anon_sym_bit_DASHshr] = ACTIONS(1047), + [anon_sym_EQ_EQ] = ACTIONS(1047), + [anon_sym_BANG_EQ] = ACTIONS(1047), + [anon_sym_LT2] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1047), + [anon_sym_GT_EQ] = ACTIONS(1047), + [anon_sym_not_DASHin] = ACTIONS(1047), + [anon_sym_starts_DASHwith] = ACTIONS(1047), + [anon_sym_ends_DASHwith] = ACTIONS(1047), + [anon_sym_EQ_TILDE] = ACTIONS(1047), + [anon_sym_BANG_TILDE] = ACTIONS(1047), + [anon_sym_bit_DASHand] = ACTIONS(1047), + [anon_sym_bit_DASHxor] = ACTIONS(1047), + [anon_sym_bit_DASHor] = ACTIONS(1047), + [anon_sym_and] = ACTIONS(1047), + [anon_sym_xor] = ACTIONS(1047), + [anon_sym_or] = ACTIONS(1047), + [anon_sym_not] = ACTIONS(1047), + [anon_sym_DOT] = ACTIONS(1047), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1047), + [anon_sym_DOT_DOT_LT] = ACTIONS(1047), + [anon_sym_null] = ACTIONS(1047), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [aux_sym__val_number_decimal_token1] = ACTIONS(1047), + [aux_sym__val_number_decimal_token2] = ACTIONS(1047), + [anon_sym_DOT2] = ACTIONS(1047), + [aux_sym__val_number_decimal_token3] = ACTIONS(1047), + [aux_sym__val_number_token1] = ACTIONS(1047), + [aux_sym__val_number_token2] = ACTIONS(1047), + [aux_sym__val_number_token3] = ACTIONS(1047), + [aux_sym__val_number_token4] = ACTIONS(1047), + [aux_sym__val_number_token5] = ACTIONS(1047), + [aux_sym__val_number_token6] = ACTIONS(1047), + [anon_sym_0b] = ACTIONS(1047), + [anon_sym_0o] = ACTIONS(1047), + [anon_sym_0x] = ACTIONS(1047), + [sym_val_date] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1047), + [sym__str_single_quotes] = ACTIONS(1047), + [sym__str_back_ticks] = ACTIONS(1047), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1047), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1047), + [anon_sym_POUND] = ACTIONS(113), }, - [2236] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(6712), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(6448), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(6152), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(5210), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5054), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2236), - [anon_sym_LBRACK] = ACTIONS(4145), - [anon_sym_LPAREN] = ACTIONS(5889), - [anon_sym_DOLLAR] = ACTIONS(5891), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(4153), - [anon_sym_DOT_DOT] = ACTIONS(5893), - [anon_sym_not] = ACTIONS(4157), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5895), - [anon_sym_DOT_DOT_LT] = ACTIONS(5895), - [anon_sym_null] = ACTIONS(4161), - [anon_sym_true] = ACTIONS(4163), - [anon_sym_false] = ACTIONS(4163), - [aux_sym__val_number_decimal_token1] = ACTIONS(4165), - [aux_sym__val_number_decimal_token2] = ACTIONS(4167), - [anon_sym_DOT2] = ACTIONS(5897), - [aux_sym__val_number_decimal_token3] = ACTIONS(4171), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5899), - [aux_sym__val_number_token5] = ACTIONS(5899), - [aux_sym__val_number_token6] = ACTIONS(5899), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(4181), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2507] = { + [sym_comment] = STATE(2507), + [anon_sym_SEMI] = ACTIONS(1037), + [anon_sym_LF] = ACTIONS(1039), + [anon_sym_LBRACK] = ACTIONS(1037), + [anon_sym_LPAREN] = ACTIONS(1037), + [anon_sym_RPAREN] = ACTIONS(1037), + [anon_sym_PIPE] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1037), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_in] = ACTIONS(1037), + [anon_sym_LBRACE] = ACTIONS(1037), + [anon_sym_RBRACE] = ACTIONS(1037), + [anon_sym_DOT_DOT] = ACTIONS(1037), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_STAR_STAR] = ACTIONS(1037), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1037), + [anon_sym_mod] = ACTIONS(1037), + [anon_sym_SLASH_SLASH] = ACTIONS(1037), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_bit_DASHshl] = ACTIONS(1037), + [anon_sym_bit_DASHshr] = ACTIONS(1037), + [anon_sym_EQ_EQ] = ACTIONS(1037), + [anon_sym_BANG_EQ] = ACTIONS(1037), + [anon_sym_LT2] = ACTIONS(1037), + [anon_sym_LT_EQ] = ACTIONS(1037), + [anon_sym_GT_EQ] = ACTIONS(1037), + [anon_sym_not_DASHin] = ACTIONS(1037), + [anon_sym_starts_DASHwith] = ACTIONS(1037), + [anon_sym_ends_DASHwith] = ACTIONS(1037), + [anon_sym_EQ_TILDE] = ACTIONS(1037), + [anon_sym_BANG_TILDE] = ACTIONS(1037), + [anon_sym_bit_DASHand] = ACTIONS(1037), + [anon_sym_bit_DASHxor] = ACTIONS(1037), + [anon_sym_bit_DASHor] = ACTIONS(1037), + [anon_sym_and] = ACTIONS(1037), + [anon_sym_xor] = ACTIONS(1037), + [anon_sym_or] = ACTIONS(1037), + [anon_sym_not] = ACTIONS(1037), + [anon_sym_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1037), + [anon_sym_DOT_DOT_LT] = ACTIONS(1037), + [anon_sym_null] = ACTIONS(1037), + [anon_sym_true] = ACTIONS(1037), + [anon_sym_false] = ACTIONS(1037), + [aux_sym__val_number_decimal_token1] = ACTIONS(1037), + [aux_sym__val_number_decimal_token2] = ACTIONS(1037), + [anon_sym_DOT2] = ACTIONS(1037), + [aux_sym__val_number_decimal_token3] = ACTIONS(1037), + [aux_sym__val_number_token1] = ACTIONS(1037), + [aux_sym__val_number_token2] = ACTIONS(1037), + [aux_sym__val_number_token3] = ACTIONS(1037), + [aux_sym__val_number_token4] = ACTIONS(1037), + [aux_sym__val_number_token5] = ACTIONS(1037), + [aux_sym__val_number_token6] = ACTIONS(1037), + [anon_sym_0b] = ACTIONS(1037), + [anon_sym_0o] = ACTIONS(1037), + [anon_sym_0x] = ACTIONS(1037), + [sym_val_date] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1037), + [sym__str_single_quotes] = ACTIONS(1037), + [sym__str_back_ticks] = ACTIONS(1037), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1037), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1037), + [anon_sym_POUND] = ACTIONS(113), }, - [2237] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(6713), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(6448), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(6152), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(5210), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5067), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2237), - [anon_sym_LBRACK] = ACTIONS(4145), - [anon_sym_LPAREN] = ACTIONS(5889), - [anon_sym_DOLLAR] = ACTIONS(5891), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(4153), - [anon_sym_DOT_DOT] = ACTIONS(5893), - [anon_sym_not] = ACTIONS(4157), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5895), - [anon_sym_DOT_DOT_LT] = ACTIONS(5895), - [anon_sym_null] = ACTIONS(4161), - [anon_sym_true] = ACTIONS(4163), - [anon_sym_false] = ACTIONS(4163), - [aux_sym__val_number_decimal_token1] = ACTIONS(4165), - [aux_sym__val_number_decimal_token2] = ACTIONS(4167), - [anon_sym_DOT2] = ACTIONS(5897), - [aux_sym__val_number_decimal_token3] = ACTIONS(4171), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5899), - [aux_sym__val_number_token5] = ACTIONS(5899), - [aux_sym__val_number_token6] = ACTIONS(5899), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(4181), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), + [2508] = { + [sym_comment] = STATE(2508), + [anon_sym_SEMI] = ACTIONS(1041), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_LBRACK] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1041), + [anon_sym_RPAREN] = ACTIONS(1041), + [anon_sym_PIPE] = ACTIONS(1041), + [anon_sym_DOLLAR] = ACTIONS(1041), + [anon_sym_GT] = ACTIONS(1041), + [anon_sym_DASH_DASH] = ACTIONS(1041), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_in] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_RBRACE] = ACTIONS(1041), + [anon_sym_DOT_DOT] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_STAR_STAR] = ACTIONS(1041), + [anon_sym_PLUS_PLUS] = ACTIONS(1041), + [anon_sym_SLASH] = ACTIONS(1041), + [anon_sym_mod] = ACTIONS(1041), + [anon_sym_SLASH_SLASH] = ACTIONS(1041), + [anon_sym_PLUS] = ACTIONS(1041), + [anon_sym_bit_DASHshl] = ACTIONS(1041), + [anon_sym_bit_DASHshr] = ACTIONS(1041), + [anon_sym_EQ_EQ] = ACTIONS(1041), + [anon_sym_BANG_EQ] = ACTIONS(1041), + [anon_sym_LT2] = ACTIONS(1041), + [anon_sym_LT_EQ] = ACTIONS(1041), + [anon_sym_GT_EQ] = ACTIONS(1041), + [anon_sym_not_DASHin] = ACTIONS(1041), + [anon_sym_starts_DASHwith] = ACTIONS(1041), + [anon_sym_ends_DASHwith] = ACTIONS(1041), + [anon_sym_EQ_TILDE] = ACTIONS(1041), + [anon_sym_BANG_TILDE] = ACTIONS(1041), + [anon_sym_bit_DASHand] = ACTIONS(1041), + [anon_sym_bit_DASHxor] = ACTIONS(1041), + [anon_sym_bit_DASHor] = ACTIONS(1041), + [anon_sym_and] = ACTIONS(1041), + [anon_sym_xor] = ACTIONS(1041), + [anon_sym_or] = ACTIONS(1041), + [anon_sym_not] = ACTIONS(1041), + [anon_sym_DOT] = ACTIONS(1041), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1041), + [anon_sym_DOT_DOT_LT] = ACTIONS(1041), + [anon_sym_null] = ACTIONS(1041), + [anon_sym_true] = ACTIONS(1041), + [anon_sym_false] = ACTIONS(1041), + [aux_sym__val_number_decimal_token1] = ACTIONS(1041), + [aux_sym__val_number_decimal_token2] = ACTIONS(1041), + [anon_sym_DOT2] = ACTIONS(1041), + [aux_sym__val_number_decimal_token3] = ACTIONS(1041), + [aux_sym__val_number_token1] = ACTIONS(1041), + [aux_sym__val_number_token2] = ACTIONS(1041), + [aux_sym__val_number_token3] = ACTIONS(1041), + [aux_sym__val_number_token4] = ACTIONS(1041), + [aux_sym__val_number_token5] = ACTIONS(1041), + [aux_sym__val_number_token6] = ACTIONS(1041), + [anon_sym_0b] = ACTIONS(1041), + [anon_sym_0o] = ACTIONS(1041), + [anon_sym_0x] = ACTIONS(1041), + [sym_val_date] = ACTIONS(1041), + [anon_sym_DQUOTE] = ACTIONS(1041), + [sym__str_single_quotes] = ACTIONS(1041), + [sym__str_back_ticks] = ACTIONS(1041), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1041), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1041), + [anon_sym_POUND] = ACTIONS(113), }, - [2238] = { - [sym_expr_unary] = STATE(2967), - [sym__expr_unary_minus] = STATE(2950), - [sym_expr_binary] = STATE(2967), - [sym__expr_binary_expression] = STATE(3001), - [sym_expr_parenthesized] = STATE(2967), - [sym__val_range] = STATE(10712), - [sym__value] = STATE(2967), - [sym_val_nothing] = STATE(2964), - [sym_val_bool] = STATE(2946), - [sym_val_variable] = STATE(2964), - [sym__var] = STATE(2527), - [sym_val_number] = STATE(2964), - [sym__val_number_decimal] = STATE(1439), - [sym__val_number] = STATE(2999), - [sym_val_duration] = STATE(2964), - [sym_val_filesize] = STATE(2964), - [sym_val_binary] = STATE(2964), - [sym_val_string] = STATE(2964), - [sym__str_double_quotes] = STATE(2965), - [sym_val_interpolated] = STATE(2964), - [sym__inter_single_quotes] = STATE(3028), - [sym__inter_double_quotes] = STATE(2984), - [sym_val_list] = STATE(2964), - [sym_val_record] = STATE(2964), - [sym_val_table] = STATE(2964), - [sym_val_closure] = STATE(2964), - [sym_unquoted] = STATE(2968), - [sym__unquoted_anonymous_prefix] = STATE(11046), - [sym_comment] = STATE(2238), - [anon_sym_LBRACK] = ACTIONS(4193), - [anon_sym_LPAREN] = ACTIONS(5901), - [anon_sym_DOLLAR] = ACTIONS(5903), - [anon_sym_DASH] = ACTIONS(4199), - [anon_sym_LBRACE] = ACTIONS(4201), - [anon_sym_DOT_DOT] = ACTIONS(5905), - [anon_sym_not] = ACTIONS(4205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5907), - [anon_sym_DOT_DOT_LT] = ACTIONS(5907), - [anon_sym_null] = ACTIONS(4209), - [anon_sym_true] = ACTIONS(4211), - [anon_sym_false] = ACTIONS(4211), - [aux_sym__val_number_decimal_token1] = ACTIONS(4213), - [aux_sym__val_number_decimal_token2] = ACTIONS(4215), - [anon_sym_DOT2] = ACTIONS(5909), - [aux_sym__val_number_decimal_token3] = ACTIONS(4219), - [aux_sym__val_number_token1] = ACTIONS(4221), - [aux_sym__val_number_token2] = ACTIONS(4221), - [aux_sym__val_number_token3] = ACTIONS(4221), - [aux_sym__val_number_token4] = ACTIONS(5911), - [aux_sym__val_number_token5] = ACTIONS(5911), - [aux_sym__val_number_token6] = ACTIONS(5911), - [anon_sym_0b] = ACTIONS(4225), - [anon_sym_0o] = ACTIONS(4227), - [anon_sym_0x] = ACTIONS(4227), - [sym_val_date] = ACTIONS(4229), - [anon_sym_DQUOTE] = ACTIONS(4231), - [sym__str_single_quotes] = ACTIONS(4233), - [sym__str_back_ticks] = ACTIONS(4233), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4235), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4237), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5913), - [anon_sym_POUND] = ACTIONS(3), + [2509] = { + [sym_comment] = STATE(2509), + [anon_sym_SEMI] = ACTIONS(1139), + [anon_sym_LF] = ACTIONS(1139), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LPAREN] = ACTIONS(1139), + [anon_sym_RPAREN] = ACTIONS(1139), + [anon_sym_PIPE] = ACTIONS(1139), + [anon_sym_DOLLAR] = ACTIONS(1139), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_DASH_DASH] = ACTIONS(1139), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_in] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1139), + [anon_sym_RBRACE] = ACTIONS(1139), + [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_STAR_STAR] = ACTIONS(1139), + [anon_sym_PLUS_PLUS] = ACTIONS(1139), + [anon_sym_SLASH] = ACTIONS(1139), + [anon_sym_mod] = ACTIONS(1139), + [anon_sym_SLASH_SLASH] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_bit_DASHshl] = ACTIONS(1139), + [anon_sym_bit_DASHshr] = ACTIONS(1139), + [anon_sym_EQ_EQ] = ACTIONS(1139), + [anon_sym_BANG_EQ] = ACTIONS(1139), + [anon_sym_LT2] = ACTIONS(1139), + [anon_sym_LT_EQ] = ACTIONS(1139), + [anon_sym_GT_EQ] = ACTIONS(1139), + [anon_sym_not_DASHin] = ACTIONS(1139), + [anon_sym_starts_DASHwith] = ACTIONS(1139), + [anon_sym_ends_DASHwith] = ACTIONS(1139), + [anon_sym_EQ_TILDE] = ACTIONS(1139), + [anon_sym_BANG_TILDE] = ACTIONS(1139), + [anon_sym_bit_DASHand] = ACTIONS(1139), + [anon_sym_bit_DASHxor] = ACTIONS(1139), + [anon_sym_bit_DASHor] = ACTIONS(1139), + [anon_sym_and] = ACTIONS(1139), + [anon_sym_xor] = ACTIONS(1139), + [anon_sym_or] = ACTIONS(1139), + [anon_sym_not] = ACTIONS(1139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1139), + [anon_sym_DOT_DOT_LT] = ACTIONS(1139), + [anon_sym_null] = ACTIONS(1139), + [anon_sym_true] = ACTIONS(1139), + [anon_sym_false] = ACTIONS(1139), + [aux_sym__val_number_decimal_token1] = ACTIONS(1139), + [aux_sym__val_number_decimal_token2] = ACTIONS(1139), + [anon_sym_DOT2] = ACTIONS(1139), + [aux_sym__val_number_decimal_token3] = ACTIONS(1139), + [aux_sym__val_number_token1] = ACTIONS(1139), + [aux_sym__val_number_token2] = ACTIONS(1139), + [aux_sym__val_number_token3] = ACTIONS(1139), + [aux_sym__val_number_token4] = ACTIONS(1139), + [aux_sym__val_number_token5] = ACTIONS(1139), + [aux_sym__val_number_token6] = ACTIONS(1139), + [anon_sym_0b] = ACTIONS(1139), + [anon_sym_0o] = ACTIONS(1139), + [anon_sym_0x] = ACTIONS(1139), + [sym_val_date] = ACTIONS(1139), + [anon_sym_DQUOTE] = ACTIONS(1139), + [sym__str_single_quotes] = ACTIONS(1139), + [sym__str_back_ticks] = ACTIONS(1139), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1139), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1139), + [aux_sym__list_item_starts_with_sign_token1] = ACTIONS(6427), + [anon_sym_POUND] = ACTIONS(113), }, - [2239] = { - [sym_expr_unary] = STATE(2967), - [sym__expr_unary_minus] = STATE(2950), - [sym_expr_binary] = STATE(2967), - [sym__expr_binary_expression] = STATE(3002), - [sym_expr_parenthesized] = STATE(2967), - [sym__val_range] = STATE(10712), - [sym__value] = STATE(2967), - [sym_val_nothing] = STATE(2964), - [sym_val_bool] = STATE(2946), - [sym_val_variable] = STATE(2964), - [sym__var] = STATE(2527), - [sym_val_number] = STATE(2964), - [sym__val_number_decimal] = STATE(1439), - [sym__val_number] = STATE(2999), - [sym_val_duration] = STATE(2964), - [sym_val_filesize] = STATE(2964), - [sym_val_binary] = STATE(2964), - [sym_val_string] = STATE(2964), - [sym__str_double_quotes] = STATE(2965), - [sym_val_interpolated] = STATE(2964), - [sym__inter_single_quotes] = STATE(3028), - [sym__inter_double_quotes] = STATE(2984), - [sym_val_list] = STATE(2964), - [sym_val_record] = STATE(2964), - [sym_val_table] = STATE(2964), - [sym_val_closure] = STATE(2964), - [sym_unquoted] = STATE(2969), - [sym__unquoted_anonymous_prefix] = STATE(11046), - [sym_comment] = STATE(2239), - [anon_sym_LBRACK] = ACTIONS(4193), - [anon_sym_LPAREN] = ACTIONS(5901), - [anon_sym_DOLLAR] = ACTIONS(5903), - [anon_sym_DASH] = ACTIONS(4199), - [anon_sym_LBRACE] = ACTIONS(4201), - [anon_sym_DOT_DOT] = ACTIONS(5905), - [anon_sym_not] = ACTIONS(4205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5907), - [anon_sym_DOT_DOT_LT] = ACTIONS(5907), - [anon_sym_null] = ACTIONS(4209), - [anon_sym_true] = ACTIONS(4211), - [anon_sym_false] = ACTIONS(4211), - [aux_sym__val_number_decimal_token1] = ACTIONS(4213), - [aux_sym__val_number_decimal_token2] = ACTIONS(4215), - [anon_sym_DOT2] = ACTIONS(5909), - [aux_sym__val_number_decimal_token3] = ACTIONS(4219), - [aux_sym__val_number_token1] = ACTIONS(4221), - [aux_sym__val_number_token2] = ACTIONS(4221), - [aux_sym__val_number_token3] = ACTIONS(4221), - [aux_sym__val_number_token4] = ACTIONS(5911), - [aux_sym__val_number_token5] = ACTIONS(5911), - [aux_sym__val_number_token6] = ACTIONS(5911), - [anon_sym_0b] = ACTIONS(4225), - [anon_sym_0o] = ACTIONS(4227), - [anon_sym_0x] = ACTIONS(4227), - [sym_val_date] = ACTIONS(4229), - [anon_sym_DQUOTE] = ACTIONS(4231), - [sym__str_single_quotes] = ACTIONS(4233), - [sym__str_back_ticks] = ACTIONS(4233), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4235), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4237), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5913), - [anon_sym_POUND] = ACTIONS(3), + [2510] = { + [sym_comment] = STATE(2510), + [ts_builtin_sym_end] = ACTIONS(1053), + [anon_sym_export] = ACTIONS(1051), + [anon_sym_alias] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(1051), + [anon_sym_let_DASHenv] = ACTIONS(1051), + [anon_sym_mut] = ACTIONS(1051), + [anon_sym_const] = ACTIONS(1051), + [anon_sym_SEMI] = ACTIONS(1051), + [sym_cmd_identifier] = ACTIONS(1051), + [anon_sym_LF] = ACTIONS(1053), + [anon_sym_def] = ACTIONS(1051), + [anon_sym_export_DASHenv] = ACTIONS(1051), + [anon_sym_extern] = ACTIONS(1051), + [anon_sym_module] = ACTIONS(1051), + [anon_sym_use] = ACTIONS(1051), + [anon_sym_LBRACK] = ACTIONS(1051), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_DOLLAR] = ACTIONS(1051), + [anon_sym_error] = ACTIONS(1051), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_break] = ACTIONS(1051), + [anon_sym_continue] = ACTIONS(1051), + [anon_sym_for] = ACTIONS(1051), + [anon_sym_loop] = ACTIONS(1051), + [anon_sym_while] = ACTIONS(1051), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_if] = ACTIONS(1051), + [anon_sym_match] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(1051), + [anon_sym_DOT_DOT] = ACTIONS(1051), + [anon_sym_try] = ACTIONS(1051), + [anon_sym_return] = ACTIONS(1051), + [anon_sym_source] = ACTIONS(1051), + [anon_sym_source_DASHenv] = ACTIONS(1051), + [anon_sym_register] = ACTIONS(1051), + [anon_sym_hide] = ACTIONS(1051), + [anon_sym_hide_DASHenv] = ACTIONS(1051), + [anon_sym_overlay] = ACTIONS(1051), + [anon_sym_where] = ACTIONS(1051), + [anon_sym_not] = ACTIONS(1051), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1051), + [anon_sym_DOT_DOT_LT] = ACTIONS(1051), + [anon_sym_null] = ACTIONS(1051), + [anon_sym_true] = ACTIONS(1051), + [anon_sym_false] = ACTIONS(1051), + [aux_sym__val_number_decimal_token1] = ACTIONS(1051), + [aux_sym__val_number_decimal_token2] = ACTIONS(1051), + [anon_sym_DOT2] = ACTIONS(1051), + [aux_sym__val_number_decimal_token3] = ACTIONS(1051), + [aux_sym__val_number_token1] = ACTIONS(1051), + [aux_sym__val_number_token2] = ACTIONS(1051), + [aux_sym__val_number_token3] = ACTIONS(1051), + [aux_sym__val_number_token4] = ACTIONS(1051), + [aux_sym__val_number_token5] = ACTIONS(1051), + [aux_sym__val_number_token6] = ACTIONS(1051), + [anon_sym_0b] = ACTIONS(1051), + [anon_sym_0o] = ACTIONS(1051), + [anon_sym_0x] = ACTIONS(1051), + [sym_val_date] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(1051), + [sym__str_single_quotes] = ACTIONS(1051), + [sym__str_back_ticks] = ACTIONS(1051), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1051), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1051), + [anon_sym_CARET] = ACTIONS(1051), + [anon_sym_POUND] = ACTIONS(113), }, - [2240] = { - [sym_expr_unary] = STATE(2967), - [sym__expr_unary_minus] = STATE(2950), - [sym_expr_binary] = STATE(2967), - [sym__expr_binary_expression] = STATE(3003), - [sym_expr_parenthesized] = STATE(2967), - [sym__val_range] = STATE(10712), - [sym__value] = STATE(2967), - [sym_val_nothing] = STATE(2964), - [sym_val_bool] = STATE(2946), - [sym_val_variable] = STATE(2964), - [sym__var] = STATE(2527), - [sym_val_number] = STATE(2964), - [sym__val_number_decimal] = STATE(1439), - [sym__val_number] = STATE(2999), - [sym_val_duration] = STATE(2964), - [sym_val_filesize] = STATE(2964), - [sym_val_binary] = STATE(2964), - [sym_val_string] = STATE(2964), - [sym__str_double_quotes] = STATE(2965), - [sym_val_interpolated] = STATE(2964), - [sym__inter_single_quotes] = STATE(3028), - [sym__inter_double_quotes] = STATE(2984), - [sym_val_list] = STATE(2964), - [sym_val_record] = STATE(2964), - [sym_val_table] = STATE(2964), - [sym_val_closure] = STATE(2964), - [sym_unquoted] = STATE(2970), - [sym__unquoted_anonymous_prefix] = STATE(11046), - [sym_comment] = STATE(2240), - [anon_sym_LBRACK] = ACTIONS(4193), - [anon_sym_LPAREN] = ACTIONS(5901), - [anon_sym_DOLLAR] = ACTIONS(5903), - [anon_sym_DASH] = ACTIONS(4199), - [anon_sym_LBRACE] = ACTIONS(4201), - [anon_sym_DOT_DOT] = ACTIONS(5905), - [anon_sym_not] = ACTIONS(4205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5907), - [anon_sym_DOT_DOT_LT] = ACTIONS(5907), - [anon_sym_null] = ACTIONS(4209), - [anon_sym_true] = ACTIONS(4211), - [anon_sym_false] = ACTIONS(4211), - [aux_sym__val_number_decimal_token1] = ACTIONS(4213), - [aux_sym__val_number_decimal_token2] = ACTIONS(4215), - [anon_sym_DOT2] = ACTIONS(5909), - [aux_sym__val_number_decimal_token3] = ACTIONS(4219), - [aux_sym__val_number_token1] = ACTIONS(4221), - [aux_sym__val_number_token2] = ACTIONS(4221), - [aux_sym__val_number_token3] = ACTIONS(4221), - [aux_sym__val_number_token4] = ACTIONS(5911), - [aux_sym__val_number_token5] = ACTIONS(5911), - [aux_sym__val_number_token6] = ACTIONS(5911), - [anon_sym_0b] = ACTIONS(4225), - [anon_sym_0o] = ACTIONS(4227), - [anon_sym_0x] = ACTIONS(4227), - [sym_val_date] = ACTIONS(4229), - [anon_sym_DQUOTE] = ACTIONS(4231), - [sym__str_single_quotes] = ACTIONS(4233), - [sym__str_back_ticks] = ACTIONS(4233), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4235), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4237), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5913), - [anon_sym_POUND] = ACTIONS(3), + [2511] = { + [sym_comment] = STATE(2511), + [ts_builtin_sym_end] = ACTIONS(1285), + [anon_sym_export] = ACTIONS(1283), + [anon_sym_alias] = ACTIONS(1283), + [anon_sym_let] = ACTIONS(1283), + [anon_sym_let_DASHenv] = ACTIONS(1283), + [anon_sym_mut] = ACTIONS(1283), + [anon_sym_const] = ACTIONS(1283), + [anon_sym_SEMI] = ACTIONS(1283), + [sym_cmd_identifier] = ACTIONS(1283), + [anon_sym_LF] = ACTIONS(1285), + [anon_sym_def] = ACTIONS(1283), + [anon_sym_export_DASHenv] = ACTIONS(1283), + [anon_sym_extern] = ACTIONS(1283), + [anon_sym_module] = ACTIONS(1283), + [anon_sym_use] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_LPAREN] = ACTIONS(1283), + [anon_sym_DOLLAR] = ACTIONS(1283), + [anon_sym_error] = ACTIONS(1283), + [anon_sym_DASH] = ACTIONS(1283), + [anon_sym_break] = ACTIONS(1283), + [anon_sym_continue] = ACTIONS(1283), + [anon_sym_for] = ACTIONS(1283), + [anon_sym_loop] = ACTIONS(1283), + [anon_sym_while] = ACTIONS(1283), + [anon_sym_do] = ACTIONS(1283), + [anon_sym_if] = ACTIONS(1283), + [anon_sym_match] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1283), + [anon_sym_DOT_DOT] = ACTIONS(1283), + [anon_sym_try] = ACTIONS(1283), + [anon_sym_return] = ACTIONS(1283), + [anon_sym_source] = ACTIONS(1283), + [anon_sym_source_DASHenv] = ACTIONS(1283), + [anon_sym_register] = ACTIONS(1283), + [anon_sym_hide] = ACTIONS(1283), + [anon_sym_hide_DASHenv] = ACTIONS(1283), + [anon_sym_overlay] = ACTIONS(1283), + [anon_sym_where] = ACTIONS(1283), + [anon_sym_not] = ACTIONS(1283), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1283), + [anon_sym_DOT_DOT_LT] = ACTIONS(1283), + [anon_sym_null] = ACTIONS(1283), + [anon_sym_true] = ACTIONS(1283), + [anon_sym_false] = ACTIONS(1283), + [aux_sym__val_number_decimal_token1] = ACTIONS(1283), + [aux_sym__val_number_decimal_token2] = ACTIONS(1283), + [anon_sym_DOT2] = ACTIONS(1283), + [aux_sym__val_number_decimal_token3] = ACTIONS(1283), + [aux_sym__val_number_token1] = ACTIONS(1283), + [aux_sym__val_number_token2] = ACTIONS(1283), + [aux_sym__val_number_token3] = ACTIONS(1283), + [aux_sym__val_number_token4] = ACTIONS(1283), + [aux_sym__val_number_token5] = ACTIONS(1283), + [aux_sym__val_number_token6] = ACTIONS(1283), + [anon_sym_0b] = ACTIONS(1283), + [anon_sym_0o] = ACTIONS(1283), + [anon_sym_0x] = ACTIONS(1283), + [sym_val_date] = ACTIONS(1283), + [anon_sym_DQUOTE] = ACTIONS(1283), + [sym__str_single_quotes] = ACTIONS(1283), + [sym__str_back_ticks] = ACTIONS(1283), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1283), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1283), + [anon_sym_CARET] = ACTIONS(1283), + [anon_sym_POUND] = ACTIONS(113), }, - [2241] = { - [sym_expr_unary] = STATE(2967), - [sym__expr_unary_minus] = STATE(2950), - [sym_expr_binary] = STATE(2967), - [sym__expr_binary_expression] = STATE(3004), - [sym_expr_parenthesized] = STATE(2967), - [sym__val_range] = STATE(10712), - [sym__value] = STATE(2967), - [sym_val_nothing] = STATE(2964), - [sym_val_bool] = STATE(2946), - [sym_val_variable] = STATE(2964), - [sym__var] = STATE(2527), - [sym_val_number] = STATE(2964), - [sym__val_number_decimal] = STATE(1439), - [sym__val_number] = STATE(2999), - [sym_val_duration] = STATE(2964), - [sym_val_filesize] = STATE(2964), - [sym_val_binary] = STATE(2964), - [sym_val_string] = STATE(2964), - [sym__str_double_quotes] = STATE(2965), - [sym_val_interpolated] = STATE(2964), - [sym__inter_single_quotes] = STATE(3028), - [sym__inter_double_quotes] = STATE(2984), - [sym_val_list] = STATE(2964), - [sym_val_record] = STATE(2964), - [sym_val_table] = STATE(2964), - [sym_val_closure] = STATE(2964), - [sym_unquoted] = STATE(2971), - [sym__unquoted_anonymous_prefix] = STATE(11046), - [sym_comment] = STATE(2241), - [anon_sym_LBRACK] = ACTIONS(4193), - [anon_sym_LPAREN] = ACTIONS(5901), - [anon_sym_DOLLAR] = ACTIONS(5903), - [anon_sym_DASH] = ACTIONS(4199), - [anon_sym_LBRACE] = ACTIONS(4201), - [anon_sym_DOT_DOT] = ACTIONS(5905), - [anon_sym_not] = ACTIONS(4205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5907), - [anon_sym_DOT_DOT_LT] = ACTIONS(5907), - [anon_sym_null] = ACTIONS(4209), - [anon_sym_true] = ACTIONS(4211), - [anon_sym_false] = ACTIONS(4211), - [aux_sym__val_number_decimal_token1] = ACTIONS(4213), - [aux_sym__val_number_decimal_token2] = ACTIONS(4215), - [anon_sym_DOT2] = ACTIONS(5909), - [aux_sym__val_number_decimal_token3] = ACTIONS(4219), - [aux_sym__val_number_token1] = ACTIONS(4221), - [aux_sym__val_number_token2] = ACTIONS(4221), - [aux_sym__val_number_token3] = ACTIONS(4221), - [aux_sym__val_number_token4] = ACTIONS(5911), - [aux_sym__val_number_token5] = ACTIONS(5911), - [aux_sym__val_number_token6] = ACTIONS(5911), - [anon_sym_0b] = ACTIONS(4225), - [anon_sym_0o] = ACTIONS(4227), - [anon_sym_0x] = ACTIONS(4227), - [sym_val_date] = ACTIONS(4229), - [anon_sym_DQUOTE] = ACTIONS(4231), - [sym__str_single_quotes] = ACTIONS(4233), - [sym__str_back_ticks] = ACTIONS(4233), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4235), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4237), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5913), - [anon_sym_POUND] = ACTIONS(3), + [2512] = { + [sym_comment] = STATE(2512), + [anon_sym_export] = ACTIONS(6429), + [anon_sym_alias] = ACTIONS(6429), + [anon_sym_let] = ACTIONS(6429), + [anon_sym_let_DASHenv] = ACTIONS(6429), + [anon_sym_mut] = ACTIONS(6429), + [anon_sym_const] = ACTIONS(6429), + [anon_sym_SEMI] = ACTIONS(6431), + [sym_cmd_identifier] = ACTIONS(6429), + [anon_sym_LF] = ACTIONS(6434), + [anon_sym_def] = ACTIONS(6429), + [anon_sym_export_DASHenv] = ACTIONS(6429), + [anon_sym_extern] = ACTIONS(6429), + [anon_sym_module] = ACTIONS(6429), + [anon_sym_use] = ACTIONS(6429), + [anon_sym_LBRACK] = ACTIONS(6429), + [anon_sym_LPAREN] = ACTIONS(6429), + [anon_sym_RPAREN] = ACTIONS(6437), + [anon_sym_DOLLAR] = ACTIONS(6429), + [anon_sym_error] = ACTIONS(6429), + [anon_sym_DASH] = ACTIONS(6429), + [anon_sym_break] = ACTIONS(6429), + [anon_sym_continue] = ACTIONS(6429), + [anon_sym_for] = ACTIONS(6429), + [anon_sym_loop] = ACTIONS(6429), + [anon_sym_while] = ACTIONS(6429), + [anon_sym_do] = ACTIONS(6429), + [anon_sym_if] = ACTIONS(6429), + [anon_sym_match] = ACTIONS(6429), + [anon_sym_LBRACE] = ACTIONS(6429), + [anon_sym_DOT_DOT] = ACTIONS(6429), + [anon_sym_try] = ACTIONS(6429), + [anon_sym_return] = ACTIONS(6429), + [anon_sym_source] = ACTIONS(6429), + [anon_sym_source_DASHenv] = ACTIONS(6429), + [anon_sym_register] = ACTIONS(6429), + [anon_sym_hide] = ACTIONS(6429), + [anon_sym_hide_DASHenv] = ACTIONS(6429), + [anon_sym_overlay] = ACTIONS(6429), + [anon_sym_where] = ACTIONS(6429), + [anon_sym_not] = ACTIONS(6429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6429), + [anon_sym_DOT_DOT_LT] = ACTIONS(6429), + [anon_sym_null] = ACTIONS(6429), + [anon_sym_true] = ACTIONS(6429), + [anon_sym_false] = ACTIONS(6429), + [aux_sym__val_number_decimal_token1] = ACTIONS(6429), + [aux_sym__val_number_decimal_token2] = ACTIONS(6429), + [anon_sym_DOT2] = ACTIONS(6429), + [aux_sym__val_number_decimal_token3] = ACTIONS(6429), + [aux_sym__val_number_token1] = ACTIONS(6429), + [aux_sym__val_number_token2] = ACTIONS(6429), + [aux_sym__val_number_token3] = ACTIONS(6429), + [aux_sym__val_number_token4] = ACTIONS(6429), + [aux_sym__val_number_token5] = ACTIONS(6429), + [aux_sym__val_number_token6] = ACTIONS(6429), + [anon_sym_0b] = ACTIONS(6429), + [anon_sym_0o] = ACTIONS(6429), + [anon_sym_0x] = ACTIONS(6429), + [sym_val_date] = ACTIONS(6429), + [anon_sym_DQUOTE] = ACTIONS(6429), + [sym__str_single_quotes] = ACTIONS(6429), + [sym__str_back_ticks] = ACTIONS(6429), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6429), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6429), + [anon_sym_CARET] = ACTIONS(6429), + [anon_sym_POUND] = ACTIONS(113), }, - [2242] = { - [sym_expr_unary] = STATE(2967), - [sym__expr_unary_minus] = STATE(2950), - [sym_expr_binary] = STATE(2967), - [sym__expr_binary_expression] = STATE(3005), - [sym_expr_parenthesized] = STATE(2967), - [sym__val_range] = STATE(10712), - [sym__value] = STATE(2967), - [sym_val_nothing] = STATE(2964), - [sym_val_bool] = STATE(2946), - [sym_val_variable] = STATE(2964), - [sym__var] = STATE(2527), - [sym_val_number] = STATE(2964), - [sym__val_number_decimal] = STATE(1439), - [sym__val_number] = STATE(2999), - [sym_val_duration] = STATE(2964), - [sym_val_filesize] = STATE(2964), - [sym_val_binary] = STATE(2964), - [sym_val_string] = STATE(2964), - [sym__str_double_quotes] = STATE(2965), - [sym_val_interpolated] = STATE(2964), - [sym__inter_single_quotes] = STATE(3028), - [sym__inter_double_quotes] = STATE(2984), - [sym_val_list] = STATE(2964), - [sym_val_record] = STATE(2964), - [sym_val_table] = STATE(2964), - [sym_val_closure] = STATE(2964), - [sym_unquoted] = STATE(2972), - [sym__unquoted_anonymous_prefix] = STATE(11046), - [sym_comment] = STATE(2242), - [anon_sym_LBRACK] = ACTIONS(4193), - [anon_sym_LPAREN] = ACTIONS(5901), - [anon_sym_DOLLAR] = ACTIONS(5903), - [anon_sym_DASH] = ACTIONS(4199), - [anon_sym_LBRACE] = ACTIONS(4201), - [anon_sym_DOT_DOT] = ACTIONS(5905), - [anon_sym_not] = ACTIONS(4205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5907), - [anon_sym_DOT_DOT_LT] = ACTIONS(5907), - [anon_sym_null] = ACTIONS(4209), - [anon_sym_true] = ACTIONS(4211), - [anon_sym_false] = ACTIONS(4211), - [aux_sym__val_number_decimal_token1] = ACTIONS(4213), - [aux_sym__val_number_decimal_token2] = ACTIONS(4215), - [anon_sym_DOT2] = ACTIONS(5909), - [aux_sym__val_number_decimal_token3] = ACTIONS(4219), - [aux_sym__val_number_token1] = ACTIONS(4221), - [aux_sym__val_number_token2] = ACTIONS(4221), - [aux_sym__val_number_token3] = ACTIONS(4221), - [aux_sym__val_number_token4] = ACTIONS(5911), - [aux_sym__val_number_token5] = ACTIONS(5911), - [aux_sym__val_number_token6] = ACTIONS(5911), - [anon_sym_0b] = ACTIONS(4225), - [anon_sym_0o] = ACTIONS(4227), - [anon_sym_0x] = ACTIONS(4227), - [sym_val_date] = ACTIONS(4229), - [anon_sym_DQUOTE] = ACTIONS(4231), - [sym__str_single_quotes] = ACTIONS(4233), - [sym__str_back_ticks] = ACTIONS(4233), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4235), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4237), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5913), - [anon_sym_POUND] = ACTIONS(3), + [2513] = { + [sym_comment] = STATE(2513), + [ts_builtin_sym_end] = ACTIONS(5919), + [anon_sym_export] = ACTIONS(5917), + [anon_sym_alias] = ACTIONS(5917), + [anon_sym_let] = ACTIONS(5917), + [anon_sym_let_DASHenv] = ACTIONS(5917), + [anon_sym_mut] = ACTIONS(5917), + [anon_sym_const] = ACTIONS(5917), + [anon_sym_SEMI] = ACTIONS(5917), + [sym_cmd_identifier] = ACTIONS(5917), + [anon_sym_LF] = ACTIONS(5919), + [anon_sym_def] = ACTIONS(5917), + [anon_sym_export_DASHenv] = ACTIONS(5917), + [anon_sym_extern] = ACTIONS(5917), + [anon_sym_module] = ACTIONS(5917), + [anon_sym_use] = ACTIONS(5917), + [anon_sym_LBRACK] = ACTIONS(5917), + [anon_sym_LPAREN] = ACTIONS(5917), + [anon_sym_DOLLAR] = ACTIONS(5917), + [anon_sym_error] = ACTIONS(5917), + [anon_sym_DASH] = ACTIONS(5917), + [anon_sym_break] = ACTIONS(5917), + [anon_sym_continue] = ACTIONS(5917), + [anon_sym_for] = ACTIONS(5917), + [anon_sym_loop] = ACTIONS(5917), + [anon_sym_while] = ACTIONS(5917), + [anon_sym_do] = ACTIONS(5917), + [anon_sym_if] = ACTIONS(5917), + [anon_sym_match] = ACTIONS(5917), + [anon_sym_LBRACE] = ACTIONS(5917), + [anon_sym_DOT_DOT] = ACTIONS(5917), + [anon_sym_try] = ACTIONS(5917), + [anon_sym_return] = ACTIONS(5917), + [anon_sym_source] = ACTIONS(5917), + [anon_sym_source_DASHenv] = ACTIONS(5917), + [anon_sym_register] = ACTIONS(5917), + [anon_sym_hide] = ACTIONS(5917), + [anon_sym_hide_DASHenv] = ACTIONS(5917), + [anon_sym_overlay] = ACTIONS(5917), + [anon_sym_where] = ACTIONS(5917), + [anon_sym_not] = ACTIONS(5917), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5917), + [anon_sym_DOT_DOT_LT] = ACTIONS(5917), + [anon_sym_null] = ACTIONS(5917), + [anon_sym_true] = ACTIONS(5917), + [anon_sym_false] = ACTIONS(5917), + [aux_sym__val_number_decimal_token1] = ACTIONS(5917), + [aux_sym__val_number_decimal_token2] = ACTIONS(5917), + [anon_sym_DOT2] = ACTIONS(5917), + [aux_sym__val_number_decimal_token3] = ACTIONS(5917), + [aux_sym__val_number_token1] = ACTIONS(5917), + [aux_sym__val_number_token2] = ACTIONS(5917), + [aux_sym__val_number_token3] = ACTIONS(5917), + [aux_sym__val_number_token4] = ACTIONS(5917), + [aux_sym__val_number_token5] = ACTIONS(5917), + [aux_sym__val_number_token6] = ACTIONS(5917), + [anon_sym_0b] = ACTIONS(5917), + [anon_sym_0o] = ACTIONS(5917), + [anon_sym_0x] = ACTIONS(5917), + [sym_val_date] = ACTIONS(5917), + [anon_sym_DQUOTE] = ACTIONS(5917), + [sym__str_single_quotes] = ACTIONS(5917), + [sym__str_back_ticks] = ACTIONS(5917), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5917), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5917), + [anon_sym_CARET] = ACTIONS(5917), + [anon_sym_POUND] = ACTIONS(113), }, - [2243] = { - [sym_expr_unary] = STATE(2967), - [sym__expr_unary_minus] = STATE(2950), - [sym_expr_binary] = STATE(2967), - [sym__expr_binary_expression] = STATE(3010), - [sym_expr_parenthesized] = STATE(2967), - [sym__val_range] = STATE(10712), - [sym__value] = STATE(2967), - [sym_val_nothing] = STATE(2964), - [sym_val_bool] = STATE(2946), - [sym_val_variable] = STATE(2964), - [sym__var] = STATE(2527), - [sym_val_number] = STATE(2964), - [sym__val_number_decimal] = STATE(1439), - [sym__val_number] = STATE(2999), - [sym_val_duration] = STATE(2964), - [sym_val_filesize] = STATE(2964), - [sym_val_binary] = STATE(2964), - [sym_val_string] = STATE(2964), - [sym__str_double_quotes] = STATE(2965), - [sym_val_interpolated] = STATE(2964), - [sym__inter_single_quotes] = STATE(3028), - [sym__inter_double_quotes] = STATE(2984), - [sym_val_list] = STATE(2964), - [sym_val_record] = STATE(2964), - [sym_val_table] = STATE(2964), - [sym_val_closure] = STATE(2964), - [sym_unquoted] = STATE(2973), - [sym__unquoted_anonymous_prefix] = STATE(11046), - [sym_comment] = STATE(2243), - [anon_sym_LBRACK] = ACTIONS(4193), - [anon_sym_LPAREN] = ACTIONS(5901), - [anon_sym_DOLLAR] = ACTIONS(5903), - [anon_sym_DASH] = ACTIONS(4199), - [anon_sym_LBRACE] = ACTIONS(4201), - [anon_sym_DOT_DOT] = ACTIONS(5905), - [anon_sym_not] = ACTIONS(4205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5907), - [anon_sym_DOT_DOT_LT] = ACTIONS(5907), - [anon_sym_null] = ACTIONS(4209), - [anon_sym_true] = ACTIONS(4211), - [anon_sym_false] = ACTIONS(4211), - [aux_sym__val_number_decimal_token1] = ACTIONS(4213), - [aux_sym__val_number_decimal_token2] = ACTIONS(4215), - [anon_sym_DOT2] = ACTIONS(5909), - [aux_sym__val_number_decimal_token3] = ACTIONS(4219), - [aux_sym__val_number_token1] = ACTIONS(4221), - [aux_sym__val_number_token2] = ACTIONS(4221), - [aux_sym__val_number_token3] = ACTIONS(4221), - [aux_sym__val_number_token4] = ACTIONS(5911), - [aux_sym__val_number_token5] = ACTIONS(5911), - [aux_sym__val_number_token6] = ACTIONS(5911), - [anon_sym_0b] = ACTIONS(4225), - [anon_sym_0o] = ACTIONS(4227), - [anon_sym_0x] = ACTIONS(4227), - [sym_val_date] = ACTIONS(4229), - [anon_sym_DQUOTE] = ACTIONS(4231), - [sym__str_single_quotes] = ACTIONS(4233), - [sym__str_back_ticks] = ACTIONS(4233), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4235), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4237), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5913), - [anon_sym_POUND] = ACTIONS(3), + [2514] = { + [sym_comment] = STATE(2514), + [ts_builtin_sym_end] = ACTIONS(1063), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_alias] = ACTIONS(1061), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_let_DASHenv] = ACTIONS(1061), + [anon_sym_mut] = ACTIONS(1061), + [anon_sym_const] = ACTIONS(1061), + [anon_sym_SEMI] = ACTIONS(1061), + [sym_cmd_identifier] = ACTIONS(1061), + [anon_sym_LF] = ACTIONS(1063), + [anon_sym_def] = ACTIONS(1061), + [anon_sym_export_DASHenv] = ACTIONS(1061), + [anon_sym_extern] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_use] = ACTIONS(1061), + [anon_sym_LBRACK] = ACTIONS(1061), + [anon_sym_LPAREN] = ACTIONS(1061), + [anon_sym_DOLLAR] = ACTIONS(1061), + [anon_sym_error] = ACTIONS(1061), + [anon_sym_DASH] = ACTIONS(1061), + [anon_sym_break] = ACTIONS(1061), + [anon_sym_continue] = ACTIONS(1061), + [anon_sym_for] = ACTIONS(1061), + [anon_sym_loop] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(1061), + [anon_sym_do] = ACTIONS(1061), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_match] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(1061), + [anon_sym_DOT_DOT] = ACTIONS(1061), + [anon_sym_try] = ACTIONS(1061), + [anon_sym_return] = ACTIONS(1061), + [anon_sym_source] = ACTIONS(1061), + [anon_sym_source_DASHenv] = ACTIONS(1061), + [anon_sym_register] = ACTIONS(1061), + [anon_sym_hide] = ACTIONS(1061), + [anon_sym_hide_DASHenv] = ACTIONS(1061), + [anon_sym_overlay] = ACTIONS(1061), + [anon_sym_where] = ACTIONS(1061), + [anon_sym_not] = ACTIONS(1061), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1061), + [anon_sym_DOT_DOT_LT] = ACTIONS(1061), + [anon_sym_null] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1061), + [anon_sym_false] = ACTIONS(1061), + [aux_sym__val_number_decimal_token1] = ACTIONS(1061), + [aux_sym__val_number_decimal_token2] = ACTIONS(1061), + [anon_sym_DOT2] = ACTIONS(1061), + [aux_sym__val_number_decimal_token3] = ACTIONS(1061), + [aux_sym__val_number_token1] = ACTIONS(1061), + [aux_sym__val_number_token2] = ACTIONS(1061), + [aux_sym__val_number_token3] = ACTIONS(1061), + [aux_sym__val_number_token4] = ACTIONS(1061), + [aux_sym__val_number_token5] = ACTIONS(1061), + [aux_sym__val_number_token6] = ACTIONS(1061), + [anon_sym_0b] = ACTIONS(1061), + [anon_sym_0o] = ACTIONS(1061), + [anon_sym_0x] = ACTIONS(1061), + [sym_val_date] = ACTIONS(1061), + [anon_sym_DQUOTE] = ACTIONS(1061), + [sym__str_single_quotes] = ACTIONS(1061), + [sym__str_back_ticks] = ACTIONS(1061), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1061), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1061), + [anon_sym_CARET] = ACTIONS(1061), + [anon_sym_POUND] = ACTIONS(113), }, - [2244] = { - [sym_expr_unary] = STATE(2967), - [sym__expr_unary_minus] = STATE(2950), - [sym_expr_binary] = STATE(2967), - [sym__expr_binary_expression] = STATE(3011), - [sym_expr_parenthesized] = STATE(2967), - [sym__val_range] = STATE(10712), - [sym__value] = STATE(2967), - [sym_val_nothing] = STATE(2964), - [sym_val_bool] = STATE(2946), - [sym_val_variable] = STATE(2964), - [sym__var] = STATE(2527), - [sym_val_number] = STATE(2964), - [sym__val_number_decimal] = STATE(1439), - [sym__val_number] = STATE(2999), - [sym_val_duration] = STATE(2964), - [sym_val_filesize] = STATE(2964), - [sym_val_binary] = STATE(2964), - [sym_val_string] = STATE(2964), - [sym__str_double_quotes] = STATE(2965), - [sym_val_interpolated] = STATE(2964), - [sym__inter_single_quotes] = STATE(3028), - [sym__inter_double_quotes] = STATE(2984), - [sym_val_list] = STATE(2964), - [sym_val_record] = STATE(2964), - [sym_val_table] = STATE(2964), - [sym_val_closure] = STATE(2964), - [sym_unquoted] = STATE(2974), - [sym__unquoted_anonymous_prefix] = STATE(11046), - [sym_comment] = STATE(2244), - [anon_sym_LBRACK] = ACTIONS(4193), - [anon_sym_LPAREN] = ACTIONS(5901), - [anon_sym_DOLLAR] = ACTIONS(5903), - [anon_sym_DASH] = ACTIONS(4199), - [anon_sym_LBRACE] = ACTIONS(4201), - [anon_sym_DOT_DOT] = ACTIONS(5905), - [anon_sym_not] = ACTIONS(4205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5907), - [anon_sym_DOT_DOT_LT] = ACTIONS(5907), - [anon_sym_null] = ACTIONS(4209), - [anon_sym_true] = ACTIONS(4211), - [anon_sym_false] = ACTIONS(4211), - [aux_sym__val_number_decimal_token1] = ACTIONS(4213), - [aux_sym__val_number_decimal_token2] = ACTIONS(4215), - [anon_sym_DOT2] = ACTIONS(5909), - [aux_sym__val_number_decimal_token3] = ACTIONS(4219), - [aux_sym__val_number_token1] = ACTIONS(4221), - [aux_sym__val_number_token2] = ACTIONS(4221), - [aux_sym__val_number_token3] = ACTIONS(4221), - [aux_sym__val_number_token4] = ACTIONS(5911), - [aux_sym__val_number_token5] = ACTIONS(5911), - [aux_sym__val_number_token6] = ACTIONS(5911), - [anon_sym_0b] = ACTIONS(4225), - [anon_sym_0o] = ACTIONS(4227), - [anon_sym_0x] = ACTIONS(4227), - [sym_val_date] = ACTIONS(4229), - [anon_sym_DQUOTE] = ACTIONS(4231), - [sym__str_single_quotes] = ACTIONS(4233), - [sym__str_back_ticks] = ACTIONS(4233), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4235), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4237), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5913), - [anon_sym_POUND] = ACTIONS(3), + [2515] = { + [sym_comment] = STATE(2515), + [ts_builtin_sym_end] = ACTIONS(6253), + [anon_sym_export] = ACTIONS(6251), + [anon_sym_alias] = ACTIONS(6251), + [anon_sym_let] = ACTIONS(6251), + [anon_sym_let_DASHenv] = ACTIONS(6251), + [anon_sym_mut] = ACTIONS(6251), + [anon_sym_const] = ACTIONS(6251), + [anon_sym_SEMI] = ACTIONS(6251), + [sym_cmd_identifier] = ACTIONS(6251), + [anon_sym_LF] = ACTIONS(6253), + [anon_sym_def] = ACTIONS(6251), + [anon_sym_export_DASHenv] = ACTIONS(6251), + [anon_sym_extern] = ACTIONS(6251), + [anon_sym_module] = ACTIONS(6251), + [anon_sym_use] = ACTIONS(6251), + [anon_sym_LBRACK] = ACTIONS(6251), + [anon_sym_LPAREN] = ACTIONS(6251), + [anon_sym_DOLLAR] = ACTIONS(6251), + [anon_sym_error] = ACTIONS(6251), + [anon_sym_DASH] = ACTIONS(6251), + [anon_sym_break] = ACTIONS(6251), + [anon_sym_continue] = ACTIONS(6251), + [anon_sym_for] = ACTIONS(6251), + [anon_sym_loop] = ACTIONS(6251), + [anon_sym_while] = ACTIONS(6251), + [anon_sym_do] = ACTIONS(6251), + [anon_sym_if] = ACTIONS(6251), + [anon_sym_match] = ACTIONS(6251), + [anon_sym_LBRACE] = ACTIONS(6251), + [anon_sym_DOT_DOT] = ACTIONS(6251), + [anon_sym_try] = ACTIONS(6251), + [anon_sym_return] = ACTIONS(6251), + [anon_sym_source] = ACTIONS(6251), + [anon_sym_source_DASHenv] = ACTIONS(6251), + [anon_sym_register] = ACTIONS(6251), + [anon_sym_hide] = ACTIONS(6251), + [anon_sym_hide_DASHenv] = ACTIONS(6251), + [anon_sym_overlay] = ACTIONS(6251), + [anon_sym_where] = ACTIONS(6251), + [anon_sym_not] = ACTIONS(6251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6251), + [anon_sym_DOT_DOT_LT] = ACTIONS(6251), + [anon_sym_null] = ACTIONS(6251), + [anon_sym_true] = ACTIONS(6251), + [anon_sym_false] = ACTIONS(6251), + [aux_sym__val_number_decimal_token1] = ACTIONS(6251), + [aux_sym__val_number_decimal_token2] = ACTIONS(6251), + [anon_sym_DOT2] = ACTIONS(6251), + [aux_sym__val_number_decimal_token3] = ACTIONS(6251), + [aux_sym__val_number_token1] = ACTIONS(6251), + [aux_sym__val_number_token2] = ACTIONS(6251), + [aux_sym__val_number_token3] = ACTIONS(6251), + [aux_sym__val_number_token4] = ACTIONS(6251), + [aux_sym__val_number_token5] = ACTIONS(6251), + [aux_sym__val_number_token6] = ACTIONS(6251), + [anon_sym_0b] = ACTIONS(6251), + [anon_sym_0o] = ACTIONS(6251), + [anon_sym_0x] = ACTIONS(6251), + [sym_val_date] = ACTIONS(6251), + [anon_sym_DQUOTE] = ACTIONS(6251), + [sym__str_single_quotes] = ACTIONS(6251), + [sym__str_back_ticks] = ACTIONS(6251), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6251), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6251), + [anon_sym_CARET] = ACTIONS(6251), + [anon_sym_POUND] = ACTIONS(113), }, - [2245] = { - [sym_expr_unary] = STATE(2967), - [sym__expr_unary_minus] = STATE(2950), - [sym_expr_binary] = STATE(2967), - [sym__expr_binary_expression] = STATE(3012), - [sym_expr_parenthesized] = STATE(2967), - [sym__val_range] = STATE(10712), - [sym__value] = STATE(2967), - [sym_val_nothing] = STATE(2964), - [sym_val_bool] = STATE(2946), - [sym_val_variable] = STATE(2964), - [sym__var] = STATE(2527), - [sym_val_number] = STATE(2964), - [sym__val_number_decimal] = STATE(1439), - [sym__val_number] = STATE(2999), - [sym_val_duration] = STATE(2964), - [sym_val_filesize] = STATE(2964), - [sym_val_binary] = STATE(2964), - [sym_val_string] = STATE(2964), - [sym__str_double_quotes] = STATE(2965), - [sym_val_interpolated] = STATE(2964), - [sym__inter_single_quotes] = STATE(3028), - [sym__inter_double_quotes] = STATE(2984), - [sym_val_list] = STATE(2964), - [sym_val_record] = STATE(2964), - [sym_val_table] = STATE(2964), - [sym_val_closure] = STATE(2964), - [sym_unquoted] = STATE(2976), - [sym__unquoted_anonymous_prefix] = STATE(11046), - [sym_comment] = STATE(2245), - [anon_sym_LBRACK] = ACTIONS(4193), - [anon_sym_LPAREN] = ACTIONS(5901), - [anon_sym_DOLLAR] = ACTIONS(5903), - [anon_sym_DASH] = ACTIONS(4199), - [anon_sym_LBRACE] = ACTIONS(4201), - [anon_sym_DOT_DOT] = ACTIONS(5905), - [anon_sym_not] = ACTIONS(4205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5907), - [anon_sym_DOT_DOT_LT] = ACTIONS(5907), - [anon_sym_null] = ACTIONS(4209), - [anon_sym_true] = ACTIONS(4211), - [anon_sym_false] = ACTIONS(4211), - [aux_sym__val_number_decimal_token1] = ACTIONS(4213), - [aux_sym__val_number_decimal_token2] = ACTIONS(4215), - [anon_sym_DOT2] = ACTIONS(5909), - [aux_sym__val_number_decimal_token3] = ACTIONS(4219), - [aux_sym__val_number_token1] = ACTIONS(4221), - [aux_sym__val_number_token2] = ACTIONS(4221), - [aux_sym__val_number_token3] = ACTIONS(4221), - [aux_sym__val_number_token4] = ACTIONS(5911), - [aux_sym__val_number_token5] = ACTIONS(5911), - [aux_sym__val_number_token6] = ACTIONS(5911), - [anon_sym_0b] = ACTIONS(4225), - [anon_sym_0o] = ACTIONS(4227), - [anon_sym_0x] = ACTIONS(4227), - [sym_val_date] = ACTIONS(4229), - [anon_sym_DQUOTE] = ACTIONS(4231), - [sym__str_single_quotes] = ACTIONS(4233), - [sym__str_back_ticks] = ACTIONS(4233), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4235), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4237), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5913), - [anon_sym_POUND] = ACTIONS(3), + [2516] = { + [sym__expr_parenthesized_immediate] = STATE(2954), + [sym__immediate_decimal] = STATE(2955), + [sym_val_variable] = STATE(2954), + [sym__var] = STATE(2717), + [sym_comment] = STATE(2516), + [anon_sym_export] = ACTIONS(1838), + [anon_sym_alias] = ACTIONS(1838), + [anon_sym_let] = ACTIONS(1838), + [anon_sym_let_DASHenv] = ACTIONS(1838), + [anon_sym_mut] = ACTIONS(1838), + [anon_sym_const] = ACTIONS(1838), + [sym_cmd_identifier] = ACTIONS(1838), + [anon_sym_def] = ACTIONS(1838), + [anon_sym_export_DASHenv] = ACTIONS(1838), + [anon_sym_extern] = ACTIONS(1838), + [anon_sym_module] = ACTIONS(1838), + [anon_sym_use] = ACTIONS(1838), + [anon_sym_LPAREN] = ACTIONS(1838), + [anon_sym_DOLLAR] = ACTIONS(6320), + [anon_sym_error] = ACTIONS(1838), + [anon_sym_list] = ACTIONS(1838), + [anon_sym_DASH] = ACTIONS(1838), + [anon_sym_break] = ACTIONS(1838), + [anon_sym_continue] = ACTIONS(1838), + [anon_sym_for] = ACTIONS(1838), + [anon_sym_in] = ACTIONS(1838), + [anon_sym_loop] = ACTIONS(1838), + [anon_sym_make] = ACTIONS(1838), + [anon_sym_while] = ACTIONS(1838), + [anon_sym_do] = ACTIONS(1838), + [anon_sym_if] = ACTIONS(1838), + [anon_sym_else] = ACTIONS(1838), + [anon_sym_match] = ACTIONS(1838), + [anon_sym_RBRACE] = ACTIONS(1838), + [anon_sym_try] = ACTIONS(1838), + [anon_sym_catch] = ACTIONS(1838), + [anon_sym_return] = ACTIONS(1838), + [anon_sym_source] = ACTIONS(1838), + [anon_sym_source_DASHenv] = ACTIONS(1838), + [anon_sym_register] = ACTIONS(1838), + [anon_sym_hide] = ACTIONS(1838), + [anon_sym_hide_DASHenv] = ACTIONS(1838), + [anon_sym_overlay] = ACTIONS(1838), + [anon_sym_new] = ACTIONS(1838), + [anon_sym_as] = ACTIONS(1838), + [anon_sym_PLUS] = ACTIONS(1838), + [anon_sym_LPAREN2] = ACTIONS(6322), + [anon_sym_DOT] = ACTIONS(6439), + [aux_sym__immediate_decimal_token1] = ACTIONS(6326), + [aux_sym__immediate_decimal_token3] = ACTIONS(6326), + [aux_sym__immediate_decimal_token4] = ACTIONS(6328), + [aux_sym__val_number_decimal_token1] = ACTIONS(1838), + [aux_sym__val_number_decimal_token2] = ACTIONS(1838), + [anon_sym_DOT2] = ACTIONS(1838), + [aux_sym__val_number_decimal_token3] = ACTIONS(1838), + [aux_sym__val_number_token1] = ACTIONS(1838), + [aux_sym__val_number_token2] = ACTIONS(1838), + [aux_sym__val_number_token3] = ACTIONS(1838), + [aux_sym__val_number_token4] = ACTIONS(1838), + [aux_sym__val_number_token5] = ACTIONS(1838), + [aux_sym__val_number_token6] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym__str_single_quotes] = ACTIONS(1838), + [sym__str_back_ticks] = ACTIONS(1838), + [sym__entry_separator] = ACTIONS(1840), + [aux_sym__record_key_token2] = ACTIONS(1838), + [anon_sym_POUND] = ACTIONS(113), }, - [2246] = { - [sym_expr_unary] = STATE(2967), - [sym__expr_unary_minus] = STATE(2950), - [sym_expr_binary] = STATE(2967), - [sym__expr_binary_expression] = STATE(3013), - [sym_expr_parenthesized] = STATE(2967), - [sym__val_range] = STATE(10712), - [sym__value] = STATE(2967), - [sym_val_nothing] = STATE(2964), - [sym_val_bool] = STATE(2946), - [sym_val_variable] = STATE(2964), - [sym__var] = STATE(2527), - [sym_val_number] = STATE(2964), - [sym__val_number_decimal] = STATE(1439), - [sym__val_number] = STATE(2999), - [sym_val_duration] = STATE(2964), - [sym_val_filesize] = STATE(2964), - [sym_val_binary] = STATE(2964), - [sym_val_string] = STATE(2964), - [sym__str_double_quotes] = STATE(2965), - [sym_val_interpolated] = STATE(2964), - [sym__inter_single_quotes] = STATE(3028), - [sym__inter_double_quotes] = STATE(2984), - [sym_val_list] = STATE(2964), - [sym_val_record] = STATE(2964), - [sym_val_table] = STATE(2964), - [sym_val_closure] = STATE(2964), - [sym_unquoted] = STATE(2977), - [sym__unquoted_anonymous_prefix] = STATE(11046), - [sym_comment] = STATE(2246), - [anon_sym_LBRACK] = ACTIONS(4193), - [anon_sym_LPAREN] = ACTIONS(5901), - [anon_sym_DOLLAR] = ACTIONS(5903), - [anon_sym_DASH] = ACTIONS(4199), - [anon_sym_LBRACE] = ACTIONS(4201), - [anon_sym_DOT_DOT] = ACTIONS(5905), - [anon_sym_not] = ACTIONS(4205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5907), - [anon_sym_DOT_DOT_LT] = ACTIONS(5907), - [anon_sym_null] = ACTIONS(4209), - [anon_sym_true] = ACTIONS(4211), - [anon_sym_false] = ACTIONS(4211), - [aux_sym__val_number_decimal_token1] = ACTIONS(4213), - [aux_sym__val_number_decimal_token2] = ACTIONS(4215), - [anon_sym_DOT2] = ACTIONS(5909), - [aux_sym__val_number_decimal_token3] = ACTIONS(4219), - [aux_sym__val_number_token1] = ACTIONS(4221), - [aux_sym__val_number_token2] = ACTIONS(4221), - [aux_sym__val_number_token3] = ACTIONS(4221), - [aux_sym__val_number_token4] = ACTIONS(5911), - [aux_sym__val_number_token5] = ACTIONS(5911), - [aux_sym__val_number_token6] = ACTIONS(5911), - [anon_sym_0b] = ACTIONS(4225), - [anon_sym_0o] = ACTIONS(4227), - [anon_sym_0x] = ACTIONS(4227), - [sym_val_date] = ACTIONS(4229), - [anon_sym_DQUOTE] = ACTIONS(4231), - [sym__str_single_quotes] = ACTIONS(4233), - [sym__str_back_ticks] = ACTIONS(4233), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4235), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4237), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5913), - [anon_sym_POUND] = ACTIONS(3), + [2517] = { + [sym__expr_parenthesized_immediate] = STATE(3104), + [sym__immediate_decimal] = STATE(3093), + [sym_val_variable] = STATE(3104), + [sym__var] = STATE(2939), + [sym_comment] = STATE(2517), + [anon_sym_export] = ACTIONS(1838), + [anon_sym_alias] = ACTIONS(1838), + [anon_sym_let] = ACTIONS(1838), + [anon_sym_let_DASHenv] = ACTIONS(1838), + [anon_sym_mut] = ACTIONS(1838), + [anon_sym_const] = ACTIONS(1838), + [sym_cmd_identifier] = ACTIONS(1838), + [anon_sym_def] = ACTIONS(1838), + [anon_sym_export_DASHenv] = ACTIONS(1838), + [anon_sym_extern] = ACTIONS(1838), + [anon_sym_module] = ACTIONS(1838), + [anon_sym_use] = ACTIONS(1838), + [anon_sym_LPAREN] = ACTIONS(1838), + [anon_sym_DOLLAR] = ACTIONS(6330), + [anon_sym_error] = ACTIONS(1838), + [anon_sym_list] = ACTIONS(1838), + [anon_sym_DASH] = ACTIONS(1838), + [anon_sym_break] = ACTIONS(1838), + [anon_sym_continue] = ACTIONS(1838), + [anon_sym_for] = ACTIONS(1838), + [anon_sym_in] = ACTIONS(1838), + [anon_sym_loop] = ACTIONS(1838), + [anon_sym_make] = ACTIONS(1838), + [anon_sym_while] = ACTIONS(1838), + [anon_sym_do] = ACTIONS(1838), + [anon_sym_if] = ACTIONS(1838), + [anon_sym_else] = ACTIONS(1838), + [anon_sym_match] = ACTIONS(1838), + [anon_sym_RBRACE] = ACTIONS(1838), + [anon_sym_try] = ACTIONS(1838), + [anon_sym_catch] = ACTIONS(1838), + [anon_sym_return] = ACTIONS(1838), + [anon_sym_source] = ACTIONS(1838), + [anon_sym_source_DASHenv] = ACTIONS(1838), + [anon_sym_register] = ACTIONS(1838), + [anon_sym_hide] = ACTIONS(1838), + [anon_sym_hide_DASHenv] = ACTIONS(1838), + [anon_sym_overlay] = ACTIONS(1838), + [anon_sym_new] = ACTIONS(1838), + [anon_sym_as] = ACTIONS(1838), + [anon_sym_PLUS] = ACTIONS(1838), + [anon_sym_LPAREN2] = ACTIONS(6332), + [anon_sym_DOT] = ACTIONS(6334), + [aux_sym__immediate_decimal_token1] = ACTIONS(6336), + [aux_sym__immediate_decimal_token3] = ACTIONS(6336), + [aux_sym__immediate_decimal_token4] = ACTIONS(6338), + [aux_sym__val_number_decimal_token1] = ACTIONS(1838), + [aux_sym__val_number_decimal_token2] = ACTIONS(1838), + [anon_sym_DOT2] = ACTIONS(1838), + [aux_sym__val_number_decimal_token3] = ACTIONS(1838), + [aux_sym__val_number_token1] = ACTIONS(1838), + [aux_sym__val_number_token2] = ACTIONS(1838), + [aux_sym__val_number_token3] = ACTIONS(1838), + [aux_sym__val_number_token4] = ACTIONS(1838), + [aux_sym__val_number_token5] = ACTIONS(1838), + [aux_sym__val_number_token6] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym__str_single_quotes] = ACTIONS(1838), + [sym__str_back_ticks] = ACTIONS(1838), + [sym__entry_separator] = ACTIONS(1840), + [aux_sym__record_key_token2] = ACTIONS(1838), + [anon_sym_POUND] = ACTIONS(113), }, - [2247] = { - [sym_expr_unary] = STATE(2967), - [sym__expr_unary_minus] = STATE(2950), - [sym_expr_binary] = STATE(2967), - [sym__expr_binary_expression] = STATE(3014), - [sym_expr_parenthesized] = STATE(2967), - [sym__val_range] = STATE(10712), - [sym__value] = STATE(2967), - [sym_val_nothing] = STATE(2964), - [sym_val_bool] = STATE(2946), - [sym_val_variable] = STATE(2964), - [sym__var] = STATE(2527), - [sym_val_number] = STATE(2964), - [sym__val_number_decimal] = STATE(1439), - [sym__val_number] = STATE(2999), - [sym_val_duration] = STATE(2964), - [sym_val_filesize] = STATE(2964), - [sym_val_binary] = STATE(2964), - [sym_val_string] = STATE(2964), - [sym__str_double_quotes] = STATE(2965), - [sym_val_interpolated] = STATE(2964), - [sym__inter_single_quotes] = STATE(3028), - [sym__inter_double_quotes] = STATE(2984), - [sym_val_list] = STATE(2964), - [sym_val_record] = STATE(2964), - [sym_val_table] = STATE(2964), - [sym_val_closure] = STATE(2964), - [sym_unquoted] = STATE(2978), - [sym__unquoted_anonymous_prefix] = STATE(11046), - [sym_comment] = STATE(2247), - [anon_sym_LBRACK] = ACTIONS(4193), - [anon_sym_LPAREN] = ACTIONS(5901), - [anon_sym_DOLLAR] = ACTIONS(5903), - [anon_sym_DASH] = ACTIONS(4199), - [anon_sym_LBRACE] = ACTIONS(4201), - [anon_sym_DOT_DOT] = ACTIONS(5905), - [anon_sym_not] = ACTIONS(4205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5907), - [anon_sym_DOT_DOT_LT] = ACTIONS(5907), - [anon_sym_null] = ACTIONS(4209), - [anon_sym_true] = ACTIONS(4211), - [anon_sym_false] = ACTIONS(4211), - [aux_sym__val_number_decimal_token1] = ACTIONS(4213), - [aux_sym__val_number_decimal_token2] = ACTIONS(4215), - [anon_sym_DOT2] = ACTIONS(5909), - [aux_sym__val_number_decimal_token3] = ACTIONS(4219), - [aux_sym__val_number_token1] = ACTIONS(4221), - [aux_sym__val_number_token2] = ACTIONS(4221), - [aux_sym__val_number_token3] = ACTIONS(4221), - [aux_sym__val_number_token4] = ACTIONS(5911), - [aux_sym__val_number_token5] = ACTIONS(5911), - [aux_sym__val_number_token6] = ACTIONS(5911), - [anon_sym_0b] = ACTIONS(4225), - [anon_sym_0o] = ACTIONS(4227), - [anon_sym_0x] = ACTIONS(4227), - [sym_val_date] = ACTIONS(4229), - [anon_sym_DQUOTE] = ACTIONS(4231), - [sym__str_single_quotes] = ACTIONS(4233), - [sym__str_back_ticks] = ACTIONS(4233), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4235), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4237), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5913), - [anon_sym_POUND] = ACTIONS(3), + [2518] = { + [sym_comment] = STATE(2518), + [ts_builtin_sym_end] = ACTIONS(6280), + [anon_sym_export] = ACTIONS(6278), + [anon_sym_alias] = ACTIONS(6278), + [anon_sym_let] = ACTIONS(6278), + [anon_sym_let_DASHenv] = ACTIONS(6278), + [anon_sym_mut] = ACTIONS(6278), + [anon_sym_const] = ACTIONS(6278), + [anon_sym_SEMI] = ACTIONS(6278), + [sym_cmd_identifier] = ACTIONS(6278), + [anon_sym_LF] = ACTIONS(6280), + [anon_sym_def] = ACTIONS(6278), + [anon_sym_export_DASHenv] = ACTIONS(6278), + [anon_sym_extern] = ACTIONS(6278), + [anon_sym_module] = ACTIONS(6278), + [anon_sym_use] = ACTIONS(6278), + [anon_sym_LBRACK] = ACTIONS(6278), + [anon_sym_LPAREN] = ACTIONS(6278), + [anon_sym_DOLLAR] = ACTIONS(6278), + [anon_sym_error] = ACTIONS(6278), + [anon_sym_DASH] = ACTIONS(6278), + [anon_sym_break] = ACTIONS(6278), + [anon_sym_continue] = ACTIONS(6278), + [anon_sym_for] = ACTIONS(6278), + [anon_sym_loop] = ACTIONS(6278), + [anon_sym_while] = ACTIONS(6278), + [anon_sym_do] = ACTIONS(6278), + [anon_sym_if] = ACTIONS(6278), + [anon_sym_match] = ACTIONS(6278), + [anon_sym_LBRACE] = ACTIONS(6278), + [anon_sym_DOT_DOT] = ACTIONS(6278), + [anon_sym_try] = ACTIONS(6278), + [anon_sym_return] = ACTIONS(6278), + [anon_sym_source] = ACTIONS(6278), + [anon_sym_source_DASHenv] = ACTIONS(6278), + [anon_sym_register] = ACTIONS(6278), + [anon_sym_hide] = ACTIONS(6278), + [anon_sym_hide_DASHenv] = ACTIONS(6278), + [anon_sym_overlay] = ACTIONS(6278), + [anon_sym_where] = ACTIONS(6278), + [anon_sym_not] = ACTIONS(6278), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6278), + [anon_sym_DOT_DOT_LT] = ACTIONS(6278), + [anon_sym_null] = ACTIONS(6278), + [anon_sym_true] = ACTIONS(6278), + [anon_sym_false] = ACTIONS(6278), + [aux_sym__val_number_decimal_token1] = ACTIONS(6278), + [aux_sym__val_number_decimal_token2] = ACTIONS(6278), + [anon_sym_DOT2] = ACTIONS(6278), + [aux_sym__val_number_decimal_token3] = ACTIONS(6278), + [aux_sym__val_number_token1] = ACTIONS(6278), + [aux_sym__val_number_token2] = ACTIONS(6278), + [aux_sym__val_number_token3] = ACTIONS(6278), + [aux_sym__val_number_token4] = ACTIONS(6278), + [aux_sym__val_number_token5] = ACTIONS(6278), + [aux_sym__val_number_token6] = ACTIONS(6278), + [anon_sym_0b] = ACTIONS(6278), + [anon_sym_0o] = ACTIONS(6278), + [anon_sym_0x] = ACTIONS(6278), + [sym_val_date] = ACTIONS(6278), + [anon_sym_DQUOTE] = ACTIONS(6278), + [sym__str_single_quotes] = ACTIONS(6278), + [sym__str_back_ticks] = ACTIONS(6278), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6278), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6278), + [anon_sym_CARET] = ACTIONS(6278), + [anon_sym_POUND] = ACTIONS(113), }, - [2248] = { - [sym_expr_unary] = STATE(2967), - [sym__expr_unary_minus] = STATE(2950), - [sym_expr_binary] = STATE(2967), - [sym__expr_binary_expression] = STATE(3015), - [sym_expr_parenthesized] = STATE(2967), - [sym__val_range] = STATE(10712), - [sym__value] = STATE(2967), - [sym_val_nothing] = STATE(2964), - [sym_val_bool] = STATE(2946), - [sym_val_variable] = STATE(2964), - [sym__var] = STATE(2527), - [sym_val_number] = STATE(2964), - [sym__val_number_decimal] = STATE(1439), - [sym__val_number] = STATE(2999), - [sym_val_duration] = STATE(2964), - [sym_val_filesize] = STATE(2964), - [sym_val_binary] = STATE(2964), - [sym_val_string] = STATE(2964), - [sym__str_double_quotes] = STATE(2965), - [sym_val_interpolated] = STATE(2964), - [sym__inter_single_quotes] = STATE(3028), - [sym__inter_double_quotes] = STATE(2984), - [sym_val_list] = STATE(2964), - [sym_val_record] = STATE(2964), - [sym_val_table] = STATE(2964), - [sym_val_closure] = STATE(2964), - [sym_unquoted] = STATE(2979), - [sym__unquoted_anonymous_prefix] = STATE(11046), - [sym_comment] = STATE(2248), - [anon_sym_LBRACK] = ACTIONS(4193), - [anon_sym_LPAREN] = ACTIONS(5901), - [anon_sym_DOLLAR] = ACTIONS(5903), - [anon_sym_DASH] = ACTIONS(4199), - [anon_sym_LBRACE] = ACTIONS(4201), - [anon_sym_DOT_DOT] = ACTIONS(5905), - [anon_sym_not] = ACTIONS(4205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5907), - [anon_sym_DOT_DOT_LT] = ACTIONS(5907), - [anon_sym_null] = ACTIONS(4209), - [anon_sym_true] = ACTIONS(4211), - [anon_sym_false] = ACTIONS(4211), - [aux_sym__val_number_decimal_token1] = ACTIONS(4213), - [aux_sym__val_number_decimal_token2] = ACTIONS(4215), - [anon_sym_DOT2] = ACTIONS(5909), - [aux_sym__val_number_decimal_token3] = ACTIONS(4219), - [aux_sym__val_number_token1] = ACTIONS(4221), - [aux_sym__val_number_token2] = ACTIONS(4221), - [aux_sym__val_number_token3] = ACTIONS(4221), - [aux_sym__val_number_token4] = ACTIONS(5911), - [aux_sym__val_number_token5] = ACTIONS(5911), - [aux_sym__val_number_token6] = ACTIONS(5911), - [anon_sym_0b] = ACTIONS(4225), - [anon_sym_0o] = ACTIONS(4227), - [anon_sym_0x] = ACTIONS(4227), - [sym_val_date] = ACTIONS(4229), - [anon_sym_DQUOTE] = ACTIONS(4231), - [sym__str_single_quotes] = ACTIONS(4233), - [sym__str_back_ticks] = ACTIONS(4233), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4235), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4237), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5913), - [anon_sym_POUND] = ACTIONS(3), + [2519] = { + [sym_comment] = STATE(2519), + [ts_builtin_sym_end] = ACTIONS(1049), + [anon_sym_SEMI] = ACTIONS(1047), + [anon_sym_LF] = ACTIONS(1049), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1047), + [anon_sym_PIPE] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1047), + [anon_sym_GT] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_in] = ACTIONS(1047), + [anon_sym_LBRACE] = ACTIONS(1047), + [anon_sym_DOT_DOT] = ACTIONS(1047), + [anon_sym_STAR] = ACTIONS(1047), + [anon_sym_STAR_STAR] = ACTIONS(1047), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_SLASH] = ACTIONS(1047), + [anon_sym_mod] = ACTIONS(1047), + [anon_sym_SLASH_SLASH] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1047), + [anon_sym_bit_DASHshl] = ACTIONS(1047), + [anon_sym_bit_DASHshr] = ACTIONS(1047), + [anon_sym_EQ_EQ] = ACTIONS(1047), + [anon_sym_BANG_EQ] = ACTIONS(1047), + [anon_sym_LT2] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1047), + [anon_sym_GT_EQ] = ACTIONS(1047), + [anon_sym_not_DASHin] = ACTIONS(1047), + [anon_sym_starts_DASHwith] = ACTIONS(1047), + [anon_sym_ends_DASHwith] = ACTIONS(1047), + [anon_sym_EQ_TILDE] = ACTIONS(1047), + [anon_sym_BANG_TILDE] = ACTIONS(1047), + [anon_sym_bit_DASHand] = ACTIONS(1047), + [anon_sym_bit_DASHxor] = ACTIONS(1047), + [anon_sym_bit_DASHor] = ACTIONS(1047), + [anon_sym_and] = ACTIONS(1047), + [anon_sym_xor] = ACTIONS(1047), + [anon_sym_or] = ACTIONS(1047), + [anon_sym_not] = ACTIONS(1047), + [anon_sym_DOT] = ACTIONS(1047), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1047), + [anon_sym_DOT_DOT_LT] = ACTIONS(1047), + [anon_sym_null] = ACTIONS(1047), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [aux_sym__val_number_decimal_token1] = ACTIONS(1047), + [aux_sym__val_number_decimal_token2] = ACTIONS(1047), + [anon_sym_DOT2] = ACTIONS(1047), + [aux_sym__val_number_decimal_token3] = ACTIONS(1047), + [aux_sym__val_number_token1] = ACTIONS(1047), + [aux_sym__val_number_token2] = ACTIONS(1047), + [aux_sym__val_number_token3] = ACTIONS(1047), + [aux_sym__val_number_token4] = ACTIONS(1047), + [aux_sym__val_number_token5] = ACTIONS(1047), + [aux_sym__val_number_token6] = ACTIONS(1047), + [anon_sym_0b] = ACTIONS(1047), + [anon_sym_0o] = ACTIONS(1047), + [anon_sym_0x] = ACTIONS(1047), + [sym_val_date] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1047), + [sym__str_single_quotes] = ACTIONS(1047), + [sym__str_back_ticks] = ACTIONS(1047), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1047), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1047), + [anon_sym_POUND] = ACTIONS(113), }, - [2249] = { - [sym_expr_unary] = STATE(2967), - [sym__expr_unary_minus] = STATE(2950), - [sym_expr_binary] = STATE(2967), - [sym__expr_binary_expression] = STATE(3018), - [sym_expr_parenthesized] = STATE(2967), - [sym__val_range] = STATE(10712), - [sym__value] = STATE(2967), - [sym_val_nothing] = STATE(2964), - [sym_val_bool] = STATE(2946), - [sym_val_variable] = STATE(2964), - [sym__var] = STATE(2527), - [sym_val_number] = STATE(2964), - [sym__val_number_decimal] = STATE(1439), - [sym__val_number] = STATE(2999), - [sym_val_duration] = STATE(2964), - [sym_val_filesize] = STATE(2964), - [sym_val_binary] = STATE(2964), - [sym_val_string] = STATE(2964), - [sym__str_double_quotes] = STATE(2965), - [sym_val_interpolated] = STATE(2964), - [sym__inter_single_quotes] = STATE(3028), - [sym__inter_double_quotes] = STATE(2984), - [sym_val_list] = STATE(2964), - [sym_val_record] = STATE(2964), - [sym_val_table] = STATE(2964), - [sym_val_closure] = STATE(2964), - [sym_unquoted] = STATE(2980), - [sym__unquoted_anonymous_prefix] = STATE(11046), - [sym_comment] = STATE(2249), - [anon_sym_LBRACK] = ACTIONS(4193), - [anon_sym_LPAREN] = ACTIONS(5901), - [anon_sym_DOLLAR] = ACTIONS(5903), - [anon_sym_DASH] = ACTIONS(4199), - [anon_sym_LBRACE] = ACTIONS(4201), - [anon_sym_DOT_DOT] = ACTIONS(5905), - [anon_sym_not] = ACTIONS(4205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5907), - [anon_sym_DOT_DOT_LT] = ACTIONS(5907), - [anon_sym_null] = ACTIONS(4209), - [anon_sym_true] = ACTIONS(4211), - [anon_sym_false] = ACTIONS(4211), - [aux_sym__val_number_decimal_token1] = ACTIONS(4213), - [aux_sym__val_number_decimal_token2] = ACTIONS(4215), - [anon_sym_DOT2] = ACTIONS(5909), - [aux_sym__val_number_decimal_token3] = ACTIONS(4219), - [aux_sym__val_number_token1] = ACTIONS(4221), - [aux_sym__val_number_token2] = ACTIONS(4221), - [aux_sym__val_number_token3] = ACTIONS(4221), - [aux_sym__val_number_token4] = ACTIONS(5911), - [aux_sym__val_number_token5] = ACTIONS(5911), - [aux_sym__val_number_token6] = ACTIONS(5911), - [anon_sym_0b] = ACTIONS(4225), - [anon_sym_0o] = ACTIONS(4227), - [anon_sym_0x] = ACTIONS(4227), - [sym_val_date] = ACTIONS(4229), - [anon_sym_DQUOTE] = ACTIONS(4231), - [sym__str_single_quotes] = ACTIONS(4233), - [sym__str_back_ticks] = ACTIONS(4233), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4235), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4237), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5913), - [anon_sym_POUND] = ACTIONS(3), + [2520] = { + [sym_comment] = STATE(2520), + [anon_sym_SEMI] = ACTIONS(1179), + [anon_sym_LF] = ACTIONS(1181), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_RPAREN] = ACTIONS(1179), + [anon_sym_PIPE] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(6441), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(6443), + [anon_sym_in] = ACTIONS(6445), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(6447), + [anon_sym_STAR_STAR] = ACTIONS(6449), + [anon_sym_PLUS_PLUS] = ACTIONS(6449), + [anon_sym_SLASH] = ACTIONS(6447), + [anon_sym_mod] = ACTIONS(6447), + [anon_sym_SLASH_SLASH] = ACTIONS(6447), + [anon_sym_PLUS] = ACTIONS(6443), + [anon_sym_bit_DASHshl] = ACTIONS(6451), + [anon_sym_bit_DASHshr] = ACTIONS(6451), + [anon_sym_EQ_EQ] = ACTIONS(6441), + [anon_sym_BANG_EQ] = ACTIONS(6441), + [anon_sym_LT2] = ACTIONS(6441), + [anon_sym_LT_EQ] = ACTIONS(6441), + [anon_sym_GT_EQ] = ACTIONS(6441), + [anon_sym_not_DASHin] = ACTIONS(6445), + [anon_sym_starts_DASHwith] = ACTIONS(6445), + [anon_sym_ends_DASHwith] = ACTIONS(6445), + [anon_sym_EQ_TILDE] = ACTIONS(6453), + [anon_sym_BANG_TILDE] = ACTIONS(6453), + [anon_sym_bit_DASHand] = ACTIONS(6455), + [anon_sym_bit_DASHxor] = ACTIONS(6457), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_not] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1179), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(113), }, - [2250] = { - [sym_expr_unary] = STATE(2967), - [sym__expr_unary_minus] = STATE(2950), - [sym_expr_binary] = STATE(2967), - [sym__expr_binary_expression] = STATE(3019), - [sym_expr_parenthesized] = STATE(2967), - [sym__val_range] = STATE(10712), - [sym__value] = STATE(2967), - [sym_val_nothing] = STATE(2964), - [sym_val_bool] = STATE(2946), - [sym_val_variable] = STATE(2964), - [sym__var] = STATE(2527), - [sym_val_number] = STATE(2964), - [sym__val_number_decimal] = STATE(1439), - [sym__val_number] = STATE(2999), - [sym_val_duration] = STATE(2964), - [sym_val_filesize] = STATE(2964), - [sym_val_binary] = STATE(2964), - [sym_val_string] = STATE(2964), - [sym__str_double_quotes] = STATE(2965), - [sym_val_interpolated] = STATE(2964), - [sym__inter_single_quotes] = STATE(3028), - [sym__inter_double_quotes] = STATE(2984), - [sym_val_list] = STATE(2964), - [sym_val_record] = STATE(2964), - [sym_val_table] = STATE(2964), - [sym_val_closure] = STATE(2964), - [sym_unquoted] = STATE(2981), - [sym__unquoted_anonymous_prefix] = STATE(11046), - [sym_comment] = STATE(2250), - [anon_sym_LBRACK] = ACTIONS(4193), - [anon_sym_LPAREN] = ACTIONS(5901), - [anon_sym_DOLLAR] = ACTIONS(5903), - [anon_sym_DASH] = ACTIONS(4199), - [anon_sym_LBRACE] = ACTIONS(4201), - [anon_sym_DOT_DOT] = ACTIONS(5905), - [anon_sym_not] = ACTIONS(4205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5907), - [anon_sym_DOT_DOT_LT] = ACTIONS(5907), - [anon_sym_null] = ACTIONS(4209), - [anon_sym_true] = ACTIONS(4211), - [anon_sym_false] = ACTIONS(4211), - [aux_sym__val_number_decimal_token1] = ACTIONS(4213), - [aux_sym__val_number_decimal_token2] = ACTIONS(4215), - [anon_sym_DOT2] = ACTIONS(5909), - [aux_sym__val_number_decimal_token3] = ACTIONS(4219), - [aux_sym__val_number_token1] = ACTIONS(4221), - [aux_sym__val_number_token2] = ACTIONS(4221), - [aux_sym__val_number_token3] = ACTIONS(4221), - [aux_sym__val_number_token4] = ACTIONS(5911), - [aux_sym__val_number_token5] = ACTIONS(5911), - [aux_sym__val_number_token6] = ACTIONS(5911), - [anon_sym_0b] = ACTIONS(4225), - [anon_sym_0o] = ACTIONS(4227), - [anon_sym_0x] = ACTIONS(4227), - [sym_val_date] = ACTIONS(4229), - [anon_sym_DQUOTE] = ACTIONS(4231), - [sym__str_single_quotes] = ACTIONS(4233), - [sym__str_back_ticks] = ACTIONS(4233), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4235), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4237), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5913), - [anon_sym_POUND] = ACTIONS(3), + [2521] = { + [sym_comment] = STATE(2521), + [anon_sym_SEMI] = ACTIONS(1179), + [anon_sym_LF] = ACTIONS(1181), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_RPAREN] = ACTIONS(1179), + [anon_sym_PIPE] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(6441), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(6443), + [anon_sym_in] = ACTIONS(6445), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(6447), + [anon_sym_STAR_STAR] = ACTIONS(6449), + [anon_sym_PLUS_PLUS] = ACTIONS(6449), + [anon_sym_SLASH] = ACTIONS(6447), + [anon_sym_mod] = ACTIONS(6447), + [anon_sym_SLASH_SLASH] = ACTIONS(6447), + [anon_sym_PLUS] = ACTIONS(6443), + [anon_sym_bit_DASHshl] = ACTIONS(6451), + [anon_sym_bit_DASHshr] = ACTIONS(6451), + [anon_sym_EQ_EQ] = ACTIONS(6441), + [anon_sym_BANG_EQ] = ACTIONS(6441), + [anon_sym_LT2] = ACTIONS(6441), + [anon_sym_LT_EQ] = ACTIONS(6441), + [anon_sym_GT_EQ] = ACTIONS(6441), + [anon_sym_not_DASHin] = ACTIONS(6445), + [anon_sym_starts_DASHwith] = ACTIONS(6445), + [anon_sym_ends_DASHwith] = ACTIONS(6445), + [anon_sym_EQ_TILDE] = ACTIONS(6453), + [anon_sym_BANG_TILDE] = ACTIONS(6453), + [anon_sym_bit_DASHand] = ACTIONS(6455), + [anon_sym_bit_DASHxor] = ACTIONS(6457), + [anon_sym_bit_DASHor] = ACTIONS(6459), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_not] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1179), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(113), }, - [2251] = { - [sym_expr_unary] = STATE(3452), - [sym__expr_unary_minus] = STATE(3447), - [sym_expr_binary] = STATE(3452), - [sym__expr_binary_expression] = STATE(3475), - [sym_expr_parenthesized] = STATE(3452), - [sym__val_range] = STATE(10714), - [sym__value] = STATE(3452), - [sym_val_nothing] = STATE(3462), - [sym_val_bool] = STATE(3390), - [sym_val_variable] = STATE(3462), - [sym__var] = STATE(3151), - [sym_val_number] = STATE(3462), - [sym__val_number_decimal] = STATE(2880), - [sym__val_number] = STATE(3471), - [sym_val_duration] = STATE(3462), - [sym_val_filesize] = STATE(3462), - [sym_val_binary] = STATE(3462), - [sym_val_string] = STATE(3462), - [sym__str_double_quotes] = STATE(3470), - [sym_val_interpolated] = STATE(3462), - [sym__inter_single_quotes] = STATE(3435), - [sym__inter_double_quotes] = STATE(3436), - [sym_val_list] = STATE(3462), - [sym_val_record] = STATE(3462), - [sym_val_table] = STATE(3462), - [sym_val_closure] = STATE(3462), - [sym_unquoted] = STATE(3453), - [sym__unquoted_anonymous_prefix] = STATE(11201), - [sym_comment] = STATE(2251), - [anon_sym_LBRACK] = ACTIONS(4243), - [anon_sym_LPAREN] = ACTIONS(5915), - [anon_sym_DOLLAR] = ACTIONS(5917), - [anon_sym_DASH] = ACTIONS(4249), - [anon_sym_LBRACE] = ACTIONS(4251), - [anon_sym_DOT_DOT] = ACTIONS(5919), - [anon_sym_not] = ACTIONS(4255), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5921), - [anon_sym_DOT_DOT_LT] = ACTIONS(5921), - [anon_sym_null] = ACTIONS(4259), - [anon_sym_true] = ACTIONS(4261), - [anon_sym_false] = ACTIONS(4261), - [aux_sym__val_number_decimal_token1] = ACTIONS(4263), - [aux_sym__val_number_decimal_token2] = ACTIONS(4265), - [anon_sym_DOT2] = ACTIONS(5923), - [aux_sym__val_number_decimal_token3] = ACTIONS(4269), - [aux_sym__val_number_token1] = ACTIONS(4271), - [aux_sym__val_number_token2] = ACTIONS(4271), - [aux_sym__val_number_token3] = ACTIONS(4271), - [aux_sym__val_number_token4] = ACTIONS(5925), - [aux_sym__val_number_token5] = ACTIONS(5925), - [aux_sym__val_number_token6] = ACTIONS(5925), - [anon_sym_0b] = ACTIONS(4275), - [anon_sym_0o] = ACTIONS(4277), - [anon_sym_0x] = ACTIONS(4277), - [sym_val_date] = ACTIONS(4279), - [anon_sym_DQUOTE] = ACTIONS(4281), - [sym__str_single_quotes] = ACTIONS(4283), - [sym__str_back_ticks] = ACTIONS(4283), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4285), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4287), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5927), - [anon_sym_POUND] = ACTIONS(3), + [2522] = { + [sym_comment] = STATE(2522), + [anon_sym_SEMI] = ACTIONS(1179), + [anon_sym_LF] = ACTIONS(1181), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_RPAREN] = ACTIONS(1179), + [anon_sym_PIPE] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(6441), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(6443), + [anon_sym_in] = ACTIONS(6445), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(6447), + [anon_sym_STAR_STAR] = ACTIONS(6449), + [anon_sym_PLUS_PLUS] = ACTIONS(6449), + [anon_sym_SLASH] = ACTIONS(6447), + [anon_sym_mod] = ACTIONS(6447), + [anon_sym_SLASH_SLASH] = ACTIONS(6447), + [anon_sym_PLUS] = ACTIONS(6443), + [anon_sym_bit_DASHshl] = ACTIONS(6451), + [anon_sym_bit_DASHshr] = ACTIONS(6451), + [anon_sym_EQ_EQ] = ACTIONS(6441), + [anon_sym_BANG_EQ] = ACTIONS(6441), + [anon_sym_LT2] = ACTIONS(6441), + [anon_sym_LT_EQ] = ACTIONS(6441), + [anon_sym_GT_EQ] = ACTIONS(6441), + [anon_sym_not_DASHin] = ACTIONS(6445), + [anon_sym_starts_DASHwith] = ACTIONS(6445), + [anon_sym_ends_DASHwith] = ACTIONS(6445), + [anon_sym_EQ_TILDE] = ACTIONS(6453), + [anon_sym_BANG_TILDE] = ACTIONS(6453), + [anon_sym_bit_DASHand] = ACTIONS(6455), + [anon_sym_bit_DASHxor] = ACTIONS(6457), + [anon_sym_bit_DASHor] = ACTIONS(6459), + [anon_sym_and] = ACTIONS(6461), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_not] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1179), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(113), }, - [2252] = { - [sym_expr_unary] = STATE(3452), - [sym__expr_unary_minus] = STATE(3447), - [sym_expr_binary] = STATE(3452), - [sym__expr_binary_expression] = STATE(3476), - [sym_expr_parenthesized] = STATE(3452), - [sym__val_range] = STATE(10714), - [sym__value] = STATE(3452), - [sym_val_nothing] = STATE(3462), - [sym_val_bool] = STATE(3390), - [sym_val_variable] = STATE(3462), - [sym__var] = STATE(3151), - [sym_val_number] = STATE(3462), - [sym__val_number_decimal] = STATE(2880), - [sym__val_number] = STATE(3471), - [sym_val_duration] = STATE(3462), - [sym_val_filesize] = STATE(3462), - [sym_val_binary] = STATE(3462), - [sym_val_string] = STATE(3462), - [sym__str_double_quotes] = STATE(3470), - [sym_val_interpolated] = STATE(3462), - [sym__inter_single_quotes] = STATE(3435), - [sym__inter_double_quotes] = STATE(3436), - [sym_val_list] = STATE(3462), - [sym_val_record] = STATE(3462), - [sym_val_table] = STATE(3462), - [sym_val_closure] = STATE(3462), - [sym_unquoted] = STATE(3455), - [sym__unquoted_anonymous_prefix] = STATE(11201), - [sym_comment] = STATE(2252), - [anon_sym_LBRACK] = ACTIONS(4243), - [anon_sym_LPAREN] = ACTIONS(5915), - [anon_sym_DOLLAR] = ACTIONS(5917), - [anon_sym_DASH] = ACTIONS(4249), - [anon_sym_LBRACE] = ACTIONS(4251), - [anon_sym_DOT_DOT] = ACTIONS(5919), - [anon_sym_not] = ACTIONS(4255), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5921), - [anon_sym_DOT_DOT_LT] = ACTIONS(5921), - [anon_sym_null] = ACTIONS(4259), - [anon_sym_true] = ACTIONS(4261), - [anon_sym_false] = ACTIONS(4261), - [aux_sym__val_number_decimal_token1] = ACTIONS(4263), - [aux_sym__val_number_decimal_token2] = ACTIONS(4265), - [anon_sym_DOT2] = ACTIONS(5923), - [aux_sym__val_number_decimal_token3] = ACTIONS(4269), - [aux_sym__val_number_token1] = ACTIONS(4271), - [aux_sym__val_number_token2] = ACTIONS(4271), - [aux_sym__val_number_token3] = ACTIONS(4271), - [aux_sym__val_number_token4] = ACTIONS(5925), - [aux_sym__val_number_token5] = ACTIONS(5925), - [aux_sym__val_number_token6] = ACTIONS(5925), - [anon_sym_0b] = ACTIONS(4275), - [anon_sym_0o] = ACTIONS(4277), - [anon_sym_0x] = ACTIONS(4277), - [sym_val_date] = ACTIONS(4279), - [anon_sym_DQUOTE] = ACTIONS(4281), - [sym__str_single_quotes] = ACTIONS(4283), - [sym__str_back_ticks] = ACTIONS(4283), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4285), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4287), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5927), - [anon_sym_POUND] = ACTIONS(3), + [2523] = { + [sym_comment] = STATE(2523), + [anon_sym_SEMI] = ACTIONS(1179), + [anon_sym_LF] = ACTIONS(1181), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_RPAREN] = ACTIONS(1179), + [anon_sym_PIPE] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(6441), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(6443), + [anon_sym_in] = ACTIONS(6445), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(6447), + [anon_sym_STAR_STAR] = ACTIONS(6449), + [anon_sym_PLUS_PLUS] = ACTIONS(6449), + [anon_sym_SLASH] = ACTIONS(6447), + [anon_sym_mod] = ACTIONS(6447), + [anon_sym_SLASH_SLASH] = ACTIONS(6447), + [anon_sym_PLUS] = ACTIONS(6443), + [anon_sym_bit_DASHshl] = ACTIONS(6451), + [anon_sym_bit_DASHshr] = ACTIONS(6451), + [anon_sym_EQ_EQ] = ACTIONS(6441), + [anon_sym_BANG_EQ] = ACTIONS(6441), + [anon_sym_LT2] = ACTIONS(6441), + [anon_sym_LT_EQ] = ACTIONS(6441), + [anon_sym_GT_EQ] = ACTIONS(6441), + [anon_sym_not_DASHin] = ACTIONS(6445), + [anon_sym_starts_DASHwith] = ACTIONS(6445), + [anon_sym_ends_DASHwith] = ACTIONS(6445), + [anon_sym_EQ_TILDE] = ACTIONS(6453), + [anon_sym_BANG_TILDE] = ACTIONS(6453), + [anon_sym_bit_DASHand] = ACTIONS(6455), + [anon_sym_bit_DASHxor] = ACTIONS(6457), + [anon_sym_bit_DASHor] = ACTIONS(6459), + [anon_sym_and] = ACTIONS(6461), + [anon_sym_xor] = ACTIONS(6463), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_not] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1179), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(113), }, - [2253] = { - [sym_expr_unary] = STATE(3452), - [sym__expr_unary_minus] = STATE(3447), - [sym_expr_binary] = STATE(3452), - [sym__expr_binary_expression] = STATE(3477), - [sym_expr_parenthesized] = STATE(3452), - [sym__val_range] = STATE(10714), - [sym__value] = STATE(3452), - [sym_val_nothing] = STATE(3462), - [sym_val_bool] = STATE(3390), - [sym_val_variable] = STATE(3462), - [sym__var] = STATE(3151), - [sym_val_number] = STATE(3462), - [sym__val_number_decimal] = STATE(2880), - [sym__val_number] = STATE(3471), - [sym_val_duration] = STATE(3462), - [sym_val_filesize] = STATE(3462), - [sym_val_binary] = STATE(3462), - [sym_val_string] = STATE(3462), - [sym__str_double_quotes] = STATE(3470), - [sym_val_interpolated] = STATE(3462), - [sym__inter_single_quotes] = STATE(3435), - [sym__inter_double_quotes] = STATE(3436), - [sym_val_list] = STATE(3462), - [sym_val_record] = STATE(3462), - [sym_val_table] = STATE(3462), - [sym_val_closure] = STATE(3462), - [sym_unquoted] = STATE(3456), - [sym__unquoted_anonymous_prefix] = STATE(11201), - [sym_comment] = STATE(2253), - [anon_sym_LBRACK] = ACTIONS(4243), - [anon_sym_LPAREN] = ACTIONS(5915), - [anon_sym_DOLLAR] = ACTIONS(5917), - [anon_sym_DASH] = ACTIONS(4249), - [anon_sym_LBRACE] = ACTIONS(4251), - [anon_sym_DOT_DOT] = ACTIONS(5919), - [anon_sym_not] = ACTIONS(4255), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5921), - [anon_sym_DOT_DOT_LT] = ACTIONS(5921), - [anon_sym_null] = ACTIONS(4259), - [anon_sym_true] = ACTIONS(4261), - [anon_sym_false] = ACTIONS(4261), - [aux_sym__val_number_decimal_token1] = ACTIONS(4263), - [aux_sym__val_number_decimal_token2] = ACTIONS(4265), - [anon_sym_DOT2] = ACTIONS(5923), - [aux_sym__val_number_decimal_token3] = ACTIONS(4269), - [aux_sym__val_number_token1] = ACTIONS(4271), - [aux_sym__val_number_token2] = ACTIONS(4271), - [aux_sym__val_number_token3] = ACTIONS(4271), - [aux_sym__val_number_token4] = ACTIONS(5925), - [aux_sym__val_number_token5] = ACTIONS(5925), - [aux_sym__val_number_token6] = ACTIONS(5925), - [anon_sym_0b] = ACTIONS(4275), - [anon_sym_0o] = ACTIONS(4277), - [anon_sym_0x] = ACTIONS(4277), - [sym_val_date] = ACTIONS(4279), - [anon_sym_DQUOTE] = ACTIONS(4281), - [sym__str_single_quotes] = ACTIONS(4283), - [sym__str_back_ticks] = ACTIONS(4283), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4285), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4287), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5927), - [anon_sym_POUND] = ACTIONS(3), + [2524] = { + [sym_comment] = STATE(2524), + [anon_sym_SEMI] = ACTIONS(1179), + [anon_sym_LF] = ACTIONS(1181), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_RPAREN] = ACTIONS(1179), + [anon_sym_PIPE] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(6441), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(6443), + [anon_sym_in] = ACTIONS(6445), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(6447), + [anon_sym_STAR_STAR] = ACTIONS(6449), + [anon_sym_PLUS_PLUS] = ACTIONS(6449), + [anon_sym_SLASH] = ACTIONS(6447), + [anon_sym_mod] = ACTIONS(6447), + [anon_sym_SLASH_SLASH] = ACTIONS(6447), + [anon_sym_PLUS] = ACTIONS(6443), + [anon_sym_bit_DASHshl] = ACTIONS(6451), + [anon_sym_bit_DASHshr] = ACTIONS(6451), + [anon_sym_EQ_EQ] = ACTIONS(6441), + [anon_sym_BANG_EQ] = ACTIONS(6441), + [anon_sym_LT2] = ACTIONS(6441), + [anon_sym_LT_EQ] = ACTIONS(6441), + [anon_sym_GT_EQ] = ACTIONS(6441), + [anon_sym_not_DASHin] = ACTIONS(6445), + [anon_sym_starts_DASHwith] = ACTIONS(6445), + [anon_sym_ends_DASHwith] = ACTIONS(6445), + [anon_sym_EQ_TILDE] = ACTIONS(6453), + [anon_sym_BANG_TILDE] = ACTIONS(6453), + [anon_sym_bit_DASHand] = ACTIONS(6455), + [anon_sym_bit_DASHxor] = ACTIONS(6457), + [anon_sym_bit_DASHor] = ACTIONS(6459), + [anon_sym_and] = ACTIONS(6461), + [anon_sym_xor] = ACTIONS(6463), + [anon_sym_or] = ACTIONS(6465), + [anon_sym_not] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1179), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(113), }, - [2254] = { - [sym_expr_unary] = STATE(3452), - [sym__expr_unary_minus] = STATE(3447), - [sym_expr_binary] = STATE(3452), - [sym__expr_binary_expression] = STATE(3478), - [sym_expr_parenthesized] = STATE(3452), - [sym__val_range] = STATE(10714), - [sym__value] = STATE(3452), - [sym_val_nothing] = STATE(3462), - [sym_val_bool] = STATE(3390), - [sym_val_variable] = STATE(3462), - [sym__var] = STATE(3151), - [sym_val_number] = STATE(3462), - [sym__val_number_decimal] = STATE(2880), - [sym__val_number] = STATE(3471), - [sym_val_duration] = STATE(3462), - [sym_val_filesize] = STATE(3462), - [sym_val_binary] = STATE(3462), - [sym_val_string] = STATE(3462), - [sym__str_double_quotes] = STATE(3470), - [sym_val_interpolated] = STATE(3462), - [sym__inter_single_quotes] = STATE(3435), - [sym__inter_double_quotes] = STATE(3436), - [sym_val_list] = STATE(3462), - [sym_val_record] = STATE(3462), - [sym_val_table] = STATE(3462), - [sym_val_closure] = STATE(3462), - [sym_unquoted] = STATE(3457), - [sym__unquoted_anonymous_prefix] = STATE(11201), - [sym_comment] = STATE(2254), - [anon_sym_LBRACK] = ACTIONS(4243), - [anon_sym_LPAREN] = ACTIONS(5915), - [anon_sym_DOLLAR] = ACTIONS(5917), - [anon_sym_DASH] = ACTIONS(4249), - [anon_sym_LBRACE] = ACTIONS(4251), - [anon_sym_DOT_DOT] = ACTIONS(5919), - [anon_sym_not] = ACTIONS(4255), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5921), - [anon_sym_DOT_DOT_LT] = ACTIONS(5921), - [anon_sym_null] = ACTIONS(4259), - [anon_sym_true] = ACTIONS(4261), - [anon_sym_false] = ACTIONS(4261), - [aux_sym__val_number_decimal_token1] = ACTIONS(4263), - [aux_sym__val_number_decimal_token2] = ACTIONS(4265), - [anon_sym_DOT2] = ACTIONS(5923), - [aux_sym__val_number_decimal_token3] = ACTIONS(4269), - [aux_sym__val_number_token1] = ACTIONS(4271), - [aux_sym__val_number_token2] = ACTIONS(4271), - [aux_sym__val_number_token3] = ACTIONS(4271), - [aux_sym__val_number_token4] = ACTIONS(5925), - [aux_sym__val_number_token5] = ACTIONS(5925), - [aux_sym__val_number_token6] = ACTIONS(5925), - [anon_sym_0b] = ACTIONS(4275), - [anon_sym_0o] = ACTIONS(4277), - [anon_sym_0x] = ACTIONS(4277), - [sym_val_date] = ACTIONS(4279), - [anon_sym_DQUOTE] = ACTIONS(4281), - [sym__str_single_quotes] = ACTIONS(4283), - [sym__str_back_ticks] = ACTIONS(4283), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4285), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4287), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5927), - [anon_sym_POUND] = ACTIONS(3), + [2525] = { + [sym_comment] = STATE(2525), + [anon_sym_SEMI] = ACTIONS(1175), + [anon_sym_LF] = ACTIONS(1177), + [anon_sym_LBRACK] = ACTIONS(1175), + [anon_sym_LPAREN] = ACTIONS(1175), + [anon_sym_RPAREN] = ACTIONS(1175), + [anon_sym_PIPE] = ACTIONS(1175), + [anon_sym_DOLLAR] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [anon_sym_DASH_DASH] = ACTIONS(1175), + [anon_sym_DASH] = ACTIONS(1175), + [anon_sym_in] = ACTIONS(1175), + [anon_sym_LBRACE] = ACTIONS(1175), + [anon_sym_RBRACE] = ACTIONS(1175), + [anon_sym_DOT_DOT] = ACTIONS(1175), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_STAR_STAR] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_mod] = ACTIONS(1175), + [anon_sym_SLASH_SLASH] = ACTIONS(1175), + [anon_sym_PLUS] = ACTIONS(1175), + [anon_sym_bit_DASHshl] = ACTIONS(1175), + [anon_sym_bit_DASHshr] = ACTIONS(1175), + [anon_sym_EQ_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_LT2] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_not_DASHin] = ACTIONS(1175), + [anon_sym_starts_DASHwith] = ACTIONS(1175), + [anon_sym_ends_DASHwith] = ACTIONS(1175), + [anon_sym_EQ_TILDE] = ACTIONS(1175), + [anon_sym_BANG_TILDE] = ACTIONS(1175), + [anon_sym_bit_DASHand] = ACTIONS(1175), + [anon_sym_bit_DASHxor] = ACTIONS(1175), + [anon_sym_bit_DASHor] = ACTIONS(1175), + [anon_sym_and] = ACTIONS(1175), + [anon_sym_xor] = ACTIONS(1175), + [anon_sym_or] = ACTIONS(1175), + [anon_sym_not] = ACTIONS(1175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1175), + [anon_sym_DOT_DOT_LT] = ACTIONS(1175), + [anon_sym_null] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1175), + [anon_sym_false] = ACTIONS(1175), + [aux_sym__val_number_decimal_token1] = ACTIONS(1175), + [aux_sym__val_number_decimal_token2] = ACTIONS(1175), + [anon_sym_DOT2] = ACTIONS(1175), + [aux_sym__val_number_decimal_token3] = ACTIONS(1175), + [aux_sym__val_number_token1] = ACTIONS(1175), + [aux_sym__val_number_token2] = ACTIONS(1175), + [aux_sym__val_number_token3] = ACTIONS(1175), + [aux_sym__val_number_token4] = ACTIONS(1175), + [aux_sym__val_number_token5] = ACTIONS(1175), + [aux_sym__val_number_token6] = ACTIONS(1175), + [anon_sym_0b] = ACTIONS(1175), + [anon_sym_0o] = ACTIONS(1175), + [anon_sym_0x] = ACTIONS(1175), + [sym_val_date] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1175), + [sym__str_single_quotes] = ACTIONS(1175), + [sym__str_back_ticks] = ACTIONS(1175), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1175), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1175), + [anon_sym_POUND] = ACTIONS(113), }, - [2255] = { - [sym_expr_unary] = STATE(3452), - [sym__expr_unary_minus] = STATE(3447), - [sym_expr_binary] = STATE(3452), - [sym__expr_binary_expression] = STATE(3479), - [sym_expr_parenthesized] = STATE(3452), - [sym__val_range] = STATE(10714), - [sym__value] = STATE(3452), - [sym_val_nothing] = STATE(3462), - [sym_val_bool] = STATE(3390), - [sym_val_variable] = STATE(3462), - [sym__var] = STATE(3151), - [sym_val_number] = STATE(3462), - [sym__val_number_decimal] = STATE(2880), - [sym__val_number] = STATE(3471), - [sym_val_duration] = STATE(3462), - [sym_val_filesize] = STATE(3462), - [sym_val_binary] = STATE(3462), - [sym_val_string] = STATE(3462), - [sym__str_double_quotes] = STATE(3470), - [sym_val_interpolated] = STATE(3462), - [sym__inter_single_quotes] = STATE(3435), - [sym__inter_double_quotes] = STATE(3436), - [sym_val_list] = STATE(3462), - [sym_val_record] = STATE(3462), - [sym_val_table] = STATE(3462), - [sym_val_closure] = STATE(3462), - [sym_unquoted] = STATE(3459), - [sym__unquoted_anonymous_prefix] = STATE(11201), - [sym_comment] = STATE(2255), - [anon_sym_LBRACK] = ACTIONS(4243), - [anon_sym_LPAREN] = ACTIONS(5915), - [anon_sym_DOLLAR] = ACTIONS(5917), - [anon_sym_DASH] = ACTIONS(4249), - [anon_sym_LBRACE] = ACTIONS(4251), - [anon_sym_DOT_DOT] = ACTIONS(5919), - [anon_sym_not] = ACTIONS(4255), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5921), - [anon_sym_DOT_DOT_LT] = ACTIONS(5921), - [anon_sym_null] = ACTIONS(4259), - [anon_sym_true] = ACTIONS(4261), - [anon_sym_false] = ACTIONS(4261), - [aux_sym__val_number_decimal_token1] = ACTIONS(4263), - [aux_sym__val_number_decimal_token2] = ACTIONS(4265), - [anon_sym_DOT2] = ACTIONS(5923), - [aux_sym__val_number_decimal_token3] = ACTIONS(4269), - [aux_sym__val_number_token1] = ACTIONS(4271), - [aux_sym__val_number_token2] = ACTIONS(4271), - [aux_sym__val_number_token3] = ACTIONS(4271), - [aux_sym__val_number_token4] = ACTIONS(5925), - [aux_sym__val_number_token5] = ACTIONS(5925), - [aux_sym__val_number_token6] = ACTIONS(5925), - [anon_sym_0b] = ACTIONS(4275), - [anon_sym_0o] = ACTIONS(4277), - [anon_sym_0x] = ACTIONS(4277), - [sym_val_date] = ACTIONS(4279), - [anon_sym_DQUOTE] = ACTIONS(4281), - [sym__str_single_quotes] = ACTIONS(4283), - [sym__str_back_ticks] = ACTIONS(4283), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4285), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4287), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5927), + [2526] = { + [sym__expr_parenthesized_immediate] = STATE(3142), + [sym__immediate_decimal] = STATE(3143), + [sym_val_variable] = STATE(3142), + [sym__var] = STATE(2820), + [sym_comment] = STATE(2526), + [anon_sym_export] = ACTIONS(2207), + [anon_sym_alias] = ACTIONS(2207), + [anon_sym_let] = ACTIONS(2207), + [anon_sym_let_DASHenv] = ACTIONS(2207), + [anon_sym_mut] = ACTIONS(2207), + [anon_sym_const] = ACTIONS(2207), + [sym_cmd_identifier] = ACTIONS(2207), + [anon_sym_def] = ACTIONS(2207), + [anon_sym_export_DASHenv] = ACTIONS(2207), + [anon_sym_extern] = ACTIONS(2207), + [anon_sym_module] = ACTIONS(2207), + [anon_sym_use] = ACTIONS(2207), + [anon_sym_LPAREN] = ACTIONS(2207), + [anon_sym_DOLLAR] = ACTIONS(5653), + [anon_sym_error] = ACTIONS(2207), + [anon_sym_list] = ACTIONS(2207), + [anon_sym_DASH] = ACTIONS(2207), + [anon_sym_break] = ACTIONS(2207), + [anon_sym_continue] = ACTIONS(2207), + [anon_sym_for] = ACTIONS(2207), + [anon_sym_in] = ACTIONS(2207), + [anon_sym_loop] = ACTIONS(2207), + [anon_sym_make] = ACTIONS(2207), + [anon_sym_while] = ACTIONS(2207), + [anon_sym_do] = ACTIONS(2207), + [anon_sym_if] = ACTIONS(2207), + [anon_sym_else] = ACTIONS(2207), + [anon_sym_match] = ACTIONS(2207), + [anon_sym_RBRACE] = ACTIONS(2209), + [anon_sym_try] = ACTIONS(2207), + [anon_sym_catch] = ACTIONS(2207), + [anon_sym_return] = ACTIONS(2207), + [anon_sym_source] = ACTIONS(2207), + [anon_sym_source_DASHenv] = ACTIONS(2207), + [anon_sym_register] = ACTIONS(2207), + [anon_sym_hide] = ACTIONS(2207), + [anon_sym_hide_DASHenv] = ACTIONS(2207), + [anon_sym_overlay] = ACTIONS(2207), + [anon_sym_new] = ACTIONS(2207), + [anon_sym_as] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(2207), + [anon_sym_LPAREN2] = ACTIONS(6467), + [anon_sym_DOT] = ACTIONS(6469), + [aux_sym__immediate_decimal_token1] = ACTIONS(6471), + [aux_sym__immediate_decimal_token3] = ACTIONS(6473), + [aux_sym__immediate_decimal_token4] = ACTIONS(6475), + [aux_sym__val_number_decimal_token1] = ACTIONS(2207), + [aux_sym__val_number_decimal_token2] = ACTIONS(2207), + [anon_sym_DOT2] = ACTIONS(2207), + [aux_sym__val_number_decimal_token3] = ACTIONS(2207), + [aux_sym__val_number_token1] = ACTIONS(2209), + [aux_sym__val_number_token2] = ACTIONS(2209), + [aux_sym__val_number_token3] = ACTIONS(2209), + [aux_sym__val_number_token4] = ACTIONS(2207), + [aux_sym__val_number_token5] = ACTIONS(2209), + [aux_sym__val_number_token6] = ACTIONS(2207), + [anon_sym_DQUOTE] = ACTIONS(2209), + [sym__str_single_quotes] = ACTIONS(2209), + [sym__str_back_ticks] = ACTIONS(2209), + [aux_sym__record_key_token2] = ACTIONS(2207), [anon_sym_POUND] = ACTIONS(3), }, - [2256] = { - [sym_expr_unary] = STATE(3452), - [sym__expr_unary_minus] = STATE(3447), - [sym_expr_binary] = STATE(3452), - [sym__expr_binary_expression] = STATE(3480), - [sym_expr_parenthesized] = STATE(3452), - [sym__val_range] = STATE(10714), - [sym__value] = STATE(3452), - [sym_val_nothing] = STATE(3462), - [sym_val_bool] = STATE(3390), - [sym_val_variable] = STATE(3462), - [sym__var] = STATE(3151), - [sym_val_number] = STATE(3462), - [sym__val_number_decimal] = STATE(2880), - [sym__val_number] = STATE(3471), - [sym_val_duration] = STATE(3462), - [sym_val_filesize] = STATE(3462), - [sym_val_binary] = STATE(3462), - [sym_val_string] = STATE(3462), - [sym__str_double_quotes] = STATE(3470), - [sym_val_interpolated] = STATE(3462), - [sym__inter_single_quotes] = STATE(3435), - [sym__inter_double_quotes] = STATE(3436), - [sym_val_list] = STATE(3462), - [sym_val_record] = STATE(3462), - [sym_val_table] = STATE(3462), - [sym_val_closure] = STATE(3462), - [sym_unquoted] = STATE(3460), - [sym__unquoted_anonymous_prefix] = STATE(11201), - [sym_comment] = STATE(2256), - [anon_sym_LBRACK] = ACTIONS(4243), - [anon_sym_LPAREN] = ACTIONS(5915), - [anon_sym_DOLLAR] = ACTIONS(5917), - [anon_sym_DASH] = ACTIONS(4249), - [anon_sym_LBRACE] = ACTIONS(4251), - [anon_sym_DOT_DOT] = ACTIONS(5919), - [anon_sym_not] = ACTIONS(4255), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5921), - [anon_sym_DOT_DOT_LT] = ACTIONS(5921), - [anon_sym_null] = ACTIONS(4259), - [anon_sym_true] = ACTIONS(4261), - [anon_sym_false] = ACTIONS(4261), - [aux_sym__val_number_decimal_token1] = ACTIONS(4263), - [aux_sym__val_number_decimal_token2] = ACTIONS(4265), - [anon_sym_DOT2] = ACTIONS(5923), - [aux_sym__val_number_decimal_token3] = ACTIONS(4269), - [aux_sym__val_number_token1] = ACTIONS(4271), - [aux_sym__val_number_token2] = ACTIONS(4271), - [aux_sym__val_number_token3] = ACTIONS(4271), - [aux_sym__val_number_token4] = ACTIONS(5925), - [aux_sym__val_number_token5] = ACTIONS(5925), - [aux_sym__val_number_token6] = ACTIONS(5925), - [anon_sym_0b] = ACTIONS(4275), - [anon_sym_0o] = ACTIONS(4277), - [anon_sym_0x] = ACTIONS(4277), - [sym_val_date] = ACTIONS(4279), - [anon_sym_DQUOTE] = ACTIONS(4281), - [sym__str_single_quotes] = ACTIONS(4283), - [sym__str_back_ticks] = ACTIONS(4283), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4285), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4287), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5927), + [2527] = { + [sym__expr_parenthesized_immediate] = STATE(3144), + [sym__immediate_decimal] = STATE(3145), + [sym_val_variable] = STATE(3144), + [sym__var] = STATE(2820), + [sym_comment] = STATE(2527), + [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), + [sym_cmd_identifier] = 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_DOLLAR] = ACTIONS(5653), + [anon_sym_error] = ACTIONS(2136), + [anon_sym_list] = ACTIONS(2136), + [anon_sym_DASH] = ACTIONS(2136), + [anon_sym_break] = ACTIONS(2136), + [anon_sym_continue] = ACTIONS(2136), + [anon_sym_for] = ACTIONS(2136), + [anon_sym_in] = 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(2138), + [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_new] = ACTIONS(2136), + [anon_sym_as] = ACTIONS(2136), + [anon_sym_PLUS] = ACTIONS(2136), + [anon_sym_LPAREN2] = ACTIONS(6467), + [anon_sym_DOT] = ACTIONS(6469), + [aux_sym__immediate_decimal_token1] = ACTIONS(6471), + [aux_sym__immediate_decimal_token3] = ACTIONS(6473), + [aux_sym__immediate_decimal_token4] = ACTIONS(6475), + [aux_sym__val_number_decimal_token1] = ACTIONS(2136), + [aux_sym__val_number_decimal_token2] = ACTIONS(2136), + [anon_sym_DOT2] = ACTIONS(2136), + [aux_sym__val_number_decimal_token3] = ACTIONS(2136), + [aux_sym__val_number_token1] = ACTIONS(2138), + [aux_sym__val_number_token2] = ACTIONS(2138), + [aux_sym__val_number_token3] = ACTIONS(2138), + [aux_sym__val_number_token4] = ACTIONS(2136), + [aux_sym__val_number_token5] = ACTIONS(2138), + [aux_sym__val_number_token6] = ACTIONS(2136), + [anon_sym_DQUOTE] = ACTIONS(2138), + [sym__str_single_quotes] = ACTIONS(2138), + [sym__str_back_ticks] = ACTIONS(2138), + [aux_sym__record_key_token2] = ACTIONS(2136), [anon_sym_POUND] = ACTIONS(3), }, - [2257] = { - [sym_expr_unary] = STATE(3452), - [sym__expr_unary_minus] = STATE(3447), - [sym_expr_binary] = STATE(3452), - [sym__expr_binary_expression] = STATE(3481), - [sym_expr_parenthesized] = STATE(3452), - [sym__val_range] = STATE(10714), - [sym__value] = STATE(3452), - [sym_val_nothing] = STATE(3462), - [sym_val_bool] = STATE(3390), - [sym_val_variable] = STATE(3462), - [sym__var] = STATE(3151), - [sym_val_number] = STATE(3462), - [sym__val_number_decimal] = STATE(2880), - [sym__val_number] = STATE(3471), - [sym_val_duration] = STATE(3462), - [sym_val_filesize] = STATE(3462), - [sym_val_binary] = STATE(3462), - [sym_val_string] = STATE(3462), - [sym__str_double_quotes] = STATE(3470), - [sym_val_interpolated] = STATE(3462), - [sym__inter_single_quotes] = STATE(3435), - [sym__inter_double_quotes] = STATE(3436), - [sym_val_list] = STATE(3462), - [sym_val_record] = STATE(3462), - [sym_val_table] = STATE(3462), - [sym_val_closure] = STATE(3462), - [sym_unquoted] = STATE(3461), - [sym__unquoted_anonymous_prefix] = STATE(11201), - [sym_comment] = STATE(2257), - [anon_sym_LBRACK] = ACTIONS(4243), - [anon_sym_LPAREN] = ACTIONS(5915), - [anon_sym_DOLLAR] = ACTIONS(5917), - [anon_sym_DASH] = ACTIONS(4249), - [anon_sym_LBRACE] = ACTIONS(4251), - [anon_sym_DOT_DOT] = ACTIONS(5919), - [anon_sym_not] = ACTIONS(4255), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5921), - [anon_sym_DOT_DOT_LT] = ACTIONS(5921), - [anon_sym_null] = ACTIONS(4259), - [anon_sym_true] = ACTIONS(4261), - [anon_sym_false] = ACTIONS(4261), - [aux_sym__val_number_decimal_token1] = ACTIONS(4263), - [aux_sym__val_number_decimal_token2] = ACTIONS(4265), - [anon_sym_DOT2] = ACTIONS(5923), - [aux_sym__val_number_decimal_token3] = ACTIONS(4269), - [aux_sym__val_number_token1] = ACTIONS(4271), - [aux_sym__val_number_token2] = ACTIONS(4271), - [aux_sym__val_number_token3] = ACTIONS(4271), - [aux_sym__val_number_token4] = ACTIONS(5925), - [aux_sym__val_number_token5] = ACTIONS(5925), - [aux_sym__val_number_token6] = ACTIONS(5925), - [anon_sym_0b] = ACTIONS(4275), - [anon_sym_0o] = ACTIONS(4277), - [anon_sym_0x] = ACTIONS(4277), - [sym_val_date] = ACTIONS(4279), - [anon_sym_DQUOTE] = ACTIONS(4281), - [sym__str_single_quotes] = ACTIONS(4283), - [sym__str_back_ticks] = ACTIONS(4283), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4285), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4287), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5927), + [2528] = { + [sym__expr_parenthesized_immediate] = STATE(3146), + [sym__immediate_decimal] = STATE(3147), + [sym_val_variable] = STATE(3146), + [sym__var] = STATE(2820), + [sym_comment] = STATE(2528), + [anon_sym_export] = ACTIONS(2146), + [anon_sym_alias] = ACTIONS(2146), + [anon_sym_let] = ACTIONS(2146), + [anon_sym_let_DASHenv] = ACTIONS(2146), + [anon_sym_mut] = ACTIONS(2146), + [anon_sym_const] = ACTIONS(2146), + [sym_cmd_identifier] = ACTIONS(2146), + [anon_sym_def] = ACTIONS(2146), + [anon_sym_export_DASHenv] = ACTIONS(2146), + [anon_sym_extern] = ACTIONS(2146), + [anon_sym_module] = ACTIONS(2146), + [anon_sym_use] = ACTIONS(2146), + [anon_sym_LPAREN] = ACTIONS(2146), + [anon_sym_DOLLAR] = ACTIONS(5653), + [anon_sym_error] = ACTIONS(2146), + [anon_sym_list] = ACTIONS(2146), + [anon_sym_DASH] = ACTIONS(2146), + [anon_sym_break] = ACTIONS(2146), + [anon_sym_continue] = ACTIONS(2146), + [anon_sym_for] = ACTIONS(2146), + [anon_sym_in] = ACTIONS(2146), + [anon_sym_loop] = ACTIONS(2146), + [anon_sym_make] = ACTIONS(2146), + [anon_sym_while] = ACTIONS(2146), + [anon_sym_do] = ACTIONS(2146), + [anon_sym_if] = ACTIONS(2146), + [anon_sym_else] = ACTIONS(2146), + [anon_sym_match] = ACTIONS(2146), + [anon_sym_RBRACE] = ACTIONS(2148), + [anon_sym_try] = ACTIONS(2146), + [anon_sym_catch] = ACTIONS(2146), + [anon_sym_return] = ACTIONS(2146), + [anon_sym_source] = ACTIONS(2146), + [anon_sym_source_DASHenv] = ACTIONS(2146), + [anon_sym_register] = ACTIONS(2146), + [anon_sym_hide] = ACTIONS(2146), + [anon_sym_hide_DASHenv] = ACTIONS(2146), + [anon_sym_overlay] = ACTIONS(2146), + [anon_sym_new] = ACTIONS(2146), + [anon_sym_as] = ACTIONS(2146), + [anon_sym_PLUS] = ACTIONS(2146), + [anon_sym_LPAREN2] = ACTIONS(6467), + [anon_sym_DOT] = ACTIONS(6469), + [aux_sym__immediate_decimal_token1] = ACTIONS(6471), + [aux_sym__immediate_decimal_token3] = ACTIONS(6473), + [aux_sym__immediate_decimal_token4] = ACTIONS(6475), + [aux_sym__val_number_decimal_token1] = ACTIONS(2146), + [aux_sym__val_number_decimal_token2] = ACTIONS(2146), + [anon_sym_DOT2] = ACTIONS(2146), + [aux_sym__val_number_decimal_token3] = ACTIONS(2146), + [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(2146), + [aux_sym__val_number_token5] = ACTIONS(2148), + [aux_sym__val_number_token6] = ACTIONS(2146), + [anon_sym_DQUOTE] = ACTIONS(2148), + [sym__str_single_quotes] = ACTIONS(2148), + [sym__str_back_ticks] = ACTIONS(2148), + [aux_sym__record_key_token2] = ACTIONS(2146), [anon_sym_POUND] = ACTIONS(3), }, - [2258] = { - [sym_expr_unary] = STATE(3452), - [sym__expr_unary_minus] = STATE(3447), - [sym_expr_binary] = STATE(3452), - [sym__expr_binary_expression] = STATE(3482), - [sym_expr_parenthesized] = STATE(3452), - [sym__val_range] = STATE(10714), - [sym__value] = STATE(3452), - [sym_val_nothing] = STATE(3462), - [sym_val_bool] = STATE(3390), - [sym_val_variable] = STATE(3462), - [sym__var] = STATE(3151), - [sym_val_number] = STATE(3462), - [sym__val_number_decimal] = STATE(2880), - [sym__val_number] = STATE(3471), - [sym_val_duration] = STATE(3462), - [sym_val_filesize] = STATE(3462), - [sym_val_binary] = STATE(3462), - [sym_val_string] = STATE(3462), - [sym__str_double_quotes] = STATE(3470), - [sym_val_interpolated] = STATE(3462), - [sym__inter_single_quotes] = STATE(3435), - [sym__inter_double_quotes] = STATE(3436), - [sym_val_list] = STATE(3462), - [sym_val_record] = STATE(3462), - [sym_val_table] = STATE(3462), - [sym_val_closure] = STATE(3462), - [sym_unquoted] = STATE(3463), - [sym__unquoted_anonymous_prefix] = STATE(11201), - [sym_comment] = STATE(2258), - [anon_sym_LBRACK] = ACTIONS(4243), - [anon_sym_LPAREN] = ACTIONS(5915), - [anon_sym_DOLLAR] = ACTIONS(5917), - [anon_sym_DASH] = ACTIONS(4249), - [anon_sym_LBRACE] = ACTIONS(4251), - [anon_sym_DOT_DOT] = ACTIONS(5919), - [anon_sym_not] = ACTIONS(4255), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5921), - [anon_sym_DOT_DOT_LT] = ACTIONS(5921), - [anon_sym_null] = ACTIONS(4259), - [anon_sym_true] = ACTIONS(4261), - [anon_sym_false] = ACTIONS(4261), - [aux_sym__val_number_decimal_token1] = ACTIONS(4263), - [aux_sym__val_number_decimal_token2] = ACTIONS(4265), - [anon_sym_DOT2] = ACTIONS(5923), - [aux_sym__val_number_decimal_token3] = ACTIONS(4269), - [aux_sym__val_number_token1] = ACTIONS(4271), - [aux_sym__val_number_token2] = ACTIONS(4271), - [aux_sym__val_number_token3] = ACTIONS(4271), - [aux_sym__val_number_token4] = ACTIONS(5925), - [aux_sym__val_number_token5] = ACTIONS(5925), - [aux_sym__val_number_token6] = ACTIONS(5925), - [anon_sym_0b] = ACTIONS(4275), - [anon_sym_0o] = ACTIONS(4277), - [anon_sym_0x] = ACTIONS(4277), - [sym_val_date] = ACTIONS(4279), - [anon_sym_DQUOTE] = ACTIONS(4281), - [sym__str_single_quotes] = ACTIONS(4283), - [sym__str_back_ticks] = ACTIONS(4283), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4285), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4287), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5927), - [anon_sym_POUND] = ACTIONS(3), + [2529] = { + [sym_comment] = STATE(2529), + [anon_sym_export] = ACTIONS(6094), + [anon_sym_alias] = ACTIONS(6094), + [anon_sym_let] = ACTIONS(6094), + [anon_sym_let_DASHenv] = ACTIONS(6094), + [anon_sym_mut] = ACTIONS(6094), + [anon_sym_const] = ACTIONS(6094), + [anon_sym_SEMI] = ACTIONS(6094), + [sym_cmd_identifier] = ACTIONS(6094), + [anon_sym_LF] = ACTIONS(6477), + [anon_sym_def] = ACTIONS(6094), + [anon_sym_export_DASHenv] = ACTIONS(6094), + [anon_sym_extern] = ACTIONS(6094), + [anon_sym_module] = ACTIONS(6094), + [anon_sym_use] = ACTIONS(6094), + [anon_sym_LBRACK] = ACTIONS(6094), + [anon_sym_LPAREN] = ACTIONS(6094), + [anon_sym_DOLLAR] = ACTIONS(6094), + [anon_sym_error] = ACTIONS(6094), + [anon_sym_DASH] = ACTIONS(6094), + [anon_sym_break] = ACTIONS(6094), + [anon_sym_continue] = ACTIONS(6094), + [anon_sym_for] = ACTIONS(6094), + [anon_sym_loop] = ACTIONS(6094), + [anon_sym_while] = ACTIONS(6094), + [anon_sym_do] = ACTIONS(6094), + [anon_sym_if] = ACTIONS(6094), + [anon_sym_match] = ACTIONS(6094), + [anon_sym_LBRACE] = ACTIONS(6094), + [anon_sym_DOT_DOT] = ACTIONS(6094), + [anon_sym_try] = ACTIONS(6094), + [anon_sym_return] = ACTIONS(6094), + [anon_sym_source] = ACTIONS(6094), + [anon_sym_source_DASHenv] = ACTIONS(6094), + [anon_sym_register] = ACTIONS(6094), + [anon_sym_hide] = ACTIONS(6094), + [anon_sym_hide_DASHenv] = ACTIONS(6094), + [anon_sym_overlay] = ACTIONS(6094), + [anon_sym_where] = ACTIONS(6094), + [anon_sym_not] = ACTIONS(6094), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6094), + [anon_sym_DOT_DOT_LT] = ACTIONS(6094), + [anon_sym_null] = ACTIONS(6094), + [anon_sym_true] = ACTIONS(6094), + [anon_sym_false] = ACTIONS(6094), + [aux_sym__val_number_decimal_token1] = ACTIONS(6094), + [aux_sym__val_number_decimal_token2] = ACTIONS(6094), + [anon_sym_DOT2] = ACTIONS(6094), + [aux_sym__val_number_decimal_token3] = ACTIONS(6094), + [aux_sym__val_number_token1] = ACTIONS(6094), + [aux_sym__val_number_token2] = ACTIONS(6094), + [aux_sym__val_number_token3] = ACTIONS(6094), + [aux_sym__val_number_token4] = ACTIONS(6094), + [aux_sym__val_number_token5] = ACTIONS(6094), + [aux_sym__val_number_token6] = ACTIONS(6094), + [anon_sym_0b] = ACTIONS(6094), + [anon_sym_0o] = ACTIONS(6094), + [anon_sym_0x] = ACTIONS(6094), + [sym_val_date] = ACTIONS(6094), + [anon_sym_DQUOTE] = ACTIONS(6094), + [sym__str_single_quotes] = ACTIONS(6094), + [sym__str_back_ticks] = ACTIONS(6094), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6094), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6094), + [anon_sym_CARET] = ACTIONS(6094), + [anon_sym_POUND] = ACTIONS(113), }, - [2259] = { - [sym_expr_unary] = STATE(3452), - [sym__expr_unary_minus] = STATE(3447), - [sym_expr_binary] = STATE(3452), - [sym__expr_binary_expression] = STATE(3483), - [sym_expr_parenthesized] = STATE(3452), - [sym__val_range] = STATE(10714), - [sym__value] = STATE(3452), - [sym_val_nothing] = STATE(3462), - [sym_val_bool] = STATE(3390), - [sym_val_variable] = STATE(3462), - [sym__var] = STATE(3151), - [sym_val_number] = STATE(3462), - [sym__val_number_decimal] = STATE(2880), - [sym__val_number] = STATE(3471), - [sym_val_duration] = STATE(3462), - [sym_val_filesize] = STATE(3462), - [sym_val_binary] = STATE(3462), - [sym_val_string] = STATE(3462), - [sym__str_double_quotes] = STATE(3470), - [sym_val_interpolated] = STATE(3462), - [sym__inter_single_quotes] = STATE(3435), - [sym__inter_double_quotes] = STATE(3436), - [sym_val_list] = STATE(3462), - [sym_val_record] = STATE(3462), - [sym_val_table] = STATE(3462), - [sym_val_closure] = STATE(3462), - [sym_unquoted] = STATE(3464), - [sym__unquoted_anonymous_prefix] = STATE(11201), - [sym_comment] = STATE(2259), - [anon_sym_LBRACK] = ACTIONS(4243), - [anon_sym_LPAREN] = ACTIONS(5915), - [anon_sym_DOLLAR] = ACTIONS(5917), - [anon_sym_DASH] = ACTIONS(4249), - [anon_sym_LBRACE] = ACTIONS(4251), - [anon_sym_DOT_DOT] = ACTIONS(5919), - [anon_sym_not] = ACTIONS(4255), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5921), - [anon_sym_DOT_DOT_LT] = ACTIONS(5921), - [anon_sym_null] = ACTIONS(4259), - [anon_sym_true] = ACTIONS(4261), - [anon_sym_false] = ACTIONS(4261), - [aux_sym__val_number_decimal_token1] = ACTIONS(4263), - [aux_sym__val_number_decimal_token2] = ACTIONS(4265), - [anon_sym_DOT2] = ACTIONS(5923), - [aux_sym__val_number_decimal_token3] = ACTIONS(4269), - [aux_sym__val_number_token1] = ACTIONS(4271), - [aux_sym__val_number_token2] = ACTIONS(4271), - [aux_sym__val_number_token3] = ACTIONS(4271), - [aux_sym__val_number_token4] = ACTIONS(5925), - [aux_sym__val_number_token5] = ACTIONS(5925), - [aux_sym__val_number_token6] = ACTIONS(5925), - [anon_sym_0b] = ACTIONS(4275), - [anon_sym_0o] = ACTIONS(4277), - [anon_sym_0x] = ACTIONS(4277), - [sym_val_date] = ACTIONS(4279), - [anon_sym_DQUOTE] = ACTIONS(4281), - [sym__str_single_quotes] = ACTIONS(4283), - [sym__str_back_ticks] = ACTIONS(4283), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4285), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4287), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5927), - [anon_sym_POUND] = ACTIONS(3), + [2530] = { + [sym_comment] = STATE(2530), + [anon_sym_export] = ACTIONS(6479), + [anon_sym_alias] = ACTIONS(6479), + [anon_sym_let] = ACTIONS(6479), + [anon_sym_let_DASHenv] = ACTIONS(6479), + [anon_sym_mut] = ACTIONS(6479), + [anon_sym_const] = ACTIONS(6479), + [anon_sym_SEMI] = ACTIONS(6479), + [sym_cmd_identifier] = ACTIONS(6479), + [anon_sym_LF] = ACTIONS(6481), + [anon_sym_def] = ACTIONS(6479), + [anon_sym_export_DASHenv] = ACTIONS(6479), + [anon_sym_extern] = ACTIONS(6479), + [anon_sym_module] = ACTIONS(6479), + [anon_sym_use] = ACTIONS(6479), + [anon_sym_LBRACK] = ACTIONS(6479), + [anon_sym_LPAREN] = ACTIONS(6479), + [anon_sym_DOLLAR] = ACTIONS(6479), + [anon_sym_error] = ACTIONS(6479), + [anon_sym_DASH] = ACTIONS(6479), + [anon_sym_break] = ACTIONS(6479), + [anon_sym_continue] = ACTIONS(6479), + [anon_sym_for] = ACTIONS(6479), + [anon_sym_loop] = ACTIONS(6479), + [anon_sym_while] = ACTIONS(6479), + [anon_sym_do] = ACTIONS(6479), + [anon_sym_if] = ACTIONS(6479), + [anon_sym_match] = ACTIONS(6479), + [anon_sym_LBRACE] = ACTIONS(6479), + [anon_sym_DOT_DOT] = ACTIONS(6479), + [anon_sym_try] = ACTIONS(6479), + [anon_sym_return] = ACTIONS(6479), + [anon_sym_source] = ACTIONS(6479), + [anon_sym_source_DASHenv] = ACTIONS(6479), + [anon_sym_register] = ACTIONS(6479), + [anon_sym_hide] = ACTIONS(6479), + [anon_sym_hide_DASHenv] = ACTIONS(6479), + [anon_sym_overlay] = ACTIONS(6479), + [anon_sym_where] = ACTIONS(6479), + [anon_sym_not] = ACTIONS(6479), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6479), + [anon_sym_DOT_DOT_LT] = ACTIONS(6479), + [anon_sym_null] = ACTIONS(6479), + [anon_sym_true] = ACTIONS(6479), + [anon_sym_false] = ACTIONS(6479), + [aux_sym__val_number_decimal_token1] = ACTIONS(6479), + [aux_sym__val_number_decimal_token2] = ACTIONS(6479), + [anon_sym_DOT2] = ACTIONS(6479), + [aux_sym__val_number_decimal_token3] = ACTIONS(6479), + [aux_sym__val_number_token1] = ACTIONS(6479), + [aux_sym__val_number_token2] = ACTIONS(6479), + [aux_sym__val_number_token3] = ACTIONS(6479), + [aux_sym__val_number_token4] = ACTIONS(6479), + [aux_sym__val_number_token5] = ACTIONS(6479), + [aux_sym__val_number_token6] = ACTIONS(6479), + [anon_sym_0b] = ACTIONS(6479), + [anon_sym_0o] = ACTIONS(6479), + [anon_sym_0x] = ACTIONS(6479), + [sym_val_date] = ACTIONS(6479), + [anon_sym_DQUOTE] = ACTIONS(6479), + [sym__str_single_quotes] = ACTIONS(6479), + [sym__str_back_ticks] = ACTIONS(6479), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6479), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6479), + [anon_sym_CARET] = ACTIONS(6479), + [anon_sym_POUND] = ACTIONS(113), }, - [2260] = { - [sym_expr_unary] = STATE(3452), - [sym__expr_unary_minus] = STATE(3447), - [sym_expr_binary] = STATE(3452), - [sym__expr_binary_expression] = STATE(3484), - [sym_expr_parenthesized] = STATE(3452), - [sym__val_range] = STATE(10714), - [sym__value] = STATE(3452), - [sym_val_nothing] = STATE(3462), - [sym_val_bool] = STATE(3390), - [sym_val_variable] = STATE(3462), - [sym__var] = STATE(3151), - [sym_val_number] = STATE(3462), - [sym__val_number_decimal] = STATE(2880), - [sym__val_number] = STATE(3471), - [sym_val_duration] = STATE(3462), - [sym_val_filesize] = STATE(3462), - [sym_val_binary] = STATE(3462), - [sym_val_string] = STATE(3462), - [sym__str_double_quotes] = STATE(3470), - [sym_val_interpolated] = STATE(3462), - [sym__inter_single_quotes] = STATE(3435), - [sym__inter_double_quotes] = STATE(3436), - [sym_val_list] = STATE(3462), - [sym_val_record] = STATE(3462), - [sym_val_table] = STATE(3462), - [sym_val_closure] = STATE(3462), - [sym_unquoted] = STATE(3465), - [sym__unquoted_anonymous_prefix] = STATE(11201), - [sym_comment] = STATE(2260), - [anon_sym_LBRACK] = ACTIONS(4243), - [anon_sym_LPAREN] = ACTIONS(5915), - [anon_sym_DOLLAR] = ACTIONS(5917), - [anon_sym_DASH] = ACTIONS(4249), - [anon_sym_LBRACE] = ACTIONS(4251), - [anon_sym_DOT_DOT] = ACTIONS(5919), - [anon_sym_not] = ACTIONS(4255), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5921), - [anon_sym_DOT_DOT_LT] = ACTIONS(5921), - [anon_sym_null] = ACTIONS(4259), - [anon_sym_true] = ACTIONS(4261), - [anon_sym_false] = ACTIONS(4261), - [aux_sym__val_number_decimal_token1] = ACTIONS(4263), - [aux_sym__val_number_decimal_token2] = ACTIONS(4265), - [anon_sym_DOT2] = ACTIONS(5923), - [aux_sym__val_number_decimal_token3] = ACTIONS(4269), - [aux_sym__val_number_token1] = ACTIONS(4271), - [aux_sym__val_number_token2] = ACTIONS(4271), - [aux_sym__val_number_token3] = ACTIONS(4271), - [aux_sym__val_number_token4] = ACTIONS(5925), - [aux_sym__val_number_token5] = ACTIONS(5925), - [aux_sym__val_number_token6] = ACTIONS(5925), - [anon_sym_0b] = ACTIONS(4275), - [anon_sym_0o] = ACTIONS(4277), - [anon_sym_0x] = ACTIONS(4277), - [sym_val_date] = ACTIONS(4279), - [anon_sym_DQUOTE] = ACTIONS(4281), - [sym__str_single_quotes] = ACTIONS(4283), - [sym__str_back_ticks] = ACTIONS(4283), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4285), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4287), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5927), - [anon_sym_POUND] = ACTIONS(3), + [2531] = { + [sym_comment] = STATE(2531), + [anon_sym_export] = ACTIONS(6483), + [anon_sym_alias] = ACTIONS(6483), + [anon_sym_let] = ACTIONS(6483), + [anon_sym_let_DASHenv] = ACTIONS(6483), + [anon_sym_mut] = ACTIONS(6483), + [anon_sym_const] = ACTIONS(6483), + [anon_sym_SEMI] = ACTIONS(6483), + [sym_cmd_identifier] = ACTIONS(6483), + [anon_sym_LF] = ACTIONS(6485), + [anon_sym_def] = ACTIONS(6483), + [anon_sym_export_DASHenv] = ACTIONS(6483), + [anon_sym_extern] = ACTIONS(6483), + [anon_sym_module] = ACTIONS(6483), + [anon_sym_use] = ACTIONS(6483), + [anon_sym_LBRACK] = ACTIONS(6483), + [anon_sym_LPAREN] = ACTIONS(6483), + [anon_sym_DOLLAR] = ACTIONS(6483), + [anon_sym_error] = ACTIONS(6483), + [anon_sym_DASH] = ACTIONS(6483), + [anon_sym_break] = ACTIONS(6483), + [anon_sym_continue] = ACTIONS(6483), + [anon_sym_for] = ACTIONS(6483), + [anon_sym_loop] = ACTIONS(6483), + [anon_sym_while] = ACTIONS(6483), + [anon_sym_do] = ACTIONS(6483), + [anon_sym_if] = ACTIONS(6483), + [anon_sym_match] = ACTIONS(6483), + [anon_sym_LBRACE] = ACTIONS(6483), + [anon_sym_DOT_DOT] = ACTIONS(6483), + [anon_sym_try] = ACTIONS(6483), + [anon_sym_return] = ACTIONS(6483), + [anon_sym_source] = ACTIONS(6483), + [anon_sym_source_DASHenv] = ACTIONS(6483), + [anon_sym_register] = ACTIONS(6483), + [anon_sym_hide] = ACTIONS(6483), + [anon_sym_hide_DASHenv] = ACTIONS(6483), + [anon_sym_overlay] = ACTIONS(6483), + [anon_sym_where] = ACTIONS(6483), + [anon_sym_not] = ACTIONS(6483), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6483), + [anon_sym_DOT_DOT_LT] = ACTIONS(6483), + [anon_sym_null] = ACTIONS(6483), + [anon_sym_true] = ACTIONS(6483), + [anon_sym_false] = ACTIONS(6483), + [aux_sym__val_number_decimal_token1] = ACTIONS(6483), + [aux_sym__val_number_decimal_token2] = ACTIONS(6483), + [anon_sym_DOT2] = ACTIONS(6483), + [aux_sym__val_number_decimal_token3] = ACTIONS(6483), + [aux_sym__val_number_token1] = ACTIONS(6483), + [aux_sym__val_number_token2] = ACTIONS(6483), + [aux_sym__val_number_token3] = ACTIONS(6483), + [aux_sym__val_number_token4] = ACTIONS(6483), + [aux_sym__val_number_token5] = ACTIONS(6483), + [aux_sym__val_number_token6] = ACTIONS(6483), + [anon_sym_0b] = ACTIONS(6483), + [anon_sym_0o] = ACTIONS(6483), + [anon_sym_0x] = ACTIONS(6483), + [sym_val_date] = ACTIONS(6483), + [anon_sym_DQUOTE] = ACTIONS(6483), + [sym__str_single_quotes] = ACTIONS(6483), + [sym__str_back_ticks] = ACTIONS(6483), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6483), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6483), + [anon_sym_CARET] = ACTIONS(6483), + [anon_sym_POUND] = ACTIONS(113), }, - [2261] = { - [sym_expr_unary] = STATE(3452), - [sym__expr_unary_minus] = STATE(3447), - [sym_expr_binary] = STATE(3452), - [sym__expr_binary_expression] = STATE(3486), - [sym_expr_parenthesized] = STATE(3452), - [sym__val_range] = STATE(10714), - [sym__value] = STATE(3452), - [sym_val_nothing] = STATE(3462), - [sym_val_bool] = STATE(3390), - [sym_val_variable] = STATE(3462), - [sym__var] = STATE(3151), - [sym_val_number] = STATE(3462), - [sym__val_number_decimal] = STATE(2880), - [sym__val_number] = STATE(3471), - [sym_val_duration] = STATE(3462), - [sym_val_filesize] = STATE(3462), - [sym_val_binary] = STATE(3462), - [sym_val_string] = STATE(3462), - [sym__str_double_quotes] = STATE(3470), - [sym_val_interpolated] = STATE(3462), - [sym__inter_single_quotes] = STATE(3435), - [sym__inter_double_quotes] = STATE(3436), - [sym_val_list] = STATE(3462), - [sym_val_record] = STATE(3462), - [sym_val_table] = STATE(3462), - [sym_val_closure] = STATE(3462), - [sym_unquoted] = STATE(3466), - [sym__unquoted_anonymous_prefix] = STATE(11201), - [sym_comment] = STATE(2261), - [anon_sym_LBRACK] = ACTIONS(4243), - [anon_sym_LPAREN] = ACTIONS(5915), - [anon_sym_DOLLAR] = ACTIONS(5917), - [anon_sym_DASH] = ACTIONS(4249), - [anon_sym_LBRACE] = ACTIONS(4251), - [anon_sym_DOT_DOT] = ACTIONS(5919), - [anon_sym_not] = ACTIONS(4255), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5921), - [anon_sym_DOT_DOT_LT] = ACTIONS(5921), - [anon_sym_null] = ACTIONS(4259), - [anon_sym_true] = ACTIONS(4261), - [anon_sym_false] = ACTIONS(4261), - [aux_sym__val_number_decimal_token1] = ACTIONS(4263), - [aux_sym__val_number_decimal_token2] = ACTIONS(4265), - [anon_sym_DOT2] = ACTIONS(5923), - [aux_sym__val_number_decimal_token3] = ACTIONS(4269), - [aux_sym__val_number_token1] = ACTIONS(4271), - [aux_sym__val_number_token2] = ACTIONS(4271), - [aux_sym__val_number_token3] = ACTIONS(4271), - [aux_sym__val_number_token4] = ACTIONS(5925), - [aux_sym__val_number_token5] = ACTIONS(5925), - [aux_sym__val_number_token6] = ACTIONS(5925), - [anon_sym_0b] = ACTIONS(4275), - [anon_sym_0o] = ACTIONS(4277), - [anon_sym_0x] = ACTIONS(4277), - [sym_val_date] = ACTIONS(4279), - [anon_sym_DQUOTE] = ACTIONS(4281), - [sym__str_single_quotes] = ACTIONS(4283), - [sym__str_back_ticks] = ACTIONS(4283), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4285), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4287), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5927), - [anon_sym_POUND] = ACTIONS(3), + [2532] = { + [sym_comment] = STATE(2532), + [anon_sym_export] = ACTIONS(6487), + [anon_sym_alias] = ACTIONS(6487), + [anon_sym_let] = ACTIONS(6487), + [anon_sym_let_DASHenv] = ACTIONS(6487), + [anon_sym_mut] = ACTIONS(6487), + [anon_sym_const] = ACTIONS(6487), + [anon_sym_SEMI] = ACTIONS(6487), + [sym_cmd_identifier] = ACTIONS(6487), + [anon_sym_LF] = ACTIONS(6489), + [anon_sym_def] = ACTIONS(6487), + [anon_sym_export_DASHenv] = ACTIONS(6487), + [anon_sym_extern] = ACTIONS(6487), + [anon_sym_module] = ACTIONS(6487), + [anon_sym_use] = ACTIONS(6487), + [anon_sym_LBRACK] = ACTIONS(6487), + [anon_sym_LPAREN] = ACTIONS(6487), + [anon_sym_DOLLAR] = ACTIONS(6487), + [anon_sym_error] = ACTIONS(6487), + [anon_sym_DASH] = ACTIONS(6487), + [anon_sym_break] = ACTIONS(6487), + [anon_sym_continue] = ACTIONS(6487), + [anon_sym_for] = ACTIONS(6487), + [anon_sym_loop] = ACTIONS(6487), + [anon_sym_while] = ACTIONS(6487), + [anon_sym_do] = ACTIONS(6487), + [anon_sym_if] = ACTIONS(6487), + [anon_sym_match] = ACTIONS(6487), + [anon_sym_LBRACE] = ACTIONS(6487), + [anon_sym_DOT_DOT] = ACTIONS(6487), + [anon_sym_try] = ACTIONS(6487), + [anon_sym_return] = ACTIONS(6487), + [anon_sym_source] = ACTIONS(6487), + [anon_sym_source_DASHenv] = ACTIONS(6487), + [anon_sym_register] = ACTIONS(6487), + [anon_sym_hide] = ACTIONS(6487), + [anon_sym_hide_DASHenv] = ACTIONS(6487), + [anon_sym_overlay] = ACTIONS(6487), + [anon_sym_where] = ACTIONS(6487), + [anon_sym_not] = ACTIONS(6487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6487), + [anon_sym_DOT_DOT_LT] = ACTIONS(6487), + [anon_sym_null] = ACTIONS(6487), + [anon_sym_true] = ACTIONS(6487), + [anon_sym_false] = ACTIONS(6487), + [aux_sym__val_number_decimal_token1] = ACTIONS(6487), + [aux_sym__val_number_decimal_token2] = ACTIONS(6487), + [anon_sym_DOT2] = ACTIONS(6487), + [aux_sym__val_number_decimal_token3] = ACTIONS(6487), + [aux_sym__val_number_token1] = ACTIONS(6487), + [aux_sym__val_number_token2] = ACTIONS(6487), + [aux_sym__val_number_token3] = ACTIONS(6487), + [aux_sym__val_number_token4] = ACTIONS(6487), + [aux_sym__val_number_token5] = ACTIONS(6487), + [aux_sym__val_number_token6] = ACTIONS(6487), + [anon_sym_0b] = ACTIONS(6487), + [anon_sym_0o] = ACTIONS(6487), + [anon_sym_0x] = ACTIONS(6487), + [sym_val_date] = ACTIONS(6487), + [anon_sym_DQUOTE] = ACTIONS(6487), + [sym__str_single_quotes] = ACTIONS(6487), + [sym__str_back_ticks] = ACTIONS(6487), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6487), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6487), + [anon_sym_CARET] = ACTIONS(6487), + [anon_sym_POUND] = ACTIONS(113), }, - [2262] = { - [sym_expr_unary] = STATE(3452), - [sym__expr_unary_minus] = STATE(3447), - [sym_expr_binary] = STATE(3452), - [sym__expr_binary_expression] = STATE(3487), - [sym_expr_parenthesized] = STATE(3452), - [sym__val_range] = STATE(10714), - [sym__value] = STATE(3452), - [sym_val_nothing] = STATE(3462), - [sym_val_bool] = STATE(3390), - [sym_val_variable] = STATE(3462), - [sym__var] = STATE(3151), - [sym_val_number] = STATE(3462), - [sym__val_number_decimal] = STATE(2880), - [sym__val_number] = STATE(3471), - [sym_val_duration] = STATE(3462), - [sym_val_filesize] = STATE(3462), - [sym_val_binary] = STATE(3462), - [sym_val_string] = STATE(3462), - [sym__str_double_quotes] = STATE(3470), - [sym_val_interpolated] = STATE(3462), - [sym__inter_single_quotes] = STATE(3435), - [sym__inter_double_quotes] = STATE(3436), - [sym_val_list] = STATE(3462), - [sym_val_record] = STATE(3462), - [sym_val_table] = STATE(3462), - [sym_val_closure] = STATE(3462), - [sym_unquoted] = STATE(3467), - [sym__unquoted_anonymous_prefix] = STATE(11201), - [sym_comment] = STATE(2262), - [anon_sym_LBRACK] = ACTIONS(4243), - [anon_sym_LPAREN] = ACTIONS(5915), - [anon_sym_DOLLAR] = ACTIONS(5917), - [anon_sym_DASH] = ACTIONS(4249), - [anon_sym_LBRACE] = ACTIONS(4251), - [anon_sym_DOT_DOT] = ACTIONS(5919), - [anon_sym_not] = ACTIONS(4255), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5921), - [anon_sym_DOT_DOT_LT] = ACTIONS(5921), - [anon_sym_null] = ACTIONS(4259), - [anon_sym_true] = ACTIONS(4261), - [anon_sym_false] = ACTIONS(4261), - [aux_sym__val_number_decimal_token1] = ACTIONS(4263), - [aux_sym__val_number_decimal_token2] = ACTIONS(4265), - [anon_sym_DOT2] = ACTIONS(5923), - [aux_sym__val_number_decimal_token3] = ACTIONS(4269), - [aux_sym__val_number_token1] = ACTIONS(4271), - [aux_sym__val_number_token2] = ACTIONS(4271), - [aux_sym__val_number_token3] = ACTIONS(4271), - [aux_sym__val_number_token4] = ACTIONS(5925), - [aux_sym__val_number_token5] = ACTIONS(5925), - [aux_sym__val_number_token6] = ACTIONS(5925), - [anon_sym_0b] = ACTIONS(4275), - [anon_sym_0o] = ACTIONS(4277), - [anon_sym_0x] = ACTIONS(4277), - [sym_val_date] = ACTIONS(4279), - [anon_sym_DQUOTE] = ACTIONS(4281), - [sym__str_single_quotes] = ACTIONS(4283), - [sym__str_back_ticks] = ACTIONS(4283), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4285), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4287), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5927), - [anon_sym_POUND] = ACTIONS(3), + [2533] = { + [sym_comment] = STATE(2533), + [anon_sym_export] = ACTIONS(6491), + [anon_sym_alias] = ACTIONS(6491), + [anon_sym_let] = ACTIONS(6491), + [anon_sym_let_DASHenv] = ACTIONS(6491), + [anon_sym_mut] = ACTIONS(6491), + [anon_sym_const] = ACTIONS(6491), + [anon_sym_SEMI] = ACTIONS(6491), + [sym_cmd_identifier] = ACTIONS(6491), + [anon_sym_LF] = ACTIONS(6493), + [anon_sym_def] = ACTIONS(6491), + [anon_sym_export_DASHenv] = ACTIONS(6491), + [anon_sym_extern] = ACTIONS(6491), + [anon_sym_module] = ACTIONS(6491), + [anon_sym_use] = ACTIONS(6491), + [anon_sym_LBRACK] = ACTIONS(6491), + [anon_sym_LPAREN] = ACTIONS(6491), + [anon_sym_DOLLAR] = ACTIONS(6491), + [anon_sym_error] = ACTIONS(6491), + [anon_sym_DASH] = ACTIONS(6491), + [anon_sym_break] = ACTIONS(6491), + [anon_sym_continue] = ACTIONS(6491), + [anon_sym_for] = ACTIONS(6491), + [anon_sym_loop] = ACTIONS(6491), + [anon_sym_while] = ACTIONS(6491), + [anon_sym_do] = ACTIONS(6491), + [anon_sym_if] = ACTIONS(6491), + [anon_sym_match] = ACTIONS(6491), + [anon_sym_LBRACE] = ACTIONS(6491), + [anon_sym_DOT_DOT] = ACTIONS(6491), + [anon_sym_try] = ACTIONS(6491), + [anon_sym_return] = ACTIONS(6491), + [anon_sym_source] = ACTIONS(6491), + [anon_sym_source_DASHenv] = ACTIONS(6491), + [anon_sym_register] = ACTIONS(6491), + [anon_sym_hide] = ACTIONS(6491), + [anon_sym_hide_DASHenv] = ACTIONS(6491), + [anon_sym_overlay] = ACTIONS(6491), + [anon_sym_where] = ACTIONS(6491), + [anon_sym_not] = ACTIONS(6491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6491), + [anon_sym_DOT_DOT_LT] = ACTIONS(6491), + [anon_sym_null] = ACTIONS(6491), + [anon_sym_true] = ACTIONS(6491), + [anon_sym_false] = ACTIONS(6491), + [aux_sym__val_number_decimal_token1] = ACTIONS(6491), + [aux_sym__val_number_decimal_token2] = ACTIONS(6491), + [anon_sym_DOT2] = ACTIONS(6491), + [aux_sym__val_number_decimal_token3] = ACTIONS(6491), + [aux_sym__val_number_token1] = ACTIONS(6491), + [aux_sym__val_number_token2] = ACTIONS(6491), + [aux_sym__val_number_token3] = ACTIONS(6491), + [aux_sym__val_number_token4] = ACTIONS(6491), + [aux_sym__val_number_token5] = ACTIONS(6491), + [aux_sym__val_number_token6] = ACTIONS(6491), + [anon_sym_0b] = ACTIONS(6491), + [anon_sym_0o] = ACTIONS(6491), + [anon_sym_0x] = ACTIONS(6491), + [sym_val_date] = ACTIONS(6491), + [anon_sym_DQUOTE] = ACTIONS(6491), + [sym__str_single_quotes] = ACTIONS(6491), + [sym__str_back_ticks] = ACTIONS(6491), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6491), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6491), + [anon_sym_CARET] = ACTIONS(6491), + [anon_sym_POUND] = ACTIONS(113), }, - [2263] = { - [sym_expr_unary] = STATE(3452), - [sym__expr_unary_minus] = STATE(3447), - [sym_expr_binary] = STATE(3452), - [sym__expr_binary_expression] = STATE(3488), - [sym_expr_parenthesized] = STATE(3452), - [sym__val_range] = STATE(10714), - [sym__value] = STATE(3452), - [sym_val_nothing] = STATE(3462), - [sym_val_bool] = STATE(3390), - [sym_val_variable] = STATE(3462), - [sym__var] = STATE(3151), - [sym_val_number] = STATE(3462), - [sym__val_number_decimal] = STATE(2880), - [sym__val_number] = STATE(3471), - [sym_val_duration] = STATE(3462), - [sym_val_filesize] = STATE(3462), - [sym_val_binary] = STATE(3462), - [sym_val_string] = STATE(3462), - [sym__str_double_quotes] = STATE(3470), - [sym_val_interpolated] = STATE(3462), - [sym__inter_single_quotes] = STATE(3435), - [sym__inter_double_quotes] = STATE(3436), - [sym_val_list] = STATE(3462), - [sym_val_record] = STATE(3462), - [sym_val_table] = STATE(3462), - [sym_val_closure] = STATE(3462), - [sym_unquoted] = STATE(3469), - [sym__unquoted_anonymous_prefix] = STATE(11201), - [sym_comment] = STATE(2263), - [anon_sym_LBRACK] = ACTIONS(4243), - [anon_sym_LPAREN] = ACTIONS(5915), - [anon_sym_DOLLAR] = ACTIONS(5917), - [anon_sym_DASH] = ACTIONS(4249), - [anon_sym_LBRACE] = ACTIONS(4251), - [anon_sym_DOT_DOT] = ACTIONS(5919), - [anon_sym_not] = ACTIONS(4255), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5921), - [anon_sym_DOT_DOT_LT] = ACTIONS(5921), - [anon_sym_null] = ACTIONS(4259), - [anon_sym_true] = ACTIONS(4261), - [anon_sym_false] = ACTIONS(4261), - [aux_sym__val_number_decimal_token1] = ACTIONS(4263), - [aux_sym__val_number_decimal_token2] = ACTIONS(4265), - [anon_sym_DOT2] = ACTIONS(5923), - [aux_sym__val_number_decimal_token3] = ACTIONS(4269), - [aux_sym__val_number_token1] = ACTIONS(4271), - [aux_sym__val_number_token2] = ACTIONS(4271), - [aux_sym__val_number_token3] = ACTIONS(4271), - [aux_sym__val_number_token4] = ACTIONS(5925), - [aux_sym__val_number_token5] = ACTIONS(5925), - [aux_sym__val_number_token6] = ACTIONS(5925), - [anon_sym_0b] = ACTIONS(4275), - [anon_sym_0o] = ACTIONS(4277), - [anon_sym_0x] = ACTIONS(4277), - [sym_val_date] = ACTIONS(4279), - [anon_sym_DQUOTE] = ACTIONS(4281), - [sym__str_single_quotes] = ACTIONS(4283), - [sym__str_back_ticks] = ACTIONS(4283), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4285), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4287), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5927), - [anon_sym_POUND] = ACTIONS(3), + [2534] = { + [sym_comment] = STATE(2534), + [anon_sym_export] = ACTIONS(6495), + [anon_sym_alias] = ACTIONS(6495), + [anon_sym_let] = ACTIONS(6495), + [anon_sym_let_DASHenv] = ACTIONS(6495), + [anon_sym_mut] = ACTIONS(6495), + [anon_sym_const] = ACTIONS(6495), + [anon_sym_SEMI] = ACTIONS(6495), + [sym_cmd_identifier] = ACTIONS(6495), + [anon_sym_LF] = ACTIONS(6497), + [anon_sym_def] = ACTIONS(6495), + [anon_sym_export_DASHenv] = ACTIONS(6495), + [anon_sym_extern] = ACTIONS(6495), + [anon_sym_module] = ACTIONS(6495), + [anon_sym_use] = ACTIONS(6495), + [anon_sym_LBRACK] = ACTIONS(6495), + [anon_sym_LPAREN] = ACTIONS(6495), + [anon_sym_DOLLAR] = ACTIONS(6495), + [anon_sym_error] = ACTIONS(6495), + [anon_sym_DASH] = ACTIONS(6495), + [anon_sym_break] = ACTIONS(6495), + [anon_sym_continue] = ACTIONS(6495), + [anon_sym_for] = ACTIONS(6495), + [anon_sym_loop] = ACTIONS(6495), + [anon_sym_while] = ACTIONS(6495), + [anon_sym_do] = ACTIONS(6495), + [anon_sym_if] = ACTIONS(6495), + [anon_sym_match] = ACTIONS(6495), + [anon_sym_LBRACE] = ACTIONS(6495), + [anon_sym_DOT_DOT] = ACTIONS(6495), + [anon_sym_try] = ACTIONS(6495), + [anon_sym_return] = ACTIONS(6495), + [anon_sym_source] = ACTIONS(6495), + [anon_sym_source_DASHenv] = ACTIONS(6495), + [anon_sym_register] = ACTIONS(6495), + [anon_sym_hide] = ACTIONS(6495), + [anon_sym_hide_DASHenv] = ACTIONS(6495), + [anon_sym_overlay] = ACTIONS(6495), + [anon_sym_where] = ACTIONS(6495), + [anon_sym_not] = ACTIONS(6495), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6495), + [anon_sym_DOT_DOT_LT] = ACTIONS(6495), + [anon_sym_null] = ACTIONS(6495), + [anon_sym_true] = ACTIONS(6495), + [anon_sym_false] = ACTIONS(6495), + [aux_sym__val_number_decimal_token1] = ACTIONS(6495), + [aux_sym__val_number_decimal_token2] = ACTIONS(6495), + [anon_sym_DOT2] = ACTIONS(6495), + [aux_sym__val_number_decimal_token3] = ACTIONS(6495), + [aux_sym__val_number_token1] = ACTIONS(6495), + [aux_sym__val_number_token2] = ACTIONS(6495), + [aux_sym__val_number_token3] = ACTIONS(6495), + [aux_sym__val_number_token4] = ACTIONS(6495), + [aux_sym__val_number_token5] = ACTIONS(6495), + [aux_sym__val_number_token6] = ACTIONS(6495), + [anon_sym_0b] = ACTIONS(6495), + [anon_sym_0o] = ACTIONS(6495), + [anon_sym_0x] = ACTIONS(6495), + [sym_val_date] = ACTIONS(6495), + [anon_sym_DQUOTE] = ACTIONS(6495), + [sym__str_single_quotes] = ACTIONS(6495), + [sym__str_back_ticks] = ACTIONS(6495), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6495), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6495), + [anon_sym_CARET] = ACTIONS(6495), + [anon_sym_POUND] = ACTIONS(113), }, - [2264] = { - [sym_expr_unary] = STATE(895), - [sym__expr_unary_minus] = STATE(893), - [sym_expr_binary] = STATE(895), - [sym__expr_binary_expression] = STATE(912), - [sym_expr_parenthesized] = STATE(895), - [sym__val_range] = STATE(10720), - [sym__value] = STATE(895), - [sym_val_nothing] = STATE(920), - [sym_val_bool] = STATE(865), - [sym_val_variable] = STATE(920), - [sym__var] = STATE(825), - [sym_val_number] = STATE(920), - [sym__val_number_decimal] = STATE(765), - [sym__val_number] = STATE(935), - [sym_val_duration] = STATE(920), - [sym_val_filesize] = STATE(920), - [sym_val_binary] = STATE(920), - [sym_val_string] = STATE(920), - [sym__str_double_quotes] = STATE(868), - [sym_val_interpolated] = STATE(920), - [sym__inter_single_quotes] = STATE(869), - [sym__inter_double_quotes] = STATE(870), - [sym_val_list] = STATE(920), - [sym_val_record] = STATE(920), - [sym_val_table] = STATE(920), - [sym_val_closure] = STATE(920), - [sym_unquoted] = STATE(896), - [sym__unquoted_anonymous_prefix] = STATE(10789), - [sym_comment] = STATE(2264), - [anon_sym_LBRACK] = ACTIONS(5929), - [anon_sym_LPAREN] = ACTIONS(5931), - [anon_sym_DOLLAR] = ACTIONS(5933), - [anon_sym_DASH] = ACTIONS(5935), - [anon_sym_LBRACE] = ACTIONS(5937), - [anon_sym_DOT_DOT] = ACTIONS(5939), - [anon_sym_not] = ACTIONS(5941), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5943), - [anon_sym_DOT_DOT_LT] = ACTIONS(5943), - [anon_sym_null] = ACTIONS(5945), - [anon_sym_true] = ACTIONS(5947), - [anon_sym_false] = ACTIONS(5947), - [aux_sym__val_number_decimal_token1] = ACTIONS(5949), - [aux_sym__val_number_decimal_token2] = ACTIONS(5951), - [anon_sym_DOT2] = ACTIONS(5953), - [aux_sym__val_number_decimal_token3] = ACTIONS(5955), - [aux_sym__val_number_token1] = ACTIONS(5957), - [aux_sym__val_number_token2] = ACTIONS(5957), - [aux_sym__val_number_token3] = ACTIONS(5957), - [aux_sym__val_number_token4] = ACTIONS(5959), - [aux_sym__val_number_token5] = ACTIONS(5959), - [aux_sym__val_number_token6] = ACTIONS(5959), - [anon_sym_0b] = ACTIONS(5961), - [anon_sym_0o] = ACTIONS(5963), - [anon_sym_0x] = ACTIONS(5963), - [sym_val_date] = ACTIONS(5965), - [anon_sym_DQUOTE] = ACTIONS(5967), - [sym__str_single_quotes] = ACTIONS(5969), - [sym__str_back_ticks] = ACTIONS(5969), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5973), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5975), - [anon_sym_POUND] = ACTIONS(3), + [2535] = { + [sym_comment] = STATE(2535), + [anon_sym_SEMI] = ACTIONS(920), + [anon_sym_LF] = ACTIONS(922), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_RPAREN] = ACTIONS(920), + [anon_sym_PIPE] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_in] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_RBRACE] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_STAR_STAR] = ACTIONS(920), + [anon_sym_PLUS_PLUS] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_mod] = ACTIONS(920), + [anon_sym_SLASH_SLASH] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_bit_DASHshl] = ACTIONS(920), + [anon_sym_bit_DASHshr] = ACTIONS(920), + [anon_sym_EQ_EQ] = ACTIONS(920), + [anon_sym_BANG_EQ] = ACTIONS(920), + [anon_sym_LT2] = ACTIONS(920), + [anon_sym_LT_EQ] = ACTIONS(920), + [anon_sym_GT_EQ] = ACTIONS(920), + [anon_sym_not_DASHin] = ACTIONS(920), + [anon_sym_starts_DASHwith] = ACTIONS(920), + [anon_sym_ends_DASHwith] = ACTIONS(920), + [anon_sym_EQ_TILDE] = ACTIONS(920), + [anon_sym_BANG_TILDE] = ACTIONS(920), + [anon_sym_bit_DASHand] = ACTIONS(920), + [anon_sym_bit_DASHxor] = ACTIONS(920), + [anon_sym_bit_DASHor] = ACTIONS(920), + [anon_sym_and] = ACTIONS(920), + [anon_sym_xor] = ACTIONS(920), + [anon_sym_or] = ACTIONS(920), + [anon_sym_not] = ACTIONS(920), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [anon_sym_null] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), + [anon_sym_POUND] = ACTIONS(113), }, - [2265] = { - [sym_expr_unary] = STATE(895), - [sym__expr_unary_minus] = STATE(893), - [sym_expr_binary] = STATE(895), - [sym__expr_binary_expression] = STATE(913), - [sym_expr_parenthesized] = STATE(895), - [sym__val_range] = STATE(10720), - [sym__value] = STATE(895), - [sym_val_nothing] = STATE(920), - [sym_val_bool] = STATE(865), - [sym_val_variable] = STATE(920), - [sym__var] = STATE(825), - [sym_val_number] = STATE(920), - [sym__val_number_decimal] = STATE(765), - [sym__val_number] = STATE(935), - [sym_val_duration] = STATE(920), - [sym_val_filesize] = STATE(920), - [sym_val_binary] = STATE(920), - [sym_val_string] = STATE(920), - [sym__str_double_quotes] = STATE(868), - [sym_val_interpolated] = STATE(920), - [sym__inter_single_quotes] = STATE(869), - [sym__inter_double_quotes] = STATE(870), - [sym_val_list] = STATE(920), - [sym_val_record] = STATE(920), - [sym_val_table] = STATE(920), - [sym_val_closure] = STATE(920), - [sym_unquoted] = STATE(897), - [sym__unquoted_anonymous_prefix] = STATE(10789), - [sym_comment] = STATE(2265), - [anon_sym_LBRACK] = ACTIONS(5929), - [anon_sym_LPAREN] = ACTIONS(5931), - [anon_sym_DOLLAR] = ACTIONS(5933), - [anon_sym_DASH] = ACTIONS(5935), - [anon_sym_LBRACE] = ACTIONS(5937), - [anon_sym_DOT_DOT] = ACTIONS(5939), - [anon_sym_not] = ACTIONS(5941), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5943), - [anon_sym_DOT_DOT_LT] = ACTIONS(5943), - [anon_sym_null] = ACTIONS(5945), - [anon_sym_true] = ACTIONS(5947), - [anon_sym_false] = ACTIONS(5947), - [aux_sym__val_number_decimal_token1] = ACTIONS(5949), - [aux_sym__val_number_decimal_token2] = ACTIONS(5951), - [anon_sym_DOT2] = ACTIONS(5953), - [aux_sym__val_number_decimal_token3] = ACTIONS(5955), - [aux_sym__val_number_token1] = ACTIONS(5957), - [aux_sym__val_number_token2] = ACTIONS(5957), - [aux_sym__val_number_token3] = ACTIONS(5957), - [aux_sym__val_number_token4] = ACTIONS(5959), - [aux_sym__val_number_token5] = ACTIONS(5959), - [aux_sym__val_number_token6] = ACTIONS(5959), - [anon_sym_0b] = ACTIONS(5961), - [anon_sym_0o] = ACTIONS(5963), - [anon_sym_0x] = ACTIONS(5963), - [sym_val_date] = ACTIONS(5965), - [anon_sym_DQUOTE] = ACTIONS(5967), - [sym__str_single_quotes] = ACTIONS(5969), - [sym__str_back_ticks] = ACTIONS(5969), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5973), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5975), + [2536] = { + [sym_ctrl_if_parenthesized] = STATE(9196), + [sym_block] = STATE(9198), + [sym__expression] = STATE(9198), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(4804), + [sym__var] = STATE(4386), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(9198), + [sym_comment] = STATE(2536), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_if] = ACTIONS(447), + [anon_sym_LBRACE] = ACTIONS(6499), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_not] = ACTIONS(191), + [anon_sym_DOT_DOT_EQ] = ACTIONS(193), + [anon_sym_DOT_DOT_LT] = ACTIONS(193), + [anon_sym_null] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [aux_sym__val_number_decimal_token1] = ACTIONS(199), + [aux_sym__val_number_decimal_token2] = ACTIONS(201), + [anon_sym_DOT2] = ACTIONS(203), + [aux_sym__val_number_decimal_token3] = ACTIONS(205), + [aux_sym__val_number_token1] = ACTIONS(207), + [aux_sym__val_number_token2] = ACTIONS(207), + [aux_sym__val_number_token3] = ACTIONS(207), + [aux_sym__val_number_token4] = ACTIONS(209), + [aux_sym__val_number_token5] = ACTIONS(207), + [aux_sym__val_number_token6] = ACTIONS(209), + [anon_sym_0b] = ACTIONS(211), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym__str_single_quotes] = ACTIONS(219), + [sym__str_back_ticks] = ACTIONS(219), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(227), [anon_sym_POUND] = ACTIONS(3), }, - [2266] = { - [sym_expr_unary] = STATE(895), - [sym__expr_unary_minus] = STATE(893), - [sym_expr_binary] = STATE(895), - [sym__expr_binary_expression] = STATE(915), - [sym_expr_parenthesized] = STATE(895), - [sym__val_range] = STATE(10720), - [sym__value] = STATE(895), - [sym_val_nothing] = STATE(920), - [sym_val_bool] = STATE(865), - [sym_val_variable] = STATE(920), - [sym__var] = STATE(825), - [sym_val_number] = STATE(920), - [sym__val_number_decimal] = STATE(765), - [sym__val_number] = STATE(935), - [sym_val_duration] = STATE(920), - [sym_val_filesize] = STATE(920), - [sym_val_binary] = STATE(920), - [sym_val_string] = STATE(920), - [sym__str_double_quotes] = STATE(868), - [sym_val_interpolated] = STATE(920), - [sym__inter_single_quotes] = STATE(869), - [sym__inter_double_quotes] = STATE(870), - [sym_val_list] = STATE(920), - [sym_val_record] = STATE(920), - [sym_val_table] = STATE(920), - [sym_val_closure] = STATE(920), - [sym_unquoted] = STATE(898), - [sym__unquoted_anonymous_prefix] = STATE(10789), - [sym_comment] = STATE(2266), - [anon_sym_LBRACK] = ACTIONS(5929), - [anon_sym_LPAREN] = ACTIONS(5931), - [anon_sym_DOLLAR] = ACTIONS(5933), - [anon_sym_DASH] = ACTIONS(5935), - [anon_sym_LBRACE] = ACTIONS(5937), - [anon_sym_DOT_DOT] = ACTIONS(5939), - [anon_sym_not] = ACTIONS(5941), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5943), - [anon_sym_DOT_DOT_LT] = ACTIONS(5943), - [anon_sym_null] = ACTIONS(5945), - [anon_sym_true] = ACTIONS(5947), - [anon_sym_false] = ACTIONS(5947), - [aux_sym__val_number_decimal_token1] = ACTIONS(5949), - [aux_sym__val_number_decimal_token2] = ACTIONS(5951), - [anon_sym_DOT2] = ACTIONS(5953), - [aux_sym__val_number_decimal_token3] = ACTIONS(5955), - [aux_sym__val_number_token1] = ACTIONS(5957), - [aux_sym__val_number_token2] = ACTIONS(5957), - [aux_sym__val_number_token3] = ACTIONS(5957), - [aux_sym__val_number_token4] = ACTIONS(5959), - [aux_sym__val_number_token5] = ACTIONS(5959), - [aux_sym__val_number_token6] = ACTIONS(5959), - [anon_sym_0b] = ACTIONS(5961), - [anon_sym_0o] = ACTIONS(5963), - [anon_sym_0x] = ACTIONS(5963), - [sym_val_date] = ACTIONS(5965), - [anon_sym_DQUOTE] = ACTIONS(5967), - [sym__str_single_quotes] = ACTIONS(5969), - [sym__str_back_ticks] = ACTIONS(5969), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5973), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5975), - [anon_sym_POUND] = ACTIONS(3), + [2537] = { + [sym_comment] = STATE(2537), + [anon_sym_SEMI] = ACTIONS(1139), + [anon_sym_LF] = ACTIONS(1209), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LPAREN] = ACTIONS(1139), + [anon_sym_RPAREN] = ACTIONS(1139), + [anon_sym_PIPE] = ACTIONS(1139), + [anon_sym_DOLLAR] = ACTIONS(1139), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_DASH_DASH] = ACTIONS(1139), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_in] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1139), + [anon_sym_RBRACE] = ACTIONS(1139), + [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_STAR_STAR] = ACTIONS(1139), + [anon_sym_PLUS_PLUS] = ACTIONS(1139), + [anon_sym_SLASH] = ACTIONS(1139), + [anon_sym_mod] = ACTIONS(1139), + [anon_sym_SLASH_SLASH] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_bit_DASHshl] = ACTIONS(1139), + [anon_sym_bit_DASHshr] = ACTIONS(1139), + [anon_sym_EQ_EQ] = ACTIONS(1139), + [anon_sym_BANG_EQ] = ACTIONS(1139), + [anon_sym_LT2] = ACTIONS(1139), + [anon_sym_LT_EQ] = ACTIONS(1139), + [anon_sym_GT_EQ] = ACTIONS(1139), + [anon_sym_not_DASHin] = ACTIONS(1139), + [anon_sym_starts_DASHwith] = ACTIONS(1139), + [anon_sym_ends_DASHwith] = ACTIONS(1139), + [anon_sym_EQ_TILDE] = ACTIONS(1139), + [anon_sym_BANG_TILDE] = ACTIONS(1139), + [anon_sym_bit_DASHand] = ACTIONS(1139), + [anon_sym_bit_DASHxor] = ACTIONS(1139), + [anon_sym_bit_DASHor] = ACTIONS(1139), + [anon_sym_and] = ACTIONS(1139), + [anon_sym_xor] = ACTIONS(1139), + [anon_sym_or] = ACTIONS(1139), + [anon_sym_not] = ACTIONS(1139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1139), + [anon_sym_DOT_DOT_LT] = ACTIONS(1139), + [anon_sym_null] = ACTIONS(1139), + [anon_sym_true] = ACTIONS(1139), + [anon_sym_false] = ACTIONS(1139), + [aux_sym__val_number_decimal_token1] = ACTIONS(1139), + [aux_sym__val_number_decimal_token2] = ACTIONS(1139), + [anon_sym_DOT2] = ACTIONS(1139), + [aux_sym__val_number_decimal_token3] = ACTIONS(1139), + [aux_sym__val_number_token1] = ACTIONS(1139), + [aux_sym__val_number_token2] = ACTIONS(1139), + [aux_sym__val_number_token3] = ACTIONS(1139), + [aux_sym__val_number_token4] = ACTIONS(1139), + [aux_sym__val_number_token5] = ACTIONS(1139), + [aux_sym__val_number_token6] = ACTIONS(1139), + [anon_sym_0b] = ACTIONS(1139), + [anon_sym_0o] = ACTIONS(1139), + [anon_sym_0x] = ACTIONS(1139), + [sym_val_date] = ACTIONS(1139), + [anon_sym_DQUOTE] = ACTIONS(1139), + [sym__str_single_quotes] = ACTIONS(1139), + [sym__str_back_ticks] = ACTIONS(1139), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1139), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1139), + [anon_sym_POUND] = ACTIONS(113), }, - [2267] = { - [sym_expr_unary] = STATE(895), - [sym__expr_unary_minus] = STATE(893), - [sym_expr_binary] = STATE(895), - [sym__expr_binary_expression] = STATE(916), - [sym_expr_parenthesized] = STATE(895), - [sym__val_range] = STATE(10720), - [sym__value] = STATE(895), - [sym_val_nothing] = STATE(920), - [sym_val_bool] = STATE(865), - [sym_val_variable] = STATE(920), - [sym__var] = STATE(825), - [sym_val_number] = STATE(920), - [sym__val_number_decimal] = STATE(765), - [sym__val_number] = STATE(935), - [sym_val_duration] = STATE(920), - [sym_val_filesize] = STATE(920), - [sym_val_binary] = STATE(920), - [sym_val_string] = STATE(920), - [sym__str_double_quotes] = STATE(868), - [sym_val_interpolated] = STATE(920), - [sym__inter_single_quotes] = STATE(869), - [sym__inter_double_quotes] = STATE(870), - [sym_val_list] = STATE(920), - [sym_val_record] = STATE(920), - [sym_val_table] = STATE(920), - [sym_val_closure] = STATE(920), - [sym_unquoted] = STATE(899), - [sym__unquoted_anonymous_prefix] = STATE(10789), - [sym_comment] = STATE(2267), - [anon_sym_LBRACK] = ACTIONS(5929), - [anon_sym_LPAREN] = ACTIONS(5931), - [anon_sym_DOLLAR] = ACTIONS(5933), - [anon_sym_DASH] = ACTIONS(5935), - [anon_sym_LBRACE] = ACTIONS(5937), - [anon_sym_DOT_DOT] = ACTIONS(5939), - [anon_sym_not] = ACTIONS(5941), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5943), - [anon_sym_DOT_DOT_LT] = ACTIONS(5943), - [anon_sym_null] = ACTIONS(5945), - [anon_sym_true] = ACTIONS(5947), - [anon_sym_false] = ACTIONS(5947), - [aux_sym__val_number_decimal_token1] = ACTIONS(5949), - [aux_sym__val_number_decimal_token2] = ACTIONS(5951), - [anon_sym_DOT2] = ACTIONS(5953), - [aux_sym__val_number_decimal_token3] = ACTIONS(5955), - [aux_sym__val_number_token1] = ACTIONS(5957), - [aux_sym__val_number_token2] = ACTIONS(5957), - [aux_sym__val_number_token3] = ACTIONS(5957), - [aux_sym__val_number_token4] = ACTIONS(5959), - [aux_sym__val_number_token5] = ACTIONS(5959), - [aux_sym__val_number_token6] = ACTIONS(5959), - [anon_sym_0b] = ACTIONS(5961), - [anon_sym_0o] = ACTIONS(5963), - [anon_sym_0x] = ACTIONS(5963), - [sym_val_date] = ACTIONS(5965), - [anon_sym_DQUOTE] = ACTIONS(5967), - [sym__str_single_quotes] = ACTIONS(5969), - [sym__str_back_ticks] = ACTIONS(5969), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5973), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5975), - [anon_sym_POUND] = ACTIONS(3), + [2538] = { + [sym_comment] = STATE(2538), + [anon_sym_export] = ACTIONS(6501), + [anon_sym_alias] = ACTIONS(6501), + [anon_sym_let] = ACTIONS(6501), + [anon_sym_let_DASHenv] = ACTIONS(6501), + [anon_sym_mut] = ACTIONS(6501), + [anon_sym_const] = ACTIONS(6501), + [anon_sym_SEMI] = ACTIONS(6501), + [sym_cmd_identifier] = ACTIONS(6501), + [anon_sym_LF] = ACTIONS(6503), + [anon_sym_def] = ACTIONS(6501), + [anon_sym_export_DASHenv] = ACTIONS(6501), + [anon_sym_extern] = ACTIONS(6501), + [anon_sym_module] = ACTIONS(6501), + [anon_sym_use] = ACTIONS(6501), + [anon_sym_LBRACK] = ACTIONS(6501), + [anon_sym_LPAREN] = ACTIONS(6501), + [anon_sym_DOLLAR] = ACTIONS(6501), + [anon_sym_error] = ACTIONS(6501), + [anon_sym_DASH] = ACTIONS(6501), + [anon_sym_break] = ACTIONS(6501), + [anon_sym_continue] = ACTIONS(6501), + [anon_sym_for] = ACTIONS(6501), + [anon_sym_loop] = ACTIONS(6501), + [anon_sym_while] = ACTIONS(6501), + [anon_sym_do] = ACTIONS(6501), + [anon_sym_if] = ACTIONS(6501), + [anon_sym_match] = ACTIONS(6501), + [anon_sym_LBRACE] = ACTIONS(6501), + [anon_sym_DOT_DOT] = ACTIONS(6501), + [anon_sym_try] = ACTIONS(6501), + [anon_sym_return] = ACTIONS(6501), + [anon_sym_source] = ACTIONS(6501), + [anon_sym_source_DASHenv] = ACTIONS(6501), + [anon_sym_register] = ACTIONS(6501), + [anon_sym_hide] = ACTIONS(6501), + [anon_sym_hide_DASHenv] = ACTIONS(6501), + [anon_sym_overlay] = ACTIONS(6501), + [anon_sym_where] = ACTIONS(6501), + [anon_sym_not] = ACTIONS(6501), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6501), + [anon_sym_DOT_DOT_LT] = ACTIONS(6501), + [anon_sym_null] = ACTIONS(6501), + [anon_sym_true] = ACTIONS(6501), + [anon_sym_false] = ACTIONS(6501), + [aux_sym__val_number_decimal_token1] = ACTIONS(6501), + [aux_sym__val_number_decimal_token2] = ACTIONS(6501), + [anon_sym_DOT2] = ACTIONS(6501), + [aux_sym__val_number_decimal_token3] = ACTIONS(6501), + [aux_sym__val_number_token1] = ACTIONS(6501), + [aux_sym__val_number_token2] = ACTIONS(6501), + [aux_sym__val_number_token3] = ACTIONS(6501), + [aux_sym__val_number_token4] = ACTIONS(6501), + [aux_sym__val_number_token5] = ACTIONS(6501), + [aux_sym__val_number_token6] = ACTIONS(6501), + [anon_sym_0b] = ACTIONS(6501), + [anon_sym_0o] = ACTIONS(6501), + [anon_sym_0x] = ACTIONS(6501), + [sym_val_date] = ACTIONS(6501), + [anon_sym_DQUOTE] = ACTIONS(6501), + [sym__str_single_quotes] = ACTIONS(6501), + [sym__str_back_ticks] = ACTIONS(6501), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6501), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6501), + [anon_sym_CARET] = ACTIONS(6501), + [anon_sym_POUND] = ACTIONS(113), }, - [2268] = { - [sym_expr_unary] = STATE(895), - [sym__expr_unary_minus] = STATE(893), - [sym_expr_binary] = STATE(895), - [sym__expr_binary_expression] = STATE(917), - [sym_expr_parenthesized] = STATE(895), - [sym__val_range] = STATE(10720), - [sym__value] = STATE(895), - [sym_val_nothing] = STATE(920), - [sym_val_bool] = STATE(865), - [sym_val_variable] = STATE(920), - [sym__var] = STATE(825), - [sym_val_number] = STATE(920), - [sym__val_number_decimal] = STATE(765), - [sym__val_number] = STATE(935), - [sym_val_duration] = STATE(920), - [sym_val_filesize] = STATE(920), - [sym_val_binary] = STATE(920), - [sym_val_string] = STATE(920), - [sym__str_double_quotes] = STATE(868), - [sym_val_interpolated] = STATE(920), - [sym__inter_single_quotes] = STATE(869), - [sym__inter_double_quotes] = STATE(870), - [sym_val_list] = STATE(920), - [sym_val_record] = STATE(920), - [sym_val_table] = STATE(920), - [sym_val_closure] = STATE(920), - [sym_unquoted] = STATE(900), - [sym__unquoted_anonymous_prefix] = STATE(10789), - [sym_comment] = STATE(2268), - [anon_sym_LBRACK] = ACTIONS(5929), - [anon_sym_LPAREN] = ACTIONS(5931), - [anon_sym_DOLLAR] = ACTIONS(5933), - [anon_sym_DASH] = ACTIONS(5935), - [anon_sym_LBRACE] = ACTIONS(5937), - [anon_sym_DOT_DOT] = ACTIONS(5939), - [anon_sym_not] = ACTIONS(5941), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5943), - [anon_sym_DOT_DOT_LT] = ACTIONS(5943), - [anon_sym_null] = ACTIONS(5945), - [anon_sym_true] = ACTIONS(5947), - [anon_sym_false] = ACTIONS(5947), - [aux_sym__val_number_decimal_token1] = ACTIONS(5949), - [aux_sym__val_number_decimal_token2] = ACTIONS(5951), - [anon_sym_DOT2] = ACTIONS(5953), - [aux_sym__val_number_decimal_token3] = ACTIONS(5955), - [aux_sym__val_number_token1] = ACTIONS(5957), - [aux_sym__val_number_token2] = ACTIONS(5957), - [aux_sym__val_number_token3] = ACTIONS(5957), - [aux_sym__val_number_token4] = ACTIONS(5959), - [aux_sym__val_number_token5] = ACTIONS(5959), - [aux_sym__val_number_token6] = ACTIONS(5959), - [anon_sym_0b] = ACTIONS(5961), - [anon_sym_0o] = ACTIONS(5963), - [anon_sym_0x] = ACTIONS(5963), - [sym_val_date] = ACTIONS(5965), - [anon_sym_DQUOTE] = ACTIONS(5967), - [sym__str_single_quotes] = ACTIONS(5969), - [sym__str_back_ticks] = ACTIONS(5969), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5973), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5975), - [anon_sym_POUND] = ACTIONS(3), + [2539] = { + [sym_comment] = STATE(2539), + [anon_sym_export] = ACTIONS(6340), + [anon_sym_alias] = ACTIONS(6340), + [anon_sym_let] = ACTIONS(6340), + [anon_sym_let_DASHenv] = ACTIONS(6340), + [anon_sym_mut] = ACTIONS(6340), + [anon_sym_const] = ACTIONS(6340), + [anon_sym_SEMI] = ACTIONS(6340), + [sym_cmd_identifier] = ACTIONS(6340), + [anon_sym_LF] = ACTIONS(6505), + [anon_sym_def] = ACTIONS(6340), + [anon_sym_export_DASHenv] = ACTIONS(6340), + [anon_sym_extern] = ACTIONS(6340), + [anon_sym_module] = ACTIONS(6340), + [anon_sym_use] = ACTIONS(6340), + [anon_sym_LBRACK] = ACTIONS(6340), + [anon_sym_LPAREN] = ACTIONS(6340), + [anon_sym_DOLLAR] = ACTIONS(6340), + [anon_sym_error] = ACTIONS(6340), + [anon_sym_DASH] = ACTIONS(6340), + [anon_sym_break] = ACTIONS(6340), + [anon_sym_continue] = ACTIONS(6340), + [anon_sym_for] = ACTIONS(6340), + [anon_sym_loop] = ACTIONS(6340), + [anon_sym_while] = ACTIONS(6340), + [anon_sym_do] = ACTIONS(6340), + [anon_sym_if] = ACTIONS(6340), + [anon_sym_match] = ACTIONS(6340), + [anon_sym_LBRACE] = ACTIONS(6340), + [anon_sym_DOT_DOT] = ACTIONS(6340), + [anon_sym_try] = ACTIONS(6340), + [anon_sym_return] = ACTIONS(6340), + [anon_sym_source] = ACTIONS(6340), + [anon_sym_source_DASHenv] = ACTIONS(6340), + [anon_sym_register] = ACTIONS(6340), + [anon_sym_hide] = ACTIONS(6340), + [anon_sym_hide_DASHenv] = ACTIONS(6340), + [anon_sym_overlay] = ACTIONS(6340), + [anon_sym_where] = ACTIONS(6340), + [anon_sym_not] = ACTIONS(6340), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6340), + [anon_sym_DOT_DOT_LT] = ACTIONS(6340), + [anon_sym_null] = ACTIONS(6340), + [anon_sym_true] = ACTIONS(6340), + [anon_sym_false] = ACTIONS(6340), + [aux_sym__val_number_decimal_token1] = ACTIONS(6340), + [aux_sym__val_number_decimal_token2] = ACTIONS(6340), + [anon_sym_DOT2] = ACTIONS(6340), + [aux_sym__val_number_decimal_token3] = ACTIONS(6340), + [aux_sym__val_number_token1] = ACTIONS(6340), + [aux_sym__val_number_token2] = ACTIONS(6340), + [aux_sym__val_number_token3] = ACTIONS(6340), + [aux_sym__val_number_token4] = ACTIONS(6340), + [aux_sym__val_number_token5] = ACTIONS(6340), + [aux_sym__val_number_token6] = ACTIONS(6340), + [anon_sym_0b] = ACTIONS(6340), + [anon_sym_0o] = ACTIONS(6340), + [anon_sym_0x] = ACTIONS(6340), + [sym_val_date] = ACTIONS(6340), + [anon_sym_DQUOTE] = ACTIONS(6340), + [sym__str_single_quotes] = ACTIONS(6340), + [sym__str_back_ticks] = ACTIONS(6340), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6340), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6340), + [anon_sym_CARET] = ACTIONS(6340), + [anon_sym_POUND] = ACTIONS(113), }, - [2269] = { - [sym_expr_unary] = STATE(895), - [sym__expr_unary_minus] = STATE(893), - [sym_expr_binary] = STATE(895), - [sym__expr_binary_expression] = STATE(918), - [sym_expr_parenthesized] = STATE(895), - [sym__val_range] = STATE(10720), - [sym__value] = STATE(895), - [sym_val_nothing] = STATE(920), - [sym_val_bool] = STATE(865), - [sym_val_variable] = STATE(920), - [sym__var] = STATE(825), - [sym_val_number] = STATE(920), - [sym__val_number_decimal] = STATE(765), - [sym__val_number] = STATE(935), - [sym_val_duration] = STATE(920), - [sym_val_filesize] = STATE(920), - [sym_val_binary] = STATE(920), - [sym_val_string] = STATE(920), - [sym__str_double_quotes] = STATE(868), - [sym_val_interpolated] = STATE(920), - [sym__inter_single_quotes] = STATE(869), - [sym__inter_double_quotes] = STATE(870), - [sym_val_list] = STATE(920), - [sym_val_record] = STATE(920), - [sym_val_table] = STATE(920), - [sym_val_closure] = STATE(920), - [sym_unquoted] = STATE(901), - [sym__unquoted_anonymous_prefix] = STATE(10789), - [sym_comment] = STATE(2269), - [anon_sym_LBRACK] = ACTIONS(5929), - [anon_sym_LPAREN] = ACTIONS(5931), - [anon_sym_DOLLAR] = ACTIONS(5933), - [anon_sym_DASH] = ACTIONS(5935), - [anon_sym_LBRACE] = ACTIONS(5937), - [anon_sym_DOT_DOT] = ACTIONS(5939), - [anon_sym_not] = ACTIONS(5941), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5943), - [anon_sym_DOT_DOT_LT] = ACTIONS(5943), - [anon_sym_null] = ACTIONS(5945), - [anon_sym_true] = ACTIONS(5947), - [anon_sym_false] = ACTIONS(5947), - [aux_sym__val_number_decimal_token1] = ACTIONS(5949), - [aux_sym__val_number_decimal_token2] = ACTIONS(5951), - [anon_sym_DOT2] = ACTIONS(5953), - [aux_sym__val_number_decimal_token3] = ACTIONS(5955), - [aux_sym__val_number_token1] = ACTIONS(5957), - [aux_sym__val_number_token2] = ACTIONS(5957), - [aux_sym__val_number_token3] = ACTIONS(5957), - [aux_sym__val_number_token4] = ACTIONS(5959), - [aux_sym__val_number_token5] = ACTIONS(5959), - [aux_sym__val_number_token6] = ACTIONS(5959), - [anon_sym_0b] = ACTIONS(5961), - [anon_sym_0o] = ACTIONS(5963), - [anon_sym_0x] = ACTIONS(5963), - [sym_val_date] = ACTIONS(5965), - [anon_sym_DQUOTE] = ACTIONS(5967), - [sym__str_single_quotes] = ACTIONS(5969), - [sym__str_back_ticks] = ACTIONS(5969), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5973), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5975), - [anon_sym_POUND] = ACTIONS(3), + [2540] = { + [sym_comment] = STATE(2540), + [anon_sym_SEMI] = ACTIONS(1287), + [anon_sym_LF] = ACTIONS(1289), + [anon_sym_LBRACK] = ACTIONS(1287), + [anon_sym_LPAREN] = ACTIONS(1287), + [anon_sym_RPAREN] = ACTIONS(1287), + [anon_sym_PIPE] = ACTIONS(1287), + [anon_sym_DOLLAR] = ACTIONS(1287), + [anon_sym_GT] = ACTIONS(1287), + [anon_sym_DASH_DASH] = ACTIONS(1287), + [anon_sym_DASH] = ACTIONS(1287), + [anon_sym_in] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1287), + [anon_sym_RBRACE] = ACTIONS(1287), + [anon_sym_DOT_DOT] = ACTIONS(1287), + [anon_sym_STAR] = ACTIONS(1287), + [anon_sym_STAR_STAR] = ACTIONS(1287), + [anon_sym_PLUS_PLUS] = ACTIONS(1287), + [anon_sym_SLASH] = ACTIONS(1287), + [anon_sym_mod] = ACTIONS(1287), + [anon_sym_SLASH_SLASH] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1287), + [anon_sym_bit_DASHshl] = ACTIONS(1287), + [anon_sym_bit_DASHshr] = ACTIONS(1287), + [anon_sym_EQ_EQ] = ACTIONS(1287), + [anon_sym_BANG_EQ] = ACTIONS(1287), + [anon_sym_LT2] = ACTIONS(1287), + [anon_sym_LT_EQ] = ACTIONS(1287), + [anon_sym_GT_EQ] = ACTIONS(1287), + [anon_sym_not_DASHin] = ACTIONS(1287), + [anon_sym_starts_DASHwith] = ACTIONS(1287), + [anon_sym_ends_DASHwith] = ACTIONS(1287), + [anon_sym_EQ_TILDE] = ACTIONS(1287), + [anon_sym_BANG_TILDE] = ACTIONS(1287), + [anon_sym_bit_DASHand] = ACTIONS(1287), + [anon_sym_bit_DASHxor] = ACTIONS(1287), + [anon_sym_bit_DASHor] = ACTIONS(1287), + [anon_sym_and] = ACTIONS(1287), + [anon_sym_xor] = ACTIONS(1287), + [anon_sym_or] = ACTIONS(1287), + [anon_sym_not] = ACTIONS(1287), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1287), + [anon_sym_DOT_DOT_LT] = ACTIONS(1287), + [anon_sym_null] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1287), + [anon_sym_false] = ACTIONS(1287), + [aux_sym__val_number_decimal_token1] = ACTIONS(1287), + [aux_sym__val_number_decimal_token2] = ACTIONS(1287), + [anon_sym_DOT2] = ACTIONS(1287), + [aux_sym__val_number_decimal_token3] = ACTIONS(1287), + [aux_sym__val_number_token1] = ACTIONS(1287), + [aux_sym__val_number_token2] = ACTIONS(1287), + [aux_sym__val_number_token3] = ACTIONS(1287), + [aux_sym__val_number_token4] = ACTIONS(1287), + [aux_sym__val_number_token5] = ACTIONS(1287), + [aux_sym__val_number_token6] = ACTIONS(1287), + [anon_sym_0b] = ACTIONS(1287), + [anon_sym_0o] = ACTIONS(1287), + [anon_sym_0x] = ACTIONS(1287), + [sym_val_date] = ACTIONS(1287), + [anon_sym_DQUOTE] = ACTIONS(1287), + [sym__str_single_quotes] = ACTIONS(1287), + [sym__str_back_ticks] = ACTIONS(1287), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1287), + [anon_sym_POUND] = ACTIONS(113), }, - [2270] = { - [sym_expr_unary] = STATE(895), - [sym__expr_unary_minus] = STATE(893), - [sym_expr_binary] = STATE(895), - [sym__expr_binary_expression] = STATE(919), - [sym_expr_parenthesized] = STATE(895), - [sym__val_range] = STATE(10720), - [sym__value] = STATE(895), - [sym_val_nothing] = STATE(920), - [sym_val_bool] = STATE(865), - [sym_val_variable] = STATE(920), - [sym__var] = STATE(825), - [sym_val_number] = STATE(920), - [sym__val_number_decimal] = STATE(765), - [sym__val_number] = STATE(935), - [sym_val_duration] = STATE(920), - [sym_val_filesize] = STATE(920), - [sym_val_binary] = STATE(920), - [sym_val_string] = STATE(920), - [sym__str_double_quotes] = STATE(868), - [sym_val_interpolated] = STATE(920), - [sym__inter_single_quotes] = STATE(869), - [sym__inter_double_quotes] = STATE(870), - [sym_val_list] = STATE(920), - [sym_val_record] = STATE(920), - [sym_val_table] = STATE(920), - [sym_val_closure] = STATE(920), - [sym_unquoted] = STATE(902), - [sym__unquoted_anonymous_prefix] = STATE(10789), - [sym_comment] = STATE(2270), - [anon_sym_LBRACK] = ACTIONS(5929), - [anon_sym_LPAREN] = ACTIONS(5931), - [anon_sym_DOLLAR] = ACTIONS(5933), - [anon_sym_DASH] = ACTIONS(5935), - [anon_sym_LBRACE] = ACTIONS(5937), - [anon_sym_DOT_DOT] = ACTIONS(5939), - [anon_sym_not] = ACTIONS(5941), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5943), - [anon_sym_DOT_DOT_LT] = ACTIONS(5943), - [anon_sym_null] = ACTIONS(5945), - [anon_sym_true] = ACTIONS(5947), - [anon_sym_false] = ACTIONS(5947), - [aux_sym__val_number_decimal_token1] = ACTIONS(5949), - [aux_sym__val_number_decimal_token2] = ACTIONS(5951), - [anon_sym_DOT2] = ACTIONS(5953), - [aux_sym__val_number_decimal_token3] = ACTIONS(5955), - [aux_sym__val_number_token1] = ACTIONS(5957), - [aux_sym__val_number_token2] = ACTIONS(5957), - [aux_sym__val_number_token3] = ACTIONS(5957), - [aux_sym__val_number_token4] = ACTIONS(5959), - [aux_sym__val_number_token5] = ACTIONS(5959), - [aux_sym__val_number_token6] = ACTIONS(5959), - [anon_sym_0b] = ACTIONS(5961), - [anon_sym_0o] = ACTIONS(5963), - [anon_sym_0x] = ACTIONS(5963), - [sym_val_date] = ACTIONS(5965), - [anon_sym_DQUOTE] = ACTIONS(5967), - [sym__str_single_quotes] = ACTIONS(5969), - [sym__str_back_ticks] = ACTIONS(5969), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5973), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5975), - [anon_sym_POUND] = ACTIONS(3), + [2541] = { + [sym_comment] = STATE(2541), + [anon_sym_SEMI] = ACTIONS(1211), + [anon_sym_LF] = ACTIONS(1213), + [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(1211), + [anon_sym_RPAREN] = ACTIONS(1211), + [anon_sym_PIPE] = ACTIONS(1211), + [anon_sym_DOLLAR] = ACTIONS(1211), + [anon_sym_GT] = ACTIONS(1211), + [anon_sym_DASH_DASH] = ACTIONS(1211), + [anon_sym_DASH] = ACTIONS(1211), + [anon_sym_in] = ACTIONS(1211), + [anon_sym_LBRACE] = ACTIONS(1211), + [anon_sym_RBRACE] = ACTIONS(1211), + [anon_sym_DOT_DOT] = ACTIONS(1211), + [anon_sym_STAR] = ACTIONS(1211), + [anon_sym_STAR_STAR] = ACTIONS(1211), + [anon_sym_PLUS_PLUS] = ACTIONS(1211), + [anon_sym_SLASH] = ACTIONS(1211), + [anon_sym_mod] = ACTIONS(1211), + [anon_sym_SLASH_SLASH] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1211), + [anon_sym_bit_DASHshl] = ACTIONS(1211), + [anon_sym_bit_DASHshr] = ACTIONS(1211), + [anon_sym_EQ_EQ] = ACTIONS(1211), + [anon_sym_BANG_EQ] = ACTIONS(1211), + [anon_sym_LT2] = ACTIONS(1211), + [anon_sym_LT_EQ] = ACTIONS(1211), + [anon_sym_GT_EQ] = ACTIONS(1211), + [anon_sym_not_DASHin] = ACTIONS(1211), + [anon_sym_starts_DASHwith] = ACTIONS(1211), + [anon_sym_ends_DASHwith] = ACTIONS(1211), + [anon_sym_EQ_TILDE] = ACTIONS(1211), + [anon_sym_BANG_TILDE] = ACTIONS(1211), + [anon_sym_bit_DASHand] = ACTIONS(1211), + [anon_sym_bit_DASHxor] = ACTIONS(1211), + [anon_sym_bit_DASHor] = ACTIONS(1211), + [anon_sym_and] = ACTIONS(1211), + [anon_sym_xor] = ACTIONS(1211), + [anon_sym_or] = ACTIONS(1211), + [anon_sym_not] = ACTIONS(1211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1211), + [anon_sym_DOT_DOT_LT] = ACTIONS(1211), + [anon_sym_null] = ACTIONS(1211), + [anon_sym_true] = ACTIONS(1211), + [anon_sym_false] = ACTIONS(1211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1211), + [aux_sym__val_number_decimal_token2] = ACTIONS(1211), + [anon_sym_DOT2] = ACTIONS(1211), + [aux_sym__val_number_decimal_token3] = ACTIONS(1211), + [aux_sym__val_number_token1] = ACTIONS(1211), + [aux_sym__val_number_token2] = ACTIONS(1211), + [aux_sym__val_number_token3] = ACTIONS(1211), + [aux_sym__val_number_token4] = ACTIONS(1211), + [aux_sym__val_number_token5] = ACTIONS(1211), + [aux_sym__val_number_token6] = ACTIONS(1211), + [anon_sym_0b] = ACTIONS(1211), + [anon_sym_0o] = ACTIONS(1211), + [anon_sym_0x] = ACTIONS(1211), + [sym_val_date] = ACTIONS(1211), + [anon_sym_DQUOTE] = ACTIONS(1211), + [sym__str_single_quotes] = ACTIONS(1211), + [sym__str_back_ticks] = ACTIONS(1211), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1211), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1211), + [anon_sym_POUND] = ACTIONS(113), }, - [2271] = { - [sym_expr_unary] = STATE(895), - [sym__expr_unary_minus] = STATE(893), - [sym_expr_binary] = STATE(895), - [sym__expr_binary_expression] = STATE(921), - [sym_expr_parenthesized] = STATE(895), - [sym__val_range] = STATE(10720), - [sym__value] = STATE(895), - [sym_val_nothing] = STATE(920), - [sym_val_bool] = STATE(865), - [sym_val_variable] = STATE(920), - [sym__var] = STATE(825), - [sym_val_number] = STATE(920), - [sym__val_number_decimal] = STATE(765), - [sym__val_number] = STATE(935), - [sym_val_duration] = STATE(920), - [sym_val_filesize] = STATE(920), - [sym_val_binary] = STATE(920), - [sym_val_string] = STATE(920), - [sym__str_double_quotes] = STATE(868), - [sym_val_interpolated] = STATE(920), - [sym__inter_single_quotes] = STATE(869), - [sym__inter_double_quotes] = STATE(870), - [sym_val_list] = STATE(920), - [sym_val_record] = STATE(920), - [sym_val_table] = STATE(920), - [sym_val_closure] = STATE(920), - [sym_unquoted] = STATE(903), - [sym__unquoted_anonymous_prefix] = STATE(10789), - [sym_comment] = STATE(2271), - [anon_sym_LBRACK] = ACTIONS(5929), - [anon_sym_LPAREN] = ACTIONS(5931), - [anon_sym_DOLLAR] = ACTIONS(5933), - [anon_sym_DASH] = ACTIONS(5935), - [anon_sym_LBRACE] = ACTIONS(5937), - [anon_sym_DOT_DOT] = ACTIONS(5939), - [anon_sym_not] = ACTIONS(5941), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5943), - [anon_sym_DOT_DOT_LT] = ACTIONS(5943), - [anon_sym_null] = ACTIONS(5945), - [anon_sym_true] = ACTIONS(5947), - [anon_sym_false] = ACTIONS(5947), - [aux_sym__val_number_decimal_token1] = ACTIONS(5949), - [aux_sym__val_number_decimal_token2] = ACTIONS(5951), - [anon_sym_DOT2] = ACTIONS(5953), - [aux_sym__val_number_decimal_token3] = ACTIONS(5955), - [aux_sym__val_number_token1] = ACTIONS(5957), - [aux_sym__val_number_token2] = ACTIONS(5957), - [aux_sym__val_number_token3] = ACTIONS(5957), - [aux_sym__val_number_token4] = ACTIONS(5959), - [aux_sym__val_number_token5] = ACTIONS(5959), - [aux_sym__val_number_token6] = ACTIONS(5959), - [anon_sym_0b] = ACTIONS(5961), - [anon_sym_0o] = ACTIONS(5963), - [anon_sym_0x] = ACTIONS(5963), - [sym_val_date] = ACTIONS(5965), - [anon_sym_DQUOTE] = ACTIONS(5967), - [sym__str_single_quotes] = ACTIONS(5969), - [sym__str_back_ticks] = ACTIONS(5969), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5973), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5975), - [anon_sym_POUND] = ACTIONS(3), + [2542] = { + [sym_comment] = STATE(2542), + [anon_sym_export] = ACTIONS(6507), + [anon_sym_alias] = ACTIONS(6507), + [anon_sym_let] = ACTIONS(6507), + [anon_sym_let_DASHenv] = ACTIONS(6507), + [anon_sym_mut] = ACTIONS(6507), + [anon_sym_const] = ACTIONS(6507), + [anon_sym_SEMI] = ACTIONS(6507), + [sym_cmd_identifier] = ACTIONS(6507), + [anon_sym_LF] = ACTIONS(6509), + [anon_sym_def] = ACTIONS(6507), + [anon_sym_export_DASHenv] = ACTIONS(6507), + [anon_sym_extern] = ACTIONS(6507), + [anon_sym_module] = ACTIONS(6507), + [anon_sym_use] = ACTIONS(6507), + [anon_sym_LBRACK] = ACTIONS(6507), + [anon_sym_LPAREN] = ACTIONS(6507), + [anon_sym_DOLLAR] = ACTIONS(6507), + [anon_sym_error] = ACTIONS(6507), + [anon_sym_DASH] = ACTIONS(6507), + [anon_sym_break] = ACTIONS(6507), + [anon_sym_continue] = ACTIONS(6507), + [anon_sym_for] = ACTIONS(6507), + [anon_sym_loop] = ACTIONS(6507), + [anon_sym_while] = ACTIONS(6507), + [anon_sym_do] = ACTIONS(6507), + [anon_sym_if] = ACTIONS(6507), + [anon_sym_match] = ACTIONS(6507), + [anon_sym_LBRACE] = ACTIONS(6507), + [anon_sym_DOT_DOT] = ACTIONS(6507), + [anon_sym_try] = ACTIONS(6507), + [anon_sym_return] = ACTIONS(6507), + [anon_sym_source] = ACTIONS(6507), + [anon_sym_source_DASHenv] = ACTIONS(6507), + [anon_sym_register] = ACTIONS(6507), + [anon_sym_hide] = ACTIONS(6507), + [anon_sym_hide_DASHenv] = ACTIONS(6507), + [anon_sym_overlay] = ACTIONS(6507), + [anon_sym_where] = ACTIONS(6507), + [anon_sym_not] = ACTIONS(6507), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6507), + [anon_sym_DOT_DOT_LT] = ACTIONS(6507), + [anon_sym_null] = ACTIONS(6507), + [anon_sym_true] = ACTIONS(6507), + [anon_sym_false] = ACTIONS(6507), + [aux_sym__val_number_decimal_token1] = ACTIONS(6507), + [aux_sym__val_number_decimal_token2] = ACTIONS(6507), + [anon_sym_DOT2] = ACTIONS(6507), + [aux_sym__val_number_decimal_token3] = ACTIONS(6507), + [aux_sym__val_number_token1] = ACTIONS(6507), + [aux_sym__val_number_token2] = ACTIONS(6507), + [aux_sym__val_number_token3] = ACTIONS(6507), + [aux_sym__val_number_token4] = ACTIONS(6507), + [aux_sym__val_number_token5] = ACTIONS(6507), + [aux_sym__val_number_token6] = ACTIONS(6507), + [anon_sym_0b] = ACTIONS(6507), + [anon_sym_0o] = ACTIONS(6507), + [anon_sym_0x] = ACTIONS(6507), + [sym_val_date] = ACTIONS(6507), + [anon_sym_DQUOTE] = ACTIONS(6507), + [sym__str_single_quotes] = ACTIONS(6507), + [sym__str_back_ticks] = ACTIONS(6507), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6507), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6507), + [anon_sym_CARET] = ACTIONS(6507), + [anon_sym_POUND] = ACTIONS(113), }, - [2272] = { - [sym_expr_unary] = STATE(895), - [sym__expr_unary_minus] = STATE(893), - [sym_expr_binary] = STATE(895), - [sym__expr_binary_expression] = STATE(922), - [sym_expr_parenthesized] = STATE(895), - [sym__val_range] = STATE(10720), - [sym__value] = STATE(895), - [sym_val_nothing] = STATE(920), - [sym_val_bool] = STATE(865), - [sym_val_variable] = STATE(920), - [sym__var] = STATE(825), - [sym_val_number] = STATE(920), - [sym__val_number_decimal] = STATE(765), - [sym__val_number] = STATE(935), - [sym_val_duration] = STATE(920), - [sym_val_filesize] = STATE(920), - [sym_val_binary] = STATE(920), - [sym_val_string] = STATE(920), - [sym__str_double_quotes] = STATE(868), - [sym_val_interpolated] = STATE(920), - [sym__inter_single_quotes] = STATE(869), - [sym__inter_double_quotes] = STATE(870), - [sym_val_list] = STATE(920), - [sym_val_record] = STATE(920), - [sym_val_table] = STATE(920), - [sym_val_closure] = STATE(920), - [sym_unquoted] = STATE(904), - [sym__unquoted_anonymous_prefix] = STATE(10789), - [sym_comment] = STATE(2272), - [anon_sym_LBRACK] = ACTIONS(5929), - [anon_sym_LPAREN] = ACTIONS(5931), - [anon_sym_DOLLAR] = ACTIONS(5933), - [anon_sym_DASH] = ACTIONS(5935), - [anon_sym_LBRACE] = ACTIONS(5937), - [anon_sym_DOT_DOT] = ACTIONS(5939), - [anon_sym_not] = ACTIONS(5941), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5943), - [anon_sym_DOT_DOT_LT] = ACTIONS(5943), - [anon_sym_null] = ACTIONS(5945), - [anon_sym_true] = ACTIONS(5947), - [anon_sym_false] = ACTIONS(5947), - [aux_sym__val_number_decimal_token1] = ACTIONS(5949), - [aux_sym__val_number_decimal_token2] = ACTIONS(5951), - [anon_sym_DOT2] = ACTIONS(5953), - [aux_sym__val_number_decimal_token3] = ACTIONS(5955), - [aux_sym__val_number_token1] = ACTIONS(5957), - [aux_sym__val_number_token2] = ACTIONS(5957), - [aux_sym__val_number_token3] = ACTIONS(5957), - [aux_sym__val_number_token4] = ACTIONS(5959), - [aux_sym__val_number_token5] = ACTIONS(5959), - [aux_sym__val_number_token6] = ACTIONS(5959), - [anon_sym_0b] = ACTIONS(5961), - [anon_sym_0o] = ACTIONS(5963), - [anon_sym_0x] = ACTIONS(5963), - [sym_val_date] = ACTIONS(5965), - [anon_sym_DQUOTE] = ACTIONS(5967), - [sym__str_single_quotes] = ACTIONS(5969), - [sym__str_back_ticks] = ACTIONS(5969), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5973), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5975), - [anon_sym_POUND] = ACTIONS(3), + [2543] = { + [sym_comment] = STATE(2543), + [anon_sym_export] = ACTIONS(6511), + [anon_sym_alias] = ACTIONS(6511), + [anon_sym_let] = ACTIONS(6511), + [anon_sym_let_DASHenv] = ACTIONS(6511), + [anon_sym_mut] = ACTIONS(6511), + [anon_sym_const] = ACTIONS(6511), + [anon_sym_SEMI] = ACTIONS(6511), + [sym_cmd_identifier] = ACTIONS(6511), + [anon_sym_LF] = ACTIONS(6513), + [anon_sym_def] = ACTIONS(6511), + [anon_sym_export_DASHenv] = ACTIONS(6511), + [anon_sym_extern] = ACTIONS(6511), + [anon_sym_module] = ACTIONS(6511), + [anon_sym_use] = ACTIONS(6511), + [anon_sym_LBRACK] = ACTIONS(6511), + [anon_sym_LPAREN] = ACTIONS(6511), + [anon_sym_DOLLAR] = ACTIONS(6511), + [anon_sym_error] = ACTIONS(6511), + [anon_sym_DASH] = ACTIONS(6511), + [anon_sym_break] = ACTIONS(6511), + [anon_sym_continue] = ACTIONS(6511), + [anon_sym_for] = ACTIONS(6511), + [anon_sym_loop] = ACTIONS(6511), + [anon_sym_while] = ACTIONS(6511), + [anon_sym_do] = ACTIONS(6511), + [anon_sym_if] = ACTIONS(6511), + [anon_sym_match] = ACTIONS(6511), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_DOT_DOT] = ACTIONS(6511), + [anon_sym_try] = ACTIONS(6511), + [anon_sym_return] = ACTIONS(6511), + [anon_sym_source] = ACTIONS(6511), + [anon_sym_source_DASHenv] = ACTIONS(6511), + [anon_sym_register] = ACTIONS(6511), + [anon_sym_hide] = ACTIONS(6511), + [anon_sym_hide_DASHenv] = ACTIONS(6511), + [anon_sym_overlay] = ACTIONS(6511), + [anon_sym_where] = ACTIONS(6511), + [anon_sym_not] = ACTIONS(6511), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6511), + [anon_sym_DOT_DOT_LT] = ACTIONS(6511), + [anon_sym_null] = ACTIONS(6511), + [anon_sym_true] = ACTIONS(6511), + [anon_sym_false] = ACTIONS(6511), + [aux_sym__val_number_decimal_token1] = ACTIONS(6511), + [aux_sym__val_number_decimal_token2] = ACTIONS(6511), + [anon_sym_DOT2] = ACTIONS(6511), + [aux_sym__val_number_decimal_token3] = ACTIONS(6511), + [aux_sym__val_number_token1] = ACTIONS(6511), + [aux_sym__val_number_token2] = ACTIONS(6511), + [aux_sym__val_number_token3] = ACTIONS(6511), + [aux_sym__val_number_token4] = ACTIONS(6511), + [aux_sym__val_number_token5] = ACTIONS(6511), + [aux_sym__val_number_token6] = ACTIONS(6511), + [anon_sym_0b] = ACTIONS(6511), + [anon_sym_0o] = ACTIONS(6511), + [anon_sym_0x] = ACTIONS(6511), + [sym_val_date] = ACTIONS(6511), + [anon_sym_DQUOTE] = ACTIONS(6511), + [sym__str_single_quotes] = ACTIONS(6511), + [sym__str_back_ticks] = ACTIONS(6511), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6511), + [anon_sym_CARET] = ACTIONS(6511), + [anon_sym_POUND] = ACTIONS(113), }, - [2273] = { - [sym_expr_unary] = STATE(895), - [sym__expr_unary_minus] = STATE(893), - [sym_expr_binary] = STATE(895), - [sym__expr_binary_expression] = STATE(923), - [sym_expr_parenthesized] = STATE(895), - [sym__val_range] = STATE(10720), - [sym__value] = STATE(895), - [sym_val_nothing] = STATE(920), - [sym_val_bool] = STATE(865), - [sym_val_variable] = STATE(920), - [sym__var] = STATE(825), - [sym_val_number] = STATE(920), - [sym__val_number_decimal] = STATE(765), - [sym__val_number] = STATE(935), - [sym_val_duration] = STATE(920), - [sym_val_filesize] = STATE(920), - [sym_val_binary] = STATE(920), - [sym_val_string] = STATE(920), - [sym__str_double_quotes] = STATE(868), - [sym_val_interpolated] = STATE(920), - [sym__inter_single_quotes] = STATE(869), - [sym__inter_double_quotes] = STATE(870), - [sym_val_list] = STATE(920), - [sym_val_record] = STATE(920), - [sym_val_table] = STATE(920), - [sym_val_closure] = STATE(920), - [sym_unquoted] = STATE(905), - [sym__unquoted_anonymous_prefix] = STATE(10789), - [sym_comment] = STATE(2273), - [anon_sym_LBRACK] = ACTIONS(5929), - [anon_sym_LPAREN] = ACTIONS(5931), - [anon_sym_DOLLAR] = ACTIONS(5933), - [anon_sym_DASH] = ACTIONS(5935), - [anon_sym_LBRACE] = ACTIONS(5937), - [anon_sym_DOT_DOT] = ACTIONS(5939), - [anon_sym_not] = ACTIONS(5941), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5943), - [anon_sym_DOT_DOT_LT] = ACTIONS(5943), - [anon_sym_null] = ACTIONS(5945), - [anon_sym_true] = ACTIONS(5947), - [anon_sym_false] = ACTIONS(5947), - [aux_sym__val_number_decimal_token1] = ACTIONS(5949), - [aux_sym__val_number_decimal_token2] = ACTIONS(5951), - [anon_sym_DOT2] = ACTIONS(5953), - [aux_sym__val_number_decimal_token3] = ACTIONS(5955), - [aux_sym__val_number_token1] = ACTIONS(5957), - [aux_sym__val_number_token2] = ACTIONS(5957), - [aux_sym__val_number_token3] = ACTIONS(5957), - [aux_sym__val_number_token4] = ACTIONS(5959), - [aux_sym__val_number_token5] = ACTIONS(5959), - [aux_sym__val_number_token6] = ACTIONS(5959), - [anon_sym_0b] = ACTIONS(5961), - [anon_sym_0o] = ACTIONS(5963), - [anon_sym_0x] = ACTIONS(5963), - [sym_val_date] = ACTIONS(5965), - [anon_sym_DQUOTE] = ACTIONS(5967), - [sym__str_single_quotes] = ACTIONS(5969), - [sym__str_back_ticks] = ACTIONS(5969), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5973), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5975), - [anon_sym_POUND] = ACTIONS(3), + [2544] = { + [sym_comment] = STATE(2544), + [anon_sym_SEMI] = ACTIONS(1215), + [anon_sym_LF] = ACTIONS(1217), + [anon_sym_LBRACK] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1215), + [anon_sym_RPAREN] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_DOLLAR] = ACTIONS(1215), + [anon_sym_GT] = ACTIONS(1215), + [anon_sym_DASH_DASH] = ACTIONS(1215), + [anon_sym_DASH] = ACTIONS(1215), + [anon_sym_in] = ACTIONS(1215), + [anon_sym_LBRACE] = ACTIONS(1215), + [anon_sym_RBRACE] = ACTIONS(1215), + [anon_sym_DOT_DOT] = ACTIONS(1215), + [anon_sym_STAR] = ACTIONS(1215), + [anon_sym_STAR_STAR] = ACTIONS(1215), + [anon_sym_PLUS_PLUS] = ACTIONS(1215), + [anon_sym_SLASH] = ACTIONS(1215), + [anon_sym_mod] = ACTIONS(1215), + [anon_sym_SLASH_SLASH] = ACTIONS(1215), + [anon_sym_PLUS] = ACTIONS(1215), + [anon_sym_bit_DASHshl] = ACTIONS(1215), + [anon_sym_bit_DASHshr] = ACTIONS(1215), + [anon_sym_EQ_EQ] = ACTIONS(1215), + [anon_sym_BANG_EQ] = ACTIONS(1215), + [anon_sym_LT2] = ACTIONS(1215), + [anon_sym_LT_EQ] = ACTIONS(1215), + [anon_sym_GT_EQ] = ACTIONS(1215), + [anon_sym_not_DASHin] = ACTIONS(1215), + [anon_sym_starts_DASHwith] = ACTIONS(1215), + [anon_sym_ends_DASHwith] = ACTIONS(1215), + [anon_sym_EQ_TILDE] = ACTIONS(1215), + [anon_sym_BANG_TILDE] = ACTIONS(1215), + [anon_sym_bit_DASHand] = ACTIONS(1215), + [anon_sym_bit_DASHxor] = ACTIONS(1215), + [anon_sym_bit_DASHor] = ACTIONS(1215), + [anon_sym_and] = ACTIONS(1215), + [anon_sym_xor] = ACTIONS(1215), + [anon_sym_or] = ACTIONS(1215), + [anon_sym_not] = ACTIONS(1215), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1215), + [anon_sym_DOT_DOT_LT] = ACTIONS(1215), + [anon_sym_null] = ACTIONS(1215), + [anon_sym_true] = ACTIONS(1215), + [anon_sym_false] = ACTIONS(1215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1215), + [aux_sym__val_number_decimal_token2] = ACTIONS(1215), + [anon_sym_DOT2] = ACTIONS(1215), + [aux_sym__val_number_decimal_token3] = ACTIONS(1215), + [aux_sym__val_number_token1] = ACTIONS(1215), + [aux_sym__val_number_token2] = ACTIONS(1215), + [aux_sym__val_number_token3] = ACTIONS(1215), + [aux_sym__val_number_token4] = ACTIONS(1215), + [aux_sym__val_number_token5] = ACTIONS(1215), + [aux_sym__val_number_token6] = ACTIONS(1215), + [anon_sym_0b] = ACTIONS(1215), + [anon_sym_0o] = ACTIONS(1215), + [anon_sym_0x] = ACTIONS(1215), + [sym_val_date] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1215), + [sym__str_single_quotes] = ACTIONS(1215), + [sym__str_back_ticks] = ACTIONS(1215), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1215), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), + [anon_sym_POUND] = ACTIONS(113), }, - [2274] = { - [sym_expr_unary] = STATE(895), - [sym__expr_unary_minus] = STATE(893), - [sym_expr_binary] = STATE(895), - [sym__expr_binary_expression] = STATE(924), - [sym_expr_parenthesized] = STATE(895), - [sym__val_range] = STATE(10720), - [sym__value] = STATE(895), - [sym_val_nothing] = STATE(920), - [sym_val_bool] = STATE(865), - [sym_val_variable] = STATE(920), - [sym__var] = STATE(825), - [sym_val_number] = STATE(920), - [sym__val_number_decimal] = STATE(765), - [sym__val_number] = STATE(935), - [sym_val_duration] = STATE(920), - [sym_val_filesize] = STATE(920), - [sym_val_binary] = STATE(920), - [sym_val_string] = STATE(920), - [sym__str_double_quotes] = STATE(868), - [sym_val_interpolated] = STATE(920), - [sym__inter_single_quotes] = STATE(869), - [sym__inter_double_quotes] = STATE(870), - [sym_val_list] = STATE(920), - [sym_val_record] = STATE(920), - [sym_val_table] = STATE(920), - [sym_val_closure] = STATE(920), - [sym_unquoted] = STATE(906), - [sym__unquoted_anonymous_prefix] = STATE(10789), - [sym_comment] = STATE(2274), - [anon_sym_LBRACK] = ACTIONS(5929), - [anon_sym_LPAREN] = ACTIONS(5931), - [anon_sym_DOLLAR] = ACTIONS(5933), - [anon_sym_DASH] = ACTIONS(5935), - [anon_sym_LBRACE] = ACTIONS(5937), - [anon_sym_DOT_DOT] = ACTIONS(5939), - [anon_sym_not] = ACTIONS(5941), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5943), - [anon_sym_DOT_DOT_LT] = ACTIONS(5943), - [anon_sym_null] = ACTIONS(5945), - [anon_sym_true] = ACTIONS(5947), - [anon_sym_false] = ACTIONS(5947), - [aux_sym__val_number_decimal_token1] = ACTIONS(5949), - [aux_sym__val_number_decimal_token2] = ACTIONS(5951), - [anon_sym_DOT2] = ACTIONS(5953), - [aux_sym__val_number_decimal_token3] = ACTIONS(5955), - [aux_sym__val_number_token1] = ACTIONS(5957), - [aux_sym__val_number_token2] = ACTIONS(5957), - [aux_sym__val_number_token3] = ACTIONS(5957), - [aux_sym__val_number_token4] = ACTIONS(5959), - [aux_sym__val_number_token5] = ACTIONS(5959), - [aux_sym__val_number_token6] = ACTIONS(5959), - [anon_sym_0b] = ACTIONS(5961), - [anon_sym_0o] = ACTIONS(5963), - [anon_sym_0x] = ACTIONS(5963), - [sym_val_date] = ACTIONS(5965), - [anon_sym_DQUOTE] = ACTIONS(5967), - [sym__str_single_quotes] = ACTIONS(5969), - [sym__str_back_ticks] = ACTIONS(5969), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5973), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5975), - [anon_sym_POUND] = ACTIONS(3), + [2545] = { + [sym_comment] = STATE(2545), + [anon_sym_export] = ACTIONS(6515), + [anon_sym_alias] = ACTIONS(6515), + [anon_sym_let] = ACTIONS(6515), + [anon_sym_let_DASHenv] = ACTIONS(6515), + [anon_sym_mut] = ACTIONS(6515), + [anon_sym_const] = ACTIONS(6515), + [anon_sym_SEMI] = ACTIONS(6515), + [sym_cmd_identifier] = ACTIONS(6515), + [anon_sym_LF] = ACTIONS(6517), + [anon_sym_def] = ACTIONS(6515), + [anon_sym_export_DASHenv] = ACTIONS(6515), + [anon_sym_extern] = ACTIONS(6515), + [anon_sym_module] = ACTIONS(6515), + [anon_sym_use] = ACTIONS(6515), + [anon_sym_LBRACK] = ACTIONS(6515), + [anon_sym_LPAREN] = ACTIONS(6515), + [anon_sym_DOLLAR] = ACTIONS(6515), + [anon_sym_error] = ACTIONS(6515), + [anon_sym_DASH] = ACTIONS(6515), + [anon_sym_break] = ACTIONS(6515), + [anon_sym_continue] = ACTIONS(6515), + [anon_sym_for] = ACTIONS(6515), + [anon_sym_loop] = ACTIONS(6515), + [anon_sym_while] = ACTIONS(6515), + [anon_sym_do] = ACTIONS(6515), + [anon_sym_if] = ACTIONS(6515), + [anon_sym_match] = ACTIONS(6515), + [anon_sym_LBRACE] = ACTIONS(6515), + [anon_sym_DOT_DOT] = ACTIONS(6515), + [anon_sym_try] = ACTIONS(6515), + [anon_sym_return] = ACTIONS(6515), + [anon_sym_source] = ACTIONS(6515), + [anon_sym_source_DASHenv] = ACTIONS(6515), + [anon_sym_register] = ACTIONS(6515), + [anon_sym_hide] = ACTIONS(6515), + [anon_sym_hide_DASHenv] = ACTIONS(6515), + [anon_sym_overlay] = ACTIONS(6515), + [anon_sym_where] = ACTIONS(6515), + [anon_sym_not] = ACTIONS(6515), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6515), + [anon_sym_DOT_DOT_LT] = ACTIONS(6515), + [anon_sym_null] = ACTIONS(6515), + [anon_sym_true] = ACTIONS(6515), + [anon_sym_false] = ACTIONS(6515), + [aux_sym__val_number_decimal_token1] = ACTIONS(6515), + [aux_sym__val_number_decimal_token2] = ACTIONS(6515), + [anon_sym_DOT2] = ACTIONS(6515), + [aux_sym__val_number_decimal_token3] = ACTIONS(6515), + [aux_sym__val_number_token1] = ACTIONS(6515), + [aux_sym__val_number_token2] = ACTIONS(6515), + [aux_sym__val_number_token3] = ACTIONS(6515), + [aux_sym__val_number_token4] = ACTIONS(6515), + [aux_sym__val_number_token5] = ACTIONS(6515), + [aux_sym__val_number_token6] = ACTIONS(6515), + [anon_sym_0b] = ACTIONS(6515), + [anon_sym_0o] = ACTIONS(6515), + [anon_sym_0x] = ACTIONS(6515), + [sym_val_date] = ACTIONS(6515), + [anon_sym_DQUOTE] = ACTIONS(6515), + [sym__str_single_quotes] = ACTIONS(6515), + [sym__str_back_ticks] = ACTIONS(6515), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6515), + [anon_sym_CARET] = ACTIONS(6515), + [anon_sym_POUND] = ACTIONS(113), }, - [2275] = { - [sym_expr_unary] = STATE(895), - [sym__expr_unary_minus] = STATE(893), - [sym_expr_binary] = STATE(895), - [sym__expr_binary_expression] = STATE(925), - [sym_expr_parenthesized] = STATE(895), - [sym__val_range] = STATE(10720), - [sym__value] = STATE(895), - [sym_val_nothing] = STATE(920), - [sym_val_bool] = STATE(865), - [sym_val_variable] = STATE(920), - [sym__var] = STATE(825), - [sym_val_number] = STATE(920), - [sym__val_number_decimal] = STATE(765), - [sym__val_number] = STATE(935), - [sym_val_duration] = STATE(920), - [sym_val_filesize] = STATE(920), - [sym_val_binary] = STATE(920), - [sym_val_string] = STATE(920), - [sym__str_double_quotes] = STATE(868), - [sym_val_interpolated] = STATE(920), - [sym__inter_single_quotes] = STATE(869), - [sym__inter_double_quotes] = STATE(870), - [sym_val_list] = STATE(920), - [sym_val_record] = STATE(920), - [sym_val_table] = STATE(920), - [sym_val_closure] = STATE(920), - [sym_unquoted] = STATE(907), - [sym__unquoted_anonymous_prefix] = STATE(10789), - [sym_comment] = STATE(2275), - [anon_sym_LBRACK] = ACTIONS(5929), - [anon_sym_LPAREN] = ACTIONS(5931), - [anon_sym_DOLLAR] = ACTIONS(5933), - [anon_sym_DASH] = ACTIONS(5935), - [anon_sym_LBRACE] = ACTIONS(5937), - [anon_sym_DOT_DOT] = ACTIONS(5939), - [anon_sym_not] = ACTIONS(5941), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5943), - [anon_sym_DOT_DOT_LT] = ACTIONS(5943), - [anon_sym_null] = ACTIONS(5945), - [anon_sym_true] = ACTIONS(5947), - [anon_sym_false] = ACTIONS(5947), - [aux_sym__val_number_decimal_token1] = ACTIONS(5949), - [aux_sym__val_number_decimal_token2] = ACTIONS(5951), - [anon_sym_DOT2] = ACTIONS(5953), - [aux_sym__val_number_decimal_token3] = ACTIONS(5955), - [aux_sym__val_number_token1] = ACTIONS(5957), - [aux_sym__val_number_token2] = ACTIONS(5957), - [aux_sym__val_number_token3] = ACTIONS(5957), - [aux_sym__val_number_token4] = ACTIONS(5959), - [aux_sym__val_number_token5] = ACTIONS(5959), - [aux_sym__val_number_token6] = ACTIONS(5959), - [anon_sym_0b] = ACTIONS(5961), - [anon_sym_0o] = ACTIONS(5963), - [anon_sym_0x] = ACTIONS(5963), - [sym_val_date] = ACTIONS(5965), - [anon_sym_DQUOTE] = ACTIONS(5967), - [sym__str_single_quotes] = ACTIONS(5969), - [sym__str_back_ticks] = ACTIONS(5969), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5973), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5975), - [anon_sym_POUND] = ACTIONS(3), + [2546] = { + [sym_comment] = STATE(2546), + [anon_sym_export] = ACTIONS(6519), + [anon_sym_alias] = ACTIONS(6519), + [anon_sym_let] = ACTIONS(6519), + [anon_sym_let_DASHenv] = ACTIONS(6519), + [anon_sym_mut] = ACTIONS(6519), + [anon_sym_const] = ACTIONS(6519), + [anon_sym_SEMI] = ACTIONS(6519), + [sym_cmd_identifier] = ACTIONS(6519), + [anon_sym_LF] = ACTIONS(6521), + [anon_sym_def] = ACTIONS(6519), + [anon_sym_export_DASHenv] = ACTIONS(6519), + [anon_sym_extern] = ACTIONS(6519), + [anon_sym_module] = ACTIONS(6519), + [anon_sym_use] = ACTIONS(6519), + [anon_sym_LBRACK] = ACTIONS(6519), + [anon_sym_LPAREN] = ACTIONS(6519), + [anon_sym_DOLLAR] = ACTIONS(6519), + [anon_sym_error] = ACTIONS(6519), + [anon_sym_DASH] = ACTIONS(6519), + [anon_sym_break] = ACTIONS(6519), + [anon_sym_continue] = ACTIONS(6519), + [anon_sym_for] = ACTIONS(6519), + [anon_sym_loop] = ACTIONS(6519), + [anon_sym_while] = ACTIONS(6519), + [anon_sym_do] = ACTIONS(6519), + [anon_sym_if] = ACTIONS(6519), + [anon_sym_match] = ACTIONS(6519), + [anon_sym_LBRACE] = ACTIONS(6519), + [anon_sym_DOT_DOT] = ACTIONS(6519), + [anon_sym_try] = ACTIONS(6519), + [anon_sym_return] = ACTIONS(6519), + [anon_sym_source] = ACTIONS(6519), + [anon_sym_source_DASHenv] = ACTIONS(6519), + [anon_sym_register] = ACTIONS(6519), + [anon_sym_hide] = ACTIONS(6519), + [anon_sym_hide_DASHenv] = ACTIONS(6519), + [anon_sym_overlay] = ACTIONS(6519), + [anon_sym_where] = ACTIONS(6519), + [anon_sym_not] = ACTIONS(6519), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6519), + [anon_sym_DOT_DOT_LT] = ACTIONS(6519), + [anon_sym_null] = ACTIONS(6519), + [anon_sym_true] = ACTIONS(6519), + [anon_sym_false] = ACTIONS(6519), + [aux_sym__val_number_decimal_token1] = ACTIONS(6519), + [aux_sym__val_number_decimal_token2] = ACTIONS(6519), + [anon_sym_DOT2] = ACTIONS(6519), + [aux_sym__val_number_decimal_token3] = ACTIONS(6519), + [aux_sym__val_number_token1] = ACTIONS(6519), + [aux_sym__val_number_token2] = ACTIONS(6519), + [aux_sym__val_number_token3] = ACTIONS(6519), + [aux_sym__val_number_token4] = ACTIONS(6519), + [aux_sym__val_number_token5] = ACTIONS(6519), + [aux_sym__val_number_token6] = ACTIONS(6519), + [anon_sym_0b] = ACTIONS(6519), + [anon_sym_0o] = ACTIONS(6519), + [anon_sym_0x] = ACTIONS(6519), + [sym_val_date] = ACTIONS(6519), + [anon_sym_DQUOTE] = ACTIONS(6519), + [sym__str_single_quotes] = ACTIONS(6519), + [sym__str_back_ticks] = ACTIONS(6519), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6519), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6519), + [anon_sym_CARET] = ACTIONS(6519), + [anon_sym_POUND] = ACTIONS(113), }, - [2276] = { - [sym_expr_unary] = STATE(895), - [sym__expr_unary_minus] = STATE(893), - [sym_expr_binary] = STATE(895), - [sym__expr_binary_expression] = STATE(927), - [sym_expr_parenthesized] = STATE(895), - [sym__val_range] = STATE(10720), - [sym__value] = STATE(895), - [sym_val_nothing] = STATE(920), - [sym_val_bool] = STATE(865), - [sym_val_variable] = STATE(920), - [sym__var] = STATE(825), - [sym_val_number] = STATE(920), - [sym__val_number_decimal] = STATE(765), - [sym__val_number] = STATE(935), - [sym_val_duration] = STATE(920), - [sym_val_filesize] = STATE(920), - [sym_val_binary] = STATE(920), - [sym_val_string] = STATE(920), - [sym__str_double_quotes] = STATE(868), - [sym_val_interpolated] = STATE(920), - [sym__inter_single_quotes] = STATE(869), - [sym__inter_double_quotes] = STATE(870), - [sym_val_list] = STATE(920), - [sym_val_record] = STATE(920), - [sym_val_table] = STATE(920), - [sym_val_closure] = STATE(920), - [sym_unquoted] = STATE(908), - [sym__unquoted_anonymous_prefix] = STATE(10789), - [sym_comment] = STATE(2276), - [anon_sym_LBRACK] = ACTIONS(5929), - [anon_sym_LPAREN] = ACTIONS(5931), - [anon_sym_DOLLAR] = ACTIONS(5933), - [anon_sym_DASH] = ACTIONS(5935), - [anon_sym_LBRACE] = ACTIONS(5937), - [anon_sym_DOT_DOT] = ACTIONS(5939), - [anon_sym_not] = ACTIONS(5941), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5943), - [anon_sym_DOT_DOT_LT] = ACTIONS(5943), - [anon_sym_null] = ACTIONS(5945), - [anon_sym_true] = ACTIONS(5947), - [anon_sym_false] = ACTIONS(5947), - [aux_sym__val_number_decimal_token1] = ACTIONS(5949), - [aux_sym__val_number_decimal_token2] = ACTIONS(5951), - [anon_sym_DOT2] = ACTIONS(5953), - [aux_sym__val_number_decimal_token3] = ACTIONS(5955), - [aux_sym__val_number_token1] = ACTIONS(5957), - [aux_sym__val_number_token2] = ACTIONS(5957), - [aux_sym__val_number_token3] = ACTIONS(5957), - [aux_sym__val_number_token4] = ACTIONS(5959), - [aux_sym__val_number_token5] = ACTIONS(5959), - [aux_sym__val_number_token6] = ACTIONS(5959), - [anon_sym_0b] = ACTIONS(5961), - [anon_sym_0o] = ACTIONS(5963), - [anon_sym_0x] = ACTIONS(5963), - [sym_val_date] = ACTIONS(5965), - [anon_sym_DQUOTE] = ACTIONS(5967), - [sym__str_single_quotes] = ACTIONS(5969), - [sym__str_back_ticks] = ACTIONS(5969), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5973), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5975), - [anon_sym_POUND] = ACTIONS(3), + [2547] = { + [sym_comment] = STATE(2547), + [anon_sym_export] = ACTIONS(6523), + [anon_sym_alias] = ACTIONS(6523), + [anon_sym_let] = ACTIONS(6523), + [anon_sym_let_DASHenv] = ACTIONS(6523), + [anon_sym_mut] = ACTIONS(6523), + [anon_sym_const] = ACTIONS(6523), + [anon_sym_SEMI] = ACTIONS(6523), + [sym_cmd_identifier] = ACTIONS(6523), + [anon_sym_LF] = ACTIONS(6525), + [anon_sym_def] = ACTIONS(6523), + [anon_sym_export_DASHenv] = ACTIONS(6523), + [anon_sym_extern] = ACTIONS(6523), + [anon_sym_module] = ACTIONS(6523), + [anon_sym_use] = ACTIONS(6523), + [anon_sym_LBRACK] = ACTIONS(6523), + [anon_sym_LPAREN] = ACTIONS(6523), + [anon_sym_DOLLAR] = ACTIONS(6523), + [anon_sym_error] = ACTIONS(6523), + [anon_sym_DASH] = ACTIONS(6523), + [anon_sym_break] = ACTIONS(6523), + [anon_sym_continue] = ACTIONS(6523), + [anon_sym_for] = ACTIONS(6523), + [anon_sym_loop] = ACTIONS(6523), + [anon_sym_while] = ACTIONS(6523), + [anon_sym_do] = ACTIONS(6523), + [anon_sym_if] = ACTIONS(6523), + [anon_sym_match] = ACTIONS(6523), + [anon_sym_LBRACE] = ACTIONS(6523), + [anon_sym_DOT_DOT] = ACTIONS(6523), + [anon_sym_try] = ACTIONS(6523), + [anon_sym_return] = ACTIONS(6523), + [anon_sym_source] = ACTIONS(6523), + [anon_sym_source_DASHenv] = ACTIONS(6523), + [anon_sym_register] = ACTIONS(6523), + [anon_sym_hide] = ACTIONS(6523), + [anon_sym_hide_DASHenv] = ACTIONS(6523), + [anon_sym_overlay] = ACTIONS(6523), + [anon_sym_where] = ACTIONS(6523), + [anon_sym_not] = ACTIONS(6523), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6523), + [anon_sym_DOT_DOT_LT] = ACTIONS(6523), + [anon_sym_null] = ACTIONS(6523), + [anon_sym_true] = ACTIONS(6523), + [anon_sym_false] = ACTIONS(6523), + [aux_sym__val_number_decimal_token1] = ACTIONS(6523), + [aux_sym__val_number_decimal_token2] = ACTIONS(6523), + [anon_sym_DOT2] = ACTIONS(6523), + [aux_sym__val_number_decimal_token3] = ACTIONS(6523), + [aux_sym__val_number_token1] = ACTIONS(6523), + [aux_sym__val_number_token2] = ACTIONS(6523), + [aux_sym__val_number_token3] = ACTIONS(6523), + [aux_sym__val_number_token4] = ACTIONS(6523), + [aux_sym__val_number_token5] = ACTIONS(6523), + [aux_sym__val_number_token6] = ACTIONS(6523), + [anon_sym_0b] = ACTIONS(6523), + [anon_sym_0o] = ACTIONS(6523), + [anon_sym_0x] = ACTIONS(6523), + [sym_val_date] = ACTIONS(6523), + [anon_sym_DQUOTE] = ACTIONS(6523), + [sym__str_single_quotes] = ACTIONS(6523), + [sym__str_back_ticks] = ACTIONS(6523), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6523), + [anon_sym_CARET] = ACTIONS(6523), + [anon_sym_POUND] = ACTIONS(113), }, - [2277] = { - [sym_expr_unary] = STATE(546), - [sym__expr_unary_minus] = STATE(542), - [sym_expr_binary] = STATE(546), - [sym__expr_binary_expression] = STATE(565), - [sym_expr_parenthesized] = STATE(546), - [sym__val_range] = STATE(10721), - [sym__value] = STATE(546), - [sym_val_nothing] = STATE(597), - [sym_val_bool] = STATE(484), - [sym_val_variable] = STATE(597), - [sym__var] = STATE(382), - [sym_val_number] = STATE(597), - [sym__val_number_decimal] = STATE(273), - [sym__val_number] = STATE(600), - [sym_val_duration] = STATE(597), - [sym_val_filesize] = STATE(597), - [sym_val_binary] = STATE(597), - [sym_val_string] = STATE(597), - [sym__str_double_quotes] = STATE(598), - [sym_val_interpolated] = STATE(597), - [sym__inter_single_quotes] = STATE(564), - [sym__inter_double_quotes] = STATE(580), - [sym_val_list] = STATE(597), - [sym_val_record] = STATE(597), - [sym_val_table] = STATE(597), - [sym_val_closure] = STATE(597), - [sym_unquoted] = STATE(547), - [sym__unquoted_anonymous_prefix] = STATE(10843), - [sym_comment] = STATE(2277), - [anon_sym_LBRACK] = ACTIONS(4327), - [anon_sym_LPAREN] = ACTIONS(5977), - [anon_sym_DOLLAR] = ACTIONS(5979), - [anon_sym_DASH] = ACTIONS(4333), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_DOT_DOT] = ACTIONS(5981), - [anon_sym_not] = ACTIONS(4339), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5983), - [anon_sym_DOT_DOT_LT] = ACTIONS(5983), - [anon_sym_null] = ACTIONS(4343), - [anon_sym_true] = ACTIONS(4345), - [anon_sym_false] = ACTIONS(4345), - [aux_sym__val_number_decimal_token1] = ACTIONS(4347), - [aux_sym__val_number_decimal_token2] = ACTIONS(4349), - [anon_sym_DOT2] = ACTIONS(5985), - [aux_sym__val_number_decimal_token3] = ACTIONS(4353), - [aux_sym__val_number_token1] = ACTIONS(4355), - [aux_sym__val_number_token2] = ACTIONS(4355), - [aux_sym__val_number_token3] = ACTIONS(4355), - [aux_sym__val_number_token4] = ACTIONS(5987), - [aux_sym__val_number_token5] = ACTIONS(5987), - [aux_sym__val_number_token6] = ACTIONS(5987), - [anon_sym_0b] = ACTIONS(4359), - [anon_sym_0o] = ACTIONS(4361), - [anon_sym_0x] = ACTIONS(4361), - [sym_val_date] = ACTIONS(4363), - [anon_sym_DQUOTE] = ACTIONS(4365), - [sym__str_single_quotes] = ACTIONS(4367), - [sym__str_back_ticks] = ACTIONS(4367), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4369), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4371), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5989), - [anon_sym_POUND] = ACTIONS(3), + [2548] = { + [sym_comment] = STATE(2548), + [anon_sym_export] = ACTIONS(6527), + [anon_sym_alias] = ACTIONS(6527), + [anon_sym_let] = ACTIONS(6527), + [anon_sym_let_DASHenv] = ACTIONS(6527), + [anon_sym_mut] = ACTIONS(6527), + [anon_sym_const] = ACTIONS(6527), + [anon_sym_SEMI] = ACTIONS(6527), + [sym_cmd_identifier] = ACTIONS(6527), + [anon_sym_LF] = ACTIONS(6529), + [anon_sym_def] = ACTIONS(6527), + [anon_sym_export_DASHenv] = ACTIONS(6527), + [anon_sym_extern] = ACTIONS(6527), + [anon_sym_module] = ACTIONS(6527), + [anon_sym_use] = ACTIONS(6527), + [anon_sym_LBRACK] = ACTIONS(6527), + [anon_sym_LPAREN] = ACTIONS(6527), + [anon_sym_DOLLAR] = ACTIONS(6527), + [anon_sym_error] = ACTIONS(6527), + [anon_sym_DASH] = ACTIONS(6527), + [anon_sym_break] = ACTIONS(6527), + [anon_sym_continue] = ACTIONS(6527), + [anon_sym_for] = ACTIONS(6527), + [anon_sym_loop] = ACTIONS(6527), + [anon_sym_while] = ACTIONS(6527), + [anon_sym_do] = ACTIONS(6527), + [anon_sym_if] = ACTIONS(6527), + [anon_sym_match] = ACTIONS(6527), + [anon_sym_LBRACE] = ACTIONS(6527), + [anon_sym_DOT_DOT] = ACTIONS(6527), + [anon_sym_try] = ACTIONS(6527), + [anon_sym_return] = ACTIONS(6527), + [anon_sym_source] = ACTIONS(6527), + [anon_sym_source_DASHenv] = ACTIONS(6527), + [anon_sym_register] = ACTIONS(6527), + [anon_sym_hide] = ACTIONS(6527), + [anon_sym_hide_DASHenv] = ACTIONS(6527), + [anon_sym_overlay] = ACTIONS(6527), + [anon_sym_where] = ACTIONS(6527), + [anon_sym_not] = ACTIONS(6527), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6527), + [anon_sym_DOT_DOT_LT] = ACTIONS(6527), + [anon_sym_null] = ACTIONS(6527), + [anon_sym_true] = ACTIONS(6527), + [anon_sym_false] = ACTIONS(6527), + [aux_sym__val_number_decimal_token1] = ACTIONS(6527), + [aux_sym__val_number_decimal_token2] = ACTIONS(6527), + [anon_sym_DOT2] = ACTIONS(6527), + [aux_sym__val_number_decimal_token3] = ACTIONS(6527), + [aux_sym__val_number_token1] = ACTIONS(6527), + [aux_sym__val_number_token2] = ACTIONS(6527), + [aux_sym__val_number_token3] = ACTIONS(6527), + [aux_sym__val_number_token4] = ACTIONS(6527), + [aux_sym__val_number_token5] = ACTIONS(6527), + [aux_sym__val_number_token6] = ACTIONS(6527), + [anon_sym_0b] = ACTIONS(6527), + [anon_sym_0o] = ACTIONS(6527), + [anon_sym_0x] = ACTIONS(6527), + [sym_val_date] = ACTIONS(6527), + [anon_sym_DQUOTE] = ACTIONS(6527), + [sym__str_single_quotes] = ACTIONS(6527), + [sym__str_back_ticks] = ACTIONS(6527), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6527), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6527), + [anon_sym_CARET] = ACTIONS(6527), + [anon_sym_POUND] = ACTIONS(113), }, - [2278] = { - [sym_expr_unary] = STATE(546), - [sym__expr_unary_minus] = STATE(542), - [sym_expr_binary] = STATE(546), - [sym__expr_binary_expression] = STATE(566), - [sym_expr_parenthesized] = STATE(546), - [sym__val_range] = STATE(10721), - [sym__value] = STATE(546), - [sym_val_nothing] = STATE(597), - [sym_val_bool] = STATE(484), - [sym_val_variable] = STATE(597), - [sym__var] = STATE(382), - [sym_val_number] = STATE(597), - [sym__val_number_decimal] = STATE(273), - [sym__val_number] = STATE(600), - [sym_val_duration] = STATE(597), - [sym_val_filesize] = STATE(597), - [sym_val_binary] = STATE(597), - [sym_val_string] = STATE(597), - [sym__str_double_quotes] = STATE(598), - [sym_val_interpolated] = STATE(597), - [sym__inter_single_quotes] = STATE(564), - [sym__inter_double_quotes] = STATE(580), - [sym_val_list] = STATE(597), - [sym_val_record] = STATE(597), - [sym_val_table] = STATE(597), - [sym_val_closure] = STATE(597), - [sym_unquoted] = STATE(548), - [sym__unquoted_anonymous_prefix] = STATE(10843), - [sym_comment] = STATE(2278), - [anon_sym_LBRACK] = ACTIONS(4327), - [anon_sym_LPAREN] = ACTIONS(5977), - [anon_sym_DOLLAR] = ACTIONS(5979), - [anon_sym_DASH] = ACTIONS(4333), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_DOT_DOT] = ACTIONS(5981), - [anon_sym_not] = ACTIONS(4339), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5983), - [anon_sym_DOT_DOT_LT] = ACTIONS(5983), - [anon_sym_null] = ACTIONS(4343), - [anon_sym_true] = ACTIONS(4345), - [anon_sym_false] = ACTIONS(4345), - [aux_sym__val_number_decimal_token1] = ACTIONS(4347), - [aux_sym__val_number_decimal_token2] = ACTIONS(4349), - [anon_sym_DOT2] = ACTIONS(5985), - [aux_sym__val_number_decimal_token3] = ACTIONS(4353), - [aux_sym__val_number_token1] = ACTIONS(4355), - [aux_sym__val_number_token2] = ACTIONS(4355), - [aux_sym__val_number_token3] = ACTIONS(4355), - [aux_sym__val_number_token4] = ACTIONS(5987), - [aux_sym__val_number_token5] = ACTIONS(5987), - [aux_sym__val_number_token6] = ACTIONS(5987), - [anon_sym_0b] = ACTIONS(4359), - [anon_sym_0o] = ACTIONS(4361), - [anon_sym_0x] = ACTIONS(4361), - [sym_val_date] = ACTIONS(4363), - [anon_sym_DQUOTE] = ACTIONS(4365), - [sym__str_single_quotes] = ACTIONS(4367), - [sym__str_back_ticks] = ACTIONS(4367), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4369), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4371), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5989), - [anon_sym_POUND] = ACTIONS(3), + [2549] = { + [sym_comment] = STATE(2549), + [anon_sym_export] = ACTIONS(6531), + [anon_sym_alias] = ACTIONS(6531), + [anon_sym_let] = ACTIONS(6531), + [anon_sym_let_DASHenv] = ACTIONS(6531), + [anon_sym_mut] = ACTIONS(6531), + [anon_sym_const] = ACTIONS(6531), + [anon_sym_SEMI] = ACTIONS(6531), + [sym_cmd_identifier] = ACTIONS(6531), + [anon_sym_LF] = ACTIONS(6533), + [anon_sym_def] = ACTIONS(6531), + [anon_sym_export_DASHenv] = ACTIONS(6531), + [anon_sym_extern] = ACTIONS(6531), + [anon_sym_module] = ACTIONS(6531), + [anon_sym_use] = ACTIONS(6531), + [anon_sym_LBRACK] = ACTIONS(6531), + [anon_sym_LPAREN] = ACTIONS(6531), + [anon_sym_DOLLAR] = ACTIONS(6531), + [anon_sym_error] = ACTIONS(6531), + [anon_sym_DASH] = ACTIONS(6531), + [anon_sym_break] = ACTIONS(6531), + [anon_sym_continue] = ACTIONS(6531), + [anon_sym_for] = ACTIONS(6531), + [anon_sym_loop] = ACTIONS(6531), + [anon_sym_while] = ACTIONS(6531), + [anon_sym_do] = ACTIONS(6531), + [anon_sym_if] = ACTIONS(6531), + [anon_sym_match] = ACTIONS(6531), + [anon_sym_LBRACE] = ACTIONS(6531), + [anon_sym_DOT_DOT] = ACTIONS(6531), + [anon_sym_try] = ACTIONS(6531), + [anon_sym_return] = ACTIONS(6531), + [anon_sym_source] = ACTIONS(6531), + [anon_sym_source_DASHenv] = ACTIONS(6531), + [anon_sym_register] = ACTIONS(6531), + [anon_sym_hide] = ACTIONS(6531), + [anon_sym_hide_DASHenv] = ACTIONS(6531), + [anon_sym_overlay] = ACTIONS(6531), + [anon_sym_where] = ACTIONS(6531), + [anon_sym_not] = ACTIONS(6531), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6531), + [anon_sym_DOT_DOT_LT] = ACTIONS(6531), + [anon_sym_null] = ACTIONS(6531), + [anon_sym_true] = ACTIONS(6531), + [anon_sym_false] = ACTIONS(6531), + [aux_sym__val_number_decimal_token1] = ACTIONS(6531), + [aux_sym__val_number_decimal_token2] = ACTIONS(6531), + [anon_sym_DOT2] = ACTIONS(6531), + [aux_sym__val_number_decimal_token3] = ACTIONS(6531), + [aux_sym__val_number_token1] = ACTIONS(6531), + [aux_sym__val_number_token2] = ACTIONS(6531), + [aux_sym__val_number_token3] = ACTIONS(6531), + [aux_sym__val_number_token4] = ACTIONS(6531), + [aux_sym__val_number_token5] = ACTIONS(6531), + [aux_sym__val_number_token6] = ACTIONS(6531), + [anon_sym_0b] = ACTIONS(6531), + [anon_sym_0o] = ACTIONS(6531), + [anon_sym_0x] = ACTIONS(6531), + [sym_val_date] = ACTIONS(6531), + [anon_sym_DQUOTE] = ACTIONS(6531), + [sym__str_single_quotes] = ACTIONS(6531), + [sym__str_back_ticks] = ACTIONS(6531), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6531), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6531), + [anon_sym_CARET] = ACTIONS(6531), + [anon_sym_POUND] = ACTIONS(113), }, - [2279] = { - [sym_expr_unary] = STATE(546), - [sym__expr_unary_minus] = STATE(542), - [sym_expr_binary] = STATE(546), - [sym__expr_binary_expression] = STATE(567), - [sym_expr_parenthesized] = STATE(546), - [sym__val_range] = STATE(10721), - [sym__value] = STATE(546), - [sym_val_nothing] = STATE(597), - [sym_val_bool] = STATE(484), - [sym_val_variable] = STATE(597), - [sym__var] = STATE(382), - [sym_val_number] = STATE(597), - [sym__val_number_decimal] = STATE(273), - [sym__val_number] = STATE(600), - [sym_val_duration] = STATE(597), - [sym_val_filesize] = STATE(597), - [sym_val_binary] = STATE(597), - [sym_val_string] = STATE(597), - [sym__str_double_quotes] = STATE(598), - [sym_val_interpolated] = STATE(597), - [sym__inter_single_quotes] = STATE(564), - [sym__inter_double_quotes] = STATE(580), - [sym_val_list] = STATE(597), - [sym_val_record] = STATE(597), - [sym_val_table] = STATE(597), - [sym_val_closure] = STATE(597), - [sym_unquoted] = STATE(549), - [sym__unquoted_anonymous_prefix] = STATE(10843), - [sym_comment] = STATE(2279), - [anon_sym_LBRACK] = ACTIONS(4327), - [anon_sym_LPAREN] = ACTIONS(5977), - [anon_sym_DOLLAR] = ACTIONS(5979), - [anon_sym_DASH] = ACTIONS(4333), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_DOT_DOT] = ACTIONS(5981), - [anon_sym_not] = ACTIONS(4339), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5983), - [anon_sym_DOT_DOT_LT] = ACTIONS(5983), - [anon_sym_null] = ACTIONS(4343), - [anon_sym_true] = ACTIONS(4345), - [anon_sym_false] = ACTIONS(4345), - [aux_sym__val_number_decimal_token1] = ACTIONS(4347), - [aux_sym__val_number_decimal_token2] = ACTIONS(4349), - [anon_sym_DOT2] = ACTIONS(5985), - [aux_sym__val_number_decimal_token3] = ACTIONS(4353), - [aux_sym__val_number_token1] = ACTIONS(4355), - [aux_sym__val_number_token2] = ACTIONS(4355), - [aux_sym__val_number_token3] = ACTIONS(4355), - [aux_sym__val_number_token4] = ACTIONS(5987), - [aux_sym__val_number_token5] = ACTIONS(5987), - [aux_sym__val_number_token6] = ACTIONS(5987), - [anon_sym_0b] = ACTIONS(4359), - [anon_sym_0o] = ACTIONS(4361), - [anon_sym_0x] = ACTIONS(4361), - [sym_val_date] = ACTIONS(4363), - [anon_sym_DQUOTE] = ACTIONS(4365), - [sym__str_single_quotes] = ACTIONS(4367), - [sym__str_back_ticks] = ACTIONS(4367), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4369), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4371), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5989), - [anon_sym_POUND] = ACTIONS(3), + [2550] = { + [sym_comment] = STATE(2550), + [anon_sym_SEMI] = ACTIONS(1221), + [anon_sym_LF] = ACTIONS(1223), + [anon_sym_LBRACK] = ACTIONS(1221), + [anon_sym_LPAREN] = ACTIONS(1221), + [anon_sym_RPAREN] = ACTIONS(1221), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_DOLLAR] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_DASH_DASH] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_in] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1221), + [anon_sym_RBRACE] = ACTIONS(1221), + [anon_sym_DOT_DOT] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_STAR_STAR] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_mod] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_bit_DASHshl] = ACTIONS(1221), + [anon_sym_bit_DASHshr] = ACTIONS(1221), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT2] = ACTIONS(1221), + [anon_sym_LT_EQ] = ACTIONS(1221), + [anon_sym_GT_EQ] = ACTIONS(1221), + [anon_sym_not_DASHin] = ACTIONS(1221), + [anon_sym_starts_DASHwith] = ACTIONS(1221), + [anon_sym_ends_DASHwith] = ACTIONS(1221), + [anon_sym_EQ_TILDE] = ACTIONS(1221), + [anon_sym_BANG_TILDE] = ACTIONS(1221), + [anon_sym_bit_DASHand] = ACTIONS(1221), + [anon_sym_bit_DASHxor] = ACTIONS(1221), + [anon_sym_bit_DASHor] = ACTIONS(1221), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_xor] = ACTIONS(1221), + [anon_sym_or] = ACTIONS(1221), + [anon_sym_not] = ACTIONS(1221), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1221), + [anon_sym_DOT_DOT_LT] = ACTIONS(1221), + [anon_sym_null] = ACTIONS(1221), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [aux_sym__val_number_decimal_token1] = ACTIONS(1221), + [aux_sym__val_number_decimal_token2] = ACTIONS(1221), + [anon_sym_DOT2] = ACTIONS(1221), + [aux_sym__val_number_decimal_token3] = ACTIONS(1221), + [aux_sym__val_number_token1] = ACTIONS(1221), + [aux_sym__val_number_token2] = ACTIONS(1221), + [aux_sym__val_number_token3] = ACTIONS(1221), + [aux_sym__val_number_token4] = ACTIONS(1221), + [aux_sym__val_number_token5] = ACTIONS(1221), + [aux_sym__val_number_token6] = ACTIONS(1221), + [anon_sym_0b] = ACTIONS(1221), + [anon_sym_0o] = ACTIONS(1221), + [anon_sym_0x] = ACTIONS(1221), + [sym_val_date] = ACTIONS(1221), + [anon_sym_DQUOTE] = ACTIONS(1221), + [sym__str_single_quotes] = ACTIONS(1221), + [sym__str_back_ticks] = ACTIONS(1221), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1221), + [anon_sym_POUND] = ACTIONS(113), }, - [2280] = { - [sym_expr_unary] = STATE(546), - [sym__expr_unary_minus] = STATE(542), - [sym_expr_binary] = STATE(546), - [sym__expr_binary_expression] = STATE(568), - [sym_expr_parenthesized] = STATE(546), - [sym__val_range] = STATE(10721), - [sym__value] = STATE(546), - [sym_val_nothing] = STATE(597), - [sym_val_bool] = STATE(484), - [sym_val_variable] = STATE(597), - [sym__var] = STATE(382), - [sym_val_number] = STATE(597), - [sym__val_number_decimal] = STATE(273), - [sym__val_number] = STATE(600), - [sym_val_duration] = STATE(597), - [sym_val_filesize] = STATE(597), - [sym_val_binary] = STATE(597), - [sym_val_string] = STATE(597), - [sym__str_double_quotes] = STATE(598), - [sym_val_interpolated] = STATE(597), - [sym__inter_single_quotes] = STATE(564), - [sym__inter_double_quotes] = STATE(580), - [sym_val_list] = STATE(597), - [sym_val_record] = STATE(597), - [sym_val_table] = STATE(597), - [sym_val_closure] = STATE(597), - [sym_unquoted] = STATE(550), - [sym__unquoted_anonymous_prefix] = STATE(10843), - [sym_comment] = STATE(2280), - [anon_sym_LBRACK] = ACTIONS(4327), - [anon_sym_LPAREN] = ACTIONS(5977), - [anon_sym_DOLLAR] = ACTIONS(5979), - [anon_sym_DASH] = ACTIONS(4333), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_DOT_DOT] = ACTIONS(5981), - [anon_sym_not] = ACTIONS(4339), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5983), - [anon_sym_DOT_DOT_LT] = ACTIONS(5983), - [anon_sym_null] = ACTIONS(4343), - [anon_sym_true] = ACTIONS(4345), - [anon_sym_false] = ACTIONS(4345), - [aux_sym__val_number_decimal_token1] = ACTIONS(4347), - [aux_sym__val_number_decimal_token2] = ACTIONS(4349), - [anon_sym_DOT2] = ACTIONS(5985), - [aux_sym__val_number_decimal_token3] = ACTIONS(4353), - [aux_sym__val_number_token1] = ACTIONS(4355), - [aux_sym__val_number_token2] = ACTIONS(4355), - [aux_sym__val_number_token3] = ACTIONS(4355), - [aux_sym__val_number_token4] = ACTIONS(5987), - [aux_sym__val_number_token5] = ACTIONS(5987), - [aux_sym__val_number_token6] = ACTIONS(5987), - [anon_sym_0b] = ACTIONS(4359), - [anon_sym_0o] = ACTIONS(4361), - [anon_sym_0x] = ACTIONS(4361), - [sym_val_date] = ACTIONS(4363), - [anon_sym_DQUOTE] = ACTIONS(4365), - [sym__str_single_quotes] = ACTIONS(4367), - [sym__str_back_ticks] = ACTIONS(4367), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4369), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4371), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5989), + [2551] = { + [sym_ctrl_if_parenthesized] = STATE(9115), + [sym_block] = STATE(9116), + [sym__expression] = STATE(9116), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(4804), + [sym__var] = STATE(4386), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(9116), + [sym_comment] = STATE(2551), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_if] = ACTIONS(447), + [anon_sym_LBRACE] = ACTIONS(6499), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_not] = ACTIONS(191), + [anon_sym_DOT_DOT_EQ] = ACTIONS(193), + [anon_sym_DOT_DOT_LT] = ACTIONS(193), + [anon_sym_null] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [aux_sym__val_number_decimal_token1] = ACTIONS(199), + [aux_sym__val_number_decimal_token2] = ACTIONS(201), + [anon_sym_DOT2] = ACTIONS(203), + [aux_sym__val_number_decimal_token3] = ACTIONS(205), + [aux_sym__val_number_token1] = ACTIONS(207), + [aux_sym__val_number_token2] = ACTIONS(207), + [aux_sym__val_number_token3] = ACTIONS(207), + [aux_sym__val_number_token4] = ACTIONS(209), + [aux_sym__val_number_token5] = ACTIONS(207), + [aux_sym__val_number_token6] = ACTIONS(209), + [anon_sym_0b] = ACTIONS(211), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym__str_single_quotes] = ACTIONS(219), + [sym__str_back_ticks] = ACTIONS(219), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(227), [anon_sym_POUND] = ACTIONS(3), }, - [2281] = { - [sym_expr_unary] = STATE(546), - [sym__expr_unary_minus] = STATE(542), - [sym_expr_binary] = STATE(546), - [sym__expr_binary_expression] = STATE(569), - [sym_expr_parenthesized] = STATE(546), - [sym__val_range] = STATE(10721), - [sym__value] = STATE(546), - [sym_val_nothing] = STATE(597), - [sym_val_bool] = STATE(484), - [sym_val_variable] = STATE(597), - [sym__var] = STATE(382), - [sym_val_number] = STATE(597), - [sym__val_number_decimal] = STATE(273), - [sym__val_number] = STATE(600), - [sym_val_duration] = STATE(597), - [sym_val_filesize] = STATE(597), - [sym_val_binary] = STATE(597), - [sym_val_string] = STATE(597), - [sym__str_double_quotes] = STATE(598), - [sym_val_interpolated] = STATE(597), - [sym__inter_single_quotes] = STATE(564), - [sym__inter_double_quotes] = STATE(580), - [sym_val_list] = STATE(597), - [sym_val_record] = STATE(597), - [sym_val_table] = STATE(597), - [sym_val_closure] = STATE(597), - [sym_unquoted] = STATE(551), - [sym__unquoted_anonymous_prefix] = STATE(10843), - [sym_comment] = STATE(2281), - [anon_sym_LBRACK] = ACTIONS(4327), - [anon_sym_LPAREN] = ACTIONS(5977), - [anon_sym_DOLLAR] = ACTIONS(5979), - [anon_sym_DASH] = ACTIONS(4333), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_DOT_DOT] = ACTIONS(5981), - [anon_sym_not] = ACTIONS(4339), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5983), - [anon_sym_DOT_DOT_LT] = ACTIONS(5983), - [anon_sym_null] = ACTIONS(4343), - [anon_sym_true] = ACTIONS(4345), - [anon_sym_false] = ACTIONS(4345), - [aux_sym__val_number_decimal_token1] = ACTIONS(4347), - [aux_sym__val_number_decimal_token2] = ACTIONS(4349), - [anon_sym_DOT2] = ACTIONS(5985), - [aux_sym__val_number_decimal_token3] = ACTIONS(4353), - [aux_sym__val_number_token1] = ACTIONS(4355), - [aux_sym__val_number_token2] = ACTIONS(4355), - [aux_sym__val_number_token3] = ACTIONS(4355), - [aux_sym__val_number_token4] = ACTIONS(5987), - [aux_sym__val_number_token5] = ACTIONS(5987), - [aux_sym__val_number_token6] = ACTIONS(5987), - [anon_sym_0b] = ACTIONS(4359), - [anon_sym_0o] = ACTIONS(4361), - [anon_sym_0x] = ACTIONS(4361), - [sym_val_date] = ACTIONS(4363), - [anon_sym_DQUOTE] = ACTIONS(4365), - [sym__str_single_quotes] = ACTIONS(4367), - [sym__str_back_ticks] = ACTIONS(4367), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4369), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4371), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5989), - [anon_sym_POUND] = ACTIONS(3), + [2552] = { + [sym_comment] = STATE(2552), + [anon_sym_export] = ACTIONS(6429), + [anon_sym_alias] = ACTIONS(6429), + [anon_sym_let] = ACTIONS(6429), + [anon_sym_let_DASHenv] = ACTIONS(6429), + [anon_sym_mut] = ACTIONS(6429), + [anon_sym_const] = ACTIONS(6429), + [anon_sym_SEMI] = ACTIONS(6429), + [sym_cmd_identifier] = ACTIONS(6429), + [anon_sym_LF] = ACTIONS(6535), + [anon_sym_def] = ACTIONS(6429), + [anon_sym_export_DASHenv] = ACTIONS(6429), + [anon_sym_extern] = ACTIONS(6429), + [anon_sym_module] = ACTIONS(6429), + [anon_sym_use] = ACTIONS(6429), + [anon_sym_LBRACK] = ACTIONS(6429), + [anon_sym_LPAREN] = ACTIONS(6429), + [anon_sym_DOLLAR] = ACTIONS(6429), + [anon_sym_error] = ACTIONS(6429), + [anon_sym_DASH] = ACTIONS(6429), + [anon_sym_break] = ACTIONS(6429), + [anon_sym_continue] = ACTIONS(6429), + [anon_sym_for] = ACTIONS(6429), + [anon_sym_loop] = ACTIONS(6429), + [anon_sym_while] = ACTIONS(6429), + [anon_sym_do] = ACTIONS(6429), + [anon_sym_if] = ACTIONS(6429), + [anon_sym_match] = ACTIONS(6429), + [anon_sym_LBRACE] = ACTIONS(6429), + [anon_sym_DOT_DOT] = ACTIONS(6429), + [anon_sym_try] = ACTIONS(6429), + [anon_sym_return] = ACTIONS(6429), + [anon_sym_source] = ACTIONS(6429), + [anon_sym_source_DASHenv] = ACTIONS(6429), + [anon_sym_register] = ACTIONS(6429), + [anon_sym_hide] = ACTIONS(6429), + [anon_sym_hide_DASHenv] = ACTIONS(6429), + [anon_sym_overlay] = ACTIONS(6429), + [anon_sym_where] = ACTIONS(6429), + [anon_sym_not] = ACTIONS(6429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6429), + [anon_sym_DOT_DOT_LT] = ACTIONS(6429), + [anon_sym_null] = ACTIONS(6429), + [anon_sym_true] = ACTIONS(6429), + [anon_sym_false] = ACTIONS(6429), + [aux_sym__val_number_decimal_token1] = ACTIONS(6429), + [aux_sym__val_number_decimal_token2] = ACTIONS(6429), + [anon_sym_DOT2] = ACTIONS(6429), + [aux_sym__val_number_decimal_token3] = ACTIONS(6429), + [aux_sym__val_number_token1] = ACTIONS(6429), + [aux_sym__val_number_token2] = ACTIONS(6429), + [aux_sym__val_number_token3] = ACTIONS(6429), + [aux_sym__val_number_token4] = ACTIONS(6429), + [aux_sym__val_number_token5] = ACTIONS(6429), + [aux_sym__val_number_token6] = ACTIONS(6429), + [anon_sym_0b] = ACTIONS(6429), + [anon_sym_0o] = ACTIONS(6429), + [anon_sym_0x] = ACTIONS(6429), + [sym_val_date] = ACTIONS(6429), + [anon_sym_DQUOTE] = ACTIONS(6429), + [sym__str_single_quotes] = ACTIONS(6429), + [sym__str_back_ticks] = ACTIONS(6429), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6429), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6429), + [anon_sym_CARET] = ACTIONS(6429), + [anon_sym_POUND] = ACTIONS(113), }, - [2282] = { - [sym_expr_unary] = STATE(546), - [sym__expr_unary_minus] = STATE(542), - [sym_expr_binary] = STATE(546), - [sym__expr_binary_expression] = STATE(570), - [sym_expr_parenthesized] = STATE(546), - [sym__val_range] = STATE(10721), - [sym__value] = STATE(546), - [sym_val_nothing] = STATE(597), - [sym_val_bool] = STATE(484), - [sym_val_variable] = STATE(597), - [sym__var] = STATE(382), - [sym_val_number] = STATE(597), - [sym__val_number_decimal] = STATE(273), - [sym__val_number] = STATE(600), - [sym_val_duration] = STATE(597), - [sym_val_filesize] = STATE(597), - [sym_val_binary] = STATE(597), - [sym_val_string] = STATE(597), - [sym__str_double_quotes] = STATE(598), - [sym_val_interpolated] = STATE(597), - [sym__inter_single_quotes] = STATE(564), - [sym__inter_double_quotes] = STATE(580), - [sym_val_list] = STATE(597), - [sym_val_record] = STATE(597), - [sym_val_table] = STATE(597), - [sym_val_closure] = STATE(597), - [sym_unquoted] = STATE(552), - [sym__unquoted_anonymous_prefix] = STATE(10843), - [sym_comment] = STATE(2282), - [anon_sym_LBRACK] = ACTIONS(4327), - [anon_sym_LPAREN] = ACTIONS(5977), - [anon_sym_DOLLAR] = ACTIONS(5979), - [anon_sym_DASH] = ACTIONS(4333), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_DOT_DOT] = ACTIONS(5981), - [anon_sym_not] = ACTIONS(4339), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5983), - [anon_sym_DOT_DOT_LT] = ACTIONS(5983), - [anon_sym_null] = ACTIONS(4343), - [anon_sym_true] = ACTIONS(4345), - [anon_sym_false] = ACTIONS(4345), - [aux_sym__val_number_decimal_token1] = ACTIONS(4347), - [aux_sym__val_number_decimal_token2] = ACTIONS(4349), - [anon_sym_DOT2] = ACTIONS(5985), - [aux_sym__val_number_decimal_token3] = ACTIONS(4353), - [aux_sym__val_number_token1] = ACTIONS(4355), - [aux_sym__val_number_token2] = ACTIONS(4355), - [aux_sym__val_number_token3] = ACTIONS(4355), - [aux_sym__val_number_token4] = ACTIONS(5987), - [aux_sym__val_number_token5] = ACTIONS(5987), - [aux_sym__val_number_token6] = ACTIONS(5987), - [anon_sym_0b] = ACTIONS(4359), - [anon_sym_0o] = ACTIONS(4361), - [anon_sym_0x] = ACTIONS(4361), - [sym_val_date] = ACTIONS(4363), - [anon_sym_DQUOTE] = ACTIONS(4365), - [sym__str_single_quotes] = ACTIONS(4367), - [sym__str_back_ticks] = ACTIONS(4367), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4369), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4371), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5989), + [2553] = { + [sym_ctrl_if] = STATE(8593), + [sym_block] = STATE(8594), + [sym__expression] = STATE(8594), + [sym_expr_unary] = STATE(5709), + [sym__expr_unary_minus] = STATE(5748), + [sym_expr_binary] = STATE(5709), + [sym__expr_binary_expression] = STATE(6388), + [sym_expr_parenthesized] = STATE(5005), + [sym_val_range] = STATE(8000), + [sym__value] = STATE(5709), + [sym_val_nothing] = STATE(5711), + [sym_val_bool] = STATE(5711), + [sym_val_variable] = STATE(4804), + [sym__var] = STATE(4386), + [sym_val_number] = STATE(5711), + [sym__val_number_decimal] = STATE(3982), + [sym__val_number] = STATE(4833), + [sym_val_duration] = STATE(5711), + [sym_val_filesize] = STATE(5711), + [sym_val_binary] = STATE(5711), + [sym_val_string] = STATE(5711), + [sym__str_double_quotes] = STATE(5408), + [sym_val_interpolated] = STATE(5711), + [sym__inter_single_quotes] = STATE(5684), + [sym__inter_double_quotes] = STATE(5695), + [sym_val_list] = STATE(5711), + [sym_val_record] = STATE(5711), + [sym_val_table] = STATE(5711), + [sym_val_closure] = STATE(5711), + [sym_command] = STATE(8594), + [sym_comment] = STATE(2553), + [sym_cmd_identifier] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_if] = ACTIONS(405), + [anon_sym_LBRACE] = ACTIONS(6499), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_not] = ACTIONS(191), + [anon_sym_DOT_DOT_EQ] = ACTIONS(193), + [anon_sym_DOT_DOT_LT] = ACTIONS(193), + [anon_sym_null] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [aux_sym__val_number_decimal_token1] = ACTIONS(199), + [aux_sym__val_number_decimal_token2] = ACTIONS(201), + [anon_sym_DOT2] = ACTIONS(203), + [aux_sym__val_number_decimal_token3] = ACTIONS(205), + [aux_sym__val_number_token1] = ACTIONS(207), + [aux_sym__val_number_token2] = ACTIONS(207), + [aux_sym__val_number_token3] = ACTIONS(207), + [aux_sym__val_number_token4] = ACTIONS(209), + [aux_sym__val_number_token5] = ACTIONS(207), + [aux_sym__val_number_token6] = ACTIONS(209), + [anon_sym_0b] = ACTIONS(211), + [anon_sym_0o] = ACTIONS(213), + [anon_sym_0x] = ACTIONS(213), + [sym_val_date] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym__str_single_quotes] = ACTIONS(219), + [sym__str_back_ticks] = ACTIONS(219), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(227), [anon_sym_POUND] = ACTIONS(3), }, - [2283] = { - [sym_expr_unary] = STATE(546), - [sym__expr_unary_minus] = STATE(542), - [sym_expr_binary] = STATE(546), - [sym__expr_binary_expression] = STATE(571), - [sym_expr_parenthesized] = STATE(546), - [sym__val_range] = STATE(10721), - [sym__value] = STATE(546), - [sym_val_nothing] = STATE(597), - [sym_val_bool] = STATE(484), - [sym_val_variable] = STATE(597), - [sym__var] = STATE(382), - [sym_val_number] = STATE(597), - [sym__val_number_decimal] = STATE(273), - [sym__val_number] = STATE(600), - [sym_val_duration] = STATE(597), - [sym_val_filesize] = STATE(597), - [sym_val_binary] = STATE(597), - [sym_val_string] = STATE(597), - [sym__str_double_quotes] = STATE(598), - [sym_val_interpolated] = STATE(597), - [sym__inter_single_quotes] = STATE(564), - [sym__inter_double_quotes] = STATE(580), - [sym_val_list] = STATE(597), - [sym_val_record] = STATE(597), - [sym_val_table] = STATE(597), - [sym_val_closure] = STATE(597), - [sym_unquoted] = STATE(553), - [sym__unquoted_anonymous_prefix] = STATE(10843), - [sym_comment] = STATE(2283), - [anon_sym_LBRACK] = ACTIONS(4327), - [anon_sym_LPAREN] = ACTIONS(5977), - [anon_sym_DOLLAR] = ACTIONS(5979), - [anon_sym_DASH] = ACTIONS(4333), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_DOT_DOT] = ACTIONS(5981), - [anon_sym_not] = ACTIONS(4339), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5983), - [anon_sym_DOT_DOT_LT] = ACTIONS(5983), - [anon_sym_null] = ACTIONS(4343), - [anon_sym_true] = ACTIONS(4345), - [anon_sym_false] = ACTIONS(4345), - [aux_sym__val_number_decimal_token1] = ACTIONS(4347), - [aux_sym__val_number_decimal_token2] = ACTIONS(4349), - [anon_sym_DOT2] = ACTIONS(5985), - [aux_sym__val_number_decimal_token3] = ACTIONS(4353), - [aux_sym__val_number_token1] = ACTIONS(4355), - [aux_sym__val_number_token2] = ACTIONS(4355), - [aux_sym__val_number_token3] = ACTIONS(4355), - [aux_sym__val_number_token4] = ACTIONS(5987), - [aux_sym__val_number_token5] = ACTIONS(5987), - [aux_sym__val_number_token6] = ACTIONS(5987), - [anon_sym_0b] = ACTIONS(4359), - [anon_sym_0o] = ACTIONS(4361), - [anon_sym_0x] = ACTIONS(4361), - [sym_val_date] = ACTIONS(4363), - [anon_sym_DQUOTE] = ACTIONS(4365), - [sym__str_single_quotes] = ACTIONS(4367), - [sym__str_back_ticks] = ACTIONS(4367), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4369), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4371), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5989), - [anon_sym_POUND] = ACTIONS(3), + [2554] = { + [sym_comment] = STATE(2554), + [ts_builtin_sym_end] = ACTIONS(1145), + [anon_sym_SEMI] = ACTIONS(1143), + [anon_sym_LF] = ACTIONS(1145), + [anon_sym_LBRACK] = ACTIONS(1143), + [anon_sym_LPAREN] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1143), + [anon_sym_DOLLAR] = ACTIONS(1143), + [anon_sym_GT] = ACTIONS(1143), + [anon_sym_DASH_DASH] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_LBRACE] = ACTIONS(1143), + [anon_sym_DOT_DOT] = ACTIONS(1143), + [anon_sym_STAR] = ACTIONS(1143), + [anon_sym_STAR_STAR] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(1143), + [anon_sym_mod] = ACTIONS(1143), + [anon_sym_SLASH_SLASH] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_bit_DASHshl] = ACTIONS(1143), + [anon_sym_bit_DASHshr] = ACTIONS(1143), + [anon_sym_EQ_EQ] = ACTIONS(1143), + [anon_sym_BANG_EQ] = ACTIONS(1143), + [anon_sym_LT2] = ACTIONS(1143), + [anon_sym_LT_EQ] = ACTIONS(1143), + [anon_sym_GT_EQ] = ACTIONS(1143), + [anon_sym_not_DASHin] = ACTIONS(1143), + [anon_sym_starts_DASHwith] = ACTIONS(1143), + [anon_sym_ends_DASHwith] = ACTIONS(1143), + [anon_sym_EQ_TILDE] = ACTIONS(1143), + [anon_sym_BANG_TILDE] = ACTIONS(1143), + [anon_sym_bit_DASHand] = ACTIONS(1143), + [anon_sym_bit_DASHxor] = ACTIONS(1143), + [anon_sym_bit_DASHor] = ACTIONS(1143), + [anon_sym_and] = ACTIONS(1143), + [anon_sym_xor] = ACTIONS(1143), + [anon_sym_or] = ACTIONS(1143), + [anon_sym_not] = ACTIONS(1143), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1143), + [anon_sym_DOT_DOT_LT] = ACTIONS(1143), + [anon_sym_null] = ACTIONS(1143), + [anon_sym_true] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [aux_sym__val_number_decimal_token1] = ACTIONS(1143), + [aux_sym__val_number_decimal_token2] = ACTIONS(1143), + [anon_sym_DOT2] = ACTIONS(1143), + [aux_sym__val_number_decimal_token3] = ACTIONS(1143), + [aux_sym__val_number_token1] = ACTIONS(1143), + [aux_sym__val_number_token2] = ACTIONS(1143), + [aux_sym__val_number_token3] = ACTIONS(1143), + [aux_sym__val_number_token4] = ACTIONS(1143), + [aux_sym__val_number_token5] = ACTIONS(1143), + [aux_sym__val_number_token6] = ACTIONS(1143), + [anon_sym_0b] = ACTIONS(1143), + [anon_sym_0o] = ACTIONS(1143), + [anon_sym_0x] = ACTIONS(1143), + [anon_sym_LBRACK2] = ACTIONS(6537), + [sym_val_date] = ACTIONS(1143), + [anon_sym_DQUOTE] = ACTIONS(1143), + [sym__str_single_quotes] = ACTIONS(1143), + [sym__str_back_ticks] = ACTIONS(1143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1143), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1143), + [anon_sym_POUND] = ACTIONS(113), }, - [2284] = { - [sym_expr_unary] = STATE(546), - [sym__expr_unary_minus] = STATE(542), - [sym_expr_binary] = STATE(546), - [sym__expr_binary_expression] = STATE(610), - [sym_expr_parenthesized] = STATE(546), - [sym__val_range] = STATE(10721), - [sym__value] = STATE(546), - [sym_val_nothing] = STATE(597), - [sym_val_bool] = STATE(484), - [sym_val_variable] = STATE(597), - [sym__var] = STATE(382), - [sym_val_number] = STATE(597), - [sym__val_number_decimal] = STATE(273), - [sym__val_number] = STATE(600), - [sym_val_duration] = STATE(597), - [sym_val_filesize] = STATE(597), - [sym_val_binary] = STATE(597), - [sym_val_string] = STATE(597), - [sym__str_double_quotes] = STATE(598), - [sym_val_interpolated] = STATE(597), - [sym__inter_single_quotes] = STATE(564), - [sym__inter_double_quotes] = STATE(580), - [sym_val_list] = STATE(597), - [sym_val_record] = STATE(597), - [sym_val_table] = STATE(597), - [sym_val_closure] = STATE(597), - [sym_unquoted] = STATE(554), - [sym__unquoted_anonymous_prefix] = STATE(10843), - [sym_comment] = STATE(2284), - [anon_sym_LBRACK] = ACTIONS(4327), - [anon_sym_LPAREN] = ACTIONS(5977), - [anon_sym_DOLLAR] = ACTIONS(5979), - [anon_sym_DASH] = ACTIONS(4333), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_DOT_DOT] = ACTIONS(5981), - [anon_sym_not] = ACTIONS(4339), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5983), - [anon_sym_DOT_DOT_LT] = ACTIONS(5983), - [anon_sym_null] = ACTIONS(4343), - [anon_sym_true] = ACTIONS(4345), - [anon_sym_false] = ACTIONS(4345), - [aux_sym__val_number_decimal_token1] = ACTIONS(4347), - [aux_sym__val_number_decimal_token2] = ACTIONS(4349), - [anon_sym_DOT2] = ACTIONS(5985), - [aux_sym__val_number_decimal_token3] = ACTIONS(4353), - [aux_sym__val_number_token1] = ACTIONS(4355), - [aux_sym__val_number_token2] = ACTIONS(4355), - [aux_sym__val_number_token3] = ACTIONS(4355), - [aux_sym__val_number_token4] = ACTIONS(5987), - [aux_sym__val_number_token5] = ACTIONS(5987), - [aux_sym__val_number_token6] = ACTIONS(5987), - [anon_sym_0b] = ACTIONS(4359), - [anon_sym_0o] = ACTIONS(4361), - [anon_sym_0x] = ACTIONS(4361), - [sym_val_date] = ACTIONS(4363), - [anon_sym_DQUOTE] = ACTIONS(4365), - [sym__str_single_quotes] = ACTIONS(4367), - [sym__str_back_ticks] = ACTIONS(4367), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4369), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4371), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5989), - [anon_sym_POUND] = ACTIONS(3), + [2555] = { + [sym_comment] = STATE(2555), + [anon_sym_SEMI] = ACTIONS(938), + [anon_sym_LF] = ACTIONS(940), + [anon_sym_LBRACK] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(938), + [anon_sym_RPAREN] = ACTIONS(938), + [anon_sym_PIPE] = ACTIONS(938), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_in] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_RBRACE] = ACTIONS(938), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_STAR_STAR] = ACTIONS(938), + [anon_sym_PLUS_PLUS] = ACTIONS(938), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(938), + [anon_sym_SLASH_SLASH] = ACTIONS(938), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_bit_DASHshl] = ACTIONS(938), + [anon_sym_bit_DASHshr] = ACTIONS(938), + [anon_sym_EQ_EQ] = ACTIONS(938), + [anon_sym_BANG_EQ] = ACTIONS(938), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(938), + [anon_sym_GT_EQ] = ACTIONS(938), + [anon_sym_not_DASHin] = ACTIONS(938), + [anon_sym_starts_DASHwith] = ACTIONS(938), + [anon_sym_ends_DASHwith] = ACTIONS(938), + [anon_sym_EQ_TILDE] = ACTIONS(938), + [anon_sym_BANG_TILDE] = ACTIONS(938), + [anon_sym_bit_DASHand] = ACTIONS(938), + [anon_sym_bit_DASHxor] = ACTIONS(938), + [anon_sym_bit_DASHor] = ACTIONS(938), + [anon_sym_and] = ACTIONS(938), + [anon_sym_xor] = ACTIONS(938), + [anon_sym_or] = ACTIONS(938), + [anon_sym_not] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ] = ACTIONS(938), + [anon_sym_DOT_DOT_LT] = ACTIONS(938), + [anon_sym_null] = ACTIONS(938), + [anon_sym_true] = ACTIONS(938), + [anon_sym_false] = ACTIONS(938), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(938), + [anon_sym_DOT2] = ACTIONS(938), + [aux_sym__val_number_decimal_token3] = ACTIONS(938), + [aux_sym__val_number_token1] = ACTIONS(938), + [aux_sym__val_number_token2] = ACTIONS(938), + [aux_sym__val_number_token3] = ACTIONS(938), + [aux_sym__val_number_token4] = ACTIONS(938), + [aux_sym__val_number_token5] = ACTIONS(938), + [aux_sym__val_number_token6] = ACTIONS(938), + [anon_sym_0b] = ACTIONS(938), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym__str_single_quotes] = ACTIONS(938), + [sym__str_back_ticks] = ACTIONS(938), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(938), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(938), + [anon_sym_POUND] = ACTIONS(113), }, - [2285] = { - [sym_expr_unary] = STATE(546), - [sym__expr_unary_minus] = STATE(542), - [sym_expr_binary] = STATE(546), - [sym__expr_binary_expression] = STATE(573), - [sym_expr_parenthesized] = STATE(546), - [sym__val_range] = STATE(10721), - [sym__value] = STATE(546), - [sym_val_nothing] = STATE(597), - [sym_val_bool] = STATE(484), - [sym_val_variable] = STATE(597), - [sym__var] = STATE(382), - [sym_val_number] = STATE(597), - [sym__val_number_decimal] = STATE(273), - [sym__val_number] = STATE(600), - [sym_val_duration] = STATE(597), - [sym_val_filesize] = STATE(597), - [sym_val_binary] = STATE(597), - [sym_val_string] = STATE(597), - [sym__str_double_quotes] = STATE(598), - [sym_val_interpolated] = STATE(597), - [sym__inter_single_quotes] = STATE(564), - [sym__inter_double_quotes] = STATE(580), - [sym_val_list] = STATE(597), - [sym_val_record] = STATE(597), - [sym_val_table] = STATE(597), - [sym_val_closure] = STATE(597), - [sym_unquoted] = STATE(555), - [sym__unquoted_anonymous_prefix] = STATE(10843), - [sym_comment] = STATE(2285), - [anon_sym_LBRACK] = ACTIONS(4327), - [anon_sym_LPAREN] = ACTIONS(5977), - [anon_sym_DOLLAR] = ACTIONS(5979), - [anon_sym_DASH] = ACTIONS(4333), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_DOT_DOT] = ACTIONS(5981), - [anon_sym_not] = ACTIONS(4339), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5983), - [anon_sym_DOT_DOT_LT] = ACTIONS(5983), - [anon_sym_null] = ACTIONS(4343), - [anon_sym_true] = ACTIONS(4345), - [anon_sym_false] = ACTIONS(4345), - [aux_sym__val_number_decimal_token1] = ACTIONS(4347), - [aux_sym__val_number_decimal_token2] = ACTIONS(4349), - [anon_sym_DOT2] = ACTIONS(5985), - [aux_sym__val_number_decimal_token3] = ACTIONS(4353), - [aux_sym__val_number_token1] = ACTIONS(4355), - [aux_sym__val_number_token2] = ACTIONS(4355), - [aux_sym__val_number_token3] = ACTIONS(4355), - [aux_sym__val_number_token4] = ACTIONS(5987), - [aux_sym__val_number_token5] = ACTIONS(5987), - [aux_sym__val_number_token6] = ACTIONS(5987), - [anon_sym_0b] = ACTIONS(4359), - [anon_sym_0o] = ACTIONS(4361), - [anon_sym_0x] = ACTIONS(4361), - [sym_val_date] = ACTIONS(4363), - [anon_sym_DQUOTE] = ACTIONS(4365), - [sym__str_single_quotes] = ACTIONS(4367), - [sym__str_back_ticks] = ACTIONS(4367), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4369), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4371), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5989), - [anon_sym_POUND] = ACTIONS(3), + [2556] = { + [sym_comment] = STATE(2556), + [anon_sym_SEMI] = ACTIONS(1089), + [anon_sym_LF] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1089), + [anon_sym_RPAREN] = ACTIONS(1089), + [anon_sym_PIPE] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1089), + [anon_sym_GT] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_DASH] = ACTIONS(1089), + [anon_sym_in] = ACTIONS(1089), + [anon_sym_LBRACE] = ACTIONS(1089), + [anon_sym_RBRACE] = ACTIONS(1089), + [anon_sym_DOT_DOT] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_STAR_STAR] = ACTIONS(1089), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_SLASH] = ACTIONS(1089), + [anon_sym_mod] = ACTIONS(1089), + [anon_sym_SLASH_SLASH] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1089), + [anon_sym_bit_DASHshl] = ACTIONS(1089), + [anon_sym_bit_DASHshr] = ACTIONS(1089), + [anon_sym_EQ_EQ] = ACTIONS(1089), + [anon_sym_BANG_EQ] = ACTIONS(1089), + [anon_sym_LT2] = ACTIONS(1089), + [anon_sym_LT_EQ] = ACTIONS(1089), + [anon_sym_GT_EQ] = ACTIONS(1089), + [anon_sym_not_DASHin] = ACTIONS(1089), + [anon_sym_starts_DASHwith] = ACTIONS(1089), + [anon_sym_ends_DASHwith] = ACTIONS(1089), + [anon_sym_EQ_TILDE] = ACTIONS(1089), + [anon_sym_BANG_TILDE] = ACTIONS(1089), + [anon_sym_bit_DASHand] = ACTIONS(1089), + [anon_sym_bit_DASHxor] = ACTIONS(1089), + [anon_sym_bit_DASHor] = ACTIONS(1089), + [anon_sym_and] = ACTIONS(1089), + [anon_sym_xor] = ACTIONS(1089), + [anon_sym_or] = ACTIONS(1089), + [anon_sym_not] = ACTIONS(1089), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_DOT_DOT_LT] = ACTIONS(1089), + [anon_sym_null] = ACTIONS(1089), + [anon_sym_true] = ACTIONS(1089), + [anon_sym_false] = ACTIONS(1089), + [aux_sym__val_number_decimal_token1] = ACTIONS(1089), + [aux_sym__val_number_decimal_token2] = ACTIONS(1089), + [anon_sym_DOT2] = ACTIONS(1089), + [aux_sym__val_number_decimal_token3] = ACTIONS(1089), + [aux_sym__val_number_token1] = ACTIONS(1089), + [aux_sym__val_number_token2] = ACTIONS(1089), + [aux_sym__val_number_token3] = ACTIONS(1089), + [aux_sym__val_number_token4] = ACTIONS(1089), + [aux_sym__val_number_token5] = ACTIONS(1089), + [aux_sym__val_number_token6] = ACTIONS(1089), + [anon_sym_0b] = ACTIONS(1089), + [anon_sym_0o] = ACTIONS(1089), + [anon_sym_0x] = ACTIONS(1089), + [sym_val_date] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1089), + [sym__str_single_quotes] = ACTIONS(1089), + [sym__str_back_ticks] = ACTIONS(1089), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1089), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1089), + [anon_sym_POUND] = ACTIONS(113), }, - [2286] = { - [sym_expr_unary] = STATE(546), - [sym__expr_unary_minus] = STATE(542), - [sym_expr_binary] = STATE(546), - [sym__expr_binary_expression] = STATE(575), - [sym_expr_parenthesized] = STATE(546), - [sym__val_range] = STATE(10721), - [sym__value] = STATE(546), - [sym_val_nothing] = STATE(597), - [sym_val_bool] = STATE(484), - [sym_val_variable] = STATE(597), - [sym__var] = STATE(382), - [sym_val_number] = STATE(597), - [sym__val_number_decimal] = STATE(273), - [sym__val_number] = STATE(600), - [sym_val_duration] = STATE(597), - [sym_val_filesize] = STATE(597), - [sym_val_binary] = STATE(597), - [sym_val_string] = STATE(597), - [sym__str_double_quotes] = STATE(598), - [sym_val_interpolated] = STATE(597), - [sym__inter_single_quotes] = STATE(564), - [sym__inter_double_quotes] = STATE(580), - [sym_val_list] = STATE(597), - [sym_val_record] = STATE(597), - [sym_val_table] = STATE(597), - [sym_val_closure] = STATE(597), - [sym_unquoted] = STATE(556), - [sym__unquoted_anonymous_prefix] = STATE(10843), - [sym_comment] = STATE(2286), - [anon_sym_LBRACK] = ACTIONS(4327), - [anon_sym_LPAREN] = ACTIONS(5977), - [anon_sym_DOLLAR] = ACTIONS(5979), - [anon_sym_DASH] = ACTIONS(4333), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_DOT_DOT] = ACTIONS(5981), - [anon_sym_not] = ACTIONS(4339), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5983), - [anon_sym_DOT_DOT_LT] = ACTIONS(5983), - [anon_sym_null] = ACTIONS(4343), - [anon_sym_true] = ACTIONS(4345), - [anon_sym_false] = ACTIONS(4345), - [aux_sym__val_number_decimal_token1] = ACTIONS(4347), - [aux_sym__val_number_decimal_token2] = ACTIONS(4349), - [anon_sym_DOT2] = ACTIONS(5985), - [aux_sym__val_number_decimal_token3] = ACTIONS(4353), - [aux_sym__val_number_token1] = ACTIONS(4355), - [aux_sym__val_number_token2] = ACTIONS(4355), - [aux_sym__val_number_token3] = ACTIONS(4355), - [aux_sym__val_number_token4] = ACTIONS(5987), - [aux_sym__val_number_token5] = ACTIONS(5987), - [aux_sym__val_number_token6] = ACTIONS(5987), - [anon_sym_0b] = ACTIONS(4359), - [anon_sym_0o] = ACTIONS(4361), - [anon_sym_0x] = ACTIONS(4361), - [sym_val_date] = ACTIONS(4363), - [anon_sym_DQUOTE] = ACTIONS(4365), - [sym__str_single_quotes] = ACTIONS(4367), - [sym__str_back_ticks] = ACTIONS(4367), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4369), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4371), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5989), - [anon_sym_POUND] = ACTIONS(3), + [2557] = { + [sym_comment] = STATE(2557), + [anon_sym_SEMI] = ACTIONS(1225), + [anon_sym_LF] = ACTIONS(1227), + [anon_sym_LBRACK] = ACTIONS(1225), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_RPAREN] = ACTIONS(1225), + [anon_sym_PIPE] = ACTIONS(1225), + [anon_sym_DOLLAR] = ACTIONS(1225), + [anon_sym_GT] = ACTIONS(1225), + [anon_sym_DASH_DASH] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_in] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_RBRACE] = ACTIONS(1225), + [anon_sym_DOT_DOT] = ACTIONS(1225), + [anon_sym_STAR] = ACTIONS(1225), + [anon_sym_STAR_STAR] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(1225), + [anon_sym_mod] = ACTIONS(1225), + [anon_sym_SLASH_SLASH] = ACTIONS(1225), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_bit_DASHshl] = ACTIONS(1225), + [anon_sym_bit_DASHshr] = ACTIONS(1225), + [anon_sym_EQ_EQ] = ACTIONS(1225), + [anon_sym_BANG_EQ] = ACTIONS(1225), + [anon_sym_LT2] = ACTIONS(1225), + [anon_sym_LT_EQ] = ACTIONS(1225), + [anon_sym_GT_EQ] = ACTIONS(1225), + [anon_sym_not_DASHin] = ACTIONS(1225), + [anon_sym_starts_DASHwith] = ACTIONS(1225), + [anon_sym_ends_DASHwith] = ACTIONS(1225), + [anon_sym_EQ_TILDE] = ACTIONS(1225), + [anon_sym_BANG_TILDE] = ACTIONS(1225), + [anon_sym_bit_DASHand] = ACTIONS(1225), + [anon_sym_bit_DASHxor] = ACTIONS(1225), + [anon_sym_bit_DASHor] = ACTIONS(1225), + [anon_sym_and] = ACTIONS(1225), + [anon_sym_xor] = ACTIONS(1225), + [anon_sym_or] = ACTIONS(1225), + [anon_sym_not] = ACTIONS(1225), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1225), + [anon_sym_DOT_DOT_LT] = ACTIONS(1225), + [anon_sym_null] = ACTIONS(1225), + [anon_sym_true] = ACTIONS(1225), + [anon_sym_false] = ACTIONS(1225), + [aux_sym__val_number_decimal_token1] = ACTIONS(1225), + [aux_sym__val_number_decimal_token2] = ACTIONS(1225), + [anon_sym_DOT2] = ACTIONS(1225), + [aux_sym__val_number_decimal_token3] = ACTIONS(1225), + [aux_sym__val_number_token1] = ACTIONS(1225), + [aux_sym__val_number_token2] = ACTIONS(1225), + [aux_sym__val_number_token3] = ACTIONS(1225), + [aux_sym__val_number_token4] = ACTIONS(1225), + [aux_sym__val_number_token5] = ACTIONS(1225), + [aux_sym__val_number_token6] = ACTIONS(1225), + [anon_sym_0b] = ACTIONS(1225), + [anon_sym_0o] = ACTIONS(1225), + [anon_sym_0x] = ACTIONS(1225), + [sym_val_date] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1225), + [sym__str_single_quotes] = ACTIONS(1225), + [sym__str_back_ticks] = ACTIONS(1225), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1225), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1225), + [anon_sym_POUND] = ACTIONS(113), }, - [2287] = { - [sym_expr_unary] = STATE(546), - [sym__expr_unary_minus] = STATE(542), - [sym_expr_binary] = STATE(546), - [sym__expr_binary_expression] = STATE(576), - [sym_expr_parenthesized] = STATE(546), - [sym__val_range] = STATE(10721), - [sym__value] = STATE(546), - [sym_val_nothing] = STATE(597), - [sym_val_bool] = STATE(484), - [sym_val_variable] = STATE(597), - [sym__var] = STATE(382), - [sym_val_number] = STATE(597), - [sym__val_number_decimal] = STATE(273), - [sym__val_number] = STATE(600), - [sym_val_duration] = STATE(597), - [sym_val_filesize] = STATE(597), - [sym_val_binary] = STATE(597), - [sym_val_string] = STATE(597), - [sym__str_double_quotes] = STATE(598), - [sym_val_interpolated] = STATE(597), - [sym__inter_single_quotes] = STATE(564), - [sym__inter_double_quotes] = STATE(580), - [sym_val_list] = STATE(597), - [sym_val_record] = STATE(597), - [sym_val_table] = STATE(597), - [sym_val_closure] = STATE(597), - [sym_unquoted] = STATE(557), - [sym__unquoted_anonymous_prefix] = STATE(10843), - [sym_comment] = STATE(2287), - [anon_sym_LBRACK] = ACTIONS(4327), - [anon_sym_LPAREN] = ACTIONS(5977), - [anon_sym_DOLLAR] = ACTIONS(5979), - [anon_sym_DASH] = ACTIONS(4333), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_DOT_DOT] = ACTIONS(5981), - [anon_sym_not] = ACTIONS(4339), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5983), - [anon_sym_DOT_DOT_LT] = ACTIONS(5983), - [anon_sym_null] = ACTIONS(4343), - [anon_sym_true] = ACTIONS(4345), - [anon_sym_false] = ACTIONS(4345), - [aux_sym__val_number_decimal_token1] = ACTIONS(4347), - [aux_sym__val_number_decimal_token2] = ACTIONS(4349), - [anon_sym_DOT2] = ACTIONS(5985), - [aux_sym__val_number_decimal_token3] = ACTIONS(4353), - [aux_sym__val_number_token1] = ACTIONS(4355), - [aux_sym__val_number_token2] = ACTIONS(4355), - [aux_sym__val_number_token3] = ACTIONS(4355), - [aux_sym__val_number_token4] = ACTIONS(5987), - [aux_sym__val_number_token5] = ACTIONS(5987), - [aux_sym__val_number_token6] = ACTIONS(5987), - [anon_sym_0b] = ACTIONS(4359), - [anon_sym_0o] = ACTIONS(4361), - [anon_sym_0x] = ACTIONS(4361), - [sym_val_date] = ACTIONS(4363), - [anon_sym_DQUOTE] = ACTIONS(4365), - [sym__str_single_quotes] = ACTIONS(4367), - [sym__str_back_ticks] = ACTIONS(4367), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4369), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4371), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5989), - [anon_sym_POUND] = ACTIONS(3), + [2558] = { + [sym_comment] = STATE(2558), + [anon_sym_SEMI] = ACTIONS(1229), + [anon_sym_LF] = ACTIONS(1231), + [anon_sym_LBRACK] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_RPAREN] = ACTIONS(1229), + [anon_sym_PIPE] = ACTIONS(1229), + [anon_sym_DOLLAR] = ACTIONS(1229), + [anon_sym_GT] = ACTIONS(1229), + [anon_sym_DASH_DASH] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_in] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1229), + [anon_sym_RBRACE] = ACTIONS(1229), + [anon_sym_DOT_DOT] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1229), + [anon_sym_STAR_STAR] = ACTIONS(1229), + [anon_sym_PLUS_PLUS] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1229), + [anon_sym_mod] = ACTIONS(1229), + [anon_sym_SLASH_SLASH] = ACTIONS(1229), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_bit_DASHshl] = ACTIONS(1229), + [anon_sym_bit_DASHshr] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1229), + [anon_sym_LT2] = ACTIONS(1229), + [anon_sym_LT_EQ] = ACTIONS(1229), + [anon_sym_GT_EQ] = ACTIONS(1229), + [anon_sym_not_DASHin] = ACTIONS(1229), + [anon_sym_starts_DASHwith] = ACTIONS(1229), + [anon_sym_ends_DASHwith] = ACTIONS(1229), + [anon_sym_EQ_TILDE] = ACTIONS(1229), + [anon_sym_BANG_TILDE] = ACTIONS(1229), + [anon_sym_bit_DASHand] = ACTIONS(1229), + [anon_sym_bit_DASHxor] = ACTIONS(1229), + [anon_sym_bit_DASHor] = ACTIONS(1229), + [anon_sym_and] = ACTIONS(1229), + [anon_sym_xor] = ACTIONS(1229), + [anon_sym_or] = ACTIONS(1229), + [anon_sym_not] = ACTIONS(1229), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1229), + [anon_sym_DOT_DOT_LT] = ACTIONS(1229), + [anon_sym_null] = ACTIONS(1229), + [anon_sym_true] = ACTIONS(1229), + [anon_sym_false] = ACTIONS(1229), + [aux_sym__val_number_decimal_token1] = ACTIONS(1229), + [aux_sym__val_number_decimal_token2] = ACTIONS(1229), + [anon_sym_DOT2] = ACTIONS(1229), + [aux_sym__val_number_decimal_token3] = ACTIONS(1229), + [aux_sym__val_number_token1] = ACTIONS(1229), + [aux_sym__val_number_token2] = ACTIONS(1229), + [aux_sym__val_number_token3] = ACTIONS(1229), + [aux_sym__val_number_token4] = ACTIONS(1229), + [aux_sym__val_number_token5] = ACTIONS(1229), + [aux_sym__val_number_token6] = ACTIONS(1229), + [anon_sym_0b] = ACTIONS(1229), + [anon_sym_0o] = ACTIONS(1229), + [anon_sym_0x] = ACTIONS(1229), + [sym_val_date] = ACTIONS(1229), + [anon_sym_DQUOTE] = ACTIONS(1229), + [sym__str_single_quotes] = ACTIONS(1229), + [sym__str_back_ticks] = ACTIONS(1229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1229), + [anon_sym_POUND] = ACTIONS(113), }, - [2288] = { - [sym_expr_unary] = STATE(546), - [sym__expr_unary_minus] = STATE(542), - [sym_expr_binary] = STATE(546), - [sym__expr_binary_expression] = STATE(577), - [sym_expr_parenthesized] = STATE(546), - [sym__val_range] = STATE(10721), - [sym__value] = STATE(546), - [sym_val_nothing] = STATE(597), - [sym_val_bool] = STATE(484), - [sym_val_variable] = STATE(597), - [sym__var] = STATE(382), - [sym_val_number] = STATE(597), - [sym__val_number_decimal] = STATE(273), - [sym__val_number] = STATE(600), - [sym_val_duration] = STATE(597), - [sym_val_filesize] = STATE(597), - [sym_val_binary] = STATE(597), - [sym_val_string] = STATE(597), - [sym__str_double_quotes] = STATE(598), - [sym_val_interpolated] = STATE(597), - [sym__inter_single_quotes] = STATE(564), - [sym__inter_double_quotes] = STATE(580), - [sym_val_list] = STATE(597), - [sym_val_record] = STATE(597), - [sym_val_table] = STATE(597), - [sym_val_closure] = STATE(597), - [sym_unquoted] = STATE(558), - [sym__unquoted_anonymous_prefix] = STATE(10843), - [sym_comment] = STATE(2288), - [anon_sym_LBRACK] = ACTIONS(4327), - [anon_sym_LPAREN] = ACTIONS(5977), - [anon_sym_DOLLAR] = ACTIONS(5979), - [anon_sym_DASH] = ACTIONS(4333), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_DOT_DOT] = ACTIONS(5981), - [anon_sym_not] = ACTIONS(4339), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5983), - [anon_sym_DOT_DOT_LT] = ACTIONS(5983), - [anon_sym_null] = ACTIONS(4343), - [anon_sym_true] = ACTIONS(4345), - [anon_sym_false] = ACTIONS(4345), - [aux_sym__val_number_decimal_token1] = ACTIONS(4347), - [aux_sym__val_number_decimal_token2] = ACTIONS(4349), - [anon_sym_DOT2] = ACTIONS(5985), - [aux_sym__val_number_decimal_token3] = ACTIONS(4353), - [aux_sym__val_number_token1] = ACTIONS(4355), - [aux_sym__val_number_token2] = ACTIONS(4355), - [aux_sym__val_number_token3] = ACTIONS(4355), - [aux_sym__val_number_token4] = ACTIONS(5987), - [aux_sym__val_number_token5] = ACTIONS(5987), - [aux_sym__val_number_token6] = ACTIONS(5987), - [anon_sym_0b] = ACTIONS(4359), - [anon_sym_0o] = ACTIONS(4361), - [anon_sym_0x] = ACTIONS(4361), - [sym_val_date] = ACTIONS(4363), - [anon_sym_DQUOTE] = ACTIONS(4365), - [sym__str_single_quotes] = ACTIONS(4367), - [sym__str_back_ticks] = ACTIONS(4367), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4369), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4371), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5989), - [anon_sym_POUND] = ACTIONS(3), + [2559] = { + [sym_comment] = STATE(2559), + [anon_sym_SEMI] = ACTIONS(1233), + [anon_sym_LF] = ACTIONS(1235), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(1233), + [anon_sym_RPAREN] = ACTIONS(1233), + [anon_sym_PIPE] = ACTIONS(1233), + [anon_sym_DOLLAR] = ACTIONS(1233), + [anon_sym_GT] = ACTIONS(1233), + [anon_sym_DASH_DASH] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_in] = ACTIONS(1233), + [anon_sym_LBRACE] = ACTIONS(1233), + [anon_sym_RBRACE] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1233), + [anon_sym_STAR_STAR] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1233), + [anon_sym_SLASH] = ACTIONS(1233), + [anon_sym_mod] = ACTIONS(1233), + [anon_sym_SLASH_SLASH] = ACTIONS(1233), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_bit_DASHshl] = ACTIONS(1233), + [anon_sym_bit_DASHshr] = ACTIONS(1233), + [anon_sym_EQ_EQ] = ACTIONS(1233), + [anon_sym_BANG_EQ] = ACTIONS(1233), + [anon_sym_LT2] = ACTIONS(1233), + [anon_sym_LT_EQ] = ACTIONS(1233), + [anon_sym_GT_EQ] = ACTIONS(1233), + [anon_sym_not_DASHin] = ACTIONS(1233), + [anon_sym_starts_DASHwith] = ACTIONS(1233), + [anon_sym_ends_DASHwith] = ACTIONS(1233), + [anon_sym_EQ_TILDE] = ACTIONS(1233), + [anon_sym_BANG_TILDE] = ACTIONS(1233), + [anon_sym_bit_DASHand] = ACTIONS(1233), + [anon_sym_bit_DASHxor] = ACTIONS(1233), + [anon_sym_bit_DASHor] = ACTIONS(1233), + [anon_sym_and] = ACTIONS(1233), + [anon_sym_xor] = ACTIONS(1233), + [anon_sym_or] = ACTIONS(1233), + [anon_sym_not] = ACTIONS(1233), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1233), + [anon_sym_DOT_DOT_LT] = ACTIONS(1233), + [anon_sym_null] = ACTIONS(1233), + [anon_sym_true] = ACTIONS(1233), + [anon_sym_false] = ACTIONS(1233), + [aux_sym__val_number_decimal_token1] = ACTIONS(1233), + [aux_sym__val_number_decimal_token2] = ACTIONS(1233), + [anon_sym_DOT2] = ACTIONS(1233), + [aux_sym__val_number_decimal_token3] = ACTIONS(1233), + [aux_sym__val_number_token1] = ACTIONS(1233), + [aux_sym__val_number_token2] = ACTIONS(1233), + [aux_sym__val_number_token3] = ACTIONS(1233), + [aux_sym__val_number_token4] = ACTIONS(1233), + [aux_sym__val_number_token5] = ACTIONS(1233), + [aux_sym__val_number_token6] = ACTIONS(1233), + [anon_sym_0b] = ACTIONS(1233), + [anon_sym_0o] = ACTIONS(1233), + [anon_sym_0x] = ACTIONS(1233), + [sym_val_date] = ACTIONS(1233), + [anon_sym_DQUOTE] = ACTIONS(1233), + [sym__str_single_quotes] = ACTIONS(1233), + [sym__str_back_ticks] = ACTIONS(1233), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1233), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1233), + [anon_sym_POUND] = ACTIONS(113), }, - [2289] = { - [sym_expr_unary] = STATE(546), - [sym__expr_unary_minus] = STATE(542), - [sym_expr_binary] = STATE(546), - [sym__expr_binary_expression] = STATE(578), - [sym_expr_parenthesized] = STATE(546), - [sym__val_range] = STATE(10721), - [sym__value] = STATE(546), - [sym_val_nothing] = STATE(597), - [sym_val_bool] = STATE(484), - [sym_val_variable] = STATE(597), - [sym__var] = STATE(382), - [sym_val_number] = STATE(597), - [sym__val_number_decimal] = STATE(273), - [sym__val_number] = STATE(600), - [sym_val_duration] = STATE(597), - [sym_val_filesize] = STATE(597), - [sym_val_binary] = STATE(597), - [sym_val_string] = STATE(597), - [sym__str_double_quotes] = STATE(598), - [sym_val_interpolated] = STATE(597), - [sym__inter_single_quotes] = STATE(564), - [sym__inter_double_quotes] = STATE(580), - [sym_val_list] = STATE(597), - [sym_val_record] = STATE(597), - [sym_val_table] = STATE(597), - [sym_val_closure] = STATE(597), - [sym_unquoted] = STATE(559), - [sym__unquoted_anonymous_prefix] = STATE(10843), - [sym_comment] = STATE(2289), - [anon_sym_LBRACK] = ACTIONS(4327), - [anon_sym_LPAREN] = ACTIONS(5977), - [anon_sym_DOLLAR] = ACTIONS(5979), - [anon_sym_DASH] = ACTIONS(4333), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_DOT_DOT] = ACTIONS(5981), - [anon_sym_not] = ACTIONS(4339), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5983), - [anon_sym_DOT_DOT_LT] = ACTIONS(5983), - [anon_sym_null] = ACTIONS(4343), - [anon_sym_true] = ACTIONS(4345), - [anon_sym_false] = ACTIONS(4345), - [aux_sym__val_number_decimal_token1] = ACTIONS(4347), - [aux_sym__val_number_decimal_token2] = ACTIONS(4349), - [anon_sym_DOT2] = ACTIONS(5985), - [aux_sym__val_number_decimal_token3] = ACTIONS(4353), - [aux_sym__val_number_token1] = ACTIONS(4355), - [aux_sym__val_number_token2] = ACTIONS(4355), - [aux_sym__val_number_token3] = ACTIONS(4355), - [aux_sym__val_number_token4] = ACTIONS(5987), - [aux_sym__val_number_token5] = ACTIONS(5987), - [aux_sym__val_number_token6] = ACTIONS(5987), - [anon_sym_0b] = ACTIONS(4359), - [anon_sym_0o] = ACTIONS(4361), - [anon_sym_0x] = ACTIONS(4361), - [sym_val_date] = ACTIONS(4363), - [anon_sym_DQUOTE] = ACTIONS(4365), - [sym__str_single_quotes] = ACTIONS(4367), - [sym__str_back_ticks] = ACTIONS(4367), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4369), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4371), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5989), - [anon_sym_POUND] = ACTIONS(3), + [2560] = { + [sym_comment] = STATE(2560), + [anon_sym_SEMI] = ACTIONS(1093), + [anon_sym_LF] = ACTIONS(1095), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_LPAREN] = ACTIONS(1093), + [anon_sym_RPAREN] = ACTIONS(1093), + [anon_sym_PIPE] = ACTIONS(1093), + [anon_sym_DOLLAR] = ACTIONS(1093), + [anon_sym_GT] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_in] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1093), + [anon_sym_RBRACE] = ACTIONS(1093), + [anon_sym_DOT_DOT] = ACTIONS(1093), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_STAR_STAR] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1093), + [anon_sym_SLASH] = ACTIONS(1093), + [anon_sym_mod] = ACTIONS(1093), + [anon_sym_SLASH_SLASH] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_bit_DASHshl] = ACTIONS(1093), + [anon_sym_bit_DASHshr] = ACTIONS(1093), + [anon_sym_EQ_EQ] = ACTIONS(1093), + [anon_sym_BANG_EQ] = ACTIONS(1093), + [anon_sym_LT2] = ACTIONS(1093), + [anon_sym_LT_EQ] = ACTIONS(1093), + [anon_sym_GT_EQ] = ACTIONS(1093), + [anon_sym_not_DASHin] = ACTIONS(1093), + [anon_sym_starts_DASHwith] = ACTIONS(1093), + [anon_sym_ends_DASHwith] = ACTIONS(1093), + [anon_sym_EQ_TILDE] = ACTIONS(1093), + [anon_sym_BANG_TILDE] = ACTIONS(1093), + [anon_sym_bit_DASHand] = ACTIONS(1093), + [anon_sym_bit_DASHxor] = ACTIONS(1093), + [anon_sym_bit_DASHor] = ACTIONS(1093), + [anon_sym_and] = ACTIONS(1093), + [anon_sym_xor] = ACTIONS(1093), + [anon_sym_or] = ACTIONS(1093), + [anon_sym_not] = ACTIONS(1093), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1093), + [anon_sym_DOT_DOT_LT] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1093), + [anon_sym_true] = ACTIONS(1093), + [anon_sym_false] = ACTIONS(1093), + [aux_sym__val_number_decimal_token1] = ACTIONS(1093), + [aux_sym__val_number_decimal_token2] = ACTIONS(1093), + [anon_sym_DOT2] = ACTIONS(1093), + [aux_sym__val_number_decimal_token3] = ACTIONS(1093), + [aux_sym__val_number_token1] = ACTIONS(1093), + [aux_sym__val_number_token2] = ACTIONS(1093), + [aux_sym__val_number_token3] = ACTIONS(1093), + [aux_sym__val_number_token4] = ACTIONS(1093), + [aux_sym__val_number_token5] = ACTIONS(1093), + [aux_sym__val_number_token6] = ACTIONS(1093), + [anon_sym_0b] = ACTIONS(1093), + [anon_sym_0o] = ACTIONS(1093), + [anon_sym_0x] = ACTIONS(1093), + [sym_val_date] = ACTIONS(1093), + [anon_sym_DQUOTE] = ACTIONS(1093), + [sym__str_single_quotes] = ACTIONS(1093), + [sym__str_back_ticks] = ACTIONS(1093), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1093), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1093), + [anon_sym_POUND] = ACTIONS(113), }, - [2290] = { - [sym__expression] = STATE(7399), - [sym_expr_unary] = STATE(5715), - [sym__expr_unary_minus] = STATE(5723), - [sym_expr_binary] = STATE(5715), - [sym__expr_binary_expression] = STATE(6788), - [sym_expr_parenthesized] = STATE(5176), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(5715), - [sym_val_nothing] = STATE(5705), - [sym_val_bool] = STATE(5705), - [sym_val_variable] = STATE(5170), - [sym__var] = STATE(4674), - [sym_val_number] = STATE(5705), - [sym__val_number_decimal] = STATE(4718), - [sym__val_number] = STATE(5875), - [sym_val_duration] = STATE(5705), - [sym_val_filesize] = STATE(5705), - [sym_val_binary] = STATE(5705), - [sym_val_string] = STATE(5705), - [sym__str_double_quotes] = STATE(5788), - [sym_val_interpolated] = STATE(5705), - [sym__inter_single_quotes] = STATE(5899), - [sym__inter_double_quotes] = STATE(5903), - [sym_val_list] = STATE(5705), - [sym_val_record] = STATE(5705), - [sym_val_table] = STATE(5705), - [sym_val_closure] = STATE(5705), - [sym__flag] = STATE(7397), - [sym_short_flag] = STATE(8329), - [sym_long_flag] = STATE(8329), - [sym_long_flag_equals_value] = STATE(8282), - [sym_comment] = STATE(2290), - [anon_sym_SEMI] = ACTIONS(5991), - [anon_sym_LF] = ACTIONS(5993), - [anon_sym_LBRACK] = ACTIONS(5371), - [anon_sym_LPAREN] = ACTIONS(5373), - [anon_sym_RPAREN] = ACTIONS(5991), - [anon_sym_PIPE] = ACTIONS(5991), - [anon_sym_DOLLAR] = ACTIONS(3317), - [anon_sym_DASH_DASH] = ACTIONS(5625), - [anon_sym_DASH] = ACTIONS(5627), - [anon_sym_LBRACE] = ACTIONS(5379), - [anon_sym_RBRACE] = ACTIONS(5991), - [anon_sym_DOT_DOT] = ACTIONS(5381), - [anon_sym_not] = ACTIONS(5383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5385), - [anon_sym_DOT_DOT_LT] = ACTIONS(5385), - [anon_sym_null] = ACTIONS(5387), - [anon_sym_true] = ACTIONS(5389), - [anon_sym_false] = ACTIONS(5389), - [aux_sym__val_number_decimal_token1] = ACTIONS(5391), - [aux_sym__val_number_decimal_token2] = ACTIONS(5391), - [anon_sym_DOT2] = ACTIONS(5393), - [aux_sym__val_number_decimal_token3] = ACTIONS(5395), - [aux_sym__val_number_token1] = ACTIONS(5397), - [aux_sym__val_number_token2] = ACTIONS(5397), - [aux_sym__val_number_token3] = ACTIONS(5397), - [aux_sym__val_number_token4] = ACTIONS(5397), - [aux_sym__val_number_token5] = ACTIONS(5397), - [aux_sym__val_number_token6] = ACTIONS(5397), - [anon_sym_0b] = ACTIONS(3345), - [anon_sym_0o] = ACTIONS(3347), - [anon_sym_0x] = ACTIONS(3347), - [sym_val_date] = ACTIONS(5399), - [anon_sym_DQUOTE] = ACTIONS(5401), - [sym__str_single_quotes] = ACTIONS(5403), - [sym__str_back_ticks] = ACTIONS(5403), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5405), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5407), + [2561] = { + [sym_comment] = STATE(2561), + [anon_sym_SEMI] = ACTIONS(1237), + [anon_sym_LF] = ACTIONS(1239), + [anon_sym_LBRACK] = ACTIONS(1237), + [anon_sym_LPAREN] = ACTIONS(1237), + [anon_sym_RPAREN] = ACTIONS(1237), + [anon_sym_PIPE] = ACTIONS(1237), + [anon_sym_DOLLAR] = ACTIONS(1237), + [anon_sym_GT] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), + [anon_sym_DASH] = ACTIONS(1237), + [anon_sym_in] = ACTIONS(1237), + [anon_sym_LBRACE] = ACTIONS(1237), + [anon_sym_RBRACE] = ACTIONS(1237), + [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_STAR] = ACTIONS(1237), + [anon_sym_STAR_STAR] = ACTIONS(1237), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_SLASH] = ACTIONS(1237), + [anon_sym_mod] = ACTIONS(1237), + [anon_sym_SLASH_SLASH] = ACTIONS(1237), + [anon_sym_PLUS] = ACTIONS(1237), + [anon_sym_bit_DASHshl] = ACTIONS(1237), + [anon_sym_bit_DASHshr] = ACTIONS(1237), + [anon_sym_EQ_EQ] = ACTIONS(1237), + [anon_sym_BANG_EQ] = ACTIONS(1237), + [anon_sym_LT2] = ACTIONS(1237), + [anon_sym_LT_EQ] = ACTIONS(1237), + [anon_sym_GT_EQ] = ACTIONS(1237), + [anon_sym_not_DASHin] = ACTIONS(1237), + [anon_sym_starts_DASHwith] = ACTIONS(1237), + [anon_sym_ends_DASHwith] = ACTIONS(1237), + [anon_sym_EQ_TILDE] = ACTIONS(1237), + [anon_sym_BANG_TILDE] = ACTIONS(1237), + [anon_sym_bit_DASHand] = ACTIONS(1237), + [anon_sym_bit_DASHxor] = ACTIONS(1237), + [anon_sym_bit_DASHor] = ACTIONS(1237), + [anon_sym_and] = ACTIONS(1237), + [anon_sym_xor] = ACTIONS(1237), + [anon_sym_or] = ACTIONS(1237), + [anon_sym_not] = ACTIONS(1237), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1237), + [anon_sym_DOT_DOT_LT] = ACTIONS(1237), + [anon_sym_null] = ACTIONS(1237), + [anon_sym_true] = ACTIONS(1237), + [anon_sym_false] = ACTIONS(1237), + [aux_sym__val_number_decimal_token1] = ACTIONS(1237), + [aux_sym__val_number_decimal_token2] = ACTIONS(1237), + [anon_sym_DOT2] = ACTIONS(1237), + [aux_sym__val_number_decimal_token3] = ACTIONS(1237), + [aux_sym__val_number_token1] = ACTIONS(1237), + [aux_sym__val_number_token2] = ACTIONS(1237), + [aux_sym__val_number_token3] = ACTIONS(1237), + [aux_sym__val_number_token4] = ACTIONS(1237), + [aux_sym__val_number_token5] = ACTIONS(1237), + [aux_sym__val_number_token6] = ACTIONS(1237), + [anon_sym_0b] = ACTIONS(1237), + [anon_sym_0o] = ACTIONS(1237), + [anon_sym_0x] = ACTIONS(1237), + [sym_val_date] = ACTIONS(1237), + [anon_sym_DQUOTE] = ACTIONS(1237), + [sym__str_single_quotes] = ACTIONS(1237), + [sym__str_back_ticks] = ACTIONS(1237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1237), [anon_sym_POUND] = ACTIONS(113), }, - [2291] = { - [sym_expr_unary] = STATE(485), - [sym__expr_unary_minus] = STATE(481), - [sym_expr_binary] = STATE(485), - [sym__expr_binary_expression] = STATE(504), - [sym_expr_parenthesized] = STATE(485), - [sym__val_range] = STATE(10723), - [sym__value] = STATE(485), - [sym_val_nothing] = STATE(503), - [sym_val_bool] = STATE(435), - [sym_val_variable] = STATE(503), - [sym__var] = STATE(348), - [sym_val_number] = STATE(503), - [sym__val_number_decimal] = STATE(264), - [sym__val_number] = STATE(518), - [sym_val_duration] = STATE(503), - [sym_val_filesize] = STATE(503), - [sym_val_binary] = STATE(503), - [sym_val_string] = STATE(503), - [sym__str_double_quotes] = STATE(517), - [sym_val_interpolated] = STATE(503), - [sym__inter_single_quotes] = STATE(443), - [sym__inter_double_quotes] = STATE(444), - [sym_val_list] = STATE(503), - [sym_val_record] = STATE(503), - [sym_val_table] = STATE(503), - [sym_val_closure] = STATE(503), - [sym_unquoted] = STATE(486), - [sym__unquoted_anonymous_prefix] = STATE(10894), - [sym_comment] = STATE(2291), - [anon_sym_LBRACK] = ACTIONS(4403), - [anon_sym_LPAREN] = ACTIONS(5995), - [anon_sym_DOLLAR] = ACTIONS(5997), - [anon_sym_DASH] = ACTIONS(4409), - [anon_sym_LBRACE] = ACTIONS(4411), - [anon_sym_DOT_DOT] = ACTIONS(5999), - [anon_sym_not] = ACTIONS(4415), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6001), - [anon_sym_DOT_DOT_LT] = ACTIONS(6001), - [anon_sym_null] = ACTIONS(4419), - [anon_sym_true] = ACTIONS(4421), - [anon_sym_false] = ACTIONS(4421), - [aux_sym__val_number_decimal_token1] = ACTIONS(4423), - [aux_sym__val_number_decimal_token2] = ACTIONS(4425), - [anon_sym_DOT2] = ACTIONS(6003), - [aux_sym__val_number_decimal_token3] = ACTIONS(4429), - [aux_sym__val_number_token1] = ACTIONS(4431), - [aux_sym__val_number_token2] = ACTIONS(4431), - [aux_sym__val_number_token3] = ACTIONS(4431), - [aux_sym__val_number_token4] = ACTIONS(6005), - [aux_sym__val_number_token5] = ACTIONS(6005), - [aux_sym__val_number_token6] = ACTIONS(6005), - [anon_sym_0b] = ACTIONS(4435), - [anon_sym_0o] = ACTIONS(4437), - [anon_sym_0x] = ACTIONS(4437), - [sym_val_date] = ACTIONS(4439), - [anon_sym_DQUOTE] = ACTIONS(4441), - [sym__str_single_quotes] = ACTIONS(4443), - [sym__str_back_ticks] = ACTIONS(4443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4445), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4447), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(6007), - [anon_sym_POUND] = ACTIONS(3), + [2562] = { + [sym_comment] = STATE(2562), + [anon_sym_SEMI] = ACTIONS(1241), + [anon_sym_LF] = ACTIONS(1243), + [anon_sym_LBRACK] = ACTIONS(1241), + [anon_sym_LPAREN] = ACTIONS(1241), + [anon_sym_RPAREN] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1241), + [anon_sym_DOLLAR] = ACTIONS(1241), + [anon_sym_GT] = ACTIONS(1241), + [anon_sym_DASH_DASH] = ACTIONS(1241), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_in] = ACTIONS(1241), + [anon_sym_LBRACE] = ACTIONS(1241), + [anon_sym_RBRACE] = ACTIONS(1241), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_STAR] = ACTIONS(1241), + [anon_sym_STAR_STAR] = ACTIONS(1241), + [anon_sym_PLUS_PLUS] = ACTIONS(1241), + [anon_sym_SLASH] = ACTIONS(1241), + [anon_sym_mod] = ACTIONS(1241), + [anon_sym_SLASH_SLASH] = ACTIONS(1241), + [anon_sym_PLUS] = ACTIONS(1241), + [anon_sym_bit_DASHshl] = ACTIONS(1241), + [anon_sym_bit_DASHshr] = ACTIONS(1241), + [anon_sym_EQ_EQ] = ACTIONS(1241), + [anon_sym_BANG_EQ] = ACTIONS(1241), + [anon_sym_LT2] = ACTIONS(1241), + [anon_sym_LT_EQ] = ACTIONS(1241), + [anon_sym_GT_EQ] = ACTIONS(1241), + [anon_sym_not_DASHin] = ACTIONS(1241), + [anon_sym_starts_DASHwith] = ACTIONS(1241), + [anon_sym_ends_DASHwith] = ACTIONS(1241), + [anon_sym_EQ_TILDE] = ACTIONS(1241), + [anon_sym_BANG_TILDE] = ACTIONS(1241), + [anon_sym_bit_DASHand] = ACTIONS(1241), + [anon_sym_bit_DASHxor] = ACTIONS(1241), + [anon_sym_bit_DASHor] = ACTIONS(1241), + [anon_sym_and] = ACTIONS(1241), + [anon_sym_xor] = ACTIONS(1241), + [anon_sym_or] = ACTIONS(1241), + [anon_sym_not] = ACTIONS(1241), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1241), + [anon_sym_DOT_DOT_LT] = ACTIONS(1241), + [anon_sym_null] = ACTIONS(1241), + [anon_sym_true] = ACTIONS(1241), + [anon_sym_false] = ACTIONS(1241), + [aux_sym__val_number_decimal_token1] = ACTIONS(1241), + [aux_sym__val_number_decimal_token2] = ACTIONS(1241), + [anon_sym_DOT2] = ACTIONS(1241), + [aux_sym__val_number_decimal_token3] = ACTIONS(1241), + [aux_sym__val_number_token1] = ACTIONS(1241), + [aux_sym__val_number_token2] = ACTIONS(1241), + [aux_sym__val_number_token3] = ACTIONS(1241), + [aux_sym__val_number_token4] = ACTIONS(1241), + [aux_sym__val_number_token5] = ACTIONS(1241), + [aux_sym__val_number_token6] = ACTIONS(1241), + [anon_sym_0b] = ACTIONS(1241), + [anon_sym_0o] = ACTIONS(1241), + [anon_sym_0x] = ACTIONS(1241), + [sym_val_date] = ACTIONS(1241), + [anon_sym_DQUOTE] = ACTIONS(1241), + [sym__str_single_quotes] = ACTIONS(1241), + [sym__str_back_ticks] = ACTIONS(1241), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1241), + [anon_sym_POUND] = ACTIONS(113), }, - [2292] = { - [sym_expr_unary] = STATE(485), - [sym__expr_unary_minus] = STATE(481), - [sym_expr_binary] = STATE(485), - [sym__expr_binary_expression] = STATE(505), - [sym_expr_parenthesized] = STATE(485), - [sym__val_range] = STATE(10723), - [sym__value] = STATE(485), - [sym_val_nothing] = STATE(503), - [sym_val_bool] = STATE(435), - [sym_val_variable] = STATE(503), - [sym__var] = STATE(348), - [sym_val_number] = STATE(503), - [sym__val_number_decimal] = STATE(264), - [sym__val_number] = STATE(518), - [sym_val_duration] = STATE(503), - [sym_val_filesize] = STATE(503), - [sym_val_binary] = STATE(503), - [sym_val_string] = STATE(503), - [sym__str_double_quotes] = STATE(517), - [sym_val_interpolated] = STATE(503), - [sym__inter_single_quotes] = STATE(443), - [sym__inter_double_quotes] = STATE(444), - [sym_val_list] = STATE(503), - [sym_val_record] = STATE(503), - [sym_val_table] = STATE(503), - [sym_val_closure] = STATE(503), - [sym_unquoted] = STATE(487), - [sym__unquoted_anonymous_prefix] = STATE(10894), - [sym_comment] = STATE(2292), - [anon_sym_LBRACK] = ACTIONS(4403), - [anon_sym_LPAREN] = ACTIONS(5995), - [anon_sym_DOLLAR] = ACTIONS(5997), - [anon_sym_DASH] = ACTIONS(4409), - [anon_sym_LBRACE] = ACTIONS(4411), - [anon_sym_DOT_DOT] = ACTIONS(5999), - [anon_sym_not] = ACTIONS(4415), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6001), - [anon_sym_DOT_DOT_LT] = ACTIONS(6001), - [anon_sym_null] = ACTIONS(4419), - [anon_sym_true] = ACTIONS(4421), - [anon_sym_false] = ACTIONS(4421), - [aux_sym__val_number_decimal_token1] = ACTIONS(4423), - [aux_sym__val_number_decimal_token2] = ACTIONS(4425), - [anon_sym_DOT2] = ACTIONS(6003), - [aux_sym__val_number_decimal_token3] = ACTIONS(4429), - [aux_sym__val_number_token1] = ACTIONS(4431), - [aux_sym__val_number_token2] = ACTIONS(4431), - [aux_sym__val_number_token3] = ACTIONS(4431), - [aux_sym__val_number_token4] = ACTIONS(6005), - [aux_sym__val_number_token5] = ACTIONS(6005), - [aux_sym__val_number_token6] = ACTIONS(6005), - [anon_sym_0b] = ACTIONS(4435), - [anon_sym_0o] = ACTIONS(4437), - [anon_sym_0x] = ACTIONS(4437), - [sym_val_date] = ACTIONS(4439), - [anon_sym_DQUOTE] = ACTIONS(4441), - [sym__str_single_quotes] = ACTIONS(4443), - [sym__str_back_ticks] = ACTIONS(4443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4445), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4447), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(6007), - [anon_sym_POUND] = ACTIONS(3), + [2563] = { + [sym_comment] = STATE(2563), + [anon_sym_export] = ACTIONS(6539), + [anon_sym_alias] = ACTIONS(6539), + [anon_sym_let] = ACTIONS(6539), + [anon_sym_let_DASHenv] = ACTIONS(6539), + [anon_sym_mut] = ACTIONS(6539), + [anon_sym_const] = ACTIONS(6539), + [anon_sym_SEMI] = ACTIONS(6539), + [sym_cmd_identifier] = ACTIONS(6539), + [anon_sym_LF] = ACTIONS(6541), + [anon_sym_def] = ACTIONS(6539), + [anon_sym_export_DASHenv] = ACTIONS(6539), + [anon_sym_extern] = ACTIONS(6539), + [anon_sym_module] = ACTIONS(6539), + [anon_sym_use] = ACTIONS(6539), + [anon_sym_LBRACK] = ACTIONS(6539), + [anon_sym_LPAREN] = ACTIONS(6539), + [anon_sym_DOLLAR] = ACTIONS(6539), + [anon_sym_error] = ACTIONS(6539), + [anon_sym_DASH] = ACTIONS(6539), + [anon_sym_break] = ACTIONS(6539), + [anon_sym_continue] = ACTIONS(6539), + [anon_sym_for] = ACTIONS(6539), + [anon_sym_loop] = ACTIONS(6539), + [anon_sym_while] = ACTIONS(6539), + [anon_sym_do] = ACTIONS(6539), + [anon_sym_if] = ACTIONS(6539), + [anon_sym_match] = ACTIONS(6539), + [anon_sym_LBRACE] = ACTIONS(6539), + [anon_sym_DOT_DOT] = ACTIONS(6539), + [anon_sym_try] = ACTIONS(6539), + [anon_sym_return] = ACTIONS(6539), + [anon_sym_source] = ACTIONS(6539), + [anon_sym_source_DASHenv] = ACTIONS(6539), + [anon_sym_register] = ACTIONS(6539), + [anon_sym_hide] = ACTIONS(6539), + [anon_sym_hide_DASHenv] = ACTIONS(6539), + [anon_sym_overlay] = ACTIONS(6539), + [anon_sym_where] = ACTIONS(6539), + [anon_sym_not] = ACTIONS(6539), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6539), + [anon_sym_DOT_DOT_LT] = ACTIONS(6539), + [anon_sym_null] = ACTIONS(6539), + [anon_sym_true] = ACTIONS(6539), + [anon_sym_false] = ACTIONS(6539), + [aux_sym__val_number_decimal_token1] = ACTIONS(6539), + [aux_sym__val_number_decimal_token2] = ACTIONS(6539), + [anon_sym_DOT2] = ACTIONS(6539), + [aux_sym__val_number_decimal_token3] = ACTIONS(6539), + [aux_sym__val_number_token1] = ACTIONS(6539), + [aux_sym__val_number_token2] = ACTIONS(6539), + [aux_sym__val_number_token3] = ACTIONS(6539), + [aux_sym__val_number_token4] = ACTIONS(6539), + [aux_sym__val_number_token5] = ACTIONS(6539), + [aux_sym__val_number_token6] = ACTIONS(6539), + [anon_sym_0b] = ACTIONS(6539), + [anon_sym_0o] = ACTIONS(6539), + [anon_sym_0x] = ACTIONS(6539), + [sym_val_date] = ACTIONS(6539), + [anon_sym_DQUOTE] = ACTIONS(6539), + [sym__str_single_quotes] = ACTIONS(6539), + [sym__str_back_ticks] = ACTIONS(6539), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6539), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6539), + [anon_sym_CARET] = ACTIONS(6539), + [anon_sym_POUND] = ACTIONS(113), }, - [2293] = { - [sym_expr_unary] = STATE(485), - [sym__expr_unary_minus] = STATE(481), - [sym_expr_binary] = STATE(485), - [sym__expr_binary_expression] = STATE(506), - [sym_expr_parenthesized] = STATE(485), - [sym__val_range] = STATE(10723), - [sym__value] = STATE(485), - [sym_val_nothing] = STATE(503), - [sym_val_bool] = STATE(435), - [sym_val_variable] = STATE(503), - [sym__var] = STATE(348), - [sym_val_number] = STATE(503), - [sym__val_number_decimal] = STATE(264), - [sym__val_number] = STATE(518), - [sym_val_duration] = STATE(503), - [sym_val_filesize] = STATE(503), - [sym_val_binary] = STATE(503), - [sym_val_string] = STATE(503), - [sym__str_double_quotes] = STATE(517), - [sym_val_interpolated] = STATE(503), - [sym__inter_single_quotes] = STATE(443), - [sym__inter_double_quotes] = STATE(444), - [sym_val_list] = STATE(503), - [sym_val_record] = STATE(503), - [sym_val_table] = STATE(503), - [sym_val_closure] = STATE(503), - [sym_unquoted] = STATE(488), - [sym__unquoted_anonymous_prefix] = STATE(10894), - [sym_comment] = STATE(2293), - [anon_sym_LBRACK] = ACTIONS(4403), - [anon_sym_LPAREN] = ACTIONS(5995), - [anon_sym_DOLLAR] = ACTIONS(5997), - [anon_sym_DASH] = ACTIONS(4409), - [anon_sym_LBRACE] = ACTIONS(4411), - [anon_sym_DOT_DOT] = ACTIONS(5999), - [anon_sym_not] = ACTIONS(4415), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6001), - [anon_sym_DOT_DOT_LT] = ACTIONS(6001), - [anon_sym_null] = ACTIONS(4419), - [anon_sym_true] = ACTIONS(4421), - [anon_sym_false] = ACTIONS(4421), - [aux_sym__val_number_decimal_token1] = ACTIONS(4423), - [aux_sym__val_number_decimal_token2] = ACTIONS(4425), - [anon_sym_DOT2] = ACTIONS(6003), - [aux_sym__val_number_decimal_token3] = ACTIONS(4429), - [aux_sym__val_number_token1] = ACTIONS(4431), - [aux_sym__val_number_token2] = ACTIONS(4431), - [aux_sym__val_number_token3] = ACTIONS(4431), - [aux_sym__val_number_token4] = ACTIONS(6005), - [aux_sym__val_number_token5] = ACTIONS(6005), - [aux_sym__val_number_token6] = ACTIONS(6005), - [anon_sym_0b] = ACTIONS(4435), - [anon_sym_0o] = ACTIONS(4437), - [anon_sym_0x] = ACTIONS(4437), - [sym_val_date] = ACTIONS(4439), - [anon_sym_DQUOTE] = ACTIONS(4441), - [sym__str_single_quotes] = ACTIONS(4443), - [sym__str_back_ticks] = ACTIONS(4443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4445), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4447), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(6007), - [anon_sym_POUND] = ACTIONS(3), + [2564] = { + [sym_comment] = STATE(2564), + [anon_sym_SEMI] = ACTIONS(1245), + [anon_sym_LF] = ACTIONS(1247), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_RPAREN] = ACTIONS(1245), + [anon_sym_PIPE] = ACTIONS(1245), + [anon_sym_DOLLAR] = ACTIONS(1245), + [anon_sym_GT] = ACTIONS(1245), + [anon_sym_DASH_DASH] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_in] = ACTIONS(1245), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_RBRACE] = ACTIONS(1245), + [anon_sym_DOT_DOT] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(1245), + [anon_sym_STAR_STAR] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(1245), + [anon_sym_mod] = ACTIONS(1245), + [anon_sym_SLASH_SLASH] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_bit_DASHshl] = ACTIONS(1245), + [anon_sym_bit_DASHshr] = ACTIONS(1245), + [anon_sym_EQ_EQ] = ACTIONS(1245), + [anon_sym_BANG_EQ] = ACTIONS(1245), + [anon_sym_LT2] = ACTIONS(1245), + [anon_sym_LT_EQ] = ACTIONS(1245), + [anon_sym_GT_EQ] = ACTIONS(1245), + [anon_sym_not_DASHin] = ACTIONS(1245), + [anon_sym_starts_DASHwith] = ACTIONS(1245), + [anon_sym_ends_DASHwith] = ACTIONS(1245), + [anon_sym_EQ_TILDE] = ACTIONS(1245), + [anon_sym_BANG_TILDE] = ACTIONS(1245), + [anon_sym_bit_DASHand] = ACTIONS(1245), + [anon_sym_bit_DASHxor] = ACTIONS(1245), + [anon_sym_bit_DASHor] = ACTIONS(1245), + [anon_sym_and] = ACTIONS(1245), + [anon_sym_xor] = ACTIONS(1245), + [anon_sym_or] = ACTIONS(1245), + [anon_sym_not] = ACTIONS(1245), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1245), + [anon_sym_DOT_DOT_LT] = ACTIONS(1245), + [anon_sym_null] = ACTIONS(1245), + [anon_sym_true] = ACTIONS(1245), + [anon_sym_false] = ACTIONS(1245), + [aux_sym__val_number_decimal_token1] = ACTIONS(1245), + [aux_sym__val_number_decimal_token2] = ACTIONS(1245), + [anon_sym_DOT2] = ACTIONS(1245), + [aux_sym__val_number_decimal_token3] = ACTIONS(1245), + [aux_sym__val_number_token1] = ACTIONS(1245), + [aux_sym__val_number_token2] = ACTIONS(1245), + [aux_sym__val_number_token3] = ACTIONS(1245), + [aux_sym__val_number_token4] = ACTIONS(1245), + [aux_sym__val_number_token5] = ACTIONS(1245), + [aux_sym__val_number_token6] = ACTIONS(1245), + [anon_sym_0b] = ACTIONS(1245), + [anon_sym_0o] = ACTIONS(1245), + [anon_sym_0x] = ACTIONS(1245), + [sym_val_date] = ACTIONS(1245), + [anon_sym_DQUOTE] = ACTIONS(1245), + [sym__str_single_quotes] = ACTIONS(1245), + [sym__str_back_ticks] = ACTIONS(1245), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1245), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1245), + [anon_sym_POUND] = ACTIONS(113), }, - [2294] = { - [sym_expr_unary] = STATE(485), - [sym__expr_unary_minus] = STATE(481), - [sym_expr_binary] = STATE(485), - [sym__expr_binary_expression] = STATE(507), - [sym_expr_parenthesized] = STATE(485), - [sym__val_range] = STATE(10723), - [sym__value] = STATE(485), - [sym_val_nothing] = STATE(503), - [sym_val_bool] = STATE(435), - [sym_val_variable] = STATE(503), - [sym__var] = STATE(348), - [sym_val_number] = STATE(503), - [sym__val_number_decimal] = STATE(264), - [sym__val_number] = STATE(518), - [sym_val_duration] = STATE(503), - [sym_val_filesize] = STATE(503), - [sym_val_binary] = STATE(503), - [sym_val_string] = STATE(503), - [sym__str_double_quotes] = STATE(517), - [sym_val_interpolated] = STATE(503), - [sym__inter_single_quotes] = STATE(443), - [sym__inter_double_quotes] = STATE(444), - [sym_val_list] = STATE(503), - [sym_val_record] = STATE(503), - [sym_val_table] = STATE(503), - [sym_val_closure] = STATE(503), - [sym_unquoted] = STATE(489), - [sym__unquoted_anonymous_prefix] = STATE(10894), - [sym_comment] = STATE(2294), - [anon_sym_LBRACK] = ACTIONS(4403), - [anon_sym_LPAREN] = ACTIONS(5995), - [anon_sym_DOLLAR] = ACTIONS(5997), - [anon_sym_DASH] = ACTIONS(4409), - [anon_sym_LBRACE] = ACTIONS(4411), - [anon_sym_DOT_DOT] = ACTIONS(5999), - [anon_sym_not] = ACTIONS(4415), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6001), - [anon_sym_DOT_DOT_LT] = ACTIONS(6001), - [anon_sym_null] = ACTIONS(4419), - [anon_sym_true] = ACTIONS(4421), - [anon_sym_false] = ACTIONS(4421), - [aux_sym__val_number_decimal_token1] = ACTIONS(4423), - [aux_sym__val_number_decimal_token2] = ACTIONS(4425), - [anon_sym_DOT2] = ACTIONS(6003), - [aux_sym__val_number_decimal_token3] = ACTIONS(4429), - [aux_sym__val_number_token1] = ACTIONS(4431), - [aux_sym__val_number_token2] = ACTIONS(4431), - [aux_sym__val_number_token3] = ACTIONS(4431), - [aux_sym__val_number_token4] = ACTIONS(6005), - [aux_sym__val_number_token5] = ACTIONS(6005), - [aux_sym__val_number_token6] = ACTIONS(6005), - [anon_sym_0b] = ACTIONS(4435), - [anon_sym_0o] = ACTIONS(4437), - [anon_sym_0x] = ACTIONS(4437), - [sym_val_date] = ACTIONS(4439), - [anon_sym_DQUOTE] = ACTIONS(4441), - [sym__str_single_quotes] = ACTIONS(4443), - [sym__str_back_ticks] = ACTIONS(4443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4445), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4447), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(6007), - [anon_sym_POUND] = ACTIONS(3), + [2565] = { + [sym_comment] = STATE(2565), + [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym_LF] = ACTIONS(1251), + [anon_sym_LBRACK] = ACTIONS(1249), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1249), + [anon_sym_PIPE] = ACTIONS(1249), + [anon_sym_DOLLAR] = ACTIONS(1249), + [anon_sym_GT] = ACTIONS(1249), + [anon_sym_DASH_DASH] = ACTIONS(1249), + [anon_sym_DASH] = ACTIONS(1249), + [anon_sym_in] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_RBRACE] = ACTIONS(1249), + [anon_sym_DOT_DOT] = ACTIONS(1249), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_STAR_STAR] = ACTIONS(1249), + [anon_sym_PLUS_PLUS] = ACTIONS(1249), + [anon_sym_SLASH] = ACTIONS(1249), + [anon_sym_mod] = ACTIONS(1249), + [anon_sym_SLASH_SLASH] = ACTIONS(1249), + [anon_sym_PLUS] = ACTIONS(1249), + [anon_sym_bit_DASHshl] = ACTIONS(1249), + [anon_sym_bit_DASHshr] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1249), + [anon_sym_BANG_EQ] = ACTIONS(1249), + [anon_sym_LT2] = ACTIONS(1249), + [anon_sym_LT_EQ] = ACTIONS(1249), + [anon_sym_GT_EQ] = ACTIONS(1249), + [anon_sym_not_DASHin] = ACTIONS(1249), + [anon_sym_starts_DASHwith] = ACTIONS(1249), + [anon_sym_ends_DASHwith] = ACTIONS(1249), + [anon_sym_EQ_TILDE] = ACTIONS(1249), + [anon_sym_BANG_TILDE] = ACTIONS(1249), + [anon_sym_bit_DASHand] = ACTIONS(1249), + [anon_sym_bit_DASHxor] = ACTIONS(1249), + [anon_sym_bit_DASHor] = ACTIONS(1249), + [anon_sym_and] = ACTIONS(1249), + [anon_sym_xor] = ACTIONS(1249), + [anon_sym_or] = ACTIONS(1249), + [anon_sym_not] = ACTIONS(1249), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1249), + [anon_sym_DOT_DOT_LT] = ACTIONS(1249), + [anon_sym_null] = ACTIONS(1249), + [anon_sym_true] = ACTIONS(1249), + [anon_sym_false] = ACTIONS(1249), + [aux_sym__val_number_decimal_token1] = ACTIONS(1249), + [aux_sym__val_number_decimal_token2] = ACTIONS(1249), + [anon_sym_DOT2] = ACTIONS(1249), + [aux_sym__val_number_decimal_token3] = ACTIONS(1249), + [aux_sym__val_number_token1] = ACTIONS(1249), + [aux_sym__val_number_token2] = ACTIONS(1249), + [aux_sym__val_number_token3] = ACTIONS(1249), + [aux_sym__val_number_token4] = ACTIONS(1249), + [aux_sym__val_number_token5] = ACTIONS(1249), + [aux_sym__val_number_token6] = ACTIONS(1249), + [anon_sym_0b] = ACTIONS(1249), + [anon_sym_0o] = ACTIONS(1249), + [anon_sym_0x] = ACTIONS(1249), + [sym_val_date] = ACTIONS(1249), + [anon_sym_DQUOTE] = ACTIONS(1249), + [sym__str_single_quotes] = ACTIONS(1249), + [sym__str_back_ticks] = ACTIONS(1249), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1249), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1249), + [anon_sym_POUND] = ACTIONS(113), }, - [2295] = { - [sym_expr_unary] = STATE(485), - [sym__expr_unary_minus] = STATE(481), - [sym_expr_binary] = STATE(485), - [sym__expr_binary_expression] = STATE(508), - [sym_expr_parenthesized] = STATE(485), - [sym__val_range] = STATE(10723), - [sym__value] = STATE(485), - [sym_val_nothing] = STATE(503), - [sym_val_bool] = STATE(435), - [sym_val_variable] = STATE(503), - [sym__var] = STATE(348), - [sym_val_number] = STATE(503), - [sym__val_number_decimal] = STATE(264), - [sym__val_number] = STATE(518), - [sym_val_duration] = STATE(503), - [sym_val_filesize] = STATE(503), - [sym_val_binary] = STATE(503), - [sym_val_string] = STATE(503), - [sym__str_double_quotes] = STATE(517), - [sym_val_interpolated] = STATE(503), - [sym__inter_single_quotes] = STATE(443), - [sym__inter_double_quotes] = STATE(444), - [sym_val_list] = STATE(503), - [sym_val_record] = STATE(503), - [sym_val_table] = STATE(503), - [sym_val_closure] = STATE(503), - [sym_unquoted] = STATE(490), - [sym__unquoted_anonymous_prefix] = STATE(10894), - [sym_comment] = STATE(2295), - [anon_sym_LBRACK] = ACTIONS(4403), - [anon_sym_LPAREN] = ACTIONS(5995), - [anon_sym_DOLLAR] = ACTIONS(5997), - [anon_sym_DASH] = ACTIONS(4409), - [anon_sym_LBRACE] = ACTIONS(4411), - [anon_sym_DOT_DOT] = ACTIONS(5999), - [anon_sym_not] = ACTIONS(4415), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6001), - [anon_sym_DOT_DOT_LT] = ACTIONS(6001), - [anon_sym_null] = ACTIONS(4419), - [anon_sym_true] = ACTIONS(4421), - [anon_sym_false] = ACTIONS(4421), - [aux_sym__val_number_decimal_token1] = ACTIONS(4423), - [aux_sym__val_number_decimal_token2] = ACTIONS(4425), - [anon_sym_DOT2] = ACTIONS(6003), - [aux_sym__val_number_decimal_token3] = ACTIONS(4429), - [aux_sym__val_number_token1] = ACTIONS(4431), - [aux_sym__val_number_token2] = ACTIONS(4431), - [aux_sym__val_number_token3] = ACTIONS(4431), - [aux_sym__val_number_token4] = ACTIONS(6005), - [aux_sym__val_number_token5] = ACTIONS(6005), - [aux_sym__val_number_token6] = ACTIONS(6005), - [anon_sym_0b] = ACTIONS(4435), - [anon_sym_0o] = ACTIONS(4437), - [anon_sym_0x] = ACTIONS(4437), - [sym_val_date] = ACTIONS(4439), - [anon_sym_DQUOTE] = ACTIONS(4441), - [sym__str_single_quotes] = ACTIONS(4443), - [sym__str_back_ticks] = ACTIONS(4443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4445), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4447), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(6007), - [anon_sym_POUND] = ACTIONS(3), + [2566] = { + [sym_comment] = STATE(2566), + [anon_sym_export] = ACTIONS(6543), + [anon_sym_alias] = ACTIONS(6543), + [anon_sym_let] = ACTIONS(6543), + [anon_sym_let_DASHenv] = ACTIONS(6543), + [anon_sym_mut] = ACTIONS(6543), + [anon_sym_const] = ACTIONS(6543), + [anon_sym_SEMI] = ACTIONS(6543), + [sym_cmd_identifier] = ACTIONS(6543), + [anon_sym_LF] = ACTIONS(6545), + [anon_sym_def] = ACTIONS(6543), + [anon_sym_export_DASHenv] = ACTIONS(6543), + [anon_sym_extern] = ACTIONS(6543), + [anon_sym_module] = ACTIONS(6543), + [anon_sym_use] = ACTIONS(6543), + [anon_sym_LBRACK] = ACTIONS(6543), + [anon_sym_LPAREN] = ACTIONS(6543), + [anon_sym_DOLLAR] = ACTIONS(6543), + [anon_sym_error] = ACTIONS(6543), + [anon_sym_DASH] = ACTIONS(6543), + [anon_sym_break] = ACTIONS(6543), + [anon_sym_continue] = ACTIONS(6543), + [anon_sym_for] = ACTIONS(6543), + [anon_sym_loop] = ACTIONS(6543), + [anon_sym_while] = ACTIONS(6543), + [anon_sym_do] = ACTIONS(6543), + [anon_sym_if] = ACTIONS(6543), + [anon_sym_match] = ACTIONS(6543), + [anon_sym_LBRACE] = ACTIONS(6543), + [anon_sym_DOT_DOT] = ACTIONS(6543), + [anon_sym_try] = ACTIONS(6543), + [anon_sym_return] = ACTIONS(6543), + [anon_sym_source] = ACTIONS(6543), + [anon_sym_source_DASHenv] = ACTIONS(6543), + [anon_sym_register] = ACTIONS(6543), + [anon_sym_hide] = ACTIONS(6543), + [anon_sym_hide_DASHenv] = ACTIONS(6543), + [anon_sym_overlay] = ACTIONS(6543), + [anon_sym_where] = ACTIONS(6543), + [anon_sym_not] = ACTIONS(6543), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6543), + [anon_sym_DOT_DOT_LT] = ACTIONS(6543), + [anon_sym_null] = ACTIONS(6543), + [anon_sym_true] = ACTIONS(6543), + [anon_sym_false] = ACTIONS(6543), + [aux_sym__val_number_decimal_token1] = ACTIONS(6543), + [aux_sym__val_number_decimal_token2] = ACTIONS(6543), + [anon_sym_DOT2] = ACTIONS(6543), + [aux_sym__val_number_decimal_token3] = ACTIONS(6543), + [aux_sym__val_number_token1] = ACTIONS(6543), + [aux_sym__val_number_token2] = ACTIONS(6543), + [aux_sym__val_number_token3] = ACTIONS(6543), + [aux_sym__val_number_token4] = ACTIONS(6543), + [aux_sym__val_number_token5] = ACTIONS(6543), + [aux_sym__val_number_token6] = ACTIONS(6543), + [anon_sym_0b] = ACTIONS(6543), + [anon_sym_0o] = ACTIONS(6543), + [anon_sym_0x] = ACTIONS(6543), + [sym_val_date] = ACTIONS(6543), + [anon_sym_DQUOTE] = ACTIONS(6543), + [sym__str_single_quotes] = ACTIONS(6543), + [sym__str_back_ticks] = ACTIONS(6543), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6543), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6543), + [anon_sym_CARET] = ACTIONS(6543), + [anon_sym_POUND] = ACTIONS(113), }, - [2296] = { - [sym_expr_unary] = STATE(485), - [sym__expr_unary_minus] = STATE(481), - [sym_expr_binary] = STATE(485), - [sym__expr_binary_expression] = STATE(509), - [sym_expr_parenthesized] = STATE(485), - [sym__val_range] = STATE(10723), - [sym__value] = STATE(485), - [sym_val_nothing] = STATE(503), - [sym_val_bool] = STATE(435), - [sym_val_variable] = STATE(503), - [sym__var] = STATE(348), - [sym_val_number] = STATE(503), - [sym__val_number_decimal] = STATE(264), - [sym__val_number] = STATE(518), - [sym_val_duration] = STATE(503), - [sym_val_filesize] = STATE(503), - [sym_val_binary] = STATE(503), - [sym_val_string] = STATE(503), - [sym__str_double_quotes] = STATE(517), - [sym_val_interpolated] = STATE(503), - [sym__inter_single_quotes] = STATE(443), - [sym__inter_double_quotes] = STATE(444), - [sym_val_list] = STATE(503), - [sym_val_record] = STATE(503), - [sym_val_table] = STATE(503), - [sym_val_closure] = STATE(503), - [sym_unquoted] = STATE(491), - [sym__unquoted_anonymous_prefix] = STATE(10894), - [sym_comment] = STATE(2296), - [anon_sym_LBRACK] = ACTIONS(4403), - [anon_sym_LPAREN] = ACTIONS(5995), - [anon_sym_DOLLAR] = ACTIONS(5997), - [anon_sym_DASH] = ACTIONS(4409), - [anon_sym_LBRACE] = ACTIONS(4411), - [anon_sym_DOT_DOT] = ACTIONS(5999), - [anon_sym_not] = ACTIONS(4415), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6001), - [anon_sym_DOT_DOT_LT] = ACTIONS(6001), - [anon_sym_null] = ACTIONS(4419), - [anon_sym_true] = ACTIONS(4421), - [anon_sym_false] = ACTIONS(4421), - [aux_sym__val_number_decimal_token1] = ACTIONS(4423), - [aux_sym__val_number_decimal_token2] = ACTIONS(4425), - [anon_sym_DOT2] = ACTIONS(6003), - [aux_sym__val_number_decimal_token3] = ACTIONS(4429), - [aux_sym__val_number_token1] = ACTIONS(4431), - [aux_sym__val_number_token2] = ACTIONS(4431), - [aux_sym__val_number_token3] = ACTIONS(4431), - [aux_sym__val_number_token4] = ACTIONS(6005), - [aux_sym__val_number_token5] = ACTIONS(6005), - [aux_sym__val_number_token6] = ACTIONS(6005), - [anon_sym_0b] = ACTIONS(4435), - [anon_sym_0o] = ACTIONS(4437), - [anon_sym_0x] = ACTIONS(4437), - [sym_val_date] = ACTIONS(4439), - [anon_sym_DQUOTE] = ACTIONS(4441), - [sym__str_single_quotes] = ACTIONS(4443), - [sym__str_back_ticks] = ACTIONS(4443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4445), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4447), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(6007), - [anon_sym_POUND] = ACTIONS(3), - }, - [2297] = { - [sym_expr_unary] = STATE(485), - [sym__expr_unary_minus] = STATE(481), - [sym_expr_binary] = STATE(485), - [sym__expr_binary_expression] = STATE(510), - [sym_expr_parenthesized] = STATE(485), - [sym__val_range] = STATE(10723), - [sym__value] = STATE(485), - [sym_val_nothing] = STATE(503), - [sym_val_bool] = STATE(435), - [sym_val_variable] = STATE(503), - [sym__var] = STATE(348), - [sym_val_number] = STATE(503), - [sym__val_number_decimal] = STATE(264), - [sym__val_number] = STATE(518), - [sym_val_duration] = STATE(503), - [sym_val_filesize] = STATE(503), - [sym_val_binary] = STATE(503), - [sym_val_string] = STATE(503), - [sym__str_double_quotes] = STATE(517), - [sym_val_interpolated] = STATE(503), - [sym__inter_single_quotes] = STATE(443), - [sym__inter_double_quotes] = STATE(444), - [sym_val_list] = STATE(503), - [sym_val_record] = STATE(503), - [sym_val_table] = STATE(503), - [sym_val_closure] = STATE(503), - [sym_unquoted] = STATE(492), - [sym__unquoted_anonymous_prefix] = STATE(10894), - [sym_comment] = STATE(2297), - [anon_sym_LBRACK] = ACTIONS(4403), - [anon_sym_LPAREN] = ACTIONS(5995), - [anon_sym_DOLLAR] = ACTIONS(5997), - [anon_sym_DASH] = ACTIONS(4409), - [anon_sym_LBRACE] = ACTIONS(4411), - [anon_sym_DOT_DOT] = ACTIONS(5999), - [anon_sym_not] = ACTIONS(4415), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6001), - [anon_sym_DOT_DOT_LT] = ACTIONS(6001), - [anon_sym_null] = ACTIONS(4419), - [anon_sym_true] = ACTIONS(4421), - [anon_sym_false] = ACTIONS(4421), - [aux_sym__val_number_decimal_token1] = ACTIONS(4423), - [aux_sym__val_number_decimal_token2] = ACTIONS(4425), - [anon_sym_DOT2] = ACTIONS(6003), - [aux_sym__val_number_decimal_token3] = ACTIONS(4429), - [aux_sym__val_number_token1] = ACTIONS(4431), - [aux_sym__val_number_token2] = ACTIONS(4431), - [aux_sym__val_number_token3] = ACTIONS(4431), - [aux_sym__val_number_token4] = ACTIONS(6005), - [aux_sym__val_number_token5] = ACTIONS(6005), - [aux_sym__val_number_token6] = ACTIONS(6005), - [anon_sym_0b] = ACTIONS(4435), - [anon_sym_0o] = ACTIONS(4437), - [anon_sym_0x] = ACTIONS(4437), - [sym_val_date] = ACTIONS(4439), - [anon_sym_DQUOTE] = ACTIONS(4441), - [sym__str_single_quotes] = ACTIONS(4443), - [sym__str_back_ticks] = ACTIONS(4443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4445), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4447), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(6007), - [anon_sym_POUND] = ACTIONS(3), - }, - [2298] = { - [sym_expr_unary] = STATE(485), - [sym__expr_unary_minus] = STATE(481), - [sym_expr_binary] = STATE(485), - [sym__expr_binary_expression] = STATE(511), - [sym_expr_parenthesized] = STATE(485), - [sym__val_range] = STATE(10723), - [sym__value] = STATE(485), - [sym_val_nothing] = STATE(503), - [sym_val_bool] = STATE(435), - [sym_val_variable] = STATE(503), - [sym__var] = STATE(348), - [sym_val_number] = STATE(503), - [sym__val_number_decimal] = STATE(264), - [sym__val_number] = STATE(518), - [sym_val_duration] = STATE(503), - [sym_val_filesize] = STATE(503), - [sym_val_binary] = STATE(503), - [sym_val_string] = STATE(503), - [sym__str_double_quotes] = STATE(517), - [sym_val_interpolated] = STATE(503), - [sym__inter_single_quotes] = STATE(443), - [sym__inter_double_quotes] = STATE(444), - [sym_val_list] = STATE(503), - [sym_val_record] = STATE(503), - [sym_val_table] = STATE(503), - [sym_val_closure] = STATE(503), - [sym_unquoted] = STATE(493), - [sym__unquoted_anonymous_prefix] = STATE(10894), - [sym_comment] = STATE(2298), - [anon_sym_LBRACK] = ACTIONS(4403), - [anon_sym_LPAREN] = ACTIONS(5995), - [anon_sym_DOLLAR] = ACTIONS(5997), - [anon_sym_DASH] = ACTIONS(4409), - [anon_sym_LBRACE] = ACTIONS(4411), - [anon_sym_DOT_DOT] = ACTIONS(5999), - [anon_sym_not] = ACTIONS(4415), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6001), - [anon_sym_DOT_DOT_LT] = ACTIONS(6001), - [anon_sym_null] = ACTIONS(4419), - [anon_sym_true] = ACTIONS(4421), - [anon_sym_false] = ACTIONS(4421), - [aux_sym__val_number_decimal_token1] = ACTIONS(4423), - [aux_sym__val_number_decimal_token2] = ACTIONS(4425), - [anon_sym_DOT2] = ACTIONS(6003), - [aux_sym__val_number_decimal_token3] = ACTIONS(4429), - [aux_sym__val_number_token1] = ACTIONS(4431), - [aux_sym__val_number_token2] = ACTIONS(4431), - [aux_sym__val_number_token3] = ACTIONS(4431), - [aux_sym__val_number_token4] = ACTIONS(6005), - [aux_sym__val_number_token5] = ACTIONS(6005), - [aux_sym__val_number_token6] = ACTIONS(6005), - [anon_sym_0b] = ACTIONS(4435), - [anon_sym_0o] = ACTIONS(4437), - [anon_sym_0x] = ACTIONS(4437), - [sym_val_date] = ACTIONS(4439), - [anon_sym_DQUOTE] = ACTIONS(4441), - [sym__str_single_quotes] = ACTIONS(4443), - [sym__str_back_ticks] = ACTIONS(4443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4445), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4447), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(6007), - [anon_sym_POUND] = ACTIONS(3), - }, - [2299] = { - [sym_expr_unary] = STATE(485), - [sym__expr_unary_minus] = STATE(481), - [sym_expr_binary] = STATE(485), - [sym__expr_binary_expression] = STATE(512), - [sym_expr_parenthesized] = STATE(485), - [sym__val_range] = STATE(10723), - [sym__value] = STATE(485), - [sym_val_nothing] = STATE(503), - [sym_val_bool] = STATE(435), - [sym_val_variable] = STATE(503), - [sym__var] = STATE(348), - [sym_val_number] = STATE(503), - [sym__val_number_decimal] = STATE(264), - [sym__val_number] = STATE(518), - [sym_val_duration] = STATE(503), - [sym_val_filesize] = STATE(503), - [sym_val_binary] = STATE(503), - [sym_val_string] = STATE(503), - [sym__str_double_quotes] = STATE(517), - [sym_val_interpolated] = STATE(503), - [sym__inter_single_quotes] = STATE(443), - [sym__inter_double_quotes] = STATE(444), - [sym_val_list] = STATE(503), - [sym_val_record] = STATE(503), - [sym_val_table] = STATE(503), - [sym_val_closure] = STATE(503), - [sym_unquoted] = STATE(494), - [sym__unquoted_anonymous_prefix] = STATE(10894), - [sym_comment] = STATE(2299), - [anon_sym_LBRACK] = ACTIONS(4403), - [anon_sym_LPAREN] = ACTIONS(5995), - [anon_sym_DOLLAR] = ACTIONS(5997), - [anon_sym_DASH] = ACTIONS(4409), - [anon_sym_LBRACE] = ACTIONS(4411), - [anon_sym_DOT_DOT] = ACTIONS(5999), - [anon_sym_not] = ACTIONS(4415), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6001), - [anon_sym_DOT_DOT_LT] = ACTIONS(6001), - [anon_sym_null] = ACTIONS(4419), - [anon_sym_true] = ACTIONS(4421), - [anon_sym_false] = ACTIONS(4421), - [aux_sym__val_number_decimal_token1] = ACTIONS(4423), - [aux_sym__val_number_decimal_token2] = ACTIONS(4425), - [anon_sym_DOT2] = ACTIONS(6003), - [aux_sym__val_number_decimal_token3] = ACTIONS(4429), - [aux_sym__val_number_token1] = ACTIONS(4431), - [aux_sym__val_number_token2] = ACTIONS(4431), - [aux_sym__val_number_token3] = ACTIONS(4431), - [aux_sym__val_number_token4] = ACTIONS(6005), - [aux_sym__val_number_token5] = ACTIONS(6005), - [aux_sym__val_number_token6] = ACTIONS(6005), - [anon_sym_0b] = ACTIONS(4435), - [anon_sym_0o] = ACTIONS(4437), - [anon_sym_0x] = ACTIONS(4437), - [sym_val_date] = ACTIONS(4439), - [anon_sym_DQUOTE] = ACTIONS(4441), - [sym__str_single_quotes] = ACTIONS(4443), - [sym__str_back_ticks] = ACTIONS(4443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4445), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4447), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(6007), - [anon_sym_POUND] = ACTIONS(3), - }, - [2300] = { - [sym_expr_unary] = STATE(485), - [sym__expr_unary_minus] = STATE(481), - [sym_expr_binary] = STATE(485), - [sym__expr_binary_expression] = STATE(513), - [sym_expr_parenthesized] = STATE(485), - [sym__val_range] = STATE(10723), - [sym__value] = STATE(485), - [sym_val_nothing] = STATE(503), - [sym_val_bool] = STATE(435), - [sym_val_variable] = STATE(503), - [sym__var] = STATE(348), - [sym_val_number] = STATE(503), - [sym__val_number_decimal] = STATE(264), - [sym__val_number] = STATE(518), - [sym_val_duration] = STATE(503), - [sym_val_filesize] = STATE(503), - [sym_val_binary] = STATE(503), - [sym_val_string] = STATE(503), - [sym__str_double_quotes] = STATE(517), - [sym_val_interpolated] = STATE(503), - [sym__inter_single_quotes] = STATE(443), - [sym__inter_double_quotes] = STATE(444), - [sym_val_list] = STATE(503), - [sym_val_record] = STATE(503), - [sym_val_table] = STATE(503), - [sym_val_closure] = STATE(503), - [sym_unquoted] = STATE(495), - [sym__unquoted_anonymous_prefix] = STATE(10894), - [sym_comment] = STATE(2300), - [anon_sym_LBRACK] = ACTIONS(4403), - [anon_sym_LPAREN] = ACTIONS(5995), - [anon_sym_DOLLAR] = ACTIONS(5997), - [anon_sym_DASH] = ACTIONS(4409), - [anon_sym_LBRACE] = ACTIONS(4411), - [anon_sym_DOT_DOT] = ACTIONS(5999), - [anon_sym_not] = ACTIONS(4415), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6001), - [anon_sym_DOT_DOT_LT] = ACTIONS(6001), - [anon_sym_null] = ACTIONS(4419), - [anon_sym_true] = ACTIONS(4421), - [anon_sym_false] = ACTIONS(4421), - [aux_sym__val_number_decimal_token1] = ACTIONS(4423), - [aux_sym__val_number_decimal_token2] = ACTIONS(4425), - [anon_sym_DOT2] = ACTIONS(6003), - [aux_sym__val_number_decimal_token3] = ACTIONS(4429), - [aux_sym__val_number_token1] = ACTIONS(4431), - [aux_sym__val_number_token2] = ACTIONS(4431), - [aux_sym__val_number_token3] = ACTIONS(4431), - [aux_sym__val_number_token4] = ACTIONS(6005), - [aux_sym__val_number_token5] = ACTIONS(6005), - [aux_sym__val_number_token6] = ACTIONS(6005), - [anon_sym_0b] = ACTIONS(4435), - [anon_sym_0o] = ACTIONS(4437), - [anon_sym_0x] = ACTIONS(4437), - [sym_val_date] = ACTIONS(4439), - [anon_sym_DQUOTE] = ACTIONS(4441), - [sym__str_single_quotes] = ACTIONS(4443), - [sym__str_back_ticks] = ACTIONS(4443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4445), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4447), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(6007), - [anon_sym_POUND] = ACTIONS(3), - }, - [2301] = { - [sym_expr_unary] = STATE(485), - [sym__expr_unary_minus] = STATE(481), - [sym_expr_binary] = STATE(485), - [sym__expr_binary_expression] = STATE(514), - [sym_expr_parenthesized] = STATE(485), - [sym__val_range] = STATE(10723), - [sym__value] = STATE(485), - [sym_val_nothing] = STATE(503), - [sym_val_bool] = STATE(435), - [sym_val_variable] = STATE(503), - [sym__var] = STATE(348), - [sym_val_number] = STATE(503), - [sym__val_number_decimal] = STATE(264), - [sym__val_number] = STATE(518), - [sym_val_duration] = STATE(503), - [sym_val_filesize] = STATE(503), - [sym_val_binary] = STATE(503), - [sym_val_string] = STATE(503), - [sym__str_double_quotes] = STATE(517), - [sym_val_interpolated] = STATE(503), - [sym__inter_single_quotes] = STATE(443), - [sym__inter_double_quotes] = STATE(444), - [sym_val_list] = STATE(503), - [sym_val_record] = STATE(503), - [sym_val_table] = STATE(503), - [sym_val_closure] = STATE(503), - [sym_unquoted] = STATE(496), - [sym__unquoted_anonymous_prefix] = STATE(10894), - [sym_comment] = STATE(2301), - [anon_sym_LBRACK] = ACTIONS(4403), - [anon_sym_LPAREN] = ACTIONS(5995), - [anon_sym_DOLLAR] = ACTIONS(5997), - [anon_sym_DASH] = ACTIONS(4409), - [anon_sym_LBRACE] = ACTIONS(4411), - [anon_sym_DOT_DOT] = ACTIONS(5999), - [anon_sym_not] = ACTIONS(4415), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6001), - [anon_sym_DOT_DOT_LT] = ACTIONS(6001), - [anon_sym_null] = ACTIONS(4419), - [anon_sym_true] = ACTIONS(4421), - [anon_sym_false] = ACTIONS(4421), - [aux_sym__val_number_decimal_token1] = ACTIONS(4423), - [aux_sym__val_number_decimal_token2] = ACTIONS(4425), - [anon_sym_DOT2] = ACTIONS(6003), - [aux_sym__val_number_decimal_token3] = ACTIONS(4429), - [aux_sym__val_number_token1] = ACTIONS(4431), - [aux_sym__val_number_token2] = ACTIONS(4431), - [aux_sym__val_number_token3] = ACTIONS(4431), - [aux_sym__val_number_token4] = ACTIONS(6005), - [aux_sym__val_number_token5] = ACTIONS(6005), - [aux_sym__val_number_token6] = ACTIONS(6005), - [anon_sym_0b] = ACTIONS(4435), - [anon_sym_0o] = ACTIONS(4437), - [anon_sym_0x] = ACTIONS(4437), - [sym_val_date] = ACTIONS(4439), - [anon_sym_DQUOTE] = ACTIONS(4441), - [sym__str_single_quotes] = ACTIONS(4443), - [sym__str_back_ticks] = ACTIONS(4443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4445), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4447), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(6007), - [anon_sym_POUND] = ACTIONS(3), - }, - [2302] = { - [sym_expr_unary] = STATE(485), - [sym__expr_unary_minus] = STATE(481), - [sym_expr_binary] = STATE(485), - [sym__expr_binary_expression] = STATE(515), - [sym_expr_parenthesized] = STATE(485), - [sym__val_range] = STATE(10723), - [sym__value] = STATE(485), - [sym_val_nothing] = STATE(503), - [sym_val_bool] = STATE(435), - [sym_val_variable] = STATE(503), - [sym__var] = STATE(348), - [sym_val_number] = STATE(503), - [sym__val_number_decimal] = STATE(264), - [sym__val_number] = STATE(518), - [sym_val_duration] = STATE(503), - [sym_val_filesize] = STATE(503), - [sym_val_binary] = STATE(503), - [sym_val_string] = STATE(503), - [sym__str_double_quotes] = STATE(517), - [sym_val_interpolated] = STATE(503), - [sym__inter_single_quotes] = STATE(443), - [sym__inter_double_quotes] = STATE(444), - [sym_val_list] = STATE(503), - [sym_val_record] = STATE(503), - [sym_val_table] = STATE(503), - [sym_val_closure] = STATE(503), - [sym_unquoted] = STATE(497), - [sym__unquoted_anonymous_prefix] = STATE(10894), - [sym_comment] = STATE(2302), - [anon_sym_LBRACK] = ACTIONS(4403), - [anon_sym_LPAREN] = ACTIONS(5995), - [anon_sym_DOLLAR] = ACTIONS(5997), - [anon_sym_DASH] = ACTIONS(4409), - [anon_sym_LBRACE] = ACTIONS(4411), - [anon_sym_DOT_DOT] = ACTIONS(5999), - [anon_sym_not] = ACTIONS(4415), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6001), - [anon_sym_DOT_DOT_LT] = ACTIONS(6001), - [anon_sym_null] = ACTIONS(4419), - [anon_sym_true] = ACTIONS(4421), - [anon_sym_false] = ACTIONS(4421), - [aux_sym__val_number_decimal_token1] = ACTIONS(4423), - [aux_sym__val_number_decimal_token2] = ACTIONS(4425), - [anon_sym_DOT2] = ACTIONS(6003), - [aux_sym__val_number_decimal_token3] = ACTIONS(4429), - [aux_sym__val_number_token1] = ACTIONS(4431), - [aux_sym__val_number_token2] = ACTIONS(4431), - [aux_sym__val_number_token3] = ACTIONS(4431), - [aux_sym__val_number_token4] = ACTIONS(6005), - [aux_sym__val_number_token5] = ACTIONS(6005), - [aux_sym__val_number_token6] = ACTIONS(6005), - [anon_sym_0b] = ACTIONS(4435), - [anon_sym_0o] = ACTIONS(4437), - [anon_sym_0x] = ACTIONS(4437), - [sym_val_date] = ACTIONS(4439), - [anon_sym_DQUOTE] = ACTIONS(4441), - [sym__str_single_quotes] = ACTIONS(4443), - [sym__str_back_ticks] = ACTIONS(4443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4445), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4447), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(6007), - [anon_sym_POUND] = ACTIONS(3), - }, - [2303] = { - [sym_expr_unary] = STATE(485), - [sym__expr_unary_minus] = STATE(481), - [sym_expr_binary] = STATE(485), - [sym__expr_binary_expression] = STATE(516), - [sym_expr_parenthesized] = STATE(485), - [sym__val_range] = STATE(10723), - [sym__value] = STATE(485), - [sym_val_nothing] = STATE(503), - [sym_val_bool] = STATE(435), - [sym_val_variable] = STATE(503), - [sym__var] = STATE(348), - [sym_val_number] = STATE(503), - [sym__val_number_decimal] = STATE(264), - [sym__val_number] = STATE(518), - [sym_val_duration] = STATE(503), - [sym_val_filesize] = STATE(503), - [sym_val_binary] = STATE(503), - [sym_val_string] = STATE(503), - [sym__str_double_quotes] = STATE(517), - [sym_val_interpolated] = STATE(503), - [sym__inter_single_quotes] = STATE(443), - [sym__inter_double_quotes] = STATE(444), - [sym_val_list] = STATE(503), - [sym_val_record] = STATE(503), - [sym_val_table] = STATE(503), - [sym_val_closure] = STATE(503), - [sym_unquoted] = STATE(498), - [sym__unquoted_anonymous_prefix] = STATE(10894), - [sym_comment] = STATE(2303), - [anon_sym_LBRACK] = ACTIONS(4403), - [anon_sym_LPAREN] = ACTIONS(5995), - [anon_sym_DOLLAR] = ACTIONS(5997), - [anon_sym_DASH] = ACTIONS(4409), - [anon_sym_LBRACE] = ACTIONS(4411), - [anon_sym_DOT_DOT] = ACTIONS(5999), - [anon_sym_not] = ACTIONS(4415), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6001), - [anon_sym_DOT_DOT_LT] = ACTIONS(6001), - [anon_sym_null] = ACTIONS(4419), - [anon_sym_true] = ACTIONS(4421), - [anon_sym_false] = ACTIONS(4421), - [aux_sym__val_number_decimal_token1] = ACTIONS(4423), - [aux_sym__val_number_decimal_token2] = ACTIONS(4425), - [anon_sym_DOT2] = ACTIONS(6003), - [aux_sym__val_number_decimal_token3] = ACTIONS(4429), - [aux_sym__val_number_token1] = ACTIONS(4431), - [aux_sym__val_number_token2] = ACTIONS(4431), - [aux_sym__val_number_token3] = ACTIONS(4431), - [aux_sym__val_number_token4] = ACTIONS(6005), - [aux_sym__val_number_token5] = ACTIONS(6005), - [aux_sym__val_number_token6] = ACTIONS(6005), - [anon_sym_0b] = ACTIONS(4435), - [anon_sym_0o] = ACTIONS(4437), - [anon_sym_0x] = ACTIONS(4437), - [sym_val_date] = ACTIONS(4439), - [anon_sym_DQUOTE] = ACTIONS(4441), - [sym__str_single_quotes] = ACTIONS(4443), - [sym__str_back_ticks] = ACTIONS(4443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4445), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4447), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(6007), - [anon_sym_POUND] = ACTIONS(3), - }, - [2304] = { - [sym__expression] = STATE(7399), - [sym_expr_unary] = STATE(5715), - [sym__expr_unary_minus] = STATE(5723), - [sym_expr_binary] = STATE(5715), - [sym__expr_binary_expression] = STATE(6788), - [sym_expr_parenthesized] = STATE(5176), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(5715), - [sym_val_nothing] = STATE(5705), - [sym_val_bool] = STATE(5705), - [sym_val_variable] = STATE(5170), - [sym__var] = STATE(4674), - [sym_val_number] = STATE(5705), - [sym__val_number_decimal] = STATE(4718), - [sym__val_number] = STATE(5875), - [sym_val_duration] = STATE(5705), - [sym_val_filesize] = STATE(5705), - [sym_val_binary] = STATE(5705), - [sym_val_string] = STATE(5705), - [sym__str_double_quotes] = STATE(5788), - [sym_val_interpolated] = STATE(5705), - [sym__inter_single_quotes] = STATE(5899), - [sym__inter_double_quotes] = STATE(5903), - [sym_val_list] = STATE(5705), - [sym_val_record] = STATE(5705), - [sym_val_table] = STATE(5705), - [sym_val_closure] = STATE(5705), - [sym__flag] = STATE(2333), - [sym_short_flag] = STATE(5044), - [sym_long_flag] = STATE(5044), - [sym_long_flag_equals_value] = STATE(5143), - [sym_comment] = STATE(2304), - [anon_sym_SEMI] = ACTIONS(5991), - [anon_sym_LF] = ACTIONS(5993), - [anon_sym_LBRACK] = ACTIONS(5371), - [anon_sym_LPAREN] = ACTIONS(5373), - [anon_sym_RPAREN] = ACTIONS(5991), - [anon_sym_PIPE] = ACTIONS(5991), - [anon_sym_DOLLAR] = ACTIONS(3317), - [anon_sym_DASH_DASH] = ACTIONS(5375), - [anon_sym_DASH] = ACTIONS(5377), - [anon_sym_LBRACE] = ACTIONS(5379), - [anon_sym_RBRACE] = ACTIONS(5991), - [anon_sym_DOT_DOT] = ACTIONS(5381), - [anon_sym_not] = ACTIONS(5383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5385), - [anon_sym_DOT_DOT_LT] = ACTIONS(5385), - [anon_sym_null] = ACTIONS(5387), - [anon_sym_true] = ACTIONS(5389), - [anon_sym_false] = ACTIONS(5389), - [aux_sym__val_number_decimal_token1] = ACTIONS(5391), - [aux_sym__val_number_decimal_token2] = ACTIONS(5391), - [anon_sym_DOT2] = ACTIONS(5393), - [aux_sym__val_number_decimal_token3] = ACTIONS(5395), - [aux_sym__val_number_token1] = ACTIONS(5397), - [aux_sym__val_number_token2] = ACTIONS(5397), - [aux_sym__val_number_token3] = ACTIONS(5397), - [aux_sym__val_number_token4] = ACTIONS(5397), - [aux_sym__val_number_token5] = ACTIONS(5397), - [aux_sym__val_number_token6] = ACTIONS(5397), - [anon_sym_0b] = ACTIONS(3345), - [anon_sym_0o] = ACTIONS(3347), - [anon_sym_0x] = ACTIONS(3347), - [sym_val_date] = ACTIONS(5399), - [anon_sym_DQUOTE] = ACTIONS(5401), - [sym__str_single_quotes] = ACTIONS(5403), - [sym__str_back_ticks] = ACTIONS(5403), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5405), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5407), - [anon_sym_POUND] = ACTIONS(113), - }, - [2305] = { - [sym__expression] = STATE(7399), - [sym_expr_unary] = STATE(5715), - [sym__expr_unary_minus] = STATE(5723), - [sym_expr_binary] = STATE(5715), - [sym__expr_binary_expression] = STATE(6788), - [sym_expr_parenthesized] = STATE(5176), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(5715), - [sym_val_nothing] = STATE(5705), - [sym_val_bool] = STATE(5705), - [sym_val_variable] = STATE(5170), - [sym__var] = STATE(4674), - [sym_val_number] = STATE(5705), - [sym__val_number_decimal] = STATE(4718), - [sym__val_number] = STATE(5875), - [sym_val_duration] = STATE(5705), - [sym_val_filesize] = STATE(5705), - [sym_val_binary] = STATE(5705), - [sym_val_string] = STATE(5705), - [sym__str_double_quotes] = STATE(5788), - [sym_val_interpolated] = STATE(5705), - [sym__inter_single_quotes] = STATE(5899), - [sym__inter_double_quotes] = STATE(5903), - [sym_val_list] = STATE(5705), - [sym_val_record] = STATE(5705), - [sym_val_table] = STATE(5705), - [sym_val_closure] = STATE(5705), - [sym__flag] = STATE(2334), - [sym_short_flag] = STATE(5044), - [sym_long_flag] = STATE(5044), - [sym_long_flag_equals_value] = STATE(5143), - [sym_comment] = STATE(2305), - [anon_sym_SEMI] = ACTIONS(5991), - [anon_sym_LF] = ACTIONS(5993), - [anon_sym_LBRACK] = ACTIONS(5371), - [anon_sym_LPAREN] = ACTIONS(5373), - [anon_sym_RPAREN] = ACTIONS(5991), - [anon_sym_PIPE] = ACTIONS(5991), - [anon_sym_DOLLAR] = ACTIONS(3317), - [anon_sym_DASH_DASH] = ACTIONS(5375), - [anon_sym_DASH] = ACTIONS(5377), - [anon_sym_LBRACE] = ACTIONS(5379), - [anon_sym_RBRACE] = ACTIONS(5991), - [anon_sym_DOT_DOT] = ACTIONS(5381), - [anon_sym_not] = ACTIONS(5383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5385), - [anon_sym_DOT_DOT_LT] = ACTIONS(5385), - [anon_sym_null] = ACTIONS(5387), - [anon_sym_true] = ACTIONS(5389), - [anon_sym_false] = ACTIONS(5389), - [aux_sym__val_number_decimal_token1] = ACTIONS(5391), - [aux_sym__val_number_decimal_token2] = ACTIONS(5391), - [anon_sym_DOT2] = ACTIONS(5393), - [aux_sym__val_number_decimal_token3] = ACTIONS(5395), - [aux_sym__val_number_token1] = ACTIONS(5397), - [aux_sym__val_number_token2] = ACTIONS(5397), - [aux_sym__val_number_token3] = ACTIONS(5397), - [aux_sym__val_number_token4] = ACTIONS(5397), - [aux_sym__val_number_token5] = ACTIONS(5397), - [aux_sym__val_number_token6] = ACTIONS(5397), - [anon_sym_0b] = ACTIONS(3345), - [anon_sym_0o] = ACTIONS(3347), - [anon_sym_0x] = ACTIONS(3347), - [sym_val_date] = ACTIONS(5399), - [anon_sym_DQUOTE] = ACTIONS(5401), - [sym__str_single_quotes] = ACTIONS(5403), - [sym__str_back_ticks] = ACTIONS(5403), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5405), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5407), - [anon_sym_POUND] = ACTIONS(113), - }, - [2306] = { - [sym__expression] = STATE(7399), - [sym_expr_unary] = STATE(5715), - [sym__expr_unary_minus] = STATE(5723), - [sym_expr_binary] = STATE(5715), - [sym__expr_binary_expression] = STATE(6788), - [sym_expr_parenthesized] = STATE(5176), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(5715), - [sym_val_nothing] = STATE(5705), - [sym_val_bool] = STATE(5705), - [sym_val_variable] = STATE(5170), - [sym__var] = STATE(4674), - [sym_val_number] = STATE(5705), - [sym__val_number_decimal] = STATE(4718), - [sym__val_number] = STATE(5875), - [sym_val_duration] = STATE(5705), - [sym_val_filesize] = STATE(5705), - [sym_val_binary] = STATE(5705), - [sym_val_string] = STATE(5705), - [sym__str_double_quotes] = STATE(5788), - [sym_val_interpolated] = STATE(5705), - [sym__inter_single_quotes] = STATE(5899), - [sym__inter_double_quotes] = STATE(5903), - [sym_val_list] = STATE(5705), - [sym_val_record] = STATE(5705), - [sym_val_table] = STATE(5705), - [sym_val_closure] = STATE(5705), - [sym__flag] = STATE(2335), - [sym_short_flag] = STATE(5044), - [sym_long_flag] = STATE(5044), - [sym_long_flag_equals_value] = STATE(5143), - [sym_comment] = STATE(2306), - [anon_sym_SEMI] = ACTIONS(5991), - [anon_sym_LF] = ACTIONS(5993), - [anon_sym_LBRACK] = ACTIONS(5371), - [anon_sym_LPAREN] = ACTIONS(5373), - [anon_sym_RPAREN] = ACTIONS(5991), - [anon_sym_PIPE] = ACTIONS(5991), - [anon_sym_DOLLAR] = ACTIONS(3317), - [anon_sym_DASH_DASH] = ACTIONS(5375), - [anon_sym_DASH] = ACTIONS(5377), - [anon_sym_LBRACE] = ACTIONS(5379), - [anon_sym_RBRACE] = ACTIONS(5991), - [anon_sym_DOT_DOT] = ACTIONS(5381), - [anon_sym_not] = ACTIONS(5383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5385), - [anon_sym_DOT_DOT_LT] = ACTIONS(5385), - [anon_sym_null] = ACTIONS(5387), - [anon_sym_true] = ACTIONS(5389), - [anon_sym_false] = ACTIONS(5389), - [aux_sym__val_number_decimal_token1] = ACTIONS(5391), - [aux_sym__val_number_decimal_token2] = ACTIONS(5391), - [anon_sym_DOT2] = ACTIONS(5393), - [aux_sym__val_number_decimal_token3] = ACTIONS(5395), - [aux_sym__val_number_token1] = ACTIONS(5397), - [aux_sym__val_number_token2] = ACTIONS(5397), - [aux_sym__val_number_token3] = ACTIONS(5397), - [aux_sym__val_number_token4] = ACTIONS(5397), - [aux_sym__val_number_token5] = ACTIONS(5397), - [aux_sym__val_number_token6] = ACTIONS(5397), - [anon_sym_0b] = ACTIONS(3345), - [anon_sym_0o] = ACTIONS(3347), - [anon_sym_0x] = ACTIONS(3347), - [sym_val_date] = ACTIONS(5399), - [anon_sym_DQUOTE] = ACTIONS(5401), - [sym__str_single_quotes] = ACTIONS(5403), - [sym__str_back_ticks] = ACTIONS(5403), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5405), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5407), - [anon_sym_POUND] = ACTIONS(113), - }, - [2307] = { - [sym_expr_unary] = STATE(2367), - [sym__expr_unary_minus] = STATE(2361), - [sym_expr_binary] = STATE(2367), - [sym__expr_binary_expression] = STATE(2401), - [sym_expr_parenthesized] = STATE(2367), - [sym__val_range] = STATE(10724), - [sym__value] = STATE(2367), - [sym_val_nothing] = STATE(2439), - [sym_val_bool] = STATE(1916), - [sym_val_variable] = STATE(2439), - [sym__var] = STATE(1455), - [sym_val_number] = STATE(2439), - [sym__val_number_decimal] = STATE(1195), - [sym__val_number] = STATE(2441), - [sym_val_duration] = STATE(2439), - [sym_val_filesize] = STATE(2439), - [sym_val_binary] = STATE(2439), - [sym_val_string] = STATE(2439), - [sym__str_double_quotes] = STATE(2440), - [sym_val_interpolated] = STATE(2439), - [sym__inter_single_quotes] = STATE(2453), - [sym__inter_double_quotes] = STATE(2454), - [sym_val_list] = STATE(2439), - [sym_val_record] = STATE(2439), - [sym_val_table] = STATE(2439), - [sym_val_closure] = STATE(2439), - [sym_unquoted] = STATE(2368), - [sym__unquoted_anonymous_prefix] = STATE(10956), - [sym_comment] = STATE(2307), - [anon_sym_LBRACK] = ACTIONS(4481), - [anon_sym_LPAREN] = ACTIONS(6009), - [anon_sym_DOLLAR] = ACTIONS(6011), - [anon_sym_DASH] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4489), - [anon_sym_DOT_DOT] = ACTIONS(6013), - [anon_sym_not] = ACTIONS(4493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6015), - [anon_sym_DOT_DOT_LT] = ACTIONS(6015), - [anon_sym_null] = ACTIONS(4497), - [anon_sym_true] = ACTIONS(4499), - [anon_sym_false] = ACTIONS(4499), - [aux_sym__val_number_decimal_token1] = ACTIONS(4501), - [aux_sym__val_number_decimal_token2] = ACTIONS(4503), - [anon_sym_DOT2] = ACTIONS(6017), - [aux_sym__val_number_decimal_token3] = ACTIONS(4507), - [aux_sym__val_number_token1] = ACTIONS(4509), - [aux_sym__val_number_token2] = ACTIONS(4509), - [aux_sym__val_number_token3] = ACTIONS(4509), - [aux_sym__val_number_token4] = ACTIONS(6019), - [aux_sym__val_number_token5] = ACTIONS(6019), - [aux_sym__val_number_token6] = ACTIONS(6019), - [anon_sym_0b] = ACTIONS(4513), - [anon_sym_0o] = ACTIONS(4515), - [anon_sym_0x] = ACTIONS(4515), - [sym_val_date] = ACTIONS(4517), - [anon_sym_DQUOTE] = ACTIONS(4519), - [sym__str_single_quotes] = ACTIONS(4521), - [sym__str_back_ticks] = ACTIONS(4521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4525), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(6021), - [anon_sym_POUND] = ACTIONS(3), - }, - [2308] = { - [sym_expr_unary] = STATE(2367), - [sym__expr_unary_minus] = STATE(2361), - [sym_expr_binary] = STATE(2367), - [sym__expr_binary_expression] = STATE(2403), - [sym_expr_parenthesized] = STATE(2367), - [sym__val_range] = STATE(10724), - [sym__value] = STATE(2367), - [sym_val_nothing] = STATE(2439), - [sym_val_bool] = STATE(1916), - [sym_val_variable] = STATE(2439), - [sym__var] = STATE(1455), - [sym_val_number] = STATE(2439), - [sym__val_number_decimal] = STATE(1195), - [sym__val_number] = STATE(2441), - [sym_val_duration] = STATE(2439), - [sym_val_filesize] = STATE(2439), - [sym_val_binary] = STATE(2439), - [sym_val_string] = STATE(2439), - [sym__str_double_quotes] = STATE(2440), - [sym_val_interpolated] = STATE(2439), - [sym__inter_single_quotes] = STATE(2453), - [sym__inter_double_quotes] = STATE(2454), - [sym_val_list] = STATE(2439), - [sym_val_record] = STATE(2439), - [sym_val_table] = STATE(2439), - [sym_val_closure] = STATE(2439), - [sym_unquoted] = STATE(2369), - [sym__unquoted_anonymous_prefix] = STATE(10956), - [sym_comment] = STATE(2308), - [anon_sym_LBRACK] = ACTIONS(4481), - [anon_sym_LPAREN] = ACTIONS(6009), - [anon_sym_DOLLAR] = ACTIONS(6011), - [anon_sym_DASH] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4489), - [anon_sym_DOT_DOT] = ACTIONS(6013), - [anon_sym_not] = ACTIONS(4493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6015), - [anon_sym_DOT_DOT_LT] = ACTIONS(6015), - [anon_sym_null] = ACTIONS(4497), - [anon_sym_true] = ACTIONS(4499), - [anon_sym_false] = ACTIONS(4499), - [aux_sym__val_number_decimal_token1] = ACTIONS(4501), - [aux_sym__val_number_decimal_token2] = ACTIONS(4503), - [anon_sym_DOT2] = ACTIONS(6017), - [aux_sym__val_number_decimal_token3] = ACTIONS(4507), - [aux_sym__val_number_token1] = ACTIONS(4509), - [aux_sym__val_number_token2] = ACTIONS(4509), - [aux_sym__val_number_token3] = ACTIONS(4509), - [aux_sym__val_number_token4] = ACTIONS(6019), - [aux_sym__val_number_token5] = ACTIONS(6019), - [aux_sym__val_number_token6] = ACTIONS(6019), - [anon_sym_0b] = ACTIONS(4513), - [anon_sym_0o] = ACTIONS(4515), - [anon_sym_0x] = ACTIONS(4515), - [sym_val_date] = ACTIONS(4517), - [anon_sym_DQUOTE] = ACTIONS(4519), - [sym__str_single_quotes] = ACTIONS(4521), - [sym__str_back_ticks] = ACTIONS(4521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4525), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(6021), - [anon_sym_POUND] = ACTIONS(3), - }, - [2309] = { - [sym_expr_unary] = STATE(2367), - [sym__expr_unary_minus] = STATE(2361), - [sym_expr_binary] = STATE(2367), - [sym__expr_binary_expression] = STATE(2404), - [sym_expr_parenthesized] = STATE(2367), - [sym__val_range] = STATE(10724), - [sym__value] = STATE(2367), - [sym_val_nothing] = STATE(2439), - [sym_val_bool] = STATE(1916), - [sym_val_variable] = STATE(2439), - [sym__var] = STATE(1455), - [sym_val_number] = STATE(2439), - [sym__val_number_decimal] = STATE(1195), - [sym__val_number] = STATE(2441), - [sym_val_duration] = STATE(2439), - [sym_val_filesize] = STATE(2439), - [sym_val_binary] = STATE(2439), - [sym_val_string] = STATE(2439), - [sym__str_double_quotes] = STATE(2440), - [sym_val_interpolated] = STATE(2439), - [sym__inter_single_quotes] = STATE(2453), - [sym__inter_double_quotes] = STATE(2454), - [sym_val_list] = STATE(2439), - [sym_val_record] = STATE(2439), - [sym_val_table] = STATE(2439), - [sym_val_closure] = STATE(2439), - [sym_unquoted] = STATE(2370), - [sym__unquoted_anonymous_prefix] = STATE(10956), - [sym_comment] = STATE(2309), - [anon_sym_LBRACK] = ACTIONS(4481), - [anon_sym_LPAREN] = ACTIONS(6009), - [anon_sym_DOLLAR] = ACTIONS(6011), - [anon_sym_DASH] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4489), - [anon_sym_DOT_DOT] = ACTIONS(6013), - [anon_sym_not] = ACTIONS(4493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6015), - [anon_sym_DOT_DOT_LT] = ACTIONS(6015), - [anon_sym_null] = ACTIONS(4497), - [anon_sym_true] = ACTIONS(4499), - [anon_sym_false] = ACTIONS(4499), - [aux_sym__val_number_decimal_token1] = ACTIONS(4501), - [aux_sym__val_number_decimal_token2] = ACTIONS(4503), - [anon_sym_DOT2] = ACTIONS(6017), - [aux_sym__val_number_decimal_token3] = ACTIONS(4507), - [aux_sym__val_number_token1] = ACTIONS(4509), - [aux_sym__val_number_token2] = ACTIONS(4509), - [aux_sym__val_number_token3] = ACTIONS(4509), - [aux_sym__val_number_token4] = ACTIONS(6019), - [aux_sym__val_number_token5] = ACTIONS(6019), - [aux_sym__val_number_token6] = ACTIONS(6019), - [anon_sym_0b] = ACTIONS(4513), - [anon_sym_0o] = ACTIONS(4515), - [anon_sym_0x] = ACTIONS(4515), - [sym_val_date] = ACTIONS(4517), - [anon_sym_DQUOTE] = ACTIONS(4519), - [sym__str_single_quotes] = ACTIONS(4521), - [sym__str_back_ticks] = ACTIONS(4521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4525), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(6021), - [anon_sym_POUND] = ACTIONS(3), - }, - [2310] = { - [sym_expr_unary] = STATE(2367), - [sym__expr_unary_minus] = STATE(2361), - [sym_expr_binary] = STATE(2367), - [sym__expr_binary_expression] = STATE(2405), - [sym_expr_parenthesized] = STATE(2367), - [sym__val_range] = STATE(10724), - [sym__value] = STATE(2367), - [sym_val_nothing] = STATE(2439), - [sym_val_bool] = STATE(1916), - [sym_val_variable] = STATE(2439), - [sym__var] = STATE(1455), - [sym_val_number] = STATE(2439), - [sym__val_number_decimal] = STATE(1195), - [sym__val_number] = STATE(2441), - [sym_val_duration] = STATE(2439), - [sym_val_filesize] = STATE(2439), - [sym_val_binary] = STATE(2439), - [sym_val_string] = STATE(2439), - [sym__str_double_quotes] = STATE(2440), - [sym_val_interpolated] = STATE(2439), - [sym__inter_single_quotes] = STATE(2453), - [sym__inter_double_quotes] = STATE(2454), - [sym_val_list] = STATE(2439), - [sym_val_record] = STATE(2439), - [sym_val_table] = STATE(2439), - [sym_val_closure] = STATE(2439), - [sym_unquoted] = STATE(2371), - [sym__unquoted_anonymous_prefix] = STATE(10956), - [sym_comment] = STATE(2310), - [anon_sym_LBRACK] = ACTIONS(4481), - [anon_sym_LPAREN] = ACTIONS(6009), - [anon_sym_DOLLAR] = ACTIONS(6011), - [anon_sym_DASH] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4489), - [anon_sym_DOT_DOT] = ACTIONS(6013), - [anon_sym_not] = ACTIONS(4493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6015), - [anon_sym_DOT_DOT_LT] = ACTIONS(6015), - [anon_sym_null] = ACTIONS(4497), - [anon_sym_true] = ACTIONS(4499), - [anon_sym_false] = ACTIONS(4499), - [aux_sym__val_number_decimal_token1] = ACTIONS(4501), - [aux_sym__val_number_decimal_token2] = ACTIONS(4503), - [anon_sym_DOT2] = ACTIONS(6017), - [aux_sym__val_number_decimal_token3] = ACTIONS(4507), - [aux_sym__val_number_token1] = ACTIONS(4509), - [aux_sym__val_number_token2] = ACTIONS(4509), - [aux_sym__val_number_token3] = ACTIONS(4509), - [aux_sym__val_number_token4] = ACTIONS(6019), - [aux_sym__val_number_token5] = ACTIONS(6019), - [aux_sym__val_number_token6] = ACTIONS(6019), - [anon_sym_0b] = ACTIONS(4513), - [anon_sym_0o] = ACTIONS(4515), - [anon_sym_0x] = ACTIONS(4515), - [sym_val_date] = ACTIONS(4517), - [anon_sym_DQUOTE] = ACTIONS(4519), - [sym__str_single_quotes] = ACTIONS(4521), - [sym__str_back_ticks] = ACTIONS(4521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4525), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(6021), - [anon_sym_POUND] = ACTIONS(3), - }, - [2311] = { - [sym_expr_unary] = STATE(2367), - [sym__expr_unary_minus] = STATE(2361), - [sym_expr_binary] = STATE(2367), - [sym__expr_binary_expression] = STATE(2406), - [sym_expr_parenthesized] = STATE(2367), - [sym__val_range] = STATE(10724), - [sym__value] = STATE(2367), - [sym_val_nothing] = STATE(2439), - [sym_val_bool] = STATE(1916), - [sym_val_variable] = STATE(2439), - [sym__var] = STATE(1455), - [sym_val_number] = STATE(2439), - [sym__val_number_decimal] = STATE(1195), - [sym__val_number] = STATE(2441), - [sym_val_duration] = STATE(2439), - [sym_val_filesize] = STATE(2439), - [sym_val_binary] = STATE(2439), - [sym_val_string] = STATE(2439), - [sym__str_double_quotes] = STATE(2440), - [sym_val_interpolated] = STATE(2439), - [sym__inter_single_quotes] = STATE(2453), - [sym__inter_double_quotes] = STATE(2454), - [sym_val_list] = STATE(2439), - [sym_val_record] = STATE(2439), - [sym_val_table] = STATE(2439), - [sym_val_closure] = STATE(2439), - [sym_unquoted] = STATE(2372), - [sym__unquoted_anonymous_prefix] = STATE(10956), - [sym_comment] = STATE(2311), - [anon_sym_LBRACK] = ACTIONS(4481), - [anon_sym_LPAREN] = ACTIONS(6009), - [anon_sym_DOLLAR] = ACTIONS(6011), - [anon_sym_DASH] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4489), - [anon_sym_DOT_DOT] = ACTIONS(6013), - [anon_sym_not] = ACTIONS(4493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6015), - [anon_sym_DOT_DOT_LT] = ACTIONS(6015), - [anon_sym_null] = ACTIONS(4497), - [anon_sym_true] = ACTIONS(4499), - [anon_sym_false] = ACTIONS(4499), - [aux_sym__val_number_decimal_token1] = ACTIONS(4501), - [aux_sym__val_number_decimal_token2] = ACTIONS(4503), - [anon_sym_DOT2] = ACTIONS(6017), - [aux_sym__val_number_decimal_token3] = ACTIONS(4507), - [aux_sym__val_number_token1] = ACTIONS(4509), - [aux_sym__val_number_token2] = ACTIONS(4509), - [aux_sym__val_number_token3] = ACTIONS(4509), - [aux_sym__val_number_token4] = ACTIONS(6019), - [aux_sym__val_number_token5] = ACTIONS(6019), - [aux_sym__val_number_token6] = ACTIONS(6019), - [anon_sym_0b] = ACTIONS(4513), - [anon_sym_0o] = ACTIONS(4515), - [anon_sym_0x] = ACTIONS(4515), - [sym_val_date] = ACTIONS(4517), - [anon_sym_DQUOTE] = ACTIONS(4519), - [sym__str_single_quotes] = ACTIONS(4521), - [sym__str_back_ticks] = ACTIONS(4521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4525), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(6021), - [anon_sym_POUND] = ACTIONS(3), - }, - [2312] = { - [sym_expr_unary] = STATE(2367), - [sym__expr_unary_minus] = STATE(2361), - [sym_expr_binary] = STATE(2367), - [sym__expr_binary_expression] = STATE(2407), - [sym_expr_parenthesized] = STATE(2367), - [sym__val_range] = STATE(10724), - [sym__value] = STATE(2367), - [sym_val_nothing] = STATE(2439), - [sym_val_bool] = STATE(1916), - [sym_val_variable] = STATE(2439), - [sym__var] = STATE(1455), - [sym_val_number] = STATE(2439), - [sym__val_number_decimal] = STATE(1195), - [sym__val_number] = STATE(2441), - [sym_val_duration] = STATE(2439), - [sym_val_filesize] = STATE(2439), - [sym_val_binary] = STATE(2439), - [sym_val_string] = STATE(2439), - [sym__str_double_quotes] = STATE(2440), - [sym_val_interpolated] = STATE(2439), - [sym__inter_single_quotes] = STATE(2453), - [sym__inter_double_quotes] = STATE(2454), - [sym_val_list] = STATE(2439), - [sym_val_record] = STATE(2439), - [sym_val_table] = STATE(2439), - [sym_val_closure] = STATE(2439), - [sym_unquoted] = STATE(2373), - [sym__unquoted_anonymous_prefix] = STATE(10956), - [sym_comment] = STATE(2312), - [anon_sym_LBRACK] = ACTIONS(4481), - [anon_sym_LPAREN] = ACTIONS(6009), - [anon_sym_DOLLAR] = ACTIONS(6011), - [anon_sym_DASH] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4489), - [anon_sym_DOT_DOT] = ACTIONS(6013), - [anon_sym_not] = ACTIONS(4493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6015), - [anon_sym_DOT_DOT_LT] = ACTIONS(6015), - [anon_sym_null] = ACTIONS(4497), - [anon_sym_true] = ACTIONS(4499), - [anon_sym_false] = ACTIONS(4499), - [aux_sym__val_number_decimal_token1] = ACTIONS(4501), - [aux_sym__val_number_decimal_token2] = ACTIONS(4503), - [anon_sym_DOT2] = ACTIONS(6017), - [aux_sym__val_number_decimal_token3] = ACTIONS(4507), - [aux_sym__val_number_token1] = ACTIONS(4509), - [aux_sym__val_number_token2] = ACTIONS(4509), - [aux_sym__val_number_token3] = ACTIONS(4509), - [aux_sym__val_number_token4] = ACTIONS(6019), - [aux_sym__val_number_token5] = ACTIONS(6019), - [aux_sym__val_number_token6] = ACTIONS(6019), - [anon_sym_0b] = ACTIONS(4513), - [anon_sym_0o] = ACTIONS(4515), - [anon_sym_0x] = ACTIONS(4515), - [sym_val_date] = ACTIONS(4517), - [anon_sym_DQUOTE] = ACTIONS(4519), - [sym__str_single_quotes] = ACTIONS(4521), - [sym__str_back_ticks] = ACTIONS(4521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4525), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(6021), - [anon_sym_POUND] = ACTIONS(3), - }, - [2313] = { - [sym_expr_unary] = STATE(2367), - [sym__expr_unary_minus] = STATE(2361), - [sym_expr_binary] = STATE(2367), - [sym__expr_binary_expression] = STATE(2408), - [sym_expr_parenthesized] = STATE(2367), - [sym__val_range] = STATE(10724), - [sym__value] = STATE(2367), - [sym_val_nothing] = STATE(2439), - [sym_val_bool] = STATE(1916), - [sym_val_variable] = STATE(2439), - [sym__var] = STATE(1455), - [sym_val_number] = STATE(2439), - [sym__val_number_decimal] = STATE(1195), - [sym__val_number] = STATE(2441), - [sym_val_duration] = STATE(2439), - [sym_val_filesize] = STATE(2439), - [sym_val_binary] = STATE(2439), - [sym_val_string] = STATE(2439), - [sym__str_double_quotes] = STATE(2440), - [sym_val_interpolated] = STATE(2439), - [sym__inter_single_quotes] = STATE(2453), - [sym__inter_double_quotes] = STATE(2454), - [sym_val_list] = STATE(2439), - [sym_val_record] = STATE(2439), - [sym_val_table] = STATE(2439), - [sym_val_closure] = STATE(2439), - [sym_unquoted] = STATE(2374), - [sym__unquoted_anonymous_prefix] = STATE(10956), - [sym_comment] = STATE(2313), - [anon_sym_LBRACK] = ACTIONS(4481), - [anon_sym_LPAREN] = ACTIONS(6009), - [anon_sym_DOLLAR] = ACTIONS(6011), - [anon_sym_DASH] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4489), - [anon_sym_DOT_DOT] = ACTIONS(6013), - [anon_sym_not] = ACTIONS(4493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6015), - [anon_sym_DOT_DOT_LT] = ACTIONS(6015), - [anon_sym_null] = ACTIONS(4497), - [anon_sym_true] = ACTIONS(4499), - [anon_sym_false] = ACTIONS(4499), - [aux_sym__val_number_decimal_token1] = ACTIONS(4501), - [aux_sym__val_number_decimal_token2] = ACTIONS(4503), - [anon_sym_DOT2] = ACTIONS(6017), - [aux_sym__val_number_decimal_token3] = ACTIONS(4507), - [aux_sym__val_number_token1] = ACTIONS(4509), - [aux_sym__val_number_token2] = ACTIONS(4509), - [aux_sym__val_number_token3] = ACTIONS(4509), - [aux_sym__val_number_token4] = ACTIONS(6019), - [aux_sym__val_number_token5] = ACTIONS(6019), - [aux_sym__val_number_token6] = ACTIONS(6019), - [anon_sym_0b] = ACTIONS(4513), - [anon_sym_0o] = ACTIONS(4515), - [anon_sym_0x] = ACTIONS(4515), - [sym_val_date] = ACTIONS(4517), - [anon_sym_DQUOTE] = ACTIONS(4519), - [sym__str_single_quotes] = ACTIONS(4521), - [sym__str_back_ticks] = ACTIONS(4521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4525), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(6021), - [anon_sym_POUND] = ACTIONS(3), - }, - [2314] = { - [sym_expr_unary] = STATE(2367), - [sym__expr_unary_minus] = STATE(2361), - [sym_expr_binary] = STATE(2367), - [sym__expr_binary_expression] = STATE(2409), - [sym_expr_parenthesized] = STATE(2367), - [sym__val_range] = STATE(10724), - [sym__value] = STATE(2367), - [sym_val_nothing] = STATE(2439), - [sym_val_bool] = STATE(1916), - [sym_val_variable] = STATE(2439), - [sym__var] = STATE(1455), - [sym_val_number] = STATE(2439), - [sym__val_number_decimal] = STATE(1195), - [sym__val_number] = STATE(2441), - [sym_val_duration] = STATE(2439), - [sym_val_filesize] = STATE(2439), - [sym_val_binary] = STATE(2439), - [sym_val_string] = STATE(2439), - [sym__str_double_quotes] = STATE(2440), - [sym_val_interpolated] = STATE(2439), - [sym__inter_single_quotes] = STATE(2453), - [sym__inter_double_quotes] = STATE(2454), - [sym_val_list] = STATE(2439), - [sym_val_record] = STATE(2439), - [sym_val_table] = STATE(2439), - [sym_val_closure] = STATE(2439), - [sym_unquoted] = STATE(2375), - [sym__unquoted_anonymous_prefix] = STATE(10956), - [sym_comment] = STATE(2314), - [anon_sym_LBRACK] = ACTIONS(4481), - [anon_sym_LPAREN] = ACTIONS(6009), - [anon_sym_DOLLAR] = ACTIONS(6011), - [anon_sym_DASH] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4489), - [anon_sym_DOT_DOT] = ACTIONS(6013), - [anon_sym_not] = ACTIONS(4493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6015), - [anon_sym_DOT_DOT_LT] = ACTIONS(6015), - [anon_sym_null] = ACTIONS(4497), - [anon_sym_true] = ACTIONS(4499), - [anon_sym_false] = ACTIONS(4499), - [aux_sym__val_number_decimal_token1] = ACTIONS(4501), - [aux_sym__val_number_decimal_token2] = ACTIONS(4503), - [anon_sym_DOT2] = ACTIONS(6017), - [aux_sym__val_number_decimal_token3] = ACTIONS(4507), - [aux_sym__val_number_token1] = ACTIONS(4509), - [aux_sym__val_number_token2] = ACTIONS(4509), - [aux_sym__val_number_token3] = ACTIONS(4509), - [aux_sym__val_number_token4] = ACTIONS(6019), - [aux_sym__val_number_token5] = ACTIONS(6019), - [aux_sym__val_number_token6] = ACTIONS(6019), - [anon_sym_0b] = ACTIONS(4513), - [anon_sym_0o] = ACTIONS(4515), - [anon_sym_0x] = ACTIONS(4515), - [sym_val_date] = ACTIONS(4517), - [anon_sym_DQUOTE] = ACTIONS(4519), - [sym__str_single_quotes] = ACTIONS(4521), - [sym__str_back_ticks] = ACTIONS(4521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4525), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(6021), - [anon_sym_POUND] = ACTIONS(3), - }, - [2315] = { - [sym_expr_unary] = STATE(2367), - [sym__expr_unary_minus] = STATE(2361), - [sym_expr_binary] = STATE(2367), - [sym__expr_binary_expression] = STATE(2410), - [sym_expr_parenthesized] = STATE(2367), - [sym__val_range] = STATE(10724), - [sym__value] = STATE(2367), - [sym_val_nothing] = STATE(2439), - [sym_val_bool] = STATE(1916), - [sym_val_variable] = STATE(2439), - [sym__var] = STATE(1455), - [sym_val_number] = STATE(2439), - [sym__val_number_decimal] = STATE(1195), - [sym__val_number] = STATE(2441), - [sym_val_duration] = STATE(2439), - [sym_val_filesize] = STATE(2439), - [sym_val_binary] = STATE(2439), - [sym_val_string] = STATE(2439), - [sym__str_double_quotes] = STATE(2440), - [sym_val_interpolated] = STATE(2439), - [sym__inter_single_quotes] = STATE(2453), - [sym__inter_double_quotes] = STATE(2454), - [sym_val_list] = STATE(2439), - [sym_val_record] = STATE(2439), - [sym_val_table] = STATE(2439), - [sym_val_closure] = STATE(2439), - [sym_unquoted] = STATE(2376), - [sym__unquoted_anonymous_prefix] = STATE(10956), - [sym_comment] = STATE(2315), - [anon_sym_LBRACK] = ACTIONS(4481), - [anon_sym_LPAREN] = ACTIONS(6009), - [anon_sym_DOLLAR] = ACTIONS(6011), - [anon_sym_DASH] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4489), - [anon_sym_DOT_DOT] = ACTIONS(6013), - [anon_sym_not] = ACTIONS(4493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6015), - [anon_sym_DOT_DOT_LT] = ACTIONS(6015), - [anon_sym_null] = ACTIONS(4497), - [anon_sym_true] = ACTIONS(4499), - [anon_sym_false] = ACTIONS(4499), - [aux_sym__val_number_decimal_token1] = ACTIONS(4501), - [aux_sym__val_number_decimal_token2] = ACTIONS(4503), - [anon_sym_DOT2] = ACTIONS(6017), - [aux_sym__val_number_decimal_token3] = ACTIONS(4507), - [aux_sym__val_number_token1] = ACTIONS(4509), - [aux_sym__val_number_token2] = ACTIONS(4509), - [aux_sym__val_number_token3] = ACTIONS(4509), - [aux_sym__val_number_token4] = ACTIONS(6019), - [aux_sym__val_number_token5] = ACTIONS(6019), - [aux_sym__val_number_token6] = ACTIONS(6019), - [anon_sym_0b] = ACTIONS(4513), - [anon_sym_0o] = ACTIONS(4515), - [anon_sym_0x] = ACTIONS(4515), - [sym_val_date] = ACTIONS(4517), - [anon_sym_DQUOTE] = ACTIONS(4519), - [sym__str_single_quotes] = ACTIONS(4521), - [sym__str_back_ticks] = ACTIONS(4521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4525), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(6021), - [anon_sym_POUND] = ACTIONS(3), - }, - [2316] = { - [sym_expr_unary] = STATE(2367), - [sym__expr_unary_minus] = STATE(2361), - [sym_expr_binary] = STATE(2367), - [sym__expr_binary_expression] = STATE(2411), - [sym_expr_parenthesized] = STATE(2367), - [sym__val_range] = STATE(10724), - [sym__value] = STATE(2367), - [sym_val_nothing] = STATE(2439), - [sym_val_bool] = STATE(1916), - [sym_val_variable] = STATE(2439), - [sym__var] = STATE(1455), - [sym_val_number] = STATE(2439), - [sym__val_number_decimal] = STATE(1195), - [sym__val_number] = STATE(2441), - [sym_val_duration] = STATE(2439), - [sym_val_filesize] = STATE(2439), - [sym_val_binary] = STATE(2439), - [sym_val_string] = STATE(2439), - [sym__str_double_quotes] = STATE(2440), - [sym_val_interpolated] = STATE(2439), - [sym__inter_single_quotes] = STATE(2453), - [sym__inter_double_quotes] = STATE(2454), - [sym_val_list] = STATE(2439), - [sym_val_record] = STATE(2439), - [sym_val_table] = STATE(2439), - [sym_val_closure] = STATE(2439), - [sym_unquoted] = STATE(2377), - [sym__unquoted_anonymous_prefix] = STATE(10956), - [sym_comment] = STATE(2316), - [anon_sym_LBRACK] = ACTIONS(4481), - [anon_sym_LPAREN] = ACTIONS(6009), - [anon_sym_DOLLAR] = ACTIONS(6011), - [anon_sym_DASH] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4489), - [anon_sym_DOT_DOT] = ACTIONS(6013), - [anon_sym_not] = ACTIONS(4493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6015), - [anon_sym_DOT_DOT_LT] = ACTIONS(6015), - [anon_sym_null] = ACTIONS(4497), - [anon_sym_true] = ACTIONS(4499), - [anon_sym_false] = ACTIONS(4499), - [aux_sym__val_number_decimal_token1] = ACTIONS(4501), - [aux_sym__val_number_decimal_token2] = ACTIONS(4503), - [anon_sym_DOT2] = ACTIONS(6017), - [aux_sym__val_number_decimal_token3] = ACTIONS(4507), - [aux_sym__val_number_token1] = ACTIONS(4509), - [aux_sym__val_number_token2] = ACTIONS(4509), - [aux_sym__val_number_token3] = ACTIONS(4509), - [aux_sym__val_number_token4] = ACTIONS(6019), - [aux_sym__val_number_token5] = ACTIONS(6019), - [aux_sym__val_number_token6] = ACTIONS(6019), - [anon_sym_0b] = ACTIONS(4513), - [anon_sym_0o] = ACTIONS(4515), - [anon_sym_0x] = ACTIONS(4515), - [sym_val_date] = ACTIONS(4517), - [anon_sym_DQUOTE] = ACTIONS(4519), - [sym__str_single_quotes] = ACTIONS(4521), - [sym__str_back_ticks] = ACTIONS(4521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4525), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(6021), - [anon_sym_POUND] = ACTIONS(3), - }, - [2317] = { - [sym_expr_unary] = STATE(2367), - [sym__expr_unary_minus] = STATE(2361), - [sym_expr_binary] = STATE(2367), - [sym__expr_binary_expression] = STATE(2412), - [sym_expr_parenthesized] = STATE(2367), - [sym__val_range] = STATE(10724), - [sym__value] = STATE(2367), - [sym_val_nothing] = STATE(2439), - [sym_val_bool] = STATE(1916), - [sym_val_variable] = STATE(2439), - [sym__var] = STATE(1455), - [sym_val_number] = STATE(2439), - [sym__val_number_decimal] = STATE(1195), - [sym__val_number] = STATE(2441), - [sym_val_duration] = STATE(2439), - [sym_val_filesize] = STATE(2439), - [sym_val_binary] = STATE(2439), - [sym_val_string] = STATE(2439), - [sym__str_double_quotes] = STATE(2440), - [sym_val_interpolated] = STATE(2439), - [sym__inter_single_quotes] = STATE(2453), - [sym__inter_double_quotes] = STATE(2454), - [sym_val_list] = STATE(2439), - [sym_val_record] = STATE(2439), - [sym_val_table] = STATE(2439), - [sym_val_closure] = STATE(2439), - [sym_unquoted] = STATE(2379), - [sym__unquoted_anonymous_prefix] = STATE(10956), - [sym_comment] = STATE(2317), - [anon_sym_LBRACK] = ACTIONS(4481), - [anon_sym_LPAREN] = ACTIONS(6009), - [anon_sym_DOLLAR] = ACTIONS(6011), - [anon_sym_DASH] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4489), - [anon_sym_DOT_DOT] = ACTIONS(6013), - [anon_sym_not] = ACTIONS(4493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6015), - [anon_sym_DOT_DOT_LT] = ACTIONS(6015), - [anon_sym_null] = ACTIONS(4497), - [anon_sym_true] = ACTIONS(4499), - [anon_sym_false] = ACTIONS(4499), - [aux_sym__val_number_decimal_token1] = ACTIONS(4501), - [aux_sym__val_number_decimal_token2] = ACTIONS(4503), - [anon_sym_DOT2] = ACTIONS(6017), - [aux_sym__val_number_decimal_token3] = ACTIONS(4507), - [aux_sym__val_number_token1] = ACTIONS(4509), - [aux_sym__val_number_token2] = ACTIONS(4509), - [aux_sym__val_number_token3] = ACTIONS(4509), - [aux_sym__val_number_token4] = ACTIONS(6019), - [aux_sym__val_number_token5] = ACTIONS(6019), - [aux_sym__val_number_token6] = ACTIONS(6019), - [anon_sym_0b] = ACTIONS(4513), - [anon_sym_0o] = ACTIONS(4515), - [anon_sym_0x] = ACTIONS(4515), - [sym_val_date] = ACTIONS(4517), - [anon_sym_DQUOTE] = ACTIONS(4519), - [sym__str_single_quotes] = ACTIONS(4521), - [sym__str_back_ticks] = ACTIONS(4521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4525), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(6021), - [anon_sym_POUND] = ACTIONS(3), - }, - [2318] = { - [sym_expr_unary] = STATE(2367), - [sym__expr_unary_minus] = STATE(2361), - [sym_expr_binary] = STATE(2367), - [sym__expr_binary_expression] = STATE(2413), - [sym_expr_parenthesized] = STATE(2367), - [sym__val_range] = STATE(10724), - [sym__value] = STATE(2367), - [sym_val_nothing] = STATE(2439), - [sym_val_bool] = STATE(1916), - [sym_val_variable] = STATE(2439), - [sym__var] = STATE(1455), - [sym_val_number] = STATE(2439), - [sym__val_number_decimal] = STATE(1195), - [sym__val_number] = STATE(2441), - [sym_val_duration] = STATE(2439), - [sym_val_filesize] = STATE(2439), - [sym_val_binary] = STATE(2439), - [sym_val_string] = STATE(2439), - [sym__str_double_quotes] = STATE(2440), - [sym_val_interpolated] = STATE(2439), - [sym__inter_single_quotes] = STATE(2453), - [sym__inter_double_quotes] = STATE(2454), - [sym_val_list] = STATE(2439), - [sym_val_record] = STATE(2439), - [sym_val_table] = STATE(2439), - [sym_val_closure] = STATE(2439), - [sym_unquoted] = STATE(2381), - [sym__unquoted_anonymous_prefix] = STATE(10956), - [sym_comment] = STATE(2318), - [anon_sym_LBRACK] = ACTIONS(4481), - [anon_sym_LPAREN] = ACTIONS(6009), - [anon_sym_DOLLAR] = ACTIONS(6011), - [anon_sym_DASH] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4489), - [anon_sym_DOT_DOT] = ACTIONS(6013), - [anon_sym_not] = ACTIONS(4493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6015), - [anon_sym_DOT_DOT_LT] = ACTIONS(6015), - [anon_sym_null] = ACTIONS(4497), - [anon_sym_true] = ACTIONS(4499), - [anon_sym_false] = ACTIONS(4499), - [aux_sym__val_number_decimal_token1] = ACTIONS(4501), - [aux_sym__val_number_decimal_token2] = ACTIONS(4503), - [anon_sym_DOT2] = ACTIONS(6017), - [aux_sym__val_number_decimal_token3] = ACTIONS(4507), - [aux_sym__val_number_token1] = ACTIONS(4509), - [aux_sym__val_number_token2] = ACTIONS(4509), - [aux_sym__val_number_token3] = ACTIONS(4509), - [aux_sym__val_number_token4] = ACTIONS(6019), - [aux_sym__val_number_token5] = ACTIONS(6019), - [aux_sym__val_number_token6] = ACTIONS(6019), - [anon_sym_0b] = ACTIONS(4513), - [anon_sym_0o] = ACTIONS(4515), - [anon_sym_0x] = ACTIONS(4515), - [sym_val_date] = ACTIONS(4517), - [anon_sym_DQUOTE] = ACTIONS(4519), - [sym__str_single_quotes] = ACTIONS(4521), - [sym__str_back_ticks] = ACTIONS(4521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4525), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(6021), - [anon_sym_POUND] = ACTIONS(3), - }, - [2319] = { - [sym_expr_unary] = STATE(2367), - [sym__expr_unary_minus] = STATE(2361), - [sym_expr_binary] = STATE(2367), - [sym__expr_binary_expression] = STATE(2414), - [sym_expr_parenthesized] = STATE(2367), - [sym__val_range] = STATE(10724), - [sym__value] = STATE(2367), - [sym_val_nothing] = STATE(2439), - [sym_val_bool] = STATE(1916), - [sym_val_variable] = STATE(2439), - [sym__var] = STATE(1455), - [sym_val_number] = STATE(2439), - [sym__val_number_decimal] = STATE(1195), - [sym__val_number] = STATE(2441), - [sym_val_duration] = STATE(2439), - [sym_val_filesize] = STATE(2439), - [sym_val_binary] = STATE(2439), - [sym_val_string] = STATE(2439), - [sym__str_double_quotes] = STATE(2440), - [sym_val_interpolated] = STATE(2439), - [sym__inter_single_quotes] = STATE(2453), - [sym__inter_double_quotes] = STATE(2454), - [sym_val_list] = STATE(2439), - [sym_val_record] = STATE(2439), - [sym_val_table] = STATE(2439), - [sym_val_closure] = STATE(2439), - [sym_unquoted] = STATE(2383), - [sym__unquoted_anonymous_prefix] = STATE(10956), - [sym_comment] = STATE(2319), - [anon_sym_LBRACK] = ACTIONS(4481), - [anon_sym_LPAREN] = ACTIONS(6009), - [anon_sym_DOLLAR] = ACTIONS(6011), - [anon_sym_DASH] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4489), - [anon_sym_DOT_DOT] = ACTIONS(6013), - [anon_sym_not] = ACTIONS(4493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6015), - [anon_sym_DOT_DOT_LT] = ACTIONS(6015), - [anon_sym_null] = ACTIONS(4497), - [anon_sym_true] = ACTIONS(4499), - [anon_sym_false] = ACTIONS(4499), - [aux_sym__val_number_decimal_token1] = ACTIONS(4501), - [aux_sym__val_number_decimal_token2] = ACTIONS(4503), - [anon_sym_DOT2] = ACTIONS(6017), - [aux_sym__val_number_decimal_token3] = ACTIONS(4507), - [aux_sym__val_number_token1] = ACTIONS(4509), - [aux_sym__val_number_token2] = ACTIONS(4509), - [aux_sym__val_number_token3] = ACTIONS(4509), - [aux_sym__val_number_token4] = ACTIONS(6019), - [aux_sym__val_number_token5] = ACTIONS(6019), - [aux_sym__val_number_token6] = ACTIONS(6019), - [anon_sym_0b] = ACTIONS(4513), - [anon_sym_0o] = ACTIONS(4515), - [anon_sym_0x] = ACTIONS(4515), - [sym_val_date] = ACTIONS(4517), - [anon_sym_DQUOTE] = ACTIONS(4519), - [sym__str_single_quotes] = ACTIONS(4521), - [sym__str_back_ticks] = ACTIONS(4521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4525), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(6021), - [anon_sym_POUND] = ACTIONS(3), - }, - [2320] = { - [sym_expr_unary] = STATE(1823), - [sym__expr_unary_minus] = STATE(1818), - [sym_expr_binary] = STATE(1823), - [sym__expr_binary_expression] = STATE(1847), - [sym_expr_parenthesized] = STATE(1823), - [sym__val_range] = STATE(10726), - [sym__value] = STATE(1823), - [sym_val_nothing] = STATE(1872), - [sym_val_bool] = STATE(1606), - [sym_val_variable] = STATE(1872), - [sym__var] = STATE(1359), - [sym_val_number] = STATE(1872), - [sym__val_number_decimal] = STATE(1151), - [sym__val_number] = STATE(1873), - [sym_val_duration] = STATE(1872), - [sym_val_filesize] = STATE(1872), - [sym_val_binary] = STATE(1872), - [sym_val_string] = STATE(1872), - [sym__str_double_quotes] = STATE(1883), - [sym_val_interpolated] = STATE(1872), - [sym__inter_single_quotes] = STATE(1884), - [sym__inter_double_quotes] = STATE(1885), - [sym_val_list] = STATE(1872), - [sym_val_record] = STATE(1872), - [sym_val_table] = STATE(1872), - [sym_val_closure] = STATE(1872), - [sym_unquoted] = STATE(1824), - [sym__unquoted_anonymous_prefix] = STATE(10999), - [sym_comment] = STATE(2320), - [anon_sym_LBRACK] = ACTIONS(4537), - [anon_sym_LPAREN] = ACTIONS(6023), - [anon_sym_DOLLAR] = ACTIONS(6025), - [anon_sym_DASH] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(4545), - [anon_sym_DOT_DOT] = ACTIONS(6027), - [anon_sym_not] = ACTIONS(4549), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6029), - [anon_sym_DOT_DOT_LT] = ACTIONS(6029), - [anon_sym_null] = ACTIONS(4553), - [anon_sym_true] = ACTIONS(4555), - [anon_sym_false] = ACTIONS(4555), - [aux_sym__val_number_decimal_token1] = ACTIONS(4557), - [aux_sym__val_number_decimal_token2] = ACTIONS(4559), - [anon_sym_DOT2] = ACTIONS(6031), - [aux_sym__val_number_decimal_token3] = ACTIONS(4563), - [aux_sym__val_number_token1] = ACTIONS(4565), - [aux_sym__val_number_token2] = ACTIONS(4565), - [aux_sym__val_number_token3] = ACTIONS(4565), - [aux_sym__val_number_token4] = ACTIONS(6033), - [aux_sym__val_number_token5] = ACTIONS(6033), - [aux_sym__val_number_token6] = ACTIONS(6033), - [anon_sym_0b] = ACTIONS(4569), - [anon_sym_0o] = ACTIONS(4571), - [anon_sym_0x] = ACTIONS(4571), - [sym_val_date] = ACTIONS(4573), - [anon_sym_DQUOTE] = ACTIONS(4575), - [sym__str_single_quotes] = ACTIONS(4577), - [sym__str_back_ticks] = ACTIONS(4577), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4581), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(6035), - [anon_sym_POUND] = ACTIONS(3), - }, - [2321] = { - [sym_expr_unary] = STATE(1823), - [sym__expr_unary_minus] = STATE(1818), - [sym_expr_binary] = STATE(1823), - [sym__expr_binary_expression] = STATE(1848), - [sym_expr_parenthesized] = STATE(1823), - [sym__val_range] = STATE(10726), - [sym__value] = STATE(1823), - [sym_val_nothing] = STATE(1872), - [sym_val_bool] = STATE(1606), - [sym_val_variable] = STATE(1872), - [sym__var] = STATE(1359), - [sym_val_number] = STATE(1872), - [sym__val_number_decimal] = STATE(1151), - [sym__val_number] = STATE(1873), - [sym_val_duration] = STATE(1872), - [sym_val_filesize] = STATE(1872), - [sym_val_binary] = STATE(1872), - [sym_val_string] = STATE(1872), - [sym__str_double_quotes] = STATE(1883), - [sym_val_interpolated] = STATE(1872), - [sym__inter_single_quotes] = STATE(1884), - [sym__inter_double_quotes] = STATE(1885), - [sym_val_list] = STATE(1872), - [sym_val_record] = STATE(1872), - [sym_val_table] = STATE(1872), - [sym_val_closure] = STATE(1872), - [sym_unquoted] = STATE(1825), - [sym__unquoted_anonymous_prefix] = STATE(10999), - [sym_comment] = STATE(2321), - [anon_sym_LBRACK] = ACTIONS(4537), - [anon_sym_LPAREN] = ACTIONS(6023), - [anon_sym_DOLLAR] = ACTIONS(6025), - [anon_sym_DASH] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(4545), - [anon_sym_DOT_DOT] = ACTIONS(6027), - [anon_sym_not] = ACTIONS(4549), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6029), - [anon_sym_DOT_DOT_LT] = ACTIONS(6029), - [anon_sym_null] = ACTIONS(4553), - [anon_sym_true] = ACTIONS(4555), - [anon_sym_false] = ACTIONS(4555), - [aux_sym__val_number_decimal_token1] = ACTIONS(4557), - [aux_sym__val_number_decimal_token2] = ACTIONS(4559), - [anon_sym_DOT2] = ACTIONS(6031), - [aux_sym__val_number_decimal_token3] = ACTIONS(4563), - [aux_sym__val_number_token1] = ACTIONS(4565), - [aux_sym__val_number_token2] = ACTIONS(4565), - [aux_sym__val_number_token3] = ACTIONS(4565), - [aux_sym__val_number_token4] = ACTIONS(6033), - [aux_sym__val_number_token5] = ACTIONS(6033), - [aux_sym__val_number_token6] = ACTIONS(6033), - [anon_sym_0b] = ACTIONS(4569), - [anon_sym_0o] = ACTIONS(4571), - [anon_sym_0x] = ACTIONS(4571), - [sym_val_date] = ACTIONS(4573), - [anon_sym_DQUOTE] = ACTIONS(4575), - [sym__str_single_quotes] = ACTIONS(4577), - [sym__str_back_ticks] = ACTIONS(4577), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4581), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(6035), - [anon_sym_POUND] = ACTIONS(3), - }, - [2322] = { - [sym_expr_unary] = STATE(1823), - [sym__expr_unary_minus] = STATE(1818), - [sym_expr_binary] = STATE(1823), - [sym__expr_binary_expression] = STATE(1849), - [sym_expr_parenthesized] = STATE(1823), - [sym__val_range] = STATE(10726), - [sym__value] = STATE(1823), - [sym_val_nothing] = STATE(1872), - [sym_val_bool] = STATE(1606), - [sym_val_variable] = STATE(1872), - [sym__var] = STATE(1359), - [sym_val_number] = STATE(1872), - [sym__val_number_decimal] = STATE(1151), - [sym__val_number] = STATE(1873), - [sym_val_duration] = STATE(1872), - [sym_val_filesize] = STATE(1872), - [sym_val_binary] = STATE(1872), - [sym_val_string] = STATE(1872), - [sym__str_double_quotes] = STATE(1883), - [sym_val_interpolated] = STATE(1872), - [sym__inter_single_quotes] = STATE(1884), - [sym__inter_double_quotes] = STATE(1885), - [sym_val_list] = STATE(1872), - [sym_val_record] = STATE(1872), - [sym_val_table] = STATE(1872), - [sym_val_closure] = STATE(1872), - [sym_unquoted] = STATE(1826), - [sym__unquoted_anonymous_prefix] = STATE(10999), - [sym_comment] = STATE(2322), - [anon_sym_LBRACK] = ACTIONS(4537), - [anon_sym_LPAREN] = ACTIONS(6023), - [anon_sym_DOLLAR] = ACTIONS(6025), - [anon_sym_DASH] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(4545), - [anon_sym_DOT_DOT] = ACTIONS(6027), - [anon_sym_not] = ACTIONS(4549), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6029), - [anon_sym_DOT_DOT_LT] = ACTIONS(6029), - [anon_sym_null] = ACTIONS(4553), - [anon_sym_true] = ACTIONS(4555), - [anon_sym_false] = ACTIONS(4555), - [aux_sym__val_number_decimal_token1] = ACTIONS(4557), - [aux_sym__val_number_decimal_token2] = ACTIONS(4559), - [anon_sym_DOT2] = ACTIONS(6031), - [aux_sym__val_number_decimal_token3] = ACTIONS(4563), - [aux_sym__val_number_token1] = ACTIONS(4565), - [aux_sym__val_number_token2] = ACTIONS(4565), - [aux_sym__val_number_token3] = ACTIONS(4565), - [aux_sym__val_number_token4] = ACTIONS(6033), - [aux_sym__val_number_token5] = ACTIONS(6033), - [aux_sym__val_number_token6] = ACTIONS(6033), - [anon_sym_0b] = ACTIONS(4569), - [anon_sym_0o] = ACTIONS(4571), - [anon_sym_0x] = ACTIONS(4571), - [sym_val_date] = ACTIONS(4573), - [anon_sym_DQUOTE] = ACTIONS(4575), - [sym__str_single_quotes] = ACTIONS(4577), - [sym__str_back_ticks] = ACTIONS(4577), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4581), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(6035), - [anon_sym_POUND] = ACTIONS(3), - }, - [2323] = { - [sym_expr_unary] = STATE(1823), - [sym__expr_unary_minus] = STATE(1818), - [sym_expr_binary] = STATE(1823), - [sym__expr_binary_expression] = STATE(1850), - [sym_expr_parenthesized] = STATE(1823), - [sym__val_range] = STATE(10726), - [sym__value] = STATE(1823), - [sym_val_nothing] = STATE(1872), - [sym_val_bool] = STATE(1606), - [sym_val_variable] = STATE(1872), - [sym__var] = STATE(1359), - [sym_val_number] = STATE(1872), - [sym__val_number_decimal] = STATE(1151), - [sym__val_number] = STATE(1873), - [sym_val_duration] = STATE(1872), - [sym_val_filesize] = STATE(1872), - [sym_val_binary] = STATE(1872), - [sym_val_string] = STATE(1872), - [sym__str_double_quotes] = STATE(1883), - [sym_val_interpolated] = STATE(1872), - [sym__inter_single_quotes] = STATE(1884), - [sym__inter_double_quotes] = STATE(1885), - [sym_val_list] = STATE(1872), - [sym_val_record] = STATE(1872), - [sym_val_table] = STATE(1872), - [sym_val_closure] = STATE(1872), - [sym_unquoted] = STATE(1827), - [sym__unquoted_anonymous_prefix] = STATE(10999), - [sym_comment] = STATE(2323), - [anon_sym_LBRACK] = ACTIONS(4537), - [anon_sym_LPAREN] = ACTIONS(6023), - [anon_sym_DOLLAR] = ACTIONS(6025), - [anon_sym_DASH] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(4545), - [anon_sym_DOT_DOT] = ACTIONS(6027), - [anon_sym_not] = ACTIONS(4549), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6029), - [anon_sym_DOT_DOT_LT] = ACTIONS(6029), - [anon_sym_null] = ACTIONS(4553), - [anon_sym_true] = ACTIONS(4555), - [anon_sym_false] = ACTIONS(4555), - [aux_sym__val_number_decimal_token1] = ACTIONS(4557), - [aux_sym__val_number_decimal_token2] = ACTIONS(4559), - [anon_sym_DOT2] = ACTIONS(6031), - [aux_sym__val_number_decimal_token3] = ACTIONS(4563), - [aux_sym__val_number_token1] = ACTIONS(4565), - [aux_sym__val_number_token2] = ACTIONS(4565), - [aux_sym__val_number_token3] = ACTIONS(4565), - [aux_sym__val_number_token4] = ACTIONS(6033), - [aux_sym__val_number_token5] = ACTIONS(6033), - [aux_sym__val_number_token6] = ACTIONS(6033), - [anon_sym_0b] = ACTIONS(4569), - [anon_sym_0o] = ACTIONS(4571), - [anon_sym_0x] = ACTIONS(4571), - [sym_val_date] = ACTIONS(4573), - [anon_sym_DQUOTE] = ACTIONS(4575), - [sym__str_single_quotes] = ACTIONS(4577), - [sym__str_back_ticks] = ACTIONS(4577), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4581), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(6035), - [anon_sym_POUND] = ACTIONS(3), - }, - [2324] = { - [sym_expr_unary] = STATE(1823), - [sym__expr_unary_minus] = STATE(1818), - [sym_expr_binary] = STATE(1823), - [sym__expr_binary_expression] = STATE(1851), - [sym_expr_parenthesized] = STATE(1823), - [sym__val_range] = STATE(10726), - [sym__value] = STATE(1823), - [sym_val_nothing] = STATE(1872), - [sym_val_bool] = STATE(1606), - [sym_val_variable] = STATE(1872), - [sym__var] = STATE(1359), - [sym_val_number] = STATE(1872), - [sym__val_number_decimal] = STATE(1151), - [sym__val_number] = STATE(1873), - [sym_val_duration] = STATE(1872), - [sym_val_filesize] = STATE(1872), - [sym_val_binary] = STATE(1872), - [sym_val_string] = STATE(1872), - [sym__str_double_quotes] = STATE(1883), - [sym_val_interpolated] = STATE(1872), - [sym__inter_single_quotes] = STATE(1884), - [sym__inter_double_quotes] = STATE(1885), - [sym_val_list] = STATE(1872), - [sym_val_record] = STATE(1872), - [sym_val_table] = STATE(1872), - [sym_val_closure] = STATE(1872), - [sym_unquoted] = STATE(1828), - [sym__unquoted_anonymous_prefix] = STATE(10999), - [sym_comment] = STATE(2324), - [anon_sym_LBRACK] = ACTIONS(4537), - [anon_sym_LPAREN] = ACTIONS(6023), - [anon_sym_DOLLAR] = ACTIONS(6025), - [anon_sym_DASH] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(4545), - [anon_sym_DOT_DOT] = ACTIONS(6027), - [anon_sym_not] = ACTIONS(4549), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6029), - [anon_sym_DOT_DOT_LT] = ACTIONS(6029), - [anon_sym_null] = ACTIONS(4553), - [anon_sym_true] = ACTIONS(4555), - [anon_sym_false] = ACTIONS(4555), - [aux_sym__val_number_decimal_token1] = ACTIONS(4557), - [aux_sym__val_number_decimal_token2] = ACTIONS(4559), - [anon_sym_DOT2] = ACTIONS(6031), - [aux_sym__val_number_decimal_token3] = ACTIONS(4563), - [aux_sym__val_number_token1] = ACTIONS(4565), - [aux_sym__val_number_token2] = ACTIONS(4565), - [aux_sym__val_number_token3] = ACTIONS(4565), - [aux_sym__val_number_token4] = ACTIONS(6033), - [aux_sym__val_number_token5] = ACTIONS(6033), - [aux_sym__val_number_token6] = ACTIONS(6033), - [anon_sym_0b] = ACTIONS(4569), - [anon_sym_0o] = ACTIONS(4571), - [anon_sym_0x] = ACTIONS(4571), - [sym_val_date] = ACTIONS(4573), - [anon_sym_DQUOTE] = ACTIONS(4575), - [sym__str_single_quotes] = ACTIONS(4577), - [sym__str_back_ticks] = ACTIONS(4577), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4581), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(6035), - [anon_sym_POUND] = ACTIONS(3), - }, - [2325] = { - [sym_expr_unary] = STATE(1823), - [sym__expr_unary_minus] = STATE(1818), - [sym_expr_binary] = STATE(1823), - [sym__expr_binary_expression] = STATE(1852), - [sym_expr_parenthesized] = STATE(1823), - [sym__val_range] = STATE(10726), - [sym__value] = STATE(1823), - [sym_val_nothing] = STATE(1872), - [sym_val_bool] = STATE(1606), - [sym_val_variable] = STATE(1872), - [sym__var] = STATE(1359), - [sym_val_number] = STATE(1872), - [sym__val_number_decimal] = STATE(1151), - [sym__val_number] = STATE(1873), - [sym_val_duration] = STATE(1872), - [sym_val_filesize] = STATE(1872), - [sym_val_binary] = STATE(1872), - [sym_val_string] = STATE(1872), - [sym__str_double_quotes] = STATE(1883), - [sym_val_interpolated] = STATE(1872), - [sym__inter_single_quotes] = STATE(1884), - [sym__inter_double_quotes] = STATE(1885), - [sym_val_list] = STATE(1872), - [sym_val_record] = STATE(1872), - [sym_val_table] = STATE(1872), - [sym_val_closure] = STATE(1872), - [sym_unquoted] = STATE(1829), - [sym__unquoted_anonymous_prefix] = STATE(10999), - [sym_comment] = STATE(2325), - [anon_sym_LBRACK] = ACTIONS(4537), - [anon_sym_LPAREN] = ACTIONS(6023), - [anon_sym_DOLLAR] = ACTIONS(6025), - [anon_sym_DASH] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(4545), - [anon_sym_DOT_DOT] = ACTIONS(6027), - [anon_sym_not] = ACTIONS(4549), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6029), - [anon_sym_DOT_DOT_LT] = ACTIONS(6029), - [anon_sym_null] = ACTIONS(4553), - [anon_sym_true] = ACTIONS(4555), - [anon_sym_false] = ACTIONS(4555), - [aux_sym__val_number_decimal_token1] = ACTIONS(4557), - [aux_sym__val_number_decimal_token2] = ACTIONS(4559), - [anon_sym_DOT2] = ACTIONS(6031), - [aux_sym__val_number_decimal_token3] = ACTIONS(4563), - [aux_sym__val_number_token1] = ACTIONS(4565), - [aux_sym__val_number_token2] = ACTIONS(4565), - [aux_sym__val_number_token3] = ACTIONS(4565), - [aux_sym__val_number_token4] = ACTIONS(6033), - [aux_sym__val_number_token5] = ACTIONS(6033), - [aux_sym__val_number_token6] = ACTIONS(6033), - [anon_sym_0b] = ACTIONS(4569), - [anon_sym_0o] = ACTIONS(4571), - [anon_sym_0x] = ACTIONS(4571), - [sym_val_date] = ACTIONS(4573), - [anon_sym_DQUOTE] = ACTIONS(4575), - [sym__str_single_quotes] = ACTIONS(4577), - [sym__str_back_ticks] = ACTIONS(4577), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4581), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(6035), - [anon_sym_POUND] = ACTIONS(3), - }, - [2326] = { - [sym_expr_unary] = STATE(1823), - [sym__expr_unary_minus] = STATE(1818), - [sym_expr_binary] = STATE(1823), - [sym__expr_binary_expression] = STATE(1853), - [sym_expr_parenthesized] = STATE(1823), - [sym__val_range] = STATE(10726), - [sym__value] = STATE(1823), - [sym_val_nothing] = STATE(1872), - [sym_val_bool] = STATE(1606), - [sym_val_variable] = STATE(1872), - [sym__var] = STATE(1359), - [sym_val_number] = STATE(1872), - [sym__val_number_decimal] = STATE(1151), - [sym__val_number] = STATE(1873), - [sym_val_duration] = STATE(1872), - [sym_val_filesize] = STATE(1872), - [sym_val_binary] = STATE(1872), - [sym_val_string] = STATE(1872), - [sym__str_double_quotes] = STATE(1883), - [sym_val_interpolated] = STATE(1872), - [sym__inter_single_quotes] = STATE(1884), - [sym__inter_double_quotes] = STATE(1885), - [sym_val_list] = STATE(1872), - [sym_val_record] = STATE(1872), - [sym_val_table] = STATE(1872), - [sym_val_closure] = STATE(1872), - [sym_unquoted] = STATE(1830), - [sym__unquoted_anonymous_prefix] = STATE(10999), - [sym_comment] = STATE(2326), - [anon_sym_LBRACK] = ACTIONS(4537), - [anon_sym_LPAREN] = ACTIONS(6023), - [anon_sym_DOLLAR] = ACTIONS(6025), - [anon_sym_DASH] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(4545), - [anon_sym_DOT_DOT] = ACTIONS(6027), - [anon_sym_not] = ACTIONS(4549), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6029), - [anon_sym_DOT_DOT_LT] = ACTIONS(6029), - [anon_sym_null] = ACTIONS(4553), - [anon_sym_true] = ACTIONS(4555), - [anon_sym_false] = ACTIONS(4555), - [aux_sym__val_number_decimal_token1] = ACTIONS(4557), - [aux_sym__val_number_decimal_token2] = ACTIONS(4559), - [anon_sym_DOT2] = ACTIONS(6031), - [aux_sym__val_number_decimal_token3] = ACTIONS(4563), - [aux_sym__val_number_token1] = ACTIONS(4565), - [aux_sym__val_number_token2] = ACTIONS(4565), - [aux_sym__val_number_token3] = ACTIONS(4565), - [aux_sym__val_number_token4] = ACTIONS(6033), - [aux_sym__val_number_token5] = ACTIONS(6033), - [aux_sym__val_number_token6] = ACTIONS(6033), - [anon_sym_0b] = ACTIONS(4569), - [anon_sym_0o] = ACTIONS(4571), - [anon_sym_0x] = ACTIONS(4571), - [sym_val_date] = ACTIONS(4573), - [anon_sym_DQUOTE] = ACTIONS(4575), - [sym__str_single_quotes] = ACTIONS(4577), - [sym__str_back_ticks] = ACTIONS(4577), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4581), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(6035), - [anon_sym_POUND] = ACTIONS(3), - }, - [2327] = { - [sym_expr_unary] = STATE(1823), - [sym__expr_unary_minus] = STATE(1818), - [sym_expr_binary] = STATE(1823), - [sym__expr_binary_expression] = STATE(1854), - [sym_expr_parenthesized] = STATE(1823), - [sym__val_range] = STATE(10726), - [sym__value] = STATE(1823), - [sym_val_nothing] = STATE(1872), - [sym_val_bool] = STATE(1606), - [sym_val_variable] = STATE(1872), - [sym__var] = STATE(1359), - [sym_val_number] = STATE(1872), - [sym__val_number_decimal] = STATE(1151), - [sym__val_number] = STATE(1873), - [sym_val_duration] = STATE(1872), - [sym_val_filesize] = STATE(1872), - [sym_val_binary] = STATE(1872), - [sym_val_string] = STATE(1872), - [sym__str_double_quotes] = STATE(1883), - [sym_val_interpolated] = STATE(1872), - [sym__inter_single_quotes] = STATE(1884), - [sym__inter_double_quotes] = STATE(1885), - [sym_val_list] = STATE(1872), - [sym_val_record] = STATE(1872), - [sym_val_table] = STATE(1872), - [sym_val_closure] = STATE(1872), - [sym_unquoted] = STATE(1831), - [sym__unquoted_anonymous_prefix] = STATE(10999), - [sym_comment] = STATE(2327), - [anon_sym_LBRACK] = ACTIONS(4537), - [anon_sym_LPAREN] = ACTIONS(6023), - [anon_sym_DOLLAR] = ACTIONS(6025), - [anon_sym_DASH] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(4545), - [anon_sym_DOT_DOT] = ACTIONS(6027), - [anon_sym_not] = ACTIONS(4549), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6029), - [anon_sym_DOT_DOT_LT] = ACTIONS(6029), - [anon_sym_null] = ACTIONS(4553), - [anon_sym_true] = ACTIONS(4555), - [anon_sym_false] = ACTIONS(4555), - [aux_sym__val_number_decimal_token1] = ACTIONS(4557), - [aux_sym__val_number_decimal_token2] = ACTIONS(4559), - [anon_sym_DOT2] = ACTIONS(6031), - [aux_sym__val_number_decimal_token3] = ACTIONS(4563), - [aux_sym__val_number_token1] = ACTIONS(4565), - [aux_sym__val_number_token2] = ACTIONS(4565), - [aux_sym__val_number_token3] = ACTIONS(4565), - [aux_sym__val_number_token4] = ACTIONS(6033), - [aux_sym__val_number_token5] = ACTIONS(6033), - [aux_sym__val_number_token6] = ACTIONS(6033), - [anon_sym_0b] = ACTIONS(4569), - [anon_sym_0o] = ACTIONS(4571), - [anon_sym_0x] = ACTIONS(4571), - [sym_val_date] = ACTIONS(4573), - [anon_sym_DQUOTE] = ACTIONS(4575), - [sym__str_single_quotes] = ACTIONS(4577), - [sym__str_back_ticks] = ACTIONS(4577), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4581), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(6035), - [anon_sym_POUND] = ACTIONS(3), - }, - [2328] = { - [sym_expr_unary] = STATE(1823), - [sym__expr_unary_minus] = STATE(1818), - [sym_expr_binary] = STATE(1823), - [sym__expr_binary_expression] = STATE(1855), - [sym_expr_parenthesized] = STATE(1823), - [sym__val_range] = STATE(10726), - [sym__value] = STATE(1823), - [sym_val_nothing] = STATE(1872), - [sym_val_bool] = STATE(1606), - [sym_val_variable] = STATE(1872), - [sym__var] = STATE(1359), - [sym_val_number] = STATE(1872), - [sym__val_number_decimal] = STATE(1151), - [sym__val_number] = STATE(1873), - [sym_val_duration] = STATE(1872), - [sym_val_filesize] = STATE(1872), - [sym_val_binary] = STATE(1872), - [sym_val_string] = STATE(1872), - [sym__str_double_quotes] = STATE(1883), - [sym_val_interpolated] = STATE(1872), - [sym__inter_single_quotes] = STATE(1884), - [sym__inter_double_quotes] = STATE(1885), - [sym_val_list] = STATE(1872), - [sym_val_record] = STATE(1872), - [sym_val_table] = STATE(1872), - [sym_val_closure] = STATE(1872), - [sym_unquoted] = STATE(1832), - [sym__unquoted_anonymous_prefix] = STATE(10999), - [sym_comment] = STATE(2328), - [anon_sym_LBRACK] = ACTIONS(4537), - [anon_sym_LPAREN] = ACTIONS(6023), - [anon_sym_DOLLAR] = ACTIONS(6025), - [anon_sym_DASH] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(4545), - [anon_sym_DOT_DOT] = ACTIONS(6027), - [anon_sym_not] = ACTIONS(4549), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6029), - [anon_sym_DOT_DOT_LT] = ACTIONS(6029), - [anon_sym_null] = ACTIONS(4553), - [anon_sym_true] = ACTIONS(4555), - [anon_sym_false] = ACTIONS(4555), - [aux_sym__val_number_decimal_token1] = ACTIONS(4557), - [aux_sym__val_number_decimal_token2] = ACTIONS(4559), - [anon_sym_DOT2] = ACTIONS(6031), - [aux_sym__val_number_decimal_token3] = ACTIONS(4563), - [aux_sym__val_number_token1] = ACTIONS(4565), - [aux_sym__val_number_token2] = ACTIONS(4565), - [aux_sym__val_number_token3] = ACTIONS(4565), - [aux_sym__val_number_token4] = ACTIONS(6033), - [aux_sym__val_number_token5] = ACTIONS(6033), - [aux_sym__val_number_token6] = ACTIONS(6033), - [anon_sym_0b] = ACTIONS(4569), - [anon_sym_0o] = ACTIONS(4571), - [anon_sym_0x] = ACTIONS(4571), - [sym_val_date] = ACTIONS(4573), - [anon_sym_DQUOTE] = ACTIONS(4575), - [sym__str_single_quotes] = ACTIONS(4577), - [sym__str_back_ticks] = ACTIONS(4577), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4581), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(6035), - [anon_sym_POUND] = ACTIONS(3), - }, - [2329] = { - [sym_expr_unary] = STATE(1823), - [sym__expr_unary_minus] = STATE(1818), - [sym_expr_binary] = STATE(1823), - [sym__expr_binary_expression] = STATE(1856), - [sym_expr_parenthesized] = STATE(1823), - [sym__val_range] = STATE(10726), - [sym__value] = STATE(1823), - [sym_val_nothing] = STATE(1872), - [sym_val_bool] = STATE(1606), - [sym_val_variable] = STATE(1872), - [sym__var] = STATE(1359), - [sym_val_number] = STATE(1872), - [sym__val_number_decimal] = STATE(1151), - [sym__val_number] = STATE(1873), - [sym_val_duration] = STATE(1872), - [sym_val_filesize] = STATE(1872), - [sym_val_binary] = STATE(1872), - [sym_val_string] = STATE(1872), - [sym__str_double_quotes] = STATE(1883), - [sym_val_interpolated] = STATE(1872), - [sym__inter_single_quotes] = STATE(1884), - [sym__inter_double_quotes] = STATE(1885), - [sym_val_list] = STATE(1872), - [sym_val_record] = STATE(1872), - [sym_val_table] = STATE(1872), - [sym_val_closure] = STATE(1872), - [sym_unquoted] = STATE(1833), - [sym__unquoted_anonymous_prefix] = STATE(10999), - [sym_comment] = STATE(2329), - [anon_sym_LBRACK] = ACTIONS(4537), - [anon_sym_LPAREN] = ACTIONS(6023), - [anon_sym_DOLLAR] = ACTIONS(6025), - [anon_sym_DASH] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(4545), - [anon_sym_DOT_DOT] = ACTIONS(6027), - [anon_sym_not] = ACTIONS(4549), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6029), - [anon_sym_DOT_DOT_LT] = ACTIONS(6029), - [anon_sym_null] = ACTIONS(4553), - [anon_sym_true] = ACTIONS(4555), - [anon_sym_false] = ACTIONS(4555), - [aux_sym__val_number_decimal_token1] = ACTIONS(4557), - [aux_sym__val_number_decimal_token2] = ACTIONS(4559), - [anon_sym_DOT2] = ACTIONS(6031), - [aux_sym__val_number_decimal_token3] = ACTIONS(4563), - [aux_sym__val_number_token1] = ACTIONS(4565), - [aux_sym__val_number_token2] = ACTIONS(4565), - [aux_sym__val_number_token3] = ACTIONS(4565), - [aux_sym__val_number_token4] = ACTIONS(6033), - [aux_sym__val_number_token5] = ACTIONS(6033), - [aux_sym__val_number_token6] = ACTIONS(6033), - [anon_sym_0b] = ACTIONS(4569), - [anon_sym_0o] = ACTIONS(4571), - [anon_sym_0x] = ACTIONS(4571), - [sym_val_date] = ACTIONS(4573), - [anon_sym_DQUOTE] = ACTIONS(4575), - [sym__str_single_quotes] = ACTIONS(4577), - [sym__str_back_ticks] = ACTIONS(4577), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4581), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(6035), - [anon_sym_POUND] = ACTIONS(3), - }, - [2330] = { - [sym_expr_unary] = STATE(1823), - [sym__expr_unary_minus] = STATE(1818), - [sym_expr_binary] = STATE(1823), - [sym__expr_binary_expression] = STATE(1857), - [sym_expr_parenthesized] = STATE(1823), - [sym__val_range] = STATE(10726), - [sym__value] = STATE(1823), - [sym_val_nothing] = STATE(1872), - [sym_val_bool] = STATE(1606), - [sym_val_variable] = STATE(1872), - [sym__var] = STATE(1359), - [sym_val_number] = STATE(1872), - [sym__val_number_decimal] = STATE(1151), - [sym__val_number] = STATE(1873), - [sym_val_duration] = STATE(1872), - [sym_val_filesize] = STATE(1872), - [sym_val_binary] = STATE(1872), - [sym_val_string] = STATE(1872), - [sym__str_double_quotes] = STATE(1883), - [sym_val_interpolated] = STATE(1872), - [sym__inter_single_quotes] = STATE(1884), - [sym__inter_double_quotes] = STATE(1885), - [sym_val_list] = STATE(1872), - [sym_val_record] = STATE(1872), - [sym_val_table] = STATE(1872), - [sym_val_closure] = STATE(1872), - [sym_unquoted] = STATE(1834), - [sym__unquoted_anonymous_prefix] = STATE(10999), - [sym_comment] = STATE(2330), - [anon_sym_LBRACK] = ACTIONS(4537), - [anon_sym_LPAREN] = ACTIONS(6023), - [anon_sym_DOLLAR] = ACTIONS(6025), - [anon_sym_DASH] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(4545), - [anon_sym_DOT_DOT] = ACTIONS(6027), - [anon_sym_not] = ACTIONS(4549), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6029), - [anon_sym_DOT_DOT_LT] = ACTIONS(6029), - [anon_sym_null] = ACTIONS(4553), - [anon_sym_true] = ACTIONS(4555), - [anon_sym_false] = ACTIONS(4555), - [aux_sym__val_number_decimal_token1] = ACTIONS(4557), - [aux_sym__val_number_decimal_token2] = ACTIONS(4559), - [anon_sym_DOT2] = ACTIONS(6031), - [aux_sym__val_number_decimal_token3] = ACTIONS(4563), - [aux_sym__val_number_token1] = ACTIONS(4565), - [aux_sym__val_number_token2] = ACTIONS(4565), - [aux_sym__val_number_token3] = ACTIONS(4565), - [aux_sym__val_number_token4] = ACTIONS(6033), - [aux_sym__val_number_token5] = ACTIONS(6033), - [aux_sym__val_number_token6] = ACTIONS(6033), - [anon_sym_0b] = ACTIONS(4569), - [anon_sym_0o] = ACTIONS(4571), - [anon_sym_0x] = ACTIONS(4571), - [sym_val_date] = ACTIONS(4573), - [anon_sym_DQUOTE] = ACTIONS(4575), - [sym__str_single_quotes] = ACTIONS(4577), - [sym__str_back_ticks] = ACTIONS(4577), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4581), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(6035), - [anon_sym_POUND] = ACTIONS(3), - }, - [2331] = { - [sym_expr_unary] = STATE(1823), - [sym__expr_unary_minus] = STATE(1818), - [sym_expr_binary] = STATE(1823), - [sym__expr_binary_expression] = STATE(1858), - [sym_expr_parenthesized] = STATE(1823), - [sym__val_range] = STATE(10726), - [sym__value] = STATE(1823), - [sym_val_nothing] = STATE(1872), - [sym_val_bool] = STATE(1606), - [sym_val_variable] = STATE(1872), - [sym__var] = STATE(1359), - [sym_val_number] = STATE(1872), - [sym__val_number_decimal] = STATE(1151), - [sym__val_number] = STATE(1873), - [sym_val_duration] = STATE(1872), - [sym_val_filesize] = STATE(1872), - [sym_val_binary] = STATE(1872), - [sym_val_string] = STATE(1872), - [sym__str_double_quotes] = STATE(1883), - [sym_val_interpolated] = STATE(1872), - [sym__inter_single_quotes] = STATE(1884), - [sym__inter_double_quotes] = STATE(1885), - [sym_val_list] = STATE(1872), - [sym_val_record] = STATE(1872), - [sym_val_table] = STATE(1872), - [sym_val_closure] = STATE(1872), - [sym_unquoted] = STATE(1835), - [sym__unquoted_anonymous_prefix] = STATE(10999), - [sym_comment] = STATE(2331), - [anon_sym_LBRACK] = ACTIONS(4537), - [anon_sym_LPAREN] = ACTIONS(6023), - [anon_sym_DOLLAR] = ACTIONS(6025), - [anon_sym_DASH] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(4545), - [anon_sym_DOT_DOT] = ACTIONS(6027), - [anon_sym_not] = ACTIONS(4549), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6029), - [anon_sym_DOT_DOT_LT] = ACTIONS(6029), - [anon_sym_null] = ACTIONS(4553), - [anon_sym_true] = ACTIONS(4555), - [anon_sym_false] = ACTIONS(4555), - [aux_sym__val_number_decimal_token1] = ACTIONS(4557), - [aux_sym__val_number_decimal_token2] = ACTIONS(4559), - [anon_sym_DOT2] = ACTIONS(6031), - [aux_sym__val_number_decimal_token3] = ACTIONS(4563), - [aux_sym__val_number_token1] = ACTIONS(4565), - [aux_sym__val_number_token2] = ACTIONS(4565), - [aux_sym__val_number_token3] = ACTIONS(4565), - [aux_sym__val_number_token4] = ACTIONS(6033), - [aux_sym__val_number_token5] = ACTIONS(6033), - [aux_sym__val_number_token6] = ACTIONS(6033), - [anon_sym_0b] = ACTIONS(4569), - [anon_sym_0o] = ACTIONS(4571), - [anon_sym_0x] = ACTIONS(4571), - [sym_val_date] = ACTIONS(4573), - [anon_sym_DQUOTE] = ACTIONS(4575), - [sym__str_single_quotes] = ACTIONS(4577), - [sym__str_back_ticks] = ACTIONS(4577), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4581), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(6035), - [anon_sym_POUND] = ACTIONS(3), - }, - [2332] = { - [sym_expr_unary] = STATE(1823), - [sym__expr_unary_minus] = STATE(1818), - [sym_expr_binary] = STATE(1823), - [sym__expr_binary_expression] = STATE(1859), - [sym_expr_parenthesized] = STATE(1823), - [sym__val_range] = STATE(10726), - [sym__value] = STATE(1823), - [sym_val_nothing] = STATE(1872), - [sym_val_bool] = STATE(1606), - [sym_val_variable] = STATE(1872), - [sym__var] = STATE(1359), - [sym_val_number] = STATE(1872), - [sym__val_number_decimal] = STATE(1151), - [sym__val_number] = STATE(1873), - [sym_val_duration] = STATE(1872), - [sym_val_filesize] = STATE(1872), - [sym_val_binary] = STATE(1872), - [sym_val_string] = STATE(1872), - [sym__str_double_quotes] = STATE(1883), - [sym_val_interpolated] = STATE(1872), - [sym__inter_single_quotes] = STATE(1884), - [sym__inter_double_quotes] = STATE(1885), - [sym_val_list] = STATE(1872), - [sym_val_record] = STATE(1872), - [sym_val_table] = STATE(1872), - [sym_val_closure] = STATE(1872), - [sym_unquoted] = STATE(1836), - [sym__unquoted_anonymous_prefix] = STATE(10999), - [sym_comment] = STATE(2332), - [anon_sym_LBRACK] = ACTIONS(4537), - [anon_sym_LPAREN] = ACTIONS(6023), - [anon_sym_DOLLAR] = ACTIONS(6025), - [anon_sym_DASH] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(4545), - [anon_sym_DOT_DOT] = ACTIONS(6027), - [anon_sym_not] = ACTIONS(4549), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6029), - [anon_sym_DOT_DOT_LT] = ACTIONS(6029), - [anon_sym_null] = ACTIONS(4553), - [anon_sym_true] = ACTIONS(4555), - [anon_sym_false] = ACTIONS(4555), - [aux_sym__val_number_decimal_token1] = ACTIONS(4557), - [aux_sym__val_number_decimal_token2] = ACTIONS(4559), - [anon_sym_DOT2] = ACTIONS(6031), - [aux_sym__val_number_decimal_token3] = ACTIONS(4563), - [aux_sym__val_number_token1] = ACTIONS(4565), - [aux_sym__val_number_token2] = ACTIONS(4565), - [aux_sym__val_number_token3] = ACTIONS(4565), - [aux_sym__val_number_token4] = ACTIONS(6033), - [aux_sym__val_number_token5] = ACTIONS(6033), - [aux_sym__val_number_token6] = ACTIONS(6033), - [anon_sym_0b] = ACTIONS(4569), - [anon_sym_0o] = ACTIONS(4571), - [anon_sym_0x] = ACTIONS(4571), - [sym_val_date] = ACTIONS(4573), - [anon_sym_DQUOTE] = ACTIONS(4575), - [sym__str_single_quotes] = ACTIONS(4577), - [sym__str_back_ticks] = ACTIONS(4577), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4581), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(6035), - [anon_sym_POUND] = ACTIONS(3), - }, - [2333] = { - [sym__expression] = STATE(7409), - [sym_expr_unary] = STATE(5715), - [sym__expr_unary_minus] = STATE(5723), - [sym_expr_binary] = STATE(5715), - [sym__expr_binary_expression] = STATE(6788), - [sym_expr_parenthesized] = STATE(5176), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(5715), - [sym_val_nothing] = STATE(5705), - [sym_val_bool] = STATE(5705), - [sym_val_variable] = STATE(5170), - [sym__var] = STATE(4674), - [sym_val_number] = STATE(5705), - [sym__val_number_decimal] = STATE(4718), - [sym__val_number] = STATE(5875), - [sym_val_duration] = STATE(5705), - [sym_val_filesize] = STATE(5705), - [sym_val_binary] = STATE(5705), - [sym_val_string] = STATE(5705), - [sym__str_double_quotes] = STATE(5788), - [sym_val_interpolated] = STATE(5705), - [sym__inter_single_quotes] = STATE(5899), - [sym__inter_double_quotes] = STATE(5903), - [sym_val_list] = STATE(5705), - [sym_val_record] = STATE(5705), - [sym_val_table] = STATE(5705), - [sym_val_closure] = STATE(5705), - [sym__flag] = STATE(7408), - [sym_short_flag] = STATE(8329), - [sym_long_flag] = STATE(8329), - [sym_long_flag_equals_value] = STATE(8282), - [sym_comment] = STATE(2333), - [anon_sym_SEMI] = ACTIONS(6037), - [anon_sym_LF] = ACTIONS(6039), - [anon_sym_LBRACK] = ACTIONS(5371), - [anon_sym_LPAREN] = ACTIONS(5373), - [anon_sym_RPAREN] = ACTIONS(6037), - [anon_sym_PIPE] = ACTIONS(6037), - [anon_sym_DOLLAR] = ACTIONS(3317), - [anon_sym_DASH_DASH] = ACTIONS(5625), - [anon_sym_DASH] = ACTIONS(5627), - [anon_sym_LBRACE] = ACTIONS(5379), - [anon_sym_RBRACE] = ACTIONS(6037), - [anon_sym_DOT_DOT] = ACTIONS(5381), - [anon_sym_not] = ACTIONS(5383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5385), - [anon_sym_DOT_DOT_LT] = ACTIONS(5385), - [anon_sym_null] = ACTIONS(5387), - [anon_sym_true] = ACTIONS(5389), - [anon_sym_false] = ACTIONS(5389), - [aux_sym__val_number_decimal_token1] = ACTIONS(5391), - [aux_sym__val_number_decimal_token2] = ACTIONS(5391), - [anon_sym_DOT2] = ACTIONS(5393), - [aux_sym__val_number_decimal_token3] = ACTIONS(5395), - [aux_sym__val_number_token1] = ACTIONS(5397), - [aux_sym__val_number_token2] = ACTIONS(5397), - [aux_sym__val_number_token3] = ACTIONS(5397), - [aux_sym__val_number_token4] = ACTIONS(5397), - [aux_sym__val_number_token5] = ACTIONS(5397), - [aux_sym__val_number_token6] = ACTIONS(5397), - [anon_sym_0b] = ACTIONS(3345), - [anon_sym_0o] = ACTIONS(3347), - [anon_sym_0x] = ACTIONS(3347), - [sym_val_date] = ACTIONS(5399), - [anon_sym_DQUOTE] = ACTIONS(5401), - [sym__str_single_quotes] = ACTIONS(5403), - [sym__str_back_ticks] = ACTIONS(5403), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5405), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5407), - [anon_sym_POUND] = ACTIONS(113), - }, - [2334] = { - [sym__expression] = STATE(7409), - [sym_expr_unary] = STATE(5715), - [sym__expr_unary_minus] = STATE(5723), - [sym_expr_binary] = STATE(5715), - [sym__expr_binary_expression] = STATE(6788), - [sym_expr_parenthesized] = STATE(5176), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(5715), - [sym_val_nothing] = STATE(5705), - [sym_val_bool] = STATE(5705), - [sym_val_variable] = STATE(5170), - [sym__var] = STATE(4674), - [sym_val_number] = STATE(5705), - [sym__val_number_decimal] = STATE(4718), - [sym__val_number] = STATE(5875), - [sym_val_duration] = STATE(5705), - [sym_val_filesize] = STATE(5705), - [sym_val_binary] = STATE(5705), - [sym_val_string] = STATE(5705), - [sym__str_double_quotes] = STATE(5788), - [sym_val_interpolated] = STATE(5705), - [sym__inter_single_quotes] = STATE(5899), - [sym__inter_double_quotes] = STATE(5903), - [sym_val_list] = STATE(5705), - [sym_val_record] = STATE(5705), - [sym_val_table] = STATE(5705), - [sym_val_closure] = STATE(5705), - [sym__flag] = STATE(2336), - [sym_short_flag] = STATE(5044), - [sym_long_flag] = STATE(5044), - [sym_long_flag_equals_value] = STATE(5143), - [sym_comment] = STATE(2334), - [anon_sym_SEMI] = ACTIONS(6037), - [anon_sym_LF] = ACTIONS(6039), - [anon_sym_LBRACK] = ACTIONS(5371), - [anon_sym_LPAREN] = ACTIONS(5373), - [anon_sym_RPAREN] = ACTIONS(6037), - [anon_sym_PIPE] = ACTIONS(6037), - [anon_sym_DOLLAR] = ACTIONS(3317), - [anon_sym_DASH_DASH] = ACTIONS(5375), - [anon_sym_DASH] = ACTIONS(5377), - [anon_sym_LBRACE] = ACTIONS(5379), - [anon_sym_RBRACE] = ACTIONS(6037), - [anon_sym_DOT_DOT] = ACTIONS(5381), - [anon_sym_not] = ACTIONS(5383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5385), - [anon_sym_DOT_DOT_LT] = ACTIONS(5385), - [anon_sym_null] = ACTIONS(5387), - [anon_sym_true] = ACTIONS(5389), - [anon_sym_false] = ACTIONS(5389), - [aux_sym__val_number_decimal_token1] = ACTIONS(5391), - [aux_sym__val_number_decimal_token2] = ACTIONS(5391), - [anon_sym_DOT2] = ACTIONS(5393), - [aux_sym__val_number_decimal_token3] = ACTIONS(5395), - [aux_sym__val_number_token1] = ACTIONS(5397), - [aux_sym__val_number_token2] = ACTIONS(5397), - [aux_sym__val_number_token3] = ACTIONS(5397), - [aux_sym__val_number_token4] = ACTIONS(5397), - [aux_sym__val_number_token5] = ACTIONS(5397), - [aux_sym__val_number_token6] = ACTIONS(5397), - [anon_sym_0b] = ACTIONS(3345), - [anon_sym_0o] = ACTIONS(3347), - [anon_sym_0x] = ACTIONS(3347), - [sym_val_date] = ACTIONS(5399), - [anon_sym_DQUOTE] = ACTIONS(5401), - [sym__str_single_quotes] = ACTIONS(5403), - [sym__str_back_ticks] = ACTIONS(5403), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5405), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5407), - [anon_sym_POUND] = ACTIONS(113), - }, - [2335] = { - [sym__expression] = STATE(7409), - [sym_expr_unary] = STATE(5715), - [sym__expr_unary_minus] = STATE(5723), - [sym_expr_binary] = STATE(5715), - [sym__expr_binary_expression] = STATE(6788), - [sym_expr_parenthesized] = STATE(5176), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(5715), - [sym_val_nothing] = STATE(5705), - [sym_val_bool] = STATE(5705), - [sym_val_variable] = STATE(5170), - [sym__var] = STATE(4674), - [sym_val_number] = STATE(5705), - [sym__val_number_decimal] = STATE(4718), - [sym__val_number] = STATE(5875), - [sym_val_duration] = STATE(5705), - [sym_val_filesize] = STATE(5705), - [sym_val_binary] = STATE(5705), - [sym_val_string] = STATE(5705), - [sym__str_double_quotes] = STATE(5788), - [sym_val_interpolated] = STATE(5705), - [sym__inter_single_quotes] = STATE(5899), - [sym__inter_double_quotes] = STATE(5903), - [sym_val_list] = STATE(5705), - [sym_val_record] = STATE(5705), - [sym_val_table] = STATE(5705), - [sym_val_closure] = STATE(5705), - [sym__flag] = STATE(2337), - [sym_short_flag] = STATE(5044), - [sym_long_flag] = STATE(5044), - [sym_long_flag_equals_value] = STATE(5143), - [sym_comment] = STATE(2335), - [anon_sym_SEMI] = ACTIONS(6037), - [anon_sym_LF] = ACTIONS(6039), - [anon_sym_LBRACK] = ACTIONS(5371), - [anon_sym_LPAREN] = ACTIONS(5373), - [anon_sym_RPAREN] = ACTIONS(6037), - [anon_sym_PIPE] = ACTIONS(6037), - [anon_sym_DOLLAR] = ACTIONS(3317), - [anon_sym_DASH_DASH] = ACTIONS(5375), - [anon_sym_DASH] = ACTIONS(5377), - [anon_sym_LBRACE] = ACTIONS(5379), - [anon_sym_RBRACE] = ACTIONS(6037), - [anon_sym_DOT_DOT] = ACTIONS(5381), - [anon_sym_not] = ACTIONS(5383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5385), - [anon_sym_DOT_DOT_LT] = ACTIONS(5385), - [anon_sym_null] = ACTIONS(5387), - [anon_sym_true] = ACTIONS(5389), - [anon_sym_false] = ACTIONS(5389), - [aux_sym__val_number_decimal_token1] = ACTIONS(5391), - [aux_sym__val_number_decimal_token2] = ACTIONS(5391), - [anon_sym_DOT2] = ACTIONS(5393), - [aux_sym__val_number_decimal_token3] = ACTIONS(5395), - [aux_sym__val_number_token1] = ACTIONS(5397), - [aux_sym__val_number_token2] = ACTIONS(5397), - [aux_sym__val_number_token3] = ACTIONS(5397), - [aux_sym__val_number_token4] = ACTIONS(5397), - [aux_sym__val_number_token5] = ACTIONS(5397), - [aux_sym__val_number_token6] = ACTIONS(5397), - [anon_sym_0b] = ACTIONS(3345), - [anon_sym_0o] = ACTIONS(3347), - [anon_sym_0x] = ACTIONS(3347), - [sym_val_date] = ACTIONS(5399), - [anon_sym_DQUOTE] = ACTIONS(5401), - [sym__str_single_quotes] = ACTIONS(5403), - [sym__str_back_ticks] = ACTIONS(5403), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5405), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5407), - [anon_sym_POUND] = ACTIONS(113), - }, - [2336] = { - [sym__expression] = STATE(7417), - [sym_expr_unary] = STATE(5715), - [sym__expr_unary_minus] = STATE(5723), - [sym_expr_binary] = STATE(5715), - [sym__expr_binary_expression] = STATE(6788), - [sym_expr_parenthesized] = STATE(5176), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(5715), - [sym_val_nothing] = STATE(5705), - [sym_val_bool] = STATE(5705), - [sym_val_variable] = STATE(5170), - [sym__var] = STATE(4674), - [sym_val_number] = STATE(5705), - [sym__val_number_decimal] = STATE(4718), - [sym__val_number] = STATE(5875), - [sym_val_duration] = STATE(5705), - [sym_val_filesize] = STATE(5705), - [sym_val_binary] = STATE(5705), - [sym_val_string] = STATE(5705), - [sym__str_double_quotes] = STATE(5788), - [sym_val_interpolated] = STATE(5705), - [sym__inter_single_quotes] = STATE(5899), - [sym__inter_double_quotes] = STATE(5903), - [sym_val_list] = STATE(5705), - [sym_val_record] = STATE(5705), - [sym_val_table] = STATE(5705), - [sym_val_closure] = STATE(5705), - [sym__flag] = STATE(7415), - [sym_short_flag] = STATE(8329), - [sym_long_flag] = STATE(8329), - [sym_long_flag_equals_value] = STATE(8282), - [sym_comment] = STATE(2336), - [anon_sym_SEMI] = ACTIONS(6041), - [anon_sym_LF] = ACTIONS(6043), - [anon_sym_LBRACK] = ACTIONS(5371), - [anon_sym_LPAREN] = ACTIONS(5373), - [anon_sym_RPAREN] = ACTIONS(6041), - [anon_sym_PIPE] = ACTIONS(6041), - [anon_sym_DOLLAR] = ACTIONS(3317), - [anon_sym_DASH_DASH] = ACTIONS(5625), - [anon_sym_DASH] = ACTIONS(5627), - [anon_sym_LBRACE] = ACTIONS(5379), - [anon_sym_RBRACE] = ACTIONS(6041), - [anon_sym_DOT_DOT] = ACTIONS(5381), - [anon_sym_not] = ACTIONS(5383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5385), - [anon_sym_DOT_DOT_LT] = ACTIONS(5385), - [anon_sym_null] = ACTIONS(5387), - [anon_sym_true] = ACTIONS(5389), - [anon_sym_false] = ACTIONS(5389), - [aux_sym__val_number_decimal_token1] = ACTIONS(5391), - [aux_sym__val_number_decimal_token2] = ACTIONS(5391), - [anon_sym_DOT2] = ACTIONS(5393), - [aux_sym__val_number_decimal_token3] = ACTIONS(5395), - [aux_sym__val_number_token1] = ACTIONS(5397), - [aux_sym__val_number_token2] = ACTIONS(5397), - [aux_sym__val_number_token3] = ACTIONS(5397), - [aux_sym__val_number_token4] = ACTIONS(5397), - [aux_sym__val_number_token5] = ACTIONS(5397), - [aux_sym__val_number_token6] = ACTIONS(5397), - [anon_sym_0b] = ACTIONS(3345), - [anon_sym_0o] = ACTIONS(3347), - [anon_sym_0x] = ACTIONS(3347), - [sym_val_date] = ACTIONS(5399), - [anon_sym_DQUOTE] = ACTIONS(5401), - [sym__str_single_quotes] = ACTIONS(5403), - [sym__str_back_ticks] = ACTIONS(5403), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5405), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5407), - [anon_sym_POUND] = ACTIONS(113), - }, - [2337] = { - [sym__expression] = STATE(7417), - [sym_expr_unary] = STATE(5715), - [sym__expr_unary_minus] = STATE(5723), - [sym_expr_binary] = STATE(5715), - [sym__expr_binary_expression] = STATE(6788), - [sym_expr_parenthesized] = STATE(5176), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(5715), - [sym_val_nothing] = STATE(5705), - [sym_val_bool] = STATE(5705), - [sym_val_variable] = STATE(5170), - [sym__var] = STATE(4674), - [sym_val_number] = STATE(5705), - [sym__val_number_decimal] = STATE(4718), - [sym__val_number] = STATE(5875), - [sym_val_duration] = STATE(5705), - [sym_val_filesize] = STATE(5705), - [sym_val_binary] = STATE(5705), - [sym_val_string] = STATE(5705), - [sym__str_double_quotes] = STATE(5788), - [sym_val_interpolated] = STATE(5705), - [sym__inter_single_quotes] = STATE(5899), - [sym__inter_double_quotes] = STATE(5903), - [sym_val_list] = STATE(5705), - [sym_val_record] = STATE(5705), - [sym_val_table] = STATE(5705), - [sym_val_closure] = STATE(5705), - [sym__flag] = STATE(2338), - [sym_short_flag] = STATE(5044), - [sym_long_flag] = STATE(5044), - [sym_long_flag_equals_value] = STATE(5143), - [sym_comment] = STATE(2337), - [anon_sym_SEMI] = ACTIONS(6041), - [anon_sym_LF] = ACTIONS(6043), - [anon_sym_LBRACK] = ACTIONS(5371), - [anon_sym_LPAREN] = ACTIONS(5373), - [anon_sym_RPAREN] = ACTIONS(6041), - [anon_sym_PIPE] = ACTIONS(6041), - [anon_sym_DOLLAR] = ACTIONS(3317), - [anon_sym_DASH_DASH] = ACTIONS(5375), - [anon_sym_DASH] = ACTIONS(5377), - [anon_sym_LBRACE] = ACTIONS(5379), - [anon_sym_RBRACE] = ACTIONS(6041), - [anon_sym_DOT_DOT] = ACTIONS(5381), - [anon_sym_not] = ACTIONS(5383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5385), - [anon_sym_DOT_DOT_LT] = ACTIONS(5385), - [anon_sym_null] = ACTIONS(5387), - [anon_sym_true] = ACTIONS(5389), - [anon_sym_false] = ACTIONS(5389), - [aux_sym__val_number_decimal_token1] = ACTIONS(5391), - [aux_sym__val_number_decimal_token2] = ACTIONS(5391), - [anon_sym_DOT2] = ACTIONS(5393), - [aux_sym__val_number_decimal_token3] = ACTIONS(5395), - [aux_sym__val_number_token1] = ACTIONS(5397), - [aux_sym__val_number_token2] = ACTIONS(5397), - [aux_sym__val_number_token3] = ACTIONS(5397), - [aux_sym__val_number_token4] = ACTIONS(5397), - [aux_sym__val_number_token5] = ACTIONS(5397), - [aux_sym__val_number_token6] = ACTIONS(5397), - [anon_sym_0b] = ACTIONS(3345), - [anon_sym_0o] = ACTIONS(3347), - [anon_sym_0x] = ACTIONS(3347), - [sym_val_date] = ACTIONS(5399), - [anon_sym_DQUOTE] = ACTIONS(5401), - [sym__str_single_quotes] = ACTIONS(5403), - [sym__str_back_ticks] = ACTIONS(5403), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5405), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5407), - [anon_sym_POUND] = ACTIONS(113), - }, - [2338] = { - [sym__expression] = STATE(7422), - [sym_expr_unary] = STATE(5715), - [sym__expr_unary_minus] = STATE(5723), - [sym_expr_binary] = STATE(5715), - [sym__expr_binary_expression] = STATE(6788), - [sym_expr_parenthesized] = STATE(5176), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(5715), - [sym_val_nothing] = STATE(5705), - [sym_val_bool] = STATE(5705), - [sym_val_variable] = STATE(5170), - [sym__var] = STATE(4674), - [sym_val_number] = STATE(5705), - [sym__val_number_decimal] = STATE(4718), - [sym__val_number] = STATE(5875), - [sym_val_duration] = STATE(5705), - [sym_val_filesize] = STATE(5705), - [sym_val_binary] = STATE(5705), - [sym_val_string] = STATE(5705), - [sym__str_double_quotes] = STATE(5788), - [sym_val_interpolated] = STATE(5705), - [sym__inter_single_quotes] = STATE(5899), - [sym__inter_double_quotes] = STATE(5903), - [sym_val_list] = STATE(5705), - [sym_val_record] = STATE(5705), - [sym_val_table] = STATE(5705), - [sym_val_closure] = STATE(5705), - [sym__flag] = STATE(7421), - [sym_short_flag] = STATE(8329), - [sym_long_flag] = STATE(8329), - [sym_long_flag_equals_value] = STATE(8282), - [sym_comment] = STATE(2338), - [anon_sym_SEMI] = ACTIONS(6045), - [anon_sym_LF] = ACTIONS(6047), - [anon_sym_LBRACK] = ACTIONS(5371), - [anon_sym_LPAREN] = ACTIONS(5373), - [anon_sym_RPAREN] = ACTIONS(6045), - [anon_sym_PIPE] = ACTIONS(6045), - [anon_sym_DOLLAR] = ACTIONS(3317), - [anon_sym_DASH_DASH] = ACTIONS(5625), - [anon_sym_DASH] = ACTIONS(5627), - [anon_sym_LBRACE] = ACTIONS(5379), - [anon_sym_RBRACE] = ACTIONS(6045), - [anon_sym_DOT_DOT] = ACTIONS(5381), - [anon_sym_not] = ACTIONS(5383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5385), - [anon_sym_DOT_DOT_LT] = ACTIONS(5385), - [anon_sym_null] = ACTIONS(5387), - [anon_sym_true] = ACTIONS(5389), - [anon_sym_false] = ACTIONS(5389), - [aux_sym__val_number_decimal_token1] = ACTIONS(5391), - [aux_sym__val_number_decimal_token2] = ACTIONS(5391), - [anon_sym_DOT2] = ACTIONS(5393), - [aux_sym__val_number_decimal_token3] = ACTIONS(5395), - [aux_sym__val_number_token1] = ACTIONS(5397), - [aux_sym__val_number_token2] = ACTIONS(5397), - [aux_sym__val_number_token3] = ACTIONS(5397), - [aux_sym__val_number_token4] = ACTIONS(5397), - [aux_sym__val_number_token5] = ACTIONS(5397), - [aux_sym__val_number_token6] = ACTIONS(5397), - [anon_sym_0b] = ACTIONS(3345), - [anon_sym_0o] = ACTIONS(3347), - [anon_sym_0x] = ACTIONS(3347), - [sym_val_date] = ACTIONS(5399), - [anon_sym_DQUOTE] = ACTIONS(5401), - [sym__str_single_quotes] = ACTIONS(5403), - [sym__str_back_ticks] = ACTIONS(5403), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5405), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5407), - [anon_sym_POUND] = ACTIONS(113), - }, - [2339] = { - [sym_comment] = STATE(2339), - [anon_sym_LBRACK] = ACTIONS(961), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_RBRACK] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(961), - [anon_sym_DOLLAR] = ACTIONS(961), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH_DASH] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(961), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(961), - [anon_sym_SLASH_SLASH] = ACTIONS(961), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(961), - [anon_sym_bit_DASHshr] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(961), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_not_DASHin] = ACTIONS(961), - [anon_sym_starts_DASHwith] = ACTIONS(961), - [anon_sym_ends_DASHwith] = ACTIONS(961), - [anon_sym_EQ_TILDE] = ACTIONS(961), - [anon_sym_BANG_TILDE] = ACTIONS(961), - [anon_sym_bit_DASHand] = ACTIONS(961), - [anon_sym_bit_DASHxor] = ACTIONS(961), - [anon_sym_bit_DASHor] = ACTIONS(961), - [anon_sym_and] = ACTIONS(961), - [anon_sym_xor] = ACTIONS(961), - [anon_sym_or] = ACTIONS(961), - [anon_sym_DOT_DOT_EQ] = ACTIONS(961), - [anon_sym_DOT_DOT_LT] = ACTIONS(961), - [anon_sym_null] = ACTIONS(961), - [anon_sym_true] = ACTIONS(961), - [anon_sym_false] = ACTIONS(961), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(961), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(961), - [aux_sym__val_number_token1] = ACTIONS(961), - [aux_sym__val_number_token2] = ACTIONS(961), - [aux_sym__val_number_token3] = ACTIONS(961), - [aux_sym__val_number_token4] = ACTIONS(961), - [aux_sym__val_number_token5] = ACTIONS(961), - [aux_sym__val_number_token6] = ACTIONS(961), - [anon_sym_0b] = ACTIONS(959), - [anon_sym_0o] = ACTIONS(959), - [anon_sym_0x] = ACTIONS(959), - [sym_val_date] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(961), - [sym__str_single_quotes] = ACTIONS(961), - [sym__str_back_ticks] = ACTIONS(961), - [anon_sym_err_GT] = ACTIONS(961), - [anon_sym_out_GT] = ACTIONS(961), - [anon_sym_e_GT] = ACTIONS(961), - [anon_sym_o_GT] = ACTIONS(961), - [anon_sym_err_PLUSout_GT] = ACTIONS(961), - [anon_sym_out_PLUSerr_GT] = ACTIONS(961), - [anon_sym_o_PLUSe_GT] = ACTIONS(961), - [anon_sym_e_PLUSo_GT] = ACTIONS(961), - [aux_sym_unquoted_token5] = ACTIONS(3037), - [aux_sym__unquoted_in_list_token1] = ACTIONS(959), - [anon_sym_POUND] = ACTIONS(3), - }, - [2340] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6781), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6719), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5324), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(6284), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(2340), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(6049), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5523), - [anon_sym_DOT_DOT_LT] = ACTIONS(5523), - [anon_sym_null] = ACTIONS(3894), - [anon_sym_true] = ACTIONS(3896), - [anon_sym_false] = ACTIONS(3896), - [aux_sym__val_number_decimal_token1] = ACTIONS(3898), - [aux_sym__val_number_decimal_token2] = ACTIONS(3900), - [anon_sym_DOT2] = ACTIONS(6051), - [aux_sym__val_number_decimal_token3] = ACTIONS(3904), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(3906), - [aux_sym__val_number_token5] = ACTIONS(3906), - [aux_sym__val_number_token6] = ACTIONS(3906), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(3908), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(3), - }, - [2341] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6782), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6719), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5324), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(6285), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(2341), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(6049), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5523), - [anon_sym_DOT_DOT_LT] = ACTIONS(5523), - [anon_sym_null] = ACTIONS(3894), - [anon_sym_true] = ACTIONS(3896), - [anon_sym_false] = ACTIONS(3896), - [aux_sym__val_number_decimal_token1] = ACTIONS(3898), - [aux_sym__val_number_decimal_token2] = ACTIONS(3900), - [anon_sym_DOT2] = ACTIONS(6051), - [aux_sym__val_number_decimal_token3] = ACTIONS(3904), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(3906), - [aux_sym__val_number_token5] = ACTIONS(3906), - [aux_sym__val_number_token6] = ACTIONS(3906), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(3908), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(3), - }, - [2342] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6777), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6719), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5324), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(6089), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(2342), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(6049), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5523), - [anon_sym_DOT_DOT_LT] = ACTIONS(5523), - [anon_sym_null] = ACTIONS(3894), - [anon_sym_true] = ACTIONS(3896), - [anon_sym_false] = ACTIONS(3896), - [aux_sym__val_number_decimal_token1] = ACTIONS(3898), - [aux_sym__val_number_decimal_token2] = ACTIONS(3900), - [anon_sym_DOT2] = ACTIONS(6051), - [aux_sym__val_number_decimal_token3] = ACTIONS(3904), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(3906), - [aux_sym__val_number_token5] = ACTIONS(3906), - [aux_sym__val_number_token6] = ACTIONS(3906), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(3908), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(3), - }, - [2343] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6763), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6719), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5324), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(6260), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(2343), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(6049), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5523), - [anon_sym_DOT_DOT_LT] = ACTIONS(5523), - [anon_sym_null] = ACTIONS(3894), - [anon_sym_true] = ACTIONS(3896), - [anon_sym_false] = ACTIONS(3896), - [aux_sym__val_number_decimal_token1] = ACTIONS(3898), - [aux_sym__val_number_decimal_token2] = ACTIONS(3900), - [anon_sym_DOT2] = ACTIONS(6051), - [aux_sym__val_number_decimal_token3] = ACTIONS(3904), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(3906), - [aux_sym__val_number_token5] = ACTIONS(3906), - [aux_sym__val_number_token6] = ACTIONS(3906), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(3908), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(3), - }, - [2344] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6760), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6719), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5324), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(5954), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(2344), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(6049), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5523), - [anon_sym_DOT_DOT_LT] = ACTIONS(5523), - [anon_sym_null] = ACTIONS(3894), - [anon_sym_true] = ACTIONS(3896), - [anon_sym_false] = ACTIONS(3896), - [aux_sym__val_number_decimal_token1] = ACTIONS(3898), - [aux_sym__val_number_decimal_token2] = ACTIONS(3900), - [anon_sym_DOT2] = ACTIONS(6051), - [aux_sym__val_number_decimal_token3] = ACTIONS(3904), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(3906), - [aux_sym__val_number_token5] = ACTIONS(3906), - [aux_sym__val_number_token6] = ACTIONS(3906), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(3908), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(3), - }, - [2345] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6779), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6719), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5324), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(5955), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(2345), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(6049), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5523), - [anon_sym_DOT_DOT_LT] = ACTIONS(5523), - [anon_sym_null] = ACTIONS(3894), - [anon_sym_true] = ACTIONS(3896), - [anon_sym_false] = ACTIONS(3896), - [aux_sym__val_number_decimal_token1] = ACTIONS(3898), - [aux_sym__val_number_decimal_token2] = ACTIONS(3900), - [anon_sym_DOT2] = ACTIONS(6051), - [aux_sym__val_number_decimal_token3] = ACTIONS(3904), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(3906), - [aux_sym__val_number_token5] = ACTIONS(3906), - [aux_sym__val_number_token6] = ACTIONS(3906), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(3908), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(3), - }, - [2346] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6757), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6719), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5324), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(5962), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(2346), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(6049), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5523), - [anon_sym_DOT_DOT_LT] = ACTIONS(5523), - [anon_sym_null] = ACTIONS(3894), - [anon_sym_true] = ACTIONS(3896), - [anon_sym_false] = ACTIONS(3896), - [aux_sym__val_number_decimal_token1] = ACTIONS(3898), - [aux_sym__val_number_decimal_token2] = ACTIONS(3900), - [anon_sym_DOT2] = ACTIONS(6051), - [aux_sym__val_number_decimal_token3] = ACTIONS(3904), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(3906), - [aux_sym__val_number_token5] = ACTIONS(3906), - [aux_sym__val_number_token6] = ACTIONS(3906), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(3908), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(3), - }, - [2347] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6758), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6719), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5324), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(5981), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(2347), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(6049), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5523), - [anon_sym_DOT_DOT_LT] = ACTIONS(5523), - [anon_sym_null] = ACTIONS(3894), - [anon_sym_true] = ACTIONS(3896), - [anon_sym_false] = ACTIONS(3896), - [aux_sym__val_number_decimal_token1] = ACTIONS(3898), - [aux_sym__val_number_decimal_token2] = ACTIONS(3900), - [anon_sym_DOT2] = ACTIONS(6051), - [aux_sym__val_number_decimal_token3] = ACTIONS(3904), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(3906), - [aux_sym__val_number_token5] = ACTIONS(3906), - [aux_sym__val_number_token6] = ACTIONS(3906), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(3908), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(3), - }, - [2348] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6762), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6719), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5324), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(5958), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(2348), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(6049), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5523), - [anon_sym_DOT_DOT_LT] = ACTIONS(5523), - [anon_sym_null] = ACTIONS(3894), - [anon_sym_true] = ACTIONS(3896), - [anon_sym_false] = ACTIONS(3896), - [aux_sym__val_number_decimal_token1] = ACTIONS(3898), - [aux_sym__val_number_decimal_token2] = ACTIONS(3900), - [anon_sym_DOT2] = ACTIONS(6051), - [aux_sym__val_number_decimal_token3] = ACTIONS(3904), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(3906), - [aux_sym__val_number_token5] = ACTIONS(3906), - [aux_sym__val_number_token6] = ACTIONS(3906), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(3908), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(3), - }, - [2349] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6778), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6719), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5324), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(6177), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(2349), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(6049), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5523), - [anon_sym_DOT_DOT_LT] = ACTIONS(5523), - [anon_sym_null] = ACTIONS(3894), - [anon_sym_true] = ACTIONS(3896), - [anon_sym_false] = ACTIONS(3896), - [aux_sym__val_number_decimal_token1] = ACTIONS(3898), - [aux_sym__val_number_decimal_token2] = ACTIONS(3900), - [anon_sym_DOT2] = ACTIONS(6051), - [aux_sym__val_number_decimal_token3] = ACTIONS(3904), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(3906), - [aux_sym__val_number_token5] = ACTIONS(3906), - [aux_sym__val_number_token6] = ACTIONS(3906), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(3908), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(3), - }, - [2350] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6780), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6719), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5324), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(6203), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(2350), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(6049), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5523), - [anon_sym_DOT_DOT_LT] = ACTIONS(5523), - [anon_sym_null] = ACTIONS(3894), - [anon_sym_true] = ACTIONS(3896), - [anon_sym_false] = ACTIONS(3896), - [aux_sym__val_number_decimal_token1] = ACTIONS(3898), - [aux_sym__val_number_decimal_token2] = ACTIONS(3900), - [anon_sym_DOT2] = ACTIONS(6051), - [aux_sym__val_number_decimal_token3] = ACTIONS(3904), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(3906), - [aux_sym__val_number_token5] = ACTIONS(3906), - [aux_sym__val_number_token6] = ACTIONS(3906), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(3908), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(3), - }, - [2351] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6759), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6719), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5324), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(6218), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(2351), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(6049), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5523), - [anon_sym_DOT_DOT_LT] = ACTIONS(5523), - [anon_sym_null] = ACTIONS(3894), - [anon_sym_true] = ACTIONS(3896), - [anon_sym_false] = ACTIONS(3896), - [aux_sym__val_number_decimal_token1] = ACTIONS(3898), - [aux_sym__val_number_decimal_token2] = ACTIONS(3900), - [anon_sym_DOT2] = ACTIONS(6051), - [aux_sym__val_number_decimal_token3] = ACTIONS(3904), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(3906), - [aux_sym__val_number_token5] = ACTIONS(3906), - [aux_sym__val_number_token6] = ACTIONS(3906), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(3908), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(3), - }, - [2352] = { - [sym_expr_unary] = STATE(6282), - [sym__expr_unary_minus] = STATE(6245), - [sym_expr_binary] = STATE(6282), - [sym__expr_binary_expression] = STATE(6761), - [sym_expr_parenthesized] = STATE(6282), - [sym__val_range] = STATE(10473), - [sym__value] = STATE(6282), - [sym_val_nothing] = STATE(6175), - [sym_val_bool] = STATE(6719), - [sym_val_variable] = STATE(6175), - [sym__var] = STATE(4901), - [sym_val_number] = STATE(6175), - [sym__val_number_decimal] = STATE(5324), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(6175), - [sym_val_filesize] = STATE(6175), - [sym_val_binary] = STATE(6175), - [sym_val_string] = STATE(6175), - [sym__str_double_quotes] = STATE(5541), - [sym_val_interpolated] = STATE(6175), - [sym__inter_single_quotes] = STATE(6258), - [sym__inter_double_quotes] = STATE(6277), - [sym_val_list] = STATE(6175), - [sym_val_record] = STATE(6175), - [sym_val_table] = STATE(6175), - [sym_val_closure] = STATE(6175), - [sym_unquoted] = STATE(6055), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(2352), - [anon_sym_LBRACK] = ACTIONS(3882), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_DOT_DOT] = ACTIONS(6049), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5523), - [anon_sym_DOT_DOT_LT] = ACTIONS(5523), - [anon_sym_null] = ACTIONS(3894), - [anon_sym_true] = ACTIONS(3896), - [anon_sym_false] = ACTIONS(3896), - [aux_sym__val_number_decimal_token1] = ACTIONS(3898), - [aux_sym__val_number_decimal_token2] = ACTIONS(3900), - [anon_sym_DOT2] = ACTIONS(6051), - [aux_sym__val_number_decimal_token3] = ACTIONS(3904), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(3906), - [aux_sym__val_number_token5] = ACTIONS(3906), - [aux_sym__val_number_token6] = ACTIONS(3906), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(3908), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(3), - }, - [2353] = { - [sym_expr_unary] = STATE(4967), - [sym__expr_unary_minus] = STATE(5030), - [sym_expr_binary] = STATE(4967), - [sym__expr_binary_expression] = STATE(5542), - [sym_expr_parenthesized] = STATE(4967), - [sym__val_range] = STATE(10654), - [sym__value] = STATE(4967), - [sym_val_nothing] = STATE(5065), - [sym_val_bool] = STATE(5238), - [sym_val_variable] = STATE(5065), - [sym__var] = STATE(4618), - [sym_val_number] = STATE(5065), - [sym__val_number_decimal] = STATE(4170), - [sym__val_number] = STATE(5114), - [sym_val_duration] = STATE(5065), - [sym_val_filesize] = STATE(5065), - [sym_val_binary] = STATE(5065), - [sym_val_string] = STATE(5065), - [sym__str_double_quotes] = STATE(5025), - [sym_val_interpolated] = STATE(5065), - [sym__inter_single_quotes] = STATE(5028), - [sym__inter_double_quotes] = STATE(5029), - [sym_val_list] = STATE(5065), - [sym_val_record] = STATE(5065), - [sym_val_table] = STATE(5065), - [sym_val_closure] = STATE(5065), - [sym_unquoted] = STATE(5007), - [sym__unquoted_anonymous_prefix] = STATE(10969), - [sym_comment] = STATE(2353), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_LPAREN] = ACTIONS(5631), - [anon_sym_DOLLAR] = ACTIONS(5633), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_DOT_DOT] = ACTIONS(5637), - [anon_sym_not] = ACTIONS(5639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5641), - [anon_sym_DOT_DOT_LT] = ACTIONS(5641), - [anon_sym_null] = ACTIONS(5643), - [anon_sym_true] = ACTIONS(5645), - [anon_sym_false] = ACTIONS(5645), - [aux_sym__val_number_decimal_token1] = ACTIONS(5647), - [aux_sym__val_number_decimal_token2] = ACTIONS(5649), - [anon_sym_DOT2] = ACTIONS(5651), - [aux_sym__val_number_decimal_token3] = ACTIONS(5653), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(5655), - [aux_sym__val_number_token5] = ACTIONS(5655), - [aux_sym__val_number_token6] = ACTIONS(5655), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(5657), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(5659), - [anon_sym_POUND] = ACTIONS(3), - }, - [2354] = { - [sym_comment] = STATE(2354), - [ts_builtin_sym_end] = ACTIONS(1119), - [anon_sym_export] = ACTIONS(1117), - [anon_sym_alias] = ACTIONS(1117), - [anon_sym_let] = ACTIONS(1117), - [anon_sym_let_DASHenv] = ACTIONS(1117), - [anon_sym_mut] = ACTIONS(1117), - [anon_sym_const] = ACTIONS(1117), - [anon_sym_SEMI] = ACTIONS(1117), - [sym_cmd_identifier] = ACTIONS(1117), - [anon_sym_LF] = ACTIONS(1119), - [anon_sym_def] = ACTIONS(1117), - [anon_sym_export_DASHenv] = ACTIONS(1117), - [anon_sym_extern] = ACTIONS(1117), - [anon_sym_module] = ACTIONS(1117), - [anon_sym_use] = ACTIONS(1117), - [anon_sym_LBRACK] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1117), - [anon_sym_DOLLAR] = ACTIONS(1117), - [anon_sym_error] = ACTIONS(1117), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_break] = ACTIONS(1117), - [anon_sym_continue] = ACTIONS(1117), - [anon_sym_for] = ACTIONS(1117), - [anon_sym_loop] = ACTIONS(1117), - [anon_sym_while] = ACTIONS(1117), - [anon_sym_do] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_match] = ACTIONS(1117), - [anon_sym_LBRACE] = ACTIONS(1117), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_try] = ACTIONS(1117), - [anon_sym_return] = ACTIONS(1117), - [anon_sym_source] = ACTIONS(1117), - [anon_sym_source_DASHenv] = ACTIONS(1117), - [anon_sym_register] = ACTIONS(1117), - [anon_sym_hide] = ACTIONS(1117), - [anon_sym_hide_DASHenv] = ACTIONS(1117), - [anon_sym_overlay] = ACTIONS(1117), - [anon_sym_STAR] = ACTIONS(1117), - [anon_sym_where] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1117), - [anon_sym_DOT] = ACTIONS(1117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1117), - [anon_sym_DOT_DOT_LT] = ACTIONS(1117), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_true] = ACTIONS(1117), - [anon_sym_false] = ACTIONS(1117), - [aux_sym__val_number_decimal_token1] = ACTIONS(1117), - [aux_sym__val_number_decimal_token2] = ACTIONS(1117), - [anon_sym_DOT2] = ACTIONS(1117), - [aux_sym__val_number_decimal_token3] = ACTIONS(1117), - [aux_sym__val_number_token1] = ACTIONS(1117), - [aux_sym__val_number_token2] = ACTIONS(1117), - [aux_sym__val_number_token3] = ACTIONS(1117), - [aux_sym__val_number_token4] = ACTIONS(1117), - [aux_sym__val_number_token5] = ACTIONS(1117), - [aux_sym__val_number_token6] = ACTIONS(1117), - [anon_sym_0b] = ACTIONS(1117), - [anon_sym_0o] = ACTIONS(1117), - [anon_sym_0x] = ACTIONS(1117), - [sym_val_date] = ACTIONS(1117), - [anon_sym_DQUOTE] = ACTIONS(1117), - [sym__str_single_quotes] = ACTIONS(1117), - [sym__str_back_ticks] = ACTIONS(1117), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1117), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1117), - [anon_sym_CARET] = ACTIONS(1117), - [anon_sym_POUND] = ACTIONS(113), - }, - [2355] = { - [sym_comment] = STATE(2355), - [ts_builtin_sym_end] = ACTIONS(1160), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_alias] = ACTIONS(1158), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_let_DASHenv] = ACTIONS(1158), - [anon_sym_mut] = ACTIONS(1158), - [anon_sym_const] = ACTIONS(1158), - [anon_sym_SEMI] = ACTIONS(1158), - [sym_cmd_identifier] = ACTIONS(1158), - [anon_sym_LF] = ACTIONS(1160), - [anon_sym_def] = ACTIONS(1158), - [anon_sym_export_DASHenv] = ACTIONS(1158), - [anon_sym_extern] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_use] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_LPAREN] = ACTIONS(1158), - [anon_sym_DOLLAR] = ACTIONS(1158), - [anon_sym_error] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_break] = ACTIONS(1158), - [anon_sym_continue] = ACTIONS(1158), - [anon_sym_for] = ACTIONS(1158), - [anon_sym_loop] = ACTIONS(1158), - [anon_sym_while] = ACTIONS(1158), - [anon_sym_do] = ACTIONS(1158), - [anon_sym_if] = ACTIONS(1158), - [anon_sym_match] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1158), - [anon_sym_DOT_DOT] = ACTIONS(1158), - [anon_sym_try] = ACTIONS(1158), - [anon_sym_return] = ACTIONS(1158), - [anon_sym_source] = ACTIONS(1158), - [anon_sym_source_DASHenv] = ACTIONS(1158), - [anon_sym_register] = ACTIONS(1158), - [anon_sym_hide] = ACTIONS(1158), - [anon_sym_hide_DASHenv] = ACTIONS(1158), - [anon_sym_overlay] = ACTIONS(1158), - [anon_sym_as] = ACTIONS(1158), - [anon_sym_where] = ACTIONS(1158), - [anon_sym_not] = ACTIONS(1158), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1158), - [anon_sym_DOT_DOT_LT] = ACTIONS(1158), - [anon_sym_null] = ACTIONS(1158), - [anon_sym_true] = ACTIONS(1158), - [anon_sym_false] = ACTIONS(1158), - [aux_sym__val_number_decimal_token1] = ACTIONS(1158), - [aux_sym__val_number_decimal_token2] = ACTIONS(1158), - [anon_sym_DOT2] = ACTIONS(1158), - [aux_sym__val_number_decimal_token3] = ACTIONS(1158), - [aux_sym__val_number_token1] = ACTIONS(1158), - [aux_sym__val_number_token2] = ACTIONS(1158), - [aux_sym__val_number_token3] = ACTIONS(1158), - [aux_sym__val_number_token4] = ACTIONS(1158), - [aux_sym__val_number_token5] = ACTIONS(1158), - [aux_sym__val_number_token6] = ACTIONS(1158), - [anon_sym_0b] = ACTIONS(1158), - [anon_sym_0o] = ACTIONS(1158), - [anon_sym_0x] = ACTIONS(1158), - [sym_val_date] = ACTIONS(1158), - [anon_sym_DQUOTE] = ACTIONS(1158), - [sym__str_single_quotes] = ACTIONS(1158), - [sym__str_back_ticks] = ACTIONS(1158), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1158), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1158), - [anon_sym_CARET] = ACTIONS(1158), - [anon_sym_POUND] = ACTIONS(113), - }, - [2356] = { - [sym_comment] = STATE(2356), - [ts_builtin_sym_end] = ACTIONS(1192), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_alias] = ACTIONS(1190), - [anon_sym_let] = ACTIONS(1190), - [anon_sym_let_DASHenv] = ACTIONS(1190), - [anon_sym_mut] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1190), - [anon_sym_SEMI] = ACTIONS(1190), - [sym_cmd_identifier] = ACTIONS(1190), - [anon_sym_LF] = ACTIONS(1192), - [anon_sym_def] = ACTIONS(1190), - [anon_sym_export_DASHenv] = ACTIONS(1190), - [anon_sym_extern] = ACTIONS(1190), - [anon_sym_module] = ACTIONS(1190), - [anon_sym_use] = ACTIONS(1190), - [anon_sym_LBRACK] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(1190), - [anon_sym_DOLLAR] = ACTIONS(1190), - [anon_sym_error] = ACTIONS(1190), - [anon_sym_DASH_DASH] = ACTIONS(1190), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_loop] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [anon_sym_do] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_match] = ACTIONS(1190), - [anon_sym_LBRACE] = ACTIONS(1190), - [anon_sym_DOT_DOT] = ACTIONS(1190), - [anon_sym_try] = ACTIONS(1190), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_source] = ACTIONS(1190), - [anon_sym_source_DASHenv] = ACTIONS(1190), - [anon_sym_register] = ACTIONS(1190), - [anon_sym_hide] = ACTIONS(1190), - [anon_sym_hide_DASHenv] = ACTIONS(1190), - [anon_sym_overlay] = ACTIONS(1190), - [anon_sym_as] = ACTIONS(1190), - [anon_sym_where] = ACTIONS(1190), - [anon_sym_not] = ACTIONS(1190), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1190), - [anon_sym_DOT_DOT_LT] = ACTIONS(1190), - [anon_sym_null] = ACTIONS(1190), - [anon_sym_true] = ACTIONS(1190), - [anon_sym_false] = ACTIONS(1190), - [aux_sym__val_number_decimal_token1] = ACTIONS(1190), - [aux_sym__val_number_decimal_token2] = ACTIONS(1190), - [anon_sym_DOT2] = ACTIONS(1190), - [aux_sym__val_number_decimal_token3] = ACTIONS(1190), - [aux_sym__val_number_token1] = ACTIONS(1190), - [aux_sym__val_number_token2] = ACTIONS(1190), - [aux_sym__val_number_token3] = ACTIONS(1190), - [aux_sym__val_number_token4] = ACTIONS(1190), - [aux_sym__val_number_token5] = ACTIONS(1190), - [aux_sym__val_number_token6] = ACTIONS(1190), - [anon_sym_0b] = ACTIONS(1190), - [anon_sym_0o] = ACTIONS(1190), - [anon_sym_0x] = ACTIONS(1190), - [sym_val_date] = ACTIONS(1190), - [anon_sym_DQUOTE] = ACTIONS(1190), - [sym__str_single_quotes] = ACTIONS(1190), - [sym__str_back_ticks] = ACTIONS(1190), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1190), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1190), - [anon_sym_POUND] = ACTIONS(113), - }, - [2357] = { - [sym_comment] = STATE(2357), - [ts_builtin_sym_end] = ACTIONS(1318), - [anon_sym_export] = ACTIONS(1316), - [anon_sym_alias] = ACTIONS(1316), - [anon_sym_let] = ACTIONS(1316), - [anon_sym_let_DASHenv] = ACTIONS(1316), - [anon_sym_mut] = ACTIONS(1316), - [anon_sym_const] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1316), - [sym_cmd_identifier] = ACTIONS(1316), - [anon_sym_LF] = ACTIONS(1318), - [anon_sym_def] = ACTIONS(1316), - [anon_sym_export_DASHenv] = ACTIONS(1316), - [anon_sym_extern] = ACTIONS(1316), - [anon_sym_module] = ACTIONS(1316), - [anon_sym_use] = ACTIONS(1316), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1316), - [anon_sym_DOLLAR] = ACTIONS(1316), - [anon_sym_error] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_break] = ACTIONS(1316), - [anon_sym_continue] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1316), - [anon_sym_loop] = ACTIONS(1316), - [anon_sym_while] = ACTIONS(1316), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_if] = ACTIONS(1316), - [anon_sym_match] = ACTIONS(1316), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_DOT_DOT] = ACTIONS(1316), - [anon_sym_try] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1316), - [anon_sym_source] = ACTIONS(1316), - [anon_sym_source_DASHenv] = ACTIONS(1316), - [anon_sym_register] = ACTIONS(1316), - [anon_sym_hide] = ACTIONS(1316), - [anon_sym_hide_DASHenv] = ACTIONS(1316), - [anon_sym_overlay] = ACTIONS(1316), - [anon_sym_as] = ACTIONS(1316), - [anon_sym_where] = ACTIONS(1316), - [anon_sym_not] = ACTIONS(1316), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1316), - [anon_sym_DOT_DOT_LT] = ACTIONS(1316), - [anon_sym_null] = ACTIONS(1316), - [anon_sym_true] = ACTIONS(1316), - [anon_sym_false] = ACTIONS(1316), - [aux_sym__val_number_decimal_token1] = ACTIONS(1316), - [aux_sym__val_number_decimal_token2] = ACTIONS(1316), - [anon_sym_DOT2] = ACTIONS(1316), - [aux_sym__val_number_decimal_token3] = ACTIONS(1316), - [aux_sym__val_number_token1] = ACTIONS(1316), - [aux_sym__val_number_token2] = ACTIONS(1316), - [aux_sym__val_number_token3] = ACTIONS(1316), - [aux_sym__val_number_token4] = ACTIONS(1316), - [aux_sym__val_number_token5] = ACTIONS(1316), - [aux_sym__val_number_token6] = ACTIONS(1316), - [anon_sym_0b] = ACTIONS(1316), - [anon_sym_0o] = ACTIONS(1316), - [anon_sym_0x] = ACTIONS(1316), - [sym_val_date] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1316), - [sym__str_single_quotes] = ACTIONS(1316), - [sym__str_back_ticks] = ACTIONS(1316), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1316), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(113), - }, - [2358] = { - [sym_comment] = STATE(2358), - [ts_builtin_sym_end] = ACTIONS(1322), - [anon_sym_export] = ACTIONS(1320), - [anon_sym_alias] = ACTIONS(1320), - [anon_sym_let] = ACTIONS(1320), - [anon_sym_let_DASHenv] = ACTIONS(1320), - [anon_sym_mut] = ACTIONS(1320), - [anon_sym_const] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [sym_cmd_identifier] = ACTIONS(1320), - [anon_sym_LF] = ACTIONS(1322), - [anon_sym_def] = ACTIONS(1320), - [anon_sym_export_DASHenv] = ACTIONS(1320), - [anon_sym_extern] = ACTIONS(1320), - [anon_sym_module] = ACTIONS(1320), - [anon_sym_use] = ACTIONS(1320), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_LPAREN] = ACTIONS(1320), - [anon_sym_DOLLAR] = ACTIONS(1320), - [anon_sym_error] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1320), - [anon_sym_continue] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_loop] = ACTIONS(1320), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_do] = ACTIONS(1320), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_match] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_DOT_DOT] = ACTIONS(1320), - [anon_sym_try] = ACTIONS(1320), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_source] = ACTIONS(1320), - [anon_sym_source_DASHenv] = ACTIONS(1320), - [anon_sym_register] = ACTIONS(1320), - [anon_sym_hide] = ACTIONS(1320), - [anon_sym_hide_DASHenv] = ACTIONS(1320), - [anon_sym_overlay] = ACTIONS(1320), - [anon_sym_as] = ACTIONS(1320), - [anon_sym_where] = ACTIONS(1320), - [anon_sym_not] = ACTIONS(1320), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1320), - [anon_sym_DOT_DOT_LT] = ACTIONS(1320), - [anon_sym_null] = ACTIONS(1320), - [anon_sym_true] = ACTIONS(1320), - [anon_sym_false] = ACTIONS(1320), - [aux_sym__val_number_decimal_token1] = ACTIONS(1320), - [aux_sym__val_number_decimal_token2] = ACTIONS(1320), - [anon_sym_DOT2] = ACTIONS(1320), - [aux_sym__val_number_decimal_token3] = ACTIONS(1320), - [aux_sym__val_number_token1] = ACTIONS(1320), - [aux_sym__val_number_token2] = ACTIONS(1320), - [aux_sym__val_number_token3] = ACTIONS(1320), - [aux_sym__val_number_token4] = ACTIONS(1320), - [aux_sym__val_number_token5] = ACTIONS(1320), - [aux_sym__val_number_token6] = ACTIONS(1320), - [anon_sym_0b] = ACTIONS(1320), - [anon_sym_0o] = ACTIONS(1320), - [anon_sym_0x] = ACTIONS(1320), - [sym_val_date] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1320), - [sym__str_single_quotes] = ACTIONS(1320), - [sym__str_back_ticks] = ACTIONS(1320), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1320), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1320), - [anon_sym_CARET] = ACTIONS(1320), + [2567] = { + [sym_comment] = STATE(2567), + [anon_sym_SEMI] = ACTIONS(1253), + [anon_sym_LF] = ACTIONS(1255), + [anon_sym_LBRACK] = ACTIONS(1253), + [anon_sym_LPAREN] = ACTIONS(1253), + [anon_sym_RPAREN] = ACTIONS(1253), + [anon_sym_PIPE] = ACTIONS(1253), + [anon_sym_DOLLAR] = ACTIONS(1253), + [anon_sym_GT] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_in] = ACTIONS(1253), + [anon_sym_LBRACE] = ACTIONS(1253), + [anon_sym_RBRACE] = ACTIONS(1253), + [anon_sym_DOT_DOT] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_STAR_STAR] = ACTIONS(1253), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_SLASH] = ACTIONS(1253), + [anon_sym_mod] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(1253), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_bit_DASHshl] = ACTIONS(1253), + [anon_sym_bit_DASHshr] = ACTIONS(1253), + [anon_sym_EQ_EQ] = ACTIONS(1253), + [anon_sym_BANG_EQ] = ACTIONS(1253), + [anon_sym_LT2] = ACTIONS(1253), + [anon_sym_LT_EQ] = ACTIONS(1253), + [anon_sym_GT_EQ] = ACTIONS(1253), + [anon_sym_not_DASHin] = ACTIONS(1253), + [anon_sym_starts_DASHwith] = ACTIONS(1253), + [anon_sym_ends_DASHwith] = ACTIONS(1253), + [anon_sym_EQ_TILDE] = ACTIONS(1253), + [anon_sym_BANG_TILDE] = ACTIONS(1253), + [anon_sym_bit_DASHand] = ACTIONS(1253), + [anon_sym_bit_DASHxor] = ACTIONS(1253), + [anon_sym_bit_DASHor] = ACTIONS(1253), + [anon_sym_and] = ACTIONS(1253), + [anon_sym_xor] = ACTIONS(1253), + [anon_sym_or] = ACTIONS(1253), + [anon_sym_not] = ACTIONS(1253), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1253), + [anon_sym_DOT_DOT_LT] = ACTIONS(1253), + [anon_sym_null] = ACTIONS(1253), + [anon_sym_true] = ACTIONS(1253), + [anon_sym_false] = ACTIONS(1253), + [aux_sym__val_number_decimal_token1] = ACTIONS(1253), + [aux_sym__val_number_decimal_token2] = ACTIONS(1253), + [anon_sym_DOT2] = ACTIONS(1253), + [aux_sym__val_number_decimal_token3] = ACTIONS(1253), + [aux_sym__val_number_token1] = ACTIONS(1253), + [aux_sym__val_number_token2] = ACTIONS(1253), + [aux_sym__val_number_token3] = ACTIONS(1253), + [aux_sym__val_number_token4] = ACTIONS(1253), + [aux_sym__val_number_token5] = ACTIONS(1253), + [aux_sym__val_number_token6] = ACTIONS(1253), + [anon_sym_0b] = ACTIONS(1253), + [anon_sym_0o] = ACTIONS(1253), + [anon_sym_0x] = ACTIONS(1253), + [sym_val_date] = ACTIONS(1253), + [anon_sym_DQUOTE] = ACTIONS(1253), + [sym__str_single_quotes] = ACTIONS(1253), + [sym__str_back_ticks] = ACTIONS(1253), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1253), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1253), [anon_sym_POUND] = ACTIONS(113), }, - [2359] = { - [sym_comment] = STATE(2359), - [ts_builtin_sym_end] = ACTIONS(961), - [anon_sym_export] = ACTIONS(959), - [anon_sym_alias] = ACTIONS(959), - [anon_sym_let] = ACTIONS(959), - [anon_sym_let_DASHenv] = ACTIONS(959), - [anon_sym_mut] = ACTIONS(959), - [anon_sym_const] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(959), - [sym_cmd_identifier] = ACTIONS(959), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_def] = ACTIONS(959), - [anon_sym_export_DASHenv] = ACTIONS(959), - [anon_sym_extern] = ACTIONS(959), - [anon_sym_module] = ACTIONS(959), - [anon_sym_use] = ACTIONS(959), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_error] = ACTIONS(959), - [anon_sym_DASH_DASH] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_break] = ACTIONS(959), - [anon_sym_continue] = ACTIONS(959), - [anon_sym_for] = ACTIONS(959), - [anon_sym_loop] = ACTIONS(959), - [anon_sym_while] = ACTIONS(959), - [anon_sym_do] = ACTIONS(959), - [anon_sym_if] = ACTIONS(959), - [anon_sym_match] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_try] = ACTIONS(959), - [anon_sym_return] = ACTIONS(959), - [anon_sym_source] = ACTIONS(959), - [anon_sym_source_DASHenv] = ACTIONS(959), - [anon_sym_register] = ACTIONS(959), - [anon_sym_hide] = ACTIONS(959), - [anon_sym_hide_DASHenv] = ACTIONS(959), - [anon_sym_overlay] = ACTIONS(959), - [anon_sym_as] = ACTIONS(959), - [anon_sym_where] = ACTIONS(959), - [anon_sym_not] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_DOT_DOT_LT] = ACTIONS(959), - [anon_sym_null] = ACTIONS(959), - [anon_sym_true] = ACTIONS(959), - [anon_sym_false] = ACTIONS(959), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(959), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(959), - [aux_sym__val_number_token1] = ACTIONS(959), - [aux_sym__val_number_token2] = ACTIONS(959), - [aux_sym__val_number_token3] = ACTIONS(959), - [aux_sym__val_number_token4] = ACTIONS(959), - [aux_sym__val_number_token5] = ACTIONS(959), - [aux_sym__val_number_token6] = ACTIONS(959), - [anon_sym_0b] = ACTIONS(959), - [anon_sym_0o] = ACTIONS(959), - [anon_sym_0x] = ACTIONS(959), - [sym_val_date] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [sym__str_single_quotes] = ACTIONS(959), - [sym__str_back_ticks] = ACTIONS(959), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(959), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(959), - [anon_sym_CARET] = ACTIONS(959), + [2568] = { + [sym_comment] = STATE(2568), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym_LF] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_RPAREN] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1257), + [anon_sym_DOLLAR] = ACTIONS(1257), + [anon_sym_GT] = ACTIONS(1257), + [anon_sym_DASH_DASH] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_in] = ACTIONS(1257), + [anon_sym_LBRACE] = ACTIONS(1257), + [anon_sym_RBRACE] = ACTIONS(1257), + [anon_sym_DOT_DOT] = ACTIONS(1257), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_STAR_STAR] = ACTIONS(1257), + [anon_sym_PLUS_PLUS] = ACTIONS(1257), + [anon_sym_SLASH] = ACTIONS(1257), + [anon_sym_mod] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_bit_DASHshl] = ACTIONS(1257), + [anon_sym_bit_DASHshr] = ACTIONS(1257), + [anon_sym_EQ_EQ] = ACTIONS(1257), + [anon_sym_BANG_EQ] = ACTIONS(1257), + [anon_sym_LT2] = ACTIONS(1257), + [anon_sym_LT_EQ] = ACTIONS(1257), + [anon_sym_GT_EQ] = ACTIONS(1257), + [anon_sym_not_DASHin] = ACTIONS(1257), + [anon_sym_starts_DASHwith] = ACTIONS(1257), + [anon_sym_ends_DASHwith] = ACTIONS(1257), + [anon_sym_EQ_TILDE] = ACTIONS(1257), + [anon_sym_BANG_TILDE] = ACTIONS(1257), + [anon_sym_bit_DASHand] = ACTIONS(1257), + [anon_sym_bit_DASHxor] = ACTIONS(1257), + [anon_sym_bit_DASHor] = ACTIONS(1257), + [anon_sym_and] = ACTIONS(1257), + [anon_sym_xor] = ACTIONS(1257), + [anon_sym_or] = ACTIONS(1257), + [anon_sym_not] = ACTIONS(1257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1257), + [anon_sym_DOT_DOT_LT] = ACTIONS(1257), + [anon_sym_null] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [aux_sym__val_number_decimal_token1] = ACTIONS(1257), + [aux_sym__val_number_decimal_token2] = ACTIONS(1257), + [anon_sym_DOT2] = ACTIONS(1257), + [aux_sym__val_number_decimal_token3] = ACTIONS(1257), + [aux_sym__val_number_token1] = ACTIONS(1257), + [aux_sym__val_number_token2] = ACTIONS(1257), + [aux_sym__val_number_token3] = ACTIONS(1257), + [aux_sym__val_number_token4] = ACTIONS(1257), + [aux_sym__val_number_token5] = ACTIONS(1257), + [aux_sym__val_number_token6] = ACTIONS(1257), + [anon_sym_0b] = ACTIONS(1257), + [anon_sym_0o] = ACTIONS(1257), + [anon_sym_0x] = ACTIONS(1257), + [sym_val_date] = ACTIONS(1257), + [anon_sym_DQUOTE] = ACTIONS(1257), + [sym__str_single_quotes] = ACTIONS(1257), + [sym__str_back_ticks] = ACTIONS(1257), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1257), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1257), [anon_sym_POUND] = ACTIONS(113), }, - [2360] = { - [sym_comment] = STATE(2360), - [ts_builtin_sym_end] = ACTIONS(1408), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_alias] = ACTIONS(1406), - [anon_sym_let] = ACTIONS(1406), - [anon_sym_let_DASHenv] = ACTIONS(1406), - [anon_sym_mut] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_SEMI] = ACTIONS(1406), - [sym_cmd_identifier] = ACTIONS(1406), - [anon_sym_LF] = ACTIONS(1408), - [anon_sym_def] = ACTIONS(1406), - [anon_sym_export_DASHenv] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_use] = ACTIONS(1406), - [anon_sym_LBRACK] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1406), - [anon_sym_DOLLAR] = ACTIONS(1406), - [anon_sym_error] = ACTIONS(1406), - [anon_sym_DASH_DASH] = ACTIONS(1406), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_loop] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_match] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_DOT_DOT] = ACTIONS(1406), - [anon_sym_try] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_source] = ACTIONS(1406), - [anon_sym_source_DASHenv] = ACTIONS(1406), - [anon_sym_register] = ACTIONS(1406), - [anon_sym_hide] = ACTIONS(1406), - [anon_sym_hide_DASHenv] = ACTIONS(1406), - [anon_sym_overlay] = ACTIONS(1406), - [anon_sym_as] = ACTIONS(1406), - [anon_sym_where] = ACTIONS(1406), - [anon_sym_not] = ACTIONS(1406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1406), - [anon_sym_DOT_DOT_LT] = ACTIONS(1406), - [anon_sym_null] = ACTIONS(1406), - [anon_sym_true] = ACTIONS(1406), - [anon_sym_false] = ACTIONS(1406), - [aux_sym__val_number_decimal_token1] = ACTIONS(1406), - [aux_sym__val_number_decimal_token2] = ACTIONS(1406), - [anon_sym_DOT2] = ACTIONS(1406), - [aux_sym__val_number_decimal_token3] = ACTIONS(1406), - [aux_sym__val_number_token1] = ACTIONS(1406), - [aux_sym__val_number_token2] = ACTIONS(1406), - [aux_sym__val_number_token3] = ACTIONS(1406), - [aux_sym__val_number_token4] = ACTIONS(1406), - [aux_sym__val_number_token5] = ACTIONS(1406), - [aux_sym__val_number_token6] = ACTIONS(1406), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1406), - [anon_sym_0x] = ACTIONS(1406), - [sym_val_date] = ACTIONS(1406), - [anon_sym_DQUOTE] = ACTIONS(1406), - [sym__str_single_quotes] = ACTIONS(1406), - [sym__str_back_ticks] = ACTIONS(1406), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1406), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1406), - [anon_sym_CARET] = ACTIONS(1406), + [2569] = { + [sym_comment] = STATE(2569), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym_LF] = ACTIONS(1263), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_RPAREN] = ACTIONS(1261), + [anon_sym_PIPE] = ACTIONS(1261), + [anon_sym_DOLLAR] = ACTIONS(1261), + [anon_sym_GT] = ACTIONS(1261), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1261), + [anon_sym_in] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1261), + [anon_sym_DOT_DOT] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_STAR_STAR] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_SLASH] = ACTIONS(1261), + [anon_sym_mod] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(1261), + [anon_sym_PLUS] = ACTIONS(1261), + [anon_sym_bit_DASHshl] = ACTIONS(1261), + [anon_sym_bit_DASHshr] = ACTIONS(1261), + [anon_sym_EQ_EQ] = ACTIONS(1261), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_LT2] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1261), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_not_DASHin] = ACTIONS(1261), + [anon_sym_starts_DASHwith] = ACTIONS(1261), + [anon_sym_ends_DASHwith] = ACTIONS(1261), + [anon_sym_EQ_TILDE] = ACTIONS(1261), + [anon_sym_BANG_TILDE] = ACTIONS(1261), + [anon_sym_bit_DASHand] = ACTIONS(1261), + [anon_sym_bit_DASHxor] = ACTIONS(1261), + [anon_sym_bit_DASHor] = ACTIONS(1261), + [anon_sym_and] = ACTIONS(1261), + [anon_sym_xor] = ACTIONS(1261), + [anon_sym_or] = ACTIONS(1261), + [anon_sym_not] = ACTIONS(1261), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1261), + [anon_sym_DOT_DOT_LT] = ACTIONS(1261), + [anon_sym_null] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [aux_sym__val_number_decimal_token1] = ACTIONS(1261), + [aux_sym__val_number_decimal_token2] = ACTIONS(1261), + [anon_sym_DOT2] = ACTIONS(1261), + [aux_sym__val_number_decimal_token3] = ACTIONS(1261), + [aux_sym__val_number_token1] = ACTIONS(1261), + [aux_sym__val_number_token2] = ACTIONS(1261), + [aux_sym__val_number_token3] = ACTIONS(1261), + [aux_sym__val_number_token4] = ACTIONS(1261), + [aux_sym__val_number_token5] = ACTIONS(1261), + [aux_sym__val_number_token6] = ACTIONS(1261), + [anon_sym_0b] = ACTIONS(1261), + [anon_sym_0o] = ACTIONS(1261), + [anon_sym_0x] = ACTIONS(1261), + [sym_val_date] = ACTIONS(1261), + [anon_sym_DQUOTE] = ACTIONS(1261), + [sym__str_single_quotes] = ACTIONS(1261), + [sym__str_back_ticks] = ACTIONS(1261), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1261), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1261), [anon_sym_POUND] = ACTIONS(113), }, - [2361] = { - [sym_comment] = STATE(2361), - [anon_sym_LBRACK] = ACTIONS(1356), - [anon_sym_COMMA] = ACTIONS(1356), - [anon_sym_RBRACK] = ACTIONS(1356), - [anon_sym_LPAREN] = ACTIONS(1356), - [anon_sym_DOLLAR] = ACTIONS(1356), - [anon_sym_GT] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_in] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1356), - [anon_sym_DOT_DOT] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_STAR_STAR] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(1354), - [anon_sym_mod] = ACTIONS(1356), - [anon_sym_SLASH_SLASH] = ACTIONS(1356), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_bit_DASHshl] = ACTIONS(1356), - [anon_sym_bit_DASHshr] = ACTIONS(1356), - [anon_sym_EQ_EQ] = ACTIONS(1356), - [anon_sym_BANG_EQ] = ACTIONS(1356), - [anon_sym_LT2] = ACTIONS(1354), - [anon_sym_LT_EQ] = ACTIONS(1356), - [anon_sym_GT_EQ] = ACTIONS(1356), - [anon_sym_not_DASHin] = ACTIONS(1356), - [anon_sym_starts_DASHwith] = ACTIONS(1356), - [anon_sym_ends_DASHwith] = ACTIONS(1356), - [anon_sym_EQ_TILDE] = ACTIONS(1356), - [anon_sym_BANG_TILDE] = ACTIONS(1356), - [anon_sym_bit_DASHand] = ACTIONS(1356), - [anon_sym_bit_DASHxor] = ACTIONS(1356), - [anon_sym_bit_DASHor] = ACTIONS(1356), - [anon_sym_and] = ACTIONS(1356), - [anon_sym_xor] = ACTIONS(1356), - [anon_sym_or] = ACTIONS(1356), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1356), - [anon_sym_DOT_DOT_LT] = ACTIONS(1356), - [anon_sym_null] = ACTIONS(1356), - [anon_sym_true] = ACTIONS(1356), - [anon_sym_false] = ACTIONS(1356), - [aux_sym__val_number_decimal_token1] = ACTIONS(1354), - [aux_sym__val_number_decimal_token2] = ACTIONS(1356), - [anon_sym_DOT2] = ACTIONS(1354), - [aux_sym__val_number_decimal_token3] = ACTIONS(1356), - [aux_sym__val_number_token1] = ACTIONS(1356), - [aux_sym__val_number_token2] = ACTIONS(1356), - [aux_sym__val_number_token3] = ACTIONS(1356), - [aux_sym__val_number_token4] = ACTIONS(1356), - [aux_sym__val_number_token5] = ACTIONS(1356), - [aux_sym__val_number_token6] = ACTIONS(1356), - [anon_sym_0b] = ACTIONS(1354), - [anon_sym_0o] = ACTIONS(1354), - [anon_sym_0x] = ACTIONS(1354), - [sym_val_date] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1356), - [sym__str_single_quotes] = ACTIONS(1356), - [sym__str_back_ticks] = ACTIONS(1356), - [anon_sym_err_GT] = ACTIONS(1356), - [anon_sym_out_GT] = ACTIONS(1356), - [anon_sym_e_GT] = ACTIONS(1356), - [anon_sym_o_GT] = ACTIONS(1356), - [anon_sym_err_PLUSout_GT] = ACTIONS(1356), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1356), - [anon_sym_o_PLUSe_GT] = ACTIONS(1356), - [anon_sym_e_PLUSo_GT] = ACTIONS(1356), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1354), - [anon_sym_POUND] = ACTIONS(3), - }, - [2362] = { - [sym_comment] = STATE(2362), - [ts_builtin_sym_end] = ACTIONS(1412), - [anon_sym_export] = ACTIONS(1410), - [anon_sym_alias] = ACTIONS(1410), - [anon_sym_let] = ACTIONS(1410), - [anon_sym_let_DASHenv] = ACTIONS(1410), - [anon_sym_mut] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_SEMI] = ACTIONS(1410), - [sym_cmd_identifier] = ACTIONS(1410), - [anon_sym_LF] = ACTIONS(1412), - [anon_sym_def] = ACTIONS(1410), - [anon_sym_export_DASHenv] = ACTIONS(1410), - [anon_sym_extern] = ACTIONS(1410), - [anon_sym_module] = ACTIONS(1410), - [anon_sym_use] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1410), - [anon_sym_LPAREN] = ACTIONS(1410), - [anon_sym_DOLLAR] = ACTIONS(1410), - [anon_sym_error] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_loop] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1410), - [anon_sym_DOT_DOT] = ACTIONS(1410), - [anon_sym_try] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_source] = ACTIONS(1410), - [anon_sym_source_DASHenv] = ACTIONS(1410), - [anon_sym_register] = ACTIONS(1410), - [anon_sym_hide] = ACTIONS(1410), - [anon_sym_hide_DASHenv] = ACTIONS(1410), - [anon_sym_overlay] = ACTIONS(1410), - [anon_sym_as] = ACTIONS(1410), - [anon_sym_where] = ACTIONS(1410), - [anon_sym_not] = ACTIONS(1410), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1410), - [anon_sym_DOT_DOT_LT] = ACTIONS(1410), - [anon_sym_null] = ACTIONS(1410), - [anon_sym_true] = ACTIONS(1410), - [anon_sym_false] = ACTIONS(1410), - [aux_sym__val_number_decimal_token1] = ACTIONS(1410), - [aux_sym__val_number_decimal_token2] = ACTIONS(1410), - [anon_sym_DOT2] = ACTIONS(1410), - [aux_sym__val_number_decimal_token3] = ACTIONS(1410), - [aux_sym__val_number_token1] = ACTIONS(1410), - [aux_sym__val_number_token2] = ACTIONS(1410), - [aux_sym__val_number_token3] = ACTIONS(1410), - [aux_sym__val_number_token4] = ACTIONS(1410), - [aux_sym__val_number_token5] = ACTIONS(1410), - [aux_sym__val_number_token6] = ACTIONS(1410), - [anon_sym_0b] = ACTIONS(1410), - [anon_sym_0o] = ACTIONS(1410), - [anon_sym_0x] = ACTIONS(1410), - [sym_val_date] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1410), - [sym__str_single_quotes] = ACTIONS(1410), - [sym__str_back_ticks] = ACTIONS(1410), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1410), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1410), - [anon_sym_CARET] = ACTIONS(1410), + [2570] = { + [sym_comment] = STATE(2570), + [anon_sym_SEMI] = ACTIONS(1265), + [anon_sym_LF] = ACTIONS(1267), + [anon_sym_LBRACK] = ACTIONS(1265), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_RPAREN] = ACTIONS(1265), + [anon_sym_PIPE] = ACTIONS(1265), + [anon_sym_DOLLAR] = ACTIONS(1265), + [anon_sym_GT] = ACTIONS(1265), + [anon_sym_DASH_DASH] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1265), + [anon_sym_in] = ACTIONS(1265), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_RBRACE] = ACTIONS(1265), + [anon_sym_DOT_DOT] = ACTIONS(1265), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_STAR_STAR] = ACTIONS(1265), + [anon_sym_PLUS_PLUS] = ACTIONS(1265), + [anon_sym_SLASH] = ACTIONS(1265), + [anon_sym_mod] = ACTIONS(1265), + [anon_sym_SLASH_SLASH] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1265), + [anon_sym_bit_DASHshl] = ACTIONS(1265), + [anon_sym_bit_DASHshr] = ACTIONS(1265), + [anon_sym_EQ_EQ] = ACTIONS(1265), + [anon_sym_BANG_EQ] = ACTIONS(1265), + [anon_sym_LT2] = ACTIONS(1265), + [anon_sym_LT_EQ] = ACTIONS(1265), + [anon_sym_GT_EQ] = ACTIONS(1265), + [anon_sym_not_DASHin] = ACTIONS(1265), + [anon_sym_starts_DASHwith] = ACTIONS(1265), + [anon_sym_ends_DASHwith] = ACTIONS(1265), + [anon_sym_EQ_TILDE] = ACTIONS(1265), + [anon_sym_BANG_TILDE] = ACTIONS(1265), + [anon_sym_bit_DASHand] = ACTIONS(1265), + [anon_sym_bit_DASHxor] = ACTIONS(1265), + [anon_sym_bit_DASHor] = ACTIONS(1265), + [anon_sym_and] = ACTIONS(1265), + [anon_sym_xor] = ACTIONS(1265), + [anon_sym_or] = ACTIONS(1265), + [anon_sym_not] = ACTIONS(1265), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1265), + [anon_sym_DOT_DOT_LT] = ACTIONS(1265), + [anon_sym_null] = ACTIONS(1265), + [anon_sym_true] = ACTIONS(1265), + [anon_sym_false] = ACTIONS(1265), + [aux_sym__val_number_decimal_token1] = ACTIONS(1265), + [aux_sym__val_number_decimal_token2] = ACTIONS(1265), + [anon_sym_DOT2] = ACTIONS(1265), + [aux_sym__val_number_decimal_token3] = ACTIONS(1265), + [aux_sym__val_number_token1] = ACTIONS(1265), + [aux_sym__val_number_token2] = ACTIONS(1265), + [aux_sym__val_number_token3] = ACTIONS(1265), + [aux_sym__val_number_token4] = ACTIONS(1265), + [aux_sym__val_number_token5] = ACTIONS(1265), + [aux_sym__val_number_token6] = ACTIONS(1265), + [anon_sym_0b] = ACTIONS(1265), + [anon_sym_0o] = ACTIONS(1265), + [anon_sym_0x] = ACTIONS(1265), + [sym_val_date] = ACTIONS(1265), + [anon_sym_DQUOTE] = ACTIONS(1265), + [sym__str_single_quotes] = ACTIONS(1265), + [sym__str_back_ticks] = ACTIONS(1265), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1265), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1265), [anon_sym_POUND] = ACTIONS(113), }, - [2363] = { - [sym_comment] = STATE(2363), - [ts_builtin_sym_end] = ACTIONS(1420), - [anon_sym_export] = ACTIONS(1418), - [anon_sym_alias] = ACTIONS(1418), - [anon_sym_let] = ACTIONS(1418), - [anon_sym_let_DASHenv] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(1418), - [sym_cmd_identifier] = ACTIONS(1418), - [anon_sym_LF] = ACTIONS(1420), - [anon_sym_def] = ACTIONS(1418), - [anon_sym_export_DASHenv] = ACTIONS(1418), - [anon_sym_extern] = ACTIONS(1418), - [anon_sym_module] = ACTIONS(1418), - [anon_sym_use] = ACTIONS(1418), - [anon_sym_LBRACK] = ACTIONS(1418), - [anon_sym_LPAREN] = ACTIONS(1418), - [anon_sym_PIPE] = ACTIONS(1418), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_error] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_loop] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_match] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_DOT_DOT] = ACTIONS(1418), - [anon_sym_try] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_source] = ACTIONS(1418), - [anon_sym_source_DASHenv] = ACTIONS(1418), - [anon_sym_register] = ACTIONS(1418), - [anon_sym_hide] = ACTIONS(1418), - [anon_sym_hide_DASHenv] = ACTIONS(1418), - [anon_sym_overlay] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_where] = ACTIONS(1418), - [anon_sym_not] = ACTIONS(1418), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1418), - [anon_sym_DOT_DOT_LT] = ACTIONS(1418), - [anon_sym_null] = ACTIONS(1418), - [anon_sym_true] = ACTIONS(1418), - [anon_sym_false] = ACTIONS(1418), - [aux_sym__val_number_decimal_token1] = ACTIONS(1418), - [aux_sym__val_number_decimal_token2] = ACTIONS(1418), - [anon_sym_DOT2] = ACTIONS(1418), - [aux_sym__val_number_decimal_token3] = ACTIONS(1418), - [aux_sym__val_number_token1] = ACTIONS(1418), - [aux_sym__val_number_token2] = ACTIONS(1418), - [aux_sym__val_number_token3] = ACTIONS(1418), - [aux_sym__val_number_token4] = ACTIONS(1418), - [aux_sym__val_number_token5] = ACTIONS(1418), - [aux_sym__val_number_token6] = ACTIONS(1418), - [anon_sym_0b] = ACTIONS(1418), - [anon_sym_0o] = ACTIONS(1418), - [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1418), - [anon_sym_DQUOTE] = ACTIONS(1418), - [sym__str_single_quotes] = ACTIONS(1418), - [sym__str_back_ticks] = ACTIONS(1418), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), + [2571] = { + [sym_comment] = STATE(2571), + [anon_sym_SEMI] = ACTIONS(1265), + [anon_sym_LF] = ACTIONS(1267), + [anon_sym_LBRACK] = ACTIONS(1265), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_RPAREN] = ACTIONS(1265), + [anon_sym_PIPE] = ACTIONS(1265), + [anon_sym_DOLLAR] = ACTIONS(1265), + [anon_sym_GT] = ACTIONS(1265), + [anon_sym_DASH_DASH] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1265), + [anon_sym_in] = ACTIONS(1265), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_RBRACE] = ACTIONS(1265), + [anon_sym_DOT_DOT] = ACTIONS(1265), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_STAR_STAR] = ACTIONS(1265), + [anon_sym_PLUS_PLUS] = ACTIONS(1265), + [anon_sym_SLASH] = ACTIONS(1265), + [anon_sym_mod] = ACTIONS(1265), + [anon_sym_SLASH_SLASH] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1265), + [anon_sym_bit_DASHshl] = ACTIONS(1265), + [anon_sym_bit_DASHshr] = ACTIONS(1265), + [anon_sym_EQ_EQ] = ACTIONS(1265), + [anon_sym_BANG_EQ] = ACTIONS(1265), + [anon_sym_LT2] = ACTIONS(1265), + [anon_sym_LT_EQ] = ACTIONS(1265), + [anon_sym_GT_EQ] = ACTIONS(1265), + [anon_sym_not_DASHin] = ACTIONS(1265), + [anon_sym_starts_DASHwith] = ACTIONS(1265), + [anon_sym_ends_DASHwith] = ACTIONS(1265), + [anon_sym_EQ_TILDE] = ACTIONS(1265), + [anon_sym_BANG_TILDE] = ACTIONS(1265), + [anon_sym_bit_DASHand] = ACTIONS(1265), + [anon_sym_bit_DASHxor] = ACTIONS(1265), + [anon_sym_bit_DASHor] = ACTIONS(1265), + [anon_sym_and] = ACTIONS(1265), + [anon_sym_xor] = ACTIONS(1265), + [anon_sym_or] = ACTIONS(1265), + [anon_sym_not] = ACTIONS(1265), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1265), + [anon_sym_DOT_DOT_LT] = ACTIONS(1265), + [anon_sym_null] = ACTIONS(1265), + [anon_sym_true] = ACTIONS(1265), + [anon_sym_false] = ACTIONS(1265), + [aux_sym__val_number_decimal_token1] = ACTIONS(1265), + [aux_sym__val_number_decimal_token2] = ACTIONS(1265), + [anon_sym_DOT2] = ACTIONS(1265), + [aux_sym__val_number_decimal_token3] = ACTIONS(1265), + [aux_sym__val_number_token1] = ACTIONS(1265), + [aux_sym__val_number_token2] = ACTIONS(1265), + [aux_sym__val_number_token3] = ACTIONS(1265), + [aux_sym__val_number_token4] = ACTIONS(1265), + [aux_sym__val_number_token5] = ACTIONS(1265), + [aux_sym__val_number_token6] = ACTIONS(1265), + [anon_sym_0b] = ACTIONS(1265), + [anon_sym_0o] = ACTIONS(1265), + [anon_sym_0x] = ACTIONS(1265), + [sym_val_date] = ACTIONS(1265), + [anon_sym_DQUOTE] = ACTIONS(1265), + [sym__str_single_quotes] = ACTIONS(1265), + [sym__str_back_ticks] = ACTIONS(1265), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1265), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1265), [anon_sym_POUND] = ACTIONS(113), }, - [2364] = { - [sym_comment] = STATE(2364), - [ts_builtin_sym_end] = ACTIONS(1288), - [anon_sym_export] = ACTIONS(1286), - [anon_sym_alias] = ACTIONS(1286), - [anon_sym_let] = ACTIONS(1286), - [anon_sym_let_DASHenv] = ACTIONS(1286), - [anon_sym_mut] = ACTIONS(1286), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_SEMI] = ACTIONS(1286), - [sym_cmd_identifier] = ACTIONS(1286), - [anon_sym_LF] = ACTIONS(1288), - [anon_sym_def] = ACTIONS(1286), - [anon_sym_export_DASHenv] = ACTIONS(1286), - [anon_sym_extern] = ACTIONS(1286), - [anon_sym_module] = ACTIONS(1286), - [anon_sym_use] = ACTIONS(1286), - [anon_sym_LBRACK] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(1286), - [anon_sym_DOLLAR] = ACTIONS(1286), - [anon_sym_error] = ACTIONS(1286), - [anon_sym_DASH_DASH] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1286), - [anon_sym_break] = ACTIONS(1286), - [anon_sym_continue] = ACTIONS(1286), - [anon_sym_for] = ACTIONS(1286), - [anon_sym_loop] = ACTIONS(1286), - [anon_sym_while] = ACTIONS(1286), - [anon_sym_do] = ACTIONS(1286), - [anon_sym_if] = ACTIONS(1286), - [anon_sym_match] = ACTIONS(1286), - [anon_sym_LBRACE] = ACTIONS(1286), - [anon_sym_DOT_DOT] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(1286), - [anon_sym_return] = ACTIONS(1286), - [anon_sym_source] = ACTIONS(1286), - [anon_sym_source_DASHenv] = ACTIONS(1286), - [anon_sym_register] = ACTIONS(1286), - [anon_sym_hide] = ACTIONS(1286), - [anon_sym_hide_DASHenv] = ACTIONS(1286), - [anon_sym_overlay] = ACTIONS(1286), - [anon_sym_as] = ACTIONS(1286), - [anon_sym_where] = ACTIONS(1286), - [anon_sym_not] = ACTIONS(1286), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1286), - [anon_sym_DOT_DOT_LT] = ACTIONS(1286), - [anon_sym_null] = ACTIONS(1286), - [anon_sym_true] = ACTIONS(1286), - [anon_sym_false] = ACTIONS(1286), - [aux_sym__val_number_decimal_token1] = ACTIONS(1286), - [aux_sym__val_number_decimal_token2] = ACTIONS(1286), - [anon_sym_DOT2] = ACTIONS(1286), - [aux_sym__val_number_decimal_token3] = ACTIONS(1286), - [aux_sym__val_number_token1] = ACTIONS(1286), - [aux_sym__val_number_token2] = ACTIONS(1286), - [aux_sym__val_number_token3] = ACTIONS(1286), - [aux_sym__val_number_token4] = ACTIONS(1286), - [aux_sym__val_number_token5] = ACTIONS(1286), - [aux_sym__val_number_token6] = ACTIONS(1286), - [anon_sym_0b] = ACTIONS(1286), - [anon_sym_0o] = ACTIONS(1286), - [anon_sym_0x] = ACTIONS(1286), - [sym_val_date] = ACTIONS(1286), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym__str_single_quotes] = ACTIONS(1286), - [sym__str_back_ticks] = ACTIONS(1286), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1286), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1286), - [anon_sym_CARET] = ACTIONS(1286), + [2572] = { + [sym_comment] = STATE(2572), + [anon_sym_SEMI] = ACTIONS(1271), + [anon_sym_LF] = ACTIONS(1273), + [anon_sym_LBRACK] = ACTIONS(1271), + [anon_sym_LPAREN] = ACTIONS(1271), + [anon_sym_RPAREN] = ACTIONS(1271), + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_DOLLAR] = ACTIONS(1271), + [anon_sym_GT] = ACTIONS(1271), + [anon_sym_DASH_DASH] = ACTIONS(1271), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_in] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(1271), + [anon_sym_DOT_DOT] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(1271), + [anon_sym_STAR_STAR] = ACTIONS(1271), + [anon_sym_PLUS_PLUS] = ACTIONS(1271), + [anon_sym_SLASH] = ACTIONS(1271), + [anon_sym_mod] = ACTIONS(1271), + [anon_sym_SLASH_SLASH] = ACTIONS(1271), + [anon_sym_PLUS] = ACTIONS(1271), + [anon_sym_bit_DASHshl] = ACTIONS(1271), + [anon_sym_bit_DASHshr] = ACTIONS(1271), + [anon_sym_EQ_EQ] = ACTIONS(1271), + [anon_sym_BANG_EQ] = ACTIONS(1271), + [anon_sym_LT2] = ACTIONS(1271), + [anon_sym_LT_EQ] = ACTIONS(1271), + [anon_sym_GT_EQ] = ACTIONS(1271), + [anon_sym_not_DASHin] = ACTIONS(1271), + [anon_sym_starts_DASHwith] = ACTIONS(1271), + [anon_sym_ends_DASHwith] = ACTIONS(1271), + [anon_sym_EQ_TILDE] = ACTIONS(1271), + [anon_sym_BANG_TILDE] = ACTIONS(1271), + [anon_sym_bit_DASHand] = ACTIONS(1271), + [anon_sym_bit_DASHxor] = ACTIONS(1271), + [anon_sym_bit_DASHor] = ACTIONS(1271), + [anon_sym_and] = ACTIONS(1271), + [anon_sym_xor] = ACTIONS(1271), + [anon_sym_or] = ACTIONS(1271), + [anon_sym_not] = ACTIONS(1271), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1271), + [anon_sym_DOT_DOT_LT] = ACTIONS(1271), + [anon_sym_null] = ACTIONS(1271), + [anon_sym_true] = ACTIONS(1271), + [anon_sym_false] = ACTIONS(1271), + [aux_sym__val_number_decimal_token1] = ACTIONS(1271), + [aux_sym__val_number_decimal_token2] = ACTIONS(1271), + [anon_sym_DOT2] = ACTIONS(1271), + [aux_sym__val_number_decimal_token3] = ACTIONS(1271), + [aux_sym__val_number_token1] = ACTIONS(1271), + [aux_sym__val_number_token2] = ACTIONS(1271), + [aux_sym__val_number_token3] = ACTIONS(1271), + [aux_sym__val_number_token4] = ACTIONS(1271), + [aux_sym__val_number_token5] = ACTIONS(1271), + [aux_sym__val_number_token6] = ACTIONS(1271), + [anon_sym_0b] = ACTIONS(1271), + [anon_sym_0o] = ACTIONS(1271), + [anon_sym_0x] = ACTIONS(1271), + [sym_val_date] = ACTIONS(1271), + [anon_sym_DQUOTE] = ACTIONS(1271), + [sym__str_single_quotes] = ACTIONS(1271), + [sym__str_back_ticks] = ACTIONS(1271), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1271), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1271), [anon_sym_POUND] = ACTIONS(113), }, - [2365] = { - [sym_comment] = STATE(2365), - [anon_sym_LBRACK] = ACTIONS(1360), - [anon_sym_COMMA] = ACTIONS(1360), - [anon_sym_RBRACK] = ACTIONS(1360), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_DOLLAR] = ACTIONS(1360), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_in] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_DOT_DOT] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_STAR_STAR] = ACTIONS(1360), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_SLASH] = ACTIONS(1358), - [anon_sym_mod] = ACTIONS(1360), - [anon_sym_SLASH_SLASH] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_bit_DASHshl] = ACTIONS(1360), - [anon_sym_bit_DASHshr] = ACTIONS(1360), - [anon_sym_EQ_EQ] = ACTIONS(1360), - [anon_sym_BANG_EQ] = ACTIONS(1360), - [anon_sym_LT2] = ACTIONS(1358), - [anon_sym_LT_EQ] = ACTIONS(1360), - [anon_sym_GT_EQ] = ACTIONS(1360), - [anon_sym_not_DASHin] = ACTIONS(1360), - [anon_sym_starts_DASHwith] = ACTIONS(1360), - [anon_sym_ends_DASHwith] = ACTIONS(1360), - [anon_sym_EQ_TILDE] = ACTIONS(1360), - [anon_sym_BANG_TILDE] = ACTIONS(1360), - [anon_sym_bit_DASHand] = ACTIONS(1360), - [anon_sym_bit_DASHxor] = ACTIONS(1360), - [anon_sym_bit_DASHor] = ACTIONS(1360), - [anon_sym_and] = ACTIONS(1360), - [anon_sym_xor] = ACTIONS(1360), - [anon_sym_or] = ACTIONS(1360), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1360), - [anon_sym_DOT_DOT_LT] = ACTIONS(1360), - [anon_sym_null] = ACTIONS(1360), - [anon_sym_true] = ACTIONS(1360), - [anon_sym_false] = ACTIONS(1360), - [aux_sym__val_number_decimal_token1] = ACTIONS(1358), - [aux_sym__val_number_decimal_token2] = ACTIONS(1360), - [anon_sym_DOT2] = ACTIONS(1358), - [aux_sym__val_number_decimal_token3] = ACTIONS(1360), - [aux_sym__val_number_token1] = ACTIONS(1360), - [aux_sym__val_number_token2] = ACTIONS(1360), - [aux_sym__val_number_token3] = ACTIONS(1360), - [aux_sym__val_number_token4] = ACTIONS(1360), - [aux_sym__val_number_token5] = ACTIONS(1360), - [aux_sym__val_number_token6] = ACTIONS(1360), - [anon_sym_0b] = ACTIONS(1358), - [anon_sym_0o] = ACTIONS(1358), - [anon_sym_0x] = ACTIONS(1358), - [sym_val_date] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1360), - [sym__str_single_quotes] = ACTIONS(1360), - [sym__str_back_ticks] = ACTIONS(1360), - [anon_sym_err_GT] = ACTIONS(1360), - [anon_sym_out_GT] = ACTIONS(1360), - [anon_sym_e_GT] = ACTIONS(1360), - [anon_sym_o_GT] = ACTIONS(1360), - [anon_sym_err_PLUSout_GT] = ACTIONS(1360), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1360), - [anon_sym_o_PLUSe_GT] = ACTIONS(1360), - [anon_sym_e_PLUSo_GT] = ACTIONS(1360), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1358), - [anon_sym_POUND] = ACTIONS(3), - }, - [2366] = { - [sym_comment] = STATE(2366), - [ts_builtin_sym_end] = ACTIONS(1304), - [anon_sym_export] = ACTIONS(1302), - [anon_sym_alias] = ACTIONS(1302), - [anon_sym_let] = ACTIONS(1302), - [anon_sym_let_DASHenv] = ACTIONS(1302), - [anon_sym_mut] = ACTIONS(1302), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1302), - [sym_cmd_identifier] = ACTIONS(1302), - [anon_sym_LF] = ACTIONS(1304), - [anon_sym_def] = ACTIONS(1302), - [anon_sym_export_DASHenv] = ACTIONS(1302), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_module] = ACTIONS(1302), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_LBRACK] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_DOLLAR] = ACTIONS(1302), - [anon_sym_error] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_break] = ACTIONS(1302), - [anon_sym_continue] = ACTIONS(1302), - [anon_sym_for] = ACTIONS(1302), - [anon_sym_loop] = ACTIONS(1302), - [anon_sym_while] = ACTIONS(1302), - [anon_sym_do] = ACTIONS(1302), - [anon_sym_if] = ACTIONS(1302), - [anon_sym_match] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_DOT_DOT] = ACTIONS(1302), - [anon_sym_try] = ACTIONS(1302), - [anon_sym_return] = ACTIONS(1302), - [anon_sym_source] = ACTIONS(1302), - [anon_sym_source_DASHenv] = ACTIONS(1302), - [anon_sym_register] = ACTIONS(1302), - [anon_sym_hide] = ACTIONS(1302), - [anon_sym_hide_DASHenv] = ACTIONS(1302), - [anon_sym_overlay] = ACTIONS(1302), - [anon_sym_as] = ACTIONS(1302), - [anon_sym_where] = ACTIONS(1302), - [anon_sym_not] = ACTIONS(1302), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1302), - [anon_sym_DOT_DOT_LT] = ACTIONS(1302), - [anon_sym_null] = ACTIONS(1302), - [anon_sym_true] = ACTIONS(1302), - [anon_sym_false] = ACTIONS(1302), - [aux_sym__val_number_decimal_token1] = ACTIONS(1302), - [aux_sym__val_number_decimal_token2] = ACTIONS(1302), - [anon_sym_DOT2] = ACTIONS(1302), - [aux_sym__val_number_decimal_token3] = ACTIONS(1302), - [aux_sym__val_number_token1] = ACTIONS(1302), - [aux_sym__val_number_token2] = ACTIONS(1302), - [aux_sym__val_number_token3] = ACTIONS(1302), - [aux_sym__val_number_token4] = ACTIONS(1302), - [aux_sym__val_number_token5] = ACTIONS(1302), - [aux_sym__val_number_token6] = ACTIONS(1302), - [anon_sym_0b] = ACTIONS(1302), - [anon_sym_0o] = ACTIONS(1302), - [anon_sym_0x] = ACTIONS(1302), - [sym_val_date] = ACTIONS(1302), - [anon_sym_DQUOTE] = ACTIONS(1302), - [sym__str_single_quotes] = ACTIONS(1302), - [sym__str_back_ticks] = ACTIONS(1302), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1302), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1302), - [anon_sym_CARET] = ACTIONS(1302), + [2573] = { + [sym_comment] = STATE(2573), + [anon_sym_SEMI] = ACTIONS(1275), + [anon_sym_LF] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(1275), + [anon_sym_RPAREN] = ACTIONS(1275), + [anon_sym_PIPE] = ACTIONS(1275), + [anon_sym_DOLLAR] = ACTIONS(1275), + [anon_sym_GT] = ACTIONS(1275), + [anon_sym_DASH_DASH] = ACTIONS(1275), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_in] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(1275), + [anon_sym_RBRACE] = ACTIONS(1275), + [anon_sym_DOT_DOT] = ACTIONS(1275), + [anon_sym_STAR] = ACTIONS(1275), + [anon_sym_STAR_STAR] = ACTIONS(1275), + [anon_sym_PLUS_PLUS] = ACTIONS(1275), + [anon_sym_SLASH] = ACTIONS(1275), + [anon_sym_mod] = ACTIONS(1275), + [anon_sym_SLASH_SLASH] = ACTIONS(1275), + [anon_sym_PLUS] = ACTIONS(1275), + [anon_sym_bit_DASHshl] = ACTIONS(1275), + [anon_sym_bit_DASHshr] = ACTIONS(1275), + [anon_sym_EQ_EQ] = ACTIONS(1275), + [anon_sym_BANG_EQ] = ACTIONS(1275), + [anon_sym_LT2] = ACTIONS(1275), + [anon_sym_LT_EQ] = ACTIONS(1275), + [anon_sym_GT_EQ] = ACTIONS(1275), + [anon_sym_not_DASHin] = ACTIONS(1275), + [anon_sym_starts_DASHwith] = ACTIONS(1275), + [anon_sym_ends_DASHwith] = ACTIONS(1275), + [anon_sym_EQ_TILDE] = ACTIONS(1275), + [anon_sym_BANG_TILDE] = ACTIONS(1275), + [anon_sym_bit_DASHand] = ACTIONS(1275), + [anon_sym_bit_DASHxor] = ACTIONS(1275), + [anon_sym_bit_DASHor] = ACTIONS(1275), + [anon_sym_and] = ACTIONS(1275), + [anon_sym_xor] = ACTIONS(1275), + [anon_sym_or] = ACTIONS(1275), + [anon_sym_not] = ACTIONS(1275), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1275), + [anon_sym_DOT_DOT_LT] = ACTIONS(1275), + [anon_sym_null] = ACTIONS(1275), + [anon_sym_true] = ACTIONS(1275), + [anon_sym_false] = ACTIONS(1275), + [aux_sym__val_number_decimal_token1] = ACTIONS(1275), + [aux_sym__val_number_decimal_token2] = ACTIONS(1275), + [anon_sym_DOT2] = ACTIONS(1275), + [aux_sym__val_number_decimal_token3] = ACTIONS(1275), + [aux_sym__val_number_token1] = ACTIONS(1275), + [aux_sym__val_number_token2] = ACTIONS(1275), + [aux_sym__val_number_token3] = ACTIONS(1275), + [aux_sym__val_number_token4] = ACTIONS(1275), + [aux_sym__val_number_token5] = ACTIONS(1275), + [aux_sym__val_number_token6] = ACTIONS(1275), + [anon_sym_0b] = ACTIONS(1275), + [anon_sym_0o] = ACTIONS(1275), + [anon_sym_0x] = ACTIONS(1275), + [sym_val_date] = ACTIONS(1275), + [anon_sym_DQUOTE] = ACTIONS(1275), + [sym__str_single_quotes] = ACTIONS(1275), + [sym__str_back_ticks] = ACTIONS(1275), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1275), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1275), [anon_sym_POUND] = ACTIONS(113), }, - [2367] = { - [sym_comment] = STATE(2367), - [anon_sym_LBRACK] = ACTIONS(1366), - [anon_sym_COMMA] = ACTIONS(1366), - [anon_sym_RBRACK] = ACTIONS(1366), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_DOLLAR] = ACTIONS(1366), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1366), - [anon_sym_DASH] = ACTIONS(1198), - [anon_sym_in] = ACTIONS(1198), - [anon_sym_LBRACE] = ACTIONS(1366), - [anon_sym_DOT_DOT] = ACTIONS(1198), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_STAR_STAR] = ACTIONS(1366), - [anon_sym_PLUS_PLUS] = ACTIONS(1366), - [anon_sym_SLASH] = ACTIONS(1198), - [anon_sym_mod] = ACTIONS(1366), - [anon_sym_SLASH_SLASH] = ACTIONS(1366), - [anon_sym_PLUS] = ACTIONS(1198), - [anon_sym_bit_DASHshl] = ACTIONS(1366), - [anon_sym_bit_DASHshr] = ACTIONS(1366), - [anon_sym_EQ_EQ] = ACTIONS(1366), - [anon_sym_BANG_EQ] = ACTIONS(1366), - [anon_sym_LT2] = ACTIONS(1198), - [anon_sym_LT_EQ] = ACTIONS(1366), - [anon_sym_GT_EQ] = ACTIONS(1366), - [anon_sym_not_DASHin] = ACTIONS(1366), - [anon_sym_starts_DASHwith] = ACTIONS(1366), - [anon_sym_ends_DASHwith] = ACTIONS(1366), - [anon_sym_EQ_TILDE] = ACTIONS(1366), - [anon_sym_BANG_TILDE] = ACTIONS(1366), - [anon_sym_bit_DASHand] = ACTIONS(1366), - [anon_sym_bit_DASHxor] = ACTIONS(1366), - [anon_sym_bit_DASHor] = ACTIONS(1366), - [anon_sym_and] = ACTIONS(1366), - [anon_sym_xor] = ACTIONS(1366), - [anon_sym_or] = ACTIONS(1366), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1366), - [anon_sym_DOT_DOT_LT] = ACTIONS(1366), - [anon_sym_null] = ACTIONS(1366), - [anon_sym_true] = ACTIONS(1366), - [anon_sym_false] = ACTIONS(1366), - [aux_sym__val_number_decimal_token1] = ACTIONS(1198), - [aux_sym__val_number_decimal_token2] = ACTIONS(1366), - [anon_sym_DOT2] = ACTIONS(1198), - [aux_sym__val_number_decimal_token3] = ACTIONS(1366), - [aux_sym__val_number_token1] = ACTIONS(1366), - [aux_sym__val_number_token2] = ACTIONS(1366), - [aux_sym__val_number_token3] = ACTIONS(1366), - [aux_sym__val_number_token4] = ACTIONS(1366), - [aux_sym__val_number_token5] = ACTIONS(1366), - [aux_sym__val_number_token6] = ACTIONS(1366), - [anon_sym_0b] = ACTIONS(1198), - [anon_sym_0o] = ACTIONS(1198), - [anon_sym_0x] = ACTIONS(1198), - [sym_val_date] = ACTIONS(1366), - [anon_sym_DQUOTE] = ACTIONS(1366), - [sym__str_single_quotes] = ACTIONS(1366), - [sym__str_back_ticks] = ACTIONS(1366), - [anon_sym_err_GT] = ACTIONS(1366), - [anon_sym_out_GT] = ACTIONS(1366), - [anon_sym_e_GT] = ACTIONS(1366), - [anon_sym_o_GT] = ACTIONS(1366), - [anon_sym_err_PLUSout_GT] = ACTIONS(1366), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1366), - [anon_sym_o_PLUSe_GT] = ACTIONS(1366), - [anon_sym_e_PLUSo_GT] = ACTIONS(1366), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1198), - [anon_sym_POUND] = ACTIONS(3), - }, - [2368] = { - [sym_comment] = STATE(2368), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_COMMA] = ACTIONS(1370), - [anon_sym_RBRACK] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1370), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1370), - [anon_sym_bit_DASHshr] = ACTIONS(1370), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1370), - [anon_sym_starts_DASHwith] = ACTIONS(1370), - [anon_sym_ends_DASHwith] = ACTIONS(1370), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1370), - [anon_sym_bit_DASHxor] = ACTIONS(1370), - [anon_sym_bit_DASHor] = ACTIONS(1370), - [anon_sym_and] = ACTIONS(1370), - [anon_sym_xor] = ACTIONS(1370), - [anon_sym_or] = ACTIONS(1370), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [aux_sym__val_number_token4] = ACTIONS(1370), - [aux_sym__val_number_token5] = ACTIONS(1370), - [aux_sym__val_number_token6] = ACTIONS(1370), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1370), - [anon_sym_out_GT] = ACTIONS(1370), - [anon_sym_e_GT] = ACTIONS(1370), - [anon_sym_o_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT] = ACTIONS(1370), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), - }, - [2369] = { - [sym_comment] = STATE(2369), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_COMMA] = ACTIONS(1370), - [anon_sym_RBRACK] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1370), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1370), - [anon_sym_bit_DASHshr] = ACTIONS(1370), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1370), - [anon_sym_starts_DASHwith] = ACTIONS(1370), - [anon_sym_ends_DASHwith] = ACTIONS(1370), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1370), - [anon_sym_bit_DASHxor] = ACTIONS(1370), - [anon_sym_bit_DASHor] = ACTIONS(1370), - [anon_sym_and] = ACTIONS(1370), - [anon_sym_xor] = ACTIONS(1370), - [anon_sym_or] = ACTIONS(1370), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [aux_sym__val_number_token4] = ACTIONS(1370), - [aux_sym__val_number_token5] = ACTIONS(1370), - [aux_sym__val_number_token6] = ACTIONS(1370), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1370), - [anon_sym_out_GT] = ACTIONS(1370), - [anon_sym_e_GT] = ACTIONS(1370), - [anon_sym_o_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT] = ACTIONS(1370), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), - }, - [2370] = { - [sym_comment] = STATE(2370), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_COMMA] = ACTIONS(1370), - [anon_sym_RBRACK] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1370), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1370), - [anon_sym_bit_DASHshr] = ACTIONS(1370), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1370), - [anon_sym_starts_DASHwith] = ACTIONS(1370), - [anon_sym_ends_DASHwith] = ACTIONS(1370), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1370), - [anon_sym_bit_DASHxor] = ACTIONS(1370), - [anon_sym_bit_DASHor] = ACTIONS(1370), - [anon_sym_and] = ACTIONS(1370), - [anon_sym_xor] = ACTIONS(1370), - [anon_sym_or] = ACTIONS(1370), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [aux_sym__val_number_token4] = ACTIONS(1370), - [aux_sym__val_number_token5] = ACTIONS(1370), - [aux_sym__val_number_token6] = ACTIONS(1370), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1370), - [anon_sym_out_GT] = ACTIONS(1370), - [anon_sym_e_GT] = ACTIONS(1370), - [anon_sym_o_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT] = ACTIONS(1370), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), - }, - [2371] = { - [sym_comment] = STATE(2371), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_COMMA] = ACTIONS(1370), - [anon_sym_RBRACK] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1370), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1370), - [anon_sym_bit_DASHshr] = ACTIONS(1370), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1370), - [anon_sym_starts_DASHwith] = ACTIONS(1370), - [anon_sym_ends_DASHwith] = ACTIONS(1370), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1370), - [anon_sym_bit_DASHxor] = ACTIONS(1370), - [anon_sym_bit_DASHor] = ACTIONS(1370), - [anon_sym_and] = ACTIONS(1370), - [anon_sym_xor] = ACTIONS(1370), - [anon_sym_or] = ACTIONS(1370), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [aux_sym__val_number_token4] = ACTIONS(1370), - [aux_sym__val_number_token5] = ACTIONS(1370), - [aux_sym__val_number_token6] = ACTIONS(1370), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1370), - [anon_sym_out_GT] = ACTIONS(1370), - [anon_sym_e_GT] = ACTIONS(1370), - [anon_sym_o_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT] = ACTIONS(1370), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), - }, - [2372] = { - [sym_comment] = STATE(2372), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_COMMA] = ACTIONS(1370), - [anon_sym_RBRACK] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1370), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1370), - [anon_sym_bit_DASHshr] = ACTIONS(1370), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1370), - [anon_sym_starts_DASHwith] = ACTIONS(1370), - [anon_sym_ends_DASHwith] = ACTIONS(1370), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1370), - [anon_sym_bit_DASHxor] = ACTIONS(1370), - [anon_sym_bit_DASHor] = ACTIONS(1370), - [anon_sym_and] = ACTIONS(1370), - [anon_sym_xor] = ACTIONS(1370), - [anon_sym_or] = ACTIONS(1370), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [aux_sym__val_number_token4] = ACTIONS(1370), - [aux_sym__val_number_token5] = ACTIONS(1370), - [aux_sym__val_number_token6] = ACTIONS(1370), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1370), - [anon_sym_out_GT] = ACTIONS(1370), - [anon_sym_e_GT] = ACTIONS(1370), - [anon_sym_o_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT] = ACTIONS(1370), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), - }, - [2373] = { - [sym_comment] = STATE(2373), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_COMMA] = ACTIONS(1370), - [anon_sym_RBRACK] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1370), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1370), - [anon_sym_bit_DASHshr] = ACTIONS(1370), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1370), - [anon_sym_starts_DASHwith] = ACTIONS(1370), - [anon_sym_ends_DASHwith] = ACTIONS(1370), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1370), - [anon_sym_bit_DASHxor] = ACTIONS(1370), - [anon_sym_bit_DASHor] = ACTIONS(1370), - [anon_sym_and] = ACTIONS(1370), - [anon_sym_xor] = ACTIONS(1370), - [anon_sym_or] = ACTIONS(1370), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [aux_sym__val_number_token4] = ACTIONS(1370), - [aux_sym__val_number_token5] = ACTIONS(1370), - [aux_sym__val_number_token6] = ACTIONS(1370), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1370), - [anon_sym_out_GT] = ACTIONS(1370), - [anon_sym_e_GT] = ACTIONS(1370), - [anon_sym_o_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT] = ACTIONS(1370), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), - }, - [2374] = { - [sym_comment] = STATE(2374), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_COMMA] = ACTIONS(1370), - [anon_sym_RBRACK] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1370), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1370), - [anon_sym_bit_DASHshr] = ACTIONS(1370), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1370), - [anon_sym_starts_DASHwith] = ACTIONS(1370), - [anon_sym_ends_DASHwith] = ACTIONS(1370), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1370), - [anon_sym_bit_DASHxor] = ACTIONS(1370), - [anon_sym_bit_DASHor] = ACTIONS(1370), - [anon_sym_and] = ACTIONS(1370), - [anon_sym_xor] = ACTIONS(1370), - [anon_sym_or] = ACTIONS(1370), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [aux_sym__val_number_token4] = ACTIONS(1370), - [aux_sym__val_number_token5] = ACTIONS(1370), - [aux_sym__val_number_token6] = ACTIONS(1370), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1370), - [anon_sym_out_GT] = ACTIONS(1370), - [anon_sym_e_GT] = ACTIONS(1370), - [anon_sym_o_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT] = ACTIONS(1370), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), - }, - [2375] = { - [sym_comment] = STATE(2375), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_COMMA] = ACTIONS(1370), - [anon_sym_RBRACK] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1370), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1370), - [anon_sym_bit_DASHshr] = ACTIONS(1370), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1370), - [anon_sym_starts_DASHwith] = ACTIONS(1370), - [anon_sym_ends_DASHwith] = ACTIONS(1370), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1370), - [anon_sym_bit_DASHxor] = ACTIONS(1370), - [anon_sym_bit_DASHor] = ACTIONS(1370), - [anon_sym_and] = ACTIONS(1370), - [anon_sym_xor] = ACTIONS(1370), - [anon_sym_or] = ACTIONS(1370), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [aux_sym__val_number_token4] = ACTIONS(1370), - [aux_sym__val_number_token5] = ACTIONS(1370), - [aux_sym__val_number_token6] = ACTIONS(1370), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1370), - [anon_sym_out_GT] = ACTIONS(1370), - [anon_sym_e_GT] = ACTIONS(1370), - [anon_sym_o_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT] = ACTIONS(1370), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), - }, - [2376] = { - [sym_comment] = STATE(2376), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_COMMA] = ACTIONS(1370), - [anon_sym_RBRACK] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1370), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1370), - [anon_sym_bit_DASHshr] = ACTIONS(1370), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1370), - [anon_sym_starts_DASHwith] = ACTIONS(1370), - [anon_sym_ends_DASHwith] = ACTIONS(1370), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1370), - [anon_sym_bit_DASHxor] = ACTIONS(1370), - [anon_sym_bit_DASHor] = ACTIONS(1370), - [anon_sym_and] = ACTIONS(1370), - [anon_sym_xor] = ACTIONS(1370), - [anon_sym_or] = ACTIONS(1370), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [aux_sym__val_number_token4] = ACTIONS(1370), - [aux_sym__val_number_token5] = ACTIONS(1370), - [aux_sym__val_number_token6] = ACTIONS(1370), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1370), - [anon_sym_out_GT] = ACTIONS(1370), - [anon_sym_e_GT] = ACTIONS(1370), - [anon_sym_o_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT] = ACTIONS(1370), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), - }, - [2377] = { - [sym_comment] = STATE(2377), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_COMMA] = ACTIONS(1370), - [anon_sym_RBRACK] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1370), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1370), - [anon_sym_bit_DASHshr] = ACTIONS(1370), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1370), - [anon_sym_starts_DASHwith] = ACTIONS(1370), - [anon_sym_ends_DASHwith] = ACTIONS(1370), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1370), - [anon_sym_bit_DASHxor] = ACTIONS(1370), - [anon_sym_bit_DASHor] = ACTIONS(1370), - [anon_sym_and] = ACTIONS(1370), - [anon_sym_xor] = ACTIONS(1370), - [anon_sym_or] = ACTIONS(1370), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [aux_sym__val_number_token4] = ACTIONS(1370), - [aux_sym__val_number_token5] = ACTIONS(1370), - [aux_sym__val_number_token6] = ACTIONS(1370), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1370), - [anon_sym_out_GT] = ACTIONS(1370), - [anon_sym_e_GT] = ACTIONS(1370), - [anon_sym_o_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT] = ACTIONS(1370), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), - }, - [2378] = { - [sym__expression] = STATE(7821), - [sym_expr_unary] = STATE(6196), - [sym__expr_unary_minus] = STATE(6200), - [sym_expr_binary] = STATE(6196), - [sym__expr_binary_expression] = STATE(6783), - [sym_expr_parenthesized] = STATE(5434), - [sym_val_range] = STATE(8689), - [sym__value] = STATE(6196), - [sym_val_nothing] = STATE(6059), - [sym_val_bool] = STATE(6059), - [sym_val_variable] = STATE(5445), - [sym__var] = STATE(4804), - [sym_val_number] = STATE(6059), - [sym__val_number_decimal] = STATE(4923), - [sym__val_number] = STATE(6097), - [sym_val_duration] = STATE(6059), - [sym_val_filesize] = STATE(6059), - [sym_val_binary] = STATE(6059), - [sym_val_string] = STATE(6059), - [sym__str_double_quotes] = STATE(6144), - [sym_val_interpolated] = STATE(6059), - [sym__inter_single_quotes] = STATE(6158), - [sym__inter_double_quotes] = STATE(6159), - [sym_val_list] = STATE(6059), - [sym_val_record] = STATE(6059), - [sym_val_table] = STATE(6059), - [sym_val_closure] = STATE(6059), - [sym__flag] = STATE(2432), - [sym_short_flag] = STATE(5303), - [sym_long_flag] = STATE(5303), - [sym_long_flag_equals_value] = STATE(5400), - [sym_comment] = STATE(2378), - [ts_builtin_sym_end] = ACTIONS(5439), - [anon_sym_SEMI] = ACTIONS(5437), - [anon_sym_LF] = ACTIONS(5439), - [anon_sym_LBRACK] = ACTIONS(6053), - [anon_sym_LPAREN] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(5437), - [anon_sym_DOLLAR] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(6057), - [anon_sym_DASH] = ACTIONS(6059), - [anon_sym_LBRACE] = ACTIONS(6061), - [anon_sym_DOT_DOT] = ACTIONS(6063), - [anon_sym_not] = ACTIONS(6065), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6067), - [anon_sym_DOT_DOT_LT] = ACTIONS(6067), - [anon_sym_null] = ACTIONS(6069), - [anon_sym_true] = ACTIONS(6071), - [anon_sym_false] = ACTIONS(6071), - [aux_sym__val_number_decimal_token1] = ACTIONS(6073), - [aux_sym__val_number_decimal_token2] = ACTIONS(6073), - [anon_sym_DOT2] = ACTIONS(6075), - [aux_sym__val_number_decimal_token3] = ACTIONS(6077), - [aux_sym__val_number_token1] = ACTIONS(6079), - [aux_sym__val_number_token2] = ACTIONS(6079), - [aux_sym__val_number_token3] = ACTIONS(6079), - [aux_sym__val_number_token4] = ACTIONS(6079), - [aux_sym__val_number_token5] = ACTIONS(6079), - [aux_sym__val_number_token6] = ACTIONS(6079), - [anon_sym_0b] = ACTIONS(2953), - [anon_sym_0o] = ACTIONS(2955), - [anon_sym_0x] = ACTIONS(2955), - [sym_val_date] = ACTIONS(6081), - [anon_sym_DQUOTE] = ACTIONS(6083), - [sym__str_single_quotes] = ACTIONS(6085), - [sym__str_back_ticks] = ACTIONS(6085), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6087), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6089), + [2574] = { + [sym_comment] = STATE(2574), + [anon_sym_SEMI] = ACTIONS(1051), + [anon_sym_LF] = ACTIONS(1053), + [anon_sym_LBRACK] = ACTIONS(1051), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_RPAREN] = ACTIONS(1051), + [anon_sym_PIPE] = ACTIONS(1051), + [anon_sym_DOLLAR] = ACTIONS(1051), + [anon_sym_GT] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_in] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(1051), + [anon_sym_RBRACE] = ACTIONS(1051), + [anon_sym_DOT_DOT] = ACTIONS(1051), + [anon_sym_STAR] = ACTIONS(1051), + [anon_sym_STAR_STAR] = ACTIONS(1051), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_mod] = ACTIONS(1051), + [anon_sym_SLASH_SLASH] = ACTIONS(1051), + [anon_sym_PLUS] = ACTIONS(1051), + [anon_sym_bit_DASHshl] = ACTIONS(1051), + [anon_sym_bit_DASHshr] = ACTIONS(1051), + [anon_sym_EQ_EQ] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1051), + [anon_sym_LT2] = ACTIONS(1051), + [anon_sym_LT_EQ] = ACTIONS(1051), + [anon_sym_GT_EQ] = ACTIONS(1051), + [anon_sym_not_DASHin] = ACTIONS(1051), + [anon_sym_starts_DASHwith] = ACTIONS(1051), + [anon_sym_ends_DASHwith] = ACTIONS(1051), + [anon_sym_EQ_TILDE] = ACTIONS(1051), + [anon_sym_BANG_TILDE] = ACTIONS(1051), + [anon_sym_bit_DASHand] = ACTIONS(1051), + [anon_sym_bit_DASHxor] = ACTIONS(1051), + [anon_sym_bit_DASHor] = ACTIONS(1051), + [anon_sym_and] = ACTIONS(1051), + [anon_sym_xor] = ACTIONS(1051), + [anon_sym_or] = ACTIONS(1051), + [anon_sym_not] = ACTIONS(1051), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1051), + [anon_sym_DOT_DOT_LT] = ACTIONS(1051), + [anon_sym_null] = ACTIONS(1051), + [anon_sym_true] = ACTIONS(1051), + [anon_sym_false] = ACTIONS(1051), + [aux_sym__val_number_decimal_token1] = ACTIONS(1051), + [aux_sym__val_number_decimal_token2] = ACTIONS(1051), + [anon_sym_DOT2] = ACTIONS(1051), + [aux_sym__val_number_decimal_token3] = ACTIONS(1051), + [aux_sym__val_number_token1] = ACTIONS(1051), + [aux_sym__val_number_token2] = ACTIONS(1051), + [aux_sym__val_number_token3] = ACTIONS(1051), + [aux_sym__val_number_token4] = ACTIONS(1051), + [aux_sym__val_number_token5] = ACTIONS(1051), + [aux_sym__val_number_token6] = ACTIONS(1051), + [anon_sym_0b] = ACTIONS(1051), + [anon_sym_0o] = ACTIONS(1051), + [anon_sym_0x] = ACTIONS(1051), + [sym_val_date] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(1051), + [sym__str_single_quotes] = ACTIONS(1051), + [sym__str_back_ticks] = ACTIONS(1051), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1051), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1051), [anon_sym_POUND] = ACTIONS(113), }, - [2379] = { - [sym_comment] = STATE(2379), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_COMMA] = ACTIONS(1370), - [anon_sym_RBRACK] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1370), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1370), - [anon_sym_bit_DASHshr] = ACTIONS(1370), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1370), - [anon_sym_starts_DASHwith] = ACTIONS(1370), - [anon_sym_ends_DASHwith] = ACTIONS(1370), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1370), - [anon_sym_bit_DASHxor] = ACTIONS(1370), - [anon_sym_bit_DASHor] = ACTIONS(1370), - [anon_sym_and] = ACTIONS(1370), - [anon_sym_xor] = ACTIONS(1370), - [anon_sym_or] = ACTIONS(1370), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [aux_sym__val_number_token4] = ACTIONS(1370), - [aux_sym__val_number_token5] = ACTIONS(1370), - [aux_sym__val_number_token6] = ACTIONS(1370), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1370), - [anon_sym_out_GT] = ACTIONS(1370), - [anon_sym_e_GT] = ACTIONS(1370), - [anon_sym_o_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT] = ACTIONS(1370), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), - }, - [2380] = { - [sym__expression] = STATE(7821), - [sym_expr_unary] = STATE(6196), - [sym__expr_unary_minus] = STATE(6200), - [sym_expr_binary] = STATE(6196), - [sym__expr_binary_expression] = STATE(6783), - [sym_expr_parenthesized] = STATE(5434), - [sym_val_range] = STATE(8689), - [sym__value] = STATE(6196), - [sym_val_nothing] = STATE(6059), - [sym_val_bool] = STATE(6059), - [sym_val_variable] = STATE(5445), - [sym__var] = STATE(4804), - [sym_val_number] = STATE(6059), - [sym__val_number_decimal] = STATE(4923), - [sym__val_number] = STATE(6097), - [sym_val_duration] = STATE(6059), - [sym_val_filesize] = STATE(6059), - [sym_val_binary] = STATE(6059), - [sym_val_string] = STATE(6059), - [sym__str_double_quotes] = STATE(6144), - [sym_val_interpolated] = STATE(6059), - [sym__inter_single_quotes] = STATE(6158), - [sym__inter_double_quotes] = STATE(6159), - [sym_val_list] = STATE(6059), - [sym_val_record] = STATE(6059), - [sym_val_table] = STATE(6059), - [sym_val_closure] = STATE(6059), - [sym__flag] = STATE(2434), - [sym_short_flag] = STATE(5303), - [sym_long_flag] = STATE(5303), - [sym_long_flag_equals_value] = STATE(5400), - [sym_comment] = STATE(2380), - [ts_builtin_sym_end] = ACTIONS(5439), - [anon_sym_SEMI] = ACTIONS(5437), - [anon_sym_LF] = ACTIONS(5439), - [anon_sym_LBRACK] = ACTIONS(6053), - [anon_sym_LPAREN] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(5437), - [anon_sym_DOLLAR] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(6057), - [anon_sym_DASH] = ACTIONS(6059), - [anon_sym_LBRACE] = ACTIONS(6061), - [anon_sym_DOT_DOT] = ACTIONS(6063), - [anon_sym_not] = ACTIONS(6065), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6067), - [anon_sym_DOT_DOT_LT] = ACTIONS(6067), - [anon_sym_null] = ACTIONS(6069), - [anon_sym_true] = ACTIONS(6071), - [anon_sym_false] = ACTIONS(6071), - [aux_sym__val_number_decimal_token1] = ACTIONS(6073), - [aux_sym__val_number_decimal_token2] = ACTIONS(6073), - [anon_sym_DOT2] = ACTIONS(6075), - [aux_sym__val_number_decimal_token3] = ACTIONS(6077), - [aux_sym__val_number_token1] = ACTIONS(6079), - [aux_sym__val_number_token2] = ACTIONS(6079), - [aux_sym__val_number_token3] = ACTIONS(6079), - [aux_sym__val_number_token4] = ACTIONS(6079), - [aux_sym__val_number_token5] = ACTIONS(6079), - [aux_sym__val_number_token6] = ACTIONS(6079), - [anon_sym_0b] = ACTIONS(2953), - [anon_sym_0o] = ACTIONS(2955), - [anon_sym_0x] = ACTIONS(2955), - [sym_val_date] = ACTIONS(6081), - [anon_sym_DQUOTE] = ACTIONS(6083), - [sym__str_single_quotes] = ACTIONS(6085), - [sym__str_back_ticks] = ACTIONS(6085), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6087), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6089), + [2575] = { + [sym_comment] = STATE(2575), + [anon_sym_SEMI] = ACTIONS(1279), + [anon_sym_LF] = ACTIONS(1281), + [anon_sym_LBRACK] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_RPAREN] = ACTIONS(1279), + [anon_sym_PIPE] = ACTIONS(1279), + [anon_sym_DOLLAR] = ACTIONS(1279), + [anon_sym_GT] = ACTIONS(1279), + [anon_sym_DASH_DASH] = ACTIONS(1279), + [anon_sym_DASH] = ACTIONS(1279), + [anon_sym_in] = ACTIONS(1279), + [anon_sym_LBRACE] = ACTIONS(1279), + [anon_sym_RBRACE] = ACTIONS(1279), + [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1279), + [anon_sym_STAR_STAR] = ACTIONS(1279), + [anon_sym_PLUS_PLUS] = ACTIONS(1279), + [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_mod] = ACTIONS(1279), + [anon_sym_SLASH_SLASH] = ACTIONS(1279), + [anon_sym_PLUS] = ACTIONS(1279), + [anon_sym_bit_DASHshl] = ACTIONS(1279), + [anon_sym_bit_DASHshr] = ACTIONS(1279), + [anon_sym_EQ_EQ] = ACTIONS(1279), + [anon_sym_BANG_EQ] = ACTIONS(1279), + [anon_sym_LT2] = ACTIONS(1279), + [anon_sym_LT_EQ] = ACTIONS(1279), + [anon_sym_GT_EQ] = ACTIONS(1279), + [anon_sym_not_DASHin] = ACTIONS(1279), + [anon_sym_starts_DASHwith] = ACTIONS(1279), + [anon_sym_ends_DASHwith] = ACTIONS(1279), + [anon_sym_EQ_TILDE] = ACTIONS(1279), + [anon_sym_BANG_TILDE] = ACTIONS(1279), + [anon_sym_bit_DASHand] = ACTIONS(1279), + [anon_sym_bit_DASHxor] = ACTIONS(1279), + [anon_sym_bit_DASHor] = ACTIONS(1279), + [anon_sym_and] = ACTIONS(1279), + [anon_sym_xor] = ACTIONS(1279), + [anon_sym_or] = ACTIONS(1279), + [anon_sym_not] = ACTIONS(1279), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1279), + [anon_sym_DOT_DOT_LT] = ACTIONS(1279), + [anon_sym_null] = ACTIONS(1279), + [anon_sym_true] = ACTIONS(1279), + [anon_sym_false] = ACTIONS(1279), + [aux_sym__val_number_decimal_token1] = ACTIONS(1279), + [aux_sym__val_number_decimal_token2] = ACTIONS(1279), + [anon_sym_DOT2] = ACTIONS(1279), + [aux_sym__val_number_decimal_token3] = ACTIONS(1279), + [aux_sym__val_number_token1] = ACTIONS(1279), + [aux_sym__val_number_token2] = ACTIONS(1279), + [aux_sym__val_number_token3] = ACTIONS(1279), + [aux_sym__val_number_token4] = ACTIONS(1279), + [aux_sym__val_number_token5] = ACTIONS(1279), + [aux_sym__val_number_token6] = ACTIONS(1279), + [anon_sym_0b] = ACTIONS(1279), + [anon_sym_0o] = ACTIONS(1279), + [anon_sym_0x] = ACTIONS(1279), + [sym_val_date] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(1279), + [sym__str_single_quotes] = ACTIONS(1279), + [sym__str_back_ticks] = ACTIONS(1279), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1279), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1279), [anon_sym_POUND] = ACTIONS(113), }, - [2381] = { - [sym_comment] = STATE(2381), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_COMMA] = ACTIONS(1370), - [anon_sym_RBRACK] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1370), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1370), - [anon_sym_bit_DASHshr] = ACTIONS(1370), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1370), - [anon_sym_starts_DASHwith] = ACTIONS(1370), - [anon_sym_ends_DASHwith] = ACTIONS(1370), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1370), - [anon_sym_bit_DASHxor] = ACTIONS(1370), - [anon_sym_bit_DASHor] = ACTIONS(1370), - [anon_sym_and] = ACTIONS(1370), - [anon_sym_xor] = ACTIONS(1370), - [anon_sym_or] = ACTIONS(1370), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [aux_sym__val_number_token4] = ACTIONS(1370), - [aux_sym__val_number_token5] = ACTIONS(1370), - [aux_sym__val_number_token6] = ACTIONS(1370), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1370), - [anon_sym_out_GT] = ACTIONS(1370), - [anon_sym_e_GT] = ACTIONS(1370), - [anon_sym_o_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT] = ACTIONS(1370), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), - }, - [2382] = { - [sym__expression] = STATE(7821), - [sym_expr_unary] = STATE(6196), - [sym__expr_unary_minus] = STATE(6200), - [sym_expr_binary] = STATE(6196), - [sym__expr_binary_expression] = STATE(6783), - [sym_expr_parenthesized] = STATE(5434), - [sym_val_range] = STATE(8689), - [sym__value] = STATE(6196), - [sym_val_nothing] = STATE(6059), - [sym_val_bool] = STATE(6059), - [sym_val_variable] = STATE(5445), - [sym__var] = STATE(4804), - [sym_val_number] = STATE(6059), - [sym__val_number_decimal] = STATE(4923), - [sym__val_number] = STATE(6097), - [sym_val_duration] = STATE(6059), - [sym_val_filesize] = STATE(6059), - [sym_val_binary] = STATE(6059), - [sym_val_string] = STATE(6059), - [sym__str_double_quotes] = STATE(6144), - [sym_val_interpolated] = STATE(6059), - [sym__inter_single_quotes] = STATE(6158), - [sym__inter_double_quotes] = STATE(6159), - [sym_val_list] = STATE(6059), - [sym_val_record] = STATE(6059), - [sym_val_table] = STATE(6059), - [sym_val_closure] = STATE(6059), - [sym__flag] = STATE(2435), - [sym_short_flag] = STATE(5303), - [sym_long_flag] = STATE(5303), - [sym_long_flag_equals_value] = STATE(5400), - [sym_comment] = STATE(2382), - [ts_builtin_sym_end] = ACTIONS(5439), - [anon_sym_SEMI] = ACTIONS(5437), - [anon_sym_LF] = ACTIONS(5439), - [anon_sym_LBRACK] = ACTIONS(6053), - [anon_sym_LPAREN] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(5437), - [anon_sym_DOLLAR] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(6057), - [anon_sym_DASH] = ACTIONS(6059), - [anon_sym_LBRACE] = ACTIONS(6061), - [anon_sym_DOT_DOT] = ACTIONS(6063), - [anon_sym_not] = ACTIONS(6065), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6067), - [anon_sym_DOT_DOT_LT] = ACTIONS(6067), - [anon_sym_null] = ACTIONS(6069), - [anon_sym_true] = ACTIONS(6071), - [anon_sym_false] = ACTIONS(6071), - [aux_sym__val_number_decimal_token1] = ACTIONS(6073), - [aux_sym__val_number_decimal_token2] = ACTIONS(6073), - [anon_sym_DOT2] = ACTIONS(6075), - [aux_sym__val_number_decimal_token3] = ACTIONS(6077), - [aux_sym__val_number_token1] = ACTIONS(6079), - [aux_sym__val_number_token2] = ACTIONS(6079), - [aux_sym__val_number_token3] = ACTIONS(6079), - [aux_sym__val_number_token4] = ACTIONS(6079), - [aux_sym__val_number_token5] = ACTIONS(6079), - [aux_sym__val_number_token6] = ACTIONS(6079), - [anon_sym_0b] = ACTIONS(2953), - [anon_sym_0o] = ACTIONS(2955), - [anon_sym_0x] = ACTIONS(2955), - [sym_val_date] = ACTIONS(6081), - [anon_sym_DQUOTE] = ACTIONS(6083), - [sym__str_single_quotes] = ACTIONS(6085), - [sym__str_back_ticks] = ACTIONS(6085), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6087), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6089), + [2576] = { + [sym_comment] = STATE(2576), + [anon_sym_SEMI] = ACTIONS(1165), + [anon_sym_LF] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_LPAREN] = ACTIONS(1165), + [anon_sym_RPAREN] = ACTIONS(1165), + [anon_sym_PIPE] = ACTIONS(1165), + [anon_sym_DOLLAR] = ACTIONS(1165), + [anon_sym_GT] = ACTIONS(1165), + [anon_sym_DASH_DASH] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_in] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(1165), + [anon_sym_RBRACE] = ACTIONS(1165), + [anon_sym_DOT_DOT] = ACTIONS(1165), + [anon_sym_STAR] = ACTIONS(1165), + [anon_sym_STAR_STAR] = ACTIONS(1165), + [anon_sym_PLUS_PLUS] = ACTIONS(1165), + [anon_sym_SLASH] = ACTIONS(1165), + [anon_sym_mod] = ACTIONS(1165), + [anon_sym_SLASH_SLASH] = ACTIONS(1165), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_bit_DASHshl] = ACTIONS(1165), + [anon_sym_bit_DASHshr] = ACTIONS(1165), + [anon_sym_EQ_EQ] = ACTIONS(1165), + [anon_sym_BANG_EQ] = ACTIONS(1165), + [anon_sym_LT2] = ACTIONS(1165), + [anon_sym_LT_EQ] = ACTIONS(1165), + [anon_sym_GT_EQ] = ACTIONS(1165), + [anon_sym_not_DASHin] = ACTIONS(1165), + [anon_sym_starts_DASHwith] = ACTIONS(1165), + [anon_sym_ends_DASHwith] = ACTIONS(1165), + [anon_sym_EQ_TILDE] = ACTIONS(1165), + [anon_sym_BANG_TILDE] = ACTIONS(1165), + [anon_sym_bit_DASHand] = ACTIONS(1165), + [anon_sym_bit_DASHxor] = ACTIONS(1165), + [anon_sym_bit_DASHor] = ACTIONS(1165), + [anon_sym_and] = ACTIONS(1165), + [anon_sym_xor] = ACTIONS(1165), + [anon_sym_or] = ACTIONS(1165), + [anon_sym_not] = ACTIONS(1165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1165), + [anon_sym_DOT_DOT_LT] = ACTIONS(1165), + [anon_sym_null] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1165), + [anon_sym_false] = ACTIONS(1165), + [aux_sym__val_number_decimal_token1] = ACTIONS(1165), + [aux_sym__val_number_decimal_token2] = ACTIONS(1165), + [anon_sym_DOT2] = ACTIONS(1165), + [aux_sym__val_number_decimal_token3] = ACTIONS(1165), + [aux_sym__val_number_token1] = ACTIONS(1165), + [aux_sym__val_number_token2] = ACTIONS(1165), + [aux_sym__val_number_token3] = ACTIONS(1165), + [aux_sym__val_number_token4] = ACTIONS(1165), + [aux_sym__val_number_token5] = ACTIONS(1165), + [aux_sym__val_number_token6] = ACTIONS(1165), + [anon_sym_0b] = ACTIONS(1165), + [anon_sym_0o] = ACTIONS(1165), + [anon_sym_0x] = ACTIONS(1165), + [sym_val_date] = ACTIONS(1165), + [anon_sym_DQUOTE] = ACTIONS(1165), + [sym__str_single_quotes] = ACTIONS(1165), + [sym__str_back_ticks] = ACTIONS(1165), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1165), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1165), [anon_sym_POUND] = ACTIONS(113), }, - [2383] = { - [sym_comment] = STATE(2383), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_COMMA] = ACTIONS(1370), - [anon_sym_RBRACK] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1370), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1370), - [anon_sym_bit_DASHshr] = ACTIONS(1370), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1370), - [anon_sym_starts_DASHwith] = ACTIONS(1370), - [anon_sym_ends_DASHwith] = ACTIONS(1370), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1370), - [anon_sym_bit_DASHxor] = ACTIONS(1370), - [anon_sym_bit_DASHor] = ACTIONS(1370), - [anon_sym_and] = ACTIONS(1370), - [anon_sym_xor] = ACTIONS(1370), - [anon_sym_or] = ACTIONS(1370), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [aux_sym__val_number_token4] = ACTIONS(1370), - [aux_sym__val_number_token5] = ACTIONS(1370), - [aux_sym__val_number_token6] = ACTIONS(1370), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1370), - [anon_sym_out_GT] = ACTIONS(1370), - [anon_sym_e_GT] = ACTIONS(1370), - [anon_sym_o_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT] = ACTIONS(1370), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), - }, - [2384] = { - [sym__expression] = STATE(7821), - [sym_expr_unary] = STATE(6196), - [sym__expr_unary_minus] = STATE(6200), - [sym_expr_binary] = STATE(6196), - [sym__expr_binary_expression] = STATE(6783), - [sym_expr_parenthesized] = STATE(5434), - [sym_val_range] = STATE(8689), - [sym__value] = STATE(6196), - [sym_val_nothing] = STATE(6059), - [sym_val_bool] = STATE(6059), - [sym_val_variable] = STATE(5445), - [sym__var] = STATE(4804), - [sym_val_number] = STATE(6059), - [sym__val_number_decimal] = STATE(4923), - [sym__val_number] = STATE(6097), - [sym_val_duration] = STATE(6059), - [sym_val_filesize] = STATE(6059), - [sym_val_binary] = STATE(6059), - [sym_val_string] = STATE(6059), - [sym__str_double_quotes] = STATE(6144), - [sym_val_interpolated] = STATE(6059), - [sym__inter_single_quotes] = STATE(6158), - [sym__inter_double_quotes] = STATE(6159), - [sym_val_list] = STATE(6059), - [sym_val_record] = STATE(6059), - [sym_val_table] = STATE(6059), - [sym_val_closure] = STATE(6059), - [sym__flag] = STATE(2436), - [sym_short_flag] = STATE(5303), - [sym_long_flag] = STATE(5303), - [sym_long_flag_equals_value] = STATE(5400), - [sym_comment] = STATE(2384), - [ts_builtin_sym_end] = ACTIONS(5439), - [anon_sym_SEMI] = ACTIONS(5437), - [anon_sym_LF] = ACTIONS(5439), - [anon_sym_LBRACK] = ACTIONS(6053), - [anon_sym_LPAREN] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(5437), - [anon_sym_DOLLAR] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(6057), - [anon_sym_DASH] = ACTIONS(6059), - [anon_sym_LBRACE] = ACTIONS(6061), - [anon_sym_DOT_DOT] = ACTIONS(6063), - [anon_sym_not] = ACTIONS(6065), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6067), - [anon_sym_DOT_DOT_LT] = ACTIONS(6067), - [anon_sym_null] = ACTIONS(6069), - [anon_sym_true] = ACTIONS(6071), - [anon_sym_false] = ACTIONS(6071), - [aux_sym__val_number_decimal_token1] = ACTIONS(6073), - [aux_sym__val_number_decimal_token2] = ACTIONS(6073), - [anon_sym_DOT2] = ACTIONS(6075), - [aux_sym__val_number_decimal_token3] = ACTIONS(6077), - [aux_sym__val_number_token1] = ACTIONS(6079), - [aux_sym__val_number_token2] = ACTIONS(6079), - [aux_sym__val_number_token3] = ACTIONS(6079), - [aux_sym__val_number_token4] = ACTIONS(6079), - [aux_sym__val_number_token5] = ACTIONS(6079), - [aux_sym__val_number_token6] = ACTIONS(6079), - [anon_sym_0b] = ACTIONS(2953), - [anon_sym_0o] = ACTIONS(2955), - [anon_sym_0x] = ACTIONS(2955), - [sym_val_date] = ACTIONS(6081), - [anon_sym_DQUOTE] = ACTIONS(6083), - [sym__str_single_quotes] = ACTIONS(6085), - [sym__str_back_ticks] = ACTIONS(6085), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6087), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6089), + [2577] = { + [sym_comment] = STATE(2577), + [anon_sym_SEMI] = ACTIONS(1283), + [anon_sym_LF] = ACTIONS(1285), + [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_LPAREN] = ACTIONS(1283), + [anon_sym_RPAREN] = ACTIONS(1283), + [anon_sym_PIPE] = ACTIONS(1283), + [anon_sym_DOLLAR] = ACTIONS(1283), + [anon_sym_GT] = ACTIONS(1283), + [anon_sym_DASH_DASH] = ACTIONS(1283), + [anon_sym_DASH] = ACTIONS(1283), + [anon_sym_in] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1283), + [anon_sym_RBRACE] = ACTIONS(1283), + [anon_sym_DOT_DOT] = ACTIONS(1283), + [anon_sym_STAR] = ACTIONS(1283), + [anon_sym_STAR_STAR] = ACTIONS(1283), + [anon_sym_PLUS_PLUS] = ACTIONS(1283), + [anon_sym_SLASH] = ACTIONS(1283), + [anon_sym_mod] = ACTIONS(1283), + [anon_sym_SLASH_SLASH] = ACTIONS(1283), + [anon_sym_PLUS] = ACTIONS(1283), + [anon_sym_bit_DASHshl] = ACTIONS(1283), + [anon_sym_bit_DASHshr] = ACTIONS(1283), + [anon_sym_EQ_EQ] = ACTIONS(1283), + [anon_sym_BANG_EQ] = ACTIONS(1283), + [anon_sym_LT2] = ACTIONS(1283), + [anon_sym_LT_EQ] = ACTIONS(1283), + [anon_sym_GT_EQ] = ACTIONS(1283), + [anon_sym_not_DASHin] = ACTIONS(1283), + [anon_sym_starts_DASHwith] = ACTIONS(1283), + [anon_sym_ends_DASHwith] = ACTIONS(1283), + [anon_sym_EQ_TILDE] = ACTIONS(1283), + [anon_sym_BANG_TILDE] = ACTIONS(1283), + [anon_sym_bit_DASHand] = ACTIONS(1283), + [anon_sym_bit_DASHxor] = ACTIONS(1283), + [anon_sym_bit_DASHor] = ACTIONS(1283), + [anon_sym_and] = ACTIONS(1283), + [anon_sym_xor] = ACTIONS(1283), + [anon_sym_or] = ACTIONS(1283), + [anon_sym_not] = ACTIONS(1283), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1283), + [anon_sym_DOT_DOT_LT] = ACTIONS(1283), + [anon_sym_null] = ACTIONS(1283), + [anon_sym_true] = ACTIONS(1283), + [anon_sym_false] = ACTIONS(1283), + [aux_sym__val_number_decimal_token1] = ACTIONS(1283), + [aux_sym__val_number_decimal_token2] = ACTIONS(1283), + [anon_sym_DOT2] = ACTIONS(1283), + [aux_sym__val_number_decimal_token3] = ACTIONS(1283), + [aux_sym__val_number_token1] = ACTIONS(1283), + [aux_sym__val_number_token2] = ACTIONS(1283), + [aux_sym__val_number_token3] = ACTIONS(1283), + [aux_sym__val_number_token4] = ACTIONS(1283), + [aux_sym__val_number_token5] = ACTIONS(1283), + [aux_sym__val_number_token6] = ACTIONS(1283), + [anon_sym_0b] = ACTIONS(1283), + [anon_sym_0o] = ACTIONS(1283), + [anon_sym_0x] = ACTIONS(1283), + [sym_val_date] = ACTIONS(1283), + [anon_sym_DQUOTE] = ACTIONS(1283), + [sym__str_single_quotes] = ACTIONS(1283), + [sym__str_back_ticks] = ACTIONS(1283), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1283), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1283), [anon_sym_POUND] = ACTIONS(113), }, - [2385] = { - [sym_comment] = STATE(2385), - [anon_sym_LBRACK] = ACTIONS(1374), - [anon_sym_COMMA] = ACTIONS(1374), - [anon_sym_RBRACK] = ACTIONS(1374), - [anon_sym_LPAREN] = ACTIONS(1374), - [anon_sym_DOLLAR] = ACTIONS(1374), - [anon_sym_GT] = ACTIONS(1372), - [anon_sym_DASH_DASH] = ACTIONS(1374), - [anon_sym_DASH] = ACTIONS(1372), - [anon_sym_in] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_DOT_DOT] = ACTIONS(1372), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_STAR_STAR] = ACTIONS(1374), - [anon_sym_PLUS_PLUS] = ACTIONS(1374), - [anon_sym_SLASH] = ACTIONS(1372), - [anon_sym_mod] = ACTIONS(1374), - [anon_sym_SLASH_SLASH] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1372), - [anon_sym_bit_DASHshl] = ACTIONS(1374), - [anon_sym_bit_DASHshr] = ACTIONS(1374), - [anon_sym_EQ_EQ] = ACTIONS(1374), - [anon_sym_BANG_EQ] = ACTIONS(1374), - [anon_sym_LT2] = ACTIONS(1372), - [anon_sym_LT_EQ] = ACTIONS(1374), - [anon_sym_GT_EQ] = ACTIONS(1374), - [anon_sym_not_DASHin] = ACTIONS(1374), - [anon_sym_starts_DASHwith] = ACTIONS(1374), - [anon_sym_ends_DASHwith] = ACTIONS(1374), - [anon_sym_EQ_TILDE] = ACTIONS(1374), - [anon_sym_BANG_TILDE] = ACTIONS(1374), - [anon_sym_bit_DASHand] = ACTIONS(1374), - [anon_sym_bit_DASHxor] = ACTIONS(1374), - [anon_sym_bit_DASHor] = ACTIONS(1374), - [anon_sym_and] = ACTIONS(1374), - [anon_sym_xor] = ACTIONS(1374), - [anon_sym_or] = ACTIONS(1374), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1374), - [anon_sym_DOT_DOT_LT] = ACTIONS(1374), - [anon_sym_null] = ACTIONS(1374), - [anon_sym_true] = ACTIONS(1374), - [anon_sym_false] = ACTIONS(1374), - [aux_sym__val_number_decimal_token1] = ACTIONS(1372), - [aux_sym__val_number_decimal_token2] = ACTIONS(1374), - [anon_sym_DOT2] = ACTIONS(1372), - [aux_sym__val_number_decimal_token3] = ACTIONS(1374), - [aux_sym__val_number_token1] = ACTIONS(1374), - [aux_sym__val_number_token2] = ACTIONS(1374), - [aux_sym__val_number_token3] = ACTIONS(1374), - [aux_sym__val_number_token4] = ACTIONS(1374), - [aux_sym__val_number_token5] = ACTIONS(1374), - [aux_sym__val_number_token6] = ACTIONS(1374), - [anon_sym_0b] = ACTIONS(1372), - [anon_sym_0o] = ACTIONS(1372), - [anon_sym_0x] = ACTIONS(1372), - [sym_val_date] = ACTIONS(1374), - [anon_sym_DQUOTE] = ACTIONS(1374), - [sym__str_single_quotes] = ACTIONS(1374), - [sym__str_back_ticks] = ACTIONS(1374), - [anon_sym_err_GT] = ACTIONS(1374), - [anon_sym_out_GT] = ACTIONS(1374), - [anon_sym_e_GT] = ACTIONS(1374), - [anon_sym_o_GT] = ACTIONS(1374), - [anon_sym_err_PLUSout_GT] = ACTIONS(1374), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1374), - [anon_sym_o_PLUSe_GT] = ACTIONS(1374), - [anon_sym_e_PLUSo_GT] = ACTIONS(1374), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1372), + [2578] = { + [sym__immediate_decimal] = STATE(10080), + [sym_comment] = STATE(2578), + [anon_sym_LBRACK] = ACTIONS(922), + [anon_sym_LPAREN] = ACTIONS(922), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_in] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_STAR_STAR] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_mod] = ACTIONS(922), + [anon_sym_SLASH_SLASH] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_bit_DASHshl] = ACTIONS(922), + [anon_sym_bit_DASHshr] = ACTIONS(922), + [anon_sym_EQ_EQ] = ACTIONS(922), + [anon_sym_BANG_EQ] = ACTIONS(922), + [anon_sym_LT2] = ACTIONS(920), + [anon_sym_LT_EQ] = ACTIONS(922), + [anon_sym_GT_EQ] = ACTIONS(922), + [anon_sym_not_DASHin] = ACTIONS(922), + [anon_sym_starts_DASHwith] = ACTIONS(922), + [anon_sym_ends_DASHwith] = ACTIONS(922), + [anon_sym_EQ_TILDE] = ACTIONS(922), + [anon_sym_BANG_TILDE] = ACTIONS(922), + [anon_sym_bit_DASHand] = ACTIONS(922), + [anon_sym_bit_DASHxor] = ACTIONS(922), + [anon_sym_bit_DASHor] = ACTIONS(922), + [anon_sym_and] = ACTIONS(922), + [anon_sym_xor] = ACTIONS(922), + [anon_sym_or] = ACTIONS(922), + [anon_sym_not] = ACTIONS(920), + [anon_sym_DOT] = ACTIONS(967), + [anon_sym_DOT_DOT_EQ] = ACTIONS(922), + [anon_sym_DOT_DOT_LT] = ACTIONS(922), + [aux_sym__immediate_decimal_token1] = ACTIONS(969), + [aux_sym__immediate_decimal_token3] = ACTIONS(1407), + [aux_sym__immediate_decimal_token4] = ACTIONS(1409), + [anon_sym_null] = ACTIONS(922), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(922), + [aux_sym__val_number_token2] = ACTIONS(922), + [aux_sym__val_number_token3] = ACTIONS(922), + [aux_sym__val_number_token4] = ACTIONS(922), + [aux_sym__val_number_token5] = ACTIONS(922), + [aux_sym__val_number_token6] = ACTIONS(922), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(922), + [anon_sym_DQUOTE] = ACTIONS(922), + [sym__str_single_quotes] = ACTIONS(922), + [sym__str_back_ticks] = ACTIONS(922), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(922), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(922), + [aux_sym_unquoted_token4] = ACTIONS(6354), [anon_sym_POUND] = ACTIONS(3), }, - [2386] = { - [sym_comment] = STATE(2386), - [anon_sym_export] = ACTIONS(1059), - [anon_sym_alias] = ACTIONS(1059), - [anon_sym_let] = ACTIONS(1059), - [anon_sym_let_DASHenv] = ACTIONS(1059), - [anon_sym_mut] = ACTIONS(1059), - [anon_sym_const] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [sym_cmd_identifier] = ACTIONS(1059), - [anon_sym_LF] = ACTIONS(1061), - [anon_sym_def] = ACTIONS(1059), - [anon_sym_export_DASHenv] = ACTIONS(1059), - [anon_sym_extern] = ACTIONS(1059), - [anon_sym_module] = ACTIONS(1059), - [anon_sym_use] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_error] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_break] = ACTIONS(1059), - [anon_sym_continue] = ACTIONS(1059), - [anon_sym_for] = ACTIONS(1059), - [anon_sym_loop] = ACTIONS(1059), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_do] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1059), - [anon_sym_match] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(1059), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_try] = ACTIONS(1059), - [anon_sym_return] = ACTIONS(1059), - [anon_sym_source] = ACTIONS(1059), - [anon_sym_source_DASHenv] = ACTIONS(1059), - [anon_sym_register] = ACTIONS(1059), - [anon_sym_hide] = ACTIONS(1059), - [anon_sym_hide_DASHenv] = ACTIONS(1059), - [anon_sym_overlay] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(1059), - [anon_sym_not] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1059), - [anon_sym_DOT_DOT_LT] = ACTIONS(1059), - [anon_sym_null] = ACTIONS(1059), - [anon_sym_true] = ACTIONS(1059), - [anon_sym_false] = ACTIONS(1059), - [aux_sym__val_number_decimal_token1] = ACTIONS(1059), - [aux_sym__val_number_decimal_token2] = ACTIONS(1059), - [anon_sym_DOT2] = ACTIONS(1059), - [aux_sym__val_number_decimal_token3] = ACTIONS(1059), - [aux_sym__val_number_token1] = ACTIONS(1059), - [aux_sym__val_number_token2] = ACTIONS(1059), - [aux_sym__val_number_token3] = ACTIONS(1059), - [aux_sym__val_number_token4] = ACTIONS(1059), - [aux_sym__val_number_token5] = ACTIONS(1059), - [aux_sym__val_number_token6] = ACTIONS(1059), - [anon_sym_0b] = ACTIONS(1059), - [anon_sym_0o] = ACTIONS(1059), - [anon_sym_0x] = ACTIONS(1059), - [sym_val_date] = ACTIONS(1059), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym__str_single_quotes] = ACTIONS(1059), - [sym__str_back_ticks] = ACTIONS(1059), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1059), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1059), - [anon_sym_CARET] = ACTIONS(1059), - [anon_sym_POUND] = ACTIONS(113), - }, - [2387] = { - [sym_comment] = STATE(2387), - [ts_builtin_sym_end] = ACTIONS(1344), - [anon_sym_export] = ACTIONS(1342), - [anon_sym_alias] = ACTIONS(1342), - [anon_sym_let] = ACTIONS(1342), - [anon_sym_let_DASHenv] = ACTIONS(1342), - [anon_sym_mut] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_SEMI] = ACTIONS(1342), - [sym_cmd_identifier] = ACTIONS(1342), - [anon_sym_LF] = ACTIONS(1344), - [anon_sym_def] = ACTIONS(1342), - [anon_sym_export_DASHenv] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1342), - [anon_sym_module] = ACTIONS(1342), - [anon_sym_use] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_DOLLAR] = ACTIONS(1342), - [anon_sym_error] = ACTIONS(1342), - [anon_sym_DASH_DASH] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_loop] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_match] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_DOT_DOT] = ACTIONS(1342), - [anon_sym_try] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_source] = ACTIONS(1342), - [anon_sym_source_DASHenv] = ACTIONS(1342), - [anon_sym_register] = ACTIONS(1342), - [anon_sym_hide] = ACTIONS(1342), - [anon_sym_hide_DASHenv] = ACTIONS(1342), - [anon_sym_overlay] = ACTIONS(1342), - [anon_sym_as] = ACTIONS(1342), - [anon_sym_where] = ACTIONS(1342), - [anon_sym_not] = ACTIONS(1342), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1342), - [anon_sym_DOT_DOT_LT] = ACTIONS(1342), - [anon_sym_null] = ACTIONS(1342), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym__val_number_decimal_token1] = ACTIONS(1342), - [aux_sym__val_number_decimal_token2] = ACTIONS(1342), - [anon_sym_DOT2] = ACTIONS(1342), - [aux_sym__val_number_decimal_token3] = ACTIONS(1342), - [aux_sym__val_number_token1] = ACTIONS(1342), - [aux_sym__val_number_token2] = ACTIONS(1342), - [aux_sym__val_number_token3] = ACTIONS(1342), - [aux_sym__val_number_token4] = ACTIONS(1342), - [aux_sym__val_number_token5] = ACTIONS(1342), - [aux_sym__val_number_token6] = ACTIONS(1342), - [anon_sym_0b] = ACTIONS(1342), - [anon_sym_0o] = ACTIONS(1342), - [anon_sym_0x] = ACTIONS(1342), - [sym_val_date] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [sym__str_single_quotes] = ACTIONS(1342), - [sym__str_back_ticks] = ACTIONS(1342), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1342), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1342), - [anon_sym_CARET] = ACTIONS(1342), - [anon_sym_POUND] = ACTIONS(113), - }, - [2388] = { - [sym_comment] = STATE(2388), - [ts_builtin_sym_end] = ACTIONS(1348), - [anon_sym_export] = ACTIONS(1346), - [anon_sym_alias] = ACTIONS(1346), - [anon_sym_let] = ACTIONS(1346), - [anon_sym_let_DASHenv] = ACTIONS(1346), - [anon_sym_mut] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_SEMI] = ACTIONS(1346), - [sym_cmd_identifier] = ACTIONS(1346), - [anon_sym_LF] = ACTIONS(1348), - [anon_sym_def] = ACTIONS(1346), - [anon_sym_export_DASHenv] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1346), - [anon_sym_module] = ACTIONS(1346), - [anon_sym_use] = ACTIONS(1346), - [anon_sym_LBRACK] = ACTIONS(1346), - [anon_sym_LPAREN] = ACTIONS(1346), - [anon_sym_DOLLAR] = ACTIONS(1346), - [anon_sym_error] = ACTIONS(1346), - [anon_sym_DASH_DASH] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_loop] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_match] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_DOT_DOT] = ACTIONS(1346), - [anon_sym_try] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_source] = ACTIONS(1346), - [anon_sym_source_DASHenv] = ACTIONS(1346), - [anon_sym_register] = ACTIONS(1346), - [anon_sym_hide] = ACTIONS(1346), - [anon_sym_hide_DASHenv] = ACTIONS(1346), - [anon_sym_overlay] = ACTIONS(1346), - [anon_sym_as] = ACTIONS(1346), - [anon_sym_where] = ACTIONS(1346), - [anon_sym_not] = ACTIONS(1346), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1346), - [anon_sym_DOT_DOT_LT] = ACTIONS(1346), - [anon_sym_null] = ACTIONS(1346), - [anon_sym_true] = ACTIONS(1346), - [anon_sym_false] = ACTIONS(1346), - [aux_sym__val_number_decimal_token1] = ACTIONS(1346), - [aux_sym__val_number_decimal_token2] = ACTIONS(1346), - [anon_sym_DOT2] = ACTIONS(1346), - [aux_sym__val_number_decimal_token3] = ACTIONS(1346), - [aux_sym__val_number_token1] = ACTIONS(1346), - [aux_sym__val_number_token2] = ACTIONS(1346), - [aux_sym__val_number_token3] = ACTIONS(1346), - [aux_sym__val_number_token4] = ACTIONS(1346), - [aux_sym__val_number_token5] = ACTIONS(1346), - [aux_sym__val_number_token6] = ACTIONS(1346), - [anon_sym_0b] = ACTIONS(1346), - [anon_sym_0o] = ACTIONS(1346), - [anon_sym_0x] = ACTIONS(1346), - [sym_val_date] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym__str_single_quotes] = ACTIONS(1346), - [sym__str_back_ticks] = ACTIONS(1346), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1346), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_POUND] = ACTIONS(113), - }, - [2389] = { - [sym_comment] = STATE(2389), - [ts_builtin_sym_end] = ACTIONS(1364), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_alias] = ACTIONS(1362), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_let_DASHenv] = ACTIONS(1362), - [anon_sym_mut] = ACTIONS(1362), - [anon_sym_const] = ACTIONS(1362), - [anon_sym_SEMI] = ACTIONS(1362), - [sym_cmd_identifier] = ACTIONS(1362), - [anon_sym_LF] = ACTIONS(1364), - [anon_sym_def] = ACTIONS(1362), - [anon_sym_export_DASHenv] = ACTIONS(1362), - [anon_sym_extern] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_use] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1362), - [anon_sym_LPAREN] = ACTIONS(1362), - [anon_sym_DOLLAR] = ACTIONS(1362), - [anon_sym_error] = ACTIONS(1362), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_break] = ACTIONS(1362), - [anon_sym_continue] = ACTIONS(1362), - [anon_sym_for] = ACTIONS(1362), - [anon_sym_loop] = ACTIONS(1362), - [anon_sym_while] = ACTIONS(1362), - [anon_sym_do] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1362), - [anon_sym_match] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_DOT_DOT] = ACTIONS(1362), - [anon_sym_try] = ACTIONS(1362), - [anon_sym_return] = ACTIONS(1362), - [anon_sym_source] = ACTIONS(1362), - [anon_sym_source_DASHenv] = ACTIONS(1362), - [anon_sym_register] = ACTIONS(1362), - [anon_sym_hide] = ACTIONS(1362), - [anon_sym_hide_DASHenv] = ACTIONS(1362), - [anon_sym_overlay] = ACTIONS(1362), - [anon_sym_as] = ACTIONS(1362), - [anon_sym_where] = ACTIONS(1362), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1362), - [anon_sym_DOT_DOT_LT] = ACTIONS(1362), - [anon_sym_null] = ACTIONS(1362), - [anon_sym_true] = ACTIONS(1362), - [anon_sym_false] = ACTIONS(1362), - [aux_sym__val_number_decimal_token1] = ACTIONS(1362), - [aux_sym__val_number_decimal_token2] = ACTIONS(1362), - [anon_sym_DOT2] = ACTIONS(1362), - [aux_sym__val_number_decimal_token3] = ACTIONS(1362), - [aux_sym__val_number_token1] = ACTIONS(1362), - [aux_sym__val_number_token2] = ACTIONS(1362), - [aux_sym__val_number_token3] = ACTIONS(1362), - [aux_sym__val_number_token4] = ACTIONS(1362), - [aux_sym__val_number_token5] = ACTIONS(1362), - [aux_sym__val_number_token6] = ACTIONS(1362), - [anon_sym_0b] = ACTIONS(1362), - [anon_sym_0o] = ACTIONS(1362), - [anon_sym_0x] = ACTIONS(1362), - [sym_val_date] = ACTIONS(1362), - [anon_sym_DQUOTE] = ACTIONS(1362), - [sym__str_single_quotes] = ACTIONS(1362), - [sym__str_back_ticks] = ACTIONS(1362), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1362), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1362), - [anon_sym_CARET] = ACTIONS(1362), + [2579] = { + [sym_comment] = STATE(2579), + [anon_sym_export] = ACTIONS(6262), + [anon_sym_alias] = ACTIONS(6262), + [anon_sym_let] = ACTIONS(6262), + [anon_sym_let_DASHenv] = ACTIONS(6262), + [anon_sym_mut] = ACTIONS(6262), + [anon_sym_const] = ACTIONS(6262), + [anon_sym_SEMI] = ACTIONS(6262), + [sym_cmd_identifier] = ACTIONS(6262), + [anon_sym_LF] = ACTIONS(6547), + [anon_sym_def] = ACTIONS(6262), + [anon_sym_export_DASHenv] = ACTIONS(6262), + [anon_sym_extern] = ACTIONS(6262), + [anon_sym_module] = ACTIONS(6262), + [anon_sym_use] = ACTIONS(6262), + [anon_sym_LBRACK] = ACTIONS(6262), + [anon_sym_LPAREN] = ACTIONS(6262), + [anon_sym_DOLLAR] = ACTIONS(6262), + [anon_sym_error] = ACTIONS(6262), + [anon_sym_DASH] = ACTIONS(6262), + [anon_sym_break] = ACTIONS(6262), + [anon_sym_continue] = ACTIONS(6262), + [anon_sym_for] = ACTIONS(6262), + [anon_sym_loop] = ACTIONS(6262), + [anon_sym_while] = ACTIONS(6262), + [anon_sym_do] = ACTIONS(6262), + [anon_sym_if] = ACTIONS(6262), + [anon_sym_match] = ACTIONS(6262), + [anon_sym_LBRACE] = ACTIONS(6262), + [anon_sym_DOT_DOT] = ACTIONS(6262), + [anon_sym_try] = ACTIONS(6262), + [anon_sym_return] = ACTIONS(6262), + [anon_sym_source] = ACTIONS(6262), + [anon_sym_source_DASHenv] = ACTIONS(6262), + [anon_sym_register] = ACTIONS(6262), + [anon_sym_hide] = ACTIONS(6262), + [anon_sym_hide_DASHenv] = ACTIONS(6262), + [anon_sym_overlay] = ACTIONS(6262), + [anon_sym_where] = ACTIONS(6262), + [anon_sym_not] = ACTIONS(6262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6262), + [anon_sym_DOT_DOT_LT] = ACTIONS(6262), + [anon_sym_null] = ACTIONS(6262), + [anon_sym_true] = ACTIONS(6262), + [anon_sym_false] = ACTIONS(6262), + [aux_sym__val_number_decimal_token1] = ACTIONS(6262), + [aux_sym__val_number_decimal_token2] = ACTIONS(6262), + [anon_sym_DOT2] = ACTIONS(6262), + [aux_sym__val_number_decimal_token3] = ACTIONS(6262), + [aux_sym__val_number_token1] = ACTIONS(6262), + [aux_sym__val_number_token2] = ACTIONS(6262), + [aux_sym__val_number_token3] = ACTIONS(6262), + [aux_sym__val_number_token4] = ACTIONS(6262), + [aux_sym__val_number_token5] = ACTIONS(6262), + [aux_sym__val_number_token6] = ACTIONS(6262), + [anon_sym_0b] = ACTIONS(6262), + [anon_sym_0o] = ACTIONS(6262), + [anon_sym_0x] = ACTIONS(6262), + [sym_val_date] = ACTIONS(6262), + [anon_sym_DQUOTE] = ACTIONS(6262), + [sym__str_single_quotes] = ACTIONS(6262), + [sym__str_back_ticks] = ACTIONS(6262), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6262), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6262), + [anon_sym_CARET] = ACTIONS(6262), [anon_sym_POUND] = ACTIONS(113), }, - [2390] = { - [sym_comment] = STATE(2390), - [anon_sym_LBRACK] = ACTIONS(1196), - [anon_sym_COMMA] = ACTIONS(1196), - [anon_sym_RBRACK] = ACTIONS(1196), - [anon_sym_LPAREN] = ACTIONS(1196), - [anon_sym_DOLLAR] = ACTIONS(1196), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_in] = ACTIONS(1198), - [anon_sym_LBRACE] = ACTIONS(1196), - [anon_sym_DOT_DOT] = ACTIONS(1194), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_STAR_STAR] = ACTIONS(1366), - [anon_sym_PLUS_PLUS] = ACTIONS(1366), - [anon_sym_SLASH] = ACTIONS(1198), - [anon_sym_mod] = ACTIONS(1366), - [anon_sym_SLASH_SLASH] = ACTIONS(1366), - [anon_sym_PLUS] = ACTIONS(1200), - [anon_sym_bit_DASHshl] = ACTIONS(1366), - [anon_sym_bit_DASHshr] = ACTIONS(1366), - [anon_sym_EQ_EQ] = ACTIONS(1366), - [anon_sym_BANG_EQ] = ACTIONS(1366), - [anon_sym_LT2] = ACTIONS(1198), - [anon_sym_LT_EQ] = ACTIONS(1366), - [anon_sym_GT_EQ] = ACTIONS(1366), - [anon_sym_not_DASHin] = ACTIONS(1366), - [anon_sym_starts_DASHwith] = ACTIONS(1366), - [anon_sym_ends_DASHwith] = ACTIONS(1366), - [anon_sym_EQ_TILDE] = ACTIONS(1366), - [anon_sym_BANG_TILDE] = ACTIONS(1366), - [anon_sym_bit_DASHand] = ACTIONS(1366), - [anon_sym_bit_DASHxor] = ACTIONS(1366), - [anon_sym_bit_DASHor] = ACTIONS(1366), - [anon_sym_and] = ACTIONS(1366), - [anon_sym_xor] = ACTIONS(1366), - [anon_sym_or] = ACTIONS(1366), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1196), - [anon_sym_DOT_DOT_LT] = ACTIONS(1196), - [anon_sym_null] = ACTIONS(1196), - [anon_sym_true] = ACTIONS(1196), - [anon_sym_false] = ACTIONS(1196), - [aux_sym__val_number_decimal_token1] = ACTIONS(1194), - [aux_sym__val_number_decimal_token2] = ACTIONS(1196), - [anon_sym_DOT2] = ACTIONS(1194), - [aux_sym__val_number_decimal_token3] = ACTIONS(1196), - [aux_sym__val_number_token1] = ACTIONS(1196), - [aux_sym__val_number_token2] = ACTIONS(1196), - [aux_sym__val_number_token3] = ACTIONS(1196), - [aux_sym__val_number_token4] = ACTIONS(1196), - [aux_sym__val_number_token5] = ACTIONS(1196), - [aux_sym__val_number_token6] = ACTIONS(1196), - [anon_sym_0b] = ACTIONS(1194), - [anon_sym_0o] = ACTIONS(1194), - [anon_sym_0x] = ACTIONS(1194), - [sym_val_date] = ACTIONS(1196), - [anon_sym_DQUOTE] = ACTIONS(1196), - [sym__str_single_quotes] = ACTIONS(1196), - [sym__str_back_ticks] = ACTIONS(1196), - [anon_sym_err_GT] = ACTIONS(1196), - [anon_sym_out_GT] = ACTIONS(1196), - [anon_sym_e_GT] = ACTIONS(1196), - [anon_sym_o_GT] = ACTIONS(1196), - [anon_sym_err_PLUSout_GT] = ACTIONS(1196), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1196), - [anon_sym_o_PLUSe_GT] = ACTIONS(1196), - [anon_sym_e_PLUSo_GT] = ACTIONS(1196), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1194), - [anon_sym_POUND] = ACTIONS(3), - }, - [2391] = { - [sym_comment] = STATE(2391), - [ts_builtin_sym_end] = ACTIONS(1296), - [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), - [anon_sym_SEMI] = ACTIONS(1294), - [sym_cmd_identifier] = ACTIONS(1294), - [anon_sym_LF] = 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(1294), - [anon_sym_LPAREN] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_error] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_DASH] = 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(1294), - [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_register] = 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(1294), - [anon_sym_not] = ACTIONS(1294), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1294), - [anon_sym_DOT_DOT_LT] = ACTIONS(1294), - [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(1294), - [anon_sym_DOT2] = ACTIONS(1294), - [aux_sym__val_number_decimal_token3] = ACTIONS(1294), - [aux_sym__val_number_token1] = ACTIONS(1294), - [aux_sym__val_number_token2] = ACTIONS(1294), - [aux_sym__val_number_token3] = ACTIONS(1294), - [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(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym__str_single_quotes] = ACTIONS(1294), - [sym__str_back_ticks] = ACTIONS(1294), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1294), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1294), - [anon_sym_CARET] = ACTIONS(1294), + [2580] = { + [sym_comment] = STATE(2580), + [anon_sym_SEMI] = ACTIONS(1076), + [anon_sym_LF] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(1076), + [anon_sym_RPAREN] = ACTIONS(1076), + [anon_sym_PIPE] = ACTIONS(1076), + [anon_sym_DOLLAR] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_DASH_DASH] = ACTIONS(1076), + [anon_sym_DASH] = ACTIONS(1076), + [anon_sym_in] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1076), + [anon_sym_RBRACE] = ACTIONS(1076), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_STAR] = ACTIONS(1076), + [anon_sym_STAR_STAR] = ACTIONS(1076), + [anon_sym_PLUS_PLUS] = ACTIONS(1076), + [anon_sym_SLASH] = ACTIONS(1076), + [anon_sym_mod] = ACTIONS(1076), + [anon_sym_SLASH_SLASH] = ACTIONS(1076), + [anon_sym_PLUS] = ACTIONS(1076), + [anon_sym_bit_DASHshl] = ACTIONS(1076), + [anon_sym_bit_DASHshr] = ACTIONS(1076), + [anon_sym_EQ_EQ] = ACTIONS(1076), + [anon_sym_BANG_EQ] = ACTIONS(1076), + [anon_sym_LT2] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1076), + [anon_sym_GT_EQ] = ACTIONS(1076), + [anon_sym_not_DASHin] = ACTIONS(1076), + [anon_sym_starts_DASHwith] = ACTIONS(1076), + [anon_sym_ends_DASHwith] = ACTIONS(1076), + [anon_sym_EQ_TILDE] = ACTIONS(1076), + [anon_sym_BANG_TILDE] = ACTIONS(1076), + [anon_sym_bit_DASHand] = ACTIONS(1076), + [anon_sym_bit_DASHxor] = ACTIONS(1076), + [anon_sym_bit_DASHor] = ACTIONS(1076), + [anon_sym_and] = ACTIONS(1076), + [anon_sym_xor] = ACTIONS(1076), + [anon_sym_or] = ACTIONS(1076), + [anon_sym_not] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1076), + [anon_sym_DOT_DOT_LT] = ACTIONS(1076), + [anon_sym_null] = ACTIONS(1076), + [anon_sym_true] = ACTIONS(1076), + [anon_sym_false] = ACTIONS(1076), + [aux_sym__val_number_decimal_token1] = ACTIONS(1076), + [aux_sym__val_number_decimal_token2] = ACTIONS(1076), + [anon_sym_DOT2] = ACTIONS(1076), + [aux_sym__val_number_decimal_token3] = ACTIONS(1076), + [aux_sym__val_number_token1] = ACTIONS(1076), + [aux_sym__val_number_token2] = ACTIONS(1076), + [aux_sym__val_number_token3] = ACTIONS(1076), + [aux_sym__val_number_token4] = ACTIONS(1076), + [aux_sym__val_number_token5] = ACTIONS(1076), + [aux_sym__val_number_token6] = ACTIONS(1076), + [anon_sym_0b] = ACTIONS(1076), + [anon_sym_0o] = ACTIONS(1076), + [anon_sym_0x] = ACTIONS(1076), + [sym_val_date] = ACTIONS(1076), + [anon_sym_DQUOTE] = ACTIONS(1076), + [sym__str_single_quotes] = ACTIONS(1076), + [sym__str_back_ticks] = ACTIONS(1076), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1076), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1076), [anon_sym_POUND] = ACTIONS(113), }, - [2392] = { - [sym_comment] = STATE(2392), - [ts_builtin_sym_end] = ACTIONS(1296), - [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), - [anon_sym_SEMI] = ACTIONS(1294), - [sym_cmd_identifier] = ACTIONS(1294), - [anon_sym_LF] = 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(1294), - [anon_sym_LPAREN] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_error] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_DASH] = 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(1294), - [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_register] = 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(1294), - [anon_sym_not] = ACTIONS(1294), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1294), - [anon_sym_DOT_DOT_LT] = ACTIONS(1294), - [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(1294), - [anon_sym_DOT2] = ACTIONS(1294), - [aux_sym__val_number_decimal_token3] = ACTIONS(1294), - [aux_sym__val_number_token1] = ACTIONS(1294), - [aux_sym__val_number_token2] = ACTIONS(1294), - [aux_sym__val_number_token3] = ACTIONS(1294), - [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(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym__str_single_quotes] = ACTIONS(1294), - [sym__str_back_ticks] = ACTIONS(1294), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1294), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1294), - [anon_sym_CARET] = ACTIONS(1294), + [2581] = { + [sym_comment] = STATE(2581), + [anon_sym_SEMI] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_RPAREN] = ACTIONS(1171), + [anon_sym_PIPE] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, - [2393] = { - [sym__match_pattern_record_variable] = STATE(3555), - [sym_expr_parenthesized] = STATE(10769), - [sym_val_variable] = STATE(3513), - [sym__var] = STATE(3214), - [sym_val_number] = STATE(10769), - [sym__val_number_decimal] = STATE(5414), - [sym__val_number] = STATE(5463), - [sym_val_string] = STATE(10769), - [sym__str_double_quotes] = STATE(7019), - [sym_record_entry] = STATE(3555), - [sym__record_key] = STATE(10918), - [sym_comment] = STATE(2393), - [aux_sym__match_pattern_record_repeat1] = STATE(2447), - [anon_sym_export] = ACTIONS(6091), - [anon_sym_alias] = ACTIONS(6091), - [anon_sym_let] = ACTIONS(6091), - [anon_sym_let_DASHenv] = ACTIONS(6091), - [anon_sym_mut] = ACTIONS(6091), - [anon_sym_const] = ACTIONS(6091), - [sym_cmd_identifier] = ACTIONS(6091), - [anon_sym_def] = ACTIONS(6091), - [anon_sym_export_DASHenv] = ACTIONS(6091), - [anon_sym_extern] = ACTIONS(6091), - [anon_sym_module] = ACTIONS(6091), - [anon_sym_use] = ACTIONS(6091), - [anon_sym_LPAREN] = ACTIONS(6093), - [anon_sym_DOLLAR] = ACTIONS(6095), - [anon_sym_error] = ACTIONS(6091), - [anon_sym_list] = ACTIONS(6091), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_break] = ACTIONS(6091), - [anon_sym_continue] = ACTIONS(6091), - [anon_sym_for] = ACTIONS(6091), - [anon_sym_in] = ACTIONS(6091), - [anon_sym_loop] = ACTIONS(6091), - [anon_sym_make] = ACTIONS(6091), - [anon_sym_while] = ACTIONS(6091), - [anon_sym_do] = ACTIONS(6091), - [anon_sym_if] = ACTIONS(6091), - [anon_sym_else] = ACTIONS(6091), - [anon_sym_match] = ACTIONS(6091), - [anon_sym_RBRACE] = ACTIONS(6097), - [anon_sym_try] = ACTIONS(6091), - [anon_sym_catch] = ACTIONS(6091), - [anon_sym_return] = ACTIONS(6091), - [anon_sym_source] = ACTIONS(6091), - [anon_sym_source_DASHenv] = ACTIONS(6091), - [anon_sym_register] = ACTIONS(6091), - [anon_sym_hide] = ACTIONS(6091), - [anon_sym_hide_DASHenv] = ACTIONS(6091), - [anon_sym_overlay] = ACTIONS(6091), - [anon_sym_new] = ACTIONS(6091), - [anon_sym_as] = ACTIONS(6091), - [anon_sym_PLUS] = ACTIONS(189), - [aux_sym__val_number_decimal_token1] = ACTIONS(6099), - [aux_sym__val_number_decimal_token2] = ACTIONS(6101), - [anon_sym_DOT2] = ACTIONS(6103), - [aux_sym__val_number_decimal_token3] = ACTIONS(6105), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(6107), - [aux_sym__val_number_token5] = ACTIONS(2714), - [aux_sym__val_number_token6] = ACTIONS(6107), - [anon_sym_DQUOTE] = ACTIONS(2724), - [sym__str_single_quotes] = ACTIONS(2726), - [sym__str_back_ticks] = ACTIONS(2726), - [aux_sym__record_key_token2] = ACTIONS(225), - [anon_sym_POUND] = ACTIONS(3), - }, - [2394] = { - [sym_comment] = STATE(2394), - [anon_sym_export] = ACTIONS(1063), - [anon_sym_alias] = ACTIONS(1063), - [anon_sym_let] = ACTIONS(1063), - [anon_sym_let_DASHenv] = ACTIONS(1063), - [anon_sym_mut] = ACTIONS(1063), - [anon_sym_const] = ACTIONS(1063), - [anon_sym_SEMI] = ACTIONS(1063), - [sym_cmd_identifier] = ACTIONS(1063), - [anon_sym_LF] = ACTIONS(1065), - [anon_sym_def] = ACTIONS(1063), - [anon_sym_export_DASHenv] = ACTIONS(1063), - [anon_sym_extern] = ACTIONS(1063), - [anon_sym_module] = ACTIONS(1063), - [anon_sym_use] = ACTIONS(1063), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_RPAREN] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_error] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_break] = ACTIONS(1063), - [anon_sym_continue] = ACTIONS(1063), - [anon_sym_for] = ACTIONS(1063), - [anon_sym_loop] = ACTIONS(1063), - [anon_sym_while] = ACTIONS(1063), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_if] = ACTIONS(1063), - [anon_sym_match] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_RBRACE] = ACTIONS(1063), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1063), - [anon_sym_return] = ACTIONS(1063), - [anon_sym_source] = ACTIONS(1063), - [anon_sym_source_DASHenv] = ACTIONS(1063), - [anon_sym_register] = ACTIONS(1063), - [anon_sym_hide] = ACTIONS(1063), - [anon_sym_hide_DASHenv] = ACTIONS(1063), - [anon_sym_overlay] = ACTIONS(1063), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_where] = ACTIONS(1063), - [anon_sym_not] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1063), - [anon_sym_DOT_DOT_LT] = ACTIONS(1063), - [anon_sym_null] = ACTIONS(1063), - [anon_sym_true] = ACTIONS(1063), - [anon_sym_false] = ACTIONS(1063), - [aux_sym__val_number_decimal_token1] = ACTIONS(1063), - [aux_sym__val_number_decimal_token2] = ACTIONS(1063), - [anon_sym_DOT2] = ACTIONS(1063), - [aux_sym__val_number_decimal_token3] = ACTIONS(1063), - [aux_sym__val_number_token1] = ACTIONS(1063), - [aux_sym__val_number_token2] = ACTIONS(1063), - [aux_sym__val_number_token3] = ACTIONS(1063), - [aux_sym__val_number_token4] = ACTIONS(1063), - [aux_sym__val_number_token5] = ACTIONS(1063), - [aux_sym__val_number_token6] = ACTIONS(1063), - [anon_sym_0b] = ACTIONS(1063), - [anon_sym_0o] = ACTIONS(1063), - [anon_sym_0x] = ACTIONS(1063), - [sym_val_date] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [sym__str_single_quotes] = ACTIONS(1063), - [sym__str_back_ticks] = ACTIONS(1063), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1063), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1063), - [anon_sym_CARET] = ACTIONS(1063), + [2582] = { + [sym_comment] = STATE(2582), + [anon_sym_SEMI] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_RPAREN] = ACTIONS(1171), + [anon_sym_PIPE] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, - [2395] = { - [sym_comment] = STATE(2395), - [ts_builtin_sym_end] = ACTIONS(1310), - [anon_sym_export] = ACTIONS(1308), - [anon_sym_alias] = ACTIONS(1308), - [anon_sym_let] = ACTIONS(1308), - [anon_sym_let_DASHenv] = ACTIONS(1308), - [anon_sym_mut] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [sym_cmd_identifier] = ACTIONS(1308), - [anon_sym_LF] = ACTIONS(1310), - [anon_sym_def] = ACTIONS(1308), - [anon_sym_export_DASHenv] = ACTIONS(1308), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym_module] = ACTIONS(1308), - [anon_sym_use] = ACTIONS(1308), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_LPAREN] = ACTIONS(1308), - [anon_sym_DOLLAR] = ACTIONS(1308), - [anon_sym_error] = ACTIONS(1308), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_break] = ACTIONS(1308), - [anon_sym_continue] = ACTIONS(1308), - [anon_sym_for] = ACTIONS(1308), - [anon_sym_loop] = ACTIONS(1308), - [anon_sym_while] = ACTIONS(1308), - [anon_sym_do] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_match] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_DOT_DOT] = ACTIONS(1308), - [anon_sym_try] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1308), - [anon_sym_source] = ACTIONS(1308), - [anon_sym_source_DASHenv] = ACTIONS(1308), - [anon_sym_register] = ACTIONS(1308), - [anon_sym_hide] = ACTIONS(1308), - [anon_sym_hide_DASHenv] = ACTIONS(1308), - [anon_sym_overlay] = ACTIONS(1308), - [anon_sym_as] = ACTIONS(1308), - [anon_sym_where] = ACTIONS(1308), - [anon_sym_not] = ACTIONS(1308), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1308), - [anon_sym_DOT_DOT_LT] = ACTIONS(1308), - [anon_sym_null] = ACTIONS(1308), - [anon_sym_true] = ACTIONS(1308), - [anon_sym_false] = ACTIONS(1308), - [aux_sym__val_number_decimal_token1] = ACTIONS(1308), - [aux_sym__val_number_decimal_token2] = ACTIONS(1308), - [anon_sym_DOT2] = ACTIONS(1308), - [aux_sym__val_number_decimal_token3] = ACTIONS(1308), - [aux_sym__val_number_token1] = ACTIONS(1308), - [aux_sym__val_number_token2] = ACTIONS(1308), - [aux_sym__val_number_token3] = ACTIONS(1308), - [aux_sym__val_number_token4] = ACTIONS(1308), - [aux_sym__val_number_token5] = ACTIONS(1308), - [aux_sym__val_number_token6] = ACTIONS(1308), - [anon_sym_0b] = ACTIONS(1308), - [anon_sym_0o] = ACTIONS(1308), - [anon_sym_0x] = ACTIONS(1308), - [sym_val_date] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym__str_single_quotes] = ACTIONS(1308), - [sym__str_back_ticks] = ACTIONS(1308), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1308), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1308), - [anon_sym_CARET] = ACTIONS(1308), + [2583] = { + [sym_comment] = STATE(2583), + [anon_sym_SEMI] = ACTIONS(1179), + [anon_sym_LF] = ACTIONS(1181), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_RPAREN] = ACTIONS(1179), + [anon_sym_PIPE] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(6441), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(6443), + [anon_sym_in] = ACTIONS(6445), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(6447), + [anon_sym_STAR_STAR] = ACTIONS(6449), + [anon_sym_PLUS_PLUS] = ACTIONS(6449), + [anon_sym_SLASH] = ACTIONS(6447), + [anon_sym_mod] = ACTIONS(6447), + [anon_sym_SLASH_SLASH] = ACTIONS(6447), + [anon_sym_PLUS] = ACTIONS(6443), + [anon_sym_bit_DASHshl] = ACTIONS(6451), + [anon_sym_bit_DASHshr] = ACTIONS(6451), + [anon_sym_EQ_EQ] = ACTIONS(6441), + [anon_sym_BANG_EQ] = ACTIONS(6441), + [anon_sym_LT2] = ACTIONS(6441), + [anon_sym_LT_EQ] = ACTIONS(6441), + [anon_sym_GT_EQ] = ACTIONS(6441), + [anon_sym_not_DASHin] = ACTIONS(6445), + [anon_sym_starts_DASHwith] = ACTIONS(6445), + [anon_sym_ends_DASHwith] = ACTIONS(6445), + [anon_sym_EQ_TILDE] = ACTIONS(6453), + [anon_sym_BANG_TILDE] = ACTIONS(6453), + [anon_sym_bit_DASHand] = ACTIONS(6455), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_not] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1179), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, - [2396] = { - [sym_comment] = STATE(2396), - [ts_builtin_sym_end] = ACTIONS(1314), - [anon_sym_export] = ACTIONS(1312), - [anon_sym_alias] = ACTIONS(1312), - [anon_sym_let] = ACTIONS(1312), - [anon_sym_let_DASHenv] = ACTIONS(1312), - [anon_sym_mut] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [sym_cmd_identifier] = ACTIONS(1312), - [anon_sym_LF] = ACTIONS(1314), - [anon_sym_def] = ACTIONS(1312), - [anon_sym_export_DASHenv] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym_module] = ACTIONS(1312), - [anon_sym_use] = ACTIONS(1312), - [anon_sym_LBRACK] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1312), - [anon_sym_DOLLAR] = ACTIONS(1312), - [anon_sym_error] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_loop] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_match] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_DOT_DOT] = ACTIONS(1312), - [anon_sym_try] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_source] = ACTIONS(1312), - [anon_sym_source_DASHenv] = ACTIONS(1312), - [anon_sym_register] = ACTIONS(1312), - [anon_sym_hide] = ACTIONS(1312), - [anon_sym_hide_DASHenv] = ACTIONS(1312), - [anon_sym_overlay] = ACTIONS(1312), - [anon_sym_as] = ACTIONS(1312), - [anon_sym_where] = ACTIONS(1312), - [anon_sym_not] = ACTIONS(1312), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1312), - [anon_sym_DOT_DOT_LT] = ACTIONS(1312), - [anon_sym_null] = ACTIONS(1312), - [anon_sym_true] = ACTIONS(1312), - [anon_sym_false] = ACTIONS(1312), - [aux_sym__val_number_decimal_token1] = ACTIONS(1312), - [aux_sym__val_number_decimal_token2] = ACTIONS(1312), - [anon_sym_DOT2] = ACTIONS(1312), - [aux_sym__val_number_decimal_token3] = ACTIONS(1312), - [aux_sym__val_number_token1] = ACTIONS(1312), - [aux_sym__val_number_token2] = ACTIONS(1312), - [aux_sym__val_number_token3] = ACTIONS(1312), - [aux_sym__val_number_token4] = ACTIONS(1312), - [aux_sym__val_number_token5] = ACTIONS(1312), - [aux_sym__val_number_token6] = ACTIONS(1312), - [anon_sym_0b] = ACTIONS(1312), - [anon_sym_0o] = ACTIONS(1312), - [anon_sym_0x] = ACTIONS(1312), - [sym_val_date] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym__str_single_quotes] = ACTIONS(1312), - [sym__str_back_ticks] = ACTIONS(1312), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1312), - [anon_sym_CARET] = ACTIONS(1312), + [2584] = { + [sym_comment] = STATE(2584), + [ts_builtin_sym_end] = ACTIONS(940), + [anon_sym_SEMI] = ACTIONS(938), + [anon_sym_LF] = ACTIONS(940), + [anon_sym_LBRACK] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(938), + [anon_sym_PIPE] = ACTIONS(938), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_in] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_STAR_STAR] = ACTIONS(938), + [anon_sym_PLUS_PLUS] = ACTIONS(938), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(938), + [anon_sym_SLASH_SLASH] = ACTIONS(938), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_bit_DASHshl] = ACTIONS(938), + [anon_sym_bit_DASHshr] = ACTIONS(938), + [anon_sym_EQ_EQ] = ACTIONS(938), + [anon_sym_BANG_EQ] = ACTIONS(938), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(938), + [anon_sym_GT_EQ] = ACTIONS(938), + [anon_sym_not_DASHin] = ACTIONS(938), + [anon_sym_starts_DASHwith] = ACTIONS(938), + [anon_sym_ends_DASHwith] = ACTIONS(938), + [anon_sym_EQ_TILDE] = ACTIONS(938), + [anon_sym_BANG_TILDE] = ACTIONS(938), + [anon_sym_bit_DASHand] = ACTIONS(938), + [anon_sym_bit_DASHxor] = ACTIONS(938), + [anon_sym_bit_DASHor] = ACTIONS(938), + [anon_sym_and] = ACTIONS(938), + [anon_sym_xor] = ACTIONS(938), + [anon_sym_or] = ACTIONS(938), + [anon_sym_not] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ] = ACTIONS(938), + [anon_sym_DOT_DOT_LT] = ACTIONS(938), + [anon_sym_null] = ACTIONS(938), + [anon_sym_true] = ACTIONS(938), + [anon_sym_false] = ACTIONS(938), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(938), + [anon_sym_DOT2] = ACTIONS(938), + [aux_sym__val_number_decimal_token3] = ACTIONS(938), + [aux_sym__val_number_token1] = ACTIONS(938), + [aux_sym__val_number_token2] = ACTIONS(938), + [aux_sym__val_number_token3] = ACTIONS(938), + [aux_sym__val_number_token4] = ACTIONS(938), + [aux_sym__val_number_token5] = ACTIONS(938), + [aux_sym__val_number_token6] = ACTIONS(938), + [anon_sym_0b] = ACTIONS(938), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym__str_single_quotes] = ACTIONS(938), + [sym__str_back_ticks] = ACTIONS(938), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(938), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(938), + [aux_sym_unquoted_token5] = ACTIONS(3966), [anon_sym_POUND] = ACTIONS(113), }, - [2397] = { - [sym_comment] = STATE(2397), - [ts_builtin_sym_end] = ACTIONS(1188), - [anon_sym_export] = ACTIONS(1186), - [anon_sym_alias] = ACTIONS(1186), - [anon_sym_let] = ACTIONS(1186), - [anon_sym_let_DASHenv] = ACTIONS(1186), - [anon_sym_mut] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1186), - [sym_cmd_identifier] = ACTIONS(1186), - [anon_sym_LF] = ACTIONS(1188), - [anon_sym_def] = ACTIONS(1186), - [anon_sym_export_DASHenv] = ACTIONS(1186), - [anon_sym_extern] = ACTIONS(1186), - [anon_sym_module] = ACTIONS(1186), - [anon_sym_use] = ACTIONS(1186), - [anon_sym_LBRACK] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(1186), - [anon_sym_DOLLAR] = ACTIONS(1186), - [anon_sym_error] = ACTIONS(1186), - [anon_sym_DASH_DASH] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1186), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1186), - [anon_sym_loop] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_do] = ACTIONS(1186), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_match] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_DOT_DOT] = ACTIONS(1186), - [anon_sym_try] = ACTIONS(1186), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_source] = ACTIONS(1186), - [anon_sym_source_DASHenv] = ACTIONS(1186), - [anon_sym_register] = ACTIONS(1186), - [anon_sym_hide] = ACTIONS(1186), - [anon_sym_hide_DASHenv] = ACTIONS(1186), - [anon_sym_overlay] = ACTIONS(1186), - [anon_sym_as] = ACTIONS(1186), - [anon_sym_where] = ACTIONS(1186), - [anon_sym_not] = ACTIONS(1186), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1186), - [anon_sym_DOT_DOT_LT] = ACTIONS(1186), - [anon_sym_null] = ACTIONS(1186), - [anon_sym_true] = ACTIONS(1186), - [anon_sym_false] = ACTIONS(1186), - [aux_sym__val_number_decimal_token1] = ACTIONS(1186), - [aux_sym__val_number_decimal_token2] = ACTIONS(1186), - [anon_sym_DOT2] = ACTIONS(1186), - [aux_sym__val_number_decimal_token3] = ACTIONS(1186), - [aux_sym__val_number_token1] = ACTIONS(1186), - [aux_sym__val_number_token2] = ACTIONS(1186), - [aux_sym__val_number_token3] = ACTIONS(1186), - [aux_sym__val_number_token4] = ACTIONS(1186), - [aux_sym__val_number_token5] = ACTIONS(1186), - [aux_sym__val_number_token6] = ACTIONS(1186), - [anon_sym_0b] = ACTIONS(1186), - [anon_sym_0o] = ACTIONS(1186), - [anon_sym_0x] = ACTIONS(1186), - [sym_val_date] = ACTIONS(1186), - [anon_sym_DQUOTE] = ACTIONS(1186), - [sym__str_single_quotes] = ACTIONS(1186), - [sym__str_back_ticks] = ACTIONS(1186), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1186), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1186), - [anon_sym_CARET] = ACTIONS(1186), + [2585] = { + [sym_comment] = STATE(2585), + [anon_sym_SEMI] = ACTIONS(1068), + [anon_sym_LF] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1068), + [anon_sym_LPAREN] = ACTIONS(1068), + [anon_sym_RPAREN] = ACTIONS(1068), + [anon_sym_PIPE] = ACTIONS(1068), + [anon_sym_DOLLAR] = ACTIONS(1068), + [anon_sym_GT] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1068), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_in] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_RBRACE] = ACTIONS(1068), + [anon_sym_DOT_DOT] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_STAR_STAR] = ACTIONS(1068), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_SLASH] = ACTIONS(1068), + [anon_sym_mod] = ACTIONS(1068), + [anon_sym_SLASH_SLASH] = ACTIONS(1068), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_bit_DASHshl] = ACTIONS(1068), + [anon_sym_bit_DASHshr] = ACTIONS(1068), + [anon_sym_EQ_EQ] = ACTIONS(1068), + [anon_sym_BANG_EQ] = ACTIONS(1068), + [anon_sym_LT2] = ACTIONS(1068), + [anon_sym_LT_EQ] = ACTIONS(1068), + [anon_sym_GT_EQ] = ACTIONS(1068), + [anon_sym_not_DASHin] = ACTIONS(1068), + [anon_sym_starts_DASHwith] = ACTIONS(1068), + [anon_sym_ends_DASHwith] = ACTIONS(1068), + [anon_sym_EQ_TILDE] = ACTIONS(1068), + [anon_sym_BANG_TILDE] = ACTIONS(1068), + [anon_sym_bit_DASHand] = ACTIONS(1068), + [anon_sym_bit_DASHxor] = ACTIONS(1068), + [anon_sym_bit_DASHor] = ACTIONS(1068), + [anon_sym_and] = ACTIONS(1068), + [anon_sym_xor] = ACTIONS(1068), + [anon_sym_or] = ACTIONS(1068), + [anon_sym_not] = ACTIONS(1068), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1068), + [anon_sym_DOT_DOT_LT] = ACTIONS(1068), + [anon_sym_null] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1068), + [anon_sym_false] = ACTIONS(1068), + [aux_sym__val_number_decimal_token1] = ACTIONS(1068), + [aux_sym__val_number_decimal_token2] = ACTIONS(1068), + [anon_sym_DOT2] = ACTIONS(1068), + [aux_sym__val_number_decimal_token3] = ACTIONS(1068), + [aux_sym__val_number_token1] = ACTIONS(1068), + [aux_sym__val_number_token2] = ACTIONS(1068), + [aux_sym__val_number_token3] = ACTIONS(1068), + [aux_sym__val_number_token4] = ACTIONS(1068), + [aux_sym__val_number_token5] = ACTIONS(1068), + [aux_sym__val_number_token6] = ACTIONS(1068), + [anon_sym_0b] = ACTIONS(1068), + [anon_sym_0o] = ACTIONS(1068), + [anon_sym_0x] = ACTIONS(1068), + [sym_val_date] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(1068), + [sym__str_single_quotes] = ACTIONS(1068), + [sym__str_back_ticks] = ACTIONS(1068), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1068), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1068), [anon_sym_POUND] = ACTIONS(113), }, - [2398] = { - [sym_comment] = STATE(2398), - [anon_sym_export] = ACTIONS(5083), - [anon_sym_alias] = ACTIONS(5083), - [anon_sym_let] = ACTIONS(5083), - [anon_sym_let_DASHenv] = ACTIONS(5083), - [anon_sym_mut] = ACTIONS(5083), - [anon_sym_const] = ACTIONS(5083), - [anon_sym_SEMI] = ACTIONS(5083), - [sym_cmd_identifier] = ACTIONS(5083), - [anon_sym_LF] = ACTIONS(5085), - [anon_sym_def] = ACTIONS(5083), - [anon_sym_export_DASHenv] = ACTIONS(5083), - [anon_sym_extern] = ACTIONS(5083), - [anon_sym_module] = ACTIONS(5083), - [anon_sym_use] = ACTIONS(5083), - [anon_sym_LBRACK] = ACTIONS(5083), - [anon_sym_LPAREN] = ACTIONS(5083), - [anon_sym_RPAREN] = ACTIONS(5083), - [anon_sym_DOLLAR] = ACTIONS(5083), - [anon_sym_error] = ACTIONS(5083), - [anon_sym_DASH] = ACTIONS(5083), - [anon_sym_break] = ACTIONS(5083), - [anon_sym_continue] = ACTIONS(5083), - [anon_sym_for] = ACTIONS(5083), - [anon_sym_loop] = ACTIONS(5083), - [anon_sym_while] = ACTIONS(5083), - [anon_sym_do] = ACTIONS(5083), - [anon_sym_if] = ACTIONS(5083), - [anon_sym_match] = ACTIONS(5083), - [anon_sym_LBRACE] = ACTIONS(5083), - [anon_sym_RBRACE] = ACTIONS(5083), - [anon_sym_DOT_DOT] = ACTIONS(5083), - [anon_sym_try] = ACTIONS(5083), - [anon_sym_return] = ACTIONS(5083), - [anon_sym_source] = ACTIONS(5083), - [anon_sym_source_DASHenv] = ACTIONS(5083), - [anon_sym_register] = ACTIONS(5083), - [anon_sym_hide] = ACTIONS(5083), - [anon_sym_hide_DASHenv] = ACTIONS(5083), - [anon_sym_overlay] = ACTIONS(5083), - [anon_sym_where] = ACTIONS(5083), - [anon_sym_not] = ACTIONS(5083), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5083), - [anon_sym_DOT_DOT_LT] = ACTIONS(5083), - [aux_sym__immediate_decimal_token1] = ACTIONS(6109), - [anon_sym_null] = ACTIONS(5083), - [anon_sym_true] = ACTIONS(5083), - [anon_sym_false] = ACTIONS(5083), - [aux_sym__val_number_decimal_token1] = ACTIONS(5083), - [aux_sym__val_number_decimal_token2] = ACTIONS(5083), - [anon_sym_DOT2] = ACTIONS(5083), - [aux_sym__val_number_decimal_token3] = ACTIONS(5083), - [aux_sym__val_number_token1] = ACTIONS(5083), - [aux_sym__val_number_token2] = ACTIONS(5083), - [aux_sym__val_number_token3] = ACTIONS(5083), - [aux_sym__val_number_token4] = ACTIONS(5083), - [aux_sym__val_number_token5] = ACTIONS(5083), - [aux_sym__val_number_token6] = ACTIONS(5083), - [anon_sym_0b] = ACTIONS(5083), - [anon_sym_0o] = ACTIONS(5083), - [anon_sym_0x] = ACTIONS(5083), - [sym_val_date] = ACTIONS(5083), - [anon_sym_DQUOTE] = ACTIONS(5083), - [sym__str_single_quotes] = ACTIONS(5083), - [sym__str_back_ticks] = ACTIONS(5083), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5083), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5083), - [anon_sym_CARET] = ACTIONS(5083), + [2586] = { + [sym_comment] = STATE(2586), + [anon_sym_SEMI] = ACTIONS(1033), + [anon_sym_LF] = ACTIONS(1035), + [anon_sym_LBRACK] = ACTIONS(1033), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_RPAREN] = ACTIONS(1033), + [anon_sym_PIPE] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1033), + [anon_sym_in] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1033), + [anon_sym_DOT_DOT] = ACTIONS(1033), + [anon_sym_STAR] = ACTIONS(1033), + [anon_sym_STAR_STAR] = ACTIONS(1033), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_SLASH] = ACTIONS(1033), + [anon_sym_mod] = ACTIONS(1033), + [anon_sym_SLASH_SLASH] = ACTIONS(1033), + [anon_sym_PLUS] = ACTIONS(1033), + [anon_sym_bit_DASHshl] = ACTIONS(1033), + [anon_sym_bit_DASHshr] = ACTIONS(1033), + [anon_sym_EQ_EQ] = ACTIONS(1033), + [anon_sym_BANG_EQ] = ACTIONS(1033), + [anon_sym_LT2] = ACTIONS(1033), + [anon_sym_LT_EQ] = ACTIONS(1033), + [anon_sym_GT_EQ] = ACTIONS(1033), + [anon_sym_not_DASHin] = ACTIONS(1033), + [anon_sym_starts_DASHwith] = ACTIONS(1033), + [anon_sym_ends_DASHwith] = ACTIONS(1033), + [anon_sym_EQ_TILDE] = ACTIONS(1033), + [anon_sym_BANG_TILDE] = ACTIONS(1033), + [anon_sym_bit_DASHand] = ACTIONS(1033), + [anon_sym_bit_DASHxor] = ACTIONS(1033), + [anon_sym_bit_DASHor] = ACTIONS(1033), + [anon_sym_and] = ACTIONS(1033), + [anon_sym_xor] = ACTIONS(1033), + [anon_sym_or] = ACTIONS(1033), + [anon_sym_not] = ACTIONS(1033), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1033), + [anon_sym_DOT_DOT_LT] = ACTIONS(1033), + [anon_sym_null] = ACTIONS(1033), + [anon_sym_true] = ACTIONS(1033), + [anon_sym_false] = ACTIONS(1033), + [aux_sym__val_number_decimal_token1] = ACTIONS(1033), + [aux_sym__val_number_decimal_token2] = ACTIONS(1033), + [anon_sym_DOT2] = ACTIONS(1033), + [aux_sym__val_number_decimal_token3] = ACTIONS(1033), + [aux_sym__val_number_token1] = ACTIONS(1033), + [aux_sym__val_number_token2] = ACTIONS(1033), + [aux_sym__val_number_token3] = ACTIONS(1033), + [aux_sym__val_number_token4] = ACTIONS(1033), + [aux_sym__val_number_token5] = ACTIONS(1033), + [aux_sym__val_number_token6] = ACTIONS(1033), + [anon_sym_0b] = ACTIONS(1033), + [anon_sym_0o] = ACTIONS(1033), + [anon_sym_0x] = ACTIONS(1033), + [sym_val_date] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [sym__str_single_quotes] = ACTIONS(1033), + [sym__str_back_ticks] = ACTIONS(1033), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1033), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1033), [anon_sym_POUND] = ACTIONS(113), }, - [2399] = { - [sym_comment] = STATE(2399), - [ts_builtin_sym_end] = ACTIONS(1334), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_alias] = ACTIONS(1332), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_let_DASHenv] = ACTIONS(1332), - [anon_sym_mut] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1332), - [sym_cmd_identifier] = ACTIONS(1332), - [anon_sym_LF] = ACTIONS(1334), - [anon_sym_def] = ACTIONS(1332), - [anon_sym_export_DASHenv] = ACTIONS(1332), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_use] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1332), - [anon_sym_DOLLAR] = ACTIONS(1332), - [anon_sym_error] = ACTIONS(1332), - [anon_sym_DASH_DASH] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_loop] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_do] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_match] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_DOT_DOT] = ACTIONS(1332), - [anon_sym_try] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_source] = ACTIONS(1332), - [anon_sym_source_DASHenv] = ACTIONS(1332), - [anon_sym_register] = ACTIONS(1332), - [anon_sym_hide] = ACTIONS(1332), - [anon_sym_hide_DASHenv] = ACTIONS(1332), - [anon_sym_overlay] = ACTIONS(1332), - [anon_sym_as] = ACTIONS(1332), - [anon_sym_where] = ACTIONS(1332), - [anon_sym_not] = ACTIONS(1332), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1332), - [anon_sym_DOT_DOT_LT] = ACTIONS(1332), - [anon_sym_null] = ACTIONS(1332), - [anon_sym_true] = ACTIONS(1332), - [anon_sym_false] = ACTIONS(1332), - [aux_sym__val_number_decimal_token1] = ACTIONS(1332), - [aux_sym__val_number_decimal_token2] = ACTIONS(1332), - [anon_sym_DOT2] = ACTIONS(1332), - [aux_sym__val_number_decimal_token3] = ACTIONS(1332), - [aux_sym__val_number_token1] = ACTIONS(1332), - [aux_sym__val_number_token2] = ACTIONS(1332), - [aux_sym__val_number_token3] = ACTIONS(1332), - [aux_sym__val_number_token4] = ACTIONS(1332), - [aux_sym__val_number_token5] = ACTIONS(1332), - [aux_sym__val_number_token6] = ACTIONS(1332), - [anon_sym_0b] = ACTIONS(1332), - [anon_sym_0o] = ACTIONS(1332), - [anon_sym_0x] = ACTIONS(1332), - [sym_val_date] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym__str_single_quotes] = ACTIONS(1332), - [sym__str_back_ticks] = ACTIONS(1332), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1332), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1332), - [anon_sym_CARET] = ACTIONS(1332), + [2587] = { + [sym_comment] = STATE(2587), + [anon_sym_SEMI] = ACTIONS(1020), + [anon_sym_LF] = ACTIONS(1022), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1020), + [anon_sym_RPAREN] = ACTIONS(1020), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_GT] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1020), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_in] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_RBRACE] = ACTIONS(1020), + [anon_sym_DOT_DOT] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_STAR_STAR] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1020), + [anon_sym_SLASH] = ACTIONS(1020), + [anon_sym_mod] = ACTIONS(1020), + [anon_sym_SLASH_SLASH] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_bit_DASHshl] = ACTIONS(1020), + [anon_sym_bit_DASHshr] = ACTIONS(1020), + [anon_sym_EQ_EQ] = ACTIONS(1020), + [anon_sym_BANG_EQ] = ACTIONS(1020), + [anon_sym_LT2] = ACTIONS(1020), + [anon_sym_LT_EQ] = ACTIONS(1020), + [anon_sym_GT_EQ] = ACTIONS(1020), + [anon_sym_not_DASHin] = ACTIONS(1020), + [anon_sym_starts_DASHwith] = ACTIONS(1020), + [anon_sym_ends_DASHwith] = ACTIONS(1020), + [anon_sym_EQ_TILDE] = ACTIONS(1020), + [anon_sym_BANG_TILDE] = ACTIONS(1020), + [anon_sym_bit_DASHand] = ACTIONS(1020), + [anon_sym_bit_DASHxor] = ACTIONS(1020), + [anon_sym_bit_DASHor] = ACTIONS(1020), + [anon_sym_and] = ACTIONS(1020), + [anon_sym_xor] = ACTIONS(1020), + [anon_sym_or] = ACTIONS(1020), + [anon_sym_not] = ACTIONS(1020), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1020), + [anon_sym_DOT_DOT_LT] = ACTIONS(1020), + [anon_sym_null] = ACTIONS(1020), + [anon_sym_true] = ACTIONS(1020), + [anon_sym_false] = ACTIONS(1020), + [aux_sym__val_number_decimal_token1] = ACTIONS(1020), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [anon_sym_DOT2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1020), + [aux_sym__val_number_token1] = ACTIONS(1020), + [aux_sym__val_number_token2] = ACTIONS(1020), + [aux_sym__val_number_token3] = ACTIONS(1020), + [aux_sym__val_number_token4] = ACTIONS(1020), + [aux_sym__val_number_token5] = ACTIONS(1020), + [aux_sym__val_number_token6] = ACTIONS(1020), + [anon_sym_0b] = ACTIONS(1020), + [anon_sym_0o] = ACTIONS(1020), + [anon_sym_0x] = ACTIONS(1020), + [sym_val_date] = ACTIONS(1020), + [anon_sym_DQUOTE] = ACTIONS(1020), + [sym__str_single_quotes] = ACTIONS(1020), + [sym__str_back_ticks] = ACTIONS(1020), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1020), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1020), [anon_sym_POUND] = ACTIONS(113), }, - [2400] = { - [sym_comment] = STATE(2400), - [ts_builtin_sym_end] = ACTIONS(1338), - [anon_sym_export] = ACTIONS(1336), - [anon_sym_alias] = ACTIONS(1336), - [anon_sym_let] = ACTIONS(1336), - [anon_sym_let_DASHenv] = ACTIONS(1336), - [anon_sym_mut] = ACTIONS(1336), - [anon_sym_const] = ACTIONS(1336), - [anon_sym_SEMI] = ACTIONS(1336), - [sym_cmd_identifier] = ACTIONS(1336), - [anon_sym_LF] = ACTIONS(1338), - [anon_sym_def] = ACTIONS(1336), - [anon_sym_export_DASHenv] = ACTIONS(1336), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym_module] = ACTIONS(1336), - [anon_sym_use] = ACTIONS(1336), - [anon_sym_LBRACK] = ACTIONS(1336), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_DOLLAR] = ACTIONS(1336), - [anon_sym_error] = ACTIONS(1336), - [anon_sym_DASH_DASH] = ACTIONS(1336), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_break] = ACTIONS(1336), - [anon_sym_continue] = ACTIONS(1336), - [anon_sym_for] = ACTIONS(1336), - [anon_sym_loop] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1336), - [anon_sym_do] = ACTIONS(1336), - [anon_sym_if] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_DOT_DOT] = ACTIONS(1336), - [anon_sym_try] = ACTIONS(1336), - [anon_sym_return] = ACTIONS(1336), - [anon_sym_source] = ACTIONS(1336), - [anon_sym_source_DASHenv] = ACTIONS(1336), - [anon_sym_register] = ACTIONS(1336), - [anon_sym_hide] = ACTIONS(1336), - [anon_sym_hide_DASHenv] = ACTIONS(1336), - [anon_sym_overlay] = ACTIONS(1336), - [anon_sym_as] = ACTIONS(1336), - [anon_sym_where] = ACTIONS(1336), - [anon_sym_not] = ACTIONS(1336), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1336), - [anon_sym_DOT_DOT_LT] = ACTIONS(1336), - [anon_sym_null] = ACTIONS(1336), - [anon_sym_true] = ACTIONS(1336), - [anon_sym_false] = ACTIONS(1336), - [aux_sym__val_number_decimal_token1] = ACTIONS(1336), - [aux_sym__val_number_decimal_token2] = ACTIONS(1336), - [anon_sym_DOT2] = ACTIONS(1336), - [aux_sym__val_number_decimal_token3] = ACTIONS(1336), - [aux_sym__val_number_token1] = ACTIONS(1336), - [aux_sym__val_number_token2] = ACTIONS(1336), - [aux_sym__val_number_token3] = ACTIONS(1336), - [aux_sym__val_number_token4] = ACTIONS(1336), - [aux_sym__val_number_token5] = ACTIONS(1336), - [aux_sym__val_number_token6] = ACTIONS(1336), - [anon_sym_0b] = ACTIONS(1336), - [anon_sym_0o] = ACTIONS(1336), - [anon_sym_0x] = ACTIONS(1336), - [sym_val_date] = ACTIONS(1336), - [anon_sym_DQUOTE] = ACTIONS(1336), - [sym__str_single_quotes] = ACTIONS(1336), - [sym__str_back_ticks] = ACTIONS(1336), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1336), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1336), - [anon_sym_CARET] = ACTIONS(1336), + [2588] = { + [sym_comment] = STATE(2588), + [ts_builtin_sym_end] = ACTIONS(1161), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym_LF] = ACTIONS(1161), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LPAREN] = ACTIONS(1159), + [anon_sym_PIPE] = ACTIONS(1159), + [anon_sym_DOLLAR] = ACTIONS(1159), + [anon_sym_GT] = ACTIONS(1159), + [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_DASH] = ACTIONS(1159), + [anon_sym_in] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(1159), + [anon_sym_DOT_DOT] = ACTIONS(1159), + [anon_sym_STAR] = ACTIONS(1159), + [anon_sym_STAR_STAR] = ACTIONS(1159), + [anon_sym_PLUS_PLUS] = ACTIONS(1159), + [anon_sym_SLASH] = ACTIONS(1159), + [anon_sym_mod] = ACTIONS(1159), + [anon_sym_SLASH_SLASH] = ACTIONS(1159), + [anon_sym_PLUS] = ACTIONS(1159), + [anon_sym_bit_DASHshl] = ACTIONS(1159), + [anon_sym_bit_DASHshr] = ACTIONS(1159), + [anon_sym_EQ_EQ] = ACTIONS(1159), + [anon_sym_BANG_EQ] = ACTIONS(1159), + [anon_sym_LT2] = ACTIONS(1159), + [anon_sym_LT_EQ] = ACTIONS(1159), + [anon_sym_GT_EQ] = ACTIONS(1159), + [anon_sym_not_DASHin] = ACTIONS(1159), + [anon_sym_starts_DASHwith] = ACTIONS(1159), + [anon_sym_ends_DASHwith] = ACTIONS(1159), + [anon_sym_EQ_TILDE] = ACTIONS(1159), + [anon_sym_BANG_TILDE] = ACTIONS(1159), + [anon_sym_bit_DASHand] = ACTIONS(1159), + [anon_sym_bit_DASHxor] = ACTIONS(1159), + [anon_sym_bit_DASHor] = ACTIONS(1159), + [anon_sym_and] = ACTIONS(1159), + [anon_sym_xor] = ACTIONS(1159), + [anon_sym_or] = ACTIONS(1159), + [anon_sym_not] = ACTIONS(1159), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1159), + [anon_sym_DOT_DOT_LT] = ACTIONS(1159), + [anon_sym_null] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1159), + [anon_sym_false] = ACTIONS(1159), + [aux_sym__val_number_decimal_token1] = ACTIONS(1159), + [aux_sym__val_number_decimal_token2] = ACTIONS(1159), + [anon_sym_DOT2] = ACTIONS(1159), + [aux_sym__val_number_decimal_token3] = ACTIONS(1159), + [aux_sym__val_number_token1] = ACTIONS(1159), + [aux_sym__val_number_token2] = ACTIONS(1159), + [aux_sym__val_number_token3] = ACTIONS(1159), + [aux_sym__val_number_token4] = ACTIONS(1159), + [aux_sym__val_number_token5] = ACTIONS(1159), + [aux_sym__val_number_token6] = ACTIONS(1159), + [anon_sym_0b] = ACTIONS(1159), + [anon_sym_0o] = ACTIONS(1159), + [anon_sym_0x] = ACTIONS(1159), + [sym_val_date] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(1159), + [sym__str_single_quotes] = ACTIONS(1159), + [sym__str_back_ticks] = ACTIONS(1159), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1159), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1159), + [aux_sym_unquoted_token6] = ACTIONS(1163), [anon_sym_POUND] = ACTIONS(113), }, - [2401] = { - [sym_comment] = STATE(2401), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_COMMA] = ACTIONS(1378), - [anon_sym_RBRACK] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(6111), - [anon_sym_DASH_DASH] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(6113), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(6115), - [anon_sym_STAR_STAR] = ACTIONS(6117), - [anon_sym_PLUS_PLUS] = ACTIONS(6117), - [anon_sym_SLASH] = ACTIONS(6115), - [anon_sym_mod] = ACTIONS(6119), - [anon_sym_SLASH_SLASH] = ACTIONS(6119), - [anon_sym_PLUS] = ACTIONS(6113), - [anon_sym_bit_DASHshl] = ACTIONS(6121), - [anon_sym_bit_DASHshr] = ACTIONS(6121), - [anon_sym_EQ_EQ] = ACTIONS(6123), - [anon_sym_BANG_EQ] = ACTIONS(6123), - [anon_sym_LT2] = ACTIONS(6111), - [anon_sym_LT_EQ] = ACTIONS(6123), - [anon_sym_GT_EQ] = ACTIONS(6123), - [anon_sym_not_DASHin] = ACTIONS(1378), - [anon_sym_starts_DASHwith] = ACTIONS(1378), - [anon_sym_ends_DASHwith] = ACTIONS(1378), - [anon_sym_EQ_TILDE] = ACTIONS(1378), - [anon_sym_BANG_TILDE] = ACTIONS(1378), - [anon_sym_bit_DASHand] = ACTIONS(1378), - [anon_sym_bit_DASHxor] = ACTIONS(1378), - [anon_sym_bit_DASHor] = ACTIONS(1378), - [anon_sym_and] = ACTIONS(1378), - [anon_sym_xor] = ACTIONS(1378), - [anon_sym_or] = ACTIONS(1378), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT] = ACTIONS(1378), - [anon_sym_null] = ACTIONS(1378), - [anon_sym_true] = ACTIONS(1378), - [anon_sym_false] = ACTIONS(1378), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [aux_sym__val_number_token4] = ACTIONS(1378), - [aux_sym__val_number_token5] = ACTIONS(1378), - [aux_sym__val_number_token6] = ACTIONS(1378), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1378), - [anon_sym_out_GT] = ACTIONS(1378), - [anon_sym_e_GT] = ACTIONS(1378), - [anon_sym_o_GT] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT] = ACTIONS(1378), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(3), - }, - [2402] = { - [sym_comment] = STATE(2402), - [ts_builtin_sym_end] = ACTIONS(938), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_error] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_where] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), + [2589] = { + [sym_comment] = STATE(2589), + [ts_builtin_sym_end] = ACTIONS(1131), + [anon_sym_SEMI] = ACTIONS(1129), + [anon_sym_LF] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(1129), + [anon_sym_PIPE] = ACTIONS(1129), + [anon_sym_DOLLAR] = ACTIONS(1129), + [anon_sym_GT] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_in] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(1129), + [anon_sym_DOT_DOT] = ACTIONS(1129), + [anon_sym_STAR] = ACTIONS(1129), + [anon_sym_STAR_STAR] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(1129), + [anon_sym_mod] = ACTIONS(1129), + [anon_sym_SLASH_SLASH] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_bit_DASHshl] = ACTIONS(1129), + [anon_sym_bit_DASHshr] = ACTIONS(1129), + [anon_sym_EQ_EQ] = ACTIONS(1129), + [anon_sym_BANG_EQ] = ACTIONS(1129), + [anon_sym_LT2] = ACTIONS(1129), + [anon_sym_LT_EQ] = ACTIONS(1129), + [anon_sym_GT_EQ] = ACTIONS(1129), + [anon_sym_not_DASHin] = ACTIONS(1129), + [anon_sym_starts_DASHwith] = ACTIONS(1129), + [anon_sym_ends_DASHwith] = ACTIONS(1129), + [anon_sym_EQ_TILDE] = ACTIONS(1129), + [anon_sym_BANG_TILDE] = ACTIONS(1129), + [anon_sym_bit_DASHand] = ACTIONS(1129), + [anon_sym_bit_DASHxor] = ACTIONS(1129), + [anon_sym_bit_DASHor] = ACTIONS(1129), + [anon_sym_and] = ACTIONS(1129), + [anon_sym_xor] = ACTIONS(1129), + [anon_sym_or] = ACTIONS(1129), + [anon_sym_not] = ACTIONS(1129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1129), + [anon_sym_DOT_DOT_LT] = ACTIONS(1129), + [anon_sym_null] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1129), + [anon_sym_false] = ACTIONS(1129), + [aux_sym__val_number_decimal_token1] = ACTIONS(1129), + [aux_sym__val_number_decimal_token2] = ACTIONS(1129), + [anon_sym_DOT2] = ACTIONS(1129), + [aux_sym__val_number_decimal_token3] = ACTIONS(1129), + [aux_sym__val_number_token1] = ACTIONS(1129), + [aux_sym__val_number_token2] = ACTIONS(1129), + [aux_sym__val_number_token3] = ACTIONS(1129), + [aux_sym__val_number_token4] = ACTIONS(1129), + [aux_sym__val_number_token5] = ACTIONS(1129), + [aux_sym__val_number_token6] = ACTIONS(1129), + [anon_sym_0b] = ACTIONS(1129), + [anon_sym_0o] = ACTIONS(1129), + [anon_sym_0x] = ACTIONS(1129), + [sym_val_date] = ACTIONS(1129), + [anon_sym_DQUOTE] = ACTIONS(1129), + [sym__str_single_quotes] = ACTIONS(1129), + [sym__str_back_ticks] = ACTIONS(1129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1129), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1129), + [aux_sym_unquoted_token6] = ACTIONS(1133), [anon_sym_POUND] = ACTIONS(113), }, - [2403] = { - [sym_comment] = STATE(2403), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_COMMA] = ACTIONS(1378), - [anon_sym_RBRACK] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(6113), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(6115), - [anon_sym_STAR_STAR] = ACTIONS(6117), - [anon_sym_PLUS_PLUS] = ACTIONS(6117), - [anon_sym_SLASH] = ACTIONS(6115), - [anon_sym_mod] = ACTIONS(6119), - [anon_sym_SLASH_SLASH] = ACTIONS(6119), - [anon_sym_PLUS] = ACTIONS(6113), - [anon_sym_bit_DASHshl] = ACTIONS(1378), - [anon_sym_bit_DASHshr] = ACTIONS(1378), - [anon_sym_EQ_EQ] = ACTIONS(1378), - [anon_sym_BANG_EQ] = ACTIONS(1378), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1378), - [anon_sym_GT_EQ] = ACTIONS(1378), - [anon_sym_not_DASHin] = ACTIONS(1378), - [anon_sym_starts_DASHwith] = ACTIONS(1378), - [anon_sym_ends_DASHwith] = ACTIONS(1378), - [anon_sym_EQ_TILDE] = ACTIONS(1378), - [anon_sym_BANG_TILDE] = ACTIONS(1378), - [anon_sym_bit_DASHand] = ACTIONS(1378), - [anon_sym_bit_DASHxor] = ACTIONS(1378), - [anon_sym_bit_DASHor] = ACTIONS(1378), - [anon_sym_and] = ACTIONS(1378), - [anon_sym_xor] = ACTIONS(1378), - [anon_sym_or] = ACTIONS(1378), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT] = ACTIONS(1378), - [anon_sym_null] = ACTIONS(1378), - [anon_sym_true] = ACTIONS(1378), - [anon_sym_false] = ACTIONS(1378), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [aux_sym__val_number_token4] = ACTIONS(1378), - [aux_sym__val_number_token5] = ACTIONS(1378), - [aux_sym__val_number_token6] = ACTIONS(1378), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1378), - [anon_sym_out_GT] = ACTIONS(1378), - [anon_sym_e_GT] = ACTIONS(1378), - [anon_sym_o_GT] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT] = ACTIONS(1378), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(3), - }, - [2404] = { - [sym_comment] = STATE(2404), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_COMMA] = ACTIONS(1378), - [anon_sym_RBRACK] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(6111), - [anon_sym_DASH_DASH] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(6113), - [anon_sym_in] = ACTIONS(6125), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(6115), - [anon_sym_STAR_STAR] = ACTIONS(6117), - [anon_sym_PLUS_PLUS] = ACTIONS(6117), - [anon_sym_SLASH] = ACTIONS(6115), - [anon_sym_mod] = ACTIONS(6119), - [anon_sym_SLASH_SLASH] = ACTIONS(6119), - [anon_sym_PLUS] = ACTIONS(6113), - [anon_sym_bit_DASHshl] = ACTIONS(6121), - [anon_sym_bit_DASHshr] = ACTIONS(6121), - [anon_sym_EQ_EQ] = ACTIONS(6123), - [anon_sym_BANG_EQ] = ACTIONS(6123), - [anon_sym_LT2] = ACTIONS(6111), - [anon_sym_LT_EQ] = ACTIONS(6123), - [anon_sym_GT_EQ] = ACTIONS(6123), - [anon_sym_not_DASHin] = ACTIONS(6127), - [anon_sym_starts_DASHwith] = ACTIONS(6127), - [anon_sym_ends_DASHwith] = ACTIONS(6127), - [anon_sym_EQ_TILDE] = ACTIONS(1378), - [anon_sym_BANG_TILDE] = ACTIONS(1378), - [anon_sym_bit_DASHand] = ACTIONS(1378), - [anon_sym_bit_DASHxor] = ACTIONS(1378), - [anon_sym_bit_DASHor] = ACTIONS(1378), - [anon_sym_and] = ACTIONS(1378), - [anon_sym_xor] = ACTIONS(1378), - [anon_sym_or] = ACTIONS(1378), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT] = ACTIONS(1378), - [anon_sym_null] = ACTIONS(1378), - [anon_sym_true] = ACTIONS(1378), - [anon_sym_false] = ACTIONS(1378), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [aux_sym__val_number_token4] = ACTIONS(1378), - [aux_sym__val_number_token5] = ACTIONS(1378), - [aux_sym__val_number_token6] = ACTIONS(1378), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1378), - [anon_sym_out_GT] = ACTIONS(1378), - [anon_sym_e_GT] = ACTIONS(1378), - [anon_sym_o_GT] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT] = ACTIONS(1378), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(3), - }, - [2405] = { - [sym_comment] = STATE(2405), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_COMMA] = ACTIONS(1378), - [anon_sym_RBRACK] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(6115), - [anon_sym_STAR_STAR] = ACTIONS(6117), - [anon_sym_PLUS_PLUS] = ACTIONS(6117), - [anon_sym_SLASH] = ACTIONS(6115), - [anon_sym_mod] = ACTIONS(6119), - [anon_sym_SLASH_SLASH] = ACTIONS(6119), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_bit_DASHshl] = ACTIONS(1378), - [anon_sym_bit_DASHshr] = ACTIONS(1378), - [anon_sym_EQ_EQ] = ACTIONS(1378), - [anon_sym_BANG_EQ] = ACTIONS(1378), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1378), - [anon_sym_GT_EQ] = ACTIONS(1378), - [anon_sym_not_DASHin] = ACTIONS(1378), - [anon_sym_starts_DASHwith] = ACTIONS(1378), - [anon_sym_ends_DASHwith] = ACTIONS(1378), - [anon_sym_EQ_TILDE] = ACTIONS(1378), - [anon_sym_BANG_TILDE] = ACTIONS(1378), - [anon_sym_bit_DASHand] = ACTIONS(1378), - [anon_sym_bit_DASHxor] = ACTIONS(1378), - [anon_sym_bit_DASHor] = ACTIONS(1378), - [anon_sym_and] = ACTIONS(1378), - [anon_sym_xor] = ACTIONS(1378), - [anon_sym_or] = ACTIONS(1378), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT] = ACTIONS(1378), - [anon_sym_null] = ACTIONS(1378), - [anon_sym_true] = ACTIONS(1378), - [anon_sym_false] = ACTIONS(1378), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [aux_sym__val_number_token4] = ACTIONS(1378), - [aux_sym__val_number_token5] = ACTIONS(1378), - [aux_sym__val_number_token6] = ACTIONS(1378), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1378), - [anon_sym_out_GT] = ACTIONS(1378), - [anon_sym_e_GT] = ACTIONS(1378), - [anon_sym_o_GT] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT] = ACTIONS(1378), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(3), - }, - [2406] = { - [sym_comment] = STATE(2406), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_COMMA] = ACTIONS(1378), - [anon_sym_RBRACK] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(6117), - [anon_sym_PLUS_PLUS] = ACTIONS(6117), - [anon_sym_SLASH] = ACTIONS(1376), - [anon_sym_mod] = ACTIONS(1378), - [anon_sym_SLASH_SLASH] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_bit_DASHshl] = ACTIONS(1378), - [anon_sym_bit_DASHshr] = ACTIONS(1378), - [anon_sym_EQ_EQ] = ACTIONS(1378), - [anon_sym_BANG_EQ] = ACTIONS(1378), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1378), - [anon_sym_GT_EQ] = ACTIONS(1378), - [anon_sym_not_DASHin] = ACTIONS(1378), - [anon_sym_starts_DASHwith] = ACTIONS(1378), - [anon_sym_ends_DASHwith] = ACTIONS(1378), - [anon_sym_EQ_TILDE] = ACTIONS(1378), - [anon_sym_BANG_TILDE] = ACTIONS(1378), - [anon_sym_bit_DASHand] = ACTIONS(1378), - [anon_sym_bit_DASHxor] = ACTIONS(1378), - [anon_sym_bit_DASHor] = ACTIONS(1378), - [anon_sym_and] = ACTIONS(1378), - [anon_sym_xor] = ACTIONS(1378), - [anon_sym_or] = ACTIONS(1378), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT] = ACTIONS(1378), - [anon_sym_null] = ACTIONS(1378), - [anon_sym_true] = ACTIONS(1378), - [anon_sym_false] = ACTIONS(1378), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [aux_sym__val_number_token4] = ACTIONS(1378), - [aux_sym__val_number_token5] = ACTIONS(1378), - [aux_sym__val_number_token6] = ACTIONS(1378), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1378), - [anon_sym_out_GT] = ACTIONS(1378), - [anon_sym_e_GT] = ACTIONS(1378), - [anon_sym_o_GT] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT] = ACTIONS(1378), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(3), - }, - [2407] = { - [sym_comment] = STATE(2407), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_COMMA] = ACTIONS(1378), - [anon_sym_RBRACK] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(6113), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(6115), - [anon_sym_STAR_STAR] = ACTIONS(6117), - [anon_sym_PLUS_PLUS] = ACTIONS(6117), - [anon_sym_SLASH] = ACTIONS(6115), - [anon_sym_mod] = ACTIONS(6119), - [anon_sym_SLASH_SLASH] = ACTIONS(6119), - [anon_sym_PLUS] = ACTIONS(6113), - [anon_sym_bit_DASHshl] = ACTIONS(6121), - [anon_sym_bit_DASHshr] = ACTIONS(6121), - [anon_sym_EQ_EQ] = ACTIONS(1378), - [anon_sym_BANG_EQ] = ACTIONS(1378), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1378), - [anon_sym_GT_EQ] = ACTIONS(1378), - [anon_sym_not_DASHin] = ACTIONS(1378), - [anon_sym_starts_DASHwith] = ACTIONS(1378), - [anon_sym_ends_DASHwith] = ACTIONS(1378), - [anon_sym_EQ_TILDE] = ACTIONS(1378), - [anon_sym_BANG_TILDE] = ACTIONS(1378), - [anon_sym_bit_DASHand] = ACTIONS(1378), - [anon_sym_bit_DASHxor] = ACTIONS(1378), - [anon_sym_bit_DASHor] = ACTIONS(1378), - [anon_sym_and] = ACTIONS(1378), - [anon_sym_xor] = ACTIONS(1378), - [anon_sym_or] = ACTIONS(1378), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT] = ACTIONS(1378), - [anon_sym_null] = ACTIONS(1378), - [anon_sym_true] = ACTIONS(1378), - [anon_sym_false] = ACTIONS(1378), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [aux_sym__val_number_token4] = ACTIONS(1378), - [aux_sym__val_number_token5] = ACTIONS(1378), - [aux_sym__val_number_token6] = ACTIONS(1378), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1378), - [anon_sym_out_GT] = ACTIONS(1378), - [anon_sym_e_GT] = ACTIONS(1378), - [anon_sym_o_GT] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT] = ACTIONS(1378), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(3), - }, - [2408] = { - [sym_comment] = STATE(2408), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_COMMA] = ACTIONS(1378), - [anon_sym_RBRACK] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(6111), - [anon_sym_DASH_DASH] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(6113), - [anon_sym_in] = ACTIONS(6125), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(6115), - [anon_sym_STAR_STAR] = ACTIONS(6117), - [anon_sym_PLUS_PLUS] = ACTIONS(6117), - [anon_sym_SLASH] = ACTIONS(6115), - [anon_sym_mod] = ACTIONS(6119), - [anon_sym_SLASH_SLASH] = ACTIONS(6119), - [anon_sym_PLUS] = ACTIONS(6113), - [anon_sym_bit_DASHshl] = ACTIONS(6121), - [anon_sym_bit_DASHshr] = ACTIONS(6121), - [anon_sym_EQ_EQ] = ACTIONS(6123), - [anon_sym_BANG_EQ] = ACTIONS(6123), - [anon_sym_LT2] = ACTIONS(6111), - [anon_sym_LT_EQ] = ACTIONS(6123), - [anon_sym_GT_EQ] = ACTIONS(6123), - [anon_sym_not_DASHin] = ACTIONS(6127), - [anon_sym_starts_DASHwith] = ACTIONS(6127), - [anon_sym_ends_DASHwith] = ACTIONS(6127), - [anon_sym_EQ_TILDE] = ACTIONS(6129), - [anon_sym_BANG_TILDE] = ACTIONS(6129), - [anon_sym_bit_DASHand] = ACTIONS(1378), - [anon_sym_bit_DASHxor] = ACTIONS(1378), - [anon_sym_bit_DASHor] = ACTIONS(1378), - [anon_sym_and] = ACTIONS(1378), - [anon_sym_xor] = ACTIONS(1378), - [anon_sym_or] = ACTIONS(1378), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT] = ACTIONS(1378), - [anon_sym_null] = ACTIONS(1378), - [anon_sym_true] = ACTIONS(1378), - [anon_sym_false] = ACTIONS(1378), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [aux_sym__val_number_token4] = ACTIONS(1378), - [aux_sym__val_number_token5] = ACTIONS(1378), - [aux_sym__val_number_token6] = ACTIONS(1378), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1378), - [anon_sym_out_GT] = ACTIONS(1378), - [anon_sym_e_GT] = ACTIONS(1378), - [anon_sym_o_GT] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT] = ACTIONS(1378), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(3), - }, - [2409] = { - [sym_comment] = STATE(2409), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_COMMA] = ACTIONS(1378), - [anon_sym_RBRACK] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(6111), - [anon_sym_DASH_DASH] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(6113), - [anon_sym_in] = ACTIONS(6125), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(6115), - [anon_sym_STAR_STAR] = ACTIONS(6117), - [anon_sym_PLUS_PLUS] = ACTIONS(6117), - [anon_sym_SLASH] = ACTIONS(6115), - [anon_sym_mod] = ACTIONS(6119), - [anon_sym_SLASH_SLASH] = ACTIONS(6119), - [anon_sym_PLUS] = ACTIONS(6113), - [anon_sym_bit_DASHshl] = ACTIONS(6121), - [anon_sym_bit_DASHshr] = ACTIONS(6121), - [anon_sym_EQ_EQ] = ACTIONS(6123), - [anon_sym_BANG_EQ] = ACTIONS(6123), - [anon_sym_LT2] = ACTIONS(6111), - [anon_sym_LT_EQ] = ACTIONS(6123), - [anon_sym_GT_EQ] = ACTIONS(6123), - [anon_sym_not_DASHin] = ACTIONS(6127), - [anon_sym_starts_DASHwith] = ACTIONS(6127), - [anon_sym_ends_DASHwith] = ACTIONS(6127), - [anon_sym_EQ_TILDE] = ACTIONS(6129), - [anon_sym_BANG_TILDE] = ACTIONS(6129), - [anon_sym_bit_DASHand] = ACTIONS(6131), - [anon_sym_bit_DASHxor] = ACTIONS(1378), - [anon_sym_bit_DASHor] = ACTIONS(1378), - [anon_sym_and] = ACTIONS(1378), - [anon_sym_xor] = ACTIONS(1378), - [anon_sym_or] = ACTIONS(1378), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT] = ACTIONS(1378), - [anon_sym_null] = ACTIONS(1378), - [anon_sym_true] = ACTIONS(1378), - [anon_sym_false] = ACTIONS(1378), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [aux_sym__val_number_token4] = ACTIONS(1378), - [aux_sym__val_number_token5] = ACTIONS(1378), - [aux_sym__val_number_token6] = ACTIONS(1378), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1378), - [anon_sym_out_GT] = ACTIONS(1378), - [anon_sym_e_GT] = ACTIONS(1378), - [anon_sym_o_GT] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT] = ACTIONS(1378), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(3), - }, - [2410] = { - [sym_comment] = STATE(2410), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_COMMA] = ACTIONS(1378), - [anon_sym_RBRACK] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(6111), - [anon_sym_DASH_DASH] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(6113), - [anon_sym_in] = ACTIONS(6125), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(6115), - [anon_sym_STAR_STAR] = ACTIONS(6117), - [anon_sym_PLUS_PLUS] = ACTIONS(6117), - [anon_sym_SLASH] = ACTIONS(6115), - [anon_sym_mod] = ACTIONS(6119), - [anon_sym_SLASH_SLASH] = ACTIONS(6119), - [anon_sym_PLUS] = ACTIONS(6113), - [anon_sym_bit_DASHshl] = ACTIONS(6121), - [anon_sym_bit_DASHshr] = ACTIONS(6121), - [anon_sym_EQ_EQ] = ACTIONS(6123), - [anon_sym_BANG_EQ] = ACTIONS(6123), - [anon_sym_LT2] = ACTIONS(6111), - [anon_sym_LT_EQ] = ACTIONS(6123), - [anon_sym_GT_EQ] = ACTIONS(6123), - [anon_sym_not_DASHin] = ACTIONS(6127), - [anon_sym_starts_DASHwith] = ACTIONS(6127), - [anon_sym_ends_DASHwith] = ACTIONS(6127), - [anon_sym_EQ_TILDE] = ACTIONS(6129), - [anon_sym_BANG_TILDE] = ACTIONS(6129), - [anon_sym_bit_DASHand] = ACTIONS(6131), - [anon_sym_bit_DASHxor] = ACTIONS(6133), - [anon_sym_bit_DASHor] = ACTIONS(1378), - [anon_sym_and] = ACTIONS(1378), - [anon_sym_xor] = ACTIONS(1378), - [anon_sym_or] = ACTIONS(1378), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT] = ACTIONS(1378), - [anon_sym_null] = ACTIONS(1378), - [anon_sym_true] = ACTIONS(1378), - [anon_sym_false] = ACTIONS(1378), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [aux_sym__val_number_token4] = ACTIONS(1378), - [aux_sym__val_number_token5] = ACTIONS(1378), - [aux_sym__val_number_token6] = ACTIONS(1378), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1378), - [anon_sym_out_GT] = ACTIONS(1378), - [anon_sym_e_GT] = ACTIONS(1378), - [anon_sym_o_GT] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT] = ACTIONS(1378), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(3), - }, - [2411] = { - [sym_comment] = STATE(2411), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_COMMA] = ACTIONS(1378), - [anon_sym_RBRACK] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(6111), - [anon_sym_DASH_DASH] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(6113), - [anon_sym_in] = ACTIONS(6125), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(6115), - [anon_sym_STAR_STAR] = ACTIONS(6117), - [anon_sym_PLUS_PLUS] = ACTIONS(6117), - [anon_sym_SLASH] = ACTIONS(6115), - [anon_sym_mod] = ACTIONS(6119), - [anon_sym_SLASH_SLASH] = ACTIONS(6119), - [anon_sym_PLUS] = ACTIONS(6113), - [anon_sym_bit_DASHshl] = ACTIONS(6121), - [anon_sym_bit_DASHshr] = ACTIONS(6121), - [anon_sym_EQ_EQ] = ACTIONS(6123), - [anon_sym_BANG_EQ] = ACTIONS(6123), - [anon_sym_LT2] = ACTIONS(6111), - [anon_sym_LT_EQ] = ACTIONS(6123), - [anon_sym_GT_EQ] = ACTIONS(6123), - [anon_sym_not_DASHin] = ACTIONS(6127), - [anon_sym_starts_DASHwith] = ACTIONS(6127), - [anon_sym_ends_DASHwith] = ACTIONS(6127), - [anon_sym_EQ_TILDE] = ACTIONS(6129), - [anon_sym_BANG_TILDE] = ACTIONS(6129), - [anon_sym_bit_DASHand] = ACTIONS(6131), - [anon_sym_bit_DASHxor] = ACTIONS(6133), - [anon_sym_bit_DASHor] = ACTIONS(6135), - [anon_sym_and] = ACTIONS(1378), - [anon_sym_xor] = ACTIONS(1378), - [anon_sym_or] = ACTIONS(1378), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT] = ACTIONS(1378), - [anon_sym_null] = ACTIONS(1378), - [anon_sym_true] = ACTIONS(1378), - [anon_sym_false] = ACTIONS(1378), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [aux_sym__val_number_token4] = ACTIONS(1378), - [aux_sym__val_number_token5] = ACTIONS(1378), - [aux_sym__val_number_token6] = ACTIONS(1378), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1378), - [anon_sym_out_GT] = ACTIONS(1378), - [anon_sym_e_GT] = ACTIONS(1378), - [anon_sym_o_GT] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT] = ACTIONS(1378), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(3), - }, - [2412] = { - [sym_comment] = STATE(2412), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_COMMA] = ACTIONS(1378), - [anon_sym_RBRACK] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(6111), - [anon_sym_DASH_DASH] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(6113), - [anon_sym_in] = ACTIONS(6125), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(6115), - [anon_sym_STAR_STAR] = ACTIONS(6117), - [anon_sym_PLUS_PLUS] = ACTIONS(6117), - [anon_sym_SLASH] = ACTIONS(6115), - [anon_sym_mod] = ACTIONS(6119), - [anon_sym_SLASH_SLASH] = ACTIONS(6119), - [anon_sym_PLUS] = ACTIONS(6113), - [anon_sym_bit_DASHshl] = ACTIONS(6121), - [anon_sym_bit_DASHshr] = ACTIONS(6121), - [anon_sym_EQ_EQ] = ACTIONS(6123), - [anon_sym_BANG_EQ] = ACTIONS(6123), - [anon_sym_LT2] = ACTIONS(6111), - [anon_sym_LT_EQ] = ACTIONS(6123), - [anon_sym_GT_EQ] = ACTIONS(6123), - [anon_sym_not_DASHin] = ACTIONS(6127), - [anon_sym_starts_DASHwith] = ACTIONS(6127), - [anon_sym_ends_DASHwith] = ACTIONS(6127), - [anon_sym_EQ_TILDE] = ACTIONS(6129), - [anon_sym_BANG_TILDE] = ACTIONS(6129), - [anon_sym_bit_DASHand] = ACTIONS(6131), - [anon_sym_bit_DASHxor] = ACTIONS(6133), - [anon_sym_bit_DASHor] = ACTIONS(6135), - [anon_sym_and] = ACTIONS(6137), - [anon_sym_xor] = ACTIONS(1378), - [anon_sym_or] = ACTIONS(1378), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT] = ACTIONS(1378), - [anon_sym_null] = ACTIONS(1378), - [anon_sym_true] = ACTIONS(1378), - [anon_sym_false] = ACTIONS(1378), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [aux_sym__val_number_token4] = ACTIONS(1378), - [aux_sym__val_number_token5] = ACTIONS(1378), - [aux_sym__val_number_token6] = ACTIONS(1378), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1378), - [anon_sym_out_GT] = ACTIONS(1378), - [anon_sym_e_GT] = ACTIONS(1378), - [anon_sym_o_GT] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT] = ACTIONS(1378), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(3), - }, - [2413] = { - [sym_comment] = STATE(2413), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_COMMA] = ACTIONS(1378), - [anon_sym_RBRACK] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(6111), - [anon_sym_DASH_DASH] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(6113), - [anon_sym_in] = ACTIONS(6125), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(6115), - [anon_sym_STAR_STAR] = ACTIONS(6117), - [anon_sym_PLUS_PLUS] = ACTIONS(6117), - [anon_sym_SLASH] = ACTIONS(6115), - [anon_sym_mod] = ACTIONS(6119), - [anon_sym_SLASH_SLASH] = ACTIONS(6119), - [anon_sym_PLUS] = ACTIONS(6113), - [anon_sym_bit_DASHshl] = ACTIONS(6121), - [anon_sym_bit_DASHshr] = ACTIONS(6121), - [anon_sym_EQ_EQ] = ACTIONS(6123), - [anon_sym_BANG_EQ] = ACTIONS(6123), - [anon_sym_LT2] = ACTIONS(6111), - [anon_sym_LT_EQ] = ACTIONS(6123), - [anon_sym_GT_EQ] = ACTIONS(6123), - [anon_sym_not_DASHin] = ACTIONS(6127), - [anon_sym_starts_DASHwith] = ACTIONS(6127), - [anon_sym_ends_DASHwith] = ACTIONS(6127), - [anon_sym_EQ_TILDE] = ACTIONS(6129), - [anon_sym_BANG_TILDE] = ACTIONS(6129), - [anon_sym_bit_DASHand] = ACTIONS(6131), - [anon_sym_bit_DASHxor] = ACTIONS(6133), - [anon_sym_bit_DASHor] = ACTIONS(6135), - [anon_sym_and] = ACTIONS(6137), - [anon_sym_xor] = ACTIONS(6139), - [anon_sym_or] = ACTIONS(1378), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT] = ACTIONS(1378), - [anon_sym_null] = ACTIONS(1378), - [anon_sym_true] = ACTIONS(1378), - [anon_sym_false] = ACTIONS(1378), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [aux_sym__val_number_token4] = ACTIONS(1378), - [aux_sym__val_number_token5] = ACTIONS(1378), - [aux_sym__val_number_token6] = ACTIONS(1378), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1378), - [anon_sym_out_GT] = ACTIONS(1378), - [anon_sym_e_GT] = ACTIONS(1378), - [anon_sym_o_GT] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT] = ACTIONS(1378), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(3), - }, - [2414] = { - [sym_comment] = STATE(2414), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_COMMA] = ACTIONS(1378), - [anon_sym_RBRACK] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(6111), - [anon_sym_DASH_DASH] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(6113), - [anon_sym_in] = ACTIONS(6125), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(6115), - [anon_sym_STAR_STAR] = ACTIONS(6117), - [anon_sym_PLUS_PLUS] = ACTIONS(6117), - [anon_sym_SLASH] = ACTIONS(6115), - [anon_sym_mod] = ACTIONS(6119), - [anon_sym_SLASH_SLASH] = ACTIONS(6119), - [anon_sym_PLUS] = ACTIONS(6113), - [anon_sym_bit_DASHshl] = ACTIONS(6121), - [anon_sym_bit_DASHshr] = ACTIONS(6121), - [anon_sym_EQ_EQ] = ACTIONS(6123), - [anon_sym_BANG_EQ] = ACTIONS(6123), - [anon_sym_LT2] = ACTIONS(6111), - [anon_sym_LT_EQ] = ACTIONS(6123), - [anon_sym_GT_EQ] = ACTIONS(6123), - [anon_sym_not_DASHin] = ACTIONS(6127), - [anon_sym_starts_DASHwith] = ACTIONS(6127), - [anon_sym_ends_DASHwith] = ACTIONS(6127), - [anon_sym_EQ_TILDE] = ACTIONS(6129), - [anon_sym_BANG_TILDE] = ACTIONS(6129), - [anon_sym_bit_DASHand] = ACTIONS(6131), - [anon_sym_bit_DASHxor] = ACTIONS(6133), - [anon_sym_bit_DASHor] = ACTIONS(6135), - [anon_sym_and] = ACTIONS(6137), - [anon_sym_xor] = ACTIONS(6139), - [anon_sym_or] = ACTIONS(6141), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT] = ACTIONS(1378), - [anon_sym_null] = ACTIONS(1378), - [anon_sym_true] = ACTIONS(1378), - [anon_sym_false] = ACTIONS(1378), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [aux_sym__val_number_token4] = ACTIONS(1378), - [aux_sym__val_number_token5] = ACTIONS(1378), - [aux_sym__val_number_token6] = ACTIONS(1378), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1378), - [anon_sym_out_GT] = ACTIONS(1378), - [anon_sym_e_GT] = ACTIONS(1378), - [anon_sym_o_GT] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT] = ACTIONS(1378), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(3), - }, - [2415] = { - [sym_comment] = STATE(2415), - [ts_builtin_sym_end] = ACTIONS(1352), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_alias] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_let_DASHenv] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1350), - [sym_cmd_identifier] = ACTIONS(1350), - [anon_sym_LF] = ACTIONS(1352), - [anon_sym_def] = ACTIONS(1350), - [anon_sym_export_DASHenv] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_LBRACK] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1350), - [anon_sym_DOLLAR] = ACTIONS(1350), - [anon_sym_error] = ACTIONS(1350), - [anon_sym_DASH_DASH] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_DOT_DOT] = ACTIONS(1350), - [anon_sym_try] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_source] = ACTIONS(1350), - [anon_sym_source_DASHenv] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_hide] = ACTIONS(1350), - [anon_sym_hide_DASHenv] = ACTIONS(1350), - [anon_sym_overlay] = ACTIONS(1350), - [anon_sym_as] = ACTIONS(1350), - [anon_sym_where] = ACTIONS(1350), - [anon_sym_not] = ACTIONS(1350), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1350), - [anon_sym_DOT_DOT_LT] = ACTIONS(1350), - [anon_sym_null] = ACTIONS(1350), - [anon_sym_true] = ACTIONS(1350), - [anon_sym_false] = ACTIONS(1350), - [aux_sym__val_number_decimal_token1] = ACTIONS(1350), - [aux_sym__val_number_decimal_token2] = ACTIONS(1350), - [anon_sym_DOT2] = ACTIONS(1350), - [aux_sym__val_number_decimal_token3] = ACTIONS(1350), - [aux_sym__val_number_token1] = ACTIONS(1350), - [aux_sym__val_number_token2] = ACTIONS(1350), - [aux_sym__val_number_token3] = ACTIONS(1350), - [aux_sym__val_number_token4] = ACTIONS(1350), - [aux_sym__val_number_token5] = ACTIONS(1350), - [aux_sym__val_number_token6] = ACTIONS(1350), - [anon_sym_0b] = ACTIONS(1350), - [anon_sym_0o] = ACTIONS(1350), - [anon_sym_0x] = ACTIONS(1350), - [sym_val_date] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [sym__str_single_quotes] = ACTIONS(1350), - [sym__str_back_ticks] = ACTIONS(1350), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1350), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1350), - [anon_sym_CARET] = ACTIONS(1350), + [2590] = { + [sym_comment] = STATE(2590), + [ts_builtin_sym_end] = ACTIONS(1137), + [anon_sym_SEMI] = ACTIONS(1135), + [anon_sym_LF] = ACTIONS(1137), + [anon_sym_LBRACK] = ACTIONS(1135), + [anon_sym_LPAREN] = ACTIONS(1135), + [anon_sym_PIPE] = ACTIONS(1135), + [anon_sym_DOLLAR] = ACTIONS(1135), + [anon_sym_GT] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_in] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1135), + [anon_sym_DOT_DOT] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1135), + [anon_sym_STAR_STAR] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_SLASH] = ACTIONS(1135), + [anon_sym_mod] = ACTIONS(1135), + [anon_sym_SLASH_SLASH] = ACTIONS(1135), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_bit_DASHshl] = ACTIONS(1135), + [anon_sym_bit_DASHshr] = ACTIONS(1135), + [anon_sym_EQ_EQ] = ACTIONS(1135), + [anon_sym_BANG_EQ] = ACTIONS(1135), + [anon_sym_LT2] = ACTIONS(1135), + [anon_sym_LT_EQ] = ACTIONS(1135), + [anon_sym_GT_EQ] = ACTIONS(1135), + [anon_sym_not_DASHin] = ACTIONS(1135), + [anon_sym_starts_DASHwith] = ACTIONS(1135), + [anon_sym_ends_DASHwith] = ACTIONS(1135), + [anon_sym_EQ_TILDE] = ACTIONS(1135), + [anon_sym_BANG_TILDE] = ACTIONS(1135), + [anon_sym_bit_DASHand] = ACTIONS(1135), + [anon_sym_bit_DASHxor] = ACTIONS(1135), + [anon_sym_bit_DASHor] = ACTIONS(1135), + [anon_sym_and] = ACTIONS(1135), + [anon_sym_xor] = ACTIONS(1135), + [anon_sym_or] = ACTIONS(1135), + [anon_sym_not] = ACTIONS(1135), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1135), + [anon_sym_DOT_DOT_LT] = ACTIONS(1135), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_true] = ACTIONS(1135), + [anon_sym_false] = ACTIONS(1135), + [aux_sym__val_number_decimal_token1] = ACTIONS(1135), + [aux_sym__val_number_decimal_token2] = ACTIONS(1135), + [anon_sym_DOT2] = ACTIONS(1135), + [aux_sym__val_number_decimal_token3] = ACTIONS(1135), + [aux_sym__val_number_token1] = ACTIONS(1135), + [aux_sym__val_number_token2] = ACTIONS(1135), + [aux_sym__val_number_token3] = ACTIONS(1135), + [aux_sym__val_number_token4] = ACTIONS(1135), + [aux_sym__val_number_token5] = ACTIONS(1135), + [aux_sym__val_number_token6] = ACTIONS(1135), + [anon_sym_0b] = ACTIONS(1135), + [anon_sym_0o] = ACTIONS(1135), + [anon_sym_0x] = ACTIONS(1135), + [sym_val_date] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1135), + [sym__str_single_quotes] = ACTIONS(1135), + [sym__str_back_ticks] = ACTIONS(1135), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1135), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1135), + [aux_sym_unquoted_token6] = ACTIONS(1133), [anon_sym_POUND] = ACTIONS(113), }, - [2416] = { - [sym_comment] = STATE(2416), - [anon_sym_LBRACK] = ACTIONS(1300), - [anon_sym_COMMA] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(1300), - [anon_sym_DOLLAR] = ACTIONS(1300), - [anon_sym_GT] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_in] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym__] = ACTIONS(1298), - [anon_sym_DOT_DOT] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_STAR_STAR] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_SLASH] = ACTIONS(1298), - [anon_sym_mod] = ACTIONS(1300), - [anon_sym_SLASH_SLASH] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_bit_DASHshl] = ACTIONS(1300), - [anon_sym_bit_DASHshr] = ACTIONS(1300), - [anon_sym_EQ_EQ] = ACTIONS(1300), - [anon_sym_BANG_EQ] = ACTIONS(1300), - [anon_sym_LT2] = ACTIONS(1298), - [anon_sym_LT_EQ] = ACTIONS(1300), - [anon_sym_GT_EQ] = ACTIONS(1300), - [anon_sym_not_DASHin] = ACTIONS(1300), - [anon_sym_starts_DASHwith] = ACTIONS(1300), - [anon_sym_ends_DASHwith] = ACTIONS(1300), - [anon_sym_EQ_TILDE] = ACTIONS(1300), - [anon_sym_BANG_TILDE] = ACTIONS(1300), - [anon_sym_bit_DASHand] = ACTIONS(1300), - [anon_sym_bit_DASHxor] = ACTIONS(1300), - [anon_sym_bit_DASHor] = ACTIONS(1300), - [anon_sym_and] = ACTIONS(1300), - [anon_sym_xor] = ACTIONS(1300), - [anon_sym_or] = ACTIONS(1300), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1300), - [anon_sym_DOT_DOT_LT] = ACTIONS(1300), - [anon_sym_null] = ACTIONS(1300), - [anon_sym_true] = ACTIONS(1300), - [anon_sym_false] = ACTIONS(1300), - [aux_sym__val_number_decimal_token1] = ACTIONS(1298), - [aux_sym__val_number_decimal_token2] = ACTIONS(1300), - [anon_sym_DOT2] = ACTIONS(1298), - [aux_sym__val_number_decimal_token3] = ACTIONS(1300), - [aux_sym__val_number_token1] = ACTIONS(1300), - [aux_sym__val_number_token2] = ACTIONS(1300), - [aux_sym__val_number_token3] = ACTIONS(1300), - [aux_sym__val_number_token4] = ACTIONS(1300), - [aux_sym__val_number_token5] = ACTIONS(1300), - [aux_sym__val_number_token6] = ACTIONS(1300), - [anon_sym_0b] = ACTIONS(1298), - [anon_sym_0o] = ACTIONS(1298), - [anon_sym_0x] = ACTIONS(1298), - [sym_val_date] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym__str_single_quotes] = ACTIONS(1300), - [sym__str_back_ticks] = ACTIONS(1300), - [anon_sym_err_GT] = ACTIONS(1300), - [anon_sym_out_GT] = ACTIONS(1300), - [anon_sym_e_GT] = ACTIONS(1300), - [anon_sym_o_GT] = ACTIONS(1300), - [anon_sym_err_PLUSout_GT] = ACTIONS(1300), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1300), - [anon_sym_o_PLUSe_GT] = ACTIONS(1300), - [anon_sym_e_PLUSo_GT] = ACTIONS(1300), - [aux_sym_unquoted_token1] = ACTIONS(1298), - [anon_sym_POUND] = ACTIONS(3), - }, - [2417] = { - [sym_comment] = STATE(2417), - [ts_builtin_sym_end] = ACTIONS(1115), - [anon_sym_export] = ACTIONS(1113), - [anon_sym_alias] = ACTIONS(1113), - [anon_sym_let] = ACTIONS(1113), - [anon_sym_let_DASHenv] = ACTIONS(1113), - [anon_sym_mut] = ACTIONS(1113), - [anon_sym_const] = ACTIONS(1113), - [anon_sym_SEMI] = ACTIONS(1113), - [sym_cmd_identifier] = ACTIONS(1113), - [anon_sym_LF] = ACTIONS(1115), - [anon_sym_def] = ACTIONS(1113), - [anon_sym_export_DASHenv] = ACTIONS(1113), - [anon_sym_extern] = ACTIONS(1113), - [anon_sym_module] = ACTIONS(1113), - [anon_sym_use] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1113), - [anon_sym_error] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_loop] = ACTIONS(1113), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1113), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_source] = ACTIONS(1113), - [anon_sym_source_DASHenv] = ACTIONS(1113), - [anon_sym_register] = ACTIONS(1113), - [anon_sym_hide] = ACTIONS(1113), - [anon_sym_hide_DASHenv] = ACTIONS(1113), - [anon_sym_overlay] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_where] = ACTIONS(1113), - [anon_sym_not] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1113), - [anon_sym_DOT_DOT_LT] = ACTIONS(1113), - [anon_sym_null] = ACTIONS(1113), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1113), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_decimal_token2] = ACTIONS(1113), - [anon_sym_DOT2] = ACTIONS(1113), - [aux_sym__val_number_decimal_token3] = ACTIONS(1113), - [aux_sym__val_number_token1] = ACTIONS(1113), - [aux_sym__val_number_token2] = ACTIONS(1113), - [aux_sym__val_number_token3] = ACTIONS(1113), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1113), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_0b] = ACTIONS(1113), - [anon_sym_0o] = ACTIONS(1113), - [anon_sym_0x] = ACTIONS(1113), - [sym_val_date] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym__str_single_quotes] = ACTIONS(1113), - [sym__str_back_ticks] = ACTIONS(1113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), - [anon_sym_CARET] = ACTIONS(1113), + [2591] = { + [sym_comment] = STATE(2591), + [anon_sym_SEMI] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_RPAREN] = ACTIONS(1171), + [anon_sym_PIPE] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, - [2418] = { - [sym__match_pattern_record_variable] = STATE(3555), - [sym_expr_parenthesized] = STATE(10769), - [sym_val_variable] = STATE(3513), - [sym__var] = STATE(3214), - [sym_val_number] = STATE(10769), - [sym__val_number_decimal] = STATE(5414), - [sym__val_number] = STATE(5463), - [sym_val_string] = STATE(10769), - [sym__str_double_quotes] = STATE(7019), - [sym_record_entry] = STATE(3555), - [sym__record_key] = STATE(10918), - [sym_comment] = STATE(2418), - [aux_sym__match_pattern_record_repeat1] = STATE(2447), - [anon_sym_export] = ACTIONS(6091), - [anon_sym_alias] = ACTIONS(6091), - [anon_sym_let] = ACTIONS(6091), - [anon_sym_let_DASHenv] = ACTIONS(6091), - [anon_sym_mut] = ACTIONS(6091), - [anon_sym_const] = ACTIONS(6091), - [sym_cmd_identifier] = ACTIONS(6091), - [anon_sym_def] = ACTIONS(6091), - [anon_sym_export_DASHenv] = ACTIONS(6091), - [anon_sym_extern] = ACTIONS(6091), - [anon_sym_module] = ACTIONS(6091), - [anon_sym_use] = ACTIONS(6091), - [anon_sym_LPAREN] = ACTIONS(6093), - [anon_sym_DOLLAR] = ACTIONS(6095), - [anon_sym_error] = ACTIONS(6091), - [anon_sym_list] = ACTIONS(6091), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_break] = ACTIONS(6091), - [anon_sym_continue] = ACTIONS(6091), - [anon_sym_for] = ACTIONS(6091), - [anon_sym_in] = ACTIONS(6091), - [anon_sym_loop] = ACTIONS(6091), - [anon_sym_make] = ACTIONS(6091), - [anon_sym_while] = ACTIONS(6091), - [anon_sym_do] = ACTIONS(6091), - [anon_sym_if] = ACTIONS(6091), - [anon_sym_else] = ACTIONS(6091), - [anon_sym_match] = ACTIONS(6091), - [anon_sym_RBRACE] = ACTIONS(6143), - [anon_sym_try] = ACTIONS(6091), - [anon_sym_catch] = ACTIONS(6091), - [anon_sym_return] = ACTIONS(6091), - [anon_sym_source] = ACTIONS(6091), - [anon_sym_source_DASHenv] = ACTIONS(6091), - [anon_sym_register] = ACTIONS(6091), - [anon_sym_hide] = ACTIONS(6091), - [anon_sym_hide_DASHenv] = ACTIONS(6091), - [anon_sym_overlay] = ACTIONS(6091), - [anon_sym_new] = ACTIONS(6091), - [anon_sym_as] = ACTIONS(6091), - [anon_sym_PLUS] = ACTIONS(189), - [aux_sym__val_number_decimal_token1] = ACTIONS(6099), - [aux_sym__val_number_decimal_token2] = ACTIONS(6101), - [anon_sym_DOT2] = ACTIONS(6103), - [aux_sym__val_number_decimal_token3] = ACTIONS(6105), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(6107), - [aux_sym__val_number_token5] = ACTIONS(2714), - [aux_sym__val_number_token6] = ACTIONS(6107), - [anon_sym_DQUOTE] = ACTIONS(2724), - [sym__str_single_quotes] = ACTIONS(2726), - [sym__str_back_ticks] = ACTIONS(2726), - [aux_sym__record_key_token2] = ACTIONS(225), + [2592] = { + [sym_cell_path] = STATE(2750), + [sym_path] = STATE(2613), + [sym_comment] = STATE(2592), + [anon_sym_LBRACK] = ACTIONS(994), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_DOLLAR] = ACTIONS(992), + [anon_sym_GT] = ACTIONS(992), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_in] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_DOT_DOT] = ACTIONS(992), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_STAR_STAR] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_SLASH] = ACTIONS(992), + [anon_sym_mod] = ACTIONS(994), + [anon_sym_SLASH_SLASH] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_bit_DASHshl] = ACTIONS(994), + [anon_sym_bit_DASHshr] = ACTIONS(994), + [anon_sym_EQ_EQ] = ACTIONS(994), + [anon_sym_BANG_EQ] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(992), + [anon_sym_LT_EQ] = ACTIONS(994), + [anon_sym_GT_EQ] = ACTIONS(994), + [anon_sym_not_DASHin] = ACTIONS(994), + [anon_sym_starts_DASHwith] = ACTIONS(994), + [anon_sym_ends_DASHwith] = ACTIONS(994), + [anon_sym_EQ_TILDE] = ACTIONS(994), + [anon_sym_BANG_TILDE] = ACTIONS(994), + [anon_sym_bit_DASHand] = ACTIONS(994), + [anon_sym_bit_DASHxor] = ACTIONS(994), + [anon_sym_bit_DASHor] = ACTIONS(994), + [anon_sym_and] = ACTIONS(994), + [anon_sym_xor] = ACTIONS(994), + [anon_sym_or] = ACTIONS(994), + [anon_sym_not] = ACTIONS(992), + [anon_sym_DOT_DOT2] = ACTIONS(992), + [anon_sym_DOT] = ACTIONS(6549), + [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), + [anon_sym_DOT2] = ACTIONS(992), + [aux_sym__val_number_decimal_token3] = 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_POUND] = ACTIONS(3), }, - [2419] = { - [sym_comment] = STATE(2419), + [2593] = { + [sym_comment] = STATE(2593), + [anon_sym_SEMI] = ACTIONS(1061), + [anon_sym_LF] = ACTIONS(1063), [anon_sym_LBRACK] = ACTIONS(1061), - [anon_sym_COMMA] = ACTIONS(1061), [anon_sym_LPAREN] = ACTIONS(1061), + [anon_sym_RPAREN] = ACTIONS(1061), + [anon_sym_PIPE] = ACTIONS(1061), [anon_sym_DOLLAR] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1059), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_DASH_DASH] = ACTIONS(1061), + [anon_sym_DASH] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1061), [anon_sym_LBRACE] = ACTIONS(1061), [anon_sym_RBRACE] = ACTIONS(1061), - [anon_sym__] = ACTIONS(1059), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), + [anon_sym_DOT_DOT] = ACTIONS(1061), + [anon_sym_STAR] = ACTIONS(1061), [anon_sym_STAR_STAR] = ACTIONS(1061), [anon_sym_PLUS_PLUS] = ACTIONS(1061), - [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1061), [anon_sym_mod] = ACTIONS(1061), [anon_sym_SLASH_SLASH] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1059), + [anon_sym_PLUS] = ACTIONS(1061), [anon_sym_bit_DASHshl] = ACTIONS(1061), [anon_sym_bit_DASHshr] = ACTIONS(1061), [anon_sym_EQ_EQ] = ACTIONS(1061), [anon_sym_BANG_EQ] = ACTIONS(1061), - [anon_sym_LT2] = ACTIONS(1059), + [anon_sym_LT2] = ACTIONS(1061), [anon_sym_LT_EQ] = ACTIONS(1061), [anon_sym_GT_EQ] = ACTIONS(1061), [anon_sym_not_DASHin] = ACTIONS(1061), @@ -300973,14 +302228,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(1061), [anon_sym_xor] = ACTIONS(1061), [anon_sym_or] = ACTIONS(1061), + [anon_sym_not] = ACTIONS(1061), [anon_sym_DOT_DOT_EQ] = ACTIONS(1061), [anon_sym_DOT_DOT_LT] = ACTIONS(1061), [anon_sym_null] = ACTIONS(1061), [anon_sym_true] = ACTIONS(1061), [anon_sym_false] = ACTIONS(1061), - [aux_sym__val_number_decimal_token1] = ACTIONS(1059), + [aux_sym__val_number_decimal_token1] = ACTIONS(1061), [aux_sym__val_number_decimal_token2] = ACTIONS(1061), - [anon_sym_DOT2] = ACTIONS(1059), + [anon_sym_DOT2] = ACTIONS(1061), [aux_sym__val_number_decimal_token3] = ACTIONS(1061), [aux_sym__val_number_token1] = ACTIONS(1061), [aux_sym__val_number_token2] = ACTIONS(1061), @@ -300988,4167 +302244,3036 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token4] = ACTIONS(1061), [aux_sym__val_number_token5] = ACTIONS(1061), [aux_sym__val_number_token6] = ACTIONS(1061), - [anon_sym_0b] = ACTIONS(1059), - [anon_sym_0o] = ACTIONS(1059), - [anon_sym_0x] = ACTIONS(1059), + [anon_sym_0b] = ACTIONS(1061), + [anon_sym_0o] = ACTIONS(1061), + [anon_sym_0x] = ACTIONS(1061), [sym_val_date] = ACTIONS(1061), [anon_sym_DQUOTE] = ACTIONS(1061), [sym__str_single_quotes] = ACTIONS(1061), [sym__str_back_ticks] = ACTIONS(1061), - [anon_sym_err_GT] = ACTIONS(1061), - [anon_sym_out_GT] = ACTIONS(1061), - [anon_sym_e_GT] = ACTIONS(1061), - [anon_sym_o_GT] = ACTIONS(1061), - [anon_sym_err_PLUSout_GT] = ACTIONS(1061), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1061), - [anon_sym_o_PLUSe_GT] = ACTIONS(1061), - [anon_sym_e_PLUSo_GT] = ACTIONS(1061), - [aux_sym_unquoted_token1] = ACTIONS(1059), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1061), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1061), + [anon_sym_POUND] = ACTIONS(113), }, - [2420] = { - [sym_comment] = STATE(2420), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_COMMA] = ACTIONS(1065), - [anon_sym_LPAREN] = ACTIONS(1065), - [anon_sym_DOLLAR] = ACTIONS(1065), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(1065), - [anon_sym_RBRACE] = ACTIONS(1065), - [anon_sym__] = ACTIONS(1063), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_STAR_STAR] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_SLASH] = ACTIONS(1063), - [anon_sym_mod] = ACTIONS(1065), - [anon_sym_SLASH_SLASH] = ACTIONS(1065), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_bit_DASHshl] = ACTIONS(1065), - [anon_sym_bit_DASHshr] = ACTIONS(1065), - [anon_sym_EQ_EQ] = ACTIONS(1065), - [anon_sym_BANG_EQ] = ACTIONS(1065), - [anon_sym_LT2] = ACTIONS(1063), - [anon_sym_LT_EQ] = ACTIONS(1065), - [anon_sym_GT_EQ] = ACTIONS(1065), - [anon_sym_not_DASHin] = ACTIONS(1065), - [anon_sym_starts_DASHwith] = ACTIONS(1065), - [anon_sym_ends_DASHwith] = ACTIONS(1065), - [anon_sym_EQ_TILDE] = ACTIONS(1065), - [anon_sym_BANG_TILDE] = ACTIONS(1065), - [anon_sym_bit_DASHand] = ACTIONS(1065), - [anon_sym_bit_DASHxor] = ACTIONS(1065), - [anon_sym_bit_DASHor] = ACTIONS(1065), - [anon_sym_and] = ACTIONS(1065), - [anon_sym_xor] = ACTIONS(1065), - [anon_sym_or] = ACTIONS(1065), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1065), - [anon_sym_DOT_DOT_LT] = ACTIONS(1065), - [anon_sym_null] = ACTIONS(1065), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [aux_sym__val_number_decimal_token1] = ACTIONS(1063), - [aux_sym__val_number_decimal_token2] = ACTIONS(1065), - [anon_sym_DOT2] = ACTIONS(1063), - [aux_sym__val_number_decimal_token3] = ACTIONS(1065), - [aux_sym__val_number_token1] = ACTIONS(1065), - [aux_sym__val_number_token2] = ACTIONS(1065), - [aux_sym__val_number_token3] = ACTIONS(1065), - [aux_sym__val_number_token4] = ACTIONS(1065), - [aux_sym__val_number_token5] = ACTIONS(1065), - [aux_sym__val_number_token6] = ACTIONS(1065), - [anon_sym_0b] = ACTIONS(1063), - [anon_sym_0o] = ACTIONS(1063), - [anon_sym_0x] = ACTIONS(1063), - [sym_val_date] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(1065), - [sym__str_single_quotes] = ACTIONS(1065), - [sym__str_back_ticks] = ACTIONS(1065), - [anon_sym_err_GT] = ACTIONS(1065), - [anon_sym_out_GT] = ACTIONS(1065), - [anon_sym_e_GT] = ACTIONS(1065), - [anon_sym_o_GT] = ACTIONS(1065), - [anon_sym_err_PLUSout_GT] = ACTIONS(1065), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1065), - [anon_sym_o_PLUSe_GT] = ACTIONS(1065), - [anon_sym_e_PLUSo_GT] = ACTIONS(1065), - [aux_sym_unquoted_token1] = ACTIONS(1063), - [anon_sym_POUND] = ACTIONS(3), + [2594] = { + [sym_comment] = STATE(2594), + [anon_sym_SEMI] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_RPAREN] = ACTIONS(1171), + [anon_sym_PIPE] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(113), }, - [2421] = { - [sym_cell_path] = STATE(3032), - [sym_path] = STATE(2528), - [sym_comment] = STATE(2421), - [anon_sym_SEMI] = ACTIONS(1154), - [anon_sym_LF] = ACTIONS(1156), - [anon_sym_LBRACK] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_RPAREN] = ACTIONS(1154), - [anon_sym_PIPE] = ACTIONS(1154), - [anon_sym_DOLLAR] = ACTIONS(1154), - [anon_sym_GT] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [anon_sym_DASH] = ACTIONS(1154), - [anon_sym_in] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(1154), - [anon_sym_RBRACE] = ACTIONS(1154), - [anon_sym_DOT_DOT] = ACTIONS(1154), - [anon_sym_STAR] = ACTIONS(1154), - [anon_sym_STAR_STAR] = ACTIONS(1154), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_SLASH] = ACTIONS(1154), - [anon_sym_mod] = ACTIONS(1154), - [anon_sym_SLASH_SLASH] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1154), - [anon_sym_bit_DASHshl] = ACTIONS(1154), - [anon_sym_bit_DASHshr] = ACTIONS(1154), - [anon_sym_EQ_EQ] = ACTIONS(1154), - [anon_sym_BANG_EQ] = ACTIONS(1154), - [anon_sym_LT2] = ACTIONS(1154), - [anon_sym_LT_EQ] = ACTIONS(1154), - [anon_sym_GT_EQ] = ACTIONS(1154), - [anon_sym_not_DASHin] = ACTIONS(1154), - [anon_sym_starts_DASHwith] = ACTIONS(1154), - [anon_sym_ends_DASHwith] = ACTIONS(1154), - [anon_sym_EQ_TILDE] = ACTIONS(1154), - [anon_sym_BANG_TILDE] = ACTIONS(1154), - [anon_sym_bit_DASHand] = ACTIONS(1154), - [anon_sym_bit_DASHxor] = ACTIONS(1154), - [anon_sym_bit_DASHor] = ACTIONS(1154), - [anon_sym_and] = ACTIONS(1154), - [anon_sym_xor] = ACTIONS(1154), - [anon_sym_or] = ACTIONS(1154), - [anon_sym_not] = ACTIONS(1154), - [anon_sym_DOT] = ACTIONS(6145), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1154), - [anon_sym_DOT_DOT_LT] = ACTIONS(1154), - [anon_sym_null] = ACTIONS(1154), - [anon_sym_true] = ACTIONS(1154), - [anon_sym_false] = ACTIONS(1154), - [aux_sym__val_number_decimal_token1] = ACTIONS(1154), - [aux_sym__val_number_decimal_token2] = ACTIONS(1154), - [anon_sym_DOT2] = ACTIONS(1154), - [aux_sym__val_number_decimal_token3] = ACTIONS(1154), - [aux_sym__val_number_token1] = ACTIONS(1154), - [aux_sym__val_number_token2] = ACTIONS(1154), - [aux_sym__val_number_token3] = ACTIONS(1154), - [aux_sym__val_number_token4] = ACTIONS(1154), - [aux_sym__val_number_token5] = ACTIONS(1154), - [aux_sym__val_number_token6] = ACTIONS(1154), - [anon_sym_0b] = ACTIONS(1154), - [anon_sym_0o] = ACTIONS(1154), - [anon_sym_0x] = ACTIONS(1154), - [sym_val_date] = ACTIONS(1154), - [anon_sym_DQUOTE] = ACTIONS(1154), - [sym__str_single_quotes] = ACTIONS(1154), - [sym__str_back_ticks] = ACTIONS(1154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1154), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1154), + [2595] = { + [sym_comment] = STATE(2595), + [anon_sym_export] = ACTIONS(6551), + [anon_sym_alias] = ACTIONS(6551), + [anon_sym_let] = ACTIONS(6551), + [anon_sym_let_DASHenv] = ACTIONS(6551), + [anon_sym_mut] = ACTIONS(6551), + [anon_sym_const] = ACTIONS(6551), + [anon_sym_SEMI] = ACTIONS(6551), + [sym_cmd_identifier] = ACTIONS(6551), + [anon_sym_LF] = ACTIONS(6553), + [anon_sym_def] = ACTIONS(6551), + [anon_sym_export_DASHenv] = ACTIONS(6551), + [anon_sym_extern] = ACTIONS(6551), + [anon_sym_module] = ACTIONS(6551), + [anon_sym_use] = ACTIONS(6551), + [anon_sym_LBRACK] = ACTIONS(6551), + [anon_sym_LPAREN] = ACTIONS(6551), + [anon_sym_DOLLAR] = ACTIONS(6551), + [anon_sym_error] = ACTIONS(6551), + [anon_sym_DASH] = ACTIONS(6551), + [anon_sym_break] = ACTIONS(6551), + [anon_sym_continue] = ACTIONS(6551), + [anon_sym_for] = ACTIONS(6551), + [anon_sym_loop] = ACTIONS(6551), + [anon_sym_while] = ACTIONS(6551), + [anon_sym_do] = ACTIONS(6551), + [anon_sym_if] = ACTIONS(6551), + [anon_sym_match] = ACTIONS(6551), + [anon_sym_LBRACE] = ACTIONS(6551), + [anon_sym_DOT_DOT] = ACTIONS(6551), + [anon_sym_try] = ACTIONS(6551), + [anon_sym_return] = ACTIONS(6551), + [anon_sym_source] = ACTIONS(6551), + [anon_sym_source_DASHenv] = ACTIONS(6551), + [anon_sym_register] = ACTIONS(6551), + [anon_sym_hide] = ACTIONS(6551), + [anon_sym_hide_DASHenv] = ACTIONS(6551), + [anon_sym_overlay] = ACTIONS(6551), + [anon_sym_where] = ACTIONS(6551), + [anon_sym_not] = ACTIONS(6551), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6551), + [anon_sym_DOT_DOT_LT] = ACTIONS(6551), + [anon_sym_null] = ACTIONS(6551), + [anon_sym_true] = ACTIONS(6551), + [anon_sym_false] = ACTIONS(6551), + [aux_sym__val_number_decimal_token1] = ACTIONS(6551), + [aux_sym__val_number_decimal_token2] = ACTIONS(6551), + [anon_sym_DOT2] = ACTIONS(6551), + [aux_sym__val_number_decimal_token3] = ACTIONS(6551), + [aux_sym__val_number_token1] = ACTIONS(6551), + [aux_sym__val_number_token2] = ACTIONS(6551), + [aux_sym__val_number_token3] = ACTIONS(6551), + [aux_sym__val_number_token4] = ACTIONS(6551), + [aux_sym__val_number_token5] = ACTIONS(6551), + [aux_sym__val_number_token6] = ACTIONS(6551), + [anon_sym_0b] = ACTIONS(6551), + [anon_sym_0o] = ACTIONS(6551), + [anon_sym_0x] = ACTIONS(6551), + [sym_val_date] = ACTIONS(6551), + [anon_sym_DQUOTE] = ACTIONS(6551), + [sym__str_single_quotes] = ACTIONS(6551), + [sym__str_back_ticks] = ACTIONS(6551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6551), + [anon_sym_CARET] = ACTIONS(6551), [anon_sym_POUND] = ACTIONS(113), }, - [2422] = { - [sym_comment] = STATE(2422), - [anon_sym_SEMI] = ACTIONS(1158), - [anon_sym_LF] = ACTIONS(1160), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_LPAREN] = ACTIONS(1158), - [anon_sym_RPAREN] = ACTIONS(1158), - [anon_sym_PIPE] = ACTIONS(1158), - [anon_sym_DOLLAR] = ACTIONS(1158), - [anon_sym_GT] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_in] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1158), - [anon_sym_RBRACE] = ACTIONS(1158), - [anon_sym_DOT_DOT] = ACTIONS(1158), - [anon_sym_STAR] = ACTIONS(1158), - [anon_sym_STAR_STAR] = ACTIONS(1158), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_SLASH] = ACTIONS(1158), - [anon_sym_mod] = ACTIONS(1158), - [anon_sym_SLASH_SLASH] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1158), - [anon_sym_bit_DASHshl] = ACTIONS(1158), - [anon_sym_bit_DASHshr] = ACTIONS(1158), - [anon_sym_EQ_EQ] = ACTIONS(1158), - [anon_sym_BANG_EQ] = ACTIONS(1158), - [anon_sym_LT2] = ACTIONS(1158), - [anon_sym_LT_EQ] = ACTIONS(1158), - [anon_sym_GT_EQ] = ACTIONS(1158), - [anon_sym_not_DASHin] = ACTIONS(1158), - [anon_sym_starts_DASHwith] = ACTIONS(1158), - [anon_sym_ends_DASHwith] = ACTIONS(1158), - [anon_sym_EQ_TILDE] = ACTIONS(1158), - [anon_sym_BANG_TILDE] = ACTIONS(1158), - [anon_sym_bit_DASHand] = ACTIONS(1158), - [anon_sym_bit_DASHxor] = ACTIONS(1158), - [anon_sym_bit_DASHor] = ACTIONS(1158), - [anon_sym_and] = ACTIONS(1158), - [anon_sym_xor] = ACTIONS(1158), - [anon_sym_or] = ACTIONS(1158), - [anon_sym_not] = ACTIONS(1158), - [anon_sym_DOT_DOT2] = ACTIONS(6147), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1158), - [anon_sym_DOT_DOT_LT] = ACTIONS(1158), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(6149), - [anon_sym_DOT_DOT_LT2] = ACTIONS(6149), - [anon_sym_null] = ACTIONS(1158), - [anon_sym_true] = ACTIONS(1158), - [anon_sym_false] = ACTIONS(1158), - [aux_sym__val_number_decimal_token1] = ACTIONS(1158), - [aux_sym__val_number_decimal_token2] = ACTIONS(1158), - [anon_sym_DOT2] = ACTIONS(1158), - [aux_sym__val_number_decimal_token3] = ACTIONS(1158), - [aux_sym__val_number_token1] = ACTIONS(1158), - [aux_sym__val_number_token2] = ACTIONS(1158), - [aux_sym__val_number_token3] = ACTIONS(1158), - [aux_sym__val_number_token4] = ACTIONS(1158), - [aux_sym__val_number_token5] = ACTIONS(1158), - [aux_sym__val_number_token6] = ACTIONS(1158), - [anon_sym_0b] = ACTIONS(1158), - [anon_sym_0o] = ACTIONS(1158), - [anon_sym_0x] = ACTIONS(1158), - [sym_val_date] = ACTIONS(1158), - [anon_sym_DQUOTE] = ACTIONS(1158), - [sym__str_single_quotes] = ACTIONS(1158), - [sym__str_back_ticks] = ACTIONS(1158), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1158), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1158), + [2596] = { + [sym_comment] = STATE(2596), + [anon_sym_SEMI] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_RPAREN] = ACTIONS(1171), + [anon_sym_PIPE] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, - [2423] = { - [sym_cell_path] = STATE(3059), - [sym_path] = STATE(2528), - [sym_comment] = STATE(2423), - [anon_sym_SEMI] = ACTIONS(1190), - [anon_sym_LF] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(1190), - [anon_sym_RPAREN] = ACTIONS(1190), - [anon_sym_PIPE] = ACTIONS(1190), - [anon_sym_DOLLAR] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1190), - [anon_sym_DASH_DASH] = ACTIONS(1190), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_in] = ACTIONS(1190), - [anon_sym_LBRACE] = ACTIONS(1190), - [anon_sym_RBRACE] = ACTIONS(1190), - [anon_sym_DOT_DOT] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1190), - [anon_sym_STAR_STAR] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1190), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_mod] = ACTIONS(1190), - [anon_sym_SLASH_SLASH] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_bit_DASHshl] = ACTIONS(1190), - [anon_sym_bit_DASHshr] = ACTIONS(1190), - [anon_sym_EQ_EQ] = ACTIONS(1190), - [anon_sym_BANG_EQ] = ACTIONS(1190), - [anon_sym_LT2] = ACTIONS(1190), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_not_DASHin] = ACTIONS(1190), - [anon_sym_starts_DASHwith] = ACTIONS(1190), - [anon_sym_ends_DASHwith] = ACTIONS(1190), - [anon_sym_EQ_TILDE] = ACTIONS(1190), - [anon_sym_BANG_TILDE] = ACTIONS(1190), - [anon_sym_bit_DASHand] = ACTIONS(1190), - [anon_sym_bit_DASHxor] = ACTIONS(1190), - [anon_sym_bit_DASHor] = ACTIONS(1190), - [anon_sym_and] = ACTIONS(1190), - [anon_sym_xor] = ACTIONS(1190), - [anon_sym_or] = ACTIONS(1190), - [anon_sym_not] = ACTIONS(1190), - [anon_sym_DOT] = ACTIONS(6145), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1190), - [anon_sym_DOT_DOT_LT] = ACTIONS(1190), - [anon_sym_null] = ACTIONS(1190), - [anon_sym_true] = ACTIONS(1190), - [anon_sym_false] = ACTIONS(1190), - [aux_sym__val_number_decimal_token1] = ACTIONS(1190), - [aux_sym__val_number_decimal_token2] = ACTIONS(1190), - [anon_sym_DOT2] = ACTIONS(1190), - [aux_sym__val_number_decimal_token3] = ACTIONS(1190), - [aux_sym__val_number_token1] = ACTIONS(1190), - [aux_sym__val_number_token2] = ACTIONS(1190), - [aux_sym__val_number_token3] = ACTIONS(1190), - [aux_sym__val_number_token4] = ACTIONS(1190), - [aux_sym__val_number_token5] = ACTIONS(1190), - [aux_sym__val_number_token6] = ACTIONS(1190), - [anon_sym_0b] = ACTIONS(1190), - [anon_sym_0o] = ACTIONS(1190), - [anon_sym_0x] = ACTIONS(1190), - [sym_val_date] = ACTIONS(1190), - [anon_sym_DQUOTE] = ACTIONS(1190), - [sym__str_single_quotes] = ACTIONS(1190), - [sym__str_back_ticks] = ACTIONS(1190), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1190), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1190), + [2597] = { + [sym_comment] = STATE(2597), + [anon_sym_export] = ACTIONS(6555), + [anon_sym_alias] = ACTIONS(6555), + [anon_sym_let] = ACTIONS(6555), + [anon_sym_let_DASHenv] = ACTIONS(6555), + [anon_sym_mut] = ACTIONS(6555), + [anon_sym_const] = ACTIONS(6555), + [anon_sym_SEMI] = ACTIONS(6555), + [sym_cmd_identifier] = ACTIONS(6555), + [anon_sym_LF] = ACTIONS(6557), + [anon_sym_def] = ACTIONS(6555), + [anon_sym_export_DASHenv] = ACTIONS(6555), + [anon_sym_extern] = ACTIONS(6555), + [anon_sym_module] = ACTIONS(6555), + [anon_sym_use] = ACTIONS(6555), + [anon_sym_LBRACK] = ACTIONS(6555), + [anon_sym_LPAREN] = ACTIONS(6555), + [anon_sym_DOLLAR] = ACTIONS(6555), + [anon_sym_error] = ACTIONS(6555), + [anon_sym_DASH] = ACTIONS(6555), + [anon_sym_break] = ACTIONS(6555), + [anon_sym_continue] = ACTIONS(6555), + [anon_sym_for] = ACTIONS(6555), + [anon_sym_loop] = ACTIONS(6555), + [anon_sym_while] = ACTIONS(6555), + [anon_sym_do] = ACTIONS(6555), + [anon_sym_if] = ACTIONS(6555), + [anon_sym_match] = ACTIONS(6555), + [anon_sym_LBRACE] = ACTIONS(6555), + [anon_sym_DOT_DOT] = ACTIONS(6555), + [anon_sym_try] = ACTIONS(6555), + [anon_sym_return] = ACTIONS(6555), + [anon_sym_source] = ACTIONS(6555), + [anon_sym_source_DASHenv] = ACTIONS(6555), + [anon_sym_register] = ACTIONS(6555), + [anon_sym_hide] = ACTIONS(6555), + [anon_sym_hide_DASHenv] = ACTIONS(6555), + [anon_sym_overlay] = ACTIONS(6555), + [anon_sym_where] = ACTIONS(6555), + [anon_sym_not] = ACTIONS(6555), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6555), + [anon_sym_DOT_DOT_LT] = ACTIONS(6555), + [anon_sym_null] = ACTIONS(6555), + [anon_sym_true] = ACTIONS(6555), + [anon_sym_false] = ACTIONS(6555), + [aux_sym__val_number_decimal_token1] = ACTIONS(6555), + [aux_sym__val_number_decimal_token2] = ACTIONS(6555), + [anon_sym_DOT2] = ACTIONS(6555), + [aux_sym__val_number_decimal_token3] = ACTIONS(6555), + [aux_sym__val_number_token1] = ACTIONS(6555), + [aux_sym__val_number_token2] = ACTIONS(6555), + [aux_sym__val_number_token3] = ACTIONS(6555), + [aux_sym__val_number_token4] = ACTIONS(6555), + [aux_sym__val_number_token5] = ACTIONS(6555), + [aux_sym__val_number_token6] = ACTIONS(6555), + [anon_sym_0b] = ACTIONS(6555), + [anon_sym_0o] = ACTIONS(6555), + [anon_sym_0x] = ACTIONS(6555), + [sym_val_date] = ACTIONS(6555), + [anon_sym_DQUOTE] = ACTIONS(6555), + [sym__str_single_quotes] = ACTIONS(6555), + [sym__str_back_ticks] = ACTIONS(6555), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6555), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6555), + [anon_sym_CARET] = ACTIONS(6555), [anon_sym_POUND] = ACTIONS(113), }, - [2424] = { - [sym_comment] = STATE(2424), - [ts_builtin_sym_end] = ACTIONS(1196), - [anon_sym_export] = ACTIONS(1194), - [anon_sym_alias] = ACTIONS(1194), - [anon_sym_let] = ACTIONS(1194), - [anon_sym_let_DASHenv] = ACTIONS(1194), - [anon_sym_mut] = ACTIONS(1194), - [anon_sym_const] = ACTIONS(1194), - [anon_sym_SEMI] = ACTIONS(1194), - [sym_cmd_identifier] = ACTIONS(1194), - [anon_sym_LF] = ACTIONS(1196), - [anon_sym_def] = ACTIONS(1194), - [anon_sym_export_DASHenv] = ACTIONS(1194), - [anon_sym_extern] = ACTIONS(1194), - [anon_sym_module] = ACTIONS(1194), - [anon_sym_use] = ACTIONS(1194), - [anon_sym_LBRACK] = ACTIONS(1194), - [anon_sym_LPAREN] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1194), - [anon_sym_error] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_break] = ACTIONS(1194), - [anon_sym_continue] = ACTIONS(1194), - [anon_sym_for] = ACTIONS(1194), - [anon_sym_loop] = ACTIONS(1194), - [anon_sym_while] = ACTIONS(1194), - [anon_sym_do] = ACTIONS(1194), - [anon_sym_if] = ACTIONS(1194), - [anon_sym_match] = ACTIONS(1194), - [anon_sym_LBRACE] = ACTIONS(1194), - [anon_sym_DOT_DOT] = ACTIONS(1194), - [anon_sym_try] = ACTIONS(1194), - [anon_sym_return] = ACTIONS(1194), - [anon_sym_source] = ACTIONS(1194), - [anon_sym_source_DASHenv] = ACTIONS(1194), - [anon_sym_register] = ACTIONS(1194), - [anon_sym_hide] = ACTIONS(1194), - [anon_sym_hide_DASHenv] = ACTIONS(1194), - [anon_sym_overlay] = ACTIONS(1194), - [anon_sym_as] = ACTIONS(1194), - [anon_sym_where] = ACTIONS(1194), - [anon_sym_not] = ACTIONS(1194), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1194), - [anon_sym_DOT_DOT_LT] = ACTIONS(1194), - [anon_sym_null] = ACTIONS(1194), - [anon_sym_true] = ACTIONS(1194), - [anon_sym_false] = ACTIONS(1194), - [aux_sym__val_number_decimal_token1] = ACTIONS(1194), - [aux_sym__val_number_decimal_token2] = ACTIONS(1194), - [anon_sym_DOT2] = ACTIONS(1194), - [aux_sym__val_number_decimal_token3] = ACTIONS(1194), - [aux_sym__val_number_token1] = ACTIONS(1194), - [aux_sym__val_number_token2] = ACTIONS(1194), - [aux_sym__val_number_token3] = ACTIONS(1194), - [aux_sym__val_number_token4] = ACTIONS(1194), - [aux_sym__val_number_token5] = ACTIONS(1194), - [aux_sym__val_number_token6] = ACTIONS(1194), - [anon_sym_0b] = ACTIONS(1194), - [anon_sym_0o] = ACTIONS(1194), - [anon_sym_0x] = ACTIONS(1194), - [sym_val_date] = ACTIONS(1194), - [anon_sym_DQUOTE] = ACTIONS(1194), - [sym__str_single_quotes] = ACTIONS(1194), - [sym__str_back_ticks] = ACTIONS(1194), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1194), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1194), - [anon_sym_CARET] = ACTIONS(1194), + [2598] = { + [sym_comment] = STATE(2598), + [anon_sym_export] = ACTIONS(6401), + [anon_sym_alias] = ACTIONS(6401), + [anon_sym_let] = ACTIONS(6401), + [anon_sym_let_DASHenv] = ACTIONS(6401), + [anon_sym_mut] = ACTIONS(6401), + [anon_sym_const] = ACTIONS(6401), + [anon_sym_SEMI] = ACTIONS(6401), + [sym_cmd_identifier] = ACTIONS(6401), + [anon_sym_LF] = ACTIONS(6559), + [anon_sym_def] = ACTIONS(6401), + [anon_sym_export_DASHenv] = ACTIONS(6401), + [anon_sym_extern] = ACTIONS(6401), + [anon_sym_module] = ACTIONS(6401), + [anon_sym_use] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6401), + [anon_sym_LPAREN] = ACTIONS(6401), + [anon_sym_DOLLAR] = ACTIONS(6401), + [anon_sym_error] = ACTIONS(6401), + [anon_sym_DASH] = ACTIONS(6401), + [anon_sym_break] = ACTIONS(6401), + [anon_sym_continue] = ACTIONS(6401), + [anon_sym_for] = ACTIONS(6401), + [anon_sym_loop] = ACTIONS(6401), + [anon_sym_while] = ACTIONS(6401), + [anon_sym_do] = ACTIONS(6401), + [anon_sym_if] = ACTIONS(6401), + [anon_sym_match] = ACTIONS(6401), + [anon_sym_LBRACE] = ACTIONS(6401), + [anon_sym_DOT_DOT] = ACTIONS(6401), + [anon_sym_try] = ACTIONS(6401), + [anon_sym_return] = ACTIONS(6401), + [anon_sym_source] = ACTIONS(6401), + [anon_sym_source_DASHenv] = ACTIONS(6401), + [anon_sym_register] = ACTIONS(6401), + [anon_sym_hide] = ACTIONS(6401), + [anon_sym_hide_DASHenv] = ACTIONS(6401), + [anon_sym_overlay] = ACTIONS(6401), + [anon_sym_where] = ACTIONS(6401), + [anon_sym_not] = ACTIONS(6401), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6401), + [anon_sym_DOT_DOT_LT] = ACTIONS(6401), + [anon_sym_null] = ACTIONS(6401), + [anon_sym_true] = ACTIONS(6401), + [anon_sym_false] = ACTIONS(6401), + [aux_sym__val_number_decimal_token1] = ACTIONS(6401), + [aux_sym__val_number_decimal_token2] = ACTIONS(6401), + [anon_sym_DOT2] = ACTIONS(6401), + [aux_sym__val_number_decimal_token3] = ACTIONS(6401), + [aux_sym__val_number_token1] = ACTIONS(6401), + [aux_sym__val_number_token2] = ACTIONS(6401), + [aux_sym__val_number_token3] = ACTIONS(6401), + [aux_sym__val_number_token4] = ACTIONS(6401), + [aux_sym__val_number_token5] = ACTIONS(6401), + [aux_sym__val_number_token6] = ACTIONS(6401), + [anon_sym_0b] = ACTIONS(6401), + [anon_sym_0o] = ACTIONS(6401), + [anon_sym_0x] = ACTIONS(6401), + [sym_val_date] = ACTIONS(6401), + [anon_sym_DQUOTE] = ACTIONS(6401), + [sym__str_single_quotes] = ACTIONS(6401), + [sym__str_back_ticks] = ACTIONS(6401), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6401), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6401), + [anon_sym_CARET] = ACTIONS(6401), [anon_sym_POUND] = ACTIONS(113), }, - [2425] = { - [sym_comment] = STATE(2425), - [ts_builtin_sym_end] = ACTIONS(5173), - [anon_sym_export] = ACTIONS(5171), - [anon_sym_alias] = ACTIONS(5171), - [anon_sym_let] = ACTIONS(5171), - [anon_sym_let_DASHenv] = ACTIONS(5171), - [anon_sym_mut] = ACTIONS(5171), - [anon_sym_const] = ACTIONS(5171), - [anon_sym_SEMI] = ACTIONS(5171), - [sym_cmd_identifier] = ACTIONS(5171), - [anon_sym_LF] = ACTIONS(5173), - [anon_sym_def] = ACTIONS(5171), - [anon_sym_export_DASHenv] = ACTIONS(5171), - [anon_sym_extern] = ACTIONS(5171), - [anon_sym_module] = ACTIONS(5171), - [anon_sym_use] = ACTIONS(5171), - [anon_sym_LBRACK] = ACTIONS(5171), - [anon_sym_LPAREN] = ACTIONS(5171), - [anon_sym_DOLLAR] = ACTIONS(5171), - [anon_sym_error] = ACTIONS(5171), - [anon_sym_DASH_DASH] = ACTIONS(5171), - [anon_sym_DASH] = ACTIONS(5171), - [anon_sym_break] = ACTIONS(5171), - [anon_sym_continue] = ACTIONS(5171), - [anon_sym_for] = ACTIONS(5171), - [anon_sym_loop] = ACTIONS(5171), - [anon_sym_while] = ACTIONS(5171), - [anon_sym_do] = ACTIONS(5171), - [anon_sym_if] = ACTIONS(5171), - [anon_sym_match] = ACTIONS(5171), - [anon_sym_LBRACE] = ACTIONS(5171), - [anon_sym_DOT_DOT] = ACTIONS(5171), - [anon_sym_try] = ACTIONS(5171), - [anon_sym_return] = ACTIONS(5171), - [anon_sym_source] = ACTIONS(5171), - [anon_sym_source_DASHenv] = ACTIONS(5171), - [anon_sym_register] = ACTIONS(5171), - [anon_sym_hide] = ACTIONS(5171), - [anon_sym_hide_DASHenv] = ACTIONS(5171), - [anon_sym_overlay] = ACTIONS(5171), - [anon_sym_as] = ACTIONS(5171), - [anon_sym_where] = ACTIONS(5171), - [anon_sym_not] = ACTIONS(5171), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5171), - [anon_sym_DOT_DOT_LT] = ACTIONS(5171), - [anon_sym_null] = ACTIONS(5171), - [anon_sym_true] = ACTIONS(5171), - [anon_sym_false] = ACTIONS(5171), - [aux_sym__val_number_decimal_token1] = ACTIONS(5171), - [aux_sym__val_number_decimal_token2] = ACTIONS(5171), - [anon_sym_DOT2] = ACTIONS(5171), - [aux_sym__val_number_decimal_token3] = ACTIONS(5171), - [aux_sym__val_number_token1] = ACTIONS(5171), - [aux_sym__val_number_token2] = ACTIONS(5171), - [aux_sym__val_number_token3] = ACTIONS(5171), - [aux_sym__val_number_token4] = ACTIONS(5171), - [aux_sym__val_number_token5] = ACTIONS(5171), - [aux_sym__val_number_token6] = ACTIONS(5171), - [anon_sym_0b] = ACTIONS(5171), - [anon_sym_0o] = ACTIONS(5171), - [anon_sym_0x] = ACTIONS(5171), - [sym_val_date] = ACTIONS(5171), - [anon_sym_DQUOTE] = ACTIONS(5171), - [sym__str_single_quotes] = ACTIONS(5171), - [sym__str_back_ticks] = ACTIONS(5171), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5171), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5171), - [anon_sym_CARET] = ACTIONS(5171), + [2599] = { + [sym_comment] = STATE(2599), + [anon_sym_SEMI] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_RPAREN] = ACTIONS(1171), + [anon_sym_PIPE] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, - [2426] = { - [sym_comment] = STATE(2426), - [ts_builtin_sym_end] = ACTIONS(4002), - [anon_sym_export] = ACTIONS(4000), - [anon_sym_alias] = ACTIONS(4000), - [anon_sym_let] = ACTIONS(4000), - [anon_sym_let_DASHenv] = ACTIONS(4000), - [anon_sym_mut] = ACTIONS(4000), - [anon_sym_const] = ACTIONS(4000), - [anon_sym_SEMI] = ACTIONS(4000), - [sym_cmd_identifier] = ACTIONS(4000), - [anon_sym_LF] = ACTIONS(4002), - [anon_sym_def] = ACTIONS(4000), - [anon_sym_export_DASHenv] = ACTIONS(4000), - [anon_sym_extern] = ACTIONS(4000), - [anon_sym_module] = ACTIONS(4000), - [anon_sym_use] = ACTIONS(4000), - [anon_sym_LBRACK] = ACTIONS(4000), - [anon_sym_LPAREN] = ACTIONS(4000), - [anon_sym_DOLLAR] = ACTIONS(4000), - [anon_sym_error] = ACTIONS(4000), - [anon_sym_DASH_DASH] = ACTIONS(4000), - [anon_sym_DASH] = ACTIONS(4000), - [anon_sym_break] = ACTIONS(4000), - [anon_sym_continue] = ACTIONS(4000), - [anon_sym_for] = ACTIONS(4000), - [anon_sym_loop] = ACTIONS(4000), - [anon_sym_while] = ACTIONS(4000), - [anon_sym_do] = ACTIONS(4000), - [anon_sym_if] = ACTIONS(4000), - [anon_sym_match] = ACTIONS(4000), - [anon_sym_LBRACE] = ACTIONS(4000), - [anon_sym_DOT_DOT] = ACTIONS(4000), - [anon_sym_try] = ACTIONS(4000), - [anon_sym_return] = ACTIONS(4000), - [anon_sym_source] = ACTIONS(4000), - [anon_sym_source_DASHenv] = ACTIONS(4000), - [anon_sym_register] = ACTIONS(4000), - [anon_sym_hide] = ACTIONS(4000), - [anon_sym_hide_DASHenv] = ACTIONS(4000), - [anon_sym_overlay] = ACTIONS(4000), - [anon_sym_as] = ACTIONS(4000), - [anon_sym_where] = ACTIONS(4000), - [anon_sym_not] = ACTIONS(4000), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4000), - [anon_sym_DOT_DOT_LT] = ACTIONS(4000), - [anon_sym_null] = ACTIONS(4000), - [anon_sym_true] = ACTIONS(4000), - [anon_sym_false] = ACTIONS(4000), - [aux_sym__val_number_decimal_token1] = ACTIONS(4000), - [aux_sym__val_number_decimal_token2] = ACTIONS(4000), - [anon_sym_DOT2] = ACTIONS(4000), - [aux_sym__val_number_decimal_token3] = ACTIONS(4000), - [aux_sym__val_number_token1] = ACTIONS(4000), - [aux_sym__val_number_token2] = ACTIONS(4000), - [aux_sym__val_number_token3] = ACTIONS(4000), - [aux_sym__val_number_token4] = ACTIONS(4000), - [aux_sym__val_number_token5] = ACTIONS(4000), - [aux_sym__val_number_token6] = ACTIONS(4000), - [anon_sym_0b] = ACTIONS(4000), - [anon_sym_0o] = ACTIONS(4000), - [anon_sym_0x] = ACTIONS(4000), - [sym_val_date] = ACTIONS(4000), - [anon_sym_DQUOTE] = ACTIONS(4000), - [sym__str_single_quotes] = ACTIONS(4000), - [sym__str_back_ticks] = ACTIONS(4000), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4000), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4000), - [anon_sym_CARET] = ACTIONS(4000), + [2600] = { + [sym_comment] = STATE(2600), + [anon_sym_export] = ACTIONS(6561), + [anon_sym_alias] = ACTIONS(6561), + [anon_sym_let] = ACTIONS(6561), + [anon_sym_let_DASHenv] = ACTIONS(6561), + [anon_sym_mut] = ACTIONS(6561), + [anon_sym_const] = ACTIONS(6561), + [anon_sym_SEMI] = ACTIONS(6561), + [sym_cmd_identifier] = ACTIONS(6561), + [anon_sym_LF] = ACTIONS(6563), + [anon_sym_def] = ACTIONS(6561), + [anon_sym_export_DASHenv] = ACTIONS(6561), + [anon_sym_extern] = ACTIONS(6561), + [anon_sym_module] = ACTIONS(6561), + [anon_sym_use] = ACTIONS(6561), + [anon_sym_LBRACK] = ACTIONS(6561), + [anon_sym_LPAREN] = ACTIONS(6561), + [anon_sym_DOLLAR] = ACTIONS(6561), + [anon_sym_error] = ACTIONS(6561), + [anon_sym_DASH] = ACTIONS(6561), + [anon_sym_break] = ACTIONS(6561), + [anon_sym_continue] = ACTIONS(6561), + [anon_sym_for] = ACTIONS(6561), + [anon_sym_loop] = ACTIONS(6561), + [anon_sym_while] = ACTIONS(6561), + [anon_sym_do] = ACTIONS(6561), + [anon_sym_if] = ACTIONS(6561), + [anon_sym_match] = ACTIONS(6561), + [anon_sym_LBRACE] = ACTIONS(6561), + [anon_sym_DOT_DOT] = ACTIONS(6561), + [anon_sym_try] = ACTIONS(6561), + [anon_sym_return] = ACTIONS(6561), + [anon_sym_source] = ACTIONS(6561), + [anon_sym_source_DASHenv] = ACTIONS(6561), + [anon_sym_register] = ACTIONS(6561), + [anon_sym_hide] = ACTIONS(6561), + [anon_sym_hide_DASHenv] = ACTIONS(6561), + [anon_sym_overlay] = ACTIONS(6561), + [anon_sym_where] = ACTIONS(6561), + [anon_sym_not] = ACTIONS(6561), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6561), + [anon_sym_DOT_DOT_LT] = ACTIONS(6561), + [anon_sym_null] = ACTIONS(6561), + [anon_sym_true] = ACTIONS(6561), + [anon_sym_false] = ACTIONS(6561), + [aux_sym__val_number_decimal_token1] = ACTIONS(6561), + [aux_sym__val_number_decimal_token2] = ACTIONS(6561), + [anon_sym_DOT2] = ACTIONS(6561), + [aux_sym__val_number_decimal_token3] = ACTIONS(6561), + [aux_sym__val_number_token1] = ACTIONS(6561), + [aux_sym__val_number_token2] = ACTIONS(6561), + [aux_sym__val_number_token3] = ACTIONS(6561), + [aux_sym__val_number_token4] = ACTIONS(6561), + [aux_sym__val_number_token5] = ACTIONS(6561), + [aux_sym__val_number_token6] = ACTIONS(6561), + [anon_sym_0b] = ACTIONS(6561), + [anon_sym_0o] = ACTIONS(6561), + [anon_sym_0x] = ACTIONS(6561), + [sym_val_date] = ACTIONS(6561), + [anon_sym_DQUOTE] = ACTIONS(6561), + [sym__str_single_quotes] = ACTIONS(6561), + [sym__str_back_ticks] = ACTIONS(6561), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6561), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6561), + [anon_sym_CARET] = ACTIONS(6561), [anon_sym_POUND] = ACTIONS(113), }, - [2427] = { - [sym_cell_path] = STATE(3054), - [sym_path] = STATE(2528), - [sym_comment] = STATE(2427), - [anon_sym_SEMI] = ACTIONS(1148), - [anon_sym_LF] = ACTIONS(1150), - [anon_sym_LBRACK] = ACTIONS(1148), - [anon_sym_LPAREN] = ACTIONS(1148), - [anon_sym_RPAREN] = ACTIONS(1148), - [anon_sym_PIPE] = ACTIONS(1148), - [anon_sym_DOLLAR] = ACTIONS(1148), - [anon_sym_GT] = ACTIONS(1148), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_DASH] = ACTIONS(1148), - [anon_sym_in] = ACTIONS(1148), - [anon_sym_LBRACE] = ACTIONS(1148), - [anon_sym_RBRACE] = ACTIONS(1148), - [anon_sym_DOT_DOT] = ACTIONS(1148), - [anon_sym_STAR] = ACTIONS(1148), - [anon_sym_STAR_STAR] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_SLASH] = ACTIONS(1148), - [anon_sym_mod] = ACTIONS(1148), - [anon_sym_SLASH_SLASH] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1148), - [anon_sym_bit_DASHshl] = ACTIONS(1148), - [anon_sym_bit_DASHshr] = ACTIONS(1148), - [anon_sym_EQ_EQ] = ACTIONS(1148), - [anon_sym_BANG_EQ] = ACTIONS(1148), - [anon_sym_LT2] = ACTIONS(1148), - [anon_sym_LT_EQ] = ACTIONS(1148), - [anon_sym_GT_EQ] = ACTIONS(1148), - [anon_sym_not_DASHin] = ACTIONS(1148), - [anon_sym_starts_DASHwith] = ACTIONS(1148), - [anon_sym_ends_DASHwith] = ACTIONS(1148), - [anon_sym_EQ_TILDE] = ACTIONS(1148), - [anon_sym_BANG_TILDE] = ACTIONS(1148), - [anon_sym_bit_DASHand] = ACTIONS(1148), - [anon_sym_bit_DASHxor] = ACTIONS(1148), - [anon_sym_bit_DASHor] = ACTIONS(1148), - [anon_sym_and] = ACTIONS(1148), - [anon_sym_xor] = ACTIONS(1148), - [anon_sym_or] = ACTIONS(1148), - [anon_sym_not] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(6145), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1148), - [anon_sym_DOT_DOT_LT] = ACTIONS(1148), - [anon_sym_null] = ACTIONS(1148), - [anon_sym_true] = ACTIONS(1148), - [anon_sym_false] = ACTIONS(1148), - [aux_sym__val_number_decimal_token1] = ACTIONS(1148), - [aux_sym__val_number_decimal_token2] = ACTIONS(1148), - [anon_sym_DOT2] = ACTIONS(1148), - [aux_sym__val_number_decimal_token3] = ACTIONS(1148), - [aux_sym__val_number_token1] = ACTIONS(1148), - [aux_sym__val_number_token2] = ACTIONS(1148), - [aux_sym__val_number_token3] = ACTIONS(1148), - [aux_sym__val_number_token4] = ACTIONS(1148), - [aux_sym__val_number_token5] = ACTIONS(1148), - [aux_sym__val_number_token6] = ACTIONS(1148), - [anon_sym_0b] = ACTIONS(1148), - [anon_sym_0o] = ACTIONS(1148), - [anon_sym_0x] = ACTIONS(1148), - [sym_val_date] = ACTIONS(1148), - [anon_sym_DQUOTE] = ACTIONS(1148), - [sym__str_single_quotes] = ACTIONS(1148), - [sym__str_back_ticks] = ACTIONS(1148), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1148), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1148), + [2601] = { + [sym_comment] = STATE(2601), + [anon_sym_export] = ACTIONS(6565), + [anon_sym_alias] = ACTIONS(6565), + [anon_sym_let] = ACTIONS(6565), + [anon_sym_let_DASHenv] = ACTIONS(6565), + [anon_sym_mut] = ACTIONS(6565), + [anon_sym_const] = ACTIONS(6565), + [anon_sym_SEMI] = ACTIONS(6565), + [sym_cmd_identifier] = ACTIONS(6565), + [anon_sym_LF] = ACTIONS(6567), + [anon_sym_def] = ACTIONS(6565), + [anon_sym_export_DASHenv] = ACTIONS(6565), + [anon_sym_extern] = ACTIONS(6565), + [anon_sym_module] = ACTIONS(6565), + [anon_sym_use] = ACTIONS(6565), + [anon_sym_LBRACK] = ACTIONS(6565), + [anon_sym_LPAREN] = ACTIONS(6565), + [anon_sym_DOLLAR] = ACTIONS(6565), + [anon_sym_error] = ACTIONS(6565), + [anon_sym_DASH] = ACTIONS(6565), + [anon_sym_break] = ACTIONS(6565), + [anon_sym_continue] = ACTIONS(6565), + [anon_sym_for] = ACTIONS(6565), + [anon_sym_loop] = ACTIONS(6565), + [anon_sym_while] = ACTIONS(6565), + [anon_sym_do] = ACTIONS(6565), + [anon_sym_if] = ACTIONS(6565), + [anon_sym_match] = ACTIONS(6565), + [anon_sym_LBRACE] = ACTIONS(6565), + [anon_sym_DOT_DOT] = ACTIONS(6565), + [anon_sym_try] = ACTIONS(6565), + [anon_sym_return] = ACTIONS(6565), + [anon_sym_source] = ACTIONS(6565), + [anon_sym_source_DASHenv] = ACTIONS(6565), + [anon_sym_register] = ACTIONS(6565), + [anon_sym_hide] = ACTIONS(6565), + [anon_sym_hide_DASHenv] = ACTIONS(6565), + [anon_sym_overlay] = ACTIONS(6565), + [anon_sym_where] = ACTIONS(6565), + [anon_sym_not] = ACTIONS(6565), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6565), + [anon_sym_DOT_DOT_LT] = ACTIONS(6565), + [anon_sym_null] = ACTIONS(6565), + [anon_sym_true] = ACTIONS(6565), + [anon_sym_false] = ACTIONS(6565), + [aux_sym__val_number_decimal_token1] = ACTIONS(6565), + [aux_sym__val_number_decimal_token2] = ACTIONS(6565), + [anon_sym_DOT2] = ACTIONS(6565), + [aux_sym__val_number_decimal_token3] = ACTIONS(6565), + [aux_sym__val_number_token1] = ACTIONS(6565), + [aux_sym__val_number_token2] = ACTIONS(6565), + [aux_sym__val_number_token3] = ACTIONS(6565), + [aux_sym__val_number_token4] = ACTIONS(6565), + [aux_sym__val_number_token5] = ACTIONS(6565), + [aux_sym__val_number_token6] = ACTIONS(6565), + [anon_sym_0b] = ACTIONS(6565), + [anon_sym_0o] = ACTIONS(6565), + [anon_sym_0x] = ACTIONS(6565), + [sym_val_date] = ACTIONS(6565), + [anon_sym_DQUOTE] = ACTIONS(6565), + [sym__str_single_quotes] = ACTIONS(6565), + [sym__str_back_ticks] = ACTIONS(6565), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6565), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6565), + [anon_sym_CARET] = ACTIONS(6565), [anon_sym_POUND] = ACTIONS(113), }, - [2428] = { - [sym_comment] = STATE(2428), - [anon_sym_LBRACK] = ACTIONS(1174), - [anon_sym_COMMA] = ACTIONS(1174), - [anon_sym_LPAREN] = ACTIONS(1174), - [anon_sym_DOLLAR] = ACTIONS(1174), - [anon_sym_GT] = ACTIONS(1172), - [anon_sym_DASH] = ACTIONS(1172), - [anon_sym_in] = ACTIONS(1172), - [anon_sym_LBRACE] = ACTIONS(1174), - [anon_sym_RBRACE] = ACTIONS(1174), - [anon_sym__] = ACTIONS(1172), - [anon_sym_DOT_DOT] = ACTIONS(1172), - [anon_sym_STAR] = ACTIONS(1172), - [anon_sym_STAR_STAR] = ACTIONS(1174), - [anon_sym_PLUS_PLUS] = ACTIONS(1174), - [anon_sym_SLASH] = ACTIONS(1172), - [anon_sym_mod] = ACTIONS(1174), - [anon_sym_SLASH_SLASH] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1172), - [anon_sym_bit_DASHshl] = ACTIONS(1174), - [anon_sym_bit_DASHshr] = ACTIONS(1174), - [anon_sym_EQ_EQ] = ACTIONS(1174), - [anon_sym_BANG_EQ] = ACTIONS(1174), - [anon_sym_LT2] = ACTIONS(1172), - [anon_sym_LT_EQ] = ACTIONS(1174), - [anon_sym_GT_EQ] = ACTIONS(1174), - [anon_sym_not_DASHin] = ACTIONS(1174), - [anon_sym_starts_DASHwith] = ACTIONS(1174), - [anon_sym_ends_DASHwith] = ACTIONS(1174), - [anon_sym_EQ_TILDE] = ACTIONS(1174), - [anon_sym_BANG_TILDE] = ACTIONS(1174), - [anon_sym_bit_DASHand] = ACTIONS(1174), - [anon_sym_bit_DASHxor] = ACTIONS(1174), - [anon_sym_bit_DASHor] = ACTIONS(1174), - [anon_sym_and] = ACTIONS(1174), - [anon_sym_xor] = ACTIONS(1174), - [anon_sym_or] = ACTIONS(1174), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1174), - [anon_sym_DOT_DOT_LT] = ACTIONS(1174), - [anon_sym_null] = ACTIONS(1174), - [anon_sym_true] = ACTIONS(1174), - [anon_sym_false] = ACTIONS(1174), - [aux_sym__val_number_decimal_token1] = ACTIONS(1172), - [aux_sym__val_number_decimal_token2] = ACTIONS(1174), - [anon_sym_DOT2] = ACTIONS(1172), - [aux_sym__val_number_decimal_token3] = ACTIONS(1174), - [aux_sym__val_number_token1] = ACTIONS(1174), - [aux_sym__val_number_token2] = ACTIONS(1174), - [aux_sym__val_number_token3] = ACTIONS(1174), - [aux_sym__val_number_token4] = ACTIONS(1174), - [aux_sym__val_number_token5] = ACTIONS(1174), - [aux_sym__val_number_token6] = ACTIONS(1174), - [anon_sym_0b] = ACTIONS(1172), - [anon_sym_0o] = ACTIONS(1172), - [anon_sym_0x] = ACTIONS(1172), - [sym_val_date] = ACTIONS(1174), - [anon_sym_DQUOTE] = ACTIONS(1174), - [sym__str_single_quotes] = ACTIONS(1174), - [sym__str_back_ticks] = ACTIONS(1174), - [anon_sym_err_GT] = ACTIONS(1174), - [anon_sym_out_GT] = ACTIONS(1174), - [anon_sym_e_GT] = ACTIONS(1174), - [anon_sym_o_GT] = ACTIONS(1174), - [anon_sym_err_PLUSout_GT] = ACTIONS(1174), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1174), - [anon_sym_o_PLUSe_GT] = ACTIONS(1174), - [anon_sym_e_PLUSo_GT] = ACTIONS(1174), - [aux_sym_unquoted_token1] = ACTIONS(1172), - [anon_sym_POUND] = ACTIONS(3), + [2602] = { + [sym_comment] = STATE(2602), + [anon_sym_SEMI] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_RPAREN] = ACTIONS(1171), + [anon_sym_PIPE] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(113), }, - [2429] = { - [sym_comment] = STATE(2429), - [ts_builtin_sym_end] = ACTIONS(3962), - [anon_sym_export] = ACTIONS(3960), - [anon_sym_alias] = ACTIONS(3960), - [anon_sym_let] = ACTIONS(3960), - [anon_sym_let_DASHenv] = ACTIONS(3960), - [anon_sym_mut] = ACTIONS(3960), - [anon_sym_const] = ACTIONS(3960), - [anon_sym_SEMI] = ACTIONS(3960), - [sym_cmd_identifier] = ACTIONS(3960), - [anon_sym_LF] = ACTIONS(3962), - [anon_sym_def] = ACTIONS(3960), - [anon_sym_export_DASHenv] = ACTIONS(3960), - [anon_sym_extern] = ACTIONS(3960), - [anon_sym_module] = ACTIONS(3960), - [anon_sym_use] = ACTIONS(3960), - [anon_sym_LBRACK] = ACTIONS(3960), - [anon_sym_LPAREN] = ACTIONS(3960), - [anon_sym_DOLLAR] = ACTIONS(3960), - [anon_sym_error] = ACTIONS(3960), - [anon_sym_DASH_DASH] = ACTIONS(3960), - [anon_sym_DASH] = ACTIONS(3960), - [anon_sym_break] = ACTIONS(3960), - [anon_sym_continue] = ACTIONS(3960), - [anon_sym_for] = ACTIONS(3960), - [anon_sym_loop] = ACTIONS(3960), - [anon_sym_while] = ACTIONS(3960), - [anon_sym_do] = ACTIONS(3960), - [anon_sym_if] = ACTIONS(3960), - [anon_sym_match] = ACTIONS(3960), - [anon_sym_LBRACE] = ACTIONS(3960), - [anon_sym_DOT_DOT] = ACTIONS(3960), - [anon_sym_try] = ACTIONS(3960), - [anon_sym_return] = ACTIONS(3960), - [anon_sym_source] = ACTIONS(3960), - [anon_sym_source_DASHenv] = ACTIONS(3960), - [anon_sym_register] = ACTIONS(3960), - [anon_sym_hide] = ACTIONS(3960), - [anon_sym_hide_DASHenv] = ACTIONS(3960), - [anon_sym_overlay] = ACTIONS(3960), - [anon_sym_as] = ACTIONS(3960), - [anon_sym_where] = ACTIONS(3960), - [anon_sym_not] = ACTIONS(3960), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3960), - [anon_sym_DOT_DOT_LT] = ACTIONS(3960), - [anon_sym_null] = ACTIONS(3960), - [anon_sym_true] = ACTIONS(3960), - [anon_sym_false] = ACTIONS(3960), - [aux_sym__val_number_decimal_token1] = ACTIONS(3960), - [aux_sym__val_number_decimal_token2] = ACTIONS(3960), - [anon_sym_DOT2] = ACTIONS(3960), - [aux_sym__val_number_decimal_token3] = ACTIONS(3960), - [aux_sym__val_number_token1] = ACTIONS(3960), - [aux_sym__val_number_token2] = ACTIONS(3960), - [aux_sym__val_number_token3] = ACTIONS(3960), - [aux_sym__val_number_token4] = ACTIONS(3960), - [aux_sym__val_number_token5] = ACTIONS(3960), - [aux_sym__val_number_token6] = ACTIONS(3960), - [anon_sym_0b] = ACTIONS(3960), - [anon_sym_0o] = ACTIONS(3960), - [anon_sym_0x] = ACTIONS(3960), - [sym_val_date] = ACTIONS(3960), - [anon_sym_DQUOTE] = ACTIONS(3960), - [sym__str_single_quotes] = ACTIONS(3960), - [sym__str_back_ticks] = ACTIONS(3960), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3960), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3960), - [anon_sym_CARET] = ACTIONS(3960), + [2603] = { + [sym_comment] = STATE(2603), + [ts_builtin_sym_end] = ACTIONS(1157), + [anon_sym_SEMI] = ACTIONS(1155), + [anon_sym_LF] = ACTIONS(1157), + [anon_sym_LBRACK] = ACTIONS(1155), + [anon_sym_LPAREN] = ACTIONS(1155), + [anon_sym_PIPE] = ACTIONS(1155), + [anon_sym_DOLLAR] = ACTIONS(1155), + [anon_sym_GT] = ACTIONS(1155), + [anon_sym_DASH_DASH] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_in] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_DOT_DOT] = ACTIONS(1155), + [anon_sym_STAR] = ACTIONS(1155), + [anon_sym_STAR_STAR] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(1155), + [anon_sym_mod] = ACTIONS(1155), + [anon_sym_SLASH_SLASH] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_bit_DASHshl] = ACTIONS(1155), + [anon_sym_bit_DASHshr] = ACTIONS(1155), + [anon_sym_EQ_EQ] = ACTIONS(1155), + [anon_sym_BANG_EQ] = ACTIONS(1155), + [anon_sym_LT2] = ACTIONS(1155), + [anon_sym_LT_EQ] = ACTIONS(1155), + [anon_sym_GT_EQ] = ACTIONS(1155), + [anon_sym_not_DASHin] = ACTIONS(1155), + [anon_sym_starts_DASHwith] = ACTIONS(1155), + [anon_sym_ends_DASHwith] = ACTIONS(1155), + [anon_sym_EQ_TILDE] = ACTIONS(1155), + [anon_sym_BANG_TILDE] = ACTIONS(1155), + [anon_sym_bit_DASHand] = ACTIONS(1155), + [anon_sym_bit_DASHxor] = ACTIONS(1155), + [anon_sym_bit_DASHor] = ACTIONS(1155), + [anon_sym_and] = ACTIONS(1155), + [anon_sym_xor] = ACTIONS(1155), + [anon_sym_or] = ACTIONS(1155), + [anon_sym_not] = ACTIONS(1155), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1155), + [anon_sym_DOT_DOT_LT] = ACTIONS(1155), + [anon_sym_null] = ACTIONS(1155), + [anon_sym_true] = ACTIONS(1155), + [anon_sym_false] = ACTIONS(1155), + [aux_sym__val_number_decimal_token1] = ACTIONS(1155), + [aux_sym__val_number_decimal_token2] = ACTIONS(1155), + [anon_sym_DOT2] = ACTIONS(1155), + [aux_sym__val_number_decimal_token3] = ACTIONS(1155), + [aux_sym__val_number_token1] = ACTIONS(1155), + [aux_sym__val_number_token2] = ACTIONS(1155), + [aux_sym__val_number_token3] = ACTIONS(1155), + [aux_sym__val_number_token4] = ACTIONS(1155), + [aux_sym__val_number_token5] = ACTIONS(1155), + [aux_sym__val_number_token6] = ACTIONS(1155), + [anon_sym_0b] = ACTIONS(1155), + [anon_sym_0o] = ACTIONS(1155), + [anon_sym_0x] = ACTIONS(1155), + [sym_val_date] = ACTIONS(1155), + [anon_sym_DQUOTE] = ACTIONS(1155), + [sym__str_single_quotes] = ACTIONS(1155), + [sym__str_back_ticks] = ACTIONS(1155), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1155), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1155), + [aux_sym_unquoted_token6] = ACTIONS(1155), [anon_sym_POUND] = ACTIONS(113), }, - [2430] = { - [sym_cell_path] = STATE(3062), - [sym_path] = STATE(2528), - [sym_comment] = STATE(2430), - [anon_sym_SEMI] = ACTIONS(1179), - [anon_sym_LF] = ACTIONS(1181), - [anon_sym_LBRACK] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1179), - [anon_sym_RPAREN] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1179), - [anon_sym_DOLLAR] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1179), - [anon_sym_DASH] = ACTIONS(1179), - [anon_sym_in] = ACTIONS(1179), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_RBRACE] = ACTIONS(1179), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_STAR] = ACTIONS(1179), - [anon_sym_STAR_STAR] = ACTIONS(1179), - [anon_sym_PLUS_PLUS] = ACTIONS(1179), - [anon_sym_SLASH] = ACTIONS(1179), - [anon_sym_mod] = ACTIONS(1179), - [anon_sym_SLASH_SLASH] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1179), - [anon_sym_bit_DASHshl] = ACTIONS(1179), - [anon_sym_bit_DASHshr] = ACTIONS(1179), - [anon_sym_EQ_EQ] = ACTIONS(1179), - [anon_sym_BANG_EQ] = ACTIONS(1179), - [anon_sym_LT2] = ACTIONS(1179), - [anon_sym_LT_EQ] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(1179), - [anon_sym_not_DASHin] = ACTIONS(1179), - [anon_sym_starts_DASHwith] = ACTIONS(1179), - [anon_sym_ends_DASHwith] = ACTIONS(1179), - [anon_sym_EQ_TILDE] = ACTIONS(1179), - [anon_sym_BANG_TILDE] = ACTIONS(1179), - [anon_sym_bit_DASHand] = ACTIONS(1179), - [anon_sym_bit_DASHxor] = ACTIONS(1179), - [anon_sym_bit_DASHor] = ACTIONS(1179), - [anon_sym_and] = ACTIONS(1179), - [anon_sym_xor] = ACTIONS(1179), - [anon_sym_or] = ACTIONS(1179), - [anon_sym_not] = ACTIONS(1179), - [anon_sym_DOT] = ACTIONS(6145), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), - [anon_sym_DOT_DOT_LT] = ACTIONS(1179), - [anon_sym_null] = ACTIONS(1179), - [anon_sym_true] = ACTIONS(1179), - [anon_sym_false] = ACTIONS(1179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1179), - [aux_sym__val_number_decimal_token2] = ACTIONS(1179), - [anon_sym_DOT2] = ACTIONS(1179), - [aux_sym__val_number_decimal_token3] = ACTIONS(1179), - [aux_sym__val_number_token1] = ACTIONS(1179), - [aux_sym__val_number_token2] = ACTIONS(1179), - [aux_sym__val_number_token3] = ACTIONS(1179), - [aux_sym__val_number_token4] = ACTIONS(1179), - [aux_sym__val_number_token5] = ACTIONS(1179), - [aux_sym__val_number_token6] = ACTIONS(1179), - [anon_sym_0b] = ACTIONS(1179), - [anon_sym_0o] = ACTIONS(1179), - [anon_sym_0x] = ACTIONS(1179), - [sym_val_date] = ACTIONS(1179), - [anon_sym_DQUOTE] = ACTIONS(1179), - [sym__str_single_quotes] = ACTIONS(1179), - [sym__str_back_ticks] = ACTIONS(1179), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1179), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), - [anon_sym_POUND] = ACTIONS(113), - }, - [2431] = { - [sym_cell_path] = STATE(2961), - [sym_path] = STATE(2528), - [sym_comment] = STATE(2431), - [anon_sym_SEMI] = ACTIONS(1203), - [anon_sym_LF] = ACTIONS(1205), - [anon_sym_LBRACK] = ACTIONS(1203), - [anon_sym_LPAREN] = ACTIONS(1203), - [anon_sym_RPAREN] = ACTIONS(1203), - [anon_sym_PIPE] = ACTIONS(1203), - [anon_sym_DOLLAR] = ACTIONS(1203), - [anon_sym_GT] = ACTIONS(1203), - [anon_sym_DASH_DASH] = ACTIONS(1203), - [anon_sym_DASH] = ACTIONS(1203), - [anon_sym_in] = ACTIONS(1203), - [anon_sym_LBRACE] = ACTIONS(1203), - [anon_sym_RBRACE] = ACTIONS(1203), - [anon_sym_DOT_DOT] = ACTIONS(1203), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_STAR_STAR] = ACTIONS(1203), - [anon_sym_PLUS_PLUS] = ACTIONS(1203), - [anon_sym_SLASH] = ACTIONS(1203), - [anon_sym_mod] = ACTIONS(1203), - [anon_sym_SLASH_SLASH] = ACTIONS(1203), - [anon_sym_PLUS] = ACTIONS(1203), - [anon_sym_bit_DASHshl] = ACTIONS(1203), - [anon_sym_bit_DASHshr] = ACTIONS(1203), - [anon_sym_EQ_EQ] = ACTIONS(1203), - [anon_sym_BANG_EQ] = ACTIONS(1203), - [anon_sym_LT2] = ACTIONS(1203), - [anon_sym_LT_EQ] = ACTIONS(1203), - [anon_sym_GT_EQ] = ACTIONS(1203), - [anon_sym_not_DASHin] = ACTIONS(1203), - [anon_sym_starts_DASHwith] = ACTIONS(1203), - [anon_sym_ends_DASHwith] = ACTIONS(1203), - [anon_sym_EQ_TILDE] = ACTIONS(1203), - [anon_sym_BANG_TILDE] = ACTIONS(1203), - [anon_sym_bit_DASHand] = ACTIONS(1203), - [anon_sym_bit_DASHxor] = ACTIONS(1203), - [anon_sym_bit_DASHor] = ACTIONS(1203), - [anon_sym_and] = ACTIONS(1203), - [anon_sym_xor] = ACTIONS(1203), - [anon_sym_or] = ACTIONS(1203), - [anon_sym_not] = ACTIONS(1203), - [anon_sym_DOT] = ACTIONS(6145), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1203), - [anon_sym_DOT_DOT_LT] = ACTIONS(1203), - [anon_sym_null] = ACTIONS(1203), - [anon_sym_true] = ACTIONS(1203), - [anon_sym_false] = ACTIONS(1203), - [aux_sym__val_number_decimal_token1] = ACTIONS(1203), - [aux_sym__val_number_decimal_token2] = ACTIONS(1203), - [anon_sym_DOT2] = ACTIONS(1203), - [aux_sym__val_number_decimal_token3] = ACTIONS(1203), - [aux_sym__val_number_token1] = ACTIONS(1203), - [aux_sym__val_number_token2] = ACTIONS(1203), - [aux_sym__val_number_token3] = ACTIONS(1203), - [aux_sym__val_number_token4] = ACTIONS(1203), - [aux_sym__val_number_token5] = ACTIONS(1203), - [aux_sym__val_number_token6] = ACTIONS(1203), - [anon_sym_0b] = ACTIONS(1203), - [anon_sym_0o] = ACTIONS(1203), - [anon_sym_0x] = ACTIONS(1203), - [sym_val_date] = ACTIONS(1203), - [anon_sym_DQUOTE] = ACTIONS(1203), - [sym__str_single_quotes] = ACTIONS(1203), - [sym__str_back_ticks] = ACTIONS(1203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1203), + [2604] = { + [sym_comment] = STATE(2604), + [anon_sym_export] = ACTIONS(6415), + [anon_sym_alias] = ACTIONS(6415), + [anon_sym_let] = ACTIONS(6415), + [anon_sym_let_DASHenv] = ACTIONS(6415), + [anon_sym_mut] = ACTIONS(6415), + [anon_sym_const] = ACTIONS(6415), + [anon_sym_SEMI] = ACTIONS(6415), + [sym_cmd_identifier] = ACTIONS(6415), + [anon_sym_LF] = ACTIONS(6569), + [anon_sym_def] = ACTIONS(6415), + [anon_sym_export_DASHenv] = ACTIONS(6415), + [anon_sym_extern] = ACTIONS(6415), + [anon_sym_module] = ACTIONS(6415), + [anon_sym_use] = ACTIONS(6415), + [anon_sym_LBRACK] = ACTIONS(6415), + [anon_sym_LPAREN] = ACTIONS(6415), + [anon_sym_DOLLAR] = ACTIONS(6415), + [anon_sym_error] = ACTIONS(6415), + [anon_sym_DASH] = ACTIONS(6415), + [anon_sym_break] = ACTIONS(6415), + [anon_sym_continue] = ACTIONS(6415), + [anon_sym_for] = ACTIONS(6415), + [anon_sym_loop] = ACTIONS(6415), + [anon_sym_while] = ACTIONS(6415), + [anon_sym_do] = ACTIONS(6415), + [anon_sym_if] = ACTIONS(6415), + [anon_sym_match] = ACTIONS(6415), + [anon_sym_LBRACE] = ACTIONS(6415), + [anon_sym_DOT_DOT] = ACTIONS(6415), + [anon_sym_try] = ACTIONS(6415), + [anon_sym_return] = ACTIONS(6415), + [anon_sym_source] = ACTIONS(6415), + [anon_sym_source_DASHenv] = ACTIONS(6415), + [anon_sym_register] = ACTIONS(6415), + [anon_sym_hide] = ACTIONS(6415), + [anon_sym_hide_DASHenv] = ACTIONS(6415), + [anon_sym_overlay] = ACTIONS(6415), + [anon_sym_where] = ACTIONS(6415), + [anon_sym_not] = ACTIONS(6415), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6415), + [anon_sym_DOT_DOT_LT] = ACTIONS(6415), + [anon_sym_null] = ACTIONS(6415), + [anon_sym_true] = ACTIONS(6415), + [anon_sym_false] = ACTIONS(6415), + [aux_sym__val_number_decimal_token1] = ACTIONS(6415), + [aux_sym__val_number_decimal_token2] = ACTIONS(6415), + [anon_sym_DOT2] = ACTIONS(6415), + [aux_sym__val_number_decimal_token3] = ACTIONS(6415), + [aux_sym__val_number_token1] = ACTIONS(6415), + [aux_sym__val_number_token2] = ACTIONS(6415), + [aux_sym__val_number_token3] = ACTIONS(6415), + [aux_sym__val_number_token4] = ACTIONS(6415), + [aux_sym__val_number_token5] = ACTIONS(6415), + [aux_sym__val_number_token6] = ACTIONS(6415), + [anon_sym_0b] = ACTIONS(6415), + [anon_sym_0o] = ACTIONS(6415), + [anon_sym_0x] = ACTIONS(6415), + [sym_val_date] = ACTIONS(6415), + [anon_sym_DQUOTE] = ACTIONS(6415), + [sym__str_single_quotes] = ACTIONS(6415), + [sym__str_back_ticks] = ACTIONS(6415), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6415), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6415), + [anon_sym_CARET] = ACTIONS(6415), [anon_sym_POUND] = ACTIONS(113), }, - [2432] = { - [sym__expression] = STATE(7561), - [sym_expr_unary] = STATE(6196), - [sym__expr_unary_minus] = STATE(6200), - [sym_expr_binary] = STATE(6196), - [sym__expr_binary_expression] = STATE(6783), - [sym_expr_parenthesized] = STATE(5434), - [sym_val_range] = STATE(8689), - [sym__value] = STATE(6196), - [sym_val_nothing] = STATE(6059), - [sym_val_bool] = STATE(6059), - [sym_val_variable] = STATE(5445), - [sym__var] = STATE(4804), - [sym_val_number] = STATE(6059), - [sym__val_number_decimal] = STATE(4923), - [sym__val_number] = STATE(6097), - [sym_val_duration] = STATE(6059), - [sym_val_filesize] = STATE(6059), - [sym_val_binary] = STATE(6059), - [sym_val_string] = STATE(6059), - [sym__str_double_quotes] = STATE(6144), - [sym_val_interpolated] = STATE(6059), - [sym__inter_single_quotes] = STATE(6158), - [sym__inter_double_quotes] = STATE(6159), - [sym_val_list] = STATE(6059), - [sym_val_record] = STATE(6059), - [sym_val_table] = STATE(6059), - [sym_val_closure] = STATE(6059), - [sym__flag] = STATE(7560), - [sym_short_flag] = STATE(8772), - [sym_long_flag] = STATE(8772), - [sym_long_flag_equals_value] = STATE(8808), - [sym_comment] = STATE(2432), - [ts_builtin_sym_end] = ACTIONS(5623), - [anon_sym_SEMI] = ACTIONS(5621), - [anon_sym_LF] = ACTIONS(5623), - [anon_sym_LBRACK] = ACTIONS(6053), - [anon_sym_LPAREN] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(5621), - [anon_sym_DOLLAR] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(6151), - [anon_sym_DASH] = ACTIONS(6153), - [anon_sym_LBRACE] = ACTIONS(6061), - [anon_sym_DOT_DOT] = ACTIONS(6063), - [anon_sym_not] = ACTIONS(6065), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6067), - [anon_sym_DOT_DOT_LT] = ACTIONS(6067), - [anon_sym_null] = ACTIONS(6069), - [anon_sym_true] = ACTIONS(6071), - [anon_sym_false] = ACTIONS(6071), - [aux_sym__val_number_decimal_token1] = ACTIONS(6073), - [aux_sym__val_number_decimal_token2] = ACTIONS(6073), - [anon_sym_DOT2] = ACTIONS(6075), - [aux_sym__val_number_decimal_token3] = ACTIONS(6077), - [aux_sym__val_number_token1] = ACTIONS(6079), - [aux_sym__val_number_token2] = ACTIONS(6079), - [aux_sym__val_number_token3] = ACTIONS(6079), - [aux_sym__val_number_token4] = ACTIONS(6079), - [aux_sym__val_number_token5] = ACTIONS(6079), - [aux_sym__val_number_token6] = ACTIONS(6079), - [anon_sym_0b] = ACTIONS(2953), - [anon_sym_0o] = ACTIONS(2955), - [anon_sym_0x] = ACTIONS(2955), - [sym_val_date] = ACTIONS(6081), - [anon_sym_DQUOTE] = ACTIONS(6083), - [sym__str_single_quotes] = ACTIONS(6085), - [sym__str_back_ticks] = ACTIONS(6085), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6087), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6089), + [2605] = { + [sym_comment] = STATE(2605), + [anon_sym_export] = ACTIONS(6571), + [anon_sym_alias] = ACTIONS(6571), + [anon_sym_let] = ACTIONS(6571), + [anon_sym_let_DASHenv] = ACTIONS(6571), + [anon_sym_mut] = ACTIONS(6571), + [anon_sym_const] = ACTIONS(6571), + [anon_sym_SEMI] = ACTIONS(6571), + [sym_cmd_identifier] = ACTIONS(6571), + [anon_sym_LF] = ACTIONS(6573), + [anon_sym_def] = ACTIONS(6571), + [anon_sym_export_DASHenv] = ACTIONS(6571), + [anon_sym_extern] = ACTIONS(6571), + [anon_sym_module] = ACTIONS(6571), + [anon_sym_use] = ACTIONS(6571), + [anon_sym_LBRACK] = ACTIONS(6571), + [anon_sym_LPAREN] = ACTIONS(6571), + [anon_sym_DOLLAR] = ACTIONS(6571), + [anon_sym_error] = ACTIONS(6571), + [anon_sym_DASH] = ACTIONS(6571), + [anon_sym_break] = ACTIONS(6571), + [anon_sym_continue] = ACTIONS(6571), + [anon_sym_for] = ACTIONS(6571), + [anon_sym_loop] = ACTIONS(6571), + [anon_sym_while] = ACTIONS(6571), + [anon_sym_do] = ACTIONS(6571), + [anon_sym_if] = ACTIONS(6571), + [anon_sym_match] = ACTIONS(6571), + [anon_sym_LBRACE] = ACTIONS(6571), + [anon_sym_DOT_DOT] = ACTIONS(6571), + [anon_sym_try] = ACTIONS(6571), + [anon_sym_return] = ACTIONS(6571), + [anon_sym_source] = ACTIONS(6571), + [anon_sym_source_DASHenv] = ACTIONS(6571), + [anon_sym_register] = ACTIONS(6571), + [anon_sym_hide] = ACTIONS(6571), + [anon_sym_hide_DASHenv] = ACTIONS(6571), + [anon_sym_overlay] = ACTIONS(6571), + [anon_sym_where] = ACTIONS(6571), + [anon_sym_not] = ACTIONS(6571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6571), + [anon_sym_DOT_DOT_LT] = ACTIONS(6571), + [anon_sym_null] = ACTIONS(6571), + [anon_sym_true] = ACTIONS(6571), + [anon_sym_false] = ACTIONS(6571), + [aux_sym__val_number_decimal_token1] = ACTIONS(6571), + [aux_sym__val_number_decimal_token2] = ACTIONS(6571), + [anon_sym_DOT2] = ACTIONS(6571), + [aux_sym__val_number_decimal_token3] = ACTIONS(6571), + [aux_sym__val_number_token1] = ACTIONS(6571), + [aux_sym__val_number_token2] = ACTIONS(6571), + [aux_sym__val_number_token3] = ACTIONS(6571), + [aux_sym__val_number_token4] = ACTIONS(6571), + [aux_sym__val_number_token5] = ACTIONS(6571), + [aux_sym__val_number_token6] = ACTIONS(6571), + [anon_sym_0b] = ACTIONS(6571), + [anon_sym_0o] = ACTIONS(6571), + [anon_sym_0x] = ACTIONS(6571), + [sym_val_date] = ACTIONS(6571), + [anon_sym_DQUOTE] = ACTIONS(6571), + [sym__str_single_quotes] = ACTIONS(6571), + [sym__str_back_ticks] = ACTIONS(6571), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6571), + [anon_sym_CARET] = ACTIONS(6571), [anon_sym_POUND] = ACTIONS(113), }, - [2433] = { - [sym_cell_path] = STATE(3026), - [sym_path] = STATE(2528), - [sym_comment] = STATE(2433), - [anon_sym_SEMI] = ACTIONS(1186), - [anon_sym_LF] = ACTIONS(1188), - [anon_sym_LBRACK] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(1186), - [anon_sym_RPAREN] = ACTIONS(1186), - [anon_sym_PIPE] = ACTIONS(1186), - [anon_sym_DOLLAR] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_DASH_DASH] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_in] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_RBRACE] = ACTIONS(1186), - [anon_sym_DOT_DOT] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_STAR_STAR] = ACTIONS(1186), - [anon_sym_PLUS_PLUS] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_mod] = ACTIONS(1186), - [anon_sym_SLASH_SLASH] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_bit_DASHshl] = ACTIONS(1186), - [anon_sym_bit_DASHshr] = ACTIONS(1186), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_LT2] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1186), - [anon_sym_GT_EQ] = ACTIONS(1186), - [anon_sym_not_DASHin] = ACTIONS(1186), - [anon_sym_starts_DASHwith] = ACTIONS(1186), - [anon_sym_ends_DASHwith] = ACTIONS(1186), - [anon_sym_EQ_TILDE] = ACTIONS(1186), - [anon_sym_BANG_TILDE] = ACTIONS(1186), - [anon_sym_bit_DASHand] = ACTIONS(1186), - [anon_sym_bit_DASHxor] = ACTIONS(1186), - [anon_sym_bit_DASHor] = ACTIONS(1186), - [anon_sym_and] = ACTIONS(1186), - [anon_sym_xor] = ACTIONS(1186), - [anon_sym_or] = ACTIONS(1186), - [anon_sym_not] = ACTIONS(1186), - [anon_sym_DOT] = ACTIONS(6145), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1186), - [anon_sym_DOT_DOT_LT] = ACTIONS(1186), - [anon_sym_null] = ACTIONS(1186), - [anon_sym_true] = ACTIONS(1186), - [anon_sym_false] = ACTIONS(1186), - [aux_sym__val_number_decimal_token1] = ACTIONS(1186), - [aux_sym__val_number_decimal_token2] = ACTIONS(1186), - [anon_sym_DOT2] = ACTIONS(1186), - [aux_sym__val_number_decimal_token3] = ACTIONS(1186), - [aux_sym__val_number_token1] = ACTIONS(1186), - [aux_sym__val_number_token2] = ACTIONS(1186), - [aux_sym__val_number_token3] = ACTIONS(1186), - [aux_sym__val_number_token4] = ACTIONS(1186), - [aux_sym__val_number_token5] = ACTIONS(1186), - [aux_sym__val_number_token6] = ACTIONS(1186), - [anon_sym_0b] = ACTIONS(1186), - [anon_sym_0o] = ACTIONS(1186), - [anon_sym_0x] = ACTIONS(1186), - [sym_val_date] = ACTIONS(1186), - [anon_sym_DQUOTE] = ACTIONS(1186), - [sym__str_single_quotes] = ACTIONS(1186), - [sym__str_back_ticks] = ACTIONS(1186), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1186), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1186), + [2606] = { + [sym_comment] = STATE(2606), + [anon_sym_SEMI] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_RPAREN] = ACTIONS(1171), + [anon_sym_PIPE] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, - [2434] = { - [sym__expression] = STATE(7561), - [sym_expr_unary] = STATE(6196), - [sym__expr_unary_minus] = STATE(6200), - [sym_expr_binary] = STATE(6196), - [sym__expr_binary_expression] = STATE(6783), - [sym_expr_parenthesized] = STATE(5434), - [sym_val_range] = STATE(8689), - [sym__value] = STATE(6196), - [sym_val_nothing] = STATE(6059), - [sym_val_bool] = STATE(6059), - [sym_val_variable] = STATE(5445), - [sym__var] = STATE(4804), - [sym_val_number] = STATE(6059), - [sym__val_number_decimal] = STATE(4923), - [sym__val_number] = STATE(6097), - [sym_val_duration] = STATE(6059), - [sym_val_filesize] = STATE(6059), - [sym_val_binary] = STATE(6059), - [sym_val_string] = STATE(6059), - [sym__str_double_quotes] = STATE(6144), - [sym_val_interpolated] = STATE(6059), - [sym__inter_single_quotes] = STATE(6158), - [sym__inter_double_quotes] = STATE(6159), - [sym_val_list] = STATE(6059), - [sym_val_record] = STATE(6059), - [sym_val_table] = STATE(6059), - [sym_val_closure] = STATE(6059), - [sym__flag] = STATE(2455), - [sym_short_flag] = STATE(5303), - [sym_long_flag] = STATE(5303), - [sym_long_flag_equals_value] = STATE(5400), - [sym_comment] = STATE(2434), - [ts_builtin_sym_end] = ACTIONS(5623), - [anon_sym_SEMI] = ACTIONS(5621), - [anon_sym_LF] = ACTIONS(5623), - [anon_sym_LBRACK] = ACTIONS(6053), - [anon_sym_LPAREN] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(5621), - [anon_sym_DOLLAR] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(6057), - [anon_sym_DASH] = ACTIONS(6059), - [anon_sym_LBRACE] = ACTIONS(6061), - [anon_sym_DOT_DOT] = ACTIONS(6063), - [anon_sym_not] = ACTIONS(6065), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6067), - [anon_sym_DOT_DOT_LT] = ACTIONS(6067), - [anon_sym_null] = ACTIONS(6069), - [anon_sym_true] = ACTIONS(6071), - [anon_sym_false] = ACTIONS(6071), - [aux_sym__val_number_decimal_token1] = ACTIONS(6073), - [aux_sym__val_number_decimal_token2] = ACTIONS(6073), - [anon_sym_DOT2] = ACTIONS(6075), - [aux_sym__val_number_decimal_token3] = ACTIONS(6077), - [aux_sym__val_number_token1] = ACTIONS(6079), - [aux_sym__val_number_token2] = ACTIONS(6079), - [aux_sym__val_number_token3] = ACTIONS(6079), - [aux_sym__val_number_token4] = ACTIONS(6079), - [aux_sym__val_number_token5] = ACTIONS(6079), - [aux_sym__val_number_token6] = ACTIONS(6079), - [anon_sym_0b] = ACTIONS(2953), - [anon_sym_0o] = ACTIONS(2955), - [anon_sym_0x] = ACTIONS(2955), - [sym_val_date] = ACTIONS(6081), - [anon_sym_DQUOTE] = ACTIONS(6083), - [sym__str_single_quotes] = ACTIONS(6085), - [sym__str_back_ticks] = ACTIONS(6085), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6087), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6089), + [2607] = { + [sym_comment] = STATE(2607), + [anon_sym_SEMI] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_RPAREN] = ACTIONS(1171), + [anon_sym_PIPE] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, - [2435] = { - [sym__expression] = STATE(7561), - [sym_expr_unary] = STATE(6196), - [sym__expr_unary_minus] = STATE(6200), - [sym_expr_binary] = STATE(6196), - [sym__expr_binary_expression] = STATE(6783), - [sym_expr_parenthesized] = STATE(5434), - [sym_val_range] = STATE(8689), - [sym__value] = STATE(6196), - [sym_val_nothing] = STATE(6059), - [sym_val_bool] = STATE(6059), - [sym_val_variable] = STATE(5445), - [sym__var] = STATE(4804), - [sym_val_number] = STATE(6059), - [sym__val_number_decimal] = STATE(4923), - [sym__val_number] = STATE(6097), - [sym_val_duration] = STATE(6059), - [sym_val_filesize] = STATE(6059), - [sym_val_binary] = STATE(6059), - [sym_val_string] = STATE(6059), - [sym__str_double_quotes] = STATE(6144), - [sym_val_interpolated] = STATE(6059), - [sym__inter_single_quotes] = STATE(6158), - [sym__inter_double_quotes] = STATE(6159), - [sym_val_list] = STATE(6059), - [sym_val_record] = STATE(6059), - [sym_val_table] = STATE(6059), - [sym_val_closure] = STATE(6059), - [sym__flag] = STATE(2456), - [sym_short_flag] = STATE(5303), - [sym_long_flag] = STATE(5303), - [sym_long_flag_equals_value] = STATE(5400), - [sym_comment] = STATE(2435), - [ts_builtin_sym_end] = ACTIONS(5623), - [anon_sym_SEMI] = ACTIONS(5621), - [anon_sym_LF] = ACTIONS(5623), - [anon_sym_LBRACK] = ACTIONS(6053), - [anon_sym_LPAREN] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(5621), - [anon_sym_DOLLAR] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(6057), - [anon_sym_DASH] = ACTIONS(6059), - [anon_sym_LBRACE] = ACTIONS(6061), - [anon_sym_DOT_DOT] = ACTIONS(6063), - [anon_sym_not] = ACTIONS(6065), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6067), - [anon_sym_DOT_DOT_LT] = ACTIONS(6067), - [anon_sym_null] = ACTIONS(6069), - [anon_sym_true] = ACTIONS(6071), - [anon_sym_false] = ACTIONS(6071), - [aux_sym__val_number_decimal_token1] = ACTIONS(6073), - [aux_sym__val_number_decimal_token2] = ACTIONS(6073), - [anon_sym_DOT2] = ACTIONS(6075), - [aux_sym__val_number_decimal_token3] = ACTIONS(6077), - [aux_sym__val_number_token1] = ACTIONS(6079), - [aux_sym__val_number_token2] = ACTIONS(6079), - [aux_sym__val_number_token3] = ACTIONS(6079), - [aux_sym__val_number_token4] = ACTIONS(6079), - [aux_sym__val_number_token5] = ACTIONS(6079), - [aux_sym__val_number_token6] = ACTIONS(6079), - [anon_sym_0b] = ACTIONS(2953), - [anon_sym_0o] = ACTIONS(2955), - [anon_sym_0x] = ACTIONS(2955), - [sym_val_date] = ACTIONS(6081), - [anon_sym_DQUOTE] = ACTIONS(6083), - [sym__str_single_quotes] = ACTIONS(6085), - [sym__str_back_ticks] = ACTIONS(6085), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6087), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6089), + [2608] = { + [sym_comment] = STATE(2608), + [anon_sym_SEMI] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_RPAREN] = ACTIONS(1171), + [anon_sym_PIPE] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, - [2436] = { - [sym__expression] = STATE(7561), - [sym_expr_unary] = STATE(6196), - [sym__expr_unary_minus] = STATE(6200), - [sym_expr_binary] = STATE(6196), - [sym__expr_binary_expression] = STATE(6783), - [sym_expr_parenthesized] = STATE(5434), - [sym_val_range] = STATE(8689), - [sym__value] = STATE(6196), - [sym_val_nothing] = STATE(6059), - [sym_val_bool] = STATE(6059), - [sym_val_variable] = STATE(5445), - [sym__var] = STATE(4804), - [sym_val_number] = STATE(6059), - [sym__val_number_decimal] = STATE(4923), - [sym__val_number] = STATE(6097), - [sym_val_duration] = STATE(6059), - [sym_val_filesize] = STATE(6059), - [sym_val_binary] = STATE(6059), - [sym_val_string] = STATE(6059), - [sym__str_double_quotes] = STATE(6144), - [sym_val_interpolated] = STATE(6059), - [sym__inter_single_quotes] = STATE(6158), - [sym__inter_double_quotes] = STATE(6159), - [sym_val_list] = STATE(6059), - [sym_val_record] = STATE(6059), - [sym_val_table] = STATE(6059), - [sym_val_closure] = STATE(6059), - [sym__flag] = STATE(2457), - [sym_short_flag] = STATE(5303), - [sym_long_flag] = STATE(5303), - [sym_long_flag_equals_value] = STATE(5400), - [sym_comment] = STATE(2436), - [ts_builtin_sym_end] = ACTIONS(5623), - [anon_sym_SEMI] = ACTIONS(5621), - [anon_sym_LF] = ACTIONS(5623), - [anon_sym_LBRACK] = ACTIONS(6053), - [anon_sym_LPAREN] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(5621), - [anon_sym_DOLLAR] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(6057), - [anon_sym_DASH] = ACTIONS(6059), - [anon_sym_LBRACE] = ACTIONS(6061), - [anon_sym_DOT_DOT] = ACTIONS(6063), - [anon_sym_not] = ACTIONS(6065), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6067), - [anon_sym_DOT_DOT_LT] = ACTIONS(6067), - [anon_sym_null] = ACTIONS(6069), - [anon_sym_true] = ACTIONS(6071), - [anon_sym_false] = ACTIONS(6071), - [aux_sym__val_number_decimal_token1] = ACTIONS(6073), - [aux_sym__val_number_decimal_token2] = ACTIONS(6073), - [anon_sym_DOT2] = ACTIONS(6075), - [aux_sym__val_number_decimal_token3] = ACTIONS(6077), - [aux_sym__val_number_token1] = ACTIONS(6079), - [aux_sym__val_number_token2] = ACTIONS(6079), - [aux_sym__val_number_token3] = ACTIONS(6079), - [aux_sym__val_number_token4] = ACTIONS(6079), - [aux_sym__val_number_token5] = ACTIONS(6079), - [aux_sym__val_number_token6] = ACTIONS(6079), - [anon_sym_0b] = ACTIONS(2953), - [anon_sym_0o] = ACTIONS(2955), - [anon_sym_0x] = ACTIONS(2955), - [sym_val_date] = ACTIONS(6081), - [anon_sym_DQUOTE] = ACTIONS(6083), - [sym__str_single_quotes] = ACTIONS(6085), - [sym__str_back_ticks] = ACTIONS(6085), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6087), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6089), + [2609] = { + [sym_comment] = STATE(2609), + [anon_sym_SEMI] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_RPAREN] = ACTIONS(1171), + [anon_sym_PIPE] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, - [2437] = { - [sym__expression] = STATE(7561), - [sym_expr_unary] = STATE(6196), - [sym__expr_unary_minus] = STATE(6200), - [sym_expr_binary] = STATE(6196), - [sym__expr_binary_expression] = STATE(6783), - [sym_expr_parenthesized] = STATE(5434), - [sym_val_range] = STATE(8689), - [sym__value] = STATE(6196), - [sym_val_nothing] = STATE(6059), - [sym_val_bool] = STATE(6059), - [sym_val_variable] = STATE(5445), - [sym__var] = STATE(4804), - [sym_val_number] = STATE(6059), - [sym__val_number_decimal] = STATE(4923), - [sym__val_number] = STATE(6097), - [sym_val_duration] = STATE(6059), - [sym_val_filesize] = STATE(6059), - [sym_val_binary] = STATE(6059), - [sym_val_string] = STATE(6059), - [sym__str_double_quotes] = STATE(6144), - [sym_val_interpolated] = STATE(6059), - [sym__inter_single_quotes] = STATE(6158), - [sym__inter_double_quotes] = STATE(6159), - [sym_val_list] = STATE(6059), - [sym_val_record] = STATE(6059), - [sym_val_table] = STATE(6059), - [sym_val_closure] = STATE(6059), - [sym__flag] = STATE(2458), - [sym_short_flag] = STATE(5303), - [sym_long_flag] = STATE(5303), - [sym_long_flag_equals_value] = STATE(5400), - [sym_comment] = STATE(2437), - [ts_builtin_sym_end] = ACTIONS(5623), - [anon_sym_SEMI] = ACTIONS(5621), - [anon_sym_LF] = ACTIONS(5623), - [anon_sym_LBRACK] = ACTIONS(6053), - [anon_sym_LPAREN] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(5621), - [anon_sym_DOLLAR] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(6057), - [anon_sym_DASH] = ACTIONS(6059), - [anon_sym_LBRACE] = ACTIONS(6061), - [anon_sym_DOT_DOT] = ACTIONS(6063), - [anon_sym_not] = ACTIONS(6065), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6067), - [anon_sym_DOT_DOT_LT] = ACTIONS(6067), - [anon_sym_null] = ACTIONS(6069), - [anon_sym_true] = ACTIONS(6071), - [anon_sym_false] = ACTIONS(6071), - [aux_sym__val_number_decimal_token1] = ACTIONS(6073), - [aux_sym__val_number_decimal_token2] = ACTIONS(6073), - [anon_sym_DOT2] = ACTIONS(6075), - [aux_sym__val_number_decimal_token3] = ACTIONS(6077), - [aux_sym__val_number_token1] = ACTIONS(6079), - [aux_sym__val_number_token2] = ACTIONS(6079), - [aux_sym__val_number_token3] = ACTIONS(6079), - [aux_sym__val_number_token4] = ACTIONS(6079), - [aux_sym__val_number_token5] = ACTIONS(6079), - [aux_sym__val_number_token6] = ACTIONS(6079), - [anon_sym_0b] = ACTIONS(2953), - [anon_sym_0o] = ACTIONS(2955), - [anon_sym_0x] = ACTIONS(2955), - [sym_val_date] = ACTIONS(6081), - [anon_sym_DQUOTE] = ACTIONS(6083), - [sym__str_single_quotes] = ACTIONS(6085), - [sym__str_back_ticks] = ACTIONS(6085), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6087), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6089), + [2610] = { + [sym_comment] = STATE(2610), + [anon_sym_SEMI] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_RPAREN] = ACTIONS(1171), + [anon_sym_PIPE] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, - [2438] = { - [sym_comment] = STATE(2438), - [anon_sym_LBRACK] = ACTIONS(961), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_RBRACK] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(961), - [anon_sym_DOLLAR] = ACTIONS(961), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH_DASH] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(961), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(961), - [anon_sym_SLASH_SLASH] = ACTIONS(961), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(961), - [anon_sym_bit_DASHshr] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(961), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_not_DASHin] = ACTIONS(961), - [anon_sym_starts_DASHwith] = ACTIONS(961), - [anon_sym_ends_DASHwith] = ACTIONS(961), - [anon_sym_EQ_TILDE] = ACTIONS(961), - [anon_sym_BANG_TILDE] = ACTIONS(961), - [anon_sym_bit_DASHand] = ACTIONS(961), - [anon_sym_bit_DASHxor] = ACTIONS(961), - [anon_sym_bit_DASHor] = ACTIONS(961), - [anon_sym_and] = ACTIONS(961), - [anon_sym_xor] = ACTIONS(961), - [anon_sym_or] = ACTIONS(961), - [anon_sym_DOT_DOT_EQ] = ACTIONS(961), - [anon_sym_DOT_DOT_LT] = ACTIONS(961), - [anon_sym_null] = ACTIONS(961), - [anon_sym_true] = ACTIONS(961), - [anon_sym_false] = ACTIONS(961), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(961), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(961), - [aux_sym__val_number_token1] = ACTIONS(961), - [aux_sym__val_number_token2] = ACTIONS(961), - [aux_sym__val_number_token3] = ACTIONS(961), - [aux_sym__val_number_token4] = ACTIONS(961), - [aux_sym__val_number_token5] = ACTIONS(961), - [aux_sym__val_number_token6] = ACTIONS(961), - [anon_sym_0b] = ACTIONS(959), - [anon_sym_0o] = ACTIONS(959), - [anon_sym_0x] = ACTIONS(959), - [sym_val_date] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(961), - [sym__str_single_quotes] = ACTIONS(961), - [sym__str_back_ticks] = ACTIONS(961), - [anon_sym_err_GT] = ACTIONS(961), - [anon_sym_out_GT] = ACTIONS(961), - [anon_sym_e_GT] = ACTIONS(961), - [anon_sym_o_GT] = ACTIONS(961), - [anon_sym_err_PLUSout_GT] = ACTIONS(961), - [anon_sym_out_PLUSerr_GT] = ACTIONS(961), - [anon_sym_o_PLUSe_GT] = ACTIONS(961), - [anon_sym_e_PLUSo_GT] = ACTIONS(961), - [aux_sym__unquoted_in_list_token1] = ACTIONS(959), - [anon_sym_POUND] = ACTIONS(3), - }, - [2439] = { - [sym_comment] = STATE(2439), - [anon_sym_LBRACK] = ACTIONS(1160), - [anon_sym_COMMA] = ACTIONS(1160), - [anon_sym_RBRACK] = ACTIONS(1160), - [anon_sym_LPAREN] = ACTIONS(1160), - [anon_sym_DOLLAR] = ACTIONS(1160), - [anon_sym_GT] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_in] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1160), - [anon_sym_DOT_DOT] = ACTIONS(1158), - [anon_sym_STAR] = ACTIONS(1158), - [anon_sym_STAR_STAR] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1160), - [anon_sym_SLASH] = ACTIONS(1158), - [anon_sym_mod] = ACTIONS(1160), - [anon_sym_SLASH_SLASH] = ACTIONS(1160), - [anon_sym_PLUS] = ACTIONS(1158), - [anon_sym_bit_DASHshl] = ACTIONS(1160), - [anon_sym_bit_DASHshr] = ACTIONS(1160), - [anon_sym_EQ_EQ] = ACTIONS(1160), - [anon_sym_BANG_EQ] = ACTIONS(1160), - [anon_sym_LT2] = ACTIONS(1158), - [anon_sym_LT_EQ] = ACTIONS(1160), - [anon_sym_GT_EQ] = ACTIONS(1160), - [anon_sym_not_DASHin] = ACTIONS(1160), - [anon_sym_starts_DASHwith] = ACTIONS(1160), - [anon_sym_ends_DASHwith] = ACTIONS(1160), - [anon_sym_EQ_TILDE] = ACTIONS(1160), - [anon_sym_BANG_TILDE] = ACTIONS(1160), - [anon_sym_bit_DASHand] = ACTIONS(1160), - [anon_sym_bit_DASHxor] = ACTIONS(1160), - [anon_sym_bit_DASHor] = ACTIONS(1160), - [anon_sym_and] = ACTIONS(1160), - [anon_sym_xor] = ACTIONS(1160), - [anon_sym_or] = ACTIONS(1160), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1160), - [anon_sym_DOT_DOT_LT] = ACTIONS(1160), - [anon_sym_null] = ACTIONS(1160), - [anon_sym_true] = ACTIONS(1160), - [anon_sym_false] = ACTIONS(1160), - [aux_sym__val_number_decimal_token1] = ACTIONS(1158), - [aux_sym__val_number_decimal_token2] = ACTIONS(1160), - [anon_sym_DOT2] = ACTIONS(1158), - [aux_sym__val_number_decimal_token3] = ACTIONS(1160), - [aux_sym__val_number_token1] = ACTIONS(1160), - [aux_sym__val_number_token2] = ACTIONS(1160), - [aux_sym__val_number_token3] = ACTIONS(1160), - [aux_sym__val_number_token4] = ACTIONS(1160), - [aux_sym__val_number_token5] = ACTIONS(1160), - [aux_sym__val_number_token6] = ACTIONS(1160), - [anon_sym_0b] = ACTIONS(1158), - [anon_sym_0o] = ACTIONS(1158), - [anon_sym_0x] = ACTIONS(1158), - [sym_val_date] = ACTIONS(1160), - [anon_sym_DQUOTE] = ACTIONS(1160), - [sym__str_single_quotes] = ACTIONS(1160), - [sym__str_back_ticks] = ACTIONS(1160), - [anon_sym_err_GT] = ACTIONS(1160), - [anon_sym_out_GT] = ACTIONS(1160), - [anon_sym_e_GT] = ACTIONS(1160), - [anon_sym_o_GT] = ACTIONS(1160), - [anon_sym_err_PLUSout_GT] = ACTIONS(1160), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1160), - [anon_sym_o_PLUSe_GT] = ACTIONS(1160), - [anon_sym_e_PLUSo_GT] = ACTIONS(1160), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1158), - [anon_sym_POUND] = ACTIONS(3), - }, - [2440] = { - [sym_comment] = STATE(2440), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_COMMA] = ACTIONS(1408), - [anon_sym_RBRACK] = ACTIONS(1408), - [anon_sym_LPAREN] = ACTIONS(1408), - [anon_sym_DOLLAR] = ACTIONS(1408), - [anon_sym_GT] = ACTIONS(1406), - [anon_sym_DASH_DASH] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_in] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_DOT_DOT] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1406), - [anon_sym_STAR_STAR] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1408), - [anon_sym_SLASH] = ACTIONS(1406), - [anon_sym_mod] = ACTIONS(1408), - [anon_sym_SLASH_SLASH] = ACTIONS(1408), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_bit_DASHshl] = ACTIONS(1408), - [anon_sym_bit_DASHshr] = ACTIONS(1408), - [anon_sym_EQ_EQ] = ACTIONS(1408), - [anon_sym_BANG_EQ] = ACTIONS(1408), - [anon_sym_LT2] = ACTIONS(1406), - [anon_sym_LT_EQ] = ACTIONS(1408), - [anon_sym_GT_EQ] = ACTIONS(1408), - [anon_sym_not_DASHin] = ACTIONS(1408), - [anon_sym_starts_DASHwith] = ACTIONS(1408), - [anon_sym_ends_DASHwith] = ACTIONS(1408), - [anon_sym_EQ_TILDE] = ACTIONS(1408), - [anon_sym_BANG_TILDE] = ACTIONS(1408), - [anon_sym_bit_DASHand] = ACTIONS(1408), - [anon_sym_bit_DASHxor] = ACTIONS(1408), - [anon_sym_bit_DASHor] = ACTIONS(1408), - [anon_sym_and] = ACTIONS(1408), - [anon_sym_xor] = ACTIONS(1408), - [anon_sym_or] = ACTIONS(1408), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1408), - [anon_sym_DOT_DOT_LT] = ACTIONS(1408), - [anon_sym_null] = ACTIONS(1408), - [anon_sym_true] = ACTIONS(1408), - [anon_sym_false] = ACTIONS(1408), - [aux_sym__val_number_decimal_token1] = ACTIONS(1406), - [aux_sym__val_number_decimal_token2] = ACTIONS(1408), - [anon_sym_DOT2] = ACTIONS(1406), - [aux_sym__val_number_decimal_token3] = ACTIONS(1408), - [aux_sym__val_number_token1] = ACTIONS(1408), - [aux_sym__val_number_token2] = ACTIONS(1408), - [aux_sym__val_number_token3] = ACTIONS(1408), - [aux_sym__val_number_token4] = ACTIONS(1408), - [aux_sym__val_number_token5] = ACTIONS(1408), - [aux_sym__val_number_token6] = ACTIONS(1408), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1406), - [anon_sym_0x] = ACTIONS(1406), - [sym_val_date] = ACTIONS(1408), - [anon_sym_DQUOTE] = ACTIONS(1408), - [sym__str_single_quotes] = ACTIONS(1408), - [sym__str_back_ticks] = ACTIONS(1408), - [anon_sym_err_GT] = ACTIONS(1408), - [anon_sym_out_GT] = ACTIONS(1408), - [anon_sym_e_GT] = ACTIONS(1408), - [anon_sym_o_GT] = ACTIONS(1408), - [anon_sym_err_PLUSout_GT] = ACTIONS(1408), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1408), - [anon_sym_o_PLUSe_GT] = ACTIONS(1408), - [anon_sym_e_PLUSo_GT] = ACTIONS(1408), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1406), - [anon_sym_POUND] = ACTIONS(3), - }, - [2441] = { - [sym_comment] = STATE(2441), - [anon_sym_LBRACK] = ACTIONS(1412), - [anon_sym_COMMA] = ACTIONS(1412), - [anon_sym_RBRACK] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1412), - [anon_sym_DOLLAR] = ACTIONS(1412), - [anon_sym_GT] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_in] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_DOT_DOT] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_SLASH] = ACTIONS(1410), - [anon_sym_mod] = ACTIONS(1412), - [anon_sym_SLASH_SLASH] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_bit_DASHshl] = ACTIONS(1412), - [anon_sym_bit_DASHshr] = ACTIONS(1412), - [anon_sym_EQ_EQ] = ACTIONS(1412), - [anon_sym_BANG_EQ] = ACTIONS(1412), - [anon_sym_LT2] = ACTIONS(1410), - [anon_sym_LT_EQ] = ACTIONS(1412), - [anon_sym_GT_EQ] = ACTIONS(1412), - [anon_sym_not_DASHin] = ACTIONS(1412), - [anon_sym_starts_DASHwith] = ACTIONS(1412), - [anon_sym_ends_DASHwith] = ACTIONS(1412), - [anon_sym_EQ_TILDE] = ACTIONS(1412), - [anon_sym_BANG_TILDE] = ACTIONS(1412), - [anon_sym_bit_DASHand] = ACTIONS(1412), - [anon_sym_bit_DASHxor] = ACTIONS(1412), - [anon_sym_bit_DASHor] = ACTIONS(1412), - [anon_sym_and] = ACTIONS(1412), - [anon_sym_xor] = ACTIONS(1412), - [anon_sym_or] = ACTIONS(1412), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1412), - [anon_sym_DOT_DOT_LT] = ACTIONS(1412), - [anon_sym_null] = ACTIONS(1412), - [anon_sym_true] = ACTIONS(1412), - [anon_sym_false] = ACTIONS(1412), - [aux_sym__val_number_decimal_token1] = ACTIONS(1410), - [aux_sym__val_number_decimal_token2] = ACTIONS(1412), - [anon_sym_DOT2] = ACTIONS(1410), - [aux_sym__val_number_decimal_token3] = ACTIONS(1412), - [aux_sym__val_number_token1] = ACTIONS(1412), - [aux_sym__val_number_token2] = ACTIONS(1412), - [aux_sym__val_number_token3] = ACTIONS(1412), - [aux_sym__val_number_token4] = ACTIONS(1412), - [aux_sym__val_number_token5] = ACTIONS(1412), - [aux_sym__val_number_token6] = ACTIONS(1412), - [anon_sym_0b] = ACTIONS(1410), - [anon_sym_0o] = ACTIONS(1410), - [anon_sym_0x] = ACTIONS(1410), - [sym_val_date] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1412), - [sym__str_single_quotes] = ACTIONS(1412), - [sym__str_back_ticks] = ACTIONS(1412), - [anon_sym_err_GT] = ACTIONS(1412), - [anon_sym_out_GT] = ACTIONS(1412), - [anon_sym_e_GT] = ACTIONS(1412), - [anon_sym_o_GT] = ACTIONS(1412), - [anon_sym_err_PLUSout_GT] = ACTIONS(1412), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1412), - [anon_sym_o_PLUSe_GT] = ACTIONS(1412), - [anon_sym_e_PLUSo_GT] = ACTIONS(1412), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1410), - [anon_sym_POUND] = ACTIONS(3), - }, - [2442] = { - [sym_comment] = STATE(2442), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_COMMA] = ACTIONS(1288), - [anon_sym_RBRACK] = ACTIONS(1288), - [anon_sym_LPAREN] = ACTIONS(1288), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_GT] = ACTIONS(1286), - [anon_sym_DASH_DASH] = ACTIONS(1288), - [anon_sym_DASH] = ACTIONS(1286), - [anon_sym_in] = ACTIONS(1286), - [anon_sym_LBRACE] = ACTIONS(1288), - [anon_sym_DOT_DOT] = ACTIONS(1286), - [anon_sym_STAR] = ACTIONS(1286), - [anon_sym_STAR_STAR] = ACTIONS(1288), - [anon_sym_PLUS_PLUS] = ACTIONS(1288), - [anon_sym_SLASH] = ACTIONS(1286), - [anon_sym_mod] = ACTIONS(1288), - [anon_sym_SLASH_SLASH] = ACTIONS(1288), - [anon_sym_PLUS] = ACTIONS(1286), - [anon_sym_bit_DASHshl] = ACTIONS(1288), - [anon_sym_bit_DASHshr] = ACTIONS(1288), - [anon_sym_EQ_EQ] = ACTIONS(1288), - [anon_sym_BANG_EQ] = ACTIONS(1288), - [anon_sym_LT2] = ACTIONS(1286), - [anon_sym_LT_EQ] = ACTIONS(1288), - [anon_sym_GT_EQ] = ACTIONS(1288), - [anon_sym_not_DASHin] = ACTIONS(1288), - [anon_sym_starts_DASHwith] = ACTIONS(1288), - [anon_sym_ends_DASHwith] = ACTIONS(1288), - [anon_sym_EQ_TILDE] = ACTIONS(1288), - [anon_sym_BANG_TILDE] = ACTIONS(1288), - [anon_sym_bit_DASHand] = ACTIONS(1288), - [anon_sym_bit_DASHxor] = ACTIONS(1288), - [anon_sym_bit_DASHor] = ACTIONS(1288), - [anon_sym_and] = ACTIONS(1288), - [anon_sym_xor] = ACTIONS(1288), - [anon_sym_or] = ACTIONS(1288), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1288), - [anon_sym_DOT_DOT_LT] = ACTIONS(1288), - [anon_sym_null] = ACTIONS(1288), - [anon_sym_true] = ACTIONS(1288), - [anon_sym_false] = ACTIONS(1288), - [aux_sym__val_number_decimal_token1] = ACTIONS(1286), - [aux_sym__val_number_decimal_token2] = ACTIONS(1288), - [anon_sym_DOT2] = ACTIONS(1286), - [aux_sym__val_number_decimal_token3] = 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(1288), - [aux_sym__val_number_token5] = ACTIONS(1288), - [aux_sym__val_number_token6] = ACTIONS(1288), - [anon_sym_0b] = ACTIONS(1286), - [anon_sym_0o] = ACTIONS(1286), - [anon_sym_0x] = ACTIONS(1286), - [sym_val_date] = ACTIONS(1288), - [anon_sym_DQUOTE] = ACTIONS(1288), - [sym__str_single_quotes] = ACTIONS(1288), - [sym__str_back_ticks] = ACTIONS(1288), - [anon_sym_err_GT] = ACTIONS(1288), - [anon_sym_out_GT] = ACTIONS(1288), - [anon_sym_e_GT] = ACTIONS(1288), - [anon_sym_o_GT] = ACTIONS(1288), - [anon_sym_err_PLUSout_GT] = ACTIONS(1288), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1288), - [anon_sym_o_PLUSe_GT] = ACTIONS(1288), - [anon_sym_e_PLUSo_GT] = ACTIONS(1288), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1286), - [anon_sym_POUND] = ACTIONS(3), - }, - [2443] = { - [sym_comment] = STATE(2443), - [anon_sym_LBRACK] = ACTIONS(1192), - [anon_sym_COMMA] = ACTIONS(1192), - [anon_sym_RBRACK] = ACTIONS(1192), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_DOLLAR] = ACTIONS(1192), - [anon_sym_GT] = ACTIONS(1190), - [anon_sym_DASH_DASH] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_in] = ACTIONS(1190), - [anon_sym_LBRACE] = ACTIONS(1192), - [anon_sym_DOT_DOT] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1190), - [anon_sym_STAR_STAR] = ACTIONS(1192), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_mod] = ACTIONS(1192), - [anon_sym_SLASH_SLASH] = ACTIONS(1192), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_bit_DASHshl] = ACTIONS(1192), - [anon_sym_bit_DASHshr] = ACTIONS(1192), - [anon_sym_EQ_EQ] = ACTIONS(1192), - [anon_sym_BANG_EQ] = ACTIONS(1192), - [anon_sym_LT2] = ACTIONS(1190), - [anon_sym_LT_EQ] = ACTIONS(1192), - [anon_sym_GT_EQ] = ACTIONS(1192), - [anon_sym_not_DASHin] = ACTIONS(1192), - [anon_sym_starts_DASHwith] = ACTIONS(1192), - [anon_sym_ends_DASHwith] = ACTIONS(1192), - [anon_sym_EQ_TILDE] = ACTIONS(1192), - [anon_sym_BANG_TILDE] = ACTIONS(1192), - [anon_sym_bit_DASHand] = ACTIONS(1192), - [anon_sym_bit_DASHxor] = ACTIONS(1192), - [anon_sym_bit_DASHor] = ACTIONS(1192), - [anon_sym_and] = ACTIONS(1192), - [anon_sym_xor] = ACTIONS(1192), - [anon_sym_or] = ACTIONS(1192), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1192), - [anon_sym_DOT_DOT_LT] = ACTIONS(1192), - [anon_sym_null] = ACTIONS(1192), - [anon_sym_true] = ACTIONS(1192), - [anon_sym_false] = ACTIONS(1192), - [aux_sym__val_number_decimal_token1] = ACTIONS(1190), - [aux_sym__val_number_decimal_token2] = ACTIONS(1192), - [anon_sym_DOT2] = ACTIONS(1190), - [aux_sym__val_number_decimal_token3] = ACTIONS(1192), - [aux_sym__val_number_token1] = ACTIONS(1192), - [aux_sym__val_number_token2] = ACTIONS(1192), - [aux_sym__val_number_token3] = ACTIONS(1192), - [aux_sym__val_number_token4] = ACTIONS(1192), - [aux_sym__val_number_token5] = ACTIONS(1192), - [aux_sym__val_number_token6] = ACTIONS(1192), - [anon_sym_0b] = ACTIONS(1190), - [anon_sym_0o] = ACTIONS(1190), - [anon_sym_0x] = ACTIONS(1190), - [sym_val_date] = ACTIONS(1192), - [anon_sym_DQUOTE] = ACTIONS(1192), - [sym__str_single_quotes] = ACTIONS(1192), - [sym__str_back_ticks] = ACTIONS(1192), - [anon_sym_err_GT] = ACTIONS(1192), - [anon_sym_out_GT] = ACTIONS(1192), - [anon_sym_e_GT] = ACTIONS(1192), - [anon_sym_o_GT] = ACTIONS(1192), - [anon_sym_err_PLUSout_GT] = ACTIONS(1192), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1192), - [anon_sym_o_PLUSe_GT] = ACTIONS(1192), - [anon_sym_e_PLUSo_GT] = ACTIONS(1192), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1190), - [anon_sym_POUND] = ACTIONS(3), - }, - [2444] = { - [sym_comment] = STATE(2444), - [ts_builtin_sym_end] = ACTIONS(3868), - [anon_sym_export] = ACTIONS(3866), - [anon_sym_alias] = ACTIONS(3866), - [anon_sym_let] = ACTIONS(3866), - [anon_sym_let_DASHenv] = ACTIONS(3866), - [anon_sym_mut] = ACTIONS(3866), - [anon_sym_const] = ACTIONS(3866), - [anon_sym_SEMI] = ACTIONS(3866), - [sym_cmd_identifier] = ACTIONS(3866), - [anon_sym_LF] = ACTIONS(3868), - [anon_sym_def] = ACTIONS(3866), - [anon_sym_export_DASHenv] = ACTIONS(3866), - [anon_sym_extern] = ACTIONS(3866), - [anon_sym_module] = ACTIONS(3866), - [anon_sym_use] = ACTIONS(3866), - [anon_sym_LBRACK] = ACTIONS(3866), - [anon_sym_LPAREN] = ACTIONS(3866), - [anon_sym_DOLLAR] = ACTIONS(3866), - [anon_sym_error] = ACTIONS(3866), - [anon_sym_DASH_DASH] = ACTIONS(3866), - [anon_sym_DASH] = ACTIONS(3866), - [anon_sym_break] = ACTIONS(3866), - [anon_sym_continue] = ACTIONS(3866), - [anon_sym_for] = ACTIONS(3866), - [anon_sym_loop] = ACTIONS(3866), - [anon_sym_while] = ACTIONS(3866), - [anon_sym_do] = ACTIONS(3866), - [anon_sym_if] = ACTIONS(3866), - [anon_sym_match] = ACTIONS(3866), - [anon_sym_LBRACE] = ACTIONS(3866), - [anon_sym_DOT_DOT] = ACTIONS(3866), - [anon_sym_try] = ACTIONS(3866), - [anon_sym_return] = ACTIONS(3866), - [anon_sym_source] = ACTIONS(3866), - [anon_sym_source_DASHenv] = ACTIONS(3866), - [anon_sym_register] = ACTIONS(3866), - [anon_sym_hide] = ACTIONS(3866), - [anon_sym_hide_DASHenv] = ACTIONS(3866), - [anon_sym_overlay] = ACTIONS(3866), - [anon_sym_as] = ACTIONS(3866), - [anon_sym_where] = ACTIONS(3866), - [anon_sym_not] = ACTIONS(3866), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3866), - [anon_sym_DOT_DOT_LT] = ACTIONS(3866), - [anon_sym_null] = ACTIONS(3866), - [anon_sym_true] = ACTIONS(3866), - [anon_sym_false] = ACTIONS(3866), - [aux_sym__val_number_decimal_token1] = ACTIONS(3866), - [aux_sym__val_number_decimal_token2] = ACTIONS(3866), - [anon_sym_DOT2] = ACTIONS(3866), - [aux_sym__val_number_decimal_token3] = ACTIONS(3866), - [aux_sym__val_number_token1] = ACTIONS(3866), - [aux_sym__val_number_token2] = ACTIONS(3866), - [aux_sym__val_number_token3] = ACTIONS(3866), - [aux_sym__val_number_token4] = ACTIONS(3866), - [aux_sym__val_number_token5] = ACTIONS(3866), - [aux_sym__val_number_token6] = ACTIONS(3866), - [anon_sym_0b] = ACTIONS(3866), - [anon_sym_0o] = ACTIONS(3866), - [anon_sym_0x] = ACTIONS(3866), - [sym_val_date] = ACTIONS(3866), - [anon_sym_DQUOTE] = ACTIONS(3866), - [sym__str_single_quotes] = ACTIONS(3866), - [sym__str_back_ticks] = ACTIONS(3866), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3866), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), - [anon_sym_CARET] = ACTIONS(3866), + [2611] = { + [sym_comment] = STATE(2611), + [anon_sym_SEMI] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_RPAREN] = ACTIONS(1171), + [anon_sym_PIPE] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, - [2445] = { - [sym_comment] = STATE(2445), - [anon_sym_LBRACK] = ACTIONS(1300), - [anon_sym_COMMA] = ACTIONS(1300), - [anon_sym_RBRACK] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(1300), - [anon_sym_DOLLAR] = ACTIONS(1300), - [anon_sym_GT] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_in] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_DOT_DOT] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_STAR_STAR] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_SLASH] = ACTIONS(1298), - [anon_sym_mod] = ACTIONS(1300), - [anon_sym_SLASH_SLASH] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_bit_DASHshl] = ACTIONS(1300), - [anon_sym_bit_DASHshr] = ACTIONS(1300), - [anon_sym_EQ_EQ] = ACTIONS(1300), - [anon_sym_BANG_EQ] = ACTIONS(1300), - [anon_sym_LT2] = ACTIONS(1298), - [anon_sym_LT_EQ] = ACTIONS(1300), - [anon_sym_GT_EQ] = ACTIONS(1300), - [anon_sym_not_DASHin] = ACTIONS(1300), - [anon_sym_starts_DASHwith] = ACTIONS(1300), - [anon_sym_ends_DASHwith] = ACTIONS(1300), - [anon_sym_EQ_TILDE] = ACTIONS(1300), - [anon_sym_BANG_TILDE] = ACTIONS(1300), - [anon_sym_bit_DASHand] = ACTIONS(1300), - [anon_sym_bit_DASHxor] = ACTIONS(1300), - [anon_sym_bit_DASHor] = ACTIONS(1300), - [anon_sym_and] = ACTIONS(1300), - [anon_sym_xor] = ACTIONS(1300), - [anon_sym_or] = ACTIONS(1300), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1300), - [anon_sym_DOT_DOT_LT] = ACTIONS(1300), - [anon_sym_null] = ACTIONS(1300), - [anon_sym_true] = ACTIONS(1300), - [anon_sym_false] = ACTIONS(1300), - [aux_sym__val_number_decimal_token1] = ACTIONS(1298), - [aux_sym__val_number_decimal_token2] = ACTIONS(1300), - [anon_sym_DOT2] = ACTIONS(1298), - [aux_sym__val_number_decimal_token3] = ACTIONS(1300), - [aux_sym__val_number_token1] = ACTIONS(1300), - [aux_sym__val_number_token2] = ACTIONS(1300), - [aux_sym__val_number_token3] = ACTIONS(1300), - [aux_sym__val_number_token4] = ACTIONS(1300), - [aux_sym__val_number_token5] = ACTIONS(1300), - [aux_sym__val_number_token6] = ACTIONS(1300), - [anon_sym_0b] = ACTIONS(1298), - [anon_sym_0o] = ACTIONS(1298), - [anon_sym_0x] = ACTIONS(1298), - [sym_val_date] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym__str_single_quotes] = ACTIONS(1300), - [sym__str_back_ticks] = ACTIONS(1300), - [anon_sym_err_GT] = ACTIONS(1300), - [anon_sym_out_GT] = ACTIONS(1300), - [anon_sym_e_GT] = ACTIONS(1300), - [anon_sym_o_GT] = ACTIONS(1300), - [anon_sym_err_PLUSout_GT] = ACTIONS(1300), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1300), - [anon_sym_o_PLUSe_GT] = ACTIONS(1300), - [anon_sym_e_PLUSo_GT] = ACTIONS(1300), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1298), - [anon_sym_POUND] = ACTIONS(3), - }, - [2446] = { - [sym_comment] = STATE(2446), - [anon_sym_LBRACK] = ACTIONS(1304), - [anon_sym_COMMA] = ACTIONS(1304), - [anon_sym_RBRACK] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1304), - [anon_sym_DOLLAR] = ACTIONS(1304), - [anon_sym_GT] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1304), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_in] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_DOT_DOT] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_STAR_STAR] = ACTIONS(1304), - [anon_sym_PLUS_PLUS] = ACTIONS(1304), - [anon_sym_SLASH] = ACTIONS(1302), - [anon_sym_mod] = ACTIONS(1304), - [anon_sym_SLASH_SLASH] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_bit_DASHshl] = ACTIONS(1304), - [anon_sym_bit_DASHshr] = ACTIONS(1304), - [anon_sym_EQ_EQ] = ACTIONS(1304), - [anon_sym_BANG_EQ] = ACTIONS(1304), - [anon_sym_LT2] = ACTIONS(1302), - [anon_sym_LT_EQ] = ACTIONS(1304), - [anon_sym_GT_EQ] = ACTIONS(1304), - [anon_sym_not_DASHin] = ACTIONS(1304), - [anon_sym_starts_DASHwith] = ACTIONS(1304), - [anon_sym_ends_DASHwith] = ACTIONS(1304), - [anon_sym_EQ_TILDE] = ACTIONS(1304), - [anon_sym_BANG_TILDE] = ACTIONS(1304), - [anon_sym_bit_DASHand] = ACTIONS(1304), - [anon_sym_bit_DASHxor] = ACTIONS(1304), - [anon_sym_bit_DASHor] = ACTIONS(1304), - [anon_sym_and] = ACTIONS(1304), - [anon_sym_xor] = ACTIONS(1304), - [anon_sym_or] = ACTIONS(1304), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1304), - [anon_sym_DOT_DOT_LT] = ACTIONS(1304), - [anon_sym_null] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1304), - [anon_sym_false] = ACTIONS(1304), - [aux_sym__val_number_decimal_token1] = ACTIONS(1302), - [aux_sym__val_number_decimal_token2] = ACTIONS(1304), - [anon_sym_DOT2] = ACTIONS(1302), - [aux_sym__val_number_decimal_token3] = ACTIONS(1304), - [aux_sym__val_number_token1] = ACTIONS(1304), - [aux_sym__val_number_token2] = ACTIONS(1304), - [aux_sym__val_number_token3] = ACTIONS(1304), - [aux_sym__val_number_token4] = ACTIONS(1304), - [aux_sym__val_number_token5] = ACTIONS(1304), - [aux_sym__val_number_token6] = ACTIONS(1304), - [anon_sym_0b] = ACTIONS(1302), - [anon_sym_0o] = ACTIONS(1302), - [anon_sym_0x] = ACTIONS(1302), - [sym_val_date] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1304), - [sym__str_single_quotes] = ACTIONS(1304), - [sym__str_back_ticks] = ACTIONS(1304), - [anon_sym_err_GT] = ACTIONS(1304), - [anon_sym_out_GT] = ACTIONS(1304), - [anon_sym_e_GT] = ACTIONS(1304), - [anon_sym_o_GT] = ACTIONS(1304), - [anon_sym_err_PLUSout_GT] = ACTIONS(1304), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1304), - [anon_sym_o_PLUSe_GT] = ACTIONS(1304), - [anon_sym_e_PLUSo_GT] = ACTIONS(1304), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1302), - [anon_sym_POUND] = ACTIONS(3), - }, - [2447] = { - [sym__match_pattern_record_variable] = STATE(3555), - [sym_expr_parenthesized] = STATE(10769), - [sym_val_variable] = STATE(3513), - [sym__var] = STATE(3214), - [sym_val_number] = STATE(10769), - [sym__val_number_decimal] = STATE(5414), - [sym__val_number] = STATE(5463), - [sym_val_string] = STATE(10769), - [sym__str_double_quotes] = STATE(7019), - [sym_record_entry] = STATE(3555), - [sym__record_key] = STATE(10918), - [sym_comment] = STATE(2447), - [aux_sym__match_pattern_record_repeat1] = STATE(2447), - [anon_sym_export] = ACTIONS(6155), - [anon_sym_alias] = ACTIONS(6155), - [anon_sym_let] = ACTIONS(6155), - [anon_sym_let_DASHenv] = ACTIONS(6155), - [anon_sym_mut] = ACTIONS(6155), - [anon_sym_const] = ACTIONS(6155), - [sym_cmd_identifier] = ACTIONS(6155), - [anon_sym_def] = ACTIONS(6155), - [anon_sym_export_DASHenv] = ACTIONS(6155), - [anon_sym_extern] = ACTIONS(6155), - [anon_sym_module] = ACTIONS(6155), - [anon_sym_use] = ACTIONS(6155), - [anon_sym_LPAREN] = ACTIONS(6158), - [anon_sym_DOLLAR] = ACTIONS(6161), - [anon_sym_error] = ACTIONS(6155), - [anon_sym_list] = ACTIONS(6155), - [anon_sym_DASH] = ACTIONS(6164), - [anon_sym_break] = ACTIONS(6155), - [anon_sym_continue] = ACTIONS(6155), - [anon_sym_for] = ACTIONS(6155), - [anon_sym_in] = ACTIONS(6155), - [anon_sym_loop] = ACTIONS(6155), - [anon_sym_make] = ACTIONS(6155), - [anon_sym_while] = ACTIONS(6155), - [anon_sym_do] = ACTIONS(6155), - [anon_sym_if] = ACTIONS(6155), - [anon_sym_else] = ACTIONS(6155), - [anon_sym_match] = ACTIONS(6155), - [anon_sym_RBRACE] = ACTIONS(6167), - [anon_sym_try] = ACTIONS(6155), - [anon_sym_catch] = ACTIONS(6155), - [anon_sym_return] = ACTIONS(6155), - [anon_sym_source] = ACTIONS(6155), - [anon_sym_source_DASHenv] = ACTIONS(6155), - [anon_sym_register] = ACTIONS(6155), - [anon_sym_hide] = ACTIONS(6155), - [anon_sym_hide_DASHenv] = ACTIONS(6155), - [anon_sym_overlay] = ACTIONS(6155), - [anon_sym_new] = ACTIONS(6155), - [anon_sym_as] = ACTIONS(6155), - [anon_sym_PLUS] = ACTIONS(6164), - [aux_sym__val_number_decimal_token1] = ACTIONS(6169), - [aux_sym__val_number_decimal_token2] = ACTIONS(6172), - [anon_sym_DOT2] = ACTIONS(6175), - [aux_sym__val_number_decimal_token3] = ACTIONS(6178), - [aux_sym__val_number_token1] = ACTIONS(6181), - [aux_sym__val_number_token2] = ACTIONS(6181), - [aux_sym__val_number_token3] = ACTIONS(6181), - [aux_sym__val_number_token4] = ACTIONS(6184), - [aux_sym__val_number_token5] = ACTIONS(6181), - [aux_sym__val_number_token6] = ACTIONS(6184), - [anon_sym_DQUOTE] = ACTIONS(6187), - [sym__str_single_quotes] = ACTIONS(6190), - [sym__str_back_ticks] = ACTIONS(6190), - [aux_sym__record_key_token2] = ACTIONS(6193), - [anon_sym_POUND] = ACTIONS(3), - }, - [2448] = { - [sym_comment] = STATE(2448), - [anon_sym_LBRACK] = ACTIONS(1318), - [anon_sym_COMMA] = ACTIONS(1318), - [anon_sym_RBRACK] = ACTIONS(1318), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_DOLLAR] = ACTIONS(1318), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_in] = ACTIONS(1316), - [anon_sym_LBRACE] = ACTIONS(1318), - [anon_sym_DOT_DOT] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_STAR_STAR] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(1316), - [anon_sym_mod] = ACTIONS(1318), - [anon_sym_SLASH_SLASH] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_bit_DASHshl] = ACTIONS(1318), - [anon_sym_bit_DASHshr] = ACTIONS(1318), - [anon_sym_EQ_EQ] = ACTIONS(1318), - [anon_sym_BANG_EQ] = ACTIONS(1318), - [anon_sym_LT2] = ACTIONS(1316), - [anon_sym_LT_EQ] = ACTIONS(1318), - [anon_sym_GT_EQ] = ACTIONS(1318), - [anon_sym_not_DASHin] = ACTIONS(1318), - [anon_sym_starts_DASHwith] = ACTIONS(1318), - [anon_sym_ends_DASHwith] = ACTIONS(1318), - [anon_sym_EQ_TILDE] = ACTIONS(1318), - [anon_sym_BANG_TILDE] = ACTIONS(1318), - [anon_sym_bit_DASHand] = ACTIONS(1318), - [anon_sym_bit_DASHxor] = ACTIONS(1318), - [anon_sym_bit_DASHor] = ACTIONS(1318), - [anon_sym_and] = ACTIONS(1318), - [anon_sym_xor] = ACTIONS(1318), - [anon_sym_or] = ACTIONS(1318), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1318), - [anon_sym_DOT_DOT_LT] = ACTIONS(1318), - [anon_sym_null] = ACTIONS(1318), - [anon_sym_true] = ACTIONS(1318), - [anon_sym_false] = ACTIONS(1318), - [aux_sym__val_number_decimal_token1] = ACTIONS(1316), - [aux_sym__val_number_decimal_token2] = ACTIONS(1318), - [anon_sym_DOT2] = ACTIONS(1316), - [aux_sym__val_number_decimal_token3] = ACTIONS(1318), - [aux_sym__val_number_token1] = ACTIONS(1318), - [aux_sym__val_number_token2] = ACTIONS(1318), - [aux_sym__val_number_token3] = ACTIONS(1318), - [aux_sym__val_number_token4] = ACTIONS(1318), - [aux_sym__val_number_token5] = ACTIONS(1318), - [aux_sym__val_number_token6] = ACTIONS(1318), - [anon_sym_0b] = ACTIONS(1316), - [anon_sym_0o] = ACTIONS(1316), - [anon_sym_0x] = ACTIONS(1316), - [sym_val_date] = ACTIONS(1318), - [anon_sym_DQUOTE] = ACTIONS(1318), - [sym__str_single_quotes] = ACTIONS(1318), - [sym__str_back_ticks] = ACTIONS(1318), - [anon_sym_err_GT] = ACTIONS(1318), - [anon_sym_out_GT] = ACTIONS(1318), - [anon_sym_e_GT] = ACTIONS(1318), - [anon_sym_o_GT] = ACTIONS(1318), - [anon_sym_err_PLUSout_GT] = ACTIONS(1318), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1318), - [anon_sym_o_PLUSe_GT] = ACTIONS(1318), - [anon_sym_e_PLUSo_GT] = ACTIONS(1318), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(3), - }, - [2449] = { - [sym_comment] = STATE(2449), - [anon_sym_LBRACK] = ACTIONS(1322), - [anon_sym_COMMA] = ACTIONS(1322), - [anon_sym_RBRACK] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1322), - [anon_sym_DOLLAR] = ACTIONS(1322), - [anon_sym_GT] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_in] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_DOT_DOT] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_STAR_STAR] = ACTIONS(1322), - [anon_sym_PLUS_PLUS] = ACTIONS(1322), - [anon_sym_SLASH] = ACTIONS(1320), - [anon_sym_mod] = ACTIONS(1322), - [anon_sym_SLASH_SLASH] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1320), - [anon_sym_bit_DASHshl] = ACTIONS(1322), - [anon_sym_bit_DASHshr] = ACTIONS(1322), - [anon_sym_EQ_EQ] = ACTIONS(1322), - [anon_sym_BANG_EQ] = ACTIONS(1322), - [anon_sym_LT2] = ACTIONS(1320), - [anon_sym_LT_EQ] = ACTIONS(1322), - [anon_sym_GT_EQ] = ACTIONS(1322), - [anon_sym_not_DASHin] = ACTIONS(1322), - [anon_sym_starts_DASHwith] = ACTIONS(1322), - [anon_sym_ends_DASHwith] = ACTIONS(1322), - [anon_sym_EQ_TILDE] = ACTIONS(1322), - [anon_sym_BANG_TILDE] = ACTIONS(1322), - [anon_sym_bit_DASHand] = ACTIONS(1322), - [anon_sym_bit_DASHxor] = ACTIONS(1322), - [anon_sym_bit_DASHor] = ACTIONS(1322), - [anon_sym_and] = ACTIONS(1322), - [anon_sym_xor] = ACTIONS(1322), - [anon_sym_or] = ACTIONS(1322), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1322), - [anon_sym_DOT_DOT_LT] = ACTIONS(1322), - [anon_sym_null] = ACTIONS(1322), - [anon_sym_true] = ACTIONS(1322), - [anon_sym_false] = ACTIONS(1322), - [aux_sym__val_number_decimal_token1] = ACTIONS(1320), - [aux_sym__val_number_decimal_token2] = ACTIONS(1322), - [anon_sym_DOT2] = ACTIONS(1320), - [aux_sym__val_number_decimal_token3] = ACTIONS(1322), - [aux_sym__val_number_token1] = ACTIONS(1322), - [aux_sym__val_number_token2] = ACTIONS(1322), - [aux_sym__val_number_token3] = ACTIONS(1322), - [aux_sym__val_number_token4] = ACTIONS(1322), - [aux_sym__val_number_token5] = ACTIONS(1322), - [aux_sym__val_number_token6] = ACTIONS(1322), - [anon_sym_0b] = ACTIONS(1320), - [anon_sym_0o] = ACTIONS(1320), - [anon_sym_0x] = ACTIONS(1320), - [sym_val_date] = ACTIONS(1322), - [anon_sym_DQUOTE] = ACTIONS(1322), - [sym__str_single_quotes] = ACTIONS(1322), - [sym__str_back_ticks] = ACTIONS(1322), - [anon_sym_err_GT] = ACTIONS(1322), - [anon_sym_out_GT] = ACTIONS(1322), - [anon_sym_e_GT] = ACTIONS(1322), - [anon_sym_o_GT] = ACTIONS(1322), - [anon_sym_err_PLUSout_GT] = ACTIONS(1322), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1322), - [anon_sym_o_PLUSe_GT] = ACTIONS(1322), - [anon_sym_e_PLUSo_GT] = ACTIONS(1322), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1320), - [anon_sym_POUND] = ACTIONS(3), - }, - [2450] = { - [sym_comment] = STATE(2450), - [anon_sym_LBRACK] = ACTIONS(1344), - [anon_sym_COMMA] = ACTIONS(1344), - [anon_sym_RBRACK] = ACTIONS(1344), - [anon_sym_LPAREN] = ACTIONS(1344), - [anon_sym_DOLLAR] = ACTIONS(1344), - [anon_sym_GT] = ACTIONS(1342), - [anon_sym_DASH_DASH] = ACTIONS(1344), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_in] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_DOT_DOT] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_STAR_STAR] = ACTIONS(1344), - [anon_sym_PLUS_PLUS] = ACTIONS(1344), - [anon_sym_SLASH] = ACTIONS(1342), - [anon_sym_mod] = ACTIONS(1344), - [anon_sym_SLASH_SLASH] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_bit_DASHshl] = ACTIONS(1344), - [anon_sym_bit_DASHshr] = ACTIONS(1344), - [anon_sym_EQ_EQ] = ACTIONS(1344), - [anon_sym_BANG_EQ] = ACTIONS(1344), - [anon_sym_LT2] = ACTIONS(1342), - [anon_sym_LT_EQ] = ACTIONS(1344), - [anon_sym_GT_EQ] = ACTIONS(1344), - [anon_sym_not_DASHin] = ACTIONS(1344), - [anon_sym_starts_DASHwith] = ACTIONS(1344), - [anon_sym_ends_DASHwith] = ACTIONS(1344), - [anon_sym_EQ_TILDE] = ACTIONS(1344), - [anon_sym_BANG_TILDE] = ACTIONS(1344), - [anon_sym_bit_DASHand] = ACTIONS(1344), - [anon_sym_bit_DASHxor] = ACTIONS(1344), - [anon_sym_bit_DASHor] = ACTIONS(1344), - [anon_sym_and] = ACTIONS(1344), - [anon_sym_xor] = ACTIONS(1344), - [anon_sym_or] = ACTIONS(1344), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1344), - [anon_sym_DOT_DOT_LT] = ACTIONS(1344), - [anon_sym_null] = ACTIONS(1344), - [anon_sym_true] = ACTIONS(1344), - [anon_sym_false] = ACTIONS(1344), - [aux_sym__val_number_decimal_token1] = ACTIONS(1342), - [aux_sym__val_number_decimal_token2] = ACTIONS(1344), - [anon_sym_DOT2] = ACTIONS(1342), - [aux_sym__val_number_decimal_token3] = ACTIONS(1344), - [aux_sym__val_number_token1] = ACTIONS(1344), - [aux_sym__val_number_token2] = ACTIONS(1344), - [aux_sym__val_number_token3] = ACTIONS(1344), - [aux_sym__val_number_token4] = ACTIONS(1344), - [aux_sym__val_number_token5] = ACTIONS(1344), - [aux_sym__val_number_token6] = ACTIONS(1344), - [anon_sym_0b] = ACTIONS(1342), - [anon_sym_0o] = ACTIONS(1342), - [anon_sym_0x] = ACTIONS(1342), - [sym_val_date] = ACTIONS(1344), - [anon_sym_DQUOTE] = ACTIONS(1344), - [sym__str_single_quotes] = ACTIONS(1344), - [sym__str_back_ticks] = ACTIONS(1344), - [anon_sym_err_GT] = ACTIONS(1344), - [anon_sym_out_GT] = ACTIONS(1344), - [anon_sym_e_GT] = ACTIONS(1344), - [anon_sym_o_GT] = ACTIONS(1344), - [anon_sym_err_PLUSout_GT] = ACTIONS(1344), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1344), - [anon_sym_o_PLUSe_GT] = ACTIONS(1344), - [anon_sym_e_PLUSo_GT] = ACTIONS(1344), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1342), - [anon_sym_POUND] = ACTIONS(3), - }, - [2451] = { - [sym_comment] = STATE(2451), - [anon_sym_LBRACK] = ACTIONS(1348), - [anon_sym_COMMA] = ACTIONS(1348), - [anon_sym_RBRACK] = ACTIONS(1348), - [anon_sym_LPAREN] = ACTIONS(1348), - [anon_sym_DOLLAR] = ACTIONS(1348), - [anon_sym_GT] = ACTIONS(1346), - [anon_sym_DASH_DASH] = ACTIONS(1348), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_in] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_DOT_DOT] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_STAR_STAR] = ACTIONS(1348), - [anon_sym_PLUS_PLUS] = ACTIONS(1348), - [anon_sym_SLASH] = ACTIONS(1346), - [anon_sym_mod] = ACTIONS(1348), - [anon_sym_SLASH_SLASH] = ACTIONS(1348), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_bit_DASHshl] = ACTIONS(1348), - [anon_sym_bit_DASHshr] = ACTIONS(1348), - [anon_sym_EQ_EQ] = ACTIONS(1348), - [anon_sym_BANG_EQ] = ACTIONS(1348), - [anon_sym_LT2] = ACTIONS(1346), - [anon_sym_LT_EQ] = ACTIONS(1348), - [anon_sym_GT_EQ] = ACTIONS(1348), - [anon_sym_not_DASHin] = ACTIONS(1348), - [anon_sym_starts_DASHwith] = ACTIONS(1348), - [anon_sym_ends_DASHwith] = ACTIONS(1348), - [anon_sym_EQ_TILDE] = ACTIONS(1348), - [anon_sym_BANG_TILDE] = ACTIONS(1348), - [anon_sym_bit_DASHand] = ACTIONS(1348), - [anon_sym_bit_DASHxor] = ACTIONS(1348), - [anon_sym_bit_DASHor] = ACTIONS(1348), - [anon_sym_and] = ACTIONS(1348), - [anon_sym_xor] = ACTIONS(1348), - [anon_sym_or] = ACTIONS(1348), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1348), - [anon_sym_DOT_DOT_LT] = ACTIONS(1348), - [anon_sym_null] = ACTIONS(1348), - [anon_sym_true] = ACTIONS(1348), - [anon_sym_false] = ACTIONS(1348), - [aux_sym__val_number_decimal_token1] = ACTIONS(1346), - [aux_sym__val_number_decimal_token2] = ACTIONS(1348), - [anon_sym_DOT2] = ACTIONS(1346), - [aux_sym__val_number_decimal_token3] = ACTIONS(1348), - [aux_sym__val_number_token1] = ACTIONS(1348), - [aux_sym__val_number_token2] = ACTIONS(1348), - [aux_sym__val_number_token3] = ACTIONS(1348), - [aux_sym__val_number_token4] = ACTIONS(1348), - [aux_sym__val_number_token5] = ACTIONS(1348), - [aux_sym__val_number_token6] = ACTIONS(1348), - [anon_sym_0b] = ACTIONS(1346), - [anon_sym_0o] = ACTIONS(1346), - [anon_sym_0x] = ACTIONS(1346), - [sym_val_date] = ACTIONS(1348), - [anon_sym_DQUOTE] = ACTIONS(1348), - [sym__str_single_quotes] = ACTIONS(1348), - [sym__str_back_ticks] = ACTIONS(1348), - [anon_sym_err_GT] = ACTIONS(1348), - [anon_sym_out_GT] = ACTIONS(1348), - [anon_sym_e_GT] = ACTIONS(1348), - [anon_sym_o_GT] = ACTIONS(1348), - [anon_sym_err_PLUSout_GT] = ACTIONS(1348), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1348), - [anon_sym_o_PLUSe_GT] = ACTIONS(1348), - [anon_sym_e_PLUSo_GT] = ACTIONS(1348), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1346), + [2612] = { + [sym_cell_path] = STATE(2726), + [sym_path] = STATE(2613), + [sym_comment] = STATE(2612), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LPAREN] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1004), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1004), + [anon_sym_PLUS_PLUS] = ACTIONS(1004), + [anon_sym_SLASH] = ACTIONS(1002), + [anon_sym_mod] = ACTIONS(1004), + [anon_sym_SLASH_SLASH] = ACTIONS(1004), + [anon_sym_PLUS] = ACTIONS(1002), + [anon_sym_bit_DASHshl] = ACTIONS(1004), + [anon_sym_bit_DASHshr] = ACTIONS(1004), + [anon_sym_EQ_EQ] = ACTIONS(1004), + [anon_sym_BANG_EQ] = ACTIONS(1004), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ] = ACTIONS(1004), + [anon_sym_GT_EQ] = ACTIONS(1004), + [anon_sym_not_DASHin] = ACTIONS(1004), + [anon_sym_starts_DASHwith] = ACTIONS(1004), + [anon_sym_ends_DASHwith] = ACTIONS(1004), + [anon_sym_EQ_TILDE] = ACTIONS(1004), + [anon_sym_BANG_TILDE] = ACTIONS(1004), + [anon_sym_bit_DASHand] = ACTIONS(1004), + [anon_sym_bit_DASHxor] = ACTIONS(1004), + [anon_sym_bit_DASHor] = ACTIONS(1004), + [anon_sym_and] = ACTIONS(1004), + [anon_sym_xor] = ACTIONS(1004), + [anon_sym_or] = ACTIONS(1004), + [anon_sym_not] = ACTIONS(1002), + [anon_sym_DOT_DOT2] = ACTIONS(1002), + [anon_sym_DOT] = ACTIONS(6549), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1004), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1004), + [anon_sym_null] = ACTIONS(1004), + [anon_sym_true] = ACTIONS(1004), + [anon_sym_false] = ACTIONS(1004), + [aux_sym__val_number_decimal_token1] = ACTIONS(1002), + [aux_sym__val_number_decimal_token2] = ACTIONS(1004), + [anon_sym_DOT2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = 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_POUND] = ACTIONS(3), }, - [2452] = { - [sym_comment] = STATE(2452), - [anon_sym_LBRACK] = ACTIONS(1364), - [anon_sym_COMMA] = ACTIONS(1364), - [anon_sym_RBRACK] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1364), - [anon_sym_DOLLAR] = ACTIONS(1364), - [anon_sym_GT] = ACTIONS(1362), - [anon_sym_DASH_DASH] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_in] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_DOT_DOT] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_STAR_STAR] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_SLASH] = ACTIONS(1362), - [anon_sym_mod] = ACTIONS(1364), - [anon_sym_SLASH_SLASH] = ACTIONS(1364), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_bit_DASHshl] = ACTIONS(1364), - [anon_sym_bit_DASHshr] = ACTIONS(1364), - [anon_sym_EQ_EQ] = ACTIONS(1364), - [anon_sym_BANG_EQ] = ACTIONS(1364), - [anon_sym_LT2] = ACTIONS(1362), - [anon_sym_LT_EQ] = ACTIONS(1364), - [anon_sym_GT_EQ] = ACTIONS(1364), - [anon_sym_not_DASHin] = ACTIONS(1364), - [anon_sym_starts_DASHwith] = ACTIONS(1364), - [anon_sym_ends_DASHwith] = ACTIONS(1364), - [anon_sym_EQ_TILDE] = ACTIONS(1364), - [anon_sym_BANG_TILDE] = ACTIONS(1364), - [anon_sym_bit_DASHand] = ACTIONS(1364), - [anon_sym_bit_DASHxor] = ACTIONS(1364), - [anon_sym_bit_DASHor] = ACTIONS(1364), - [anon_sym_and] = ACTIONS(1364), - [anon_sym_xor] = ACTIONS(1364), - [anon_sym_or] = ACTIONS(1364), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1364), - [anon_sym_DOT_DOT_LT] = ACTIONS(1364), - [anon_sym_null] = ACTIONS(1364), - [anon_sym_true] = ACTIONS(1364), - [anon_sym_false] = ACTIONS(1364), - [aux_sym__val_number_decimal_token1] = ACTIONS(1362), - [aux_sym__val_number_decimal_token2] = ACTIONS(1364), - [anon_sym_DOT2] = ACTIONS(1362), - [aux_sym__val_number_decimal_token3] = ACTIONS(1364), - [aux_sym__val_number_token1] = ACTIONS(1364), - [aux_sym__val_number_token2] = ACTIONS(1364), - [aux_sym__val_number_token3] = ACTIONS(1364), - [aux_sym__val_number_token4] = ACTIONS(1364), - [aux_sym__val_number_token5] = ACTIONS(1364), - [aux_sym__val_number_token6] = ACTIONS(1364), - [anon_sym_0b] = ACTIONS(1362), - [anon_sym_0o] = ACTIONS(1362), - [anon_sym_0x] = ACTIONS(1362), - [sym_val_date] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1364), - [sym__str_single_quotes] = ACTIONS(1364), - [sym__str_back_ticks] = ACTIONS(1364), - [anon_sym_err_GT] = ACTIONS(1364), - [anon_sym_out_GT] = ACTIONS(1364), - [anon_sym_e_GT] = ACTIONS(1364), - [anon_sym_o_GT] = ACTIONS(1364), - [anon_sym_err_PLUSout_GT] = ACTIONS(1364), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1364), - [anon_sym_o_PLUSe_GT] = ACTIONS(1364), - [anon_sym_e_PLUSo_GT] = ACTIONS(1364), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1362), + [2613] = { + [sym_path] = STATE(2715), + [sym_comment] = STATE(2613), + [aux_sym_cell_path_repeat1] = STATE(2614), + [anon_sym_LBRACK] = ACTIONS(1012), + [anon_sym_LPAREN] = ACTIONS(1012), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_STAR_STAR] = ACTIONS(1012), + [anon_sym_PLUS_PLUS] = ACTIONS(1012), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1012), + [anon_sym_SLASH_SLASH] = ACTIONS(1012), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_bit_DASHshl] = ACTIONS(1012), + [anon_sym_bit_DASHshr] = ACTIONS(1012), + [anon_sym_EQ_EQ] = ACTIONS(1012), + [anon_sym_BANG_EQ] = ACTIONS(1012), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1012), + [anon_sym_GT_EQ] = ACTIONS(1012), + [anon_sym_not_DASHin] = ACTIONS(1012), + [anon_sym_starts_DASHwith] = ACTIONS(1012), + [anon_sym_ends_DASHwith] = ACTIONS(1012), + [anon_sym_EQ_TILDE] = ACTIONS(1012), + [anon_sym_BANG_TILDE] = ACTIONS(1012), + [anon_sym_bit_DASHand] = ACTIONS(1012), + [anon_sym_bit_DASHxor] = ACTIONS(1012), + [anon_sym_bit_DASHor] = ACTIONS(1012), + [anon_sym_and] = ACTIONS(1012), + [anon_sym_xor] = ACTIONS(1012), + [anon_sym_or] = ACTIONS(1012), + [anon_sym_not] = ACTIONS(1010), + [anon_sym_DOT_DOT2] = ACTIONS(1010), + [anon_sym_DOT] = ACTIONS(6549), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), + [anon_sym_null] = ACTIONS(1012), + [anon_sym_true] = ACTIONS(1012), + [anon_sym_false] = ACTIONS(1012), + [aux_sym__val_number_decimal_token1] = ACTIONS(1010), + [aux_sym__val_number_decimal_token2] = ACTIONS(1012), + [anon_sym_DOT2] = ACTIONS(1010), + [aux_sym__val_number_decimal_token3] = 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(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [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_POUND] = ACTIONS(3), }, - [2453] = { - [sym_comment] = STATE(2453), - [anon_sym_LBRACK] = ACTIONS(1296), - [anon_sym_COMMA] = ACTIONS(1296), - [anon_sym_RBRACK] = ACTIONS(1296), - [anon_sym_LPAREN] = ACTIONS(1296), - [anon_sym_DOLLAR] = ACTIONS(1296), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1296), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_in] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1296), - [anon_sym_DOT_DOT] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_STAR_STAR] = ACTIONS(1296), - [anon_sym_PLUS_PLUS] = ACTIONS(1296), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_mod] = ACTIONS(1296), - [anon_sym_SLASH_SLASH] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_bit_DASHshl] = ACTIONS(1296), - [anon_sym_bit_DASHshr] = ACTIONS(1296), - [anon_sym_EQ_EQ] = ACTIONS(1296), - [anon_sym_BANG_EQ] = ACTIONS(1296), - [anon_sym_LT2] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1296), - [anon_sym_GT_EQ] = ACTIONS(1296), - [anon_sym_not_DASHin] = ACTIONS(1296), - [anon_sym_starts_DASHwith] = ACTIONS(1296), - [anon_sym_ends_DASHwith] = ACTIONS(1296), - [anon_sym_EQ_TILDE] = ACTIONS(1296), - [anon_sym_BANG_TILDE] = ACTIONS(1296), - [anon_sym_bit_DASHand] = ACTIONS(1296), - [anon_sym_bit_DASHxor] = ACTIONS(1296), - [anon_sym_bit_DASHor] = ACTIONS(1296), - [anon_sym_and] = ACTIONS(1296), - [anon_sym_xor] = ACTIONS(1296), - [anon_sym_or] = ACTIONS(1296), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1296), - [anon_sym_DOT_DOT_LT] = ACTIONS(1296), - [anon_sym_null] = ACTIONS(1296), - [anon_sym_true] = ACTIONS(1296), - [anon_sym_false] = ACTIONS(1296), - [aux_sym__val_number_decimal_token1] = ACTIONS(1294), - [aux_sym__val_number_decimal_token2] = ACTIONS(1296), - [anon_sym_DOT2] = ACTIONS(1294), - [aux_sym__val_number_decimal_token3] = 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(1296), - [aux_sym__val_number_token5] = ACTIONS(1296), - [aux_sym__val_number_token6] = ACTIONS(1296), - [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_err_GT] = ACTIONS(1296), - [anon_sym_out_GT] = ACTIONS(1296), - [anon_sym_e_GT] = ACTIONS(1296), - [anon_sym_o_GT] = ACTIONS(1296), - [anon_sym_err_PLUSout_GT] = ACTIONS(1296), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1296), - [anon_sym_o_PLUSe_GT] = ACTIONS(1296), - [anon_sym_e_PLUSo_GT] = ACTIONS(1296), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1294), + [2614] = { + [sym_path] = STATE(2715), + [sym_comment] = STATE(2614), + [aux_sym_cell_path_repeat1] = STATE(2615), + [anon_sym_LBRACK] = ACTIONS(1008), + [anon_sym_LPAREN] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_GT] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_in] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(1008), + [anon_sym_DOT_DOT] = ACTIONS(1006), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_STAR_STAR] = ACTIONS(1008), + [anon_sym_PLUS_PLUS] = ACTIONS(1008), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_mod] = ACTIONS(1008), + [anon_sym_SLASH_SLASH] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_bit_DASHshl] = ACTIONS(1008), + [anon_sym_bit_DASHshr] = ACTIONS(1008), + [anon_sym_EQ_EQ] = ACTIONS(1008), + [anon_sym_BANG_EQ] = ACTIONS(1008), + [anon_sym_LT2] = ACTIONS(1006), + [anon_sym_LT_EQ] = ACTIONS(1008), + [anon_sym_GT_EQ] = ACTIONS(1008), + [anon_sym_not_DASHin] = ACTIONS(1008), + [anon_sym_starts_DASHwith] = ACTIONS(1008), + [anon_sym_ends_DASHwith] = ACTIONS(1008), + [anon_sym_EQ_TILDE] = ACTIONS(1008), + [anon_sym_BANG_TILDE] = ACTIONS(1008), + [anon_sym_bit_DASHand] = ACTIONS(1008), + [anon_sym_bit_DASHxor] = ACTIONS(1008), + [anon_sym_bit_DASHor] = ACTIONS(1008), + [anon_sym_and] = ACTIONS(1008), + [anon_sym_xor] = ACTIONS(1008), + [anon_sym_or] = ACTIONS(1008), + [anon_sym_not] = ACTIONS(1006), + [anon_sym_DOT_DOT2] = ACTIONS(1006), + [anon_sym_DOT] = ACTIONS(6549), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), + [anon_sym_DOT_DOT_LT] = ACTIONS(1006), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), + [anon_sym_null] = ACTIONS(1008), + [anon_sym_true] = ACTIONS(1008), + [anon_sym_false] = ACTIONS(1008), + [aux_sym__val_number_decimal_token1] = ACTIONS(1006), + [aux_sym__val_number_decimal_token2] = ACTIONS(1008), + [anon_sym_DOT2] = ACTIONS(1006), + [aux_sym__val_number_decimal_token3] = ACTIONS(1008), + [aux_sym__val_number_token1] = ACTIONS(1008), + [aux_sym__val_number_token2] = ACTIONS(1008), + [aux_sym__val_number_token3] = ACTIONS(1008), + [aux_sym__val_number_token4] = ACTIONS(1008), + [aux_sym__val_number_token5] = ACTIONS(1008), + [aux_sym__val_number_token6] = ACTIONS(1008), + [anon_sym_0b] = ACTIONS(1006), + [anon_sym_0o] = ACTIONS(1006), + [anon_sym_0x] = ACTIONS(1006), + [sym_val_date] = ACTIONS(1008), + [anon_sym_DQUOTE] = ACTIONS(1008), + [sym__str_single_quotes] = ACTIONS(1008), + [sym__str_back_ticks] = ACTIONS(1008), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1008), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1008), [anon_sym_POUND] = ACTIONS(3), }, - [2454] = { - [sym_comment] = STATE(2454), - [anon_sym_LBRACK] = ACTIONS(1296), - [anon_sym_COMMA] = ACTIONS(1296), - [anon_sym_RBRACK] = ACTIONS(1296), - [anon_sym_LPAREN] = ACTIONS(1296), - [anon_sym_DOLLAR] = ACTIONS(1296), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1296), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_in] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1296), - [anon_sym_DOT_DOT] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_STAR_STAR] = ACTIONS(1296), - [anon_sym_PLUS_PLUS] = ACTIONS(1296), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_mod] = ACTIONS(1296), - [anon_sym_SLASH_SLASH] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_bit_DASHshl] = ACTIONS(1296), - [anon_sym_bit_DASHshr] = ACTIONS(1296), - [anon_sym_EQ_EQ] = ACTIONS(1296), - [anon_sym_BANG_EQ] = ACTIONS(1296), - [anon_sym_LT2] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1296), - [anon_sym_GT_EQ] = ACTIONS(1296), - [anon_sym_not_DASHin] = ACTIONS(1296), - [anon_sym_starts_DASHwith] = ACTIONS(1296), - [anon_sym_ends_DASHwith] = ACTIONS(1296), - [anon_sym_EQ_TILDE] = ACTIONS(1296), - [anon_sym_BANG_TILDE] = ACTIONS(1296), - [anon_sym_bit_DASHand] = ACTIONS(1296), - [anon_sym_bit_DASHxor] = ACTIONS(1296), - [anon_sym_bit_DASHor] = ACTIONS(1296), - [anon_sym_and] = ACTIONS(1296), - [anon_sym_xor] = ACTIONS(1296), - [anon_sym_or] = ACTIONS(1296), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1296), - [anon_sym_DOT_DOT_LT] = ACTIONS(1296), - [anon_sym_null] = ACTIONS(1296), - [anon_sym_true] = ACTIONS(1296), - [anon_sym_false] = ACTIONS(1296), - [aux_sym__val_number_decimal_token1] = ACTIONS(1294), - [aux_sym__val_number_decimal_token2] = ACTIONS(1296), - [anon_sym_DOT2] = ACTIONS(1294), - [aux_sym__val_number_decimal_token3] = 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(1296), - [aux_sym__val_number_token5] = ACTIONS(1296), - [aux_sym__val_number_token6] = ACTIONS(1296), - [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_err_GT] = ACTIONS(1296), - [anon_sym_out_GT] = ACTIONS(1296), - [anon_sym_e_GT] = ACTIONS(1296), - [anon_sym_o_GT] = ACTIONS(1296), - [anon_sym_err_PLUSout_GT] = ACTIONS(1296), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1296), - [anon_sym_o_PLUSe_GT] = ACTIONS(1296), - [anon_sym_e_PLUSo_GT] = ACTIONS(1296), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1294), + [2615] = { + [sym_path] = STATE(2715), + [sym_comment] = STATE(2615), + [aux_sym_cell_path_repeat1] = STATE(2615), + [anon_sym_LBRACK] = ACTIONS(987), + [anon_sym_LPAREN] = ACTIONS(987), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_GT] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_in] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(987), + [anon_sym_DOT_DOT] = ACTIONS(985), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_STAR_STAR] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(987), + [anon_sym_SLASH] = ACTIONS(985), + [anon_sym_mod] = ACTIONS(987), + [anon_sym_SLASH_SLASH] = ACTIONS(987), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_bit_DASHshl] = ACTIONS(987), + [anon_sym_bit_DASHshr] = ACTIONS(987), + [anon_sym_EQ_EQ] = ACTIONS(987), + [anon_sym_BANG_EQ] = ACTIONS(987), + [anon_sym_LT2] = ACTIONS(985), + [anon_sym_LT_EQ] = ACTIONS(987), + [anon_sym_GT_EQ] = ACTIONS(987), + [anon_sym_not_DASHin] = ACTIONS(987), + [anon_sym_starts_DASHwith] = ACTIONS(987), + [anon_sym_ends_DASHwith] = ACTIONS(987), + [anon_sym_EQ_TILDE] = ACTIONS(987), + [anon_sym_BANG_TILDE] = ACTIONS(987), + [anon_sym_bit_DASHand] = ACTIONS(987), + [anon_sym_bit_DASHxor] = ACTIONS(987), + [anon_sym_bit_DASHor] = ACTIONS(987), + [anon_sym_and] = ACTIONS(987), + [anon_sym_xor] = ACTIONS(987), + [anon_sym_or] = ACTIONS(987), + [anon_sym_not] = ACTIONS(985), + [anon_sym_DOT_DOT2] = ACTIONS(985), + [anon_sym_DOT] = ACTIONS(6575), + [anon_sym_DOT_DOT_EQ] = ACTIONS(985), + [anon_sym_DOT_DOT_LT] = ACTIONS(985), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(987), + [anon_sym_DOT_DOT_LT2] = ACTIONS(987), + [anon_sym_null] = ACTIONS(987), + [anon_sym_true] = ACTIONS(987), + [anon_sym_false] = ACTIONS(987), + [aux_sym__val_number_decimal_token1] = ACTIONS(985), + [aux_sym__val_number_decimal_token2] = ACTIONS(987), + [anon_sym_DOT2] = ACTIONS(985), + [aux_sym__val_number_decimal_token3] = ACTIONS(987), + [aux_sym__val_number_token1] = ACTIONS(987), + [aux_sym__val_number_token2] = ACTIONS(987), + [aux_sym__val_number_token3] = ACTIONS(987), + [aux_sym__val_number_token4] = ACTIONS(987), + [aux_sym__val_number_token5] = ACTIONS(987), + [aux_sym__val_number_token6] = ACTIONS(987), + [anon_sym_0b] = ACTIONS(985), + [anon_sym_0o] = ACTIONS(985), + [anon_sym_0x] = ACTIONS(985), + [sym_val_date] = ACTIONS(987), + [anon_sym_DQUOTE] = ACTIONS(987), + [sym__str_single_quotes] = ACTIONS(987), + [sym__str_back_ticks] = ACTIONS(987), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(987), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(987), [anon_sym_POUND] = ACTIONS(3), }, - [2455] = { - [sym__expression] = STATE(7569), - [sym_expr_unary] = STATE(6196), - [sym__expr_unary_minus] = STATE(6200), - [sym_expr_binary] = STATE(6196), - [sym__expr_binary_expression] = STATE(6783), - [sym_expr_parenthesized] = STATE(5434), - [sym_val_range] = STATE(8689), - [sym__value] = STATE(6196), - [sym_val_nothing] = STATE(6059), - [sym_val_bool] = STATE(6059), - [sym_val_variable] = STATE(5445), - [sym__var] = STATE(4804), - [sym_val_number] = STATE(6059), - [sym__val_number_decimal] = STATE(4923), - [sym__val_number] = STATE(6097), - [sym_val_duration] = STATE(6059), - [sym_val_filesize] = STATE(6059), - [sym_val_binary] = STATE(6059), - [sym_val_string] = STATE(6059), - [sym__str_double_quotes] = STATE(6144), - [sym_val_interpolated] = STATE(6059), - [sym__inter_single_quotes] = STATE(6158), - [sym__inter_double_quotes] = STATE(6159), - [sym_val_list] = STATE(6059), - [sym_val_record] = STATE(6059), - [sym_val_table] = STATE(6059), - [sym_val_closure] = STATE(6059), - [sym__flag] = STATE(7568), - [sym_short_flag] = STATE(8772), - [sym_long_flag] = STATE(8772), - [sym_long_flag_equals_value] = STATE(8808), - [sym_comment] = STATE(2455), - [ts_builtin_sym_end] = ACTIONS(5993), - [anon_sym_SEMI] = ACTIONS(5991), - [anon_sym_LF] = ACTIONS(5993), - [anon_sym_LBRACK] = ACTIONS(6053), - [anon_sym_LPAREN] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(5991), - [anon_sym_DOLLAR] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(6151), - [anon_sym_DASH] = ACTIONS(6153), - [anon_sym_LBRACE] = ACTIONS(6061), - [anon_sym_DOT_DOT] = ACTIONS(6063), - [anon_sym_not] = ACTIONS(6065), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6067), - [anon_sym_DOT_DOT_LT] = ACTIONS(6067), - [anon_sym_null] = ACTIONS(6069), - [anon_sym_true] = ACTIONS(6071), - [anon_sym_false] = ACTIONS(6071), - [aux_sym__val_number_decimal_token1] = ACTIONS(6073), - [aux_sym__val_number_decimal_token2] = ACTIONS(6073), - [anon_sym_DOT2] = ACTIONS(6075), - [aux_sym__val_number_decimal_token3] = ACTIONS(6077), - [aux_sym__val_number_token1] = ACTIONS(6079), - [aux_sym__val_number_token2] = ACTIONS(6079), - [aux_sym__val_number_token3] = ACTIONS(6079), - [aux_sym__val_number_token4] = ACTIONS(6079), - [aux_sym__val_number_token5] = ACTIONS(6079), - [aux_sym__val_number_token6] = ACTIONS(6079), - [anon_sym_0b] = ACTIONS(2953), - [anon_sym_0o] = ACTIONS(2955), - [anon_sym_0x] = ACTIONS(2955), - [sym_val_date] = ACTIONS(6081), - [anon_sym_DQUOTE] = ACTIONS(6083), - [sym__str_single_quotes] = ACTIONS(6085), - [sym__str_back_ticks] = ACTIONS(6085), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6087), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6089), + [2616] = { + [sym_comment] = STATE(2616), + [anon_sym_SEMI] = ACTIONS(1072), + [anon_sym_LF] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1072), + [anon_sym_LPAREN] = ACTIONS(1072), + [anon_sym_RPAREN] = ACTIONS(1072), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_DOLLAR] = ACTIONS(1072), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_DASH_DASH] = ACTIONS(1072), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_in] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1072), + [anon_sym_DOT_DOT] = ACTIONS(1072), + [anon_sym_STAR] = ACTIONS(1076), + [anon_sym_STAR_STAR] = ACTIONS(1076), + [anon_sym_PLUS_PLUS] = ACTIONS(1076), + [anon_sym_SLASH] = ACTIONS(1076), + [anon_sym_mod] = ACTIONS(1076), + [anon_sym_SLASH_SLASH] = ACTIONS(1076), + [anon_sym_PLUS] = ACTIONS(1076), + [anon_sym_bit_DASHshl] = ACTIONS(1076), + [anon_sym_bit_DASHshr] = ACTIONS(1076), + [anon_sym_EQ_EQ] = ACTIONS(1076), + [anon_sym_BANG_EQ] = ACTIONS(1076), + [anon_sym_LT2] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1076), + [anon_sym_GT_EQ] = ACTIONS(1076), + [anon_sym_not_DASHin] = ACTIONS(1076), + [anon_sym_starts_DASHwith] = ACTIONS(1076), + [anon_sym_ends_DASHwith] = ACTIONS(1076), + [anon_sym_EQ_TILDE] = ACTIONS(1076), + [anon_sym_BANG_TILDE] = ACTIONS(1076), + [anon_sym_bit_DASHand] = ACTIONS(1076), + [anon_sym_bit_DASHxor] = ACTIONS(1076), + [anon_sym_bit_DASHor] = ACTIONS(1076), + [anon_sym_and] = ACTIONS(1076), + [anon_sym_xor] = ACTIONS(1076), + [anon_sym_or] = ACTIONS(1076), + [anon_sym_not] = ACTIONS(1072), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1072), + [anon_sym_DOT_DOT_LT] = ACTIONS(1072), + [anon_sym_null] = ACTIONS(1072), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [aux_sym__val_number_decimal_token1] = ACTIONS(1072), + [aux_sym__val_number_decimal_token2] = ACTIONS(1072), + [anon_sym_DOT2] = ACTIONS(1072), + [aux_sym__val_number_decimal_token3] = ACTIONS(1072), + [aux_sym__val_number_token1] = ACTIONS(1072), + [aux_sym__val_number_token2] = ACTIONS(1072), + [aux_sym__val_number_token3] = ACTIONS(1072), + [aux_sym__val_number_token4] = ACTIONS(1072), + [aux_sym__val_number_token5] = ACTIONS(1072), + [aux_sym__val_number_token6] = ACTIONS(1072), + [anon_sym_0b] = ACTIONS(1072), + [anon_sym_0o] = ACTIONS(1072), + [anon_sym_0x] = ACTIONS(1072), + [sym_val_date] = ACTIONS(1072), + [anon_sym_DQUOTE] = ACTIONS(1072), + [sym__str_single_quotes] = ACTIONS(1072), + [sym__str_back_ticks] = ACTIONS(1072), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1072), [anon_sym_POUND] = ACTIONS(113), }, - [2456] = { - [sym__expression] = STATE(7569), - [sym_expr_unary] = STATE(6196), - [sym__expr_unary_minus] = STATE(6200), - [sym_expr_binary] = STATE(6196), - [sym__expr_binary_expression] = STATE(6783), - [sym_expr_parenthesized] = STATE(5434), - [sym_val_range] = STATE(8689), - [sym__value] = STATE(6196), - [sym_val_nothing] = STATE(6059), - [sym_val_bool] = STATE(6059), - [sym_val_variable] = STATE(5445), - [sym__var] = STATE(4804), - [sym_val_number] = STATE(6059), - [sym__val_number_decimal] = STATE(4923), - [sym__val_number] = STATE(6097), - [sym_val_duration] = STATE(6059), - [sym_val_filesize] = STATE(6059), - [sym_val_binary] = STATE(6059), - [sym_val_string] = STATE(6059), - [sym__str_double_quotes] = STATE(6144), - [sym_val_interpolated] = STATE(6059), - [sym__inter_single_quotes] = STATE(6158), - [sym__inter_double_quotes] = STATE(6159), - [sym_val_list] = STATE(6059), - [sym_val_record] = STATE(6059), - [sym_val_table] = STATE(6059), - [sym_val_closure] = STATE(6059), - [sym__flag] = STATE(2464), - [sym_short_flag] = STATE(5303), - [sym_long_flag] = STATE(5303), - [sym_long_flag_equals_value] = STATE(5400), - [sym_comment] = STATE(2456), - [ts_builtin_sym_end] = ACTIONS(5993), - [anon_sym_SEMI] = ACTIONS(5991), - [anon_sym_LF] = ACTIONS(5993), - [anon_sym_LBRACK] = ACTIONS(6053), - [anon_sym_LPAREN] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(5991), - [anon_sym_DOLLAR] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(6057), - [anon_sym_DASH] = ACTIONS(6059), - [anon_sym_LBRACE] = ACTIONS(6061), - [anon_sym_DOT_DOT] = ACTIONS(6063), - [anon_sym_not] = ACTIONS(6065), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6067), - [anon_sym_DOT_DOT_LT] = ACTIONS(6067), - [anon_sym_null] = ACTIONS(6069), - [anon_sym_true] = ACTIONS(6071), - [anon_sym_false] = ACTIONS(6071), - [aux_sym__val_number_decimal_token1] = ACTIONS(6073), - [aux_sym__val_number_decimal_token2] = ACTIONS(6073), - [anon_sym_DOT2] = ACTIONS(6075), - [aux_sym__val_number_decimal_token3] = ACTIONS(6077), - [aux_sym__val_number_token1] = ACTIONS(6079), - [aux_sym__val_number_token2] = ACTIONS(6079), - [aux_sym__val_number_token3] = ACTIONS(6079), - [aux_sym__val_number_token4] = ACTIONS(6079), - [aux_sym__val_number_token5] = ACTIONS(6079), - [aux_sym__val_number_token6] = ACTIONS(6079), - [anon_sym_0b] = ACTIONS(2953), - [anon_sym_0o] = ACTIONS(2955), - [anon_sym_0x] = ACTIONS(2955), - [sym_val_date] = ACTIONS(6081), - [anon_sym_DQUOTE] = ACTIONS(6083), - [sym__str_single_quotes] = ACTIONS(6085), - [sym__str_back_ticks] = ACTIONS(6085), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6087), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6089), + [2617] = { + [sym_comment] = STATE(2617), + [ts_builtin_sym_end] = ACTIONS(1039), + [anon_sym_SEMI] = ACTIONS(1037), + [anon_sym_LF] = ACTIONS(1039), + [anon_sym_LBRACK] = ACTIONS(1037), + [anon_sym_LPAREN] = ACTIONS(1037), + [anon_sym_PIPE] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1037), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_in] = ACTIONS(1037), + [anon_sym_LBRACE] = ACTIONS(1037), + [anon_sym_DOT_DOT] = ACTIONS(1037), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_STAR_STAR] = ACTIONS(1037), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1037), + [anon_sym_mod] = ACTIONS(1037), + [anon_sym_SLASH_SLASH] = ACTIONS(1037), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_bit_DASHshl] = ACTIONS(1037), + [anon_sym_bit_DASHshr] = ACTIONS(1037), + [anon_sym_EQ_EQ] = ACTIONS(1037), + [anon_sym_BANG_EQ] = ACTIONS(1037), + [anon_sym_LT2] = ACTIONS(1037), + [anon_sym_LT_EQ] = ACTIONS(1037), + [anon_sym_GT_EQ] = ACTIONS(1037), + [anon_sym_not_DASHin] = ACTIONS(1037), + [anon_sym_starts_DASHwith] = ACTIONS(1037), + [anon_sym_ends_DASHwith] = ACTIONS(1037), + [anon_sym_EQ_TILDE] = ACTIONS(1037), + [anon_sym_BANG_TILDE] = ACTIONS(1037), + [anon_sym_bit_DASHand] = ACTIONS(1037), + [anon_sym_bit_DASHxor] = ACTIONS(1037), + [anon_sym_bit_DASHor] = ACTIONS(1037), + [anon_sym_and] = ACTIONS(1037), + [anon_sym_xor] = ACTIONS(1037), + [anon_sym_or] = ACTIONS(1037), + [anon_sym_not] = ACTIONS(1037), + [anon_sym_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1037), + [anon_sym_DOT_DOT_LT] = ACTIONS(1037), + [anon_sym_null] = ACTIONS(1037), + [anon_sym_true] = ACTIONS(1037), + [anon_sym_false] = ACTIONS(1037), + [aux_sym__val_number_decimal_token1] = ACTIONS(1037), + [aux_sym__val_number_decimal_token2] = ACTIONS(1037), + [anon_sym_DOT2] = ACTIONS(1037), + [aux_sym__val_number_decimal_token3] = ACTIONS(1037), + [aux_sym__val_number_token1] = ACTIONS(1037), + [aux_sym__val_number_token2] = ACTIONS(1037), + [aux_sym__val_number_token3] = ACTIONS(1037), + [aux_sym__val_number_token4] = ACTIONS(1037), + [aux_sym__val_number_token5] = ACTIONS(1037), + [aux_sym__val_number_token6] = ACTIONS(1037), + [anon_sym_0b] = ACTIONS(1037), + [anon_sym_0o] = ACTIONS(1037), + [anon_sym_0x] = ACTIONS(1037), + [sym_val_date] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1037), + [sym__str_single_quotes] = ACTIONS(1037), + [sym__str_back_ticks] = ACTIONS(1037), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1037), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1037), [anon_sym_POUND] = ACTIONS(113), }, - [2457] = { - [sym__expression] = STATE(7569), - [sym_expr_unary] = STATE(6196), - [sym__expr_unary_minus] = STATE(6200), - [sym_expr_binary] = STATE(6196), - [sym__expr_binary_expression] = STATE(6783), - [sym_expr_parenthesized] = STATE(5434), - [sym_val_range] = STATE(8689), - [sym__value] = STATE(6196), - [sym_val_nothing] = STATE(6059), - [sym_val_bool] = STATE(6059), - [sym_val_variable] = STATE(5445), - [sym__var] = STATE(4804), - [sym_val_number] = STATE(6059), - [sym__val_number_decimal] = STATE(4923), - [sym__val_number] = STATE(6097), - [sym_val_duration] = STATE(6059), - [sym_val_filesize] = STATE(6059), - [sym_val_binary] = STATE(6059), - [sym_val_string] = STATE(6059), - [sym__str_double_quotes] = STATE(6144), - [sym_val_interpolated] = STATE(6059), - [sym__inter_single_quotes] = STATE(6158), - [sym__inter_double_quotes] = STATE(6159), - [sym_val_list] = STATE(6059), - [sym_val_record] = STATE(6059), - [sym_val_table] = STATE(6059), - [sym_val_closure] = STATE(6059), - [sym__flag] = STATE(2465), - [sym_short_flag] = STATE(5303), - [sym_long_flag] = STATE(5303), - [sym_long_flag_equals_value] = STATE(5400), - [sym_comment] = STATE(2457), - [ts_builtin_sym_end] = ACTIONS(5993), - [anon_sym_SEMI] = ACTIONS(5991), - [anon_sym_LF] = ACTIONS(5993), - [anon_sym_LBRACK] = ACTIONS(6053), - [anon_sym_LPAREN] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(5991), - [anon_sym_DOLLAR] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(6057), - [anon_sym_DASH] = ACTIONS(6059), - [anon_sym_LBRACE] = ACTIONS(6061), - [anon_sym_DOT_DOT] = ACTIONS(6063), - [anon_sym_not] = ACTIONS(6065), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6067), - [anon_sym_DOT_DOT_LT] = ACTIONS(6067), - [anon_sym_null] = ACTIONS(6069), - [anon_sym_true] = ACTIONS(6071), - [anon_sym_false] = ACTIONS(6071), - [aux_sym__val_number_decimal_token1] = ACTIONS(6073), - [aux_sym__val_number_decimal_token2] = ACTIONS(6073), - [anon_sym_DOT2] = ACTIONS(6075), - [aux_sym__val_number_decimal_token3] = ACTIONS(6077), - [aux_sym__val_number_token1] = ACTIONS(6079), - [aux_sym__val_number_token2] = ACTIONS(6079), - [aux_sym__val_number_token3] = ACTIONS(6079), - [aux_sym__val_number_token4] = ACTIONS(6079), - [aux_sym__val_number_token5] = ACTIONS(6079), - [aux_sym__val_number_token6] = ACTIONS(6079), - [anon_sym_0b] = ACTIONS(2953), - [anon_sym_0o] = ACTIONS(2955), - [anon_sym_0x] = ACTIONS(2955), - [sym_val_date] = ACTIONS(6081), - [anon_sym_DQUOTE] = ACTIONS(6083), - [sym__str_single_quotes] = ACTIONS(6085), - [sym__str_back_ticks] = ACTIONS(6085), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6087), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6089), + [2618] = { + [sym_comment] = STATE(2618), + [ts_builtin_sym_end] = ACTIONS(1043), + [anon_sym_SEMI] = ACTIONS(1041), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_LBRACK] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1041), + [anon_sym_PIPE] = ACTIONS(1041), + [anon_sym_DOLLAR] = ACTIONS(1041), + [anon_sym_GT] = ACTIONS(1041), + [anon_sym_DASH_DASH] = ACTIONS(1041), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_in] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_DOT_DOT] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_STAR_STAR] = ACTIONS(1041), + [anon_sym_PLUS_PLUS] = ACTIONS(1041), + [anon_sym_SLASH] = ACTIONS(1041), + [anon_sym_mod] = ACTIONS(1041), + [anon_sym_SLASH_SLASH] = ACTIONS(1041), + [anon_sym_PLUS] = ACTIONS(1041), + [anon_sym_bit_DASHshl] = ACTIONS(1041), + [anon_sym_bit_DASHshr] = ACTIONS(1041), + [anon_sym_EQ_EQ] = ACTIONS(1041), + [anon_sym_BANG_EQ] = ACTIONS(1041), + [anon_sym_LT2] = ACTIONS(1041), + [anon_sym_LT_EQ] = ACTIONS(1041), + [anon_sym_GT_EQ] = ACTIONS(1041), + [anon_sym_not_DASHin] = ACTIONS(1041), + [anon_sym_starts_DASHwith] = ACTIONS(1041), + [anon_sym_ends_DASHwith] = ACTIONS(1041), + [anon_sym_EQ_TILDE] = ACTIONS(1041), + [anon_sym_BANG_TILDE] = ACTIONS(1041), + [anon_sym_bit_DASHand] = ACTIONS(1041), + [anon_sym_bit_DASHxor] = ACTIONS(1041), + [anon_sym_bit_DASHor] = ACTIONS(1041), + [anon_sym_and] = ACTIONS(1041), + [anon_sym_xor] = ACTIONS(1041), + [anon_sym_or] = ACTIONS(1041), + [anon_sym_not] = ACTIONS(1041), + [anon_sym_DOT] = ACTIONS(1041), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1041), + [anon_sym_DOT_DOT_LT] = ACTIONS(1041), + [anon_sym_null] = ACTIONS(1041), + [anon_sym_true] = ACTIONS(1041), + [anon_sym_false] = ACTIONS(1041), + [aux_sym__val_number_decimal_token1] = ACTIONS(1041), + [aux_sym__val_number_decimal_token2] = ACTIONS(1041), + [anon_sym_DOT2] = ACTIONS(1041), + [aux_sym__val_number_decimal_token3] = ACTIONS(1041), + [aux_sym__val_number_token1] = ACTIONS(1041), + [aux_sym__val_number_token2] = ACTIONS(1041), + [aux_sym__val_number_token3] = ACTIONS(1041), + [aux_sym__val_number_token4] = ACTIONS(1041), + [aux_sym__val_number_token5] = ACTIONS(1041), + [aux_sym__val_number_token6] = ACTIONS(1041), + [anon_sym_0b] = ACTIONS(1041), + [anon_sym_0o] = ACTIONS(1041), + [anon_sym_0x] = ACTIONS(1041), + [sym_val_date] = ACTIONS(1041), + [anon_sym_DQUOTE] = ACTIONS(1041), + [sym__str_single_quotes] = ACTIONS(1041), + [sym__str_back_ticks] = ACTIONS(1041), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1041), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1041), [anon_sym_POUND] = ACTIONS(113), }, - [2458] = { - [sym__expression] = STATE(7569), - [sym_expr_unary] = STATE(6196), - [sym__expr_unary_minus] = STATE(6200), - [sym_expr_binary] = STATE(6196), - [sym__expr_binary_expression] = STATE(6783), - [sym_expr_parenthesized] = STATE(5434), - [sym_val_range] = STATE(8689), - [sym__value] = STATE(6196), - [sym_val_nothing] = STATE(6059), - [sym_val_bool] = STATE(6059), - [sym_val_variable] = STATE(5445), - [sym__var] = STATE(4804), - [sym_val_number] = STATE(6059), - [sym__val_number_decimal] = STATE(4923), - [sym__val_number] = STATE(6097), - [sym_val_duration] = STATE(6059), - [sym_val_filesize] = STATE(6059), - [sym_val_binary] = STATE(6059), - [sym_val_string] = STATE(6059), - [sym__str_double_quotes] = STATE(6144), - [sym_val_interpolated] = STATE(6059), - [sym__inter_single_quotes] = STATE(6158), - [sym__inter_double_quotes] = STATE(6159), - [sym_val_list] = STATE(6059), - [sym_val_record] = STATE(6059), - [sym_val_table] = STATE(6059), - [sym_val_closure] = STATE(6059), - [sym__flag] = STATE(2466), - [sym_short_flag] = STATE(5303), - [sym_long_flag] = STATE(5303), - [sym_long_flag_equals_value] = STATE(5400), - [sym_comment] = STATE(2458), - [ts_builtin_sym_end] = ACTIONS(5993), - [anon_sym_SEMI] = ACTIONS(5991), - [anon_sym_LF] = ACTIONS(5993), - [anon_sym_LBRACK] = ACTIONS(6053), - [anon_sym_LPAREN] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(5991), - [anon_sym_DOLLAR] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(6057), - [anon_sym_DASH] = ACTIONS(6059), - [anon_sym_LBRACE] = ACTIONS(6061), - [anon_sym_DOT_DOT] = ACTIONS(6063), - [anon_sym_not] = ACTIONS(6065), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6067), - [anon_sym_DOT_DOT_LT] = ACTIONS(6067), - [anon_sym_null] = ACTIONS(6069), - [anon_sym_true] = ACTIONS(6071), - [anon_sym_false] = ACTIONS(6071), - [aux_sym__val_number_decimal_token1] = ACTIONS(6073), - [aux_sym__val_number_decimal_token2] = ACTIONS(6073), - [anon_sym_DOT2] = ACTIONS(6075), - [aux_sym__val_number_decimal_token3] = ACTIONS(6077), - [aux_sym__val_number_token1] = ACTIONS(6079), - [aux_sym__val_number_token2] = ACTIONS(6079), - [aux_sym__val_number_token3] = ACTIONS(6079), - [aux_sym__val_number_token4] = ACTIONS(6079), - [aux_sym__val_number_token5] = ACTIONS(6079), - [aux_sym__val_number_token6] = ACTIONS(6079), - [anon_sym_0b] = ACTIONS(2953), - [anon_sym_0o] = ACTIONS(2955), - [anon_sym_0x] = ACTIONS(2955), - [sym_val_date] = ACTIONS(6081), - [anon_sym_DQUOTE] = ACTIONS(6083), - [sym__str_single_quotes] = ACTIONS(6085), - [sym__str_back_ticks] = ACTIONS(6085), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6087), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6089), + [2619] = { + [sym_comment] = STATE(2619), + [ts_builtin_sym_end] = ACTIONS(1209), + [anon_sym_SEMI] = ACTIONS(1139), + [anon_sym_LF] = ACTIONS(1139), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LPAREN] = ACTIONS(1139), + [anon_sym_PIPE] = ACTIONS(1139), + [anon_sym_DOLLAR] = ACTIONS(1139), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_DASH_DASH] = ACTIONS(1139), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_in] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1139), + [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_STAR_STAR] = ACTIONS(1139), + [anon_sym_PLUS_PLUS] = ACTIONS(1139), + [anon_sym_SLASH] = ACTIONS(1139), + [anon_sym_mod] = ACTIONS(1139), + [anon_sym_SLASH_SLASH] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_bit_DASHshl] = ACTIONS(1139), + [anon_sym_bit_DASHshr] = ACTIONS(1139), + [anon_sym_EQ_EQ] = ACTIONS(1139), + [anon_sym_BANG_EQ] = ACTIONS(1139), + [anon_sym_LT2] = ACTIONS(1139), + [anon_sym_LT_EQ] = ACTIONS(1139), + [anon_sym_GT_EQ] = ACTIONS(1139), + [anon_sym_not_DASHin] = ACTIONS(1139), + [anon_sym_starts_DASHwith] = ACTIONS(1139), + [anon_sym_ends_DASHwith] = ACTIONS(1139), + [anon_sym_EQ_TILDE] = ACTIONS(1139), + [anon_sym_BANG_TILDE] = ACTIONS(1139), + [anon_sym_bit_DASHand] = ACTIONS(1139), + [anon_sym_bit_DASHxor] = ACTIONS(1139), + [anon_sym_bit_DASHor] = ACTIONS(1139), + [anon_sym_and] = ACTIONS(1139), + [anon_sym_xor] = ACTIONS(1139), + [anon_sym_or] = ACTIONS(1139), + [anon_sym_not] = ACTIONS(1139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1139), + [anon_sym_DOT_DOT_LT] = ACTIONS(1139), + [anon_sym_null] = ACTIONS(1139), + [anon_sym_true] = ACTIONS(1139), + [anon_sym_false] = ACTIONS(1139), + [aux_sym__val_number_decimal_token1] = ACTIONS(1139), + [aux_sym__val_number_decimal_token2] = ACTIONS(1139), + [anon_sym_DOT2] = ACTIONS(1139), + [aux_sym__val_number_decimal_token3] = ACTIONS(1139), + [aux_sym__val_number_token1] = ACTIONS(1139), + [aux_sym__val_number_token2] = ACTIONS(1139), + [aux_sym__val_number_token3] = ACTIONS(1139), + [aux_sym__val_number_token4] = ACTIONS(1139), + [aux_sym__val_number_token5] = ACTIONS(1139), + [aux_sym__val_number_token6] = ACTIONS(1139), + [anon_sym_0b] = ACTIONS(1139), + [anon_sym_0o] = ACTIONS(1139), + [anon_sym_0x] = ACTIONS(1139), + [sym_val_date] = ACTIONS(1139), + [anon_sym_DQUOTE] = ACTIONS(1139), + [sym__str_single_quotes] = ACTIONS(1139), + [sym__str_back_ticks] = ACTIONS(1139), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1139), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1139), + [aux_sym__list_item_starts_with_sign_token1] = ACTIONS(6578), [anon_sym_POUND] = ACTIONS(113), }, - [2459] = { - [sym_comment] = STATE(2459), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_COMMA] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(1310), - [anon_sym_LPAREN] = ACTIONS(1310), - [anon_sym_DOLLAR] = ACTIONS(1310), - [anon_sym_GT] = ACTIONS(1308), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_in] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_DOT_DOT] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_STAR_STAR] = ACTIONS(1310), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_SLASH] = ACTIONS(1308), - [anon_sym_mod] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_bit_DASHshl] = ACTIONS(1310), - [anon_sym_bit_DASHshr] = ACTIONS(1310), - [anon_sym_EQ_EQ] = ACTIONS(1310), - [anon_sym_BANG_EQ] = ACTIONS(1310), - [anon_sym_LT2] = ACTIONS(1308), - [anon_sym_LT_EQ] = ACTIONS(1310), - [anon_sym_GT_EQ] = ACTIONS(1310), - [anon_sym_not_DASHin] = ACTIONS(1310), - [anon_sym_starts_DASHwith] = ACTIONS(1310), - [anon_sym_ends_DASHwith] = ACTIONS(1310), - [anon_sym_EQ_TILDE] = ACTIONS(1310), - [anon_sym_BANG_TILDE] = ACTIONS(1310), - [anon_sym_bit_DASHand] = ACTIONS(1310), - [anon_sym_bit_DASHxor] = ACTIONS(1310), - [anon_sym_bit_DASHor] = ACTIONS(1310), - [anon_sym_and] = ACTIONS(1310), - [anon_sym_xor] = ACTIONS(1310), - [anon_sym_or] = ACTIONS(1310), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1310), - [anon_sym_DOT_DOT_LT] = ACTIONS(1310), - [anon_sym_null] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [aux_sym__val_number_decimal_token1] = ACTIONS(1308), - [aux_sym__val_number_decimal_token2] = ACTIONS(1310), - [anon_sym_DOT2] = ACTIONS(1308), - [aux_sym__val_number_decimal_token3] = ACTIONS(1310), - [aux_sym__val_number_token1] = ACTIONS(1310), - [aux_sym__val_number_token2] = ACTIONS(1310), - [aux_sym__val_number_token3] = ACTIONS(1310), - [aux_sym__val_number_token4] = ACTIONS(1310), - [aux_sym__val_number_token5] = ACTIONS(1310), - [aux_sym__val_number_token6] = ACTIONS(1310), - [anon_sym_0b] = ACTIONS(1308), - [anon_sym_0o] = ACTIONS(1308), - [anon_sym_0x] = ACTIONS(1308), - [sym_val_date] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1310), - [sym__str_single_quotes] = ACTIONS(1310), - [sym__str_back_ticks] = ACTIONS(1310), - [anon_sym_err_GT] = ACTIONS(1310), - [anon_sym_out_GT] = ACTIONS(1310), - [anon_sym_e_GT] = ACTIONS(1310), - [anon_sym_o_GT] = ACTIONS(1310), - [anon_sym_err_PLUSout_GT] = ACTIONS(1310), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1310), - [anon_sym_o_PLUSe_GT] = ACTIONS(1310), - [anon_sym_e_PLUSo_GT] = ACTIONS(1310), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1308), - [anon_sym_POUND] = ACTIONS(3), - }, - [2460] = { - [sym_comment] = STATE(2460), - [anon_sym_LBRACK] = ACTIONS(1314), - [anon_sym_COMMA] = ACTIONS(1314), - [anon_sym_RBRACK] = ACTIONS(1314), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_DOLLAR] = ACTIONS(1314), - [anon_sym_GT] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_in] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1314), - [anon_sym_DOT_DOT] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_STAR_STAR] = ACTIONS(1314), - [anon_sym_PLUS_PLUS] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(1312), - [anon_sym_mod] = ACTIONS(1314), - [anon_sym_SLASH_SLASH] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_bit_DASHshl] = ACTIONS(1314), - [anon_sym_bit_DASHshr] = ACTIONS(1314), - [anon_sym_EQ_EQ] = ACTIONS(1314), - [anon_sym_BANG_EQ] = ACTIONS(1314), - [anon_sym_LT2] = ACTIONS(1312), - [anon_sym_LT_EQ] = ACTIONS(1314), - [anon_sym_GT_EQ] = ACTIONS(1314), - [anon_sym_not_DASHin] = ACTIONS(1314), - [anon_sym_starts_DASHwith] = ACTIONS(1314), - [anon_sym_ends_DASHwith] = ACTIONS(1314), - [anon_sym_EQ_TILDE] = ACTIONS(1314), - [anon_sym_BANG_TILDE] = ACTIONS(1314), - [anon_sym_bit_DASHand] = ACTIONS(1314), - [anon_sym_bit_DASHxor] = ACTIONS(1314), - [anon_sym_bit_DASHor] = ACTIONS(1314), - [anon_sym_and] = ACTIONS(1314), - [anon_sym_xor] = ACTIONS(1314), - [anon_sym_or] = ACTIONS(1314), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1314), - [anon_sym_DOT_DOT_LT] = ACTIONS(1314), - [anon_sym_null] = ACTIONS(1314), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), - [aux_sym__val_number_decimal_token1] = ACTIONS(1312), - [aux_sym__val_number_decimal_token2] = ACTIONS(1314), - [anon_sym_DOT2] = ACTIONS(1312), - [aux_sym__val_number_decimal_token3] = ACTIONS(1314), - [aux_sym__val_number_token1] = ACTIONS(1314), - [aux_sym__val_number_token2] = ACTIONS(1314), - [aux_sym__val_number_token3] = ACTIONS(1314), - [aux_sym__val_number_token4] = ACTIONS(1314), - [aux_sym__val_number_token5] = ACTIONS(1314), - [aux_sym__val_number_token6] = ACTIONS(1314), - [anon_sym_0b] = ACTIONS(1312), - [anon_sym_0o] = ACTIONS(1312), - [anon_sym_0x] = ACTIONS(1312), - [sym_val_date] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1314), - [sym__str_single_quotes] = ACTIONS(1314), - [sym__str_back_ticks] = ACTIONS(1314), - [anon_sym_err_GT] = ACTIONS(1314), - [anon_sym_out_GT] = ACTIONS(1314), - [anon_sym_e_GT] = ACTIONS(1314), - [anon_sym_o_GT] = ACTIONS(1314), - [anon_sym_err_PLUSout_GT] = ACTIONS(1314), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1314), - [anon_sym_o_PLUSe_GT] = ACTIONS(1314), - [anon_sym_e_PLUSo_GT] = ACTIONS(1314), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1312), - [anon_sym_POUND] = ACTIONS(3), - }, - [2461] = { - [sym_comment] = STATE(2461), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_COMMA] = ACTIONS(1188), - [anon_sym_RBRACK] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(1188), - [anon_sym_DOLLAR] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_DASH_DASH] = ACTIONS(1188), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_in] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1188), - [anon_sym_DOT_DOT] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_STAR_STAR] = ACTIONS(1188), - [anon_sym_PLUS_PLUS] = ACTIONS(1188), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_mod] = ACTIONS(1188), - [anon_sym_SLASH_SLASH] = ACTIONS(1188), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_bit_DASHshl] = ACTIONS(1188), - [anon_sym_bit_DASHshr] = ACTIONS(1188), - [anon_sym_EQ_EQ] = ACTIONS(1188), - [anon_sym_BANG_EQ] = ACTIONS(1188), - [anon_sym_LT2] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1188), - [anon_sym_GT_EQ] = ACTIONS(1188), - [anon_sym_not_DASHin] = ACTIONS(1188), - [anon_sym_starts_DASHwith] = ACTIONS(1188), - [anon_sym_ends_DASHwith] = ACTIONS(1188), - [anon_sym_EQ_TILDE] = ACTIONS(1188), - [anon_sym_BANG_TILDE] = ACTIONS(1188), - [anon_sym_bit_DASHand] = ACTIONS(1188), - [anon_sym_bit_DASHxor] = ACTIONS(1188), - [anon_sym_bit_DASHor] = ACTIONS(1188), - [anon_sym_and] = ACTIONS(1188), - [anon_sym_xor] = ACTIONS(1188), - [anon_sym_or] = ACTIONS(1188), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1188), - [anon_sym_DOT_DOT_LT] = ACTIONS(1188), - [anon_sym_null] = ACTIONS(1188), - [anon_sym_true] = ACTIONS(1188), - [anon_sym_false] = ACTIONS(1188), - [aux_sym__val_number_decimal_token1] = ACTIONS(1186), - [aux_sym__val_number_decimal_token2] = ACTIONS(1188), - [anon_sym_DOT2] = ACTIONS(1186), - [aux_sym__val_number_decimal_token3] = ACTIONS(1188), - [aux_sym__val_number_token1] = ACTIONS(1188), - [aux_sym__val_number_token2] = ACTIONS(1188), - [aux_sym__val_number_token3] = ACTIONS(1188), - [aux_sym__val_number_token4] = ACTIONS(1188), - [aux_sym__val_number_token5] = ACTIONS(1188), - [aux_sym__val_number_token6] = ACTIONS(1188), - [anon_sym_0b] = ACTIONS(1186), - [anon_sym_0o] = ACTIONS(1186), - [anon_sym_0x] = ACTIONS(1186), - [sym_val_date] = ACTIONS(1188), - [anon_sym_DQUOTE] = ACTIONS(1188), - [sym__str_single_quotes] = ACTIONS(1188), - [sym__str_back_ticks] = ACTIONS(1188), - [anon_sym_err_GT] = ACTIONS(1188), - [anon_sym_out_GT] = ACTIONS(1188), - [anon_sym_e_GT] = ACTIONS(1188), - [anon_sym_o_GT] = ACTIONS(1188), - [anon_sym_err_PLUSout_GT] = ACTIONS(1188), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1188), - [anon_sym_o_PLUSe_GT] = ACTIONS(1188), - [anon_sym_e_PLUSo_GT] = ACTIONS(1188), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1186), - [anon_sym_POUND] = ACTIONS(3), - }, - [2462] = { - [sym_comment] = STATE(2462), - [anon_sym_LBRACK] = ACTIONS(1334), - [anon_sym_COMMA] = ACTIONS(1334), - [anon_sym_RBRACK] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1334), - [anon_sym_GT] = ACTIONS(1332), - [anon_sym_DASH_DASH] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_in] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_DOT_DOT] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_STAR_STAR] = ACTIONS(1334), - [anon_sym_PLUS_PLUS] = ACTIONS(1334), - [anon_sym_SLASH] = ACTIONS(1332), - [anon_sym_mod] = ACTIONS(1334), - [anon_sym_SLASH_SLASH] = ACTIONS(1334), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_bit_DASHshl] = ACTIONS(1334), - [anon_sym_bit_DASHshr] = ACTIONS(1334), - [anon_sym_EQ_EQ] = ACTIONS(1334), - [anon_sym_BANG_EQ] = ACTIONS(1334), - [anon_sym_LT2] = ACTIONS(1332), - [anon_sym_LT_EQ] = ACTIONS(1334), - [anon_sym_GT_EQ] = ACTIONS(1334), - [anon_sym_not_DASHin] = ACTIONS(1334), - [anon_sym_starts_DASHwith] = ACTIONS(1334), - [anon_sym_ends_DASHwith] = ACTIONS(1334), - [anon_sym_EQ_TILDE] = ACTIONS(1334), - [anon_sym_BANG_TILDE] = ACTIONS(1334), - [anon_sym_bit_DASHand] = ACTIONS(1334), - [anon_sym_bit_DASHxor] = ACTIONS(1334), - [anon_sym_bit_DASHor] = ACTIONS(1334), - [anon_sym_and] = ACTIONS(1334), - [anon_sym_xor] = ACTIONS(1334), - [anon_sym_or] = ACTIONS(1334), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1334), - [anon_sym_DOT_DOT_LT] = ACTIONS(1334), - [anon_sym_null] = ACTIONS(1334), - [anon_sym_true] = ACTIONS(1334), - [anon_sym_false] = ACTIONS(1334), - [aux_sym__val_number_decimal_token1] = ACTIONS(1332), - [aux_sym__val_number_decimal_token2] = ACTIONS(1334), - [anon_sym_DOT2] = ACTIONS(1332), - [aux_sym__val_number_decimal_token3] = ACTIONS(1334), - [aux_sym__val_number_token1] = ACTIONS(1334), - [aux_sym__val_number_token2] = ACTIONS(1334), - [aux_sym__val_number_token3] = ACTIONS(1334), - [aux_sym__val_number_token4] = ACTIONS(1334), - [aux_sym__val_number_token5] = ACTIONS(1334), - [aux_sym__val_number_token6] = ACTIONS(1334), - [anon_sym_0b] = ACTIONS(1332), - [anon_sym_0o] = ACTIONS(1332), - [anon_sym_0x] = ACTIONS(1332), - [sym_val_date] = ACTIONS(1334), - [anon_sym_DQUOTE] = ACTIONS(1334), - [sym__str_single_quotes] = ACTIONS(1334), - [sym__str_back_ticks] = ACTIONS(1334), - [anon_sym_err_GT] = ACTIONS(1334), - [anon_sym_out_GT] = ACTIONS(1334), - [anon_sym_e_GT] = ACTIONS(1334), - [anon_sym_o_GT] = ACTIONS(1334), - [anon_sym_err_PLUSout_GT] = ACTIONS(1334), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1334), - [anon_sym_o_PLUSe_GT] = ACTIONS(1334), - [anon_sym_e_PLUSo_GT] = ACTIONS(1334), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1332), + [2620] = { + [sym__expr_parenthesized_immediate] = STATE(2994), + [sym__immediate_decimal] = STATE(2998), + [sym_val_variable] = STATE(2994), + [sym__var] = STATE(2746), + [sym_comment] = STATE(2620), + [anon_sym_export] = ACTIONS(2169), + [anon_sym_alias] = ACTIONS(2169), + [anon_sym_let] = ACTIONS(2169), + [anon_sym_let_DASHenv] = ACTIONS(2169), + [anon_sym_mut] = ACTIONS(2169), + [anon_sym_const] = ACTIONS(2169), + [sym_cmd_identifier] = ACTIONS(2169), + [anon_sym_def] = ACTIONS(2169), + [anon_sym_export_DASHenv] = ACTIONS(2169), + [anon_sym_extern] = ACTIONS(2169), + [anon_sym_module] = ACTIONS(2169), + [anon_sym_use] = ACTIONS(2169), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_DOLLAR] = ACTIONS(6580), + [anon_sym_error] = ACTIONS(2169), + [anon_sym_list] = ACTIONS(2169), + [anon_sym_DASH] = ACTIONS(2169), + [anon_sym_break] = ACTIONS(2169), + [anon_sym_continue] = ACTIONS(2169), + [anon_sym_for] = ACTIONS(2169), + [anon_sym_in] = ACTIONS(2169), + [anon_sym_loop] = ACTIONS(2169), + [anon_sym_make] = ACTIONS(2169), + [anon_sym_while] = ACTIONS(2169), + [anon_sym_do] = ACTIONS(2169), + [anon_sym_if] = ACTIONS(2169), + [anon_sym_else] = ACTIONS(2169), + [anon_sym_match] = ACTIONS(2169), + [anon_sym_RBRACE] = ACTIONS(2171), + [anon_sym_try] = ACTIONS(2169), + [anon_sym_catch] = ACTIONS(2169), + [anon_sym_return] = ACTIONS(2169), + [anon_sym_source] = ACTIONS(2169), + [anon_sym_source_DASHenv] = ACTIONS(2169), + [anon_sym_register] = ACTIONS(2169), + [anon_sym_hide] = ACTIONS(2169), + [anon_sym_hide_DASHenv] = ACTIONS(2169), + [anon_sym_overlay] = ACTIONS(2169), + [anon_sym_new] = ACTIONS(2169), + [anon_sym_as] = ACTIONS(2169), + [anon_sym_PLUS] = ACTIONS(2169), + [anon_sym_LPAREN2] = ACTIONS(6582), + [anon_sym_DOT] = ACTIONS(6584), + [aux_sym__immediate_decimal_token1] = ACTIONS(6586), + [aux_sym__immediate_decimal_token3] = ACTIONS(6588), + [aux_sym__immediate_decimal_token4] = ACTIONS(6590), + [aux_sym__val_number_decimal_token1] = ACTIONS(2169), + [aux_sym__val_number_decimal_token2] = ACTIONS(2169), + [anon_sym_DOT2] = ACTIONS(2169), + [aux_sym__val_number_decimal_token3] = ACTIONS(2169), + [aux_sym__val_number_token1] = ACTIONS(2171), + [aux_sym__val_number_token2] = ACTIONS(2171), + [aux_sym__val_number_token3] = ACTIONS(2171), + [aux_sym__val_number_token4] = ACTIONS(2169), + [aux_sym__val_number_token5] = ACTIONS(2171), + [aux_sym__val_number_token6] = ACTIONS(2169), + [anon_sym_DQUOTE] = ACTIONS(2171), + [sym__str_single_quotes] = ACTIONS(2171), + [sym__str_back_ticks] = ACTIONS(2171), + [aux_sym__record_key_token2] = ACTIONS(2169), [anon_sym_POUND] = ACTIONS(3), }, - [2463] = { - [sym_comment] = STATE(2463), - [anon_sym_LBRACK] = ACTIONS(1338), - [anon_sym_COMMA] = ACTIONS(1338), - [anon_sym_RBRACK] = ACTIONS(1338), - [anon_sym_LPAREN] = ACTIONS(1338), - [anon_sym_DOLLAR] = ACTIONS(1338), - [anon_sym_GT] = ACTIONS(1336), - [anon_sym_DASH_DASH] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_in] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_DOT_DOT] = ACTIONS(1336), - [anon_sym_STAR] = ACTIONS(1336), - [anon_sym_STAR_STAR] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [anon_sym_SLASH] = ACTIONS(1336), - [anon_sym_mod] = ACTIONS(1338), - [anon_sym_SLASH_SLASH] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1336), - [anon_sym_bit_DASHshl] = ACTIONS(1338), - [anon_sym_bit_DASHshr] = ACTIONS(1338), - [anon_sym_EQ_EQ] = ACTIONS(1338), - [anon_sym_BANG_EQ] = ACTIONS(1338), - [anon_sym_LT2] = ACTIONS(1336), - [anon_sym_LT_EQ] = ACTIONS(1338), - [anon_sym_GT_EQ] = ACTIONS(1338), - [anon_sym_not_DASHin] = ACTIONS(1338), - [anon_sym_starts_DASHwith] = ACTIONS(1338), - [anon_sym_ends_DASHwith] = ACTIONS(1338), - [anon_sym_EQ_TILDE] = ACTIONS(1338), - [anon_sym_BANG_TILDE] = ACTIONS(1338), - [anon_sym_bit_DASHand] = ACTIONS(1338), - [anon_sym_bit_DASHxor] = ACTIONS(1338), - [anon_sym_bit_DASHor] = ACTIONS(1338), - [anon_sym_and] = ACTIONS(1338), - [anon_sym_xor] = ACTIONS(1338), - [anon_sym_or] = ACTIONS(1338), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1338), - [anon_sym_DOT_DOT_LT] = ACTIONS(1338), - [anon_sym_null] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1338), - [anon_sym_false] = ACTIONS(1338), - [aux_sym__val_number_decimal_token1] = ACTIONS(1336), - [aux_sym__val_number_decimal_token2] = ACTIONS(1338), - [anon_sym_DOT2] = ACTIONS(1336), - [aux_sym__val_number_decimal_token3] = ACTIONS(1338), - [aux_sym__val_number_token1] = ACTIONS(1338), - [aux_sym__val_number_token2] = ACTIONS(1338), - [aux_sym__val_number_token3] = ACTIONS(1338), - [aux_sym__val_number_token4] = ACTIONS(1338), - [aux_sym__val_number_token5] = ACTIONS(1338), - [aux_sym__val_number_token6] = ACTIONS(1338), - [anon_sym_0b] = ACTIONS(1336), - [anon_sym_0o] = ACTIONS(1336), - [anon_sym_0x] = ACTIONS(1336), - [sym_val_date] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym__str_single_quotes] = ACTIONS(1338), - [sym__str_back_ticks] = ACTIONS(1338), - [anon_sym_err_GT] = ACTIONS(1338), - [anon_sym_out_GT] = ACTIONS(1338), - [anon_sym_e_GT] = ACTIONS(1338), - [anon_sym_o_GT] = ACTIONS(1338), - [anon_sym_err_PLUSout_GT] = ACTIONS(1338), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1338), - [anon_sym_o_PLUSe_GT] = ACTIONS(1338), - [anon_sym_e_PLUSo_GT] = ACTIONS(1338), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1336), + [2621] = { + [sym__expr_parenthesized_immediate] = STATE(3135), + [sym__immediate_decimal] = STATE(3136), + [sym_val_variable] = STATE(3135), + [sym__var] = STATE(2820), + [sym_comment] = STATE(2621), + [anon_sym_export] = ACTIONS(2169), + [anon_sym_alias] = ACTIONS(2169), + [anon_sym_let] = ACTIONS(2169), + [anon_sym_let_DASHenv] = ACTIONS(2169), + [anon_sym_mut] = ACTIONS(2169), + [anon_sym_const] = ACTIONS(2169), + [sym_cmd_identifier] = ACTIONS(2169), + [anon_sym_def] = ACTIONS(2169), + [anon_sym_export_DASHenv] = ACTIONS(2169), + [anon_sym_extern] = ACTIONS(2169), + [anon_sym_module] = ACTIONS(2169), + [anon_sym_use] = ACTIONS(2169), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_DOLLAR] = ACTIONS(5653), + [anon_sym_error] = ACTIONS(2169), + [anon_sym_list] = ACTIONS(2169), + [anon_sym_DASH] = ACTIONS(2169), + [anon_sym_break] = ACTIONS(2169), + [anon_sym_continue] = ACTIONS(2169), + [anon_sym_for] = ACTIONS(2169), + [anon_sym_in] = ACTIONS(2169), + [anon_sym_loop] = ACTIONS(2169), + [anon_sym_make] = ACTIONS(2169), + [anon_sym_while] = ACTIONS(2169), + [anon_sym_do] = ACTIONS(2169), + [anon_sym_if] = ACTIONS(2169), + [anon_sym_else] = ACTIONS(2169), + [anon_sym_match] = ACTIONS(2169), + [anon_sym_RBRACE] = ACTIONS(2171), + [anon_sym_try] = ACTIONS(2169), + [anon_sym_catch] = ACTIONS(2169), + [anon_sym_return] = ACTIONS(2169), + [anon_sym_source] = ACTIONS(2169), + [anon_sym_source_DASHenv] = ACTIONS(2169), + [anon_sym_register] = ACTIONS(2169), + [anon_sym_hide] = ACTIONS(2169), + [anon_sym_hide_DASHenv] = ACTIONS(2169), + [anon_sym_overlay] = ACTIONS(2169), + [anon_sym_new] = ACTIONS(2169), + [anon_sym_as] = ACTIONS(2169), + [anon_sym_PLUS] = ACTIONS(2169), + [anon_sym_LPAREN2] = ACTIONS(6467), + [anon_sym_DOT] = ACTIONS(6469), + [aux_sym__immediate_decimal_token1] = ACTIONS(6471), + [aux_sym__immediate_decimal_token3] = ACTIONS(6473), + [aux_sym__immediate_decimal_token4] = ACTIONS(6475), + [aux_sym__val_number_decimal_token1] = ACTIONS(2169), + [aux_sym__val_number_decimal_token2] = ACTIONS(2169), + [anon_sym_DOT2] = ACTIONS(2169), + [aux_sym__val_number_decimal_token3] = ACTIONS(2169), + [aux_sym__val_number_token1] = ACTIONS(2171), + [aux_sym__val_number_token2] = ACTIONS(2171), + [aux_sym__val_number_token3] = ACTIONS(2171), + [aux_sym__val_number_token4] = ACTIONS(2169), + [aux_sym__val_number_token5] = ACTIONS(2171), + [aux_sym__val_number_token6] = ACTIONS(2169), + [anon_sym_DQUOTE] = ACTIONS(2171), + [sym__str_single_quotes] = ACTIONS(2171), + [sym__str_back_ticks] = ACTIONS(2171), + [aux_sym__record_key_token2] = ACTIONS(2169), [anon_sym_POUND] = ACTIONS(3), }, - [2464] = { - [sym__expression] = STATE(7578), - [sym_expr_unary] = STATE(6196), - [sym__expr_unary_minus] = STATE(6200), - [sym_expr_binary] = STATE(6196), - [sym__expr_binary_expression] = STATE(6783), - [sym_expr_parenthesized] = STATE(5434), - [sym_val_range] = STATE(8689), - [sym__value] = STATE(6196), - [sym_val_nothing] = STATE(6059), - [sym_val_bool] = STATE(6059), - [sym_val_variable] = STATE(5445), - [sym__var] = STATE(4804), - [sym_val_number] = STATE(6059), - [sym__val_number_decimal] = STATE(4923), - [sym__val_number] = STATE(6097), - [sym_val_duration] = STATE(6059), - [sym_val_filesize] = STATE(6059), - [sym_val_binary] = STATE(6059), - [sym_val_string] = STATE(6059), - [sym__str_double_quotes] = STATE(6144), - [sym_val_interpolated] = STATE(6059), - [sym__inter_single_quotes] = STATE(6158), - [sym__inter_double_quotes] = STATE(6159), - [sym_val_list] = STATE(6059), - [sym_val_record] = STATE(6059), - [sym_val_table] = STATE(6059), - [sym_val_closure] = STATE(6059), - [sym__flag] = STATE(7576), - [sym_short_flag] = STATE(8772), - [sym_long_flag] = STATE(8772), - [sym_long_flag_equals_value] = STATE(8808), - [sym_comment] = STATE(2464), - [ts_builtin_sym_end] = ACTIONS(6039), - [anon_sym_SEMI] = ACTIONS(6037), - [anon_sym_LF] = ACTIONS(6039), - [anon_sym_LBRACK] = ACTIONS(6053), - [anon_sym_LPAREN] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(6037), - [anon_sym_DOLLAR] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(6151), - [anon_sym_DASH] = ACTIONS(6153), - [anon_sym_LBRACE] = ACTIONS(6061), - [anon_sym_DOT_DOT] = ACTIONS(6063), - [anon_sym_not] = ACTIONS(6065), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6067), - [anon_sym_DOT_DOT_LT] = ACTIONS(6067), - [anon_sym_null] = ACTIONS(6069), - [anon_sym_true] = ACTIONS(6071), - [anon_sym_false] = ACTIONS(6071), - [aux_sym__val_number_decimal_token1] = ACTIONS(6073), - [aux_sym__val_number_decimal_token2] = ACTIONS(6073), - [anon_sym_DOT2] = ACTIONS(6075), - [aux_sym__val_number_decimal_token3] = ACTIONS(6077), - [aux_sym__val_number_token1] = ACTIONS(6079), - [aux_sym__val_number_token2] = ACTIONS(6079), - [aux_sym__val_number_token3] = ACTIONS(6079), - [aux_sym__val_number_token4] = ACTIONS(6079), - [aux_sym__val_number_token5] = ACTIONS(6079), - [aux_sym__val_number_token6] = ACTIONS(6079), - [anon_sym_0b] = ACTIONS(2953), - [anon_sym_0o] = ACTIONS(2955), - [anon_sym_0x] = ACTIONS(2955), - [sym_val_date] = ACTIONS(6081), - [anon_sym_DQUOTE] = ACTIONS(6083), - [sym__str_single_quotes] = ACTIONS(6085), - [sym__str_back_ticks] = ACTIONS(6085), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6087), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6089), + [2622] = { + [sym_comment] = STATE(2622), + [anon_sym_SEMI] = ACTIONS(1155), + [anon_sym_LF] = ACTIONS(1157), + [anon_sym_LBRACK] = ACTIONS(1155), + [anon_sym_LPAREN] = ACTIONS(1155), + [anon_sym_RPAREN] = ACTIONS(1155), + [anon_sym_PIPE] = ACTIONS(1155), + [anon_sym_DOLLAR] = ACTIONS(1155), + [anon_sym_GT] = ACTIONS(1155), + [anon_sym_DASH_DASH] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_in] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_RBRACE] = ACTIONS(1155), + [anon_sym_DOT_DOT] = ACTIONS(1155), + [anon_sym_STAR] = ACTIONS(1155), + [anon_sym_STAR_STAR] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(1155), + [anon_sym_mod] = ACTIONS(1155), + [anon_sym_SLASH_SLASH] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_bit_DASHshl] = ACTIONS(1155), + [anon_sym_bit_DASHshr] = ACTIONS(1155), + [anon_sym_EQ_EQ] = ACTIONS(1155), + [anon_sym_BANG_EQ] = ACTIONS(1155), + [anon_sym_LT2] = ACTIONS(1155), + [anon_sym_LT_EQ] = ACTIONS(1155), + [anon_sym_GT_EQ] = ACTIONS(1155), + [anon_sym_not_DASHin] = ACTIONS(1155), + [anon_sym_starts_DASHwith] = ACTIONS(1155), + [anon_sym_ends_DASHwith] = ACTIONS(1155), + [anon_sym_EQ_TILDE] = ACTIONS(1155), + [anon_sym_BANG_TILDE] = ACTIONS(1155), + [anon_sym_bit_DASHand] = ACTIONS(1155), + [anon_sym_bit_DASHxor] = ACTIONS(1155), + [anon_sym_bit_DASHor] = ACTIONS(1155), + [anon_sym_and] = ACTIONS(1155), + [anon_sym_xor] = ACTIONS(1155), + [anon_sym_or] = ACTIONS(1155), + [anon_sym_not] = ACTIONS(1155), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1155), + [anon_sym_DOT_DOT_LT] = ACTIONS(1155), + [anon_sym_null] = ACTIONS(1155), + [anon_sym_true] = ACTIONS(1155), + [anon_sym_false] = ACTIONS(1155), + [aux_sym__val_number_decimal_token1] = ACTIONS(1155), + [aux_sym__val_number_decimal_token2] = ACTIONS(1155), + [anon_sym_DOT2] = ACTIONS(1155), + [aux_sym__val_number_decimal_token3] = ACTIONS(1155), + [aux_sym__val_number_token1] = ACTIONS(1155), + [aux_sym__val_number_token2] = ACTIONS(1155), + [aux_sym__val_number_token3] = ACTIONS(1155), + [aux_sym__val_number_token4] = ACTIONS(1155), + [aux_sym__val_number_token5] = ACTIONS(1155), + [aux_sym__val_number_token6] = ACTIONS(1155), + [anon_sym_0b] = ACTIONS(1155), + [anon_sym_0o] = ACTIONS(1155), + [anon_sym_0x] = ACTIONS(1155), + [sym_val_date] = ACTIONS(1155), + [anon_sym_DQUOTE] = ACTIONS(1155), + [sym__str_single_quotes] = ACTIONS(1155), + [sym__str_back_ticks] = ACTIONS(1155), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1155), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1155), [anon_sym_POUND] = ACTIONS(113), }, - [2465] = { - [sym__expression] = STATE(7578), - [sym_expr_unary] = STATE(6196), - [sym__expr_unary_minus] = STATE(6200), - [sym_expr_binary] = STATE(6196), - [sym__expr_binary_expression] = STATE(6783), - [sym_expr_parenthesized] = STATE(5434), - [sym_val_range] = STATE(8689), - [sym__value] = STATE(6196), - [sym_val_nothing] = STATE(6059), - [sym_val_bool] = STATE(6059), - [sym_val_variable] = STATE(5445), - [sym__var] = STATE(4804), - [sym_val_number] = STATE(6059), - [sym__val_number_decimal] = STATE(4923), - [sym__val_number] = STATE(6097), - [sym_val_duration] = STATE(6059), - [sym_val_filesize] = STATE(6059), - [sym_val_binary] = STATE(6059), - [sym_val_string] = STATE(6059), - [sym__str_double_quotes] = STATE(6144), - [sym_val_interpolated] = STATE(6059), - [sym__inter_single_quotes] = STATE(6158), - [sym__inter_double_quotes] = STATE(6159), - [sym_val_list] = STATE(6059), - [sym_val_record] = STATE(6059), - [sym_val_table] = STATE(6059), - [sym_val_closure] = STATE(6059), - [sym__flag] = STATE(2469), - [sym_short_flag] = STATE(5303), - [sym_long_flag] = STATE(5303), - [sym_long_flag_equals_value] = STATE(5400), - [sym_comment] = STATE(2465), - [ts_builtin_sym_end] = ACTIONS(6039), - [anon_sym_SEMI] = ACTIONS(6037), - [anon_sym_LF] = ACTIONS(6039), - [anon_sym_LBRACK] = ACTIONS(6053), - [anon_sym_LPAREN] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(6037), - [anon_sym_DOLLAR] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(6057), - [anon_sym_DASH] = ACTIONS(6059), - [anon_sym_LBRACE] = ACTIONS(6061), - [anon_sym_DOT_DOT] = ACTIONS(6063), - [anon_sym_not] = ACTIONS(6065), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6067), - [anon_sym_DOT_DOT_LT] = ACTIONS(6067), - [anon_sym_null] = ACTIONS(6069), - [anon_sym_true] = ACTIONS(6071), - [anon_sym_false] = ACTIONS(6071), - [aux_sym__val_number_decimal_token1] = ACTIONS(6073), - [aux_sym__val_number_decimal_token2] = ACTIONS(6073), - [anon_sym_DOT2] = ACTIONS(6075), - [aux_sym__val_number_decimal_token3] = ACTIONS(6077), - [aux_sym__val_number_token1] = ACTIONS(6079), - [aux_sym__val_number_token2] = ACTIONS(6079), - [aux_sym__val_number_token3] = ACTIONS(6079), - [aux_sym__val_number_token4] = ACTIONS(6079), - [aux_sym__val_number_token5] = ACTIONS(6079), - [aux_sym__val_number_token6] = ACTIONS(6079), - [anon_sym_0b] = ACTIONS(2953), - [anon_sym_0o] = ACTIONS(2955), - [anon_sym_0x] = ACTIONS(2955), - [sym_val_date] = ACTIONS(6081), - [anon_sym_DQUOTE] = ACTIONS(6083), - [sym__str_single_quotes] = ACTIONS(6085), - [sym__str_back_ticks] = ACTIONS(6085), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6087), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6089), + [2623] = { + [sym_comment] = STATE(2623), + [anon_sym_export] = ACTIONS(6046), + [anon_sym_alias] = ACTIONS(6046), + [anon_sym_let] = ACTIONS(6046), + [anon_sym_let_DASHenv] = ACTIONS(6046), + [anon_sym_mut] = ACTIONS(6046), + [anon_sym_const] = ACTIONS(6046), + [anon_sym_SEMI] = ACTIONS(6046), + [sym_cmd_identifier] = ACTIONS(6046), + [anon_sym_LF] = ACTIONS(6592), + [anon_sym_def] = ACTIONS(6046), + [anon_sym_export_DASHenv] = ACTIONS(6046), + [anon_sym_extern] = ACTIONS(6046), + [anon_sym_module] = ACTIONS(6046), + [anon_sym_use] = ACTIONS(6046), + [anon_sym_LBRACK] = ACTIONS(6046), + [anon_sym_LPAREN] = ACTIONS(6046), + [anon_sym_DOLLAR] = ACTIONS(6046), + [anon_sym_error] = ACTIONS(6046), + [anon_sym_DASH] = ACTIONS(6046), + [anon_sym_break] = ACTIONS(6046), + [anon_sym_continue] = ACTIONS(6046), + [anon_sym_for] = ACTIONS(6046), + [anon_sym_loop] = ACTIONS(6046), + [anon_sym_while] = ACTIONS(6046), + [anon_sym_do] = ACTIONS(6046), + [anon_sym_if] = ACTIONS(6046), + [anon_sym_match] = ACTIONS(6046), + [anon_sym_LBRACE] = ACTIONS(6046), + [anon_sym_DOT_DOT] = ACTIONS(6046), + [anon_sym_try] = ACTIONS(6046), + [anon_sym_return] = ACTIONS(6046), + [anon_sym_source] = ACTIONS(6046), + [anon_sym_source_DASHenv] = ACTIONS(6046), + [anon_sym_register] = ACTIONS(6046), + [anon_sym_hide] = ACTIONS(6046), + [anon_sym_hide_DASHenv] = ACTIONS(6046), + [anon_sym_overlay] = ACTIONS(6046), + [anon_sym_where] = ACTIONS(6046), + [anon_sym_not] = ACTIONS(6046), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6046), + [anon_sym_DOT_DOT_LT] = ACTIONS(6046), + [anon_sym_null] = ACTIONS(6046), + [anon_sym_true] = ACTIONS(6046), + [anon_sym_false] = ACTIONS(6046), + [aux_sym__val_number_decimal_token1] = ACTIONS(6046), + [aux_sym__val_number_decimal_token2] = ACTIONS(6046), + [anon_sym_DOT2] = ACTIONS(6046), + [aux_sym__val_number_decimal_token3] = ACTIONS(6046), + [aux_sym__val_number_token1] = ACTIONS(6046), + [aux_sym__val_number_token2] = ACTIONS(6046), + [aux_sym__val_number_token3] = ACTIONS(6046), + [aux_sym__val_number_token4] = ACTIONS(6046), + [aux_sym__val_number_token5] = ACTIONS(6046), + [aux_sym__val_number_token6] = ACTIONS(6046), + [anon_sym_0b] = ACTIONS(6046), + [anon_sym_0o] = ACTIONS(6046), + [anon_sym_0x] = ACTIONS(6046), + [sym_val_date] = ACTIONS(6046), + [anon_sym_DQUOTE] = ACTIONS(6046), + [sym__str_single_quotes] = ACTIONS(6046), + [sym__str_back_ticks] = ACTIONS(6046), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6046), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6046), + [anon_sym_CARET] = ACTIONS(6046), [anon_sym_POUND] = ACTIONS(113), }, - [2466] = { - [sym__expression] = STATE(7578), - [sym_expr_unary] = STATE(6196), - [sym__expr_unary_minus] = STATE(6200), - [sym_expr_binary] = STATE(6196), - [sym__expr_binary_expression] = STATE(6783), - [sym_expr_parenthesized] = STATE(5434), - [sym_val_range] = STATE(8689), - [sym__value] = STATE(6196), - [sym_val_nothing] = STATE(6059), - [sym_val_bool] = STATE(6059), - [sym_val_variable] = STATE(5445), - [sym__var] = STATE(4804), - [sym_val_number] = STATE(6059), - [sym__val_number_decimal] = STATE(4923), - [sym__val_number] = STATE(6097), - [sym_val_duration] = STATE(6059), - [sym_val_filesize] = STATE(6059), - [sym_val_binary] = STATE(6059), - [sym_val_string] = STATE(6059), - [sym__str_double_quotes] = STATE(6144), - [sym_val_interpolated] = STATE(6059), - [sym__inter_single_quotes] = STATE(6158), - [sym__inter_double_quotes] = STATE(6159), - [sym_val_list] = STATE(6059), - [sym_val_record] = STATE(6059), - [sym_val_table] = STATE(6059), - [sym_val_closure] = STATE(6059), - [sym__flag] = STATE(2470), - [sym_short_flag] = STATE(5303), - [sym_long_flag] = STATE(5303), - [sym_long_flag_equals_value] = STATE(5400), - [sym_comment] = STATE(2466), - [ts_builtin_sym_end] = ACTIONS(6039), - [anon_sym_SEMI] = ACTIONS(6037), - [anon_sym_LF] = ACTIONS(6039), - [anon_sym_LBRACK] = ACTIONS(6053), - [anon_sym_LPAREN] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(6037), - [anon_sym_DOLLAR] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(6057), - [anon_sym_DASH] = ACTIONS(6059), - [anon_sym_LBRACE] = ACTIONS(6061), - [anon_sym_DOT_DOT] = ACTIONS(6063), - [anon_sym_not] = ACTIONS(6065), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6067), - [anon_sym_DOT_DOT_LT] = ACTIONS(6067), - [anon_sym_null] = ACTIONS(6069), - [anon_sym_true] = ACTIONS(6071), - [anon_sym_false] = ACTIONS(6071), - [aux_sym__val_number_decimal_token1] = ACTIONS(6073), - [aux_sym__val_number_decimal_token2] = ACTIONS(6073), - [anon_sym_DOT2] = ACTIONS(6075), - [aux_sym__val_number_decimal_token3] = ACTIONS(6077), - [aux_sym__val_number_token1] = ACTIONS(6079), - [aux_sym__val_number_token2] = ACTIONS(6079), - [aux_sym__val_number_token3] = ACTIONS(6079), - [aux_sym__val_number_token4] = ACTIONS(6079), - [aux_sym__val_number_token5] = ACTIONS(6079), - [aux_sym__val_number_token6] = ACTIONS(6079), - [anon_sym_0b] = ACTIONS(2953), - [anon_sym_0o] = ACTIONS(2955), - [anon_sym_0x] = ACTIONS(2955), - [sym_val_date] = ACTIONS(6081), - [anon_sym_DQUOTE] = ACTIONS(6083), - [sym__str_single_quotes] = ACTIONS(6085), - [sym__str_back_ticks] = ACTIONS(6085), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6087), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6089), + [2624] = { + [sym_comment] = STATE(2624), + [anon_sym_export] = ACTIONS(6594), + [anon_sym_alias] = ACTIONS(6594), + [anon_sym_let] = ACTIONS(6594), + [anon_sym_let_DASHenv] = ACTIONS(6594), + [anon_sym_mut] = ACTIONS(6594), + [anon_sym_const] = ACTIONS(6594), + [anon_sym_SEMI] = ACTIONS(6594), + [sym_cmd_identifier] = ACTIONS(6594), + [anon_sym_LF] = ACTIONS(6596), + [anon_sym_def] = ACTIONS(6594), + [anon_sym_export_DASHenv] = ACTIONS(6594), + [anon_sym_extern] = ACTIONS(6594), + [anon_sym_module] = ACTIONS(6594), + [anon_sym_use] = ACTIONS(6594), + [anon_sym_LBRACK] = ACTIONS(6594), + [anon_sym_LPAREN] = ACTIONS(6594), + [anon_sym_DOLLAR] = ACTIONS(6594), + [anon_sym_error] = ACTIONS(6594), + [anon_sym_DASH] = ACTIONS(6594), + [anon_sym_break] = ACTIONS(6594), + [anon_sym_continue] = ACTIONS(6594), + [anon_sym_for] = ACTIONS(6594), + [anon_sym_loop] = ACTIONS(6594), + [anon_sym_while] = ACTIONS(6594), + [anon_sym_do] = ACTIONS(6594), + [anon_sym_if] = ACTIONS(6594), + [anon_sym_match] = ACTIONS(6594), + [anon_sym_LBRACE] = ACTIONS(6594), + [anon_sym_DOT_DOT] = ACTIONS(6594), + [anon_sym_try] = ACTIONS(6594), + [anon_sym_return] = ACTIONS(6594), + [anon_sym_source] = ACTIONS(6594), + [anon_sym_source_DASHenv] = ACTIONS(6594), + [anon_sym_register] = ACTIONS(6594), + [anon_sym_hide] = ACTIONS(6594), + [anon_sym_hide_DASHenv] = ACTIONS(6594), + [anon_sym_overlay] = ACTIONS(6594), + [anon_sym_where] = ACTIONS(6594), + [anon_sym_not] = ACTIONS(6594), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6594), + [anon_sym_DOT_DOT_LT] = ACTIONS(6594), + [anon_sym_null] = ACTIONS(6594), + [anon_sym_true] = ACTIONS(6594), + [anon_sym_false] = ACTIONS(6594), + [aux_sym__val_number_decimal_token1] = ACTIONS(6594), + [aux_sym__val_number_decimal_token2] = ACTIONS(6594), + [anon_sym_DOT2] = ACTIONS(6594), + [aux_sym__val_number_decimal_token3] = ACTIONS(6594), + [aux_sym__val_number_token1] = ACTIONS(6594), + [aux_sym__val_number_token2] = ACTIONS(6594), + [aux_sym__val_number_token3] = ACTIONS(6594), + [aux_sym__val_number_token4] = ACTIONS(6594), + [aux_sym__val_number_token5] = ACTIONS(6594), + [aux_sym__val_number_token6] = ACTIONS(6594), + [anon_sym_0b] = ACTIONS(6594), + [anon_sym_0o] = ACTIONS(6594), + [anon_sym_0x] = ACTIONS(6594), + [sym_val_date] = ACTIONS(6594), + [anon_sym_DQUOTE] = ACTIONS(6594), + [sym__str_single_quotes] = ACTIONS(6594), + [sym__str_back_ticks] = ACTIONS(6594), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6594), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6594), + [anon_sym_CARET] = ACTIONS(6594), [anon_sym_POUND] = ACTIONS(113), }, - [2467] = { - [sym_comment] = STATE(2467), - [anon_sym_LBRACK] = ACTIONS(1352), - [anon_sym_COMMA] = ACTIONS(1352), - [anon_sym_RBRACK] = ACTIONS(1352), - [anon_sym_LPAREN] = ACTIONS(1352), - [anon_sym_DOLLAR] = ACTIONS(1352), - [anon_sym_GT] = ACTIONS(1350), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_in] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_DOT_DOT] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_STAR_STAR] = ACTIONS(1352), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [anon_sym_SLASH] = ACTIONS(1350), - [anon_sym_mod] = ACTIONS(1352), - [anon_sym_SLASH_SLASH] = ACTIONS(1352), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_bit_DASHshl] = ACTIONS(1352), - [anon_sym_bit_DASHshr] = ACTIONS(1352), - [anon_sym_EQ_EQ] = ACTIONS(1352), - [anon_sym_BANG_EQ] = ACTIONS(1352), - [anon_sym_LT2] = ACTIONS(1350), - [anon_sym_LT_EQ] = ACTIONS(1352), - [anon_sym_GT_EQ] = ACTIONS(1352), - [anon_sym_not_DASHin] = ACTIONS(1352), - [anon_sym_starts_DASHwith] = ACTIONS(1352), - [anon_sym_ends_DASHwith] = ACTIONS(1352), - [anon_sym_EQ_TILDE] = ACTIONS(1352), - [anon_sym_BANG_TILDE] = ACTIONS(1352), - [anon_sym_bit_DASHand] = ACTIONS(1352), - [anon_sym_bit_DASHxor] = ACTIONS(1352), - [anon_sym_bit_DASHor] = ACTIONS(1352), - [anon_sym_and] = ACTIONS(1352), - [anon_sym_xor] = ACTIONS(1352), - [anon_sym_or] = ACTIONS(1352), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1352), - [anon_sym_DOT_DOT_LT] = ACTIONS(1352), - [anon_sym_null] = ACTIONS(1352), - [anon_sym_true] = ACTIONS(1352), - [anon_sym_false] = ACTIONS(1352), - [aux_sym__val_number_decimal_token1] = ACTIONS(1350), - [aux_sym__val_number_decimal_token2] = ACTIONS(1352), - [anon_sym_DOT2] = ACTIONS(1350), - [aux_sym__val_number_decimal_token3] = ACTIONS(1352), - [aux_sym__val_number_token1] = ACTIONS(1352), - [aux_sym__val_number_token2] = ACTIONS(1352), - [aux_sym__val_number_token3] = ACTIONS(1352), - [aux_sym__val_number_token4] = ACTIONS(1352), - [aux_sym__val_number_token5] = ACTIONS(1352), - [aux_sym__val_number_token6] = ACTIONS(1352), - [anon_sym_0b] = ACTIONS(1350), - [anon_sym_0o] = ACTIONS(1350), - [anon_sym_0x] = ACTIONS(1350), - [sym_val_date] = ACTIONS(1352), - [anon_sym_DQUOTE] = ACTIONS(1352), - [sym__str_single_quotes] = ACTIONS(1352), - [sym__str_back_ticks] = ACTIONS(1352), - [anon_sym_err_GT] = ACTIONS(1352), - [anon_sym_out_GT] = ACTIONS(1352), - [anon_sym_e_GT] = ACTIONS(1352), - [anon_sym_o_GT] = ACTIONS(1352), - [anon_sym_err_PLUSout_GT] = ACTIONS(1352), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1352), - [anon_sym_o_PLUSe_GT] = ACTIONS(1352), - [anon_sym_e_PLUSo_GT] = ACTIONS(1352), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1350), - [anon_sym_POUND] = ACTIONS(3), - }, - [2468] = { - [sym_comment] = STATE(2468), - [ts_builtin_sym_end] = ACTIONS(3951), - [anon_sym_export] = ACTIONS(3949), - [anon_sym_alias] = ACTIONS(3949), - [anon_sym_let] = ACTIONS(3949), - [anon_sym_let_DASHenv] = ACTIONS(3949), - [anon_sym_mut] = ACTIONS(3949), - [anon_sym_const] = ACTIONS(3949), - [anon_sym_SEMI] = ACTIONS(3949), - [sym_cmd_identifier] = ACTIONS(3949), - [anon_sym_LF] = ACTIONS(3951), - [anon_sym_def] = ACTIONS(3949), - [anon_sym_export_DASHenv] = ACTIONS(3949), - [anon_sym_extern] = ACTIONS(3949), - [anon_sym_module] = ACTIONS(3949), - [anon_sym_use] = ACTIONS(3949), - [anon_sym_LBRACK] = ACTIONS(3949), - [anon_sym_LPAREN] = ACTIONS(3949), - [anon_sym_DOLLAR] = ACTIONS(3949), - [anon_sym_error] = ACTIONS(3949), - [anon_sym_DASH_DASH] = ACTIONS(3949), - [anon_sym_DASH] = ACTIONS(3949), - [anon_sym_break] = ACTIONS(3949), - [anon_sym_continue] = ACTIONS(3949), - [anon_sym_for] = ACTIONS(3949), - [anon_sym_loop] = ACTIONS(3949), - [anon_sym_while] = ACTIONS(3949), - [anon_sym_do] = ACTIONS(3949), - [anon_sym_if] = ACTIONS(3949), - [anon_sym_match] = ACTIONS(3949), - [anon_sym_LBRACE] = ACTIONS(3949), - [anon_sym_DOT_DOT] = ACTIONS(3949), - [anon_sym_try] = ACTIONS(3949), - [anon_sym_return] = ACTIONS(3949), - [anon_sym_source] = ACTIONS(3949), - [anon_sym_source_DASHenv] = ACTIONS(3949), - [anon_sym_register] = ACTIONS(3949), - [anon_sym_hide] = ACTIONS(3949), - [anon_sym_hide_DASHenv] = ACTIONS(3949), - [anon_sym_overlay] = ACTIONS(3949), - [anon_sym_as] = ACTIONS(3949), - [anon_sym_where] = ACTIONS(3949), - [anon_sym_not] = ACTIONS(3949), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3949), - [anon_sym_DOT_DOT_LT] = ACTIONS(3949), - [anon_sym_null] = ACTIONS(3949), - [anon_sym_true] = ACTIONS(3949), - [anon_sym_false] = ACTIONS(3949), - [aux_sym__val_number_decimal_token1] = ACTIONS(3949), - [aux_sym__val_number_decimal_token2] = ACTIONS(3949), - [anon_sym_DOT2] = ACTIONS(3949), - [aux_sym__val_number_decimal_token3] = ACTIONS(3949), - [aux_sym__val_number_token1] = ACTIONS(3949), - [aux_sym__val_number_token2] = ACTIONS(3949), - [aux_sym__val_number_token3] = ACTIONS(3949), - [aux_sym__val_number_token4] = ACTIONS(3949), - [aux_sym__val_number_token5] = ACTIONS(3949), - [aux_sym__val_number_token6] = ACTIONS(3949), - [anon_sym_0b] = ACTIONS(3949), - [anon_sym_0o] = ACTIONS(3949), - [anon_sym_0x] = ACTIONS(3949), - [sym_val_date] = ACTIONS(3949), - [anon_sym_DQUOTE] = ACTIONS(3949), - [sym__str_single_quotes] = ACTIONS(3949), - [sym__str_back_ticks] = ACTIONS(3949), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3949), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3949), - [anon_sym_CARET] = ACTIONS(3949), + [2625] = { + [sym_comment] = STATE(2625), + [anon_sym_export] = ACTIONS(5974), + [anon_sym_alias] = ACTIONS(5974), + [anon_sym_let] = ACTIONS(5974), + [anon_sym_let_DASHenv] = ACTIONS(5974), + [anon_sym_mut] = ACTIONS(5974), + [anon_sym_const] = ACTIONS(5974), + [anon_sym_SEMI] = ACTIONS(5974), + [sym_cmd_identifier] = ACTIONS(5974), + [anon_sym_LF] = ACTIONS(6598), + [anon_sym_def] = ACTIONS(5974), + [anon_sym_export_DASHenv] = ACTIONS(5974), + [anon_sym_extern] = ACTIONS(5974), + [anon_sym_module] = ACTIONS(5974), + [anon_sym_use] = ACTIONS(5974), + [anon_sym_LBRACK] = ACTIONS(5974), + [anon_sym_LPAREN] = ACTIONS(5974), + [anon_sym_DOLLAR] = ACTIONS(5974), + [anon_sym_error] = ACTIONS(5974), + [anon_sym_DASH] = ACTIONS(5974), + [anon_sym_break] = ACTIONS(5974), + [anon_sym_continue] = ACTIONS(5974), + [anon_sym_for] = ACTIONS(5974), + [anon_sym_loop] = ACTIONS(5974), + [anon_sym_while] = ACTIONS(5974), + [anon_sym_do] = ACTIONS(5974), + [anon_sym_if] = ACTIONS(5974), + [anon_sym_match] = ACTIONS(5974), + [anon_sym_LBRACE] = ACTIONS(5974), + [anon_sym_DOT_DOT] = ACTIONS(5974), + [anon_sym_try] = ACTIONS(5974), + [anon_sym_return] = ACTIONS(5974), + [anon_sym_source] = ACTIONS(5974), + [anon_sym_source_DASHenv] = ACTIONS(5974), + [anon_sym_register] = ACTIONS(5974), + [anon_sym_hide] = ACTIONS(5974), + [anon_sym_hide_DASHenv] = ACTIONS(5974), + [anon_sym_overlay] = ACTIONS(5974), + [anon_sym_where] = ACTIONS(5974), + [anon_sym_not] = ACTIONS(5974), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5974), + [anon_sym_DOT_DOT_LT] = ACTIONS(5974), + [anon_sym_null] = ACTIONS(5974), + [anon_sym_true] = ACTIONS(5974), + [anon_sym_false] = ACTIONS(5974), + [aux_sym__val_number_decimal_token1] = ACTIONS(5974), + [aux_sym__val_number_decimal_token2] = ACTIONS(5974), + [anon_sym_DOT2] = ACTIONS(5974), + [aux_sym__val_number_decimal_token3] = ACTIONS(5974), + [aux_sym__val_number_token1] = ACTIONS(5974), + [aux_sym__val_number_token2] = ACTIONS(5974), + [aux_sym__val_number_token3] = ACTIONS(5974), + [aux_sym__val_number_token4] = ACTIONS(5974), + [aux_sym__val_number_token5] = ACTIONS(5974), + [aux_sym__val_number_token6] = ACTIONS(5974), + [anon_sym_0b] = ACTIONS(5974), + [anon_sym_0o] = ACTIONS(5974), + [anon_sym_0x] = ACTIONS(5974), + [sym_val_date] = ACTIONS(5974), + [anon_sym_DQUOTE] = ACTIONS(5974), + [sym__str_single_quotes] = ACTIONS(5974), + [sym__str_back_ticks] = ACTIONS(5974), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5974), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5974), + [anon_sym_CARET] = ACTIONS(5974), [anon_sym_POUND] = ACTIONS(113), }, - [2469] = { - [sym__expression] = STATE(7587), - [sym_expr_unary] = STATE(6196), - [sym__expr_unary_minus] = STATE(6200), - [sym_expr_binary] = STATE(6196), - [sym__expr_binary_expression] = STATE(6783), - [sym_expr_parenthesized] = STATE(5434), - [sym_val_range] = STATE(8689), - [sym__value] = STATE(6196), - [sym_val_nothing] = STATE(6059), - [sym_val_bool] = STATE(6059), - [sym_val_variable] = STATE(5445), - [sym__var] = STATE(4804), - [sym_val_number] = STATE(6059), - [sym__val_number_decimal] = STATE(4923), - [sym__val_number] = STATE(6097), - [sym_val_duration] = STATE(6059), - [sym_val_filesize] = STATE(6059), - [sym_val_binary] = STATE(6059), - [sym_val_string] = STATE(6059), - [sym__str_double_quotes] = STATE(6144), - [sym_val_interpolated] = STATE(6059), - [sym__inter_single_quotes] = STATE(6158), - [sym__inter_double_quotes] = STATE(6159), - [sym_val_list] = STATE(6059), - [sym_val_record] = STATE(6059), - [sym_val_table] = STATE(6059), - [sym_val_closure] = STATE(6059), - [sym__flag] = STATE(7585), - [sym_short_flag] = STATE(8772), - [sym_long_flag] = STATE(8772), - [sym_long_flag_equals_value] = STATE(8808), - [sym_comment] = STATE(2469), - [ts_builtin_sym_end] = ACTIONS(6043), - [anon_sym_SEMI] = ACTIONS(6041), - [anon_sym_LF] = ACTIONS(6043), - [anon_sym_LBRACK] = ACTIONS(6053), - [anon_sym_LPAREN] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(6041), - [anon_sym_DOLLAR] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(6151), - [anon_sym_DASH] = ACTIONS(6153), - [anon_sym_LBRACE] = ACTIONS(6061), - [anon_sym_DOT_DOT] = ACTIONS(6063), - [anon_sym_not] = ACTIONS(6065), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6067), - [anon_sym_DOT_DOT_LT] = ACTIONS(6067), - [anon_sym_null] = ACTIONS(6069), - [anon_sym_true] = ACTIONS(6071), - [anon_sym_false] = ACTIONS(6071), - [aux_sym__val_number_decimal_token1] = ACTIONS(6073), - [aux_sym__val_number_decimal_token2] = ACTIONS(6073), - [anon_sym_DOT2] = ACTIONS(6075), - [aux_sym__val_number_decimal_token3] = ACTIONS(6077), - [aux_sym__val_number_token1] = ACTIONS(6079), - [aux_sym__val_number_token2] = ACTIONS(6079), - [aux_sym__val_number_token3] = ACTIONS(6079), - [aux_sym__val_number_token4] = ACTIONS(6079), - [aux_sym__val_number_token5] = ACTIONS(6079), - [aux_sym__val_number_token6] = ACTIONS(6079), - [anon_sym_0b] = ACTIONS(2953), - [anon_sym_0o] = ACTIONS(2955), - [anon_sym_0x] = ACTIONS(2955), - [sym_val_date] = ACTIONS(6081), - [anon_sym_DQUOTE] = ACTIONS(6083), - [sym__str_single_quotes] = ACTIONS(6085), - [sym__str_back_ticks] = ACTIONS(6085), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6087), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6089), + [2626] = { + [sym_comment] = STATE(2626), + [anon_sym_export] = ACTIONS(6600), + [anon_sym_alias] = ACTIONS(6600), + [anon_sym_let] = ACTIONS(6600), + [anon_sym_let_DASHenv] = ACTIONS(6600), + [anon_sym_mut] = ACTIONS(6600), + [anon_sym_const] = ACTIONS(6600), + [anon_sym_SEMI] = ACTIONS(6600), + [sym_cmd_identifier] = ACTIONS(6600), + [anon_sym_LF] = ACTIONS(6602), + [anon_sym_def] = ACTIONS(6600), + [anon_sym_export_DASHenv] = ACTIONS(6600), + [anon_sym_extern] = ACTIONS(6600), + [anon_sym_module] = ACTIONS(6600), + [anon_sym_use] = ACTIONS(6600), + [anon_sym_LBRACK] = ACTIONS(6600), + [anon_sym_LPAREN] = ACTIONS(6600), + [anon_sym_DOLLAR] = ACTIONS(6600), + [anon_sym_error] = ACTIONS(6600), + [anon_sym_DASH] = ACTIONS(6600), + [anon_sym_break] = ACTIONS(6600), + [anon_sym_continue] = ACTIONS(6600), + [anon_sym_for] = ACTIONS(6600), + [anon_sym_loop] = ACTIONS(6600), + [anon_sym_while] = ACTIONS(6600), + [anon_sym_do] = ACTIONS(6600), + [anon_sym_if] = ACTIONS(6600), + [anon_sym_match] = ACTIONS(6600), + [anon_sym_LBRACE] = ACTIONS(6600), + [anon_sym_DOT_DOT] = ACTIONS(6600), + [anon_sym_try] = ACTIONS(6600), + [anon_sym_return] = ACTIONS(6600), + [anon_sym_source] = ACTIONS(6600), + [anon_sym_source_DASHenv] = ACTIONS(6600), + [anon_sym_register] = ACTIONS(6600), + [anon_sym_hide] = ACTIONS(6600), + [anon_sym_hide_DASHenv] = ACTIONS(6600), + [anon_sym_overlay] = ACTIONS(6600), + [anon_sym_where] = ACTIONS(6600), + [anon_sym_not] = ACTIONS(6600), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6600), + [anon_sym_DOT_DOT_LT] = ACTIONS(6600), + [anon_sym_null] = ACTIONS(6600), + [anon_sym_true] = ACTIONS(6600), + [anon_sym_false] = ACTIONS(6600), + [aux_sym__val_number_decimal_token1] = ACTIONS(6600), + [aux_sym__val_number_decimal_token2] = ACTIONS(6600), + [anon_sym_DOT2] = ACTIONS(6600), + [aux_sym__val_number_decimal_token3] = ACTIONS(6600), + [aux_sym__val_number_token1] = ACTIONS(6600), + [aux_sym__val_number_token2] = ACTIONS(6600), + [aux_sym__val_number_token3] = ACTIONS(6600), + [aux_sym__val_number_token4] = ACTIONS(6600), + [aux_sym__val_number_token5] = ACTIONS(6600), + [aux_sym__val_number_token6] = ACTIONS(6600), + [anon_sym_0b] = ACTIONS(6600), + [anon_sym_0o] = ACTIONS(6600), + [anon_sym_0x] = ACTIONS(6600), + [sym_val_date] = ACTIONS(6600), + [anon_sym_DQUOTE] = ACTIONS(6600), + [sym__str_single_quotes] = ACTIONS(6600), + [sym__str_back_ticks] = ACTIONS(6600), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6600), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6600), + [anon_sym_CARET] = ACTIONS(6600), [anon_sym_POUND] = ACTIONS(113), }, - [2470] = { - [sym__expression] = STATE(7587), - [sym_expr_unary] = STATE(6196), - [sym__expr_unary_minus] = STATE(6200), - [sym_expr_binary] = STATE(6196), - [sym__expr_binary_expression] = STATE(6783), - [sym_expr_parenthesized] = STATE(5434), - [sym_val_range] = STATE(8689), - [sym__value] = STATE(6196), - [sym_val_nothing] = STATE(6059), - [sym_val_bool] = STATE(6059), - [sym_val_variable] = STATE(5445), - [sym__var] = STATE(4804), - [sym_val_number] = STATE(6059), - [sym__val_number_decimal] = STATE(4923), - [sym__val_number] = STATE(6097), - [sym_val_duration] = STATE(6059), - [sym_val_filesize] = STATE(6059), - [sym_val_binary] = STATE(6059), - [sym_val_string] = STATE(6059), - [sym__str_double_quotes] = STATE(6144), - [sym_val_interpolated] = STATE(6059), - [sym__inter_single_quotes] = STATE(6158), - [sym__inter_double_quotes] = STATE(6159), - [sym_val_list] = STATE(6059), - [sym_val_record] = STATE(6059), - [sym_val_table] = STATE(6059), - [sym_val_closure] = STATE(6059), - [sym__flag] = STATE(2472), - [sym_short_flag] = STATE(5303), - [sym_long_flag] = STATE(5303), - [sym_long_flag_equals_value] = STATE(5400), - [sym_comment] = STATE(2470), - [ts_builtin_sym_end] = ACTIONS(6043), - [anon_sym_SEMI] = ACTIONS(6041), - [anon_sym_LF] = ACTIONS(6043), - [anon_sym_LBRACK] = ACTIONS(6053), - [anon_sym_LPAREN] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(6041), - [anon_sym_DOLLAR] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(6057), - [anon_sym_DASH] = ACTIONS(6059), - [anon_sym_LBRACE] = ACTIONS(6061), - [anon_sym_DOT_DOT] = ACTIONS(6063), - [anon_sym_not] = ACTIONS(6065), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6067), - [anon_sym_DOT_DOT_LT] = ACTIONS(6067), - [anon_sym_null] = ACTIONS(6069), - [anon_sym_true] = ACTIONS(6071), - [anon_sym_false] = ACTIONS(6071), - [aux_sym__val_number_decimal_token1] = ACTIONS(6073), - [aux_sym__val_number_decimal_token2] = ACTIONS(6073), - [anon_sym_DOT2] = ACTIONS(6075), - [aux_sym__val_number_decimal_token3] = ACTIONS(6077), - [aux_sym__val_number_token1] = ACTIONS(6079), - [aux_sym__val_number_token2] = ACTIONS(6079), - [aux_sym__val_number_token3] = ACTIONS(6079), - [aux_sym__val_number_token4] = ACTIONS(6079), - [aux_sym__val_number_token5] = ACTIONS(6079), - [aux_sym__val_number_token6] = ACTIONS(6079), - [anon_sym_0b] = ACTIONS(2953), - [anon_sym_0o] = ACTIONS(2955), - [anon_sym_0x] = ACTIONS(2955), - [sym_val_date] = ACTIONS(6081), - [anon_sym_DQUOTE] = ACTIONS(6083), - [sym__str_single_quotes] = ACTIONS(6085), - [sym__str_back_ticks] = ACTIONS(6085), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6087), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6089), + [2627] = { + [sym_comment] = STATE(2627), + [anon_sym_SEMI] = ACTIONS(1179), + [anon_sym_LF] = ACTIONS(1181), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_RPAREN] = ACTIONS(1179), + [anon_sym_PIPE] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(6441), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(6443), + [anon_sym_in] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(6447), + [anon_sym_STAR_STAR] = ACTIONS(6449), + [anon_sym_PLUS_PLUS] = ACTIONS(6449), + [anon_sym_SLASH] = ACTIONS(6447), + [anon_sym_mod] = ACTIONS(6447), + [anon_sym_SLASH_SLASH] = ACTIONS(6447), + [anon_sym_PLUS] = ACTIONS(6443), + [anon_sym_bit_DASHshl] = ACTIONS(6451), + [anon_sym_bit_DASHshr] = ACTIONS(6451), + [anon_sym_EQ_EQ] = ACTIONS(6441), + [anon_sym_BANG_EQ] = ACTIONS(6441), + [anon_sym_LT2] = ACTIONS(6441), + [anon_sym_LT_EQ] = ACTIONS(6441), + [anon_sym_GT_EQ] = ACTIONS(6441), + [anon_sym_not_DASHin] = ACTIONS(1179), + [anon_sym_starts_DASHwith] = ACTIONS(1179), + [anon_sym_ends_DASHwith] = ACTIONS(1179), + [anon_sym_EQ_TILDE] = ACTIONS(1179), + [anon_sym_BANG_TILDE] = ACTIONS(1179), + [anon_sym_bit_DASHand] = ACTIONS(1179), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_not] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1179), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, - [2471] = { - [sym_comment] = STATE(2471), - [ts_builtin_sym_end] = ACTIONS(3966), - [anon_sym_export] = ACTIONS(3964), - [anon_sym_alias] = ACTIONS(3964), - [anon_sym_let] = ACTIONS(3964), - [anon_sym_let_DASHenv] = ACTIONS(3964), - [anon_sym_mut] = ACTIONS(3964), - [anon_sym_const] = ACTIONS(3964), - [anon_sym_SEMI] = ACTIONS(3964), - [sym_cmd_identifier] = ACTIONS(3964), - [anon_sym_LF] = ACTIONS(3966), - [anon_sym_def] = ACTIONS(3964), - [anon_sym_export_DASHenv] = ACTIONS(3964), - [anon_sym_extern] = ACTIONS(3964), - [anon_sym_module] = ACTIONS(3964), - [anon_sym_use] = ACTIONS(3964), - [anon_sym_LBRACK] = ACTIONS(3964), - [anon_sym_LPAREN] = ACTIONS(3964), - [anon_sym_DOLLAR] = ACTIONS(3964), - [anon_sym_error] = ACTIONS(3964), - [anon_sym_DASH_DASH] = ACTIONS(3964), - [anon_sym_DASH] = ACTIONS(3964), - [anon_sym_break] = ACTIONS(3964), - [anon_sym_continue] = ACTIONS(3964), - [anon_sym_for] = ACTIONS(3964), - [anon_sym_loop] = ACTIONS(3964), - [anon_sym_while] = ACTIONS(3964), - [anon_sym_do] = ACTIONS(3964), - [anon_sym_if] = ACTIONS(3964), - [anon_sym_match] = ACTIONS(3964), - [anon_sym_LBRACE] = ACTIONS(3964), - [anon_sym_DOT_DOT] = ACTIONS(3964), - [anon_sym_try] = ACTIONS(3964), - [anon_sym_return] = ACTIONS(3964), - [anon_sym_source] = ACTIONS(3964), - [anon_sym_source_DASHenv] = ACTIONS(3964), - [anon_sym_register] = ACTIONS(3964), - [anon_sym_hide] = ACTIONS(3964), - [anon_sym_hide_DASHenv] = ACTIONS(3964), - [anon_sym_overlay] = ACTIONS(3964), - [anon_sym_as] = ACTIONS(3964), - [anon_sym_where] = ACTIONS(3964), - [anon_sym_not] = ACTIONS(3964), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3964), - [anon_sym_DOT_DOT_LT] = ACTIONS(3964), - [anon_sym_null] = ACTIONS(3964), - [anon_sym_true] = ACTIONS(3964), - [anon_sym_false] = ACTIONS(3964), - [aux_sym__val_number_decimal_token1] = ACTIONS(3964), - [aux_sym__val_number_decimal_token2] = ACTIONS(3964), - [anon_sym_DOT2] = ACTIONS(3964), - [aux_sym__val_number_decimal_token3] = ACTIONS(3964), - [aux_sym__val_number_token1] = ACTIONS(3964), - [aux_sym__val_number_token2] = ACTIONS(3964), - [aux_sym__val_number_token3] = ACTIONS(3964), - [aux_sym__val_number_token4] = ACTIONS(3964), - [aux_sym__val_number_token5] = ACTIONS(3964), - [aux_sym__val_number_token6] = ACTIONS(3964), - [anon_sym_0b] = ACTIONS(3964), - [anon_sym_0o] = ACTIONS(3964), - [anon_sym_0x] = ACTIONS(3964), - [sym_val_date] = ACTIONS(3964), - [anon_sym_DQUOTE] = ACTIONS(3964), - [sym__str_single_quotes] = ACTIONS(3964), - [sym__str_back_ticks] = ACTIONS(3964), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3964), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3964), - [anon_sym_CARET] = ACTIONS(3964), + [2628] = { + [sym_comment] = STATE(2628), + [anon_sym_SEMI] = ACTIONS(1179), + [anon_sym_LF] = ACTIONS(1181), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_RPAREN] = ACTIONS(1179), + [anon_sym_PIPE] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(6443), + [anon_sym_in] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(6447), + [anon_sym_STAR_STAR] = ACTIONS(6449), + [anon_sym_PLUS_PLUS] = ACTIONS(6449), + [anon_sym_SLASH] = ACTIONS(6447), + [anon_sym_mod] = ACTIONS(6447), + [anon_sym_SLASH_SLASH] = ACTIONS(6447), + [anon_sym_PLUS] = ACTIONS(6443), + [anon_sym_bit_DASHshl] = ACTIONS(1179), + [anon_sym_bit_DASHshr] = ACTIONS(1179), + [anon_sym_EQ_EQ] = ACTIONS(1179), + [anon_sym_BANG_EQ] = ACTIONS(1179), + [anon_sym_LT2] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1179), + [anon_sym_GT_EQ] = ACTIONS(1179), + [anon_sym_not_DASHin] = ACTIONS(1179), + [anon_sym_starts_DASHwith] = ACTIONS(1179), + [anon_sym_ends_DASHwith] = ACTIONS(1179), + [anon_sym_EQ_TILDE] = ACTIONS(1179), + [anon_sym_BANG_TILDE] = ACTIONS(1179), + [anon_sym_bit_DASHand] = ACTIONS(1179), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_not] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1179), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, - [2472] = { - [sym__expression] = STATE(7612), - [sym_expr_unary] = STATE(6196), - [sym__expr_unary_minus] = STATE(6200), - [sym_expr_binary] = STATE(6196), - [sym__expr_binary_expression] = STATE(6783), - [sym_expr_parenthesized] = STATE(5434), - [sym_val_range] = STATE(8689), - [sym__value] = STATE(6196), - [sym_val_nothing] = STATE(6059), - [sym_val_bool] = STATE(6059), - [sym_val_variable] = STATE(5445), - [sym__var] = STATE(4804), - [sym_val_number] = STATE(6059), - [sym__val_number_decimal] = STATE(4923), - [sym__val_number] = STATE(6097), - [sym_val_duration] = STATE(6059), - [sym_val_filesize] = STATE(6059), - [sym_val_binary] = STATE(6059), - [sym_val_string] = STATE(6059), - [sym__str_double_quotes] = STATE(6144), - [sym_val_interpolated] = STATE(6059), - [sym__inter_single_quotes] = STATE(6158), - [sym__inter_double_quotes] = STATE(6159), - [sym_val_list] = STATE(6059), - [sym_val_record] = STATE(6059), - [sym_val_table] = STATE(6059), - [sym_val_closure] = STATE(6059), - [sym__flag] = STATE(7609), - [sym_short_flag] = STATE(8772), - [sym_long_flag] = STATE(8772), - [sym_long_flag_equals_value] = STATE(8808), - [sym_comment] = STATE(2472), - [ts_builtin_sym_end] = ACTIONS(6047), - [anon_sym_SEMI] = ACTIONS(6045), - [anon_sym_LF] = ACTIONS(6047), - [anon_sym_LBRACK] = ACTIONS(6053), - [anon_sym_LPAREN] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(6045), - [anon_sym_DOLLAR] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(6151), - [anon_sym_DASH] = ACTIONS(6153), - [anon_sym_LBRACE] = ACTIONS(6061), - [anon_sym_DOT_DOT] = ACTIONS(6063), - [anon_sym_not] = ACTIONS(6065), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6067), - [anon_sym_DOT_DOT_LT] = ACTIONS(6067), - [anon_sym_null] = ACTIONS(6069), - [anon_sym_true] = ACTIONS(6071), - [anon_sym_false] = ACTIONS(6071), - [aux_sym__val_number_decimal_token1] = ACTIONS(6073), - [aux_sym__val_number_decimal_token2] = ACTIONS(6073), - [anon_sym_DOT2] = ACTIONS(6075), - [aux_sym__val_number_decimal_token3] = ACTIONS(6077), - [aux_sym__val_number_token1] = ACTIONS(6079), - [aux_sym__val_number_token2] = ACTIONS(6079), - [aux_sym__val_number_token3] = ACTIONS(6079), - [aux_sym__val_number_token4] = ACTIONS(6079), - [aux_sym__val_number_token5] = ACTIONS(6079), - [aux_sym__val_number_token6] = ACTIONS(6079), - [anon_sym_0b] = ACTIONS(2953), - [anon_sym_0o] = ACTIONS(2955), - [anon_sym_0x] = ACTIONS(2955), - [sym_val_date] = ACTIONS(6081), - [anon_sym_DQUOTE] = ACTIONS(6083), - [sym__str_single_quotes] = ACTIONS(6085), - [sym__str_back_ticks] = ACTIONS(6085), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6087), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6089), + [2629] = { + [sym_comment] = STATE(2629), + [anon_sym_SEMI] = ACTIONS(1179), + [anon_sym_LF] = ACTIONS(1181), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_RPAREN] = ACTIONS(1179), + [anon_sym_PIPE] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(6441), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(6443), + [anon_sym_in] = ACTIONS(6445), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(6447), + [anon_sym_STAR_STAR] = ACTIONS(6449), + [anon_sym_PLUS_PLUS] = ACTIONS(6449), + [anon_sym_SLASH] = ACTIONS(6447), + [anon_sym_mod] = ACTIONS(6447), + [anon_sym_SLASH_SLASH] = ACTIONS(6447), + [anon_sym_PLUS] = ACTIONS(6443), + [anon_sym_bit_DASHshl] = ACTIONS(6451), + [anon_sym_bit_DASHshr] = ACTIONS(6451), + [anon_sym_EQ_EQ] = ACTIONS(6441), + [anon_sym_BANG_EQ] = ACTIONS(6441), + [anon_sym_LT2] = ACTIONS(6441), + [anon_sym_LT_EQ] = ACTIONS(6441), + [anon_sym_GT_EQ] = ACTIONS(6441), + [anon_sym_not_DASHin] = ACTIONS(6445), + [anon_sym_starts_DASHwith] = ACTIONS(6445), + [anon_sym_ends_DASHwith] = ACTIONS(6445), + [anon_sym_EQ_TILDE] = ACTIONS(1179), + [anon_sym_BANG_TILDE] = ACTIONS(1179), + [anon_sym_bit_DASHand] = ACTIONS(1179), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_not] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1179), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, - [2473] = { - [sym_comment] = STATE(2473), - [ts_builtin_sym_end] = ACTIONS(4045), - [anon_sym_export] = ACTIONS(4043), - [anon_sym_alias] = ACTIONS(4043), - [anon_sym_let] = ACTIONS(4043), - [anon_sym_let_DASHenv] = ACTIONS(4043), - [anon_sym_mut] = ACTIONS(4043), - [anon_sym_const] = ACTIONS(4043), - [anon_sym_SEMI] = ACTIONS(4043), - [sym_cmd_identifier] = ACTIONS(4043), - [anon_sym_LF] = ACTIONS(4045), - [anon_sym_def] = ACTIONS(4043), - [anon_sym_export_DASHenv] = ACTIONS(4043), - [anon_sym_extern] = ACTIONS(4043), - [anon_sym_module] = ACTIONS(4043), - [anon_sym_use] = ACTIONS(4043), - [anon_sym_LBRACK] = ACTIONS(4043), - [anon_sym_LPAREN] = ACTIONS(4043), - [anon_sym_DOLLAR] = ACTIONS(4043), - [anon_sym_error] = ACTIONS(4043), - [anon_sym_DASH_DASH] = ACTIONS(4043), - [anon_sym_DASH] = ACTIONS(4043), - [anon_sym_break] = ACTIONS(4043), - [anon_sym_continue] = ACTIONS(4043), - [anon_sym_for] = ACTIONS(4043), - [anon_sym_loop] = ACTIONS(4043), - [anon_sym_while] = ACTIONS(4043), - [anon_sym_do] = ACTIONS(4043), - [anon_sym_if] = ACTIONS(4043), - [anon_sym_match] = ACTIONS(4043), - [anon_sym_LBRACE] = ACTIONS(4043), - [anon_sym_DOT_DOT] = ACTIONS(4043), - [anon_sym_try] = ACTIONS(4043), - [anon_sym_return] = ACTIONS(4043), - [anon_sym_source] = ACTIONS(4043), - [anon_sym_source_DASHenv] = ACTIONS(4043), - [anon_sym_register] = ACTIONS(4043), - [anon_sym_hide] = ACTIONS(4043), - [anon_sym_hide_DASHenv] = ACTIONS(4043), - [anon_sym_overlay] = ACTIONS(4043), - [anon_sym_as] = ACTIONS(4043), - [anon_sym_where] = ACTIONS(4043), - [anon_sym_not] = ACTIONS(4043), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4043), - [anon_sym_DOT_DOT_LT] = ACTIONS(4043), - [anon_sym_null] = ACTIONS(4043), - [anon_sym_true] = ACTIONS(4043), - [anon_sym_false] = ACTIONS(4043), - [aux_sym__val_number_decimal_token1] = ACTIONS(4043), - [aux_sym__val_number_decimal_token2] = ACTIONS(4043), - [anon_sym_DOT2] = ACTIONS(4043), - [aux_sym__val_number_decimal_token3] = ACTIONS(4043), - [aux_sym__val_number_token1] = ACTIONS(4043), - [aux_sym__val_number_token2] = ACTIONS(4043), - [aux_sym__val_number_token3] = ACTIONS(4043), - [aux_sym__val_number_token4] = ACTIONS(4043), - [aux_sym__val_number_token5] = ACTIONS(4043), - [aux_sym__val_number_token6] = ACTIONS(4043), - [anon_sym_0b] = ACTIONS(4043), - [anon_sym_0o] = ACTIONS(4043), - [anon_sym_0x] = ACTIONS(4043), - [sym_val_date] = ACTIONS(4043), - [anon_sym_DQUOTE] = ACTIONS(4043), - [sym__str_single_quotes] = ACTIONS(4043), - [sym__str_back_ticks] = ACTIONS(4043), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4043), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4043), - [anon_sym_CARET] = ACTIONS(4043), - [anon_sym_POUND] = ACTIONS(113), + [2630] = { + [sym__expr_parenthesized_immediate] = STATE(2992), + [sym__immediate_decimal] = STATE(3032), + [sym_val_variable] = STATE(2992), + [sym__var] = STATE(2746), + [sym_comment] = STATE(2630), + [anon_sym_export] = ACTIONS(1838), + [anon_sym_alias] = ACTIONS(1838), + [anon_sym_let] = ACTIONS(1838), + [anon_sym_let_DASHenv] = ACTIONS(1838), + [anon_sym_mut] = ACTIONS(1838), + [anon_sym_const] = ACTIONS(1838), + [sym_cmd_identifier] = ACTIONS(1838), + [anon_sym_def] = ACTIONS(1838), + [anon_sym_export_DASHenv] = ACTIONS(1838), + [anon_sym_extern] = ACTIONS(1838), + [anon_sym_module] = ACTIONS(1838), + [anon_sym_use] = ACTIONS(1838), + [anon_sym_LPAREN] = ACTIONS(1838), + [anon_sym_DOLLAR] = ACTIONS(6580), + [anon_sym_error] = ACTIONS(1838), + [anon_sym_list] = ACTIONS(1838), + [anon_sym_DASH] = ACTIONS(1838), + [anon_sym_break] = ACTIONS(1838), + [anon_sym_continue] = ACTIONS(1838), + [anon_sym_for] = ACTIONS(1838), + [anon_sym_in] = ACTIONS(1838), + [anon_sym_loop] = ACTIONS(1838), + [anon_sym_make] = ACTIONS(1838), + [anon_sym_while] = ACTIONS(1838), + [anon_sym_do] = ACTIONS(1838), + [anon_sym_if] = ACTIONS(1838), + [anon_sym_else] = ACTIONS(1838), + [anon_sym_match] = ACTIONS(1838), + [anon_sym_RBRACE] = ACTIONS(1840), + [anon_sym_try] = ACTIONS(1838), + [anon_sym_catch] = ACTIONS(1838), + [anon_sym_return] = ACTIONS(1838), + [anon_sym_source] = ACTIONS(1838), + [anon_sym_source_DASHenv] = ACTIONS(1838), + [anon_sym_register] = ACTIONS(1838), + [anon_sym_hide] = ACTIONS(1838), + [anon_sym_hide_DASHenv] = ACTIONS(1838), + [anon_sym_overlay] = ACTIONS(1838), + [anon_sym_new] = ACTIONS(1838), + [anon_sym_as] = ACTIONS(1838), + [anon_sym_PLUS] = ACTIONS(1838), + [anon_sym_LPAREN2] = ACTIONS(6582), + [anon_sym_DOT] = ACTIONS(6604), + [aux_sym__immediate_decimal_token1] = ACTIONS(6586), + [aux_sym__immediate_decimal_token3] = ACTIONS(6588), + [aux_sym__immediate_decimal_token4] = ACTIONS(6590), + [aux_sym__val_number_decimal_token1] = ACTIONS(1838), + [aux_sym__val_number_decimal_token2] = ACTIONS(1838), + [anon_sym_DOT2] = ACTIONS(1838), + [aux_sym__val_number_decimal_token3] = ACTIONS(1838), + [aux_sym__val_number_token1] = ACTIONS(1840), + [aux_sym__val_number_token2] = ACTIONS(1840), + [aux_sym__val_number_token3] = ACTIONS(1840), + [aux_sym__val_number_token4] = ACTIONS(1838), + [aux_sym__val_number_token5] = ACTIONS(1840), + [aux_sym__val_number_token6] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1840), + [sym__str_single_quotes] = ACTIONS(1840), + [sym__str_back_ticks] = ACTIONS(1840), + [aux_sym__record_key_token2] = ACTIONS(1838), + [anon_sym_POUND] = ACTIONS(3), }, - [2474] = { - [sym_comment] = STATE(2474), - [ts_builtin_sym_end] = ACTIONS(5189), - [anon_sym_export] = ACTIONS(5187), - [anon_sym_alias] = ACTIONS(5187), - [anon_sym_let] = ACTIONS(5187), - [anon_sym_let_DASHenv] = ACTIONS(5187), - [anon_sym_mut] = ACTIONS(5187), - [anon_sym_const] = ACTIONS(5187), - [anon_sym_SEMI] = ACTIONS(5187), - [sym_cmd_identifier] = ACTIONS(5187), - [anon_sym_LF] = ACTIONS(5189), - [anon_sym_def] = ACTIONS(5187), - [anon_sym_export_DASHenv] = ACTIONS(5187), - [anon_sym_extern] = ACTIONS(5187), - [anon_sym_module] = ACTIONS(5187), - [anon_sym_use] = ACTIONS(5187), - [anon_sym_LBRACK] = ACTIONS(5187), - [anon_sym_LPAREN] = ACTIONS(5187), - [anon_sym_DOLLAR] = ACTIONS(5187), - [anon_sym_error] = ACTIONS(5187), - [anon_sym_DASH_DASH] = ACTIONS(5187), - [anon_sym_DASH] = ACTIONS(5187), - [anon_sym_break] = ACTIONS(5187), - [anon_sym_continue] = ACTIONS(5187), - [anon_sym_for] = ACTIONS(5187), - [anon_sym_loop] = ACTIONS(5187), - [anon_sym_while] = ACTIONS(5187), - [anon_sym_do] = ACTIONS(5187), - [anon_sym_if] = ACTIONS(5187), - [anon_sym_match] = ACTIONS(5187), - [anon_sym_LBRACE] = ACTIONS(5187), - [anon_sym_DOT_DOT] = ACTIONS(5187), - [anon_sym_try] = ACTIONS(5187), - [anon_sym_return] = ACTIONS(5187), - [anon_sym_source] = ACTIONS(5187), - [anon_sym_source_DASHenv] = ACTIONS(5187), - [anon_sym_register] = ACTIONS(5187), - [anon_sym_hide] = ACTIONS(5187), - [anon_sym_hide_DASHenv] = ACTIONS(5187), - [anon_sym_overlay] = ACTIONS(5187), - [anon_sym_as] = ACTIONS(5187), - [anon_sym_where] = ACTIONS(5187), - [anon_sym_not] = ACTIONS(5187), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5187), - [anon_sym_DOT_DOT_LT] = ACTIONS(5187), - [anon_sym_null] = ACTIONS(5187), - [anon_sym_true] = ACTIONS(5187), - [anon_sym_false] = ACTIONS(5187), - [aux_sym__val_number_decimal_token1] = ACTIONS(5187), - [aux_sym__val_number_decimal_token2] = ACTIONS(5187), - [anon_sym_DOT2] = ACTIONS(5187), - [aux_sym__val_number_decimal_token3] = ACTIONS(5187), - [aux_sym__val_number_token1] = ACTIONS(5187), - [aux_sym__val_number_token2] = ACTIONS(5187), - [aux_sym__val_number_token3] = ACTIONS(5187), - [aux_sym__val_number_token4] = ACTIONS(5187), - [aux_sym__val_number_token5] = ACTIONS(5187), - [aux_sym__val_number_token6] = ACTIONS(5187), - [anon_sym_0b] = ACTIONS(5187), - [anon_sym_0o] = ACTIONS(5187), - [anon_sym_0x] = ACTIONS(5187), - [sym_val_date] = ACTIONS(5187), - [anon_sym_DQUOTE] = ACTIONS(5187), - [sym__str_single_quotes] = ACTIONS(5187), - [sym__str_back_ticks] = ACTIONS(5187), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5187), - [anon_sym_CARET] = ACTIONS(5187), + [2631] = { + [sym__expr_parenthesized_immediate] = STATE(3137), + [sym__immediate_decimal] = STATE(3154), + [sym_val_variable] = STATE(3137), + [sym__var] = STATE(2820), + [sym_comment] = STATE(2631), + [anon_sym_export] = ACTIONS(1838), + [anon_sym_alias] = ACTIONS(1838), + [anon_sym_let] = ACTIONS(1838), + [anon_sym_let_DASHenv] = ACTIONS(1838), + [anon_sym_mut] = ACTIONS(1838), + [anon_sym_const] = ACTIONS(1838), + [sym_cmd_identifier] = ACTIONS(1838), + [anon_sym_def] = ACTIONS(1838), + [anon_sym_export_DASHenv] = ACTIONS(1838), + [anon_sym_extern] = ACTIONS(1838), + [anon_sym_module] = ACTIONS(1838), + [anon_sym_use] = ACTIONS(1838), + [anon_sym_LPAREN] = ACTIONS(1838), + [anon_sym_DOLLAR] = ACTIONS(5653), + [anon_sym_error] = ACTIONS(1838), + [anon_sym_list] = ACTIONS(1838), + [anon_sym_DASH] = ACTIONS(1838), + [anon_sym_break] = ACTIONS(1838), + [anon_sym_continue] = ACTIONS(1838), + [anon_sym_for] = ACTIONS(1838), + [anon_sym_in] = ACTIONS(1838), + [anon_sym_loop] = ACTIONS(1838), + [anon_sym_make] = ACTIONS(1838), + [anon_sym_while] = ACTIONS(1838), + [anon_sym_do] = ACTIONS(1838), + [anon_sym_if] = ACTIONS(1838), + [anon_sym_else] = ACTIONS(1838), + [anon_sym_match] = ACTIONS(1838), + [anon_sym_RBRACE] = ACTIONS(1840), + [anon_sym_try] = ACTIONS(1838), + [anon_sym_catch] = ACTIONS(1838), + [anon_sym_return] = ACTIONS(1838), + [anon_sym_source] = ACTIONS(1838), + [anon_sym_source_DASHenv] = ACTIONS(1838), + [anon_sym_register] = ACTIONS(1838), + [anon_sym_hide] = ACTIONS(1838), + [anon_sym_hide_DASHenv] = ACTIONS(1838), + [anon_sym_overlay] = ACTIONS(1838), + [anon_sym_new] = ACTIONS(1838), + [anon_sym_as] = ACTIONS(1838), + [anon_sym_PLUS] = ACTIONS(1838), + [anon_sym_LPAREN2] = ACTIONS(6467), + [anon_sym_DOT] = ACTIONS(6469), + [aux_sym__immediate_decimal_token1] = ACTIONS(6471), + [aux_sym__immediate_decimal_token3] = ACTIONS(6473), + [aux_sym__immediate_decimal_token4] = ACTIONS(6475), + [aux_sym__val_number_decimal_token1] = ACTIONS(1838), + [aux_sym__val_number_decimal_token2] = ACTIONS(1838), + [anon_sym_DOT2] = ACTIONS(1838), + [aux_sym__val_number_decimal_token3] = ACTIONS(1838), + [aux_sym__val_number_token1] = ACTIONS(1840), + [aux_sym__val_number_token2] = ACTIONS(1840), + [aux_sym__val_number_token3] = ACTIONS(1840), + [aux_sym__val_number_token4] = ACTIONS(1838), + [aux_sym__val_number_token5] = ACTIONS(1840), + [aux_sym__val_number_token6] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1840), + [sym__str_single_quotes] = ACTIONS(1840), + [sym__str_back_ticks] = ACTIONS(1840), + [aux_sym__record_key_token2] = ACTIONS(1838), + [anon_sym_POUND] = ACTIONS(3), + }, + [2632] = { + [sym__expr_parenthesized_immediate] = STATE(3148), + [sym__immediate_decimal] = STATE(3155), + [sym_val_variable] = STATE(3148), + [sym__var] = STATE(2820), + [sym_comment] = STATE(2632), + [anon_sym_export] = ACTIONS(1882), + [anon_sym_alias] = ACTIONS(1882), + [anon_sym_let] = ACTIONS(1882), + [anon_sym_let_DASHenv] = ACTIONS(1882), + [anon_sym_mut] = ACTIONS(1882), + [anon_sym_const] = ACTIONS(1882), + [sym_cmd_identifier] = ACTIONS(1882), + [anon_sym_def] = ACTIONS(1882), + [anon_sym_export_DASHenv] = ACTIONS(1882), + [anon_sym_extern] = ACTIONS(1882), + [anon_sym_module] = ACTIONS(1882), + [anon_sym_use] = ACTIONS(1882), + [anon_sym_LPAREN] = ACTIONS(1882), + [anon_sym_DOLLAR] = ACTIONS(5653), + [anon_sym_error] = ACTIONS(1882), + [anon_sym_list] = ACTIONS(1882), + [anon_sym_DASH] = ACTIONS(1882), + [anon_sym_break] = ACTIONS(1882), + [anon_sym_continue] = ACTIONS(1882), + [anon_sym_for] = ACTIONS(1882), + [anon_sym_in] = ACTIONS(1882), + [anon_sym_loop] = ACTIONS(1882), + [anon_sym_make] = ACTIONS(1882), + [anon_sym_while] = ACTIONS(1882), + [anon_sym_do] = ACTIONS(1882), + [anon_sym_if] = ACTIONS(1882), + [anon_sym_else] = ACTIONS(1882), + [anon_sym_match] = ACTIONS(1882), + [anon_sym_RBRACE] = ACTIONS(1884), + [anon_sym_try] = ACTIONS(1882), + [anon_sym_catch] = ACTIONS(1882), + [anon_sym_return] = ACTIONS(1882), + [anon_sym_source] = ACTIONS(1882), + [anon_sym_source_DASHenv] = ACTIONS(1882), + [anon_sym_register] = ACTIONS(1882), + [anon_sym_hide] = ACTIONS(1882), + [anon_sym_hide_DASHenv] = ACTIONS(1882), + [anon_sym_overlay] = ACTIONS(1882), + [anon_sym_new] = ACTIONS(1882), + [anon_sym_as] = ACTIONS(1882), + [anon_sym_PLUS] = ACTIONS(1882), + [anon_sym_LPAREN2] = ACTIONS(6467), + [anon_sym_DOT] = ACTIONS(6469), + [aux_sym__immediate_decimal_token1] = ACTIONS(6471), + [aux_sym__immediate_decimal_token3] = ACTIONS(6473), + [aux_sym__immediate_decimal_token4] = ACTIONS(6475), + [aux_sym__val_number_decimal_token1] = ACTIONS(1882), + [aux_sym__val_number_decimal_token2] = ACTIONS(1882), + [anon_sym_DOT2] = ACTIONS(1882), + [aux_sym__val_number_decimal_token3] = ACTIONS(1882), + [aux_sym__val_number_token1] = ACTIONS(1884), + [aux_sym__val_number_token2] = ACTIONS(1884), + [aux_sym__val_number_token3] = ACTIONS(1884), + [aux_sym__val_number_token4] = ACTIONS(1882), + [aux_sym__val_number_token5] = ACTIONS(1884), + [aux_sym__val_number_token6] = ACTIONS(1882), + [anon_sym_DQUOTE] = ACTIONS(1884), + [sym__str_single_quotes] = ACTIONS(1884), + [sym__str_back_ticks] = ACTIONS(1884), + [aux_sym__record_key_token2] = ACTIONS(1882), + [anon_sym_POUND] = ACTIONS(3), + }, + [2633] = { + [sym_comment] = STATE(2633), + [anon_sym_SEMI] = ACTIONS(1179), + [anon_sym_LF] = ACTIONS(1181), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_RPAREN] = ACTIONS(1179), + [anon_sym_PIPE] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(6447), + [anon_sym_STAR_STAR] = ACTIONS(6449), + [anon_sym_PLUS_PLUS] = ACTIONS(6449), + [anon_sym_SLASH] = ACTIONS(6447), + [anon_sym_mod] = ACTIONS(6447), + [anon_sym_SLASH_SLASH] = ACTIONS(6447), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_bit_DASHshl] = ACTIONS(1179), + [anon_sym_bit_DASHshr] = ACTIONS(1179), + [anon_sym_EQ_EQ] = ACTIONS(1179), + [anon_sym_BANG_EQ] = ACTIONS(1179), + [anon_sym_LT2] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1179), + [anon_sym_GT_EQ] = ACTIONS(1179), + [anon_sym_not_DASHin] = ACTIONS(1179), + [anon_sym_starts_DASHwith] = ACTIONS(1179), + [anon_sym_ends_DASHwith] = ACTIONS(1179), + [anon_sym_EQ_TILDE] = ACTIONS(1179), + [anon_sym_BANG_TILDE] = ACTIONS(1179), + [anon_sym_bit_DASHand] = ACTIONS(1179), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_not] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1179), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, - [2475] = { - [sym_comment] = STATE(2475), - [ts_builtin_sym_end] = ACTIONS(5193), - [anon_sym_export] = ACTIONS(5191), - [anon_sym_alias] = ACTIONS(5191), - [anon_sym_let] = ACTIONS(5191), - [anon_sym_let_DASHenv] = ACTIONS(5191), - [anon_sym_mut] = ACTIONS(5191), - [anon_sym_const] = ACTIONS(5191), - [anon_sym_SEMI] = ACTIONS(5191), - [sym_cmd_identifier] = ACTIONS(5191), - [anon_sym_LF] = ACTIONS(5193), - [anon_sym_def] = ACTIONS(5191), - [anon_sym_export_DASHenv] = ACTIONS(5191), - [anon_sym_extern] = ACTIONS(5191), - [anon_sym_module] = ACTIONS(5191), - [anon_sym_use] = ACTIONS(5191), - [anon_sym_LBRACK] = ACTIONS(5191), - [anon_sym_LPAREN] = ACTIONS(5191), - [anon_sym_DOLLAR] = ACTIONS(5191), - [anon_sym_error] = ACTIONS(5191), - [anon_sym_DASH_DASH] = ACTIONS(5191), - [anon_sym_DASH] = ACTIONS(5191), - [anon_sym_break] = ACTIONS(5191), - [anon_sym_continue] = ACTIONS(5191), - [anon_sym_for] = ACTIONS(5191), - [anon_sym_loop] = ACTIONS(5191), - [anon_sym_while] = ACTIONS(5191), - [anon_sym_do] = ACTIONS(5191), - [anon_sym_if] = ACTIONS(5191), - [anon_sym_match] = ACTIONS(5191), - [anon_sym_LBRACE] = ACTIONS(5191), - [anon_sym_DOT_DOT] = ACTIONS(5191), - [anon_sym_try] = ACTIONS(5191), - [anon_sym_return] = ACTIONS(5191), - [anon_sym_source] = ACTIONS(5191), - [anon_sym_source_DASHenv] = ACTIONS(5191), - [anon_sym_register] = ACTIONS(5191), - [anon_sym_hide] = ACTIONS(5191), - [anon_sym_hide_DASHenv] = ACTIONS(5191), - [anon_sym_overlay] = ACTIONS(5191), - [anon_sym_as] = ACTIONS(5191), - [anon_sym_where] = ACTIONS(5191), - [anon_sym_not] = ACTIONS(5191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5191), - [anon_sym_DOT_DOT_LT] = ACTIONS(5191), - [anon_sym_null] = ACTIONS(5191), - [anon_sym_true] = ACTIONS(5191), - [anon_sym_false] = ACTIONS(5191), - [aux_sym__val_number_decimal_token1] = ACTIONS(5191), - [aux_sym__val_number_decimal_token2] = ACTIONS(5191), - [anon_sym_DOT2] = ACTIONS(5191), - [aux_sym__val_number_decimal_token3] = ACTIONS(5191), - [aux_sym__val_number_token1] = ACTIONS(5191), - [aux_sym__val_number_token2] = ACTIONS(5191), - [aux_sym__val_number_token3] = ACTIONS(5191), - [aux_sym__val_number_token4] = ACTIONS(5191), - [aux_sym__val_number_token5] = ACTIONS(5191), - [aux_sym__val_number_token6] = ACTIONS(5191), - [anon_sym_0b] = ACTIONS(5191), - [anon_sym_0o] = ACTIONS(5191), - [anon_sym_0x] = ACTIONS(5191), - [sym_val_date] = ACTIONS(5191), - [anon_sym_DQUOTE] = ACTIONS(5191), - [sym__str_single_quotes] = ACTIONS(5191), - [sym__str_back_ticks] = ACTIONS(5191), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5191), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5191), - [anon_sym_CARET] = ACTIONS(5191), + [2634] = { + [sym_ctrl_if] = STATE(9252), + [sym_block] = STATE(9265), + [sym__expression] = STATE(9265), + [sym_expr_unary] = STATE(5890), + [sym__expr_unary_minus] = STATE(5878), + [sym_expr_binary] = STATE(5890), + [sym__expr_binary_expression] = STATE(6380), + [sym_expr_parenthesized] = STATE(5154), + [sym_val_range] = STATE(8295), + [sym__value] = STATE(5890), + [sym_val_nothing] = STATE(5931), + [sym_val_bool] = STATE(5931), + [sym_val_variable] = STATE(5103), + [sym__var] = STATE(4428), + [sym_val_number] = STATE(5931), + [sym__val_number_decimal] = STATE(4371), + [sym__val_number] = STATE(5285), + [sym_val_duration] = STATE(5931), + [sym_val_filesize] = STATE(5931), + [sym_val_binary] = STATE(5931), + [sym_val_string] = STATE(5931), + [sym__str_double_quotes] = STATE(5888), + [sym_val_interpolated] = STATE(5931), + [sym__inter_single_quotes] = STATE(5935), + [sym__inter_double_quotes] = STATE(5940), + [sym_val_list] = STATE(5931), + [sym_val_record] = STATE(5931), + [sym_val_table] = STATE(5931), + [sym_val_closure] = STATE(5931), + [sym_command] = STATE(9265), + [sym_comment] = STATE(2634), + [sym_cmd_identifier] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(1528), + [anon_sym_DASH] = ACTIONS(39), + [anon_sym_if] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(6606), + [anon_sym_DOT_DOT] = ACTIONS(59), + [anon_sym_not] = ACTIONS(77), + [anon_sym_DOT_DOT_EQ] = ACTIONS(79), + [anon_sym_DOT_DOT_LT] = ACTIONS(79), + [anon_sym_null] = ACTIONS(81), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [aux_sym__val_number_decimal_token1] = ACTIONS(85), + [aux_sym__val_number_decimal_token2] = ACTIONS(87), + [anon_sym_DOT2] = ACTIONS(89), + [aux_sym__val_number_decimal_token3] = ACTIONS(91), + [aux_sym__val_number_token1] = ACTIONS(93), + [aux_sym__val_number_token2] = ACTIONS(93), + [aux_sym__val_number_token3] = ACTIONS(93), + [aux_sym__val_number_token4] = ACTIONS(95), + [aux_sym__val_number_token5] = ACTIONS(93), + [aux_sym__val_number_token6] = ACTIONS(95), + [anon_sym_0b] = ACTIONS(97), + [anon_sym_0o] = ACTIONS(99), + [anon_sym_0x] = ACTIONS(99), + [sym_val_date] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym__str_single_quotes] = ACTIONS(105), + [sym__str_back_ticks] = ACTIONS(105), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(109), + [anon_sym_CARET] = ACTIONS(111), + [anon_sym_POUND] = ACTIONS(3), + }, + [2635] = { + [sym_comment] = STATE(2635), + [anon_sym_SEMI] = ACTIONS(1179), + [anon_sym_LF] = ACTIONS(1181), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_RPAREN] = ACTIONS(1179), + [anon_sym_PIPE] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1179), + [anon_sym_STAR_STAR] = ACTIONS(6449), + [anon_sym_PLUS_PLUS] = ACTIONS(6449), + [anon_sym_SLASH] = ACTIONS(1179), + [anon_sym_mod] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_bit_DASHshl] = ACTIONS(1179), + [anon_sym_bit_DASHshr] = ACTIONS(1179), + [anon_sym_EQ_EQ] = ACTIONS(1179), + [anon_sym_BANG_EQ] = ACTIONS(1179), + [anon_sym_LT2] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1179), + [anon_sym_GT_EQ] = ACTIONS(1179), + [anon_sym_not_DASHin] = ACTIONS(1179), + [anon_sym_starts_DASHwith] = ACTIONS(1179), + [anon_sym_ends_DASHwith] = ACTIONS(1179), + [anon_sym_EQ_TILDE] = ACTIONS(1179), + [anon_sym_BANG_TILDE] = ACTIONS(1179), + [anon_sym_bit_DASHand] = ACTIONS(1179), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_not] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1179), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, - [2476] = { - [sym_comment] = STATE(2476), - [ts_builtin_sym_end] = ACTIONS(5197), - [anon_sym_export] = ACTIONS(5195), - [anon_sym_alias] = ACTIONS(5195), - [anon_sym_let] = ACTIONS(5195), - [anon_sym_let_DASHenv] = ACTIONS(5195), - [anon_sym_mut] = ACTIONS(5195), - [anon_sym_const] = ACTIONS(5195), - [anon_sym_SEMI] = ACTIONS(5195), - [sym_cmd_identifier] = ACTIONS(5195), - [anon_sym_LF] = ACTIONS(5197), - [anon_sym_def] = ACTIONS(5195), - [anon_sym_export_DASHenv] = ACTIONS(5195), - [anon_sym_extern] = ACTIONS(5195), - [anon_sym_module] = ACTIONS(5195), - [anon_sym_use] = ACTIONS(5195), - [anon_sym_LBRACK] = ACTIONS(5195), - [anon_sym_LPAREN] = ACTIONS(5195), - [anon_sym_DOLLAR] = ACTIONS(5195), - [anon_sym_error] = ACTIONS(5195), - [anon_sym_DASH_DASH] = ACTIONS(5195), - [anon_sym_DASH] = ACTIONS(5195), - [anon_sym_break] = ACTIONS(5195), - [anon_sym_continue] = ACTIONS(5195), - [anon_sym_for] = ACTIONS(5195), - [anon_sym_loop] = ACTIONS(5195), - [anon_sym_while] = ACTIONS(5195), - [anon_sym_do] = ACTIONS(5195), - [anon_sym_if] = ACTIONS(5195), - [anon_sym_match] = ACTIONS(5195), - [anon_sym_LBRACE] = ACTIONS(5195), - [anon_sym_DOT_DOT] = ACTIONS(5195), - [anon_sym_try] = ACTIONS(5195), - [anon_sym_return] = ACTIONS(5195), - [anon_sym_source] = ACTIONS(5195), - [anon_sym_source_DASHenv] = ACTIONS(5195), - [anon_sym_register] = ACTIONS(5195), - [anon_sym_hide] = ACTIONS(5195), - [anon_sym_hide_DASHenv] = ACTIONS(5195), - [anon_sym_overlay] = ACTIONS(5195), - [anon_sym_as] = ACTIONS(5195), - [anon_sym_where] = ACTIONS(5195), - [anon_sym_not] = ACTIONS(5195), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5195), - [anon_sym_DOT_DOT_LT] = ACTIONS(5195), - [anon_sym_null] = ACTIONS(5195), - [anon_sym_true] = ACTIONS(5195), - [anon_sym_false] = ACTIONS(5195), - [aux_sym__val_number_decimal_token1] = ACTIONS(5195), - [aux_sym__val_number_decimal_token2] = ACTIONS(5195), - [anon_sym_DOT2] = ACTIONS(5195), - [aux_sym__val_number_decimal_token3] = ACTIONS(5195), - [aux_sym__val_number_token1] = ACTIONS(5195), - [aux_sym__val_number_token2] = ACTIONS(5195), - [aux_sym__val_number_token3] = ACTIONS(5195), - [aux_sym__val_number_token4] = ACTIONS(5195), - [aux_sym__val_number_token5] = ACTIONS(5195), - [aux_sym__val_number_token6] = ACTIONS(5195), - [anon_sym_0b] = ACTIONS(5195), - [anon_sym_0o] = ACTIONS(5195), - [anon_sym_0x] = ACTIONS(5195), - [sym_val_date] = ACTIONS(5195), - [anon_sym_DQUOTE] = ACTIONS(5195), - [sym__str_single_quotes] = ACTIONS(5195), - [sym__str_back_ticks] = ACTIONS(5195), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5195), - [anon_sym_CARET] = ACTIONS(5195), + [2636] = { + [sym_comment] = STATE(2636), + [anon_sym_SEMI] = ACTIONS(1179), + [anon_sym_LF] = ACTIONS(1181), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_RPAREN] = ACTIONS(1179), + [anon_sym_PIPE] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(6443), + [anon_sym_in] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(6447), + [anon_sym_STAR_STAR] = ACTIONS(6449), + [anon_sym_PLUS_PLUS] = ACTIONS(6449), + [anon_sym_SLASH] = ACTIONS(6447), + [anon_sym_mod] = ACTIONS(6447), + [anon_sym_SLASH_SLASH] = ACTIONS(6447), + [anon_sym_PLUS] = ACTIONS(6443), + [anon_sym_bit_DASHshl] = ACTIONS(6451), + [anon_sym_bit_DASHshr] = ACTIONS(6451), + [anon_sym_EQ_EQ] = ACTIONS(1179), + [anon_sym_BANG_EQ] = ACTIONS(1179), + [anon_sym_LT2] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1179), + [anon_sym_GT_EQ] = ACTIONS(1179), + [anon_sym_not_DASHin] = ACTIONS(1179), + [anon_sym_starts_DASHwith] = ACTIONS(1179), + [anon_sym_ends_DASHwith] = ACTIONS(1179), + [anon_sym_EQ_TILDE] = ACTIONS(1179), + [anon_sym_BANG_TILDE] = ACTIONS(1179), + [anon_sym_bit_DASHand] = ACTIONS(1179), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_not] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1179), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, - [2477] = { - [sym_comment] = STATE(2477), - [ts_builtin_sym_end] = ACTIONS(5217), - [anon_sym_export] = ACTIONS(5215), - [anon_sym_alias] = ACTIONS(5215), - [anon_sym_let] = ACTIONS(5215), - [anon_sym_let_DASHenv] = ACTIONS(5215), - [anon_sym_mut] = ACTIONS(5215), - [anon_sym_const] = ACTIONS(5215), - [anon_sym_SEMI] = ACTIONS(5215), - [sym_cmd_identifier] = ACTIONS(5215), - [anon_sym_LF] = ACTIONS(5217), - [anon_sym_def] = ACTIONS(5215), - [anon_sym_export_DASHenv] = ACTIONS(5215), - [anon_sym_extern] = ACTIONS(5215), - [anon_sym_module] = ACTIONS(5215), - [anon_sym_use] = ACTIONS(5215), - [anon_sym_LBRACK] = ACTIONS(5215), - [anon_sym_LPAREN] = ACTIONS(5215), - [anon_sym_DOLLAR] = ACTIONS(5215), - [anon_sym_error] = ACTIONS(5215), - [anon_sym_DASH_DASH] = ACTIONS(5215), - [anon_sym_DASH] = ACTIONS(5215), - [anon_sym_break] = ACTIONS(5215), - [anon_sym_continue] = ACTIONS(5215), - [anon_sym_for] = ACTIONS(5215), - [anon_sym_loop] = ACTIONS(5215), - [anon_sym_while] = ACTIONS(5215), - [anon_sym_do] = ACTIONS(5215), - [anon_sym_if] = ACTIONS(5215), - [anon_sym_match] = ACTIONS(5215), - [anon_sym_LBRACE] = ACTIONS(5215), - [anon_sym_DOT_DOT] = ACTIONS(5215), - [anon_sym_try] = ACTIONS(5215), - [anon_sym_return] = ACTIONS(5215), - [anon_sym_source] = ACTIONS(5215), - [anon_sym_source_DASHenv] = ACTIONS(5215), - [anon_sym_register] = ACTIONS(5215), - [anon_sym_hide] = ACTIONS(5215), - [anon_sym_hide_DASHenv] = ACTIONS(5215), - [anon_sym_overlay] = ACTIONS(5215), - [anon_sym_as] = ACTIONS(5215), - [anon_sym_where] = ACTIONS(5215), - [anon_sym_not] = ACTIONS(5215), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5215), - [anon_sym_DOT_DOT_LT] = ACTIONS(5215), - [anon_sym_null] = ACTIONS(5215), - [anon_sym_true] = ACTIONS(5215), - [anon_sym_false] = ACTIONS(5215), - [aux_sym__val_number_decimal_token1] = ACTIONS(5215), - [aux_sym__val_number_decimal_token2] = ACTIONS(5215), - [anon_sym_DOT2] = ACTIONS(5215), - [aux_sym__val_number_decimal_token3] = ACTIONS(5215), - [aux_sym__val_number_token1] = ACTIONS(5215), - [aux_sym__val_number_token2] = ACTIONS(5215), - [aux_sym__val_number_token3] = ACTIONS(5215), - [aux_sym__val_number_token4] = ACTIONS(5215), - [aux_sym__val_number_token5] = ACTIONS(5215), - [aux_sym__val_number_token6] = ACTIONS(5215), - [anon_sym_0b] = ACTIONS(5215), - [anon_sym_0o] = ACTIONS(5215), - [anon_sym_0x] = ACTIONS(5215), - [sym_val_date] = ACTIONS(5215), - [anon_sym_DQUOTE] = ACTIONS(5215), - [sym__str_single_quotes] = ACTIONS(5215), - [sym__str_back_ticks] = ACTIONS(5215), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5215), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5215), - [anon_sym_CARET] = ACTIONS(5215), + [2637] = { + [sym_comment] = STATE(2637), + [anon_sym_SEMI] = ACTIONS(1179), + [anon_sym_LF] = ACTIONS(1181), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_RPAREN] = ACTIONS(1179), + [anon_sym_PIPE] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(6441), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(6443), + [anon_sym_in] = ACTIONS(6445), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(6447), + [anon_sym_STAR_STAR] = ACTIONS(6449), + [anon_sym_PLUS_PLUS] = ACTIONS(6449), + [anon_sym_SLASH] = ACTIONS(6447), + [anon_sym_mod] = ACTIONS(6447), + [anon_sym_SLASH_SLASH] = ACTIONS(6447), + [anon_sym_PLUS] = ACTIONS(6443), + [anon_sym_bit_DASHshl] = ACTIONS(6451), + [anon_sym_bit_DASHshr] = ACTIONS(6451), + [anon_sym_EQ_EQ] = ACTIONS(6441), + [anon_sym_BANG_EQ] = ACTIONS(6441), + [anon_sym_LT2] = ACTIONS(6441), + [anon_sym_LT_EQ] = ACTIONS(6441), + [anon_sym_GT_EQ] = ACTIONS(6441), + [anon_sym_not_DASHin] = ACTIONS(6445), + [anon_sym_starts_DASHwith] = ACTIONS(6445), + [anon_sym_ends_DASHwith] = ACTIONS(6445), + [anon_sym_EQ_TILDE] = ACTIONS(6453), + [anon_sym_BANG_TILDE] = ACTIONS(6453), + [anon_sym_bit_DASHand] = ACTIONS(1179), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_not] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1179), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, - [2478] = { - [sym_comment] = STATE(2478), + [2638] = { + [sym_comment] = STATE(2638), + [ts_builtin_sym_end] = ACTIONS(940), + [anon_sym_SEMI] = ACTIONS(938), + [anon_sym_LF] = ACTIONS(940), [anon_sym_LBRACK] = ACTIONS(938), - [anon_sym_COMMA] = ACTIONS(938), [anon_sym_LPAREN] = ACTIONS(938), + [anon_sym_PIPE] = ACTIONS(938), [anon_sym_DOLLAR] = ACTIONS(938), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_in] = ACTIONS(938), [anon_sym_LBRACE] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(938), - [anon_sym__] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), [anon_sym_STAR_STAR] = ACTIONS(938), [anon_sym_PLUS_PLUS] = ACTIONS(938), - [anon_sym_SLASH] = ACTIONS(936), + [anon_sym_SLASH] = ACTIONS(938), [anon_sym_mod] = ACTIONS(938), [anon_sym_SLASH_SLASH] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(936), + [anon_sym_PLUS] = ACTIONS(938), [anon_sym_bit_DASHshl] = ACTIONS(938), [anon_sym_bit_DASHshr] = ACTIONS(938), [anon_sym_EQ_EQ] = ACTIONS(938), [anon_sym_BANG_EQ] = ACTIONS(938), - [anon_sym_LT2] = ACTIONS(936), + [anon_sym_LT2] = ACTIONS(938), [anon_sym_LT_EQ] = ACTIONS(938), [anon_sym_GT_EQ] = ACTIONS(938), [anon_sym_not_DASHin] = ACTIONS(938), @@ -305162,14 +305287,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(938), [anon_sym_xor] = ACTIONS(938), [anon_sym_or] = ACTIONS(938), + [anon_sym_not] = ACTIONS(938), [anon_sym_DOT_DOT_EQ] = ACTIONS(938), [anon_sym_DOT_DOT_LT] = ACTIONS(938), [anon_sym_null] = ACTIONS(938), [anon_sym_true] = ACTIONS(938), [anon_sym_false] = ACTIONS(938), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), [aux_sym__val_number_decimal_token2] = ACTIONS(938), - [anon_sym_DOT2] = ACTIONS(936), + [anon_sym_DOT2] = ACTIONS(938), [aux_sym__val_number_decimal_token3] = ACTIONS(938), [aux_sym__val_number_token1] = ACTIONS(938), [aux_sym__val_number_token2] = ACTIONS(938), @@ -305177,2037 +305303,1386 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token4] = ACTIONS(938), [aux_sym__val_number_token5] = ACTIONS(938), [aux_sym__val_number_token6] = ACTIONS(938), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), + [anon_sym_0b] = ACTIONS(938), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), [sym_val_date] = ACTIONS(938), [anon_sym_DQUOTE] = ACTIONS(938), [sym__str_single_quotes] = ACTIONS(938), [sym__str_back_ticks] = ACTIONS(938), - [anon_sym_err_GT] = ACTIONS(938), - [anon_sym_out_GT] = ACTIONS(938), - [anon_sym_e_GT] = ACTIONS(938), - [anon_sym_o_GT] = ACTIONS(938), - [anon_sym_err_PLUSout_GT] = ACTIONS(938), - [anon_sym_out_PLUSerr_GT] = ACTIONS(938), - [anon_sym_o_PLUSe_GT] = ACTIONS(938), - [anon_sym_e_PLUSo_GT] = ACTIONS(938), - [aux_sym_unquoted_token1] = ACTIONS(936), - [anon_sym_POUND] = ACTIONS(3), - }, - [2479] = { - [sym_comment] = STATE(2479), - [anon_sym_LBRACK] = ACTIONS(1290), - [anon_sym_COMMA] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(1290), - [anon_sym_DOLLAR] = ACTIONS(1290), - [anon_sym_GT] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_in] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1290), - [anon_sym_RBRACE] = ACTIONS(1290), - [anon_sym__] = ACTIONS(1243), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1243), - [anon_sym_STAR_STAR] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1290), - [anon_sym_SLASH] = ACTIONS(1243), - [anon_sym_mod] = ACTIONS(1290), - [anon_sym_SLASH_SLASH] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1243), - [anon_sym_bit_DASHshl] = ACTIONS(1290), - [anon_sym_bit_DASHshr] = ACTIONS(1290), - [anon_sym_EQ_EQ] = ACTIONS(1290), - [anon_sym_BANG_EQ] = ACTIONS(1290), - [anon_sym_LT2] = ACTIONS(1243), - [anon_sym_LT_EQ] = ACTIONS(1290), - [anon_sym_GT_EQ] = ACTIONS(1290), - [anon_sym_not_DASHin] = ACTIONS(1290), - [anon_sym_starts_DASHwith] = ACTIONS(1290), - [anon_sym_ends_DASHwith] = ACTIONS(1290), - [anon_sym_EQ_TILDE] = ACTIONS(1290), - [anon_sym_BANG_TILDE] = ACTIONS(1290), - [anon_sym_bit_DASHand] = ACTIONS(1290), - [anon_sym_bit_DASHxor] = ACTIONS(1290), - [anon_sym_bit_DASHor] = ACTIONS(1290), - [anon_sym_and] = ACTIONS(1290), - [anon_sym_xor] = ACTIONS(1290), - [anon_sym_or] = ACTIONS(1290), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1290), - [anon_sym_DOT_DOT_LT] = ACTIONS(1290), - [anon_sym_null] = ACTIONS(1290), - [anon_sym_true] = ACTIONS(1290), - [anon_sym_false] = ACTIONS(1290), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_decimal_token2] = ACTIONS(1290), - [anon_sym_DOT2] = ACTIONS(1243), - [aux_sym__val_number_decimal_token3] = ACTIONS(1290), - [aux_sym__val_number_token1] = ACTIONS(1290), - [aux_sym__val_number_token2] = ACTIONS(1290), - [aux_sym__val_number_token3] = ACTIONS(1290), - [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(1243), - [anon_sym_0o] = ACTIONS(1243), - [anon_sym_0x] = ACTIONS(1243), - [sym_val_date] = ACTIONS(1290), - [anon_sym_DQUOTE] = ACTIONS(1290), - [sym__str_single_quotes] = ACTIONS(1290), - [sym__str_back_ticks] = ACTIONS(1290), - [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), - [aux_sym_unquoted_token1] = ACTIONS(1243), - [anon_sym_POUND] = ACTIONS(3), - }, - [2480] = { - [sym_comment] = STATE(2480), - [anon_sym_LBRACK] = ACTIONS(1416), - [anon_sym_COMMA] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1416), - [anon_sym_DOLLAR] = ACTIONS(1416), - [anon_sym_GT] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_in] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1416), - [anon_sym_RBRACE] = ACTIONS(1416), - [anon_sym__] = ACTIONS(1414), - [anon_sym_DOT_DOT] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_STAR_STAR] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(1414), - [anon_sym_mod] = ACTIONS(1416), - [anon_sym_SLASH_SLASH] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_bit_DASHshl] = ACTIONS(1416), - [anon_sym_bit_DASHshr] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1416), - [anon_sym_BANG_EQ] = ACTIONS(1416), - [anon_sym_LT2] = ACTIONS(1414), - [anon_sym_LT_EQ] = ACTIONS(1416), - [anon_sym_GT_EQ] = ACTIONS(1416), - [anon_sym_not_DASHin] = ACTIONS(1416), - [anon_sym_starts_DASHwith] = ACTIONS(1416), - [anon_sym_ends_DASHwith] = ACTIONS(1416), - [anon_sym_EQ_TILDE] = ACTIONS(1416), - [anon_sym_BANG_TILDE] = ACTIONS(1416), - [anon_sym_bit_DASHand] = ACTIONS(1416), - [anon_sym_bit_DASHxor] = ACTIONS(1416), - [anon_sym_bit_DASHor] = ACTIONS(1416), - [anon_sym_and] = ACTIONS(1416), - [anon_sym_xor] = ACTIONS(1416), - [anon_sym_or] = ACTIONS(1416), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1416), - [anon_sym_DOT_DOT_LT] = ACTIONS(1416), - [anon_sym_null] = ACTIONS(1416), - [anon_sym_true] = ACTIONS(1416), - [anon_sym_false] = ACTIONS(1416), - [aux_sym__val_number_decimal_token1] = ACTIONS(1414), - [aux_sym__val_number_decimal_token2] = ACTIONS(1416), - [anon_sym_DOT2] = ACTIONS(1414), - [aux_sym__val_number_decimal_token3] = ACTIONS(1416), - [aux_sym__val_number_token1] = ACTIONS(1416), - [aux_sym__val_number_token2] = ACTIONS(1416), - [aux_sym__val_number_token3] = ACTIONS(1416), - [aux_sym__val_number_token4] = ACTIONS(1416), - [aux_sym__val_number_token5] = ACTIONS(1416), - [aux_sym__val_number_token6] = ACTIONS(1416), - [anon_sym_0b] = ACTIONS(1414), - [anon_sym_0o] = ACTIONS(1414), - [anon_sym_0x] = ACTIONS(1414), - [sym_val_date] = ACTIONS(1416), - [anon_sym_DQUOTE] = ACTIONS(1416), - [sym__str_single_quotes] = ACTIONS(1416), - [sym__str_back_ticks] = ACTIONS(1416), - [anon_sym_err_GT] = ACTIONS(1416), - [anon_sym_out_GT] = ACTIONS(1416), - [anon_sym_e_GT] = ACTIONS(1416), - [anon_sym_o_GT] = ACTIONS(1416), - [anon_sym_err_PLUSout_GT] = ACTIONS(1416), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1416), - [anon_sym_o_PLUSe_GT] = ACTIONS(1416), - [anon_sym_e_PLUSo_GT] = ACTIONS(1416), - [aux_sym_unquoted_token1] = ACTIONS(1414), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(938), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(938), + [aux_sym_unquoted_token5] = ACTIONS(3839), + [anon_sym_POUND] = ACTIONS(113), }, - [2481] = { - [sym_comment] = STATE(2481), - [anon_sym_SEMI] = ACTIONS(1172), - [anon_sym_LF] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_LPAREN] = ACTIONS(1172), - [anon_sym_RPAREN] = ACTIONS(1172), - [anon_sym_PIPE] = ACTIONS(1172), - [anon_sym_DOLLAR] = ACTIONS(1172), - [anon_sym_GT] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_DASH] = ACTIONS(1172), - [anon_sym_in] = ACTIONS(1172), - [anon_sym_LBRACE] = ACTIONS(1172), - [anon_sym_RBRACE] = ACTIONS(1172), - [anon_sym_DOT_DOT] = ACTIONS(1172), - [anon_sym_STAR] = ACTIONS(1172), - [anon_sym_STAR_STAR] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_SLASH] = ACTIONS(1172), - [anon_sym_mod] = ACTIONS(1172), - [anon_sym_SLASH_SLASH] = ACTIONS(1172), - [anon_sym_PLUS] = ACTIONS(1172), - [anon_sym_bit_DASHshl] = ACTIONS(1172), - [anon_sym_bit_DASHshr] = ACTIONS(1172), - [anon_sym_EQ_EQ] = ACTIONS(1172), - [anon_sym_BANG_EQ] = ACTIONS(1172), - [anon_sym_LT2] = ACTIONS(1172), - [anon_sym_LT_EQ] = ACTIONS(1172), - [anon_sym_GT_EQ] = ACTIONS(1172), - [anon_sym_not_DASHin] = ACTIONS(1172), - [anon_sym_starts_DASHwith] = ACTIONS(1172), - [anon_sym_ends_DASHwith] = ACTIONS(1172), - [anon_sym_EQ_TILDE] = ACTIONS(1172), - [anon_sym_BANG_TILDE] = ACTIONS(1172), - [anon_sym_bit_DASHand] = ACTIONS(1172), - [anon_sym_bit_DASHxor] = ACTIONS(1172), - [anon_sym_bit_DASHor] = ACTIONS(1172), - [anon_sym_and] = ACTIONS(1172), - [anon_sym_xor] = ACTIONS(1172), - [anon_sym_or] = ACTIONS(1172), - [anon_sym_not] = ACTIONS(1172), - [anon_sym_DOT_DOT2] = ACTIONS(1172), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1172), - [anon_sym_DOT_DOT_LT] = ACTIONS(1172), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1174), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1174), - [anon_sym_null] = ACTIONS(1172), - [anon_sym_true] = ACTIONS(1172), - [anon_sym_false] = ACTIONS(1172), - [aux_sym__val_number_decimal_token1] = ACTIONS(1172), - [aux_sym__val_number_decimal_token2] = ACTIONS(1172), - [anon_sym_DOT2] = ACTIONS(1172), - [aux_sym__val_number_decimal_token3] = ACTIONS(1172), - [aux_sym__val_number_token1] = ACTIONS(1172), - [aux_sym__val_number_token2] = ACTIONS(1172), - [aux_sym__val_number_token3] = ACTIONS(1172), - [aux_sym__val_number_token4] = ACTIONS(1172), - [aux_sym__val_number_token5] = ACTIONS(1172), - [aux_sym__val_number_token6] = ACTIONS(1172), - [anon_sym_0b] = ACTIONS(1172), - [anon_sym_0o] = ACTIONS(1172), - [anon_sym_0x] = ACTIONS(1172), - [sym_val_date] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(1172), - [sym__str_single_quotes] = ACTIONS(1172), - [sym__str_back_ticks] = ACTIONS(1172), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1172), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1172), + [2639] = { + [sym_comment] = STATE(2639), + [ts_builtin_sym_end] = ACTIONS(1091), + [anon_sym_SEMI] = ACTIONS(1089), + [anon_sym_LF] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1089), + [anon_sym_PIPE] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1089), + [anon_sym_GT] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_DASH] = ACTIONS(1089), + [anon_sym_in] = ACTIONS(1089), + [anon_sym_LBRACE] = ACTIONS(1089), + [anon_sym_DOT_DOT] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_STAR_STAR] = ACTIONS(1089), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_SLASH] = ACTIONS(1089), + [anon_sym_mod] = ACTIONS(1089), + [anon_sym_SLASH_SLASH] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1089), + [anon_sym_bit_DASHshl] = ACTIONS(1089), + [anon_sym_bit_DASHshr] = ACTIONS(1089), + [anon_sym_EQ_EQ] = ACTIONS(1089), + [anon_sym_BANG_EQ] = ACTIONS(1089), + [anon_sym_LT2] = ACTIONS(1089), + [anon_sym_LT_EQ] = ACTIONS(1089), + [anon_sym_GT_EQ] = ACTIONS(1089), + [anon_sym_not_DASHin] = ACTIONS(1089), + [anon_sym_starts_DASHwith] = ACTIONS(1089), + [anon_sym_ends_DASHwith] = ACTIONS(1089), + [anon_sym_EQ_TILDE] = ACTIONS(1089), + [anon_sym_BANG_TILDE] = ACTIONS(1089), + [anon_sym_bit_DASHand] = ACTIONS(1089), + [anon_sym_bit_DASHxor] = ACTIONS(1089), + [anon_sym_bit_DASHor] = ACTIONS(1089), + [anon_sym_and] = ACTIONS(1089), + [anon_sym_xor] = ACTIONS(1089), + [anon_sym_or] = ACTIONS(1089), + [anon_sym_not] = ACTIONS(1089), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_DOT_DOT_LT] = ACTIONS(1089), + [anon_sym_null] = ACTIONS(1089), + [anon_sym_true] = ACTIONS(1089), + [anon_sym_false] = ACTIONS(1089), + [aux_sym__val_number_decimal_token1] = ACTIONS(1089), + [aux_sym__val_number_decimal_token2] = ACTIONS(1089), + [anon_sym_DOT2] = ACTIONS(1089), + [aux_sym__val_number_decimal_token3] = ACTIONS(1089), + [aux_sym__val_number_token1] = ACTIONS(1089), + [aux_sym__val_number_token2] = ACTIONS(1089), + [aux_sym__val_number_token3] = ACTIONS(1089), + [aux_sym__val_number_token4] = ACTIONS(1089), + [aux_sym__val_number_token5] = ACTIONS(1089), + [aux_sym__val_number_token6] = ACTIONS(1089), + [anon_sym_0b] = ACTIONS(1089), + [anon_sym_0o] = ACTIONS(1089), + [anon_sym_0x] = ACTIONS(1089), + [sym_val_date] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1089), + [sym__str_single_quotes] = ACTIONS(1089), + [sym__str_back_ticks] = ACTIONS(1089), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1089), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1089), + [aux_sym_unquoted_token6] = ACTIONS(1149), [anon_sym_POUND] = ACTIONS(113), }, - [2482] = { - [sym_comment] = STATE(2482), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_COMMA] = ACTIONS(1420), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_DOLLAR] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_in] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_RBRACE] = ACTIONS(1420), - [anon_sym__] = ACTIONS(1418), - [anon_sym_DOT_DOT] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_STAR_STAR] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_SLASH] = ACTIONS(1418), - [anon_sym_mod] = ACTIONS(1420), - [anon_sym_SLASH_SLASH] = ACTIONS(1420), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_bit_DASHshl] = ACTIONS(1420), - [anon_sym_bit_DASHshr] = ACTIONS(1420), - [anon_sym_EQ_EQ] = ACTIONS(1420), - [anon_sym_BANG_EQ] = ACTIONS(1420), - [anon_sym_LT2] = ACTIONS(1418), - [anon_sym_LT_EQ] = ACTIONS(1420), - [anon_sym_GT_EQ] = ACTIONS(1420), - [anon_sym_not_DASHin] = ACTIONS(1420), - [anon_sym_starts_DASHwith] = ACTIONS(1420), - [anon_sym_ends_DASHwith] = ACTIONS(1420), - [anon_sym_EQ_TILDE] = ACTIONS(1420), - [anon_sym_BANG_TILDE] = ACTIONS(1420), - [anon_sym_bit_DASHand] = ACTIONS(1420), - [anon_sym_bit_DASHxor] = ACTIONS(1420), - [anon_sym_bit_DASHor] = ACTIONS(1420), - [anon_sym_and] = ACTIONS(1420), - [anon_sym_xor] = ACTIONS(1420), - [anon_sym_or] = ACTIONS(1420), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1420), - [anon_sym_DOT_DOT_LT] = ACTIONS(1420), - [anon_sym_null] = ACTIONS(1420), - [anon_sym_true] = ACTIONS(1420), - [anon_sym_false] = ACTIONS(1420), - [aux_sym__val_number_decimal_token1] = ACTIONS(1418), - [aux_sym__val_number_decimal_token2] = ACTIONS(1420), - [anon_sym_DOT2] = ACTIONS(1418), - [aux_sym__val_number_decimal_token3] = ACTIONS(1420), - [aux_sym__val_number_token1] = ACTIONS(1420), - [aux_sym__val_number_token2] = ACTIONS(1420), - [aux_sym__val_number_token3] = ACTIONS(1420), - [aux_sym__val_number_token4] = ACTIONS(1420), - [aux_sym__val_number_token5] = ACTIONS(1420), - [aux_sym__val_number_token6] = ACTIONS(1420), - [anon_sym_0b] = ACTIONS(1418), - [anon_sym_0o] = ACTIONS(1418), - [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1420), - [anon_sym_DQUOTE] = ACTIONS(1420), - [sym__str_single_quotes] = ACTIONS(1420), - [sym__str_back_ticks] = ACTIONS(1420), - [anon_sym_err_GT] = ACTIONS(1420), - [anon_sym_out_GT] = ACTIONS(1420), - [anon_sym_e_GT] = ACTIONS(1420), - [anon_sym_o_GT] = ACTIONS(1420), - [anon_sym_err_PLUSout_GT] = ACTIONS(1420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1420), - [anon_sym_o_PLUSe_GT] = ACTIONS(1420), - [anon_sym_e_PLUSo_GT] = ACTIONS(1420), - [aux_sym_unquoted_token1] = ACTIONS(1418), - [anon_sym_POUND] = ACTIONS(3), + [2640] = { + [sym_comment] = STATE(2640), + [ts_builtin_sym_end] = ACTIONS(1173), + [anon_sym_SEMI] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_PIPE] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(113), }, - [2483] = { - [sym_comment] = STATE(2483), - [anon_sym_LBRACK] = ACTIONS(1282), - [anon_sym_COMMA] = ACTIONS(1282), - [anon_sym_LPAREN] = ACTIONS(1282), - [anon_sym_DOLLAR] = ACTIONS(1282), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_in] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1282), - [anon_sym_RBRACE] = ACTIONS(1282), - [anon_sym__] = ACTIONS(1280), - [anon_sym_DOT_DOT] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1280), - [anon_sym_STAR_STAR] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(1280), - [anon_sym_mod] = ACTIONS(1282), - [anon_sym_SLASH_SLASH] = ACTIONS(1282), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_bit_DASHshl] = ACTIONS(1282), - [anon_sym_bit_DASHshr] = ACTIONS(1282), - [anon_sym_EQ_EQ] = ACTIONS(1282), - [anon_sym_BANG_EQ] = ACTIONS(1282), - [anon_sym_LT2] = ACTIONS(1280), - [anon_sym_LT_EQ] = ACTIONS(1282), - [anon_sym_GT_EQ] = ACTIONS(1282), - [anon_sym_not_DASHin] = ACTIONS(1282), - [anon_sym_starts_DASHwith] = ACTIONS(1282), - [anon_sym_ends_DASHwith] = ACTIONS(1282), - [anon_sym_EQ_TILDE] = ACTIONS(1282), - [anon_sym_BANG_TILDE] = ACTIONS(1282), - [anon_sym_bit_DASHand] = ACTIONS(1282), - [anon_sym_bit_DASHxor] = ACTIONS(1282), - [anon_sym_bit_DASHor] = ACTIONS(1282), - [anon_sym_and] = ACTIONS(1282), - [anon_sym_xor] = ACTIONS(1282), - [anon_sym_or] = ACTIONS(1282), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1282), - [anon_sym_DOT_DOT_LT] = ACTIONS(1282), - [anon_sym_null] = ACTIONS(1282), - [anon_sym_true] = ACTIONS(1282), - [anon_sym_false] = ACTIONS(1282), - [aux_sym__val_number_decimal_token1] = ACTIONS(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1282), - [anon_sym_DOT2] = ACTIONS(1280), - [aux_sym__val_number_decimal_token3] = ACTIONS(1282), - [aux_sym__val_number_token1] = ACTIONS(1282), - [aux_sym__val_number_token2] = ACTIONS(1282), - [aux_sym__val_number_token3] = ACTIONS(1282), - [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(1280), - [anon_sym_0o] = ACTIONS(1280), - [anon_sym_0x] = ACTIONS(1280), - [sym_val_date] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1282), - [sym__str_single_quotes] = ACTIONS(1282), - [sym__str_back_ticks] = ACTIONS(1282), - [anon_sym_err_GT] = ACTIONS(1282), - [anon_sym_out_GT] = ACTIONS(1282), - [anon_sym_e_GT] = ACTIONS(1282), - [anon_sym_o_GT] = ACTIONS(1282), - [anon_sym_err_PLUSout_GT] = ACTIONS(1282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1282), - [anon_sym_o_PLUSe_GT] = ACTIONS(1282), - [anon_sym_e_PLUSo_GT] = ACTIONS(1282), - [aux_sym_unquoted_token1] = ACTIONS(1280), + [2641] = { + [sym__expression] = STATE(7620), + [sym_expr_unary] = STATE(5998), + [sym__expr_unary_minus] = STATE(5999), + [sym_expr_binary] = STATE(5998), + [sym__expr_binary_expression] = STATE(6374), + [sym_expr_parenthesized] = STATE(5273), + [sym_val_range] = STATE(6728), + [sym__value] = STATE(5998), + [sym_val_nothing] = STATE(6108), + [sym_val_bool] = STATE(6108), + [sym_val_variable] = STATE(5385), + [sym__var] = STATE(4639), + [sym_val_number] = STATE(6108), + [sym__val_number_decimal] = STATE(5069), + [sym__val_number] = STATE(6110), + [sym_val_duration] = STATE(6108), + [sym_val_filesize] = STATE(6108), + [sym_val_binary] = STATE(6108), + [sym_val_string] = STATE(6108), + [sym__str_double_quotes] = STATE(6195), + [sym_val_interpolated] = STATE(6108), + [sym__inter_single_quotes] = STATE(6197), + [sym__inter_double_quotes] = STATE(6198), + [sym_val_list] = STATE(6108), + [sym_val_record] = STATE(6108), + [sym_val_table] = STATE(6108), + [sym_val_closure] = STATE(6108), + [sym__flag] = STATE(3062), + [sym_short_flag] = STATE(6049), + [sym_long_flag] = STATE(6049), + [sym_long_flag_equals_value] = STATE(6112), + [sym_comment] = STATE(2641), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(2804), + [anon_sym_DOLLAR] = ACTIONS(2806), + [anon_sym_DASH_DASH] = ACTIONS(2557), + [anon_sym_DASH] = ACTIONS(6608), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_DOT_DOT] = ACTIONS(6610), + [anon_sym_not] = ACTIONS(4172), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6612), + [anon_sym_DOT_DOT_LT] = ACTIONS(6612), + [anon_sym_null] = ACTIONS(6614), + [anon_sym_true] = ACTIONS(6616), + [anon_sym_false] = ACTIONS(6616), + [aux_sym__val_number_decimal_token1] = ACTIONS(6618), + [aux_sym__val_number_decimal_token2] = ACTIONS(6620), + [anon_sym_DOT2] = ACTIONS(6622), + [aux_sym__val_number_decimal_token3] = ACTIONS(5057), + [aux_sym__val_number_token1] = ACTIONS(2828), + [aux_sym__val_number_token2] = ACTIONS(2828), + [aux_sym__val_number_token3] = ACTIONS(2828), + [aux_sym__val_number_token4] = ACTIONS(2828), + [aux_sym__val_number_token5] = ACTIONS(2828), + [aux_sym__val_number_token6] = ACTIONS(2828), + [anon_sym_0b] = ACTIONS(2832), + [anon_sym_0o] = ACTIONS(2834), + [anon_sym_0x] = ACTIONS(2834), + [sym_val_date] = ACTIONS(6624), + [anon_sym_DQUOTE] = ACTIONS(4192), + [sym__str_single_quotes] = ACTIONS(4194), + [sym__str_back_ticks] = ACTIONS(4194), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2844), [anon_sym_POUND] = ACTIONS(3), }, - [2484] = { - [sym_comment] = STATE(2484), - [ts_builtin_sym_end] = ACTIONS(5221), - [anon_sym_export] = ACTIONS(5219), - [anon_sym_alias] = ACTIONS(5219), - [anon_sym_let] = ACTIONS(5219), - [anon_sym_let_DASHenv] = ACTIONS(5219), - [anon_sym_mut] = ACTIONS(5219), - [anon_sym_const] = ACTIONS(5219), - [anon_sym_SEMI] = ACTIONS(5219), - [sym_cmd_identifier] = ACTIONS(5219), - [anon_sym_LF] = ACTIONS(5221), - [anon_sym_def] = ACTIONS(5219), - [anon_sym_export_DASHenv] = ACTIONS(5219), - [anon_sym_extern] = ACTIONS(5219), - [anon_sym_module] = ACTIONS(5219), - [anon_sym_use] = ACTIONS(5219), - [anon_sym_LBRACK] = ACTIONS(5219), - [anon_sym_LPAREN] = ACTIONS(5219), - [anon_sym_DOLLAR] = ACTIONS(5219), - [anon_sym_error] = ACTIONS(5219), - [anon_sym_DASH_DASH] = ACTIONS(5219), - [anon_sym_DASH] = ACTIONS(5219), - [anon_sym_break] = ACTIONS(5219), - [anon_sym_continue] = ACTIONS(5219), - [anon_sym_for] = ACTIONS(5219), - [anon_sym_loop] = ACTIONS(5219), - [anon_sym_while] = ACTIONS(5219), - [anon_sym_do] = ACTIONS(5219), - [anon_sym_if] = ACTIONS(5219), - [anon_sym_match] = ACTIONS(5219), - [anon_sym_LBRACE] = ACTIONS(5219), - [anon_sym_DOT_DOT] = ACTIONS(5219), - [anon_sym_try] = ACTIONS(5219), - [anon_sym_return] = ACTIONS(5219), - [anon_sym_source] = ACTIONS(5219), - [anon_sym_source_DASHenv] = ACTIONS(5219), - [anon_sym_register] = ACTIONS(5219), - [anon_sym_hide] = ACTIONS(5219), - [anon_sym_hide_DASHenv] = ACTIONS(5219), - [anon_sym_overlay] = ACTIONS(5219), - [anon_sym_as] = ACTIONS(5219), - [anon_sym_where] = ACTIONS(5219), - [anon_sym_not] = ACTIONS(5219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5219), - [anon_sym_DOT_DOT_LT] = ACTIONS(5219), - [anon_sym_null] = ACTIONS(5219), - [anon_sym_true] = ACTIONS(5219), - [anon_sym_false] = ACTIONS(5219), - [aux_sym__val_number_decimal_token1] = ACTIONS(5219), - [aux_sym__val_number_decimal_token2] = ACTIONS(5219), - [anon_sym_DOT2] = ACTIONS(5219), - [aux_sym__val_number_decimal_token3] = ACTIONS(5219), - [aux_sym__val_number_token1] = ACTIONS(5219), - [aux_sym__val_number_token2] = ACTIONS(5219), - [aux_sym__val_number_token3] = ACTIONS(5219), - [aux_sym__val_number_token4] = ACTIONS(5219), - [aux_sym__val_number_token5] = ACTIONS(5219), - [aux_sym__val_number_token6] = ACTIONS(5219), - [anon_sym_0b] = ACTIONS(5219), - [anon_sym_0o] = ACTIONS(5219), - [anon_sym_0x] = ACTIONS(5219), - [sym_val_date] = ACTIONS(5219), - [anon_sym_DQUOTE] = ACTIONS(5219), - [sym__str_single_quotes] = ACTIONS(5219), - [sym__str_back_ticks] = ACTIONS(5219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5219), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5219), - [anon_sym_CARET] = ACTIONS(5219), + [2642] = { + [sym_comment] = STATE(2642), + [ts_builtin_sym_end] = ACTIONS(1243), + [anon_sym_SEMI] = ACTIONS(1241), + [anon_sym_LF] = ACTIONS(1243), + [anon_sym_LBRACK] = ACTIONS(1241), + [anon_sym_LPAREN] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1241), + [anon_sym_DOLLAR] = ACTIONS(1241), + [anon_sym_GT] = ACTIONS(1241), + [anon_sym_DASH_DASH] = ACTIONS(1241), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_in] = ACTIONS(1241), + [anon_sym_LBRACE] = ACTIONS(1241), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_STAR] = ACTIONS(1241), + [anon_sym_STAR_STAR] = ACTIONS(1241), + [anon_sym_PLUS_PLUS] = ACTIONS(1241), + [anon_sym_SLASH] = ACTIONS(1241), + [anon_sym_mod] = ACTIONS(1241), + [anon_sym_SLASH_SLASH] = ACTIONS(1241), + [anon_sym_PLUS] = ACTIONS(1241), + [anon_sym_bit_DASHshl] = ACTIONS(1241), + [anon_sym_bit_DASHshr] = ACTIONS(1241), + [anon_sym_EQ_EQ] = ACTIONS(1241), + [anon_sym_BANG_EQ] = ACTIONS(1241), + [anon_sym_LT2] = ACTIONS(1241), + [anon_sym_LT_EQ] = ACTIONS(1241), + [anon_sym_GT_EQ] = ACTIONS(1241), + [anon_sym_not_DASHin] = ACTIONS(1241), + [anon_sym_starts_DASHwith] = ACTIONS(1241), + [anon_sym_ends_DASHwith] = ACTIONS(1241), + [anon_sym_EQ_TILDE] = ACTIONS(1241), + [anon_sym_BANG_TILDE] = ACTIONS(1241), + [anon_sym_bit_DASHand] = ACTIONS(1241), + [anon_sym_bit_DASHxor] = ACTIONS(1241), + [anon_sym_bit_DASHor] = ACTIONS(1241), + [anon_sym_and] = ACTIONS(1241), + [anon_sym_xor] = ACTIONS(1241), + [anon_sym_or] = ACTIONS(1241), + [anon_sym_not] = ACTIONS(1241), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1241), + [anon_sym_DOT_DOT_LT] = ACTIONS(1241), + [anon_sym_null] = ACTIONS(1241), + [anon_sym_true] = ACTIONS(1241), + [anon_sym_false] = ACTIONS(1241), + [aux_sym__val_number_decimal_token1] = ACTIONS(1241), + [aux_sym__val_number_decimal_token2] = ACTIONS(1241), + [anon_sym_DOT2] = ACTIONS(1241), + [aux_sym__val_number_decimal_token3] = ACTIONS(1241), + [aux_sym__val_number_token1] = ACTIONS(1241), + [aux_sym__val_number_token2] = ACTIONS(1241), + [aux_sym__val_number_token3] = ACTIONS(1241), + [aux_sym__val_number_token4] = ACTIONS(1241), + [aux_sym__val_number_token5] = ACTIONS(1241), + [aux_sym__val_number_token6] = ACTIONS(1241), + [anon_sym_0b] = ACTIONS(1241), + [anon_sym_0o] = ACTIONS(1241), + [anon_sym_0x] = ACTIONS(1241), + [sym_val_date] = ACTIONS(1241), + [anon_sym_DQUOTE] = ACTIONS(1241), + [sym__str_single_quotes] = ACTIONS(1241), + [sym__str_back_ticks] = ACTIONS(1241), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1241), [anon_sym_POUND] = ACTIONS(113), }, - [2485] = { - [sym_comment] = STATE(2485), - [ts_builtin_sym_end] = ACTIONS(5225), - [anon_sym_export] = ACTIONS(5223), - [anon_sym_alias] = ACTIONS(5223), - [anon_sym_let] = ACTIONS(5223), - [anon_sym_let_DASHenv] = ACTIONS(5223), - [anon_sym_mut] = ACTIONS(5223), - [anon_sym_const] = ACTIONS(5223), - [anon_sym_SEMI] = ACTIONS(5223), - [sym_cmd_identifier] = ACTIONS(5223), - [anon_sym_LF] = ACTIONS(5225), - [anon_sym_def] = ACTIONS(5223), - [anon_sym_export_DASHenv] = ACTIONS(5223), - [anon_sym_extern] = ACTIONS(5223), - [anon_sym_module] = ACTIONS(5223), - [anon_sym_use] = ACTIONS(5223), - [anon_sym_LBRACK] = ACTIONS(5223), - [anon_sym_LPAREN] = ACTIONS(5223), - [anon_sym_DOLLAR] = ACTIONS(5223), - [anon_sym_error] = ACTIONS(5223), - [anon_sym_DASH_DASH] = ACTIONS(5223), - [anon_sym_DASH] = ACTIONS(5223), - [anon_sym_break] = ACTIONS(5223), - [anon_sym_continue] = ACTIONS(5223), - [anon_sym_for] = ACTIONS(5223), - [anon_sym_loop] = ACTIONS(5223), - [anon_sym_while] = ACTIONS(5223), - [anon_sym_do] = ACTIONS(5223), - [anon_sym_if] = ACTIONS(5223), - [anon_sym_match] = ACTIONS(5223), - [anon_sym_LBRACE] = ACTIONS(5223), - [anon_sym_DOT_DOT] = ACTIONS(5223), - [anon_sym_try] = ACTIONS(5223), - [anon_sym_return] = ACTIONS(5223), - [anon_sym_source] = ACTIONS(5223), - [anon_sym_source_DASHenv] = ACTIONS(5223), - [anon_sym_register] = ACTIONS(5223), - [anon_sym_hide] = ACTIONS(5223), - [anon_sym_hide_DASHenv] = ACTIONS(5223), - [anon_sym_overlay] = ACTIONS(5223), - [anon_sym_as] = ACTIONS(5223), - [anon_sym_where] = ACTIONS(5223), - [anon_sym_not] = ACTIONS(5223), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5223), - [anon_sym_DOT_DOT_LT] = ACTIONS(5223), - [anon_sym_null] = ACTIONS(5223), - [anon_sym_true] = ACTIONS(5223), - [anon_sym_false] = ACTIONS(5223), - [aux_sym__val_number_decimal_token1] = ACTIONS(5223), - [aux_sym__val_number_decimal_token2] = ACTIONS(5223), - [anon_sym_DOT2] = ACTIONS(5223), - [aux_sym__val_number_decimal_token3] = ACTIONS(5223), - [aux_sym__val_number_token1] = ACTIONS(5223), - [aux_sym__val_number_token2] = ACTIONS(5223), - [aux_sym__val_number_token3] = ACTIONS(5223), - [aux_sym__val_number_token4] = ACTIONS(5223), - [aux_sym__val_number_token5] = ACTIONS(5223), - [aux_sym__val_number_token6] = ACTIONS(5223), - [anon_sym_0b] = ACTIONS(5223), - [anon_sym_0o] = ACTIONS(5223), - [anon_sym_0x] = ACTIONS(5223), - [sym_val_date] = ACTIONS(5223), - [anon_sym_DQUOTE] = ACTIONS(5223), - [sym__str_single_quotes] = ACTIONS(5223), - [sym__str_back_ticks] = ACTIONS(5223), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5223), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5223), - [anon_sym_CARET] = ACTIONS(5223), + [2643] = { + [sym_comment] = STATE(2643), + [ts_builtin_sym_end] = ACTIONS(1255), + [anon_sym_SEMI] = ACTIONS(1253), + [anon_sym_LF] = ACTIONS(1255), + [anon_sym_LBRACK] = ACTIONS(1253), + [anon_sym_LPAREN] = ACTIONS(1253), + [anon_sym_PIPE] = ACTIONS(1253), + [anon_sym_DOLLAR] = ACTIONS(1253), + [anon_sym_GT] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_in] = ACTIONS(1253), + [anon_sym_LBRACE] = ACTIONS(1253), + [anon_sym_DOT_DOT] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_STAR_STAR] = ACTIONS(1253), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_SLASH] = ACTIONS(1253), + [anon_sym_mod] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(1253), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_bit_DASHshl] = ACTIONS(1253), + [anon_sym_bit_DASHshr] = ACTIONS(1253), + [anon_sym_EQ_EQ] = ACTIONS(1253), + [anon_sym_BANG_EQ] = ACTIONS(1253), + [anon_sym_LT2] = ACTIONS(1253), + [anon_sym_LT_EQ] = ACTIONS(1253), + [anon_sym_GT_EQ] = ACTIONS(1253), + [anon_sym_not_DASHin] = ACTIONS(1253), + [anon_sym_starts_DASHwith] = ACTIONS(1253), + [anon_sym_ends_DASHwith] = ACTIONS(1253), + [anon_sym_EQ_TILDE] = ACTIONS(1253), + [anon_sym_BANG_TILDE] = ACTIONS(1253), + [anon_sym_bit_DASHand] = ACTIONS(1253), + [anon_sym_bit_DASHxor] = ACTIONS(1253), + [anon_sym_bit_DASHor] = ACTIONS(1253), + [anon_sym_and] = ACTIONS(1253), + [anon_sym_xor] = ACTIONS(1253), + [anon_sym_or] = ACTIONS(1253), + [anon_sym_not] = ACTIONS(1253), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1253), + [anon_sym_DOT_DOT_LT] = ACTIONS(1253), + [anon_sym_null] = ACTIONS(1253), + [anon_sym_true] = ACTIONS(1253), + [anon_sym_false] = ACTIONS(1253), + [aux_sym__val_number_decimal_token1] = ACTIONS(1253), + [aux_sym__val_number_decimal_token2] = ACTIONS(1253), + [anon_sym_DOT2] = ACTIONS(1253), + [aux_sym__val_number_decimal_token3] = ACTIONS(1253), + [aux_sym__val_number_token1] = ACTIONS(1253), + [aux_sym__val_number_token2] = ACTIONS(1253), + [aux_sym__val_number_token3] = ACTIONS(1253), + [aux_sym__val_number_token4] = ACTIONS(1253), + [aux_sym__val_number_token5] = ACTIONS(1253), + [aux_sym__val_number_token6] = ACTIONS(1253), + [anon_sym_0b] = ACTIONS(1253), + [anon_sym_0o] = ACTIONS(1253), + [anon_sym_0x] = ACTIONS(1253), + [sym_val_date] = ACTIONS(1253), + [anon_sym_DQUOTE] = ACTIONS(1253), + [sym__str_single_quotes] = ACTIONS(1253), + [sym__str_back_ticks] = ACTIONS(1253), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1253), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1253), [anon_sym_POUND] = ACTIONS(113), }, - [2486] = { - [sym_comment] = STATE(2486), - [ts_builtin_sym_end] = ACTIONS(5229), - [anon_sym_export] = ACTIONS(5227), - [anon_sym_alias] = ACTIONS(5227), - [anon_sym_let] = ACTIONS(5227), - [anon_sym_let_DASHenv] = ACTIONS(5227), - [anon_sym_mut] = ACTIONS(5227), - [anon_sym_const] = ACTIONS(5227), - [anon_sym_SEMI] = ACTIONS(5227), - [sym_cmd_identifier] = ACTIONS(5227), - [anon_sym_LF] = ACTIONS(5229), - [anon_sym_def] = ACTIONS(5227), - [anon_sym_export_DASHenv] = ACTIONS(5227), - [anon_sym_extern] = ACTIONS(5227), - [anon_sym_module] = ACTIONS(5227), - [anon_sym_use] = ACTIONS(5227), - [anon_sym_LBRACK] = ACTIONS(5227), - [anon_sym_LPAREN] = ACTIONS(5227), - [anon_sym_DOLLAR] = ACTIONS(5227), - [anon_sym_error] = ACTIONS(5227), - [anon_sym_DASH_DASH] = ACTIONS(5227), - [anon_sym_DASH] = ACTIONS(5227), - [anon_sym_break] = ACTIONS(5227), - [anon_sym_continue] = ACTIONS(5227), - [anon_sym_for] = ACTIONS(5227), - [anon_sym_loop] = ACTIONS(5227), - [anon_sym_while] = ACTIONS(5227), - [anon_sym_do] = ACTIONS(5227), - [anon_sym_if] = ACTIONS(5227), - [anon_sym_match] = ACTIONS(5227), - [anon_sym_LBRACE] = ACTIONS(5227), - [anon_sym_DOT_DOT] = ACTIONS(5227), - [anon_sym_try] = ACTIONS(5227), - [anon_sym_return] = ACTIONS(5227), - [anon_sym_source] = ACTIONS(5227), - [anon_sym_source_DASHenv] = ACTIONS(5227), - [anon_sym_register] = ACTIONS(5227), - [anon_sym_hide] = ACTIONS(5227), - [anon_sym_hide_DASHenv] = ACTIONS(5227), - [anon_sym_overlay] = ACTIONS(5227), - [anon_sym_as] = ACTIONS(5227), - [anon_sym_where] = ACTIONS(5227), - [anon_sym_not] = ACTIONS(5227), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5227), - [anon_sym_DOT_DOT_LT] = ACTIONS(5227), - [anon_sym_null] = ACTIONS(5227), - [anon_sym_true] = ACTIONS(5227), - [anon_sym_false] = ACTIONS(5227), - [aux_sym__val_number_decimal_token1] = ACTIONS(5227), - [aux_sym__val_number_decimal_token2] = ACTIONS(5227), - [anon_sym_DOT2] = ACTIONS(5227), - [aux_sym__val_number_decimal_token3] = ACTIONS(5227), - [aux_sym__val_number_token1] = ACTIONS(5227), - [aux_sym__val_number_token2] = ACTIONS(5227), - [aux_sym__val_number_token3] = ACTIONS(5227), - [aux_sym__val_number_token4] = ACTIONS(5227), - [aux_sym__val_number_token5] = ACTIONS(5227), - [aux_sym__val_number_token6] = ACTIONS(5227), - [anon_sym_0b] = ACTIONS(5227), - [anon_sym_0o] = ACTIONS(5227), - [anon_sym_0x] = ACTIONS(5227), - [sym_val_date] = ACTIONS(5227), - [anon_sym_DQUOTE] = ACTIONS(5227), - [sym__str_single_quotes] = ACTIONS(5227), - [sym__str_back_ticks] = ACTIONS(5227), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5227), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5227), - [anon_sym_CARET] = ACTIONS(5227), + [2644] = { + [sym_comment] = STATE(2644), + [ts_builtin_sym_end] = ACTIONS(1070), + [anon_sym_SEMI] = ACTIONS(1068), + [anon_sym_LF] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1068), + [anon_sym_LPAREN] = ACTIONS(1068), + [anon_sym_PIPE] = ACTIONS(1068), + [anon_sym_DOLLAR] = ACTIONS(1068), + [anon_sym_GT] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1068), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_in] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_DOT_DOT] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_STAR_STAR] = ACTIONS(1068), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_SLASH] = ACTIONS(1068), + [anon_sym_mod] = ACTIONS(1068), + [anon_sym_SLASH_SLASH] = ACTIONS(1068), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_bit_DASHshl] = ACTIONS(1068), + [anon_sym_bit_DASHshr] = ACTIONS(1068), + [anon_sym_EQ_EQ] = ACTIONS(1068), + [anon_sym_BANG_EQ] = ACTIONS(1068), + [anon_sym_LT2] = ACTIONS(1068), + [anon_sym_LT_EQ] = ACTIONS(1068), + [anon_sym_GT_EQ] = ACTIONS(1068), + [anon_sym_not_DASHin] = ACTIONS(1068), + [anon_sym_starts_DASHwith] = ACTIONS(1068), + [anon_sym_ends_DASHwith] = ACTIONS(1068), + [anon_sym_EQ_TILDE] = ACTIONS(1068), + [anon_sym_BANG_TILDE] = ACTIONS(1068), + [anon_sym_bit_DASHand] = ACTIONS(1068), + [anon_sym_bit_DASHxor] = ACTIONS(1068), + [anon_sym_bit_DASHor] = ACTIONS(1068), + [anon_sym_and] = ACTIONS(1068), + [anon_sym_xor] = ACTIONS(1068), + [anon_sym_or] = ACTIONS(1068), + [anon_sym_not] = ACTIONS(1068), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1068), + [anon_sym_DOT_DOT_LT] = ACTIONS(1068), + [anon_sym_null] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1068), + [anon_sym_false] = ACTIONS(1068), + [aux_sym__val_number_decimal_token1] = ACTIONS(1068), + [aux_sym__val_number_decimal_token2] = ACTIONS(1068), + [anon_sym_DOT2] = ACTIONS(1068), + [aux_sym__val_number_decimal_token3] = ACTIONS(1068), + [aux_sym__val_number_token1] = ACTIONS(1068), + [aux_sym__val_number_token2] = ACTIONS(1068), + [aux_sym__val_number_token3] = ACTIONS(1068), + [aux_sym__val_number_token4] = ACTIONS(1068), + [aux_sym__val_number_token5] = ACTIONS(1068), + [aux_sym__val_number_token6] = ACTIONS(1068), + [anon_sym_0b] = ACTIONS(1068), + [anon_sym_0o] = ACTIONS(1068), + [anon_sym_0x] = ACTIONS(1068), + [sym_val_date] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(1068), + [sym__str_single_quotes] = ACTIONS(1068), + [sym__str_back_ticks] = ACTIONS(1068), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1068), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1068), [anon_sym_POUND] = ACTIONS(113), }, - [2487] = { - [sym_comment] = STATE(2487), - [ts_builtin_sym_end] = ACTIONS(5233), - [anon_sym_export] = ACTIONS(5231), - [anon_sym_alias] = ACTIONS(5231), - [anon_sym_let] = ACTIONS(5231), - [anon_sym_let_DASHenv] = ACTIONS(5231), - [anon_sym_mut] = ACTIONS(5231), - [anon_sym_const] = ACTIONS(5231), - [anon_sym_SEMI] = ACTIONS(5231), - [sym_cmd_identifier] = ACTIONS(5231), - [anon_sym_LF] = ACTIONS(5233), - [anon_sym_def] = ACTIONS(5231), - [anon_sym_export_DASHenv] = ACTIONS(5231), - [anon_sym_extern] = ACTIONS(5231), - [anon_sym_module] = ACTIONS(5231), - [anon_sym_use] = ACTIONS(5231), - [anon_sym_LBRACK] = ACTIONS(5231), - [anon_sym_LPAREN] = ACTIONS(5231), - [anon_sym_DOLLAR] = ACTIONS(5231), - [anon_sym_error] = ACTIONS(5231), - [anon_sym_DASH_DASH] = ACTIONS(5231), - [anon_sym_DASH] = ACTIONS(5231), - [anon_sym_break] = ACTIONS(5231), - [anon_sym_continue] = ACTIONS(5231), - [anon_sym_for] = ACTIONS(5231), - [anon_sym_loop] = ACTIONS(5231), - [anon_sym_while] = ACTIONS(5231), - [anon_sym_do] = ACTIONS(5231), - [anon_sym_if] = ACTIONS(5231), - [anon_sym_match] = ACTIONS(5231), - [anon_sym_LBRACE] = ACTIONS(5231), - [anon_sym_DOT_DOT] = ACTIONS(5231), - [anon_sym_try] = ACTIONS(5231), - [anon_sym_return] = ACTIONS(5231), - [anon_sym_source] = ACTIONS(5231), - [anon_sym_source_DASHenv] = ACTIONS(5231), - [anon_sym_register] = ACTIONS(5231), - [anon_sym_hide] = ACTIONS(5231), - [anon_sym_hide_DASHenv] = ACTIONS(5231), - [anon_sym_overlay] = ACTIONS(5231), - [anon_sym_as] = ACTIONS(5231), - [anon_sym_where] = ACTIONS(5231), - [anon_sym_not] = ACTIONS(5231), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5231), - [anon_sym_DOT_DOT_LT] = ACTIONS(5231), - [anon_sym_null] = ACTIONS(5231), - [anon_sym_true] = ACTIONS(5231), - [anon_sym_false] = ACTIONS(5231), - [aux_sym__val_number_decimal_token1] = ACTIONS(5231), - [aux_sym__val_number_decimal_token2] = ACTIONS(5231), - [anon_sym_DOT2] = ACTIONS(5231), - [aux_sym__val_number_decimal_token3] = ACTIONS(5231), - [aux_sym__val_number_token1] = ACTIONS(5231), - [aux_sym__val_number_token2] = ACTIONS(5231), - [aux_sym__val_number_token3] = ACTIONS(5231), - [aux_sym__val_number_token4] = ACTIONS(5231), - [aux_sym__val_number_token5] = ACTIONS(5231), - [aux_sym__val_number_token6] = ACTIONS(5231), - [anon_sym_0b] = ACTIONS(5231), - [anon_sym_0o] = ACTIONS(5231), - [anon_sym_0x] = ACTIONS(5231), - [sym_val_date] = ACTIONS(5231), - [anon_sym_DQUOTE] = ACTIONS(5231), - [sym__str_single_quotes] = ACTIONS(5231), - [sym__str_back_ticks] = ACTIONS(5231), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5231), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5231), - [anon_sym_CARET] = ACTIONS(5231), + [2645] = { + [sym_comment] = STATE(2645), + [ts_builtin_sym_end] = ACTIONS(1263), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym_LF] = ACTIONS(1263), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_PIPE] = ACTIONS(1261), + [anon_sym_DOLLAR] = ACTIONS(1261), + [anon_sym_GT] = ACTIONS(1261), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1261), + [anon_sym_in] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_DOT_DOT] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_STAR_STAR] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_SLASH] = ACTIONS(1261), + [anon_sym_mod] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(1261), + [anon_sym_PLUS] = ACTIONS(1261), + [anon_sym_bit_DASHshl] = ACTIONS(1261), + [anon_sym_bit_DASHshr] = ACTIONS(1261), + [anon_sym_EQ_EQ] = ACTIONS(1261), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_LT2] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1261), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_not_DASHin] = ACTIONS(1261), + [anon_sym_starts_DASHwith] = ACTIONS(1261), + [anon_sym_ends_DASHwith] = ACTIONS(1261), + [anon_sym_EQ_TILDE] = ACTIONS(1261), + [anon_sym_BANG_TILDE] = ACTIONS(1261), + [anon_sym_bit_DASHand] = ACTIONS(1261), + [anon_sym_bit_DASHxor] = ACTIONS(1261), + [anon_sym_bit_DASHor] = ACTIONS(1261), + [anon_sym_and] = ACTIONS(1261), + [anon_sym_xor] = ACTIONS(1261), + [anon_sym_or] = ACTIONS(1261), + [anon_sym_not] = ACTIONS(1261), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1261), + [anon_sym_DOT_DOT_LT] = ACTIONS(1261), + [anon_sym_null] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [aux_sym__val_number_decimal_token1] = ACTIONS(1261), + [aux_sym__val_number_decimal_token2] = ACTIONS(1261), + [anon_sym_DOT2] = ACTIONS(1261), + [aux_sym__val_number_decimal_token3] = ACTIONS(1261), + [aux_sym__val_number_token1] = ACTIONS(1261), + [aux_sym__val_number_token2] = ACTIONS(1261), + [aux_sym__val_number_token3] = ACTIONS(1261), + [aux_sym__val_number_token4] = ACTIONS(1261), + [aux_sym__val_number_token5] = ACTIONS(1261), + [aux_sym__val_number_token6] = ACTIONS(1261), + [anon_sym_0b] = ACTIONS(1261), + [anon_sym_0o] = ACTIONS(1261), + [anon_sym_0x] = ACTIONS(1261), + [sym_val_date] = ACTIONS(1261), + [anon_sym_DQUOTE] = ACTIONS(1261), + [sym__str_single_quotes] = ACTIONS(1261), + [sym__str_back_ticks] = ACTIONS(1261), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1261), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1261), [anon_sym_POUND] = ACTIONS(113), }, - [2488] = { - [sym_comment] = STATE(2488), - [ts_builtin_sym_end] = ACTIONS(5237), - [anon_sym_export] = ACTIONS(5235), - [anon_sym_alias] = ACTIONS(5235), - [anon_sym_let] = ACTIONS(5235), - [anon_sym_let_DASHenv] = ACTIONS(5235), - [anon_sym_mut] = ACTIONS(5235), - [anon_sym_const] = ACTIONS(5235), - [anon_sym_SEMI] = ACTIONS(5235), - [sym_cmd_identifier] = ACTIONS(5235), - [anon_sym_LF] = ACTIONS(5237), - [anon_sym_def] = ACTIONS(5235), - [anon_sym_export_DASHenv] = ACTIONS(5235), - [anon_sym_extern] = ACTIONS(5235), - [anon_sym_module] = ACTIONS(5235), - [anon_sym_use] = ACTIONS(5235), - [anon_sym_LBRACK] = ACTIONS(5235), - [anon_sym_LPAREN] = ACTIONS(5235), - [anon_sym_DOLLAR] = ACTIONS(5235), - [anon_sym_error] = ACTIONS(5235), - [anon_sym_DASH_DASH] = ACTIONS(5235), - [anon_sym_DASH] = ACTIONS(5235), - [anon_sym_break] = ACTIONS(5235), - [anon_sym_continue] = ACTIONS(5235), - [anon_sym_for] = ACTIONS(5235), - [anon_sym_loop] = ACTIONS(5235), - [anon_sym_while] = ACTIONS(5235), - [anon_sym_do] = ACTIONS(5235), - [anon_sym_if] = ACTIONS(5235), - [anon_sym_match] = ACTIONS(5235), - [anon_sym_LBRACE] = ACTIONS(5235), - [anon_sym_DOT_DOT] = ACTIONS(5235), - [anon_sym_try] = ACTIONS(5235), - [anon_sym_return] = ACTIONS(5235), - [anon_sym_source] = ACTIONS(5235), - [anon_sym_source_DASHenv] = ACTIONS(5235), - [anon_sym_register] = ACTIONS(5235), - [anon_sym_hide] = ACTIONS(5235), - [anon_sym_hide_DASHenv] = ACTIONS(5235), - [anon_sym_overlay] = ACTIONS(5235), - [anon_sym_as] = ACTIONS(5235), - [anon_sym_where] = ACTIONS(5235), - [anon_sym_not] = ACTIONS(5235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5235), - [anon_sym_DOT_DOT_LT] = ACTIONS(5235), - [anon_sym_null] = ACTIONS(5235), - [anon_sym_true] = ACTIONS(5235), - [anon_sym_false] = ACTIONS(5235), - [aux_sym__val_number_decimal_token1] = ACTIONS(5235), - [aux_sym__val_number_decimal_token2] = ACTIONS(5235), - [anon_sym_DOT2] = ACTIONS(5235), - [aux_sym__val_number_decimal_token3] = ACTIONS(5235), - [aux_sym__val_number_token1] = ACTIONS(5235), - [aux_sym__val_number_token2] = ACTIONS(5235), - [aux_sym__val_number_token3] = ACTIONS(5235), - [aux_sym__val_number_token4] = ACTIONS(5235), - [aux_sym__val_number_token5] = ACTIONS(5235), - [aux_sym__val_number_token6] = ACTIONS(5235), - [anon_sym_0b] = ACTIONS(5235), - [anon_sym_0o] = ACTIONS(5235), - [anon_sym_0x] = ACTIONS(5235), - [sym_val_date] = ACTIONS(5235), - [anon_sym_DQUOTE] = ACTIONS(5235), - [sym__str_single_quotes] = ACTIONS(5235), - [sym__str_back_ticks] = ACTIONS(5235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5235), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5235), - [anon_sym_CARET] = ACTIONS(5235), + [2646] = { + [sym_comment] = STATE(2646), + [ts_builtin_sym_end] = ACTIONS(1213), + [anon_sym_SEMI] = ACTIONS(1211), + [anon_sym_LF] = ACTIONS(1213), + [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(1211), + [anon_sym_PIPE] = ACTIONS(1211), + [anon_sym_DOLLAR] = ACTIONS(1211), + [anon_sym_GT] = ACTIONS(1211), + [anon_sym_DASH_DASH] = ACTIONS(1211), + [anon_sym_DASH] = ACTIONS(1211), + [anon_sym_in] = ACTIONS(1211), + [anon_sym_LBRACE] = ACTIONS(1211), + [anon_sym_DOT_DOT] = ACTIONS(1211), + [anon_sym_STAR] = ACTIONS(1211), + [anon_sym_STAR_STAR] = ACTIONS(1211), + [anon_sym_PLUS_PLUS] = ACTIONS(1211), + [anon_sym_SLASH] = ACTIONS(1211), + [anon_sym_mod] = ACTIONS(1211), + [anon_sym_SLASH_SLASH] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1211), + [anon_sym_bit_DASHshl] = ACTIONS(1211), + [anon_sym_bit_DASHshr] = ACTIONS(1211), + [anon_sym_EQ_EQ] = ACTIONS(1211), + [anon_sym_BANG_EQ] = ACTIONS(1211), + [anon_sym_LT2] = ACTIONS(1211), + [anon_sym_LT_EQ] = ACTIONS(1211), + [anon_sym_GT_EQ] = ACTIONS(1211), + [anon_sym_not_DASHin] = ACTIONS(1211), + [anon_sym_starts_DASHwith] = ACTIONS(1211), + [anon_sym_ends_DASHwith] = ACTIONS(1211), + [anon_sym_EQ_TILDE] = ACTIONS(1211), + [anon_sym_BANG_TILDE] = ACTIONS(1211), + [anon_sym_bit_DASHand] = ACTIONS(1211), + [anon_sym_bit_DASHxor] = ACTIONS(1211), + [anon_sym_bit_DASHor] = ACTIONS(1211), + [anon_sym_and] = ACTIONS(1211), + [anon_sym_xor] = ACTIONS(1211), + [anon_sym_or] = ACTIONS(1211), + [anon_sym_not] = ACTIONS(1211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1211), + [anon_sym_DOT_DOT_LT] = ACTIONS(1211), + [anon_sym_null] = ACTIONS(1211), + [anon_sym_true] = ACTIONS(1211), + [anon_sym_false] = ACTIONS(1211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1211), + [aux_sym__val_number_decimal_token2] = ACTIONS(1211), + [anon_sym_DOT2] = ACTIONS(1211), + [aux_sym__val_number_decimal_token3] = ACTIONS(1211), + [aux_sym__val_number_token1] = ACTIONS(1211), + [aux_sym__val_number_token2] = ACTIONS(1211), + [aux_sym__val_number_token3] = ACTIONS(1211), + [aux_sym__val_number_token4] = ACTIONS(1211), + [aux_sym__val_number_token5] = ACTIONS(1211), + [aux_sym__val_number_token6] = ACTIONS(1211), + [anon_sym_0b] = ACTIONS(1211), + [anon_sym_0o] = ACTIONS(1211), + [anon_sym_0x] = ACTIONS(1211), + [sym_val_date] = ACTIONS(1211), + [anon_sym_DQUOTE] = ACTIONS(1211), + [sym__str_single_quotes] = ACTIONS(1211), + [sym__str_back_ticks] = ACTIONS(1211), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1211), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1211), [anon_sym_POUND] = ACTIONS(113), }, - [2489] = { - [sym_comment] = STATE(2489), - [ts_builtin_sym_end] = ACTIONS(5241), - [anon_sym_export] = ACTIONS(5239), - [anon_sym_alias] = ACTIONS(5239), - [anon_sym_let] = ACTIONS(5239), - [anon_sym_let_DASHenv] = ACTIONS(5239), - [anon_sym_mut] = ACTIONS(5239), - [anon_sym_const] = ACTIONS(5239), - [anon_sym_SEMI] = ACTIONS(5239), - [sym_cmd_identifier] = ACTIONS(5239), - [anon_sym_LF] = ACTIONS(5241), - [anon_sym_def] = ACTIONS(5239), - [anon_sym_export_DASHenv] = ACTIONS(5239), - [anon_sym_extern] = ACTIONS(5239), - [anon_sym_module] = ACTIONS(5239), - [anon_sym_use] = ACTIONS(5239), - [anon_sym_LBRACK] = ACTIONS(5239), - [anon_sym_LPAREN] = ACTIONS(5239), - [anon_sym_DOLLAR] = ACTIONS(5239), - [anon_sym_error] = ACTIONS(5239), - [anon_sym_DASH_DASH] = ACTIONS(5239), - [anon_sym_DASH] = ACTIONS(5239), - [anon_sym_break] = ACTIONS(5239), - [anon_sym_continue] = ACTIONS(5239), - [anon_sym_for] = ACTIONS(5239), - [anon_sym_loop] = ACTIONS(5239), - [anon_sym_while] = ACTIONS(5239), - [anon_sym_do] = ACTIONS(5239), - [anon_sym_if] = ACTIONS(5239), - [anon_sym_match] = ACTIONS(5239), - [anon_sym_LBRACE] = ACTIONS(5239), - [anon_sym_DOT_DOT] = ACTIONS(5239), - [anon_sym_try] = ACTIONS(5239), - [anon_sym_return] = ACTIONS(5239), - [anon_sym_source] = ACTIONS(5239), - [anon_sym_source_DASHenv] = ACTIONS(5239), - [anon_sym_register] = ACTIONS(5239), - [anon_sym_hide] = ACTIONS(5239), - [anon_sym_hide_DASHenv] = ACTIONS(5239), - [anon_sym_overlay] = ACTIONS(5239), - [anon_sym_as] = ACTIONS(5239), - [anon_sym_where] = ACTIONS(5239), - [anon_sym_not] = ACTIONS(5239), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5239), - [anon_sym_DOT_DOT_LT] = ACTIONS(5239), - [anon_sym_null] = ACTIONS(5239), - [anon_sym_true] = ACTIONS(5239), - [anon_sym_false] = ACTIONS(5239), - [aux_sym__val_number_decimal_token1] = ACTIONS(5239), - [aux_sym__val_number_decimal_token2] = ACTIONS(5239), - [anon_sym_DOT2] = ACTIONS(5239), - [aux_sym__val_number_decimal_token3] = ACTIONS(5239), - [aux_sym__val_number_token1] = ACTIONS(5239), - [aux_sym__val_number_token2] = ACTIONS(5239), - [aux_sym__val_number_token3] = ACTIONS(5239), - [aux_sym__val_number_token4] = ACTIONS(5239), - [aux_sym__val_number_token5] = ACTIONS(5239), - [aux_sym__val_number_token6] = ACTIONS(5239), - [anon_sym_0b] = ACTIONS(5239), - [anon_sym_0o] = ACTIONS(5239), - [anon_sym_0x] = ACTIONS(5239), - [sym_val_date] = ACTIONS(5239), - [anon_sym_DQUOTE] = ACTIONS(5239), - [sym__str_single_quotes] = ACTIONS(5239), - [sym__str_back_ticks] = ACTIONS(5239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5239), - [anon_sym_CARET] = ACTIONS(5239), + [2647] = { + [sym_comment] = STATE(2647), + [ts_builtin_sym_end] = ACTIONS(1289), + [anon_sym_SEMI] = ACTIONS(1287), + [anon_sym_LF] = ACTIONS(1289), + [anon_sym_LBRACK] = ACTIONS(1287), + [anon_sym_LPAREN] = ACTIONS(1287), + [anon_sym_PIPE] = ACTIONS(1287), + [anon_sym_DOLLAR] = ACTIONS(1287), + [anon_sym_GT] = ACTIONS(1287), + [anon_sym_DASH_DASH] = ACTIONS(1287), + [anon_sym_DASH] = ACTIONS(1287), + [anon_sym_in] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1287), + [anon_sym_DOT_DOT] = ACTIONS(1287), + [anon_sym_STAR] = ACTIONS(1287), + [anon_sym_STAR_STAR] = ACTIONS(1287), + [anon_sym_PLUS_PLUS] = ACTIONS(1287), + [anon_sym_SLASH] = ACTIONS(1287), + [anon_sym_mod] = ACTIONS(1287), + [anon_sym_SLASH_SLASH] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1287), + [anon_sym_bit_DASHshl] = ACTIONS(1287), + [anon_sym_bit_DASHshr] = ACTIONS(1287), + [anon_sym_EQ_EQ] = ACTIONS(1287), + [anon_sym_BANG_EQ] = ACTIONS(1287), + [anon_sym_LT2] = ACTIONS(1287), + [anon_sym_LT_EQ] = ACTIONS(1287), + [anon_sym_GT_EQ] = ACTIONS(1287), + [anon_sym_not_DASHin] = ACTIONS(1287), + [anon_sym_starts_DASHwith] = ACTIONS(1287), + [anon_sym_ends_DASHwith] = ACTIONS(1287), + [anon_sym_EQ_TILDE] = ACTIONS(1287), + [anon_sym_BANG_TILDE] = ACTIONS(1287), + [anon_sym_bit_DASHand] = ACTIONS(1287), + [anon_sym_bit_DASHxor] = ACTIONS(1287), + [anon_sym_bit_DASHor] = ACTIONS(1287), + [anon_sym_and] = ACTIONS(1287), + [anon_sym_xor] = ACTIONS(1287), + [anon_sym_or] = ACTIONS(1287), + [anon_sym_not] = ACTIONS(1287), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1287), + [anon_sym_DOT_DOT_LT] = ACTIONS(1287), + [anon_sym_null] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1287), + [anon_sym_false] = ACTIONS(1287), + [aux_sym__val_number_decimal_token1] = ACTIONS(1287), + [aux_sym__val_number_decimal_token2] = ACTIONS(1287), + [anon_sym_DOT2] = ACTIONS(1287), + [aux_sym__val_number_decimal_token3] = ACTIONS(1287), + [aux_sym__val_number_token1] = ACTIONS(1287), + [aux_sym__val_number_token2] = ACTIONS(1287), + [aux_sym__val_number_token3] = ACTIONS(1287), + [aux_sym__val_number_token4] = ACTIONS(1287), + [aux_sym__val_number_token5] = ACTIONS(1287), + [aux_sym__val_number_token6] = ACTIONS(1287), + [anon_sym_0b] = ACTIONS(1287), + [anon_sym_0o] = ACTIONS(1287), + [anon_sym_0x] = ACTIONS(1287), + [sym_val_date] = ACTIONS(1287), + [anon_sym_DQUOTE] = ACTIONS(1287), + [sym__str_single_quotes] = ACTIONS(1287), + [sym__str_back_ticks] = ACTIONS(1287), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1287), [anon_sym_POUND] = ACTIONS(113), }, - [2490] = { - [sym_comment] = STATE(2490), - [anon_sym_LBRACK] = ACTIONS(1249), - [anon_sym_COMMA] = ACTIONS(1249), - [anon_sym_LPAREN] = ACTIONS(1249), - [anon_sym_DOLLAR] = ACTIONS(1249), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1247), - [anon_sym_in] = ACTIONS(1247), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_RBRACE] = ACTIONS(1249), - [anon_sym__] = ACTIONS(1247), - [anon_sym_DOT_DOT] = ACTIONS(1247), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_STAR_STAR] = ACTIONS(1249), - [anon_sym_PLUS_PLUS] = ACTIONS(1249), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_mod] = ACTIONS(1249), - [anon_sym_SLASH_SLASH] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1247), - [anon_sym_bit_DASHshl] = ACTIONS(1249), - [anon_sym_bit_DASHshr] = ACTIONS(1249), - [anon_sym_EQ_EQ] = ACTIONS(1249), - [anon_sym_BANG_EQ] = ACTIONS(1249), - [anon_sym_LT2] = ACTIONS(1247), - [anon_sym_LT_EQ] = ACTIONS(1249), - [anon_sym_GT_EQ] = ACTIONS(1249), - [anon_sym_not_DASHin] = ACTIONS(1249), - [anon_sym_starts_DASHwith] = ACTIONS(1249), - [anon_sym_ends_DASHwith] = ACTIONS(1249), - [anon_sym_EQ_TILDE] = ACTIONS(1249), - [anon_sym_BANG_TILDE] = ACTIONS(1249), - [anon_sym_bit_DASHand] = ACTIONS(1249), - [anon_sym_bit_DASHxor] = ACTIONS(1249), - [anon_sym_bit_DASHor] = ACTIONS(1249), - [anon_sym_and] = ACTIONS(1249), - [anon_sym_xor] = ACTIONS(1249), - [anon_sym_or] = ACTIONS(1249), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1249), - [anon_sym_DOT_DOT_LT] = ACTIONS(1249), - [anon_sym_null] = ACTIONS(1249), - [anon_sym_true] = ACTIONS(1249), - [anon_sym_false] = ACTIONS(1249), - [aux_sym__val_number_decimal_token1] = ACTIONS(1247), - [aux_sym__val_number_decimal_token2] = ACTIONS(1249), - [anon_sym_DOT2] = ACTIONS(1247), - [aux_sym__val_number_decimal_token3] = ACTIONS(1249), - [aux_sym__val_number_token1] = ACTIONS(1249), - [aux_sym__val_number_token2] = ACTIONS(1249), - [aux_sym__val_number_token3] = ACTIONS(1249), - [aux_sym__val_number_token4] = ACTIONS(1249), - [aux_sym__val_number_token5] = ACTIONS(1249), - [aux_sym__val_number_token6] = ACTIONS(1249), - [anon_sym_0b] = ACTIONS(1247), - [anon_sym_0o] = ACTIONS(1247), - [anon_sym_0x] = ACTIONS(1247), - [sym_val_date] = ACTIONS(1249), - [anon_sym_DQUOTE] = ACTIONS(1249), - [sym__str_single_quotes] = ACTIONS(1249), - [sym__str_back_ticks] = ACTIONS(1249), - [anon_sym_err_GT] = ACTIONS(1249), - [anon_sym_out_GT] = ACTIONS(1249), - [anon_sym_e_GT] = ACTIONS(1249), - [anon_sym_o_GT] = ACTIONS(1249), - [anon_sym_err_PLUSout_GT] = ACTIONS(1249), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1249), - [anon_sym_o_PLUSe_GT] = ACTIONS(1249), - [anon_sym_e_PLUSo_GT] = ACTIONS(1249), - [aux_sym_unquoted_token1] = ACTIONS(1247), - [anon_sym_POUND] = ACTIONS(3), - }, - [2491] = { - [sym_comment] = STATE(2491), - [ts_builtin_sym_end] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(1059), - [anon_sym_alias] = ACTIONS(1059), - [anon_sym_let] = ACTIONS(1059), - [anon_sym_let_DASHenv] = ACTIONS(1059), - [anon_sym_mut] = ACTIONS(1059), - [anon_sym_const] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [sym_cmd_identifier] = ACTIONS(1059), - [anon_sym_LF] = ACTIONS(1061), - [anon_sym_def] = ACTIONS(1059), - [anon_sym_export_DASHenv] = ACTIONS(1059), - [anon_sym_extern] = ACTIONS(1059), - [anon_sym_module] = ACTIONS(1059), - [anon_sym_use] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_error] = ACTIONS(1059), - [anon_sym_DASH_DASH] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_break] = ACTIONS(1059), - [anon_sym_continue] = ACTIONS(1059), - [anon_sym_for] = ACTIONS(1059), - [anon_sym_loop] = ACTIONS(1059), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_do] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1059), - [anon_sym_match] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_try] = ACTIONS(1059), - [anon_sym_return] = ACTIONS(1059), - [anon_sym_source] = ACTIONS(1059), - [anon_sym_source_DASHenv] = ACTIONS(1059), - [anon_sym_register] = ACTIONS(1059), - [anon_sym_hide] = ACTIONS(1059), - [anon_sym_hide_DASHenv] = ACTIONS(1059), - [anon_sym_overlay] = ACTIONS(1059), - [anon_sym_as] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(1059), - [anon_sym_not] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1059), - [anon_sym_DOT_DOT_LT] = ACTIONS(1059), - [anon_sym_null] = ACTIONS(1059), - [anon_sym_true] = ACTIONS(1059), - [anon_sym_false] = ACTIONS(1059), - [aux_sym__val_number_decimal_token1] = ACTIONS(1059), - [aux_sym__val_number_decimal_token2] = ACTIONS(1059), - [anon_sym_DOT2] = ACTIONS(1059), - [aux_sym__val_number_decimal_token3] = ACTIONS(1059), - [aux_sym__val_number_token1] = ACTIONS(1059), - [aux_sym__val_number_token2] = ACTIONS(1059), - [aux_sym__val_number_token3] = ACTIONS(1059), - [aux_sym__val_number_token4] = ACTIONS(1059), - [aux_sym__val_number_token5] = ACTIONS(1059), - [aux_sym__val_number_token6] = ACTIONS(1059), - [anon_sym_0b] = ACTIONS(1059), - [anon_sym_0o] = ACTIONS(1059), - [anon_sym_0x] = ACTIONS(1059), - [sym_val_date] = ACTIONS(1059), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym__str_single_quotes] = ACTIONS(1059), - [sym__str_back_ticks] = ACTIONS(1059), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1059), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1059), - [anon_sym_CARET] = ACTIONS(1059), + [2648] = { + [sym_comment] = STATE(2648), + [ts_builtin_sym_end] = ACTIONS(1074), + [anon_sym_SEMI] = ACTIONS(1072), + [anon_sym_LF] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1072), + [anon_sym_LPAREN] = ACTIONS(1072), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_DOLLAR] = ACTIONS(1072), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_DASH_DASH] = ACTIONS(1072), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_in] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_DOT_DOT] = ACTIONS(1072), + [anon_sym_STAR] = ACTIONS(1076), + [anon_sym_STAR_STAR] = ACTIONS(1076), + [anon_sym_PLUS_PLUS] = ACTIONS(1076), + [anon_sym_SLASH] = ACTIONS(1076), + [anon_sym_mod] = ACTIONS(1076), + [anon_sym_SLASH_SLASH] = ACTIONS(1076), + [anon_sym_PLUS] = ACTIONS(1076), + [anon_sym_bit_DASHshl] = ACTIONS(1076), + [anon_sym_bit_DASHshr] = ACTIONS(1076), + [anon_sym_EQ_EQ] = ACTIONS(1076), + [anon_sym_BANG_EQ] = ACTIONS(1076), + [anon_sym_LT2] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1076), + [anon_sym_GT_EQ] = ACTIONS(1076), + [anon_sym_not_DASHin] = ACTIONS(1076), + [anon_sym_starts_DASHwith] = ACTIONS(1076), + [anon_sym_ends_DASHwith] = ACTIONS(1076), + [anon_sym_EQ_TILDE] = ACTIONS(1076), + [anon_sym_BANG_TILDE] = ACTIONS(1076), + [anon_sym_bit_DASHand] = ACTIONS(1076), + [anon_sym_bit_DASHxor] = ACTIONS(1076), + [anon_sym_bit_DASHor] = ACTIONS(1076), + [anon_sym_and] = ACTIONS(1076), + [anon_sym_xor] = ACTIONS(1076), + [anon_sym_or] = ACTIONS(1076), + [anon_sym_not] = ACTIONS(1072), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1072), + [anon_sym_DOT_DOT_LT] = ACTIONS(1072), + [anon_sym_null] = ACTIONS(1072), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [aux_sym__val_number_decimal_token1] = ACTIONS(1072), + [aux_sym__val_number_decimal_token2] = ACTIONS(1072), + [anon_sym_DOT2] = ACTIONS(1072), + [aux_sym__val_number_decimal_token3] = ACTIONS(1072), + [aux_sym__val_number_token1] = ACTIONS(1072), + [aux_sym__val_number_token2] = ACTIONS(1072), + [aux_sym__val_number_token3] = ACTIONS(1072), + [aux_sym__val_number_token4] = ACTIONS(1072), + [aux_sym__val_number_token5] = ACTIONS(1072), + [aux_sym__val_number_token6] = ACTIONS(1072), + [anon_sym_0b] = ACTIONS(1072), + [anon_sym_0o] = ACTIONS(1072), + [anon_sym_0x] = ACTIONS(1072), + [sym_val_date] = ACTIONS(1072), + [anon_sym_DQUOTE] = ACTIONS(1072), + [sym__str_single_quotes] = ACTIONS(1072), + [sym__str_back_ticks] = ACTIONS(1072), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1072), [anon_sym_POUND] = ACTIONS(113), }, - [2492] = { - [sym_comment] = STATE(2492), - [anon_sym_LBRACK] = ACTIONS(1170), - [anon_sym_COMMA] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1170), - [anon_sym_DOLLAR] = ACTIONS(1170), - [anon_sym_GT] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1168), - [anon_sym_in] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1170), - [anon_sym_RBRACE] = ACTIONS(1170), - [anon_sym__] = ACTIONS(1168), - [anon_sym_DOT_DOT] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_STAR_STAR] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1170), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_mod] = ACTIONS(1170), - [anon_sym_SLASH_SLASH] = ACTIONS(1170), - [anon_sym_PLUS] = ACTIONS(1168), - [anon_sym_bit_DASHshl] = ACTIONS(1170), - [anon_sym_bit_DASHshr] = ACTIONS(1170), - [anon_sym_EQ_EQ] = ACTIONS(1170), - [anon_sym_BANG_EQ] = ACTIONS(1170), - [anon_sym_LT2] = ACTIONS(1168), - [anon_sym_LT_EQ] = ACTIONS(1170), - [anon_sym_GT_EQ] = ACTIONS(1170), - [anon_sym_not_DASHin] = ACTIONS(1170), - [anon_sym_starts_DASHwith] = ACTIONS(1170), - [anon_sym_ends_DASHwith] = ACTIONS(1170), - [anon_sym_EQ_TILDE] = ACTIONS(1170), - [anon_sym_BANG_TILDE] = ACTIONS(1170), - [anon_sym_bit_DASHand] = ACTIONS(1170), - [anon_sym_bit_DASHxor] = ACTIONS(1170), - [anon_sym_bit_DASHor] = ACTIONS(1170), - [anon_sym_and] = ACTIONS(1170), - [anon_sym_xor] = ACTIONS(1170), - [anon_sym_or] = ACTIONS(1170), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1170), - [anon_sym_DOT_DOT_LT] = ACTIONS(1170), - [anon_sym_null] = ACTIONS(1170), - [anon_sym_true] = ACTIONS(1170), - [anon_sym_false] = ACTIONS(1170), - [aux_sym__val_number_decimal_token1] = ACTIONS(1168), - [aux_sym__val_number_decimal_token2] = ACTIONS(1170), - [anon_sym_DOT2] = ACTIONS(1168), - [aux_sym__val_number_decimal_token3] = ACTIONS(1170), - [aux_sym__val_number_token1] = ACTIONS(1170), - [aux_sym__val_number_token2] = ACTIONS(1170), - [aux_sym__val_number_token3] = ACTIONS(1170), - [aux_sym__val_number_token4] = ACTIONS(1170), - [aux_sym__val_number_token5] = ACTIONS(1170), - [aux_sym__val_number_token6] = ACTIONS(1170), - [anon_sym_0b] = ACTIONS(1168), - [anon_sym_0o] = ACTIONS(1168), - [anon_sym_0x] = ACTIONS(1168), - [sym_val_date] = ACTIONS(1170), - [anon_sym_DQUOTE] = ACTIONS(1170), - [sym__str_single_quotes] = ACTIONS(1170), - [sym__str_back_ticks] = ACTIONS(1170), - [anon_sym_err_GT] = ACTIONS(1170), - [anon_sym_out_GT] = ACTIONS(1170), - [anon_sym_e_GT] = ACTIONS(1170), - [anon_sym_o_GT] = ACTIONS(1170), - [anon_sym_err_PLUSout_GT] = ACTIONS(1170), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1170), - [anon_sym_o_PLUSe_GT] = ACTIONS(1170), - [anon_sym_e_PLUSo_GT] = ACTIONS(1170), - [aux_sym_unquoted_token1] = ACTIONS(1168), - [anon_sym_POUND] = ACTIONS(3), - }, - [2493] = { - [sym_comment] = STATE(2493), - [ts_builtin_sym_end] = ACTIONS(1065), - [anon_sym_export] = ACTIONS(1063), - [anon_sym_alias] = ACTIONS(1063), - [anon_sym_let] = ACTIONS(1063), - [anon_sym_let_DASHenv] = ACTIONS(1063), - [anon_sym_mut] = ACTIONS(1063), - [anon_sym_const] = ACTIONS(1063), - [anon_sym_SEMI] = ACTIONS(1063), - [sym_cmd_identifier] = ACTIONS(1063), - [anon_sym_LF] = ACTIONS(1065), - [anon_sym_def] = ACTIONS(1063), - [anon_sym_export_DASHenv] = ACTIONS(1063), - [anon_sym_extern] = ACTIONS(1063), - [anon_sym_module] = ACTIONS(1063), - [anon_sym_use] = ACTIONS(1063), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_error] = ACTIONS(1063), - [anon_sym_DASH_DASH] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_break] = ACTIONS(1063), - [anon_sym_continue] = ACTIONS(1063), - [anon_sym_for] = ACTIONS(1063), - [anon_sym_loop] = ACTIONS(1063), - [anon_sym_while] = ACTIONS(1063), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_if] = ACTIONS(1063), - [anon_sym_match] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1063), - [anon_sym_return] = ACTIONS(1063), - [anon_sym_source] = ACTIONS(1063), - [anon_sym_source_DASHenv] = ACTIONS(1063), - [anon_sym_register] = ACTIONS(1063), - [anon_sym_hide] = ACTIONS(1063), - [anon_sym_hide_DASHenv] = ACTIONS(1063), - [anon_sym_overlay] = ACTIONS(1063), - [anon_sym_as] = ACTIONS(1063), - [anon_sym_where] = ACTIONS(1063), - [anon_sym_not] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1063), - [anon_sym_DOT_DOT_LT] = ACTIONS(1063), - [anon_sym_null] = ACTIONS(1063), - [anon_sym_true] = ACTIONS(1063), - [anon_sym_false] = ACTIONS(1063), - [aux_sym__val_number_decimal_token1] = ACTIONS(1063), - [aux_sym__val_number_decimal_token2] = ACTIONS(1063), - [anon_sym_DOT2] = ACTIONS(1063), - [aux_sym__val_number_decimal_token3] = ACTIONS(1063), - [aux_sym__val_number_token1] = ACTIONS(1063), - [aux_sym__val_number_token2] = ACTIONS(1063), - [aux_sym__val_number_token3] = ACTIONS(1063), - [aux_sym__val_number_token4] = ACTIONS(1063), - [aux_sym__val_number_token5] = ACTIONS(1063), - [aux_sym__val_number_token6] = ACTIONS(1063), - [anon_sym_0b] = ACTIONS(1063), - [anon_sym_0o] = ACTIONS(1063), - [anon_sym_0x] = ACTIONS(1063), - [sym_val_date] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [sym__str_single_quotes] = ACTIONS(1063), - [sym__str_back_ticks] = ACTIONS(1063), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1063), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1063), - [anon_sym_CARET] = ACTIONS(1063), + [2649] = { + [sym_comment] = STATE(2649), + [ts_builtin_sym_end] = ACTIONS(1181), + [anon_sym_SEMI] = ACTIONS(1179), + [anon_sym_LF] = ACTIONS(1181), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_PIPE] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(6626), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(6628), + [anon_sym_in] = ACTIONS(6630), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(6632), + [anon_sym_STAR_STAR] = ACTIONS(6634), + [anon_sym_PLUS_PLUS] = ACTIONS(6634), + [anon_sym_SLASH] = ACTIONS(6632), + [anon_sym_mod] = ACTIONS(6632), + [anon_sym_SLASH_SLASH] = ACTIONS(6632), + [anon_sym_PLUS] = ACTIONS(6628), + [anon_sym_bit_DASHshl] = ACTIONS(6636), + [anon_sym_bit_DASHshr] = ACTIONS(6636), + [anon_sym_EQ_EQ] = ACTIONS(6626), + [anon_sym_BANG_EQ] = ACTIONS(6626), + [anon_sym_LT2] = ACTIONS(6626), + [anon_sym_LT_EQ] = ACTIONS(6626), + [anon_sym_GT_EQ] = ACTIONS(6626), + [anon_sym_not_DASHin] = ACTIONS(6630), + [anon_sym_starts_DASHwith] = ACTIONS(6630), + [anon_sym_ends_DASHwith] = ACTIONS(6630), + [anon_sym_EQ_TILDE] = ACTIONS(1179), + [anon_sym_BANG_TILDE] = ACTIONS(1179), + [anon_sym_bit_DASHand] = ACTIONS(1179), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_not] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1179), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, - [2494] = { - [sym_block] = STATE(2657), - [sym_comment] = STATE(2494), - [anon_sym_export] = ACTIONS(6196), - [anon_sym_alias] = ACTIONS(6196), - [anon_sym_let] = ACTIONS(6196), - [anon_sym_let_DASHenv] = ACTIONS(6196), - [anon_sym_mut] = ACTIONS(6196), - [anon_sym_const] = ACTIONS(6196), - [anon_sym_SEMI] = ACTIONS(6196), - [sym_cmd_identifier] = ACTIONS(6196), - [anon_sym_LF] = ACTIONS(6198), - [anon_sym_def] = ACTIONS(6196), - [anon_sym_export_DASHenv] = ACTIONS(6196), - [anon_sym_extern] = ACTIONS(6196), - [anon_sym_module] = ACTIONS(6196), - [anon_sym_use] = ACTIONS(6196), - [anon_sym_LBRACK] = ACTIONS(6196), - [anon_sym_LPAREN] = ACTIONS(6196), - [anon_sym_RPAREN] = ACTIONS(6196), - [anon_sym_DOLLAR] = ACTIONS(6196), - [anon_sym_error] = ACTIONS(6196), - [anon_sym_DASH] = ACTIONS(6196), - [anon_sym_break] = ACTIONS(6196), - [anon_sym_continue] = ACTIONS(6196), - [anon_sym_for] = ACTIONS(6196), - [anon_sym_loop] = ACTIONS(6196), - [anon_sym_while] = ACTIONS(6196), - [anon_sym_do] = ACTIONS(6196), - [anon_sym_if] = ACTIONS(6196), - [anon_sym_match] = ACTIONS(6196), - [anon_sym_LBRACE] = ACTIONS(6200), - [anon_sym_RBRACE] = ACTIONS(6196), - [anon_sym_DOT_DOT] = ACTIONS(6196), - [anon_sym_try] = ACTIONS(6196), - [anon_sym_return] = ACTIONS(6196), - [anon_sym_source] = ACTIONS(6196), - [anon_sym_source_DASHenv] = ACTIONS(6196), - [anon_sym_register] = ACTIONS(6196), - [anon_sym_hide] = ACTIONS(6196), - [anon_sym_hide_DASHenv] = ACTIONS(6196), - [anon_sym_overlay] = ACTIONS(6196), - [anon_sym_where] = ACTIONS(6196), - [anon_sym_not] = ACTIONS(6196), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6196), - [anon_sym_DOT_DOT_LT] = ACTIONS(6196), - [anon_sym_null] = ACTIONS(6196), - [anon_sym_true] = ACTIONS(6196), - [anon_sym_false] = ACTIONS(6196), - [aux_sym__val_number_decimal_token1] = ACTIONS(6196), - [aux_sym__val_number_decimal_token2] = ACTIONS(6196), - [anon_sym_DOT2] = ACTIONS(6196), - [aux_sym__val_number_decimal_token3] = ACTIONS(6196), - [aux_sym__val_number_token1] = ACTIONS(6196), - [aux_sym__val_number_token2] = ACTIONS(6196), - [aux_sym__val_number_token3] = ACTIONS(6196), - [aux_sym__val_number_token4] = ACTIONS(6196), - [aux_sym__val_number_token5] = ACTIONS(6196), - [aux_sym__val_number_token6] = ACTIONS(6196), - [anon_sym_0b] = ACTIONS(6196), - [anon_sym_0o] = ACTIONS(6196), - [anon_sym_0x] = ACTIONS(6196), - [sym_val_date] = ACTIONS(6196), - [anon_sym_DQUOTE] = ACTIONS(6196), - [sym__str_single_quotes] = ACTIONS(6196), - [sym__str_back_ticks] = ACTIONS(6196), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6196), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6196), - [anon_sym_CARET] = ACTIONS(6196), + [2650] = { + [sym_comment] = STATE(2650), + [ts_builtin_sym_end] = ACTIONS(1173), + [anon_sym_SEMI] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_PIPE] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, - [2495] = { - [sym_comment] = STATE(2495), - [anon_sym_LBRACK] = ACTIONS(938), - [anon_sym_COMMA] = ACTIONS(938), - [anon_sym_RBRACK] = ACTIONS(938), - [anon_sym_LPAREN] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(938), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(938), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_STAR_STAR] = ACTIONS(938), - [anon_sym_PLUS_PLUS] = ACTIONS(938), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(938), - [anon_sym_SLASH_SLASH] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(938), - [anon_sym_bit_DASHshr] = ACTIONS(938), - [anon_sym_EQ_EQ] = ACTIONS(938), - [anon_sym_BANG_EQ] = ACTIONS(938), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(938), - [anon_sym_GT_EQ] = ACTIONS(938), - [anon_sym_not_DASHin] = ACTIONS(938), - [anon_sym_starts_DASHwith] = ACTIONS(938), - [anon_sym_ends_DASHwith] = ACTIONS(938), - [anon_sym_EQ_TILDE] = ACTIONS(938), - [anon_sym_BANG_TILDE] = ACTIONS(938), - [anon_sym_bit_DASHand] = ACTIONS(938), - [anon_sym_bit_DASHxor] = ACTIONS(938), - [anon_sym_bit_DASHor] = ACTIONS(938), - [anon_sym_and] = ACTIONS(938), - [anon_sym_xor] = ACTIONS(938), - [anon_sym_or] = ACTIONS(938), - [anon_sym_DOT_DOT_EQ] = ACTIONS(938), - [anon_sym_DOT_DOT_LT] = ACTIONS(938), - [anon_sym_null] = ACTIONS(938), - [anon_sym_true] = ACTIONS(938), - [anon_sym_false] = ACTIONS(938), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(938), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(938), - [aux_sym__val_number_token1] = ACTIONS(938), - [aux_sym__val_number_token2] = ACTIONS(938), - [aux_sym__val_number_token3] = ACTIONS(938), - [aux_sym__val_number_token4] = ACTIONS(938), - [aux_sym__val_number_token5] = ACTIONS(938), - [aux_sym__val_number_token6] = ACTIONS(938), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(938), - [sym__str_single_quotes] = ACTIONS(938), - [sym__str_back_ticks] = ACTIONS(938), - [anon_sym_err_GT] = ACTIONS(938), - [anon_sym_out_GT] = ACTIONS(938), - [anon_sym_e_GT] = ACTIONS(938), - [anon_sym_o_GT] = ACTIONS(938), - [anon_sym_err_PLUSout_GT] = ACTIONS(938), - [anon_sym_out_PLUSerr_GT] = ACTIONS(938), - [anon_sym_o_PLUSe_GT] = ACTIONS(938), - [anon_sym_e_PLUSo_GT] = ACTIONS(938), - [aux_sym__unquoted_in_list_token1] = ACTIONS(936), - [anon_sym_POUND] = ACTIONS(3), - }, - [2496] = { - [sym_comment] = STATE(2496), - [ts_builtin_sym_end] = ACTIONS(1290), - [anon_sym_export] = ACTIONS(1243), - [anon_sym_alias] = ACTIONS(1243), - [anon_sym_let] = ACTIONS(1243), - [anon_sym_let_DASHenv] = ACTIONS(1243), - [anon_sym_mut] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1243), - [sym_cmd_identifier] = ACTIONS(1243), - [anon_sym_LF] = ACTIONS(1290), - [anon_sym_def] = ACTIONS(1243), - [anon_sym_export_DASHenv] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1243), - [anon_sym_module] = ACTIONS(1243), - [anon_sym_use] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_error] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_loop] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_match] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_try] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_source] = ACTIONS(1243), - [anon_sym_source_DASHenv] = ACTIONS(1243), - [anon_sym_register] = ACTIONS(1243), - [anon_sym_hide] = ACTIONS(1243), - [anon_sym_hide_DASHenv] = ACTIONS(1243), - [anon_sym_overlay] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1243), - [anon_sym_where] = ACTIONS(1243), - [anon_sym_not] = ACTIONS(1243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1243), - [anon_sym_DOT_DOT_LT] = ACTIONS(1243), - [anon_sym_null] = ACTIONS(1243), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_decimal_token2] = ACTIONS(1243), - [anon_sym_DOT2] = ACTIONS(1243), - [aux_sym__val_number_decimal_token3] = ACTIONS(1243), - [aux_sym__val_number_token1] = ACTIONS(1243), - [aux_sym__val_number_token2] = ACTIONS(1243), - [aux_sym__val_number_token3] = ACTIONS(1243), - [aux_sym__val_number_token4] = ACTIONS(1243), - [aux_sym__val_number_token5] = ACTIONS(1243), - [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_0b] = ACTIONS(1243), - [anon_sym_0o] = ACTIONS(1243), - [anon_sym_0x] = ACTIONS(1243), - [sym_val_date] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym__str_single_quotes] = ACTIONS(1243), - [sym__str_back_ticks] = ACTIONS(1243), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1243), - [anon_sym_CARET] = ACTIONS(1243), + [2651] = { + [sym_comment] = STATE(2651), + [ts_builtin_sym_end] = ACTIONS(1063), + [anon_sym_SEMI] = ACTIONS(1061), + [anon_sym_LF] = ACTIONS(1063), + [anon_sym_LBRACK] = ACTIONS(1061), + [anon_sym_LPAREN] = ACTIONS(1061), + [anon_sym_PIPE] = ACTIONS(1061), + [anon_sym_DOLLAR] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_DASH_DASH] = ACTIONS(1061), + [anon_sym_DASH] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(1061), + [anon_sym_DOT_DOT] = ACTIONS(1061), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_STAR_STAR] = ACTIONS(1061), + [anon_sym_PLUS_PLUS] = ACTIONS(1061), + [anon_sym_SLASH] = ACTIONS(1061), + [anon_sym_mod] = ACTIONS(1061), + [anon_sym_SLASH_SLASH] = ACTIONS(1061), + [anon_sym_PLUS] = ACTIONS(1061), + [anon_sym_bit_DASHshl] = ACTIONS(1061), + [anon_sym_bit_DASHshr] = ACTIONS(1061), + [anon_sym_EQ_EQ] = ACTIONS(1061), + [anon_sym_BANG_EQ] = ACTIONS(1061), + [anon_sym_LT2] = ACTIONS(1061), + [anon_sym_LT_EQ] = ACTIONS(1061), + [anon_sym_GT_EQ] = ACTIONS(1061), + [anon_sym_not_DASHin] = ACTIONS(1061), + [anon_sym_starts_DASHwith] = ACTIONS(1061), + [anon_sym_ends_DASHwith] = ACTIONS(1061), + [anon_sym_EQ_TILDE] = ACTIONS(1061), + [anon_sym_BANG_TILDE] = ACTIONS(1061), + [anon_sym_bit_DASHand] = ACTIONS(1061), + [anon_sym_bit_DASHxor] = ACTIONS(1061), + [anon_sym_bit_DASHor] = ACTIONS(1061), + [anon_sym_and] = ACTIONS(1061), + [anon_sym_xor] = ACTIONS(1061), + [anon_sym_or] = ACTIONS(1061), + [anon_sym_not] = ACTIONS(1061), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1061), + [anon_sym_DOT_DOT_LT] = ACTIONS(1061), + [anon_sym_null] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1061), + [anon_sym_false] = ACTIONS(1061), + [aux_sym__val_number_decimal_token1] = ACTIONS(1061), + [aux_sym__val_number_decimal_token2] = ACTIONS(1061), + [anon_sym_DOT2] = ACTIONS(1061), + [aux_sym__val_number_decimal_token3] = ACTIONS(1061), + [aux_sym__val_number_token1] = ACTIONS(1061), + [aux_sym__val_number_token2] = ACTIONS(1061), + [aux_sym__val_number_token3] = ACTIONS(1061), + [aux_sym__val_number_token4] = ACTIONS(1061), + [aux_sym__val_number_token5] = ACTIONS(1061), + [aux_sym__val_number_token6] = ACTIONS(1061), + [anon_sym_0b] = ACTIONS(1061), + [anon_sym_0o] = ACTIONS(1061), + [anon_sym_0x] = ACTIONS(1061), + [sym_val_date] = ACTIONS(1061), + [anon_sym_DQUOTE] = ACTIONS(1061), + [sym__str_single_quotes] = ACTIONS(1061), + [sym__str_back_ticks] = ACTIONS(1061), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1061), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1061), [anon_sym_POUND] = ACTIONS(113), }, - [2497] = { - [sym_comment] = STATE(2497), - [anon_sym_LBRACK] = ACTIONS(1290), - [anon_sym_COMMA] = ACTIONS(1290), - [anon_sym_RBRACK] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(1290), - [anon_sym_DOLLAR] = ACTIONS(1290), - [anon_sym_GT] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1290), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_in] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1290), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1243), - [anon_sym_STAR_STAR] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1290), - [anon_sym_SLASH] = ACTIONS(1243), - [anon_sym_mod] = ACTIONS(1290), - [anon_sym_SLASH_SLASH] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1243), - [anon_sym_bit_DASHshl] = ACTIONS(1290), - [anon_sym_bit_DASHshr] = ACTIONS(1290), - [anon_sym_EQ_EQ] = ACTIONS(1290), - [anon_sym_BANG_EQ] = ACTIONS(1290), - [anon_sym_LT2] = ACTIONS(1243), - [anon_sym_LT_EQ] = ACTIONS(1290), - [anon_sym_GT_EQ] = ACTIONS(1290), - [anon_sym_not_DASHin] = ACTIONS(1290), - [anon_sym_starts_DASHwith] = ACTIONS(1290), - [anon_sym_ends_DASHwith] = ACTIONS(1290), - [anon_sym_EQ_TILDE] = ACTIONS(1290), - [anon_sym_BANG_TILDE] = ACTIONS(1290), - [anon_sym_bit_DASHand] = ACTIONS(1290), - [anon_sym_bit_DASHxor] = ACTIONS(1290), - [anon_sym_bit_DASHor] = ACTIONS(1290), - [anon_sym_and] = ACTIONS(1290), - [anon_sym_xor] = ACTIONS(1290), - [anon_sym_or] = ACTIONS(1290), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1290), - [anon_sym_DOT_DOT_LT] = ACTIONS(1290), - [anon_sym_null] = ACTIONS(1290), - [anon_sym_true] = ACTIONS(1290), - [anon_sym_false] = ACTIONS(1290), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_decimal_token2] = ACTIONS(1290), - [anon_sym_DOT2] = ACTIONS(1243), - [aux_sym__val_number_decimal_token3] = ACTIONS(1290), - [aux_sym__val_number_token1] = ACTIONS(1290), - [aux_sym__val_number_token2] = ACTIONS(1290), - [aux_sym__val_number_token3] = ACTIONS(1290), - [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(1243), - [anon_sym_0o] = ACTIONS(1243), - [anon_sym_0x] = ACTIONS(1243), - [sym_val_date] = ACTIONS(1290), - [anon_sym_DQUOTE] = ACTIONS(1290), - [sym__str_single_quotes] = ACTIONS(1290), - [sym__str_back_ticks] = ACTIONS(1290), - [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), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1243), - [anon_sym_POUND] = ACTIONS(3), - }, - [2498] = { - [sym_comment] = STATE(2498), - [anon_sym_LBRACK] = ACTIONS(1416), - [anon_sym_COMMA] = ACTIONS(1416), - [anon_sym_RBRACK] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1416), - [anon_sym_DOLLAR] = ACTIONS(1416), - [anon_sym_GT] = ACTIONS(1414), - [anon_sym_DASH_DASH] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_in] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1416), - [anon_sym_DOT_DOT] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_STAR_STAR] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(1414), - [anon_sym_mod] = ACTIONS(1416), - [anon_sym_SLASH_SLASH] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_bit_DASHshl] = ACTIONS(1416), - [anon_sym_bit_DASHshr] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1416), - [anon_sym_BANG_EQ] = ACTIONS(1416), - [anon_sym_LT2] = ACTIONS(1414), - [anon_sym_LT_EQ] = ACTIONS(1416), - [anon_sym_GT_EQ] = ACTIONS(1416), - [anon_sym_not_DASHin] = ACTIONS(1416), - [anon_sym_starts_DASHwith] = ACTIONS(1416), - [anon_sym_ends_DASHwith] = ACTIONS(1416), - [anon_sym_EQ_TILDE] = ACTIONS(1416), - [anon_sym_BANG_TILDE] = ACTIONS(1416), - [anon_sym_bit_DASHand] = ACTIONS(1416), - [anon_sym_bit_DASHxor] = ACTIONS(1416), - [anon_sym_bit_DASHor] = ACTIONS(1416), - [anon_sym_and] = ACTIONS(1416), - [anon_sym_xor] = ACTIONS(1416), - [anon_sym_or] = ACTIONS(1416), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1416), - [anon_sym_DOT_DOT_LT] = ACTIONS(1416), - [anon_sym_null] = ACTIONS(1416), - [anon_sym_true] = ACTIONS(1416), - [anon_sym_false] = ACTIONS(1416), - [aux_sym__val_number_decimal_token1] = ACTIONS(1414), - [aux_sym__val_number_decimal_token2] = ACTIONS(1416), - [anon_sym_DOT2] = ACTIONS(1414), - [aux_sym__val_number_decimal_token3] = ACTIONS(1416), - [aux_sym__val_number_token1] = ACTIONS(1416), - [aux_sym__val_number_token2] = ACTIONS(1416), - [aux_sym__val_number_token3] = ACTIONS(1416), - [aux_sym__val_number_token4] = ACTIONS(1416), - [aux_sym__val_number_token5] = ACTIONS(1416), - [aux_sym__val_number_token6] = ACTIONS(1416), - [anon_sym_0b] = ACTIONS(1414), - [anon_sym_0o] = ACTIONS(1414), - [anon_sym_0x] = ACTIONS(1414), - [sym_val_date] = ACTIONS(1416), - [anon_sym_DQUOTE] = ACTIONS(1416), - [sym__str_single_quotes] = ACTIONS(1416), - [sym__str_back_ticks] = ACTIONS(1416), - [anon_sym_err_GT] = ACTIONS(1416), - [anon_sym_out_GT] = ACTIONS(1416), - [anon_sym_e_GT] = ACTIONS(1416), - [anon_sym_o_GT] = ACTIONS(1416), - [anon_sym_err_PLUSout_GT] = ACTIONS(1416), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1416), - [anon_sym_o_PLUSe_GT] = ACTIONS(1416), - [anon_sym_e_PLUSo_GT] = ACTIONS(1416), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1414), - [anon_sym_POUND] = ACTIONS(3), - }, - [2499] = { - [sym_comment] = STATE(2499), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_COMMA] = ACTIONS(1420), - [anon_sym_RBRACK] = ACTIONS(1420), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_DOLLAR] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_in] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_DOT_DOT] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_STAR_STAR] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_SLASH] = ACTIONS(1418), - [anon_sym_mod] = ACTIONS(1420), - [anon_sym_SLASH_SLASH] = ACTIONS(1420), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_bit_DASHshl] = ACTIONS(1420), - [anon_sym_bit_DASHshr] = ACTIONS(1420), - [anon_sym_EQ_EQ] = ACTIONS(1420), - [anon_sym_BANG_EQ] = ACTIONS(1420), - [anon_sym_LT2] = ACTIONS(1418), - [anon_sym_LT_EQ] = ACTIONS(1420), - [anon_sym_GT_EQ] = ACTIONS(1420), - [anon_sym_not_DASHin] = ACTIONS(1420), - [anon_sym_starts_DASHwith] = ACTIONS(1420), - [anon_sym_ends_DASHwith] = ACTIONS(1420), - [anon_sym_EQ_TILDE] = ACTIONS(1420), - [anon_sym_BANG_TILDE] = ACTIONS(1420), - [anon_sym_bit_DASHand] = ACTIONS(1420), - [anon_sym_bit_DASHxor] = ACTIONS(1420), - [anon_sym_bit_DASHor] = ACTIONS(1420), - [anon_sym_and] = ACTIONS(1420), - [anon_sym_xor] = ACTIONS(1420), - [anon_sym_or] = ACTIONS(1420), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1420), - [anon_sym_DOT_DOT_LT] = ACTIONS(1420), - [anon_sym_null] = ACTIONS(1420), - [anon_sym_true] = ACTIONS(1420), - [anon_sym_false] = ACTIONS(1420), - [aux_sym__val_number_decimal_token1] = ACTIONS(1418), - [aux_sym__val_number_decimal_token2] = ACTIONS(1420), - [anon_sym_DOT2] = ACTIONS(1418), - [aux_sym__val_number_decimal_token3] = ACTIONS(1420), - [aux_sym__val_number_token1] = ACTIONS(1420), - [aux_sym__val_number_token2] = ACTIONS(1420), - [aux_sym__val_number_token3] = ACTIONS(1420), - [aux_sym__val_number_token4] = ACTIONS(1420), - [aux_sym__val_number_token5] = ACTIONS(1420), - [aux_sym__val_number_token6] = ACTIONS(1420), - [anon_sym_0b] = ACTIONS(1418), - [anon_sym_0o] = ACTIONS(1418), - [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1420), - [anon_sym_DQUOTE] = ACTIONS(1420), - [sym__str_single_quotes] = ACTIONS(1420), - [sym__str_back_ticks] = ACTIONS(1420), - [anon_sym_err_GT] = ACTIONS(1420), - [anon_sym_out_GT] = ACTIONS(1420), - [anon_sym_e_GT] = ACTIONS(1420), - [anon_sym_o_GT] = ACTIONS(1420), - [anon_sym_err_PLUSout_GT] = ACTIONS(1420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1420), - [anon_sym_o_PLUSe_GT] = ACTIONS(1420), - [anon_sym_e_PLUSo_GT] = ACTIONS(1420), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1418), - [anon_sym_POUND] = ACTIONS(3), - }, - [2500] = { - [sym_val_record] = STATE(2666), - [sym_comment] = STATE(2500), - [anon_sym_export] = ACTIONS(6203), - [anon_sym_alias] = ACTIONS(6203), - [anon_sym_let] = ACTIONS(6203), - [anon_sym_let_DASHenv] = ACTIONS(6203), - [anon_sym_mut] = ACTIONS(6203), - [anon_sym_const] = ACTIONS(6203), - [anon_sym_SEMI] = ACTIONS(6203), - [sym_cmd_identifier] = ACTIONS(6203), - [anon_sym_LF] = ACTIONS(6205), - [anon_sym_def] = ACTIONS(6203), - [anon_sym_export_DASHenv] = ACTIONS(6203), - [anon_sym_extern] = ACTIONS(6203), - [anon_sym_module] = ACTIONS(6203), - [anon_sym_use] = ACTIONS(6203), - [anon_sym_LBRACK] = ACTIONS(6203), - [anon_sym_LPAREN] = ACTIONS(6203), - [anon_sym_RPAREN] = ACTIONS(6203), - [anon_sym_DOLLAR] = ACTIONS(6203), - [anon_sym_error] = ACTIONS(6203), - [anon_sym_DASH] = ACTIONS(6203), - [anon_sym_break] = ACTIONS(6203), - [anon_sym_continue] = ACTIONS(6203), - [anon_sym_for] = ACTIONS(6203), - [anon_sym_loop] = ACTIONS(6203), - [anon_sym_while] = ACTIONS(6203), - [anon_sym_do] = ACTIONS(6203), - [anon_sym_if] = ACTIONS(6203), - [anon_sym_match] = ACTIONS(6203), - [anon_sym_LBRACE] = ACTIONS(6203), - [anon_sym_RBRACE] = ACTIONS(6203), - [anon_sym_DOT_DOT] = ACTIONS(6203), - [anon_sym_try] = ACTIONS(6203), - [anon_sym_return] = ACTIONS(6203), - [anon_sym_source] = ACTIONS(6203), - [anon_sym_source_DASHenv] = ACTIONS(6203), - [anon_sym_register] = ACTIONS(6203), - [anon_sym_hide] = ACTIONS(6203), - [anon_sym_hide_DASHenv] = ACTIONS(6203), - [anon_sym_overlay] = ACTIONS(6203), - [anon_sym_where] = ACTIONS(6203), - [anon_sym_not] = ACTIONS(6203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6203), - [anon_sym_DOT_DOT_LT] = ACTIONS(6203), - [anon_sym_null] = ACTIONS(6203), - [anon_sym_true] = ACTIONS(6203), - [anon_sym_false] = ACTIONS(6203), - [aux_sym__val_number_decimal_token1] = ACTIONS(6203), - [aux_sym__val_number_decimal_token2] = ACTIONS(6203), - [anon_sym_DOT2] = ACTIONS(6203), - [aux_sym__val_number_decimal_token3] = ACTIONS(6203), - [aux_sym__val_number_token1] = ACTIONS(6203), - [aux_sym__val_number_token2] = ACTIONS(6203), - [aux_sym__val_number_token3] = ACTIONS(6203), - [aux_sym__val_number_token4] = ACTIONS(6203), - [aux_sym__val_number_token5] = ACTIONS(6203), - [aux_sym__val_number_token6] = ACTIONS(6203), - [anon_sym_0b] = ACTIONS(6203), - [anon_sym_0o] = ACTIONS(6203), - [anon_sym_0x] = ACTIONS(6203), - [sym_val_date] = ACTIONS(6203), - [anon_sym_DQUOTE] = ACTIONS(6203), - [sym__str_single_quotes] = ACTIONS(6203), - [sym__str_back_ticks] = ACTIONS(6203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6203), - [anon_sym_CARET] = ACTIONS(6203), + [2652] = { + [sym_comment] = STATE(2652), + [ts_builtin_sym_end] = ACTIONS(1173), + [anon_sym_SEMI] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_PIPE] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, - [2501] = { - [sym_val_record] = STATE(2667), - [sym_comment] = STATE(2501), - [anon_sym_export] = ACTIONS(6207), - [anon_sym_alias] = ACTIONS(6207), - [anon_sym_let] = ACTIONS(6207), - [anon_sym_let_DASHenv] = ACTIONS(6207), - [anon_sym_mut] = ACTIONS(6207), - [anon_sym_const] = ACTIONS(6207), - [anon_sym_SEMI] = ACTIONS(6207), - [sym_cmd_identifier] = ACTIONS(6207), - [anon_sym_LF] = ACTIONS(6209), - [anon_sym_def] = ACTIONS(6207), - [anon_sym_export_DASHenv] = ACTIONS(6207), - [anon_sym_extern] = ACTIONS(6207), - [anon_sym_module] = ACTIONS(6207), - [anon_sym_use] = ACTIONS(6207), - [anon_sym_LBRACK] = ACTIONS(6207), - [anon_sym_LPAREN] = ACTIONS(6207), - [anon_sym_RPAREN] = ACTIONS(6207), - [anon_sym_DOLLAR] = ACTIONS(6207), - [anon_sym_error] = ACTIONS(6207), - [anon_sym_DASH] = ACTIONS(6207), - [anon_sym_break] = ACTIONS(6207), - [anon_sym_continue] = ACTIONS(6207), - [anon_sym_for] = ACTIONS(6207), - [anon_sym_loop] = ACTIONS(6207), - [anon_sym_while] = ACTIONS(6207), - [anon_sym_do] = ACTIONS(6207), - [anon_sym_if] = ACTIONS(6207), - [anon_sym_match] = ACTIONS(6207), - [anon_sym_LBRACE] = ACTIONS(6207), - [anon_sym_RBRACE] = ACTIONS(6207), - [anon_sym_DOT_DOT] = ACTIONS(6207), - [anon_sym_try] = ACTIONS(6207), - [anon_sym_return] = ACTIONS(6207), - [anon_sym_source] = ACTIONS(6207), - [anon_sym_source_DASHenv] = ACTIONS(6207), - [anon_sym_register] = ACTIONS(6207), - [anon_sym_hide] = ACTIONS(6207), - [anon_sym_hide_DASHenv] = ACTIONS(6207), - [anon_sym_overlay] = ACTIONS(6207), - [anon_sym_where] = ACTIONS(6207), - [anon_sym_not] = ACTIONS(6207), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6207), - [anon_sym_DOT_DOT_LT] = ACTIONS(6207), - [anon_sym_null] = ACTIONS(6207), - [anon_sym_true] = ACTIONS(6207), - [anon_sym_false] = ACTIONS(6207), - [aux_sym__val_number_decimal_token1] = ACTIONS(6207), - [aux_sym__val_number_decimal_token2] = ACTIONS(6207), - [anon_sym_DOT2] = ACTIONS(6207), - [aux_sym__val_number_decimal_token3] = ACTIONS(6207), - [aux_sym__val_number_token1] = ACTIONS(6207), - [aux_sym__val_number_token2] = ACTIONS(6207), - [aux_sym__val_number_token3] = ACTIONS(6207), - [aux_sym__val_number_token4] = ACTIONS(6207), - [aux_sym__val_number_token5] = ACTIONS(6207), - [aux_sym__val_number_token6] = ACTIONS(6207), - [anon_sym_0b] = ACTIONS(6207), - [anon_sym_0o] = ACTIONS(6207), - [anon_sym_0x] = ACTIONS(6207), - [sym_val_date] = ACTIONS(6207), - [anon_sym_DQUOTE] = ACTIONS(6207), - [sym__str_single_quotes] = ACTIONS(6207), - [sym__str_back_ticks] = ACTIONS(6207), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6207), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6207), - [anon_sym_CARET] = ACTIONS(6207), + [2653] = { + [sym_comment] = STATE(2653), + [ts_builtin_sym_end] = ACTIONS(1181), + [anon_sym_SEMI] = ACTIONS(1179), + [anon_sym_LF] = ACTIONS(1181), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_PIPE] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(6632), + [anon_sym_STAR_STAR] = ACTIONS(6634), + [anon_sym_PLUS_PLUS] = ACTIONS(6634), + [anon_sym_SLASH] = ACTIONS(6632), + [anon_sym_mod] = ACTIONS(6632), + [anon_sym_SLASH_SLASH] = ACTIONS(6632), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_bit_DASHshl] = ACTIONS(1179), + [anon_sym_bit_DASHshr] = ACTIONS(1179), + [anon_sym_EQ_EQ] = ACTIONS(1179), + [anon_sym_BANG_EQ] = ACTIONS(1179), + [anon_sym_LT2] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1179), + [anon_sym_GT_EQ] = ACTIONS(1179), + [anon_sym_not_DASHin] = ACTIONS(1179), + [anon_sym_starts_DASHwith] = ACTIONS(1179), + [anon_sym_ends_DASHwith] = ACTIONS(1179), + [anon_sym_EQ_TILDE] = ACTIONS(1179), + [anon_sym_BANG_TILDE] = ACTIONS(1179), + [anon_sym_bit_DASHand] = ACTIONS(1179), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_not] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1179), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, - [2502] = { - [sym_comment] = STATE(2502), - [ts_builtin_sym_end] = ACTIONS(1290), - [anon_sym_export] = ACTIONS(1243), - [anon_sym_alias] = ACTIONS(1243), - [anon_sym_let] = ACTIONS(1243), - [anon_sym_let_DASHenv] = ACTIONS(1243), - [anon_sym_mut] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1243), - [sym_cmd_identifier] = ACTIONS(1243), - [anon_sym_LF] = ACTIONS(1243), - [anon_sym_def] = ACTIONS(1243), - [anon_sym_export_DASHenv] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1243), - [anon_sym_module] = ACTIONS(1243), - [anon_sym_use] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_error] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_loop] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_match] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_try] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_source] = ACTIONS(1243), - [anon_sym_source_DASHenv] = ACTIONS(1243), - [anon_sym_register] = ACTIONS(1243), - [anon_sym_hide] = ACTIONS(1243), - [anon_sym_hide_DASHenv] = ACTIONS(1243), - [anon_sym_overlay] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1243), - [anon_sym_where] = ACTIONS(1243), - [anon_sym_not] = ACTIONS(1243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1243), - [anon_sym_DOT_DOT_LT] = ACTIONS(1243), - [anon_sym_null] = ACTIONS(1243), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_decimal_token2] = ACTIONS(1243), - [anon_sym_DOT2] = ACTIONS(1243), - [aux_sym__val_number_decimal_token3] = ACTIONS(1243), - [aux_sym__val_number_token1] = ACTIONS(1243), - [aux_sym__val_number_token2] = ACTIONS(1243), - [aux_sym__val_number_token3] = ACTIONS(1243), - [aux_sym__val_number_token4] = ACTIONS(1243), - [aux_sym__val_number_token5] = ACTIONS(1243), - [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_0b] = ACTIONS(1243), - [anon_sym_0o] = ACTIONS(1243), - [anon_sym_0x] = ACTIONS(1243), - [sym_val_date] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym__str_single_quotes] = ACTIONS(1243), - [sym__str_back_ticks] = ACTIONS(1243), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1243), - [aux_sym__list_item_starts_with_sign_token1] = ACTIONS(6211), - [anon_sym_CARET] = ACTIONS(1243), + [2654] = { + [sym_comment] = STATE(2654), + [ts_builtin_sym_end] = ACTIONS(1267), + [anon_sym_SEMI] = ACTIONS(1265), + [anon_sym_LF] = ACTIONS(1267), + [anon_sym_LBRACK] = ACTIONS(1265), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_PIPE] = ACTIONS(1265), + [anon_sym_DOLLAR] = ACTIONS(1265), + [anon_sym_GT] = ACTIONS(1265), + [anon_sym_DASH_DASH] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1265), + [anon_sym_in] = ACTIONS(1265), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_DOT_DOT] = ACTIONS(1265), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_STAR_STAR] = ACTIONS(1265), + [anon_sym_PLUS_PLUS] = ACTIONS(1265), + [anon_sym_SLASH] = ACTIONS(1265), + [anon_sym_mod] = ACTIONS(1265), + [anon_sym_SLASH_SLASH] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1265), + [anon_sym_bit_DASHshl] = ACTIONS(1265), + [anon_sym_bit_DASHshr] = ACTIONS(1265), + [anon_sym_EQ_EQ] = ACTIONS(1265), + [anon_sym_BANG_EQ] = ACTIONS(1265), + [anon_sym_LT2] = ACTIONS(1265), + [anon_sym_LT_EQ] = ACTIONS(1265), + [anon_sym_GT_EQ] = ACTIONS(1265), + [anon_sym_not_DASHin] = ACTIONS(1265), + [anon_sym_starts_DASHwith] = ACTIONS(1265), + [anon_sym_ends_DASHwith] = ACTIONS(1265), + [anon_sym_EQ_TILDE] = ACTIONS(1265), + [anon_sym_BANG_TILDE] = ACTIONS(1265), + [anon_sym_bit_DASHand] = ACTIONS(1265), + [anon_sym_bit_DASHxor] = ACTIONS(1265), + [anon_sym_bit_DASHor] = ACTIONS(1265), + [anon_sym_and] = ACTIONS(1265), + [anon_sym_xor] = ACTIONS(1265), + [anon_sym_or] = ACTIONS(1265), + [anon_sym_not] = ACTIONS(1265), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1265), + [anon_sym_DOT_DOT_LT] = ACTIONS(1265), + [anon_sym_null] = ACTIONS(1265), + [anon_sym_true] = ACTIONS(1265), + [anon_sym_false] = ACTIONS(1265), + [aux_sym__val_number_decimal_token1] = ACTIONS(1265), + [aux_sym__val_number_decimal_token2] = ACTIONS(1265), + [anon_sym_DOT2] = ACTIONS(1265), + [aux_sym__val_number_decimal_token3] = ACTIONS(1265), + [aux_sym__val_number_token1] = ACTIONS(1265), + [aux_sym__val_number_token2] = ACTIONS(1265), + [aux_sym__val_number_token3] = ACTIONS(1265), + [aux_sym__val_number_token4] = ACTIONS(1265), + [aux_sym__val_number_token5] = ACTIONS(1265), + [aux_sym__val_number_token6] = ACTIONS(1265), + [anon_sym_0b] = ACTIONS(1265), + [anon_sym_0o] = ACTIONS(1265), + [anon_sym_0x] = ACTIONS(1265), + [sym_val_date] = ACTIONS(1265), + [anon_sym_DQUOTE] = ACTIONS(1265), + [sym__str_single_quotes] = ACTIONS(1265), + [sym__str_back_ticks] = ACTIONS(1265), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1265), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1265), [anon_sym_POUND] = ACTIONS(113), }, - [2503] = { - [sym_comment] = STATE(2503), - [ts_builtin_sym_end] = ACTIONS(1170), - [anon_sym_export] = ACTIONS(1168), - [anon_sym_alias] = ACTIONS(1168), - [anon_sym_let] = ACTIONS(1168), - [anon_sym_let_DASHenv] = ACTIONS(1168), - [anon_sym_mut] = ACTIONS(1168), - [anon_sym_const] = ACTIONS(1168), - [anon_sym_SEMI] = ACTIONS(1168), - [sym_cmd_identifier] = ACTIONS(1168), - [anon_sym_LF] = ACTIONS(1170), - [anon_sym_def] = ACTIONS(1168), - [anon_sym_export_DASHenv] = ACTIONS(1168), - [anon_sym_extern] = ACTIONS(1168), - [anon_sym_module] = ACTIONS(1168), - [anon_sym_use] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_DOLLAR] = ACTIONS(1168), - [anon_sym_error] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1168), - [anon_sym_break] = ACTIONS(1168), - [anon_sym_continue] = ACTIONS(1168), - [anon_sym_for] = ACTIONS(1168), - [anon_sym_loop] = ACTIONS(1168), - [anon_sym_while] = ACTIONS(1168), - [anon_sym_do] = ACTIONS(1168), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_match] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1168), - [anon_sym_DOT_DOT] = ACTIONS(1168), - [anon_sym_try] = ACTIONS(1168), - [anon_sym_return] = ACTIONS(1168), - [anon_sym_source] = ACTIONS(1168), - [anon_sym_source_DASHenv] = ACTIONS(1168), - [anon_sym_register] = ACTIONS(1168), - [anon_sym_hide] = ACTIONS(1168), - [anon_sym_hide_DASHenv] = ACTIONS(1168), - [anon_sym_overlay] = ACTIONS(1168), - [anon_sym_as] = ACTIONS(1168), - [anon_sym_where] = ACTIONS(1168), - [anon_sym_not] = ACTIONS(1168), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1168), - [anon_sym_DOT_DOT_LT] = ACTIONS(1168), - [anon_sym_null] = ACTIONS(1168), - [anon_sym_true] = ACTIONS(1168), - [anon_sym_false] = ACTIONS(1168), - [aux_sym__val_number_decimal_token1] = ACTIONS(1168), - [aux_sym__val_number_decimal_token2] = ACTIONS(1168), - [anon_sym_DOT2] = ACTIONS(1168), - [aux_sym__val_number_decimal_token3] = ACTIONS(1168), - [aux_sym__val_number_token1] = ACTIONS(1168), - [aux_sym__val_number_token2] = ACTIONS(1168), - [aux_sym__val_number_token3] = ACTIONS(1168), - [aux_sym__val_number_token4] = ACTIONS(1168), - [aux_sym__val_number_token5] = ACTIONS(1168), - [aux_sym__val_number_token6] = ACTIONS(1168), - [anon_sym_0b] = ACTIONS(1168), - [anon_sym_0o] = ACTIONS(1168), - [anon_sym_0x] = ACTIONS(1168), - [sym_val_date] = ACTIONS(1168), - [anon_sym_DQUOTE] = ACTIONS(1168), - [sym__str_single_quotes] = ACTIONS(1168), - [sym__str_back_ticks] = ACTIONS(1168), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1168), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1168), - [anon_sym_CARET] = ACTIONS(1168), + [2655] = { + [sym_comment] = STATE(2655), + [ts_builtin_sym_end] = ACTIONS(1267), + [anon_sym_SEMI] = ACTIONS(1265), + [anon_sym_LF] = ACTIONS(1267), + [anon_sym_LBRACK] = ACTIONS(1265), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_PIPE] = ACTIONS(1265), + [anon_sym_DOLLAR] = ACTIONS(1265), + [anon_sym_GT] = ACTIONS(1265), + [anon_sym_DASH_DASH] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1265), + [anon_sym_in] = ACTIONS(1265), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_DOT_DOT] = ACTIONS(1265), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_STAR_STAR] = ACTIONS(1265), + [anon_sym_PLUS_PLUS] = ACTIONS(1265), + [anon_sym_SLASH] = ACTIONS(1265), + [anon_sym_mod] = ACTIONS(1265), + [anon_sym_SLASH_SLASH] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1265), + [anon_sym_bit_DASHshl] = ACTIONS(1265), + [anon_sym_bit_DASHshr] = ACTIONS(1265), + [anon_sym_EQ_EQ] = ACTIONS(1265), + [anon_sym_BANG_EQ] = ACTIONS(1265), + [anon_sym_LT2] = ACTIONS(1265), + [anon_sym_LT_EQ] = ACTIONS(1265), + [anon_sym_GT_EQ] = ACTIONS(1265), + [anon_sym_not_DASHin] = ACTIONS(1265), + [anon_sym_starts_DASHwith] = ACTIONS(1265), + [anon_sym_ends_DASHwith] = ACTIONS(1265), + [anon_sym_EQ_TILDE] = ACTIONS(1265), + [anon_sym_BANG_TILDE] = ACTIONS(1265), + [anon_sym_bit_DASHand] = ACTIONS(1265), + [anon_sym_bit_DASHxor] = ACTIONS(1265), + [anon_sym_bit_DASHor] = ACTIONS(1265), + [anon_sym_and] = ACTIONS(1265), + [anon_sym_xor] = ACTIONS(1265), + [anon_sym_or] = ACTIONS(1265), + [anon_sym_not] = ACTIONS(1265), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1265), + [anon_sym_DOT_DOT_LT] = ACTIONS(1265), + [anon_sym_null] = ACTIONS(1265), + [anon_sym_true] = ACTIONS(1265), + [anon_sym_false] = ACTIONS(1265), + [aux_sym__val_number_decimal_token1] = ACTIONS(1265), + [aux_sym__val_number_decimal_token2] = ACTIONS(1265), + [anon_sym_DOT2] = ACTIONS(1265), + [aux_sym__val_number_decimal_token3] = ACTIONS(1265), + [aux_sym__val_number_token1] = ACTIONS(1265), + [aux_sym__val_number_token2] = ACTIONS(1265), + [aux_sym__val_number_token3] = ACTIONS(1265), + [aux_sym__val_number_token4] = ACTIONS(1265), + [aux_sym__val_number_token5] = ACTIONS(1265), + [aux_sym__val_number_token6] = ACTIONS(1265), + [anon_sym_0b] = ACTIONS(1265), + [anon_sym_0o] = ACTIONS(1265), + [anon_sym_0x] = ACTIONS(1265), + [sym_val_date] = ACTIONS(1265), + [anon_sym_DQUOTE] = ACTIONS(1265), + [sym__str_single_quotes] = ACTIONS(1265), + [sym__str_back_ticks] = ACTIONS(1265), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1265), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1265), [anon_sym_POUND] = ACTIONS(113), }, - [2504] = { - [sym_comment] = STATE(2504), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_LF] = ACTIONS(1170), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_RPAREN] = ACTIONS(1168), - [anon_sym_PIPE] = ACTIONS(1168), - [anon_sym_DOLLAR] = ACTIONS(1168), - [anon_sym_GT] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1168), - [anon_sym_in] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1168), - [anon_sym_RBRACE] = ACTIONS(1168), - [anon_sym_DOT_DOT] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_STAR_STAR] = ACTIONS(1168), - [anon_sym_PLUS_PLUS] = ACTIONS(1168), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_mod] = ACTIONS(1168), - [anon_sym_SLASH_SLASH] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(1168), - [anon_sym_bit_DASHshl] = ACTIONS(1168), - [anon_sym_bit_DASHshr] = ACTIONS(1168), - [anon_sym_EQ_EQ] = ACTIONS(1168), - [anon_sym_BANG_EQ] = ACTIONS(1168), - [anon_sym_LT2] = ACTIONS(1168), - [anon_sym_LT_EQ] = ACTIONS(1168), - [anon_sym_GT_EQ] = ACTIONS(1168), - [anon_sym_not_DASHin] = ACTIONS(1168), - [anon_sym_starts_DASHwith] = ACTIONS(1168), - [anon_sym_ends_DASHwith] = ACTIONS(1168), - [anon_sym_EQ_TILDE] = ACTIONS(1168), - [anon_sym_BANG_TILDE] = ACTIONS(1168), - [anon_sym_bit_DASHand] = ACTIONS(1168), - [anon_sym_bit_DASHxor] = ACTIONS(1168), - [anon_sym_bit_DASHor] = ACTIONS(1168), - [anon_sym_and] = ACTIONS(1168), - [anon_sym_xor] = ACTIONS(1168), - [anon_sym_or] = ACTIONS(1168), - [anon_sym_not] = ACTIONS(1168), - [anon_sym_DOT_DOT2] = ACTIONS(1168), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1168), - [anon_sym_DOT_DOT_LT] = ACTIONS(1168), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1170), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1170), - [anon_sym_null] = ACTIONS(1168), - [anon_sym_true] = ACTIONS(1168), - [anon_sym_false] = ACTIONS(1168), - [aux_sym__val_number_decimal_token1] = ACTIONS(1168), - [aux_sym__val_number_decimal_token2] = ACTIONS(1168), - [anon_sym_DOT2] = ACTIONS(1168), - [aux_sym__val_number_decimal_token3] = ACTIONS(1168), - [aux_sym__val_number_token1] = ACTIONS(1168), - [aux_sym__val_number_token2] = ACTIONS(1168), - [aux_sym__val_number_token3] = ACTIONS(1168), - [aux_sym__val_number_token4] = ACTIONS(1168), - [aux_sym__val_number_token5] = ACTIONS(1168), - [aux_sym__val_number_token6] = ACTIONS(1168), - [anon_sym_0b] = ACTIONS(1168), - [anon_sym_0o] = ACTIONS(1168), - [anon_sym_0x] = ACTIONS(1168), - [sym_val_date] = ACTIONS(1168), - [anon_sym_DQUOTE] = ACTIONS(1168), - [sym__str_single_quotes] = ACTIONS(1168), - [sym__str_back_ticks] = ACTIONS(1168), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1168), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1168), + [2656] = { + [sym_comment] = STATE(2656), + [ts_builtin_sym_end] = ACTIONS(1181), + [anon_sym_SEMI] = ACTIONS(1179), + [anon_sym_LF] = ACTIONS(1181), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_PIPE] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_in] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1179), + [anon_sym_STAR_STAR] = ACTIONS(6634), + [anon_sym_PLUS_PLUS] = ACTIONS(6634), + [anon_sym_SLASH] = ACTIONS(1179), + [anon_sym_mod] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_bit_DASHshl] = ACTIONS(1179), + [anon_sym_bit_DASHshr] = ACTIONS(1179), + [anon_sym_EQ_EQ] = ACTIONS(1179), + [anon_sym_BANG_EQ] = ACTIONS(1179), + [anon_sym_LT2] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1179), + [anon_sym_GT_EQ] = ACTIONS(1179), + [anon_sym_not_DASHin] = ACTIONS(1179), + [anon_sym_starts_DASHwith] = ACTIONS(1179), + [anon_sym_ends_DASHwith] = ACTIONS(1179), + [anon_sym_EQ_TILDE] = ACTIONS(1179), + [anon_sym_BANG_TILDE] = ACTIONS(1179), + [anon_sym_bit_DASHand] = ACTIONS(1179), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_not] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1179), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, - [2505] = { - [sym_comment] = STATE(2505), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_COMMA] = ACTIONS(1255), - [anon_sym_LPAREN] = ACTIONS(1255), - [anon_sym_DOLLAR] = ACTIONS(1255), - [anon_sym_GT] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_in] = ACTIONS(1253), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_RBRACE] = ACTIONS(1255), - [anon_sym__] = ACTIONS(1253), - [anon_sym_DOT_DOT] = ACTIONS(1253), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_STAR_STAR] = ACTIONS(1255), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_mod] = ACTIONS(1255), - [anon_sym_SLASH_SLASH] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_bit_DASHshl] = ACTIONS(1255), - [anon_sym_bit_DASHshr] = ACTIONS(1255), - [anon_sym_EQ_EQ] = ACTIONS(1255), - [anon_sym_BANG_EQ] = ACTIONS(1255), - [anon_sym_LT2] = ACTIONS(1253), - [anon_sym_LT_EQ] = ACTIONS(1255), - [anon_sym_GT_EQ] = ACTIONS(1255), - [anon_sym_not_DASHin] = ACTIONS(1255), - [anon_sym_starts_DASHwith] = ACTIONS(1255), - [anon_sym_ends_DASHwith] = ACTIONS(1255), - [anon_sym_EQ_TILDE] = ACTIONS(1255), - [anon_sym_BANG_TILDE] = ACTIONS(1255), - [anon_sym_bit_DASHand] = ACTIONS(1255), - [anon_sym_bit_DASHxor] = ACTIONS(1255), - [anon_sym_bit_DASHor] = ACTIONS(1255), - [anon_sym_and] = ACTIONS(1255), - [anon_sym_xor] = ACTIONS(1255), - [anon_sym_or] = ACTIONS(1255), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_DOT_DOT_LT] = ACTIONS(1255), - [anon_sym_null] = ACTIONS(1255), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [aux_sym__val_number_decimal_token1] = ACTIONS(1253), - [aux_sym__val_number_decimal_token2] = ACTIONS(1255), - [anon_sym_DOT2] = ACTIONS(1253), - [aux_sym__val_number_decimal_token3] = ACTIONS(1255), - [aux_sym__val_number_token1] = ACTIONS(1255), - [aux_sym__val_number_token2] = ACTIONS(1255), - [aux_sym__val_number_token3] = ACTIONS(1255), - [aux_sym__val_number_token4] = ACTIONS(1255), - [aux_sym__val_number_token5] = ACTIONS(1255), - [aux_sym__val_number_token6] = ACTIONS(1255), - [anon_sym_0b] = ACTIONS(1253), - [anon_sym_0o] = ACTIONS(1253), - [anon_sym_0x] = ACTIONS(1253), - [sym_val_date] = ACTIONS(1255), - [anon_sym_DQUOTE] = ACTIONS(1255), - [sym__str_single_quotes] = ACTIONS(1255), - [sym__str_back_ticks] = ACTIONS(1255), - [anon_sym_err_GT] = ACTIONS(1255), - [anon_sym_out_GT] = ACTIONS(1255), - [anon_sym_e_GT] = ACTIONS(1255), - [anon_sym_o_GT] = ACTIONS(1255), - [anon_sym_err_PLUSout_GT] = ACTIONS(1255), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1255), - [anon_sym_o_PLUSe_GT] = ACTIONS(1255), - [anon_sym_e_PLUSo_GT] = ACTIONS(1255), - [aux_sym_unquoted_token1] = ACTIONS(1253), - [anon_sym_POUND] = ACTIONS(3), + [2657] = { + [sym_comment] = STATE(2657), + [ts_builtin_sym_end] = ACTIONS(1173), + [anon_sym_SEMI] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_PIPE] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(113), }, - [2506] = { - [sym_comment] = STATE(2506), - [anon_sym_LBRACK] = ACTIONS(1174), - [anon_sym_COMMA] = ACTIONS(1174), - [anon_sym_RBRACK] = ACTIONS(1174), - [anon_sym_LPAREN] = ACTIONS(1174), - [anon_sym_DOLLAR] = ACTIONS(1174), - [anon_sym_GT] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1174), - [anon_sym_DASH] = ACTIONS(1172), - [anon_sym_in] = ACTIONS(1172), - [anon_sym_LBRACE] = ACTIONS(1174), - [anon_sym_DOT_DOT] = ACTIONS(1172), - [anon_sym_STAR] = ACTIONS(1172), - [anon_sym_STAR_STAR] = ACTIONS(1174), - [anon_sym_PLUS_PLUS] = ACTIONS(1174), - [anon_sym_SLASH] = ACTIONS(1172), - [anon_sym_mod] = ACTIONS(1174), - [anon_sym_SLASH_SLASH] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1172), - [anon_sym_bit_DASHshl] = ACTIONS(1174), - [anon_sym_bit_DASHshr] = ACTIONS(1174), - [anon_sym_EQ_EQ] = ACTIONS(1174), - [anon_sym_BANG_EQ] = ACTIONS(1174), - [anon_sym_LT2] = ACTIONS(1172), - [anon_sym_LT_EQ] = ACTIONS(1174), - [anon_sym_GT_EQ] = ACTIONS(1174), - [anon_sym_not_DASHin] = ACTIONS(1174), - [anon_sym_starts_DASHwith] = ACTIONS(1174), - [anon_sym_ends_DASHwith] = ACTIONS(1174), - [anon_sym_EQ_TILDE] = ACTIONS(1174), - [anon_sym_BANG_TILDE] = ACTIONS(1174), - [anon_sym_bit_DASHand] = ACTIONS(1174), - [anon_sym_bit_DASHxor] = ACTIONS(1174), - [anon_sym_bit_DASHor] = ACTIONS(1174), - [anon_sym_and] = ACTIONS(1174), - [anon_sym_xor] = ACTIONS(1174), - [anon_sym_or] = ACTIONS(1174), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1174), - [anon_sym_DOT_DOT_LT] = ACTIONS(1174), - [anon_sym_null] = ACTIONS(1174), - [anon_sym_true] = ACTIONS(1174), - [anon_sym_false] = ACTIONS(1174), - [aux_sym__val_number_decimal_token1] = ACTIONS(1172), - [aux_sym__val_number_decimal_token2] = ACTIONS(1174), - [anon_sym_DOT2] = ACTIONS(1172), - [aux_sym__val_number_decimal_token3] = ACTIONS(1174), - [aux_sym__val_number_token1] = ACTIONS(1174), - [aux_sym__val_number_token2] = ACTIONS(1174), - [aux_sym__val_number_token3] = ACTIONS(1174), - [aux_sym__val_number_token4] = ACTIONS(1174), - [aux_sym__val_number_token5] = ACTIONS(1174), - [aux_sym__val_number_token6] = ACTIONS(1174), - [anon_sym_0b] = ACTIONS(1172), - [anon_sym_0o] = ACTIONS(1172), - [anon_sym_0x] = ACTIONS(1172), - [sym_val_date] = ACTIONS(1174), - [anon_sym_DQUOTE] = ACTIONS(1174), - [sym__str_single_quotes] = ACTIONS(1174), - [sym__str_back_ticks] = ACTIONS(1174), - [anon_sym_err_GT] = ACTIONS(1174), - [anon_sym_out_GT] = ACTIONS(1174), - [anon_sym_e_GT] = ACTIONS(1174), - [anon_sym_o_GT] = ACTIONS(1174), - [anon_sym_err_PLUSout_GT] = ACTIONS(1174), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1174), - [anon_sym_o_PLUSe_GT] = ACTIONS(1174), - [anon_sym_e_PLUSo_GT] = ACTIONS(1174), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1172), - [anon_sym_POUND] = ACTIONS(3), + [2658] = { + [sym_comment] = STATE(2658), + [ts_builtin_sym_end] = ACTIONS(1273), + [anon_sym_SEMI] = ACTIONS(1271), + [anon_sym_LF] = ACTIONS(1273), + [anon_sym_LBRACK] = ACTIONS(1271), + [anon_sym_LPAREN] = ACTIONS(1271), + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_DOLLAR] = ACTIONS(1271), + [anon_sym_GT] = ACTIONS(1271), + [anon_sym_DASH_DASH] = ACTIONS(1271), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_in] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_DOT_DOT] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(1271), + [anon_sym_STAR_STAR] = ACTIONS(1271), + [anon_sym_PLUS_PLUS] = ACTIONS(1271), + [anon_sym_SLASH] = ACTIONS(1271), + [anon_sym_mod] = ACTIONS(1271), + [anon_sym_SLASH_SLASH] = ACTIONS(1271), + [anon_sym_PLUS] = ACTIONS(1271), + [anon_sym_bit_DASHshl] = ACTIONS(1271), + [anon_sym_bit_DASHshr] = ACTIONS(1271), + [anon_sym_EQ_EQ] = ACTIONS(1271), + [anon_sym_BANG_EQ] = ACTIONS(1271), + [anon_sym_LT2] = ACTIONS(1271), + [anon_sym_LT_EQ] = ACTIONS(1271), + [anon_sym_GT_EQ] = ACTIONS(1271), + [anon_sym_not_DASHin] = ACTIONS(1271), + [anon_sym_starts_DASHwith] = ACTIONS(1271), + [anon_sym_ends_DASHwith] = ACTIONS(1271), + [anon_sym_EQ_TILDE] = ACTIONS(1271), + [anon_sym_BANG_TILDE] = ACTIONS(1271), + [anon_sym_bit_DASHand] = ACTIONS(1271), + [anon_sym_bit_DASHxor] = ACTIONS(1271), + [anon_sym_bit_DASHor] = ACTIONS(1271), + [anon_sym_and] = ACTIONS(1271), + [anon_sym_xor] = ACTIONS(1271), + [anon_sym_or] = ACTIONS(1271), + [anon_sym_not] = ACTIONS(1271), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1271), + [anon_sym_DOT_DOT_LT] = ACTIONS(1271), + [anon_sym_null] = ACTIONS(1271), + [anon_sym_true] = ACTIONS(1271), + [anon_sym_false] = ACTIONS(1271), + [aux_sym__val_number_decimal_token1] = ACTIONS(1271), + [aux_sym__val_number_decimal_token2] = ACTIONS(1271), + [anon_sym_DOT2] = ACTIONS(1271), + [aux_sym__val_number_decimal_token3] = ACTIONS(1271), + [aux_sym__val_number_token1] = ACTIONS(1271), + [aux_sym__val_number_token2] = ACTIONS(1271), + [aux_sym__val_number_token3] = ACTIONS(1271), + [aux_sym__val_number_token4] = ACTIONS(1271), + [aux_sym__val_number_token5] = ACTIONS(1271), + [aux_sym__val_number_token6] = ACTIONS(1271), + [anon_sym_0b] = ACTIONS(1271), + [anon_sym_0o] = ACTIONS(1271), + [anon_sym_0x] = ACTIONS(1271), + [sym_val_date] = ACTIONS(1271), + [anon_sym_DQUOTE] = ACTIONS(1271), + [sym__str_single_quotes] = ACTIONS(1271), + [sym__str_back_ticks] = ACTIONS(1271), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1271), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1271), + [anon_sym_POUND] = ACTIONS(113), }, - [2507] = { - [sym_comment] = STATE(2507), + [2659] = { + [sym_comment] = STATE(2659), + [ts_builtin_sym_end] = ACTIONS(1277), + [anon_sym_SEMI] = ACTIONS(1275), + [anon_sym_LF] = ACTIONS(1277), [anon_sym_LBRACK] = ACTIONS(1275), - [anon_sym_COMMA] = ACTIONS(1275), [anon_sym_LPAREN] = ACTIONS(1275), + [anon_sym_PIPE] = ACTIONS(1275), [anon_sym_DOLLAR] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1273), - [anon_sym_DASH] = ACTIONS(1273), - [anon_sym_in] = ACTIONS(1273), + [anon_sym_GT] = ACTIONS(1275), + [anon_sym_DASH_DASH] = ACTIONS(1275), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_in] = ACTIONS(1275), [anon_sym_LBRACE] = ACTIONS(1275), - [anon_sym_RBRACE] = ACTIONS(1275), - [anon_sym__] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_STAR] = ACTIONS(1273), + [anon_sym_DOT_DOT] = ACTIONS(1275), + [anon_sym_STAR] = ACTIONS(1275), [anon_sym_STAR_STAR] = ACTIONS(1275), [anon_sym_PLUS_PLUS] = ACTIONS(1275), - [anon_sym_SLASH] = ACTIONS(1273), + [anon_sym_SLASH] = ACTIONS(1275), [anon_sym_mod] = ACTIONS(1275), [anon_sym_SLASH_SLASH] = ACTIONS(1275), - [anon_sym_PLUS] = ACTIONS(1273), + [anon_sym_PLUS] = ACTIONS(1275), [anon_sym_bit_DASHshl] = ACTIONS(1275), [anon_sym_bit_DASHshr] = ACTIONS(1275), [anon_sym_EQ_EQ] = ACTIONS(1275), [anon_sym_BANG_EQ] = ACTIONS(1275), - [anon_sym_LT2] = ACTIONS(1273), + [anon_sym_LT2] = ACTIONS(1275), [anon_sym_LT_EQ] = ACTIONS(1275), [anon_sym_GT_EQ] = ACTIONS(1275), [anon_sym_not_DASHin] = ACTIONS(1275), @@ -307221,14 +306696,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(1275), [anon_sym_xor] = ACTIONS(1275), [anon_sym_or] = ACTIONS(1275), + [anon_sym_not] = ACTIONS(1275), [anon_sym_DOT_DOT_EQ] = ACTIONS(1275), [anon_sym_DOT_DOT_LT] = ACTIONS(1275), [anon_sym_null] = ACTIONS(1275), [anon_sym_true] = ACTIONS(1275), [anon_sym_false] = ACTIONS(1275), - [aux_sym__val_number_decimal_token1] = ACTIONS(1273), + [aux_sym__val_number_decimal_token1] = ACTIONS(1275), [aux_sym__val_number_decimal_token2] = ACTIONS(1275), - [anon_sym_DOT2] = ACTIONS(1273), + [anon_sym_DOT2] = ACTIONS(1275), [aux_sym__val_number_decimal_token3] = ACTIONS(1275), [aux_sym__val_number_token1] = ACTIONS(1275), [aux_sym__val_number_token2] = ACTIONS(1275), @@ -307236,9889 +306712,1359 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token4] = ACTIONS(1275), [aux_sym__val_number_token5] = ACTIONS(1275), [aux_sym__val_number_token6] = ACTIONS(1275), - [anon_sym_0b] = ACTIONS(1273), - [anon_sym_0o] = ACTIONS(1273), - [anon_sym_0x] = ACTIONS(1273), + [anon_sym_0b] = ACTIONS(1275), + [anon_sym_0o] = ACTIONS(1275), + [anon_sym_0x] = ACTIONS(1275), [sym_val_date] = ACTIONS(1275), [anon_sym_DQUOTE] = ACTIONS(1275), [sym__str_single_quotes] = ACTIONS(1275), [sym__str_back_ticks] = ACTIONS(1275), - [anon_sym_err_GT] = ACTIONS(1275), - [anon_sym_out_GT] = ACTIONS(1275), - [anon_sym_e_GT] = ACTIONS(1275), - [anon_sym_o_GT] = ACTIONS(1275), - [anon_sym_err_PLUSout_GT] = ACTIONS(1275), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1275), - [anon_sym_o_PLUSe_GT] = ACTIONS(1275), - [anon_sym_e_PLUSo_GT] = ACTIONS(1275), - [aux_sym_unquoted_token1] = ACTIONS(1273), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1275), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1275), + [anon_sym_POUND] = ACTIONS(113), + }, + [2660] = { + [sym__expression] = STATE(7651), + [sym_expr_unary] = STATE(5998), + [sym__expr_unary_minus] = STATE(5999), + [sym_expr_binary] = STATE(5998), + [sym__expr_binary_expression] = STATE(6374), + [sym_expr_parenthesized] = STATE(5273), + [sym_val_range] = STATE(6728), + [sym__value] = STATE(5998), + [sym_val_nothing] = STATE(6108), + [sym_val_bool] = STATE(6108), + [sym_val_variable] = STATE(5385), + [sym__var] = STATE(4639), + [sym_val_number] = STATE(6108), + [sym__val_number_decimal] = STATE(5069), + [sym__val_number] = STATE(6110), + [sym_val_duration] = STATE(6108), + [sym_val_filesize] = STATE(6108), + [sym_val_binary] = STATE(6108), + [sym_val_string] = STATE(6108), + [sym__str_double_quotes] = STATE(6195), + [sym_val_interpolated] = STATE(6108), + [sym__inter_single_quotes] = STATE(6197), + [sym__inter_double_quotes] = STATE(6198), + [sym_val_list] = STATE(6108), + [sym_val_record] = STATE(6108), + [sym_val_table] = STATE(6108), + [sym_val_closure] = STATE(6108), + [sym__flag] = STATE(3043), + [sym_short_flag] = STATE(6049), + [sym_long_flag] = STATE(6049), + [sym_long_flag_equals_value] = STATE(6112), + [sym_comment] = STATE(2660), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(2804), + [anon_sym_DOLLAR] = ACTIONS(2806), + [anon_sym_DASH_DASH] = ACTIONS(2557), + [anon_sym_DASH] = ACTIONS(6608), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_DOT_DOT] = ACTIONS(6610), + [anon_sym_not] = ACTIONS(4172), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6612), + [anon_sym_DOT_DOT_LT] = ACTIONS(6612), + [anon_sym_null] = ACTIONS(6614), + [anon_sym_true] = ACTIONS(6616), + [anon_sym_false] = ACTIONS(6616), + [aux_sym__val_number_decimal_token1] = ACTIONS(6618), + [aux_sym__val_number_decimal_token2] = ACTIONS(6620), + [anon_sym_DOT2] = ACTIONS(6622), + [aux_sym__val_number_decimal_token3] = ACTIONS(5057), + [aux_sym__val_number_token1] = ACTIONS(2828), + [aux_sym__val_number_token2] = ACTIONS(2828), + [aux_sym__val_number_token3] = ACTIONS(2828), + [aux_sym__val_number_token4] = ACTIONS(2828), + [aux_sym__val_number_token5] = ACTIONS(2828), + [aux_sym__val_number_token6] = ACTIONS(2828), + [anon_sym_0b] = ACTIONS(2832), + [anon_sym_0o] = ACTIONS(2834), + [anon_sym_0x] = ACTIONS(2834), + [sym_val_date] = ACTIONS(6624), + [anon_sym_DQUOTE] = ACTIONS(4192), + [sym__str_single_quotes] = ACTIONS(4194), + [sym__str_back_ticks] = ACTIONS(4194), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2844), [anon_sym_POUND] = ACTIONS(3), }, - [2508] = { - [sym_comment] = STATE(2508), - [ts_builtin_sym_end] = ACTIONS(5185), - [anon_sym_export] = ACTIONS(5183), - [anon_sym_alias] = ACTIONS(5183), - [anon_sym_let] = ACTIONS(5183), - [anon_sym_let_DASHenv] = ACTIONS(5183), - [anon_sym_mut] = ACTIONS(5183), - [anon_sym_const] = ACTIONS(5183), - [anon_sym_SEMI] = ACTIONS(5183), - [sym_cmd_identifier] = ACTIONS(5183), - [anon_sym_LF] = ACTIONS(5185), - [anon_sym_def] = ACTIONS(5183), - [anon_sym_export_DASHenv] = ACTIONS(5183), - [anon_sym_extern] = ACTIONS(5183), - [anon_sym_module] = ACTIONS(5183), - [anon_sym_use] = ACTIONS(5183), - [anon_sym_LBRACK] = ACTIONS(5183), - [anon_sym_LPAREN] = ACTIONS(5183), - [anon_sym_DOLLAR] = ACTIONS(5183), - [anon_sym_error] = ACTIONS(5183), - [anon_sym_DASH_DASH] = ACTIONS(5183), - [anon_sym_DASH] = ACTIONS(5183), - [anon_sym_break] = ACTIONS(5183), - [anon_sym_continue] = ACTIONS(5183), - [anon_sym_for] = ACTIONS(5183), - [anon_sym_loop] = ACTIONS(5183), - [anon_sym_while] = ACTIONS(5183), - [anon_sym_do] = ACTIONS(5183), - [anon_sym_if] = ACTIONS(5183), - [anon_sym_match] = ACTIONS(5183), - [anon_sym_LBRACE] = ACTIONS(5183), - [anon_sym_DOT_DOT] = ACTIONS(5183), - [anon_sym_try] = ACTIONS(5183), - [anon_sym_return] = ACTIONS(5183), - [anon_sym_source] = ACTIONS(5183), - [anon_sym_source_DASHenv] = ACTIONS(5183), - [anon_sym_register] = ACTIONS(5183), - [anon_sym_hide] = ACTIONS(5183), - [anon_sym_hide_DASHenv] = ACTIONS(5183), - [anon_sym_overlay] = ACTIONS(5183), - [anon_sym_as] = ACTIONS(5183), - [anon_sym_where] = ACTIONS(5183), - [anon_sym_not] = ACTIONS(5183), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5183), - [anon_sym_DOT_DOT_LT] = ACTIONS(5183), - [anon_sym_null] = ACTIONS(5183), - [anon_sym_true] = ACTIONS(5183), - [anon_sym_false] = ACTIONS(5183), - [aux_sym__val_number_decimal_token1] = ACTIONS(5183), - [aux_sym__val_number_decimal_token2] = ACTIONS(5183), - [anon_sym_DOT2] = ACTIONS(5183), - [aux_sym__val_number_decimal_token3] = ACTIONS(5183), - [aux_sym__val_number_token1] = ACTIONS(5183), - [aux_sym__val_number_token2] = ACTIONS(5183), - [aux_sym__val_number_token3] = ACTIONS(5183), - [aux_sym__val_number_token4] = ACTIONS(5183), - [aux_sym__val_number_token5] = ACTIONS(5183), - [aux_sym__val_number_token6] = ACTIONS(5183), - [anon_sym_0b] = ACTIONS(5183), - [anon_sym_0o] = ACTIONS(5183), - [anon_sym_0x] = ACTIONS(5183), - [sym_val_date] = ACTIONS(5183), - [anon_sym_DQUOTE] = ACTIONS(5183), - [sym__str_single_quotes] = ACTIONS(5183), - [sym__str_back_ticks] = ACTIONS(5183), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5183), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5183), - [anon_sym_CARET] = ACTIONS(5183), + [2661] = { + [sym_comment] = STATE(2661), + [ts_builtin_sym_end] = ACTIONS(1181), + [anon_sym_SEMI] = ACTIONS(1179), + [anon_sym_LF] = ACTIONS(1181), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_PIPE] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(6628), + [anon_sym_in] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(6632), + [anon_sym_STAR_STAR] = ACTIONS(6634), + [anon_sym_PLUS_PLUS] = ACTIONS(6634), + [anon_sym_SLASH] = ACTIONS(6632), + [anon_sym_mod] = ACTIONS(6632), + [anon_sym_SLASH_SLASH] = ACTIONS(6632), + [anon_sym_PLUS] = ACTIONS(6628), + [anon_sym_bit_DASHshl] = ACTIONS(6636), + [anon_sym_bit_DASHshr] = ACTIONS(6636), + [anon_sym_EQ_EQ] = ACTIONS(1179), + [anon_sym_BANG_EQ] = ACTIONS(1179), + [anon_sym_LT2] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1179), + [anon_sym_GT_EQ] = ACTIONS(1179), + [anon_sym_not_DASHin] = ACTIONS(1179), + [anon_sym_starts_DASHwith] = ACTIONS(1179), + [anon_sym_ends_DASHwith] = ACTIONS(1179), + [anon_sym_EQ_TILDE] = ACTIONS(1179), + [anon_sym_BANG_TILDE] = ACTIONS(1179), + [anon_sym_bit_DASHand] = ACTIONS(1179), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_not] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1179), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, - [2509] = { - [sym_block] = STATE(2676), - [sym_comment] = STATE(2509), - [anon_sym_export] = ACTIONS(6213), - [anon_sym_alias] = ACTIONS(6213), - [anon_sym_let] = ACTIONS(6213), - [anon_sym_let_DASHenv] = ACTIONS(6213), - [anon_sym_mut] = ACTIONS(6213), - [anon_sym_const] = ACTIONS(6213), - [anon_sym_SEMI] = ACTIONS(6213), - [sym_cmd_identifier] = ACTIONS(6213), - [anon_sym_LF] = ACTIONS(6215), - [anon_sym_def] = ACTIONS(6213), - [anon_sym_export_DASHenv] = ACTIONS(6213), - [anon_sym_extern] = ACTIONS(6213), - [anon_sym_module] = ACTIONS(6213), - [anon_sym_use] = ACTIONS(6213), - [anon_sym_LBRACK] = ACTIONS(6213), - [anon_sym_LPAREN] = ACTIONS(6213), - [anon_sym_RPAREN] = ACTIONS(6213), - [anon_sym_DOLLAR] = ACTIONS(6213), - [anon_sym_error] = ACTIONS(6213), - [anon_sym_DASH] = ACTIONS(6213), - [anon_sym_break] = ACTIONS(6213), - [anon_sym_continue] = ACTIONS(6213), - [anon_sym_for] = ACTIONS(6213), - [anon_sym_loop] = ACTIONS(6213), - [anon_sym_while] = ACTIONS(6213), - [anon_sym_do] = ACTIONS(6213), - [anon_sym_if] = ACTIONS(6213), - [anon_sym_match] = ACTIONS(6213), - [anon_sym_LBRACE] = ACTIONS(6217), - [anon_sym_RBRACE] = ACTIONS(6213), - [anon_sym_DOT_DOT] = ACTIONS(6213), - [anon_sym_try] = ACTIONS(6213), - [anon_sym_return] = ACTIONS(6213), - [anon_sym_source] = ACTIONS(6213), - [anon_sym_source_DASHenv] = ACTIONS(6213), - [anon_sym_register] = ACTIONS(6213), - [anon_sym_hide] = ACTIONS(6213), - [anon_sym_hide_DASHenv] = ACTIONS(6213), - [anon_sym_overlay] = ACTIONS(6213), - [anon_sym_where] = ACTIONS(6213), - [anon_sym_not] = ACTIONS(6213), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6213), - [anon_sym_DOT_DOT_LT] = ACTIONS(6213), - [anon_sym_null] = ACTIONS(6213), - [anon_sym_true] = ACTIONS(6213), - [anon_sym_false] = ACTIONS(6213), - [aux_sym__val_number_decimal_token1] = ACTIONS(6213), - [aux_sym__val_number_decimal_token2] = ACTIONS(6213), - [anon_sym_DOT2] = ACTIONS(6213), - [aux_sym__val_number_decimal_token3] = ACTIONS(6213), - [aux_sym__val_number_token1] = ACTIONS(6213), - [aux_sym__val_number_token2] = ACTIONS(6213), - [aux_sym__val_number_token3] = ACTIONS(6213), - [aux_sym__val_number_token4] = ACTIONS(6213), - [aux_sym__val_number_token5] = ACTIONS(6213), - [aux_sym__val_number_token6] = ACTIONS(6213), - [anon_sym_0b] = ACTIONS(6213), - [anon_sym_0o] = ACTIONS(6213), - [anon_sym_0x] = ACTIONS(6213), - [sym_val_date] = ACTIONS(6213), - [anon_sym_DQUOTE] = ACTIONS(6213), - [sym__str_single_quotes] = ACTIONS(6213), - [sym__str_back_ticks] = ACTIONS(6213), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6213), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6213), - [anon_sym_CARET] = ACTIONS(6213), + [2662] = { + [sym_comment] = STATE(2662), + [ts_builtin_sym_end] = ACTIONS(1053), + [anon_sym_SEMI] = ACTIONS(1051), + [anon_sym_LF] = ACTIONS(1053), + [anon_sym_LBRACK] = ACTIONS(1051), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_PIPE] = ACTIONS(1051), + [anon_sym_DOLLAR] = ACTIONS(1051), + [anon_sym_GT] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1051), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_in] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(1051), + [anon_sym_DOT_DOT] = ACTIONS(1051), + [anon_sym_STAR] = ACTIONS(1051), + [anon_sym_STAR_STAR] = ACTIONS(1051), + [anon_sym_PLUS_PLUS] = ACTIONS(1051), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_mod] = ACTIONS(1051), + [anon_sym_SLASH_SLASH] = ACTIONS(1051), + [anon_sym_PLUS] = ACTIONS(1051), + [anon_sym_bit_DASHshl] = ACTIONS(1051), + [anon_sym_bit_DASHshr] = ACTIONS(1051), + [anon_sym_EQ_EQ] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1051), + [anon_sym_LT2] = ACTIONS(1051), + [anon_sym_LT_EQ] = ACTIONS(1051), + [anon_sym_GT_EQ] = ACTIONS(1051), + [anon_sym_not_DASHin] = ACTIONS(1051), + [anon_sym_starts_DASHwith] = ACTIONS(1051), + [anon_sym_ends_DASHwith] = ACTIONS(1051), + [anon_sym_EQ_TILDE] = ACTIONS(1051), + [anon_sym_BANG_TILDE] = ACTIONS(1051), + [anon_sym_bit_DASHand] = ACTIONS(1051), + [anon_sym_bit_DASHxor] = ACTIONS(1051), + [anon_sym_bit_DASHor] = ACTIONS(1051), + [anon_sym_and] = ACTIONS(1051), + [anon_sym_xor] = ACTIONS(1051), + [anon_sym_or] = ACTIONS(1051), + [anon_sym_not] = ACTIONS(1051), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1051), + [anon_sym_DOT_DOT_LT] = ACTIONS(1051), + [anon_sym_null] = ACTIONS(1051), + [anon_sym_true] = ACTIONS(1051), + [anon_sym_false] = ACTIONS(1051), + [aux_sym__val_number_decimal_token1] = ACTIONS(1051), + [aux_sym__val_number_decimal_token2] = ACTIONS(1051), + [anon_sym_DOT2] = ACTIONS(1051), + [aux_sym__val_number_decimal_token3] = ACTIONS(1051), + [aux_sym__val_number_token1] = ACTIONS(1051), + [aux_sym__val_number_token2] = ACTIONS(1051), + [aux_sym__val_number_token3] = ACTIONS(1051), + [aux_sym__val_number_token4] = ACTIONS(1051), + [aux_sym__val_number_token5] = ACTIONS(1051), + [aux_sym__val_number_token6] = ACTIONS(1051), + [anon_sym_0b] = ACTIONS(1051), + [anon_sym_0o] = ACTIONS(1051), + [anon_sym_0x] = ACTIONS(1051), + [sym_val_date] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(1051), + [sym__str_single_quotes] = ACTIONS(1051), + [sym__str_back_ticks] = ACTIONS(1051), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1051), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1051), [anon_sym_POUND] = ACTIONS(113), }, - [2510] = { - [sym_comment] = STATE(2510), - [anon_sym_export] = ACTIONS(6220), - [anon_sym_alias] = ACTIONS(6220), - [anon_sym_let] = ACTIONS(6220), - [anon_sym_let_DASHenv] = ACTIONS(6220), - [anon_sym_mut] = ACTIONS(6220), - [anon_sym_const] = ACTIONS(6220), - [anon_sym_SEMI] = ACTIONS(6220), - [sym_cmd_identifier] = ACTIONS(6220), - [anon_sym_LF] = ACTIONS(6222), - [anon_sym_def] = ACTIONS(6220), - [anon_sym_export_DASHenv] = ACTIONS(6220), - [anon_sym_extern] = ACTIONS(6220), - [anon_sym_module] = ACTIONS(6220), - [anon_sym_use] = ACTIONS(6220), - [anon_sym_LBRACK] = ACTIONS(6220), - [anon_sym_LPAREN] = ACTIONS(6220), - [anon_sym_RPAREN] = ACTIONS(6220), - [anon_sym_PIPE] = ACTIONS(6220), - [anon_sym_DOLLAR] = ACTIONS(6220), - [anon_sym_error] = ACTIONS(6220), - [anon_sym_DASH] = ACTIONS(6220), - [anon_sym_break] = ACTIONS(6220), - [anon_sym_continue] = ACTIONS(6220), - [anon_sym_for] = ACTIONS(6220), - [anon_sym_loop] = ACTIONS(6220), - [anon_sym_while] = ACTIONS(6220), - [anon_sym_do] = ACTIONS(6220), - [anon_sym_if] = ACTIONS(6220), - [anon_sym_match] = ACTIONS(6220), - [anon_sym_LBRACE] = ACTIONS(6220), - [anon_sym_RBRACE] = ACTIONS(6220), - [anon_sym_DOT_DOT] = ACTIONS(6220), - [anon_sym_try] = ACTIONS(6220), - [anon_sym_return] = ACTIONS(6220), - [anon_sym_source] = ACTIONS(6220), - [anon_sym_source_DASHenv] = ACTIONS(6220), - [anon_sym_register] = ACTIONS(6220), - [anon_sym_hide] = ACTIONS(6220), - [anon_sym_hide_DASHenv] = ACTIONS(6220), - [anon_sym_overlay] = ACTIONS(6220), - [anon_sym_where] = ACTIONS(6220), - [anon_sym_not] = ACTIONS(6220), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6220), - [anon_sym_DOT_DOT_LT] = ACTIONS(6220), - [anon_sym_null] = ACTIONS(6220), - [anon_sym_true] = ACTIONS(6220), - [anon_sym_false] = ACTIONS(6220), - [aux_sym__val_number_decimal_token1] = ACTIONS(6220), - [aux_sym__val_number_decimal_token2] = ACTIONS(6220), - [anon_sym_DOT2] = ACTIONS(6220), - [aux_sym__val_number_decimal_token3] = ACTIONS(6220), - [aux_sym__val_number_token1] = ACTIONS(6220), - [aux_sym__val_number_token2] = ACTIONS(6220), - [aux_sym__val_number_token3] = ACTIONS(6220), - [aux_sym__val_number_token4] = ACTIONS(6220), - [aux_sym__val_number_token5] = ACTIONS(6220), - [aux_sym__val_number_token6] = ACTIONS(6220), - [anon_sym_0b] = ACTIONS(6220), - [anon_sym_0o] = ACTIONS(6220), - [anon_sym_0x] = ACTIONS(6220), - [sym_val_date] = ACTIONS(6220), - [anon_sym_DQUOTE] = ACTIONS(6220), - [sym__str_single_quotes] = ACTIONS(6220), - [sym__str_back_ticks] = ACTIONS(6220), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6220), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6220), - [anon_sym_CARET] = ACTIONS(6220), + [2663] = { + [sym_comment] = STATE(2663), + [ts_builtin_sym_end] = ACTIONS(1173), + [anon_sym_SEMI] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_PIPE] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, - [2511] = { - [sym_comment] = STATE(2511), - [anon_sym_LBRACK] = ACTIONS(911), - [anon_sym_LPAREN] = ACTIONS(911), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(911), - [anon_sym_DOT_DOT] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(911), - [anon_sym_PLUS_PLUS] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(911), - [anon_sym_SLASH_SLASH] = ACTIONS(911), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(911), - [anon_sym_bit_DASHshr] = ACTIONS(911), - [anon_sym_EQ_EQ] = ACTIONS(911), - [anon_sym_BANG_EQ] = ACTIONS(911), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(911), - [anon_sym_GT_EQ] = ACTIONS(911), - [anon_sym_not_DASHin] = ACTIONS(911), - [anon_sym_starts_DASHwith] = ACTIONS(911), - [anon_sym_ends_DASHwith] = ACTIONS(911), - [anon_sym_EQ_TILDE] = ACTIONS(911), - [anon_sym_BANG_TILDE] = ACTIONS(911), - [anon_sym_bit_DASHand] = ACTIONS(911), - [anon_sym_bit_DASHxor] = ACTIONS(911), - [anon_sym_bit_DASHor] = ACTIONS(911), - [anon_sym_and] = ACTIONS(911), - [anon_sym_xor] = ACTIONS(911), - [anon_sym_or] = ACTIONS(911), - [anon_sym_not] = ACTIONS(909), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [aux_sym__immediate_decimal_token1] = ACTIONS(6224), - [aux_sym__immediate_decimal_token2] = ACTIONS(6226), - [anon_sym_null] = ACTIONS(911), - [anon_sym_true] = ACTIONS(911), - [anon_sym_false] = ACTIONS(911), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(911), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(911), - [aux_sym__val_number_token1] = ACTIONS(911), - [aux_sym__val_number_token2] = ACTIONS(911), - [aux_sym__val_number_token3] = ACTIONS(911), - [aux_sym__val_number_token4] = ACTIONS(911), - [aux_sym__val_number_token5] = ACTIONS(911), - [aux_sym__val_number_token6] = ACTIONS(911), - [anon_sym_0b] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(911), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(911), - [anon_sym_DQUOTE] = ACTIONS(911), - [sym__str_single_quotes] = ACTIONS(911), - [sym__str_back_ticks] = ACTIONS(911), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(911), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(911), - [aux_sym_unquoted_token5] = ACTIONS(909), - [anon_sym_POUND] = ACTIONS(3), - }, - [2512] = { - [sym_block] = STATE(2682), - [sym_comment] = STATE(2512), - [anon_sym_export] = ACTIONS(6228), - [anon_sym_alias] = ACTIONS(6228), - [anon_sym_let] = ACTIONS(6228), - [anon_sym_let_DASHenv] = ACTIONS(6228), - [anon_sym_mut] = ACTIONS(6228), - [anon_sym_const] = ACTIONS(6228), - [anon_sym_SEMI] = ACTIONS(6228), - [sym_cmd_identifier] = ACTIONS(6228), - [anon_sym_LF] = ACTIONS(6230), - [anon_sym_def] = ACTIONS(6228), - [anon_sym_export_DASHenv] = ACTIONS(6228), - [anon_sym_extern] = ACTIONS(6228), - [anon_sym_module] = ACTIONS(6228), - [anon_sym_use] = ACTIONS(6228), - [anon_sym_LBRACK] = ACTIONS(6228), - [anon_sym_LPAREN] = ACTIONS(6228), - [anon_sym_RPAREN] = ACTIONS(6228), - [anon_sym_DOLLAR] = ACTIONS(6228), - [anon_sym_error] = ACTIONS(6228), - [anon_sym_DASH] = ACTIONS(6228), - [anon_sym_break] = ACTIONS(6228), - [anon_sym_continue] = ACTIONS(6228), - [anon_sym_for] = ACTIONS(6228), - [anon_sym_loop] = ACTIONS(6228), - [anon_sym_while] = ACTIONS(6228), - [anon_sym_do] = ACTIONS(6228), - [anon_sym_if] = ACTIONS(6228), - [anon_sym_match] = ACTIONS(6228), - [anon_sym_LBRACE] = ACTIONS(6232), - [anon_sym_RBRACE] = ACTIONS(6228), - [anon_sym_DOT_DOT] = ACTIONS(6228), - [anon_sym_try] = ACTIONS(6228), - [anon_sym_return] = ACTIONS(6228), - [anon_sym_source] = ACTIONS(6228), - [anon_sym_source_DASHenv] = ACTIONS(6228), - [anon_sym_register] = ACTIONS(6228), - [anon_sym_hide] = ACTIONS(6228), - [anon_sym_hide_DASHenv] = ACTIONS(6228), - [anon_sym_overlay] = ACTIONS(6228), - [anon_sym_where] = ACTIONS(6228), - [anon_sym_not] = ACTIONS(6228), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6228), - [anon_sym_DOT_DOT_LT] = ACTIONS(6228), - [anon_sym_null] = ACTIONS(6228), - [anon_sym_true] = ACTIONS(6228), - [anon_sym_false] = ACTIONS(6228), - [aux_sym__val_number_decimal_token1] = ACTIONS(6228), - [aux_sym__val_number_decimal_token2] = ACTIONS(6228), - [anon_sym_DOT2] = ACTIONS(6228), - [aux_sym__val_number_decimal_token3] = ACTIONS(6228), - [aux_sym__val_number_token1] = ACTIONS(6228), - [aux_sym__val_number_token2] = ACTIONS(6228), - [aux_sym__val_number_token3] = ACTIONS(6228), - [aux_sym__val_number_token4] = ACTIONS(6228), - [aux_sym__val_number_token5] = ACTIONS(6228), - [aux_sym__val_number_token6] = ACTIONS(6228), - [anon_sym_0b] = ACTIONS(6228), - [anon_sym_0o] = ACTIONS(6228), - [anon_sym_0x] = ACTIONS(6228), - [sym_val_date] = ACTIONS(6228), - [anon_sym_DQUOTE] = ACTIONS(6228), - [sym__str_single_quotes] = ACTIONS(6228), - [sym__str_back_ticks] = ACTIONS(6228), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6228), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6228), - [anon_sym_CARET] = ACTIONS(6228), + [2664] = { + [sym_comment] = STATE(2664), + [ts_builtin_sym_end] = ACTIONS(1181), + [anon_sym_SEMI] = ACTIONS(1179), + [anon_sym_LF] = ACTIONS(1181), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_PIPE] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(6626), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(6628), + [anon_sym_in] = ACTIONS(6630), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(6632), + [anon_sym_STAR_STAR] = ACTIONS(6634), + [anon_sym_PLUS_PLUS] = ACTIONS(6634), + [anon_sym_SLASH] = ACTIONS(6632), + [anon_sym_mod] = ACTIONS(6632), + [anon_sym_SLASH_SLASH] = ACTIONS(6632), + [anon_sym_PLUS] = ACTIONS(6628), + [anon_sym_bit_DASHshl] = ACTIONS(6636), + [anon_sym_bit_DASHshr] = ACTIONS(6636), + [anon_sym_EQ_EQ] = ACTIONS(6626), + [anon_sym_BANG_EQ] = ACTIONS(6626), + [anon_sym_LT2] = ACTIONS(6626), + [anon_sym_LT_EQ] = ACTIONS(6626), + [anon_sym_GT_EQ] = ACTIONS(6626), + [anon_sym_not_DASHin] = ACTIONS(6630), + [anon_sym_starts_DASHwith] = ACTIONS(6630), + [anon_sym_ends_DASHwith] = ACTIONS(6630), + [anon_sym_EQ_TILDE] = ACTIONS(6638), + [anon_sym_BANG_TILDE] = ACTIONS(6638), + [anon_sym_bit_DASHand] = ACTIONS(1179), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_not] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1179), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, - [2513] = { - [sym_cell_path] = STATE(2992), - [sym_path] = STATE(2528), - [sym_comment] = STATE(2513), - [anon_sym_SEMI] = ACTIONS(995), - [anon_sym_LF] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_RPAREN] = ACTIONS(995), - [anon_sym_PIPE] = ACTIONS(995), - [anon_sym_DOLLAR] = ACTIONS(995), - [anon_sym_GT] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_in] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_RBRACE] = ACTIONS(995), - [anon_sym_DOT_DOT] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_STAR_STAR] = ACTIONS(995), - [anon_sym_PLUS_PLUS] = ACTIONS(995), - [anon_sym_SLASH] = ACTIONS(995), - [anon_sym_mod] = ACTIONS(995), - [anon_sym_SLASH_SLASH] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_bit_DASHshl] = ACTIONS(995), - [anon_sym_bit_DASHshr] = ACTIONS(995), - [anon_sym_EQ_EQ] = ACTIONS(995), - [anon_sym_BANG_EQ] = ACTIONS(995), - [anon_sym_LT2] = ACTIONS(995), - [anon_sym_LT_EQ] = ACTIONS(995), - [anon_sym_GT_EQ] = ACTIONS(995), - [anon_sym_not_DASHin] = ACTIONS(995), - [anon_sym_starts_DASHwith] = ACTIONS(995), - [anon_sym_ends_DASHwith] = ACTIONS(995), - [anon_sym_EQ_TILDE] = ACTIONS(995), - [anon_sym_BANG_TILDE] = ACTIONS(995), - [anon_sym_bit_DASHand] = ACTIONS(995), - [anon_sym_bit_DASHxor] = ACTIONS(995), - [anon_sym_bit_DASHor] = ACTIONS(995), - [anon_sym_and] = ACTIONS(995), - [anon_sym_xor] = ACTIONS(995), - [anon_sym_or] = ACTIONS(995), - [anon_sym_not] = ACTIONS(995), - [anon_sym_DOT] = ACTIONS(6145), - [anon_sym_DOT_DOT_EQ] = ACTIONS(995), - [anon_sym_DOT_DOT_LT] = ACTIONS(995), - [anon_sym_null] = ACTIONS(995), - [anon_sym_true] = ACTIONS(995), - [anon_sym_false] = ACTIONS(995), - [aux_sym__val_number_decimal_token1] = ACTIONS(995), - [aux_sym__val_number_decimal_token2] = ACTIONS(995), - [anon_sym_DOT2] = ACTIONS(995), - [aux_sym__val_number_decimal_token3] = ACTIONS(995), - [aux_sym__val_number_token1] = ACTIONS(995), - [aux_sym__val_number_token2] = ACTIONS(995), - [aux_sym__val_number_token3] = ACTIONS(995), - [aux_sym__val_number_token4] = ACTIONS(995), - [aux_sym__val_number_token5] = ACTIONS(995), - [aux_sym__val_number_token6] = ACTIONS(995), - [anon_sym_0b] = ACTIONS(995), - [anon_sym_0o] = ACTIONS(995), - [anon_sym_0x] = ACTIONS(995), - [sym_val_date] = ACTIONS(995), - [anon_sym_DQUOTE] = ACTIONS(995), - [sym__str_single_quotes] = ACTIONS(995), - [sym__str_back_ticks] = ACTIONS(995), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(995), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(995), + [2665] = { + [sym_comment] = STATE(2665), + [ts_builtin_sym_end] = ACTIONS(1173), + [anon_sym_SEMI] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_PIPE] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, - [2514] = { - [sym_comment] = STATE(2514), - [ts_builtin_sym_end] = ACTIONS(5663), - [anon_sym_export] = ACTIONS(5661), - [anon_sym_alias] = ACTIONS(5661), - [anon_sym_let] = ACTIONS(5661), - [anon_sym_let_DASHenv] = ACTIONS(5661), - [anon_sym_mut] = ACTIONS(5661), - [anon_sym_const] = ACTIONS(5661), - [anon_sym_SEMI] = ACTIONS(5661), - [sym_cmd_identifier] = ACTIONS(5661), - [anon_sym_LF] = ACTIONS(5663), - [anon_sym_def] = ACTIONS(5661), - [anon_sym_export_DASHenv] = ACTIONS(5661), - [anon_sym_extern] = ACTIONS(5661), - [anon_sym_module] = ACTIONS(5661), - [anon_sym_use] = ACTIONS(5661), - [anon_sym_LBRACK] = ACTIONS(5661), - [anon_sym_LPAREN] = ACTIONS(5661), - [anon_sym_DOLLAR] = ACTIONS(5661), - [anon_sym_error] = ACTIONS(5661), - [anon_sym_DASH_DASH] = ACTIONS(5661), - [anon_sym_DASH] = ACTIONS(5661), - [anon_sym_break] = ACTIONS(5661), - [anon_sym_continue] = ACTIONS(5661), - [anon_sym_for] = ACTIONS(5661), - [anon_sym_loop] = ACTIONS(5661), - [anon_sym_while] = ACTIONS(5661), - [anon_sym_do] = ACTIONS(5661), - [anon_sym_if] = ACTIONS(5661), - [anon_sym_match] = ACTIONS(5661), - [anon_sym_LBRACE] = ACTIONS(5661), - [anon_sym_DOT_DOT] = ACTIONS(5661), - [anon_sym_try] = ACTIONS(5661), - [anon_sym_return] = ACTIONS(5661), - [anon_sym_source] = ACTIONS(5661), - [anon_sym_source_DASHenv] = ACTIONS(5661), - [anon_sym_register] = ACTIONS(5661), - [anon_sym_hide] = ACTIONS(5661), - [anon_sym_hide_DASHenv] = ACTIONS(5661), - [anon_sym_overlay] = ACTIONS(5661), - [anon_sym_as] = ACTIONS(5661), - [anon_sym_where] = ACTIONS(5661), - [anon_sym_not] = ACTIONS(5661), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5661), - [anon_sym_DOT_DOT_LT] = ACTIONS(5661), - [anon_sym_null] = ACTIONS(5661), - [anon_sym_true] = ACTIONS(5661), - [anon_sym_false] = ACTIONS(5661), - [aux_sym__val_number_decimal_token1] = ACTIONS(5661), - [aux_sym__val_number_decimal_token2] = ACTIONS(5661), - [anon_sym_DOT2] = ACTIONS(5661), - [aux_sym__val_number_decimal_token3] = ACTIONS(5661), - [aux_sym__val_number_token1] = ACTIONS(5661), - [aux_sym__val_number_token2] = ACTIONS(5661), - [aux_sym__val_number_token3] = ACTIONS(5661), - [aux_sym__val_number_token4] = ACTIONS(5661), - [aux_sym__val_number_token5] = ACTIONS(5661), - [aux_sym__val_number_token6] = ACTIONS(5661), - [anon_sym_0b] = ACTIONS(5661), - [anon_sym_0o] = ACTIONS(5661), - [anon_sym_0x] = ACTIONS(5661), - [sym_val_date] = ACTIONS(5661), - [anon_sym_DQUOTE] = ACTIONS(5661), - [sym__str_single_quotes] = ACTIONS(5661), - [sym__str_back_ticks] = ACTIONS(5661), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5661), - [anon_sym_CARET] = ACTIONS(5661), + [2666] = { + [sym_comment] = STATE(2666), + [ts_builtin_sym_end] = ACTIONS(1281), + [anon_sym_SEMI] = ACTIONS(1279), + [anon_sym_LF] = ACTIONS(1281), + [anon_sym_LBRACK] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_PIPE] = ACTIONS(1279), + [anon_sym_DOLLAR] = ACTIONS(1279), + [anon_sym_GT] = ACTIONS(1279), + [anon_sym_DASH_DASH] = ACTIONS(1279), + [anon_sym_DASH] = ACTIONS(1279), + [anon_sym_in] = ACTIONS(1279), + [anon_sym_LBRACE] = ACTIONS(1279), + [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1279), + [anon_sym_STAR_STAR] = ACTIONS(1279), + [anon_sym_PLUS_PLUS] = ACTIONS(1279), + [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_mod] = ACTIONS(1279), + [anon_sym_SLASH_SLASH] = ACTIONS(1279), + [anon_sym_PLUS] = ACTIONS(1279), + [anon_sym_bit_DASHshl] = ACTIONS(1279), + [anon_sym_bit_DASHshr] = ACTIONS(1279), + [anon_sym_EQ_EQ] = ACTIONS(1279), + [anon_sym_BANG_EQ] = ACTIONS(1279), + [anon_sym_LT2] = ACTIONS(1279), + [anon_sym_LT_EQ] = ACTIONS(1279), + [anon_sym_GT_EQ] = ACTIONS(1279), + [anon_sym_not_DASHin] = ACTIONS(1279), + [anon_sym_starts_DASHwith] = ACTIONS(1279), + [anon_sym_ends_DASHwith] = ACTIONS(1279), + [anon_sym_EQ_TILDE] = ACTIONS(1279), + [anon_sym_BANG_TILDE] = ACTIONS(1279), + [anon_sym_bit_DASHand] = ACTIONS(1279), + [anon_sym_bit_DASHxor] = ACTIONS(1279), + [anon_sym_bit_DASHor] = ACTIONS(1279), + [anon_sym_and] = ACTIONS(1279), + [anon_sym_xor] = ACTIONS(1279), + [anon_sym_or] = ACTIONS(1279), + [anon_sym_not] = ACTIONS(1279), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1279), + [anon_sym_DOT_DOT_LT] = ACTIONS(1279), + [anon_sym_null] = ACTIONS(1279), + [anon_sym_true] = ACTIONS(1279), + [anon_sym_false] = ACTIONS(1279), + [aux_sym__val_number_decimal_token1] = ACTIONS(1279), + [aux_sym__val_number_decimal_token2] = ACTIONS(1279), + [anon_sym_DOT2] = ACTIONS(1279), + [aux_sym__val_number_decimal_token3] = ACTIONS(1279), + [aux_sym__val_number_token1] = ACTIONS(1279), + [aux_sym__val_number_token2] = ACTIONS(1279), + [aux_sym__val_number_token3] = ACTIONS(1279), + [aux_sym__val_number_token4] = ACTIONS(1279), + [aux_sym__val_number_token5] = ACTIONS(1279), + [aux_sym__val_number_token6] = ACTIONS(1279), + [anon_sym_0b] = ACTIONS(1279), + [anon_sym_0o] = ACTIONS(1279), + [anon_sym_0x] = ACTIONS(1279), + [sym_val_date] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(1279), + [sym__str_single_quotes] = ACTIONS(1279), + [sym__str_back_ticks] = ACTIONS(1279), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1279), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1279), [anon_sym_POUND] = ACTIONS(113), }, - [2515] = { - [sym_comment] = STATE(2515), - [anon_sym_LBRACK] = ACTIONS(1061), - [anon_sym_COMMA] = ACTIONS(1061), - [anon_sym_RBRACK] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1061), - [anon_sym_DOLLAR] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_DASH_DASH] = ACTIONS(1061), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_STAR_STAR] = ACTIONS(1061), - [anon_sym_PLUS_PLUS] = ACTIONS(1061), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_mod] = ACTIONS(1061), - [anon_sym_SLASH_SLASH] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_bit_DASHshl] = ACTIONS(1061), - [anon_sym_bit_DASHshr] = ACTIONS(1061), - [anon_sym_EQ_EQ] = ACTIONS(1061), - [anon_sym_BANG_EQ] = ACTIONS(1061), - [anon_sym_LT2] = ACTIONS(1059), - [anon_sym_LT_EQ] = ACTIONS(1061), - [anon_sym_GT_EQ] = ACTIONS(1061), - [anon_sym_not_DASHin] = ACTIONS(1061), - [anon_sym_starts_DASHwith] = ACTIONS(1061), - [anon_sym_ends_DASHwith] = ACTIONS(1061), - [anon_sym_EQ_TILDE] = ACTIONS(1061), - [anon_sym_BANG_TILDE] = ACTIONS(1061), - [anon_sym_bit_DASHand] = ACTIONS(1061), - [anon_sym_bit_DASHxor] = ACTIONS(1061), - [anon_sym_bit_DASHor] = ACTIONS(1061), - [anon_sym_and] = ACTIONS(1061), - [anon_sym_xor] = ACTIONS(1061), - [anon_sym_or] = ACTIONS(1061), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1061), - [anon_sym_DOT_DOT_LT] = ACTIONS(1061), - [anon_sym_null] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), - [aux_sym__val_number_decimal_token1] = ACTIONS(1059), - [aux_sym__val_number_decimal_token2] = ACTIONS(1061), - [anon_sym_DOT2] = ACTIONS(1059), - [aux_sym__val_number_decimal_token3] = ACTIONS(1061), - [aux_sym__val_number_token1] = ACTIONS(1061), - [aux_sym__val_number_token2] = ACTIONS(1061), - [aux_sym__val_number_token3] = ACTIONS(1061), - [aux_sym__val_number_token4] = ACTIONS(1061), - [aux_sym__val_number_token5] = ACTIONS(1061), - [aux_sym__val_number_token6] = ACTIONS(1061), - [anon_sym_0b] = ACTIONS(1059), - [anon_sym_0o] = ACTIONS(1059), - [anon_sym_0x] = ACTIONS(1059), - [sym_val_date] = ACTIONS(1061), - [anon_sym_DQUOTE] = ACTIONS(1061), - [sym__str_single_quotes] = ACTIONS(1061), - [sym__str_back_ticks] = ACTIONS(1061), - [anon_sym_err_GT] = ACTIONS(1061), - [anon_sym_out_GT] = ACTIONS(1061), - [anon_sym_e_GT] = ACTIONS(1061), - [anon_sym_o_GT] = ACTIONS(1061), - [anon_sym_err_PLUSout_GT] = ACTIONS(1061), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1061), - [anon_sym_o_PLUSe_GT] = ACTIONS(1061), - [anon_sym_e_PLUSo_GT] = ACTIONS(1061), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1059), - [anon_sym_POUND] = ACTIONS(3), + [2667] = { + [sym_comment] = STATE(2667), + [ts_builtin_sym_end] = ACTIONS(1181), + [anon_sym_SEMI] = ACTIONS(1179), + [anon_sym_LF] = ACTIONS(1181), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_PIPE] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(6626), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(6628), + [anon_sym_in] = ACTIONS(6630), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(6632), + [anon_sym_STAR_STAR] = ACTIONS(6634), + [anon_sym_PLUS_PLUS] = ACTIONS(6634), + [anon_sym_SLASH] = ACTIONS(6632), + [anon_sym_mod] = ACTIONS(6632), + [anon_sym_SLASH_SLASH] = ACTIONS(6632), + [anon_sym_PLUS] = ACTIONS(6628), + [anon_sym_bit_DASHshl] = ACTIONS(6636), + [anon_sym_bit_DASHshr] = ACTIONS(6636), + [anon_sym_EQ_EQ] = ACTIONS(6626), + [anon_sym_BANG_EQ] = ACTIONS(6626), + [anon_sym_LT2] = ACTIONS(6626), + [anon_sym_LT_EQ] = ACTIONS(6626), + [anon_sym_GT_EQ] = ACTIONS(6626), + [anon_sym_not_DASHin] = ACTIONS(6630), + [anon_sym_starts_DASHwith] = ACTIONS(6630), + [anon_sym_ends_DASHwith] = ACTIONS(6630), + [anon_sym_EQ_TILDE] = ACTIONS(6638), + [anon_sym_BANG_TILDE] = ACTIONS(6638), + [anon_sym_bit_DASHand] = ACTIONS(6640), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_not] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1179), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(113), }, - [2516] = { - [sym_comment] = STATE(2516), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_COMMA] = ACTIONS(1065), - [anon_sym_RBRACK] = ACTIONS(1065), - [anon_sym_LPAREN] = ACTIONS(1065), - [anon_sym_DOLLAR] = ACTIONS(1065), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(1065), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_STAR_STAR] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_SLASH] = ACTIONS(1063), - [anon_sym_mod] = ACTIONS(1065), - [anon_sym_SLASH_SLASH] = ACTIONS(1065), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_bit_DASHshl] = ACTIONS(1065), - [anon_sym_bit_DASHshr] = ACTIONS(1065), - [anon_sym_EQ_EQ] = ACTIONS(1065), - [anon_sym_BANG_EQ] = ACTIONS(1065), - [anon_sym_LT2] = ACTIONS(1063), - [anon_sym_LT_EQ] = ACTIONS(1065), - [anon_sym_GT_EQ] = ACTIONS(1065), - [anon_sym_not_DASHin] = ACTIONS(1065), - [anon_sym_starts_DASHwith] = ACTIONS(1065), - [anon_sym_ends_DASHwith] = ACTIONS(1065), - [anon_sym_EQ_TILDE] = ACTIONS(1065), - [anon_sym_BANG_TILDE] = ACTIONS(1065), - [anon_sym_bit_DASHand] = ACTIONS(1065), - [anon_sym_bit_DASHxor] = ACTIONS(1065), - [anon_sym_bit_DASHor] = ACTIONS(1065), - [anon_sym_and] = ACTIONS(1065), - [anon_sym_xor] = ACTIONS(1065), - [anon_sym_or] = ACTIONS(1065), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1065), - [anon_sym_DOT_DOT_LT] = ACTIONS(1065), - [anon_sym_null] = ACTIONS(1065), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [aux_sym__val_number_decimal_token1] = ACTIONS(1063), - [aux_sym__val_number_decimal_token2] = ACTIONS(1065), - [anon_sym_DOT2] = ACTIONS(1063), - [aux_sym__val_number_decimal_token3] = ACTIONS(1065), - [aux_sym__val_number_token1] = ACTIONS(1065), - [aux_sym__val_number_token2] = ACTIONS(1065), - [aux_sym__val_number_token3] = ACTIONS(1065), - [aux_sym__val_number_token4] = ACTIONS(1065), - [aux_sym__val_number_token5] = ACTIONS(1065), - [aux_sym__val_number_token6] = ACTIONS(1065), - [anon_sym_0b] = ACTIONS(1063), - [anon_sym_0o] = ACTIONS(1063), - [anon_sym_0x] = ACTIONS(1063), - [sym_val_date] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(1065), - [sym__str_single_quotes] = ACTIONS(1065), - [sym__str_back_ticks] = ACTIONS(1065), - [anon_sym_err_GT] = ACTIONS(1065), - [anon_sym_out_GT] = ACTIONS(1065), - [anon_sym_e_GT] = ACTIONS(1065), - [anon_sym_o_GT] = ACTIONS(1065), - [anon_sym_err_PLUSout_GT] = ACTIONS(1065), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1065), - [anon_sym_o_PLUSe_GT] = ACTIONS(1065), - [anon_sym_e_PLUSo_GT] = ACTIONS(1065), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1063), - [anon_sym_POUND] = ACTIONS(3), + [2668] = { + [sym_comment] = STATE(2668), + [ts_builtin_sym_end] = ACTIONS(1167), + [anon_sym_SEMI] = ACTIONS(1165), + [anon_sym_LF] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_LPAREN] = ACTIONS(1165), + [anon_sym_PIPE] = ACTIONS(1165), + [anon_sym_DOLLAR] = ACTIONS(1165), + [anon_sym_GT] = ACTIONS(1165), + [anon_sym_DASH_DASH] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_in] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(1165), + [anon_sym_DOT_DOT] = ACTIONS(1165), + [anon_sym_STAR] = ACTIONS(1165), + [anon_sym_STAR_STAR] = ACTIONS(1165), + [anon_sym_PLUS_PLUS] = ACTIONS(1165), + [anon_sym_SLASH] = ACTIONS(1165), + [anon_sym_mod] = ACTIONS(1165), + [anon_sym_SLASH_SLASH] = ACTIONS(1165), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_bit_DASHshl] = ACTIONS(1165), + [anon_sym_bit_DASHshr] = ACTIONS(1165), + [anon_sym_EQ_EQ] = ACTIONS(1165), + [anon_sym_BANG_EQ] = ACTIONS(1165), + [anon_sym_LT2] = ACTIONS(1165), + [anon_sym_LT_EQ] = ACTIONS(1165), + [anon_sym_GT_EQ] = ACTIONS(1165), + [anon_sym_not_DASHin] = ACTIONS(1165), + [anon_sym_starts_DASHwith] = ACTIONS(1165), + [anon_sym_ends_DASHwith] = ACTIONS(1165), + [anon_sym_EQ_TILDE] = ACTIONS(1165), + [anon_sym_BANG_TILDE] = ACTIONS(1165), + [anon_sym_bit_DASHand] = ACTIONS(1165), + [anon_sym_bit_DASHxor] = ACTIONS(1165), + [anon_sym_bit_DASHor] = ACTIONS(1165), + [anon_sym_and] = ACTIONS(1165), + [anon_sym_xor] = ACTIONS(1165), + [anon_sym_or] = ACTIONS(1165), + [anon_sym_not] = ACTIONS(1165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1165), + [anon_sym_DOT_DOT_LT] = ACTIONS(1165), + [anon_sym_null] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1165), + [anon_sym_false] = ACTIONS(1165), + [aux_sym__val_number_decimal_token1] = ACTIONS(1165), + [aux_sym__val_number_decimal_token2] = ACTIONS(1165), + [anon_sym_DOT2] = ACTIONS(1165), + [aux_sym__val_number_decimal_token3] = ACTIONS(1165), + [aux_sym__val_number_token1] = ACTIONS(1165), + [aux_sym__val_number_token2] = ACTIONS(1165), + [aux_sym__val_number_token3] = ACTIONS(1165), + [aux_sym__val_number_token4] = ACTIONS(1165), + [aux_sym__val_number_token5] = ACTIONS(1165), + [aux_sym__val_number_token6] = ACTIONS(1165), + [anon_sym_0b] = ACTIONS(1165), + [anon_sym_0o] = ACTIONS(1165), + [anon_sym_0x] = ACTIONS(1165), + [sym_val_date] = ACTIONS(1165), + [anon_sym_DQUOTE] = ACTIONS(1165), + [sym__str_single_quotes] = ACTIONS(1165), + [sym__str_back_ticks] = ACTIONS(1165), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1165), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1165), + [anon_sym_POUND] = ACTIONS(113), }, - [2517] = { - [sym_comment] = STATE(2517), - [ts_builtin_sym_end] = ACTIONS(1111), - [anon_sym_SEMI] = ACTIONS(1109), - [anon_sym_LF] = ACTIONS(1111), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_PIPE] = ACTIONS(1109), - [anon_sym_DOLLAR] = ACTIONS(1109), - [anon_sym_GT] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_in] = ACTIONS(1109), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_DOT_DOT] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_STAR_STAR] = ACTIONS(1109), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_SLASH] = ACTIONS(1109), - [anon_sym_mod] = ACTIONS(1109), - [anon_sym_SLASH_SLASH] = ACTIONS(1109), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_bit_DASHshl] = ACTIONS(1109), - [anon_sym_bit_DASHshr] = ACTIONS(1109), - [anon_sym_EQ_EQ] = ACTIONS(1109), - [anon_sym_BANG_EQ] = ACTIONS(1109), - [anon_sym_LT2] = ACTIONS(1109), - [anon_sym_LT_EQ] = ACTIONS(1109), - [anon_sym_GT_EQ] = ACTIONS(1109), - [anon_sym_not_DASHin] = ACTIONS(1109), - [anon_sym_starts_DASHwith] = ACTIONS(1109), - [anon_sym_ends_DASHwith] = ACTIONS(1109), - [anon_sym_EQ_TILDE] = ACTIONS(1109), - [anon_sym_BANG_TILDE] = ACTIONS(1109), - [anon_sym_bit_DASHand] = ACTIONS(1109), - [anon_sym_bit_DASHxor] = ACTIONS(1109), - [anon_sym_bit_DASHor] = ACTIONS(1109), - [anon_sym_and] = ACTIONS(1109), - [anon_sym_xor] = ACTIONS(1109), - [anon_sym_or] = ACTIONS(1109), - [anon_sym_not] = ACTIONS(1109), - [anon_sym_DOT_DOT2] = ACTIONS(1109), - [anon_sym_DOT] = ACTIONS(1109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1109), - [anon_sym_DOT_DOT_LT] = ACTIONS(1109), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1111), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1111), - [anon_sym_null] = ACTIONS(1109), - [anon_sym_true] = ACTIONS(1109), - [anon_sym_false] = ACTIONS(1109), - [aux_sym__val_number_decimal_token1] = ACTIONS(1109), - [aux_sym__val_number_decimal_token2] = ACTIONS(1109), - [anon_sym_DOT2] = ACTIONS(1109), - [aux_sym__val_number_decimal_token3] = ACTIONS(1109), - [aux_sym__val_number_token1] = ACTIONS(1109), - [aux_sym__val_number_token2] = ACTIONS(1109), - [aux_sym__val_number_token3] = ACTIONS(1109), - [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(1109), - [anon_sym_0o] = ACTIONS(1109), - [anon_sym_0x] = ACTIONS(1109), - [sym_val_date] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(1109), - [sym__str_single_quotes] = ACTIONS(1109), - [sym__str_back_ticks] = ACTIONS(1109), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1109), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1109), + [2669] = { + [sym_comment] = STATE(2669), + [ts_builtin_sym_end] = ACTIONS(1217), + [anon_sym_SEMI] = ACTIONS(1215), + [anon_sym_LF] = ACTIONS(1217), + [anon_sym_LBRACK] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_DOLLAR] = ACTIONS(1215), + [anon_sym_GT] = ACTIONS(1215), + [anon_sym_DASH_DASH] = ACTIONS(1215), + [anon_sym_DASH] = ACTIONS(1215), + [anon_sym_in] = ACTIONS(1215), + [anon_sym_LBRACE] = ACTIONS(1215), + [anon_sym_DOT_DOT] = ACTIONS(1215), + [anon_sym_STAR] = ACTIONS(1215), + [anon_sym_STAR_STAR] = ACTIONS(1215), + [anon_sym_PLUS_PLUS] = ACTIONS(1215), + [anon_sym_SLASH] = ACTIONS(1215), + [anon_sym_mod] = ACTIONS(1215), + [anon_sym_SLASH_SLASH] = ACTIONS(1215), + [anon_sym_PLUS] = ACTIONS(1215), + [anon_sym_bit_DASHshl] = ACTIONS(1215), + [anon_sym_bit_DASHshr] = ACTIONS(1215), + [anon_sym_EQ_EQ] = ACTIONS(1215), + [anon_sym_BANG_EQ] = ACTIONS(1215), + [anon_sym_LT2] = ACTIONS(1215), + [anon_sym_LT_EQ] = ACTIONS(1215), + [anon_sym_GT_EQ] = ACTIONS(1215), + [anon_sym_not_DASHin] = ACTIONS(1215), + [anon_sym_starts_DASHwith] = ACTIONS(1215), + [anon_sym_ends_DASHwith] = ACTIONS(1215), + [anon_sym_EQ_TILDE] = ACTIONS(1215), + [anon_sym_BANG_TILDE] = ACTIONS(1215), + [anon_sym_bit_DASHand] = ACTIONS(1215), + [anon_sym_bit_DASHxor] = ACTIONS(1215), + [anon_sym_bit_DASHor] = ACTIONS(1215), + [anon_sym_and] = ACTIONS(1215), + [anon_sym_xor] = ACTIONS(1215), + [anon_sym_or] = ACTIONS(1215), + [anon_sym_not] = ACTIONS(1215), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1215), + [anon_sym_DOT_DOT_LT] = ACTIONS(1215), + [anon_sym_null] = ACTIONS(1215), + [anon_sym_true] = ACTIONS(1215), + [anon_sym_false] = ACTIONS(1215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1215), + [aux_sym__val_number_decimal_token2] = ACTIONS(1215), + [anon_sym_DOT2] = ACTIONS(1215), + [aux_sym__val_number_decimal_token3] = ACTIONS(1215), + [aux_sym__val_number_token1] = ACTIONS(1215), + [aux_sym__val_number_token2] = ACTIONS(1215), + [aux_sym__val_number_token3] = ACTIONS(1215), + [aux_sym__val_number_token4] = ACTIONS(1215), + [aux_sym__val_number_token5] = ACTIONS(1215), + [aux_sym__val_number_token6] = ACTIONS(1215), + [anon_sym_0b] = ACTIONS(1215), + [anon_sym_0o] = ACTIONS(1215), + [anon_sym_0x] = ACTIONS(1215), + [sym_val_date] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1215), + [sym__str_single_quotes] = ACTIONS(1215), + [sym__str_back_ticks] = ACTIONS(1215), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1215), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), [anon_sym_POUND] = ACTIONS(113), }, - [2518] = { - [sym_comment] = STATE(2518), - [anon_sym_LBRACK] = ACTIONS(1170), - [anon_sym_COMMA] = ACTIONS(1170), - [anon_sym_RBRACK] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1170), - [anon_sym_DOLLAR] = ACTIONS(1170), - [anon_sym_GT] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1168), - [anon_sym_in] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1170), - [anon_sym_DOT_DOT] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_STAR_STAR] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1170), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_mod] = ACTIONS(1170), - [anon_sym_SLASH_SLASH] = ACTIONS(1170), - [anon_sym_PLUS] = ACTIONS(1168), - [anon_sym_bit_DASHshl] = ACTIONS(1170), - [anon_sym_bit_DASHshr] = ACTIONS(1170), - [anon_sym_EQ_EQ] = ACTIONS(1170), - [anon_sym_BANG_EQ] = ACTIONS(1170), - [anon_sym_LT2] = ACTIONS(1168), - [anon_sym_LT_EQ] = ACTIONS(1170), - [anon_sym_GT_EQ] = ACTIONS(1170), - [anon_sym_not_DASHin] = ACTIONS(1170), - [anon_sym_starts_DASHwith] = ACTIONS(1170), - [anon_sym_ends_DASHwith] = ACTIONS(1170), - [anon_sym_EQ_TILDE] = ACTIONS(1170), - [anon_sym_BANG_TILDE] = ACTIONS(1170), - [anon_sym_bit_DASHand] = ACTIONS(1170), - [anon_sym_bit_DASHxor] = ACTIONS(1170), - [anon_sym_bit_DASHor] = ACTIONS(1170), - [anon_sym_and] = ACTIONS(1170), - [anon_sym_xor] = ACTIONS(1170), - [anon_sym_or] = ACTIONS(1170), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1170), - [anon_sym_DOT_DOT_LT] = ACTIONS(1170), - [anon_sym_null] = ACTIONS(1170), - [anon_sym_true] = ACTIONS(1170), - [anon_sym_false] = ACTIONS(1170), - [aux_sym__val_number_decimal_token1] = ACTIONS(1168), - [aux_sym__val_number_decimal_token2] = ACTIONS(1170), - [anon_sym_DOT2] = ACTIONS(1168), - [aux_sym__val_number_decimal_token3] = ACTIONS(1170), - [aux_sym__val_number_token1] = ACTIONS(1170), - [aux_sym__val_number_token2] = ACTIONS(1170), - [aux_sym__val_number_token3] = ACTIONS(1170), - [aux_sym__val_number_token4] = ACTIONS(1170), - [aux_sym__val_number_token5] = ACTIONS(1170), - [aux_sym__val_number_token6] = ACTIONS(1170), - [anon_sym_0b] = ACTIONS(1168), - [anon_sym_0o] = ACTIONS(1168), - [anon_sym_0x] = ACTIONS(1168), - [sym_val_date] = ACTIONS(1170), - [anon_sym_DQUOTE] = ACTIONS(1170), - [sym__str_single_quotes] = ACTIONS(1170), - [sym__str_back_ticks] = ACTIONS(1170), - [anon_sym_err_GT] = ACTIONS(1170), - [anon_sym_out_GT] = ACTIONS(1170), - [anon_sym_e_GT] = ACTIONS(1170), - [anon_sym_o_GT] = ACTIONS(1170), - [anon_sym_err_PLUSout_GT] = ACTIONS(1170), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1170), - [anon_sym_o_PLUSe_GT] = ACTIONS(1170), - [anon_sym_e_PLUSo_GT] = ACTIONS(1170), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1168), + [2670] = { + [sym_comment] = STATE(2670), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LPAREN] = ACTIONS(1035), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1033), + [anon_sym_in] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(1035), + [anon_sym_DOT_DOT] = ACTIONS(1033), + [anon_sym_STAR] = ACTIONS(1033), + [anon_sym_QMARK2] = ACTIONS(1035), + [anon_sym_STAR_STAR] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1035), + [anon_sym_SLASH] = ACTIONS(1033), + [anon_sym_mod] = ACTIONS(1035), + [anon_sym_SLASH_SLASH] = ACTIONS(1035), + [anon_sym_PLUS] = ACTIONS(1033), + [anon_sym_bit_DASHshl] = ACTIONS(1035), + [anon_sym_bit_DASHshr] = ACTIONS(1035), + [anon_sym_EQ_EQ] = ACTIONS(1035), + [anon_sym_BANG_EQ] = ACTIONS(1035), + [anon_sym_LT2] = ACTIONS(1033), + [anon_sym_LT_EQ] = ACTIONS(1035), + [anon_sym_GT_EQ] = ACTIONS(1035), + [anon_sym_not_DASHin] = ACTIONS(1035), + [anon_sym_starts_DASHwith] = ACTIONS(1035), + [anon_sym_ends_DASHwith] = ACTIONS(1035), + [anon_sym_EQ_TILDE] = ACTIONS(1035), + [anon_sym_BANG_TILDE] = ACTIONS(1035), + [anon_sym_bit_DASHand] = ACTIONS(1035), + [anon_sym_bit_DASHxor] = ACTIONS(1035), + [anon_sym_bit_DASHor] = ACTIONS(1035), + [anon_sym_and] = ACTIONS(1035), + [anon_sym_xor] = ACTIONS(1035), + [anon_sym_or] = ACTIONS(1035), + [anon_sym_not] = ACTIONS(1033), + [anon_sym_DOT_DOT2] = ACTIONS(1033), + [anon_sym_DOT] = ACTIONS(1033), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1033), + [anon_sym_DOT_DOT_LT] = ACTIONS(1033), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1035), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1035), + [anon_sym_null] = ACTIONS(1035), + [anon_sym_true] = ACTIONS(1035), + [anon_sym_false] = ACTIONS(1035), + [aux_sym__val_number_decimal_token1] = ACTIONS(1033), + [aux_sym__val_number_decimal_token2] = ACTIONS(1035), + [anon_sym_DOT2] = ACTIONS(1033), + [aux_sym__val_number_decimal_token3] = ACTIONS(1035), + [aux_sym__val_number_token1] = ACTIONS(1035), + [aux_sym__val_number_token2] = ACTIONS(1035), + [aux_sym__val_number_token3] = ACTIONS(1035), + [aux_sym__val_number_token4] = ACTIONS(1035), + [aux_sym__val_number_token5] = ACTIONS(1035), + [aux_sym__val_number_token6] = ACTIONS(1035), + [anon_sym_0b] = ACTIONS(1033), + [anon_sym_0o] = ACTIONS(1033), + [anon_sym_0x] = ACTIONS(1033), + [sym_val_date] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(1035), + [sym__str_single_quotes] = ACTIONS(1035), + [sym__str_back_ticks] = ACTIONS(1035), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1035), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1035), [anon_sym_POUND] = ACTIONS(3), }, - [2519] = { - [sym_block] = STATE(2701), - [sym_comment] = STATE(2519), - [anon_sym_export] = ACTIONS(6234), - [anon_sym_alias] = ACTIONS(6234), - [anon_sym_let] = ACTIONS(6234), - [anon_sym_let_DASHenv] = ACTIONS(6234), - [anon_sym_mut] = ACTIONS(6234), - [anon_sym_const] = ACTIONS(6234), - [anon_sym_SEMI] = ACTIONS(6234), - [sym_cmd_identifier] = ACTIONS(6234), - [anon_sym_LF] = ACTIONS(6236), - [anon_sym_def] = ACTIONS(6234), - [anon_sym_export_DASHenv] = ACTIONS(6234), - [anon_sym_extern] = ACTIONS(6234), - [anon_sym_module] = ACTIONS(6234), - [anon_sym_use] = ACTIONS(6234), - [anon_sym_LBRACK] = ACTIONS(6234), - [anon_sym_LPAREN] = ACTIONS(6234), - [anon_sym_RPAREN] = ACTIONS(6234), - [anon_sym_DOLLAR] = ACTIONS(6234), - [anon_sym_error] = ACTIONS(6234), - [anon_sym_DASH] = ACTIONS(6234), - [anon_sym_break] = ACTIONS(6234), - [anon_sym_continue] = ACTIONS(6234), - [anon_sym_for] = ACTIONS(6234), - [anon_sym_loop] = ACTIONS(6234), - [anon_sym_while] = ACTIONS(6234), - [anon_sym_do] = ACTIONS(6234), - [anon_sym_if] = ACTIONS(6234), - [anon_sym_match] = ACTIONS(6234), - [anon_sym_LBRACE] = ACTIONS(6232), - [anon_sym_RBRACE] = ACTIONS(6234), - [anon_sym_DOT_DOT] = ACTIONS(6234), - [anon_sym_try] = ACTIONS(6234), - [anon_sym_return] = ACTIONS(6234), - [anon_sym_source] = ACTIONS(6234), - [anon_sym_source_DASHenv] = ACTIONS(6234), - [anon_sym_register] = ACTIONS(6234), - [anon_sym_hide] = ACTIONS(6234), - [anon_sym_hide_DASHenv] = ACTIONS(6234), - [anon_sym_overlay] = ACTIONS(6234), - [anon_sym_where] = ACTIONS(6234), - [anon_sym_not] = ACTIONS(6234), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6234), - [anon_sym_DOT_DOT_LT] = ACTIONS(6234), - [anon_sym_null] = ACTIONS(6234), - [anon_sym_true] = ACTIONS(6234), - [anon_sym_false] = ACTIONS(6234), - [aux_sym__val_number_decimal_token1] = ACTIONS(6234), - [aux_sym__val_number_decimal_token2] = ACTIONS(6234), - [anon_sym_DOT2] = ACTIONS(6234), - [aux_sym__val_number_decimal_token3] = ACTIONS(6234), - [aux_sym__val_number_token1] = ACTIONS(6234), - [aux_sym__val_number_token2] = ACTIONS(6234), - [aux_sym__val_number_token3] = ACTIONS(6234), - [aux_sym__val_number_token4] = ACTIONS(6234), - [aux_sym__val_number_token5] = ACTIONS(6234), - [aux_sym__val_number_token6] = ACTIONS(6234), - [anon_sym_0b] = ACTIONS(6234), - [anon_sym_0o] = ACTIONS(6234), - [anon_sym_0x] = ACTIONS(6234), - [sym_val_date] = ACTIONS(6234), - [anon_sym_DQUOTE] = ACTIONS(6234), - [sym__str_single_quotes] = ACTIONS(6234), - [sym__str_back_ticks] = ACTIONS(6234), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6234), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6234), - [anon_sym_CARET] = ACTIONS(6234), - [anon_sym_POUND] = ACTIONS(113), + [2671] = { + [sym_comment] = STATE(2671), + [anon_sym_LBRACK] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_GT] = ACTIONS(1020), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_in] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1022), + [anon_sym_DOT_DOT] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_QMARK2] = ACTIONS(1022), + [anon_sym_STAR_STAR] = ACTIONS(1022), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_SLASH] = ACTIONS(1020), + [anon_sym_mod] = ACTIONS(1022), + [anon_sym_SLASH_SLASH] = ACTIONS(1022), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_bit_DASHshl] = ACTIONS(1022), + [anon_sym_bit_DASHshr] = ACTIONS(1022), + [anon_sym_EQ_EQ] = ACTIONS(1022), + [anon_sym_BANG_EQ] = ACTIONS(1022), + [anon_sym_LT2] = ACTIONS(1020), + [anon_sym_LT_EQ] = ACTIONS(1022), + [anon_sym_GT_EQ] = ACTIONS(1022), + [anon_sym_not_DASHin] = ACTIONS(1022), + [anon_sym_starts_DASHwith] = ACTIONS(1022), + [anon_sym_ends_DASHwith] = ACTIONS(1022), + [anon_sym_EQ_TILDE] = ACTIONS(1022), + [anon_sym_BANG_TILDE] = ACTIONS(1022), + [anon_sym_bit_DASHand] = ACTIONS(1022), + [anon_sym_bit_DASHxor] = ACTIONS(1022), + [anon_sym_bit_DASHor] = ACTIONS(1022), + [anon_sym_and] = ACTIONS(1022), + [anon_sym_xor] = ACTIONS(1022), + [anon_sym_or] = ACTIONS(1022), + [anon_sym_not] = ACTIONS(1020), + [anon_sym_DOT_DOT2] = ACTIONS(1020), + [anon_sym_DOT] = ACTIONS(1020), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1020), + [anon_sym_DOT_DOT_LT] = ACTIONS(1020), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1022), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1022), + [anon_sym_null] = ACTIONS(1022), + [anon_sym_true] = ACTIONS(1022), + [anon_sym_false] = ACTIONS(1022), + [aux_sym__val_number_decimal_token1] = ACTIONS(1020), + [aux_sym__val_number_decimal_token2] = ACTIONS(1022), + [anon_sym_DOT2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1022), + [aux_sym__val_number_token1] = ACTIONS(1022), + [aux_sym__val_number_token2] = ACTIONS(1022), + [aux_sym__val_number_token3] = ACTIONS(1022), + [aux_sym__val_number_token4] = ACTIONS(1022), + [aux_sym__val_number_token5] = ACTIONS(1022), + [aux_sym__val_number_token6] = ACTIONS(1022), + [anon_sym_0b] = ACTIONS(1020), + [anon_sym_0o] = ACTIONS(1020), + [anon_sym_0x] = ACTIONS(1020), + [sym_val_date] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1022), + [sym__str_single_quotes] = ACTIONS(1022), + [sym__str_back_ticks] = ACTIONS(1022), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1022), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1022), + [anon_sym_POUND] = ACTIONS(3), }, - [2520] = { - [sym_block] = STATE(2702), - [sym_comment] = STATE(2520), - [anon_sym_export] = ACTIONS(6234), - [anon_sym_alias] = ACTIONS(6234), - [anon_sym_let] = ACTIONS(6234), - [anon_sym_let_DASHenv] = ACTIONS(6234), - [anon_sym_mut] = ACTIONS(6234), - [anon_sym_const] = ACTIONS(6234), - [anon_sym_SEMI] = ACTIONS(6234), - [sym_cmd_identifier] = ACTIONS(6234), - [anon_sym_LF] = ACTIONS(6236), - [anon_sym_def] = ACTIONS(6234), - [anon_sym_export_DASHenv] = ACTIONS(6234), - [anon_sym_extern] = ACTIONS(6234), - [anon_sym_module] = ACTIONS(6234), - [anon_sym_use] = ACTIONS(6234), - [anon_sym_LBRACK] = ACTIONS(6234), - [anon_sym_LPAREN] = ACTIONS(6234), - [anon_sym_RPAREN] = ACTIONS(6234), - [anon_sym_DOLLAR] = ACTIONS(6234), - [anon_sym_error] = ACTIONS(6234), - [anon_sym_DASH] = ACTIONS(6234), - [anon_sym_break] = ACTIONS(6234), - [anon_sym_continue] = ACTIONS(6234), - [anon_sym_for] = ACTIONS(6234), - [anon_sym_loop] = ACTIONS(6234), - [anon_sym_while] = ACTIONS(6234), - [anon_sym_do] = ACTIONS(6234), - [anon_sym_if] = ACTIONS(6234), - [anon_sym_match] = ACTIONS(6234), - [anon_sym_LBRACE] = ACTIONS(6232), - [anon_sym_RBRACE] = ACTIONS(6234), - [anon_sym_DOT_DOT] = ACTIONS(6234), - [anon_sym_try] = ACTIONS(6234), - [anon_sym_return] = ACTIONS(6234), - [anon_sym_source] = ACTIONS(6234), - [anon_sym_source_DASHenv] = ACTIONS(6234), - [anon_sym_register] = ACTIONS(6234), - [anon_sym_hide] = ACTIONS(6234), - [anon_sym_hide_DASHenv] = ACTIONS(6234), - [anon_sym_overlay] = ACTIONS(6234), - [anon_sym_where] = ACTIONS(6234), - [anon_sym_not] = ACTIONS(6234), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6234), - [anon_sym_DOT_DOT_LT] = ACTIONS(6234), - [anon_sym_null] = ACTIONS(6234), - [anon_sym_true] = ACTIONS(6234), - [anon_sym_false] = ACTIONS(6234), - [aux_sym__val_number_decimal_token1] = ACTIONS(6234), - [aux_sym__val_number_decimal_token2] = ACTIONS(6234), - [anon_sym_DOT2] = ACTIONS(6234), - [aux_sym__val_number_decimal_token3] = ACTIONS(6234), - [aux_sym__val_number_token1] = ACTIONS(6234), - [aux_sym__val_number_token2] = ACTIONS(6234), - [aux_sym__val_number_token3] = ACTIONS(6234), - [aux_sym__val_number_token4] = ACTIONS(6234), - [aux_sym__val_number_token5] = ACTIONS(6234), - [aux_sym__val_number_token6] = ACTIONS(6234), - [anon_sym_0b] = ACTIONS(6234), - [anon_sym_0o] = ACTIONS(6234), - [anon_sym_0x] = ACTIONS(6234), - [sym_val_date] = ACTIONS(6234), - [anon_sym_DQUOTE] = ACTIONS(6234), - [sym__str_single_quotes] = ACTIONS(6234), - [sym__str_back_ticks] = ACTIONS(6234), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6234), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6234), - [anon_sym_CARET] = ACTIONS(6234), + [2672] = { + [sym_comment] = STATE(2672), + [ts_builtin_sym_end] = ACTIONS(1181), + [anon_sym_SEMI] = ACTIONS(1179), + [anon_sym_LF] = ACTIONS(1181), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_PIPE] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(6626), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(6628), + [anon_sym_in] = ACTIONS(6630), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(6632), + [anon_sym_STAR_STAR] = ACTIONS(6634), + [anon_sym_PLUS_PLUS] = ACTIONS(6634), + [anon_sym_SLASH] = ACTIONS(6632), + [anon_sym_mod] = ACTIONS(6632), + [anon_sym_SLASH_SLASH] = ACTIONS(6632), + [anon_sym_PLUS] = ACTIONS(6628), + [anon_sym_bit_DASHshl] = ACTIONS(6636), + [anon_sym_bit_DASHshr] = ACTIONS(6636), + [anon_sym_EQ_EQ] = ACTIONS(6626), + [anon_sym_BANG_EQ] = ACTIONS(6626), + [anon_sym_LT2] = ACTIONS(6626), + [anon_sym_LT_EQ] = ACTIONS(6626), + [anon_sym_GT_EQ] = ACTIONS(6626), + [anon_sym_not_DASHin] = ACTIONS(6630), + [anon_sym_starts_DASHwith] = ACTIONS(6630), + [anon_sym_ends_DASHwith] = ACTIONS(6630), + [anon_sym_EQ_TILDE] = ACTIONS(6638), + [anon_sym_BANG_TILDE] = ACTIONS(6638), + [anon_sym_bit_DASHand] = ACTIONS(6640), + [anon_sym_bit_DASHxor] = ACTIONS(6642), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_not] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1179), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, - [2521] = { - [sym_comment] = STATE(2521), - [ts_builtin_sym_end] = ACTIONS(5079), - [anon_sym_export] = ACTIONS(5075), - [anon_sym_alias] = ACTIONS(5075), - [anon_sym_let] = ACTIONS(5075), - [anon_sym_let_DASHenv] = ACTIONS(5075), - [anon_sym_mut] = ACTIONS(5075), - [anon_sym_const] = ACTIONS(5075), - [anon_sym_SEMI] = ACTIONS(5075), - [sym_cmd_identifier] = ACTIONS(5075), - [anon_sym_LF] = ACTIONS(5079), - [anon_sym_def] = ACTIONS(5075), - [anon_sym_export_DASHenv] = ACTIONS(5075), - [anon_sym_extern] = ACTIONS(5075), - [anon_sym_module] = ACTIONS(5075), - [anon_sym_use] = ACTIONS(5075), - [anon_sym_LBRACK] = ACTIONS(5075), - [anon_sym_LPAREN] = ACTIONS(5075), - [anon_sym_DOLLAR] = ACTIONS(5075), - [anon_sym_error] = ACTIONS(5075), - [anon_sym_DASH_DASH] = ACTIONS(5075), - [anon_sym_DASH] = ACTIONS(5075), - [anon_sym_break] = ACTIONS(5075), - [anon_sym_continue] = ACTIONS(5075), - [anon_sym_for] = ACTIONS(5075), - [anon_sym_loop] = ACTIONS(5075), - [anon_sym_while] = ACTIONS(5075), - [anon_sym_do] = ACTIONS(5075), - [anon_sym_if] = ACTIONS(5075), - [anon_sym_match] = ACTIONS(5075), - [anon_sym_LBRACE] = ACTIONS(5075), - [anon_sym_DOT_DOT] = ACTIONS(5075), - [anon_sym_try] = ACTIONS(5075), - [anon_sym_return] = ACTIONS(5075), - [anon_sym_source] = ACTIONS(5075), - [anon_sym_source_DASHenv] = ACTIONS(5075), - [anon_sym_register] = ACTIONS(5075), - [anon_sym_hide] = ACTIONS(5075), - [anon_sym_hide_DASHenv] = ACTIONS(5075), - [anon_sym_overlay] = ACTIONS(5075), - [anon_sym_as] = ACTIONS(5075), - [anon_sym_where] = ACTIONS(5075), - [anon_sym_not] = ACTIONS(5075), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5075), - [anon_sym_DOT_DOT_LT] = ACTIONS(5075), - [anon_sym_null] = ACTIONS(5075), - [anon_sym_true] = ACTIONS(5075), - [anon_sym_false] = ACTIONS(5075), - [aux_sym__val_number_decimal_token1] = ACTIONS(5075), - [aux_sym__val_number_decimal_token2] = ACTIONS(5075), - [anon_sym_DOT2] = ACTIONS(5075), - [aux_sym__val_number_decimal_token3] = ACTIONS(5075), - [aux_sym__val_number_token1] = ACTIONS(5075), - [aux_sym__val_number_token2] = ACTIONS(5075), - [aux_sym__val_number_token3] = ACTIONS(5075), - [aux_sym__val_number_token4] = ACTIONS(5075), - [aux_sym__val_number_token5] = ACTIONS(5075), - [aux_sym__val_number_token6] = ACTIONS(5075), - [anon_sym_0b] = ACTIONS(5075), - [anon_sym_0o] = ACTIONS(5075), - [anon_sym_0x] = ACTIONS(5075), - [sym_val_date] = ACTIONS(5075), - [anon_sym_DQUOTE] = ACTIONS(5075), - [sym__str_single_quotes] = ACTIONS(5075), - [sym__str_back_ticks] = ACTIONS(5075), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5075), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5075), - [anon_sym_CARET] = ACTIONS(5075), + [2673] = { + [sym_comment] = STATE(2673), + [ts_builtin_sym_end] = ACTIONS(1173), + [anon_sym_SEMI] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_PIPE] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, - [2522] = { - [sym_comment] = STATE(2522), - [ts_builtin_sym_end] = ACTIONS(1115), - [anon_sym_SEMI] = ACTIONS(1113), - [anon_sym_LF] = ACTIONS(1115), - [anon_sym_LBRACK] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_PIPE] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1113), - [anon_sym_GT] = ACTIONS(1113), - [anon_sym_DASH_DASH] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_in] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_STAR_STAR] = ACTIONS(1113), - [anon_sym_PLUS_PLUS] = ACTIONS(1113), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_mod] = ACTIONS(1113), - [anon_sym_SLASH_SLASH] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_bit_DASHshl] = ACTIONS(1113), - [anon_sym_bit_DASHshr] = ACTIONS(1113), - [anon_sym_EQ_EQ] = ACTIONS(1113), - [anon_sym_BANG_EQ] = ACTIONS(1113), - [anon_sym_LT2] = ACTIONS(1113), - [anon_sym_LT_EQ] = ACTIONS(1113), - [anon_sym_GT_EQ] = ACTIONS(1113), - [anon_sym_not_DASHin] = ACTIONS(1113), - [anon_sym_starts_DASHwith] = ACTIONS(1113), - [anon_sym_ends_DASHwith] = ACTIONS(1113), - [anon_sym_EQ_TILDE] = ACTIONS(1113), - [anon_sym_BANG_TILDE] = ACTIONS(1113), - [anon_sym_bit_DASHand] = ACTIONS(1113), - [anon_sym_bit_DASHxor] = ACTIONS(1113), - [anon_sym_bit_DASHor] = ACTIONS(1113), - [anon_sym_and] = ACTIONS(1113), - [anon_sym_xor] = ACTIONS(1113), - [anon_sym_or] = ACTIONS(1113), - [anon_sym_not] = ACTIONS(1113), - [anon_sym_DOT_DOT2] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1113), - [anon_sym_DOT_DOT_LT] = ACTIONS(1113), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1115), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1113), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1113), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_decimal_token2] = ACTIONS(1113), - [anon_sym_DOT2] = ACTIONS(1113), - [aux_sym__val_number_decimal_token3] = ACTIONS(1113), - [aux_sym__val_number_token1] = ACTIONS(1113), - [aux_sym__val_number_token2] = ACTIONS(1113), - [aux_sym__val_number_token3] = ACTIONS(1113), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1113), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_0b] = ACTIONS(1113), - [anon_sym_0o] = ACTIONS(1113), - [anon_sym_0x] = ACTIONS(1113), - [sym_val_date] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym__str_single_quotes] = ACTIONS(1113), - [sym__str_back_ticks] = ACTIONS(1113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), + [2674] = { + [sym_comment] = STATE(2674), + [ts_builtin_sym_end] = ACTIONS(1181), + [anon_sym_SEMI] = ACTIONS(1179), + [anon_sym_LF] = ACTIONS(1181), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_PIPE] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(6626), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(6628), + [anon_sym_in] = ACTIONS(6630), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(6632), + [anon_sym_STAR_STAR] = ACTIONS(6634), + [anon_sym_PLUS_PLUS] = ACTIONS(6634), + [anon_sym_SLASH] = ACTIONS(6632), + [anon_sym_mod] = ACTIONS(6632), + [anon_sym_SLASH_SLASH] = ACTIONS(6632), + [anon_sym_PLUS] = ACTIONS(6628), + [anon_sym_bit_DASHshl] = ACTIONS(6636), + [anon_sym_bit_DASHshr] = ACTIONS(6636), + [anon_sym_EQ_EQ] = ACTIONS(6626), + [anon_sym_BANG_EQ] = ACTIONS(6626), + [anon_sym_LT2] = ACTIONS(6626), + [anon_sym_LT_EQ] = ACTIONS(6626), + [anon_sym_GT_EQ] = ACTIONS(6626), + [anon_sym_not_DASHin] = ACTIONS(6630), + [anon_sym_starts_DASHwith] = ACTIONS(6630), + [anon_sym_ends_DASHwith] = ACTIONS(6630), + [anon_sym_EQ_TILDE] = ACTIONS(6638), + [anon_sym_BANG_TILDE] = ACTIONS(6638), + [anon_sym_bit_DASHand] = ACTIONS(6640), + [anon_sym_bit_DASHxor] = ACTIONS(6642), + [anon_sym_bit_DASHor] = ACTIONS(6644), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_not] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1179), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, - [2523] = { - [sym_comment] = STATE(2523), - [ts_builtin_sym_end] = ACTIONS(1119), - [anon_sym_SEMI] = ACTIONS(1117), - [anon_sym_LF] = ACTIONS(1119), - [anon_sym_LBRACK] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1117), - [anon_sym_PIPE] = ACTIONS(1117), - [anon_sym_DOLLAR] = ACTIONS(1117), - [anon_sym_GT] = ACTIONS(1117), - [anon_sym_DASH_DASH] = ACTIONS(1117), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1117), - [anon_sym_LBRACE] = ACTIONS(1117), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_STAR] = ACTIONS(1117), - [anon_sym_STAR_STAR] = ACTIONS(1117), - [anon_sym_PLUS_PLUS] = ACTIONS(1117), - [anon_sym_SLASH] = ACTIONS(1117), - [anon_sym_mod] = ACTIONS(1117), - [anon_sym_SLASH_SLASH] = ACTIONS(1117), - [anon_sym_PLUS] = ACTIONS(1117), - [anon_sym_bit_DASHshl] = ACTIONS(1117), - [anon_sym_bit_DASHshr] = ACTIONS(1117), - [anon_sym_EQ_EQ] = ACTIONS(1117), - [anon_sym_BANG_EQ] = ACTIONS(1117), - [anon_sym_LT2] = ACTIONS(1117), - [anon_sym_LT_EQ] = ACTIONS(1117), - [anon_sym_GT_EQ] = ACTIONS(1117), - [anon_sym_not_DASHin] = ACTIONS(1117), - [anon_sym_starts_DASHwith] = ACTIONS(1117), - [anon_sym_ends_DASHwith] = ACTIONS(1117), - [anon_sym_EQ_TILDE] = ACTIONS(1117), - [anon_sym_BANG_TILDE] = ACTIONS(1117), - [anon_sym_bit_DASHand] = ACTIONS(1117), - [anon_sym_bit_DASHxor] = ACTIONS(1117), - [anon_sym_bit_DASHor] = ACTIONS(1117), - [anon_sym_and] = ACTIONS(1117), - [anon_sym_xor] = ACTIONS(1117), - [anon_sym_or] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1117), - [anon_sym_DOT_DOT2] = ACTIONS(1117), - [anon_sym_DOT] = ACTIONS(1117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1117), - [anon_sym_DOT_DOT_LT] = ACTIONS(1117), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1119), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1119), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_true] = ACTIONS(1117), - [anon_sym_false] = ACTIONS(1117), - [aux_sym__val_number_decimal_token1] = ACTIONS(1117), - [aux_sym__val_number_decimal_token2] = ACTIONS(1117), - [anon_sym_DOT2] = ACTIONS(1117), - [aux_sym__val_number_decimal_token3] = ACTIONS(1117), - [aux_sym__val_number_token1] = ACTIONS(1117), - [aux_sym__val_number_token2] = ACTIONS(1117), - [aux_sym__val_number_token3] = ACTIONS(1117), - [aux_sym__val_number_token4] = ACTIONS(1117), - [aux_sym__val_number_token5] = ACTIONS(1117), - [aux_sym__val_number_token6] = ACTIONS(1117), - [anon_sym_0b] = ACTIONS(1117), - [anon_sym_0o] = ACTIONS(1117), - [anon_sym_0x] = ACTIONS(1117), - [sym_val_date] = ACTIONS(1117), - [anon_sym_DQUOTE] = ACTIONS(1117), - [sym__str_single_quotes] = ACTIONS(1117), - [sym__str_back_ticks] = ACTIONS(1117), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1117), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1117), + [2675] = { + [sym_comment] = STATE(2675), + [ts_builtin_sym_end] = ACTIONS(1285), + [anon_sym_SEMI] = ACTIONS(1283), + [anon_sym_LF] = ACTIONS(1285), + [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_LPAREN] = ACTIONS(1283), + [anon_sym_PIPE] = ACTIONS(1283), + [anon_sym_DOLLAR] = ACTIONS(1283), + [anon_sym_GT] = ACTIONS(1283), + [anon_sym_DASH_DASH] = ACTIONS(1283), + [anon_sym_DASH] = ACTIONS(1283), + [anon_sym_in] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1283), + [anon_sym_DOT_DOT] = ACTIONS(1283), + [anon_sym_STAR] = ACTIONS(1283), + [anon_sym_STAR_STAR] = ACTIONS(1283), + [anon_sym_PLUS_PLUS] = ACTIONS(1283), + [anon_sym_SLASH] = ACTIONS(1283), + [anon_sym_mod] = ACTIONS(1283), + [anon_sym_SLASH_SLASH] = ACTIONS(1283), + [anon_sym_PLUS] = ACTIONS(1283), + [anon_sym_bit_DASHshl] = ACTIONS(1283), + [anon_sym_bit_DASHshr] = ACTIONS(1283), + [anon_sym_EQ_EQ] = ACTIONS(1283), + [anon_sym_BANG_EQ] = ACTIONS(1283), + [anon_sym_LT2] = ACTIONS(1283), + [anon_sym_LT_EQ] = ACTIONS(1283), + [anon_sym_GT_EQ] = ACTIONS(1283), + [anon_sym_not_DASHin] = ACTIONS(1283), + [anon_sym_starts_DASHwith] = ACTIONS(1283), + [anon_sym_ends_DASHwith] = ACTIONS(1283), + [anon_sym_EQ_TILDE] = ACTIONS(1283), + [anon_sym_BANG_TILDE] = ACTIONS(1283), + [anon_sym_bit_DASHand] = ACTIONS(1283), + [anon_sym_bit_DASHxor] = ACTIONS(1283), + [anon_sym_bit_DASHor] = ACTIONS(1283), + [anon_sym_and] = ACTIONS(1283), + [anon_sym_xor] = ACTIONS(1283), + [anon_sym_or] = ACTIONS(1283), + [anon_sym_not] = ACTIONS(1283), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1283), + [anon_sym_DOT_DOT_LT] = ACTIONS(1283), + [anon_sym_null] = ACTIONS(1283), + [anon_sym_true] = ACTIONS(1283), + [anon_sym_false] = ACTIONS(1283), + [aux_sym__val_number_decimal_token1] = ACTIONS(1283), + [aux_sym__val_number_decimal_token2] = ACTIONS(1283), + [anon_sym_DOT2] = ACTIONS(1283), + [aux_sym__val_number_decimal_token3] = ACTIONS(1283), + [aux_sym__val_number_token1] = ACTIONS(1283), + [aux_sym__val_number_token2] = ACTIONS(1283), + [aux_sym__val_number_token3] = ACTIONS(1283), + [aux_sym__val_number_token4] = ACTIONS(1283), + [aux_sym__val_number_token5] = ACTIONS(1283), + [aux_sym__val_number_token6] = ACTIONS(1283), + [anon_sym_0b] = ACTIONS(1283), + [anon_sym_0o] = ACTIONS(1283), + [anon_sym_0x] = ACTIONS(1283), + [sym_val_date] = ACTIONS(1283), + [anon_sym_DQUOTE] = ACTIONS(1283), + [sym__str_single_quotes] = ACTIONS(1283), + [sym__str_back_ticks] = ACTIONS(1283), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1283), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1283), [anon_sym_POUND] = ACTIONS(113), }, - [2524] = { - [sym__match_pattern_record_variable] = STATE(3555), - [sym_expr_parenthesized] = STATE(10769), - [sym_val_variable] = STATE(3513), - [sym__var] = STATE(3214), - [sym_val_number] = STATE(10769), - [sym__val_number_decimal] = STATE(5414), - [sym__val_number] = STATE(5463), - [sym_val_string] = STATE(10769), - [sym__str_double_quotes] = STATE(7019), - [sym_record_entry] = STATE(3555), - [sym__record_key] = STATE(10918), - [sym_comment] = STATE(2524), - [aux_sym__match_pattern_record_repeat1] = STATE(2418), - [anon_sym_export] = ACTIONS(6091), - [anon_sym_alias] = ACTIONS(6091), - [anon_sym_let] = ACTIONS(6091), - [anon_sym_let_DASHenv] = ACTIONS(6091), - [anon_sym_mut] = ACTIONS(6091), - [anon_sym_const] = ACTIONS(6091), - [sym_cmd_identifier] = ACTIONS(6091), - [anon_sym_def] = ACTIONS(6091), - [anon_sym_export_DASHenv] = ACTIONS(6091), - [anon_sym_extern] = ACTIONS(6091), - [anon_sym_module] = ACTIONS(6091), - [anon_sym_use] = ACTIONS(6091), - [anon_sym_LPAREN] = ACTIONS(6093), - [anon_sym_DOLLAR] = ACTIONS(6095), - [anon_sym_error] = ACTIONS(6091), - [anon_sym_list] = ACTIONS(6091), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_break] = ACTIONS(6091), - [anon_sym_continue] = ACTIONS(6091), - [anon_sym_for] = ACTIONS(6091), - [anon_sym_in] = ACTIONS(6091), - [anon_sym_loop] = ACTIONS(6091), - [anon_sym_make] = ACTIONS(6091), - [anon_sym_while] = ACTIONS(6091), - [anon_sym_do] = ACTIONS(6091), - [anon_sym_if] = ACTIONS(6091), - [anon_sym_else] = ACTIONS(6091), - [anon_sym_match] = ACTIONS(6091), - [anon_sym_RBRACE] = ACTIONS(6238), - [anon_sym_try] = ACTIONS(6091), - [anon_sym_catch] = ACTIONS(6091), - [anon_sym_return] = ACTIONS(6091), - [anon_sym_source] = ACTIONS(6091), - [anon_sym_source_DASHenv] = ACTIONS(6091), - [anon_sym_register] = ACTIONS(6091), - [anon_sym_hide] = ACTIONS(6091), - [anon_sym_hide_DASHenv] = ACTIONS(6091), - [anon_sym_overlay] = ACTIONS(6091), - [anon_sym_new] = ACTIONS(6091), - [anon_sym_as] = ACTIONS(6091), - [anon_sym_PLUS] = ACTIONS(189), - [aux_sym__val_number_decimal_token1] = ACTIONS(6099), - [aux_sym__val_number_decimal_token2] = ACTIONS(6101), - [anon_sym_DOT2] = ACTIONS(6103), - [aux_sym__val_number_decimal_token3] = ACTIONS(6105), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(6107), - [aux_sym__val_number_token5] = ACTIONS(2714), - [aux_sym__val_number_token6] = ACTIONS(6107), - [anon_sym_DQUOTE] = ACTIONS(2724), - [sym__str_single_quotes] = ACTIONS(2726), - [sym__str_back_ticks] = ACTIONS(2726), - [aux_sym__record_key_token2] = ACTIONS(225), - [anon_sym_POUND] = ACTIONS(3), + [2676] = { + [sym_comment] = STATE(2676), + [ts_builtin_sym_end] = ACTIONS(1181), + [anon_sym_SEMI] = ACTIONS(1179), + [anon_sym_LF] = ACTIONS(1181), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_PIPE] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(6626), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(6628), + [anon_sym_in] = ACTIONS(6630), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(6632), + [anon_sym_STAR_STAR] = ACTIONS(6634), + [anon_sym_PLUS_PLUS] = ACTIONS(6634), + [anon_sym_SLASH] = ACTIONS(6632), + [anon_sym_mod] = ACTIONS(6632), + [anon_sym_SLASH_SLASH] = ACTIONS(6632), + [anon_sym_PLUS] = ACTIONS(6628), + [anon_sym_bit_DASHshl] = ACTIONS(6636), + [anon_sym_bit_DASHshr] = ACTIONS(6636), + [anon_sym_EQ_EQ] = ACTIONS(6626), + [anon_sym_BANG_EQ] = ACTIONS(6626), + [anon_sym_LT2] = ACTIONS(6626), + [anon_sym_LT_EQ] = ACTIONS(6626), + [anon_sym_GT_EQ] = ACTIONS(6626), + [anon_sym_not_DASHin] = ACTIONS(6630), + [anon_sym_starts_DASHwith] = ACTIONS(6630), + [anon_sym_ends_DASHwith] = ACTIONS(6630), + [anon_sym_EQ_TILDE] = ACTIONS(6638), + [anon_sym_BANG_TILDE] = ACTIONS(6638), + [anon_sym_bit_DASHand] = ACTIONS(6640), + [anon_sym_bit_DASHxor] = ACTIONS(6642), + [anon_sym_bit_DASHor] = ACTIONS(6644), + [anon_sym_and] = ACTIONS(6646), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_not] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1179), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(113), }, - [2525] = { - [sym_comment] = STATE(2525), - [ts_builtin_sym_end] = ACTIONS(4018), - [anon_sym_export] = ACTIONS(4016), - [anon_sym_alias] = ACTIONS(4016), - [anon_sym_let] = ACTIONS(4016), - [anon_sym_let_DASHenv] = ACTIONS(4016), - [anon_sym_mut] = ACTIONS(4016), - [anon_sym_const] = ACTIONS(4016), - [anon_sym_SEMI] = ACTIONS(4016), - [sym_cmd_identifier] = ACTIONS(4016), - [anon_sym_LF] = ACTIONS(4018), - [anon_sym_def] = ACTIONS(4016), - [anon_sym_export_DASHenv] = ACTIONS(4016), - [anon_sym_extern] = ACTIONS(4016), - [anon_sym_module] = ACTIONS(4016), - [anon_sym_use] = ACTIONS(4016), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym_DOLLAR] = ACTIONS(4016), - [anon_sym_error] = ACTIONS(4016), - [anon_sym_DASH_DASH] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_break] = ACTIONS(4016), - [anon_sym_continue] = ACTIONS(4016), - [anon_sym_for] = ACTIONS(4016), - [anon_sym_loop] = ACTIONS(4016), - [anon_sym_while] = ACTIONS(4016), - [anon_sym_do] = ACTIONS(4016), - [anon_sym_if] = ACTIONS(4016), - [anon_sym_match] = ACTIONS(4016), - [anon_sym_LBRACE] = ACTIONS(4016), - [anon_sym_DOT_DOT] = ACTIONS(4016), - [anon_sym_try] = ACTIONS(4016), - [anon_sym_return] = ACTIONS(4016), - [anon_sym_source] = ACTIONS(4016), - [anon_sym_source_DASHenv] = ACTIONS(4016), - [anon_sym_register] = ACTIONS(4016), - [anon_sym_hide] = ACTIONS(4016), - [anon_sym_hide_DASHenv] = ACTIONS(4016), - [anon_sym_overlay] = ACTIONS(4016), - [anon_sym_as] = ACTIONS(4016), - [anon_sym_where] = ACTIONS(4016), - [anon_sym_not] = ACTIONS(4016), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4016), - [anon_sym_DOT_DOT_LT] = ACTIONS(4016), - [anon_sym_null] = ACTIONS(4016), - [anon_sym_true] = ACTIONS(4016), - [anon_sym_false] = ACTIONS(4016), - [aux_sym__val_number_decimal_token1] = ACTIONS(4016), - [aux_sym__val_number_decimal_token2] = ACTIONS(4016), - [anon_sym_DOT2] = ACTIONS(4016), - [aux_sym__val_number_decimal_token3] = ACTIONS(4016), - [aux_sym__val_number_token1] = ACTIONS(4016), - [aux_sym__val_number_token2] = ACTIONS(4016), - [aux_sym__val_number_token3] = ACTIONS(4016), - [aux_sym__val_number_token4] = ACTIONS(4016), - [aux_sym__val_number_token5] = ACTIONS(4016), - [aux_sym__val_number_token6] = ACTIONS(4016), - [anon_sym_0b] = ACTIONS(4016), - [anon_sym_0o] = ACTIONS(4016), - [anon_sym_0x] = ACTIONS(4016), - [sym_val_date] = ACTIONS(4016), - [anon_sym_DQUOTE] = ACTIONS(4016), - [sym__str_single_quotes] = ACTIONS(4016), - [sym__str_back_ticks] = ACTIONS(4016), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4016), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4016), - [anon_sym_CARET] = ACTIONS(4016), + [2677] = { + [sym_comment] = STATE(2677), + [ts_builtin_sym_end] = ACTIONS(1239), + [anon_sym_SEMI] = ACTIONS(1237), + [anon_sym_LF] = ACTIONS(1239), + [anon_sym_LBRACK] = ACTIONS(1237), + [anon_sym_LPAREN] = ACTIONS(1237), + [anon_sym_PIPE] = ACTIONS(1237), + [anon_sym_DOLLAR] = ACTIONS(1237), + [anon_sym_GT] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), + [anon_sym_DASH] = ACTIONS(1237), + [anon_sym_in] = ACTIONS(1237), + [anon_sym_LBRACE] = ACTIONS(1237), + [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_STAR] = ACTIONS(1237), + [anon_sym_STAR_STAR] = ACTIONS(1237), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_SLASH] = ACTIONS(1237), + [anon_sym_mod] = ACTIONS(1237), + [anon_sym_SLASH_SLASH] = ACTIONS(1237), + [anon_sym_PLUS] = ACTIONS(1237), + [anon_sym_bit_DASHshl] = ACTIONS(1237), + [anon_sym_bit_DASHshr] = ACTIONS(1237), + [anon_sym_EQ_EQ] = ACTIONS(1237), + [anon_sym_BANG_EQ] = ACTIONS(1237), + [anon_sym_LT2] = ACTIONS(1237), + [anon_sym_LT_EQ] = ACTIONS(1237), + [anon_sym_GT_EQ] = ACTIONS(1237), + [anon_sym_not_DASHin] = ACTIONS(1237), + [anon_sym_starts_DASHwith] = ACTIONS(1237), + [anon_sym_ends_DASHwith] = ACTIONS(1237), + [anon_sym_EQ_TILDE] = ACTIONS(1237), + [anon_sym_BANG_TILDE] = ACTIONS(1237), + [anon_sym_bit_DASHand] = ACTIONS(1237), + [anon_sym_bit_DASHxor] = ACTIONS(1237), + [anon_sym_bit_DASHor] = ACTIONS(1237), + [anon_sym_and] = ACTIONS(1237), + [anon_sym_xor] = ACTIONS(1237), + [anon_sym_or] = ACTIONS(1237), + [anon_sym_not] = ACTIONS(1237), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1237), + [anon_sym_DOT_DOT_LT] = ACTIONS(1237), + [anon_sym_null] = ACTIONS(1237), + [anon_sym_true] = ACTIONS(1237), + [anon_sym_false] = ACTIONS(1237), + [aux_sym__val_number_decimal_token1] = ACTIONS(1237), + [aux_sym__val_number_decimal_token2] = ACTIONS(1237), + [anon_sym_DOT2] = ACTIONS(1237), + [aux_sym__val_number_decimal_token3] = ACTIONS(1237), + [aux_sym__val_number_token1] = ACTIONS(1237), + [aux_sym__val_number_token2] = ACTIONS(1237), + [aux_sym__val_number_token3] = ACTIONS(1237), + [aux_sym__val_number_token4] = ACTIONS(1237), + [aux_sym__val_number_token5] = ACTIONS(1237), + [aux_sym__val_number_token6] = ACTIONS(1237), + [anon_sym_0b] = ACTIONS(1237), + [anon_sym_0o] = ACTIONS(1237), + [anon_sym_0x] = ACTIONS(1237), + [sym_val_date] = ACTIONS(1237), + [anon_sym_DQUOTE] = ACTIONS(1237), + [sym__str_single_quotes] = ACTIONS(1237), + [sym__str_back_ticks] = ACTIONS(1237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1237), [anon_sym_POUND] = ACTIONS(113), }, - [2526] = { - [sym_comment] = STATE(2526), - [ts_builtin_sym_end] = ACTIONS(5177), - [anon_sym_export] = ACTIONS(5175), - [anon_sym_alias] = ACTIONS(5175), - [anon_sym_let] = ACTIONS(5175), - [anon_sym_let_DASHenv] = ACTIONS(5175), - [anon_sym_mut] = ACTIONS(5175), - [anon_sym_const] = ACTIONS(5175), - [anon_sym_SEMI] = ACTIONS(5175), - [sym_cmd_identifier] = ACTIONS(5175), - [anon_sym_LF] = ACTIONS(5177), - [anon_sym_def] = ACTIONS(5175), - [anon_sym_export_DASHenv] = ACTIONS(5175), - [anon_sym_extern] = ACTIONS(5175), - [anon_sym_module] = ACTIONS(5175), - [anon_sym_use] = ACTIONS(5175), - [anon_sym_LBRACK] = ACTIONS(5175), - [anon_sym_LPAREN] = ACTIONS(5175), - [anon_sym_DOLLAR] = ACTIONS(5175), - [anon_sym_error] = ACTIONS(5175), - [anon_sym_DASH_DASH] = ACTIONS(5175), - [anon_sym_DASH] = ACTIONS(5175), - [anon_sym_break] = ACTIONS(5175), - [anon_sym_continue] = ACTIONS(5175), - [anon_sym_for] = ACTIONS(5175), - [anon_sym_loop] = ACTIONS(5175), - [anon_sym_while] = ACTIONS(5175), - [anon_sym_do] = ACTIONS(5175), - [anon_sym_if] = ACTIONS(5175), - [anon_sym_match] = ACTIONS(5175), - [anon_sym_LBRACE] = ACTIONS(5175), - [anon_sym_DOT_DOT] = ACTIONS(5175), - [anon_sym_try] = ACTIONS(5175), - [anon_sym_return] = ACTIONS(5175), - [anon_sym_source] = ACTIONS(5175), - [anon_sym_source_DASHenv] = ACTIONS(5175), - [anon_sym_register] = ACTIONS(5175), - [anon_sym_hide] = ACTIONS(5175), - [anon_sym_hide_DASHenv] = ACTIONS(5175), - [anon_sym_overlay] = ACTIONS(5175), - [anon_sym_as] = ACTIONS(5175), - [anon_sym_where] = ACTIONS(5175), - [anon_sym_not] = ACTIONS(5175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5175), - [anon_sym_DOT_DOT_LT] = ACTIONS(5175), - [anon_sym_null] = ACTIONS(5175), - [anon_sym_true] = ACTIONS(5175), - [anon_sym_false] = ACTIONS(5175), - [aux_sym__val_number_decimal_token1] = ACTIONS(5175), - [aux_sym__val_number_decimal_token2] = ACTIONS(5175), - [anon_sym_DOT2] = ACTIONS(5175), - [aux_sym__val_number_decimal_token3] = ACTIONS(5175), - [aux_sym__val_number_token1] = ACTIONS(5175), - [aux_sym__val_number_token2] = ACTIONS(5175), - [aux_sym__val_number_token3] = ACTIONS(5175), - [aux_sym__val_number_token4] = ACTIONS(5175), - [aux_sym__val_number_token5] = ACTIONS(5175), - [aux_sym__val_number_token6] = ACTIONS(5175), - [anon_sym_0b] = ACTIONS(5175), - [anon_sym_0o] = ACTIONS(5175), - [anon_sym_0x] = ACTIONS(5175), - [sym_val_date] = ACTIONS(5175), - [anon_sym_DQUOTE] = ACTIONS(5175), - [sym__str_single_quotes] = ACTIONS(5175), - [sym__str_back_ticks] = ACTIONS(5175), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5175), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5175), - [anon_sym_CARET] = ACTIONS(5175), - [anon_sym_POUND] = ACTIONS(113), - }, - [2527] = { - [sym_cell_path] = STATE(3035), - [sym_path] = STATE(2528), - [sym_comment] = STATE(2527), - [anon_sym_SEMI] = ACTIONS(1010), - [anon_sym_LF] = ACTIONS(1012), - [anon_sym_LBRACK] = ACTIONS(1010), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_RPAREN] = ACTIONS(1010), - [anon_sym_PIPE] = ACTIONS(1010), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1010), - [anon_sym_DASH_DASH] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_in] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_RBRACE] = ACTIONS(1010), - [anon_sym_DOT_DOT] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1010), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_SLASH] = ACTIONS(1010), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT2] = ACTIONS(1010), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT_EQ] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_not] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(6145), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT] = ACTIONS(1010), - [anon_sym_null] = ACTIONS(1010), - [anon_sym_true] = ACTIONS(1010), - [anon_sym_false] = ACTIONS(1010), - [aux_sym__val_number_decimal_token1] = ACTIONS(1010), - [aux_sym__val_number_decimal_token2] = ACTIONS(1010), - [anon_sym_DOT2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = 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(1010), - [aux_sym__val_number_token5] = ACTIONS(1010), - [aux_sym__val_number_token6] = ACTIONS(1010), - [anon_sym_0b] = ACTIONS(1010), - [anon_sym_0o] = ACTIONS(1010), - [anon_sym_0x] = ACTIONS(1010), - [sym_val_date] = ACTIONS(1010), - [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_POUND] = ACTIONS(113), - }, - [2528] = { - [sym_path] = STATE(2932), - [sym_comment] = STATE(2528), - [aux_sym_cell_path_repeat1] = STATE(2530), - [anon_sym_SEMI] = ACTIONS(987), - [anon_sym_LF] = ACTIONS(989), - [anon_sym_LBRACK] = ACTIONS(987), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_RPAREN] = ACTIONS(987), - [anon_sym_PIPE] = ACTIONS(987), - [anon_sym_DOLLAR] = ACTIONS(987), - [anon_sym_GT] = ACTIONS(987), - [anon_sym_DASH_DASH] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_in] = ACTIONS(987), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_RBRACE] = ACTIONS(987), - [anon_sym_DOT_DOT] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(987), - [anon_sym_STAR_STAR] = ACTIONS(987), - [anon_sym_PLUS_PLUS] = ACTIONS(987), - [anon_sym_SLASH] = ACTIONS(987), - [anon_sym_mod] = ACTIONS(987), - [anon_sym_SLASH_SLASH] = ACTIONS(987), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_bit_DASHshl] = ACTIONS(987), - [anon_sym_bit_DASHshr] = ACTIONS(987), - [anon_sym_EQ_EQ] = ACTIONS(987), - [anon_sym_BANG_EQ] = ACTIONS(987), - [anon_sym_LT2] = ACTIONS(987), - [anon_sym_LT_EQ] = ACTIONS(987), - [anon_sym_GT_EQ] = ACTIONS(987), - [anon_sym_not_DASHin] = ACTIONS(987), - [anon_sym_starts_DASHwith] = ACTIONS(987), - [anon_sym_ends_DASHwith] = ACTIONS(987), - [anon_sym_EQ_TILDE] = ACTIONS(987), - [anon_sym_BANG_TILDE] = ACTIONS(987), - [anon_sym_bit_DASHand] = ACTIONS(987), - [anon_sym_bit_DASHxor] = ACTIONS(987), - [anon_sym_bit_DASHor] = ACTIONS(987), - [anon_sym_and] = ACTIONS(987), - [anon_sym_xor] = ACTIONS(987), - [anon_sym_or] = ACTIONS(987), - [anon_sym_not] = ACTIONS(987), - [anon_sym_DOT] = ACTIONS(6145), - [anon_sym_DOT_DOT_EQ] = ACTIONS(987), - [anon_sym_DOT_DOT_LT] = ACTIONS(987), - [anon_sym_null] = ACTIONS(987), - [anon_sym_true] = ACTIONS(987), - [anon_sym_false] = ACTIONS(987), - [aux_sym__val_number_decimal_token1] = ACTIONS(987), - [aux_sym__val_number_decimal_token2] = ACTIONS(987), - [anon_sym_DOT2] = ACTIONS(987), - [aux_sym__val_number_decimal_token3] = ACTIONS(987), - [aux_sym__val_number_token1] = ACTIONS(987), - [aux_sym__val_number_token2] = ACTIONS(987), - [aux_sym__val_number_token3] = ACTIONS(987), - [aux_sym__val_number_token4] = ACTIONS(987), - [aux_sym__val_number_token5] = ACTIONS(987), - [aux_sym__val_number_token6] = ACTIONS(987), - [anon_sym_0b] = ACTIONS(987), - [anon_sym_0o] = ACTIONS(987), - [anon_sym_0x] = ACTIONS(987), - [sym_val_date] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(987), - [sym__str_single_quotes] = ACTIONS(987), - [sym__str_back_ticks] = ACTIONS(987), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(987), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(987), - [anon_sym_POUND] = ACTIONS(113), - }, - [2529] = { - [sym_comment] = STATE(2529), - [ts_builtin_sym_end] = ACTIONS(2439), - [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), - [anon_sym_SEMI] = ACTIONS(2437), - [sym_cmd_identifier] = ACTIONS(2437), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_DASH_DASH] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_as] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_not] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [anon_sym_DOT2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2437), - [anon_sym_0o] = ACTIONS(2437), - [anon_sym_0x] = ACTIONS(2437), - [sym_val_date] = 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_CARET] = ACTIONS(2437), - [anon_sym_POUND] = ACTIONS(113), - }, - [2530] = { - [sym_path] = STATE(2932), - [sym_comment] = STATE(2530), - [aux_sym_cell_path_repeat1] = STATE(2532), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_LF] = ACTIONS(1008), - [anon_sym_LBRACK] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_RPAREN] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_in] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_STAR_STAR] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_mod] = ACTIONS(1006), - [anon_sym_SLASH_SLASH] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_bit_DASHshl] = ACTIONS(1006), - [anon_sym_bit_DASHshr] = ACTIONS(1006), - [anon_sym_EQ_EQ] = ACTIONS(1006), - [anon_sym_BANG_EQ] = ACTIONS(1006), - [anon_sym_LT2] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1006), - [anon_sym_GT_EQ] = ACTIONS(1006), - [anon_sym_not_DASHin] = ACTIONS(1006), - [anon_sym_starts_DASHwith] = ACTIONS(1006), - [anon_sym_ends_DASHwith] = ACTIONS(1006), - [anon_sym_EQ_TILDE] = ACTIONS(1006), - [anon_sym_BANG_TILDE] = ACTIONS(1006), - [anon_sym_bit_DASHand] = ACTIONS(1006), - [anon_sym_bit_DASHxor] = ACTIONS(1006), - [anon_sym_bit_DASHor] = ACTIONS(1006), - [anon_sym_and] = ACTIONS(1006), - [anon_sym_xor] = ACTIONS(1006), - [anon_sym_or] = ACTIONS(1006), - [anon_sym_not] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(6145), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT] = ACTIONS(1006), - [anon_sym_null] = ACTIONS(1006), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1006), - [anon_sym_DOT2] = ACTIONS(1006), - [aux_sym__val_number_decimal_token3] = ACTIONS(1006), - [aux_sym__val_number_token1] = ACTIONS(1006), - [aux_sym__val_number_token2] = ACTIONS(1006), - [aux_sym__val_number_token3] = ACTIONS(1006), - [aux_sym__val_number_token4] = ACTIONS(1006), - [aux_sym__val_number_token5] = ACTIONS(1006), - [aux_sym__val_number_token6] = ACTIONS(1006), - [anon_sym_0b] = ACTIONS(1006), - [anon_sym_0o] = ACTIONS(1006), - [anon_sym_0x] = ACTIONS(1006), - [sym_val_date] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym__str_single_quotes] = ACTIONS(1006), - [sym__str_back_ticks] = ACTIONS(1006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1006), - [anon_sym_POUND] = ACTIONS(113), - }, - [2531] = { - [sym_comment] = STATE(2531), - [ts_builtin_sym_end] = ACTIONS(2549), - [anon_sym_export] = ACTIONS(2547), - [anon_sym_alias] = ACTIONS(2547), - [anon_sym_let] = ACTIONS(2547), - [anon_sym_let_DASHenv] = ACTIONS(2547), - [anon_sym_mut] = ACTIONS(2547), - [anon_sym_const] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [sym_cmd_identifier] = ACTIONS(2547), - [anon_sym_LF] = ACTIONS(2549), - [anon_sym_def] = ACTIONS(2547), - [anon_sym_export_DASHenv] = ACTIONS(2547), - [anon_sym_extern] = ACTIONS(2547), - [anon_sym_module] = ACTIONS(2547), - [anon_sym_use] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_DOLLAR] = ACTIONS(2547), - [anon_sym_error] = ACTIONS(2547), - [anon_sym_DASH_DASH] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_break] = ACTIONS(2547), - [anon_sym_continue] = ACTIONS(2547), - [anon_sym_for] = ACTIONS(2547), - [anon_sym_loop] = ACTIONS(2547), - [anon_sym_while] = ACTIONS(2547), - [anon_sym_do] = ACTIONS(2547), - [anon_sym_if] = ACTIONS(2547), - [anon_sym_match] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2547), - [anon_sym_DOT_DOT] = ACTIONS(2547), - [anon_sym_try] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2547), - [anon_sym_source] = ACTIONS(2547), - [anon_sym_source_DASHenv] = ACTIONS(2547), - [anon_sym_register] = ACTIONS(2547), - [anon_sym_hide] = ACTIONS(2547), - [anon_sym_hide_DASHenv] = ACTIONS(2547), - [anon_sym_overlay] = ACTIONS(2547), - [anon_sym_as] = ACTIONS(2547), - [anon_sym_where] = ACTIONS(2547), - [anon_sym_not] = ACTIONS(2547), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), - [anon_sym_DOT_DOT_LT] = ACTIONS(2547), - [anon_sym_null] = ACTIONS(2547), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [aux_sym__val_number_decimal_token1] = ACTIONS(2547), - [aux_sym__val_number_decimal_token2] = ACTIONS(2547), - [anon_sym_DOT2] = ACTIONS(2547), - [aux_sym__val_number_decimal_token3] = ACTIONS(2547), - [aux_sym__val_number_token1] = ACTIONS(2547), - [aux_sym__val_number_token2] = ACTIONS(2547), - [aux_sym__val_number_token3] = ACTIONS(2547), - [aux_sym__val_number_token4] = ACTIONS(2547), - [aux_sym__val_number_token5] = ACTIONS(2547), - [aux_sym__val_number_token6] = ACTIONS(2547), - [anon_sym_0b] = ACTIONS(2547), - [anon_sym_0o] = ACTIONS(2547), - [anon_sym_0x] = ACTIONS(2547), - [sym_val_date] = ACTIONS(2547), - [anon_sym_DQUOTE] = ACTIONS(2547), - [sym__str_single_quotes] = ACTIONS(2547), - [sym__str_back_ticks] = ACTIONS(2547), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2547), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2547), - [anon_sym_POUND] = ACTIONS(113), - }, - [2532] = { - [sym_path] = STATE(2932), - [sym_comment] = STATE(2532), - [aux_sym_cell_path_repeat1] = STATE(2532), - [anon_sym_SEMI] = ACTIONS(999), - [anon_sym_LF] = ACTIONS(1001), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_RPAREN] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_GT] = ACTIONS(999), - [anon_sym_DASH_DASH] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_in] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(999), - [anon_sym_RBRACE] = ACTIONS(999), - [anon_sym_DOT_DOT] = ACTIONS(999), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_STAR_STAR] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(999), - [anon_sym_mod] = ACTIONS(999), - [anon_sym_SLASH_SLASH] = ACTIONS(999), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_bit_DASHshl] = ACTIONS(999), - [anon_sym_bit_DASHshr] = ACTIONS(999), - [anon_sym_EQ_EQ] = ACTIONS(999), - [anon_sym_BANG_EQ] = ACTIONS(999), - [anon_sym_LT2] = ACTIONS(999), - [anon_sym_LT_EQ] = ACTIONS(999), - [anon_sym_GT_EQ] = ACTIONS(999), - [anon_sym_not_DASHin] = ACTIONS(999), - [anon_sym_starts_DASHwith] = ACTIONS(999), - [anon_sym_ends_DASHwith] = ACTIONS(999), - [anon_sym_EQ_TILDE] = ACTIONS(999), - [anon_sym_BANG_TILDE] = ACTIONS(999), - [anon_sym_bit_DASHand] = ACTIONS(999), - [anon_sym_bit_DASHxor] = ACTIONS(999), - [anon_sym_bit_DASHor] = ACTIONS(999), - [anon_sym_and] = ACTIONS(999), - [anon_sym_xor] = ACTIONS(999), - [anon_sym_or] = ACTIONS(999), - [anon_sym_not] = ACTIONS(999), - [anon_sym_DOT] = ACTIONS(6240), - [anon_sym_DOT_DOT_EQ] = ACTIONS(999), - [anon_sym_DOT_DOT_LT] = ACTIONS(999), - [anon_sym_null] = ACTIONS(999), - [anon_sym_true] = ACTIONS(999), - [anon_sym_false] = ACTIONS(999), - [aux_sym__val_number_decimal_token1] = ACTIONS(999), - [aux_sym__val_number_decimal_token2] = ACTIONS(999), - [anon_sym_DOT2] = ACTIONS(999), - [aux_sym__val_number_decimal_token3] = ACTIONS(999), - [aux_sym__val_number_token1] = ACTIONS(999), - [aux_sym__val_number_token2] = ACTIONS(999), - [aux_sym__val_number_token3] = ACTIONS(999), - [aux_sym__val_number_token4] = ACTIONS(999), - [aux_sym__val_number_token5] = ACTIONS(999), - [aux_sym__val_number_token6] = ACTIONS(999), - [anon_sym_0b] = ACTIONS(999), - [anon_sym_0o] = ACTIONS(999), - [anon_sym_0x] = ACTIONS(999), - [sym_val_date] = ACTIONS(999), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym__str_single_quotes] = ACTIONS(999), - [sym__str_back_ticks] = ACTIONS(999), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(999), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(999), - [anon_sym_POUND] = ACTIONS(113), - }, - [2533] = { - [sym_comment] = STATE(2533), - [ts_builtin_sym_end] = ACTIONS(3507), - [anon_sym_export] = ACTIONS(3505), - [anon_sym_alias] = ACTIONS(3505), - [anon_sym_let] = ACTIONS(3505), - [anon_sym_let_DASHenv] = ACTIONS(3505), - [anon_sym_mut] = ACTIONS(3505), - [anon_sym_const] = ACTIONS(3505), - [anon_sym_SEMI] = ACTIONS(3505), - [sym_cmd_identifier] = ACTIONS(3505), - [anon_sym_LF] = ACTIONS(3507), - [anon_sym_def] = ACTIONS(3505), - [anon_sym_export_DASHenv] = ACTIONS(3505), - [anon_sym_extern] = ACTIONS(3505), - [anon_sym_module] = ACTIONS(3505), - [anon_sym_use] = ACTIONS(3505), - [anon_sym_LBRACK] = ACTIONS(3505), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_error] = ACTIONS(3505), - [anon_sym_DASH_DASH] = ACTIONS(3505), - [anon_sym_DASH] = ACTIONS(3505), - [anon_sym_break] = ACTIONS(3505), - [anon_sym_continue] = ACTIONS(3505), - [anon_sym_for] = ACTIONS(3505), - [anon_sym_loop] = ACTIONS(3505), - [anon_sym_while] = ACTIONS(3505), - [anon_sym_do] = ACTIONS(3505), - [anon_sym_if] = ACTIONS(3505), - [anon_sym_match] = ACTIONS(3505), - [anon_sym_LBRACE] = ACTIONS(3505), - [anon_sym_DOT_DOT] = ACTIONS(3505), - [anon_sym_try] = ACTIONS(3505), - [anon_sym_return] = ACTIONS(3505), - [anon_sym_source] = ACTIONS(3505), - [anon_sym_source_DASHenv] = ACTIONS(3505), - [anon_sym_register] = ACTIONS(3505), - [anon_sym_hide] = ACTIONS(3505), - [anon_sym_hide_DASHenv] = ACTIONS(3505), - [anon_sym_overlay] = ACTIONS(3505), - [anon_sym_as] = ACTIONS(3505), - [anon_sym_where] = ACTIONS(3505), - [anon_sym_not] = ACTIONS(3505), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3505), - [anon_sym_DOT_DOT_LT] = ACTIONS(3505), - [anon_sym_null] = ACTIONS(3505), - [anon_sym_true] = ACTIONS(3505), - [anon_sym_false] = ACTIONS(3505), - [aux_sym__val_number_decimal_token1] = ACTIONS(3505), - [aux_sym__val_number_decimal_token2] = ACTIONS(3505), - [anon_sym_DOT2] = ACTIONS(3505), - [aux_sym__val_number_decimal_token3] = ACTIONS(3505), - [aux_sym__val_number_token1] = ACTIONS(3505), - [aux_sym__val_number_token2] = ACTIONS(3505), - [aux_sym__val_number_token3] = ACTIONS(3505), - [aux_sym__val_number_token4] = ACTIONS(3505), - [aux_sym__val_number_token5] = ACTIONS(3505), - [aux_sym__val_number_token6] = ACTIONS(3505), - [anon_sym_0b] = ACTIONS(3505), - [anon_sym_0o] = ACTIONS(3505), - [anon_sym_0x] = ACTIONS(3505), - [sym_val_date] = ACTIONS(3505), - [anon_sym_DQUOTE] = ACTIONS(3505), - [sym__str_single_quotes] = ACTIONS(3505), - [sym__str_back_ticks] = ACTIONS(3505), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3505), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3505), - [anon_sym_CARET] = ACTIONS(3505), - [anon_sym_POUND] = ACTIONS(113), - }, - [2534] = { - [sym_comment] = STATE(2534), - [ts_builtin_sym_end] = ACTIONS(5181), - [anon_sym_export] = ACTIONS(5179), - [anon_sym_alias] = ACTIONS(5179), - [anon_sym_let] = ACTIONS(5179), - [anon_sym_let_DASHenv] = ACTIONS(5179), - [anon_sym_mut] = ACTIONS(5179), - [anon_sym_const] = ACTIONS(5179), - [anon_sym_SEMI] = ACTIONS(5179), - [sym_cmd_identifier] = ACTIONS(5179), - [anon_sym_LF] = ACTIONS(5181), - [anon_sym_def] = ACTIONS(5179), - [anon_sym_export_DASHenv] = ACTIONS(5179), - [anon_sym_extern] = ACTIONS(5179), - [anon_sym_module] = ACTIONS(5179), - [anon_sym_use] = ACTIONS(5179), - [anon_sym_LBRACK] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(5179), - [anon_sym_DOLLAR] = ACTIONS(5179), - [anon_sym_error] = ACTIONS(5179), - [anon_sym_DASH_DASH] = ACTIONS(5179), - [anon_sym_DASH] = ACTIONS(5179), - [anon_sym_break] = ACTIONS(5179), - [anon_sym_continue] = ACTIONS(5179), - [anon_sym_for] = ACTIONS(5179), - [anon_sym_loop] = ACTIONS(5179), - [anon_sym_while] = ACTIONS(5179), - [anon_sym_do] = ACTIONS(5179), - [anon_sym_if] = ACTIONS(5179), - [anon_sym_match] = ACTIONS(5179), - [anon_sym_LBRACE] = ACTIONS(5179), - [anon_sym_DOT_DOT] = ACTIONS(5179), - [anon_sym_try] = ACTIONS(5179), - [anon_sym_return] = ACTIONS(5179), - [anon_sym_source] = ACTIONS(5179), - [anon_sym_source_DASHenv] = ACTIONS(5179), - [anon_sym_register] = ACTIONS(5179), - [anon_sym_hide] = ACTIONS(5179), - [anon_sym_hide_DASHenv] = ACTIONS(5179), - [anon_sym_overlay] = ACTIONS(5179), - [anon_sym_as] = ACTIONS(5179), - [anon_sym_where] = ACTIONS(5179), - [anon_sym_not] = ACTIONS(5179), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5179), - [anon_sym_DOT_DOT_LT] = ACTIONS(5179), - [anon_sym_null] = ACTIONS(5179), - [anon_sym_true] = ACTIONS(5179), - [anon_sym_false] = ACTIONS(5179), - [aux_sym__val_number_decimal_token1] = ACTIONS(5179), - [aux_sym__val_number_decimal_token2] = ACTIONS(5179), - [anon_sym_DOT2] = ACTIONS(5179), - [aux_sym__val_number_decimal_token3] = ACTIONS(5179), - [aux_sym__val_number_token1] = ACTIONS(5179), - [aux_sym__val_number_token2] = ACTIONS(5179), - [aux_sym__val_number_token3] = ACTIONS(5179), - [aux_sym__val_number_token4] = ACTIONS(5179), - [aux_sym__val_number_token5] = ACTIONS(5179), - [aux_sym__val_number_token6] = ACTIONS(5179), - [anon_sym_0b] = ACTIONS(5179), - [anon_sym_0o] = ACTIONS(5179), - [anon_sym_0x] = ACTIONS(5179), - [sym_val_date] = ACTIONS(5179), - [anon_sym_DQUOTE] = ACTIONS(5179), - [sym__str_single_quotes] = ACTIONS(5179), - [sym__str_back_ticks] = ACTIONS(5179), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5179), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5179), - [anon_sym_CARET] = ACTIONS(5179), - [anon_sym_POUND] = ACTIONS(113), - }, - [2535] = { - [sym_comment] = STATE(2535), - [ts_builtin_sym_end] = ACTIONS(4293), - [anon_sym_export] = ACTIONS(4291), - [anon_sym_alias] = ACTIONS(4291), - [anon_sym_let] = ACTIONS(4291), - [anon_sym_let_DASHenv] = ACTIONS(4291), - [anon_sym_mut] = ACTIONS(4291), - [anon_sym_const] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4291), - [sym_cmd_identifier] = ACTIONS(4291), - [anon_sym_LF] = ACTIONS(4293), - [anon_sym_def] = ACTIONS(4291), - [anon_sym_export_DASHenv] = ACTIONS(4291), - [anon_sym_extern] = ACTIONS(4291), - [anon_sym_module] = ACTIONS(4291), - [anon_sym_use] = ACTIONS(4291), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_LPAREN] = ACTIONS(4291), - [anon_sym_DOLLAR] = ACTIONS(4291), - [anon_sym_error] = ACTIONS(4291), - [anon_sym_DASH_DASH] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_break] = ACTIONS(4291), - [anon_sym_continue] = ACTIONS(4291), - [anon_sym_for] = ACTIONS(4291), - [anon_sym_loop] = ACTIONS(4291), - [anon_sym_while] = ACTIONS(4291), - [anon_sym_do] = ACTIONS(4291), - [anon_sym_if] = ACTIONS(4291), - [anon_sym_match] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4291), - [anon_sym_try] = ACTIONS(4291), - [anon_sym_return] = ACTIONS(4291), - [anon_sym_source] = ACTIONS(4291), - [anon_sym_source_DASHenv] = ACTIONS(4291), - [anon_sym_register] = ACTIONS(4291), - [anon_sym_hide] = ACTIONS(4291), - [anon_sym_hide_DASHenv] = ACTIONS(4291), - [anon_sym_overlay] = ACTIONS(4291), - [anon_sym_as] = ACTIONS(4291), - [anon_sym_where] = ACTIONS(4291), - [anon_sym_not] = ACTIONS(4291), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4291), - [anon_sym_DOT_DOT_LT] = ACTIONS(4291), - [anon_sym_null] = ACTIONS(4291), - [anon_sym_true] = ACTIONS(4291), - [anon_sym_false] = ACTIONS(4291), - [aux_sym__val_number_decimal_token1] = ACTIONS(4291), - [aux_sym__val_number_decimal_token2] = ACTIONS(4291), - [anon_sym_DOT2] = ACTIONS(4291), - [aux_sym__val_number_decimal_token3] = ACTIONS(4291), - [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(4291), - [aux_sym__val_number_token5] = ACTIONS(4291), - [aux_sym__val_number_token6] = ACTIONS(4291), - [anon_sym_0b] = ACTIONS(4291), - [anon_sym_0o] = ACTIONS(4291), - [anon_sym_0x] = ACTIONS(4291), - [sym_val_date] = ACTIONS(4291), - [anon_sym_DQUOTE] = ACTIONS(4291), - [sym__str_single_quotes] = ACTIONS(4291), - [sym__str_back_ticks] = ACTIONS(4291), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4291), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4291), - [anon_sym_CARET] = ACTIONS(4291), - [anon_sym_POUND] = ACTIONS(113), - }, - [2536] = { - [sym_comment] = STATE(2536), - [ts_builtin_sym_end] = ACTIONS(2439), - [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), - [anon_sym_SEMI] = ACTIONS(2437), - [sym_cmd_identifier] = ACTIONS(2437), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_not] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [aux_sym__immediate_decimal_token1] = ACTIONS(6243), - [aux_sym__immediate_decimal_token2] = ACTIONS(6245), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [anon_sym_DOT2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2437), - [anon_sym_0o] = ACTIONS(2437), - [anon_sym_0x] = ACTIONS(2437), - [sym_val_date] = 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_CARET] = ACTIONS(2437), - [anon_sym_POUND] = ACTIONS(113), - }, - [2537] = { - [sym_comment] = STATE(2537), - [anon_sym_LBRACK] = ACTIONS(1282), - [anon_sym_COMMA] = ACTIONS(1282), - [anon_sym_RBRACK] = ACTIONS(1282), - [anon_sym_LPAREN] = ACTIONS(1282), - [anon_sym_DOLLAR] = ACTIONS(1282), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_DASH_DASH] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_in] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1282), - [anon_sym_DOT_DOT] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1280), - [anon_sym_STAR_STAR] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(1280), - [anon_sym_mod] = ACTIONS(1282), - [anon_sym_SLASH_SLASH] = ACTIONS(1282), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_bit_DASHshl] = ACTIONS(1282), - [anon_sym_bit_DASHshr] = ACTIONS(1282), - [anon_sym_EQ_EQ] = ACTIONS(1282), - [anon_sym_BANG_EQ] = ACTIONS(1282), - [anon_sym_LT2] = ACTIONS(1280), - [anon_sym_LT_EQ] = ACTIONS(1282), - [anon_sym_GT_EQ] = ACTIONS(1282), - [anon_sym_not_DASHin] = ACTIONS(1282), - [anon_sym_starts_DASHwith] = ACTIONS(1282), - [anon_sym_ends_DASHwith] = ACTIONS(1282), - [anon_sym_EQ_TILDE] = ACTIONS(1282), - [anon_sym_BANG_TILDE] = ACTIONS(1282), - [anon_sym_bit_DASHand] = ACTIONS(1282), - [anon_sym_bit_DASHxor] = ACTIONS(1282), - [anon_sym_bit_DASHor] = ACTIONS(1282), - [anon_sym_and] = ACTIONS(1282), - [anon_sym_xor] = ACTIONS(1282), - [anon_sym_or] = ACTIONS(1282), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1282), - [anon_sym_DOT_DOT_LT] = ACTIONS(1282), - [anon_sym_null] = ACTIONS(1282), - [anon_sym_true] = ACTIONS(1282), - [anon_sym_false] = ACTIONS(1282), - [aux_sym__val_number_decimal_token1] = ACTIONS(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1282), - [anon_sym_DOT2] = ACTIONS(1280), - [aux_sym__val_number_decimal_token3] = ACTIONS(1282), - [aux_sym__val_number_token1] = ACTIONS(1282), - [aux_sym__val_number_token2] = ACTIONS(1282), - [aux_sym__val_number_token3] = ACTIONS(1282), - [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(1280), - [anon_sym_0o] = ACTIONS(1280), - [anon_sym_0x] = ACTIONS(1280), - [sym_val_date] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1282), - [sym__str_single_quotes] = ACTIONS(1282), - [sym__str_back_ticks] = ACTIONS(1282), - [anon_sym_err_GT] = ACTIONS(1282), - [anon_sym_out_GT] = ACTIONS(1282), - [anon_sym_e_GT] = ACTIONS(1282), - [anon_sym_o_GT] = ACTIONS(1282), - [anon_sym_err_PLUSout_GT] = ACTIONS(1282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1282), - [anon_sym_o_PLUSe_GT] = ACTIONS(1282), - [anon_sym_e_PLUSo_GT] = ACTIONS(1282), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1280), - [anon_sym_POUND] = ACTIONS(3), - }, - [2538] = { - [sym_expr_parenthesized] = STATE(11210), - [sym_val_variable] = STATE(11210), - [sym__var] = STATE(7440), - [sym_val_number] = STATE(11210), - [sym__val_number_decimal] = STATE(5414), - [sym__val_number] = STATE(5463), - [sym_val_string] = STATE(11210), - [sym__str_double_quotes] = STATE(7019), - [sym_record_body] = STATE(11378), - [sym_record_entry] = STATE(10592), - [sym__record_key] = STATE(11197), - [sym_comment] = STATE(2538), - [aux_sym_record_body_repeat1] = STATE(2896), - [anon_sym_export] = ACTIONS(255), - [anon_sym_alias] = ACTIONS(255), - [anon_sym_let] = ACTIONS(255), - [anon_sym_let_DASHenv] = ACTIONS(255), - [anon_sym_mut] = ACTIONS(255), - [anon_sym_const] = ACTIONS(255), - [sym_cmd_identifier] = ACTIONS(255), - [anon_sym_def] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(255), - [anon_sym_extern] = ACTIONS(255), - [anon_sym_module] = ACTIONS(255), - [anon_sym_use] = ACTIONS(255), - [anon_sym_LPAREN] = ACTIONS(6093), - [anon_sym_DOLLAR] = ACTIONS(6247), - [anon_sym_error] = ACTIONS(255), - [anon_sym_list] = ACTIONS(255), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_break] = ACTIONS(255), - [anon_sym_continue] = ACTIONS(255), - [anon_sym_for] = ACTIONS(255), - [anon_sym_in] = ACTIONS(255), - [anon_sym_loop] = ACTIONS(255), - [anon_sym_make] = ACTIONS(255), - [anon_sym_while] = ACTIONS(255), - [anon_sym_do] = ACTIONS(255), - [anon_sym_if] = ACTIONS(255), - [anon_sym_else] = ACTIONS(255), - [anon_sym_match] = ACTIONS(255), - [anon_sym_RBRACE] = ACTIONS(6249), - [anon_sym_try] = ACTIONS(255), - [anon_sym_catch] = ACTIONS(255), - [anon_sym_return] = ACTIONS(255), - [anon_sym_source] = ACTIONS(255), - [anon_sym_source_DASHenv] = ACTIONS(255), - [anon_sym_register] = ACTIONS(255), - [anon_sym_hide] = ACTIONS(255), - [anon_sym_hide_DASHenv] = ACTIONS(255), - [anon_sym_overlay] = ACTIONS(255), - [anon_sym_new] = ACTIONS(255), - [anon_sym_as] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(189), - [aux_sym__val_number_decimal_token1] = ACTIONS(6099), - [aux_sym__val_number_decimal_token2] = ACTIONS(6101), - [anon_sym_DOT2] = ACTIONS(6103), - [aux_sym__val_number_decimal_token3] = ACTIONS(6105), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(6107), - [aux_sym__val_number_token5] = ACTIONS(2714), - [aux_sym__val_number_token6] = ACTIONS(6107), - [anon_sym_DQUOTE] = ACTIONS(2724), - [sym__str_single_quotes] = ACTIONS(2726), - [sym__str_back_ticks] = ACTIONS(2726), - [aux_sym__record_key_token2] = ACTIONS(225), - [anon_sym_POUND] = ACTIONS(3), - }, - [2539] = { - [sym_match_arm] = STATE(4736), - [sym_default_arm] = STATE(10832), - [sym_match_pattern] = STATE(11092), - [sym__match_pattern] = STATE(8841), - [sym__match_pattern_expression] = STATE(10370), - [sym__match_pattern_value] = STATE(10371), - [sym__match_pattern_list] = STATE(10378), - [sym__match_pattern_record] = STATE(10383), - [sym__expr_unary_minus] = STATE(10390), - [sym_expr_parenthesized] = STATE(8527), - [sym_val_range] = STATE(10371), - [sym__val_range] = STATE(10473), - [sym_val_nothing] = STATE(10398), - [sym_val_bool] = STATE(9683), - [sym_val_variable] = STATE(8532), - [sym__var] = STATE(4486), - [sym_val_number] = STATE(10398), - [sym__val_number_decimal] = STATE(7782), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(10398), - [sym_val_filesize] = STATE(10398), - [sym_val_binary] = STATE(10398), - [sym_val_string] = STATE(10398), - [sym__str_double_quotes] = STATE(5541), - [sym_val_table] = STATE(10398), - [sym_unquoted] = STATE(10403), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(2539), - [aux_sym_ctrl_match_repeat1] = STATE(2542), - [anon_sym_LBRACK] = ACTIONS(6251), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_DOLLAR] = ACTIONS(6253), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(6255), - [anon_sym_RBRACE] = ACTIONS(6257), - [anon_sym__] = ACTIONS(6259), - [anon_sym_DOT_DOT] = ACTIONS(6261), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6263), - [anon_sym_DOT_DOT_LT] = ACTIONS(6263), - [anon_sym_null] = ACTIONS(6265), - [anon_sym_true] = ACTIONS(6267), - [anon_sym_false] = ACTIONS(6267), - [aux_sym__val_number_decimal_token1] = ACTIONS(6269), - [aux_sym__val_number_decimal_token2] = ACTIONS(6271), - [anon_sym_DOT2] = ACTIONS(6273), - [aux_sym__val_number_decimal_token3] = ACTIONS(6275), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(6277), - [aux_sym__val_number_token5] = ACTIONS(6277), - [aux_sym__val_number_token6] = ACTIONS(6277), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(6279), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(3), - }, - [2540] = { - [sym_match_arm] = STATE(4736), - [sym_default_arm] = STATE(10834), - [sym_match_pattern] = STATE(11092), - [sym__match_pattern] = STATE(8841), - [sym__match_pattern_expression] = STATE(10370), - [sym__match_pattern_value] = STATE(10371), - [sym__match_pattern_list] = STATE(10378), - [sym__match_pattern_record] = STATE(10383), - [sym__expr_unary_minus] = STATE(10390), - [sym_expr_parenthesized] = STATE(8527), - [sym_val_range] = STATE(10371), - [sym__val_range] = STATE(10473), - [sym_val_nothing] = STATE(10398), - [sym_val_bool] = STATE(9683), - [sym_val_variable] = STATE(8532), - [sym__var] = STATE(4486), - [sym_val_number] = STATE(10398), - [sym__val_number_decimal] = STATE(7782), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(10398), - [sym_val_filesize] = STATE(10398), - [sym_val_binary] = STATE(10398), - [sym_val_string] = STATE(10398), - [sym__str_double_quotes] = STATE(5541), - [sym_val_table] = STATE(10398), - [sym_unquoted] = STATE(10403), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(2540), - [aux_sym_ctrl_match_repeat1] = STATE(2543), - [anon_sym_LBRACK] = ACTIONS(6251), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_DOLLAR] = ACTIONS(6253), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(6255), - [anon_sym_RBRACE] = ACTIONS(6281), - [anon_sym__] = ACTIONS(6259), - [anon_sym_DOT_DOT] = ACTIONS(6261), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6263), - [anon_sym_DOT_DOT_LT] = ACTIONS(6263), - [anon_sym_null] = ACTIONS(6265), - [anon_sym_true] = ACTIONS(6267), - [anon_sym_false] = ACTIONS(6267), - [aux_sym__val_number_decimal_token1] = ACTIONS(6269), - [aux_sym__val_number_decimal_token2] = ACTIONS(6271), - [anon_sym_DOT2] = ACTIONS(6273), - [aux_sym__val_number_decimal_token3] = ACTIONS(6275), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(6277), - [aux_sym__val_number_token5] = ACTIONS(6277), - [aux_sym__val_number_token6] = ACTIONS(6277), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(6279), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(3), - }, - [2541] = { - [sym__match_pattern_record_variable] = STATE(3555), - [sym_expr_parenthesized] = STATE(10769), - [sym_val_variable] = STATE(3513), - [sym__var] = STATE(3214), - [sym_val_number] = STATE(10769), - [sym__val_number_decimal] = STATE(5414), - [sym__val_number] = STATE(5463), - [sym_val_string] = STATE(10769), - [sym__str_double_quotes] = STATE(7019), - [sym_record_entry] = STATE(3555), - [sym__record_key] = STATE(10918), - [sym_comment] = STATE(2541), - [aux_sym__match_pattern_record_repeat1] = STATE(2544), - [anon_sym_export] = ACTIONS(6091), - [anon_sym_alias] = ACTIONS(6091), - [anon_sym_let] = ACTIONS(6091), - [anon_sym_let_DASHenv] = ACTIONS(6091), - [anon_sym_mut] = ACTIONS(6091), - [anon_sym_const] = ACTIONS(6091), - [sym_cmd_identifier] = ACTIONS(6091), - [anon_sym_def] = ACTIONS(6091), - [anon_sym_export_DASHenv] = ACTIONS(6091), - [anon_sym_extern] = ACTIONS(6091), - [anon_sym_module] = ACTIONS(6091), - [anon_sym_use] = ACTIONS(6091), - [anon_sym_LPAREN] = ACTIONS(6093), - [anon_sym_DOLLAR] = ACTIONS(6095), - [anon_sym_error] = ACTIONS(6091), - [anon_sym_list] = ACTIONS(6091), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_break] = ACTIONS(6091), - [anon_sym_continue] = ACTIONS(6091), - [anon_sym_for] = ACTIONS(6091), - [anon_sym_in] = ACTIONS(6091), - [anon_sym_loop] = ACTIONS(6091), - [anon_sym_make] = ACTIONS(6091), - [anon_sym_while] = ACTIONS(6091), - [anon_sym_do] = ACTIONS(6091), - [anon_sym_if] = ACTIONS(6091), - [anon_sym_else] = ACTIONS(6091), - [anon_sym_match] = ACTIONS(6091), - [anon_sym_RBRACE] = ACTIONS(6283), - [anon_sym_try] = ACTIONS(6091), - [anon_sym_catch] = ACTIONS(6091), - [anon_sym_return] = ACTIONS(6091), - [anon_sym_source] = ACTIONS(6091), - [anon_sym_source_DASHenv] = ACTIONS(6091), - [anon_sym_register] = ACTIONS(6091), - [anon_sym_hide] = ACTIONS(6091), - [anon_sym_hide_DASHenv] = ACTIONS(6091), - [anon_sym_overlay] = ACTIONS(6091), - [anon_sym_new] = ACTIONS(6091), - [anon_sym_as] = ACTIONS(6091), - [anon_sym_PLUS] = ACTIONS(189), - [aux_sym__val_number_decimal_token1] = ACTIONS(6099), - [aux_sym__val_number_decimal_token2] = ACTIONS(6101), - [anon_sym_DOT2] = ACTIONS(6103), - [aux_sym__val_number_decimal_token3] = ACTIONS(6105), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(6107), - [aux_sym__val_number_token5] = ACTIONS(2714), - [aux_sym__val_number_token6] = ACTIONS(6107), - [anon_sym_DQUOTE] = ACTIONS(2724), - [sym__str_single_quotes] = ACTIONS(2726), - [sym__str_back_ticks] = ACTIONS(2726), - [aux_sym__record_key_token2] = ACTIONS(225), - [anon_sym_POUND] = ACTIONS(3), - }, - [2542] = { - [sym_match_arm] = STATE(4736), - [sym_default_arm] = STATE(10883), - [sym_match_pattern] = STATE(11092), - [sym__match_pattern] = STATE(8841), - [sym__match_pattern_expression] = STATE(10370), - [sym__match_pattern_value] = STATE(10371), - [sym__match_pattern_list] = STATE(10378), - [sym__match_pattern_record] = STATE(10383), - [sym__expr_unary_minus] = STATE(10390), - [sym_expr_parenthesized] = STATE(8527), - [sym_val_range] = STATE(10371), - [sym__val_range] = STATE(10473), - [sym_val_nothing] = STATE(10398), - [sym_val_bool] = STATE(9683), - [sym_val_variable] = STATE(8532), - [sym__var] = STATE(4486), - [sym_val_number] = STATE(10398), - [sym__val_number_decimal] = STATE(7782), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(10398), - [sym_val_filesize] = STATE(10398), - [sym_val_binary] = STATE(10398), - [sym_val_string] = STATE(10398), - [sym__str_double_quotes] = STATE(5541), - [sym_val_table] = STATE(10398), - [sym_unquoted] = STATE(10403), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(2542), - [aux_sym_ctrl_match_repeat1] = STATE(2718), - [anon_sym_LBRACK] = ACTIONS(6251), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_DOLLAR] = ACTIONS(6253), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(6255), - [anon_sym_RBRACE] = ACTIONS(6285), - [anon_sym__] = ACTIONS(6259), - [anon_sym_DOT_DOT] = ACTIONS(6261), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6263), - [anon_sym_DOT_DOT_LT] = ACTIONS(6263), - [anon_sym_null] = ACTIONS(6265), - [anon_sym_true] = ACTIONS(6267), - [anon_sym_false] = ACTIONS(6267), - [aux_sym__val_number_decimal_token1] = ACTIONS(6269), - [aux_sym__val_number_decimal_token2] = ACTIONS(6271), - [anon_sym_DOT2] = ACTIONS(6273), - [aux_sym__val_number_decimal_token3] = ACTIONS(6275), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(6277), - [aux_sym__val_number_token5] = ACTIONS(6277), - [aux_sym__val_number_token6] = ACTIONS(6277), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(6279), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(3), - }, - [2543] = { - [sym_match_arm] = STATE(4736), - [sym_default_arm] = STATE(10891), - [sym_match_pattern] = STATE(11092), - [sym__match_pattern] = STATE(8841), - [sym__match_pattern_expression] = STATE(10370), - [sym__match_pattern_value] = STATE(10371), - [sym__match_pattern_list] = STATE(10378), - [sym__match_pattern_record] = STATE(10383), - [sym__expr_unary_minus] = STATE(10390), - [sym_expr_parenthesized] = STATE(8527), - [sym_val_range] = STATE(10371), - [sym__val_range] = STATE(10473), - [sym_val_nothing] = STATE(10398), - [sym_val_bool] = STATE(9683), - [sym_val_variable] = STATE(8532), - [sym__var] = STATE(4486), - [sym_val_number] = STATE(10398), - [sym__val_number_decimal] = STATE(7782), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(10398), - [sym_val_filesize] = STATE(10398), - [sym_val_binary] = STATE(10398), - [sym_val_string] = STATE(10398), - [sym__str_double_quotes] = STATE(5541), - [sym_val_table] = STATE(10398), - [sym_unquoted] = STATE(10403), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(2543), - [aux_sym_ctrl_match_repeat1] = STATE(2718), - [anon_sym_LBRACK] = ACTIONS(6251), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_DOLLAR] = ACTIONS(6253), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(6255), - [anon_sym_RBRACE] = ACTIONS(6287), - [anon_sym__] = ACTIONS(6259), - [anon_sym_DOT_DOT] = ACTIONS(6261), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6263), - [anon_sym_DOT_DOT_LT] = ACTIONS(6263), - [anon_sym_null] = ACTIONS(6265), - [anon_sym_true] = ACTIONS(6267), - [anon_sym_false] = ACTIONS(6267), - [aux_sym__val_number_decimal_token1] = ACTIONS(6269), - [aux_sym__val_number_decimal_token2] = ACTIONS(6271), - [anon_sym_DOT2] = ACTIONS(6273), - [aux_sym__val_number_decimal_token3] = ACTIONS(6275), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(6277), - [aux_sym__val_number_token5] = ACTIONS(6277), - [aux_sym__val_number_token6] = ACTIONS(6277), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(6279), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(3), - }, - [2544] = { - [sym__match_pattern_record_variable] = STATE(3555), - [sym_expr_parenthesized] = STATE(10769), - [sym_val_variable] = STATE(3513), - [sym__var] = STATE(3214), - [sym_val_number] = STATE(10769), - [sym__val_number_decimal] = STATE(5414), - [sym__val_number] = STATE(5463), - [sym_val_string] = STATE(10769), - [sym__str_double_quotes] = STATE(7019), - [sym_record_entry] = STATE(3555), - [sym__record_key] = STATE(10918), - [sym_comment] = STATE(2544), - [aux_sym__match_pattern_record_repeat1] = STATE(2447), - [anon_sym_export] = ACTIONS(6091), - [anon_sym_alias] = ACTIONS(6091), - [anon_sym_let] = ACTIONS(6091), - [anon_sym_let_DASHenv] = ACTIONS(6091), - [anon_sym_mut] = ACTIONS(6091), - [anon_sym_const] = ACTIONS(6091), - [sym_cmd_identifier] = ACTIONS(6091), - [anon_sym_def] = ACTIONS(6091), - [anon_sym_export_DASHenv] = ACTIONS(6091), - [anon_sym_extern] = ACTIONS(6091), - [anon_sym_module] = ACTIONS(6091), - [anon_sym_use] = ACTIONS(6091), - [anon_sym_LPAREN] = ACTIONS(6093), - [anon_sym_DOLLAR] = ACTIONS(6095), - [anon_sym_error] = ACTIONS(6091), - [anon_sym_list] = ACTIONS(6091), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_break] = ACTIONS(6091), - [anon_sym_continue] = ACTIONS(6091), - [anon_sym_for] = ACTIONS(6091), - [anon_sym_in] = ACTIONS(6091), - [anon_sym_loop] = ACTIONS(6091), - [anon_sym_make] = ACTIONS(6091), - [anon_sym_while] = ACTIONS(6091), - [anon_sym_do] = ACTIONS(6091), - [anon_sym_if] = ACTIONS(6091), - [anon_sym_else] = ACTIONS(6091), - [anon_sym_match] = ACTIONS(6091), - [anon_sym_RBRACE] = ACTIONS(6289), - [anon_sym_try] = ACTIONS(6091), - [anon_sym_catch] = ACTIONS(6091), - [anon_sym_return] = ACTIONS(6091), - [anon_sym_source] = ACTIONS(6091), - [anon_sym_source_DASHenv] = ACTIONS(6091), - [anon_sym_register] = ACTIONS(6091), - [anon_sym_hide] = ACTIONS(6091), - [anon_sym_hide_DASHenv] = ACTIONS(6091), - [anon_sym_overlay] = ACTIONS(6091), - [anon_sym_new] = ACTIONS(6091), - [anon_sym_as] = ACTIONS(6091), - [anon_sym_PLUS] = ACTIONS(189), - [aux_sym__val_number_decimal_token1] = ACTIONS(6099), - [aux_sym__val_number_decimal_token2] = ACTIONS(6101), - [anon_sym_DOT2] = ACTIONS(6103), - [aux_sym__val_number_decimal_token3] = ACTIONS(6105), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(6107), - [aux_sym__val_number_token5] = ACTIONS(2714), - [aux_sym__val_number_token6] = ACTIONS(6107), - [anon_sym_DQUOTE] = ACTIONS(2724), - [sym__str_single_quotes] = ACTIONS(2726), - [sym__str_back_ticks] = ACTIONS(2726), - [aux_sym__record_key_token2] = ACTIONS(225), - [anon_sym_POUND] = ACTIONS(3), - }, - [2545] = { - [sym_comment] = STATE(2545), - [ts_builtin_sym_end] = ACTIONS(5201), - [anon_sym_export] = ACTIONS(5199), - [anon_sym_alias] = ACTIONS(5199), - [anon_sym_let] = ACTIONS(5199), - [anon_sym_let_DASHenv] = ACTIONS(5199), - [anon_sym_mut] = ACTIONS(5199), - [anon_sym_const] = ACTIONS(5199), - [anon_sym_SEMI] = ACTIONS(5199), - [sym_cmd_identifier] = ACTIONS(5199), - [anon_sym_LF] = ACTIONS(5201), - [anon_sym_def] = ACTIONS(5199), - [anon_sym_export_DASHenv] = ACTIONS(5199), - [anon_sym_extern] = ACTIONS(5199), - [anon_sym_module] = ACTIONS(5199), - [anon_sym_use] = ACTIONS(5199), - [anon_sym_LBRACK] = ACTIONS(5199), - [anon_sym_LPAREN] = ACTIONS(5199), - [anon_sym_DOLLAR] = ACTIONS(5199), - [anon_sym_error] = ACTIONS(5199), - [anon_sym_DASH_DASH] = ACTIONS(5199), - [anon_sym_DASH] = ACTIONS(5199), - [anon_sym_break] = ACTIONS(5199), - [anon_sym_continue] = ACTIONS(5199), - [anon_sym_for] = ACTIONS(5199), - [anon_sym_loop] = ACTIONS(5199), - [anon_sym_while] = ACTIONS(5199), - [anon_sym_do] = ACTIONS(5199), - [anon_sym_if] = ACTIONS(5199), - [anon_sym_match] = ACTIONS(5199), - [anon_sym_LBRACE] = ACTIONS(5199), - [anon_sym_DOT_DOT] = ACTIONS(5199), - [anon_sym_try] = ACTIONS(5199), - [anon_sym_return] = ACTIONS(5199), - [anon_sym_source] = ACTIONS(5199), - [anon_sym_source_DASHenv] = ACTIONS(5199), - [anon_sym_register] = ACTIONS(5199), - [anon_sym_hide] = ACTIONS(5199), - [anon_sym_hide_DASHenv] = ACTIONS(5199), - [anon_sym_overlay] = ACTIONS(5199), - [anon_sym_as] = ACTIONS(5199), - [anon_sym_where] = ACTIONS(5199), - [anon_sym_not] = ACTIONS(5199), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5199), - [anon_sym_DOT_DOT_LT] = ACTIONS(5199), - [anon_sym_null] = ACTIONS(5199), - [anon_sym_true] = ACTIONS(5199), - [anon_sym_false] = ACTIONS(5199), - [aux_sym__val_number_decimal_token1] = ACTIONS(5199), - [aux_sym__val_number_decimal_token2] = ACTIONS(5199), - [anon_sym_DOT2] = ACTIONS(5199), - [aux_sym__val_number_decimal_token3] = ACTIONS(5199), - [aux_sym__val_number_token1] = ACTIONS(5199), - [aux_sym__val_number_token2] = ACTIONS(5199), - [aux_sym__val_number_token3] = ACTIONS(5199), - [aux_sym__val_number_token4] = ACTIONS(5199), - [aux_sym__val_number_token5] = ACTIONS(5199), - [aux_sym__val_number_token6] = ACTIONS(5199), - [anon_sym_0b] = ACTIONS(5199), - [anon_sym_0o] = ACTIONS(5199), - [anon_sym_0x] = ACTIONS(5199), - [sym_val_date] = ACTIONS(5199), - [anon_sym_DQUOTE] = ACTIONS(5199), - [sym__str_single_quotes] = ACTIONS(5199), - [sym__str_back_ticks] = ACTIONS(5199), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5199), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5199), - [anon_sym_CARET] = ACTIONS(5199), - [anon_sym_POUND] = ACTIONS(113), - }, - [2546] = { - [sym_comment] = STATE(2546), - [ts_builtin_sym_end] = ACTIONS(5205), - [anon_sym_export] = ACTIONS(5203), - [anon_sym_alias] = ACTIONS(5203), - [anon_sym_let] = ACTIONS(5203), - [anon_sym_let_DASHenv] = ACTIONS(5203), - [anon_sym_mut] = ACTIONS(5203), - [anon_sym_const] = ACTIONS(5203), - [anon_sym_SEMI] = ACTIONS(5203), - [sym_cmd_identifier] = ACTIONS(5203), - [anon_sym_LF] = ACTIONS(5205), - [anon_sym_def] = ACTIONS(5203), - [anon_sym_export_DASHenv] = ACTIONS(5203), - [anon_sym_extern] = ACTIONS(5203), - [anon_sym_module] = ACTIONS(5203), - [anon_sym_use] = ACTIONS(5203), - [anon_sym_LBRACK] = ACTIONS(5203), - [anon_sym_LPAREN] = ACTIONS(5203), - [anon_sym_DOLLAR] = ACTIONS(5203), - [anon_sym_error] = ACTIONS(5203), - [anon_sym_DASH_DASH] = ACTIONS(5203), - [anon_sym_DASH] = ACTIONS(5203), - [anon_sym_break] = ACTIONS(5203), - [anon_sym_continue] = ACTIONS(5203), - [anon_sym_for] = ACTIONS(5203), - [anon_sym_loop] = ACTIONS(5203), - [anon_sym_while] = ACTIONS(5203), - [anon_sym_do] = ACTIONS(5203), - [anon_sym_if] = ACTIONS(5203), - [anon_sym_match] = ACTIONS(5203), - [anon_sym_LBRACE] = ACTIONS(5203), - [anon_sym_DOT_DOT] = ACTIONS(5203), - [anon_sym_try] = ACTIONS(5203), - [anon_sym_return] = ACTIONS(5203), - [anon_sym_source] = ACTIONS(5203), - [anon_sym_source_DASHenv] = ACTIONS(5203), - [anon_sym_register] = ACTIONS(5203), - [anon_sym_hide] = ACTIONS(5203), - [anon_sym_hide_DASHenv] = ACTIONS(5203), - [anon_sym_overlay] = ACTIONS(5203), - [anon_sym_as] = ACTIONS(5203), - [anon_sym_where] = ACTIONS(5203), - [anon_sym_not] = ACTIONS(5203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5203), - [anon_sym_DOT_DOT_LT] = ACTIONS(5203), - [anon_sym_null] = ACTIONS(5203), - [anon_sym_true] = ACTIONS(5203), - [anon_sym_false] = ACTIONS(5203), - [aux_sym__val_number_decimal_token1] = ACTIONS(5203), - [aux_sym__val_number_decimal_token2] = ACTIONS(5203), - [anon_sym_DOT2] = ACTIONS(5203), - [aux_sym__val_number_decimal_token3] = ACTIONS(5203), - [aux_sym__val_number_token1] = ACTIONS(5203), - [aux_sym__val_number_token2] = ACTIONS(5203), - [aux_sym__val_number_token3] = ACTIONS(5203), - [aux_sym__val_number_token4] = ACTIONS(5203), - [aux_sym__val_number_token5] = ACTIONS(5203), - [aux_sym__val_number_token6] = ACTIONS(5203), - [anon_sym_0b] = ACTIONS(5203), - [anon_sym_0o] = ACTIONS(5203), - [anon_sym_0x] = ACTIONS(5203), - [sym_val_date] = ACTIONS(5203), - [anon_sym_DQUOTE] = ACTIONS(5203), - [sym__str_single_quotes] = ACTIONS(5203), - [sym__str_back_ticks] = ACTIONS(5203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5203), - [anon_sym_CARET] = ACTIONS(5203), - [anon_sym_POUND] = ACTIONS(113), - }, - [2547] = { - [sym_comment] = STATE(2547), - [ts_builtin_sym_end] = ACTIONS(5209), - [anon_sym_export] = ACTIONS(5207), - [anon_sym_alias] = ACTIONS(5207), - [anon_sym_let] = ACTIONS(5207), - [anon_sym_let_DASHenv] = ACTIONS(5207), - [anon_sym_mut] = ACTIONS(5207), - [anon_sym_const] = ACTIONS(5207), - [anon_sym_SEMI] = ACTIONS(5207), - [sym_cmd_identifier] = ACTIONS(5207), - [anon_sym_LF] = ACTIONS(5209), - [anon_sym_def] = ACTIONS(5207), - [anon_sym_export_DASHenv] = ACTIONS(5207), - [anon_sym_extern] = ACTIONS(5207), - [anon_sym_module] = ACTIONS(5207), - [anon_sym_use] = ACTIONS(5207), - [anon_sym_LBRACK] = ACTIONS(5207), - [anon_sym_LPAREN] = ACTIONS(5207), - [anon_sym_DOLLAR] = ACTIONS(5207), - [anon_sym_error] = ACTIONS(5207), - [anon_sym_DASH_DASH] = ACTIONS(5207), - [anon_sym_DASH] = ACTIONS(5207), - [anon_sym_break] = ACTIONS(5207), - [anon_sym_continue] = ACTIONS(5207), - [anon_sym_for] = ACTIONS(5207), - [anon_sym_loop] = ACTIONS(5207), - [anon_sym_while] = ACTIONS(5207), - [anon_sym_do] = ACTIONS(5207), - [anon_sym_if] = ACTIONS(5207), - [anon_sym_match] = ACTIONS(5207), - [anon_sym_LBRACE] = ACTIONS(5207), - [anon_sym_DOT_DOT] = ACTIONS(5207), - [anon_sym_try] = ACTIONS(5207), - [anon_sym_return] = ACTIONS(5207), - [anon_sym_source] = ACTIONS(5207), - [anon_sym_source_DASHenv] = ACTIONS(5207), - [anon_sym_register] = ACTIONS(5207), - [anon_sym_hide] = ACTIONS(5207), - [anon_sym_hide_DASHenv] = ACTIONS(5207), - [anon_sym_overlay] = ACTIONS(5207), - [anon_sym_as] = ACTIONS(5207), - [anon_sym_where] = ACTIONS(5207), - [anon_sym_not] = ACTIONS(5207), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5207), - [anon_sym_DOT_DOT_LT] = ACTIONS(5207), - [anon_sym_null] = ACTIONS(5207), - [anon_sym_true] = ACTIONS(5207), - [anon_sym_false] = ACTIONS(5207), - [aux_sym__val_number_decimal_token1] = ACTIONS(5207), - [aux_sym__val_number_decimal_token2] = ACTIONS(5207), - [anon_sym_DOT2] = ACTIONS(5207), - [aux_sym__val_number_decimal_token3] = ACTIONS(5207), - [aux_sym__val_number_token1] = ACTIONS(5207), - [aux_sym__val_number_token2] = ACTIONS(5207), - [aux_sym__val_number_token3] = ACTIONS(5207), - [aux_sym__val_number_token4] = ACTIONS(5207), - [aux_sym__val_number_token5] = ACTIONS(5207), - [aux_sym__val_number_token6] = ACTIONS(5207), - [anon_sym_0b] = ACTIONS(5207), - [anon_sym_0o] = ACTIONS(5207), - [anon_sym_0x] = ACTIONS(5207), - [sym_val_date] = ACTIONS(5207), - [anon_sym_DQUOTE] = ACTIONS(5207), - [sym__str_single_quotes] = ACTIONS(5207), - [sym__str_back_ticks] = ACTIONS(5207), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5207), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5207), - [anon_sym_CARET] = ACTIONS(5207), - [anon_sym_POUND] = ACTIONS(113), - }, - [2548] = { - [sym_comment] = STATE(2548), - [ts_builtin_sym_end] = ACTIONS(5213), - [anon_sym_export] = ACTIONS(5211), - [anon_sym_alias] = ACTIONS(5211), - [anon_sym_let] = ACTIONS(5211), - [anon_sym_let_DASHenv] = ACTIONS(5211), - [anon_sym_mut] = ACTIONS(5211), - [anon_sym_const] = ACTIONS(5211), - [anon_sym_SEMI] = ACTIONS(5211), - [sym_cmd_identifier] = ACTIONS(5211), - [anon_sym_LF] = ACTIONS(5213), - [anon_sym_def] = ACTIONS(5211), - [anon_sym_export_DASHenv] = ACTIONS(5211), - [anon_sym_extern] = ACTIONS(5211), - [anon_sym_module] = ACTIONS(5211), - [anon_sym_use] = ACTIONS(5211), - [anon_sym_LBRACK] = ACTIONS(5211), - [anon_sym_LPAREN] = ACTIONS(5211), - [anon_sym_DOLLAR] = ACTIONS(5211), - [anon_sym_error] = ACTIONS(5211), - [anon_sym_DASH_DASH] = ACTIONS(5211), - [anon_sym_DASH] = ACTIONS(5211), - [anon_sym_break] = ACTIONS(5211), - [anon_sym_continue] = ACTIONS(5211), - [anon_sym_for] = ACTIONS(5211), - [anon_sym_loop] = ACTIONS(5211), - [anon_sym_while] = ACTIONS(5211), - [anon_sym_do] = ACTIONS(5211), - [anon_sym_if] = ACTIONS(5211), - [anon_sym_match] = ACTIONS(5211), - [anon_sym_LBRACE] = ACTIONS(5211), - [anon_sym_DOT_DOT] = ACTIONS(5211), - [anon_sym_try] = ACTIONS(5211), - [anon_sym_return] = ACTIONS(5211), - [anon_sym_source] = ACTIONS(5211), - [anon_sym_source_DASHenv] = ACTIONS(5211), - [anon_sym_register] = ACTIONS(5211), - [anon_sym_hide] = ACTIONS(5211), - [anon_sym_hide_DASHenv] = ACTIONS(5211), - [anon_sym_overlay] = ACTIONS(5211), - [anon_sym_as] = ACTIONS(5211), - [anon_sym_where] = ACTIONS(5211), - [anon_sym_not] = ACTIONS(5211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5211), - [anon_sym_DOT_DOT_LT] = ACTIONS(5211), - [anon_sym_null] = ACTIONS(5211), - [anon_sym_true] = ACTIONS(5211), - [anon_sym_false] = ACTIONS(5211), - [aux_sym__val_number_decimal_token1] = ACTIONS(5211), - [aux_sym__val_number_decimal_token2] = ACTIONS(5211), - [anon_sym_DOT2] = ACTIONS(5211), - [aux_sym__val_number_decimal_token3] = ACTIONS(5211), - [aux_sym__val_number_token1] = ACTIONS(5211), - [aux_sym__val_number_token2] = ACTIONS(5211), - [aux_sym__val_number_token3] = ACTIONS(5211), - [aux_sym__val_number_token4] = ACTIONS(5211), - [aux_sym__val_number_token5] = ACTIONS(5211), - [aux_sym__val_number_token6] = ACTIONS(5211), - [anon_sym_0b] = ACTIONS(5211), - [anon_sym_0o] = ACTIONS(5211), - [anon_sym_0x] = ACTIONS(5211), - [sym_val_date] = ACTIONS(5211), - [anon_sym_DQUOTE] = ACTIONS(5211), - [sym__str_single_quotes] = ACTIONS(5211), - [sym__str_back_ticks] = ACTIONS(5211), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5211), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5211), - [anon_sym_CARET] = ACTIONS(5211), - [anon_sym_POUND] = ACTIONS(113), - }, - [2549] = { - [sym_comment] = STATE(2549), - [anon_sym_LBRACK] = ACTIONS(1196), - [anon_sym_COMMA] = ACTIONS(1196), - [anon_sym_LPAREN] = ACTIONS(1196), - [anon_sym_DOLLAR] = ACTIONS(1196), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_in] = ACTIONS(1198), - [anon_sym_LBRACE] = ACTIONS(1196), - [anon_sym_RBRACE] = ACTIONS(1196), - [anon_sym__] = ACTIONS(1194), - [anon_sym_DOT_DOT] = ACTIONS(1194), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_STAR_STAR] = ACTIONS(1366), - [anon_sym_PLUS_PLUS] = ACTIONS(1366), - [anon_sym_SLASH] = ACTIONS(1198), - [anon_sym_mod] = ACTIONS(1366), - [anon_sym_SLASH_SLASH] = ACTIONS(1366), - [anon_sym_PLUS] = ACTIONS(1198), - [anon_sym_bit_DASHshl] = ACTIONS(1366), - [anon_sym_bit_DASHshr] = ACTIONS(1366), - [anon_sym_EQ_EQ] = ACTIONS(1366), - [anon_sym_BANG_EQ] = ACTIONS(1366), - [anon_sym_LT2] = ACTIONS(1198), - [anon_sym_LT_EQ] = ACTIONS(1366), - [anon_sym_GT_EQ] = ACTIONS(1366), - [anon_sym_not_DASHin] = ACTIONS(1366), - [anon_sym_starts_DASHwith] = ACTIONS(1366), - [anon_sym_ends_DASHwith] = ACTIONS(1366), - [anon_sym_EQ_TILDE] = ACTIONS(1366), - [anon_sym_BANG_TILDE] = ACTIONS(1366), - [anon_sym_bit_DASHand] = ACTIONS(1366), - [anon_sym_bit_DASHxor] = ACTIONS(1366), - [anon_sym_bit_DASHor] = ACTIONS(1366), - [anon_sym_and] = ACTIONS(1366), - [anon_sym_xor] = ACTIONS(1366), - [anon_sym_or] = ACTIONS(1366), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1196), - [anon_sym_DOT_DOT_LT] = ACTIONS(1196), - [anon_sym_null] = ACTIONS(1196), - [anon_sym_true] = ACTIONS(1196), - [anon_sym_false] = ACTIONS(1196), - [aux_sym__val_number_decimal_token1] = ACTIONS(1194), - [aux_sym__val_number_decimal_token2] = ACTIONS(1196), - [anon_sym_DOT2] = ACTIONS(1194), - [aux_sym__val_number_decimal_token3] = ACTIONS(1196), - [aux_sym__val_number_token1] = ACTIONS(1196), - [aux_sym__val_number_token2] = ACTIONS(1196), - [aux_sym__val_number_token3] = ACTIONS(1196), - [aux_sym__val_number_token4] = ACTIONS(1196), - [aux_sym__val_number_token5] = ACTIONS(1196), - [aux_sym__val_number_token6] = ACTIONS(1196), - [anon_sym_0b] = ACTIONS(1194), - [anon_sym_0o] = ACTIONS(1194), - [anon_sym_0x] = ACTIONS(1194), - [sym_val_date] = ACTIONS(1196), - [anon_sym_DQUOTE] = ACTIONS(1196), - [sym__str_single_quotes] = ACTIONS(1196), - [sym__str_back_ticks] = ACTIONS(1196), - [anon_sym_err_GT] = ACTIONS(1196), - [anon_sym_out_GT] = ACTIONS(1196), - [anon_sym_e_GT] = ACTIONS(1196), - [anon_sym_o_GT] = ACTIONS(1196), - [anon_sym_err_PLUSout_GT] = ACTIONS(1196), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1196), - [anon_sym_o_PLUSe_GT] = ACTIONS(1196), - [anon_sym_e_PLUSo_GT] = ACTIONS(1196), - [aux_sym_unquoted_token1] = ACTIONS(1194), - [anon_sym_POUND] = ACTIONS(3), - }, - [2550] = { - [sym_comment] = STATE(2550), - [anon_sym_LBRACK] = ACTIONS(1356), - [anon_sym_COMMA] = ACTIONS(1356), - [anon_sym_LPAREN] = ACTIONS(1356), - [anon_sym_DOLLAR] = ACTIONS(1356), - [anon_sym_GT] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_in] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1356), - [anon_sym_RBRACE] = ACTIONS(1356), - [anon_sym__] = ACTIONS(1354), - [anon_sym_DOT_DOT] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_STAR_STAR] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(1354), - [anon_sym_mod] = ACTIONS(1356), - [anon_sym_SLASH_SLASH] = ACTIONS(1356), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_bit_DASHshl] = ACTIONS(1356), - [anon_sym_bit_DASHshr] = ACTIONS(1356), - [anon_sym_EQ_EQ] = ACTIONS(1356), - [anon_sym_BANG_EQ] = ACTIONS(1356), - [anon_sym_LT2] = ACTIONS(1354), - [anon_sym_LT_EQ] = ACTIONS(1356), - [anon_sym_GT_EQ] = ACTIONS(1356), - [anon_sym_not_DASHin] = ACTIONS(1356), - [anon_sym_starts_DASHwith] = ACTIONS(1356), - [anon_sym_ends_DASHwith] = ACTIONS(1356), - [anon_sym_EQ_TILDE] = ACTIONS(1356), - [anon_sym_BANG_TILDE] = ACTIONS(1356), - [anon_sym_bit_DASHand] = ACTIONS(1356), - [anon_sym_bit_DASHxor] = ACTIONS(1356), - [anon_sym_bit_DASHor] = ACTIONS(1356), - [anon_sym_and] = ACTIONS(1356), - [anon_sym_xor] = ACTIONS(1356), - [anon_sym_or] = ACTIONS(1356), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1356), - [anon_sym_DOT_DOT_LT] = ACTIONS(1356), - [anon_sym_null] = ACTIONS(1356), - [anon_sym_true] = ACTIONS(1356), - [anon_sym_false] = ACTIONS(1356), - [aux_sym__val_number_decimal_token1] = ACTIONS(1354), - [aux_sym__val_number_decimal_token2] = ACTIONS(1356), - [anon_sym_DOT2] = ACTIONS(1354), - [aux_sym__val_number_decimal_token3] = ACTIONS(1356), - [aux_sym__val_number_token1] = ACTIONS(1356), - [aux_sym__val_number_token2] = ACTIONS(1356), - [aux_sym__val_number_token3] = ACTIONS(1356), - [aux_sym__val_number_token4] = ACTIONS(1356), - [aux_sym__val_number_token5] = ACTIONS(1356), - [aux_sym__val_number_token6] = ACTIONS(1356), - [anon_sym_0b] = ACTIONS(1354), - [anon_sym_0o] = ACTIONS(1354), - [anon_sym_0x] = ACTIONS(1354), - [sym_val_date] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1356), - [sym__str_single_quotes] = ACTIONS(1356), - [sym__str_back_ticks] = ACTIONS(1356), - [anon_sym_err_GT] = ACTIONS(1356), - [anon_sym_out_GT] = ACTIONS(1356), - [anon_sym_e_GT] = ACTIONS(1356), - [anon_sym_o_GT] = ACTIONS(1356), - [anon_sym_err_PLUSout_GT] = ACTIONS(1356), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1356), - [anon_sym_o_PLUSe_GT] = ACTIONS(1356), - [anon_sym_e_PLUSo_GT] = ACTIONS(1356), - [aux_sym_unquoted_token1] = ACTIONS(1354), - [anon_sym_POUND] = ACTIONS(3), - }, - [2551] = { - [sym_expr_parenthesized] = STATE(11210), - [sym_val_variable] = STATE(11210), - [sym__var] = STATE(7440), - [sym_val_number] = STATE(11210), - [sym__val_number_decimal] = STATE(5414), - [sym__val_number] = STATE(5463), - [sym_val_string] = STATE(11210), - [sym__str_double_quotes] = STATE(7019), - [sym_record_body] = STATE(11015), - [sym_record_entry] = STATE(10592), - [sym__record_key] = STATE(11197), - [sym_comment] = STATE(2551), - [aux_sym_record_body_repeat1] = STATE(2896), - [anon_sym_export] = ACTIONS(255), - [anon_sym_alias] = ACTIONS(255), - [anon_sym_let] = ACTIONS(255), - [anon_sym_let_DASHenv] = ACTIONS(255), - [anon_sym_mut] = ACTIONS(255), - [anon_sym_const] = ACTIONS(255), - [sym_cmd_identifier] = ACTIONS(255), - [anon_sym_def] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(255), - [anon_sym_extern] = ACTIONS(255), - [anon_sym_module] = ACTIONS(255), - [anon_sym_use] = ACTIONS(255), - [anon_sym_LPAREN] = ACTIONS(6093), - [anon_sym_DOLLAR] = ACTIONS(6247), - [anon_sym_error] = ACTIONS(255), - [anon_sym_list] = ACTIONS(255), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_break] = ACTIONS(255), - [anon_sym_continue] = ACTIONS(255), - [anon_sym_for] = ACTIONS(255), - [anon_sym_in] = ACTIONS(255), - [anon_sym_loop] = ACTIONS(255), - [anon_sym_make] = ACTIONS(255), - [anon_sym_while] = ACTIONS(255), - [anon_sym_do] = ACTIONS(255), - [anon_sym_if] = ACTIONS(255), - [anon_sym_else] = ACTIONS(255), - [anon_sym_match] = ACTIONS(255), - [anon_sym_RBRACE] = ACTIONS(6291), - [anon_sym_try] = ACTIONS(255), - [anon_sym_catch] = ACTIONS(255), - [anon_sym_return] = ACTIONS(255), - [anon_sym_source] = ACTIONS(255), - [anon_sym_source_DASHenv] = ACTIONS(255), - [anon_sym_register] = ACTIONS(255), - [anon_sym_hide] = ACTIONS(255), - [anon_sym_hide_DASHenv] = ACTIONS(255), - [anon_sym_overlay] = ACTIONS(255), - [anon_sym_new] = ACTIONS(255), - [anon_sym_as] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(189), - [aux_sym__val_number_decimal_token1] = ACTIONS(6099), - [aux_sym__val_number_decimal_token2] = ACTIONS(6101), - [anon_sym_DOT2] = ACTIONS(6103), - [aux_sym__val_number_decimal_token3] = ACTIONS(6105), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(6107), - [aux_sym__val_number_token5] = ACTIONS(2714), - [aux_sym__val_number_token6] = ACTIONS(6107), - [anon_sym_DQUOTE] = ACTIONS(2724), - [sym__str_single_quotes] = ACTIONS(2726), - [sym__str_back_ticks] = ACTIONS(2726), - [aux_sym__record_key_token2] = ACTIONS(225), - [anon_sym_POUND] = ACTIONS(3), - }, - [2552] = { - [sym__expression] = STATE(7616), - [sym_expr_unary] = STATE(6196), - [sym__expr_unary_minus] = STATE(6200), - [sym_expr_binary] = STATE(6196), - [sym__expr_binary_expression] = STATE(6783), - [sym_expr_parenthesized] = STATE(5434), - [sym_val_range] = STATE(8689), - [sym__value] = STATE(6196), - [sym_val_nothing] = STATE(6059), - [sym_val_bool] = STATE(6059), - [sym_val_variable] = STATE(5445), - [sym__var] = STATE(4804), - [sym_val_number] = STATE(6059), - [sym__val_number_decimal] = STATE(4923), - [sym__val_number] = STATE(6097), - [sym_val_duration] = STATE(6059), - [sym_val_filesize] = STATE(6059), - [sym_val_binary] = STATE(6059), - [sym_val_string] = STATE(6059), - [sym__str_double_quotes] = STATE(6144), - [sym_val_interpolated] = STATE(6059), - [sym__inter_single_quotes] = STATE(6158), - [sym__inter_double_quotes] = STATE(6159), - [sym_val_list] = STATE(6059), - [sym_val_record] = STATE(6059), - [sym_val_table] = STATE(6059), - [sym_val_closure] = STATE(6059), - [sym__flag] = STATE(2554), - [sym_short_flag] = STATE(5303), - [sym_long_flag] = STATE(5303), - [sym_long_flag_equals_value] = STATE(5400), - [sym_comment] = STATE(2552), - [ts_builtin_sym_end] = ACTIONS(5369), - [anon_sym_SEMI] = ACTIONS(5367), - [anon_sym_LF] = ACTIONS(5369), - [anon_sym_LBRACK] = ACTIONS(6053), - [anon_sym_LPAREN] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(5367), - [anon_sym_DOLLAR] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(6057), - [anon_sym_DASH] = ACTIONS(6059), - [anon_sym_LBRACE] = ACTIONS(6061), - [anon_sym_DOT_DOT] = ACTIONS(6063), - [anon_sym_not] = ACTIONS(6065), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6067), - [anon_sym_DOT_DOT_LT] = ACTIONS(6067), - [anon_sym_null] = ACTIONS(6069), - [anon_sym_true] = ACTIONS(6071), - [anon_sym_false] = ACTIONS(6071), - [aux_sym__val_number_decimal_token1] = ACTIONS(6073), - [aux_sym__val_number_decimal_token2] = ACTIONS(6073), - [anon_sym_DOT2] = ACTIONS(6075), - [aux_sym__val_number_decimal_token3] = ACTIONS(6077), - [aux_sym__val_number_token1] = ACTIONS(6079), - [aux_sym__val_number_token2] = ACTIONS(6079), - [aux_sym__val_number_token3] = ACTIONS(6079), - [aux_sym__val_number_token4] = ACTIONS(6079), - [aux_sym__val_number_token5] = ACTIONS(6079), - [aux_sym__val_number_token6] = ACTIONS(6079), - [anon_sym_0b] = ACTIONS(2953), - [anon_sym_0o] = ACTIONS(2955), - [anon_sym_0x] = ACTIONS(2955), - [sym_val_date] = ACTIONS(6081), - [anon_sym_DQUOTE] = ACTIONS(6083), - [sym__str_single_quotes] = ACTIONS(6085), - [sym__str_back_ticks] = ACTIONS(6085), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6087), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6089), - [anon_sym_POUND] = ACTIONS(113), - }, - [2553] = { - [sym_comment] = STATE(2553), - [anon_sym_LBRACK] = ACTIONS(1360), - [anon_sym_COMMA] = ACTIONS(1360), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_DOLLAR] = ACTIONS(1360), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_in] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_RBRACE] = ACTIONS(1360), - [anon_sym__] = ACTIONS(1358), - [anon_sym_DOT_DOT] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_STAR_STAR] = ACTIONS(1360), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_SLASH] = ACTIONS(1358), - [anon_sym_mod] = ACTIONS(1360), - [anon_sym_SLASH_SLASH] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_bit_DASHshl] = ACTIONS(1360), - [anon_sym_bit_DASHshr] = ACTIONS(1360), - [anon_sym_EQ_EQ] = ACTIONS(1360), - [anon_sym_BANG_EQ] = ACTIONS(1360), - [anon_sym_LT2] = ACTIONS(1358), - [anon_sym_LT_EQ] = ACTIONS(1360), - [anon_sym_GT_EQ] = ACTIONS(1360), - [anon_sym_not_DASHin] = ACTIONS(1360), - [anon_sym_starts_DASHwith] = ACTIONS(1360), - [anon_sym_ends_DASHwith] = ACTIONS(1360), - [anon_sym_EQ_TILDE] = ACTIONS(1360), - [anon_sym_BANG_TILDE] = ACTIONS(1360), - [anon_sym_bit_DASHand] = ACTIONS(1360), - [anon_sym_bit_DASHxor] = ACTIONS(1360), - [anon_sym_bit_DASHor] = ACTIONS(1360), - [anon_sym_and] = ACTIONS(1360), - [anon_sym_xor] = ACTIONS(1360), - [anon_sym_or] = ACTIONS(1360), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1360), - [anon_sym_DOT_DOT_LT] = ACTIONS(1360), - [anon_sym_null] = ACTIONS(1360), - [anon_sym_true] = ACTIONS(1360), - [anon_sym_false] = ACTIONS(1360), - [aux_sym__val_number_decimal_token1] = ACTIONS(1358), - [aux_sym__val_number_decimal_token2] = ACTIONS(1360), - [anon_sym_DOT2] = ACTIONS(1358), - [aux_sym__val_number_decimal_token3] = ACTIONS(1360), - [aux_sym__val_number_token1] = ACTIONS(1360), - [aux_sym__val_number_token2] = ACTIONS(1360), - [aux_sym__val_number_token3] = ACTIONS(1360), - [aux_sym__val_number_token4] = ACTIONS(1360), - [aux_sym__val_number_token5] = ACTIONS(1360), - [aux_sym__val_number_token6] = ACTIONS(1360), - [anon_sym_0b] = ACTIONS(1358), - [anon_sym_0o] = ACTIONS(1358), - [anon_sym_0x] = ACTIONS(1358), - [sym_val_date] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1360), - [sym__str_single_quotes] = ACTIONS(1360), - [sym__str_back_ticks] = ACTIONS(1360), - [anon_sym_err_GT] = ACTIONS(1360), - [anon_sym_out_GT] = ACTIONS(1360), - [anon_sym_e_GT] = ACTIONS(1360), - [anon_sym_o_GT] = ACTIONS(1360), - [anon_sym_err_PLUSout_GT] = ACTIONS(1360), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1360), - [anon_sym_o_PLUSe_GT] = ACTIONS(1360), - [anon_sym_e_PLUSo_GT] = ACTIONS(1360), - [aux_sym_unquoted_token1] = ACTIONS(1358), - [anon_sym_POUND] = ACTIONS(3), - }, - [2554] = { - [sym__expression] = STATE(7684), - [sym_expr_unary] = STATE(6196), - [sym__expr_unary_minus] = STATE(6200), - [sym_expr_binary] = STATE(6196), - [sym__expr_binary_expression] = STATE(6783), - [sym_expr_parenthesized] = STATE(5434), - [sym_val_range] = STATE(8689), - [sym__value] = STATE(6196), - [sym_val_nothing] = STATE(6059), - [sym_val_bool] = STATE(6059), - [sym_val_variable] = STATE(5445), - [sym__var] = STATE(4804), - [sym_val_number] = STATE(6059), - [sym__val_number_decimal] = STATE(4923), - [sym__val_number] = STATE(6097), - [sym_val_duration] = STATE(6059), - [sym_val_filesize] = STATE(6059), - [sym_val_binary] = STATE(6059), - [sym_val_string] = STATE(6059), - [sym__str_double_quotes] = STATE(6144), - [sym_val_interpolated] = STATE(6059), - [sym__inter_single_quotes] = STATE(6158), - [sym__inter_double_quotes] = STATE(6159), - [sym_val_list] = STATE(6059), - [sym_val_record] = STATE(6059), - [sym_val_table] = STATE(6059), - [sym_val_closure] = STATE(6059), - [sym__flag] = STATE(2628), - [sym_short_flag] = STATE(5303), - [sym_long_flag] = STATE(5303), - [sym_long_flag_equals_value] = STATE(5400), - [sym_comment] = STATE(2554), - [ts_builtin_sym_end] = ACTIONS(5425), - [anon_sym_SEMI] = ACTIONS(5423), - [anon_sym_LF] = ACTIONS(5425), - [anon_sym_LBRACK] = ACTIONS(6053), - [anon_sym_LPAREN] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(5423), - [anon_sym_DOLLAR] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(6057), - [anon_sym_DASH] = ACTIONS(6059), - [anon_sym_LBRACE] = ACTIONS(6061), - [anon_sym_DOT_DOT] = ACTIONS(6063), - [anon_sym_not] = ACTIONS(6065), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6067), - [anon_sym_DOT_DOT_LT] = ACTIONS(6067), - [anon_sym_null] = ACTIONS(6069), - [anon_sym_true] = ACTIONS(6071), - [anon_sym_false] = ACTIONS(6071), - [aux_sym__val_number_decimal_token1] = ACTIONS(6073), - [aux_sym__val_number_decimal_token2] = ACTIONS(6073), - [anon_sym_DOT2] = ACTIONS(6075), - [aux_sym__val_number_decimal_token3] = ACTIONS(6077), - [aux_sym__val_number_token1] = ACTIONS(6079), - [aux_sym__val_number_token2] = ACTIONS(6079), - [aux_sym__val_number_token3] = ACTIONS(6079), - [aux_sym__val_number_token4] = ACTIONS(6079), - [aux_sym__val_number_token5] = ACTIONS(6079), - [aux_sym__val_number_token6] = ACTIONS(6079), - [anon_sym_0b] = ACTIONS(2953), - [anon_sym_0o] = ACTIONS(2955), - [anon_sym_0x] = ACTIONS(2955), - [sym_val_date] = ACTIONS(6081), - [anon_sym_DQUOTE] = ACTIONS(6083), - [sym__str_single_quotes] = ACTIONS(6085), - [sym__str_back_ticks] = ACTIONS(6085), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6087), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6089), - [anon_sym_POUND] = ACTIONS(113), - }, - [2555] = { - [sym__expression] = STATE(7684), - [sym_expr_unary] = STATE(6196), - [sym__expr_unary_minus] = STATE(6200), - [sym_expr_binary] = STATE(6196), - [sym__expr_binary_expression] = STATE(6783), - [sym_expr_parenthesized] = STATE(5434), - [sym_val_range] = STATE(8689), - [sym__value] = STATE(6196), - [sym_val_nothing] = STATE(6059), - [sym_val_bool] = STATE(6059), - [sym_val_variable] = STATE(5445), - [sym__var] = STATE(4804), - [sym_val_number] = STATE(6059), - [sym__val_number_decimal] = STATE(4923), - [sym__val_number] = STATE(6097), - [sym_val_duration] = STATE(6059), - [sym_val_filesize] = STATE(6059), - [sym_val_binary] = STATE(6059), - [sym_val_string] = STATE(6059), - [sym__str_double_quotes] = STATE(6144), - [sym_val_interpolated] = STATE(6059), - [sym__inter_single_quotes] = STATE(6158), - [sym__inter_double_quotes] = STATE(6159), - [sym_val_list] = STATE(6059), - [sym_val_record] = STATE(6059), - [sym_val_table] = STATE(6059), - [sym_val_closure] = STATE(6059), - [sym__flag] = STATE(2629), - [sym_short_flag] = STATE(5303), - [sym_long_flag] = STATE(5303), - [sym_long_flag_equals_value] = STATE(5400), - [sym_comment] = STATE(2555), - [ts_builtin_sym_end] = ACTIONS(5425), - [anon_sym_SEMI] = ACTIONS(5423), - [anon_sym_LF] = ACTIONS(5425), - [anon_sym_LBRACK] = ACTIONS(6053), - [anon_sym_LPAREN] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(5423), - [anon_sym_DOLLAR] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(6057), - [anon_sym_DASH] = ACTIONS(6059), - [anon_sym_LBRACE] = ACTIONS(6061), - [anon_sym_DOT_DOT] = ACTIONS(6063), - [anon_sym_not] = ACTIONS(6065), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6067), - [anon_sym_DOT_DOT_LT] = ACTIONS(6067), - [anon_sym_null] = ACTIONS(6069), - [anon_sym_true] = ACTIONS(6071), - [anon_sym_false] = ACTIONS(6071), - [aux_sym__val_number_decimal_token1] = ACTIONS(6073), - [aux_sym__val_number_decimal_token2] = ACTIONS(6073), - [anon_sym_DOT2] = ACTIONS(6075), - [aux_sym__val_number_decimal_token3] = ACTIONS(6077), - [aux_sym__val_number_token1] = ACTIONS(6079), - [aux_sym__val_number_token2] = ACTIONS(6079), - [aux_sym__val_number_token3] = ACTIONS(6079), - [aux_sym__val_number_token4] = ACTIONS(6079), - [aux_sym__val_number_token5] = ACTIONS(6079), - [aux_sym__val_number_token6] = ACTIONS(6079), - [anon_sym_0b] = ACTIONS(2953), - [anon_sym_0o] = ACTIONS(2955), - [anon_sym_0x] = ACTIONS(2955), - [sym_val_date] = ACTIONS(6081), - [anon_sym_DQUOTE] = ACTIONS(6083), - [sym__str_single_quotes] = ACTIONS(6085), - [sym__str_back_ticks] = ACTIONS(6085), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6087), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6089), - [anon_sym_POUND] = ACTIONS(113), - }, - [2556] = { - [sym_comment] = STATE(2556), - [anon_sym_LBRACK] = ACTIONS(1366), - [anon_sym_COMMA] = ACTIONS(1366), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_DOLLAR] = ACTIONS(1366), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1198), - [anon_sym_in] = ACTIONS(1198), - [anon_sym_LBRACE] = ACTIONS(1366), - [anon_sym_RBRACE] = ACTIONS(1366), - [anon_sym__] = ACTIONS(1198), - [anon_sym_DOT_DOT] = ACTIONS(1198), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_STAR_STAR] = ACTIONS(1366), - [anon_sym_PLUS_PLUS] = ACTIONS(1366), - [anon_sym_SLASH] = ACTIONS(1198), - [anon_sym_mod] = ACTIONS(1366), - [anon_sym_SLASH_SLASH] = ACTIONS(1366), - [anon_sym_PLUS] = ACTIONS(1198), - [anon_sym_bit_DASHshl] = ACTIONS(1366), - [anon_sym_bit_DASHshr] = ACTIONS(1366), - [anon_sym_EQ_EQ] = ACTIONS(1366), - [anon_sym_BANG_EQ] = ACTIONS(1366), - [anon_sym_LT2] = ACTIONS(1198), - [anon_sym_LT_EQ] = ACTIONS(1366), - [anon_sym_GT_EQ] = ACTIONS(1366), - [anon_sym_not_DASHin] = ACTIONS(1366), - [anon_sym_starts_DASHwith] = ACTIONS(1366), - [anon_sym_ends_DASHwith] = ACTIONS(1366), - [anon_sym_EQ_TILDE] = ACTIONS(1366), - [anon_sym_BANG_TILDE] = ACTIONS(1366), - [anon_sym_bit_DASHand] = ACTIONS(1366), - [anon_sym_bit_DASHxor] = ACTIONS(1366), - [anon_sym_bit_DASHor] = ACTIONS(1366), - [anon_sym_and] = ACTIONS(1366), - [anon_sym_xor] = ACTIONS(1366), - [anon_sym_or] = ACTIONS(1366), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1366), - [anon_sym_DOT_DOT_LT] = ACTIONS(1366), - [anon_sym_null] = ACTIONS(1366), - [anon_sym_true] = ACTIONS(1366), - [anon_sym_false] = ACTIONS(1366), - [aux_sym__val_number_decimal_token1] = ACTIONS(1198), - [aux_sym__val_number_decimal_token2] = ACTIONS(1366), - [anon_sym_DOT2] = ACTIONS(1198), - [aux_sym__val_number_decimal_token3] = ACTIONS(1366), - [aux_sym__val_number_token1] = ACTIONS(1366), - [aux_sym__val_number_token2] = ACTIONS(1366), - [aux_sym__val_number_token3] = ACTIONS(1366), - [aux_sym__val_number_token4] = ACTIONS(1366), - [aux_sym__val_number_token5] = ACTIONS(1366), - [aux_sym__val_number_token6] = ACTIONS(1366), - [anon_sym_0b] = ACTIONS(1198), - [anon_sym_0o] = ACTIONS(1198), - [anon_sym_0x] = ACTIONS(1198), - [sym_val_date] = ACTIONS(1366), - [anon_sym_DQUOTE] = ACTIONS(1366), - [sym__str_single_quotes] = ACTIONS(1366), - [sym__str_back_ticks] = ACTIONS(1366), - [anon_sym_err_GT] = ACTIONS(1366), - [anon_sym_out_GT] = ACTIONS(1366), - [anon_sym_e_GT] = ACTIONS(1366), - [anon_sym_o_GT] = ACTIONS(1366), - [anon_sym_err_PLUSout_GT] = ACTIONS(1366), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1366), - [anon_sym_o_PLUSe_GT] = ACTIONS(1366), - [anon_sym_e_PLUSo_GT] = ACTIONS(1366), - [aux_sym_unquoted_token1] = ACTIONS(1198), - [anon_sym_POUND] = ACTIONS(3), - }, - [2557] = { - [sym_comment] = STATE(2557), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_COMMA] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym__] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1370), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1370), - [anon_sym_bit_DASHshr] = ACTIONS(1370), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1370), - [anon_sym_starts_DASHwith] = ACTIONS(1370), - [anon_sym_ends_DASHwith] = ACTIONS(1370), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1370), - [anon_sym_bit_DASHxor] = ACTIONS(1370), - [anon_sym_bit_DASHor] = ACTIONS(1370), - [anon_sym_and] = ACTIONS(1370), - [anon_sym_xor] = ACTIONS(1370), - [anon_sym_or] = ACTIONS(1370), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [aux_sym__val_number_token4] = ACTIONS(1370), - [aux_sym__val_number_token5] = ACTIONS(1370), - [aux_sym__val_number_token6] = ACTIONS(1370), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1370), - [anon_sym_out_GT] = ACTIONS(1370), - [anon_sym_e_GT] = ACTIONS(1370), - [anon_sym_o_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT] = ACTIONS(1370), - [aux_sym_unquoted_token1] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), - }, - [2558] = { - [sym_comment] = STATE(2558), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_COMMA] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym__] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1370), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1370), - [anon_sym_bit_DASHshr] = ACTIONS(1370), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1370), - [anon_sym_starts_DASHwith] = ACTIONS(1370), - [anon_sym_ends_DASHwith] = ACTIONS(1370), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1370), - [anon_sym_bit_DASHxor] = ACTIONS(1370), - [anon_sym_bit_DASHor] = ACTIONS(1370), - [anon_sym_and] = ACTIONS(1370), - [anon_sym_xor] = ACTIONS(1370), - [anon_sym_or] = ACTIONS(1370), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [aux_sym__val_number_token4] = ACTIONS(1370), - [aux_sym__val_number_token5] = ACTIONS(1370), - [aux_sym__val_number_token6] = ACTIONS(1370), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1370), - [anon_sym_out_GT] = ACTIONS(1370), - [anon_sym_e_GT] = ACTIONS(1370), - [anon_sym_o_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT] = ACTIONS(1370), - [aux_sym_unquoted_token1] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), - }, - [2559] = { - [sym_comment] = STATE(2559), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_COMMA] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym__] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1370), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1370), - [anon_sym_bit_DASHshr] = ACTIONS(1370), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1370), - [anon_sym_starts_DASHwith] = ACTIONS(1370), - [anon_sym_ends_DASHwith] = ACTIONS(1370), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1370), - [anon_sym_bit_DASHxor] = ACTIONS(1370), - [anon_sym_bit_DASHor] = ACTIONS(1370), - [anon_sym_and] = ACTIONS(1370), - [anon_sym_xor] = ACTIONS(1370), - [anon_sym_or] = ACTIONS(1370), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [aux_sym__val_number_token4] = ACTIONS(1370), - [aux_sym__val_number_token5] = ACTIONS(1370), - [aux_sym__val_number_token6] = ACTIONS(1370), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1370), - [anon_sym_out_GT] = ACTIONS(1370), - [anon_sym_e_GT] = ACTIONS(1370), - [anon_sym_o_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT] = ACTIONS(1370), - [aux_sym_unquoted_token1] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), - }, - [2560] = { - [sym_comment] = STATE(2560), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_COMMA] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym__] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1370), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1370), - [anon_sym_bit_DASHshr] = ACTIONS(1370), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1370), - [anon_sym_starts_DASHwith] = ACTIONS(1370), - [anon_sym_ends_DASHwith] = ACTIONS(1370), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1370), - [anon_sym_bit_DASHxor] = ACTIONS(1370), - [anon_sym_bit_DASHor] = ACTIONS(1370), - [anon_sym_and] = ACTIONS(1370), - [anon_sym_xor] = ACTIONS(1370), - [anon_sym_or] = ACTIONS(1370), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [aux_sym__val_number_token4] = ACTIONS(1370), - [aux_sym__val_number_token5] = ACTIONS(1370), - [aux_sym__val_number_token6] = ACTIONS(1370), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1370), - [anon_sym_out_GT] = ACTIONS(1370), - [anon_sym_e_GT] = ACTIONS(1370), - [anon_sym_o_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT] = ACTIONS(1370), - [aux_sym_unquoted_token1] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), - }, - [2561] = { - [sym_comment] = STATE(2561), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_COMMA] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym__] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1370), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1370), - [anon_sym_bit_DASHshr] = ACTIONS(1370), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1370), - [anon_sym_starts_DASHwith] = ACTIONS(1370), - [anon_sym_ends_DASHwith] = ACTIONS(1370), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1370), - [anon_sym_bit_DASHxor] = ACTIONS(1370), - [anon_sym_bit_DASHor] = ACTIONS(1370), - [anon_sym_and] = ACTIONS(1370), - [anon_sym_xor] = ACTIONS(1370), - [anon_sym_or] = ACTIONS(1370), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [aux_sym__val_number_token4] = ACTIONS(1370), - [aux_sym__val_number_token5] = ACTIONS(1370), - [aux_sym__val_number_token6] = ACTIONS(1370), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1370), - [anon_sym_out_GT] = ACTIONS(1370), - [anon_sym_e_GT] = ACTIONS(1370), - [anon_sym_o_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT] = ACTIONS(1370), - [aux_sym_unquoted_token1] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), - }, - [2562] = { - [sym_comment] = STATE(2562), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_COMMA] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym__] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1370), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1370), - [anon_sym_bit_DASHshr] = ACTIONS(1370), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1370), - [anon_sym_starts_DASHwith] = ACTIONS(1370), - [anon_sym_ends_DASHwith] = ACTIONS(1370), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1370), - [anon_sym_bit_DASHxor] = ACTIONS(1370), - [anon_sym_bit_DASHor] = ACTIONS(1370), - [anon_sym_and] = ACTIONS(1370), - [anon_sym_xor] = ACTIONS(1370), - [anon_sym_or] = ACTIONS(1370), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [aux_sym__val_number_token4] = ACTIONS(1370), - [aux_sym__val_number_token5] = ACTIONS(1370), - [aux_sym__val_number_token6] = ACTIONS(1370), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1370), - [anon_sym_out_GT] = ACTIONS(1370), - [anon_sym_e_GT] = ACTIONS(1370), - [anon_sym_o_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT] = ACTIONS(1370), - [aux_sym_unquoted_token1] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), - }, - [2563] = { - [sym_comment] = STATE(2563), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_COMMA] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym__] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1370), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1370), - [anon_sym_bit_DASHshr] = ACTIONS(1370), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1370), - [anon_sym_starts_DASHwith] = ACTIONS(1370), - [anon_sym_ends_DASHwith] = ACTIONS(1370), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1370), - [anon_sym_bit_DASHxor] = ACTIONS(1370), - [anon_sym_bit_DASHor] = ACTIONS(1370), - [anon_sym_and] = ACTIONS(1370), - [anon_sym_xor] = ACTIONS(1370), - [anon_sym_or] = ACTIONS(1370), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [aux_sym__val_number_token4] = ACTIONS(1370), - [aux_sym__val_number_token5] = ACTIONS(1370), - [aux_sym__val_number_token6] = ACTIONS(1370), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1370), - [anon_sym_out_GT] = ACTIONS(1370), - [anon_sym_e_GT] = ACTIONS(1370), - [anon_sym_o_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT] = ACTIONS(1370), - [aux_sym_unquoted_token1] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), - }, - [2564] = { - [sym_comment] = STATE(2564), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_COMMA] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym__] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1370), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1370), - [anon_sym_bit_DASHshr] = ACTIONS(1370), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1370), - [anon_sym_starts_DASHwith] = ACTIONS(1370), - [anon_sym_ends_DASHwith] = ACTIONS(1370), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1370), - [anon_sym_bit_DASHxor] = ACTIONS(1370), - [anon_sym_bit_DASHor] = ACTIONS(1370), - [anon_sym_and] = ACTIONS(1370), - [anon_sym_xor] = ACTIONS(1370), - [anon_sym_or] = ACTIONS(1370), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [aux_sym__val_number_token4] = ACTIONS(1370), - [aux_sym__val_number_token5] = ACTIONS(1370), - [aux_sym__val_number_token6] = ACTIONS(1370), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1370), - [anon_sym_out_GT] = ACTIONS(1370), - [anon_sym_e_GT] = ACTIONS(1370), - [anon_sym_o_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT] = ACTIONS(1370), - [aux_sym_unquoted_token1] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), - }, - [2565] = { - [sym_comment] = STATE(2565), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_COMMA] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym__] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1370), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1370), - [anon_sym_bit_DASHshr] = ACTIONS(1370), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1370), - [anon_sym_starts_DASHwith] = ACTIONS(1370), - [anon_sym_ends_DASHwith] = ACTIONS(1370), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1370), - [anon_sym_bit_DASHxor] = ACTIONS(1370), - [anon_sym_bit_DASHor] = ACTIONS(1370), - [anon_sym_and] = ACTIONS(1370), - [anon_sym_xor] = ACTIONS(1370), - [anon_sym_or] = ACTIONS(1370), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [aux_sym__val_number_token4] = ACTIONS(1370), - [aux_sym__val_number_token5] = ACTIONS(1370), - [aux_sym__val_number_token6] = ACTIONS(1370), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1370), - [anon_sym_out_GT] = ACTIONS(1370), - [anon_sym_e_GT] = ACTIONS(1370), - [anon_sym_o_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT] = ACTIONS(1370), - [aux_sym_unquoted_token1] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), - }, - [2566] = { - [sym_comment] = STATE(2566), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_COMMA] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym__] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1370), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1370), - [anon_sym_bit_DASHshr] = ACTIONS(1370), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1370), - [anon_sym_starts_DASHwith] = ACTIONS(1370), - [anon_sym_ends_DASHwith] = ACTIONS(1370), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1370), - [anon_sym_bit_DASHxor] = ACTIONS(1370), - [anon_sym_bit_DASHor] = ACTIONS(1370), - [anon_sym_and] = ACTIONS(1370), - [anon_sym_xor] = ACTIONS(1370), - [anon_sym_or] = ACTIONS(1370), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [aux_sym__val_number_token4] = ACTIONS(1370), - [aux_sym__val_number_token5] = ACTIONS(1370), - [aux_sym__val_number_token6] = ACTIONS(1370), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1370), - [anon_sym_out_GT] = ACTIONS(1370), - [anon_sym_e_GT] = ACTIONS(1370), - [anon_sym_o_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT] = ACTIONS(1370), - [aux_sym_unquoted_token1] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), - }, - [2567] = { - [sym_comment] = STATE(2567), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_COMMA] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym__] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1370), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1370), - [anon_sym_bit_DASHshr] = ACTIONS(1370), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1370), - [anon_sym_starts_DASHwith] = ACTIONS(1370), - [anon_sym_ends_DASHwith] = ACTIONS(1370), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1370), - [anon_sym_bit_DASHxor] = ACTIONS(1370), - [anon_sym_bit_DASHor] = ACTIONS(1370), - [anon_sym_and] = ACTIONS(1370), - [anon_sym_xor] = ACTIONS(1370), - [anon_sym_or] = ACTIONS(1370), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [aux_sym__val_number_token4] = ACTIONS(1370), - [aux_sym__val_number_token5] = ACTIONS(1370), - [aux_sym__val_number_token6] = ACTIONS(1370), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1370), - [anon_sym_out_GT] = ACTIONS(1370), - [anon_sym_e_GT] = ACTIONS(1370), - [anon_sym_o_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT] = ACTIONS(1370), - [aux_sym_unquoted_token1] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), - }, - [2568] = { - [sym_comment] = STATE(2568), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_COMMA] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym__] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1370), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1370), - [anon_sym_bit_DASHshr] = ACTIONS(1370), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1370), - [anon_sym_starts_DASHwith] = ACTIONS(1370), - [anon_sym_ends_DASHwith] = ACTIONS(1370), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1370), - [anon_sym_bit_DASHxor] = ACTIONS(1370), - [anon_sym_bit_DASHor] = ACTIONS(1370), - [anon_sym_and] = ACTIONS(1370), - [anon_sym_xor] = ACTIONS(1370), - [anon_sym_or] = ACTIONS(1370), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [aux_sym__val_number_token4] = ACTIONS(1370), - [aux_sym__val_number_token5] = ACTIONS(1370), - [aux_sym__val_number_token6] = ACTIONS(1370), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1370), - [anon_sym_out_GT] = ACTIONS(1370), - [anon_sym_e_GT] = ACTIONS(1370), - [anon_sym_o_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT] = ACTIONS(1370), - [aux_sym_unquoted_token1] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), - }, - [2569] = { - [sym_comment] = STATE(2569), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_COMMA] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym__] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1370), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1370), - [anon_sym_bit_DASHshr] = ACTIONS(1370), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1370), - [anon_sym_starts_DASHwith] = ACTIONS(1370), - [anon_sym_ends_DASHwith] = ACTIONS(1370), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1370), - [anon_sym_bit_DASHxor] = ACTIONS(1370), - [anon_sym_bit_DASHor] = ACTIONS(1370), - [anon_sym_and] = ACTIONS(1370), - [anon_sym_xor] = ACTIONS(1370), - [anon_sym_or] = ACTIONS(1370), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [aux_sym__val_number_token4] = ACTIONS(1370), - [aux_sym__val_number_token5] = ACTIONS(1370), - [aux_sym__val_number_token6] = ACTIONS(1370), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1370), - [anon_sym_out_GT] = ACTIONS(1370), - [anon_sym_e_GT] = ACTIONS(1370), - [anon_sym_o_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT] = ACTIONS(1370), - [aux_sym_unquoted_token1] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), - }, - [2570] = { - [sym_match_arm] = STATE(4736), - [sym_default_arm] = STATE(11072), - [sym_match_pattern] = STATE(11092), - [sym__match_pattern] = STATE(8841), - [sym__match_pattern_expression] = STATE(10370), - [sym__match_pattern_value] = STATE(10371), - [sym__match_pattern_list] = STATE(10378), - [sym__match_pattern_record] = STATE(10383), - [sym__expr_unary_minus] = STATE(10390), - [sym_expr_parenthesized] = STATE(8527), - [sym_val_range] = STATE(10371), - [sym__val_range] = STATE(10473), - [sym_val_nothing] = STATE(10398), - [sym_val_bool] = STATE(9683), - [sym_val_variable] = STATE(8532), - [sym__var] = STATE(4486), - [sym_val_number] = STATE(10398), - [sym__val_number_decimal] = STATE(7782), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(10398), - [sym_val_filesize] = STATE(10398), - [sym_val_binary] = STATE(10398), - [sym_val_string] = STATE(10398), - [sym__str_double_quotes] = STATE(5541), - [sym_val_table] = STATE(10398), - [sym_unquoted] = STATE(10403), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(2570), - [aux_sym_ctrl_match_repeat1] = STATE(2635), - [anon_sym_LBRACK] = ACTIONS(6251), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_DOLLAR] = ACTIONS(6253), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(6255), - [anon_sym_RBRACE] = ACTIONS(6293), - [anon_sym__] = ACTIONS(6259), - [anon_sym_DOT_DOT] = ACTIONS(6261), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6263), - [anon_sym_DOT_DOT_LT] = ACTIONS(6263), - [anon_sym_null] = ACTIONS(6265), - [anon_sym_true] = ACTIONS(6267), - [anon_sym_false] = ACTIONS(6267), - [aux_sym__val_number_decimal_token1] = ACTIONS(6269), - [aux_sym__val_number_decimal_token2] = ACTIONS(6271), - [anon_sym_DOT2] = ACTIONS(6273), - [aux_sym__val_number_decimal_token3] = ACTIONS(6275), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(6277), - [aux_sym__val_number_token5] = ACTIONS(6277), - [aux_sym__val_number_token6] = ACTIONS(6277), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(6279), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(3), - }, - [2571] = { - [sym_match_arm] = STATE(4736), - [sym_default_arm] = STATE(11355), - [sym_match_pattern] = STATE(11092), - [sym__match_pattern] = STATE(8841), - [sym__match_pattern_expression] = STATE(10370), - [sym__match_pattern_value] = STATE(10371), - [sym__match_pattern_list] = STATE(10378), - [sym__match_pattern_record] = STATE(10383), - [sym__expr_unary_minus] = STATE(10390), - [sym_expr_parenthesized] = STATE(8527), - [sym_val_range] = STATE(10371), - [sym__val_range] = STATE(10473), - [sym_val_nothing] = STATE(10398), - [sym_val_bool] = STATE(9683), - [sym_val_variable] = STATE(8532), - [sym__var] = STATE(4486), - [sym_val_number] = STATE(10398), - [sym__val_number_decimal] = STATE(7782), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(10398), - [sym_val_filesize] = STATE(10398), - [sym_val_binary] = STATE(10398), - [sym_val_string] = STATE(10398), - [sym__str_double_quotes] = STATE(5541), - [sym_val_table] = STATE(10398), - [sym_unquoted] = STATE(10403), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(2571), - [aux_sym_ctrl_match_repeat1] = STATE(2636), - [anon_sym_LBRACK] = ACTIONS(6251), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_DOLLAR] = ACTIONS(6253), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(6255), - [anon_sym_RBRACE] = ACTIONS(6295), - [anon_sym__] = ACTIONS(6259), - [anon_sym_DOT_DOT] = ACTIONS(6261), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6263), - [anon_sym_DOT_DOT_LT] = ACTIONS(6263), - [anon_sym_null] = ACTIONS(6265), - [anon_sym_true] = ACTIONS(6267), - [anon_sym_false] = ACTIONS(6267), - [aux_sym__val_number_decimal_token1] = ACTIONS(6269), - [aux_sym__val_number_decimal_token2] = ACTIONS(6271), - [anon_sym_DOT2] = ACTIONS(6273), - [aux_sym__val_number_decimal_token3] = ACTIONS(6275), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(6277), - [aux_sym__val_number_token5] = ACTIONS(6277), - [aux_sym__val_number_token6] = ACTIONS(6277), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(6279), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(3), - }, - [2572] = { - [sym_comment] = STATE(2572), - [anon_sym_export] = ACTIONS(3748), - [anon_sym_alias] = ACTIONS(3748), - [anon_sym_let] = ACTIONS(3748), - [anon_sym_let_DASHenv] = ACTIONS(3748), - [anon_sym_mut] = ACTIONS(3748), - [anon_sym_const] = ACTIONS(3748), - [anon_sym_SEMI] = ACTIONS(3748), - [sym_cmd_identifier] = ACTIONS(3748), - [anon_sym_LF] = ACTIONS(3750), - [anon_sym_def] = ACTIONS(3748), - [anon_sym_export_DASHenv] = ACTIONS(3748), - [anon_sym_extern] = ACTIONS(3748), - [anon_sym_module] = ACTIONS(3748), - [anon_sym_use] = ACTIONS(3748), - [anon_sym_LBRACK] = ACTIONS(3748), - [anon_sym_LPAREN] = ACTIONS(3748), - [anon_sym_RPAREN] = ACTIONS(3748), - [anon_sym_DOLLAR] = ACTIONS(3748), - [anon_sym_error] = ACTIONS(3748), - [anon_sym_DASH] = ACTIONS(3748), - [anon_sym_break] = ACTIONS(3748), - [anon_sym_continue] = ACTIONS(3748), - [anon_sym_for] = ACTIONS(3748), - [anon_sym_loop] = ACTIONS(3748), - [anon_sym_while] = ACTIONS(3748), - [anon_sym_do] = ACTIONS(3748), - [anon_sym_if] = ACTIONS(3748), - [anon_sym_match] = ACTIONS(3748), - [anon_sym_LBRACE] = ACTIONS(3748), - [anon_sym_RBRACE] = ACTIONS(3748), - [anon_sym_DOT_DOT] = ACTIONS(3748), - [anon_sym_try] = ACTIONS(3748), - [anon_sym_return] = ACTIONS(3748), - [anon_sym_source] = ACTIONS(3748), - [anon_sym_source_DASHenv] = ACTIONS(3748), - [anon_sym_register] = ACTIONS(3748), - [anon_sym_hide] = ACTIONS(3748), - [anon_sym_hide_DASHenv] = ACTIONS(3748), - [anon_sym_overlay] = ACTIONS(3748), - [anon_sym_where] = ACTIONS(3748), - [anon_sym_not] = ACTIONS(3748), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3748), - [anon_sym_DOT_DOT_LT] = ACTIONS(3748), - [aux_sym__immediate_decimal_token1] = ACTIONS(6109), - [anon_sym_null] = ACTIONS(3748), - [anon_sym_true] = ACTIONS(3748), - [anon_sym_false] = ACTIONS(3748), - [aux_sym__val_number_decimal_token1] = ACTIONS(3748), - [aux_sym__val_number_decimal_token2] = ACTIONS(3748), - [anon_sym_DOT2] = ACTIONS(3748), - [aux_sym__val_number_decimal_token3] = ACTIONS(3748), - [aux_sym__val_number_token1] = ACTIONS(3748), - [aux_sym__val_number_token2] = ACTIONS(3748), - [aux_sym__val_number_token3] = ACTIONS(3748), - [aux_sym__val_number_token4] = ACTIONS(3748), - [aux_sym__val_number_token5] = ACTIONS(3748), - [aux_sym__val_number_token6] = ACTIONS(3748), - [anon_sym_0b] = ACTIONS(3748), - [anon_sym_0o] = ACTIONS(3748), - [anon_sym_0x] = ACTIONS(3748), - [sym_val_date] = ACTIONS(3748), - [anon_sym_DQUOTE] = ACTIONS(3748), - [sym__str_single_quotes] = ACTIONS(3748), - [sym__str_back_ticks] = ACTIONS(3748), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3748), - [anon_sym_CARET] = ACTIONS(3748), - [anon_sym_POUND] = ACTIONS(113), - }, - [2573] = { - [sym_comment] = STATE(2573), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_COMMA] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(6297), - [anon_sym_DASH] = ACTIONS(6299), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(6301), - [anon_sym_STAR_STAR] = ACTIONS(6303), - [anon_sym_PLUS_PLUS] = ACTIONS(6303), - [anon_sym_SLASH] = ACTIONS(6301), - [anon_sym_mod] = ACTIONS(6305), - [anon_sym_SLASH_SLASH] = ACTIONS(6305), - [anon_sym_PLUS] = ACTIONS(6299), - [anon_sym_bit_DASHshl] = ACTIONS(6307), - [anon_sym_bit_DASHshr] = ACTIONS(6307), - [anon_sym_EQ_EQ] = ACTIONS(6309), - [anon_sym_BANG_EQ] = ACTIONS(6309), - [anon_sym_LT2] = ACTIONS(6297), - [anon_sym_LT_EQ] = ACTIONS(6309), - [anon_sym_GT_EQ] = ACTIONS(6309), - [anon_sym_not_DASHin] = ACTIONS(1378), - [anon_sym_starts_DASHwith] = ACTIONS(1378), - [anon_sym_ends_DASHwith] = ACTIONS(1378), - [anon_sym_EQ_TILDE] = ACTIONS(1378), - [anon_sym_BANG_TILDE] = ACTIONS(1378), - [anon_sym_bit_DASHand] = ACTIONS(1378), - [anon_sym_bit_DASHxor] = ACTIONS(1378), - [anon_sym_bit_DASHor] = ACTIONS(1378), - [anon_sym_and] = ACTIONS(1378), - [anon_sym_xor] = ACTIONS(1378), - [anon_sym_or] = ACTIONS(1378), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT] = ACTIONS(1378), - [anon_sym_null] = ACTIONS(1378), - [anon_sym_true] = ACTIONS(1378), - [anon_sym_false] = ACTIONS(1378), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [aux_sym__val_number_token4] = ACTIONS(1378), - [aux_sym__val_number_token5] = ACTIONS(1378), - [aux_sym__val_number_token6] = ACTIONS(1378), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1378), - [anon_sym_out_GT] = ACTIONS(1378), - [anon_sym_e_GT] = ACTIONS(1378), - [anon_sym_o_GT] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT] = ACTIONS(1378), - [aux_sym_unquoted_token1] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(3), - }, - [2574] = { - [sym_comment] = STATE(2574), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_COMMA] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(6299), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(6301), - [anon_sym_STAR_STAR] = ACTIONS(6303), - [anon_sym_PLUS_PLUS] = ACTIONS(6303), - [anon_sym_SLASH] = ACTIONS(6301), - [anon_sym_mod] = ACTIONS(6305), - [anon_sym_SLASH_SLASH] = ACTIONS(6305), - [anon_sym_PLUS] = ACTIONS(6299), - [anon_sym_bit_DASHshl] = ACTIONS(1378), - [anon_sym_bit_DASHshr] = ACTIONS(1378), - [anon_sym_EQ_EQ] = ACTIONS(1378), - [anon_sym_BANG_EQ] = ACTIONS(1378), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1378), - [anon_sym_GT_EQ] = ACTIONS(1378), - [anon_sym_not_DASHin] = ACTIONS(1378), - [anon_sym_starts_DASHwith] = ACTIONS(1378), - [anon_sym_ends_DASHwith] = ACTIONS(1378), - [anon_sym_EQ_TILDE] = ACTIONS(1378), - [anon_sym_BANG_TILDE] = ACTIONS(1378), - [anon_sym_bit_DASHand] = ACTIONS(1378), - [anon_sym_bit_DASHxor] = ACTIONS(1378), - [anon_sym_bit_DASHor] = ACTIONS(1378), - [anon_sym_and] = ACTIONS(1378), - [anon_sym_xor] = ACTIONS(1378), - [anon_sym_or] = ACTIONS(1378), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT] = ACTIONS(1378), - [anon_sym_null] = ACTIONS(1378), - [anon_sym_true] = ACTIONS(1378), - [anon_sym_false] = ACTIONS(1378), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [aux_sym__val_number_token4] = ACTIONS(1378), - [aux_sym__val_number_token5] = ACTIONS(1378), - [aux_sym__val_number_token6] = ACTIONS(1378), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1378), - [anon_sym_out_GT] = ACTIONS(1378), - [anon_sym_e_GT] = ACTIONS(1378), - [anon_sym_o_GT] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT] = ACTIONS(1378), - [aux_sym_unquoted_token1] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(3), - }, - [2575] = { - [sym_comment] = STATE(2575), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_COMMA] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(6297), - [anon_sym_DASH] = ACTIONS(6299), - [anon_sym_in] = ACTIONS(6311), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(6301), - [anon_sym_STAR_STAR] = ACTIONS(6303), - [anon_sym_PLUS_PLUS] = ACTIONS(6303), - [anon_sym_SLASH] = ACTIONS(6301), - [anon_sym_mod] = ACTIONS(6305), - [anon_sym_SLASH_SLASH] = ACTIONS(6305), - [anon_sym_PLUS] = ACTIONS(6299), - [anon_sym_bit_DASHshl] = ACTIONS(6307), - [anon_sym_bit_DASHshr] = ACTIONS(6307), - [anon_sym_EQ_EQ] = ACTIONS(6309), - [anon_sym_BANG_EQ] = ACTIONS(6309), - [anon_sym_LT2] = ACTIONS(6297), - [anon_sym_LT_EQ] = ACTIONS(6309), - [anon_sym_GT_EQ] = ACTIONS(6309), - [anon_sym_not_DASHin] = ACTIONS(6313), - [anon_sym_starts_DASHwith] = ACTIONS(6313), - [anon_sym_ends_DASHwith] = ACTIONS(6313), - [anon_sym_EQ_TILDE] = ACTIONS(1378), - [anon_sym_BANG_TILDE] = ACTIONS(1378), - [anon_sym_bit_DASHand] = ACTIONS(1378), - [anon_sym_bit_DASHxor] = ACTIONS(1378), - [anon_sym_bit_DASHor] = ACTIONS(1378), - [anon_sym_and] = ACTIONS(1378), - [anon_sym_xor] = ACTIONS(1378), - [anon_sym_or] = ACTIONS(1378), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT] = ACTIONS(1378), - [anon_sym_null] = ACTIONS(1378), - [anon_sym_true] = ACTIONS(1378), - [anon_sym_false] = ACTIONS(1378), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [aux_sym__val_number_token4] = ACTIONS(1378), - [aux_sym__val_number_token5] = ACTIONS(1378), - [aux_sym__val_number_token6] = ACTIONS(1378), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1378), - [anon_sym_out_GT] = ACTIONS(1378), - [anon_sym_e_GT] = ACTIONS(1378), - [anon_sym_o_GT] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT] = ACTIONS(1378), - [aux_sym_unquoted_token1] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(3), - }, - [2576] = { - [sym_comment] = STATE(2576), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_COMMA] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(6301), - [anon_sym_STAR_STAR] = ACTIONS(6303), - [anon_sym_PLUS_PLUS] = ACTIONS(6303), - [anon_sym_SLASH] = ACTIONS(6301), - [anon_sym_mod] = ACTIONS(6305), - [anon_sym_SLASH_SLASH] = ACTIONS(6305), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_bit_DASHshl] = ACTIONS(1378), - [anon_sym_bit_DASHshr] = ACTIONS(1378), - [anon_sym_EQ_EQ] = ACTIONS(1378), - [anon_sym_BANG_EQ] = ACTIONS(1378), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1378), - [anon_sym_GT_EQ] = ACTIONS(1378), - [anon_sym_not_DASHin] = ACTIONS(1378), - [anon_sym_starts_DASHwith] = ACTIONS(1378), - [anon_sym_ends_DASHwith] = ACTIONS(1378), - [anon_sym_EQ_TILDE] = ACTIONS(1378), - [anon_sym_BANG_TILDE] = ACTIONS(1378), - [anon_sym_bit_DASHand] = ACTIONS(1378), - [anon_sym_bit_DASHxor] = ACTIONS(1378), - [anon_sym_bit_DASHor] = ACTIONS(1378), - [anon_sym_and] = ACTIONS(1378), - [anon_sym_xor] = ACTIONS(1378), - [anon_sym_or] = ACTIONS(1378), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT] = ACTIONS(1378), - [anon_sym_null] = ACTIONS(1378), - [anon_sym_true] = ACTIONS(1378), - [anon_sym_false] = ACTIONS(1378), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [aux_sym__val_number_token4] = ACTIONS(1378), - [aux_sym__val_number_token5] = ACTIONS(1378), - [aux_sym__val_number_token6] = ACTIONS(1378), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1378), - [anon_sym_out_GT] = ACTIONS(1378), - [anon_sym_e_GT] = ACTIONS(1378), - [anon_sym_o_GT] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT] = ACTIONS(1378), - [aux_sym_unquoted_token1] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(3), - }, - [2577] = { - [sym_comment] = STATE(2577), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_COMMA] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(6303), - [anon_sym_PLUS_PLUS] = ACTIONS(6303), - [anon_sym_SLASH] = ACTIONS(1376), - [anon_sym_mod] = ACTIONS(1378), - [anon_sym_SLASH_SLASH] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_bit_DASHshl] = ACTIONS(1378), - [anon_sym_bit_DASHshr] = ACTIONS(1378), - [anon_sym_EQ_EQ] = ACTIONS(1378), - [anon_sym_BANG_EQ] = ACTIONS(1378), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1378), - [anon_sym_GT_EQ] = ACTIONS(1378), - [anon_sym_not_DASHin] = ACTIONS(1378), - [anon_sym_starts_DASHwith] = ACTIONS(1378), - [anon_sym_ends_DASHwith] = ACTIONS(1378), - [anon_sym_EQ_TILDE] = ACTIONS(1378), - [anon_sym_BANG_TILDE] = ACTIONS(1378), - [anon_sym_bit_DASHand] = ACTIONS(1378), - [anon_sym_bit_DASHxor] = ACTIONS(1378), - [anon_sym_bit_DASHor] = ACTIONS(1378), - [anon_sym_and] = ACTIONS(1378), - [anon_sym_xor] = ACTIONS(1378), - [anon_sym_or] = ACTIONS(1378), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT] = ACTIONS(1378), - [anon_sym_null] = ACTIONS(1378), - [anon_sym_true] = ACTIONS(1378), - [anon_sym_false] = ACTIONS(1378), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [aux_sym__val_number_token4] = ACTIONS(1378), - [aux_sym__val_number_token5] = ACTIONS(1378), - [aux_sym__val_number_token6] = ACTIONS(1378), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1378), - [anon_sym_out_GT] = ACTIONS(1378), - [anon_sym_e_GT] = ACTIONS(1378), - [anon_sym_o_GT] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT] = ACTIONS(1378), - [aux_sym_unquoted_token1] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(3), - }, - [2578] = { - [sym_comment] = STATE(2578), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_COMMA] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(6299), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(6301), - [anon_sym_STAR_STAR] = ACTIONS(6303), - [anon_sym_PLUS_PLUS] = ACTIONS(6303), - [anon_sym_SLASH] = ACTIONS(6301), - [anon_sym_mod] = ACTIONS(6305), - [anon_sym_SLASH_SLASH] = ACTIONS(6305), - [anon_sym_PLUS] = ACTIONS(6299), - [anon_sym_bit_DASHshl] = ACTIONS(6307), - [anon_sym_bit_DASHshr] = ACTIONS(6307), - [anon_sym_EQ_EQ] = ACTIONS(1378), - [anon_sym_BANG_EQ] = ACTIONS(1378), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1378), - [anon_sym_GT_EQ] = ACTIONS(1378), - [anon_sym_not_DASHin] = ACTIONS(1378), - [anon_sym_starts_DASHwith] = ACTIONS(1378), - [anon_sym_ends_DASHwith] = ACTIONS(1378), - [anon_sym_EQ_TILDE] = ACTIONS(1378), - [anon_sym_BANG_TILDE] = ACTIONS(1378), - [anon_sym_bit_DASHand] = ACTIONS(1378), - [anon_sym_bit_DASHxor] = ACTIONS(1378), - [anon_sym_bit_DASHor] = ACTIONS(1378), - [anon_sym_and] = ACTIONS(1378), - [anon_sym_xor] = ACTIONS(1378), - [anon_sym_or] = ACTIONS(1378), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT] = ACTIONS(1378), - [anon_sym_null] = ACTIONS(1378), - [anon_sym_true] = ACTIONS(1378), - [anon_sym_false] = ACTIONS(1378), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [aux_sym__val_number_token4] = ACTIONS(1378), - [aux_sym__val_number_token5] = ACTIONS(1378), - [aux_sym__val_number_token6] = ACTIONS(1378), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1378), - [anon_sym_out_GT] = ACTIONS(1378), - [anon_sym_e_GT] = ACTIONS(1378), - [anon_sym_o_GT] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT] = ACTIONS(1378), - [aux_sym_unquoted_token1] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(3), - }, - [2579] = { - [sym_comment] = STATE(2579), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_COMMA] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(6297), - [anon_sym_DASH] = ACTIONS(6299), - [anon_sym_in] = ACTIONS(6311), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(6301), - [anon_sym_STAR_STAR] = ACTIONS(6303), - [anon_sym_PLUS_PLUS] = ACTIONS(6303), - [anon_sym_SLASH] = ACTIONS(6301), - [anon_sym_mod] = ACTIONS(6305), - [anon_sym_SLASH_SLASH] = ACTIONS(6305), - [anon_sym_PLUS] = ACTIONS(6299), - [anon_sym_bit_DASHshl] = ACTIONS(6307), - [anon_sym_bit_DASHshr] = ACTIONS(6307), - [anon_sym_EQ_EQ] = ACTIONS(6309), - [anon_sym_BANG_EQ] = ACTIONS(6309), - [anon_sym_LT2] = ACTIONS(6297), - [anon_sym_LT_EQ] = ACTIONS(6309), - [anon_sym_GT_EQ] = ACTIONS(6309), - [anon_sym_not_DASHin] = ACTIONS(6313), - [anon_sym_starts_DASHwith] = ACTIONS(6313), - [anon_sym_ends_DASHwith] = ACTIONS(6313), - [anon_sym_EQ_TILDE] = ACTIONS(6315), - [anon_sym_BANG_TILDE] = ACTIONS(6315), - [anon_sym_bit_DASHand] = ACTIONS(1378), - [anon_sym_bit_DASHxor] = ACTIONS(1378), - [anon_sym_bit_DASHor] = ACTIONS(1378), - [anon_sym_and] = ACTIONS(1378), - [anon_sym_xor] = ACTIONS(1378), - [anon_sym_or] = ACTIONS(1378), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT] = ACTIONS(1378), - [anon_sym_null] = ACTIONS(1378), - [anon_sym_true] = ACTIONS(1378), - [anon_sym_false] = ACTIONS(1378), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [aux_sym__val_number_token4] = ACTIONS(1378), - [aux_sym__val_number_token5] = ACTIONS(1378), - [aux_sym__val_number_token6] = ACTIONS(1378), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1378), - [anon_sym_out_GT] = ACTIONS(1378), - [anon_sym_e_GT] = ACTIONS(1378), - [anon_sym_o_GT] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT] = ACTIONS(1378), - [aux_sym_unquoted_token1] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(3), - }, - [2580] = { - [sym_comment] = STATE(2580), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_COMMA] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(6297), - [anon_sym_DASH] = ACTIONS(6299), - [anon_sym_in] = ACTIONS(6311), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(6301), - [anon_sym_STAR_STAR] = ACTIONS(6303), - [anon_sym_PLUS_PLUS] = ACTIONS(6303), - [anon_sym_SLASH] = ACTIONS(6301), - [anon_sym_mod] = ACTIONS(6305), - [anon_sym_SLASH_SLASH] = ACTIONS(6305), - [anon_sym_PLUS] = ACTIONS(6299), - [anon_sym_bit_DASHshl] = ACTIONS(6307), - [anon_sym_bit_DASHshr] = ACTIONS(6307), - [anon_sym_EQ_EQ] = ACTIONS(6309), - [anon_sym_BANG_EQ] = ACTIONS(6309), - [anon_sym_LT2] = ACTIONS(6297), - [anon_sym_LT_EQ] = ACTIONS(6309), - [anon_sym_GT_EQ] = ACTIONS(6309), - [anon_sym_not_DASHin] = ACTIONS(6313), - [anon_sym_starts_DASHwith] = ACTIONS(6313), - [anon_sym_ends_DASHwith] = ACTIONS(6313), - [anon_sym_EQ_TILDE] = ACTIONS(6315), - [anon_sym_BANG_TILDE] = ACTIONS(6315), - [anon_sym_bit_DASHand] = ACTIONS(6317), - [anon_sym_bit_DASHxor] = ACTIONS(1378), - [anon_sym_bit_DASHor] = ACTIONS(1378), - [anon_sym_and] = ACTIONS(1378), - [anon_sym_xor] = ACTIONS(1378), - [anon_sym_or] = ACTIONS(1378), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT] = ACTIONS(1378), - [anon_sym_null] = ACTIONS(1378), - [anon_sym_true] = ACTIONS(1378), - [anon_sym_false] = ACTIONS(1378), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [aux_sym__val_number_token4] = ACTIONS(1378), - [aux_sym__val_number_token5] = ACTIONS(1378), - [aux_sym__val_number_token6] = ACTIONS(1378), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1378), - [anon_sym_out_GT] = ACTIONS(1378), - [anon_sym_e_GT] = ACTIONS(1378), - [anon_sym_o_GT] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT] = ACTIONS(1378), - [aux_sym_unquoted_token1] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(3), - }, - [2581] = { - [sym_comment] = STATE(2581), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_COMMA] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(6297), - [anon_sym_DASH] = ACTIONS(6299), - [anon_sym_in] = ACTIONS(6311), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(6301), - [anon_sym_STAR_STAR] = ACTIONS(6303), - [anon_sym_PLUS_PLUS] = ACTIONS(6303), - [anon_sym_SLASH] = ACTIONS(6301), - [anon_sym_mod] = ACTIONS(6305), - [anon_sym_SLASH_SLASH] = ACTIONS(6305), - [anon_sym_PLUS] = ACTIONS(6299), - [anon_sym_bit_DASHshl] = ACTIONS(6307), - [anon_sym_bit_DASHshr] = ACTIONS(6307), - [anon_sym_EQ_EQ] = ACTIONS(6309), - [anon_sym_BANG_EQ] = ACTIONS(6309), - [anon_sym_LT2] = ACTIONS(6297), - [anon_sym_LT_EQ] = ACTIONS(6309), - [anon_sym_GT_EQ] = ACTIONS(6309), - [anon_sym_not_DASHin] = ACTIONS(6313), - [anon_sym_starts_DASHwith] = ACTIONS(6313), - [anon_sym_ends_DASHwith] = ACTIONS(6313), - [anon_sym_EQ_TILDE] = ACTIONS(6315), - [anon_sym_BANG_TILDE] = ACTIONS(6315), - [anon_sym_bit_DASHand] = ACTIONS(6317), - [anon_sym_bit_DASHxor] = ACTIONS(6319), - [anon_sym_bit_DASHor] = ACTIONS(1378), - [anon_sym_and] = ACTIONS(1378), - [anon_sym_xor] = ACTIONS(1378), - [anon_sym_or] = ACTIONS(1378), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT] = ACTIONS(1378), - [anon_sym_null] = ACTIONS(1378), - [anon_sym_true] = ACTIONS(1378), - [anon_sym_false] = ACTIONS(1378), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [aux_sym__val_number_token4] = ACTIONS(1378), - [aux_sym__val_number_token5] = ACTIONS(1378), - [aux_sym__val_number_token6] = ACTIONS(1378), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1378), - [anon_sym_out_GT] = ACTIONS(1378), - [anon_sym_e_GT] = ACTIONS(1378), - [anon_sym_o_GT] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT] = ACTIONS(1378), - [aux_sym_unquoted_token1] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(3), - }, - [2582] = { - [sym_comment] = STATE(2582), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_COMMA] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(6297), - [anon_sym_DASH] = ACTIONS(6299), - [anon_sym_in] = ACTIONS(6311), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(6301), - [anon_sym_STAR_STAR] = ACTIONS(6303), - [anon_sym_PLUS_PLUS] = ACTIONS(6303), - [anon_sym_SLASH] = ACTIONS(6301), - [anon_sym_mod] = ACTIONS(6305), - [anon_sym_SLASH_SLASH] = ACTIONS(6305), - [anon_sym_PLUS] = ACTIONS(6299), - [anon_sym_bit_DASHshl] = ACTIONS(6307), - [anon_sym_bit_DASHshr] = ACTIONS(6307), - [anon_sym_EQ_EQ] = ACTIONS(6309), - [anon_sym_BANG_EQ] = ACTIONS(6309), - [anon_sym_LT2] = ACTIONS(6297), - [anon_sym_LT_EQ] = ACTIONS(6309), - [anon_sym_GT_EQ] = ACTIONS(6309), - [anon_sym_not_DASHin] = ACTIONS(6313), - [anon_sym_starts_DASHwith] = ACTIONS(6313), - [anon_sym_ends_DASHwith] = ACTIONS(6313), - [anon_sym_EQ_TILDE] = ACTIONS(6315), - [anon_sym_BANG_TILDE] = ACTIONS(6315), - [anon_sym_bit_DASHand] = ACTIONS(6317), - [anon_sym_bit_DASHxor] = ACTIONS(6319), - [anon_sym_bit_DASHor] = ACTIONS(6321), - [anon_sym_and] = ACTIONS(1378), - [anon_sym_xor] = ACTIONS(1378), - [anon_sym_or] = ACTIONS(1378), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT] = ACTIONS(1378), - [anon_sym_null] = ACTIONS(1378), - [anon_sym_true] = ACTIONS(1378), - [anon_sym_false] = ACTIONS(1378), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [aux_sym__val_number_token4] = ACTIONS(1378), - [aux_sym__val_number_token5] = ACTIONS(1378), - [aux_sym__val_number_token6] = ACTIONS(1378), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1378), - [anon_sym_out_GT] = ACTIONS(1378), - [anon_sym_e_GT] = ACTIONS(1378), - [anon_sym_o_GT] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT] = ACTIONS(1378), - [aux_sym_unquoted_token1] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(3), - }, - [2583] = { - [sym_comment] = STATE(2583), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_COMMA] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(6297), - [anon_sym_DASH] = ACTIONS(6299), - [anon_sym_in] = ACTIONS(6311), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(6301), - [anon_sym_STAR_STAR] = ACTIONS(6303), - [anon_sym_PLUS_PLUS] = ACTIONS(6303), - [anon_sym_SLASH] = ACTIONS(6301), - [anon_sym_mod] = ACTIONS(6305), - [anon_sym_SLASH_SLASH] = ACTIONS(6305), - [anon_sym_PLUS] = ACTIONS(6299), - [anon_sym_bit_DASHshl] = ACTIONS(6307), - [anon_sym_bit_DASHshr] = ACTIONS(6307), - [anon_sym_EQ_EQ] = ACTIONS(6309), - [anon_sym_BANG_EQ] = ACTIONS(6309), - [anon_sym_LT2] = ACTIONS(6297), - [anon_sym_LT_EQ] = ACTIONS(6309), - [anon_sym_GT_EQ] = ACTIONS(6309), - [anon_sym_not_DASHin] = ACTIONS(6313), - [anon_sym_starts_DASHwith] = ACTIONS(6313), - [anon_sym_ends_DASHwith] = ACTIONS(6313), - [anon_sym_EQ_TILDE] = ACTIONS(6315), - [anon_sym_BANG_TILDE] = ACTIONS(6315), - [anon_sym_bit_DASHand] = ACTIONS(6317), - [anon_sym_bit_DASHxor] = ACTIONS(6319), - [anon_sym_bit_DASHor] = ACTIONS(6321), - [anon_sym_and] = ACTIONS(6323), - [anon_sym_xor] = ACTIONS(1378), - [anon_sym_or] = ACTIONS(1378), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT] = ACTIONS(1378), - [anon_sym_null] = ACTIONS(1378), - [anon_sym_true] = ACTIONS(1378), - [anon_sym_false] = ACTIONS(1378), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [aux_sym__val_number_token4] = ACTIONS(1378), - [aux_sym__val_number_token5] = ACTIONS(1378), - [aux_sym__val_number_token6] = ACTIONS(1378), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1378), - [anon_sym_out_GT] = ACTIONS(1378), - [anon_sym_e_GT] = ACTIONS(1378), - [anon_sym_o_GT] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT] = ACTIONS(1378), - [aux_sym_unquoted_token1] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(3), - }, - [2584] = { - [sym_comment] = STATE(2584), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_COMMA] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(6297), - [anon_sym_DASH] = ACTIONS(6299), - [anon_sym_in] = ACTIONS(6311), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(6301), - [anon_sym_STAR_STAR] = ACTIONS(6303), - [anon_sym_PLUS_PLUS] = ACTIONS(6303), - [anon_sym_SLASH] = ACTIONS(6301), - [anon_sym_mod] = ACTIONS(6305), - [anon_sym_SLASH_SLASH] = ACTIONS(6305), - [anon_sym_PLUS] = ACTIONS(6299), - [anon_sym_bit_DASHshl] = ACTIONS(6307), - [anon_sym_bit_DASHshr] = ACTIONS(6307), - [anon_sym_EQ_EQ] = ACTIONS(6309), - [anon_sym_BANG_EQ] = ACTIONS(6309), - [anon_sym_LT2] = ACTIONS(6297), - [anon_sym_LT_EQ] = ACTIONS(6309), - [anon_sym_GT_EQ] = ACTIONS(6309), - [anon_sym_not_DASHin] = ACTIONS(6313), - [anon_sym_starts_DASHwith] = ACTIONS(6313), - [anon_sym_ends_DASHwith] = ACTIONS(6313), - [anon_sym_EQ_TILDE] = ACTIONS(6315), - [anon_sym_BANG_TILDE] = ACTIONS(6315), - [anon_sym_bit_DASHand] = ACTIONS(6317), - [anon_sym_bit_DASHxor] = ACTIONS(6319), - [anon_sym_bit_DASHor] = ACTIONS(6321), - [anon_sym_and] = ACTIONS(6323), - [anon_sym_xor] = ACTIONS(6325), - [anon_sym_or] = ACTIONS(1378), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT] = ACTIONS(1378), - [anon_sym_null] = ACTIONS(1378), - [anon_sym_true] = ACTIONS(1378), - [anon_sym_false] = ACTIONS(1378), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [aux_sym__val_number_token4] = ACTIONS(1378), - [aux_sym__val_number_token5] = ACTIONS(1378), - [aux_sym__val_number_token6] = ACTIONS(1378), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1378), - [anon_sym_out_GT] = ACTIONS(1378), - [anon_sym_e_GT] = ACTIONS(1378), - [anon_sym_o_GT] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT] = ACTIONS(1378), - [aux_sym_unquoted_token1] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(3), - }, - [2585] = { - [sym_comment] = STATE(2585), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_COMMA] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(6297), - [anon_sym_DASH] = ACTIONS(6299), - [anon_sym_in] = ACTIONS(6311), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(6301), - [anon_sym_STAR_STAR] = ACTIONS(6303), - [anon_sym_PLUS_PLUS] = ACTIONS(6303), - [anon_sym_SLASH] = ACTIONS(6301), - [anon_sym_mod] = ACTIONS(6305), - [anon_sym_SLASH_SLASH] = ACTIONS(6305), - [anon_sym_PLUS] = ACTIONS(6299), - [anon_sym_bit_DASHshl] = ACTIONS(6307), - [anon_sym_bit_DASHshr] = ACTIONS(6307), - [anon_sym_EQ_EQ] = ACTIONS(6309), - [anon_sym_BANG_EQ] = ACTIONS(6309), - [anon_sym_LT2] = ACTIONS(6297), - [anon_sym_LT_EQ] = ACTIONS(6309), - [anon_sym_GT_EQ] = ACTIONS(6309), - [anon_sym_not_DASHin] = ACTIONS(6313), - [anon_sym_starts_DASHwith] = ACTIONS(6313), - [anon_sym_ends_DASHwith] = ACTIONS(6313), - [anon_sym_EQ_TILDE] = ACTIONS(6315), - [anon_sym_BANG_TILDE] = ACTIONS(6315), - [anon_sym_bit_DASHand] = ACTIONS(6317), - [anon_sym_bit_DASHxor] = ACTIONS(6319), - [anon_sym_bit_DASHor] = ACTIONS(6321), - [anon_sym_and] = ACTIONS(6323), - [anon_sym_xor] = ACTIONS(6325), - [anon_sym_or] = ACTIONS(6327), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT] = ACTIONS(1378), - [anon_sym_null] = ACTIONS(1378), - [anon_sym_true] = ACTIONS(1378), - [anon_sym_false] = ACTIONS(1378), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [aux_sym__val_number_token4] = ACTIONS(1378), - [aux_sym__val_number_token5] = ACTIONS(1378), - [aux_sym__val_number_token6] = ACTIONS(1378), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1378), - [anon_sym_out_GT] = ACTIONS(1378), - [anon_sym_e_GT] = ACTIONS(1378), - [anon_sym_o_GT] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT] = ACTIONS(1378), - [aux_sym_unquoted_token1] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(3), - }, - [2586] = { - [sym_comment] = STATE(2586), - [anon_sym_export] = ACTIONS(1243), - [anon_sym_alias] = ACTIONS(1243), - [anon_sym_let] = ACTIONS(1243), - [anon_sym_let_DASHenv] = ACTIONS(1243), - [anon_sym_mut] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1243), - [sym_cmd_identifier] = ACTIONS(1243), - [anon_sym_LF] = ACTIONS(1243), - [anon_sym_def] = ACTIONS(1243), - [anon_sym_export_DASHenv] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1243), - [anon_sym_module] = ACTIONS(1243), - [anon_sym_use] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_RPAREN] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_error] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_loop] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_match] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_RBRACE] = ACTIONS(1243), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_try] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_source] = ACTIONS(1243), - [anon_sym_source_DASHenv] = ACTIONS(1243), - [anon_sym_register] = ACTIONS(1243), - [anon_sym_hide] = ACTIONS(1243), - [anon_sym_hide_DASHenv] = ACTIONS(1243), - [anon_sym_overlay] = ACTIONS(1243), - [anon_sym_where] = ACTIONS(1243), - [anon_sym_not] = ACTIONS(1243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1243), - [anon_sym_DOT_DOT_LT] = ACTIONS(1243), - [anon_sym_null] = ACTIONS(1243), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_decimal_token2] = ACTIONS(1243), - [anon_sym_DOT2] = ACTIONS(1243), - [aux_sym__val_number_decimal_token3] = ACTIONS(1243), - [aux_sym__val_number_token1] = ACTIONS(1243), - [aux_sym__val_number_token2] = ACTIONS(1243), - [aux_sym__val_number_token3] = ACTIONS(1243), - [aux_sym__val_number_token4] = ACTIONS(1243), - [aux_sym__val_number_token5] = ACTIONS(1243), - [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_0b] = ACTIONS(1243), - [anon_sym_0o] = ACTIONS(1243), - [anon_sym_0x] = ACTIONS(1243), - [sym_val_date] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym__str_single_quotes] = ACTIONS(1243), - [sym__str_back_ticks] = ACTIONS(1243), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1243), - [aux_sym__list_item_starts_with_sign_token1] = ACTIONS(5133), - [anon_sym_CARET] = ACTIONS(1243), - [anon_sym_POUND] = ACTIONS(113), - }, - [2587] = { - [sym_comment] = STATE(2587), - [anon_sym_LBRACK] = ACTIONS(1374), - [anon_sym_COMMA] = ACTIONS(1374), - [anon_sym_LPAREN] = ACTIONS(1374), - [anon_sym_DOLLAR] = ACTIONS(1374), - [anon_sym_GT] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1372), - [anon_sym_in] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_RBRACE] = ACTIONS(1374), - [anon_sym__] = ACTIONS(1372), - [anon_sym_DOT_DOT] = ACTIONS(1372), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_STAR_STAR] = ACTIONS(1374), - [anon_sym_PLUS_PLUS] = ACTIONS(1374), - [anon_sym_SLASH] = ACTIONS(1372), - [anon_sym_mod] = ACTIONS(1374), - [anon_sym_SLASH_SLASH] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1372), - [anon_sym_bit_DASHshl] = ACTIONS(1374), - [anon_sym_bit_DASHshr] = ACTIONS(1374), - [anon_sym_EQ_EQ] = ACTIONS(1374), - [anon_sym_BANG_EQ] = ACTIONS(1374), - [anon_sym_LT2] = ACTIONS(1372), - [anon_sym_LT_EQ] = ACTIONS(1374), - [anon_sym_GT_EQ] = ACTIONS(1374), - [anon_sym_not_DASHin] = ACTIONS(1374), - [anon_sym_starts_DASHwith] = ACTIONS(1374), - [anon_sym_ends_DASHwith] = ACTIONS(1374), - [anon_sym_EQ_TILDE] = ACTIONS(1374), - [anon_sym_BANG_TILDE] = ACTIONS(1374), - [anon_sym_bit_DASHand] = ACTIONS(1374), - [anon_sym_bit_DASHxor] = ACTIONS(1374), - [anon_sym_bit_DASHor] = ACTIONS(1374), - [anon_sym_and] = ACTIONS(1374), - [anon_sym_xor] = ACTIONS(1374), - [anon_sym_or] = ACTIONS(1374), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1374), - [anon_sym_DOT_DOT_LT] = ACTIONS(1374), - [anon_sym_null] = ACTIONS(1374), - [anon_sym_true] = ACTIONS(1374), - [anon_sym_false] = ACTIONS(1374), - [aux_sym__val_number_decimal_token1] = ACTIONS(1372), - [aux_sym__val_number_decimal_token2] = ACTIONS(1374), - [anon_sym_DOT2] = ACTIONS(1372), - [aux_sym__val_number_decimal_token3] = ACTIONS(1374), - [aux_sym__val_number_token1] = ACTIONS(1374), - [aux_sym__val_number_token2] = ACTIONS(1374), - [aux_sym__val_number_token3] = ACTIONS(1374), - [aux_sym__val_number_token4] = ACTIONS(1374), - [aux_sym__val_number_token5] = ACTIONS(1374), - [aux_sym__val_number_token6] = ACTIONS(1374), - [anon_sym_0b] = ACTIONS(1372), - [anon_sym_0o] = ACTIONS(1372), - [anon_sym_0x] = ACTIONS(1372), - [sym_val_date] = ACTIONS(1374), - [anon_sym_DQUOTE] = ACTIONS(1374), - [sym__str_single_quotes] = ACTIONS(1374), - [sym__str_back_ticks] = ACTIONS(1374), - [anon_sym_err_GT] = ACTIONS(1374), - [anon_sym_out_GT] = ACTIONS(1374), - [anon_sym_e_GT] = ACTIONS(1374), - [anon_sym_o_GT] = ACTIONS(1374), - [anon_sym_err_PLUSout_GT] = ACTIONS(1374), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1374), - [anon_sym_o_PLUSe_GT] = ACTIONS(1374), - [anon_sym_e_PLUSo_GT] = ACTIONS(1374), - [aux_sym_unquoted_token1] = ACTIONS(1372), - [anon_sym_POUND] = ACTIONS(3), - }, - [2588] = { - [sym_comment] = STATE(2588), - [anon_sym_LBRACK] = ACTIONS(6329), - [anon_sym_COMMA] = ACTIONS(6329), - [anon_sym_LPAREN] = ACTIONS(6329), - [anon_sym_DOLLAR] = ACTIONS(6329), - [anon_sym_GT] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(6332), - [anon_sym_in] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(6329), - [anon_sym_RBRACE] = ACTIONS(6329), - [anon_sym__] = ACTIONS(6332), - [anon_sym_DOT_DOT] = ACTIONS(6332), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_STAR_STAR] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_SLASH] = ACTIONS(1298), - [anon_sym_mod] = ACTIONS(1300), - [anon_sym_SLASH_SLASH] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_bit_DASHshl] = ACTIONS(1300), - [anon_sym_bit_DASHshr] = ACTIONS(1300), - [anon_sym_EQ_EQ] = ACTIONS(1300), - [anon_sym_BANG_EQ] = ACTIONS(1300), - [anon_sym_LT2] = ACTIONS(1298), - [anon_sym_LT_EQ] = ACTIONS(1300), - [anon_sym_GT_EQ] = ACTIONS(1300), - [anon_sym_not_DASHin] = ACTIONS(1300), - [anon_sym_starts_DASHwith] = ACTIONS(1300), - [anon_sym_ends_DASHwith] = ACTIONS(1300), - [anon_sym_EQ_TILDE] = ACTIONS(1300), - [anon_sym_BANG_TILDE] = ACTIONS(1300), - [anon_sym_bit_DASHand] = ACTIONS(1300), - [anon_sym_bit_DASHxor] = ACTIONS(1300), - [anon_sym_bit_DASHor] = ACTIONS(1300), - [anon_sym_and] = ACTIONS(1300), - [anon_sym_xor] = ACTIONS(1300), - [anon_sym_or] = ACTIONS(1300), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6329), - [anon_sym_DOT_DOT_LT] = ACTIONS(6329), - [anon_sym_null] = ACTIONS(6329), - [anon_sym_true] = ACTIONS(6329), - [anon_sym_false] = ACTIONS(6329), - [aux_sym__val_number_decimal_token1] = ACTIONS(6332), - [aux_sym__val_number_decimal_token2] = ACTIONS(6329), - [anon_sym_DOT2] = ACTIONS(6332), - [aux_sym__val_number_decimal_token3] = ACTIONS(6329), - [aux_sym__val_number_token1] = ACTIONS(6329), - [aux_sym__val_number_token2] = ACTIONS(6329), - [aux_sym__val_number_token3] = ACTIONS(6329), - [aux_sym__val_number_token4] = ACTIONS(6329), - [aux_sym__val_number_token5] = ACTIONS(6329), - [aux_sym__val_number_token6] = ACTIONS(6329), - [anon_sym_0b] = ACTIONS(6332), - [anon_sym_0o] = ACTIONS(6332), - [anon_sym_0x] = ACTIONS(6332), - [sym_val_date] = ACTIONS(6329), - [anon_sym_DQUOTE] = ACTIONS(6329), - [sym__str_single_quotes] = ACTIONS(6329), - [sym__str_back_ticks] = ACTIONS(6329), - [anon_sym_err_GT] = ACTIONS(6329), - [anon_sym_out_GT] = ACTIONS(6329), - [anon_sym_e_GT] = ACTIONS(6329), - [anon_sym_o_GT] = ACTIONS(6329), - [anon_sym_err_PLUSout_GT] = ACTIONS(6329), - [anon_sym_out_PLUSerr_GT] = ACTIONS(6329), - [anon_sym_o_PLUSe_GT] = ACTIONS(6329), - [anon_sym_e_PLUSo_GT] = ACTIONS(6329), - [aux_sym_unquoted_token1] = ACTIONS(6332), - [anon_sym_POUND] = ACTIONS(3), - }, - [2589] = { - [sym_comment] = STATE(2589), - [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), - [anon_sym_SEMI] = ACTIONS(1294), - [sym_cmd_identifier] = ACTIONS(1294), - [anon_sym_LF] = 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(1294), - [anon_sym_LPAREN] = ACTIONS(1294), - [anon_sym_RPAREN] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_error] = ACTIONS(1294), - [anon_sym_DASH] = 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(1294), - [anon_sym_RBRACE] = ACTIONS(1294), - [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_register] = ACTIONS(1294), - [anon_sym_hide] = ACTIONS(1294), - [anon_sym_hide_DASHenv] = ACTIONS(1294), - [anon_sym_overlay] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_where] = ACTIONS(1294), - [anon_sym_not] = ACTIONS(1294), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1294), - [anon_sym_DOT_DOT_LT] = ACTIONS(1294), - [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(1294), - [anon_sym_DOT2] = ACTIONS(1294), - [aux_sym__val_number_decimal_token3] = ACTIONS(1294), - [aux_sym__val_number_token1] = ACTIONS(1294), - [aux_sym__val_number_token2] = ACTIONS(1294), - [aux_sym__val_number_token3] = ACTIONS(1294), - [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(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym__str_single_quotes] = ACTIONS(1294), - [sym__str_back_ticks] = ACTIONS(1294), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1294), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1294), - [anon_sym_CARET] = ACTIONS(1294), - [anon_sym_POUND] = ACTIONS(113), - }, - [2590] = { - [sym_comment] = STATE(2590), - [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), - [anon_sym_SEMI] = ACTIONS(1294), - [sym_cmd_identifier] = ACTIONS(1294), - [anon_sym_LF] = 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(1294), - [anon_sym_LPAREN] = ACTIONS(1294), - [anon_sym_RPAREN] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_error] = ACTIONS(1294), - [anon_sym_DASH] = 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(1294), - [anon_sym_RBRACE] = ACTIONS(1294), - [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_register] = ACTIONS(1294), - [anon_sym_hide] = ACTIONS(1294), - [anon_sym_hide_DASHenv] = ACTIONS(1294), - [anon_sym_overlay] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_where] = ACTIONS(1294), - [anon_sym_not] = ACTIONS(1294), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1294), - [anon_sym_DOT_DOT_LT] = ACTIONS(1294), - [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(1294), - [anon_sym_DOT2] = ACTIONS(1294), - [aux_sym__val_number_decimal_token3] = ACTIONS(1294), - [aux_sym__val_number_token1] = ACTIONS(1294), - [aux_sym__val_number_token2] = ACTIONS(1294), - [aux_sym__val_number_token3] = ACTIONS(1294), - [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(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym__str_single_quotes] = ACTIONS(1294), - [sym__str_back_ticks] = ACTIONS(1294), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1294), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1294), - [anon_sym_CARET] = ACTIONS(1294), - [anon_sym_POUND] = ACTIONS(113), - }, - [2591] = { - [sym_comment] = STATE(2591), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_alias] = ACTIONS(1109), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_let_DASHenv] = ACTIONS(1109), - [anon_sym_mut] = ACTIONS(1109), - [anon_sym_const] = ACTIONS(1109), - [anon_sym_SEMI] = ACTIONS(1109), - [sym_cmd_identifier] = ACTIONS(1109), - [anon_sym_LF] = ACTIONS(1111), - [anon_sym_def] = ACTIONS(1109), - [anon_sym_export_DASHenv] = ACTIONS(1109), - [anon_sym_extern] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_use] = ACTIONS(1109), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_RPAREN] = ACTIONS(1109), - [anon_sym_DOLLAR] = ACTIONS(1109), - [anon_sym_error] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_break] = ACTIONS(1109), - [anon_sym_continue] = ACTIONS(1109), - [anon_sym_for] = ACTIONS(1109), - [anon_sym_loop] = ACTIONS(1109), - [anon_sym_while] = ACTIONS(1109), - [anon_sym_do] = ACTIONS(1109), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_RBRACE] = ACTIONS(1109), - [anon_sym_DOT_DOT] = ACTIONS(1109), - [anon_sym_try] = ACTIONS(1109), - [anon_sym_return] = ACTIONS(1109), - [anon_sym_source] = ACTIONS(1109), - [anon_sym_source_DASHenv] = ACTIONS(1109), - [anon_sym_register] = ACTIONS(1109), - [anon_sym_hide] = ACTIONS(1109), - [anon_sym_hide_DASHenv] = ACTIONS(1109), - [anon_sym_overlay] = ACTIONS(1109), - [anon_sym_where] = ACTIONS(1109), - [anon_sym_not] = ACTIONS(1109), - [anon_sym_DOT] = ACTIONS(1109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1109), - [anon_sym_DOT_DOT_LT] = ACTIONS(1109), - [anon_sym_null] = ACTIONS(1109), - [anon_sym_true] = ACTIONS(1109), - [anon_sym_false] = ACTIONS(1109), - [aux_sym__val_number_decimal_token1] = ACTIONS(1109), - [aux_sym__val_number_decimal_token2] = ACTIONS(1109), - [anon_sym_DOT2] = ACTIONS(1109), - [aux_sym__val_number_decimal_token3] = ACTIONS(1109), - [aux_sym__val_number_token1] = ACTIONS(1109), - [aux_sym__val_number_token2] = ACTIONS(1109), - [aux_sym__val_number_token3] = ACTIONS(1109), - [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(1109), - [anon_sym_0o] = ACTIONS(1109), - [anon_sym_0x] = ACTIONS(1109), - [sym_val_date] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(1109), - [sym__str_single_quotes] = ACTIONS(1109), - [sym__str_back_ticks] = ACTIONS(1109), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1109), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1109), - [anon_sym_CARET] = ACTIONS(1109), - [anon_sym_POUND] = ACTIONS(113), - }, - [2592] = { - [sym_comment] = STATE(2592), - [anon_sym_export] = ACTIONS(2581), - [anon_sym_alias] = ACTIONS(2581), - [anon_sym_let] = ACTIONS(2581), - [anon_sym_let_DASHenv] = ACTIONS(2581), - [anon_sym_mut] = ACTIONS(2581), - [anon_sym_const] = ACTIONS(2581), - [anon_sym_SEMI] = ACTIONS(2581), - [sym_cmd_identifier] = ACTIONS(2581), - [anon_sym_LF] = ACTIONS(2583), - [anon_sym_def] = ACTIONS(2581), - [anon_sym_export_DASHenv] = ACTIONS(2581), - [anon_sym_extern] = ACTIONS(2581), - [anon_sym_module] = ACTIONS(2581), - [anon_sym_use] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2581), - [anon_sym_RPAREN] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2581), - [anon_sym_error] = ACTIONS(2581), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_break] = ACTIONS(2581), - [anon_sym_continue] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2581), - [anon_sym_loop] = ACTIONS(2581), - [anon_sym_while] = ACTIONS(2581), - [anon_sym_do] = ACTIONS(2581), - [anon_sym_if] = ACTIONS(2581), - [anon_sym_match] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2581), - [anon_sym_RBRACE] = ACTIONS(2581), - [anon_sym_DOT_DOT] = ACTIONS(2581), - [anon_sym_try] = ACTIONS(2581), - [anon_sym_return] = ACTIONS(2581), - [anon_sym_source] = ACTIONS(2581), - [anon_sym_source_DASHenv] = ACTIONS(2581), - [anon_sym_register] = ACTIONS(2581), - [anon_sym_hide] = ACTIONS(2581), - [anon_sym_hide_DASHenv] = ACTIONS(2581), - [anon_sym_overlay] = ACTIONS(2581), - [anon_sym_where] = ACTIONS(2581), - [anon_sym_not] = ACTIONS(2581), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2581), - [anon_sym_DOT_DOT_LT] = ACTIONS(2581), - [aux_sym__immediate_decimal_token2] = ACTIONS(5263), - [anon_sym_null] = ACTIONS(2581), - [anon_sym_true] = ACTIONS(2581), - [anon_sym_false] = ACTIONS(2581), - [aux_sym__val_number_decimal_token1] = ACTIONS(2581), - [aux_sym__val_number_decimal_token2] = ACTIONS(2581), - [anon_sym_DOT2] = ACTIONS(2581), - [aux_sym__val_number_decimal_token3] = ACTIONS(2581), - [aux_sym__val_number_token1] = ACTIONS(2581), - [aux_sym__val_number_token2] = ACTIONS(2581), - [aux_sym__val_number_token3] = ACTIONS(2581), - [aux_sym__val_number_token4] = ACTIONS(2581), - [aux_sym__val_number_token5] = ACTIONS(2581), - [aux_sym__val_number_token6] = ACTIONS(2581), - [anon_sym_0b] = ACTIONS(2581), - [anon_sym_0o] = ACTIONS(2581), - [anon_sym_0x] = ACTIONS(2581), - [sym_val_date] = ACTIONS(2581), - [anon_sym_DQUOTE] = ACTIONS(2581), - [sym__str_single_quotes] = ACTIONS(2581), - [sym__str_back_ticks] = ACTIONS(2581), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2581), - [anon_sym_CARET] = ACTIONS(2581), - [anon_sym_POUND] = ACTIONS(113), - }, - [2593] = { - [sym_comment] = STATE(2593), - [anon_sym_export] = ACTIONS(1308), - [anon_sym_alias] = ACTIONS(1308), - [anon_sym_let] = ACTIONS(1308), - [anon_sym_let_DASHenv] = ACTIONS(1308), - [anon_sym_mut] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [sym_cmd_identifier] = ACTIONS(1308), - [anon_sym_LF] = ACTIONS(1310), - [anon_sym_def] = ACTIONS(1308), - [anon_sym_export_DASHenv] = ACTIONS(1308), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym_module] = ACTIONS(1308), - [anon_sym_use] = ACTIONS(1308), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_LPAREN] = ACTIONS(1308), - [anon_sym_RPAREN] = ACTIONS(1308), - [anon_sym_DOLLAR] = ACTIONS(1308), - [anon_sym_error] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_break] = ACTIONS(1308), - [anon_sym_continue] = ACTIONS(1308), - [anon_sym_for] = ACTIONS(1308), - [anon_sym_loop] = ACTIONS(1308), - [anon_sym_while] = ACTIONS(1308), - [anon_sym_do] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_match] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_DOT_DOT] = ACTIONS(1308), - [anon_sym_try] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1308), - [anon_sym_source] = ACTIONS(1308), - [anon_sym_source_DASHenv] = ACTIONS(1308), - [anon_sym_register] = ACTIONS(1308), - [anon_sym_hide] = ACTIONS(1308), - [anon_sym_hide_DASHenv] = ACTIONS(1308), - [anon_sym_overlay] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_where] = ACTIONS(1308), - [anon_sym_not] = ACTIONS(1308), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1308), - [anon_sym_DOT_DOT_LT] = ACTIONS(1308), - [anon_sym_null] = ACTIONS(1308), - [anon_sym_true] = ACTIONS(1308), - [anon_sym_false] = ACTIONS(1308), - [aux_sym__val_number_decimal_token1] = ACTIONS(1308), - [aux_sym__val_number_decimal_token2] = ACTIONS(1308), - [anon_sym_DOT2] = ACTIONS(1308), - [aux_sym__val_number_decimal_token3] = ACTIONS(1308), - [aux_sym__val_number_token1] = ACTIONS(1308), - [aux_sym__val_number_token2] = ACTIONS(1308), - [aux_sym__val_number_token3] = ACTIONS(1308), - [aux_sym__val_number_token4] = ACTIONS(1308), - [aux_sym__val_number_token5] = ACTIONS(1308), - [aux_sym__val_number_token6] = ACTIONS(1308), - [anon_sym_0b] = ACTIONS(1308), - [anon_sym_0o] = ACTIONS(1308), - [anon_sym_0x] = ACTIONS(1308), - [sym_val_date] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym__str_single_quotes] = ACTIONS(1308), - [sym__str_back_ticks] = ACTIONS(1308), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1308), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1308), - [anon_sym_CARET] = ACTIONS(1308), - [anon_sym_POUND] = ACTIONS(113), - }, - [2594] = { - [sym_comment] = STATE(2594), - [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), - [anon_sym_SEMI] = ACTIONS(2437), - [sym_cmd_identifier] = ACTIONS(2437), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_RPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_RBRACE] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_not] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [aux_sym__immediate_decimal_token2] = ACTIONS(5245), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [anon_sym_DOT2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2437), - [anon_sym_0o] = ACTIONS(2437), - [anon_sym_0x] = ACTIONS(2437), - [sym_val_date] = 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_CARET] = ACTIONS(2437), - [anon_sym_POUND] = ACTIONS(113), - }, - [2595] = { - [sym_comment] = STATE(2595), - [anon_sym_export] = ACTIONS(1312), - [anon_sym_alias] = ACTIONS(1312), - [anon_sym_let] = ACTIONS(1312), - [anon_sym_let_DASHenv] = ACTIONS(1312), - [anon_sym_mut] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [sym_cmd_identifier] = ACTIONS(1312), - [anon_sym_LF] = ACTIONS(1314), - [anon_sym_def] = ACTIONS(1312), - [anon_sym_export_DASHenv] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym_module] = ACTIONS(1312), - [anon_sym_use] = ACTIONS(1312), - [anon_sym_LBRACK] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1312), - [anon_sym_RPAREN] = ACTIONS(1312), - [anon_sym_DOLLAR] = ACTIONS(1312), - [anon_sym_error] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_loop] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_match] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_RBRACE] = ACTIONS(1312), - [anon_sym_DOT_DOT] = ACTIONS(1312), - [anon_sym_try] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_source] = ACTIONS(1312), - [anon_sym_source_DASHenv] = ACTIONS(1312), - [anon_sym_register] = ACTIONS(1312), - [anon_sym_hide] = ACTIONS(1312), - [anon_sym_hide_DASHenv] = ACTIONS(1312), - [anon_sym_overlay] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_where] = ACTIONS(1312), - [anon_sym_not] = ACTIONS(1312), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1312), - [anon_sym_DOT_DOT_LT] = ACTIONS(1312), - [anon_sym_null] = ACTIONS(1312), - [anon_sym_true] = ACTIONS(1312), - [anon_sym_false] = ACTIONS(1312), - [aux_sym__val_number_decimal_token1] = ACTIONS(1312), - [aux_sym__val_number_decimal_token2] = ACTIONS(1312), - [anon_sym_DOT2] = ACTIONS(1312), - [aux_sym__val_number_decimal_token3] = ACTIONS(1312), - [aux_sym__val_number_token1] = ACTIONS(1312), - [aux_sym__val_number_token2] = ACTIONS(1312), - [aux_sym__val_number_token3] = ACTIONS(1312), - [aux_sym__val_number_token4] = ACTIONS(1312), - [aux_sym__val_number_token5] = ACTIONS(1312), - [aux_sym__val_number_token6] = ACTIONS(1312), - [anon_sym_0b] = ACTIONS(1312), - [anon_sym_0o] = ACTIONS(1312), - [anon_sym_0x] = ACTIONS(1312), - [sym_val_date] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym__str_single_quotes] = ACTIONS(1312), - [sym__str_back_ticks] = ACTIONS(1312), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1312), - [anon_sym_CARET] = ACTIONS(1312), - [anon_sym_POUND] = ACTIONS(113), - }, - [2596] = { - [sym_comment] = STATE(2596), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_alias] = ACTIONS(1332), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_let_DASHenv] = ACTIONS(1332), - [anon_sym_mut] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1332), - [sym_cmd_identifier] = ACTIONS(1332), - [anon_sym_LF] = ACTIONS(1334), - [anon_sym_def] = ACTIONS(1332), - [anon_sym_export_DASHenv] = ACTIONS(1332), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_use] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1332), - [anon_sym_RPAREN] = ACTIONS(1332), - [anon_sym_DOLLAR] = ACTIONS(1332), - [anon_sym_error] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_loop] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_do] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_match] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_RBRACE] = ACTIONS(1332), - [anon_sym_DOT_DOT] = ACTIONS(1332), - [anon_sym_try] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_source] = ACTIONS(1332), - [anon_sym_source_DASHenv] = ACTIONS(1332), - [anon_sym_register] = ACTIONS(1332), - [anon_sym_hide] = ACTIONS(1332), - [anon_sym_hide_DASHenv] = ACTIONS(1332), - [anon_sym_overlay] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_where] = ACTIONS(1332), - [anon_sym_not] = ACTIONS(1332), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1332), - [anon_sym_DOT_DOT_LT] = ACTIONS(1332), - [anon_sym_null] = ACTIONS(1332), - [anon_sym_true] = ACTIONS(1332), - [anon_sym_false] = ACTIONS(1332), - [aux_sym__val_number_decimal_token1] = ACTIONS(1332), - [aux_sym__val_number_decimal_token2] = ACTIONS(1332), - [anon_sym_DOT2] = ACTIONS(1332), - [aux_sym__val_number_decimal_token3] = ACTIONS(1332), - [aux_sym__val_number_token1] = ACTIONS(1332), - [aux_sym__val_number_token2] = ACTIONS(1332), - [aux_sym__val_number_token3] = ACTIONS(1332), - [aux_sym__val_number_token4] = ACTIONS(1332), - [aux_sym__val_number_token5] = ACTIONS(1332), - [aux_sym__val_number_token6] = ACTIONS(1332), - [anon_sym_0b] = ACTIONS(1332), - [anon_sym_0o] = ACTIONS(1332), - [anon_sym_0x] = ACTIONS(1332), - [sym_val_date] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym__str_single_quotes] = ACTIONS(1332), - [sym__str_back_ticks] = ACTIONS(1332), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1332), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1332), - [anon_sym_CARET] = ACTIONS(1332), - [anon_sym_POUND] = ACTIONS(113), - }, - [2597] = { - [sym_comment] = STATE(2597), - [anon_sym_export] = ACTIONS(1336), - [anon_sym_alias] = ACTIONS(1336), - [anon_sym_let] = ACTIONS(1336), - [anon_sym_let_DASHenv] = ACTIONS(1336), - [anon_sym_mut] = ACTIONS(1336), - [anon_sym_const] = ACTIONS(1336), - [anon_sym_SEMI] = ACTIONS(1336), - [sym_cmd_identifier] = ACTIONS(1336), - [anon_sym_LF] = ACTIONS(1338), - [anon_sym_def] = ACTIONS(1336), - [anon_sym_export_DASHenv] = ACTIONS(1336), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym_module] = ACTIONS(1336), - [anon_sym_use] = ACTIONS(1336), - [anon_sym_LBRACK] = ACTIONS(1336), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_RPAREN] = ACTIONS(1336), - [anon_sym_DOLLAR] = ACTIONS(1336), - [anon_sym_error] = ACTIONS(1336), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_break] = ACTIONS(1336), - [anon_sym_continue] = ACTIONS(1336), - [anon_sym_for] = ACTIONS(1336), - [anon_sym_loop] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1336), - [anon_sym_do] = ACTIONS(1336), - [anon_sym_if] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_RBRACE] = ACTIONS(1336), - [anon_sym_DOT_DOT] = ACTIONS(1336), - [anon_sym_try] = ACTIONS(1336), - [anon_sym_return] = ACTIONS(1336), - [anon_sym_source] = ACTIONS(1336), - [anon_sym_source_DASHenv] = ACTIONS(1336), - [anon_sym_register] = ACTIONS(1336), - [anon_sym_hide] = ACTIONS(1336), - [anon_sym_hide_DASHenv] = ACTIONS(1336), - [anon_sym_overlay] = ACTIONS(1336), - [anon_sym_STAR] = ACTIONS(1336), - [anon_sym_where] = ACTIONS(1336), - [anon_sym_not] = ACTIONS(1336), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1336), - [anon_sym_DOT_DOT_LT] = ACTIONS(1336), - [anon_sym_null] = ACTIONS(1336), - [anon_sym_true] = ACTIONS(1336), - [anon_sym_false] = ACTIONS(1336), - [aux_sym__val_number_decimal_token1] = ACTIONS(1336), - [aux_sym__val_number_decimal_token2] = ACTIONS(1336), - [anon_sym_DOT2] = ACTIONS(1336), - [aux_sym__val_number_decimal_token3] = ACTIONS(1336), - [aux_sym__val_number_token1] = ACTIONS(1336), - [aux_sym__val_number_token2] = ACTIONS(1336), - [aux_sym__val_number_token3] = ACTIONS(1336), - [aux_sym__val_number_token4] = ACTIONS(1336), - [aux_sym__val_number_token5] = ACTIONS(1336), - [aux_sym__val_number_token6] = ACTIONS(1336), - [anon_sym_0b] = ACTIONS(1336), - [anon_sym_0o] = ACTIONS(1336), - [anon_sym_0x] = ACTIONS(1336), - [sym_val_date] = ACTIONS(1336), - [anon_sym_DQUOTE] = ACTIONS(1336), - [sym__str_single_quotes] = ACTIONS(1336), - [sym__str_back_ticks] = ACTIONS(1336), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1336), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1336), - [anon_sym_CARET] = ACTIONS(1336), - [anon_sym_POUND] = ACTIONS(113), - }, - [2598] = { - [sym_comment] = STATE(2598), - [anon_sym_export] = ACTIONS(2547), - [anon_sym_alias] = ACTIONS(2547), - [anon_sym_let] = ACTIONS(2547), - [anon_sym_let_DASHenv] = ACTIONS(2547), - [anon_sym_mut] = ACTIONS(2547), - [anon_sym_const] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [sym_cmd_identifier] = ACTIONS(2547), - [anon_sym_LF] = ACTIONS(2549), - [anon_sym_def] = ACTIONS(2547), - [anon_sym_export_DASHenv] = ACTIONS(2547), - [anon_sym_extern] = ACTIONS(2547), - [anon_sym_module] = ACTIONS(2547), - [anon_sym_use] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_RPAREN] = ACTIONS(2547), - [anon_sym_DOLLAR] = ACTIONS(2547), - [anon_sym_error] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_break] = ACTIONS(2547), - [anon_sym_continue] = ACTIONS(2547), - [anon_sym_for] = ACTIONS(2547), - [anon_sym_loop] = ACTIONS(2547), - [anon_sym_while] = ACTIONS(2547), - [anon_sym_do] = ACTIONS(2547), - [anon_sym_if] = ACTIONS(2547), - [anon_sym_match] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2547), - [anon_sym_RBRACE] = ACTIONS(2547), - [anon_sym_DOT_DOT] = ACTIONS(2547), - [anon_sym_try] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2547), - [anon_sym_source] = ACTIONS(2547), - [anon_sym_source_DASHenv] = ACTIONS(2547), - [anon_sym_register] = ACTIONS(2547), - [anon_sym_hide] = ACTIONS(2547), - [anon_sym_hide_DASHenv] = ACTIONS(2547), - [anon_sym_overlay] = ACTIONS(2547), - [anon_sym_where] = ACTIONS(2547), - [anon_sym_not] = ACTIONS(2547), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), - [anon_sym_DOT_DOT_LT] = ACTIONS(2547), - [aux_sym__immediate_decimal_token2] = ACTIONS(6335), - [anon_sym_null] = ACTIONS(2547), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [aux_sym__val_number_decimal_token1] = ACTIONS(2547), - [aux_sym__val_number_decimal_token2] = ACTIONS(2547), - [anon_sym_DOT2] = ACTIONS(2547), - [aux_sym__val_number_decimal_token3] = ACTIONS(2547), - [aux_sym__val_number_token1] = ACTIONS(2547), - [aux_sym__val_number_token2] = ACTIONS(2547), - [aux_sym__val_number_token3] = ACTIONS(2547), - [aux_sym__val_number_token4] = ACTIONS(2547), - [aux_sym__val_number_token5] = ACTIONS(2547), - [aux_sym__val_number_token6] = ACTIONS(2547), - [anon_sym_0b] = ACTIONS(2547), - [anon_sym_0o] = ACTIONS(2547), - [anon_sym_0x] = ACTIONS(2547), - [sym_val_date] = ACTIONS(2547), - [anon_sym_DQUOTE] = ACTIONS(2547), - [sym__str_single_quotes] = ACTIONS(2547), - [sym__str_back_ticks] = ACTIONS(2547), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2547), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2547), - [anon_sym_POUND] = ACTIONS(113), - }, - [2599] = { - [sym_comment] = STATE(2599), - [anon_sym_LBRACK] = ACTIONS(1160), - [anon_sym_COMMA] = ACTIONS(1160), - [anon_sym_LPAREN] = ACTIONS(1160), - [anon_sym_DOLLAR] = ACTIONS(1160), - [anon_sym_GT] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_in] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1160), - [anon_sym_RBRACE] = ACTIONS(1160), - [anon_sym__] = ACTIONS(1158), - [anon_sym_DOT_DOT] = ACTIONS(1158), - [anon_sym_STAR] = ACTIONS(1158), - [anon_sym_STAR_STAR] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1160), - [anon_sym_SLASH] = ACTIONS(1158), - [anon_sym_mod] = ACTIONS(1160), - [anon_sym_SLASH_SLASH] = ACTIONS(1160), - [anon_sym_PLUS] = ACTIONS(1158), - [anon_sym_bit_DASHshl] = ACTIONS(1160), - [anon_sym_bit_DASHshr] = ACTIONS(1160), - [anon_sym_EQ_EQ] = ACTIONS(1160), - [anon_sym_BANG_EQ] = ACTIONS(1160), - [anon_sym_LT2] = ACTIONS(1158), - [anon_sym_LT_EQ] = ACTIONS(1160), - [anon_sym_GT_EQ] = ACTIONS(1160), - [anon_sym_not_DASHin] = ACTIONS(1160), - [anon_sym_starts_DASHwith] = ACTIONS(1160), - [anon_sym_ends_DASHwith] = ACTIONS(1160), - [anon_sym_EQ_TILDE] = ACTIONS(1160), - [anon_sym_BANG_TILDE] = ACTIONS(1160), - [anon_sym_bit_DASHand] = ACTIONS(1160), - [anon_sym_bit_DASHxor] = ACTIONS(1160), - [anon_sym_bit_DASHor] = ACTIONS(1160), - [anon_sym_and] = ACTIONS(1160), - [anon_sym_xor] = ACTIONS(1160), - [anon_sym_or] = ACTIONS(1160), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1160), - [anon_sym_DOT_DOT_LT] = ACTIONS(1160), - [anon_sym_null] = ACTIONS(1160), - [anon_sym_true] = ACTIONS(1160), - [anon_sym_false] = ACTIONS(1160), - [aux_sym__val_number_decimal_token1] = ACTIONS(1158), - [aux_sym__val_number_decimal_token2] = ACTIONS(1160), - [anon_sym_DOT2] = ACTIONS(1158), - [aux_sym__val_number_decimal_token3] = ACTIONS(1160), - [aux_sym__val_number_token1] = ACTIONS(1160), - [aux_sym__val_number_token2] = ACTIONS(1160), - [aux_sym__val_number_token3] = ACTIONS(1160), - [aux_sym__val_number_token4] = ACTIONS(1160), - [aux_sym__val_number_token5] = ACTIONS(1160), - [aux_sym__val_number_token6] = ACTIONS(1160), - [anon_sym_0b] = ACTIONS(1158), - [anon_sym_0o] = ACTIONS(1158), - [anon_sym_0x] = ACTIONS(1158), - [sym_val_date] = ACTIONS(1160), - [anon_sym_DQUOTE] = ACTIONS(1160), - [sym__str_single_quotes] = ACTIONS(1160), - [sym__str_back_ticks] = ACTIONS(1160), - [anon_sym_err_GT] = ACTIONS(1160), - [anon_sym_out_GT] = ACTIONS(1160), - [anon_sym_e_GT] = ACTIONS(1160), - [anon_sym_o_GT] = ACTIONS(1160), - [anon_sym_err_PLUSout_GT] = ACTIONS(1160), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1160), - [anon_sym_o_PLUSe_GT] = ACTIONS(1160), - [anon_sym_e_PLUSo_GT] = ACTIONS(1160), - [aux_sym_unquoted_token1] = ACTIONS(1158), - [anon_sym_POUND] = ACTIONS(3), - }, - [2600] = { - [sym_comment] = STATE(2600), - [anon_sym_LBRACK] = ACTIONS(1192), - [anon_sym_COMMA] = ACTIONS(1192), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_DOLLAR] = ACTIONS(1192), - [anon_sym_GT] = ACTIONS(1190), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_in] = ACTIONS(1190), - [anon_sym_LBRACE] = ACTIONS(1192), - [anon_sym_RBRACE] = ACTIONS(1192), - [anon_sym__] = ACTIONS(1190), - [anon_sym_DOT_DOT] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1190), - [anon_sym_STAR_STAR] = ACTIONS(1192), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_mod] = ACTIONS(1192), - [anon_sym_SLASH_SLASH] = ACTIONS(1192), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_bit_DASHshl] = ACTIONS(1192), - [anon_sym_bit_DASHshr] = ACTIONS(1192), - [anon_sym_EQ_EQ] = ACTIONS(1192), - [anon_sym_BANG_EQ] = ACTIONS(1192), - [anon_sym_LT2] = ACTIONS(1190), - [anon_sym_LT_EQ] = ACTIONS(1192), - [anon_sym_GT_EQ] = ACTIONS(1192), - [anon_sym_not_DASHin] = ACTIONS(1192), - [anon_sym_starts_DASHwith] = ACTIONS(1192), - [anon_sym_ends_DASHwith] = ACTIONS(1192), - [anon_sym_EQ_TILDE] = ACTIONS(1192), - [anon_sym_BANG_TILDE] = ACTIONS(1192), - [anon_sym_bit_DASHand] = ACTIONS(1192), - [anon_sym_bit_DASHxor] = ACTIONS(1192), - [anon_sym_bit_DASHor] = ACTIONS(1192), - [anon_sym_and] = ACTIONS(1192), - [anon_sym_xor] = ACTIONS(1192), - [anon_sym_or] = ACTIONS(1192), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1192), - [anon_sym_DOT_DOT_LT] = ACTIONS(1192), - [anon_sym_null] = ACTIONS(1192), - [anon_sym_true] = ACTIONS(1192), - [anon_sym_false] = ACTIONS(1192), - [aux_sym__val_number_decimal_token1] = ACTIONS(1190), - [aux_sym__val_number_decimal_token2] = ACTIONS(1192), - [anon_sym_DOT2] = ACTIONS(1190), - [aux_sym__val_number_decimal_token3] = ACTIONS(1192), - [aux_sym__val_number_token1] = ACTIONS(1192), - [aux_sym__val_number_token2] = ACTIONS(1192), - [aux_sym__val_number_token3] = ACTIONS(1192), - [aux_sym__val_number_token4] = ACTIONS(1192), - [aux_sym__val_number_token5] = ACTIONS(1192), - [aux_sym__val_number_token6] = ACTIONS(1192), - [anon_sym_0b] = ACTIONS(1190), - [anon_sym_0o] = ACTIONS(1190), - [anon_sym_0x] = ACTIONS(1190), - [sym_val_date] = ACTIONS(1192), - [anon_sym_DQUOTE] = ACTIONS(1192), - [sym__str_single_quotes] = ACTIONS(1192), - [sym__str_back_ticks] = ACTIONS(1192), - [anon_sym_err_GT] = ACTIONS(1192), - [anon_sym_out_GT] = ACTIONS(1192), - [anon_sym_e_GT] = ACTIONS(1192), - [anon_sym_o_GT] = ACTIONS(1192), - [anon_sym_err_PLUSout_GT] = ACTIONS(1192), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1192), - [anon_sym_o_PLUSe_GT] = ACTIONS(1192), - [anon_sym_e_PLUSo_GT] = ACTIONS(1192), - [aux_sym_unquoted_token1] = ACTIONS(1190), - [anon_sym_POUND] = ACTIONS(3), - }, - [2601] = { - [sym_comment] = STATE(2601), - [anon_sym_LBRACK] = ACTIONS(1318), - [anon_sym_COMMA] = ACTIONS(1318), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_DOLLAR] = ACTIONS(1318), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_in] = ACTIONS(1316), - [anon_sym_LBRACE] = ACTIONS(1318), - [anon_sym_RBRACE] = ACTIONS(1318), - [anon_sym__] = ACTIONS(1316), - [anon_sym_DOT_DOT] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_STAR_STAR] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(1316), - [anon_sym_mod] = ACTIONS(1318), - [anon_sym_SLASH_SLASH] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_bit_DASHshl] = ACTIONS(1318), - [anon_sym_bit_DASHshr] = ACTIONS(1318), - [anon_sym_EQ_EQ] = ACTIONS(1318), - [anon_sym_BANG_EQ] = ACTIONS(1318), - [anon_sym_LT2] = ACTIONS(1316), - [anon_sym_LT_EQ] = ACTIONS(1318), - [anon_sym_GT_EQ] = ACTIONS(1318), - [anon_sym_not_DASHin] = ACTIONS(1318), - [anon_sym_starts_DASHwith] = ACTIONS(1318), - [anon_sym_ends_DASHwith] = ACTIONS(1318), - [anon_sym_EQ_TILDE] = ACTIONS(1318), - [anon_sym_BANG_TILDE] = ACTIONS(1318), - [anon_sym_bit_DASHand] = ACTIONS(1318), - [anon_sym_bit_DASHxor] = ACTIONS(1318), - [anon_sym_bit_DASHor] = ACTIONS(1318), - [anon_sym_and] = ACTIONS(1318), - [anon_sym_xor] = ACTIONS(1318), - [anon_sym_or] = ACTIONS(1318), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1318), - [anon_sym_DOT_DOT_LT] = ACTIONS(1318), - [anon_sym_null] = ACTIONS(1318), - [anon_sym_true] = ACTIONS(1318), - [anon_sym_false] = ACTIONS(1318), - [aux_sym__val_number_decimal_token1] = ACTIONS(1316), - [aux_sym__val_number_decimal_token2] = ACTIONS(1318), - [anon_sym_DOT2] = ACTIONS(1316), - [aux_sym__val_number_decimal_token3] = ACTIONS(1318), - [aux_sym__val_number_token1] = ACTIONS(1318), - [aux_sym__val_number_token2] = ACTIONS(1318), - [aux_sym__val_number_token3] = ACTIONS(1318), - [aux_sym__val_number_token4] = ACTIONS(1318), - [aux_sym__val_number_token5] = ACTIONS(1318), - [aux_sym__val_number_token6] = ACTIONS(1318), - [anon_sym_0b] = ACTIONS(1316), - [anon_sym_0o] = ACTIONS(1316), - [anon_sym_0x] = ACTIONS(1316), - [sym_val_date] = ACTIONS(1318), - [anon_sym_DQUOTE] = ACTIONS(1318), - [sym__str_single_quotes] = ACTIONS(1318), - [sym__str_back_ticks] = ACTIONS(1318), - [anon_sym_err_GT] = ACTIONS(1318), - [anon_sym_out_GT] = ACTIONS(1318), - [anon_sym_e_GT] = ACTIONS(1318), - [anon_sym_o_GT] = ACTIONS(1318), - [anon_sym_err_PLUSout_GT] = ACTIONS(1318), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1318), - [anon_sym_o_PLUSe_GT] = ACTIONS(1318), - [anon_sym_e_PLUSo_GT] = ACTIONS(1318), - [aux_sym_unquoted_token1] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(3), - }, - [2602] = { - [sym_comment] = STATE(2602), - [anon_sym_LBRACK] = ACTIONS(961), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(961), - [anon_sym_DOLLAR] = ACTIONS(961), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(961), - [anon_sym__] = ACTIONS(959), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(961), - [anon_sym_SLASH_SLASH] = ACTIONS(961), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(961), - [anon_sym_bit_DASHshr] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(961), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_not_DASHin] = ACTIONS(961), - [anon_sym_starts_DASHwith] = ACTIONS(961), - [anon_sym_ends_DASHwith] = ACTIONS(961), - [anon_sym_EQ_TILDE] = ACTIONS(961), - [anon_sym_BANG_TILDE] = ACTIONS(961), - [anon_sym_bit_DASHand] = ACTIONS(961), - [anon_sym_bit_DASHxor] = ACTIONS(961), - [anon_sym_bit_DASHor] = ACTIONS(961), - [anon_sym_and] = ACTIONS(961), - [anon_sym_xor] = ACTIONS(961), - [anon_sym_or] = ACTIONS(961), - [anon_sym_DOT_DOT_EQ] = ACTIONS(961), - [anon_sym_DOT_DOT_LT] = ACTIONS(961), - [anon_sym_null] = ACTIONS(961), - [anon_sym_true] = ACTIONS(961), - [anon_sym_false] = ACTIONS(961), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(961), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(961), - [aux_sym__val_number_token1] = ACTIONS(961), - [aux_sym__val_number_token2] = ACTIONS(961), - [aux_sym__val_number_token3] = ACTIONS(961), - [aux_sym__val_number_token4] = ACTIONS(961), - [aux_sym__val_number_token5] = ACTIONS(961), - [aux_sym__val_number_token6] = ACTIONS(961), - [anon_sym_0b] = ACTIONS(959), - [anon_sym_0o] = ACTIONS(959), - [anon_sym_0x] = ACTIONS(959), - [sym_val_date] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(961), - [sym__str_single_quotes] = ACTIONS(961), - [sym__str_back_ticks] = ACTIONS(961), - [anon_sym_err_GT] = ACTIONS(961), - [anon_sym_out_GT] = ACTIONS(961), - [anon_sym_e_GT] = ACTIONS(961), - [anon_sym_o_GT] = ACTIONS(961), - [anon_sym_err_PLUSout_GT] = ACTIONS(961), - [anon_sym_out_PLUSerr_GT] = ACTIONS(961), - [anon_sym_o_PLUSe_GT] = ACTIONS(961), - [anon_sym_e_PLUSo_GT] = ACTIONS(961), - [aux_sym_unquoted_token1] = ACTIONS(959), - [anon_sym_POUND] = ACTIONS(3), - }, - [2603] = { - [sym_comment] = STATE(2603), - [anon_sym_LBRACK] = ACTIONS(1412), - [anon_sym_COMMA] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1412), - [anon_sym_DOLLAR] = ACTIONS(1412), - [anon_sym_GT] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_in] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_RBRACE] = ACTIONS(1412), - [anon_sym__] = ACTIONS(1410), - [anon_sym_DOT_DOT] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_SLASH] = ACTIONS(1410), - [anon_sym_mod] = ACTIONS(1412), - [anon_sym_SLASH_SLASH] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_bit_DASHshl] = ACTIONS(1412), - [anon_sym_bit_DASHshr] = ACTIONS(1412), - [anon_sym_EQ_EQ] = ACTIONS(1412), - [anon_sym_BANG_EQ] = ACTIONS(1412), - [anon_sym_LT2] = ACTIONS(1410), - [anon_sym_LT_EQ] = ACTIONS(1412), - [anon_sym_GT_EQ] = ACTIONS(1412), - [anon_sym_not_DASHin] = ACTIONS(1412), - [anon_sym_starts_DASHwith] = ACTIONS(1412), - [anon_sym_ends_DASHwith] = ACTIONS(1412), - [anon_sym_EQ_TILDE] = ACTIONS(1412), - [anon_sym_BANG_TILDE] = ACTIONS(1412), - [anon_sym_bit_DASHand] = ACTIONS(1412), - [anon_sym_bit_DASHxor] = ACTIONS(1412), - [anon_sym_bit_DASHor] = ACTIONS(1412), - [anon_sym_and] = ACTIONS(1412), - [anon_sym_xor] = ACTIONS(1412), - [anon_sym_or] = ACTIONS(1412), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1412), - [anon_sym_DOT_DOT_LT] = ACTIONS(1412), - [anon_sym_null] = ACTIONS(1412), - [anon_sym_true] = ACTIONS(1412), - [anon_sym_false] = ACTIONS(1412), - [aux_sym__val_number_decimal_token1] = ACTIONS(1410), - [aux_sym__val_number_decimal_token2] = ACTIONS(1412), - [anon_sym_DOT2] = ACTIONS(1410), - [aux_sym__val_number_decimal_token3] = ACTIONS(1412), - [aux_sym__val_number_token1] = ACTIONS(1412), - [aux_sym__val_number_token2] = ACTIONS(1412), - [aux_sym__val_number_token3] = ACTIONS(1412), - [aux_sym__val_number_token4] = ACTIONS(1412), - [aux_sym__val_number_token5] = ACTIONS(1412), - [aux_sym__val_number_token6] = ACTIONS(1412), - [anon_sym_0b] = ACTIONS(1410), - [anon_sym_0o] = ACTIONS(1410), - [anon_sym_0x] = ACTIONS(1410), - [sym_val_date] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1412), - [sym__str_single_quotes] = ACTIONS(1412), - [sym__str_back_ticks] = ACTIONS(1412), - [anon_sym_err_GT] = ACTIONS(1412), - [anon_sym_out_GT] = ACTIONS(1412), - [anon_sym_e_GT] = ACTIONS(1412), - [anon_sym_o_GT] = ACTIONS(1412), - [anon_sym_err_PLUSout_GT] = ACTIONS(1412), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1412), - [anon_sym_o_PLUSe_GT] = ACTIONS(1412), - [anon_sym_e_PLUSo_GT] = ACTIONS(1412), - [aux_sym_unquoted_token1] = ACTIONS(1410), - [anon_sym_POUND] = ACTIONS(3), - }, - [2604] = { - [sym_comment] = STATE(2604), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_COMMA] = ACTIONS(1288), - [anon_sym_LPAREN] = ACTIONS(1288), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_GT] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1286), - [anon_sym_in] = ACTIONS(1286), - [anon_sym_LBRACE] = ACTIONS(1288), - [anon_sym_RBRACE] = ACTIONS(1288), - [anon_sym__] = ACTIONS(1286), - [anon_sym_DOT_DOT] = ACTIONS(1286), - [anon_sym_STAR] = ACTIONS(1286), - [anon_sym_STAR_STAR] = ACTIONS(1288), - [anon_sym_PLUS_PLUS] = ACTIONS(1288), - [anon_sym_SLASH] = ACTIONS(1286), - [anon_sym_mod] = ACTIONS(1288), - [anon_sym_SLASH_SLASH] = ACTIONS(1288), - [anon_sym_PLUS] = ACTIONS(1286), - [anon_sym_bit_DASHshl] = ACTIONS(1288), - [anon_sym_bit_DASHshr] = ACTIONS(1288), - [anon_sym_EQ_EQ] = ACTIONS(1288), - [anon_sym_BANG_EQ] = ACTIONS(1288), - [anon_sym_LT2] = ACTIONS(1286), - [anon_sym_LT_EQ] = ACTIONS(1288), - [anon_sym_GT_EQ] = ACTIONS(1288), - [anon_sym_not_DASHin] = ACTIONS(1288), - [anon_sym_starts_DASHwith] = ACTIONS(1288), - [anon_sym_ends_DASHwith] = ACTIONS(1288), - [anon_sym_EQ_TILDE] = ACTIONS(1288), - [anon_sym_BANG_TILDE] = ACTIONS(1288), - [anon_sym_bit_DASHand] = ACTIONS(1288), - [anon_sym_bit_DASHxor] = ACTIONS(1288), - [anon_sym_bit_DASHor] = ACTIONS(1288), - [anon_sym_and] = ACTIONS(1288), - [anon_sym_xor] = ACTIONS(1288), - [anon_sym_or] = ACTIONS(1288), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1288), - [anon_sym_DOT_DOT_LT] = ACTIONS(1288), - [anon_sym_null] = ACTIONS(1288), - [anon_sym_true] = ACTIONS(1288), - [anon_sym_false] = ACTIONS(1288), - [aux_sym__val_number_decimal_token1] = ACTIONS(1286), - [aux_sym__val_number_decimal_token2] = ACTIONS(1288), - [anon_sym_DOT2] = ACTIONS(1286), - [aux_sym__val_number_decimal_token3] = 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(1288), - [aux_sym__val_number_token5] = ACTIONS(1288), - [aux_sym__val_number_token6] = ACTIONS(1288), - [anon_sym_0b] = ACTIONS(1286), - [anon_sym_0o] = ACTIONS(1286), - [anon_sym_0x] = ACTIONS(1286), - [sym_val_date] = ACTIONS(1288), - [anon_sym_DQUOTE] = ACTIONS(1288), - [sym__str_single_quotes] = ACTIONS(1288), - [sym__str_back_ticks] = ACTIONS(1288), - [anon_sym_err_GT] = ACTIONS(1288), - [anon_sym_out_GT] = ACTIONS(1288), - [anon_sym_e_GT] = ACTIONS(1288), - [anon_sym_o_GT] = ACTIONS(1288), - [anon_sym_err_PLUSout_GT] = ACTIONS(1288), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1288), - [anon_sym_o_PLUSe_GT] = ACTIONS(1288), - [anon_sym_e_PLUSo_GT] = ACTIONS(1288), - [aux_sym_unquoted_token1] = ACTIONS(1286), - [anon_sym_POUND] = ACTIONS(3), - }, - [2605] = { - [sym_comment] = STATE(2605), - [ts_builtin_sym_end] = ACTIONS(2583), - [anon_sym_export] = ACTIONS(2581), - [anon_sym_alias] = ACTIONS(2581), - [anon_sym_let] = ACTIONS(2581), - [anon_sym_let_DASHenv] = ACTIONS(2581), - [anon_sym_mut] = ACTIONS(2581), - [anon_sym_const] = ACTIONS(2581), - [anon_sym_SEMI] = ACTIONS(2581), - [sym_cmd_identifier] = ACTIONS(2581), - [anon_sym_LF] = ACTIONS(2583), - [anon_sym_def] = ACTIONS(2581), - [anon_sym_export_DASHenv] = ACTIONS(2581), - [anon_sym_extern] = ACTIONS(2581), - [anon_sym_module] = ACTIONS(2581), - [anon_sym_use] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2581), - [anon_sym_error] = ACTIONS(2581), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_break] = ACTIONS(2581), - [anon_sym_continue] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2581), - [anon_sym_loop] = ACTIONS(2581), - [anon_sym_while] = ACTIONS(2581), - [anon_sym_do] = ACTIONS(2581), - [anon_sym_if] = ACTIONS(2581), - [anon_sym_match] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2581), - [anon_sym_DOT_DOT] = ACTIONS(2581), - [anon_sym_try] = ACTIONS(2581), - [anon_sym_return] = ACTIONS(2581), - [anon_sym_source] = ACTIONS(2581), - [anon_sym_source_DASHenv] = ACTIONS(2581), - [anon_sym_register] = ACTIONS(2581), - [anon_sym_hide] = ACTIONS(2581), - [anon_sym_hide_DASHenv] = ACTIONS(2581), - [anon_sym_overlay] = ACTIONS(2581), - [anon_sym_where] = ACTIONS(2581), - [anon_sym_not] = ACTIONS(2581), - [anon_sym_DOT] = ACTIONS(6337), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2581), - [anon_sym_DOT_DOT_LT] = ACTIONS(2581), - [aux_sym__immediate_decimal_token2] = ACTIONS(6339), - [anon_sym_null] = ACTIONS(2581), - [anon_sym_true] = ACTIONS(2581), - [anon_sym_false] = ACTIONS(2581), - [aux_sym__val_number_decimal_token1] = ACTIONS(2581), - [aux_sym__val_number_decimal_token2] = ACTIONS(2581), - [anon_sym_DOT2] = ACTIONS(2581), - [aux_sym__val_number_decimal_token3] = ACTIONS(2581), - [aux_sym__val_number_token1] = ACTIONS(2581), - [aux_sym__val_number_token2] = ACTIONS(2581), - [aux_sym__val_number_token3] = ACTIONS(2581), - [aux_sym__val_number_token4] = ACTIONS(2581), - [aux_sym__val_number_token5] = ACTIONS(2581), - [aux_sym__val_number_token6] = ACTIONS(2581), - [anon_sym_0b] = ACTIONS(2581), - [anon_sym_0o] = ACTIONS(2581), - [anon_sym_0x] = ACTIONS(2581), - [sym_val_date] = ACTIONS(2581), - [anon_sym_DQUOTE] = ACTIONS(2581), - [sym__str_single_quotes] = ACTIONS(2581), - [sym__str_back_ticks] = ACTIONS(2581), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2581), - [anon_sym_CARET] = ACTIONS(2581), - [anon_sym_POUND] = ACTIONS(113), - }, - [2606] = { - [sym_comment] = STATE(2606), - [anon_sym_LBRACK] = ACTIONS(1304), - [anon_sym_COMMA] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1304), - [anon_sym_DOLLAR] = ACTIONS(1304), - [anon_sym_GT] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_in] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_RBRACE] = ACTIONS(1304), - [anon_sym__] = ACTIONS(1302), - [anon_sym_DOT_DOT] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_STAR_STAR] = ACTIONS(1304), - [anon_sym_PLUS_PLUS] = ACTIONS(1304), - [anon_sym_SLASH] = ACTIONS(1302), - [anon_sym_mod] = ACTIONS(1304), - [anon_sym_SLASH_SLASH] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_bit_DASHshl] = ACTIONS(1304), - [anon_sym_bit_DASHshr] = ACTIONS(1304), - [anon_sym_EQ_EQ] = ACTIONS(1304), - [anon_sym_BANG_EQ] = ACTIONS(1304), - [anon_sym_LT2] = ACTIONS(1302), - [anon_sym_LT_EQ] = ACTIONS(1304), - [anon_sym_GT_EQ] = ACTIONS(1304), - [anon_sym_not_DASHin] = ACTIONS(1304), - [anon_sym_starts_DASHwith] = ACTIONS(1304), - [anon_sym_ends_DASHwith] = ACTIONS(1304), - [anon_sym_EQ_TILDE] = ACTIONS(1304), - [anon_sym_BANG_TILDE] = ACTIONS(1304), - [anon_sym_bit_DASHand] = ACTIONS(1304), - [anon_sym_bit_DASHxor] = ACTIONS(1304), - [anon_sym_bit_DASHor] = ACTIONS(1304), - [anon_sym_and] = ACTIONS(1304), - [anon_sym_xor] = ACTIONS(1304), - [anon_sym_or] = ACTIONS(1304), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1304), - [anon_sym_DOT_DOT_LT] = ACTIONS(1304), - [anon_sym_null] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1304), - [anon_sym_false] = ACTIONS(1304), - [aux_sym__val_number_decimal_token1] = ACTIONS(1302), - [aux_sym__val_number_decimal_token2] = ACTIONS(1304), - [anon_sym_DOT2] = ACTIONS(1302), - [aux_sym__val_number_decimal_token3] = ACTIONS(1304), - [aux_sym__val_number_token1] = ACTIONS(1304), - [aux_sym__val_number_token2] = ACTIONS(1304), - [aux_sym__val_number_token3] = ACTIONS(1304), - [aux_sym__val_number_token4] = ACTIONS(1304), - [aux_sym__val_number_token5] = ACTIONS(1304), - [aux_sym__val_number_token6] = ACTIONS(1304), - [anon_sym_0b] = ACTIONS(1302), - [anon_sym_0o] = ACTIONS(1302), - [anon_sym_0x] = ACTIONS(1302), - [sym_val_date] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1304), - [sym__str_single_quotes] = ACTIONS(1304), - [sym__str_back_ticks] = ACTIONS(1304), - [anon_sym_err_GT] = ACTIONS(1304), - [anon_sym_out_GT] = ACTIONS(1304), - [anon_sym_e_GT] = ACTIONS(1304), - [anon_sym_o_GT] = ACTIONS(1304), - [anon_sym_err_PLUSout_GT] = ACTIONS(1304), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1304), - [anon_sym_o_PLUSe_GT] = ACTIONS(1304), - [anon_sym_e_PLUSo_GT] = ACTIONS(1304), - [aux_sym_unquoted_token1] = ACTIONS(1302), - [anon_sym_POUND] = ACTIONS(3), - }, - [2607] = { - [sym_comment] = STATE(2607), - [anon_sym_LBRACK] = ACTIONS(1322), - [anon_sym_COMMA] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1322), - [anon_sym_DOLLAR] = ACTIONS(1322), - [anon_sym_GT] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_in] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_RBRACE] = ACTIONS(1322), - [anon_sym__] = ACTIONS(1320), - [anon_sym_DOT_DOT] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_STAR_STAR] = ACTIONS(1322), - [anon_sym_PLUS_PLUS] = ACTIONS(1322), - [anon_sym_SLASH] = ACTIONS(1320), - [anon_sym_mod] = ACTIONS(1322), - [anon_sym_SLASH_SLASH] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1320), - [anon_sym_bit_DASHshl] = ACTIONS(1322), - [anon_sym_bit_DASHshr] = ACTIONS(1322), - [anon_sym_EQ_EQ] = ACTIONS(1322), - [anon_sym_BANG_EQ] = ACTIONS(1322), - [anon_sym_LT2] = ACTIONS(1320), - [anon_sym_LT_EQ] = ACTIONS(1322), - [anon_sym_GT_EQ] = ACTIONS(1322), - [anon_sym_not_DASHin] = ACTIONS(1322), - [anon_sym_starts_DASHwith] = ACTIONS(1322), - [anon_sym_ends_DASHwith] = ACTIONS(1322), - [anon_sym_EQ_TILDE] = ACTIONS(1322), - [anon_sym_BANG_TILDE] = ACTIONS(1322), - [anon_sym_bit_DASHand] = ACTIONS(1322), - [anon_sym_bit_DASHxor] = ACTIONS(1322), - [anon_sym_bit_DASHor] = ACTIONS(1322), - [anon_sym_and] = ACTIONS(1322), - [anon_sym_xor] = ACTIONS(1322), - [anon_sym_or] = ACTIONS(1322), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1322), - [anon_sym_DOT_DOT_LT] = ACTIONS(1322), - [anon_sym_null] = ACTIONS(1322), - [anon_sym_true] = ACTIONS(1322), - [anon_sym_false] = ACTIONS(1322), - [aux_sym__val_number_decimal_token1] = ACTIONS(1320), - [aux_sym__val_number_decimal_token2] = ACTIONS(1322), - [anon_sym_DOT2] = ACTIONS(1320), - [aux_sym__val_number_decimal_token3] = ACTIONS(1322), - [aux_sym__val_number_token1] = ACTIONS(1322), - [aux_sym__val_number_token2] = ACTIONS(1322), - [aux_sym__val_number_token3] = ACTIONS(1322), - [aux_sym__val_number_token4] = ACTIONS(1322), - [aux_sym__val_number_token5] = ACTIONS(1322), - [aux_sym__val_number_token6] = ACTIONS(1322), - [anon_sym_0b] = ACTIONS(1320), - [anon_sym_0o] = ACTIONS(1320), - [anon_sym_0x] = ACTIONS(1320), - [sym_val_date] = ACTIONS(1322), - [anon_sym_DQUOTE] = ACTIONS(1322), - [sym__str_single_quotes] = ACTIONS(1322), - [sym__str_back_ticks] = ACTIONS(1322), - [anon_sym_err_GT] = ACTIONS(1322), - [anon_sym_out_GT] = ACTIONS(1322), - [anon_sym_e_GT] = ACTIONS(1322), - [anon_sym_o_GT] = ACTIONS(1322), - [anon_sym_err_PLUSout_GT] = ACTIONS(1322), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1322), - [anon_sym_o_PLUSe_GT] = ACTIONS(1322), - [anon_sym_e_PLUSo_GT] = ACTIONS(1322), - [aux_sym_unquoted_token1] = ACTIONS(1320), - [anon_sym_POUND] = ACTIONS(3), - }, - [2608] = { - [sym_comment] = STATE(2608), - [anon_sym_LBRACK] = ACTIONS(1344), - [anon_sym_COMMA] = ACTIONS(1344), - [anon_sym_LPAREN] = ACTIONS(1344), - [anon_sym_DOLLAR] = ACTIONS(1344), - [anon_sym_GT] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_in] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_RBRACE] = ACTIONS(1344), - [anon_sym__] = ACTIONS(1342), - [anon_sym_DOT_DOT] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_STAR_STAR] = ACTIONS(1344), - [anon_sym_PLUS_PLUS] = ACTIONS(1344), - [anon_sym_SLASH] = ACTIONS(1342), - [anon_sym_mod] = ACTIONS(1344), - [anon_sym_SLASH_SLASH] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_bit_DASHshl] = ACTIONS(1344), - [anon_sym_bit_DASHshr] = ACTIONS(1344), - [anon_sym_EQ_EQ] = ACTIONS(1344), - [anon_sym_BANG_EQ] = ACTIONS(1344), - [anon_sym_LT2] = ACTIONS(1342), - [anon_sym_LT_EQ] = ACTIONS(1344), - [anon_sym_GT_EQ] = ACTIONS(1344), - [anon_sym_not_DASHin] = ACTIONS(1344), - [anon_sym_starts_DASHwith] = ACTIONS(1344), - [anon_sym_ends_DASHwith] = ACTIONS(1344), - [anon_sym_EQ_TILDE] = ACTIONS(1344), - [anon_sym_BANG_TILDE] = ACTIONS(1344), - [anon_sym_bit_DASHand] = ACTIONS(1344), - [anon_sym_bit_DASHxor] = ACTIONS(1344), - [anon_sym_bit_DASHor] = ACTIONS(1344), - [anon_sym_and] = ACTIONS(1344), - [anon_sym_xor] = ACTIONS(1344), - [anon_sym_or] = ACTIONS(1344), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1344), - [anon_sym_DOT_DOT_LT] = ACTIONS(1344), - [anon_sym_null] = ACTIONS(1344), - [anon_sym_true] = ACTIONS(1344), - [anon_sym_false] = ACTIONS(1344), - [aux_sym__val_number_decimal_token1] = ACTIONS(1342), - [aux_sym__val_number_decimal_token2] = ACTIONS(1344), - [anon_sym_DOT2] = ACTIONS(1342), - [aux_sym__val_number_decimal_token3] = ACTIONS(1344), - [aux_sym__val_number_token1] = ACTIONS(1344), - [aux_sym__val_number_token2] = ACTIONS(1344), - [aux_sym__val_number_token3] = ACTIONS(1344), - [aux_sym__val_number_token4] = ACTIONS(1344), - [aux_sym__val_number_token5] = ACTIONS(1344), - [aux_sym__val_number_token6] = ACTIONS(1344), - [anon_sym_0b] = ACTIONS(1342), - [anon_sym_0o] = ACTIONS(1342), - [anon_sym_0x] = ACTIONS(1342), - [sym_val_date] = ACTIONS(1344), - [anon_sym_DQUOTE] = ACTIONS(1344), - [sym__str_single_quotes] = ACTIONS(1344), - [sym__str_back_ticks] = ACTIONS(1344), - [anon_sym_err_GT] = ACTIONS(1344), - [anon_sym_out_GT] = ACTIONS(1344), - [anon_sym_e_GT] = ACTIONS(1344), - [anon_sym_o_GT] = ACTIONS(1344), - [anon_sym_err_PLUSout_GT] = ACTIONS(1344), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1344), - [anon_sym_o_PLUSe_GT] = ACTIONS(1344), - [anon_sym_e_PLUSo_GT] = ACTIONS(1344), - [aux_sym_unquoted_token1] = ACTIONS(1342), - [anon_sym_POUND] = ACTIONS(3), - }, - [2609] = { - [sym_comment] = STATE(2609), - [anon_sym_LBRACK] = ACTIONS(1348), - [anon_sym_COMMA] = ACTIONS(1348), - [anon_sym_LPAREN] = ACTIONS(1348), - [anon_sym_DOLLAR] = ACTIONS(1348), - [anon_sym_GT] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_in] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_RBRACE] = ACTIONS(1348), - [anon_sym__] = ACTIONS(1346), - [anon_sym_DOT_DOT] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_STAR_STAR] = ACTIONS(1348), - [anon_sym_PLUS_PLUS] = ACTIONS(1348), - [anon_sym_SLASH] = ACTIONS(1346), - [anon_sym_mod] = ACTIONS(1348), - [anon_sym_SLASH_SLASH] = ACTIONS(1348), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_bit_DASHshl] = ACTIONS(1348), - [anon_sym_bit_DASHshr] = ACTIONS(1348), - [anon_sym_EQ_EQ] = ACTIONS(1348), - [anon_sym_BANG_EQ] = ACTIONS(1348), - [anon_sym_LT2] = ACTIONS(1346), - [anon_sym_LT_EQ] = ACTIONS(1348), - [anon_sym_GT_EQ] = ACTIONS(1348), - [anon_sym_not_DASHin] = ACTIONS(1348), - [anon_sym_starts_DASHwith] = ACTIONS(1348), - [anon_sym_ends_DASHwith] = ACTIONS(1348), - [anon_sym_EQ_TILDE] = ACTIONS(1348), - [anon_sym_BANG_TILDE] = ACTIONS(1348), - [anon_sym_bit_DASHand] = ACTIONS(1348), - [anon_sym_bit_DASHxor] = ACTIONS(1348), - [anon_sym_bit_DASHor] = ACTIONS(1348), - [anon_sym_and] = ACTIONS(1348), - [anon_sym_xor] = ACTIONS(1348), - [anon_sym_or] = ACTIONS(1348), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1348), - [anon_sym_DOT_DOT_LT] = ACTIONS(1348), - [anon_sym_null] = ACTIONS(1348), - [anon_sym_true] = ACTIONS(1348), - [anon_sym_false] = ACTIONS(1348), - [aux_sym__val_number_decimal_token1] = ACTIONS(1346), - [aux_sym__val_number_decimal_token2] = ACTIONS(1348), - [anon_sym_DOT2] = ACTIONS(1346), - [aux_sym__val_number_decimal_token3] = ACTIONS(1348), - [aux_sym__val_number_token1] = ACTIONS(1348), - [aux_sym__val_number_token2] = ACTIONS(1348), - [aux_sym__val_number_token3] = ACTIONS(1348), - [aux_sym__val_number_token4] = ACTIONS(1348), - [aux_sym__val_number_token5] = ACTIONS(1348), - [aux_sym__val_number_token6] = ACTIONS(1348), - [anon_sym_0b] = ACTIONS(1346), - [anon_sym_0o] = ACTIONS(1346), - [anon_sym_0x] = ACTIONS(1346), - [sym_val_date] = ACTIONS(1348), - [anon_sym_DQUOTE] = ACTIONS(1348), - [sym__str_single_quotes] = ACTIONS(1348), - [sym__str_back_ticks] = ACTIONS(1348), - [anon_sym_err_GT] = ACTIONS(1348), - [anon_sym_out_GT] = ACTIONS(1348), - [anon_sym_e_GT] = ACTIONS(1348), - [anon_sym_o_GT] = ACTIONS(1348), - [anon_sym_err_PLUSout_GT] = ACTIONS(1348), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1348), - [anon_sym_o_PLUSe_GT] = ACTIONS(1348), - [anon_sym_e_PLUSo_GT] = ACTIONS(1348), - [aux_sym_unquoted_token1] = ACTIONS(1346), - [anon_sym_POUND] = ACTIONS(3), - }, - [2610] = { - [sym_comment] = STATE(2610), - [anon_sym_LBRACK] = ACTIONS(1364), - [anon_sym_COMMA] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1364), - [anon_sym_DOLLAR] = ACTIONS(1364), - [anon_sym_GT] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_in] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_RBRACE] = ACTIONS(1364), - [anon_sym__] = ACTIONS(1362), - [anon_sym_DOT_DOT] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_STAR_STAR] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_SLASH] = ACTIONS(1362), - [anon_sym_mod] = ACTIONS(1364), - [anon_sym_SLASH_SLASH] = ACTIONS(1364), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_bit_DASHshl] = ACTIONS(1364), - [anon_sym_bit_DASHshr] = ACTIONS(1364), - [anon_sym_EQ_EQ] = ACTIONS(1364), - [anon_sym_BANG_EQ] = ACTIONS(1364), - [anon_sym_LT2] = ACTIONS(1362), - [anon_sym_LT_EQ] = ACTIONS(1364), - [anon_sym_GT_EQ] = ACTIONS(1364), - [anon_sym_not_DASHin] = ACTIONS(1364), - [anon_sym_starts_DASHwith] = ACTIONS(1364), - [anon_sym_ends_DASHwith] = ACTIONS(1364), - [anon_sym_EQ_TILDE] = ACTIONS(1364), - [anon_sym_BANG_TILDE] = ACTIONS(1364), - [anon_sym_bit_DASHand] = ACTIONS(1364), - [anon_sym_bit_DASHxor] = ACTIONS(1364), - [anon_sym_bit_DASHor] = ACTIONS(1364), - [anon_sym_and] = ACTIONS(1364), - [anon_sym_xor] = ACTIONS(1364), - [anon_sym_or] = ACTIONS(1364), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1364), - [anon_sym_DOT_DOT_LT] = ACTIONS(1364), - [anon_sym_null] = ACTIONS(1364), - [anon_sym_true] = ACTIONS(1364), - [anon_sym_false] = ACTIONS(1364), - [aux_sym__val_number_decimal_token1] = ACTIONS(1362), - [aux_sym__val_number_decimal_token2] = ACTIONS(1364), - [anon_sym_DOT2] = ACTIONS(1362), - [aux_sym__val_number_decimal_token3] = ACTIONS(1364), - [aux_sym__val_number_token1] = ACTIONS(1364), - [aux_sym__val_number_token2] = ACTIONS(1364), - [aux_sym__val_number_token3] = ACTIONS(1364), - [aux_sym__val_number_token4] = ACTIONS(1364), - [aux_sym__val_number_token5] = ACTIONS(1364), - [aux_sym__val_number_token6] = ACTIONS(1364), - [anon_sym_0b] = ACTIONS(1362), - [anon_sym_0o] = ACTIONS(1362), - [anon_sym_0x] = ACTIONS(1362), - [sym_val_date] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1364), - [sym__str_single_quotes] = ACTIONS(1364), - [sym__str_back_ticks] = ACTIONS(1364), - [anon_sym_err_GT] = ACTIONS(1364), - [anon_sym_out_GT] = ACTIONS(1364), - [anon_sym_e_GT] = ACTIONS(1364), - [anon_sym_o_GT] = ACTIONS(1364), - [anon_sym_err_PLUSout_GT] = ACTIONS(1364), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1364), - [anon_sym_o_PLUSe_GT] = ACTIONS(1364), - [anon_sym_e_PLUSo_GT] = ACTIONS(1364), - [aux_sym_unquoted_token1] = ACTIONS(1362), - [anon_sym_POUND] = ACTIONS(3), - }, - [2611] = { - [sym_comment] = STATE(2611), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_COMMA] = ACTIONS(1408), - [anon_sym_LPAREN] = ACTIONS(1408), - [anon_sym_DOLLAR] = ACTIONS(1408), - [anon_sym_GT] = ACTIONS(1406), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_in] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_RBRACE] = ACTIONS(1408), - [anon_sym__] = ACTIONS(1406), - [anon_sym_DOT_DOT] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1406), - [anon_sym_STAR_STAR] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1408), - [anon_sym_SLASH] = ACTIONS(1406), - [anon_sym_mod] = ACTIONS(1408), - [anon_sym_SLASH_SLASH] = ACTIONS(1408), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_bit_DASHshl] = ACTIONS(1408), - [anon_sym_bit_DASHshr] = ACTIONS(1408), - [anon_sym_EQ_EQ] = ACTIONS(1408), - [anon_sym_BANG_EQ] = ACTIONS(1408), - [anon_sym_LT2] = ACTIONS(1406), - [anon_sym_LT_EQ] = ACTIONS(1408), - [anon_sym_GT_EQ] = ACTIONS(1408), - [anon_sym_not_DASHin] = ACTIONS(1408), - [anon_sym_starts_DASHwith] = ACTIONS(1408), - [anon_sym_ends_DASHwith] = ACTIONS(1408), - [anon_sym_EQ_TILDE] = ACTIONS(1408), - [anon_sym_BANG_TILDE] = ACTIONS(1408), - [anon_sym_bit_DASHand] = ACTIONS(1408), - [anon_sym_bit_DASHxor] = ACTIONS(1408), - [anon_sym_bit_DASHor] = ACTIONS(1408), - [anon_sym_and] = ACTIONS(1408), - [anon_sym_xor] = ACTIONS(1408), - [anon_sym_or] = ACTIONS(1408), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1408), - [anon_sym_DOT_DOT_LT] = ACTIONS(1408), - [anon_sym_null] = ACTIONS(1408), - [anon_sym_true] = ACTIONS(1408), - [anon_sym_false] = ACTIONS(1408), - [aux_sym__val_number_decimal_token1] = ACTIONS(1406), - [aux_sym__val_number_decimal_token2] = ACTIONS(1408), - [anon_sym_DOT2] = ACTIONS(1406), - [aux_sym__val_number_decimal_token3] = ACTIONS(1408), - [aux_sym__val_number_token1] = ACTIONS(1408), - [aux_sym__val_number_token2] = ACTIONS(1408), - [aux_sym__val_number_token3] = ACTIONS(1408), - [aux_sym__val_number_token4] = ACTIONS(1408), - [aux_sym__val_number_token5] = ACTIONS(1408), - [aux_sym__val_number_token6] = ACTIONS(1408), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1406), - [anon_sym_0x] = ACTIONS(1406), - [sym_val_date] = ACTIONS(1408), - [anon_sym_DQUOTE] = ACTIONS(1408), - [sym__str_single_quotes] = ACTIONS(1408), - [sym__str_back_ticks] = ACTIONS(1408), - [anon_sym_err_GT] = ACTIONS(1408), - [anon_sym_out_GT] = ACTIONS(1408), - [anon_sym_e_GT] = ACTIONS(1408), - [anon_sym_o_GT] = ACTIONS(1408), - [anon_sym_err_PLUSout_GT] = ACTIONS(1408), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1408), - [anon_sym_o_PLUSe_GT] = ACTIONS(1408), - [anon_sym_e_PLUSo_GT] = ACTIONS(1408), - [aux_sym_unquoted_token1] = ACTIONS(1406), - [anon_sym_POUND] = ACTIONS(3), - }, - [2612] = { - [sym_comment] = STATE(2612), - [anon_sym_LBRACK] = ACTIONS(1296), - [anon_sym_COMMA] = ACTIONS(1296), - [anon_sym_LPAREN] = ACTIONS(1296), - [anon_sym_DOLLAR] = ACTIONS(1296), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_in] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(1296), - [anon_sym__] = ACTIONS(1294), - [anon_sym_DOT_DOT] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_STAR_STAR] = ACTIONS(1296), - [anon_sym_PLUS_PLUS] = ACTIONS(1296), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_mod] = ACTIONS(1296), - [anon_sym_SLASH_SLASH] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_bit_DASHshl] = ACTIONS(1296), - [anon_sym_bit_DASHshr] = ACTIONS(1296), - [anon_sym_EQ_EQ] = ACTIONS(1296), - [anon_sym_BANG_EQ] = ACTIONS(1296), - [anon_sym_LT2] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1296), - [anon_sym_GT_EQ] = ACTIONS(1296), - [anon_sym_not_DASHin] = ACTIONS(1296), - [anon_sym_starts_DASHwith] = ACTIONS(1296), - [anon_sym_ends_DASHwith] = ACTIONS(1296), - [anon_sym_EQ_TILDE] = ACTIONS(1296), - [anon_sym_BANG_TILDE] = ACTIONS(1296), - [anon_sym_bit_DASHand] = ACTIONS(1296), - [anon_sym_bit_DASHxor] = ACTIONS(1296), - [anon_sym_bit_DASHor] = ACTIONS(1296), - [anon_sym_and] = ACTIONS(1296), - [anon_sym_xor] = ACTIONS(1296), - [anon_sym_or] = ACTIONS(1296), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1296), - [anon_sym_DOT_DOT_LT] = ACTIONS(1296), - [anon_sym_null] = ACTIONS(1296), - [anon_sym_true] = ACTIONS(1296), - [anon_sym_false] = ACTIONS(1296), - [aux_sym__val_number_decimal_token1] = ACTIONS(1294), - [aux_sym__val_number_decimal_token2] = ACTIONS(1296), - [anon_sym_DOT2] = ACTIONS(1294), - [aux_sym__val_number_decimal_token3] = 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(1296), - [aux_sym__val_number_token5] = ACTIONS(1296), - [aux_sym__val_number_token6] = ACTIONS(1296), - [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_err_GT] = ACTIONS(1296), - [anon_sym_out_GT] = ACTIONS(1296), - [anon_sym_e_GT] = ACTIONS(1296), - [anon_sym_o_GT] = ACTIONS(1296), - [anon_sym_err_PLUSout_GT] = ACTIONS(1296), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1296), - [anon_sym_o_PLUSe_GT] = ACTIONS(1296), - [anon_sym_e_PLUSo_GT] = ACTIONS(1296), - [aux_sym_unquoted_token1] = ACTIONS(1294), - [anon_sym_POUND] = ACTIONS(3), - }, - [2613] = { - [sym_comment] = STATE(2613), - [anon_sym_LBRACK] = ACTIONS(1296), - [anon_sym_COMMA] = ACTIONS(1296), - [anon_sym_LPAREN] = ACTIONS(1296), - [anon_sym_DOLLAR] = ACTIONS(1296), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_in] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(1296), - [anon_sym__] = ACTIONS(1294), - [anon_sym_DOT_DOT] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_STAR_STAR] = ACTIONS(1296), - [anon_sym_PLUS_PLUS] = ACTIONS(1296), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_mod] = ACTIONS(1296), - [anon_sym_SLASH_SLASH] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_bit_DASHshl] = ACTIONS(1296), - [anon_sym_bit_DASHshr] = ACTIONS(1296), - [anon_sym_EQ_EQ] = ACTIONS(1296), - [anon_sym_BANG_EQ] = ACTIONS(1296), - [anon_sym_LT2] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1296), - [anon_sym_GT_EQ] = ACTIONS(1296), - [anon_sym_not_DASHin] = ACTIONS(1296), - [anon_sym_starts_DASHwith] = ACTIONS(1296), - [anon_sym_ends_DASHwith] = ACTIONS(1296), - [anon_sym_EQ_TILDE] = ACTIONS(1296), - [anon_sym_BANG_TILDE] = ACTIONS(1296), - [anon_sym_bit_DASHand] = ACTIONS(1296), - [anon_sym_bit_DASHxor] = ACTIONS(1296), - [anon_sym_bit_DASHor] = ACTIONS(1296), - [anon_sym_and] = ACTIONS(1296), - [anon_sym_xor] = ACTIONS(1296), - [anon_sym_or] = ACTIONS(1296), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1296), - [anon_sym_DOT_DOT_LT] = ACTIONS(1296), - [anon_sym_null] = ACTIONS(1296), - [anon_sym_true] = ACTIONS(1296), - [anon_sym_false] = ACTIONS(1296), - [aux_sym__val_number_decimal_token1] = ACTIONS(1294), - [aux_sym__val_number_decimal_token2] = ACTIONS(1296), - [anon_sym_DOT2] = ACTIONS(1294), - [aux_sym__val_number_decimal_token3] = 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(1296), - [aux_sym__val_number_token5] = ACTIONS(1296), - [aux_sym__val_number_token6] = ACTIONS(1296), - [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_err_GT] = ACTIONS(1296), - [anon_sym_out_GT] = ACTIONS(1296), - [anon_sym_e_GT] = ACTIONS(1296), - [anon_sym_o_GT] = ACTIONS(1296), - [anon_sym_err_PLUSout_GT] = ACTIONS(1296), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1296), - [anon_sym_o_PLUSe_GT] = ACTIONS(1296), - [anon_sym_e_PLUSo_GT] = ACTIONS(1296), - [aux_sym_unquoted_token1] = ACTIONS(1294), - [anon_sym_POUND] = ACTIONS(3), - }, - [2614] = { - [sym_comment] = STATE(2614), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_COMMA] = ACTIONS(1310), - [anon_sym_LPAREN] = ACTIONS(1310), - [anon_sym_DOLLAR] = ACTIONS(1310), - [anon_sym_GT] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_in] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_RBRACE] = ACTIONS(1310), - [anon_sym__] = ACTIONS(1308), - [anon_sym_DOT_DOT] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_STAR_STAR] = ACTIONS(1310), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_SLASH] = ACTIONS(1308), - [anon_sym_mod] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_bit_DASHshl] = ACTIONS(1310), - [anon_sym_bit_DASHshr] = ACTIONS(1310), - [anon_sym_EQ_EQ] = ACTIONS(1310), - [anon_sym_BANG_EQ] = ACTIONS(1310), - [anon_sym_LT2] = ACTIONS(1308), - [anon_sym_LT_EQ] = ACTIONS(1310), - [anon_sym_GT_EQ] = ACTIONS(1310), - [anon_sym_not_DASHin] = ACTIONS(1310), - [anon_sym_starts_DASHwith] = ACTIONS(1310), - [anon_sym_ends_DASHwith] = ACTIONS(1310), - [anon_sym_EQ_TILDE] = ACTIONS(1310), - [anon_sym_BANG_TILDE] = ACTIONS(1310), - [anon_sym_bit_DASHand] = ACTIONS(1310), - [anon_sym_bit_DASHxor] = ACTIONS(1310), - [anon_sym_bit_DASHor] = ACTIONS(1310), - [anon_sym_and] = ACTIONS(1310), - [anon_sym_xor] = ACTIONS(1310), - [anon_sym_or] = ACTIONS(1310), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1310), - [anon_sym_DOT_DOT_LT] = ACTIONS(1310), - [anon_sym_null] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [aux_sym__val_number_decimal_token1] = ACTIONS(1308), - [aux_sym__val_number_decimal_token2] = ACTIONS(1310), - [anon_sym_DOT2] = ACTIONS(1308), - [aux_sym__val_number_decimal_token3] = ACTIONS(1310), - [aux_sym__val_number_token1] = ACTIONS(1310), - [aux_sym__val_number_token2] = ACTIONS(1310), - [aux_sym__val_number_token3] = ACTIONS(1310), - [aux_sym__val_number_token4] = ACTIONS(1310), - [aux_sym__val_number_token5] = ACTIONS(1310), - [aux_sym__val_number_token6] = ACTIONS(1310), - [anon_sym_0b] = ACTIONS(1308), - [anon_sym_0o] = ACTIONS(1308), - [anon_sym_0x] = ACTIONS(1308), - [sym_val_date] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1310), - [sym__str_single_quotes] = ACTIONS(1310), - [sym__str_back_ticks] = ACTIONS(1310), - [anon_sym_err_GT] = ACTIONS(1310), - [anon_sym_out_GT] = ACTIONS(1310), - [anon_sym_e_GT] = ACTIONS(1310), - [anon_sym_o_GT] = ACTIONS(1310), - [anon_sym_err_PLUSout_GT] = ACTIONS(1310), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1310), - [anon_sym_o_PLUSe_GT] = ACTIONS(1310), - [anon_sym_e_PLUSo_GT] = ACTIONS(1310), - [aux_sym_unquoted_token1] = ACTIONS(1308), - [anon_sym_POUND] = ACTIONS(3), - }, - [2615] = { - [sym_comment] = STATE(2615), - [anon_sym_LBRACK] = ACTIONS(1314), - [anon_sym_COMMA] = ACTIONS(1314), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_DOLLAR] = ACTIONS(1314), - [anon_sym_GT] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_in] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1314), - [anon_sym_RBRACE] = ACTIONS(1314), - [anon_sym__] = ACTIONS(1312), - [anon_sym_DOT_DOT] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_STAR_STAR] = ACTIONS(1314), - [anon_sym_PLUS_PLUS] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(1312), - [anon_sym_mod] = ACTIONS(1314), - [anon_sym_SLASH_SLASH] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_bit_DASHshl] = ACTIONS(1314), - [anon_sym_bit_DASHshr] = ACTIONS(1314), - [anon_sym_EQ_EQ] = ACTIONS(1314), - [anon_sym_BANG_EQ] = ACTIONS(1314), - [anon_sym_LT2] = ACTIONS(1312), - [anon_sym_LT_EQ] = ACTIONS(1314), - [anon_sym_GT_EQ] = ACTIONS(1314), - [anon_sym_not_DASHin] = ACTIONS(1314), - [anon_sym_starts_DASHwith] = ACTIONS(1314), - [anon_sym_ends_DASHwith] = ACTIONS(1314), - [anon_sym_EQ_TILDE] = ACTIONS(1314), - [anon_sym_BANG_TILDE] = ACTIONS(1314), - [anon_sym_bit_DASHand] = ACTIONS(1314), - [anon_sym_bit_DASHxor] = ACTIONS(1314), - [anon_sym_bit_DASHor] = ACTIONS(1314), - [anon_sym_and] = ACTIONS(1314), - [anon_sym_xor] = ACTIONS(1314), - [anon_sym_or] = ACTIONS(1314), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1314), - [anon_sym_DOT_DOT_LT] = ACTIONS(1314), - [anon_sym_null] = ACTIONS(1314), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), - [aux_sym__val_number_decimal_token1] = ACTIONS(1312), - [aux_sym__val_number_decimal_token2] = ACTIONS(1314), - [anon_sym_DOT2] = ACTIONS(1312), - [aux_sym__val_number_decimal_token3] = ACTIONS(1314), - [aux_sym__val_number_token1] = ACTIONS(1314), - [aux_sym__val_number_token2] = ACTIONS(1314), - [aux_sym__val_number_token3] = ACTIONS(1314), - [aux_sym__val_number_token4] = ACTIONS(1314), - [aux_sym__val_number_token5] = ACTIONS(1314), - [aux_sym__val_number_token6] = ACTIONS(1314), - [anon_sym_0b] = ACTIONS(1312), - [anon_sym_0o] = ACTIONS(1312), - [anon_sym_0x] = ACTIONS(1312), - [sym_val_date] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1314), - [sym__str_single_quotes] = ACTIONS(1314), - [sym__str_back_ticks] = ACTIONS(1314), - [anon_sym_err_GT] = ACTIONS(1314), - [anon_sym_out_GT] = ACTIONS(1314), - [anon_sym_e_GT] = ACTIONS(1314), - [anon_sym_o_GT] = ACTIONS(1314), - [anon_sym_err_PLUSout_GT] = ACTIONS(1314), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1314), - [anon_sym_o_PLUSe_GT] = ACTIONS(1314), - [anon_sym_e_PLUSo_GT] = ACTIONS(1314), - [aux_sym_unquoted_token1] = ACTIONS(1312), - [anon_sym_POUND] = ACTIONS(3), - }, - [2616] = { - [sym_comment] = STATE(2616), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_COMMA] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(1188), - [anon_sym_DOLLAR] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_in] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1188), - [anon_sym_RBRACE] = ACTIONS(1188), - [anon_sym__] = ACTIONS(1186), - [anon_sym_DOT_DOT] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_STAR_STAR] = ACTIONS(1188), - [anon_sym_PLUS_PLUS] = ACTIONS(1188), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_mod] = ACTIONS(1188), - [anon_sym_SLASH_SLASH] = ACTIONS(1188), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_bit_DASHshl] = ACTIONS(1188), - [anon_sym_bit_DASHshr] = ACTIONS(1188), - [anon_sym_EQ_EQ] = ACTIONS(1188), - [anon_sym_BANG_EQ] = ACTIONS(1188), - [anon_sym_LT2] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1188), - [anon_sym_GT_EQ] = ACTIONS(1188), - [anon_sym_not_DASHin] = ACTIONS(1188), - [anon_sym_starts_DASHwith] = ACTIONS(1188), - [anon_sym_ends_DASHwith] = ACTIONS(1188), - [anon_sym_EQ_TILDE] = ACTIONS(1188), - [anon_sym_BANG_TILDE] = ACTIONS(1188), - [anon_sym_bit_DASHand] = ACTIONS(1188), - [anon_sym_bit_DASHxor] = ACTIONS(1188), - [anon_sym_bit_DASHor] = ACTIONS(1188), - [anon_sym_and] = ACTIONS(1188), - [anon_sym_xor] = ACTIONS(1188), - [anon_sym_or] = ACTIONS(1188), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1188), - [anon_sym_DOT_DOT_LT] = ACTIONS(1188), - [anon_sym_null] = ACTIONS(1188), - [anon_sym_true] = ACTIONS(1188), - [anon_sym_false] = ACTIONS(1188), - [aux_sym__val_number_decimal_token1] = ACTIONS(1186), - [aux_sym__val_number_decimal_token2] = ACTIONS(1188), - [anon_sym_DOT2] = ACTIONS(1186), - [aux_sym__val_number_decimal_token3] = ACTIONS(1188), - [aux_sym__val_number_token1] = ACTIONS(1188), - [aux_sym__val_number_token2] = ACTIONS(1188), - [aux_sym__val_number_token3] = ACTIONS(1188), - [aux_sym__val_number_token4] = ACTIONS(1188), - [aux_sym__val_number_token5] = ACTIONS(1188), - [aux_sym__val_number_token6] = ACTIONS(1188), - [anon_sym_0b] = ACTIONS(1186), - [anon_sym_0o] = ACTIONS(1186), - [anon_sym_0x] = ACTIONS(1186), - [sym_val_date] = ACTIONS(1188), - [anon_sym_DQUOTE] = ACTIONS(1188), - [sym__str_single_quotes] = ACTIONS(1188), - [sym__str_back_ticks] = ACTIONS(1188), - [anon_sym_err_GT] = ACTIONS(1188), - [anon_sym_out_GT] = ACTIONS(1188), - [anon_sym_e_GT] = ACTIONS(1188), - [anon_sym_o_GT] = ACTIONS(1188), - [anon_sym_err_PLUSout_GT] = ACTIONS(1188), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1188), - [anon_sym_o_PLUSe_GT] = ACTIONS(1188), - [anon_sym_e_PLUSo_GT] = ACTIONS(1188), - [aux_sym_unquoted_token1] = ACTIONS(1186), - [anon_sym_POUND] = ACTIONS(3), - }, - [2617] = { - [sym_comment] = STATE(2617), - [anon_sym_LBRACK] = ACTIONS(1334), - [anon_sym_COMMA] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1334), - [anon_sym_GT] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_in] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_RBRACE] = ACTIONS(1334), - [anon_sym__] = ACTIONS(1332), - [anon_sym_DOT_DOT] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_STAR_STAR] = ACTIONS(1334), - [anon_sym_PLUS_PLUS] = ACTIONS(1334), - [anon_sym_SLASH] = ACTIONS(1332), - [anon_sym_mod] = ACTIONS(1334), - [anon_sym_SLASH_SLASH] = ACTIONS(1334), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_bit_DASHshl] = ACTIONS(1334), - [anon_sym_bit_DASHshr] = ACTIONS(1334), - [anon_sym_EQ_EQ] = ACTIONS(1334), - [anon_sym_BANG_EQ] = ACTIONS(1334), - [anon_sym_LT2] = ACTIONS(1332), - [anon_sym_LT_EQ] = ACTIONS(1334), - [anon_sym_GT_EQ] = ACTIONS(1334), - [anon_sym_not_DASHin] = ACTIONS(1334), - [anon_sym_starts_DASHwith] = ACTIONS(1334), - [anon_sym_ends_DASHwith] = ACTIONS(1334), - [anon_sym_EQ_TILDE] = ACTIONS(1334), - [anon_sym_BANG_TILDE] = ACTIONS(1334), - [anon_sym_bit_DASHand] = ACTIONS(1334), - [anon_sym_bit_DASHxor] = ACTIONS(1334), - [anon_sym_bit_DASHor] = ACTIONS(1334), - [anon_sym_and] = ACTIONS(1334), - [anon_sym_xor] = ACTIONS(1334), - [anon_sym_or] = ACTIONS(1334), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1334), - [anon_sym_DOT_DOT_LT] = ACTIONS(1334), - [anon_sym_null] = ACTIONS(1334), - [anon_sym_true] = ACTIONS(1334), - [anon_sym_false] = ACTIONS(1334), - [aux_sym__val_number_decimal_token1] = ACTIONS(1332), - [aux_sym__val_number_decimal_token2] = ACTIONS(1334), - [anon_sym_DOT2] = ACTIONS(1332), - [aux_sym__val_number_decimal_token3] = ACTIONS(1334), - [aux_sym__val_number_token1] = ACTIONS(1334), - [aux_sym__val_number_token2] = ACTIONS(1334), - [aux_sym__val_number_token3] = ACTIONS(1334), - [aux_sym__val_number_token4] = ACTIONS(1334), - [aux_sym__val_number_token5] = ACTIONS(1334), - [aux_sym__val_number_token6] = ACTIONS(1334), - [anon_sym_0b] = ACTIONS(1332), - [anon_sym_0o] = ACTIONS(1332), - [anon_sym_0x] = ACTIONS(1332), - [sym_val_date] = ACTIONS(1334), - [anon_sym_DQUOTE] = ACTIONS(1334), - [sym__str_single_quotes] = ACTIONS(1334), - [sym__str_back_ticks] = ACTIONS(1334), - [anon_sym_err_GT] = ACTIONS(1334), - [anon_sym_out_GT] = ACTIONS(1334), - [anon_sym_e_GT] = ACTIONS(1334), - [anon_sym_o_GT] = ACTIONS(1334), - [anon_sym_err_PLUSout_GT] = ACTIONS(1334), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1334), - [anon_sym_o_PLUSe_GT] = ACTIONS(1334), - [anon_sym_e_PLUSo_GT] = ACTIONS(1334), - [aux_sym_unquoted_token1] = ACTIONS(1332), - [anon_sym_POUND] = ACTIONS(3), - }, - [2618] = { - [sym_comment] = STATE(2618), - [anon_sym_LBRACK] = ACTIONS(1338), - [anon_sym_COMMA] = ACTIONS(1338), - [anon_sym_LPAREN] = ACTIONS(1338), - [anon_sym_DOLLAR] = ACTIONS(1338), - [anon_sym_GT] = ACTIONS(1336), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_in] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_RBRACE] = ACTIONS(1338), - [anon_sym__] = ACTIONS(1336), - [anon_sym_DOT_DOT] = ACTIONS(1336), - [anon_sym_STAR] = ACTIONS(1336), - [anon_sym_STAR_STAR] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [anon_sym_SLASH] = ACTIONS(1336), - [anon_sym_mod] = ACTIONS(1338), - [anon_sym_SLASH_SLASH] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1336), - [anon_sym_bit_DASHshl] = ACTIONS(1338), - [anon_sym_bit_DASHshr] = ACTIONS(1338), - [anon_sym_EQ_EQ] = ACTIONS(1338), - [anon_sym_BANG_EQ] = ACTIONS(1338), - [anon_sym_LT2] = ACTIONS(1336), - [anon_sym_LT_EQ] = ACTIONS(1338), - [anon_sym_GT_EQ] = ACTIONS(1338), - [anon_sym_not_DASHin] = ACTIONS(1338), - [anon_sym_starts_DASHwith] = ACTIONS(1338), - [anon_sym_ends_DASHwith] = ACTIONS(1338), - [anon_sym_EQ_TILDE] = ACTIONS(1338), - [anon_sym_BANG_TILDE] = ACTIONS(1338), - [anon_sym_bit_DASHand] = ACTIONS(1338), - [anon_sym_bit_DASHxor] = ACTIONS(1338), - [anon_sym_bit_DASHor] = ACTIONS(1338), - [anon_sym_and] = ACTIONS(1338), - [anon_sym_xor] = ACTIONS(1338), - [anon_sym_or] = ACTIONS(1338), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1338), - [anon_sym_DOT_DOT_LT] = ACTIONS(1338), - [anon_sym_null] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1338), - [anon_sym_false] = ACTIONS(1338), - [aux_sym__val_number_decimal_token1] = ACTIONS(1336), - [aux_sym__val_number_decimal_token2] = ACTIONS(1338), - [anon_sym_DOT2] = ACTIONS(1336), - [aux_sym__val_number_decimal_token3] = ACTIONS(1338), - [aux_sym__val_number_token1] = ACTIONS(1338), - [aux_sym__val_number_token2] = ACTIONS(1338), - [aux_sym__val_number_token3] = ACTIONS(1338), - [aux_sym__val_number_token4] = ACTIONS(1338), - [aux_sym__val_number_token5] = ACTIONS(1338), - [aux_sym__val_number_token6] = ACTIONS(1338), - [anon_sym_0b] = ACTIONS(1336), - [anon_sym_0o] = ACTIONS(1336), - [anon_sym_0x] = ACTIONS(1336), - [sym_val_date] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym__str_single_quotes] = ACTIONS(1338), - [sym__str_back_ticks] = ACTIONS(1338), - [anon_sym_err_GT] = ACTIONS(1338), - [anon_sym_out_GT] = ACTIONS(1338), - [anon_sym_e_GT] = ACTIONS(1338), - [anon_sym_o_GT] = ACTIONS(1338), - [anon_sym_err_PLUSout_GT] = ACTIONS(1338), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1338), - [anon_sym_o_PLUSe_GT] = ACTIONS(1338), - [anon_sym_e_PLUSo_GT] = ACTIONS(1338), - [aux_sym_unquoted_token1] = ACTIONS(1336), - [anon_sym_POUND] = ACTIONS(3), - }, - [2619] = { - [sym_comment] = STATE(2619), - [anon_sym_LBRACK] = ACTIONS(1352), - [anon_sym_COMMA] = ACTIONS(1352), - [anon_sym_LPAREN] = ACTIONS(1352), - [anon_sym_DOLLAR] = ACTIONS(1352), - [anon_sym_GT] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_in] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_RBRACE] = ACTIONS(1352), - [anon_sym__] = ACTIONS(1350), - [anon_sym_DOT_DOT] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_STAR_STAR] = ACTIONS(1352), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [anon_sym_SLASH] = ACTIONS(1350), - [anon_sym_mod] = ACTIONS(1352), - [anon_sym_SLASH_SLASH] = ACTIONS(1352), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_bit_DASHshl] = ACTIONS(1352), - [anon_sym_bit_DASHshr] = ACTIONS(1352), - [anon_sym_EQ_EQ] = ACTIONS(1352), - [anon_sym_BANG_EQ] = ACTIONS(1352), - [anon_sym_LT2] = ACTIONS(1350), - [anon_sym_LT_EQ] = ACTIONS(1352), - [anon_sym_GT_EQ] = ACTIONS(1352), - [anon_sym_not_DASHin] = ACTIONS(1352), - [anon_sym_starts_DASHwith] = ACTIONS(1352), - [anon_sym_ends_DASHwith] = ACTIONS(1352), - [anon_sym_EQ_TILDE] = ACTIONS(1352), - [anon_sym_BANG_TILDE] = ACTIONS(1352), - [anon_sym_bit_DASHand] = ACTIONS(1352), - [anon_sym_bit_DASHxor] = ACTIONS(1352), - [anon_sym_bit_DASHor] = ACTIONS(1352), - [anon_sym_and] = ACTIONS(1352), - [anon_sym_xor] = ACTIONS(1352), - [anon_sym_or] = ACTIONS(1352), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1352), - [anon_sym_DOT_DOT_LT] = ACTIONS(1352), - [anon_sym_null] = ACTIONS(1352), - [anon_sym_true] = ACTIONS(1352), - [anon_sym_false] = ACTIONS(1352), - [aux_sym__val_number_decimal_token1] = ACTIONS(1350), - [aux_sym__val_number_decimal_token2] = ACTIONS(1352), - [anon_sym_DOT2] = ACTIONS(1350), - [aux_sym__val_number_decimal_token3] = ACTIONS(1352), - [aux_sym__val_number_token1] = ACTIONS(1352), - [aux_sym__val_number_token2] = ACTIONS(1352), - [aux_sym__val_number_token3] = ACTIONS(1352), - [aux_sym__val_number_token4] = ACTIONS(1352), - [aux_sym__val_number_token5] = ACTIONS(1352), - [aux_sym__val_number_token6] = ACTIONS(1352), - [anon_sym_0b] = ACTIONS(1350), - [anon_sym_0o] = ACTIONS(1350), - [anon_sym_0x] = ACTIONS(1350), - [sym_val_date] = ACTIONS(1352), - [anon_sym_DQUOTE] = ACTIONS(1352), - [sym__str_single_quotes] = ACTIONS(1352), - [sym__str_back_ticks] = ACTIONS(1352), - [anon_sym_err_GT] = ACTIONS(1352), - [anon_sym_out_GT] = ACTIONS(1352), - [anon_sym_e_GT] = ACTIONS(1352), - [anon_sym_o_GT] = ACTIONS(1352), - [anon_sym_err_PLUSout_GT] = ACTIONS(1352), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1352), - [anon_sym_o_PLUSe_GT] = ACTIONS(1352), - [anon_sym_e_PLUSo_GT] = ACTIONS(1352), - [aux_sym_unquoted_token1] = ACTIONS(1350), - [anon_sym_POUND] = ACTIONS(3), - }, - [2620] = { - [sym_comment] = STATE(2620), - [ts_builtin_sym_end] = ACTIONS(938), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_error] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_as] = ACTIONS(936), - [anon_sym_where] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [anon_sym_POUND] = ACTIONS(113), - }, - [2621] = { - [sym_comment] = STATE(2621), - [ts_builtin_sym_end] = ACTIONS(1290), - [anon_sym_export] = ACTIONS(1243), - [anon_sym_alias] = ACTIONS(1243), - [anon_sym_let] = ACTIONS(1243), - [anon_sym_let_DASHenv] = ACTIONS(1243), - [anon_sym_mut] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1243), - [sym_cmd_identifier] = ACTIONS(1243), - [anon_sym_LF] = ACTIONS(1290), - [anon_sym_def] = ACTIONS(1243), - [anon_sym_export_DASHenv] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1243), - [anon_sym_module] = ACTIONS(1243), - [anon_sym_use] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_error] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_loop] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_match] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_try] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_source] = ACTIONS(1243), - [anon_sym_source_DASHenv] = ACTIONS(1243), - [anon_sym_register] = ACTIONS(1243), - [anon_sym_hide] = ACTIONS(1243), - [anon_sym_hide_DASHenv] = ACTIONS(1243), - [anon_sym_overlay] = ACTIONS(1243), - [anon_sym_as] = ACTIONS(1243), - [anon_sym_where] = ACTIONS(1243), - [anon_sym_not] = ACTIONS(1243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1243), - [anon_sym_DOT_DOT_LT] = ACTIONS(1243), - [anon_sym_null] = ACTIONS(1243), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_decimal_token2] = ACTIONS(1243), - [anon_sym_DOT2] = ACTIONS(1243), - [aux_sym__val_number_decimal_token3] = ACTIONS(1243), - [aux_sym__val_number_token1] = ACTIONS(1243), - [aux_sym__val_number_token2] = ACTIONS(1243), - [aux_sym__val_number_token3] = ACTIONS(1243), - [aux_sym__val_number_token4] = ACTIONS(1243), - [aux_sym__val_number_token5] = ACTIONS(1243), - [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_0b] = ACTIONS(1243), - [anon_sym_0o] = ACTIONS(1243), - [anon_sym_0x] = ACTIONS(1243), - [sym_val_date] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym__str_single_quotes] = ACTIONS(1243), - [sym__str_back_ticks] = ACTIONS(1243), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1243), - [anon_sym_CARET] = ACTIONS(1243), - [anon_sym_POUND] = ACTIONS(113), - }, - [2622] = { - [sym_comment] = STATE(2622), - [ts_builtin_sym_end] = ACTIONS(1416), - [anon_sym_export] = ACTIONS(1414), - [anon_sym_alias] = ACTIONS(1414), - [anon_sym_let] = ACTIONS(1414), - [anon_sym_let_DASHenv] = ACTIONS(1414), - [anon_sym_mut] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_SEMI] = ACTIONS(1414), - [sym_cmd_identifier] = ACTIONS(1414), - [anon_sym_LF] = ACTIONS(1416), - [anon_sym_def] = ACTIONS(1414), - [anon_sym_export_DASHenv] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym_module] = ACTIONS(1414), - [anon_sym_use] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_DOLLAR] = ACTIONS(1414), - [anon_sym_error] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_loop] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1414), - [anon_sym_DOT_DOT] = ACTIONS(1414), - [anon_sym_try] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_source] = ACTIONS(1414), - [anon_sym_source_DASHenv] = ACTIONS(1414), - [anon_sym_register] = ACTIONS(1414), - [anon_sym_hide] = ACTIONS(1414), - [anon_sym_hide_DASHenv] = ACTIONS(1414), - [anon_sym_overlay] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_where] = ACTIONS(1414), - [anon_sym_not] = ACTIONS(1414), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1414), - [anon_sym_DOT_DOT_LT] = ACTIONS(1414), - [anon_sym_null] = ACTIONS(1414), - [anon_sym_true] = ACTIONS(1414), - [anon_sym_false] = ACTIONS(1414), - [aux_sym__val_number_decimal_token1] = ACTIONS(1414), - [aux_sym__val_number_decimal_token2] = ACTIONS(1414), - [anon_sym_DOT2] = ACTIONS(1414), - [aux_sym__val_number_decimal_token3] = ACTIONS(1414), - [aux_sym__val_number_token1] = ACTIONS(1414), - [aux_sym__val_number_token2] = ACTIONS(1414), - [aux_sym__val_number_token3] = ACTIONS(1414), - [aux_sym__val_number_token4] = ACTIONS(1414), - [aux_sym__val_number_token5] = ACTIONS(1414), - [aux_sym__val_number_token6] = ACTIONS(1414), - [anon_sym_0b] = ACTIONS(1414), - [anon_sym_0o] = ACTIONS(1414), - [anon_sym_0x] = ACTIONS(1414), - [sym_val_date] = ACTIONS(1414), - [anon_sym_DQUOTE] = ACTIONS(1414), - [sym__str_single_quotes] = ACTIONS(1414), - [sym__str_back_ticks] = ACTIONS(1414), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1414), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1414), - [anon_sym_POUND] = ACTIONS(113), - }, - [2623] = { - [sym_comment] = STATE(2623), - [ts_builtin_sym_end] = ACTIONS(1416), - [anon_sym_export] = ACTIONS(1414), - [anon_sym_alias] = ACTIONS(1414), - [anon_sym_let] = ACTIONS(1414), - [anon_sym_let_DASHenv] = ACTIONS(1414), - [anon_sym_mut] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_SEMI] = ACTIONS(1414), - [sym_cmd_identifier] = ACTIONS(1414), - [anon_sym_LF] = ACTIONS(1416), - [anon_sym_def] = ACTIONS(1414), - [anon_sym_export_DASHenv] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym_module] = ACTIONS(1414), - [anon_sym_use] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_DOLLAR] = ACTIONS(1414), - [anon_sym_error] = ACTIONS(1414), - [anon_sym_DASH_DASH] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_loop] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1414), - [anon_sym_DOT_DOT] = ACTIONS(1414), - [anon_sym_try] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_source] = ACTIONS(1414), - [anon_sym_source_DASHenv] = ACTIONS(1414), - [anon_sym_register] = ACTIONS(1414), - [anon_sym_hide] = ACTIONS(1414), - [anon_sym_hide_DASHenv] = ACTIONS(1414), - [anon_sym_overlay] = ACTIONS(1414), - [anon_sym_as] = ACTIONS(1414), - [anon_sym_where] = ACTIONS(1414), - [anon_sym_not] = ACTIONS(1414), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1414), - [anon_sym_DOT_DOT_LT] = ACTIONS(1414), - [anon_sym_null] = ACTIONS(1414), - [anon_sym_true] = ACTIONS(1414), - [anon_sym_false] = ACTIONS(1414), - [aux_sym__val_number_decimal_token1] = ACTIONS(1414), - [aux_sym__val_number_decimal_token2] = ACTIONS(1414), - [anon_sym_DOT2] = ACTIONS(1414), - [aux_sym__val_number_decimal_token3] = ACTIONS(1414), - [aux_sym__val_number_token1] = ACTIONS(1414), - [aux_sym__val_number_token2] = ACTIONS(1414), - [aux_sym__val_number_token3] = ACTIONS(1414), - [aux_sym__val_number_token4] = ACTIONS(1414), - [aux_sym__val_number_token5] = ACTIONS(1414), - [aux_sym__val_number_token6] = ACTIONS(1414), - [anon_sym_0b] = ACTIONS(1414), - [anon_sym_0o] = ACTIONS(1414), - [anon_sym_0x] = ACTIONS(1414), - [sym_val_date] = ACTIONS(1414), - [anon_sym_DQUOTE] = ACTIONS(1414), - [sym__str_single_quotes] = ACTIONS(1414), - [sym__str_back_ticks] = ACTIONS(1414), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1414), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1414), - [anon_sym_POUND] = ACTIONS(113), - }, - [2624] = { - [sym_comment] = STATE(2624), - [ts_builtin_sym_end] = ACTIONS(1420), - [anon_sym_export] = ACTIONS(1418), - [anon_sym_alias] = ACTIONS(1418), - [anon_sym_let] = ACTIONS(1418), - [anon_sym_let_DASHenv] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(1418), - [sym_cmd_identifier] = ACTIONS(1418), - [anon_sym_LF] = ACTIONS(1420), - [anon_sym_def] = ACTIONS(1418), - [anon_sym_export_DASHenv] = ACTIONS(1418), - [anon_sym_extern] = ACTIONS(1418), - [anon_sym_module] = ACTIONS(1418), - [anon_sym_use] = ACTIONS(1418), - [anon_sym_LBRACK] = ACTIONS(1418), - [anon_sym_LPAREN] = ACTIONS(1418), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_error] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_loop] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_match] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_DOT_DOT] = ACTIONS(1418), - [anon_sym_try] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_source] = ACTIONS(1418), - [anon_sym_source_DASHenv] = ACTIONS(1418), - [anon_sym_register] = ACTIONS(1418), - [anon_sym_hide] = ACTIONS(1418), - [anon_sym_hide_DASHenv] = ACTIONS(1418), - [anon_sym_overlay] = ACTIONS(1418), - [anon_sym_as] = ACTIONS(1418), - [anon_sym_where] = ACTIONS(1418), - [anon_sym_not] = ACTIONS(1418), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1418), - [anon_sym_DOT_DOT_LT] = ACTIONS(1418), - [anon_sym_null] = ACTIONS(1418), - [anon_sym_true] = ACTIONS(1418), - [anon_sym_false] = ACTIONS(1418), - [aux_sym__val_number_decimal_token1] = ACTIONS(1418), - [aux_sym__val_number_decimal_token2] = ACTIONS(1418), - [anon_sym_DOT2] = ACTIONS(1418), - [aux_sym__val_number_decimal_token3] = ACTIONS(1418), - [aux_sym__val_number_token1] = ACTIONS(1418), - [aux_sym__val_number_token2] = ACTIONS(1418), - [aux_sym__val_number_token3] = ACTIONS(1418), - [aux_sym__val_number_token4] = ACTIONS(1418), - [aux_sym__val_number_token5] = ACTIONS(1418), - [aux_sym__val_number_token6] = ACTIONS(1418), - [anon_sym_0b] = ACTIONS(1418), - [anon_sym_0o] = ACTIONS(1418), - [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1418), - [anon_sym_DQUOTE] = ACTIONS(1418), - [sym__str_single_quotes] = ACTIONS(1418), - [sym__str_back_ticks] = ACTIONS(1418), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_POUND] = ACTIONS(113), - }, - [2625] = { - [sym_comment] = STATE(2625), - [anon_sym_SEMI] = ACTIONS(1194), - [anon_sym_LF] = ACTIONS(1196), - [anon_sym_LBRACK] = ACTIONS(1194), - [anon_sym_LPAREN] = ACTIONS(1194), - [anon_sym_RPAREN] = ACTIONS(1194), - [anon_sym_PIPE] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1194), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_in] = ACTIONS(1198), - [anon_sym_LBRACE] = ACTIONS(1194), - [anon_sym_RBRACE] = ACTIONS(1194), - [anon_sym_DOT_DOT] = ACTIONS(1194), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_STAR_STAR] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_SLASH] = ACTIONS(1198), - [anon_sym_mod] = ACTIONS(1198), - [anon_sym_SLASH_SLASH] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1198), - [anon_sym_bit_DASHshl] = ACTIONS(1198), - [anon_sym_bit_DASHshr] = ACTIONS(1198), - [anon_sym_EQ_EQ] = ACTIONS(1198), - [anon_sym_BANG_EQ] = ACTIONS(1198), - [anon_sym_LT2] = ACTIONS(1198), - [anon_sym_LT_EQ] = ACTIONS(1198), - [anon_sym_GT_EQ] = ACTIONS(1198), - [anon_sym_not_DASHin] = ACTIONS(1198), - [anon_sym_starts_DASHwith] = ACTIONS(1198), - [anon_sym_ends_DASHwith] = ACTIONS(1198), - [anon_sym_EQ_TILDE] = ACTIONS(1198), - [anon_sym_BANG_TILDE] = ACTIONS(1198), - [anon_sym_bit_DASHand] = ACTIONS(1198), - [anon_sym_bit_DASHxor] = ACTIONS(1198), - [anon_sym_bit_DASHor] = ACTIONS(1198), - [anon_sym_and] = ACTIONS(1198), - [anon_sym_xor] = ACTIONS(1198), - [anon_sym_or] = ACTIONS(1198), - [anon_sym_not] = ACTIONS(1194), - [anon_sym_DOT_DOT2] = ACTIONS(6147), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1194), - [anon_sym_DOT_DOT_LT] = ACTIONS(1194), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(6149), - [anon_sym_DOT_DOT_LT2] = ACTIONS(6149), - [anon_sym_null] = ACTIONS(1194), - [anon_sym_true] = ACTIONS(1194), - [anon_sym_false] = ACTIONS(1194), - [aux_sym__val_number_decimal_token1] = ACTIONS(1194), - [aux_sym__val_number_decimal_token2] = ACTIONS(1194), - [anon_sym_DOT2] = ACTIONS(1194), - [aux_sym__val_number_decimal_token3] = ACTIONS(1194), - [aux_sym__val_number_token1] = ACTIONS(1194), - [aux_sym__val_number_token2] = ACTIONS(1194), - [aux_sym__val_number_token3] = ACTIONS(1194), - [aux_sym__val_number_token4] = ACTIONS(1194), - [aux_sym__val_number_token5] = ACTIONS(1194), - [aux_sym__val_number_token6] = ACTIONS(1194), - [anon_sym_0b] = ACTIONS(1194), - [anon_sym_0o] = ACTIONS(1194), - [anon_sym_0x] = ACTIONS(1194), - [sym_val_date] = ACTIONS(1194), - [anon_sym_DQUOTE] = ACTIONS(1194), - [sym__str_single_quotes] = ACTIONS(1194), - [sym__str_back_ticks] = ACTIONS(1194), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1194), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1194), - [anon_sym_POUND] = ACTIONS(113), - }, - [2626] = { - [sym_comment] = STATE(2626), - [anon_sym_export] = ACTIONS(1172), - [anon_sym_alias] = ACTIONS(1172), - [anon_sym_let] = ACTIONS(1172), - [anon_sym_let_DASHenv] = ACTIONS(1172), - [anon_sym_mut] = ACTIONS(1172), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(1172), - [sym_cmd_identifier] = ACTIONS(1172), - [anon_sym_LF] = ACTIONS(1174), - [anon_sym_def] = ACTIONS(1172), - [anon_sym_export_DASHenv] = ACTIONS(1172), - [anon_sym_extern] = ACTIONS(1172), - [anon_sym_module] = ACTIONS(1172), - [anon_sym_use] = ACTIONS(1172), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_LPAREN] = ACTIONS(1172), - [anon_sym_RPAREN] = ACTIONS(1172), - [anon_sym_DOLLAR] = ACTIONS(1172), - [anon_sym_error] = ACTIONS(1172), - [anon_sym_DASH] = ACTIONS(1172), - [anon_sym_break] = ACTIONS(1172), - [anon_sym_continue] = ACTIONS(1172), - [anon_sym_for] = ACTIONS(1172), - [anon_sym_loop] = ACTIONS(1172), - [anon_sym_while] = ACTIONS(1172), - [anon_sym_do] = ACTIONS(1172), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_match] = ACTIONS(1172), - [anon_sym_LBRACE] = ACTIONS(1172), - [anon_sym_RBRACE] = ACTIONS(1172), - [anon_sym_DOT_DOT] = ACTIONS(1172), - [anon_sym_try] = ACTIONS(1172), - [anon_sym_return] = ACTIONS(1172), - [anon_sym_source] = ACTIONS(1172), - [anon_sym_source_DASHenv] = ACTIONS(1172), - [anon_sym_register] = ACTIONS(1172), - [anon_sym_hide] = ACTIONS(1172), - [anon_sym_hide_DASHenv] = ACTIONS(1172), - [anon_sym_overlay] = ACTIONS(1172), - [anon_sym_STAR] = ACTIONS(1172), - [anon_sym_where] = ACTIONS(1172), - [anon_sym_not] = ACTIONS(1172), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1172), - [anon_sym_DOT_DOT_LT] = ACTIONS(1172), - [anon_sym_null] = ACTIONS(1172), - [anon_sym_true] = ACTIONS(1172), - [anon_sym_false] = ACTIONS(1172), - [aux_sym__val_number_decimal_token1] = ACTIONS(1172), - [aux_sym__val_number_decimal_token2] = ACTIONS(1172), - [anon_sym_DOT2] = ACTIONS(1172), - [aux_sym__val_number_decimal_token3] = ACTIONS(1172), - [aux_sym__val_number_token1] = ACTIONS(1172), - [aux_sym__val_number_token2] = ACTIONS(1172), - [aux_sym__val_number_token3] = ACTIONS(1172), - [aux_sym__val_number_token4] = ACTIONS(1172), - [aux_sym__val_number_token5] = ACTIONS(1172), - [aux_sym__val_number_token6] = ACTIONS(1172), - [anon_sym_0b] = ACTIONS(1172), - [anon_sym_0o] = ACTIONS(1172), - [anon_sym_0x] = ACTIONS(1172), - [sym_val_date] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(1172), - [sym__str_single_quotes] = ACTIONS(1172), - [sym__str_back_ticks] = ACTIONS(1172), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1172), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1172), - [anon_sym_CARET] = ACTIONS(1172), - [anon_sym_POUND] = ACTIONS(113), - }, - [2627] = { - [sym_comment] = STATE(2627), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_alias] = ACTIONS(1406), - [anon_sym_let] = ACTIONS(1406), - [anon_sym_let_DASHenv] = ACTIONS(1406), - [anon_sym_mut] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_SEMI] = ACTIONS(1406), - [sym_cmd_identifier] = ACTIONS(1406), - [anon_sym_LF] = ACTIONS(1408), - [anon_sym_def] = ACTIONS(1406), - [anon_sym_export_DASHenv] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_use] = ACTIONS(1406), - [anon_sym_LBRACK] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1406), - [anon_sym_RPAREN] = ACTIONS(1406), - [anon_sym_DOLLAR] = ACTIONS(1406), - [anon_sym_error] = ACTIONS(1406), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_loop] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_match] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_RBRACE] = ACTIONS(1406), - [anon_sym_DOT_DOT] = ACTIONS(1406), - [anon_sym_try] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_source] = ACTIONS(1406), - [anon_sym_source_DASHenv] = ACTIONS(1406), - [anon_sym_register] = ACTIONS(1406), - [anon_sym_hide] = ACTIONS(1406), - [anon_sym_hide_DASHenv] = ACTIONS(1406), - [anon_sym_overlay] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1406), - [anon_sym_where] = ACTIONS(1406), - [anon_sym_not] = ACTIONS(1406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1406), - [anon_sym_DOT_DOT_LT] = ACTIONS(1406), - [anon_sym_null] = ACTIONS(1406), - [anon_sym_true] = ACTIONS(1406), - [anon_sym_false] = ACTIONS(1406), - [aux_sym__val_number_decimal_token1] = ACTIONS(1406), - [aux_sym__val_number_decimal_token2] = ACTIONS(1406), - [anon_sym_DOT2] = ACTIONS(1406), - [aux_sym__val_number_decimal_token3] = ACTIONS(1406), - [aux_sym__val_number_token1] = ACTIONS(1406), - [aux_sym__val_number_token2] = ACTIONS(1406), - [aux_sym__val_number_token3] = ACTIONS(1406), - [aux_sym__val_number_token4] = ACTIONS(1406), - [aux_sym__val_number_token5] = ACTIONS(1406), - [aux_sym__val_number_token6] = ACTIONS(1406), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1406), - [anon_sym_0x] = ACTIONS(1406), - [sym_val_date] = ACTIONS(1406), - [anon_sym_DQUOTE] = ACTIONS(1406), - [sym__str_single_quotes] = ACTIONS(1406), - [sym__str_back_ticks] = ACTIONS(1406), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1406), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1406), - [anon_sym_CARET] = ACTIONS(1406), - [anon_sym_POUND] = ACTIONS(113), - }, - [2628] = { - [sym__expression] = STATE(7557), - [sym_expr_unary] = STATE(6196), - [sym__expr_unary_minus] = STATE(6200), - [sym_expr_binary] = STATE(6196), - [sym__expr_binary_expression] = STATE(6783), - [sym_expr_parenthesized] = STATE(5434), - [sym_val_range] = STATE(8689), - [sym__value] = STATE(6196), - [sym_val_nothing] = STATE(6059), - [sym_val_bool] = STATE(6059), - [sym_val_variable] = STATE(5445), - [sym__var] = STATE(4804), - [sym_val_number] = STATE(6059), - [sym__val_number_decimal] = STATE(4923), - [sym__val_number] = STATE(6097), - [sym_val_duration] = STATE(6059), - [sym_val_filesize] = STATE(6059), - [sym_val_binary] = STATE(6059), - [sym_val_string] = STATE(6059), - [sym__str_double_quotes] = STATE(6144), - [sym_val_interpolated] = STATE(6059), - [sym__inter_single_quotes] = STATE(6158), - [sym__inter_double_quotes] = STATE(6159), - [sym_val_list] = STATE(6059), - [sym_val_record] = STATE(6059), - [sym_val_table] = STATE(6059), - [sym_val_closure] = STATE(6059), - [sym__flag] = STATE(2378), - [sym_short_flag] = STATE(5303), - [sym_long_flag] = STATE(5303), - [sym_long_flag_equals_value] = STATE(5400), - [sym_comment] = STATE(2628), - [ts_builtin_sym_end] = ACTIONS(5431), - [anon_sym_SEMI] = ACTIONS(5429), - [anon_sym_LF] = ACTIONS(5431), - [anon_sym_LBRACK] = ACTIONS(6053), - [anon_sym_LPAREN] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(5429), - [anon_sym_DOLLAR] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(6057), - [anon_sym_DASH] = ACTIONS(6059), - [anon_sym_LBRACE] = ACTIONS(6061), - [anon_sym_DOT_DOT] = ACTIONS(6063), - [anon_sym_not] = ACTIONS(6065), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6067), - [anon_sym_DOT_DOT_LT] = ACTIONS(6067), - [anon_sym_null] = ACTIONS(6069), - [anon_sym_true] = ACTIONS(6071), - [anon_sym_false] = ACTIONS(6071), - [aux_sym__val_number_decimal_token1] = ACTIONS(6073), - [aux_sym__val_number_decimal_token2] = ACTIONS(6073), - [anon_sym_DOT2] = ACTIONS(6075), - [aux_sym__val_number_decimal_token3] = ACTIONS(6077), - [aux_sym__val_number_token1] = ACTIONS(6079), - [aux_sym__val_number_token2] = ACTIONS(6079), - [aux_sym__val_number_token3] = ACTIONS(6079), - [aux_sym__val_number_token4] = ACTIONS(6079), - [aux_sym__val_number_token5] = ACTIONS(6079), - [aux_sym__val_number_token6] = ACTIONS(6079), - [anon_sym_0b] = ACTIONS(2953), - [anon_sym_0o] = ACTIONS(2955), - [anon_sym_0x] = ACTIONS(2955), - [sym_val_date] = ACTIONS(6081), - [anon_sym_DQUOTE] = ACTIONS(6083), - [sym__str_single_quotes] = ACTIONS(6085), - [sym__str_back_ticks] = ACTIONS(6085), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6087), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6089), - [anon_sym_POUND] = ACTIONS(113), - }, - [2629] = { - [sym__expression] = STATE(7557), - [sym_expr_unary] = STATE(6196), - [sym__expr_unary_minus] = STATE(6200), - [sym_expr_binary] = STATE(6196), - [sym__expr_binary_expression] = STATE(6783), - [sym_expr_parenthesized] = STATE(5434), - [sym_val_range] = STATE(8689), - [sym__value] = STATE(6196), - [sym_val_nothing] = STATE(6059), - [sym_val_bool] = STATE(6059), - [sym_val_variable] = STATE(5445), - [sym__var] = STATE(4804), - [sym_val_number] = STATE(6059), - [sym__val_number_decimal] = STATE(4923), - [sym__val_number] = STATE(6097), - [sym_val_duration] = STATE(6059), - [sym_val_filesize] = STATE(6059), - [sym_val_binary] = STATE(6059), - [sym_val_string] = STATE(6059), - [sym__str_double_quotes] = STATE(6144), - [sym_val_interpolated] = STATE(6059), - [sym__inter_single_quotes] = STATE(6158), - [sym__inter_double_quotes] = STATE(6159), - [sym_val_list] = STATE(6059), - [sym_val_record] = STATE(6059), - [sym_val_table] = STATE(6059), - [sym_val_closure] = STATE(6059), - [sym__flag] = STATE(2380), - [sym_short_flag] = STATE(5303), - [sym_long_flag] = STATE(5303), - [sym_long_flag_equals_value] = STATE(5400), - [sym_comment] = STATE(2629), - [ts_builtin_sym_end] = ACTIONS(5431), - [anon_sym_SEMI] = ACTIONS(5429), - [anon_sym_LF] = ACTIONS(5431), - [anon_sym_LBRACK] = ACTIONS(6053), - [anon_sym_LPAREN] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(5429), - [anon_sym_DOLLAR] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(6057), - [anon_sym_DASH] = ACTIONS(6059), - [anon_sym_LBRACE] = ACTIONS(6061), - [anon_sym_DOT_DOT] = ACTIONS(6063), - [anon_sym_not] = ACTIONS(6065), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6067), - [anon_sym_DOT_DOT_LT] = ACTIONS(6067), - [anon_sym_null] = ACTIONS(6069), - [anon_sym_true] = ACTIONS(6071), - [anon_sym_false] = ACTIONS(6071), - [aux_sym__val_number_decimal_token1] = ACTIONS(6073), - [aux_sym__val_number_decimal_token2] = ACTIONS(6073), - [anon_sym_DOT2] = ACTIONS(6075), - [aux_sym__val_number_decimal_token3] = ACTIONS(6077), - [aux_sym__val_number_token1] = ACTIONS(6079), - [aux_sym__val_number_token2] = ACTIONS(6079), - [aux_sym__val_number_token3] = ACTIONS(6079), - [aux_sym__val_number_token4] = ACTIONS(6079), - [aux_sym__val_number_token5] = ACTIONS(6079), - [aux_sym__val_number_token6] = ACTIONS(6079), - [anon_sym_0b] = ACTIONS(2953), - [anon_sym_0o] = ACTIONS(2955), - [anon_sym_0x] = ACTIONS(2955), - [sym_val_date] = ACTIONS(6081), - [anon_sym_DQUOTE] = ACTIONS(6083), - [sym__str_single_quotes] = ACTIONS(6085), - [sym__str_back_ticks] = ACTIONS(6085), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6087), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6089), - [anon_sym_POUND] = ACTIONS(113), - }, - [2630] = { - [sym__expression] = STATE(7557), - [sym_expr_unary] = STATE(6196), - [sym__expr_unary_minus] = STATE(6200), - [sym_expr_binary] = STATE(6196), - [sym__expr_binary_expression] = STATE(6783), - [sym_expr_parenthesized] = STATE(5434), - [sym_val_range] = STATE(8689), - [sym__value] = STATE(6196), - [sym_val_nothing] = STATE(6059), - [sym_val_bool] = STATE(6059), - [sym_val_variable] = STATE(5445), - [sym__var] = STATE(4804), - [sym_val_number] = STATE(6059), - [sym__val_number_decimal] = STATE(4923), - [sym__val_number] = STATE(6097), - [sym_val_duration] = STATE(6059), - [sym_val_filesize] = STATE(6059), - [sym_val_binary] = STATE(6059), - [sym_val_string] = STATE(6059), - [sym__str_double_quotes] = STATE(6144), - [sym_val_interpolated] = STATE(6059), - [sym__inter_single_quotes] = STATE(6158), - [sym__inter_double_quotes] = STATE(6159), - [sym_val_list] = STATE(6059), - [sym_val_record] = STATE(6059), - [sym_val_table] = STATE(6059), - [sym_val_closure] = STATE(6059), - [sym__flag] = STATE(2382), - [sym_short_flag] = STATE(5303), - [sym_long_flag] = STATE(5303), - [sym_long_flag_equals_value] = STATE(5400), - [sym_comment] = STATE(2630), - [ts_builtin_sym_end] = ACTIONS(5431), - [anon_sym_SEMI] = ACTIONS(5429), - [anon_sym_LF] = ACTIONS(5431), - [anon_sym_LBRACK] = ACTIONS(6053), - [anon_sym_LPAREN] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(5429), - [anon_sym_DOLLAR] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(6057), - [anon_sym_DASH] = ACTIONS(6059), - [anon_sym_LBRACE] = ACTIONS(6061), - [anon_sym_DOT_DOT] = ACTIONS(6063), - [anon_sym_not] = ACTIONS(6065), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6067), - [anon_sym_DOT_DOT_LT] = ACTIONS(6067), - [anon_sym_null] = ACTIONS(6069), - [anon_sym_true] = ACTIONS(6071), - [anon_sym_false] = ACTIONS(6071), - [aux_sym__val_number_decimal_token1] = ACTIONS(6073), - [aux_sym__val_number_decimal_token2] = ACTIONS(6073), - [anon_sym_DOT2] = ACTIONS(6075), - [aux_sym__val_number_decimal_token3] = ACTIONS(6077), - [aux_sym__val_number_token1] = ACTIONS(6079), - [aux_sym__val_number_token2] = ACTIONS(6079), - [aux_sym__val_number_token3] = ACTIONS(6079), - [aux_sym__val_number_token4] = ACTIONS(6079), - [aux_sym__val_number_token5] = ACTIONS(6079), - [aux_sym__val_number_token6] = ACTIONS(6079), - [anon_sym_0b] = ACTIONS(2953), - [anon_sym_0o] = ACTIONS(2955), - [anon_sym_0x] = ACTIONS(2955), - [sym_val_date] = ACTIONS(6081), - [anon_sym_DQUOTE] = ACTIONS(6083), - [sym__str_single_quotes] = ACTIONS(6085), - [sym__str_back_ticks] = ACTIONS(6085), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6087), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6089), - [anon_sym_POUND] = ACTIONS(113), - }, - [2631] = { - [sym__match_pattern_record_variable] = STATE(3555), - [sym_expr_parenthesized] = STATE(10769), - [sym_val_variable] = STATE(3513), - [sym__var] = STATE(3214), - [sym_val_number] = STATE(10769), - [sym__val_number_decimal] = STATE(5414), - [sym__val_number] = STATE(5463), - [sym_val_string] = STATE(10769), - [sym__str_double_quotes] = STATE(7019), - [sym_record_entry] = STATE(3555), - [sym__record_key] = STATE(10918), - [sym_comment] = STATE(2631), - [aux_sym__match_pattern_record_repeat1] = STATE(2393), - [anon_sym_export] = ACTIONS(6091), - [anon_sym_alias] = ACTIONS(6091), - [anon_sym_let] = ACTIONS(6091), - [anon_sym_let_DASHenv] = ACTIONS(6091), - [anon_sym_mut] = ACTIONS(6091), - [anon_sym_const] = ACTIONS(6091), - [sym_cmd_identifier] = ACTIONS(6091), - [anon_sym_def] = ACTIONS(6091), - [anon_sym_export_DASHenv] = ACTIONS(6091), - [anon_sym_extern] = ACTIONS(6091), - [anon_sym_module] = ACTIONS(6091), - [anon_sym_use] = ACTIONS(6091), - [anon_sym_LPAREN] = ACTIONS(6093), - [anon_sym_DOLLAR] = ACTIONS(6095), - [anon_sym_error] = ACTIONS(6091), - [anon_sym_list] = ACTIONS(6091), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_break] = ACTIONS(6091), - [anon_sym_continue] = ACTIONS(6091), - [anon_sym_for] = ACTIONS(6091), - [anon_sym_in] = ACTIONS(6091), - [anon_sym_loop] = ACTIONS(6091), - [anon_sym_make] = ACTIONS(6091), - [anon_sym_while] = ACTIONS(6091), - [anon_sym_do] = ACTIONS(6091), - [anon_sym_if] = ACTIONS(6091), - [anon_sym_else] = ACTIONS(6091), - [anon_sym_match] = ACTIONS(6091), - [anon_sym_RBRACE] = ACTIONS(6341), - [anon_sym_try] = ACTIONS(6091), - [anon_sym_catch] = ACTIONS(6091), - [anon_sym_return] = ACTIONS(6091), - [anon_sym_source] = ACTIONS(6091), - [anon_sym_source_DASHenv] = ACTIONS(6091), - [anon_sym_register] = ACTIONS(6091), - [anon_sym_hide] = ACTIONS(6091), - [anon_sym_hide_DASHenv] = ACTIONS(6091), - [anon_sym_overlay] = ACTIONS(6091), - [anon_sym_new] = ACTIONS(6091), - [anon_sym_as] = ACTIONS(6091), - [anon_sym_PLUS] = ACTIONS(189), - [aux_sym__val_number_decimal_token1] = ACTIONS(6099), - [aux_sym__val_number_decimal_token2] = ACTIONS(6101), - [anon_sym_DOT2] = ACTIONS(6103), - [aux_sym__val_number_decimal_token3] = ACTIONS(6105), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(6107), - [aux_sym__val_number_token5] = ACTIONS(2714), - [aux_sym__val_number_token6] = ACTIONS(6107), - [anon_sym_DQUOTE] = ACTIONS(2724), - [sym__str_single_quotes] = ACTIONS(2726), - [sym__str_back_ticks] = ACTIONS(2726), - [aux_sym__record_key_token2] = ACTIONS(225), - [anon_sym_POUND] = ACTIONS(3), - }, - [2632] = { - [sym_comment] = STATE(2632), - [anon_sym_export] = ACTIONS(6343), - [anon_sym_alias] = ACTIONS(6343), - [anon_sym_let] = ACTIONS(6343), - [anon_sym_let_DASHenv] = ACTIONS(6343), - [anon_sym_mut] = ACTIONS(6343), - [anon_sym_const] = ACTIONS(6343), - [anon_sym_SEMI] = ACTIONS(6343), - [sym_cmd_identifier] = ACTIONS(6343), - [anon_sym_LF] = ACTIONS(6345), - [anon_sym_def] = ACTIONS(6343), - [anon_sym_export_DASHenv] = ACTIONS(6343), - [anon_sym_extern] = ACTIONS(6343), - [anon_sym_module] = ACTIONS(6343), - [anon_sym_use] = ACTIONS(6343), - [anon_sym_LBRACK] = ACTIONS(6343), - [anon_sym_LPAREN] = ACTIONS(6343), - [anon_sym_RPAREN] = ACTIONS(6343), - [anon_sym_DOLLAR] = ACTIONS(6343), - [anon_sym_error] = ACTIONS(6343), - [anon_sym_DASH] = ACTIONS(6343), - [anon_sym_break] = ACTIONS(6343), - [anon_sym_continue] = ACTIONS(6343), - [anon_sym_for] = ACTIONS(6343), - [anon_sym_loop] = ACTIONS(6343), - [anon_sym_while] = ACTIONS(6343), - [anon_sym_do] = ACTIONS(6343), - [anon_sym_if] = ACTIONS(6343), - [anon_sym_match] = ACTIONS(6343), - [anon_sym_LBRACE] = ACTIONS(6343), - [anon_sym_RBRACE] = ACTIONS(6343), - [anon_sym_DOT_DOT] = ACTIONS(6343), - [anon_sym_try] = ACTIONS(6343), - [anon_sym_return] = ACTIONS(6343), - [anon_sym_source] = ACTIONS(6343), - [anon_sym_source_DASHenv] = ACTIONS(6343), - [anon_sym_register] = ACTIONS(6343), - [anon_sym_hide] = ACTIONS(6343), - [anon_sym_hide_DASHenv] = ACTIONS(6343), - [anon_sym_overlay] = ACTIONS(6343), - [anon_sym_STAR] = ACTIONS(6343), - [anon_sym_where] = ACTIONS(6343), - [anon_sym_not] = ACTIONS(6343), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6343), - [anon_sym_DOT_DOT_LT] = ACTIONS(6343), - [anon_sym_null] = ACTIONS(6343), - [anon_sym_true] = ACTIONS(6343), - [anon_sym_false] = ACTIONS(6343), - [aux_sym__val_number_decimal_token1] = ACTIONS(6343), - [aux_sym__val_number_decimal_token2] = ACTIONS(6343), - [anon_sym_DOT2] = ACTIONS(6343), - [aux_sym__val_number_decimal_token3] = ACTIONS(6343), - [aux_sym__val_number_token1] = ACTIONS(6343), - [aux_sym__val_number_token2] = ACTIONS(6343), - [aux_sym__val_number_token3] = ACTIONS(6343), - [aux_sym__val_number_token4] = ACTIONS(6343), - [aux_sym__val_number_token5] = ACTIONS(6343), - [aux_sym__val_number_token6] = ACTIONS(6343), - [anon_sym_0b] = ACTIONS(6343), - [anon_sym_0o] = ACTIONS(6343), - [anon_sym_0x] = ACTIONS(6343), - [sym_val_date] = ACTIONS(6343), - [anon_sym_DQUOTE] = ACTIONS(6343), - [sym__str_single_quotes] = ACTIONS(6343), - [sym__str_back_ticks] = ACTIONS(6343), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6343), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6343), - [anon_sym_CARET] = ACTIONS(6343), - [anon_sym_POUND] = ACTIONS(113), - }, - [2633] = { - [sym_comment] = STATE(2633), - [anon_sym_export] = ACTIONS(6347), - [anon_sym_alias] = ACTIONS(6347), - [anon_sym_let] = ACTIONS(6347), - [anon_sym_let_DASHenv] = ACTIONS(6347), - [anon_sym_mut] = ACTIONS(6347), - [anon_sym_const] = ACTIONS(6347), - [anon_sym_SEMI] = ACTIONS(6347), - [sym_cmd_identifier] = ACTIONS(6347), - [anon_sym_LF] = ACTIONS(6349), - [anon_sym_def] = ACTIONS(6347), - [anon_sym_export_DASHenv] = ACTIONS(6347), - [anon_sym_extern] = ACTIONS(6347), - [anon_sym_module] = ACTIONS(6347), - [anon_sym_use] = ACTIONS(6347), - [anon_sym_LBRACK] = ACTIONS(6347), - [anon_sym_LPAREN] = ACTIONS(6347), - [anon_sym_RPAREN] = ACTIONS(6347), - [anon_sym_DOLLAR] = ACTIONS(6347), - [anon_sym_error] = ACTIONS(6347), - [anon_sym_DASH] = ACTIONS(6347), - [anon_sym_break] = ACTIONS(6347), - [anon_sym_continue] = ACTIONS(6347), - [anon_sym_for] = ACTIONS(6347), - [anon_sym_loop] = ACTIONS(6347), - [anon_sym_while] = ACTIONS(6347), - [anon_sym_do] = ACTIONS(6347), - [anon_sym_if] = ACTIONS(6347), - [anon_sym_match] = ACTIONS(6347), - [anon_sym_LBRACE] = ACTIONS(6347), - [anon_sym_RBRACE] = ACTIONS(6347), - [anon_sym_DOT_DOT] = ACTIONS(6347), - [anon_sym_try] = ACTIONS(6347), - [anon_sym_return] = ACTIONS(6347), - [anon_sym_source] = ACTIONS(6347), - [anon_sym_source_DASHenv] = ACTIONS(6347), - [anon_sym_register] = ACTIONS(6347), - [anon_sym_hide] = ACTIONS(6347), - [anon_sym_hide_DASHenv] = ACTIONS(6347), - [anon_sym_overlay] = ACTIONS(6347), - [anon_sym_STAR] = ACTIONS(6347), - [anon_sym_where] = ACTIONS(6347), - [anon_sym_not] = ACTIONS(6347), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6347), - [anon_sym_DOT_DOT_LT] = ACTIONS(6347), - [anon_sym_null] = ACTIONS(6347), - [anon_sym_true] = ACTIONS(6347), - [anon_sym_false] = ACTIONS(6347), - [aux_sym__val_number_decimal_token1] = ACTIONS(6347), - [aux_sym__val_number_decimal_token2] = ACTIONS(6347), - [anon_sym_DOT2] = ACTIONS(6347), - [aux_sym__val_number_decimal_token3] = ACTIONS(6347), - [aux_sym__val_number_token1] = ACTIONS(6347), - [aux_sym__val_number_token2] = ACTIONS(6347), - [aux_sym__val_number_token3] = ACTIONS(6347), - [aux_sym__val_number_token4] = ACTIONS(6347), - [aux_sym__val_number_token5] = ACTIONS(6347), - [aux_sym__val_number_token6] = ACTIONS(6347), - [anon_sym_0b] = ACTIONS(6347), - [anon_sym_0o] = ACTIONS(6347), - [anon_sym_0x] = ACTIONS(6347), - [sym_val_date] = ACTIONS(6347), - [anon_sym_DQUOTE] = ACTIONS(6347), - [sym__str_single_quotes] = ACTIONS(6347), - [sym__str_back_ticks] = ACTIONS(6347), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6347), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6347), - [anon_sym_CARET] = ACTIONS(6347), - [anon_sym_POUND] = ACTIONS(113), - }, - [2634] = { - [sym_comment] = STATE(2634), - [ts_builtin_sym_end] = ACTIONS(938), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [sym_cmd_identifier] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_error] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_where] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [aux_sym__immediate_decimal_token1] = ACTIONS(5039), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [aux_sym_unquoted_token2] = ACTIONS(6351), - [anon_sym_POUND] = ACTIONS(113), - }, - [2635] = { - [sym_match_arm] = STATE(4736), - [sym_default_arm] = STATE(11103), - [sym_match_pattern] = STATE(11092), - [sym__match_pattern] = STATE(8841), - [sym__match_pattern_expression] = STATE(10370), - [sym__match_pattern_value] = STATE(10371), - [sym__match_pattern_list] = STATE(10378), - [sym__match_pattern_record] = STATE(10383), - [sym__expr_unary_minus] = STATE(10390), - [sym_expr_parenthesized] = STATE(8527), - [sym_val_range] = STATE(10371), - [sym__val_range] = STATE(10473), - [sym_val_nothing] = STATE(10398), - [sym_val_bool] = STATE(9683), - [sym_val_variable] = STATE(8532), - [sym__var] = STATE(4486), - [sym_val_number] = STATE(10398), - [sym__val_number_decimal] = STATE(7782), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(10398), - [sym_val_filesize] = STATE(10398), - [sym_val_binary] = STATE(10398), - [sym_val_string] = STATE(10398), - [sym__str_double_quotes] = STATE(5541), - [sym_val_table] = STATE(10398), - [sym_unquoted] = STATE(10403), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(2635), - [aux_sym_ctrl_match_repeat1] = STATE(2718), - [anon_sym_LBRACK] = ACTIONS(6251), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_DOLLAR] = ACTIONS(6253), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(6255), - [anon_sym_RBRACE] = ACTIONS(6353), - [anon_sym__] = ACTIONS(6259), - [anon_sym_DOT_DOT] = ACTIONS(6261), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6263), - [anon_sym_DOT_DOT_LT] = ACTIONS(6263), - [anon_sym_null] = ACTIONS(6265), - [anon_sym_true] = ACTIONS(6267), - [anon_sym_false] = ACTIONS(6267), - [aux_sym__val_number_decimal_token1] = ACTIONS(6269), - [aux_sym__val_number_decimal_token2] = ACTIONS(6271), - [anon_sym_DOT2] = ACTIONS(6273), - [aux_sym__val_number_decimal_token3] = ACTIONS(6275), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(6277), - [aux_sym__val_number_token5] = ACTIONS(6277), - [aux_sym__val_number_token6] = ACTIONS(6277), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(6279), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(3), - }, - [2636] = { - [sym_match_arm] = STATE(4736), - [sym_default_arm] = STATE(10851), - [sym_match_pattern] = STATE(11092), - [sym__match_pattern] = STATE(8841), - [sym__match_pattern_expression] = STATE(10370), - [sym__match_pattern_value] = STATE(10371), - [sym__match_pattern_list] = STATE(10378), - [sym__match_pattern_record] = STATE(10383), - [sym__expr_unary_minus] = STATE(10390), - [sym_expr_parenthesized] = STATE(8527), - [sym_val_range] = STATE(10371), - [sym__val_range] = STATE(10473), - [sym_val_nothing] = STATE(10398), - [sym_val_bool] = STATE(9683), - [sym_val_variable] = STATE(8532), - [sym__var] = STATE(4486), - [sym_val_number] = STATE(10398), - [sym__val_number_decimal] = STATE(7782), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(10398), - [sym_val_filesize] = STATE(10398), - [sym_val_binary] = STATE(10398), - [sym_val_string] = STATE(10398), - [sym__str_double_quotes] = STATE(5541), - [sym_val_table] = STATE(10398), - [sym_unquoted] = STATE(10403), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(2636), - [aux_sym_ctrl_match_repeat1] = STATE(2718), - [anon_sym_LBRACK] = ACTIONS(6251), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_DOLLAR] = ACTIONS(6253), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(6255), - [anon_sym_RBRACE] = ACTIONS(6355), - [anon_sym__] = ACTIONS(6259), - [anon_sym_DOT_DOT] = ACTIONS(6261), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6263), - [anon_sym_DOT_DOT_LT] = ACTIONS(6263), - [anon_sym_null] = ACTIONS(6265), - [anon_sym_true] = ACTIONS(6267), - [anon_sym_false] = ACTIONS(6267), - [aux_sym__val_number_decimal_token1] = ACTIONS(6269), - [aux_sym__val_number_decimal_token2] = ACTIONS(6271), - [anon_sym_DOT2] = ACTIONS(6273), - [aux_sym__val_number_decimal_token3] = ACTIONS(6275), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(6277), - [aux_sym__val_number_token5] = ACTIONS(6277), - [aux_sym__val_number_token6] = ACTIONS(6277), - [anon_sym_0b] = ACTIONS(2718), - [anon_sym_0o] = ACTIONS(2720), - [anon_sym_0x] = ACTIONS(2720), - [sym_val_date] = ACTIONS(6279), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym__str_single_quotes] = ACTIONS(3393), - [sym__str_back_ticks] = ACTIONS(3393), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [aux_sym_unquoted_token1] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(3), - }, - [2637] = { - [sym_comment] = STATE(2637), - [ts_builtin_sym_end] = ACTIONS(1300), - [anon_sym_export] = ACTIONS(1298), - [anon_sym_alias] = ACTIONS(1298), - [anon_sym_let] = ACTIONS(1298), - [anon_sym_let_DASHenv] = ACTIONS(1298), - [anon_sym_mut] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1298), - [sym_cmd_identifier] = ACTIONS(1298), - [anon_sym_LF] = ACTIONS(1300), - [anon_sym_def] = ACTIONS(1298), - [anon_sym_export_DASHenv] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_module] = ACTIONS(1298), - [anon_sym_use] = ACTIONS(1298), - [anon_sym_LBRACK] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1298), - [anon_sym_DOLLAR] = ACTIONS(1298), - [anon_sym_error] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_loop] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_match] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_DOT_DOT] = ACTIONS(1298), - [anon_sym_try] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_source] = ACTIONS(1298), - [anon_sym_source_DASHenv] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_hide] = ACTIONS(1298), - [anon_sym_hide_DASHenv] = ACTIONS(1298), - [anon_sym_overlay] = ACTIONS(1298), - [anon_sym_as] = ACTIONS(1298), - [anon_sym_where] = ACTIONS(1298), - [anon_sym_not] = ACTIONS(1298), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1298), - [anon_sym_DOT_DOT_LT] = ACTIONS(1298), - [anon_sym_null] = ACTIONS(1298), - [anon_sym_true] = ACTIONS(1298), - [anon_sym_false] = ACTIONS(1298), - [aux_sym__val_number_decimal_token1] = ACTIONS(1298), - [aux_sym__val_number_decimal_token2] = ACTIONS(1298), - [anon_sym_DOT2] = ACTIONS(1298), - [aux_sym__val_number_decimal_token3] = 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(1298), - [aux_sym__val_number_token5] = ACTIONS(1298), - [aux_sym__val_number_token6] = ACTIONS(1298), - [anon_sym_0b] = ACTIONS(1298), - [anon_sym_0o] = ACTIONS(1298), - [anon_sym_0x] = ACTIONS(1298), - [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), - [anon_sym_POUND] = ACTIONS(113), - }, - [2638] = { - [sym_block] = STATE(2681), - [sym_comment] = STATE(2638), - [anon_sym_export] = ACTIONS(6228), - [anon_sym_alias] = ACTIONS(6228), - [anon_sym_let] = ACTIONS(6228), - [anon_sym_let_DASHenv] = ACTIONS(6228), - [anon_sym_mut] = ACTIONS(6228), - [anon_sym_const] = ACTIONS(6228), - [anon_sym_SEMI] = ACTIONS(6228), - [sym_cmd_identifier] = ACTIONS(6228), - [anon_sym_LF] = ACTIONS(6230), - [anon_sym_def] = ACTIONS(6228), - [anon_sym_export_DASHenv] = ACTIONS(6228), - [anon_sym_extern] = ACTIONS(6228), - [anon_sym_module] = ACTIONS(6228), - [anon_sym_use] = ACTIONS(6228), - [anon_sym_LBRACK] = ACTIONS(6228), - [anon_sym_LPAREN] = ACTIONS(6228), - [anon_sym_RPAREN] = ACTIONS(6228), - [anon_sym_DOLLAR] = ACTIONS(6228), - [anon_sym_error] = ACTIONS(6228), - [anon_sym_DASH] = ACTIONS(6228), - [anon_sym_break] = ACTIONS(6228), - [anon_sym_continue] = ACTIONS(6228), - [anon_sym_for] = ACTIONS(6228), - [anon_sym_loop] = ACTIONS(6228), - [anon_sym_while] = ACTIONS(6228), - [anon_sym_do] = ACTIONS(6228), - [anon_sym_if] = ACTIONS(6228), - [anon_sym_match] = ACTIONS(6228), - [anon_sym_LBRACE] = ACTIONS(6232), - [anon_sym_RBRACE] = ACTIONS(6228), - [anon_sym_DOT_DOT] = ACTIONS(6228), - [anon_sym_try] = ACTIONS(6228), - [anon_sym_return] = ACTIONS(6228), - [anon_sym_source] = ACTIONS(6228), - [anon_sym_source_DASHenv] = ACTIONS(6228), - [anon_sym_register] = ACTIONS(6228), - [anon_sym_hide] = ACTIONS(6228), - [anon_sym_hide_DASHenv] = ACTIONS(6228), - [anon_sym_overlay] = ACTIONS(6228), - [anon_sym_where] = ACTIONS(6228), - [anon_sym_not] = ACTIONS(6228), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6228), - [anon_sym_DOT_DOT_LT] = ACTIONS(6228), - [anon_sym_null] = ACTIONS(6228), - [anon_sym_true] = ACTIONS(6228), - [anon_sym_false] = ACTIONS(6228), - [aux_sym__val_number_decimal_token1] = ACTIONS(6228), - [aux_sym__val_number_decimal_token2] = ACTIONS(6228), - [anon_sym_DOT2] = ACTIONS(6228), - [aux_sym__val_number_decimal_token3] = ACTIONS(6228), - [aux_sym__val_number_token1] = ACTIONS(6228), - [aux_sym__val_number_token2] = ACTIONS(6228), - [aux_sym__val_number_token3] = ACTIONS(6228), - [aux_sym__val_number_token4] = ACTIONS(6228), - [aux_sym__val_number_token5] = ACTIONS(6228), - [aux_sym__val_number_token6] = ACTIONS(6228), - [anon_sym_0b] = ACTIONS(6228), - [anon_sym_0o] = ACTIONS(6228), - [anon_sym_0x] = ACTIONS(6228), - [sym_val_date] = ACTIONS(6228), - [anon_sym_DQUOTE] = ACTIONS(6228), - [sym__str_single_quotes] = ACTIONS(6228), - [sym__str_back_ticks] = ACTIONS(6228), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6228), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6228), - [anon_sym_CARET] = ACTIONS(6228), - [anon_sym_POUND] = ACTIONS(113), - }, - [2639] = { - [sym_comment] = STATE(2639), - [ts_builtin_sym_end] = ACTIONS(2583), - [anon_sym_export] = ACTIONS(2581), - [anon_sym_alias] = ACTIONS(2581), - [anon_sym_let] = ACTIONS(2581), - [anon_sym_let_DASHenv] = ACTIONS(2581), - [anon_sym_mut] = ACTIONS(2581), - [anon_sym_const] = ACTIONS(2581), - [anon_sym_SEMI] = ACTIONS(2581), - [sym_cmd_identifier] = ACTIONS(2581), - [anon_sym_LF] = ACTIONS(2583), - [anon_sym_def] = ACTIONS(2581), - [anon_sym_export_DASHenv] = ACTIONS(2581), - [anon_sym_extern] = ACTIONS(2581), - [anon_sym_module] = ACTIONS(2581), - [anon_sym_use] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2581), - [anon_sym_error] = ACTIONS(2581), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_break] = ACTIONS(2581), - [anon_sym_continue] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2581), - [anon_sym_loop] = ACTIONS(2581), - [anon_sym_while] = ACTIONS(2581), - [anon_sym_do] = ACTIONS(2581), - [anon_sym_if] = ACTIONS(2581), - [anon_sym_match] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2581), - [anon_sym_DOT_DOT] = ACTIONS(2581), - [anon_sym_try] = ACTIONS(2581), - [anon_sym_return] = ACTIONS(2581), - [anon_sym_source] = ACTIONS(2581), - [anon_sym_source_DASHenv] = ACTIONS(2581), - [anon_sym_register] = ACTIONS(2581), - [anon_sym_hide] = ACTIONS(2581), - [anon_sym_hide_DASHenv] = ACTIONS(2581), - [anon_sym_overlay] = ACTIONS(2581), - [anon_sym_where] = ACTIONS(2581), - [anon_sym_not] = ACTIONS(2581), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2581), - [anon_sym_DOT_DOT_LT] = ACTIONS(2581), - [aux_sym__immediate_decimal_token2] = ACTIONS(6339), - [anon_sym_null] = ACTIONS(2581), - [anon_sym_true] = ACTIONS(2581), - [anon_sym_false] = ACTIONS(2581), - [aux_sym__val_number_decimal_token1] = ACTIONS(2581), - [aux_sym__val_number_decimal_token2] = ACTIONS(2581), - [anon_sym_DOT2] = ACTIONS(2581), - [aux_sym__val_number_decimal_token3] = ACTIONS(2581), - [aux_sym__val_number_token1] = ACTIONS(2581), - [aux_sym__val_number_token2] = ACTIONS(2581), - [aux_sym__val_number_token3] = ACTIONS(2581), - [aux_sym__val_number_token4] = ACTIONS(2581), - [aux_sym__val_number_token5] = ACTIONS(2581), - [aux_sym__val_number_token6] = ACTIONS(2581), - [anon_sym_0b] = ACTIONS(2581), - [anon_sym_0o] = ACTIONS(2581), - [anon_sym_0x] = ACTIONS(2581), - [sym_val_date] = ACTIONS(2581), - [anon_sym_DQUOTE] = ACTIONS(2581), - [sym__str_single_quotes] = ACTIONS(2581), - [sym__str_back_ticks] = ACTIONS(2581), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2581), - [anon_sym_CARET] = ACTIONS(2581), - [anon_sym_POUND] = ACTIONS(113), - }, - [2640] = { - [sym_block] = STATE(2921), - [sym_comment] = STATE(2640), - [ts_builtin_sym_end] = ACTIONS(6230), - [anon_sym_export] = ACTIONS(6228), - [anon_sym_alias] = ACTIONS(6228), - [anon_sym_let] = ACTIONS(6228), - [anon_sym_let_DASHenv] = ACTIONS(6228), - [anon_sym_mut] = ACTIONS(6228), - [anon_sym_const] = ACTIONS(6228), - [anon_sym_SEMI] = ACTIONS(6228), - [sym_cmd_identifier] = ACTIONS(6228), - [anon_sym_LF] = ACTIONS(6230), - [anon_sym_def] = ACTIONS(6228), - [anon_sym_export_DASHenv] = ACTIONS(6228), - [anon_sym_extern] = ACTIONS(6228), - [anon_sym_module] = ACTIONS(6228), - [anon_sym_use] = ACTIONS(6228), - [anon_sym_LBRACK] = ACTIONS(6228), - [anon_sym_LPAREN] = ACTIONS(6228), - [anon_sym_DOLLAR] = ACTIONS(6228), - [anon_sym_error] = ACTIONS(6228), - [anon_sym_DASH] = ACTIONS(6228), - [anon_sym_break] = ACTIONS(6228), - [anon_sym_continue] = ACTIONS(6228), - [anon_sym_for] = ACTIONS(6228), - [anon_sym_loop] = ACTIONS(6228), - [anon_sym_while] = ACTIONS(6228), - [anon_sym_do] = ACTIONS(6228), - [anon_sym_if] = ACTIONS(6228), - [anon_sym_match] = ACTIONS(6228), - [anon_sym_LBRACE] = ACTIONS(6357), - [anon_sym_DOT_DOT] = ACTIONS(6228), - [anon_sym_try] = ACTIONS(6228), - [anon_sym_return] = ACTIONS(6228), - [anon_sym_source] = ACTIONS(6228), - [anon_sym_source_DASHenv] = ACTIONS(6228), - [anon_sym_register] = ACTIONS(6228), - [anon_sym_hide] = ACTIONS(6228), - [anon_sym_hide_DASHenv] = ACTIONS(6228), - [anon_sym_overlay] = ACTIONS(6228), - [anon_sym_where] = ACTIONS(6228), - [anon_sym_not] = ACTIONS(6228), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6228), - [anon_sym_DOT_DOT_LT] = ACTIONS(6228), - [anon_sym_null] = ACTIONS(6228), - [anon_sym_true] = ACTIONS(6228), - [anon_sym_false] = ACTIONS(6228), - [aux_sym__val_number_decimal_token1] = ACTIONS(6228), - [aux_sym__val_number_decimal_token2] = ACTIONS(6228), - [anon_sym_DOT2] = ACTIONS(6228), - [aux_sym__val_number_decimal_token3] = ACTIONS(6228), - [aux_sym__val_number_token1] = ACTIONS(6228), - [aux_sym__val_number_token2] = ACTIONS(6228), - [aux_sym__val_number_token3] = ACTIONS(6228), - [aux_sym__val_number_token4] = ACTIONS(6228), - [aux_sym__val_number_token5] = ACTIONS(6228), - [aux_sym__val_number_token6] = ACTIONS(6228), - [anon_sym_0b] = ACTIONS(6228), - [anon_sym_0o] = ACTIONS(6228), - [anon_sym_0x] = ACTIONS(6228), - [sym_val_date] = ACTIONS(6228), - [anon_sym_DQUOTE] = ACTIONS(6228), - [sym__str_single_quotes] = ACTIONS(6228), - [sym__str_back_ticks] = ACTIONS(6228), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6228), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6228), - [anon_sym_CARET] = ACTIONS(6228), - [anon_sym_POUND] = ACTIONS(113), - }, - [2641] = { - [sym_comment] = STATE(2641), - [anon_sym_export] = ACTIONS(6359), - [anon_sym_alias] = ACTIONS(6359), - [anon_sym_let] = ACTIONS(6359), - [anon_sym_let_DASHenv] = ACTIONS(6359), - [anon_sym_mut] = ACTIONS(6359), - [anon_sym_const] = ACTIONS(6359), - [anon_sym_SEMI] = ACTIONS(6359), - [sym_cmd_identifier] = ACTIONS(6359), - [anon_sym_LF] = ACTIONS(6361), - [anon_sym_def] = ACTIONS(6359), - [anon_sym_export_DASHenv] = ACTIONS(6359), - [anon_sym_extern] = ACTIONS(6359), - [anon_sym_module] = ACTIONS(6359), - [anon_sym_use] = ACTIONS(6359), - [anon_sym_LBRACK] = ACTIONS(6359), - [anon_sym_LPAREN] = ACTIONS(6359), - [anon_sym_RPAREN] = ACTIONS(6359), - [anon_sym_DOLLAR] = ACTIONS(6359), - [anon_sym_error] = ACTIONS(6359), - [anon_sym_DASH] = ACTIONS(6359), - [anon_sym_break] = ACTIONS(6359), - [anon_sym_continue] = ACTIONS(6359), - [anon_sym_for] = ACTIONS(6359), - [anon_sym_loop] = ACTIONS(6359), - [anon_sym_while] = ACTIONS(6359), - [anon_sym_do] = ACTIONS(6359), - [anon_sym_if] = ACTIONS(6359), - [anon_sym_match] = ACTIONS(6359), - [anon_sym_LBRACE] = ACTIONS(6359), - [anon_sym_RBRACE] = ACTIONS(6359), - [anon_sym_DOT_DOT] = ACTIONS(6359), - [anon_sym_try] = ACTIONS(6359), - [anon_sym_return] = ACTIONS(6359), - [anon_sym_source] = ACTIONS(6359), - [anon_sym_source_DASHenv] = ACTIONS(6359), - [anon_sym_register] = ACTIONS(6359), - [anon_sym_hide] = ACTIONS(6359), - [anon_sym_hide_DASHenv] = ACTIONS(6359), - [anon_sym_overlay] = ACTIONS(6359), - [anon_sym_where] = ACTIONS(6359), - [anon_sym_not] = ACTIONS(6359), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6359), - [anon_sym_DOT_DOT_LT] = ACTIONS(6359), - [anon_sym_null] = ACTIONS(6359), - [anon_sym_true] = ACTIONS(6359), - [anon_sym_false] = ACTIONS(6359), - [aux_sym__val_number_decimal_token1] = ACTIONS(6359), - [aux_sym__val_number_decimal_token2] = ACTIONS(6359), - [anon_sym_DOT2] = ACTIONS(6359), - [aux_sym__val_number_decimal_token3] = ACTIONS(6359), - [aux_sym__val_number_token1] = ACTIONS(6359), - [aux_sym__val_number_token2] = ACTIONS(6359), - [aux_sym__val_number_token3] = ACTIONS(6359), - [aux_sym__val_number_token4] = ACTIONS(6359), - [aux_sym__val_number_token5] = ACTIONS(6359), - [aux_sym__val_number_token6] = ACTIONS(6359), - [anon_sym_0b] = ACTIONS(6359), - [anon_sym_0o] = ACTIONS(6359), - [anon_sym_0x] = ACTIONS(6359), - [sym_val_date] = ACTIONS(6359), - [anon_sym_DQUOTE] = ACTIONS(6359), - [sym__str_single_quotes] = ACTIONS(6359), - [sym__str_back_ticks] = ACTIONS(6359), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6359), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6359), - [anon_sym_CARET] = ACTIONS(6359), - [anon_sym_POUND] = ACTIONS(113), - }, - [2642] = { - [sym_cell_path] = STATE(3067), - [sym_path] = STATE(2693), - [sym_comment] = STATE(2642), - [ts_builtin_sym_end] = ACTIONS(1150), - [anon_sym_SEMI] = ACTIONS(1148), - [anon_sym_LF] = ACTIONS(1150), - [anon_sym_LBRACK] = ACTIONS(1148), - [anon_sym_LPAREN] = ACTIONS(1148), - [anon_sym_PIPE] = ACTIONS(1148), - [anon_sym_DOLLAR] = ACTIONS(1148), - [anon_sym_GT] = ACTIONS(1148), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_DASH] = ACTIONS(1148), - [anon_sym_in] = ACTIONS(1148), - [anon_sym_LBRACE] = ACTIONS(1148), - [anon_sym_DOT_DOT] = ACTIONS(1148), - [anon_sym_STAR] = ACTIONS(1148), - [anon_sym_STAR_STAR] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_SLASH] = ACTIONS(1148), - [anon_sym_mod] = ACTIONS(1148), - [anon_sym_SLASH_SLASH] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1148), - [anon_sym_bit_DASHshl] = ACTIONS(1148), - [anon_sym_bit_DASHshr] = ACTIONS(1148), - [anon_sym_EQ_EQ] = ACTIONS(1148), - [anon_sym_BANG_EQ] = ACTIONS(1148), - [anon_sym_LT2] = ACTIONS(1148), - [anon_sym_LT_EQ] = ACTIONS(1148), - [anon_sym_GT_EQ] = ACTIONS(1148), - [anon_sym_not_DASHin] = ACTIONS(1148), - [anon_sym_starts_DASHwith] = ACTIONS(1148), - [anon_sym_ends_DASHwith] = ACTIONS(1148), - [anon_sym_EQ_TILDE] = ACTIONS(1148), - [anon_sym_BANG_TILDE] = ACTIONS(1148), - [anon_sym_bit_DASHand] = ACTIONS(1148), - [anon_sym_bit_DASHxor] = ACTIONS(1148), - [anon_sym_bit_DASHor] = ACTIONS(1148), - [anon_sym_and] = ACTIONS(1148), - [anon_sym_xor] = ACTIONS(1148), - [anon_sym_or] = ACTIONS(1148), - [anon_sym_not] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(6363), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1148), - [anon_sym_DOT_DOT_LT] = ACTIONS(1148), - [anon_sym_null] = ACTIONS(1148), - [anon_sym_true] = ACTIONS(1148), - [anon_sym_false] = ACTIONS(1148), - [aux_sym__val_number_decimal_token1] = ACTIONS(1148), - [aux_sym__val_number_decimal_token2] = ACTIONS(1148), - [anon_sym_DOT2] = ACTIONS(1148), - [aux_sym__val_number_decimal_token3] = ACTIONS(1148), - [aux_sym__val_number_token1] = ACTIONS(1148), - [aux_sym__val_number_token2] = ACTIONS(1148), - [aux_sym__val_number_token3] = ACTIONS(1148), - [aux_sym__val_number_token4] = ACTIONS(1148), - [aux_sym__val_number_token5] = ACTIONS(1148), - [aux_sym__val_number_token6] = ACTIONS(1148), - [anon_sym_0b] = ACTIONS(1148), - [anon_sym_0o] = ACTIONS(1148), - [anon_sym_0x] = ACTIONS(1148), - [sym_val_date] = ACTIONS(1148), - [anon_sym_DQUOTE] = ACTIONS(1148), - [sym__str_single_quotes] = ACTIONS(1148), - [sym__str_back_ticks] = ACTIONS(1148), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1148), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1148), - [anon_sym_POUND] = ACTIONS(113), - }, - [2643] = { - [sym_comment] = STATE(2643), - [ts_builtin_sym_end] = ACTIONS(1170), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_LF] = ACTIONS(1170), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_PIPE] = ACTIONS(1168), - [anon_sym_DOLLAR] = ACTIONS(1168), - [anon_sym_GT] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1168), - [anon_sym_in] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1168), - [anon_sym_DOT_DOT] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_STAR_STAR] = ACTIONS(1168), - [anon_sym_PLUS_PLUS] = ACTIONS(1168), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_mod] = ACTIONS(1168), - [anon_sym_SLASH_SLASH] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(1168), - [anon_sym_bit_DASHshl] = ACTIONS(1168), - [anon_sym_bit_DASHshr] = ACTIONS(1168), - [anon_sym_EQ_EQ] = ACTIONS(1168), - [anon_sym_BANG_EQ] = ACTIONS(1168), - [anon_sym_LT2] = ACTIONS(1168), - [anon_sym_LT_EQ] = ACTIONS(1168), - [anon_sym_GT_EQ] = ACTIONS(1168), - [anon_sym_not_DASHin] = ACTIONS(1168), - [anon_sym_starts_DASHwith] = ACTIONS(1168), - [anon_sym_ends_DASHwith] = ACTIONS(1168), - [anon_sym_EQ_TILDE] = ACTIONS(1168), - [anon_sym_BANG_TILDE] = ACTIONS(1168), - [anon_sym_bit_DASHand] = ACTIONS(1168), - [anon_sym_bit_DASHxor] = ACTIONS(1168), - [anon_sym_bit_DASHor] = ACTIONS(1168), - [anon_sym_and] = ACTIONS(1168), - [anon_sym_xor] = ACTIONS(1168), - [anon_sym_or] = ACTIONS(1168), - [anon_sym_not] = ACTIONS(1168), - [anon_sym_DOT_DOT2] = ACTIONS(1168), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1168), - [anon_sym_DOT_DOT_LT] = ACTIONS(1168), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1170), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1170), - [anon_sym_null] = ACTIONS(1168), - [anon_sym_true] = ACTIONS(1168), - [anon_sym_false] = ACTIONS(1168), - [aux_sym__val_number_decimal_token1] = ACTIONS(1168), - [aux_sym__val_number_decimal_token2] = ACTIONS(1168), - [anon_sym_DOT2] = ACTIONS(1168), - [aux_sym__val_number_decimal_token3] = ACTIONS(1168), - [aux_sym__val_number_token1] = ACTIONS(1168), - [aux_sym__val_number_token2] = ACTIONS(1168), - [aux_sym__val_number_token3] = ACTIONS(1168), - [aux_sym__val_number_token4] = ACTIONS(1168), - [aux_sym__val_number_token5] = ACTIONS(1168), - [aux_sym__val_number_token6] = ACTIONS(1168), - [anon_sym_0b] = ACTIONS(1168), - [anon_sym_0o] = ACTIONS(1168), - [anon_sym_0x] = ACTIONS(1168), - [sym_val_date] = ACTIONS(1168), - [anon_sym_DQUOTE] = ACTIONS(1168), - [sym__str_single_quotes] = ACTIONS(1168), - [sym__str_back_ticks] = ACTIONS(1168), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1168), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1168), - [anon_sym_POUND] = ACTIONS(113), - }, - [2644] = { - [sym_comment] = STATE(2644), - [anon_sym_export] = ACTIONS(6365), - [anon_sym_alias] = ACTIONS(6365), - [anon_sym_let] = ACTIONS(6365), - [anon_sym_let_DASHenv] = ACTIONS(6365), - [anon_sym_mut] = ACTIONS(6365), - [anon_sym_const] = ACTIONS(6365), - [anon_sym_SEMI] = ACTIONS(6365), - [sym_cmd_identifier] = ACTIONS(6365), - [anon_sym_LF] = ACTIONS(6367), - [anon_sym_def] = ACTIONS(6365), - [anon_sym_export_DASHenv] = ACTIONS(6365), - [anon_sym_extern] = ACTIONS(6365), - [anon_sym_module] = ACTIONS(6365), - [anon_sym_use] = ACTIONS(6365), - [anon_sym_LBRACK] = ACTIONS(6365), - [anon_sym_LPAREN] = ACTIONS(6365), - [anon_sym_RPAREN] = ACTIONS(6365), - [anon_sym_DOLLAR] = ACTIONS(6365), - [anon_sym_error] = ACTIONS(6365), - [anon_sym_DASH] = ACTIONS(6365), - [anon_sym_break] = ACTIONS(6365), - [anon_sym_continue] = ACTIONS(6365), - [anon_sym_for] = ACTIONS(6365), - [anon_sym_loop] = ACTIONS(6365), - [anon_sym_while] = ACTIONS(6365), - [anon_sym_do] = ACTIONS(6365), - [anon_sym_if] = ACTIONS(6365), - [anon_sym_match] = ACTIONS(6365), - [anon_sym_LBRACE] = ACTIONS(6365), - [anon_sym_RBRACE] = ACTIONS(6365), - [anon_sym_DOT_DOT] = ACTIONS(6365), - [anon_sym_try] = ACTIONS(6365), - [anon_sym_return] = ACTIONS(6365), - [anon_sym_source] = ACTIONS(6365), - [anon_sym_source_DASHenv] = ACTIONS(6365), - [anon_sym_register] = ACTIONS(6365), - [anon_sym_hide] = ACTIONS(6365), - [anon_sym_hide_DASHenv] = ACTIONS(6365), - [anon_sym_overlay] = ACTIONS(6365), - [anon_sym_where] = ACTIONS(6365), - [anon_sym_not] = ACTIONS(6365), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6365), - [anon_sym_DOT_DOT_LT] = ACTIONS(6365), - [anon_sym_null] = ACTIONS(6365), - [anon_sym_true] = ACTIONS(6365), - [anon_sym_false] = ACTIONS(6365), - [aux_sym__val_number_decimal_token1] = ACTIONS(6365), - [aux_sym__val_number_decimal_token2] = ACTIONS(6365), - [anon_sym_DOT2] = ACTIONS(6365), - [aux_sym__val_number_decimal_token3] = ACTIONS(6365), - [aux_sym__val_number_token1] = ACTIONS(6365), - [aux_sym__val_number_token2] = ACTIONS(6365), - [aux_sym__val_number_token3] = ACTIONS(6365), - [aux_sym__val_number_token4] = ACTIONS(6365), - [aux_sym__val_number_token5] = ACTIONS(6365), - [aux_sym__val_number_token6] = ACTIONS(6365), - [anon_sym_0b] = ACTIONS(6365), - [anon_sym_0o] = ACTIONS(6365), - [anon_sym_0x] = ACTIONS(6365), - [sym_val_date] = ACTIONS(6365), - [anon_sym_DQUOTE] = ACTIONS(6365), - [sym__str_single_quotes] = ACTIONS(6365), - [sym__str_back_ticks] = ACTIONS(6365), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6365), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6365), - [anon_sym_CARET] = ACTIONS(6365), - [anon_sym_POUND] = ACTIONS(113), - }, - [2645] = { - [sym_comment] = STATE(2645), - [anon_sym_export] = ACTIONS(6369), - [anon_sym_alias] = ACTIONS(6369), - [anon_sym_let] = ACTIONS(6369), - [anon_sym_let_DASHenv] = ACTIONS(6369), - [anon_sym_mut] = ACTIONS(6369), - [anon_sym_const] = ACTIONS(6369), - [anon_sym_SEMI] = ACTIONS(6369), - [sym_cmd_identifier] = ACTIONS(6369), - [anon_sym_LF] = ACTIONS(6371), - [anon_sym_def] = ACTIONS(6369), - [anon_sym_export_DASHenv] = ACTIONS(6369), - [anon_sym_extern] = ACTIONS(6369), - [anon_sym_module] = ACTIONS(6369), - [anon_sym_use] = ACTIONS(6369), - [anon_sym_LBRACK] = ACTIONS(6369), - [anon_sym_LPAREN] = ACTIONS(6369), - [anon_sym_RPAREN] = ACTIONS(6369), - [anon_sym_DOLLAR] = ACTIONS(6369), - [anon_sym_error] = ACTIONS(6369), - [anon_sym_DASH] = ACTIONS(6369), - [anon_sym_break] = ACTIONS(6369), - [anon_sym_continue] = ACTIONS(6369), - [anon_sym_for] = ACTIONS(6369), - [anon_sym_loop] = ACTIONS(6369), - [anon_sym_while] = ACTIONS(6369), - [anon_sym_do] = ACTIONS(6369), - [anon_sym_if] = ACTIONS(6369), - [anon_sym_match] = ACTIONS(6369), - [anon_sym_LBRACE] = ACTIONS(6369), - [anon_sym_RBRACE] = ACTIONS(6369), - [anon_sym_DOT_DOT] = ACTIONS(6369), - [anon_sym_try] = ACTIONS(6369), - [anon_sym_return] = ACTIONS(6369), - [anon_sym_source] = ACTIONS(6369), - [anon_sym_source_DASHenv] = ACTIONS(6369), - [anon_sym_register] = ACTIONS(6369), - [anon_sym_hide] = ACTIONS(6369), - [anon_sym_hide_DASHenv] = ACTIONS(6369), - [anon_sym_overlay] = ACTIONS(6369), - [anon_sym_where] = ACTIONS(6369), - [anon_sym_not] = ACTIONS(6369), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6369), - [anon_sym_DOT_DOT_LT] = ACTIONS(6369), - [anon_sym_null] = ACTIONS(6369), - [anon_sym_true] = ACTIONS(6369), - [anon_sym_false] = ACTIONS(6369), - [aux_sym__val_number_decimal_token1] = ACTIONS(6369), - [aux_sym__val_number_decimal_token2] = ACTIONS(6369), - [anon_sym_DOT2] = ACTIONS(6369), - [aux_sym__val_number_decimal_token3] = ACTIONS(6369), - [aux_sym__val_number_token1] = ACTIONS(6369), - [aux_sym__val_number_token2] = ACTIONS(6369), - [aux_sym__val_number_token3] = ACTIONS(6369), - [aux_sym__val_number_token4] = ACTIONS(6369), - [aux_sym__val_number_token5] = ACTIONS(6369), - [aux_sym__val_number_token6] = ACTIONS(6369), - [anon_sym_0b] = ACTIONS(6369), - [anon_sym_0o] = ACTIONS(6369), - [anon_sym_0x] = ACTIONS(6369), - [sym_val_date] = ACTIONS(6369), - [anon_sym_DQUOTE] = ACTIONS(6369), - [sym__str_single_quotes] = ACTIONS(6369), - [sym__str_back_ticks] = ACTIONS(6369), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6369), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6369), - [anon_sym_CARET] = ACTIONS(6369), + [2678] = { + [sym_comment] = STATE(2678), + [ts_builtin_sym_end] = ACTIONS(1181), + [anon_sym_SEMI] = ACTIONS(1179), + [anon_sym_LF] = ACTIONS(1181), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_PIPE] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(6626), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(6628), + [anon_sym_in] = ACTIONS(6630), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(6632), + [anon_sym_STAR_STAR] = ACTIONS(6634), + [anon_sym_PLUS_PLUS] = ACTIONS(6634), + [anon_sym_SLASH] = ACTIONS(6632), + [anon_sym_mod] = ACTIONS(6632), + [anon_sym_SLASH_SLASH] = ACTIONS(6632), + [anon_sym_PLUS] = ACTIONS(6628), + [anon_sym_bit_DASHshl] = ACTIONS(6636), + [anon_sym_bit_DASHshr] = ACTIONS(6636), + [anon_sym_EQ_EQ] = ACTIONS(6626), + [anon_sym_BANG_EQ] = ACTIONS(6626), + [anon_sym_LT2] = ACTIONS(6626), + [anon_sym_LT_EQ] = ACTIONS(6626), + [anon_sym_GT_EQ] = ACTIONS(6626), + [anon_sym_not_DASHin] = ACTIONS(6630), + [anon_sym_starts_DASHwith] = ACTIONS(6630), + [anon_sym_ends_DASHwith] = ACTIONS(6630), + [anon_sym_EQ_TILDE] = ACTIONS(6638), + [anon_sym_BANG_TILDE] = ACTIONS(6638), + [anon_sym_bit_DASHand] = ACTIONS(6640), + [anon_sym_bit_DASHxor] = ACTIONS(6642), + [anon_sym_bit_DASHor] = ACTIONS(6644), + [anon_sym_and] = ACTIONS(6646), + [anon_sym_xor] = ACTIONS(6648), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_not] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1179), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, - [2646] = { - [sym_comment] = STATE(2646), - [anon_sym_export] = ACTIONS(6373), - [anon_sym_alias] = ACTIONS(6373), - [anon_sym_let] = ACTIONS(6373), - [anon_sym_let_DASHenv] = ACTIONS(6373), - [anon_sym_mut] = ACTIONS(6373), - [anon_sym_const] = ACTIONS(6373), - [anon_sym_SEMI] = ACTIONS(6373), - [sym_cmd_identifier] = ACTIONS(6373), - [anon_sym_LF] = ACTIONS(6375), - [anon_sym_def] = ACTIONS(6373), - [anon_sym_export_DASHenv] = ACTIONS(6373), - [anon_sym_extern] = ACTIONS(6373), - [anon_sym_module] = ACTIONS(6373), - [anon_sym_use] = ACTIONS(6373), - [anon_sym_LBRACK] = ACTIONS(6373), - [anon_sym_LPAREN] = ACTIONS(6373), - [anon_sym_RPAREN] = ACTIONS(6373), - [anon_sym_DOLLAR] = ACTIONS(6373), - [anon_sym_error] = ACTIONS(6373), - [anon_sym_DASH] = ACTIONS(6373), - [anon_sym_break] = ACTIONS(6373), - [anon_sym_continue] = ACTIONS(6373), - [anon_sym_for] = ACTIONS(6373), - [anon_sym_loop] = ACTIONS(6373), - [anon_sym_while] = ACTIONS(6373), - [anon_sym_do] = ACTIONS(6373), - [anon_sym_if] = ACTIONS(6373), - [anon_sym_match] = ACTIONS(6373), - [anon_sym_LBRACE] = ACTIONS(6373), - [anon_sym_RBRACE] = ACTIONS(6373), - [anon_sym_DOT_DOT] = ACTIONS(6373), - [anon_sym_try] = ACTIONS(6373), - [anon_sym_return] = ACTIONS(6373), - [anon_sym_source] = ACTIONS(6373), - [anon_sym_source_DASHenv] = ACTIONS(6373), - [anon_sym_register] = ACTIONS(6373), - [anon_sym_hide] = ACTIONS(6373), - [anon_sym_hide_DASHenv] = ACTIONS(6373), - [anon_sym_overlay] = ACTIONS(6373), - [anon_sym_where] = ACTIONS(6373), - [anon_sym_not] = ACTIONS(6373), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6373), - [anon_sym_DOT_DOT_LT] = ACTIONS(6373), - [anon_sym_null] = ACTIONS(6373), - [anon_sym_true] = ACTIONS(6373), - [anon_sym_false] = ACTIONS(6373), - [aux_sym__val_number_decimal_token1] = ACTIONS(6373), - [aux_sym__val_number_decimal_token2] = ACTIONS(6373), - [anon_sym_DOT2] = ACTIONS(6373), - [aux_sym__val_number_decimal_token3] = ACTIONS(6373), - [aux_sym__val_number_token1] = ACTIONS(6373), - [aux_sym__val_number_token2] = ACTIONS(6373), - [aux_sym__val_number_token3] = ACTIONS(6373), - [aux_sym__val_number_token4] = ACTIONS(6373), - [aux_sym__val_number_token5] = ACTIONS(6373), - [aux_sym__val_number_token6] = ACTIONS(6373), - [anon_sym_0b] = ACTIONS(6373), - [anon_sym_0o] = ACTIONS(6373), - [anon_sym_0x] = ACTIONS(6373), - [sym_val_date] = ACTIONS(6373), - [anon_sym_DQUOTE] = ACTIONS(6373), - [sym__str_single_quotes] = ACTIONS(6373), - [sym__str_back_ticks] = ACTIONS(6373), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6373), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6373), - [anon_sym_CARET] = ACTIONS(6373), + [2679] = { + [sym_comment] = STATE(2679), + [ts_builtin_sym_end] = ACTIONS(922), + [anon_sym_SEMI] = ACTIONS(920), + [anon_sym_LF] = ACTIONS(922), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_PIPE] = ACTIONS(920), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_in] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_STAR_STAR] = ACTIONS(920), + [anon_sym_PLUS_PLUS] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_mod] = ACTIONS(920), + [anon_sym_SLASH_SLASH] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_bit_DASHshl] = ACTIONS(920), + [anon_sym_bit_DASHshr] = ACTIONS(920), + [anon_sym_EQ_EQ] = ACTIONS(920), + [anon_sym_BANG_EQ] = ACTIONS(920), + [anon_sym_LT2] = ACTIONS(920), + [anon_sym_LT_EQ] = ACTIONS(920), + [anon_sym_GT_EQ] = ACTIONS(920), + [anon_sym_not_DASHin] = ACTIONS(920), + [anon_sym_starts_DASHwith] = ACTIONS(920), + [anon_sym_ends_DASHwith] = ACTIONS(920), + [anon_sym_EQ_TILDE] = ACTIONS(920), + [anon_sym_BANG_TILDE] = ACTIONS(920), + [anon_sym_bit_DASHand] = ACTIONS(920), + [anon_sym_bit_DASHxor] = ACTIONS(920), + [anon_sym_bit_DASHor] = ACTIONS(920), + [anon_sym_and] = ACTIONS(920), + [anon_sym_xor] = ACTIONS(920), + [anon_sym_or] = ACTIONS(920), + [anon_sym_not] = ACTIONS(920), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [anon_sym_null] = ACTIONS(920), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [aux_sym__val_number_decimal_token1] = ACTIONS(920), + [aux_sym__val_number_decimal_token2] = ACTIONS(920), + [anon_sym_DOT2] = ACTIONS(920), + [aux_sym__val_number_decimal_token3] = ACTIONS(920), + [aux_sym__val_number_token1] = ACTIONS(920), + [aux_sym__val_number_token2] = ACTIONS(920), + [aux_sym__val_number_token3] = ACTIONS(920), + [aux_sym__val_number_token4] = ACTIONS(920), + [aux_sym__val_number_token5] = ACTIONS(920), + [aux_sym__val_number_token6] = ACTIONS(920), + [anon_sym_0b] = ACTIONS(920), + [anon_sym_0o] = ACTIONS(920), + [anon_sym_0x] = ACTIONS(920), + [sym_val_date] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [sym__str_single_quotes] = ACTIONS(920), + [sym__str_back_ticks] = ACTIONS(920), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), [anon_sym_POUND] = ACTIONS(113), }, - [2647] = { - [sym_cell_path] = STATE(3068), - [sym_path] = STATE(2693), - [sym_comment] = STATE(2647), + [2680] = { + [sym_comment] = STATE(2680), [ts_builtin_sym_end] = ACTIONS(1181), [anon_sym_SEMI] = ACTIONS(1179), [anon_sym_LF] = ACTIONS(1181), @@ -317126,39 +308072,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1179), [anon_sym_PIPE] = ACTIONS(1179), [anon_sym_DOLLAR] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(6626), [anon_sym_DASH_DASH] = ACTIONS(1179), - [anon_sym_DASH] = ACTIONS(1179), - [anon_sym_in] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(6628), + [anon_sym_in] = ACTIONS(6630), [anon_sym_LBRACE] = ACTIONS(1179), [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_STAR] = ACTIONS(1179), - [anon_sym_STAR_STAR] = ACTIONS(1179), - [anon_sym_PLUS_PLUS] = ACTIONS(1179), - [anon_sym_SLASH] = ACTIONS(1179), - [anon_sym_mod] = ACTIONS(1179), - [anon_sym_SLASH_SLASH] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1179), - [anon_sym_bit_DASHshl] = ACTIONS(1179), - [anon_sym_bit_DASHshr] = ACTIONS(1179), - [anon_sym_EQ_EQ] = ACTIONS(1179), - [anon_sym_BANG_EQ] = ACTIONS(1179), - [anon_sym_LT2] = ACTIONS(1179), - [anon_sym_LT_EQ] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(1179), - [anon_sym_not_DASHin] = ACTIONS(1179), - [anon_sym_starts_DASHwith] = ACTIONS(1179), - [anon_sym_ends_DASHwith] = ACTIONS(1179), - [anon_sym_EQ_TILDE] = ACTIONS(1179), - [anon_sym_BANG_TILDE] = ACTIONS(1179), - [anon_sym_bit_DASHand] = ACTIONS(1179), - [anon_sym_bit_DASHxor] = ACTIONS(1179), - [anon_sym_bit_DASHor] = ACTIONS(1179), - [anon_sym_and] = ACTIONS(1179), - [anon_sym_xor] = ACTIONS(1179), - [anon_sym_or] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(6632), + [anon_sym_STAR_STAR] = ACTIONS(6634), + [anon_sym_PLUS_PLUS] = ACTIONS(6634), + [anon_sym_SLASH] = ACTIONS(6632), + [anon_sym_mod] = ACTIONS(6632), + [anon_sym_SLASH_SLASH] = ACTIONS(6632), + [anon_sym_PLUS] = ACTIONS(6628), + [anon_sym_bit_DASHshl] = ACTIONS(6636), + [anon_sym_bit_DASHshr] = ACTIONS(6636), + [anon_sym_EQ_EQ] = ACTIONS(6626), + [anon_sym_BANG_EQ] = ACTIONS(6626), + [anon_sym_LT2] = ACTIONS(6626), + [anon_sym_LT_EQ] = ACTIONS(6626), + [anon_sym_GT_EQ] = ACTIONS(6626), + [anon_sym_not_DASHin] = ACTIONS(6630), + [anon_sym_starts_DASHwith] = ACTIONS(6630), + [anon_sym_ends_DASHwith] = ACTIONS(6630), + [anon_sym_EQ_TILDE] = ACTIONS(6638), + [anon_sym_BANG_TILDE] = ACTIONS(6638), + [anon_sym_bit_DASHand] = ACTIONS(6640), + [anon_sym_bit_DASHxor] = ACTIONS(6642), + [anon_sym_bit_DASHor] = ACTIONS(6644), + [anon_sym_and] = ACTIONS(6646), + [anon_sym_xor] = ACTIONS(6648), + [anon_sym_or] = ACTIONS(6650), [anon_sym_not] = ACTIONS(1179), - [anon_sym_DOT] = ACTIONS(6363), [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), [anon_sym_DOT_DOT_LT] = ACTIONS(1179), [anon_sym_null] = ACTIONS(1179), @@ -317185,33774 +308130,2215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, - [2648] = { - [sym_comment] = STATE(2648), - [anon_sym_export] = ACTIONS(6377), - [anon_sym_alias] = ACTIONS(6377), - [anon_sym_let] = ACTIONS(6377), - [anon_sym_let_DASHenv] = ACTIONS(6377), - [anon_sym_mut] = ACTIONS(6377), - [anon_sym_const] = ACTIONS(6377), - [anon_sym_SEMI] = ACTIONS(6377), - [sym_cmd_identifier] = ACTIONS(6377), - [anon_sym_LF] = ACTIONS(6379), - [anon_sym_def] = ACTIONS(6377), - [anon_sym_export_DASHenv] = ACTIONS(6377), - [anon_sym_extern] = ACTIONS(6377), - [anon_sym_module] = ACTIONS(6377), - [anon_sym_use] = ACTIONS(6377), - [anon_sym_LBRACK] = ACTIONS(6377), - [anon_sym_LPAREN] = ACTIONS(6377), - [anon_sym_RPAREN] = ACTIONS(6377), - [anon_sym_DOLLAR] = ACTIONS(6377), - [anon_sym_error] = ACTIONS(6377), - [anon_sym_DASH] = ACTIONS(6377), - [anon_sym_break] = ACTIONS(6377), - [anon_sym_continue] = ACTIONS(6377), - [anon_sym_for] = ACTIONS(6377), - [anon_sym_loop] = ACTIONS(6377), - [anon_sym_while] = ACTIONS(6377), - [anon_sym_do] = ACTIONS(6377), - [anon_sym_if] = ACTIONS(6377), - [anon_sym_match] = ACTIONS(6377), - [anon_sym_LBRACE] = ACTIONS(6377), - [anon_sym_RBRACE] = ACTIONS(6377), - [anon_sym_DOT_DOT] = ACTIONS(6377), - [anon_sym_try] = ACTIONS(6377), - [anon_sym_return] = ACTIONS(6377), - [anon_sym_source] = ACTIONS(6377), - [anon_sym_source_DASHenv] = ACTIONS(6377), - [anon_sym_register] = ACTIONS(6377), - [anon_sym_hide] = ACTIONS(6377), - [anon_sym_hide_DASHenv] = ACTIONS(6377), - [anon_sym_overlay] = ACTIONS(6377), - [anon_sym_where] = ACTIONS(6377), - [anon_sym_not] = ACTIONS(6377), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6377), - [anon_sym_DOT_DOT_LT] = ACTIONS(6377), - [anon_sym_null] = ACTIONS(6377), - [anon_sym_true] = ACTIONS(6377), - [anon_sym_false] = ACTIONS(6377), - [aux_sym__val_number_decimal_token1] = ACTIONS(6377), - [aux_sym__val_number_decimal_token2] = ACTIONS(6377), - [anon_sym_DOT2] = ACTIONS(6377), - [aux_sym__val_number_decimal_token3] = ACTIONS(6377), - [aux_sym__val_number_token1] = ACTIONS(6377), - [aux_sym__val_number_token2] = ACTIONS(6377), - [aux_sym__val_number_token3] = ACTIONS(6377), - [aux_sym__val_number_token4] = ACTIONS(6377), - [aux_sym__val_number_token5] = ACTIONS(6377), - [aux_sym__val_number_token6] = ACTIONS(6377), - [anon_sym_0b] = ACTIONS(6377), - [anon_sym_0o] = ACTIONS(6377), - [anon_sym_0x] = ACTIONS(6377), - [sym_val_date] = ACTIONS(6377), - [anon_sym_DQUOTE] = ACTIONS(6377), - [sym__str_single_quotes] = ACTIONS(6377), - [sym__str_back_ticks] = ACTIONS(6377), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6377), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6377), - [anon_sym_CARET] = ACTIONS(6377), + [2681] = { + [sym_comment] = STATE(2681), + [ts_builtin_sym_end] = ACTIONS(1091), + [anon_sym_SEMI] = ACTIONS(1089), + [anon_sym_LF] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1089), + [anon_sym_PIPE] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1089), + [anon_sym_GT] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_DASH] = ACTIONS(1089), + [anon_sym_in] = ACTIONS(1089), + [anon_sym_LBRACE] = ACTIONS(1089), + [anon_sym_DOT_DOT] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_STAR_STAR] = ACTIONS(1089), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_SLASH] = ACTIONS(1089), + [anon_sym_mod] = ACTIONS(1089), + [anon_sym_SLASH_SLASH] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1089), + [anon_sym_bit_DASHshl] = ACTIONS(1089), + [anon_sym_bit_DASHshr] = ACTIONS(1089), + [anon_sym_EQ_EQ] = ACTIONS(1089), + [anon_sym_BANG_EQ] = ACTIONS(1089), + [anon_sym_LT2] = ACTIONS(1089), + [anon_sym_LT_EQ] = ACTIONS(1089), + [anon_sym_GT_EQ] = ACTIONS(1089), + [anon_sym_not_DASHin] = ACTIONS(1089), + [anon_sym_starts_DASHwith] = ACTIONS(1089), + [anon_sym_ends_DASHwith] = ACTIONS(1089), + [anon_sym_EQ_TILDE] = ACTIONS(1089), + [anon_sym_BANG_TILDE] = ACTIONS(1089), + [anon_sym_bit_DASHand] = ACTIONS(1089), + [anon_sym_bit_DASHxor] = ACTIONS(1089), + [anon_sym_bit_DASHor] = ACTIONS(1089), + [anon_sym_and] = ACTIONS(1089), + [anon_sym_xor] = ACTIONS(1089), + [anon_sym_or] = ACTIONS(1089), + [anon_sym_not] = ACTIONS(1089), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_DOT_DOT_LT] = ACTIONS(1089), + [anon_sym_null] = ACTIONS(1089), + [anon_sym_true] = ACTIONS(1089), + [anon_sym_false] = ACTIONS(1089), + [aux_sym__val_number_decimal_token1] = ACTIONS(1089), + [aux_sym__val_number_decimal_token2] = ACTIONS(1089), + [anon_sym_DOT2] = ACTIONS(1089), + [aux_sym__val_number_decimal_token3] = ACTIONS(1089), + [aux_sym__val_number_token1] = ACTIONS(1089), + [aux_sym__val_number_token2] = ACTIONS(1089), + [aux_sym__val_number_token3] = ACTIONS(1089), + [aux_sym__val_number_token4] = ACTIONS(1089), + [aux_sym__val_number_token5] = ACTIONS(1089), + [aux_sym__val_number_token6] = ACTIONS(1089), + [anon_sym_0b] = ACTIONS(1089), + [anon_sym_0o] = ACTIONS(1089), + [anon_sym_0x] = ACTIONS(1089), + [sym_val_date] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1089), + [sym__str_single_quotes] = ACTIONS(1089), + [sym__str_back_ticks] = ACTIONS(1089), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1089), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(113), }, - [2649] = { - [sym_comment] = STATE(2649), - [anon_sym_export] = ACTIONS(6381), - [anon_sym_alias] = ACTIONS(6381), - [anon_sym_let] = ACTIONS(6381), - [anon_sym_let_DASHenv] = ACTIONS(6381), - [anon_sym_mut] = ACTIONS(6381), - [anon_sym_const] = ACTIONS(6381), - [anon_sym_SEMI] = ACTIONS(6381), - [sym_cmd_identifier] = ACTIONS(6381), - [anon_sym_LF] = ACTIONS(6383), - [anon_sym_def] = ACTIONS(6381), - [anon_sym_export_DASHenv] = ACTIONS(6381), - [anon_sym_extern] = ACTIONS(6381), - [anon_sym_module] = ACTIONS(6381), - [anon_sym_use] = ACTIONS(6381), - [anon_sym_LBRACK] = ACTIONS(6381), - [anon_sym_LPAREN] = ACTIONS(6381), - [anon_sym_RPAREN] = ACTIONS(6381), - [anon_sym_DOLLAR] = ACTIONS(6381), - [anon_sym_error] = ACTIONS(6381), - [anon_sym_DASH] = ACTIONS(6381), - [anon_sym_break] = ACTIONS(6381), - [anon_sym_continue] = ACTIONS(6381), - [anon_sym_for] = ACTIONS(6381), - [anon_sym_loop] = ACTIONS(6381), - [anon_sym_while] = ACTIONS(6381), - [anon_sym_do] = ACTIONS(6381), - [anon_sym_if] = ACTIONS(6381), - [anon_sym_match] = ACTIONS(6381), - [anon_sym_LBRACE] = ACTIONS(6381), - [anon_sym_RBRACE] = ACTIONS(6381), - [anon_sym_DOT_DOT] = ACTIONS(6381), - [anon_sym_try] = ACTIONS(6381), - [anon_sym_return] = ACTIONS(6381), - [anon_sym_source] = ACTIONS(6381), - [anon_sym_source_DASHenv] = ACTIONS(6381), - [anon_sym_register] = ACTIONS(6381), - [anon_sym_hide] = ACTIONS(6381), - [anon_sym_hide_DASHenv] = ACTIONS(6381), - [anon_sym_overlay] = ACTIONS(6381), - [anon_sym_where] = ACTIONS(6381), - [anon_sym_not] = ACTIONS(6381), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6381), - [anon_sym_DOT_DOT_LT] = ACTIONS(6381), - [anon_sym_null] = ACTIONS(6381), - [anon_sym_true] = ACTIONS(6381), - [anon_sym_false] = ACTIONS(6381), - [aux_sym__val_number_decimal_token1] = ACTIONS(6381), - [aux_sym__val_number_decimal_token2] = ACTIONS(6381), - [anon_sym_DOT2] = ACTIONS(6381), - [aux_sym__val_number_decimal_token3] = ACTIONS(6381), - [aux_sym__val_number_token1] = ACTIONS(6381), - [aux_sym__val_number_token2] = ACTIONS(6381), - [aux_sym__val_number_token3] = ACTIONS(6381), - [aux_sym__val_number_token4] = ACTIONS(6381), - [aux_sym__val_number_token5] = ACTIONS(6381), - [aux_sym__val_number_token6] = ACTIONS(6381), - [anon_sym_0b] = ACTIONS(6381), - [anon_sym_0o] = ACTIONS(6381), - [anon_sym_0x] = ACTIONS(6381), - [sym_val_date] = ACTIONS(6381), - [anon_sym_DQUOTE] = ACTIONS(6381), - [sym__str_single_quotes] = ACTIONS(6381), - [sym__str_back_ticks] = ACTIONS(6381), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6381), - [anon_sym_CARET] = ACTIONS(6381), + [2682] = { + [sym_comment] = STATE(2682), + [ts_builtin_sym_end] = ACTIONS(1169), + [anon_sym_SEMI] = ACTIONS(1076), + [anon_sym_LF] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(1076), + [anon_sym_PIPE] = ACTIONS(1076), + [anon_sym_DOLLAR] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_DASH_DASH] = ACTIONS(1076), + [anon_sym_DASH] = ACTIONS(1076), + [anon_sym_in] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1076), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_STAR] = ACTIONS(1076), + [anon_sym_STAR_STAR] = ACTIONS(1076), + [anon_sym_PLUS_PLUS] = ACTIONS(1076), + [anon_sym_SLASH] = ACTIONS(1076), + [anon_sym_mod] = ACTIONS(1076), + [anon_sym_SLASH_SLASH] = ACTIONS(1076), + [anon_sym_PLUS] = ACTIONS(1076), + [anon_sym_bit_DASHshl] = ACTIONS(1076), + [anon_sym_bit_DASHshr] = ACTIONS(1076), + [anon_sym_EQ_EQ] = ACTIONS(1076), + [anon_sym_BANG_EQ] = ACTIONS(1076), + [anon_sym_LT2] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1076), + [anon_sym_GT_EQ] = ACTIONS(1076), + [anon_sym_not_DASHin] = ACTIONS(1076), + [anon_sym_starts_DASHwith] = ACTIONS(1076), + [anon_sym_ends_DASHwith] = ACTIONS(1076), + [anon_sym_EQ_TILDE] = ACTIONS(1076), + [anon_sym_BANG_TILDE] = ACTIONS(1076), + [anon_sym_bit_DASHand] = ACTIONS(1076), + [anon_sym_bit_DASHxor] = ACTIONS(1076), + [anon_sym_bit_DASHor] = ACTIONS(1076), + [anon_sym_and] = ACTIONS(1076), + [anon_sym_xor] = ACTIONS(1076), + [anon_sym_or] = ACTIONS(1076), + [anon_sym_not] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1076), + [anon_sym_DOT_DOT_LT] = ACTIONS(1076), + [anon_sym_null] = ACTIONS(1076), + [anon_sym_true] = ACTIONS(1076), + [anon_sym_false] = ACTIONS(1076), + [aux_sym__val_number_decimal_token1] = ACTIONS(1076), + [aux_sym__val_number_decimal_token2] = ACTIONS(1076), + [anon_sym_DOT2] = ACTIONS(1076), + [aux_sym__val_number_decimal_token3] = ACTIONS(1076), + [aux_sym__val_number_token1] = ACTIONS(1076), + [aux_sym__val_number_token2] = ACTIONS(1076), + [aux_sym__val_number_token3] = ACTIONS(1076), + [aux_sym__val_number_token4] = ACTIONS(1076), + [aux_sym__val_number_token5] = ACTIONS(1076), + [aux_sym__val_number_token6] = ACTIONS(1076), + [anon_sym_0b] = ACTIONS(1076), + [anon_sym_0o] = ACTIONS(1076), + [anon_sym_0x] = ACTIONS(1076), + [sym_val_date] = ACTIONS(1076), + [anon_sym_DQUOTE] = ACTIONS(1076), + [sym__str_single_quotes] = ACTIONS(1076), + [sym__str_back_ticks] = ACTIONS(1076), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1076), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1076), [anon_sym_POUND] = ACTIONS(113), }, - [2650] = { - [sym_comment] = STATE(2650), - [ts_builtin_sym_end] = ACTIONS(1310), - [anon_sym_export] = ACTIONS(1308), - [anon_sym_alias] = ACTIONS(1308), - [anon_sym_let] = ACTIONS(1308), - [anon_sym_let_DASHenv] = ACTIONS(1308), - [anon_sym_mut] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [sym_cmd_identifier] = ACTIONS(1308), - [anon_sym_LF] = ACTIONS(1310), - [anon_sym_def] = ACTIONS(1308), - [anon_sym_export_DASHenv] = ACTIONS(1308), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym_module] = ACTIONS(1308), - [anon_sym_use] = ACTIONS(1308), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_LPAREN] = ACTIONS(1308), - [anon_sym_DOLLAR] = ACTIONS(1308), - [anon_sym_error] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_break] = ACTIONS(1308), - [anon_sym_continue] = ACTIONS(1308), - [anon_sym_for] = ACTIONS(1308), - [anon_sym_loop] = ACTIONS(1308), - [anon_sym_while] = ACTIONS(1308), - [anon_sym_do] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_match] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_DOT_DOT] = ACTIONS(1308), - [anon_sym_try] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1308), - [anon_sym_source] = ACTIONS(1308), - [anon_sym_source_DASHenv] = ACTIONS(1308), - [anon_sym_register] = ACTIONS(1308), - [anon_sym_hide] = ACTIONS(1308), - [anon_sym_hide_DASHenv] = ACTIONS(1308), - [anon_sym_overlay] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_where] = ACTIONS(1308), - [anon_sym_not] = ACTIONS(1308), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1308), - [anon_sym_DOT_DOT_LT] = ACTIONS(1308), - [anon_sym_null] = ACTIONS(1308), - [anon_sym_true] = ACTIONS(1308), - [anon_sym_false] = ACTIONS(1308), - [aux_sym__val_number_decimal_token1] = ACTIONS(1308), - [aux_sym__val_number_decimal_token2] = ACTIONS(1308), - [anon_sym_DOT2] = ACTIONS(1308), - [aux_sym__val_number_decimal_token3] = ACTIONS(1308), - [aux_sym__val_number_token1] = ACTIONS(1308), - [aux_sym__val_number_token2] = ACTIONS(1308), - [aux_sym__val_number_token3] = ACTIONS(1308), - [aux_sym__val_number_token4] = ACTIONS(1308), - [aux_sym__val_number_token5] = ACTIONS(1308), - [aux_sym__val_number_token6] = ACTIONS(1308), - [anon_sym_0b] = ACTIONS(1308), - [anon_sym_0o] = ACTIONS(1308), - [anon_sym_0x] = ACTIONS(1308), - [sym_val_date] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym__str_single_quotes] = ACTIONS(1308), - [sym__str_back_ticks] = ACTIONS(1308), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1308), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1308), - [anon_sym_CARET] = ACTIONS(1308), + [2683] = { + [sym_comment] = STATE(2683), + [ts_builtin_sym_end] = ACTIONS(1095), + [anon_sym_SEMI] = ACTIONS(1093), + [anon_sym_LF] = ACTIONS(1095), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_LPAREN] = ACTIONS(1093), + [anon_sym_PIPE] = ACTIONS(1093), + [anon_sym_DOLLAR] = ACTIONS(1093), + [anon_sym_GT] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_in] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1093), + [anon_sym_DOT_DOT] = ACTIONS(1093), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_STAR_STAR] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1093), + [anon_sym_SLASH] = ACTIONS(1093), + [anon_sym_mod] = ACTIONS(1093), + [anon_sym_SLASH_SLASH] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_bit_DASHshl] = ACTIONS(1093), + [anon_sym_bit_DASHshr] = ACTIONS(1093), + [anon_sym_EQ_EQ] = ACTIONS(1093), + [anon_sym_BANG_EQ] = ACTIONS(1093), + [anon_sym_LT2] = ACTIONS(1093), + [anon_sym_LT_EQ] = ACTIONS(1093), + [anon_sym_GT_EQ] = ACTIONS(1093), + [anon_sym_not_DASHin] = ACTIONS(1093), + [anon_sym_starts_DASHwith] = ACTIONS(1093), + [anon_sym_ends_DASHwith] = ACTIONS(1093), + [anon_sym_EQ_TILDE] = ACTIONS(1093), + [anon_sym_BANG_TILDE] = ACTIONS(1093), + [anon_sym_bit_DASHand] = ACTIONS(1093), + [anon_sym_bit_DASHxor] = ACTIONS(1093), + [anon_sym_bit_DASHor] = ACTIONS(1093), + [anon_sym_and] = ACTIONS(1093), + [anon_sym_xor] = ACTIONS(1093), + [anon_sym_or] = ACTIONS(1093), + [anon_sym_not] = ACTIONS(1093), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1093), + [anon_sym_DOT_DOT_LT] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1093), + [anon_sym_true] = ACTIONS(1093), + [anon_sym_false] = ACTIONS(1093), + [aux_sym__val_number_decimal_token1] = ACTIONS(1093), + [aux_sym__val_number_decimal_token2] = ACTIONS(1093), + [anon_sym_DOT2] = ACTIONS(1093), + [aux_sym__val_number_decimal_token3] = ACTIONS(1093), + [aux_sym__val_number_token1] = ACTIONS(1093), + [aux_sym__val_number_token2] = ACTIONS(1093), + [aux_sym__val_number_token3] = ACTIONS(1093), + [aux_sym__val_number_token4] = ACTIONS(1093), + [aux_sym__val_number_token5] = ACTIONS(1093), + [aux_sym__val_number_token6] = ACTIONS(1093), + [anon_sym_0b] = ACTIONS(1093), + [anon_sym_0o] = ACTIONS(1093), + [anon_sym_0x] = ACTIONS(1093), + [sym_val_date] = ACTIONS(1093), + [anon_sym_DQUOTE] = ACTIONS(1093), + [sym__str_single_quotes] = ACTIONS(1093), + [sym__str_back_ticks] = ACTIONS(1093), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1093), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1093), [anon_sym_POUND] = ACTIONS(113), }, - [2651] = { - [sym_comment] = STATE(2651), - [ts_builtin_sym_end] = ACTIONS(1314), - [anon_sym_export] = ACTIONS(1312), - [anon_sym_alias] = ACTIONS(1312), - [anon_sym_let] = ACTIONS(1312), - [anon_sym_let_DASHenv] = ACTIONS(1312), - [anon_sym_mut] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [sym_cmd_identifier] = ACTIONS(1312), - [anon_sym_LF] = ACTIONS(1314), - [anon_sym_def] = ACTIONS(1312), - [anon_sym_export_DASHenv] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym_module] = ACTIONS(1312), - [anon_sym_use] = ACTIONS(1312), - [anon_sym_LBRACK] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1312), - [anon_sym_DOLLAR] = ACTIONS(1312), - [anon_sym_error] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_loop] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_match] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_DOT_DOT] = ACTIONS(1312), - [anon_sym_try] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_source] = ACTIONS(1312), - [anon_sym_source_DASHenv] = ACTIONS(1312), - [anon_sym_register] = ACTIONS(1312), - [anon_sym_hide] = ACTIONS(1312), - [anon_sym_hide_DASHenv] = ACTIONS(1312), - [anon_sym_overlay] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_where] = ACTIONS(1312), - [anon_sym_not] = ACTIONS(1312), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1312), - [anon_sym_DOT_DOT_LT] = ACTIONS(1312), - [anon_sym_null] = ACTIONS(1312), - [anon_sym_true] = ACTIONS(1312), - [anon_sym_false] = ACTIONS(1312), - [aux_sym__val_number_decimal_token1] = ACTIONS(1312), - [aux_sym__val_number_decimal_token2] = ACTIONS(1312), - [anon_sym_DOT2] = ACTIONS(1312), - [aux_sym__val_number_decimal_token3] = ACTIONS(1312), - [aux_sym__val_number_token1] = ACTIONS(1312), - [aux_sym__val_number_token2] = ACTIONS(1312), - [aux_sym__val_number_token3] = ACTIONS(1312), - [aux_sym__val_number_token4] = ACTIONS(1312), - [aux_sym__val_number_token5] = ACTIONS(1312), - [aux_sym__val_number_token6] = ACTIONS(1312), - [anon_sym_0b] = ACTIONS(1312), - [anon_sym_0o] = ACTIONS(1312), - [anon_sym_0x] = ACTIONS(1312), - [sym_val_date] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym__str_single_quotes] = ACTIONS(1312), - [sym__str_back_ticks] = ACTIONS(1312), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1312), - [anon_sym_CARET] = ACTIONS(1312), + [2684] = { + [sym_comment] = STATE(2684), + [ts_builtin_sym_end] = ACTIONS(1223), + [anon_sym_SEMI] = ACTIONS(1221), + [anon_sym_LF] = ACTIONS(1223), + [anon_sym_LBRACK] = ACTIONS(1221), + [anon_sym_LPAREN] = ACTIONS(1221), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_DOLLAR] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_DASH_DASH] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_in] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1221), + [anon_sym_DOT_DOT] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_STAR_STAR] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_mod] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_bit_DASHshl] = ACTIONS(1221), + [anon_sym_bit_DASHshr] = ACTIONS(1221), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT2] = ACTIONS(1221), + [anon_sym_LT_EQ] = ACTIONS(1221), + [anon_sym_GT_EQ] = ACTIONS(1221), + [anon_sym_not_DASHin] = ACTIONS(1221), + [anon_sym_starts_DASHwith] = ACTIONS(1221), + [anon_sym_ends_DASHwith] = ACTIONS(1221), + [anon_sym_EQ_TILDE] = ACTIONS(1221), + [anon_sym_BANG_TILDE] = ACTIONS(1221), + [anon_sym_bit_DASHand] = ACTIONS(1221), + [anon_sym_bit_DASHxor] = ACTIONS(1221), + [anon_sym_bit_DASHor] = ACTIONS(1221), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_xor] = ACTIONS(1221), + [anon_sym_or] = ACTIONS(1221), + [anon_sym_not] = ACTIONS(1221), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1221), + [anon_sym_DOT_DOT_LT] = ACTIONS(1221), + [anon_sym_null] = ACTIONS(1221), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [aux_sym__val_number_decimal_token1] = ACTIONS(1221), + [aux_sym__val_number_decimal_token2] = ACTIONS(1221), + [anon_sym_DOT2] = ACTIONS(1221), + [aux_sym__val_number_decimal_token3] = ACTIONS(1221), + [aux_sym__val_number_token1] = ACTIONS(1221), + [aux_sym__val_number_token2] = ACTIONS(1221), + [aux_sym__val_number_token3] = ACTIONS(1221), + [aux_sym__val_number_token4] = ACTIONS(1221), + [aux_sym__val_number_token5] = ACTIONS(1221), + [aux_sym__val_number_token6] = ACTIONS(1221), + [anon_sym_0b] = ACTIONS(1221), + [anon_sym_0o] = ACTIONS(1221), + [anon_sym_0x] = ACTIONS(1221), + [sym_val_date] = ACTIONS(1221), + [anon_sym_DQUOTE] = ACTIONS(1221), + [sym__str_single_quotes] = ACTIONS(1221), + [sym__str_back_ticks] = ACTIONS(1221), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1221), [anon_sym_POUND] = ACTIONS(113), }, - [2652] = { - [sym_comment] = STATE(2652), - [anon_sym_export] = ACTIONS(6385), - [anon_sym_alias] = ACTIONS(6385), - [anon_sym_let] = ACTIONS(6385), - [anon_sym_let_DASHenv] = ACTIONS(6385), - [anon_sym_mut] = ACTIONS(6385), - [anon_sym_const] = ACTIONS(6385), - [anon_sym_SEMI] = ACTIONS(6387), - [sym_cmd_identifier] = ACTIONS(6385), - [anon_sym_LF] = ACTIONS(6390), - [anon_sym_def] = ACTIONS(6385), - [anon_sym_export_DASHenv] = ACTIONS(6385), - [anon_sym_extern] = ACTIONS(6385), - [anon_sym_module] = ACTIONS(6385), - [anon_sym_use] = ACTIONS(6385), - [anon_sym_LBRACK] = ACTIONS(6385), - [anon_sym_LPAREN] = ACTIONS(6385), - [anon_sym_RPAREN] = ACTIONS(6393), - [anon_sym_DOLLAR] = ACTIONS(6385), - [anon_sym_error] = ACTIONS(6385), - [anon_sym_DASH] = ACTIONS(6385), - [anon_sym_break] = ACTIONS(6385), - [anon_sym_continue] = ACTIONS(6385), - [anon_sym_for] = ACTIONS(6385), - [anon_sym_loop] = ACTIONS(6385), - [anon_sym_while] = ACTIONS(6385), - [anon_sym_do] = ACTIONS(6385), - [anon_sym_if] = ACTIONS(6385), - [anon_sym_match] = ACTIONS(6385), - [anon_sym_LBRACE] = ACTIONS(6385), - [anon_sym_RBRACE] = ACTIONS(6393), - [anon_sym_DOT_DOT] = ACTIONS(6385), - [anon_sym_try] = ACTIONS(6385), - [anon_sym_return] = ACTIONS(6385), - [anon_sym_source] = ACTIONS(6385), - [anon_sym_source_DASHenv] = ACTIONS(6385), - [anon_sym_register] = ACTIONS(6385), - [anon_sym_hide] = ACTIONS(6385), - [anon_sym_hide_DASHenv] = ACTIONS(6385), - [anon_sym_overlay] = ACTIONS(6385), - [anon_sym_where] = ACTIONS(6385), - [anon_sym_not] = ACTIONS(6385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6385), - [anon_sym_DOT_DOT_LT] = ACTIONS(6385), - [anon_sym_null] = ACTIONS(6385), - [anon_sym_true] = ACTIONS(6385), - [anon_sym_false] = ACTIONS(6385), - [aux_sym__val_number_decimal_token1] = ACTIONS(6385), - [aux_sym__val_number_decimal_token2] = ACTIONS(6385), - [anon_sym_DOT2] = ACTIONS(6385), - [aux_sym__val_number_decimal_token3] = ACTIONS(6385), - [aux_sym__val_number_token1] = ACTIONS(6385), - [aux_sym__val_number_token2] = ACTIONS(6385), - [aux_sym__val_number_token3] = ACTIONS(6385), - [aux_sym__val_number_token4] = ACTIONS(6385), - [aux_sym__val_number_token5] = ACTIONS(6385), - [aux_sym__val_number_token6] = ACTIONS(6385), - [anon_sym_0b] = ACTIONS(6385), - [anon_sym_0o] = ACTIONS(6385), - [anon_sym_0x] = ACTIONS(6385), - [sym_val_date] = ACTIONS(6385), - [anon_sym_DQUOTE] = ACTIONS(6385), - [sym__str_single_quotes] = ACTIONS(6385), - [sym__str_back_ticks] = ACTIONS(6385), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6385), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6385), - [anon_sym_CARET] = ACTIONS(6385), + [2685] = { + [sym_comment] = STATE(2685), + [anon_sym_LBRACK] = ACTIONS(1026), + [anon_sym_LPAREN] = ACTIONS(1026), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_GT] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1026), + [anon_sym_DOT_DOT] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(6652), + [anon_sym_STAR_STAR] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [anon_sym_SLASH] = ACTIONS(1024), + [anon_sym_mod] = ACTIONS(1026), + [anon_sym_SLASH_SLASH] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_bit_DASHshl] = ACTIONS(1026), + [anon_sym_bit_DASHshr] = ACTIONS(1026), + [anon_sym_EQ_EQ] = ACTIONS(1026), + [anon_sym_BANG_EQ] = ACTIONS(1026), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ] = ACTIONS(1026), + [anon_sym_GT_EQ] = ACTIONS(1026), + [anon_sym_not_DASHin] = ACTIONS(1026), + [anon_sym_starts_DASHwith] = ACTIONS(1026), + [anon_sym_ends_DASHwith] = ACTIONS(1026), + [anon_sym_EQ_TILDE] = ACTIONS(1026), + [anon_sym_BANG_TILDE] = ACTIONS(1026), + [anon_sym_bit_DASHand] = ACTIONS(1026), + [anon_sym_bit_DASHxor] = ACTIONS(1026), + [anon_sym_bit_DASHor] = ACTIONS(1026), + [anon_sym_and] = ACTIONS(1026), + [anon_sym_xor] = ACTIONS(1026), + [anon_sym_or] = ACTIONS(1026), + [anon_sym_not] = ACTIONS(1024), + [anon_sym_DOT_DOT2] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1026), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1026), + [anon_sym_null] = ACTIONS(1026), + [anon_sym_true] = ACTIONS(1026), + [anon_sym_false] = ACTIONS(1026), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1026), + [aux_sym__val_number_token1] = ACTIONS(1026), + [aux_sym__val_number_token2] = ACTIONS(1026), + [aux_sym__val_number_token3] = ACTIONS(1026), + [aux_sym__val_number_token4] = ACTIONS(1026), + [aux_sym__val_number_token5] = ACTIONS(1026), + [aux_sym__val_number_token6] = ACTIONS(1026), + [anon_sym_0b] = ACTIONS(1024), + [anon_sym_0o] = ACTIONS(1024), + [anon_sym_0x] = ACTIONS(1024), + [sym_val_date] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(1026), + [sym__str_single_quotes] = ACTIONS(1026), + [sym__str_back_ticks] = ACTIONS(1026), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1026), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1026), + [anon_sym_POUND] = ACTIONS(3), + }, + [2686] = { + [sym_comment] = STATE(2686), + [anon_sym_LBRACK] = ACTIONS(1026), + [anon_sym_LPAREN] = ACTIONS(1026), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_GT] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1026), + [anon_sym_DOT_DOT] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(6652), + [anon_sym_STAR_STAR] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [anon_sym_SLASH] = ACTIONS(1024), + [anon_sym_mod] = ACTIONS(1026), + [anon_sym_SLASH_SLASH] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_bit_DASHshl] = ACTIONS(1026), + [anon_sym_bit_DASHshr] = ACTIONS(1026), + [anon_sym_EQ_EQ] = ACTIONS(1026), + [anon_sym_BANG_EQ] = ACTIONS(1026), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ] = ACTIONS(1026), + [anon_sym_GT_EQ] = ACTIONS(1026), + [anon_sym_not_DASHin] = ACTIONS(1026), + [anon_sym_starts_DASHwith] = ACTIONS(1026), + [anon_sym_ends_DASHwith] = ACTIONS(1026), + [anon_sym_EQ_TILDE] = ACTIONS(1026), + [anon_sym_BANG_TILDE] = ACTIONS(1026), + [anon_sym_bit_DASHand] = ACTIONS(1026), + [anon_sym_bit_DASHxor] = ACTIONS(1026), + [anon_sym_bit_DASHor] = ACTIONS(1026), + [anon_sym_and] = ACTIONS(1026), + [anon_sym_xor] = ACTIONS(1026), + [anon_sym_or] = ACTIONS(1026), + [anon_sym_not] = ACTIONS(1024), + [anon_sym_DOT_DOT2] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1026), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1026), + [anon_sym_null] = ACTIONS(1026), + [anon_sym_true] = ACTIONS(1026), + [anon_sym_false] = ACTIONS(1026), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [anon_sym_DOT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1026), + [aux_sym__val_number_token1] = ACTIONS(1026), + [aux_sym__val_number_token2] = ACTIONS(1026), + [aux_sym__val_number_token3] = ACTIONS(1026), + [aux_sym__val_number_token4] = ACTIONS(1026), + [aux_sym__val_number_token5] = ACTIONS(1026), + [aux_sym__val_number_token6] = ACTIONS(1026), + [anon_sym_0b] = ACTIONS(1024), + [anon_sym_0o] = ACTIONS(1024), + [anon_sym_0x] = ACTIONS(1024), + [sym_val_date] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(1026), + [sym__str_single_quotes] = ACTIONS(1026), + [sym__str_back_ticks] = ACTIONS(1026), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1026), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1026), + [anon_sym_POUND] = ACTIONS(3), + }, + [2687] = { + [sym_comment] = STATE(2687), + [ts_builtin_sym_end] = ACTIONS(1209), + [anon_sym_SEMI] = ACTIONS(1139), + [anon_sym_LF] = ACTIONS(1209), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LPAREN] = ACTIONS(1139), + [anon_sym_PIPE] = ACTIONS(1139), + [anon_sym_DOLLAR] = ACTIONS(1139), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_DASH_DASH] = ACTIONS(1139), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_in] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1139), + [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_STAR_STAR] = ACTIONS(1139), + [anon_sym_PLUS_PLUS] = ACTIONS(1139), + [anon_sym_SLASH] = ACTIONS(1139), + [anon_sym_mod] = ACTIONS(1139), + [anon_sym_SLASH_SLASH] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_bit_DASHshl] = ACTIONS(1139), + [anon_sym_bit_DASHshr] = ACTIONS(1139), + [anon_sym_EQ_EQ] = ACTIONS(1139), + [anon_sym_BANG_EQ] = ACTIONS(1139), + [anon_sym_LT2] = ACTIONS(1139), + [anon_sym_LT_EQ] = ACTIONS(1139), + [anon_sym_GT_EQ] = ACTIONS(1139), + [anon_sym_not_DASHin] = ACTIONS(1139), + [anon_sym_starts_DASHwith] = ACTIONS(1139), + [anon_sym_ends_DASHwith] = ACTIONS(1139), + [anon_sym_EQ_TILDE] = ACTIONS(1139), + [anon_sym_BANG_TILDE] = ACTIONS(1139), + [anon_sym_bit_DASHand] = ACTIONS(1139), + [anon_sym_bit_DASHxor] = ACTIONS(1139), + [anon_sym_bit_DASHor] = ACTIONS(1139), + [anon_sym_and] = ACTIONS(1139), + [anon_sym_xor] = ACTIONS(1139), + [anon_sym_or] = ACTIONS(1139), + [anon_sym_not] = ACTIONS(1139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1139), + [anon_sym_DOT_DOT_LT] = ACTIONS(1139), + [anon_sym_null] = ACTIONS(1139), + [anon_sym_true] = ACTIONS(1139), + [anon_sym_false] = ACTIONS(1139), + [aux_sym__val_number_decimal_token1] = ACTIONS(1139), + [aux_sym__val_number_decimal_token2] = ACTIONS(1139), + [anon_sym_DOT2] = ACTIONS(1139), + [aux_sym__val_number_decimal_token3] = ACTIONS(1139), + [aux_sym__val_number_token1] = ACTIONS(1139), + [aux_sym__val_number_token2] = ACTIONS(1139), + [aux_sym__val_number_token3] = ACTIONS(1139), + [aux_sym__val_number_token4] = ACTIONS(1139), + [aux_sym__val_number_token5] = ACTIONS(1139), + [aux_sym__val_number_token6] = ACTIONS(1139), + [anon_sym_0b] = ACTIONS(1139), + [anon_sym_0o] = ACTIONS(1139), + [anon_sym_0x] = ACTIONS(1139), + [sym_val_date] = ACTIONS(1139), + [anon_sym_DQUOTE] = ACTIONS(1139), + [sym__str_single_quotes] = ACTIONS(1139), + [sym__str_back_ticks] = ACTIONS(1139), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1139), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1139), [anon_sym_POUND] = ACTIONS(113), }, - [2653] = { - [sym_block] = STATE(2913), - [sym_comment] = STATE(2653), - [ts_builtin_sym_end] = ACTIONS(6215), - [anon_sym_export] = ACTIONS(6213), - [anon_sym_alias] = ACTIONS(6213), - [anon_sym_let] = ACTIONS(6213), - [anon_sym_let_DASHenv] = ACTIONS(6213), - [anon_sym_mut] = ACTIONS(6213), - [anon_sym_const] = ACTIONS(6213), - [anon_sym_SEMI] = ACTIONS(6213), - [sym_cmd_identifier] = ACTIONS(6213), - [anon_sym_LF] = ACTIONS(6215), - [anon_sym_def] = ACTIONS(6213), - [anon_sym_export_DASHenv] = ACTIONS(6213), - [anon_sym_extern] = ACTIONS(6213), - [anon_sym_module] = ACTIONS(6213), - [anon_sym_use] = ACTIONS(6213), - [anon_sym_LBRACK] = ACTIONS(6213), - [anon_sym_LPAREN] = ACTIONS(6213), - [anon_sym_DOLLAR] = ACTIONS(6213), - [anon_sym_error] = ACTIONS(6213), - [anon_sym_DASH] = ACTIONS(6213), - [anon_sym_break] = ACTIONS(6213), - [anon_sym_continue] = ACTIONS(6213), - [anon_sym_for] = ACTIONS(6213), - [anon_sym_loop] = ACTIONS(6213), - [anon_sym_while] = ACTIONS(6213), - [anon_sym_do] = ACTIONS(6213), - [anon_sym_if] = ACTIONS(6213), - [anon_sym_match] = ACTIONS(6213), - [anon_sym_LBRACE] = ACTIONS(6395), - [anon_sym_DOT_DOT] = ACTIONS(6213), - [anon_sym_try] = ACTIONS(6213), - [anon_sym_return] = ACTIONS(6213), - [anon_sym_source] = ACTIONS(6213), - [anon_sym_source_DASHenv] = ACTIONS(6213), - [anon_sym_register] = ACTIONS(6213), - [anon_sym_hide] = ACTIONS(6213), - [anon_sym_hide_DASHenv] = ACTIONS(6213), - [anon_sym_overlay] = ACTIONS(6213), - [anon_sym_where] = ACTIONS(6213), - [anon_sym_not] = ACTIONS(6213), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6213), - [anon_sym_DOT_DOT_LT] = ACTIONS(6213), - [anon_sym_null] = ACTIONS(6213), - [anon_sym_true] = ACTIONS(6213), - [anon_sym_false] = ACTIONS(6213), - [aux_sym__val_number_decimal_token1] = ACTIONS(6213), - [aux_sym__val_number_decimal_token2] = ACTIONS(6213), - [anon_sym_DOT2] = ACTIONS(6213), - [aux_sym__val_number_decimal_token3] = ACTIONS(6213), - [aux_sym__val_number_token1] = ACTIONS(6213), - [aux_sym__val_number_token2] = ACTIONS(6213), - [aux_sym__val_number_token3] = ACTIONS(6213), - [aux_sym__val_number_token4] = ACTIONS(6213), - [aux_sym__val_number_token5] = ACTIONS(6213), - [aux_sym__val_number_token6] = ACTIONS(6213), - [anon_sym_0b] = ACTIONS(6213), - [anon_sym_0o] = ACTIONS(6213), - [anon_sym_0x] = ACTIONS(6213), - [sym_val_date] = ACTIONS(6213), - [anon_sym_DQUOTE] = ACTIONS(6213), - [sym__str_single_quotes] = ACTIONS(6213), - [sym__str_back_ticks] = ACTIONS(6213), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6213), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6213), - [anon_sym_CARET] = ACTIONS(6213), + [2688] = { + [sym__expression] = STATE(7742), + [sym_expr_unary] = STATE(5998), + [sym__expr_unary_minus] = STATE(5999), + [sym_expr_binary] = STATE(5998), + [sym__expr_binary_expression] = STATE(6374), + [sym_expr_parenthesized] = STATE(5273), + [sym_val_range] = STATE(6728), + [sym__value] = STATE(5998), + [sym_val_nothing] = STATE(6108), + [sym_val_bool] = STATE(6108), + [sym_val_variable] = STATE(5385), + [sym__var] = STATE(4639), + [sym_val_number] = STATE(6108), + [sym__val_number_decimal] = STATE(5069), + [sym__val_number] = STATE(6110), + [sym_val_duration] = STATE(6108), + [sym_val_filesize] = STATE(6108), + [sym_val_binary] = STATE(6108), + [sym_val_string] = STATE(6108), + [sym__str_double_quotes] = STATE(6195), + [sym_val_interpolated] = STATE(6108), + [sym__inter_single_quotes] = STATE(6197), + [sym__inter_double_quotes] = STATE(6198), + [sym_val_list] = STATE(6108), + [sym_val_record] = STATE(6108), + [sym_val_table] = STATE(6108), + [sym_val_closure] = STATE(6108), + [sym__flag] = STATE(3033), + [sym_short_flag] = STATE(6049), + [sym_long_flag] = STATE(6049), + [sym_long_flag_equals_value] = STATE(6112), + [sym_comment] = STATE(2688), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(2804), + [anon_sym_DOLLAR] = ACTIONS(2806), + [anon_sym_DASH_DASH] = ACTIONS(2557), + [anon_sym_DASH] = ACTIONS(6608), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_DOT_DOT] = ACTIONS(6610), + [anon_sym_not] = ACTIONS(4172), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6612), + [anon_sym_DOT_DOT_LT] = ACTIONS(6612), + [anon_sym_null] = ACTIONS(6614), + [anon_sym_true] = ACTIONS(6616), + [anon_sym_false] = ACTIONS(6616), + [aux_sym__val_number_decimal_token1] = ACTIONS(6618), + [aux_sym__val_number_decimal_token2] = ACTIONS(6620), + [anon_sym_DOT2] = ACTIONS(6622), + [aux_sym__val_number_decimal_token3] = ACTIONS(5057), + [aux_sym__val_number_token1] = ACTIONS(2828), + [aux_sym__val_number_token2] = ACTIONS(2828), + [aux_sym__val_number_token3] = ACTIONS(2828), + [aux_sym__val_number_token4] = ACTIONS(2828), + [aux_sym__val_number_token5] = ACTIONS(2828), + [aux_sym__val_number_token6] = ACTIONS(2828), + [anon_sym_0b] = ACTIONS(2832), + [anon_sym_0o] = ACTIONS(2834), + [anon_sym_0x] = ACTIONS(2834), + [sym_val_date] = ACTIONS(6624), + [anon_sym_DQUOTE] = ACTIONS(4192), + [sym__str_single_quotes] = ACTIONS(4194), + [sym__str_back_ticks] = ACTIONS(4194), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2844), + [anon_sym_POUND] = ACTIONS(3), + }, + [2689] = { + [sym_comment] = STATE(2689), + [ts_builtin_sym_end] = ACTIONS(1157), + [anon_sym_SEMI] = ACTIONS(1155), + [anon_sym_LF] = ACTIONS(1157), + [anon_sym_LBRACK] = ACTIONS(1155), + [anon_sym_LPAREN] = ACTIONS(1155), + [anon_sym_PIPE] = ACTIONS(1155), + [anon_sym_DOLLAR] = ACTIONS(1155), + [anon_sym_GT] = ACTIONS(1155), + [anon_sym_DASH_DASH] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_in] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_DOT_DOT] = ACTIONS(1155), + [anon_sym_STAR] = ACTIONS(1155), + [anon_sym_STAR_STAR] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(1155), + [anon_sym_mod] = ACTIONS(1155), + [anon_sym_SLASH_SLASH] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_bit_DASHshl] = ACTIONS(1155), + [anon_sym_bit_DASHshr] = ACTIONS(1155), + [anon_sym_EQ_EQ] = ACTIONS(1155), + [anon_sym_BANG_EQ] = ACTIONS(1155), + [anon_sym_LT2] = ACTIONS(1155), + [anon_sym_LT_EQ] = ACTIONS(1155), + [anon_sym_GT_EQ] = ACTIONS(1155), + [anon_sym_not_DASHin] = ACTIONS(1155), + [anon_sym_starts_DASHwith] = ACTIONS(1155), + [anon_sym_ends_DASHwith] = ACTIONS(1155), + [anon_sym_EQ_TILDE] = ACTIONS(1155), + [anon_sym_BANG_TILDE] = ACTIONS(1155), + [anon_sym_bit_DASHand] = ACTIONS(1155), + [anon_sym_bit_DASHxor] = ACTIONS(1155), + [anon_sym_bit_DASHor] = ACTIONS(1155), + [anon_sym_and] = ACTIONS(1155), + [anon_sym_xor] = ACTIONS(1155), + [anon_sym_or] = ACTIONS(1155), + [anon_sym_not] = ACTIONS(1155), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1155), + [anon_sym_DOT_DOT_LT] = ACTIONS(1155), + [anon_sym_null] = ACTIONS(1155), + [anon_sym_true] = ACTIONS(1155), + [anon_sym_false] = ACTIONS(1155), + [aux_sym__val_number_decimal_token1] = ACTIONS(1155), + [aux_sym__val_number_decimal_token2] = ACTIONS(1155), + [anon_sym_DOT2] = ACTIONS(1155), + [aux_sym__val_number_decimal_token3] = ACTIONS(1155), + [aux_sym__val_number_token1] = ACTIONS(1155), + [aux_sym__val_number_token2] = ACTIONS(1155), + [aux_sym__val_number_token3] = ACTIONS(1155), + [aux_sym__val_number_token4] = ACTIONS(1155), + [aux_sym__val_number_token5] = ACTIONS(1155), + [aux_sym__val_number_token6] = ACTIONS(1155), + [anon_sym_0b] = ACTIONS(1155), + [anon_sym_0o] = ACTIONS(1155), + [anon_sym_0x] = ACTIONS(1155), + [sym_val_date] = ACTIONS(1155), + [anon_sym_DQUOTE] = ACTIONS(1155), + [sym__str_single_quotes] = ACTIONS(1155), + [sym__str_back_ticks] = ACTIONS(1155), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1155), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1155), [anon_sym_POUND] = ACTIONS(113), }, - [2654] = { - [sym_cell_path] = STATE(3085), - [sym_path] = STATE(2693), - [sym_comment] = STATE(2654), - [ts_builtin_sym_end] = ACTIONS(997), - [anon_sym_SEMI] = ACTIONS(995), - [anon_sym_LF] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_PIPE] = ACTIONS(995), - [anon_sym_DOLLAR] = ACTIONS(995), - [anon_sym_GT] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_in] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_DOT_DOT] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_STAR_STAR] = ACTIONS(995), - [anon_sym_PLUS_PLUS] = ACTIONS(995), - [anon_sym_SLASH] = ACTIONS(995), - [anon_sym_mod] = ACTIONS(995), - [anon_sym_SLASH_SLASH] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_bit_DASHshl] = ACTIONS(995), - [anon_sym_bit_DASHshr] = ACTIONS(995), - [anon_sym_EQ_EQ] = ACTIONS(995), - [anon_sym_BANG_EQ] = ACTIONS(995), - [anon_sym_LT2] = ACTIONS(995), - [anon_sym_LT_EQ] = ACTIONS(995), - [anon_sym_GT_EQ] = ACTIONS(995), - [anon_sym_not_DASHin] = ACTIONS(995), - [anon_sym_starts_DASHwith] = ACTIONS(995), - [anon_sym_ends_DASHwith] = ACTIONS(995), - [anon_sym_EQ_TILDE] = ACTIONS(995), - [anon_sym_BANG_TILDE] = ACTIONS(995), - [anon_sym_bit_DASHand] = ACTIONS(995), - [anon_sym_bit_DASHxor] = ACTIONS(995), - [anon_sym_bit_DASHor] = ACTIONS(995), - [anon_sym_and] = ACTIONS(995), - [anon_sym_xor] = ACTIONS(995), - [anon_sym_or] = ACTIONS(995), - [anon_sym_not] = ACTIONS(995), - [anon_sym_DOT] = ACTIONS(6363), - [anon_sym_DOT_DOT_EQ] = ACTIONS(995), - [anon_sym_DOT_DOT_LT] = ACTIONS(995), - [anon_sym_null] = ACTIONS(995), - [anon_sym_true] = ACTIONS(995), - [anon_sym_false] = ACTIONS(995), - [aux_sym__val_number_decimal_token1] = ACTIONS(995), - [aux_sym__val_number_decimal_token2] = ACTIONS(995), - [anon_sym_DOT2] = ACTIONS(995), - [aux_sym__val_number_decimal_token3] = ACTIONS(995), - [aux_sym__val_number_token1] = ACTIONS(995), - [aux_sym__val_number_token2] = ACTIONS(995), - [aux_sym__val_number_token3] = ACTIONS(995), - [aux_sym__val_number_token4] = ACTIONS(995), - [aux_sym__val_number_token5] = ACTIONS(995), - [aux_sym__val_number_token6] = ACTIONS(995), - [anon_sym_0b] = ACTIONS(995), - [anon_sym_0o] = ACTIONS(995), - [anon_sym_0x] = ACTIONS(995), - [sym_val_date] = ACTIONS(995), - [anon_sym_DQUOTE] = ACTIONS(995), - [sym__str_single_quotes] = ACTIONS(995), - [sym__str_back_ticks] = ACTIONS(995), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(995), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(995), + [2690] = { + [sym_comment] = STATE(2690), + [ts_builtin_sym_end] = ACTIONS(1177), + [anon_sym_SEMI] = ACTIONS(1175), + [anon_sym_LF] = ACTIONS(1177), + [anon_sym_LBRACK] = ACTIONS(1175), + [anon_sym_LPAREN] = ACTIONS(1175), + [anon_sym_PIPE] = ACTIONS(1175), + [anon_sym_DOLLAR] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [anon_sym_DASH_DASH] = ACTIONS(1175), + [anon_sym_DASH] = ACTIONS(1175), + [anon_sym_in] = ACTIONS(1175), + [anon_sym_LBRACE] = ACTIONS(1175), + [anon_sym_DOT_DOT] = ACTIONS(1175), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_STAR_STAR] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_mod] = ACTIONS(1175), + [anon_sym_SLASH_SLASH] = ACTIONS(1175), + [anon_sym_PLUS] = ACTIONS(1175), + [anon_sym_bit_DASHshl] = ACTIONS(1175), + [anon_sym_bit_DASHshr] = ACTIONS(1175), + [anon_sym_EQ_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_LT2] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_not_DASHin] = ACTIONS(1175), + [anon_sym_starts_DASHwith] = ACTIONS(1175), + [anon_sym_ends_DASHwith] = ACTIONS(1175), + [anon_sym_EQ_TILDE] = ACTIONS(1175), + [anon_sym_BANG_TILDE] = ACTIONS(1175), + [anon_sym_bit_DASHand] = ACTIONS(1175), + [anon_sym_bit_DASHxor] = ACTIONS(1175), + [anon_sym_bit_DASHor] = ACTIONS(1175), + [anon_sym_and] = ACTIONS(1175), + [anon_sym_xor] = ACTIONS(1175), + [anon_sym_or] = ACTIONS(1175), + [anon_sym_not] = ACTIONS(1175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1175), + [anon_sym_DOT_DOT_LT] = ACTIONS(1175), + [anon_sym_null] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1175), + [anon_sym_false] = ACTIONS(1175), + [aux_sym__val_number_decimal_token1] = ACTIONS(1175), + [aux_sym__val_number_decimal_token2] = ACTIONS(1175), + [anon_sym_DOT2] = ACTIONS(1175), + [aux_sym__val_number_decimal_token3] = ACTIONS(1175), + [aux_sym__val_number_token1] = ACTIONS(1175), + [aux_sym__val_number_token2] = ACTIONS(1175), + [aux_sym__val_number_token3] = ACTIONS(1175), + [aux_sym__val_number_token4] = ACTIONS(1175), + [aux_sym__val_number_token5] = ACTIONS(1175), + [aux_sym__val_number_token6] = ACTIONS(1175), + [anon_sym_0b] = ACTIONS(1175), + [anon_sym_0o] = ACTIONS(1175), + [anon_sym_0x] = ACTIONS(1175), + [sym_val_date] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1175), + [sym__str_single_quotes] = ACTIONS(1175), + [sym__str_back_ticks] = ACTIONS(1175), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1175), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1175), [anon_sym_POUND] = ACTIONS(113), }, - [2655] = { - [sym_comment] = STATE(2655), - [anon_sym_LBRACK] = ACTIONS(925), - [anon_sym_LPAREN] = ACTIONS(925), - [anon_sym_DOLLAR] = ACTIONS(923), - [anon_sym_GT] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_in] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_DOT_DOT] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_STAR_STAR] = ACTIONS(925), - [anon_sym_PLUS_PLUS] = ACTIONS(925), - [anon_sym_SLASH] = ACTIONS(923), - [anon_sym_mod] = ACTIONS(925), - [anon_sym_SLASH_SLASH] = ACTIONS(925), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_bit_DASHshl] = ACTIONS(925), - [anon_sym_bit_DASHshr] = ACTIONS(925), - [anon_sym_EQ_EQ] = ACTIONS(925), - [anon_sym_BANG_EQ] = ACTIONS(925), - [anon_sym_LT2] = ACTIONS(923), - [anon_sym_LT_EQ] = ACTIONS(925), - [anon_sym_GT_EQ] = ACTIONS(925), - [anon_sym_not_DASHin] = ACTIONS(925), - [anon_sym_starts_DASHwith] = ACTIONS(925), - [anon_sym_ends_DASHwith] = ACTIONS(925), - [anon_sym_EQ_TILDE] = ACTIONS(925), - [anon_sym_BANG_TILDE] = ACTIONS(925), - [anon_sym_bit_DASHand] = ACTIONS(925), - [anon_sym_bit_DASHxor] = ACTIONS(925), - [anon_sym_bit_DASHor] = ACTIONS(925), - [anon_sym_and] = ACTIONS(925), - [anon_sym_xor] = ACTIONS(925), - [anon_sym_or] = ACTIONS(925), - [anon_sym_not] = ACTIONS(923), - [anon_sym_DOT_DOT2] = ACTIONS(923), - [anon_sym_DOT] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ] = ACTIONS(923), - [anon_sym_DOT_DOT_LT] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(925), - [anon_sym_DOT_DOT_LT2] = ACTIONS(925), - [aux_sym__immediate_decimal_token2] = ACTIONS(6398), - [anon_sym_null] = ACTIONS(925), - [anon_sym_true] = ACTIONS(925), - [anon_sym_false] = ACTIONS(925), - [aux_sym__val_number_decimal_token1] = ACTIONS(923), - [aux_sym__val_number_decimal_token2] = ACTIONS(925), - [anon_sym_DOT2] = ACTIONS(923), - [aux_sym__val_number_decimal_token3] = ACTIONS(925), - [aux_sym__val_number_token1] = ACTIONS(925), - [aux_sym__val_number_token2] = ACTIONS(925), - [aux_sym__val_number_token3] = ACTIONS(925), - [aux_sym__val_number_token4] = ACTIONS(925), - [aux_sym__val_number_token5] = ACTIONS(925), - [aux_sym__val_number_token6] = ACTIONS(925), - [anon_sym_0b] = ACTIONS(923), - [sym_filesize_unit] = ACTIONS(923), - [sym_duration_unit] = ACTIONS(925), - [anon_sym_0o] = ACTIONS(923), - [anon_sym_0x] = ACTIONS(923), - [sym_val_date] = ACTIONS(925), - [anon_sym_DQUOTE] = ACTIONS(925), - [sym__str_single_quotes] = ACTIONS(925), - [sym__str_back_ticks] = ACTIONS(925), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(925), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(925), - [aux_sym_unquoted_token5] = ACTIONS(923), - [anon_sym_POUND] = ACTIONS(3), - }, - [2656] = { - [sym_comment] = STATE(2656), - [anon_sym_LBRACK] = ACTIONS(911), - [anon_sym_LPAREN] = ACTIONS(911), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(911), - [anon_sym_DOT_DOT] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(911), - [anon_sym_PLUS_PLUS] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(911), - [anon_sym_SLASH_SLASH] = ACTIONS(911), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(911), - [anon_sym_bit_DASHshr] = ACTIONS(911), - [anon_sym_EQ_EQ] = ACTIONS(911), - [anon_sym_BANG_EQ] = ACTIONS(911), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(911), - [anon_sym_GT_EQ] = ACTIONS(911), - [anon_sym_not_DASHin] = ACTIONS(911), - [anon_sym_starts_DASHwith] = ACTIONS(911), - [anon_sym_ends_DASHwith] = ACTIONS(911), - [anon_sym_EQ_TILDE] = ACTIONS(911), - [anon_sym_BANG_TILDE] = ACTIONS(911), - [anon_sym_bit_DASHand] = ACTIONS(911), - [anon_sym_bit_DASHxor] = ACTIONS(911), - [anon_sym_bit_DASHor] = ACTIONS(911), - [anon_sym_and] = ACTIONS(911), - [anon_sym_xor] = ACTIONS(911), - [anon_sym_or] = ACTIONS(911), - [anon_sym_not] = ACTIONS(909), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [aux_sym__immediate_decimal_token2] = ACTIONS(6226), - [anon_sym_null] = ACTIONS(911), - [anon_sym_true] = ACTIONS(911), - [anon_sym_false] = ACTIONS(911), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(911), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(911), - [aux_sym__val_number_token1] = ACTIONS(911), - [aux_sym__val_number_token2] = ACTIONS(911), - [aux_sym__val_number_token3] = ACTIONS(911), - [aux_sym__val_number_token4] = ACTIONS(911), - [aux_sym__val_number_token5] = ACTIONS(911), - [aux_sym__val_number_token6] = ACTIONS(911), - [anon_sym_0b] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(911), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(911), - [anon_sym_DQUOTE] = ACTIONS(911), - [sym__str_single_quotes] = ACTIONS(911), - [sym__str_back_ticks] = ACTIONS(911), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(911), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(911), - [aux_sym_unquoted_token5] = ACTIONS(909), - [anon_sym_POUND] = ACTIONS(3), - }, - [2657] = { - [sym_comment] = STATE(2657), - [anon_sym_export] = ACTIONS(6400), - [anon_sym_alias] = ACTIONS(6400), - [anon_sym_let] = ACTIONS(6400), - [anon_sym_let_DASHenv] = ACTIONS(6400), - [anon_sym_mut] = ACTIONS(6400), - [anon_sym_const] = ACTIONS(6400), - [anon_sym_SEMI] = ACTIONS(6400), - [sym_cmd_identifier] = ACTIONS(6400), - [anon_sym_LF] = ACTIONS(6402), - [anon_sym_def] = ACTIONS(6400), - [anon_sym_export_DASHenv] = ACTIONS(6400), - [anon_sym_extern] = ACTIONS(6400), - [anon_sym_module] = ACTIONS(6400), - [anon_sym_use] = ACTIONS(6400), - [anon_sym_LBRACK] = ACTIONS(6400), - [anon_sym_LPAREN] = ACTIONS(6400), - [anon_sym_RPAREN] = ACTIONS(6400), - [anon_sym_DOLLAR] = ACTIONS(6400), - [anon_sym_error] = ACTIONS(6400), - [anon_sym_DASH] = ACTIONS(6400), - [anon_sym_break] = ACTIONS(6400), - [anon_sym_continue] = ACTIONS(6400), - [anon_sym_for] = ACTIONS(6400), - [anon_sym_loop] = ACTIONS(6400), - [anon_sym_while] = ACTIONS(6400), - [anon_sym_do] = ACTIONS(6400), - [anon_sym_if] = ACTIONS(6400), - [anon_sym_match] = ACTIONS(6400), - [anon_sym_LBRACE] = ACTIONS(6400), - [anon_sym_RBRACE] = ACTIONS(6400), - [anon_sym_DOT_DOT] = ACTIONS(6400), - [anon_sym_try] = ACTIONS(6400), - [anon_sym_return] = ACTIONS(6400), - [anon_sym_source] = ACTIONS(6400), - [anon_sym_source_DASHenv] = ACTIONS(6400), - [anon_sym_register] = ACTIONS(6400), - [anon_sym_hide] = ACTIONS(6400), - [anon_sym_hide_DASHenv] = ACTIONS(6400), - [anon_sym_overlay] = ACTIONS(6400), - [anon_sym_where] = ACTIONS(6400), - [anon_sym_not] = ACTIONS(6400), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6400), - [anon_sym_DOT_DOT_LT] = ACTIONS(6400), - [anon_sym_null] = ACTIONS(6400), - [anon_sym_true] = ACTIONS(6400), - [anon_sym_false] = ACTIONS(6400), - [aux_sym__val_number_decimal_token1] = ACTIONS(6400), - [aux_sym__val_number_decimal_token2] = ACTIONS(6400), - [anon_sym_DOT2] = ACTIONS(6400), - [aux_sym__val_number_decimal_token3] = ACTIONS(6400), - [aux_sym__val_number_token1] = ACTIONS(6400), - [aux_sym__val_number_token2] = ACTIONS(6400), - [aux_sym__val_number_token3] = ACTIONS(6400), - [aux_sym__val_number_token4] = ACTIONS(6400), - [aux_sym__val_number_token5] = ACTIONS(6400), - [aux_sym__val_number_token6] = ACTIONS(6400), - [anon_sym_0b] = ACTIONS(6400), - [anon_sym_0o] = ACTIONS(6400), - [anon_sym_0x] = ACTIONS(6400), - [sym_val_date] = ACTIONS(6400), - [anon_sym_DQUOTE] = ACTIONS(6400), - [sym__str_single_quotes] = ACTIONS(6400), - [sym__str_back_ticks] = ACTIONS(6400), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6400), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6400), - [anon_sym_CARET] = ACTIONS(6400), - [anon_sym_POUND] = ACTIONS(113), - }, - [2658] = { - [sym_comment] = STATE(2658), - [anon_sym_export] = ACTIONS(6404), - [anon_sym_alias] = ACTIONS(6404), - [anon_sym_let] = ACTIONS(6404), - [anon_sym_let_DASHenv] = ACTIONS(6404), - [anon_sym_mut] = ACTIONS(6404), - [anon_sym_const] = ACTIONS(6404), - [anon_sym_SEMI] = ACTIONS(6404), - [sym_cmd_identifier] = ACTIONS(6404), - [anon_sym_LF] = ACTIONS(6406), - [anon_sym_def] = ACTIONS(6404), - [anon_sym_export_DASHenv] = ACTIONS(6404), - [anon_sym_extern] = ACTIONS(6404), - [anon_sym_module] = ACTIONS(6404), - [anon_sym_use] = ACTIONS(6404), - [anon_sym_LBRACK] = ACTIONS(6404), - [anon_sym_LPAREN] = ACTIONS(6404), - [anon_sym_RPAREN] = ACTIONS(6404), - [anon_sym_DOLLAR] = ACTIONS(6404), - [anon_sym_error] = ACTIONS(6404), - [anon_sym_DASH] = ACTIONS(6404), - [anon_sym_break] = ACTIONS(6404), - [anon_sym_continue] = ACTIONS(6404), - [anon_sym_for] = ACTIONS(6404), - [anon_sym_loop] = ACTIONS(6404), - [anon_sym_while] = ACTIONS(6404), - [anon_sym_do] = ACTIONS(6404), - [anon_sym_if] = ACTIONS(6404), - [anon_sym_match] = ACTIONS(6404), - [anon_sym_LBRACE] = ACTIONS(6404), - [anon_sym_RBRACE] = ACTIONS(6404), - [anon_sym_DOT_DOT] = ACTIONS(6404), - [anon_sym_try] = ACTIONS(6404), - [anon_sym_return] = ACTIONS(6404), - [anon_sym_source] = ACTIONS(6404), - [anon_sym_source_DASHenv] = ACTIONS(6404), - [anon_sym_register] = ACTIONS(6404), - [anon_sym_hide] = ACTIONS(6404), - [anon_sym_hide_DASHenv] = ACTIONS(6404), - [anon_sym_overlay] = ACTIONS(6404), - [anon_sym_where] = ACTIONS(6404), - [anon_sym_not] = ACTIONS(6404), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6404), - [anon_sym_DOT_DOT_LT] = ACTIONS(6404), - [anon_sym_null] = ACTIONS(6404), - [anon_sym_true] = ACTIONS(6404), - [anon_sym_false] = ACTIONS(6404), - [aux_sym__val_number_decimal_token1] = ACTIONS(6404), - [aux_sym__val_number_decimal_token2] = ACTIONS(6404), - [anon_sym_DOT2] = ACTIONS(6404), - [aux_sym__val_number_decimal_token3] = ACTIONS(6404), - [aux_sym__val_number_token1] = ACTIONS(6404), - [aux_sym__val_number_token2] = ACTIONS(6404), - [aux_sym__val_number_token3] = ACTIONS(6404), - [aux_sym__val_number_token4] = ACTIONS(6404), - [aux_sym__val_number_token5] = ACTIONS(6404), - [aux_sym__val_number_token6] = ACTIONS(6404), - [anon_sym_0b] = ACTIONS(6404), - [anon_sym_0o] = ACTIONS(6404), - [anon_sym_0x] = ACTIONS(6404), - [sym_val_date] = ACTIONS(6404), - [anon_sym_DQUOTE] = ACTIONS(6404), - [sym__str_single_quotes] = ACTIONS(6404), - [sym__str_back_ticks] = ACTIONS(6404), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6404), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6404), - [anon_sym_CARET] = ACTIONS(6404), - [anon_sym_POUND] = ACTIONS(113), - }, - [2659] = { - [sym_comment] = STATE(2659), - [anon_sym_LBRACK] = ACTIONS(919), - [anon_sym_LPAREN] = ACTIONS(919), - [anon_sym_DOLLAR] = ACTIONS(917), - [anon_sym_GT] = ACTIONS(917), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_in] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(919), - [anon_sym_DOT_DOT] = ACTIONS(917), - [anon_sym_STAR] = ACTIONS(917), - [anon_sym_STAR_STAR] = ACTIONS(919), - [anon_sym_PLUS_PLUS] = ACTIONS(919), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_mod] = ACTIONS(919), - [anon_sym_SLASH_SLASH] = ACTIONS(919), - [anon_sym_PLUS] = ACTIONS(917), - [anon_sym_bit_DASHshl] = ACTIONS(919), - [anon_sym_bit_DASHshr] = ACTIONS(919), - [anon_sym_EQ_EQ] = ACTIONS(919), - [anon_sym_BANG_EQ] = ACTIONS(919), - [anon_sym_LT2] = ACTIONS(917), - [anon_sym_LT_EQ] = ACTIONS(919), - [anon_sym_GT_EQ] = ACTIONS(919), - [anon_sym_not_DASHin] = ACTIONS(919), - [anon_sym_starts_DASHwith] = ACTIONS(919), - [anon_sym_ends_DASHwith] = ACTIONS(919), - [anon_sym_EQ_TILDE] = ACTIONS(919), - [anon_sym_BANG_TILDE] = ACTIONS(919), - [anon_sym_bit_DASHand] = ACTIONS(919), - [anon_sym_bit_DASHxor] = ACTIONS(919), - [anon_sym_bit_DASHor] = ACTIONS(919), - [anon_sym_and] = ACTIONS(919), - [anon_sym_xor] = ACTIONS(919), - [anon_sym_or] = ACTIONS(919), - [anon_sym_not] = ACTIONS(917), - [anon_sym_DOT_DOT2] = ACTIONS(917), - [anon_sym_DOT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ] = ACTIONS(917), - [anon_sym_DOT_DOT_LT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(919), - [anon_sym_DOT_DOT_LT2] = ACTIONS(919), - [aux_sym__immediate_decimal_token2] = ACTIONS(6408), - [anon_sym_null] = ACTIONS(919), - [anon_sym_true] = ACTIONS(919), - [anon_sym_false] = ACTIONS(919), - [aux_sym__val_number_decimal_token1] = ACTIONS(917), - [aux_sym__val_number_decimal_token2] = ACTIONS(919), - [anon_sym_DOT2] = ACTIONS(917), - [aux_sym__val_number_decimal_token3] = ACTIONS(919), - [aux_sym__val_number_token1] = ACTIONS(919), - [aux_sym__val_number_token2] = ACTIONS(919), - [aux_sym__val_number_token3] = ACTIONS(919), - [aux_sym__val_number_token4] = ACTIONS(919), - [aux_sym__val_number_token5] = ACTIONS(919), - [aux_sym__val_number_token6] = ACTIONS(919), - [anon_sym_0b] = ACTIONS(917), - [sym_filesize_unit] = ACTIONS(917), - [sym_duration_unit] = ACTIONS(919), - [anon_sym_0o] = ACTIONS(917), - [anon_sym_0x] = ACTIONS(917), - [sym_val_date] = ACTIONS(919), - [anon_sym_DQUOTE] = ACTIONS(919), - [sym__str_single_quotes] = ACTIONS(919), - [sym__str_back_ticks] = ACTIONS(919), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(919), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(919), - [aux_sym_unquoted_token5] = ACTIONS(917), - [anon_sym_POUND] = ACTIONS(3), - }, - [2660] = { - [sym_comment] = STATE(2660), - [anon_sym_export] = ACTIONS(6410), - [anon_sym_alias] = ACTIONS(6410), - [anon_sym_let] = ACTIONS(6410), - [anon_sym_let_DASHenv] = ACTIONS(6410), - [anon_sym_mut] = ACTIONS(6410), - [anon_sym_const] = ACTIONS(6410), - [anon_sym_SEMI] = ACTIONS(6410), - [sym_cmd_identifier] = ACTIONS(6410), - [anon_sym_LF] = ACTIONS(6412), - [anon_sym_def] = ACTIONS(6410), - [anon_sym_export_DASHenv] = ACTIONS(6410), - [anon_sym_extern] = ACTIONS(6410), - [anon_sym_module] = ACTIONS(6410), - [anon_sym_use] = ACTIONS(6410), - [anon_sym_LBRACK] = ACTIONS(6410), - [anon_sym_LPAREN] = ACTIONS(6410), - [anon_sym_RPAREN] = ACTIONS(6410), - [anon_sym_DOLLAR] = ACTIONS(6410), - [anon_sym_error] = ACTIONS(6410), - [anon_sym_DASH] = ACTIONS(6410), - [anon_sym_break] = ACTIONS(6410), - [anon_sym_continue] = ACTIONS(6410), - [anon_sym_for] = ACTIONS(6410), - [anon_sym_loop] = ACTIONS(6410), - [anon_sym_while] = ACTIONS(6410), - [anon_sym_do] = ACTIONS(6410), - [anon_sym_if] = ACTIONS(6410), - [anon_sym_match] = ACTIONS(6410), - [anon_sym_LBRACE] = ACTIONS(6410), - [anon_sym_RBRACE] = ACTIONS(6410), - [anon_sym_DOT_DOT] = ACTIONS(6410), - [anon_sym_try] = ACTIONS(6410), - [anon_sym_return] = ACTIONS(6410), - [anon_sym_source] = ACTIONS(6410), - [anon_sym_source_DASHenv] = ACTIONS(6410), - [anon_sym_register] = ACTIONS(6410), - [anon_sym_hide] = ACTIONS(6410), - [anon_sym_hide_DASHenv] = ACTIONS(6410), - [anon_sym_overlay] = ACTIONS(6410), - [anon_sym_where] = ACTIONS(6410), - [anon_sym_not] = ACTIONS(6410), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6410), - [anon_sym_DOT_DOT_LT] = ACTIONS(6410), - [anon_sym_null] = ACTIONS(6410), - [anon_sym_true] = ACTIONS(6410), - [anon_sym_false] = ACTIONS(6410), - [aux_sym__val_number_decimal_token1] = ACTIONS(6410), - [aux_sym__val_number_decimal_token2] = ACTIONS(6410), - [anon_sym_DOT2] = ACTIONS(6410), - [aux_sym__val_number_decimal_token3] = ACTIONS(6410), - [aux_sym__val_number_token1] = ACTIONS(6410), - [aux_sym__val_number_token2] = ACTIONS(6410), - [aux_sym__val_number_token3] = ACTIONS(6410), - [aux_sym__val_number_token4] = ACTIONS(6410), - [aux_sym__val_number_token5] = ACTIONS(6410), - [aux_sym__val_number_token6] = ACTIONS(6410), - [anon_sym_0b] = ACTIONS(6410), - [anon_sym_0o] = ACTIONS(6410), - [anon_sym_0x] = ACTIONS(6410), - [sym_val_date] = ACTIONS(6410), - [anon_sym_DQUOTE] = ACTIONS(6410), - [sym__str_single_quotes] = ACTIONS(6410), - [sym__str_back_ticks] = ACTIONS(6410), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6410), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6410), - [anon_sym_CARET] = ACTIONS(6410), - [anon_sym_POUND] = ACTIONS(113), - }, - [2661] = { - [sym_comment] = STATE(2661), - [anon_sym_export] = ACTIONS(6414), - [anon_sym_alias] = ACTIONS(6414), - [anon_sym_let] = ACTIONS(6414), - [anon_sym_let_DASHenv] = ACTIONS(6414), - [anon_sym_mut] = ACTIONS(6414), - [anon_sym_const] = ACTIONS(6414), - [anon_sym_SEMI] = ACTIONS(6414), - [sym_cmd_identifier] = ACTIONS(6414), - [anon_sym_LF] = ACTIONS(6416), - [anon_sym_def] = ACTIONS(6414), - [anon_sym_export_DASHenv] = ACTIONS(6414), - [anon_sym_extern] = ACTIONS(6414), - [anon_sym_module] = ACTIONS(6414), - [anon_sym_use] = ACTIONS(6414), - [anon_sym_LBRACK] = ACTIONS(6414), - [anon_sym_LPAREN] = ACTIONS(6414), - [anon_sym_RPAREN] = ACTIONS(6414), - [anon_sym_DOLLAR] = ACTIONS(6414), - [anon_sym_error] = ACTIONS(6414), - [anon_sym_DASH] = ACTIONS(6414), - [anon_sym_break] = ACTIONS(6414), - [anon_sym_continue] = ACTIONS(6414), - [anon_sym_for] = ACTIONS(6414), - [anon_sym_loop] = ACTIONS(6414), - [anon_sym_while] = ACTIONS(6414), - [anon_sym_do] = ACTIONS(6414), - [anon_sym_if] = ACTIONS(6414), - [anon_sym_match] = ACTIONS(6414), - [anon_sym_LBRACE] = ACTIONS(6414), - [anon_sym_RBRACE] = ACTIONS(6414), - [anon_sym_DOT_DOT] = ACTIONS(6414), - [anon_sym_try] = ACTIONS(6414), - [anon_sym_return] = ACTIONS(6414), - [anon_sym_source] = ACTIONS(6414), - [anon_sym_source_DASHenv] = ACTIONS(6414), - [anon_sym_register] = ACTIONS(6414), - [anon_sym_hide] = ACTIONS(6414), - [anon_sym_hide_DASHenv] = ACTIONS(6414), - [anon_sym_overlay] = ACTIONS(6414), - [anon_sym_where] = ACTIONS(6414), - [anon_sym_not] = ACTIONS(6414), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6414), - [anon_sym_DOT_DOT_LT] = ACTIONS(6414), - [anon_sym_null] = ACTIONS(6414), - [anon_sym_true] = ACTIONS(6414), - [anon_sym_false] = ACTIONS(6414), - [aux_sym__val_number_decimal_token1] = ACTIONS(6414), - [aux_sym__val_number_decimal_token2] = ACTIONS(6414), - [anon_sym_DOT2] = ACTIONS(6414), - [aux_sym__val_number_decimal_token3] = ACTIONS(6414), - [aux_sym__val_number_token1] = ACTIONS(6414), - [aux_sym__val_number_token2] = ACTIONS(6414), - [aux_sym__val_number_token3] = ACTIONS(6414), - [aux_sym__val_number_token4] = ACTIONS(6414), - [aux_sym__val_number_token5] = ACTIONS(6414), - [aux_sym__val_number_token6] = ACTIONS(6414), - [anon_sym_0b] = ACTIONS(6414), - [anon_sym_0o] = ACTIONS(6414), - [anon_sym_0x] = ACTIONS(6414), - [sym_val_date] = ACTIONS(6414), - [anon_sym_DQUOTE] = ACTIONS(6414), - [sym__str_single_quotes] = ACTIONS(6414), - [sym__str_back_ticks] = ACTIONS(6414), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6414), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6414), - [anon_sym_CARET] = ACTIONS(6414), - [anon_sym_POUND] = ACTIONS(113), - }, - [2662] = { - [sym_comment] = STATE(2662), - [anon_sym_export] = ACTIONS(6418), - [anon_sym_alias] = ACTIONS(6418), - [anon_sym_let] = ACTIONS(6418), - [anon_sym_let_DASHenv] = ACTIONS(6418), - [anon_sym_mut] = ACTIONS(6418), - [anon_sym_const] = ACTIONS(6418), - [anon_sym_SEMI] = ACTIONS(6418), - [sym_cmd_identifier] = ACTIONS(6418), - [anon_sym_LF] = ACTIONS(6420), - [anon_sym_def] = ACTIONS(6418), - [anon_sym_export_DASHenv] = ACTIONS(6418), - [anon_sym_extern] = ACTIONS(6418), - [anon_sym_module] = ACTIONS(6418), - [anon_sym_use] = ACTIONS(6418), - [anon_sym_LBRACK] = ACTIONS(6418), - [anon_sym_LPAREN] = ACTIONS(6418), - [anon_sym_RPAREN] = ACTIONS(6418), - [anon_sym_DOLLAR] = ACTIONS(6418), - [anon_sym_error] = ACTIONS(6418), - [anon_sym_DASH] = ACTIONS(6418), - [anon_sym_break] = ACTIONS(6418), - [anon_sym_continue] = ACTIONS(6418), - [anon_sym_for] = ACTIONS(6418), - [anon_sym_loop] = ACTIONS(6418), - [anon_sym_while] = ACTIONS(6418), - [anon_sym_do] = ACTIONS(6418), - [anon_sym_if] = ACTIONS(6418), - [anon_sym_match] = ACTIONS(6418), - [anon_sym_LBRACE] = ACTIONS(6418), - [anon_sym_RBRACE] = ACTIONS(6418), - [anon_sym_DOT_DOT] = ACTIONS(6418), - [anon_sym_try] = ACTIONS(6418), - [anon_sym_return] = ACTIONS(6418), - [anon_sym_source] = ACTIONS(6418), - [anon_sym_source_DASHenv] = ACTIONS(6418), - [anon_sym_register] = ACTIONS(6418), - [anon_sym_hide] = ACTIONS(6418), - [anon_sym_hide_DASHenv] = ACTIONS(6418), - [anon_sym_overlay] = ACTIONS(6418), - [anon_sym_where] = ACTIONS(6418), - [anon_sym_not] = ACTIONS(6418), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6418), - [anon_sym_DOT_DOT_LT] = ACTIONS(6418), - [anon_sym_null] = ACTIONS(6418), - [anon_sym_true] = ACTIONS(6418), - [anon_sym_false] = ACTIONS(6418), - [aux_sym__val_number_decimal_token1] = ACTIONS(6418), - [aux_sym__val_number_decimal_token2] = ACTIONS(6418), - [anon_sym_DOT2] = ACTIONS(6418), - [aux_sym__val_number_decimal_token3] = ACTIONS(6418), - [aux_sym__val_number_token1] = ACTIONS(6418), - [aux_sym__val_number_token2] = ACTIONS(6418), - [aux_sym__val_number_token3] = ACTIONS(6418), - [aux_sym__val_number_token4] = ACTIONS(6418), - [aux_sym__val_number_token5] = ACTIONS(6418), - [aux_sym__val_number_token6] = ACTIONS(6418), - [anon_sym_0b] = ACTIONS(6418), - [anon_sym_0o] = ACTIONS(6418), - [anon_sym_0x] = ACTIONS(6418), - [sym_val_date] = ACTIONS(6418), - [anon_sym_DQUOTE] = ACTIONS(6418), - [sym__str_single_quotes] = ACTIONS(6418), - [sym__str_back_ticks] = ACTIONS(6418), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6418), - [anon_sym_CARET] = ACTIONS(6418), - [anon_sym_POUND] = ACTIONS(113), - }, - [2663] = { - [sym_comment] = STATE(2663), - [anon_sym_export] = ACTIONS(6422), - [anon_sym_alias] = ACTIONS(6422), - [anon_sym_let] = ACTIONS(6422), - [anon_sym_let_DASHenv] = ACTIONS(6422), - [anon_sym_mut] = ACTIONS(6422), - [anon_sym_const] = ACTIONS(6422), - [anon_sym_SEMI] = ACTIONS(6422), - [sym_cmd_identifier] = ACTIONS(6422), - [anon_sym_LF] = ACTIONS(6424), - [anon_sym_def] = ACTIONS(6422), - [anon_sym_export_DASHenv] = ACTIONS(6422), - [anon_sym_extern] = ACTIONS(6422), - [anon_sym_module] = ACTIONS(6422), - [anon_sym_use] = ACTIONS(6422), - [anon_sym_LBRACK] = ACTIONS(6422), - [anon_sym_LPAREN] = ACTIONS(6422), - [anon_sym_RPAREN] = ACTIONS(6422), - [anon_sym_DOLLAR] = ACTIONS(6422), - [anon_sym_error] = ACTIONS(6422), - [anon_sym_DASH] = ACTIONS(6422), - [anon_sym_break] = ACTIONS(6422), - [anon_sym_continue] = ACTIONS(6422), - [anon_sym_for] = ACTIONS(6422), - [anon_sym_loop] = ACTIONS(6422), - [anon_sym_while] = ACTIONS(6422), - [anon_sym_do] = ACTIONS(6422), - [anon_sym_if] = ACTIONS(6422), - [anon_sym_match] = ACTIONS(6422), - [anon_sym_LBRACE] = ACTIONS(6422), - [anon_sym_RBRACE] = ACTIONS(6422), - [anon_sym_DOT_DOT] = ACTIONS(6422), - [anon_sym_try] = ACTIONS(6422), - [anon_sym_return] = ACTIONS(6422), - [anon_sym_source] = ACTIONS(6422), - [anon_sym_source_DASHenv] = ACTIONS(6422), - [anon_sym_register] = ACTIONS(6422), - [anon_sym_hide] = ACTIONS(6422), - [anon_sym_hide_DASHenv] = ACTIONS(6422), - [anon_sym_overlay] = ACTIONS(6422), - [anon_sym_where] = ACTIONS(6422), - [anon_sym_not] = ACTIONS(6422), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6422), - [anon_sym_DOT_DOT_LT] = ACTIONS(6422), - [anon_sym_null] = ACTIONS(6422), - [anon_sym_true] = ACTIONS(6422), - [anon_sym_false] = ACTIONS(6422), - [aux_sym__val_number_decimal_token1] = ACTIONS(6422), - [aux_sym__val_number_decimal_token2] = ACTIONS(6422), - [anon_sym_DOT2] = ACTIONS(6422), - [aux_sym__val_number_decimal_token3] = ACTIONS(6422), - [aux_sym__val_number_token1] = ACTIONS(6422), - [aux_sym__val_number_token2] = ACTIONS(6422), - [aux_sym__val_number_token3] = ACTIONS(6422), - [aux_sym__val_number_token4] = ACTIONS(6422), - [aux_sym__val_number_token5] = ACTIONS(6422), - [aux_sym__val_number_token6] = ACTIONS(6422), - [anon_sym_0b] = ACTIONS(6422), - [anon_sym_0o] = ACTIONS(6422), - [anon_sym_0x] = ACTIONS(6422), - [sym_val_date] = ACTIONS(6422), - [anon_sym_DQUOTE] = ACTIONS(6422), - [sym__str_single_quotes] = ACTIONS(6422), - [sym__str_back_ticks] = ACTIONS(6422), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6422), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6422), - [anon_sym_CARET] = ACTIONS(6422), - [anon_sym_POUND] = ACTIONS(113), - }, - [2664] = { - [sym_comment] = STATE(2664), - [anon_sym_export] = ACTIONS(6426), - [anon_sym_alias] = ACTIONS(6426), - [anon_sym_let] = ACTIONS(6426), - [anon_sym_let_DASHenv] = ACTIONS(6426), - [anon_sym_mut] = ACTIONS(6426), - [anon_sym_const] = ACTIONS(6426), - [anon_sym_SEMI] = ACTIONS(6426), - [sym_cmd_identifier] = ACTIONS(6426), - [anon_sym_LF] = ACTIONS(6428), - [anon_sym_def] = ACTIONS(6426), - [anon_sym_export_DASHenv] = ACTIONS(6426), - [anon_sym_extern] = ACTIONS(6426), - [anon_sym_module] = ACTIONS(6426), - [anon_sym_use] = ACTIONS(6426), - [anon_sym_LBRACK] = ACTIONS(6426), - [anon_sym_LPAREN] = ACTIONS(6426), - [anon_sym_RPAREN] = ACTIONS(6426), - [anon_sym_DOLLAR] = ACTIONS(6426), - [anon_sym_error] = ACTIONS(6426), - [anon_sym_DASH] = ACTIONS(6426), - [anon_sym_break] = ACTIONS(6426), - [anon_sym_continue] = ACTIONS(6426), - [anon_sym_for] = ACTIONS(6426), - [anon_sym_loop] = ACTIONS(6426), - [anon_sym_while] = ACTIONS(6426), - [anon_sym_do] = ACTIONS(6426), - [anon_sym_if] = ACTIONS(6426), - [anon_sym_match] = ACTIONS(6426), - [anon_sym_LBRACE] = ACTIONS(6426), - [anon_sym_RBRACE] = ACTIONS(6426), - [anon_sym_DOT_DOT] = ACTIONS(6426), - [anon_sym_try] = ACTIONS(6426), - [anon_sym_return] = ACTIONS(6426), - [anon_sym_source] = ACTIONS(6426), - [anon_sym_source_DASHenv] = ACTIONS(6426), - [anon_sym_register] = ACTIONS(6426), - [anon_sym_hide] = ACTIONS(6426), - [anon_sym_hide_DASHenv] = ACTIONS(6426), - [anon_sym_overlay] = ACTIONS(6426), - [anon_sym_where] = ACTIONS(6426), - [anon_sym_not] = ACTIONS(6426), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6426), - [anon_sym_DOT_DOT_LT] = ACTIONS(6426), - [anon_sym_null] = ACTIONS(6426), - [anon_sym_true] = ACTIONS(6426), - [anon_sym_false] = ACTIONS(6426), - [aux_sym__val_number_decimal_token1] = ACTIONS(6426), - [aux_sym__val_number_decimal_token2] = ACTIONS(6426), - [anon_sym_DOT2] = ACTIONS(6426), - [aux_sym__val_number_decimal_token3] = ACTIONS(6426), - [aux_sym__val_number_token1] = ACTIONS(6426), - [aux_sym__val_number_token2] = ACTIONS(6426), - [aux_sym__val_number_token3] = ACTIONS(6426), - [aux_sym__val_number_token4] = ACTIONS(6426), - [aux_sym__val_number_token5] = ACTIONS(6426), - [aux_sym__val_number_token6] = ACTIONS(6426), - [anon_sym_0b] = ACTIONS(6426), - [anon_sym_0o] = ACTIONS(6426), - [anon_sym_0x] = ACTIONS(6426), - [sym_val_date] = ACTIONS(6426), - [anon_sym_DQUOTE] = ACTIONS(6426), - [sym__str_single_quotes] = ACTIONS(6426), - [sym__str_back_ticks] = ACTIONS(6426), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6426), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6426), - [anon_sym_CARET] = ACTIONS(6426), - [anon_sym_POUND] = ACTIONS(113), - }, - [2665] = { - [sym_comment] = STATE(2665), - [anon_sym_export] = ACTIONS(6430), - [anon_sym_alias] = ACTIONS(6430), - [anon_sym_let] = ACTIONS(6430), - [anon_sym_let_DASHenv] = ACTIONS(6430), - [anon_sym_mut] = ACTIONS(6430), - [anon_sym_const] = ACTIONS(6430), - [anon_sym_SEMI] = ACTIONS(6430), - [sym_cmd_identifier] = ACTIONS(6430), - [anon_sym_LF] = ACTIONS(6432), - [anon_sym_def] = ACTIONS(6430), - [anon_sym_export_DASHenv] = ACTIONS(6430), - [anon_sym_extern] = ACTIONS(6430), - [anon_sym_module] = ACTIONS(6430), - [anon_sym_use] = ACTIONS(6430), - [anon_sym_LBRACK] = ACTIONS(6430), - [anon_sym_LPAREN] = ACTIONS(6430), - [anon_sym_RPAREN] = ACTIONS(6430), - [anon_sym_DOLLAR] = ACTIONS(6430), - [anon_sym_error] = ACTIONS(6430), - [anon_sym_DASH] = ACTIONS(6430), - [anon_sym_break] = ACTIONS(6430), - [anon_sym_continue] = ACTIONS(6430), - [anon_sym_for] = ACTIONS(6430), - [anon_sym_loop] = ACTIONS(6430), - [anon_sym_while] = ACTIONS(6430), - [anon_sym_do] = ACTIONS(6430), - [anon_sym_if] = ACTIONS(6430), - [anon_sym_match] = ACTIONS(6430), - [anon_sym_LBRACE] = ACTIONS(6430), - [anon_sym_RBRACE] = ACTIONS(6430), - [anon_sym_DOT_DOT] = ACTIONS(6430), - [anon_sym_try] = ACTIONS(6430), - [anon_sym_return] = ACTIONS(6430), - [anon_sym_source] = ACTIONS(6430), - [anon_sym_source_DASHenv] = ACTIONS(6430), - [anon_sym_register] = ACTIONS(6430), - [anon_sym_hide] = ACTIONS(6430), - [anon_sym_hide_DASHenv] = ACTIONS(6430), - [anon_sym_overlay] = ACTIONS(6430), - [anon_sym_where] = ACTIONS(6430), - [anon_sym_not] = ACTIONS(6430), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6430), - [anon_sym_DOT_DOT_LT] = ACTIONS(6430), - [anon_sym_null] = ACTIONS(6430), - [anon_sym_true] = ACTIONS(6430), - [anon_sym_false] = ACTIONS(6430), - [aux_sym__val_number_decimal_token1] = ACTIONS(6430), - [aux_sym__val_number_decimal_token2] = ACTIONS(6430), - [anon_sym_DOT2] = ACTIONS(6430), - [aux_sym__val_number_decimal_token3] = ACTIONS(6430), - [aux_sym__val_number_token1] = ACTIONS(6430), - [aux_sym__val_number_token2] = ACTIONS(6430), - [aux_sym__val_number_token3] = ACTIONS(6430), - [aux_sym__val_number_token4] = ACTIONS(6430), - [aux_sym__val_number_token5] = ACTIONS(6430), - [aux_sym__val_number_token6] = ACTIONS(6430), - [anon_sym_0b] = ACTIONS(6430), - [anon_sym_0o] = ACTIONS(6430), - [anon_sym_0x] = ACTIONS(6430), - [sym_val_date] = ACTIONS(6430), - [anon_sym_DQUOTE] = ACTIONS(6430), - [sym__str_single_quotes] = ACTIONS(6430), - [sym__str_back_ticks] = ACTIONS(6430), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6430), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6430), - [anon_sym_CARET] = ACTIONS(6430), - [anon_sym_POUND] = ACTIONS(113), - }, - [2666] = { - [sym_comment] = STATE(2666), - [anon_sym_export] = ACTIONS(6434), - [anon_sym_alias] = ACTIONS(6434), - [anon_sym_let] = ACTIONS(6434), - [anon_sym_let_DASHenv] = ACTIONS(6434), - [anon_sym_mut] = ACTIONS(6434), - [anon_sym_const] = ACTIONS(6434), - [anon_sym_SEMI] = ACTIONS(6434), - [sym_cmd_identifier] = ACTIONS(6434), - [anon_sym_LF] = ACTIONS(6436), - [anon_sym_def] = ACTIONS(6434), - [anon_sym_export_DASHenv] = ACTIONS(6434), - [anon_sym_extern] = ACTIONS(6434), - [anon_sym_module] = ACTIONS(6434), - [anon_sym_use] = ACTIONS(6434), - [anon_sym_LBRACK] = ACTIONS(6434), - [anon_sym_LPAREN] = ACTIONS(6434), - [anon_sym_RPAREN] = ACTIONS(6434), - [anon_sym_DOLLAR] = ACTIONS(6434), - [anon_sym_error] = ACTIONS(6434), - [anon_sym_DASH] = ACTIONS(6434), - [anon_sym_break] = ACTIONS(6434), - [anon_sym_continue] = ACTIONS(6434), - [anon_sym_for] = ACTIONS(6434), - [anon_sym_loop] = ACTIONS(6434), - [anon_sym_while] = ACTIONS(6434), - [anon_sym_do] = ACTIONS(6434), - [anon_sym_if] = ACTIONS(6434), - [anon_sym_match] = ACTIONS(6434), - [anon_sym_LBRACE] = ACTIONS(6434), - [anon_sym_RBRACE] = ACTIONS(6434), - [anon_sym_DOT_DOT] = ACTIONS(6434), - [anon_sym_try] = ACTIONS(6434), - [anon_sym_return] = ACTIONS(6434), - [anon_sym_source] = ACTIONS(6434), - [anon_sym_source_DASHenv] = ACTIONS(6434), - [anon_sym_register] = ACTIONS(6434), - [anon_sym_hide] = ACTIONS(6434), - [anon_sym_hide_DASHenv] = ACTIONS(6434), - [anon_sym_overlay] = ACTIONS(6434), - [anon_sym_where] = ACTIONS(6434), - [anon_sym_not] = ACTIONS(6434), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6434), - [anon_sym_DOT_DOT_LT] = ACTIONS(6434), - [anon_sym_null] = ACTIONS(6434), - [anon_sym_true] = ACTIONS(6434), - [anon_sym_false] = ACTIONS(6434), - [aux_sym__val_number_decimal_token1] = ACTIONS(6434), - [aux_sym__val_number_decimal_token2] = ACTIONS(6434), - [anon_sym_DOT2] = ACTIONS(6434), - [aux_sym__val_number_decimal_token3] = ACTIONS(6434), - [aux_sym__val_number_token1] = ACTIONS(6434), - [aux_sym__val_number_token2] = ACTIONS(6434), - [aux_sym__val_number_token3] = ACTIONS(6434), - [aux_sym__val_number_token4] = ACTIONS(6434), - [aux_sym__val_number_token5] = ACTIONS(6434), - [aux_sym__val_number_token6] = ACTIONS(6434), - [anon_sym_0b] = ACTIONS(6434), - [anon_sym_0o] = ACTIONS(6434), - [anon_sym_0x] = ACTIONS(6434), - [sym_val_date] = ACTIONS(6434), - [anon_sym_DQUOTE] = ACTIONS(6434), - [sym__str_single_quotes] = ACTIONS(6434), - [sym__str_back_ticks] = ACTIONS(6434), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6434), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6434), - [anon_sym_CARET] = ACTIONS(6434), - [anon_sym_POUND] = ACTIONS(113), - }, - [2667] = { - [sym_comment] = STATE(2667), - [anon_sym_export] = ACTIONS(6438), - [anon_sym_alias] = ACTIONS(6438), - [anon_sym_let] = ACTIONS(6438), - [anon_sym_let_DASHenv] = ACTIONS(6438), - [anon_sym_mut] = ACTIONS(6438), - [anon_sym_const] = ACTIONS(6438), - [anon_sym_SEMI] = ACTIONS(6438), - [sym_cmd_identifier] = ACTIONS(6438), - [anon_sym_LF] = ACTIONS(6440), - [anon_sym_def] = ACTIONS(6438), - [anon_sym_export_DASHenv] = ACTIONS(6438), - [anon_sym_extern] = ACTIONS(6438), - [anon_sym_module] = ACTIONS(6438), - [anon_sym_use] = ACTIONS(6438), - [anon_sym_LBRACK] = ACTIONS(6438), - [anon_sym_LPAREN] = ACTIONS(6438), - [anon_sym_RPAREN] = ACTIONS(6438), - [anon_sym_DOLLAR] = ACTIONS(6438), - [anon_sym_error] = ACTIONS(6438), - [anon_sym_DASH] = ACTIONS(6438), - [anon_sym_break] = ACTIONS(6438), - [anon_sym_continue] = ACTIONS(6438), - [anon_sym_for] = ACTIONS(6438), - [anon_sym_loop] = ACTIONS(6438), - [anon_sym_while] = ACTIONS(6438), - [anon_sym_do] = ACTIONS(6438), - [anon_sym_if] = ACTIONS(6438), - [anon_sym_match] = ACTIONS(6438), - [anon_sym_LBRACE] = ACTIONS(6438), - [anon_sym_RBRACE] = ACTIONS(6438), - [anon_sym_DOT_DOT] = ACTIONS(6438), - [anon_sym_try] = ACTIONS(6438), - [anon_sym_return] = ACTIONS(6438), - [anon_sym_source] = ACTIONS(6438), - [anon_sym_source_DASHenv] = ACTIONS(6438), - [anon_sym_register] = ACTIONS(6438), - [anon_sym_hide] = ACTIONS(6438), - [anon_sym_hide_DASHenv] = ACTIONS(6438), - [anon_sym_overlay] = ACTIONS(6438), - [anon_sym_where] = ACTIONS(6438), - [anon_sym_not] = ACTIONS(6438), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6438), - [anon_sym_DOT_DOT_LT] = ACTIONS(6438), - [anon_sym_null] = ACTIONS(6438), - [anon_sym_true] = ACTIONS(6438), - [anon_sym_false] = ACTIONS(6438), - [aux_sym__val_number_decimal_token1] = ACTIONS(6438), - [aux_sym__val_number_decimal_token2] = ACTIONS(6438), - [anon_sym_DOT2] = ACTIONS(6438), - [aux_sym__val_number_decimal_token3] = ACTIONS(6438), - [aux_sym__val_number_token1] = ACTIONS(6438), - [aux_sym__val_number_token2] = ACTIONS(6438), - [aux_sym__val_number_token3] = ACTIONS(6438), - [aux_sym__val_number_token4] = ACTIONS(6438), - [aux_sym__val_number_token5] = ACTIONS(6438), - [aux_sym__val_number_token6] = ACTIONS(6438), - [anon_sym_0b] = ACTIONS(6438), - [anon_sym_0o] = ACTIONS(6438), - [anon_sym_0x] = ACTIONS(6438), - [sym_val_date] = ACTIONS(6438), - [anon_sym_DQUOTE] = ACTIONS(6438), - [sym__str_single_quotes] = ACTIONS(6438), - [sym__str_back_ticks] = ACTIONS(6438), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6438), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6438), - [anon_sym_CARET] = ACTIONS(6438), - [anon_sym_POUND] = ACTIONS(113), - }, - [2668] = { - [sym_comment] = STATE(2668), - [anon_sym_export] = ACTIONS(6442), - [anon_sym_alias] = ACTIONS(6442), - [anon_sym_let] = ACTIONS(6442), - [anon_sym_let_DASHenv] = ACTIONS(6442), - [anon_sym_mut] = ACTIONS(6442), - [anon_sym_const] = ACTIONS(6442), - [anon_sym_SEMI] = ACTIONS(6442), - [sym_cmd_identifier] = ACTIONS(6442), - [anon_sym_LF] = ACTIONS(6444), - [anon_sym_def] = ACTIONS(6442), - [anon_sym_export_DASHenv] = ACTIONS(6442), - [anon_sym_extern] = ACTIONS(6442), - [anon_sym_module] = ACTIONS(6442), - [anon_sym_use] = ACTIONS(6442), - [anon_sym_LBRACK] = ACTIONS(6442), - [anon_sym_LPAREN] = ACTIONS(6442), - [anon_sym_RPAREN] = ACTIONS(6442), - [anon_sym_DOLLAR] = ACTIONS(6442), - [anon_sym_error] = ACTIONS(6442), - [anon_sym_DASH] = ACTIONS(6442), - [anon_sym_break] = ACTIONS(6442), - [anon_sym_continue] = ACTIONS(6442), - [anon_sym_for] = ACTIONS(6442), - [anon_sym_loop] = ACTIONS(6442), - [anon_sym_while] = ACTIONS(6442), - [anon_sym_do] = ACTIONS(6442), - [anon_sym_if] = ACTIONS(6442), - [anon_sym_match] = ACTIONS(6442), - [anon_sym_LBRACE] = ACTIONS(6442), - [anon_sym_RBRACE] = ACTIONS(6442), - [anon_sym_DOT_DOT] = ACTIONS(6442), - [anon_sym_try] = ACTIONS(6442), - [anon_sym_return] = ACTIONS(6442), - [anon_sym_source] = ACTIONS(6442), - [anon_sym_source_DASHenv] = ACTIONS(6442), - [anon_sym_register] = ACTIONS(6442), - [anon_sym_hide] = ACTIONS(6442), - [anon_sym_hide_DASHenv] = ACTIONS(6442), - [anon_sym_overlay] = ACTIONS(6442), - [anon_sym_where] = ACTIONS(6442), - [anon_sym_not] = ACTIONS(6442), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6442), - [anon_sym_DOT_DOT_LT] = ACTIONS(6442), - [anon_sym_null] = ACTIONS(6442), - [anon_sym_true] = ACTIONS(6442), - [anon_sym_false] = ACTIONS(6442), - [aux_sym__val_number_decimal_token1] = ACTIONS(6442), - [aux_sym__val_number_decimal_token2] = ACTIONS(6442), - [anon_sym_DOT2] = ACTIONS(6442), - [aux_sym__val_number_decimal_token3] = ACTIONS(6442), - [aux_sym__val_number_token1] = ACTIONS(6442), - [aux_sym__val_number_token2] = ACTIONS(6442), - [aux_sym__val_number_token3] = ACTIONS(6442), - [aux_sym__val_number_token4] = ACTIONS(6442), - [aux_sym__val_number_token5] = ACTIONS(6442), - [aux_sym__val_number_token6] = ACTIONS(6442), - [anon_sym_0b] = ACTIONS(6442), - [anon_sym_0o] = ACTIONS(6442), - [anon_sym_0x] = ACTIONS(6442), - [sym_val_date] = ACTIONS(6442), - [anon_sym_DQUOTE] = ACTIONS(6442), - [sym__str_single_quotes] = ACTIONS(6442), - [sym__str_back_ticks] = ACTIONS(6442), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6442), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6442), - [anon_sym_CARET] = ACTIONS(6442), - [anon_sym_POUND] = ACTIONS(113), - }, - [2669] = { - [sym_comment] = STATE(2669), - [anon_sym_export] = ACTIONS(6446), - [anon_sym_alias] = ACTIONS(6446), - [anon_sym_let] = ACTIONS(6446), - [anon_sym_let_DASHenv] = ACTIONS(6446), - [anon_sym_mut] = ACTIONS(6446), - [anon_sym_const] = ACTIONS(6446), - [anon_sym_SEMI] = ACTIONS(6446), - [sym_cmd_identifier] = ACTIONS(6446), - [anon_sym_LF] = ACTIONS(6448), - [anon_sym_def] = ACTIONS(6446), - [anon_sym_export_DASHenv] = ACTIONS(6446), - [anon_sym_extern] = ACTIONS(6446), - [anon_sym_module] = ACTIONS(6446), - [anon_sym_use] = ACTIONS(6446), - [anon_sym_LBRACK] = ACTIONS(6446), - [anon_sym_LPAREN] = ACTIONS(6446), - [anon_sym_RPAREN] = ACTIONS(6446), - [anon_sym_DOLLAR] = ACTIONS(6446), - [anon_sym_error] = ACTIONS(6446), - [anon_sym_DASH] = ACTIONS(6446), - [anon_sym_break] = ACTIONS(6446), - [anon_sym_continue] = ACTIONS(6446), - [anon_sym_for] = ACTIONS(6446), - [anon_sym_loop] = ACTIONS(6446), - [anon_sym_while] = ACTIONS(6446), - [anon_sym_do] = ACTIONS(6446), - [anon_sym_if] = ACTIONS(6446), - [anon_sym_match] = ACTIONS(6446), - [anon_sym_LBRACE] = ACTIONS(6446), - [anon_sym_RBRACE] = ACTIONS(6446), - [anon_sym_DOT_DOT] = ACTIONS(6446), - [anon_sym_try] = ACTIONS(6446), - [anon_sym_return] = ACTIONS(6446), - [anon_sym_source] = ACTIONS(6446), - [anon_sym_source_DASHenv] = ACTIONS(6446), - [anon_sym_register] = ACTIONS(6446), - [anon_sym_hide] = ACTIONS(6446), - [anon_sym_hide_DASHenv] = ACTIONS(6446), - [anon_sym_overlay] = ACTIONS(6446), - [anon_sym_where] = ACTIONS(6446), - [anon_sym_not] = ACTIONS(6446), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6446), - [anon_sym_DOT_DOT_LT] = ACTIONS(6446), - [anon_sym_null] = ACTIONS(6446), - [anon_sym_true] = ACTIONS(6446), - [anon_sym_false] = ACTIONS(6446), - [aux_sym__val_number_decimal_token1] = ACTIONS(6446), - [aux_sym__val_number_decimal_token2] = ACTIONS(6446), - [anon_sym_DOT2] = ACTIONS(6446), - [aux_sym__val_number_decimal_token3] = ACTIONS(6446), - [aux_sym__val_number_token1] = ACTIONS(6446), - [aux_sym__val_number_token2] = ACTIONS(6446), - [aux_sym__val_number_token3] = ACTIONS(6446), - [aux_sym__val_number_token4] = ACTIONS(6446), - [aux_sym__val_number_token5] = ACTIONS(6446), - [aux_sym__val_number_token6] = ACTIONS(6446), - [anon_sym_0b] = ACTIONS(6446), - [anon_sym_0o] = ACTIONS(6446), - [anon_sym_0x] = ACTIONS(6446), - [sym_val_date] = ACTIONS(6446), - [anon_sym_DQUOTE] = ACTIONS(6446), - [sym__str_single_quotes] = ACTIONS(6446), - [sym__str_back_ticks] = ACTIONS(6446), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6446), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6446), - [anon_sym_CARET] = ACTIONS(6446), - [anon_sym_POUND] = ACTIONS(113), - }, - [2670] = { - [sym_comment] = STATE(2670), - [anon_sym_export] = ACTIONS(6450), - [anon_sym_alias] = ACTIONS(6450), - [anon_sym_let] = ACTIONS(6450), - [anon_sym_let_DASHenv] = ACTIONS(6450), - [anon_sym_mut] = ACTIONS(6450), - [anon_sym_const] = ACTIONS(6450), - [anon_sym_SEMI] = ACTIONS(6450), - [sym_cmd_identifier] = ACTIONS(6450), - [anon_sym_LF] = ACTIONS(6452), - [anon_sym_def] = ACTIONS(6450), - [anon_sym_export_DASHenv] = ACTIONS(6450), - [anon_sym_extern] = ACTIONS(6450), - [anon_sym_module] = ACTIONS(6450), - [anon_sym_use] = ACTIONS(6450), - [anon_sym_LBRACK] = ACTIONS(6450), - [anon_sym_LPAREN] = ACTIONS(6450), - [anon_sym_RPAREN] = ACTIONS(6450), - [anon_sym_DOLLAR] = ACTIONS(6450), - [anon_sym_error] = ACTIONS(6450), - [anon_sym_DASH] = ACTIONS(6450), - [anon_sym_break] = ACTIONS(6450), - [anon_sym_continue] = ACTIONS(6450), - [anon_sym_for] = ACTIONS(6450), - [anon_sym_loop] = ACTIONS(6450), - [anon_sym_while] = ACTIONS(6450), - [anon_sym_do] = ACTIONS(6450), - [anon_sym_if] = ACTIONS(6450), - [anon_sym_match] = ACTIONS(6450), - [anon_sym_LBRACE] = ACTIONS(6450), - [anon_sym_RBRACE] = ACTIONS(6450), - [anon_sym_DOT_DOT] = ACTIONS(6450), - [anon_sym_try] = ACTIONS(6450), - [anon_sym_return] = ACTIONS(6450), - [anon_sym_source] = ACTIONS(6450), - [anon_sym_source_DASHenv] = ACTIONS(6450), - [anon_sym_register] = ACTIONS(6450), - [anon_sym_hide] = ACTIONS(6450), - [anon_sym_hide_DASHenv] = ACTIONS(6450), - [anon_sym_overlay] = ACTIONS(6450), - [anon_sym_where] = ACTIONS(6450), - [anon_sym_not] = ACTIONS(6450), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6450), - [anon_sym_DOT_DOT_LT] = ACTIONS(6450), - [anon_sym_null] = ACTIONS(6450), - [anon_sym_true] = ACTIONS(6450), - [anon_sym_false] = ACTIONS(6450), - [aux_sym__val_number_decimal_token1] = ACTIONS(6450), - [aux_sym__val_number_decimal_token2] = ACTIONS(6450), - [anon_sym_DOT2] = ACTIONS(6450), - [aux_sym__val_number_decimal_token3] = ACTIONS(6450), - [aux_sym__val_number_token1] = ACTIONS(6450), - [aux_sym__val_number_token2] = ACTIONS(6450), - [aux_sym__val_number_token3] = ACTIONS(6450), - [aux_sym__val_number_token4] = ACTIONS(6450), - [aux_sym__val_number_token5] = ACTIONS(6450), - [aux_sym__val_number_token6] = ACTIONS(6450), - [anon_sym_0b] = ACTIONS(6450), - [anon_sym_0o] = ACTIONS(6450), - [anon_sym_0x] = ACTIONS(6450), - [sym_val_date] = ACTIONS(6450), - [anon_sym_DQUOTE] = ACTIONS(6450), - [sym__str_single_quotes] = ACTIONS(6450), - [sym__str_back_ticks] = ACTIONS(6450), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6450), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6450), - [anon_sym_CARET] = ACTIONS(6450), - [anon_sym_POUND] = ACTIONS(113), - }, - [2671] = { - [sym_comment] = STATE(2671), - [ts_builtin_sym_end] = ACTIONS(1334), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_alias] = ACTIONS(1332), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_let_DASHenv] = ACTIONS(1332), - [anon_sym_mut] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1332), - [sym_cmd_identifier] = ACTIONS(1332), - [anon_sym_LF] = ACTIONS(1334), - [anon_sym_def] = ACTIONS(1332), - [anon_sym_export_DASHenv] = ACTIONS(1332), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_use] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1332), - [anon_sym_DOLLAR] = ACTIONS(1332), - [anon_sym_error] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_loop] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_do] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_match] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_DOT_DOT] = ACTIONS(1332), - [anon_sym_try] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_source] = ACTIONS(1332), - [anon_sym_source_DASHenv] = ACTIONS(1332), - [anon_sym_register] = ACTIONS(1332), - [anon_sym_hide] = ACTIONS(1332), - [anon_sym_hide_DASHenv] = ACTIONS(1332), - [anon_sym_overlay] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_where] = ACTIONS(1332), - [anon_sym_not] = ACTIONS(1332), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1332), - [anon_sym_DOT_DOT_LT] = ACTIONS(1332), - [anon_sym_null] = ACTIONS(1332), - [anon_sym_true] = ACTIONS(1332), - [anon_sym_false] = ACTIONS(1332), - [aux_sym__val_number_decimal_token1] = ACTIONS(1332), - [aux_sym__val_number_decimal_token2] = ACTIONS(1332), - [anon_sym_DOT2] = ACTIONS(1332), - [aux_sym__val_number_decimal_token3] = ACTIONS(1332), - [aux_sym__val_number_token1] = ACTIONS(1332), - [aux_sym__val_number_token2] = ACTIONS(1332), - [aux_sym__val_number_token3] = ACTIONS(1332), - [aux_sym__val_number_token4] = ACTIONS(1332), - [aux_sym__val_number_token5] = ACTIONS(1332), - [aux_sym__val_number_token6] = ACTIONS(1332), - [anon_sym_0b] = ACTIONS(1332), - [anon_sym_0o] = ACTIONS(1332), - [anon_sym_0x] = ACTIONS(1332), - [sym_val_date] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym__str_single_quotes] = ACTIONS(1332), - [sym__str_back_ticks] = ACTIONS(1332), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1332), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1332), - [anon_sym_CARET] = ACTIONS(1332), - [anon_sym_POUND] = ACTIONS(113), - }, - [2672] = { - [sym_comment] = STATE(2672), - [ts_builtin_sym_end] = ACTIONS(1338), - [anon_sym_export] = ACTIONS(1336), - [anon_sym_alias] = ACTIONS(1336), - [anon_sym_let] = ACTIONS(1336), - [anon_sym_let_DASHenv] = ACTIONS(1336), - [anon_sym_mut] = ACTIONS(1336), - [anon_sym_const] = ACTIONS(1336), - [anon_sym_SEMI] = ACTIONS(1336), - [sym_cmd_identifier] = ACTIONS(1336), - [anon_sym_LF] = ACTIONS(1338), - [anon_sym_def] = ACTIONS(1336), - [anon_sym_export_DASHenv] = ACTIONS(1336), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym_module] = ACTIONS(1336), - [anon_sym_use] = ACTIONS(1336), - [anon_sym_LBRACK] = ACTIONS(1336), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_DOLLAR] = ACTIONS(1336), - [anon_sym_error] = ACTIONS(1336), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_break] = ACTIONS(1336), - [anon_sym_continue] = ACTIONS(1336), - [anon_sym_for] = ACTIONS(1336), - [anon_sym_loop] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1336), - [anon_sym_do] = ACTIONS(1336), - [anon_sym_if] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_DOT_DOT] = ACTIONS(1336), - [anon_sym_try] = ACTIONS(1336), - [anon_sym_return] = ACTIONS(1336), - [anon_sym_source] = ACTIONS(1336), - [anon_sym_source_DASHenv] = ACTIONS(1336), - [anon_sym_register] = ACTIONS(1336), - [anon_sym_hide] = ACTIONS(1336), - [anon_sym_hide_DASHenv] = ACTIONS(1336), - [anon_sym_overlay] = ACTIONS(1336), - [anon_sym_STAR] = ACTIONS(1336), - [anon_sym_where] = ACTIONS(1336), - [anon_sym_not] = ACTIONS(1336), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1336), - [anon_sym_DOT_DOT_LT] = ACTIONS(1336), - [anon_sym_null] = ACTIONS(1336), - [anon_sym_true] = ACTIONS(1336), - [anon_sym_false] = ACTIONS(1336), - [aux_sym__val_number_decimal_token1] = ACTIONS(1336), - [aux_sym__val_number_decimal_token2] = ACTIONS(1336), - [anon_sym_DOT2] = ACTIONS(1336), - [aux_sym__val_number_decimal_token3] = ACTIONS(1336), - [aux_sym__val_number_token1] = ACTIONS(1336), - [aux_sym__val_number_token2] = ACTIONS(1336), - [aux_sym__val_number_token3] = ACTIONS(1336), - [aux_sym__val_number_token4] = ACTIONS(1336), - [aux_sym__val_number_token5] = ACTIONS(1336), - [aux_sym__val_number_token6] = ACTIONS(1336), - [anon_sym_0b] = ACTIONS(1336), - [anon_sym_0o] = ACTIONS(1336), - [anon_sym_0x] = ACTIONS(1336), - [sym_val_date] = ACTIONS(1336), - [anon_sym_DQUOTE] = ACTIONS(1336), - [sym__str_single_quotes] = ACTIONS(1336), - [sym__str_back_ticks] = ACTIONS(1336), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1336), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1336), - [anon_sym_CARET] = ACTIONS(1336), - [anon_sym_POUND] = ACTIONS(113), - }, - [2673] = { - [sym_comment] = STATE(2673), - [anon_sym_export] = ACTIONS(6454), - [anon_sym_alias] = ACTIONS(6454), - [anon_sym_let] = ACTIONS(6454), - [anon_sym_let_DASHenv] = ACTIONS(6454), - [anon_sym_mut] = ACTIONS(6454), - [anon_sym_const] = ACTIONS(6454), - [anon_sym_SEMI] = ACTIONS(6454), - [sym_cmd_identifier] = ACTIONS(6454), - [anon_sym_LF] = ACTIONS(6456), - [anon_sym_def] = ACTIONS(6454), - [anon_sym_export_DASHenv] = ACTIONS(6454), - [anon_sym_extern] = ACTIONS(6454), - [anon_sym_module] = ACTIONS(6454), - [anon_sym_use] = ACTIONS(6454), - [anon_sym_LBRACK] = ACTIONS(6454), - [anon_sym_LPAREN] = ACTIONS(6454), - [anon_sym_RPAREN] = ACTIONS(6454), - [anon_sym_DOLLAR] = ACTIONS(6454), - [anon_sym_error] = ACTIONS(6454), - [anon_sym_DASH] = ACTIONS(6454), - [anon_sym_break] = ACTIONS(6454), - [anon_sym_continue] = ACTIONS(6454), - [anon_sym_for] = ACTIONS(6454), - [anon_sym_loop] = ACTIONS(6454), - [anon_sym_while] = ACTIONS(6454), - [anon_sym_do] = ACTIONS(6454), - [anon_sym_if] = ACTIONS(6454), - [anon_sym_match] = ACTIONS(6454), - [anon_sym_LBRACE] = ACTIONS(6454), - [anon_sym_RBRACE] = ACTIONS(6454), - [anon_sym_DOT_DOT] = ACTIONS(6454), - [anon_sym_try] = ACTIONS(6454), - [anon_sym_return] = ACTIONS(6454), - [anon_sym_source] = ACTIONS(6454), - [anon_sym_source_DASHenv] = ACTIONS(6454), - [anon_sym_register] = ACTIONS(6454), - [anon_sym_hide] = ACTIONS(6454), - [anon_sym_hide_DASHenv] = ACTIONS(6454), - [anon_sym_overlay] = ACTIONS(6454), - [anon_sym_where] = ACTIONS(6454), - [anon_sym_not] = ACTIONS(6454), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6454), - [anon_sym_DOT_DOT_LT] = ACTIONS(6454), - [anon_sym_null] = ACTIONS(6454), - [anon_sym_true] = ACTIONS(6454), - [anon_sym_false] = ACTIONS(6454), - [aux_sym__val_number_decimal_token1] = ACTIONS(6454), - [aux_sym__val_number_decimal_token2] = ACTIONS(6454), - [anon_sym_DOT2] = ACTIONS(6454), - [aux_sym__val_number_decimal_token3] = ACTIONS(6454), - [aux_sym__val_number_token1] = ACTIONS(6454), - [aux_sym__val_number_token2] = ACTIONS(6454), - [aux_sym__val_number_token3] = ACTIONS(6454), - [aux_sym__val_number_token4] = ACTIONS(6454), - [aux_sym__val_number_token5] = ACTIONS(6454), - [aux_sym__val_number_token6] = ACTIONS(6454), - [anon_sym_0b] = ACTIONS(6454), - [anon_sym_0o] = ACTIONS(6454), - [anon_sym_0x] = ACTIONS(6454), - [sym_val_date] = ACTIONS(6454), - [anon_sym_DQUOTE] = ACTIONS(6454), - [sym__str_single_quotes] = ACTIONS(6454), - [sym__str_back_ticks] = ACTIONS(6454), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6454), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6454), - [anon_sym_CARET] = ACTIONS(6454), - [anon_sym_POUND] = ACTIONS(113), - }, - [2674] = { - [sym_comment] = STATE(2674), - [anon_sym_export] = ACTIONS(6458), - [anon_sym_alias] = ACTIONS(6458), - [anon_sym_let] = ACTIONS(6458), - [anon_sym_let_DASHenv] = ACTIONS(6458), - [anon_sym_mut] = ACTIONS(6458), - [anon_sym_const] = ACTIONS(6458), - [anon_sym_SEMI] = ACTIONS(6460), - [sym_cmd_identifier] = ACTIONS(6458), - [anon_sym_LF] = ACTIONS(6463), - [anon_sym_def] = ACTIONS(6458), - [anon_sym_export_DASHenv] = ACTIONS(6458), - [anon_sym_extern] = ACTIONS(6458), - [anon_sym_module] = ACTIONS(6458), - [anon_sym_use] = ACTIONS(6458), - [anon_sym_LBRACK] = ACTIONS(6458), - [anon_sym_LPAREN] = ACTIONS(6458), - [anon_sym_RPAREN] = ACTIONS(6466), - [anon_sym_DOLLAR] = ACTIONS(6458), - [anon_sym_error] = ACTIONS(6458), - [anon_sym_DASH] = ACTIONS(6458), - [anon_sym_break] = ACTIONS(6458), - [anon_sym_continue] = ACTIONS(6458), - [anon_sym_for] = ACTIONS(6458), - [anon_sym_loop] = ACTIONS(6458), - [anon_sym_while] = ACTIONS(6458), - [anon_sym_do] = ACTIONS(6458), - [anon_sym_if] = ACTIONS(6458), - [anon_sym_match] = ACTIONS(6458), - [anon_sym_LBRACE] = ACTIONS(6458), - [anon_sym_RBRACE] = ACTIONS(6466), - [anon_sym_DOT_DOT] = ACTIONS(6458), - [anon_sym_try] = ACTIONS(6458), - [anon_sym_return] = ACTIONS(6458), - [anon_sym_source] = ACTIONS(6458), - [anon_sym_source_DASHenv] = ACTIONS(6458), - [anon_sym_register] = ACTIONS(6458), - [anon_sym_hide] = ACTIONS(6458), - [anon_sym_hide_DASHenv] = ACTIONS(6458), - [anon_sym_overlay] = ACTIONS(6458), - [anon_sym_where] = ACTIONS(6458), - [anon_sym_not] = ACTIONS(6458), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6458), - [anon_sym_DOT_DOT_LT] = ACTIONS(6458), - [anon_sym_null] = ACTIONS(6458), - [anon_sym_true] = ACTIONS(6458), - [anon_sym_false] = ACTIONS(6458), - [aux_sym__val_number_decimal_token1] = ACTIONS(6458), - [aux_sym__val_number_decimal_token2] = ACTIONS(6458), - [anon_sym_DOT2] = ACTIONS(6458), - [aux_sym__val_number_decimal_token3] = ACTIONS(6458), - [aux_sym__val_number_token1] = ACTIONS(6458), - [aux_sym__val_number_token2] = ACTIONS(6458), - [aux_sym__val_number_token3] = ACTIONS(6458), - [aux_sym__val_number_token4] = ACTIONS(6458), - [aux_sym__val_number_token5] = ACTIONS(6458), - [aux_sym__val_number_token6] = ACTIONS(6458), - [anon_sym_0b] = ACTIONS(6458), - [anon_sym_0o] = ACTIONS(6458), - [anon_sym_0x] = ACTIONS(6458), - [sym_val_date] = ACTIONS(6458), - [anon_sym_DQUOTE] = ACTIONS(6458), - [sym__str_single_quotes] = ACTIONS(6458), - [sym__str_back_ticks] = ACTIONS(6458), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6458), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6458), - [anon_sym_CARET] = ACTIONS(6458), - [anon_sym_POUND] = ACTIONS(113), - }, - [2675] = { - [sym_comment] = STATE(2675), - [anon_sym_export] = ACTIONS(6468), - [anon_sym_alias] = ACTIONS(6468), - [anon_sym_let] = ACTIONS(6468), - [anon_sym_let_DASHenv] = ACTIONS(6468), - [anon_sym_mut] = ACTIONS(6468), - [anon_sym_const] = ACTIONS(6468), - [anon_sym_SEMI] = ACTIONS(6468), - [sym_cmd_identifier] = ACTIONS(6468), - [anon_sym_LF] = ACTIONS(6470), - [anon_sym_def] = ACTIONS(6468), - [anon_sym_export_DASHenv] = ACTIONS(6468), - [anon_sym_extern] = ACTIONS(6468), - [anon_sym_module] = ACTIONS(6468), - [anon_sym_use] = ACTIONS(6468), - [anon_sym_LBRACK] = ACTIONS(6468), - [anon_sym_LPAREN] = ACTIONS(6468), - [anon_sym_RPAREN] = ACTIONS(6468), - [anon_sym_DOLLAR] = ACTIONS(6468), - [anon_sym_error] = ACTIONS(6468), - [anon_sym_DASH] = ACTIONS(6468), - [anon_sym_break] = ACTIONS(6468), - [anon_sym_continue] = ACTIONS(6468), - [anon_sym_for] = ACTIONS(6468), - [anon_sym_loop] = ACTIONS(6468), - [anon_sym_while] = ACTIONS(6468), - [anon_sym_do] = ACTIONS(6468), - [anon_sym_if] = ACTIONS(6468), - [anon_sym_match] = ACTIONS(6468), - [anon_sym_LBRACE] = ACTIONS(6468), - [anon_sym_RBRACE] = ACTIONS(6468), - [anon_sym_DOT_DOT] = ACTIONS(6468), - [anon_sym_try] = ACTIONS(6468), - [anon_sym_return] = ACTIONS(6468), - [anon_sym_source] = ACTIONS(6468), - [anon_sym_source_DASHenv] = ACTIONS(6468), - [anon_sym_register] = ACTIONS(6468), - [anon_sym_hide] = ACTIONS(6468), - [anon_sym_hide_DASHenv] = ACTIONS(6468), - [anon_sym_overlay] = ACTIONS(6468), - [anon_sym_where] = ACTIONS(6468), - [anon_sym_not] = ACTIONS(6468), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6468), - [anon_sym_DOT_DOT_LT] = ACTIONS(6468), - [anon_sym_null] = ACTIONS(6468), - [anon_sym_true] = ACTIONS(6468), - [anon_sym_false] = ACTIONS(6468), - [aux_sym__val_number_decimal_token1] = ACTIONS(6468), - [aux_sym__val_number_decimal_token2] = ACTIONS(6468), - [anon_sym_DOT2] = ACTIONS(6468), - [aux_sym__val_number_decimal_token3] = ACTIONS(6468), - [aux_sym__val_number_token1] = ACTIONS(6468), - [aux_sym__val_number_token2] = ACTIONS(6468), - [aux_sym__val_number_token3] = ACTIONS(6468), - [aux_sym__val_number_token4] = ACTIONS(6468), - [aux_sym__val_number_token5] = ACTIONS(6468), - [aux_sym__val_number_token6] = ACTIONS(6468), - [anon_sym_0b] = ACTIONS(6468), - [anon_sym_0o] = ACTIONS(6468), - [anon_sym_0x] = ACTIONS(6468), - [sym_val_date] = ACTIONS(6468), - [anon_sym_DQUOTE] = ACTIONS(6468), - [sym__str_single_quotes] = ACTIONS(6468), - [sym__str_back_ticks] = ACTIONS(6468), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6468), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6468), - [anon_sym_CARET] = ACTIONS(6468), - [anon_sym_POUND] = ACTIONS(113), - }, - [2676] = { - [sym_comment] = STATE(2676), - [anon_sym_export] = ACTIONS(6472), - [anon_sym_alias] = ACTIONS(6472), - [anon_sym_let] = ACTIONS(6472), - [anon_sym_let_DASHenv] = ACTIONS(6472), - [anon_sym_mut] = ACTIONS(6472), - [anon_sym_const] = ACTIONS(6472), - [anon_sym_SEMI] = ACTIONS(6472), - [sym_cmd_identifier] = ACTIONS(6472), - [anon_sym_LF] = ACTIONS(6474), - [anon_sym_def] = ACTIONS(6472), - [anon_sym_export_DASHenv] = ACTIONS(6472), - [anon_sym_extern] = ACTIONS(6472), - [anon_sym_module] = ACTIONS(6472), - [anon_sym_use] = ACTIONS(6472), - [anon_sym_LBRACK] = ACTIONS(6472), - [anon_sym_LPAREN] = ACTIONS(6472), - [anon_sym_RPAREN] = ACTIONS(6472), - [anon_sym_DOLLAR] = ACTIONS(6472), - [anon_sym_error] = ACTIONS(6472), - [anon_sym_DASH] = ACTIONS(6472), - [anon_sym_break] = ACTIONS(6472), - [anon_sym_continue] = ACTIONS(6472), - [anon_sym_for] = ACTIONS(6472), - [anon_sym_loop] = ACTIONS(6472), - [anon_sym_while] = ACTIONS(6472), - [anon_sym_do] = ACTIONS(6472), - [anon_sym_if] = ACTIONS(6472), - [anon_sym_match] = ACTIONS(6472), - [anon_sym_LBRACE] = ACTIONS(6472), - [anon_sym_RBRACE] = ACTIONS(6472), - [anon_sym_DOT_DOT] = ACTIONS(6472), - [anon_sym_try] = ACTIONS(6472), - [anon_sym_return] = ACTIONS(6472), - [anon_sym_source] = ACTIONS(6472), - [anon_sym_source_DASHenv] = ACTIONS(6472), - [anon_sym_register] = ACTIONS(6472), - [anon_sym_hide] = ACTIONS(6472), - [anon_sym_hide_DASHenv] = ACTIONS(6472), - [anon_sym_overlay] = ACTIONS(6472), - [anon_sym_where] = ACTIONS(6472), - [anon_sym_not] = ACTIONS(6472), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6472), - [anon_sym_DOT_DOT_LT] = ACTIONS(6472), - [anon_sym_null] = ACTIONS(6472), - [anon_sym_true] = ACTIONS(6472), - [anon_sym_false] = ACTIONS(6472), - [aux_sym__val_number_decimal_token1] = ACTIONS(6472), - [aux_sym__val_number_decimal_token2] = ACTIONS(6472), - [anon_sym_DOT2] = ACTIONS(6472), - [aux_sym__val_number_decimal_token3] = ACTIONS(6472), - [aux_sym__val_number_token1] = ACTIONS(6472), - [aux_sym__val_number_token2] = ACTIONS(6472), - [aux_sym__val_number_token3] = ACTIONS(6472), - [aux_sym__val_number_token4] = ACTIONS(6472), - [aux_sym__val_number_token5] = ACTIONS(6472), - [aux_sym__val_number_token6] = ACTIONS(6472), - [anon_sym_0b] = ACTIONS(6472), - [anon_sym_0o] = ACTIONS(6472), - [anon_sym_0x] = ACTIONS(6472), - [sym_val_date] = ACTIONS(6472), - [anon_sym_DQUOTE] = ACTIONS(6472), - [sym__str_single_quotes] = ACTIONS(6472), - [sym__str_back_ticks] = ACTIONS(6472), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6472), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6472), - [anon_sym_CARET] = ACTIONS(6472), - [anon_sym_POUND] = ACTIONS(113), - }, - [2677] = { - [sym_comment] = STATE(2677), - [anon_sym_export] = ACTIONS(6476), - [anon_sym_alias] = ACTIONS(6476), - [anon_sym_let] = ACTIONS(6476), - [anon_sym_let_DASHenv] = ACTIONS(6476), - [anon_sym_mut] = ACTIONS(6476), - [anon_sym_const] = ACTIONS(6476), - [anon_sym_SEMI] = ACTIONS(6476), - [sym_cmd_identifier] = ACTIONS(6476), - [anon_sym_LF] = ACTIONS(6478), - [anon_sym_def] = ACTIONS(6476), - [anon_sym_export_DASHenv] = ACTIONS(6476), - [anon_sym_extern] = ACTIONS(6476), - [anon_sym_module] = ACTIONS(6476), - [anon_sym_use] = ACTIONS(6476), - [anon_sym_LBRACK] = ACTIONS(6476), - [anon_sym_LPAREN] = ACTIONS(6476), - [anon_sym_RPAREN] = ACTIONS(6476), - [anon_sym_DOLLAR] = ACTIONS(6476), - [anon_sym_error] = ACTIONS(6476), - [anon_sym_DASH] = ACTIONS(6476), - [anon_sym_break] = ACTIONS(6476), - [anon_sym_continue] = ACTIONS(6476), - [anon_sym_for] = ACTIONS(6476), - [anon_sym_loop] = ACTIONS(6476), - [anon_sym_while] = ACTIONS(6476), - [anon_sym_do] = ACTIONS(6476), - [anon_sym_if] = ACTIONS(6476), - [anon_sym_match] = ACTIONS(6476), - [anon_sym_LBRACE] = ACTIONS(6476), - [anon_sym_RBRACE] = ACTIONS(6476), - [anon_sym_DOT_DOT] = ACTIONS(6476), - [anon_sym_try] = ACTIONS(6476), - [anon_sym_return] = ACTIONS(6476), - [anon_sym_source] = ACTIONS(6476), - [anon_sym_source_DASHenv] = ACTIONS(6476), - [anon_sym_register] = ACTIONS(6476), - [anon_sym_hide] = ACTIONS(6476), - [anon_sym_hide_DASHenv] = ACTIONS(6476), - [anon_sym_overlay] = ACTIONS(6476), - [anon_sym_where] = ACTIONS(6476), - [anon_sym_not] = ACTIONS(6476), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6476), - [anon_sym_DOT_DOT_LT] = ACTIONS(6476), - [anon_sym_null] = ACTIONS(6476), - [anon_sym_true] = ACTIONS(6476), - [anon_sym_false] = ACTIONS(6476), - [aux_sym__val_number_decimal_token1] = ACTIONS(6476), - [aux_sym__val_number_decimal_token2] = ACTIONS(6476), - [anon_sym_DOT2] = ACTIONS(6476), - [aux_sym__val_number_decimal_token3] = ACTIONS(6476), - [aux_sym__val_number_token1] = ACTIONS(6476), - [aux_sym__val_number_token2] = ACTIONS(6476), - [aux_sym__val_number_token3] = ACTIONS(6476), - [aux_sym__val_number_token4] = ACTIONS(6476), - [aux_sym__val_number_token5] = ACTIONS(6476), - [aux_sym__val_number_token6] = ACTIONS(6476), - [anon_sym_0b] = ACTIONS(6476), - [anon_sym_0o] = ACTIONS(6476), - [anon_sym_0x] = ACTIONS(6476), - [sym_val_date] = ACTIONS(6476), - [anon_sym_DQUOTE] = ACTIONS(6476), - [sym__str_single_quotes] = ACTIONS(6476), - [sym__str_back_ticks] = ACTIONS(6476), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6476), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6476), - [anon_sym_CARET] = ACTIONS(6476), - [anon_sym_POUND] = ACTIONS(113), - }, - [2678] = { - [sym_comment] = STATE(2678), - [anon_sym_SEMI] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(936), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_RBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_STAR_STAR] = ACTIONS(936), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(936), - [anon_sym_SLASH_SLASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(936), - [anon_sym_bit_DASHshr] = ACTIONS(936), - [anon_sym_EQ_EQ] = ACTIONS(936), - [anon_sym_BANG_EQ] = ACTIONS(936), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(936), - [anon_sym_GT_EQ] = ACTIONS(936), - [anon_sym_not_DASHin] = ACTIONS(936), - [anon_sym_starts_DASHwith] = ACTIONS(936), - [anon_sym_ends_DASHwith] = ACTIONS(936), - [anon_sym_EQ_TILDE] = ACTIONS(936), - [anon_sym_BANG_TILDE] = ACTIONS(936), - [anon_sym_bit_DASHand] = ACTIONS(936), - [anon_sym_bit_DASHxor] = ACTIONS(936), - [anon_sym_bit_DASHor] = ACTIONS(936), - [anon_sym_and] = ACTIONS(936), - [anon_sym_xor] = ACTIONS(936), - [anon_sym_or] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [aux_sym__immediate_decimal_token1] = ACTIONS(6480), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [aux_sym_unquoted_token2] = ACTIONS(6482), - [anon_sym_POUND] = ACTIONS(113), - }, - [2679] = { - [sym_comment] = STATE(2679), - [anon_sym_export] = ACTIONS(6484), - [anon_sym_alias] = ACTIONS(6484), - [anon_sym_let] = ACTIONS(6484), - [anon_sym_let_DASHenv] = ACTIONS(6484), - [anon_sym_mut] = ACTIONS(6484), - [anon_sym_const] = ACTIONS(6484), - [anon_sym_SEMI] = ACTIONS(6484), - [sym_cmd_identifier] = ACTIONS(6484), - [anon_sym_LF] = ACTIONS(6486), - [anon_sym_def] = ACTIONS(6484), - [anon_sym_export_DASHenv] = ACTIONS(6484), - [anon_sym_extern] = ACTIONS(6484), - [anon_sym_module] = ACTIONS(6484), - [anon_sym_use] = ACTIONS(6484), - [anon_sym_LBRACK] = ACTIONS(6484), - [anon_sym_LPAREN] = ACTIONS(6484), - [anon_sym_RPAREN] = ACTIONS(6484), - [anon_sym_DOLLAR] = ACTIONS(6484), - [anon_sym_error] = ACTIONS(6484), - [anon_sym_DASH] = ACTIONS(6484), - [anon_sym_break] = ACTIONS(6484), - [anon_sym_continue] = ACTIONS(6484), - [anon_sym_for] = ACTIONS(6484), - [anon_sym_loop] = ACTIONS(6484), - [anon_sym_while] = ACTIONS(6484), - [anon_sym_do] = ACTIONS(6484), - [anon_sym_if] = ACTIONS(6484), - [anon_sym_match] = ACTIONS(6484), - [anon_sym_LBRACE] = ACTIONS(6484), - [anon_sym_RBRACE] = ACTIONS(6484), - [anon_sym_DOT_DOT] = ACTIONS(6484), - [anon_sym_try] = ACTIONS(6484), - [anon_sym_return] = ACTIONS(6484), - [anon_sym_source] = ACTIONS(6484), - [anon_sym_source_DASHenv] = ACTIONS(6484), - [anon_sym_register] = ACTIONS(6484), - [anon_sym_hide] = ACTIONS(6484), - [anon_sym_hide_DASHenv] = ACTIONS(6484), - [anon_sym_overlay] = ACTIONS(6484), - [anon_sym_where] = ACTIONS(6484), - [anon_sym_not] = ACTIONS(6484), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6484), - [anon_sym_DOT_DOT_LT] = ACTIONS(6484), - [anon_sym_null] = ACTIONS(6484), - [anon_sym_true] = ACTIONS(6484), - [anon_sym_false] = ACTIONS(6484), - [aux_sym__val_number_decimal_token1] = ACTIONS(6484), - [aux_sym__val_number_decimal_token2] = ACTIONS(6484), - [anon_sym_DOT2] = ACTIONS(6484), - [aux_sym__val_number_decimal_token3] = ACTIONS(6484), - [aux_sym__val_number_token1] = ACTIONS(6484), - [aux_sym__val_number_token2] = ACTIONS(6484), - [aux_sym__val_number_token3] = ACTIONS(6484), - [aux_sym__val_number_token4] = ACTIONS(6484), - [aux_sym__val_number_token5] = ACTIONS(6484), - [aux_sym__val_number_token6] = ACTIONS(6484), - [anon_sym_0b] = ACTIONS(6484), - [anon_sym_0o] = ACTIONS(6484), - [anon_sym_0x] = ACTIONS(6484), - [sym_val_date] = ACTIONS(6484), - [anon_sym_DQUOTE] = ACTIONS(6484), - [sym__str_single_quotes] = ACTIONS(6484), - [sym__str_back_ticks] = ACTIONS(6484), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6484), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6484), - [anon_sym_CARET] = ACTIONS(6484), - [anon_sym_POUND] = ACTIONS(113), - }, - [2680] = { - [sym_comment] = STATE(2680), - [anon_sym_export] = ACTIONS(6484), - [anon_sym_alias] = ACTIONS(6484), - [anon_sym_let] = ACTIONS(6484), - [anon_sym_let_DASHenv] = ACTIONS(6484), - [anon_sym_mut] = ACTIONS(6484), - [anon_sym_const] = ACTIONS(6484), - [anon_sym_SEMI] = ACTIONS(6484), - [sym_cmd_identifier] = ACTIONS(6484), - [anon_sym_LF] = ACTIONS(6486), - [anon_sym_def] = ACTIONS(6484), - [anon_sym_export_DASHenv] = ACTIONS(6484), - [anon_sym_extern] = ACTIONS(6484), - [anon_sym_module] = ACTIONS(6484), - [anon_sym_use] = ACTIONS(6484), - [anon_sym_LBRACK] = ACTIONS(6484), - [anon_sym_LPAREN] = ACTIONS(6484), - [anon_sym_RPAREN] = ACTIONS(6484), - [anon_sym_DOLLAR] = ACTIONS(6484), - [anon_sym_error] = ACTIONS(6484), - [anon_sym_DASH] = ACTIONS(6484), - [anon_sym_break] = ACTIONS(6484), - [anon_sym_continue] = ACTIONS(6484), - [anon_sym_for] = ACTIONS(6484), - [anon_sym_loop] = ACTIONS(6484), - [anon_sym_while] = ACTIONS(6484), - [anon_sym_do] = ACTIONS(6484), - [anon_sym_if] = ACTIONS(6484), - [anon_sym_match] = ACTIONS(6484), - [anon_sym_LBRACE] = ACTIONS(6484), - [anon_sym_RBRACE] = ACTIONS(6484), - [anon_sym_DOT_DOT] = ACTIONS(6484), - [anon_sym_try] = ACTIONS(6484), - [anon_sym_return] = ACTIONS(6484), - [anon_sym_source] = ACTIONS(6484), - [anon_sym_source_DASHenv] = ACTIONS(6484), - [anon_sym_register] = ACTIONS(6484), - [anon_sym_hide] = ACTIONS(6484), - [anon_sym_hide_DASHenv] = ACTIONS(6484), - [anon_sym_overlay] = ACTIONS(6484), - [anon_sym_where] = ACTIONS(6484), - [anon_sym_not] = ACTIONS(6484), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6484), - [anon_sym_DOT_DOT_LT] = ACTIONS(6484), - [anon_sym_null] = ACTIONS(6484), - [anon_sym_true] = ACTIONS(6484), - [anon_sym_false] = ACTIONS(6484), - [aux_sym__val_number_decimal_token1] = ACTIONS(6484), - [aux_sym__val_number_decimal_token2] = ACTIONS(6484), - [anon_sym_DOT2] = ACTIONS(6484), - [aux_sym__val_number_decimal_token3] = ACTIONS(6484), - [aux_sym__val_number_token1] = ACTIONS(6484), - [aux_sym__val_number_token2] = ACTIONS(6484), - [aux_sym__val_number_token3] = ACTIONS(6484), - [aux_sym__val_number_token4] = ACTIONS(6484), - [aux_sym__val_number_token5] = ACTIONS(6484), - [aux_sym__val_number_token6] = ACTIONS(6484), - [anon_sym_0b] = ACTIONS(6484), - [anon_sym_0o] = ACTIONS(6484), - [anon_sym_0x] = ACTIONS(6484), - [sym_val_date] = ACTIONS(6484), - [anon_sym_DQUOTE] = ACTIONS(6484), - [sym__str_single_quotes] = ACTIONS(6484), - [sym__str_back_ticks] = ACTIONS(6484), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6484), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6484), - [anon_sym_CARET] = ACTIONS(6484), - [anon_sym_POUND] = ACTIONS(113), - }, - [2681] = { - [sym_comment] = STATE(2681), - [anon_sym_export] = ACTIONS(6488), - [anon_sym_alias] = ACTIONS(6488), - [anon_sym_let] = ACTIONS(6488), - [anon_sym_let_DASHenv] = ACTIONS(6488), - [anon_sym_mut] = ACTIONS(6488), - [anon_sym_const] = ACTIONS(6488), - [anon_sym_SEMI] = ACTIONS(6488), - [sym_cmd_identifier] = ACTIONS(6488), - [anon_sym_LF] = ACTIONS(6490), - [anon_sym_def] = ACTIONS(6488), - [anon_sym_export_DASHenv] = ACTIONS(6488), - [anon_sym_extern] = ACTIONS(6488), - [anon_sym_module] = ACTIONS(6488), - [anon_sym_use] = ACTIONS(6488), - [anon_sym_LBRACK] = ACTIONS(6488), - [anon_sym_LPAREN] = ACTIONS(6488), - [anon_sym_RPAREN] = ACTIONS(6488), - [anon_sym_DOLLAR] = ACTIONS(6488), - [anon_sym_error] = ACTIONS(6488), - [anon_sym_DASH] = ACTIONS(6488), - [anon_sym_break] = ACTIONS(6488), - [anon_sym_continue] = ACTIONS(6488), - [anon_sym_for] = ACTIONS(6488), - [anon_sym_loop] = ACTIONS(6488), - [anon_sym_while] = ACTIONS(6488), - [anon_sym_do] = ACTIONS(6488), - [anon_sym_if] = ACTIONS(6488), - [anon_sym_match] = ACTIONS(6488), - [anon_sym_LBRACE] = ACTIONS(6488), - [anon_sym_RBRACE] = ACTIONS(6488), - [anon_sym_DOT_DOT] = ACTIONS(6488), - [anon_sym_try] = ACTIONS(6488), - [anon_sym_return] = ACTIONS(6488), - [anon_sym_source] = ACTIONS(6488), - [anon_sym_source_DASHenv] = ACTIONS(6488), - [anon_sym_register] = ACTIONS(6488), - [anon_sym_hide] = ACTIONS(6488), - [anon_sym_hide_DASHenv] = ACTIONS(6488), - [anon_sym_overlay] = ACTIONS(6488), - [anon_sym_where] = ACTIONS(6488), - [anon_sym_not] = ACTIONS(6488), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6488), - [anon_sym_DOT_DOT_LT] = ACTIONS(6488), - [anon_sym_null] = ACTIONS(6488), - [anon_sym_true] = ACTIONS(6488), - [anon_sym_false] = ACTIONS(6488), - [aux_sym__val_number_decimal_token1] = ACTIONS(6488), - [aux_sym__val_number_decimal_token2] = ACTIONS(6488), - [anon_sym_DOT2] = ACTIONS(6488), - [aux_sym__val_number_decimal_token3] = ACTIONS(6488), - [aux_sym__val_number_token1] = ACTIONS(6488), - [aux_sym__val_number_token2] = ACTIONS(6488), - [aux_sym__val_number_token3] = ACTIONS(6488), - [aux_sym__val_number_token4] = ACTIONS(6488), - [aux_sym__val_number_token5] = ACTIONS(6488), - [aux_sym__val_number_token6] = ACTIONS(6488), - [anon_sym_0b] = ACTIONS(6488), - [anon_sym_0o] = ACTIONS(6488), - [anon_sym_0x] = ACTIONS(6488), - [sym_val_date] = ACTIONS(6488), - [anon_sym_DQUOTE] = ACTIONS(6488), - [sym__str_single_quotes] = ACTIONS(6488), - [sym__str_back_ticks] = ACTIONS(6488), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6488), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6488), - [anon_sym_CARET] = ACTIONS(6488), - [anon_sym_POUND] = ACTIONS(113), - }, - [2682] = { - [sym_comment] = STATE(2682), - [anon_sym_export] = ACTIONS(6488), - [anon_sym_alias] = ACTIONS(6488), - [anon_sym_let] = ACTIONS(6488), - [anon_sym_let_DASHenv] = ACTIONS(6488), - [anon_sym_mut] = ACTIONS(6488), - [anon_sym_const] = ACTIONS(6488), - [anon_sym_SEMI] = ACTIONS(6488), - [sym_cmd_identifier] = ACTIONS(6488), - [anon_sym_LF] = ACTIONS(6490), - [anon_sym_def] = ACTIONS(6488), - [anon_sym_export_DASHenv] = ACTIONS(6488), - [anon_sym_extern] = ACTIONS(6488), - [anon_sym_module] = ACTIONS(6488), - [anon_sym_use] = ACTIONS(6488), - [anon_sym_LBRACK] = ACTIONS(6488), - [anon_sym_LPAREN] = ACTIONS(6488), - [anon_sym_RPAREN] = ACTIONS(6488), - [anon_sym_DOLLAR] = ACTIONS(6488), - [anon_sym_error] = ACTIONS(6488), - [anon_sym_DASH] = ACTIONS(6488), - [anon_sym_break] = ACTIONS(6488), - [anon_sym_continue] = ACTIONS(6488), - [anon_sym_for] = ACTIONS(6488), - [anon_sym_loop] = ACTIONS(6488), - [anon_sym_while] = ACTIONS(6488), - [anon_sym_do] = ACTIONS(6488), - [anon_sym_if] = ACTIONS(6488), - [anon_sym_match] = ACTIONS(6488), - [anon_sym_LBRACE] = ACTIONS(6488), - [anon_sym_RBRACE] = ACTIONS(6488), - [anon_sym_DOT_DOT] = ACTIONS(6488), - [anon_sym_try] = ACTIONS(6488), - [anon_sym_return] = ACTIONS(6488), - [anon_sym_source] = ACTIONS(6488), - [anon_sym_source_DASHenv] = ACTIONS(6488), - [anon_sym_register] = ACTIONS(6488), - [anon_sym_hide] = ACTIONS(6488), - [anon_sym_hide_DASHenv] = ACTIONS(6488), - [anon_sym_overlay] = ACTIONS(6488), - [anon_sym_where] = ACTIONS(6488), - [anon_sym_not] = ACTIONS(6488), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6488), - [anon_sym_DOT_DOT_LT] = ACTIONS(6488), - [anon_sym_null] = ACTIONS(6488), - [anon_sym_true] = ACTIONS(6488), - [anon_sym_false] = ACTIONS(6488), - [aux_sym__val_number_decimal_token1] = ACTIONS(6488), - [aux_sym__val_number_decimal_token2] = ACTIONS(6488), - [anon_sym_DOT2] = ACTIONS(6488), - [aux_sym__val_number_decimal_token3] = ACTIONS(6488), - [aux_sym__val_number_token1] = ACTIONS(6488), - [aux_sym__val_number_token2] = ACTIONS(6488), - [aux_sym__val_number_token3] = ACTIONS(6488), - [aux_sym__val_number_token4] = ACTIONS(6488), - [aux_sym__val_number_token5] = ACTIONS(6488), - [aux_sym__val_number_token6] = ACTIONS(6488), - [anon_sym_0b] = ACTIONS(6488), - [anon_sym_0o] = ACTIONS(6488), - [anon_sym_0x] = ACTIONS(6488), - [sym_val_date] = ACTIONS(6488), - [anon_sym_DQUOTE] = ACTIONS(6488), - [sym__str_single_quotes] = ACTIONS(6488), - [sym__str_back_ticks] = ACTIONS(6488), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6488), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6488), - [anon_sym_CARET] = ACTIONS(6488), - [anon_sym_POUND] = ACTIONS(113), - }, - [2683] = { - [sym_comment] = STATE(2683), - [anon_sym_export] = ACTIONS(6492), - [anon_sym_alias] = ACTIONS(6492), - [anon_sym_let] = ACTIONS(6492), - [anon_sym_let_DASHenv] = ACTIONS(6492), - [anon_sym_mut] = ACTIONS(6492), - [anon_sym_const] = ACTIONS(6492), - [anon_sym_SEMI] = ACTIONS(6492), - [sym_cmd_identifier] = ACTIONS(6492), - [anon_sym_LF] = ACTIONS(6494), - [anon_sym_def] = ACTIONS(6492), - [anon_sym_export_DASHenv] = ACTIONS(6492), - [anon_sym_extern] = ACTIONS(6492), - [anon_sym_module] = ACTIONS(6492), - [anon_sym_use] = ACTIONS(6492), - [anon_sym_LBRACK] = ACTIONS(6492), - [anon_sym_LPAREN] = ACTIONS(6492), - [anon_sym_RPAREN] = ACTIONS(6492), - [anon_sym_DOLLAR] = ACTIONS(6492), - [anon_sym_error] = ACTIONS(6492), - [anon_sym_DASH] = ACTIONS(6492), - [anon_sym_break] = ACTIONS(6492), - [anon_sym_continue] = ACTIONS(6492), - [anon_sym_for] = ACTIONS(6492), - [anon_sym_loop] = ACTIONS(6492), - [anon_sym_while] = ACTIONS(6492), - [anon_sym_do] = ACTIONS(6492), - [anon_sym_if] = ACTIONS(6492), - [anon_sym_match] = ACTIONS(6492), - [anon_sym_LBRACE] = ACTIONS(6492), - [anon_sym_RBRACE] = ACTIONS(6492), - [anon_sym_DOT_DOT] = ACTIONS(6492), - [anon_sym_try] = ACTIONS(6492), - [anon_sym_return] = ACTIONS(6492), - [anon_sym_source] = ACTIONS(6492), - [anon_sym_source_DASHenv] = ACTIONS(6492), - [anon_sym_register] = ACTIONS(6492), - [anon_sym_hide] = ACTIONS(6492), - [anon_sym_hide_DASHenv] = ACTIONS(6492), - [anon_sym_overlay] = ACTIONS(6492), - [anon_sym_where] = ACTIONS(6492), - [anon_sym_not] = ACTIONS(6492), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6492), - [anon_sym_DOT_DOT_LT] = ACTIONS(6492), - [anon_sym_null] = ACTIONS(6492), - [anon_sym_true] = ACTIONS(6492), - [anon_sym_false] = ACTIONS(6492), - [aux_sym__val_number_decimal_token1] = ACTIONS(6492), - [aux_sym__val_number_decimal_token2] = ACTIONS(6492), - [anon_sym_DOT2] = ACTIONS(6492), - [aux_sym__val_number_decimal_token3] = ACTIONS(6492), - [aux_sym__val_number_token1] = ACTIONS(6492), - [aux_sym__val_number_token2] = ACTIONS(6492), - [aux_sym__val_number_token3] = ACTIONS(6492), - [aux_sym__val_number_token4] = ACTIONS(6492), - [aux_sym__val_number_token5] = ACTIONS(6492), - [aux_sym__val_number_token6] = ACTIONS(6492), - [anon_sym_0b] = ACTIONS(6492), - [anon_sym_0o] = ACTIONS(6492), - [anon_sym_0x] = ACTIONS(6492), - [sym_val_date] = ACTIONS(6492), - [anon_sym_DQUOTE] = ACTIONS(6492), - [sym__str_single_quotes] = ACTIONS(6492), - [sym__str_back_ticks] = ACTIONS(6492), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6492), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6492), - [anon_sym_CARET] = ACTIONS(6492), - [anon_sym_POUND] = ACTIONS(113), - }, - [2684] = { - [sym_comment] = STATE(2684), - [ts_builtin_sym_end] = ACTIONS(1174), - [anon_sym_export] = ACTIONS(1172), - [anon_sym_alias] = ACTIONS(1172), - [anon_sym_let] = ACTIONS(1172), - [anon_sym_let_DASHenv] = ACTIONS(1172), - [anon_sym_mut] = ACTIONS(1172), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(1172), - [sym_cmd_identifier] = ACTIONS(1172), - [anon_sym_LF] = ACTIONS(1174), - [anon_sym_def] = ACTIONS(1172), - [anon_sym_export_DASHenv] = ACTIONS(1172), - [anon_sym_extern] = ACTIONS(1172), - [anon_sym_module] = ACTIONS(1172), - [anon_sym_use] = ACTIONS(1172), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_LPAREN] = ACTIONS(1172), - [anon_sym_DOLLAR] = ACTIONS(1172), - [anon_sym_error] = ACTIONS(1172), - [anon_sym_DASH] = ACTIONS(1172), - [anon_sym_break] = ACTIONS(1172), - [anon_sym_continue] = ACTIONS(1172), - [anon_sym_for] = ACTIONS(1172), - [anon_sym_loop] = ACTIONS(1172), - [anon_sym_while] = ACTIONS(1172), - [anon_sym_do] = ACTIONS(1172), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_match] = ACTIONS(1172), - [anon_sym_LBRACE] = ACTIONS(1172), - [anon_sym_DOT_DOT] = ACTIONS(1172), - [anon_sym_try] = ACTIONS(1172), - [anon_sym_return] = ACTIONS(1172), - [anon_sym_source] = ACTIONS(1172), - [anon_sym_source_DASHenv] = ACTIONS(1172), - [anon_sym_register] = ACTIONS(1172), - [anon_sym_hide] = ACTIONS(1172), - [anon_sym_hide_DASHenv] = ACTIONS(1172), - [anon_sym_overlay] = ACTIONS(1172), - [anon_sym_STAR] = ACTIONS(1172), - [anon_sym_where] = ACTIONS(1172), - [anon_sym_not] = ACTIONS(1172), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1172), - [anon_sym_DOT_DOT_LT] = ACTIONS(1172), - [anon_sym_null] = ACTIONS(1172), - [anon_sym_true] = ACTIONS(1172), - [anon_sym_false] = ACTIONS(1172), - [aux_sym__val_number_decimal_token1] = ACTIONS(1172), - [aux_sym__val_number_decimal_token2] = ACTIONS(1172), - [anon_sym_DOT2] = ACTIONS(1172), - [aux_sym__val_number_decimal_token3] = ACTIONS(1172), - [aux_sym__val_number_token1] = ACTIONS(1172), - [aux_sym__val_number_token2] = ACTIONS(1172), - [aux_sym__val_number_token3] = ACTIONS(1172), - [aux_sym__val_number_token4] = ACTIONS(1172), - [aux_sym__val_number_token5] = ACTIONS(1172), - [aux_sym__val_number_token6] = ACTIONS(1172), - [anon_sym_0b] = ACTIONS(1172), - [anon_sym_0o] = ACTIONS(1172), - [anon_sym_0x] = ACTIONS(1172), - [sym_val_date] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(1172), - [sym__str_single_quotes] = ACTIONS(1172), - [sym__str_back_ticks] = ACTIONS(1172), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1172), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1172), - [anon_sym_CARET] = ACTIONS(1172), - [anon_sym_POUND] = ACTIONS(113), - }, - [2685] = { - [sym_comment] = STATE(2685), - [anon_sym_export] = ACTIONS(6496), - [anon_sym_alias] = ACTIONS(6496), - [anon_sym_let] = ACTIONS(6496), - [anon_sym_let_DASHenv] = ACTIONS(6496), - [anon_sym_mut] = ACTIONS(6496), - [anon_sym_const] = ACTIONS(6496), - [anon_sym_SEMI] = ACTIONS(6496), - [sym_cmd_identifier] = ACTIONS(6496), - [anon_sym_LF] = ACTIONS(6498), - [anon_sym_def] = ACTIONS(6496), - [anon_sym_export_DASHenv] = ACTIONS(6496), - [anon_sym_extern] = ACTIONS(6496), - [anon_sym_module] = ACTIONS(6496), - [anon_sym_use] = ACTIONS(6496), - [anon_sym_LBRACK] = ACTIONS(6496), - [anon_sym_LPAREN] = ACTIONS(6496), - [anon_sym_RPAREN] = ACTIONS(6496), - [anon_sym_DOLLAR] = ACTIONS(6496), - [anon_sym_error] = ACTIONS(6496), - [anon_sym_DASH] = ACTIONS(6496), - [anon_sym_break] = ACTIONS(6496), - [anon_sym_continue] = ACTIONS(6496), - [anon_sym_for] = ACTIONS(6496), - [anon_sym_loop] = ACTIONS(6496), - [anon_sym_while] = ACTIONS(6496), - [anon_sym_do] = ACTIONS(6496), - [anon_sym_if] = ACTIONS(6496), - [anon_sym_match] = ACTIONS(6496), - [anon_sym_LBRACE] = ACTIONS(6496), - [anon_sym_RBRACE] = ACTIONS(6496), - [anon_sym_DOT_DOT] = ACTIONS(6496), - [anon_sym_try] = ACTIONS(6496), - [anon_sym_return] = ACTIONS(6496), - [anon_sym_source] = ACTIONS(6496), - [anon_sym_source_DASHenv] = ACTIONS(6496), - [anon_sym_register] = ACTIONS(6496), - [anon_sym_hide] = ACTIONS(6496), - [anon_sym_hide_DASHenv] = ACTIONS(6496), - [anon_sym_overlay] = ACTIONS(6496), - [anon_sym_where] = ACTIONS(6496), - [anon_sym_not] = ACTIONS(6496), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6496), - [anon_sym_DOT_DOT_LT] = ACTIONS(6496), - [anon_sym_null] = ACTIONS(6496), - [anon_sym_true] = ACTIONS(6496), - [anon_sym_false] = ACTIONS(6496), - [aux_sym__val_number_decimal_token1] = ACTIONS(6496), - [aux_sym__val_number_decimal_token2] = ACTIONS(6496), - [anon_sym_DOT2] = ACTIONS(6496), - [aux_sym__val_number_decimal_token3] = ACTIONS(6496), - [aux_sym__val_number_token1] = ACTIONS(6496), - [aux_sym__val_number_token2] = ACTIONS(6496), - [aux_sym__val_number_token3] = ACTIONS(6496), - [aux_sym__val_number_token4] = ACTIONS(6496), - [aux_sym__val_number_token5] = ACTIONS(6496), - [aux_sym__val_number_token6] = ACTIONS(6496), - [anon_sym_0b] = ACTIONS(6496), - [anon_sym_0o] = ACTIONS(6496), - [anon_sym_0x] = ACTIONS(6496), - [sym_val_date] = ACTIONS(6496), - [anon_sym_DQUOTE] = ACTIONS(6496), - [sym__str_single_quotes] = ACTIONS(6496), - [sym__str_back_ticks] = ACTIONS(6496), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6496), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6496), - [anon_sym_CARET] = ACTIONS(6496), - [anon_sym_POUND] = ACTIONS(113), - }, - [2686] = { - [sym_comment] = STATE(2686), - [anon_sym_export] = ACTIONS(3866), - [anon_sym_alias] = ACTIONS(3866), - [anon_sym_let] = ACTIONS(3866), - [anon_sym_let_DASHenv] = ACTIONS(3866), - [anon_sym_mut] = ACTIONS(3866), - [anon_sym_const] = ACTIONS(3866), - [anon_sym_SEMI] = ACTIONS(3866), - [sym_cmd_identifier] = ACTIONS(3866), - [anon_sym_LF] = ACTIONS(3868), - [anon_sym_def] = ACTIONS(3866), - [anon_sym_export_DASHenv] = ACTIONS(3866), - [anon_sym_extern] = ACTIONS(3866), - [anon_sym_module] = ACTIONS(3866), - [anon_sym_use] = ACTIONS(3866), - [anon_sym_LBRACK] = ACTIONS(3866), - [anon_sym_LPAREN] = ACTIONS(3866), - [anon_sym_RPAREN] = ACTIONS(3866), - [anon_sym_DOLLAR] = ACTIONS(3866), - [anon_sym_error] = ACTIONS(3866), - [anon_sym_DASH] = ACTIONS(3866), - [anon_sym_break] = ACTIONS(3866), - [anon_sym_continue] = ACTIONS(3866), - [anon_sym_for] = ACTIONS(3866), - [anon_sym_loop] = ACTIONS(3866), - [anon_sym_while] = ACTIONS(3866), - [anon_sym_do] = ACTIONS(3866), - [anon_sym_if] = ACTIONS(3866), - [anon_sym_match] = ACTIONS(3866), - [anon_sym_LBRACE] = ACTIONS(3866), - [anon_sym_RBRACE] = ACTIONS(3866), - [anon_sym_DOT_DOT] = ACTIONS(3866), - [anon_sym_try] = ACTIONS(3866), - [anon_sym_return] = ACTIONS(3866), - [anon_sym_source] = ACTIONS(3866), - [anon_sym_source_DASHenv] = ACTIONS(3866), - [anon_sym_register] = ACTIONS(3866), - [anon_sym_hide] = ACTIONS(3866), - [anon_sym_hide_DASHenv] = ACTIONS(3866), - [anon_sym_overlay] = ACTIONS(3866), - [anon_sym_where] = ACTIONS(3866), - [anon_sym_not] = ACTIONS(3866), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3866), - [anon_sym_DOT_DOT_LT] = ACTIONS(3866), - [anon_sym_null] = ACTIONS(3866), - [anon_sym_true] = ACTIONS(3866), - [anon_sym_false] = ACTIONS(3866), - [aux_sym__val_number_decimal_token1] = ACTIONS(3866), - [aux_sym__val_number_decimal_token2] = ACTIONS(3866), - [anon_sym_DOT2] = ACTIONS(3866), - [aux_sym__val_number_decimal_token3] = ACTIONS(3866), - [aux_sym__val_number_token1] = ACTIONS(3866), - [aux_sym__val_number_token2] = ACTIONS(3866), - [aux_sym__val_number_token3] = ACTIONS(3866), - [aux_sym__val_number_token4] = ACTIONS(3866), - [aux_sym__val_number_token5] = ACTIONS(3866), - [aux_sym__val_number_token6] = ACTIONS(3866), - [anon_sym_0b] = ACTIONS(3866), - [anon_sym_0o] = ACTIONS(3866), - [anon_sym_0x] = ACTIONS(3866), - [sym_val_date] = ACTIONS(3866), - [anon_sym_DQUOTE] = ACTIONS(3866), - [sym__str_single_quotes] = ACTIONS(3866), - [sym__str_back_ticks] = ACTIONS(3866), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3866), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), - [anon_sym_CARET] = ACTIONS(3866), - [anon_sym_POUND] = ACTIONS(113), - }, - [2687] = { - [sym_comment] = STATE(2687), - [anon_sym_export] = ACTIONS(1168), - [anon_sym_alias] = ACTIONS(1168), - [anon_sym_let] = ACTIONS(1168), - [anon_sym_let_DASHenv] = ACTIONS(1168), - [anon_sym_mut] = ACTIONS(1168), - [anon_sym_const] = ACTIONS(1168), - [anon_sym_SEMI] = ACTIONS(1168), - [sym_cmd_identifier] = ACTIONS(1168), - [anon_sym_LF] = ACTIONS(1170), - [anon_sym_def] = ACTIONS(1168), - [anon_sym_export_DASHenv] = ACTIONS(1168), - [anon_sym_extern] = ACTIONS(1168), - [anon_sym_module] = ACTIONS(1168), - [anon_sym_use] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_RPAREN] = ACTIONS(1168), - [anon_sym_DOLLAR] = ACTIONS(1168), - [anon_sym_error] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1168), - [anon_sym_break] = ACTIONS(1168), - [anon_sym_continue] = ACTIONS(1168), - [anon_sym_for] = ACTIONS(1168), - [anon_sym_loop] = ACTIONS(1168), - [anon_sym_while] = ACTIONS(1168), - [anon_sym_do] = ACTIONS(1168), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_match] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1168), - [anon_sym_RBRACE] = ACTIONS(1168), - [anon_sym_DOT_DOT] = ACTIONS(1168), - [anon_sym_try] = ACTIONS(1168), - [anon_sym_return] = ACTIONS(1168), - [anon_sym_source] = ACTIONS(1168), - [anon_sym_source_DASHenv] = ACTIONS(1168), - [anon_sym_register] = ACTIONS(1168), - [anon_sym_hide] = ACTIONS(1168), - [anon_sym_hide_DASHenv] = ACTIONS(1168), - [anon_sym_overlay] = ACTIONS(1168), - [anon_sym_where] = ACTIONS(1168), - [anon_sym_not] = ACTIONS(1168), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1168), - [anon_sym_DOT_DOT_LT] = ACTIONS(1168), - [anon_sym_null] = ACTIONS(1168), - [anon_sym_true] = ACTIONS(1168), - [anon_sym_false] = ACTIONS(1168), - [aux_sym__val_number_decimal_token1] = ACTIONS(1168), - [aux_sym__val_number_decimal_token2] = ACTIONS(1168), - [anon_sym_DOT2] = ACTIONS(1168), - [aux_sym__val_number_decimal_token3] = ACTIONS(1168), - [aux_sym__val_number_token1] = ACTIONS(1168), - [aux_sym__val_number_token2] = ACTIONS(1168), - [aux_sym__val_number_token3] = ACTIONS(1168), - [aux_sym__val_number_token4] = ACTIONS(1168), - [aux_sym__val_number_token5] = ACTIONS(1168), - [aux_sym__val_number_token6] = ACTIONS(1168), - [anon_sym_0b] = ACTIONS(1168), - [anon_sym_0o] = ACTIONS(1168), - [anon_sym_0x] = ACTIONS(1168), - [sym_val_date] = ACTIONS(1168), - [anon_sym_DQUOTE] = ACTIONS(1168), - [sym__str_single_quotes] = ACTIONS(1168), - [sym__str_back_ticks] = ACTIONS(1168), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1168), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1168), - [anon_sym_CARET] = ACTIONS(1168), - [anon_sym_POUND] = ACTIONS(113), - }, - [2688] = { - [sym_comment] = STATE(2688), - [anon_sym_LBRACK] = ACTIONS(925), - [anon_sym_LPAREN] = ACTIONS(925), - [anon_sym_DOLLAR] = ACTIONS(923), - [anon_sym_GT] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_in] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_DOT_DOT] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_STAR_STAR] = ACTIONS(925), - [anon_sym_PLUS_PLUS] = ACTIONS(925), - [anon_sym_SLASH] = ACTIONS(923), - [anon_sym_mod] = ACTIONS(925), - [anon_sym_SLASH_SLASH] = ACTIONS(925), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_bit_DASHshl] = ACTIONS(925), - [anon_sym_bit_DASHshr] = ACTIONS(925), - [anon_sym_EQ_EQ] = ACTIONS(925), - [anon_sym_BANG_EQ] = ACTIONS(925), - [anon_sym_LT2] = ACTIONS(923), - [anon_sym_LT_EQ] = ACTIONS(925), - [anon_sym_GT_EQ] = ACTIONS(925), - [anon_sym_not_DASHin] = ACTIONS(925), - [anon_sym_starts_DASHwith] = ACTIONS(925), - [anon_sym_ends_DASHwith] = ACTIONS(925), - [anon_sym_EQ_TILDE] = ACTIONS(925), - [anon_sym_BANG_TILDE] = ACTIONS(925), - [anon_sym_bit_DASHand] = ACTIONS(925), - [anon_sym_bit_DASHxor] = ACTIONS(925), - [anon_sym_bit_DASHor] = ACTIONS(925), - [anon_sym_and] = ACTIONS(925), - [anon_sym_xor] = ACTIONS(925), - [anon_sym_or] = ACTIONS(925), - [anon_sym_not] = ACTIONS(923), - [anon_sym_DOT_DOT2] = ACTIONS(923), - [anon_sym_DOT] = ACTIONS(6500), - [anon_sym_DOT_DOT_EQ] = ACTIONS(923), - [anon_sym_DOT_DOT_LT] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(925), - [anon_sym_DOT_DOT_LT2] = ACTIONS(925), - [aux_sym__immediate_decimal_token2] = ACTIONS(6398), - [anon_sym_null] = ACTIONS(925), - [anon_sym_true] = ACTIONS(925), - [anon_sym_false] = ACTIONS(925), - [aux_sym__val_number_decimal_token1] = ACTIONS(923), - [aux_sym__val_number_decimal_token2] = ACTIONS(925), - [anon_sym_DOT2] = ACTIONS(923), - [aux_sym__val_number_decimal_token3] = ACTIONS(925), - [aux_sym__val_number_token1] = ACTIONS(925), - [aux_sym__val_number_token2] = ACTIONS(925), - [aux_sym__val_number_token3] = ACTIONS(925), - [aux_sym__val_number_token4] = ACTIONS(925), - [aux_sym__val_number_token5] = ACTIONS(925), - [aux_sym__val_number_token6] = ACTIONS(925), - [anon_sym_0b] = ACTIONS(923), - [sym_filesize_unit] = ACTIONS(923), - [sym_duration_unit] = ACTIONS(925), - [anon_sym_0o] = ACTIONS(923), - [anon_sym_0x] = ACTIONS(923), - [sym_val_date] = ACTIONS(925), - [anon_sym_DQUOTE] = ACTIONS(925), - [sym__str_single_quotes] = ACTIONS(925), - [sym__str_back_ticks] = ACTIONS(925), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(925), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(925), - [aux_sym_unquoted_token5] = ACTIONS(923), - [anon_sym_POUND] = ACTIONS(3), - }, - [2689] = { - [sym_comment] = STATE(2689), - [anon_sym_export] = ACTIONS(6503), - [anon_sym_alias] = ACTIONS(6503), - [anon_sym_let] = ACTIONS(6503), - [anon_sym_let_DASHenv] = ACTIONS(6503), - [anon_sym_mut] = ACTIONS(6503), - [anon_sym_const] = ACTIONS(6503), - [anon_sym_SEMI] = ACTIONS(6503), - [sym_cmd_identifier] = ACTIONS(6503), - [anon_sym_LF] = ACTIONS(6505), - [anon_sym_def] = ACTIONS(6503), - [anon_sym_export_DASHenv] = ACTIONS(6503), - [anon_sym_extern] = ACTIONS(6503), - [anon_sym_module] = ACTIONS(6503), - [anon_sym_use] = ACTIONS(6503), - [anon_sym_LBRACK] = ACTIONS(6503), - [anon_sym_LPAREN] = ACTIONS(6503), - [anon_sym_RPAREN] = ACTIONS(6503), - [anon_sym_DOLLAR] = ACTIONS(6503), - [anon_sym_error] = ACTIONS(6503), - [anon_sym_DASH] = ACTIONS(6503), - [anon_sym_break] = ACTIONS(6503), - [anon_sym_continue] = ACTIONS(6503), - [anon_sym_for] = ACTIONS(6503), - [anon_sym_loop] = ACTIONS(6503), - [anon_sym_while] = ACTIONS(6503), - [anon_sym_do] = ACTIONS(6503), - [anon_sym_if] = ACTIONS(6503), - [anon_sym_match] = ACTIONS(6503), - [anon_sym_LBRACE] = ACTIONS(6503), - [anon_sym_RBRACE] = ACTIONS(6503), - [anon_sym_DOT_DOT] = ACTIONS(6503), - [anon_sym_try] = ACTIONS(6503), - [anon_sym_return] = ACTIONS(6503), - [anon_sym_source] = ACTIONS(6503), - [anon_sym_source_DASHenv] = ACTIONS(6503), - [anon_sym_register] = ACTIONS(6503), - [anon_sym_hide] = ACTIONS(6503), - [anon_sym_hide_DASHenv] = ACTIONS(6503), - [anon_sym_overlay] = ACTIONS(6503), - [anon_sym_where] = ACTIONS(6503), - [anon_sym_not] = ACTIONS(6503), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6503), - [anon_sym_DOT_DOT_LT] = ACTIONS(6503), - [anon_sym_null] = ACTIONS(6503), - [anon_sym_true] = ACTIONS(6503), - [anon_sym_false] = ACTIONS(6503), - [aux_sym__val_number_decimal_token1] = ACTIONS(6503), - [aux_sym__val_number_decimal_token2] = ACTIONS(6503), - [anon_sym_DOT2] = ACTIONS(6503), - [aux_sym__val_number_decimal_token3] = ACTIONS(6503), - [aux_sym__val_number_token1] = ACTIONS(6503), - [aux_sym__val_number_token2] = ACTIONS(6503), - [aux_sym__val_number_token3] = ACTIONS(6503), - [aux_sym__val_number_token4] = ACTIONS(6503), - [aux_sym__val_number_token5] = ACTIONS(6503), - [aux_sym__val_number_token6] = ACTIONS(6503), - [anon_sym_0b] = ACTIONS(6503), - [anon_sym_0o] = ACTIONS(6503), - [anon_sym_0x] = ACTIONS(6503), - [sym_val_date] = ACTIONS(6503), - [anon_sym_DQUOTE] = ACTIONS(6503), - [sym__str_single_quotes] = ACTIONS(6503), - [sym__str_back_ticks] = ACTIONS(6503), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6503), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6503), - [anon_sym_CARET] = ACTIONS(6503), - [anon_sym_POUND] = ACTIONS(113), - }, - [2690] = { - [sym_comment] = STATE(2690), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_LF] = ACTIONS(1061), - [anon_sym_LBRACK] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_DASH_DASH] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(1059), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_QMARK2] = ACTIONS(1059), - [anon_sym_STAR_STAR] = ACTIONS(1059), - [anon_sym_PLUS_PLUS] = ACTIONS(1059), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_mod] = ACTIONS(1059), - [anon_sym_SLASH_SLASH] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_bit_DASHshl] = ACTIONS(1059), - [anon_sym_bit_DASHshr] = ACTIONS(1059), - [anon_sym_EQ_EQ] = ACTIONS(1059), - [anon_sym_BANG_EQ] = ACTIONS(1059), - [anon_sym_LT2] = ACTIONS(1059), - [anon_sym_LT_EQ] = ACTIONS(1059), - [anon_sym_GT_EQ] = ACTIONS(1059), - [anon_sym_not_DASHin] = ACTIONS(1059), - [anon_sym_starts_DASHwith] = ACTIONS(1059), - [anon_sym_ends_DASHwith] = ACTIONS(1059), - [anon_sym_EQ_TILDE] = ACTIONS(1059), - [anon_sym_BANG_TILDE] = ACTIONS(1059), - [anon_sym_bit_DASHand] = ACTIONS(1059), - [anon_sym_bit_DASHxor] = ACTIONS(1059), - [anon_sym_bit_DASHor] = ACTIONS(1059), - [anon_sym_and] = ACTIONS(1059), - [anon_sym_xor] = ACTIONS(1059), - [anon_sym_or] = ACTIONS(1059), - [anon_sym_not] = ACTIONS(1059), - [anon_sym_DOT] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1059), - [anon_sym_DOT_DOT_LT] = ACTIONS(1059), - [anon_sym_null] = ACTIONS(1059), - [anon_sym_true] = ACTIONS(1059), - [anon_sym_false] = ACTIONS(1059), - [aux_sym__val_number_decimal_token1] = ACTIONS(1059), - [aux_sym__val_number_decimal_token2] = ACTIONS(1059), - [anon_sym_DOT2] = ACTIONS(1059), - [aux_sym__val_number_decimal_token3] = ACTIONS(1059), - [aux_sym__val_number_token1] = ACTIONS(1059), - [aux_sym__val_number_token2] = ACTIONS(1059), - [aux_sym__val_number_token3] = ACTIONS(1059), - [aux_sym__val_number_token4] = ACTIONS(1059), - [aux_sym__val_number_token5] = ACTIONS(1059), - [aux_sym__val_number_token6] = ACTIONS(1059), - [anon_sym_0b] = ACTIONS(1059), - [anon_sym_0o] = ACTIONS(1059), - [anon_sym_0x] = ACTIONS(1059), - [sym_val_date] = ACTIONS(1059), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym__str_single_quotes] = ACTIONS(1059), - [sym__str_back_ticks] = ACTIONS(1059), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1059), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1059), - [anon_sym_POUND] = ACTIONS(113), - }, - [2691] = { - [sym_comment] = STATE(2691), - [anon_sym_SEMI] = ACTIONS(1063), - [anon_sym_LF] = ACTIONS(1065), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_RPAREN] = ACTIONS(1063), - [anon_sym_PIPE] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_DASH_DASH] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_RBRACE] = ACTIONS(1063), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_QMARK2] = ACTIONS(1063), - [anon_sym_STAR_STAR] = ACTIONS(1063), - [anon_sym_PLUS_PLUS] = ACTIONS(1063), - [anon_sym_SLASH] = ACTIONS(1063), - [anon_sym_mod] = ACTIONS(1063), - [anon_sym_SLASH_SLASH] = ACTIONS(1063), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_bit_DASHshl] = ACTIONS(1063), - [anon_sym_bit_DASHshr] = ACTIONS(1063), - [anon_sym_EQ_EQ] = ACTIONS(1063), - [anon_sym_BANG_EQ] = ACTIONS(1063), - [anon_sym_LT2] = ACTIONS(1063), - [anon_sym_LT_EQ] = ACTIONS(1063), - [anon_sym_GT_EQ] = ACTIONS(1063), - [anon_sym_not_DASHin] = ACTIONS(1063), - [anon_sym_starts_DASHwith] = ACTIONS(1063), - [anon_sym_ends_DASHwith] = ACTIONS(1063), - [anon_sym_EQ_TILDE] = ACTIONS(1063), - [anon_sym_BANG_TILDE] = ACTIONS(1063), - [anon_sym_bit_DASHand] = ACTIONS(1063), - [anon_sym_bit_DASHxor] = ACTIONS(1063), - [anon_sym_bit_DASHor] = ACTIONS(1063), - [anon_sym_and] = ACTIONS(1063), - [anon_sym_xor] = ACTIONS(1063), - [anon_sym_or] = ACTIONS(1063), - [anon_sym_not] = ACTIONS(1063), - [anon_sym_DOT] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1063), - [anon_sym_DOT_DOT_LT] = ACTIONS(1063), - [anon_sym_null] = ACTIONS(1063), - [anon_sym_true] = ACTIONS(1063), - [anon_sym_false] = ACTIONS(1063), - [aux_sym__val_number_decimal_token1] = ACTIONS(1063), - [aux_sym__val_number_decimal_token2] = ACTIONS(1063), - [anon_sym_DOT2] = ACTIONS(1063), - [aux_sym__val_number_decimal_token3] = ACTIONS(1063), - [aux_sym__val_number_token1] = ACTIONS(1063), - [aux_sym__val_number_token2] = ACTIONS(1063), - [aux_sym__val_number_token3] = ACTIONS(1063), - [aux_sym__val_number_token4] = ACTIONS(1063), - [aux_sym__val_number_token5] = ACTIONS(1063), - [aux_sym__val_number_token6] = ACTIONS(1063), - [anon_sym_0b] = ACTIONS(1063), - [anon_sym_0o] = ACTIONS(1063), - [anon_sym_0x] = ACTIONS(1063), - [sym_val_date] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [sym__str_single_quotes] = ACTIONS(1063), - [sym__str_back_ticks] = ACTIONS(1063), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1063), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1063), - [anon_sym_POUND] = ACTIONS(113), + [2691] = { + [sym_comment] = STATE(2691), + [ts_builtin_sym_end] = ACTIONS(1173), + [anon_sym_SEMI] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_PIPE] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(113), }, [2692] = { - [sym_cell_path] = STATE(3112), - [sym_path] = STATE(2693), [sym_comment] = STATE(2692), - [ts_builtin_sym_end] = ACTIONS(1012), - [anon_sym_SEMI] = ACTIONS(1010), - [anon_sym_LF] = ACTIONS(1012), - [anon_sym_LBRACK] = ACTIONS(1010), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_PIPE] = ACTIONS(1010), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1010), - [anon_sym_DASH_DASH] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_in] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_DOT_DOT] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1010), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_SLASH] = ACTIONS(1010), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT2] = ACTIONS(1010), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT_EQ] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_not] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(6363), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT] = ACTIONS(1010), - [anon_sym_null] = ACTIONS(1010), - [anon_sym_true] = ACTIONS(1010), - [anon_sym_false] = ACTIONS(1010), - [aux_sym__val_number_decimal_token1] = ACTIONS(1010), - [aux_sym__val_number_decimal_token2] = ACTIONS(1010), - [anon_sym_DOT2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = 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(1010), - [aux_sym__val_number_token5] = ACTIONS(1010), - [aux_sym__val_number_token6] = ACTIONS(1010), - [anon_sym_0b] = ACTIONS(1010), - [anon_sym_0o] = ACTIONS(1010), - [anon_sym_0x] = ACTIONS(1010), - [sym_val_date] = ACTIONS(1010), - [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), + [ts_builtin_sym_end] = ACTIONS(1173), + [anon_sym_SEMI] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_PIPE] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, [2693] = { - [sym_path] = STATE(2996), [sym_comment] = STATE(2693), - [aux_sym_cell_path_repeat1] = STATE(2694), - [ts_builtin_sym_end] = ACTIONS(989), - [anon_sym_SEMI] = ACTIONS(987), - [anon_sym_LF] = ACTIONS(989), - [anon_sym_LBRACK] = ACTIONS(987), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_PIPE] = ACTIONS(987), - [anon_sym_DOLLAR] = ACTIONS(987), - [anon_sym_GT] = ACTIONS(987), - [anon_sym_DASH_DASH] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_in] = ACTIONS(987), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_DOT_DOT] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(987), - [anon_sym_STAR_STAR] = ACTIONS(987), - [anon_sym_PLUS_PLUS] = ACTIONS(987), - [anon_sym_SLASH] = ACTIONS(987), - [anon_sym_mod] = ACTIONS(987), - [anon_sym_SLASH_SLASH] = ACTIONS(987), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_bit_DASHshl] = ACTIONS(987), - [anon_sym_bit_DASHshr] = ACTIONS(987), - [anon_sym_EQ_EQ] = ACTIONS(987), - [anon_sym_BANG_EQ] = ACTIONS(987), - [anon_sym_LT2] = ACTIONS(987), - [anon_sym_LT_EQ] = ACTIONS(987), - [anon_sym_GT_EQ] = ACTIONS(987), - [anon_sym_not_DASHin] = ACTIONS(987), - [anon_sym_starts_DASHwith] = ACTIONS(987), - [anon_sym_ends_DASHwith] = ACTIONS(987), - [anon_sym_EQ_TILDE] = ACTIONS(987), - [anon_sym_BANG_TILDE] = ACTIONS(987), - [anon_sym_bit_DASHand] = ACTIONS(987), - [anon_sym_bit_DASHxor] = ACTIONS(987), - [anon_sym_bit_DASHor] = ACTIONS(987), - [anon_sym_and] = ACTIONS(987), - [anon_sym_xor] = ACTIONS(987), - [anon_sym_or] = ACTIONS(987), - [anon_sym_not] = ACTIONS(987), - [anon_sym_DOT] = ACTIONS(6363), - [anon_sym_DOT_DOT_EQ] = ACTIONS(987), - [anon_sym_DOT_DOT_LT] = ACTIONS(987), - [anon_sym_null] = ACTIONS(987), - [anon_sym_true] = ACTIONS(987), - [anon_sym_false] = ACTIONS(987), - [aux_sym__val_number_decimal_token1] = ACTIONS(987), - [aux_sym__val_number_decimal_token2] = ACTIONS(987), - [anon_sym_DOT2] = ACTIONS(987), - [aux_sym__val_number_decimal_token3] = ACTIONS(987), - [aux_sym__val_number_token1] = ACTIONS(987), - [aux_sym__val_number_token2] = ACTIONS(987), - [aux_sym__val_number_token3] = ACTIONS(987), - [aux_sym__val_number_token4] = ACTIONS(987), - [aux_sym__val_number_token5] = ACTIONS(987), - [aux_sym__val_number_token6] = ACTIONS(987), - [anon_sym_0b] = ACTIONS(987), - [anon_sym_0o] = ACTIONS(987), - [anon_sym_0x] = ACTIONS(987), - [sym_val_date] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(987), - [sym__str_single_quotes] = ACTIONS(987), - [sym__str_back_ticks] = ACTIONS(987), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(987), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(987), + [ts_builtin_sym_end] = ACTIONS(1173), + [anon_sym_SEMI] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_PIPE] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, [2694] = { - [sym_path] = STATE(2996), [sym_comment] = STATE(2694), - [aux_sym_cell_path_repeat1] = STATE(2695), - [ts_builtin_sym_end] = ACTIONS(1008), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_LF] = ACTIONS(1008), - [anon_sym_LBRACK] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_in] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_STAR_STAR] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_mod] = ACTIONS(1006), - [anon_sym_SLASH_SLASH] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_bit_DASHshl] = ACTIONS(1006), - [anon_sym_bit_DASHshr] = ACTIONS(1006), - [anon_sym_EQ_EQ] = ACTIONS(1006), - [anon_sym_BANG_EQ] = ACTIONS(1006), - [anon_sym_LT2] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1006), - [anon_sym_GT_EQ] = ACTIONS(1006), - [anon_sym_not_DASHin] = ACTIONS(1006), - [anon_sym_starts_DASHwith] = ACTIONS(1006), - [anon_sym_ends_DASHwith] = ACTIONS(1006), - [anon_sym_EQ_TILDE] = ACTIONS(1006), - [anon_sym_BANG_TILDE] = ACTIONS(1006), - [anon_sym_bit_DASHand] = ACTIONS(1006), - [anon_sym_bit_DASHxor] = ACTIONS(1006), - [anon_sym_bit_DASHor] = ACTIONS(1006), - [anon_sym_and] = ACTIONS(1006), - [anon_sym_xor] = ACTIONS(1006), - [anon_sym_or] = ACTIONS(1006), - [anon_sym_not] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(6363), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT] = ACTIONS(1006), - [anon_sym_null] = ACTIONS(1006), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1006), - [anon_sym_DOT2] = ACTIONS(1006), - [aux_sym__val_number_decimal_token3] = ACTIONS(1006), - [aux_sym__val_number_token1] = ACTIONS(1006), - [aux_sym__val_number_token2] = ACTIONS(1006), - [aux_sym__val_number_token3] = ACTIONS(1006), - [aux_sym__val_number_token4] = ACTIONS(1006), - [aux_sym__val_number_token5] = ACTIONS(1006), - [aux_sym__val_number_token6] = ACTIONS(1006), - [anon_sym_0b] = ACTIONS(1006), - [anon_sym_0o] = ACTIONS(1006), - [anon_sym_0x] = ACTIONS(1006), - [sym_val_date] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym__str_single_quotes] = ACTIONS(1006), - [sym__str_back_ticks] = ACTIONS(1006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1006), + [ts_builtin_sym_end] = ACTIONS(1173), + [anon_sym_SEMI] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_PIPE] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, [2695] = { - [sym_path] = STATE(2996), [sym_comment] = STATE(2695), - [aux_sym_cell_path_repeat1] = STATE(2695), - [ts_builtin_sym_end] = ACTIONS(1001), - [anon_sym_SEMI] = ACTIONS(999), - [anon_sym_LF] = ACTIONS(1001), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_GT] = ACTIONS(999), - [anon_sym_DASH_DASH] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_in] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(999), - [anon_sym_DOT_DOT] = ACTIONS(999), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_STAR_STAR] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(999), - [anon_sym_mod] = ACTIONS(999), - [anon_sym_SLASH_SLASH] = ACTIONS(999), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_bit_DASHshl] = ACTIONS(999), - [anon_sym_bit_DASHshr] = ACTIONS(999), - [anon_sym_EQ_EQ] = ACTIONS(999), - [anon_sym_BANG_EQ] = ACTIONS(999), - [anon_sym_LT2] = ACTIONS(999), - [anon_sym_LT_EQ] = ACTIONS(999), - [anon_sym_GT_EQ] = ACTIONS(999), - [anon_sym_not_DASHin] = ACTIONS(999), - [anon_sym_starts_DASHwith] = ACTIONS(999), - [anon_sym_ends_DASHwith] = ACTIONS(999), - [anon_sym_EQ_TILDE] = ACTIONS(999), - [anon_sym_BANG_TILDE] = ACTIONS(999), - [anon_sym_bit_DASHand] = ACTIONS(999), - [anon_sym_bit_DASHxor] = ACTIONS(999), - [anon_sym_bit_DASHor] = ACTIONS(999), - [anon_sym_and] = ACTIONS(999), - [anon_sym_xor] = ACTIONS(999), - [anon_sym_or] = ACTIONS(999), - [anon_sym_not] = ACTIONS(999), - [anon_sym_DOT] = ACTIONS(6507), - [anon_sym_DOT_DOT_EQ] = ACTIONS(999), - [anon_sym_DOT_DOT_LT] = ACTIONS(999), - [anon_sym_null] = ACTIONS(999), - [anon_sym_true] = ACTIONS(999), - [anon_sym_false] = ACTIONS(999), - [aux_sym__val_number_decimal_token1] = ACTIONS(999), - [aux_sym__val_number_decimal_token2] = ACTIONS(999), - [anon_sym_DOT2] = ACTIONS(999), - [aux_sym__val_number_decimal_token3] = ACTIONS(999), - [aux_sym__val_number_token1] = ACTIONS(999), - [aux_sym__val_number_token2] = ACTIONS(999), - [aux_sym__val_number_token3] = ACTIONS(999), - [aux_sym__val_number_token4] = ACTIONS(999), - [aux_sym__val_number_token5] = ACTIONS(999), - [aux_sym__val_number_token6] = ACTIONS(999), - [anon_sym_0b] = ACTIONS(999), - [anon_sym_0o] = ACTIONS(999), - [anon_sym_0x] = ACTIONS(999), - [sym_val_date] = ACTIONS(999), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym__str_single_quotes] = ACTIONS(999), - [sym__str_back_ticks] = ACTIONS(999), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(999), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(999), + [ts_builtin_sym_end] = ACTIONS(1173), + [anon_sym_SEMI] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_PIPE] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, [2696] = { [sym_comment] = STATE(2696), - [anon_sym_export] = ACTIONS(6510), - [anon_sym_alias] = ACTIONS(6510), - [anon_sym_let] = ACTIONS(6510), - [anon_sym_let_DASHenv] = ACTIONS(6510), - [anon_sym_mut] = ACTIONS(6510), - [anon_sym_const] = ACTIONS(6510), - [anon_sym_SEMI] = ACTIONS(6510), - [sym_cmd_identifier] = ACTIONS(6510), - [anon_sym_LF] = ACTIONS(6512), - [anon_sym_def] = ACTIONS(6510), - [anon_sym_export_DASHenv] = ACTIONS(6510), - [anon_sym_extern] = ACTIONS(6510), - [anon_sym_module] = ACTIONS(6510), - [anon_sym_use] = ACTIONS(6510), - [anon_sym_LBRACK] = ACTIONS(6510), - [anon_sym_LPAREN] = ACTIONS(6510), - [anon_sym_RPAREN] = ACTIONS(6510), - [anon_sym_DOLLAR] = ACTIONS(6510), - [anon_sym_error] = ACTIONS(6510), - [anon_sym_DASH] = ACTIONS(6510), - [anon_sym_break] = ACTIONS(6510), - [anon_sym_continue] = ACTIONS(6510), - [anon_sym_for] = ACTIONS(6510), - [anon_sym_loop] = ACTIONS(6510), - [anon_sym_while] = ACTIONS(6510), - [anon_sym_do] = ACTIONS(6510), - [anon_sym_if] = ACTIONS(6510), - [anon_sym_match] = ACTIONS(6510), - [anon_sym_LBRACE] = ACTIONS(6510), - [anon_sym_RBRACE] = ACTIONS(6510), - [anon_sym_DOT_DOT] = ACTIONS(6510), - [anon_sym_try] = ACTIONS(6510), - [anon_sym_return] = ACTIONS(6510), - [anon_sym_source] = ACTIONS(6510), - [anon_sym_source_DASHenv] = ACTIONS(6510), - [anon_sym_register] = ACTIONS(6510), - [anon_sym_hide] = ACTIONS(6510), - [anon_sym_hide_DASHenv] = ACTIONS(6510), - [anon_sym_overlay] = ACTIONS(6510), - [anon_sym_where] = ACTIONS(6510), - [anon_sym_not] = ACTIONS(6510), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6510), - [anon_sym_DOT_DOT_LT] = ACTIONS(6510), - [anon_sym_null] = ACTIONS(6510), - [anon_sym_true] = ACTIONS(6510), - [anon_sym_false] = ACTIONS(6510), - [aux_sym__val_number_decimal_token1] = ACTIONS(6510), - [aux_sym__val_number_decimal_token2] = ACTIONS(6510), - [anon_sym_DOT2] = ACTIONS(6510), - [aux_sym__val_number_decimal_token3] = ACTIONS(6510), - [aux_sym__val_number_token1] = ACTIONS(6510), - [aux_sym__val_number_token2] = ACTIONS(6510), - [aux_sym__val_number_token3] = ACTIONS(6510), - [aux_sym__val_number_token4] = ACTIONS(6510), - [aux_sym__val_number_token5] = ACTIONS(6510), - [aux_sym__val_number_token6] = ACTIONS(6510), - [anon_sym_0b] = ACTIONS(6510), - [anon_sym_0o] = ACTIONS(6510), - [anon_sym_0x] = ACTIONS(6510), - [sym_val_date] = ACTIONS(6510), - [anon_sym_DQUOTE] = ACTIONS(6510), - [sym__str_single_quotes] = ACTIONS(6510), - [sym__str_back_ticks] = ACTIONS(6510), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6510), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6510), - [anon_sym_CARET] = ACTIONS(6510), + [ts_builtin_sym_end] = ACTIONS(1247), + [anon_sym_SEMI] = ACTIONS(1245), + [anon_sym_LF] = ACTIONS(1247), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_PIPE] = ACTIONS(1245), + [anon_sym_DOLLAR] = ACTIONS(1245), + [anon_sym_GT] = ACTIONS(1245), + [anon_sym_DASH_DASH] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_in] = ACTIONS(1245), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_DOT_DOT] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(1245), + [anon_sym_STAR_STAR] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(1245), + [anon_sym_mod] = ACTIONS(1245), + [anon_sym_SLASH_SLASH] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_bit_DASHshl] = ACTIONS(1245), + [anon_sym_bit_DASHshr] = ACTIONS(1245), + [anon_sym_EQ_EQ] = ACTIONS(1245), + [anon_sym_BANG_EQ] = ACTIONS(1245), + [anon_sym_LT2] = ACTIONS(1245), + [anon_sym_LT_EQ] = ACTIONS(1245), + [anon_sym_GT_EQ] = ACTIONS(1245), + [anon_sym_not_DASHin] = ACTIONS(1245), + [anon_sym_starts_DASHwith] = ACTIONS(1245), + [anon_sym_ends_DASHwith] = ACTIONS(1245), + [anon_sym_EQ_TILDE] = ACTIONS(1245), + [anon_sym_BANG_TILDE] = ACTIONS(1245), + [anon_sym_bit_DASHand] = ACTIONS(1245), + [anon_sym_bit_DASHxor] = ACTIONS(1245), + [anon_sym_bit_DASHor] = ACTIONS(1245), + [anon_sym_and] = ACTIONS(1245), + [anon_sym_xor] = ACTIONS(1245), + [anon_sym_or] = ACTIONS(1245), + [anon_sym_not] = ACTIONS(1245), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1245), + [anon_sym_DOT_DOT_LT] = ACTIONS(1245), + [anon_sym_null] = ACTIONS(1245), + [anon_sym_true] = ACTIONS(1245), + [anon_sym_false] = ACTIONS(1245), + [aux_sym__val_number_decimal_token1] = ACTIONS(1245), + [aux_sym__val_number_decimal_token2] = ACTIONS(1245), + [anon_sym_DOT2] = ACTIONS(1245), + [aux_sym__val_number_decimal_token3] = ACTIONS(1245), + [aux_sym__val_number_token1] = ACTIONS(1245), + [aux_sym__val_number_token2] = ACTIONS(1245), + [aux_sym__val_number_token3] = ACTIONS(1245), + [aux_sym__val_number_token4] = ACTIONS(1245), + [aux_sym__val_number_token5] = ACTIONS(1245), + [aux_sym__val_number_token6] = ACTIONS(1245), + [anon_sym_0b] = ACTIONS(1245), + [anon_sym_0o] = ACTIONS(1245), + [anon_sym_0x] = ACTIONS(1245), + [sym_val_date] = ACTIONS(1245), + [anon_sym_DQUOTE] = ACTIONS(1245), + [sym__str_single_quotes] = ACTIONS(1245), + [sym__str_back_ticks] = ACTIONS(1245), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1245), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1245), [anon_sym_POUND] = ACTIONS(113), }, [2697] = { [sym_comment] = STATE(2697), - [anon_sym_SEMI] = ACTIONS(1070), - [anon_sym_LF] = ACTIONS(1072), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_RPAREN] = ACTIONS(1070), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_in] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_RBRACE] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(6514), - [anon_sym_STAR_STAR] = ACTIONS(1070), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_mod] = ACTIONS(1070), - [anon_sym_SLASH_SLASH] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_bit_DASHshl] = ACTIONS(1070), - [anon_sym_bit_DASHshr] = ACTIONS(1070), - [anon_sym_EQ_EQ] = ACTIONS(1070), - [anon_sym_BANG_EQ] = ACTIONS(1070), - [anon_sym_LT2] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1070), - [anon_sym_GT_EQ] = ACTIONS(1070), - [anon_sym_not_DASHin] = ACTIONS(1070), - [anon_sym_starts_DASHwith] = ACTIONS(1070), - [anon_sym_ends_DASHwith] = ACTIONS(1070), - [anon_sym_EQ_TILDE] = ACTIONS(1070), - [anon_sym_BANG_TILDE] = ACTIONS(1070), - [anon_sym_bit_DASHand] = ACTIONS(1070), - [anon_sym_bit_DASHxor] = ACTIONS(1070), - [anon_sym_bit_DASHor] = ACTIONS(1070), - [anon_sym_and] = ACTIONS(1070), - [anon_sym_xor] = ACTIONS(1070), - [anon_sym_or] = ACTIONS(1070), - [anon_sym_not] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_null] = ACTIONS(1070), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1070), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), + [ts_builtin_sym_end] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym_LF] = ACTIONS(1251), + [anon_sym_LBRACK] = ACTIONS(1249), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_PIPE] = ACTIONS(1249), + [anon_sym_DOLLAR] = ACTIONS(1249), + [anon_sym_GT] = ACTIONS(1249), + [anon_sym_DASH_DASH] = ACTIONS(1249), + [anon_sym_DASH] = ACTIONS(1249), + [anon_sym_in] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_DOT_DOT] = ACTIONS(1249), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_STAR_STAR] = ACTIONS(1249), + [anon_sym_PLUS_PLUS] = ACTIONS(1249), + [anon_sym_SLASH] = ACTIONS(1249), + [anon_sym_mod] = ACTIONS(1249), + [anon_sym_SLASH_SLASH] = ACTIONS(1249), + [anon_sym_PLUS] = ACTIONS(1249), + [anon_sym_bit_DASHshl] = ACTIONS(1249), + [anon_sym_bit_DASHshr] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1249), + [anon_sym_BANG_EQ] = ACTIONS(1249), + [anon_sym_LT2] = ACTIONS(1249), + [anon_sym_LT_EQ] = ACTIONS(1249), + [anon_sym_GT_EQ] = ACTIONS(1249), + [anon_sym_not_DASHin] = ACTIONS(1249), + [anon_sym_starts_DASHwith] = ACTIONS(1249), + [anon_sym_ends_DASHwith] = ACTIONS(1249), + [anon_sym_EQ_TILDE] = ACTIONS(1249), + [anon_sym_BANG_TILDE] = ACTIONS(1249), + [anon_sym_bit_DASHand] = ACTIONS(1249), + [anon_sym_bit_DASHxor] = ACTIONS(1249), + [anon_sym_bit_DASHor] = ACTIONS(1249), + [anon_sym_and] = ACTIONS(1249), + [anon_sym_xor] = ACTIONS(1249), + [anon_sym_or] = ACTIONS(1249), + [anon_sym_not] = ACTIONS(1249), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1249), + [anon_sym_DOT_DOT_LT] = ACTIONS(1249), + [anon_sym_null] = ACTIONS(1249), + [anon_sym_true] = ACTIONS(1249), + [anon_sym_false] = ACTIONS(1249), + [aux_sym__val_number_decimal_token1] = ACTIONS(1249), + [aux_sym__val_number_decimal_token2] = ACTIONS(1249), + [anon_sym_DOT2] = ACTIONS(1249), + [aux_sym__val_number_decimal_token3] = ACTIONS(1249), + [aux_sym__val_number_token1] = ACTIONS(1249), + [aux_sym__val_number_token2] = ACTIONS(1249), + [aux_sym__val_number_token3] = ACTIONS(1249), + [aux_sym__val_number_token4] = ACTIONS(1249), + [aux_sym__val_number_token5] = ACTIONS(1249), + [aux_sym__val_number_token6] = ACTIONS(1249), + [anon_sym_0b] = ACTIONS(1249), + [anon_sym_0o] = ACTIONS(1249), + [anon_sym_0x] = ACTIONS(1249), + [sym_val_date] = ACTIONS(1249), + [anon_sym_DQUOTE] = ACTIONS(1249), + [sym__str_single_quotes] = ACTIONS(1249), + [sym__str_back_ticks] = ACTIONS(1249), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1249), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1249), [anon_sym_POUND] = ACTIONS(113), }, [2698] = { [sym_comment] = STATE(2698), - [anon_sym_SEMI] = ACTIONS(1070), - [anon_sym_LF] = ACTIONS(1072), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_RPAREN] = ACTIONS(1070), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_in] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_RBRACE] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(6514), - [anon_sym_STAR_STAR] = ACTIONS(1070), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_mod] = ACTIONS(1070), - [anon_sym_SLASH_SLASH] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_bit_DASHshl] = ACTIONS(1070), - [anon_sym_bit_DASHshr] = ACTIONS(1070), - [anon_sym_EQ_EQ] = ACTIONS(1070), - [anon_sym_BANG_EQ] = ACTIONS(1070), - [anon_sym_LT2] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1070), - [anon_sym_GT_EQ] = ACTIONS(1070), - [anon_sym_not_DASHin] = ACTIONS(1070), - [anon_sym_starts_DASHwith] = ACTIONS(1070), - [anon_sym_ends_DASHwith] = ACTIONS(1070), - [anon_sym_EQ_TILDE] = ACTIONS(1070), - [anon_sym_BANG_TILDE] = ACTIONS(1070), - [anon_sym_bit_DASHand] = ACTIONS(1070), - [anon_sym_bit_DASHxor] = ACTIONS(1070), - [anon_sym_bit_DASHor] = ACTIONS(1070), - [anon_sym_and] = ACTIONS(1070), - [anon_sym_xor] = ACTIONS(1070), - [anon_sym_or] = ACTIONS(1070), - [anon_sym_not] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_null] = ACTIONS(1070), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1070), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), + [ts_builtin_sym_end] = ACTIONS(1173), + [anon_sym_SEMI] = ACTIONS(1171), + [anon_sym_LF] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_PIPE] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_mod] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_bit_DASHshl] = ACTIONS(1171), + [anon_sym_bit_DASHshr] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT2] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_not_DASHin] = ACTIONS(1171), + [anon_sym_starts_DASHwith] = ACTIONS(1171), + [anon_sym_ends_DASHwith] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_BANG_TILDE] = ACTIONS(1171), + [anon_sym_bit_DASHand] = ACTIONS(1171), + [anon_sym_bit_DASHxor] = ACTIONS(1171), + [anon_sym_bit_DASHor] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1171), + [anon_sym_DOT_DOT_LT] = ACTIONS(1171), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1171), + [anon_sym_DOT2] = ACTIONS(1171), + [aux_sym__val_number_decimal_token3] = ACTIONS(1171), + [aux_sym__val_number_token1] = ACTIONS(1171), + [aux_sym__val_number_token2] = ACTIONS(1171), + [aux_sym__val_number_token3] = ACTIONS(1171), + [aux_sym__val_number_token4] = ACTIONS(1171), + [aux_sym__val_number_token5] = ACTIONS(1171), + [aux_sym__val_number_token6] = ACTIONS(1171), + [anon_sym_0b] = ACTIONS(1171), + [anon_sym_0o] = ACTIONS(1171), + [anon_sym_0x] = ACTIONS(1171), + [sym_val_date] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym__str_single_quotes] = ACTIONS(1171), + [sym__str_back_ticks] = ACTIONS(1171), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1171), [anon_sym_POUND] = ACTIONS(113), }, [2699] = { [sym_comment] = STATE(2699), - [anon_sym_export] = ACTIONS(6516), - [anon_sym_alias] = ACTIONS(6516), - [anon_sym_let] = ACTIONS(6516), - [anon_sym_let_DASHenv] = ACTIONS(6516), - [anon_sym_mut] = ACTIONS(6516), - [anon_sym_const] = ACTIONS(6516), - [anon_sym_SEMI] = ACTIONS(6516), - [sym_cmd_identifier] = ACTIONS(6516), - [anon_sym_LF] = ACTIONS(6518), - [anon_sym_def] = ACTIONS(6516), - [anon_sym_export_DASHenv] = ACTIONS(6516), - [anon_sym_extern] = ACTIONS(6516), - [anon_sym_module] = ACTIONS(6516), - [anon_sym_use] = ACTIONS(6516), - [anon_sym_LBRACK] = ACTIONS(6516), - [anon_sym_LPAREN] = ACTIONS(6516), - [anon_sym_RPAREN] = ACTIONS(6516), - [anon_sym_DOLLAR] = ACTIONS(6516), - [anon_sym_error] = ACTIONS(6516), - [anon_sym_DASH] = ACTIONS(6516), - [anon_sym_break] = ACTIONS(6516), - [anon_sym_continue] = ACTIONS(6516), - [anon_sym_for] = ACTIONS(6516), - [anon_sym_loop] = ACTIONS(6516), - [anon_sym_while] = ACTIONS(6516), - [anon_sym_do] = ACTIONS(6516), - [anon_sym_if] = ACTIONS(6516), - [anon_sym_match] = ACTIONS(6516), - [anon_sym_LBRACE] = ACTIONS(6516), - [anon_sym_RBRACE] = ACTIONS(6516), - [anon_sym_DOT_DOT] = ACTIONS(6516), - [anon_sym_try] = ACTIONS(6516), - [anon_sym_return] = ACTIONS(6516), - [anon_sym_source] = ACTIONS(6516), - [anon_sym_source_DASHenv] = ACTIONS(6516), - [anon_sym_register] = ACTIONS(6516), - [anon_sym_hide] = ACTIONS(6516), - [anon_sym_hide_DASHenv] = ACTIONS(6516), - [anon_sym_overlay] = ACTIONS(6516), - [anon_sym_where] = ACTIONS(6516), - [anon_sym_not] = ACTIONS(6516), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6516), - [anon_sym_DOT_DOT_LT] = ACTIONS(6516), - [anon_sym_null] = ACTIONS(6516), - [anon_sym_true] = ACTIONS(6516), - [anon_sym_false] = ACTIONS(6516), - [aux_sym__val_number_decimal_token1] = ACTIONS(6516), - [aux_sym__val_number_decimal_token2] = ACTIONS(6516), - [anon_sym_DOT2] = ACTIONS(6516), - [aux_sym__val_number_decimal_token3] = ACTIONS(6516), - [aux_sym__val_number_token1] = ACTIONS(6516), - [aux_sym__val_number_token2] = ACTIONS(6516), - [aux_sym__val_number_token3] = ACTIONS(6516), - [aux_sym__val_number_token4] = ACTIONS(6516), - [aux_sym__val_number_token5] = ACTIONS(6516), - [aux_sym__val_number_token6] = ACTIONS(6516), - [anon_sym_0b] = ACTIONS(6516), - [anon_sym_0o] = ACTIONS(6516), - [anon_sym_0x] = ACTIONS(6516), - [sym_val_date] = ACTIONS(6516), - [anon_sym_DQUOTE] = ACTIONS(6516), - [sym__str_single_quotes] = ACTIONS(6516), - [sym__str_back_ticks] = ACTIONS(6516), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6516), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6516), - [anon_sym_CARET] = ACTIONS(6516), - [anon_sym_POUND] = ACTIONS(113), - }, - [2700] = { - [sym_comment] = STATE(2700), - [anon_sym_export] = ACTIONS(6516), - [anon_sym_alias] = ACTIONS(6516), - [anon_sym_let] = ACTIONS(6516), - [anon_sym_let_DASHenv] = ACTIONS(6516), - [anon_sym_mut] = ACTIONS(6516), - [anon_sym_const] = ACTIONS(6516), - [anon_sym_SEMI] = ACTIONS(6516), - [sym_cmd_identifier] = ACTIONS(6516), - [anon_sym_LF] = ACTIONS(6518), - [anon_sym_def] = ACTIONS(6516), - [anon_sym_export_DASHenv] = ACTIONS(6516), - [anon_sym_extern] = ACTIONS(6516), - [anon_sym_module] = ACTIONS(6516), - [anon_sym_use] = ACTIONS(6516), - [anon_sym_LBRACK] = ACTIONS(6516), - [anon_sym_LPAREN] = ACTIONS(6516), - [anon_sym_RPAREN] = ACTIONS(6516), - [anon_sym_DOLLAR] = ACTIONS(6516), - [anon_sym_error] = ACTIONS(6516), - [anon_sym_DASH] = ACTIONS(6516), - [anon_sym_break] = ACTIONS(6516), - [anon_sym_continue] = ACTIONS(6516), - [anon_sym_for] = ACTIONS(6516), - [anon_sym_loop] = ACTIONS(6516), - [anon_sym_while] = ACTIONS(6516), - [anon_sym_do] = ACTIONS(6516), - [anon_sym_if] = ACTIONS(6516), - [anon_sym_match] = ACTIONS(6516), - [anon_sym_LBRACE] = ACTIONS(6516), - [anon_sym_RBRACE] = ACTIONS(6516), - [anon_sym_DOT_DOT] = ACTIONS(6516), - [anon_sym_try] = ACTIONS(6516), - [anon_sym_return] = ACTIONS(6516), - [anon_sym_source] = ACTIONS(6516), - [anon_sym_source_DASHenv] = ACTIONS(6516), - [anon_sym_register] = ACTIONS(6516), - [anon_sym_hide] = ACTIONS(6516), - [anon_sym_hide_DASHenv] = ACTIONS(6516), - [anon_sym_overlay] = ACTIONS(6516), - [anon_sym_where] = ACTIONS(6516), - [anon_sym_not] = ACTIONS(6516), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6516), - [anon_sym_DOT_DOT_LT] = ACTIONS(6516), - [anon_sym_null] = ACTIONS(6516), - [anon_sym_true] = ACTIONS(6516), - [anon_sym_false] = ACTIONS(6516), - [aux_sym__val_number_decimal_token1] = ACTIONS(6516), - [aux_sym__val_number_decimal_token2] = ACTIONS(6516), - [anon_sym_DOT2] = ACTIONS(6516), - [aux_sym__val_number_decimal_token3] = ACTIONS(6516), - [aux_sym__val_number_token1] = ACTIONS(6516), - [aux_sym__val_number_token2] = ACTIONS(6516), - [aux_sym__val_number_token3] = ACTIONS(6516), - [aux_sym__val_number_token4] = ACTIONS(6516), - [aux_sym__val_number_token5] = ACTIONS(6516), - [aux_sym__val_number_token6] = ACTIONS(6516), - [anon_sym_0b] = ACTIONS(6516), - [anon_sym_0o] = ACTIONS(6516), - [anon_sym_0x] = ACTIONS(6516), - [sym_val_date] = ACTIONS(6516), - [anon_sym_DQUOTE] = ACTIONS(6516), - [sym__str_single_quotes] = ACTIONS(6516), - [sym__str_back_ticks] = ACTIONS(6516), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6516), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6516), - [anon_sym_CARET] = ACTIONS(6516), - [anon_sym_POUND] = ACTIONS(113), - }, - [2701] = { - [sym_comment] = STATE(2701), - [anon_sym_export] = ACTIONS(6520), - [anon_sym_alias] = ACTIONS(6520), - [anon_sym_let] = ACTIONS(6520), - [anon_sym_let_DASHenv] = ACTIONS(6520), - [anon_sym_mut] = ACTIONS(6520), - [anon_sym_const] = ACTIONS(6520), - [anon_sym_SEMI] = ACTIONS(6520), - [sym_cmd_identifier] = ACTIONS(6520), - [anon_sym_LF] = ACTIONS(6522), - [anon_sym_def] = ACTIONS(6520), - [anon_sym_export_DASHenv] = ACTIONS(6520), - [anon_sym_extern] = ACTIONS(6520), - [anon_sym_module] = ACTIONS(6520), - [anon_sym_use] = ACTIONS(6520), - [anon_sym_LBRACK] = ACTIONS(6520), - [anon_sym_LPAREN] = ACTIONS(6520), - [anon_sym_RPAREN] = ACTIONS(6520), - [anon_sym_DOLLAR] = ACTIONS(6520), - [anon_sym_error] = ACTIONS(6520), - [anon_sym_DASH] = ACTIONS(6520), - [anon_sym_break] = ACTIONS(6520), - [anon_sym_continue] = ACTIONS(6520), - [anon_sym_for] = ACTIONS(6520), - [anon_sym_loop] = ACTIONS(6520), - [anon_sym_while] = ACTIONS(6520), - [anon_sym_do] = ACTIONS(6520), - [anon_sym_if] = ACTIONS(6520), - [anon_sym_match] = ACTIONS(6520), - [anon_sym_LBRACE] = ACTIONS(6520), - [anon_sym_RBRACE] = ACTIONS(6520), - [anon_sym_DOT_DOT] = ACTIONS(6520), - [anon_sym_try] = ACTIONS(6520), - [anon_sym_return] = ACTIONS(6520), - [anon_sym_source] = ACTIONS(6520), - [anon_sym_source_DASHenv] = ACTIONS(6520), - [anon_sym_register] = ACTIONS(6520), - [anon_sym_hide] = ACTIONS(6520), - [anon_sym_hide_DASHenv] = ACTIONS(6520), - [anon_sym_overlay] = ACTIONS(6520), - [anon_sym_where] = ACTIONS(6520), - [anon_sym_not] = ACTIONS(6520), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6520), - [anon_sym_DOT_DOT_LT] = ACTIONS(6520), - [anon_sym_null] = ACTIONS(6520), - [anon_sym_true] = ACTIONS(6520), - [anon_sym_false] = ACTIONS(6520), - [aux_sym__val_number_decimal_token1] = ACTIONS(6520), - [aux_sym__val_number_decimal_token2] = ACTIONS(6520), - [anon_sym_DOT2] = ACTIONS(6520), - [aux_sym__val_number_decimal_token3] = ACTIONS(6520), - [aux_sym__val_number_token1] = ACTIONS(6520), - [aux_sym__val_number_token2] = ACTIONS(6520), - [aux_sym__val_number_token3] = ACTIONS(6520), - [aux_sym__val_number_token4] = ACTIONS(6520), - [aux_sym__val_number_token5] = ACTIONS(6520), - [aux_sym__val_number_token6] = ACTIONS(6520), - [anon_sym_0b] = ACTIONS(6520), - [anon_sym_0o] = ACTIONS(6520), - [anon_sym_0x] = ACTIONS(6520), - [sym_val_date] = ACTIONS(6520), - [anon_sym_DQUOTE] = ACTIONS(6520), - [sym__str_single_quotes] = ACTIONS(6520), - [sym__str_back_ticks] = ACTIONS(6520), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6520), - [anon_sym_CARET] = ACTIONS(6520), - [anon_sym_POUND] = ACTIONS(113), - }, - [2702] = { - [sym_comment] = STATE(2702), - [anon_sym_export] = ACTIONS(6520), - [anon_sym_alias] = ACTIONS(6520), - [anon_sym_let] = ACTIONS(6520), - [anon_sym_let_DASHenv] = ACTIONS(6520), - [anon_sym_mut] = ACTIONS(6520), - [anon_sym_const] = ACTIONS(6520), - [anon_sym_SEMI] = ACTIONS(6520), - [sym_cmd_identifier] = ACTIONS(6520), - [anon_sym_LF] = ACTIONS(6522), - [anon_sym_def] = ACTIONS(6520), - [anon_sym_export_DASHenv] = ACTIONS(6520), - [anon_sym_extern] = ACTIONS(6520), - [anon_sym_module] = ACTIONS(6520), - [anon_sym_use] = ACTIONS(6520), - [anon_sym_LBRACK] = ACTIONS(6520), - [anon_sym_LPAREN] = ACTIONS(6520), - [anon_sym_RPAREN] = ACTIONS(6520), - [anon_sym_DOLLAR] = ACTIONS(6520), - [anon_sym_error] = ACTIONS(6520), - [anon_sym_DASH] = ACTIONS(6520), - [anon_sym_break] = ACTIONS(6520), - [anon_sym_continue] = ACTIONS(6520), - [anon_sym_for] = ACTIONS(6520), - [anon_sym_loop] = ACTIONS(6520), - [anon_sym_while] = ACTIONS(6520), - [anon_sym_do] = ACTIONS(6520), - [anon_sym_if] = ACTIONS(6520), - [anon_sym_match] = ACTIONS(6520), - [anon_sym_LBRACE] = ACTIONS(6520), - [anon_sym_RBRACE] = ACTIONS(6520), - [anon_sym_DOT_DOT] = ACTIONS(6520), - [anon_sym_try] = ACTIONS(6520), - [anon_sym_return] = ACTIONS(6520), - [anon_sym_source] = ACTIONS(6520), - [anon_sym_source_DASHenv] = ACTIONS(6520), - [anon_sym_register] = ACTIONS(6520), - [anon_sym_hide] = ACTIONS(6520), - [anon_sym_hide_DASHenv] = ACTIONS(6520), - [anon_sym_overlay] = ACTIONS(6520), - [anon_sym_where] = ACTIONS(6520), - [anon_sym_not] = ACTIONS(6520), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6520), - [anon_sym_DOT_DOT_LT] = ACTIONS(6520), - [anon_sym_null] = ACTIONS(6520), - [anon_sym_true] = ACTIONS(6520), - [anon_sym_false] = ACTIONS(6520), - [aux_sym__val_number_decimal_token1] = ACTIONS(6520), - [aux_sym__val_number_decimal_token2] = ACTIONS(6520), - [anon_sym_DOT2] = ACTIONS(6520), - [aux_sym__val_number_decimal_token3] = ACTIONS(6520), - [aux_sym__val_number_token1] = ACTIONS(6520), - [aux_sym__val_number_token2] = ACTIONS(6520), - [aux_sym__val_number_token3] = ACTIONS(6520), - [aux_sym__val_number_token4] = ACTIONS(6520), - [aux_sym__val_number_token5] = ACTIONS(6520), - [aux_sym__val_number_token6] = ACTIONS(6520), - [anon_sym_0b] = ACTIONS(6520), - [anon_sym_0o] = ACTIONS(6520), - [anon_sym_0x] = ACTIONS(6520), - [sym_val_date] = ACTIONS(6520), - [anon_sym_DQUOTE] = ACTIONS(6520), - [sym__str_single_quotes] = ACTIONS(6520), - [sym__str_back_ticks] = ACTIONS(6520), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6520), - [anon_sym_CARET] = ACTIONS(6520), - [anon_sym_POUND] = ACTIONS(113), - }, - [2703] = { - [sym_comment] = STATE(2703), - [anon_sym_export] = ACTIONS(6524), - [anon_sym_alias] = ACTIONS(6524), - [anon_sym_let] = ACTIONS(6524), - [anon_sym_let_DASHenv] = ACTIONS(6524), - [anon_sym_mut] = ACTIONS(6524), - [anon_sym_const] = ACTIONS(6524), - [anon_sym_SEMI] = ACTIONS(6524), - [sym_cmd_identifier] = ACTIONS(6524), - [anon_sym_LF] = ACTIONS(6526), - [anon_sym_def] = ACTIONS(6524), - [anon_sym_export_DASHenv] = ACTIONS(6524), - [anon_sym_extern] = ACTIONS(6524), - [anon_sym_module] = ACTIONS(6524), - [anon_sym_use] = ACTIONS(6524), - [anon_sym_LBRACK] = ACTIONS(6524), - [anon_sym_LPAREN] = ACTIONS(6524), - [anon_sym_RPAREN] = ACTIONS(6524), - [anon_sym_DOLLAR] = ACTIONS(6524), - [anon_sym_error] = ACTIONS(6524), - [anon_sym_DASH] = ACTIONS(6524), - [anon_sym_break] = ACTIONS(6524), - [anon_sym_continue] = ACTIONS(6524), - [anon_sym_for] = ACTIONS(6524), - [anon_sym_loop] = ACTIONS(6524), - [anon_sym_while] = ACTIONS(6524), - [anon_sym_do] = ACTIONS(6524), - [anon_sym_if] = ACTIONS(6524), - [anon_sym_match] = ACTIONS(6524), - [anon_sym_LBRACE] = ACTIONS(6524), - [anon_sym_RBRACE] = ACTIONS(6524), - [anon_sym_DOT_DOT] = ACTIONS(6524), - [anon_sym_try] = ACTIONS(6524), - [anon_sym_return] = ACTIONS(6524), - [anon_sym_source] = ACTIONS(6524), - [anon_sym_source_DASHenv] = ACTIONS(6524), - [anon_sym_register] = ACTIONS(6524), - [anon_sym_hide] = ACTIONS(6524), - [anon_sym_hide_DASHenv] = ACTIONS(6524), - [anon_sym_overlay] = ACTIONS(6524), - [anon_sym_where] = ACTIONS(6524), - [anon_sym_not] = ACTIONS(6524), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6524), - [anon_sym_DOT_DOT_LT] = ACTIONS(6524), - [anon_sym_null] = ACTIONS(6524), - [anon_sym_true] = ACTIONS(6524), - [anon_sym_false] = ACTIONS(6524), - [aux_sym__val_number_decimal_token1] = ACTIONS(6524), - [aux_sym__val_number_decimal_token2] = ACTIONS(6524), - [anon_sym_DOT2] = ACTIONS(6524), - [aux_sym__val_number_decimal_token3] = ACTIONS(6524), - [aux_sym__val_number_token1] = ACTIONS(6524), - [aux_sym__val_number_token2] = ACTIONS(6524), - [aux_sym__val_number_token3] = ACTIONS(6524), - [aux_sym__val_number_token4] = ACTIONS(6524), - [aux_sym__val_number_token5] = ACTIONS(6524), - [aux_sym__val_number_token6] = ACTIONS(6524), - [anon_sym_0b] = ACTIONS(6524), - [anon_sym_0o] = ACTIONS(6524), - [anon_sym_0x] = ACTIONS(6524), - [sym_val_date] = ACTIONS(6524), - [anon_sym_DQUOTE] = ACTIONS(6524), - [sym__str_single_quotes] = ACTIONS(6524), - [sym__str_back_ticks] = ACTIONS(6524), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6524), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6524), - [anon_sym_CARET] = ACTIONS(6524), - [anon_sym_POUND] = ACTIONS(113), - }, - [2704] = { - [sym_comment] = STATE(2704), - [anon_sym_export] = ACTIONS(6524), - [anon_sym_alias] = ACTIONS(6524), - [anon_sym_let] = ACTIONS(6524), - [anon_sym_let_DASHenv] = ACTIONS(6524), - [anon_sym_mut] = ACTIONS(6524), - [anon_sym_const] = ACTIONS(6524), - [anon_sym_SEMI] = ACTIONS(6524), - [sym_cmd_identifier] = ACTIONS(6524), - [anon_sym_LF] = ACTIONS(6526), - [anon_sym_def] = ACTIONS(6524), - [anon_sym_export_DASHenv] = ACTIONS(6524), - [anon_sym_extern] = ACTIONS(6524), - [anon_sym_module] = ACTIONS(6524), - [anon_sym_use] = ACTIONS(6524), - [anon_sym_LBRACK] = ACTIONS(6524), - [anon_sym_LPAREN] = ACTIONS(6524), - [anon_sym_RPAREN] = ACTIONS(6524), - [anon_sym_DOLLAR] = ACTIONS(6524), - [anon_sym_error] = ACTIONS(6524), - [anon_sym_DASH] = ACTIONS(6524), - [anon_sym_break] = ACTIONS(6524), - [anon_sym_continue] = ACTIONS(6524), - [anon_sym_for] = ACTIONS(6524), - [anon_sym_loop] = ACTIONS(6524), - [anon_sym_while] = ACTIONS(6524), - [anon_sym_do] = ACTIONS(6524), - [anon_sym_if] = ACTIONS(6524), - [anon_sym_match] = ACTIONS(6524), - [anon_sym_LBRACE] = ACTIONS(6524), - [anon_sym_RBRACE] = ACTIONS(6524), - [anon_sym_DOT_DOT] = ACTIONS(6524), - [anon_sym_try] = ACTIONS(6524), - [anon_sym_return] = ACTIONS(6524), - [anon_sym_source] = ACTIONS(6524), - [anon_sym_source_DASHenv] = ACTIONS(6524), - [anon_sym_register] = ACTIONS(6524), - [anon_sym_hide] = ACTIONS(6524), - [anon_sym_hide_DASHenv] = ACTIONS(6524), - [anon_sym_overlay] = ACTIONS(6524), - [anon_sym_where] = ACTIONS(6524), - [anon_sym_not] = ACTIONS(6524), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6524), - [anon_sym_DOT_DOT_LT] = ACTIONS(6524), - [anon_sym_null] = ACTIONS(6524), - [anon_sym_true] = ACTIONS(6524), - [anon_sym_false] = ACTIONS(6524), - [aux_sym__val_number_decimal_token1] = ACTIONS(6524), - [aux_sym__val_number_decimal_token2] = ACTIONS(6524), - [anon_sym_DOT2] = ACTIONS(6524), - [aux_sym__val_number_decimal_token3] = ACTIONS(6524), - [aux_sym__val_number_token1] = ACTIONS(6524), - [aux_sym__val_number_token2] = ACTIONS(6524), - [aux_sym__val_number_token3] = ACTIONS(6524), - [aux_sym__val_number_token4] = ACTIONS(6524), - [aux_sym__val_number_token5] = ACTIONS(6524), - [aux_sym__val_number_token6] = ACTIONS(6524), - [anon_sym_0b] = ACTIONS(6524), - [anon_sym_0o] = ACTIONS(6524), - [anon_sym_0x] = ACTIONS(6524), - [sym_val_date] = ACTIONS(6524), - [anon_sym_DQUOTE] = ACTIONS(6524), - [sym__str_single_quotes] = ACTIONS(6524), - [sym__str_back_ticks] = ACTIONS(6524), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6524), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6524), - [anon_sym_CARET] = ACTIONS(6524), - [anon_sym_POUND] = ACTIONS(113), - }, - [2705] = { - [sym_comment] = STATE(2705), - [anon_sym_export] = ACTIONS(6516), - [anon_sym_alias] = ACTIONS(6516), - [anon_sym_let] = ACTIONS(6516), - [anon_sym_let_DASHenv] = ACTIONS(6516), - [anon_sym_mut] = ACTIONS(6516), - [anon_sym_const] = ACTIONS(6516), - [anon_sym_SEMI] = ACTIONS(6516), - [sym_cmd_identifier] = ACTIONS(6516), - [anon_sym_LF] = ACTIONS(6518), - [anon_sym_def] = ACTIONS(6516), - [anon_sym_export_DASHenv] = ACTIONS(6516), - [anon_sym_extern] = ACTIONS(6516), - [anon_sym_module] = ACTIONS(6516), - [anon_sym_use] = ACTIONS(6516), - [anon_sym_LBRACK] = ACTIONS(6516), - [anon_sym_LPAREN] = ACTIONS(6516), - [anon_sym_RPAREN] = ACTIONS(6516), - [anon_sym_DOLLAR] = ACTIONS(6516), - [anon_sym_error] = ACTIONS(6516), - [anon_sym_DASH] = ACTIONS(6516), - [anon_sym_break] = ACTIONS(6516), - [anon_sym_continue] = ACTIONS(6516), - [anon_sym_for] = ACTIONS(6516), - [anon_sym_loop] = ACTIONS(6516), - [anon_sym_while] = ACTIONS(6516), - [anon_sym_do] = ACTIONS(6516), - [anon_sym_if] = ACTIONS(6516), - [anon_sym_match] = ACTIONS(6516), - [anon_sym_LBRACE] = ACTIONS(6516), - [anon_sym_RBRACE] = ACTIONS(6516), - [anon_sym_DOT_DOT] = ACTIONS(6516), - [anon_sym_try] = ACTIONS(6516), - [anon_sym_return] = ACTIONS(6516), - [anon_sym_source] = ACTIONS(6516), - [anon_sym_source_DASHenv] = ACTIONS(6516), - [anon_sym_register] = ACTIONS(6516), - [anon_sym_hide] = ACTIONS(6516), - [anon_sym_hide_DASHenv] = ACTIONS(6516), - [anon_sym_overlay] = ACTIONS(6516), - [anon_sym_where] = ACTIONS(6516), - [anon_sym_not] = ACTIONS(6516), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6516), - [anon_sym_DOT_DOT_LT] = ACTIONS(6516), - [anon_sym_null] = ACTIONS(6516), - [anon_sym_true] = ACTIONS(6516), - [anon_sym_false] = ACTIONS(6516), - [aux_sym__val_number_decimal_token1] = ACTIONS(6516), - [aux_sym__val_number_decimal_token2] = ACTIONS(6516), - [anon_sym_DOT2] = ACTIONS(6516), - [aux_sym__val_number_decimal_token3] = ACTIONS(6516), - [aux_sym__val_number_token1] = ACTIONS(6516), - [aux_sym__val_number_token2] = ACTIONS(6516), - [aux_sym__val_number_token3] = ACTIONS(6516), - [aux_sym__val_number_token4] = ACTIONS(6516), - [aux_sym__val_number_token5] = ACTIONS(6516), - [aux_sym__val_number_token6] = ACTIONS(6516), - [anon_sym_0b] = ACTIONS(6516), - [anon_sym_0o] = ACTIONS(6516), - [anon_sym_0x] = ACTIONS(6516), - [sym_val_date] = ACTIONS(6516), - [anon_sym_DQUOTE] = ACTIONS(6516), - [sym__str_single_quotes] = ACTIONS(6516), - [sym__str_back_ticks] = ACTIONS(6516), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6516), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6516), - [anon_sym_CARET] = ACTIONS(6516), - [anon_sym_POUND] = ACTIONS(113), - }, - [2706] = { - [sym_comment] = STATE(2706), - [anon_sym_export] = ACTIONS(4000), - [anon_sym_alias] = ACTIONS(4000), - [anon_sym_let] = ACTIONS(4000), - [anon_sym_let_DASHenv] = ACTIONS(4000), - [anon_sym_mut] = ACTIONS(4000), - [anon_sym_const] = ACTIONS(4000), - [anon_sym_SEMI] = ACTIONS(4000), - [sym_cmd_identifier] = ACTIONS(4000), - [anon_sym_LF] = ACTIONS(4002), - [anon_sym_def] = ACTIONS(4000), - [anon_sym_export_DASHenv] = ACTIONS(4000), - [anon_sym_extern] = ACTIONS(4000), - [anon_sym_module] = ACTIONS(4000), - [anon_sym_use] = ACTIONS(4000), - [anon_sym_LBRACK] = ACTIONS(4000), - [anon_sym_LPAREN] = ACTIONS(4000), - [anon_sym_RPAREN] = ACTIONS(4000), - [anon_sym_DOLLAR] = ACTIONS(4000), - [anon_sym_error] = ACTIONS(4000), - [anon_sym_DASH] = ACTIONS(4000), - [anon_sym_break] = ACTIONS(4000), - [anon_sym_continue] = ACTIONS(4000), - [anon_sym_for] = ACTIONS(4000), - [anon_sym_loop] = ACTIONS(4000), - [anon_sym_while] = ACTIONS(4000), - [anon_sym_do] = ACTIONS(4000), - [anon_sym_if] = ACTIONS(4000), - [anon_sym_match] = ACTIONS(4000), - [anon_sym_LBRACE] = ACTIONS(4000), - [anon_sym_RBRACE] = ACTIONS(4000), - [anon_sym_DOT_DOT] = ACTIONS(4000), - [anon_sym_try] = ACTIONS(4000), - [anon_sym_return] = ACTIONS(4000), - [anon_sym_source] = ACTIONS(4000), - [anon_sym_source_DASHenv] = ACTIONS(4000), - [anon_sym_register] = ACTIONS(4000), - [anon_sym_hide] = ACTIONS(4000), - [anon_sym_hide_DASHenv] = ACTIONS(4000), - [anon_sym_overlay] = ACTIONS(4000), - [anon_sym_where] = ACTIONS(4000), - [anon_sym_not] = ACTIONS(4000), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4000), - [anon_sym_DOT_DOT_LT] = ACTIONS(4000), - [anon_sym_null] = ACTIONS(4000), - [anon_sym_true] = ACTIONS(4000), - [anon_sym_false] = ACTIONS(4000), - [aux_sym__val_number_decimal_token1] = ACTIONS(4000), - [aux_sym__val_number_decimal_token2] = ACTIONS(4000), - [anon_sym_DOT2] = ACTIONS(4000), - [aux_sym__val_number_decimal_token3] = ACTIONS(4000), - [aux_sym__val_number_token1] = ACTIONS(4000), - [aux_sym__val_number_token2] = ACTIONS(4000), - [aux_sym__val_number_token3] = ACTIONS(4000), - [aux_sym__val_number_token4] = ACTIONS(4000), - [aux_sym__val_number_token5] = ACTIONS(4000), - [aux_sym__val_number_token6] = ACTIONS(4000), - [anon_sym_0b] = ACTIONS(4000), - [anon_sym_0o] = ACTIONS(4000), - [anon_sym_0x] = ACTIONS(4000), - [sym_val_date] = ACTIONS(4000), - [anon_sym_DQUOTE] = ACTIONS(4000), - [sym__str_single_quotes] = ACTIONS(4000), - [sym__str_back_ticks] = ACTIONS(4000), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4000), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4000), - [anon_sym_CARET] = ACTIONS(4000), - [anon_sym_POUND] = ACTIONS(113), - }, - [2707] = { - [sym_comment] = STATE(2707), - [anon_sym_export] = ACTIONS(6516), - [anon_sym_alias] = ACTIONS(6516), - [anon_sym_let] = ACTIONS(6516), - [anon_sym_let_DASHenv] = ACTIONS(6516), - [anon_sym_mut] = ACTIONS(6516), - [anon_sym_const] = ACTIONS(6516), - [anon_sym_SEMI] = ACTIONS(6516), - [sym_cmd_identifier] = ACTIONS(6516), - [anon_sym_LF] = ACTIONS(6518), - [anon_sym_def] = ACTIONS(6516), - [anon_sym_export_DASHenv] = ACTIONS(6516), - [anon_sym_extern] = ACTIONS(6516), - [anon_sym_module] = ACTIONS(6516), - [anon_sym_use] = ACTIONS(6516), - [anon_sym_LBRACK] = ACTIONS(6516), - [anon_sym_LPAREN] = ACTIONS(6516), - [anon_sym_RPAREN] = ACTIONS(6516), - [anon_sym_DOLLAR] = ACTIONS(6516), - [anon_sym_error] = ACTIONS(6516), - [anon_sym_DASH] = ACTIONS(6516), - [anon_sym_break] = ACTIONS(6516), - [anon_sym_continue] = ACTIONS(6516), - [anon_sym_for] = ACTIONS(6516), - [anon_sym_loop] = ACTIONS(6516), - [anon_sym_while] = ACTIONS(6516), - [anon_sym_do] = ACTIONS(6516), - [anon_sym_if] = ACTIONS(6516), - [anon_sym_match] = ACTIONS(6516), - [anon_sym_LBRACE] = ACTIONS(6516), - [anon_sym_RBRACE] = ACTIONS(6516), - [anon_sym_DOT_DOT] = ACTIONS(6516), - [anon_sym_try] = ACTIONS(6516), - [anon_sym_return] = ACTIONS(6516), - [anon_sym_source] = ACTIONS(6516), - [anon_sym_source_DASHenv] = ACTIONS(6516), - [anon_sym_register] = ACTIONS(6516), - [anon_sym_hide] = ACTIONS(6516), - [anon_sym_hide_DASHenv] = ACTIONS(6516), - [anon_sym_overlay] = ACTIONS(6516), - [anon_sym_where] = ACTIONS(6516), - [anon_sym_not] = ACTIONS(6516), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6516), - [anon_sym_DOT_DOT_LT] = ACTIONS(6516), - [anon_sym_null] = ACTIONS(6516), - [anon_sym_true] = ACTIONS(6516), - [anon_sym_false] = ACTIONS(6516), - [aux_sym__val_number_decimal_token1] = ACTIONS(6516), - [aux_sym__val_number_decimal_token2] = ACTIONS(6516), - [anon_sym_DOT2] = ACTIONS(6516), - [aux_sym__val_number_decimal_token3] = ACTIONS(6516), - [aux_sym__val_number_token1] = ACTIONS(6516), - [aux_sym__val_number_token2] = ACTIONS(6516), - [aux_sym__val_number_token3] = ACTIONS(6516), - [aux_sym__val_number_token4] = ACTIONS(6516), - [aux_sym__val_number_token5] = ACTIONS(6516), - [aux_sym__val_number_token6] = ACTIONS(6516), - [anon_sym_0b] = ACTIONS(6516), - [anon_sym_0o] = ACTIONS(6516), - [anon_sym_0x] = ACTIONS(6516), - [sym_val_date] = ACTIONS(6516), - [anon_sym_DQUOTE] = ACTIONS(6516), - [sym__str_single_quotes] = ACTIONS(6516), - [sym__str_back_ticks] = ACTIONS(6516), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6516), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6516), - [anon_sym_CARET] = ACTIONS(6516), - [anon_sym_POUND] = ACTIONS(113), - }, - [2708] = { - [sym_comment] = STATE(2708), - [anon_sym_export] = ACTIONS(6528), - [anon_sym_alias] = ACTIONS(6528), - [anon_sym_let] = ACTIONS(6528), - [anon_sym_let_DASHenv] = ACTIONS(6528), - [anon_sym_mut] = ACTIONS(6528), - [anon_sym_const] = ACTIONS(6528), - [anon_sym_SEMI] = ACTIONS(6528), - [sym_cmd_identifier] = ACTIONS(6528), - [anon_sym_LF] = ACTIONS(6530), - [anon_sym_def] = ACTIONS(6528), - [anon_sym_export_DASHenv] = ACTIONS(6528), - [anon_sym_extern] = ACTIONS(6528), - [anon_sym_module] = ACTIONS(6528), - [anon_sym_use] = ACTIONS(6528), - [anon_sym_LBRACK] = ACTIONS(6528), - [anon_sym_LPAREN] = ACTIONS(6528), - [anon_sym_RPAREN] = ACTIONS(6528), - [anon_sym_DOLLAR] = ACTIONS(6528), - [anon_sym_error] = ACTIONS(6528), - [anon_sym_DASH] = ACTIONS(6528), - [anon_sym_break] = ACTIONS(6528), - [anon_sym_continue] = ACTIONS(6528), - [anon_sym_for] = ACTIONS(6528), - [anon_sym_loop] = ACTIONS(6528), - [anon_sym_while] = ACTIONS(6528), - [anon_sym_do] = ACTIONS(6528), - [anon_sym_if] = ACTIONS(6528), - [anon_sym_match] = ACTIONS(6528), - [anon_sym_LBRACE] = ACTIONS(6528), - [anon_sym_RBRACE] = ACTIONS(6528), - [anon_sym_DOT_DOT] = ACTIONS(6528), - [anon_sym_try] = ACTIONS(6528), - [anon_sym_return] = ACTIONS(6528), - [anon_sym_source] = ACTIONS(6528), - [anon_sym_source_DASHenv] = ACTIONS(6528), - [anon_sym_register] = ACTIONS(6528), - [anon_sym_hide] = ACTIONS(6528), - [anon_sym_hide_DASHenv] = ACTIONS(6528), - [anon_sym_overlay] = ACTIONS(6528), - [anon_sym_where] = ACTIONS(6528), - [anon_sym_not] = ACTIONS(6528), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6528), - [anon_sym_DOT_DOT_LT] = ACTIONS(6528), - [anon_sym_null] = ACTIONS(6528), - [anon_sym_true] = ACTIONS(6528), - [anon_sym_false] = ACTIONS(6528), - [aux_sym__val_number_decimal_token1] = ACTIONS(6528), - [aux_sym__val_number_decimal_token2] = ACTIONS(6528), - [anon_sym_DOT2] = ACTIONS(6528), - [aux_sym__val_number_decimal_token3] = ACTIONS(6528), - [aux_sym__val_number_token1] = ACTIONS(6528), - [aux_sym__val_number_token2] = ACTIONS(6528), - [aux_sym__val_number_token3] = ACTIONS(6528), - [aux_sym__val_number_token4] = ACTIONS(6528), - [aux_sym__val_number_token5] = ACTIONS(6528), - [aux_sym__val_number_token6] = ACTIONS(6528), - [anon_sym_0b] = ACTIONS(6528), - [anon_sym_0o] = ACTIONS(6528), - [anon_sym_0x] = ACTIONS(6528), - [sym_val_date] = ACTIONS(6528), - [anon_sym_DQUOTE] = ACTIONS(6528), - [sym__str_single_quotes] = ACTIONS(6528), - [sym__str_back_ticks] = ACTIONS(6528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6528), - [anon_sym_CARET] = ACTIONS(6528), - [anon_sym_POUND] = ACTIONS(113), - }, - [2709] = { - [sym_comment] = STATE(2709), - [ts_builtin_sym_end] = ACTIONS(2439), - [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), - [anon_sym_SEMI] = ACTIONS(2437), - [sym_cmd_identifier] = ACTIONS(2437), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_not] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [aux_sym__immediate_decimal_token2] = ACTIONS(6245), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [anon_sym_DOT2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2437), - [anon_sym_0o] = ACTIONS(2437), - [anon_sym_0x] = ACTIONS(2437), - [sym_val_date] = 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_CARET] = ACTIONS(2437), - [anon_sym_POUND] = ACTIONS(113), - }, - [2710] = { - [sym_comment] = STATE(2710), - [anon_sym_export] = ACTIONS(6532), - [anon_sym_alias] = ACTIONS(6532), - [anon_sym_let] = ACTIONS(6532), - [anon_sym_let_DASHenv] = ACTIONS(6532), - [anon_sym_mut] = ACTIONS(6532), - [anon_sym_const] = ACTIONS(6532), - [anon_sym_SEMI] = ACTIONS(6532), - [sym_cmd_identifier] = ACTIONS(6532), - [anon_sym_LF] = ACTIONS(6534), - [anon_sym_def] = ACTIONS(6532), - [anon_sym_export_DASHenv] = ACTIONS(6532), - [anon_sym_extern] = ACTIONS(6532), - [anon_sym_module] = ACTIONS(6532), - [anon_sym_use] = ACTIONS(6532), - [anon_sym_LBRACK] = ACTIONS(6532), - [anon_sym_LPAREN] = ACTIONS(6532), - [anon_sym_RPAREN] = ACTIONS(6532), - [anon_sym_DOLLAR] = ACTIONS(6532), - [anon_sym_error] = ACTIONS(6532), - [anon_sym_DASH] = ACTIONS(6532), - [anon_sym_break] = ACTIONS(6532), - [anon_sym_continue] = ACTIONS(6532), - [anon_sym_for] = ACTIONS(6532), - [anon_sym_loop] = ACTIONS(6532), - [anon_sym_while] = ACTIONS(6532), - [anon_sym_do] = ACTIONS(6532), - [anon_sym_if] = ACTIONS(6532), - [anon_sym_match] = ACTIONS(6532), - [anon_sym_LBRACE] = ACTIONS(6532), - [anon_sym_RBRACE] = ACTIONS(6532), - [anon_sym_DOT_DOT] = ACTIONS(6532), - [anon_sym_try] = ACTIONS(6532), - [anon_sym_return] = ACTIONS(6532), - [anon_sym_source] = ACTIONS(6532), - [anon_sym_source_DASHenv] = ACTIONS(6532), - [anon_sym_register] = ACTIONS(6532), - [anon_sym_hide] = ACTIONS(6532), - [anon_sym_hide_DASHenv] = ACTIONS(6532), - [anon_sym_overlay] = ACTIONS(6532), - [anon_sym_where] = ACTIONS(6532), - [anon_sym_not] = ACTIONS(6532), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6532), - [anon_sym_DOT_DOT_LT] = ACTIONS(6532), - [anon_sym_null] = ACTIONS(6532), - [anon_sym_true] = ACTIONS(6532), - [anon_sym_false] = ACTIONS(6532), - [aux_sym__val_number_decimal_token1] = ACTIONS(6532), - [aux_sym__val_number_decimal_token2] = ACTIONS(6532), - [anon_sym_DOT2] = ACTIONS(6532), - [aux_sym__val_number_decimal_token3] = ACTIONS(6532), - [aux_sym__val_number_token1] = ACTIONS(6532), - [aux_sym__val_number_token2] = ACTIONS(6532), - [aux_sym__val_number_token3] = ACTIONS(6532), - [aux_sym__val_number_token4] = ACTIONS(6532), - [aux_sym__val_number_token5] = ACTIONS(6532), - [aux_sym__val_number_token6] = ACTIONS(6532), - [anon_sym_0b] = ACTIONS(6532), - [anon_sym_0o] = ACTIONS(6532), - [anon_sym_0x] = ACTIONS(6532), - [sym_val_date] = ACTIONS(6532), - [anon_sym_DQUOTE] = ACTIONS(6532), - [sym__str_single_quotes] = ACTIONS(6532), - [sym__str_back_ticks] = ACTIONS(6532), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6532), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6532), - [anon_sym_CARET] = ACTIONS(6532), - [anon_sym_POUND] = ACTIONS(113), - }, - [2711] = { - [sym__terminator] = STATE(2696), - [sym_comment] = STATE(2711), - [aux_sym__block_body_repeat1] = STATE(1799), - [anon_sym_export] = ACTIONS(6536), - [anon_sym_alias] = ACTIONS(6536), - [anon_sym_let] = ACTIONS(6536), - [anon_sym_let_DASHenv] = ACTIONS(6536), - [anon_sym_mut] = ACTIONS(6536), - [anon_sym_const] = ACTIONS(6536), - [anon_sym_SEMI] = ACTIONS(6538), - [sym_cmd_identifier] = ACTIONS(6536), - [anon_sym_LF] = ACTIONS(6540), - [anon_sym_def] = ACTIONS(6536), - [anon_sym_export_DASHenv] = ACTIONS(6536), - [anon_sym_extern] = ACTIONS(6536), - [anon_sym_module] = ACTIONS(6536), - [anon_sym_use] = ACTIONS(6536), - [anon_sym_LBRACK] = ACTIONS(6536), - [anon_sym_LPAREN] = ACTIONS(6536), - [anon_sym_DOLLAR] = ACTIONS(6536), - [anon_sym_error] = ACTIONS(6536), - [anon_sym_DASH] = ACTIONS(6536), - [anon_sym_break] = ACTIONS(6536), - [anon_sym_continue] = ACTIONS(6536), - [anon_sym_for] = ACTIONS(6536), - [anon_sym_loop] = ACTIONS(6536), - [anon_sym_while] = ACTIONS(6536), - [anon_sym_do] = ACTIONS(6536), - [anon_sym_if] = ACTIONS(6536), - [anon_sym_match] = ACTIONS(6536), - [anon_sym_LBRACE] = ACTIONS(6536), - [anon_sym_DOT_DOT] = ACTIONS(6536), - [anon_sym_try] = ACTIONS(6536), - [anon_sym_return] = ACTIONS(6536), - [anon_sym_source] = ACTIONS(6536), - [anon_sym_source_DASHenv] = ACTIONS(6536), - [anon_sym_register] = ACTIONS(6536), - [anon_sym_hide] = ACTIONS(6536), - [anon_sym_hide_DASHenv] = ACTIONS(6536), - [anon_sym_overlay] = ACTIONS(6536), - [anon_sym_where] = ACTIONS(6536), - [anon_sym_not] = ACTIONS(6536), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6536), - [anon_sym_DOT_DOT_LT] = ACTIONS(6536), - [anon_sym_null] = ACTIONS(6536), - [anon_sym_true] = ACTIONS(6536), - [anon_sym_false] = ACTIONS(6536), - [aux_sym__val_number_decimal_token1] = ACTIONS(6536), - [aux_sym__val_number_decimal_token2] = ACTIONS(6536), - [anon_sym_DOT2] = ACTIONS(6536), - [aux_sym__val_number_decimal_token3] = ACTIONS(6536), - [aux_sym__val_number_token1] = ACTIONS(6536), - [aux_sym__val_number_token2] = ACTIONS(6536), - [aux_sym__val_number_token3] = ACTIONS(6536), - [aux_sym__val_number_token4] = ACTIONS(6536), - [aux_sym__val_number_token5] = ACTIONS(6536), - [aux_sym__val_number_token6] = ACTIONS(6536), - [anon_sym_0b] = ACTIONS(6536), - [anon_sym_0o] = ACTIONS(6536), - [anon_sym_0x] = ACTIONS(6536), - [sym_val_date] = ACTIONS(6536), - [anon_sym_DQUOTE] = ACTIONS(6536), - [sym__str_single_quotes] = ACTIONS(6536), - [sym__str_back_ticks] = ACTIONS(6536), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6536), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6536), - [anon_sym_CARET] = ACTIONS(6536), - [anon_sym_POUND] = ACTIONS(113), - }, - [2712] = { - [sym_comment] = STATE(2712), - [anon_sym_export] = ACTIONS(3949), - [anon_sym_alias] = ACTIONS(3949), - [anon_sym_let] = ACTIONS(3949), - [anon_sym_let_DASHenv] = ACTIONS(3949), - [anon_sym_mut] = ACTIONS(3949), - [anon_sym_const] = ACTIONS(3949), - [anon_sym_SEMI] = ACTIONS(3949), - [sym_cmd_identifier] = ACTIONS(3949), - [anon_sym_LF] = ACTIONS(3951), - [anon_sym_def] = ACTIONS(3949), - [anon_sym_export_DASHenv] = ACTIONS(3949), - [anon_sym_extern] = ACTIONS(3949), - [anon_sym_module] = ACTIONS(3949), - [anon_sym_use] = ACTIONS(3949), - [anon_sym_LBRACK] = ACTIONS(3949), - [anon_sym_LPAREN] = ACTIONS(3949), - [anon_sym_RPAREN] = ACTIONS(3949), - [anon_sym_DOLLAR] = ACTIONS(3949), - [anon_sym_error] = ACTIONS(3949), - [anon_sym_DASH] = ACTIONS(3949), - [anon_sym_break] = ACTIONS(3949), - [anon_sym_continue] = ACTIONS(3949), - [anon_sym_for] = ACTIONS(3949), - [anon_sym_loop] = ACTIONS(3949), - [anon_sym_while] = ACTIONS(3949), - [anon_sym_do] = ACTIONS(3949), - [anon_sym_if] = ACTIONS(3949), - [anon_sym_match] = ACTIONS(3949), - [anon_sym_LBRACE] = ACTIONS(3949), - [anon_sym_RBRACE] = ACTIONS(3949), - [anon_sym_DOT_DOT] = ACTIONS(3949), - [anon_sym_try] = ACTIONS(3949), - [anon_sym_return] = ACTIONS(3949), - [anon_sym_source] = ACTIONS(3949), - [anon_sym_source_DASHenv] = ACTIONS(3949), - [anon_sym_register] = ACTIONS(3949), - [anon_sym_hide] = ACTIONS(3949), - [anon_sym_hide_DASHenv] = ACTIONS(3949), - [anon_sym_overlay] = ACTIONS(3949), - [anon_sym_where] = ACTIONS(3949), - [anon_sym_not] = ACTIONS(3949), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3949), - [anon_sym_DOT_DOT_LT] = ACTIONS(3949), - [anon_sym_null] = ACTIONS(3949), - [anon_sym_true] = ACTIONS(3949), - [anon_sym_false] = ACTIONS(3949), - [aux_sym__val_number_decimal_token1] = ACTIONS(3949), - [aux_sym__val_number_decimal_token2] = ACTIONS(3949), - [anon_sym_DOT2] = ACTIONS(3949), - [aux_sym__val_number_decimal_token3] = ACTIONS(3949), - [aux_sym__val_number_token1] = ACTIONS(3949), - [aux_sym__val_number_token2] = ACTIONS(3949), - [aux_sym__val_number_token3] = ACTIONS(3949), - [aux_sym__val_number_token4] = ACTIONS(3949), - [aux_sym__val_number_token5] = ACTIONS(3949), - [aux_sym__val_number_token6] = ACTIONS(3949), - [anon_sym_0b] = ACTIONS(3949), - [anon_sym_0o] = ACTIONS(3949), - [anon_sym_0x] = ACTIONS(3949), - [sym_val_date] = ACTIONS(3949), - [anon_sym_DQUOTE] = ACTIONS(3949), - [sym__str_single_quotes] = ACTIONS(3949), - [sym__str_back_ticks] = ACTIONS(3949), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3949), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3949), - [anon_sym_CARET] = ACTIONS(3949), - [anon_sym_POUND] = ACTIONS(113), - }, - [2713] = { - [sym_comment] = STATE(2713), - [anon_sym_export] = ACTIONS(3964), - [anon_sym_alias] = ACTIONS(3964), - [anon_sym_let] = ACTIONS(3964), - [anon_sym_let_DASHenv] = ACTIONS(3964), - [anon_sym_mut] = ACTIONS(3964), - [anon_sym_const] = ACTIONS(3964), - [anon_sym_SEMI] = ACTIONS(3964), - [sym_cmd_identifier] = ACTIONS(3964), - [anon_sym_LF] = ACTIONS(3966), - [anon_sym_def] = ACTIONS(3964), - [anon_sym_export_DASHenv] = ACTIONS(3964), - [anon_sym_extern] = ACTIONS(3964), - [anon_sym_module] = ACTIONS(3964), - [anon_sym_use] = ACTIONS(3964), - [anon_sym_LBRACK] = ACTIONS(3964), - [anon_sym_LPAREN] = ACTIONS(3964), - [anon_sym_RPAREN] = ACTIONS(3964), - [anon_sym_DOLLAR] = ACTIONS(3964), - [anon_sym_error] = ACTIONS(3964), - [anon_sym_DASH] = ACTIONS(3964), - [anon_sym_break] = ACTIONS(3964), - [anon_sym_continue] = ACTIONS(3964), - [anon_sym_for] = ACTIONS(3964), - [anon_sym_loop] = ACTIONS(3964), - [anon_sym_while] = ACTIONS(3964), - [anon_sym_do] = ACTIONS(3964), - [anon_sym_if] = ACTIONS(3964), - [anon_sym_match] = ACTIONS(3964), - [anon_sym_LBRACE] = ACTIONS(3964), - [anon_sym_RBRACE] = ACTIONS(3964), - [anon_sym_DOT_DOT] = ACTIONS(3964), - [anon_sym_try] = ACTIONS(3964), - [anon_sym_return] = ACTIONS(3964), - [anon_sym_source] = ACTIONS(3964), - [anon_sym_source_DASHenv] = ACTIONS(3964), - [anon_sym_register] = ACTIONS(3964), - [anon_sym_hide] = ACTIONS(3964), - [anon_sym_hide_DASHenv] = ACTIONS(3964), - [anon_sym_overlay] = ACTIONS(3964), - [anon_sym_where] = ACTIONS(3964), - [anon_sym_not] = ACTIONS(3964), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3964), - [anon_sym_DOT_DOT_LT] = ACTIONS(3964), - [anon_sym_null] = ACTIONS(3964), - [anon_sym_true] = ACTIONS(3964), - [anon_sym_false] = ACTIONS(3964), - [aux_sym__val_number_decimal_token1] = ACTIONS(3964), - [aux_sym__val_number_decimal_token2] = ACTIONS(3964), - [anon_sym_DOT2] = ACTIONS(3964), - [aux_sym__val_number_decimal_token3] = ACTIONS(3964), - [aux_sym__val_number_token1] = ACTIONS(3964), - [aux_sym__val_number_token2] = ACTIONS(3964), - [aux_sym__val_number_token3] = ACTIONS(3964), - [aux_sym__val_number_token4] = ACTIONS(3964), - [aux_sym__val_number_token5] = ACTIONS(3964), - [aux_sym__val_number_token6] = ACTIONS(3964), - [anon_sym_0b] = ACTIONS(3964), - [anon_sym_0o] = ACTIONS(3964), - [anon_sym_0x] = ACTIONS(3964), - [sym_val_date] = ACTIONS(3964), - [anon_sym_DQUOTE] = ACTIONS(3964), - [sym__str_single_quotes] = ACTIONS(3964), - [sym__str_back_ticks] = ACTIONS(3964), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3964), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3964), - [anon_sym_CARET] = ACTIONS(3964), - [anon_sym_POUND] = ACTIONS(113), - }, - [2714] = { - [sym_comment] = STATE(2714), - [anon_sym_export] = ACTIONS(4043), - [anon_sym_alias] = ACTIONS(4043), - [anon_sym_let] = ACTIONS(4043), - [anon_sym_let_DASHenv] = ACTIONS(4043), - [anon_sym_mut] = ACTIONS(4043), - [anon_sym_const] = ACTIONS(4043), - [anon_sym_SEMI] = ACTIONS(4043), - [sym_cmd_identifier] = ACTIONS(4043), - [anon_sym_LF] = ACTIONS(4045), - [anon_sym_def] = ACTIONS(4043), - [anon_sym_export_DASHenv] = ACTIONS(4043), - [anon_sym_extern] = ACTIONS(4043), - [anon_sym_module] = ACTIONS(4043), - [anon_sym_use] = ACTIONS(4043), - [anon_sym_LBRACK] = ACTIONS(4043), - [anon_sym_LPAREN] = ACTIONS(4043), - [anon_sym_RPAREN] = ACTIONS(4043), - [anon_sym_DOLLAR] = ACTIONS(4043), - [anon_sym_error] = ACTIONS(4043), - [anon_sym_DASH] = ACTIONS(4043), - [anon_sym_break] = ACTIONS(4043), - [anon_sym_continue] = ACTIONS(4043), - [anon_sym_for] = ACTIONS(4043), - [anon_sym_loop] = ACTIONS(4043), - [anon_sym_while] = ACTIONS(4043), - [anon_sym_do] = ACTIONS(4043), - [anon_sym_if] = ACTIONS(4043), - [anon_sym_match] = ACTIONS(4043), - [anon_sym_LBRACE] = ACTIONS(4043), - [anon_sym_RBRACE] = ACTIONS(4043), - [anon_sym_DOT_DOT] = ACTIONS(4043), - [anon_sym_try] = ACTIONS(4043), - [anon_sym_return] = ACTIONS(4043), - [anon_sym_source] = ACTIONS(4043), - [anon_sym_source_DASHenv] = ACTIONS(4043), - [anon_sym_register] = ACTIONS(4043), - [anon_sym_hide] = ACTIONS(4043), - [anon_sym_hide_DASHenv] = ACTIONS(4043), - [anon_sym_overlay] = ACTIONS(4043), - [anon_sym_where] = ACTIONS(4043), - [anon_sym_not] = ACTIONS(4043), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4043), - [anon_sym_DOT_DOT_LT] = ACTIONS(4043), - [anon_sym_null] = ACTIONS(4043), - [anon_sym_true] = ACTIONS(4043), - [anon_sym_false] = ACTIONS(4043), - [aux_sym__val_number_decimal_token1] = ACTIONS(4043), - [aux_sym__val_number_decimal_token2] = ACTIONS(4043), - [anon_sym_DOT2] = ACTIONS(4043), - [aux_sym__val_number_decimal_token3] = ACTIONS(4043), - [aux_sym__val_number_token1] = ACTIONS(4043), - [aux_sym__val_number_token2] = ACTIONS(4043), - [aux_sym__val_number_token3] = ACTIONS(4043), - [aux_sym__val_number_token4] = ACTIONS(4043), - [aux_sym__val_number_token5] = ACTIONS(4043), - [aux_sym__val_number_token6] = ACTIONS(4043), - [anon_sym_0b] = ACTIONS(4043), - [anon_sym_0o] = ACTIONS(4043), - [anon_sym_0x] = ACTIONS(4043), - [sym_val_date] = ACTIONS(4043), - [anon_sym_DQUOTE] = ACTIONS(4043), - [sym__str_single_quotes] = ACTIONS(4043), - [sym__str_back_ticks] = ACTIONS(4043), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4043), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4043), - [anon_sym_CARET] = ACTIONS(4043), - [anon_sym_POUND] = ACTIONS(113), - }, - [2715] = { - [sym_comment] = STATE(2715), - [anon_sym_export] = ACTIONS(6542), - [anon_sym_alias] = ACTIONS(6542), - [anon_sym_let] = ACTIONS(6542), - [anon_sym_let_DASHenv] = ACTIONS(6542), - [anon_sym_mut] = ACTIONS(6542), - [anon_sym_const] = ACTIONS(6542), - [anon_sym_SEMI] = ACTIONS(6542), - [sym_cmd_identifier] = ACTIONS(6542), - [anon_sym_LF] = ACTIONS(6544), - [anon_sym_def] = ACTIONS(6542), - [anon_sym_export_DASHenv] = ACTIONS(6542), - [anon_sym_extern] = ACTIONS(6542), - [anon_sym_module] = ACTIONS(6542), - [anon_sym_use] = ACTIONS(6542), - [anon_sym_LBRACK] = ACTIONS(6542), - [anon_sym_LPAREN] = ACTIONS(6542), - [anon_sym_RPAREN] = ACTIONS(6542), - [anon_sym_DOLLAR] = ACTIONS(6542), - [anon_sym_error] = ACTIONS(6542), - [anon_sym_DASH] = ACTIONS(6542), - [anon_sym_break] = ACTIONS(6542), - [anon_sym_continue] = ACTIONS(6542), - [anon_sym_for] = ACTIONS(6542), - [anon_sym_loop] = ACTIONS(6542), - [anon_sym_while] = ACTIONS(6542), - [anon_sym_do] = ACTIONS(6542), - [anon_sym_if] = ACTIONS(6542), - [anon_sym_match] = ACTIONS(6542), - [anon_sym_LBRACE] = ACTIONS(6542), - [anon_sym_RBRACE] = ACTIONS(6542), - [anon_sym_DOT_DOT] = ACTIONS(6542), - [anon_sym_try] = ACTIONS(6542), - [anon_sym_return] = ACTIONS(6542), - [anon_sym_source] = ACTIONS(6542), - [anon_sym_source_DASHenv] = ACTIONS(6542), - [anon_sym_register] = ACTIONS(6542), - [anon_sym_hide] = ACTIONS(6542), - [anon_sym_hide_DASHenv] = ACTIONS(6542), - [anon_sym_overlay] = ACTIONS(6542), - [anon_sym_where] = ACTIONS(6542), - [anon_sym_not] = ACTIONS(6542), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6542), - [anon_sym_DOT_DOT_LT] = ACTIONS(6542), - [anon_sym_null] = ACTIONS(6542), - [anon_sym_true] = ACTIONS(6542), - [anon_sym_false] = ACTIONS(6542), - [aux_sym__val_number_decimal_token1] = ACTIONS(6542), - [aux_sym__val_number_decimal_token2] = ACTIONS(6542), - [anon_sym_DOT2] = ACTIONS(6542), - [aux_sym__val_number_decimal_token3] = ACTIONS(6542), - [aux_sym__val_number_token1] = ACTIONS(6542), - [aux_sym__val_number_token2] = ACTIONS(6542), - [aux_sym__val_number_token3] = ACTIONS(6542), - [aux_sym__val_number_token4] = ACTIONS(6542), - [aux_sym__val_number_token5] = ACTIONS(6542), - [aux_sym__val_number_token6] = ACTIONS(6542), - [anon_sym_0b] = ACTIONS(6542), - [anon_sym_0o] = ACTIONS(6542), - [anon_sym_0x] = ACTIONS(6542), - [sym_val_date] = ACTIONS(6542), - [anon_sym_DQUOTE] = ACTIONS(6542), - [sym__str_single_quotes] = ACTIONS(6542), - [sym__str_back_ticks] = ACTIONS(6542), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6542), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6542), - [anon_sym_CARET] = ACTIONS(6542), - [anon_sym_POUND] = ACTIONS(113), - }, - [2716] = { - [sym_cell_path] = STATE(3080), - [sym_path] = STATE(2693), - [sym_comment] = STATE(2716), - [ts_builtin_sym_end] = ACTIONS(1156), - [anon_sym_SEMI] = ACTIONS(1154), - [anon_sym_LF] = ACTIONS(1156), - [anon_sym_LBRACK] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_PIPE] = ACTIONS(1154), - [anon_sym_DOLLAR] = ACTIONS(1154), - [anon_sym_GT] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [anon_sym_DASH] = ACTIONS(1154), - [anon_sym_in] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(1154), - [anon_sym_DOT_DOT] = ACTIONS(1154), - [anon_sym_STAR] = ACTIONS(1154), - [anon_sym_STAR_STAR] = ACTIONS(1154), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_SLASH] = ACTIONS(1154), - [anon_sym_mod] = ACTIONS(1154), - [anon_sym_SLASH_SLASH] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1154), - [anon_sym_bit_DASHshl] = ACTIONS(1154), - [anon_sym_bit_DASHshr] = ACTIONS(1154), - [anon_sym_EQ_EQ] = ACTIONS(1154), - [anon_sym_BANG_EQ] = ACTIONS(1154), - [anon_sym_LT2] = ACTIONS(1154), - [anon_sym_LT_EQ] = ACTIONS(1154), - [anon_sym_GT_EQ] = ACTIONS(1154), - [anon_sym_not_DASHin] = ACTIONS(1154), - [anon_sym_starts_DASHwith] = ACTIONS(1154), - [anon_sym_ends_DASHwith] = ACTIONS(1154), - [anon_sym_EQ_TILDE] = ACTIONS(1154), - [anon_sym_BANG_TILDE] = ACTIONS(1154), - [anon_sym_bit_DASHand] = ACTIONS(1154), - [anon_sym_bit_DASHxor] = ACTIONS(1154), - [anon_sym_bit_DASHor] = ACTIONS(1154), - [anon_sym_and] = ACTIONS(1154), - [anon_sym_xor] = ACTIONS(1154), - [anon_sym_or] = ACTIONS(1154), - [anon_sym_not] = ACTIONS(1154), - [anon_sym_DOT] = ACTIONS(6363), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1154), - [anon_sym_DOT_DOT_LT] = ACTIONS(1154), - [anon_sym_null] = ACTIONS(1154), - [anon_sym_true] = ACTIONS(1154), - [anon_sym_false] = ACTIONS(1154), - [aux_sym__val_number_decimal_token1] = ACTIONS(1154), - [aux_sym__val_number_decimal_token2] = ACTIONS(1154), - [anon_sym_DOT2] = ACTIONS(1154), - [aux_sym__val_number_decimal_token3] = ACTIONS(1154), - [aux_sym__val_number_token1] = ACTIONS(1154), - [aux_sym__val_number_token2] = ACTIONS(1154), - [aux_sym__val_number_token3] = ACTIONS(1154), - [aux_sym__val_number_token4] = ACTIONS(1154), - [aux_sym__val_number_token5] = ACTIONS(1154), - [aux_sym__val_number_token6] = ACTIONS(1154), - [anon_sym_0b] = ACTIONS(1154), - [anon_sym_0o] = ACTIONS(1154), - [anon_sym_0x] = ACTIONS(1154), - [sym_val_date] = ACTIONS(1154), - [anon_sym_DQUOTE] = ACTIONS(1154), - [sym__str_single_quotes] = ACTIONS(1154), - [sym__str_back_ticks] = ACTIONS(1154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1154), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1154), - [anon_sym_POUND] = ACTIONS(113), - }, - [2717] = { - [sym_comment] = STATE(2717), - [ts_builtin_sym_end] = ACTIONS(1160), - [anon_sym_SEMI] = ACTIONS(1158), - [anon_sym_LF] = ACTIONS(1160), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_LPAREN] = ACTIONS(1158), - [anon_sym_PIPE] = ACTIONS(1158), - [anon_sym_DOLLAR] = ACTIONS(1158), - [anon_sym_GT] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_in] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1158), - [anon_sym_DOT_DOT] = ACTIONS(1158), - [anon_sym_STAR] = ACTIONS(1158), - [anon_sym_STAR_STAR] = ACTIONS(1158), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_SLASH] = ACTIONS(1158), - [anon_sym_mod] = ACTIONS(1158), - [anon_sym_SLASH_SLASH] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1158), - [anon_sym_bit_DASHshl] = ACTIONS(1158), - [anon_sym_bit_DASHshr] = ACTIONS(1158), - [anon_sym_EQ_EQ] = ACTIONS(1158), - [anon_sym_BANG_EQ] = ACTIONS(1158), - [anon_sym_LT2] = ACTIONS(1158), - [anon_sym_LT_EQ] = ACTIONS(1158), - [anon_sym_GT_EQ] = ACTIONS(1158), - [anon_sym_not_DASHin] = ACTIONS(1158), - [anon_sym_starts_DASHwith] = ACTIONS(1158), - [anon_sym_ends_DASHwith] = ACTIONS(1158), - [anon_sym_EQ_TILDE] = ACTIONS(1158), - [anon_sym_BANG_TILDE] = ACTIONS(1158), - [anon_sym_bit_DASHand] = ACTIONS(1158), - [anon_sym_bit_DASHxor] = ACTIONS(1158), - [anon_sym_bit_DASHor] = ACTIONS(1158), - [anon_sym_and] = ACTIONS(1158), - [anon_sym_xor] = ACTIONS(1158), - [anon_sym_or] = ACTIONS(1158), - [anon_sym_not] = ACTIONS(1158), - [anon_sym_DOT_DOT2] = ACTIONS(6546), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1158), - [anon_sym_DOT_DOT_LT] = ACTIONS(1158), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(6548), - [anon_sym_DOT_DOT_LT2] = ACTIONS(6548), - [anon_sym_null] = ACTIONS(1158), - [anon_sym_true] = ACTIONS(1158), - [anon_sym_false] = ACTIONS(1158), - [aux_sym__val_number_decimal_token1] = ACTIONS(1158), - [aux_sym__val_number_decimal_token2] = ACTIONS(1158), - [anon_sym_DOT2] = ACTIONS(1158), - [aux_sym__val_number_decimal_token3] = ACTIONS(1158), - [aux_sym__val_number_token1] = ACTIONS(1158), - [aux_sym__val_number_token2] = ACTIONS(1158), - [aux_sym__val_number_token3] = ACTIONS(1158), - [aux_sym__val_number_token4] = ACTIONS(1158), - [aux_sym__val_number_token5] = ACTIONS(1158), - [aux_sym__val_number_token6] = ACTIONS(1158), - [anon_sym_0b] = ACTIONS(1158), - [anon_sym_0o] = ACTIONS(1158), - [anon_sym_0x] = ACTIONS(1158), - [sym_val_date] = ACTIONS(1158), - [anon_sym_DQUOTE] = ACTIONS(1158), - [sym__str_single_quotes] = ACTIONS(1158), - [sym__str_back_ticks] = ACTIONS(1158), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1158), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1158), - [anon_sym_POUND] = ACTIONS(113), - }, - [2718] = { - [sym_match_arm] = STATE(4736), - [sym_match_pattern] = STATE(11092), - [sym__match_pattern] = STATE(8841), - [sym__match_pattern_expression] = STATE(10370), - [sym__match_pattern_value] = STATE(10371), - [sym__match_pattern_list] = STATE(10378), - [sym__match_pattern_record] = STATE(10383), - [sym__expr_unary_minus] = STATE(10390), - [sym_expr_parenthesized] = STATE(8527), - [sym_val_range] = STATE(10371), - [sym__val_range] = STATE(10473), - [sym_val_nothing] = STATE(10398), - [sym_val_bool] = STATE(9683), - [sym_val_variable] = STATE(8532), - [sym__var] = STATE(4486), - [sym_val_number] = STATE(10398), - [sym__val_number_decimal] = STATE(7782), - [sym__val_number] = STATE(5463), - [sym_val_duration] = STATE(10398), - [sym_val_filesize] = STATE(10398), - [sym_val_binary] = STATE(10398), - [sym_val_string] = STATE(10398), - [sym__str_double_quotes] = STATE(5541), - [sym_val_table] = STATE(10398), - [sym_unquoted] = STATE(10403), - [sym__unquoted_anonymous_prefix] = STATE(10967), - [sym_comment] = STATE(2718), - [aux_sym_ctrl_match_repeat1] = STATE(2718), - [anon_sym_LBRACK] = ACTIONS(6550), - [anon_sym_LPAREN] = ACTIONS(6553), - [anon_sym_DOLLAR] = ACTIONS(6556), - [anon_sym_DASH] = ACTIONS(6559), - [anon_sym_LBRACE] = ACTIONS(6562), - [anon_sym_RBRACE] = ACTIONS(6565), - [anon_sym__] = ACTIONS(6567), - [anon_sym_DOT_DOT] = ACTIONS(6570), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6573), - [anon_sym_DOT_DOT_LT] = ACTIONS(6573), - [anon_sym_null] = ACTIONS(6576), - [anon_sym_true] = ACTIONS(6579), - [anon_sym_false] = ACTIONS(6579), - [aux_sym__val_number_decimal_token1] = ACTIONS(6582), - [aux_sym__val_number_decimal_token2] = ACTIONS(6585), - [anon_sym_DOT2] = ACTIONS(6588), - [aux_sym__val_number_decimal_token3] = ACTIONS(6591), - [aux_sym__val_number_token1] = ACTIONS(6594), - [aux_sym__val_number_token2] = ACTIONS(6594), - [aux_sym__val_number_token3] = ACTIONS(6594), - [aux_sym__val_number_token4] = ACTIONS(6597), - [aux_sym__val_number_token5] = ACTIONS(6597), - [aux_sym__val_number_token6] = ACTIONS(6597), - [anon_sym_0b] = ACTIONS(6600), - [anon_sym_0o] = ACTIONS(6603), - [anon_sym_0x] = ACTIONS(6603), - [sym_val_date] = ACTIONS(6606), - [anon_sym_DQUOTE] = ACTIONS(6609), - [sym__str_single_quotes] = ACTIONS(6612), - [sym__str_back_ticks] = ACTIONS(6612), - [anon_sym_err_GT] = ACTIONS(6615), - [anon_sym_out_GT] = ACTIONS(6615), - [anon_sym_e_GT] = ACTIONS(6615), - [anon_sym_o_GT] = ACTIONS(6615), - [anon_sym_err_PLUSout_GT] = ACTIONS(6615), - [anon_sym_out_PLUSerr_GT] = ACTIONS(6615), - [anon_sym_o_PLUSe_GT] = ACTIONS(6615), - [anon_sym_e_PLUSo_GT] = ACTIONS(6615), - [aux_sym_unquoted_token1] = ACTIONS(6618), - [anon_sym_POUND] = ACTIONS(3), - }, - [2719] = { - [sym_comment] = STATE(2719), - [anon_sym_export] = ACTIONS(3960), - [anon_sym_alias] = ACTIONS(3960), - [anon_sym_let] = ACTIONS(3960), - [anon_sym_let_DASHenv] = ACTIONS(3960), - [anon_sym_mut] = ACTIONS(3960), - [anon_sym_const] = ACTIONS(3960), - [anon_sym_SEMI] = ACTIONS(3960), - [sym_cmd_identifier] = ACTIONS(3960), - [anon_sym_LF] = ACTIONS(3962), - [anon_sym_def] = ACTIONS(3960), - [anon_sym_export_DASHenv] = ACTIONS(3960), - [anon_sym_extern] = ACTIONS(3960), - [anon_sym_module] = ACTIONS(3960), - [anon_sym_use] = ACTIONS(3960), - [anon_sym_LBRACK] = ACTIONS(3960), - [anon_sym_LPAREN] = ACTIONS(3960), - [anon_sym_RPAREN] = ACTIONS(3960), - [anon_sym_DOLLAR] = ACTIONS(3960), - [anon_sym_error] = ACTIONS(3960), - [anon_sym_DASH] = ACTIONS(3960), - [anon_sym_break] = ACTIONS(3960), - [anon_sym_continue] = ACTIONS(3960), - [anon_sym_for] = ACTIONS(3960), - [anon_sym_loop] = ACTIONS(3960), - [anon_sym_while] = ACTIONS(3960), - [anon_sym_do] = ACTIONS(3960), - [anon_sym_if] = ACTIONS(3960), - [anon_sym_match] = ACTIONS(3960), - [anon_sym_LBRACE] = ACTIONS(3960), - [anon_sym_RBRACE] = ACTIONS(3960), - [anon_sym_DOT_DOT] = ACTIONS(3960), - [anon_sym_try] = ACTIONS(3960), - [anon_sym_return] = ACTIONS(3960), - [anon_sym_source] = ACTIONS(3960), - [anon_sym_source_DASHenv] = ACTIONS(3960), - [anon_sym_register] = ACTIONS(3960), - [anon_sym_hide] = ACTIONS(3960), - [anon_sym_hide_DASHenv] = ACTIONS(3960), - [anon_sym_overlay] = ACTIONS(3960), - [anon_sym_where] = ACTIONS(3960), - [anon_sym_not] = ACTIONS(3960), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3960), - [anon_sym_DOT_DOT_LT] = ACTIONS(3960), - [anon_sym_null] = ACTIONS(3960), - [anon_sym_true] = ACTIONS(3960), - [anon_sym_false] = ACTIONS(3960), - [aux_sym__val_number_decimal_token1] = ACTIONS(3960), - [aux_sym__val_number_decimal_token2] = ACTIONS(3960), - [anon_sym_DOT2] = ACTIONS(3960), - [aux_sym__val_number_decimal_token3] = ACTIONS(3960), - [aux_sym__val_number_token1] = ACTIONS(3960), - [aux_sym__val_number_token2] = ACTIONS(3960), - [aux_sym__val_number_token3] = ACTIONS(3960), - [aux_sym__val_number_token4] = ACTIONS(3960), - [aux_sym__val_number_token5] = ACTIONS(3960), - [aux_sym__val_number_token6] = ACTIONS(3960), - [anon_sym_0b] = ACTIONS(3960), - [anon_sym_0o] = ACTIONS(3960), - [anon_sym_0x] = ACTIONS(3960), - [sym_val_date] = ACTIONS(3960), - [anon_sym_DQUOTE] = ACTIONS(3960), - [sym__str_single_quotes] = ACTIONS(3960), - [sym__str_back_ticks] = ACTIONS(3960), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3960), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3960), - [anon_sym_CARET] = ACTIONS(3960), - [anon_sym_POUND] = ACTIONS(113), - }, - [2720] = { - [sym_comment] = STATE(2720), - [ts_builtin_sym_end] = ACTIONS(2549), - [anon_sym_export] = ACTIONS(2547), - [anon_sym_alias] = ACTIONS(2547), - [anon_sym_let] = ACTIONS(2547), - [anon_sym_let_DASHenv] = ACTIONS(2547), - [anon_sym_mut] = ACTIONS(2547), - [anon_sym_const] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [sym_cmd_identifier] = ACTIONS(2547), - [anon_sym_LF] = ACTIONS(2549), - [anon_sym_def] = ACTIONS(2547), - [anon_sym_export_DASHenv] = ACTIONS(2547), - [anon_sym_extern] = ACTIONS(2547), - [anon_sym_module] = ACTIONS(2547), - [anon_sym_use] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_DOLLAR] = ACTIONS(2547), - [anon_sym_error] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_break] = ACTIONS(2547), - [anon_sym_continue] = ACTIONS(2547), - [anon_sym_for] = ACTIONS(2547), - [anon_sym_loop] = ACTIONS(2547), - [anon_sym_while] = ACTIONS(2547), - [anon_sym_do] = ACTIONS(2547), - [anon_sym_if] = ACTIONS(2547), - [anon_sym_match] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2547), - [anon_sym_DOT_DOT] = ACTIONS(2547), - [anon_sym_try] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2547), - [anon_sym_source] = ACTIONS(2547), - [anon_sym_source_DASHenv] = ACTIONS(2547), - [anon_sym_register] = ACTIONS(2547), - [anon_sym_hide] = ACTIONS(2547), - [anon_sym_hide_DASHenv] = ACTIONS(2547), - [anon_sym_overlay] = ACTIONS(2547), - [anon_sym_where] = ACTIONS(2547), - [anon_sym_not] = ACTIONS(2547), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), - [anon_sym_DOT_DOT_LT] = ACTIONS(2547), - [aux_sym__immediate_decimal_token2] = ACTIONS(6621), - [anon_sym_null] = ACTIONS(2547), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [aux_sym__val_number_decimal_token1] = ACTIONS(2547), - [aux_sym__val_number_decimal_token2] = ACTIONS(2547), - [anon_sym_DOT2] = ACTIONS(2547), - [aux_sym__val_number_decimal_token3] = ACTIONS(2547), - [aux_sym__val_number_token1] = ACTIONS(2547), - [aux_sym__val_number_token2] = ACTIONS(2547), - [aux_sym__val_number_token3] = ACTIONS(2547), - [aux_sym__val_number_token4] = ACTIONS(2547), - [aux_sym__val_number_token5] = ACTIONS(2547), - [aux_sym__val_number_token6] = ACTIONS(2547), - [anon_sym_0b] = ACTIONS(2547), - [anon_sym_0o] = ACTIONS(2547), - [anon_sym_0x] = ACTIONS(2547), - [sym_val_date] = ACTIONS(2547), - [anon_sym_DQUOTE] = ACTIONS(2547), - [sym__str_single_quotes] = ACTIONS(2547), - [sym__str_back_ticks] = ACTIONS(2547), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2547), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2547), - [anon_sym_POUND] = ACTIONS(113), - }, - [2721] = { - [sym_comment] = STATE(2721), - [anon_sym_export] = ACTIONS(5187), - [anon_sym_alias] = ACTIONS(5187), - [anon_sym_let] = ACTIONS(5187), - [anon_sym_let_DASHenv] = ACTIONS(5187), - [anon_sym_mut] = ACTIONS(5187), - [anon_sym_const] = ACTIONS(5187), - [anon_sym_SEMI] = ACTIONS(5187), - [sym_cmd_identifier] = ACTIONS(5187), - [anon_sym_LF] = ACTIONS(5189), - [anon_sym_def] = ACTIONS(5187), - [anon_sym_export_DASHenv] = ACTIONS(5187), - [anon_sym_extern] = ACTIONS(5187), - [anon_sym_module] = ACTIONS(5187), - [anon_sym_use] = ACTIONS(5187), - [anon_sym_LBRACK] = ACTIONS(5187), - [anon_sym_LPAREN] = ACTIONS(5187), - [anon_sym_RPAREN] = ACTIONS(5187), - [anon_sym_DOLLAR] = ACTIONS(5187), - [anon_sym_error] = ACTIONS(5187), - [anon_sym_DASH] = ACTIONS(5187), - [anon_sym_break] = ACTIONS(5187), - [anon_sym_continue] = ACTIONS(5187), - [anon_sym_for] = ACTIONS(5187), - [anon_sym_loop] = ACTIONS(5187), - [anon_sym_while] = ACTIONS(5187), - [anon_sym_do] = ACTIONS(5187), - [anon_sym_if] = ACTIONS(5187), - [anon_sym_match] = ACTIONS(5187), - [anon_sym_LBRACE] = ACTIONS(5187), - [anon_sym_RBRACE] = ACTIONS(5187), - [anon_sym_DOT_DOT] = ACTIONS(5187), - [anon_sym_try] = ACTIONS(5187), - [anon_sym_return] = ACTIONS(5187), - [anon_sym_source] = ACTIONS(5187), - [anon_sym_source_DASHenv] = ACTIONS(5187), - [anon_sym_register] = ACTIONS(5187), - [anon_sym_hide] = ACTIONS(5187), - [anon_sym_hide_DASHenv] = ACTIONS(5187), - [anon_sym_overlay] = ACTIONS(5187), - [anon_sym_where] = ACTIONS(5187), - [anon_sym_not] = ACTIONS(5187), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5187), - [anon_sym_DOT_DOT_LT] = ACTIONS(5187), - [anon_sym_null] = ACTIONS(5187), - [anon_sym_true] = ACTIONS(5187), - [anon_sym_false] = ACTIONS(5187), - [aux_sym__val_number_decimal_token1] = ACTIONS(5187), - [aux_sym__val_number_decimal_token2] = ACTIONS(5187), - [anon_sym_DOT2] = ACTIONS(5187), - [aux_sym__val_number_decimal_token3] = ACTIONS(5187), - [aux_sym__val_number_token1] = ACTIONS(5187), - [aux_sym__val_number_token2] = ACTIONS(5187), - [aux_sym__val_number_token3] = ACTIONS(5187), - [aux_sym__val_number_token4] = ACTIONS(5187), - [aux_sym__val_number_token5] = ACTIONS(5187), - [aux_sym__val_number_token6] = ACTIONS(5187), - [anon_sym_0b] = ACTIONS(5187), - [anon_sym_0o] = ACTIONS(5187), - [anon_sym_0x] = ACTIONS(5187), - [sym_val_date] = ACTIONS(5187), - [anon_sym_DQUOTE] = ACTIONS(5187), - [sym__str_single_quotes] = ACTIONS(5187), - [sym__str_back_ticks] = ACTIONS(5187), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5187), - [anon_sym_CARET] = ACTIONS(5187), - [anon_sym_POUND] = ACTIONS(113), - }, - [2722] = { - [sym_comment] = STATE(2722), - [anon_sym_export] = ACTIONS(5191), - [anon_sym_alias] = ACTIONS(5191), - [anon_sym_let] = ACTIONS(5191), - [anon_sym_let_DASHenv] = ACTIONS(5191), - [anon_sym_mut] = ACTIONS(5191), - [anon_sym_const] = ACTIONS(5191), - [anon_sym_SEMI] = ACTIONS(5191), - [sym_cmd_identifier] = ACTIONS(5191), - [anon_sym_LF] = ACTIONS(5193), - [anon_sym_def] = ACTIONS(5191), - [anon_sym_export_DASHenv] = ACTIONS(5191), - [anon_sym_extern] = ACTIONS(5191), - [anon_sym_module] = ACTIONS(5191), - [anon_sym_use] = ACTIONS(5191), - [anon_sym_LBRACK] = ACTIONS(5191), - [anon_sym_LPAREN] = ACTIONS(5191), - [anon_sym_RPAREN] = ACTIONS(5191), - [anon_sym_DOLLAR] = ACTIONS(5191), - [anon_sym_error] = ACTIONS(5191), - [anon_sym_DASH] = ACTIONS(5191), - [anon_sym_break] = ACTIONS(5191), - [anon_sym_continue] = ACTIONS(5191), - [anon_sym_for] = ACTIONS(5191), - [anon_sym_loop] = ACTIONS(5191), - [anon_sym_while] = ACTIONS(5191), - [anon_sym_do] = ACTIONS(5191), - [anon_sym_if] = ACTIONS(5191), - [anon_sym_match] = ACTIONS(5191), - [anon_sym_LBRACE] = ACTIONS(5191), - [anon_sym_RBRACE] = ACTIONS(5191), - [anon_sym_DOT_DOT] = ACTIONS(5191), - [anon_sym_try] = ACTIONS(5191), - [anon_sym_return] = ACTIONS(5191), - [anon_sym_source] = ACTIONS(5191), - [anon_sym_source_DASHenv] = ACTIONS(5191), - [anon_sym_register] = ACTIONS(5191), - [anon_sym_hide] = ACTIONS(5191), - [anon_sym_hide_DASHenv] = ACTIONS(5191), - [anon_sym_overlay] = ACTIONS(5191), - [anon_sym_where] = ACTIONS(5191), - [anon_sym_not] = ACTIONS(5191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5191), - [anon_sym_DOT_DOT_LT] = ACTIONS(5191), - [anon_sym_null] = ACTIONS(5191), - [anon_sym_true] = ACTIONS(5191), - [anon_sym_false] = ACTIONS(5191), - [aux_sym__val_number_decimal_token1] = ACTIONS(5191), - [aux_sym__val_number_decimal_token2] = ACTIONS(5191), - [anon_sym_DOT2] = ACTIONS(5191), - [aux_sym__val_number_decimal_token3] = ACTIONS(5191), - [aux_sym__val_number_token1] = ACTIONS(5191), - [aux_sym__val_number_token2] = ACTIONS(5191), - [aux_sym__val_number_token3] = ACTIONS(5191), - [aux_sym__val_number_token4] = ACTIONS(5191), - [aux_sym__val_number_token5] = ACTIONS(5191), - [aux_sym__val_number_token6] = ACTIONS(5191), - [anon_sym_0b] = ACTIONS(5191), - [anon_sym_0o] = ACTIONS(5191), - [anon_sym_0x] = ACTIONS(5191), - [sym_val_date] = ACTIONS(5191), - [anon_sym_DQUOTE] = ACTIONS(5191), - [sym__str_single_quotes] = ACTIONS(5191), - [sym__str_back_ticks] = ACTIONS(5191), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5191), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5191), - [anon_sym_CARET] = ACTIONS(5191), - [anon_sym_POUND] = ACTIONS(113), - }, - [2723] = { - [sym_comment] = STATE(2723), - [anon_sym_export] = ACTIONS(5195), - [anon_sym_alias] = ACTIONS(5195), - [anon_sym_let] = ACTIONS(5195), - [anon_sym_let_DASHenv] = ACTIONS(5195), - [anon_sym_mut] = ACTIONS(5195), - [anon_sym_const] = ACTIONS(5195), - [anon_sym_SEMI] = ACTIONS(5195), - [sym_cmd_identifier] = ACTIONS(5195), - [anon_sym_LF] = ACTIONS(5197), - [anon_sym_def] = ACTIONS(5195), - [anon_sym_export_DASHenv] = ACTIONS(5195), - [anon_sym_extern] = ACTIONS(5195), - [anon_sym_module] = ACTIONS(5195), - [anon_sym_use] = ACTIONS(5195), - [anon_sym_LBRACK] = ACTIONS(5195), - [anon_sym_LPAREN] = ACTIONS(5195), - [anon_sym_RPAREN] = ACTIONS(5195), - [anon_sym_DOLLAR] = ACTIONS(5195), - [anon_sym_error] = ACTIONS(5195), - [anon_sym_DASH] = ACTIONS(5195), - [anon_sym_break] = ACTIONS(5195), - [anon_sym_continue] = ACTIONS(5195), - [anon_sym_for] = ACTIONS(5195), - [anon_sym_loop] = ACTIONS(5195), - [anon_sym_while] = ACTIONS(5195), - [anon_sym_do] = ACTIONS(5195), - [anon_sym_if] = ACTIONS(5195), - [anon_sym_match] = ACTIONS(5195), - [anon_sym_LBRACE] = ACTIONS(5195), - [anon_sym_RBRACE] = ACTIONS(5195), - [anon_sym_DOT_DOT] = ACTIONS(5195), - [anon_sym_try] = ACTIONS(5195), - [anon_sym_return] = ACTIONS(5195), - [anon_sym_source] = ACTIONS(5195), - [anon_sym_source_DASHenv] = ACTIONS(5195), - [anon_sym_register] = ACTIONS(5195), - [anon_sym_hide] = ACTIONS(5195), - [anon_sym_hide_DASHenv] = ACTIONS(5195), - [anon_sym_overlay] = ACTIONS(5195), - [anon_sym_where] = ACTIONS(5195), - [anon_sym_not] = ACTIONS(5195), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5195), - [anon_sym_DOT_DOT_LT] = ACTIONS(5195), - [anon_sym_null] = ACTIONS(5195), - [anon_sym_true] = ACTIONS(5195), - [anon_sym_false] = ACTIONS(5195), - [aux_sym__val_number_decimal_token1] = ACTIONS(5195), - [aux_sym__val_number_decimal_token2] = ACTIONS(5195), - [anon_sym_DOT2] = ACTIONS(5195), - [aux_sym__val_number_decimal_token3] = ACTIONS(5195), - [aux_sym__val_number_token1] = ACTIONS(5195), - [aux_sym__val_number_token2] = ACTIONS(5195), - [aux_sym__val_number_token3] = ACTIONS(5195), - [aux_sym__val_number_token4] = ACTIONS(5195), - [aux_sym__val_number_token5] = ACTIONS(5195), - [aux_sym__val_number_token6] = ACTIONS(5195), - [anon_sym_0b] = ACTIONS(5195), - [anon_sym_0o] = ACTIONS(5195), - [anon_sym_0x] = ACTIONS(5195), - [sym_val_date] = ACTIONS(5195), - [anon_sym_DQUOTE] = ACTIONS(5195), - [sym__str_single_quotes] = ACTIONS(5195), - [sym__str_back_ticks] = ACTIONS(5195), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5195), - [anon_sym_CARET] = ACTIONS(5195), - [anon_sym_POUND] = ACTIONS(113), - }, - [2724] = { - [sym_cell_path] = STATE(3091), - [sym_path] = STATE(2693), - [sym_comment] = STATE(2724), - [ts_builtin_sym_end] = ACTIONS(1192), - [anon_sym_SEMI] = ACTIONS(1190), - [anon_sym_LF] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(1190), - [anon_sym_PIPE] = ACTIONS(1190), - [anon_sym_DOLLAR] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1190), - [anon_sym_DASH_DASH] = ACTIONS(1190), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_in] = ACTIONS(1190), - [anon_sym_LBRACE] = ACTIONS(1190), - [anon_sym_DOT_DOT] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1190), - [anon_sym_STAR_STAR] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1190), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_mod] = ACTIONS(1190), - [anon_sym_SLASH_SLASH] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_bit_DASHshl] = ACTIONS(1190), - [anon_sym_bit_DASHshr] = ACTIONS(1190), - [anon_sym_EQ_EQ] = ACTIONS(1190), - [anon_sym_BANG_EQ] = ACTIONS(1190), - [anon_sym_LT2] = ACTIONS(1190), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_not_DASHin] = ACTIONS(1190), - [anon_sym_starts_DASHwith] = ACTIONS(1190), - [anon_sym_ends_DASHwith] = ACTIONS(1190), - [anon_sym_EQ_TILDE] = ACTIONS(1190), - [anon_sym_BANG_TILDE] = ACTIONS(1190), - [anon_sym_bit_DASHand] = ACTIONS(1190), - [anon_sym_bit_DASHxor] = ACTIONS(1190), - [anon_sym_bit_DASHor] = ACTIONS(1190), - [anon_sym_and] = ACTIONS(1190), - [anon_sym_xor] = ACTIONS(1190), - [anon_sym_or] = ACTIONS(1190), - [anon_sym_not] = ACTIONS(1190), - [anon_sym_DOT] = ACTIONS(6363), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1190), - [anon_sym_DOT_DOT_LT] = ACTIONS(1190), - [anon_sym_null] = ACTIONS(1190), - [anon_sym_true] = ACTIONS(1190), - [anon_sym_false] = ACTIONS(1190), - [aux_sym__val_number_decimal_token1] = ACTIONS(1190), - [aux_sym__val_number_decimal_token2] = ACTIONS(1190), - [anon_sym_DOT2] = ACTIONS(1190), - [aux_sym__val_number_decimal_token3] = ACTIONS(1190), - [aux_sym__val_number_token1] = ACTIONS(1190), - [aux_sym__val_number_token2] = ACTIONS(1190), - [aux_sym__val_number_token3] = ACTIONS(1190), - [aux_sym__val_number_token4] = ACTIONS(1190), - [aux_sym__val_number_token5] = ACTIONS(1190), - [aux_sym__val_number_token6] = ACTIONS(1190), - [anon_sym_0b] = ACTIONS(1190), - [anon_sym_0o] = ACTIONS(1190), - [anon_sym_0x] = ACTIONS(1190), - [sym_val_date] = ACTIONS(1190), - [anon_sym_DQUOTE] = ACTIONS(1190), - [sym__str_single_quotes] = ACTIONS(1190), - [sym__str_back_ticks] = ACTIONS(1190), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1190), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1190), - [anon_sym_POUND] = ACTIONS(113), - }, - [2725] = { - [sym_comment] = STATE(2725), - [anon_sym_export] = ACTIONS(5215), - [anon_sym_alias] = ACTIONS(5215), - [anon_sym_let] = ACTIONS(5215), - [anon_sym_let_DASHenv] = ACTIONS(5215), - [anon_sym_mut] = ACTIONS(5215), - [anon_sym_const] = ACTIONS(5215), - [anon_sym_SEMI] = ACTIONS(5215), - [sym_cmd_identifier] = ACTIONS(5215), - [anon_sym_LF] = ACTIONS(5217), - [anon_sym_def] = ACTIONS(5215), - [anon_sym_export_DASHenv] = ACTIONS(5215), - [anon_sym_extern] = ACTIONS(5215), - [anon_sym_module] = ACTIONS(5215), - [anon_sym_use] = ACTIONS(5215), - [anon_sym_LBRACK] = ACTIONS(5215), - [anon_sym_LPAREN] = ACTIONS(5215), - [anon_sym_RPAREN] = ACTIONS(5215), - [anon_sym_DOLLAR] = ACTIONS(5215), - [anon_sym_error] = ACTIONS(5215), - [anon_sym_DASH] = ACTIONS(5215), - [anon_sym_break] = ACTIONS(5215), - [anon_sym_continue] = ACTIONS(5215), - [anon_sym_for] = ACTIONS(5215), - [anon_sym_loop] = ACTIONS(5215), - [anon_sym_while] = ACTIONS(5215), - [anon_sym_do] = ACTIONS(5215), - [anon_sym_if] = ACTIONS(5215), - [anon_sym_match] = ACTIONS(5215), - [anon_sym_LBRACE] = ACTIONS(5215), - [anon_sym_RBRACE] = ACTIONS(5215), - [anon_sym_DOT_DOT] = ACTIONS(5215), - [anon_sym_try] = ACTIONS(5215), - [anon_sym_return] = ACTIONS(5215), - [anon_sym_source] = ACTIONS(5215), - [anon_sym_source_DASHenv] = ACTIONS(5215), - [anon_sym_register] = ACTIONS(5215), - [anon_sym_hide] = ACTIONS(5215), - [anon_sym_hide_DASHenv] = ACTIONS(5215), - [anon_sym_overlay] = ACTIONS(5215), - [anon_sym_where] = ACTIONS(5215), - [anon_sym_not] = ACTIONS(5215), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5215), - [anon_sym_DOT_DOT_LT] = ACTIONS(5215), - [anon_sym_null] = ACTIONS(5215), - [anon_sym_true] = ACTIONS(5215), - [anon_sym_false] = ACTIONS(5215), - [aux_sym__val_number_decimal_token1] = ACTIONS(5215), - [aux_sym__val_number_decimal_token2] = ACTIONS(5215), - [anon_sym_DOT2] = ACTIONS(5215), - [aux_sym__val_number_decimal_token3] = ACTIONS(5215), - [aux_sym__val_number_token1] = ACTIONS(5215), - [aux_sym__val_number_token2] = ACTIONS(5215), - [aux_sym__val_number_token3] = ACTIONS(5215), - [aux_sym__val_number_token4] = ACTIONS(5215), - [aux_sym__val_number_token5] = ACTIONS(5215), - [aux_sym__val_number_token6] = ACTIONS(5215), - [anon_sym_0b] = ACTIONS(5215), - [anon_sym_0o] = ACTIONS(5215), - [anon_sym_0x] = ACTIONS(5215), - [sym_val_date] = ACTIONS(5215), - [anon_sym_DQUOTE] = ACTIONS(5215), - [sym__str_single_quotes] = ACTIONS(5215), - [sym__str_back_ticks] = ACTIONS(5215), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5215), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5215), - [anon_sym_CARET] = ACTIONS(5215), - [anon_sym_POUND] = ACTIONS(113), - }, - [2726] = { - [sym_comment] = STATE(2726), - [anon_sym_export] = ACTIONS(5219), - [anon_sym_alias] = ACTIONS(5219), - [anon_sym_let] = ACTIONS(5219), - [anon_sym_let_DASHenv] = ACTIONS(5219), - [anon_sym_mut] = ACTIONS(5219), - [anon_sym_const] = ACTIONS(5219), - [anon_sym_SEMI] = ACTIONS(5219), - [sym_cmd_identifier] = ACTIONS(5219), - [anon_sym_LF] = ACTIONS(5221), - [anon_sym_def] = ACTIONS(5219), - [anon_sym_export_DASHenv] = ACTIONS(5219), - [anon_sym_extern] = ACTIONS(5219), - [anon_sym_module] = ACTIONS(5219), - [anon_sym_use] = ACTIONS(5219), - [anon_sym_LBRACK] = ACTIONS(5219), - [anon_sym_LPAREN] = ACTIONS(5219), - [anon_sym_RPAREN] = ACTIONS(5219), - [anon_sym_DOLLAR] = ACTIONS(5219), - [anon_sym_error] = ACTIONS(5219), - [anon_sym_DASH] = ACTIONS(5219), - [anon_sym_break] = ACTIONS(5219), - [anon_sym_continue] = ACTIONS(5219), - [anon_sym_for] = ACTIONS(5219), - [anon_sym_loop] = ACTIONS(5219), - [anon_sym_while] = ACTIONS(5219), - [anon_sym_do] = ACTIONS(5219), - [anon_sym_if] = ACTIONS(5219), - [anon_sym_match] = ACTIONS(5219), - [anon_sym_LBRACE] = ACTIONS(5219), - [anon_sym_RBRACE] = ACTIONS(5219), - [anon_sym_DOT_DOT] = ACTIONS(5219), - [anon_sym_try] = ACTIONS(5219), - [anon_sym_return] = ACTIONS(5219), - [anon_sym_source] = ACTIONS(5219), - [anon_sym_source_DASHenv] = ACTIONS(5219), - [anon_sym_register] = ACTIONS(5219), - [anon_sym_hide] = ACTIONS(5219), - [anon_sym_hide_DASHenv] = ACTIONS(5219), - [anon_sym_overlay] = ACTIONS(5219), - [anon_sym_where] = ACTIONS(5219), - [anon_sym_not] = ACTIONS(5219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5219), - [anon_sym_DOT_DOT_LT] = ACTIONS(5219), - [anon_sym_null] = ACTIONS(5219), - [anon_sym_true] = ACTIONS(5219), - [anon_sym_false] = ACTIONS(5219), - [aux_sym__val_number_decimal_token1] = ACTIONS(5219), - [aux_sym__val_number_decimal_token2] = ACTIONS(5219), - [anon_sym_DOT2] = ACTIONS(5219), - [aux_sym__val_number_decimal_token3] = ACTIONS(5219), - [aux_sym__val_number_token1] = ACTIONS(5219), - [aux_sym__val_number_token2] = ACTIONS(5219), - [aux_sym__val_number_token3] = ACTIONS(5219), - [aux_sym__val_number_token4] = ACTIONS(5219), - [aux_sym__val_number_token5] = ACTIONS(5219), - [aux_sym__val_number_token6] = ACTIONS(5219), - [anon_sym_0b] = ACTIONS(5219), - [anon_sym_0o] = ACTIONS(5219), - [anon_sym_0x] = ACTIONS(5219), - [sym_val_date] = ACTIONS(5219), - [anon_sym_DQUOTE] = ACTIONS(5219), - [sym__str_single_quotes] = ACTIONS(5219), - [sym__str_back_ticks] = ACTIONS(5219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5219), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5219), - [anon_sym_CARET] = ACTIONS(5219), - [anon_sym_POUND] = ACTIONS(113), - }, - [2727] = { - [sym_block] = STATE(2920), - [sym_comment] = STATE(2727), - [ts_builtin_sym_end] = ACTIONS(6230), - [anon_sym_export] = ACTIONS(6228), - [anon_sym_alias] = ACTIONS(6228), - [anon_sym_let] = ACTIONS(6228), - [anon_sym_let_DASHenv] = ACTIONS(6228), - [anon_sym_mut] = ACTIONS(6228), - [anon_sym_const] = ACTIONS(6228), - [anon_sym_SEMI] = ACTIONS(6228), - [sym_cmd_identifier] = ACTIONS(6228), - [anon_sym_LF] = ACTIONS(6230), - [anon_sym_def] = ACTIONS(6228), - [anon_sym_export_DASHenv] = ACTIONS(6228), - [anon_sym_extern] = ACTIONS(6228), - [anon_sym_module] = ACTIONS(6228), - [anon_sym_use] = ACTIONS(6228), - [anon_sym_LBRACK] = ACTIONS(6228), - [anon_sym_LPAREN] = ACTIONS(6228), - [anon_sym_DOLLAR] = ACTIONS(6228), - [anon_sym_error] = ACTIONS(6228), - [anon_sym_DASH] = ACTIONS(6228), - [anon_sym_break] = ACTIONS(6228), - [anon_sym_continue] = ACTIONS(6228), - [anon_sym_for] = ACTIONS(6228), - [anon_sym_loop] = ACTIONS(6228), - [anon_sym_while] = ACTIONS(6228), - [anon_sym_do] = ACTIONS(6228), - [anon_sym_if] = ACTIONS(6228), - [anon_sym_match] = ACTIONS(6228), - [anon_sym_LBRACE] = ACTIONS(6357), - [anon_sym_DOT_DOT] = ACTIONS(6228), - [anon_sym_try] = ACTIONS(6228), - [anon_sym_return] = ACTIONS(6228), - [anon_sym_source] = ACTIONS(6228), - [anon_sym_source_DASHenv] = ACTIONS(6228), - [anon_sym_register] = ACTIONS(6228), - [anon_sym_hide] = ACTIONS(6228), - [anon_sym_hide_DASHenv] = ACTIONS(6228), - [anon_sym_overlay] = ACTIONS(6228), - [anon_sym_where] = ACTIONS(6228), - [anon_sym_not] = ACTIONS(6228), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6228), - [anon_sym_DOT_DOT_LT] = ACTIONS(6228), - [anon_sym_null] = ACTIONS(6228), - [anon_sym_true] = ACTIONS(6228), - [anon_sym_false] = ACTIONS(6228), - [aux_sym__val_number_decimal_token1] = ACTIONS(6228), - [aux_sym__val_number_decimal_token2] = ACTIONS(6228), - [anon_sym_DOT2] = ACTIONS(6228), - [aux_sym__val_number_decimal_token3] = ACTIONS(6228), - [aux_sym__val_number_token1] = ACTIONS(6228), - [aux_sym__val_number_token2] = ACTIONS(6228), - [aux_sym__val_number_token3] = ACTIONS(6228), - [aux_sym__val_number_token4] = ACTIONS(6228), - [aux_sym__val_number_token5] = ACTIONS(6228), - [aux_sym__val_number_token6] = ACTIONS(6228), - [anon_sym_0b] = ACTIONS(6228), - [anon_sym_0o] = ACTIONS(6228), - [anon_sym_0x] = ACTIONS(6228), - [sym_val_date] = ACTIONS(6228), - [anon_sym_DQUOTE] = ACTIONS(6228), - [sym__str_single_quotes] = ACTIONS(6228), - [sym__str_back_ticks] = ACTIONS(6228), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6228), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6228), - [anon_sym_CARET] = ACTIONS(6228), - [anon_sym_POUND] = ACTIONS(113), - }, - [2728] = { - [sym_comment] = STATE(2728), - [anon_sym_export] = ACTIONS(5227), - [anon_sym_alias] = ACTIONS(5227), - [anon_sym_let] = ACTIONS(5227), - [anon_sym_let_DASHenv] = ACTIONS(5227), - [anon_sym_mut] = ACTIONS(5227), - [anon_sym_const] = ACTIONS(5227), - [anon_sym_SEMI] = ACTIONS(5227), - [sym_cmd_identifier] = ACTIONS(5227), - [anon_sym_LF] = ACTIONS(5229), - [anon_sym_def] = ACTIONS(5227), - [anon_sym_export_DASHenv] = ACTIONS(5227), - [anon_sym_extern] = ACTIONS(5227), - [anon_sym_module] = ACTIONS(5227), - [anon_sym_use] = ACTIONS(5227), - [anon_sym_LBRACK] = ACTIONS(5227), - [anon_sym_LPAREN] = ACTIONS(5227), - [anon_sym_RPAREN] = ACTIONS(5227), - [anon_sym_DOLLAR] = ACTIONS(5227), - [anon_sym_error] = ACTIONS(5227), - [anon_sym_DASH] = ACTIONS(5227), - [anon_sym_break] = ACTIONS(5227), - [anon_sym_continue] = ACTIONS(5227), - [anon_sym_for] = ACTIONS(5227), - [anon_sym_loop] = ACTIONS(5227), - [anon_sym_while] = ACTIONS(5227), - [anon_sym_do] = ACTIONS(5227), - [anon_sym_if] = ACTIONS(5227), - [anon_sym_match] = ACTIONS(5227), - [anon_sym_LBRACE] = ACTIONS(5227), - [anon_sym_RBRACE] = ACTIONS(5227), - [anon_sym_DOT_DOT] = ACTIONS(5227), - [anon_sym_try] = ACTIONS(5227), - [anon_sym_return] = ACTIONS(5227), - [anon_sym_source] = ACTIONS(5227), - [anon_sym_source_DASHenv] = ACTIONS(5227), - [anon_sym_register] = ACTIONS(5227), - [anon_sym_hide] = ACTIONS(5227), - [anon_sym_hide_DASHenv] = ACTIONS(5227), - [anon_sym_overlay] = ACTIONS(5227), - [anon_sym_where] = ACTIONS(5227), - [anon_sym_not] = ACTIONS(5227), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5227), - [anon_sym_DOT_DOT_LT] = ACTIONS(5227), - [anon_sym_null] = ACTIONS(5227), - [anon_sym_true] = ACTIONS(5227), - [anon_sym_false] = ACTIONS(5227), - [aux_sym__val_number_decimal_token1] = ACTIONS(5227), - [aux_sym__val_number_decimal_token2] = ACTIONS(5227), - [anon_sym_DOT2] = ACTIONS(5227), - [aux_sym__val_number_decimal_token3] = ACTIONS(5227), - [aux_sym__val_number_token1] = ACTIONS(5227), - [aux_sym__val_number_token2] = ACTIONS(5227), - [aux_sym__val_number_token3] = ACTIONS(5227), - [aux_sym__val_number_token4] = ACTIONS(5227), - [aux_sym__val_number_token5] = ACTIONS(5227), - [aux_sym__val_number_token6] = ACTIONS(5227), - [anon_sym_0b] = ACTIONS(5227), - [anon_sym_0o] = ACTIONS(5227), - [anon_sym_0x] = ACTIONS(5227), - [sym_val_date] = ACTIONS(5227), - [anon_sym_DQUOTE] = ACTIONS(5227), - [sym__str_single_quotes] = ACTIONS(5227), - [sym__str_back_ticks] = ACTIONS(5227), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5227), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5227), - [anon_sym_CARET] = ACTIONS(5227), - [anon_sym_POUND] = ACTIONS(113), - }, - [2729] = { - [sym_comment] = STATE(2729), - [anon_sym_export] = ACTIONS(5231), - [anon_sym_alias] = ACTIONS(5231), - [anon_sym_let] = ACTIONS(5231), - [anon_sym_let_DASHenv] = ACTIONS(5231), - [anon_sym_mut] = ACTIONS(5231), - [anon_sym_const] = ACTIONS(5231), - [anon_sym_SEMI] = ACTIONS(5231), - [sym_cmd_identifier] = ACTIONS(5231), - [anon_sym_LF] = ACTIONS(5233), - [anon_sym_def] = ACTIONS(5231), - [anon_sym_export_DASHenv] = ACTIONS(5231), - [anon_sym_extern] = ACTIONS(5231), - [anon_sym_module] = ACTIONS(5231), - [anon_sym_use] = ACTIONS(5231), - [anon_sym_LBRACK] = ACTIONS(5231), - [anon_sym_LPAREN] = ACTIONS(5231), - [anon_sym_RPAREN] = ACTIONS(5231), - [anon_sym_DOLLAR] = ACTIONS(5231), - [anon_sym_error] = ACTIONS(5231), - [anon_sym_DASH] = ACTIONS(5231), - [anon_sym_break] = ACTIONS(5231), - [anon_sym_continue] = ACTIONS(5231), - [anon_sym_for] = ACTIONS(5231), - [anon_sym_loop] = ACTIONS(5231), - [anon_sym_while] = ACTIONS(5231), - [anon_sym_do] = ACTIONS(5231), - [anon_sym_if] = ACTIONS(5231), - [anon_sym_match] = ACTIONS(5231), - [anon_sym_LBRACE] = ACTIONS(5231), - [anon_sym_RBRACE] = ACTIONS(5231), - [anon_sym_DOT_DOT] = ACTIONS(5231), - [anon_sym_try] = ACTIONS(5231), - [anon_sym_return] = ACTIONS(5231), - [anon_sym_source] = ACTIONS(5231), - [anon_sym_source_DASHenv] = ACTIONS(5231), - [anon_sym_register] = ACTIONS(5231), - [anon_sym_hide] = ACTIONS(5231), - [anon_sym_hide_DASHenv] = ACTIONS(5231), - [anon_sym_overlay] = ACTIONS(5231), - [anon_sym_where] = ACTIONS(5231), - [anon_sym_not] = ACTIONS(5231), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5231), - [anon_sym_DOT_DOT_LT] = ACTIONS(5231), - [anon_sym_null] = ACTIONS(5231), - [anon_sym_true] = ACTIONS(5231), - [anon_sym_false] = ACTIONS(5231), - [aux_sym__val_number_decimal_token1] = ACTIONS(5231), - [aux_sym__val_number_decimal_token2] = ACTIONS(5231), - [anon_sym_DOT2] = ACTIONS(5231), - [aux_sym__val_number_decimal_token3] = ACTIONS(5231), - [aux_sym__val_number_token1] = ACTIONS(5231), - [aux_sym__val_number_token2] = ACTIONS(5231), - [aux_sym__val_number_token3] = ACTIONS(5231), - [aux_sym__val_number_token4] = ACTIONS(5231), - [aux_sym__val_number_token5] = ACTIONS(5231), - [aux_sym__val_number_token6] = ACTIONS(5231), - [anon_sym_0b] = ACTIONS(5231), - [anon_sym_0o] = ACTIONS(5231), - [anon_sym_0x] = ACTIONS(5231), - [sym_val_date] = ACTIONS(5231), - [anon_sym_DQUOTE] = ACTIONS(5231), - [sym__str_single_quotes] = ACTIONS(5231), - [sym__str_back_ticks] = ACTIONS(5231), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5231), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5231), - [anon_sym_CARET] = ACTIONS(5231), - [anon_sym_POUND] = ACTIONS(113), - }, - [2730] = { - [sym_comment] = STATE(2730), - [anon_sym_export] = ACTIONS(5235), - [anon_sym_alias] = ACTIONS(5235), - [anon_sym_let] = ACTIONS(5235), - [anon_sym_let_DASHenv] = ACTIONS(5235), - [anon_sym_mut] = ACTIONS(5235), - [anon_sym_const] = ACTIONS(5235), - [anon_sym_SEMI] = ACTIONS(5235), - [sym_cmd_identifier] = ACTIONS(5235), - [anon_sym_LF] = ACTIONS(5237), - [anon_sym_def] = ACTIONS(5235), - [anon_sym_export_DASHenv] = ACTIONS(5235), - [anon_sym_extern] = ACTIONS(5235), - [anon_sym_module] = ACTIONS(5235), - [anon_sym_use] = ACTIONS(5235), - [anon_sym_LBRACK] = ACTIONS(5235), - [anon_sym_LPAREN] = ACTIONS(5235), - [anon_sym_RPAREN] = ACTIONS(5235), - [anon_sym_DOLLAR] = ACTIONS(5235), - [anon_sym_error] = ACTIONS(5235), - [anon_sym_DASH] = ACTIONS(5235), - [anon_sym_break] = ACTIONS(5235), - [anon_sym_continue] = ACTIONS(5235), - [anon_sym_for] = ACTIONS(5235), - [anon_sym_loop] = ACTIONS(5235), - [anon_sym_while] = ACTIONS(5235), - [anon_sym_do] = ACTIONS(5235), - [anon_sym_if] = ACTIONS(5235), - [anon_sym_match] = ACTIONS(5235), - [anon_sym_LBRACE] = ACTIONS(5235), - [anon_sym_RBRACE] = ACTIONS(5235), - [anon_sym_DOT_DOT] = ACTIONS(5235), - [anon_sym_try] = ACTIONS(5235), - [anon_sym_return] = ACTIONS(5235), - [anon_sym_source] = ACTIONS(5235), - [anon_sym_source_DASHenv] = ACTIONS(5235), - [anon_sym_register] = ACTIONS(5235), - [anon_sym_hide] = ACTIONS(5235), - [anon_sym_hide_DASHenv] = ACTIONS(5235), - [anon_sym_overlay] = ACTIONS(5235), - [anon_sym_where] = ACTIONS(5235), - [anon_sym_not] = ACTIONS(5235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5235), - [anon_sym_DOT_DOT_LT] = ACTIONS(5235), - [anon_sym_null] = ACTIONS(5235), - [anon_sym_true] = ACTIONS(5235), - [anon_sym_false] = ACTIONS(5235), - [aux_sym__val_number_decimal_token1] = ACTIONS(5235), - [aux_sym__val_number_decimal_token2] = ACTIONS(5235), - [anon_sym_DOT2] = ACTIONS(5235), - [aux_sym__val_number_decimal_token3] = ACTIONS(5235), - [aux_sym__val_number_token1] = ACTIONS(5235), - [aux_sym__val_number_token2] = ACTIONS(5235), - [aux_sym__val_number_token3] = ACTIONS(5235), - [aux_sym__val_number_token4] = ACTIONS(5235), - [aux_sym__val_number_token5] = ACTIONS(5235), - [aux_sym__val_number_token6] = ACTIONS(5235), - [anon_sym_0b] = ACTIONS(5235), - [anon_sym_0o] = ACTIONS(5235), - [anon_sym_0x] = ACTIONS(5235), - [sym_val_date] = ACTIONS(5235), - [anon_sym_DQUOTE] = ACTIONS(5235), - [sym__str_single_quotes] = ACTIONS(5235), - [sym__str_back_ticks] = ACTIONS(5235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5235), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5235), - [anon_sym_CARET] = ACTIONS(5235), - [anon_sym_POUND] = ACTIONS(113), - }, - [2731] = { - [sym_comment] = STATE(2731), - [anon_sym_export] = ACTIONS(5239), - [anon_sym_alias] = ACTIONS(5239), - [anon_sym_let] = ACTIONS(5239), - [anon_sym_let_DASHenv] = ACTIONS(5239), - [anon_sym_mut] = ACTIONS(5239), - [anon_sym_const] = ACTIONS(5239), - [anon_sym_SEMI] = ACTIONS(5239), - [sym_cmd_identifier] = ACTIONS(5239), - [anon_sym_LF] = ACTIONS(5241), - [anon_sym_def] = ACTIONS(5239), - [anon_sym_export_DASHenv] = ACTIONS(5239), - [anon_sym_extern] = ACTIONS(5239), - [anon_sym_module] = ACTIONS(5239), - [anon_sym_use] = ACTIONS(5239), - [anon_sym_LBRACK] = ACTIONS(5239), - [anon_sym_LPAREN] = ACTIONS(5239), - [anon_sym_RPAREN] = ACTIONS(5239), - [anon_sym_DOLLAR] = ACTIONS(5239), - [anon_sym_error] = ACTIONS(5239), - [anon_sym_DASH] = ACTIONS(5239), - [anon_sym_break] = ACTIONS(5239), - [anon_sym_continue] = ACTIONS(5239), - [anon_sym_for] = ACTIONS(5239), - [anon_sym_loop] = ACTIONS(5239), - [anon_sym_while] = ACTIONS(5239), - [anon_sym_do] = ACTIONS(5239), - [anon_sym_if] = ACTIONS(5239), - [anon_sym_match] = ACTIONS(5239), - [anon_sym_LBRACE] = ACTIONS(5239), - [anon_sym_RBRACE] = ACTIONS(5239), - [anon_sym_DOT_DOT] = ACTIONS(5239), - [anon_sym_try] = ACTIONS(5239), - [anon_sym_return] = ACTIONS(5239), - [anon_sym_source] = ACTIONS(5239), - [anon_sym_source_DASHenv] = ACTIONS(5239), - [anon_sym_register] = ACTIONS(5239), - [anon_sym_hide] = ACTIONS(5239), - [anon_sym_hide_DASHenv] = ACTIONS(5239), - [anon_sym_overlay] = ACTIONS(5239), - [anon_sym_where] = ACTIONS(5239), - [anon_sym_not] = ACTIONS(5239), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5239), - [anon_sym_DOT_DOT_LT] = ACTIONS(5239), - [anon_sym_null] = ACTIONS(5239), - [anon_sym_true] = ACTIONS(5239), - [anon_sym_false] = ACTIONS(5239), - [aux_sym__val_number_decimal_token1] = ACTIONS(5239), - [aux_sym__val_number_decimal_token2] = ACTIONS(5239), - [anon_sym_DOT2] = ACTIONS(5239), - [aux_sym__val_number_decimal_token3] = ACTIONS(5239), - [aux_sym__val_number_token1] = ACTIONS(5239), - [aux_sym__val_number_token2] = ACTIONS(5239), - [aux_sym__val_number_token3] = ACTIONS(5239), - [aux_sym__val_number_token4] = ACTIONS(5239), - [aux_sym__val_number_token5] = ACTIONS(5239), - [aux_sym__val_number_token6] = ACTIONS(5239), - [anon_sym_0b] = ACTIONS(5239), - [anon_sym_0o] = ACTIONS(5239), - [anon_sym_0x] = ACTIONS(5239), - [sym_val_date] = ACTIONS(5239), - [anon_sym_DQUOTE] = ACTIONS(5239), - [sym__str_single_quotes] = ACTIONS(5239), - [sym__str_back_ticks] = ACTIONS(5239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5239), - [anon_sym_CARET] = ACTIONS(5239), - [anon_sym_POUND] = ACTIONS(113), - }, - [2732] = { - [sym_comment] = STATE(2732), - [ts_builtin_sym_end] = ACTIONS(1174), - [anon_sym_SEMI] = ACTIONS(1172), - [anon_sym_LF] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_LPAREN] = ACTIONS(1172), - [anon_sym_PIPE] = ACTIONS(1172), - [anon_sym_DOLLAR] = ACTIONS(1172), - [anon_sym_GT] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_DASH] = ACTIONS(1172), - [anon_sym_in] = ACTIONS(1172), - [anon_sym_LBRACE] = ACTIONS(1172), - [anon_sym_DOT_DOT] = ACTIONS(1172), - [anon_sym_STAR] = ACTIONS(1172), - [anon_sym_STAR_STAR] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_SLASH] = ACTIONS(1172), - [anon_sym_mod] = ACTIONS(1172), - [anon_sym_SLASH_SLASH] = ACTIONS(1172), - [anon_sym_PLUS] = ACTIONS(1172), - [anon_sym_bit_DASHshl] = ACTIONS(1172), - [anon_sym_bit_DASHshr] = ACTIONS(1172), - [anon_sym_EQ_EQ] = ACTIONS(1172), - [anon_sym_BANG_EQ] = ACTIONS(1172), - [anon_sym_LT2] = ACTIONS(1172), - [anon_sym_LT_EQ] = ACTIONS(1172), - [anon_sym_GT_EQ] = ACTIONS(1172), - [anon_sym_not_DASHin] = ACTIONS(1172), - [anon_sym_starts_DASHwith] = ACTIONS(1172), - [anon_sym_ends_DASHwith] = ACTIONS(1172), - [anon_sym_EQ_TILDE] = ACTIONS(1172), - [anon_sym_BANG_TILDE] = ACTIONS(1172), - [anon_sym_bit_DASHand] = ACTIONS(1172), - [anon_sym_bit_DASHxor] = ACTIONS(1172), - [anon_sym_bit_DASHor] = ACTIONS(1172), - [anon_sym_and] = ACTIONS(1172), - [anon_sym_xor] = ACTIONS(1172), - [anon_sym_or] = ACTIONS(1172), - [anon_sym_not] = ACTIONS(1172), - [anon_sym_DOT_DOT2] = ACTIONS(1172), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1172), - [anon_sym_DOT_DOT_LT] = ACTIONS(1172), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1174), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1174), - [anon_sym_null] = ACTIONS(1172), - [anon_sym_true] = ACTIONS(1172), - [anon_sym_false] = ACTIONS(1172), - [aux_sym__val_number_decimal_token1] = ACTIONS(1172), - [aux_sym__val_number_decimal_token2] = ACTIONS(1172), - [anon_sym_DOT2] = ACTIONS(1172), - [aux_sym__val_number_decimal_token3] = ACTIONS(1172), - [aux_sym__val_number_token1] = ACTIONS(1172), - [aux_sym__val_number_token2] = ACTIONS(1172), - [aux_sym__val_number_token3] = ACTIONS(1172), - [aux_sym__val_number_token4] = ACTIONS(1172), - [aux_sym__val_number_token5] = ACTIONS(1172), - [aux_sym__val_number_token6] = ACTIONS(1172), - [anon_sym_0b] = ACTIONS(1172), - [anon_sym_0o] = ACTIONS(1172), - [anon_sym_0x] = ACTIONS(1172), - [sym_val_date] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(1172), - [sym__str_single_quotes] = ACTIONS(1172), - [sym__str_back_ticks] = ACTIONS(1172), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1172), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1172), - [anon_sym_POUND] = ACTIONS(113), - }, - [2733] = { - [sym_comment] = STATE(2733), - [anon_sym_export] = ACTIONS(6623), - [anon_sym_alias] = ACTIONS(6623), - [anon_sym_let] = ACTIONS(6623), - [anon_sym_let_DASHenv] = ACTIONS(6623), - [anon_sym_mut] = ACTIONS(6623), - [anon_sym_const] = ACTIONS(6623), - [anon_sym_SEMI] = ACTIONS(6623), - [sym_cmd_identifier] = ACTIONS(6623), - [anon_sym_LF] = ACTIONS(6625), - [anon_sym_def] = ACTIONS(6623), - [anon_sym_export_DASHenv] = ACTIONS(6623), - [anon_sym_extern] = ACTIONS(6623), - [anon_sym_module] = ACTIONS(6623), - [anon_sym_use] = ACTIONS(6623), - [anon_sym_LBRACK] = ACTIONS(6623), - [anon_sym_LPAREN] = ACTIONS(6623), - [anon_sym_RPAREN] = ACTIONS(6623), - [anon_sym_DOLLAR] = ACTIONS(6623), - [anon_sym_error] = ACTIONS(6623), - [anon_sym_DASH] = ACTIONS(6623), - [anon_sym_break] = ACTIONS(6623), - [anon_sym_continue] = ACTIONS(6623), - [anon_sym_for] = ACTIONS(6623), - [anon_sym_loop] = ACTIONS(6623), - [anon_sym_while] = ACTIONS(6623), - [anon_sym_do] = ACTIONS(6623), - [anon_sym_if] = ACTIONS(6623), - [anon_sym_match] = ACTIONS(6623), - [anon_sym_LBRACE] = ACTIONS(6623), - [anon_sym_RBRACE] = ACTIONS(6623), - [anon_sym_DOT_DOT] = ACTIONS(6623), - [anon_sym_try] = ACTIONS(6623), - [anon_sym_return] = ACTIONS(6623), - [anon_sym_source] = ACTIONS(6623), - [anon_sym_source_DASHenv] = ACTIONS(6623), - [anon_sym_register] = ACTIONS(6623), - [anon_sym_hide] = ACTIONS(6623), - [anon_sym_hide_DASHenv] = ACTIONS(6623), - [anon_sym_overlay] = ACTIONS(6623), - [anon_sym_where] = ACTIONS(6623), - [anon_sym_not] = ACTIONS(6623), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6623), - [anon_sym_DOT_DOT_LT] = ACTIONS(6623), - [anon_sym_null] = ACTIONS(6623), - [anon_sym_true] = ACTIONS(6623), - [anon_sym_false] = ACTIONS(6623), - [aux_sym__val_number_decimal_token1] = ACTIONS(6623), - [aux_sym__val_number_decimal_token2] = ACTIONS(6623), - [anon_sym_DOT2] = ACTIONS(6623), - [aux_sym__val_number_decimal_token3] = ACTIONS(6623), - [aux_sym__val_number_token1] = ACTIONS(6623), - [aux_sym__val_number_token2] = ACTIONS(6623), - [aux_sym__val_number_token3] = ACTIONS(6623), - [aux_sym__val_number_token4] = ACTIONS(6623), - [aux_sym__val_number_token5] = ACTIONS(6623), - [aux_sym__val_number_token6] = ACTIONS(6623), - [anon_sym_0b] = ACTIONS(6623), - [anon_sym_0o] = ACTIONS(6623), - [anon_sym_0x] = ACTIONS(6623), - [sym_val_date] = ACTIONS(6623), - [anon_sym_DQUOTE] = ACTIONS(6623), - [sym__str_single_quotes] = ACTIONS(6623), - [sym__str_back_ticks] = ACTIONS(6623), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6623), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6623), - [anon_sym_CARET] = ACTIONS(6623), - [anon_sym_POUND] = ACTIONS(113), - }, - [2734] = { - [sym_comment] = STATE(2734), - [anon_sym_export] = ACTIONS(6623), - [anon_sym_alias] = ACTIONS(6623), - [anon_sym_let] = ACTIONS(6623), - [anon_sym_let_DASHenv] = ACTIONS(6623), - [anon_sym_mut] = ACTIONS(6623), - [anon_sym_const] = ACTIONS(6623), - [anon_sym_SEMI] = ACTIONS(6623), - [sym_cmd_identifier] = ACTIONS(6623), - [anon_sym_LF] = ACTIONS(6625), - [anon_sym_def] = ACTIONS(6623), - [anon_sym_export_DASHenv] = ACTIONS(6623), - [anon_sym_extern] = ACTIONS(6623), - [anon_sym_module] = ACTIONS(6623), - [anon_sym_use] = ACTIONS(6623), - [anon_sym_LBRACK] = ACTIONS(6623), - [anon_sym_LPAREN] = ACTIONS(6623), - [anon_sym_RPAREN] = ACTIONS(6623), - [anon_sym_DOLLAR] = ACTIONS(6623), - [anon_sym_error] = ACTIONS(6623), - [anon_sym_DASH] = ACTIONS(6623), - [anon_sym_break] = ACTIONS(6623), - [anon_sym_continue] = ACTIONS(6623), - [anon_sym_for] = ACTIONS(6623), - [anon_sym_loop] = ACTIONS(6623), - [anon_sym_while] = ACTIONS(6623), - [anon_sym_do] = ACTIONS(6623), - [anon_sym_if] = ACTIONS(6623), - [anon_sym_match] = ACTIONS(6623), - [anon_sym_LBRACE] = ACTIONS(6623), - [anon_sym_RBRACE] = ACTIONS(6623), - [anon_sym_DOT_DOT] = ACTIONS(6623), - [anon_sym_try] = ACTIONS(6623), - [anon_sym_return] = ACTIONS(6623), - [anon_sym_source] = ACTIONS(6623), - [anon_sym_source_DASHenv] = ACTIONS(6623), - [anon_sym_register] = ACTIONS(6623), - [anon_sym_hide] = ACTIONS(6623), - [anon_sym_hide_DASHenv] = ACTIONS(6623), - [anon_sym_overlay] = ACTIONS(6623), - [anon_sym_where] = ACTIONS(6623), - [anon_sym_not] = ACTIONS(6623), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6623), - [anon_sym_DOT_DOT_LT] = ACTIONS(6623), - [anon_sym_null] = ACTIONS(6623), - [anon_sym_true] = ACTIONS(6623), - [anon_sym_false] = ACTIONS(6623), - [aux_sym__val_number_decimal_token1] = ACTIONS(6623), - [aux_sym__val_number_decimal_token2] = ACTIONS(6623), - [anon_sym_DOT2] = ACTIONS(6623), - [aux_sym__val_number_decimal_token3] = ACTIONS(6623), - [aux_sym__val_number_token1] = ACTIONS(6623), - [aux_sym__val_number_token2] = ACTIONS(6623), - [aux_sym__val_number_token3] = ACTIONS(6623), - [aux_sym__val_number_token4] = ACTIONS(6623), - [aux_sym__val_number_token5] = ACTIONS(6623), - [aux_sym__val_number_token6] = ACTIONS(6623), - [anon_sym_0b] = ACTIONS(6623), - [anon_sym_0o] = ACTIONS(6623), - [anon_sym_0x] = ACTIONS(6623), - [sym_val_date] = ACTIONS(6623), - [anon_sym_DQUOTE] = ACTIONS(6623), - [sym__str_single_quotes] = ACTIONS(6623), - [sym__str_back_ticks] = ACTIONS(6623), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6623), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6623), - [anon_sym_CARET] = ACTIONS(6623), - [anon_sym_POUND] = ACTIONS(113), - }, - [2735] = { - [sym_comment] = STATE(2735), - [anon_sym_export] = ACTIONS(6627), - [anon_sym_alias] = ACTIONS(6627), - [anon_sym_let] = ACTIONS(6627), - [anon_sym_let_DASHenv] = ACTIONS(6627), - [anon_sym_mut] = ACTIONS(6627), - [anon_sym_const] = ACTIONS(6627), - [anon_sym_SEMI] = ACTIONS(6627), - [sym_cmd_identifier] = ACTIONS(6627), - [anon_sym_LF] = ACTIONS(6629), - [anon_sym_def] = ACTIONS(6627), - [anon_sym_export_DASHenv] = ACTIONS(6627), - [anon_sym_extern] = ACTIONS(6627), - [anon_sym_module] = ACTIONS(6627), - [anon_sym_use] = ACTIONS(6627), - [anon_sym_LBRACK] = ACTIONS(6627), - [anon_sym_LPAREN] = ACTIONS(6627), - [anon_sym_RPAREN] = ACTIONS(6627), - [anon_sym_DOLLAR] = ACTIONS(6627), - [anon_sym_error] = ACTIONS(6627), - [anon_sym_DASH] = ACTIONS(6627), - [anon_sym_break] = ACTIONS(6627), - [anon_sym_continue] = ACTIONS(6627), - [anon_sym_for] = ACTIONS(6627), - [anon_sym_loop] = ACTIONS(6627), - [anon_sym_while] = ACTIONS(6627), - [anon_sym_do] = ACTIONS(6627), - [anon_sym_if] = ACTIONS(6627), - [anon_sym_match] = ACTIONS(6627), - [anon_sym_LBRACE] = ACTIONS(6627), - [anon_sym_RBRACE] = ACTIONS(6627), - [anon_sym_DOT_DOT] = ACTIONS(6627), - [anon_sym_try] = ACTIONS(6627), - [anon_sym_return] = ACTIONS(6627), - [anon_sym_source] = ACTIONS(6627), - [anon_sym_source_DASHenv] = ACTIONS(6627), - [anon_sym_register] = ACTIONS(6627), - [anon_sym_hide] = ACTIONS(6627), - [anon_sym_hide_DASHenv] = ACTIONS(6627), - [anon_sym_overlay] = ACTIONS(6627), - [anon_sym_where] = ACTIONS(6627), - [anon_sym_not] = ACTIONS(6627), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6627), - [anon_sym_DOT_DOT_LT] = ACTIONS(6627), - [anon_sym_null] = ACTIONS(6627), - [anon_sym_true] = ACTIONS(6627), - [anon_sym_false] = ACTIONS(6627), - [aux_sym__val_number_decimal_token1] = ACTIONS(6627), - [aux_sym__val_number_decimal_token2] = ACTIONS(6627), - [anon_sym_DOT2] = ACTIONS(6627), - [aux_sym__val_number_decimal_token3] = ACTIONS(6627), - [aux_sym__val_number_token1] = ACTIONS(6627), - [aux_sym__val_number_token2] = ACTIONS(6627), - [aux_sym__val_number_token3] = ACTIONS(6627), - [aux_sym__val_number_token4] = ACTIONS(6627), - [aux_sym__val_number_token5] = ACTIONS(6627), - [aux_sym__val_number_token6] = ACTIONS(6627), - [anon_sym_0b] = ACTIONS(6627), - [anon_sym_0o] = ACTIONS(6627), - [anon_sym_0x] = ACTIONS(6627), - [sym_val_date] = ACTIONS(6627), - [anon_sym_DQUOTE] = ACTIONS(6627), - [sym__str_single_quotes] = ACTIONS(6627), - [sym__str_back_ticks] = ACTIONS(6627), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6627), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6627), - [anon_sym_CARET] = ACTIONS(6627), - [anon_sym_POUND] = ACTIONS(113), - }, - [2736] = { - [sym_comment] = STATE(2736), - [anon_sym_export] = ACTIONS(6627), - [anon_sym_alias] = ACTIONS(6627), - [anon_sym_let] = ACTIONS(6627), - [anon_sym_let_DASHenv] = ACTIONS(6627), - [anon_sym_mut] = ACTIONS(6627), - [anon_sym_const] = ACTIONS(6627), - [anon_sym_SEMI] = ACTIONS(6627), - [sym_cmd_identifier] = ACTIONS(6627), - [anon_sym_LF] = ACTIONS(6629), - [anon_sym_def] = ACTIONS(6627), - [anon_sym_export_DASHenv] = ACTIONS(6627), - [anon_sym_extern] = ACTIONS(6627), - [anon_sym_module] = ACTIONS(6627), - [anon_sym_use] = ACTIONS(6627), - [anon_sym_LBRACK] = ACTIONS(6627), - [anon_sym_LPAREN] = ACTIONS(6627), - [anon_sym_RPAREN] = ACTIONS(6627), - [anon_sym_DOLLAR] = ACTIONS(6627), - [anon_sym_error] = ACTIONS(6627), - [anon_sym_DASH] = ACTIONS(6627), - [anon_sym_break] = ACTIONS(6627), - [anon_sym_continue] = ACTIONS(6627), - [anon_sym_for] = ACTIONS(6627), - [anon_sym_loop] = ACTIONS(6627), - [anon_sym_while] = ACTIONS(6627), - [anon_sym_do] = ACTIONS(6627), - [anon_sym_if] = ACTIONS(6627), - [anon_sym_match] = ACTIONS(6627), - [anon_sym_LBRACE] = ACTIONS(6627), - [anon_sym_RBRACE] = ACTIONS(6627), - [anon_sym_DOT_DOT] = ACTIONS(6627), - [anon_sym_try] = ACTIONS(6627), - [anon_sym_return] = ACTIONS(6627), - [anon_sym_source] = ACTIONS(6627), - [anon_sym_source_DASHenv] = ACTIONS(6627), - [anon_sym_register] = ACTIONS(6627), - [anon_sym_hide] = ACTIONS(6627), - [anon_sym_hide_DASHenv] = ACTIONS(6627), - [anon_sym_overlay] = ACTIONS(6627), - [anon_sym_where] = ACTIONS(6627), - [anon_sym_not] = ACTIONS(6627), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6627), - [anon_sym_DOT_DOT_LT] = ACTIONS(6627), - [anon_sym_null] = ACTIONS(6627), - [anon_sym_true] = ACTIONS(6627), - [anon_sym_false] = ACTIONS(6627), - [aux_sym__val_number_decimal_token1] = ACTIONS(6627), - [aux_sym__val_number_decimal_token2] = ACTIONS(6627), - [anon_sym_DOT2] = ACTIONS(6627), - [aux_sym__val_number_decimal_token3] = ACTIONS(6627), - [aux_sym__val_number_token1] = ACTIONS(6627), - [aux_sym__val_number_token2] = ACTIONS(6627), - [aux_sym__val_number_token3] = ACTIONS(6627), - [aux_sym__val_number_token4] = ACTIONS(6627), - [aux_sym__val_number_token5] = ACTIONS(6627), - [aux_sym__val_number_token6] = ACTIONS(6627), - [anon_sym_0b] = ACTIONS(6627), - [anon_sym_0o] = ACTIONS(6627), - [anon_sym_0x] = ACTIONS(6627), - [sym_val_date] = ACTIONS(6627), - [anon_sym_DQUOTE] = ACTIONS(6627), - [sym__str_single_quotes] = ACTIONS(6627), - [sym__str_back_ticks] = ACTIONS(6627), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6627), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6627), - [anon_sym_CARET] = ACTIONS(6627), - [anon_sym_POUND] = ACTIONS(113), - }, - [2737] = { - [sym_comment] = STATE(2737), - [anon_sym_export] = ACTIONS(6623), - [anon_sym_alias] = ACTIONS(6623), - [anon_sym_let] = ACTIONS(6623), - [anon_sym_let_DASHenv] = ACTIONS(6623), - [anon_sym_mut] = ACTIONS(6623), - [anon_sym_const] = ACTIONS(6623), - [anon_sym_SEMI] = ACTIONS(6623), - [sym_cmd_identifier] = ACTIONS(6623), - [anon_sym_LF] = ACTIONS(6625), - [anon_sym_def] = ACTIONS(6623), - [anon_sym_export_DASHenv] = ACTIONS(6623), - [anon_sym_extern] = ACTIONS(6623), - [anon_sym_module] = ACTIONS(6623), - [anon_sym_use] = ACTIONS(6623), - [anon_sym_LBRACK] = ACTIONS(6623), - [anon_sym_LPAREN] = ACTIONS(6623), - [anon_sym_RPAREN] = ACTIONS(6623), - [anon_sym_DOLLAR] = ACTIONS(6623), - [anon_sym_error] = ACTIONS(6623), - [anon_sym_DASH] = ACTIONS(6623), - [anon_sym_break] = ACTIONS(6623), - [anon_sym_continue] = ACTIONS(6623), - [anon_sym_for] = ACTIONS(6623), - [anon_sym_loop] = ACTIONS(6623), - [anon_sym_while] = ACTIONS(6623), - [anon_sym_do] = ACTIONS(6623), - [anon_sym_if] = ACTIONS(6623), - [anon_sym_match] = ACTIONS(6623), - [anon_sym_LBRACE] = ACTIONS(6623), - [anon_sym_RBRACE] = ACTIONS(6623), - [anon_sym_DOT_DOT] = ACTIONS(6623), - [anon_sym_try] = ACTIONS(6623), - [anon_sym_return] = ACTIONS(6623), - [anon_sym_source] = ACTIONS(6623), - [anon_sym_source_DASHenv] = ACTIONS(6623), - [anon_sym_register] = ACTIONS(6623), - [anon_sym_hide] = ACTIONS(6623), - [anon_sym_hide_DASHenv] = ACTIONS(6623), - [anon_sym_overlay] = ACTIONS(6623), - [anon_sym_where] = ACTIONS(6623), - [anon_sym_not] = ACTIONS(6623), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6623), - [anon_sym_DOT_DOT_LT] = ACTIONS(6623), - [anon_sym_null] = ACTIONS(6623), - [anon_sym_true] = ACTIONS(6623), - [anon_sym_false] = ACTIONS(6623), - [aux_sym__val_number_decimal_token1] = ACTIONS(6623), - [aux_sym__val_number_decimal_token2] = ACTIONS(6623), - [anon_sym_DOT2] = ACTIONS(6623), - [aux_sym__val_number_decimal_token3] = ACTIONS(6623), - [aux_sym__val_number_token1] = ACTIONS(6623), - [aux_sym__val_number_token2] = ACTIONS(6623), - [aux_sym__val_number_token3] = ACTIONS(6623), - [aux_sym__val_number_token4] = ACTIONS(6623), - [aux_sym__val_number_token5] = ACTIONS(6623), - [aux_sym__val_number_token6] = ACTIONS(6623), - [anon_sym_0b] = ACTIONS(6623), - [anon_sym_0o] = ACTIONS(6623), - [anon_sym_0x] = ACTIONS(6623), - [sym_val_date] = ACTIONS(6623), - [anon_sym_DQUOTE] = ACTIONS(6623), - [sym__str_single_quotes] = ACTIONS(6623), - [sym__str_back_ticks] = ACTIONS(6623), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6623), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6623), - [anon_sym_CARET] = ACTIONS(6623), - [anon_sym_POUND] = ACTIONS(113), - }, - [2738] = { - [sym_comment] = STATE(2738), - [ts_builtin_sym_end] = ACTIONS(3750), - [anon_sym_export] = ACTIONS(3748), - [anon_sym_alias] = ACTIONS(3748), - [anon_sym_let] = ACTIONS(3748), - [anon_sym_let_DASHenv] = ACTIONS(3748), - [anon_sym_mut] = ACTIONS(3748), - [anon_sym_const] = ACTIONS(3748), - [anon_sym_SEMI] = ACTIONS(3748), - [sym_cmd_identifier] = ACTIONS(3748), - [anon_sym_LF] = ACTIONS(3750), - [anon_sym_def] = ACTIONS(3748), - [anon_sym_export_DASHenv] = ACTIONS(3748), - [anon_sym_extern] = ACTIONS(3748), - [anon_sym_module] = ACTIONS(3748), - [anon_sym_use] = ACTIONS(3748), - [anon_sym_LBRACK] = ACTIONS(3748), - [anon_sym_LPAREN] = ACTIONS(3748), - [anon_sym_DOLLAR] = ACTIONS(3748), - [anon_sym_error] = ACTIONS(3748), - [anon_sym_DASH] = ACTIONS(3748), - [anon_sym_break] = ACTIONS(3748), - [anon_sym_continue] = ACTIONS(3748), - [anon_sym_for] = ACTIONS(3748), - [anon_sym_loop] = ACTIONS(3748), - [anon_sym_while] = ACTIONS(3748), - [anon_sym_do] = ACTIONS(3748), - [anon_sym_if] = ACTIONS(3748), - [anon_sym_match] = ACTIONS(3748), - [anon_sym_LBRACE] = ACTIONS(3748), - [anon_sym_DOT_DOT] = ACTIONS(3748), - [anon_sym_try] = ACTIONS(3748), - [anon_sym_return] = ACTIONS(3748), - [anon_sym_source] = ACTIONS(3748), - [anon_sym_source_DASHenv] = ACTIONS(3748), - [anon_sym_register] = ACTIONS(3748), - [anon_sym_hide] = ACTIONS(3748), - [anon_sym_hide_DASHenv] = ACTIONS(3748), - [anon_sym_overlay] = ACTIONS(3748), - [anon_sym_where] = ACTIONS(3748), - [anon_sym_not] = ACTIONS(3748), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3748), - [anon_sym_DOT_DOT_LT] = ACTIONS(3748), - [aux_sym__immediate_decimal_token1] = ACTIONS(6631), - [anon_sym_null] = ACTIONS(3748), - [anon_sym_true] = ACTIONS(3748), - [anon_sym_false] = ACTIONS(3748), - [aux_sym__val_number_decimal_token1] = ACTIONS(3748), - [aux_sym__val_number_decimal_token2] = ACTIONS(3748), - [anon_sym_DOT2] = ACTIONS(3748), - [aux_sym__val_number_decimal_token3] = ACTIONS(3748), - [aux_sym__val_number_token1] = ACTIONS(3748), - [aux_sym__val_number_token2] = ACTIONS(3748), - [aux_sym__val_number_token3] = ACTIONS(3748), - [aux_sym__val_number_token4] = ACTIONS(3748), - [aux_sym__val_number_token5] = ACTIONS(3748), - [aux_sym__val_number_token6] = ACTIONS(3748), - [anon_sym_0b] = ACTIONS(3748), - [anon_sym_0o] = ACTIONS(3748), - [anon_sym_0x] = ACTIONS(3748), - [sym_val_date] = ACTIONS(3748), - [anon_sym_DQUOTE] = ACTIONS(3748), - [sym__str_single_quotes] = ACTIONS(3748), - [sym__str_back_ticks] = ACTIONS(3748), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3748), - [anon_sym_CARET] = ACTIONS(3748), - [anon_sym_POUND] = ACTIONS(113), - }, - [2739] = { - [sym_comment] = STATE(2739), - [anon_sym_export] = ACTIONS(6633), - [anon_sym_alias] = ACTIONS(6633), - [anon_sym_let] = ACTIONS(6633), - [anon_sym_let_DASHenv] = ACTIONS(6633), - [anon_sym_mut] = ACTIONS(6633), - [anon_sym_const] = ACTIONS(6633), - [anon_sym_SEMI] = ACTIONS(6633), - [sym_cmd_identifier] = ACTIONS(6633), - [anon_sym_LF] = ACTIONS(6635), - [anon_sym_def] = ACTIONS(6633), - [anon_sym_export_DASHenv] = ACTIONS(6633), - [anon_sym_extern] = ACTIONS(6633), - [anon_sym_module] = ACTIONS(6633), - [anon_sym_use] = ACTIONS(6633), - [anon_sym_LBRACK] = ACTIONS(6633), - [anon_sym_LPAREN] = ACTIONS(6633), - [anon_sym_RPAREN] = ACTIONS(6633), - [anon_sym_DOLLAR] = ACTIONS(6633), - [anon_sym_error] = ACTIONS(6633), - [anon_sym_DASH] = ACTIONS(6633), - [anon_sym_break] = ACTIONS(6633), - [anon_sym_continue] = ACTIONS(6633), - [anon_sym_for] = ACTIONS(6633), - [anon_sym_loop] = ACTIONS(6633), - [anon_sym_while] = ACTIONS(6633), - [anon_sym_do] = ACTIONS(6633), - [anon_sym_if] = ACTIONS(6633), - [anon_sym_match] = ACTIONS(6633), - [anon_sym_LBRACE] = ACTIONS(6633), - [anon_sym_RBRACE] = ACTIONS(6633), - [anon_sym_DOT_DOT] = ACTIONS(6633), - [anon_sym_try] = ACTIONS(6633), - [anon_sym_return] = ACTIONS(6633), - [anon_sym_source] = ACTIONS(6633), - [anon_sym_source_DASHenv] = ACTIONS(6633), - [anon_sym_register] = ACTIONS(6633), - [anon_sym_hide] = ACTIONS(6633), - [anon_sym_hide_DASHenv] = ACTIONS(6633), - [anon_sym_overlay] = ACTIONS(6633), - [anon_sym_where] = ACTIONS(6633), - [anon_sym_not] = ACTIONS(6633), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6633), - [anon_sym_DOT_DOT_LT] = ACTIONS(6633), - [anon_sym_null] = ACTIONS(6633), - [anon_sym_true] = ACTIONS(6633), - [anon_sym_false] = ACTIONS(6633), - [aux_sym__val_number_decimal_token1] = ACTIONS(6633), - [aux_sym__val_number_decimal_token2] = ACTIONS(6633), - [anon_sym_DOT2] = ACTIONS(6633), - [aux_sym__val_number_decimal_token3] = ACTIONS(6633), - [aux_sym__val_number_token1] = ACTIONS(6633), - [aux_sym__val_number_token2] = ACTIONS(6633), - [aux_sym__val_number_token3] = ACTIONS(6633), - [aux_sym__val_number_token4] = ACTIONS(6633), - [aux_sym__val_number_token5] = ACTIONS(6633), - [aux_sym__val_number_token6] = ACTIONS(6633), - [anon_sym_0b] = ACTIONS(6633), - [anon_sym_0o] = ACTIONS(6633), - [anon_sym_0x] = ACTIONS(6633), - [sym_val_date] = ACTIONS(6633), - [anon_sym_DQUOTE] = ACTIONS(6633), - [sym__str_single_quotes] = ACTIONS(6633), - [sym__str_back_ticks] = ACTIONS(6633), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6633), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6633), - [anon_sym_CARET] = ACTIONS(6633), - [anon_sym_POUND] = ACTIONS(113), - }, - [2740] = { - [sym_comment] = STATE(2740), - [anon_sym_export] = ACTIONS(6623), - [anon_sym_alias] = ACTIONS(6623), - [anon_sym_let] = ACTIONS(6623), - [anon_sym_let_DASHenv] = ACTIONS(6623), - [anon_sym_mut] = ACTIONS(6623), - [anon_sym_const] = ACTIONS(6623), - [anon_sym_SEMI] = ACTIONS(6623), - [sym_cmd_identifier] = ACTIONS(6623), - [anon_sym_LF] = ACTIONS(6625), - [anon_sym_def] = ACTIONS(6623), - [anon_sym_export_DASHenv] = ACTIONS(6623), - [anon_sym_extern] = ACTIONS(6623), - [anon_sym_module] = ACTIONS(6623), - [anon_sym_use] = ACTIONS(6623), - [anon_sym_LBRACK] = ACTIONS(6623), - [anon_sym_LPAREN] = ACTIONS(6623), - [anon_sym_RPAREN] = ACTIONS(6623), - [anon_sym_DOLLAR] = ACTIONS(6623), - [anon_sym_error] = ACTIONS(6623), - [anon_sym_DASH] = ACTIONS(6623), - [anon_sym_break] = ACTIONS(6623), - [anon_sym_continue] = ACTIONS(6623), - [anon_sym_for] = ACTIONS(6623), - [anon_sym_loop] = ACTIONS(6623), - [anon_sym_while] = ACTIONS(6623), - [anon_sym_do] = ACTIONS(6623), - [anon_sym_if] = ACTIONS(6623), - [anon_sym_match] = ACTIONS(6623), - [anon_sym_LBRACE] = ACTIONS(6623), - [anon_sym_RBRACE] = ACTIONS(6623), - [anon_sym_DOT_DOT] = ACTIONS(6623), - [anon_sym_try] = ACTIONS(6623), - [anon_sym_return] = ACTIONS(6623), - [anon_sym_source] = ACTIONS(6623), - [anon_sym_source_DASHenv] = ACTIONS(6623), - [anon_sym_register] = ACTIONS(6623), - [anon_sym_hide] = ACTIONS(6623), - [anon_sym_hide_DASHenv] = ACTIONS(6623), - [anon_sym_overlay] = ACTIONS(6623), - [anon_sym_where] = ACTIONS(6623), - [anon_sym_not] = ACTIONS(6623), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6623), - [anon_sym_DOT_DOT_LT] = ACTIONS(6623), - [anon_sym_null] = ACTIONS(6623), - [anon_sym_true] = ACTIONS(6623), - [anon_sym_false] = ACTIONS(6623), - [aux_sym__val_number_decimal_token1] = ACTIONS(6623), - [aux_sym__val_number_decimal_token2] = ACTIONS(6623), - [anon_sym_DOT2] = ACTIONS(6623), - [aux_sym__val_number_decimal_token3] = ACTIONS(6623), - [aux_sym__val_number_token1] = ACTIONS(6623), - [aux_sym__val_number_token2] = ACTIONS(6623), - [aux_sym__val_number_token3] = ACTIONS(6623), - [aux_sym__val_number_token4] = ACTIONS(6623), - [aux_sym__val_number_token5] = ACTIONS(6623), - [aux_sym__val_number_token6] = ACTIONS(6623), - [anon_sym_0b] = ACTIONS(6623), - [anon_sym_0o] = ACTIONS(6623), - [anon_sym_0x] = ACTIONS(6623), - [sym_val_date] = ACTIONS(6623), - [anon_sym_DQUOTE] = ACTIONS(6623), - [sym__str_single_quotes] = ACTIONS(6623), - [sym__str_back_ticks] = ACTIONS(6623), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6623), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6623), - [anon_sym_CARET] = ACTIONS(6623), - [anon_sym_POUND] = ACTIONS(113), - }, - [2741] = { - [sym_comment] = STATE(2741), - [anon_sym_export] = ACTIONS(6637), - [anon_sym_alias] = ACTIONS(6637), - [anon_sym_let] = ACTIONS(6637), - [anon_sym_let_DASHenv] = ACTIONS(6637), - [anon_sym_mut] = ACTIONS(6637), - [anon_sym_const] = ACTIONS(6637), - [anon_sym_SEMI] = ACTIONS(6637), - [sym_cmd_identifier] = ACTIONS(6637), - [anon_sym_LF] = ACTIONS(6639), - [anon_sym_def] = ACTIONS(6637), - [anon_sym_export_DASHenv] = ACTIONS(6637), - [anon_sym_extern] = ACTIONS(6637), - [anon_sym_module] = ACTIONS(6637), - [anon_sym_use] = ACTIONS(6637), - [anon_sym_LBRACK] = ACTIONS(6637), - [anon_sym_LPAREN] = ACTIONS(6637), - [anon_sym_RPAREN] = ACTIONS(6637), - [anon_sym_DOLLAR] = ACTIONS(6637), - [anon_sym_error] = ACTIONS(6637), - [anon_sym_DASH] = ACTIONS(6637), - [anon_sym_break] = ACTIONS(6637), - [anon_sym_continue] = ACTIONS(6637), - [anon_sym_for] = ACTIONS(6637), - [anon_sym_loop] = ACTIONS(6637), - [anon_sym_while] = ACTIONS(6637), - [anon_sym_do] = ACTIONS(6637), - [anon_sym_if] = ACTIONS(6637), - [anon_sym_match] = ACTIONS(6637), - [anon_sym_LBRACE] = ACTIONS(6637), - [anon_sym_RBRACE] = ACTIONS(6637), - [anon_sym_DOT_DOT] = ACTIONS(6637), - [anon_sym_try] = ACTIONS(6637), - [anon_sym_return] = ACTIONS(6637), - [anon_sym_source] = ACTIONS(6637), - [anon_sym_source_DASHenv] = ACTIONS(6637), - [anon_sym_register] = ACTIONS(6637), - [anon_sym_hide] = ACTIONS(6637), - [anon_sym_hide_DASHenv] = ACTIONS(6637), - [anon_sym_overlay] = ACTIONS(6637), - [anon_sym_where] = ACTIONS(6637), - [anon_sym_not] = ACTIONS(6637), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6637), - [anon_sym_DOT_DOT_LT] = ACTIONS(6637), - [anon_sym_null] = ACTIONS(6637), - [anon_sym_true] = ACTIONS(6637), - [anon_sym_false] = ACTIONS(6637), - [aux_sym__val_number_decimal_token1] = ACTIONS(6637), - [aux_sym__val_number_decimal_token2] = ACTIONS(6637), - [anon_sym_DOT2] = ACTIONS(6637), - [aux_sym__val_number_decimal_token3] = ACTIONS(6637), - [aux_sym__val_number_token1] = ACTIONS(6637), - [aux_sym__val_number_token2] = ACTIONS(6637), - [aux_sym__val_number_token3] = ACTIONS(6637), - [aux_sym__val_number_token4] = ACTIONS(6637), - [aux_sym__val_number_token5] = ACTIONS(6637), - [aux_sym__val_number_token6] = ACTIONS(6637), - [anon_sym_0b] = ACTIONS(6637), - [anon_sym_0o] = ACTIONS(6637), - [anon_sym_0x] = ACTIONS(6637), - [sym_val_date] = ACTIONS(6637), - [anon_sym_DQUOTE] = ACTIONS(6637), - [sym__str_single_quotes] = ACTIONS(6637), - [sym__str_back_ticks] = ACTIONS(6637), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6637), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6637), - [anon_sym_CARET] = ACTIONS(6637), - [anon_sym_POUND] = ACTIONS(113), - }, - [2742] = { - [sym_comment] = STATE(2742), - [anon_sym_export] = ACTIONS(6641), - [anon_sym_alias] = ACTIONS(6641), - [anon_sym_let] = ACTIONS(6641), - [anon_sym_let_DASHenv] = ACTIONS(6641), - [anon_sym_mut] = ACTIONS(6641), - [anon_sym_const] = ACTIONS(6641), - [anon_sym_SEMI] = ACTIONS(6641), - [sym_cmd_identifier] = ACTIONS(6641), - [anon_sym_LF] = ACTIONS(6643), - [anon_sym_def] = ACTIONS(6641), - [anon_sym_export_DASHenv] = ACTIONS(6641), - [anon_sym_extern] = ACTIONS(6641), - [anon_sym_module] = ACTIONS(6641), - [anon_sym_use] = ACTIONS(6641), - [anon_sym_LBRACK] = ACTIONS(6641), - [anon_sym_LPAREN] = ACTIONS(6641), - [anon_sym_RPAREN] = ACTIONS(6641), - [anon_sym_DOLLAR] = ACTIONS(6641), - [anon_sym_error] = ACTIONS(6641), - [anon_sym_DASH] = ACTIONS(6641), - [anon_sym_break] = ACTIONS(6641), - [anon_sym_continue] = ACTIONS(6641), - [anon_sym_for] = ACTIONS(6641), - [anon_sym_loop] = ACTIONS(6641), - [anon_sym_while] = ACTIONS(6641), - [anon_sym_do] = ACTIONS(6641), - [anon_sym_if] = ACTIONS(6641), - [anon_sym_match] = ACTIONS(6641), - [anon_sym_LBRACE] = ACTIONS(6641), - [anon_sym_RBRACE] = ACTIONS(6641), - [anon_sym_DOT_DOT] = ACTIONS(6641), - [anon_sym_try] = ACTIONS(6641), - [anon_sym_return] = ACTIONS(6641), - [anon_sym_source] = ACTIONS(6641), - [anon_sym_source_DASHenv] = ACTIONS(6641), - [anon_sym_register] = ACTIONS(6641), - [anon_sym_hide] = ACTIONS(6641), - [anon_sym_hide_DASHenv] = ACTIONS(6641), - [anon_sym_overlay] = ACTIONS(6641), - [anon_sym_where] = ACTIONS(6641), - [anon_sym_not] = ACTIONS(6641), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6641), - [anon_sym_DOT_DOT_LT] = ACTIONS(6641), - [anon_sym_null] = ACTIONS(6641), - [anon_sym_true] = ACTIONS(6641), - [anon_sym_false] = ACTIONS(6641), - [aux_sym__val_number_decimal_token1] = ACTIONS(6641), - [aux_sym__val_number_decimal_token2] = ACTIONS(6641), - [anon_sym_DOT2] = ACTIONS(6641), - [aux_sym__val_number_decimal_token3] = ACTIONS(6641), - [aux_sym__val_number_token1] = ACTIONS(6641), - [aux_sym__val_number_token2] = ACTIONS(6641), - [aux_sym__val_number_token3] = ACTIONS(6641), - [aux_sym__val_number_token4] = ACTIONS(6641), - [aux_sym__val_number_token5] = ACTIONS(6641), - [aux_sym__val_number_token6] = ACTIONS(6641), - [anon_sym_0b] = ACTIONS(6641), - [anon_sym_0o] = ACTIONS(6641), - [anon_sym_0x] = ACTIONS(6641), - [sym_val_date] = ACTIONS(6641), - [anon_sym_DQUOTE] = ACTIONS(6641), - [sym__str_single_quotes] = ACTIONS(6641), - [sym__str_back_ticks] = ACTIONS(6641), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6641), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6641), - [anon_sym_CARET] = ACTIONS(6641), - [anon_sym_POUND] = ACTIONS(113), - }, - [2743] = { - [sym_comment] = STATE(2743), - [anon_sym_export] = ACTIONS(6645), - [anon_sym_alias] = ACTIONS(6645), - [anon_sym_let] = ACTIONS(6645), - [anon_sym_let_DASHenv] = ACTIONS(6645), - [anon_sym_mut] = ACTIONS(6645), - [anon_sym_const] = ACTIONS(6645), - [anon_sym_SEMI] = ACTIONS(6645), - [sym_cmd_identifier] = ACTIONS(6645), - [anon_sym_LF] = ACTIONS(6647), - [anon_sym_def] = ACTIONS(6645), - [anon_sym_export_DASHenv] = ACTIONS(6645), - [anon_sym_extern] = ACTIONS(6645), - [anon_sym_module] = ACTIONS(6645), - [anon_sym_use] = ACTIONS(6645), - [anon_sym_LBRACK] = ACTIONS(6645), - [anon_sym_LPAREN] = ACTIONS(6645), - [anon_sym_RPAREN] = ACTIONS(6645), - [anon_sym_DOLLAR] = ACTIONS(6645), - [anon_sym_error] = ACTIONS(6645), - [anon_sym_DASH] = ACTIONS(6645), - [anon_sym_break] = ACTIONS(6645), - [anon_sym_continue] = ACTIONS(6645), - [anon_sym_for] = ACTIONS(6645), - [anon_sym_loop] = ACTIONS(6645), - [anon_sym_while] = ACTIONS(6645), - [anon_sym_do] = ACTIONS(6645), - [anon_sym_if] = ACTIONS(6645), - [anon_sym_match] = ACTIONS(6645), - [anon_sym_LBRACE] = ACTIONS(6645), - [anon_sym_RBRACE] = ACTIONS(6645), - [anon_sym_DOT_DOT] = ACTIONS(6645), - [anon_sym_try] = ACTIONS(6645), - [anon_sym_return] = ACTIONS(6645), - [anon_sym_source] = ACTIONS(6645), - [anon_sym_source_DASHenv] = ACTIONS(6645), - [anon_sym_register] = ACTIONS(6645), - [anon_sym_hide] = ACTIONS(6645), - [anon_sym_hide_DASHenv] = ACTIONS(6645), - [anon_sym_overlay] = ACTIONS(6645), - [anon_sym_where] = ACTIONS(6645), - [anon_sym_not] = ACTIONS(6645), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6645), - [anon_sym_DOT_DOT_LT] = ACTIONS(6645), - [anon_sym_null] = ACTIONS(6645), - [anon_sym_true] = ACTIONS(6645), - [anon_sym_false] = ACTIONS(6645), - [aux_sym__val_number_decimal_token1] = ACTIONS(6645), - [aux_sym__val_number_decimal_token2] = ACTIONS(6645), - [anon_sym_DOT2] = ACTIONS(6645), - [aux_sym__val_number_decimal_token3] = ACTIONS(6645), - [aux_sym__val_number_token1] = ACTIONS(6645), - [aux_sym__val_number_token2] = ACTIONS(6645), - [aux_sym__val_number_token3] = ACTIONS(6645), - [aux_sym__val_number_token4] = ACTIONS(6645), - [aux_sym__val_number_token5] = ACTIONS(6645), - [aux_sym__val_number_token6] = ACTIONS(6645), - [anon_sym_0b] = ACTIONS(6645), - [anon_sym_0o] = ACTIONS(6645), - [anon_sym_0x] = ACTIONS(6645), - [sym_val_date] = ACTIONS(6645), - [anon_sym_DQUOTE] = ACTIONS(6645), - [sym__str_single_quotes] = ACTIONS(6645), - [sym__str_back_ticks] = ACTIONS(6645), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6645), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6645), - [anon_sym_CARET] = ACTIONS(6645), - [anon_sym_POUND] = ACTIONS(113), - }, - [2744] = { - [sym_comment] = STATE(2744), - [anon_sym_export] = ACTIONS(3518), - [anon_sym_alias] = ACTIONS(3518), - [anon_sym_let] = ACTIONS(3518), - [anon_sym_let_DASHenv] = ACTIONS(3518), - [anon_sym_mut] = ACTIONS(3518), - [anon_sym_const] = ACTIONS(3518), - [anon_sym_SEMI] = ACTIONS(3518), - [sym_cmd_identifier] = ACTIONS(3518), - [anon_sym_LF] = ACTIONS(3520), - [anon_sym_def] = ACTIONS(3518), - [anon_sym_export_DASHenv] = ACTIONS(3518), - [anon_sym_extern] = ACTIONS(3518), - [anon_sym_module] = ACTIONS(3518), - [anon_sym_use] = ACTIONS(3518), - [anon_sym_LBRACK] = ACTIONS(3518), - [anon_sym_LPAREN] = ACTIONS(3518), - [anon_sym_RPAREN] = ACTIONS(3518), - [anon_sym_DOLLAR] = ACTIONS(3518), - [anon_sym_error] = ACTIONS(3518), - [anon_sym_DASH] = ACTIONS(3518), - [anon_sym_break] = ACTIONS(3518), - [anon_sym_continue] = ACTIONS(3518), - [anon_sym_for] = ACTIONS(3518), - [anon_sym_loop] = ACTIONS(3518), - [anon_sym_while] = ACTIONS(3518), - [anon_sym_do] = ACTIONS(3518), - [anon_sym_if] = ACTIONS(3518), - [anon_sym_match] = ACTIONS(3518), - [anon_sym_LBRACE] = ACTIONS(3518), - [anon_sym_RBRACE] = ACTIONS(3518), - [anon_sym_DOT_DOT] = ACTIONS(3518), - [anon_sym_try] = ACTIONS(3518), - [anon_sym_return] = ACTIONS(3518), - [anon_sym_source] = ACTIONS(3518), - [anon_sym_source_DASHenv] = ACTIONS(3518), - [anon_sym_register] = ACTIONS(3518), - [anon_sym_hide] = ACTIONS(3518), - [anon_sym_hide_DASHenv] = ACTIONS(3518), - [anon_sym_overlay] = ACTIONS(3518), - [anon_sym_where] = ACTIONS(3518), - [anon_sym_not] = ACTIONS(3518), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3518), - [anon_sym_DOT_DOT_LT] = ACTIONS(3518), - [anon_sym_null] = ACTIONS(3518), - [anon_sym_true] = ACTIONS(3518), - [anon_sym_false] = ACTIONS(3518), - [aux_sym__val_number_decimal_token1] = ACTIONS(3518), - [aux_sym__val_number_decimal_token2] = ACTIONS(3518), - [anon_sym_DOT2] = ACTIONS(3518), - [aux_sym__val_number_decimal_token3] = ACTIONS(3518), - [aux_sym__val_number_token1] = ACTIONS(3518), - [aux_sym__val_number_token2] = ACTIONS(3518), - [aux_sym__val_number_token3] = ACTIONS(3518), - [aux_sym__val_number_token4] = ACTIONS(3518), - [aux_sym__val_number_token5] = ACTIONS(3518), - [aux_sym__val_number_token6] = ACTIONS(3518), - [anon_sym_0b] = ACTIONS(3518), - [anon_sym_0o] = ACTIONS(3518), - [anon_sym_0x] = ACTIONS(3518), - [sym_val_date] = ACTIONS(3518), - [anon_sym_DQUOTE] = ACTIONS(3518), - [sym__str_single_quotes] = ACTIONS(3518), - [sym__str_back_ticks] = ACTIONS(3518), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3518), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3518), - [anon_sym_CARET] = ACTIONS(3518), - [anon_sym_POUND] = ACTIONS(113), - }, - [2745] = { - [sym_comment] = STATE(2745), - [ts_builtin_sym_end] = ACTIONS(5085), - [anon_sym_export] = ACTIONS(5083), - [anon_sym_alias] = ACTIONS(5083), - [anon_sym_let] = ACTIONS(5083), - [anon_sym_let_DASHenv] = ACTIONS(5083), - [anon_sym_mut] = ACTIONS(5083), - [anon_sym_const] = ACTIONS(5083), - [anon_sym_SEMI] = ACTIONS(5083), - [sym_cmd_identifier] = ACTIONS(5083), - [anon_sym_LF] = ACTIONS(5085), - [anon_sym_def] = ACTIONS(5083), - [anon_sym_export_DASHenv] = ACTIONS(5083), - [anon_sym_extern] = ACTIONS(5083), - [anon_sym_module] = ACTIONS(5083), - [anon_sym_use] = ACTIONS(5083), - [anon_sym_LBRACK] = ACTIONS(5083), - [anon_sym_LPAREN] = ACTIONS(5083), - [anon_sym_DOLLAR] = ACTIONS(5083), - [anon_sym_error] = ACTIONS(5083), - [anon_sym_DASH] = ACTIONS(5083), - [anon_sym_break] = ACTIONS(5083), - [anon_sym_continue] = ACTIONS(5083), - [anon_sym_for] = ACTIONS(5083), - [anon_sym_loop] = ACTIONS(5083), - [anon_sym_while] = ACTIONS(5083), - [anon_sym_do] = ACTIONS(5083), - [anon_sym_if] = ACTIONS(5083), - [anon_sym_match] = ACTIONS(5083), - [anon_sym_LBRACE] = ACTIONS(5083), - [anon_sym_DOT_DOT] = ACTIONS(5083), - [anon_sym_try] = ACTIONS(5083), - [anon_sym_return] = ACTIONS(5083), - [anon_sym_source] = ACTIONS(5083), - [anon_sym_source_DASHenv] = ACTIONS(5083), - [anon_sym_register] = ACTIONS(5083), - [anon_sym_hide] = ACTIONS(5083), - [anon_sym_hide_DASHenv] = ACTIONS(5083), - [anon_sym_overlay] = ACTIONS(5083), - [anon_sym_where] = ACTIONS(5083), - [anon_sym_not] = ACTIONS(5083), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5083), - [anon_sym_DOT_DOT_LT] = ACTIONS(5083), - [aux_sym__immediate_decimal_token1] = ACTIONS(6631), - [anon_sym_null] = ACTIONS(5083), - [anon_sym_true] = ACTIONS(5083), - [anon_sym_false] = ACTIONS(5083), - [aux_sym__val_number_decimal_token1] = ACTIONS(5083), - [aux_sym__val_number_decimal_token2] = ACTIONS(5083), - [anon_sym_DOT2] = ACTIONS(5083), - [aux_sym__val_number_decimal_token3] = ACTIONS(5083), - [aux_sym__val_number_token1] = ACTIONS(5083), - [aux_sym__val_number_token2] = ACTIONS(5083), - [aux_sym__val_number_token3] = ACTIONS(5083), - [aux_sym__val_number_token4] = ACTIONS(5083), - [aux_sym__val_number_token5] = ACTIONS(5083), - [aux_sym__val_number_token6] = ACTIONS(5083), - [anon_sym_0b] = ACTIONS(5083), - [anon_sym_0o] = ACTIONS(5083), - [anon_sym_0x] = ACTIONS(5083), - [sym_val_date] = ACTIONS(5083), - [anon_sym_DQUOTE] = ACTIONS(5083), - [sym__str_single_quotes] = ACTIONS(5083), - [sym__str_back_ticks] = ACTIONS(5083), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5083), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5083), - [anon_sym_CARET] = ACTIONS(5083), - [anon_sym_POUND] = ACTIONS(113), - }, - [2746] = { - [sym_comment] = STATE(2746), - [anon_sym_export] = ACTIONS(6641), - [anon_sym_alias] = ACTIONS(6641), - [anon_sym_let] = ACTIONS(6641), - [anon_sym_let_DASHenv] = ACTIONS(6641), - [anon_sym_mut] = ACTIONS(6641), - [anon_sym_const] = ACTIONS(6641), - [anon_sym_SEMI] = ACTIONS(6641), - [sym_cmd_identifier] = ACTIONS(6641), - [anon_sym_LF] = ACTIONS(6643), - [anon_sym_def] = ACTIONS(6641), - [anon_sym_export_DASHenv] = ACTIONS(6641), - [anon_sym_extern] = ACTIONS(6641), - [anon_sym_module] = ACTIONS(6641), - [anon_sym_use] = ACTIONS(6641), - [anon_sym_LBRACK] = ACTIONS(6641), - [anon_sym_LPAREN] = ACTIONS(6641), - [anon_sym_RPAREN] = ACTIONS(6641), - [anon_sym_DOLLAR] = ACTIONS(6641), - [anon_sym_error] = ACTIONS(6641), - [anon_sym_DASH] = ACTIONS(6641), - [anon_sym_break] = ACTIONS(6641), - [anon_sym_continue] = ACTIONS(6641), - [anon_sym_for] = ACTIONS(6641), - [anon_sym_loop] = ACTIONS(6641), - [anon_sym_while] = ACTIONS(6641), - [anon_sym_do] = ACTIONS(6641), - [anon_sym_if] = ACTIONS(6641), - [anon_sym_match] = ACTIONS(6641), - [anon_sym_LBRACE] = ACTIONS(6641), - [anon_sym_RBRACE] = ACTIONS(6641), - [anon_sym_DOT_DOT] = ACTIONS(6641), - [anon_sym_try] = ACTIONS(6641), - [anon_sym_return] = ACTIONS(6641), - [anon_sym_source] = ACTIONS(6641), - [anon_sym_source_DASHenv] = ACTIONS(6641), - [anon_sym_register] = ACTIONS(6641), - [anon_sym_hide] = ACTIONS(6641), - [anon_sym_hide_DASHenv] = ACTIONS(6641), - [anon_sym_overlay] = ACTIONS(6641), - [anon_sym_where] = ACTIONS(6641), - [anon_sym_not] = ACTIONS(6641), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6641), - [anon_sym_DOT_DOT_LT] = ACTIONS(6641), - [anon_sym_null] = ACTIONS(6641), - [anon_sym_true] = ACTIONS(6641), - [anon_sym_false] = ACTIONS(6641), - [aux_sym__val_number_decimal_token1] = ACTIONS(6641), - [aux_sym__val_number_decimal_token2] = ACTIONS(6641), - [anon_sym_DOT2] = ACTIONS(6641), - [aux_sym__val_number_decimal_token3] = ACTIONS(6641), - [aux_sym__val_number_token1] = ACTIONS(6641), - [aux_sym__val_number_token2] = ACTIONS(6641), - [aux_sym__val_number_token3] = ACTIONS(6641), - [aux_sym__val_number_token4] = ACTIONS(6641), - [aux_sym__val_number_token5] = ACTIONS(6641), - [aux_sym__val_number_token6] = ACTIONS(6641), - [anon_sym_0b] = ACTIONS(6641), - [anon_sym_0o] = ACTIONS(6641), - [anon_sym_0x] = ACTIONS(6641), - [sym_val_date] = ACTIONS(6641), - [anon_sym_DQUOTE] = ACTIONS(6641), - [sym__str_single_quotes] = ACTIONS(6641), - [sym__str_back_ticks] = ACTIONS(6641), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6641), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6641), - [anon_sym_CARET] = ACTIONS(6641), - [anon_sym_POUND] = ACTIONS(113), - }, - [2747] = { - [sym_comment] = STATE(2747), - [anon_sym_export] = ACTIONS(6649), - [anon_sym_alias] = ACTIONS(6649), - [anon_sym_let] = ACTIONS(6649), - [anon_sym_let_DASHenv] = ACTIONS(6649), - [anon_sym_mut] = ACTIONS(6649), - [anon_sym_const] = ACTIONS(6649), - [anon_sym_SEMI] = ACTIONS(6649), - [sym_cmd_identifier] = ACTIONS(6649), - [anon_sym_LF] = ACTIONS(6651), - [anon_sym_def] = ACTIONS(6649), - [anon_sym_export_DASHenv] = ACTIONS(6649), - [anon_sym_extern] = ACTIONS(6649), - [anon_sym_module] = ACTIONS(6649), - [anon_sym_use] = ACTIONS(6649), - [anon_sym_LBRACK] = ACTIONS(6649), - [anon_sym_LPAREN] = ACTIONS(6649), - [anon_sym_RPAREN] = ACTIONS(6649), - [anon_sym_DOLLAR] = ACTIONS(6649), - [anon_sym_error] = ACTIONS(6649), - [anon_sym_DASH] = ACTIONS(6649), - [anon_sym_break] = ACTIONS(6649), - [anon_sym_continue] = ACTIONS(6649), - [anon_sym_for] = ACTIONS(6649), - [anon_sym_loop] = ACTIONS(6649), - [anon_sym_while] = ACTIONS(6649), - [anon_sym_do] = ACTIONS(6649), - [anon_sym_if] = ACTIONS(6649), - [anon_sym_match] = ACTIONS(6649), - [anon_sym_LBRACE] = ACTIONS(6649), - [anon_sym_RBRACE] = ACTIONS(6649), - [anon_sym_DOT_DOT] = ACTIONS(6649), - [anon_sym_try] = ACTIONS(6649), - [anon_sym_return] = ACTIONS(6649), - [anon_sym_source] = ACTIONS(6649), - [anon_sym_source_DASHenv] = ACTIONS(6649), - [anon_sym_register] = ACTIONS(6649), - [anon_sym_hide] = ACTIONS(6649), - [anon_sym_hide_DASHenv] = ACTIONS(6649), - [anon_sym_overlay] = ACTIONS(6649), - [anon_sym_where] = ACTIONS(6649), - [anon_sym_not] = ACTIONS(6649), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6649), - [anon_sym_DOT_DOT_LT] = ACTIONS(6649), - [anon_sym_null] = ACTIONS(6649), - [anon_sym_true] = ACTIONS(6649), - [anon_sym_false] = ACTIONS(6649), - [aux_sym__val_number_decimal_token1] = ACTIONS(6649), - [aux_sym__val_number_decimal_token2] = ACTIONS(6649), - [anon_sym_DOT2] = ACTIONS(6649), - [aux_sym__val_number_decimal_token3] = ACTIONS(6649), - [aux_sym__val_number_token1] = ACTIONS(6649), - [aux_sym__val_number_token2] = ACTIONS(6649), - [aux_sym__val_number_token3] = ACTIONS(6649), - [aux_sym__val_number_token4] = ACTIONS(6649), - [aux_sym__val_number_token5] = ACTIONS(6649), - [aux_sym__val_number_token6] = ACTIONS(6649), - [anon_sym_0b] = ACTIONS(6649), - [anon_sym_0o] = ACTIONS(6649), - [anon_sym_0x] = ACTIONS(6649), - [sym_val_date] = ACTIONS(6649), - [anon_sym_DQUOTE] = ACTIONS(6649), - [sym__str_single_quotes] = ACTIONS(6649), - [sym__str_back_ticks] = ACTIONS(6649), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6649), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6649), - [anon_sym_CARET] = ACTIONS(6649), - [anon_sym_POUND] = ACTIONS(113), - }, - [2748] = { - [sym_comment] = STATE(2748), - [anon_sym_export] = ACTIONS(2843), - [anon_sym_alias] = ACTIONS(2843), - [anon_sym_let] = ACTIONS(2843), - [anon_sym_let_DASHenv] = ACTIONS(2843), - [anon_sym_mut] = ACTIONS(2843), - [anon_sym_const] = ACTIONS(2843), - [anon_sym_SEMI] = ACTIONS(2843), - [sym_cmd_identifier] = ACTIONS(2843), - [anon_sym_LF] = ACTIONS(2845), - [anon_sym_def] = ACTIONS(2843), - [anon_sym_export_DASHenv] = ACTIONS(2843), - [anon_sym_extern] = ACTIONS(2843), - [anon_sym_module] = ACTIONS(2843), - [anon_sym_use] = ACTIONS(2843), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_LPAREN] = ACTIONS(2843), - [anon_sym_RPAREN] = ACTIONS(2843), - [anon_sym_DOLLAR] = ACTIONS(2843), - [anon_sym_error] = ACTIONS(2843), - [anon_sym_DASH] = ACTIONS(2843), - [anon_sym_break] = ACTIONS(2843), - [anon_sym_continue] = ACTIONS(2843), - [anon_sym_for] = ACTIONS(2843), - [anon_sym_loop] = ACTIONS(2843), - [anon_sym_while] = ACTIONS(2843), - [anon_sym_do] = ACTIONS(2843), - [anon_sym_if] = ACTIONS(2843), - [anon_sym_match] = ACTIONS(2843), - [anon_sym_LBRACE] = ACTIONS(2843), - [anon_sym_RBRACE] = ACTIONS(2843), - [anon_sym_DOT_DOT] = ACTIONS(2843), - [anon_sym_try] = ACTIONS(2843), - [anon_sym_return] = ACTIONS(2843), - [anon_sym_source] = ACTIONS(2843), - [anon_sym_source_DASHenv] = ACTIONS(2843), - [anon_sym_register] = ACTIONS(2843), - [anon_sym_hide] = ACTIONS(2843), - [anon_sym_hide_DASHenv] = ACTIONS(2843), - [anon_sym_overlay] = ACTIONS(2843), - [anon_sym_where] = ACTIONS(2843), - [anon_sym_not] = ACTIONS(2843), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2843), - [anon_sym_DOT_DOT_LT] = ACTIONS(2843), - [anon_sym_null] = ACTIONS(2843), - [anon_sym_true] = ACTIONS(2843), - [anon_sym_false] = ACTIONS(2843), - [aux_sym__val_number_decimal_token1] = ACTIONS(2843), - [aux_sym__val_number_decimal_token2] = ACTIONS(2843), - [anon_sym_DOT2] = ACTIONS(2843), - [aux_sym__val_number_decimal_token3] = ACTIONS(2843), - [aux_sym__val_number_token1] = ACTIONS(2843), - [aux_sym__val_number_token2] = ACTIONS(2843), - [aux_sym__val_number_token3] = ACTIONS(2843), - [aux_sym__val_number_token4] = ACTIONS(2843), - [aux_sym__val_number_token5] = ACTIONS(2843), - [aux_sym__val_number_token6] = ACTIONS(2843), - [anon_sym_0b] = ACTIONS(2843), - [anon_sym_0o] = ACTIONS(2843), - [anon_sym_0x] = ACTIONS(2843), - [sym_val_date] = ACTIONS(2843), - [anon_sym_DQUOTE] = ACTIONS(2843), - [sym__str_single_quotes] = ACTIONS(2843), - [sym__str_back_ticks] = ACTIONS(2843), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2843), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2843), - [anon_sym_CARET] = ACTIONS(2843), - [anon_sym_POUND] = ACTIONS(113), - }, - [2749] = { - [sym_comment] = STATE(2749), - [anon_sym_export] = ACTIONS(3874), - [anon_sym_alias] = ACTIONS(3874), - [anon_sym_let] = ACTIONS(3874), - [anon_sym_let_DASHenv] = ACTIONS(3874), - [anon_sym_mut] = ACTIONS(3874), - [anon_sym_const] = ACTIONS(3874), - [anon_sym_SEMI] = ACTIONS(3874), - [sym_cmd_identifier] = ACTIONS(3874), - [anon_sym_LF] = ACTIONS(3876), - [anon_sym_def] = ACTIONS(3874), - [anon_sym_export_DASHenv] = ACTIONS(3874), - [anon_sym_extern] = ACTIONS(3874), - [anon_sym_module] = ACTIONS(3874), - [anon_sym_use] = ACTIONS(3874), - [anon_sym_LBRACK] = ACTIONS(3874), - [anon_sym_LPAREN] = ACTIONS(3874), - [anon_sym_RPAREN] = ACTIONS(3874), - [anon_sym_DOLLAR] = ACTIONS(3874), - [anon_sym_error] = ACTIONS(3874), - [anon_sym_DASH] = ACTIONS(3874), - [anon_sym_break] = ACTIONS(3874), - [anon_sym_continue] = ACTIONS(3874), - [anon_sym_for] = ACTIONS(3874), - [anon_sym_loop] = ACTIONS(3874), - [anon_sym_while] = ACTIONS(3874), - [anon_sym_do] = ACTIONS(3874), - [anon_sym_if] = ACTIONS(3874), - [anon_sym_match] = ACTIONS(3874), - [anon_sym_LBRACE] = ACTIONS(3874), - [anon_sym_RBRACE] = ACTIONS(3874), - [anon_sym_DOT_DOT] = ACTIONS(3874), - [anon_sym_try] = ACTIONS(3874), - [anon_sym_return] = ACTIONS(3874), - [anon_sym_source] = ACTIONS(3874), - [anon_sym_source_DASHenv] = ACTIONS(3874), - [anon_sym_register] = ACTIONS(3874), - [anon_sym_hide] = ACTIONS(3874), - [anon_sym_hide_DASHenv] = ACTIONS(3874), - [anon_sym_overlay] = ACTIONS(3874), - [anon_sym_where] = ACTIONS(3874), - [anon_sym_not] = ACTIONS(3874), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3874), - [anon_sym_DOT_DOT_LT] = ACTIONS(3874), - [anon_sym_null] = ACTIONS(3874), - [anon_sym_true] = ACTIONS(3874), - [anon_sym_false] = ACTIONS(3874), - [aux_sym__val_number_decimal_token1] = ACTIONS(3874), - [aux_sym__val_number_decimal_token2] = ACTIONS(3874), - [anon_sym_DOT2] = ACTIONS(3874), - [aux_sym__val_number_decimal_token3] = ACTIONS(3874), - [aux_sym__val_number_token1] = ACTIONS(3874), - [aux_sym__val_number_token2] = ACTIONS(3874), - [aux_sym__val_number_token3] = ACTIONS(3874), - [aux_sym__val_number_token4] = ACTIONS(3874), - [aux_sym__val_number_token5] = ACTIONS(3874), - [aux_sym__val_number_token6] = ACTIONS(3874), - [anon_sym_0b] = ACTIONS(3874), - [anon_sym_0o] = ACTIONS(3874), - [anon_sym_0x] = ACTIONS(3874), - [sym_val_date] = ACTIONS(3874), - [anon_sym_DQUOTE] = ACTIONS(3874), - [sym__str_single_quotes] = ACTIONS(3874), - [sym__str_back_ticks] = ACTIONS(3874), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3874), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3874), - [anon_sym_CARET] = ACTIONS(3874), - [anon_sym_POUND] = ACTIONS(113), - }, - [2750] = { - [sym_comment] = STATE(2750), - [anon_sym_export] = ACTIONS(4006), - [anon_sym_alias] = ACTIONS(4006), - [anon_sym_let] = ACTIONS(4006), - [anon_sym_let_DASHenv] = ACTIONS(4006), - [anon_sym_mut] = ACTIONS(4006), - [anon_sym_const] = ACTIONS(4006), - [anon_sym_SEMI] = ACTIONS(4006), - [sym_cmd_identifier] = ACTIONS(4006), - [anon_sym_LF] = ACTIONS(4008), - [anon_sym_def] = ACTIONS(4006), - [anon_sym_export_DASHenv] = ACTIONS(4006), - [anon_sym_extern] = ACTIONS(4006), - [anon_sym_module] = ACTIONS(4006), - [anon_sym_use] = ACTIONS(4006), - [anon_sym_LBRACK] = ACTIONS(4006), - [anon_sym_LPAREN] = ACTIONS(4006), - [anon_sym_RPAREN] = ACTIONS(4006), - [anon_sym_DOLLAR] = ACTIONS(4006), - [anon_sym_error] = ACTIONS(4006), - [anon_sym_DASH] = ACTIONS(4006), - [anon_sym_break] = ACTIONS(4006), - [anon_sym_continue] = ACTIONS(4006), - [anon_sym_for] = ACTIONS(4006), - [anon_sym_loop] = ACTIONS(4006), - [anon_sym_while] = ACTIONS(4006), - [anon_sym_do] = ACTIONS(4006), - [anon_sym_if] = ACTIONS(4006), - [anon_sym_match] = ACTIONS(4006), - [anon_sym_LBRACE] = ACTIONS(4006), - [anon_sym_RBRACE] = ACTIONS(4006), - [anon_sym_DOT_DOT] = ACTIONS(4006), - [anon_sym_try] = ACTIONS(4006), - [anon_sym_return] = ACTIONS(4006), - [anon_sym_source] = ACTIONS(4006), - [anon_sym_source_DASHenv] = ACTIONS(4006), - [anon_sym_register] = ACTIONS(4006), - [anon_sym_hide] = ACTIONS(4006), - [anon_sym_hide_DASHenv] = ACTIONS(4006), - [anon_sym_overlay] = ACTIONS(4006), - [anon_sym_where] = ACTIONS(4006), - [anon_sym_not] = ACTIONS(4006), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4006), - [anon_sym_DOT_DOT_LT] = ACTIONS(4006), - [anon_sym_null] = ACTIONS(4006), - [anon_sym_true] = ACTIONS(4006), - [anon_sym_false] = ACTIONS(4006), - [aux_sym__val_number_decimal_token1] = ACTIONS(4006), - [aux_sym__val_number_decimal_token2] = ACTIONS(4006), - [anon_sym_DOT2] = ACTIONS(4006), - [aux_sym__val_number_decimal_token3] = ACTIONS(4006), - [aux_sym__val_number_token1] = ACTIONS(4006), - [aux_sym__val_number_token2] = ACTIONS(4006), - [aux_sym__val_number_token3] = ACTIONS(4006), - [aux_sym__val_number_token4] = ACTIONS(4006), - [aux_sym__val_number_token5] = ACTIONS(4006), - [aux_sym__val_number_token6] = ACTIONS(4006), - [anon_sym_0b] = ACTIONS(4006), - [anon_sym_0o] = ACTIONS(4006), - [anon_sym_0x] = ACTIONS(4006), - [sym_val_date] = ACTIONS(4006), - [anon_sym_DQUOTE] = ACTIONS(4006), - [sym__str_single_quotes] = ACTIONS(4006), - [sym__str_back_ticks] = ACTIONS(4006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4006), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4006), - [anon_sym_CARET] = ACTIONS(4006), - [anon_sym_POUND] = ACTIONS(113), - }, - [2751] = { - [sym_comment] = STATE(2751), - [anon_sym_export] = ACTIONS(6653), - [anon_sym_alias] = ACTIONS(6653), - [anon_sym_let] = ACTIONS(6653), - [anon_sym_let_DASHenv] = ACTIONS(6653), - [anon_sym_mut] = ACTIONS(6653), - [anon_sym_const] = ACTIONS(6653), - [anon_sym_SEMI] = ACTIONS(6653), - [sym_cmd_identifier] = ACTIONS(6653), - [anon_sym_LF] = ACTIONS(6655), - [anon_sym_def] = ACTIONS(6653), - [anon_sym_export_DASHenv] = ACTIONS(6653), - [anon_sym_extern] = ACTIONS(6653), - [anon_sym_module] = ACTIONS(6653), - [anon_sym_use] = ACTIONS(6653), - [anon_sym_LBRACK] = ACTIONS(6653), - [anon_sym_LPAREN] = ACTIONS(6653), - [anon_sym_RPAREN] = ACTIONS(6653), - [anon_sym_DOLLAR] = ACTIONS(6653), - [anon_sym_error] = ACTIONS(6653), - [anon_sym_DASH] = ACTIONS(6653), - [anon_sym_break] = ACTIONS(6653), - [anon_sym_continue] = ACTIONS(6653), - [anon_sym_for] = ACTIONS(6653), - [anon_sym_loop] = ACTIONS(6653), - [anon_sym_while] = ACTIONS(6653), - [anon_sym_do] = ACTIONS(6653), - [anon_sym_if] = ACTIONS(6653), - [anon_sym_match] = ACTIONS(6653), - [anon_sym_LBRACE] = ACTIONS(6653), - [anon_sym_RBRACE] = ACTIONS(6653), - [anon_sym_DOT_DOT] = ACTIONS(6653), - [anon_sym_try] = ACTIONS(6653), - [anon_sym_return] = ACTIONS(6653), - [anon_sym_source] = ACTIONS(6653), - [anon_sym_source_DASHenv] = ACTIONS(6653), - [anon_sym_register] = ACTIONS(6653), - [anon_sym_hide] = ACTIONS(6653), - [anon_sym_hide_DASHenv] = ACTIONS(6653), - [anon_sym_overlay] = ACTIONS(6653), - [anon_sym_where] = ACTIONS(6653), - [anon_sym_not] = ACTIONS(6653), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6653), - [anon_sym_DOT_DOT_LT] = ACTIONS(6653), - [anon_sym_null] = ACTIONS(6653), - [anon_sym_true] = ACTIONS(6653), - [anon_sym_false] = ACTIONS(6653), - [aux_sym__val_number_decimal_token1] = ACTIONS(6653), - [aux_sym__val_number_decimal_token2] = ACTIONS(6653), - [anon_sym_DOT2] = ACTIONS(6653), - [aux_sym__val_number_decimal_token3] = ACTIONS(6653), - [aux_sym__val_number_token1] = ACTIONS(6653), - [aux_sym__val_number_token2] = ACTIONS(6653), - [aux_sym__val_number_token3] = ACTIONS(6653), - [aux_sym__val_number_token4] = ACTIONS(6653), - [aux_sym__val_number_token5] = ACTIONS(6653), - [aux_sym__val_number_token6] = ACTIONS(6653), - [anon_sym_0b] = ACTIONS(6653), - [anon_sym_0o] = ACTIONS(6653), - [anon_sym_0x] = ACTIONS(6653), - [sym_val_date] = ACTIONS(6653), - [anon_sym_DQUOTE] = ACTIONS(6653), - [sym__str_single_quotes] = ACTIONS(6653), - [sym__str_back_ticks] = ACTIONS(6653), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6653), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6653), - [anon_sym_CARET] = ACTIONS(6653), - [anon_sym_POUND] = ACTIONS(113), - }, - [2752] = { - [sym_comment] = STATE(2752), - [anon_sym_export] = ACTIONS(6657), - [anon_sym_alias] = ACTIONS(6657), - [anon_sym_let] = ACTIONS(6657), - [anon_sym_let_DASHenv] = ACTIONS(6657), - [anon_sym_mut] = ACTIONS(6657), - [anon_sym_const] = ACTIONS(6657), - [anon_sym_SEMI] = ACTIONS(6657), - [sym_cmd_identifier] = ACTIONS(6657), - [anon_sym_LF] = ACTIONS(6659), - [anon_sym_def] = ACTIONS(6657), - [anon_sym_export_DASHenv] = ACTIONS(6657), - [anon_sym_extern] = ACTIONS(6657), - [anon_sym_module] = ACTIONS(6657), - [anon_sym_use] = ACTIONS(6657), - [anon_sym_LBRACK] = ACTIONS(6657), - [anon_sym_LPAREN] = ACTIONS(6657), - [anon_sym_RPAREN] = ACTIONS(6657), - [anon_sym_DOLLAR] = ACTIONS(6657), - [anon_sym_error] = ACTIONS(6657), - [anon_sym_DASH] = ACTIONS(6657), - [anon_sym_break] = ACTIONS(6657), - [anon_sym_continue] = ACTIONS(6657), - [anon_sym_for] = ACTIONS(6657), - [anon_sym_loop] = ACTIONS(6657), - [anon_sym_while] = ACTIONS(6657), - [anon_sym_do] = ACTIONS(6657), - [anon_sym_if] = ACTIONS(6657), - [anon_sym_match] = ACTIONS(6657), - [anon_sym_LBRACE] = ACTIONS(6657), - [anon_sym_RBRACE] = ACTIONS(6657), - [anon_sym_DOT_DOT] = ACTIONS(6657), - [anon_sym_try] = ACTIONS(6657), - [anon_sym_return] = ACTIONS(6657), - [anon_sym_source] = ACTIONS(6657), - [anon_sym_source_DASHenv] = ACTIONS(6657), - [anon_sym_register] = ACTIONS(6657), - [anon_sym_hide] = ACTIONS(6657), - [anon_sym_hide_DASHenv] = ACTIONS(6657), - [anon_sym_overlay] = ACTIONS(6657), - [anon_sym_where] = ACTIONS(6657), - [anon_sym_not] = ACTIONS(6657), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6657), - [anon_sym_DOT_DOT_LT] = ACTIONS(6657), - [anon_sym_null] = ACTIONS(6657), - [anon_sym_true] = ACTIONS(6657), - [anon_sym_false] = ACTIONS(6657), - [aux_sym__val_number_decimal_token1] = ACTIONS(6657), - [aux_sym__val_number_decimal_token2] = ACTIONS(6657), - [anon_sym_DOT2] = ACTIONS(6657), - [aux_sym__val_number_decimal_token3] = ACTIONS(6657), - [aux_sym__val_number_token1] = ACTIONS(6657), - [aux_sym__val_number_token2] = ACTIONS(6657), - [aux_sym__val_number_token3] = ACTIONS(6657), - [aux_sym__val_number_token4] = ACTIONS(6657), - [aux_sym__val_number_token5] = ACTIONS(6657), - [aux_sym__val_number_token6] = ACTIONS(6657), - [anon_sym_0b] = ACTIONS(6657), - [anon_sym_0o] = ACTIONS(6657), - [anon_sym_0x] = ACTIONS(6657), - [sym_val_date] = ACTIONS(6657), - [anon_sym_DQUOTE] = ACTIONS(6657), - [sym__str_single_quotes] = ACTIONS(6657), - [sym__str_back_ticks] = ACTIONS(6657), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6657), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6657), - [anon_sym_CARET] = ACTIONS(6657), - [anon_sym_POUND] = ACTIONS(113), - }, - [2753] = { - [sym_comment] = STATE(2753), - [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), - [anon_sym_SEMI] = ACTIONS(2437), - [sym_cmd_identifier] = ACTIONS(2437), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_RPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_RBRACE] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_not] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [anon_sym_DOT2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2437), - [anon_sym_0o] = ACTIONS(2437), - [anon_sym_0x] = ACTIONS(2437), - [sym_val_date] = 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_CARET] = ACTIONS(2437), - [anon_sym_POUND] = ACTIONS(113), - }, - [2754] = { - [sym_comment] = STATE(2754), - [anon_sym_export] = ACTIONS(1186), - [anon_sym_alias] = ACTIONS(1186), - [anon_sym_let] = ACTIONS(1186), - [anon_sym_let_DASHenv] = ACTIONS(1186), - [anon_sym_mut] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1186), - [sym_cmd_identifier] = ACTIONS(1186), - [anon_sym_LF] = ACTIONS(1188), - [anon_sym_def] = ACTIONS(1186), - [anon_sym_export_DASHenv] = ACTIONS(1186), - [anon_sym_extern] = ACTIONS(1186), - [anon_sym_module] = ACTIONS(1186), - [anon_sym_use] = ACTIONS(1186), - [anon_sym_LBRACK] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(1186), - [anon_sym_RPAREN] = ACTIONS(1186), - [anon_sym_DOLLAR] = ACTIONS(1186), - [anon_sym_error] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1186), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1186), - [anon_sym_loop] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_do] = ACTIONS(1186), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_match] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_RBRACE] = ACTIONS(1186), - [anon_sym_DOT_DOT] = ACTIONS(1186), - [anon_sym_try] = ACTIONS(1186), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_source] = ACTIONS(1186), - [anon_sym_source_DASHenv] = ACTIONS(1186), - [anon_sym_register] = ACTIONS(1186), - [anon_sym_hide] = ACTIONS(1186), - [anon_sym_hide_DASHenv] = ACTIONS(1186), - [anon_sym_overlay] = ACTIONS(1186), - [anon_sym_where] = ACTIONS(1186), - [anon_sym_not] = ACTIONS(1186), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1186), - [anon_sym_DOT_DOT_LT] = ACTIONS(1186), - [anon_sym_null] = ACTIONS(1186), - [anon_sym_true] = ACTIONS(1186), - [anon_sym_false] = ACTIONS(1186), - [aux_sym__val_number_decimal_token1] = ACTIONS(1186), - [aux_sym__val_number_decimal_token2] = ACTIONS(1186), - [anon_sym_DOT2] = ACTIONS(1186), - [aux_sym__val_number_decimal_token3] = ACTIONS(1186), - [aux_sym__val_number_token1] = ACTIONS(1186), - [aux_sym__val_number_token2] = ACTIONS(1186), - [aux_sym__val_number_token3] = ACTIONS(1186), - [aux_sym__val_number_token4] = ACTIONS(1186), - [aux_sym__val_number_token5] = ACTIONS(1186), - [aux_sym__val_number_token6] = ACTIONS(1186), - [anon_sym_0b] = ACTIONS(1186), - [anon_sym_0o] = ACTIONS(1186), - [anon_sym_0x] = ACTIONS(1186), - [sym_val_date] = ACTIONS(1186), - [anon_sym_DQUOTE] = ACTIONS(1186), - [sym__str_single_quotes] = ACTIONS(1186), - [sym__str_back_ticks] = ACTIONS(1186), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1186), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1186), - [anon_sym_CARET] = ACTIONS(1186), - [anon_sym_POUND] = ACTIONS(113), - }, - [2755] = { - [sym_cell_path] = STATE(3079), - [sym_path] = STATE(2693), - [sym_comment] = STATE(2755), - [ts_builtin_sym_end] = ACTIONS(1205), - [anon_sym_SEMI] = ACTIONS(1203), - [anon_sym_LF] = ACTIONS(1205), - [anon_sym_LBRACK] = ACTIONS(1203), - [anon_sym_LPAREN] = ACTIONS(1203), - [anon_sym_PIPE] = ACTIONS(1203), - [anon_sym_DOLLAR] = ACTIONS(1203), - [anon_sym_GT] = ACTIONS(1203), - [anon_sym_DASH_DASH] = ACTIONS(1203), - [anon_sym_DASH] = ACTIONS(1203), - [anon_sym_in] = ACTIONS(1203), - [anon_sym_LBRACE] = ACTIONS(1203), - [anon_sym_DOT_DOT] = ACTIONS(1203), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_STAR_STAR] = ACTIONS(1203), - [anon_sym_PLUS_PLUS] = ACTIONS(1203), - [anon_sym_SLASH] = ACTIONS(1203), - [anon_sym_mod] = ACTIONS(1203), - [anon_sym_SLASH_SLASH] = ACTIONS(1203), - [anon_sym_PLUS] = ACTIONS(1203), - [anon_sym_bit_DASHshl] = ACTIONS(1203), - [anon_sym_bit_DASHshr] = ACTIONS(1203), - [anon_sym_EQ_EQ] = ACTIONS(1203), - [anon_sym_BANG_EQ] = ACTIONS(1203), - [anon_sym_LT2] = ACTIONS(1203), - [anon_sym_LT_EQ] = ACTIONS(1203), - [anon_sym_GT_EQ] = ACTIONS(1203), - [anon_sym_not_DASHin] = ACTIONS(1203), - [anon_sym_starts_DASHwith] = ACTIONS(1203), - [anon_sym_ends_DASHwith] = ACTIONS(1203), - [anon_sym_EQ_TILDE] = ACTIONS(1203), - [anon_sym_BANG_TILDE] = ACTIONS(1203), - [anon_sym_bit_DASHand] = ACTIONS(1203), - [anon_sym_bit_DASHxor] = ACTIONS(1203), - [anon_sym_bit_DASHor] = ACTIONS(1203), - [anon_sym_and] = ACTIONS(1203), - [anon_sym_xor] = ACTIONS(1203), - [anon_sym_or] = ACTIONS(1203), - [anon_sym_not] = ACTIONS(1203), - [anon_sym_DOT] = ACTIONS(6363), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1203), - [anon_sym_DOT_DOT_LT] = ACTIONS(1203), - [anon_sym_null] = ACTIONS(1203), - [anon_sym_true] = ACTIONS(1203), - [anon_sym_false] = ACTIONS(1203), - [aux_sym__val_number_decimal_token1] = ACTIONS(1203), - [aux_sym__val_number_decimal_token2] = ACTIONS(1203), - [anon_sym_DOT2] = ACTIONS(1203), - [aux_sym__val_number_decimal_token3] = ACTIONS(1203), - [aux_sym__val_number_token1] = ACTIONS(1203), - [aux_sym__val_number_token2] = ACTIONS(1203), - [aux_sym__val_number_token3] = ACTIONS(1203), - [aux_sym__val_number_token4] = ACTIONS(1203), - [aux_sym__val_number_token5] = ACTIONS(1203), - [aux_sym__val_number_token6] = ACTIONS(1203), - [anon_sym_0b] = ACTIONS(1203), - [anon_sym_0o] = ACTIONS(1203), - [anon_sym_0x] = ACTIONS(1203), - [sym_val_date] = ACTIONS(1203), - [anon_sym_DQUOTE] = ACTIONS(1203), - [sym__str_single_quotes] = ACTIONS(1203), - [sym__str_back_ticks] = ACTIONS(1203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1203), - [anon_sym_POUND] = ACTIONS(113), - }, - [2756] = { - [sym_comment] = STATE(2756), - [anon_sym_export] = ACTIONS(2547), - [anon_sym_alias] = ACTIONS(2547), - [anon_sym_let] = ACTIONS(2547), - [anon_sym_let_DASHenv] = ACTIONS(2547), - [anon_sym_mut] = ACTIONS(2547), - [anon_sym_const] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [sym_cmd_identifier] = ACTIONS(2547), - [anon_sym_LF] = ACTIONS(2549), - [anon_sym_def] = ACTIONS(2547), - [anon_sym_export_DASHenv] = ACTIONS(2547), - [anon_sym_extern] = ACTIONS(2547), - [anon_sym_module] = ACTIONS(2547), - [anon_sym_use] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_RPAREN] = ACTIONS(2547), - [anon_sym_DOLLAR] = ACTIONS(2547), - [anon_sym_error] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_break] = ACTIONS(2547), - [anon_sym_continue] = ACTIONS(2547), - [anon_sym_for] = ACTIONS(2547), - [anon_sym_loop] = ACTIONS(2547), - [anon_sym_while] = ACTIONS(2547), - [anon_sym_do] = ACTIONS(2547), - [anon_sym_if] = ACTIONS(2547), - [anon_sym_match] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2547), - [anon_sym_RBRACE] = ACTIONS(2547), - [anon_sym_DOT_DOT] = ACTIONS(2547), - [anon_sym_try] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2547), - [anon_sym_source] = ACTIONS(2547), - [anon_sym_source_DASHenv] = ACTIONS(2547), - [anon_sym_register] = ACTIONS(2547), - [anon_sym_hide] = ACTIONS(2547), - [anon_sym_hide_DASHenv] = ACTIONS(2547), - [anon_sym_overlay] = ACTIONS(2547), - [anon_sym_where] = ACTIONS(2547), - [anon_sym_not] = ACTIONS(2547), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), - [anon_sym_DOT_DOT_LT] = ACTIONS(2547), - [anon_sym_null] = ACTIONS(2547), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [aux_sym__val_number_decimal_token1] = ACTIONS(2547), - [aux_sym__val_number_decimal_token2] = ACTIONS(2547), - [anon_sym_DOT2] = ACTIONS(2547), - [aux_sym__val_number_decimal_token3] = ACTIONS(2547), - [aux_sym__val_number_token1] = ACTIONS(2547), - [aux_sym__val_number_token2] = ACTIONS(2547), - [aux_sym__val_number_token3] = ACTIONS(2547), - [aux_sym__val_number_token4] = ACTIONS(2547), - [aux_sym__val_number_token5] = ACTIONS(2547), - [aux_sym__val_number_token6] = ACTIONS(2547), - [anon_sym_0b] = ACTIONS(2547), - [anon_sym_0o] = ACTIONS(2547), - [anon_sym_0x] = ACTIONS(2547), - [sym_val_date] = ACTIONS(2547), - [anon_sym_DQUOTE] = ACTIONS(2547), - [sym__str_single_quotes] = ACTIONS(2547), - [sym__str_back_ticks] = ACTIONS(2547), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2547), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2547), - [anon_sym_POUND] = ACTIONS(113), - }, - [2757] = { - [sym_comment] = STATE(2757), - [anon_sym_export] = ACTIONS(6661), - [anon_sym_alias] = ACTIONS(6661), - [anon_sym_let] = ACTIONS(6661), - [anon_sym_let_DASHenv] = ACTIONS(6661), - [anon_sym_mut] = ACTIONS(6661), - [anon_sym_const] = ACTIONS(6661), - [anon_sym_SEMI] = ACTIONS(6661), - [sym_cmd_identifier] = ACTIONS(6661), - [anon_sym_LF] = ACTIONS(6663), - [anon_sym_def] = ACTIONS(6661), - [anon_sym_export_DASHenv] = ACTIONS(6661), - [anon_sym_extern] = ACTIONS(6661), - [anon_sym_module] = ACTIONS(6661), - [anon_sym_use] = ACTIONS(6661), - [anon_sym_LBRACK] = ACTIONS(6661), - [anon_sym_LPAREN] = ACTIONS(6661), - [anon_sym_RPAREN] = ACTIONS(6661), - [anon_sym_DOLLAR] = ACTIONS(6661), - [anon_sym_error] = ACTIONS(6661), - [anon_sym_DASH] = ACTIONS(6661), - [anon_sym_break] = ACTIONS(6661), - [anon_sym_continue] = ACTIONS(6661), - [anon_sym_for] = ACTIONS(6661), - [anon_sym_loop] = ACTIONS(6661), - [anon_sym_while] = ACTIONS(6661), - [anon_sym_do] = ACTIONS(6661), - [anon_sym_if] = ACTIONS(6661), - [anon_sym_match] = ACTIONS(6661), - [anon_sym_LBRACE] = ACTIONS(6661), - [anon_sym_RBRACE] = ACTIONS(6661), - [anon_sym_DOT_DOT] = ACTIONS(6661), - [anon_sym_try] = ACTIONS(6661), - [anon_sym_return] = ACTIONS(6661), - [anon_sym_source] = ACTIONS(6661), - [anon_sym_source_DASHenv] = ACTIONS(6661), - [anon_sym_register] = ACTIONS(6661), - [anon_sym_hide] = ACTIONS(6661), - [anon_sym_hide_DASHenv] = ACTIONS(6661), - [anon_sym_overlay] = ACTIONS(6661), - [anon_sym_where] = ACTIONS(6661), - [anon_sym_not] = ACTIONS(6661), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6661), - [anon_sym_DOT_DOT_LT] = ACTIONS(6661), - [anon_sym_null] = ACTIONS(6661), - [anon_sym_true] = ACTIONS(6661), - [anon_sym_false] = ACTIONS(6661), - [aux_sym__val_number_decimal_token1] = ACTIONS(6661), - [aux_sym__val_number_decimal_token2] = ACTIONS(6661), - [anon_sym_DOT2] = ACTIONS(6661), - [aux_sym__val_number_decimal_token3] = ACTIONS(6661), - [aux_sym__val_number_token1] = ACTIONS(6661), - [aux_sym__val_number_token2] = ACTIONS(6661), - [aux_sym__val_number_token3] = ACTIONS(6661), - [aux_sym__val_number_token4] = ACTIONS(6661), - [aux_sym__val_number_token5] = ACTIONS(6661), - [aux_sym__val_number_token6] = ACTIONS(6661), - [anon_sym_0b] = ACTIONS(6661), - [anon_sym_0o] = ACTIONS(6661), - [anon_sym_0x] = ACTIONS(6661), - [sym_val_date] = ACTIONS(6661), - [anon_sym_DQUOTE] = ACTIONS(6661), - [sym__str_single_quotes] = ACTIONS(6661), - [sym__str_back_ticks] = ACTIONS(6661), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6661), - [anon_sym_CARET] = ACTIONS(6661), - [anon_sym_POUND] = ACTIONS(113), - }, - [2758] = { - [sym_comment] = STATE(2758), - [anon_sym_export] = ACTIONS(3505), - [anon_sym_alias] = ACTIONS(3505), - [anon_sym_let] = ACTIONS(3505), - [anon_sym_let_DASHenv] = ACTIONS(3505), - [anon_sym_mut] = ACTIONS(3505), - [anon_sym_const] = ACTIONS(3505), - [anon_sym_SEMI] = ACTIONS(3505), - [sym_cmd_identifier] = ACTIONS(3505), - [anon_sym_LF] = ACTIONS(3507), - [anon_sym_def] = ACTIONS(3505), - [anon_sym_export_DASHenv] = ACTIONS(3505), - [anon_sym_extern] = ACTIONS(3505), - [anon_sym_module] = ACTIONS(3505), - [anon_sym_use] = ACTIONS(3505), - [anon_sym_LBRACK] = ACTIONS(3505), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_RPAREN] = ACTIONS(3505), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_error] = ACTIONS(3505), - [anon_sym_DASH] = ACTIONS(3505), - [anon_sym_break] = ACTIONS(3505), - [anon_sym_continue] = ACTIONS(3505), - [anon_sym_for] = ACTIONS(3505), - [anon_sym_loop] = ACTIONS(3505), - [anon_sym_while] = ACTIONS(3505), - [anon_sym_do] = ACTIONS(3505), - [anon_sym_if] = ACTIONS(3505), - [anon_sym_match] = ACTIONS(3505), - [anon_sym_LBRACE] = ACTIONS(3505), - [anon_sym_RBRACE] = ACTIONS(3505), - [anon_sym_DOT_DOT] = ACTIONS(3505), - [anon_sym_try] = ACTIONS(3505), - [anon_sym_return] = ACTIONS(3505), - [anon_sym_source] = ACTIONS(3505), - [anon_sym_source_DASHenv] = ACTIONS(3505), - [anon_sym_register] = ACTIONS(3505), - [anon_sym_hide] = ACTIONS(3505), - [anon_sym_hide_DASHenv] = ACTIONS(3505), - [anon_sym_overlay] = ACTIONS(3505), - [anon_sym_where] = ACTIONS(3505), - [anon_sym_not] = ACTIONS(3505), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3505), - [anon_sym_DOT_DOT_LT] = ACTIONS(3505), - [anon_sym_null] = ACTIONS(3505), - [anon_sym_true] = ACTIONS(3505), - [anon_sym_false] = ACTIONS(3505), - [aux_sym__val_number_decimal_token1] = ACTIONS(3505), - [aux_sym__val_number_decimal_token2] = ACTIONS(3505), - [anon_sym_DOT2] = ACTIONS(3505), - [aux_sym__val_number_decimal_token3] = ACTIONS(3505), - [aux_sym__val_number_token1] = ACTIONS(3505), - [aux_sym__val_number_token2] = ACTIONS(3505), - [aux_sym__val_number_token3] = ACTIONS(3505), - [aux_sym__val_number_token4] = ACTIONS(3505), - [aux_sym__val_number_token5] = ACTIONS(3505), - [aux_sym__val_number_token6] = ACTIONS(3505), - [anon_sym_0b] = ACTIONS(3505), - [anon_sym_0o] = ACTIONS(3505), - [anon_sym_0x] = ACTIONS(3505), - [sym_val_date] = ACTIONS(3505), - [anon_sym_DQUOTE] = ACTIONS(3505), - [sym__str_single_quotes] = ACTIONS(3505), - [sym__str_back_ticks] = ACTIONS(3505), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3505), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3505), - [anon_sym_CARET] = ACTIONS(3505), - [anon_sym_POUND] = ACTIONS(113), - }, - [2759] = { - [sym_comment] = STATE(2759), - [anon_sym_export] = ACTIONS(6665), - [anon_sym_alias] = ACTIONS(6665), - [anon_sym_let] = ACTIONS(6665), - [anon_sym_let_DASHenv] = ACTIONS(6665), - [anon_sym_mut] = ACTIONS(6665), - [anon_sym_const] = ACTIONS(6665), - [anon_sym_SEMI] = ACTIONS(6665), - [sym_cmd_identifier] = ACTIONS(6665), - [anon_sym_LF] = ACTIONS(6667), - [anon_sym_def] = ACTIONS(6665), - [anon_sym_export_DASHenv] = ACTIONS(6665), - [anon_sym_extern] = ACTIONS(6665), - [anon_sym_module] = ACTIONS(6665), - [anon_sym_use] = ACTIONS(6665), - [anon_sym_LBRACK] = ACTIONS(6665), - [anon_sym_LPAREN] = ACTIONS(6665), - [anon_sym_RPAREN] = ACTIONS(6665), - [anon_sym_DOLLAR] = ACTIONS(6665), - [anon_sym_error] = ACTIONS(6665), - [anon_sym_DASH] = ACTIONS(6665), - [anon_sym_break] = ACTIONS(6665), - [anon_sym_continue] = ACTIONS(6665), - [anon_sym_for] = ACTIONS(6665), - [anon_sym_loop] = ACTIONS(6665), - [anon_sym_while] = ACTIONS(6665), - [anon_sym_do] = ACTIONS(6665), - [anon_sym_if] = ACTIONS(6665), - [anon_sym_match] = ACTIONS(6665), - [anon_sym_LBRACE] = ACTIONS(6665), - [anon_sym_RBRACE] = ACTIONS(6665), - [anon_sym_DOT_DOT] = ACTIONS(6665), - [anon_sym_try] = ACTIONS(6665), - [anon_sym_return] = ACTIONS(6665), - [anon_sym_source] = ACTIONS(6665), - [anon_sym_source_DASHenv] = ACTIONS(6665), - [anon_sym_register] = ACTIONS(6665), - [anon_sym_hide] = ACTIONS(6665), - [anon_sym_hide_DASHenv] = ACTIONS(6665), - [anon_sym_overlay] = ACTIONS(6665), - [anon_sym_where] = ACTIONS(6665), - [anon_sym_not] = ACTIONS(6665), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6665), - [anon_sym_DOT_DOT_LT] = ACTIONS(6665), - [anon_sym_null] = ACTIONS(6665), - [anon_sym_true] = ACTIONS(6665), - [anon_sym_false] = ACTIONS(6665), - [aux_sym__val_number_decimal_token1] = ACTIONS(6665), - [aux_sym__val_number_decimal_token2] = ACTIONS(6665), - [anon_sym_DOT2] = ACTIONS(6665), - [aux_sym__val_number_decimal_token3] = ACTIONS(6665), - [aux_sym__val_number_token1] = ACTIONS(6665), - [aux_sym__val_number_token2] = ACTIONS(6665), - [aux_sym__val_number_token3] = ACTIONS(6665), - [aux_sym__val_number_token4] = ACTIONS(6665), - [aux_sym__val_number_token5] = ACTIONS(6665), - [aux_sym__val_number_token6] = ACTIONS(6665), - [anon_sym_0b] = ACTIONS(6665), - [anon_sym_0o] = ACTIONS(6665), - [anon_sym_0x] = ACTIONS(6665), - [sym_val_date] = ACTIONS(6665), - [anon_sym_DQUOTE] = ACTIONS(6665), - [sym__str_single_quotes] = ACTIONS(6665), - [sym__str_back_ticks] = ACTIONS(6665), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6665), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6665), - [anon_sym_CARET] = ACTIONS(6665), - [anon_sym_POUND] = ACTIONS(113), - }, - [2760] = { - [sym_comment] = STATE(2760), - [ts_builtin_sym_end] = ACTIONS(1111), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_alias] = ACTIONS(1109), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_let_DASHenv] = ACTIONS(1109), - [anon_sym_mut] = ACTIONS(1109), - [anon_sym_const] = ACTIONS(1109), - [anon_sym_SEMI] = ACTIONS(1109), - [sym_cmd_identifier] = ACTIONS(1109), - [anon_sym_LF] = ACTIONS(1111), - [anon_sym_def] = ACTIONS(1109), - [anon_sym_export_DASHenv] = ACTIONS(1109), - [anon_sym_extern] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_use] = ACTIONS(1109), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_DOLLAR] = ACTIONS(1109), - [anon_sym_error] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_break] = ACTIONS(1109), - [anon_sym_continue] = ACTIONS(1109), - [anon_sym_for] = ACTIONS(1109), - [anon_sym_loop] = ACTIONS(1109), - [anon_sym_while] = ACTIONS(1109), - [anon_sym_do] = ACTIONS(1109), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_DOT_DOT] = ACTIONS(1109), - [anon_sym_try] = ACTIONS(1109), - [anon_sym_return] = ACTIONS(1109), - [anon_sym_source] = ACTIONS(1109), - [anon_sym_source_DASHenv] = ACTIONS(1109), - [anon_sym_register] = ACTIONS(1109), - [anon_sym_hide] = ACTIONS(1109), - [anon_sym_hide_DASHenv] = ACTIONS(1109), - [anon_sym_overlay] = ACTIONS(1109), - [anon_sym_where] = ACTIONS(1109), - [anon_sym_not] = ACTIONS(1109), - [anon_sym_DOT] = ACTIONS(1109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1109), - [anon_sym_DOT_DOT_LT] = ACTIONS(1109), - [anon_sym_null] = ACTIONS(1109), - [anon_sym_true] = ACTIONS(1109), - [anon_sym_false] = ACTIONS(1109), - [aux_sym__val_number_decimal_token1] = ACTIONS(1109), - [aux_sym__val_number_decimal_token2] = ACTIONS(1109), - [anon_sym_DOT2] = ACTIONS(1109), - [aux_sym__val_number_decimal_token3] = ACTIONS(1109), - [aux_sym__val_number_token1] = ACTIONS(1109), - [aux_sym__val_number_token2] = ACTIONS(1109), - [aux_sym__val_number_token3] = ACTIONS(1109), - [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(1109), - [anon_sym_0o] = ACTIONS(1109), - [anon_sym_0x] = ACTIONS(1109), - [sym_val_date] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(1109), - [sym__str_single_quotes] = ACTIONS(1109), - [sym__str_back_ticks] = ACTIONS(1109), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1109), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1109), - [anon_sym_CARET] = ACTIONS(1109), - [anon_sym_POUND] = ACTIONS(113), - }, - [2761] = { - [sym_val_record] = STATE(2886), - [sym_comment] = STATE(2761), - [ts_builtin_sym_end] = ACTIONS(6205), - [anon_sym_export] = ACTIONS(6203), - [anon_sym_alias] = ACTIONS(6203), - [anon_sym_let] = ACTIONS(6203), - [anon_sym_let_DASHenv] = ACTIONS(6203), - [anon_sym_mut] = ACTIONS(6203), - [anon_sym_const] = ACTIONS(6203), - [anon_sym_SEMI] = ACTIONS(6203), - [sym_cmd_identifier] = ACTIONS(6203), - [anon_sym_LF] = ACTIONS(6205), - [anon_sym_def] = ACTIONS(6203), - [anon_sym_export_DASHenv] = ACTIONS(6203), - [anon_sym_extern] = ACTIONS(6203), - [anon_sym_module] = ACTIONS(6203), - [anon_sym_use] = ACTIONS(6203), - [anon_sym_LBRACK] = ACTIONS(6203), - [anon_sym_LPAREN] = ACTIONS(6203), - [anon_sym_DOLLAR] = ACTIONS(6203), - [anon_sym_error] = ACTIONS(6203), - [anon_sym_DASH] = ACTIONS(6203), - [anon_sym_break] = ACTIONS(6203), - [anon_sym_continue] = ACTIONS(6203), - [anon_sym_for] = ACTIONS(6203), - [anon_sym_loop] = ACTIONS(6203), - [anon_sym_while] = ACTIONS(6203), - [anon_sym_do] = ACTIONS(6203), - [anon_sym_if] = ACTIONS(6203), - [anon_sym_match] = ACTIONS(6203), - [anon_sym_LBRACE] = ACTIONS(6203), - [anon_sym_DOT_DOT] = ACTIONS(6203), - [anon_sym_try] = ACTIONS(6203), - [anon_sym_return] = ACTIONS(6203), - [anon_sym_source] = ACTIONS(6203), - [anon_sym_source_DASHenv] = ACTIONS(6203), - [anon_sym_register] = ACTIONS(6203), - [anon_sym_hide] = ACTIONS(6203), - [anon_sym_hide_DASHenv] = ACTIONS(6203), - [anon_sym_overlay] = ACTIONS(6203), - [anon_sym_where] = ACTIONS(6203), - [anon_sym_not] = ACTIONS(6203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6203), - [anon_sym_DOT_DOT_LT] = ACTIONS(6203), - [anon_sym_null] = ACTIONS(6203), - [anon_sym_true] = ACTIONS(6203), - [anon_sym_false] = ACTIONS(6203), - [aux_sym__val_number_decimal_token1] = ACTIONS(6203), - [aux_sym__val_number_decimal_token2] = ACTIONS(6203), - [anon_sym_DOT2] = ACTIONS(6203), - [aux_sym__val_number_decimal_token3] = ACTIONS(6203), - [aux_sym__val_number_token1] = ACTIONS(6203), - [aux_sym__val_number_token2] = ACTIONS(6203), - [aux_sym__val_number_token3] = ACTIONS(6203), - [aux_sym__val_number_token4] = ACTIONS(6203), - [aux_sym__val_number_token5] = ACTIONS(6203), - [aux_sym__val_number_token6] = ACTIONS(6203), - [anon_sym_0b] = ACTIONS(6203), - [anon_sym_0o] = ACTIONS(6203), - [anon_sym_0x] = ACTIONS(6203), - [sym_val_date] = ACTIONS(6203), - [anon_sym_DQUOTE] = ACTIONS(6203), - [sym__str_single_quotes] = ACTIONS(6203), - [sym__str_back_ticks] = ACTIONS(6203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6203), - [anon_sym_CARET] = ACTIONS(6203), - [anon_sym_POUND] = ACTIONS(113), - }, - [2762] = { - [sym_comment] = STATE(2762), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_alias] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_let_DASHenv] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1350), - [sym_cmd_identifier] = ACTIONS(1350), - [anon_sym_LF] = ACTIONS(1352), - [anon_sym_def] = ACTIONS(1350), - [anon_sym_export_DASHenv] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_LBRACK] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1350), - [anon_sym_RPAREN] = ACTIONS(1350), - [anon_sym_DOLLAR] = ACTIONS(1350), - [anon_sym_error] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1350), - [anon_sym_DOT_DOT] = ACTIONS(1350), - [anon_sym_try] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_source] = ACTIONS(1350), - [anon_sym_source_DASHenv] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_hide] = ACTIONS(1350), - [anon_sym_hide_DASHenv] = ACTIONS(1350), - [anon_sym_overlay] = ACTIONS(1350), - [anon_sym_where] = ACTIONS(1350), - [anon_sym_not] = ACTIONS(1350), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1350), - [anon_sym_DOT_DOT_LT] = ACTIONS(1350), - [anon_sym_null] = ACTIONS(1350), - [anon_sym_true] = ACTIONS(1350), - [anon_sym_false] = ACTIONS(1350), - [aux_sym__val_number_decimal_token1] = ACTIONS(1350), - [aux_sym__val_number_decimal_token2] = ACTIONS(1350), - [anon_sym_DOT2] = ACTIONS(1350), - [aux_sym__val_number_decimal_token3] = ACTIONS(1350), - [aux_sym__val_number_token1] = ACTIONS(1350), - [aux_sym__val_number_token2] = ACTIONS(1350), - [aux_sym__val_number_token3] = ACTIONS(1350), - [aux_sym__val_number_token4] = ACTIONS(1350), - [aux_sym__val_number_token5] = ACTIONS(1350), - [aux_sym__val_number_token6] = ACTIONS(1350), - [anon_sym_0b] = ACTIONS(1350), - [anon_sym_0o] = ACTIONS(1350), - [anon_sym_0x] = ACTIONS(1350), - [sym_val_date] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [sym__str_single_quotes] = ACTIONS(1350), - [sym__str_back_ticks] = ACTIONS(1350), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1350), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1350), - [anon_sym_CARET] = ACTIONS(1350), - [anon_sym_POUND] = ACTIONS(113), - }, - [2763] = { - [sym__terminator] = STATE(2696), - [sym_comment] = STATE(2763), - [aux_sym__block_body_repeat1] = STATE(2711), - [anon_sym_export] = ACTIONS(6669), - [anon_sym_alias] = ACTIONS(6669), - [anon_sym_let] = ACTIONS(6669), - [anon_sym_let_DASHenv] = ACTIONS(6669), - [anon_sym_mut] = ACTIONS(6669), - [anon_sym_const] = ACTIONS(6669), - [anon_sym_SEMI] = ACTIONS(6538), - [sym_cmd_identifier] = ACTIONS(6669), - [anon_sym_LF] = ACTIONS(6540), - [anon_sym_def] = ACTIONS(6669), - [anon_sym_export_DASHenv] = ACTIONS(6669), - [anon_sym_extern] = ACTIONS(6669), - [anon_sym_module] = ACTIONS(6669), - [anon_sym_use] = ACTIONS(6669), - [anon_sym_LBRACK] = ACTIONS(6669), - [anon_sym_LPAREN] = ACTIONS(6669), - [anon_sym_DOLLAR] = ACTIONS(6669), - [anon_sym_error] = ACTIONS(6669), - [anon_sym_DASH] = ACTIONS(6669), - [anon_sym_break] = ACTIONS(6669), - [anon_sym_continue] = ACTIONS(6669), - [anon_sym_for] = ACTIONS(6669), - [anon_sym_loop] = ACTIONS(6669), - [anon_sym_while] = ACTIONS(6669), - [anon_sym_do] = ACTIONS(6669), - [anon_sym_if] = ACTIONS(6669), - [anon_sym_match] = ACTIONS(6669), - [anon_sym_LBRACE] = ACTIONS(6669), - [anon_sym_DOT_DOT] = ACTIONS(6669), - [anon_sym_try] = ACTIONS(6669), - [anon_sym_return] = ACTIONS(6669), - [anon_sym_source] = ACTIONS(6669), - [anon_sym_source_DASHenv] = ACTIONS(6669), - [anon_sym_register] = ACTIONS(6669), - [anon_sym_hide] = ACTIONS(6669), - [anon_sym_hide_DASHenv] = ACTIONS(6669), - [anon_sym_overlay] = ACTIONS(6669), - [anon_sym_where] = ACTIONS(6669), - [anon_sym_not] = ACTIONS(6669), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6669), - [anon_sym_DOT_DOT_LT] = ACTIONS(6669), - [anon_sym_null] = ACTIONS(6669), - [anon_sym_true] = ACTIONS(6669), - [anon_sym_false] = ACTIONS(6669), - [aux_sym__val_number_decimal_token1] = ACTIONS(6669), - [aux_sym__val_number_decimal_token2] = ACTIONS(6669), - [anon_sym_DOT2] = ACTIONS(6669), - [aux_sym__val_number_decimal_token3] = ACTIONS(6669), - [aux_sym__val_number_token1] = ACTIONS(6669), - [aux_sym__val_number_token2] = ACTIONS(6669), - [aux_sym__val_number_token3] = ACTIONS(6669), - [aux_sym__val_number_token4] = ACTIONS(6669), - [aux_sym__val_number_token5] = ACTIONS(6669), - [aux_sym__val_number_token6] = ACTIONS(6669), - [anon_sym_0b] = ACTIONS(6669), - [anon_sym_0o] = ACTIONS(6669), - [anon_sym_0x] = ACTIONS(6669), - [sym_val_date] = ACTIONS(6669), - [anon_sym_DQUOTE] = ACTIONS(6669), - [sym__str_single_quotes] = ACTIONS(6669), - [sym__str_back_ticks] = ACTIONS(6669), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6669), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6669), - [anon_sym_CARET] = ACTIONS(6669), - [anon_sym_POUND] = ACTIONS(113), - }, - [2764] = { - [sym__terminator] = STATE(2696), - [sym_comment] = STATE(2764), - [aux_sym__block_body_repeat1] = STATE(1799), - [anon_sym_export] = ACTIONS(6671), - [anon_sym_alias] = ACTIONS(6671), - [anon_sym_let] = ACTIONS(6671), - [anon_sym_let_DASHenv] = ACTIONS(6671), - [anon_sym_mut] = ACTIONS(6671), - [anon_sym_const] = ACTIONS(6671), - [anon_sym_SEMI] = ACTIONS(6538), - [sym_cmd_identifier] = ACTIONS(6671), - [anon_sym_LF] = ACTIONS(6540), - [anon_sym_def] = ACTIONS(6671), - [anon_sym_export_DASHenv] = ACTIONS(6671), - [anon_sym_extern] = ACTIONS(6671), - [anon_sym_module] = ACTIONS(6671), - [anon_sym_use] = ACTIONS(6671), - [anon_sym_LBRACK] = ACTIONS(6671), - [anon_sym_LPAREN] = ACTIONS(6671), - [anon_sym_DOLLAR] = ACTIONS(6671), - [anon_sym_error] = ACTIONS(6671), - [anon_sym_DASH] = ACTIONS(6671), - [anon_sym_break] = ACTIONS(6671), - [anon_sym_continue] = ACTIONS(6671), - [anon_sym_for] = ACTIONS(6671), - [anon_sym_loop] = ACTIONS(6671), - [anon_sym_while] = ACTIONS(6671), - [anon_sym_do] = ACTIONS(6671), - [anon_sym_if] = ACTIONS(6671), - [anon_sym_match] = ACTIONS(6671), - [anon_sym_LBRACE] = ACTIONS(6671), - [anon_sym_DOT_DOT] = ACTIONS(6671), - [anon_sym_try] = ACTIONS(6671), - [anon_sym_return] = ACTIONS(6671), - [anon_sym_source] = ACTIONS(6671), - [anon_sym_source_DASHenv] = ACTIONS(6671), - [anon_sym_register] = ACTIONS(6671), - [anon_sym_hide] = ACTIONS(6671), - [anon_sym_hide_DASHenv] = ACTIONS(6671), - [anon_sym_overlay] = ACTIONS(6671), - [anon_sym_where] = ACTIONS(6671), - [anon_sym_not] = ACTIONS(6671), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6671), - [anon_sym_DOT_DOT_LT] = ACTIONS(6671), - [anon_sym_null] = ACTIONS(6671), - [anon_sym_true] = ACTIONS(6671), - [anon_sym_false] = ACTIONS(6671), - [aux_sym__val_number_decimal_token1] = ACTIONS(6671), - [aux_sym__val_number_decimal_token2] = ACTIONS(6671), - [anon_sym_DOT2] = ACTIONS(6671), - [aux_sym__val_number_decimal_token3] = ACTIONS(6671), - [aux_sym__val_number_token1] = ACTIONS(6671), - [aux_sym__val_number_token2] = ACTIONS(6671), - [aux_sym__val_number_token3] = ACTIONS(6671), - [aux_sym__val_number_token4] = ACTIONS(6671), - [aux_sym__val_number_token5] = ACTIONS(6671), - [aux_sym__val_number_token6] = ACTIONS(6671), - [anon_sym_0b] = ACTIONS(6671), - [anon_sym_0o] = ACTIONS(6671), - [anon_sym_0x] = ACTIONS(6671), - [sym_val_date] = ACTIONS(6671), - [anon_sym_DQUOTE] = ACTIONS(6671), - [sym__str_single_quotes] = ACTIONS(6671), - [sym__str_back_ticks] = ACTIONS(6671), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6671), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6671), - [anon_sym_CARET] = ACTIONS(6671), - [anon_sym_POUND] = ACTIONS(113), - }, - [2765] = { - [sym_comment] = STATE(2765), - [ts_builtin_sym_end] = ACTIONS(1196), - [anon_sym_SEMI] = ACTIONS(1194), - [anon_sym_LF] = ACTIONS(1196), - [anon_sym_LBRACK] = ACTIONS(1194), - [anon_sym_LPAREN] = ACTIONS(1194), - [anon_sym_PIPE] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1194), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_in] = ACTIONS(1198), - [anon_sym_LBRACE] = ACTIONS(1194), - [anon_sym_DOT_DOT] = ACTIONS(1194), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_STAR_STAR] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_SLASH] = ACTIONS(1198), - [anon_sym_mod] = ACTIONS(1198), - [anon_sym_SLASH_SLASH] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1198), - [anon_sym_bit_DASHshl] = ACTIONS(1198), - [anon_sym_bit_DASHshr] = ACTIONS(1198), - [anon_sym_EQ_EQ] = ACTIONS(1198), - [anon_sym_BANG_EQ] = ACTIONS(1198), - [anon_sym_LT2] = ACTIONS(1198), - [anon_sym_LT_EQ] = ACTIONS(1198), - [anon_sym_GT_EQ] = ACTIONS(1198), - [anon_sym_not_DASHin] = ACTIONS(1198), - [anon_sym_starts_DASHwith] = ACTIONS(1198), - [anon_sym_ends_DASHwith] = ACTIONS(1198), - [anon_sym_EQ_TILDE] = ACTIONS(1198), - [anon_sym_BANG_TILDE] = ACTIONS(1198), - [anon_sym_bit_DASHand] = ACTIONS(1198), - [anon_sym_bit_DASHxor] = ACTIONS(1198), - [anon_sym_bit_DASHor] = ACTIONS(1198), - [anon_sym_and] = ACTIONS(1198), - [anon_sym_xor] = ACTIONS(1198), - [anon_sym_or] = ACTIONS(1198), - [anon_sym_not] = ACTIONS(1194), - [anon_sym_DOT_DOT2] = ACTIONS(6546), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1194), - [anon_sym_DOT_DOT_LT] = ACTIONS(1194), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(6548), - [anon_sym_DOT_DOT_LT2] = ACTIONS(6548), - [anon_sym_null] = ACTIONS(1194), - [anon_sym_true] = ACTIONS(1194), - [anon_sym_false] = ACTIONS(1194), - [aux_sym__val_number_decimal_token1] = ACTIONS(1194), - [aux_sym__val_number_decimal_token2] = ACTIONS(1194), - [anon_sym_DOT2] = ACTIONS(1194), - [aux_sym__val_number_decimal_token3] = ACTIONS(1194), - [aux_sym__val_number_token1] = ACTIONS(1194), - [aux_sym__val_number_token2] = ACTIONS(1194), - [aux_sym__val_number_token3] = ACTIONS(1194), - [aux_sym__val_number_token4] = ACTIONS(1194), - [aux_sym__val_number_token5] = ACTIONS(1194), - [aux_sym__val_number_token6] = ACTIONS(1194), - [anon_sym_0b] = ACTIONS(1194), - [anon_sym_0o] = ACTIONS(1194), - [anon_sym_0x] = ACTIONS(1194), - [sym_val_date] = ACTIONS(1194), - [anon_sym_DQUOTE] = ACTIONS(1194), - [sym__str_single_quotes] = ACTIONS(1194), - [sym__str_back_ticks] = ACTIONS(1194), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1194), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1194), - [anon_sym_POUND] = ACTIONS(113), - }, - [2766] = { - [sym_val_record] = STATE(2887), - [sym_comment] = STATE(2766), - [ts_builtin_sym_end] = ACTIONS(6209), - [anon_sym_export] = ACTIONS(6207), - [anon_sym_alias] = ACTIONS(6207), - [anon_sym_let] = ACTIONS(6207), - [anon_sym_let_DASHenv] = ACTIONS(6207), - [anon_sym_mut] = ACTIONS(6207), - [anon_sym_const] = ACTIONS(6207), - [anon_sym_SEMI] = ACTIONS(6207), - [sym_cmd_identifier] = ACTIONS(6207), - [anon_sym_LF] = ACTIONS(6209), - [anon_sym_def] = ACTIONS(6207), - [anon_sym_export_DASHenv] = ACTIONS(6207), - [anon_sym_extern] = ACTIONS(6207), - [anon_sym_module] = ACTIONS(6207), - [anon_sym_use] = ACTIONS(6207), - [anon_sym_LBRACK] = ACTIONS(6207), - [anon_sym_LPAREN] = ACTIONS(6207), - [anon_sym_DOLLAR] = ACTIONS(6207), - [anon_sym_error] = ACTIONS(6207), - [anon_sym_DASH] = ACTIONS(6207), - [anon_sym_break] = ACTIONS(6207), - [anon_sym_continue] = ACTIONS(6207), - [anon_sym_for] = ACTIONS(6207), - [anon_sym_loop] = ACTIONS(6207), - [anon_sym_while] = ACTIONS(6207), - [anon_sym_do] = ACTIONS(6207), - [anon_sym_if] = ACTIONS(6207), - [anon_sym_match] = ACTIONS(6207), - [anon_sym_LBRACE] = ACTIONS(6207), - [anon_sym_DOT_DOT] = ACTIONS(6207), - [anon_sym_try] = ACTIONS(6207), - [anon_sym_return] = ACTIONS(6207), - [anon_sym_source] = ACTIONS(6207), - [anon_sym_source_DASHenv] = ACTIONS(6207), - [anon_sym_register] = ACTIONS(6207), - [anon_sym_hide] = ACTIONS(6207), - [anon_sym_hide_DASHenv] = ACTIONS(6207), - [anon_sym_overlay] = ACTIONS(6207), - [anon_sym_where] = ACTIONS(6207), - [anon_sym_not] = ACTIONS(6207), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6207), - [anon_sym_DOT_DOT_LT] = ACTIONS(6207), - [anon_sym_null] = ACTIONS(6207), - [anon_sym_true] = ACTIONS(6207), - [anon_sym_false] = ACTIONS(6207), - [aux_sym__val_number_decimal_token1] = ACTIONS(6207), - [aux_sym__val_number_decimal_token2] = ACTIONS(6207), - [anon_sym_DOT2] = ACTIONS(6207), - [aux_sym__val_number_decimal_token3] = ACTIONS(6207), - [aux_sym__val_number_token1] = ACTIONS(6207), - [aux_sym__val_number_token2] = ACTIONS(6207), - [aux_sym__val_number_token3] = ACTIONS(6207), - [aux_sym__val_number_token4] = ACTIONS(6207), - [aux_sym__val_number_token5] = ACTIONS(6207), - [aux_sym__val_number_token6] = ACTIONS(6207), - [anon_sym_0b] = ACTIONS(6207), - [anon_sym_0o] = ACTIONS(6207), - [anon_sym_0x] = ACTIONS(6207), - [sym_val_date] = ACTIONS(6207), - [anon_sym_DQUOTE] = ACTIONS(6207), - [sym__str_single_quotes] = ACTIONS(6207), - [sym__str_back_ticks] = ACTIONS(6207), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6207), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6207), - [anon_sym_CARET] = ACTIONS(6207), - [anon_sym_POUND] = ACTIONS(113), - }, - [2767] = { - [sym_block] = STATE(2817), - [sym_comment] = STATE(2767), - [ts_builtin_sym_end] = ACTIONS(6236), - [anon_sym_export] = ACTIONS(6234), - [anon_sym_alias] = ACTIONS(6234), - [anon_sym_let] = ACTIONS(6234), - [anon_sym_let_DASHenv] = ACTIONS(6234), - [anon_sym_mut] = ACTIONS(6234), - [anon_sym_const] = ACTIONS(6234), - [anon_sym_SEMI] = ACTIONS(6234), - [sym_cmd_identifier] = ACTIONS(6234), - [anon_sym_LF] = ACTIONS(6236), - [anon_sym_def] = ACTIONS(6234), - [anon_sym_export_DASHenv] = ACTIONS(6234), - [anon_sym_extern] = ACTIONS(6234), - [anon_sym_module] = ACTIONS(6234), - [anon_sym_use] = ACTIONS(6234), - [anon_sym_LBRACK] = ACTIONS(6234), - [anon_sym_LPAREN] = ACTIONS(6234), - [anon_sym_DOLLAR] = ACTIONS(6234), - [anon_sym_error] = ACTIONS(6234), - [anon_sym_DASH] = ACTIONS(6234), - [anon_sym_break] = ACTIONS(6234), - [anon_sym_continue] = ACTIONS(6234), - [anon_sym_for] = ACTIONS(6234), - [anon_sym_loop] = ACTIONS(6234), - [anon_sym_while] = ACTIONS(6234), - [anon_sym_do] = ACTIONS(6234), - [anon_sym_if] = ACTIONS(6234), - [anon_sym_match] = ACTIONS(6234), - [anon_sym_LBRACE] = ACTIONS(6357), - [anon_sym_DOT_DOT] = ACTIONS(6234), - [anon_sym_try] = ACTIONS(6234), - [anon_sym_return] = ACTIONS(6234), - [anon_sym_source] = ACTIONS(6234), - [anon_sym_source_DASHenv] = ACTIONS(6234), - [anon_sym_register] = ACTIONS(6234), - [anon_sym_hide] = ACTIONS(6234), - [anon_sym_hide_DASHenv] = ACTIONS(6234), - [anon_sym_overlay] = ACTIONS(6234), - [anon_sym_where] = ACTIONS(6234), - [anon_sym_not] = ACTIONS(6234), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6234), - [anon_sym_DOT_DOT_LT] = ACTIONS(6234), - [anon_sym_null] = ACTIONS(6234), - [anon_sym_true] = ACTIONS(6234), - [anon_sym_false] = ACTIONS(6234), - [aux_sym__val_number_decimal_token1] = ACTIONS(6234), - [aux_sym__val_number_decimal_token2] = ACTIONS(6234), - [anon_sym_DOT2] = ACTIONS(6234), - [aux_sym__val_number_decimal_token3] = ACTIONS(6234), - [aux_sym__val_number_token1] = ACTIONS(6234), - [aux_sym__val_number_token2] = ACTIONS(6234), - [aux_sym__val_number_token3] = ACTIONS(6234), - [aux_sym__val_number_token4] = ACTIONS(6234), - [aux_sym__val_number_token5] = ACTIONS(6234), - [aux_sym__val_number_token6] = ACTIONS(6234), - [anon_sym_0b] = ACTIONS(6234), - [anon_sym_0o] = ACTIONS(6234), - [anon_sym_0x] = ACTIONS(6234), - [sym_val_date] = ACTIONS(6234), - [anon_sym_DQUOTE] = ACTIONS(6234), - [sym__str_single_quotes] = ACTIONS(6234), - [sym__str_back_ticks] = ACTIONS(6234), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6234), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6234), - [anon_sym_CARET] = ACTIONS(6234), - [anon_sym_POUND] = ACTIONS(113), - }, - [2768] = { - [sym_block] = STATE(2823), - [sym_comment] = STATE(2768), - [ts_builtin_sym_end] = ACTIONS(6236), - [anon_sym_export] = ACTIONS(6234), - [anon_sym_alias] = ACTIONS(6234), - [anon_sym_let] = ACTIONS(6234), - [anon_sym_let_DASHenv] = ACTIONS(6234), - [anon_sym_mut] = ACTIONS(6234), - [anon_sym_const] = ACTIONS(6234), - [anon_sym_SEMI] = ACTIONS(6234), - [sym_cmd_identifier] = ACTIONS(6234), - [anon_sym_LF] = ACTIONS(6236), - [anon_sym_def] = ACTIONS(6234), - [anon_sym_export_DASHenv] = ACTIONS(6234), - [anon_sym_extern] = ACTIONS(6234), - [anon_sym_module] = ACTIONS(6234), - [anon_sym_use] = ACTIONS(6234), - [anon_sym_LBRACK] = ACTIONS(6234), - [anon_sym_LPAREN] = ACTIONS(6234), - [anon_sym_DOLLAR] = ACTIONS(6234), - [anon_sym_error] = ACTIONS(6234), - [anon_sym_DASH] = ACTIONS(6234), - [anon_sym_break] = ACTIONS(6234), - [anon_sym_continue] = ACTIONS(6234), - [anon_sym_for] = ACTIONS(6234), - [anon_sym_loop] = ACTIONS(6234), - [anon_sym_while] = ACTIONS(6234), - [anon_sym_do] = ACTIONS(6234), - [anon_sym_if] = ACTIONS(6234), - [anon_sym_match] = ACTIONS(6234), - [anon_sym_LBRACE] = ACTIONS(6357), - [anon_sym_DOT_DOT] = ACTIONS(6234), - [anon_sym_try] = ACTIONS(6234), - [anon_sym_return] = ACTIONS(6234), - [anon_sym_source] = ACTIONS(6234), - [anon_sym_source_DASHenv] = ACTIONS(6234), - [anon_sym_register] = ACTIONS(6234), - [anon_sym_hide] = ACTIONS(6234), - [anon_sym_hide_DASHenv] = ACTIONS(6234), - [anon_sym_overlay] = ACTIONS(6234), - [anon_sym_where] = ACTIONS(6234), - [anon_sym_not] = ACTIONS(6234), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6234), - [anon_sym_DOT_DOT_LT] = ACTIONS(6234), - [anon_sym_null] = ACTIONS(6234), - [anon_sym_true] = ACTIONS(6234), - [anon_sym_false] = ACTIONS(6234), - [aux_sym__val_number_decimal_token1] = ACTIONS(6234), - [aux_sym__val_number_decimal_token2] = ACTIONS(6234), - [anon_sym_DOT2] = ACTIONS(6234), - [aux_sym__val_number_decimal_token3] = ACTIONS(6234), - [aux_sym__val_number_token1] = ACTIONS(6234), - [aux_sym__val_number_token2] = ACTIONS(6234), - [aux_sym__val_number_token3] = ACTIONS(6234), - [aux_sym__val_number_token4] = ACTIONS(6234), - [aux_sym__val_number_token5] = ACTIONS(6234), - [aux_sym__val_number_token6] = ACTIONS(6234), - [anon_sym_0b] = ACTIONS(6234), - [anon_sym_0o] = ACTIONS(6234), - [anon_sym_0x] = ACTIONS(6234), - [sym_val_date] = ACTIONS(6234), - [anon_sym_DQUOTE] = ACTIONS(6234), - [sym__str_single_quotes] = ACTIONS(6234), - [sym__str_back_ticks] = ACTIONS(6234), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6234), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6234), - [anon_sym_CARET] = ACTIONS(6234), - [anon_sym_POUND] = ACTIONS(113), - }, - [2769] = { - [sym_comment] = STATE(2769), - [anon_sym_export] = ACTIONS(6673), - [anon_sym_alias] = ACTIONS(6673), - [anon_sym_let] = ACTIONS(6673), - [anon_sym_let_DASHenv] = ACTIONS(6673), - [anon_sym_mut] = ACTIONS(6673), - [anon_sym_const] = ACTIONS(6673), - [anon_sym_SEMI] = ACTIONS(6675), - [sym_cmd_identifier] = ACTIONS(6673), - [anon_sym_LF] = ACTIONS(6678), - [anon_sym_def] = ACTIONS(6673), - [anon_sym_export_DASHenv] = ACTIONS(6673), - [anon_sym_extern] = ACTIONS(6673), - [anon_sym_module] = ACTIONS(6673), - [anon_sym_use] = ACTIONS(6673), - [anon_sym_LBRACK] = ACTIONS(6673), - [anon_sym_LPAREN] = ACTIONS(6673), - [anon_sym_RPAREN] = ACTIONS(6681), - [anon_sym_DOLLAR] = ACTIONS(6673), - [anon_sym_error] = ACTIONS(6673), - [anon_sym_DASH] = ACTIONS(6673), - [anon_sym_break] = ACTIONS(6673), - [anon_sym_continue] = ACTIONS(6673), - [anon_sym_for] = ACTIONS(6673), - [anon_sym_loop] = ACTIONS(6673), - [anon_sym_while] = ACTIONS(6673), - [anon_sym_do] = ACTIONS(6673), - [anon_sym_if] = ACTIONS(6673), - [anon_sym_match] = ACTIONS(6673), - [anon_sym_LBRACE] = ACTIONS(6673), - [anon_sym_RBRACE] = ACTIONS(6681), - [anon_sym_DOT_DOT] = ACTIONS(6673), - [anon_sym_try] = ACTIONS(6673), - [anon_sym_return] = ACTIONS(6673), - [anon_sym_source] = ACTIONS(6673), - [anon_sym_source_DASHenv] = ACTIONS(6673), - [anon_sym_register] = ACTIONS(6673), - [anon_sym_hide] = ACTIONS(6673), - [anon_sym_hide_DASHenv] = ACTIONS(6673), - [anon_sym_overlay] = ACTIONS(6673), - [anon_sym_where] = ACTIONS(6673), - [anon_sym_not] = ACTIONS(6673), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6673), - [anon_sym_DOT_DOT_LT] = ACTIONS(6673), - [anon_sym_null] = ACTIONS(6673), - [anon_sym_true] = ACTIONS(6673), - [anon_sym_false] = ACTIONS(6673), - [aux_sym__val_number_decimal_token1] = ACTIONS(6673), - [aux_sym__val_number_decimal_token2] = ACTIONS(6673), - [anon_sym_DOT2] = ACTIONS(6673), - [aux_sym__val_number_decimal_token3] = ACTIONS(6673), - [aux_sym__val_number_token1] = ACTIONS(6673), - [aux_sym__val_number_token2] = ACTIONS(6673), - [aux_sym__val_number_token3] = ACTIONS(6673), - [aux_sym__val_number_token4] = ACTIONS(6673), - [aux_sym__val_number_token5] = ACTIONS(6673), - [aux_sym__val_number_token6] = ACTIONS(6673), - [anon_sym_0b] = ACTIONS(6673), - [anon_sym_0o] = ACTIONS(6673), - [anon_sym_0x] = ACTIONS(6673), - [sym_val_date] = ACTIONS(6673), - [anon_sym_DQUOTE] = ACTIONS(6673), - [sym__str_single_quotes] = ACTIONS(6673), - [sym__str_back_ticks] = ACTIONS(6673), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6673), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6673), - [anon_sym_CARET] = ACTIONS(6673), - [anon_sym_POUND] = ACTIONS(113), - }, - [2770] = { - [sym_block] = STATE(2940), - [sym_comment] = STATE(2770), - [ts_builtin_sym_end] = ACTIONS(6198), - [anon_sym_export] = ACTIONS(6196), - [anon_sym_alias] = ACTIONS(6196), - [anon_sym_let] = ACTIONS(6196), - [anon_sym_let_DASHenv] = ACTIONS(6196), - [anon_sym_mut] = ACTIONS(6196), - [anon_sym_const] = ACTIONS(6196), - [anon_sym_SEMI] = ACTIONS(6196), - [sym_cmd_identifier] = ACTIONS(6196), - [anon_sym_LF] = ACTIONS(6198), - [anon_sym_def] = ACTIONS(6196), - [anon_sym_export_DASHenv] = ACTIONS(6196), - [anon_sym_extern] = ACTIONS(6196), - [anon_sym_module] = ACTIONS(6196), - [anon_sym_use] = ACTIONS(6196), - [anon_sym_LBRACK] = ACTIONS(6196), - [anon_sym_LPAREN] = ACTIONS(6196), - [anon_sym_DOLLAR] = ACTIONS(6196), - [anon_sym_error] = ACTIONS(6196), - [anon_sym_DASH] = ACTIONS(6196), - [anon_sym_break] = ACTIONS(6196), - [anon_sym_continue] = ACTIONS(6196), - [anon_sym_for] = ACTIONS(6196), - [anon_sym_loop] = ACTIONS(6196), - [anon_sym_while] = ACTIONS(6196), - [anon_sym_do] = ACTIONS(6196), - [anon_sym_if] = ACTIONS(6196), - [anon_sym_match] = ACTIONS(6196), - [anon_sym_LBRACE] = ACTIONS(6683), - [anon_sym_DOT_DOT] = ACTIONS(6196), - [anon_sym_try] = ACTIONS(6196), - [anon_sym_return] = ACTIONS(6196), - [anon_sym_source] = ACTIONS(6196), - [anon_sym_source_DASHenv] = ACTIONS(6196), - [anon_sym_register] = ACTIONS(6196), - [anon_sym_hide] = ACTIONS(6196), - [anon_sym_hide_DASHenv] = ACTIONS(6196), - [anon_sym_overlay] = ACTIONS(6196), - [anon_sym_where] = ACTIONS(6196), - [anon_sym_not] = ACTIONS(6196), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6196), - [anon_sym_DOT_DOT_LT] = ACTIONS(6196), - [anon_sym_null] = ACTIONS(6196), - [anon_sym_true] = ACTIONS(6196), - [anon_sym_false] = ACTIONS(6196), - [aux_sym__val_number_decimal_token1] = ACTIONS(6196), - [aux_sym__val_number_decimal_token2] = ACTIONS(6196), - [anon_sym_DOT2] = ACTIONS(6196), - [aux_sym__val_number_decimal_token3] = ACTIONS(6196), - [aux_sym__val_number_token1] = ACTIONS(6196), - [aux_sym__val_number_token2] = ACTIONS(6196), - [aux_sym__val_number_token3] = ACTIONS(6196), - [aux_sym__val_number_token4] = ACTIONS(6196), - [aux_sym__val_number_token5] = ACTIONS(6196), - [aux_sym__val_number_token6] = ACTIONS(6196), - [anon_sym_0b] = ACTIONS(6196), - [anon_sym_0o] = ACTIONS(6196), - [anon_sym_0x] = ACTIONS(6196), - [sym_val_date] = ACTIONS(6196), - [anon_sym_DQUOTE] = ACTIONS(6196), - [sym__str_single_quotes] = ACTIONS(6196), - [sym__str_back_ticks] = ACTIONS(6196), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6196), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6196), - [anon_sym_CARET] = ACTIONS(6196), - [anon_sym_POUND] = ACTIONS(113), - }, - [2771] = { - [sym__terminator] = STATE(2696), - [sym_comment] = STATE(2771), - [aux_sym__block_body_repeat1] = STATE(2764), - [anon_sym_export] = ACTIONS(6686), - [anon_sym_alias] = ACTIONS(6686), - [anon_sym_let] = ACTIONS(6686), - [anon_sym_let_DASHenv] = ACTIONS(6686), - [anon_sym_mut] = ACTIONS(6686), - [anon_sym_const] = ACTIONS(6686), - [anon_sym_SEMI] = ACTIONS(6538), - [sym_cmd_identifier] = ACTIONS(6686), - [anon_sym_LF] = ACTIONS(6540), - [anon_sym_def] = ACTIONS(6686), - [anon_sym_export_DASHenv] = ACTIONS(6686), - [anon_sym_extern] = ACTIONS(6686), - [anon_sym_module] = ACTIONS(6686), - [anon_sym_use] = ACTIONS(6686), - [anon_sym_LBRACK] = ACTIONS(6686), - [anon_sym_LPAREN] = ACTIONS(6686), - [anon_sym_DOLLAR] = ACTIONS(6686), - [anon_sym_error] = ACTIONS(6686), - [anon_sym_DASH] = ACTIONS(6686), - [anon_sym_break] = ACTIONS(6686), - [anon_sym_continue] = ACTIONS(6686), - [anon_sym_for] = ACTIONS(6686), - [anon_sym_loop] = ACTIONS(6686), - [anon_sym_while] = ACTIONS(6686), - [anon_sym_do] = ACTIONS(6686), - [anon_sym_if] = ACTIONS(6686), - [anon_sym_match] = ACTIONS(6686), - [anon_sym_LBRACE] = ACTIONS(6686), - [anon_sym_DOT_DOT] = ACTIONS(6686), - [anon_sym_try] = ACTIONS(6686), - [anon_sym_return] = ACTIONS(6686), - [anon_sym_source] = ACTIONS(6686), - [anon_sym_source_DASHenv] = ACTIONS(6686), - [anon_sym_register] = ACTIONS(6686), - [anon_sym_hide] = ACTIONS(6686), - [anon_sym_hide_DASHenv] = ACTIONS(6686), - [anon_sym_overlay] = ACTIONS(6686), - [anon_sym_where] = ACTIONS(6686), - [anon_sym_not] = ACTIONS(6686), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6686), - [anon_sym_DOT_DOT_LT] = ACTIONS(6686), - [anon_sym_null] = ACTIONS(6686), - [anon_sym_true] = ACTIONS(6686), - [anon_sym_false] = ACTIONS(6686), - [aux_sym__val_number_decimal_token1] = ACTIONS(6686), - [aux_sym__val_number_decimal_token2] = ACTIONS(6686), - [anon_sym_DOT2] = ACTIONS(6686), - [aux_sym__val_number_decimal_token3] = ACTIONS(6686), - [aux_sym__val_number_token1] = ACTIONS(6686), - [aux_sym__val_number_token2] = ACTIONS(6686), - [aux_sym__val_number_token3] = ACTIONS(6686), - [aux_sym__val_number_token4] = ACTIONS(6686), - [aux_sym__val_number_token5] = ACTIONS(6686), - [aux_sym__val_number_token6] = ACTIONS(6686), - [anon_sym_0b] = ACTIONS(6686), - [anon_sym_0o] = ACTIONS(6686), - [anon_sym_0x] = ACTIONS(6686), - [sym_val_date] = ACTIONS(6686), - [anon_sym_DQUOTE] = ACTIONS(6686), - [sym__str_single_quotes] = ACTIONS(6686), - [sym__str_back_ticks] = ACTIONS(6686), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6686), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6686), - [anon_sym_CARET] = ACTIONS(6686), - [anon_sym_POUND] = ACTIONS(113), - }, - [2772] = { - [sym_comment] = STATE(2772), - [anon_sym_export] = ACTIONS(6688), - [anon_sym_alias] = ACTIONS(6688), - [anon_sym_let] = ACTIONS(6688), - [anon_sym_let_DASHenv] = ACTIONS(6688), - [anon_sym_mut] = ACTIONS(6688), - [anon_sym_const] = ACTIONS(6688), - [anon_sym_SEMI] = ACTIONS(6690), - [sym_cmd_identifier] = ACTIONS(6688), - [anon_sym_LF] = ACTIONS(6693), - [anon_sym_def] = ACTIONS(6688), - [anon_sym_export_DASHenv] = ACTIONS(6688), - [anon_sym_extern] = ACTIONS(6688), - [anon_sym_module] = ACTIONS(6688), - [anon_sym_use] = ACTIONS(6688), - [anon_sym_LBRACK] = ACTIONS(6688), - [anon_sym_LPAREN] = ACTIONS(6688), - [anon_sym_RPAREN] = ACTIONS(6696), - [anon_sym_DOLLAR] = ACTIONS(6688), - [anon_sym_error] = ACTIONS(6688), - [anon_sym_DASH] = ACTIONS(6688), - [anon_sym_break] = ACTIONS(6688), - [anon_sym_continue] = ACTIONS(6688), - [anon_sym_for] = ACTIONS(6688), - [anon_sym_loop] = ACTIONS(6688), - [anon_sym_while] = ACTIONS(6688), - [anon_sym_do] = ACTIONS(6688), - [anon_sym_if] = ACTIONS(6688), - [anon_sym_match] = ACTIONS(6688), - [anon_sym_LBRACE] = ACTIONS(6688), - [anon_sym_RBRACE] = ACTIONS(6696), - [anon_sym_DOT_DOT] = ACTIONS(6688), - [anon_sym_try] = ACTIONS(6688), - [anon_sym_return] = ACTIONS(6688), - [anon_sym_source] = ACTIONS(6688), - [anon_sym_source_DASHenv] = ACTIONS(6688), - [anon_sym_register] = ACTIONS(6688), - [anon_sym_hide] = ACTIONS(6688), - [anon_sym_hide_DASHenv] = ACTIONS(6688), - [anon_sym_overlay] = ACTIONS(6688), - [anon_sym_where] = ACTIONS(6688), - [anon_sym_not] = ACTIONS(6688), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6688), - [anon_sym_DOT_DOT_LT] = ACTIONS(6688), - [anon_sym_null] = ACTIONS(6688), - [anon_sym_true] = ACTIONS(6688), - [anon_sym_false] = ACTIONS(6688), - [aux_sym__val_number_decimal_token1] = ACTIONS(6688), - [aux_sym__val_number_decimal_token2] = ACTIONS(6688), - [anon_sym_DOT2] = ACTIONS(6688), - [aux_sym__val_number_decimal_token3] = ACTIONS(6688), - [aux_sym__val_number_token1] = ACTIONS(6688), - [aux_sym__val_number_token2] = ACTIONS(6688), - [aux_sym__val_number_token3] = ACTIONS(6688), - [aux_sym__val_number_token4] = ACTIONS(6688), - [aux_sym__val_number_token5] = ACTIONS(6688), - [aux_sym__val_number_token6] = ACTIONS(6688), - [anon_sym_0b] = ACTIONS(6688), - [anon_sym_0o] = ACTIONS(6688), - [anon_sym_0x] = ACTIONS(6688), - [sym_val_date] = ACTIONS(6688), - [anon_sym_DQUOTE] = ACTIONS(6688), - [sym__str_single_quotes] = ACTIONS(6688), - [sym__str_back_ticks] = ACTIONS(6688), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6688), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6688), - [anon_sym_CARET] = ACTIONS(6688), - [anon_sym_POUND] = ACTIONS(113), - }, - [2773] = { - [sym_comment] = STATE(2773), - [anon_sym_export] = ACTIONS(6698), - [anon_sym_alias] = ACTIONS(6698), - [anon_sym_let] = ACTIONS(6698), - [anon_sym_let_DASHenv] = ACTIONS(6698), - [anon_sym_mut] = ACTIONS(6698), - [anon_sym_const] = ACTIONS(6698), - [anon_sym_SEMI] = ACTIONS(6698), - [sym_cmd_identifier] = ACTIONS(6698), - [anon_sym_LF] = ACTIONS(6700), - [anon_sym_def] = ACTIONS(6698), - [anon_sym_export_DASHenv] = ACTIONS(6698), - [anon_sym_extern] = ACTIONS(6698), - [anon_sym_module] = ACTIONS(6698), - [anon_sym_use] = ACTIONS(6698), - [anon_sym_LBRACK] = ACTIONS(6698), - [anon_sym_LPAREN] = ACTIONS(6698), - [anon_sym_RPAREN] = ACTIONS(6698), - [anon_sym_DOLLAR] = ACTIONS(6698), - [anon_sym_error] = ACTIONS(6698), - [anon_sym_DASH] = ACTIONS(6698), - [anon_sym_break] = ACTIONS(6698), - [anon_sym_continue] = ACTIONS(6698), - [anon_sym_for] = ACTIONS(6698), - [anon_sym_loop] = ACTIONS(6698), - [anon_sym_while] = ACTIONS(6698), - [anon_sym_do] = ACTIONS(6698), - [anon_sym_if] = ACTIONS(6698), - [anon_sym_match] = ACTIONS(6698), - [anon_sym_LBRACE] = ACTIONS(6698), - [anon_sym_RBRACE] = ACTIONS(6698), - [anon_sym_DOT_DOT] = ACTIONS(6698), - [anon_sym_try] = ACTIONS(6698), - [anon_sym_return] = ACTIONS(6698), - [anon_sym_source] = ACTIONS(6698), - [anon_sym_source_DASHenv] = ACTIONS(6698), - [anon_sym_register] = ACTIONS(6698), - [anon_sym_hide] = ACTIONS(6698), - [anon_sym_hide_DASHenv] = ACTIONS(6698), - [anon_sym_overlay] = ACTIONS(6698), - [anon_sym_where] = ACTIONS(6698), - [anon_sym_not] = ACTIONS(6698), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6698), - [anon_sym_DOT_DOT_LT] = ACTIONS(6698), - [anon_sym_null] = ACTIONS(6698), - [anon_sym_true] = ACTIONS(6698), - [anon_sym_false] = ACTIONS(6698), - [aux_sym__val_number_decimal_token1] = ACTIONS(6698), - [aux_sym__val_number_decimal_token2] = ACTIONS(6698), - [anon_sym_DOT2] = ACTIONS(6698), - [aux_sym__val_number_decimal_token3] = ACTIONS(6698), - [aux_sym__val_number_token1] = ACTIONS(6698), - [aux_sym__val_number_token2] = ACTIONS(6698), - [aux_sym__val_number_token3] = ACTIONS(6698), - [aux_sym__val_number_token4] = ACTIONS(6698), - [aux_sym__val_number_token5] = ACTIONS(6698), - [aux_sym__val_number_token6] = ACTIONS(6698), - [anon_sym_0b] = ACTIONS(6698), - [anon_sym_0o] = ACTIONS(6698), - [anon_sym_0x] = ACTIONS(6698), - [sym_val_date] = ACTIONS(6698), - [anon_sym_DQUOTE] = ACTIONS(6698), - [sym__str_single_quotes] = ACTIONS(6698), - [sym__str_back_ticks] = ACTIONS(6698), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6698), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6698), - [anon_sym_CARET] = ACTIONS(6698), - [anon_sym_POUND] = ACTIONS(113), - }, - [2774] = { - [sym_comment] = STATE(2774), - [anon_sym_export] = ACTIONS(6698), - [anon_sym_alias] = ACTIONS(6698), - [anon_sym_let] = ACTIONS(6698), - [anon_sym_let_DASHenv] = ACTIONS(6698), - [anon_sym_mut] = ACTIONS(6698), - [anon_sym_const] = ACTIONS(6698), - [anon_sym_SEMI] = ACTIONS(6698), - [sym_cmd_identifier] = ACTIONS(6698), - [anon_sym_LF] = ACTIONS(6700), - [anon_sym_def] = ACTIONS(6698), - [anon_sym_export_DASHenv] = ACTIONS(6698), - [anon_sym_extern] = ACTIONS(6698), - [anon_sym_module] = ACTIONS(6698), - [anon_sym_use] = ACTIONS(6698), - [anon_sym_LBRACK] = ACTIONS(6698), - [anon_sym_LPAREN] = ACTIONS(6698), - [anon_sym_RPAREN] = ACTIONS(6698), - [anon_sym_DOLLAR] = ACTIONS(6698), - [anon_sym_error] = ACTIONS(6698), - [anon_sym_DASH] = ACTIONS(6698), - [anon_sym_break] = ACTIONS(6698), - [anon_sym_continue] = ACTIONS(6698), - [anon_sym_for] = ACTIONS(6698), - [anon_sym_loop] = ACTIONS(6698), - [anon_sym_while] = ACTIONS(6698), - [anon_sym_do] = ACTIONS(6698), - [anon_sym_if] = ACTIONS(6698), - [anon_sym_match] = ACTIONS(6698), - [anon_sym_LBRACE] = ACTIONS(6698), - [anon_sym_RBRACE] = ACTIONS(6698), - [anon_sym_DOT_DOT] = ACTIONS(6698), - [anon_sym_try] = ACTIONS(6698), - [anon_sym_return] = ACTIONS(6698), - [anon_sym_source] = ACTIONS(6698), - [anon_sym_source_DASHenv] = ACTIONS(6698), - [anon_sym_register] = ACTIONS(6698), - [anon_sym_hide] = ACTIONS(6698), - [anon_sym_hide_DASHenv] = ACTIONS(6698), - [anon_sym_overlay] = ACTIONS(6698), - [anon_sym_where] = ACTIONS(6698), - [anon_sym_not] = ACTIONS(6698), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6698), - [anon_sym_DOT_DOT_LT] = ACTIONS(6698), - [anon_sym_null] = ACTIONS(6698), - [anon_sym_true] = ACTIONS(6698), - [anon_sym_false] = ACTIONS(6698), - [aux_sym__val_number_decimal_token1] = ACTIONS(6698), - [aux_sym__val_number_decimal_token2] = ACTIONS(6698), - [anon_sym_DOT2] = ACTIONS(6698), - [aux_sym__val_number_decimal_token3] = ACTIONS(6698), - [aux_sym__val_number_token1] = ACTIONS(6698), - [aux_sym__val_number_token2] = ACTIONS(6698), - [aux_sym__val_number_token3] = ACTIONS(6698), - [aux_sym__val_number_token4] = ACTIONS(6698), - [aux_sym__val_number_token5] = ACTIONS(6698), - [aux_sym__val_number_token6] = ACTIONS(6698), - [anon_sym_0b] = ACTIONS(6698), - [anon_sym_0o] = ACTIONS(6698), - [anon_sym_0x] = ACTIONS(6698), - [sym_val_date] = ACTIONS(6698), - [anon_sym_DQUOTE] = ACTIONS(6698), - [sym__str_single_quotes] = ACTIONS(6698), - [sym__str_back_ticks] = ACTIONS(6698), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6698), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6698), - [anon_sym_CARET] = ACTIONS(6698), - [anon_sym_POUND] = ACTIONS(113), - }, - [2775] = { - [sym_comment] = STATE(2775), - [anon_sym_export] = ACTIONS(6702), - [anon_sym_alias] = ACTIONS(6702), - [anon_sym_let] = ACTIONS(6702), - [anon_sym_let_DASHenv] = ACTIONS(6702), - [anon_sym_mut] = ACTIONS(6702), - [anon_sym_const] = ACTIONS(6702), - [anon_sym_SEMI] = ACTIONS(6702), - [sym_cmd_identifier] = ACTIONS(6702), - [anon_sym_LF] = ACTIONS(6704), - [anon_sym_def] = ACTIONS(6702), - [anon_sym_export_DASHenv] = ACTIONS(6702), - [anon_sym_extern] = ACTIONS(6702), - [anon_sym_module] = ACTIONS(6702), - [anon_sym_use] = ACTIONS(6702), - [anon_sym_LBRACK] = ACTIONS(6702), - [anon_sym_LPAREN] = ACTIONS(6702), - [anon_sym_RPAREN] = ACTIONS(6702), - [anon_sym_DOLLAR] = ACTIONS(6702), - [anon_sym_error] = ACTIONS(6702), - [anon_sym_DASH] = ACTIONS(6702), - [anon_sym_break] = ACTIONS(6702), - [anon_sym_continue] = ACTIONS(6702), - [anon_sym_for] = ACTIONS(6702), - [anon_sym_loop] = ACTIONS(6702), - [anon_sym_while] = ACTIONS(6702), - [anon_sym_do] = ACTIONS(6702), - [anon_sym_if] = ACTIONS(6702), - [anon_sym_match] = ACTIONS(6702), - [anon_sym_LBRACE] = ACTIONS(6702), - [anon_sym_RBRACE] = ACTIONS(6702), - [anon_sym_DOT_DOT] = ACTIONS(6702), - [anon_sym_try] = ACTIONS(6702), - [anon_sym_return] = ACTIONS(6702), - [anon_sym_source] = ACTIONS(6702), - [anon_sym_source_DASHenv] = ACTIONS(6702), - [anon_sym_register] = ACTIONS(6702), - [anon_sym_hide] = ACTIONS(6702), - [anon_sym_hide_DASHenv] = ACTIONS(6702), - [anon_sym_overlay] = ACTIONS(6702), - [anon_sym_where] = ACTIONS(6702), - [anon_sym_not] = ACTIONS(6702), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6702), - [anon_sym_DOT_DOT_LT] = ACTIONS(6702), - [anon_sym_null] = ACTIONS(6702), - [anon_sym_true] = ACTIONS(6702), - [anon_sym_false] = ACTIONS(6702), - [aux_sym__val_number_decimal_token1] = ACTIONS(6702), - [aux_sym__val_number_decimal_token2] = ACTIONS(6702), - [anon_sym_DOT2] = ACTIONS(6702), - [aux_sym__val_number_decimal_token3] = ACTIONS(6702), - [aux_sym__val_number_token1] = ACTIONS(6702), - [aux_sym__val_number_token2] = ACTIONS(6702), - [aux_sym__val_number_token3] = ACTIONS(6702), - [aux_sym__val_number_token4] = ACTIONS(6702), - [aux_sym__val_number_token5] = ACTIONS(6702), - [aux_sym__val_number_token6] = ACTIONS(6702), - [anon_sym_0b] = ACTIONS(6702), - [anon_sym_0o] = ACTIONS(6702), - [anon_sym_0x] = ACTIONS(6702), - [sym_val_date] = ACTIONS(6702), - [anon_sym_DQUOTE] = ACTIONS(6702), - [sym__str_single_quotes] = ACTIONS(6702), - [sym__str_back_ticks] = ACTIONS(6702), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6702), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6702), - [anon_sym_CARET] = ACTIONS(6702), - [anon_sym_POUND] = ACTIONS(113), - }, - [2776] = { - [sym_comment] = STATE(2776), - [anon_sym_export] = ACTIONS(6706), - [anon_sym_alias] = ACTIONS(6706), - [anon_sym_let] = ACTIONS(6706), - [anon_sym_let_DASHenv] = ACTIONS(6706), - [anon_sym_mut] = ACTIONS(6706), - [anon_sym_const] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(6706), - [sym_cmd_identifier] = ACTIONS(6706), - [anon_sym_LF] = ACTIONS(6708), - [anon_sym_def] = ACTIONS(6706), - [anon_sym_export_DASHenv] = ACTIONS(6706), - [anon_sym_extern] = ACTIONS(6706), - [anon_sym_module] = ACTIONS(6706), - [anon_sym_use] = ACTIONS(6706), - [anon_sym_LBRACK] = ACTIONS(6706), - [anon_sym_LPAREN] = ACTIONS(6706), - [anon_sym_RPAREN] = ACTIONS(6706), - [anon_sym_DOLLAR] = ACTIONS(6706), - [anon_sym_error] = ACTIONS(6706), - [anon_sym_DASH] = ACTIONS(6706), - [anon_sym_break] = ACTIONS(6706), - [anon_sym_continue] = ACTIONS(6706), - [anon_sym_for] = ACTIONS(6706), - [anon_sym_loop] = ACTIONS(6706), - [anon_sym_while] = ACTIONS(6706), - [anon_sym_do] = ACTIONS(6706), - [anon_sym_if] = ACTIONS(6706), - [anon_sym_match] = ACTIONS(6706), - [anon_sym_LBRACE] = ACTIONS(6706), - [anon_sym_RBRACE] = ACTIONS(6706), - [anon_sym_DOT_DOT] = ACTIONS(6706), - [anon_sym_try] = ACTIONS(6706), - [anon_sym_return] = ACTIONS(6706), - [anon_sym_source] = ACTIONS(6706), - [anon_sym_source_DASHenv] = ACTIONS(6706), - [anon_sym_register] = ACTIONS(6706), - [anon_sym_hide] = ACTIONS(6706), - [anon_sym_hide_DASHenv] = ACTIONS(6706), - [anon_sym_overlay] = ACTIONS(6706), - [anon_sym_where] = ACTIONS(6706), - [anon_sym_not] = ACTIONS(6706), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6706), - [anon_sym_DOT_DOT_LT] = ACTIONS(6706), - [anon_sym_null] = ACTIONS(6706), - [anon_sym_true] = ACTIONS(6706), - [anon_sym_false] = ACTIONS(6706), - [aux_sym__val_number_decimal_token1] = ACTIONS(6706), - [aux_sym__val_number_decimal_token2] = ACTIONS(6706), - [anon_sym_DOT2] = ACTIONS(6706), - [aux_sym__val_number_decimal_token3] = ACTIONS(6706), - [aux_sym__val_number_token1] = ACTIONS(6706), - [aux_sym__val_number_token2] = ACTIONS(6706), - [aux_sym__val_number_token3] = ACTIONS(6706), - [aux_sym__val_number_token4] = ACTIONS(6706), - [aux_sym__val_number_token5] = ACTIONS(6706), - [aux_sym__val_number_token6] = ACTIONS(6706), - [anon_sym_0b] = ACTIONS(6706), - [anon_sym_0o] = ACTIONS(6706), - [anon_sym_0x] = ACTIONS(6706), - [sym_val_date] = ACTIONS(6706), - [anon_sym_DQUOTE] = ACTIONS(6706), - [sym__str_single_quotes] = ACTIONS(6706), - [sym__str_back_ticks] = ACTIONS(6706), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6706), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6706), - [anon_sym_CARET] = ACTIONS(6706), - [anon_sym_POUND] = ACTIONS(113), - }, - [2777] = { - [sym_comment] = STATE(2777), - [anon_sym_export] = ACTIONS(6706), - [anon_sym_alias] = ACTIONS(6706), - [anon_sym_let] = ACTIONS(6706), - [anon_sym_let_DASHenv] = ACTIONS(6706), - [anon_sym_mut] = ACTIONS(6706), - [anon_sym_const] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(6706), - [sym_cmd_identifier] = ACTIONS(6706), - [anon_sym_LF] = ACTIONS(6708), - [anon_sym_def] = ACTIONS(6706), - [anon_sym_export_DASHenv] = ACTIONS(6706), - [anon_sym_extern] = ACTIONS(6706), - [anon_sym_module] = ACTIONS(6706), - [anon_sym_use] = ACTIONS(6706), - [anon_sym_LBRACK] = ACTIONS(6706), - [anon_sym_LPAREN] = ACTIONS(6706), - [anon_sym_RPAREN] = ACTIONS(6706), - [anon_sym_DOLLAR] = ACTIONS(6706), - [anon_sym_error] = ACTIONS(6706), - [anon_sym_DASH] = ACTIONS(6706), - [anon_sym_break] = ACTIONS(6706), - [anon_sym_continue] = ACTIONS(6706), - [anon_sym_for] = ACTIONS(6706), - [anon_sym_loop] = ACTIONS(6706), - [anon_sym_while] = ACTIONS(6706), - [anon_sym_do] = ACTIONS(6706), - [anon_sym_if] = ACTIONS(6706), - [anon_sym_match] = ACTIONS(6706), - [anon_sym_LBRACE] = ACTIONS(6706), - [anon_sym_RBRACE] = ACTIONS(6706), - [anon_sym_DOT_DOT] = ACTIONS(6706), - [anon_sym_try] = ACTIONS(6706), - [anon_sym_return] = ACTIONS(6706), - [anon_sym_source] = ACTIONS(6706), - [anon_sym_source_DASHenv] = ACTIONS(6706), - [anon_sym_register] = ACTIONS(6706), - [anon_sym_hide] = ACTIONS(6706), - [anon_sym_hide_DASHenv] = ACTIONS(6706), - [anon_sym_overlay] = ACTIONS(6706), - [anon_sym_where] = ACTIONS(6706), - [anon_sym_not] = ACTIONS(6706), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6706), - [anon_sym_DOT_DOT_LT] = ACTIONS(6706), - [anon_sym_null] = ACTIONS(6706), - [anon_sym_true] = ACTIONS(6706), - [anon_sym_false] = ACTIONS(6706), - [aux_sym__val_number_decimal_token1] = ACTIONS(6706), - [aux_sym__val_number_decimal_token2] = ACTIONS(6706), - [anon_sym_DOT2] = ACTIONS(6706), - [aux_sym__val_number_decimal_token3] = ACTIONS(6706), - [aux_sym__val_number_token1] = ACTIONS(6706), - [aux_sym__val_number_token2] = ACTIONS(6706), - [aux_sym__val_number_token3] = ACTIONS(6706), - [aux_sym__val_number_token4] = ACTIONS(6706), - [aux_sym__val_number_token5] = ACTIONS(6706), - [aux_sym__val_number_token6] = ACTIONS(6706), - [anon_sym_0b] = ACTIONS(6706), - [anon_sym_0o] = ACTIONS(6706), - [anon_sym_0x] = ACTIONS(6706), - [sym_val_date] = ACTIONS(6706), - [anon_sym_DQUOTE] = ACTIONS(6706), - [sym__str_single_quotes] = ACTIONS(6706), - [sym__str_back_ticks] = ACTIONS(6706), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6706), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6706), - [anon_sym_CARET] = ACTIONS(6706), - [anon_sym_POUND] = ACTIONS(113), - }, - [2778] = { - [sym_comment] = STATE(2778), - [anon_sym_export] = ACTIONS(6710), - [anon_sym_alias] = ACTIONS(6710), - [anon_sym_let] = ACTIONS(6710), - [anon_sym_let_DASHenv] = ACTIONS(6710), - [anon_sym_mut] = ACTIONS(6710), - [anon_sym_const] = ACTIONS(6710), - [anon_sym_SEMI] = ACTIONS(6710), - [sym_cmd_identifier] = ACTIONS(6710), - [anon_sym_LF] = ACTIONS(6712), - [anon_sym_def] = ACTIONS(6710), - [anon_sym_export_DASHenv] = ACTIONS(6710), - [anon_sym_extern] = ACTIONS(6710), - [anon_sym_module] = ACTIONS(6710), - [anon_sym_use] = ACTIONS(6710), - [anon_sym_LBRACK] = ACTIONS(6710), - [anon_sym_LPAREN] = ACTIONS(6710), - [anon_sym_RPAREN] = ACTIONS(6710), - [anon_sym_DOLLAR] = ACTIONS(6710), - [anon_sym_error] = ACTIONS(6710), - [anon_sym_DASH] = ACTIONS(6710), - [anon_sym_break] = ACTIONS(6710), - [anon_sym_continue] = ACTIONS(6710), - [anon_sym_for] = ACTIONS(6710), - [anon_sym_loop] = ACTIONS(6710), - [anon_sym_while] = ACTIONS(6710), - [anon_sym_do] = ACTIONS(6710), - [anon_sym_if] = ACTIONS(6710), - [anon_sym_match] = ACTIONS(6710), - [anon_sym_LBRACE] = ACTIONS(6710), - [anon_sym_RBRACE] = ACTIONS(6710), - [anon_sym_DOT_DOT] = ACTIONS(6710), - [anon_sym_try] = ACTIONS(6710), - [anon_sym_return] = ACTIONS(6710), - [anon_sym_source] = ACTIONS(6710), - [anon_sym_source_DASHenv] = ACTIONS(6710), - [anon_sym_register] = ACTIONS(6710), - [anon_sym_hide] = ACTIONS(6710), - [anon_sym_hide_DASHenv] = ACTIONS(6710), - [anon_sym_overlay] = ACTIONS(6710), - [anon_sym_where] = ACTIONS(6710), - [anon_sym_not] = ACTIONS(6710), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6710), - [anon_sym_DOT_DOT_LT] = ACTIONS(6710), - [anon_sym_null] = ACTIONS(6710), - [anon_sym_true] = ACTIONS(6710), - [anon_sym_false] = ACTIONS(6710), - [aux_sym__val_number_decimal_token1] = ACTIONS(6710), - [aux_sym__val_number_decimal_token2] = ACTIONS(6710), - [anon_sym_DOT2] = ACTIONS(6710), - [aux_sym__val_number_decimal_token3] = ACTIONS(6710), - [aux_sym__val_number_token1] = ACTIONS(6710), - [aux_sym__val_number_token2] = ACTIONS(6710), - [aux_sym__val_number_token3] = ACTIONS(6710), - [aux_sym__val_number_token4] = ACTIONS(6710), - [aux_sym__val_number_token5] = ACTIONS(6710), - [aux_sym__val_number_token6] = ACTIONS(6710), - [anon_sym_0b] = ACTIONS(6710), - [anon_sym_0o] = ACTIONS(6710), - [anon_sym_0x] = ACTIONS(6710), - [sym_val_date] = ACTIONS(6710), - [anon_sym_DQUOTE] = ACTIONS(6710), - [sym__str_single_quotes] = ACTIONS(6710), - [sym__str_back_ticks] = ACTIONS(6710), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6710), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6710), - [anon_sym_CARET] = ACTIONS(6710), - [anon_sym_POUND] = ACTIONS(113), - }, - [2779] = { - [sym_comment] = STATE(2779), - [anon_sym_export] = ACTIONS(6714), - [anon_sym_alias] = ACTIONS(6714), - [anon_sym_let] = ACTIONS(6714), - [anon_sym_let_DASHenv] = ACTIONS(6714), - [anon_sym_mut] = ACTIONS(6714), - [anon_sym_const] = ACTIONS(6714), - [anon_sym_SEMI] = ACTIONS(6714), - [sym_cmd_identifier] = ACTIONS(6714), - [anon_sym_LF] = ACTIONS(6716), - [anon_sym_def] = ACTIONS(6714), - [anon_sym_export_DASHenv] = ACTIONS(6714), - [anon_sym_extern] = ACTIONS(6714), - [anon_sym_module] = ACTIONS(6714), - [anon_sym_use] = ACTIONS(6714), - [anon_sym_LBRACK] = ACTIONS(6714), - [anon_sym_LPAREN] = ACTIONS(6714), - [anon_sym_RPAREN] = ACTIONS(6714), - [anon_sym_DOLLAR] = ACTIONS(6714), - [anon_sym_error] = ACTIONS(6714), - [anon_sym_DASH] = ACTIONS(6714), - [anon_sym_break] = ACTIONS(6714), - [anon_sym_continue] = ACTIONS(6714), - [anon_sym_for] = ACTIONS(6714), - [anon_sym_loop] = ACTIONS(6714), - [anon_sym_while] = ACTIONS(6714), - [anon_sym_do] = ACTIONS(6714), - [anon_sym_if] = ACTIONS(6714), - [anon_sym_match] = ACTIONS(6714), - [anon_sym_LBRACE] = ACTIONS(6714), - [anon_sym_RBRACE] = ACTIONS(6714), - [anon_sym_DOT_DOT] = ACTIONS(6714), - [anon_sym_try] = ACTIONS(6714), - [anon_sym_return] = ACTIONS(6714), - [anon_sym_source] = ACTIONS(6714), - [anon_sym_source_DASHenv] = ACTIONS(6714), - [anon_sym_register] = ACTIONS(6714), - [anon_sym_hide] = ACTIONS(6714), - [anon_sym_hide_DASHenv] = ACTIONS(6714), - [anon_sym_overlay] = ACTIONS(6714), - [anon_sym_where] = ACTIONS(6714), - [anon_sym_not] = ACTIONS(6714), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6714), - [anon_sym_DOT_DOT_LT] = ACTIONS(6714), - [anon_sym_null] = ACTIONS(6714), - [anon_sym_true] = ACTIONS(6714), - [anon_sym_false] = ACTIONS(6714), - [aux_sym__val_number_decimal_token1] = ACTIONS(6714), - [aux_sym__val_number_decimal_token2] = ACTIONS(6714), - [anon_sym_DOT2] = ACTIONS(6714), - [aux_sym__val_number_decimal_token3] = ACTIONS(6714), - [aux_sym__val_number_token1] = ACTIONS(6714), - [aux_sym__val_number_token2] = ACTIONS(6714), - [aux_sym__val_number_token3] = ACTIONS(6714), - [aux_sym__val_number_token4] = ACTIONS(6714), - [aux_sym__val_number_token5] = ACTIONS(6714), - [aux_sym__val_number_token6] = ACTIONS(6714), - [anon_sym_0b] = ACTIONS(6714), - [anon_sym_0o] = ACTIONS(6714), - [anon_sym_0x] = ACTIONS(6714), - [sym_val_date] = ACTIONS(6714), - [anon_sym_DQUOTE] = ACTIONS(6714), - [sym__str_single_quotes] = ACTIONS(6714), - [sym__str_back_ticks] = ACTIONS(6714), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6714), - [anon_sym_CARET] = ACTIONS(6714), - [anon_sym_POUND] = ACTIONS(113), - }, - [2780] = { - [sym_comment] = STATE(2780), - [anon_sym_export] = ACTIONS(6718), - [anon_sym_alias] = ACTIONS(6718), - [anon_sym_let] = ACTIONS(6718), - [anon_sym_let_DASHenv] = ACTIONS(6718), - [anon_sym_mut] = ACTIONS(6718), - [anon_sym_const] = ACTIONS(6718), - [anon_sym_SEMI] = ACTIONS(6718), - [sym_cmd_identifier] = ACTIONS(6718), - [anon_sym_LF] = ACTIONS(6720), - [anon_sym_def] = ACTIONS(6718), - [anon_sym_export_DASHenv] = ACTIONS(6718), - [anon_sym_extern] = ACTIONS(6718), - [anon_sym_module] = ACTIONS(6718), - [anon_sym_use] = ACTIONS(6718), - [anon_sym_LBRACK] = ACTIONS(6718), - [anon_sym_LPAREN] = ACTIONS(6718), - [anon_sym_RPAREN] = ACTIONS(6718), - [anon_sym_DOLLAR] = ACTIONS(6718), - [anon_sym_error] = ACTIONS(6718), - [anon_sym_DASH] = ACTIONS(6718), - [anon_sym_break] = ACTIONS(6718), - [anon_sym_continue] = ACTIONS(6718), - [anon_sym_for] = ACTIONS(6718), - [anon_sym_loop] = ACTIONS(6718), - [anon_sym_while] = ACTIONS(6718), - [anon_sym_do] = ACTIONS(6718), - [anon_sym_if] = ACTIONS(6718), - [anon_sym_match] = ACTIONS(6718), - [anon_sym_LBRACE] = ACTIONS(6718), - [anon_sym_RBRACE] = ACTIONS(6718), - [anon_sym_DOT_DOT] = ACTIONS(6718), - [anon_sym_try] = ACTIONS(6718), - [anon_sym_return] = ACTIONS(6718), - [anon_sym_source] = ACTIONS(6718), - [anon_sym_source_DASHenv] = ACTIONS(6718), - [anon_sym_register] = ACTIONS(6718), - [anon_sym_hide] = ACTIONS(6718), - [anon_sym_hide_DASHenv] = ACTIONS(6718), - [anon_sym_overlay] = ACTIONS(6718), - [anon_sym_where] = ACTIONS(6718), - [anon_sym_not] = ACTIONS(6718), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6718), - [anon_sym_DOT_DOT_LT] = ACTIONS(6718), - [anon_sym_null] = ACTIONS(6718), - [anon_sym_true] = ACTIONS(6718), - [anon_sym_false] = ACTIONS(6718), - [aux_sym__val_number_decimal_token1] = ACTIONS(6718), - [aux_sym__val_number_decimal_token2] = ACTIONS(6718), - [anon_sym_DOT2] = ACTIONS(6718), - [aux_sym__val_number_decimal_token3] = ACTIONS(6718), - [aux_sym__val_number_token1] = ACTIONS(6718), - [aux_sym__val_number_token2] = ACTIONS(6718), - [aux_sym__val_number_token3] = ACTIONS(6718), - [aux_sym__val_number_token4] = ACTIONS(6718), - [aux_sym__val_number_token5] = ACTIONS(6718), - [aux_sym__val_number_token6] = ACTIONS(6718), - [anon_sym_0b] = ACTIONS(6718), - [anon_sym_0o] = ACTIONS(6718), - [anon_sym_0x] = ACTIONS(6718), - [sym_val_date] = ACTIONS(6718), - [anon_sym_DQUOTE] = ACTIONS(6718), - [sym__str_single_quotes] = ACTIONS(6718), - [sym__str_back_ticks] = ACTIONS(6718), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6718), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6718), - [anon_sym_CARET] = ACTIONS(6718), - [anon_sym_POUND] = ACTIONS(113), - }, - [2781] = { - [sym_comment] = STATE(2781), - [anon_sym_export] = ACTIONS(6718), - [anon_sym_alias] = ACTIONS(6718), - [anon_sym_let] = ACTIONS(6718), - [anon_sym_let_DASHenv] = ACTIONS(6718), - [anon_sym_mut] = ACTIONS(6718), - [anon_sym_const] = ACTIONS(6718), - [anon_sym_SEMI] = ACTIONS(6718), - [sym_cmd_identifier] = ACTIONS(6718), - [anon_sym_LF] = ACTIONS(6720), - [anon_sym_def] = ACTIONS(6718), - [anon_sym_export_DASHenv] = ACTIONS(6718), - [anon_sym_extern] = ACTIONS(6718), - [anon_sym_module] = ACTIONS(6718), - [anon_sym_use] = ACTIONS(6718), - [anon_sym_LBRACK] = ACTIONS(6718), - [anon_sym_LPAREN] = ACTIONS(6718), - [anon_sym_RPAREN] = ACTIONS(6718), - [anon_sym_DOLLAR] = ACTIONS(6718), - [anon_sym_error] = ACTIONS(6718), - [anon_sym_DASH] = ACTIONS(6718), - [anon_sym_break] = ACTIONS(6718), - [anon_sym_continue] = ACTIONS(6718), - [anon_sym_for] = ACTIONS(6718), - [anon_sym_loop] = ACTIONS(6718), - [anon_sym_while] = ACTIONS(6718), - [anon_sym_do] = ACTIONS(6718), - [anon_sym_if] = ACTIONS(6718), - [anon_sym_match] = ACTIONS(6718), - [anon_sym_LBRACE] = ACTIONS(6718), - [anon_sym_RBRACE] = ACTIONS(6718), - [anon_sym_DOT_DOT] = ACTIONS(6718), - [anon_sym_try] = ACTIONS(6718), - [anon_sym_return] = ACTIONS(6718), - [anon_sym_source] = ACTIONS(6718), - [anon_sym_source_DASHenv] = ACTIONS(6718), - [anon_sym_register] = ACTIONS(6718), - [anon_sym_hide] = ACTIONS(6718), - [anon_sym_hide_DASHenv] = ACTIONS(6718), - [anon_sym_overlay] = ACTIONS(6718), - [anon_sym_where] = ACTIONS(6718), - [anon_sym_not] = ACTIONS(6718), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6718), - [anon_sym_DOT_DOT_LT] = ACTIONS(6718), - [anon_sym_null] = ACTIONS(6718), - [anon_sym_true] = ACTIONS(6718), - [anon_sym_false] = ACTIONS(6718), - [aux_sym__val_number_decimal_token1] = ACTIONS(6718), - [aux_sym__val_number_decimal_token2] = ACTIONS(6718), - [anon_sym_DOT2] = ACTIONS(6718), - [aux_sym__val_number_decimal_token3] = ACTIONS(6718), - [aux_sym__val_number_token1] = ACTIONS(6718), - [aux_sym__val_number_token2] = ACTIONS(6718), - [aux_sym__val_number_token3] = ACTIONS(6718), - [aux_sym__val_number_token4] = ACTIONS(6718), - [aux_sym__val_number_token5] = ACTIONS(6718), - [aux_sym__val_number_token6] = ACTIONS(6718), - [anon_sym_0b] = ACTIONS(6718), - [anon_sym_0o] = ACTIONS(6718), - [anon_sym_0x] = ACTIONS(6718), - [sym_val_date] = ACTIONS(6718), - [anon_sym_DQUOTE] = ACTIONS(6718), - [sym__str_single_quotes] = ACTIONS(6718), - [sym__str_back_ticks] = ACTIONS(6718), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6718), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6718), - [anon_sym_CARET] = ACTIONS(6718), - [anon_sym_POUND] = ACTIONS(113), - }, - [2782] = { - [sym_comment] = STATE(2782), - [anon_sym_export] = ACTIONS(6722), - [anon_sym_alias] = ACTIONS(6722), - [anon_sym_let] = ACTIONS(6722), - [anon_sym_let_DASHenv] = ACTIONS(6722), - [anon_sym_mut] = ACTIONS(6722), - [anon_sym_const] = ACTIONS(6722), - [anon_sym_SEMI] = ACTIONS(6722), - [sym_cmd_identifier] = ACTIONS(6722), - [anon_sym_LF] = ACTIONS(6724), - [anon_sym_def] = ACTIONS(6722), - [anon_sym_export_DASHenv] = ACTIONS(6722), - [anon_sym_extern] = ACTIONS(6722), - [anon_sym_module] = ACTIONS(6722), - [anon_sym_use] = ACTIONS(6722), - [anon_sym_LBRACK] = ACTIONS(6722), - [anon_sym_LPAREN] = ACTIONS(6722), - [anon_sym_RPAREN] = ACTIONS(6722), - [anon_sym_DOLLAR] = ACTIONS(6722), - [anon_sym_error] = ACTIONS(6722), - [anon_sym_DASH] = ACTIONS(6722), - [anon_sym_break] = ACTIONS(6722), - [anon_sym_continue] = ACTIONS(6722), - [anon_sym_for] = ACTIONS(6722), - [anon_sym_loop] = ACTIONS(6722), - [anon_sym_while] = ACTIONS(6722), - [anon_sym_do] = ACTIONS(6722), - [anon_sym_if] = ACTIONS(6722), - [anon_sym_match] = ACTIONS(6722), - [anon_sym_LBRACE] = ACTIONS(6722), - [anon_sym_RBRACE] = ACTIONS(6722), - [anon_sym_DOT_DOT] = ACTIONS(6722), - [anon_sym_try] = ACTIONS(6722), - [anon_sym_return] = ACTIONS(6722), - [anon_sym_source] = ACTIONS(6722), - [anon_sym_source_DASHenv] = ACTIONS(6722), - [anon_sym_register] = ACTIONS(6722), - [anon_sym_hide] = ACTIONS(6722), - [anon_sym_hide_DASHenv] = ACTIONS(6722), - [anon_sym_overlay] = ACTIONS(6722), - [anon_sym_where] = ACTIONS(6722), - [anon_sym_not] = ACTIONS(6722), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6722), - [anon_sym_DOT_DOT_LT] = ACTIONS(6722), - [anon_sym_null] = ACTIONS(6722), - [anon_sym_true] = ACTIONS(6722), - [anon_sym_false] = ACTIONS(6722), - [aux_sym__val_number_decimal_token1] = ACTIONS(6722), - [aux_sym__val_number_decimal_token2] = ACTIONS(6722), - [anon_sym_DOT2] = ACTIONS(6722), - [aux_sym__val_number_decimal_token3] = ACTIONS(6722), - [aux_sym__val_number_token1] = ACTIONS(6722), - [aux_sym__val_number_token2] = ACTIONS(6722), - [aux_sym__val_number_token3] = ACTIONS(6722), - [aux_sym__val_number_token4] = ACTIONS(6722), - [aux_sym__val_number_token5] = ACTIONS(6722), - [aux_sym__val_number_token6] = ACTIONS(6722), - [anon_sym_0b] = ACTIONS(6722), - [anon_sym_0o] = ACTIONS(6722), - [anon_sym_0x] = ACTIONS(6722), - [sym_val_date] = ACTIONS(6722), - [anon_sym_DQUOTE] = ACTIONS(6722), - [sym__str_single_quotes] = ACTIONS(6722), - [sym__str_back_ticks] = ACTIONS(6722), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6722), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6722), - [anon_sym_CARET] = ACTIONS(6722), - [anon_sym_POUND] = ACTIONS(113), - }, - [2783] = { - [sym_comment] = STATE(2783), - [anon_sym_export] = ACTIONS(6726), - [anon_sym_alias] = ACTIONS(6726), - [anon_sym_let] = ACTIONS(6726), - [anon_sym_let_DASHenv] = ACTIONS(6726), - [anon_sym_mut] = ACTIONS(6726), - [anon_sym_const] = ACTIONS(6726), - [anon_sym_SEMI] = ACTIONS(6726), - [sym_cmd_identifier] = ACTIONS(6726), - [anon_sym_LF] = ACTIONS(6728), - [anon_sym_def] = ACTIONS(6726), - [anon_sym_export_DASHenv] = ACTIONS(6726), - [anon_sym_extern] = ACTIONS(6726), - [anon_sym_module] = ACTIONS(6726), - [anon_sym_use] = ACTIONS(6726), - [anon_sym_LBRACK] = ACTIONS(6726), - [anon_sym_LPAREN] = ACTIONS(6726), - [anon_sym_RPAREN] = ACTIONS(6726), - [anon_sym_DOLLAR] = ACTIONS(6726), - [anon_sym_error] = ACTIONS(6726), - [anon_sym_DASH] = ACTIONS(6726), - [anon_sym_break] = ACTIONS(6726), - [anon_sym_continue] = ACTIONS(6726), - [anon_sym_for] = ACTIONS(6726), - [anon_sym_loop] = ACTIONS(6726), - [anon_sym_while] = ACTIONS(6726), - [anon_sym_do] = ACTIONS(6726), - [anon_sym_if] = ACTIONS(6726), - [anon_sym_match] = ACTIONS(6726), - [anon_sym_LBRACE] = ACTIONS(6726), - [anon_sym_RBRACE] = ACTIONS(6726), - [anon_sym_DOT_DOT] = ACTIONS(6726), - [anon_sym_try] = ACTIONS(6726), - [anon_sym_return] = ACTIONS(6726), - [anon_sym_source] = ACTIONS(6726), - [anon_sym_source_DASHenv] = ACTIONS(6726), - [anon_sym_register] = ACTIONS(6726), - [anon_sym_hide] = ACTIONS(6726), - [anon_sym_hide_DASHenv] = ACTIONS(6726), - [anon_sym_overlay] = ACTIONS(6726), - [anon_sym_where] = ACTIONS(6726), - [anon_sym_not] = ACTIONS(6726), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6726), - [anon_sym_DOT_DOT_LT] = ACTIONS(6726), - [anon_sym_null] = ACTIONS(6726), - [anon_sym_true] = ACTIONS(6726), - [anon_sym_false] = ACTIONS(6726), - [aux_sym__val_number_decimal_token1] = ACTIONS(6726), - [aux_sym__val_number_decimal_token2] = ACTIONS(6726), - [anon_sym_DOT2] = ACTIONS(6726), - [aux_sym__val_number_decimal_token3] = ACTIONS(6726), - [aux_sym__val_number_token1] = ACTIONS(6726), - [aux_sym__val_number_token2] = ACTIONS(6726), - [aux_sym__val_number_token3] = ACTIONS(6726), - [aux_sym__val_number_token4] = ACTIONS(6726), - [aux_sym__val_number_token5] = ACTIONS(6726), - [aux_sym__val_number_token6] = ACTIONS(6726), - [anon_sym_0b] = ACTIONS(6726), - [anon_sym_0o] = ACTIONS(6726), - [anon_sym_0x] = ACTIONS(6726), - [sym_val_date] = ACTIONS(6726), - [anon_sym_DQUOTE] = ACTIONS(6726), - [sym__str_single_quotes] = ACTIONS(6726), - [sym__str_back_ticks] = ACTIONS(6726), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6726), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6726), - [anon_sym_CARET] = ACTIONS(6726), - [anon_sym_POUND] = ACTIONS(113), - }, - [2784] = { - [sym_comment] = STATE(2784), - [anon_sym_export] = ACTIONS(6730), - [anon_sym_alias] = ACTIONS(6730), - [anon_sym_let] = ACTIONS(6730), - [anon_sym_let_DASHenv] = ACTIONS(6730), - [anon_sym_mut] = ACTIONS(6730), - [anon_sym_const] = ACTIONS(6730), - [anon_sym_SEMI] = ACTIONS(6730), - [sym_cmd_identifier] = ACTIONS(6730), - [anon_sym_LF] = ACTIONS(6732), - [anon_sym_def] = ACTIONS(6730), - [anon_sym_export_DASHenv] = ACTIONS(6730), - [anon_sym_extern] = ACTIONS(6730), - [anon_sym_module] = ACTIONS(6730), - [anon_sym_use] = ACTIONS(6730), - [anon_sym_LBRACK] = ACTIONS(6730), - [anon_sym_LPAREN] = ACTIONS(6730), - [anon_sym_RPAREN] = ACTIONS(6730), - [anon_sym_DOLLAR] = ACTIONS(6730), - [anon_sym_error] = ACTIONS(6730), - [anon_sym_DASH] = ACTIONS(6730), - [anon_sym_break] = ACTIONS(6730), - [anon_sym_continue] = ACTIONS(6730), - [anon_sym_for] = ACTIONS(6730), - [anon_sym_loop] = ACTIONS(6730), - [anon_sym_while] = ACTIONS(6730), - [anon_sym_do] = ACTIONS(6730), - [anon_sym_if] = ACTIONS(6730), - [anon_sym_match] = ACTIONS(6730), - [anon_sym_LBRACE] = ACTIONS(6730), - [anon_sym_RBRACE] = ACTIONS(6730), - [anon_sym_DOT_DOT] = ACTIONS(6730), - [anon_sym_try] = ACTIONS(6730), - [anon_sym_return] = ACTIONS(6730), - [anon_sym_source] = ACTIONS(6730), - [anon_sym_source_DASHenv] = ACTIONS(6730), - [anon_sym_register] = ACTIONS(6730), - [anon_sym_hide] = ACTIONS(6730), - [anon_sym_hide_DASHenv] = ACTIONS(6730), - [anon_sym_overlay] = ACTIONS(6730), - [anon_sym_where] = ACTIONS(6730), - [anon_sym_not] = ACTIONS(6730), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6730), - [anon_sym_DOT_DOT_LT] = ACTIONS(6730), - [anon_sym_null] = ACTIONS(6730), - [anon_sym_true] = ACTIONS(6730), - [anon_sym_false] = ACTIONS(6730), - [aux_sym__val_number_decimal_token1] = ACTIONS(6730), - [aux_sym__val_number_decimal_token2] = ACTIONS(6730), - [anon_sym_DOT2] = ACTIONS(6730), - [aux_sym__val_number_decimal_token3] = ACTIONS(6730), - [aux_sym__val_number_token1] = ACTIONS(6730), - [aux_sym__val_number_token2] = ACTIONS(6730), - [aux_sym__val_number_token3] = ACTIONS(6730), - [aux_sym__val_number_token4] = ACTIONS(6730), - [aux_sym__val_number_token5] = ACTIONS(6730), - [aux_sym__val_number_token6] = ACTIONS(6730), - [anon_sym_0b] = ACTIONS(6730), - [anon_sym_0o] = ACTIONS(6730), - [anon_sym_0x] = ACTIONS(6730), - [sym_val_date] = ACTIONS(6730), - [anon_sym_DQUOTE] = ACTIONS(6730), - [sym__str_single_quotes] = ACTIONS(6730), - [sym__str_back_ticks] = ACTIONS(6730), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6730), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6730), - [anon_sym_CARET] = ACTIONS(6730), - [anon_sym_POUND] = ACTIONS(113), - }, - [2785] = { - [sym_comment] = STATE(2785), - [anon_sym_export] = ACTIONS(6734), - [anon_sym_alias] = ACTIONS(6734), - [anon_sym_let] = ACTIONS(6734), - [anon_sym_let_DASHenv] = ACTIONS(6734), - [anon_sym_mut] = ACTIONS(6734), - [anon_sym_const] = ACTIONS(6734), - [anon_sym_SEMI] = ACTIONS(6734), - [sym_cmd_identifier] = ACTIONS(6734), - [anon_sym_LF] = ACTIONS(6736), - [anon_sym_def] = ACTIONS(6734), - [anon_sym_export_DASHenv] = ACTIONS(6734), - [anon_sym_extern] = ACTIONS(6734), - [anon_sym_module] = ACTIONS(6734), - [anon_sym_use] = ACTIONS(6734), - [anon_sym_LBRACK] = ACTIONS(6734), - [anon_sym_LPAREN] = ACTIONS(6734), - [anon_sym_RPAREN] = ACTIONS(6734), - [anon_sym_DOLLAR] = ACTIONS(6734), - [anon_sym_error] = ACTIONS(6734), - [anon_sym_DASH] = ACTIONS(6734), - [anon_sym_break] = ACTIONS(6734), - [anon_sym_continue] = ACTIONS(6734), - [anon_sym_for] = ACTIONS(6734), - [anon_sym_loop] = ACTIONS(6734), - [anon_sym_while] = ACTIONS(6734), - [anon_sym_do] = ACTIONS(6734), - [anon_sym_if] = ACTIONS(6734), - [anon_sym_match] = ACTIONS(6734), - [anon_sym_LBRACE] = ACTIONS(6734), - [anon_sym_RBRACE] = ACTIONS(6734), - [anon_sym_DOT_DOT] = ACTIONS(6734), - [anon_sym_try] = ACTIONS(6734), - [anon_sym_return] = ACTIONS(6734), - [anon_sym_source] = ACTIONS(6734), - [anon_sym_source_DASHenv] = ACTIONS(6734), - [anon_sym_register] = ACTIONS(6734), - [anon_sym_hide] = ACTIONS(6734), - [anon_sym_hide_DASHenv] = ACTIONS(6734), - [anon_sym_overlay] = ACTIONS(6734), - [anon_sym_where] = ACTIONS(6734), - [anon_sym_not] = ACTIONS(6734), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6734), - [anon_sym_DOT_DOT_LT] = ACTIONS(6734), - [anon_sym_null] = ACTIONS(6734), - [anon_sym_true] = ACTIONS(6734), - [anon_sym_false] = ACTIONS(6734), - [aux_sym__val_number_decimal_token1] = ACTIONS(6734), - [aux_sym__val_number_decimal_token2] = ACTIONS(6734), - [anon_sym_DOT2] = ACTIONS(6734), - [aux_sym__val_number_decimal_token3] = ACTIONS(6734), - [aux_sym__val_number_token1] = ACTIONS(6734), - [aux_sym__val_number_token2] = ACTIONS(6734), - [aux_sym__val_number_token3] = ACTIONS(6734), - [aux_sym__val_number_token4] = ACTIONS(6734), - [aux_sym__val_number_token5] = ACTIONS(6734), - [aux_sym__val_number_token6] = ACTIONS(6734), - [anon_sym_0b] = ACTIONS(6734), - [anon_sym_0o] = ACTIONS(6734), - [anon_sym_0x] = ACTIONS(6734), - [sym_val_date] = ACTIONS(6734), - [anon_sym_DQUOTE] = ACTIONS(6734), - [sym__str_single_quotes] = ACTIONS(6734), - [sym__str_back_ticks] = ACTIONS(6734), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6734), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6734), - [anon_sym_CARET] = ACTIONS(6734), - [anon_sym_POUND] = ACTIONS(113), - }, - [2786] = { - [sym_comment] = STATE(2786), - [anon_sym_export] = ACTIONS(1194), - [anon_sym_alias] = ACTIONS(1194), - [anon_sym_let] = ACTIONS(1194), - [anon_sym_let_DASHenv] = ACTIONS(1194), - [anon_sym_mut] = ACTIONS(1194), - [anon_sym_const] = ACTIONS(1194), - [anon_sym_SEMI] = ACTIONS(1194), - [sym_cmd_identifier] = ACTIONS(1194), - [anon_sym_LF] = ACTIONS(1196), - [anon_sym_def] = ACTIONS(1194), - [anon_sym_export_DASHenv] = ACTIONS(1194), - [anon_sym_extern] = ACTIONS(1194), - [anon_sym_module] = ACTIONS(1194), - [anon_sym_use] = ACTIONS(1194), - [anon_sym_LBRACK] = ACTIONS(1194), - [anon_sym_LPAREN] = ACTIONS(1194), - [anon_sym_RPAREN] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1194), - [anon_sym_error] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_break] = ACTIONS(1194), - [anon_sym_continue] = ACTIONS(1194), - [anon_sym_for] = ACTIONS(1194), - [anon_sym_loop] = ACTIONS(1194), - [anon_sym_while] = ACTIONS(1194), - [anon_sym_do] = ACTIONS(1194), - [anon_sym_if] = ACTIONS(1194), - [anon_sym_match] = ACTIONS(1194), - [anon_sym_LBRACE] = ACTIONS(1194), - [anon_sym_RBRACE] = ACTIONS(1194), - [anon_sym_DOT_DOT] = ACTIONS(1194), - [anon_sym_try] = ACTIONS(1194), - [anon_sym_return] = ACTIONS(1194), - [anon_sym_source] = ACTIONS(1194), - [anon_sym_source_DASHenv] = ACTIONS(1194), - [anon_sym_register] = ACTIONS(1194), - [anon_sym_hide] = ACTIONS(1194), - [anon_sym_hide_DASHenv] = ACTIONS(1194), - [anon_sym_overlay] = ACTIONS(1194), - [anon_sym_where] = ACTIONS(1194), - [anon_sym_not] = ACTIONS(1194), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1194), - [anon_sym_DOT_DOT_LT] = ACTIONS(1194), - [anon_sym_null] = ACTIONS(1194), - [anon_sym_true] = ACTIONS(1194), - [anon_sym_false] = ACTIONS(1194), - [aux_sym__val_number_decimal_token1] = ACTIONS(1194), - [aux_sym__val_number_decimal_token2] = ACTIONS(1194), - [anon_sym_DOT2] = ACTIONS(1194), - [aux_sym__val_number_decimal_token3] = ACTIONS(1194), - [aux_sym__val_number_token1] = ACTIONS(1194), - [aux_sym__val_number_token2] = ACTIONS(1194), - [aux_sym__val_number_token3] = ACTIONS(1194), - [aux_sym__val_number_token4] = ACTIONS(1194), - [aux_sym__val_number_token5] = ACTIONS(1194), - [aux_sym__val_number_token6] = ACTIONS(1194), - [anon_sym_0b] = ACTIONS(1194), - [anon_sym_0o] = ACTIONS(1194), - [anon_sym_0x] = ACTIONS(1194), - [sym_val_date] = ACTIONS(1194), - [anon_sym_DQUOTE] = ACTIONS(1194), - [sym__str_single_quotes] = ACTIONS(1194), - [sym__str_back_ticks] = ACTIONS(1194), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1194), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1194), - [anon_sym_CARET] = ACTIONS(1194), - [anon_sym_POUND] = ACTIONS(113), - }, - [2787] = { - [sym_comment] = STATE(2787), - [ts_builtin_sym_end] = ACTIONS(6222), - [anon_sym_export] = ACTIONS(6220), - [anon_sym_alias] = ACTIONS(6220), - [anon_sym_let] = ACTIONS(6220), - [anon_sym_let_DASHenv] = ACTIONS(6220), - [anon_sym_mut] = ACTIONS(6220), - [anon_sym_const] = ACTIONS(6220), - [anon_sym_SEMI] = ACTIONS(6220), - [sym_cmd_identifier] = ACTIONS(6220), - [anon_sym_LF] = ACTIONS(6222), - [anon_sym_def] = ACTIONS(6220), - [anon_sym_export_DASHenv] = ACTIONS(6220), - [anon_sym_extern] = ACTIONS(6220), - [anon_sym_module] = ACTIONS(6220), - [anon_sym_use] = ACTIONS(6220), - [anon_sym_LBRACK] = ACTIONS(6220), - [anon_sym_LPAREN] = ACTIONS(6220), - [anon_sym_PIPE] = ACTIONS(6220), - [anon_sym_DOLLAR] = ACTIONS(6220), - [anon_sym_error] = ACTIONS(6220), - [anon_sym_DASH] = ACTIONS(6220), - [anon_sym_break] = ACTIONS(6220), - [anon_sym_continue] = ACTIONS(6220), - [anon_sym_for] = ACTIONS(6220), - [anon_sym_loop] = ACTIONS(6220), - [anon_sym_while] = ACTIONS(6220), - [anon_sym_do] = ACTIONS(6220), - [anon_sym_if] = ACTIONS(6220), - [anon_sym_match] = ACTIONS(6220), - [anon_sym_LBRACE] = ACTIONS(6220), - [anon_sym_DOT_DOT] = ACTIONS(6220), - [anon_sym_try] = ACTIONS(6220), - [anon_sym_return] = ACTIONS(6220), - [anon_sym_source] = ACTIONS(6220), - [anon_sym_source_DASHenv] = ACTIONS(6220), - [anon_sym_register] = ACTIONS(6220), - [anon_sym_hide] = ACTIONS(6220), - [anon_sym_hide_DASHenv] = ACTIONS(6220), - [anon_sym_overlay] = ACTIONS(6220), - [anon_sym_where] = ACTIONS(6220), - [anon_sym_not] = ACTIONS(6220), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6220), - [anon_sym_DOT_DOT_LT] = ACTIONS(6220), - [anon_sym_null] = ACTIONS(6220), - [anon_sym_true] = ACTIONS(6220), - [anon_sym_false] = ACTIONS(6220), - [aux_sym__val_number_decimal_token1] = ACTIONS(6220), - [aux_sym__val_number_decimal_token2] = ACTIONS(6220), - [anon_sym_DOT2] = ACTIONS(6220), - [aux_sym__val_number_decimal_token3] = ACTIONS(6220), - [aux_sym__val_number_token1] = ACTIONS(6220), - [aux_sym__val_number_token2] = ACTIONS(6220), - [aux_sym__val_number_token3] = ACTIONS(6220), - [aux_sym__val_number_token4] = ACTIONS(6220), - [aux_sym__val_number_token5] = ACTIONS(6220), - [aux_sym__val_number_token6] = ACTIONS(6220), - [anon_sym_0b] = ACTIONS(6220), - [anon_sym_0o] = ACTIONS(6220), - [anon_sym_0x] = ACTIONS(6220), - [sym_val_date] = ACTIONS(6220), - [anon_sym_DQUOTE] = ACTIONS(6220), - [sym__str_single_quotes] = ACTIONS(6220), - [sym__str_back_ticks] = ACTIONS(6220), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6220), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6220), - [anon_sym_CARET] = ACTIONS(6220), - [anon_sym_POUND] = ACTIONS(113), - }, - [2788] = { - [sym_comment] = STATE(2788), - [anon_sym_export] = ACTIONS(6738), - [anon_sym_alias] = ACTIONS(6738), - [anon_sym_let] = ACTIONS(6738), - [anon_sym_let_DASHenv] = ACTIONS(6738), - [anon_sym_mut] = ACTIONS(6738), - [anon_sym_const] = ACTIONS(6738), - [anon_sym_SEMI] = ACTIONS(6738), - [sym_cmd_identifier] = ACTIONS(6738), - [anon_sym_LF] = ACTIONS(6740), - [anon_sym_def] = ACTIONS(6738), - [anon_sym_export_DASHenv] = ACTIONS(6738), - [anon_sym_extern] = ACTIONS(6738), - [anon_sym_module] = ACTIONS(6738), - [anon_sym_use] = ACTIONS(6738), - [anon_sym_LBRACK] = ACTIONS(6738), - [anon_sym_LPAREN] = ACTIONS(6738), - [anon_sym_RPAREN] = ACTIONS(6738), - [anon_sym_DOLLAR] = ACTIONS(6738), - [anon_sym_error] = ACTIONS(6738), - [anon_sym_DASH] = ACTIONS(6738), - [anon_sym_break] = ACTIONS(6738), - [anon_sym_continue] = ACTIONS(6738), - [anon_sym_for] = ACTIONS(6738), - [anon_sym_loop] = ACTIONS(6738), - [anon_sym_while] = ACTIONS(6738), - [anon_sym_do] = ACTIONS(6738), - [anon_sym_if] = ACTIONS(6738), - [anon_sym_match] = ACTIONS(6738), - [anon_sym_LBRACE] = ACTIONS(6738), - [anon_sym_RBRACE] = ACTIONS(6738), - [anon_sym_DOT_DOT] = ACTIONS(6738), - [anon_sym_try] = ACTIONS(6738), - [anon_sym_return] = ACTIONS(6738), - [anon_sym_source] = ACTIONS(6738), - [anon_sym_source_DASHenv] = ACTIONS(6738), - [anon_sym_register] = ACTIONS(6738), - [anon_sym_hide] = ACTIONS(6738), - [anon_sym_hide_DASHenv] = ACTIONS(6738), - [anon_sym_overlay] = ACTIONS(6738), - [anon_sym_where] = ACTIONS(6738), - [anon_sym_not] = ACTIONS(6738), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6738), - [anon_sym_DOT_DOT_LT] = ACTIONS(6738), - [anon_sym_null] = ACTIONS(6738), - [anon_sym_true] = ACTIONS(6738), - [anon_sym_false] = ACTIONS(6738), - [aux_sym__val_number_decimal_token1] = ACTIONS(6738), - [aux_sym__val_number_decimal_token2] = ACTIONS(6738), - [anon_sym_DOT2] = ACTIONS(6738), - [aux_sym__val_number_decimal_token3] = ACTIONS(6738), - [aux_sym__val_number_token1] = ACTIONS(6738), - [aux_sym__val_number_token2] = ACTIONS(6738), - [aux_sym__val_number_token3] = ACTIONS(6738), - [aux_sym__val_number_token4] = ACTIONS(6738), - [aux_sym__val_number_token5] = ACTIONS(6738), - [aux_sym__val_number_token6] = ACTIONS(6738), - [anon_sym_0b] = ACTIONS(6738), - [anon_sym_0o] = ACTIONS(6738), - [anon_sym_0x] = ACTIONS(6738), - [sym_val_date] = ACTIONS(6738), - [anon_sym_DQUOTE] = ACTIONS(6738), - [sym__str_single_quotes] = ACTIONS(6738), - [sym__str_back_ticks] = ACTIONS(6738), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6738), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6738), - [anon_sym_CARET] = ACTIONS(6738), - [anon_sym_POUND] = ACTIONS(113), - }, - [2789] = { - [sym_comment] = STATE(2789), - [anon_sym_export] = ACTIONS(6738), - [anon_sym_alias] = ACTIONS(6738), - [anon_sym_let] = ACTIONS(6738), - [anon_sym_let_DASHenv] = ACTIONS(6738), - [anon_sym_mut] = ACTIONS(6738), - [anon_sym_const] = ACTIONS(6738), - [anon_sym_SEMI] = ACTIONS(6738), - [sym_cmd_identifier] = ACTIONS(6738), - [anon_sym_LF] = ACTIONS(6740), - [anon_sym_def] = ACTIONS(6738), - [anon_sym_export_DASHenv] = ACTIONS(6738), - [anon_sym_extern] = ACTIONS(6738), - [anon_sym_module] = ACTIONS(6738), - [anon_sym_use] = ACTIONS(6738), - [anon_sym_LBRACK] = ACTIONS(6738), - [anon_sym_LPAREN] = ACTIONS(6738), - [anon_sym_RPAREN] = ACTIONS(6738), - [anon_sym_DOLLAR] = ACTIONS(6738), - [anon_sym_error] = ACTIONS(6738), - [anon_sym_DASH] = ACTIONS(6738), - [anon_sym_break] = ACTIONS(6738), - [anon_sym_continue] = ACTIONS(6738), - [anon_sym_for] = ACTIONS(6738), - [anon_sym_loop] = ACTIONS(6738), - [anon_sym_while] = ACTIONS(6738), - [anon_sym_do] = ACTIONS(6738), - [anon_sym_if] = ACTIONS(6738), - [anon_sym_match] = ACTIONS(6738), - [anon_sym_LBRACE] = ACTIONS(6738), - [anon_sym_RBRACE] = ACTIONS(6738), - [anon_sym_DOT_DOT] = ACTIONS(6738), - [anon_sym_try] = ACTIONS(6738), - [anon_sym_return] = ACTIONS(6738), - [anon_sym_source] = ACTIONS(6738), - [anon_sym_source_DASHenv] = ACTIONS(6738), - [anon_sym_register] = ACTIONS(6738), - [anon_sym_hide] = ACTIONS(6738), - [anon_sym_hide_DASHenv] = ACTIONS(6738), - [anon_sym_overlay] = ACTIONS(6738), - [anon_sym_where] = ACTIONS(6738), - [anon_sym_not] = ACTIONS(6738), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6738), - [anon_sym_DOT_DOT_LT] = ACTIONS(6738), - [anon_sym_null] = ACTIONS(6738), - [anon_sym_true] = ACTIONS(6738), - [anon_sym_false] = ACTIONS(6738), - [aux_sym__val_number_decimal_token1] = ACTIONS(6738), - [aux_sym__val_number_decimal_token2] = ACTIONS(6738), - [anon_sym_DOT2] = ACTIONS(6738), - [aux_sym__val_number_decimal_token3] = ACTIONS(6738), - [aux_sym__val_number_token1] = ACTIONS(6738), - [aux_sym__val_number_token2] = ACTIONS(6738), - [aux_sym__val_number_token3] = ACTIONS(6738), - [aux_sym__val_number_token4] = ACTIONS(6738), - [aux_sym__val_number_token5] = ACTIONS(6738), - [aux_sym__val_number_token6] = ACTIONS(6738), - [anon_sym_0b] = ACTIONS(6738), - [anon_sym_0o] = ACTIONS(6738), - [anon_sym_0x] = ACTIONS(6738), - [sym_val_date] = ACTIONS(6738), - [anon_sym_DQUOTE] = ACTIONS(6738), - [sym__str_single_quotes] = ACTIONS(6738), - [sym__str_back_ticks] = ACTIONS(6738), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6738), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6738), - [anon_sym_CARET] = ACTIONS(6738), - [anon_sym_POUND] = ACTIONS(113), - }, - [2790] = { - [sym_comment] = STATE(2790), - [anon_sym_export] = ACTIONS(6742), - [anon_sym_alias] = ACTIONS(6742), - [anon_sym_let] = ACTIONS(6742), - [anon_sym_let_DASHenv] = ACTIONS(6742), - [anon_sym_mut] = ACTIONS(6742), - [anon_sym_const] = ACTIONS(6742), - [anon_sym_SEMI] = ACTIONS(6742), - [sym_cmd_identifier] = ACTIONS(6742), - [anon_sym_LF] = ACTIONS(6744), - [anon_sym_def] = ACTIONS(6742), - [anon_sym_export_DASHenv] = ACTIONS(6742), - [anon_sym_extern] = ACTIONS(6742), - [anon_sym_module] = ACTIONS(6742), - [anon_sym_use] = ACTIONS(6742), - [anon_sym_LBRACK] = ACTIONS(6742), - [anon_sym_LPAREN] = ACTIONS(6742), - [anon_sym_RPAREN] = ACTIONS(6742), - [anon_sym_DOLLAR] = ACTIONS(6742), - [anon_sym_error] = ACTIONS(6742), - [anon_sym_DASH] = ACTIONS(6742), - [anon_sym_break] = ACTIONS(6742), - [anon_sym_continue] = ACTIONS(6742), - [anon_sym_for] = ACTIONS(6742), - [anon_sym_loop] = ACTIONS(6742), - [anon_sym_while] = ACTIONS(6742), - [anon_sym_do] = ACTIONS(6742), - [anon_sym_if] = ACTIONS(6742), - [anon_sym_match] = ACTIONS(6742), - [anon_sym_LBRACE] = ACTIONS(6742), - [anon_sym_RBRACE] = ACTIONS(6742), - [anon_sym_DOT_DOT] = ACTIONS(6742), - [anon_sym_try] = ACTIONS(6742), - [anon_sym_return] = ACTIONS(6742), - [anon_sym_source] = ACTIONS(6742), - [anon_sym_source_DASHenv] = ACTIONS(6742), - [anon_sym_register] = ACTIONS(6742), - [anon_sym_hide] = ACTIONS(6742), - [anon_sym_hide_DASHenv] = ACTIONS(6742), - [anon_sym_overlay] = ACTIONS(6742), - [anon_sym_where] = ACTIONS(6742), - [anon_sym_not] = ACTIONS(6742), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6742), - [anon_sym_DOT_DOT_LT] = ACTIONS(6742), - [anon_sym_null] = ACTIONS(6742), - [anon_sym_true] = ACTIONS(6742), - [anon_sym_false] = ACTIONS(6742), - [aux_sym__val_number_decimal_token1] = ACTIONS(6742), - [aux_sym__val_number_decimal_token2] = ACTIONS(6742), - [anon_sym_DOT2] = ACTIONS(6742), - [aux_sym__val_number_decimal_token3] = ACTIONS(6742), - [aux_sym__val_number_token1] = ACTIONS(6742), - [aux_sym__val_number_token2] = ACTIONS(6742), - [aux_sym__val_number_token3] = ACTIONS(6742), - [aux_sym__val_number_token4] = ACTIONS(6742), - [aux_sym__val_number_token5] = ACTIONS(6742), - [aux_sym__val_number_token6] = ACTIONS(6742), - [anon_sym_0b] = ACTIONS(6742), - [anon_sym_0o] = ACTIONS(6742), - [anon_sym_0x] = ACTIONS(6742), - [sym_val_date] = ACTIONS(6742), - [anon_sym_DQUOTE] = ACTIONS(6742), - [sym__str_single_quotes] = ACTIONS(6742), - [sym__str_back_ticks] = ACTIONS(6742), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6742), - [anon_sym_CARET] = ACTIONS(6742), - [anon_sym_POUND] = ACTIONS(113), - }, - [2791] = { - [sym_comment] = STATE(2791), - [anon_sym_export] = ACTIONS(6746), - [anon_sym_alias] = ACTIONS(6746), - [anon_sym_let] = ACTIONS(6746), - [anon_sym_let_DASHenv] = ACTIONS(6746), - [anon_sym_mut] = ACTIONS(6746), - [anon_sym_const] = ACTIONS(6746), - [anon_sym_SEMI] = ACTIONS(6746), - [sym_cmd_identifier] = ACTIONS(6746), - [anon_sym_LF] = ACTIONS(6748), - [anon_sym_def] = ACTIONS(6746), - [anon_sym_export_DASHenv] = ACTIONS(6746), - [anon_sym_extern] = ACTIONS(6746), - [anon_sym_module] = ACTIONS(6746), - [anon_sym_use] = ACTIONS(6746), - [anon_sym_LBRACK] = ACTIONS(6746), - [anon_sym_LPAREN] = ACTIONS(6746), - [anon_sym_RPAREN] = ACTIONS(6746), - [anon_sym_DOLLAR] = ACTIONS(6746), - [anon_sym_error] = ACTIONS(6746), - [anon_sym_DASH] = ACTIONS(6746), - [anon_sym_break] = ACTIONS(6746), - [anon_sym_continue] = ACTIONS(6746), - [anon_sym_for] = ACTIONS(6746), - [anon_sym_loop] = ACTIONS(6746), - [anon_sym_while] = ACTIONS(6746), - [anon_sym_do] = ACTIONS(6746), - [anon_sym_if] = ACTIONS(6746), - [anon_sym_match] = ACTIONS(6746), - [anon_sym_LBRACE] = ACTIONS(6746), - [anon_sym_RBRACE] = ACTIONS(6746), - [anon_sym_DOT_DOT] = ACTIONS(6746), - [anon_sym_try] = ACTIONS(6746), - [anon_sym_return] = ACTIONS(6746), - [anon_sym_source] = ACTIONS(6746), - [anon_sym_source_DASHenv] = ACTIONS(6746), - [anon_sym_register] = ACTIONS(6746), - [anon_sym_hide] = ACTIONS(6746), - [anon_sym_hide_DASHenv] = ACTIONS(6746), - [anon_sym_overlay] = ACTIONS(6746), - [anon_sym_where] = ACTIONS(6746), - [anon_sym_not] = ACTIONS(6746), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6746), - [anon_sym_DOT_DOT_LT] = ACTIONS(6746), - [anon_sym_null] = ACTIONS(6746), - [anon_sym_true] = ACTIONS(6746), - [anon_sym_false] = ACTIONS(6746), - [aux_sym__val_number_decimal_token1] = ACTIONS(6746), - [aux_sym__val_number_decimal_token2] = ACTIONS(6746), - [anon_sym_DOT2] = ACTIONS(6746), - [aux_sym__val_number_decimal_token3] = ACTIONS(6746), - [aux_sym__val_number_token1] = ACTIONS(6746), - [aux_sym__val_number_token2] = ACTIONS(6746), - [aux_sym__val_number_token3] = ACTIONS(6746), - [aux_sym__val_number_token4] = ACTIONS(6746), - [aux_sym__val_number_token5] = ACTIONS(6746), - [aux_sym__val_number_token6] = ACTIONS(6746), - [anon_sym_0b] = ACTIONS(6746), - [anon_sym_0o] = ACTIONS(6746), - [anon_sym_0x] = ACTIONS(6746), - [sym_val_date] = ACTIONS(6746), - [anon_sym_DQUOTE] = ACTIONS(6746), - [sym__str_single_quotes] = ACTIONS(6746), - [sym__str_back_ticks] = ACTIONS(6746), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6746), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6746), - [anon_sym_CARET] = ACTIONS(6746), - [anon_sym_POUND] = ACTIONS(113), - }, - [2792] = { - [sym_comment] = STATE(2792), - [ts_builtin_sym_end] = ACTIONS(1296), - [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), - [anon_sym_SEMI] = ACTIONS(1294), - [sym_cmd_identifier] = ACTIONS(1294), - [anon_sym_LF] = 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(1294), - [anon_sym_LPAREN] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_error] = ACTIONS(1294), - [anon_sym_DASH] = 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(1294), - [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_register] = ACTIONS(1294), - [anon_sym_hide] = ACTIONS(1294), - [anon_sym_hide_DASHenv] = ACTIONS(1294), - [anon_sym_overlay] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_where] = ACTIONS(1294), - [anon_sym_not] = ACTIONS(1294), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1294), - [anon_sym_DOT_DOT_LT] = ACTIONS(1294), - [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(1294), - [anon_sym_DOT2] = ACTIONS(1294), - [aux_sym__val_number_decimal_token3] = ACTIONS(1294), - [aux_sym__val_number_token1] = ACTIONS(1294), - [aux_sym__val_number_token2] = ACTIONS(1294), - [aux_sym__val_number_token3] = ACTIONS(1294), - [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(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym__str_single_quotes] = ACTIONS(1294), - [sym__str_back_ticks] = ACTIONS(1294), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1294), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1294), - [anon_sym_CARET] = ACTIONS(1294), - [anon_sym_POUND] = ACTIONS(113), - }, - [2793] = { - [sym_comment] = STATE(2793), - [ts_builtin_sym_end] = ACTIONS(1408), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_alias] = ACTIONS(1406), - [anon_sym_let] = ACTIONS(1406), - [anon_sym_let_DASHenv] = ACTIONS(1406), - [anon_sym_mut] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_SEMI] = ACTIONS(1406), - [sym_cmd_identifier] = ACTIONS(1406), - [anon_sym_LF] = ACTIONS(1408), - [anon_sym_def] = ACTIONS(1406), - [anon_sym_export_DASHenv] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_use] = ACTIONS(1406), - [anon_sym_LBRACK] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1406), - [anon_sym_DOLLAR] = ACTIONS(1406), - [anon_sym_error] = ACTIONS(1406), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_loop] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_match] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_DOT_DOT] = ACTIONS(1406), - [anon_sym_try] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_source] = ACTIONS(1406), - [anon_sym_source_DASHenv] = ACTIONS(1406), - [anon_sym_register] = ACTIONS(1406), - [anon_sym_hide] = ACTIONS(1406), - [anon_sym_hide_DASHenv] = ACTIONS(1406), - [anon_sym_overlay] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1406), - [anon_sym_where] = ACTIONS(1406), - [anon_sym_not] = ACTIONS(1406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1406), - [anon_sym_DOT_DOT_LT] = ACTIONS(1406), - [anon_sym_null] = ACTIONS(1406), - [anon_sym_true] = ACTIONS(1406), - [anon_sym_false] = ACTIONS(1406), - [aux_sym__val_number_decimal_token1] = ACTIONS(1406), - [aux_sym__val_number_decimal_token2] = ACTIONS(1406), - [anon_sym_DOT2] = ACTIONS(1406), - [aux_sym__val_number_decimal_token3] = ACTIONS(1406), - [aux_sym__val_number_token1] = ACTIONS(1406), - [aux_sym__val_number_token2] = ACTIONS(1406), - [aux_sym__val_number_token3] = ACTIONS(1406), - [aux_sym__val_number_token4] = ACTIONS(1406), - [aux_sym__val_number_token5] = ACTIONS(1406), - [aux_sym__val_number_token6] = ACTIONS(1406), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1406), - [anon_sym_0x] = ACTIONS(1406), - [sym_val_date] = ACTIONS(1406), - [anon_sym_DQUOTE] = ACTIONS(1406), - [sym__str_single_quotes] = ACTIONS(1406), - [sym__str_back_ticks] = ACTIONS(1406), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1406), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1406), - [anon_sym_CARET] = ACTIONS(1406), - [anon_sym_POUND] = ACTIONS(113), - }, - [2794] = { - [sym_cell_path] = STATE(3083), - [sym_path] = STATE(2693), - [sym_comment] = STATE(2794), - [ts_builtin_sym_end] = ACTIONS(1188), - [anon_sym_SEMI] = ACTIONS(1186), - [anon_sym_LF] = ACTIONS(1188), - [anon_sym_LBRACK] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(1186), - [anon_sym_PIPE] = ACTIONS(1186), - [anon_sym_DOLLAR] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_DASH_DASH] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_in] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_DOT_DOT] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_STAR_STAR] = ACTIONS(1186), - [anon_sym_PLUS_PLUS] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_mod] = ACTIONS(1186), - [anon_sym_SLASH_SLASH] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_bit_DASHshl] = ACTIONS(1186), - [anon_sym_bit_DASHshr] = ACTIONS(1186), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_LT2] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1186), - [anon_sym_GT_EQ] = ACTIONS(1186), - [anon_sym_not_DASHin] = ACTIONS(1186), - [anon_sym_starts_DASHwith] = ACTIONS(1186), - [anon_sym_ends_DASHwith] = ACTIONS(1186), - [anon_sym_EQ_TILDE] = ACTIONS(1186), - [anon_sym_BANG_TILDE] = ACTIONS(1186), - [anon_sym_bit_DASHand] = ACTIONS(1186), - [anon_sym_bit_DASHxor] = ACTIONS(1186), - [anon_sym_bit_DASHor] = ACTIONS(1186), - [anon_sym_and] = ACTIONS(1186), - [anon_sym_xor] = ACTIONS(1186), - [anon_sym_or] = ACTIONS(1186), - [anon_sym_not] = ACTIONS(1186), - [anon_sym_DOT] = ACTIONS(6363), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1186), - [anon_sym_DOT_DOT_LT] = ACTIONS(1186), - [anon_sym_null] = ACTIONS(1186), - [anon_sym_true] = ACTIONS(1186), - [anon_sym_false] = ACTIONS(1186), - [aux_sym__val_number_decimal_token1] = ACTIONS(1186), - [aux_sym__val_number_decimal_token2] = ACTIONS(1186), - [anon_sym_DOT2] = ACTIONS(1186), - [aux_sym__val_number_decimal_token3] = ACTIONS(1186), - [aux_sym__val_number_token1] = ACTIONS(1186), - [aux_sym__val_number_token2] = ACTIONS(1186), - [aux_sym__val_number_token3] = ACTIONS(1186), - [aux_sym__val_number_token4] = ACTIONS(1186), - [aux_sym__val_number_token5] = ACTIONS(1186), - [aux_sym__val_number_token6] = ACTIONS(1186), - [anon_sym_0b] = ACTIONS(1186), - [anon_sym_0o] = ACTIONS(1186), - [anon_sym_0x] = ACTIONS(1186), - [sym_val_date] = ACTIONS(1186), - [anon_sym_DQUOTE] = ACTIONS(1186), - [sym__str_single_quotes] = ACTIONS(1186), - [sym__str_back_ticks] = ACTIONS(1186), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1186), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1186), - [anon_sym_POUND] = ACTIONS(113), - }, - [2795] = { - [sym_comment] = STATE(2795), - [anon_sym_export] = ACTIONS(6750), - [anon_sym_alias] = ACTIONS(6750), - [anon_sym_let] = ACTIONS(6750), - [anon_sym_let_DASHenv] = ACTIONS(6750), - [anon_sym_mut] = ACTIONS(6750), - [anon_sym_const] = ACTIONS(6750), - [anon_sym_SEMI] = ACTIONS(6750), - [sym_cmd_identifier] = ACTIONS(6750), - [anon_sym_LF] = ACTIONS(6752), - [anon_sym_def] = ACTIONS(6750), - [anon_sym_export_DASHenv] = ACTIONS(6750), - [anon_sym_extern] = ACTIONS(6750), - [anon_sym_module] = ACTIONS(6750), - [anon_sym_use] = ACTIONS(6750), - [anon_sym_LBRACK] = ACTIONS(6750), - [anon_sym_LPAREN] = ACTIONS(6750), - [anon_sym_RPAREN] = ACTIONS(6750), - [anon_sym_DOLLAR] = ACTIONS(6750), - [anon_sym_error] = ACTIONS(6750), - [anon_sym_DASH] = ACTIONS(6750), - [anon_sym_break] = ACTIONS(6750), - [anon_sym_continue] = ACTIONS(6750), - [anon_sym_for] = ACTIONS(6750), - [anon_sym_loop] = ACTIONS(6750), - [anon_sym_while] = ACTIONS(6750), - [anon_sym_do] = ACTIONS(6750), - [anon_sym_if] = ACTIONS(6750), - [anon_sym_match] = ACTIONS(6750), - [anon_sym_LBRACE] = ACTIONS(6750), - [anon_sym_RBRACE] = ACTIONS(6750), - [anon_sym_DOT_DOT] = ACTIONS(6750), - [anon_sym_try] = ACTIONS(6750), - [anon_sym_return] = ACTIONS(6750), - [anon_sym_source] = ACTIONS(6750), - [anon_sym_source_DASHenv] = ACTIONS(6750), - [anon_sym_register] = ACTIONS(6750), - [anon_sym_hide] = ACTIONS(6750), - [anon_sym_hide_DASHenv] = ACTIONS(6750), - [anon_sym_overlay] = ACTIONS(6750), - [anon_sym_where] = ACTIONS(6750), - [anon_sym_not] = ACTIONS(6750), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6750), - [anon_sym_DOT_DOT_LT] = ACTIONS(6750), - [anon_sym_null] = ACTIONS(6750), - [anon_sym_true] = ACTIONS(6750), - [anon_sym_false] = ACTIONS(6750), - [aux_sym__val_number_decimal_token1] = ACTIONS(6750), - [aux_sym__val_number_decimal_token2] = ACTIONS(6750), - [anon_sym_DOT2] = ACTIONS(6750), - [aux_sym__val_number_decimal_token3] = ACTIONS(6750), - [aux_sym__val_number_token1] = ACTIONS(6750), - [aux_sym__val_number_token2] = ACTIONS(6750), - [aux_sym__val_number_token3] = ACTIONS(6750), - [aux_sym__val_number_token4] = ACTIONS(6750), - [aux_sym__val_number_token5] = ACTIONS(6750), - [aux_sym__val_number_token6] = ACTIONS(6750), - [anon_sym_0b] = ACTIONS(6750), - [anon_sym_0o] = ACTIONS(6750), - [anon_sym_0x] = ACTIONS(6750), - [sym_val_date] = ACTIONS(6750), - [anon_sym_DQUOTE] = ACTIONS(6750), - [sym__str_single_quotes] = ACTIONS(6750), - [sym__str_back_ticks] = ACTIONS(6750), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6750), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6750), - [anon_sym_CARET] = ACTIONS(6750), - [anon_sym_POUND] = ACTIONS(113), - }, - [2796] = { - [sym_comment] = STATE(2796), - [anon_sym_export] = ACTIONS(6754), - [anon_sym_alias] = ACTIONS(6754), - [anon_sym_let] = ACTIONS(6754), - [anon_sym_let_DASHenv] = ACTIONS(6754), - [anon_sym_mut] = ACTIONS(6754), - [anon_sym_const] = ACTIONS(6754), - [anon_sym_SEMI] = ACTIONS(6754), - [sym_cmd_identifier] = ACTIONS(6754), - [anon_sym_LF] = ACTIONS(6756), - [anon_sym_def] = ACTIONS(6754), - [anon_sym_export_DASHenv] = ACTIONS(6754), - [anon_sym_extern] = ACTIONS(6754), - [anon_sym_module] = ACTIONS(6754), - [anon_sym_use] = ACTIONS(6754), - [anon_sym_LBRACK] = ACTIONS(6754), - [anon_sym_LPAREN] = ACTIONS(6754), - [anon_sym_RPAREN] = ACTIONS(6754), - [anon_sym_DOLLAR] = ACTIONS(6754), - [anon_sym_error] = ACTIONS(6754), - [anon_sym_DASH] = ACTIONS(6754), - [anon_sym_break] = ACTIONS(6754), - [anon_sym_continue] = ACTIONS(6754), - [anon_sym_for] = ACTIONS(6754), - [anon_sym_loop] = ACTIONS(6754), - [anon_sym_while] = ACTIONS(6754), - [anon_sym_do] = ACTIONS(6754), - [anon_sym_if] = ACTIONS(6754), - [anon_sym_match] = ACTIONS(6754), - [anon_sym_LBRACE] = ACTIONS(6754), - [anon_sym_RBRACE] = ACTIONS(6754), - [anon_sym_DOT_DOT] = ACTIONS(6754), - [anon_sym_try] = ACTIONS(6754), - [anon_sym_return] = ACTIONS(6754), - [anon_sym_source] = ACTIONS(6754), - [anon_sym_source_DASHenv] = ACTIONS(6754), - [anon_sym_register] = ACTIONS(6754), - [anon_sym_hide] = ACTIONS(6754), - [anon_sym_hide_DASHenv] = ACTIONS(6754), - [anon_sym_overlay] = ACTIONS(6754), - [anon_sym_where] = ACTIONS(6754), - [anon_sym_not] = ACTIONS(6754), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6754), - [anon_sym_DOT_DOT_LT] = ACTIONS(6754), - [anon_sym_null] = ACTIONS(6754), - [anon_sym_true] = ACTIONS(6754), - [anon_sym_false] = ACTIONS(6754), - [aux_sym__val_number_decimal_token1] = ACTIONS(6754), - [aux_sym__val_number_decimal_token2] = ACTIONS(6754), - [anon_sym_DOT2] = ACTIONS(6754), - [aux_sym__val_number_decimal_token3] = ACTIONS(6754), - [aux_sym__val_number_token1] = ACTIONS(6754), - [aux_sym__val_number_token2] = ACTIONS(6754), - [aux_sym__val_number_token3] = ACTIONS(6754), - [aux_sym__val_number_token4] = ACTIONS(6754), - [aux_sym__val_number_token5] = ACTIONS(6754), - [aux_sym__val_number_token6] = ACTIONS(6754), - [anon_sym_0b] = ACTIONS(6754), - [anon_sym_0o] = ACTIONS(6754), - [anon_sym_0x] = ACTIONS(6754), - [sym_val_date] = ACTIONS(6754), - [anon_sym_DQUOTE] = ACTIONS(6754), - [sym__str_single_quotes] = ACTIONS(6754), - [sym__str_back_ticks] = ACTIONS(6754), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6754), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6754), - [anon_sym_CARET] = ACTIONS(6754), - [anon_sym_POUND] = ACTIONS(113), - }, - [2797] = { - [sym_comment] = STATE(2797), - [ts_builtin_sym_end] = ACTIONS(1296), - [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), - [anon_sym_SEMI] = ACTIONS(1294), - [sym_cmd_identifier] = ACTIONS(1294), - [anon_sym_LF] = 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(1294), - [anon_sym_LPAREN] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_error] = ACTIONS(1294), - [anon_sym_DASH] = 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(1294), - [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_register] = ACTIONS(1294), - [anon_sym_hide] = ACTIONS(1294), - [anon_sym_hide_DASHenv] = ACTIONS(1294), - [anon_sym_overlay] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_where] = ACTIONS(1294), - [anon_sym_not] = ACTIONS(1294), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1294), - [anon_sym_DOT_DOT_LT] = ACTIONS(1294), - [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(1294), - [anon_sym_DOT2] = ACTIONS(1294), - [aux_sym__val_number_decimal_token3] = ACTIONS(1294), - [aux_sym__val_number_token1] = ACTIONS(1294), - [aux_sym__val_number_token2] = ACTIONS(1294), - [aux_sym__val_number_token3] = ACTIONS(1294), - [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(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym__str_single_quotes] = ACTIONS(1294), - [sym__str_back_ticks] = ACTIONS(1294), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1294), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1294), - [anon_sym_CARET] = ACTIONS(1294), - [anon_sym_POUND] = ACTIONS(113), - }, - [2798] = { - [sym_comment] = STATE(2798), - [ts_builtin_sym_end] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(1059), - [anon_sym_alias] = ACTIONS(1059), - [anon_sym_let] = ACTIONS(1059), - [anon_sym_let_DASHenv] = ACTIONS(1059), - [anon_sym_mut] = ACTIONS(1059), - [anon_sym_const] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [sym_cmd_identifier] = ACTIONS(1059), - [anon_sym_LF] = ACTIONS(1061), - [anon_sym_def] = ACTIONS(1059), - [anon_sym_export_DASHenv] = ACTIONS(1059), - [anon_sym_extern] = ACTIONS(1059), - [anon_sym_module] = ACTIONS(1059), - [anon_sym_use] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_error] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_break] = ACTIONS(1059), - [anon_sym_continue] = ACTIONS(1059), - [anon_sym_for] = ACTIONS(1059), - [anon_sym_loop] = ACTIONS(1059), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_do] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1059), - [anon_sym_match] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_try] = ACTIONS(1059), - [anon_sym_return] = ACTIONS(1059), - [anon_sym_source] = ACTIONS(1059), - [anon_sym_source_DASHenv] = ACTIONS(1059), - [anon_sym_register] = ACTIONS(1059), - [anon_sym_hide] = ACTIONS(1059), - [anon_sym_hide_DASHenv] = ACTIONS(1059), - [anon_sym_overlay] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(1059), - [anon_sym_not] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1059), - [anon_sym_DOT_DOT_LT] = ACTIONS(1059), - [anon_sym_null] = ACTIONS(1059), - [anon_sym_true] = ACTIONS(1059), - [anon_sym_false] = ACTIONS(1059), - [aux_sym__val_number_decimal_token1] = ACTIONS(1059), - [aux_sym__val_number_decimal_token2] = ACTIONS(1059), - [anon_sym_DOT2] = ACTIONS(1059), - [aux_sym__val_number_decimal_token3] = ACTIONS(1059), - [aux_sym__val_number_token1] = ACTIONS(1059), - [aux_sym__val_number_token2] = ACTIONS(1059), - [aux_sym__val_number_token3] = ACTIONS(1059), - [aux_sym__val_number_token4] = ACTIONS(1059), - [aux_sym__val_number_token5] = ACTIONS(1059), - [aux_sym__val_number_token6] = ACTIONS(1059), - [anon_sym_0b] = ACTIONS(1059), - [anon_sym_0o] = ACTIONS(1059), - [anon_sym_0x] = ACTIONS(1059), - [sym_val_date] = ACTIONS(1059), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym__str_single_quotes] = ACTIONS(1059), - [sym__str_back_ticks] = ACTIONS(1059), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1059), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1059), - [anon_sym_CARET] = ACTIONS(1059), - [anon_sym_POUND] = ACTIONS(113), - }, - [2799] = { - [sym_comment] = STATE(2799), - [ts_builtin_sym_end] = ACTIONS(6345), - [anon_sym_export] = ACTIONS(6343), - [anon_sym_alias] = ACTIONS(6343), - [anon_sym_let] = ACTIONS(6343), - [anon_sym_let_DASHenv] = ACTIONS(6343), - [anon_sym_mut] = ACTIONS(6343), - [anon_sym_const] = ACTIONS(6343), - [anon_sym_SEMI] = ACTIONS(6343), - [sym_cmd_identifier] = ACTIONS(6343), - [anon_sym_LF] = ACTIONS(6345), - [anon_sym_def] = ACTIONS(6343), - [anon_sym_export_DASHenv] = ACTIONS(6343), - [anon_sym_extern] = ACTIONS(6343), - [anon_sym_module] = ACTIONS(6343), - [anon_sym_use] = ACTIONS(6343), - [anon_sym_LBRACK] = ACTIONS(6343), - [anon_sym_LPAREN] = ACTIONS(6343), - [anon_sym_DOLLAR] = ACTIONS(6343), - [anon_sym_error] = ACTIONS(6343), - [anon_sym_DASH] = ACTIONS(6343), - [anon_sym_break] = ACTIONS(6343), - [anon_sym_continue] = ACTIONS(6343), - [anon_sym_for] = ACTIONS(6343), - [anon_sym_loop] = ACTIONS(6343), - [anon_sym_while] = ACTIONS(6343), - [anon_sym_do] = ACTIONS(6343), - [anon_sym_if] = ACTIONS(6343), - [anon_sym_match] = ACTIONS(6343), - [anon_sym_LBRACE] = ACTIONS(6343), - [anon_sym_DOT_DOT] = ACTIONS(6343), - [anon_sym_try] = ACTIONS(6343), - [anon_sym_return] = ACTIONS(6343), - [anon_sym_source] = ACTIONS(6343), - [anon_sym_source_DASHenv] = ACTIONS(6343), - [anon_sym_register] = ACTIONS(6343), - [anon_sym_hide] = ACTIONS(6343), - [anon_sym_hide_DASHenv] = ACTIONS(6343), - [anon_sym_overlay] = ACTIONS(6343), - [anon_sym_STAR] = ACTIONS(6343), - [anon_sym_where] = ACTIONS(6343), - [anon_sym_not] = ACTIONS(6343), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6343), - [anon_sym_DOT_DOT_LT] = ACTIONS(6343), - [anon_sym_null] = ACTIONS(6343), - [anon_sym_true] = ACTIONS(6343), - [anon_sym_false] = ACTIONS(6343), - [aux_sym__val_number_decimal_token1] = ACTIONS(6343), - [aux_sym__val_number_decimal_token2] = ACTIONS(6343), - [anon_sym_DOT2] = ACTIONS(6343), - [aux_sym__val_number_decimal_token3] = ACTIONS(6343), - [aux_sym__val_number_token1] = ACTIONS(6343), - [aux_sym__val_number_token2] = ACTIONS(6343), - [aux_sym__val_number_token3] = ACTIONS(6343), - [aux_sym__val_number_token4] = ACTIONS(6343), - [aux_sym__val_number_token5] = ACTIONS(6343), - [aux_sym__val_number_token6] = ACTIONS(6343), - [anon_sym_0b] = ACTIONS(6343), - [anon_sym_0o] = ACTIONS(6343), - [anon_sym_0x] = ACTIONS(6343), - [sym_val_date] = ACTIONS(6343), - [anon_sym_DQUOTE] = ACTIONS(6343), - [sym__str_single_quotes] = ACTIONS(6343), - [sym__str_back_ticks] = ACTIONS(6343), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6343), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6343), - [anon_sym_CARET] = ACTIONS(6343), - [anon_sym_POUND] = ACTIONS(113), - }, - [2800] = { - [sym_comment] = STATE(2800), - [ts_builtin_sym_end] = ACTIONS(6349), - [anon_sym_export] = ACTIONS(6347), - [anon_sym_alias] = ACTIONS(6347), - [anon_sym_let] = ACTIONS(6347), - [anon_sym_let_DASHenv] = ACTIONS(6347), - [anon_sym_mut] = ACTIONS(6347), - [anon_sym_const] = ACTIONS(6347), - [anon_sym_SEMI] = ACTIONS(6347), - [sym_cmd_identifier] = ACTIONS(6347), - [anon_sym_LF] = ACTIONS(6349), - [anon_sym_def] = ACTIONS(6347), - [anon_sym_export_DASHenv] = ACTIONS(6347), - [anon_sym_extern] = ACTIONS(6347), - [anon_sym_module] = ACTIONS(6347), - [anon_sym_use] = ACTIONS(6347), - [anon_sym_LBRACK] = ACTIONS(6347), - [anon_sym_LPAREN] = ACTIONS(6347), - [anon_sym_DOLLAR] = ACTIONS(6347), - [anon_sym_error] = ACTIONS(6347), - [anon_sym_DASH] = ACTIONS(6347), - [anon_sym_break] = ACTIONS(6347), - [anon_sym_continue] = ACTIONS(6347), - [anon_sym_for] = ACTIONS(6347), - [anon_sym_loop] = ACTIONS(6347), - [anon_sym_while] = ACTIONS(6347), - [anon_sym_do] = ACTIONS(6347), - [anon_sym_if] = ACTIONS(6347), - [anon_sym_match] = ACTIONS(6347), - [anon_sym_LBRACE] = ACTIONS(6347), - [anon_sym_DOT_DOT] = ACTIONS(6347), - [anon_sym_try] = ACTIONS(6347), - [anon_sym_return] = ACTIONS(6347), - [anon_sym_source] = ACTIONS(6347), - [anon_sym_source_DASHenv] = ACTIONS(6347), - [anon_sym_register] = ACTIONS(6347), - [anon_sym_hide] = ACTIONS(6347), - [anon_sym_hide_DASHenv] = ACTIONS(6347), - [anon_sym_overlay] = ACTIONS(6347), - [anon_sym_STAR] = ACTIONS(6347), - [anon_sym_where] = ACTIONS(6347), - [anon_sym_not] = ACTIONS(6347), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6347), - [anon_sym_DOT_DOT_LT] = ACTIONS(6347), - [anon_sym_null] = ACTIONS(6347), - [anon_sym_true] = ACTIONS(6347), - [anon_sym_false] = ACTIONS(6347), - [aux_sym__val_number_decimal_token1] = ACTIONS(6347), - [aux_sym__val_number_decimal_token2] = ACTIONS(6347), - [anon_sym_DOT2] = ACTIONS(6347), - [aux_sym__val_number_decimal_token3] = ACTIONS(6347), - [aux_sym__val_number_token1] = ACTIONS(6347), - [aux_sym__val_number_token2] = ACTIONS(6347), - [aux_sym__val_number_token3] = ACTIONS(6347), - [aux_sym__val_number_token4] = ACTIONS(6347), - [aux_sym__val_number_token5] = ACTIONS(6347), - [aux_sym__val_number_token6] = ACTIONS(6347), - [anon_sym_0b] = ACTIONS(6347), - [anon_sym_0o] = ACTIONS(6347), - [anon_sym_0x] = ACTIONS(6347), - [sym_val_date] = ACTIONS(6347), - [anon_sym_DQUOTE] = ACTIONS(6347), - [sym__str_single_quotes] = ACTIONS(6347), - [sym__str_back_ticks] = ACTIONS(6347), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6347), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6347), - [anon_sym_CARET] = ACTIONS(6347), - [anon_sym_POUND] = ACTIONS(113), - }, - [2801] = { - [sym_comment] = STATE(2801), - [ts_builtin_sym_end] = ACTIONS(1290), - [anon_sym_export] = ACTIONS(1243), - [anon_sym_alias] = ACTIONS(1243), - [anon_sym_let] = ACTIONS(1243), - [anon_sym_let_DASHenv] = ACTIONS(1243), - [anon_sym_mut] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1243), - [sym_cmd_identifier] = ACTIONS(1243), - [anon_sym_LF] = ACTIONS(1243), - [anon_sym_def] = ACTIONS(1243), - [anon_sym_export_DASHenv] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1243), - [anon_sym_module] = ACTIONS(1243), - [anon_sym_use] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_error] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_loop] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_match] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_try] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_source] = ACTIONS(1243), - [anon_sym_source_DASHenv] = ACTIONS(1243), - [anon_sym_register] = ACTIONS(1243), - [anon_sym_hide] = ACTIONS(1243), - [anon_sym_hide_DASHenv] = ACTIONS(1243), - [anon_sym_overlay] = ACTIONS(1243), - [anon_sym_where] = ACTIONS(1243), - [anon_sym_not] = ACTIONS(1243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1243), - [anon_sym_DOT_DOT_LT] = ACTIONS(1243), - [anon_sym_null] = ACTIONS(1243), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_decimal_token2] = ACTIONS(1243), - [anon_sym_DOT2] = ACTIONS(1243), - [aux_sym__val_number_decimal_token3] = ACTIONS(1243), - [aux_sym__val_number_token1] = ACTIONS(1243), - [aux_sym__val_number_token2] = ACTIONS(1243), - [aux_sym__val_number_token3] = ACTIONS(1243), - [aux_sym__val_number_token4] = ACTIONS(1243), - [aux_sym__val_number_token5] = ACTIONS(1243), - [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_0b] = ACTIONS(1243), - [anon_sym_0o] = ACTIONS(1243), - [anon_sym_0x] = ACTIONS(1243), - [sym_val_date] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym__str_single_quotes] = ACTIONS(1243), - [sym__str_back_ticks] = ACTIONS(1243), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1243), - [aux_sym__list_item_starts_with_sign_token1] = ACTIONS(6211), - [anon_sym_CARET] = ACTIONS(1243), - [anon_sym_POUND] = ACTIONS(113), - }, - [2802] = { - [sym_comment] = STATE(2802), - [ts_builtin_sym_end] = ACTIONS(1065), - [anon_sym_export] = ACTIONS(1063), - [anon_sym_alias] = ACTIONS(1063), - [anon_sym_let] = ACTIONS(1063), - [anon_sym_let_DASHenv] = ACTIONS(1063), - [anon_sym_mut] = ACTIONS(1063), - [anon_sym_const] = ACTIONS(1063), - [anon_sym_SEMI] = ACTIONS(1063), - [sym_cmd_identifier] = ACTIONS(1063), - [anon_sym_LF] = ACTIONS(1065), - [anon_sym_def] = ACTIONS(1063), - [anon_sym_export_DASHenv] = ACTIONS(1063), - [anon_sym_extern] = ACTIONS(1063), - [anon_sym_module] = ACTIONS(1063), - [anon_sym_use] = ACTIONS(1063), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_error] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_break] = ACTIONS(1063), - [anon_sym_continue] = ACTIONS(1063), - [anon_sym_for] = ACTIONS(1063), - [anon_sym_loop] = ACTIONS(1063), - [anon_sym_while] = ACTIONS(1063), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_if] = ACTIONS(1063), - [anon_sym_match] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1063), - [anon_sym_return] = ACTIONS(1063), - [anon_sym_source] = ACTIONS(1063), - [anon_sym_source_DASHenv] = ACTIONS(1063), - [anon_sym_register] = ACTIONS(1063), - [anon_sym_hide] = ACTIONS(1063), - [anon_sym_hide_DASHenv] = ACTIONS(1063), - [anon_sym_overlay] = ACTIONS(1063), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_where] = ACTIONS(1063), - [anon_sym_not] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1063), - [anon_sym_DOT_DOT_LT] = ACTIONS(1063), - [anon_sym_null] = ACTIONS(1063), - [anon_sym_true] = ACTIONS(1063), - [anon_sym_false] = ACTIONS(1063), - [aux_sym__val_number_decimal_token1] = ACTIONS(1063), - [aux_sym__val_number_decimal_token2] = ACTIONS(1063), - [anon_sym_DOT2] = ACTIONS(1063), - [aux_sym__val_number_decimal_token3] = ACTIONS(1063), - [aux_sym__val_number_token1] = ACTIONS(1063), - [aux_sym__val_number_token2] = ACTIONS(1063), - [aux_sym__val_number_token3] = ACTIONS(1063), - [aux_sym__val_number_token4] = ACTIONS(1063), - [aux_sym__val_number_token5] = ACTIONS(1063), - [aux_sym__val_number_token6] = ACTIONS(1063), - [anon_sym_0b] = ACTIONS(1063), - [anon_sym_0o] = ACTIONS(1063), - [anon_sym_0x] = ACTIONS(1063), - [sym_val_date] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [sym__str_single_quotes] = ACTIONS(1063), - [sym__str_back_ticks] = ACTIONS(1063), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1063), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1063), - [anon_sym_CARET] = ACTIONS(1063), - [anon_sym_POUND] = ACTIONS(113), - }, - [2803] = { - [sym_comment] = STATE(2803), - [anon_sym_export] = ACTIONS(5223), - [anon_sym_alias] = ACTIONS(5223), - [anon_sym_let] = ACTIONS(5223), - [anon_sym_let_DASHenv] = ACTIONS(5223), - [anon_sym_mut] = ACTIONS(5223), - [anon_sym_const] = ACTIONS(5223), - [anon_sym_SEMI] = ACTIONS(5223), - [sym_cmd_identifier] = ACTIONS(5223), - [anon_sym_LF] = ACTIONS(5225), - [anon_sym_def] = ACTIONS(5223), - [anon_sym_export_DASHenv] = ACTIONS(5223), - [anon_sym_extern] = ACTIONS(5223), - [anon_sym_module] = ACTIONS(5223), - [anon_sym_use] = ACTIONS(5223), - [anon_sym_LBRACK] = ACTIONS(5223), - [anon_sym_LPAREN] = ACTIONS(5223), - [anon_sym_RPAREN] = ACTIONS(5223), - [anon_sym_DOLLAR] = ACTIONS(5223), - [anon_sym_error] = ACTIONS(5223), - [anon_sym_DASH] = ACTIONS(5223), - [anon_sym_break] = ACTIONS(5223), - [anon_sym_continue] = ACTIONS(5223), - [anon_sym_for] = ACTIONS(5223), - [anon_sym_loop] = ACTIONS(5223), - [anon_sym_while] = ACTIONS(5223), - [anon_sym_do] = ACTIONS(5223), - [anon_sym_if] = ACTIONS(5223), - [anon_sym_match] = ACTIONS(5223), - [anon_sym_LBRACE] = ACTIONS(5223), - [anon_sym_RBRACE] = ACTIONS(5223), - [anon_sym_DOT_DOT] = ACTIONS(5223), - [anon_sym_try] = ACTIONS(5223), - [anon_sym_return] = ACTIONS(5223), - [anon_sym_source] = ACTIONS(5223), - [anon_sym_source_DASHenv] = ACTIONS(5223), - [anon_sym_register] = ACTIONS(5223), - [anon_sym_hide] = ACTIONS(5223), - [anon_sym_hide_DASHenv] = ACTIONS(5223), - [anon_sym_overlay] = ACTIONS(5223), - [anon_sym_where] = ACTIONS(5223), - [anon_sym_not] = ACTIONS(5223), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5223), - [anon_sym_DOT_DOT_LT] = ACTIONS(5223), - [anon_sym_null] = ACTIONS(5223), - [anon_sym_true] = ACTIONS(5223), - [anon_sym_false] = ACTIONS(5223), - [aux_sym__val_number_decimal_token1] = ACTIONS(5223), - [aux_sym__val_number_decimal_token2] = ACTIONS(5223), - [anon_sym_DOT2] = ACTIONS(5223), - [aux_sym__val_number_decimal_token3] = ACTIONS(5223), - [aux_sym__val_number_token1] = ACTIONS(5223), - [aux_sym__val_number_token2] = ACTIONS(5223), - [aux_sym__val_number_token3] = ACTIONS(5223), - [aux_sym__val_number_token4] = ACTIONS(5223), - [aux_sym__val_number_token5] = ACTIONS(5223), - [aux_sym__val_number_token6] = ACTIONS(5223), - [anon_sym_0b] = ACTIONS(5223), - [anon_sym_0o] = ACTIONS(5223), - [anon_sym_0x] = ACTIONS(5223), - [sym_val_date] = ACTIONS(5223), - [anon_sym_DQUOTE] = ACTIONS(5223), - [sym__str_single_quotes] = ACTIONS(5223), - [sym__str_back_ticks] = ACTIONS(5223), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5223), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5223), - [anon_sym_CARET] = ACTIONS(5223), - [anon_sym_POUND] = ACTIONS(113), - }, - [2804] = { - [sym_comment] = STATE(2804), - [anon_sym_LBRACK] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(961), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(961), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(961), - [anon_sym_SLASH_SLASH] = ACTIONS(961), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(961), - [anon_sym_bit_DASHshr] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(961), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_not_DASHin] = ACTIONS(961), - [anon_sym_starts_DASHwith] = ACTIONS(961), - [anon_sym_ends_DASHwith] = ACTIONS(961), - [anon_sym_EQ_TILDE] = ACTIONS(961), - [anon_sym_BANG_TILDE] = ACTIONS(961), - [anon_sym_bit_DASHand] = ACTIONS(961), - [anon_sym_bit_DASHxor] = ACTIONS(961), - [anon_sym_bit_DASHor] = ACTIONS(961), - [anon_sym_and] = ACTIONS(961), - [anon_sym_xor] = ACTIONS(961), - [anon_sym_or] = ACTIONS(961), - [anon_sym_not] = ACTIONS(959), - [anon_sym_DOT_DOT2] = ACTIONS(6758), - [anon_sym_DOT] = ACTIONS(6760), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_DOT_DOT_LT] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(6762), - [anon_sym_DOT_DOT_LT2] = ACTIONS(6762), - [anon_sym_null] = ACTIONS(961), - [anon_sym_true] = ACTIONS(961), - [anon_sym_false] = ACTIONS(961), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(961), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(961), - [aux_sym__val_number_token1] = ACTIONS(961), - [aux_sym__val_number_token2] = ACTIONS(961), - [aux_sym__val_number_token3] = ACTIONS(961), - [aux_sym__val_number_token4] = ACTIONS(961), - [aux_sym__val_number_token5] = ACTIONS(961), - [aux_sym__val_number_token6] = ACTIONS(961), - [anon_sym_0b] = ACTIONS(959), - [sym_filesize_unit] = ACTIONS(6764), - [sym_duration_unit] = ACTIONS(6766), - [anon_sym_0o] = ACTIONS(959), - [anon_sym_0x] = ACTIONS(959), - [sym_val_date] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(961), - [sym__str_single_quotes] = ACTIONS(961), - [sym__str_back_ticks] = ACTIONS(961), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(961), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(961), - [aux_sym_unquoted_token5] = ACTIONS(6768), - [anon_sym_POUND] = ACTIONS(3), - }, - [2805] = { - [sym_comment] = STATE(2805), - [anon_sym_LBRACK] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(952), - [anon_sym_DOLLAR] = ACTIONS(950), - [anon_sym_GT] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(950), - [anon_sym_in] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(952), - [anon_sym_DOT_DOT] = ACTIONS(950), - [anon_sym_STAR] = ACTIONS(950), - [anon_sym_STAR_STAR] = ACTIONS(952), - [anon_sym_PLUS_PLUS] = ACTIONS(952), - [anon_sym_SLASH] = ACTIONS(950), - [anon_sym_mod] = ACTIONS(952), - [anon_sym_SLASH_SLASH] = ACTIONS(952), - [anon_sym_PLUS] = ACTIONS(950), - [anon_sym_bit_DASHshl] = ACTIONS(952), - [anon_sym_bit_DASHshr] = ACTIONS(952), - [anon_sym_EQ_EQ] = ACTIONS(952), - [anon_sym_BANG_EQ] = ACTIONS(952), - [anon_sym_LT2] = ACTIONS(950), - [anon_sym_LT_EQ] = ACTIONS(952), - [anon_sym_GT_EQ] = ACTIONS(952), - [anon_sym_not_DASHin] = ACTIONS(952), - [anon_sym_starts_DASHwith] = ACTIONS(952), - [anon_sym_ends_DASHwith] = ACTIONS(952), - [anon_sym_EQ_TILDE] = ACTIONS(952), - [anon_sym_BANG_TILDE] = ACTIONS(952), - [anon_sym_bit_DASHand] = ACTIONS(952), - [anon_sym_bit_DASHxor] = ACTIONS(952), - [anon_sym_bit_DASHor] = ACTIONS(952), - [anon_sym_and] = ACTIONS(952), - [anon_sym_xor] = ACTIONS(952), - [anon_sym_or] = ACTIONS(952), - [anon_sym_not] = ACTIONS(950), - [anon_sym_DOT_DOT2] = ACTIONS(950), - [anon_sym_DOT] = 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), - [anon_sym_DOT2] = ACTIONS(950), - [aux_sym__val_number_decimal_token3] = 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), - [sym_filesize_unit] = ACTIONS(950), - [sym_duration_unit] = ACTIONS(952), - [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), - [aux_sym_unquoted_token5] = ACTIONS(950), - [anon_sym_POUND] = ACTIONS(3), - }, - [2806] = { - [sym_comment] = STATE(2806), - [ts_builtin_sym_end] = ACTIONS(6643), - [anon_sym_export] = ACTIONS(6641), - [anon_sym_alias] = ACTIONS(6641), - [anon_sym_let] = ACTIONS(6641), - [anon_sym_let_DASHenv] = ACTIONS(6641), - [anon_sym_mut] = ACTIONS(6641), - [anon_sym_const] = ACTIONS(6641), - [anon_sym_SEMI] = ACTIONS(6641), - [sym_cmd_identifier] = ACTIONS(6641), - [anon_sym_LF] = ACTIONS(6643), - [anon_sym_def] = ACTIONS(6641), - [anon_sym_export_DASHenv] = ACTIONS(6641), - [anon_sym_extern] = ACTIONS(6641), - [anon_sym_module] = ACTIONS(6641), - [anon_sym_use] = ACTIONS(6641), - [anon_sym_LBRACK] = ACTIONS(6641), - [anon_sym_LPAREN] = ACTIONS(6641), - [anon_sym_DOLLAR] = ACTIONS(6641), - [anon_sym_error] = ACTIONS(6641), - [anon_sym_DASH] = ACTIONS(6641), - [anon_sym_break] = ACTIONS(6641), - [anon_sym_continue] = ACTIONS(6641), - [anon_sym_for] = ACTIONS(6641), - [anon_sym_loop] = ACTIONS(6641), - [anon_sym_while] = ACTIONS(6641), - [anon_sym_do] = ACTIONS(6641), - [anon_sym_if] = ACTIONS(6641), - [anon_sym_match] = ACTIONS(6641), - [anon_sym_LBRACE] = ACTIONS(6641), - [anon_sym_DOT_DOT] = ACTIONS(6641), - [anon_sym_try] = ACTIONS(6641), - [anon_sym_return] = ACTIONS(6641), - [anon_sym_source] = ACTIONS(6641), - [anon_sym_source_DASHenv] = ACTIONS(6641), - [anon_sym_register] = ACTIONS(6641), - [anon_sym_hide] = ACTIONS(6641), - [anon_sym_hide_DASHenv] = ACTIONS(6641), - [anon_sym_overlay] = ACTIONS(6641), - [anon_sym_where] = ACTIONS(6641), - [anon_sym_not] = ACTIONS(6641), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6641), - [anon_sym_DOT_DOT_LT] = ACTIONS(6641), - [anon_sym_null] = ACTIONS(6641), - [anon_sym_true] = ACTIONS(6641), - [anon_sym_false] = ACTIONS(6641), - [aux_sym__val_number_decimal_token1] = ACTIONS(6641), - [aux_sym__val_number_decimal_token2] = ACTIONS(6641), - [anon_sym_DOT2] = ACTIONS(6641), - [aux_sym__val_number_decimal_token3] = ACTIONS(6641), - [aux_sym__val_number_token1] = ACTIONS(6641), - [aux_sym__val_number_token2] = ACTIONS(6641), - [aux_sym__val_number_token3] = ACTIONS(6641), - [aux_sym__val_number_token4] = ACTIONS(6641), - [aux_sym__val_number_token5] = ACTIONS(6641), - [aux_sym__val_number_token6] = ACTIONS(6641), - [anon_sym_0b] = ACTIONS(6641), - [anon_sym_0o] = ACTIONS(6641), - [anon_sym_0x] = ACTIONS(6641), - [sym_val_date] = ACTIONS(6641), - [anon_sym_DQUOTE] = ACTIONS(6641), - [sym__str_single_quotes] = ACTIONS(6641), - [sym__str_back_ticks] = ACTIONS(6641), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6641), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6641), - [anon_sym_CARET] = ACTIONS(6641), - [anon_sym_POUND] = ACTIONS(113), - }, - [2807] = { - [sym_comment] = STATE(2807), - [ts_builtin_sym_end] = ACTIONS(2439), - [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), - [anon_sym_SEMI] = ACTIONS(2437), - [sym_cmd_identifier] = ACTIONS(2437), - [anon_sym_LF] = 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_LBRACK] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_not] = ACTIONS(2437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [anon_sym_DOT2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = 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_0b] = ACTIONS(2437), - [anon_sym_0o] = ACTIONS(2437), - [anon_sym_0x] = ACTIONS(2437), - [sym_val_date] = 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_CARET] = ACTIONS(2437), - [anon_sym_POUND] = ACTIONS(113), - }, - [2808] = { - [sym__expr_parenthesized_immediate] = STATE(3365), - [sym__immediate_decimal] = STATE(3381), - [sym_val_variable] = STATE(3365), - [sym__var] = STATE(3143), - [sym_comment] = STATE(2808), - [anon_sym_export] = ACTIONS(1920), - [anon_sym_alias] = ACTIONS(1920), - [anon_sym_let] = ACTIONS(1920), - [anon_sym_let_DASHenv] = ACTIONS(1920), - [anon_sym_mut] = ACTIONS(1920), - [anon_sym_const] = ACTIONS(1920), - [sym_cmd_identifier] = ACTIONS(1920), - [anon_sym_def] = ACTIONS(1920), - [anon_sym_export_DASHenv] = ACTIONS(1920), - [anon_sym_extern] = ACTIONS(1920), - [anon_sym_module] = ACTIONS(1920), - [anon_sym_use] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1920), - [anon_sym_DOLLAR] = ACTIONS(6770), - [anon_sym_error] = ACTIONS(1920), - [anon_sym_list] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1920), - [anon_sym_break] = ACTIONS(1920), - [anon_sym_continue] = ACTIONS(1920), - [anon_sym_for] = ACTIONS(1920), - [anon_sym_in] = ACTIONS(1920), - [anon_sym_loop] = ACTIONS(1920), - [anon_sym_make] = ACTIONS(1920), - [anon_sym_while] = ACTIONS(1920), - [anon_sym_do] = ACTIONS(1920), - [anon_sym_if] = ACTIONS(1920), - [anon_sym_else] = ACTIONS(1920), - [anon_sym_match] = ACTIONS(1920), - [anon_sym_RBRACE] = ACTIONS(1920), - [anon_sym_try] = ACTIONS(1920), - [anon_sym_catch] = ACTIONS(1920), - [anon_sym_return] = ACTIONS(1920), - [anon_sym_source] = ACTIONS(1920), - [anon_sym_source_DASHenv] = ACTIONS(1920), - [anon_sym_register] = ACTIONS(1920), - [anon_sym_hide] = ACTIONS(1920), - [anon_sym_hide_DASHenv] = ACTIONS(1920), - [anon_sym_overlay] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1920), - [anon_sym_as] = ACTIONS(1920), - [anon_sym_PLUS] = ACTIONS(1920), - [anon_sym_LPAREN2] = ACTIONS(6772), - [anon_sym_DOT] = ACTIONS(6774), - [aux_sym__immediate_decimal_token1] = ACTIONS(6776), - [aux_sym__immediate_decimal_token3] = ACTIONS(6776), - [aux_sym__immediate_decimal_token4] = ACTIONS(6778), - [aux_sym__val_number_decimal_token1] = ACTIONS(1920), - [aux_sym__val_number_decimal_token2] = ACTIONS(1920), - [anon_sym_DOT2] = ACTIONS(1920), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_token1] = ACTIONS(1920), - [aux_sym__val_number_token2] = ACTIONS(1920), - [aux_sym__val_number_token3] = ACTIONS(1920), - [aux_sym__val_number_token4] = ACTIONS(1920), - [aux_sym__val_number_token5] = ACTIONS(1920), - [aux_sym__val_number_token6] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym__str_single_quotes] = ACTIONS(1920), - [sym__str_back_ticks] = ACTIONS(1920), - [sym__entry_separator] = ACTIONS(1922), - [aux_sym__record_key_token2] = ACTIONS(1920), - [anon_sym_POUND] = ACTIONS(113), - }, - [2809] = { - [sym__expr_parenthesized_immediate] = STATE(3544), - [sym__immediate_decimal] = STATE(3530), - [sym_val_variable] = STATE(3544), - [sym__var] = STATE(3368), - [sym_comment] = STATE(2809), - [anon_sym_export] = ACTIONS(2002), - [anon_sym_alias] = ACTIONS(2002), - [anon_sym_let] = ACTIONS(2002), - [anon_sym_let_DASHenv] = ACTIONS(2002), - [anon_sym_mut] = ACTIONS(2002), - [anon_sym_const] = ACTIONS(2002), - [sym_cmd_identifier] = ACTIONS(2002), - [anon_sym_def] = ACTIONS(2002), - [anon_sym_export_DASHenv] = ACTIONS(2002), - [anon_sym_extern] = ACTIONS(2002), - [anon_sym_module] = ACTIONS(2002), - [anon_sym_use] = ACTIONS(2002), - [anon_sym_LPAREN] = ACTIONS(2002), - [anon_sym_DOLLAR] = ACTIONS(6780), - [anon_sym_error] = ACTIONS(2002), - [anon_sym_list] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2002), - [anon_sym_break] = ACTIONS(2002), - [anon_sym_continue] = ACTIONS(2002), - [anon_sym_for] = ACTIONS(2002), - [anon_sym_in] = ACTIONS(2002), - [anon_sym_loop] = ACTIONS(2002), - [anon_sym_make] = ACTIONS(2002), - [anon_sym_while] = ACTIONS(2002), - [anon_sym_do] = ACTIONS(2002), - [anon_sym_if] = ACTIONS(2002), - [anon_sym_else] = ACTIONS(2002), - [anon_sym_match] = ACTIONS(2002), - [anon_sym_RBRACE] = ACTIONS(2002), - [anon_sym_try] = ACTIONS(2002), - [anon_sym_catch] = ACTIONS(2002), - [anon_sym_return] = ACTIONS(2002), - [anon_sym_source] = ACTIONS(2002), - [anon_sym_source_DASHenv] = ACTIONS(2002), - [anon_sym_register] = ACTIONS(2002), - [anon_sym_hide] = ACTIONS(2002), - [anon_sym_hide_DASHenv] = ACTIONS(2002), - [anon_sym_overlay] = ACTIONS(2002), - [anon_sym_new] = ACTIONS(2002), - [anon_sym_as] = ACTIONS(2002), - [anon_sym_PLUS] = ACTIONS(2002), - [anon_sym_LPAREN2] = ACTIONS(6782), - [anon_sym_DOT] = ACTIONS(6784), - [aux_sym__immediate_decimal_token1] = ACTIONS(6786), - [aux_sym__immediate_decimal_token3] = ACTIONS(6786), - [aux_sym__immediate_decimal_token4] = ACTIONS(6788), - [aux_sym__val_number_decimal_token1] = ACTIONS(2002), - [aux_sym__val_number_decimal_token2] = ACTIONS(2002), - [anon_sym_DOT2] = ACTIONS(2002), - [aux_sym__val_number_decimal_token3] = ACTIONS(2002), - [aux_sym__val_number_token1] = ACTIONS(2002), - [aux_sym__val_number_token2] = ACTIONS(2002), - [aux_sym__val_number_token3] = ACTIONS(2002), - [aux_sym__val_number_token4] = ACTIONS(2002), - [aux_sym__val_number_token5] = ACTIONS(2002), - [aux_sym__val_number_token6] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym__str_single_quotes] = ACTIONS(2002), - [sym__str_back_ticks] = ACTIONS(2002), - [sym__entry_separator] = ACTIONS(2004), - [aux_sym__record_key_token2] = ACTIONS(2002), - [anon_sym_POUND] = ACTIONS(113), - }, - [2810] = { - [sym_comment] = STATE(2810), - [anon_sym_export] = ACTIONS(6790), - [anon_sym_alias] = ACTIONS(6790), - [anon_sym_let] = ACTIONS(6790), - [anon_sym_let_DASHenv] = ACTIONS(6790), - [anon_sym_mut] = ACTIONS(6790), - [anon_sym_const] = ACTIONS(6790), - [anon_sym_SEMI] = ACTIONS(6792), - [sym_cmd_identifier] = ACTIONS(6790), - [anon_sym_LF] = ACTIONS(6795), - [anon_sym_def] = ACTIONS(6790), - [anon_sym_export_DASHenv] = ACTIONS(6790), - [anon_sym_extern] = ACTIONS(6790), - [anon_sym_module] = ACTIONS(6790), - [anon_sym_use] = ACTIONS(6790), - [anon_sym_LBRACK] = ACTIONS(6790), - [anon_sym_LPAREN] = ACTIONS(6790), - [anon_sym_RPAREN] = ACTIONS(6798), - [anon_sym_DOLLAR] = ACTIONS(6790), - [anon_sym_error] = ACTIONS(6790), - [anon_sym_DASH] = ACTIONS(6790), - [anon_sym_break] = ACTIONS(6790), - [anon_sym_continue] = ACTIONS(6790), - [anon_sym_for] = ACTIONS(6790), - [anon_sym_loop] = ACTIONS(6790), - [anon_sym_while] = ACTIONS(6790), - [anon_sym_do] = ACTIONS(6790), - [anon_sym_if] = ACTIONS(6790), - [anon_sym_match] = ACTIONS(6790), - [anon_sym_LBRACE] = ACTIONS(6790), - [anon_sym_DOT_DOT] = ACTIONS(6790), - [anon_sym_try] = ACTIONS(6790), - [anon_sym_return] = ACTIONS(6790), - [anon_sym_source] = ACTIONS(6790), - [anon_sym_source_DASHenv] = ACTIONS(6790), - [anon_sym_register] = ACTIONS(6790), - [anon_sym_hide] = ACTIONS(6790), - [anon_sym_hide_DASHenv] = ACTIONS(6790), - [anon_sym_overlay] = ACTIONS(6790), - [anon_sym_where] = ACTIONS(6790), - [anon_sym_not] = ACTIONS(6790), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6790), - [anon_sym_DOT_DOT_LT] = ACTIONS(6790), - [anon_sym_null] = ACTIONS(6790), - [anon_sym_true] = ACTIONS(6790), - [anon_sym_false] = ACTIONS(6790), - [aux_sym__val_number_decimal_token1] = ACTIONS(6790), - [aux_sym__val_number_decimal_token2] = ACTIONS(6790), - [anon_sym_DOT2] = ACTIONS(6790), - [aux_sym__val_number_decimal_token3] = ACTIONS(6790), - [aux_sym__val_number_token1] = ACTIONS(6790), - [aux_sym__val_number_token2] = ACTIONS(6790), - [aux_sym__val_number_token3] = ACTIONS(6790), - [aux_sym__val_number_token4] = ACTIONS(6790), - [aux_sym__val_number_token5] = ACTIONS(6790), - [aux_sym__val_number_token6] = ACTIONS(6790), - [anon_sym_0b] = ACTIONS(6790), - [anon_sym_0o] = ACTIONS(6790), - [anon_sym_0x] = ACTIONS(6790), - [sym_val_date] = ACTIONS(6790), - [anon_sym_DQUOTE] = ACTIONS(6790), - [sym__str_single_quotes] = ACTIONS(6790), - [sym__str_back_ticks] = ACTIONS(6790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6790), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6790), - [anon_sym_CARET] = ACTIONS(6790), - [anon_sym_POUND] = ACTIONS(113), - }, - [2811] = { - [sym__expr_parenthesized_immediate] = STATE(3522), - [sym__immediate_decimal] = STATE(3523), - [sym_val_variable] = STATE(3522), - [sym__var] = STATE(3368), - [sym_comment] = STATE(2811), - [anon_sym_export] = ACTIONS(1920), - [anon_sym_alias] = ACTIONS(1920), - [anon_sym_let] = ACTIONS(1920), - [anon_sym_let_DASHenv] = ACTIONS(1920), - [anon_sym_mut] = ACTIONS(1920), - [anon_sym_const] = ACTIONS(1920), - [sym_cmd_identifier] = ACTIONS(1920), - [anon_sym_def] = ACTIONS(1920), - [anon_sym_export_DASHenv] = ACTIONS(1920), - [anon_sym_extern] = ACTIONS(1920), - [anon_sym_module] = ACTIONS(1920), - [anon_sym_use] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1920), - [anon_sym_DOLLAR] = ACTIONS(6780), - [anon_sym_error] = ACTIONS(1920), - [anon_sym_list] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1920), - [anon_sym_break] = ACTIONS(1920), - [anon_sym_continue] = ACTIONS(1920), - [anon_sym_for] = ACTIONS(1920), - [anon_sym_in] = ACTIONS(1920), - [anon_sym_loop] = ACTIONS(1920), - [anon_sym_make] = ACTIONS(1920), - [anon_sym_while] = ACTIONS(1920), - [anon_sym_do] = ACTIONS(1920), - [anon_sym_if] = ACTIONS(1920), - [anon_sym_else] = ACTIONS(1920), - [anon_sym_match] = ACTIONS(1920), - [anon_sym_RBRACE] = ACTIONS(1920), - [anon_sym_try] = ACTIONS(1920), - [anon_sym_catch] = ACTIONS(1920), - [anon_sym_return] = ACTIONS(1920), - [anon_sym_source] = ACTIONS(1920), - [anon_sym_source_DASHenv] = ACTIONS(1920), - [anon_sym_register] = ACTIONS(1920), - [anon_sym_hide] = ACTIONS(1920), - [anon_sym_hide_DASHenv] = ACTIONS(1920), - [anon_sym_overlay] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1920), - [anon_sym_as] = ACTIONS(1920), - [anon_sym_PLUS] = ACTIONS(1920), - [anon_sym_LPAREN2] = ACTIONS(6782), - [anon_sym_DOT] = ACTIONS(6784), - [aux_sym__immediate_decimal_token1] = ACTIONS(6786), - [aux_sym__immediate_decimal_token3] = ACTIONS(6786), - [aux_sym__immediate_decimal_token4] = ACTIONS(6788), - [aux_sym__val_number_decimal_token1] = ACTIONS(1920), - [aux_sym__val_number_decimal_token2] = ACTIONS(1920), - [anon_sym_DOT2] = ACTIONS(1920), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_token1] = ACTIONS(1920), - [aux_sym__val_number_token2] = ACTIONS(1920), - [aux_sym__val_number_token3] = ACTIONS(1920), - [aux_sym__val_number_token4] = ACTIONS(1920), - [aux_sym__val_number_token5] = ACTIONS(1920), - [aux_sym__val_number_token6] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym__str_single_quotes] = ACTIONS(1920), - [sym__str_back_ticks] = ACTIONS(1920), - [sym__entry_separator] = ACTIONS(1922), - [aux_sym__record_key_token2] = ACTIONS(1920), - [anon_sym_POUND] = ACTIONS(113), - }, - [2812] = { - [sym_comment] = STATE(2812), - [ts_builtin_sym_end] = ACTIONS(6651), - [anon_sym_export] = ACTIONS(6649), - [anon_sym_alias] = ACTIONS(6649), - [anon_sym_let] = ACTIONS(6649), - [anon_sym_let_DASHenv] = ACTIONS(6649), - [anon_sym_mut] = ACTIONS(6649), - [anon_sym_const] = ACTIONS(6649), - [anon_sym_SEMI] = ACTIONS(6649), - [sym_cmd_identifier] = ACTIONS(6649), - [anon_sym_LF] = ACTIONS(6651), - [anon_sym_def] = ACTIONS(6649), - [anon_sym_export_DASHenv] = ACTIONS(6649), - [anon_sym_extern] = ACTIONS(6649), - [anon_sym_module] = ACTIONS(6649), - [anon_sym_use] = ACTIONS(6649), - [anon_sym_LBRACK] = ACTIONS(6649), - [anon_sym_LPAREN] = ACTIONS(6649), - [anon_sym_DOLLAR] = ACTIONS(6649), - [anon_sym_error] = ACTIONS(6649), - [anon_sym_DASH] = ACTIONS(6649), - [anon_sym_break] = ACTIONS(6649), - [anon_sym_continue] = ACTIONS(6649), - [anon_sym_for] = ACTIONS(6649), - [anon_sym_loop] = ACTIONS(6649), - [anon_sym_while] = ACTIONS(6649), - [anon_sym_do] = ACTIONS(6649), - [anon_sym_if] = ACTIONS(6649), - [anon_sym_match] = ACTIONS(6649), - [anon_sym_LBRACE] = ACTIONS(6649), - [anon_sym_DOT_DOT] = ACTIONS(6649), - [anon_sym_try] = ACTIONS(6649), - [anon_sym_return] = ACTIONS(6649), - [anon_sym_source] = ACTIONS(6649), - [anon_sym_source_DASHenv] = ACTIONS(6649), - [anon_sym_register] = ACTIONS(6649), - [anon_sym_hide] = ACTIONS(6649), - [anon_sym_hide_DASHenv] = ACTIONS(6649), - [anon_sym_overlay] = ACTIONS(6649), - [anon_sym_where] = ACTIONS(6649), - [anon_sym_not] = ACTIONS(6649), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6649), - [anon_sym_DOT_DOT_LT] = ACTIONS(6649), - [anon_sym_null] = ACTIONS(6649), - [anon_sym_true] = ACTIONS(6649), - [anon_sym_false] = ACTIONS(6649), - [aux_sym__val_number_decimal_token1] = ACTIONS(6649), - [aux_sym__val_number_decimal_token2] = ACTIONS(6649), - [anon_sym_DOT2] = ACTIONS(6649), - [aux_sym__val_number_decimal_token3] = ACTIONS(6649), - [aux_sym__val_number_token1] = ACTIONS(6649), - [aux_sym__val_number_token2] = ACTIONS(6649), - [aux_sym__val_number_token3] = ACTIONS(6649), - [aux_sym__val_number_token4] = ACTIONS(6649), - [aux_sym__val_number_token5] = ACTIONS(6649), - [aux_sym__val_number_token6] = ACTIONS(6649), - [anon_sym_0b] = ACTIONS(6649), - [anon_sym_0o] = ACTIONS(6649), - [anon_sym_0x] = ACTIONS(6649), - [sym_val_date] = ACTIONS(6649), - [anon_sym_DQUOTE] = ACTIONS(6649), - [sym__str_single_quotes] = ACTIONS(6649), - [sym__str_back_ticks] = ACTIONS(6649), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6649), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6649), - [anon_sym_CARET] = ACTIONS(6649), - [anon_sym_POUND] = ACTIONS(113), - }, - [2813] = { - [sym_comment] = STATE(2813), - [anon_sym_export] = ACTIONS(6800), - [anon_sym_alias] = ACTIONS(6800), - [anon_sym_let] = ACTIONS(6800), - [anon_sym_let_DASHenv] = ACTIONS(6800), - [anon_sym_mut] = ACTIONS(6800), - [anon_sym_const] = ACTIONS(6800), - [anon_sym_SEMI] = ACTIONS(6802), - [sym_cmd_identifier] = ACTIONS(6800), - [anon_sym_LF] = ACTIONS(6805), - [anon_sym_def] = ACTIONS(6800), - [anon_sym_export_DASHenv] = ACTIONS(6800), - [anon_sym_extern] = ACTIONS(6800), - [anon_sym_module] = ACTIONS(6800), - [anon_sym_use] = ACTIONS(6800), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_LPAREN] = ACTIONS(6800), - [anon_sym_RPAREN] = ACTIONS(6808), - [anon_sym_DOLLAR] = ACTIONS(6800), - [anon_sym_error] = ACTIONS(6800), - [anon_sym_DASH] = ACTIONS(6800), - [anon_sym_break] = ACTIONS(6800), - [anon_sym_continue] = ACTIONS(6800), - [anon_sym_for] = ACTIONS(6800), - [anon_sym_loop] = ACTIONS(6800), - [anon_sym_while] = ACTIONS(6800), - [anon_sym_do] = ACTIONS(6800), - [anon_sym_if] = ACTIONS(6800), - [anon_sym_match] = ACTIONS(6800), - [anon_sym_LBRACE] = ACTIONS(6800), - [anon_sym_DOT_DOT] = ACTIONS(6800), - [anon_sym_try] = ACTIONS(6800), - [anon_sym_return] = ACTIONS(6800), - [anon_sym_source] = ACTIONS(6800), - [anon_sym_source_DASHenv] = ACTIONS(6800), - [anon_sym_register] = ACTIONS(6800), - [anon_sym_hide] = ACTIONS(6800), - [anon_sym_hide_DASHenv] = ACTIONS(6800), - [anon_sym_overlay] = ACTIONS(6800), - [anon_sym_where] = ACTIONS(6800), - [anon_sym_not] = ACTIONS(6800), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6800), - [anon_sym_DOT_DOT_LT] = ACTIONS(6800), - [anon_sym_null] = ACTIONS(6800), - [anon_sym_true] = ACTIONS(6800), - [anon_sym_false] = ACTIONS(6800), - [aux_sym__val_number_decimal_token1] = ACTIONS(6800), - [aux_sym__val_number_decimal_token2] = ACTIONS(6800), - [anon_sym_DOT2] = ACTIONS(6800), - [aux_sym__val_number_decimal_token3] = ACTIONS(6800), - [aux_sym__val_number_token1] = ACTIONS(6800), - [aux_sym__val_number_token2] = ACTIONS(6800), - [aux_sym__val_number_token3] = ACTIONS(6800), - [aux_sym__val_number_token4] = ACTIONS(6800), - [aux_sym__val_number_token5] = ACTIONS(6800), - [aux_sym__val_number_token6] = ACTIONS(6800), - [anon_sym_0b] = ACTIONS(6800), - [anon_sym_0o] = ACTIONS(6800), - [anon_sym_0x] = ACTIONS(6800), - [sym_val_date] = ACTIONS(6800), - [anon_sym_DQUOTE] = ACTIONS(6800), - [sym__str_single_quotes] = ACTIONS(6800), - [sym__str_back_ticks] = ACTIONS(6800), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6800), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6800), - [anon_sym_CARET] = ACTIONS(6800), - [anon_sym_POUND] = ACTIONS(113), - }, - [2814] = { - [sym_comment] = STATE(2814), - [ts_builtin_sym_end] = ACTIONS(6625), - [anon_sym_export] = ACTIONS(6623), - [anon_sym_alias] = ACTIONS(6623), - [anon_sym_let] = ACTIONS(6623), - [anon_sym_let_DASHenv] = ACTIONS(6623), - [anon_sym_mut] = ACTIONS(6623), - [anon_sym_const] = ACTIONS(6623), - [anon_sym_SEMI] = ACTIONS(6623), - [sym_cmd_identifier] = ACTIONS(6623), - [anon_sym_LF] = ACTIONS(6625), - [anon_sym_def] = ACTIONS(6623), - [anon_sym_export_DASHenv] = ACTIONS(6623), - [anon_sym_extern] = ACTIONS(6623), - [anon_sym_module] = ACTIONS(6623), - [anon_sym_use] = ACTIONS(6623), - [anon_sym_LBRACK] = ACTIONS(6623), - [anon_sym_LPAREN] = ACTIONS(6623), - [anon_sym_DOLLAR] = ACTIONS(6623), - [anon_sym_error] = ACTIONS(6623), - [anon_sym_DASH] = ACTIONS(6623), - [anon_sym_break] = ACTIONS(6623), - [anon_sym_continue] = ACTIONS(6623), - [anon_sym_for] = ACTIONS(6623), - [anon_sym_loop] = ACTIONS(6623), - [anon_sym_while] = ACTIONS(6623), - [anon_sym_do] = ACTIONS(6623), - [anon_sym_if] = ACTIONS(6623), - [anon_sym_match] = ACTIONS(6623), - [anon_sym_LBRACE] = ACTIONS(6623), - [anon_sym_DOT_DOT] = ACTIONS(6623), - [anon_sym_try] = ACTIONS(6623), - [anon_sym_return] = ACTIONS(6623), - [anon_sym_source] = ACTIONS(6623), - [anon_sym_source_DASHenv] = ACTIONS(6623), - [anon_sym_register] = ACTIONS(6623), - [anon_sym_hide] = ACTIONS(6623), - [anon_sym_hide_DASHenv] = ACTIONS(6623), - [anon_sym_overlay] = ACTIONS(6623), - [anon_sym_where] = ACTIONS(6623), - [anon_sym_not] = ACTIONS(6623), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6623), - [anon_sym_DOT_DOT_LT] = ACTIONS(6623), - [anon_sym_null] = ACTIONS(6623), - [anon_sym_true] = ACTIONS(6623), - [anon_sym_false] = ACTIONS(6623), - [aux_sym__val_number_decimal_token1] = ACTIONS(6623), - [aux_sym__val_number_decimal_token2] = ACTIONS(6623), - [anon_sym_DOT2] = ACTIONS(6623), - [aux_sym__val_number_decimal_token3] = ACTIONS(6623), - [aux_sym__val_number_token1] = ACTIONS(6623), - [aux_sym__val_number_token2] = ACTIONS(6623), - [aux_sym__val_number_token3] = ACTIONS(6623), - [aux_sym__val_number_token4] = ACTIONS(6623), - [aux_sym__val_number_token5] = ACTIONS(6623), - [aux_sym__val_number_token6] = ACTIONS(6623), - [anon_sym_0b] = ACTIONS(6623), - [anon_sym_0o] = ACTIONS(6623), - [anon_sym_0x] = ACTIONS(6623), - [sym_val_date] = ACTIONS(6623), - [anon_sym_DQUOTE] = ACTIONS(6623), - [sym__str_single_quotes] = ACTIONS(6623), - [sym__str_back_ticks] = ACTIONS(6623), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6623), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6623), - [anon_sym_CARET] = ACTIONS(6623), - [anon_sym_POUND] = ACTIONS(113), - }, - [2815] = { - [sym_comment] = STATE(2815), - [ts_builtin_sym_end] = ACTIONS(6728), - [anon_sym_export] = ACTIONS(6726), - [anon_sym_alias] = ACTIONS(6726), - [anon_sym_let] = ACTIONS(6726), - [anon_sym_let_DASHenv] = ACTIONS(6726), - [anon_sym_mut] = ACTIONS(6726), - [anon_sym_const] = ACTIONS(6726), - [anon_sym_SEMI] = ACTIONS(6726), - [sym_cmd_identifier] = ACTIONS(6726), - [anon_sym_LF] = ACTIONS(6728), - [anon_sym_def] = ACTIONS(6726), - [anon_sym_export_DASHenv] = ACTIONS(6726), - [anon_sym_extern] = ACTIONS(6726), - [anon_sym_module] = ACTIONS(6726), - [anon_sym_use] = ACTIONS(6726), - [anon_sym_LBRACK] = ACTIONS(6726), - [anon_sym_LPAREN] = ACTIONS(6726), - [anon_sym_DOLLAR] = ACTIONS(6726), - [anon_sym_error] = ACTIONS(6726), - [anon_sym_DASH] = ACTIONS(6726), - [anon_sym_break] = ACTIONS(6726), - [anon_sym_continue] = ACTIONS(6726), - [anon_sym_for] = ACTIONS(6726), - [anon_sym_loop] = ACTIONS(6726), - [anon_sym_while] = ACTIONS(6726), - [anon_sym_do] = ACTIONS(6726), - [anon_sym_if] = ACTIONS(6726), - [anon_sym_match] = ACTIONS(6726), - [anon_sym_LBRACE] = ACTIONS(6726), - [anon_sym_DOT_DOT] = ACTIONS(6726), - [anon_sym_try] = ACTIONS(6726), - [anon_sym_return] = ACTIONS(6726), - [anon_sym_source] = ACTIONS(6726), - [anon_sym_source_DASHenv] = ACTIONS(6726), - [anon_sym_register] = ACTIONS(6726), - [anon_sym_hide] = ACTIONS(6726), - [anon_sym_hide_DASHenv] = ACTIONS(6726), - [anon_sym_overlay] = ACTIONS(6726), - [anon_sym_where] = ACTIONS(6726), - [anon_sym_not] = ACTIONS(6726), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6726), - [anon_sym_DOT_DOT_LT] = ACTIONS(6726), - [anon_sym_null] = ACTIONS(6726), - [anon_sym_true] = ACTIONS(6726), - [anon_sym_false] = ACTIONS(6726), - [aux_sym__val_number_decimal_token1] = ACTIONS(6726), - [aux_sym__val_number_decimal_token2] = ACTIONS(6726), - [anon_sym_DOT2] = ACTIONS(6726), - [aux_sym__val_number_decimal_token3] = ACTIONS(6726), - [aux_sym__val_number_token1] = ACTIONS(6726), - [aux_sym__val_number_token2] = ACTIONS(6726), - [aux_sym__val_number_token3] = ACTIONS(6726), - [aux_sym__val_number_token4] = ACTIONS(6726), - [aux_sym__val_number_token5] = ACTIONS(6726), - [aux_sym__val_number_token6] = ACTIONS(6726), - [anon_sym_0b] = ACTIONS(6726), - [anon_sym_0o] = ACTIONS(6726), - [anon_sym_0x] = ACTIONS(6726), - [sym_val_date] = ACTIONS(6726), - [anon_sym_DQUOTE] = ACTIONS(6726), - [sym__str_single_quotes] = ACTIONS(6726), - [sym__str_back_ticks] = ACTIONS(6726), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6726), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6726), - [anon_sym_CARET] = ACTIONS(6726), - [anon_sym_POUND] = ACTIONS(113), - }, - [2816] = { - [sym_comment] = STATE(2816), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_RPAREN] = ACTIONS(959), - [anon_sym_PIPE] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH_DASH] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_RBRACE] = ACTIONS(959), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(959), - [anon_sym_PLUS_PLUS] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(959), - [anon_sym_SLASH_SLASH] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(959), - [anon_sym_bit_DASHshr] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(959), - [anon_sym_BANG_EQ] = ACTIONS(959), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(959), - [anon_sym_GT_EQ] = ACTIONS(959), - [anon_sym_not_DASHin] = ACTIONS(959), - [anon_sym_starts_DASHwith] = ACTIONS(959), - [anon_sym_ends_DASHwith] = ACTIONS(959), - [anon_sym_EQ_TILDE] = ACTIONS(959), - [anon_sym_BANG_TILDE] = ACTIONS(959), - [anon_sym_bit_DASHand] = ACTIONS(959), - [anon_sym_bit_DASHxor] = ACTIONS(959), - [anon_sym_bit_DASHor] = ACTIONS(959), - [anon_sym_and] = ACTIONS(959), - [anon_sym_xor] = ACTIONS(959), - [anon_sym_or] = ACTIONS(959), - [anon_sym_not] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_DOT_DOT_LT] = ACTIONS(959), - [anon_sym_null] = ACTIONS(959), - [anon_sym_true] = ACTIONS(959), - [anon_sym_false] = ACTIONS(959), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(959), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(959), - [aux_sym__val_number_token1] = ACTIONS(959), - [aux_sym__val_number_token2] = ACTIONS(959), - [aux_sym__val_number_token3] = ACTIONS(959), - [aux_sym__val_number_token4] = ACTIONS(959), - [aux_sym__val_number_token5] = ACTIONS(959), - [aux_sym__val_number_token6] = ACTIONS(959), - [anon_sym_0b] = ACTIONS(959), - [anon_sym_0o] = ACTIONS(959), - [anon_sym_0x] = ACTIONS(959), - [sym_val_date] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [sym__str_single_quotes] = ACTIONS(959), - [sym__str_back_ticks] = ACTIONS(959), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(959), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(959), - [aux_sym_unquoted_token5] = ACTIONS(3982), - [anon_sym_POUND] = ACTIONS(113), - }, - [2817] = { - [sym_comment] = STATE(2817), - [ts_builtin_sym_end] = ACTIONS(6522), - [anon_sym_export] = ACTIONS(6520), - [anon_sym_alias] = ACTIONS(6520), - [anon_sym_let] = ACTIONS(6520), - [anon_sym_let_DASHenv] = ACTIONS(6520), - [anon_sym_mut] = ACTIONS(6520), - [anon_sym_const] = ACTIONS(6520), - [anon_sym_SEMI] = ACTIONS(6520), - [sym_cmd_identifier] = ACTIONS(6520), - [anon_sym_LF] = ACTIONS(6522), - [anon_sym_def] = ACTIONS(6520), - [anon_sym_export_DASHenv] = ACTIONS(6520), - [anon_sym_extern] = ACTIONS(6520), - [anon_sym_module] = ACTIONS(6520), - [anon_sym_use] = ACTIONS(6520), - [anon_sym_LBRACK] = ACTIONS(6520), - [anon_sym_LPAREN] = ACTIONS(6520), - [anon_sym_DOLLAR] = ACTIONS(6520), - [anon_sym_error] = ACTIONS(6520), - [anon_sym_DASH] = ACTIONS(6520), - [anon_sym_break] = ACTIONS(6520), - [anon_sym_continue] = ACTIONS(6520), - [anon_sym_for] = ACTIONS(6520), - [anon_sym_loop] = ACTIONS(6520), - [anon_sym_while] = ACTIONS(6520), - [anon_sym_do] = ACTIONS(6520), - [anon_sym_if] = ACTIONS(6520), - [anon_sym_match] = ACTIONS(6520), - [anon_sym_LBRACE] = ACTIONS(6520), - [anon_sym_DOT_DOT] = ACTIONS(6520), - [anon_sym_try] = ACTIONS(6520), - [anon_sym_return] = ACTIONS(6520), - [anon_sym_source] = ACTIONS(6520), - [anon_sym_source_DASHenv] = ACTIONS(6520), - [anon_sym_register] = ACTIONS(6520), - [anon_sym_hide] = ACTIONS(6520), - [anon_sym_hide_DASHenv] = ACTIONS(6520), - [anon_sym_overlay] = ACTIONS(6520), - [anon_sym_where] = ACTIONS(6520), - [anon_sym_not] = ACTIONS(6520), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6520), - [anon_sym_DOT_DOT_LT] = ACTIONS(6520), - [anon_sym_null] = ACTIONS(6520), - [anon_sym_true] = ACTIONS(6520), - [anon_sym_false] = ACTIONS(6520), - [aux_sym__val_number_decimal_token1] = ACTIONS(6520), - [aux_sym__val_number_decimal_token2] = ACTIONS(6520), - [anon_sym_DOT2] = ACTIONS(6520), - [aux_sym__val_number_decimal_token3] = ACTIONS(6520), - [aux_sym__val_number_token1] = ACTIONS(6520), - [aux_sym__val_number_token2] = ACTIONS(6520), - [aux_sym__val_number_token3] = ACTIONS(6520), - [aux_sym__val_number_token4] = ACTIONS(6520), - [aux_sym__val_number_token5] = ACTIONS(6520), - [aux_sym__val_number_token6] = ACTIONS(6520), - [anon_sym_0b] = ACTIONS(6520), - [anon_sym_0o] = ACTIONS(6520), - [anon_sym_0x] = ACTIONS(6520), - [sym_val_date] = ACTIONS(6520), - [anon_sym_DQUOTE] = ACTIONS(6520), - [sym__str_single_quotes] = ACTIONS(6520), - [sym__str_back_ticks] = ACTIONS(6520), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6520), - [anon_sym_CARET] = ACTIONS(6520), - [anon_sym_POUND] = ACTIONS(113), - }, - [2818] = { - [sym_comment] = STATE(2818), - [ts_builtin_sym_end] = ACTIONS(6756), - [anon_sym_export] = ACTIONS(6754), - [anon_sym_alias] = ACTIONS(6754), - [anon_sym_let] = ACTIONS(6754), - [anon_sym_let_DASHenv] = ACTIONS(6754), - [anon_sym_mut] = ACTIONS(6754), - [anon_sym_const] = ACTIONS(6754), - [anon_sym_SEMI] = ACTIONS(6754), - [sym_cmd_identifier] = ACTIONS(6754), - [anon_sym_LF] = ACTIONS(6756), - [anon_sym_def] = ACTIONS(6754), - [anon_sym_export_DASHenv] = ACTIONS(6754), - [anon_sym_extern] = ACTIONS(6754), - [anon_sym_module] = ACTIONS(6754), - [anon_sym_use] = ACTIONS(6754), - [anon_sym_LBRACK] = ACTIONS(6754), - [anon_sym_LPAREN] = ACTIONS(6754), - [anon_sym_DOLLAR] = ACTIONS(6754), - [anon_sym_error] = ACTIONS(6754), - [anon_sym_DASH] = ACTIONS(6754), - [anon_sym_break] = ACTIONS(6754), - [anon_sym_continue] = ACTIONS(6754), - [anon_sym_for] = ACTIONS(6754), - [anon_sym_loop] = ACTIONS(6754), - [anon_sym_while] = ACTIONS(6754), - [anon_sym_do] = ACTIONS(6754), - [anon_sym_if] = ACTIONS(6754), - [anon_sym_match] = ACTIONS(6754), - [anon_sym_LBRACE] = ACTIONS(6754), - [anon_sym_DOT_DOT] = ACTIONS(6754), - [anon_sym_try] = ACTIONS(6754), - [anon_sym_return] = ACTIONS(6754), - [anon_sym_source] = ACTIONS(6754), - [anon_sym_source_DASHenv] = ACTIONS(6754), - [anon_sym_register] = ACTIONS(6754), - [anon_sym_hide] = ACTIONS(6754), - [anon_sym_hide_DASHenv] = ACTIONS(6754), - [anon_sym_overlay] = ACTIONS(6754), - [anon_sym_where] = ACTIONS(6754), - [anon_sym_not] = ACTIONS(6754), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6754), - [anon_sym_DOT_DOT_LT] = ACTIONS(6754), - [anon_sym_null] = ACTIONS(6754), - [anon_sym_true] = ACTIONS(6754), - [anon_sym_false] = ACTIONS(6754), - [aux_sym__val_number_decimal_token1] = ACTIONS(6754), - [aux_sym__val_number_decimal_token2] = ACTIONS(6754), - [anon_sym_DOT2] = ACTIONS(6754), - [aux_sym__val_number_decimal_token3] = ACTIONS(6754), - [aux_sym__val_number_token1] = ACTIONS(6754), - [aux_sym__val_number_token2] = ACTIONS(6754), - [aux_sym__val_number_token3] = ACTIONS(6754), - [aux_sym__val_number_token4] = ACTIONS(6754), - [aux_sym__val_number_token5] = ACTIONS(6754), - [aux_sym__val_number_token6] = ACTIONS(6754), - [anon_sym_0b] = ACTIONS(6754), - [anon_sym_0o] = ACTIONS(6754), - [anon_sym_0x] = ACTIONS(6754), - [sym_val_date] = ACTIONS(6754), - [anon_sym_DQUOTE] = ACTIONS(6754), - [sym__str_single_quotes] = ACTIONS(6754), - [sym__str_back_ticks] = ACTIONS(6754), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6754), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6754), - [anon_sym_CARET] = ACTIONS(6754), - [anon_sym_POUND] = ACTIONS(113), - }, - [2819] = { - [sym_comment] = STATE(2819), - [ts_builtin_sym_end] = ACTIONS(2549), - [anon_sym_export] = ACTIONS(2547), - [anon_sym_alias] = ACTIONS(2547), - [anon_sym_let] = ACTIONS(2547), - [anon_sym_let_DASHenv] = ACTIONS(2547), - [anon_sym_mut] = ACTIONS(2547), - [anon_sym_const] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [sym_cmd_identifier] = ACTIONS(2547), - [anon_sym_LF] = ACTIONS(2549), - [anon_sym_def] = ACTIONS(2547), - [anon_sym_export_DASHenv] = ACTIONS(2547), - [anon_sym_extern] = ACTIONS(2547), - [anon_sym_module] = ACTIONS(2547), - [anon_sym_use] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_DOLLAR] = ACTIONS(2547), - [anon_sym_error] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_break] = ACTIONS(2547), - [anon_sym_continue] = ACTIONS(2547), - [anon_sym_for] = ACTIONS(2547), - [anon_sym_loop] = ACTIONS(2547), - [anon_sym_while] = ACTIONS(2547), - [anon_sym_do] = ACTIONS(2547), - [anon_sym_if] = ACTIONS(2547), - [anon_sym_match] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2547), - [anon_sym_DOT_DOT] = ACTIONS(2547), - [anon_sym_try] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2547), - [anon_sym_source] = ACTIONS(2547), - [anon_sym_source_DASHenv] = ACTIONS(2547), - [anon_sym_register] = ACTIONS(2547), - [anon_sym_hide] = ACTIONS(2547), - [anon_sym_hide_DASHenv] = ACTIONS(2547), - [anon_sym_overlay] = ACTIONS(2547), - [anon_sym_where] = ACTIONS(2547), - [anon_sym_not] = ACTIONS(2547), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), - [anon_sym_DOT_DOT_LT] = ACTIONS(2547), - [anon_sym_null] = ACTIONS(2547), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [aux_sym__val_number_decimal_token1] = ACTIONS(2547), - [aux_sym__val_number_decimal_token2] = ACTIONS(2547), - [anon_sym_DOT2] = ACTIONS(2547), - [aux_sym__val_number_decimal_token3] = ACTIONS(2547), - [aux_sym__val_number_token1] = ACTIONS(2547), - [aux_sym__val_number_token2] = ACTIONS(2547), - [aux_sym__val_number_token3] = ACTIONS(2547), - [aux_sym__val_number_token4] = ACTIONS(2547), - [aux_sym__val_number_token5] = ACTIONS(2547), - [aux_sym__val_number_token6] = ACTIONS(2547), - [anon_sym_0b] = ACTIONS(2547), - [anon_sym_0o] = ACTIONS(2547), - [anon_sym_0x] = ACTIONS(2547), - [sym_val_date] = ACTIONS(2547), - [anon_sym_DQUOTE] = ACTIONS(2547), - [sym__str_single_quotes] = ACTIONS(2547), - [sym__str_back_ticks] = ACTIONS(2547), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2547), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2547), - [anon_sym_POUND] = ACTIONS(113), - }, - [2820] = { - [sym_comment] = STATE(2820), - [ts_builtin_sym_end] = ACTIONS(6629), - [anon_sym_export] = ACTIONS(6627), - [anon_sym_alias] = ACTIONS(6627), - [anon_sym_let] = ACTIONS(6627), - [anon_sym_let_DASHenv] = ACTIONS(6627), - [anon_sym_mut] = ACTIONS(6627), - [anon_sym_const] = ACTIONS(6627), - [anon_sym_SEMI] = ACTIONS(6627), - [sym_cmd_identifier] = ACTIONS(6627), - [anon_sym_LF] = ACTIONS(6629), - [anon_sym_def] = ACTIONS(6627), - [anon_sym_export_DASHenv] = ACTIONS(6627), - [anon_sym_extern] = ACTIONS(6627), - [anon_sym_module] = ACTIONS(6627), - [anon_sym_use] = ACTIONS(6627), - [anon_sym_LBRACK] = ACTIONS(6627), - [anon_sym_LPAREN] = ACTIONS(6627), - [anon_sym_DOLLAR] = ACTIONS(6627), - [anon_sym_error] = ACTIONS(6627), - [anon_sym_DASH] = ACTIONS(6627), - [anon_sym_break] = ACTIONS(6627), - [anon_sym_continue] = ACTIONS(6627), - [anon_sym_for] = ACTIONS(6627), - [anon_sym_loop] = ACTIONS(6627), - [anon_sym_while] = ACTIONS(6627), - [anon_sym_do] = ACTIONS(6627), - [anon_sym_if] = ACTIONS(6627), - [anon_sym_match] = ACTIONS(6627), - [anon_sym_LBRACE] = ACTIONS(6627), - [anon_sym_DOT_DOT] = ACTIONS(6627), - [anon_sym_try] = ACTIONS(6627), - [anon_sym_return] = ACTIONS(6627), - [anon_sym_source] = ACTIONS(6627), - [anon_sym_source_DASHenv] = ACTIONS(6627), - [anon_sym_register] = ACTIONS(6627), - [anon_sym_hide] = ACTIONS(6627), - [anon_sym_hide_DASHenv] = ACTIONS(6627), - [anon_sym_overlay] = ACTIONS(6627), - [anon_sym_where] = ACTIONS(6627), - [anon_sym_not] = ACTIONS(6627), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6627), - [anon_sym_DOT_DOT_LT] = ACTIONS(6627), - [anon_sym_null] = ACTIONS(6627), - [anon_sym_true] = ACTIONS(6627), - [anon_sym_false] = ACTIONS(6627), - [aux_sym__val_number_decimal_token1] = ACTIONS(6627), - [aux_sym__val_number_decimal_token2] = ACTIONS(6627), - [anon_sym_DOT2] = ACTIONS(6627), - [aux_sym__val_number_decimal_token3] = ACTIONS(6627), - [aux_sym__val_number_token1] = ACTIONS(6627), - [aux_sym__val_number_token2] = ACTIONS(6627), - [aux_sym__val_number_token3] = ACTIONS(6627), - [aux_sym__val_number_token4] = ACTIONS(6627), - [aux_sym__val_number_token5] = ACTIONS(6627), - [aux_sym__val_number_token6] = ACTIONS(6627), - [anon_sym_0b] = ACTIONS(6627), - [anon_sym_0o] = ACTIONS(6627), - [anon_sym_0x] = ACTIONS(6627), - [sym_val_date] = ACTIONS(6627), - [anon_sym_DQUOTE] = ACTIONS(6627), - [sym__str_single_quotes] = ACTIONS(6627), - [sym__str_back_ticks] = ACTIONS(6627), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6627), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6627), - [anon_sym_CARET] = ACTIONS(6627), - [anon_sym_POUND] = ACTIONS(113), - }, - [2821] = { - [sym_comment] = STATE(2821), - [ts_builtin_sym_end] = ACTIONS(6629), - [anon_sym_export] = ACTIONS(6627), - [anon_sym_alias] = ACTIONS(6627), - [anon_sym_let] = ACTIONS(6627), - [anon_sym_let_DASHenv] = ACTIONS(6627), - [anon_sym_mut] = ACTIONS(6627), - [anon_sym_const] = ACTIONS(6627), - [anon_sym_SEMI] = ACTIONS(6627), - [sym_cmd_identifier] = ACTIONS(6627), - [anon_sym_LF] = ACTIONS(6629), - [anon_sym_def] = ACTIONS(6627), - [anon_sym_export_DASHenv] = ACTIONS(6627), - [anon_sym_extern] = ACTIONS(6627), - [anon_sym_module] = ACTIONS(6627), - [anon_sym_use] = ACTIONS(6627), - [anon_sym_LBRACK] = ACTIONS(6627), - [anon_sym_LPAREN] = ACTIONS(6627), - [anon_sym_DOLLAR] = ACTIONS(6627), - [anon_sym_error] = ACTIONS(6627), - [anon_sym_DASH] = ACTIONS(6627), - [anon_sym_break] = ACTIONS(6627), - [anon_sym_continue] = ACTIONS(6627), - [anon_sym_for] = ACTIONS(6627), - [anon_sym_loop] = ACTIONS(6627), - [anon_sym_while] = ACTIONS(6627), - [anon_sym_do] = ACTIONS(6627), - [anon_sym_if] = ACTIONS(6627), - [anon_sym_match] = ACTIONS(6627), - [anon_sym_LBRACE] = ACTIONS(6627), - [anon_sym_DOT_DOT] = ACTIONS(6627), - [anon_sym_try] = ACTIONS(6627), - [anon_sym_return] = ACTIONS(6627), - [anon_sym_source] = ACTIONS(6627), - [anon_sym_source_DASHenv] = ACTIONS(6627), - [anon_sym_register] = ACTIONS(6627), - [anon_sym_hide] = ACTIONS(6627), - [anon_sym_hide_DASHenv] = ACTIONS(6627), - [anon_sym_overlay] = ACTIONS(6627), - [anon_sym_where] = ACTIONS(6627), - [anon_sym_not] = ACTIONS(6627), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6627), - [anon_sym_DOT_DOT_LT] = ACTIONS(6627), - [anon_sym_null] = ACTIONS(6627), - [anon_sym_true] = ACTIONS(6627), - [anon_sym_false] = ACTIONS(6627), - [aux_sym__val_number_decimal_token1] = ACTIONS(6627), - [aux_sym__val_number_decimal_token2] = ACTIONS(6627), - [anon_sym_DOT2] = ACTIONS(6627), - [aux_sym__val_number_decimal_token3] = ACTIONS(6627), - [aux_sym__val_number_token1] = ACTIONS(6627), - [aux_sym__val_number_token2] = ACTIONS(6627), - [aux_sym__val_number_token3] = ACTIONS(6627), - [aux_sym__val_number_token4] = ACTIONS(6627), - [aux_sym__val_number_token5] = ACTIONS(6627), - [aux_sym__val_number_token6] = ACTIONS(6627), - [anon_sym_0b] = ACTIONS(6627), - [anon_sym_0o] = ACTIONS(6627), - [anon_sym_0x] = ACTIONS(6627), - [sym_val_date] = ACTIONS(6627), - [anon_sym_DQUOTE] = ACTIONS(6627), - [sym__str_single_quotes] = ACTIONS(6627), - [sym__str_back_ticks] = ACTIONS(6627), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6627), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6627), - [anon_sym_CARET] = ACTIONS(6627), - [anon_sym_POUND] = ACTIONS(113), - }, - [2822] = { - [sym_comment] = STATE(2822), - [ts_builtin_sym_end] = ACTIONS(6635), - [anon_sym_export] = ACTIONS(6633), - [anon_sym_alias] = ACTIONS(6633), - [anon_sym_let] = ACTIONS(6633), - [anon_sym_let_DASHenv] = ACTIONS(6633), - [anon_sym_mut] = ACTIONS(6633), - [anon_sym_const] = ACTIONS(6633), - [anon_sym_SEMI] = ACTIONS(6633), - [sym_cmd_identifier] = ACTIONS(6633), - [anon_sym_LF] = ACTIONS(6635), - [anon_sym_def] = ACTIONS(6633), - [anon_sym_export_DASHenv] = ACTIONS(6633), - [anon_sym_extern] = ACTIONS(6633), - [anon_sym_module] = ACTIONS(6633), - [anon_sym_use] = ACTIONS(6633), - [anon_sym_LBRACK] = ACTIONS(6633), - [anon_sym_LPAREN] = ACTIONS(6633), - [anon_sym_DOLLAR] = ACTIONS(6633), - [anon_sym_error] = ACTIONS(6633), - [anon_sym_DASH] = ACTIONS(6633), - [anon_sym_break] = ACTIONS(6633), - [anon_sym_continue] = ACTIONS(6633), - [anon_sym_for] = ACTIONS(6633), - [anon_sym_loop] = ACTIONS(6633), - [anon_sym_while] = ACTIONS(6633), - [anon_sym_do] = ACTIONS(6633), - [anon_sym_if] = ACTIONS(6633), - [anon_sym_match] = ACTIONS(6633), - [anon_sym_LBRACE] = ACTIONS(6633), - [anon_sym_DOT_DOT] = ACTIONS(6633), - [anon_sym_try] = ACTIONS(6633), - [anon_sym_return] = ACTIONS(6633), - [anon_sym_source] = ACTIONS(6633), - [anon_sym_source_DASHenv] = ACTIONS(6633), - [anon_sym_register] = ACTIONS(6633), - [anon_sym_hide] = ACTIONS(6633), - [anon_sym_hide_DASHenv] = ACTIONS(6633), - [anon_sym_overlay] = ACTIONS(6633), - [anon_sym_where] = ACTIONS(6633), - [anon_sym_not] = ACTIONS(6633), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6633), - [anon_sym_DOT_DOT_LT] = ACTIONS(6633), - [anon_sym_null] = ACTIONS(6633), - [anon_sym_true] = ACTIONS(6633), - [anon_sym_false] = ACTIONS(6633), - [aux_sym__val_number_decimal_token1] = ACTIONS(6633), - [aux_sym__val_number_decimal_token2] = ACTIONS(6633), - [anon_sym_DOT2] = ACTIONS(6633), - [aux_sym__val_number_decimal_token3] = ACTIONS(6633), - [aux_sym__val_number_token1] = ACTIONS(6633), - [aux_sym__val_number_token2] = ACTIONS(6633), - [aux_sym__val_number_token3] = ACTIONS(6633), - [aux_sym__val_number_token4] = ACTIONS(6633), - [aux_sym__val_number_token5] = ACTIONS(6633), - [aux_sym__val_number_token6] = ACTIONS(6633), - [anon_sym_0b] = ACTIONS(6633), - [anon_sym_0o] = ACTIONS(6633), - [anon_sym_0x] = ACTIONS(6633), - [sym_val_date] = ACTIONS(6633), - [anon_sym_DQUOTE] = ACTIONS(6633), - [sym__str_single_quotes] = ACTIONS(6633), - [sym__str_back_ticks] = ACTIONS(6633), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6633), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6633), - [anon_sym_CARET] = ACTIONS(6633), - [anon_sym_POUND] = ACTIONS(113), - }, - [2823] = { - [sym_comment] = STATE(2823), - [ts_builtin_sym_end] = ACTIONS(6522), - [anon_sym_export] = ACTIONS(6520), - [anon_sym_alias] = ACTIONS(6520), - [anon_sym_let] = ACTIONS(6520), - [anon_sym_let_DASHenv] = ACTIONS(6520), - [anon_sym_mut] = ACTIONS(6520), - [anon_sym_const] = ACTIONS(6520), - [anon_sym_SEMI] = ACTIONS(6520), - [sym_cmd_identifier] = ACTIONS(6520), - [anon_sym_LF] = ACTIONS(6522), - [anon_sym_def] = ACTIONS(6520), - [anon_sym_export_DASHenv] = ACTIONS(6520), - [anon_sym_extern] = ACTIONS(6520), - [anon_sym_module] = ACTIONS(6520), - [anon_sym_use] = ACTIONS(6520), - [anon_sym_LBRACK] = ACTIONS(6520), - [anon_sym_LPAREN] = ACTIONS(6520), - [anon_sym_DOLLAR] = ACTIONS(6520), - [anon_sym_error] = ACTIONS(6520), - [anon_sym_DASH] = ACTIONS(6520), - [anon_sym_break] = ACTIONS(6520), - [anon_sym_continue] = ACTIONS(6520), - [anon_sym_for] = ACTIONS(6520), - [anon_sym_loop] = ACTIONS(6520), - [anon_sym_while] = ACTIONS(6520), - [anon_sym_do] = ACTIONS(6520), - [anon_sym_if] = ACTIONS(6520), - [anon_sym_match] = ACTIONS(6520), - [anon_sym_LBRACE] = ACTIONS(6520), - [anon_sym_DOT_DOT] = ACTIONS(6520), - [anon_sym_try] = ACTIONS(6520), - [anon_sym_return] = ACTIONS(6520), - [anon_sym_source] = ACTIONS(6520), - [anon_sym_source_DASHenv] = ACTIONS(6520), - [anon_sym_register] = ACTIONS(6520), - [anon_sym_hide] = ACTIONS(6520), - [anon_sym_hide_DASHenv] = ACTIONS(6520), - [anon_sym_overlay] = ACTIONS(6520), - [anon_sym_where] = ACTIONS(6520), - [anon_sym_not] = ACTIONS(6520), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6520), - [anon_sym_DOT_DOT_LT] = ACTIONS(6520), - [anon_sym_null] = ACTIONS(6520), - [anon_sym_true] = ACTIONS(6520), - [anon_sym_false] = ACTIONS(6520), - [aux_sym__val_number_decimal_token1] = ACTIONS(6520), - [aux_sym__val_number_decimal_token2] = ACTIONS(6520), - [anon_sym_DOT2] = ACTIONS(6520), - [aux_sym__val_number_decimal_token3] = ACTIONS(6520), - [aux_sym__val_number_token1] = ACTIONS(6520), - [aux_sym__val_number_token2] = ACTIONS(6520), - [aux_sym__val_number_token3] = ACTIONS(6520), - [aux_sym__val_number_token4] = ACTIONS(6520), - [aux_sym__val_number_token5] = ACTIONS(6520), - [aux_sym__val_number_token6] = ACTIONS(6520), - [anon_sym_0b] = ACTIONS(6520), - [anon_sym_0o] = ACTIONS(6520), - [anon_sym_0x] = ACTIONS(6520), - [sym_val_date] = ACTIONS(6520), - [anon_sym_DQUOTE] = ACTIONS(6520), - [sym__str_single_quotes] = ACTIONS(6520), - [sym__str_back_ticks] = ACTIONS(6520), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6520), - [anon_sym_CARET] = ACTIONS(6520), - [anon_sym_POUND] = ACTIONS(113), - }, - [2824] = { - [sym_comment] = STATE(2824), - [ts_builtin_sym_end] = ACTIONS(6534), - [anon_sym_export] = ACTIONS(6532), - [anon_sym_alias] = ACTIONS(6532), - [anon_sym_let] = ACTIONS(6532), - [anon_sym_let_DASHenv] = ACTIONS(6532), - [anon_sym_mut] = ACTIONS(6532), - [anon_sym_const] = ACTIONS(6532), - [anon_sym_SEMI] = ACTIONS(6532), - [sym_cmd_identifier] = ACTIONS(6532), - [anon_sym_LF] = ACTIONS(6534), - [anon_sym_def] = ACTIONS(6532), - [anon_sym_export_DASHenv] = ACTIONS(6532), - [anon_sym_extern] = ACTIONS(6532), - [anon_sym_module] = ACTIONS(6532), - [anon_sym_use] = ACTIONS(6532), - [anon_sym_LBRACK] = ACTIONS(6532), - [anon_sym_LPAREN] = ACTIONS(6532), - [anon_sym_DOLLAR] = ACTIONS(6532), - [anon_sym_error] = ACTIONS(6532), - [anon_sym_DASH] = ACTIONS(6532), - [anon_sym_break] = ACTIONS(6532), - [anon_sym_continue] = ACTIONS(6532), - [anon_sym_for] = ACTIONS(6532), - [anon_sym_loop] = ACTIONS(6532), - [anon_sym_while] = ACTIONS(6532), - [anon_sym_do] = ACTIONS(6532), - [anon_sym_if] = ACTIONS(6532), - [anon_sym_match] = ACTIONS(6532), - [anon_sym_LBRACE] = ACTIONS(6532), - [anon_sym_DOT_DOT] = ACTIONS(6532), - [anon_sym_try] = ACTIONS(6532), - [anon_sym_return] = ACTIONS(6532), - [anon_sym_source] = ACTIONS(6532), - [anon_sym_source_DASHenv] = ACTIONS(6532), - [anon_sym_register] = ACTIONS(6532), - [anon_sym_hide] = ACTIONS(6532), - [anon_sym_hide_DASHenv] = ACTIONS(6532), - [anon_sym_overlay] = ACTIONS(6532), - [anon_sym_where] = ACTIONS(6532), - [anon_sym_not] = ACTIONS(6532), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6532), - [anon_sym_DOT_DOT_LT] = ACTIONS(6532), - [anon_sym_null] = ACTIONS(6532), - [anon_sym_true] = ACTIONS(6532), - [anon_sym_false] = ACTIONS(6532), - [aux_sym__val_number_decimal_token1] = ACTIONS(6532), - [aux_sym__val_number_decimal_token2] = ACTIONS(6532), - [anon_sym_DOT2] = ACTIONS(6532), - [aux_sym__val_number_decimal_token3] = ACTIONS(6532), - [aux_sym__val_number_token1] = ACTIONS(6532), - [aux_sym__val_number_token2] = ACTIONS(6532), - [aux_sym__val_number_token3] = ACTIONS(6532), - [aux_sym__val_number_token4] = ACTIONS(6532), - [aux_sym__val_number_token5] = ACTIONS(6532), - [aux_sym__val_number_token6] = ACTIONS(6532), - [anon_sym_0b] = ACTIONS(6532), - [anon_sym_0o] = ACTIONS(6532), - [anon_sym_0x] = ACTIONS(6532), - [sym_val_date] = ACTIONS(6532), - [anon_sym_DQUOTE] = ACTIONS(6532), - [sym__str_single_quotes] = ACTIONS(6532), - [sym__str_back_ticks] = ACTIONS(6532), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6532), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6532), - [anon_sym_CARET] = ACTIONS(6532), - [anon_sym_POUND] = ACTIONS(113), - }, - [2825] = { - [sym_comment] = STATE(2825), - [ts_builtin_sym_end] = ACTIONS(3507), - [anon_sym_export] = ACTIONS(3505), - [anon_sym_alias] = ACTIONS(3505), - [anon_sym_let] = ACTIONS(3505), - [anon_sym_let_DASHenv] = ACTIONS(3505), - [anon_sym_mut] = ACTIONS(3505), - [anon_sym_const] = ACTIONS(3505), - [anon_sym_SEMI] = ACTIONS(3505), - [sym_cmd_identifier] = ACTIONS(3505), - [anon_sym_LF] = ACTIONS(3507), - [anon_sym_def] = ACTIONS(3505), - [anon_sym_export_DASHenv] = ACTIONS(3505), - [anon_sym_extern] = ACTIONS(3505), - [anon_sym_module] = ACTIONS(3505), - [anon_sym_use] = ACTIONS(3505), - [anon_sym_LBRACK] = ACTIONS(3505), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_error] = ACTIONS(3505), - [anon_sym_DASH] = ACTIONS(3505), - [anon_sym_break] = ACTIONS(3505), - [anon_sym_continue] = ACTIONS(3505), - [anon_sym_for] = ACTIONS(3505), - [anon_sym_loop] = ACTIONS(3505), - [anon_sym_while] = ACTIONS(3505), - [anon_sym_do] = ACTIONS(3505), - [anon_sym_if] = ACTIONS(3505), - [anon_sym_match] = ACTIONS(3505), - [anon_sym_LBRACE] = ACTIONS(3505), - [anon_sym_DOT_DOT] = ACTIONS(3505), - [anon_sym_try] = ACTIONS(3505), - [anon_sym_return] = ACTIONS(3505), - [anon_sym_source] = ACTIONS(3505), - [anon_sym_source_DASHenv] = ACTIONS(3505), - [anon_sym_register] = ACTIONS(3505), - [anon_sym_hide] = ACTIONS(3505), - [anon_sym_hide_DASHenv] = ACTIONS(3505), - [anon_sym_overlay] = ACTIONS(3505), - [anon_sym_where] = ACTIONS(3505), - [anon_sym_not] = ACTIONS(3505), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3505), - [anon_sym_DOT_DOT_LT] = ACTIONS(3505), - [anon_sym_null] = ACTIONS(3505), - [anon_sym_true] = ACTIONS(3505), - [anon_sym_false] = ACTIONS(3505), - [aux_sym__val_number_decimal_token1] = ACTIONS(3505), - [aux_sym__val_number_decimal_token2] = ACTIONS(3505), - [anon_sym_DOT2] = ACTIONS(3505), - [aux_sym__val_number_decimal_token3] = ACTIONS(3505), - [aux_sym__val_number_token1] = ACTIONS(3505), - [aux_sym__val_number_token2] = ACTIONS(3505), - [aux_sym__val_number_token3] = ACTIONS(3505), - [aux_sym__val_number_token4] = ACTIONS(3505), - [aux_sym__val_number_token5] = ACTIONS(3505), - [aux_sym__val_number_token6] = ACTIONS(3505), - [anon_sym_0b] = ACTIONS(3505), - [anon_sym_0o] = ACTIONS(3505), - [anon_sym_0x] = ACTIONS(3505), - [sym_val_date] = ACTIONS(3505), - [anon_sym_DQUOTE] = ACTIONS(3505), - [sym__str_single_quotes] = ACTIONS(3505), - [sym__str_back_ticks] = ACTIONS(3505), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3505), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3505), - [anon_sym_CARET] = ACTIONS(3505), - [anon_sym_POUND] = ACTIONS(113), - }, - [2826] = { - [sym_comment] = STATE(2826), - [ts_builtin_sym_end] = ACTIONS(938), - [anon_sym_SEMI] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_STAR_STAR] = ACTIONS(936), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(936), - [anon_sym_SLASH_SLASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(936), - [anon_sym_bit_DASHshr] = ACTIONS(936), - [anon_sym_EQ_EQ] = ACTIONS(936), - [anon_sym_BANG_EQ] = ACTIONS(936), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(936), - [anon_sym_GT_EQ] = ACTIONS(936), - [anon_sym_not_DASHin] = ACTIONS(936), - [anon_sym_starts_DASHwith] = ACTIONS(936), - [anon_sym_ends_DASHwith] = ACTIONS(936), - [anon_sym_EQ_TILDE] = ACTIONS(936), - [anon_sym_BANG_TILDE] = ACTIONS(936), - [anon_sym_bit_DASHand] = ACTIONS(936), - [anon_sym_bit_DASHxor] = ACTIONS(936), - [anon_sym_bit_DASHor] = ACTIONS(936), - [anon_sym_and] = ACTIONS(936), - [anon_sym_xor] = ACTIONS(936), - [anon_sym_or] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [aux_sym__immediate_decimal_token1] = ACTIONS(6810), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [aux_sym_unquoted_token2] = ACTIONS(6812), - [anon_sym_POUND] = ACTIONS(113), - }, - [2827] = { - [sym_comment] = STATE(2827), - [ts_builtin_sym_end] = ACTIONS(6518), - [anon_sym_export] = ACTIONS(6516), - [anon_sym_alias] = ACTIONS(6516), - [anon_sym_let] = ACTIONS(6516), - [anon_sym_let_DASHenv] = ACTIONS(6516), - [anon_sym_mut] = ACTIONS(6516), - [anon_sym_const] = ACTIONS(6516), - [anon_sym_SEMI] = ACTIONS(6516), - [sym_cmd_identifier] = ACTIONS(6516), - [anon_sym_LF] = ACTIONS(6518), - [anon_sym_def] = ACTIONS(6516), - [anon_sym_export_DASHenv] = ACTIONS(6516), - [anon_sym_extern] = ACTIONS(6516), - [anon_sym_module] = ACTIONS(6516), - [anon_sym_use] = ACTIONS(6516), - [anon_sym_LBRACK] = ACTIONS(6516), - [anon_sym_LPAREN] = ACTIONS(6516), - [anon_sym_DOLLAR] = ACTIONS(6516), - [anon_sym_error] = ACTIONS(6516), - [anon_sym_DASH] = ACTIONS(6516), - [anon_sym_break] = ACTIONS(6516), - [anon_sym_continue] = ACTIONS(6516), - [anon_sym_for] = ACTIONS(6516), - [anon_sym_loop] = ACTIONS(6516), - [anon_sym_while] = ACTIONS(6516), - [anon_sym_do] = ACTIONS(6516), - [anon_sym_if] = ACTIONS(6516), - [anon_sym_match] = ACTIONS(6516), - [anon_sym_LBRACE] = ACTIONS(6516), - [anon_sym_DOT_DOT] = ACTIONS(6516), - [anon_sym_try] = ACTIONS(6516), - [anon_sym_return] = ACTIONS(6516), - [anon_sym_source] = ACTIONS(6516), - [anon_sym_source_DASHenv] = ACTIONS(6516), - [anon_sym_register] = ACTIONS(6516), - [anon_sym_hide] = ACTIONS(6516), - [anon_sym_hide_DASHenv] = ACTIONS(6516), - [anon_sym_overlay] = ACTIONS(6516), - [anon_sym_where] = ACTIONS(6516), - [anon_sym_not] = ACTIONS(6516), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6516), - [anon_sym_DOT_DOT_LT] = ACTIONS(6516), - [anon_sym_null] = ACTIONS(6516), - [anon_sym_true] = ACTIONS(6516), - [anon_sym_false] = ACTIONS(6516), - [aux_sym__val_number_decimal_token1] = ACTIONS(6516), - [aux_sym__val_number_decimal_token2] = ACTIONS(6516), - [anon_sym_DOT2] = ACTIONS(6516), - [aux_sym__val_number_decimal_token3] = ACTIONS(6516), - [aux_sym__val_number_token1] = ACTIONS(6516), - [aux_sym__val_number_token2] = ACTIONS(6516), - [aux_sym__val_number_token3] = ACTIONS(6516), - [aux_sym__val_number_token4] = ACTIONS(6516), - [aux_sym__val_number_token5] = ACTIONS(6516), - [aux_sym__val_number_token6] = ACTIONS(6516), - [anon_sym_0b] = ACTIONS(6516), - [anon_sym_0o] = ACTIONS(6516), - [anon_sym_0x] = ACTIONS(6516), - [sym_val_date] = ACTIONS(6516), - [anon_sym_DQUOTE] = ACTIONS(6516), - [sym__str_single_quotes] = ACTIONS(6516), - [sym__str_back_ticks] = ACTIONS(6516), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6516), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6516), - [anon_sym_CARET] = ACTIONS(6516), - [anon_sym_POUND] = ACTIONS(113), - }, - [2828] = { - [sym__immediate_decimal] = STATE(9346), - [sym_comment] = STATE(2828), - [anon_sym_LBRACK] = ACTIONS(938), - [anon_sym_LPAREN] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(938), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_STAR_STAR] = ACTIONS(938), - [anon_sym_PLUS_PLUS] = ACTIONS(938), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(938), - [anon_sym_SLASH_SLASH] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(938), - [anon_sym_bit_DASHshr] = ACTIONS(938), - [anon_sym_EQ_EQ] = ACTIONS(938), - [anon_sym_BANG_EQ] = ACTIONS(938), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(938), - [anon_sym_GT_EQ] = ACTIONS(938), - [anon_sym_not_DASHin] = ACTIONS(938), - [anon_sym_starts_DASHwith] = ACTIONS(938), - [anon_sym_ends_DASHwith] = ACTIONS(938), - [anon_sym_EQ_TILDE] = ACTIONS(938), - [anon_sym_BANG_TILDE] = ACTIONS(938), - [anon_sym_bit_DASHand] = ACTIONS(938), - [anon_sym_bit_DASHxor] = ACTIONS(938), - [anon_sym_bit_DASHor] = ACTIONS(938), - [anon_sym_and] = ACTIONS(938), - [anon_sym_xor] = ACTIONS(938), - [anon_sym_or] = ACTIONS(938), - [anon_sym_not] = ACTIONS(936), - [anon_sym_DOT] = ACTIONS(6814), - [anon_sym_DOT_DOT_EQ] = ACTIONS(938), - [anon_sym_DOT_DOT_LT] = ACTIONS(938), - [aux_sym__immediate_decimal_token1] = ACTIONS(942), - [aux_sym__immediate_decimal_token3] = ACTIONS(1582), - [aux_sym__immediate_decimal_token4] = ACTIONS(1584), - [anon_sym_null] = ACTIONS(938), - [anon_sym_true] = ACTIONS(938), - [anon_sym_false] = ACTIONS(938), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(938), - [aux_sym__val_number_token2] = ACTIONS(938), - [aux_sym__val_number_token3] = ACTIONS(938), - [aux_sym__val_number_token4] = ACTIONS(938), - [aux_sym__val_number_token5] = ACTIONS(938), - [aux_sym__val_number_token6] = ACTIONS(938), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(938), - [sym__str_single_quotes] = ACTIONS(938), - [sym__str_back_ticks] = ACTIONS(938), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(938), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(938), - [aux_sym_unquoted_token3] = ACTIONS(6816), - [aux_sym_unquoted_token5] = ACTIONS(6818), - [anon_sym_POUND] = ACTIONS(3), - }, - [2829] = { - [sym_comment] = STATE(2829), - [ts_builtin_sym_end] = ACTIONS(6367), - [anon_sym_export] = ACTIONS(6365), - [anon_sym_alias] = ACTIONS(6365), - [anon_sym_let] = ACTIONS(6365), - [anon_sym_let_DASHenv] = ACTIONS(6365), - [anon_sym_mut] = ACTIONS(6365), - [anon_sym_const] = ACTIONS(6365), - [anon_sym_SEMI] = ACTIONS(6365), - [sym_cmd_identifier] = ACTIONS(6365), - [anon_sym_LF] = ACTIONS(6367), - [anon_sym_def] = ACTIONS(6365), - [anon_sym_export_DASHenv] = ACTIONS(6365), - [anon_sym_extern] = ACTIONS(6365), - [anon_sym_module] = ACTIONS(6365), - [anon_sym_use] = ACTIONS(6365), - [anon_sym_LBRACK] = ACTIONS(6365), - [anon_sym_LPAREN] = ACTIONS(6365), - [anon_sym_DOLLAR] = ACTIONS(6365), - [anon_sym_error] = ACTIONS(6365), - [anon_sym_DASH] = ACTIONS(6365), - [anon_sym_break] = ACTIONS(6365), - [anon_sym_continue] = ACTIONS(6365), - [anon_sym_for] = ACTIONS(6365), - [anon_sym_loop] = ACTIONS(6365), - [anon_sym_while] = ACTIONS(6365), - [anon_sym_do] = ACTIONS(6365), - [anon_sym_if] = ACTIONS(6365), - [anon_sym_match] = ACTIONS(6365), - [anon_sym_LBRACE] = ACTIONS(6365), - [anon_sym_DOT_DOT] = ACTIONS(6365), - [anon_sym_try] = ACTIONS(6365), - [anon_sym_return] = ACTIONS(6365), - [anon_sym_source] = ACTIONS(6365), - [anon_sym_source_DASHenv] = ACTIONS(6365), - [anon_sym_register] = ACTIONS(6365), - [anon_sym_hide] = ACTIONS(6365), - [anon_sym_hide_DASHenv] = ACTIONS(6365), - [anon_sym_overlay] = ACTIONS(6365), - [anon_sym_where] = ACTIONS(6365), - [anon_sym_not] = ACTIONS(6365), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6365), - [anon_sym_DOT_DOT_LT] = ACTIONS(6365), - [anon_sym_null] = ACTIONS(6365), - [anon_sym_true] = ACTIONS(6365), - [anon_sym_false] = ACTIONS(6365), - [aux_sym__val_number_decimal_token1] = ACTIONS(6365), - [aux_sym__val_number_decimal_token2] = ACTIONS(6365), - [anon_sym_DOT2] = ACTIONS(6365), - [aux_sym__val_number_decimal_token3] = ACTIONS(6365), - [aux_sym__val_number_token1] = ACTIONS(6365), - [aux_sym__val_number_token2] = ACTIONS(6365), - [aux_sym__val_number_token3] = ACTIONS(6365), - [aux_sym__val_number_token4] = ACTIONS(6365), - [aux_sym__val_number_token5] = ACTIONS(6365), - [aux_sym__val_number_token6] = ACTIONS(6365), - [anon_sym_0b] = ACTIONS(6365), - [anon_sym_0o] = ACTIONS(6365), - [anon_sym_0x] = ACTIONS(6365), - [sym_val_date] = ACTIONS(6365), - [anon_sym_DQUOTE] = ACTIONS(6365), - [sym__str_single_quotes] = ACTIONS(6365), - [sym__str_back_ticks] = ACTIONS(6365), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6365), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6365), - [anon_sym_CARET] = ACTIONS(6365), - [anon_sym_POUND] = ACTIONS(113), - }, - [2830] = { - [sym_comment] = STATE(2830), - [ts_builtin_sym_end] = ACTIONS(6428), - [anon_sym_export] = ACTIONS(6426), - [anon_sym_alias] = ACTIONS(6426), - [anon_sym_let] = ACTIONS(6426), - [anon_sym_let_DASHenv] = ACTIONS(6426), - [anon_sym_mut] = ACTIONS(6426), - [anon_sym_const] = ACTIONS(6426), - [anon_sym_SEMI] = ACTIONS(6426), - [sym_cmd_identifier] = ACTIONS(6426), - [anon_sym_LF] = ACTIONS(6428), - [anon_sym_def] = ACTIONS(6426), - [anon_sym_export_DASHenv] = ACTIONS(6426), - [anon_sym_extern] = ACTIONS(6426), - [anon_sym_module] = ACTIONS(6426), - [anon_sym_use] = ACTIONS(6426), - [anon_sym_LBRACK] = ACTIONS(6426), - [anon_sym_LPAREN] = ACTIONS(6426), - [anon_sym_DOLLAR] = ACTIONS(6426), - [anon_sym_error] = ACTIONS(6426), - [anon_sym_DASH] = ACTIONS(6426), - [anon_sym_break] = ACTIONS(6426), - [anon_sym_continue] = ACTIONS(6426), - [anon_sym_for] = ACTIONS(6426), - [anon_sym_loop] = ACTIONS(6426), - [anon_sym_while] = ACTIONS(6426), - [anon_sym_do] = ACTIONS(6426), - [anon_sym_if] = ACTIONS(6426), - [anon_sym_match] = ACTIONS(6426), - [anon_sym_LBRACE] = ACTIONS(6426), - [anon_sym_DOT_DOT] = ACTIONS(6426), - [anon_sym_try] = ACTIONS(6426), - [anon_sym_return] = ACTIONS(6426), - [anon_sym_source] = ACTIONS(6426), - [anon_sym_source_DASHenv] = ACTIONS(6426), - [anon_sym_register] = ACTIONS(6426), - [anon_sym_hide] = ACTIONS(6426), - [anon_sym_hide_DASHenv] = ACTIONS(6426), - [anon_sym_overlay] = ACTIONS(6426), - [anon_sym_where] = ACTIONS(6426), - [anon_sym_not] = ACTIONS(6426), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6426), - [anon_sym_DOT_DOT_LT] = ACTIONS(6426), - [anon_sym_null] = ACTIONS(6426), - [anon_sym_true] = ACTIONS(6426), - [anon_sym_false] = ACTIONS(6426), - [aux_sym__val_number_decimal_token1] = ACTIONS(6426), - [aux_sym__val_number_decimal_token2] = ACTIONS(6426), - [anon_sym_DOT2] = ACTIONS(6426), - [aux_sym__val_number_decimal_token3] = ACTIONS(6426), - [aux_sym__val_number_token1] = ACTIONS(6426), - [aux_sym__val_number_token2] = ACTIONS(6426), - [aux_sym__val_number_token3] = ACTIONS(6426), - [aux_sym__val_number_token4] = ACTIONS(6426), - [aux_sym__val_number_token5] = ACTIONS(6426), - [aux_sym__val_number_token6] = ACTIONS(6426), - [anon_sym_0b] = ACTIONS(6426), - [anon_sym_0o] = ACTIONS(6426), - [anon_sym_0x] = ACTIONS(6426), - [sym_val_date] = ACTIONS(6426), - [anon_sym_DQUOTE] = ACTIONS(6426), - [sym__str_single_quotes] = ACTIONS(6426), - [sym__str_back_ticks] = ACTIONS(6426), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6426), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6426), - [anon_sym_CARET] = ACTIONS(6426), - [anon_sym_POUND] = ACTIONS(113), - }, - [2831] = { - [sym__expr_parenthesized_immediate] = STATE(3363), - [sym__immediate_decimal] = STATE(3364), - [sym_val_variable] = STATE(3363), - [sym__var] = STATE(3143), - [sym_comment] = STATE(2831), - [anon_sym_export] = ACTIONS(2387), - [anon_sym_alias] = ACTIONS(2387), - [anon_sym_let] = ACTIONS(2387), - [anon_sym_let_DASHenv] = ACTIONS(2387), - [anon_sym_mut] = ACTIONS(2387), - [anon_sym_const] = ACTIONS(2387), - [sym_cmd_identifier] = ACTIONS(2387), - [anon_sym_def] = ACTIONS(2387), - [anon_sym_export_DASHenv] = ACTIONS(2387), - [anon_sym_extern] = ACTIONS(2387), - [anon_sym_module] = ACTIONS(2387), - [anon_sym_use] = ACTIONS(2387), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_DOLLAR] = ACTIONS(6770), - [anon_sym_error] = ACTIONS(2387), - [anon_sym_list] = ACTIONS(2387), - [anon_sym_DASH] = ACTIONS(2387), - [anon_sym_break] = ACTIONS(2387), - [anon_sym_continue] = ACTIONS(2387), - [anon_sym_for] = ACTIONS(2387), - [anon_sym_in] = ACTIONS(2387), - [anon_sym_loop] = ACTIONS(2387), - [anon_sym_make] = ACTIONS(2387), - [anon_sym_while] = ACTIONS(2387), - [anon_sym_do] = ACTIONS(2387), - [anon_sym_if] = ACTIONS(2387), - [anon_sym_else] = ACTIONS(2387), - [anon_sym_match] = ACTIONS(2387), - [anon_sym_RBRACE] = ACTIONS(2387), - [anon_sym_try] = ACTIONS(2387), - [anon_sym_catch] = ACTIONS(2387), - [anon_sym_return] = ACTIONS(2387), - [anon_sym_source] = ACTIONS(2387), - [anon_sym_source_DASHenv] = ACTIONS(2387), - [anon_sym_register] = ACTIONS(2387), - [anon_sym_hide] = ACTIONS(2387), - [anon_sym_hide_DASHenv] = ACTIONS(2387), - [anon_sym_overlay] = ACTIONS(2387), - [anon_sym_new] = ACTIONS(2387), - [anon_sym_as] = ACTIONS(2387), - [anon_sym_PLUS] = ACTIONS(2387), - [anon_sym_LPAREN2] = ACTIONS(6772), - [anon_sym_DOT] = ACTIONS(6820), - [aux_sym__immediate_decimal_token1] = ACTIONS(6776), - [aux_sym__immediate_decimal_token3] = ACTIONS(6776), - [aux_sym__immediate_decimal_token4] = ACTIONS(6778), - [aux_sym__val_number_decimal_token1] = ACTIONS(2387), - [aux_sym__val_number_decimal_token2] = ACTIONS(2387), - [anon_sym_DOT2] = ACTIONS(2387), - [aux_sym__val_number_decimal_token3] = 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(2387), - [aux_sym__val_number_token5] = ACTIONS(2387), - [aux_sym__val_number_token6] = ACTIONS(2387), - [anon_sym_DQUOTE] = ACTIONS(2387), - [sym__str_single_quotes] = ACTIONS(2387), - [sym__str_back_ticks] = ACTIONS(2387), - [sym__entry_separator] = ACTIONS(2389), - [aux_sym__record_key_token2] = ACTIONS(2387), - [anon_sym_POUND] = ACTIONS(113), - }, - [2832] = { - [sym__expr_parenthesized_immediate] = STATE(3520), - [sym__immediate_decimal] = STATE(3521), - [sym_val_variable] = STATE(3520), - [sym__var] = STATE(3368), - [sym_comment] = STATE(2832), - [anon_sym_export] = ACTIONS(2387), - [anon_sym_alias] = ACTIONS(2387), - [anon_sym_let] = ACTIONS(2387), - [anon_sym_let_DASHenv] = ACTIONS(2387), - [anon_sym_mut] = ACTIONS(2387), - [anon_sym_const] = ACTIONS(2387), - [sym_cmd_identifier] = ACTIONS(2387), - [anon_sym_def] = ACTIONS(2387), - [anon_sym_export_DASHenv] = ACTIONS(2387), - [anon_sym_extern] = ACTIONS(2387), - [anon_sym_module] = ACTIONS(2387), - [anon_sym_use] = ACTIONS(2387), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_DOLLAR] = ACTIONS(6780), - [anon_sym_error] = ACTIONS(2387), - [anon_sym_list] = ACTIONS(2387), - [anon_sym_DASH] = ACTIONS(2387), - [anon_sym_break] = ACTIONS(2387), - [anon_sym_continue] = ACTIONS(2387), - [anon_sym_for] = ACTIONS(2387), - [anon_sym_in] = ACTIONS(2387), - [anon_sym_loop] = ACTIONS(2387), - [anon_sym_make] = ACTIONS(2387), - [anon_sym_while] = ACTIONS(2387), - [anon_sym_do] = ACTIONS(2387), - [anon_sym_if] = ACTIONS(2387), - [anon_sym_else] = ACTIONS(2387), - [anon_sym_match] = ACTIONS(2387), - [anon_sym_RBRACE] = ACTIONS(2387), - [anon_sym_try] = ACTIONS(2387), - [anon_sym_catch] = ACTIONS(2387), - [anon_sym_return] = ACTIONS(2387), - [anon_sym_source] = ACTIONS(2387), - [anon_sym_source_DASHenv] = ACTIONS(2387), - [anon_sym_register] = ACTIONS(2387), - [anon_sym_hide] = ACTIONS(2387), - [anon_sym_hide_DASHenv] = ACTIONS(2387), - [anon_sym_overlay] = ACTIONS(2387), - [anon_sym_new] = ACTIONS(2387), - [anon_sym_as] = ACTIONS(2387), - [anon_sym_PLUS] = ACTIONS(2387), - [anon_sym_LPAREN2] = ACTIONS(6782), - [anon_sym_DOT] = ACTIONS(6784), - [aux_sym__immediate_decimal_token1] = ACTIONS(6786), - [aux_sym__immediate_decimal_token3] = ACTIONS(6786), - [aux_sym__immediate_decimal_token4] = ACTIONS(6788), - [aux_sym__val_number_decimal_token1] = ACTIONS(2387), - [aux_sym__val_number_decimal_token2] = ACTIONS(2387), - [anon_sym_DOT2] = ACTIONS(2387), - [aux_sym__val_number_decimal_token3] = 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(2387), - [aux_sym__val_number_token5] = ACTIONS(2387), - [aux_sym__val_number_token6] = ACTIONS(2387), - [anon_sym_DQUOTE] = ACTIONS(2387), - [sym__str_single_quotes] = ACTIONS(2387), - [sym__str_back_ticks] = ACTIONS(2387), - [sym__entry_separator] = ACTIONS(2389), - [aux_sym__record_key_token2] = ACTIONS(2387), - [anon_sym_POUND] = ACTIONS(113), - }, - [2833] = { - [sym_comment] = STATE(2833), - [ts_builtin_sym_end] = ACTIONS(6432), - [anon_sym_export] = ACTIONS(6430), - [anon_sym_alias] = ACTIONS(6430), - [anon_sym_let] = ACTIONS(6430), - [anon_sym_let_DASHenv] = ACTIONS(6430), - [anon_sym_mut] = ACTIONS(6430), - [anon_sym_const] = ACTIONS(6430), - [anon_sym_SEMI] = ACTIONS(6430), - [sym_cmd_identifier] = ACTIONS(6430), - [anon_sym_LF] = ACTIONS(6432), - [anon_sym_def] = ACTIONS(6430), - [anon_sym_export_DASHenv] = ACTIONS(6430), - [anon_sym_extern] = ACTIONS(6430), - [anon_sym_module] = ACTIONS(6430), - [anon_sym_use] = ACTIONS(6430), - [anon_sym_LBRACK] = ACTIONS(6430), - [anon_sym_LPAREN] = ACTIONS(6430), - [anon_sym_DOLLAR] = ACTIONS(6430), - [anon_sym_error] = ACTIONS(6430), - [anon_sym_DASH] = ACTIONS(6430), - [anon_sym_break] = ACTIONS(6430), - [anon_sym_continue] = ACTIONS(6430), - [anon_sym_for] = ACTIONS(6430), - [anon_sym_loop] = ACTIONS(6430), - [anon_sym_while] = ACTIONS(6430), - [anon_sym_do] = ACTIONS(6430), - [anon_sym_if] = ACTIONS(6430), - [anon_sym_match] = ACTIONS(6430), - [anon_sym_LBRACE] = ACTIONS(6430), - [anon_sym_DOT_DOT] = ACTIONS(6430), - [anon_sym_try] = ACTIONS(6430), - [anon_sym_return] = ACTIONS(6430), - [anon_sym_source] = ACTIONS(6430), - [anon_sym_source_DASHenv] = ACTIONS(6430), - [anon_sym_register] = ACTIONS(6430), - [anon_sym_hide] = ACTIONS(6430), - [anon_sym_hide_DASHenv] = ACTIONS(6430), - [anon_sym_overlay] = ACTIONS(6430), - [anon_sym_where] = ACTIONS(6430), - [anon_sym_not] = ACTIONS(6430), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6430), - [anon_sym_DOT_DOT_LT] = ACTIONS(6430), - [anon_sym_null] = ACTIONS(6430), - [anon_sym_true] = ACTIONS(6430), - [anon_sym_false] = ACTIONS(6430), - [aux_sym__val_number_decimal_token1] = ACTIONS(6430), - [aux_sym__val_number_decimal_token2] = ACTIONS(6430), - [anon_sym_DOT2] = ACTIONS(6430), - [aux_sym__val_number_decimal_token3] = ACTIONS(6430), - [aux_sym__val_number_token1] = ACTIONS(6430), - [aux_sym__val_number_token2] = ACTIONS(6430), - [aux_sym__val_number_token3] = ACTIONS(6430), - [aux_sym__val_number_token4] = ACTIONS(6430), - [aux_sym__val_number_token5] = ACTIONS(6430), - [aux_sym__val_number_token6] = ACTIONS(6430), - [anon_sym_0b] = ACTIONS(6430), - [anon_sym_0o] = ACTIONS(6430), - [anon_sym_0x] = ACTIONS(6430), - [sym_val_date] = ACTIONS(6430), - [anon_sym_DQUOTE] = ACTIONS(6430), - [sym__str_single_quotes] = ACTIONS(6430), - [sym__str_back_ticks] = ACTIONS(6430), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6430), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6430), - [anon_sym_CARET] = ACTIONS(6430), - [anon_sym_POUND] = ACTIONS(113), - }, - [2834] = { - [sym_comment] = STATE(2834), - [ts_builtin_sym_end] = ACTIONS(3951), - [anon_sym_export] = ACTIONS(3949), - [anon_sym_alias] = ACTIONS(3949), - [anon_sym_let] = ACTIONS(3949), - [anon_sym_let_DASHenv] = ACTIONS(3949), - [anon_sym_mut] = ACTIONS(3949), - [anon_sym_const] = ACTIONS(3949), - [anon_sym_SEMI] = ACTIONS(3949), - [sym_cmd_identifier] = ACTIONS(3949), - [anon_sym_LF] = ACTIONS(3951), - [anon_sym_def] = ACTIONS(3949), - [anon_sym_export_DASHenv] = ACTIONS(3949), - [anon_sym_extern] = ACTIONS(3949), - [anon_sym_module] = ACTIONS(3949), - [anon_sym_use] = ACTIONS(3949), - [anon_sym_LBRACK] = ACTIONS(3949), - [anon_sym_LPAREN] = ACTIONS(3949), - [anon_sym_DOLLAR] = ACTIONS(3949), - [anon_sym_error] = ACTIONS(3949), - [anon_sym_DASH] = ACTIONS(3949), - [anon_sym_break] = ACTIONS(3949), - [anon_sym_continue] = ACTIONS(3949), - [anon_sym_for] = ACTIONS(3949), - [anon_sym_loop] = ACTIONS(3949), - [anon_sym_while] = ACTIONS(3949), - [anon_sym_do] = ACTIONS(3949), - [anon_sym_if] = ACTIONS(3949), - [anon_sym_match] = ACTIONS(3949), - [anon_sym_LBRACE] = ACTIONS(3949), - [anon_sym_DOT_DOT] = ACTIONS(3949), - [anon_sym_try] = ACTIONS(3949), - [anon_sym_return] = ACTIONS(3949), - [anon_sym_source] = ACTIONS(3949), - [anon_sym_source_DASHenv] = ACTIONS(3949), - [anon_sym_register] = ACTIONS(3949), - [anon_sym_hide] = ACTIONS(3949), - [anon_sym_hide_DASHenv] = ACTIONS(3949), - [anon_sym_overlay] = ACTIONS(3949), - [anon_sym_where] = ACTIONS(3949), - [anon_sym_not] = ACTIONS(3949), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3949), - [anon_sym_DOT_DOT_LT] = ACTIONS(3949), - [anon_sym_null] = ACTIONS(3949), - [anon_sym_true] = ACTIONS(3949), - [anon_sym_false] = ACTIONS(3949), - [aux_sym__val_number_decimal_token1] = ACTIONS(3949), - [aux_sym__val_number_decimal_token2] = ACTIONS(3949), - [anon_sym_DOT2] = ACTIONS(3949), - [aux_sym__val_number_decimal_token3] = ACTIONS(3949), - [aux_sym__val_number_token1] = ACTIONS(3949), - [aux_sym__val_number_token2] = ACTIONS(3949), - [aux_sym__val_number_token3] = ACTIONS(3949), - [aux_sym__val_number_token4] = ACTIONS(3949), - [aux_sym__val_number_token5] = ACTIONS(3949), - [aux_sym__val_number_token6] = ACTIONS(3949), - [anon_sym_0b] = ACTIONS(3949), - [anon_sym_0o] = ACTIONS(3949), - [anon_sym_0x] = ACTIONS(3949), - [sym_val_date] = ACTIONS(3949), - [anon_sym_DQUOTE] = ACTIONS(3949), - [sym__str_single_quotes] = ACTIONS(3949), - [sym__str_back_ticks] = ACTIONS(3949), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3949), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3949), - [anon_sym_CARET] = ACTIONS(3949), - [anon_sym_POUND] = ACTIONS(113), - }, - [2835] = { - [sym_comment] = STATE(2835), - [ts_builtin_sym_end] = ACTIONS(6526), - [anon_sym_export] = ACTIONS(6524), - [anon_sym_alias] = ACTIONS(6524), - [anon_sym_let] = ACTIONS(6524), - [anon_sym_let_DASHenv] = ACTIONS(6524), - [anon_sym_mut] = ACTIONS(6524), - [anon_sym_const] = ACTIONS(6524), - [anon_sym_SEMI] = ACTIONS(6524), - [sym_cmd_identifier] = ACTIONS(6524), - [anon_sym_LF] = ACTIONS(6526), - [anon_sym_def] = ACTIONS(6524), - [anon_sym_export_DASHenv] = ACTIONS(6524), - [anon_sym_extern] = ACTIONS(6524), - [anon_sym_module] = ACTIONS(6524), - [anon_sym_use] = ACTIONS(6524), - [anon_sym_LBRACK] = ACTIONS(6524), - [anon_sym_LPAREN] = ACTIONS(6524), - [anon_sym_DOLLAR] = ACTIONS(6524), - [anon_sym_error] = ACTIONS(6524), - [anon_sym_DASH] = ACTIONS(6524), - [anon_sym_break] = ACTIONS(6524), - [anon_sym_continue] = ACTIONS(6524), - [anon_sym_for] = ACTIONS(6524), - [anon_sym_loop] = ACTIONS(6524), - [anon_sym_while] = ACTIONS(6524), - [anon_sym_do] = ACTIONS(6524), - [anon_sym_if] = ACTIONS(6524), - [anon_sym_match] = ACTIONS(6524), - [anon_sym_LBRACE] = ACTIONS(6524), - [anon_sym_DOT_DOT] = ACTIONS(6524), - [anon_sym_try] = ACTIONS(6524), - [anon_sym_return] = ACTIONS(6524), - [anon_sym_source] = ACTIONS(6524), - [anon_sym_source_DASHenv] = ACTIONS(6524), - [anon_sym_register] = ACTIONS(6524), - [anon_sym_hide] = ACTIONS(6524), - [anon_sym_hide_DASHenv] = ACTIONS(6524), - [anon_sym_overlay] = ACTIONS(6524), - [anon_sym_where] = ACTIONS(6524), - [anon_sym_not] = ACTIONS(6524), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6524), - [anon_sym_DOT_DOT_LT] = ACTIONS(6524), - [anon_sym_null] = ACTIONS(6524), - [anon_sym_true] = ACTIONS(6524), - [anon_sym_false] = ACTIONS(6524), - [aux_sym__val_number_decimal_token1] = ACTIONS(6524), - [aux_sym__val_number_decimal_token2] = ACTIONS(6524), - [anon_sym_DOT2] = ACTIONS(6524), - [aux_sym__val_number_decimal_token3] = ACTIONS(6524), - [aux_sym__val_number_token1] = ACTIONS(6524), - [aux_sym__val_number_token2] = ACTIONS(6524), - [aux_sym__val_number_token3] = ACTIONS(6524), - [aux_sym__val_number_token4] = ACTIONS(6524), - [aux_sym__val_number_token5] = ACTIONS(6524), - [aux_sym__val_number_token6] = ACTIONS(6524), - [anon_sym_0b] = ACTIONS(6524), - [anon_sym_0o] = ACTIONS(6524), - [anon_sym_0x] = ACTIONS(6524), - [sym_val_date] = ACTIONS(6524), - [anon_sym_DQUOTE] = ACTIONS(6524), - [sym__str_single_quotes] = ACTIONS(6524), - [sym__str_back_ticks] = ACTIONS(6524), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6524), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6524), - [anon_sym_CARET] = ACTIONS(6524), - [anon_sym_POUND] = ACTIONS(113), - }, - [2836] = { - [sym_comment] = STATE(2836), - [ts_builtin_sym_end] = ACTIONS(3966), - [anon_sym_export] = ACTIONS(3964), - [anon_sym_alias] = ACTIONS(3964), - [anon_sym_let] = ACTIONS(3964), - [anon_sym_let_DASHenv] = ACTIONS(3964), - [anon_sym_mut] = ACTIONS(3964), - [anon_sym_const] = ACTIONS(3964), - [anon_sym_SEMI] = ACTIONS(3964), - [sym_cmd_identifier] = ACTIONS(3964), - [anon_sym_LF] = ACTIONS(3966), - [anon_sym_def] = ACTIONS(3964), - [anon_sym_export_DASHenv] = ACTIONS(3964), - [anon_sym_extern] = ACTIONS(3964), - [anon_sym_module] = ACTIONS(3964), - [anon_sym_use] = ACTIONS(3964), - [anon_sym_LBRACK] = ACTIONS(3964), - [anon_sym_LPAREN] = ACTIONS(3964), - [anon_sym_DOLLAR] = ACTIONS(3964), - [anon_sym_error] = ACTIONS(3964), - [anon_sym_DASH] = ACTIONS(3964), - [anon_sym_break] = ACTIONS(3964), - [anon_sym_continue] = ACTIONS(3964), - [anon_sym_for] = ACTIONS(3964), - [anon_sym_loop] = ACTIONS(3964), - [anon_sym_while] = ACTIONS(3964), - [anon_sym_do] = ACTIONS(3964), - [anon_sym_if] = ACTIONS(3964), - [anon_sym_match] = ACTIONS(3964), - [anon_sym_LBRACE] = ACTIONS(3964), - [anon_sym_DOT_DOT] = ACTIONS(3964), - [anon_sym_try] = ACTIONS(3964), - [anon_sym_return] = ACTIONS(3964), - [anon_sym_source] = ACTIONS(3964), - [anon_sym_source_DASHenv] = ACTIONS(3964), - [anon_sym_register] = ACTIONS(3964), - [anon_sym_hide] = ACTIONS(3964), - [anon_sym_hide_DASHenv] = ACTIONS(3964), - [anon_sym_overlay] = ACTIONS(3964), - [anon_sym_where] = ACTIONS(3964), - [anon_sym_not] = ACTIONS(3964), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3964), - [anon_sym_DOT_DOT_LT] = ACTIONS(3964), - [anon_sym_null] = ACTIONS(3964), - [anon_sym_true] = ACTIONS(3964), - [anon_sym_false] = ACTIONS(3964), - [aux_sym__val_number_decimal_token1] = ACTIONS(3964), - [aux_sym__val_number_decimal_token2] = ACTIONS(3964), - [anon_sym_DOT2] = ACTIONS(3964), - [aux_sym__val_number_decimal_token3] = ACTIONS(3964), - [aux_sym__val_number_token1] = ACTIONS(3964), - [aux_sym__val_number_token2] = ACTIONS(3964), - [aux_sym__val_number_token3] = ACTIONS(3964), - [aux_sym__val_number_token4] = ACTIONS(3964), - [aux_sym__val_number_token5] = ACTIONS(3964), - [aux_sym__val_number_token6] = ACTIONS(3964), - [anon_sym_0b] = ACTIONS(3964), - [anon_sym_0o] = ACTIONS(3964), - [anon_sym_0x] = ACTIONS(3964), - [sym_val_date] = ACTIONS(3964), - [anon_sym_DQUOTE] = ACTIONS(3964), - [sym__str_single_quotes] = ACTIONS(3964), - [sym__str_back_ticks] = ACTIONS(3964), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3964), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3964), - [anon_sym_CARET] = ACTIONS(3964), - [anon_sym_POUND] = ACTIONS(113), - }, - [2837] = { - [sym__expr_parenthesized_immediate] = STATE(3531), - [sym__immediate_decimal] = STATE(3534), - [sym_val_variable] = STATE(3531), - [sym__var] = STATE(3368), - [sym_comment] = STATE(2837), - [anon_sym_export] = ACTIONS(2349), - [anon_sym_alias] = ACTIONS(2349), - [anon_sym_let] = ACTIONS(2349), - [anon_sym_let_DASHenv] = ACTIONS(2349), - [anon_sym_mut] = ACTIONS(2349), - [anon_sym_const] = ACTIONS(2349), - [sym_cmd_identifier] = ACTIONS(2349), - [anon_sym_def] = ACTIONS(2349), - [anon_sym_export_DASHenv] = ACTIONS(2349), - [anon_sym_extern] = ACTIONS(2349), - [anon_sym_module] = ACTIONS(2349), - [anon_sym_use] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(2349), - [anon_sym_DOLLAR] = ACTIONS(6780), - [anon_sym_error] = ACTIONS(2349), - [anon_sym_list] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2349), - [anon_sym_break] = ACTIONS(2349), - [anon_sym_continue] = ACTIONS(2349), - [anon_sym_for] = ACTIONS(2349), - [anon_sym_in] = ACTIONS(2349), - [anon_sym_loop] = ACTIONS(2349), - [anon_sym_make] = ACTIONS(2349), - [anon_sym_while] = ACTIONS(2349), - [anon_sym_do] = ACTIONS(2349), - [anon_sym_if] = ACTIONS(2349), - [anon_sym_else] = ACTIONS(2349), - [anon_sym_match] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_try] = ACTIONS(2349), - [anon_sym_catch] = ACTIONS(2349), - [anon_sym_return] = ACTIONS(2349), - [anon_sym_source] = ACTIONS(2349), - [anon_sym_source_DASHenv] = ACTIONS(2349), - [anon_sym_register] = ACTIONS(2349), - [anon_sym_hide] = ACTIONS(2349), - [anon_sym_hide_DASHenv] = ACTIONS(2349), - [anon_sym_overlay] = ACTIONS(2349), - [anon_sym_new] = ACTIONS(2349), - [anon_sym_as] = ACTIONS(2349), - [anon_sym_PLUS] = ACTIONS(2349), - [anon_sym_LPAREN2] = ACTIONS(6782), - [anon_sym_DOT] = ACTIONS(6784), - [aux_sym__immediate_decimal_token1] = ACTIONS(6786), - [aux_sym__immediate_decimal_token3] = ACTIONS(6786), - [aux_sym__immediate_decimal_token4] = ACTIONS(6788), - [aux_sym__val_number_decimal_token1] = ACTIONS(2349), - [aux_sym__val_number_decimal_token2] = ACTIONS(2349), - [anon_sym_DOT2] = ACTIONS(2349), - [aux_sym__val_number_decimal_token3] = ACTIONS(2349), - [aux_sym__val_number_token1] = ACTIONS(2349), - [aux_sym__val_number_token2] = ACTIONS(2349), - [aux_sym__val_number_token3] = ACTIONS(2349), - [aux_sym__val_number_token4] = ACTIONS(2349), - [aux_sym__val_number_token5] = ACTIONS(2349), - [aux_sym__val_number_token6] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym__str_single_quotes] = ACTIONS(2349), - [sym__str_back_ticks] = ACTIONS(2349), - [sym__entry_separator] = ACTIONS(2351), - [aux_sym__record_key_token2] = ACTIONS(2349), - [anon_sym_POUND] = ACTIONS(113), - }, - [2838] = { - [sym__expr_parenthesized_immediate] = STATE(3536), - [sym__immediate_decimal] = STATE(3538), - [sym_val_variable] = STATE(3536), - [sym__var] = STATE(3368), - [sym_comment] = STATE(2838), - [anon_sym_export] = ACTIONS(2359), - [anon_sym_alias] = ACTIONS(2359), - [anon_sym_let] = ACTIONS(2359), - [anon_sym_let_DASHenv] = ACTIONS(2359), - [anon_sym_mut] = ACTIONS(2359), - [anon_sym_const] = ACTIONS(2359), - [sym_cmd_identifier] = ACTIONS(2359), - [anon_sym_def] = ACTIONS(2359), - [anon_sym_export_DASHenv] = ACTIONS(2359), - [anon_sym_extern] = ACTIONS(2359), - [anon_sym_module] = ACTIONS(2359), - [anon_sym_use] = ACTIONS(2359), - [anon_sym_LPAREN] = ACTIONS(2359), - [anon_sym_DOLLAR] = ACTIONS(6780), - [anon_sym_error] = ACTIONS(2359), - [anon_sym_list] = ACTIONS(2359), - [anon_sym_DASH] = ACTIONS(2359), - [anon_sym_break] = ACTIONS(2359), - [anon_sym_continue] = ACTIONS(2359), - [anon_sym_for] = ACTIONS(2359), - [anon_sym_in] = ACTIONS(2359), - [anon_sym_loop] = ACTIONS(2359), - [anon_sym_make] = ACTIONS(2359), - [anon_sym_while] = ACTIONS(2359), - [anon_sym_do] = ACTIONS(2359), - [anon_sym_if] = ACTIONS(2359), - [anon_sym_else] = ACTIONS(2359), - [anon_sym_match] = ACTIONS(2359), - [anon_sym_RBRACE] = ACTIONS(2359), - [anon_sym_try] = ACTIONS(2359), - [anon_sym_catch] = ACTIONS(2359), - [anon_sym_return] = ACTIONS(2359), - [anon_sym_source] = ACTIONS(2359), - [anon_sym_source_DASHenv] = ACTIONS(2359), - [anon_sym_register] = ACTIONS(2359), - [anon_sym_hide] = ACTIONS(2359), - [anon_sym_hide_DASHenv] = ACTIONS(2359), - [anon_sym_overlay] = ACTIONS(2359), - [anon_sym_new] = ACTIONS(2359), - [anon_sym_as] = ACTIONS(2359), - [anon_sym_PLUS] = ACTIONS(2359), - [anon_sym_LPAREN2] = ACTIONS(6782), - [anon_sym_DOT] = ACTIONS(6784), - [aux_sym__immediate_decimal_token1] = ACTIONS(6786), - [aux_sym__immediate_decimal_token3] = ACTIONS(6786), - [aux_sym__immediate_decimal_token4] = ACTIONS(6788), - [aux_sym__val_number_decimal_token1] = ACTIONS(2359), - [aux_sym__val_number_decimal_token2] = ACTIONS(2359), - [anon_sym_DOT2] = ACTIONS(2359), - [aux_sym__val_number_decimal_token3] = ACTIONS(2359), - [aux_sym__val_number_token1] = ACTIONS(2359), - [aux_sym__val_number_token2] = ACTIONS(2359), - [aux_sym__val_number_token3] = ACTIONS(2359), - [aux_sym__val_number_token4] = ACTIONS(2359), - [aux_sym__val_number_token5] = ACTIONS(2359), - [aux_sym__val_number_token6] = ACTIONS(2359), - [anon_sym_DQUOTE] = ACTIONS(2359), - [sym__str_single_quotes] = ACTIONS(2359), - [sym__str_back_ticks] = ACTIONS(2359), - [sym__entry_separator] = ACTIONS(2361), - [aux_sym__record_key_token2] = ACTIONS(2359), - [anon_sym_POUND] = ACTIONS(113), - }, - [2839] = { - [sym_comment] = STATE(2839), - [ts_builtin_sym_end] = ACTIONS(4045), - [anon_sym_export] = ACTIONS(4043), - [anon_sym_alias] = ACTIONS(4043), - [anon_sym_let] = ACTIONS(4043), - [anon_sym_let_DASHenv] = ACTIONS(4043), - [anon_sym_mut] = ACTIONS(4043), - [anon_sym_const] = ACTIONS(4043), - [anon_sym_SEMI] = ACTIONS(4043), - [sym_cmd_identifier] = ACTIONS(4043), - [anon_sym_LF] = ACTIONS(4045), - [anon_sym_def] = ACTIONS(4043), - [anon_sym_export_DASHenv] = ACTIONS(4043), - [anon_sym_extern] = ACTIONS(4043), - [anon_sym_module] = ACTIONS(4043), - [anon_sym_use] = ACTIONS(4043), - [anon_sym_LBRACK] = ACTIONS(4043), - [anon_sym_LPAREN] = ACTIONS(4043), - [anon_sym_DOLLAR] = ACTIONS(4043), - [anon_sym_error] = ACTIONS(4043), - [anon_sym_DASH] = ACTIONS(4043), - [anon_sym_break] = ACTIONS(4043), - [anon_sym_continue] = ACTIONS(4043), - [anon_sym_for] = ACTIONS(4043), - [anon_sym_loop] = ACTIONS(4043), - [anon_sym_while] = ACTIONS(4043), - [anon_sym_do] = ACTIONS(4043), - [anon_sym_if] = ACTIONS(4043), - [anon_sym_match] = ACTIONS(4043), - [anon_sym_LBRACE] = ACTIONS(4043), - [anon_sym_DOT_DOT] = ACTIONS(4043), - [anon_sym_try] = ACTIONS(4043), - [anon_sym_return] = ACTIONS(4043), - [anon_sym_source] = ACTIONS(4043), - [anon_sym_source_DASHenv] = ACTIONS(4043), - [anon_sym_register] = ACTIONS(4043), - [anon_sym_hide] = ACTIONS(4043), - [anon_sym_hide_DASHenv] = ACTIONS(4043), - [anon_sym_overlay] = ACTIONS(4043), - [anon_sym_where] = ACTIONS(4043), - [anon_sym_not] = ACTIONS(4043), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4043), - [anon_sym_DOT_DOT_LT] = ACTIONS(4043), - [anon_sym_null] = ACTIONS(4043), - [anon_sym_true] = ACTIONS(4043), - [anon_sym_false] = ACTIONS(4043), - [aux_sym__val_number_decimal_token1] = ACTIONS(4043), - [aux_sym__val_number_decimal_token2] = ACTIONS(4043), - [anon_sym_DOT2] = ACTIONS(4043), - [aux_sym__val_number_decimal_token3] = ACTIONS(4043), - [aux_sym__val_number_token1] = ACTIONS(4043), - [aux_sym__val_number_token2] = ACTIONS(4043), - [aux_sym__val_number_token3] = ACTIONS(4043), - [aux_sym__val_number_token4] = ACTIONS(4043), - [aux_sym__val_number_token5] = ACTIONS(4043), - [aux_sym__val_number_token6] = ACTIONS(4043), - [anon_sym_0b] = ACTIONS(4043), - [anon_sym_0o] = ACTIONS(4043), - [anon_sym_0x] = ACTIONS(4043), - [sym_val_date] = ACTIONS(4043), - [anon_sym_DQUOTE] = ACTIONS(4043), - [sym__str_single_quotes] = ACTIONS(4043), - [sym__str_back_ticks] = ACTIONS(4043), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4043), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4043), - [anon_sym_CARET] = ACTIONS(4043), - [anon_sym_POUND] = ACTIONS(113), - }, - [2840] = { - [sym__expr_parenthesized_immediate] = STATE(3539), - [sym__immediate_decimal] = STATE(3541), - [sym_val_variable] = STATE(3539), - [sym__var] = STATE(3368), - [sym_comment] = STATE(2840), - [anon_sym_export] = ACTIONS(2383), - [anon_sym_alias] = ACTIONS(2383), - [anon_sym_let] = ACTIONS(2383), - [anon_sym_let_DASHenv] = ACTIONS(2383), - [anon_sym_mut] = ACTIONS(2383), - [anon_sym_const] = ACTIONS(2383), - [sym_cmd_identifier] = ACTIONS(2383), - [anon_sym_def] = ACTIONS(2383), - [anon_sym_export_DASHenv] = ACTIONS(2383), - [anon_sym_extern] = ACTIONS(2383), - [anon_sym_module] = ACTIONS(2383), - [anon_sym_use] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2383), - [anon_sym_DOLLAR] = ACTIONS(6780), - [anon_sym_error] = ACTIONS(2383), - [anon_sym_list] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2383), - [anon_sym_break] = ACTIONS(2383), - [anon_sym_continue] = ACTIONS(2383), - [anon_sym_for] = ACTIONS(2383), - [anon_sym_in] = ACTIONS(2383), - [anon_sym_loop] = ACTIONS(2383), - [anon_sym_make] = ACTIONS(2383), - [anon_sym_while] = ACTIONS(2383), - [anon_sym_do] = ACTIONS(2383), - [anon_sym_if] = ACTIONS(2383), - [anon_sym_else] = ACTIONS(2383), - [anon_sym_match] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(2383), - [anon_sym_try] = ACTIONS(2383), - [anon_sym_catch] = ACTIONS(2383), - [anon_sym_return] = ACTIONS(2383), - [anon_sym_source] = ACTIONS(2383), - [anon_sym_source_DASHenv] = ACTIONS(2383), - [anon_sym_register] = ACTIONS(2383), - [anon_sym_hide] = ACTIONS(2383), - [anon_sym_hide_DASHenv] = ACTIONS(2383), - [anon_sym_overlay] = ACTIONS(2383), - [anon_sym_new] = ACTIONS(2383), - [anon_sym_as] = ACTIONS(2383), - [anon_sym_PLUS] = ACTIONS(2383), - [anon_sym_LPAREN2] = ACTIONS(6782), - [anon_sym_DOT] = ACTIONS(6784), - [aux_sym__immediate_decimal_token1] = ACTIONS(6786), - [aux_sym__immediate_decimal_token3] = ACTIONS(6786), - [aux_sym__immediate_decimal_token4] = ACTIONS(6788), - [aux_sym__val_number_decimal_token1] = ACTIONS(2383), - [aux_sym__val_number_decimal_token2] = ACTIONS(2383), - [anon_sym_DOT2] = ACTIONS(2383), - [aux_sym__val_number_decimal_token3] = ACTIONS(2383), - [aux_sym__val_number_token1] = ACTIONS(2383), - [aux_sym__val_number_token2] = ACTIONS(2383), - [aux_sym__val_number_token3] = ACTIONS(2383), - [aux_sym__val_number_token4] = ACTIONS(2383), - [aux_sym__val_number_token5] = ACTIONS(2383), - [aux_sym__val_number_token6] = ACTIONS(2383), - [anon_sym_DQUOTE] = ACTIONS(2383), - [sym__str_single_quotes] = ACTIONS(2383), - [sym__str_back_ticks] = ACTIONS(2383), - [sym__entry_separator] = ACTIONS(2385), - [aux_sym__record_key_token2] = ACTIONS(2383), - [anon_sym_POUND] = ACTIONS(113), - }, - [2841] = { - [sym_comment] = STATE(2841), - [ts_builtin_sym_end] = ACTIONS(6663), - [anon_sym_export] = ACTIONS(6661), - [anon_sym_alias] = ACTIONS(6661), - [anon_sym_let] = ACTIONS(6661), - [anon_sym_let_DASHenv] = ACTIONS(6661), - [anon_sym_mut] = ACTIONS(6661), - [anon_sym_const] = ACTIONS(6661), - [anon_sym_SEMI] = ACTIONS(6661), - [sym_cmd_identifier] = ACTIONS(6661), - [anon_sym_LF] = ACTIONS(6663), - [anon_sym_def] = ACTIONS(6661), - [anon_sym_export_DASHenv] = ACTIONS(6661), - [anon_sym_extern] = ACTIONS(6661), - [anon_sym_module] = ACTIONS(6661), - [anon_sym_use] = ACTIONS(6661), - [anon_sym_LBRACK] = ACTIONS(6661), - [anon_sym_LPAREN] = ACTIONS(6661), - [anon_sym_DOLLAR] = ACTIONS(6661), - [anon_sym_error] = ACTIONS(6661), - [anon_sym_DASH] = ACTIONS(6661), - [anon_sym_break] = ACTIONS(6661), - [anon_sym_continue] = ACTIONS(6661), - [anon_sym_for] = ACTIONS(6661), - [anon_sym_loop] = ACTIONS(6661), - [anon_sym_while] = ACTIONS(6661), - [anon_sym_do] = ACTIONS(6661), - [anon_sym_if] = ACTIONS(6661), - [anon_sym_match] = ACTIONS(6661), - [anon_sym_LBRACE] = ACTIONS(6661), - [anon_sym_DOT_DOT] = ACTIONS(6661), - [anon_sym_try] = ACTIONS(6661), - [anon_sym_return] = ACTIONS(6661), - [anon_sym_source] = ACTIONS(6661), - [anon_sym_source_DASHenv] = ACTIONS(6661), - [anon_sym_register] = ACTIONS(6661), - [anon_sym_hide] = ACTIONS(6661), - [anon_sym_hide_DASHenv] = ACTIONS(6661), - [anon_sym_overlay] = ACTIONS(6661), - [anon_sym_where] = ACTIONS(6661), - [anon_sym_not] = ACTIONS(6661), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6661), - [anon_sym_DOT_DOT_LT] = ACTIONS(6661), - [anon_sym_null] = ACTIONS(6661), - [anon_sym_true] = ACTIONS(6661), - [anon_sym_false] = ACTIONS(6661), - [aux_sym__val_number_decimal_token1] = ACTIONS(6661), - [aux_sym__val_number_decimal_token2] = ACTIONS(6661), - [anon_sym_DOT2] = ACTIONS(6661), - [aux_sym__val_number_decimal_token3] = ACTIONS(6661), - [aux_sym__val_number_token1] = ACTIONS(6661), - [aux_sym__val_number_token2] = ACTIONS(6661), - [aux_sym__val_number_token3] = ACTIONS(6661), - [aux_sym__val_number_token4] = ACTIONS(6661), - [aux_sym__val_number_token5] = ACTIONS(6661), - [aux_sym__val_number_token6] = ACTIONS(6661), - [anon_sym_0b] = ACTIONS(6661), - [anon_sym_0o] = ACTIONS(6661), - [anon_sym_0x] = ACTIONS(6661), - [sym_val_date] = ACTIONS(6661), - [anon_sym_DQUOTE] = ACTIONS(6661), - [sym__str_single_quotes] = ACTIONS(6661), - [sym__str_back_ticks] = ACTIONS(6661), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6661), - [anon_sym_CARET] = ACTIONS(6661), - [anon_sym_POUND] = ACTIONS(113), - }, - [2842] = { - [sym_comment] = STATE(2842), - [ts_builtin_sym_end] = ACTIONS(6667), - [anon_sym_export] = ACTIONS(6665), - [anon_sym_alias] = ACTIONS(6665), - [anon_sym_let] = ACTIONS(6665), - [anon_sym_let_DASHenv] = ACTIONS(6665), - [anon_sym_mut] = ACTIONS(6665), - [anon_sym_const] = ACTIONS(6665), - [anon_sym_SEMI] = ACTIONS(6665), - [sym_cmd_identifier] = ACTIONS(6665), - [anon_sym_LF] = ACTIONS(6667), - [anon_sym_def] = ACTIONS(6665), - [anon_sym_export_DASHenv] = ACTIONS(6665), - [anon_sym_extern] = ACTIONS(6665), - [anon_sym_module] = ACTIONS(6665), - [anon_sym_use] = ACTIONS(6665), - [anon_sym_LBRACK] = ACTIONS(6665), - [anon_sym_LPAREN] = ACTIONS(6665), - [anon_sym_DOLLAR] = ACTIONS(6665), - [anon_sym_error] = ACTIONS(6665), - [anon_sym_DASH] = ACTIONS(6665), - [anon_sym_break] = ACTIONS(6665), - [anon_sym_continue] = ACTIONS(6665), - [anon_sym_for] = ACTIONS(6665), - [anon_sym_loop] = ACTIONS(6665), - [anon_sym_while] = ACTIONS(6665), - [anon_sym_do] = ACTIONS(6665), - [anon_sym_if] = ACTIONS(6665), - [anon_sym_match] = ACTIONS(6665), - [anon_sym_LBRACE] = ACTIONS(6665), - [anon_sym_DOT_DOT] = ACTIONS(6665), - [anon_sym_try] = ACTIONS(6665), - [anon_sym_return] = ACTIONS(6665), - [anon_sym_source] = ACTIONS(6665), - [anon_sym_source_DASHenv] = ACTIONS(6665), - [anon_sym_register] = ACTIONS(6665), - [anon_sym_hide] = ACTIONS(6665), - [anon_sym_hide_DASHenv] = ACTIONS(6665), - [anon_sym_overlay] = ACTIONS(6665), - [anon_sym_where] = ACTIONS(6665), - [anon_sym_not] = ACTIONS(6665), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6665), - [anon_sym_DOT_DOT_LT] = ACTIONS(6665), - [anon_sym_null] = ACTIONS(6665), - [anon_sym_true] = ACTIONS(6665), - [anon_sym_false] = ACTIONS(6665), - [aux_sym__val_number_decimal_token1] = ACTIONS(6665), - [aux_sym__val_number_decimal_token2] = ACTIONS(6665), - [anon_sym_DOT2] = ACTIONS(6665), - [aux_sym__val_number_decimal_token3] = ACTIONS(6665), - [aux_sym__val_number_token1] = ACTIONS(6665), - [aux_sym__val_number_token2] = ACTIONS(6665), - [aux_sym__val_number_token3] = ACTIONS(6665), - [aux_sym__val_number_token4] = ACTIONS(6665), - [aux_sym__val_number_token5] = ACTIONS(6665), - [aux_sym__val_number_token6] = ACTIONS(6665), - [anon_sym_0b] = ACTIONS(6665), - [anon_sym_0o] = ACTIONS(6665), - [anon_sym_0x] = ACTIONS(6665), - [sym_val_date] = ACTIONS(6665), - [anon_sym_DQUOTE] = ACTIONS(6665), - [sym__str_single_quotes] = ACTIONS(6665), - [sym__str_back_ticks] = ACTIONS(6665), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6665), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6665), - [anon_sym_CARET] = ACTIONS(6665), - [anon_sym_POUND] = ACTIONS(113), - }, - [2843] = { - [sym_comment] = STATE(2843), - [ts_builtin_sym_end] = ACTIONS(6700), - [anon_sym_export] = ACTIONS(6698), - [anon_sym_alias] = ACTIONS(6698), - [anon_sym_let] = ACTIONS(6698), - [anon_sym_let_DASHenv] = ACTIONS(6698), - [anon_sym_mut] = ACTIONS(6698), - [anon_sym_const] = ACTIONS(6698), - [anon_sym_SEMI] = ACTIONS(6698), - [sym_cmd_identifier] = ACTIONS(6698), - [anon_sym_LF] = ACTIONS(6700), - [anon_sym_def] = ACTIONS(6698), - [anon_sym_export_DASHenv] = ACTIONS(6698), - [anon_sym_extern] = ACTIONS(6698), - [anon_sym_module] = ACTIONS(6698), - [anon_sym_use] = ACTIONS(6698), - [anon_sym_LBRACK] = ACTIONS(6698), - [anon_sym_LPAREN] = ACTIONS(6698), - [anon_sym_DOLLAR] = ACTIONS(6698), - [anon_sym_error] = ACTIONS(6698), - [anon_sym_DASH] = ACTIONS(6698), - [anon_sym_break] = ACTIONS(6698), - [anon_sym_continue] = ACTIONS(6698), - [anon_sym_for] = ACTIONS(6698), - [anon_sym_loop] = ACTIONS(6698), - [anon_sym_while] = ACTIONS(6698), - [anon_sym_do] = ACTIONS(6698), - [anon_sym_if] = ACTIONS(6698), - [anon_sym_match] = ACTIONS(6698), - [anon_sym_LBRACE] = ACTIONS(6698), - [anon_sym_DOT_DOT] = ACTIONS(6698), - [anon_sym_try] = ACTIONS(6698), - [anon_sym_return] = ACTIONS(6698), - [anon_sym_source] = ACTIONS(6698), - [anon_sym_source_DASHenv] = ACTIONS(6698), - [anon_sym_register] = ACTIONS(6698), - [anon_sym_hide] = ACTIONS(6698), - [anon_sym_hide_DASHenv] = ACTIONS(6698), - [anon_sym_overlay] = ACTIONS(6698), - [anon_sym_where] = ACTIONS(6698), - [anon_sym_not] = ACTIONS(6698), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6698), - [anon_sym_DOT_DOT_LT] = ACTIONS(6698), - [anon_sym_null] = ACTIONS(6698), - [anon_sym_true] = ACTIONS(6698), - [anon_sym_false] = ACTIONS(6698), - [aux_sym__val_number_decimal_token1] = ACTIONS(6698), - [aux_sym__val_number_decimal_token2] = ACTIONS(6698), - [anon_sym_DOT2] = ACTIONS(6698), - [aux_sym__val_number_decimal_token3] = ACTIONS(6698), - [aux_sym__val_number_token1] = ACTIONS(6698), - [aux_sym__val_number_token2] = ACTIONS(6698), - [aux_sym__val_number_token3] = ACTIONS(6698), - [aux_sym__val_number_token4] = ACTIONS(6698), - [aux_sym__val_number_token5] = ACTIONS(6698), - [aux_sym__val_number_token6] = ACTIONS(6698), - [anon_sym_0b] = ACTIONS(6698), - [anon_sym_0o] = ACTIONS(6698), - [anon_sym_0x] = ACTIONS(6698), - [sym_val_date] = ACTIONS(6698), - [anon_sym_DQUOTE] = ACTIONS(6698), - [sym__str_single_quotes] = ACTIONS(6698), - [sym__str_back_ticks] = ACTIONS(6698), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6698), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6698), - [anon_sym_CARET] = ACTIONS(6698), - [anon_sym_POUND] = ACTIONS(113), - }, - [2844] = { - [sym_comment] = STATE(2844), - [ts_builtin_sym_end] = ACTIONS(6700), - [anon_sym_export] = ACTIONS(6698), - [anon_sym_alias] = ACTIONS(6698), - [anon_sym_let] = ACTIONS(6698), - [anon_sym_let_DASHenv] = ACTIONS(6698), - [anon_sym_mut] = ACTIONS(6698), - [anon_sym_const] = ACTIONS(6698), - [anon_sym_SEMI] = ACTIONS(6698), - [sym_cmd_identifier] = ACTIONS(6698), - [anon_sym_LF] = ACTIONS(6700), - [anon_sym_def] = ACTIONS(6698), - [anon_sym_export_DASHenv] = ACTIONS(6698), - [anon_sym_extern] = ACTIONS(6698), - [anon_sym_module] = ACTIONS(6698), - [anon_sym_use] = ACTIONS(6698), - [anon_sym_LBRACK] = ACTIONS(6698), - [anon_sym_LPAREN] = ACTIONS(6698), - [anon_sym_DOLLAR] = ACTIONS(6698), - [anon_sym_error] = ACTIONS(6698), - [anon_sym_DASH] = ACTIONS(6698), - [anon_sym_break] = ACTIONS(6698), - [anon_sym_continue] = ACTIONS(6698), - [anon_sym_for] = ACTIONS(6698), - [anon_sym_loop] = ACTIONS(6698), - [anon_sym_while] = ACTIONS(6698), - [anon_sym_do] = ACTIONS(6698), - [anon_sym_if] = ACTIONS(6698), - [anon_sym_match] = ACTIONS(6698), - [anon_sym_LBRACE] = ACTIONS(6698), - [anon_sym_DOT_DOT] = ACTIONS(6698), - [anon_sym_try] = ACTIONS(6698), - [anon_sym_return] = ACTIONS(6698), - [anon_sym_source] = ACTIONS(6698), - [anon_sym_source_DASHenv] = ACTIONS(6698), - [anon_sym_register] = ACTIONS(6698), - [anon_sym_hide] = ACTIONS(6698), - [anon_sym_hide_DASHenv] = ACTIONS(6698), - [anon_sym_overlay] = ACTIONS(6698), - [anon_sym_where] = ACTIONS(6698), - [anon_sym_not] = ACTIONS(6698), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6698), - [anon_sym_DOT_DOT_LT] = ACTIONS(6698), - [anon_sym_null] = ACTIONS(6698), - [anon_sym_true] = ACTIONS(6698), - [anon_sym_false] = ACTIONS(6698), - [aux_sym__val_number_decimal_token1] = ACTIONS(6698), - [aux_sym__val_number_decimal_token2] = ACTIONS(6698), - [anon_sym_DOT2] = ACTIONS(6698), - [aux_sym__val_number_decimal_token3] = ACTIONS(6698), - [aux_sym__val_number_token1] = ACTIONS(6698), - [aux_sym__val_number_token2] = ACTIONS(6698), - [aux_sym__val_number_token3] = ACTIONS(6698), - [aux_sym__val_number_token4] = ACTIONS(6698), - [aux_sym__val_number_token5] = ACTIONS(6698), - [aux_sym__val_number_token6] = ACTIONS(6698), - [anon_sym_0b] = ACTIONS(6698), - [anon_sym_0o] = ACTIONS(6698), - [anon_sym_0x] = ACTIONS(6698), - [sym_val_date] = ACTIONS(6698), - [anon_sym_DQUOTE] = ACTIONS(6698), - [sym__str_single_quotes] = ACTIONS(6698), - [sym__str_back_ticks] = ACTIONS(6698), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6698), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6698), - [anon_sym_CARET] = ACTIONS(6698), - [anon_sym_POUND] = ACTIONS(113), - }, - [2845] = { - [sym_comment] = STATE(2845), - [ts_builtin_sym_end] = ACTIONS(6708), - [anon_sym_export] = ACTIONS(6706), - [anon_sym_alias] = ACTIONS(6706), - [anon_sym_let] = ACTIONS(6706), - [anon_sym_let_DASHenv] = ACTIONS(6706), - [anon_sym_mut] = ACTIONS(6706), - [anon_sym_const] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(6706), - [sym_cmd_identifier] = ACTIONS(6706), - [anon_sym_LF] = ACTIONS(6708), - [anon_sym_def] = ACTIONS(6706), - [anon_sym_export_DASHenv] = ACTIONS(6706), - [anon_sym_extern] = ACTIONS(6706), - [anon_sym_module] = ACTIONS(6706), - [anon_sym_use] = ACTIONS(6706), - [anon_sym_LBRACK] = ACTIONS(6706), - [anon_sym_LPAREN] = ACTIONS(6706), - [anon_sym_DOLLAR] = ACTIONS(6706), - [anon_sym_error] = ACTIONS(6706), - [anon_sym_DASH] = ACTIONS(6706), - [anon_sym_break] = ACTIONS(6706), - [anon_sym_continue] = ACTIONS(6706), - [anon_sym_for] = ACTIONS(6706), - [anon_sym_loop] = ACTIONS(6706), - [anon_sym_while] = ACTIONS(6706), - [anon_sym_do] = ACTIONS(6706), - [anon_sym_if] = ACTIONS(6706), - [anon_sym_match] = ACTIONS(6706), - [anon_sym_LBRACE] = ACTIONS(6706), - [anon_sym_DOT_DOT] = ACTIONS(6706), - [anon_sym_try] = ACTIONS(6706), - [anon_sym_return] = ACTIONS(6706), - [anon_sym_source] = ACTIONS(6706), - [anon_sym_source_DASHenv] = ACTIONS(6706), - [anon_sym_register] = ACTIONS(6706), - [anon_sym_hide] = ACTIONS(6706), - [anon_sym_hide_DASHenv] = ACTIONS(6706), - [anon_sym_overlay] = ACTIONS(6706), - [anon_sym_where] = ACTIONS(6706), - [anon_sym_not] = ACTIONS(6706), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6706), - [anon_sym_DOT_DOT_LT] = ACTIONS(6706), - [anon_sym_null] = ACTIONS(6706), - [anon_sym_true] = ACTIONS(6706), - [anon_sym_false] = ACTIONS(6706), - [aux_sym__val_number_decimal_token1] = ACTIONS(6706), - [aux_sym__val_number_decimal_token2] = ACTIONS(6706), - [anon_sym_DOT2] = ACTIONS(6706), - [aux_sym__val_number_decimal_token3] = ACTIONS(6706), - [aux_sym__val_number_token1] = ACTIONS(6706), - [aux_sym__val_number_token2] = ACTIONS(6706), - [aux_sym__val_number_token3] = ACTIONS(6706), - [aux_sym__val_number_token4] = ACTIONS(6706), - [aux_sym__val_number_token5] = ACTIONS(6706), - [aux_sym__val_number_token6] = ACTIONS(6706), - [anon_sym_0b] = ACTIONS(6706), - [anon_sym_0o] = ACTIONS(6706), - [anon_sym_0x] = ACTIONS(6706), - [sym_val_date] = ACTIONS(6706), - [anon_sym_DQUOTE] = ACTIONS(6706), - [sym__str_single_quotes] = ACTIONS(6706), - [sym__str_back_ticks] = ACTIONS(6706), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6706), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6706), - [anon_sym_CARET] = ACTIONS(6706), - [anon_sym_POUND] = ACTIONS(113), - }, - [2846] = { - [sym_comment] = STATE(2846), - [ts_builtin_sym_end] = ACTIONS(6518), - [anon_sym_export] = ACTIONS(6516), - [anon_sym_alias] = ACTIONS(6516), - [anon_sym_let] = ACTIONS(6516), - [anon_sym_let_DASHenv] = ACTIONS(6516), - [anon_sym_mut] = ACTIONS(6516), - [anon_sym_const] = ACTIONS(6516), - [anon_sym_SEMI] = ACTIONS(6516), - [sym_cmd_identifier] = ACTIONS(6516), - [anon_sym_LF] = ACTIONS(6518), - [anon_sym_def] = ACTIONS(6516), - [anon_sym_export_DASHenv] = ACTIONS(6516), - [anon_sym_extern] = ACTIONS(6516), - [anon_sym_module] = ACTIONS(6516), - [anon_sym_use] = ACTIONS(6516), - [anon_sym_LBRACK] = ACTIONS(6516), - [anon_sym_LPAREN] = ACTIONS(6516), - [anon_sym_DOLLAR] = ACTIONS(6516), - [anon_sym_error] = ACTIONS(6516), - [anon_sym_DASH] = ACTIONS(6516), - [anon_sym_break] = ACTIONS(6516), - [anon_sym_continue] = ACTIONS(6516), - [anon_sym_for] = ACTIONS(6516), - [anon_sym_loop] = ACTIONS(6516), - [anon_sym_while] = ACTIONS(6516), - [anon_sym_do] = ACTIONS(6516), - [anon_sym_if] = ACTIONS(6516), - [anon_sym_match] = ACTIONS(6516), - [anon_sym_LBRACE] = ACTIONS(6516), - [anon_sym_DOT_DOT] = ACTIONS(6516), - [anon_sym_try] = ACTIONS(6516), - [anon_sym_return] = ACTIONS(6516), - [anon_sym_source] = ACTIONS(6516), - [anon_sym_source_DASHenv] = ACTIONS(6516), - [anon_sym_register] = ACTIONS(6516), - [anon_sym_hide] = ACTIONS(6516), - [anon_sym_hide_DASHenv] = ACTIONS(6516), - [anon_sym_overlay] = ACTIONS(6516), - [anon_sym_where] = ACTIONS(6516), - [anon_sym_not] = ACTIONS(6516), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6516), - [anon_sym_DOT_DOT_LT] = ACTIONS(6516), - [anon_sym_null] = ACTIONS(6516), - [anon_sym_true] = ACTIONS(6516), - [anon_sym_false] = ACTIONS(6516), - [aux_sym__val_number_decimal_token1] = ACTIONS(6516), - [aux_sym__val_number_decimal_token2] = ACTIONS(6516), - [anon_sym_DOT2] = ACTIONS(6516), - [aux_sym__val_number_decimal_token3] = ACTIONS(6516), - [aux_sym__val_number_token1] = ACTIONS(6516), - [aux_sym__val_number_token2] = ACTIONS(6516), - [aux_sym__val_number_token3] = ACTIONS(6516), - [aux_sym__val_number_token4] = ACTIONS(6516), - [aux_sym__val_number_token5] = ACTIONS(6516), - [aux_sym__val_number_token6] = ACTIONS(6516), - [anon_sym_0b] = ACTIONS(6516), - [anon_sym_0o] = ACTIONS(6516), - [anon_sym_0x] = ACTIONS(6516), - [sym_val_date] = ACTIONS(6516), - [anon_sym_DQUOTE] = ACTIONS(6516), - [sym__str_single_quotes] = ACTIONS(6516), - [sym__str_back_ticks] = ACTIONS(6516), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6516), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6516), - [anon_sym_CARET] = ACTIONS(6516), - [anon_sym_POUND] = ACTIONS(113), - }, - [2847] = { - [sym_comment] = STATE(2847), - [ts_builtin_sym_end] = ACTIONS(6708), - [anon_sym_export] = ACTIONS(6706), - [anon_sym_alias] = ACTIONS(6706), - [anon_sym_let] = ACTIONS(6706), - [anon_sym_let_DASHenv] = ACTIONS(6706), - [anon_sym_mut] = ACTIONS(6706), - [anon_sym_const] = ACTIONS(6706), - [anon_sym_SEMI] = ACTIONS(6706), - [sym_cmd_identifier] = ACTIONS(6706), - [anon_sym_LF] = ACTIONS(6708), - [anon_sym_def] = ACTIONS(6706), - [anon_sym_export_DASHenv] = ACTIONS(6706), - [anon_sym_extern] = ACTIONS(6706), - [anon_sym_module] = ACTIONS(6706), - [anon_sym_use] = ACTIONS(6706), - [anon_sym_LBRACK] = ACTIONS(6706), - [anon_sym_LPAREN] = ACTIONS(6706), - [anon_sym_DOLLAR] = ACTIONS(6706), - [anon_sym_error] = ACTIONS(6706), - [anon_sym_DASH] = ACTIONS(6706), - [anon_sym_break] = ACTIONS(6706), - [anon_sym_continue] = ACTIONS(6706), - [anon_sym_for] = ACTIONS(6706), - [anon_sym_loop] = ACTIONS(6706), - [anon_sym_while] = ACTIONS(6706), - [anon_sym_do] = ACTIONS(6706), - [anon_sym_if] = ACTIONS(6706), - [anon_sym_match] = ACTIONS(6706), - [anon_sym_LBRACE] = ACTIONS(6706), - [anon_sym_DOT_DOT] = ACTIONS(6706), - [anon_sym_try] = ACTIONS(6706), - [anon_sym_return] = ACTIONS(6706), - [anon_sym_source] = ACTIONS(6706), - [anon_sym_source_DASHenv] = ACTIONS(6706), - [anon_sym_register] = ACTIONS(6706), - [anon_sym_hide] = ACTIONS(6706), - [anon_sym_hide_DASHenv] = ACTIONS(6706), - [anon_sym_overlay] = ACTIONS(6706), - [anon_sym_where] = ACTIONS(6706), - [anon_sym_not] = ACTIONS(6706), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6706), - [anon_sym_DOT_DOT_LT] = ACTIONS(6706), - [anon_sym_null] = ACTIONS(6706), - [anon_sym_true] = ACTIONS(6706), - [anon_sym_false] = ACTIONS(6706), - [aux_sym__val_number_decimal_token1] = ACTIONS(6706), - [aux_sym__val_number_decimal_token2] = ACTIONS(6706), - [anon_sym_DOT2] = ACTIONS(6706), - [aux_sym__val_number_decimal_token3] = ACTIONS(6706), - [aux_sym__val_number_token1] = ACTIONS(6706), - [aux_sym__val_number_token2] = ACTIONS(6706), - [aux_sym__val_number_token3] = ACTIONS(6706), - [aux_sym__val_number_token4] = ACTIONS(6706), - [aux_sym__val_number_token5] = ACTIONS(6706), - [aux_sym__val_number_token6] = ACTIONS(6706), - [anon_sym_0b] = ACTIONS(6706), - [anon_sym_0o] = ACTIONS(6706), - [anon_sym_0x] = ACTIONS(6706), - [sym_val_date] = ACTIONS(6706), - [anon_sym_DQUOTE] = ACTIONS(6706), - [sym__str_single_quotes] = ACTIONS(6706), - [sym__str_back_ticks] = ACTIONS(6706), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6706), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6706), - [anon_sym_CARET] = ACTIONS(6706), - [anon_sym_POUND] = ACTIONS(113), - }, - [2848] = { - [sym_comment] = STATE(2848), - [ts_builtin_sym_end] = ACTIONS(1170), - [anon_sym_export] = ACTIONS(1168), - [anon_sym_alias] = ACTIONS(1168), - [anon_sym_let] = ACTIONS(1168), - [anon_sym_let_DASHenv] = ACTIONS(1168), - [anon_sym_mut] = ACTIONS(1168), - [anon_sym_const] = ACTIONS(1168), - [anon_sym_SEMI] = ACTIONS(1168), - [sym_cmd_identifier] = ACTIONS(1168), - [anon_sym_LF] = ACTIONS(1170), - [anon_sym_def] = ACTIONS(1168), - [anon_sym_export_DASHenv] = ACTIONS(1168), - [anon_sym_extern] = ACTIONS(1168), - [anon_sym_module] = ACTIONS(1168), - [anon_sym_use] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_DOLLAR] = ACTIONS(1168), - [anon_sym_error] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1168), - [anon_sym_break] = ACTIONS(1168), - [anon_sym_continue] = ACTIONS(1168), - [anon_sym_for] = ACTIONS(1168), - [anon_sym_loop] = ACTIONS(1168), - [anon_sym_while] = ACTIONS(1168), - [anon_sym_do] = ACTIONS(1168), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_match] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1168), - [anon_sym_DOT_DOT] = ACTIONS(1168), - [anon_sym_try] = ACTIONS(1168), - [anon_sym_return] = ACTIONS(1168), - [anon_sym_source] = ACTIONS(1168), - [anon_sym_source_DASHenv] = ACTIONS(1168), - [anon_sym_register] = ACTIONS(1168), - [anon_sym_hide] = ACTIONS(1168), - [anon_sym_hide_DASHenv] = ACTIONS(1168), - [anon_sym_overlay] = ACTIONS(1168), - [anon_sym_where] = ACTIONS(1168), - [anon_sym_not] = ACTIONS(1168), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1168), - [anon_sym_DOT_DOT_LT] = ACTIONS(1168), - [anon_sym_null] = ACTIONS(1168), - [anon_sym_true] = ACTIONS(1168), - [anon_sym_false] = ACTIONS(1168), - [aux_sym__val_number_decimal_token1] = ACTIONS(1168), - [aux_sym__val_number_decimal_token2] = ACTIONS(1168), - [anon_sym_DOT2] = ACTIONS(1168), - [aux_sym__val_number_decimal_token3] = ACTIONS(1168), - [aux_sym__val_number_token1] = ACTIONS(1168), - [aux_sym__val_number_token2] = ACTIONS(1168), - [aux_sym__val_number_token3] = ACTIONS(1168), - [aux_sym__val_number_token4] = ACTIONS(1168), - [aux_sym__val_number_token5] = ACTIONS(1168), - [aux_sym__val_number_token6] = ACTIONS(1168), - [anon_sym_0b] = ACTIONS(1168), - [anon_sym_0o] = ACTIONS(1168), - [anon_sym_0x] = ACTIONS(1168), - [sym_val_date] = ACTIONS(1168), - [anon_sym_DQUOTE] = ACTIONS(1168), - [sym__str_single_quotes] = ACTIONS(1168), - [sym__str_back_ticks] = ACTIONS(1168), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1168), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1168), - [anon_sym_CARET] = ACTIONS(1168), - [anon_sym_POUND] = ACTIONS(113), - }, - [2849] = { - [sym_comment] = STATE(2849), - [ts_builtin_sym_end] = ACTIONS(6712), - [anon_sym_export] = ACTIONS(6710), - [anon_sym_alias] = ACTIONS(6710), - [anon_sym_let] = ACTIONS(6710), - [anon_sym_let_DASHenv] = ACTIONS(6710), - [anon_sym_mut] = ACTIONS(6710), - [anon_sym_const] = ACTIONS(6710), - [anon_sym_SEMI] = ACTIONS(6710), - [sym_cmd_identifier] = ACTIONS(6710), - [anon_sym_LF] = ACTIONS(6712), - [anon_sym_def] = ACTIONS(6710), - [anon_sym_export_DASHenv] = ACTIONS(6710), - [anon_sym_extern] = ACTIONS(6710), - [anon_sym_module] = ACTIONS(6710), - [anon_sym_use] = ACTIONS(6710), - [anon_sym_LBRACK] = ACTIONS(6710), - [anon_sym_LPAREN] = ACTIONS(6710), - [anon_sym_DOLLAR] = ACTIONS(6710), - [anon_sym_error] = ACTIONS(6710), - [anon_sym_DASH] = ACTIONS(6710), - [anon_sym_break] = ACTIONS(6710), - [anon_sym_continue] = ACTIONS(6710), - [anon_sym_for] = ACTIONS(6710), - [anon_sym_loop] = ACTIONS(6710), - [anon_sym_while] = ACTIONS(6710), - [anon_sym_do] = ACTIONS(6710), - [anon_sym_if] = ACTIONS(6710), - [anon_sym_match] = ACTIONS(6710), - [anon_sym_LBRACE] = ACTIONS(6710), - [anon_sym_DOT_DOT] = ACTIONS(6710), - [anon_sym_try] = ACTIONS(6710), - [anon_sym_return] = ACTIONS(6710), - [anon_sym_source] = ACTIONS(6710), - [anon_sym_source_DASHenv] = ACTIONS(6710), - [anon_sym_register] = ACTIONS(6710), - [anon_sym_hide] = ACTIONS(6710), - [anon_sym_hide_DASHenv] = ACTIONS(6710), - [anon_sym_overlay] = ACTIONS(6710), - [anon_sym_where] = ACTIONS(6710), - [anon_sym_not] = ACTIONS(6710), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6710), - [anon_sym_DOT_DOT_LT] = ACTIONS(6710), - [anon_sym_null] = ACTIONS(6710), - [anon_sym_true] = ACTIONS(6710), - [anon_sym_false] = ACTIONS(6710), - [aux_sym__val_number_decimal_token1] = ACTIONS(6710), - [aux_sym__val_number_decimal_token2] = ACTIONS(6710), - [anon_sym_DOT2] = ACTIONS(6710), - [aux_sym__val_number_decimal_token3] = ACTIONS(6710), - [aux_sym__val_number_token1] = ACTIONS(6710), - [aux_sym__val_number_token2] = ACTIONS(6710), - [aux_sym__val_number_token3] = ACTIONS(6710), - [aux_sym__val_number_token4] = ACTIONS(6710), - [aux_sym__val_number_token5] = ACTIONS(6710), - [aux_sym__val_number_token6] = ACTIONS(6710), - [anon_sym_0b] = ACTIONS(6710), - [anon_sym_0o] = ACTIONS(6710), - [anon_sym_0x] = ACTIONS(6710), - [sym_val_date] = ACTIONS(6710), - [anon_sym_DQUOTE] = ACTIONS(6710), - [sym__str_single_quotes] = ACTIONS(6710), - [sym__str_back_ticks] = ACTIONS(6710), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6710), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6710), - [anon_sym_CARET] = ACTIONS(6710), - [anon_sym_POUND] = ACTIONS(113), - }, - [2850] = { - [sym_comment] = STATE(2850), - [ts_builtin_sym_end] = ACTIONS(6716), - [anon_sym_export] = ACTIONS(6714), - [anon_sym_alias] = ACTIONS(6714), - [anon_sym_let] = ACTIONS(6714), - [anon_sym_let_DASHenv] = ACTIONS(6714), - [anon_sym_mut] = ACTIONS(6714), - [anon_sym_const] = ACTIONS(6714), - [anon_sym_SEMI] = ACTIONS(6714), - [sym_cmd_identifier] = ACTIONS(6714), - [anon_sym_LF] = ACTIONS(6716), - [anon_sym_def] = ACTIONS(6714), - [anon_sym_export_DASHenv] = ACTIONS(6714), - [anon_sym_extern] = ACTIONS(6714), - [anon_sym_module] = ACTIONS(6714), - [anon_sym_use] = ACTIONS(6714), - [anon_sym_LBRACK] = ACTIONS(6714), - [anon_sym_LPAREN] = ACTIONS(6714), - [anon_sym_DOLLAR] = ACTIONS(6714), - [anon_sym_error] = ACTIONS(6714), - [anon_sym_DASH] = ACTIONS(6714), - [anon_sym_break] = ACTIONS(6714), - [anon_sym_continue] = ACTIONS(6714), - [anon_sym_for] = ACTIONS(6714), - [anon_sym_loop] = ACTIONS(6714), - [anon_sym_while] = ACTIONS(6714), - [anon_sym_do] = ACTIONS(6714), - [anon_sym_if] = ACTIONS(6714), - [anon_sym_match] = ACTIONS(6714), - [anon_sym_LBRACE] = ACTIONS(6714), - [anon_sym_DOT_DOT] = ACTIONS(6714), - [anon_sym_try] = ACTIONS(6714), - [anon_sym_return] = ACTIONS(6714), - [anon_sym_source] = ACTIONS(6714), - [anon_sym_source_DASHenv] = ACTIONS(6714), - [anon_sym_register] = ACTIONS(6714), - [anon_sym_hide] = ACTIONS(6714), - [anon_sym_hide_DASHenv] = ACTIONS(6714), - [anon_sym_overlay] = ACTIONS(6714), - [anon_sym_where] = ACTIONS(6714), - [anon_sym_not] = ACTIONS(6714), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6714), - [anon_sym_DOT_DOT_LT] = ACTIONS(6714), - [anon_sym_null] = ACTIONS(6714), - [anon_sym_true] = ACTIONS(6714), - [anon_sym_false] = ACTIONS(6714), - [aux_sym__val_number_decimal_token1] = ACTIONS(6714), - [aux_sym__val_number_decimal_token2] = ACTIONS(6714), - [anon_sym_DOT2] = ACTIONS(6714), - [aux_sym__val_number_decimal_token3] = ACTIONS(6714), - [aux_sym__val_number_token1] = ACTIONS(6714), - [aux_sym__val_number_token2] = ACTIONS(6714), - [aux_sym__val_number_token3] = ACTIONS(6714), - [aux_sym__val_number_token4] = ACTIONS(6714), - [aux_sym__val_number_token5] = ACTIONS(6714), - [aux_sym__val_number_token6] = ACTIONS(6714), - [anon_sym_0b] = ACTIONS(6714), - [anon_sym_0o] = ACTIONS(6714), - [anon_sym_0x] = ACTIONS(6714), - [sym_val_date] = ACTIONS(6714), - [anon_sym_DQUOTE] = ACTIONS(6714), - [sym__str_single_quotes] = ACTIONS(6714), - [sym__str_back_ticks] = ACTIONS(6714), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6714), - [anon_sym_CARET] = ACTIONS(6714), - [anon_sym_POUND] = ACTIONS(113), - }, - [2851] = { - [sym_comment] = STATE(2851), - [ts_builtin_sym_end] = ACTIONS(6704), - [anon_sym_export] = ACTIONS(6702), - [anon_sym_alias] = ACTIONS(6702), - [anon_sym_let] = ACTIONS(6702), - [anon_sym_let_DASHenv] = ACTIONS(6702), - [anon_sym_mut] = ACTIONS(6702), - [anon_sym_const] = ACTIONS(6702), - [anon_sym_SEMI] = ACTIONS(6702), - [sym_cmd_identifier] = ACTIONS(6702), - [anon_sym_LF] = ACTIONS(6704), - [anon_sym_def] = ACTIONS(6702), - [anon_sym_export_DASHenv] = ACTIONS(6702), - [anon_sym_extern] = ACTIONS(6702), - [anon_sym_module] = ACTIONS(6702), - [anon_sym_use] = ACTIONS(6702), - [anon_sym_LBRACK] = ACTIONS(6702), - [anon_sym_LPAREN] = ACTIONS(6702), - [anon_sym_DOLLAR] = ACTIONS(6702), - [anon_sym_error] = ACTIONS(6702), - [anon_sym_DASH] = ACTIONS(6702), - [anon_sym_break] = ACTIONS(6702), - [anon_sym_continue] = ACTIONS(6702), - [anon_sym_for] = ACTIONS(6702), - [anon_sym_loop] = ACTIONS(6702), - [anon_sym_while] = ACTIONS(6702), - [anon_sym_do] = ACTIONS(6702), - [anon_sym_if] = ACTIONS(6702), - [anon_sym_match] = ACTIONS(6702), - [anon_sym_LBRACE] = ACTIONS(6702), - [anon_sym_DOT_DOT] = ACTIONS(6702), - [anon_sym_try] = ACTIONS(6702), - [anon_sym_return] = ACTIONS(6702), - [anon_sym_source] = ACTIONS(6702), - [anon_sym_source_DASHenv] = ACTIONS(6702), - [anon_sym_register] = ACTIONS(6702), - [anon_sym_hide] = ACTIONS(6702), - [anon_sym_hide_DASHenv] = ACTIONS(6702), - [anon_sym_overlay] = ACTIONS(6702), - [anon_sym_where] = ACTIONS(6702), - [anon_sym_not] = ACTIONS(6702), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6702), - [anon_sym_DOT_DOT_LT] = ACTIONS(6702), - [anon_sym_null] = ACTIONS(6702), - [anon_sym_true] = ACTIONS(6702), - [anon_sym_false] = ACTIONS(6702), - [aux_sym__val_number_decimal_token1] = ACTIONS(6702), - [aux_sym__val_number_decimal_token2] = ACTIONS(6702), - [anon_sym_DOT2] = ACTIONS(6702), - [aux_sym__val_number_decimal_token3] = ACTIONS(6702), - [aux_sym__val_number_token1] = ACTIONS(6702), - [aux_sym__val_number_token2] = ACTIONS(6702), - [aux_sym__val_number_token3] = ACTIONS(6702), - [aux_sym__val_number_token4] = ACTIONS(6702), - [aux_sym__val_number_token5] = ACTIONS(6702), - [aux_sym__val_number_token6] = ACTIONS(6702), - [anon_sym_0b] = ACTIONS(6702), - [anon_sym_0o] = ACTIONS(6702), - [anon_sym_0x] = ACTIONS(6702), - [sym_val_date] = ACTIONS(6702), - [anon_sym_DQUOTE] = ACTIONS(6702), - [sym__str_single_quotes] = ACTIONS(6702), - [sym__str_back_ticks] = ACTIONS(6702), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6702), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6702), - [anon_sym_CARET] = ACTIONS(6702), - [anon_sym_POUND] = ACTIONS(113), - }, - [2852] = { - [sym_comment] = STATE(2852), - [ts_builtin_sym_end] = ACTIONS(2845), - [anon_sym_export] = ACTIONS(2843), - [anon_sym_alias] = ACTIONS(2843), - [anon_sym_let] = ACTIONS(2843), - [anon_sym_let_DASHenv] = ACTIONS(2843), - [anon_sym_mut] = ACTIONS(2843), - [anon_sym_const] = ACTIONS(2843), - [anon_sym_SEMI] = ACTIONS(2843), - [sym_cmd_identifier] = ACTIONS(2843), - [anon_sym_LF] = ACTIONS(2845), - [anon_sym_def] = ACTIONS(2843), - [anon_sym_export_DASHenv] = ACTIONS(2843), - [anon_sym_extern] = ACTIONS(2843), - [anon_sym_module] = ACTIONS(2843), - [anon_sym_use] = ACTIONS(2843), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_LPAREN] = ACTIONS(2843), - [anon_sym_DOLLAR] = ACTIONS(2843), - [anon_sym_error] = ACTIONS(2843), - [anon_sym_DASH] = ACTIONS(2843), - [anon_sym_break] = ACTIONS(2843), - [anon_sym_continue] = ACTIONS(2843), - [anon_sym_for] = ACTIONS(2843), - [anon_sym_loop] = ACTIONS(2843), - [anon_sym_while] = ACTIONS(2843), - [anon_sym_do] = ACTIONS(2843), - [anon_sym_if] = ACTIONS(2843), - [anon_sym_match] = ACTIONS(2843), - [anon_sym_LBRACE] = ACTIONS(2843), - [anon_sym_DOT_DOT] = ACTIONS(2843), - [anon_sym_try] = ACTIONS(2843), - [anon_sym_return] = ACTIONS(2843), - [anon_sym_source] = ACTIONS(2843), - [anon_sym_source_DASHenv] = ACTIONS(2843), - [anon_sym_register] = ACTIONS(2843), - [anon_sym_hide] = ACTIONS(2843), - [anon_sym_hide_DASHenv] = ACTIONS(2843), - [anon_sym_overlay] = ACTIONS(2843), - [anon_sym_where] = ACTIONS(2843), - [anon_sym_not] = ACTIONS(2843), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2843), - [anon_sym_DOT_DOT_LT] = ACTIONS(2843), - [anon_sym_null] = ACTIONS(2843), - [anon_sym_true] = ACTIONS(2843), - [anon_sym_false] = ACTIONS(2843), - [aux_sym__val_number_decimal_token1] = ACTIONS(2843), - [aux_sym__val_number_decimal_token2] = ACTIONS(2843), - [anon_sym_DOT2] = ACTIONS(2843), - [aux_sym__val_number_decimal_token3] = ACTIONS(2843), - [aux_sym__val_number_token1] = ACTIONS(2843), - [aux_sym__val_number_token2] = ACTIONS(2843), - [aux_sym__val_number_token3] = ACTIONS(2843), - [aux_sym__val_number_token4] = ACTIONS(2843), - [aux_sym__val_number_token5] = ACTIONS(2843), - [aux_sym__val_number_token6] = ACTIONS(2843), - [anon_sym_0b] = ACTIONS(2843), - [anon_sym_0o] = ACTIONS(2843), - [anon_sym_0x] = ACTIONS(2843), - [sym_val_date] = ACTIONS(2843), - [anon_sym_DQUOTE] = ACTIONS(2843), - [sym__str_single_quotes] = ACTIONS(2843), - [sym__str_back_ticks] = ACTIONS(2843), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2843), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2843), - [anon_sym_CARET] = ACTIONS(2843), - [anon_sym_POUND] = ACTIONS(113), - }, - [2853] = { - [sym_comment] = STATE(2853), - [ts_builtin_sym_end] = ACTIONS(3876), - [anon_sym_export] = ACTIONS(3874), - [anon_sym_alias] = ACTIONS(3874), - [anon_sym_let] = ACTIONS(3874), - [anon_sym_let_DASHenv] = ACTIONS(3874), - [anon_sym_mut] = ACTIONS(3874), - [anon_sym_const] = ACTIONS(3874), - [anon_sym_SEMI] = ACTIONS(3874), - [sym_cmd_identifier] = ACTIONS(3874), - [anon_sym_LF] = ACTIONS(3876), - [anon_sym_def] = ACTIONS(3874), - [anon_sym_export_DASHenv] = ACTIONS(3874), - [anon_sym_extern] = ACTIONS(3874), - [anon_sym_module] = ACTIONS(3874), - [anon_sym_use] = ACTIONS(3874), - [anon_sym_LBRACK] = ACTIONS(3874), - [anon_sym_LPAREN] = ACTIONS(3874), - [anon_sym_DOLLAR] = ACTIONS(3874), - [anon_sym_error] = ACTIONS(3874), - [anon_sym_DASH] = ACTIONS(3874), - [anon_sym_break] = ACTIONS(3874), - [anon_sym_continue] = ACTIONS(3874), - [anon_sym_for] = ACTIONS(3874), - [anon_sym_loop] = ACTIONS(3874), - [anon_sym_while] = ACTIONS(3874), - [anon_sym_do] = ACTIONS(3874), - [anon_sym_if] = ACTIONS(3874), - [anon_sym_match] = ACTIONS(3874), - [anon_sym_LBRACE] = ACTIONS(3874), - [anon_sym_DOT_DOT] = ACTIONS(3874), - [anon_sym_try] = ACTIONS(3874), - [anon_sym_return] = ACTIONS(3874), - [anon_sym_source] = ACTIONS(3874), - [anon_sym_source_DASHenv] = ACTIONS(3874), - [anon_sym_register] = ACTIONS(3874), - [anon_sym_hide] = ACTIONS(3874), - [anon_sym_hide_DASHenv] = ACTIONS(3874), - [anon_sym_overlay] = ACTIONS(3874), - [anon_sym_where] = ACTIONS(3874), - [anon_sym_not] = ACTIONS(3874), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3874), - [anon_sym_DOT_DOT_LT] = ACTIONS(3874), - [anon_sym_null] = ACTIONS(3874), - [anon_sym_true] = ACTIONS(3874), - [anon_sym_false] = ACTIONS(3874), - [aux_sym__val_number_decimal_token1] = ACTIONS(3874), - [aux_sym__val_number_decimal_token2] = ACTIONS(3874), - [anon_sym_DOT2] = ACTIONS(3874), - [aux_sym__val_number_decimal_token3] = ACTIONS(3874), - [aux_sym__val_number_token1] = ACTIONS(3874), - [aux_sym__val_number_token2] = ACTIONS(3874), - [aux_sym__val_number_token3] = ACTIONS(3874), - [aux_sym__val_number_token4] = ACTIONS(3874), - [aux_sym__val_number_token5] = ACTIONS(3874), - [aux_sym__val_number_token6] = ACTIONS(3874), - [anon_sym_0b] = ACTIONS(3874), - [anon_sym_0o] = ACTIONS(3874), - [anon_sym_0x] = ACTIONS(3874), - [sym_val_date] = ACTIONS(3874), - [anon_sym_DQUOTE] = ACTIONS(3874), - [sym__str_single_quotes] = ACTIONS(3874), - [sym__str_back_ticks] = ACTIONS(3874), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3874), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3874), - [anon_sym_CARET] = ACTIONS(3874), - [anon_sym_POUND] = ACTIONS(113), - }, - [2854] = { - [sym_comment] = STATE(2854), - [ts_builtin_sym_end] = ACTIONS(4008), - [anon_sym_export] = ACTIONS(4006), - [anon_sym_alias] = ACTIONS(4006), - [anon_sym_let] = ACTIONS(4006), - [anon_sym_let_DASHenv] = ACTIONS(4006), - [anon_sym_mut] = ACTIONS(4006), - [anon_sym_const] = ACTIONS(4006), - [anon_sym_SEMI] = ACTIONS(4006), - [sym_cmd_identifier] = ACTIONS(4006), - [anon_sym_LF] = ACTIONS(4008), - [anon_sym_def] = ACTIONS(4006), - [anon_sym_export_DASHenv] = ACTIONS(4006), - [anon_sym_extern] = ACTIONS(4006), - [anon_sym_module] = ACTIONS(4006), - [anon_sym_use] = ACTIONS(4006), - [anon_sym_LBRACK] = ACTIONS(4006), - [anon_sym_LPAREN] = ACTIONS(4006), - [anon_sym_DOLLAR] = ACTIONS(4006), - [anon_sym_error] = ACTIONS(4006), - [anon_sym_DASH] = ACTIONS(4006), - [anon_sym_break] = ACTIONS(4006), - [anon_sym_continue] = ACTIONS(4006), - [anon_sym_for] = ACTIONS(4006), - [anon_sym_loop] = ACTIONS(4006), - [anon_sym_while] = ACTIONS(4006), - [anon_sym_do] = ACTIONS(4006), - [anon_sym_if] = ACTIONS(4006), - [anon_sym_match] = ACTIONS(4006), - [anon_sym_LBRACE] = ACTIONS(4006), - [anon_sym_DOT_DOT] = ACTIONS(4006), - [anon_sym_try] = ACTIONS(4006), - [anon_sym_return] = ACTIONS(4006), - [anon_sym_source] = ACTIONS(4006), - [anon_sym_source_DASHenv] = ACTIONS(4006), - [anon_sym_register] = ACTIONS(4006), - [anon_sym_hide] = ACTIONS(4006), - [anon_sym_hide_DASHenv] = ACTIONS(4006), - [anon_sym_overlay] = ACTIONS(4006), - [anon_sym_where] = ACTIONS(4006), - [anon_sym_not] = ACTIONS(4006), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4006), - [anon_sym_DOT_DOT_LT] = ACTIONS(4006), - [anon_sym_null] = ACTIONS(4006), - [anon_sym_true] = ACTIONS(4006), - [anon_sym_false] = ACTIONS(4006), - [aux_sym__val_number_decimal_token1] = ACTIONS(4006), - [aux_sym__val_number_decimal_token2] = ACTIONS(4006), - [anon_sym_DOT2] = ACTIONS(4006), - [aux_sym__val_number_decimal_token3] = ACTIONS(4006), - [aux_sym__val_number_token1] = ACTIONS(4006), - [aux_sym__val_number_token2] = ACTIONS(4006), - [aux_sym__val_number_token3] = ACTIONS(4006), - [aux_sym__val_number_token4] = ACTIONS(4006), - [aux_sym__val_number_token5] = ACTIONS(4006), - [aux_sym__val_number_token6] = ACTIONS(4006), - [anon_sym_0b] = ACTIONS(4006), - [anon_sym_0o] = ACTIONS(4006), - [anon_sym_0x] = ACTIONS(4006), - [sym_val_date] = ACTIONS(4006), - [anon_sym_DQUOTE] = ACTIONS(4006), - [sym__str_single_quotes] = ACTIONS(4006), - [sym__str_back_ticks] = ACTIONS(4006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4006), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4006), - [anon_sym_CARET] = ACTIONS(4006), - [anon_sym_POUND] = ACTIONS(113), - }, - [2855] = { - [sym_comment] = STATE(2855), - [ts_builtin_sym_end] = ACTIONS(6625), - [anon_sym_export] = ACTIONS(6623), - [anon_sym_alias] = ACTIONS(6623), - [anon_sym_let] = ACTIONS(6623), - [anon_sym_let_DASHenv] = ACTIONS(6623), - [anon_sym_mut] = ACTIONS(6623), - [anon_sym_const] = ACTIONS(6623), - [anon_sym_SEMI] = ACTIONS(6623), - [sym_cmd_identifier] = ACTIONS(6623), - [anon_sym_LF] = ACTIONS(6625), - [anon_sym_def] = ACTIONS(6623), - [anon_sym_export_DASHenv] = ACTIONS(6623), - [anon_sym_extern] = ACTIONS(6623), - [anon_sym_module] = ACTIONS(6623), - [anon_sym_use] = ACTIONS(6623), - [anon_sym_LBRACK] = ACTIONS(6623), - [anon_sym_LPAREN] = ACTIONS(6623), - [anon_sym_DOLLAR] = ACTIONS(6623), - [anon_sym_error] = ACTIONS(6623), - [anon_sym_DASH] = ACTIONS(6623), - [anon_sym_break] = ACTIONS(6623), - [anon_sym_continue] = ACTIONS(6623), - [anon_sym_for] = ACTIONS(6623), - [anon_sym_loop] = ACTIONS(6623), - [anon_sym_while] = ACTIONS(6623), - [anon_sym_do] = ACTIONS(6623), - [anon_sym_if] = ACTIONS(6623), - [anon_sym_match] = ACTIONS(6623), - [anon_sym_LBRACE] = ACTIONS(6623), - [anon_sym_DOT_DOT] = ACTIONS(6623), - [anon_sym_try] = ACTIONS(6623), - [anon_sym_return] = ACTIONS(6623), - [anon_sym_source] = ACTIONS(6623), - [anon_sym_source_DASHenv] = ACTIONS(6623), - [anon_sym_register] = ACTIONS(6623), - [anon_sym_hide] = ACTIONS(6623), - [anon_sym_hide_DASHenv] = ACTIONS(6623), - [anon_sym_overlay] = ACTIONS(6623), - [anon_sym_where] = ACTIONS(6623), - [anon_sym_not] = ACTIONS(6623), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6623), - [anon_sym_DOT_DOT_LT] = ACTIONS(6623), - [anon_sym_null] = ACTIONS(6623), - [anon_sym_true] = ACTIONS(6623), - [anon_sym_false] = ACTIONS(6623), - [aux_sym__val_number_decimal_token1] = ACTIONS(6623), - [aux_sym__val_number_decimal_token2] = ACTIONS(6623), - [anon_sym_DOT2] = ACTIONS(6623), - [aux_sym__val_number_decimal_token3] = ACTIONS(6623), - [aux_sym__val_number_token1] = ACTIONS(6623), - [aux_sym__val_number_token2] = ACTIONS(6623), - [aux_sym__val_number_token3] = ACTIONS(6623), - [aux_sym__val_number_token4] = ACTIONS(6623), - [aux_sym__val_number_token5] = ACTIONS(6623), - [aux_sym__val_number_token6] = ACTIONS(6623), - [anon_sym_0b] = ACTIONS(6623), - [anon_sym_0o] = ACTIONS(6623), - [anon_sym_0x] = ACTIONS(6623), - [sym_val_date] = ACTIONS(6623), - [anon_sym_DQUOTE] = ACTIONS(6623), - [sym__str_single_quotes] = ACTIONS(6623), - [sym__str_back_ticks] = ACTIONS(6623), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6623), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6623), - [anon_sym_CARET] = ACTIONS(6623), - [anon_sym_POUND] = ACTIONS(113), - }, - [2856] = { - [sym_comment] = STATE(2856), - [ts_builtin_sym_end] = ACTIONS(6720), - [anon_sym_export] = ACTIONS(6718), - [anon_sym_alias] = ACTIONS(6718), - [anon_sym_let] = ACTIONS(6718), - [anon_sym_let_DASHenv] = ACTIONS(6718), - [anon_sym_mut] = ACTIONS(6718), - [anon_sym_const] = ACTIONS(6718), - [anon_sym_SEMI] = ACTIONS(6718), - [sym_cmd_identifier] = ACTIONS(6718), - [anon_sym_LF] = ACTIONS(6720), - [anon_sym_def] = ACTIONS(6718), - [anon_sym_export_DASHenv] = ACTIONS(6718), - [anon_sym_extern] = ACTIONS(6718), - [anon_sym_module] = ACTIONS(6718), - [anon_sym_use] = ACTIONS(6718), - [anon_sym_LBRACK] = ACTIONS(6718), - [anon_sym_LPAREN] = ACTIONS(6718), - [anon_sym_DOLLAR] = ACTIONS(6718), - [anon_sym_error] = ACTIONS(6718), - [anon_sym_DASH] = ACTIONS(6718), - [anon_sym_break] = ACTIONS(6718), - [anon_sym_continue] = ACTIONS(6718), - [anon_sym_for] = ACTIONS(6718), - [anon_sym_loop] = ACTIONS(6718), - [anon_sym_while] = ACTIONS(6718), - [anon_sym_do] = ACTIONS(6718), - [anon_sym_if] = ACTIONS(6718), - [anon_sym_match] = ACTIONS(6718), - [anon_sym_LBRACE] = ACTIONS(6718), - [anon_sym_DOT_DOT] = ACTIONS(6718), - [anon_sym_try] = ACTIONS(6718), - [anon_sym_return] = ACTIONS(6718), - [anon_sym_source] = ACTIONS(6718), - [anon_sym_source_DASHenv] = ACTIONS(6718), - [anon_sym_register] = ACTIONS(6718), - [anon_sym_hide] = ACTIONS(6718), - [anon_sym_hide_DASHenv] = ACTIONS(6718), - [anon_sym_overlay] = ACTIONS(6718), - [anon_sym_where] = ACTIONS(6718), - [anon_sym_not] = ACTIONS(6718), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6718), - [anon_sym_DOT_DOT_LT] = ACTIONS(6718), - [anon_sym_null] = ACTIONS(6718), - [anon_sym_true] = ACTIONS(6718), - [anon_sym_false] = ACTIONS(6718), - [aux_sym__val_number_decimal_token1] = ACTIONS(6718), - [aux_sym__val_number_decimal_token2] = ACTIONS(6718), - [anon_sym_DOT2] = ACTIONS(6718), - [aux_sym__val_number_decimal_token3] = ACTIONS(6718), - [aux_sym__val_number_token1] = ACTIONS(6718), - [aux_sym__val_number_token2] = ACTIONS(6718), - [aux_sym__val_number_token3] = ACTIONS(6718), - [aux_sym__val_number_token4] = ACTIONS(6718), - [aux_sym__val_number_token5] = ACTIONS(6718), - [aux_sym__val_number_token6] = ACTIONS(6718), - [anon_sym_0b] = ACTIONS(6718), - [anon_sym_0o] = ACTIONS(6718), - [anon_sym_0x] = ACTIONS(6718), - [sym_val_date] = ACTIONS(6718), - [anon_sym_DQUOTE] = ACTIONS(6718), - [sym__str_single_quotes] = ACTIONS(6718), - [sym__str_back_ticks] = ACTIONS(6718), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6718), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6718), - [anon_sym_CARET] = ACTIONS(6718), - [anon_sym_POUND] = ACTIONS(113), - }, - [2857] = { - [sym_comment] = STATE(2857), - [ts_builtin_sym_end] = ACTIONS(6720), - [anon_sym_export] = ACTIONS(6718), - [anon_sym_alias] = ACTIONS(6718), - [anon_sym_let] = ACTIONS(6718), - [anon_sym_let_DASHenv] = ACTIONS(6718), - [anon_sym_mut] = ACTIONS(6718), - [anon_sym_const] = ACTIONS(6718), - [anon_sym_SEMI] = ACTIONS(6718), - [sym_cmd_identifier] = ACTIONS(6718), - [anon_sym_LF] = ACTIONS(6720), - [anon_sym_def] = ACTIONS(6718), - [anon_sym_export_DASHenv] = ACTIONS(6718), - [anon_sym_extern] = ACTIONS(6718), - [anon_sym_module] = ACTIONS(6718), - [anon_sym_use] = ACTIONS(6718), - [anon_sym_LBRACK] = ACTIONS(6718), - [anon_sym_LPAREN] = ACTIONS(6718), - [anon_sym_DOLLAR] = ACTIONS(6718), - [anon_sym_error] = ACTIONS(6718), - [anon_sym_DASH] = ACTIONS(6718), - [anon_sym_break] = ACTIONS(6718), - [anon_sym_continue] = ACTIONS(6718), - [anon_sym_for] = ACTIONS(6718), - [anon_sym_loop] = ACTIONS(6718), - [anon_sym_while] = ACTIONS(6718), - [anon_sym_do] = ACTIONS(6718), - [anon_sym_if] = ACTIONS(6718), - [anon_sym_match] = ACTIONS(6718), - [anon_sym_LBRACE] = ACTIONS(6718), - [anon_sym_DOT_DOT] = ACTIONS(6718), - [anon_sym_try] = ACTIONS(6718), - [anon_sym_return] = ACTIONS(6718), - [anon_sym_source] = ACTIONS(6718), - [anon_sym_source_DASHenv] = ACTIONS(6718), - [anon_sym_register] = ACTIONS(6718), - [anon_sym_hide] = ACTIONS(6718), - [anon_sym_hide_DASHenv] = ACTIONS(6718), - [anon_sym_overlay] = ACTIONS(6718), - [anon_sym_where] = ACTIONS(6718), - [anon_sym_not] = ACTIONS(6718), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6718), - [anon_sym_DOT_DOT_LT] = ACTIONS(6718), - [anon_sym_null] = ACTIONS(6718), - [anon_sym_true] = ACTIONS(6718), - [anon_sym_false] = ACTIONS(6718), - [aux_sym__val_number_decimal_token1] = ACTIONS(6718), - [aux_sym__val_number_decimal_token2] = ACTIONS(6718), - [anon_sym_DOT2] = ACTIONS(6718), - [aux_sym__val_number_decimal_token3] = ACTIONS(6718), - [aux_sym__val_number_token1] = ACTIONS(6718), - [aux_sym__val_number_token2] = ACTIONS(6718), - [aux_sym__val_number_token3] = ACTIONS(6718), - [aux_sym__val_number_token4] = ACTIONS(6718), - [aux_sym__val_number_token5] = ACTIONS(6718), - [aux_sym__val_number_token6] = ACTIONS(6718), - [anon_sym_0b] = ACTIONS(6718), - [anon_sym_0o] = ACTIONS(6718), - [anon_sym_0x] = ACTIONS(6718), - [sym_val_date] = ACTIONS(6718), - [anon_sym_DQUOTE] = ACTIONS(6718), - [sym__str_single_quotes] = ACTIONS(6718), - [sym__str_back_ticks] = ACTIONS(6718), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6718), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6718), - [anon_sym_CARET] = ACTIONS(6718), - [anon_sym_POUND] = ACTIONS(113), - }, - [2858] = { - [sym_comment] = STATE(2858), - [ts_builtin_sym_end] = ACTIONS(6526), - [anon_sym_export] = ACTIONS(6524), - [anon_sym_alias] = ACTIONS(6524), - [anon_sym_let] = ACTIONS(6524), - [anon_sym_let_DASHenv] = ACTIONS(6524), - [anon_sym_mut] = ACTIONS(6524), - [anon_sym_const] = ACTIONS(6524), - [anon_sym_SEMI] = ACTIONS(6524), - [sym_cmd_identifier] = ACTIONS(6524), - [anon_sym_LF] = ACTIONS(6526), - [anon_sym_def] = ACTIONS(6524), - [anon_sym_export_DASHenv] = ACTIONS(6524), - [anon_sym_extern] = ACTIONS(6524), - [anon_sym_module] = ACTIONS(6524), - [anon_sym_use] = ACTIONS(6524), - [anon_sym_LBRACK] = ACTIONS(6524), - [anon_sym_LPAREN] = ACTIONS(6524), - [anon_sym_DOLLAR] = ACTIONS(6524), - [anon_sym_error] = ACTIONS(6524), - [anon_sym_DASH] = ACTIONS(6524), - [anon_sym_break] = ACTIONS(6524), - [anon_sym_continue] = ACTIONS(6524), - [anon_sym_for] = ACTIONS(6524), - [anon_sym_loop] = ACTIONS(6524), - [anon_sym_while] = ACTIONS(6524), - [anon_sym_do] = ACTIONS(6524), - [anon_sym_if] = ACTIONS(6524), - [anon_sym_match] = ACTIONS(6524), - [anon_sym_LBRACE] = ACTIONS(6524), - [anon_sym_DOT_DOT] = ACTIONS(6524), - [anon_sym_try] = ACTIONS(6524), - [anon_sym_return] = ACTIONS(6524), - [anon_sym_source] = ACTIONS(6524), - [anon_sym_source_DASHenv] = ACTIONS(6524), - [anon_sym_register] = ACTIONS(6524), - [anon_sym_hide] = ACTIONS(6524), - [anon_sym_hide_DASHenv] = ACTIONS(6524), - [anon_sym_overlay] = ACTIONS(6524), - [anon_sym_where] = ACTIONS(6524), - [anon_sym_not] = ACTIONS(6524), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6524), - [anon_sym_DOT_DOT_LT] = ACTIONS(6524), - [anon_sym_null] = ACTIONS(6524), - [anon_sym_true] = ACTIONS(6524), - [anon_sym_false] = ACTIONS(6524), - [aux_sym__val_number_decimal_token1] = ACTIONS(6524), - [aux_sym__val_number_decimal_token2] = ACTIONS(6524), - [anon_sym_DOT2] = ACTIONS(6524), - [aux_sym__val_number_decimal_token3] = ACTIONS(6524), - [aux_sym__val_number_token1] = ACTIONS(6524), - [aux_sym__val_number_token2] = ACTIONS(6524), - [aux_sym__val_number_token3] = ACTIONS(6524), - [aux_sym__val_number_token4] = ACTIONS(6524), - [aux_sym__val_number_token5] = ACTIONS(6524), - [aux_sym__val_number_token6] = ACTIONS(6524), - [anon_sym_0b] = ACTIONS(6524), - [anon_sym_0o] = ACTIONS(6524), - [anon_sym_0x] = ACTIONS(6524), - [sym_val_date] = ACTIONS(6524), - [anon_sym_DQUOTE] = ACTIONS(6524), - [sym__str_single_quotes] = ACTIONS(6524), - [sym__str_back_ticks] = ACTIONS(6524), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6524), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6524), - [anon_sym_CARET] = ACTIONS(6524), - [anon_sym_POUND] = ACTIONS(113), - }, - [2859] = { - [sym_comment] = STATE(2859), - [ts_builtin_sym_end] = ACTIONS(6518), - [anon_sym_export] = ACTIONS(6516), - [anon_sym_alias] = ACTIONS(6516), - [anon_sym_let] = ACTIONS(6516), - [anon_sym_let_DASHenv] = ACTIONS(6516), - [anon_sym_mut] = ACTIONS(6516), - [anon_sym_const] = ACTIONS(6516), - [anon_sym_SEMI] = ACTIONS(6516), - [sym_cmd_identifier] = ACTIONS(6516), - [anon_sym_LF] = ACTIONS(6518), - [anon_sym_def] = ACTIONS(6516), - [anon_sym_export_DASHenv] = ACTIONS(6516), - [anon_sym_extern] = ACTIONS(6516), - [anon_sym_module] = ACTIONS(6516), - [anon_sym_use] = ACTIONS(6516), - [anon_sym_LBRACK] = ACTIONS(6516), - [anon_sym_LPAREN] = ACTIONS(6516), - [anon_sym_DOLLAR] = ACTIONS(6516), - [anon_sym_error] = ACTIONS(6516), - [anon_sym_DASH] = ACTIONS(6516), - [anon_sym_break] = ACTIONS(6516), - [anon_sym_continue] = ACTIONS(6516), - [anon_sym_for] = ACTIONS(6516), - [anon_sym_loop] = ACTIONS(6516), - [anon_sym_while] = ACTIONS(6516), - [anon_sym_do] = ACTIONS(6516), - [anon_sym_if] = ACTIONS(6516), - [anon_sym_match] = ACTIONS(6516), - [anon_sym_LBRACE] = ACTIONS(6516), - [anon_sym_DOT_DOT] = ACTIONS(6516), - [anon_sym_try] = ACTIONS(6516), - [anon_sym_return] = ACTIONS(6516), - [anon_sym_source] = ACTIONS(6516), - [anon_sym_source_DASHenv] = ACTIONS(6516), - [anon_sym_register] = ACTIONS(6516), - [anon_sym_hide] = ACTIONS(6516), - [anon_sym_hide_DASHenv] = ACTIONS(6516), - [anon_sym_overlay] = ACTIONS(6516), - [anon_sym_where] = ACTIONS(6516), - [anon_sym_not] = ACTIONS(6516), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6516), - [anon_sym_DOT_DOT_LT] = ACTIONS(6516), - [anon_sym_null] = ACTIONS(6516), - [anon_sym_true] = ACTIONS(6516), - [anon_sym_false] = ACTIONS(6516), - [aux_sym__val_number_decimal_token1] = ACTIONS(6516), - [aux_sym__val_number_decimal_token2] = ACTIONS(6516), - [anon_sym_DOT2] = ACTIONS(6516), - [aux_sym__val_number_decimal_token3] = ACTIONS(6516), - [aux_sym__val_number_token1] = ACTIONS(6516), - [aux_sym__val_number_token2] = ACTIONS(6516), - [aux_sym__val_number_token3] = ACTIONS(6516), - [aux_sym__val_number_token4] = ACTIONS(6516), - [aux_sym__val_number_token5] = ACTIONS(6516), - [aux_sym__val_number_token6] = ACTIONS(6516), - [anon_sym_0b] = ACTIONS(6516), - [anon_sym_0o] = ACTIONS(6516), - [anon_sym_0x] = ACTIONS(6516), - [sym_val_date] = ACTIONS(6516), - [anon_sym_DQUOTE] = ACTIONS(6516), - [sym__str_single_quotes] = ACTIONS(6516), - [sym__str_back_ticks] = ACTIONS(6516), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6516), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6516), - [anon_sym_CARET] = ACTIONS(6516), - [anon_sym_POUND] = ACTIONS(113), - }, - [2860] = { - [sym_comment] = STATE(2860), - [ts_builtin_sym_end] = ACTIONS(6406), - [anon_sym_export] = ACTIONS(6404), - [anon_sym_alias] = ACTIONS(6404), - [anon_sym_let] = ACTIONS(6404), - [anon_sym_let_DASHenv] = ACTIONS(6404), - [anon_sym_mut] = ACTIONS(6404), - [anon_sym_const] = ACTIONS(6404), - [anon_sym_SEMI] = ACTIONS(6404), - [sym_cmd_identifier] = ACTIONS(6404), - [anon_sym_LF] = ACTIONS(6406), - [anon_sym_def] = ACTIONS(6404), - [anon_sym_export_DASHenv] = ACTIONS(6404), - [anon_sym_extern] = ACTIONS(6404), - [anon_sym_module] = ACTIONS(6404), - [anon_sym_use] = ACTIONS(6404), - [anon_sym_LBRACK] = ACTIONS(6404), - [anon_sym_LPAREN] = ACTIONS(6404), - [anon_sym_DOLLAR] = ACTIONS(6404), - [anon_sym_error] = ACTIONS(6404), - [anon_sym_DASH] = ACTIONS(6404), - [anon_sym_break] = ACTIONS(6404), - [anon_sym_continue] = ACTIONS(6404), - [anon_sym_for] = ACTIONS(6404), - [anon_sym_loop] = ACTIONS(6404), - [anon_sym_while] = ACTIONS(6404), - [anon_sym_do] = ACTIONS(6404), - [anon_sym_if] = ACTIONS(6404), - [anon_sym_match] = ACTIONS(6404), - [anon_sym_LBRACE] = ACTIONS(6404), - [anon_sym_DOT_DOT] = ACTIONS(6404), - [anon_sym_try] = ACTIONS(6404), - [anon_sym_return] = ACTIONS(6404), - [anon_sym_source] = ACTIONS(6404), - [anon_sym_source_DASHenv] = ACTIONS(6404), - [anon_sym_register] = ACTIONS(6404), - [anon_sym_hide] = ACTIONS(6404), - [anon_sym_hide_DASHenv] = ACTIONS(6404), - [anon_sym_overlay] = ACTIONS(6404), - [anon_sym_where] = ACTIONS(6404), - [anon_sym_not] = ACTIONS(6404), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6404), - [anon_sym_DOT_DOT_LT] = ACTIONS(6404), - [anon_sym_null] = ACTIONS(6404), - [anon_sym_true] = ACTIONS(6404), - [anon_sym_false] = ACTIONS(6404), - [aux_sym__val_number_decimal_token1] = ACTIONS(6404), - [aux_sym__val_number_decimal_token2] = ACTIONS(6404), - [anon_sym_DOT2] = ACTIONS(6404), - [aux_sym__val_number_decimal_token3] = ACTIONS(6404), - [aux_sym__val_number_token1] = ACTIONS(6404), - [aux_sym__val_number_token2] = ACTIONS(6404), - [aux_sym__val_number_token3] = ACTIONS(6404), - [aux_sym__val_number_token4] = ACTIONS(6404), - [aux_sym__val_number_token5] = ACTIONS(6404), - [aux_sym__val_number_token6] = ACTIONS(6404), - [anon_sym_0b] = ACTIONS(6404), - [anon_sym_0o] = ACTIONS(6404), - [anon_sym_0x] = ACTIONS(6404), - [sym_val_date] = ACTIONS(6404), - [anon_sym_DQUOTE] = ACTIONS(6404), - [sym__str_single_quotes] = ACTIONS(6404), - [sym__str_back_ticks] = ACTIONS(6404), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6404), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6404), - [anon_sym_CARET] = ACTIONS(6404), - [anon_sym_POUND] = ACTIONS(113), - }, - [2861] = { - [sym_comment] = STATE(2861), - [ts_builtin_sym_end] = ACTIONS(5189), - [anon_sym_export] = ACTIONS(5187), - [anon_sym_alias] = ACTIONS(5187), - [anon_sym_let] = ACTIONS(5187), - [anon_sym_let_DASHenv] = ACTIONS(5187), - [anon_sym_mut] = ACTIONS(5187), - [anon_sym_const] = ACTIONS(5187), - [anon_sym_SEMI] = ACTIONS(5187), - [sym_cmd_identifier] = ACTIONS(5187), - [anon_sym_LF] = ACTIONS(5189), - [anon_sym_def] = ACTIONS(5187), - [anon_sym_export_DASHenv] = ACTIONS(5187), - [anon_sym_extern] = ACTIONS(5187), - [anon_sym_module] = ACTIONS(5187), - [anon_sym_use] = ACTIONS(5187), - [anon_sym_LBRACK] = ACTIONS(5187), - [anon_sym_LPAREN] = ACTIONS(5187), - [anon_sym_DOLLAR] = ACTIONS(5187), - [anon_sym_error] = ACTIONS(5187), - [anon_sym_DASH] = ACTIONS(5187), - [anon_sym_break] = ACTIONS(5187), - [anon_sym_continue] = ACTIONS(5187), - [anon_sym_for] = ACTIONS(5187), - [anon_sym_loop] = ACTIONS(5187), - [anon_sym_while] = ACTIONS(5187), - [anon_sym_do] = ACTIONS(5187), - [anon_sym_if] = ACTIONS(5187), - [anon_sym_match] = ACTIONS(5187), - [anon_sym_LBRACE] = ACTIONS(5187), - [anon_sym_DOT_DOT] = ACTIONS(5187), - [anon_sym_try] = ACTIONS(5187), - [anon_sym_return] = ACTIONS(5187), - [anon_sym_source] = ACTIONS(5187), - [anon_sym_source_DASHenv] = ACTIONS(5187), - [anon_sym_register] = ACTIONS(5187), - [anon_sym_hide] = ACTIONS(5187), - [anon_sym_hide_DASHenv] = ACTIONS(5187), - [anon_sym_overlay] = ACTIONS(5187), - [anon_sym_where] = ACTIONS(5187), - [anon_sym_not] = ACTIONS(5187), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5187), - [anon_sym_DOT_DOT_LT] = ACTIONS(5187), - [anon_sym_null] = ACTIONS(5187), - [anon_sym_true] = ACTIONS(5187), - [anon_sym_false] = ACTIONS(5187), - [aux_sym__val_number_decimal_token1] = ACTIONS(5187), - [aux_sym__val_number_decimal_token2] = ACTIONS(5187), - [anon_sym_DOT2] = ACTIONS(5187), - [aux_sym__val_number_decimal_token3] = ACTIONS(5187), - [aux_sym__val_number_token1] = ACTIONS(5187), - [aux_sym__val_number_token2] = ACTIONS(5187), - [aux_sym__val_number_token3] = ACTIONS(5187), - [aux_sym__val_number_token4] = ACTIONS(5187), - [aux_sym__val_number_token5] = ACTIONS(5187), - [aux_sym__val_number_token6] = ACTIONS(5187), - [anon_sym_0b] = ACTIONS(5187), - [anon_sym_0o] = ACTIONS(5187), - [anon_sym_0x] = ACTIONS(5187), - [sym_val_date] = ACTIONS(5187), - [anon_sym_DQUOTE] = ACTIONS(5187), - [sym__str_single_quotes] = ACTIONS(5187), - [sym__str_back_ticks] = ACTIONS(5187), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5187), - [anon_sym_CARET] = ACTIONS(5187), - [anon_sym_POUND] = ACTIONS(113), - }, - [2862] = { - [sym_comment] = STATE(2862), - [ts_builtin_sym_end] = ACTIONS(3868), - [anon_sym_export] = ACTIONS(3866), - [anon_sym_alias] = ACTIONS(3866), - [anon_sym_let] = ACTIONS(3866), - [anon_sym_let_DASHenv] = ACTIONS(3866), - [anon_sym_mut] = ACTIONS(3866), - [anon_sym_const] = ACTIONS(3866), - [anon_sym_SEMI] = ACTIONS(3866), - [sym_cmd_identifier] = ACTIONS(3866), - [anon_sym_LF] = ACTIONS(3868), - [anon_sym_def] = ACTIONS(3866), - [anon_sym_export_DASHenv] = ACTIONS(3866), - [anon_sym_extern] = ACTIONS(3866), - [anon_sym_module] = ACTIONS(3866), - [anon_sym_use] = ACTIONS(3866), - [anon_sym_LBRACK] = ACTIONS(3866), - [anon_sym_LPAREN] = ACTIONS(3866), - [anon_sym_DOLLAR] = ACTIONS(3866), - [anon_sym_error] = ACTIONS(3866), - [anon_sym_DASH] = ACTIONS(3866), - [anon_sym_break] = ACTIONS(3866), - [anon_sym_continue] = ACTIONS(3866), - [anon_sym_for] = ACTIONS(3866), - [anon_sym_loop] = ACTIONS(3866), - [anon_sym_while] = ACTIONS(3866), - [anon_sym_do] = ACTIONS(3866), - [anon_sym_if] = ACTIONS(3866), - [anon_sym_match] = ACTIONS(3866), - [anon_sym_LBRACE] = ACTIONS(3866), - [anon_sym_DOT_DOT] = ACTIONS(3866), - [anon_sym_try] = ACTIONS(3866), - [anon_sym_return] = ACTIONS(3866), - [anon_sym_source] = ACTIONS(3866), - [anon_sym_source_DASHenv] = ACTIONS(3866), - [anon_sym_register] = ACTIONS(3866), - [anon_sym_hide] = ACTIONS(3866), - [anon_sym_hide_DASHenv] = ACTIONS(3866), - [anon_sym_overlay] = ACTIONS(3866), - [anon_sym_where] = ACTIONS(3866), - [anon_sym_not] = ACTIONS(3866), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3866), - [anon_sym_DOT_DOT_LT] = ACTIONS(3866), - [anon_sym_null] = ACTIONS(3866), - [anon_sym_true] = ACTIONS(3866), - [anon_sym_false] = ACTIONS(3866), - [aux_sym__val_number_decimal_token1] = ACTIONS(3866), - [aux_sym__val_number_decimal_token2] = ACTIONS(3866), - [anon_sym_DOT2] = ACTIONS(3866), - [aux_sym__val_number_decimal_token3] = ACTIONS(3866), - [aux_sym__val_number_token1] = ACTIONS(3866), - [aux_sym__val_number_token2] = ACTIONS(3866), - [aux_sym__val_number_token3] = ACTIONS(3866), - [aux_sym__val_number_token4] = ACTIONS(3866), - [aux_sym__val_number_token5] = ACTIONS(3866), - [aux_sym__val_number_token6] = ACTIONS(3866), - [anon_sym_0b] = ACTIONS(3866), - [anon_sym_0o] = ACTIONS(3866), - [anon_sym_0x] = ACTIONS(3866), - [sym_val_date] = ACTIONS(3866), - [anon_sym_DQUOTE] = ACTIONS(3866), - [sym__str_single_quotes] = ACTIONS(3866), - [sym__str_back_ticks] = ACTIONS(3866), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3866), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), - [anon_sym_CARET] = ACTIONS(3866), - [anon_sym_POUND] = ACTIONS(113), - }, - [2863] = { - [sym_comment] = STATE(2863), - [ts_builtin_sym_end] = ACTIONS(6655), - [anon_sym_export] = ACTIONS(6653), - [anon_sym_alias] = ACTIONS(6653), - [anon_sym_let] = ACTIONS(6653), - [anon_sym_let_DASHenv] = ACTIONS(6653), - [anon_sym_mut] = ACTIONS(6653), - [anon_sym_const] = ACTIONS(6653), - [anon_sym_SEMI] = ACTIONS(6653), - [sym_cmd_identifier] = ACTIONS(6653), - [anon_sym_LF] = ACTIONS(6655), - [anon_sym_def] = ACTIONS(6653), - [anon_sym_export_DASHenv] = ACTIONS(6653), - [anon_sym_extern] = ACTIONS(6653), - [anon_sym_module] = ACTIONS(6653), - [anon_sym_use] = ACTIONS(6653), - [anon_sym_LBRACK] = ACTIONS(6653), - [anon_sym_LPAREN] = ACTIONS(6653), - [anon_sym_DOLLAR] = ACTIONS(6653), - [anon_sym_error] = ACTIONS(6653), - [anon_sym_DASH] = ACTIONS(6653), - [anon_sym_break] = ACTIONS(6653), - [anon_sym_continue] = ACTIONS(6653), - [anon_sym_for] = ACTIONS(6653), - [anon_sym_loop] = ACTIONS(6653), - [anon_sym_while] = ACTIONS(6653), - [anon_sym_do] = ACTIONS(6653), - [anon_sym_if] = ACTIONS(6653), - [anon_sym_match] = ACTIONS(6653), - [anon_sym_LBRACE] = ACTIONS(6653), - [anon_sym_DOT_DOT] = ACTIONS(6653), - [anon_sym_try] = ACTIONS(6653), - [anon_sym_return] = ACTIONS(6653), - [anon_sym_source] = ACTIONS(6653), - [anon_sym_source_DASHenv] = ACTIONS(6653), - [anon_sym_register] = ACTIONS(6653), - [anon_sym_hide] = ACTIONS(6653), - [anon_sym_hide_DASHenv] = ACTIONS(6653), - [anon_sym_overlay] = ACTIONS(6653), - [anon_sym_where] = ACTIONS(6653), - [anon_sym_not] = ACTIONS(6653), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6653), - [anon_sym_DOT_DOT_LT] = ACTIONS(6653), - [anon_sym_null] = ACTIONS(6653), - [anon_sym_true] = ACTIONS(6653), - [anon_sym_false] = ACTIONS(6653), - [aux_sym__val_number_decimal_token1] = ACTIONS(6653), - [aux_sym__val_number_decimal_token2] = ACTIONS(6653), - [anon_sym_DOT2] = ACTIONS(6653), - [aux_sym__val_number_decimal_token3] = ACTIONS(6653), - [aux_sym__val_number_token1] = ACTIONS(6653), - [aux_sym__val_number_token2] = ACTIONS(6653), - [aux_sym__val_number_token3] = ACTIONS(6653), - [aux_sym__val_number_token4] = ACTIONS(6653), - [aux_sym__val_number_token5] = ACTIONS(6653), - [aux_sym__val_number_token6] = ACTIONS(6653), - [anon_sym_0b] = ACTIONS(6653), - [anon_sym_0o] = ACTIONS(6653), - [anon_sym_0x] = ACTIONS(6653), - [sym_val_date] = ACTIONS(6653), - [anon_sym_DQUOTE] = ACTIONS(6653), - [sym__str_single_quotes] = ACTIONS(6653), - [sym__str_back_ticks] = ACTIONS(6653), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6653), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6653), - [anon_sym_CARET] = ACTIONS(6653), - [anon_sym_POUND] = ACTIONS(113), - }, - [2864] = { - [sym_comment] = STATE(2864), - [ts_builtin_sym_end] = ACTIONS(6659), - [anon_sym_export] = ACTIONS(6657), - [anon_sym_alias] = ACTIONS(6657), - [anon_sym_let] = ACTIONS(6657), - [anon_sym_let_DASHenv] = ACTIONS(6657), - [anon_sym_mut] = ACTIONS(6657), - [anon_sym_const] = ACTIONS(6657), - [anon_sym_SEMI] = ACTIONS(6657), - [sym_cmd_identifier] = ACTIONS(6657), - [anon_sym_LF] = ACTIONS(6659), - [anon_sym_def] = ACTIONS(6657), - [anon_sym_export_DASHenv] = ACTIONS(6657), - [anon_sym_extern] = ACTIONS(6657), - [anon_sym_module] = ACTIONS(6657), - [anon_sym_use] = ACTIONS(6657), - [anon_sym_LBRACK] = ACTIONS(6657), - [anon_sym_LPAREN] = ACTIONS(6657), - [anon_sym_DOLLAR] = ACTIONS(6657), - [anon_sym_error] = ACTIONS(6657), - [anon_sym_DASH] = ACTIONS(6657), - [anon_sym_break] = ACTIONS(6657), - [anon_sym_continue] = ACTIONS(6657), - [anon_sym_for] = ACTIONS(6657), - [anon_sym_loop] = ACTIONS(6657), - [anon_sym_while] = ACTIONS(6657), - [anon_sym_do] = ACTIONS(6657), - [anon_sym_if] = ACTIONS(6657), - [anon_sym_match] = ACTIONS(6657), - [anon_sym_LBRACE] = ACTIONS(6657), - [anon_sym_DOT_DOT] = ACTIONS(6657), - [anon_sym_try] = ACTIONS(6657), - [anon_sym_return] = ACTIONS(6657), - [anon_sym_source] = ACTIONS(6657), - [anon_sym_source_DASHenv] = ACTIONS(6657), - [anon_sym_register] = ACTIONS(6657), - [anon_sym_hide] = ACTIONS(6657), - [anon_sym_hide_DASHenv] = ACTIONS(6657), - [anon_sym_overlay] = ACTIONS(6657), - [anon_sym_where] = ACTIONS(6657), - [anon_sym_not] = ACTIONS(6657), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6657), - [anon_sym_DOT_DOT_LT] = ACTIONS(6657), - [anon_sym_null] = ACTIONS(6657), - [anon_sym_true] = ACTIONS(6657), - [anon_sym_false] = ACTIONS(6657), - [aux_sym__val_number_decimal_token1] = ACTIONS(6657), - [aux_sym__val_number_decimal_token2] = ACTIONS(6657), - [anon_sym_DOT2] = ACTIONS(6657), - [aux_sym__val_number_decimal_token3] = ACTIONS(6657), - [aux_sym__val_number_token1] = ACTIONS(6657), - [aux_sym__val_number_token2] = ACTIONS(6657), - [aux_sym__val_number_token3] = ACTIONS(6657), - [aux_sym__val_number_token4] = ACTIONS(6657), - [aux_sym__val_number_token5] = ACTIONS(6657), - [aux_sym__val_number_token6] = ACTIONS(6657), - [anon_sym_0b] = ACTIONS(6657), - [anon_sym_0o] = ACTIONS(6657), - [anon_sym_0x] = ACTIONS(6657), - [sym_val_date] = ACTIONS(6657), - [anon_sym_DQUOTE] = ACTIONS(6657), - [sym__str_single_quotes] = ACTIONS(6657), - [sym__str_back_ticks] = ACTIONS(6657), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6657), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6657), - [anon_sym_CARET] = ACTIONS(6657), - [anon_sym_POUND] = ACTIONS(113), - }, - [2865] = { - [sym_comment] = STATE(2865), - [anon_sym_SEMI] = ACTIONS(1247), - [anon_sym_LF] = ACTIONS(1249), - [anon_sym_LBRACK] = ACTIONS(1247), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_RPAREN] = ACTIONS(1247), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_DOLLAR] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1247), - [anon_sym_in] = ACTIONS(1247), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_RBRACE] = ACTIONS(1247), - [anon_sym_DOT_DOT] = ACTIONS(1247), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_STAR_STAR] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_mod] = ACTIONS(1247), - [anon_sym_SLASH_SLASH] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1247), - [anon_sym_bit_DASHshl] = ACTIONS(1247), - [anon_sym_bit_DASHshr] = ACTIONS(1247), - [anon_sym_EQ_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1247), - [anon_sym_LT2] = ACTIONS(1247), - [anon_sym_LT_EQ] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1247), - [anon_sym_not_DASHin] = ACTIONS(1247), - [anon_sym_starts_DASHwith] = ACTIONS(1247), - [anon_sym_ends_DASHwith] = ACTIONS(1247), - [anon_sym_EQ_TILDE] = ACTIONS(1247), - [anon_sym_BANG_TILDE] = ACTIONS(1247), - [anon_sym_bit_DASHand] = ACTIONS(1247), - [anon_sym_bit_DASHxor] = ACTIONS(1247), - [anon_sym_bit_DASHor] = ACTIONS(1247), - [anon_sym_and] = ACTIONS(1247), - [anon_sym_xor] = ACTIONS(1247), - [anon_sym_or] = ACTIONS(1247), - [anon_sym_not] = ACTIONS(1247), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1247), - [anon_sym_DOT_DOT_LT] = ACTIONS(1247), - [anon_sym_null] = ACTIONS(1247), - [anon_sym_true] = ACTIONS(1247), - [anon_sym_false] = ACTIONS(1247), - [aux_sym__val_number_decimal_token1] = ACTIONS(1247), - [aux_sym__val_number_decimal_token2] = ACTIONS(1247), - [anon_sym_DOT2] = ACTIONS(1247), - [aux_sym__val_number_decimal_token3] = ACTIONS(1247), - [aux_sym__val_number_token1] = ACTIONS(1247), - [aux_sym__val_number_token2] = ACTIONS(1247), - [aux_sym__val_number_token3] = ACTIONS(1247), - [aux_sym__val_number_token4] = ACTIONS(1247), - [aux_sym__val_number_token5] = ACTIONS(1247), - [aux_sym__val_number_token6] = ACTIONS(1247), - [anon_sym_0b] = ACTIONS(1247), - [anon_sym_0o] = ACTIONS(1247), - [anon_sym_0x] = ACTIONS(1247), - [sym_val_date] = ACTIONS(1247), - [anon_sym_DQUOTE] = ACTIONS(1247), - [sym__str_single_quotes] = ACTIONS(1247), - [sym__str_back_ticks] = ACTIONS(1247), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1247), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1247), - [aux_sym_unquoted_token6] = ACTIONS(1251), - [anon_sym_POUND] = ACTIONS(113), - }, - [2866] = { - [sym_comment] = STATE(2866), - [ts_builtin_sym_end] = ACTIONS(5193), - [anon_sym_export] = ACTIONS(5191), - [anon_sym_alias] = ACTIONS(5191), - [anon_sym_let] = ACTIONS(5191), - [anon_sym_let_DASHenv] = ACTIONS(5191), - [anon_sym_mut] = ACTIONS(5191), - [anon_sym_const] = ACTIONS(5191), - [anon_sym_SEMI] = ACTIONS(5191), - [sym_cmd_identifier] = ACTIONS(5191), - [anon_sym_LF] = ACTIONS(5193), - [anon_sym_def] = ACTIONS(5191), - [anon_sym_export_DASHenv] = ACTIONS(5191), - [anon_sym_extern] = ACTIONS(5191), - [anon_sym_module] = ACTIONS(5191), - [anon_sym_use] = ACTIONS(5191), - [anon_sym_LBRACK] = ACTIONS(5191), - [anon_sym_LPAREN] = ACTIONS(5191), - [anon_sym_DOLLAR] = ACTIONS(5191), - [anon_sym_error] = ACTIONS(5191), - [anon_sym_DASH] = ACTIONS(5191), - [anon_sym_break] = ACTIONS(5191), - [anon_sym_continue] = ACTIONS(5191), - [anon_sym_for] = ACTIONS(5191), - [anon_sym_loop] = ACTIONS(5191), - [anon_sym_while] = ACTIONS(5191), - [anon_sym_do] = ACTIONS(5191), - [anon_sym_if] = ACTIONS(5191), - [anon_sym_match] = ACTIONS(5191), - [anon_sym_LBRACE] = ACTIONS(5191), - [anon_sym_DOT_DOT] = ACTIONS(5191), - [anon_sym_try] = ACTIONS(5191), - [anon_sym_return] = ACTIONS(5191), - [anon_sym_source] = ACTIONS(5191), - [anon_sym_source_DASHenv] = ACTIONS(5191), - [anon_sym_register] = ACTIONS(5191), - [anon_sym_hide] = ACTIONS(5191), - [anon_sym_hide_DASHenv] = ACTIONS(5191), - [anon_sym_overlay] = ACTIONS(5191), - [anon_sym_where] = ACTIONS(5191), - [anon_sym_not] = ACTIONS(5191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5191), - [anon_sym_DOT_DOT_LT] = ACTIONS(5191), - [anon_sym_null] = ACTIONS(5191), - [anon_sym_true] = ACTIONS(5191), - [anon_sym_false] = ACTIONS(5191), - [aux_sym__val_number_decimal_token1] = ACTIONS(5191), - [aux_sym__val_number_decimal_token2] = ACTIONS(5191), - [anon_sym_DOT2] = ACTIONS(5191), - [aux_sym__val_number_decimal_token3] = ACTIONS(5191), - [aux_sym__val_number_token1] = ACTIONS(5191), - [aux_sym__val_number_token2] = ACTIONS(5191), - [aux_sym__val_number_token3] = ACTIONS(5191), - [aux_sym__val_number_token4] = ACTIONS(5191), - [aux_sym__val_number_token5] = ACTIONS(5191), - [aux_sym__val_number_token6] = ACTIONS(5191), - [anon_sym_0b] = ACTIONS(5191), - [anon_sym_0o] = ACTIONS(5191), - [anon_sym_0x] = ACTIONS(5191), - [sym_val_date] = ACTIONS(5191), - [anon_sym_DQUOTE] = ACTIONS(5191), - [sym__str_single_quotes] = ACTIONS(5191), - [sym__str_back_ticks] = ACTIONS(5191), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5191), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5191), - [anon_sym_CARET] = ACTIONS(5191), - [anon_sym_POUND] = ACTIONS(113), - }, - [2867] = { - [sym_comment] = STATE(2867), - [ts_builtin_sym_end] = ACTIONS(6732), - [anon_sym_export] = ACTIONS(6730), - [anon_sym_alias] = ACTIONS(6730), - [anon_sym_let] = ACTIONS(6730), - [anon_sym_let_DASHenv] = ACTIONS(6730), - [anon_sym_mut] = ACTIONS(6730), - [anon_sym_const] = ACTIONS(6730), - [anon_sym_SEMI] = ACTIONS(6730), - [sym_cmd_identifier] = ACTIONS(6730), - [anon_sym_LF] = ACTIONS(6732), - [anon_sym_def] = ACTIONS(6730), - [anon_sym_export_DASHenv] = ACTIONS(6730), - [anon_sym_extern] = ACTIONS(6730), - [anon_sym_module] = ACTIONS(6730), - [anon_sym_use] = ACTIONS(6730), - [anon_sym_LBRACK] = ACTIONS(6730), - [anon_sym_LPAREN] = ACTIONS(6730), - [anon_sym_DOLLAR] = ACTIONS(6730), - [anon_sym_error] = ACTIONS(6730), - [anon_sym_DASH] = ACTIONS(6730), - [anon_sym_break] = ACTIONS(6730), - [anon_sym_continue] = ACTIONS(6730), - [anon_sym_for] = ACTIONS(6730), - [anon_sym_loop] = ACTIONS(6730), - [anon_sym_while] = ACTIONS(6730), - [anon_sym_do] = ACTIONS(6730), - [anon_sym_if] = ACTIONS(6730), - [anon_sym_match] = ACTIONS(6730), - [anon_sym_LBRACE] = ACTIONS(6730), - [anon_sym_DOT_DOT] = ACTIONS(6730), - [anon_sym_try] = ACTIONS(6730), - [anon_sym_return] = ACTIONS(6730), - [anon_sym_source] = ACTIONS(6730), - [anon_sym_source_DASHenv] = ACTIONS(6730), - [anon_sym_register] = ACTIONS(6730), - [anon_sym_hide] = ACTIONS(6730), - [anon_sym_hide_DASHenv] = ACTIONS(6730), - [anon_sym_overlay] = ACTIONS(6730), - [anon_sym_where] = ACTIONS(6730), - [anon_sym_not] = ACTIONS(6730), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6730), - [anon_sym_DOT_DOT_LT] = ACTIONS(6730), - [anon_sym_null] = ACTIONS(6730), - [anon_sym_true] = ACTIONS(6730), - [anon_sym_false] = ACTIONS(6730), - [aux_sym__val_number_decimal_token1] = ACTIONS(6730), - [aux_sym__val_number_decimal_token2] = ACTIONS(6730), - [anon_sym_DOT2] = ACTIONS(6730), - [aux_sym__val_number_decimal_token3] = ACTIONS(6730), - [aux_sym__val_number_token1] = ACTIONS(6730), - [aux_sym__val_number_token2] = ACTIONS(6730), - [aux_sym__val_number_token3] = ACTIONS(6730), - [aux_sym__val_number_token4] = ACTIONS(6730), - [aux_sym__val_number_token5] = ACTIONS(6730), - [aux_sym__val_number_token6] = ACTIONS(6730), - [anon_sym_0b] = ACTIONS(6730), - [anon_sym_0o] = ACTIONS(6730), - [anon_sym_0x] = ACTIONS(6730), - [sym_val_date] = ACTIONS(6730), - [anon_sym_DQUOTE] = ACTIONS(6730), - [sym__str_single_quotes] = ACTIONS(6730), - [sym__str_back_ticks] = ACTIONS(6730), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6730), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6730), - [anon_sym_CARET] = ACTIONS(6730), - [anon_sym_POUND] = ACTIONS(113), - }, - [2868] = { - [sym_comment] = STATE(2868), - [ts_builtin_sym_end] = ACTIONS(6736), - [anon_sym_export] = ACTIONS(6734), - [anon_sym_alias] = ACTIONS(6734), - [anon_sym_let] = ACTIONS(6734), - [anon_sym_let_DASHenv] = ACTIONS(6734), - [anon_sym_mut] = ACTIONS(6734), - [anon_sym_const] = ACTIONS(6734), - [anon_sym_SEMI] = ACTIONS(6734), - [sym_cmd_identifier] = ACTIONS(6734), - [anon_sym_LF] = ACTIONS(6736), - [anon_sym_def] = ACTIONS(6734), - [anon_sym_export_DASHenv] = ACTIONS(6734), - [anon_sym_extern] = ACTIONS(6734), - [anon_sym_module] = ACTIONS(6734), - [anon_sym_use] = ACTIONS(6734), - [anon_sym_LBRACK] = ACTIONS(6734), - [anon_sym_LPAREN] = ACTIONS(6734), - [anon_sym_DOLLAR] = ACTIONS(6734), - [anon_sym_error] = ACTIONS(6734), - [anon_sym_DASH] = ACTIONS(6734), - [anon_sym_break] = ACTIONS(6734), - [anon_sym_continue] = ACTIONS(6734), - [anon_sym_for] = ACTIONS(6734), - [anon_sym_loop] = ACTIONS(6734), - [anon_sym_while] = ACTIONS(6734), - [anon_sym_do] = ACTIONS(6734), - [anon_sym_if] = ACTIONS(6734), - [anon_sym_match] = ACTIONS(6734), - [anon_sym_LBRACE] = ACTIONS(6734), - [anon_sym_DOT_DOT] = ACTIONS(6734), - [anon_sym_try] = ACTIONS(6734), - [anon_sym_return] = ACTIONS(6734), - [anon_sym_source] = ACTIONS(6734), - [anon_sym_source_DASHenv] = ACTIONS(6734), - [anon_sym_register] = ACTIONS(6734), - [anon_sym_hide] = ACTIONS(6734), - [anon_sym_hide_DASHenv] = ACTIONS(6734), - [anon_sym_overlay] = ACTIONS(6734), - [anon_sym_where] = ACTIONS(6734), - [anon_sym_not] = ACTIONS(6734), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6734), - [anon_sym_DOT_DOT_LT] = ACTIONS(6734), - [anon_sym_null] = ACTIONS(6734), - [anon_sym_true] = ACTIONS(6734), - [anon_sym_false] = ACTIONS(6734), - [aux_sym__val_number_decimal_token1] = ACTIONS(6734), - [aux_sym__val_number_decimal_token2] = ACTIONS(6734), - [anon_sym_DOT2] = ACTIONS(6734), - [aux_sym__val_number_decimal_token3] = ACTIONS(6734), - [aux_sym__val_number_token1] = ACTIONS(6734), - [aux_sym__val_number_token2] = ACTIONS(6734), - [aux_sym__val_number_token3] = ACTIONS(6734), - [aux_sym__val_number_token4] = ACTIONS(6734), - [aux_sym__val_number_token5] = ACTIONS(6734), - [aux_sym__val_number_token6] = ACTIONS(6734), - [anon_sym_0b] = ACTIONS(6734), - [anon_sym_0o] = ACTIONS(6734), - [anon_sym_0x] = ACTIONS(6734), - [sym_val_date] = ACTIONS(6734), - [anon_sym_DQUOTE] = ACTIONS(6734), - [sym__str_single_quotes] = ACTIONS(6734), - [sym__str_back_ticks] = ACTIONS(6734), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6734), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6734), - [anon_sym_CARET] = ACTIONS(6734), - [anon_sym_POUND] = ACTIONS(113), - }, - [2869] = { - [sym_comment] = STATE(2869), - [ts_builtin_sym_end] = ACTIONS(6822), - [anon_sym_export] = ACTIONS(6385), - [anon_sym_alias] = ACTIONS(6385), - [anon_sym_let] = ACTIONS(6385), - [anon_sym_let_DASHenv] = ACTIONS(6385), - [anon_sym_mut] = ACTIONS(6385), - [anon_sym_const] = ACTIONS(6385), - [anon_sym_SEMI] = ACTIONS(6387), - [sym_cmd_identifier] = ACTIONS(6385), - [anon_sym_LF] = ACTIONS(6390), - [anon_sym_def] = ACTIONS(6385), - [anon_sym_export_DASHenv] = ACTIONS(6385), - [anon_sym_extern] = ACTIONS(6385), - [anon_sym_module] = ACTIONS(6385), - [anon_sym_use] = ACTIONS(6385), - [anon_sym_LBRACK] = ACTIONS(6385), - [anon_sym_LPAREN] = ACTIONS(6385), - [anon_sym_DOLLAR] = ACTIONS(6385), - [anon_sym_error] = ACTIONS(6385), - [anon_sym_DASH] = ACTIONS(6385), - [anon_sym_break] = ACTIONS(6385), - [anon_sym_continue] = ACTIONS(6385), - [anon_sym_for] = ACTIONS(6385), - [anon_sym_loop] = ACTIONS(6385), - [anon_sym_while] = ACTIONS(6385), - [anon_sym_do] = ACTIONS(6385), - [anon_sym_if] = ACTIONS(6385), - [anon_sym_match] = ACTIONS(6385), - [anon_sym_LBRACE] = ACTIONS(6385), - [anon_sym_DOT_DOT] = ACTIONS(6385), - [anon_sym_try] = ACTIONS(6385), - [anon_sym_return] = ACTIONS(6385), - [anon_sym_source] = ACTIONS(6385), - [anon_sym_source_DASHenv] = ACTIONS(6385), - [anon_sym_register] = ACTIONS(6385), - [anon_sym_hide] = ACTIONS(6385), - [anon_sym_hide_DASHenv] = ACTIONS(6385), - [anon_sym_overlay] = ACTIONS(6385), - [anon_sym_where] = ACTIONS(6385), - [anon_sym_not] = ACTIONS(6385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6385), - [anon_sym_DOT_DOT_LT] = ACTIONS(6385), - [anon_sym_null] = ACTIONS(6385), - [anon_sym_true] = ACTIONS(6385), - [anon_sym_false] = ACTIONS(6385), - [aux_sym__val_number_decimal_token1] = ACTIONS(6385), - [aux_sym__val_number_decimal_token2] = ACTIONS(6385), - [anon_sym_DOT2] = ACTIONS(6385), - [aux_sym__val_number_decimal_token3] = ACTIONS(6385), - [aux_sym__val_number_token1] = ACTIONS(6385), - [aux_sym__val_number_token2] = ACTIONS(6385), - [aux_sym__val_number_token3] = ACTIONS(6385), - [aux_sym__val_number_token4] = ACTIONS(6385), - [aux_sym__val_number_token5] = ACTIONS(6385), - [aux_sym__val_number_token6] = ACTIONS(6385), - [anon_sym_0b] = ACTIONS(6385), - [anon_sym_0o] = ACTIONS(6385), - [anon_sym_0x] = ACTIONS(6385), - [sym_val_date] = ACTIONS(6385), - [anon_sym_DQUOTE] = ACTIONS(6385), - [sym__str_single_quotes] = ACTIONS(6385), - [sym__str_back_ticks] = ACTIONS(6385), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6385), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6385), - [anon_sym_CARET] = ACTIONS(6385), - [anon_sym_POUND] = ACTIONS(113), - }, - [2870] = { - [sym_comment] = STATE(2870), - [anon_sym_SEMI] = ACTIONS(1253), - [anon_sym_LF] = ACTIONS(1255), - [anon_sym_LBRACK] = ACTIONS(1253), - [anon_sym_LPAREN] = ACTIONS(1253), - [anon_sym_RPAREN] = ACTIONS(1253), - [anon_sym_PIPE] = ACTIONS(1253), - [anon_sym_DOLLAR] = ACTIONS(1253), - [anon_sym_GT] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_in] = ACTIONS(1253), - [anon_sym_LBRACE] = ACTIONS(1253), - [anon_sym_RBRACE] = ACTIONS(1253), - [anon_sym_DOT_DOT] = ACTIONS(1253), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_STAR_STAR] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_mod] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_bit_DASHshl] = ACTIONS(1253), - [anon_sym_bit_DASHshr] = ACTIONS(1253), - [anon_sym_EQ_EQ] = ACTIONS(1253), - [anon_sym_BANG_EQ] = ACTIONS(1253), - [anon_sym_LT2] = ACTIONS(1253), - [anon_sym_LT_EQ] = ACTIONS(1253), - [anon_sym_GT_EQ] = ACTIONS(1253), - [anon_sym_not_DASHin] = ACTIONS(1253), - [anon_sym_starts_DASHwith] = ACTIONS(1253), - [anon_sym_ends_DASHwith] = ACTIONS(1253), - [anon_sym_EQ_TILDE] = ACTIONS(1253), - [anon_sym_BANG_TILDE] = ACTIONS(1253), - [anon_sym_bit_DASHand] = ACTIONS(1253), - [anon_sym_bit_DASHxor] = ACTIONS(1253), - [anon_sym_bit_DASHor] = ACTIONS(1253), - [anon_sym_and] = ACTIONS(1253), - [anon_sym_xor] = ACTIONS(1253), - [anon_sym_or] = ACTIONS(1253), - [anon_sym_not] = ACTIONS(1253), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1253), - [anon_sym_DOT_DOT_LT] = ACTIONS(1253), - [anon_sym_null] = ACTIONS(1253), - [anon_sym_true] = ACTIONS(1253), - [anon_sym_false] = ACTIONS(1253), - [aux_sym__val_number_decimal_token1] = ACTIONS(1253), - [aux_sym__val_number_decimal_token2] = ACTIONS(1253), - [anon_sym_DOT2] = ACTIONS(1253), - [aux_sym__val_number_decimal_token3] = ACTIONS(1253), - [aux_sym__val_number_token1] = ACTIONS(1253), - [aux_sym__val_number_token2] = ACTIONS(1253), - [aux_sym__val_number_token3] = ACTIONS(1253), - [aux_sym__val_number_token4] = ACTIONS(1253), - [aux_sym__val_number_token5] = ACTIONS(1253), - [aux_sym__val_number_token6] = ACTIONS(1253), - [anon_sym_0b] = ACTIONS(1253), - [anon_sym_0o] = ACTIONS(1253), - [anon_sym_0x] = ACTIONS(1253), - [sym_val_date] = ACTIONS(1253), - [anon_sym_DQUOTE] = ACTIONS(1253), - [sym__str_single_quotes] = ACTIONS(1253), - [sym__str_back_ticks] = ACTIONS(1253), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1253), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1253), - [aux_sym_unquoted_token6] = ACTIONS(1257), - [anon_sym_POUND] = ACTIONS(113), - }, - [2871] = { - [sym_comment] = STATE(2871), - [ts_builtin_sym_end] = ACTIONS(6740), - [anon_sym_export] = ACTIONS(6738), - [anon_sym_alias] = ACTIONS(6738), - [anon_sym_let] = ACTIONS(6738), - [anon_sym_let_DASHenv] = ACTIONS(6738), - [anon_sym_mut] = ACTIONS(6738), - [anon_sym_const] = ACTIONS(6738), - [anon_sym_SEMI] = ACTIONS(6738), - [sym_cmd_identifier] = ACTIONS(6738), - [anon_sym_LF] = ACTIONS(6740), - [anon_sym_def] = ACTIONS(6738), - [anon_sym_export_DASHenv] = ACTIONS(6738), - [anon_sym_extern] = ACTIONS(6738), - [anon_sym_module] = ACTIONS(6738), - [anon_sym_use] = ACTIONS(6738), - [anon_sym_LBRACK] = ACTIONS(6738), - [anon_sym_LPAREN] = ACTIONS(6738), - [anon_sym_DOLLAR] = ACTIONS(6738), - [anon_sym_error] = ACTIONS(6738), - [anon_sym_DASH] = ACTIONS(6738), - [anon_sym_break] = ACTIONS(6738), - [anon_sym_continue] = ACTIONS(6738), - [anon_sym_for] = ACTIONS(6738), - [anon_sym_loop] = ACTIONS(6738), - [anon_sym_while] = ACTIONS(6738), - [anon_sym_do] = ACTIONS(6738), - [anon_sym_if] = ACTIONS(6738), - [anon_sym_match] = ACTIONS(6738), - [anon_sym_LBRACE] = ACTIONS(6738), - [anon_sym_DOT_DOT] = ACTIONS(6738), - [anon_sym_try] = ACTIONS(6738), - [anon_sym_return] = ACTIONS(6738), - [anon_sym_source] = ACTIONS(6738), - [anon_sym_source_DASHenv] = ACTIONS(6738), - [anon_sym_register] = ACTIONS(6738), - [anon_sym_hide] = ACTIONS(6738), - [anon_sym_hide_DASHenv] = ACTIONS(6738), - [anon_sym_overlay] = ACTIONS(6738), - [anon_sym_where] = ACTIONS(6738), - [anon_sym_not] = ACTIONS(6738), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6738), - [anon_sym_DOT_DOT_LT] = ACTIONS(6738), - [anon_sym_null] = ACTIONS(6738), - [anon_sym_true] = ACTIONS(6738), - [anon_sym_false] = ACTIONS(6738), - [aux_sym__val_number_decimal_token1] = ACTIONS(6738), - [aux_sym__val_number_decimal_token2] = ACTIONS(6738), - [anon_sym_DOT2] = ACTIONS(6738), - [aux_sym__val_number_decimal_token3] = ACTIONS(6738), - [aux_sym__val_number_token1] = ACTIONS(6738), - [aux_sym__val_number_token2] = ACTIONS(6738), - [aux_sym__val_number_token3] = ACTIONS(6738), - [aux_sym__val_number_token4] = ACTIONS(6738), - [aux_sym__val_number_token5] = ACTIONS(6738), - [aux_sym__val_number_token6] = ACTIONS(6738), - [anon_sym_0b] = ACTIONS(6738), - [anon_sym_0o] = ACTIONS(6738), - [anon_sym_0x] = ACTIONS(6738), - [sym_val_date] = ACTIONS(6738), - [anon_sym_DQUOTE] = ACTIONS(6738), - [sym__str_single_quotes] = ACTIONS(6738), - [sym__str_back_ticks] = ACTIONS(6738), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6738), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6738), - [anon_sym_CARET] = ACTIONS(6738), - [anon_sym_POUND] = ACTIONS(113), - }, - [2872] = { - [sym_comment] = STATE(2872), - [ts_builtin_sym_end] = ACTIONS(6740), - [anon_sym_export] = ACTIONS(6738), - [anon_sym_alias] = ACTIONS(6738), - [anon_sym_let] = ACTIONS(6738), - [anon_sym_let_DASHenv] = ACTIONS(6738), - [anon_sym_mut] = ACTIONS(6738), - [anon_sym_const] = ACTIONS(6738), - [anon_sym_SEMI] = ACTIONS(6738), - [sym_cmd_identifier] = ACTIONS(6738), - [anon_sym_LF] = ACTIONS(6740), - [anon_sym_def] = ACTIONS(6738), - [anon_sym_export_DASHenv] = ACTIONS(6738), - [anon_sym_extern] = ACTIONS(6738), - [anon_sym_module] = ACTIONS(6738), - [anon_sym_use] = ACTIONS(6738), - [anon_sym_LBRACK] = ACTIONS(6738), - [anon_sym_LPAREN] = ACTIONS(6738), - [anon_sym_DOLLAR] = ACTIONS(6738), - [anon_sym_error] = ACTIONS(6738), - [anon_sym_DASH] = ACTIONS(6738), - [anon_sym_break] = ACTIONS(6738), - [anon_sym_continue] = ACTIONS(6738), - [anon_sym_for] = ACTIONS(6738), - [anon_sym_loop] = ACTIONS(6738), - [anon_sym_while] = ACTIONS(6738), - [anon_sym_do] = ACTIONS(6738), - [anon_sym_if] = ACTIONS(6738), - [anon_sym_match] = ACTIONS(6738), - [anon_sym_LBRACE] = ACTIONS(6738), - [anon_sym_DOT_DOT] = ACTIONS(6738), - [anon_sym_try] = ACTIONS(6738), - [anon_sym_return] = ACTIONS(6738), - [anon_sym_source] = ACTIONS(6738), - [anon_sym_source_DASHenv] = ACTIONS(6738), - [anon_sym_register] = ACTIONS(6738), - [anon_sym_hide] = ACTIONS(6738), - [anon_sym_hide_DASHenv] = ACTIONS(6738), - [anon_sym_overlay] = ACTIONS(6738), - [anon_sym_where] = ACTIONS(6738), - [anon_sym_not] = ACTIONS(6738), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6738), - [anon_sym_DOT_DOT_LT] = ACTIONS(6738), - [anon_sym_null] = ACTIONS(6738), - [anon_sym_true] = ACTIONS(6738), - [anon_sym_false] = ACTIONS(6738), - [aux_sym__val_number_decimal_token1] = ACTIONS(6738), - [aux_sym__val_number_decimal_token2] = ACTIONS(6738), - [anon_sym_DOT2] = ACTIONS(6738), - [aux_sym__val_number_decimal_token3] = ACTIONS(6738), - [aux_sym__val_number_token1] = ACTIONS(6738), - [aux_sym__val_number_token2] = ACTIONS(6738), - [aux_sym__val_number_token3] = ACTIONS(6738), - [aux_sym__val_number_token4] = ACTIONS(6738), - [aux_sym__val_number_token5] = ACTIONS(6738), - [aux_sym__val_number_token6] = ACTIONS(6738), - [anon_sym_0b] = ACTIONS(6738), - [anon_sym_0o] = ACTIONS(6738), - [anon_sym_0x] = ACTIONS(6738), - [sym_val_date] = ACTIONS(6738), - [anon_sym_DQUOTE] = ACTIONS(6738), - [sym__str_single_quotes] = ACTIONS(6738), - [sym__str_back_ticks] = ACTIONS(6738), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6738), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6738), - [anon_sym_CARET] = ACTIONS(6738), - [anon_sym_POUND] = ACTIONS(113), - }, - [2873] = { - [sym_comment] = STATE(2873), - [ts_builtin_sym_end] = ACTIONS(1188), - [anon_sym_export] = ACTIONS(1186), - [anon_sym_alias] = ACTIONS(1186), - [anon_sym_let] = ACTIONS(1186), - [anon_sym_let_DASHenv] = ACTIONS(1186), - [anon_sym_mut] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1186), - [sym_cmd_identifier] = ACTIONS(1186), - [anon_sym_LF] = ACTIONS(1188), - [anon_sym_def] = ACTIONS(1186), - [anon_sym_export_DASHenv] = ACTIONS(1186), - [anon_sym_extern] = ACTIONS(1186), - [anon_sym_module] = ACTIONS(1186), - [anon_sym_use] = ACTIONS(1186), - [anon_sym_LBRACK] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(1186), - [anon_sym_DOLLAR] = ACTIONS(1186), - [anon_sym_error] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1186), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1186), - [anon_sym_loop] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_do] = ACTIONS(1186), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_match] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_DOT_DOT] = ACTIONS(1186), - [anon_sym_try] = ACTIONS(1186), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_source] = ACTIONS(1186), - [anon_sym_source_DASHenv] = ACTIONS(1186), - [anon_sym_register] = ACTIONS(1186), - [anon_sym_hide] = ACTIONS(1186), - [anon_sym_hide_DASHenv] = ACTIONS(1186), - [anon_sym_overlay] = ACTIONS(1186), - [anon_sym_where] = ACTIONS(1186), - [anon_sym_not] = ACTIONS(1186), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1186), - [anon_sym_DOT_DOT_LT] = ACTIONS(1186), - [anon_sym_null] = ACTIONS(1186), - [anon_sym_true] = ACTIONS(1186), - [anon_sym_false] = ACTIONS(1186), - [aux_sym__val_number_decimal_token1] = ACTIONS(1186), - [aux_sym__val_number_decimal_token2] = ACTIONS(1186), - [anon_sym_DOT2] = ACTIONS(1186), - [aux_sym__val_number_decimal_token3] = ACTIONS(1186), - [aux_sym__val_number_token1] = ACTIONS(1186), - [aux_sym__val_number_token2] = ACTIONS(1186), - [aux_sym__val_number_token3] = ACTIONS(1186), - [aux_sym__val_number_token4] = ACTIONS(1186), - [aux_sym__val_number_token5] = ACTIONS(1186), - [aux_sym__val_number_token6] = ACTIONS(1186), - [anon_sym_0b] = ACTIONS(1186), - [anon_sym_0o] = ACTIONS(1186), - [anon_sym_0x] = ACTIONS(1186), - [sym_val_date] = ACTIONS(1186), - [anon_sym_DQUOTE] = ACTIONS(1186), - [sym__str_single_quotes] = ACTIONS(1186), - [sym__str_back_ticks] = ACTIONS(1186), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1186), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1186), - [anon_sym_CARET] = ACTIONS(1186), - [anon_sym_POUND] = ACTIONS(113), - }, - [2874] = { - [sym_comment] = STATE(2874), - [anon_sym_SEMI] = ACTIONS(1273), - [anon_sym_LF] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1273), - [anon_sym_LPAREN] = ACTIONS(1273), - [anon_sym_RPAREN] = ACTIONS(1273), - [anon_sym_PIPE] = ACTIONS(1273), - [anon_sym_DOLLAR] = ACTIONS(1273), - [anon_sym_GT] = ACTIONS(1273), - [anon_sym_DASH_DASH] = ACTIONS(1273), - [anon_sym_DASH] = ACTIONS(1273), - [anon_sym_in] = ACTIONS(1273), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_RBRACE] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_STAR] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1273), - [anon_sym_PLUS_PLUS] = ACTIONS(1273), - [anon_sym_SLASH] = ACTIONS(1273), - [anon_sym_mod] = ACTIONS(1273), - [anon_sym_SLASH_SLASH] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(1273), - [anon_sym_bit_DASHshl] = ACTIONS(1273), - [anon_sym_bit_DASHshr] = ACTIONS(1273), - [anon_sym_EQ_EQ] = ACTIONS(1273), - [anon_sym_BANG_EQ] = ACTIONS(1273), - [anon_sym_LT2] = ACTIONS(1273), - [anon_sym_LT_EQ] = ACTIONS(1273), - [anon_sym_GT_EQ] = ACTIONS(1273), - [anon_sym_not_DASHin] = ACTIONS(1273), - [anon_sym_starts_DASHwith] = ACTIONS(1273), - [anon_sym_ends_DASHwith] = ACTIONS(1273), - [anon_sym_EQ_TILDE] = ACTIONS(1273), - [anon_sym_BANG_TILDE] = ACTIONS(1273), - [anon_sym_bit_DASHand] = ACTIONS(1273), - [anon_sym_bit_DASHxor] = ACTIONS(1273), - [anon_sym_bit_DASHor] = ACTIONS(1273), - [anon_sym_and] = ACTIONS(1273), - [anon_sym_xor] = ACTIONS(1273), - [anon_sym_or] = ACTIONS(1273), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1273), - [anon_sym_DOT_DOT_LT] = ACTIONS(1273), - [anon_sym_null] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1273), - [anon_sym_false] = ACTIONS(1273), - [aux_sym__val_number_decimal_token1] = ACTIONS(1273), - [aux_sym__val_number_decimal_token2] = ACTIONS(1273), - [anon_sym_DOT2] = ACTIONS(1273), - [aux_sym__val_number_decimal_token3] = ACTIONS(1273), - [aux_sym__val_number_token1] = ACTIONS(1273), - [aux_sym__val_number_token2] = ACTIONS(1273), - [aux_sym__val_number_token3] = ACTIONS(1273), - [aux_sym__val_number_token4] = ACTIONS(1273), - [aux_sym__val_number_token5] = ACTIONS(1273), - [aux_sym__val_number_token6] = ACTIONS(1273), - [anon_sym_0b] = ACTIONS(1273), - [anon_sym_0o] = ACTIONS(1273), - [anon_sym_0x] = ACTIONS(1273), - [sym_val_date] = ACTIONS(1273), - [anon_sym_DQUOTE] = ACTIONS(1273), - [sym__str_single_quotes] = ACTIONS(1273), - [sym__str_back_ticks] = ACTIONS(1273), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1273), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1273), - [aux_sym_unquoted_token6] = ACTIONS(1257), - [anon_sym_POUND] = ACTIONS(113), - }, - [2875] = { - [sym_comment] = STATE(2875), - [ts_builtin_sym_end] = ACTIONS(6412), - [anon_sym_export] = ACTIONS(6410), - [anon_sym_alias] = ACTIONS(6410), - [anon_sym_let] = ACTIONS(6410), - [anon_sym_let_DASHenv] = ACTIONS(6410), - [anon_sym_mut] = ACTIONS(6410), - [anon_sym_const] = ACTIONS(6410), - [anon_sym_SEMI] = ACTIONS(6410), - [sym_cmd_identifier] = ACTIONS(6410), - [anon_sym_LF] = ACTIONS(6412), - [anon_sym_def] = ACTIONS(6410), - [anon_sym_export_DASHenv] = ACTIONS(6410), - [anon_sym_extern] = ACTIONS(6410), - [anon_sym_module] = ACTIONS(6410), - [anon_sym_use] = ACTIONS(6410), - [anon_sym_LBRACK] = ACTIONS(6410), - [anon_sym_LPAREN] = ACTIONS(6410), - [anon_sym_DOLLAR] = ACTIONS(6410), - [anon_sym_error] = ACTIONS(6410), - [anon_sym_DASH] = ACTIONS(6410), - [anon_sym_break] = ACTIONS(6410), - [anon_sym_continue] = ACTIONS(6410), - [anon_sym_for] = ACTIONS(6410), - [anon_sym_loop] = ACTIONS(6410), - [anon_sym_while] = ACTIONS(6410), - [anon_sym_do] = ACTIONS(6410), - [anon_sym_if] = ACTIONS(6410), - [anon_sym_match] = ACTIONS(6410), - [anon_sym_LBRACE] = ACTIONS(6410), - [anon_sym_DOT_DOT] = ACTIONS(6410), - [anon_sym_try] = ACTIONS(6410), - [anon_sym_return] = ACTIONS(6410), - [anon_sym_source] = ACTIONS(6410), - [anon_sym_source_DASHenv] = ACTIONS(6410), - [anon_sym_register] = ACTIONS(6410), - [anon_sym_hide] = ACTIONS(6410), - [anon_sym_hide_DASHenv] = ACTIONS(6410), - [anon_sym_overlay] = ACTIONS(6410), - [anon_sym_where] = ACTIONS(6410), - [anon_sym_not] = ACTIONS(6410), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6410), - [anon_sym_DOT_DOT_LT] = ACTIONS(6410), - [anon_sym_null] = ACTIONS(6410), - [anon_sym_true] = ACTIONS(6410), - [anon_sym_false] = ACTIONS(6410), - [aux_sym__val_number_decimal_token1] = ACTIONS(6410), - [aux_sym__val_number_decimal_token2] = ACTIONS(6410), - [anon_sym_DOT2] = ACTIONS(6410), - [aux_sym__val_number_decimal_token3] = ACTIONS(6410), - [aux_sym__val_number_token1] = ACTIONS(6410), - [aux_sym__val_number_token2] = ACTIONS(6410), - [aux_sym__val_number_token3] = ACTIONS(6410), - [aux_sym__val_number_token4] = ACTIONS(6410), - [aux_sym__val_number_token5] = ACTIONS(6410), - [aux_sym__val_number_token6] = ACTIONS(6410), - [anon_sym_0b] = ACTIONS(6410), - [anon_sym_0o] = ACTIONS(6410), - [anon_sym_0x] = ACTIONS(6410), - [sym_val_date] = ACTIONS(6410), - [anon_sym_DQUOTE] = ACTIONS(6410), - [sym__str_single_quotes] = ACTIONS(6410), - [sym__str_back_ticks] = ACTIONS(6410), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6410), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6410), - [anon_sym_CARET] = ACTIONS(6410), - [anon_sym_POUND] = ACTIONS(113), - }, - [2876] = { - [sym_comment] = STATE(2876), - [ts_builtin_sym_end] = ACTIONS(6416), - [anon_sym_export] = ACTIONS(6414), - [anon_sym_alias] = ACTIONS(6414), - [anon_sym_let] = ACTIONS(6414), - [anon_sym_let_DASHenv] = ACTIONS(6414), - [anon_sym_mut] = ACTIONS(6414), - [anon_sym_const] = ACTIONS(6414), - [anon_sym_SEMI] = ACTIONS(6414), - [sym_cmd_identifier] = ACTIONS(6414), - [anon_sym_LF] = ACTIONS(6416), - [anon_sym_def] = ACTIONS(6414), - [anon_sym_export_DASHenv] = ACTIONS(6414), - [anon_sym_extern] = ACTIONS(6414), - [anon_sym_module] = ACTIONS(6414), - [anon_sym_use] = ACTIONS(6414), - [anon_sym_LBRACK] = ACTIONS(6414), - [anon_sym_LPAREN] = ACTIONS(6414), - [anon_sym_DOLLAR] = ACTIONS(6414), - [anon_sym_error] = ACTIONS(6414), - [anon_sym_DASH] = ACTIONS(6414), - [anon_sym_break] = ACTIONS(6414), - [anon_sym_continue] = ACTIONS(6414), - [anon_sym_for] = ACTIONS(6414), - [anon_sym_loop] = ACTIONS(6414), - [anon_sym_while] = ACTIONS(6414), - [anon_sym_do] = ACTIONS(6414), - [anon_sym_if] = ACTIONS(6414), - [anon_sym_match] = ACTIONS(6414), - [anon_sym_LBRACE] = ACTIONS(6414), - [anon_sym_DOT_DOT] = ACTIONS(6414), - [anon_sym_try] = ACTIONS(6414), - [anon_sym_return] = ACTIONS(6414), - [anon_sym_source] = ACTIONS(6414), - [anon_sym_source_DASHenv] = ACTIONS(6414), - [anon_sym_register] = ACTIONS(6414), - [anon_sym_hide] = ACTIONS(6414), - [anon_sym_hide_DASHenv] = ACTIONS(6414), - [anon_sym_overlay] = ACTIONS(6414), - [anon_sym_where] = ACTIONS(6414), - [anon_sym_not] = ACTIONS(6414), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6414), - [anon_sym_DOT_DOT_LT] = ACTIONS(6414), - [anon_sym_null] = ACTIONS(6414), - [anon_sym_true] = ACTIONS(6414), - [anon_sym_false] = ACTIONS(6414), - [aux_sym__val_number_decimal_token1] = ACTIONS(6414), - [aux_sym__val_number_decimal_token2] = ACTIONS(6414), - [anon_sym_DOT2] = ACTIONS(6414), - [aux_sym__val_number_decimal_token3] = ACTIONS(6414), - [aux_sym__val_number_token1] = ACTIONS(6414), - [aux_sym__val_number_token2] = ACTIONS(6414), - [aux_sym__val_number_token3] = ACTIONS(6414), - [aux_sym__val_number_token4] = ACTIONS(6414), - [aux_sym__val_number_token5] = ACTIONS(6414), - [aux_sym__val_number_token6] = ACTIONS(6414), - [anon_sym_0b] = ACTIONS(6414), - [anon_sym_0o] = ACTIONS(6414), - [anon_sym_0x] = ACTIONS(6414), - [sym_val_date] = ACTIONS(6414), - [anon_sym_DQUOTE] = ACTIONS(6414), - [sym__str_single_quotes] = ACTIONS(6414), - [sym__str_back_ticks] = ACTIONS(6414), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6414), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6414), - [anon_sym_CARET] = ACTIONS(6414), - [anon_sym_POUND] = ACTIONS(113), - }, - [2877] = { - [sym_comment] = STATE(2877), - [ts_builtin_sym_end] = ACTIONS(3520), - [anon_sym_export] = ACTIONS(3518), - [anon_sym_alias] = ACTIONS(3518), - [anon_sym_let] = ACTIONS(3518), - [anon_sym_let_DASHenv] = ACTIONS(3518), - [anon_sym_mut] = ACTIONS(3518), - [anon_sym_const] = ACTIONS(3518), - [anon_sym_SEMI] = ACTIONS(3518), - [sym_cmd_identifier] = ACTIONS(3518), - [anon_sym_LF] = ACTIONS(3520), - [anon_sym_def] = ACTIONS(3518), - [anon_sym_export_DASHenv] = ACTIONS(3518), - [anon_sym_extern] = ACTIONS(3518), - [anon_sym_module] = ACTIONS(3518), - [anon_sym_use] = ACTIONS(3518), - [anon_sym_LBRACK] = ACTIONS(3518), - [anon_sym_LPAREN] = ACTIONS(3518), - [anon_sym_DOLLAR] = ACTIONS(3518), - [anon_sym_error] = ACTIONS(3518), - [anon_sym_DASH] = ACTIONS(3518), - [anon_sym_break] = ACTIONS(3518), - [anon_sym_continue] = ACTIONS(3518), - [anon_sym_for] = ACTIONS(3518), - [anon_sym_loop] = ACTIONS(3518), - [anon_sym_while] = ACTIONS(3518), - [anon_sym_do] = ACTIONS(3518), - [anon_sym_if] = ACTIONS(3518), - [anon_sym_match] = ACTIONS(3518), - [anon_sym_LBRACE] = ACTIONS(3518), - [anon_sym_DOT_DOT] = ACTIONS(3518), - [anon_sym_try] = ACTIONS(3518), - [anon_sym_return] = ACTIONS(3518), - [anon_sym_source] = ACTIONS(3518), - [anon_sym_source_DASHenv] = ACTIONS(3518), - [anon_sym_register] = ACTIONS(3518), - [anon_sym_hide] = ACTIONS(3518), - [anon_sym_hide_DASHenv] = ACTIONS(3518), - [anon_sym_overlay] = ACTIONS(3518), - [anon_sym_where] = ACTIONS(3518), - [anon_sym_not] = ACTIONS(3518), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3518), - [anon_sym_DOT_DOT_LT] = ACTIONS(3518), - [anon_sym_null] = ACTIONS(3518), - [anon_sym_true] = ACTIONS(3518), - [anon_sym_false] = ACTIONS(3518), - [aux_sym__val_number_decimal_token1] = ACTIONS(3518), - [aux_sym__val_number_decimal_token2] = ACTIONS(3518), - [anon_sym_DOT2] = ACTIONS(3518), - [aux_sym__val_number_decimal_token3] = ACTIONS(3518), - [aux_sym__val_number_token1] = ACTIONS(3518), - [aux_sym__val_number_token2] = ACTIONS(3518), - [aux_sym__val_number_token3] = ACTIONS(3518), - [aux_sym__val_number_token4] = ACTIONS(3518), - [aux_sym__val_number_token5] = ACTIONS(3518), - [aux_sym__val_number_token6] = ACTIONS(3518), - [anon_sym_0b] = ACTIONS(3518), - [anon_sym_0o] = ACTIONS(3518), - [anon_sym_0x] = ACTIONS(3518), - [sym_val_date] = ACTIONS(3518), - [anon_sym_DQUOTE] = ACTIONS(3518), - [sym__str_single_quotes] = ACTIONS(3518), - [sym__str_back_ticks] = ACTIONS(3518), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3518), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3518), - [anon_sym_CARET] = ACTIONS(3518), - [anon_sym_POUND] = ACTIONS(113), - }, - [2878] = { - [sym_comment] = STATE(2878), - [ts_builtin_sym_end] = ACTIONS(6420), - [anon_sym_export] = ACTIONS(6418), - [anon_sym_alias] = ACTIONS(6418), - [anon_sym_let] = ACTIONS(6418), - [anon_sym_let_DASHenv] = ACTIONS(6418), - [anon_sym_mut] = ACTIONS(6418), - [anon_sym_const] = ACTIONS(6418), - [anon_sym_SEMI] = ACTIONS(6418), - [sym_cmd_identifier] = ACTIONS(6418), - [anon_sym_LF] = ACTIONS(6420), - [anon_sym_def] = ACTIONS(6418), - [anon_sym_export_DASHenv] = ACTIONS(6418), - [anon_sym_extern] = ACTIONS(6418), - [anon_sym_module] = ACTIONS(6418), - [anon_sym_use] = ACTIONS(6418), - [anon_sym_LBRACK] = ACTIONS(6418), - [anon_sym_LPAREN] = ACTIONS(6418), - [anon_sym_DOLLAR] = ACTIONS(6418), - [anon_sym_error] = ACTIONS(6418), - [anon_sym_DASH] = ACTIONS(6418), - [anon_sym_break] = ACTIONS(6418), - [anon_sym_continue] = ACTIONS(6418), - [anon_sym_for] = ACTIONS(6418), - [anon_sym_loop] = ACTIONS(6418), - [anon_sym_while] = ACTIONS(6418), - [anon_sym_do] = ACTIONS(6418), - [anon_sym_if] = ACTIONS(6418), - [anon_sym_match] = ACTIONS(6418), - [anon_sym_LBRACE] = ACTIONS(6418), - [anon_sym_DOT_DOT] = ACTIONS(6418), - [anon_sym_try] = ACTIONS(6418), - [anon_sym_return] = ACTIONS(6418), - [anon_sym_source] = ACTIONS(6418), - [anon_sym_source_DASHenv] = ACTIONS(6418), - [anon_sym_register] = ACTIONS(6418), - [anon_sym_hide] = ACTIONS(6418), - [anon_sym_hide_DASHenv] = ACTIONS(6418), - [anon_sym_overlay] = ACTIONS(6418), - [anon_sym_where] = ACTIONS(6418), - [anon_sym_not] = ACTIONS(6418), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6418), - [anon_sym_DOT_DOT_LT] = ACTIONS(6418), - [anon_sym_null] = ACTIONS(6418), - [anon_sym_true] = ACTIONS(6418), - [anon_sym_false] = ACTIONS(6418), - [aux_sym__val_number_decimal_token1] = ACTIONS(6418), - [aux_sym__val_number_decimal_token2] = ACTIONS(6418), - [anon_sym_DOT2] = ACTIONS(6418), - [aux_sym__val_number_decimal_token3] = ACTIONS(6418), - [aux_sym__val_number_token1] = ACTIONS(6418), - [aux_sym__val_number_token2] = ACTIONS(6418), - [aux_sym__val_number_token3] = ACTIONS(6418), - [aux_sym__val_number_token4] = ACTIONS(6418), - [aux_sym__val_number_token5] = ACTIONS(6418), - [aux_sym__val_number_token6] = ACTIONS(6418), - [anon_sym_0b] = ACTIONS(6418), - [anon_sym_0o] = ACTIONS(6418), - [anon_sym_0x] = ACTIONS(6418), - [sym_val_date] = ACTIONS(6418), - [anon_sym_DQUOTE] = ACTIONS(6418), - [sym__str_single_quotes] = ACTIONS(6418), - [sym__str_back_ticks] = ACTIONS(6418), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6418), - [anon_sym_CARET] = ACTIONS(6418), - [anon_sym_POUND] = ACTIONS(113), - }, - [2879] = { - [sym_comment] = STATE(2879), - [ts_builtin_sym_end] = ACTIONS(5197), - [anon_sym_export] = ACTIONS(5195), - [anon_sym_alias] = ACTIONS(5195), - [anon_sym_let] = ACTIONS(5195), - [anon_sym_let_DASHenv] = ACTIONS(5195), - [anon_sym_mut] = ACTIONS(5195), - [anon_sym_const] = ACTIONS(5195), - [anon_sym_SEMI] = ACTIONS(5195), - [sym_cmd_identifier] = ACTIONS(5195), - [anon_sym_LF] = ACTIONS(5197), - [anon_sym_def] = ACTIONS(5195), - [anon_sym_export_DASHenv] = ACTIONS(5195), - [anon_sym_extern] = ACTIONS(5195), - [anon_sym_module] = ACTIONS(5195), - [anon_sym_use] = ACTIONS(5195), - [anon_sym_LBRACK] = ACTIONS(5195), - [anon_sym_LPAREN] = ACTIONS(5195), - [anon_sym_DOLLAR] = ACTIONS(5195), - [anon_sym_error] = ACTIONS(5195), - [anon_sym_DASH] = ACTIONS(5195), - [anon_sym_break] = ACTIONS(5195), - [anon_sym_continue] = ACTIONS(5195), - [anon_sym_for] = ACTIONS(5195), - [anon_sym_loop] = ACTIONS(5195), - [anon_sym_while] = ACTIONS(5195), - [anon_sym_do] = ACTIONS(5195), - [anon_sym_if] = ACTIONS(5195), - [anon_sym_match] = ACTIONS(5195), - [anon_sym_LBRACE] = ACTIONS(5195), - [anon_sym_DOT_DOT] = ACTIONS(5195), - [anon_sym_try] = ACTIONS(5195), - [anon_sym_return] = ACTIONS(5195), - [anon_sym_source] = ACTIONS(5195), - [anon_sym_source_DASHenv] = ACTIONS(5195), - [anon_sym_register] = ACTIONS(5195), - [anon_sym_hide] = ACTIONS(5195), - [anon_sym_hide_DASHenv] = ACTIONS(5195), - [anon_sym_overlay] = ACTIONS(5195), - [anon_sym_where] = ACTIONS(5195), - [anon_sym_not] = ACTIONS(5195), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5195), - [anon_sym_DOT_DOT_LT] = ACTIONS(5195), - [anon_sym_null] = ACTIONS(5195), - [anon_sym_true] = ACTIONS(5195), - [anon_sym_false] = ACTIONS(5195), - [aux_sym__val_number_decimal_token1] = ACTIONS(5195), - [aux_sym__val_number_decimal_token2] = ACTIONS(5195), - [anon_sym_DOT2] = ACTIONS(5195), - [aux_sym__val_number_decimal_token3] = ACTIONS(5195), - [aux_sym__val_number_token1] = ACTIONS(5195), - [aux_sym__val_number_token2] = ACTIONS(5195), - [aux_sym__val_number_token3] = ACTIONS(5195), - [aux_sym__val_number_token4] = ACTIONS(5195), - [aux_sym__val_number_token5] = ACTIONS(5195), - [aux_sym__val_number_token6] = ACTIONS(5195), - [anon_sym_0b] = ACTIONS(5195), - [anon_sym_0o] = ACTIONS(5195), - [anon_sym_0x] = ACTIONS(5195), - [sym_val_date] = ACTIONS(5195), - [anon_sym_DQUOTE] = ACTIONS(5195), - [sym__str_single_quotes] = ACTIONS(5195), - [sym__str_back_ticks] = ACTIONS(5195), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5195), - [anon_sym_CARET] = ACTIONS(5195), - [anon_sym_POUND] = ACTIONS(113), - }, - [2880] = { - [sym_comment] = STATE(2880), - [anon_sym_LBRACK] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(961), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(961), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(961), - [anon_sym_SLASH_SLASH] = ACTIONS(961), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(961), - [anon_sym_bit_DASHshr] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(961), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_not_DASHin] = ACTIONS(961), - [anon_sym_starts_DASHwith] = ACTIONS(961), - [anon_sym_ends_DASHwith] = ACTIONS(961), - [anon_sym_EQ_TILDE] = ACTIONS(961), - [anon_sym_BANG_TILDE] = ACTIONS(961), - [anon_sym_bit_DASHand] = ACTIONS(961), - [anon_sym_bit_DASHxor] = ACTIONS(961), - [anon_sym_bit_DASHor] = ACTIONS(961), - [anon_sym_and] = ACTIONS(961), - [anon_sym_xor] = ACTIONS(961), - [anon_sym_or] = ACTIONS(961), - [anon_sym_not] = ACTIONS(959), - [anon_sym_DOT_DOT2] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(6824), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_DOT_DOT_LT] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(983), - [anon_sym_DOT_DOT_LT2] = ACTIONS(983), - [anon_sym_null] = ACTIONS(961), - [anon_sym_true] = ACTIONS(961), - [anon_sym_false] = ACTIONS(961), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(961), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(961), - [aux_sym__val_number_token1] = ACTIONS(961), - [aux_sym__val_number_token2] = ACTIONS(961), - [aux_sym__val_number_token3] = ACTIONS(961), - [aux_sym__val_number_token4] = ACTIONS(961), - [aux_sym__val_number_token5] = ACTIONS(961), - [aux_sym__val_number_token6] = ACTIONS(961), - [anon_sym_0b] = ACTIONS(959), - [sym_filesize_unit] = ACTIONS(6764), - [sym_duration_unit] = ACTIONS(6766), - [anon_sym_0o] = ACTIONS(959), - [anon_sym_0x] = ACTIONS(959), - [sym_val_date] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(961), - [sym__str_single_quotes] = ACTIONS(961), - [sym__str_back_ticks] = ACTIONS(961), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(961), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(961), - [aux_sym_unquoted_token5] = ACTIONS(6816), - [anon_sym_POUND] = ACTIONS(3), - }, - [2881] = { - [sym_comment] = STATE(2881), - [ts_builtin_sym_end] = ACTIONS(6625), - [anon_sym_export] = ACTIONS(6623), - [anon_sym_alias] = ACTIONS(6623), - [anon_sym_let] = ACTIONS(6623), - [anon_sym_let_DASHenv] = ACTIONS(6623), - [anon_sym_mut] = ACTIONS(6623), - [anon_sym_const] = ACTIONS(6623), - [anon_sym_SEMI] = ACTIONS(6623), - [sym_cmd_identifier] = ACTIONS(6623), - [anon_sym_LF] = ACTIONS(6625), - [anon_sym_def] = ACTIONS(6623), - [anon_sym_export_DASHenv] = ACTIONS(6623), - [anon_sym_extern] = ACTIONS(6623), - [anon_sym_module] = ACTIONS(6623), - [anon_sym_use] = ACTIONS(6623), - [anon_sym_LBRACK] = ACTIONS(6623), - [anon_sym_LPAREN] = ACTIONS(6623), - [anon_sym_DOLLAR] = ACTIONS(6623), - [anon_sym_error] = ACTIONS(6623), - [anon_sym_DASH] = ACTIONS(6623), - [anon_sym_break] = ACTIONS(6623), - [anon_sym_continue] = ACTIONS(6623), - [anon_sym_for] = ACTIONS(6623), - [anon_sym_loop] = ACTIONS(6623), - [anon_sym_while] = ACTIONS(6623), - [anon_sym_do] = ACTIONS(6623), - [anon_sym_if] = ACTIONS(6623), - [anon_sym_match] = ACTIONS(6623), - [anon_sym_LBRACE] = ACTIONS(6623), - [anon_sym_DOT_DOT] = ACTIONS(6623), - [anon_sym_try] = ACTIONS(6623), - [anon_sym_return] = ACTIONS(6623), - [anon_sym_source] = ACTIONS(6623), - [anon_sym_source_DASHenv] = ACTIONS(6623), - [anon_sym_register] = ACTIONS(6623), - [anon_sym_hide] = ACTIONS(6623), - [anon_sym_hide_DASHenv] = ACTIONS(6623), - [anon_sym_overlay] = ACTIONS(6623), - [anon_sym_where] = ACTIONS(6623), - [anon_sym_not] = ACTIONS(6623), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6623), - [anon_sym_DOT_DOT_LT] = ACTIONS(6623), - [anon_sym_null] = ACTIONS(6623), - [anon_sym_true] = ACTIONS(6623), - [anon_sym_false] = ACTIONS(6623), - [aux_sym__val_number_decimal_token1] = ACTIONS(6623), - [aux_sym__val_number_decimal_token2] = ACTIONS(6623), - [anon_sym_DOT2] = ACTIONS(6623), - [aux_sym__val_number_decimal_token3] = ACTIONS(6623), - [aux_sym__val_number_token1] = ACTIONS(6623), - [aux_sym__val_number_token2] = ACTIONS(6623), - [aux_sym__val_number_token3] = ACTIONS(6623), - [aux_sym__val_number_token4] = ACTIONS(6623), - [aux_sym__val_number_token5] = ACTIONS(6623), - [aux_sym__val_number_token6] = ACTIONS(6623), - [anon_sym_0b] = ACTIONS(6623), - [anon_sym_0o] = ACTIONS(6623), - [anon_sym_0x] = ACTIONS(6623), - [sym_val_date] = ACTIONS(6623), - [anon_sym_DQUOTE] = ACTIONS(6623), - [sym__str_single_quotes] = ACTIONS(6623), - [sym__str_back_ticks] = ACTIONS(6623), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6623), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6623), - [anon_sym_CARET] = ACTIONS(6623), - [anon_sym_POUND] = ACTIONS(113), - }, - [2882] = { - [sym_comment] = STATE(2882), - [ts_builtin_sym_end] = ACTIONS(6518), - [anon_sym_export] = ACTIONS(6516), - [anon_sym_alias] = ACTIONS(6516), - [anon_sym_let] = ACTIONS(6516), - [anon_sym_let_DASHenv] = ACTIONS(6516), - [anon_sym_mut] = ACTIONS(6516), - [anon_sym_const] = ACTIONS(6516), - [anon_sym_SEMI] = ACTIONS(6516), - [sym_cmd_identifier] = ACTIONS(6516), - [anon_sym_LF] = ACTIONS(6518), - [anon_sym_def] = ACTIONS(6516), - [anon_sym_export_DASHenv] = ACTIONS(6516), - [anon_sym_extern] = ACTIONS(6516), - [anon_sym_module] = ACTIONS(6516), - [anon_sym_use] = ACTIONS(6516), - [anon_sym_LBRACK] = ACTIONS(6516), - [anon_sym_LPAREN] = ACTIONS(6516), - [anon_sym_DOLLAR] = ACTIONS(6516), - [anon_sym_error] = ACTIONS(6516), - [anon_sym_DASH] = ACTIONS(6516), - [anon_sym_break] = ACTIONS(6516), - [anon_sym_continue] = ACTIONS(6516), - [anon_sym_for] = ACTIONS(6516), - [anon_sym_loop] = ACTIONS(6516), - [anon_sym_while] = ACTIONS(6516), - [anon_sym_do] = ACTIONS(6516), - [anon_sym_if] = ACTIONS(6516), - [anon_sym_match] = ACTIONS(6516), - [anon_sym_LBRACE] = ACTIONS(6516), - [anon_sym_DOT_DOT] = ACTIONS(6516), - [anon_sym_try] = ACTIONS(6516), - [anon_sym_return] = ACTIONS(6516), - [anon_sym_source] = ACTIONS(6516), - [anon_sym_source_DASHenv] = ACTIONS(6516), - [anon_sym_register] = ACTIONS(6516), - [anon_sym_hide] = ACTIONS(6516), - [anon_sym_hide_DASHenv] = ACTIONS(6516), - [anon_sym_overlay] = ACTIONS(6516), - [anon_sym_where] = ACTIONS(6516), - [anon_sym_not] = ACTIONS(6516), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6516), - [anon_sym_DOT_DOT_LT] = ACTIONS(6516), - [anon_sym_null] = ACTIONS(6516), - [anon_sym_true] = ACTIONS(6516), - [anon_sym_false] = ACTIONS(6516), - [aux_sym__val_number_decimal_token1] = ACTIONS(6516), - [aux_sym__val_number_decimal_token2] = ACTIONS(6516), - [anon_sym_DOT2] = ACTIONS(6516), - [aux_sym__val_number_decimal_token3] = ACTIONS(6516), - [aux_sym__val_number_token1] = ACTIONS(6516), - [aux_sym__val_number_token2] = ACTIONS(6516), - [aux_sym__val_number_token3] = ACTIONS(6516), - [aux_sym__val_number_token4] = ACTIONS(6516), - [aux_sym__val_number_token5] = ACTIONS(6516), - [aux_sym__val_number_token6] = ACTIONS(6516), - [anon_sym_0b] = ACTIONS(6516), - [anon_sym_0o] = ACTIONS(6516), - [anon_sym_0x] = ACTIONS(6516), - [sym_val_date] = ACTIONS(6516), - [anon_sym_DQUOTE] = ACTIONS(6516), - [sym__str_single_quotes] = ACTIONS(6516), - [sym__str_back_ticks] = ACTIONS(6516), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6516), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6516), - [anon_sym_CARET] = ACTIONS(6516), - [anon_sym_POUND] = ACTIONS(113), - }, - [2883] = { - [sym_comment] = STATE(2883), - [ts_builtin_sym_end] = ACTIONS(6744), - [anon_sym_export] = ACTIONS(6742), - [anon_sym_alias] = ACTIONS(6742), - [anon_sym_let] = ACTIONS(6742), - [anon_sym_let_DASHenv] = ACTIONS(6742), - [anon_sym_mut] = ACTIONS(6742), - [anon_sym_const] = ACTIONS(6742), - [anon_sym_SEMI] = ACTIONS(6742), - [sym_cmd_identifier] = ACTIONS(6742), - [anon_sym_LF] = ACTIONS(6744), - [anon_sym_def] = ACTIONS(6742), - [anon_sym_export_DASHenv] = ACTIONS(6742), - [anon_sym_extern] = ACTIONS(6742), - [anon_sym_module] = ACTIONS(6742), - [anon_sym_use] = ACTIONS(6742), - [anon_sym_LBRACK] = ACTIONS(6742), - [anon_sym_LPAREN] = ACTIONS(6742), - [anon_sym_DOLLAR] = ACTIONS(6742), - [anon_sym_error] = ACTIONS(6742), - [anon_sym_DASH] = ACTIONS(6742), - [anon_sym_break] = ACTIONS(6742), - [anon_sym_continue] = ACTIONS(6742), - [anon_sym_for] = ACTIONS(6742), - [anon_sym_loop] = ACTIONS(6742), - [anon_sym_while] = ACTIONS(6742), - [anon_sym_do] = ACTIONS(6742), - [anon_sym_if] = ACTIONS(6742), - [anon_sym_match] = ACTIONS(6742), - [anon_sym_LBRACE] = ACTIONS(6742), - [anon_sym_DOT_DOT] = ACTIONS(6742), - [anon_sym_try] = ACTIONS(6742), - [anon_sym_return] = ACTIONS(6742), - [anon_sym_source] = ACTIONS(6742), - [anon_sym_source_DASHenv] = ACTIONS(6742), - [anon_sym_register] = ACTIONS(6742), - [anon_sym_hide] = ACTIONS(6742), - [anon_sym_hide_DASHenv] = ACTIONS(6742), - [anon_sym_overlay] = ACTIONS(6742), - [anon_sym_where] = ACTIONS(6742), - [anon_sym_not] = ACTIONS(6742), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6742), - [anon_sym_DOT_DOT_LT] = ACTIONS(6742), - [anon_sym_null] = ACTIONS(6742), - [anon_sym_true] = ACTIONS(6742), - [anon_sym_false] = ACTIONS(6742), - [aux_sym__val_number_decimal_token1] = ACTIONS(6742), - [aux_sym__val_number_decimal_token2] = ACTIONS(6742), - [anon_sym_DOT2] = ACTIONS(6742), - [aux_sym__val_number_decimal_token3] = ACTIONS(6742), - [aux_sym__val_number_token1] = ACTIONS(6742), - [aux_sym__val_number_token2] = ACTIONS(6742), - [aux_sym__val_number_token3] = ACTIONS(6742), - [aux_sym__val_number_token4] = ACTIONS(6742), - [aux_sym__val_number_token5] = ACTIONS(6742), - [aux_sym__val_number_token6] = ACTIONS(6742), - [anon_sym_0b] = ACTIONS(6742), - [anon_sym_0o] = ACTIONS(6742), - [anon_sym_0x] = ACTIONS(6742), - [sym_val_date] = ACTIONS(6742), - [anon_sym_DQUOTE] = ACTIONS(6742), - [sym__str_single_quotes] = ACTIONS(6742), - [sym__str_back_ticks] = ACTIONS(6742), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6742), - [anon_sym_CARET] = ACTIONS(6742), - [anon_sym_POUND] = ACTIONS(113), - }, - [2884] = { - [sym_comment] = STATE(2884), - [ts_builtin_sym_end] = ACTIONS(6424), - [anon_sym_export] = ACTIONS(6422), - [anon_sym_alias] = ACTIONS(6422), - [anon_sym_let] = ACTIONS(6422), - [anon_sym_let_DASHenv] = ACTIONS(6422), - [anon_sym_mut] = ACTIONS(6422), - [anon_sym_const] = ACTIONS(6422), - [anon_sym_SEMI] = ACTIONS(6422), - [sym_cmd_identifier] = ACTIONS(6422), - [anon_sym_LF] = ACTIONS(6424), - [anon_sym_def] = ACTIONS(6422), - [anon_sym_export_DASHenv] = ACTIONS(6422), - [anon_sym_extern] = ACTIONS(6422), - [anon_sym_module] = ACTIONS(6422), - [anon_sym_use] = ACTIONS(6422), - [anon_sym_LBRACK] = ACTIONS(6422), - [anon_sym_LPAREN] = ACTIONS(6422), - [anon_sym_DOLLAR] = ACTIONS(6422), - [anon_sym_error] = ACTIONS(6422), - [anon_sym_DASH] = ACTIONS(6422), - [anon_sym_break] = ACTIONS(6422), - [anon_sym_continue] = ACTIONS(6422), - [anon_sym_for] = ACTIONS(6422), - [anon_sym_loop] = ACTIONS(6422), - [anon_sym_while] = ACTIONS(6422), - [anon_sym_do] = ACTIONS(6422), - [anon_sym_if] = ACTIONS(6422), - [anon_sym_match] = ACTIONS(6422), - [anon_sym_LBRACE] = ACTIONS(6422), - [anon_sym_DOT_DOT] = ACTIONS(6422), - [anon_sym_try] = ACTIONS(6422), - [anon_sym_return] = ACTIONS(6422), - [anon_sym_source] = ACTIONS(6422), - [anon_sym_source_DASHenv] = ACTIONS(6422), - [anon_sym_register] = ACTIONS(6422), - [anon_sym_hide] = ACTIONS(6422), - [anon_sym_hide_DASHenv] = ACTIONS(6422), - [anon_sym_overlay] = ACTIONS(6422), - [anon_sym_where] = ACTIONS(6422), - [anon_sym_not] = ACTIONS(6422), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6422), - [anon_sym_DOT_DOT_LT] = ACTIONS(6422), - [anon_sym_null] = ACTIONS(6422), - [anon_sym_true] = ACTIONS(6422), - [anon_sym_false] = ACTIONS(6422), - [aux_sym__val_number_decimal_token1] = ACTIONS(6422), - [aux_sym__val_number_decimal_token2] = ACTIONS(6422), - [anon_sym_DOT2] = ACTIONS(6422), - [aux_sym__val_number_decimal_token3] = ACTIONS(6422), - [aux_sym__val_number_token1] = ACTIONS(6422), - [aux_sym__val_number_token2] = ACTIONS(6422), - [aux_sym__val_number_token3] = ACTIONS(6422), - [aux_sym__val_number_token4] = ACTIONS(6422), - [aux_sym__val_number_token5] = ACTIONS(6422), - [aux_sym__val_number_token6] = ACTIONS(6422), - [anon_sym_0b] = ACTIONS(6422), - [anon_sym_0o] = ACTIONS(6422), - [anon_sym_0x] = ACTIONS(6422), - [sym_val_date] = ACTIONS(6422), - [anon_sym_DQUOTE] = ACTIONS(6422), - [sym__str_single_quotes] = ACTIONS(6422), - [sym__str_back_ticks] = ACTIONS(6422), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6422), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6422), - [anon_sym_CARET] = ACTIONS(6422), - [anon_sym_POUND] = ACTIONS(113), - }, - [2885] = { - [sym_expr_parenthesized] = STATE(11210), - [sym_val_variable] = STATE(11210), - [sym__var] = STATE(7440), - [sym_val_number] = STATE(11210), - [sym__val_number_decimal] = STATE(5414), - [sym__val_number] = STATE(5463), - [sym_val_string] = STATE(11210), - [sym__str_double_quotes] = STATE(7019), - [sym_record_entry] = STATE(11304), - [sym__record_key] = STATE(11197), - [sym_comment] = STATE(2885), - [aux_sym_record_body_repeat1] = STATE(2885), - [anon_sym_export] = ACTIONS(6826), - [anon_sym_alias] = ACTIONS(6826), - [anon_sym_let] = ACTIONS(6826), - [anon_sym_let_DASHenv] = ACTIONS(6826), - [anon_sym_mut] = ACTIONS(6826), - [anon_sym_const] = ACTIONS(6826), - [sym_cmd_identifier] = ACTIONS(6826), - [anon_sym_def] = ACTIONS(6826), - [anon_sym_export_DASHenv] = ACTIONS(6826), - [anon_sym_extern] = ACTIONS(6826), - [anon_sym_module] = ACTIONS(6826), - [anon_sym_use] = ACTIONS(6826), - [anon_sym_LPAREN] = ACTIONS(6829), - [anon_sym_DOLLAR] = ACTIONS(6832), - [anon_sym_error] = ACTIONS(6826), - [anon_sym_list] = ACTIONS(6826), - [anon_sym_DASH] = ACTIONS(6835), - [anon_sym_break] = ACTIONS(6826), - [anon_sym_continue] = ACTIONS(6826), - [anon_sym_for] = ACTIONS(6826), - [anon_sym_in] = ACTIONS(6826), - [anon_sym_loop] = ACTIONS(6826), - [anon_sym_make] = ACTIONS(6826), - [anon_sym_while] = ACTIONS(6826), - [anon_sym_do] = ACTIONS(6826), - [anon_sym_if] = ACTIONS(6826), - [anon_sym_else] = ACTIONS(6826), - [anon_sym_match] = ACTIONS(6826), - [anon_sym_try] = ACTIONS(6826), - [anon_sym_catch] = ACTIONS(6826), - [anon_sym_return] = ACTIONS(6826), - [anon_sym_source] = ACTIONS(6826), - [anon_sym_source_DASHenv] = ACTIONS(6826), - [anon_sym_register] = ACTIONS(6826), - [anon_sym_hide] = ACTIONS(6826), - [anon_sym_hide_DASHenv] = ACTIONS(6826), - [anon_sym_overlay] = ACTIONS(6826), - [anon_sym_new] = ACTIONS(6826), - [anon_sym_as] = ACTIONS(6826), - [anon_sym_PLUS] = ACTIONS(6835), - [aux_sym__val_number_decimal_token1] = ACTIONS(6838), - [aux_sym__val_number_decimal_token2] = ACTIONS(6841), - [anon_sym_DOT2] = ACTIONS(6844), - [aux_sym__val_number_decimal_token3] = ACTIONS(6847), - [aux_sym__val_number_token1] = ACTIONS(6850), - [aux_sym__val_number_token2] = ACTIONS(6850), - [aux_sym__val_number_token3] = ACTIONS(6850), - [aux_sym__val_number_token4] = ACTIONS(6853), - [aux_sym__val_number_token5] = ACTIONS(6850), - [aux_sym__val_number_token6] = ACTIONS(6853), - [anon_sym_DQUOTE] = ACTIONS(6856), - [sym__str_single_quotes] = ACTIONS(6859), - [sym__str_back_ticks] = ACTIONS(6859), - [aux_sym__record_key_token2] = ACTIONS(6862), - [anon_sym_POUND] = ACTIONS(3), - }, - [2886] = { - [sym_comment] = STATE(2886), - [ts_builtin_sym_end] = ACTIONS(6436), - [anon_sym_export] = ACTIONS(6434), - [anon_sym_alias] = ACTIONS(6434), - [anon_sym_let] = ACTIONS(6434), - [anon_sym_let_DASHenv] = ACTIONS(6434), - [anon_sym_mut] = ACTIONS(6434), - [anon_sym_const] = ACTIONS(6434), - [anon_sym_SEMI] = ACTIONS(6434), - [sym_cmd_identifier] = ACTIONS(6434), - [anon_sym_LF] = ACTIONS(6436), - [anon_sym_def] = ACTIONS(6434), - [anon_sym_export_DASHenv] = ACTIONS(6434), - [anon_sym_extern] = ACTIONS(6434), - [anon_sym_module] = ACTIONS(6434), - [anon_sym_use] = ACTIONS(6434), - [anon_sym_LBRACK] = ACTIONS(6434), - [anon_sym_LPAREN] = ACTIONS(6434), - [anon_sym_DOLLAR] = ACTIONS(6434), - [anon_sym_error] = ACTIONS(6434), - [anon_sym_DASH] = ACTIONS(6434), - [anon_sym_break] = ACTIONS(6434), - [anon_sym_continue] = ACTIONS(6434), - [anon_sym_for] = ACTIONS(6434), - [anon_sym_loop] = ACTIONS(6434), - [anon_sym_while] = ACTIONS(6434), - [anon_sym_do] = ACTIONS(6434), - [anon_sym_if] = ACTIONS(6434), - [anon_sym_match] = ACTIONS(6434), - [anon_sym_LBRACE] = ACTIONS(6434), - [anon_sym_DOT_DOT] = ACTIONS(6434), - [anon_sym_try] = ACTIONS(6434), - [anon_sym_return] = ACTIONS(6434), - [anon_sym_source] = ACTIONS(6434), - [anon_sym_source_DASHenv] = ACTIONS(6434), - [anon_sym_register] = ACTIONS(6434), - [anon_sym_hide] = ACTIONS(6434), - [anon_sym_hide_DASHenv] = ACTIONS(6434), - [anon_sym_overlay] = ACTIONS(6434), - [anon_sym_where] = ACTIONS(6434), - [anon_sym_not] = ACTIONS(6434), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6434), - [anon_sym_DOT_DOT_LT] = ACTIONS(6434), - [anon_sym_null] = ACTIONS(6434), - [anon_sym_true] = ACTIONS(6434), - [anon_sym_false] = ACTIONS(6434), - [aux_sym__val_number_decimal_token1] = ACTIONS(6434), - [aux_sym__val_number_decimal_token2] = ACTIONS(6434), - [anon_sym_DOT2] = ACTIONS(6434), - [aux_sym__val_number_decimal_token3] = ACTIONS(6434), - [aux_sym__val_number_token1] = ACTIONS(6434), - [aux_sym__val_number_token2] = ACTIONS(6434), - [aux_sym__val_number_token3] = ACTIONS(6434), - [aux_sym__val_number_token4] = ACTIONS(6434), - [aux_sym__val_number_token5] = ACTIONS(6434), - [aux_sym__val_number_token6] = ACTIONS(6434), - [anon_sym_0b] = ACTIONS(6434), - [anon_sym_0o] = ACTIONS(6434), - [anon_sym_0x] = ACTIONS(6434), - [sym_val_date] = ACTIONS(6434), - [anon_sym_DQUOTE] = ACTIONS(6434), - [sym__str_single_quotes] = ACTIONS(6434), - [sym__str_back_ticks] = ACTIONS(6434), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6434), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6434), - [anon_sym_CARET] = ACTIONS(6434), - [anon_sym_POUND] = ACTIONS(113), - }, - [2887] = { - [sym_comment] = STATE(2887), - [ts_builtin_sym_end] = ACTIONS(6440), - [anon_sym_export] = ACTIONS(6438), - [anon_sym_alias] = ACTIONS(6438), - [anon_sym_let] = ACTIONS(6438), - [anon_sym_let_DASHenv] = ACTIONS(6438), - [anon_sym_mut] = ACTIONS(6438), - [anon_sym_const] = ACTIONS(6438), - [anon_sym_SEMI] = ACTIONS(6438), - [sym_cmd_identifier] = ACTIONS(6438), - [anon_sym_LF] = ACTIONS(6440), - [anon_sym_def] = ACTIONS(6438), - [anon_sym_export_DASHenv] = ACTIONS(6438), - [anon_sym_extern] = ACTIONS(6438), - [anon_sym_module] = ACTIONS(6438), - [anon_sym_use] = ACTIONS(6438), - [anon_sym_LBRACK] = ACTIONS(6438), - [anon_sym_LPAREN] = ACTIONS(6438), - [anon_sym_DOLLAR] = ACTIONS(6438), - [anon_sym_error] = ACTIONS(6438), - [anon_sym_DASH] = ACTIONS(6438), - [anon_sym_break] = ACTIONS(6438), - [anon_sym_continue] = ACTIONS(6438), - [anon_sym_for] = ACTIONS(6438), - [anon_sym_loop] = ACTIONS(6438), - [anon_sym_while] = ACTIONS(6438), - [anon_sym_do] = ACTIONS(6438), - [anon_sym_if] = ACTIONS(6438), - [anon_sym_match] = ACTIONS(6438), - [anon_sym_LBRACE] = ACTIONS(6438), - [anon_sym_DOT_DOT] = ACTIONS(6438), - [anon_sym_try] = ACTIONS(6438), - [anon_sym_return] = ACTIONS(6438), - [anon_sym_source] = ACTIONS(6438), - [anon_sym_source_DASHenv] = ACTIONS(6438), - [anon_sym_register] = ACTIONS(6438), - [anon_sym_hide] = ACTIONS(6438), - [anon_sym_hide_DASHenv] = ACTIONS(6438), - [anon_sym_overlay] = ACTIONS(6438), - [anon_sym_where] = ACTIONS(6438), - [anon_sym_not] = ACTIONS(6438), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6438), - [anon_sym_DOT_DOT_LT] = ACTIONS(6438), - [anon_sym_null] = ACTIONS(6438), - [anon_sym_true] = ACTIONS(6438), - [anon_sym_false] = ACTIONS(6438), - [aux_sym__val_number_decimal_token1] = ACTIONS(6438), - [aux_sym__val_number_decimal_token2] = ACTIONS(6438), - [anon_sym_DOT2] = ACTIONS(6438), - [aux_sym__val_number_decimal_token3] = ACTIONS(6438), - [aux_sym__val_number_token1] = ACTIONS(6438), - [aux_sym__val_number_token2] = ACTIONS(6438), - [aux_sym__val_number_token3] = ACTIONS(6438), - [aux_sym__val_number_token4] = ACTIONS(6438), - [aux_sym__val_number_token5] = ACTIONS(6438), - [aux_sym__val_number_token6] = ACTIONS(6438), - [anon_sym_0b] = ACTIONS(6438), - [anon_sym_0o] = ACTIONS(6438), - [anon_sym_0x] = ACTIONS(6438), - [sym_val_date] = ACTIONS(6438), - [anon_sym_DQUOTE] = ACTIONS(6438), - [sym__str_single_quotes] = ACTIONS(6438), - [sym__str_back_ticks] = ACTIONS(6438), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6438), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6438), - [anon_sym_CARET] = ACTIONS(6438), - [anon_sym_POUND] = ACTIONS(113), - }, - [2888] = { - [sym_comment] = STATE(2888), - [ts_builtin_sym_end] = ACTIONS(6444), - [anon_sym_export] = ACTIONS(6442), - [anon_sym_alias] = ACTIONS(6442), - [anon_sym_let] = ACTIONS(6442), - [anon_sym_let_DASHenv] = ACTIONS(6442), - [anon_sym_mut] = ACTIONS(6442), - [anon_sym_const] = ACTIONS(6442), - [anon_sym_SEMI] = ACTIONS(6442), - [sym_cmd_identifier] = ACTIONS(6442), - [anon_sym_LF] = ACTIONS(6444), - [anon_sym_def] = ACTIONS(6442), - [anon_sym_export_DASHenv] = ACTIONS(6442), - [anon_sym_extern] = ACTIONS(6442), - [anon_sym_module] = ACTIONS(6442), - [anon_sym_use] = ACTIONS(6442), - [anon_sym_LBRACK] = ACTIONS(6442), - [anon_sym_LPAREN] = ACTIONS(6442), - [anon_sym_DOLLAR] = ACTIONS(6442), - [anon_sym_error] = ACTIONS(6442), - [anon_sym_DASH] = ACTIONS(6442), - [anon_sym_break] = ACTIONS(6442), - [anon_sym_continue] = ACTIONS(6442), - [anon_sym_for] = ACTIONS(6442), - [anon_sym_loop] = ACTIONS(6442), - [anon_sym_while] = ACTIONS(6442), - [anon_sym_do] = ACTIONS(6442), - [anon_sym_if] = ACTIONS(6442), - [anon_sym_match] = ACTIONS(6442), - [anon_sym_LBRACE] = ACTIONS(6442), - [anon_sym_DOT_DOT] = ACTIONS(6442), - [anon_sym_try] = ACTIONS(6442), - [anon_sym_return] = ACTIONS(6442), - [anon_sym_source] = ACTIONS(6442), - [anon_sym_source_DASHenv] = ACTIONS(6442), - [anon_sym_register] = ACTIONS(6442), - [anon_sym_hide] = ACTIONS(6442), - [anon_sym_hide_DASHenv] = ACTIONS(6442), - [anon_sym_overlay] = ACTIONS(6442), - [anon_sym_where] = ACTIONS(6442), - [anon_sym_not] = ACTIONS(6442), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6442), - [anon_sym_DOT_DOT_LT] = ACTIONS(6442), - [anon_sym_null] = ACTIONS(6442), - [anon_sym_true] = ACTIONS(6442), - [anon_sym_false] = ACTIONS(6442), - [aux_sym__val_number_decimal_token1] = ACTIONS(6442), - [aux_sym__val_number_decimal_token2] = ACTIONS(6442), - [anon_sym_DOT2] = ACTIONS(6442), - [aux_sym__val_number_decimal_token3] = ACTIONS(6442), - [aux_sym__val_number_token1] = ACTIONS(6442), - [aux_sym__val_number_token2] = ACTIONS(6442), - [aux_sym__val_number_token3] = ACTIONS(6442), - [aux_sym__val_number_token4] = ACTIONS(6442), - [aux_sym__val_number_token5] = ACTIONS(6442), - [aux_sym__val_number_token6] = ACTIONS(6442), - [anon_sym_0b] = ACTIONS(6442), - [anon_sym_0o] = ACTIONS(6442), - [anon_sym_0x] = ACTIONS(6442), - [sym_val_date] = ACTIONS(6442), - [anon_sym_DQUOTE] = ACTIONS(6442), - [sym__str_single_quotes] = ACTIONS(6442), - [sym__str_back_ticks] = ACTIONS(6442), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6442), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6442), - [anon_sym_CARET] = ACTIONS(6442), - [anon_sym_POUND] = ACTIONS(113), - }, - [2889] = { - [sym_comment] = STATE(2889), - [ts_builtin_sym_end] = ACTIONS(6448), - [anon_sym_export] = ACTIONS(6446), - [anon_sym_alias] = ACTIONS(6446), - [anon_sym_let] = ACTIONS(6446), - [anon_sym_let_DASHenv] = ACTIONS(6446), - [anon_sym_mut] = ACTIONS(6446), - [anon_sym_const] = ACTIONS(6446), - [anon_sym_SEMI] = ACTIONS(6446), - [sym_cmd_identifier] = ACTIONS(6446), - [anon_sym_LF] = ACTIONS(6448), - [anon_sym_def] = ACTIONS(6446), - [anon_sym_export_DASHenv] = ACTIONS(6446), - [anon_sym_extern] = ACTIONS(6446), - [anon_sym_module] = ACTIONS(6446), - [anon_sym_use] = ACTIONS(6446), - [anon_sym_LBRACK] = ACTIONS(6446), - [anon_sym_LPAREN] = ACTIONS(6446), - [anon_sym_DOLLAR] = ACTIONS(6446), - [anon_sym_error] = ACTIONS(6446), - [anon_sym_DASH] = ACTIONS(6446), - [anon_sym_break] = ACTIONS(6446), - [anon_sym_continue] = ACTIONS(6446), - [anon_sym_for] = ACTIONS(6446), - [anon_sym_loop] = ACTIONS(6446), - [anon_sym_while] = ACTIONS(6446), - [anon_sym_do] = ACTIONS(6446), - [anon_sym_if] = ACTIONS(6446), - [anon_sym_match] = ACTIONS(6446), - [anon_sym_LBRACE] = ACTIONS(6446), - [anon_sym_DOT_DOT] = ACTIONS(6446), - [anon_sym_try] = ACTIONS(6446), - [anon_sym_return] = ACTIONS(6446), - [anon_sym_source] = ACTIONS(6446), - [anon_sym_source_DASHenv] = ACTIONS(6446), - [anon_sym_register] = ACTIONS(6446), - [anon_sym_hide] = ACTIONS(6446), - [anon_sym_hide_DASHenv] = ACTIONS(6446), - [anon_sym_overlay] = ACTIONS(6446), - [anon_sym_where] = ACTIONS(6446), - [anon_sym_not] = ACTIONS(6446), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6446), - [anon_sym_DOT_DOT_LT] = ACTIONS(6446), - [anon_sym_null] = ACTIONS(6446), - [anon_sym_true] = ACTIONS(6446), - [anon_sym_false] = ACTIONS(6446), - [aux_sym__val_number_decimal_token1] = ACTIONS(6446), - [aux_sym__val_number_decimal_token2] = ACTIONS(6446), - [anon_sym_DOT2] = ACTIONS(6446), - [aux_sym__val_number_decimal_token3] = ACTIONS(6446), - [aux_sym__val_number_token1] = ACTIONS(6446), - [aux_sym__val_number_token2] = ACTIONS(6446), - [aux_sym__val_number_token3] = ACTIONS(6446), - [aux_sym__val_number_token4] = ACTIONS(6446), - [aux_sym__val_number_token5] = ACTIONS(6446), - [aux_sym__val_number_token6] = ACTIONS(6446), - [anon_sym_0b] = ACTIONS(6446), - [anon_sym_0o] = ACTIONS(6446), - [anon_sym_0x] = ACTIONS(6446), - [sym_val_date] = ACTIONS(6446), - [anon_sym_DQUOTE] = ACTIONS(6446), - [sym__str_single_quotes] = ACTIONS(6446), - [sym__str_back_ticks] = ACTIONS(6446), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6446), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6446), - [anon_sym_CARET] = ACTIONS(6446), - [anon_sym_POUND] = ACTIONS(113), - }, - [2890] = { - [sym_comment] = STATE(2890), - [ts_builtin_sym_end] = ACTIONS(6452), - [anon_sym_export] = ACTIONS(6450), - [anon_sym_alias] = ACTIONS(6450), - [anon_sym_let] = ACTIONS(6450), - [anon_sym_let_DASHenv] = ACTIONS(6450), - [anon_sym_mut] = ACTIONS(6450), - [anon_sym_const] = ACTIONS(6450), - [anon_sym_SEMI] = ACTIONS(6450), - [sym_cmd_identifier] = ACTIONS(6450), - [anon_sym_LF] = ACTIONS(6452), - [anon_sym_def] = ACTIONS(6450), - [anon_sym_export_DASHenv] = ACTIONS(6450), - [anon_sym_extern] = ACTIONS(6450), - [anon_sym_module] = ACTIONS(6450), - [anon_sym_use] = ACTIONS(6450), - [anon_sym_LBRACK] = ACTIONS(6450), - [anon_sym_LPAREN] = ACTIONS(6450), - [anon_sym_DOLLAR] = ACTIONS(6450), - [anon_sym_error] = ACTIONS(6450), - [anon_sym_DASH] = ACTIONS(6450), - [anon_sym_break] = ACTIONS(6450), - [anon_sym_continue] = ACTIONS(6450), - [anon_sym_for] = ACTIONS(6450), - [anon_sym_loop] = ACTIONS(6450), - [anon_sym_while] = ACTIONS(6450), - [anon_sym_do] = ACTIONS(6450), - [anon_sym_if] = ACTIONS(6450), - [anon_sym_match] = ACTIONS(6450), - [anon_sym_LBRACE] = ACTIONS(6450), - [anon_sym_DOT_DOT] = ACTIONS(6450), - [anon_sym_try] = ACTIONS(6450), - [anon_sym_return] = ACTIONS(6450), - [anon_sym_source] = ACTIONS(6450), - [anon_sym_source_DASHenv] = ACTIONS(6450), - [anon_sym_register] = ACTIONS(6450), - [anon_sym_hide] = ACTIONS(6450), - [anon_sym_hide_DASHenv] = ACTIONS(6450), - [anon_sym_overlay] = ACTIONS(6450), - [anon_sym_where] = ACTIONS(6450), - [anon_sym_not] = ACTIONS(6450), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6450), - [anon_sym_DOT_DOT_LT] = ACTIONS(6450), - [anon_sym_null] = ACTIONS(6450), - [anon_sym_true] = ACTIONS(6450), - [anon_sym_false] = ACTIONS(6450), - [aux_sym__val_number_decimal_token1] = ACTIONS(6450), - [aux_sym__val_number_decimal_token2] = ACTIONS(6450), - [anon_sym_DOT2] = ACTIONS(6450), - [aux_sym__val_number_decimal_token3] = ACTIONS(6450), - [aux_sym__val_number_token1] = ACTIONS(6450), - [aux_sym__val_number_token2] = ACTIONS(6450), - [aux_sym__val_number_token3] = ACTIONS(6450), - [aux_sym__val_number_token4] = ACTIONS(6450), - [aux_sym__val_number_token5] = ACTIONS(6450), - [aux_sym__val_number_token6] = ACTIONS(6450), - [anon_sym_0b] = ACTIONS(6450), - [anon_sym_0o] = ACTIONS(6450), - [anon_sym_0x] = ACTIONS(6450), - [sym_val_date] = ACTIONS(6450), - [anon_sym_DQUOTE] = ACTIONS(6450), - [sym__str_single_quotes] = ACTIONS(6450), - [sym__str_back_ticks] = ACTIONS(6450), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6450), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6450), - [anon_sym_CARET] = ACTIONS(6450), - [anon_sym_POUND] = ACTIONS(113), - }, - [2891] = { - [sym_comment] = STATE(2891), - [ts_builtin_sym_end] = ACTIONS(6544), - [anon_sym_export] = ACTIONS(6542), - [anon_sym_alias] = ACTIONS(6542), - [anon_sym_let] = ACTIONS(6542), - [anon_sym_let_DASHenv] = ACTIONS(6542), - [anon_sym_mut] = ACTIONS(6542), - [anon_sym_const] = ACTIONS(6542), - [anon_sym_SEMI] = ACTIONS(6542), - [sym_cmd_identifier] = ACTIONS(6542), - [anon_sym_LF] = ACTIONS(6544), - [anon_sym_def] = ACTIONS(6542), - [anon_sym_export_DASHenv] = ACTIONS(6542), - [anon_sym_extern] = ACTIONS(6542), - [anon_sym_module] = ACTIONS(6542), - [anon_sym_use] = ACTIONS(6542), - [anon_sym_LBRACK] = ACTIONS(6542), - [anon_sym_LPAREN] = ACTIONS(6542), - [anon_sym_DOLLAR] = ACTIONS(6542), - [anon_sym_error] = ACTIONS(6542), - [anon_sym_DASH] = ACTIONS(6542), - [anon_sym_break] = ACTIONS(6542), - [anon_sym_continue] = ACTIONS(6542), - [anon_sym_for] = ACTIONS(6542), - [anon_sym_loop] = ACTIONS(6542), - [anon_sym_while] = ACTIONS(6542), - [anon_sym_do] = ACTIONS(6542), - [anon_sym_if] = ACTIONS(6542), - [anon_sym_match] = ACTIONS(6542), - [anon_sym_LBRACE] = ACTIONS(6542), - [anon_sym_DOT_DOT] = ACTIONS(6542), - [anon_sym_try] = ACTIONS(6542), - [anon_sym_return] = ACTIONS(6542), - [anon_sym_source] = ACTIONS(6542), - [anon_sym_source_DASHenv] = ACTIONS(6542), - [anon_sym_register] = ACTIONS(6542), - [anon_sym_hide] = ACTIONS(6542), - [anon_sym_hide_DASHenv] = ACTIONS(6542), - [anon_sym_overlay] = ACTIONS(6542), - [anon_sym_where] = ACTIONS(6542), - [anon_sym_not] = ACTIONS(6542), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6542), - [anon_sym_DOT_DOT_LT] = ACTIONS(6542), - [anon_sym_null] = ACTIONS(6542), - [anon_sym_true] = ACTIONS(6542), - [anon_sym_false] = ACTIONS(6542), - [aux_sym__val_number_decimal_token1] = ACTIONS(6542), - [aux_sym__val_number_decimal_token2] = ACTIONS(6542), - [anon_sym_DOT2] = ACTIONS(6542), - [aux_sym__val_number_decimal_token3] = ACTIONS(6542), - [aux_sym__val_number_token1] = ACTIONS(6542), - [aux_sym__val_number_token2] = ACTIONS(6542), - [aux_sym__val_number_token3] = ACTIONS(6542), - [aux_sym__val_number_token4] = ACTIONS(6542), - [aux_sym__val_number_token5] = ACTIONS(6542), - [aux_sym__val_number_token6] = ACTIONS(6542), - [anon_sym_0b] = ACTIONS(6542), - [anon_sym_0o] = ACTIONS(6542), - [anon_sym_0x] = ACTIONS(6542), - [sym_val_date] = ACTIONS(6542), - [anon_sym_DQUOTE] = ACTIONS(6542), - [sym__str_single_quotes] = ACTIONS(6542), - [sym__str_back_ticks] = ACTIONS(6542), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6542), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6542), - [anon_sym_CARET] = ACTIONS(6542), - [anon_sym_POUND] = ACTIONS(113), - }, - [2892] = { - [sym_comment] = STATE(2892), - [ts_builtin_sym_end] = ACTIONS(6748), - [anon_sym_export] = ACTIONS(6746), - [anon_sym_alias] = ACTIONS(6746), - [anon_sym_let] = ACTIONS(6746), - [anon_sym_let_DASHenv] = ACTIONS(6746), - [anon_sym_mut] = ACTIONS(6746), - [anon_sym_const] = ACTIONS(6746), - [anon_sym_SEMI] = ACTIONS(6746), - [sym_cmd_identifier] = ACTIONS(6746), - [anon_sym_LF] = ACTIONS(6748), - [anon_sym_def] = ACTIONS(6746), - [anon_sym_export_DASHenv] = ACTIONS(6746), - [anon_sym_extern] = ACTIONS(6746), - [anon_sym_module] = ACTIONS(6746), - [anon_sym_use] = ACTIONS(6746), - [anon_sym_LBRACK] = ACTIONS(6746), - [anon_sym_LPAREN] = ACTIONS(6746), - [anon_sym_DOLLAR] = ACTIONS(6746), - [anon_sym_error] = ACTIONS(6746), - [anon_sym_DASH] = ACTIONS(6746), - [anon_sym_break] = ACTIONS(6746), - [anon_sym_continue] = ACTIONS(6746), - [anon_sym_for] = ACTIONS(6746), - [anon_sym_loop] = ACTIONS(6746), - [anon_sym_while] = ACTIONS(6746), - [anon_sym_do] = ACTIONS(6746), - [anon_sym_if] = ACTIONS(6746), - [anon_sym_match] = ACTIONS(6746), - [anon_sym_LBRACE] = ACTIONS(6746), - [anon_sym_DOT_DOT] = ACTIONS(6746), - [anon_sym_try] = ACTIONS(6746), - [anon_sym_return] = ACTIONS(6746), - [anon_sym_source] = ACTIONS(6746), - [anon_sym_source_DASHenv] = ACTIONS(6746), - [anon_sym_register] = ACTIONS(6746), - [anon_sym_hide] = ACTIONS(6746), - [anon_sym_hide_DASHenv] = ACTIONS(6746), - [anon_sym_overlay] = ACTIONS(6746), - [anon_sym_where] = ACTIONS(6746), - [anon_sym_not] = ACTIONS(6746), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6746), - [anon_sym_DOT_DOT_LT] = ACTIONS(6746), - [anon_sym_null] = ACTIONS(6746), - [anon_sym_true] = ACTIONS(6746), - [anon_sym_false] = ACTIONS(6746), - [aux_sym__val_number_decimal_token1] = ACTIONS(6746), - [aux_sym__val_number_decimal_token2] = ACTIONS(6746), - [anon_sym_DOT2] = ACTIONS(6746), - [aux_sym__val_number_decimal_token3] = ACTIONS(6746), - [aux_sym__val_number_token1] = ACTIONS(6746), - [aux_sym__val_number_token2] = ACTIONS(6746), - [aux_sym__val_number_token3] = ACTIONS(6746), - [aux_sym__val_number_token4] = ACTIONS(6746), - [aux_sym__val_number_token5] = ACTIONS(6746), - [aux_sym__val_number_token6] = ACTIONS(6746), - [anon_sym_0b] = ACTIONS(6746), - [anon_sym_0o] = ACTIONS(6746), - [anon_sym_0x] = ACTIONS(6746), - [sym_val_date] = ACTIONS(6746), - [anon_sym_DQUOTE] = ACTIONS(6746), - [sym__str_single_quotes] = ACTIONS(6746), - [sym__str_back_ticks] = ACTIONS(6746), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6746), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6746), - [anon_sym_CARET] = ACTIONS(6746), - [anon_sym_POUND] = ACTIONS(113), - }, - [2893] = { - [sym_comment] = STATE(2893), - [anon_sym_SEMI] = ACTIONS(1280), - [anon_sym_LF] = ACTIONS(1282), - [anon_sym_LBRACK] = ACTIONS(1280), - [anon_sym_LPAREN] = ACTIONS(1280), - [anon_sym_RPAREN] = ACTIONS(1280), - [anon_sym_PIPE] = ACTIONS(1280), - [anon_sym_DOLLAR] = ACTIONS(1280), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_DASH_DASH] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_in] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1280), - [anon_sym_RBRACE] = ACTIONS(1280), - [anon_sym_DOT_DOT] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1280), - [anon_sym_STAR_STAR] = ACTIONS(1280), - [anon_sym_PLUS_PLUS] = ACTIONS(1280), - [anon_sym_SLASH] = ACTIONS(1280), - [anon_sym_mod] = ACTIONS(1280), - [anon_sym_SLASH_SLASH] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_bit_DASHshl] = ACTIONS(1280), - [anon_sym_bit_DASHshr] = ACTIONS(1280), - [anon_sym_EQ_EQ] = ACTIONS(1280), - [anon_sym_BANG_EQ] = ACTIONS(1280), - [anon_sym_LT2] = ACTIONS(1280), - [anon_sym_LT_EQ] = ACTIONS(1280), - [anon_sym_GT_EQ] = ACTIONS(1280), - [anon_sym_not_DASHin] = ACTIONS(1280), - [anon_sym_starts_DASHwith] = ACTIONS(1280), - [anon_sym_ends_DASHwith] = ACTIONS(1280), - [anon_sym_EQ_TILDE] = ACTIONS(1280), - [anon_sym_BANG_TILDE] = ACTIONS(1280), - [anon_sym_bit_DASHand] = ACTIONS(1280), - [anon_sym_bit_DASHxor] = ACTIONS(1280), - [anon_sym_bit_DASHor] = ACTIONS(1280), - [anon_sym_and] = ACTIONS(1280), - [anon_sym_xor] = ACTIONS(1280), - [anon_sym_or] = ACTIONS(1280), - [anon_sym_not] = ACTIONS(1280), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1280), - [anon_sym_DOT_DOT_LT] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1280), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [aux_sym__val_number_decimal_token1] = ACTIONS(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1280), - [anon_sym_DOT2] = ACTIONS(1280), - [aux_sym__val_number_decimal_token3] = ACTIONS(1280), - [aux_sym__val_number_token1] = ACTIONS(1280), - [aux_sym__val_number_token2] = ACTIONS(1280), - [aux_sym__val_number_token3] = ACTIONS(1280), - [aux_sym__val_number_token4] = ACTIONS(1280), - [aux_sym__val_number_token5] = ACTIONS(1280), - [aux_sym__val_number_token6] = ACTIONS(1280), - [anon_sym_0b] = ACTIONS(1280), - [anon_sym_0o] = ACTIONS(1280), - [anon_sym_0x] = ACTIONS(1280), - [sym_val_date] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1280), - [sym__str_single_quotes] = ACTIONS(1280), - [sym__str_back_ticks] = ACTIONS(1280), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1280), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1280), - [aux_sym_unquoted_token6] = ACTIONS(1280), - [anon_sym_POUND] = ACTIONS(113), - }, - [2894] = { - [sym_comment] = STATE(2894), - [ts_builtin_sym_end] = ACTIONS(5217), - [anon_sym_export] = ACTIONS(5215), - [anon_sym_alias] = ACTIONS(5215), - [anon_sym_let] = ACTIONS(5215), - [anon_sym_let_DASHenv] = ACTIONS(5215), - [anon_sym_mut] = ACTIONS(5215), - [anon_sym_const] = ACTIONS(5215), - [anon_sym_SEMI] = ACTIONS(5215), - [sym_cmd_identifier] = ACTIONS(5215), - [anon_sym_LF] = ACTIONS(5217), - [anon_sym_def] = ACTIONS(5215), - [anon_sym_export_DASHenv] = ACTIONS(5215), - [anon_sym_extern] = ACTIONS(5215), - [anon_sym_module] = ACTIONS(5215), - [anon_sym_use] = ACTIONS(5215), - [anon_sym_LBRACK] = ACTIONS(5215), - [anon_sym_LPAREN] = ACTIONS(5215), - [anon_sym_DOLLAR] = ACTIONS(5215), - [anon_sym_error] = ACTIONS(5215), - [anon_sym_DASH] = ACTIONS(5215), - [anon_sym_break] = ACTIONS(5215), - [anon_sym_continue] = ACTIONS(5215), - [anon_sym_for] = ACTIONS(5215), - [anon_sym_loop] = ACTIONS(5215), - [anon_sym_while] = ACTIONS(5215), - [anon_sym_do] = ACTIONS(5215), - [anon_sym_if] = ACTIONS(5215), - [anon_sym_match] = ACTIONS(5215), - [anon_sym_LBRACE] = ACTIONS(5215), - [anon_sym_DOT_DOT] = ACTIONS(5215), - [anon_sym_try] = ACTIONS(5215), - [anon_sym_return] = ACTIONS(5215), - [anon_sym_source] = ACTIONS(5215), - [anon_sym_source_DASHenv] = ACTIONS(5215), - [anon_sym_register] = ACTIONS(5215), - [anon_sym_hide] = ACTIONS(5215), - [anon_sym_hide_DASHenv] = ACTIONS(5215), - [anon_sym_overlay] = ACTIONS(5215), - [anon_sym_where] = ACTIONS(5215), - [anon_sym_not] = ACTIONS(5215), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5215), - [anon_sym_DOT_DOT_LT] = ACTIONS(5215), - [anon_sym_null] = ACTIONS(5215), - [anon_sym_true] = ACTIONS(5215), - [anon_sym_false] = ACTIONS(5215), - [aux_sym__val_number_decimal_token1] = ACTIONS(5215), - [aux_sym__val_number_decimal_token2] = ACTIONS(5215), - [anon_sym_DOT2] = ACTIONS(5215), - [aux_sym__val_number_decimal_token3] = ACTIONS(5215), - [aux_sym__val_number_token1] = ACTIONS(5215), - [aux_sym__val_number_token2] = ACTIONS(5215), - [aux_sym__val_number_token3] = ACTIONS(5215), - [aux_sym__val_number_token4] = ACTIONS(5215), - [aux_sym__val_number_token5] = ACTIONS(5215), - [aux_sym__val_number_token6] = ACTIONS(5215), - [anon_sym_0b] = ACTIONS(5215), - [anon_sym_0o] = ACTIONS(5215), - [anon_sym_0x] = ACTIONS(5215), - [sym_val_date] = ACTIONS(5215), - [anon_sym_DQUOTE] = ACTIONS(5215), - [sym__str_single_quotes] = ACTIONS(5215), - [sym__str_back_ticks] = ACTIONS(5215), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5215), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5215), - [anon_sym_CARET] = ACTIONS(5215), - [anon_sym_POUND] = ACTIONS(113), - }, - [2895] = { - [sym_comment] = STATE(2895), - [ts_builtin_sym_end] = ACTIONS(1061), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_LF] = ACTIONS(1061), - [anon_sym_LBRACK] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_DASH_DASH] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_QMARK2] = ACTIONS(1059), - [anon_sym_STAR_STAR] = ACTIONS(1059), - [anon_sym_PLUS_PLUS] = ACTIONS(1059), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_mod] = ACTIONS(1059), - [anon_sym_SLASH_SLASH] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_bit_DASHshl] = ACTIONS(1059), - [anon_sym_bit_DASHshr] = ACTIONS(1059), - [anon_sym_EQ_EQ] = ACTIONS(1059), - [anon_sym_BANG_EQ] = ACTIONS(1059), - [anon_sym_LT2] = ACTIONS(1059), - [anon_sym_LT_EQ] = ACTIONS(1059), - [anon_sym_GT_EQ] = ACTIONS(1059), - [anon_sym_not_DASHin] = ACTIONS(1059), - [anon_sym_starts_DASHwith] = ACTIONS(1059), - [anon_sym_ends_DASHwith] = ACTIONS(1059), - [anon_sym_EQ_TILDE] = ACTIONS(1059), - [anon_sym_BANG_TILDE] = ACTIONS(1059), - [anon_sym_bit_DASHand] = ACTIONS(1059), - [anon_sym_bit_DASHxor] = ACTIONS(1059), - [anon_sym_bit_DASHor] = ACTIONS(1059), - [anon_sym_and] = ACTIONS(1059), - [anon_sym_xor] = ACTIONS(1059), - [anon_sym_or] = ACTIONS(1059), - [anon_sym_not] = ACTIONS(1059), - [anon_sym_DOT] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1059), - [anon_sym_DOT_DOT_LT] = ACTIONS(1059), - [anon_sym_null] = ACTIONS(1059), - [anon_sym_true] = ACTIONS(1059), - [anon_sym_false] = ACTIONS(1059), - [aux_sym__val_number_decimal_token1] = ACTIONS(1059), - [aux_sym__val_number_decimal_token2] = ACTIONS(1059), - [anon_sym_DOT2] = ACTIONS(1059), - [aux_sym__val_number_decimal_token3] = ACTIONS(1059), - [aux_sym__val_number_token1] = ACTIONS(1059), - [aux_sym__val_number_token2] = ACTIONS(1059), - [aux_sym__val_number_token3] = ACTIONS(1059), - [aux_sym__val_number_token4] = ACTIONS(1059), - [aux_sym__val_number_token5] = ACTIONS(1059), - [aux_sym__val_number_token6] = ACTIONS(1059), - [anon_sym_0b] = ACTIONS(1059), - [anon_sym_0o] = ACTIONS(1059), - [anon_sym_0x] = ACTIONS(1059), - [sym_val_date] = ACTIONS(1059), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym__str_single_quotes] = ACTIONS(1059), - [sym__str_back_ticks] = ACTIONS(1059), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1059), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1059), - [anon_sym_POUND] = ACTIONS(113), - }, - [2896] = { - [sym_expr_parenthesized] = STATE(11210), - [sym_val_variable] = STATE(11210), - [sym__var] = STATE(7440), - [sym_val_number] = STATE(11210), - [sym__val_number_decimal] = STATE(5414), - [sym__val_number] = STATE(5463), - [sym_val_string] = STATE(11210), - [sym__str_double_quotes] = STATE(7019), - [sym_record_entry] = STATE(10576), - [sym__record_key] = STATE(11197), - [sym_comment] = STATE(2896), - [aux_sym_record_body_repeat1] = STATE(2885), - [anon_sym_export] = ACTIONS(255), - [anon_sym_alias] = ACTIONS(255), - [anon_sym_let] = ACTIONS(255), - [anon_sym_let_DASHenv] = ACTIONS(255), - [anon_sym_mut] = ACTIONS(255), - [anon_sym_const] = ACTIONS(255), - [sym_cmd_identifier] = ACTIONS(255), - [anon_sym_def] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(255), - [anon_sym_extern] = ACTIONS(255), - [anon_sym_module] = ACTIONS(255), - [anon_sym_use] = ACTIONS(255), - [anon_sym_LPAREN] = ACTIONS(6093), - [anon_sym_DOLLAR] = ACTIONS(6247), - [anon_sym_error] = ACTIONS(255), - [anon_sym_list] = ACTIONS(255), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_break] = ACTIONS(255), - [anon_sym_continue] = ACTIONS(255), - [anon_sym_for] = ACTIONS(255), - [anon_sym_in] = ACTIONS(255), - [anon_sym_loop] = ACTIONS(255), - [anon_sym_make] = ACTIONS(255), - [anon_sym_while] = ACTIONS(255), - [anon_sym_do] = ACTIONS(255), - [anon_sym_if] = ACTIONS(255), - [anon_sym_else] = ACTIONS(255), - [anon_sym_match] = ACTIONS(255), - [anon_sym_try] = ACTIONS(255), - [anon_sym_catch] = ACTIONS(255), - [anon_sym_return] = ACTIONS(255), - [anon_sym_source] = ACTIONS(255), - [anon_sym_source_DASHenv] = ACTIONS(255), - [anon_sym_register] = ACTIONS(255), - [anon_sym_hide] = ACTIONS(255), - [anon_sym_hide_DASHenv] = ACTIONS(255), - [anon_sym_overlay] = ACTIONS(255), - [anon_sym_new] = ACTIONS(255), - [anon_sym_as] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(189), - [aux_sym__val_number_decimal_token1] = ACTIONS(6099), - [aux_sym__val_number_decimal_token2] = ACTIONS(6101), - [anon_sym_DOT2] = ACTIONS(6103), - [aux_sym__val_number_decimal_token3] = ACTIONS(6105), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [aux_sym__val_number_token4] = ACTIONS(6107), - [aux_sym__val_number_token5] = ACTIONS(2714), - [aux_sym__val_number_token6] = ACTIONS(6107), - [anon_sym_DQUOTE] = ACTIONS(2724), - [sym__str_single_quotes] = ACTIONS(2726), - [sym__str_back_ticks] = ACTIONS(2726), - [aux_sym__record_key_token2] = ACTIONS(225), - [anon_sym_POUND] = ACTIONS(3), - }, - [2897] = { - [sym_comment] = STATE(2897), - [ts_builtin_sym_end] = ACTIONS(6371), - [anon_sym_export] = ACTIONS(6369), - [anon_sym_alias] = ACTIONS(6369), - [anon_sym_let] = ACTIONS(6369), - [anon_sym_let_DASHenv] = ACTIONS(6369), - [anon_sym_mut] = ACTIONS(6369), - [anon_sym_const] = ACTIONS(6369), - [anon_sym_SEMI] = ACTIONS(6369), - [sym_cmd_identifier] = ACTIONS(6369), - [anon_sym_LF] = ACTIONS(6371), - [anon_sym_def] = ACTIONS(6369), - [anon_sym_export_DASHenv] = ACTIONS(6369), - [anon_sym_extern] = ACTIONS(6369), - [anon_sym_module] = ACTIONS(6369), - [anon_sym_use] = ACTIONS(6369), - [anon_sym_LBRACK] = ACTIONS(6369), - [anon_sym_LPAREN] = ACTIONS(6369), - [anon_sym_DOLLAR] = ACTIONS(6369), - [anon_sym_error] = ACTIONS(6369), - [anon_sym_DASH] = ACTIONS(6369), - [anon_sym_break] = ACTIONS(6369), - [anon_sym_continue] = ACTIONS(6369), - [anon_sym_for] = ACTIONS(6369), - [anon_sym_loop] = ACTIONS(6369), - [anon_sym_while] = ACTIONS(6369), - [anon_sym_do] = ACTIONS(6369), - [anon_sym_if] = ACTIONS(6369), - [anon_sym_match] = ACTIONS(6369), - [anon_sym_LBRACE] = ACTIONS(6369), - [anon_sym_DOT_DOT] = ACTIONS(6369), - [anon_sym_try] = ACTIONS(6369), - [anon_sym_return] = ACTIONS(6369), - [anon_sym_source] = ACTIONS(6369), - [anon_sym_source_DASHenv] = ACTIONS(6369), - [anon_sym_register] = ACTIONS(6369), - [anon_sym_hide] = ACTIONS(6369), - [anon_sym_hide_DASHenv] = ACTIONS(6369), - [anon_sym_overlay] = ACTIONS(6369), - [anon_sym_where] = ACTIONS(6369), - [anon_sym_not] = ACTIONS(6369), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6369), - [anon_sym_DOT_DOT_LT] = ACTIONS(6369), - [anon_sym_null] = ACTIONS(6369), - [anon_sym_true] = ACTIONS(6369), - [anon_sym_false] = ACTIONS(6369), - [aux_sym__val_number_decimal_token1] = ACTIONS(6369), - [aux_sym__val_number_decimal_token2] = ACTIONS(6369), - [anon_sym_DOT2] = ACTIONS(6369), - [aux_sym__val_number_decimal_token3] = ACTIONS(6369), - [aux_sym__val_number_token1] = ACTIONS(6369), - [aux_sym__val_number_token2] = ACTIONS(6369), - [aux_sym__val_number_token3] = ACTIONS(6369), - [aux_sym__val_number_token4] = ACTIONS(6369), - [aux_sym__val_number_token5] = ACTIONS(6369), - [aux_sym__val_number_token6] = ACTIONS(6369), - [anon_sym_0b] = ACTIONS(6369), - [anon_sym_0o] = ACTIONS(6369), - [anon_sym_0x] = ACTIONS(6369), - [sym_val_date] = ACTIONS(6369), - [anon_sym_DQUOTE] = ACTIONS(6369), - [sym__str_single_quotes] = ACTIONS(6369), - [sym__str_back_ticks] = ACTIONS(6369), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6369), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6369), - [anon_sym_CARET] = ACTIONS(6369), - [anon_sym_POUND] = ACTIONS(113), - }, - [2898] = { - [sym_comment] = STATE(2898), - [ts_builtin_sym_end] = ACTIONS(1065), - [anon_sym_SEMI] = ACTIONS(1063), - [anon_sym_LF] = ACTIONS(1065), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_PIPE] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_DASH_DASH] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_QMARK2] = ACTIONS(1063), - [anon_sym_STAR_STAR] = ACTIONS(1063), - [anon_sym_PLUS_PLUS] = ACTIONS(1063), - [anon_sym_SLASH] = ACTIONS(1063), - [anon_sym_mod] = ACTIONS(1063), - [anon_sym_SLASH_SLASH] = ACTIONS(1063), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_bit_DASHshl] = ACTIONS(1063), - [anon_sym_bit_DASHshr] = ACTIONS(1063), - [anon_sym_EQ_EQ] = ACTIONS(1063), - [anon_sym_BANG_EQ] = ACTIONS(1063), - [anon_sym_LT2] = ACTIONS(1063), - [anon_sym_LT_EQ] = ACTIONS(1063), - [anon_sym_GT_EQ] = ACTIONS(1063), - [anon_sym_not_DASHin] = ACTIONS(1063), - [anon_sym_starts_DASHwith] = ACTIONS(1063), - [anon_sym_ends_DASHwith] = ACTIONS(1063), - [anon_sym_EQ_TILDE] = ACTIONS(1063), - [anon_sym_BANG_TILDE] = ACTIONS(1063), - [anon_sym_bit_DASHand] = ACTIONS(1063), - [anon_sym_bit_DASHxor] = ACTIONS(1063), - [anon_sym_bit_DASHor] = ACTIONS(1063), - [anon_sym_and] = ACTIONS(1063), - [anon_sym_xor] = ACTIONS(1063), - [anon_sym_or] = ACTIONS(1063), - [anon_sym_not] = ACTIONS(1063), - [anon_sym_DOT] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1063), - [anon_sym_DOT_DOT_LT] = ACTIONS(1063), - [anon_sym_null] = ACTIONS(1063), - [anon_sym_true] = ACTIONS(1063), - [anon_sym_false] = ACTIONS(1063), - [aux_sym__val_number_decimal_token1] = ACTIONS(1063), - [aux_sym__val_number_decimal_token2] = ACTIONS(1063), - [anon_sym_DOT2] = ACTIONS(1063), - [aux_sym__val_number_decimal_token3] = ACTIONS(1063), - [aux_sym__val_number_token1] = ACTIONS(1063), - [aux_sym__val_number_token2] = ACTIONS(1063), - [aux_sym__val_number_token3] = ACTIONS(1063), - [aux_sym__val_number_token4] = ACTIONS(1063), - [aux_sym__val_number_token5] = ACTIONS(1063), - [aux_sym__val_number_token6] = ACTIONS(1063), - [anon_sym_0b] = ACTIONS(1063), - [anon_sym_0o] = ACTIONS(1063), - [anon_sym_0x] = ACTIONS(1063), - [sym_val_date] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [sym__str_single_quotes] = ACTIONS(1063), - [sym__str_back_ticks] = ACTIONS(1063), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1063), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1063), - [anon_sym_POUND] = ACTIONS(113), - }, - [2899] = { - [sym_comment] = STATE(2899), - [ts_builtin_sym_end] = ACTIONS(5221), - [anon_sym_export] = ACTIONS(5219), - [anon_sym_alias] = ACTIONS(5219), - [anon_sym_let] = ACTIONS(5219), - [anon_sym_let_DASHenv] = ACTIONS(5219), - [anon_sym_mut] = ACTIONS(5219), - [anon_sym_const] = ACTIONS(5219), - [anon_sym_SEMI] = ACTIONS(5219), - [sym_cmd_identifier] = ACTIONS(5219), - [anon_sym_LF] = ACTIONS(5221), - [anon_sym_def] = ACTIONS(5219), - [anon_sym_export_DASHenv] = ACTIONS(5219), - [anon_sym_extern] = ACTIONS(5219), - [anon_sym_module] = ACTIONS(5219), - [anon_sym_use] = ACTIONS(5219), - [anon_sym_LBRACK] = ACTIONS(5219), - [anon_sym_LPAREN] = ACTIONS(5219), - [anon_sym_DOLLAR] = ACTIONS(5219), - [anon_sym_error] = ACTIONS(5219), - [anon_sym_DASH] = ACTIONS(5219), - [anon_sym_break] = ACTIONS(5219), - [anon_sym_continue] = ACTIONS(5219), - [anon_sym_for] = ACTIONS(5219), - [anon_sym_loop] = ACTIONS(5219), - [anon_sym_while] = ACTIONS(5219), - [anon_sym_do] = ACTIONS(5219), - [anon_sym_if] = ACTIONS(5219), - [anon_sym_match] = ACTIONS(5219), - [anon_sym_LBRACE] = ACTIONS(5219), - [anon_sym_DOT_DOT] = ACTIONS(5219), - [anon_sym_try] = ACTIONS(5219), - [anon_sym_return] = ACTIONS(5219), - [anon_sym_source] = ACTIONS(5219), - [anon_sym_source_DASHenv] = ACTIONS(5219), - [anon_sym_register] = ACTIONS(5219), - [anon_sym_hide] = ACTIONS(5219), - [anon_sym_hide_DASHenv] = ACTIONS(5219), - [anon_sym_overlay] = ACTIONS(5219), - [anon_sym_where] = ACTIONS(5219), - [anon_sym_not] = ACTIONS(5219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5219), - [anon_sym_DOT_DOT_LT] = ACTIONS(5219), - [anon_sym_null] = ACTIONS(5219), - [anon_sym_true] = ACTIONS(5219), - [anon_sym_false] = ACTIONS(5219), - [aux_sym__val_number_decimal_token1] = ACTIONS(5219), - [aux_sym__val_number_decimal_token2] = ACTIONS(5219), - [anon_sym_DOT2] = ACTIONS(5219), - [aux_sym__val_number_decimal_token3] = ACTIONS(5219), - [aux_sym__val_number_token1] = ACTIONS(5219), - [aux_sym__val_number_token2] = ACTIONS(5219), - [aux_sym__val_number_token3] = ACTIONS(5219), - [aux_sym__val_number_token4] = ACTIONS(5219), - [aux_sym__val_number_token5] = ACTIONS(5219), - [aux_sym__val_number_token6] = ACTIONS(5219), - [anon_sym_0b] = ACTIONS(5219), - [anon_sym_0o] = ACTIONS(5219), - [anon_sym_0x] = ACTIONS(5219), - [sym_val_date] = ACTIONS(5219), - [anon_sym_DQUOTE] = ACTIONS(5219), - [sym__str_single_quotes] = ACTIONS(5219), - [sym__str_back_ticks] = ACTIONS(5219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5219), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5219), - [anon_sym_CARET] = ACTIONS(5219), - [anon_sym_POUND] = ACTIONS(113), - }, - [2900] = { - [sym_comment] = STATE(2900), - [ts_builtin_sym_end] = ACTIONS(5225), - [anon_sym_export] = ACTIONS(5223), - [anon_sym_alias] = ACTIONS(5223), - [anon_sym_let] = ACTIONS(5223), - [anon_sym_let_DASHenv] = ACTIONS(5223), - [anon_sym_mut] = ACTIONS(5223), - [anon_sym_const] = ACTIONS(5223), - [anon_sym_SEMI] = ACTIONS(5223), - [sym_cmd_identifier] = ACTIONS(5223), - [anon_sym_LF] = ACTIONS(5225), - [anon_sym_def] = ACTIONS(5223), - [anon_sym_export_DASHenv] = ACTIONS(5223), - [anon_sym_extern] = ACTIONS(5223), - [anon_sym_module] = ACTIONS(5223), - [anon_sym_use] = ACTIONS(5223), - [anon_sym_LBRACK] = ACTIONS(5223), - [anon_sym_LPAREN] = ACTIONS(5223), - [anon_sym_DOLLAR] = ACTIONS(5223), - [anon_sym_error] = ACTIONS(5223), - [anon_sym_DASH] = ACTIONS(5223), - [anon_sym_break] = ACTIONS(5223), - [anon_sym_continue] = ACTIONS(5223), - [anon_sym_for] = ACTIONS(5223), - [anon_sym_loop] = ACTIONS(5223), - [anon_sym_while] = ACTIONS(5223), - [anon_sym_do] = ACTIONS(5223), - [anon_sym_if] = ACTIONS(5223), - [anon_sym_match] = ACTIONS(5223), - [anon_sym_LBRACE] = ACTIONS(5223), - [anon_sym_DOT_DOT] = ACTIONS(5223), - [anon_sym_try] = ACTIONS(5223), - [anon_sym_return] = ACTIONS(5223), - [anon_sym_source] = ACTIONS(5223), - [anon_sym_source_DASHenv] = ACTIONS(5223), - [anon_sym_register] = ACTIONS(5223), - [anon_sym_hide] = ACTIONS(5223), - [anon_sym_hide_DASHenv] = ACTIONS(5223), - [anon_sym_overlay] = ACTIONS(5223), - [anon_sym_where] = ACTIONS(5223), - [anon_sym_not] = ACTIONS(5223), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5223), - [anon_sym_DOT_DOT_LT] = ACTIONS(5223), - [anon_sym_null] = ACTIONS(5223), - [anon_sym_true] = ACTIONS(5223), - [anon_sym_false] = ACTIONS(5223), - [aux_sym__val_number_decimal_token1] = ACTIONS(5223), - [aux_sym__val_number_decimal_token2] = ACTIONS(5223), - [anon_sym_DOT2] = ACTIONS(5223), - [aux_sym__val_number_decimal_token3] = ACTIONS(5223), - [aux_sym__val_number_token1] = ACTIONS(5223), - [aux_sym__val_number_token2] = ACTIONS(5223), - [aux_sym__val_number_token3] = ACTIONS(5223), - [aux_sym__val_number_token4] = ACTIONS(5223), - [aux_sym__val_number_token5] = ACTIONS(5223), - [aux_sym__val_number_token6] = ACTIONS(5223), - [anon_sym_0b] = ACTIONS(5223), - [anon_sym_0o] = ACTIONS(5223), - [anon_sym_0x] = ACTIONS(5223), - [sym_val_date] = ACTIONS(5223), - [anon_sym_DQUOTE] = ACTIONS(5223), - [sym__str_single_quotes] = ACTIONS(5223), - [sym__str_back_ticks] = ACTIONS(5223), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5223), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5223), - [anon_sym_CARET] = ACTIONS(5223), - [anon_sym_POUND] = ACTIONS(113), - }, - [2901] = { - [sym_comment] = STATE(2901), - [ts_builtin_sym_end] = ACTIONS(6375), - [anon_sym_export] = ACTIONS(6373), - [anon_sym_alias] = ACTIONS(6373), - [anon_sym_let] = ACTIONS(6373), - [anon_sym_let_DASHenv] = ACTIONS(6373), - [anon_sym_mut] = ACTIONS(6373), - [anon_sym_const] = ACTIONS(6373), - [anon_sym_SEMI] = ACTIONS(6373), - [sym_cmd_identifier] = ACTIONS(6373), - [anon_sym_LF] = ACTIONS(6375), - [anon_sym_def] = ACTIONS(6373), - [anon_sym_export_DASHenv] = ACTIONS(6373), - [anon_sym_extern] = ACTIONS(6373), - [anon_sym_module] = ACTIONS(6373), - [anon_sym_use] = ACTIONS(6373), - [anon_sym_LBRACK] = ACTIONS(6373), - [anon_sym_LPAREN] = ACTIONS(6373), - [anon_sym_DOLLAR] = ACTIONS(6373), - [anon_sym_error] = ACTIONS(6373), - [anon_sym_DASH] = ACTIONS(6373), - [anon_sym_break] = ACTIONS(6373), - [anon_sym_continue] = ACTIONS(6373), - [anon_sym_for] = ACTIONS(6373), - [anon_sym_loop] = ACTIONS(6373), - [anon_sym_while] = ACTIONS(6373), - [anon_sym_do] = ACTIONS(6373), - [anon_sym_if] = ACTIONS(6373), - [anon_sym_match] = ACTIONS(6373), - [anon_sym_LBRACE] = ACTIONS(6373), - [anon_sym_DOT_DOT] = ACTIONS(6373), - [anon_sym_try] = ACTIONS(6373), - [anon_sym_return] = ACTIONS(6373), - [anon_sym_source] = ACTIONS(6373), - [anon_sym_source_DASHenv] = ACTIONS(6373), - [anon_sym_register] = ACTIONS(6373), - [anon_sym_hide] = ACTIONS(6373), - [anon_sym_hide_DASHenv] = ACTIONS(6373), - [anon_sym_overlay] = ACTIONS(6373), - [anon_sym_where] = ACTIONS(6373), - [anon_sym_not] = ACTIONS(6373), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6373), - [anon_sym_DOT_DOT_LT] = ACTIONS(6373), - [anon_sym_null] = ACTIONS(6373), - [anon_sym_true] = ACTIONS(6373), - [anon_sym_false] = ACTIONS(6373), - [aux_sym__val_number_decimal_token1] = ACTIONS(6373), - [aux_sym__val_number_decimal_token2] = ACTIONS(6373), - [anon_sym_DOT2] = ACTIONS(6373), - [aux_sym__val_number_decimal_token3] = ACTIONS(6373), - [aux_sym__val_number_token1] = ACTIONS(6373), - [aux_sym__val_number_token2] = ACTIONS(6373), - [aux_sym__val_number_token3] = ACTIONS(6373), - [aux_sym__val_number_token4] = ACTIONS(6373), - [aux_sym__val_number_token5] = ACTIONS(6373), - [aux_sym__val_number_token6] = ACTIONS(6373), - [anon_sym_0b] = ACTIONS(6373), - [anon_sym_0o] = ACTIONS(6373), - [anon_sym_0x] = ACTIONS(6373), - [sym_val_date] = ACTIONS(6373), - [anon_sym_DQUOTE] = ACTIONS(6373), - [sym__str_single_quotes] = ACTIONS(6373), - [sym__str_back_ticks] = ACTIONS(6373), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6373), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6373), - [anon_sym_CARET] = ACTIONS(6373), - [anon_sym_POUND] = ACTIONS(113), - }, - [2902] = { - [sym_comment] = STATE(2902), - [ts_builtin_sym_end] = ACTIONS(5229), - [anon_sym_export] = ACTIONS(5227), - [anon_sym_alias] = ACTIONS(5227), - [anon_sym_let] = ACTIONS(5227), - [anon_sym_let_DASHenv] = ACTIONS(5227), - [anon_sym_mut] = ACTIONS(5227), - [anon_sym_const] = ACTIONS(5227), - [anon_sym_SEMI] = ACTIONS(5227), - [sym_cmd_identifier] = ACTIONS(5227), - [anon_sym_LF] = ACTIONS(5229), - [anon_sym_def] = ACTIONS(5227), - [anon_sym_export_DASHenv] = ACTIONS(5227), - [anon_sym_extern] = ACTIONS(5227), - [anon_sym_module] = ACTIONS(5227), - [anon_sym_use] = ACTIONS(5227), - [anon_sym_LBRACK] = ACTIONS(5227), - [anon_sym_LPAREN] = ACTIONS(5227), - [anon_sym_DOLLAR] = ACTIONS(5227), - [anon_sym_error] = ACTIONS(5227), - [anon_sym_DASH] = ACTIONS(5227), - [anon_sym_break] = ACTIONS(5227), - [anon_sym_continue] = ACTIONS(5227), - [anon_sym_for] = ACTIONS(5227), - [anon_sym_loop] = ACTIONS(5227), - [anon_sym_while] = ACTIONS(5227), - [anon_sym_do] = ACTIONS(5227), - [anon_sym_if] = ACTIONS(5227), - [anon_sym_match] = ACTIONS(5227), - [anon_sym_LBRACE] = ACTIONS(5227), - [anon_sym_DOT_DOT] = ACTIONS(5227), - [anon_sym_try] = ACTIONS(5227), - [anon_sym_return] = ACTIONS(5227), - [anon_sym_source] = ACTIONS(5227), - [anon_sym_source_DASHenv] = ACTIONS(5227), - [anon_sym_register] = ACTIONS(5227), - [anon_sym_hide] = ACTIONS(5227), - [anon_sym_hide_DASHenv] = ACTIONS(5227), - [anon_sym_overlay] = ACTIONS(5227), - [anon_sym_where] = ACTIONS(5227), - [anon_sym_not] = ACTIONS(5227), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5227), - [anon_sym_DOT_DOT_LT] = ACTIONS(5227), - [anon_sym_null] = ACTIONS(5227), - [anon_sym_true] = ACTIONS(5227), - [anon_sym_false] = ACTIONS(5227), - [aux_sym__val_number_decimal_token1] = ACTIONS(5227), - [aux_sym__val_number_decimal_token2] = ACTIONS(5227), - [anon_sym_DOT2] = ACTIONS(5227), - [aux_sym__val_number_decimal_token3] = ACTIONS(5227), - [aux_sym__val_number_token1] = ACTIONS(5227), - [aux_sym__val_number_token2] = ACTIONS(5227), - [aux_sym__val_number_token3] = ACTIONS(5227), - [aux_sym__val_number_token4] = ACTIONS(5227), - [aux_sym__val_number_token5] = ACTIONS(5227), - [aux_sym__val_number_token6] = ACTIONS(5227), - [anon_sym_0b] = ACTIONS(5227), - [anon_sym_0o] = ACTIONS(5227), - [anon_sym_0x] = ACTIONS(5227), - [sym_val_date] = ACTIONS(5227), - [anon_sym_DQUOTE] = ACTIONS(5227), - [sym__str_single_quotes] = ACTIONS(5227), - [sym__str_back_ticks] = ACTIONS(5227), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5227), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5227), - [anon_sym_CARET] = ACTIONS(5227), - [anon_sym_POUND] = ACTIONS(113), - }, - [2903] = { - [sym_comment] = STATE(2903), - [ts_builtin_sym_end] = ACTIONS(5233), - [anon_sym_export] = ACTIONS(5231), - [anon_sym_alias] = ACTIONS(5231), - [anon_sym_let] = ACTIONS(5231), - [anon_sym_let_DASHenv] = ACTIONS(5231), - [anon_sym_mut] = ACTIONS(5231), - [anon_sym_const] = ACTIONS(5231), - [anon_sym_SEMI] = ACTIONS(5231), - [sym_cmd_identifier] = ACTIONS(5231), - [anon_sym_LF] = ACTIONS(5233), - [anon_sym_def] = ACTIONS(5231), - [anon_sym_export_DASHenv] = ACTIONS(5231), - [anon_sym_extern] = ACTIONS(5231), - [anon_sym_module] = ACTIONS(5231), - [anon_sym_use] = ACTIONS(5231), - [anon_sym_LBRACK] = ACTIONS(5231), - [anon_sym_LPAREN] = ACTIONS(5231), - [anon_sym_DOLLAR] = ACTIONS(5231), - [anon_sym_error] = ACTIONS(5231), - [anon_sym_DASH] = ACTIONS(5231), - [anon_sym_break] = ACTIONS(5231), - [anon_sym_continue] = ACTIONS(5231), - [anon_sym_for] = ACTIONS(5231), - [anon_sym_loop] = ACTIONS(5231), - [anon_sym_while] = ACTIONS(5231), - [anon_sym_do] = ACTIONS(5231), - [anon_sym_if] = ACTIONS(5231), - [anon_sym_match] = ACTIONS(5231), - [anon_sym_LBRACE] = ACTIONS(5231), - [anon_sym_DOT_DOT] = ACTIONS(5231), - [anon_sym_try] = ACTIONS(5231), - [anon_sym_return] = ACTIONS(5231), - [anon_sym_source] = ACTIONS(5231), - [anon_sym_source_DASHenv] = ACTIONS(5231), - [anon_sym_register] = ACTIONS(5231), - [anon_sym_hide] = ACTIONS(5231), - [anon_sym_hide_DASHenv] = ACTIONS(5231), - [anon_sym_overlay] = ACTIONS(5231), - [anon_sym_where] = ACTIONS(5231), - [anon_sym_not] = ACTIONS(5231), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5231), - [anon_sym_DOT_DOT_LT] = ACTIONS(5231), - [anon_sym_null] = ACTIONS(5231), - [anon_sym_true] = ACTIONS(5231), - [anon_sym_false] = ACTIONS(5231), - [aux_sym__val_number_decimal_token1] = ACTIONS(5231), - [aux_sym__val_number_decimal_token2] = ACTIONS(5231), - [anon_sym_DOT2] = ACTIONS(5231), - [aux_sym__val_number_decimal_token3] = ACTIONS(5231), - [aux_sym__val_number_token1] = ACTIONS(5231), - [aux_sym__val_number_token2] = ACTIONS(5231), - [aux_sym__val_number_token3] = ACTIONS(5231), - [aux_sym__val_number_token4] = ACTIONS(5231), - [aux_sym__val_number_token5] = ACTIONS(5231), - [aux_sym__val_number_token6] = ACTIONS(5231), - [anon_sym_0b] = ACTIONS(5231), - [anon_sym_0o] = ACTIONS(5231), - [anon_sym_0x] = ACTIONS(5231), - [sym_val_date] = ACTIONS(5231), - [anon_sym_DQUOTE] = ACTIONS(5231), - [sym__str_single_quotes] = ACTIONS(5231), - [sym__str_back_ticks] = ACTIONS(5231), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5231), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5231), - [anon_sym_CARET] = ACTIONS(5231), - [anon_sym_POUND] = ACTIONS(113), - }, - [2904] = { - [sym_comment] = STATE(2904), - [ts_builtin_sym_end] = ACTIONS(5237), - [anon_sym_export] = ACTIONS(5235), - [anon_sym_alias] = ACTIONS(5235), - [anon_sym_let] = ACTIONS(5235), - [anon_sym_let_DASHenv] = ACTIONS(5235), - [anon_sym_mut] = ACTIONS(5235), - [anon_sym_const] = ACTIONS(5235), - [anon_sym_SEMI] = ACTIONS(5235), - [sym_cmd_identifier] = ACTIONS(5235), - [anon_sym_LF] = ACTIONS(5237), - [anon_sym_def] = ACTIONS(5235), - [anon_sym_export_DASHenv] = ACTIONS(5235), - [anon_sym_extern] = ACTIONS(5235), - [anon_sym_module] = ACTIONS(5235), - [anon_sym_use] = ACTIONS(5235), - [anon_sym_LBRACK] = ACTIONS(5235), - [anon_sym_LPAREN] = ACTIONS(5235), - [anon_sym_DOLLAR] = ACTIONS(5235), - [anon_sym_error] = ACTIONS(5235), - [anon_sym_DASH] = ACTIONS(5235), - [anon_sym_break] = ACTIONS(5235), - [anon_sym_continue] = ACTIONS(5235), - [anon_sym_for] = ACTIONS(5235), - [anon_sym_loop] = ACTIONS(5235), - [anon_sym_while] = ACTIONS(5235), - [anon_sym_do] = ACTIONS(5235), - [anon_sym_if] = ACTIONS(5235), - [anon_sym_match] = ACTIONS(5235), - [anon_sym_LBRACE] = ACTIONS(5235), - [anon_sym_DOT_DOT] = ACTIONS(5235), - [anon_sym_try] = ACTIONS(5235), - [anon_sym_return] = ACTIONS(5235), - [anon_sym_source] = ACTIONS(5235), - [anon_sym_source_DASHenv] = ACTIONS(5235), - [anon_sym_register] = ACTIONS(5235), - [anon_sym_hide] = ACTIONS(5235), - [anon_sym_hide_DASHenv] = ACTIONS(5235), - [anon_sym_overlay] = ACTIONS(5235), - [anon_sym_where] = ACTIONS(5235), - [anon_sym_not] = ACTIONS(5235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5235), - [anon_sym_DOT_DOT_LT] = ACTIONS(5235), - [anon_sym_null] = ACTIONS(5235), - [anon_sym_true] = ACTIONS(5235), - [anon_sym_false] = ACTIONS(5235), - [aux_sym__val_number_decimal_token1] = ACTIONS(5235), - [aux_sym__val_number_decimal_token2] = ACTIONS(5235), - [anon_sym_DOT2] = ACTIONS(5235), - [aux_sym__val_number_decimal_token3] = ACTIONS(5235), - [aux_sym__val_number_token1] = ACTIONS(5235), - [aux_sym__val_number_token2] = ACTIONS(5235), - [aux_sym__val_number_token3] = ACTIONS(5235), - [aux_sym__val_number_token4] = ACTIONS(5235), - [aux_sym__val_number_token5] = ACTIONS(5235), - [aux_sym__val_number_token6] = ACTIONS(5235), - [anon_sym_0b] = ACTIONS(5235), - [anon_sym_0o] = ACTIONS(5235), - [anon_sym_0x] = ACTIONS(5235), - [sym_val_date] = ACTIONS(5235), - [anon_sym_DQUOTE] = ACTIONS(5235), - [sym__str_single_quotes] = ACTIONS(5235), - [sym__str_back_ticks] = ACTIONS(5235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5235), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5235), - [anon_sym_CARET] = ACTIONS(5235), - [anon_sym_POUND] = ACTIONS(113), - }, - [2905] = { - [sym_comment] = STATE(2905), - [ts_builtin_sym_end] = ACTIONS(5241), - [anon_sym_export] = ACTIONS(5239), - [anon_sym_alias] = ACTIONS(5239), - [anon_sym_let] = ACTIONS(5239), - [anon_sym_let_DASHenv] = ACTIONS(5239), - [anon_sym_mut] = ACTIONS(5239), - [anon_sym_const] = ACTIONS(5239), - [anon_sym_SEMI] = ACTIONS(5239), - [sym_cmd_identifier] = ACTIONS(5239), - [anon_sym_LF] = ACTIONS(5241), - [anon_sym_def] = ACTIONS(5239), - [anon_sym_export_DASHenv] = ACTIONS(5239), - [anon_sym_extern] = ACTIONS(5239), - [anon_sym_module] = ACTIONS(5239), - [anon_sym_use] = ACTIONS(5239), - [anon_sym_LBRACK] = ACTIONS(5239), - [anon_sym_LPAREN] = ACTIONS(5239), - [anon_sym_DOLLAR] = ACTIONS(5239), - [anon_sym_error] = ACTIONS(5239), - [anon_sym_DASH] = ACTIONS(5239), - [anon_sym_break] = ACTIONS(5239), - [anon_sym_continue] = ACTIONS(5239), - [anon_sym_for] = ACTIONS(5239), - [anon_sym_loop] = ACTIONS(5239), - [anon_sym_while] = ACTIONS(5239), - [anon_sym_do] = ACTIONS(5239), - [anon_sym_if] = ACTIONS(5239), - [anon_sym_match] = ACTIONS(5239), - [anon_sym_LBRACE] = ACTIONS(5239), - [anon_sym_DOT_DOT] = ACTIONS(5239), - [anon_sym_try] = ACTIONS(5239), - [anon_sym_return] = ACTIONS(5239), - [anon_sym_source] = ACTIONS(5239), - [anon_sym_source_DASHenv] = ACTIONS(5239), - [anon_sym_register] = ACTIONS(5239), - [anon_sym_hide] = ACTIONS(5239), - [anon_sym_hide_DASHenv] = ACTIONS(5239), - [anon_sym_overlay] = ACTIONS(5239), - [anon_sym_where] = ACTIONS(5239), - [anon_sym_not] = ACTIONS(5239), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5239), - [anon_sym_DOT_DOT_LT] = ACTIONS(5239), - [anon_sym_null] = ACTIONS(5239), - [anon_sym_true] = ACTIONS(5239), - [anon_sym_false] = ACTIONS(5239), - [aux_sym__val_number_decimal_token1] = ACTIONS(5239), - [aux_sym__val_number_decimal_token2] = ACTIONS(5239), - [anon_sym_DOT2] = ACTIONS(5239), - [aux_sym__val_number_decimal_token3] = ACTIONS(5239), - [aux_sym__val_number_token1] = ACTIONS(5239), - [aux_sym__val_number_token2] = ACTIONS(5239), - [aux_sym__val_number_token3] = ACTIONS(5239), - [aux_sym__val_number_token4] = ACTIONS(5239), - [aux_sym__val_number_token5] = ACTIONS(5239), - [aux_sym__val_number_token6] = ACTIONS(5239), - [anon_sym_0b] = ACTIONS(5239), - [anon_sym_0o] = ACTIONS(5239), - [anon_sym_0x] = ACTIONS(5239), - [sym_val_date] = ACTIONS(5239), - [anon_sym_DQUOTE] = ACTIONS(5239), - [sym__str_single_quotes] = ACTIONS(5239), - [sym__str_back_ticks] = ACTIONS(5239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5239), - [anon_sym_CARET] = ACTIONS(5239), - [anon_sym_POUND] = ACTIONS(113), - }, - [2906] = { - [sym_comment] = STATE(2906), - [ts_builtin_sym_end] = ACTIONS(6456), - [anon_sym_export] = ACTIONS(6454), - [anon_sym_alias] = ACTIONS(6454), - [anon_sym_let] = ACTIONS(6454), - [anon_sym_let_DASHenv] = ACTIONS(6454), - [anon_sym_mut] = ACTIONS(6454), - [anon_sym_const] = ACTIONS(6454), - [anon_sym_SEMI] = ACTIONS(6454), - [sym_cmd_identifier] = ACTIONS(6454), - [anon_sym_LF] = ACTIONS(6456), - [anon_sym_def] = ACTIONS(6454), - [anon_sym_export_DASHenv] = ACTIONS(6454), - [anon_sym_extern] = ACTIONS(6454), - [anon_sym_module] = ACTIONS(6454), - [anon_sym_use] = ACTIONS(6454), - [anon_sym_LBRACK] = ACTIONS(6454), - [anon_sym_LPAREN] = ACTIONS(6454), - [anon_sym_DOLLAR] = ACTIONS(6454), - [anon_sym_error] = ACTIONS(6454), - [anon_sym_DASH] = ACTIONS(6454), - [anon_sym_break] = ACTIONS(6454), - [anon_sym_continue] = ACTIONS(6454), - [anon_sym_for] = ACTIONS(6454), - [anon_sym_loop] = ACTIONS(6454), - [anon_sym_while] = ACTIONS(6454), - [anon_sym_do] = ACTIONS(6454), - [anon_sym_if] = ACTIONS(6454), - [anon_sym_match] = ACTIONS(6454), - [anon_sym_LBRACE] = ACTIONS(6454), - [anon_sym_DOT_DOT] = ACTIONS(6454), - [anon_sym_try] = ACTIONS(6454), - [anon_sym_return] = ACTIONS(6454), - [anon_sym_source] = ACTIONS(6454), - [anon_sym_source_DASHenv] = ACTIONS(6454), - [anon_sym_register] = ACTIONS(6454), - [anon_sym_hide] = ACTIONS(6454), - [anon_sym_hide_DASHenv] = ACTIONS(6454), - [anon_sym_overlay] = ACTIONS(6454), - [anon_sym_where] = ACTIONS(6454), - [anon_sym_not] = ACTIONS(6454), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6454), - [anon_sym_DOT_DOT_LT] = ACTIONS(6454), - [anon_sym_null] = ACTIONS(6454), - [anon_sym_true] = ACTIONS(6454), - [anon_sym_false] = ACTIONS(6454), - [aux_sym__val_number_decimal_token1] = ACTIONS(6454), - [aux_sym__val_number_decimal_token2] = ACTIONS(6454), - [anon_sym_DOT2] = ACTIONS(6454), - [aux_sym__val_number_decimal_token3] = ACTIONS(6454), - [aux_sym__val_number_token1] = ACTIONS(6454), - [aux_sym__val_number_token2] = ACTIONS(6454), - [aux_sym__val_number_token3] = ACTIONS(6454), - [aux_sym__val_number_token4] = ACTIONS(6454), - [aux_sym__val_number_token5] = ACTIONS(6454), - [aux_sym__val_number_token6] = ACTIONS(6454), - [anon_sym_0b] = ACTIONS(6454), - [anon_sym_0o] = ACTIONS(6454), - [anon_sym_0x] = ACTIONS(6454), - [sym_val_date] = ACTIONS(6454), - [anon_sym_DQUOTE] = ACTIONS(6454), - [sym__str_single_quotes] = ACTIONS(6454), - [sym__str_back_ticks] = ACTIONS(6454), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6454), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6454), - [anon_sym_CARET] = ACTIONS(6454), - [anon_sym_POUND] = ACTIONS(113), - }, - [2907] = { - [sym_comment] = STATE(2907), - [ts_builtin_sym_end] = ACTIONS(6865), - [anon_sym_export] = ACTIONS(6458), - [anon_sym_alias] = ACTIONS(6458), - [anon_sym_let] = ACTIONS(6458), - [anon_sym_let_DASHenv] = ACTIONS(6458), - [anon_sym_mut] = ACTIONS(6458), - [anon_sym_const] = ACTIONS(6458), - [anon_sym_SEMI] = ACTIONS(6460), - [sym_cmd_identifier] = ACTIONS(6458), - [anon_sym_LF] = ACTIONS(6463), - [anon_sym_def] = ACTIONS(6458), - [anon_sym_export_DASHenv] = ACTIONS(6458), - [anon_sym_extern] = ACTIONS(6458), - [anon_sym_module] = ACTIONS(6458), - [anon_sym_use] = ACTIONS(6458), - [anon_sym_LBRACK] = ACTIONS(6458), - [anon_sym_LPAREN] = ACTIONS(6458), - [anon_sym_DOLLAR] = ACTIONS(6458), - [anon_sym_error] = ACTIONS(6458), - [anon_sym_DASH] = ACTIONS(6458), - [anon_sym_break] = ACTIONS(6458), - [anon_sym_continue] = ACTIONS(6458), - [anon_sym_for] = ACTIONS(6458), - [anon_sym_loop] = ACTIONS(6458), - [anon_sym_while] = ACTIONS(6458), - [anon_sym_do] = ACTIONS(6458), - [anon_sym_if] = ACTIONS(6458), - [anon_sym_match] = ACTIONS(6458), - [anon_sym_LBRACE] = ACTIONS(6458), - [anon_sym_DOT_DOT] = ACTIONS(6458), - [anon_sym_try] = ACTIONS(6458), - [anon_sym_return] = ACTIONS(6458), - [anon_sym_source] = ACTIONS(6458), - [anon_sym_source_DASHenv] = ACTIONS(6458), - [anon_sym_register] = ACTIONS(6458), - [anon_sym_hide] = ACTIONS(6458), - [anon_sym_hide_DASHenv] = ACTIONS(6458), - [anon_sym_overlay] = ACTIONS(6458), - [anon_sym_where] = ACTIONS(6458), - [anon_sym_not] = ACTIONS(6458), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6458), - [anon_sym_DOT_DOT_LT] = ACTIONS(6458), - [anon_sym_null] = ACTIONS(6458), - [anon_sym_true] = ACTIONS(6458), - [anon_sym_false] = ACTIONS(6458), - [aux_sym__val_number_decimal_token1] = ACTIONS(6458), - [aux_sym__val_number_decimal_token2] = ACTIONS(6458), - [anon_sym_DOT2] = ACTIONS(6458), - [aux_sym__val_number_decimal_token3] = ACTIONS(6458), - [aux_sym__val_number_token1] = ACTIONS(6458), - [aux_sym__val_number_token2] = ACTIONS(6458), - [aux_sym__val_number_token3] = ACTIONS(6458), - [aux_sym__val_number_token4] = ACTIONS(6458), - [aux_sym__val_number_token5] = ACTIONS(6458), - [aux_sym__val_number_token6] = ACTIONS(6458), - [anon_sym_0b] = ACTIONS(6458), - [anon_sym_0o] = ACTIONS(6458), - [anon_sym_0x] = ACTIONS(6458), - [sym_val_date] = ACTIONS(6458), - [anon_sym_DQUOTE] = ACTIONS(6458), - [sym__str_single_quotes] = ACTIONS(6458), - [sym__str_back_ticks] = ACTIONS(6458), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6458), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6458), - [anon_sym_CARET] = ACTIONS(6458), - [anon_sym_POUND] = ACTIONS(113), - }, - [2908] = { - [sym_comment] = STATE(2908), - [ts_builtin_sym_end] = ACTIONS(4002), - [anon_sym_export] = ACTIONS(4000), - [anon_sym_alias] = ACTIONS(4000), - [anon_sym_let] = ACTIONS(4000), - [anon_sym_let_DASHenv] = ACTIONS(4000), - [anon_sym_mut] = ACTIONS(4000), - [anon_sym_const] = ACTIONS(4000), - [anon_sym_SEMI] = ACTIONS(4000), - [sym_cmd_identifier] = ACTIONS(4000), - [anon_sym_LF] = ACTIONS(4002), - [anon_sym_def] = ACTIONS(4000), - [anon_sym_export_DASHenv] = ACTIONS(4000), - [anon_sym_extern] = ACTIONS(4000), - [anon_sym_module] = ACTIONS(4000), - [anon_sym_use] = ACTIONS(4000), - [anon_sym_LBRACK] = ACTIONS(4000), - [anon_sym_LPAREN] = ACTIONS(4000), - [anon_sym_DOLLAR] = ACTIONS(4000), - [anon_sym_error] = ACTIONS(4000), - [anon_sym_DASH] = ACTIONS(4000), - [anon_sym_break] = ACTIONS(4000), - [anon_sym_continue] = ACTIONS(4000), - [anon_sym_for] = ACTIONS(4000), - [anon_sym_loop] = ACTIONS(4000), - [anon_sym_while] = ACTIONS(4000), - [anon_sym_do] = ACTIONS(4000), - [anon_sym_if] = ACTIONS(4000), - [anon_sym_match] = ACTIONS(4000), - [anon_sym_LBRACE] = ACTIONS(4000), - [anon_sym_DOT_DOT] = ACTIONS(4000), - [anon_sym_try] = ACTIONS(4000), - [anon_sym_return] = ACTIONS(4000), - [anon_sym_source] = ACTIONS(4000), - [anon_sym_source_DASHenv] = ACTIONS(4000), - [anon_sym_register] = ACTIONS(4000), - [anon_sym_hide] = ACTIONS(4000), - [anon_sym_hide_DASHenv] = ACTIONS(4000), - [anon_sym_overlay] = ACTIONS(4000), - [anon_sym_where] = ACTIONS(4000), - [anon_sym_not] = ACTIONS(4000), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4000), - [anon_sym_DOT_DOT_LT] = ACTIONS(4000), - [anon_sym_null] = ACTIONS(4000), - [anon_sym_true] = ACTIONS(4000), - [anon_sym_false] = ACTIONS(4000), - [aux_sym__val_number_decimal_token1] = ACTIONS(4000), - [aux_sym__val_number_decimal_token2] = ACTIONS(4000), - [anon_sym_DOT2] = ACTIONS(4000), - [aux_sym__val_number_decimal_token3] = ACTIONS(4000), - [aux_sym__val_number_token1] = ACTIONS(4000), - [aux_sym__val_number_token2] = ACTIONS(4000), - [aux_sym__val_number_token3] = ACTIONS(4000), - [aux_sym__val_number_token4] = ACTIONS(4000), - [aux_sym__val_number_token5] = ACTIONS(4000), - [aux_sym__val_number_token6] = ACTIONS(4000), - [anon_sym_0b] = ACTIONS(4000), - [anon_sym_0o] = ACTIONS(4000), - [anon_sym_0x] = ACTIONS(4000), - [sym_val_date] = ACTIONS(4000), - [anon_sym_DQUOTE] = ACTIONS(4000), - [sym__str_single_quotes] = ACTIONS(4000), - [sym__str_back_ticks] = ACTIONS(4000), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4000), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4000), - [anon_sym_CARET] = ACTIONS(4000), - [anon_sym_POUND] = ACTIONS(113), - }, - [2909] = { - [sym_comment] = STATE(2909), - [ts_builtin_sym_end] = ACTIONS(6724), - [anon_sym_export] = ACTIONS(6722), - [anon_sym_alias] = ACTIONS(6722), - [anon_sym_let] = ACTIONS(6722), - [anon_sym_let_DASHenv] = ACTIONS(6722), - [anon_sym_mut] = ACTIONS(6722), - [anon_sym_const] = ACTIONS(6722), - [anon_sym_SEMI] = ACTIONS(6722), - [sym_cmd_identifier] = ACTIONS(6722), - [anon_sym_LF] = ACTIONS(6724), - [anon_sym_def] = ACTIONS(6722), - [anon_sym_export_DASHenv] = ACTIONS(6722), - [anon_sym_extern] = ACTIONS(6722), - [anon_sym_module] = ACTIONS(6722), - [anon_sym_use] = ACTIONS(6722), - [anon_sym_LBRACK] = ACTIONS(6722), - [anon_sym_LPAREN] = ACTIONS(6722), - [anon_sym_DOLLAR] = ACTIONS(6722), - [anon_sym_error] = ACTIONS(6722), - [anon_sym_DASH] = ACTIONS(6722), - [anon_sym_break] = ACTIONS(6722), - [anon_sym_continue] = ACTIONS(6722), - [anon_sym_for] = ACTIONS(6722), - [anon_sym_loop] = ACTIONS(6722), - [anon_sym_while] = ACTIONS(6722), - [anon_sym_do] = ACTIONS(6722), - [anon_sym_if] = ACTIONS(6722), - [anon_sym_match] = ACTIONS(6722), - [anon_sym_LBRACE] = ACTIONS(6722), - [anon_sym_DOT_DOT] = ACTIONS(6722), - [anon_sym_try] = ACTIONS(6722), - [anon_sym_return] = ACTIONS(6722), - [anon_sym_source] = ACTIONS(6722), - [anon_sym_source_DASHenv] = ACTIONS(6722), - [anon_sym_register] = ACTIONS(6722), - [anon_sym_hide] = ACTIONS(6722), - [anon_sym_hide_DASHenv] = ACTIONS(6722), - [anon_sym_overlay] = ACTIONS(6722), - [anon_sym_where] = ACTIONS(6722), - [anon_sym_not] = ACTIONS(6722), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6722), - [anon_sym_DOT_DOT_LT] = ACTIONS(6722), - [anon_sym_null] = ACTIONS(6722), - [anon_sym_true] = ACTIONS(6722), - [anon_sym_false] = ACTIONS(6722), - [aux_sym__val_number_decimal_token1] = ACTIONS(6722), - [aux_sym__val_number_decimal_token2] = ACTIONS(6722), - [anon_sym_DOT2] = ACTIONS(6722), - [aux_sym__val_number_decimal_token3] = ACTIONS(6722), - [aux_sym__val_number_token1] = ACTIONS(6722), - [aux_sym__val_number_token2] = ACTIONS(6722), - [aux_sym__val_number_token3] = ACTIONS(6722), - [aux_sym__val_number_token4] = ACTIONS(6722), - [aux_sym__val_number_token5] = ACTIONS(6722), - [aux_sym__val_number_token6] = ACTIONS(6722), - [anon_sym_0b] = ACTIONS(6722), - [anon_sym_0o] = ACTIONS(6722), - [anon_sym_0x] = ACTIONS(6722), - [sym_val_date] = ACTIONS(6722), - [anon_sym_DQUOTE] = ACTIONS(6722), - [sym__str_single_quotes] = ACTIONS(6722), - [sym__str_back_ticks] = ACTIONS(6722), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6722), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6722), - [anon_sym_CARET] = ACTIONS(6722), - [anon_sym_POUND] = ACTIONS(113), - }, - [2910] = { - [sym_comment] = STATE(2910), - [ts_builtin_sym_end] = ACTIONS(3962), - [anon_sym_export] = ACTIONS(3960), - [anon_sym_alias] = ACTIONS(3960), - [anon_sym_let] = ACTIONS(3960), - [anon_sym_let_DASHenv] = ACTIONS(3960), - [anon_sym_mut] = ACTIONS(3960), - [anon_sym_const] = ACTIONS(3960), - [anon_sym_SEMI] = ACTIONS(3960), - [sym_cmd_identifier] = ACTIONS(3960), - [anon_sym_LF] = ACTIONS(3962), - [anon_sym_def] = ACTIONS(3960), - [anon_sym_export_DASHenv] = ACTIONS(3960), - [anon_sym_extern] = ACTIONS(3960), - [anon_sym_module] = ACTIONS(3960), - [anon_sym_use] = ACTIONS(3960), - [anon_sym_LBRACK] = ACTIONS(3960), - [anon_sym_LPAREN] = ACTIONS(3960), - [anon_sym_DOLLAR] = ACTIONS(3960), - [anon_sym_error] = ACTIONS(3960), - [anon_sym_DASH] = ACTIONS(3960), - [anon_sym_break] = ACTIONS(3960), - [anon_sym_continue] = ACTIONS(3960), - [anon_sym_for] = ACTIONS(3960), - [anon_sym_loop] = ACTIONS(3960), - [anon_sym_while] = ACTIONS(3960), - [anon_sym_do] = ACTIONS(3960), - [anon_sym_if] = ACTIONS(3960), - [anon_sym_match] = ACTIONS(3960), - [anon_sym_LBRACE] = ACTIONS(3960), - [anon_sym_DOT_DOT] = ACTIONS(3960), - [anon_sym_try] = ACTIONS(3960), - [anon_sym_return] = ACTIONS(3960), - [anon_sym_source] = ACTIONS(3960), - [anon_sym_source_DASHenv] = ACTIONS(3960), - [anon_sym_register] = ACTIONS(3960), - [anon_sym_hide] = ACTIONS(3960), - [anon_sym_hide_DASHenv] = ACTIONS(3960), - [anon_sym_overlay] = ACTIONS(3960), - [anon_sym_where] = ACTIONS(3960), - [anon_sym_not] = ACTIONS(3960), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3960), - [anon_sym_DOT_DOT_LT] = ACTIONS(3960), - [anon_sym_null] = ACTIONS(3960), - [anon_sym_true] = ACTIONS(3960), - [anon_sym_false] = ACTIONS(3960), - [aux_sym__val_number_decimal_token1] = ACTIONS(3960), - [aux_sym__val_number_decimal_token2] = ACTIONS(3960), - [anon_sym_DOT2] = ACTIONS(3960), - [aux_sym__val_number_decimal_token3] = ACTIONS(3960), - [aux_sym__val_number_token1] = ACTIONS(3960), - [aux_sym__val_number_token2] = ACTIONS(3960), - [aux_sym__val_number_token3] = ACTIONS(3960), - [aux_sym__val_number_token4] = ACTIONS(3960), - [aux_sym__val_number_token5] = ACTIONS(3960), - [aux_sym__val_number_token6] = ACTIONS(3960), - [anon_sym_0b] = ACTIONS(3960), - [anon_sym_0o] = ACTIONS(3960), - [anon_sym_0x] = ACTIONS(3960), - [sym_val_date] = ACTIONS(3960), - [anon_sym_DQUOTE] = ACTIONS(3960), - [sym__str_single_quotes] = ACTIONS(3960), - [sym__str_back_ticks] = ACTIONS(3960), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3960), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3960), - [anon_sym_CARET] = ACTIONS(3960), - [anon_sym_POUND] = ACTIONS(113), - }, - [2911] = { - [sym_comment] = STATE(2911), - [ts_builtin_sym_end] = ACTIONS(6530), - [anon_sym_export] = ACTIONS(6528), - [anon_sym_alias] = ACTIONS(6528), - [anon_sym_let] = ACTIONS(6528), - [anon_sym_let_DASHenv] = ACTIONS(6528), - [anon_sym_mut] = ACTIONS(6528), - [anon_sym_const] = ACTIONS(6528), - [anon_sym_SEMI] = ACTIONS(6528), - [sym_cmd_identifier] = ACTIONS(6528), - [anon_sym_LF] = ACTIONS(6530), - [anon_sym_def] = ACTIONS(6528), - [anon_sym_export_DASHenv] = ACTIONS(6528), - [anon_sym_extern] = ACTIONS(6528), - [anon_sym_module] = ACTIONS(6528), - [anon_sym_use] = ACTIONS(6528), - [anon_sym_LBRACK] = ACTIONS(6528), - [anon_sym_LPAREN] = ACTIONS(6528), - [anon_sym_DOLLAR] = ACTIONS(6528), - [anon_sym_error] = ACTIONS(6528), - [anon_sym_DASH] = ACTIONS(6528), - [anon_sym_break] = ACTIONS(6528), - [anon_sym_continue] = ACTIONS(6528), - [anon_sym_for] = ACTIONS(6528), - [anon_sym_loop] = ACTIONS(6528), - [anon_sym_while] = ACTIONS(6528), - [anon_sym_do] = ACTIONS(6528), - [anon_sym_if] = ACTIONS(6528), - [anon_sym_match] = ACTIONS(6528), - [anon_sym_LBRACE] = ACTIONS(6528), - [anon_sym_DOT_DOT] = ACTIONS(6528), - [anon_sym_try] = ACTIONS(6528), - [anon_sym_return] = ACTIONS(6528), - [anon_sym_source] = ACTIONS(6528), - [anon_sym_source_DASHenv] = ACTIONS(6528), - [anon_sym_register] = ACTIONS(6528), - [anon_sym_hide] = ACTIONS(6528), - [anon_sym_hide_DASHenv] = ACTIONS(6528), - [anon_sym_overlay] = ACTIONS(6528), - [anon_sym_where] = ACTIONS(6528), - [anon_sym_not] = ACTIONS(6528), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6528), - [anon_sym_DOT_DOT_LT] = ACTIONS(6528), - [anon_sym_null] = ACTIONS(6528), - [anon_sym_true] = ACTIONS(6528), - [anon_sym_false] = ACTIONS(6528), - [aux_sym__val_number_decimal_token1] = ACTIONS(6528), - [aux_sym__val_number_decimal_token2] = ACTIONS(6528), - [anon_sym_DOT2] = ACTIONS(6528), - [aux_sym__val_number_decimal_token3] = ACTIONS(6528), - [aux_sym__val_number_token1] = ACTIONS(6528), - [aux_sym__val_number_token2] = ACTIONS(6528), - [aux_sym__val_number_token3] = ACTIONS(6528), - [aux_sym__val_number_token4] = ACTIONS(6528), - [aux_sym__val_number_token5] = ACTIONS(6528), - [aux_sym__val_number_token6] = ACTIONS(6528), - [anon_sym_0b] = ACTIONS(6528), - [anon_sym_0o] = ACTIONS(6528), - [anon_sym_0x] = ACTIONS(6528), - [sym_val_date] = ACTIONS(6528), - [anon_sym_DQUOTE] = ACTIONS(6528), - [sym__str_single_quotes] = ACTIONS(6528), - [sym__str_back_ticks] = ACTIONS(6528), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6528), - [anon_sym_CARET] = ACTIONS(6528), - [anon_sym_POUND] = ACTIONS(113), - }, - [2912] = { - [sym_comment] = STATE(2912), - [anon_sym_SEMI] = ACTIONS(1259), - [anon_sym_LF] = ACTIONS(1261), - [anon_sym_LBRACK] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_RPAREN] = ACTIONS(1259), - [anon_sym_PIPE] = ACTIONS(1259), - [anon_sym_DOLLAR] = ACTIONS(1259), - [anon_sym_GT] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_in] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1259), - [anon_sym_RBRACE] = ACTIONS(1259), - [anon_sym_DOT_DOT] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1259), - [anon_sym_STAR_STAR] = ACTIONS(1259), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_SLASH] = ACTIONS(1259), - [anon_sym_mod] = ACTIONS(1259), - [anon_sym_SLASH_SLASH] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_bit_DASHshl] = ACTIONS(1259), - [anon_sym_bit_DASHshr] = ACTIONS(1259), - [anon_sym_EQ_EQ] = ACTIONS(1259), - [anon_sym_BANG_EQ] = ACTIONS(1259), - [anon_sym_LT2] = ACTIONS(1259), - [anon_sym_LT_EQ] = ACTIONS(1259), - [anon_sym_GT_EQ] = ACTIONS(1259), - [anon_sym_not_DASHin] = ACTIONS(1259), - [anon_sym_starts_DASHwith] = ACTIONS(1259), - [anon_sym_ends_DASHwith] = ACTIONS(1259), - [anon_sym_EQ_TILDE] = ACTIONS(1259), - [anon_sym_BANG_TILDE] = ACTIONS(1259), - [anon_sym_bit_DASHand] = ACTIONS(1259), - [anon_sym_bit_DASHxor] = ACTIONS(1259), - [anon_sym_bit_DASHor] = ACTIONS(1259), - [anon_sym_and] = ACTIONS(1259), - [anon_sym_xor] = ACTIONS(1259), - [anon_sym_or] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1259), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1259), - [anon_sym_DOT_DOT_LT] = ACTIONS(1259), - [anon_sym_null] = ACTIONS(1259), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [aux_sym__val_number_decimal_token1] = ACTIONS(1259), - [aux_sym__val_number_decimal_token2] = ACTIONS(1259), - [anon_sym_DOT2] = ACTIONS(1259), - [aux_sym__val_number_decimal_token3] = ACTIONS(1259), - [aux_sym__val_number_token1] = ACTIONS(1259), - [aux_sym__val_number_token2] = ACTIONS(1259), - [aux_sym__val_number_token3] = ACTIONS(1259), - [aux_sym__val_number_token4] = ACTIONS(1259), - [aux_sym__val_number_token5] = ACTIONS(1259), - [aux_sym__val_number_token6] = ACTIONS(1259), - [anon_sym_0b] = ACTIONS(1259), - [anon_sym_0o] = ACTIONS(1259), - [anon_sym_0x] = ACTIONS(1259), - [anon_sym_LBRACK2] = ACTIONS(6867), - [sym_val_date] = ACTIONS(1259), - [anon_sym_DQUOTE] = ACTIONS(1259), - [sym__str_single_quotes] = ACTIONS(1259), - [sym__str_back_ticks] = ACTIONS(1259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1259), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1259), - [anon_sym_POUND] = ACTIONS(113), - }, - [2913] = { - [sym_comment] = STATE(2913), - [ts_builtin_sym_end] = ACTIONS(6474), - [anon_sym_export] = ACTIONS(6472), - [anon_sym_alias] = ACTIONS(6472), - [anon_sym_let] = ACTIONS(6472), - [anon_sym_let_DASHenv] = ACTIONS(6472), - [anon_sym_mut] = ACTIONS(6472), - [anon_sym_const] = ACTIONS(6472), - [anon_sym_SEMI] = ACTIONS(6472), - [sym_cmd_identifier] = ACTIONS(6472), - [anon_sym_LF] = ACTIONS(6474), - [anon_sym_def] = ACTIONS(6472), - [anon_sym_export_DASHenv] = ACTIONS(6472), - [anon_sym_extern] = ACTIONS(6472), - [anon_sym_module] = ACTIONS(6472), - [anon_sym_use] = ACTIONS(6472), - [anon_sym_LBRACK] = ACTIONS(6472), - [anon_sym_LPAREN] = ACTIONS(6472), - [anon_sym_DOLLAR] = ACTIONS(6472), - [anon_sym_error] = ACTIONS(6472), - [anon_sym_DASH] = ACTIONS(6472), - [anon_sym_break] = ACTIONS(6472), - [anon_sym_continue] = ACTIONS(6472), - [anon_sym_for] = ACTIONS(6472), - [anon_sym_loop] = ACTIONS(6472), - [anon_sym_while] = ACTIONS(6472), - [anon_sym_do] = ACTIONS(6472), - [anon_sym_if] = ACTIONS(6472), - [anon_sym_match] = ACTIONS(6472), - [anon_sym_LBRACE] = ACTIONS(6472), - [anon_sym_DOT_DOT] = ACTIONS(6472), - [anon_sym_try] = ACTIONS(6472), - [anon_sym_return] = ACTIONS(6472), - [anon_sym_source] = ACTIONS(6472), - [anon_sym_source_DASHenv] = ACTIONS(6472), - [anon_sym_register] = ACTIONS(6472), - [anon_sym_hide] = ACTIONS(6472), - [anon_sym_hide_DASHenv] = ACTIONS(6472), - [anon_sym_overlay] = ACTIONS(6472), - [anon_sym_where] = ACTIONS(6472), - [anon_sym_not] = ACTIONS(6472), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6472), - [anon_sym_DOT_DOT_LT] = ACTIONS(6472), - [anon_sym_null] = ACTIONS(6472), - [anon_sym_true] = ACTIONS(6472), - [anon_sym_false] = ACTIONS(6472), - [aux_sym__val_number_decimal_token1] = ACTIONS(6472), - [aux_sym__val_number_decimal_token2] = ACTIONS(6472), - [anon_sym_DOT2] = ACTIONS(6472), - [aux_sym__val_number_decimal_token3] = ACTIONS(6472), - [aux_sym__val_number_token1] = ACTIONS(6472), - [aux_sym__val_number_token2] = ACTIONS(6472), - [aux_sym__val_number_token3] = ACTIONS(6472), - [aux_sym__val_number_token4] = ACTIONS(6472), - [aux_sym__val_number_token5] = ACTIONS(6472), - [aux_sym__val_number_token6] = ACTIONS(6472), - [anon_sym_0b] = ACTIONS(6472), - [anon_sym_0o] = ACTIONS(6472), - [anon_sym_0x] = ACTIONS(6472), - [sym_val_date] = ACTIONS(6472), - [anon_sym_DQUOTE] = ACTIONS(6472), - [sym__str_single_quotes] = ACTIONS(6472), - [sym__str_back_ticks] = ACTIONS(6472), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6472), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6472), - [anon_sym_CARET] = ACTIONS(6472), - [anon_sym_POUND] = ACTIONS(113), - }, - [2914] = { - [sym_comment] = STATE(2914), - [ts_builtin_sym_end] = ACTIONS(6478), - [anon_sym_export] = ACTIONS(6476), - [anon_sym_alias] = ACTIONS(6476), - [anon_sym_let] = ACTIONS(6476), - [anon_sym_let_DASHenv] = ACTIONS(6476), - [anon_sym_mut] = ACTIONS(6476), - [anon_sym_const] = ACTIONS(6476), - [anon_sym_SEMI] = ACTIONS(6476), - [sym_cmd_identifier] = ACTIONS(6476), - [anon_sym_LF] = ACTIONS(6478), - [anon_sym_def] = ACTIONS(6476), - [anon_sym_export_DASHenv] = ACTIONS(6476), - [anon_sym_extern] = ACTIONS(6476), - [anon_sym_module] = ACTIONS(6476), - [anon_sym_use] = ACTIONS(6476), - [anon_sym_LBRACK] = ACTIONS(6476), - [anon_sym_LPAREN] = ACTIONS(6476), - [anon_sym_DOLLAR] = ACTIONS(6476), - [anon_sym_error] = ACTIONS(6476), - [anon_sym_DASH] = ACTIONS(6476), - [anon_sym_break] = ACTIONS(6476), - [anon_sym_continue] = ACTIONS(6476), - [anon_sym_for] = ACTIONS(6476), - [anon_sym_loop] = ACTIONS(6476), - [anon_sym_while] = ACTIONS(6476), - [anon_sym_do] = ACTIONS(6476), - [anon_sym_if] = ACTIONS(6476), - [anon_sym_match] = ACTIONS(6476), - [anon_sym_LBRACE] = ACTIONS(6476), - [anon_sym_DOT_DOT] = ACTIONS(6476), - [anon_sym_try] = ACTIONS(6476), - [anon_sym_return] = ACTIONS(6476), - [anon_sym_source] = ACTIONS(6476), - [anon_sym_source_DASHenv] = ACTIONS(6476), - [anon_sym_register] = ACTIONS(6476), - [anon_sym_hide] = ACTIONS(6476), - [anon_sym_hide_DASHenv] = ACTIONS(6476), - [anon_sym_overlay] = ACTIONS(6476), - [anon_sym_where] = ACTIONS(6476), - [anon_sym_not] = ACTIONS(6476), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6476), - [anon_sym_DOT_DOT_LT] = ACTIONS(6476), - [anon_sym_null] = ACTIONS(6476), - [anon_sym_true] = ACTIONS(6476), - [anon_sym_false] = ACTIONS(6476), - [aux_sym__val_number_decimal_token1] = ACTIONS(6476), - [aux_sym__val_number_decimal_token2] = ACTIONS(6476), - [anon_sym_DOT2] = ACTIONS(6476), - [aux_sym__val_number_decimal_token3] = ACTIONS(6476), - [aux_sym__val_number_token1] = ACTIONS(6476), - [aux_sym__val_number_token2] = ACTIONS(6476), - [aux_sym__val_number_token3] = ACTIONS(6476), - [aux_sym__val_number_token4] = ACTIONS(6476), - [aux_sym__val_number_token5] = ACTIONS(6476), - [aux_sym__val_number_token6] = ACTIONS(6476), - [anon_sym_0b] = ACTIONS(6476), - [anon_sym_0o] = ACTIONS(6476), - [anon_sym_0x] = ACTIONS(6476), - [sym_val_date] = ACTIONS(6476), - [anon_sym_DQUOTE] = ACTIONS(6476), - [sym__str_single_quotes] = ACTIONS(6476), - [sym__str_back_ticks] = ACTIONS(6476), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6476), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6476), - [anon_sym_CARET] = ACTIONS(6476), - [anon_sym_POUND] = ACTIONS(113), - }, - [2915] = { - [sym_comment] = STATE(2915), - [ts_builtin_sym_end] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(1070), - [anon_sym_LF] = ACTIONS(1072), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_in] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(6869), - [anon_sym_STAR_STAR] = ACTIONS(1070), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_mod] = ACTIONS(1070), - [anon_sym_SLASH_SLASH] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_bit_DASHshl] = ACTIONS(1070), - [anon_sym_bit_DASHshr] = ACTIONS(1070), - [anon_sym_EQ_EQ] = ACTIONS(1070), - [anon_sym_BANG_EQ] = ACTIONS(1070), - [anon_sym_LT2] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1070), - [anon_sym_GT_EQ] = ACTIONS(1070), - [anon_sym_not_DASHin] = ACTIONS(1070), - [anon_sym_starts_DASHwith] = ACTIONS(1070), - [anon_sym_ends_DASHwith] = ACTIONS(1070), - [anon_sym_EQ_TILDE] = ACTIONS(1070), - [anon_sym_BANG_TILDE] = ACTIONS(1070), - [anon_sym_bit_DASHand] = ACTIONS(1070), - [anon_sym_bit_DASHxor] = ACTIONS(1070), - [anon_sym_bit_DASHor] = ACTIONS(1070), - [anon_sym_and] = ACTIONS(1070), - [anon_sym_xor] = ACTIONS(1070), - [anon_sym_or] = ACTIONS(1070), - [anon_sym_not] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_null] = ACTIONS(1070), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1070), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), - [anon_sym_POUND] = ACTIONS(113), - }, - [2916] = { - [sym_comment] = STATE(2916), - [ts_builtin_sym_end] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(1070), - [anon_sym_LF] = ACTIONS(1072), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_in] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(6869), - [anon_sym_STAR_STAR] = ACTIONS(1070), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_mod] = ACTIONS(1070), - [anon_sym_SLASH_SLASH] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_bit_DASHshl] = ACTIONS(1070), - [anon_sym_bit_DASHshr] = ACTIONS(1070), - [anon_sym_EQ_EQ] = ACTIONS(1070), - [anon_sym_BANG_EQ] = ACTIONS(1070), - [anon_sym_LT2] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1070), - [anon_sym_GT_EQ] = ACTIONS(1070), - [anon_sym_not_DASHin] = ACTIONS(1070), - [anon_sym_starts_DASHwith] = ACTIONS(1070), - [anon_sym_ends_DASHwith] = ACTIONS(1070), - [anon_sym_EQ_TILDE] = ACTIONS(1070), - [anon_sym_BANG_TILDE] = ACTIONS(1070), - [anon_sym_bit_DASHand] = ACTIONS(1070), - [anon_sym_bit_DASHxor] = ACTIONS(1070), - [anon_sym_bit_DASHor] = ACTIONS(1070), - [anon_sym_and] = ACTIONS(1070), - [anon_sym_xor] = ACTIONS(1070), - [anon_sym_or] = ACTIONS(1070), - [anon_sym_not] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_null] = ACTIONS(1070), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [aux_sym__val_number_token4] = ACTIONS(1070), - [aux_sym__val_number_token5] = ACTIONS(1070), - [aux_sym__val_number_token6] = ACTIONS(1070), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), - [anon_sym_POUND] = ACTIONS(113), - }, - [2917] = { - [sym_comment] = STATE(2917), - [ts_builtin_sym_end] = ACTIONS(6486), - [anon_sym_export] = ACTIONS(6484), - [anon_sym_alias] = ACTIONS(6484), - [anon_sym_let] = ACTIONS(6484), - [anon_sym_let_DASHenv] = ACTIONS(6484), - [anon_sym_mut] = ACTIONS(6484), - [anon_sym_const] = ACTIONS(6484), - [anon_sym_SEMI] = ACTIONS(6484), - [sym_cmd_identifier] = ACTIONS(6484), - [anon_sym_LF] = ACTIONS(6486), - [anon_sym_def] = ACTIONS(6484), - [anon_sym_export_DASHenv] = ACTIONS(6484), - [anon_sym_extern] = ACTIONS(6484), - [anon_sym_module] = ACTIONS(6484), - [anon_sym_use] = ACTIONS(6484), - [anon_sym_LBRACK] = ACTIONS(6484), - [anon_sym_LPAREN] = ACTIONS(6484), - [anon_sym_DOLLAR] = ACTIONS(6484), - [anon_sym_error] = ACTIONS(6484), - [anon_sym_DASH] = ACTIONS(6484), - [anon_sym_break] = ACTIONS(6484), - [anon_sym_continue] = ACTIONS(6484), - [anon_sym_for] = ACTIONS(6484), - [anon_sym_loop] = ACTIONS(6484), - [anon_sym_while] = ACTIONS(6484), - [anon_sym_do] = ACTIONS(6484), - [anon_sym_if] = ACTIONS(6484), - [anon_sym_match] = ACTIONS(6484), - [anon_sym_LBRACE] = ACTIONS(6484), - [anon_sym_DOT_DOT] = ACTIONS(6484), - [anon_sym_try] = ACTIONS(6484), - [anon_sym_return] = ACTIONS(6484), - [anon_sym_source] = ACTIONS(6484), - [anon_sym_source_DASHenv] = ACTIONS(6484), - [anon_sym_register] = ACTIONS(6484), - [anon_sym_hide] = ACTIONS(6484), - [anon_sym_hide_DASHenv] = ACTIONS(6484), - [anon_sym_overlay] = ACTIONS(6484), - [anon_sym_where] = ACTIONS(6484), - [anon_sym_not] = ACTIONS(6484), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6484), - [anon_sym_DOT_DOT_LT] = ACTIONS(6484), - [anon_sym_null] = ACTIONS(6484), - [anon_sym_true] = ACTIONS(6484), - [anon_sym_false] = ACTIONS(6484), - [aux_sym__val_number_decimal_token1] = ACTIONS(6484), - [aux_sym__val_number_decimal_token2] = ACTIONS(6484), - [anon_sym_DOT2] = ACTIONS(6484), - [aux_sym__val_number_decimal_token3] = ACTIONS(6484), - [aux_sym__val_number_token1] = ACTIONS(6484), - [aux_sym__val_number_token2] = ACTIONS(6484), - [aux_sym__val_number_token3] = ACTIONS(6484), - [aux_sym__val_number_token4] = ACTIONS(6484), - [aux_sym__val_number_token5] = ACTIONS(6484), - [aux_sym__val_number_token6] = ACTIONS(6484), - [anon_sym_0b] = ACTIONS(6484), - [anon_sym_0o] = ACTIONS(6484), - [anon_sym_0x] = ACTIONS(6484), - [sym_val_date] = ACTIONS(6484), - [anon_sym_DQUOTE] = ACTIONS(6484), - [sym__str_single_quotes] = ACTIONS(6484), - [sym__str_back_ticks] = ACTIONS(6484), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6484), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6484), - [anon_sym_CARET] = ACTIONS(6484), - [anon_sym_POUND] = ACTIONS(113), - }, - [2918] = { - [sym_comment] = STATE(2918), - [ts_builtin_sym_end] = ACTIONS(6486), - [anon_sym_export] = ACTIONS(6484), - [anon_sym_alias] = ACTIONS(6484), - [anon_sym_let] = ACTIONS(6484), - [anon_sym_let_DASHenv] = ACTIONS(6484), - [anon_sym_mut] = ACTIONS(6484), - [anon_sym_const] = ACTIONS(6484), - [anon_sym_SEMI] = ACTIONS(6484), - [sym_cmd_identifier] = ACTIONS(6484), - [anon_sym_LF] = ACTIONS(6486), - [anon_sym_def] = ACTIONS(6484), - [anon_sym_export_DASHenv] = ACTIONS(6484), - [anon_sym_extern] = ACTIONS(6484), - [anon_sym_module] = ACTIONS(6484), - [anon_sym_use] = ACTIONS(6484), - [anon_sym_LBRACK] = ACTIONS(6484), - [anon_sym_LPAREN] = ACTIONS(6484), - [anon_sym_DOLLAR] = ACTIONS(6484), - [anon_sym_error] = ACTIONS(6484), - [anon_sym_DASH] = ACTIONS(6484), - [anon_sym_break] = ACTIONS(6484), - [anon_sym_continue] = ACTIONS(6484), - [anon_sym_for] = ACTIONS(6484), - [anon_sym_loop] = ACTIONS(6484), - [anon_sym_while] = ACTIONS(6484), - [anon_sym_do] = ACTIONS(6484), - [anon_sym_if] = ACTIONS(6484), - [anon_sym_match] = ACTIONS(6484), - [anon_sym_LBRACE] = ACTIONS(6484), - [anon_sym_DOT_DOT] = ACTIONS(6484), - [anon_sym_try] = ACTIONS(6484), - [anon_sym_return] = ACTIONS(6484), - [anon_sym_source] = ACTIONS(6484), - [anon_sym_source_DASHenv] = ACTIONS(6484), - [anon_sym_register] = ACTIONS(6484), - [anon_sym_hide] = ACTIONS(6484), - [anon_sym_hide_DASHenv] = ACTIONS(6484), - [anon_sym_overlay] = ACTIONS(6484), - [anon_sym_where] = ACTIONS(6484), - [anon_sym_not] = ACTIONS(6484), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6484), - [anon_sym_DOT_DOT_LT] = ACTIONS(6484), - [anon_sym_null] = ACTIONS(6484), - [anon_sym_true] = ACTIONS(6484), - [anon_sym_false] = ACTIONS(6484), - [aux_sym__val_number_decimal_token1] = ACTIONS(6484), - [aux_sym__val_number_decimal_token2] = ACTIONS(6484), - [anon_sym_DOT2] = ACTIONS(6484), - [aux_sym__val_number_decimal_token3] = ACTIONS(6484), - [aux_sym__val_number_token1] = ACTIONS(6484), - [aux_sym__val_number_token2] = ACTIONS(6484), - [aux_sym__val_number_token3] = ACTIONS(6484), - [aux_sym__val_number_token4] = ACTIONS(6484), - [aux_sym__val_number_token5] = ACTIONS(6484), - [aux_sym__val_number_token6] = ACTIONS(6484), - [anon_sym_0b] = ACTIONS(6484), - [anon_sym_0o] = ACTIONS(6484), - [anon_sym_0x] = ACTIONS(6484), - [sym_val_date] = ACTIONS(6484), - [anon_sym_DQUOTE] = ACTIONS(6484), - [sym__str_single_quotes] = ACTIONS(6484), - [sym__str_back_ticks] = ACTIONS(6484), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6484), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6484), - [anon_sym_CARET] = ACTIONS(6484), - [anon_sym_POUND] = ACTIONS(113), - }, - [2919] = { - [sym_comment] = STATE(2919), - [ts_builtin_sym_end] = ACTIONS(6647), - [anon_sym_export] = ACTIONS(6645), - [anon_sym_alias] = ACTIONS(6645), - [anon_sym_let] = ACTIONS(6645), - [anon_sym_let_DASHenv] = ACTIONS(6645), - [anon_sym_mut] = ACTIONS(6645), - [anon_sym_const] = ACTIONS(6645), - [anon_sym_SEMI] = ACTIONS(6645), - [sym_cmd_identifier] = ACTIONS(6645), - [anon_sym_LF] = ACTIONS(6647), - [anon_sym_def] = ACTIONS(6645), - [anon_sym_export_DASHenv] = ACTIONS(6645), - [anon_sym_extern] = ACTIONS(6645), - [anon_sym_module] = ACTIONS(6645), - [anon_sym_use] = ACTIONS(6645), - [anon_sym_LBRACK] = ACTIONS(6645), - [anon_sym_LPAREN] = ACTIONS(6645), - [anon_sym_DOLLAR] = ACTIONS(6645), - [anon_sym_error] = ACTIONS(6645), - [anon_sym_DASH] = ACTIONS(6645), - [anon_sym_break] = ACTIONS(6645), - [anon_sym_continue] = ACTIONS(6645), - [anon_sym_for] = ACTIONS(6645), - [anon_sym_loop] = ACTIONS(6645), - [anon_sym_while] = ACTIONS(6645), - [anon_sym_do] = ACTIONS(6645), - [anon_sym_if] = ACTIONS(6645), - [anon_sym_match] = ACTIONS(6645), - [anon_sym_LBRACE] = ACTIONS(6645), - [anon_sym_DOT_DOT] = ACTIONS(6645), - [anon_sym_try] = ACTIONS(6645), - [anon_sym_return] = ACTIONS(6645), - [anon_sym_source] = ACTIONS(6645), - [anon_sym_source_DASHenv] = ACTIONS(6645), - [anon_sym_register] = ACTIONS(6645), - [anon_sym_hide] = ACTIONS(6645), - [anon_sym_hide_DASHenv] = ACTIONS(6645), - [anon_sym_overlay] = ACTIONS(6645), - [anon_sym_where] = ACTIONS(6645), - [anon_sym_not] = ACTIONS(6645), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6645), - [anon_sym_DOT_DOT_LT] = ACTIONS(6645), - [anon_sym_null] = ACTIONS(6645), - [anon_sym_true] = ACTIONS(6645), - [anon_sym_false] = ACTIONS(6645), - [aux_sym__val_number_decimal_token1] = ACTIONS(6645), - [aux_sym__val_number_decimal_token2] = ACTIONS(6645), - [anon_sym_DOT2] = ACTIONS(6645), - [aux_sym__val_number_decimal_token3] = ACTIONS(6645), - [aux_sym__val_number_token1] = ACTIONS(6645), - [aux_sym__val_number_token2] = ACTIONS(6645), - [aux_sym__val_number_token3] = ACTIONS(6645), - [aux_sym__val_number_token4] = ACTIONS(6645), - [aux_sym__val_number_token5] = ACTIONS(6645), - [aux_sym__val_number_token6] = ACTIONS(6645), - [anon_sym_0b] = ACTIONS(6645), - [anon_sym_0o] = ACTIONS(6645), - [anon_sym_0x] = ACTIONS(6645), - [sym_val_date] = ACTIONS(6645), - [anon_sym_DQUOTE] = ACTIONS(6645), - [sym__str_single_quotes] = ACTIONS(6645), - [sym__str_back_ticks] = ACTIONS(6645), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6645), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6645), - [anon_sym_CARET] = ACTIONS(6645), - [anon_sym_POUND] = ACTIONS(113), - }, - [2920] = { - [sym_comment] = STATE(2920), - [ts_builtin_sym_end] = ACTIONS(6490), - [anon_sym_export] = ACTIONS(6488), - [anon_sym_alias] = ACTIONS(6488), - [anon_sym_let] = ACTIONS(6488), - [anon_sym_let_DASHenv] = ACTIONS(6488), - [anon_sym_mut] = ACTIONS(6488), - [anon_sym_const] = ACTIONS(6488), - [anon_sym_SEMI] = ACTIONS(6488), - [sym_cmd_identifier] = ACTIONS(6488), - [anon_sym_LF] = ACTIONS(6490), - [anon_sym_def] = ACTIONS(6488), - [anon_sym_export_DASHenv] = ACTIONS(6488), - [anon_sym_extern] = ACTIONS(6488), - [anon_sym_module] = ACTIONS(6488), - [anon_sym_use] = ACTIONS(6488), - [anon_sym_LBRACK] = ACTIONS(6488), - [anon_sym_LPAREN] = ACTIONS(6488), - [anon_sym_DOLLAR] = ACTIONS(6488), - [anon_sym_error] = ACTIONS(6488), - [anon_sym_DASH] = ACTIONS(6488), - [anon_sym_break] = ACTIONS(6488), - [anon_sym_continue] = ACTIONS(6488), - [anon_sym_for] = ACTIONS(6488), - [anon_sym_loop] = ACTIONS(6488), - [anon_sym_while] = ACTIONS(6488), - [anon_sym_do] = ACTIONS(6488), - [anon_sym_if] = ACTIONS(6488), - [anon_sym_match] = ACTIONS(6488), - [anon_sym_LBRACE] = ACTIONS(6488), - [anon_sym_DOT_DOT] = ACTIONS(6488), - [anon_sym_try] = ACTIONS(6488), - [anon_sym_return] = ACTIONS(6488), - [anon_sym_source] = ACTIONS(6488), - [anon_sym_source_DASHenv] = ACTIONS(6488), - [anon_sym_register] = ACTIONS(6488), - [anon_sym_hide] = ACTIONS(6488), - [anon_sym_hide_DASHenv] = ACTIONS(6488), - [anon_sym_overlay] = ACTIONS(6488), - [anon_sym_where] = ACTIONS(6488), - [anon_sym_not] = ACTIONS(6488), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6488), - [anon_sym_DOT_DOT_LT] = ACTIONS(6488), - [anon_sym_null] = ACTIONS(6488), - [anon_sym_true] = ACTIONS(6488), - [anon_sym_false] = ACTIONS(6488), - [aux_sym__val_number_decimal_token1] = ACTIONS(6488), - [aux_sym__val_number_decimal_token2] = ACTIONS(6488), - [anon_sym_DOT2] = ACTIONS(6488), - [aux_sym__val_number_decimal_token3] = ACTIONS(6488), - [aux_sym__val_number_token1] = ACTIONS(6488), - [aux_sym__val_number_token2] = ACTIONS(6488), - [aux_sym__val_number_token3] = ACTIONS(6488), - [aux_sym__val_number_token4] = ACTIONS(6488), - [aux_sym__val_number_token5] = ACTIONS(6488), - [aux_sym__val_number_token6] = ACTIONS(6488), - [anon_sym_0b] = ACTIONS(6488), - [anon_sym_0o] = ACTIONS(6488), - [anon_sym_0x] = ACTIONS(6488), - [sym_val_date] = ACTIONS(6488), - [anon_sym_DQUOTE] = ACTIONS(6488), - [sym__str_single_quotes] = ACTIONS(6488), - [sym__str_back_ticks] = ACTIONS(6488), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6488), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6488), - [anon_sym_CARET] = ACTIONS(6488), - [anon_sym_POUND] = ACTIONS(113), - }, - [2921] = { - [sym_comment] = STATE(2921), - [ts_builtin_sym_end] = ACTIONS(6490), - [anon_sym_export] = ACTIONS(6488), - [anon_sym_alias] = ACTIONS(6488), - [anon_sym_let] = ACTIONS(6488), - [anon_sym_let_DASHenv] = ACTIONS(6488), - [anon_sym_mut] = ACTIONS(6488), - [anon_sym_const] = ACTIONS(6488), - [anon_sym_SEMI] = ACTIONS(6488), - [sym_cmd_identifier] = ACTIONS(6488), - [anon_sym_LF] = ACTIONS(6490), - [anon_sym_def] = ACTIONS(6488), - [anon_sym_export_DASHenv] = ACTIONS(6488), - [anon_sym_extern] = ACTIONS(6488), - [anon_sym_module] = ACTIONS(6488), - [anon_sym_use] = ACTIONS(6488), - [anon_sym_LBRACK] = ACTIONS(6488), - [anon_sym_LPAREN] = ACTIONS(6488), - [anon_sym_DOLLAR] = ACTIONS(6488), - [anon_sym_error] = ACTIONS(6488), - [anon_sym_DASH] = ACTIONS(6488), - [anon_sym_break] = ACTIONS(6488), - [anon_sym_continue] = ACTIONS(6488), - [anon_sym_for] = ACTIONS(6488), - [anon_sym_loop] = ACTIONS(6488), - [anon_sym_while] = ACTIONS(6488), - [anon_sym_do] = ACTIONS(6488), - [anon_sym_if] = ACTIONS(6488), - [anon_sym_match] = ACTIONS(6488), - [anon_sym_LBRACE] = ACTIONS(6488), - [anon_sym_DOT_DOT] = ACTIONS(6488), - [anon_sym_try] = ACTIONS(6488), - [anon_sym_return] = ACTIONS(6488), - [anon_sym_source] = ACTIONS(6488), - [anon_sym_source_DASHenv] = ACTIONS(6488), - [anon_sym_register] = ACTIONS(6488), - [anon_sym_hide] = ACTIONS(6488), - [anon_sym_hide_DASHenv] = ACTIONS(6488), - [anon_sym_overlay] = ACTIONS(6488), - [anon_sym_where] = ACTIONS(6488), - [anon_sym_not] = ACTIONS(6488), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6488), - [anon_sym_DOT_DOT_LT] = ACTIONS(6488), - [anon_sym_null] = ACTIONS(6488), - [anon_sym_true] = ACTIONS(6488), - [anon_sym_false] = ACTIONS(6488), - [aux_sym__val_number_decimal_token1] = ACTIONS(6488), - [aux_sym__val_number_decimal_token2] = ACTIONS(6488), - [anon_sym_DOT2] = ACTIONS(6488), - [aux_sym__val_number_decimal_token3] = ACTIONS(6488), - [aux_sym__val_number_token1] = ACTIONS(6488), - [aux_sym__val_number_token2] = ACTIONS(6488), - [aux_sym__val_number_token3] = ACTIONS(6488), - [aux_sym__val_number_token4] = ACTIONS(6488), - [aux_sym__val_number_token5] = ACTIONS(6488), - [aux_sym__val_number_token6] = ACTIONS(6488), - [anon_sym_0b] = ACTIONS(6488), - [anon_sym_0o] = ACTIONS(6488), - [anon_sym_0x] = ACTIONS(6488), - [sym_val_date] = ACTIONS(6488), - [anon_sym_DQUOTE] = ACTIONS(6488), - [sym__str_single_quotes] = ACTIONS(6488), - [sym__str_back_ticks] = ACTIONS(6488), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6488), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6488), - [anon_sym_CARET] = ACTIONS(6488), - [anon_sym_POUND] = ACTIONS(113), - }, - [2922] = { - [sym_comment] = STATE(2922), - [ts_builtin_sym_end] = ACTIONS(6379), - [anon_sym_export] = ACTIONS(6377), - [anon_sym_alias] = ACTIONS(6377), - [anon_sym_let] = ACTIONS(6377), - [anon_sym_let_DASHenv] = ACTIONS(6377), - [anon_sym_mut] = ACTIONS(6377), - [anon_sym_const] = ACTIONS(6377), - [anon_sym_SEMI] = ACTIONS(6377), - [sym_cmd_identifier] = ACTIONS(6377), - [anon_sym_LF] = ACTIONS(6379), - [anon_sym_def] = ACTIONS(6377), - [anon_sym_export_DASHenv] = ACTIONS(6377), - [anon_sym_extern] = ACTIONS(6377), - [anon_sym_module] = ACTIONS(6377), - [anon_sym_use] = ACTIONS(6377), - [anon_sym_LBRACK] = ACTIONS(6377), - [anon_sym_LPAREN] = ACTIONS(6377), - [anon_sym_DOLLAR] = ACTIONS(6377), - [anon_sym_error] = ACTIONS(6377), - [anon_sym_DASH] = ACTIONS(6377), - [anon_sym_break] = ACTIONS(6377), - [anon_sym_continue] = ACTIONS(6377), - [anon_sym_for] = ACTIONS(6377), - [anon_sym_loop] = ACTIONS(6377), - [anon_sym_while] = ACTIONS(6377), - [anon_sym_do] = ACTIONS(6377), - [anon_sym_if] = ACTIONS(6377), - [anon_sym_match] = ACTIONS(6377), - [anon_sym_LBRACE] = ACTIONS(6377), - [anon_sym_DOT_DOT] = ACTIONS(6377), - [anon_sym_try] = ACTIONS(6377), - [anon_sym_return] = ACTIONS(6377), - [anon_sym_source] = ACTIONS(6377), - [anon_sym_source_DASHenv] = ACTIONS(6377), - [anon_sym_register] = ACTIONS(6377), - [anon_sym_hide] = ACTIONS(6377), - [anon_sym_hide_DASHenv] = ACTIONS(6377), - [anon_sym_overlay] = ACTIONS(6377), - [anon_sym_where] = ACTIONS(6377), - [anon_sym_not] = ACTIONS(6377), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6377), - [anon_sym_DOT_DOT_LT] = ACTIONS(6377), - [anon_sym_null] = ACTIONS(6377), - [anon_sym_true] = ACTIONS(6377), - [anon_sym_false] = ACTIONS(6377), - [aux_sym__val_number_decimal_token1] = ACTIONS(6377), - [aux_sym__val_number_decimal_token2] = ACTIONS(6377), - [anon_sym_DOT2] = ACTIONS(6377), - [aux_sym__val_number_decimal_token3] = ACTIONS(6377), - [aux_sym__val_number_token1] = ACTIONS(6377), - [aux_sym__val_number_token2] = ACTIONS(6377), - [aux_sym__val_number_token3] = ACTIONS(6377), - [aux_sym__val_number_token4] = ACTIONS(6377), - [aux_sym__val_number_token5] = ACTIONS(6377), - [aux_sym__val_number_token6] = ACTIONS(6377), - [anon_sym_0b] = ACTIONS(6377), - [anon_sym_0o] = ACTIONS(6377), - [anon_sym_0x] = ACTIONS(6377), - [sym_val_date] = ACTIONS(6377), - [anon_sym_DQUOTE] = ACTIONS(6377), - [sym__str_single_quotes] = ACTIONS(6377), - [sym__str_back_ticks] = ACTIONS(6377), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6377), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6377), - [anon_sym_CARET] = ACTIONS(6377), - [anon_sym_POUND] = ACTIONS(113), - }, - [2923] = { - [sym_comment] = STATE(2923), - [ts_builtin_sym_end] = ACTIONS(6625), - [anon_sym_export] = ACTIONS(6623), - [anon_sym_alias] = ACTIONS(6623), - [anon_sym_let] = ACTIONS(6623), - [anon_sym_let_DASHenv] = ACTIONS(6623), - [anon_sym_mut] = ACTIONS(6623), - [anon_sym_const] = ACTIONS(6623), - [anon_sym_SEMI] = ACTIONS(6623), - [sym_cmd_identifier] = ACTIONS(6623), - [anon_sym_LF] = ACTIONS(6625), - [anon_sym_def] = ACTIONS(6623), - [anon_sym_export_DASHenv] = ACTIONS(6623), - [anon_sym_extern] = ACTIONS(6623), - [anon_sym_module] = ACTIONS(6623), - [anon_sym_use] = ACTIONS(6623), - [anon_sym_LBRACK] = ACTIONS(6623), - [anon_sym_LPAREN] = ACTIONS(6623), - [anon_sym_DOLLAR] = ACTIONS(6623), - [anon_sym_error] = ACTIONS(6623), - [anon_sym_DASH] = ACTIONS(6623), - [anon_sym_break] = ACTIONS(6623), - [anon_sym_continue] = ACTIONS(6623), - [anon_sym_for] = ACTIONS(6623), - [anon_sym_loop] = ACTIONS(6623), - [anon_sym_while] = ACTIONS(6623), - [anon_sym_do] = ACTIONS(6623), - [anon_sym_if] = ACTIONS(6623), - [anon_sym_match] = ACTIONS(6623), - [anon_sym_LBRACE] = ACTIONS(6623), - [anon_sym_DOT_DOT] = ACTIONS(6623), - [anon_sym_try] = ACTIONS(6623), - [anon_sym_return] = ACTIONS(6623), - [anon_sym_source] = ACTIONS(6623), - [anon_sym_source_DASHenv] = ACTIONS(6623), - [anon_sym_register] = ACTIONS(6623), - [anon_sym_hide] = ACTIONS(6623), - [anon_sym_hide_DASHenv] = ACTIONS(6623), - [anon_sym_overlay] = ACTIONS(6623), - [anon_sym_where] = ACTIONS(6623), - [anon_sym_not] = ACTIONS(6623), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6623), - [anon_sym_DOT_DOT_LT] = ACTIONS(6623), - [anon_sym_null] = ACTIONS(6623), - [anon_sym_true] = ACTIONS(6623), - [anon_sym_false] = ACTIONS(6623), - [aux_sym__val_number_decimal_token1] = ACTIONS(6623), - [aux_sym__val_number_decimal_token2] = ACTIONS(6623), - [anon_sym_DOT2] = ACTIONS(6623), - [aux_sym__val_number_decimal_token3] = ACTIONS(6623), - [aux_sym__val_number_token1] = ACTIONS(6623), - [aux_sym__val_number_token2] = ACTIONS(6623), - [aux_sym__val_number_token3] = ACTIONS(6623), - [aux_sym__val_number_token4] = ACTIONS(6623), - [aux_sym__val_number_token5] = ACTIONS(6623), - [aux_sym__val_number_token6] = ACTIONS(6623), - [anon_sym_0b] = ACTIONS(6623), - [anon_sym_0o] = ACTIONS(6623), - [anon_sym_0x] = ACTIONS(6623), - [sym_val_date] = ACTIONS(6623), - [anon_sym_DQUOTE] = ACTIONS(6623), - [sym__str_single_quotes] = ACTIONS(6623), - [sym__str_back_ticks] = ACTIONS(6623), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6623), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6623), - [anon_sym_CARET] = ACTIONS(6623), - [anon_sym_POUND] = ACTIONS(113), - }, - [2924] = { - [sym_comment] = STATE(2924), - [ts_builtin_sym_end] = ACTIONS(6494), - [anon_sym_export] = ACTIONS(6492), - [anon_sym_alias] = ACTIONS(6492), - [anon_sym_let] = ACTIONS(6492), - [anon_sym_let_DASHenv] = ACTIONS(6492), - [anon_sym_mut] = ACTIONS(6492), - [anon_sym_const] = ACTIONS(6492), - [anon_sym_SEMI] = ACTIONS(6492), - [sym_cmd_identifier] = ACTIONS(6492), - [anon_sym_LF] = ACTIONS(6494), - [anon_sym_def] = ACTIONS(6492), - [anon_sym_export_DASHenv] = ACTIONS(6492), - [anon_sym_extern] = ACTIONS(6492), - [anon_sym_module] = ACTIONS(6492), - [anon_sym_use] = ACTIONS(6492), - [anon_sym_LBRACK] = ACTIONS(6492), - [anon_sym_LPAREN] = ACTIONS(6492), - [anon_sym_DOLLAR] = ACTIONS(6492), - [anon_sym_error] = ACTIONS(6492), - [anon_sym_DASH] = ACTIONS(6492), - [anon_sym_break] = ACTIONS(6492), - [anon_sym_continue] = ACTIONS(6492), - [anon_sym_for] = ACTIONS(6492), - [anon_sym_loop] = ACTIONS(6492), - [anon_sym_while] = ACTIONS(6492), - [anon_sym_do] = ACTIONS(6492), - [anon_sym_if] = ACTIONS(6492), - [anon_sym_match] = ACTIONS(6492), - [anon_sym_LBRACE] = ACTIONS(6492), - [anon_sym_DOT_DOT] = ACTIONS(6492), - [anon_sym_try] = ACTIONS(6492), - [anon_sym_return] = ACTIONS(6492), - [anon_sym_source] = ACTIONS(6492), - [anon_sym_source_DASHenv] = ACTIONS(6492), - [anon_sym_register] = ACTIONS(6492), - [anon_sym_hide] = ACTIONS(6492), - [anon_sym_hide_DASHenv] = ACTIONS(6492), - [anon_sym_overlay] = ACTIONS(6492), - [anon_sym_where] = ACTIONS(6492), - [anon_sym_not] = ACTIONS(6492), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6492), - [anon_sym_DOT_DOT_LT] = ACTIONS(6492), - [anon_sym_null] = ACTIONS(6492), - [anon_sym_true] = ACTIONS(6492), - [anon_sym_false] = ACTIONS(6492), - [aux_sym__val_number_decimal_token1] = ACTIONS(6492), - [aux_sym__val_number_decimal_token2] = ACTIONS(6492), - [anon_sym_DOT2] = ACTIONS(6492), - [aux_sym__val_number_decimal_token3] = ACTIONS(6492), - [aux_sym__val_number_token1] = ACTIONS(6492), - [aux_sym__val_number_token2] = ACTIONS(6492), - [aux_sym__val_number_token3] = ACTIONS(6492), - [aux_sym__val_number_token4] = ACTIONS(6492), - [aux_sym__val_number_token5] = ACTIONS(6492), - [aux_sym__val_number_token6] = ACTIONS(6492), - [anon_sym_0b] = ACTIONS(6492), - [anon_sym_0o] = ACTIONS(6492), - [anon_sym_0x] = ACTIONS(6492), - [sym_val_date] = ACTIONS(6492), - [anon_sym_DQUOTE] = ACTIONS(6492), - [sym__str_single_quotes] = ACTIONS(6492), - [sym__str_back_ticks] = ACTIONS(6492), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6492), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6492), - [anon_sym_CARET] = ACTIONS(6492), - [anon_sym_POUND] = ACTIONS(113), - }, - [2925] = { - [sym_comment] = STATE(2925), - [anon_sym_LBRACK] = ACTIONS(911), - [anon_sym_LPAREN] = ACTIONS(911), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(911), - [anon_sym_DOT_DOT] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(911), - [anon_sym_PLUS_PLUS] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(911), - [anon_sym_SLASH_SLASH] = ACTIONS(911), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(911), - [anon_sym_bit_DASHshr] = ACTIONS(911), - [anon_sym_EQ_EQ] = ACTIONS(911), - [anon_sym_BANG_EQ] = ACTIONS(911), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(911), - [anon_sym_GT_EQ] = ACTIONS(911), - [anon_sym_not_DASHin] = ACTIONS(911), - [anon_sym_starts_DASHwith] = ACTIONS(911), - [anon_sym_ends_DASHwith] = ACTIONS(911), - [anon_sym_EQ_TILDE] = ACTIONS(911), - [anon_sym_BANG_TILDE] = ACTIONS(911), - [anon_sym_bit_DASHand] = ACTIONS(911), - [anon_sym_bit_DASHxor] = ACTIONS(911), - [anon_sym_bit_DASHor] = ACTIONS(911), - [anon_sym_and] = ACTIONS(911), - [anon_sym_xor] = ACTIONS(911), - [anon_sym_or] = ACTIONS(911), - [anon_sym_not] = ACTIONS(909), - [anon_sym_DOT_DOT2] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(911), - [anon_sym_DOT_DOT_LT2] = ACTIONS(911), - [anon_sym_null] = ACTIONS(911), - [anon_sym_true] = ACTIONS(911), - [anon_sym_false] = ACTIONS(911), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_decimal_token2] = ACTIONS(911), - [anon_sym_DOT2] = ACTIONS(909), - [aux_sym__val_number_decimal_token3] = ACTIONS(911), - [aux_sym__val_number_token1] = ACTIONS(911), - [aux_sym__val_number_token2] = ACTIONS(911), - [aux_sym__val_number_token3] = ACTIONS(911), - [aux_sym__val_number_token4] = ACTIONS(911), - [aux_sym__val_number_token5] = ACTIONS(911), - [aux_sym__val_number_token6] = ACTIONS(911), - [anon_sym_0b] = ACTIONS(909), - [sym_filesize_unit] = ACTIONS(909), - [sym_duration_unit] = ACTIONS(911), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(911), - [anon_sym_DQUOTE] = ACTIONS(911), - [sym__str_single_quotes] = ACTIONS(911), - [sym__str_back_ticks] = ACTIONS(911), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(911), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(911), - [aux_sym_unquoted_token5] = ACTIONS(909), - [anon_sym_POUND] = ACTIONS(3), - }, - [2926] = { - [sym_comment] = STATE(2926), - [anon_sym_SEMI] = ACTIONS(1109), - [anon_sym_LF] = ACTIONS(1111), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_RPAREN] = ACTIONS(1109), - [anon_sym_PIPE] = ACTIONS(1109), - [anon_sym_DOLLAR] = ACTIONS(1109), - [anon_sym_GT] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_in] = ACTIONS(1109), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_RBRACE] = ACTIONS(1109), - [anon_sym_DOT_DOT] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_STAR_STAR] = ACTIONS(1109), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_SLASH] = ACTIONS(1109), - [anon_sym_mod] = ACTIONS(1109), - [anon_sym_SLASH_SLASH] = ACTIONS(1109), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_bit_DASHshl] = ACTIONS(1109), - [anon_sym_bit_DASHshr] = ACTIONS(1109), - [anon_sym_EQ_EQ] = ACTIONS(1109), - [anon_sym_BANG_EQ] = ACTIONS(1109), - [anon_sym_LT2] = ACTIONS(1109), - [anon_sym_LT_EQ] = ACTIONS(1109), - [anon_sym_GT_EQ] = ACTIONS(1109), - [anon_sym_not_DASHin] = ACTIONS(1109), - [anon_sym_starts_DASHwith] = ACTIONS(1109), - [anon_sym_ends_DASHwith] = ACTIONS(1109), - [anon_sym_EQ_TILDE] = ACTIONS(1109), - [anon_sym_BANG_TILDE] = ACTIONS(1109), - [anon_sym_bit_DASHand] = ACTIONS(1109), - [anon_sym_bit_DASHxor] = ACTIONS(1109), - [anon_sym_bit_DASHor] = ACTIONS(1109), - [anon_sym_and] = ACTIONS(1109), - [anon_sym_xor] = ACTIONS(1109), - [anon_sym_or] = ACTIONS(1109), - [anon_sym_not] = ACTIONS(1109), - [anon_sym_DOT] = ACTIONS(1109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1109), - [anon_sym_DOT_DOT_LT] = ACTIONS(1109), - [anon_sym_null] = ACTIONS(1109), - [anon_sym_true] = ACTIONS(1109), - [anon_sym_false] = ACTIONS(1109), - [aux_sym__val_number_decimal_token1] = ACTIONS(1109), - [aux_sym__val_number_decimal_token2] = ACTIONS(1109), - [anon_sym_DOT2] = ACTIONS(1109), - [aux_sym__val_number_decimal_token3] = ACTIONS(1109), - [aux_sym__val_number_token1] = ACTIONS(1109), - [aux_sym__val_number_token2] = ACTIONS(1109), - [aux_sym__val_number_token3] = ACTIONS(1109), - [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(1109), - [anon_sym_0o] = ACTIONS(1109), - [anon_sym_0x] = ACTIONS(1109), - [sym_val_date] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(1109), - [sym__str_single_quotes] = ACTIONS(1109), - [sym__str_back_ticks] = ACTIONS(1109), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1109), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1109), - [anon_sym_POUND] = ACTIONS(113), - }, - [2927] = { - [sym_comment] = STATE(2927), - [anon_sym_SEMI] = ACTIONS(1243), - [anon_sym_LF] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_RPAREN] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_in] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_RBRACE] = ACTIONS(1243), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1243), - [anon_sym_STAR_STAR] = ACTIONS(1243), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_SLASH] = ACTIONS(1243), - [anon_sym_mod] = ACTIONS(1243), - [anon_sym_SLASH_SLASH] = ACTIONS(1243), - [anon_sym_PLUS] = ACTIONS(1243), - [anon_sym_bit_DASHshl] = ACTIONS(1243), - [anon_sym_bit_DASHshr] = ACTIONS(1243), - [anon_sym_EQ_EQ] = ACTIONS(1243), - [anon_sym_BANG_EQ] = ACTIONS(1243), - [anon_sym_LT2] = ACTIONS(1243), - [anon_sym_LT_EQ] = ACTIONS(1243), - [anon_sym_GT_EQ] = ACTIONS(1243), - [anon_sym_not_DASHin] = ACTIONS(1243), - [anon_sym_starts_DASHwith] = ACTIONS(1243), - [anon_sym_ends_DASHwith] = ACTIONS(1243), - [anon_sym_EQ_TILDE] = ACTIONS(1243), - [anon_sym_BANG_TILDE] = ACTIONS(1243), - [anon_sym_bit_DASHand] = ACTIONS(1243), - [anon_sym_bit_DASHxor] = ACTIONS(1243), - [anon_sym_bit_DASHor] = ACTIONS(1243), - [anon_sym_and] = ACTIONS(1243), - [anon_sym_xor] = ACTIONS(1243), - [anon_sym_or] = ACTIONS(1243), - [anon_sym_not] = ACTIONS(1243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1243), - [anon_sym_DOT_DOT_LT] = ACTIONS(1243), - [anon_sym_null] = ACTIONS(1243), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_decimal_token2] = ACTIONS(1243), - [anon_sym_DOT2] = ACTIONS(1243), - [aux_sym__val_number_decimal_token3] = ACTIONS(1243), - [aux_sym__val_number_token1] = ACTIONS(1243), - [aux_sym__val_number_token2] = ACTIONS(1243), - [aux_sym__val_number_token3] = ACTIONS(1243), - [aux_sym__val_number_token4] = ACTIONS(1243), - [aux_sym__val_number_token5] = ACTIONS(1243), - [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_0b] = ACTIONS(1243), - [anon_sym_0o] = ACTIONS(1243), - [anon_sym_0x] = ACTIONS(1243), - [sym_val_date] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym__str_single_quotes] = ACTIONS(1243), - [sym__str_back_ticks] = ACTIONS(1243), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1243), - [aux_sym__list_item_starts_with_sign_token1] = ACTIONS(6871), - [anon_sym_POUND] = ACTIONS(113), - }, - [2928] = { - [sym_comment] = STATE(2928), - [ts_builtin_sym_end] = ACTIONS(6383), - [anon_sym_export] = ACTIONS(6381), - [anon_sym_alias] = ACTIONS(6381), - [anon_sym_let] = ACTIONS(6381), - [anon_sym_let_DASHenv] = ACTIONS(6381), - [anon_sym_mut] = ACTIONS(6381), - [anon_sym_const] = ACTIONS(6381), - [anon_sym_SEMI] = ACTIONS(6381), - [sym_cmd_identifier] = ACTIONS(6381), - [anon_sym_LF] = ACTIONS(6383), - [anon_sym_def] = ACTIONS(6381), - [anon_sym_export_DASHenv] = ACTIONS(6381), - [anon_sym_extern] = ACTIONS(6381), - [anon_sym_module] = ACTIONS(6381), - [anon_sym_use] = ACTIONS(6381), - [anon_sym_LBRACK] = ACTIONS(6381), - [anon_sym_LPAREN] = ACTIONS(6381), - [anon_sym_DOLLAR] = ACTIONS(6381), - [anon_sym_error] = ACTIONS(6381), - [anon_sym_DASH] = ACTIONS(6381), - [anon_sym_break] = ACTIONS(6381), - [anon_sym_continue] = ACTIONS(6381), - [anon_sym_for] = ACTIONS(6381), - [anon_sym_loop] = ACTIONS(6381), - [anon_sym_while] = ACTIONS(6381), - [anon_sym_do] = ACTIONS(6381), - [anon_sym_if] = ACTIONS(6381), - [anon_sym_match] = ACTIONS(6381), - [anon_sym_LBRACE] = ACTIONS(6381), - [anon_sym_DOT_DOT] = ACTIONS(6381), - [anon_sym_try] = ACTIONS(6381), - [anon_sym_return] = ACTIONS(6381), - [anon_sym_source] = ACTIONS(6381), - [anon_sym_source_DASHenv] = ACTIONS(6381), - [anon_sym_register] = ACTIONS(6381), - [anon_sym_hide] = ACTIONS(6381), - [anon_sym_hide_DASHenv] = ACTIONS(6381), - [anon_sym_overlay] = ACTIONS(6381), - [anon_sym_where] = ACTIONS(6381), - [anon_sym_not] = ACTIONS(6381), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6381), - [anon_sym_DOT_DOT_LT] = ACTIONS(6381), - [anon_sym_null] = ACTIONS(6381), - [anon_sym_true] = ACTIONS(6381), - [anon_sym_false] = ACTIONS(6381), - [aux_sym__val_number_decimal_token1] = ACTIONS(6381), - [aux_sym__val_number_decimal_token2] = ACTIONS(6381), - [anon_sym_DOT2] = ACTIONS(6381), - [aux_sym__val_number_decimal_token3] = ACTIONS(6381), - [aux_sym__val_number_token1] = ACTIONS(6381), - [aux_sym__val_number_token2] = ACTIONS(6381), - [aux_sym__val_number_token3] = ACTIONS(6381), - [aux_sym__val_number_token4] = ACTIONS(6381), - [aux_sym__val_number_token5] = ACTIONS(6381), - [aux_sym__val_number_token6] = ACTIONS(6381), - [anon_sym_0b] = ACTIONS(6381), - [anon_sym_0o] = ACTIONS(6381), - [anon_sym_0x] = ACTIONS(6381), - [sym_val_date] = ACTIONS(6381), - [anon_sym_DQUOTE] = ACTIONS(6381), - [sym__str_single_quotes] = ACTIONS(6381), - [sym__str_back_ticks] = ACTIONS(6381), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6381), - [anon_sym_CARET] = ACTIONS(6381), - [anon_sym_POUND] = ACTIONS(113), - }, - [2929] = { - [sym_comment] = STATE(2929), - [ts_builtin_sym_end] = ACTIONS(6873), - [anon_sym_export] = ACTIONS(6673), - [anon_sym_alias] = ACTIONS(6673), - [anon_sym_let] = ACTIONS(6673), - [anon_sym_let_DASHenv] = ACTIONS(6673), - [anon_sym_mut] = ACTIONS(6673), - [anon_sym_const] = ACTIONS(6673), - [anon_sym_SEMI] = ACTIONS(6675), - [sym_cmd_identifier] = ACTIONS(6673), - [anon_sym_LF] = ACTIONS(6678), - [anon_sym_def] = ACTIONS(6673), - [anon_sym_export_DASHenv] = ACTIONS(6673), - [anon_sym_extern] = ACTIONS(6673), - [anon_sym_module] = ACTIONS(6673), - [anon_sym_use] = ACTIONS(6673), - [anon_sym_LBRACK] = ACTIONS(6673), - [anon_sym_LPAREN] = ACTIONS(6673), - [anon_sym_DOLLAR] = ACTIONS(6673), - [anon_sym_error] = ACTIONS(6673), - [anon_sym_DASH] = ACTIONS(6673), - [anon_sym_break] = ACTIONS(6673), - [anon_sym_continue] = ACTIONS(6673), - [anon_sym_for] = ACTIONS(6673), - [anon_sym_loop] = ACTIONS(6673), - [anon_sym_while] = ACTIONS(6673), - [anon_sym_do] = ACTIONS(6673), - [anon_sym_if] = ACTIONS(6673), - [anon_sym_match] = ACTIONS(6673), - [anon_sym_LBRACE] = ACTIONS(6673), - [anon_sym_DOT_DOT] = ACTIONS(6673), - [anon_sym_try] = ACTIONS(6673), - [anon_sym_return] = ACTIONS(6673), - [anon_sym_source] = ACTIONS(6673), - [anon_sym_source_DASHenv] = ACTIONS(6673), - [anon_sym_register] = ACTIONS(6673), - [anon_sym_hide] = ACTIONS(6673), - [anon_sym_hide_DASHenv] = ACTIONS(6673), - [anon_sym_overlay] = ACTIONS(6673), - [anon_sym_where] = ACTIONS(6673), - [anon_sym_not] = ACTIONS(6673), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6673), - [anon_sym_DOT_DOT_LT] = ACTIONS(6673), - [anon_sym_null] = ACTIONS(6673), - [anon_sym_true] = ACTIONS(6673), - [anon_sym_false] = ACTIONS(6673), - [aux_sym__val_number_decimal_token1] = ACTIONS(6673), - [aux_sym__val_number_decimal_token2] = ACTIONS(6673), - [anon_sym_DOT2] = ACTIONS(6673), - [aux_sym__val_number_decimal_token3] = ACTIONS(6673), - [aux_sym__val_number_token1] = ACTIONS(6673), - [aux_sym__val_number_token2] = ACTIONS(6673), - [aux_sym__val_number_token3] = ACTIONS(6673), - [aux_sym__val_number_token4] = ACTIONS(6673), - [aux_sym__val_number_token5] = ACTIONS(6673), - [aux_sym__val_number_token6] = ACTIONS(6673), - [anon_sym_0b] = ACTIONS(6673), - [anon_sym_0o] = ACTIONS(6673), - [anon_sym_0x] = ACTIONS(6673), - [sym_val_date] = ACTIONS(6673), - [anon_sym_DQUOTE] = ACTIONS(6673), - [sym__str_single_quotes] = ACTIONS(6673), - [sym__str_back_ticks] = ACTIONS(6673), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6673), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6673), - [anon_sym_CARET] = ACTIONS(6673), - [anon_sym_POUND] = ACTIONS(113), - }, - [2930] = { - [sym_comment] = STATE(2930), - [anon_sym_export] = ACTIONS(6875), - [anon_sym_alias] = ACTIONS(6875), - [anon_sym_let] = ACTIONS(6875), - [anon_sym_let_DASHenv] = ACTIONS(6875), - [anon_sym_mut] = ACTIONS(6875), - [anon_sym_const] = ACTIONS(6875), - [anon_sym_SEMI] = ACTIONS(6877), - [sym_cmd_identifier] = ACTIONS(6875), - [anon_sym_LF] = ACTIONS(6880), - [anon_sym_def] = ACTIONS(6875), - [anon_sym_export_DASHenv] = ACTIONS(6875), - [anon_sym_extern] = ACTIONS(6875), - [anon_sym_module] = ACTIONS(6875), - [anon_sym_use] = ACTIONS(6875), - [anon_sym_LBRACK] = ACTIONS(6875), - [anon_sym_LPAREN] = ACTIONS(6875), - [anon_sym_RPAREN] = ACTIONS(6883), - [anon_sym_DOLLAR] = ACTIONS(6875), - [anon_sym_error] = ACTIONS(6875), - [anon_sym_DASH] = ACTIONS(6875), - [anon_sym_break] = ACTIONS(6875), - [anon_sym_continue] = ACTIONS(6875), - [anon_sym_for] = ACTIONS(6875), - [anon_sym_loop] = ACTIONS(6875), - [anon_sym_while] = ACTIONS(6875), - [anon_sym_do] = ACTIONS(6875), - [anon_sym_if] = ACTIONS(6875), - [anon_sym_match] = ACTIONS(6875), - [anon_sym_LBRACE] = ACTIONS(6875), - [anon_sym_DOT_DOT] = ACTIONS(6875), - [anon_sym_try] = ACTIONS(6875), - [anon_sym_return] = ACTIONS(6875), - [anon_sym_source] = ACTIONS(6875), - [anon_sym_source_DASHenv] = ACTIONS(6875), - [anon_sym_register] = ACTIONS(6875), - [anon_sym_hide] = ACTIONS(6875), - [anon_sym_hide_DASHenv] = ACTIONS(6875), - [anon_sym_overlay] = ACTIONS(6875), - [anon_sym_where] = ACTIONS(6875), - [anon_sym_not] = ACTIONS(6875), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6875), - [anon_sym_DOT_DOT_LT] = ACTIONS(6875), - [anon_sym_null] = ACTIONS(6875), - [anon_sym_true] = ACTIONS(6875), - [anon_sym_false] = ACTIONS(6875), - [aux_sym__val_number_decimal_token1] = ACTIONS(6875), - [aux_sym__val_number_decimal_token2] = ACTIONS(6875), - [anon_sym_DOT2] = ACTIONS(6875), - [aux_sym__val_number_decimal_token3] = ACTIONS(6875), - [aux_sym__val_number_token1] = ACTIONS(6875), - [aux_sym__val_number_token2] = ACTIONS(6875), - [aux_sym__val_number_token3] = ACTIONS(6875), - [aux_sym__val_number_token4] = ACTIONS(6875), - [aux_sym__val_number_token5] = ACTIONS(6875), - [aux_sym__val_number_token6] = ACTIONS(6875), - [anon_sym_0b] = ACTIONS(6875), - [anon_sym_0o] = ACTIONS(6875), - [anon_sym_0x] = ACTIONS(6875), - [sym_val_date] = ACTIONS(6875), - [anon_sym_DQUOTE] = ACTIONS(6875), - [sym__str_single_quotes] = ACTIONS(6875), - [sym__str_back_ticks] = ACTIONS(6875), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6875), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6875), - [anon_sym_CARET] = ACTIONS(6875), - [anon_sym_POUND] = ACTIONS(113), - }, - [2931] = { - [sym_comment] = STATE(2931), - [ts_builtin_sym_end] = ACTIONS(6885), - [anon_sym_export] = ACTIONS(6688), - [anon_sym_alias] = ACTIONS(6688), - [anon_sym_let] = ACTIONS(6688), - [anon_sym_let_DASHenv] = ACTIONS(6688), - [anon_sym_mut] = ACTIONS(6688), - [anon_sym_const] = ACTIONS(6688), - [anon_sym_SEMI] = ACTIONS(6690), - [sym_cmd_identifier] = ACTIONS(6688), - [anon_sym_LF] = ACTIONS(6693), - [anon_sym_def] = ACTIONS(6688), - [anon_sym_export_DASHenv] = ACTIONS(6688), - [anon_sym_extern] = ACTIONS(6688), - [anon_sym_module] = ACTIONS(6688), - [anon_sym_use] = ACTIONS(6688), - [anon_sym_LBRACK] = ACTIONS(6688), - [anon_sym_LPAREN] = ACTIONS(6688), - [anon_sym_DOLLAR] = ACTIONS(6688), - [anon_sym_error] = ACTIONS(6688), - [anon_sym_DASH] = ACTIONS(6688), - [anon_sym_break] = ACTIONS(6688), - [anon_sym_continue] = ACTIONS(6688), - [anon_sym_for] = ACTIONS(6688), - [anon_sym_loop] = ACTIONS(6688), - [anon_sym_while] = ACTIONS(6688), - [anon_sym_do] = ACTIONS(6688), - [anon_sym_if] = ACTIONS(6688), - [anon_sym_match] = ACTIONS(6688), - [anon_sym_LBRACE] = ACTIONS(6688), - [anon_sym_DOT_DOT] = ACTIONS(6688), - [anon_sym_try] = ACTIONS(6688), - [anon_sym_return] = ACTIONS(6688), - [anon_sym_source] = ACTIONS(6688), - [anon_sym_source_DASHenv] = ACTIONS(6688), - [anon_sym_register] = ACTIONS(6688), - [anon_sym_hide] = ACTIONS(6688), - [anon_sym_hide_DASHenv] = ACTIONS(6688), - [anon_sym_overlay] = ACTIONS(6688), - [anon_sym_where] = ACTIONS(6688), - [anon_sym_not] = ACTIONS(6688), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6688), - [anon_sym_DOT_DOT_LT] = ACTIONS(6688), - [anon_sym_null] = ACTIONS(6688), - [anon_sym_true] = ACTIONS(6688), - [anon_sym_false] = ACTIONS(6688), - [aux_sym__val_number_decimal_token1] = ACTIONS(6688), - [aux_sym__val_number_decimal_token2] = ACTIONS(6688), - [anon_sym_DOT2] = ACTIONS(6688), - [aux_sym__val_number_decimal_token3] = ACTIONS(6688), - [aux_sym__val_number_token1] = ACTIONS(6688), - [aux_sym__val_number_token2] = ACTIONS(6688), - [aux_sym__val_number_token3] = ACTIONS(6688), - [aux_sym__val_number_token4] = ACTIONS(6688), - [aux_sym__val_number_token5] = ACTIONS(6688), - [aux_sym__val_number_token6] = ACTIONS(6688), - [anon_sym_0b] = ACTIONS(6688), - [anon_sym_0o] = ACTIONS(6688), - [anon_sym_0x] = ACTIONS(6688), - [sym_val_date] = ACTIONS(6688), - [anon_sym_DQUOTE] = ACTIONS(6688), - [sym__str_single_quotes] = ACTIONS(6688), - [sym__str_back_ticks] = ACTIONS(6688), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6688), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6688), - [anon_sym_CARET] = ACTIONS(6688), - [anon_sym_POUND] = ACTIONS(113), - }, - [2932] = { - [sym_comment] = STATE(2932), - [anon_sym_SEMI] = ACTIONS(1113), - [anon_sym_LF] = ACTIONS(1115), - [anon_sym_LBRACK] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_RPAREN] = ACTIONS(1113), - [anon_sym_PIPE] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1113), - [anon_sym_GT] = ACTIONS(1113), - [anon_sym_DASH_DASH] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_in] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_RBRACE] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_STAR_STAR] = ACTIONS(1113), - [anon_sym_PLUS_PLUS] = ACTIONS(1113), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_mod] = ACTIONS(1113), - [anon_sym_SLASH_SLASH] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_bit_DASHshl] = ACTIONS(1113), - [anon_sym_bit_DASHshr] = ACTIONS(1113), - [anon_sym_EQ_EQ] = ACTIONS(1113), - [anon_sym_BANG_EQ] = ACTIONS(1113), - [anon_sym_LT2] = ACTIONS(1113), - [anon_sym_LT_EQ] = ACTIONS(1113), - [anon_sym_GT_EQ] = ACTIONS(1113), - [anon_sym_not_DASHin] = ACTIONS(1113), - [anon_sym_starts_DASHwith] = ACTIONS(1113), - [anon_sym_ends_DASHwith] = ACTIONS(1113), - [anon_sym_EQ_TILDE] = ACTIONS(1113), - [anon_sym_BANG_TILDE] = ACTIONS(1113), - [anon_sym_bit_DASHand] = ACTIONS(1113), - [anon_sym_bit_DASHxor] = ACTIONS(1113), - [anon_sym_bit_DASHor] = ACTIONS(1113), - [anon_sym_and] = ACTIONS(1113), - [anon_sym_xor] = ACTIONS(1113), - [anon_sym_or] = ACTIONS(1113), - [anon_sym_not] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1113), - [anon_sym_DOT_DOT_LT] = ACTIONS(1113), - [anon_sym_null] = ACTIONS(1113), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1113), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_decimal_token2] = ACTIONS(1113), - [anon_sym_DOT2] = ACTIONS(1113), - [aux_sym__val_number_decimal_token3] = ACTIONS(1113), - [aux_sym__val_number_token1] = ACTIONS(1113), - [aux_sym__val_number_token2] = ACTIONS(1113), - [aux_sym__val_number_token3] = ACTIONS(1113), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1113), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_0b] = ACTIONS(1113), - [anon_sym_0o] = ACTIONS(1113), - [anon_sym_0x] = ACTIONS(1113), - [sym_val_date] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym__str_single_quotes] = ACTIONS(1113), - [sym__str_back_ticks] = ACTIONS(1113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), - [anon_sym_POUND] = ACTIONS(113), - }, - [2933] = { - [sym_comment] = STATE(2933), - [ts_builtin_sym_end] = ACTIONS(6498), - [anon_sym_export] = ACTIONS(6496), - [anon_sym_alias] = ACTIONS(6496), - [anon_sym_let] = ACTIONS(6496), - [anon_sym_let_DASHenv] = ACTIONS(6496), - [anon_sym_mut] = ACTIONS(6496), - [anon_sym_const] = ACTIONS(6496), - [anon_sym_SEMI] = ACTIONS(6496), - [sym_cmd_identifier] = ACTIONS(6496), - [anon_sym_LF] = ACTIONS(6498), - [anon_sym_def] = ACTIONS(6496), - [anon_sym_export_DASHenv] = ACTIONS(6496), - [anon_sym_extern] = ACTIONS(6496), - [anon_sym_module] = ACTIONS(6496), - [anon_sym_use] = ACTIONS(6496), - [anon_sym_LBRACK] = ACTIONS(6496), - [anon_sym_LPAREN] = ACTIONS(6496), - [anon_sym_DOLLAR] = ACTIONS(6496), - [anon_sym_error] = ACTIONS(6496), - [anon_sym_DASH] = ACTIONS(6496), - [anon_sym_break] = ACTIONS(6496), - [anon_sym_continue] = ACTIONS(6496), - [anon_sym_for] = ACTIONS(6496), - [anon_sym_loop] = ACTIONS(6496), - [anon_sym_while] = ACTIONS(6496), - [anon_sym_do] = ACTIONS(6496), - [anon_sym_if] = ACTIONS(6496), - [anon_sym_match] = ACTIONS(6496), - [anon_sym_LBRACE] = ACTIONS(6496), - [anon_sym_DOT_DOT] = ACTIONS(6496), - [anon_sym_try] = ACTIONS(6496), - [anon_sym_return] = ACTIONS(6496), - [anon_sym_source] = ACTIONS(6496), - [anon_sym_source_DASHenv] = ACTIONS(6496), - [anon_sym_register] = ACTIONS(6496), - [anon_sym_hide] = ACTIONS(6496), - [anon_sym_hide_DASHenv] = ACTIONS(6496), - [anon_sym_overlay] = ACTIONS(6496), - [anon_sym_where] = ACTIONS(6496), - [anon_sym_not] = ACTIONS(6496), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6496), - [anon_sym_DOT_DOT_LT] = ACTIONS(6496), - [anon_sym_null] = ACTIONS(6496), - [anon_sym_true] = ACTIONS(6496), - [anon_sym_false] = ACTIONS(6496), - [aux_sym__val_number_decimal_token1] = ACTIONS(6496), - [aux_sym__val_number_decimal_token2] = ACTIONS(6496), - [anon_sym_DOT2] = ACTIONS(6496), - [aux_sym__val_number_decimal_token3] = ACTIONS(6496), - [aux_sym__val_number_token1] = ACTIONS(6496), - [aux_sym__val_number_token2] = ACTIONS(6496), - [aux_sym__val_number_token3] = ACTIONS(6496), - [aux_sym__val_number_token4] = ACTIONS(6496), - [aux_sym__val_number_token5] = ACTIONS(6496), - [aux_sym__val_number_token6] = ACTIONS(6496), - [anon_sym_0b] = ACTIONS(6496), - [anon_sym_0o] = ACTIONS(6496), - [anon_sym_0x] = ACTIONS(6496), - [sym_val_date] = ACTIONS(6496), - [anon_sym_DQUOTE] = ACTIONS(6496), - [sym__str_single_quotes] = ACTIONS(6496), - [sym__str_back_ticks] = ACTIONS(6496), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6496), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6496), - [anon_sym_CARET] = ACTIONS(6496), - [anon_sym_POUND] = ACTIONS(113), - }, - [2934] = { - [sym_comment] = STATE(2934), - [ts_builtin_sym_end] = ACTIONS(1196), - [anon_sym_export] = ACTIONS(1194), - [anon_sym_alias] = ACTIONS(1194), - [anon_sym_let] = ACTIONS(1194), - [anon_sym_let_DASHenv] = ACTIONS(1194), - [anon_sym_mut] = ACTIONS(1194), - [anon_sym_const] = ACTIONS(1194), - [anon_sym_SEMI] = ACTIONS(1194), - [sym_cmd_identifier] = ACTIONS(1194), - [anon_sym_LF] = ACTIONS(1196), - [anon_sym_def] = ACTIONS(1194), - [anon_sym_export_DASHenv] = ACTIONS(1194), - [anon_sym_extern] = ACTIONS(1194), - [anon_sym_module] = ACTIONS(1194), - [anon_sym_use] = ACTIONS(1194), - [anon_sym_LBRACK] = ACTIONS(1194), - [anon_sym_LPAREN] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1194), - [anon_sym_error] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_break] = ACTIONS(1194), - [anon_sym_continue] = ACTIONS(1194), - [anon_sym_for] = ACTIONS(1194), - [anon_sym_loop] = ACTIONS(1194), - [anon_sym_while] = ACTIONS(1194), - [anon_sym_do] = ACTIONS(1194), - [anon_sym_if] = ACTIONS(1194), - [anon_sym_match] = ACTIONS(1194), - [anon_sym_LBRACE] = ACTIONS(1194), - [anon_sym_DOT_DOT] = ACTIONS(1194), - [anon_sym_try] = ACTIONS(1194), - [anon_sym_return] = ACTIONS(1194), - [anon_sym_source] = ACTIONS(1194), - [anon_sym_source_DASHenv] = ACTIONS(1194), - [anon_sym_register] = ACTIONS(1194), - [anon_sym_hide] = ACTIONS(1194), - [anon_sym_hide_DASHenv] = ACTIONS(1194), - [anon_sym_overlay] = ACTIONS(1194), - [anon_sym_where] = ACTIONS(1194), - [anon_sym_not] = ACTIONS(1194), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1194), - [anon_sym_DOT_DOT_LT] = ACTIONS(1194), - [anon_sym_null] = ACTIONS(1194), - [anon_sym_true] = ACTIONS(1194), - [anon_sym_false] = ACTIONS(1194), - [aux_sym__val_number_decimal_token1] = ACTIONS(1194), - [aux_sym__val_number_decimal_token2] = ACTIONS(1194), - [anon_sym_DOT2] = ACTIONS(1194), - [aux_sym__val_number_decimal_token3] = ACTIONS(1194), - [aux_sym__val_number_token1] = ACTIONS(1194), - [aux_sym__val_number_token2] = ACTIONS(1194), - [aux_sym__val_number_token3] = ACTIONS(1194), - [aux_sym__val_number_token4] = ACTIONS(1194), - [aux_sym__val_number_token5] = ACTIONS(1194), - [aux_sym__val_number_token6] = ACTIONS(1194), - [anon_sym_0b] = ACTIONS(1194), - [anon_sym_0o] = ACTIONS(1194), - [anon_sym_0x] = ACTIONS(1194), - [sym_val_date] = ACTIONS(1194), - [anon_sym_DQUOTE] = ACTIONS(1194), - [sym__str_single_quotes] = ACTIONS(1194), - [sym__str_back_ticks] = ACTIONS(1194), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1194), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1194), - [anon_sym_CARET] = ACTIONS(1194), - [anon_sym_POUND] = ACTIONS(113), - }, - [2935] = { - [sym_comment] = STATE(2935), - [anon_sym_SEMI] = ACTIONS(1117), - [anon_sym_LF] = ACTIONS(1119), - [anon_sym_LBRACK] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1117), - [anon_sym_RPAREN] = ACTIONS(1117), - [anon_sym_PIPE] = ACTIONS(1117), - [anon_sym_DOLLAR] = ACTIONS(1117), - [anon_sym_GT] = ACTIONS(1117), - [anon_sym_DASH_DASH] = ACTIONS(1117), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1117), - [anon_sym_LBRACE] = ACTIONS(1117), - [anon_sym_RBRACE] = ACTIONS(1117), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_STAR] = ACTIONS(1117), - [anon_sym_STAR_STAR] = ACTIONS(1117), - [anon_sym_PLUS_PLUS] = ACTIONS(1117), - [anon_sym_SLASH] = ACTIONS(1117), - [anon_sym_mod] = ACTIONS(1117), - [anon_sym_SLASH_SLASH] = ACTIONS(1117), - [anon_sym_PLUS] = ACTIONS(1117), - [anon_sym_bit_DASHshl] = ACTIONS(1117), - [anon_sym_bit_DASHshr] = ACTIONS(1117), - [anon_sym_EQ_EQ] = ACTIONS(1117), - [anon_sym_BANG_EQ] = ACTIONS(1117), - [anon_sym_LT2] = ACTIONS(1117), - [anon_sym_LT_EQ] = ACTIONS(1117), - [anon_sym_GT_EQ] = ACTIONS(1117), - [anon_sym_not_DASHin] = ACTIONS(1117), - [anon_sym_starts_DASHwith] = ACTIONS(1117), - [anon_sym_ends_DASHwith] = ACTIONS(1117), - [anon_sym_EQ_TILDE] = ACTIONS(1117), - [anon_sym_BANG_TILDE] = ACTIONS(1117), - [anon_sym_bit_DASHand] = ACTIONS(1117), - [anon_sym_bit_DASHxor] = ACTIONS(1117), - [anon_sym_bit_DASHor] = ACTIONS(1117), - [anon_sym_and] = ACTIONS(1117), - [anon_sym_xor] = ACTIONS(1117), - [anon_sym_or] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1117), - [anon_sym_DOT] = ACTIONS(1117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1117), - [anon_sym_DOT_DOT_LT] = ACTIONS(1117), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_true] = ACTIONS(1117), - [anon_sym_false] = ACTIONS(1117), - [aux_sym__val_number_decimal_token1] = ACTIONS(1117), - [aux_sym__val_number_decimal_token2] = ACTIONS(1117), - [anon_sym_DOT2] = ACTIONS(1117), - [aux_sym__val_number_decimal_token3] = ACTIONS(1117), - [aux_sym__val_number_token1] = ACTIONS(1117), - [aux_sym__val_number_token2] = ACTIONS(1117), - [aux_sym__val_number_token3] = ACTIONS(1117), - [aux_sym__val_number_token4] = ACTIONS(1117), - [aux_sym__val_number_token5] = ACTIONS(1117), - [aux_sym__val_number_token6] = ACTIONS(1117), - [anon_sym_0b] = ACTIONS(1117), - [anon_sym_0o] = ACTIONS(1117), - [anon_sym_0x] = ACTIONS(1117), - [sym_val_date] = ACTIONS(1117), - [anon_sym_DQUOTE] = ACTIONS(1117), - [sym__str_single_quotes] = ACTIONS(1117), - [sym__str_back_ticks] = ACTIONS(1117), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1117), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1117), - [anon_sym_POUND] = ACTIONS(113), - }, - [2936] = { - [sym_comment] = STATE(2936), - [ts_builtin_sym_end] = ACTIONS(6639), - [anon_sym_export] = ACTIONS(6637), - [anon_sym_alias] = ACTIONS(6637), - [anon_sym_let] = ACTIONS(6637), - [anon_sym_let_DASHenv] = ACTIONS(6637), - [anon_sym_mut] = ACTIONS(6637), - [anon_sym_const] = ACTIONS(6637), - [anon_sym_SEMI] = ACTIONS(6637), - [sym_cmd_identifier] = ACTIONS(6637), - [anon_sym_LF] = ACTIONS(6639), - [anon_sym_def] = ACTIONS(6637), - [anon_sym_export_DASHenv] = ACTIONS(6637), - [anon_sym_extern] = ACTIONS(6637), - [anon_sym_module] = ACTIONS(6637), - [anon_sym_use] = ACTIONS(6637), - [anon_sym_LBRACK] = ACTIONS(6637), - [anon_sym_LPAREN] = ACTIONS(6637), - [anon_sym_DOLLAR] = ACTIONS(6637), - [anon_sym_error] = ACTIONS(6637), - [anon_sym_DASH] = ACTIONS(6637), - [anon_sym_break] = ACTIONS(6637), - [anon_sym_continue] = ACTIONS(6637), - [anon_sym_for] = ACTIONS(6637), - [anon_sym_loop] = ACTIONS(6637), - [anon_sym_while] = ACTIONS(6637), - [anon_sym_do] = ACTIONS(6637), - [anon_sym_if] = ACTIONS(6637), - [anon_sym_match] = ACTIONS(6637), - [anon_sym_LBRACE] = ACTIONS(6637), - [anon_sym_DOT_DOT] = ACTIONS(6637), - [anon_sym_try] = ACTIONS(6637), - [anon_sym_return] = ACTIONS(6637), - [anon_sym_source] = ACTIONS(6637), - [anon_sym_source_DASHenv] = ACTIONS(6637), - [anon_sym_register] = ACTIONS(6637), - [anon_sym_hide] = ACTIONS(6637), - [anon_sym_hide_DASHenv] = ACTIONS(6637), - [anon_sym_overlay] = ACTIONS(6637), - [anon_sym_where] = ACTIONS(6637), - [anon_sym_not] = ACTIONS(6637), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6637), - [anon_sym_DOT_DOT_LT] = ACTIONS(6637), - [anon_sym_null] = ACTIONS(6637), - [anon_sym_true] = ACTIONS(6637), - [anon_sym_false] = ACTIONS(6637), - [aux_sym__val_number_decimal_token1] = ACTIONS(6637), - [aux_sym__val_number_decimal_token2] = ACTIONS(6637), - [anon_sym_DOT2] = ACTIONS(6637), - [aux_sym__val_number_decimal_token3] = ACTIONS(6637), - [aux_sym__val_number_token1] = ACTIONS(6637), - [aux_sym__val_number_token2] = ACTIONS(6637), - [aux_sym__val_number_token3] = ACTIONS(6637), - [aux_sym__val_number_token4] = ACTIONS(6637), - [aux_sym__val_number_token5] = ACTIONS(6637), - [aux_sym__val_number_token6] = ACTIONS(6637), - [anon_sym_0b] = ACTIONS(6637), - [anon_sym_0o] = ACTIONS(6637), - [anon_sym_0x] = ACTIONS(6637), - [sym_val_date] = ACTIONS(6637), - [anon_sym_DQUOTE] = ACTIONS(6637), - [sym__str_single_quotes] = ACTIONS(6637), - [sym__str_back_ticks] = ACTIONS(6637), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6637), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6637), - [anon_sym_CARET] = ACTIONS(6637), - [anon_sym_POUND] = ACTIONS(113), - }, - [2937] = { - [sym_comment] = STATE(2937), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_RPAREN] = ACTIONS(959), - [anon_sym_PIPE] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH_DASH] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_RBRACE] = ACTIONS(959), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(959), - [anon_sym_PLUS_PLUS] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(959), - [anon_sym_SLASH_SLASH] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(959), - [anon_sym_bit_DASHshr] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(959), - [anon_sym_BANG_EQ] = ACTIONS(959), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(959), - [anon_sym_GT_EQ] = ACTIONS(959), - [anon_sym_not_DASHin] = ACTIONS(959), - [anon_sym_starts_DASHwith] = ACTIONS(959), - [anon_sym_ends_DASHwith] = ACTIONS(959), - [anon_sym_EQ_TILDE] = ACTIONS(959), - [anon_sym_BANG_TILDE] = ACTIONS(959), - [anon_sym_bit_DASHand] = ACTIONS(959), - [anon_sym_bit_DASHxor] = ACTIONS(959), - [anon_sym_bit_DASHor] = ACTIONS(959), - [anon_sym_and] = ACTIONS(959), - [anon_sym_xor] = ACTIONS(959), - [anon_sym_or] = ACTIONS(959), - [anon_sym_not] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_DOT_DOT_LT] = ACTIONS(959), - [anon_sym_null] = ACTIONS(959), - [anon_sym_true] = ACTIONS(959), - [anon_sym_false] = ACTIONS(959), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(959), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(959), - [aux_sym__val_number_token1] = ACTIONS(959), - [aux_sym__val_number_token2] = ACTIONS(959), - [aux_sym__val_number_token3] = ACTIONS(959), - [aux_sym__val_number_token4] = ACTIONS(959), - [aux_sym__val_number_token5] = ACTIONS(959), - [aux_sym__val_number_token6] = ACTIONS(959), - [anon_sym_0b] = ACTIONS(959), - [anon_sym_0o] = ACTIONS(959), - [anon_sym_0x] = ACTIONS(959), - [sym_val_date] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [sym__str_single_quotes] = ACTIONS(959), - [sym__str_back_ticks] = ACTIONS(959), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(959), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(959), - [aux_sym_unquoted_token5] = ACTIONS(3862), - [anon_sym_POUND] = ACTIONS(113), - }, - [2938] = { - [sym_comment] = STATE(2938), - [ts_builtin_sym_end] = ACTIONS(6643), - [anon_sym_export] = ACTIONS(6641), - [anon_sym_alias] = ACTIONS(6641), - [anon_sym_let] = ACTIONS(6641), - [anon_sym_let_DASHenv] = ACTIONS(6641), - [anon_sym_mut] = ACTIONS(6641), - [anon_sym_const] = ACTIONS(6641), - [anon_sym_SEMI] = ACTIONS(6641), - [sym_cmd_identifier] = ACTIONS(6641), - [anon_sym_LF] = ACTIONS(6643), - [anon_sym_def] = ACTIONS(6641), - [anon_sym_export_DASHenv] = ACTIONS(6641), - [anon_sym_extern] = ACTIONS(6641), - [anon_sym_module] = ACTIONS(6641), - [anon_sym_use] = ACTIONS(6641), - [anon_sym_LBRACK] = ACTIONS(6641), - [anon_sym_LPAREN] = ACTIONS(6641), - [anon_sym_DOLLAR] = ACTIONS(6641), - [anon_sym_error] = ACTIONS(6641), - [anon_sym_DASH] = ACTIONS(6641), - [anon_sym_break] = ACTIONS(6641), - [anon_sym_continue] = ACTIONS(6641), - [anon_sym_for] = ACTIONS(6641), - [anon_sym_loop] = ACTIONS(6641), - [anon_sym_while] = ACTIONS(6641), - [anon_sym_do] = ACTIONS(6641), - [anon_sym_if] = ACTIONS(6641), - [anon_sym_match] = ACTIONS(6641), - [anon_sym_LBRACE] = ACTIONS(6641), - [anon_sym_DOT_DOT] = ACTIONS(6641), - [anon_sym_try] = ACTIONS(6641), - [anon_sym_return] = ACTIONS(6641), - [anon_sym_source] = ACTIONS(6641), - [anon_sym_source_DASHenv] = ACTIONS(6641), - [anon_sym_register] = ACTIONS(6641), - [anon_sym_hide] = ACTIONS(6641), - [anon_sym_hide_DASHenv] = ACTIONS(6641), - [anon_sym_overlay] = ACTIONS(6641), - [anon_sym_where] = ACTIONS(6641), - [anon_sym_not] = ACTIONS(6641), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6641), - [anon_sym_DOT_DOT_LT] = ACTIONS(6641), - [anon_sym_null] = ACTIONS(6641), - [anon_sym_true] = ACTIONS(6641), - [anon_sym_false] = ACTIONS(6641), - [aux_sym__val_number_decimal_token1] = ACTIONS(6641), - [aux_sym__val_number_decimal_token2] = ACTIONS(6641), - [anon_sym_DOT2] = ACTIONS(6641), - [aux_sym__val_number_decimal_token3] = ACTIONS(6641), - [aux_sym__val_number_token1] = ACTIONS(6641), - [aux_sym__val_number_token2] = ACTIONS(6641), - [aux_sym__val_number_token3] = ACTIONS(6641), - [aux_sym__val_number_token4] = ACTIONS(6641), - [aux_sym__val_number_token5] = ACTIONS(6641), - [aux_sym__val_number_token6] = ACTIONS(6641), - [anon_sym_0b] = ACTIONS(6641), - [anon_sym_0o] = ACTIONS(6641), - [anon_sym_0x] = ACTIONS(6641), - [sym_val_date] = ACTIONS(6641), - [anon_sym_DQUOTE] = ACTIONS(6641), - [sym__str_single_quotes] = ACTIONS(6641), - [sym__str_back_ticks] = ACTIONS(6641), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6641), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6641), - [anon_sym_CARET] = ACTIONS(6641), - [anon_sym_POUND] = ACTIONS(113), - }, - [2939] = { - [sym_comment] = STATE(2939), - [anon_sym_export] = ACTIONS(6887), - [anon_sym_alias] = ACTIONS(6887), - [anon_sym_let] = ACTIONS(6887), - [anon_sym_let_DASHenv] = ACTIONS(6887), - [anon_sym_mut] = ACTIONS(6887), - [anon_sym_const] = ACTIONS(6887), - [anon_sym_SEMI] = ACTIONS(6889), - [sym_cmd_identifier] = ACTIONS(6887), - [anon_sym_LF] = ACTIONS(6892), - [anon_sym_def] = ACTIONS(6887), - [anon_sym_export_DASHenv] = ACTIONS(6887), - [anon_sym_extern] = ACTIONS(6887), - [anon_sym_module] = ACTIONS(6887), - [anon_sym_use] = ACTIONS(6887), - [anon_sym_LBRACK] = ACTIONS(6887), - [anon_sym_LPAREN] = ACTIONS(6887), - [anon_sym_RPAREN] = ACTIONS(6895), - [anon_sym_DOLLAR] = ACTIONS(6887), - [anon_sym_error] = ACTIONS(6887), - [anon_sym_DASH] = ACTIONS(6887), - [anon_sym_break] = ACTIONS(6887), - [anon_sym_continue] = ACTIONS(6887), - [anon_sym_for] = ACTIONS(6887), - [anon_sym_loop] = ACTIONS(6887), - [anon_sym_while] = ACTIONS(6887), - [anon_sym_do] = ACTIONS(6887), - [anon_sym_if] = ACTIONS(6887), - [anon_sym_match] = ACTIONS(6887), - [anon_sym_LBRACE] = ACTIONS(6887), - [anon_sym_DOT_DOT] = ACTIONS(6887), - [anon_sym_try] = ACTIONS(6887), - [anon_sym_return] = ACTIONS(6887), - [anon_sym_source] = ACTIONS(6887), - [anon_sym_source_DASHenv] = ACTIONS(6887), - [anon_sym_register] = ACTIONS(6887), - [anon_sym_hide] = ACTIONS(6887), - [anon_sym_hide_DASHenv] = ACTIONS(6887), - [anon_sym_overlay] = ACTIONS(6887), - [anon_sym_where] = ACTIONS(6887), - [anon_sym_not] = ACTIONS(6887), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6887), - [anon_sym_DOT_DOT_LT] = ACTIONS(6887), - [anon_sym_null] = ACTIONS(6887), - [anon_sym_true] = ACTIONS(6887), - [anon_sym_false] = ACTIONS(6887), - [aux_sym__val_number_decimal_token1] = ACTIONS(6887), - [aux_sym__val_number_decimal_token2] = ACTIONS(6887), - [anon_sym_DOT2] = ACTIONS(6887), - [aux_sym__val_number_decimal_token3] = ACTIONS(6887), - [aux_sym__val_number_token1] = ACTIONS(6887), - [aux_sym__val_number_token2] = ACTIONS(6887), - [aux_sym__val_number_token3] = ACTIONS(6887), - [aux_sym__val_number_token4] = ACTIONS(6887), - [aux_sym__val_number_token5] = ACTIONS(6887), - [aux_sym__val_number_token6] = ACTIONS(6887), - [anon_sym_0b] = ACTIONS(6887), - [anon_sym_0o] = ACTIONS(6887), - [anon_sym_0x] = ACTIONS(6887), - [sym_val_date] = ACTIONS(6887), - [anon_sym_DQUOTE] = ACTIONS(6887), - [sym__str_single_quotes] = ACTIONS(6887), - [sym__str_back_ticks] = ACTIONS(6887), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6887), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6887), - [anon_sym_CARET] = ACTIONS(6887), - [anon_sym_POUND] = ACTIONS(113), - }, - [2940] = { - [sym_comment] = STATE(2940), - [ts_builtin_sym_end] = ACTIONS(6402), - [anon_sym_export] = ACTIONS(6400), - [anon_sym_alias] = ACTIONS(6400), - [anon_sym_let] = ACTIONS(6400), - [anon_sym_let_DASHenv] = ACTIONS(6400), - [anon_sym_mut] = ACTIONS(6400), - [anon_sym_const] = ACTIONS(6400), - [anon_sym_SEMI] = ACTIONS(6400), - [sym_cmd_identifier] = ACTIONS(6400), - [anon_sym_LF] = ACTIONS(6402), - [anon_sym_def] = ACTIONS(6400), - [anon_sym_export_DASHenv] = ACTIONS(6400), - [anon_sym_extern] = ACTIONS(6400), - [anon_sym_module] = ACTIONS(6400), - [anon_sym_use] = ACTIONS(6400), - [anon_sym_LBRACK] = ACTIONS(6400), - [anon_sym_LPAREN] = ACTIONS(6400), - [anon_sym_DOLLAR] = ACTIONS(6400), - [anon_sym_error] = ACTIONS(6400), - [anon_sym_DASH] = ACTIONS(6400), - [anon_sym_break] = ACTIONS(6400), - [anon_sym_continue] = ACTIONS(6400), - [anon_sym_for] = ACTIONS(6400), - [anon_sym_loop] = ACTIONS(6400), - [anon_sym_while] = ACTIONS(6400), - [anon_sym_do] = ACTIONS(6400), - [anon_sym_if] = ACTIONS(6400), - [anon_sym_match] = ACTIONS(6400), - [anon_sym_LBRACE] = ACTIONS(6400), - [anon_sym_DOT_DOT] = ACTIONS(6400), - [anon_sym_try] = ACTIONS(6400), - [anon_sym_return] = ACTIONS(6400), - [anon_sym_source] = ACTIONS(6400), - [anon_sym_source_DASHenv] = ACTIONS(6400), - [anon_sym_register] = ACTIONS(6400), - [anon_sym_hide] = ACTIONS(6400), - [anon_sym_hide_DASHenv] = ACTIONS(6400), - [anon_sym_overlay] = ACTIONS(6400), - [anon_sym_where] = ACTIONS(6400), - [anon_sym_not] = ACTIONS(6400), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6400), - [anon_sym_DOT_DOT_LT] = ACTIONS(6400), - [anon_sym_null] = ACTIONS(6400), - [anon_sym_true] = ACTIONS(6400), - [anon_sym_false] = ACTIONS(6400), - [aux_sym__val_number_decimal_token1] = ACTIONS(6400), - [aux_sym__val_number_decimal_token2] = ACTIONS(6400), - [anon_sym_DOT2] = ACTIONS(6400), - [aux_sym__val_number_decimal_token3] = ACTIONS(6400), - [aux_sym__val_number_token1] = ACTIONS(6400), - [aux_sym__val_number_token2] = ACTIONS(6400), - [aux_sym__val_number_token3] = ACTIONS(6400), - [aux_sym__val_number_token4] = ACTIONS(6400), - [aux_sym__val_number_token5] = ACTIONS(6400), - [aux_sym__val_number_token6] = ACTIONS(6400), - [anon_sym_0b] = ACTIONS(6400), - [anon_sym_0o] = ACTIONS(6400), - [anon_sym_0x] = ACTIONS(6400), - [sym_val_date] = ACTIONS(6400), - [anon_sym_DQUOTE] = ACTIONS(6400), - [sym__str_single_quotes] = ACTIONS(6400), - [sym__str_back_ticks] = ACTIONS(6400), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6400), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6400), - [anon_sym_CARET] = ACTIONS(6400), - [anon_sym_POUND] = ACTIONS(113), - }, - [2941] = { - [sym_comment] = STATE(2941), - [ts_builtin_sym_end] = ACTIONS(6361), - [anon_sym_export] = ACTIONS(6359), - [anon_sym_alias] = ACTIONS(6359), - [anon_sym_let] = ACTIONS(6359), - [anon_sym_let_DASHenv] = ACTIONS(6359), - [anon_sym_mut] = ACTIONS(6359), - [anon_sym_const] = ACTIONS(6359), - [anon_sym_SEMI] = ACTIONS(6359), - [sym_cmd_identifier] = ACTIONS(6359), - [anon_sym_LF] = ACTIONS(6361), - [anon_sym_def] = ACTIONS(6359), - [anon_sym_export_DASHenv] = ACTIONS(6359), - [anon_sym_extern] = ACTIONS(6359), - [anon_sym_module] = ACTIONS(6359), - [anon_sym_use] = ACTIONS(6359), - [anon_sym_LBRACK] = ACTIONS(6359), - [anon_sym_LPAREN] = ACTIONS(6359), - [anon_sym_DOLLAR] = ACTIONS(6359), - [anon_sym_error] = ACTIONS(6359), - [anon_sym_DASH] = ACTIONS(6359), - [anon_sym_break] = ACTIONS(6359), - [anon_sym_continue] = ACTIONS(6359), - [anon_sym_for] = ACTIONS(6359), - [anon_sym_loop] = ACTIONS(6359), - [anon_sym_while] = ACTIONS(6359), - [anon_sym_do] = ACTIONS(6359), - [anon_sym_if] = ACTIONS(6359), - [anon_sym_match] = ACTIONS(6359), - [anon_sym_LBRACE] = ACTIONS(6359), - [anon_sym_DOT_DOT] = ACTIONS(6359), - [anon_sym_try] = ACTIONS(6359), - [anon_sym_return] = ACTIONS(6359), - [anon_sym_source] = ACTIONS(6359), - [anon_sym_source_DASHenv] = ACTIONS(6359), - [anon_sym_register] = ACTIONS(6359), - [anon_sym_hide] = ACTIONS(6359), - [anon_sym_hide_DASHenv] = ACTIONS(6359), - [anon_sym_overlay] = ACTIONS(6359), - [anon_sym_where] = ACTIONS(6359), - [anon_sym_not] = ACTIONS(6359), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6359), - [anon_sym_DOT_DOT_LT] = ACTIONS(6359), - [anon_sym_null] = ACTIONS(6359), - [anon_sym_true] = ACTIONS(6359), - [anon_sym_false] = ACTIONS(6359), - [aux_sym__val_number_decimal_token1] = ACTIONS(6359), - [aux_sym__val_number_decimal_token2] = ACTIONS(6359), - [anon_sym_DOT2] = ACTIONS(6359), - [aux_sym__val_number_decimal_token3] = ACTIONS(6359), - [aux_sym__val_number_token1] = ACTIONS(6359), - [aux_sym__val_number_token2] = ACTIONS(6359), - [aux_sym__val_number_token3] = ACTIONS(6359), - [aux_sym__val_number_token4] = ACTIONS(6359), - [aux_sym__val_number_token5] = ACTIONS(6359), - [aux_sym__val_number_token6] = ACTIONS(6359), - [anon_sym_0b] = ACTIONS(6359), - [anon_sym_0o] = ACTIONS(6359), - [anon_sym_0x] = ACTIONS(6359), - [sym_val_date] = ACTIONS(6359), - [anon_sym_DQUOTE] = ACTIONS(6359), - [sym__str_single_quotes] = ACTIONS(6359), - [sym__str_back_ticks] = ACTIONS(6359), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6359), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6359), - [anon_sym_CARET] = ACTIONS(6359), - [anon_sym_POUND] = ACTIONS(113), - }, - [2942] = { - [sym_comment] = STATE(2942), - [anon_sym_LBRACK] = ACTIONS(919), - [anon_sym_LPAREN] = ACTIONS(919), - [anon_sym_DOLLAR] = ACTIONS(917), - [anon_sym_GT] = ACTIONS(917), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_in] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(919), - [anon_sym_DOT_DOT] = ACTIONS(917), - [anon_sym_STAR] = ACTIONS(917), - [anon_sym_STAR_STAR] = ACTIONS(919), - [anon_sym_PLUS_PLUS] = ACTIONS(919), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_mod] = ACTIONS(919), - [anon_sym_SLASH_SLASH] = ACTIONS(919), - [anon_sym_PLUS] = ACTIONS(917), - [anon_sym_bit_DASHshl] = ACTIONS(919), - [anon_sym_bit_DASHshr] = ACTIONS(919), - [anon_sym_EQ_EQ] = ACTIONS(919), - [anon_sym_BANG_EQ] = ACTIONS(919), - [anon_sym_LT2] = ACTIONS(917), - [anon_sym_LT_EQ] = ACTIONS(919), - [anon_sym_GT_EQ] = ACTIONS(919), - [anon_sym_not_DASHin] = ACTIONS(919), - [anon_sym_starts_DASHwith] = ACTIONS(919), - [anon_sym_ends_DASHwith] = ACTIONS(919), - [anon_sym_EQ_TILDE] = ACTIONS(919), - [anon_sym_BANG_TILDE] = ACTIONS(919), - [anon_sym_bit_DASHand] = ACTIONS(919), - [anon_sym_bit_DASHxor] = ACTIONS(919), - [anon_sym_bit_DASHor] = ACTIONS(919), - [anon_sym_and] = ACTIONS(919), - [anon_sym_xor] = ACTIONS(919), - [anon_sym_or] = ACTIONS(919), - [anon_sym_not] = ACTIONS(917), - [anon_sym_DOT_DOT2] = ACTIONS(917), - [anon_sym_DOT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ] = ACTIONS(917), - [anon_sym_DOT_DOT_LT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(919), - [anon_sym_DOT_DOT_LT2] = ACTIONS(919), - [anon_sym_null] = ACTIONS(919), - [anon_sym_true] = ACTIONS(919), - [anon_sym_false] = ACTIONS(919), - [aux_sym__val_number_decimal_token1] = ACTIONS(917), - [aux_sym__val_number_decimal_token2] = ACTIONS(919), - [anon_sym_DOT2] = ACTIONS(917), - [aux_sym__val_number_decimal_token3] = ACTIONS(919), - [aux_sym__val_number_token1] = ACTIONS(919), - [aux_sym__val_number_token2] = ACTIONS(919), - [aux_sym__val_number_token3] = ACTIONS(919), - [aux_sym__val_number_token4] = ACTIONS(919), - [aux_sym__val_number_token5] = ACTIONS(919), - [aux_sym__val_number_token6] = ACTIONS(919), - [anon_sym_0b] = ACTIONS(917), - [sym_filesize_unit] = ACTIONS(917), - [sym_duration_unit] = ACTIONS(919), - [anon_sym_0o] = ACTIONS(917), - [anon_sym_0x] = ACTIONS(917), - [sym_val_date] = ACTIONS(919), - [anon_sym_DQUOTE] = ACTIONS(919), - [sym__str_single_quotes] = ACTIONS(919), - [sym__str_back_ticks] = ACTIONS(919), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(919), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(919), - [aux_sym_unquoted_token5] = ACTIONS(917), - [anon_sym_POUND] = ACTIONS(3), - }, - [2943] = { - [sym_comment] = STATE(2943), - [ts_builtin_sym_end] = ACTIONS(6470), - [anon_sym_export] = ACTIONS(6468), - [anon_sym_alias] = ACTIONS(6468), - [anon_sym_let] = ACTIONS(6468), - [anon_sym_let_DASHenv] = ACTIONS(6468), - [anon_sym_mut] = ACTIONS(6468), - [anon_sym_const] = ACTIONS(6468), - [anon_sym_SEMI] = ACTIONS(6468), - [sym_cmd_identifier] = ACTIONS(6468), - [anon_sym_LF] = ACTIONS(6470), - [anon_sym_def] = ACTIONS(6468), - [anon_sym_export_DASHenv] = ACTIONS(6468), - [anon_sym_extern] = ACTIONS(6468), - [anon_sym_module] = ACTIONS(6468), - [anon_sym_use] = ACTIONS(6468), - [anon_sym_LBRACK] = ACTIONS(6468), - [anon_sym_LPAREN] = ACTIONS(6468), - [anon_sym_DOLLAR] = ACTIONS(6468), - [anon_sym_error] = ACTIONS(6468), - [anon_sym_DASH] = ACTIONS(6468), - [anon_sym_break] = ACTIONS(6468), - [anon_sym_continue] = ACTIONS(6468), - [anon_sym_for] = ACTIONS(6468), - [anon_sym_loop] = ACTIONS(6468), - [anon_sym_while] = ACTIONS(6468), - [anon_sym_do] = ACTIONS(6468), - [anon_sym_if] = ACTIONS(6468), - [anon_sym_match] = ACTIONS(6468), - [anon_sym_LBRACE] = ACTIONS(6468), - [anon_sym_DOT_DOT] = ACTIONS(6468), - [anon_sym_try] = ACTIONS(6468), - [anon_sym_return] = ACTIONS(6468), - [anon_sym_source] = ACTIONS(6468), - [anon_sym_source_DASHenv] = ACTIONS(6468), - [anon_sym_register] = ACTIONS(6468), - [anon_sym_hide] = ACTIONS(6468), - [anon_sym_hide_DASHenv] = ACTIONS(6468), - [anon_sym_overlay] = ACTIONS(6468), - [anon_sym_where] = ACTIONS(6468), - [anon_sym_not] = ACTIONS(6468), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6468), - [anon_sym_DOT_DOT_LT] = ACTIONS(6468), - [anon_sym_null] = ACTIONS(6468), - [anon_sym_true] = ACTIONS(6468), - [anon_sym_false] = ACTIONS(6468), - [aux_sym__val_number_decimal_token1] = ACTIONS(6468), - [aux_sym__val_number_decimal_token2] = ACTIONS(6468), - [anon_sym_DOT2] = ACTIONS(6468), - [aux_sym__val_number_decimal_token3] = ACTIONS(6468), - [aux_sym__val_number_token1] = ACTIONS(6468), - [aux_sym__val_number_token2] = ACTIONS(6468), - [aux_sym__val_number_token3] = ACTIONS(6468), - [aux_sym__val_number_token4] = ACTIONS(6468), - [aux_sym__val_number_token5] = ACTIONS(6468), - [aux_sym__val_number_token6] = ACTIONS(6468), - [anon_sym_0b] = ACTIONS(6468), - [anon_sym_0o] = ACTIONS(6468), - [anon_sym_0x] = ACTIONS(6468), - [sym_val_date] = ACTIONS(6468), - [anon_sym_DQUOTE] = ACTIONS(6468), - [sym__str_single_quotes] = ACTIONS(6468), - [sym__str_back_ticks] = ACTIONS(6468), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6468), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6468), - [anon_sym_CARET] = ACTIONS(6468), - [anon_sym_POUND] = ACTIONS(113), - }, - [2944] = { - [sym_comment] = STATE(2944), - [ts_builtin_sym_end] = ACTIONS(6505), - [anon_sym_export] = ACTIONS(6503), - [anon_sym_alias] = ACTIONS(6503), - [anon_sym_let] = ACTIONS(6503), - [anon_sym_let_DASHenv] = ACTIONS(6503), - [anon_sym_mut] = ACTIONS(6503), - [anon_sym_const] = ACTIONS(6503), - [anon_sym_SEMI] = ACTIONS(6503), - [sym_cmd_identifier] = ACTIONS(6503), - [anon_sym_LF] = ACTIONS(6505), - [anon_sym_def] = ACTIONS(6503), - [anon_sym_export_DASHenv] = ACTIONS(6503), - [anon_sym_extern] = ACTIONS(6503), - [anon_sym_module] = ACTIONS(6503), - [anon_sym_use] = ACTIONS(6503), - [anon_sym_LBRACK] = ACTIONS(6503), - [anon_sym_LPAREN] = ACTIONS(6503), - [anon_sym_DOLLAR] = ACTIONS(6503), - [anon_sym_error] = ACTIONS(6503), - [anon_sym_DASH] = ACTIONS(6503), - [anon_sym_break] = ACTIONS(6503), - [anon_sym_continue] = ACTIONS(6503), - [anon_sym_for] = ACTIONS(6503), - [anon_sym_loop] = ACTIONS(6503), - [anon_sym_while] = ACTIONS(6503), - [anon_sym_do] = ACTIONS(6503), - [anon_sym_if] = ACTIONS(6503), - [anon_sym_match] = ACTIONS(6503), - [anon_sym_LBRACE] = ACTIONS(6503), - [anon_sym_DOT_DOT] = ACTIONS(6503), - [anon_sym_try] = ACTIONS(6503), - [anon_sym_return] = ACTIONS(6503), - [anon_sym_source] = ACTIONS(6503), - [anon_sym_source_DASHenv] = ACTIONS(6503), - [anon_sym_register] = ACTIONS(6503), - [anon_sym_hide] = ACTIONS(6503), - [anon_sym_hide_DASHenv] = ACTIONS(6503), - [anon_sym_overlay] = ACTIONS(6503), - [anon_sym_where] = ACTIONS(6503), - [anon_sym_not] = ACTIONS(6503), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6503), - [anon_sym_DOT_DOT_LT] = ACTIONS(6503), - [anon_sym_null] = ACTIONS(6503), - [anon_sym_true] = ACTIONS(6503), - [anon_sym_false] = ACTIONS(6503), - [aux_sym__val_number_decimal_token1] = ACTIONS(6503), - [aux_sym__val_number_decimal_token2] = ACTIONS(6503), - [anon_sym_DOT2] = ACTIONS(6503), - [aux_sym__val_number_decimal_token3] = ACTIONS(6503), - [aux_sym__val_number_token1] = ACTIONS(6503), - [aux_sym__val_number_token2] = ACTIONS(6503), - [aux_sym__val_number_token3] = ACTIONS(6503), - [aux_sym__val_number_token4] = ACTIONS(6503), - [aux_sym__val_number_token5] = ACTIONS(6503), - [aux_sym__val_number_token6] = ACTIONS(6503), - [anon_sym_0b] = ACTIONS(6503), - [anon_sym_0o] = ACTIONS(6503), - [anon_sym_0x] = ACTIONS(6503), - [sym_val_date] = ACTIONS(6503), - [anon_sym_DQUOTE] = ACTIONS(6503), - [sym__str_single_quotes] = ACTIONS(6503), - [sym__str_back_ticks] = ACTIONS(6503), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6503), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6503), - [anon_sym_CARET] = ACTIONS(6503), - [anon_sym_POUND] = ACTIONS(113), - }, - [2945] = { - [sym_comment] = STATE(2945), - [ts_builtin_sym_end] = ACTIONS(6752), - [anon_sym_export] = ACTIONS(6750), - [anon_sym_alias] = ACTIONS(6750), - [anon_sym_let] = ACTIONS(6750), - [anon_sym_let_DASHenv] = ACTIONS(6750), - [anon_sym_mut] = ACTIONS(6750), - [anon_sym_const] = ACTIONS(6750), - [anon_sym_SEMI] = ACTIONS(6750), - [sym_cmd_identifier] = ACTIONS(6750), - [anon_sym_LF] = ACTIONS(6752), - [anon_sym_def] = ACTIONS(6750), - [anon_sym_export_DASHenv] = ACTIONS(6750), - [anon_sym_extern] = ACTIONS(6750), - [anon_sym_module] = ACTIONS(6750), - [anon_sym_use] = ACTIONS(6750), - [anon_sym_LBRACK] = ACTIONS(6750), - [anon_sym_LPAREN] = ACTIONS(6750), - [anon_sym_DOLLAR] = ACTIONS(6750), - [anon_sym_error] = ACTIONS(6750), - [anon_sym_DASH] = ACTIONS(6750), - [anon_sym_break] = ACTIONS(6750), - [anon_sym_continue] = ACTIONS(6750), - [anon_sym_for] = ACTIONS(6750), - [anon_sym_loop] = ACTIONS(6750), - [anon_sym_while] = ACTIONS(6750), - [anon_sym_do] = ACTIONS(6750), - [anon_sym_if] = ACTIONS(6750), - [anon_sym_match] = ACTIONS(6750), - [anon_sym_LBRACE] = ACTIONS(6750), - [anon_sym_DOT_DOT] = ACTIONS(6750), - [anon_sym_try] = ACTIONS(6750), - [anon_sym_return] = ACTIONS(6750), - [anon_sym_source] = ACTIONS(6750), - [anon_sym_source_DASHenv] = ACTIONS(6750), - [anon_sym_register] = ACTIONS(6750), - [anon_sym_hide] = ACTIONS(6750), - [anon_sym_hide_DASHenv] = ACTIONS(6750), - [anon_sym_overlay] = ACTIONS(6750), - [anon_sym_where] = ACTIONS(6750), - [anon_sym_not] = ACTIONS(6750), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6750), - [anon_sym_DOT_DOT_LT] = ACTIONS(6750), - [anon_sym_null] = ACTIONS(6750), - [anon_sym_true] = ACTIONS(6750), - [anon_sym_false] = ACTIONS(6750), - [aux_sym__val_number_decimal_token1] = ACTIONS(6750), - [aux_sym__val_number_decimal_token2] = ACTIONS(6750), - [anon_sym_DOT2] = ACTIONS(6750), - [aux_sym__val_number_decimal_token3] = ACTIONS(6750), - [aux_sym__val_number_token1] = ACTIONS(6750), - [aux_sym__val_number_token2] = ACTIONS(6750), - [aux_sym__val_number_token3] = ACTIONS(6750), - [aux_sym__val_number_token4] = ACTIONS(6750), - [aux_sym__val_number_token5] = ACTIONS(6750), - [aux_sym__val_number_token6] = ACTIONS(6750), - [anon_sym_0b] = ACTIONS(6750), - [anon_sym_0o] = ACTIONS(6750), - [anon_sym_0x] = ACTIONS(6750), - [sym_val_date] = ACTIONS(6750), - [anon_sym_DQUOTE] = ACTIONS(6750), - [sym__str_single_quotes] = ACTIONS(6750), - [sym__str_back_ticks] = ACTIONS(6750), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6750), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6750), - [anon_sym_CARET] = ACTIONS(6750), - [anon_sym_POUND] = ACTIONS(113), - }, - [2946] = { - [sym_comment] = STATE(2946), - [anon_sym_SEMI] = ACTIONS(1158), - [anon_sym_LF] = ACTIONS(1160), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_LPAREN] = ACTIONS(1158), - [anon_sym_RPAREN] = ACTIONS(1158), - [anon_sym_PIPE] = ACTIONS(1158), - [anon_sym_DOLLAR] = ACTIONS(1158), - [anon_sym_GT] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_in] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1158), - [anon_sym_RBRACE] = ACTIONS(1158), - [anon_sym_DOT_DOT] = ACTIONS(1158), - [anon_sym_STAR] = ACTIONS(1158), - [anon_sym_STAR_STAR] = ACTIONS(1158), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_SLASH] = ACTIONS(1158), - [anon_sym_mod] = ACTIONS(1158), - [anon_sym_SLASH_SLASH] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1158), - [anon_sym_bit_DASHshl] = ACTIONS(1158), - [anon_sym_bit_DASHshr] = ACTIONS(1158), - [anon_sym_EQ_EQ] = ACTIONS(1158), - [anon_sym_BANG_EQ] = ACTIONS(1158), - [anon_sym_LT2] = ACTIONS(1158), - [anon_sym_LT_EQ] = ACTIONS(1158), - [anon_sym_GT_EQ] = ACTIONS(1158), - [anon_sym_not_DASHin] = ACTIONS(1158), - [anon_sym_starts_DASHwith] = ACTIONS(1158), - [anon_sym_ends_DASHwith] = ACTIONS(1158), - [anon_sym_EQ_TILDE] = ACTIONS(1158), - [anon_sym_BANG_TILDE] = ACTIONS(1158), - [anon_sym_bit_DASHand] = ACTIONS(1158), - [anon_sym_bit_DASHxor] = ACTIONS(1158), - [anon_sym_bit_DASHor] = ACTIONS(1158), - [anon_sym_and] = ACTIONS(1158), - [anon_sym_xor] = ACTIONS(1158), - [anon_sym_or] = ACTIONS(1158), - [anon_sym_not] = ACTIONS(1158), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1158), - [anon_sym_DOT_DOT_LT] = ACTIONS(1158), - [anon_sym_null] = ACTIONS(1158), - [anon_sym_true] = ACTIONS(1158), - [anon_sym_false] = ACTIONS(1158), - [aux_sym__val_number_decimal_token1] = ACTIONS(1158), - [aux_sym__val_number_decimal_token2] = ACTIONS(1158), - [anon_sym_DOT2] = ACTIONS(1158), - [aux_sym__val_number_decimal_token3] = ACTIONS(1158), - [aux_sym__val_number_token1] = ACTIONS(1158), - [aux_sym__val_number_token2] = ACTIONS(1158), - [aux_sym__val_number_token3] = ACTIONS(1158), - [aux_sym__val_number_token4] = ACTIONS(1158), - [aux_sym__val_number_token5] = ACTIONS(1158), - [aux_sym__val_number_token6] = ACTIONS(1158), - [anon_sym_0b] = ACTIONS(1158), - [anon_sym_0o] = ACTIONS(1158), - [anon_sym_0x] = ACTIONS(1158), - [sym_val_date] = ACTIONS(1158), - [anon_sym_DQUOTE] = ACTIONS(1158), - [sym__str_single_quotes] = ACTIONS(1158), - [sym__str_back_ticks] = ACTIONS(1158), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1158), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1158), - [aux_sym_unquoted_token6] = ACTIONS(1284), - [anon_sym_POUND] = ACTIONS(113), - }, - [2947] = { - [sym_comment] = STATE(2947), - [ts_builtin_sym_end] = ACTIONS(1352), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_alias] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_let_DASHenv] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1350), - [sym_cmd_identifier] = ACTIONS(1350), - [anon_sym_LF] = ACTIONS(1352), - [anon_sym_def] = ACTIONS(1350), - [anon_sym_export_DASHenv] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_LBRACK] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1350), - [anon_sym_DOLLAR] = ACTIONS(1350), - [anon_sym_error] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_DOT_DOT] = ACTIONS(1350), - [anon_sym_try] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_source] = ACTIONS(1350), - [anon_sym_source_DASHenv] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_hide] = ACTIONS(1350), - [anon_sym_hide_DASHenv] = ACTIONS(1350), - [anon_sym_overlay] = ACTIONS(1350), - [anon_sym_where] = ACTIONS(1350), - [anon_sym_not] = ACTIONS(1350), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1350), - [anon_sym_DOT_DOT_LT] = ACTIONS(1350), - [anon_sym_null] = ACTIONS(1350), - [anon_sym_true] = ACTIONS(1350), - [anon_sym_false] = ACTIONS(1350), - [aux_sym__val_number_decimal_token1] = ACTIONS(1350), - [aux_sym__val_number_decimal_token2] = ACTIONS(1350), - [anon_sym_DOT2] = ACTIONS(1350), - [aux_sym__val_number_decimal_token3] = ACTIONS(1350), - [aux_sym__val_number_token1] = ACTIONS(1350), - [aux_sym__val_number_token2] = ACTIONS(1350), - [aux_sym__val_number_token3] = ACTIONS(1350), - [aux_sym__val_number_token4] = ACTIONS(1350), - [aux_sym__val_number_token5] = ACTIONS(1350), - [aux_sym__val_number_token6] = ACTIONS(1350), - [anon_sym_0b] = ACTIONS(1350), - [anon_sym_0o] = ACTIONS(1350), - [anon_sym_0x] = ACTIONS(1350), - [sym_val_date] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [sym__str_single_quotes] = ACTIONS(1350), - [sym__str_back_ticks] = ACTIONS(1350), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1350), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1350), - [anon_sym_CARET] = ACTIONS(1350), - [anon_sym_POUND] = ACTIONS(113), - }, - [2948] = { - [sym_comment] = STATE(2948), - [ts_builtin_sym_end] = ACTIONS(961), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_PIPE] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH_DASH] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(959), - [anon_sym_PLUS_PLUS] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(959), - [anon_sym_SLASH_SLASH] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(959), - [anon_sym_bit_DASHshr] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(959), - [anon_sym_BANG_EQ] = ACTIONS(959), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(959), - [anon_sym_GT_EQ] = ACTIONS(959), - [anon_sym_not_DASHin] = ACTIONS(959), - [anon_sym_starts_DASHwith] = ACTIONS(959), - [anon_sym_ends_DASHwith] = ACTIONS(959), - [anon_sym_EQ_TILDE] = ACTIONS(959), - [anon_sym_BANG_TILDE] = ACTIONS(959), - [anon_sym_bit_DASHand] = ACTIONS(959), - [anon_sym_bit_DASHxor] = ACTIONS(959), - [anon_sym_bit_DASHor] = ACTIONS(959), - [anon_sym_and] = ACTIONS(959), - [anon_sym_xor] = ACTIONS(959), - [anon_sym_or] = ACTIONS(959), - [anon_sym_not] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_DOT_DOT_LT] = ACTIONS(959), - [anon_sym_null] = ACTIONS(959), - [anon_sym_true] = ACTIONS(959), - [anon_sym_false] = ACTIONS(959), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(959), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(959), - [aux_sym__val_number_token1] = ACTIONS(959), - [aux_sym__val_number_token2] = ACTIONS(959), - [aux_sym__val_number_token3] = ACTIONS(959), - [aux_sym__val_number_token4] = ACTIONS(959), - [aux_sym__val_number_token5] = ACTIONS(959), - [aux_sym__val_number_token6] = ACTIONS(959), - [anon_sym_0b] = ACTIONS(959), - [anon_sym_0o] = ACTIONS(959), - [anon_sym_0x] = ACTIONS(959), - [sym_val_date] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [sym__str_single_quotes] = ACTIONS(959), - [sym__str_back_ticks] = ACTIONS(959), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(959), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(959), - [aux_sym_unquoted_token5] = ACTIONS(4095), - [anon_sym_POUND] = ACTIONS(113), - }, - [2949] = { - [sym_path] = STATE(3142), - [sym_comment] = STATE(2949), - [aux_sym_cell_path_repeat1] = STATE(2955), - [anon_sym_LBRACK] = ACTIONS(989), - [anon_sym_LPAREN] = ACTIONS(989), - [anon_sym_DOLLAR] = ACTIONS(987), - [anon_sym_GT] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_in] = ACTIONS(987), - [anon_sym_LBRACE] = ACTIONS(989), - [anon_sym_DOT_DOT] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(987), - [anon_sym_STAR_STAR] = ACTIONS(989), - [anon_sym_PLUS_PLUS] = ACTIONS(989), - [anon_sym_SLASH] = ACTIONS(987), - [anon_sym_mod] = ACTIONS(989), - [anon_sym_SLASH_SLASH] = ACTIONS(989), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_bit_DASHshl] = ACTIONS(989), - [anon_sym_bit_DASHshr] = ACTIONS(989), - [anon_sym_EQ_EQ] = ACTIONS(989), - [anon_sym_BANG_EQ] = ACTIONS(989), - [anon_sym_LT2] = ACTIONS(987), - [anon_sym_LT_EQ] = ACTIONS(989), - [anon_sym_GT_EQ] = ACTIONS(989), - [anon_sym_not_DASHin] = ACTIONS(989), - [anon_sym_starts_DASHwith] = ACTIONS(989), - [anon_sym_ends_DASHwith] = ACTIONS(989), - [anon_sym_EQ_TILDE] = ACTIONS(989), - [anon_sym_BANG_TILDE] = ACTIONS(989), - [anon_sym_bit_DASHand] = ACTIONS(989), - [anon_sym_bit_DASHxor] = ACTIONS(989), - [anon_sym_bit_DASHor] = ACTIONS(989), - [anon_sym_and] = ACTIONS(989), - [anon_sym_xor] = ACTIONS(989), - [anon_sym_or] = ACTIONS(989), - [anon_sym_not] = ACTIONS(987), - [anon_sym_DOT_DOT2] = ACTIONS(987), - [anon_sym_DOT] = ACTIONS(6897), - [anon_sym_DOT_DOT_EQ] = ACTIONS(987), - [anon_sym_DOT_DOT_LT] = ACTIONS(987), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(989), - [anon_sym_DOT_DOT_LT2] = ACTIONS(989), - [anon_sym_null] = ACTIONS(989), - [anon_sym_true] = ACTIONS(989), - [anon_sym_false] = ACTIONS(989), - [aux_sym__val_number_decimal_token1] = ACTIONS(987), - [aux_sym__val_number_decimal_token2] = ACTIONS(989), - [anon_sym_DOT2] = ACTIONS(987), - [aux_sym__val_number_decimal_token3] = ACTIONS(989), - [aux_sym__val_number_token1] = ACTIONS(989), - [aux_sym__val_number_token2] = ACTIONS(989), - [aux_sym__val_number_token3] = ACTIONS(989), - [aux_sym__val_number_token4] = ACTIONS(989), - [aux_sym__val_number_token5] = ACTIONS(989), - [aux_sym__val_number_token6] = ACTIONS(989), - [anon_sym_0b] = ACTIONS(987), - [anon_sym_0o] = ACTIONS(987), - [anon_sym_0x] = ACTIONS(987), - [sym_val_date] = ACTIONS(989), - [anon_sym_DQUOTE] = ACTIONS(989), - [sym__str_single_quotes] = ACTIONS(989), - [sym__str_back_ticks] = ACTIONS(989), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(989), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(989), - [anon_sym_POUND] = ACTIONS(3), - }, - [2950] = { - [sym_comment] = STATE(2950), - [anon_sym_SEMI] = ACTIONS(1354), - [anon_sym_LF] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1354), - [anon_sym_LPAREN] = ACTIONS(1354), - [anon_sym_RPAREN] = ACTIONS(1354), - [anon_sym_PIPE] = ACTIONS(1354), - [anon_sym_DOLLAR] = ACTIONS(1354), - [anon_sym_GT] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_in] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_RBRACE] = ACTIONS(1354), - [anon_sym_DOT_DOT] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_STAR_STAR] = ACTIONS(1354), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [anon_sym_SLASH] = ACTIONS(1354), - [anon_sym_mod] = ACTIONS(1354), - [anon_sym_SLASH_SLASH] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_bit_DASHshl] = ACTIONS(1354), - [anon_sym_bit_DASHshr] = ACTIONS(1354), - [anon_sym_EQ_EQ] = ACTIONS(1354), - [anon_sym_BANG_EQ] = ACTIONS(1354), - [anon_sym_LT2] = ACTIONS(1354), - [anon_sym_LT_EQ] = ACTIONS(1354), - [anon_sym_GT_EQ] = ACTIONS(1354), - [anon_sym_not_DASHin] = ACTIONS(1354), - [anon_sym_starts_DASHwith] = ACTIONS(1354), - [anon_sym_ends_DASHwith] = ACTIONS(1354), - [anon_sym_EQ_TILDE] = ACTIONS(1354), - [anon_sym_BANG_TILDE] = ACTIONS(1354), - [anon_sym_bit_DASHand] = ACTIONS(1354), - [anon_sym_bit_DASHxor] = ACTIONS(1354), - [anon_sym_bit_DASHor] = ACTIONS(1354), - [anon_sym_and] = ACTIONS(1354), - [anon_sym_xor] = ACTIONS(1354), - [anon_sym_or] = ACTIONS(1354), - [anon_sym_not] = ACTIONS(1354), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1354), - [anon_sym_DOT_DOT_LT] = ACTIONS(1354), - [anon_sym_null] = ACTIONS(1354), - [anon_sym_true] = ACTIONS(1354), - [anon_sym_false] = ACTIONS(1354), - [aux_sym__val_number_decimal_token1] = ACTIONS(1354), - [aux_sym__val_number_decimal_token2] = ACTIONS(1354), - [anon_sym_DOT2] = ACTIONS(1354), - [aux_sym__val_number_decimal_token3] = ACTIONS(1354), - [aux_sym__val_number_token1] = ACTIONS(1354), - [aux_sym__val_number_token2] = ACTIONS(1354), - [aux_sym__val_number_token3] = ACTIONS(1354), - [aux_sym__val_number_token4] = ACTIONS(1354), - [aux_sym__val_number_token5] = ACTIONS(1354), - [aux_sym__val_number_token6] = ACTIONS(1354), - [anon_sym_0b] = ACTIONS(1354), - [anon_sym_0o] = ACTIONS(1354), - [anon_sym_0x] = ACTIONS(1354), - [sym_val_date] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1354), - [sym__str_single_quotes] = ACTIONS(1354), - [sym__str_back_ticks] = ACTIONS(1354), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1354), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1354), - [anon_sym_POUND] = ACTIONS(113), - }, - [2951] = { - [sym_comment] = STATE(2951), - [anon_sym_export] = ACTIONS(6887), - [anon_sym_alias] = ACTIONS(6887), - [anon_sym_let] = ACTIONS(6887), - [anon_sym_let_DASHenv] = ACTIONS(6887), - [anon_sym_mut] = ACTIONS(6887), - [anon_sym_const] = ACTIONS(6887), - [anon_sym_SEMI] = ACTIONS(6887), - [sym_cmd_identifier] = ACTIONS(6887), - [anon_sym_LF] = ACTIONS(6899), - [anon_sym_def] = ACTIONS(6887), - [anon_sym_export_DASHenv] = ACTIONS(6887), - [anon_sym_extern] = ACTIONS(6887), - [anon_sym_module] = ACTIONS(6887), - [anon_sym_use] = ACTIONS(6887), - [anon_sym_LBRACK] = ACTIONS(6887), - [anon_sym_LPAREN] = ACTIONS(6887), - [anon_sym_DOLLAR] = ACTIONS(6887), - [anon_sym_error] = ACTIONS(6887), - [anon_sym_DASH] = ACTIONS(6887), - [anon_sym_break] = ACTIONS(6887), - [anon_sym_continue] = ACTIONS(6887), - [anon_sym_for] = ACTIONS(6887), - [anon_sym_loop] = ACTIONS(6887), - [anon_sym_while] = ACTIONS(6887), - [anon_sym_do] = ACTIONS(6887), - [anon_sym_if] = ACTIONS(6887), - [anon_sym_match] = ACTIONS(6887), - [anon_sym_LBRACE] = ACTIONS(6887), - [anon_sym_DOT_DOT] = ACTIONS(6887), - [anon_sym_try] = ACTIONS(6887), - [anon_sym_return] = ACTIONS(6887), - [anon_sym_source] = ACTIONS(6887), - [anon_sym_source_DASHenv] = ACTIONS(6887), - [anon_sym_register] = ACTIONS(6887), - [anon_sym_hide] = ACTIONS(6887), - [anon_sym_hide_DASHenv] = ACTIONS(6887), - [anon_sym_overlay] = ACTIONS(6887), - [anon_sym_where] = ACTIONS(6887), - [anon_sym_not] = ACTIONS(6887), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6887), - [anon_sym_DOT_DOT_LT] = ACTIONS(6887), - [anon_sym_null] = ACTIONS(6887), - [anon_sym_true] = ACTIONS(6887), - [anon_sym_false] = ACTIONS(6887), - [aux_sym__val_number_decimal_token1] = ACTIONS(6887), - [aux_sym__val_number_decimal_token2] = ACTIONS(6887), - [anon_sym_DOT2] = ACTIONS(6887), - [aux_sym__val_number_decimal_token3] = ACTIONS(6887), - [aux_sym__val_number_token1] = ACTIONS(6887), - [aux_sym__val_number_token2] = ACTIONS(6887), - [aux_sym__val_number_token3] = ACTIONS(6887), - [aux_sym__val_number_token4] = ACTIONS(6887), - [aux_sym__val_number_token5] = ACTIONS(6887), - [aux_sym__val_number_token6] = ACTIONS(6887), - [anon_sym_0b] = ACTIONS(6887), - [anon_sym_0o] = ACTIONS(6887), - [anon_sym_0x] = ACTIONS(6887), - [sym_val_date] = ACTIONS(6887), - [anon_sym_DQUOTE] = ACTIONS(6887), - [sym__str_single_quotes] = ACTIONS(6887), - [sym__str_back_ticks] = ACTIONS(6887), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6887), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6887), - [anon_sym_CARET] = ACTIONS(6887), - [anon_sym_POUND] = ACTIONS(113), - }, - [2952] = { - [sym_comment] = STATE(2952), - [anon_sym_SEMI] = ACTIONS(1243), - [anon_sym_LF] = ACTIONS(1290), - [anon_sym_LBRACK] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_RPAREN] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_in] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_RBRACE] = ACTIONS(1243), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1243), - [anon_sym_STAR_STAR] = ACTIONS(1243), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_SLASH] = ACTIONS(1243), - [anon_sym_mod] = ACTIONS(1243), - [anon_sym_SLASH_SLASH] = ACTIONS(1243), - [anon_sym_PLUS] = ACTIONS(1243), - [anon_sym_bit_DASHshl] = ACTIONS(1243), - [anon_sym_bit_DASHshr] = ACTIONS(1243), - [anon_sym_EQ_EQ] = ACTIONS(1243), - [anon_sym_BANG_EQ] = ACTIONS(1243), - [anon_sym_LT2] = ACTIONS(1243), - [anon_sym_LT_EQ] = ACTIONS(1243), - [anon_sym_GT_EQ] = ACTIONS(1243), - [anon_sym_not_DASHin] = ACTIONS(1243), - [anon_sym_starts_DASHwith] = ACTIONS(1243), - [anon_sym_ends_DASHwith] = ACTIONS(1243), - [anon_sym_EQ_TILDE] = ACTIONS(1243), - [anon_sym_BANG_TILDE] = ACTIONS(1243), - [anon_sym_bit_DASHand] = ACTIONS(1243), - [anon_sym_bit_DASHxor] = ACTIONS(1243), - [anon_sym_bit_DASHor] = ACTIONS(1243), - [anon_sym_and] = ACTIONS(1243), - [anon_sym_xor] = ACTIONS(1243), - [anon_sym_or] = ACTIONS(1243), - [anon_sym_not] = ACTIONS(1243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1243), - [anon_sym_DOT_DOT_LT] = ACTIONS(1243), - [anon_sym_null] = ACTIONS(1243), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_decimal_token2] = ACTIONS(1243), - [anon_sym_DOT2] = ACTIONS(1243), - [aux_sym__val_number_decimal_token3] = ACTIONS(1243), - [aux_sym__val_number_token1] = ACTIONS(1243), - [aux_sym__val_number_token2] = ACTIONS(1243), - [aux_sym__val_number_token3] = ACTIONS(1243), - [aux_sym__val_number_token4] = ACTIONS(1243), - [aux_sym__val_number_token5] = ACTIONS(1243), - [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_0b] = ACTIONS(1243), - [anon_sym_0o] = ACTIONS(1243), - [anon_sym_0x] = ACTIONS(1243), - [sym_val_date] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym__str_single_quotes] = ACTIONS(1243), - [sym__str_back_ticks] = ACTIONS(1243), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1243), - [anon_sym_POUND] = ACTIONS(113), - }, - [2953] = { - [sym_comment] = STATE(2953), - [anon_sym_export] = ACTIONS(6901), - [anon_sym_alias] = ACTIONS(6901), - [anon_sym_let] = ACTIONS(6901), - [anon_sym_let_DASHenv] = ACTIONS(6901), - [anon_sym_mut] = ACTIONS(6901), - [anon_sym_const] = ACTIONS(6901), - [anon_sym_SEMI] = ACTIONS(6901), - [sym_cmd_identifier] = ACTIONS(6901), - [anon_sym_LF] = ACTIONS(6903), - [anon_sym_def] = ACTIONS(6901), - [anon_sym_export_DASHenv] = ACTIONS(6901), - [anon_sym_extern] = ACTIONS(6901), - [anon_sym_module] = ACTIONS(6901), - [anon_sym_use] = ACTIONS(6901), - [anon_sym_LBRACK] = ACTIONS(6901), - [anon_sym_LPAREN] = ACTIONS(6901), - [anon_sym_DOLLAR] = ACTIONS(6901), - [anon_sym_error] = ACTIONS(6901), - [anon_sym_DASH] = ACTIONS(6901), - [anon_sym_break] = ACTIONS(6901), - [anon_sym_continue] = ACTIONS(6901), - [anon_sym_for] = ACTIONS(6901), - [anon_sym_loop] = ACTIONS(6901), - [anon_sym_while] = ACTIONS(6901), - [anon_sym_do] = ACTIONS(6901), - [anon_sym_if] = ACTIONS(6901), - [anon_sym_match] = ACTIONS(6901), - [anon_sym_LBRACE] = ACTIONS(6901), - [anon_sym_DOT_DOT] = ACTIONS(6901), - [anon_sym_try] = ACTIONS(6901), - [anon_sym_return] = ACTIONS(6901), - [anon_sym_source] = ACTIONS(6901), - [anon_sym_source_DASHenv] = ACTIONS(6901), - [anon_sym_register] = ACTIONS(6901), - [anon_sym_hide] = ACTIONS(6901), - [anon_sym_hide_DASHenv] = ACTIONS(6901), - [anon_sym_overlay] = ACTIONS(6901), - [anon_sym_where] = ACTIONS(6901), - [anon_sym_not] = ACTIONS(6901), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6901), - [anon_sym_DOT_DOT_LT] = ACTIONS(6901), - [anon_sym_null] = ACTIONS(6901), - [anon_sym_true] = ACTIONS(6901), - [anon_sym_false] = ACTIONS(6901), - [aux_sym__val_number_decimal_token1] = ACTIONS(6901), - [aux_sym__val_number_decimal_token2] = ACTIONS(6901), - [anon_sym_DOT2] = ACTIONS(6901), - [aux_sym__val_number_decimal_token3] = ACTIONS(6901), - [aux_sym__val_number_token1] = ACTIONS(6901), - [aux_sym__val_number_token2] = ACTIONS(6901), - [aux_sym__val_number_token3] = ACTIONS(6901), - [aux_sym__val_number_token4] = ACTIONS(6901), - [aux_sym__val_number_token5] = ACTIONS(6901), - [aux_sym__val_number_token6] = ACTIONS(6901), - [anon_sym_0b] = ACTIONS(6901), - [anon_sym_0o] = ACTIONS(6901), - [anon_sym_0x] = ACTIONS(6901), - [sym_val_date] = ACTIONS(6901), - [anon_sym_DQUOTE] = ACTIONS(6901), - [sym__str_single_quotes] = ACTIONS(6901), - [sym__str_back_ticks] = ACTIONS(6901), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6901), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6901), - [anon_sym_CARET] = ACTIONS(6901), - [anon_sym_POUND] = ACTIONS(113), - }, - [2954] = { - [sym_comment] = STATE(2954), - [anon_sym_SEMI] = ACTIONS(1358), - [anon_sym_LF] = ACTIONS(1360), - [anon_sym_LBRACK] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1358), - [anon_sym_RPAREN] = ACTIONS(1358), - [anon_sym_PIPE] = ACTIONS(1358), - [anon_sym_DOLLAR] = ACTIONS(1358), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_in] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_RBRACE] = ACTIONS(1358), - [anon_sym_DOT_DOT] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_STAR_STAR] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_SLASH] = ACTIONS(1358), - [anon_sym_mod] = ACTIONS(1358), - [anon_sym_SLASH_SLASH] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_bit_DASHshl] = ACTIONS(1358), - [anon_sym_bit_DASHshr] = ACTIONS(1358), - [anon_sym_EQ_EQ] = ACTIONS(1358), - [anon_sym_BANG_EQ] = ACTIONS(1358), - [anon_sym_LT2] = ACTIONS(1358), - [anon_sym_LT_EQ] = ACTIONS(1358), - [anon_sym_GT_EQ] = ACTIONS(1358), - [anon_sym_not_DASHin] = ACTIONS(1358), - [anon_sym_starts_DASHwith] = ACTIONS(1358), - [anon_sym_ends_DASHwith] = ACTIONS(1358), - [anon_sym_EQ_TILDE] = ACTIONS(1358), - [anon_sym_BANG_TILDE] = ACTIONS(1358), - [anon_sym_bit_DASHand] = ACTIONS(1358), - [anon_sym_bit_DASHxor] = ACTIONS(1358), - [anon_sym_bit_DASHor] = ACTIONS(1358), - [anon_sym_and] = ACTIONS(1358), - [anon_sym_xor] = ACTIONS(1358), - [anon_sym_or] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1358), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1358), - [anon_sym_DOT_DOT_LT] = ACTIONS(1358), - [anon_sym_null] = ACTIONS(1358), - [anon_sym_true] = ACTIONS(1358), - [anon_sym_false] = ACTIONS(1358), - [aux_sym__val_number_decimal_token1] = ACTIONS(1358), - [aux_sym__val_number_decimal_token2] = ACTIONS(1358), - [anon_sym_DOT2] = ACTIONS(1358), - [aux_sym__val_number_decimal_token3] = ACTIONS(1358), - [aux_sym__val_number_token1] = ACTIONS(1358), - [aux_sym__val_number_token2] = ACTIONS(1358), - [aux_sym__val_number_token3] = ACTIONS(1358), - [aux_sym__val_number_token4] = ACTIONS(1358), - [aux_sym__val_number_token5] = ACTIONS(1358), - [aux_sym__val_number_token6] = ACTIONS(1358), - [anon_sym_0b] = ACTIONS(1358), - [anon_sym_0o] = ACTIONS(1358), - [anon_sym_0x] = ACTIONS(1358), - [sym_val_date] = ACTIONS(1358), - [anon_sym_DQUOTE] = ACTIONS(1358), - [sym__str_single_quotes] = ACTIONS(1358), - [sym__str_back_ticks] = ACTIONS(1358), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1358), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1358), - [anon_sym_POUND] = ACTIONS(113), - }, - [2955] = { - [sym_path] = STATE(3142), - [sym_comment] = STATE(2955), - [aux_sym_cell_path_repeat1] = STATE(2958), - [anon_sym_LBRACK] = ACTIONS(1008), - [anon_sym_LPAREN] = ACTIONS(1008), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_in] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1008), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_STAR_STAR] = ACTIONS(1008), - [anon_sym_PLUS_PLUS] = ACTIONS(1008), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_mod] = ACTIONS(1008), - [anon_sym_SLASH_SLASH] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_bit_DASHshl] = ACTIONS(1008), - [anon_sym_bit_DASHshr] = ACTIONS(1008), - [anon_sym_EQ_EQ] = ACTIONS(1008), - [anon_sym_BANG_EQ] = ACTIONS(1008), - [anon_sym_LT2] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1008), - [anon_sym_GT_EQ] = ACTIONS(1008), - [anon_sym_not_DASHin] = ACTIONS(1008), - [anon_sym_starts_DASHwith] = ACTIONS(1008), - [anon_sym_ends_DASHwith] = ACTIONS(1008), - [anon_sym_EQ_TILDE] = ACTIONS(1008), - [anon_sym_BANG_TILDE] = ACTIONS(1008), - [anon_sym_bit_DASHand] = ACTIONS(1008), - [anon_sym_bit_DASHxor] = ACTIONS(1008), - [anon_sym_bit_DASHor] = ACTIONS(1008), - [anon_sym_and] = ACTIONS(1008), - [anon_sym_xor] = ACTIONS(1008), - [anon_sym_or] = ACTIONS(1008), - [anon_sym_not] = ACTIONS(1006), - [anon_sym_DOT_DOT2] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(6897), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), - [anon_sym_null] = ACTIONS(1008), - [anon_sym_true] = ACTIONS(1008), - [anon_sym_false] = ACTIONS(1008), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1008), - [anon_sym_DOT2] = ACTIONS(1006), - [aux_sym__val_number_decimal_token3] = ACTIONS(1008), - [aux_sym__val_number_token1] = ACTIONS(1008), - [aux_sym__val_number_token2] = ACTIONS(1008), - [aux_sym__val_number_token3] = ACTIONS(1008), - [aux_sym__val_number_token4] = ACTIONS(1008), - [aux_sym__val_number_token5] = ACTIONS(1008), - [aux_sym__val_number_token6] = ACTIONS(1008), - [anon_sym_0b] = ACTIONS(1006), - [anon_sym_0o] = ACTIONS(1006), - [anon_sym_0x] = ACTIONS(1006), - [sym_val_date] = ACTIONS(1008), - [anon_sym_DQUOTE] = ACTIONS(1008), - [sym__str_single_quotes] = ACTIONS(1008), - [sym__str_back_ticks] = ACTIONS(1008), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1008), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1008), - [anon_sym_POUND] = ACTIONS(3), - }, - [2956] = { - [sym_comment] = STATE(2956), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_RPAREN] = ACTIONS(959), - [anon_sym_PIPE] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH_DASH] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_RBRACE] = ACTIONS(959), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(959), - [anon_sym_PLUS_PLUS] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(959), - [anon_sym_SLASH_SLASH] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(959), - [anon_sym_bit_DASHshr] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(959), - [anon_sym_BANG_EQ] = ACTIONS(959), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(959), - [anon_sym_GT_EQ] = ACTIONS(959), - [anon_sym_not_DASHin] = ACTIONS(959), - [anon_sym_starts_DASHwith] = ACTIONS(959), - [anon_sym_ends_DASHwith] = ACTIONS(959), - [anon_sym_EQ_TILDE] = ACTIONS(959), - [anon_sym_BANG_TILDE] = ACTIONS(959), - [anon_sym_bit_DASHand] = ACTIONS(959), - [anon_sym_bit_DASHxor] = ACTIONS(959), - [anon_sym_bit_DASHor] = ACTIONS(959), - [anon_sym_and] = ACTIONS(959), - [anon_sym_xor] = ACTIONS(959), - [anon_sym_or] = ACTIONS(959), - [anon_sym_not] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_DOT_DOT_LT] = ACTIONS(959), - [anon_sym_null] = ACTIONS(959), - [anon_sym_true] = ACTIONS(959), - [anon_sym_false] = ACTIONS(959), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(959), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(959), - [aux_sym__val_number_token1] = ACTIONS(959), - [aux_sym__val_number_token2] = ACTIONS(959), - [aux_sym__val_number_token3] = ACTIONS(959), - [aux_sym__val_number_token4] = ACTIONS(959), - [aux_sym__val_number_token5] = ACTIONS(959), - [aux_sym__val_number_token6] = ACTIONS(959), - [anon_sym_0b] = ACTIONS(959), - [anon_sym_0o] = ACTIONS(959), - [anon_sym_0x] = ACTIONS(959), - [sym_val_date] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [sym__str_single_quotes] = ACTIONS(959), - [sym__str_back_ticks] = ACTIONS(959), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(959), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(959), - [anon_sym_POUND] = ACTIONS(113), - }, - [2957] = { - [sym_comment] = STATE(2957), - [anon_sym_SEMI] = ACTIONS(1418), - [anon_sym_LF] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1418), - [anon_sym_LPAREN] = ACTIONS(1418), - [anon_sym_RPAREN] = ACTIONS(1418), - [anon_sym_PIPE] = ACTIONS(1418), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_GT] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_in] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_RBRACE] = ACTIONS(1418), - [anon_sym_DOT_DOT] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_STAR_STAR] = ACTIONS(1418), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_SLASH] = ACTIONS(1418), - [anon_sym_mod] = ACTIONS(1418), - [anon_sym_SLASH_SLASH] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_bit_DASHshl] = ACTIONS(1418), - [anon_sym_bit_DASHshr] = ACTIONS(1418), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_LT2] = ACTIONS(1418), - [anon_sym_LT_EQ] = ACTIONS(1418), - [anon_sym_GT_EQ] = ACTIONS(1418), - [anon_sym_not_DASHin] = ACTIONS(1418), - [anon_sym_starts_DASHwith] = ACTIONS(1418), - [anon_sym_ends_DASHwith] = ACTIONS(1418), - [anon_sym_EQ_TILDE] = ACTIONS(1418), - [anon_sym_BANG_TILDE] = ACTIONS(1418), - [anon_sym_bit_DASHand] = ACTIONS(1418), - [anon_sym_bit_DASHxor] = ACTIONS(1418), - [anon_sym_bit_DASHor] = ACTIONS(1418), - [anon_sym_and] = ACTIONS(1418), - [anon_sym_xor] = ACTIONS(1418), - [anon_sym_or] = ACTIONS(1418), - [anon_sym_not] = ACTIONS(1418), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1418), - [anon_sym_DOT_DOT_LT] = ACTIONS(1418), - [anon_sym_null] = ACTIONS(1418), - [anon_sym_true] = ACTIONS(1418), - [anon_sym_false] = ACTIONS(1418), - [aux_sym__val_number_decimal_token1] = ACTIONS(1418), - [aux_sym__val_number_decimal_token2] = ACTIONS(1418), - [anon_sym_DOT2] = ACTIONS(1418), - [aux_sym__val_number_decimal_token3] = ACTIONS(1418), - [aux_sym__val_number_token1] = ACTIONS(1418), - [aux_sym__val_number_token2] = ACTIONS(1418), - [aux_sym__val_number_token3] = ACTIONS(1418), - [aux_sym__val_number_token4] = ACTIONS(1418), - [aux_sym__val_number_token5] = ACTIONS(1418), - [aux_sym__val_number_token6] = ACTIONS(1418), - [anon_sym_0b] = ACTIONS(1418), - [anon_sym_0o] = ACTIONS(1418), - [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1418), - [anon_sym_DQUOTE] = ACTIONS(1418), - [sym__str_single_quotes] = ACTIONS(1418), - [sym__str_back_ticks] = ACTIONS(1418), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1418), - [anon_sym_POUND] = ACTIONS(113), - }, - [2958] = { - [sym_path] = STATE(3142), - [sym_comment] = STATE(2958), - [aux_sym_cell_path_repeat1] = STATE(2958), - [anon_sym_LBRACK] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1001), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_GT] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_in] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1001), - [anon_sym_DOT_DOT] = ACTIONS(999), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_STAR_STAR] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(999), - [anon_sym_mod] = ACTIONS(1001), - [anon_sym_SLASH_SLASH] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_bit_DASHshl] = ACTIONS(1001), - [anon_sym_bit_DASHshr] = ACTIONS(1001), - [anon_sym_EQ_EQ] = ACTIONS(1001), - [anon_sym_BANG_EQ] = ACTIONS(1001), - [anon_sym_LT2] = ACTIONS(999), - [anon_sym_LT_EQ] = ACTIONS(1001), - [anon_sym_GT_EQ] = ACTIONS(1001), - [anon_sym_not_DASHin] = ACTIONS(1001), - [anon_sym_starts_DASHwith] = ACTIONS(1001), - [anon_sym_ends_DASHwith] = ACTIONS(1001), - [anon_sym_EQ_TILDE] = ACTIONS(1001), - [anon_sym_BANG_TILDE] = ACTIONS(1001), - [anon_sym_bit_DASHand] = ACTIONS(1001), - [anon_sym_bit_DASHxor] = ACTIONS(1001), - [anon_sym_bit_DASHor] = ACTIONS(1001), - [anon_sym_and] = ACTIONS(1001), - [anon_sym_xor] = ACTIONS(1001), - [anon_sym_or] = ACTIONS(1001), - [anon_sym_not] = ACTIONS(999), - [anon_sym_DOT_DOT2] = ACTIONS(999), - [anon_sym_DOT] = ACTIONS(6905), - [anon_sym_DOT_DOT_EQ] = ACTIONS(999), - [anon_sym_DOT_DOT_LT] = ACTIONS(999), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1001), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1001), - [anon_sym_null] = ACTIONS(1001), - [anon_sym_true] = ACTIONS(1001), - [anon_sym_false] = ACTIONS(1001), - [aux_sym__val_number_decimal_token1] = ACTIONS(999), - [aux_sym__val_number_decimal_token2] = ACTIONS(1001), - [anon_sym_DOT2] = ACTIONS(999), - [aux_sym__val_number_decimal_token3] = ACTIONS(1001), - [aux_sym__val_number_token1] = ACTIONS(1001), - [aux_sym__val_number_token2] = ACTIONS(1001), - [aux_sym__val_number_token3] = ACTIONS(1001), - [aux_sym__val_number_token4] = ACTIONS(1001), - [aux_sym__val_number_token5] = ACTIONS(1001), - [aux_sym__val_number_token6] = ACTIONS(1001), - [anon_sym_0b] = ACTIONS(999), - [anon_sym_0o] = ACTIONS(999), - [anon_sym_0x] = ACTIONS(999), - [sym_val_date] = ACTIONS(1001), - [anon_sym_DQUOTE] = ACTIONS(1001), - [sym__str_single_quotes] = ACTIONS(1001), - [sym__str_back_ticks] = ACTIONS(1001), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1001), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1001), - [anon_sym_POUND] = ACTIONS(3), - }, - [2959] = { - [sym_comment] = STATE(2959), - [anon_sym_SEMI] = ACTIONS(1342), - [anon_sym_LF] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_RPAREN] = ACTIONS(1342), - [anon_sym_PIPE] = ACTIONS(1342), - [anon_sym_DOLLAR] = ACTIONS(1342), - [anon_sym_GT] = ACTIONS(1342), - [anon_sym_DASH_DASH] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_in] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_RBRACE] = ACTIONS(1342), - [anon_sym_DOT_DOT] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_STAR_STAR] = ACTIONS(1342), - [anon_sym_PLUS_PLUS] = ACTIONS(1342), - [anon_sym_SLASH] = ACTIONS(1342), - [anon_sym_mod] = ACTIONS(1342), - [anon_sym_SLASH_SLASH] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_bit_DASHshl] = ACTIONS(1342), - [anon_sym_bit_DASHshr] = ACTIONS(1342), - [anon_sym_EQ_EQ] = ACTIONS(1342), - [anon_sym_BANG_EQ] = ACTIONS(1342), - [anon_sym_LT2] = ACTIONS(1342), - [anon_sym_LT_EQ] = ACTIONS(1342), - [anon_sym_GT_EQ] = ACTIONS(1342), - [anon_sym_not_DASHin] = ACTIONS(1342), - [anon_sym_starts_DASHwith] = ACTIONS(1342), - [anon_sym_ends_DASHwith] = ACTIONS(1342), - [anon_sym_EQ_TILDE] = ACTIONS(1342), - [anon_sym_BANG_TILDE] = ACTIONS(1342), - [anon_sym_bit_DASHand] = ACTIONS(1342), - [anon_sym_bit_DASHxor] = ACTIONS(1342), - [anon_sym_bit_DASHor] = ACTIONS(1342), - [anon_sym_and] = ACTIONS(1342), - [anon_sym_xor] = ACTIONS(1342), - [anon_sym_or] = ACTIONS(1342), - [anon_sym_not] = ACTIONS(1342), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1342), - [anon_sym_DOT_DOT_LT] = ACTIONS(1342), - [anon_sym_null] = ACTIONS(1342), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym__val_number_decimal_token1] = ACTIONS(1342), - [aux_sym__val_number_decimal_token2] = ACTIONS(1342), - [anon_sym_DOT2] = ACTIONS(1342), - [aux_sym__val_number_decimal_token3] = ACTIONS(1342), - [aux_sym__val_number_token1] = ACTIONS(1342), - [aux_sym__val_number_token2] = ACTIONS(1342), - [aux_sym__val_number_token3] = ACTIONS(1342), - [aux_sym__val_number_token4] = ACTIONS(1342), - [aux_sym__val_number_token5] = ACTIONS(1342), - [aux_sym__val_number_token6] = ACTIONS(1342), - [anon_sym_0b] = ACTIONS(1342), - [anon_sym_0o] = ACTIONS(1342), - [anon_sym_0x] = ACTIONS(1342), - [sym_val_date] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [sym__str_single_quotes] = ACTIONS(1342), - [sym__str_back_ticks] = ACTIONS(1342), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1342), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1342), - [anon_sym_POUND] = ACTIONS(113), - }, - [2960] = { - [sym_comment] = STATE(2960), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym_LF] = ACTIONS(1314), - [anon_sym_LBRACK] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1312), - [anon_sym_RPAREN] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_DOLLAR] = ACTIONS(1312), - [anon_sym_GT] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_in] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_RBRACE] = ACTIONS(1312), - [anon_sym_DOT_DOT] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_STAR_STAR] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_SLASH] = ACTIONS(1312), - [anon_sym_mod] = ACTIONS(1312), - [anon_sym_SLASH_SLASH] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_bit_DASHshl] = ACTIONS(1312), - [anon_sym_bit_DASHshr] = ACTIONS(1312), - [anon_sym_EQ_EQ] = ACTIONS(1312), - [anon_sym_BANG_EQ] = ACTIONS(1312), - [anon_sym_LT2] = ACTIONS(1312), - [anon_sym_LT_EQ] = ACTIONS(1312), - [anon_sym_GT_EQ] = ACTIONS(1312), - [anon_sym_not_DASHin] = ACTIONS(1312), - [anon_sym_starts_DASHwith] = ACTIONS(1312), - [anon_sym_ends_DASHwith] = ACTIONS(1312), - [anon_sym_EQ_TILDE] = ACTIONS(1312), - [anon_sym_BANG_TILDE] = ACTIONS(1312), - [anon_sym_bit_DASHand] = ACTIONS(1312), - [anon_sym_bit_DASHxor] = ACTIONS(1312), - [anon_sym_bit_DASHor] = ACTIONS(1312), - [anon_sym_and] = ACTIONS(1312), - [anon_sym_xor] = ACTIONS(1312), - [anon_sym_or] = ACTIONS(1312), - [anon_sym_not] = ACTIONS(1312), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1312), - [anon_sym_DOT_DOT_LT] = ACTIONS(1312), - [anon_sym_null] = ACTIONS(1312), - [anon_sym_true] = ACTIONS(1312), - [anon_sym_false] = ACTIONS(1312), - [aux_sym__val_number_decimal_token1] = ACTIONS(1312), - [aux_sym__val_number_decimal_token2] = ACTIONS(1312), - [anon_sym_DOT2] = ACTIONS(1312), - [aux_sym__val_number_decimal_token3] = ACTIONS(1312), - [aux_sym__val_number_token1] = ACTIONS(1312), - [aux_sym__val_number_token2] = ACTIONS(1312), - [aux_sym__val_number_token3] = ACTIONS(1312), - [aux_sym__val_number_token4] = ACTIONS(1312), - [aux_sym__val_number_token5] = ACTIONS(1312), - [aux_sym__val_number_token6] = ACTIONS(1312), - [anon_sym_0b] = ACTIONS(1312), - [anon_sym_0o] = ACTIONS(1312), - [anon_sym_0x] = ACTIONS(1312), - [sym_val_date] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym__str_single_quotes] = ACTIONS(1312), - [sym__str_back_ticks] = ACTIONS(1312), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1312), - [anon_sym_POUND] = ACTIONS(113), - }, - [2961] = { - [sym_comment] = STATE(2961), - [anon_sym_SEMI] = ACTIONS(1186), - [anon_sym_LF] = ACTIONS(1188), - [anon_sym_LBRACK] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(1186), - [anon_sym_RPAREN] = ACTIONS(1186), - [anon_sym_PIPE] = ACTIONS(1186), - [anon_sym_DOLLAR] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_DASH_DASH] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_in] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_RBRACE] = ACTIONS(1186), - [anon_sym_DOT_DOT] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_STAR_STAR] = ACTIONS(1186), - [anon_sym_PLUS_PLUS] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_mod] = ACTIONS(1186), - [anon_sym_SLASH_SLASH] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_bit_DASHshl] = ACTIONS(1186), - [anon_sym_bit_DASHshr] = ACTIONS(1186), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_LT2] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1186), - [anon_sym_GT_EQ] = ACTIONS(1186), - [anon_sym_not_DASHin] = ACTIONS(1186), - [anon_sym_starts_DASHwith] = ACTIONS(1186), - [anon_sym_ends_DASHwith] = ACTIONS(1186), - [anon_sym_EQ_TILDE] = ACTIONS(1186), - [anon_sym_BANG_TILDE] = ACTIONS(1186), - [anon_sym_bit_DASHand] = ACTIONS(1186), - [anon_sym_bit_DASHxor] = ACTIONS(1186), - [anon_sym_bit_DASHor] = ACTIONS(1186), - [anon_sym_and] = ACTIONS(1186), - [anon_sym_xor] = ACTIONS(1186), - [anon_sym_or] = ACTIONS(1186), - [anon_sym_not] = ACTIONS(1186), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1186), - [anon_sym_DOT_DOT_LT] = ACTIONS(1186), - [anon_sym_null] = ACTIONS(1186), - [anon_sym_true] = ACTIONS(1186), - [anon_sym_false] = ACTIONS(1186), - [aux_sym__val_number_decimal_token1] = ACTIONS(1186), - [aux_sym__val_number_decimal_token2] = ACTIONS(1186), - [anon_sym_DOT2] = ACTIONS(1186), - [aux_sym__val_number_decimal_token3] = ACTIONS(1186), - [aux_sym__val_number_token1] = ACTIONS(1186), - [aux_sym__val_number_token2] = ACTIONS(1186), - [aux_sym__val_number_token3] = ACTIONS(1186), - [aux_sym__val_number_token4] = ACTIONS(1186), - [aux_sym__val_number_token5] = ACTIONS(1186), - [aux_sym__val_number_token6] = ACTIONS(1186), - [anon_sym_0b] = ACTIONS(1186), - [anon_sym_0o] = ACTIONS(1186), - [anon_sym_0x] = ACTIONS(1186), - [sym_val_date] = ACTIONS(1186), - [anon_sym_DQUOTE] = ACTIONS(1186), - [sym__str_single_quotes] = ACTIONS(1186), - [sym__str_back_ticks] = ACTIONS(1186), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1186), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1186), - [anon_sym_POUND] = ACTIONS(113), - }, - [2962] = { - [sym_comment] = STATE(2962), - [anon_sym_export] = ACTIONS(6908), - [anon_sym_alias] = ACTIONS(6908), - [anon_sym_let] = ACTIONS(6908), - [anon_sym_let_DASHenv] = ACTIONS(6908), - [anon_sym_mut] = ACTIONS(6908), - [anon_sym_const] = ACTIONS(6908), - [anon_sym_SEMI] = ACTIONS(6908), - [sym_cmd_identifier] = ACTIONS(6908), - [anon_sym_LF] = ACTIONS(6910), - [anon_sym_def] = ACTIONS(6908), - [anon_sym_export_DASHenv] = ACTIONS(6908), - [anon_sym_extern] = ACTIONS(6908), - [anon_sym_module] = ACTIONS(6908), - [anon_sym_use] = ACTIONS(6908), - [anon_sym_LBRACK] = ACTIONS(6908), - [anon_sym_LPAREN] = ACTIONS(6908), - [anon_sym_DOLLAR] = ACTIONS(6908), - [anon_sym_error] = ACTIONS(6908), - [anon_sym_DASH] = ACTIONS(6908), - [anon_sym_break] = ACTIONS(6908), - [anon_sym_continue] = ACTIONS(6908), - [anon_sym_for] = ACTIONS(6908), - [anon_sym_loop] = ACTIONS(6908), - [anon_sym_while] = ACTIONS(6908), - [anon_sym_do] = ACTIONS(6908), - [anon_sym_if] = ACTIONS(6908), - [anon_sym_match] = ACTIONS(6908), - [anon_sym_LBRACE] = ACTIONS(6908), - [anon_sym_DOT_DOT] = ACTIONS(6908), - [anon_sym_try] = ACTIONS(6908), - [anon_sym_return] = ACTIONS(6908), - [anon_sym_source] = ACTIONS(6908), - [anon_sym_source_DASHenv] = ACTIONS(6908), - [anon_sym_register] = ACTIONS(6908), - [anon_sym_hide] = ACTIONS(6908), - [anon_sym_hide_DASHenv] = ACTIONS(6908), - [anon_sym_overlay] = ACTIONS(6908), - [anon_sym_where] = ACTIONS(6908), - [anon_sym_not] = ACTIONS(6908), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6908), - [anon_sym_DOT_DOT_LT] = ACTIONS(6908), - [anon_sym_null] = ACTIONS(6908), - [anon_sym_true] = ACTIONS(6908), - [anon_sym_false] = ACTIONS(6908), - [aux_sym__val_number_decimal_token1] = ACTIONS(6908), - [aux_sym__val_number_decimal_token2] = ACTIONS(6908), - [anon_sym_DOT2] = ACTIONS(6908), - [aux_sym__val_number_decimal_token3] = ACTIONS(6908), - [aux_sym__val_number_token1] = ACTIONS(6908), - [aux_sym__val_number_token2] = ACTIONS(6908), - [aux_sym__val_number_token3] = ACTIONS(6908), - [aux_sym__val_number_token4] = ACTIONS(6908), - [aux_sym__val_number_token5] = ACTIONS(6908), - [aux_sym__val_number_token6] = ACTIONS(6908), - [anon_sym_0b] = ACTIONS(6908), - [anon_sym_0o] = ACTIONS(6908), - [anon_sym_0x] = ACTIONS(6908), - [sym_val_date] = ACTIONS(6908), - [anon_sym_DQUOTE] = ACTIONS(6908), - [sym__str_single_quotes] = ACTIONS(6908), - [sym__str_back_ticks] = ACTIONS(6908), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6908), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6908), - [anon_sym_CARET] = ACTIONS(6908), - [anon_sym_POUND] = ACTIONS(113), - }, - [2963] = { - [sym_comment] = STATE(2963), - [anon_sym_export] = ACTIONS(6912), - [anon_sym_alias] = ACTIONS(6912), - [anon_sym_let] = ACTIONS(6912), - [anon_sym_let_DASHenv] = ACTIONS(6912), - [anon_sym_mut] = ACTIONS(6912), - [anon_sym_const] = ACTIONS(6912), - [anon_sym_SEMI] = ACTIONS(6912), - [sym_cmd_identifier] = ACTIONS(6912), - [anon_sym_LF] = ACTIONS(6914), - [anon_sym_def] = ACTIONS(6912), - [anon_sym_export_DASHenv] = ACTIONS(6912), - [anon_sym_extern] = ACTIONS(6912), - [anon_sym_module] = ACTIONS(6912), - [anon_sym_use] = ACTIONS(6912), - [anon_sym_LBRACK] = ACTIONS(6912), - [anon_sym_LPAREN] = ACTIONS(6912), - [anon_sym_DOLLAR] = ACTIONS(6912), - [anon_sym_error] = ACTIONS(6912), - [anon_sym_DASH] = ACTIONS(6912), - [anon_sym_break] = ACTIONS(6912), - [anon_sym_continue] = ACTIONS(6912), - [anon_sym_for] = ACTIONS(6912), - [anon_sym_loop] = ACTIONS(6912), - [anon_sym_while] = ACTIONS(6912), - [anon_sym_do] = ACTIONS(6912), - [anon_sym_if] = ACTIONS(6912), - [anon_sym_match] = ACTIONS(6912), - [anon_sym_LBRACE] = ACTIONS(6912), - [anon_sym_DOT_DOT] = ACTIONS(6912), - [anon_sym_try] = ACTIONS(6912), - [anon_sym_return] = ACTIONS(6912), - [anon_sym_source] = ACTIONS(6912), - [anon_sym_source_DASHenv] = ACTIONS(6912), - [anon_sym_register] = ACTIONS(6912), - [anon_sym_hide] = ACTIONS(6912), - [anon_sym_hide_DASHenv] = ACTIONS(6912), - [anon_sym_overlay] = ACTIONS(6912), - [anon_sym_where] = ACTIONS(6912), - [anon_sym_not] = ACTIONS(6912), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6912), - [anon_sym_DOT_DOT_LT] = ACTIONS(6912), - [anon_sym_null] = ACTIONS(6912), - [anon_sym_true] = ACTIONS(6912), - [anon_sym_false] = ACTIONS(6912), - [aux_sym__val_number_decimal_token1] = ACTIONS(6912), - [aux_sym__val_number_decimal_token2] = ACTIONS(6912), - [anon_sym_DOT2] = ACTIONS(6912), - [aux_sym__val_number_decimal_token3] = ACTIONS(6912), - [aux_sym__val_number_token1] = ACTIONS(6912), - [aux_sym__val_number_token2] = ACTIONS(6912), - [aux_sym__val_number_token3] = ACTIONS(6912), - [aux_sym__val_number_token4] = ACTIONS(6912), - [aux_sym__val_number_token5] = ACTIONS(6912), - [aux_sym__val_number_token6] = ACTIONS(6912), - [anon_sym_0b] = ACTIONS(6912), - [anon_sym_0o] = ACTIONS(6912), - [anon_sym_0x] = ACTIONS(6912), - [sym_val_date] = ACTIONS(6912), - [anon_sym_DQUOTE] = ACTIONS(6912), - [sym__str_single_quotes] = ACTIONS(6912), - [sym__str_back_ticks] = ACTIONS(6912), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6912), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6912), - [anon_sym_CARET] = ACTIONS(6912), - [anon_sym_POUND] = ACTIONS(113), - }, - [2964] = { - [sym_comment] = STATE(2964), - [anon_sym_SEMI] = ACTIONS(1158), - [anon_sym_LF] = ACTIONS(1160), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_LPAREN] = ACTIONS(1158), - [anon_sym_RPAREN] = ACTIONS(1158), - [anon_sym_PIPE] = ACTIONS(1158), - [anon_sym_DOLLAR] = ACTIONS(1158), - [anon_sym_GT] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_in] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1158), - [anon_sym_RBRACE] = ACTIONS(1158), - [anon_sym_DOT_DOT] = ACTIONS(1158), - [anon_sym_STAR] = ACTIONS(1158), - [anon_sym_STAR_STAR] = ACTIONS(1158), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_SLASH] = ACTIONS(1158), - [anon_sym_mod] = ACTIONS(1158), - [anon_sym_SLASH_SLASH] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1158), - [anon_sym_bit_DASHshl] = ACTIONS(1158), - [anon_sym_bit_DASHshr] = ACTIONS(1158), - [anon_sym_EQ_EQ] = ACTIONS(1158), - [anon_sym_BANG_EQ] = ACTIONS(1158), - [anon_sym_LT2] = ACTIONS(1158), - [anon_sym_LT_EQ] = ACTIONS(1158), - [anon_sym_GT_EQ] = ACTIONS(1158), - [anon_sym_not_DASHin] = ACTIONS(1158), - [anon_sym_starts_DASHwith] = ACTIONS(1158), - [anon_sym_ends_DASHwith] = ACTIONS(1158), - [anon_sym_EQ_TILDE] = ACTIONS(1158), - [anon_sym_BANG_TILDE] = ACTIONS(1158), - [anon_sym_bit_DASHand] = ACTIONS(1158), - [anon_sym_bit_DASHxor] = ACTIONS(1158), - [anon_sym_bit_DASHor] = ACTIONS(1158), - [anon_sym_and] = ACTIONS(1158), - [anon_sym_xor] = ACTIONS(1158), - [anon_sym_or] = ACTIONS(1158), - [anon_sym_not] = ACTIONS(1158), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1158), - [anon_sym_DOT_DOT_LT] = ACTIONS(1158), - [anon_sym_null] = ACTIONS(1158), - [anon_sym_true] = ACTIONS(1158), - [anon_sym_false] = ACTIONS(1158), - [aux_sym__val_number_decimal_token1] = ACTIONS(1158), - [aux_sym__val_number_decimal_token2] = ACTIONS(1158), - [anon_sym_DOT2] = ACTIONS(1158), - [aux_sym__val_number_decimal_token3] = ACTIONS(1158), - [aux_sym__val_number_token1] = ACTIONS(1158), - [aux_sym__val_number_token2] = ACTIONS(1158), - [aux_sym__val_number_token3] = ACTIONS(1158), - [aux_sym__val_number_token4] = ACTIONS(1158), - [aux_sym__val_number_token5] = ACTIONS(1158), - [aux_sym__val_number_token6] = ACTIONS(1158), - [anon_sym_0b] = ACTIONS(1158), - [anon_sym_0o] = ACTIONS(1158), - [anon_sym_0x] = ACTIONS(1158), - [sym_val_date] = ACTIONS(1158), - [anon_sym_DQUOTE] = ACTIONS(1158), - [sym__str_single_quotes] = ACTIONS(1158), - [sym__str_back_ticks] = ACTIONS(1158), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1158), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1158), - [anon_sym_POUND] = ACTIONS(113), - }, - [2965] = { - [sym_comment] = STATE(2965), - [anon_sym_SEMI] = ACTIONS(1406), - [anon_sym_LF] = ACTIONS(1408), - [anon_sym_LBRACK] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1406), - [anon_sym_RPAREN] = ACTIONS(1406), - [anon_sym_PIPE] = ACTIONS(1406), - [anon_sym_DOLLAR] = ACTIONS(1406), - [anon_sym_GT] = ACTIONS(1406), - [anon_sym_DASH_DASH] = ACTIONS(1406), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_in] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_RBRACE] = ACTIONS(1406), - [anon_sym_DOT_DOT] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1406), - [anon_sym_STAR_STAR] = ACTIONS(1406), - [anon_sym_PLUS_PLUS] = ACTIONS(1406), - [anon_sym_SLASH] = ACTIONS(1406), - [anon_sym_mod] = ACTIONS(1406), - [anon_sym_SLASH_SLASH] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_bit_DASHshl] = ACTIONS(1406), - [anon_sym_bit_DASHshr] = ACTIONS(1406), - [anon_sym_EQ_EQ] = ACTIONS(1406), - [anon_sym_BANG_EQ] = ACTIONS(1406), - [anon_sym_LT2] = ACTIONS(1406), - [anon_sym_LT_EQ] = ACTIONS(1406), - [anon_sym_GT_EQ] = ACTIONS(1406), - [anon_sym_not_DASHin] = ACTIONS(1406), - [anon_sym_starts_DASHwith] = ACTIONS(1406), - [anon_sym_ends_DASHwith] = ACTIONS(1406), - [anon_sym_EQ_TILDE] = ACTIONS(1406), - [anon_sym_BANG_TILDE] = ACTIONS(1406), - [anon_sym_bit_DASHand] = ACTIONS(1406), - [anon_sym_bit_DASHxor] = ACTIONS(1406), - [anon_sym_bit_DASHor] = ACTIONS(1406), - [anon_sym_and] = ACTIONS(1406), - [anon_sym_xor] = ACTIONS(1406), - [anon_sym_or] = ACTIONS(1406), - [anon_sym_not] = ACTIONS(1406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1406), - [anon_sym_DOT_DOT_LT] = ACTIONS(1406), - [anon_sym_null] = ACTIONS(1406), - [anon_sym_true] = ACTIONS(1406), - [anon_sym_false] = ACTIONS(1406), - [aux_sym__val_number_decimal_token1] = ACTIONS(1406), - [aux_sym__val_number_decimal_token2] = ACTIONS(1406), - [anon_sym_DOT2] = ACTIONS(1406), - [aux_sym__val_number_decimal_token3] = ACTIONS(1406), - [aux_sym__val_number_token1] = ACTIONS(1406), - [aux_sym__val_number_token2] = ACTIONS(1406), - [aux_sym__val_number_token3] = ACTIONS(1406), - [aux_sym__val_number_token4] = ACTIONS(1406), - [aux_sym__val_number_token5] = ACTIONS(1406), - [aux_sym__val_number_token6] = ACTIONS(1406), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1406), - [anon_sym_0x] = ACTIONS(1406), - [sym_val_date] = ACTIONS(1406), - [anon_sym_DQUOTE] = ACTIONS(1406), - [sym__str_single_quotes] = ACTIONS(1406), - [sym__str_back_ticks] = ACTIONS(1406), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1406), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1406), - [anon_sym_POUND] = ACTIONS(113), - }, - [2966] = { - [sym_comment] = STATE(2966), - [ts_builtin_sym_end] = ACTIONS(1111), - [anon_sym_SEMI] = ACTIONS(1109), - [anon_sym_LF] = ACTIONS(1111), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_PIPE] = ACTIONS(1109), - [anon_sym_DOLLAR] = ACTIONS(1109), - [anon_sym_GT] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_in] = ACTIONS(1109), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_DOT_DOT] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_STAR_STAR] = ACTIONS(1109), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_SLASH] = ACTIONS(1109), - [anon_sym_mod] = ACTIONS(1109), - [anon_sym_SLASH_SLASH] = ACTIONS(1109), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_bit_DASHshl] = ACTIONS(1109), - [anon_sym_bit_DASHshr] = ACTIONS(1109), - [anon_sym_EQ_EQ] = ACTIONS(1109), - [anon_sym_BANG_EQ] = ACTIONS(1109), - [anon_sym_LT2] = ACTIONS(1109), - [anon_sym_LT_EQ] = ACTIONS(1109), - [anon_sym_GT_EQ] = ACTIONS(1109), - [anon_sym_not_DASHin] = ACTIONS(1109), - [anon_sym_starts_DASHwith] = ACTIONS(1109), - [anon_sym_ends_DASHwith] = ACTIONS(1109), - [anon_sym_EQ_TILDE] = ACTIONS(1109), - [anon_sym_BANG_TILDE] = ACTIONS(1109), - [anon_sym_bit_DASHand] = ACTIONS(1109), - [anon_sym_bit_DASHxor] = ACTIONS(1109), - [anon_sym_bit_DASHor] = ACTIONS(1109), - [anon_sym_and] = ACTIONS(1109), - [anon_sym_xor] = ACTIONS(1109), - [anon_sym_or] = ACTIONS(1109), - [anon_sym_not] = ACTIONS(1109), - [anon_sym_DOT] = ACTIONS(1109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1109), - [anon_sym_DOT_DOT_LT] = ACTIONS(1109), - [anon_sym_null] = ACTIONS(1109), - [anon_sym_true] = ACTIONS(1109), - [anon_sym_false] = ACTIONS(1109), - [aux_sym__val_number_decimal_token1] = ACTIONS(1109), - [aux_sym__val_number_decimal_token2] = ACTIONS(1109), - [anon_sym_DOT2] = ACTIONS(1109), - [aux_sym__val_number_decimal_token3] = ACTIONS(1109), - [aux_sym__val_number_token1] = ACTIONS(1109), - [aux_sym__val_number_token2] = ACTIONS(1109), - [aux_sym__val_number_token3] = ACTIONS(1109), - [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(1109), - [anon_sym_0o] = ACTIONS(1109), - [anon_sym_0x] = ACTIONS(1109), - [sym_val_date] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(1109), - [sym__str_single_quotes] = ACTIONS(1109), - [sym__str_back_ticks] = ACTIONS(1109), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1109), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1109), - [anon_sym_POUND] = ACTIONS(113), - }, - [2967] = { - [sym_comment] = STATE(2967), - [anon_sym_SEMI] = ACTIONS(1198), - [anon_sym_LF] = ACTIONS(1366), - [anon_sym_LBRACK] = ACTIONS(1198), - [anon_sym_LPAREN] = ACTIONS(1198), - [anon_sym_RPAREN] = ACTIONS(1198), - [anon_sym_PIPE] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(1198), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1198), - [anon_sym_in] = ACTIONS(1198), - [anon_sym_LBRACE] = ACTIONS(1198), - [anon_sym_RBRACE] = ACTIONS(1198), - [anon_sym_DOT_DOT] = ACTIONS(1198), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_STAR_STAR] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_SLASH] = ACTIONS(1198), - [anon_sym_mod] = ACTIONS(1198), - [anon_sym_SLASH_SLASH] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1198), - [anon_sym_bit_DASHshl] = ACTIONS(1198), - [anon_sym_bit_DASHshr] = ACTIONS(1198), - [anon_sym_EQ_EQ] = ACTIONS(1198), - [anon_sym_BANG_EQ] = ACTIONS(1198), - [anon_sym_LT2] = ACTIONS(1198), - [anon_sym_LT_EQ] = ACTIONS(1198), - [anon_sym_GT_EQ] = ACTIONS(1198), - [anon_sym_not_DASHin] = ACTIONS(1198), - [anon_sym_starts_DASHwith] = ACTIONS(1198), - [anon_sym_ends_DASHwith] = ACTIONS(1198), - [anon_sym_EQ_TILDE] = ACTIONS(1198), - [anon_sym_BANG_TILDE] = ACTIONS(1198), - [anon_sym_bit_DASHand] = ACTIONS(1198), - [anon_sym_bit_DASHxor] = ACTIONS(1198), - [anon_sym_bit_DASHor] = ACTIONS(1198), - [anon_sym_and] = ACTIONS(1198), - [anon_sym_xor] = ACTIONS(1198), - [anon_sym_or] = ACTIONS(1198), - [anon_sym_not] = ACTIONS(1198), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1198), - [anon_sym_DOT_DOT_LT] = ACTIONS(1198), - [anon_sym_null] = ACTIONS(1198), - [anon_sym_true] = ACTIONS(1198), - [anon_sym_false] = ACTIONS(1198), - [aux_sym__val_number_decimal_token1] = ACTIONS(1198), - [aux_sym__val_number_decimal_token2] = ACTIONS(1198), - [anon_sym_DOT2] = ACTIONS(1198), - [aux_sym__val_number_decimal_token3] = ACTIONS(1198), - [aux_sym__val_number_token1] = ACTIONS(1198), - [aux_sym__val_number_token2] = ACTIONS(1198), - [aux_sym__val_number_token3] = ACTIONS(1198), - [aux_sym__val_number_token4] = ACTIONS(1198), - [aux_sym__val_number_token5] = ACTIONS(1198), - [aux_sym__val_number_token6] = ACTIONS(1198), - [anon_sym_0b] = ACTIONS(1198), - [anon_sym_0o] = ACTIONS(1198), - [anon_sym_0x] = ACTIONS(1198), - [sym_val_date] = ACTIONS(1198), - [anon_sym_DQUOTE] = ACTIONS(1198), - [sym__str_single_quotes] = ACTIONS(1198), - [sym__str_back_ticks] = ACTIONS(1198), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1198), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1198), - [anon_sym_POUND] = ACTIONS(113), - }, - [2968] = { - [sym_comment] = STATE(2968), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_PIPE] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), - }, - [2969] = { - [sym_comment] = STATE(2969), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_PIPE] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), - }, - [2970] = { - [sym_comment] = STATE(2970), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_PIPE] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), - }, - [2971] = { - [sym_comment] = STATE(2971), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_PIPE] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), - }, - [2972] = { - [sym_comment] = STATE(2972), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_PIPE] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), - }, - [2973] = { - [sym_comment] = STATE(2973), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_PIPE] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), - }, - [2974] = { - [sym_comment] = STATE(2974), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_PIPE] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), - }, - [2975] = { - [sym_comment] = STATE(2975), - [anon_sym_export] = ACTIONS(6458), - [anon_sym_alias] = ACTIONS(6458), - [anon_sym_let] = ACTIONS(6458), - [anon_sym_let_DASHenv] = ACTIONS(6458), - [anon_sym_mut] = ACTIONS(6458), - [anon_sym_const] = ACTIONS(6458), - [anon_sym_SEMI] = ACTIONS(6458), - [sym_cmd_identifier] = ACTIONS(6458), - [anon_sym_LF] = ACTIONS(6916), - [anon_sym_def] = ACTIONS(6458), - [anon_sym_export_DASHenv] = ACTIONS(6458), - [anon_sym_extern] = ACTIONS(6458), - [anon_sym_module] = ACTIONS(6458), - [anon_sym_use] = ACTIONS(6458), - [anon_sym_LBRACK] = ACTIONS(6458), - [anon_sym_LPAREN] = ACTIONS(6458), - [anon_sym_DOLLAR] = ACTIONS(6458), - [anon_sym_error] = ACTIONS(6458), - [anon_sym_DASH] = ACTIONS(6458), - [anon_sym_break] = ACTIONS(6458), - [anon_sym_continue] = ACTIONS(6458), - [anon_sym_for] = ACTIONS(6458), - [anon_sym_loop] = ACTIONS(6458), - [anon_sym_while] = ACTIONS(6458), - [anon_sym_do] = ACTIONS(6458), - [anon_sym_if] = ACTIONS(6458), - [anon_sym_match] = ACTIONS(6458), - [anon_sym_LBRACE] = ACTIONS(6458), - [anon_sym_DOT_DOT] = ACTIONS(6458), - [anon_sym_try] = ACTIONS(6458), - [anon_sym_return] = ACTIONS(6458), - [anon_sym_source] = ACTIONS(6458), - [anon_sym_source_DASHenv] = ACTIONS(6458), - [anon_sym_register] = ACTIONS(6458), - [anon_sym_hide] = ACTIONS(6458), - [anon_sym_hide_DASHenv] = ACTIONS(6458), - [anon_sym_overlay] = ACTIONS(6458), - [anon_sym_where] = ACTIONS(6458), - [anon_sym_not] = ACTIONS(6458), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6458), - [anon_sym_DOT_DOT_LT] = ACTIONS(6458), - [anon_sym_null] = ACTIONS(6458), - [anon_sym_true] = ACTIONS(6458), - [anon_sym_false] = ACTIONS(6458), - [aux_sym__val_number_decimal_token1] = ACTIONS(6458), - [aux_sym__val_number_decimal_token2] = ACTIONS(6458), - [anon_sym_DOT2] = ACTIONS(6458), - [aux_sym__val_number_decimal_token3] = ACTIONS(6458), - [aux_sym__val_number_token1] = ACTIONS(6458), - [aux_sym__val_number_token2] = ACTIONS(6458), - [aux_sym__val_number_token3] = ACTIONS(6458), - [aux_sym__val_number_token4] = ACTIONS(6458), - [aux_sym__val_number_token5] = ACTIONS(6458), - [aux_sym__val_number_token6] = ACTIONS(6458), - [anon_sym_0b] = ACTIONS(6458), - [anon_sym_0o] = ACTIONS(6458), - [anon_sym_0x] = ACTIONS(6458), - [sym_val_date] = ACTIONS(6458), - [anon_sym_DQUOTE] = ACTIONS(6458), - [sym__str_single_quotes] = ACTIONS(6458), - [sym__str_back_ticks] = ACTIONS(6458), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6458), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6458), - [anon_sym_CARET] = ACTIONS(6458), - [anon_sym_POUND] = ACTIONS(113), - }, - [2976] = { - [sym_comment] = STATE(2976), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_PIPE] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), - }, - [2977] = { - [sym_comment] = STATE(2977), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_PIPE] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), - }, - [2978] = { - [sym_comment] = STATE(2978), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_PIPE] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), - }, - [2979] = { - [sym_comment] = STATE(2979), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_PIPE] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), - }, - [2980] = { - [sym_comment] = STATE(2980), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_PIPE] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), - }, - [2981] = { - [sym_comment] = STATE(2981), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_PIPE] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), - }, - [2982] = { - [sym_comment] = STATE(2982), - [anon_sym_export] = ACTIONS(6918), - [anon_sym_alias] = ACTIONS(6918), - [anon_sym_let] = ACTIONS(6918), - [anon_sym_let_DASHenv] = ACTIONS(6918), - [anon_sym_mut] = ACTIONS(6918), - [anon_sym_const] = ACTIONS(6918), - [anon_sym_SEMI] = ACTIONS(6918), - [sym_cmd_identifier] = ACTIONS(6918), - [anon_sym_LF] = ACTIONS(6920), - [anon_sym_def] = ACTIONS(6918), - [anon_sym_export_DASHenv] = ACTIONS(6918), - [anon_sym_extern] = ACTIONS(6918), - [anon_sym_module] = ACTIONS(6918), - [anon_sym_use] = ACTIONS(6918), - [anon_sym_LBRACK] = ACTIONS(6918), - [anon_sym_LPAREN] = ACTIONS(6918), - [anon_sym_DOLLAR] = ACTIONS(6918), - [anon_sym_error] = ACTIONS(6918), - [anon_sym_DASH] = ACTIONS(6918), - [anon_sym_break] = ACTIONS(6918), - [anon_sym_continue] = ACTIONS(6918), - [anon_sym_for] = ACTIONS(6918), - [anon_sym_loop] = ACTIONS(6918), - [anon_sym_while] = ACTIONS(6918), - [anon_sym_do] = ACTIONS(6918), - [anon_sym_if] = ACTIONS(6918), - [anon_sym_match] = ACTIONS(6918), - [anon_sym_LBRACE] = ACTIONS(6918), - [anon_sym_DOT_DOT] = ACTIONS(6918), - [anon_sym_try] = ACTIONS(6918), - [anon_sym_return] = ACTIONS(6918), - [anon_sym_source] = ACTIONS(6918), - [anon_sym_source_DASHenv] = ACTIONS(6918), - [anon_sym_register] = ACTIONS(6918), - [anon_sym_hide] = ACTIONS(6918), - [anon_sym_hide_DASHenv] = ACTIONS(6918), - [anon_sym_overlay] = ACTIONS(6918), - [anon_sym_where] = ACTIONS(6918), - [anon_sym_not] = ACTIONS(6918), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6918), - [anon_sym_DOT_DOT_LT] = ACTIONS(6918), - [anon_sym_null] = ACTIONS(6918), - [anon_sym_true] = ACTIONS(6918), - [anon_sym_false] = ACTIONS(6918), - [aux_sym__val_number_decimal_token1] = ACTIONS(6918), - [aux_sym__val_number_decimal_token2] = ACTIONS(6918), - [anon_sym_DOT2] = ACTIONS(6918), - [aux_sym__val_number_decimal_token3] = ACTIONS(6918), - [aux_sym__val_number_token1] = ACTIONS(6918), - [aux_sym__val_number_token2] = ACTIONS(6918), - [aux_sym__val_number_token3] = ACTIONS(6918), - [aux_sym__val_number_token4] = ACTIONS(6918), - [aux_sym__val_number_token5] = ACTIONS(6918), - [aux_sym__val_number_token6] = ACTIONS(6918), - [anon_sym_0b] = ACTIONS(6918), - [anon_sym_0o] = ACTIONS(6918), - [anon_sym_0x] = ACTIONS(6918), - [sym_val_date] = ACTIONS(6918), - [anon_sym_DQUOTE] = ACTIONS(6918), - [sym__str_single_quotes] = ACTIONS(6918), - [sym__str_back_ticks] = ACTIONS(6918), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6918), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6918), - [anon_sym_CARET] = ACTIONS(6918), - [anon_sym_POUND] = ACTIONS(113), - }, - [2983] = { - [sym_comment] = STATE(2983), - [anon_sym_export] = ACTIONS(6922), - [anon_sym_alias] = ACTIONS(6922), - [anon_sym_let] = ACTIONS(6922), - [anon_sym_let_DASHenv] = ACTIONS(6922), - [anon_sym_mut] = ACTIONS(6922), - [anon_sym_const] = ACTIONS(6922), - [anon_sym_SEMI] = ACTIONS(6922), - [sym_cmd_identifier] = ACTIONS(6922), - [anon_sym_LF] = ACTIONS(6924), - [anon_sym_def] = ACTIONS(6922), - [anon_sym_export_DASHenv] = ACTIONS(6922), - [anon_sym_extern] = ACTIONS(6922), - [anon_sym_module] = ACTIONS(6922), - [anon_sym_use] = ACTIONS(6922), - [anon_sym_LBRACK] = ACTIONS(6922), - [anon_sym_LPAREN] = ACTIONS(6922), - [anon_sym_DOLLAR] = ACTIONS(6922), - [anon_sym_error] = ACTIONS(6922), - [anon_sym_DASH] = ACTIONS(6922), - [anon_sym_break] = ACTIONS(6922), - [anon_sym_continue] = ACTIONS(6922), - [anon_sym_for] = ACTIONS(6922), - [anon_sym_loop] = ACTIONS(6922), - [anon_sym_while] = ACTIONS(6922), - [anon_sym_do] = ACTIONS(6922), - [anon_sym_if] = ACTIONS(6922), - [anon_sym_match] = ACTIONS(6922), - [anon_sym_LBRACE] = ACTIONS(6922), - [anon_sym_DOT_DOT] = ACTIONS(6922), - [anon_sym_try] = ACTIONS(6922), - [anon_sym_return] = ACTIONS(6922), - [anon_sym_source] = ACTIONS(6922), - [anon_sym_source_DASHenv] = ACTIONS(6922), - [anon_sym_register] = ACTIONS(6922), - [anon_sym_hide] = ACTIONS(6922), - [anon_sym_hide_DASHenv] = ACTIONS(6922), - [anon_sym_overlay] = ACTIONS(6922), - [anon_sym_where] = ACTIONS(6922), - [anon_sym_not] = ACTIONS(6922), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6922), - [anon_sym_DOT_DOT_LT] = ACTIONS(6922), - [anon_sym_null] = ACTIONS(6922), - [anon_sym_true] = ACTIONS(6922), - [anon_sym_false] = ACTIONS(6922), - [aux_sym__val_number_decimal_token1] = ACTIONS(6922), - [aux_sym__val_number_decimal_token2] = ACTIONS(6922), - [anon_sym_DOT2] = ACTIONS(6922), - [aux_sym__val_number_decimal_token3] = ACTIONS(6922), - [aux_sym__val_number_token1] = ACTIONS(6922), - [aux_sym__val_number_token2] = ACTIONS(6922), - [aux_sym__val_number_token3] = ACTIONS(6922), - [aux_sym__val_number_token4] = ACTIONS(6922), - [aux_sym__val_number_token5] = ACTIONS(6922), - [aux_sym__val_number_token6] = ACTIONS(6922), - [anon_sym_0b] = ACTIONS(6922), - [anon_sym_0o] = ACTIONS(6922), - [anon_sym_0x] = ACTIONS(6922), - [sym_val_date] = ACTIONS(6922), - [anon_sym_DQUOTE] = ACTIONS(6922), - [sym__str_single_quotes] = ACTIONS(6922), - [sym__str_back_ticks] = ACTIONS(6922), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6922), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6922), - [anon_sym_CARET] = ACTIONS(6922), - [anon_sym_POUND] = ACTIONS(113), - }, - [2984] = { - [sym_comment] = STATE(2984), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_LF] = ACTIONS(1296), - [anon_sym_LBRACK] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1294), - [anon_sym_RPAREN] = ACTIONS(1294), - [anon_sym_PIPE] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_in] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_DOT_DOT] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_STAR_STAR] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_mod] = ACTIONS(1294), - [anon_sym_SLASH_SLASH] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_bit_DASHshl] = ACTIONS(1294), - [anon_sym_bit_DASHshr] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_LT2] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_not_DASHin] = ACTIONS(1294), - [anon_sym_starts_DASHwith] = ACTIONS(1294), - [anon_sym_ends_DASHwith] = ACTIONS(1294), - [anon_sym_EQ_TILDE] = ACTIONS(1294), - [anon_sym_BANG_TILDE] = ACTIONS(1294), - [anon_sym_bit_DASHand] = ACTIONS(1294), - [anon_sym_bit_DASHxor] = ACTIONS(1294), - [anon_sym_bit_DASHor] = ACTIONS(1294), - [anon_sym_and] = ACTIONS(1294), - [anon_sym_xor] = ACTIONS(1294), - [anon_sym_or] = ACTIONS(1294), - [anon_sym_not] = ACTIONS(1294), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1294), - [anon_sym_DOT_DOT_LT] = ACTIONS(1294), - [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(1294), - [anon_sym_DOT2] = ACTIONS(1294), - [aux_sym__val_number_decimal_token3] = ACTIONS(1294), - [aux_sym__val_number_token1] = ACTIONS(1294), - [aux_sym__val_number_token2] = ACTIONS(1294), - [aux_sym__val_number_token3] = ACTIONS(1294), - [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(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym__str_single_quotes] = ACTIONS(1294), - [sym__str_back_ticks] = ACTIONS(1294), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1294), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1294), - [anon_sym_POUND] = ACTIONS(113), - }, - [2985] = { - [sym_comment] = STATE(2985), - [anon_sym_export] = ACTIONS(6673), - [anon_sym_alias] = ACTIONS(6673), - [anon_sym_let] = ACTIONS(6673), - [anon_sym_let_DASHenv] = ACTIONS(6673), - [anon_sym_mut] = ACTIONS(6673), - [anon_sym_const] = ACTIONS(6673), - [anon_sym_SEMI] = ACTIONS(6673), - [sym_cmd_identifier] = ACTIONS(6673), - [anon_sym_LF] = ACTIONS(6926), - [anon_sym_def] = ACTIONS(6673), - [anon_sym_export_DASHenv] = ACTIONS(6673), - [anon_sym_extern] = ACTIONS(6673), - [anon_sym_module] = ACTIONS(6673), - [anon_sym_use] = ACTIONS(6673), - [anon_sym_LBRACK] = ACTIONS(6673), - [anon_sym_LPAREN] = ACTIONS(6673), - [anon_sym_DOLLAR] = ACTIONS(6673), - [anon_sym_error] = ACTIONS(6673), - [anon_sym_DASH] = ACTIONS(6673), - [anon_sym_break] = ACTIONS(6673), - [anon_sym_continue] = ACTIONS(6673), - [anon_sym_for] = ACTIONS(6673), - [anon_sym_loop] = ACTIONS(6673), - [anon_sym_while] = ACTIONS(6673), - [anon_sym_do] = ACTIONS(6673), - [anon_sym_if] = ACTIONS(6673), - [anon_sym_match] = ACTIONS(6673), - [anon_sym_LBRACE] = ACTIONS(6673), - [anon_sym_DOT_DOT] = ACTIONS(6673), - [anon_sym_try] = ACTIONS(6673), - [anon_sym_return] = ACTIONS(6673), - [anon_sym_source] = ACTIONS(6673), - [anon_sym_source_DASHenv] = ACTIONS(6673), - [anon_sym_register] = ACTIONS(6673), - [anon_sym_hide] = ACTIONS(6673), - [anon_sym_hide_DASHenv] = ACTIONS(6673), - [anon_sym_overlay] = ACTIONS(6673), - [anon_sym_where] = ACTIONS(6673), - [anon_sym_not] = ACTIONS(6673), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6673), - [anon_sym_DOT_DOT_LT] = ACTIONS(6673), - [anon_sym_null] = ACTIONS(6673), - [anon_sym_true] = ACTIONS(6673), - [anon_sym_false] = ACTIONS(6673), - [aux_sym__val_number_decimal_token1] = ACTIONS(6673), - [aux_sym__val_number_decimal_token2] = ACTIONS(6673), - [anon_sym_DOT2] = ACTIONS(6673), - [aux_sym__val_number_decimal_token3] = ACTIONS(6673), - [aux_sym__val_number_token1] = ACTIONS(6673), - [aux_sym__val_number_token2] = ACTIONS(6673), - [aux_sym__val_number_token3] = ACTIONS(6673), - [aux_sym__val_number_token4] = ACTIONS(6673), - [aux_sym__val_number_token5] = ACTIONS(6673), - [aux_sym__val_number_token6] = ACTIONS(6673), - [anon_sym_0b] = ACTIONS(6673), - [anon_sym_0o] = ACTIONS(6673), - [anon_sym_0x] = ACTIONS(6673), - [sym_val_date] = ACTIONS(6673), - [anon_sym_DQUOTE] = ACTIONS(6673), - [sym__str_single_quotes] = ACTIONS(6673), - [sym__str_back_ticks] = ACTIONS(6673), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6673), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6673), - [anon_sym_CARET] = ACTIONS(6673), - [anon_sym_POUND] = ACTIONS(113), - }, - [2986] = { - [sym_comment] = STATE(2986), - [anon_sym_SEMI] = ACTIONS(1194), - [anon_sym_LF] = ACTIONS(1196), - [anon_sym_LBRACK] = ACTIONS(1194), - [anon_sym_LPAREN] = ACTIONS(1194), - [anon_sym_RPAREN] = ACTIONS(1194), - [anon_sym_PIPE] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1194), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_in] = ACTIONS(1198), - [anon_sym_LBRACE] = ACTIONS(1194), - [anon_sym_RBRACE] = ACTIONS(1194), - [anon_sym_DOT_DOT] = ACTIONS(1194), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_STAR_STAR] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_SLASH] = ACTIONS(1198), - [anon_sym_mod] = ACTIONS(1198), - [anon_sym_SLASH_SLASH] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1198), - [anon_sym_bit_DASHshl] = ACTIONS(1198), - [anon_sym_bit_DASHshr] = ACTIONS(1198), - [anon_sym_EQ_EQ] = ACTIONS(1198), - [anon_sym_BANG_EQ] = ACTIONS(1198), - [anon_sym_LT2] = ACTIONS(1198), - [anon_sym_LT_EQ] = ACTIONS(1198), - [anon_sym_GT_EQ] = ACTIONS(1198), - [anon_sym_not_DASHin] = ACTIONS(1198), - [anon_sym_starts_DASHwith] = ACTIONS(1198), - [anon_sym_ends_DASHwith] = ACTIONS(1198), - [anon_sym_EQ_TILDE] = ACTIONS(1198), - [anon_sym_BANG_TILDE] = ACTIONS(1198), - [anon_sym_bit_DASHand] = ACTIONS(1198), - [anon_sym_bit_DASHxor] = ACTIONS(1198), - [anon_sym_bit_DASHor] = ACTIONS(1198), - [anon_sym_and] = ACTIONS(1198), - [anon_sym_xor] = ACTIONS(1198), - [anon_sym_or] = ACTIONS(1198), - [anon_sym_not] = ACTIONS(1194), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1194), - [anon_sym_DOT_DOT_LT] = ACTIONS(1194), - [anon_sym_null] = ACTIONS(1194), - [anon_sym_true] = ACTIONS(1194), - [anon_sym_false] = ACTIONS(1194), - [aux_sym__val_number_decimal_token1] = ACTIONS(1194), - [aux_sym__val_number_decimal_token2] = ACTIONS(1194), - [anon_sym_DOT2] = ACTIONS(1194), - [aux_sym__val_number_decimal_token3] = ACTIONS(1194), - [aux_sym__val_number_token1] = ACTIONS(1194), - [aux_sym__val_number_token2] = ACTIONS(1194), - [aux_sym__val_number_token3] = ACTIONS(1194), - [aux_sym__val_number_token4] = ACTIONS(1194), - [aux_sym__val_number_token5] = ACTIONS(1194), - [aux_sym__val_number_token6] = ACTIONS(1194), - [anon_sym_0b] = ACTIONS(1194), - [anon_sym_0o] = ACTIONS(1194), - [anon_sym_0x] = ACTIONS(1194), - [sym_val_date] = ACTIONS(1194), - [anon_sym_DQUOTE] = ACTIONS(1194), - [sym__str_single_quotes] = ACTIONS(1194), - [sym__str_back_ticks] = ACTIONS(1194), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1194), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1194), - [anon_sym_POUND] = ACTIONS(113), - }, - [2987] = { - [sym_comment] = STATE(2987), - [anon_sym_SEMI] = ACTIONS(1414), - [anon_sym_LF] = ACTIONS(1416), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_RPAREN] = ACTIONS(1414), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_DOLLAR] = ACTIONS(1414), - [anon_sym_GT] = ACTIONS(1414), - [anon_sym_DASH_DASH] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_in] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1414), - [anon_sym_RBRACE] = ACTIONS(1414), - [anon_sym_DOT_DOT] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_STAR_STAR] = ACTIONS(1414), - [anon_sym_PLUS_PLUS] = ACTIONS(1414), - [anon_sym_SLASH] = ACTIONS(1414), - [anon_sym_mod] = ACTIONS(1414), - [anon_sym_SLASH_SLASH] = ACTIONS(1414), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_bit_DASHshl] = ACTIONS(1414), - [anon_sym_bit_DASHshr] = ACTIONS(1414), - [anon_sym_EQ_EQ] = ACTIONS(1414), - [anon_sym_BANG_EQ] = ACTIONS(1414), - [anon_sym_LT2] = ACTIONS(1414), - [anon_sym_LT_EQ] = ACTIONS(1414), - [anon_sym_GT_EQ] = ACTIONS(1414), - [anon_sym_not_DASHin] = ACTIONS(1414), - [anon_sym_starts_DASHwith] = ACTIONS(1414), - [anon_sym_ends_DASHwith] = ACTIONS(1414), - [anon_sym_EQ_TILDE] = ACTIONS(1414), - [anon_sym_BANG_TILDE] = ACTIONS(1414), - [anon_sym_bit_DASHand] = ACTIONS(1414), - [anon_sym_bit_DASHxor] = ACTIONS(1414), - [anon_sym_bit_DASHor] = ACTIONS(1414), - [anon_sym_and] = ACTIONS(1414), - [anon_sym_xor] = ACTIONS(1414), - [anon_sym_or] = ACTIONS(1414), - [anon_sym_not] = ACTIONS(1414), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1414), - [anon_sym_DOT_DOT_LT] = ACTIONS(1414), - [anon_sym_null] = ACTIONS(1414), - [anon_sym_true] = ACTIONS(1414), - [anon_sym_false] = ACTIONS(1414), - [aux_sym__val_number_decimal_token1] = ACTIONS(1414), - [aux_sym__val_number_decimal_token2] = ACTIONS(1414), - [anon_sym_DOT2] = ACTIONS(1414), - [aux_sym__val_number_decimal_token3] = ACTIONS(1414), - [aux_sym__val_number_token1] = ACTIONS(1414), - [aux_sym__val_number_token2] = ACTIONS(1414), - [aux_sym__val_number_token3] = ACTIONS(1414), - [aux_sym__val_number_token4] = ACTIONS(1414), - [aux_sym__val_number_token5] = ACTIONS(1414), - [aux_sym__val_number_token6] = ACTIONS(1414), - [anon_sym_0b] = ACTIONS(1414), - [anon_sym_0o] = ACTIONS(1414), - [anon_sym_0x] = ACTIONS(1414), - [sym_val_date] = ACTIONS(1414), - [anon_sym_DQUOTE] = ACTIONS(1414), - [sym__str_single_quotes] = ACTIONS(1414), - [sym__str_back_ticks] = ACTIONS(1414), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1414), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1414), - [anon_sym_POUND] = ACTIONS(113), - }, - [2988] = { - [sym_comment] = STATE(2988), - [ts_builtin_sym_end] = ACTIONS(1261), - [anon_sym_SEMI] = ACTIONS(1259), - [anon_sym_LF] = ACTIONS(1261), - [anon_sym_LBRACK] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_PIPE] = ACTIONS(1259), - [anon_sym_DOLLAR] = ACTIONS(1259), - [anon_sym_GT] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_in] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1259), - [anon_sym_DOT_DOT] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1259), - [anon_sym_STAR_STAR] = ACTIONS(1259), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_SLASH] = ACTIONS(1259), - [anon_sym_mod] = ACTIONS(1259), - [anon_sym_SLASH_SLASH] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_bit_DASHshl] = ACTIONS(1259), - [anon_sym_bit_DASHshr] = ACTIONS(1259), - [anon_sym_EQ_EQ] = ACTIONS(1259), - [anon_sym_BANG_EQ] = ACTIONS(1259), - [anon_sym_LT2] = ACTIONS(1259), - [anon_sym_LT_EQ] = ACTIONS(1259), - [anon_sym_GT_EQ] = ACTIONS(1259), - [anon_sym_not_DASHin] = ACTIONS(1259), - [anon_sym_starts_DASHwith] = ACTIONS(1259), - [anon_sym_ends_DASHwith] = ACTIONS(1259), - [anon_sym_EQ_TILDE] = ACTIONS(1259), - [anon_sym_BANG_TILDE] = ACTIONS(1259), - [anon_sym_bit_DASHand] = ACTIONS(1259), - [anon_sym_bit_DASHxor] = ACTIONS(1259), - [anon_sym_bit_DASHor] = ACTIONS(1259), - [anon_sym_and] = ACTIONS(1259), - [anon_sym_xor] = ACTIONS(1259), - [anon_sym_or] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1259), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1259), - [anon_sym_DOT_DOT_LT] = ACTIONS(1259), - [anon_sym_null] = ACTIONS(1259), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [aux_sym__val_number_decimal_token1] = ACTIONS(1259), - [aux_sym__val_number_decimal_token2] = ACTIONS(1259), - [anon_sym_DOT2] = ACTIONS(1259), - [aux_sym__val_number_decimal_token3] = ACTIONS(1259), - [aux_sym__val_number_token1] = ACTIONS(1259), - [aux_sym__val_number_token2] = ACTIONS(1259), - [aux_sym__val_number_token3] = ACTIONS(1259), - [aux_sym__val_number_token4] = ACTIONS(1259), - [aux_sym__val_number_token5] = ACTIONS(1259), - [aux_sym__val_number_token6] = ACTIONS(1259), - [anon_sym_0b] = ACTIONS(1259), - [anon_sym_0o] = ACTIONS(1259), - [anon_sym_0x] = ACTIONS(1259), - [anon_sym_LBRACK2] = ACTIONS(6928), - [sym_val_date] = ACTIONS(1259), - [anon_sym_DQUOTE] = ACTIONS(1259), - [sym__str_single_quotes] = ACTIONS(1259), - [sym__str_back_ticks] = ACTIONS(1259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1259), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1259), - [anon_sym_POUND] = ACTIONS(113), - }, - [2989] = { - [sym_ctrl_if] = STATE(8898), - [sym_block] = STATE(8968), - [sym__expression] = STATE(8968), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(5342), - [sym__var] = STATE(4755), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(8968), - [sym_comment] = STATE(2989), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(1762), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_if] = ACTIONS(409), - [anon_sym_LBRACE] = ACTIONS(6930), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_not] = ACTIONS(191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(193), - [anon_sym_DOT_DOT_LT] = ACTIONS(193), - [anon_sym_null] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [aux_sym__val_number_decimal_token1] = ACTIONS(199), - [aux_sym__val_number_decimal_token2] = ACTIONS(201), - [anon_sym_DOT2] = ACTIONS(203), - [aux_sym__val_number_decimal_token3] = ACTIONS(205), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(209), - [aux_sym__val_number_token5] = ACTIONS(207), - [aux_sym__val_number_token6] = ACTIONS(209), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_POUND] = ACTIONS(3), - }, - [2990] = { - [sym_comment] = STATE(2990), - [ts_builtin_sym_end] = ACTIONS(1160), - [anon_sym_SEMI] = ACTIONS(1158), - [anon_sym_LF] = ACTIONS(1160), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_LPAREN] = ACTIONS(1158), - [anon_sym_PIPE] = ACTIONS(1158), - [anon_sym_DOLLAR] = ACTIONS(1158), - [anon_sym_GT] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_in] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1158), - [anon_sym_DOT_DOT] = ACTIONS(1158), - [anon_sym_STAR] = ACTIONS(1158), - [anon_sym_STAR_STAR] = ACTIONS(1158), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_SLASH] = ACTIONS(1158), - [anon_sym_mod] = ACTIONS(1158), - [anon_sym_SLASH_SLASH] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1158), - [anon_sym_bit_DASHshl] = ACTIONS(1158), - [anon_sym_bit_DASHshr] = ACTIONS(1158), - [anon_sym_EQ_EQ] = ACTIONS(1158), - [anon_sym_BANG_EQ] = ACTIONS(1158), - [anon_sym_LT2] = ACTIONS(1158), - [anon_sym_LT_EQ] = ACTIONS(1158), - [anon_sym_GT_EQ] = ACTIONS(1158), - [anon_sym_not_DASHin] = ACTIONS(1158), - [anon_sym_starts_DASHwith] = ACTIONS(1158), - [anon_sym_ends_DASHwith] = ACTIONS(1158), - [anon_sym_EQ_TILDE] = ACTIONS(1158), - [anon_sym_BANG_TILDE] = ACTIONS(1158), - [anon_sym_bit_DASHand] = ACTIONS(1158), - [anon_sym_bit_DASHxor] = ACTIONS(1158), - [anon_sym_bit_DASHor] = ACTIONS(1158), - [anon_sym_and] = ACTIONS(1158), - [anon_sym_xor] = ACTIONS(1158), - [anon_sym_or] = ACTIONS(1158), - [anon_sym_not] = ACTIONS(1158), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1158), - [anon_sym_DOT_DOT_LT] = ACTIONS(1158), - [anon_sym_null] = ACTIONS(1158), - [anon_sym_true] = ACTIONS(1158), - [anon_sym_false] = ACTIONS(1158), - [aux_sym__val_number_decimal_token1] = ACTIONS(1158), - [aux_sym__val_number_decimal_token2] = ACTIONS(1158), - [anon_sym_DOT2] = ACTIONS(1158), - [aux_sym__val_number_decimal_token3] = ACTIONS(1158), - [aux_sym__val_number_token1] = ACTIONS(1158), - [aux_sym__val_number_token2] = ACTIONS(1158), - [aux_sym__val_number_token3] = ACTIONS(1158), - [aux_sym__val_number_token4] = ACTIONS(1158), - [aux_sym__val_number_token5] = ACTIONS(1158), - [aux_sym__val_number_token6] = ACTIONS(1158), - [anon_sym_0b] = ACTIONS(1158), - [anon_sym_0o] = ACTIONS(1158), - [anon_sym_0x] = ACTIONS(1158), - [sym_val_date] = ACTIONS(1158), - [anon_sym_DQUOTE] = ACTIONS(1158), - [sym__str_single_quotes] = ACTIONS(1158), - [sym__str_back_ticks] = ACTIONS(1158), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1158), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1158), - [aux_sym_unquoted_token6] = ACTIONS(1284), - [anon_sym_POUND] = ACTIONS(113), - }, - [2991] = { - [sym_comment] = STATE(2991), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_LF] = ACTIONS(1061), - [anon_sym_LBRACK] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_DASH_DASH] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(1059), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_STAR_STAR] = ACTIONS(1059), - [anon_sym_PLUS_PLUS] = ACTIONS(1059), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_mod] = ACTIONS(1059), - [anon_sym_SLASH_SLASH] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_bit_DASHshl] = ACTIONS(1059), - [anon_sym_bit_DASHshr] = ACTIONS(1059), - [anon_sym_EQ_EQ] = ACTIONS(1059), - [anon_sym_BANG_EQ] = ACTIONS(1059), - [anon_sym_LT2] = ACTIONS(1059), - [anon_sym_LT_EQ] = ACTIONS(1059), - [anon_sym_GT_EQ] = ACTIONS(1059), - [anon_sym_not_DASHin] = ACTIONS(1059), - [anon_sym_starts_DASHwith] = ACTIONS(1059), - [anon_sym_ends_DASHwith] = ACTIONS(1059), - [anon_sym_EQ_TILDE] = ACTIONS(1059), - [anon_sym_BANG_TILDE] = ACTIONS(1059), - [anon_sym_bit_DASHand] = ACTIONS(1059), - [anon_sym_bit_DASHxor] = ACTIONS(1059), - [anon_sym_bit_DASHor] = ACTIONS(1059), - [anon_sym_and] = ACTIONS(1059), - [anon_sym_xor] = ACTIONS(1059), - [anon_sym_or] = ACTIONS(1059), - [anon_sym_not] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1059), - [anon_sym_DOT_DOT_LT] = ACTIONS(1059), - [anon_sym_null] = ACTIONS(1059), - [anon_sym_true] = ACTIONS(1059), - [anon_sym_false] = ACTIONS(1059), - [aux_sym__val_number_decimal_token1] = ACTIONS(1059), - [aux_sym__val_number_decimal_token2] = ACTIONS(1059), - [anon_sym_DOT2] = ACTIONS(1059), - [aux_sym__val_number_decimal_token3] = ACTIONS(1059), - [aux_sym__val_number_token1] = ACTIONS(1059), - [aux_sym__val_number_token2] = ACTIONS(1059), - [aux_sym__val_number_token3] = ACTIONS(1059), - [aux_sym__val_number_token4] = ACTIONS(1059), - [aux_sym__val_number_token5] = ACTIONS(1059), - [aux_sym__val_number_token6] = ACTIONS(1059), - [anon_sym_0b] = ACTIONS(1059), - [anon_sym_0o] = ACTIONS(1059), - [anon_sym_0x] = ACTIONS(1059), - [sym_val_date] = ACTIONS(1059), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym__str_single_quotes] = ACTIONS(1059), - [sym__str_back_ticks] = ACTIONS(1059), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1059), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1059), - [anon_sym_POUND] = ACTIONS(113), - }, - [2992] = { - [sym_comment] = STATE(2992), - [anon_sym_SEMI] = ACTIONS(1172), - [anon_sym_LF] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_LPAREN] = ACTIONS(1172), - [anon_sym_RPAREN] = ACTIONS(1172), - [anon_sym_PIPE] = ACTIONS(1172), - [anon_sym_DOLLAR] = ACTIONS(1172), - [anon_sym_GT] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_DASH] = ACTIONS(1172), - [anon_sym_in] = ACTIONS(1172), - [anon_sym_LBRACE] = ACTIONS(1172), - [anon_sym_RBRACE] = ACTIONS(1172), - [anon_sym_DOT_DOT] = ACTIONS(1172), - [anon_sym_STAR] = ACTIONS(1172), - [anon_sym_STAR_STAR] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_SLASH] = ACTIONS(1172), - [anon_sym_mod] = ACTIONS(1172), - [anon_sym_SLASH_SLASH] = ACTIONS(1172), - [anon_sym_PLUS] = ACTIONS(1172), - [anon_sym_bit_DASHshl] = ACTIONS(1172), - [anon_sym_bit_DASHshr] = ACTIONS(1172), - [anon_sym_EQ_EQ] = ACTIONS(1172), - [anon_sym_BANG_EQ] = ACTIONS(1172), - [anon_sym_LT2] = ACTIONS(1172), - [anon_sym_LT_EQ] = ACTIONS(1172), - [anon_sym_GT_EQ] = ACTIONS(1172), - [anon_sym_not_DASHin] = ACTIONS(1172), - [anon_sym_starts_DASHwith] = ACTIONS(1172), - [anon_sym_ends_DASHwith] = ACTIONS(1172), - [anon_sym_EQ_TILDE] = ACTIONS(1172), - [anon_sym_BANG_TILDE] = ACTIONS(1172), - [anon_sym_bit_DASHand] = ACTIONS(1172), - [anon_sym_bit_DASHxor] = ACTIONS(1172), - [anon_sym_bit_DASHor] = ACTIONS(1172), - [anon_sym_and] = ACTIONS(1172), - [anon_sym_xor] = ACTIONS(1172), - [anon_sym_or] = ACTIONS(1172), - [anon_sym_not] = ACTIONS(1172), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1172), - [anon_sym_DOT_DOT_LT] = ACTIONS(1172), - [anon_sym_null] = ACTIONS(1172), - [anon_sym_true] = ACTIONS(1172), - [anon_sym_false] = ACTIONS(1172), - [aux_sym__val_number_decimal_token1] = ACTIONS(1172), - [aux_sym__val_number_decimal_token2] = ACTIONS(1172), - [anon_sym_DOT2] = ACTIONS(1172), - [aux_sym__val_number_decimal_token3] = ACTIONS(1172), - [aux_sym__val_number_token1] = ACTIONS(1172), - [aux_sym__val_number_token2] = ACTIONS(1172), - [aux_sym__val_number_token3] = ACTIONS(1172), - [aux_sym__val_number_token4] = ACTIONS(1172), - [aux_sym__val_number_token5] = ACTIONS(1172), - [aux_sym__val_number_token6] = ACTIONS(1172), - [anon_sym_0b] = ACTIONS(1172), - [anon_sym_0o] = ACTIONS(1172), - [anon_sym_0x] = ACTIONS(1172), - [sym_val_date] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(1172), - [sym__str_single_quotes] = ACTIONS(1172), - [sym__str_back_ticks] = ACTIONS(1172), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1172), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1172), - [anon_sym_POUND] = ACTIONS(113), - }, - [2993] = { - [sym__expr_parenthesized_immediate] = STATE(3443), - [sym__immediate_decimal] = STATE(3444), - [sym_val_variable] = STATE(3443), - [sym__var] = STATE(3150), - [sym_comment] = STATE(2993), - [anon_sym_export] = ACTIONS(2387), - [anon_sym_alias] = ACTIONS(2387), - [anon_sym_let] = ACTIONS(2387), - [anon_sym_let_DASHenv] = ACTIONS(2387), - [anon_sym_mut] = ACTIONS(2387), - [anon_sym_const] = ACTIONS(2387), - [sym_cmd_identifier] = ACTIONS(2387), - [anon_sym_def] = ACTIONS(2387), - [anon_sym_export_DASHenv] = ACTIONS(2387), - [anon_sym_extern] = ACTIONS(2387), - [anon_sym_module] = ACTIONS(2387), - [anon_sym_use] = ACTIONS(2387), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_DOLLAR] = ACTIONS(6932), - [anon_sym_error] = ACTIONS(2387), - [anon_sym_list] = ACTIONS(2387), - [anon_sym_DASH] = ACTIONS(2387), - [anon_sym_break] = ACTIONS(2387), - [anon_sym_continue] = ACTIONS(2387), - [anon_sym_for] = ACTIONS(2387), - [anon_sym_in] = ACTIONS(2387), - [anon_sym_loop] = ACTIONS(2387), - [anon_sym_make] = ACTIONS(2387), - [anon_sym_while] = ACTIONS(2387), - [anon_sym_do] = ACTIONS(2387), - [anon_sym_if] = ACTIONS(2387), - [anon_sym_else] = ACTIONS(2387), - [anon_sym_match] = ACTIONS(2387), - [anon_sym_RBRACE] = ACTIONS(2389), - [anon_sym_try] = ACTIONS(2387), - [anon_sym_catch] = ACTIONS(2387), - [anon_sym_return] = ACTIONS(2387), - [anon_sym_source] = ACTIONS(2387), - [anon_sym_source_DASHenv] = ACTIONS(2387), - [anon_sym_register] = ACTIONS(2387), - [anon_sym_hide] = ACTIONS(2387), - [anon_sym_hide_DASHenv] = ACTIONS(2387), - [anon_sym_overlay] = ACTIONS(2387), - [anon_sym_new] = ACTIONS(2387), - [anon_sym_as] = ACTIONS(2387), - [anon_sym_PLUS] = ACTIONS(2387), - [anon_sym_LPAREN2] = ACTIONS(6934), - [anon_sym_DOT] = ACTIONS(6936), - [aux_sym__immediate_decimal_token1] = ACTIONS(6938), - [aux_sym__immediate_decimal_token3] = ACTIONS(6940), - [aux_sym__immediate_decimal_token4] = ACTIONS(6942), - [aux_sym__val_number_decimal_token1] = ACTIONS(2387), - [aux_sym__val_number_decimal_token2] = ACTIONS(2387), - [anon_sym_DOT2] = ACTIONS(2387), - [aux_sym__val_number_decimal_token3] = ACTIONS(2387), - [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(2387), - [aux_sym__val_number_token5] = ACTIONS(2389), - [aux_sym__val_number_token6] = ACTIONS(2387), - [anon_sym_DQUOTE] = ACTIONS(2389), - [sym__str_single_quotes] = ACTIONS(2389), - [sym__str_back_ticks] = ACTIONS(2389), - [aux_sym__record_key_token2] = ACTIONS(2387), - [anon_sym_POUND] = ACTIONS(3), - }, - [2994] = { - [sym__expr_parenthesized_immediate] = STATE(3557), - [sym__immediate_decimal] = STATE(3558), - [sym_val_variable] = STATE(3557), - [sym__var] = STATE(3214), - [sym_comment] = STATE(2994), - [anon_sym_export] = ACTIONS(2387), - [anon_sym_alias] = ACTIONS(2387), - [anon_sym_let] = ACTIONS(2387), - [anon_sym_let_DASHenv] = ACTIONS(2387), - [anon_sym_mut] = ACTIONS(2387), - [anon_sym_const] = ACTIONS(2387), - [sym_cmd_identifier] = ACTIONS(2387), - [anon_sym_def] = ACTIONS(2387), - [anon_sym_export_DASHenv] = ACTIONS(2387), - [anon_sym_extern] = ACTIONS(2387), - [anon_sym_module] = ACTIONS(2387), - [anon_sym_use] = ACTIONS(2387), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_DOLLAR] = ACTIONS(6095), - [anon_sym_error] = ACTIONS(2387), - [anon_sym_list] = ACTIONS(2387), - [anon_sym_DASH] = ACTIONS(2387), - [anon_sym_break] = ACTIONS(2387), - [anon_sym_continue] = ACTIONS(2387), - [anon_sym_for] = ACTIONS(2387), - [anon_sym_in] = ACTIONS(2387), - [anon_sym_loop] = ACTIONS(2387), - [anon_sym_make] = ACTIONS(2387), - [anon_sym_while] = ACTIONS(2387), - [anon_sym_do] = ACTIONS(2387), - [anon_sym_if] = ACTIONS(2387), - [anon_sym_else] = ACTIONS(2387), - [anon_sym_match] = ACTIONS(2387), - [anon_sym_RBRACE] = ACTIONS(2389), - [anon_sym_try] = ACTIONS(2387), - [anon_sym_catch] = ACTIONS(2387), - [anon_sym_return] = ACTIONS(2387), - [anon_sym_source] = ACTIONS(2387), - [anon_sym_source_DASHenv] = ACTIONS(2387), - [anon_sym_register] = ACTIONS(2387), - [anon_sym_hide] = ACTIONS(2387), - [anon_sym_hide_DASHenv] = ACTIONS(2387), - [anon_sym_overlay] = ACTIONS(2387), - [anon_sym_new] = ACTIONS(2387), - [anon_sym_as] = ACTIONS(2387), - [anon_sym_PLUS] = ACTIONS(2387), - [anon_sym_LPAREN2] = ACTIONS(6944), - [anon_sym_DOT] = ACTIONS(6946), - [aux_sym__immediate_decimal_token1] = ACTIONS(6948), - [aux_sym__immediate_decimal_token3] = ACTIONS(6950), - [aux_sym__immediate_decimal_token4] = ACTIONS(6952), - [aux_sym__val_number_decimal_token1] = ACTIONS(2387), - [aux_sym__val_number_decimal_token2] = ACTIONS(2387), - [anon_sym_DOT2] = ACTIONS(2387), - [aux_sym__val_number_decimal_token3] = ACTIONS(2387), - [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(2387), - [aux_sym__val_number_token5] = ACTIONS(2389), - [aux_sym__val_number_token6] = ACTIONS(2387), - [anon_sym_DQUOTE] = ACTIONS(2389), - [sym__str_single_quotes] = ACTIONS(2389), - [sym__str_back_ticks] = ACTIONS(2389), - [aux_sym__record_key_token2] = ACTIONS(2387), - [anon_sym_POUND] = ACTIONS(3), - }, - [2995] = { - [sym_comment] = STATE(2995), - [anon_sym_export] = ACTIONS(6954), - [anon_sym_alias] = ACTIONS(6954), - [anon_sym_let] = ACTIONS(6954), - [anon_sym_let_DASHenv] = ACTIONS(6954), - [anon_sym_mut] = ACTIONS(6954), - [anon_sym_const] = ACTIONS(6954), - [anon_sym_SEMI] = ACTIONS(6954), - [sym_cmd_identifier] = ACTIONS(6954), - [anon_sym_LF] = ACTIONS(6956), - [anon_sym_def] = ACTIONS(6954), - [anon_sym_export_DASHenv] = ACTIONS(6954), - [anon_sym_extern] = ACTIONS(6954), - [anon_sym_module] = ACTIONS(6954), - [anon_sym_use] = ACTIONS(6954), - [anon_sym_LBRACK] = ACTIONS(6954), - [anon_sym_LPAREN] = ACTIONS(6954), - [anon_sym_DOLLAR] = ACTIONS(6954), - [anon_sym_error] = ACTIONS(6954), - [anon_sym_DASH] = ACTIONS(6954), - [anon_sym_break] = ACTIONS(6954), - [anon_sym_continue] = ACTIONS(6954), - [anon_sym_for] = ACTIONS(6954), - [anon_sym_loop] = ACTIONS(6954), - [anon_sym_while] = ACTIONS(6954), - [anon_sym_do] = ACTIONS(6954), - [anon_sym_if] = ACTIONS(6954), - [anon_sym_match] = ACTIONS(6954), - [anon_sym_LBRACE] = ACTIONS(6954), - [anon_sym_DOT_DOT] = ACTIONS(6954), - [anon_sym_try] = ACTIONS(6954), - [anon_sym_return] = ACTIONS(6954), - [anon_sym_source] = ACTIONS(6954), - [anon_sym_source_DASHenv] = ACTIONS(6954), - [anon_sym_register] = ACTIONS(6954), - [anon_sym_hide] = ACTIONS(6954), - [anon_sym_hide_DASHenv] = ACTIONS(6954), - [anon_sym_overlay] = ACTIONS(6954), - [anon_sym_where] = ACTIONS(6954), - [anon_sym_not] = ACTIONS(6954), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6954), - [anon_sym_DOT_DOT_LT] = ACTIONS(6954), - [anon_sym_null] = ACTIONS(6954), - [anon_sym_true] = ACTIONS(6954), - [anon_sym_false] = ACTIONS(6954), - [aux_sym__val_number_decimal_token1] = ACTIONS(6954), - [aux_sym__val_number_decimal_token2] = ACTIONS(6954), - [anon_sym_DOT2] = ACTIONS(6954), - [aux_sym__val_number_decimal_token3] = ACTIONS(6954), - [aux_sym__val_number_token1] = ACTIONS(6954), - [aux_sym__val_number_token2] = ACTIONS(6954), - [aux_sym__val_number_token3] = ACTIONS(6954), - [aux_sym__val_number_token4] = ACTIONS(6954), - [aux_sym__val_number_token5] = ACTIONS(6954), - [aux_sym__val_number_token6] = ACTIONS(6954), - [anon_sym_0b] = ACTIONS(6954), - [anon_sym_0o] = ACTIONS(6954), - [anon_sym_0x] = ACTIONS(6954), - [sym_val_date] = ACTIONS(6954), - [anon_sym_DQUOTE] = ACTIONS(6954), - [sym__str_single_quotes] = ACTIONS(6954), - [sym__str_back_ticks] = ACTIONS(6954), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6954), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6954), - [anon_sym_CARET] = ACTIONS(6954), - [anon_sym_POUND] = ACTIONS(113), - }, - [2996] = { - [sym_comment] = STATE(2996), - [ts_builtin_sym_end] = ACTIONS(1115), - [anon_sym_SEMI] = ACTIONS(1113), - [anon_sym_LF] = ACTIONS(1115), - [anon_sym_LBRACK] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_PIPE] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1113), - [anon_sym_GT] = ACTIONS(1113), - [anon_sym_DASH_DASH] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_in] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_STAR_STAR] = ACTIONS(1113), - [anon_sym_PLUS_PLUS] = ACTIONS(1113), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_mod] = ACTIONS(1113), - [anon_sym_SLASH_SLASH] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_bit_DASHshl] = ACTIONS(1113), - [anon_sym_bit_DASHshr] = ACTIONS(1113), - [anon_sym_EQ_EQ] = ACTIONS(1113), - [anon_sym_BANG_EQ] = ACTIONS(1113), - [anon_sym_LT2] = ACTIONS(1113), - [anon_sym_LT_EQ] = ACTIONS(1113), - [anon_sym_GT_EQ] = ACTIONS(1113), - [anon_sym_not_DASHin] = ACTIONS(1113), - [anon_sym_starts_DASHwith] = ACTIONS(1113), - [anon_sym_ends_DASHwith] = ACTIONS(1113), - [anon_sym_EQ_TILDE] = ACTIONS(1113), - [anon_sym_BANG_TILDE] = ACTIONS(1113), - [anon_sym_bit_DASHand] = ACTIONS(1113), - [anon_sym_bit_DASHxor] = ACTIONS(1113), - [anon_sym_bit_DASHor] = ACTIONS(1113), - [anon_sym_and] = ACTIONS(1113), - [anon_sym_xor] = ACTIONS(1113), - [anon_sym_or] = ACTIONS(1113), - [anon_sym_not] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1113), - [anon_sym_DOT_DOT_LT] = ACTIONS(1113), - [anon_sym_null] = ACTIONS(1113), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1113), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_decimal_token2] = ACTIONS(1113), - [anon_sym_DOT2] = ACTIONS(1113), - [aux_sym__val_number_decimal_token3] = ACTIONS(1113), - [aux_sym__val_number_token1] = ACTIONS(1113), - [aux_sym__val_number_token2] = ACTIONS(1113), - [aux_sym__val_number_token3] = ACTIONS(1113), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1113), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_0b] = ACTIONS(1113), - [anon_sym_0o] = ACTIONS(1113), - [anon_sym_0x] = ACTIONS(1113), - [sym_val_date] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym__str_single_quotes] = ACTIONS(1113), - [sym__str_back_ticks] = ACTIONS(1113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), - [anon_sym_POUND] = ACTIONS(113), - }, - [2997] = { - [sym_comment] = STATE(2997), - [anon_sym_export] = ACTIONS(6958), - [anon_sym_alias] = ACTIONS(6958), - [anon_sym_let] = ACTIONS(6958), - [anon_sym_let_DASHenv] = ACTIONS(6958), - [anon_sym_mut] = ACTIONS(6958), - [anon_sym_const] = ACTIONS(6958), - [anon_sym_SEMI] = ACTIONS(6958), - [sym_cmd_identifier] = ACTIONS(6958), - [anon_sym_LF] = ACTIONS(6960), - [anon_sym_def] = ACTIONS(6958), - [anon_sym_export_DASHenv] = ACTIONS(6958), - [anon_sym_extern] = ACTIONS(6958), - [anon_sym_module] = ACTIONS(6958), - [anon_sym_use] = ACTIONS(6958), - [anon_sym_LBRACK] = ACTIONS(6958), - [anon_sym_LPAREN] = ACTIONS(6958), - [anon_sym_DOLLAR] = ACTIONS(6958), - [anon_sym_error] = ACTIONS(6958), - [anon_sym_DASH] = ACTIONS(6958), - [anon_sym_break] = ACTIONS(6958), - [anon_sym_continue] = ACTIONS(6958), - [anon_sym_for] = ACTIONS(6958), - [anon_sym_loop] = ACTIONS(6958), - [anon_sym_while] = ACTIONS(6958), - [anon_sym_do] = ACTIONS(6958), - [anon_sym_if] = ACTIONS(6958), - [anon_sym_match] = ACTIONS(6958), - [anon_sym_LBRACE] = ACTIONS(6958), - [anon_sym_DOT_DOT] = ACTIONS(6958), - [anon_sym_try] = ACTIONS(6958), - [anon_sym_return] = ACTIONS(6958), - [anon_sym_source] = ACTIONS(6958), - [anon_sym_source_DASHenv] = ACTIONS(6958), - [anon_sym_register] = ACTIONS(6958), - [anon_sym_hide] = ACTIONS(6958), - [anon_sym_hide_DASHenv] = ACTIONS(6958), - [anon_sym_overlay] = ACTIONS(6958), - [anon_sym_where] = ACTIONS(6958), - [anon_sym_not] = ACTIONS(6958), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6958), - [anon_sym_DOT_DOT_LT] = ACTIONS(6958), - [anon_sym_null] = ACTIONS(6958), - [anon_sym_true] = ACTIONS(6958), - [anon_sym_false] = ACTIONS(6958), - [aux_sym__val_number_decimal_token1] = ACTIONS(6958), - [aux_sym__val_number_decimal_token2] = ACTIONS(6958), - [anon_sym_DOT2] = ACTIONS(6958), - [aux_sym__val_number_decimal_token3] = ACTIONS(6958), - [aux_sym__val_number_token1] = ACTIONS(6958), - [aux_sym__val_number_token2] = ACTIONS(6958), - [aux_sym__val_number_token3] = ACTIONS(6958), - [aux_sym__val_number_token4] = ACTIONS(6958), - [aux_sym__val_number_token5] = ACTIONS(6958), - [aux_sym__val_number_token6] = ACTIONS(6958), - [anon_sym_0b] = ACTIONS(6958), - [anon_sym_0o] = ACTIONS(6958), - [anon_sym_0x] = ACTIONS(6958), - [sym_val_date] = ACTIONS(6958), - [anon_sym_DQUOTE] = ACTIONS(6958), - [sym__str_single_quotes] = ACTIONS(6958), - [sym__str_back_ticks] = ACTIONS(6958), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6958), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6958), - [anon_sym_CARET] = ACTIONS(6958), - [anon_sym_POUND] = ACTIONS(113), - }, - [2998] = { - [sym_comment] = STATE(2998), - [ts_builtin_sym_end] = ACTIONS(1119), - [anon_sym_SEMI] = ACTIONS(1117), - [anon_sym_LF] = ACTIONS(1119), - [anon_sym_LBRACK] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1117), - [anon_sym_PIPE] = ACTIONS(1117), - [anon_sym_DOLLAR] = ACTIONS(1117), - [anon_sym_GT] = ACTIONS(1117), - [anon_sym_DASH_DASH] = ACTIONS(1117), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_in] = ACTIONS(1117), - [anon_sym_LBRACE] = ACTIONS(1117), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_STAR] = ACTIONS(1117), - [anon_sym_STAR_STAR] = ACTIONS(1117), - [anon_sym_PLUS_PLUS] = ACTIONS(1117), - [anon_sym_SLASH] = ACTIONS(1117), - [anon_sym_mod] = ACTIONS(1117), - [anon_sym_SLASH_SLASH] = ACTIONS(1117), - [anon_sym_PLUS] = ACTIONS(1117), - [anon_sym_bit_DASHshl] = ACTIONS(1117), - [anon_sym_bit_DASHshr] = ACTIONS(1117), - [anon_sym_EQ_EQ] = ACTIONS(1117), - [anon_sym_BANG_EQ] = ACTIONS(1117), - [anon_sym_LT2] = ACTIONS(1117), - [anon_sym_LT_EQ] = ACTIONS(1117), - [anon_sym_GT_EQ] = ACTIONS(1117), - [anon_sym_not_DASHin] = ACTIONS(1117), - [anon_sym_starts_DASHwith] = ACTIONS(1117), - [anon_sym_ends_DASHwith] = ACTIONS(1117), - [anon_sym_EQ_TILDE] = ACTIONS(1117), - [anon_sym_BANG_TILDE] = ACTIONS(1117), - [anon_sym_bit_DASHand] = ACTIONS(1117), - [anon_sym_bit_DASHxor] = ACTIONS(1117), - [anon_sym_bit_DASHor] = ACTIONS(1117), - [anon_sym_and] = ACTIONS(1117), - [anon_sym_xor] = ACTIONS(1117), - [anon_sym_or] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1117), - [anon_sym_DOT] = ACTIONS(1117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1117), - [anon_sym_DOT_DOT_LT] = ACTIONS(1117), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_true] = ACTIONS(1117), - [anon_sym_false] = ACTIONS(1117), - [aux_sym__val_number_decimal_token1] = ACTIONS(1117), - [aux_sym__val_number_decimal_token2] = ACTIONS(1117), - [anon_sym_DOT2] = ACTIONS(1117), - [aux_sym__val_number_decimal_token3] = ACTIONS(1117), - [aux_sym__val_number_token1] = ACTIONS(1117), - [aux_sym__val_number_token2] = ACTIONS(1117), - [aux_sym__val_number_token3] = ACTIONS(1117), - [aux_sym__val_number_token4] = ACTIONS(1117), - [aux_sym__val_number_token5] = ACTIONS(1117), - [aux_sym__val_number_token6] = ACTIONS(1117), - [anon_sym_0b] = ACTIONS(1117), - [anon_sym_0o] = ACTIONS(1117), - [anon_sym_0x] = ACTIONS(1117), - [sym_val_date] = ACTIONS(1117), - [anon_sym_DQUOTE] = ACTIONS(1117), - [sym__str_single_quotes] = ACTIONS(1117), - [sym__str_back_ticks] = ACTIONS(1117), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1117), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1117), - [anon_sym_POUND] = ACTIONS(113), - }, - [2999] = { - [sym_comment] = STATE(2999), - [anon_sym_SEMI] = ACTIONS(1410), - [anon_sym_LF] = ACTIONS(1412), - [anon_sym_LBRACK] = ACTIONS(1410), - [anon_sym_LPAREN] = ACTIONS(1410), - [anon_sym_RPAREN] = ACTIONS(1410), - [anon_sym_PIPE] = ACTIONS(1410), - [anon_sym_DOLLAR] = ACTIONS(1410), - [anon_sym_GT] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_in] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1410), - [anon_sym_RBRACE] = ACTIONS(1410), - [anon_sym_DOT_DOT] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1410), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_SLASH] = ACTIONS(1410), - [anon_sym_mod] = ACTIONS(1410), - [anon_sym_SLASH_SLASH] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_bit_DASHshl] = ACTIONS(1410), - [anon_sym_bit_DASHshr] = ACTIONS(1410), - [anon_sym_EQ_EQ] = ACTIONS(1410), - [anon_sym_BANG_EQ] = ACTIONS(1410), - [anon_sym_LT2] = ACTIONS(1410), - [anon_sym_LT_EQ] = ACTIONS(1410), - [anon_sym_GT_EQ] = ACTIONS(1410), - [anon_sym_not_DASHin] = ACTIONS(1410), - [anon_sym_starts_DASHwith] = ACTIONS(1410), - [anon_sym_ends_DASHwith] = ACTIONS(1410), - [anon_sym_EQ_TILDE] = ACTIONS(1410), - [anon_sym_BANG_TILDE] = ACTIONS(1410), - [anon_sym_bit_DASHand] = ACTIONS(1410), - [anon_sym_bit_DASHxor] = ACTIONS(1410), - [anon_sym_bit_DASHor] = ACTIONS(1410), - [anon_sym_and] = ACTIONS(1410), - [anon_sym_xor] = ACTIONS(1410), - [anon_sym_or] = ACTIONS(1410), - [anon_sym_not] = ACTIONS(1410), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1410), - [anon_sym_DOT_DOT_LT] = ACTIONS(1410), - [anon_sym_null] = ACTIONS(1410), - [anon_sym_true] = ACTIONS(1410), - [anon_sym_false] = ACTIONS(1410), - [aux_sym__val_number_decimal_token1] = ACTIONS(1410), - [aux_sym__val_number_decimal_token2] = ACTIONS(1410), - [anon_sym_DOT2] = ACTIONS(1410), - [aux_sym__val_number_decimal_token3] = ACTIONS(1410), - [aux_sym__val_number_token1] = ACTIONS(1410), - [aux_sym__val_number_token2] = ACTIONS(1410), - [aux_sym__val_number_token3] = ACTIONS(1410), - [aux_sym__val_number_token4] = ACTIONS(1410), - [aux_sym__val_number_token5] = ACTIONS(1410), - [aux_sym__val_number_token6] = ACTIONS(1410), - [anon_sym_0b] = ACTIONS(1410), - [anon_sym_0o] = ACTIONS(1410), - [anon_sym_0x] = ACTIONS(1410), - [sym_val_date] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1410), - [sym__str_single_quotes] = ACTIONS(1410), - [sym__str_back_ticks] = ACTIONS(1410), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1410), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1410), - [anon_sym_POUND] = ACTIONS(113), - }, - [3000] = { - [sym_comment] = STATE(3000), - [anon_sym_SEMI] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(936), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_RBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_STAR_STAR] = ACTIONS(936), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(936), - [anon_sym_SLASH_SLASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(936), - [anon_sym_bit_DASHshr] = ACTIONS(936), - [anon_sym_EQ_EQ] = ACTIONS(936), - [anon_sym_BANG_EQ] = ACTIONS(936), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(936), - [anon_sym_GT_EQ] = ACTIONS(936), - [anon_sym_not_DASHin] = ACTIONS(936), - [anon_sym_starts_DASHwith] = ACTIONS(936), - [anon_sym_ends_DASHwith] = ACTIONS(936), - [anon_sym_EQ_TILDE] = ACTIONS(936), - [anon_sym_BANG_TILDE] = ACTIONS(936), - [anon_sym_bit_DASHand] = ACTIONS(936), - [anon_sym_bit_DASHxor] = ACTIONS(936), - [anon_sym_bit_DASHor] = ACTIONS(936), - [anon_sym_and] = ACTIONS(936), - [anon_sym_xor] = ACTIONS(936), - [anon_sym_or] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [anon_sym_POUND] = ACTIONS(113), - }, - [3001] = { - [sym_comment] = STATE(3001), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_RPAREN] = ACTIONS(1376), - [anon_sym_PIPE] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(6962), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(6964), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(6966), - [anon_sym_STAR_STAR] = ACTIONS(6968), - [anon_sym_PLUS_PLUS] = ACTIONS(6968), - [anon_sym_SLASH] = ACTIONS(6966), - [anon_sym_mod] = ACTIONS(6966), - [anon_sym_SLASH_SLASH] = ACTIONS(6966), - [anon_sym_PLUS] = ACTIONS(6964), - [anon_sym_bit_DASHshl] = ACTIONS(6970), - [anon_sym_bit_DASHshr] = ACTIONS(6970), - [anon_sym_EQ_EQ] = ACTIONS(6962), - [anon_sym_BANG_EQ] = ACTIONS(6962), - [anon_sym_LT2] = ACTIONS(6962), - [anon_sym_LT_EQ] = ACTIONS(6962), - [anon_sym_GT_EQ] = ACTIONS(6962), - [anon_sym_not_DASHin] = ACTIONS(1376), - [anon_sym_starts_DASHwith] = ACTIONS(1376), - [anon_sym_ends_DASHwith] = ACTIONS(1376), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), - }, - [3002] = { - [sym_comment] = STATE(3002), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_RPAREN] = ACTIONS(1376), - [anon_sym_PIPE] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(6964), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(6966), - [anon_sym_STAR_STAR] = ACTIONS(6968), - [anon_sym_PLUS_PLUS] = ACTIONS(6968), - [anon_sym_SLASH] = ACTIONS(6966), - [anon_sym_mod] = ACTIONS(6966), - [anon_sym_SLASH_SLASH] = ACTIONS(6966), - [anon_sym_PLUS] = ACTIONS(6964), - [anon_sym_bit_DASHshl] = ACTIONS(1376), - [anon_sym_bit_DASHshr] = ACTIONS(1376), - [anon_sym_EQ_EQ] = ACTIONS(1376), - [anon_sym_BANG_EQ] = ACTIONS(1376), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1376), - [anon_sym_GT_EQ] = ACTIONS(1376), - [anon_sym_not_DASHin] = ACTIONS(1376), - [anon_sym_starts_DASHwith] = ACTIONS(1376), - [anon_sym_ends_DASHwith] = ACTIONS(1376), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), - }, - [3003] = { - [sym_comment] = STATE(3003), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_RPAREN] = ACTIONS(1376), - [anon_sym_PIPE] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(6962), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(6964), - [anon_sym_in] = ACTIONS(6972), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(6966), - [anon_sym_STAR_STAR] = ACTIONS(6968), - [anon_sym_PLUS_PLUS] = ACTIONS(6968), - [anon_sym_SLASH] = ACTIONS(6966), - [anon_sym_mod] = ACTIONS(6966), - [anon_sym_SLASH_SLASH] = ACTIONS(6966), - [anon_sym_PLUS] = ACTIONS(6964), - [anon_sym_bit_DASHshl] = ACTIONS(6970), - [anon_sym_bit_DASHshr] = ACTIONS(6970), - [anon_sym_EQ_EQ] = ACTIONS(6962), - [anon_sym_BANG_EQ] = ACTIONS(6962), - [anon_sym_LT2] = ACTIONS(6962), - [anon_sym_LT_EQ] = ACTIONS(6962), - [anon_sym_GT_EQ] = ACTIONS(6962), - [anon_sym_not_DASHin] = ACTIONS(6972), - [anon_sym_starts_DASHwith] = ACTIONS(6972), - [anon_sym_ends_DASHwith] = ACTIONS(6972), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), - }, - [3004] = { - [sym_comment] = STATE(3004), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_RPAREN] = ACTIONS(1376), - [anon_sym_PIPE] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(6966), - [anon_sym_STAR_STAR] = ACTIONS(6968), - [anon_sym_PLUS_PLUS] = ACTIONS(6968), - [anon_sym_SLASH] = ACTIONS(6966), - [anon_sym_mod] = ACTIONS(6966), - [anon_sym_SLASH_SLASH] = ACTIONS(6966), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_bit_DASHshl] = ACTIONS(1376), - [anon_sym_bit_DASHshr] = ACTIONS(1376), - [anon_sym_EQ_EQ] = ACTIONS(1376), - [anon_sym_BANG_EQ] = ACTIONS(1376), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1376), - [anon_sym_GT_EQ] = ACTIONS(1376), - [anon_sym_not_DASHin] = ACTIONS(1376), - [anon_sym_starts_DASHwith] = ACTIONS(1376), - [anon_sym_ends_DASHwith] = ACTIONS(1376), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), - }, - [3005] = { - [sym_comment] = STATE(3005), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_RPAREN] = ACTIONS(1376), - [anon_sym_PIPE] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(6968), - [anon_sym_PLUS_PLUS] = ACTIONS(6968), - [anon_sym_SLASH] = ACTIONS(1376), - [anon_sym_mod] = ACTIONS(1376), - [anon_sym_SLASH_SLASH] = ACTIONS(1376), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_bit_DASHshl] = ACTIONS(1376), - [anon_sym_bit_DASHshr] = ACTIONS(1376), - [anon_sym_EQ_EQ] = ACTIONS(1376), - [anon_sym_BANG_EQ] = ACTIONS(1376), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1376), - [anon_sym_GT_EQ] = ACTIONS(1376), - [anon_sym_not_DASHin] = ACTIONS(1376), - [anon_sym_starts_DASHwith] = ACTIONS(1376), - [anon_sym_ends_DASHwith] = ACTIONS(1376), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), - }, - [3006] = { - [sym_cell_path] = STATE(3174), - [sym_path] = STATE(2949), - [sym_comment] = STATE(3006), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_DOLLAR] = ACTIONS(995), - [anon_sym_GT] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_in] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(997), - [anon_sym_DOT_DOT] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_STAR_STAR] = ACTIONS(997), - [anon_sym_PLUS_PLUS] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(995), - [anon_sym_mod] = ACTIONS(997), - [anon_sym_SLASH_SLASH] = ACTIONS(997), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_bit_DASHshl] = ACTIONS(997), - [anon_sym_bit_DASHshr] = ACTIONS(997), - [anon_sym_EQ_EQ] = ACTIONS(997), - [anon_sym_BANG_EQ] = ACTIONS(997), - [anon_sym_LT2] = ACTIONS(995), - [anon_sym_LT_EQ] = ACTIONS(997), - [anon_sym_GT_EQ] = ACTIONS(997), - [anon_sym_not_DASHin] = ACTIONS(997), - [anon_sym_starts_DASHwith] = ACTIONS(997), - [anon_sym_ends_DASHwith] = ACTIONS(997), - [anon_sym_EQ_TILDE] = ACTIONS(997), - [anon_sym_BANG_TILDE] = ACTIONS(997), - [anon_sym_bit_DASHand] = ACTIONS(997), - [anon_sym_bit_DASHxor] = ACTIONS(997), - [anon_sym_bit_DASHor] = ACTIONS(997), - [anon_sym_and] = ACTIONS(997), - [anon_sym_xor] = ACTIONS(997), - [anon_sym_or] = ACTIONS(997), - [anon_sym_not] = ACTIONS(995), - [anon_sym_DOT_DOT2] = ACTIONS(995), - [anon_sym_DOT] = ACTIONS(6897), - [anon_sym_DOT_DOT_EQ] = ACTIONS(995), - [anon_sym_DOT_DOT_LT] = ACTIONS(995), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(997), - [anon_sym_DOT_DOT_LT2] = ACTIONS(997), - [anon_sym_null] = ACTIONS(997), - [anon_sym_true] = ACTIONS(997), - [anon_sym_false] = ACTIONS(997), - [aux_sym__val_number_decimal_token1] = ACTIONS(995), - [aux_sym__val_number_decimal_token2] = ACTIONS(997), - [anon_sym_DOT2] = ACTIONS(995), - [aux_sym__val_number_decimal_token3] = ACTIONS(997), - [aux_sym__val_number_token1] = ACTIONS(997), - [aux_sym__val_number_token2] = ACTIONS(997), - [aux_sym__val_number_token3] = ACTIONS(997), - [aux_sym__val_number_token4] = ACTIONS(997), - [aux_sym__val_number_token5] = ACTIONS(997), - [aux_sym__val_number_token6] = ACTIONS(997), - [anon_sym_0b] = ACTIONS(995), - [anon_sym_0o] = ACTIONS(995), - [anon_sym_0x] = ACTIONS(995), - [sym_val_date] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(997), - [sym__str_single_quotes] = ACTIONS(997), - [sym__str_back_ticks] = ACTIONS(997), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(997), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(997), - [anon_sym_POUND] = ACTIONS(3), - }, - [3007] = { - [sym_comment] = STATE(3007), - [anon_sym_SEMI] = ACTIONS(1280), - [anon_sym_LF] = ACTIONS(1282), - [anon_sym_LBRACK] = ACTIONS(1280), - [anon_sym_LPAREN] = ACTIONS(1280), - [anon_sym_RPAREN] = ACTIONS(1280), - [anon_sym_PIPE] = ACTIONS(1280), - [anon_sym_DOLLAR] = ACTIONS(1280), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_DASH_DASH] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_in] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1280), - [anon_sym_RBRACE] = ACTIONS(1280), - [anon_sym_DOT_DOT] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1280), - [anon_sym_STAR_STAR] = ACTIONS(1280), - [anon_sym_PLUS_PLUS] = ACTIONS(1280), - [anon_sym_SLASH] = ACTIONS(1280), - [anon_sym_mod] = ACTIONS(1280), - [anon_sym_SLASH_SLASH] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_bit_DASHshl] = ACTIONS(1280), - [anon_sym_bit_DASHshr] = ACTIONS(1280), - [anon_sym_EQ_EQ] = ACTIONS(1280), - [anon_sym_BANG_EQ] = ACTIONS(1280), - [anon_sym_LT2] = ACTIONS(1280), - [anon_sym_LT_EQ] = ACTIONS(1280), - [anon_sym_GT_EQ] = ACTIONS(1280), - [anon_sym_not_DASHin] = ACTIONS(1280), - [anon_sym_starts_DASHwith] = ACTIONS(1280), - [anon_sym_ends_DASHwith] = ACTIONS(1280), - [anon_sym_EQ_TILDE] = ACTIONS(1280), - [anon_sym_BANG_TILDE] = ACTIONS(1280), - [anon_sym_bit_DASHand] = ACTIONS(1280), - [anon_sym_bit_DASHxor] = ACTIONS(1280), - [anon_sym_bit_DASHor] = ACTIONS(1280), - [anon_sym_and] = ACTIONS(1280), - [anon_sym_xor] = ACTIONS(1280), - [anon_sym_or] = ACTIONS(1280), - [anon_sym_not] = ACTIONS(1280), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1280), - [anon_sym_DOT_DOT_LT] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1280), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [aux_sym__val_number_decimal_token1] = ACTIONS(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1280), - [anon_sym_DOT2] = ACTIONS(1280), - [aux_sym__val_number_decimal_token3] = ACTIONS(1280), - [aux_sym__val_number_token1] = ACTIONS(1280), - [aux_sym__val_number_token2] = ACTIONS(1280), - [aux_sym__val_number_token3] = ACTIONS(1280), - [aux_sym__val_number_token4] = ACTIONS(1280), - [aux_sym__val_number_token5] = ACTIONS(1280), - [aux_sym__val_number_token6] = ACTIONS(1280), - [anon_sym_0b] = ACTIONS(1280), - [anon_sym_0o] = ACTIONS(1280), - [anon_sym_0x] = ACTIONS(1280), - [sym_val_date] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1280), - [sym__str_single_quotes] = ACTIONS(1280), - [sym__str_back_ticks] = ACTIONS(1280), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1280), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1280), - [anon_sym_POUND] = ACTIONS(113), - }, - [3008] = { - [sym_comment] = STATE(3008), - [anon_sym_export] = ACTIONS(6974), - [anon_sym_alias] = ACTIONS(6974), - [anon_sym_let] = ACTIONS(6974), - [anon_sym_let_DASHenv] = ACTIONS(6974), - [anon_sym_mut] = ACTIONS(6974), - [anon_sym_const] = ACTIONS(6974), - [anon_sym_SEMI] = ACTIONS(6974), - [sym_cmd_identifier] = ACTIONS(6974), - [anon_sym_LF] = ACTIONS(6976), - [anon_sym_def] = ACTIONS(6974), - [anon_sym_export_DASHenv] = ACTIONS(6974), - [anon_sym_extern] = ACTIONS(6974), - [anon_sym_module] = ACTIONS(6974), - [anon_sym_use] = ACTIONS(6974), - [anon_sym_LBRACK] = ACTIONS(6974), - [anon_sym_LPAREN] = ACTIONS(6974), - [anon_sym_DOLLAR] = ACTIONS(6974), - [anon_sym_error] = ACTIONS(6974), - [anon_sym_DASH] = ACTIONS(6974), - [anon_sym_break] = ACTIONS(6974), - [anon_sym_continue] = ACTIONS(6974), - [anon_sym_for] = ACTIONS(6974), - [anon_sym_loop] = ACTIONS(6974), - [anon_sym_while] = ACTIONS(6974), - [anon_sym_do] = ACTIONS(6974), - [anon_sym_if] = ACTIONS(6974), - [anon_sym_match] = ACTIONS(6974), - [anon_sym_LBRACE] = ACTIONS(6974), - [anon_sym_DOT_DOT] = ACTIONS(6974), - [anon_sym_try] = ACTIONS(6974), - [anon_sym_return] = ACTIONS(6974), - [anon_sym_source] = ACTIONS(6974), - [anon_sym_source_DASHenv] = ACTIONS(6974), - [anon_sym_register] = ACTIONS(6974), - [anon_sym_hide] = ACTIONS(6974), - [anon_sym_hide_DASHenv] = ACTIONS(6974), - [anon_sym_overlay] = ACTIONS(6974), - [anon_sym_where] = ACTIONS(6974), - [anon_sym_not] = ACTIONS(6974), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6974), - [anon_sym_DOT_DOT_LT] = ACTIONS(6974), - [anon_sym_null] = ACTIONS(6974), - [anon_sym_true] = ACTIONS(6974), - [anon_sym_false] = ACTIONS(6974), - [aux_sym__val_number_decimal_token1] = ACTIONS(6974), - [aux_sym__val_number_decimal_token2] = ACTIONS(6974), - [anon_sym_DOT2] = ACTIONS(6974), - [aux_sym__val_number_decimal_token3] = ACTIONS(6974), - [aux_sym__val_number_token1] = ACTIONS(6974), - [aux_sym__val_number_token2] = ACTIONS(6974), - [aux_sym__val_number_token3] = ACTIONS(6974), - [aux_sym__val_number_token4] = ACTIONS(6974), - [aux_sym__val_number_token5] = ACTIONS(6974), - [aux_sym__val_number_token6] = ACTIONS(6974), - [anon_sym_0b] = ACTIONS(6974), - [anon_sym_0o] = ACTIONS(6974), - [anon_sym_0x] = ACTIONS(6974), - [sym_val_date] = ACTIONS(6974), - [anon_sym_DQUOTE] = ACTIONS(6974), - [sym__str_single_quotes] = ACTIONS(6974), - [sym__str_back_ticks] = ACTIONS(6974), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6974), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6974), - [anon_sym_CARET] = ACTIONS(6974), - [anon_sym_POUND] = ACTIONS(113), - }, - [3009] = { - [sym_comment] = STATE(3009), - [anon_sym_export] = ACTIONS(6978), - [anon_sym_alias] = ACTIONS(6978), - [anon_sym_let] = ACTIONS(6978), - [anon_sym_let_DASHenv] = ACTIONS(6978), - [anon_sym_mut] = ACTIONS(6978), - [anon_sym_const] = ACTIONS(6978), - [anon_sym_SEMI] = ACTIONS(6978), - [sym_cmd_identifier] = ACTIONS(6978), - [anon_sym_LF] = ACTIONS(6980), - [anon_sym_def] = ACTIONS(6978), - [anon_sym_export_DASHenv] = ACTIONS(6978), - [anon_sym_extern] = ACTIONS(6978), - [anon_sym_module] = ACTIONS(6978), - [anon_sym_use] = ACTIONS(6978), - [anon_sym_LBRACK] = ACTIONS(6978), - [anon_sym_LPAREN] = ACTIONS(6978), - [anon_sym_DOLLAR] = ACTIONS(6978), - [anon_sym_error] = ACTIONS(6978), - [anon_sym_DASH] = ACTIONS(6978), - [anon_sym_break] = ACTIONS(6978), - [anon_sym_continue] = ACTIONS(6978), - [anon_sym_for] = ACTIONS(6978), - [anon_sym_loop] = ACTIONS(6978), - [anon_sym_while] = ACTIONS(6978), - [anon_sym_do] = ACTIONS(6978), - [anon_sym_if] = ACTIONS(6978), - [anon_sym_match] = ACTIONS(6978), - [anon_sym_LBRACE] = ACTIONS(6978), - [anon_sym_DOT_DOT] = ACTIONS(6978), - [anon_sym_try] = ACTIONS(6978), - [anon_sym_return] = ACTIONS(6978), - [anon_sym_source] = ACTIONS(6978), - [anon_sym_source_DASHenv] = ACTIONS(6978), - [anon_sym_register] = ACTIONS(6978), - [anon_sym_hide] = ACTIONS(6978), - [anon_sym_hide_DASHenv] = ACTIONS(6978), - [anon_sym_overlay] = ACTIONS(6978), - [anon_sym_where] = ACTIONS(6978), - [anon_sym_not] = ACTIONS(6978), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6978), - [anon_sym_DOT_DOT_LT] = ACTIONS(6978), - [anon_sym_null] = ACTIONS(6978), - [anon_sym_true] = ACTIONS(6978), - [anon_sym_false] = ACTIONS(6978), - [aux_sym__val_number_decimal_token1] = ACTIONS(6978), - [aux_sym__val_number_decimal_token2] = ACTIONS(6978), - [anon_sym_DOT2] = ACTIONS(6978), - [aux_sym__val_number_decimal_token3] = ACTIONS(6978), - [aux_sym__val_number_token1] = ACTIONS(6978), - [aux_sym__val_number_token2] = ACTIONS(6978), - [aux_sym__val_number_token3] = ACTIONS(6978), - [aux_sym__val_number_token4] = ACTIONS(6978), - [aux_sym__val_number_token5] = ACTIONS(6978), - [aux_sym__val_number_token6] = ACTIONS(6978), - [anon_sym_0b] = ACTIONS(6978), - [anon_sym_0o] = ACTIONS(6978), - [anon_sym_0x] = ACTIONS(6978), - [sym_val_date] = ACTIONS(6978), - [anon_sym_DQUOTE] = ACTIONS(6978), - [sym__str_single_quotes] = ACTIONS(6978), - [sym__str_back_ticks] = ACTIONS(6978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6978), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6978), - [anon_sym_CARET] = ACTIONS(6978), - [anon_sym_POUND] = ACTIONS(113), - }, - [3010] = { - [sym_comment] = STATE(3010), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_RPAREN] = ACTIONS(1376), - [anon_sym_PIPE] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(6964), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(6966), - [anon_sym_STAR_STAR] = ACTIONS(6968), - [anon_sym_PLUS_PLUS] = ACTIONS(6968), - [anon_sym_SLASH] = ACTIONS(6966), - [anon_sym_mod] = ACTIONS(6966), - [anon_sym_SLASH_SLASH] = ACTIONS(6966), - [anon_sym_PLUS] = ACTIONS(6964), - [anon_sym_bit_DASHshl] = ACTIONS(6970), - [anon_sym_bit_DASHshr] = ACTIONS(6970), - [anon_sym_EQ_EQ] = ACTIONS(1376), - [anon_sym_BANG_EQ] = ACTIONS(1376), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1376), - [anon_sym_GT_EQ] = ACTIONS(1376), - [anon_sym_not_DASHin] = ACTIONS(1376), - [anon_sym_starts_DASHwith] = ACTIONS(1376), - [anon_sym_ends_DASHwith] = ACTIONS(1376), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), - }, - [3011] = { - [sym_comment] = STATE(3011), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_RPAREN] = ACTIONS(1376), - [anon_sym_PIPE] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(6962), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(6964), - [anon_sym_in] = ACTIONS(6972), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(6966), - [anon_sym_STAR_STAR] = ACTIONS(6968), - [anon_sym_PLUS_PLUS] = ACTIONS(6968), - [anon_sym_SLASH] = ACTIONS(6966), - [anon_sym_mod] = ACTIONS(6966), - [anon_sym_SLASH_SLASH] = ACTIONS(6966), - [anon_sym_PLUS] = ACTIONS(6964), - [anon_sym_bit_DASHshl] = ACTIONS(6970), - [anon_sym_bit_DASHshr] = ACTIONS(6970), - [anon_sym_EQ_EQ] = ACTIONS(6962), - [anon_sym_BANG_EQ] = ACTIONS(6962), - [anon_sym_LT2] = ACTIONS(6962), - [anon_sym_LT_EQ] = ACTIONS(6962), - [anon_sym_GT_EQ] = ACTIONS(6962), - [anon_sym_not_DASHin] = ACTIONS(6972), - [anon_sym_starts_DASHwith] = ACTIONS(6972), - [anon_sym_ends_DASHwith] = ACTIONS(6972), - [anon_sym_EQ_TILDE] = ACTIONS(6982), - [anon_sym_BANG_TILDE] = ACTIONS(6982), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), - }, - [3012] = { - [sym_comment] = STATE(3012), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_RPAREN] = ACTIONS(1376), - [anon_sym_PIPE] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(6962), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(6964), - [anon_sym_in] = ACTIONS(6972), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(6966), - [anon_sym_STAR_STAR] = ACTIONS(6968), - [anon_sym_PLUS_PLUS] = ACTIONS(6968), - [anon_sym_SLASH] = ACTIONS(6966), - [anon_sym_mod] = ACTIONS(6966), - [anon_sym_SLASH_SLASH] = ACTIONS(6966), - [anon_sym_PLUS] = ACTIONS(6964), - [anon_sym_bit_DASHshl] = ACTIONS(6970), - [anon_sym_bit_DASHshr] = ACTIONS(6970), - [anon_sym_EQ_EQ] = ACTIONS(6962), - [anon_sym_BANG_EQ] = ACTIONS(6962), - [anon_sym_LT2] = ACTIONS(6962), - [anon_sym_LT_EQ] = ACTIONS(6962), - [anon_sym_GT_EQ] = ACTIONS(6962), - [anon_sym_not_DASHin] = ACTIONS(6972), - [anon_sym_starts_DASHwith] = ACTIONS(6972), - [anon_sym_ends_DASHwith] = ACTIONS(6972), - [anon_sym_EQ_TILDE] = ACTIONS(6982), - [anon_sym_BANG_TILDE] = ACTIONS(6982), - [anon_sym_bit_DASHand] = ACTIONS(6984), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), - }, - [3013] = { - [sym_comment] = STATE(3013), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_RPAREN] = ACTIONS(1376), - [anon_sym_PIPE] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(6962), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(6964), - [anon_sym_in] = ACTIONS(6972), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(6966), - [anon_sym_STAR_STAR] = ACTIONS(6968), - [anon_sym_PLUS_PLUS] = ACTIONS(6968), - [anon_sym_SLASH] = ACTIONS(6966), - [anon_sym_mod] = ACTIONS(6966), - [anon_sym_SLASH_SLASH] = ACTIONS(6966), - [anon_sym_PLUS] = ACTIONS(6964), - [anon_sym_bit_DASHshl] = ACTIONS(6970), - [anon_sym_bit_DASHshr] = ACTIONS(6970), - [anon_sym_EQ_EQ] = ACTIONS(6962), - [anon_sym_BANG_EQ] = ACTIONS(6962), - [anon_sym_LT2] = ACTIONS(6962), - [anon_sym_LT_EQ] = ACTIONS(6962), - [anon_sym_GT_EQ] = ACTIONS(6962), - [anon_sym_not_DASHin] = ACTIONS(6972), - [anon_sym_starts_DASHwith] = ACTIONS(6972), - [anon_sym_ends_DASHwith] = ACTIONS(6972), - [anon_sym_EQ_TILDE] = ACTIONS(6982), - [anon_sym_BANG_TILDE] = ACTIONS(6982), - [anon_sym_bit_DASHand] = ACTIONS(6984), - [anon_sym_bit_DASHxor] = ACTIONS(6986), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), - }, - [3014] = { - [sym_comment] = STATE(3014), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_RPAREN] = ACTIONS(1376), - [anon_sym_PIPE] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(6962), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(6964), - [anon_sym_in] = ACTIONS(6972), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(6966), - [anon_sym_STAR_STAR] = ACTIONS(6968), - [anon_sym_PLUS_PLUS] = ACTIONS(6968), - [anon_sym_SLASH] = ACTIONS(6966), - [anon_sym_mod] = ACTIONS(6966), - [anon_sym_SLASH_SLASH] = ACTIONS(6966), - [anon_sym_PLUS] = ACTIONS(6964), - [anon_sym_bit_DASHshl] = ACTIONS(6970), - [anon_sym_bit_DASHshr] = ACTIONS(6970), - [anon_sym_EQ_EQ] = ACTIONS(6962), - [anon_sym_BANG_EQ] = ACTIONS(6962), - [anon_sym_LT2] = ACTIONS(6962), - [anon_sym_LT_EQ] = ACTIONS(6962), - [anon_sym_GT_EQ] = ACTIONS(6962), - [anon_sym_not_DASHin] = ACTIONS(6972), - [anon_sym_starts_DASHwith] = ACTIONS(6972), - [anon_sym_ends_DASHwith] = ACTIONS(6972), - [anon_sym_EQ_TILDE] = ACTIONS(6982), - [anon_sym_BANG_TILDE] = ACTIONS(6982), - [anon_sym_bit_DASHand] = ACTIONS(6984), - [anon_sym_bit_DASHxor] = ACTIONS(6986), - [anon_sym_bit_DASHor] = ACTIONS(6988), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), - }, - [3015] = { - [sym_comment] = STATE(3015), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_RPAREN] = ACTIONS(1376), - [anon_sym_PIPE] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(6962), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(6964), - [anon_sym_in] = ACTIONS(6972), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(6966), - [anon_sym_STAR_STAR] = ACTIONS(6968), - [anon_sym_PLUS_PLUS] = ACTIONS(6968), - [anon_sym_SLASH] = ACTIONS(6966), - [anon_sym_mod] = ACTIONS(6966), - [anon_sym_SLASH_SLASH] = ACTIONS(6966), - [anon_sym_PLUS] = ACTIONS(6964), - [anon_sym_bit_DASHshl] = ACTIONS(6970), - [anon_sym_bit_DASHshr] = ACTIONS(6970), - [anon_sym_EQ_EQ] = ACTIONS(6962), - [anon_sym_BANG_EQ] = ACTIONS(6962), - [anon_sym_LT2] = ACTIONS(6962), - [anon_sym_LT_EQ] = ACTIONS(6962), - [anon_sym_GT_EQ] = ACTIONS(6962), - [anon_sym_not_DASHin] = ACTIONS(6972), - [anon_sym_starts_DASHwith] = ACTIONS(6972), - [anon_sym_ends_DASHwith] = ACTIONS(6972), - [anon_sym_EQ_TILDE] = ACTIONS(6982), - [anon_sym_BANG_TILDE] = ACTIONS(6982), - [anon_sym_bit_DASHand] = ACTIONS(6984), - [anon_sym_bit_DASHxor] = ACTIONS(6986), - [anon_sym_bit_DASHor] = ACTIONS(6988), - [anon_sym_and] = ACTIONS(6990), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), - }, - [3016] = { - [sym_comment] = STATE(3016), - [anon_sym_export] = ACTIONS(6992), - [anon_sym_alias] = ACTIONS(6992), - [anon_sym_let] = ACTIONS(6992), - [anon_sym_let_DASHenv] = ACTIONS(6992), - [anon_sym_mut] = ACTIONS(6992), - [anon_sym_const] = ACTIONS(6992), - [anon_sym_SEMI] = ACTIONS(6992), - [sym_cmd_identifier] = ACTIONS(6992), - [anon_sym_LF] = ACTIONS(6994), - [anon_sym_def] = ACTIONS(6992), - [anon_sym_export_DASHenv] = ACTIONS(6992), - [anon_sym_extern] = ACTIONS(6992), - [anon_sym_module] = ACTIONS(6992), - [anon_sym_use] = ACTIONS(6992), - [anon_sym_LBRACK] = ACTIONS(6992), - [anon_sym_LPAREN] = ACTIONS(6992), - [anon_sym_DOLLAR] = ACTIONS(6992), - [anon_sym_error] = ACTIONS(6992), - [anon_sym_DASH] = ACTIONS(6992), - [anon_sym_break] = ACTIONS(6992), - [anon_sym_continue] = ACTIONS(6992), - [anon_sym_for] = ACTIONS(6992), - [anon_sym_loop] = ACTIONS(6992), - [anon_sym_while] = ACTIONS(6992), - [anon_sym_do] = ACTIONS(6992), - [anon_sym_if] = ACTIONS(6992), - [anon_sym_match] = ACTIONS(6992), - [anon_sym_LBRACE] = ACTIONS(6992), - [anon_sym_DOT_DOT] = ACTIONS(6992), - [anon_sym_try] = ACTIONS(6992), - [anon_sym_return] = ACTIONS(6992), - [anon_sym_source] = ACTIONS(6992), - [anon_sym_source_DASHenv] = ACTIONS(6992), - [anon_sym_register] = ACTIONS(6992), - [anon_sym_hide] = ACTIONS(6992), - [anon_sym_hide_DASHenv] = ACTIONS(6992), - [anon_sym_overlay] = ACTIONS(6992), - [anon_sym_where] = ACTIONS(6992), - [anon_sym_not] = ACTIONS(6992), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6992), - [anon_sym_DOT_DOT_LT] = ACTIONS(6992), - [anon_sym_null] = ACTIONS(6992), - [anon_sym_true] = ACTIONS(6992), - [anon_sym_false] = ACTIONS(6992), - [aux_sym__val_number_decimal_token1] = ACTIONS(6992), - [aux_sym__val_number_decimal_token2] = ACTIONS(6992), - [anon_sym_DOT2] = ACTIONS(6992), - [aux_sym__val_number_decimal_token3] = ACTIONS(6992), - [aux_sym__val_number_token1] = ACTIONS(6992), - [aux_sym__val_number_token2] = ACTIONS(6992), - [aux_sym__val_number_token3] = ACTIONS(6992), - [aux_sym__val_number_token4] = ACTIONS(6992), - [aux_sym__val_number_token5] = ACTIONS(6992), - [aux_sym__val_number_token6] = ACTIONS(6992), - [anon_sym_0b] = ACTIONS(6992), - [anon_sym_0o] = ACTIONS(6992), - [anon_sym_0x] = ACTIONS(6992), - [sym_val_date] = ACTIONS(6992), - [anon_sym_DQUOTE] = ACTIONS(6992), - [sym__str_single_quotes] = ACTIONS(6992), - [sym__str_back_ticks] = ACTIONS(6992), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6992), - [anon_sym_CARET] = ACTIONS(6992), - [anon_sym_POUND] = ACTIONS(113), - }, - [3017] = { - [sym_comment] = STATE(3017), - [anon_sym_SEMI] = ACTIONS(1063), - [anon_sym_LF] = ACTIONS(1065), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_RPAREN] = ACTIONS(1063), - [anon_sym_PIPE] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_DASH_DASH] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_RBRACE] = ACTIONS(1063), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_STAR_STAR] = ACTIONS(1063), - [anon_sym_PLUS_PLUS] = ACTIONS(1063), - [anon_sym_SLASH] = ACTIONS(1063), - [anon_sym_mod] = ACTIONS(1063), - [anon_sym_SLASH_SLASH] = ACTIONS(1063), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_bit_DASHshl] = ACTIONS(1063), - [anon_sym_bit_DASHshr] = ACTIONS(1063), - [anon_sym_EQ_EQ] = ACTIONS(1063), - [anon_sym_BANG_EQ] = ACTIONS(1063), - [anon_sym_LT2] = ACTIONS(1063), - [anon_sym_LT_EQ] = ACTIONS(1063), - [anon_sym_GT_EQ] = ACTIONS(1063), - [anon_sym_not_DASHin] = ACTIONS(1063), - [anon_sym_starts_DASHwith] = ACTIONS(1063), - [anon_sym_ends_DASHwith] = ACTIONS(1063), - [anon_sym_EQ_TILDE] = ACTIONS(1063), - [anon_sym_BANG_TILDE] = ACTIONS(1063), - [anon_sym_bit_DASHand] = ACTIONS(1063), - [anon_sym_bit_DASHxor] = ACTIONS(1063), - [anon_sym_bit_DASHor] = ACTIONS(1063), - [anon_sym_and] = ACTIONS(1063), - [anon_sym_xor] = ACTIONS(1063), - [anon_sym_or] = ACTIONS(1063), - [anon_sym_not] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1063), - [anon_sym_DOT_DOT_LT] = ACTIONS(1063), - [anon_sym_null] = ACTIONS(1063), - [anon_sym_true] = ACTIONS(1063), - [anon_sym_false] = ACTIONS(1063), - [aux_sym__val_number_decimal_token1] = ACTIONS(1063), - [aux_sym__val_number_decimal_token2] = ACTIONS(1063), - [anon_sym_DOT2] = ACTIONS(1063), - [aux_sym__val_number_decimal_token3] = ACTIONS(1063), - [aux_sym__val_number_token1] = ACTIONS(1063), - [aux_sym__val_number_token2] = ACTIONS(1063), - [aux_sym__val_number_token3] = ACTIONS(1063), - [aux_sym__val_number_token4] = ACTIONS(1063), - [aux_sym__val_number_token5] = ACTIONS(1063), - [aux_sym__val_number_token6] = ACTIONS(1063), - [anon_sym_0b] = ACTIONS(1063), - [anon_sym_0o] = ACTIONS(1063), - [anon_sym_0x] = ACTIONS(1063), - [sym_val_date] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [sym__str_single_quotes] = ACTIONS(1063), - [sym__str_back_ticks] = ACTIONS(1063), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1063), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1063), - [anon_sym_POUND] = ACTIONS(113), - }, - [3018] = { - [sym_comment] = STATE(3018), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_RPAREN] = ACTIONS(1376), - [anon_sym_PIPE] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(6962), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(6964), - [anon_sym_in] = ACTIONS(6972), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(6966), - [anon_sym_STAR_STAR] = ACTIONS(6968), - [anon_sym_PLUS_PLUS] = ACTIONS(6968), - [anon_sym_SLASH] = ACTIONS(6966), - [anon_sym_mod] = ACTIONS(6966), - [anon_sym_SLASH_SLASH] = ACTIONS(6966), - [anon_sym_PLUS] = ACTIONS(6964), - [anon_sym_bit_DASHshl] = ACTIONS(6970), - [anon_sym_bit_DASHshr] = ACTIONS(6970), - [anon_sym_EQ_EQ] = ACTIONS(6962), - [anon_sym_BANG_EQ] = ACTIONS(6962), - [anon_sym_LT2] = ACTIONS(6962), - [anon_sym_LT_EQ] = ACTIONS(6962), - [anon_sym_GT_EQ] = ACTIONS(6962), - [anon_sym_not_DASHin] = ACTIONS(6972), - [anon_sym_starts_DASHwith] = ACTIONS(6972), - [anon_sym_ends_DASHwith] = ACTIONS(6972), - [anon_sym_EQ_TILDE] = ACTIONS(6982), - [anon_sym_BANG_TILDE] = ACTIONS(6982), - [anon_sym_bit_DASHand] = ACTIONS(6984), - [anon_sym_bit_DASHxor] = ACTIONS(6986), - [anon_sym_bit_DASHor] = ACTIONS(6988), - [anon_sym_and] = ACTIONS(6990), - [anon_sym_xor] = ACTIONS(6996), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), - }, - [3019] = { - [sym_comment] = STATE(3019), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_RPAREN] = ACTIONS(1376), - [anon_sym_PIPE] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(6962), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(6964), - [anon_sym_in] = ACTIONS(6972), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(6966), - [anon_sym_STAR_STAR] = ACTIONS(6968), - [anon_sym_PLUS_PLUS] = ACTIONS(6968), - [anon_sym_SLASH] = ACTIONS(6966), - [anon_sym_mod] = ACTIONS(6966), - [anon_sym_SLASH_SLASH] = ACTIONS(6966), - [anon_sym_PLUS] = ACTIONS(6964), - [anon_sym_bit_DASHshl] = ACTIONS(6970), - [anon_sym_bit_DASHshr] = ACTIONS(6970), - [anon_sym_EQ_EQ] = ACTIONS(6962), - [anon_sym_BANG_EQ] = ACTIONS(6962), - [anon_sym_LT2] = ACTIONS(6962), - [anon_sym_LT_EQ] = ACTIONS(6962), - [anon_sym_GT_EQ] = ACTIONS(6962), - [anon_sym_not_DASHin] = ACTIONS(6972), - [anon_sym_starts_DASHwith] = ACTIONS(6972), - [anon_sym_ends_DASHwith] = ACTIONS(6972), - [anon_sym_EQ_TILDE] = ACTIONS(6982), - [anon_sym_BANG_TILDE] = ACTIONS(6982), - [anon_sym_bit_DASHand] = ACTIONS(6984), - [anon_sym_bit_DASHxor] = ACTIONS(6986), - [anon_sym_bit_DASHor] = ACTIONS(6988), - [anon_sym_and] = ACTIONS(6990), - [anon_sym_xor] = ACTIONS(6996), - [anon_sym_or] = ACTIONS(6998), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), - }, - [3020] = { - [sym_comment] = STATE(3020), - [anon_sym_SEMI] = ACTIONS(1332), - [anon_sym_LF] = ACTIONS(1334), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1332), - [anon_sym_RPAREN] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1332), - [anon_sym_DOLLAR] = ACTIONS(1332), - [anon_sym_GT] = ACTIONS(1332), - [anon_sym_DASH_DASH] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_in] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_RBRACE] = ACTIONS(1332), - [anon_sym_DOT_DOT] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_STAR_STAR] = ACTIONS(1332), - [anon_sym_PLUS_PLUS] = ACTIONS(1332), - [anon_sym_SLASH] = ACTIONS(1332), - [anon_sym_mod] = ACTIONS(1332), - [anon_sym_SLASH_SLASH] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_bit_DASHshl] = ACTIONS(1332), - [anon_sym_bit_DASHshr] = ACTIONS(1332), - [anon_sym_EQ_EQ] = ACTIONS(1332), - [anon_sym_BANG_EQ] = ACTIONS(1332), - [anon_sym_LT2] = ACTIONS(1332), - [anon_sym_LT_EQ] = ACTIONS(1332), - [anon_sym_GT_EQ] = ACTIONS(1332), - [anon_sym_not_DASHin] = ACTIONS(1332), - [anon_sym_starts_DASHwith] = ACTIONS(1332), - [anon_sym_ends_DASHwith] = ACTIONS(1332), - [anon_sym_EQ_TILDE] = ACTIONS(1332), - [anon_sym_BANG_TILDE] = ACTIONS(1332), - [anon_sym_bit_DASHand] = ACTIONS(1332), - [anon_sym_bit_DASHxor] = ACTIONS(1332), - [anon_sym_bit_DASHor] = ACTIONS(1332), - [anon_sym_and] = ACTIONS(1332), - [anon_sym_xor] = ACTIONS(1332), - [anon_sym_or] = ACTIONS(1332), - [anon_sym_not] = ACTIONS(1332), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1332), - [anon_sym_DOT_DOT_LT] = ACTIONS(1332), - [anon_sym_null] = ACTIONS(1332), - [anon_sym_true] = ACTIONS(1332), - [anon_sym_false] = ACTIONS(1332), - [aux_sym__val_number_decimal_token1] = ACTIONS(1332), - [aux_sym__val_number_decimal_token2] = ACTIONS(1332), - [anon_sym_DOT2] = ACTIONS(1332), - [aux_sym__val_number_decimal_token3] = ACTIONS(1332), - [aux_sym__val_number_token1] = ACTIONS(1332), - [aux_sym__val_number_token2] = ACTIONS(1332), - [aux_sym__val_number_token3] = ACTIONS(1332), - [aux_sym__val_number_token4] = ACTIONS(1332), - [aux_sym__val_number_token5] = ACTIONS(1332), - [aux_sym__val_number_token6] = ACTIONS(1332), - [anon_sym_0b] = ACTIONS(1332), - [anon_sym_0o] = ACTIONS(1332), - [anon_sym_0x] = ACTIONS(1332), - [sym_val_date] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym__str_single_quotes] = ACTIONS(1332), - [sym__str_back_ticks] = ACTIONS(1332), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1332), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1332), - [anon_sym_POUND] = ACTIONS(113), - }, - [3021] = { - [sym_comment] = STATE(3021), - [anon_sym_SEMI] = ACTIONS(1286), - [anon_sym_LF] = ACTIONS(1288), - [anon_sym_LBRACK] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(1286), - [anon_sym_RPAREN] = ACTIONS(1286), - [anon_sym_PIPE] = ACTIONS(1286), - [anon_sym_DOLLAR] = ACTIONS(1286), - [anon_sym_GT] = ACTIONS(1286), - [anon_sym_DASH_DASH] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1286), - [anon_sym_in] = ACTIONS(1286), - [anon_sym_LBRACE] = ACTIONS(1286), - [anon_sym_RBRACE] = ACTIONS(1286), - [anon_sym_DOT_DOT] = ACTIONS(1286), - [anon_sym_STAR] = ACTIONS(1286), - [anon_sym_STAR_STAR] = ACTIONS(1286), - [anon_sym_PLUS_PLUS] = ACTIONS(1286), - [anon_sym_SLASH] = ACTIONS(1286), - [anon_sym_mod] = ACTIONS(1286), - [anon_sym_SLASH_SLASH] = ACTIONS(1286), - [anon_sym_PLUS] = ACTIONS(1286), - [anon_sym_bit_DASHshl] = ACTIONS(1286), - [anon_sym_bit_DASHshr] = ACTIONS(1286), - [anon_sym_EQ_EQ] = ACTIONS(1286), - [anon_sym_BANG_EQ] = ACTIONS(1286), - [anon_sym_LT2] = ACTIONS(1286), - [anon_sym_LT_EQ] = ACTIONS(1286), - [anon_sym_GT_EQ] = ACTIONS(1286), - [anon_sym_not_DASHin] = ACTIONS(1286), - [anon_sym_starts_DASHwith] = ACTIONS(1286), - [anon_sym_ends_DASHwith] = ACTIONS(1286), - [anon_sym_EQ_TILDE] = ACTIONS(1286), - [anon_sym_BANG_TILDE] = ACTIONS(1286), - [anon_sym_bit_DASHand] = ACTIONS(1286), - [anon_sym_bit_DASHxor] = ACTIONS(1286), - [anon_sym_bit_DASHor] = ACTIONS(1286), - [anon_sym_and] = ACTIONS(1286), - [anon_sym_xor] = ACTIONS(1286), - [anon_sym_or] = ACTIONS(1286), - [anon_sym_not] = ACTIONS(1286), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1286), - [anon_sym_DOT_DOT_LT] = ACTIONS(1286), - [anon_sym_null] = ACTIONS(1286), - [anon_sym_true] = ACTIONS(1286), - [anon_sym_false] = ACTIONS(1286), - [aux_sym__val_number_decimal_token1] = ACTIONS(1286), - [aux_sym__val_number_decimal_token2] = ACTIONS(1286), - [anon_sym_DOT2] = ACTIONS(1286), - [aux_sym__val_number_decimal_token3] = ACTIONS(1286), - [aux_sym__val_number_token1] = ACTIONS(1286), - [aux_sym__val_number_token2] = ACTIONS(1286), - [aux_sym__val_number_token3] = ACTIONS(1286), - [aux_sym__val_number_token4] = ACTIONS(1286), - [aux_sym__val_number_token5] = ACTIONS(1286), - [aux_sym__val_number_token6] = ACTIONS(1286), - [anon_sym_0b] = ACTIONS(1286), - [anon_sym_0o] = ACTIONS(1286), - [anon_sym_0x] = ACTIONS(1286), - [sym_val_date] = ACTIONS(1286), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym__str_single_quotes] = ACTIONS(1286), - [sym__str_back_ticks] = ACTIONS(1286), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1286), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1286), - [anon_sym_POUND] = ACTIONS(113), - }, - [3022] = { - [sym_comment] = STATE(3022), - [anon_sym_SEMI] = ACTIONS(1372), - [anon_sym_LF] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1372), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_RPAREN] = ACTIONS(1372), - [anon_sym_PIPE] = ACTIONS(1372), - [anon_sym_DOLLAR] = ACTIONS(1372), - [anon_sym_GT] = ACTIONS(1372), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1372), - [anon_sym_in] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_RBRACE] = ACTIONS(1372), - [anon_sym_DOT_DOT] = ACTIONS(1372), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_STAR_STAR] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_SLASH] = ACTIONS(1372), - [anon_sym_mod] = ACTIONS(1372), - [anon_sym_SLASH_SLASH] = ACTIONS(1372), - [anon_sym_PLUS] = ACTIONS(1372), - [anon_sym_bit_DASHshl] = ACTIONS(1372), - [anon_sym_bit_DASHshr] = ACTIONS(1372), - [anon_sym_EQ_EQ] = ACTIONS(1372), - [anon_sym_BANG_EQ] = ACTIONS(1372), - [anon_sym_LT2] = ACTIONS(1372), - [anon_sym_LT_EQ] = ACTIONS(1372), - [anon_sym_GT_EQ] = ACTIONS(1372), - [anon_sym_not_DASHin] = ACTIONS(1372), - [anon_sym_starts_DASHwith] = ACTIONS(1372), - [anon_sym_ends_DASHwith] = ACTIONS(1372), - [anon_sym_EQ_TILDE] = ACTIONS(1372), - [anon_sym_BANG_TILDE] = ACTIONS(1372), - [anon_sym_bit_DASHand] = ACTIONS(1372), - [anon_sym_bit_DASHxor] = ACTIONS(1372), - [anon_sym_bit_DASHor] = ACTIONS(1372), - [anon_sym_and] = ACTIONS(1372), - [anon_sym_xor] = ACTIONS(1372), - [anon_sym_or] = ACTIONS(1372), - [anon_sym_not] = ACTIONS(1372), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1372), - [anon_sym_DOT_DOT_LT] = ACTIONS(1372), - [anon_sym_null] = ACTIONS(1372), - [anon_sym_true] = ACTIONS(1372), - [anon_sym_false] = ACTIONS(1372), - [aux_sym__val_number_decimal_token1] = ACTIONS(1372), - [aux_sym__val_number_decimal_token2] = ACTIONS(1372), - [anon_sym_DOT2] = ACTIONS(1372), - [aux_sym__val_number_decimal_token3] = ACTIONS(1372), - [aux_sym__val_number_token1] = ACTIONS(1372), - [aux_sym__val_number_token2] = ACTIONS(1372), - [aux_sym__val_number_token3] = ACTIONS(1372), - [aux_sym__val_number_token4] = ACTIONS(1372), - [aux_sym__val_number_token5] = ACTIONS(1372), - [aux_sym__val_number_token6] = ACTIONS(1372), - [anon_sym_0b] = ACTIONS(1372), - [anon_sym_0o] = ACTIONS(1372), - [anon_sym_0x] = ACTIONS(1372), - [sym_val_date] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [sym__str_single_quotes] = ACTIONS(1372), - [sym__str_back_ticks] = ACTIONS(1372), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1372), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1372), - [anon_sym_POUND] = ACTIONS(113), - }, - [3023] = { - [sym__expr_parenthesized_immediate] = STATE(3570), - [sym__immediate_decimal] = STATE(3571), - [sym_val_variable] = STATE(3570), - [sym__var] = STATE(3214), - [sym_comment] = STATE(3023), - [anon_sym_export] = ACTIONS(2349), - [anon_sym_alias] = ACTIONS(2349), - [anon_sym_let] = ACTIONS(2349), - [anon_sym_let_DASHenv] = ACTIONS(2349), - [anon_sym_mut] = ACTIONS(2349), - [anon_sym_const] = ACTIONS(2349), - [sym_cmd_identifier] = ACTIONS(2349), - [anon_sym_def] = ACTIONS(2349), - [anon_sym_export_DASHenv] = ACTIONS(2349), - [anon_sym_extern] = ACTIONS(2349), - [anon_sym_module] = ACTIONS(2349), - [anon_sym_use] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(2349), - [anon_sym_DOLLAR] = ACTIONS(6095), - [anon_sym_error] = ACTIONS(2349), - [anon_sym_list] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2349), - [anon_sym_break] = ACTIONS(2349), - [anon_sym_continue] = ACTIONS(2349), - [anon_sym_for] = ACTIONS(2349), - [anon_sym_in] = ACTIONS(2349), - [anon_sym_loop] = ACTIONS(2349), - [anon_sym_make] = ACTIONS(2349), - [anon_sym_while] = ACTIONS(2349), - [anon_sym_do] = ACTIONS(2349), - [anon_sym_if] = ACTIONS(2349), - [anon_sym_else] = ACTIONS(2349), - [anon_sym_match] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2351), - [anon_sym_try] = ACTIONS(2349), - [anon_sym_catch] = ACTIONS(2349), - [anon_sym_return] = ACTIONS(2349), - [anon_sym_source] = ACTIONS(2349), - [anon_sym_source_DASHenv] = ACTIONS(2349), - [anon_sym_register] = ACTIONS(2349), - [anon_sym_hide] = ACTIONS(2349), - [anon_sym_hide_DASHenv] = ACTIONS(2349), - [anon_sym_overlay] = ACTIONS(2349), - [anon_sym_new] = ACTIONS(2349), - [anon_sym_as] = ACTIONS(2349), - [anon_sym_PLUS] = ACTIONS(2349), - [anon_sym_LPAREN2] = ACTIONS(6944), - [anon_sym_DOT] = ACTIONS(6946), - [aux_sym__immediate_decimal_token1] = ACTIONS(6948), - [aux_sym__immediate_decimal_token3] = ACTIONS(6950), - [aux_sym__immediate_decimal_token4] = ACTIONS(6952), - [aux_sym__val_number_decimal_token1] = ACTIONS(2349), - [aux_sym__val_number_decimal_token2] = ACTIONS(2349), - [anon_sym_DOT2] = ACTIONS(2349), - [aux_sym__val_number_decimal_token3] = ACTIONS(2349), - [aux_sym__val_number_token1] = ACTIONS(2351), - [aux_sym__val_number_token2] = ACTIONS(2351), - [aux_sym__val_number_token3] = ACTIONS(2351), - [aux_sym__val_number_token4] = ACTIONS(2349), - [aux_sym__val_number_token5] = ACTIONS(2351), - [aux_sym__val_number_token6] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2351), - [sym__str_single_quotes] = ACTIONS(2351), - [sym__str_back_ticks] = ACTIONS(2351), - [aux_sym__record_key_token2] = ACTIONS(2349), - [anon_sym_POUND] = ACTIONS(3), - }, - [3024] = { - [sym__expr_parenthesized_immediate] = STATE(3572), - [sym__immediate_decimal] = STATE(3574), - [sym_val_variable] = STATE(3572), - [sym__var] = STATE(3214), - [sym_comment] = STATE(3024), - [anon_sym_export] = ACTIONS(2359), - [anon_sym_alias] = ACTIONS(2359), - [anon_sym_let] = ACTIONS(2359), - [anon_sym_let_DASHenv] = ACTIONS(2359), - [anon_sym_mut] = ACTIONS(2359), - [anon_sym_const] = ACTIONS(2359), - [sym_cmd_identifier] = ACTIONS(2359), - [anon_sym_def] = ACTIONS(2359), - [anon_sym_export_DASHenv] = ACTIONS(2359), - [anon_sym_extern] = ACTIONS(2359), - [anon_sym_module] = ACTIONS(2359), - [anon_sym_use] = ACTIONS(2359), - [anon_sym_LPAREN] = ACTIONS(2359), - [anon_sym_DOLLAR] = ACTIONS(6095), - [anon_sym_error] = ACTIONS(2359), - [anon_sym_list] = ACTIONS(2359), - [anon_sym_DASH] = ACTIONS(2359), - [anon_sym_break] = ACTIONS(2359), - [anon_sym_continue] = ACTIONS(2359), - [anon_sym_for] = ACTIONS(2359), - [anon_sym_in] = ACTIONS(2359), - [anon_sym_loop] = ACTIONS(2359), - [anon_sym_make] = ACTIONS(2359), - [anon_sym_while] = ACTIONS(2359), - [anon_sym_do] = ACTIONS(2359), - [anon_sym_if] = ACTIONS(2359), - [anon_sym_else] = ACTIONS(2359), - [anon_sym_match] = ACTIONS(2359), - [anon_sym_RBRACE] = ACTIONS(2361), - [anon_sym_try] = ACTIONS(2359), - [anon_sym_catch] = ACTIONS(2359), - [anon_sym_return] = ACTIONS(2359), - [anon_sym_source] = ACTIONS(2359), - [anon_sym_source_DASHenv] = ACTIONS(2359), - [anon_sym_register] = ACTIONS(2359), - [anon_sym_hide] = ACTIONS(2359), - [anon_sym_hide_DASHenv] = ACTIONS(2359), - [anon_sym_overlay] = ACTIONS(2359), - [anon_sym_new] = ACTIONS(2359), - [anon_sym_as] = ACTIONS(2359), - [anon_sym_PLUS] = ACTIONS(2359), - [anon_sym_LPAREN2] = ACTIONS(6944), - [anon_sym_DOT] = ACTIONS(6946), - [aux_sym__immediate_decimal_token1] = ACTIONS(6948), - [aux_sym__immediate_decimal_token3] = ACTIONS(6950), - [aux_sym__immediate_decimal_token4] = ACTIONS(6952), - [aux_sym__val_number_decimal_token1] = ACTIONS(2359), - [aux_sym__val_number_decimal_token2] = ACTIONS(2359), - [anon_sym_DOT2] = ACTIONS(2359), - [aux_sym__val_number_decimal_token3] = ACTIONS(2359), - [aux_sym__val_number_token1] = ACTIONS(2361), - [aux_sym__val_number_token2] = ACTIONS(2361), - [aux_sym__val_number_token3] = ACTIONS(2361), - [aux_sym__val_number_token4] = ACTIONS(2359), - [aux_sym__val_number_token5] = ACTIONS(2361), - [aux_sym__val_number_token6] = ACTIONS(2359), - [anon_sym_DQUOTE] = ACTIONS(2361), - [sym__str_single_quotes] = ACTIONS(2361), - [sym__str_back_ticks] = ACTIONS(2361), - [aux_sym__record_key_token2] = ACTIONS(2359), - [anon_sym_POUND] = ACTIONS(3), - }, - [3025] = { - [sym__expr_parenthesized_immediate] = STATE(3575), - [sym__immediate_decimal] = STATE(3576), - [sym_val_variable] = STATE(3575), - [sym__var] = STATE(3214), - [sym_comment] = STATE(3025), - [anon_sym_export] = ACTIONS(2383), - [anon_sym_alias] = ACTIONS(2383), - [anon_sym_let] = ACTIONS(2383), - [anon_sym_let_DASHenv] = ACTIONS(2383), - [anon_sym_mut] = ACTIONS(2383), - [anon_sym_const] = ACTIONS(2383), - [sym_cmd_identifier] = ACTIONS(2383), - [anon_sym_def] = ACTIONS(2383), - [anon_sym_export_DASHenv] = ACTIONS(2383), - [anon_sym_extern] = ACTIONS(2383), - [anon_sym_module] = ACTIONS(2383), - [anon_sym_use] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2383), - [anon_sym_DOLLAR] = ACTIONS(6095), - [anon_sym_error] = ACTIONS(2383), - [anon_sym_list] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2383), - [anon_sym_break] = ACTIONS(2383), - [anon_sym_continue] = ACTIONS(2383), - [anon_sym_for] = ACTIONS(2383), - [anon_sym_in] = ACTIONS(2383), - [anon_sym_loop] = ACTIONS(2383), - [anon_sym_make] = ACTIONS(2383), - [anon_sym_while] = ACTIONS(2383), - [anon_sym_do] = ACTIONS(2383), - [anon_sym_if] = ACTIONS(2383), - [anon_sym_else] = ACTIONS(2383), - [anon_sym_match] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(2385), - [anon_sym_try] = ACTIONS(2383), - [anon_sym_catch] = ACTIONS(2383), - [anon_sym_return] = ACTIONS(2383), - [anon_sym_source] = ACTIONS(2383), - [anon_sym_source_DASHenv] = ACTIONS(2383), - [anon_sym_register] = ACTIONS(2383), - [anon_sym_hide] = ACTIONS(2383), - [anon_sym_hide_DASHenv] = ACTIONS(2383), - [anon_sym_overlay] = ACTIONS(2383), - [anon_sym_new] = ACTIONS(2383), - [anon_sym_as] = ACTIONS(2383), - [anon_sym_PLUS] = ACTIONS(2383), - [anon_sym_LPAREN2] = ACTIONS(6944), - [anon_sym_DOT] = ACTIONS(6946), - [aux_sym__immediate_decimal_token1] = ACTIONS(6948), - [aux_sym__immediate_decimal_token3] = ACTIONS(6950), - [aux_sym__immediate_decimal_token4] = ACTIONS(6952), - [aux_sym__val_number_decimal_token1] = ACTIONS(2383), - [aux_sym__val_number_decimal_token2] = ACTIONS(2383), - [anon_sym_DOT2] = ACTIONS(2383), - [aux_sym__val_number_decimal_token3] = ACTIONS(2383), - [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(2383), - [aux_sym__val_number_token5] = ACTIONS(2385), - [aux_sym__val_number_token6] = ACTIONS(2383), - [anon_sym_DQUOTE] = ACTIONS(2385), - [sym__str_single_quotes] = ACTIONS(2385), - [sym__str_back_ticks] = ACTIONS(2385), - [aux_sym__record_key_token2] = ACTIONS(2383), - [anon_sym_POUND] = ACTIONS(3), - }, - [3026] = { - [sym_comment] = STATE(3026), - [anon_sym_SEMI] = ACTIONS(1350), - [anon_sym_LF] = ACTIONS(1352), - [anon_sym_LBRACK] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1350), - [anon_sym_RPAREN] = ACTIONS(1350), - [anon_sym_PIPE] = ACTIONS(1350), - [anon_sym_DOLLAR] = ACTIONS(1350), - [anon_sym_GT] = ACTIONS(1350), - [anon_sym_DASH_DASH] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_in] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1350), - [anon_sym_DOT_DOT] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_STAR_STAR] = ACTIONS(1350), - [anon_sym_PLUS_PLUS] = ACTIONS(1350), - [anon_sym_SLASH] = ACTIONS(1350), - [anon_sym_mod] = ACTIONS(1350), - [anon_sym_SLASH_SLASH] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_bit_DASHshl] = ACTIONS(1350), - [anon_sym_bit_DASHshr] = ACTIONS(1350), - [anon_sym_EQ_EQ] = ACTIONS(1350), - [anon_sym_BANG_EQ] = ACTIONS(1350), - [anon_sym_LT2] = ACTIONS(1350), - [anon_sym_LT_EQ] = ACTIONS(1350), - [anon_sym_GT_EQ] = ACTIONS(1350), - [anon_sym_not_DASHin] = ACTIONS(1350), - [anon_sym_starts_DASHwith] = ACTIONS(1350), - [anon_sym_ends_DASHwith] = ACTIONS(1350), - [anon_sym_EQ_TILDE] = ACTIONS(1350), - [anon_sym_BANG_TILDE] = ACTIONS(1350), - [anon_sym_bit_DASHand] = ACTIONS(1350), - [anon_sym_bit_DASHxor] = ACTIONS(1350), - [anon_sym_bit_DASHor] = ACTIONS(1350), - [anon_sym_and] = ACTIONS(1350), - [anon_sym_xor] = ACTIONS(1350), - [anon_sym_or] = ACTIONS(1350), - [anon_sym_not] = ACTIONS(1350), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1350), - [anon_sym_DOT_DOT_LT] = ACTIONS(1350), - [anon_sym_null] = ACTIONS(1350), - [anon_sym_true] = ACTIONS(1350), - [anon_sym_false] = ACTIONS(1350), - [aux_sym__val_number_decimal_token1] = ACTIONS(1350), - [aux_sym__val_number_decimal_token2] = ACTIONS(1350), - [anon_sym_DOT2] = ACTIONS(1350), - [aux_sym__val_number_decimal_token3] = ACTIONS(1350), - [aux_sym__val_number_token1] = ACTIONS(1350), - [aux_sym__val_number_token2] = ACTIONS(1350), - [aux_sym__val_number_token3] = ACTIONS(1350), - [aux_sym__val_number_token4] = ACTIONS(1350), - [aux_sym__val_number_token5] = ACTIONS(1350), - [aux_sym__val_number_token6] = ACTIONS(1350), - [anon_sym_0b] = ACTIONS(1350), - [anon_sym_0o] = ACTIONS(1350), - [anon_sym_0x] = ACTIONS(1350), - [sym_val_date] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [sym__str_single_quotes] = ACTIONS(1350), - [sym__str_back_ticks] = ACTIONS(1350), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1350), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1350), - [anon_sym_POUND] = ACTIONS(113), - }, - [3027] = { - [sym_comment] = STATE(3027), - [anon_sym_export] = ACTIONS(6688), - [anon_sym_alias] = ACTIONS(6688), - [anon_sym_let] = ACTIONS(6688), - [anon_sym_let_DASHenv] = ACTIONS(6688), - [anon_sym_mut] = ACTIONS(6688), - [anon_sym_const] = ACTIONS(6688), - [anon_sym_SEMI] = ACTIONS(6688), - [sym_cmd_identifier] = ACTIONS(6688), - [anon_sym_LF] = ACTIONS(7000), - [anon_sym_def] = ACTIONS(6688), - [anon_sym_export_DASHenv] = ACTIONS(6688), - [anon_sym_extern] = ACTIONS(6688), - [anon_sym_module] = ACTIONS(6688), - [anon_sym_use] = ACTIONS(6688), - [anon_sym_LBRACK] = ACTIONS(6688), - [anon_sym_LPAREN] = ACTIONS(6688), - [anon_sym_DOLLAR] = ACTIONS(6688), - [anon_sym_error] = ACTIONS(6688), - [anon_sym_DASH] = ACTIONS(6688), - [anon_sym_break] = ACTIONS(6688), - [anon_sym_continue] = ACTIONS(6688), - [anon_sym_for] = ACTIONS(6688), - [anon_sym_loop] = ACTIONS(6688), - [anon_sym_while] = ACTIONS(6688), - [anon_sym_do] = ACTIONS(6688), - [anon_sym_if] = ACTIONS(6688), - [anon_sym_match] = ACTIONS(6688), - [anon_sym_LBRACE] = ACTIONS(6688), - [anon_sym_DOT_DOT] = ACTIONS(6688), - [anon_sym_try] = ACTIONS(6688), - [anon_sym_return] = ACTIONS(6688), - [anon_sym_source] = ACTIONS(6688), - [anon_sym_source_DASHenv] = ACTIONS(6688), - [anon_sym_register] = ACTIONS(6688), - [anon_sym_hide] = ACTIONS(6688), - [anon_sym_hide_DASHenv] = ACTIONS(6688), - [anon_sym_overlay] = ACTIONS(6688), - [anon_sym_where] = ACTIONS(6688), - [anon_sym_not] = ACTIONS(6688), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6688), - [anon_sym_DOT_DOT_LT] = ACTIONS(6688), - [anon_sym_null] = ACTIONS(6688), - [anon_sym_true] = ACTIONS(6688), - [anon_sym_false] = ACTIONS(6688), - [aux_sym__val_number_decimal_token1] = ACTIONS(6688), - [aux_sym__val_number_decimal_token2] = ACTIONS(6688), - [anon_sym_DOT2] = ACTIONS(6688), - [aux_sym__val_number_decimal_token3] = ACTIONS(6688), - [aux_sym__val_number_token1] = ACTIONS(6688), - [aux_sym__val_number_token2] = ACTIONS(6688), - [aux_sym__val_number_token3] = ACTIONS(6688), - [aux_sym__val_number_token4] = ACTIONS(6688), - [aux_sym__val_number_token5] = ACTIONS(6688), - [aux_sym__val_number_token6] = ACTIONS(6688), - [anon_sym_0b] = ACTIONS(6688), - [anon_sym_0o] = ACTIONS(6688), - [anon_sym_0x] = ACTIONS(6688), - [sym_val_date] = ACTIONS(6688), - [anon_sym_DQUOTE] = ACTIONS(6688), - [sym__str_single_quotes] = ACTIONS(6688), - [sym__str_back_ticks] = ACTIONS(6688), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6688), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6688), - [anon_sym_CARET] = ACTIONS(6688), - [anon_sym_POUND] = ACTIONS(113), - }, - [3028] = { - [sym_comment] = STATE(3028), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_LF] = ACTIONS(1296), - [anon_sym_LBRACK] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1294), - [anon_sym_RPAREN] = ACTIONS(1294), - [anon_sym_PIPE] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_in] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_DOT_DOT] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_STAR_STAR] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_mod] = ACTIONS(1294), - [anon_sym_SLASH_SLASH] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_bit_DASHshl] = ACTIONS(1294), - [anon_sym_bit_DASHshr] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_LT2] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_not_DASHin] = ACTIONS(1294), - [anon_sym_starts_DASHwith] = ACTIONS(1294), - [anon_sym_ends_DASHwith] = ACTIONS(1294), - [anon_sym_EQ_TILDE] = ACTIONS(1294), - [anon_sym_BANG_TILDE] = ACTIONS(1294), - [anon_sym_bit_DASHand] = ACTIONS(1294), - [anon_sym_bit_DASHxor] = ACTIONS(1294), - [anon_sym_bit_DASHor] = ACTIONS(1294), - [anon_sym_and] = ACTIONS(1294), - [anon_sym_xor] = ACTIONS(1294), - [anon_sym_or] = ACTIONS(1294), - [anon_sym_not] = ACTIONS(1294), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1294), - [anon_sym_DOT_DOT_LT] = ACTIONS(1294), - [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(1294), - [anon_sym_DOT2] = ACTIONS(1294), - [aux_sym__val_number_decimal_token3] = ACTIONS(1294), - [aux_sym__val_number_token1] = ACTIONS(1294), - [aux_sym__val_number_token2] = ACTIONS(1294), - [aux_sym__val_number_token3] = ACTIONS(1294), - [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(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym__str_single_quotes] = ACTIONS(1294), - [sym__str_back_ticks] = ACTIONS(1294), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1294), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1294), - [anon_sym_POUND] = ACTIONS(113), - }, - [3029] = { - [sym_comment] = STATE(3029), - [anon_sym_export] = ACTIONS(6385), - [anon_sym_alias] = ACTIONS(6385), - [anon_sym_let] = ACTIONS(6385), - [anon_sym_let_DASHenv] = ACTIONS(6385), - [anon_sym_mut] = ACTIONS(6385), - [anon_sym_const] = ACTIONS(6385), - [anon_sym_SEMI] = ACTIONS(6385), - [sym_cmd_identifier] = ACTIONS(6385), - [anon_sym_LF] = ACTIONS(7002), - [anon_sym_def] = ACTIONS(6385), - [anon_sym_export_DASHenv] = ACTIONS(6385), - [anon_sym_extern] = ACTIONS(6385), - [anon_sym_module] = ACTIONS(6385), - [anon_sym_use] = ACTIONS(6385), - [anon_sym_LBRACK] = ACTIONS(6385), - [anon_sym_LPAREN] = ACTIONS(6385), - [anon_sym_DOLLAR] = ACTIONS(6385), - [anon_sym_error] = ACTIONS(6385), - [anon_sym_DASH] = ACTIONS(6385), - [anon_sym_break] = ACTIONS(6385), - [anon_sym_continue] = ACTIONS(6385), - [anon_sym_for] = ACTIONS(6385), - [anon_sym_loop] = ACTIONS(6385), - [anon_sym_while] = ACTIONS(6385), - [anon_sym_do] = ACTIONS(6385), - [anon_sym_if] = ACTIONS(6385), - [anon_sym_match] = ACTIONS(6385), - [anon_sym_LBRACE] = ACTIONS(6385), - [anon_sym_DOT_DOT] = ACTIONS(6385), - [anon_sym_try] = ACTIONS(6385), - [anon_sym_return] = ACTIONS(6385), - [anon_sym_source] = ACTIONS(6385), - [anon_sym_source_DASHenv] = ACTIONS(6385), - [anon_sym_register] = ACTIONS(6385), - [anon_sym_hide] = ACTIONS(6385), - [anon_sym_hide_DASHenv] = ACTIONS(6385), - [anon_sym_overlay] = ACTIONS(6385), - [anon_sym_where] = ACTIONS(6385), - [anon_sym_not] = ACTIONS(6385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6385), - [anon_sym_DOT_DOT_LT] = ACTIONS(6385), - [anon_sym_null] = ACTIONS(6385), - [anon_sym_true] = ACTIONS(6385), - [anon_sym_false] = ACTIONS(6385), - [aux_sym__val_number_decimal_token1] = ACTIONS(6385), - [aux_sym__val_number_decimal_token2] = ACTIONS(6385), - [anon_sym_DOT2] = ACTIONS(6385), - [aux_sym__val_number_decimal_token3] = ACTIONS(6385), - [aux_sym__val_number_token1] = ACTIONS(6385), - [aux_sym__val_number_token2] = ACTIONS(6385), - [aux_sym__val_number_token3] = ACTIONS(6385), - [aux_sym__val_number_token4] = ACTIONS(6385), - [aux_sym__val_number_token5] = ACTIONS(6385), - [aux_sym__val_number_token6] = ACTIONS(6385), - [anon_sym_0b] = ACTIONS(6385), - [anon_sym_0o] = ACTIONS(6385), - [anon_sym_0x] = ACTIONS(6385), - [sym_val_date] = ACTIONS(6385), - [anon_sym_DQUOTE] = ACTIONS(6385), - [sym__str_single_quotes] = ACTIONS(6385), - [sym__str_back_ticks] = ACTIONS(6385), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6385), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6385), - [anon_sym_CARET] = ACTIONS(6385), - [anon_sym_POUND] = ACTIONS(113), - }, - [3030] = { - [sym_comment] = STATE(3030), - [anon_sym_export] = ACTIONS(7004), - [anon_sym_alias] = ACTIONS(7004), - [anon_sym_let] = ACTIONS(7004), - [anon_sym_let_DASHenv] = ACTIONS(7004), - [anon_sym_mut] = ACTIONS(7004), - [anon_sym_const] = ACTIONS(7004), - [anon_sym_SEMI] = ACTIONS(7004), - [sym_cmd_identifier] = ACTIONS(7004), - [anon_sym_LF] = ACTIONS(7006), - [anon_sym_def] = ACTIONS(7004), - [anon_sym_export_DASHenv] = ACTIONS(7004), - [anon_sym_extern] = ACTIONS(7004), - [anon_sym_module] = ACTIONS(7004), - [anon_sym_use] = ACTIONS(7004), - [anon_sym_LBRACK] = ACTIONS(7004), - [anon_sym_LPAREN] = ACTIONS(7004), - [anon_sym_DOLLAR] = ACTIONS(7004), - [anon_sym_error] = ACTIONS(7004), - [anon_sym_DASH] = ACTIONS(7004), - [anon_sym_break] = ACTIONS(7004), - [anon_sym_continue] = ACTIONS(7004), - [anon_sym_for] = ACTIONS(7004), - [anon_sym_loop] = ACTIONS(7004), - [anon_sym_while] = ACTIONS(7004), - [anon_sym_do] = ACTIONS(7004), - [anon_sym_if] = ACTIONS(7004), - [anon_sym_match] = ACTIONS(7004), - [anon_sym_LBRACE] = ACTIONS(7004), - [anon_sym_DOT_DOT] = ACTIONS(7004), - [anon_sym_try] = ACTIONS(7004), - [anon_sym_return] = ACTIONS(7004), - [anon_sym_source] = ACTIONS(7004), - [anon_sym_source_DASHenv] = ACTIONS(7004), - [anon_sym_register] = ACTIONS(7004), - [anon_sym_hide] = ACTIONS(7004), - [anon_sym_hide_DASHenv] = ACTIONS(7004), - [anon_sym_overlay] = ACTIONS(7004), - [anon_sym_where] = ACTIONS(7004), - [anon_sym_not] = ACTIONS(7004), - [anon_sym_DOT_DOT_EQ] = ACTIONS(7004), - [anon_sym_DOT_DOT_LT] = ACTIONS(7004), - [anon_sym_null] = ACTIONS(7004), - [anon_sym_true] = ACTIONS(7004), - [anon_sym_false] = ACTIONS(7004), - [aux_sym__val_number_decimal_token1] = ACTIONS(7004), - [aux_sym__val_number_decimal_token2] = ACTIONS(7004), - [anon_sym_DOT2] = ACTIONS(7004), - [aux_sym__val_number_decimal_token3] = ACTIONS(7004), - [aux_sym__val_number_token1] = ACTIONS(7004), - [aux_sym__val_number_token2] = ACTIONS(7004), - [aux_sym__val_number_token3] = ACTIONS(7004), - [aux_sym__val_number_token4] = ACTIONS(7004), - [aux_sym__val_number_token5] = ACTIONS(7004), - [aux_sym__val_number_token6] = ACTIONS(7004), - [anon_sym_0b] = ACTIONS(7004), - [anon_sym_0o] = ACTIONS(7004), - [anon_sym_0x] = ACTIONS(7004), - [sym_val_date] = ACTIONS(7004), - [anon_sym_DQUOTE] = ACTIONS(7004), - [sym__str_single_quotes] = ACTIONS(7004), - [sym__str_back_ticks] = ACTIONS(7004), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(7004), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(7004), - [anon_sym_CARET] = ACTIONS(7004), - [anon_sym_POUND] = ACTIONS(113), - }, - [3031] = { - [sym_comment] = STATE(3031), - [anon_sym_SEMI] = ACTIONS(1336), - [anon_sym_LF] = ACTIONS(1338), - [anon_sym_LBRACK] = ACTIONS(1336), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_RPAREN] = ACTIONS(1336), - [anon_sym_PIPE] = ACTIONS(1336), - [anon_sym_DOLLAR] = ACTIONS(1336), - [anon_sym_GT] = ACTIONS(1336), - [anon_sym_DASH_DASH] = ACTIONS(1336), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_in] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_RBRACE] = ACTIONS(1336), - [anon_sym_DOT_DOT] = ACTIONS(1336), - [anon_sym_STAR] = ACTIONS(1336), - [anon_sym_STAR_STAR] = ACTIONS(1336), - [anon_sym_PLUS_PLUS] = ACTIONS(1336), - [anon_sym_SLASH] = ACTIONS(1336), - [anon_sym_mod] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(1336), - [anon_sym_PLUS] = ACTIONS(1336), - [anon_sym_bit_DASHshl] = ACTIONS(1336), - [anon_sym_bit_DASHshr] = ACTIONS(1336), - [anon_sym_EQ_EQ] = ACTIONS(1336), - [anon_sym_BANG_EQ] = ACTIONS(1336), - [anon_sym_LT2] = ACTIONS(1336), - [anon_sym_LT_EQ] = ACTIONS(1336), - [anon_sym_GT_EQ] = ACTIONS(1336), - [anon_sym_not_DASHin] = ACTIONS(1336), - [anon_sym_starts_DASHwith] = ACTIONS(1336), - [anon_sym_ends_DASHwith] = ACTIONS(1336), - [anon_sym_EQ_TILDE] = ACTIONS(1336), - [anon_sym_BANG_TILDE] = ACTIONS(1336), - [anon_sym_bit_DASHand] = ACTIONS(1336), - [anon_sym_bit_DASHxor] = ACTIONS(1336), - [anon_sym_bit_DASHor] = ACTIONS(1336), - [anon_sym_and] = ACTIONS(1336), - [anon_sym_xor] = ACTIONS(1336), - [anon_sym_or] = ACTIONS(1336), - [anon_sym_not] = ACTIONS(1336), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1336), - [anon_sym_DOT_DOT_LT] = ACTIONS(1336), - [anon_sym_null] = ACTIONS(1336), - [anon_sym_true] = ACTIONS(1336), - [anon_sym_false] = ACTIONS(1336), - [aux_sym__val_number_decimal_token1] = ACTIONS(1336), - [aux_sym__val_number_decimal_token2] = ACTIONS(1336), - [anon_sym_DOT2] = ACTIONS(1336), - [aux_sym__val_number_decimal_token3] = ACTIONS(1336), - [aux_sym__val_number_token1] = ACTIONS(1336), - [aux_sym__val_number_token2] = ACTIONS(1336), - [aux_sym__val_number_token3] = ACTIONS(1336), - [aux_sym__val_number_token4] = ACTIONS(1336), - [aux_sym__val_number_token5] = ACTIONS(1336), - [aux_sym__val_number_token6] = ACTIONS(1336), - [anon_sym_0b] = ACTIONS(1336), - [anon_sym_0o] = ACTIONS(1336), - [anon_sym_0x] = ACTIONS(1336), - [sym_val_date] = ACTIONS(1336), - [anon_sym_DQUOTE] = ACTIONS(1336), - [sym__str_single_quotes] = ACTIONS(1336), - [sym__str_back_ticks] = ACTIONS(1336), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1336), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1336), - [anon_sym_POUND] = ACTIONS(113), - }, - [3032] = { - [sym_comment] = STATE(3032), - [anon_sym_SEMI] = ACTIONS(1190), - [anon_sym_LF] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(1190), - [anon_sym_RPAREN] = ACTIONS(1190), - [anon_sym_PIPE] = ACTIONS(1190), - [anon_sym_DOLLAR] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1190), - [anon_sym_DASH_DASH] = ACTIONS(1190), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_in] = ACTIONS(1190), - [anon_sym_LBRACE] = ACTIONS(1190), - [anon_sym_RBRACE] = ACTIONS(1190), - [anon_sym_DOT_DOT] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1190), - [anon_sym_STAR_STAR] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1190), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_mod] = ACTIONS(1190), - [anon_sym_SLASH_SLASH] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_bit_DASHshl] = ACTIONS(1190), - [anon_sym_bit_DASHshr] = ACTIONS(1190), - [anon_sym_EQ_EQ] = ACTIONS(1190), - [anon_sym_BANG_EQ] = ACTIONS(1190), - [anon_sym_LT2] = ACTIONS(1190), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_not_DASHin] = ACTIONS(1190), - [anon_sym_starts_DASHwith] = ACTIONS(1190), - [anon_sym_ends_DASHwith] = ACTIONS(1190), - [anon_sym_EQ_TILDE] = ACTIONS(1190), - [anon_sym_BANG_TILDE] = ACTIONS(1190), - [anon_sym_bit_DASHand] = ACTIONS(1190), - [anon_sym_bit_DASHxor] = ACTIONS(1190), - [anon_sym_bit_DASHor] = ACTIONS(1190), - [anon_sym_and] = ACTIONS(1190), - [anon_sym_xor] = ACTIONS(1190), - [anon_sym_or] = ACTIONS(1190), - [anon_sym_not] = ACTIONS(1190), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1190), - [anon_sym_DOT_DOT_LT] = ACTIONS(1190), - [anon_sym_null] = ACTIONS(1190), - [anon_sym_true] = ACTIONS(1190), - [anon_sym_false] = ACTIONS(1190), - [aux_sym__val_number_decimal_token1] = ACTIONS(1190), - [aux_sym__val_number_decimal_token2] = ACTIONS(1190), - [anon_sym_DOT2] = ACTIONS(1190), - [aux_sym__val_number_decimal_token3] = ACTIONS(1190), - [aux_sym__val_number_token1] = ACTIONS(1190), - [aux_sym__val_number_token2] = ACTIONS(1190), - [aux_sym__val_number_token3] = ACTIONS(1190), - [aux_sym__val_number_token4] = ACTIONS(1190), - [aux_sym__val_number_token5] = ACTIONS(1190), - [aux_sym__val_number_token6] = ACTIONS(1190), - [anon_sym_0b] = ACTIONS(1190), - [anon_sym_0o] = ACTIONS(1190), - [anon_sym_0x] = ACTIONS(1190), - [sym_val_date] = ACTIONS(1190), - [anon_sym_DQUOTE] = ACTIONS(1190), - [sym__str_single_quotes] = ACTIONS(1190), - [sym__str_back_ticks] = ACTIONS(1190), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1190), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1190), - [anon_sym_POUND] = ACTIONS(113), - }, - [3033] = { - [sym_comment] = STATE(3033), - [anon_sym_export] = ACTIONS(7008), - [anon_sym_alias] = ACTIONS(7008), - [anon_sym_let] = ACTIONS(7008), - [anon_sym_let_DASHenv] = ACTIONS(7008), - [anon_sym_mut] = ACTIONS(7008), - [anon_sym_const] = ACTIONS(7008), - [anon_sym_SEMI] = ACTIONS(7008), - [sym_cmd_identifier] = ACTIONS(7008), - [anon_sym_LF] = ACTIONS(7010), - [anon_sym_def] = ACTIONS(7008), - [anon_sym_export_DASHenv] = ACTIONS(7008), - [anon_sym_extern] = ACTIONS(7008), - [anon_sym_module] = ACTIONS(7008), - [anon_sym_use] = ACTIONS(7008), - [anon_sym_LBRACK] = ACTIONS(7008), - [anon_sym_LPAREN] = ACTIONS(7008), - [anon_sym_DOLLAR] = ACTIONS(7008), - [anon_sym_error] = ACTIONS(7008), - [anon_sym_DASH] = ACTIONS(7008), - [anon_sym_break] = ACTIONS(7008), - [anon_sym_continue] = ACTIONS(7008), - [anon_sym_for] = ACTIONS(7008), - [anon_sym_loop] = ACTIONS(7008), - [anon_sym_while] = ACTIONS(7008), - [anon_sym_do] = ACTIONS(7008), - [anon_sym_if] = ACTIONS(7008), - [anon_sym_match] = ACTIONS(7008), - [anon_sym_LBRACE] = ACTIONS(7008), - [anon_sym_DOT_DOT] = ACTIONS(7008), - [anon_sym_try] = ACTIONS(7008), - [anon_sym_return] = ACTIONS(7008), - [anon_sym_source] = ACTIONS(7008), - [anon_sym_source_DASHenv] = ACTIONS(7008), - [anon_sym_register] = ACTIONS(7008), - [anon_sym_hide] = ACTIONS(7008), - [anon_sym_hide_DASHenv] = ACTIONS(7008), - [anon_sym_overlay] = ACTIONS(7008), - [anon_sym_where] = ACTIONS(7008), - [anon_sym_not] = ACTIONS(7008), - [anon_sym_DOT_DOT_EQ] = ACTIONS(7008), - [anon_sym_DOT_DOT_LT] = ACTIONS(7008), - [anon_sym_null] = ACTIONS(7008), - [anon_sym_true] = ACTIONS(7008), - [anon_sym_false] = ACTIONS(7008), - [aux_sym__val_number_decimal_token1] = ACTIONS(7008), - [aux_sym__val_number_decimal_token2] = ACTIONS(7008), - [anon_sym_DOT2] = ACTIONS(7008), - [aux_sym__val_number_decimal_token3] = ACTIONS(7008), - [aux_sym__val_number_token1] = ACTIONS(7008), - [aux_sym__val_number_token2] = ACTIONS(7008), - [aux_sym__val_number_token3] = ACTIONS(7008), - [aux_sym__val_number_token4] = ACTIONS(7008), - [aux_sym__val_number_token5] = ACTIONS(7008), - [aux_sym__val_number_token6] = ACTIONS(7008), - [anon_sym_0b] = ACTIONS(7008), - [anon_sym_0o] = ACTIONS(7008), - [anon_sym_0x] = ACTIONS(7008), - [sym_val_date] = ACTIONS(7008), - [anon_sym_DQUOTE] = ACTIONS(7008), - [sym__str_single_quotes] = ACTIONS(7008), - [sym__str_back_ticks] = ACTIONS(7008), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(7008), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(7008), - [anon_sym_CARET] = ACTIONS(7008), - [anon_sym_POUND] = ACTIONS(113), - }, - [3034] = { - [sym_comment] = STATE(3034), - [anon_sym_export] = ACTIONS(6800), - [anon_sym_alias] = ACTIONS(6800), - [anon_sym_let] = ACTIONS(6800), - [anon_sym_let_DASHenv] = ACTIONS(6800), - [anon_sym_mut] = ACTIONS(6800), - [anon_sym_const] = ACTIONS(6800), - [anon_sym_SEMI] = ACTIONS(6800), - [sym_cmd_identifier] = ACTIONS(6800), - [anon_sym_LF] = ACTIONS(7012), - [anon_sym_def] = ACTIONS(6800), - [anon_sym_export_DASHenv] = ACTIONS(6800), - [anon_sym_extern] = ACTIONS(6800), - [anon_sym_module] = ACTIONS(6800), - [anon_sym_use] = ACTIONS(6800), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_LPAREN] = ACTIONS(6800), - [anon_sym_DOLLAR] = ACTIONS(6800), - [anon_sym_error] = ACTIONS(6800), - [anon_sym_DASH] = ACTIONS(6800), - [anon_sym_break] = ACTIONS(6800), - [anon_sym_continue] = ACTIONS(6800), - [anon_sym_for] = ACTIONS(6800), - [anon_sym_loop] = ACTIONS(6800), - [anon_sym_while] = ACTIONS(6800), - [anon_sym_do] = ACTIONS(6800), - [anon_sym_if] = ACTIONS(6800), - [anon_sym_match] = ACTIONS(6800), - [anon_sym_LBRACE] = ACTIONS(6800), - [anon_sym_DOT_DOT] = ACTIONS(6800), - [anon_sym_try] = ACTIONS(6800), - [anon_sym_return] = ACTIONS(6800), - [anon_sym_source] = ACTIONS(6800), - [anon_sym_source_DASHenv] = ACTIONS(6800), - [anon_sym_register] = ACTIONS(6800), - [anon_sym_hide] = ACTIONS(6800), - [anon_sym_hide_DASHenv] = ACTIONS(6800), - [anon_sym_overlay] = ACTIONS(6800), - [anon_sym_where] = ACTIONS(6800), - [anon_sym_not] = ACTIONS(6800), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6800), - [anon_sym_DOT_DOT_LT] = ACTIONS(6800), - [anon_sym_null] = ACTIONS(6800), - [anon_sym_true] = ACTIONS(6800), - [anon_sym_false] = ACTIONS(6800), - [aux_sym__val_number_decimal_token1] = ACTIONS(6800), - [aux_sym__val_number_decimal_token2] = ACTIONS(6800), - [anon_sym_DOT2] = ACTIONS(6800), - [aux_sym__val_number_decimal_token3] = ACTIONS(6800), - [aux_sym__val_number_token1] = ACTIONS(6800), - [aux_sym__val_number_token2] = ACTIONS(6800), - [aux_sym__val_number_token3] = ACTIONS(6800), - [aux_sym__val_number_token4] = ACTIONS(6800), - [aux_sym__val_number_token5] = ACTIONS(6800), - [aux_sym__val_number_token6] = ACTIONS(6800), - [anon_sym_0b] = ACTIONS(6800), - [anon_sym_0o] = ACTIONS(6800), - [anon_sym_0x] = ACTIONS(6800), - [sym_val_date] = ACTIONS(6800), - [anon_sym_DQUOTE] = ACTIONS(6800), - [sym__str_single_quotes] = ACTIONS(6800), - [sym__str_back_ticks] = ACTIONS(6800), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6800), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6800), - [anon_sym_CARET] = ACTIONS(6800), - [anon_sym_POUND] = ACTIONS(113), - }, - [3035] = { - [sym_comment] = STATE(3035), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_LF] = ACTIONS(1170), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_RPAREN] = ACTIONS(1168), - [anon_sym_PIPE] = ACTIONS(1168), - [anon_sym_DOLLAR] = ACTIONS(1168), - [anon_sym_GT] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1168), - [anon_sym_in] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1168), - [anon_sym_RBRACE] = ACTIONS(1168), - [anon_sym_DOT_DOT] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_STAR_STAR] = ACTIONS(1168), - [anon_sym_PLUS_PLUS] = ACTIONS(1168), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_mod] = ACTIONS(1168), - [anon_sym_SLASH_SLASH] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(1168), - [anon_sym_bit_DASHshl] = ACTIONS(1168), - [anon_sym_bit_DASHshr] = ACTIONS(1168), - [anon_sym_EQ_EQ] = ACTIONS(1168), - [anon_sym_BANG_EQ] = ACTIONS(1168), - [anon_sym_LT2] = ACTIONS(1168), - [anon_sym_LT_EQ] = ACTIONS(1168), - [anon_sym_GT_EQ] = ACTIONS(1168), - [anon_sym_not_DASHin] = ACTIONS(1168), - [anon_sym_starts_DASHwith] = ACTIONS(1168), - [anon_sym_ends_DASHwith] = ACTIONS(1168), - [anon_sym_EQ_TILDE] = ACTIONS(1168), - [anon_sym_BANG_TILDE] = ACTIONS(1168), - [anon_sym_bit_DASHand] = ACTIONS(1168), - [anon_sym_bit_DASHxor] = ACTIONS(1168), - [anon_sym_bit_DASHor] = ACTIONS(1168), - [anon_sym_and] = ACTIONS(1168), - [anon_sym_xor] = ACTIONS(1168), - [anon_sym_or] = ACTIONS(1168), - [anon_sym_not] = ACTIONS(1168), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1168), - [anon_sym_DOT_DOT_LT] = ACTIONS(1168), - [anon_sym_null] = ACTIONS(1168), - [anon_sym_true] = ACTIONS(1168), - [anon_sym_false] = ACTIONS(1168), - [aux_sym__val_number_decimal_token1] = ACTIONS(1168), - [aux_sym__val_number_decimal_token2] = ACTIONS(1168), - [anon_sym_DOT2] = ACTIONS(1168), - [aux_sym__val_number_decimal_token3] = ACTIONS(1168), - [aux_sym__val_number_token1] = ACTIONS(1168), - [aux_sym__val_number_token2] = ACTIONS(1168), - [aux_sym__val_number_token3] = ACTIONS(1168), - [aux_sym__val_number_token4] = ACTIONS(1168), - [aux_sym__val_number_token5] = ACTIONS(1168), - [aux_sym__val_number_token6] = ACTIONS(1168), - [anon_sym_0b] = ACTIONS(1168), - [anon_sym_0o] = ACTIONS(1168), - [anon_sym_0x] = ACTIONS(1168), - [sym_val_date] = ACTIONS(1168), - [anon_sym_DQUOTE] = ACTIONS(1168), - [sym__str_single_quotes] = ACTIONS(1168), - [sym__str_back_ticks] = ACTIONS(1168), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1168), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1168), - [anon_sym_POUND] = ACTIONS(113), - }, - [3036] = { - [sym_comment] = STATE(3036), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym_LF] = ACTIONS(1322), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_LPAREN] = ACTIONS(1320), - [anon_sym_RPAREN] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1320), - [anon_sym_DOLLAR] = ACTIONS(1320), - [anon_sym_GT] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_in] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_RBRACE] = ACTIONS(1320), - [anon_sym_DOT_DOT] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_STAR_STAR] = ACTIONS(1320), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_SLASH] = ACTIONS(1320), - [anon_sym_mod] = ACTIONS(1320), - [anon_sym_SLASH_SLASH] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1320), - [anon_sym_bit_DASHshl] = ACTIONS(1320), - [anon_sym_bit_DASHshr] = ACTIONS(1320), - [anon_sym_EQ_EQ] = ACTIONS(1320), - [anon_sym_BANG_EQ] = ACTIONS(1320), - [anon_sym_LT2] = ACTIONS(1320), - [anon_sym_LT_EQ] = ACTIONS(1320), - [anon_sym_GT_EQ] = ACTIONS(1320), - [anon_sym_not_DASHin] = ACTIONS(1320), - [anon_sym_starts_DASHwith] = ACTIONS(1320), - [anon_sym_ends_DASHwith] = ACTIONS(1320), - [anon_sym_EQ_TILDE] = ACTIONS(1320), - [anon_sym_BANG_TILDE] = ACTIONS(1320), - [anon_sym_bit_DASHand] = ACTIONS(1320), - [anon_sym_bit_DASHxor] = ACTIONS(1320), - [anon_sym_bit_DASHor] = ACTIONS(1320), - [anon_sym_and] = ACTIONS(1320), - [anon_sym_xor] = ACTIONS(1320), - [anon_sym_or] = ACTIONS(1320), - [anon_sym_not] = ACTIONS(1320), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1320), - [anon_sym_DOT_DOT_LT] = ACTIONS(1320), - [anon_sym_null] = ACTIONS(1320), - [anon_sym_true] = ACTIONS(1320), - [anon_sym_false] = ACTIONS(1320), - [aux_sym__val_number_decimal_token1] = ACTIONS(1320), - [aux_sym__val_number_decimal_token2] = ACTIONS(1320), - [anon_sym_DOT2] = ACTIONS(1320), - [aux_sym__val_number_decimal_token3] = ACTIONS(1320), - [aux_sym__val_number_token1] = ACTIONS(1320), - [aux_sym__val_number_token2] = ACTIONS(1320), - [aux_sym__val_number_token3] = ACTIONS(1320), - [aux_sym__val_number_token4] = ACTIONS(1320), - [aux_sym__val_number_token5] = ACTIONS(1320), - [aux_sym__val_number_token6] = ACTIONS(1320), - [anon_sym_0b] = ACTIONS(1320), - [anon_sym_0o] = ACTIONS(1320), - [anon_sym_0x] = ACTIONS(1320), - [sym_val_date] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1320), - [sym__str_single_quotes] = ACTIONS(1320), - [sym__str_back_ticks] = ACTIONS(1320), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1320), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1320), - [anon_sym_POUND] = ACTIONS(113), - }, - [3037] = { - [sym_ctrl_if_parenthesized] = STATE(9745), - [sym_block] = STATE(9746), - [sym__expression] = STATE(9746), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(5342), - [sym__var] = STATE(4755), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(9746), - [sym_comment] = STATE(3037), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(1762), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_if] = ACTIONS(451), - [anon_sym_LBRACE] = ACTIONS(6930), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_not] = ACTIONS(191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(193), - [anon_sym_DOT_DOT_LT] = ACTIONS(193), - [anon_sym_null] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [aux_sym__val_number_decimal_token1] = ACTIONS(199), - [aux_sym__val_number_decimal_token2] = ACTIONS(201), - [anon_sym_DOT2] = ACTIONS(203), - [aux_sym__val_number_decimal_token3] = ACTIONS(205), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(209), - [aux_sym__val_number_token5] = ACTIONS(207), - [aux_sym__val_number_token6] = ACTIONS(209), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_POUND] = ACTIONS(3), - }, - [3038] = { - [sym__expr_parenthesized_immediate] = STATE(3445), - [sym__immediate_decimal] = STATE(3428), - [sym_val_variable] = STATE(3445), - [sym__var] = STATE(3150), - [sym_comment] = STATE(3038), - [anon_sym_export] = ACTIONS(1920), - [anon_sym_alias] = ACTIONS(1920), - [anon_sym_let] = ACTIONS(1920), - [anon_sym_let_DASHenv] = ACTIONS(1920), - [anon_sym_mut] = ACTIONS(1920), - [anon_sym_const] = ACTIONS(1920), - [sym_cmd_identifier] = ACTIONS(1920), - [anon_sym_def] = ACTIONS(1920), - [anon_sym_export_DASHenv] = ACTIONS(1920), - [anon_sym_extern] = ACTIONS(1920), - [anon_sym_module] = ACTIONS(1920), - [anon_sym_use] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1920), - [anon_sym_DOLLAR] = ACTIONS(6932), - [anon_sym_error] = ACTIONS(1920), - [anon_sym_list] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1920), - [anon_sym_break] = ACTIONS(1920), - [anon_sym_continue] = ACTIONS(1920), - [anon_sym_for] = ACTIONS(1920), - [anon_sym_in] = ACTIONS(1920), - [anon_sym_loop] = ACTIONS(1920), - [anon_sym_make] = ACTIONS(1920), - [anon_sym_while] = ACTIONS(1920), - [anon_sym_do] = ACTIONS(1920), - [anon_sym_if] = ACTIONS(1920), - [anon_sym_else] = ACTIONS(1920), - [anon_sym_match] = ACTIONS(1920), - [anon_sym_RBRACE] = ACTIONS(1922), - [anon_sym_try] = ACTIONS(1920), - [anon_sym_catch] = ACTIONS(1920), - [anon_sym_return] = ACTIONS(1920), - [anon_sym_source] = ACTIONS(1920), - [anon_sym_source_DASHenv] = ACTIONS(1920), - [anon_sym_register] = ACTIONS(1920), - [anon_sym_hide] = ACTIONS(1920), - [anon_sym_hide_DASHenv] = ACTIONS(1920), - [anon_sym_overlay] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1920), - [anon_sym_as] = ACTIONS(1920), - [anon_sym_PLUS] = ACTIONS(1920), - [anon_sym_LPAREN2] = ACTIONS(6934), - [anon_sym_DOT] = ACTIONS(7014), - [aux_sym__immediate_decimal_token1] = ACTIONS(6938), - [aux_sym__immediate_decimal_token3] = ACTIONS(6940), - [aux_sym__immediate_decimal_token4] = ACTIONS(6942), - [aux_sym__val_number_decimal_token1] = ACTIONS(1920), - [aux_sym__val_number_decimal_token2] = ACTIONS(1920), - [anon_sym_DOT2] = ACTIONS(1920), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_token1] = ACTIONS(1922), - [aux_sym__val_number_token2] = ACTIONS(1922), - [aux_sym__val_number_token3] = ACTIONS(1922), - [aux_sym__val_number_token4] = ACTIONS(1920), - [aux_sym__val_number_token5] = ACTIONS(1922), - [aux_sym__val_number_token6] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1922), - [sym__str_single_quotes] = ACTIONS(1922), - [sym__str_back_ticks] = ACTIONS(1922), - [aux_sym__record_key_token2] = ACTIONS(1920), - [anon_sym_POUND] = ACTIONS(3), - }, - [3039] = { - [sym_comment] = STATE(3039), - [anon_sym_export] = ACTIONS(7016), - [anon_sym_alias] = ACTIONS(7016), - [anon_sym_let] = ACTIONS(7016), - [anon_sym_let_DASHenv] = ACTIONS(7016), - [anon_sym_mut] = ACTIONS(7016), - [anon_sym_const] = ACTIONS(7016), - [anon_sym_SEMI] = ACTIONS(7016), - [sym_cmd_identifier] = ACTIONS(7016), - [anon_sym_LF] = ACTIONS(7018), - [anon_sym_def] = ACTIONS(7016), - [anon_sym_export_DASHenv] = ACTIONS(7016), - [anon_sym_extern] = ACTIONS(7016), - [anon_sym_module] = ACTIONS(7016), - [anon_sym_use] = ACTIONS(7016), - [anon_sym_LBRACK] = ACTIONS(7016), - [anon_sym_LPAREN] = ACTIONS(7016), - [anon_sym_DOLLAR] = ACTIONS(7016), - [anon_sym_error] = ACTIONS(7016), - [anon_sym_DASH] = ACTIONS(7016), - [anon_sym_break] = ACTIONS(7016), - [anon_sym_continue] = ACTIONS(7016), - [anon_sym_for] = ACTIONS(7016), - [anon_sym_loop] = ACTIONS(7016), - [anon_sym_while] = ACTIONS(7016), - [anon_sym_do] = ACTIONS(7016), - [anon_sym_if] = ACTIONS(7016), - [anon_sym_match] = ACTIONS(7016), - [anon_sym_LBRACE] = ACTIONS(7016), - [anon_sym_DOT_DOT] = ACTIONS(7016), - [anon_sym_try] = ACTIONS(7016), - [anon_sym_return] = ACTIONS(7016), - [anon_sym_source] = ACTIONS(7016), - [anon_sym_source_DASHenv] = ACTIONS(7016), - [anon_sym_register] = ACTIONS(7016), - [anon_sym_hide] = ACTIONS(7016), - [anon_sym_hide_DASHenv] = ACTIONS(7016), - [anon_sym_overlay] = ACTIONS(7016), - [anon_sym_where] = ACTIONS(7016), - [anon_sym_not] = ACTIONS(7016), - [anon_sym_DOT_DOT_EQ] = ACTIONS(7016), - [anon_sym_DOT_DOT_LT] = ACTIONS(7016), - [anon_sym_null] = ACTIONS(7016), - [anon_sym_true] = ACTIONS(7016), - [anon_sym_false] = ACTIONS(7016), - [aux_sym__val_number_decimal_token1] = ACTIONS(7016), - [aux_sym__val_number_decimal_token2] = ACTIONS(7016), - [anon_sym_DOT2] = ACTIONS(7016), - [aux_sym__val_number_decimal_token3] = ACTIONS(7016), - [aux_sym__val_number_token1] = ACTIONS(7016), - [aux_sym__val_number_token2] = ACTIONS(7016), - [aux_sym__val_number_token3] = ACTIONS(7016), - [aux_sym__val_number_token4] = ACTIONS(7016), - [aux_sym__val_number_token5] = ACTIONS(7016), - [aux_sym__val_number_token6] = ACTIONS(7016), - [anon_sym_0b] = ACTIONS(7016), - [anon_sym_0o] = ACTIONS(7016), - [anon_sym_0x] = ACTIONS(7016), - [sym_val_date] = ACTIONS(7016), - [anon_sym_DQUOTE] = ACTIONS(7016), - [sym__str_single_quotes] = ACTIONS(7016), - [sym__str_back_ticks] = ACTIONS(7016), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(7016), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(7016), - [anon_sym_CARET] = ACTIONS(7016), - [anon_sym_POUND] = ACTIONS(113), - }, - [3040] = { - [sym_ctrl_if_parenthesized] = STATE(10129), - [sym_block] = STATE(10131), - [sym__expression] = STATE(10131), - [sym_expr_unary] = STATE(6157), - [sym__expr_unary_minus] = STATE(6183), - [sym_expr_binary] = STATE(6157), - [sym__expr_binary_expression] = STATE(6785), - [sym_expr_parenthesized] = STATE(5308), - [sym_val_range] = STATE(8278), - [sym__value] = STATE(6157), - [sym_val_nothing] = STATE(6241), - [sym_val_bool] = STATE(6241), - [sym_val_variable] = STATE(5342), - [sym__var] = STATE(4755), - [sym_val_number] = STATE(6241), - [sym__val_number_decimal] = STATE(4458), - [sym__val_number] = STATE(5462), - [sym_val_duration] = STATE(6241), - [sym_val_filesize] = STATE(6241), - [sym_val_binary] = STATE(6241), - [sym_val_string] = STATE(6241), - [sym__str_double_quotes] = STATE(5774), - [sym_val_interpolated] = STATE(6241), - [sym__inter_single_quotes] = STATE(6041), - [sym__inter_double_quotes] = STATE(6031), - [sym_val_list] = STATE(6241), - [sym_val_record] = STATE(6241), - [sym_val_table] = STATE(6241), - [sym_val_closure] = STATE(6241), - [sym_command] = STATE(10131), - [sym_comment] = STATE(3040), - [sym_cmd_identifier] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(1762), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_if] = ACTIONS(451), - [anon_sym_LBRACE] = ACTIONS(6930), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_not] = ACTIONS(191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(193), - [anon_sym_DOT_DOT_LT] = ACTIONS(193), - [anon_sym_null] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [aux_sym__val_number_decimal_token1] = ACTIONS(199), - [aux_sym__val_number_decimal_token2] = ACTIONS(201), - [anon_sym_DOT2] = ACTIONS(203), - [aux_sym__val_number_decimal_token3] = ACTIONS(205), - [aux_sym__val_number_token1] = ACTIONS(207), - [aux_sym__val_number_token2] = ACTIONS(207), - [aux_sym__val_number_token3] = ACTIONS(207), - [aux_sym__val_number_token4] = ACTIONS(209), - [aux_sym__val_number_token5] = ACTIONS(207), - [aux_sym__val_number_token6] = ACTIONS(209), - [anon_sym_0b] = ACTIONS(211), - [anon_sym_0o] = ACTIONS(213), - [anon_sym_0x] = ACTIONS(213), - [sym_val_date] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym__str_single_quotes] = ACTIONS(219), - [sym__str_back_ticks] = ACTIONS(219), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(223), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_POUND] = ACTIONS(3), - }, - [3041] = { - [sym_comment] = STATE(3041), - [anon_sym_export] = ACTIONS(7020), - [anon_sym_alias] = ACTIONS(7020), - [anon_sym_let] = ACTIONS(7020), - [anon_sym_let_DASHenv] = ACTIONS(7020), - [anon_sym_mut] = ACTIONS(7020), - [anon_sym_const] = ACTIONS(7020), - [anon_sym_SEMI] = ACTIONS(7020), - [sym_cmd_identifier] = ACTIONS(7020), - [anon_sym_LF] = ACTIONS(7022), - [anon_sym_def] = ACTIONS(7020), - [anon_sym_export_DASHenv] = ACTIONS(7020), - [anon_sym_extern] = ACTIONS(7020), - [anon_sym_module] = ACTIONS(7020), - [anon_sym_use] = ACTIONS(7020), - [anon_sym_LBRACK] = ACTIONS(7020), - [anon_sym_LPAREN] = ACTIONS(7020), - [anon_sym_DOLLAR] = ACTIONS(7020), - [anon_sym_error] = ACTIONS(7020), - [anon_sym_DASH] = ACTIONS(7020), - [anon_sym_break] = ACTIONS(7020), - [anon_sym_continue] = ACTIONS(7020), - [anon_sym_for] = ACTIONS(7020), - [anon_sym_loop] = ACTIONS(7020), - [anon_sym_while] = ACTIONS(7020), - [anon_sym_do] = ACTIONS(7020), - [anon_sym_if] = ACTIONS(7020), - [anon_sym_match] = ACTIONS(7020), - [anon_sym_LBRACE] = ACTIONS(7020), - [anon_sym_DOT_DOT] = ACTIONS(7020), - [anon_sym_try] = ACTIONS(7020), - [anon_sym_return] = ACTIONS(7020), - [anon_sym_source] = ACTIONS(7020), - [anon_sym_source_DASHenv] = ACTIONS(7020), - [anon_sym_register] = ACTIONS(7020), - [anon_sym_hide] = ACTIONS(7020), - [anon_sym_hide_DASHenv] = ACTIONS(7020), - [anon_sym_overlay] = ACTIONS(7020), - [anon_sym_where] = ACTIONS(7020), - [anon_sym_not] = ACTIONS(7020), - [anon_sym_DOT_DOT_EQ] = ACTIONS(7020), - [anon_sym_DOT_DOT_LT] = ACTIONS(7020), - [anon_sym_null] = ACTIONS(7020), - [anon_sym_true] = ACTIONS(7020), - [anon_sym_false] = ACTIONS(7020), - [aux_sym__val_number_decimal_token1] = ACTIONS(7020), - [aux_sym__val_number_decimal_token2] = ACTIONS(7020), - [anon_sym_DOT2] = ACTIONS(7020), - [aux_sym__val_number_decimal_token3] = ACTIONS(7020), - [aux_sym__val_number_token1] = ACTIONS(7020), - [aux_sym__val_number_token2] = ACTIONS(7020), - [aux_sym__val_number_token3] = ACTIONS(7020), - [aux_sym__val_number_token4] = ACTIONS(7020), - [aux_sym__val_number_token5] = ACTIONS(7020), - [aux_sym__val_number_token6] = ACTIONS(7020), - [anon_sym_0b] = ACTIONS(7020), - [anon_sym_0o] = ACTIONS(7020), - [anon_sym_0x] = ACTIONS(7020), - [sym_val_date] = ACTIONS(7020), - [anon_sym_DQUOTE] = ACTIONS(7020), - [sym__str_single_quotes] = ACTIONS(7020), - [sym__str_back_ticks] = ACTIONS(7020), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(7020), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(7020), - [anon_sym_CARET] = ACTIONS(7020), - [anon_sym_POUND] = ACTIONS(113), - }, - [3042] = { - [sym_comment] = STATE(3042), - [anon_sym_export] = ACTIONS(6875), - [anon_sym_alias] = ACTIONS(6875), - [anon_sym_let] = ACTIONS(6875), - [anon_sym_let_DASHenv] = ACTIONS(6875), - [anon_sym_mut] = ACTIONS(6875), - [anon_sym_const] = ACTIONS(6875), - [anon_sym_SEMI] = ACTIONS(6875), - [sym_cmd_identifier] = ACTIONS(6875), - [anon_sym_LF] = ACTIONS(7024), - [anon_sym_def] = ACTIONS(6875), - [anon_sym_export_DASHenv] = ACTIONS(6875), - [anon_sym_extern] = ACTIONS(6875), - [anon_sym_module] = ACTIONS(6875), - [anon_sym_use] = ACTIONS(6875), - [anon_sym_LBRACK] = ACTIONS(6875), - [anon_sym_LPAREN] = ACTIONS(6875), - [anon_sym_DOLLAR] = ACTIONS(6875), - [anon_sym_error] = ACTIONS(6875), - [anon_sym_DASH] = ACTIONS(6875), - [anon_sym_break] = ACTIONS(6875), - [anon_sym_continue] = ACTIONS(6875), - [anon_sym_for] = ACTIONS(6875), - [anon_sym_loop] = ACTIONS(6875), - [anon_sym_while] = ACTIONS(6875), - [anon_sym_do] = ACTIONS(6875), - [anon_sym_if] = ACTIONS(6875), - [anon_sym_match] = ACTIONS(6875), - [anon_sym_LBRACE] = ACTIONS(6875), - [anon_sym_DOT_DOT] = ACTIONS(6875), - [anon_sym_try] = ACTIONS(6875), - [anon_sym_return] = ACTIONS(6875), - [anon_sym_source] = ACTIONS(6875), - [anon_sym_source_DASHenv] = ACTIONS(6875), - [anon_sym_register] = ACTIONS(6875), - [anon_sym_hide] = ACTIONS(6875), - [anon_sym_hide_DASHenv] = ACTIONS(6875), - [anon_sym_overlay] = ACTIONS(6875), - [anon_sym_where] = ACTIONS(6875), - [anon_sym_not] = ACTIONS(6875), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6875), - [anon_sym_DOT_DOT_LT] = ACTIONS(6875), - [anon_sym_null] = ACTIONS(6875), - [anon_sym_true] = ACTIONS(6875), - [anon_sym_false] = ACTIONS(6875), - [aux_sym__val_number_decimal_token1] = ACTIONS(6875), - [aux_sym__val_number_decimal_token2] = ACTIONS(6875), - [anon_sym_DOT2] = ACTIONS(6875), - [aux_sym__val_number_decimal_token3] = ACTIONS(6875), - [aux_sym__val_number_token1] = ACTIONS(6875), - [aux_sym__val_number_token2] = ACTIONS(6875), - [aux_sym__val_number_token3] = ACTIONS(6875), - [aux_sym__val_number_token4] = ACTIONS(6875), - [aux_sym__val_number_token5] = ACTIONS(6875), - [aux_sym__val_number_token6] = ACTIONS(6875), - [anon_sym_0b] = ACTIONS(6875), - [anon_sym_0o] = ACTIONS(6875), - [anon_sym_0x] = ACTIONS(6875), - [sym_val_date] = ACTIONS(6875), - [anon_sym_DQUOTE] = ACTIONS(6875), - [sym__str_single_quotes] = ACTIONS(6875), - [sym__str_back_ticks] = ACTIONS(6875), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6875), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6875), - [anon_sym_CARET] = ACTIONS(6875), - [anon_sym_POUND] = ACTIONS(113), - }, - [3043] = { - [sym__immediate_decimal] = STATE(10460), - [sym_comment] = STATE(3043), + [ts_builtin_sym_end] = ACTIONS(940), + [anon_sym_SEMI] = ACTIONS(938), + [anon_sym_LF] = ACTIONS(940), [anon_sym_LBRACK] = ACTIONS(938), [anon_sym_LPAREN] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), + [anon_sym_PIPE] = ACTIONS(938), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_in] = ACTIONS(938), [anon_sym_LBRACE] = ACTIONS(938), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), [anon_sym_STAR_STAR] = ACTIONS(938), - [anon_sym_PLUS_PLUS] = ACTIONS(938), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(938), - [anon_sym_SLASH_SLASH] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(938), - [anon_sym_bit_DASHshr] = ACTIONS(938), - [anon_sym_EQ_EQ] = ACTIONS(938), - [anon_sym_BANG_EQ] = ACTIONS(938), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(938), - [anon_sym_GT_EQ] = ACTIONS(938), - [anon_sym_not_DASHin] = ACTIONS(938), - [anon_sym_starts_DASHwith] = ACTIONS(938), - [anon_sym_ends_DASHwith] = ACTIONS(938), - [anon_sym_EQ_TILDE] = ACTIONS(938), - [anon_sym_BANG_TILDE] = ACTIONS(938), - [anon_sym_bit_DASHand] = ACTIONS(938), - [anon_sym_bit_DASHxor] = ACTIONS(938), - [anon_sym_bit_DASHor] = ACTIONS(938), - [anon_sym_and] = ACTIONS(938), - [anon_sym_xor] = ACTIONS(938), - [anon_sym_or] = ACTIONS(938), - [anon_sym_not] = ACTIONS(936), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_DOT_DOT_EQ] = ACTIONS(938), - [anon_sym_DOT_DOT_LT] = ACTIONS(938), - [aux_sym__immediate_decimal_token1] = ACTIONS(1045), - [aux_sym__immediate_decimal_token3] = ACTIONS(1609), - [aux_sym__immediate_decimal_token4] = ACTIONS(1611), - [anon_sym_null] = ACTIONS(938), - [anon_sym_true] = ACTIONS(938), - [anon_sym_false] = ACTIONS(938), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(938), - [aux_sym__val_number_token2] = ACTIONS(938), - [aux_sym__val_number_token3] = ACTIONS(938), - [aux_sym__val_number_token4] = ACTIONS(938), - [aux_sym__val_number_token5] = ACTIONS(938), - [aux_sym__val_number_token6] = ACTIONS(938), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(938), - [sym__str_single_quotes] = ACTIONS(938), - [sym__str_back_ticks] = ACTIONS(938), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(938), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(938), - [aux_sym_unquoted_token4] = ACTIONS(6816), - [anon_sym_POUND] = ACTIONS(3), - }, - [3044] = { - [sym_comment] = STATE(3044), - [ts_builtin_sym_end] = ACTIONS(1275), - [anon_sym_SEMI] = ACTIONS(1273), - [anon_sym_LF] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1273), - [anon_sym_LPAREN] = ACTIONS(1273), - [anon_sym_PIPE] = ACTIONS(1273), - [anon_sym_DOLLAR] = ACTIONS(1273), - [anon_sym_GT] = ACTIONS(1273), - [anon_sym_DASH_DASH] = ACTIONS(1273), - [anon_sym_DASH] = ACTIONS(1273), - [anon_sym_in] = ACTIONS(1273), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_STAR] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1273), - [anon_sym_PLUS_PLUS] = ACTIONS(1273), - [anon_sym_SLASH] = ACTIONS(1273), - [anon_sym_mod] = ACTIONS(1273), - [anon_sym_SLASH_SLASH] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(1273), - [anon_sym_bit_DASHshl] = ACTIONS(1273), - [anon_sym_bit_DASHshr] = ACTIONS(1273), - [anon_sym_EQ_EQ] = ACTIONS(1273), - [anon_sym_BANG_EQ] = ACTIONS(1273), - [anon_sym_LT2] = ACTIONS(1273), - [anon_sym_LT_EQ] = ACTIONS(1273), - [anon_sym_GT_EQ] = ACTIONS(1273), - [anon_sym_not_DASHin] = ACTIONS(1273), - [anon_sym_starts_DASHwith] = ACTIONS(1273), - [anon_sym_ends_DASHwith] = ACTIONS(1273), - [anon_sym_EQ_TILDE] = ACTIONS(1273), - [anon_sym_BANG_TILDE] = ACTIONS(1273), - [anon_sym_bit_DASHand] = ACTIONS(1273), - [anon_sym_bit_DASHxor] = ACTIONS(1273), - [anon_sym_bit_DASHor] = ACTIONS(1273), - [anon_sym_and] = ACTIONS(1273), - [anon_sym_xor] = ACTIONS(1273), - [anon_sym_or] = ACTIONS(1273), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1273), - [anon_sym_DOT_DOT_LT] = ACTIONS(1273), - [anon_sym_null] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1273), - [anon_sym_false] = ACTIONS(1273), - [aux_sym__val_number_decimal_token1] = ACTIONS(1273), - [aux_sym__val_number_decimal_token2] = ACTIONS(1273), - [anon_sym_DOT2] = ACTIONS(1273), - [aux_sym__val_number_decimal_token3] = ACTIONS(1273), - [aux_sym__val_number_token1] = ACTIONS(1273), - [aux_sym__val_number_token2] = ACTIONS(1273), - [aux_sym__val_number_token3] = ACTIONS(1273), - [aux_sym__val_number_token4] = ACTIONS(1273), - [aux_sym__val_number_token5] = ACTIONS(1273), - [aux_sym__val_number_token6] = ACTIONS(1273), - [anon_sym_0b] = ACTIONS(1273), - [anon_sym_0o] = ACTIONS(1273), - [anon_sym_0x] = ACTIONS(1273), - [sym_val_date] = ACTIONS(1273), - [anon_sym_DQUOTE] = ACTIONS(1273), - [sym__str_single_quotes] = ACTIONS(1273), - [sym__str_back_ticks] = ACTIONS(1273), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1273), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1273), - [aux_sym_unquoted_token6] = ACTIONS(1257), - [anon_sym_POUND] = ACTIONS(113), - }, - [3045] = { - [sym_ctrl_if] = STATE(9524), - [sym_block] = STATE(9525), - [sym__expression] = STATE(9525), - [sym_expr_unary] = STATE(6379), - [sym__expr_unary_minus] = STATE(6347), - [sym_expr_binary] = STATE(6379), - [sym__expr_binary_expression] = STATE(6784), - [sym_expr_parenthesized] = STATE(5573), - [sym_val_range] = STATE(8689), - [sym__value] = STATE(6379), - [sym_val_nothing] = STATE(6374), - [sym_val_bool] = STATE(6374), - [sym_val_variable] = STATE(5610), - [sym__var] = STATE(4886), - [sym_val_number] = STATE(6374), - [sym__val_number_decimal] = STATE(4698), - [sym__val_number] = STATE(5769), - [sym_val_duration] = STATE(6374), - [sym_val_filesize] = STATE(6374), - [sym_val_binary] = STATE(6374), - [sym_val_string] = STATE(6374), - [sym__str_double_quotes] = STATE(6386), - [sym_val_interpolated] = STATE(6374), - [sym__inter_single_quotes] = STATE(6363), - [sym__inter_double_quotes] = STATE(6365), - [sym_val_list] = STATE(6374), - [sym_val_record] = STATE(6374), - [sym_val_table] = STATE(6374), - [sym_val_closure] = STATE(6374), - [sym_command] = STATE(9525), - [sym_comment] = STATE(3045), - [sym_cmd_identifier] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(1742), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_if] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(7026), - [anon_sym_DOT_DOT] = ACTIONS(59), - [anon_sym_not] = ACTIONS(77), - [anon_sym_DOT_DOT_EQ] = ACTIONS(79), - [anon_sym_DOT_DOT_LT] = ACTIONS(79), - [anon_sym_null] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym__val_number_decimal_token1] = ACTIONS(85), - [aux_sym__val_number_decimal_token2] = ACTIONS(87), - [anon_sym_DOT2] = ACTIONS(89), - [aux_sym__val_number_decimal_token3] = ACTIONS(91), - [aux_sym__val_number_token1] = ACTIONS(93), - [aux_sym__val_number_token2] = ACTIONS(93), - [aux_sym__val_number_token3] = ACTIONS(93), - [aux_sym__val_number_token4] = ACTIONS(95), - [aux_sym__val_number_token5] = ACTIONS(93), - [aux_sym__val_number_token6] = ACTIONS(95), - [anon_sym_0b] = ACTIONS(97), - [anon_sym_0o] = ACTIONS(99), - [anon_sym_0x] = ACTIONS(99), - [sym_val_date] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym__str_single_quotes] = ACTIONS(105), - [sym__str_back_ticks] = ACTIONS(105), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(107), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(111), - [anon_sym_POUND] = ACTIONS(3), - }, - [3046] = { - [sym_comment] = STATE(3046), - [anon_sym_export] = ACTIONS(7028), - [anon_sym_alias] = ACTIONS(7028), - [anon_sym_let] = ACTIONS(7028), - [anon_sym_let_DASHenv] = ACTIONS(7028), - [anon_sym_mut] = ACTIONS(7028), - [anon_sym_const] = ACTIONS(7028), - [anon_sym_SEMI] = ACTIONS(7028), - [sym_cmd_identifier] = ACTIONS(7028), - [anon_sym_LF] = ACTIONS(7030), - [anon_sym_def] = ACTIONS(7028), - [anon_sym_export_DASHenv] = ACTIONS(7028), - [anon_sym_extern] = ACTIONS(7028), - [anon_sym_module] = ACTIONS(7028), - [anon_sym_use] = ACTIONS(7028), - [anon_sym_LBRACK] = ACTIONS(7028), - [anon_sym_LPAREN] = ACTIONS(7028), - [anon_sym_DOLLAR] = ACTIONS(7028), - [anon_sym_error] = ACTIONS(7028), - [anon_sym_DASH] = ACTIONS(7028), - [anon_sym_break] = ACTIONS(7028), - [anon_sym_continue] = ACTIONS(7028), - [anon_sym_for] = ACTIONS(7028), - [anon_sym_loop] = ACTIONS(7028), - [anon_sym_while] = ACTIONS(7028), - [anon_sym_do] = ACTIONS(7028), - [anon_sym_if] = ACTIONS(7028), - [anon_sym_match] = ACTIONS(7028), - [anon_sym_LBRACE] = ACTIONS(7028), - [anon_sym_DOT_DOT] = ACTIONS(7028), - [anon_sym_try] = ACTIONS(7028), - [anon_sym_return] = ACTIONS(7028), - [anon_sym_source] = ACTIONS(7028), - [anon_sym_source_DASHenv] = ACTIONS(7028), - [anon_sym_register] = ACTIONS(7028), - [anon_sym_hide] = ACTIONS(7028), - [anon_sym_hide_DASHenv] = ACTIONS(7028), - [anon_sym_overlay] = ACTIONS(7028), - [anon_sym_where] = ACTIONS(7028), - [anon_sym_not] = ACTIONS(7028), - [anon_sym_DOT_DOT_EQ] = ACTIONS(7028), - [anon_sym_DOT_DOT_LT] = ACTIONS(7028), - [anon_sym_null] = ACTIONS(7028), - [anon_sym_true] = ACTIONS(7028), - [anon_sym_false] = ACTIONS(7028), - [aux_sym__val_number_decimal_token1] = ACTIONS(7028), - [aux_sym__val_number_decimal_token2] = ACTIONS(7028), - [anon_sym_DOT2] = ACTIONS(7028), - [aux_sym__val_number_decimal_token3] = ACTIONS(7028), - [aux_sym__val_number_token1] = ACTIONS(7028), - [aux_sym__val_number_token2] = ACTIONS(7028), - [aux_sym__val_number_token3] = ACTIONS(7028), - [aux_sym__val_number_token4] = ACTIONS(7028), - [aux_sym__val_number_token5] = ACTIONS(7028), - [aux_sym__val_number_token6] = ACTIONS(7028), - [anon_sym_0b] = ACTIONS(7028), - [anon_sym_0o] = ACTIONS(7028), - [anon_sym_0x] = ACTIONS(7028), - [sym_val_date] = ACTIONS(7028), - [anon_sym_DQUOTE] = ACTIONS(7028), - [sym__str_single_quotes] = ACTIONS(7028), - [sym__str_back_ticks] = ACTIONS(7028), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(7028), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(7028), - [anon_sym_CARET] = ACTIONS(7028), - [anon_sym_POUND] = ACTIONS(113), - }, - [3047] = { - [sym_comment] = STATE(3047), - [anon_sym_export] = ACTIONS(7032), - [anon_sym_alias] = ACTIONS(7032), - [anon_sym_let] = ACTIONS(7032), - [anon_sym_let_DASHenv] = ACTIONS(7032), - [anon_sym_mut] = ACTIONS(7032), - [anon_sym_const] = ACTIONS(7032), - [anon_sym_SEMI] = ACTIONS(7032), - [sym_cmd_identifier] = ACTIONS(7032), - [anon_sym_LF] = ACTIONS(7034), - [anon_sym_def] = ACTIONS(7032), - [anon_sym_export_DASHenv] = ACTIONS(7032), - [anon_sym_extern] = ACTIONS(7032), - [anon_sym_module] = ACTIONS(7032), - [anon_sym_use] = ACTIONS(7032), - [anon_sym_LBRACK] = ACTIONS(7032), - [anon_sym_LPAREN] = ACTIONS(7032), - [anon_sym_DOLLAR] = ACTIONS(7032), - [anon_sym_error] = ACTIONS(7032), - [anon_sym_DASH] = ACTIONS(7032), - [anon_sym_break] = ACTIONS(7032), - [anon_sym_continue] = ACTIONS(7032), - [anon_sym_for] = ACTIONS(7032), - [anon_sym_loop] = ACTIONS(7032), - [anon_sym_while] = ACTIONS(7032), - [anon_sym_do] = ACTIONS(7032), - [anon_sym_if] = ACTIONS(7032), - [anon_sym_match] = ACTIONS(7032), - [anon_sym_LBRACE] = ACTIONS(7032), - [anon_sym_DOT_DOT] = ACTIONS(7032), - [anon_sym_try] = ACTIONS(7032), - [anon_sym_return] = ACTIONS(7032), - [anon_sym_source] = ACTIONS(7032), - [anon_sym_source_DASHenv] = ACTIONS(7032), - [anon_sym_register] = ACTIONS(7032), - [anon_sym_hide] = ACTIONS(7032), - [anon_sym_hide_DASHenv] = ACTIONS(7032), - [anon_sym_overlay] = ACTIONS(7032), - [anon_sym_where] = ACTIONS(7032), - [anon_sym_not] = ACTIONS(7032), - [anon_sym_DOT_DOT_EQ] = ACTIONS(7032), - [anon_sym_DOT_DOT_LT] = ACTIONS(7032), - [anon_sym_null] = ACTIONS(7032), - [anon_sym_true] = ACTIONS(7032), - [anon_sym_false] = ACTIONS(7032), - [aux_sym__val_number_decimal_token1] = ACTIONS(7032), - [aux_sym__val_number_decimal_token2] = ACTIONS(7032), - [anon_sym_DOT2] = ACTIONS(7032), - [aux_sym__val_number_decimal_token3] = ACTIONS(7032), - [aux_sym__val_number_token1] = ACTIONS(7032), - [aux_sym__val_number_token2] = ACTIONS(7032), - [aux_sym__val_number_token3] = ACTIONS(7032), - [aux_sym__val_number_token4] = ACTIONS(7032), - [aux_sym__val_number_token5] = ACTIONS(7032), - [aux_sym__val_number_token6] = ACTIONS(7032), - [anon_sym_0b] = ACTIONS(7032), - [anon_sym_0o] = ACTIONS(7032), - [anon_sym_0x] = ACTIONS(7032), - [sym_val_date] = ACTIONS(7032), - [anon_sym_DQUOTE] = ACTIONS(7032), - [sym__str_single_quotes] = ACTIONS(7032), - [sym__str_back_ticks] = ACTIONS(7032), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(7032), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(7032), - [anon_sym_CARET] = ACTIONS(7032), - [anon_sym_POUND] = ACTIONS(113), - }, - [3048] = { - [sym_comment] = STATE(3048), - [ts_builtin_sym_end] = ACTIONS(961), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_PIPE] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH_DASH] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(959), - [anon_sym_PLUS_PLUS] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(959), - [anon_sym_SLASH_SLASH] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(959), - [anon_sym_bit_DASHshr] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(959), - [anon_sym_BANG_EQ] = ACTIONS(959), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(959), - [anon_sym_GT_EQ] = ACTIONS(959), - [anon_sym_not_DASHin] = ACTIONS(959), - [anon_sym_starts_DASHwith] = ACTIONS(959), - [anon_sym_ends_DASHwith] = ACTIONS(959), - [anon_sym_EQ_TILDE] = ACTIONS(959), - [anon_sym_BANG_TILDE] = ACTIONS(959), - [anon_sym_bit_DASHand] = ACTIONS(959), - [anon_sym_bit_DASHxor] = ACTIONS(959), - [anon_sym_bit_DASHor] = ACTIONS(959), - [anon_sym_and] = ACTIONS(959), - [anon_sym_xor] = ACTIONS(959), - [anon_sym_or] = ACTIONS(959), - [anon_sym_not] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_DOT_DOT_LT] = ACTIONS(959), - [anon_sym_null] = ACTIONS(959), - [anon_sym_true] = ACTIONS(959), - [anon_sym_false] = ACTIONS(959), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(959), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(959), - [aux_sym__val_number_token1] = ACTIONS(959), - [aux_sym__val_number_token2] = ACTIONS(959), - [aux_sym__val_number_token3] = ACTIONS(959), - [aux_sym__val_number_token4] = ACTIONS(959), - [aux_sym__val_number_token5] = ACTIONS(959), - [aux_sym__val_number_token6] = ACTIONS(959), - [anon_sym_0b] = ACTIONS(959), - [anon_sym_0o] = ACTIONS(959), - [anon_sym_0x] = ACTIONS(959), - [sym_val_date] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [sym__str_single_quotes] = ACTIONS(959), - [sym__str_back_ticks] = ACTIONS(959), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(959), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(959), - [aux_sym_unquoted_token5] = ACTIONS(4781), - [anon_sym_POUND] = ACTIONS(113), - }, - [3049] = { - [sym_comment] = STATE(3049), - [ts_builtin_sym_end] = ACTIONS(1290), - [anon_sym_SEMI] = ACTIONS(1243), - [anon_sym_LF] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_in] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1243), - [anon_sym_STAR_STAR] = ACTIONS(1243), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_SLASH] = ACTIONS(1243), - [anon_sym_mod] = ACTIONS(1243), - [anon_sym_SLASH_SLASH] = ACTIONS(1243), - [anon_sym_PLUS] = ACTIONS(1243), - [anon_sym_bit_DASHshl] = ACTIONS(1243), - [anon_sym_bit_DASHshr] = ACTIONS(1243), - [anon_sym_EQ_EQ] = ACTIONS(1243), - [anon_sym_BANG_EQ] = ACTIONS(1243), - [anon_sym_LT2] = ACTIONS(1243), - [anon_sym_LT_EQ] = ACTIONS(1243), - [anon_sym_GT_EQ] = ACTIONS(1243), - [anon_sym_not_DASHin] = ACTIONS(1243), - [anon_sym_starts_DASHwith] = ACTIONS(1243), - [anon_sym_ends_DASHwith] = ACTIONS(1243), - [anon_sym_EQ_TILDE] = ACTIONS(1243), - [anon_sym_BANG_TILDE] = ACTIONS(1243), - [anon_sym_bit_DASHand] = ACTIONS(1243), - [anon_sym_bit_DASHxor] = ACTIONS(1243), - [anon_sym_bit_DASHor] = ACTIONS(1243), - [anon_sym_and] = ACTIONS(1243), - [anon_sym_xor] = ACTIONS(1243), - [anon_sym_or] = ACTIONS(1243), - [anon_sym_not] = ACTIONS(1243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1243), - [anon_sym_DOT_DOT_LT] = ACTIONS(1243), - [anon_sym_null] = ACTIONS(1243), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_decimal_token2] = ACTIONS(1243), - [anon_sym_DOT2] = ACTIONS(1243), - [aux_sym__val_number_decimal_token3] = ACTIONS(1243), - [aux_sym__val_number_token1] = ACTIONS(1243), - [aux_sym__val_number_token2] = ACTIONS(1243), - [aux_sym__val_number_token3] = ACTIONS(1243), - [aux_sym__val_number_token4] = ACTIONS(1243), - [aux_sym__val_number_token5] = ACTIONS(1243), - [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_0b] = ACTIONS(1243), - [anon_sym_0o] = ACTIONS(1243), - [anon_sym_0x] = ACTIONS(1243), - [sym_val_date] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym__str_single_quotes] = ACTIONS(1243), - [sym__str_back_ticks] = ACTIONS(1243), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1243), - [aux_sym__list_item_starts_with_sign_token1] = ACTIONS(7036), - [anon_sym_POUND] = ACTIONS(113), - }, - [3050] = { - [sym_cell_path] = STATE(3149), - [sym_path] = STATE(2949), - [sym_comment] = STATE(3050), - [anon_sym_LBRACK] = ACTIONS(1012), - [anon_sym_LPAREN] = ACTIONS(1012), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_in] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_DOT_DOT] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1010), - [anon_sym_STAR_STAR] = ACTIONS(1012), - [anon_sym_PLUS_PLUS] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1010), - [anon_sym_mod] = ACTIONS(1012), - [anon_sym_SLASH_SLASH] = ACTIONS(1012), - [anon_sym_PLUS] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1012), - [anon_sym_bit_DASHshr] = ACTIONS(1012), - [anon_sym_EQ_EQ] = ACTIONS(1012), - [anon_sym_BANG_EQ] = ACTIONS(1012), - [anon_sym_LT2] = ACTIONS(1010), - [anon_sym_LT_EQ] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1012), - [anon_sym_not_DASHin] = ACTIONS(1012), - [anon_sym_starts_DASHwith] = ACTIONS(1012), - [anon_sym_ends_DASHwith] = ACTIONS(1012), - [anon_sym_EQ_TILDE] = ACTIONS(1012), - [anon_sym_BANG_TILDE] = ACTIONS(1012), - [anon_sym_bit_DASHand] = ACTIONS(1012), - [anon_sym_bit_DASHxor] = ACTIONS(1012), - [anon_sym_bit_DASHor] = ACTIONS(1012), - [anon_sym_and] = ACTIONS(1012), - [anon_sym_xor] = ACTIONS(1012), - [anon_sym_or] = ACTIONS(1012), - [anon_sym_not] = ACTIONS(1010), - [anon_sym_DOT_DOT2] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(6897), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT] = ACTIONS(1010), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), - [anon_sym_null] = ACTIONS(1012), - [anon_sym_true] = ACTIONS(1012), - [anon_sym_false] = ACTIONS(1012), - [aux_sym__val_number_decimal_token1] = ACTIONS(1010), - [aux_sym__val_number_decimal_token2] = ACTIONS(1012), - [anon_sym_DOT2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = 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(1010), - [anon_sym_0o] = ACTIONS(1010), - [anon_sym_0x] = ACTIONS(1010), - [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_POUND] = ACTIONS(3), + [anon_sym_PLUS_PLUS] = ACTIONS(938), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(938), + [anon_sym_SLASH_SLASH] = ACTIONS(938), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_bit_DASHshl] = ACTIONS(938), + [anon_sym_bit_DASHshr] = ACTIONS(938), + [anon_sym_EQ_EQ] = ACTIONS(938), + [anon_sym_BANG_EQ] = ACTIONS(938), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(938), + [anon_sym_GT_EQ] = ACTIONS(938), + [anon_sym_not_DASHin] = ACTIONS(938), + [anon_sym_starts_DASHwith] = ACTIONS(938), + [anon_sym_ends_DASHwith] = ACTIONS(938), + [anon_sym_EQ_TILDE] = ACTIONS(938), + [anon_sym_BANG_TILDE] = ACTIONS(938), + [anon_sym_bit_DASHand] = ACTIONS(938), + [anon_sym_bit_DASHxor] = ACTIONS(938), + [anon_sym_bit_DASHor] = ACTIONS(938), + [anon_sym_and] = ACTIONS(938), + [anon_sym_xor] = ACTIONS(938), + [anon_sym_or] = ACTIONS(938), + [anon_sym_not] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ] = ACTIONS(938), + [anon_sym_DOT_DOT_LT] = ACTIONS(938), + [anon_sym_null] = ACTIONS(938), + [anon_sym_true] = ACTIONS(938), + [anon_sym_false] = ACTIONS(938), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(938), + [anon_sym_DOT2] = ACTIONS(938), + [aux_sym__val_number_decimal_token3] = ACTIONS(938), + [aux_sym__val_number_token1] = ACTIONS(938), + [aux_sym__val_number_token2] = ACTIONS(938), + [aux_sym__val_number_token3] = ACTIONS(938), + [aux_sym__val_number_token4] = ACTIONS(938), + [aux_sym__val_number_token5] = ACTIONS(938), + [aux_sym__val_number_token6] = ACTIONS(938), + [anon_sym_0b] = ACTIONS(938), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym__str_single_quotes] = ACTIONS(938), + [sym__str_back_ticks] = ACTIONS(938), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(938), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(938), + [anon_sym_POUND] = ACTIONS(113), }, - [3051] = { - [sym_comment] = STATE(3051), - [anon_sym_SEMI] = ACTIONS(1298), - [anon_sym_LF] = ACTIONS(1300), - [anon_sym_LBRACK] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1298), - [anon_sym_RPAREN] = ACTIONS(1298), - [anon_sym_PIPE] = ACTIONS(1298), - [anon_sym_DOLLAR] = ACTIONS(1298), - [anon_sym_GT] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_in] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1298), - [anon_sym_DOT_DOT] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_STAR_STAR] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1298), - [anon_sym_SLASH] = ACTIONS(1298), - [anon_sym_mod] = ACTIONS(1298), - [anon_sym_SLASH_SLASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_bit_DASHshl] = ACTIONS(1298), - [anon_sym_bit_DASHshr] = ACTIONS(1298), - [anon_sym_EQ_EQ] = ACTIONS(1298), - [anon_sym_BANG_EQ] = ACTIONS(1298), - [anon_sym_LT2] = ACTIONS(1298), - [anon_sym_LT_EQ] = ACTIONS(1298), - [anon_sym_GT_EQ] = ACTIONS(1298), - [anon_sym_not_DASHin] = ACTIONS(1298), - [anon_sym_starts_DASHwith] = ACTIONS(1298), - [anon_sym_ends_DASHwith] = ACTIONS(1298), - [anon_sym_EQ_TILDE] = ACTIONS(1298), - [anon_sym_BANG_TILDE] = ACTIONS(1298), - [anon_sym_bit_DASHand] = ACTIONS(1298), - [anon_sym_bit_DASHxor] = ACTIONS(1298), - [anon_sym_bit_DASHor] = ACTIONS(1298), - [anon_sym_and] = ACTIONS(1298), - [anon_sym_xor] = ACTIONS(1298), - [anon_sym_or] = ACTIONS(1298), - [anon_sym_not] = ACTIONS(1298), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1298), - [anon_sym_DOT_DOT_LT] = ACTIONS(1298), - [anon_sym_null] = ACTIONS(1298), - [anon_sym_true] = ACTIONS(1298), - [anon_sym_false] = ACTIONS(1298), - [aux_sym__val_number_decimal_token1] = ACTIONS(1298), - [aux_sym__val_number_decimal_token2] = ACTIONS(1298), - [anon_sym_DOT2] = ACTIONS(1298), - [aux_sym__val_number_decimal_token3] = 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(1298), - [aux_sym__val_number_token5] = ACTIONS(1298), - [aux_sym__val_number_token6] = ACTIONS(1298), - [anon_sym_0b] = ACTIONS(1298), - [anon_sym_0o] = ACTIONS(1298), - [anon_sym_0x] = ACTIONS(1298), - [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_POUND] = ACTIONS(113), - }, - [3052] = { - [sym_comment] = STATE(3052), - [anon_sym_export] = ACTIONS(7038), - [anon_sym_alias] = ACTIONS(7038), - [anon_sym_let] = ACTIONS(7038), - [anon_sym_let_DASHenv] = ACTIONS(7038), - [anon_sym_mut] = ACTIONS(7038), - [anon_sym_const] = ACTIONS(7038), - [anon_sym_SEMI] = ACTIONS(7038), - [sym_cmd_identifier] = ACTIONS(7038), - [anon_sym_LF] = ACTIONS(7040), - [anon_sym_def] = ACTIONS(7038), - [anon_sym_export_DASHenv] = ACTIONS(7038), - [anon_sym_extern] = ACTIONS(7038), - [anon_sym_module] = ACTIONS(7038), - [anon_sym_use] = ACTIONS(7038), - [anon_sym_LBRACK] = ACTIONS(7038), - [anon_sym_LPAREN] = ACTIONS(7038), - [anon_sym_DOLLAR] = ACTIONS(7038), - [anon_sym_error] = ACTIONS(7038), - [anon_sym_DASH] = ACTIONS(7038), - [anon_sym_break] = ACTIONS(7038), - [anon_sym_continue] = ACTIONS(7038), - [anon_sym_for] = ACTIONS(7038), - [anon_sym_loop] = ACTIONS(7038), - [anon_sym_while] = ACTIONS(7038), - [anon_sym_do] = ACTIONS(7038), - [anon_sym_if] = ACTIONS(7038), - [anon_sym_match] = ACTIONS(7038), - [anon_sym_LBRACE] = ACTIONS(7038), - [anon_sym_DOT_DOT] = ACTIONS(7038), - [anon_sym_try] = ACTIONS(7038), - [anon_sym_return] = ACTIONS(7038), - [anon_sym_source] = ACTIONS(7038), - [anon_sym_source_DASHenv] = ACTIONS(7038), - [anon_sym_register] = ACTIONS(7038), - [anon_sym_hide] = ACTIONS(7038), - [anon_sym_hide_DASHenv] = ACTIONS(7038), - [anon_sym_overlay] = ACTIONS(7038), - [anon_sym_where] = ACTIONS(7038), - [anon_sym_not] = ACTIONS(7038), - [anon_sym_DOT_DOT_EQ] = ACTIONS(7038), - [anon_sym_DOT_DOT_LT] = ACTIONS(7038), - [anon_sym_null] = ACTIONS(7038), - [anon_sym_true] = ACTIONS(7038), - [anon_sym_false] = ACTIONS(7038), - [aux_sym__val_number_decimal_token1] = ACTIONS(7038), - [aux_sym__val_number_decimal_token2] = ACTIONS(7038), - [anon_sym_DOT2] = ACTIONS(7038), - [aux_sym__val_number_decimal_token3] = ACTIONS(7038), - [aux_sym__val_number_token1] = ACTIONS(7038), - [aux_sym__val_number_token2] = ACTIONS(7038), - [aux_sym__val_number_token3] = ACTIONS(7038), - [aux_sym__val_number_token4] = ACTIONS(7038), - [aux_sym__val_number_token5] = ACTIONS(7038), - [aux_sym__val_number_token6] = ACTIONS(7038), - [anon_sym_0b] = ACTIONS(7038), - [anon_sym_0o] = ACTIONS(7038), - [anon_sym_0x] = ACTIONS(7038), - [sym_val_date] = ACTIONS(7038), - [anon_sym_DQUOTE] = ACTIONS(7038), - [sym__str_single_quotes] = ACTIONS(7038), - [sym__str_back_ticks] = ACTIONS(7038), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(7038), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(7038), - [anon_sym_CARET] = ACTIONS(7038), - [anon_sym_POUND] = ACTIONS(113), - }, - [3053] = { - [sym_comment] = STATE(3053), - [ts_builtin_sym_end] = ACTIONS(1282), - [anon_sym_SEMI] = ACTIONS(1280), - [anon_sym_LF] = ACTIONS(1282), - [anon_sym_LBRACK] = ACTIONS(1280), - [anon_sym_LPAREN] = ACTIONS(1280), - [anon_sym_PIPE] = ACTIONS(1280), - [anon_sym_DOLLAR] = ACTIONS(1280), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_DASH_DASH] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_in] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1280), - [anon_sym_DOT_DOT] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1280), - [anon_sym_STAR_STAR] = ACTIONS(1280), - [anon_sym_PLUS_PLUS] = ACTIONS(1280), - [anon_sym_SLASH] = ACTIONS(1280), - [anon_sym_mod] = ACTIONS(1280), - [anon_sym_SLASH_SLASH] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_bit_DASHshl] = ACTIONS(1280), - [anon_sym_bit_DASHshr] = ACTIONS(1280), - [anon_sym_EQ_EQ] = ACTIONS(1280), - [anon_sym_BANG_EQ] = ACTIONS(1280), - [anon_sym_LT2] = ACTIONS(1280), - [anon_sym_LT_EQ] = ACTIONS(1280), - [anon_sym_GT_EQ] = ACTIONS(1280), - [anon_sym_not_DASHin] = ACTIONS(1280), - [anon_sym_starts_DASHwith] = ACTIONS(1280), - [anon_sym_ends_DASHwith] = ACTIONS(1280), - [anon_sym_EQ_TILDE] = ACTIONS(1280), - [anon_sym_BANG_TILDE] = ACTIONS(1280), - [anon_sym_bit_DASHand] = ACTIONS(1280), - [anon_sym_bit_DASHxor] = ACTIONS(1280), - [anon_sym_bit_DASHor] = ACTIONS(1280), - [anon_sym_and] = ACTIONS(1280), - [anon_sym_xor] = ACTIONS(1280), - [anon_sym_or] = ACTIONS(1280), - [anon_sym_not] = ACTIONS(1280), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1280), - [anon_sym_DOT_DOT_LT] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1280), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [aux_sym__val_number_decimal_token1] = ACTIONS(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1280), - [anon_sym_DOT2] = ACTIONS(1280), - [aux_sym__val_number_decimal_token3] = ACTIONS(1280), - [aux_sym__val_number_token1] = ACTIONS(1280), - [aux_sym__val_number_token2] = ACTIONS(1280), - [aux_sym__val_number_token3] = ACTIONS(1280), - [aux_sym__val_number_token4] = ACTIONS(1280), - [aux_sym__val_number_token5] = ACTIONS(1280), - [aux_sym__val_number_token6] = ACTIONS(1280), - [anon_sym_0b] = ACTIONS(1280), - [anon_sym_0o] = ACTIONS(1280), - [anon_sym_0x] = ACTIONS(1280), - [sym_val_date] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1280), - [sym__str_single_quotes] = ACTIONS(1280), - [sym__str_back_ticks] = ACTIONS(1280), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1280), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1280), - [aux_sym_unquoted_token6] = ACTIONS(1280), - [anon_sym_POUND] = ACTIONS(113), - }, - [3054] = { - [sym_comment] = STATE(3054), - [anon_sym_SEMI] = ACTIONS(1346), - [anon_sym_LF] = ACTIONS(1348), - [anon_sym_LBRACK] = ACTIONS(1346), - [anon_sym_LPAREN] = ACTIONS(1346), - [anon_sym_RPAREN] = ACTIONS(1346), - [anon_sym_PIPE] = ACTIONS(1346), - [anon_sym_DOLLAR] = ACTIONS(1346), - [anon_sym_GT] = ACTIONS(1346), - [anon_sym_DASH_DASH] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_in] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_RBRACE] = ACTIONS(1346), - [anon_sym_DOT_DOT] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_STAR_STAR] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1346), - [anon_sym_SLASH] = ACTIONS(1346), - [anon_sym_mod] = ACTIONS(1346), - [anon_sym_SLASH_SLASH] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_bit_DASHshl] = ACTIONS(1346), - [anon_sym_bit_DASHshr] = ACTIONS(1346), - [anon_sym_EQ_EQ] = ACTIONS(1346), - [anon_sym_BANG_EQ] = ACTIONS(1346), - [anon_sym_LT2] = ACTIONS(1346), - [anon_sym_LT_EQ] = ACTIONS(1346), - [anon_sym_GT_EQ] = ACTIONS(1346), - [anon_sym_not_DASHin] = ACTIONS(1346), - [anon_sym_starts_DASHwith] = ACTIONS(1346), - [anon_sym_ends_DASHwith] = ACTIONS(1346), - [anon_sym_EQ_TILDE] = ACTIONS(1346), - [anon_sym_BANG_TILDE] = ACTIONS(1346), - [anon_sym_bit_DASHand] = ACTIONS(1346), - [anon_sym_bit_DASHxor] = ACTIONS(1346), - [anon_sym_bit_DASHor] = ACTIONS(1346), - [anon_sym_and] = ACTIONS(1346), - [anon_sym_xor] = ACTIONS(1346), - [anon_sym_or] = ACTIONS(1346), - [anon_sym_not] = ACTIONS(1346), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1346), - [anon_sym_DOT_DOT_LT] = ACTIONS(1346), - [anon_sym_null] = ACTIONS(1346), - [anon_sym_true] = ACTIONS(1346), - [anon_sym_false] = ACTIONS(1346), - [aux_sym__val_number_decimal_token1] = ACTIONS(1346), - [aux_sym__val_number_decimal_token2] = ACTIONS(1346), - [anon_sym_DOT2] = ACTIONS(1346), - [aux_sym__val_number_decimal_token3] = ACTIONS(1346), - [aux_sym__val_number_token1] = ACTIONS(1346), - [aux_sym__val_number_token2] = ACTIONS(1346), - [aux_sym__val_number_token3] = ACTIONS(1346), - [aux_sym__val_number_token4] = ACTIONS(1346), - [aux_sym__val_number_token5] = ACTIONS(1346), - [aux_sym__val_number_token6] = ACTIONS(1346), - [anon_sym_0b] = ACTIONS(1346), - [anon_sym_0o] = ACTIONS(1346), - [anon_sym_0x] = ACTIONS(1346), - [sym_val_date] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym__str_single_quotes] = ACTIONS(1346), - [sym__str_back_ticks] = ACTIONS(1346), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1346), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1346), - [anon_sym_POUND] = ACTIONS(113), - }, - [3055] = { - [sym_comment] = STATE(3055), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym_LF] = ACTIONS(1310), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_LPAREN] = ACTIONS(1308), - [anon_sym_RPAREN] = ACTIONS(1308), - [anon_sym_PIPE] = ACTIONS(1308), - [anon_sym_DOLLAR] = ACTIONS(1308), - [anon_sym_GT] = ACTIONS(1308), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_in] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_DOT_DOT] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_STAR_STAR] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(1308), - [anon_sym_mod] = ACTIONS(1308), - [anon_sym_SLASH_SLASH] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_bit_DASHshl] = ACTIONS(1308), - [anon_sym_bit_DASHshr] = ACTIONS(1308), - [anon_sym_EQ_EQ] = ACTIONS(1308), - [anon_sym_BANG_EQ] = ACTIONS(1308), - [anon_sym_LT2] = ACTIONS(1308), - [anon_sym_LT_EQ] = ACTIONS(1308), - [anon_sym_GT_EQ] = ACTIONS(1308), - [anon_sym_not_DASHin] = ACTIONS(1308), - [anon_sym_starts_DASHwith] = ACTIONS(1308), - [anon_sym_ends_DASHwith] = ACTIONS(1308), - [anon_sym_EQ_TILDE] = ACTIONS(1308), - [anon_sym_BANG_TILDE] = ACTIONS(1308), - [anon_sym_bit_DASHand] = ACTIONS(1308), - [anon_sym_bit_DASHxor] = ACTIONS(1308), - [anon_sym_bit_DASHor] = ACTIONS(1308), - [anon_sym_and] = ACTIONS(1308), - [anon_sym_xor] = ACTIONS(1308), - [anon_sym_or] = ACTIONS(1308), - [anon_sym_not] = ACTIONS(1308), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1308), - [anon_sym_DOT_DOT_LT] = ACTIONS(1308), - [anon_sym_null] = ACTIONS(1308), - [anon_sym_true] = ACTIONS(1308), - [anon_sym_false] = ACTIONS(1308), - [aux_sym__val_number_decimal_token1] = ACTIONS(1308), - [aux_sym__val_number_decimal_token2] = ACTIONS(1308), - [anon_sym_DOT2] = ACTIONS(1308), - [aux_sym__val_number_decimal_token3] = ACTIONS(1308), - [aux_sym__val_number_token1] = ACTIONS(1308), - [aux_sym__val_number_token2] = ACTIONS(1308), - [aux_sym__val_number_token3] = ACTIONS(1308), - [aux_sym__val_number_token4] = ACTIONS(1308), - [aux_sym__val_number_token5] = ACTIONS(1308), - [aux_sym__val_number_token6] = ACTIONS(1308), - [anon_sym_0b] = ACTIONS(1308), - [anon_sym_0o] = ACTIONS(1308), - [anon_sym_0x] = ACTIONS(1308), - [sym_val_date] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym__str_single_quotes] = ACTIONS(1308), - [sym__str_back_ticks] = ACTIONS(1308), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1308), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1308), - [anon_sym_POUND] = ACTIONS(113), - }, - [3056] = { - [sym_comment] = STATE(3056), - [ts_builtin_sym_end] = ACTIONS(1255), - [anon_sym_SEMI] = ACTIONS(1253), - [anon_sym_LF] = ACTIONS(1255), - [anon_sym_LBRACK] = ACTIONS(1253), - [anon_sym_LPAREN] = ACTIONS(1253), - [anon_sym_PIPE] = ACTIONS(1253), - [anon_sym_DOLLAR] = ACTIONS(1253), - [anon_sym_GT] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_in] = ACTIONS(1253), - [anon_sym_LBRACE] = ACTIONS(1253), - [anon_sym_DOT_DOT] = ACTIONS(1253), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_STAR_STAR] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_mod] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_bit_DASHshl] = ACTIONS(1253), - [anon_sym_bit_DASHshr] = ACTIONS(1253), - [anon_sym_EQ_EQ] = ACTIONS(1253), - [anon_sym_BANG_EQ] = ACTIONS(1253), - [anon_sym_LT2] = ACTIONS(1253), - [anon_sym_LT_EQ] = ACTIONS(1253), - [anon_sym_GT_EQ] = ACTIONS(1253), - [anon_sym_not_DASHin] = ACTIONS(1253), - [anon_sym_starts_DASHwith] = ACTIONS(1253), - [anon_sym_ends_DASHwith] = ACTIONS(1253), - [anon_sym_EQ_TILDE] = ACTIONS(1253), - [anon_sym_BANG_TILDE] = ACTIONS(1253), - [anon_sym_bit_DASHand] = ACTIONS(1253), - [anon_sym_bit_DASHxor] = ACTIONS(1253), - [anon_sym_bit_DASHor] = ACTIONS(1253), - [anon_sym_and] = ACTIONS(1253), - [anon_sym_xor] = ACTIONS(1253), - [anon_sym_or] = ACTIONS(1253), - [anon_sym_not] = ACTIONS(1253), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1253), - [anon_sym_DOT_DOT_LT] = ACTIONS(1253), - [anon_sym_null] = ACTIONS(1253), - [anon_sym_true] = ACTIONS(1253), - [anon_sym_false] = ACTIONS(1253), - [aux_sym__val_number_decimal_token1] = ACTIONS(1253), - [aux_sym__val_number_decimal_token2] = ACTIONS(1253), - [anon_sym_DOT2] = ACTIONS(1253), - [aux_sym__val_number_decimal_token3] = ACTIONS(1253), - [aux_sym__val_number_token1] = ACTIONS(1253), - [aux_sym__val_number_token2] = ACTIONS(1253), - [aux_sym__val_number_token3] = ACTIONS(1253), - [aux_sym__val_number_token4] = ACTIONS(1253), - [aux_sym__val_number_token5] = ACTIONS(1253), - [aux_sym__val_number_token6] = ACTIONS(1253), - [anon_sym_0b] = ACTIONS(1253), - [anon_sym_0o] = ACTIONS(1253), - [anon_sym_0x] = ACTIONS(1253), - [sym_val_date] = ACTIONS(1253), - [anon_sym_DQUOTE] = ACTIONS(1253), - [sym__str_single_quotes] = ACTIONS(1253), - [sym__str_back_ticks] = ACTIONS(1253), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1253), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1253), - [aux_sym_unquoted_token6] = ACTIONS(1257), - [anon_sym_POUND] = ACTIONS(113), - }, - [3057] = { - [sym__expr_parenthesized_immediate] = STATE(3559), - [sym__immediate_decimal] = STATE(3554), - [sym_val_variable] = STATE(3559), - [sym__var] = STATE(3214), - [sym_comment] = STATE(3057), - [anon_sym_export] = ACTIONS(1920), - [anon_sym_alias] = ACTIONS(1920), - [anon_sym_let] = ACTIONS(1920), - [anon_sym_let_DASHenv] = ACTIONS(1920), - [anon_sym_mut] = ACTIONS(1920), - [anon_sym_const] = ACTIONS(1920), - [sym_cmd_identifier] = ACTIONS(1920), - [anon_sym_def] = ACTIONS(1920), - [anon_sym_export_DASHenv] = ACTIONS(1920), - [anon_sym_extern] = ACTIONS(1920), - [anon_sym_module] = ACTIONS(1920), - [anon_sym_use] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1920), - [anon_sym_DOLLAR] = ACTIONS(6095), - [anon_sym_error] = ACTIONS(1920), - [anon_sym_list] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1920), - [anon_sym_break] = ACTIONS(1920), - [anon_sym_continue] = ACTIONS(1920), - [anon_sym_for] = ACTIONS(1920), - [anon_sym_in] = ACTIONS(1920), - [anon_sym_loop] = ACTIONS(1920), - [anon_sym_make] = ACTIONS(1920), - [anon_sym_while] = ACTIONS(1920), - [anon_sym_do] = ACTIONS(1920), - [anon_sym_if] = ACTIONS(1920), - [anon_sym_else] = ACTIONS(1920), - [anon_sym_match] = ACTIONS(1920), - [anon_sym_RBRACE] = ACTIONS(1922), - [anon_sym_try] = ACTIONS(1920), - [anon_sym_catch] = ACTIONS(1920), - [anon_sym_return] = ACTIONS(1920), - [anon_sym_source] = ACTIONS(1920), - [anon_sym_source_DASHenv] = ACTIONS(1920), - [anon_sym_register] = ACTIONS(1920), - [anon_sym_hide] = ACTIONS(1920), - [anon_sym_hide_DASHenv] = ACTIONS(1920), - [anon_sym_overlay] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1920), - [anon_sym_as] = ACTIONS(1920), - [anon_sym_PLUS] = ACTIONS(1920), - [anon_sym_LPAREN2] = ACTIONS(6944), - [anon_sym_DOT] = ACTIONS(6946), - [aux_sym__immediate_decimal_token1] = ACTIONS(6948), - [aux_sym__immediate_decimal_token3] = ACTIONS(6950), - [aux_sym__immediate_decimal_token4] = ACTIONS(6952), - [aux_sym__val_number_decimal_token1] = ACTIONS(1920), - [aux_sym__val_number_decimal_token2] = ACTIONS(1920), - [anon_sym_DOT2] = ACTIONS(1920), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_token1] = ACTIONS(1922), - [aux_sym__val_number_token2] = ACTIONS(1922), - [aux_sym__val_number_token3] = ACTIONS(1922), - [aux_sym__val_number_token4] = ACTIONS(1920), - [aux_sym__val_number_token5] = ACTIONS(1922), - [aux_sym__val_number_token6] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1922), - [sym__str_single_quotes] = ACTIONS(1922), - [sym__str_back_ticks] = ACTIONS(1922), - [aux_sym__record_key_token2] = ACTIONS(1920), - [anon_sym_POUND] = ACTIONS(3), - }, - [3058] = { - [sym_comment] = STATE(3058), - [anon_sym_SEMI] = ACTIONS(1302), - [anon_sym_LF] = ACTIONS(1304), - [anon_sym_LBRACK] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_RPAREN] = ACTIONS(1302), - [anon_sym_PIPE] = ACTIONS(1302), - [anon_sym_DOLLAR] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_in] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_RBRACE] = ACTIONS(1302), - [anon_sym_DOT_DOT] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_STAR_STAR] = ACTIONS(1302), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_SLASH] = ACTIONS(1302), - [anon_sym_mod] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_bit_DASHshl] = ACTIONS(1302), - [anon_sym_bit_DASHshr] = ACTIONS(1302), - [anon_sym_EQ_EQ] = ACTIONS(1302), - [anon_sym_BANG_EQ] = ACTIONS(1302), - [anon_sym_LT2] = ACTIONS(1302), - [anon_sym_LT_EQ] = ACTIONS(1302), - [anon_sym_GT_EQ] = ACTIONS(1302), - [anon_sym_not_DASHin] = ACTIONS(1302), - [anon_sym_starts_DASHwith] = ACTIONS(1302), - [anon_sym_ends_DASHwith] = ACTIONS(1302), - [anon_sym_EQ_TILDE] = ACTIONS(1302), - [anon_sym_BANG_TILDE] = ACTIONS(1302), - [anon_sym_bit_DASHand] = ACTIONS(1302), - [anon_sym_bit_DASHxor] = ACTIONS(1302), - [anon_sym_bit_DASHor] = ACTIONS(1302), - [anon_sym_and] = ACTIONS(1302), - [anon_sym_xor] = ACTIONS(1302), - [anon_sym_or] = ACTIONS(1302), - [anon_sym_not] = ACTIONS(1302), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1302), - [anon_sym_DOT_DOT_LT] = ACTIONS(1302), - [anon_sym_null] = ACTIONS(1302), - [anon_sym_true] = ACTIONS(1302), - [anon_sym_false] = ACTIONS(1302), - [aux_sym__val_number_decimal_token1] = ACTIONS(1302), - [aux_sym__val_number_decimal_token2] = ACTIONS(1302), - [anon_sym_DOT2] = ACTIONS(1302), - [aux_sym__val_number_decimal_token3] = ACTIONS(1302), - [aux_sym__val_number_token1] = ACTIONS(1302), - [aux_sym__val_number_token2] = ACTIONS(1302), - [aux_sym__val_number_token3] = ACTIONS(1302), - [aux_sym__val_number_token4] = ACTIONS(1302), - [aux_sym__val_number_token5] = ACTIONS(1302), - [aux_sym__val_number_token6] = ACTIONS(1302), - [anon_sym_0b] = ACTIONS(1302), - [anon_sym_0o] = ACTIONS(1302), - [anon_sym_0x] = ACTIONS(1302), - [sym_val_date] = ACTIONS(1302), - [anon_sym_DQUOTE] = ACTIONS(1302), - [sym__str_single_quotes] = ACTIONS(1302), - [sym__str_back_ticks] = ACTIONS(1302), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1302), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1302), - [anon_sym_POUND] = ACTIONS(113), - }, - [3059] = { - [sym_comment] = STATE(3059), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_LF] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1316), - [anon_sym_RPAREN] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_DOLLAR] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_in] = ACTIONS(1316), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_RBRACE] = ACTIONS(1316), - [anon_sym_DOT_DOT] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_STAR_STAR] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_SLASH] = ACTIONS(1316), - [anon_sym_mod] = ACTIONS(1316), - [anon_sym_SLASH_SLASH] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_bit_DASHshl] = ACTIONS(1316), - [anon_sym_bit_DASHshr] = ACTIONS(1316), - [anon_sym_EQ_EQ] = ACTIONS(1316), - [anon_sym_BANG_EQ] = ACTIONS(1316), - [anon_sym_LT2] = ACTIONS(1316), - [anon_sym_LT_EQ] = ACTIONS(1316), - [anon_sym_GT_EQ] = ACTIONS(1316), - [anon_sym_not_DASHin] = ACTIONS(1316), - [anon_sym_starts_DASHwith] = ACTIONS(1316), - [anon_sym_ends_DASHwith] = ACTIONS(1316), - [anon_sym_EQ_TILDE] = ACTIONS(1316), - [anon_sym_BANG_TILDE] = ACTIONS(1316), - [anon_sym_bit_DASHand] = ACTIONS(1316), - [anon_sym_bit_DASHxor] = ACTIONS(1316), - [anon_sym_bit_DASHor] = ACTIONS(1316), - [anon_sym_and] = ACTIONS(1316), - [anon_sym_xor] = ACTIONS(1316), - [anon_sym_or] = ACTIONS(1316), - [anon_sym_not] = ACTIONS(1316), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1316), - [anon_sym_DOT_DOT_LT] = ACTIONS(1316), - [anon_sym_null] = ACTIONS(1316), - [anon_sym_true] = ACTIONS(1316), - [anon_sym_false] = ACTIONS(1316), - [aux_sym__val_number_decimal_token1] = ACTIONS(1316), - [aux_sym__val_number_decimal_token2] = ACTIONS(1316), - [anon_sym_DOT2] = ACTIONS(1316), - [aux_sym__val_number_decimal_token3] = ACTIONS(1316), - [aux_sym__val_number_token1] = ACTIONS(1316), - [aux_sym__val_number_token2] = ACTIONS(1316), - [aux_sym__val_number_token3] = ACTIONS(1316), - [aux_sym__val_number_token4] = ACTIONS(1316), - [aux_sym__val_number_token5] = ACTIONS(1316), - [aux_sym__val_number_token6] = ACTIONS(1316), - [anon_sym_0b] = ACTIONS(1316), - [anon_sym_0o] = ACTIONS(1316), - [anon_sym_0x] = ACTIONS(1316), - [sym_val_date] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1316), - [sym__str_single_quotes] = ACTIONS(1316), - [sym__str_back_ticks] = ACTIONS(1316), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1316), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(113), - }, - [3060] = { - [sym__expr_parenthesized_immediate] = STATE(3577), - [sym__immediate_decimal] = STATE(3579), - [sym_val_variable] = STATE(3577), - [sym__var] = STATE(3214), - [sym_comment] = STATE(3060), - [anon_sym_export] = ACTIONS(2002), - [anon_sym_alias] = ACTIONS(2002), - [anon_sym_let] = ACTIONS(2002), - [anon_sym_let_DASHenv] = ACTIONS(2002), - [anon_sym_mut] = ACTIONS(2002), - [anon_sym_const] = ACTIONS(2002), - [sym_cmd_identifier] = ACTIONS(2002), - [anon_sym_def] = ACTIONS(2002), - [anon_sym_export_DASHenv] = ACTIONS(2002), - [anon_sym_extern] = ACTIONS(2002), - [anon_sym_module] = ACTIONS(2002), - [anon_sym_use] = ACTIONS(2002), - [anon_sym_LPAREN] = ACTIONS(2002), - [anon_sym_DOLLAR] = ACTIONS(6095), - [anon_sym_error] = ACTIONS(2002), - [anon_sym_list] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2002), - [anon_sym_break] = ACTIONS(2002), - [anon_sym_continue] = ACTIONS(2002), - [anon_sym_for] = ACTIONS(2002), - [anon_sym_in] = ACTIONS(2002), - [anon_sym_loop] = ACTIONS(2002), - [anon_sym_make] = ACTIONS(2002), - [anon_sym_while] = ACTIONS(2002), - [anon_sym_do] = ACTIONS(2002), - [anon_sym_if] = ACTIONS(2002), - [anon_sym_else] = ACTIONS(2002), - [anon_sym_match] = ACTIONS(2002), - [anon_sym_RBRACE] = ACTIONS(2004), - [anon_sym_try] = ACTIONS(2002), - [anon_sym_catch] = ACTIONS(2002), - [anon_sym_return] = ACTIONS(2002), - [anon_sym_source] = ACTIONS(2002), - [anon_sym_source_DASHenv] = ACTIONS(2002), - [anon_sym_register] = ACTIONS(2002), - [anon_sym_hide] = ACTIONS(2002), - [anon_sym_hide_DASHenv] = ACTIONS(2002), - [anon_sym_overlay] = ACTIONS(2002), - [anon_sym_new] = ACTIONS(2002), - [anon_sym_as] = ACTIONS(2002), - [anon_sym_PLUS] = ACTIONS(2002), - [anon_sym_LPAREN2] = ACTIONS(6944), - [anon_sym_DOT] = ACTIONS(6946), - [aux_sym__immediate_decimal_token1] = ACTIONS(6948), - [aux_sym__immediate_decimal_token3] = ACTIONS(6950), - [aux_sym__immediate_decimal_token4] = ACTIONS(6952), - [aux_sym__val_number_decimal_token1] = ACTIONS(2002), - [aux_sym__val_number_decimal_token2] = ACTIONS(2002), - [anon_sym_DOT2] = ACTIONS(2002), - [aux_sym__val_number_decimal_token3] = ACTIONS(2002), - [aux_sym__val_number_token1] = ACTIONS(2004), - [aux_sym__val_number_token2] = ACTIONS(2004), - [aux_sym__val_number_token3] = ACTIONS(2004), - [aux_sym__val_number_token4] = ACTIONS(2002), - [aux_sym__val_number_token5] = ACTIONS(2004), - [aux_sym__val_number_token6] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2004), - [sym__str_single_quotes] = ACTIONS(2004), - [sym__str_back_ticks] = ACTIONS(2004), - [aux_sym__record_key_token2] = ACTIONS(2002), - [anon_sym_POUND] = ACTIONS(3), - }, - [3061] = { - [sym_comment] = STATE(3061), - [anon_sym_export] = ACTIONS(6790), - [anon_sym_alias] = ACTIONS(6790), - [anon_sym_let] = ACTIONS(6790), - [anon_sym_let_DASHenv] = ACTIONS(6790), - [anon_sym_mut] = ACTIONS(6790), - [anon_sym_const] = ACTIONS(6790), - [anon_sym_SEMI] = ACTIONS(6790), - [sym_cmd_identifier] = ACTIONS(6790), - [anon_sym_LF] = ACTIONS(7042), - [anon_sym_def] = ACTIONS(6790), - [anon_sym_export_DASHenv] = ACTIONS(6790), - [anon_sym_extern] = ACTIONS(6790), - [anon_sym_module] = ACTIONS(6790), - [anon_sym_use] = ACTIONS(6790), - [anon_sym_LBRACK] = ACTIONS(6790), - [anon_sym_LPAREN] = ACTIONS(6790), - [anon_sym_DOLLAR] = ACTIONS(6790), - [anon_sym_error] = ACTIONS(6790), - [anon_sym_DASH] = ACTIONS(6790), - [anon_sym_break] = ACTIONS(6790), - [anon_sym_continue] = ACTIONS(6790), - [anon_sym_for] = ACTIONS(6790), - [anon_sym_loop] = ACTIONS(6790), - [anon_sym_while] = ACTIONS(6790), - [anon_sym_do] = ACTIONS(6790), - [anon_sym_if] = ACTIONS(6790), - [anon_sym_match] = ACTIONS(6790), - [anon_sym_LBRACE] = ACTIONS(6790), - [anon_sym_DOT_DOT] = ACTIONS(6790), - [anon_sym_try] = ACTIONS(6790), - [anon_sym_return] = ACTIONS(6790), - [anon_sym_source] = ACTIONS(6790), - [anon_sym_source_DASHenv] = ACTIONS(6790), - [anon_sym_register] = ACTIONS(6790), - [anon_sym_hide] = ACTIONS(6790), - [anon_sym_hide_DASHenv] = ACTIONS(6790), - [anon_sym_overlay] = ACTIONS(6790), - [anon_sym_where] = ACTIONS(6790), - [anon_sym_not] = ACTIONS(6790), - [anon_sym_DOT_DOT_EQ] = ACTIONS(6790), - [anon_sym_DOT_DOT_LT] = ACTIONS(6790), - [anon_sym_null] = ACTIONS(6790), - [anon_sym_true] = ACTIONS(6790), - [anon_sym_false] = ACTIONS(6790), - [aux_sym__val_number_decimal_token1] = ACTIONS(6790), - [aux_sym__val_number_decimal_token2] = ACTIONS(6790), - [anon_sym_DOT2] = ACTIONS(6790), - [aux_sym__val_number_decimal_token3] = ACTIONS(6790), - [aux_sym__val_number_token1] = ACTIONS(6790), - [aux_sym__val_number_token2] = ACTIONS(6790), - [aux_sym__val_number_token3] = ACTIONS(6790), - [aux_sym__val_number_token4] = ACTIONS(6790), - [aux_sym__val_number_token5] = ACTIONS(6790), - [aux_sym__val_number_token6] = ACTIONS(6790), - [anon_sym_0b] = ACTIONS(6790), - [anon_sym_0o] = ACTIONS(6790), - [anon_sym_0x] = ACTIONS(6790), - [sym_val_date] = ACTIONS(6790), - [anon_sym_DQUOTE] = ACTIONS(6790), - [sym__str_single_quotes] = ACTIONS(6790), - [sym__str_back_ticks] = ACTIONS(6790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6790), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6790), - [anon_sym_CARET] = ACTIONS(6790), - [anon_sym_POUND] = ACTIONS(113), - }, - [3062] = { - [sym_comment] = STATE(3062), - [anon_sym_SEMI] = ACTIONS(1362), - [anon_sym_LF] = ACTIONS(1364), - [anon_sym_LBRACK] = ACTIONS(1362), - [anon_sym_LPAREN] = ACTIONS(1362), - [anon_sym_RPAREN] = ACTIONS(1362), - [anon_sym_PIPE] = ACTIONS(1362), - [anon_sym_DOLLAR] = ACTIONS(1362), - [anon_sym_GT] = ACTIONS(1362), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_in] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_RBRACE] = ACTIONS(1362), - [anon_sym_DOT_DOT] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_STAR_STAR] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_SLASH] = ACTIONS(1362), - [anon_sym_mod] = ACTIONS(1362), - [anon_sym_SLASH_SLASH] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_bit_DASHshl] = ACTIONS(1362), - [anon_sym_bit_DASHshr] = ACTIONS(1362), - [anon_sym_EQ_EQ] = ACTIONS(1362), - [anon_sym_BANG_EQ] = ACTIONS(1362), - [anon_sym_LT2] = ACTIONS(1362), - [anon_sym_LT_EQ] = ACTIONS(1362), - [anon_sym_GT_EQ] = ACTIONS(1362), - [anon_sym_not_DASHin] = ACTIONS(1362), - [anon_sym_starts_DASHwith] = ACTIONS(1362), - [anon_sym_ends_DASHwith] = ACTIONS(1362), - [anon_sym_EQ_TILDE] = ACTIONS(1362), - [anon_sym_BANG_TILDE] = ACTIONS(1362), - [anon_sym_bit_DASHand] = ACTIONS(1362), - [anon_sym_bit_DASHxor] = ACTIONS(1362), - [anon_sym_bit_DASHor] = ACTIONS(1362), - [anon_sym_and] = ACTIONS(1362), - [anon_sym_xor] = ACTIONS(1362), - [anon_sym_or] = ACTIONS(1362), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1362), - [anon_sym_DOT_DOT_LT] = ACTIONS(1362), - [anon_sym_null] = ACTIONS(1362), - [anon_sym_true] = ACTIONS(1362), - [anon_sym_false] = ACTIONS(1362), - [aux_sym__val_number_decimal_token1] = ACTIONS(1362), - [aux_sym__val_number_decimal_token2] = ACTIONS(1362), - [anon_sym_DOT2] = ACTIONS(1362), - [aux_sym__val_number_decimal_token3] = ACTIONS(1362), - [aux_sym__val_number_token1] = ACTIONS(1362), - [aux_sym__val_number_token2] = ACTIONS(1362), - [aux_sym__val_number_token3] = ACTIONS(1362), - [aux_sym__val_number_token4] = ACTIONS(1362), - [aux_sym__val_number_token5] = ACTIONS(1362), - [aux_sym__val_number_token6] = ACTIONS(1362), - [anon_sym_0b] = ACTIONS(1362), - [anon_sym_0o] = ACTIONS(1362), - [anon_sym_0x] = ACTIONS(1362), - [sym_val_date] = ACTIONS(1362), - [anon_sym_DQUOTE] = ACTIONS(1362), - [sym__str_single_quotes] = ACTIONS(1362), - [sym__str_back_ticks] = ACTIONS(1362), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1362), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1362), - [anon_sym_POUND] = ACTIONS(113), - }, - [3063] = { - [sym_comment] = STATE(3063), - [anon_sym_export] = ACTIONS(7044), - [anon_sym_alias] = ACTIONS(7044), - [anon_sym_let] = ACTIONS(7044), - [anon_sym_let_DASHenv] = ACTIONS(7044), - [anon_sym_mut] = ACTIONS(7044), - [anon_sym_const] = ACTIONS(7044), - [anon_sym_SEMI] = ACTIONS(7044), - [sym_cmd_identifier] = ACTIONS(7044), - [anon_sym_LF] = ACTIONS(7046), - [anon_sym_def] = ACTIONS(7044), - [anon_sym_export_DASHenv] = ACTIONS(7044), - [anon_sym_extern] = ACTIONS(7044), - [anon_sym_module] = ACTIONS(7044), - [anon_sym_use] = ACTIONS(7044), - [anon_sym_LBRACK] = ACTIONS(7044), - [anon_sym_LPAREN] = ACTIONS(7044), - [anon_sym_DOLLAR] = ACTIONS(7044), - [anon_sym_error] = ACTIONS(7044), - [anon_sym_DASH] = ACTIONS(7044), - [anon_sym_break] = ACTIONS(7044), - [anon_sym_continue] = ACTIONS(7044), - [anon_sym_for] = ACTIONS(7044), - [anon_sym_loop] = ACTIONS(7044), - [anon_sym_while] = ACTIONS(7044), - [anon_sym_do] = ACTIONS(7044), - [anon_sym_if] = ACTIONS(7044), - [anon_sym_match] = ACTIONS(7044), - [anon_sym_LBRACE] = ACTIONS(7044), - [anon_sym_DOT_DOT] = ACTIONS(7044), - [anon_sym_try] = ACTIONS(7044), - [anon_sym_return] = ACTIONS(7044), - [anon_sym_source] = ACTIONS(7044), - [anon_sym_source_DASHenv] = ACTIONS(7044), - [anon_sym_register] = ACTIONS(7044), - [anon_sym_hide] = ACTIONS(7044), - [anon_sym_hide_DASHenv] = ACTIONS(7044), - [anon_sym_overlay] = ACTIONS(7044), - [anon_sym_where] = ACTIONS(7044), - [anon_sym_not] = ACTIONS(7044), - [anon_sym_DOT_DOT_EQ] = ACTIONS(7044), - [anon_sym_DOT_DOT_LT] = ACTIONS(7044), - [anon_sym_null] = ACTIONS(7044), - [anon_sym_true] = ACTIONS(7044), - [anon_sym_false] = ACTIONS(7044), - [aux_sym__val_number_decimal_token1] = ACTIONS(7044), - [aux_sym__val_number_decimal_token2] = ACTIONS(7044), - [anon_sym_DOT2] = ACTIONS(7044), - [aux_sym__val_number_decimal_token3] = ACTIONS(7044), - [aux_sym__val_number_token1] = ACTIONS(7044), - [aux_sym__val_number_token2] = ACTIONS(7044), - [aux_sym__val_number_token3] = ACTIONS(7044), - [aux_sym__val_number_token4] = ACTIONS(7044), - [aux_sym__val_number_token5] = ACTIONS(7044), - [aux_sym__val_number_token6] = ACTIONS(7044), - [anon_sym_0b] = ACTIONS(7044), - [anon_sym_0o] = ACTIONS(7044), - [anon_sym_0x] = ACTIONS(7044), - [sym_val_date] = ACTIONS(7044), - [anon_sym_DQUOTE] = ACTIONS(7044), - [sym__str_single_quotes] = ACTIONS(7044), - [sym__str_back_ticks] = ACTIONS(7044), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(7044), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(7044), - [anon_sym_CARET] = ACTIONS(7044), - [anon_sym_POUND] = ACTIONS(113), - }, - [3064] = { - [sym_comment] = STATE(3064), - [ts_builtin_sym_end] = ACTIONS(1249), - [anon_sym_SEMI] = ACTIONS(1247), - [anon_sym_LF] = ACTIONS(1249), - [anon_sym_LBRACK] = ACTIONS(1247), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_DOLLAR] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1247), - [anon_sym_in] = ACTIONS(1247), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_DOT_DOT] = ACTIONS(1247), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_STAR_STAR] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_mod] = ACTIONS(1247), - [anon_sym_SLASH_SLASH] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1247), - [anon_sym_bit_DASHshl] = ACTIONS(1247), - [anon_sym_bit_DASHshr] = ACTIONS(1247), - [anon_sym_EQ_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1247), - [anon_sym_LT2] = ACTIONS(1247), - [anon_sym_LT_EQ] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1247), - [anon_sym_not_DASHin] = ACTIONS(1247), - [anon_sym_starts_DASHwith] = ACTIONS(1247), - [anon_sym_ends_DASHwith] = ACTIONS(1247), - [anon_sym_EQ_TILDE] = ACTIONS(1247), - [anon_sym_BANG_TILDE] = ACTIONS(1247), - [anon_sym_bit_DASHand] = ACTIONS(1247), - [anon_sym_bit_DASHxor] = ACTIONS(1247), - [anon_sym_bit_DASHor] = ACTIONS(1247), - [anon_sym_and] = ACTIONS(1247), - [anon_sym_xor] = ACTIONS(1247), - [anon_sym_or] = ACTIONS(1247), - [anon_sym_not] = ACTIONS(1247), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1247), - [anon_sym_DOT_DOT_LT] = ACTIONS(1247), - [anon_sym_null] = ACTIONS(1247), - [anon_sym_true] = ACTIONS(1247), - [anon_sym_false] = ACTIONS(1247), - [aux_sym__val_number_decimal_token1] = ACTIONS(1247), - [aux_sym__val_number_decimal_token2] = ACTIONS(1247), - [anon_sym_DOT2] = ACTIONS(1247), - [aux_sym__val_number_decimal_token3] = ACTIONS(1247), - [aux_sym__val_number_token1] = ACTIONS(1247), - [aux_sym__val_number_token2] = ACTIONS(1247), - [aux_sym__val_number_token3] = ACTIONS(1247), - [aux_sym__val_number_token4] = ACTIONS(1247), - [aux_sym__val_number_token5] = ACTIONS(1247), - [aux_sym__val_number_token6] = ACTIONS(1247), - [anon_sym_0b] = ACTIONS(1247), - [anon_sym_0o] = ACTIONS(1247), - [anon_sym_0x] = ACTIONS(1247), - [sym_val_date] = ACTIONS(1247), - [anon_sym_DQUOTE] = ACTIONS(1247), - [sym__str_single_quotes] = ACTIONS(1247), - [sym__str_back_ticks] = ACTIONS(1247), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1247), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1247), - [aux_sym_unquoted_token6] = ACTIONS(1251), - [anon_sym_POUND] = ACTIONS(113), - }, - [3065] = { - [sym_comment] = STATE(3065), - [ts_builtin_sym_end] = ACTIONS(1378), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_PIPE] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(7048), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(7050), - [anon_sym_in] = ACTIONS(7052), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(7054), - [anon_sym_STAR_STAR] = ACTIONS(7056), - [anon_sym_PLUS_PLUS] = ACTIONS(7056), - [anon_sym_SLASH] = ACTIONS(7054), - [anon_sym_mod] = ACTIONS(7054), - [anon_sym_SLASH_SLASH] = ACTIONS(7054), - [anon_sym_PLUS] = ACTIONS(7050), - [anon_sym_bit_DASHshl] = ACTIONS(7058), - [anon_sym_bit_DASHshr] = ACTIONS(7058), - [anon_sym_EQ_EQ] = ACTIONS(7048), - [anon_sym_BANG_EQ] = ACTIONS(7048), - [anon_sym_LT2] = ACTIONS(7048), - [anon_sym_LT_EQ] = ACTIONS(7048), - [anon_sym_GT_EQ] = ACTIONS(7048), - [anon_sym_not_DASHin] = ACTIONS(7052), - [anon_sym_starts_DASHwith] = ACTIONS(7052), - [anon_sym_ends_DASHwith] = ACTIONS(7052), - [anon_sym_EQ_TILDE] = ACTIONS(7060), - [anon_sym_BANG_TILDE] = ACTIONS(7060), - [anon_sym_bit_DASHand] = ACTIONS(7062), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), - }, - [3066] = { - [sym_comment] = STATE(3066), - [ts_builtin_sym_end] = ACTIONS(1344), - [anon_sym_SEMI] = ACTIONS(1342), - [anon_sym_LF] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_PIPE] = ACTIONS(1342), - [anon_sym_DOLLAR] = ACTIONS(1342), - [anon_sym_GT] = ACTIONS(1342), - [anon_sym_DASH_DASH] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_in] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_DOT_DOT] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_STAR_STAR] = ACTIONS(1342), - [anon_sym_PLUS_PLUS] = ACTIONS(1342), - [anon_sym_SLASH] = ACTIONS(1342), - [anon_sym_mod] = ACTIONS(1342), - [anon_sym_SLASH_SLASH] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_bit_DASHshl] = ACTIONS(1342), - [anon_sym_bit_DASHshr] = ACTIONS(1342), - [anon_sym_EQ_EQ] = ACTIONS(1342), - [anon_sym_BANG_EQ] = ACTIONS(1342), - [anon_sym_LT2] = ACTIONS(1342), - [anon_sym_LT_EQ] = ACTIONS(1342), - [anon_sym_GT_EQ] = ACTIONS(1342), - [anon_sym_not_DASHin] = ACTIONS(1342), - [anon_sym_starts_DASHwith] = ACTIONS(1342), - [anon_sym_ends_DASHwith] = ACTIONS(1342), - [anon_sym_EQ_TILDE] = ACTIONS(1342), - [anon_sym_BANG_TILDE] = ACTIONS(1342), - [anon_sym_bit_DASHand] = ACTIONS(1342), - [anon_sym_bit_DASHxor] = ACTIONS(1342), - [anon_sym_bit_DASHor] = ACTIONS(1342), - [anon_sym_and] = ACTIONS(1342), - [anon_sym_xor] = ACTIONS(1342), - [anon_sym_or] = ACTIONS(1342), - [anon_sym_not] = ACTIONS(1342), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1342), - [anon_sym_DOT_DOT_LT] = ACTIONS(1342), - [anon_sym_null] = ACTIONS(1342), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym__val_number_decimal_token1] = ACTIONS(1342), - [aux_sym__val_number_decimal_token2] = ACTIONS(1342), - [anon_sym_DOT2] = ACTIONS(1342), - [aux_sym__val_number_decimal_token3] = ACTIONS(1342), - [aux_sym__val_number_token1] = ACTIONS(1342), - [aux_sym__val_number_token2] = ACTIONS(1342), - [aux_sym__val_number_token3] = ACTIONS(1342), - [aux_sym__val_number_token4] = ACTIONS(1342), - [aux_sym__val_number_token5] = ACTIONS(1342), - [aux_sym__val_number_token6] = ACTIONS(1342), - [anon_sym_0b] = ACTIONS(1342), - [anon_sym_0o] = ACTIONS(1342), - [anon_sym_0x] = ACTIONS(1342), - [sym_val_date] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [sym__str_single_quotes] = ACTIONS(1342), - [sym__str_back_ticks] = ACTIONS(1342), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1342), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1342), - [anon_sym_POUND] = ACTIONS(113), - }, - [3067] = { - [sym_comment] = STATE(3067), - [ts_builtin_sym_end] = ACTIONS(1348), - [anon_sym_SEMI] = ACTIONS(1346), - [anon_sym_LF] = ACTIONS(1348), - [anon_sym_LBRACK] = ACTIONS(1346), - [anon_sym_LPAREN] = ACTIONS(1346), - [anon_sym_PIPE] = ACTIONS(1346), - [anon_sym_DOLLAR] = ACTIONS(1346), - [anon_sym_GT] = ACTIONS(1346), - [anon_sym_DASH_DASH] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_in] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_DOT_DOT] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_STAR_STAR] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1346), - [anon_sym_SLASH] = ACTIONS(1346), - [anon_sym_mod] = ACTIONS(1346), - [anon_sym_SLASH_SLASH] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_bit_DASHshl] = ACTIONS(1346), - [anon_sym_bit_DASHshr] = ACTIONS(1346), - [anon_sym_EQ_EQ] = ACTIONS(1346), - [anon_sym_BANG_EQ] = ACTIONS(1346), - [anon_sym_LT2] = ACTIONS(1346), - [anon_sym_LT_EQ] = ACTIONS(1346), - [anon_sym_GT_EQ] = ACTIONS(1346), - [anon_sym_not_DASHin] = ACTIONS(1346), - [anon_sym_starts_DASHwith] = ACTIONS(1346), - [anon_sym_ends_DASHwith] = ACTIONS(1346), - [anon_sym_EQ_TILDE] = ACTIONS(1346), - [anon_sym_BANG_TILDE] = ACTIONS(1346), - [anon_sym_bit_DASHand] = ACTIONS(1346), - [anon_sym_bit_DASHxor] = ACTIONS(1346), - [anon_sym_bit_DASHor] = ACTIONS(1346), - [anon_sym_and] = ACTIONS(1346), - [anon_sym_xor] = ACTIONS(1346), - [anon_sym_or] = ACTIONS(1346), - [anon_sym_not] = ACTIONS(1346), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1346), - [anon_sym_DOT_DOT_LT] = ACTIONS(1346), - [anon_sym_null] = ACTIONS(1346), - [anon_sym_true] = ACTIONS(1346), - [anon_sym_false] = ACTIONS(1346), - [aux_sym__val_number_decimal_token1] = ACTIONS(1346), - [aux_sym__val_number_decimal_token2] = ACTIONS(1346), - [anon_sym_DOT2] = ACTIONS(1346), - [aux_sym__val_number_decimal_token3] = ACTIONS(1346), - [aux_sym__val_number_token1] = ACTIONS(1346), - [aux_sym__val_number_token2] = ACTIONS(1346), - [aux_sym__val_number_token3] = ACTIONS(1346), - [aux_sym__val_number_token4] = ACTIONS(1346), - [aux_sym__val_number_token5] = ACTIONS(1346), - [aux_sym__val_number_token6] = ACTIONS(1346), - [anon_sym_0b] = ACTIONS(1346), - [anon_sym_0o] = ACTIONS(1346), - [anon_sym_0x] = ACTIONS(1346), - [sym_val_date] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym__str_single_quotes] = ACTIONS(1346), - [sym__str_back_ticks] = ACTIONS(1346), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1346), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1346), - [anon_sym_POUND] = ACTIONS(113), - }, - [3068] = { - [sym_comment] = STATE(3068), - [ts_builtin_sym_end] = ACTIONS(1364), - [anon_sym_SEMI] = ACTIONS(1362), - [anon_sym_LF] = ACTIONS(1364), - [anon_sym_LBRACK] = ACTIONS(1362), - [anon_sym_LPAREN] = ACTIONS(1362), - [anon_sym_PIPE] = ACTIONS(1362), - [anon_sym_DOLLAR] = ACTIONS(1362), - [anon_sym_GT] = ACTIONS(1362), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_in] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_DOT_DOT] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_STAR_STAR] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_SLASH] = ACTIONS(1362), - [anon_sym_mod] = ACTIONS(1362), - [anon_sym_SLASH_SLASH] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_bit_DASHshl] = ACTIONS(1362), - [anon_sym_bit_DASHshr] = ACTIONS(1362), - [anon_sym_EQ_EQ] = ACTIONS(1362), - [anon_sym_BANG_EQ] = ACTIONS(1362), - [anon_sym_LT2] = ACTIONS(1362), - [anon_sym_LT_EQ] = ACTIONS(1362), - [anon_sym_GT_EQ] = ACTIONS(1362), - [anon_sym_not_DASHin] = ACTIONS(1362), - [anon_sym_starts_DASHwith] = ACTIONS(1362), - [anon_sym_ends_DASHwith] = ACTIONS(1362), - [anon_sym_EQ_TILDE] = ACTIONS(1362), - [anon_sym_BANG_TILDE] = ACTIONS(1362), - [anon_sym_bit_DASHand] = ACTIONS(1362), - [anon_sym_bit_DASHxor] = ACTIONS(1362), - [anon_sym_bit_DASHor] = ACTIONS(1362), - [anon_sym_and] = ACTIONS(1362), - [anon_sym_xor] = ACTIONS(1362), - [anon_sym_or] = ACTIONS(1362), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1362), - [anon_sym_DOT_DOT_LT] = ACTIONS(1362), - [anon_sym_null] = ACTIONS(1362), - [anon_sym_true] = ACTIONS(1362), - [anon_sym_false] = ACTIONS(1362), - [aux_sym__val_number_decimal_token1] = ACTIONS(1362), - [aux_sym__val_number_decimal_token2] = ACTIONS(1362), - [anon_sym_DOT2] = ACTIONS(1362), - [aux_sym__val_number_decimal_token3] = ACTIONS(1362), - [aux_sym__val_number_token1] = ACTIONS(1362), - [aux_sym__val_number_token2] = ACTIONS(1362), - [aux_sym__val_number_token3] = ACTIONS(1362), - [aux_sym__val_number_token4] = ACTIONS(1362), - [aux_sym__val_number_token5] = ACTIONS(1362), - [aux_sym__val_number_token6] = ACTIONS(1362), - [anon_sym_0b] = ACTIONS(1362), - [anon_sym_0o] = ACTIONS(1362), - [anon_sym_0x] = ACTIONS(1362), - [sym_val_date] = ACTIONS(1362), - [anon_sym_DQUOTE] = ACTIONS(1362), - [sym__str_single_quotes] = ACTIONS(1362), - [sym__str_back_ticks] = ACTIONS(1362), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1362), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1362), - [anon_sym_POUND] = ACTIONS(113), - }, - [3069] = { - [sym_comment] = STATE(3069), - [ts_builtin_sym_end] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_LF] = ACTIONS(1296), - [anon_sym_LBRACK] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1294), - [anon_sym_PIPE] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_in] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_DOT_DOT] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_STAR_STAR] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_mod] = ACTIONS(1294), - [anon_sym_SLASH_SLASH] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_bit_DASHshl] = ACTIONS(1294), - [anon_sym_bit_DASHshr] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_LT2] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_not_DASHin] = ACTIONS(1294), - [anon_sym_starts_DASHwith] = ACTIONS(1294), - [anon_sym_ends_DASHwith] = ACTIONS(1294), - [anon_sym_EQ_TILDE] = ACTIONS(1294), - [anon_sym_BANG_TILDE] = ACTIONS(1294), - [anon_sym_bit_DASHand] = ACTIONS(1294), - [anon_sym_bit_DASHxor] = ACTIONS(1294), - [anon_sym_bit_DASHor] = ACTIONS(1294), - [anon_sym_and] = ACTIONS(1294), - [anon_sym_xor] = ACTIONS(1294), - [anon_sym_or] = ACTIONS(1294), - [anon_sym_not] = ACTIONS(1294), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1294), - [anon_sym_DOT_DOT_LT] = ACTIONS(1294), - [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(1294), - [anon_sym_DOT2] = ACTIONS(1294), - [aux_sym__val_number_decimal_token3] = ACTIONS(1294), - [aux_sym__val_number_token1] = ACTIONS(1294), - [aux_sym__val_number_token2] = ACTIONS(1294), - [aux_sym__val_number_token3] = ACTIONS(1294), - [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(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym__str_single_quotes] = ACTIONS(1294), - [sym__str_back_ticks] = ACTIONS(1294), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1294), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1294), - [anon_sym_POUND] = ACTIONS(113), - }, - [3070] = { - [sym_comment] = STATE(3070), - [anon_sym_LBRACK] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1061), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_QMARK2] = ACTIONS(1061), - [anon_sym_STAR_STAR] = ACTIONS(1061), - [anon_sym_PLUS_PLUS] = ACTIONS(1061), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_mod] = ACTIONS(1061), - [anon_sym_SLASH_SLASH] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_bit_DASHshl] = ACTIONS(1061), - [anon_sym_bit_DASHshr] = ACTIONS(1061), - [anon_sym_EQ_EQ] = ACTIONS(1061), - [anon_sym_BANG_EQ] = ACTIONS(1061), - [anon_sym_LT2] = ACTIONS(1059), - [anon_sym_LT_EQ] = ACTIONS(1061), - [anon_sym_GT_EQ] = ACTIONS(1061), - [anon_sym_not_DASHin] = ACTIONS(1061), - [anon_sym_starts_DASHwith] = ACTIONS(1061), - [anon_sym_ends_DASHwith] = ACTIONS(1061), - [anon_sym_EQ_TILDE] = ACTIONS(1061), - [anon_sym_BANG_TILDE] = ACTIONS(1061), - [anon_sym_bit_DASHand] = ACTIONS(1061), - [anon_sym_bit_DASHxor] = ACTIONS(1061), - [anon_sym_bit_DASHor] = ACTIONS(1061), - [anon_sym_and] = ACTIONS(1061), - [anon_sym_xor] = ACTIONS(1061), - [anon_sym_or] = ACTIONS(1061), - [anon_sym_not] = ACTIONS(1059), - [anon_sym_DOT_DOT2] = ACTIONS(1059), - [anon_sym_DOT] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1059), - [anon_sym_DOT_DOT_LT] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1061), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1061), - [anon_sym_null] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), - [aux_sym__val_number_decimal_token1] = ACTIONS(1059), - [aux_sym__val_number_decimal_token2] = ACTIONS(1061), - [anon_sym_DOT2] = ACTIONS(1059), - [aux_sym__val_number_decimal_token3] = ACTIONS(1061), - [aux_sym__val_number_token1] = ACTIONS(1061), - [aux_sym__val_number_token2] = ACTIONS(1061), - [aux_sym__val_number_token3] = ACTIONS(1061), - [aux_sym__val_number_token4] = ACTIONS(1061), - [aux_sym__val_number_token5] = ACTIONS(1061), - [aux_sym__val_number_token6] = ACTIONS(1061), - [anon_sym_0b] = ACTIONS(1059), - [anon_sym_0o] = ACTIONS(1059), - [anon_sym_0x] = ACTIONS(1059), - [sym_val_date] = ACTIONS(1061), - [anon_sym_DQUOTE] = ACTIONS(1061), - [sym__str_single_quotes] = ACTIONS(1061), - [sym__str_back_ticks] = ACTIONS(1061), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1061), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1061), + [2700] = { + [sym_comment] = STATE(2700), + [ts_builtin_sym_end] = ACTIONS(6654), + [anon_sym_export] = ACTIONS(6656), + [anon_sym_alias] = ACTIONS(6656), + [anon_sym_let] = ACTIONS(6656), + [anon_sym_let_DASHenv] = ACTIONS(6656), + [anon_sym_mut] = ACTIONS(6656), + [anon_sym_const] = ACTIONS(6656), + [sym_cmd_identifier] = ACTIONS(6656), + [anon_sym_def] = ACTIONS(6656), + [anon_sym_export_DASHenv] = ACTIONS(6656), + [anon_sym_extern] = ACTIONS(6656), + [anon_sym_module] = ACTIONS(6656), + [anon_sym_use] = ACTIONS(6656), + [anon_sym_LBRACK] = ACTIONS(6654), + [anon_sym_LPAREN] = ACTIONS(6654), + [anon_sym_DOLLAR] = ACTIONS(6656), + [anon_sym_error] = ACTIONS(6656), + [anon_sym_DASH] = ACTIONS(6656), + [anon_sym_break] = ACTIONS(6656), + [anon_sym_continue] = ACTIONS(6656), + [anon_sym_for] = ACTIONS(6656), + [anon_sym_loop] = ACTIONS(6656), + [anon_sym_while] = ACTIONS(6656), + [anon_sym_do] = ACTIONS(6656), + [anon_sym_if] = ACTIONS(6656), + [anon_sym_match] = ACTIONS(6656), + [anon_sym_LBRACE] = ACTIONS(6654), + [anon_sym_DOT_DOT] = ACTIONS(6656), + [anon_sym_try] = ACTIONS(6656), + [anon_sym_return] = ACTIONS(6656), + [anon_sym_source] = ACTIONS(6656), + [anon_sym_source_DASHenv] = ACTIONS(6656), + [anon_sym_register] = ACTIONS(6656), + [anon_sym_hide] = ACTIONS(6656), + [anon_sym_hide_DASHenv] = ACTIONS(6656), + [anon_sym_overlay] = ACTIONS(6656), + [anon_sym_where] = ACTIONS(6656), + [anon_sym_not] = ACTIONS(6656), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6654), + [anon_sym_DOT_DOT_LT] = ACTIONS(6654), + [anon_sym_null] = ACTIONS(6656), + [anon_sym_true] = ACTIONS(6656), + [anon_sym_false] = ACTIONS(6656), + [aux_sym__val_number_decimal_token1] = ACTIONS(6656), + [aux_sym__val_number_decimal_token2] = ACTIONS(6654), + [anon_sym_DOT2] = ACTIONS(6656), + [aux_sym__val_number_decimal_token3] = ACTIONS(6654), + [aux_sym__val_number_token1] = ACTIONS(6654), + [aux_sym__val_number_token2] = ACTIONS(6654), + [aux_sym__val_number_token3] = ACTIONS(6654), + [aux_sym__val_number_token4] = ACTIONS(6656), + [aux_sym__val_number_token5] = ACTIONS(6654), + [aux_sym__val_number_token6] = ACTIONS(6656), + [anon_sym_0b] = ACTIONS(6656), + [anon_sym_0o] = ACTIONS(6656), + [anon_sym_0x] = ACTIONS(6656), + [sym_val_date] = ACTIONS(6654), + [anon_sym_DQUOTE] = ACTIONS(6654), + [sym__str_single_quotes] = ACTIONS(6654), + [sym__str_back_ticks] = ACTIONS(6654), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(6654), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6654), + [anon_sym_CARET] = ACTIONS(6654), [anon_sym_POUND] = ACTIONS(3), }, - [3071] = { - [sym_comment] = STATE(3071), - [ts_builtin_sym_end] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_LF] = ACTIONS(1296), - [anon_sym_LBRACK] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1294), - [anon_sym_PIPE] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_in] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_DOT_DOT] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_STAR_STAR] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_mod] = ACTIONS(1294), - [anon_sym_SLASH_SLASH] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_bit_DASHshl] = ACTIONS(1294), - [anon_sym_bit_DASHshr] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_LT2] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_not_DASHin] = ACTIONS(1294), - [anon_sym_starts_DASHwith] = ACTIONS(1294), - [anon_sym_ends_DASHwith] = ACTIONS(1294), - [anon_sym_EQ_TILDE] = ACTIONS(1294), - [anon_sym_BANG_TILDE] = ACTIONS(1294), - [anon_sym_bit_DASHand] = ACTIONS(1294), - [anon_sym_bit_DASHxor] = ACTIONS(1294), - [anon_sym_bit_DASHor] = ACTIONS(1294), - [anon_sym_and] = ACTIONS(1294), - [anon_sym_xor] = ACTIONS(1294), - [anon_sym_or] = ACTIONS(1294), - [anon_sym_not] = ACTIONS(1294), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1294), - [anon_sym_DOT_DOT_LT] = ACTIONS(1294), - [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(1294), - [anon_sym_DOT2] = ACTIONS(1294), - [aux_sym__val_number_decimal_token3] = ACTIONS(1294), - [aux_sym__val_number_token1] = ACTIONS(1294), - [aux_sym__val_number_token2] = ACTIONS(1294), - [aux_sym__val_number_token3] = ACTIONS(1294), - [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(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym__str_single_quotes] = ACTIONS(1294), - [sym__str_back_ticks] = ACTIONS(1294), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1294), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1294), - [anon_sym_POUND] = ACTIONS(113), - }, - [3072] = { - [sym_comment] = STATE(3072), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_LPAREN] = ACTIONS(1065), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(1065), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_QMARK2] = ACTIONS(1065), - [anon_sym_STAR_STAR] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_SLASH] = ACTIONS(1063), - [anon_sym_mod] = ACTIONS(1065), - [anon_sym_SLASH_SLASH] = ACTIONS(1065), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_bit_DASHshl] = ACTIONS(1065), - [anon_sym_bit_DASHshr] = ACTIONS(1065), - [anon_sym_EQ_EQ] = ACTIONS(1065), - [anon_sym_BANG_EQ] = ACTIONS(1065), - [anon_sym_LT2] = ACTIONS(1063), - [anon_sym_LT_EQ] = ACTIONS(1065), - [anon_sym_GT_EQ] = ACTIONS(1065), - [anon_sym_not_DASHin] = ACTIONS(1065), - [anon_sym_starts_DASHwith] = ACTIONS(1065), - [anon_sym_ends_DASHwith] = ACTIONS(1065), - [anon_sym_EQ_TILDE] = ACTIONS(1065), - [anon_sym_BANG_TILDE] = ACTIONS(1065), - [anon_sym_bit_DASHand] = ACTIONS(1065), - [anon_sym_bit_DASHxor] = ACTIONS(1065), - [anon_sym_bit_DASHor] = ACTIONS(1065), - [anon_sym_and] = ACTIONS(1065), - [anon_sym_xor] = ACTIONS(1065), - [anon_sym_or] = ACTIONS(1065), - [anon_sym_not] = ACTIONS(1063), - [anon_sym_DOT_DOT2] = ACTIONS(1063), - [anon_sym_DOT] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1063), - [anon_sym_DOT_DOT_LT] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1065), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1065), - [anon_sym_null] = ACTIONS(1065), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [aux_sym__val_number_decimal_token1] = ACTIONS(1063), - [aux_sym__val_number_decimal_token2] = ACTIONS(1065), - [anon_sym_DOT2] = ACTIONS(1063), - [aux_sym__val_number_decimal_token3] = ACTIONS(1065), - [aux_sym__val_number_token1] = ACTIONS(1065), - [aux_sym__val_number_token2] = ACTIONS(1065), - [aux_sym__val_number_token3] = ACTIONS(1065), - [aux_sym__val_number_token4] = ACTIONS(1065), - [aux_sym__val_number_token5] = ACTIONS(1065), - [aux_sym__val_number_token6] = ACTIONS(1065), - [anon_sym_0b] = ACTIONS(1063), - [anon_sym_0o] = ACTIONS(1063), - [anon_sym_0x] = ACTIONS(1063), - [sym_val_date] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(1065), - [sym__str_single_quotes] = ACTIONS(1065), - [sym__str_back_ticks] = ACTIONS(1065), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1065), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1065), - [anon_sym_POUND] = ACTIONS(3), - }, - [3073] = { - [sym_comment] = STATE(3073), - [ts_builtin_sym_end] = ACTIONS(1282), - [anon_sym_SEMI] = ACTIONS(1280), - [anon_sym_LF] = ACTIONS(1282), - [anon_sym_LBRACK] = ACTIONS(1280), - [anon_sym_LPAREN] = ACTIONS(1280), - [anon_sym_PIPE] = ACTIONS(1280), - [anon_sym_DOLLAR] = ACTIONS(1280), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_DASH_DASH] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_in] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1280), - [anon_sym_DOT_DOT] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1280), - [anon_sym_STAR_STAR] = ACTIONS(1280), - [anon_sym_PLUS_PLUS] = ACTIONS(1280), - [anon_sym_SLASH] = ACTIONS(1280), - [anon_sym_mod] = ACTIONS(1280), - [anon_sym_SLASH_SLASH] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_bit_DASHshl] = ACTIONS(1280), - [anon_sym_bit_DASHshr] = ACTIONS(1280), - [anon_sym_EQ_EQ] = ACTIONS(1280), - [anon_sym_BANG_EQ] = ACTIONS(1280), - [anon_sym_LT2] = ACTIONS(1280), - [anon_sym_LT_EQ] = ACTIONS(1280), - [anon_sym_GT_EQ] = ACTIONS(1280), - [anon_sym_not_DASHin] = ACTIONS(1280), - [anon_sym_starts_DASHwith] = ACTIONS(1280), - [anon_sym_ends_DASHwith] = ACTIONS(1280), - [anon_sym_EQ_TILDE] = ACTIONS(1280), - [anon_sym_BANG_TILDE] = ACTIONS(1280), - [anon_sym_bit_DASHand] = ACTIONS(1280), - [anon_sym_bit_DASHxor] = ACTIONS(1280), - [anon_sym_bit_DASHor] = ACTIONS(1280), - [anon_sym_and] = ACTIONS(1280), - [anon_sym_xor] = ACTIONS(1280), - [anon_sym_or] = ACTIONS(1280), - [anon_sym_not] = ACTIONS(1280), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1280), - [anon_sym_DOT_DOT_LT] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1280), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [aux_sym__val_number_decimal_token1] = ACTIONS(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1280), - [anon_sym_DOT2] = ACTIONS(1280), - [aux_sym__val_number_decimal_token3] = ACTIONS(1280), - [aux_sym__val_number_token1] = ACTIONS(1280), - [aux_sym__val_number_token2] = ACTIONS(1280), - [aux_sym__val_number_token3] = ACTIONS(1280), - [aux_sym__val_number_token4] = ACTIONS(1280), - [aux_sym__val_number_token5] = ACTIONS(1280), - [aux_sym__val_number_token6] = ACTIONS(1280), - [anon_sym_0b] = ACTIONS(1280), - [anon_sym_0o] = ACTIONS(1280), - [anon_sym_0x] = ACTIONS(1280), - [sym_val_date] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1280), - [sym__str_single_quotes] = ACTIONS(1280), - [sym__str_back_ticks] = ACTIONS(1280), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1280), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1280), - [anon_sym_POUND] = ACTIONS(113), - }, - [3074] = { - [sym_comment] = STATE(3074), - [ts_builtin_sym_end] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1298), - [anon_sym_LF] = ACTIONS(1300), - [anon_sym_LBRACK] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1298), - [anon_sym_PIPE] = ACTIONS(1298), - [anon_sym_DOLLAR] = ACTIONS(1298), - [anon_sym_GT] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_in] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_DOT_DOT] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_STAR_STAR] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1298), - [anon_sym_SLASH] = ACTIONS(1298), - [anon_sym_mod] = ACTIONS(1298), - [anon_sym_SLASH_SLASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_bit_DASHshl] = ACTIONS(1298), - [anon_sym_bit_DASHshr] = ACTIONS(1298), - [anon_sym_EQ_EQ] = ACTIONS(1298), - [anon_sym_BANG_EQ] = ACTIONS(1298), - [anon_sym_LT2] = ACTIONS(1298), - [anon_sym_LT_EQ] = ACTIONS(1298), - [anon_sym_GT_EQ] = ACTIONS(1298), - [anon_sym_not_DASHin] = ACTIONS(1298), - [anon_sym_starts_DASHwith] = ACTIONS(1298), - [anon_sym_ends_DASHwith] = ACTIONS(1298), - [anon_sym_EQ_TILDE] = ACTIONS(1298), - [anon_sym_BANG_TILDE] = ACTIONS(1298), - [anon_sym_bit_DASHand] = ACTIONS(1298), - [anon_sym_bit_DASHxor] = ACTIONS(1298), - [anon_sym_bit_DASHor] = ACTIONS(1298), - [anon_sym_and] = ACTIONS(1298), - [anon_sym_xor] = ACTIONS(1298), - [anon_sym_or] = ACTIONS(1298), - [anon_sym_not] = ACTIONS(1298), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1298), - [anon_sym_DOT_DOT_LT] = ACTIONS(1298), - [anon_sym_null] = ACTIONS(1298), - [anon_sym_true] = ACTIONS(1298), - [anon_sym_false] = ACTIONS(1298), - [aux_sym__val_number_decimal_token1] = ACTIONS(1298), - [aux_sym__val_number_decimal_token2] = ACTIONS(1298), - [anon_sym_DOT2] = ACTIONS(1298), - [aux_sym__val_number_decimal_token3] = 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(1298), - [aux_sym__val_number_token5] = ACTIONS(1298), - [aux_sym__val_number_token6] = ACTIONS(1298), - [anon_sym_0b] = ACTIONS(1298), - [anon_sym_0o] = ACTIONS(1298), - [anon_sym_0x] = ACTIONS(1298), - [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_POUND] = ACTIONS(113), - }, - [3075] = { - [sym_comment] = STATE(3075), - [ts_builtin_sym_end] = ACTIONS(1310), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym_LF] = ACTIONS(1310), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_LPAREN] = ACTIONS(1308), - [anon_sym_PIPE] = ACTIONS(1308), - [anon_sym_DOLLAR] = ACTIONS(1308), - [anon_sym_GT] = ACTIONS(1308), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_in] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_DOT_DOT] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_STAR_STAR] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(1308), - [anon_sym_mod] = ACTIONS(1308), - [anon_sym_SLASH_SLASH] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_bit_DASHshl] = ACTIONS(1308), - [anon_sym_bit_DASHshr] = ACTIONS(1308), - [anon_sym_EQ_EQ] = ACTIONS(1308), - [anon_sym_BANG_EQ] = ACTIONS(1308), - [anon_sym_LT2] = ACTIONS(1308), - [anon_sym_LT_EQ] = ACTIONS(1308), - [anon_sym_GT_EQ] = ACTIONS(1308), - [anon_sym_not_DASHin] = ACTIONS(1308), - [anon_sym_starts_DASHwith] = ACTIONS(1308), - [anon_sym_ends_DASHwith] = ACTIONS(1308), - [anon_sym_EQ_TILDE] = ACTIONS(1308), - [anon_sym_BANG_TILDE] = ACTIONS(1308), - [anon_sym_bit_DASHand] = ACTIONS(1308), - [anon_sym_bit_DASHxor] = ACTIONS(1308), - [anon_sym_bit_DASHor] = ACTIONS(1308), - [anon_sym_and] = ACTIONS(1308), - [anon_sym_xor] = ACTIONS(1308), - [anon_sym_or] = ACTIONS(1308), - [anon_sym_not] = ACTIONS(1308), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1308), - [anon_sym_DOT_DOT_LT] = ACTIONS(1308), - [anon_sym_null] = ACTIONS(1308), - [anon_sym_true] = ACTIONS(1308), - [anon_sym_false] = ACTIONS(1308), - [aux_sym__val_number_decimal_token1] = ACTIONS(1308), - [aux_sym__val_number_decimal_token2] = ACTIONS(1308), - [anon_sym_DOT2] = ACTIONS(1308), - [aux_sym__val_number_decimal_token3] = ACTIONS(1308), - [aux_sym__val_number_token1] = ACTIONS(1308), - [aux_sym__val_number_token2] = ACTIONS(1308), - [aux_sym__val_number_token3] = ACTIONS(1308), - [aux_sym__val_number_token4] = ACTIONS(1308), - [aux_sym__val_number_token5] = ACTIONS(1308), - [aux_sym__val_number_token6] = ACTIONS(1308), - [anon_sym_0b] = ACTIONS(1308), - [anon_sym_0o] = ACTIONS(1308), - [anon_sym_0x] = ACTIONS(1308), - [sym_val_date] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym__str_single_quotes] = ACTIONS(1308), - [sym__str_back_ticks] = ACTIONS(1308), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1308), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1308), - [anon_sym_POUND] = ACTIONS(113), - }, - [3076] = { - [sym_comment] = STATE(3076), - [anon_sym_LBRACK] = ACTIONS(1072), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_in] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1072), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(7064), - [anon_sym_STAR_STAR] = ACTIONS(1072), - [anon_sym_PLUS_PLUS] = ACTIONS(1072), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_mod] = ACTIONS(1072), - [anon_sym_SLASH_SLASH] = ACTIONS(1072), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_bit_DASHshl] = ACTIONS(1072), - [anon_sym_bit_DASHshr] = ACTIONS(1072), - [anon_sym_EQ_EQ] = ACTIONS(1072), - [anon_sym_BANG_EQ] = ACTIONS(1072), - [anon_sym_LT2] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1072), - [anon_sym_GT_EQ] = ACTIONS(1072), - [anon_sym_not_DASHin] = ACTIONS(1072), - [anon_sym_starts_DASHwith] = ACTIONS(1072), - [anon_sym_ends_DASHwith] = ACTIONS(1072), - [anon_sym_EQ_TILDE] = ACTIONS(1072), - [anon_sym_BANG_TILDE] = ACTIONS(1072), - [anon_sym_bit_DASHand] = ACTIONS(1072), - [anon_sym_bit_DASHxor] = ACTIONS(1072), - [anon_sym_bit_DASHor] = ACTIONS(1072), - [anon_sym_and] = ACTIONS(1072), - [anon_sym_xor] = ACTIONS(1072), - [anon_sym_or] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1070), - [anon_sym_DOT_DOT2] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1072), - [anon_sym_null] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1072), - [anon_sym_false] = ACTIONS(1072), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1072), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1072), - [aux_sym__val_number_token1] = ACTIONS(1072), - [aux_sym__val_number_token2] = ACTIONS(1072), - [aux_sym__val_number_token3] = ACTIONS(1072), - [aux_sym__val_number_token4] = ACTIONS(1072), - [aux_sym__val_number_token5] = ACTIONS(1072), - [aux_sym__val_number_token6] = ACTIONS(1072), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1072), - [anon_sym_DQUOTE] = ACTIONS(1072), - [sym__str_single_quotes] = ACTIONS(1072), - [sym__str_back_ticks] = ACTIONS(1072), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1072), + [2701] = { + [sym_comment] = STATE(2701), + [ts_builtin_sym_end] = ACTIONS(1227), + [anon_sym_SEMI] = ACTIONS(1225), + [anon_sym_LF] = ACTIONS(1227), + [anon_sym_LBRACK] = ACTIONS(1225), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_PIPE] = ACTIONS(1225), + [anon_sym_DOLLAR] = ACTIONS(1225), + [anon_sym_GT] = ACTIONS(1225), + [anon_sym_DASH_DASH] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_in] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_DOT_DOT] = ACTIONS(1225), + [anon_sym_STAR] = ACTIONS(1225), + [anon_sym_STAR_STAR] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(1225), + [anon_sym_mod] = ACTIONS(1225), + [anon_sym_SLASH_SLASH] = ACTIONS(1225), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_bit_DASHshl] = ACTIONS(1225), + [anon_sym_bit_DASHshr] = ACTIONS(1225), + [anon_sym_EQ_EQ] = ACTIONS(1225), + [anon_sym_BANG_EQ] = ACTIONS(1225), + [anon_sym_LT2] = ACTIONS(1225), + [anon_sym_LT_EQ] = ACTIONS(1225), + [anon_sym_GT_EQ] = ACTIONS(1225), + [anon_sym_not_DASHin] = ACTIONS(1225), + [anon_sym_starts_DASHwith] = ACTIONS(1225), + [anon_sym_ends_DASHwith] = ACTIONS(1225), + [anon_sym_EQ_TILDE] = ACTIONS(1225), + [anon_sym_BANG_TILDE] = ACTIONS(1225), + [anon_sym_bit_DASHand] = ACTIONS(1225), + [anon_sym_bit_DASHxor] = ACTIONS(1225), + [anon_sym_bit_DASHor] = ACTIONS(1225), + [anon_sym_and] = ACTIONS(1225), + [anon_sym_xor] = ACTIONS(1225), + [anon_sym_or] = ACTIONS(1225), + [anon_sym_not] = ACTIONS(1225), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1225), + [anon_sym_DOT_DOT_LT] = ACTIONS(1225), + [anon_sym_null] = ACTIONS(1225), + [anon_sym_true] = ACTIONS(1225), + [anon_sym_false] = ACTIONS(1225), + [aux_sym__val_number_decimal_token1] = ACTIONS(1225), + [aux_sym__val_number_decimal_token2] = ACTIONS(1225), + [anon_sym_DOT2] = ACTIONS(1225), + [aux_sym__val_number_decimal_token3] = ACTIONS(1225), + [aux_sym__val_number_token1] = ACTIONS(1225), + [aux_sym__val_number_token2] = ACTIONS(1225), + [aux_sym__val_number_token3] = ACTIONS(1225), + [aux_sym__val_number_token4] = ACTIONS(1225), + [aux_sym__val_number_token5] = ACTIONS(1225), + [aux_sym__val_number_token6] = ACTIONS(1225), + [anon_sym_0b] = ACTIONS(1225), + [anon_sym_0o] = ACTIONS(1225), + [anon_sym_0x] = ACTIONS(1225), + [sym_val_date] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1225), + [sym__str_single_quotes] = ACTIONS(1225), + [sym__str_back_ticks] = ACTIONS(1225), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1225), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1225), + [anon_sym_POUND] = ACTIONS(113), + }, + [2702] = { + [sym__expression] = STATE(7633), + [sym_expr_unary] = STATE(5998), + [sym__expr_unary_minus] = STATE(5999), + [sym_expr_binary] = STATE(5998), + [sym__expr_binary_expression] = STATE(6374), + [sym_expr_parenthesized] = STATE(5273), + [sym_val_range] = STATE(6728), + [sym__value] = STATE(5998), + [sym_val_nothing] = STATE(6108), + [sym_val_bool] = STATE(6108), + [sym_val_variable] = STATE(5385), + [sym__var] = STATE(4639), + [sym_val_number] = STATE(6108), + [sym__val_number_decimal] = STATE(5069), + [sym__val_number] = STATE(6110), + [sym_val_duration] = STATE(6108), + [sym_val_filesize] = STATE(6108), + [sym_val_binary] = STATE(6108), + [sym_val_string] = STATE(6108), + [sym__str_double_quotes] = STATE(6195), + [sym_val_interpolated] = STATE(6108), + [sym__inter_single_quotes] = STATE(6197), + [sym__inter_double_quotes] = STATE(6198), + [sym_val_list] = STATE(6108), + [sym_val_record] = STATE(6108), + [sym_val_table] = STATE(6108), + [sym_val_closure] = STATE(6108), + [sym__flag] = STATE(2984), + [sym_short_flag] = STATE(6049), + [sym_long_flag] = STATE(6049), + [sym_long_flag_equals_value] = STATE(6112), + [sym_comment] = STATE(2702), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(2804), + [anon_sym_DOLLAR] = ACTIONS(2806), + [anon_sym_DASH_DASH] = ACTIONS(2557), + [anon_sym_DASH] = ACTIONS(6608), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_DOT_DOT] = ACTIONS(6610), + [anon_sym_not] = ACTIONS(4172), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6612), + [anon_sym_DOT_DOT_LT] = ACTIONS(6612), + [anon_sym_null] = ACTIONS(6614), + [anon_sym_true] = ACTIONS(6616), + [anon_sym_false] = ACTIONS(6616), + [aux_sym__val_number_decimal_token1] = ACTIONS(6618), + [aux_sym__val_number_decimal_token2] = ACTIONS(6620), + [anon_sym_DOT2] = ACTIONS(6622), + [aux_sym__val_number_decimal_token3] = ACTIONS(5057), + [aux_sym__val_number_token1] = ACTIONS(2828), + [aux_sym__val_number_token2] = ACTIONS(2828), + [aux_sym__val_number_token3] = ACTIONS(2828), + [aux_sym__val_number_token4] = ACTIONS(2828), + [aux_sym__val_number_token5] = ACTIONS(2828), + [aux_sym__val_number_token6] = ACTIONS(2828), + [anon_sym_0b] = ACTIONS(2832), + [anon_sym_0o] = ACTIONS(2834), + [anon_sym_0x] = ACTIONS(2834), + [sym_val_date] = ACTIONS(6624), + [anon_sym_DQUOTE] = ACTIONS(4192), + [sym__str_single_quotes] = ACTIONS(4194), + [sym__str_back_ticks] = ACTIONS(4194), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2844), [anon_sym_POUND] = ACTIONS(3), }, - [3077] = { - [sym_comment] = STATE(3077), - [anon_sym_LBRACK] = ACTIONS(1072), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_in] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1072), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_QMARK2] = ACTIONS(7064), - [anon_sym_STAR_STAR] = ACTIONS(1072), - [anon_sym_PLUS_PLUS] = ACTIONS(1072), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_mod] = ACTIONS(1072), - [anon_sym_SLASH_SLASH] = ACTIONS(1072), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_bit_DASHshl] = ACTIONS(1072), - [anon_sym_bit_DASHshr] = ACTIONS(1072), - [anon_sym_EQ_EQ] = ACTIONS(1072), - [anon_sym_BANG_EQ] = ACTIONS(1072), - [anon_sym_LT2] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1072), - [anon_sym_GT_EQ] = ACTIONS(1072), - [anon_sym_not_DASHin] = ACTIONS(1072), - [anon_sym_starts_DASHwith] = ACTIONS(1072), - [anon_sym_ends_DASHwith] = ACTIONS(1072), - [anon_sym_EQ_TILDE] = ACTIONS(1072), - [anon_sym_BANG_TILDE] = ACTIONS(1072), - [anon_sym_bit_DASHand] = ACTIONS(1072), - [anon_sym_bit_DASHxor] = ACTIONS(1072), - [anon_sym_bit_DASHor] = ACTIONS(1072), - [anon_sym_and] = ACTIONS(1072), - [anon_sym_xor] = ACTIONS(1072), - [anon_sym_or] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1070), - [anon_sym_DOT_DOT2] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1072), - [anon_sym_null] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1072), - [anon_sym_false] = ACTIONS(1072), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1072), - [anon_sym_DOT2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1072), - [aux_sym__val_number_token1] = ACTIONS(1072), - [aux_sym__val_number_token2] = ACTIONS(1072), - [aux_sym__val_number_token3] = ACTIONS(1072), - [aux_sym__val_number_token4] = ACTIONS(1072), - [aux_sym__val_number_token5] = ACTIONS(1072), - [aux_sym__val_number_token6] = ACTIONS(1072), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1072), - [anon_sym_DQUOTE] = ACTIONS(1072), - [sym__str_single_quotes] = ACTIONS(1072), - [sym__str_back_ticks] = ACTIONS(1072), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1072), + [2703] = { + [sym__expression] = STATE(7686), + [sym_expr_unary] = STATE(5998), + [sym__expr_unary_minus] = STATE(5999), + [sym_expr_binary] = STATE(5998), + [sym__expr_binary_expression] = STATE(6374), + [sym_expr_parenthesized] = STATE(5273), + [sym_val_range] = STATE(6728), + [sym__value] = STATE(5998), + [sym_val_nothing] = STATE(6108), + [sym_val_bool] = STATE(6108), + [sym_val_variable] = STATE(5385), + [sym__var] = STATE(4639), + [sym_val_number] = STATE(6108), + [sym__val_number_decimal] = STATE(5069), + [sym__val_number] = STATE(6110), + [sym_val_duration] = STATE(6108), + [sym_val_filesize] = STATE(6108), + [sym_val_binary] = STATE(6108), + [sym_val_string] = STATE(6108), + [sym__str_double_quotes] = STATE(6195), + [sym_val_interpolated] = STATE(6108), + [sym__inter_single_quotes] = STATE(6197), + [sym__inter_double_quotes] = STATE(6198), + [sym_val_list] = STATE(6108), + [sym_val_record] = STATE(6108), + [sym_val_table] = STATE(6108), + [sym_val_closure] = STATE(6108), + [sym__flag] = STATE(3029), + [sym_short_flag] = STATE(6049), + [sym_long_flag] = STATE(6049), + [sym_long_flag_equals_value] = STATE(6112), + [sym_comment] = STATE(2703), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(2804), + [anon_sym_DOLLAR] = ACTIONS(2806), + [anon_sym_DASH_DASH] = ACTIONS(2557), + [anon_sym_DASH] = ACTIONS(6608), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_DOT_DOT] = ACTIONS(6610), + [anon_sym_not] = ACTIONS(4172), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6612), + [anon_sym_DOT_DOT_LT] = ACTIONS(6612), + [anon_sym_null] = ACTIONS(6614), + [anon_sym_true] = ACTIONS(6616), + [anon_sym_false] = ACTIONS(6616), + [aux_sym__val_number_decimal_token1] = ACTIONS(6618), + [aux_sym__val_number_decimal_token2] = ACTIONS(6620), + [anon_sym_DOT2] = ACTIONS(6622), + [aux_sym__val_number_decimal_token3] = ACTIONS(5057), + [aux_sym__val_number_token1] = ACTIONS(2828), + [aux_sym__val_number_token2] = ACTIONS(2828), + [aux_sym__val_number_token3] = ACTIONS(2828), + [aux_sym__val_number_token4] = ACTIONS(2828), + [aux_sym__val_number_token5] = ACTIONS(2828), + [aux_sym__val_number_token6] = ACTIONS(2828), + [anon_sym_0b] = ACTIONS(2832), + [anon_sym_0o] = ACTIONS(2834), + [anon_sym_0x] = ACTIONS(2834), + [sym_val_date] = ACTIONS(6624), + [anon_sym_DQUOTE] = ACTIONS(4192), + [sym__str_single_quotes] = ACTIONS(4194), + [sym__str_back_ticks] = ACTIONS(4194), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2844), [anon_sym_POUND] = ACTIONS(3), }, - [3078] = { - [sym_comment] = STATE(3078), - [ts_builtin_sym_end] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym_LF] = ACTIONS(1314), - [anon_sym_LBRACK] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_DOLLAR] = ACTIONS(1312), - [anon_sym_GT] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_in] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_DOT_DOT] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_STAR_STAR] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_SLASH] = ACTIONS(1312), - [anon_sym_mod] = ACTIONS(1312), - [anon_sym_SLASH_SLASH] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_bit_DASHshl] = ACTIONS(1312), - [anon_sym_bit_DASHshr] = ACTIONS(1312), - [anon_sym_EQ_EQ] = ACTIONS(1312), - [anon_sym_BANG_EQ] = ACTIONS(1312), - [anon_sym_LT2] = ACTIONS(1312), - [anon_sym_LT_EQ] = ACTIONS(1312), - [anon_sym_GT_EQ] = ACTIONS(1312), - [anon_sym_not_DASHin] = ACTIONS(1312), - [anon_sym_starts_DASHwith] = ACTIONS(1312), - [anon_sym_ends_DASHwith] = ACTIONS(1312), - [anon_sym_EQ_TILDE] = ACTIONS(1312), - [anon_sym_BANG_TILDE] = ACTIONS(1312), - [anon_sym_bit_DASHand] = ACTIONS(1312), - [anon_sym_bit_DASHxor] = ACTIONS(1312), - [anon_sym_bit_DASHor] = ACTIONS(1312), - [anon_sym_and] = ACTIONS(1312), - [anon_sym_xor] = ACTIONS(1312), - [anon_sym_or] = ACTIONS(1312), - [anon_sym_not] = ACTIONS(1312), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1312), - [anon_sym_DOT_DOT_LT] = ACTIONS(1312), - [anon_sym_null] = ACTIONS(1312), - [anon_sym_true] = ACTIONS(1312), - [anon_sym_false] = ACTIONS(1312), - [aux_sym__val_number_decimal_token1] = ACTIONS(1312), - [aux_sym__val_number_decimal_token2] = ACTIONS(1312), - [anon_sym_DOT2] = ACTIONS(1312), - [aux_sym__val_number_decimal_token3] = ACTIONS(1312), - [aux_sym__val_number_token1] = ACTIONS(1312), - [aux_sym__val_number_token2] = ACTIONS(1312), - [aux_sym__val_number_token3] = ACTIONS(1312), - [aux_sym__val_number_token4] = ACTIONS(1312), - [aux_sym__val_number_token5] = ACTIONS(1312), - [aux_sym__val_number_token6] = ACTIONS(1312), - [anon_sym_0b] = ACTIONS(1312), - [anon_sym_0o] = ACTIONS(1312), - [anon_sym_0x] = ACTIONS(1312), - [sym_val_date] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym__str_single_quotes] = ACTIONS(1312), - [sym__str_back_ticks] = ACTIONS(1312), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1312), - [anon_sym_POUND] = ACTIONS(113), - }, - [3079] = { - [sym_comment] = STATE(3079), - [ts_builtin_sym_end] = ACTIONS(1188), - [anon_sym_SEMI] = ACTIONS(1186), - [anon_sym_LF] = ACTIONS(1188), - [anon_sym_LBRACK] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(1186), - [anon_sym_PIPE] = ACTIONS(1186), - [anon_sym_DOLLAR] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_DASH_DASH] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_in] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_DOT_DOT] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_STAR_STAR] = ACTIONS(1186), - [anon_sym_PLUS_PLUS] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_mod] = ACTIONS(1186), - [anon_sym_SLASH_SLASH] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_bit_DASHshl] = ACTIONS(1186), - [anon_sym_bit_DASHshr] = ACTIONS(1186), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_LT2] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1186), - [anon_sym_GT_EQ] = ACTIONS(1186), - [anon_sym_not_DASHin] = ACTIONS(1186), - [anon_sym_starts_DASHwith] = ACTIONS(1186), - [anon_sym_ends_DASHwith] = ACTIONS(1186), - [anon_sym_EQ_TILDE] = ACTIONS(1186), - [anon_sym_BANG_TILDE] = ACTIONS(1186), - [anon_sym_bit_DASHand] = ACTIONS(1186), - [anon_sym_bit_DASHxor] = ACTIONS(1186), - [anon_sym_bit_DASHor] = ACTIONS(1186), - [anon_sym_and] = ACTIONS(1186), - [anon_sym_xor] = ACTIONS(1186), - [anon_sym_or] = ACTIONS(1186), - [anon_sym_not] = ACTIONS(1186), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1186), - [anon_sym_DOT_DOT_LT] = ACTIONS(1186), - [anon_sym_null] = ACTIONS(1186), - [anon_sym_true] = ACTIONS(1186), - [anon_sym_false] = ACTIONS(1186), - [aux_sym__val_number_decimal_token1] = ACTIONS(1186), - [aux_sym__val_number_decimal_token2] = ACTIONS(1186), - [anon_sym_DOT2] = ACTIONS(1186), - [aux_sym__val_number_decimal_token3] = ACTIONS(1186), - [aux_sym__val_number_token1] = ACTIONS(1186), - [aux_sym__val_number_token2] = ACTIONS(1186), - [aux_sym__val_number_token3] = ACTIONS(1186), - [aux_sym__val_number_token4] = ACTIONS(1186), - [aux_sym__val_number_token5] = ACTIONS(1186), - [aux_sym__val_number_token6] = ACTIONS(1186), - [anon_sym_0b] = ACTIONS(1186), - [anon_sym_0o] = ACTIONS(1186), - [anon_sym_0x] = ACTIONS(1186), - [sym_val_date] = ACTIONS(1186), - [anon_sym_DQUOTE] = ACTIONS(1186), - [sym__str_single_quotes] = ACTIONS(1186), - [sym__str_back_ticks] = ACTIONS(1186), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1186), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1186), - [anon_sym_POUND] = ACTIONS(113), - }, - [3080] = { - [sym_comment] = STATE(3080), - [ts_builtin_sym_end] = ACTIONS(1192), - [anon_sym_SEMI] = ACTIONS(1190), - [anon_sym_LF] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(1190), - [anon_sym_PIPE] = ACTIONS(1190), - [anon_sym_DOLLAR] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1190), - [anon_sym_DASH_DASH] = ACTIONS(1190), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_in] = ACTIONS(1190), - [anon_sym_LBRACE] = ACTIONS(1190), - [anon_sym_DOT_DOT] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1190), - [anon_sym_STAR_STAR] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1190), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_mod] = ACTIONS(1190), - [anon_sym_SLASH_SLASH] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_bit_DASHshl] = ACTIONS(1190), - [anon_sym_bit_DASHshr] = ACTIONS(1190), - [anon_sym_EQ_EQ] = ACTIONS(1190), - [anon_sym_BANG_EQ] = ACTIONS(1190), - [anon_sym_LT2] = ACTIONS(1190), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_not_DASHin] = ACTIONS(1190), - [anon_sym_starts_DASHwith] = ACTIONS(1190), - [anon_sym_ends_DASHwith] = ACTIONS(1190), - [anon_sym_EQ_TILDE] = ACTIONS(1190), - [anon_sym_BANG_TILDE] = ACTIONS(1190), - [anon_sym_bit_DASHand] = ACTIONS(1190), - [anon_sym_bit_DASHxor] = ACTIONS(1190), - [anon_sym_bit_DASHor] = ACTIONS(1190), - [anon_sym_and] = ACTIONS(1190), - [anon_sym_xor] = ACTIONS(1190), - [anon_sym_or] = ACTIONS(1190), - [anon_sym_not] = ACTIONS(1190), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1190), - [anon_sym_DOT_DOT_LT] = ACTIONS(1190), - [anon_sym_null] = ACTIONS(1190), - [anon_sym_true] = ACTIONS(1190), - [anon_sym_false] = ACTIONS(1190), - [aux_sym__val_number_decimal_token1] = ACTIONS(1190), - [aux_sym__val_number_decimal_token2] = ACTIONS(1190), - [anon_sym_DOT2] = ACTIONS(1190), - [aux_sym__val_number_decimal_token3] = ACTIONS(1190), - [aux_sym__val_number_token1] = ACTIONS(1190), - [aux_sym__val_number_token2] = ACTIONS(1190), - [aux_sym__val_number_token3] = ACTIONS(1190), - [aux_sym__val_number_token4] = ACTIONS(1190), - [aux_sym__val_number_token5] = ACTIONS(1190), - [aux_sym__val_number_token6] = ACTIONS(1190), - [anon_sym_0b] = ACTIONS(1190), - [anon_sym_0o] = ACTIONS(1190), - [anon_sym_0x] = ACTIONS(1190), - [sym_val_date] = ACTIONS(1190), - [anon_sym_DQUOTE] = ACTIONS(1190), - [sym__str_single_quotes] = ACTIONS(1190), - [sym__str_back_ticks] = ACTIONS(1190), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1190), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1190), - [anon_sym_POUND] = ACTIONS(113), - }, - [3081] = { - [sym_comment] = STATE(3081), - [ts_builtin_sym_end] = ACTIONS(1334), - [anon_sym_SEMI] = ACTIONS(1332), - [anon_sym_LF] = ACTIONS(1334), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1332), - [anon_sym_DOLLAR] = ACTIONS(1332), - [anon_sym_GT] = ACTIONS(1332), - [anon_sym_DASH_DASH] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_in] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_DOT_DOT] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_STAR_STAR] = ACTIONS(1332), - [anon_sym_PLUS_PLUS] = ACTIONS(1332), - [anon_sym_SLASH] = ACTIONS(1332), - [anon_sym_mod] = ACTIONS(1332), - [anon_sym_SLASH_SLASH] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_bit_DASHshl] = ACTIONS(1332), - [anon_sym_bit_DASHshr] = ACTIONS(1332), - [anon_sym_EQ_EQ] = ACTIONS(1332), - [anon_sym_BANG_EQ] = ACTIONS(1332), - [anon_sym_LT2] = ACTIONS(1332), - [anon_sym_LT_EQ] = ACTIONS(1332), - [anon_sym_GT_EQ] = ACTIONS(1332), - [anon_sym_not_DASHin] = ACTIONS(1332), - [anon_sym_starts_DASHwith] = ACTIONS(1332), - [anon_sym_ends_DASHwith] = ACTIONS(1332), - [anon_sym_EQ_TILDE] = ACTIONS(1332), - [anon_sym_BANG_TILDE] = ACTIONS(1332), - [anon_sym_bit_DASHand] = ACTIONS(1332), - [anon_sym_bit_DASHxor] = ACTIONS(1332), - [anon_sym_bit_DASHor] = ACTIONS(1332), - [anon_sym_and] = ACTIONS(1332), - [anon_sym_xor] = ACTIONS(1332), - [anon_sym_or] = ACTIONS(1332), - [anon_sym_not] = ACTIONS(1332), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1332), - [anon_sym_DOT_DOT_LT] = ACTIONS(1332), - [anon_sym_null] = ACTIONS(1332), - [anon_sym_true] = ACTIONS(1332), - [anon_sym_false] = ACTIONS(1332), - [aux_sym__val_number_decimal_token1] = ACTIONS(1332), - [aux_sym__val_number_decimal_token2] = ACTIONS(1332), - [anon_sym_DOT2] = ACTIONS(1332), - [aux_sym__val_number_decimal_token3] = ACTIONS(1332), - [aux_sym__val_number_token1] = ACTIONS(1332), - [aux_sym__val_number_token2] = ACTIONS(1332), - [aux_sym__val_number_token3] = ACTIONS(1332), - [aux_sym__val_number_token4] = ACTIONS(1332), - [aux_sym__val_number_token5] = ACTIONS(1332), - [aux_sym__val_number_token6] = ACTIONS(1332), - [anon_sym_0b] = ACTIONS(1332), - [anon_sym_0o] = ACTIONS(1332), - [anon_sym_0x] = ACTIONS(1332), - [sym_val_date] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym__str_single_quotes] = ACTIONS(1332), - [sym__str_back_ticks] = ACTIONS(1332), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1332), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1332), - [anon_sym_POUND] = ACTIONS(113), - }, - [3082] = { - [sym_comment] = STATE(3082), - [ts_builtin_sym_end] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1336), - [anon_sym_LF] = ACTIONS(1338), - [anon_sym_LBRACK] = ACTIONS(1336), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_PIPE] = ACTIONS(1336), - [anon_sym_DOLLAR] = ACTIONS(1336), - [anon_sym_GT] = ACTIONS(1336), - [anon_sym_DASH_DASH] = ACTIONS(1336), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_in] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_DOT_DOT] = ACTIONS(1336), - [anon_sym_STAR] = ACTIONS(1336), - [anon_sym_STAR_STAR] = ACTIONS(1336), - [anon_sym_PLUS_PLUS] = ACTIONS(1336), - [anon_sym_SLASH] = ACTIONS(1336), - [anon_sym_mod] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(1336), - [anon_sym_PLUS] = ACTIONS(1336), - [anon_sym_bit_DASHshl] = ACTIONS(1336), - [anon_sym_bit_DASHshr] = ACTIONS(1336), - [anon_sym_EQ_EQ] = ACTIONS(1336), - [anon_sym_BANG_EQ] = ACTIONS(1336), - [anon_sym_LT2] = ACTIONS(1336), - [anon_sym_LT_EQ] = ACTIONS(1336), - [anon_sym_GT_EQ] = ACTIONS(1336), - [anon_sym_not_DASHin] = ACTIONS(1336), - [anon_sym_starts_DASHwith] = ACTIONS(1336), - [anon_sym_ends_DASHwith] = ACTIONS(1336), - [anon_sym_EQ_TILDE] = ACTIONS(1336), - [anon_sym_BANG_TILDE] = ACTIONS(1336), - [anon_sym_bit_DASHand] = ACTIONS(1336), - [anon_sym_bit_DASHxor] = ACTIONS(1336), - [anon_sym_bit_DASHor] = ACTIONS(1336), - [anon_sym_and] = ACTIONS(1336), - [anon_sym_xor] = ACTIONS(1336), - [anon_sym_or] = ACTIONS(1336), - [anon_sym_not] = ACTIONS(1336), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1336), - [anon_sym_DOT_DOT_LT] = ACTIONS(1336), - [anon_sym_null] = ACTIONS(1336), - [anon_sym_true] = ACTIONS(1336), - [anon_sym_false] = ACTIONS(1336), - [aux_sym__val_number_decimal_token1] = ACTIONS(1336), - [aux_sym__val_number_decimal_token2] = ACTIONS(1336), - [anon_sym_DOT2] = ACTIONS(1336), - [aux_sym__val_number_decimal_token3] = ACTIONS(1336), - [aux_sym__val_number_token1] = ACTIONS(1336), - [aux_sym__val_number_token2] = ACTIONS(1336), - [aux_sym__val_number_token3] = ACTIONS(1336), - [aux_sym__val_number_token4] = ACTIONS(1336), - [aux_sym__val_number_token5] = ACTIONS(1336), - [aux_sym__val_number_token6] = ACTIONS(1336), - [anon_sym_0b] = ACTIONS(1336), - [anon_sym_0o] = ACTIONS(1336), - [anon_sym_0x] = ACTIONS(1336), - [sym_val_date] = ACTIONS(1336), - [anon_sym_DQUOTE] = ACTIONS(1336), - [sym__str_single_quotes] = ACTIONS(1336), - [sym__str_back_ticks] = ACTIONS(1336), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1336), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1336), - [anon_sym_POUND] = ACTIONS(113), - }, - [3083] = { - [sym_comment] = STATE(3083), - [ts_builtin_sym_end] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1350), - [anon_sym_LF] = ACTIONS(1352), - [anon_sym_LBRACK] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1350), - [anon_sym_PIPE] = ACTIONS(1350), - [anon_sym_DOLLAR] = ACTIONS(1350), - [anon_sym_GT] = ACTIONS(1350), - [anon_sym_DASH_DASH] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_in] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_DOT_DOT] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_STAR_STAR] = ACTIONS(1350), - [anon_sym_PLUS_PLUS] = ACTIONS(1350), - [anon_sym_SLASH] = ACTIONS(1350), - [anon_sym_mod] = ACTIONS(1350), - [anon_sym_SLASH_SLASH] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_bit_DASHshl] = ACTIONS(1350), - [anon_sym_bit_DASHshr] = ACTIONS(1350), - [anon_sym_EQ_EQ] = ACTIONS(1350), - [anon_sym_BANG_EQ] = ACTIONS(1350), - [anon_sym_LT2] = ACTIONS(1350), - [anon_sym_LT_EQ] = ACTIONS(1350), - [anon_sym_GT_EQ] = ACTIONS(1350), - [anon_sym_not_DASHin] = ACTIONS(1350), - [anon_sym_starts_DASHwith] = ACTIONS(1350), - [anon_sym_ends_DASHwith] = ACTIONS(1350), - [anon_sym_EQ_TILDE] = ACTIONS(1350), - [anon_sym_BANG_TILDE] = ACTIONS(1350), - [anon_sym_bit_DASHand] = ACTIONS(1350), - [anon_sym_bit_DASHxor] = ACTIONS(1350), - [anon_sym_bit_DASHor] = ACTIONS(1350), - [anon_sym_and] = ACTIONS(1350), - [anon_sym_xor] = ACTIONS(1350), - [anon_sym_or] = ACTIONS(1350), - [anon_sym_not] = ACTIONS(1350), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1350), - [anon_sym_DOT_DOT_LT] = ACTIONS(1350), - [anon_sym_null] = ACTIONS(1350), - [anon_sym_true] = ACTIONS(1350), - [anon_sym_false] = ACTIONS(1350), - [aux_sym__val_number_decimal_token1] = ACTIONS(1350), - [aux_sym__val_number_decimal_token2] = ACTIONS(1350), - [anon_sym_DOT2] = ACTIONS(1350), - [aux_sym__val_number_decimal_token3] = ACTIONS(1350), - [aux_sym__val_number_token1] = ACTIONS(1350), - [aux_sym__val_number_token2] = ACTIONS(1350), - [aux_sym__val_number_token3] = ACTIONS(1350), - [aux_sym__val_number_token4] = ACTIONS(1350), - [aux_sym__val_number_token5] = ACTIONS(1350), - [aux_sym__val_number_token6] = ACTIONS(1350), - [anon_sym_0b] = ACTIONS(1350), - [anon_sym_0o] = ACTIONS(1350), - [anon_sym_0x] = ACTIONS(1350), - [sym_val_date] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [sym__str_single_quotes] = ACTIONS(1350), - [sym__str_back_ticks] = ACTIONS(1350), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1350), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1350), - [anon_sym_POUND] = ACTIONS(113), - }, - [3084] = { - [sym_comment] = STATE(3084), - [ts_builtin_sym_end] = ACTIONS(1420), - [anon_sym_SEMI] = ACTIONS(1418), - [anon_sym_LF] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1418), - [anon_sym_LPAREN] = ACTIONS(1418), - [anon_sym_PIPE] = ACTIONS(1418), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_GT] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_in] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_DOT_DOT] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_STAR_STAR] = ACTIONS(1418), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_SLASH] = ACTIONS(1418), - [anon_sym_mod] = ACTIONS(1418), - [anon_sym_SLASH_SLASH] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_bit_DASHshl] = ACTIONS(1418), - [anon_sym_bit_DASHshr] = ACTIONS(1418), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_LT2] = ACTIONS(1418), - [anon_sym_LT_EQ] = ACTIONS(1418), - [anon_sym_GT_EQ] = ACTIONS(1418), - [anon_sym_not_DASHin] = ACTIONS(1418), - [anon_sym_starts_DASHwith] = ACTIONS(1418), - [anon_sym_ends_DASHwith] = ACTIONS(1418), - [anon_sym_EQ_TILDE] = ACTIONS(1418), - [anon_sym_BANG_TILDE] = ACTIONS(1418), - [anon_sym_bit_DASHand] = ACTIONS(1418), - [anon_sym_bit_DASHxor] = ACTIONS(1418), - [anon_sym_bit_DASHor] = ACTIONS(1418), - [anon_sym_and] = ACTIONS(1418), - [anon_sym_xor] = ACTIONS(1418), - [anon_sym_or] = ACTIONS(1418), - [anon_sym_not] = ACTIONS(1418), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1418), - [anon_sym_DOT_DOT_LT] = ACTIONS(1418), - [anon_sym_null] = ACTIONS(1418), - [anon_sym_true] = ACTIONS(1418), - [anon_sym_false] = ACTIONS(1418), - [aux_sym__val_number_decimal_token1] = ACTIONS(1418), - [aux_sym__val_number_decimal_token2] = ACTIONS(1418), - [anon_sym_DOT2] = ACTIONS(1418), - [aux_sym__val_number_decimal_token3] = ACTIONS(1418), - [aux_sym__val_number_token1] = ACTIONS(1418), - [aux_sym__val_number_token2] = ACTIONS(1418), - [aux_sym__val_number_token3] = ACTIONS(1418), - [aux_sym__val_number_token4] = ACTIONS(1418), - [aux_sym__val_number_token5] = ACTIONS(1418), - [aux_sym__val_number_token6] = ACTIONS(1418), - [anon_sym_0b] = ACTIONS(1418), - [anon_sym_0o] = ACTIONS(1418), - [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1418), - [anon_sym_DQUOTE] = ACTIONS(1418), - [sym__str_single_quotes] = ACTIONS(1418), - [sym__str_back_ticks] = ACTIONS(1418), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1418), - [anon_sym_POUND] = ACTIONS(113), - }, - [3085] = { - [sym_comment] = STATE(3085), - [ts_builtin_sym_end] = ACTIONS(1174), - [anon_sym_SEMI] = ACTIONS(1172), - [anon_sym_LF] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_LPAREN] = ACTIONS(1172), - [anon_sym_PIPE] = ACTIONS(1172), - [anon_sym_DOLLAR] = ACTIONS(1172), - [anon_sym_GT] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_DASH] = ACTIONS(1172), - [anon_sym_in] = ACTIONS(1172), - [anon_sym_LBRACE] = ACTIONS(1172), - [anon_sym_DOT_DOT] = ACTIONS(1172), - [anon_sym_STAR] = ACTIONS(1172), - [anon_sym_STAR_STAR] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_SLASH] = ACTIONS(1172), - [anon_sym_mod] = ACTIONS(1172), - [anon_sym_SLASH_SLASH] = ACTIONS(1172), - [anon_sym_PLUS] = ACTIONS(1172), - [anon_sym_bit_DASHshl] = ACTIONS(1172), - [anon_sym_bit_DASHshr] = ACTIONS(1172), - [anon_sym_EQ_EQ] = ACTIONS(1172), - [anon_sym_BANG_EQ] = ACTIONS(1172), - [anon_sym_LT2] = ACTIONS(1172), - [anon_sym_LT_EQ] = ACTIONS(1172), - [anon_sym_GT_EQ] = ACTIONS(1172), - [anon_sym_not_DASHin] = ACTIONS(1172), - [anon_sym_starts_DASHwith] = ACTIONS(1172), - [anon_sym_ends_DASHwith] = ACTIONS(1172), - [anon_sym_EQ_TILDE] = ACTIONS(1172), - [anon_sym_BANG_TILDE] = ACTIONS(1172), - [anon_sym_bit_DASHand] = ACTIONS(1172), - [anon_sym_bit_DASHxor] = ACTIONS(1172), - [anon_sym_bit_DASHor] = ACTIONS(1172), - [anon_sym_and] = ACTIONS(1172), - [anon_sym_xor] = ACTIONS(1172), - [anon_sym_or] = ACTIONS(1172), - [anon_sym_not] = ACTIONS(1172), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1172), - [anon_sym_DOT_DOT_LT] = ACTIONS(1172), - [anon_sym_null] = ACTIONS(1172), - [anon_sym_true] = ACTIONS(1172), - [anon_sym_false] = ACTIONS(1172), - [aux_sym__val_number_decimal_token1] = ACTIONS(1172), - [aux_sym__val_number_decimal_token2] = ACTIONS(1172), - [anon_sym_DOT2] = ACTIONS(1172), - [aux_sym__val_number_decimal_token3] = ACTIONS(1172), - [aux_sym__val_number_token1] = ACTIONS(1172), - [aux_sym__val_number_token2] = ACTIONS(1172), - [aux_sym__val_number_token3] = ACTIONS(1172), - [aux_sym__val_number_token4] = ACTIONS(1172), - [aux_sym__val_number_token5] = ACTIONS(1172), - [aux_sym__val_number_token6] = ACTIONS(1172), - [anon_sym_0b] = ACTIONS(1172), - [anon_sym_0o] = ACTIONS(1172), - [anon_sym_0x] = ACTIONS(1172), - [sym_val_date] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(1172), - [sym__str_single_quotes] = ACTIONS(1172), - [sym__str_back_ticks] = ACTIONS(1172), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1172), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1172), - [anon_sym_POUND] = ACTIONS(113), - }, - [3086] = { - [sym_comment] = STATE(3086), - [ts_builtin_sym_end] = ACTIONS(7066), - [anon_sym_export] = ACTIONS(7068), - [anon_sym_alias] = ACTIONS(7068), - [anon_sym_let] = ACTIONS(7068), - [anon_sym_let_DASHenv] = ACTIONS(7068), - [anon_sym_mut] = ACTIONS(7068), - [anon_sym_const] = ACTIONS(7068), - [sym_cmd_identifier] = ACTIONS(7068), - [anon_sym_def] = ACTIONS(7068), - [anon_sym_export_DASHenv] = ACTIONS(7068), - [anon_sym_extern] = ACTIONS(7068), - [anon_sym_module] = ACTIONS(7068), - [anon_sym_use] = ACTIONS(7068), - [anon_sym_LBRACK] = ACTIONS(7066), - [anon_sym_LPAREN] = ACTIONS(7066), - [anon_sym_DOLLAR] = ACTIONS(7068), - [anon_sym_error] = ACTIONS(7068), - [anon_sym_DASH] = ACTIONS(7068), - [anon_sym_break] = ACTIONS(7068), - [anon_sym_continue] = ACTIONS(7068), - [anon_sym_for] = ACTIONS(7068), - [anon_sym_loop] = ACTIONS(7068), - [anon_sym_while] = ACTIONS(7068), - [anon_sym_do] = ACTIONS(7068), - [anon_sym_if] = ACTIONS(7068), - [anon_sym_match] = ACTIONS(7068), - [anon_sym_LBRACE] = ACTIONS(7066), - [anon_sym_DOT_DOT] = ACTIONS(7068), - [anon_sym_try] = ACTIONS(7068), - [anon_sym_return] = ACTIONS(7068), - [anon_sym_source] = ACTIONS(7068), - [anon_sym_source_DASHenv] = ACTIONS(7068), - [anon_sym_register] = ACTIONS(7068), - [anon_sym_hide] = ACTIONS(7068), - [anon_sym_hide_DASHenv] = ACTIONS(7068), - [anon_sym_overlay] = ACTIONS(7068), - [anon_sym_where] = ACTIONS(7068), - [anon_sym_not] = ACTIONS(7068), - [anon_sym_DOT_DOT_EQ] = ACTIONS(7066), - [anon_sym_DOT_DOT_LT] = ACTIONS(7066), - [anon_sym_null] = ACTIONS(7068), - [anon_sym_true] = ACTIONS(7068), - [anon_sym_false] = ACTIONS(7068), - [aux_sym__val_number_decimal_token1] = ACTIONS(7068), - [aux_sym__val_number_decimal_token2] = ACTIONS(7066), - [anon_sym_DOT2] = ACTIONS(7068), - [aux_sym__val_number_decimal_token3] = ACTIONS(7066), - [aux_sym__val_number_token1] = ACTIONS(7066), - [aux_sym__val_number_token2] = ACTIONS(7066), - [aux_sym__val_number_token3] = ACTIONS(7066), - [aux_sym__val_number_token4] = ACTIONS(7068), - [aux_sym__val_number_token5] = ACTIONS(7066), - [aux_sym__val_number_token6] = ACTIONS(7068), - [anon_sym_0b] = ACTIONS(7068), - [anon_sym_0o] = ACTIONS(7068), - [anon_sym_0x] = ACTIONS(7068), - [sym_val_date] = ACTIONS(7066), - [anon_sym_DQUOTE] = ACTIONS(7066), - [sym__str_single_quotes] = ACTIONS(7066), - [sym__str_back_ticks] = ACTIONS(7066), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(7066), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(7066), - [anon_sym_CARET] = ACTIONS(7066), - [anon_sym_POUND] = ACTIONS(3), - }, - [3087] = { - [sym__expression] = STATE(8102), - [sym_expr_unary] = STATE(6426), - [sym__expr_unary_minus] = STATE(6430), - [sym_expr_binary] = STATE(6426), - [sym__expr_binary_expression] = STATE(6790), - [sym_expr_parenthesized] = STATE(5808), - [sym_val_range] = STATE(7168), - [sym__value] = STATE(6426), - [sym_val_nothing] = STATE(6590), - [sym_val_bool] = STATE(6590), - [sym_val_variable] = STATE(5935), - [sym__var] = STATE(5171), - [sym_val_number] = STATE(6590), - [sym__val_number_decimal] = STATE(5591), - [sym__val_number] = STATE(6519), - [sym_val_duration] = STATE(6590), - [sym_val_filesize] = STATE(6590), - [sym_val_binary] = STATE(6590), - [sym_val_string] = STATE(6590), - [sym__str_double_quotes] = STATE(6540), - [sym_val_interpolated] = STATE(6590), - [sym__inter_single_quotes] = STATE(6464), - [sym__inter_double_quotes] = STATE(6419), - [sym_val_list] = STATE(6590), - [sym_val_record] = STATE(6590), - [sym_val_table] = STATE(6590), - [sym_val_closure] = STATE(6590), - [sym__flag] = STATE(3489), - [sym_short_flag] = STATE(6452), - [sym_long_flag] = STATE(6452), - [sym_long_flag_equals_value] = STATE(6581), - [sym_comment] = STATE(3087), - [anon_sym_LBRACK] = ACTIONS(4051), - [anon_sym_LPAREN] = ACTIONS(2740), - [anon_sym_DOLLAR] = ACTIONS(2742), - [anon_sym_DASH_DASH] = ACTIONS(3115), - [anon_sym_DASH] = ACTIONS(7070), - [anon_sym_LBRACE] = ACTIONS(4055), - [anon_sym_DOT_DOT] = ACTIONS(7072), - [anon_sym_not] = ACTIONS(4059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(7074), - [anon_sym_DOT_DOT_LT] = ACTIONS(7074), - [anon_sym_null] = ACTIONS(7076), - [anon_sym_true] = ACTIONS(7078), - [anon_sym_false] = ACTIONS(7078), - [aux_sym__val_number_decimal_token1] = ACTIONS(7080), - [aux_sym__val_number_decimal_token2] = ACTIONS(7082), - [anon_sym_DOT2] = ACTIONS(7084), - [aux_sym__val_number_decimal_token3] = ACTIONS(5603), - [aux_sym__val_number_token1] = ACTIONS(2764), - [aux_sym__val_number_token2] = ACTIONS(2764), - [aux_sym__val_number_token3] = ACTIONS(2764), - [aux_sym__val_number_token4] = ACTIONS(2764), - [aux_sym__val_number_token5] = ACTIONS(2764), - [aux_sym__val_number_token6] = ACTIONS(2764), - [anon_sym_0b] = ACTIONS(2768), - [anon_sym_0o] = ACTIONS(2770), - [anon_sym_0x] = ACTIONS(2770), - [sym_val_date] = ACTIONS(7086), - [anon_sym_DQUOTE] = ACTIONS(4079), - [sym__str_single_quotes] = ACTIONS(4081), - [sym__str_back_ticks] = ACTIONS(4081), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_POUND] = ACTIONS(3), - }, - [3088] = { - [sym__expression] = STATE(8110), - [sym_expr_unary] = STATE(6426), - [sym__expr_unary_minus] = STATE(6430), - [sym_expr_binary] = STATE(6426), - [sym__expr_binary_expression] = STATE(6790), - [sym_expr_parenthesized] = STATE(5808), - [sym_val_range] = STATE(7168), - [sym__value] = STATE(6426), - [sym_val_nothing] = STATE(6590), - [sym_val_bool] = STATE(6590), - [sym_val_variable] = STATE(5935), - [sym__var] = STATE(5171), - [sym_val_number] = STATE(6590), - [sym__val_number_decimal] = STATE(5591), - [sym__val_number] = STATE(6519), - [sym_val_duration] = STATE(6590), - [sym_val_filesize] = STATE(6590), - [sym_val_binary] = STATE(6590), - [sym_val_string] = STATE(6590), - [sym__str_double_quotes] = STATE(6540), - [sym_val_interpolated] = STATE(6590), - [sym__inter_single_quotes] = STATE(6464), - [sym__inter_double_quotes] = STATE(6419), - [sym_val_list] = STATE(6590), - [sym_val_record] = STATE(6590), - [sym_val_table] = STATE(6590), - [sym_val_closure] = STATE(6590), - [sym__flag] = STATE(3434), - [sym_short_flag] = STATE(6452), - [sym_long_flag] = STATE(6452), - [sym_long_flag_equals_value] = STATE(6581), - [sym_comment] = STATE(3088), - [anon_sym_LBRACK] = ACTIONS(4051), - [anon_sym_LPAREN] = ACTIONS(2740), - [anon_sym_DOLLAR] = ACTIONS(2742), - [anon_sym_DASH_DASH] = ACTIONS(3115), - [anon_sym_DASH] = ACTIONS(7070), - [anon_sym_LBRACE] = ACTIONS(4055), - [anon_sym_DOT_DOT] = ACTIONS(7072), - [anon_sym_not] = ACTIONS(4059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(7074), - [anon_sym_DOT_DOT_LT] = ACTIONS(7074), - [anon_sym_null] = ACTIONS(7076), - [anon_sym_true] = ACTIONS(7078), - [anon_sym_false] = ACTIONS(7078), - [aux_sym__val_number_decimal_token1] = ACTIONS(7080), - [aux_sym__val_number_decimal_token2] = ACTIONS(7082), - [anon_sym_DOT2] = ACTIONS(7084), - [aux_sym__val_number_decimal_token3] = ACTIONS(5603), - [aux_sym__val_number_token1] = ACTIONS(2764), - [aux_sym__val_number_token2] = ACTIONS(2764), - [aux_sym__val_number_token3] = ACTIONS(2764), - [aux_sym__val_number_token4] = ACTIONS(2764), - [aux_sym__val_number_token5] = ACTIONS(2764), - [aux_sym__val_number_token6] = ACTIONS(2764), - [anon_sym_0b] = ACTIONS(2768), - [anon_sym_0o] = ACTIONS(2770), - [anon_sym_0x] = ACTIONS(2770), - [sym_val_date] = ACTIONS(7086), - [anon_sym_DQUOTE] = ACTIONS(4079), - [sym__str_single_quotes] = ACTIONS(4081), - [sym__str_back_ticks] = ACTIONS(4081), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_POUND] = ACTIONS(3), - }, - [3089] = { - [sym_comment] = STATE(3089), - [ts_builtin_sym_end] = ACTIONS(1061), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_LF] = ACTIONS(1061), - [anon_sym_LBRACK] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_DASH_DASH] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_STAR_STAR] = ACTIONS(1059), - [anon_sym_PLUS_PLUS] = ACTIONS(1059), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_mod] = ACTIONS(1059), - [anon_sym_SLASH_SLASH] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_bit_DASHshl] = ACTIONS(1059), - [anon_sym_bit_DASHshr] = ACTIONS(1059), - [anon_sym_EQ_EQ] = ACTIONS(1059), - [anon_sym_BANG_EQ] = ACTIONS(1059), - [anon_sym_LT2] = ACTIONS(1059), - [anon_sym_LT_EQ] = ACTIONS(1059), - [anon_sym_GT_EQ] = ACTIONS(1059), - [anon_sym_not_DASHin] = ACTIONS(1059), - [anon_sym_starts_DASHwith] = ACTIONS(1059), - [anon_sym_ends_DASHwith] = ACTIONS(1059), - [anon_sym_EQ_TILDE] = ACTIONS(1059), - [anon_sym_BANG_TILDE] = ACTIONS(1059), - [anon_sym_bit_DASHand] = ACTIONS(1059), - [anon_sym_bit_DASHxor] = ACTIONS(1059), - [anon_sym_bit_DASHor] = ACTIONS(1059), - [anon_sym_and] = ACTIONS(1059), - [anon_sym_xor] = ACTIONS(1059), - [anon_sym_or] = ACTIONS(1059), - [anon_sym_not] = ACTIONS(1059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1059), - [anon_sym_DOT_DOT_LT] = ACTIONS(1059), - [anon_sym_null] = ACTIONS(1059), - [anon_sym_true] = ACTIONS(1059), - [anon_sym_false] = ACTIONS(1059), - [aux_sym__val_number_decimal_token1] = ACTIONS(1059), - [aux_sym__val_number_decimal_token2] = ACTIONS(1059), - [anon_sym_DOT2] = ACTIONS(1059), - [aux_sym__val_number_decimal_token3] = ACTIONS(1059), - [aux_sym__val_number_token1] = ACTIONS(1059), - [aux_sym__val_number_token2] = ACTIONS(1059), - [aux_sym__val_number_token3] = ACTIONS(1059), - [aux_sym__val_number_token4] = ACTIONS(1059), - [aux_sym__val_number_token5] = ACTIONS(1059), - [aux_sym__val_number_token6] = ACTIONS(1059), - [anon_sym_0b] = ACTIONS(1059), - [anon_sym_0o] = ACTIONS(1059), - [anon_sym_0x] = ACTIONS(1059), - [sym_val_date] = ACTIONS(1059), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym__str_single_quotes] = ACTIONS(1059), - [sym__str_back_ticks] = ACTIONS(1059), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1059), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1059), + [2704] = { + [sym_comment] = STATE(2704), + [ts_builtin_sym_end] = ACTIONS(1181), + [anon_sym_SEMI] = ACTIONS(1179), + [anon_sym_LF] = ACTIONS(1181), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_PIPE] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(6626), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(6628), + [anon_sym_in] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(6632), + [anon_sym_STAR_STAR] = ACTIONS(6634), + [anon_sym_PLUS_PLUS] = ACTIONS(6634), + [anon_sym_SLASH] = ACTIONS(6632), + [anon_sym_mod] = ACTIONS(6632), + [anon_sym_SLASH_SLASH] = ACTIONS(6632), + [anon_sym_PLUS] = ACTIONS(6628), + [anon_sym_bit_DASHshl] = ACTIONS(6636), + [anon_sym_bit_DASHshr] = ACTIONS(6636), + [anon_sym_EQ_EQ] = ACTIONS(6626), + [anon_sym_BANG_EQ] = ACTIONS(6626), + [anon_sym_LT2] = ACTIONS(6626), + [anon_sym_LT_EQ] = ACTIONS(6626), + [anon_sym_GT_EQ] = ACTIONS(6626), + [anon_sym_not_DASHin] = ACTIONS(1179), + [anon_sym_starts_DASHwith] = ACTIONS(1179), + [anon_sym_ends_DASHwith] = ACTIONS(1179), + [anon_sym_EQ_TILDE] = ACTIONS(1179), + [anon_sym_BANG_TILDE] = ACTIONS(1179), + [anon_sym_bit_DASHand] = ACTIONS(1179), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_not] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1179), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), [anon_sym_POUND] = ACTIONS(113), }, - [3090] = { - [sym_comment] = STATE(3090), - [ts_builtin_sym_end] = ACTIONS(1065), - [anon_sym_SEMI] = ACTIONS(1063), - [anon_sym_LF] = ACTIONS(1065), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_PIPE] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_DASH_DASH] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_STAR_STAR] = ACTIONS(1063), - [anon_sym_PLUS_PLUS] = ACTIONS(1063), - [anon_sym_SLASH] = ACTIONS(1063), - [anon_sym_mod] = ACTIONS(1063), - [anon_sym_SLASH_SLASH] = ACTIONS(1063), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_bit_DASHshl] = ACTIONS(1063), - [anon_sym_bit_DASHshr] = ACTIONS(1063), - [anon_sym_EQ_EQ] = ACTIONS(1063), - [anon_sym_BANG_EQ] = ACTIONS(1063), - [anon_sym_LT2] = ACTIONS(1063), - [anon_sym_LT_EQ] = ACTIONS(1063), - [anon_sym_GT_EQ] = ACTIONS(1063), - [anon_sym_not_DASHin] = ACTIONS(1063), - [anon_sym_starts_DASHwith] = ACTIONS(1063), - [anon_sym_ends_DASHwith] = ACTIONS(1063), - [anon_sym_EQ_TILDE] = ACTIONS(1063), - [anon_sym_BANG_TILDE] = ACTIONS(1063), - [anon_sym_bit_DASHand] = ACTIONS(1063), - [anon_sym_bit_DASHxor] = ACTIONS(1063), - [anon_sym_bit_DASHor] = ACTIONS(1063), - [anon_sym_and] = ACTIONS(1063), - [anon_sym_xor] = ACTIONS(1063), - [anon_sym_or] = ACTIONS(1063), - [anon_sym_not] = ACTIONS(1063), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1063), - [anon_sym_DOT_DOT_LT] = ACTIONS(1063), - [anon_sym_null] = ACTIONS(1063), - [anon_sym_true] = ACTIONS(1063), - [anon_sym_false] = ACTIONS(1063), - [aux_sym__val_number_decimal_token1] = ACTIONS(1063), - [aux_sym__val_number_decimal_token2] = ACTIONS(1063), - [anon_sym_DOT2] = ACTIONS(1063), - [aux_sym__val_number_decimal_token3] = ACTIONS(1063), - [aux_sym__val_number_token1] = ACTIONS(1063), - [aux_sym__val_number_token2] = ACTIONS(1063), - [aux_sym__val_number_token3] = ACTIONS(1063), - [aux_sym__val_number_token4] = ACTIONS(1063), - [aux_sym__val_number_token5] = ACTIONS(1063), - [aux_sym__val_number_token6] = ACTIONS(1063), - [anon_sym_0b] = ACTIONS(1063), - [anon_sym_0o] = ACTIONS(1063), - [anon_sym_0x] = ACTIONS(1063), - [sym_val_date] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [sym__str_single_quotes] = ACTIONS(1063), - [sym__str_back_ticks] = ACTIONS(1063), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1063), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1063), - [anon_sym_POUND] = ACTIONS(113), - }, - [3091] = { - [sym_comment] = STATE(3091), - [ts_builtin_sym_end] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_LF] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_DOLLAR] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_in] = ACTIONS(1316), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_DOT_DOT] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_STAR_STAR] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_SLASH] = ACTIONS(1316), - [anon_sym_mod] = ACTIONS(1316), - [anon_sym_SLASH_SLASH] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_bit_DASHshl] = ACTIONS(1316), - [anon_sym_bit_DASHshr] = ACTIONS(1316), - [anon_sym_EQ_EQ] = ACTIONS(1316), - [anon_sym_BANG_EQ] = ACTIONS(1316), - [anon_sym_LT2] = ACTIONS(1316), - [anon_sym_LT_EQ] = ACTIONS(1316), - [anon_sym_GT_EQ] = ACTIONS(1316), - [anon_sym_not_DASHin] = ACTIONS(1316), - [anon_sym_starts_DASHwith] = ACTIONS(1316), - [anon_sym_ends_DASHwith] = ACTIONS(1316), - [anon_sym_EQ_TILDE] = ACTIONS(1316), - [anon_sym_BANG_TILDE] = ACTIONS(1316), - [anon_sym_bit_DASHand] = ACTIONS(1316), - [anon_sym_bit_DASHxor] = ACTIONS(1316), - [anon_sym_bit_DASHor] = ACTIONS(1316), - [anon_sym_and] = ACTIONS(1316), - [anon_sym_xor] = ACTIONS(1316), - [anon_sym_or] = ACTIONS(1316), - [anon_sym_not] = ACTIONS(1316), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1316), - [anon_sym_DOT_DOT_LT] = ACTIONS(1316), - [anon_sym_null] = ACTIONS(1316), - [anon_sym_true] = ACTIONS(1316), - [anon_sym_false] = ACTIONS(1316), - [aux_sym__val_number_decimal_token1] = ACTIONS(1316), - [aux_sym__val_number_decimal_token2] = ACTIONS(1316), - [anon_sym_DOT2] = ACTIONS(1316), - [aux_sym__val_number_decimal_token3] = ACTIONS(1316), - [aux_sym__val_number_token1] = ACTIONS(1316), - [aux_sym__val_number_token2] = ACTIONS(1316), - [aux_sym__val_number_token3] = ACTIONS(1316), - [aux_sym__val_number_token4] = ACTIONS(1316), - [aux_sym__val_number_token5] = ACTIONS(1316), - [aux_sym__val_number_token6] = ACTIONS(1316), - [anon_sym_0b] = ACTIONS(1316), - [anon_sym_0o] = ACTIONS(1316), - [anon_sym_0x] = ACTIONS(1316), - [sym_val_date] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1316), - [sym__str_single_quotes] = ACTIONS(1316), - [sym__str_back_ticks] = ACTIONS(1316), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1316), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(113), - }, - [3092] = { - [sym_comment] = STATE(3092), - [ts_builtin_sym_end] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym_LF] = ACTIONS(1322), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_LPAREN] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1320), - [anon_sym_DOLLAR] = ACTIONS(1320), - [anon_sym_GT] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_in] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_DOT_DOT] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_STAR_STAR] = ACTIONS(1320), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_SLASH] = ACTIONS(1320), - [anon_sym_mod] = ACTIONS(1320), - [anon_sym_SLASH_SLASH] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1320), - [anon_sym_bit_DASHshl] = ACTIONS(1320), - [anon_sym_bit_DASHshr] = ACTIONS(1320), - [anon_sym_EQ_EQ] = ACTIONS(1320), - [anon_sym_BANG_EQ] = ACTIONS(1320), - [anon_sym_LT2] = ACTIONS(1320), - [anon_sym_LT_EQ] = ACTIONS(1320), - [anon_sym_GT_EQ] = ACTIONS(1320), - [anon_sym_not_DASHin] = ACTIONS(1320), - [anon_sym_starts_DASHwith] = ACTIONS(1320), - [anon_sym_ends_DASHwith] = ACTIONS(1320), - [anon_sym_EQ_TILDE] = ACTIONS(1320), - [anon_sym_BANG_TILDE] = ACTIONS(1320), - [anon_sym_bit_DASHand] = ACTIONS(1320), - [anon_sym_bit_DASHxor] = ACTIONS(1320), - [anon_sym_bit_DASHor] = ACTIONS(1320), - [anon_sym_and] = ACTIONS(1320), - [anon_sym_xor] = ACTIONS(1320), - [anon_sym_or] = ACTIONS(1320), - [anon_sym_not] = ACTIONS(1320), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1320), - [anon_sym_DOT_DOT_LT] = ACTIONS(1320), - [anon_sym_null] = ACTIONS(1320), - [anon_sym_true] = ACTIONS(1320), - [anon_sym_false] = ACTIONS(1320), - [aux_sym__val_number_decimal_token1] = ACTIONS(1320), - [aux_sym__val_number_decimal_token2] = ACTIONS(1320), - [anon_sym_DOT2] = ACTIONS(1320), - [aux_sym__val_number_decimal_token3] = ACTIONS(1320), - [aux_sym__val_number_token1] = ACTIONS(1320), - [aux_sym__val_number_token2] = ACTIONS(1320), - [aux_sym__val_number_token3] = ACTIONS(1320), - [aux_sym__val_number_token4] = ACTIONS(1320), - [aux_sym__val_number_token5] = ACTIONS(1320), - [aux_sym__val_number_token6] = ACTIONS(1320), - [anon_sym_0b] = ACTIONS(1320), - [anon_sym_0o] = ACTIONS(1320), - [anon_sym_0x] = ACTIONS(1320), - [sym_val_date] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1320), - [sym__str_single_quotes] = ACTIONS(1320), - [sym__str_back_ticks] = ACTIONS(1320), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1320), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1320), - [anon_sym_POUND] = ACTIONS(113), - }, - [3093] = { - [sym_comment] = STATE(3093), - [ts_builtin_sym_end] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1354), - [anon_sym_LF] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1354), - [anon_sym_LPAREN] = ACTIONS(1354), - [anon_sym_PIPE] = ACTIONS(1354), - [anon_sym_DOLLAR] = ACTIONS(1354), - [anon_sym_GT] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_in] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_DOT_DOT] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_STAR_STAR] = ACTIONS(1354), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [anon_sym_SLASH] = ACTIONS(1354), - [anon_sym_mod] = ACTIONS(1354), - [anon_sym_SLASH_SLASH] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_bit_DASHshl] = ACTIONS(1354), - [anon_sym_bit_DASHshr] = ACTIONS(1354), - [anon_sym_EQ_EQ] = ACTIONS(1354), - [anon_sym_BANG_EQ] = ACTIONS(1354), - [anon_sym_LT2] = ACTIONS(1354), - [anon_sym_LT_EQ] = ACTIONS(1354), - [anon_sym_GT_EQ] = ACTIONS(1354), - [anon_sym_not_DASHin] = ACTIONS(1354), - [anon_sym_starts_DASHwith] = ACTIONS(1354), - [anon_sym_ends_DASHwith] = ACTIONS(1354), - [anon_sym_EQ_TILDE] = ACTIONS(1354), - [anon_sym_BANG_TILDE] = ACTIONS(1354), - [anon_sym_bit_DASHand] = ACTIONS(1354), - [anon_sym_bit_DASHxor] = ACTIONS(1354), - [anon_sym_bit_DASHor] = ACTIONS(1354), - [anon_sym_and] = ACTIONS(1354), - [anon_sym_xor] = ACTIONS(1354), - [anon_sym_or] = ACTIONS(1354), - [anon_sym_not] = ACTIONS(1354), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1354), - [anon_sym_DOT_DOT_LT] = ACTIONS(1354), - [anon_sym_null] = ACTIONS(1354), - [anon_sym_true] = ACTIONS(1354), - [anon_sym_false] = ACTIONS(1354), - [aux_sym__val_number_decimal_token1] = ACTIONS(1354), - [aux_sym__val_number_decimal_token2] = ACTIONS(1354), - [anon_sym_DOT2] = ACTIONS(1354), - [aux_sym__val_number_decimal_token3] = ACTIONS(1354), - [aux_sym__val_number_token1] = ACTIONS(1354), - [aux_sym__val_number_token2] = ACTIONS(1354), - [aux_sym__val_number_token3] = ACTIONS(1354), - [aux_sym__val_number_token4] = ACTIONS(1354), - [aux_sym__val_number_token5] = ACTIONS(1354), - [aux_sym__val_number_token6] = ACTIONS(1354), - [anon_sym_0b] = ACTIONS(1354), - [anon_sym_0o] = ACTIONS(1354), - [anon_sym_0x] = ACTIONS(1354), - [sym_val_date] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1354), - [sym__str_single_quotes] = ACTIONS(1354), - [sym__str_back_ticks] = ACTIONS(1354), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1354), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1354), - [anon_sym_POUND] = ACTIONS(113), - }, - [3094] = { - [sym_comment] = STATE(3094), - [ts_builtin_sym_end] = ACTIONS(961), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_PIPE] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_DASH_DASH] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_STAR_STAR] = ACTIONS(959), - [anon_sym_PLUS_PLUS] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(959), - [anon_sym_SLASH_SLASH] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_bit_DASHshl] = ACTIONS(959), - [anon_sym_bit_DASHshr] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(959), - [anon_sym_BANG_EQ] = ACTIONS(959), - [anon_sym_LT2] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(959), - [anon_sym_GT_EQ] = ACTIONS(959), - [anon_sym_not_DASHin] = ACTIONS(959), - [anon_sym_starts_DASHwith] = ACTIONS(959), - [anon_sym_ends_DASHwith] = ACTIONS(959), - [anon_sym_EQ_TILDE] = ACTIONS(959), - [anon_sym_BANG_TILDE] = ACTIONS(959), - [anon_sym_bit_DASHand] = ACTIONS(959), - [anon_sym_bit_DASHxor] = ACTIONS(959), - [anon_sym_bit_DASHor] = ACTIONS(959), - [anon_sym_and] = ACTIONS(959), - [anon_sym_xor] = ACTIONS(959), - [anon_sym_or] = ACTIONS(959), - [anon_sym_not] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_DOT_DOT_LT] = ACTIONS(959), - [anon_sym_null] = ACTIONS(959), - [anon_sym_true] = ACTIONS(959), - [anon_sym_false] = ACTIONS(959), - [aux_sym__val_number_decimal_token1] = ACTIONS(959), - [aux_sym__val_number_decimal_token2] = ACTIONS(959), - [anon_sym_DOT2] = ACTIONS(959), - [aux_sym__val_number_decimal_token3] = ACTIONS(959), - [aux_sym__val_number_token1] = ACTIONS(959), - [aux_sym__val_number_token2] = ACTIONS(959), - [aux_sym__val_number_token3] = ACTIONS(959), - [aux_sym__val_number_token4] = ACTIONS(959), - [aux_sym__val_number_token5] = ACTIONS(959), - [aux_sym__val_number_token6] = ACTIONS(959), - [anon_sym_0b] = ACTIONS(959), - [anon_sym_0o] = ACTIONS(959), - [anon_sym_0x] = ACTIONS(959), - [sym_val_date] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [sym__str_single_quotes] = ACTIONS(959), - [sym__str_back_ticks] = ACTIONS(959), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(959), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(959), - [anon_sym_POUND] = ACTIONS(113), - }, - [3095] = { - [sym_comment] = STATE(3095), - [ts_builtin_sym_end] = ACTIONS(1360), - [anon_sym_SEMI] = ACTIONS(1358), - [anon_sym_LF] = ACTIONS(1360), - [anon_sym_LBRACK] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1358), - [anon_sym_PIPE] = ACTIONS(1358), - [anon_sym_DOLLAR] = ACTIONS(1358), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_in] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_DOT_DOT] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_STAR_STAR] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_SLASH] = ACTIONS(1358), - [anon_sym_mod] = ACTIONS(1358), - [anon_sym_SLASH_SLASH] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_bit_DASHshl] = ACTIONS(1358), - [anon_sym_bit_DASHshr] = ACTIONS(1358), - [anon_sym_EQ_EQ] = ACTIONS(1358), - [anon_sym_BANG_EQ] = ACTIONS(1358), - [anon_sym_LT2] = ACTIONS(1358), - [anon_sym_LT_EQ] = ACTIONS(1358), - [anon_sym_GT_EQ] = ACTIONS(1358), - [anon_sym_not_DASHin] = ACTIONS(1358), - [anon_sym_starts_DASHwith] = ACTIONS(1358), - [anon_sym_ends_DASHwith] = ACTIONS(1358), - [anon_sym_EQ_TILDE] = ACTIONS(1358), - [anon_sym_BANG_TILDE] = ACTIONS(1358), - [anon_sym_bit_DASHand] = ACTIONS(1358), - [anon_sym_bit_DASHxor] = ACTIONS(1358), - [anon_sym_bit_DASHor] = ACTIONS(1358), - [anon_sym_and] = ACTIONS(1358), - [anon_sym_xor] = ACTIONS(1358), - [anon_sym_or] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1358), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1358), - [anon_sym_DOT_DOT_LT] = ACTIONS(1358), - [anon_sym_null] = ACTIONS(1358), - [anon_sym_true] = ACTIONS(1358), - [anon_sym_false] = ACTIONS(1358), - [aux_sym__val_number_decimal_token1] = ACTIONS(1358), - [aux_sym__val_number_decimal_token2] = ACTIONS(1358), - [anon_sym_DOT2] = ACTIONS(1358), - [aux_sym__val_number_decimal_token3] = ACTIONS(1358), - [aux_sym__val_number_token1] = ACTIONS(1358), - [aux_sym__val_number_token2] = ACTIONS(1358), - [aux_sym__val_number_token3] = ACTIONS(1358), - [aux_sym__val_number_token4] = ACTIONS(1358), - [aux_sym__val_number_token5] = ACTIONS(1358), - [aux_sym__val_number_token6] = ACTIONS(1358), - [anon_sym_0b] = ACTIONS(1358), - [anon_sym_0o] = ACTIONS(1358), - [anon_sym_0x] = ACTIONS(1358), - [sym_val_date] = ACTIONS(1358), - [anon_sym_DQUOTE] = ACTIONS(1358), - [sym__str_single_quotes] = ACTIONS(1358), - [sym__str_back_ticks] = ACTIONS(1358), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1358), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1358), - [anon_sym_POUND] = ACTIONS(113), - }, - [3096] = { - [sym_comment] = STATE(3096), - [ts_builtin_sym_end] = ACTIONS(1366), - [anon_sym_SEMI] = ACTIONS(1198), - [anon_sym_LF] = ACTIONS(1366), - [anon_sym_LBRACK] = ACTIONS(1198), - [anon_sym_LPAREN] = ACTIONS(1198), - [anon_sym_PIPE] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(1198), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1198), - [anon_sym_in] = ACTIONS(1198), - [anon_sym_LBRACE] = ACTIONS(1198), - [anon_sym_DOT_DOT] = ACTIONS(1198), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_STAR_STAR] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_SLASH] = ACTIONS(1198), - [anon_sym_mod] = ACTIONS(1198), - [anon_sym_SLASH_SLASH] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1198), - [anon_sym_bit_DASHshl] = ACTIONS(1198), - [anon_sym_bit_DASHshr] = ACTIONS(1198), - [anon_sym_EQ_EQ] = ACTIONS(1198), - [anon_sym_BANG_EQ] = ACTIONS(1198), - [anon_sym_LT2] = ACTIONS(1198), - [anon_sym_LT_EQ] = ACTIONS(1198), - [anon_sym_GT_EQ] = ACTIONS(1198), - [anon_sym_not_DASHin] = ACTIONS(1198), - [anon_sym_starts_DASHwith] = ACTIONS(1198), - [anon_sym_ends_DASHwith] = ACTIONS(1198), - [anon_sym_EQ_TILDE] = ACTIONS(1198), - [anon_sym_BANG_TILDE] = ACTIONS(1198), - [anon_sym_bit_DASHand] = ACTIONS(1198), - [anon_sym_bit_DASHxor] = ACTIONS(1198), - [anon_sym_bit_DASHor] = ACTIONS(1198), - [anon_sym_and] = ACTIONS(1198), - [anon_sym_xor] = ACTIONS(1198), - [anon_sym_or] = ACTIONS(1198), - [anon_sym_not] = ACTIONS(1198), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1198), - [anon_sym_DOT_DOT_LT] = ACTIONS(1198), - [anon_sym_null] = ACTIONS(1198), - [anon_sym_true] = ACTIONS(1198), - [anon_sym_false] = ACTIONS(1198), - [aux_sym__val_number_decimal_token1] = ACTIONS(1198), - [aux_sym__val_number_decimal_token2] = ACTIONS(1198), - [anon_sym_DOT2] = ACTIONS(1198), - [aux_sym__val_number_decimal_token3] = ACTIONS(1198), - [aux_sym__val_number_token1] = ACTIONS(1198), - [aux_sym__val_number_token2] = ACTIONS(1198), - [aux_sym__val_number_token3] = ACTIONS(1198), - [aux_sym__val_number_token4] = ACTIONS(1198), - [aux_sym__val_number_token5] = ACTIONS(1198), - [aux_sym__val_number_token6] = ACTIONS(1198), - [anon_sym_0b] = ACTIONS(1198), - [anon_sym_0o] = ACTIONS(1198), - [anon_sym_0x] = ACTIONS(1198), - [sym_val_date] = ACTIONS(1198), - [anon_sym_DQUOTE] = ACTIONS(1198), - [sym__str_single_quotes] = ACTIONS(1198), - [sym__str_back_ticks] = ACTIONS(1198), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1198), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1198), - [anon_sym_POUND] = ACTIONS(113), - }, - [3097] = { - [sym_comment] = STATE(3097), - [ts_builtin_sym_end] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_PIPE] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), - }, - [3098] = { - [sym_comment] = STATE(3098), - [ts_builtin_sym_end] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_PIPE] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), - }, - [3099] = { - [sym_comment] = STATE(3099), - [ts_builtin_sym_end] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_PIPE] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), - }, - [3100] = { - [sym_comment] = STATE(3100), - [ts_builtin_sym_end] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_PIPE] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), - }, - [3101] = { - [sym_comment] = STATE(3101), - [ts_builtin_sym_end] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_PIPE] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), - }, - [3102] = { - [sym_comment] = STATE(3102), - [ts_builtin_sym_end] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_PIPE] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), - }, - [3103] = { - [sym_comment] = STATE(3103), - [ts_builtin_sym_end] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_PIPE] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), - }, - [3104] = { - [sym_comment] = STATE(3104), - [ts_builtin_sym_end] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_PIPE] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), - }, - [3105] = { - [sym_comment] = STATE(3105), - [ts_builtin_sym_end] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_PIPE] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), - }, - [3106] = { - [sym_comment] = STATE(3106), - [ts_builtin_sym_end] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_PIPE] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), - }, - [3107] = { - [sym_comment] = STATE(3107), - [ts_builtin_sym_end] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_PIPE] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), - }, - [3108] = { - [sym_comment] = STATE(3108), - [ts_builtin_sym_end] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_PIPE] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), - }, - [3109] = { - [sym_comment] = STATE(3109), - [ts_builtin_sym_end] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_PIPE] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_STAR_STAR] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1368), - [anon_sym_bit_DASHshr] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_not_DASHin] = ACTIONS(1368), - [anon_sym_starts_DASHwith] = ACTIONS(1368), - [anon_sym_ends_DASHwith] = ACTIONS(1368), - [anon_sym_EQ_TILDE] = ACTIONS(1368), - [anon_sym_BANG_TILDE] = ACTIONS(1368), - [anon_sym_bit_DASHand] = ACTIONS(1368), - [anon_sym_bit_DASHxor] = ACTIONS(1368), - [anon_sym_bit_DASHor] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1368), - [anon_sym_xor] = ACTIONS(1368), - [anon_sym_or] = ACTIONS(1368), - [anon_sym_not] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [aux_sym__val_number_token4] = ACTIONS(1368), - [aux_sym__val_number_token5] = ACTIONS(1368), - [aux_sym__val_number_token6] = ACTIONS(1368), - [anon_sym_0b] = ACTIONS(1368), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(113), - }, - [3110] = { - [sym_comment] = STATE(3110), - [ts_builtin_sym_end] = ACTIONS(1408), - [anon_sym_SEMI] = ACTIONS(1406), - [anon_sym_LF] = ACTIONS(1408), - [anon_sym_LBRACK] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1406), - [anon_sym_PIPE] = ACTIONS(1406), - [anon_sym_DOLLAR] = ACTIONS(1406), - [anon_sym_GT] = ACTIONS(1406), - [anon_sym_DASH_DASH] = ACTIONS(1406), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_in] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_DOT_DOT] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1406), - [anon_sym_STAR_STAR] = ACTIONS(1406), - [anon_sym_PLUS_PLUS] = ACTIONS(1406), - [anon_sym_SLASH] = ACTIONS(1406), - [anon_sym_mod] = ACTIONS(1406), - [anon_sym_SLASH_SLASH] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_bit_DASHshl] = ACTIONS(1406), - [anon_sym_bit_DASHshr] = ACTIONS(1406), - [anon_sym_EQ_EQ] = ACTIONS(1406), - [anon_sym_BANG_EQ] = ACTIONS(1406), - [anon_sym_LT2] = ACTIONS(1406), - [anon_sym_LT_EQ] = ACTIONS(1406), - [anon_sym_GT_EQ] = ACTIONS(1406), - [anon_sym_not_DASHin] = ACTIONS(1406), - [anon_sym_starts_DASHwith] = ACTIONS(1406), - [anon_sym_ends_DASHwith] = ACTIONS(1406), - [anon_sym_EQ_TILDE] = ACTIONS(1406), - [anon_sym_BANG_TILDE] = ACTIONS(1406), - [anon_sym_bit_DASHand] = ACTIONS(1406), - [anon_sym_bit_DASHxor] = ACTIONS(1406), - [anon_sym_bit_DASHor] = ACTIONS(1406), - [anon_sym_and] = ACTIONS(1406), - [anon_sym_xor] = ACTIONS(1406), - [anon_sym_or] = ACTIONS(1406), - [anon_sym_not] = ACTIONS(1406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1406), - [anon_sym_DOT_DOT_LT] = ACTIONS(1406), - [anon_sym_null] = ACTIONS(1406), - [anon_sym_true] = ACTIONS(1406), - [anon_sym_false] = ACTIONS(1406), - [aux_sym__val_number_decimal_token1] = ACTIONS(1406), - [aux_sym__val_number_decimal_token2] = ACTIONS(1406), - [anon_sym_DOT2] = ACTIONS(1406), - [aux_sym__val_number_decimal_token3] = ACTIONS(1406), - [aux_sym__val_number_token1] = ACTIONS(1406), - [aux_sym__val_number_token2] = ACTIONS(1406), - [aux_sym__val_number_token3] = ACTIONS(1406), - [aux_sym__val_number_token4] = ACTIONS(1406), - [aux_sym__val_number_token5] = ACTIONS(1406), - [aux_sym__val_number_token6] = ACTIONS(1406), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1406), - [anon_sym_0x] = ACTIONS(1406), - [sym_val_date] = ACTIONS(1406), - [anon_sym_DQUOTE] = ACTIONS(1406), - [sym__str_single_quotes] = ACTIONS(1406), - [sym__str_back_ticks] = ACTIONS(1406), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1406), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1406), - [anon_sym_POUND] = ACTIONS(113), - }, - [3111] = { - [sym_comment] = STATE(3111), - [ts_builtin_sym_end] = ACTIONS(1196), - [anon_sym_SEMI] = ACTIONS(1194), - [anon_sym_LF] = ACTIONS(1196), - [anon_sym_LBRACK] = ACTIONS(1194), - [anon_sym_LPAREN] = ACTIONS(1194), - [anon_sym_PIPE] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1194), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_in] = ACTIONS(1198), - [anon_sym_LBRACE] = ACTIONS(1194), - [anon_sym_DOT_DOT] = ACTIONS(1194), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_STAR_STAR] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_SLASH] = ACTIONS(1198), - [anon_sym_mod] = ACTIONS(1198), - [anon_sym_SLASH_SLASH] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1198), - [anon_sym_bit_DASHshl] = ACTIONS(1198), - [anon_sym_bit_DASHshr] = ACTIONS(1198), - [anon_sym_EQ_EQ] = ACTIONS(1198), - [anon_sym_BANG_EQ] = ACTIONS(1198), - [anon_sym_LT2] = ACTIONS(1198), - [anon_sym_LT_EQ] = ACTIONS(1198), - [anon_sym_GT_EQ] = ACTIONS(1198), - [anon_sym_not_DASHin] = ACTIONS(1198), - [anon_sym_starts_DASHwith] = ACTIONS(1198), - [anon_sym_ends_DASHwith] = ACTIONS(1198), - [anon_sym_EQ_TILDE] = ACTIONS(1198), - [anon_sym_BANG_TILDE] = ACTIONS(1198), - [anon_sym_bit_DASHand] = ACTIONS(1198), - [anon_sym_bit_DASHxor] = ACTIONS(1198), - [anon_sym_bit_DASHor] = ACTIONS(1198), - [anon_sym_and] = ACTIONS(1198), - [anon_sym_xor] = ACTIONS(1198), - [anon_sym_or] = ACTIONS(1198), - [anon_sym_not] = ACTIONS(1194), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1194), - [anon_sym_DOT_DOT_LT] = ACTIONS(1194), - [anon_sym_null] = ACTIONS(1194), - [anon_sym_true] = ACTIONS(1194), - [anon_sym_false] = ACTIONS(1194), - [aux_sym__val_number_decimal_token1] = ACTIONS(1194), - [aux_sym__val_number_decimal_token2] = ACTIONS(1194), - [anon_sym_DOT2] = ACTIONS(1194), - [aux_sym__val_number_decimal_token3] = ACTIONS(1194), - [aux_sym__val_number_token1] = ACTIONS(1194), - [aux_sym__val_number_token2] = ACTIONS(1194), - [aux_sym__val_number_token3] = ACTIONS(1194), - [aux_sym__val_number_token4] = ACTIONS(1194), - [aux_sym__val_number_token5] = ACTIONS(1194), - [aux_sym__val_number_token6] = ACTIONS(1194), - [anon_sym_0b] = ACTIONS(1194), - [anon_sym_0o] = ACTIONS(1194), - [anon_sym_0x] = ACTIONS(1194), - [sym_val_date] = ACTIONS(1194), - [anon_sym_DQUOTE] = ACTIONS(1194), - [sym__str_single_quotes] = ACTIONS(1194), - [sym__str_back_ticks] = ACTIONS(1194), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1194), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1194), - [anon_sym_POUND] = ACTIONS(113), - }, - [3112] = { - [sym_comment] = STATE(3112), - [ts_builtin_sym_end] = ACTIONS(1170), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_LF] = ACTIONS(1170), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_PIPE] = ACTIONS(1168), - [anon_sym_DOLLAR] = ACTIONS(1168), - [anon_sym_GT] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1168), - [anon_sym_in] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1168), - [anon_sym_DOT_DOT] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_STAR_STAR] = ACTIONS(1168), - [anon_sym_PLUS_PLUS] = ACTIONS(1168), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_mod] = ACTIONS(1168), - [anon_sym_SLASH_SLASH] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(1168), - [anon_sym_bit_DASHshl] = ACTIONS(1168), - [anon_sym_bit_DASHshr] = ACTIONS(1168), - [anon_sym_EQ_EQ] = ACTIONS(1168), - [anon_sym_BANG_EQ] = ACTIONS(1168), - [anon_sym_LT2] = ACTIONS(1168), - [anon_sym_LT_EQ] = ACTIONS(1168), - [anon_sym_GT_EQ] = ACTIONS(1168), - [anon_sym_not_DASHin] = ACTIONS(1168), - [anon_sym_starts_DASHwith] = ACTIONS(1168), - [anon_sym_ends_DASHwith] = ACTIONS(1168), - [anon_sym_EQ_TILDE] = ACTIONS(1168), - [anon_sym_BANG_TILDE] = ACTIONS(1168), - [anon_sym_bit_DASHand] = ACTIONS(1168), - [anon_sym_bit_DASHxor] = ACTIONS(1168), - [anon_sym_bit_DASHor] = ACTIONS(1168), - [anon_sym_and] = ACTIONS(1168), - [anon_sym_xor] = ACTIONS(1168), - [anon_sym_or] = ACTIONS(1168), - [anon_sym_not] = ACTIONS(1168), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1168), - [anon_sym_DOT_DOT_LT] = ACTIONS(1168), - [anon_sym_null] = ACTIONS(1168), - [anon_sym_true] = ACTIONS(1168), - [anon_sym_false] = ACTIONS(1168), - [aux_sym__val_number_decimal_token1] = ACTIONS(1168), - [aux_sym__val_number_decimal_token2] = ACTIONS(1168), - [anon_sym_DOT2] = ACTIONS(1168), - [aux_sym__val_number_decimal_token3] = ACTIONS(1168), - [aux_sym__val_number_token1] = ACTIONS(1168), - [aux_sym__val_number_token2] = ACTIONS(1168), - [aux_sym__val_number_token3] = ACTIONS(1168), - [aux_sym__val_number_token4] = ACTIONS(1168), - [aux_sym__val_number_token5] = ACTIONS(1168), - [aux_sym__val_number_token6] = ACTIONS(1168), - [anon_sym_0b] = ACTIONS(1168), - [anon_sym_0o] = ACTIONS(1168), - [anon_sym_0x] = ACTIONS(1168), - [sym_val_date] = ACTIONS(1168), - [anon_sym_DQUOTE] = ACTIONS(1168), - [sym__str_single_quotes] = ACTIONS(1168), - [sym__str_back_ticks] = ACTIONS(1168), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1168), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1168), - [anon_sym_POUND] = ACTIONS(113), - }, - [3113] = { - [sym_comment] = STATE(3113), - [ts_builtin_sym_end] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1410), - [anon_sym_LF] = ACTIONS(1412), - [anon_sym_LBRACK] = ACTIONS(1410), - [anon_sym_LPAREN] = ACTIONS(1410), - [anon_sym_PIPE] = ACTIONS(1410), - [anon_sym_DOLLAR] = ACTIONS(1410), - [anon_sym_GT] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_in] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1410), - [anon_sym_DOT_DOT] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1410), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_SLASH] = ACTIONS(1410), - [anon_sym_mod] = ACTIONS(1410), - [anon_sym_SLASH_SLASH] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_bit_DASHshl] = ACTIONS(1410), - [anon_sym_bit_DASHshr] = ACTIONS(1410), - [anon_sym_EQ_EQ] = ACTIONS(1410), - [anon_sym_BANG_EQ] = ACTIONS(1410), - [anon_sym_LT2] = ACTIONS(1410), - [anon_sym_LT_EQ] = ACTIONS(1410), - [anon_sym_GT_EQ] = ACTIONS(1410), - [anon_sym_not_DASHin] = ACTIONS(1410), - [anon_sym_starts_DASHwith] = ACTIONS(1410), - [anon_sym_ends_DASHwith] = ACTIONS(1410), - [anon_sym_EQ_TILDE] = ACTIONS(1410), - [anon_sym_BANG_TILDE] = ACTIONS(1410), - [anon_sym_bit_DASHand] = ACTIONS(1410), - [anon_sym_bit_DASHxor] = ACTIONS(1410), - [anon_sym_bit_DASHor] = ACTIONS(1410), - [anon_sym_and] = ACTIONS(1410), - [anon_sym_xor] = ACTIONS(1410), - [anon_sym_or] = ACTIONS(1410), - [anon_sym_not] = ACTIONS(1410), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1410), - [anon_sym_DOT_DOT_LT] = ACTIONS(1410), - [anon_sym_null] = ACTIONS(1410), - [anon_sym_true] = ACTIONS(1410), - [anon_sym_false] = ACTIONS(1410), - [aux_sym__val_number_decimal_token1] = ACTIONS(1410), - [aux_sym__val_number_decimal_token2] = ACTIONS(1410), - [anon_sym_DOT2] = ACTIONS(1410), - [aux_sym__val_number_decimal_token3] = ACTIONS(1410), - [aux_sym__val_number_token1] = ACTIONS(1410), - [aux_sym__val_number_token2] = ACTIONS(1410), - [aux_sym__val_number_token3] = ACTIONS(1410), - [aux_sym__val_number_token4] = ACTIONS(1410), - [aux_sym__val_number_token5] = ACTIONS(1410), - [aux_sym__val_number_token6] = ACTIONS(1410), - [anon_sym_0b] = ACTIONS(1410), - [anon_sym_0o] = ACTIONS(1410), - [anon_sym_0x] = ACTIONS(1410), - [sym_val_date] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1410), - [sym__str_single_quotes] = ACTIONS(1410), - [sym__str_back_ticks] = ACTIONS(1410), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1410), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1410), - [anon_sym_POUND] = ACTIONS(113), - }, - [3114] = { - [sym_comment] = STATE(3114), - [ts_builtin_sym_end] = ACTIONS(1288), - [anon_sym_SEMI] = ACTIONS(1286), - [anon_sym_LF] = ACTIONS(1288), - [anon_sym_LBRACK] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(1286), - [anon_sym_PIPE] = ACTIONS(1286), - [anon_sym_DOLLAR] = ACTIONS(1286), - [anon_sym_GT] = ACTIONS(1286), - [anon_sym_DASH_DASH] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1286), - [anon_sym_in] = ACTIONS(1286), - [anon_sym_LBRACE] = ACTIONS(1286), - [anon_sym_DOT_DOT] = ACTIONS(1286), - [anon_sym_STAR] = ACTIONS(1286), - [anon_sym_STAR_STAR] = ACTIONS(1286), - [anon_sym_PLUS_PLUS] = ACTIONS(1286), - [anon_sym_SLASH] = ACTIONS(1286), - [anon_sym_mod] = ACTIONS(1286), - [anon_sym_SLASH_SLASH] = ACTIONS(1286), - [anon_sym_PLUS] = ACTIONS(1286), - [anon_sym_bit_DASHshl] = ACTIONS(1286), - [anon_sym_bit_DASHshr] = ACTIONS(1286), - [anon_sym_EQ_EQ] = ACTIONS(1286), - [anon_sym_BANG_EQ] = ACTIONS(1286), - [anon_sym_LT2] = ACTIONS(1286), - [anon_sym_LT_EQ] = ACTIONS(1286), - [anon_sym_GT_EQ] = ACTIONS(1286), - [anon_sym_not_DASHin] = ACTIONS(1286), - [anon_sym_starts_DASHwith] = ACTIONS(1286), - [anon_sym_ends_DASHwith] = ACTIONS(1286), - [anon_sym_EQ_TILDE] = ACTIONS(1286), - [anon_sym_BANG_TILDE] = ACTIONS(1286), - [anon_sym_bit_DASHand] = ACTIONS(1286), - [anon_sym_bit_DASHxor] = ACTIONS(1286), - [anon_sym_bit_DASHor] = ACTIONS(1286), - [anon_sym_and] = ACTIONS(1286), - [anon_sym_xor] = ACTIONS(1286), - [anon_sym_or] = ACTIONS(1286), - [anon_sym_not] = ACTIONS(1286), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1286), - [anon_sym_DOT_DOT_LT] = ACTIONS(1286), - [anon_sym_null] = ACTIONS(1286), - [anon_sym_true] = ACTIONS(1286), - [anon_sym_false] = ACTIONS(1286), - [aux_sym__val_number_decimal_token1] = ACTIONS(1286), - [aux_sym__val_number_decimal_token2] = ACTIONS(1286), - [anon_sym_DOT2] = ACTIONS(1286), - [aux_sym__val_number_decimal_token3] = ACTIONS(1286), - [aux_sym__val_number_token1] = ACTIONS(1286), - [aux_sym__val_number_token2] = ACTIONS(1286), - [aux_sym__val_number_token3] = ACTIONS(1286), - [aux_sym__val_number_token4] = ACTIONS(1286), - [aux_sym__val_number_token5] = ACTIONS(1286), - [aux_sym__val_number_token6] = ACTIONS(1286), - [anon_sym_0b] = ACTIONS(1286), - [anon_sym_0o] = ACTIONS(1286), - [anon_sym_0x] = ACTIONS(1286), - [sym_val_date] = ACTIONS(1286), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym__str_single_quotes] = ACTIONS(1286), - [sym__str_back_ticks] = ACTIONS(1286), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1286), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1286), - [anon_sym_POUND] = ACTIONS(113), - }, - [3115] = { - [sym_comment] = STATE(3115), - [ts_builtin_sym_end] = ACTIONS(1378), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_PIPE] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(7048), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(7050), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(7054), - [anon_sym_STAR_STAR] = ACTIONS(7056), - [anon_sym_PLUS_PLUS] = ACTIONS(7056), - [anon_sym_SLASH] = ACTIONS(7054), - [anon_sym_mod] = ACTIONS(7054), - [anon_sym_SLASH_SLASH] = ACTIONS(7054), - [anon_sym_PLUS] = ACTIONS(7050), - [anon_sym_bit_DASHshl] = ACTIONS(7058), - [anon_sym_bit_DASHshr] = ACTIONS(7058), - [anon_sym_EQ_EQ] = ACTIONS(7048), - [anon_sym_BANG_EQ] = ACTIONS(7048), - [anon_sym_LT2] = ACTIONS(7048), - [anon_sym_LT_EQ] = ACTIONS(7048), - [anon_sym_GT_EQ] = ACTIONS(7048), - [anon_sym_not_DASHin] = ACTIONS(1376), - [anon_sym_starts_DASHwith] = ACTIONS(1376), - [anon_sym_ends_DASHwith] = ACTIONS(1376), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), - }, - [3116] = { - [sym_comment] = STATE(3116), - [ts_builtin_sym_end] = ACTIONS(1378), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_PIPE] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(7050), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(7054), - [anon_sym_STAR_STAR] = ACTIONS(7056), - [anon_sym_PLUS_PLUS] = ACTIONS(7056), - [anon_sym_SLASH] = ACTIONS(7054), - [anon_sym_mod] = ACTIONS(7054), - [anon_sym_SLASH_SLASH] = ACTIONS(7054), - [anon_sym_PLUS] = ACTIONS(7050), - [anon_sym_bit_DASHshl] = ACTIONS(1376), - [anon_sym_bit_DASHshr] = ACTIONS(1376), - [anon_sym_EQ_EQ] = ACTIONS(1376), - [anon_sym_BANG_EQ] = ACTIONS(1376), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1376), - [anon_sym_GT_EQ] = ACTIONS(1376), - [anon_sym_not_DASHin] = ACTIONS(1376), - [anon_sym_starts_DASHwith] = ACTIONS(1376), - [anon_sym_ends_DASHwith] = ACTIONS(1376), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), - }, - [3117] = { - [sym_comment] = STATE(3117), - [ts_builtin_sym_end] = ACTIONS(1378), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_PIPE] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(7048), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(7050), - [anon_sym_in] = ACTIONS(7052), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(7054), - [anon_sym_STAR_STAR] = ACTIONS(7056), - [anon_sym_PLUS_PLUS] = ACTIONS(7056), - [anon_sym_SLASH] = ACTIONS(7054), - [anon_sym_mod] = ACTIONS(7054), - [anon_sym_SLASH_SLASH] = ACTIONS(7054), - [anon_sym_PLUS] = ACTIONS(7050), - [anon_sym_bit_DASHshl] = ACTIONS(7058), - [anon_sym_bit_DASHshr] = ACTIONS(7058), - [anon_sym_EQ_EQ] = ACTIONS(7048), - [anon_sym_BANG_EQ] = ACTIONS(7048), - [anon_sym_LT2] = ACTIONS(7048), - [anon_sym_LT_EQ] = ACTIONS(7048), - [anon_sym_GT_EQ] = ACTIONS(7048), - [anon_sym_not_DASHin] = ACTIONS(7052), - [anon_sym_starts_DASHwith] = ACTIONS(7052), - [anon_sym_ends_DASHwith] = ACTIONS(7052), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), - }, - [3118] = { - [sym_comment] = STATE(3118), - [ts_builtin_sym_end] = ACTIONS(1378), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_PIPE] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(7054), - [anon_sym_STAR_STAR] = ACTIONS(7056), - [anon_sym_PLUS_PLUS] = ACTIONS(7056), - [anon_sym_SLASH] = ACTIONS(7054), - [anon_sym_mod] = ACTIONS(7054), - [anon_sym_SLASH_SLASH] = ACTIONS(7054), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_bit_DASHshl] = ACTIONS(1376), - [anon_sym_bit_DASHshr] = ACTIONS(1376), - [anon_sym_EQ_EQ] = ACTIONS(1376), - [anon_sym_BANG_EQ] = ACTIONS(1376), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1376), - [anon_sym_GT_EQ] = ACTIONS(1376), - [anon_sym_not_DASHin] = ACTIONS(1376), - [anon_sym_starts_DASHwith] = ACTIONS(1376), - [anon_sym_ends_DASHwith] = ACTIONS(1376), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), - }, - [3119] = { - [sym_comment] = STATE(3119), - [ts_builtin_sym_end] = ACTIONS(1378), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_PIPE] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(7056), - [anon_sym_PLUS_PLUS] = ACTIONS(7056), - [anon_sym_SLASH] = ACTIONS(1376), - [anon_sym_mod] = ACTIONS(1376), - [anon_sym_SLASH_SLASH] = ACTIONS(1376), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_bit_DASHshl] = ACTIONS(1376), - [anon_sym_bit_DASHshr] = ACTIONS(1376), - [anon_sym_EQ_EQ] = ACTIONS(1376), - [anon_sym_BANG_EQ] = ACTIONS(1376), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1376), - [anon_sym_GT_EQ] = ACTIONS(1376), - [anon_sym_not_DASHin] = ACTIONS(1376), - [anon_sym_starts_DASHwith] = ACTIONS(1376), - [anon_sym_ends_DASHwith] = ACTIONS(1376), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), - }, - [3120] = { - [sym_comment] = STATE(3120), - [ts_builtin_sym_end] = ACTIONS(1378), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_PIPE] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(7050), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(7054), - [anon_sym_STAR_STAR] = ACTIONS(7056), - [anon_sym_PLUS_PLUS] = ACTIONS(7056), - [anon_sym_SLASH] = ACTIONS(7054), - [anon_sym_mod] = ACTIONS(7054), - [anon_sym_SLASH_SLASH] = ACTIONS(7054), - [anon_sym_PLUS] = ACTIONS(7050), - [anon_sym_bit_DASHshl] = ACTIONS(7058), - [anon_sym_bit_DASHshr] = ACTIONS(7058), - [anon_sym_EQ_EQ] = ACTIONS(1376), - [anon_sym_BANG_EQ] = ACTIONS(1376), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1376), - [anon_sym_GT_EQ] = ACTIONS(1376), - [anon_sym_not_DASHin] = ACTIONS(1376), - [anon_sym_starts_DASHwith] = ACTIONS(1376), - [anon_sym_ends_DASHwith] = ACTIONS(1376), - [anon_sym_EQ_TILDE] = ACTIONS(1376), - [anon_sym_BANG_TILDE] = ACTIONS(1376), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), - }, - [3121] = { - [sym_comment] = STATE(3121), - [ts_builtin_sym_end] = ACTIONS(1378), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_PIPE] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(7048), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(7050), - [anon_sym_in] = ACTIONS(7052), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(7054), - [anon_sym_STAR_STAR] = ACTIONS(7056), - [anon_sym_PLUS_PLUS] = ACTIONS(7056), - [anon_sym_SLASH] = ACTIONS(7054), - [anon_sym_mod] = ACTIONS(7054), - [anon_sym_SLASH_SLASH] = ACTIONS(7054), - [anon_sym_PLUS] = ACTIONS(7050), - [anon_sym_bit_DASHshl] = ACTIONS(7058), - [anon_sym_bit_DASHshr] = ACTIONS(7058), - [anon_sym_EQ_EQ] = ACTIONS(7048), - [anon_sym_BANG_EQ] = ACTIONS(7048), - [anon_sym_LT2] = ACTIONS(7048), - [anon_sym_LT_EQ] = ACTIONS(7048), - [anon_sym_GT_EQ] = ACTIONS(7048), - [anon_sym_not_DASHin] = ACTIONS(7052), - [anon_sym_starts_DASHwith] = ACTIONS(7052), - [anon_sym_ends_DASHwith] = ACTIONS(7052), - [anon_sym_EQ_TILDE] = ACTIONS(7060), - [anon_sym_BANG_TILDE] = ACTIONS(7060), - [anon_sym_bit_DASHand] = ACTIONS(1376), - [anon_sym_bit_DASHxor] = ACTIONS(1376), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), - }, - [3122] = { - [sym_comment] = STATE(3122), - [ts_builtin_sym_end] = ACTIONS(1378), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_PIPE] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(7048), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(7050), - [anon_sym_in] = ACTIONS(7052), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(7054), - [anon_sym_STAR_STAR] = ACTIONS(7056), - [anon_sym_PLUS_PLUS] = ACTIONS(7056), - [anon_sym_SLASH] = ACTIONS(7054), - [anon_sym_mod] = ACTIONS(7054), - [anon_sym_SLASH_SLASH] = ACTIONS(7054), - [anon_sym_PLUS] = ACTIONS(7050), - [anon_sym_bit_DASHshl] = ACTIONS(7058), - [anon_sym_bit_DASHshr] = ACTIONS(7058), - [anon_sym_EQ_EQ] = ACTIONS(7048), - [anon_sym_BANG_EQ] = ACTIONS(7048), - [anon_sym_LT2] = ACTIONS(7048), - [anon_sym_LT_EQ] = ACTIONS(7048), - [anon_sym_GT_EQ] = ACTIONS(7048), - [anon_sym_not_DASHin] = ACTIONS(7052), - [anon_sym_starts_DASHwith] = ACTIONS(7052), - [anon_sym_ends_DASHwith] = ACTIONS(7052), - [anon_sym_EQ_TILDE] = ACTIONS(7060), - [anon_sym_BANG_TILDE] = ACTIONS(7060), - [anon_sym_bit_DASHand] = ACTIONS(7062), - [anon_sym_bit_DASHxor] = ACTIONS(7088), - [anon_sym_bit_DASHor] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), - }, - [3123] = { - [sym_comment] = STATE(3123), - [ts_builtin_sym_end] = ACTIONS(1378), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_PIPE] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(7048), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(7050), - [anon_sym_in] = ACTIONS(7052), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(7054), - [anon_sym_STAR_STAR] = ACTIONS(7056), - [anon_sym_PLUS_PLUS] = ACTIONS(7056), - [anon_sym_SLASH] = ACTIONS(7054), - [anon_sym_mod] = ACTIONS(7054), - [anon_sym_SLASH_SLASH] = ACTIONS(7054), - [anon_sym_PLUS] = ACTIONS(7050), - [anon_sym_bit_DASHshl] = ACTIONS(7058), - [anon_sym_bit_DASHshr] = ACTIONS(7058), - [anon_sym_EQ_EQ] = ACTIONS(7048), - [anon_sym_BANG_EQ] = ACTIONS(7048), - [anon_sym_LT2] = ACTIONS(7048), - [anon_sym_LT_EQ] = ACTIONS(7048), - [anon_sym_GT_EQ] = ACTIONS(7048), - [anon_sym_not_DASHin] = ACTIONS(7052), - [anon_sym_starts_DASHwith] = ACTIONS(7052), - [anon_sym_ends_DASHwith] = ACTIONS(7052), - [anon_sym_EQ_TILDE] = ACTIONS(7060), - [anon_sym_BANG_TILDE] = ACTIONS(7060), - [anon_sym_bit_DASHand] = ACTIONS(7062), - [anon_sym_bit_DASHxor] = ACTIONS(7088), - [anon_sym_bit_DASHor] = ACTIONS(7090), - [anon_sym_and] = ACTIONS(1376), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), - }, - [3124] = { - [sym_comment] = STATE(3124), - [ts_builtin_sym_end] = ACTIONS(1378), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_PIPE] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(7048), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(7050), - [anon_sym_in] = ACTIONS(7052), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(7054), - [anon_sym_STAR_STAR] = ACTIONS(7056), - [anon_sym_PLUS_PLUS] = ACTIONS(7056), - [anon_sym_SLASH] = ACTIONS(7054), - [anon_sym_mod] = ACTIONS(7054), - [anon_sym_SLASH_SLASH] = ACTIONS(7054), - [anon_sym_PLUS] = ACTIONS(7050), - [anon_sym_bit_DASHshl] = ACTIONS(7058), - [anon_sym_bit_DASHshr] = ACTIONS(7058), - [anon_sym_EQ_EQ] = ACTIONS(7048), - [anon_sym_BANG_EQ] = ACTIONS(7048), - [anon_sym_LT2] = ACTIONS(7048), - [anon_sym_LT_EQ] = ACTIONS(7048), - [anon_sym_GT_EQ] = ACTIONS(7048), - [anon_sym_not_DASHin] = ACTIONS(7052), - [anon_sym_starts_DASHwith] = ACTIONS(7052), - [anon_sym_ends_DASHwith] = ACTIONS(7052), - [anon_sym_EQ_TILDE] = ACTIONS(7060), - [anon_sym_BANG_TILDE] = ACTIONS(7060), - [anon_sym_bit_DASHand] = ACTIONS(7062), - [anon_sym_bit_DASHxor] = ACTIONS(7088), - [anon_sym_bit_DASHor] = ACTIONS(7090), - [anon_sym_and] = ACTIONS(7092), - [anon_sym_xor] = ACTIONS(1376), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), - }, - [3125] = { - [sym_comment] = STATE(3125), - [ts_builtin_sym_end] = ACTIONS(1160), - [anon_sym_SEMI] = ACTIONS(1158), - [anon_sym_LF] = ACTIONS(1160), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_LPAREN] = ACTIONS(1158), - [anon_sym_PIPE] = ACTIONS(1158), - [anon_sym_DOLLAR] = ACTIONS(1158), - [anon_sym_GT] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_in] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1158), - [anon_sym_DOT_DOT] = ACTIONS(1158), - [anon_sym_STAR] = ACTIONS(1158), - [anon_sym_STAR_STAR] = ACTIONS(1158), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_SLASH] = ACTIONS(1158), - [anon_sym_mod] = ACTIONS(1158), - [anon_sym_SLASH_SLASH] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1158), - [anon_sym_bit_DASHshl] = ACTIONS(1158), - [anon_sym_bit_DASHshr] = ACTIONS(1158), - [anon_sym_EQ_EQ] = ACTIONS(1158), - [anon_sym_BANG_EQ] = ACTIONS(1158), - [anon_sym_LT2] = ACTIONS(1158), - [anon_sym_LT_EQ] = ACTIONS(1158), - [anon_sym_GT_EQ] = ACTIONS(1158), - [anon_sym_not_DASHin] = ACTIONS(1158), - [anon_sym_starts_DASHwith] = ACTIONS(1158), - [anon_sym_ends_DASHwith] = ACTIONS(1158), - [anon_sym_EQ_TILDE] = ACTIONS(1158), - [anon_sym_BANG_TILDE] = ACTIONS(1158), - [anon_sym_bit_DASHand] = ACTIONS(1158), - [anon_sym_bit_DASHxor] = ACTIONS(1158), - [anon_sym_bit_DASHor] = ACTIONS(1158), - [anon_sym_and] = ACTIONS(1158), - [anon_sym_xor] = ACTIONS(1158), - [anon_sym_or] = ACTIONS(1158), - [anon_sym_not] = ACTIONS(1158), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1158), - [anon_sym_DOT_DOT_LT] = ACTIONS(1158), - [anon_sym_null] = ACTIONS(1158), - [anon_sym_true] = ACTIONS(1158), - [anon_sym_false] = ACTIONS(1158), - [aux_sym__val_number_decimal_token1] = ACTIONS(1158), - [aux_sym__val_number_decimal_token2] = ACTIONS(1158), - [anon_sym_DOT2] = ACTIONS(1158), - [aux_sym__val_number_decimal_token3] = ACTIONS(1158), - [aux_sym__val_number_token1] = ACTIONS(1158), - [aux_sym__val_number_token2] = ACTIONS(1158), - [aux_sym__val_number_token3] = ACTIONS(1158), - [aux_sym__val_number_token4] = ACTIONS(1158), - [aux_sym__val_number_token5] = ACTIONS(1158), - [aux_sym__val_number_token6] = ACTIONS(1158), - [anon_sym_0b] = ACTIONS(1158), - [anon_sym_0o] = ACTIONS(1158), - [anon_sym_0x] = ACTIONS(1158), - [sym_val_date] = ACTIONS(1158), - [anon_sym_DQUOTE] = ACTIONS(1158), - [sym__str_single_quotes] = ACTIONS(1158), - [sym__str_back_ticks] = ACTIONS(1158), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1158), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1158), - [anon_sym_POUND] = ACTIONS(113), - }, - [3126] = { - [sym_comment] = STATE(3126), - [ts_builtin_sym_end] = ACTIONS(1378), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_PIPE] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(7048), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(7050), - [anon_sym_in] = ACTIONS(7052), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(7054), - [anon_sym_STAR_STAR] = ACTIONS(7056), - [anon_sym_PLUS_PLUS] = ACTIONS(7056), - [anon_sym_SLASH] = ACTIONS(7054), - [anon_sym_mod] = ACTIONS(7054), - [anon_sym_SLASH_SLASH] = ACTIONS(7054), - [anon_sym_PLUS] = ACTIONS(7050), - [anon_sym_bit_DASHshl] = ACTIONS(7058), - [anon_sym_bit_DASHshr] = ACTIONS(7058), - [anon_sym_EQ_EQ] = ACTIONS(7048), - [anon_sym_BANG_EQ] = ACTIONS(7048), - [anon_sym_LT2] = ACTIONS(7048), - [anon_sym_LT_EQ] = ACTIONS(7048), - [anon_sym_GT_EQ] = ACTIONS(7048), - [anon_sym_not_DASHin] = ACTIONS(7052), - [anon_sym_starts_DASHwith] = ACTIONS(7052), - [anon_sym_ends_DASHwith] = ACTIONS(7052), - [anon_sym_EQ_TILDE] = ACTIONS(7060), - [anon_sym_BANG_TILDE] = ACTIONS(7060), - [anon_sym_bit_DASHand] = ACTIONS(7062), - [anon_sym_bit_DASHxor] = ACTIONS(7088), - [anon_sym_bit_DASHor] = ACTIONS(7090), - [anon_sym_and] = ACTIONS(7092), - [anon_sym_xor] = ACTIONS(7094), - [anon_sym_or] = ACTIONS(1376), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), - }, - [3127] = { - [sym_comment] = STATE(3127), - [ts_builtin_sym_end] = ACTIONS(1378), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_PIPE] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(7048), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(7050), - [anon_sym_in] = ACTIONS(7052), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(7054), - [anon_sym_STAR_STAR] = ACTIONS(7056), - [anon_sym_PLUS_PLUS] = ACTIONS(7056), - [anon_sym_SLASH] = ACTIONS(7054), - [anon_sym_mod] = ACTIONS(7054), - [anon_sym_SLASH_SLASH] = ACTIONS(7054), - [anon_sym_PLUS] = ACTIONS(7050), - [anon_sym_bit_DASHshl] = ACTIONS(7058), - [anon_sym_bit_DASHshr] = ACTIONS(7058), - [anon_sym_EQ_EQ] = ACTIONS(7048), - [anon_sym_BANG_EQ] = ACTIONS(7048), - [anon_sym_LT2] = ACTIONS(7048), - [anon_sym_LT_EQ] = ACTIONS(7048), - [anon_sym_GT_EQ] = ACTIONS(7048), - [anon_sym_not_DASHin] = ACTIONS(7052), - [anon_sym_starts_DASHwith] = ACTIONS(7052), - [anon_sym_ends_DASHwith] = ACTIONS(7052), - [anon_sym_EQ_TILDE] = ACTIONS(7060), - [anon_sym_BANG_TILDE] = ACTIONS(7060), - [anon_sym_bit_DASHand] = ACTIONS(7062), - [anon_sym_bit_DASHxor] = ACTIONS(7088), - [anon_sym_bit_DASHor] = ACTIONS(7090), - [anon_sym_and] = ACTIONS(7092), - [anon_sym_xor] = ACTIONS(7094), - [anon_sym_or] = ACTIONS(7096), - [anon_sym_not] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [aux_sym__val_number_token4] = ACTIONS(1376), - [aux_sym__val_number_token5] = ACTIONS(1376), - [aux_sym__val_number_token6] = ACTIONS(1376), - [anon_sym_0b] = ACTIONS(1376), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(113), - }, - [3128] = { - [sym_comment] = STATE(3128), - [ts_builtin_sym_end] = ACTIONS(1374), - [anon_sym_SEMI] = ACTIONS(1372), - [anon_sym_LF] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1372), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_PIPE] = ACTIONS(1372), - [anon_sym_DOLLAR] = ACTIONS(1372), - [anon_sym_GT] = ACTIONS(1372), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1372), - [anon_sym_in] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_DOT_DOT] = ACTIONS(1372), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_STAR_STAR] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_SLASH] = ACTIONS(1372), - [anon_sym_mod] = ACTIONS(1372), - [anon_sym_SLASH_SLASH] = ACTIONS(1372), - [anon_sym_PLUS] = ACTIONS(1372), - [anon_sym_bit_DASHshl] = ACTIONS(1372), - [anon_sym_bit_DASHshr] = ACTIONS(1372), - [anon_sym_EQ_EQ] = ACTIONS(1372), - [anon_sym_BANG_EQ] = ACTIONS(1372), - [anon_sym_LT2] = ACTIONS(1372), - [anon_sym_LT_EQ] = ACTIONS(1372), - [anon_sym_GT_EQ] = ACTIONS(1372), - [anon_sym_not_DASHin] = ACTIONS(1372), - [anon_sym_starts_DASHwith] = ACTIONS(1372), - [anon_sym_ends_DASHwith] = ACTIONS(1372), - [anon_sym_EQ_TILDE] = ACTIONS(1372), - [anon_sym_BANG_TILDE] = ACTIONS(1372), - [anon_sym_bit_DASHand] = ACTIONS(1372), - [anon_sym_bit_DASHxor] = ACTIONS(1372), - [anon_sym_bit_DASHor] = ACTIONS(1372), - [anon_sym_and] = ACTIONS(1372), - [anon_sym_xor] = ACTIONS(1372), - [anon_sym_or] = ACTIONS(1372), - [anon_sym_not] = ACTIONS(1372), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1372), - [anon_sym_DOT_DOT_LT] = ACTIONS(1372), - [anon_sym_null] = ACTIONS(1372), - [anon_sym_true] = ACTIONS(1372), - [anon_sym_false] = ACTIONS(1372), - [aux_sym__val_number_decimal_token1] = ACTIONS(1372), - [aux_sym__val_number_decimal_token2] = ACTIONS(1372), - [anon_sym_DOT2] = ACTIONS(1372), - [aux_sym__val_number_decimal_token3] = ACTIONS(1372), - [aux_sym__val_number_token1] = ACTIONS(1372), - [aux_sym__val_number_token2] = ACTIONS(1372), - [aux_sym__val_number_token3] = ACTIONS(1372), - [aux_sym__val_number_token4] = ACTIONS(1372), - [aux_sym__val_number_token5] = ACTIONS(1372), - [aux_sym__val_number_token6] = ACTIONS(1372), - [anon_sym_0b] = ACTIONS(1372), - [anon_sym_0o] = ACTIONS(1372), - [anon_sym_0x] = ACTIONS(1372), - [sym_val_date] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [sym__str_single_quotes] = ACTIONS(1372), - [sym__str_back_ticks] = ACTIONS(1372), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1372), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1372), - [anon_sym_POUND] = ACTIONS(113), - }, - [3129] = { - [sym_comment] = STATE(3129), - [ts_builtin_sym_end] = ACTIONS(1304), - [anon_sym_SEMI] = ACTIONS(1302), - [anon_sym_LF] = ACTIONS(1304), - [anon_sym_LBRACK] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_PIPE] = ACTIONS(1302), - [anon_sym_DOLLAR] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_in] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_DOT_DOT] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_STAR_STAR] = ACTIONS(1302), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_SLASH] = ACTIONS(1302), - [anon_sym_mod] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_bit_DASHshl] = ACTIONS(1302), - [anon_sym_bit_DASHshr] = ACTIONS(1302), - [anon_sym_EQ_EQ] = ACTIONS(1302), - [anon_sym_BANG_EQ] = ACTIONS(1302), - [anon_sym_LT2] = ACTIONS(1302), - [anon_sym_LT_EQ] = ACTIONS(1302), - [anon_sym_GT_EQ] = ACTIONS(1302), - [anon_sym_not_DASHin] = ACTIONS(1302), - [anon_sym_starts_DASHwith] = ACTIONS(1302), - [anon_sym_ends_DASHwith] = ACTIONS(1302), - [anon_sym_EQ_TILDE] = ACTIONS(1302), - [anon_sym_BANG_TILDE] = ACTIONS(1302), - [anon_sym_bit_DASHand] = ACTIONS(1302), - [anon_sym_bit_DASHxor] = ACTIONS(1302), - [anon_sym_bit_DASHor] = ACTIONS(1302), - [anon_sym_and] = ACTIONS(1302), - [anon_sym_xor] = ACTIONS(1302), - [anon_sym_or] = ACTIONS(1302), - [anon_sym_not] = ACTIONS(1302), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1302), - [anon_sym_DOT_DOT_LT] = ACTIONS(1302), - [anon_sym_null] = ACTIONS(1302), - [anon_sym_true] = ACTIONS(1302), - [anon_sym_false] = ACTIONS(1302), - [aux_sym__val_number_decimal_token1] = ACTIONS(1302), - [aux_sym__val_number_decimal_token2] = ACTIONS(1302), - [anon_sym_DOT2] = ACTIONS(1302), - [aux_sym__val_number_decimal_token3] = ACTIONS(1302), - [aux_sym__val_number_token1] = ACTIONS(1302), - [aux_sym__val_number_token2] = ACTIONS(1302), - [aux_sym__val_number_token3] = ACTIONS(1302), - [aux_sym__val_number_token4] = ACTIONS(1302), - [aux_sym__val_number_token5] = ACTIONS(1302), - [aux_sym__val_number_token6] = ACTIONS(1302), - [anon_sym_0b] = ACTIONS(1302), - [anon_sym_0o] = ACTIONS(1302), - [anon_sym_0x] = ACTIONS(1302), - [sym_val_date] = ACTIONS(1302), - [anon_sym_DQUOTE] = ACTIONS(1302), - [sym__str_single_quotes] = ACTIONS(1302), - [sym__str_back_ticks] = ACTIONS(1302), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1302), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1302), - [anon_sym_POUND] = ACTIONS(113), - }, - [3130] = { - [sym__expression] = STATE(8175), - [sym_expr_unary] = STATE(6426), - [sym__expr_unary_minus] = STATE(6430), - [sym_expr_binary] = STATE(6426), - [sym__expr_binary_expression] = STATE(6790), - [sym_expr_parenthesized] = STATE(5808), - [sym_val_range] = STATE(7168), - [sym__value] = STATE(6426), - [sym_val_nothing] = STATE(6590), - [sym_val_bool] = STATE(6590), - [sym_val_variable] = STATE(5935), - [sym__var] = STATE(5171), - [sym_val_number] = STATE(6590), - [sym__val_number_decimal] = STATE(5591), - [sym__val_number] = STATE(6519), - [sym_val_duration] = STATE(6590), - [sym_val_filesize] = STATE(6590), - [sym_val_binary] = STATE(6590), - [sym_val_string] = STATE(6590), - [sym__str_double_quotes] = STATE(6540), - [sym_val_interpolated] = STATE(6590), - [sym__inter_single_quotes] = STATE(6464), - [sym__inter_double_quotes] = STATE(6419), - [sym_val_list] = STATE(6590), - [sym_val_record] = STATE(6590), - [sym_val_table] = STATE(6590), - [sym_val_closure] = STATE(6590), - [sym__flag] = STATE(3448), - [sym_short_flag] = STATE(6452), - [sym_long_flag] = STATE(6452), - [sym_long_flag_equals_value] = STATE(6581), - [sym_comment] = STATE(3130), - [anon_sym_LBRACK] = ACTIONS(4051), - [anon_sym_LPAREN] = ACTIONS(2740), - [anon_sym_DOLLAR] = ACTIONS(2742), - [anon_sym_DASH_DASH] = ACTIONS(3115), - [anon_sym_DASH] = ACTIONS(7070), - [anon_sym_LBRACE] = ACTIONS(4055), - [anon_sym_DOT_DOT] = ACTIONS(7072), - [anon_sym_not] = ACTIONS(4059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(7074), - [anon_sym_DOT_DOT_LT] = ACTIONS(7074), - [anon_sym_null] = ACTIONS(7076), - [anon_sym_true] = ACTIONS(7078), - [anon_sym_false] = ACTIONS(7078), - [aux_sym__val_number_decimal_token1] = ACTIONS(7080), - [aux_sym__val_number_decimal_token2] = ACTIONS(7082), - [anon_sym_DOT2] = ACTIONS(7084), - [aux_sym__val_number_decimal_token3] = ACTIONS(5603), - [aux_sym__val_number_token1] = ACTIONS(2764), - [aux_sym__val_number_token2] = ACTIONS(2764), - [aux_sym__val_number_token3] = ACTIONS(2764), - [aux_sym__val_number_token4] = ACTIONS(2764), - [aux_sym__val_number_token5] = ACTIONS(2764), - [aux_sym__val_number_token6] = ACTIONS(2764), - [anon_sym_0b] = ACTIONS(2768), - [anon_sym_0o] = ACTIONS(2770), - [anon_sym_0x] = ACTIONS(2770), - [sym_val_date] = ACTIONS(7086), - [anon_sym_DQUOTE] = ACTIONS(4079), - [sym__str_single_quotes] = ACTIONS(4081), - [sym__str_back_ticks] = ACTIONS(4081), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_POUND] = ACTIONS(3), - }, - [3131] = { - [sym__expression] = STATE(8078), - [sym_expr_unary] = STATE(6426), - [sym__expr_unary_minus] = STATE(6430), - [sym_expr_binary] = STATE(6426), - [sym__expr_binary_expression] = STATE(6790), - [sym_expr_parenthesized] = STATE(5808), - [sym_val_range] = STATE(7168), - [sym__value] = STATE(6426), - [sym_val_nothing] = STATE(6590), - [sym_val_bool] = STATE(6590), - [sym_val_variable] = STATE(5935), - [sym__var] = STATE(5171), - [sym_val_number] = STATE(6590), - [sym__val_number_decimal] = STATE(5591), - [sym__val_number] = STATE(6519), - [sym_val_duration] = STATE(6590), - [sym_val_filesize] = STATE(6590), - [sym_val_binary] = STATE(6590), - [sym_val_string] = STATE(6590), - [sym__str_double_quotes] = STATE(6540), - [sym_val_interpolated] = STATE(6590), - [sym__inter_single_quotes] = STATE(6464), - [sym__inter_double_quotes] = STATE(6419), - [sym_val_list] = STATE(6590), - [sym_val_record] = STATE(6590), - [sym_val_table] = STATE(6590), - [sym_val_closure] = STATE(6590), - [sym__flag] = STATE(3492), - [sym_short_flag] = STATE(6452), - [sym_long_flag] = STATE(6452), - [sym_long_flag_equals_value] = STATE(6581), - [sym_comment] = STATE(3131), - [anon_sym_LBRACK] = ACTIONS(4051), - [anon_sym_LPAREN] = ACTIONS(2740), - [anon_sym_DOLLAR] = ACTIONS(2742), - [anon_sym_DASH_DASH] = ACTIONS(3115), - [anon_sym_DASH] = ACTIONS(7070), - [anon_sym_LBRACE] = ACTIONS(4055), - [anon_sym_DOT_DOT] = ACTIONS(7072), - [anon_sym_not] = ACTIONS(4059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(7074), - [anon_sym_DOT_DOT_LT] = ACTIONS(7074), - [anon_sym_null] = ACTIONS(7076), - [anon_sym_true] = ACTIONS(7078), - [anon_sym_false] = ACTIONS(7078), - [aux_sym__val_number_decimal_token1] = ACTIONS(7080), - [aux_sym__val_number_decimal_token2] = ACTIONS(7082), - [anon_sym_DOT2] = ACTIONS(7084), - [aux_sym__val_number_decimal_token3] = ACTIONS(5603), - [aux_sym__val_number_token1] = ACTIONS(2764), - [aux_sym__val_number_token2] = ACTIONS(2764), - [aux_sym__val_number_token3] = ACTIONS(2764), - [aux_sym__val_number_token4] = ACTIONS(2764), - [aux_sym__val_number_token5] = ACTIONS(2764), - [aux_sym__val_number_token6] = ACTIONS(2764), - [anon_sym_0b] = ACTIONS(2768), - [anon_sym_0o] = ACTIONS(2770), - [anon_sym_0x] = ACTIONS(2770), - [sym_val_date] = ACTIONS(7086), - [anon_sym_DQUOTE] = ACTIONS(4079), - [sym__str_single_quotes] = ACTIONS(4081), - [sym__str_back_ticks] = ACTIONS(4081), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_POUND] = ACTIONS(3), - }, - [3132] = { - [sym__expression] = STATE(8207), - [sym_expr_unary] = STATE(6426), - [sym__expr_unary_minus] = STATE(6430), - [sym_expr_binary] = STATE(6426), - [sym__expr_binary_expression] = STATE(6790), - [sym_expr_parenthesized] = STATE(5808), - [sym_val_range] = STATE(7168), - [sym__value] = STATE(6426), - [sym_val_nothing] = STATE(6590), - [sym_val_bool] = STATE(6590), - [sym_val_variable] = STATE(5935), - [sym__var] = STATE(5171), - [sym_val_number] = STATE(6590), - [sym__val_number_decimal] = STATE(5591), - [sym__val_number] = STATE(6519), - [sym_val_duration] = STATE(6590), - [sym_val_filesize] = STATE(6590), - [sym_val_binary] = STATE(6590), - [sym_val_string] = STATE(6590), - [sym__str_double_quotes] = STATE(6540), - [sym_val_interpolated] = STATE(6590), - [sym__inter_single_quotes] = STATE(6464), - [sym__inter_double_quotes] = STATE(6419), - [sym_val_list] = STATE(6590), - [sym_val_record] = STATE(6590), - [sym_val_table] = STATE(6590), - [sym_val_closure] = STATE(6590), - [sym__flag] = STATE(3495), - [sym_short_flag] = STATE(6452), - [sym_long_flag] = STATE(6452), - [sym_long_flag_equals_value] = STATE(6581), - [sym_comment] = STATE(3132), - [anon_sym_LBRACK] = ACTIONS(4051), - [anon_sym_LPAREN] = ACTIONS(2740), - [anon_sym_DOLLAR] = ACTIONS(2742), - [anon_sym_DASH_DASH] = ACTIONS(3115), - [anon_sym_DASH] = ACTIONS(7070), - [anon_sym_LBRACE] = ACTIONS(4055), - [anon_sym_DOT_DOT] = ACTIONS(7072), - [anon_sym_not] = ACTIONS(4059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(7074), - [anon_sym_DOT_DOT_LT] = ACTIONS(7074), - [anon_sym_null] = ACTIONS(7076), - [anon_sym_true] = ACTIONS(7078), - [anon_sym_false] = ACTIONS(7078), - [aux_sym__val_number_decimal_token1] = ACTIONS(7080), - [aux_sym__val_number_decimal_token2] = ACTIONS(7082), - [anon_sym_DOT2] = ACTIONS(7084), - [aux_sym__val_number_decimal_token3] = ACTIONS(5603), - [aux_sym__val_number_token1] = ACTIONS(2764), - [aux_sym__val_number_token2] = ACTIONS(2764), - [aux_sym__val_number_token3] = ACTIONS(2764), - [aux_sym__val_number_token4] = ACTIONS(2764), - [aux_sym__val_number_token5] = ACTIONS(2764), - [aux_sym__val_number_token6] = ACTIONS(2764), - [anon_sym_0b] = ACTIONS(2768), - [anon_sym_0o] = ACTIONS(2770), - [anon_sym_0x] = ACTIONS(2770), - [sym_val_date] = ACTIONS(7086), - [anon_sym_DQUOTE] = ACTIONS(4079), - [sym__str_single_quotes] = ACTIONS(4081), - [sym__str_back_ticks] = ACTIONS(4081), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_POUND] = ACTIONS(3), - }, - [3133] = { - [sym__expression] = STATE(8231), - [sym_expr_unary] = STATE(6426), - [sym__expr_unary_minus] = STATE(6430), - [sym_expr_binary] = STATE(6426), - [sym__expr_binary_expression] = STATE(6790), - [sym_expr_parenthesized] = STATE(5808), - [sym_val_range] = STATE(7168), - [sym__value] = STATE(6426), - [sym_val_nothing] = STATE(6590), - [sym_val_bool] = STATE(6590), - [sym_val_variable] = STATE(5935), - [sym__var] = STATE(5171), - [sym_val_number] = STATE(6590), - [sym__val_number_decimal] = STATE(5591), - [sym__val_number] = STATE(6519), - [sym_val_duration] = STATE(6590), - [sym_val_filesize] = STATE(6590), - [sym_val_binary] = STATE(6590), - [sym_val_string] = STATE(6590), - [sym__str_double_quotes] = STATE(6540), - [sym_val_interpolated] = STATE(6590), - [sym__inter_single_quotes] = STATE(6464), - [sym__inter_double_quotes] = STATE(6419), - [sym_val_list] = STATE(6590), - [sym_val_record] = STATE(6590), - [sym_val_table] = STATE(6590), - [sym_val_closure] = STATE(6590), - [sym__flag] = STATE(3498), - [sym_short_flag] = STATE(6452), - [sym_long_flag] = STATE(6452), - [sym_long_flag_equals_value] = STATE(6581), - [sym_comment] = STATE(3133), - [anon_sym_LBRACK] = ACTIONS(4051), - [anon_sym_LPAREN] = ACTIONS(2740), - [anon_sym_DOLLAR] = ACTIONS(2742), - [anon_sym_DASH_DASH] = ACTIONS(3115), - [anon_sym_DASH] = ACTIONS(7070), - [anon_sym_LBRACE] = ACTIONS(4055), - [anon_sym_DOT_DOT] = ACTIONS(7072), - [anon_sym_not] = ACTIONS(4059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(7074), - [anon_sym_DOT_DOT_LT] = ACTIONS(7074), - [anon_sym_null] = ACTIONS(7076), - [anon_sym_true] = ACTIONS(7078), - [anon_sym_false] = ACTIONS(7078), - [aux_sym__val_number_decimal_token1] = ACTIONS(7080), - [aux_sym__val_number_decimal_token2] = ACTIONS(7082), - [anon_sym_DOT2] = ACTIONS(7084), - [aux_sym__val_number_decimal_token3] = ACTIONS(5603), - [aux_sym__val_number_token1] = ACTIONS(2764), - [aux_sym__val_number_token2] = ACTIONS(2764), - [aux_sym__val_number_token3] = ACTIONS(2764), - [aux_sym__val_number_token4] = ACTIONS(2764), - [aux_sym__val_number_token5] = ACTIONS(2764), - [aux_sym__val_number_token6] = ACTIONS(2764), - [anon_sym_0b] = ACTIONS(2768), - [anon_sym_0o] = ACTIONS(2770), - [anon_sym_0x] = ACTIONS(2770), - [sym_val_date] = ACTIONS(7086), - [anon_sym_DQUOTE] = ACTIONS(4079), - [sym__str_single_quotes] = ACTIONS(4081), - [sym__str_back_ticks] = ACTIONS(4081), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_POUND] = ACTIONS(3), - }, - [3134] = { - [sym__expression] = STATE(8233), - [sym_expr_unary] = STATE(6426), - [sym__expr_unary_minus] = STATE(6430), - [sym_expr_binary] = STATE(6426), - [sym__expr_binary_expression] = STATE(6790), - [sym_expr_parenthesized] = STATE(5808), - [sym_val_range] = STATE(7168), - [sym__value] = STATE(6426), - [sym_val_nothing] = STATE(6590), - [sym_val_bool] = STATE(6590), - [sym_val_variable] = STATE(5935), - [sym__var] = STATE(5171), - [sym_val_number] = STATE(6590), - [sym__val_number_decimal] = STATE(5591), - [sym__val_number] = STATE(6519), - [sym_val_duration] = STATE(6590), - [sym_val_filesize] = STATE(6590), - [sym_val_binary] = STATE(6590), - [sym_val_string] = STATE(6590), - [sym__str_double_quotes] = STATE(6540), - [sym_val_interpolated] = STATE(6590), - [sym__inter_single_quotes] = STATE(6464), - [sym__inter_double_quotes] = STATE(6419), - [sym_val_list] = STATE(6590), - [sym_val_record] = STATE(6590), - [sym_val_table] = STATE(6590), - [sym_val_closure] = STATE(6590), - [sym__flag] = STATE(3499), - [sym_short_flag] = STATE(6452), - [sym_long_flag] = STATE(6452), - [sym_long_flag_equals_value] = STATE(6581), - [sym_comment] = STATE(3134), - [anon_sym_LBRACK] = ACTIONS(4051), - [anon_sym_LPAREN] = ACTIONS(2740), - [anon_sym_DOLLAR] = ACTIONS(2742), - [anon_sym_DASH_DASH] = ACTIONS(3115), - [anon_sym_DASH] = ACTIONS(7070), - [anon_sym_LBRACE] = ACTIONS(4055), - [anon_sym_DOT_DOT] = ACTIONS(7072), - [anon_sym_not] = ACTIONS(4059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(7074), - [anon_sym_DOT_DOT_LT] = ACTIONS(7074), - [anon_sym_null] = ACTIONS(7076), - [anon_sym_true] = ACTIONS(7078), - [anon_sym_false] = ACTIONS(7078), - [aux_sym__val_number_decimal_token1] = ACTIONS(7080), - [aux_sym__val_number_decimal_token2] = ACTIONS(7082), - [anon_sym_DOT2] = ACTIONS(7084), - [aux_sym__val_number_decimal_token3] = ACTIONS(5603), - [aux_sym__val_number_token1] = ACTIONS(2764), - [aux_sym__val_number_token2] = ACTIONS(2764), - [aux_sym__val_number_token3] = ACTIONS(2764), - [aux_sym__val_number_token4] = ACTIONS(2764), - [aux_sym__val_number_token5] = ACTIONS(2764), - [aux_sym__val_number_token6] = ACTIONS(2764), - [anon_sym_0b] = ACTIONS(2768), - [anon_sym_0o] = ACTIONS(2770), - [anon_sym_0x] = ACTIONS(2770), - [sym_val_date] = ACTIONS(7086), - [anon_sym_DQUOTE] = ACTIONS(4079), - [sym__str_single_quotes] = ACTIONS(4081), - [sym__str_back_ticks] = ACTIONS(4081), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_POUND] = ACTIONS(3), - }, - [3135] = { - [sym__expression] = STATE(8015), - [sym_expr_unary] = STATE(6426), - [sym__expr_unary_minus] = STATE(6430), - [sym_expr_binary] = STATE(6426), - [sym__expr_binary_expression] = STATE(6790), - [sym_expr_parenthesized] = STATE(5808), - [sym_val_range] = STATE(7168), - [sym__value] = STATE(6426), - [sym_val_nothing] = STATE(6590), - [sym_val_bool] = STATE(6590), - [sym_val_variable] = STATE(5935), - [sym__var] = STATE(5171), - [sym_val_number] = STATE(6590), - [sym__val_number_decimal] = STATE(5591), - [sym__val_number] = STATE(6519), - [sym_val_duration] = STATE(6590), - [sym_val_filesize] = STATE(6590), - [sym_val_binary] = STATE(6590), - [sym_val_string] = STATE(6590), - [sym__str_double_quotes] = STATE(6540), - [sym_val_interpolated] = STATE(6590), - [sym__inter_single_quotes] = STATE(6464), - [sym__inter_double_quotes] = STATE(6419), - [sym_val_list] = STATE(6590), - [sym_val_record] = STATE(6590), - [sym_val_table] = STATE(6590), - [sym_val_closure] = STATE(6590), - [sym__flag] = STATE(3500), - [sym_short_flag] = STATE(6452), - [sym_long_flag] = STATE(6452), - [sym_long_flag_equals_value] = STATE(6581), - [sym_comment] = STATE(3135), - [anon_sym_LBRACK] = ACTIONS(4051), - [anon_sym_LPAREN] = ACTIONS(2740), - [anon_sym_DOLLAR] = ACTIONS(2742), - [anon_sym_DASH_DASH] = ACTIONS(3115), - [anon_sym_DASH] = ACTIONS(7070), - [anon_sym_LBRACE] = ACTIONS(4055), - [anon_sym_DOT_DOT] = ACTIONS(7072), - [anon_sym_not] = ACTIONS(4059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(7074), - [anon_sym_DOT_DOT_LT] = ACTIONS(7074), - [anon_sym_null] = ACTIONS(7076), - [anon_sym_true] = ACTIONS(7078), - [anon_sym_false] = ACTIONS(7078), - [aux_sym__val_number_decimal_token1] = ACTIONS(7080), - [aux_sym__val_number_decimal_token2] = ACTIONS(7082), - [anon_sym_DOT2] = ACTIONS(7084), - [aux_sym__val_number_decimal_token3] = ACTIONS(5603), - [aux_sym__val_number_token1] = ACTIONS(2764), - [aux_sym__val_number_token2] = ACTIONS(2764), - [aux_sym__val_number_token3] = ACTIONS(2764), - [aux_sym__val_number_token4] = ACTIONS(2764), - [aux_sym__val_number_token5] = ACTIONS(2764), - [aux_sym__val_number_token6] = ACTIONS(2764), - [anon_sym_0b] = ACTIONS(2768), - [anon_sym_0o] = ACTIONS(2770), - [anon_sym_0x] = ACTIONS(2770), - [sym_val_date] = ACTIONS(7086), - [anon_sym_DQUOTE] = ACTIONS(4079), - [sym__str_single_quotes] = ACTIONS(4081), - [sym__str_back_ticks] = ACTIONS(4081), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_POUND] = ACTIONS(3), - }, - [3136] = { - [sym_comment] = STATE(3136), - [ts_builtin_sym_end] = ACTIONS(938), - [anon_sym_SEMI] = ACTIONS(936), - [anon_sym_LF] = ACTIONS(938), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_STAR_STAR] = ACTIONS(936), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(936), - [anon_sym_SLASH_SLASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(936), - [anon_sym_bit_DASHshr] = ACTIONS(936), - [anon_sym_EQ_EQ] = ACTIONS(936), - [anon_sym_BANG_EQ] = ACTIONS(936), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(936), - [anon_sym_GT_EQ] = ACTIONS(936), - [anon_sym_not_DASHin] = ACTIONS(936), - [anon_sym_starts_DASHwith] = ACTIONS(936), - [anon_sym_ends_DASHwith] = ACTIONS(936), - [anon_sym_EQ_TILDE] = ACTIONS(936), - [anon_sym_BANG_TILDE] = ACTIONS(936), - [anon_sym_bit_DASHand] = ACTIONS(936), - [anon_sym_bit_DASHxor] = ACTIONS(936), - [anon_sym_bit_DASHor] = ACTIONS(936), - [anon_sym_and] = ACTIONS(936), - [anon_sym_xor] = ACTIONS(936), - [anon_sym_or] = ACTIONS(936), - [anon_sym_not] = ACTIONS(936), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [anon_sym_null] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [aux_sym__val_number_token4] = ACTIONS(936), - [aux_sym__val_number_token5] = ACTIONS(936), - [aux_sym__val_number_token6] = ACTIONS(936), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), + [2705] = { + [sym_comment] = STATE(2705), + [ts_builtin_sym_end] = ACTIONS(1231), + [anon_sym_SEMI] = ACTIONS(1229), + [anon_sym_LF] = ACTIONS(1231), + [anon_sym_LBRACK] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_PIPE] = ACTIONS(1229), + [anon_sym_DOLLAR] = ACTIONS(1229), + [anon_sym_GT] = ACTIONS(1229), + [anon_sym_DASH_DASH] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_in] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1229), + [anon_sym_DOT_DOT] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1229), + [anon_sym_STAR_STAR] = ACTIONS(1229), + [anon_sym_PLUS_PLUS] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1229), + [anon_sym_mod] = ACTIONS(1229), + [anon_sym_SLASH_SLASH] = ACTIONS(1229), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_bit_DASHshl] = ACTIONS(1229), + [anon_sym_bit_DASHshr] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1229), + [anon_sym_LT2] = ACTIONS(1229), + [anon_sym_LT_EQ] = ACTIONS(1229), + [anon_sym_GT_EQ] = ACTIONS(1229), + [anon_sym_not_DASHin] = ACTIONS(1229), + [anon_sym_starts_DASHwith] = ACTIONS(1229), + [anon_sym_ends_DASHwith] = ACTIONS(1229), + [anon_sym_EQ_TILDE] = ACTIONS(1229), + [anon_sym_BANG_TILDE] = ACTIONS(1229), + [anon_sym_bit_DASHand] = ACTIONS(1229), + [anon_sym_bit_DASHxor] = ACTIONS(1229), + [anon_sym_bit_DASHor] = ACTIONS(1229), + [anon_sym_and] = ACTIONS(1229), + [anon_sym_xor] = ACTIONS(1229), + [anon_sym_or] = ACTIONS(1229), + [anon_sym_not] = ACTIONS(1229), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1229), + [anon_sym_DOT_DOT_LT] = ACTIONS(1229), + [anon_sym_null] = ACTIONS(1229), + [anon_sym_true] = ACTIONS(1229), + [anon_sym_false] = ACTIONS(1229), + [aux_sym__val_number_decimal_token1] = ACTIONS(1229), + [aux_sym__val_number_decimal_token2] = ACTIONS(1229), + [anon_sym_DOT2] = ACTIONS(1229), + [aux_sym__val_number_decimal_token3] = ACTIONS(1229), + [aux_sym__val_number_token1] = ACTIONS(1229), + [aux_sym__val_number_token2] = ACTIONS(1229), + [aux_sym__val_number_token3] = ACTIONS(1229), + [aux_sym__val_number_token4] = ACTIONS(1229), + [aux_sym__val_number_token5] = ACTIONS(1229), + [aux_sym__val_number_token6] = ACTIONS(1229), + [anon_sym_0b] = ACTIONS(1229), + [anon_sym_0o] = ACTIONS(1229), + [anon_sym_0x] = ACTIONS(1229), + [sym_val_date] = ACTIONS(1229), + [anon_sym_DQUOTE] = ACTIONS(1229), + [sym__str_single_quotes] = ACTIONS(1229), + [sym__str_back_ticks] = ACTIONS(1229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1229), [anon_sym_POUND] = ACTIONS(113), }, - [3137] = { - [sym_comment] = STATE(3137), - [ts_builtin_sym_end] = ACTIONS(1290), - [anon_sym_SEMI] = ACTIONS(1243), - [anon_sym_LF] = ACTIONS(1290), - [anon_sym_LBRACK] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_in] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1243), - [anon_sym_STAR_STAR] = ACTIONS(1243), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_SLASH] = ACTIONS(1243), - [anon_sym_mod] = ACTIONS(1243), - [anon_sym_SLASH_SLASH] = ACTIONS(1243), - [anon_sym_PLUS] = ACTIONS(1243), - [anon_sym_bit_DASHshl] = ACTIONS(1243), - [anon_sym_bit_DASHshr] = ACTIONS(1243), - [anon_sym_EQ_EQ] = ACTIONS(1243), - [anon_sym_BANG_EQ] = ACTIONS(1243), - [anon_sym_LT2] = ACTIONS(1243), - [anon_sym_LT_EQ] = ACTIONS(1243), - [anon_sym_GT_EQ] = ACTIONS(1243), - [anon_sym_not_DASHin] = ACTIONS(1243), - [anon_sym_starts_DASHwith] = ACTIONS(1243), - [anon_sym_ends_DASHwith] = ACTIONS(1243), - [anon_sym_EQ_TILDE] = ACTIONS(1243), - [anon_sym_BANG_TILDE] = ACTIONS(1243), - [anon_sym_bit_DASHand] = ACTIONS(1243), - [anon_sym_bit_DASHxor] = ACTIONS(1243), - [anon_sym_bit_DASHor] = ACTIONS(1243), - [anon_sym_and] = ACTIONS(1243), - [anon_sym_xor] = ACTIONS(1243), - [anon_sym_or] = ACTIONS(1243), - [anon_sym_not] = ACTIONS(1243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1243), - [anon_sym_DOT_DOT_LT] = ACTIONS(1243), - [anon_sym_null] = ACTIONS(1243), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_decimal_token2] = ACTIONS(1243), - [anon_sym_DOT2] = ACTIONS(1243), - [aux_sym__val_number_decimal_token3] = ACTIONS(1243), - [aux_sym__val_number_token1] = ACTIONS(1243), - [aux_sym__val_number_token2] = ACTIONS(1243), - [aux_sym__val_number_token3] = ACTIONS(1243), - [aux_sym__val_number_token4] = ACTIONS(1243), - [aux_sym__val_number_token5] = ACTIONS(1243), - [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_0b] = ACTIONS(1243), - [anon_sym_0o] = ACTIONS(1243), - [anon_sym_0x] = ACTIONS(1243), - [sym_val_date] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym__str_single_quotes] = ACTIONS(1243), - [sym__str_back_ticks] = ACTIONS(1243), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1243), - [anon_sym_POUND] = ACTIONS(113), - }, - [3138] = { - [sym_comment] = STATE(3138), - [ts_builtin_sym_end] = ACTIONS(1416), - [anon_sym_SEMI] = ACTIONS(1414), - [anon_sym_LF] = ACTIONS(1416), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_DOLLAR] = ACTIONS(1414), - [anon_sym_GT] = ACTIONS(1414), - [anon_sym_DASH_DASH] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_in] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1414), - [anon_sym_DOT_DOT] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_STAR_STAR] = ACTIONS(1414), - [anon_sym_PLUS_PLUS] = ACTIONS(1414), - [anon_sym_SLASH] = ACTIONS(1414), - [anon_sym_mod] = ACTIONS(1414), - [anon_sym_SLASH_SLASH] = ACTIONS(1414), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_bit_DASHshl] = ACTIONS(1414), - [anon_sym_bit_DASHshr] = ACTIONS(1414), - [anon_sym_EQ_EQ] = ACTIONS(1414), - [anon_sym_BANG_EQ] = ACTIONS(1414), - [anon_sym_LT2] = ACTIONS(1414), - [anon_sym_LT_EQ] = ACTIONS(1414), - [anon_sym_GT_EQ] = ACTIONS(1414), - [anon_sym_not_DASHin] = ACTIONS(1414), - [anon_sym_starts_DASHwith] = ACTIONS(1414), - [anon_sym_ends_DASHwith] = ACTIONS(1414), - [anon_sym_EQ_TILDE] = ACTIONS(1414), - [anon_sym_BANG_TILDE] = ACTIONS(1414), - [anon_sym_bit_DASHand] = ACTIONS(1414), - [anon_sym_bit_DASHxor] = ACTIONS(1414), - [anon_sym_bit_DASHor] = ACTIONS(1414), - [anon_sym_and] = ACTIONS(1414), - [anon_sym_xor] = ACTIONS(1414), - [anon_sym_or] = ACTIONS(1414), - [anon_sym_not] = ACTIONS(1414), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1414), - [anon_sym_DOT_DOT_LT] = ACTIONS(1414), - [anon_sym_null] = ACTIONS(1414), - [anon_sym_true] = ACTIONS(1414), - [anon_sym_false] = ACTIONS(1414), - [aux_sym__val_number_decimal_token1] = ACTIONS(1414), - [aux_sym__val_number_decimal_token2] = ACTIONS(1414), - [anon_sym_DOT2] = ACTIONS(1414), - [aux_sym__val_number_decimal_token3] = ACTIONS(1414), - [aux_sym__val_number_token1] = ACTIONS(1414), - [aux_sym__val_number_token2] = ACTIONS(1414), - [aux_sym__val_number_token3] = ACTIONS(1414), - [aux_sym__val_number_token4] = ACTIONS(1414), - [aux_sym__val_number_token5] = ACTIONS(1414), - [aux_sym__val_number_token6] = ACTIONS(1414), - [anon_sym_0b] = ACTIONS(1414), - [anon_sym_0o] = ACTIONS(1414), - [anon_sym_0x] = ACTIONS(1414), - [sym_val_date] = ACTIONS(1414), - [anon_sym_DQUOTE] = ACTIONS(1414), - [sym__str_single_quotes] = ACTIONS(1414), - [sym__str_back_ticks] = ACTIONS(1414), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1414), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1414), + [2706] = { + [sym_comment] = STATE(2706), + [ts_builtin_sym_end] = ACTIONS(1181), + [anon_sym_SEMI] = ACTIONS(1179), + [anon_sym_LF] = ACTIONS(1181), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_PIPE] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(6628), + [anon_sym_in] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(6632), + [anon_sym_STAR_STAR] = ACTIONS(6634), + [anon_sym_PLUS_PLUS] = ACTIONS(6634), + [anon_sym_SLASH] = ACTIONS(6632), + [anon_sym_mod] = ACTIONS(6632), + [anon_sym_SLASH_SLASH] = ACTIONS(6632), + [anon_sym_PLUS] = ACTIONS(6628), + [anon_sym_bit_DASHshl] = ACTIONS(1179), + [anon_sym_bit_DASHshr] = ACTIONS(1179), + [anon_sym_EQ_EQ] = ACTIONS(1179), + [anon_sym_BANG_EQ] = ACTIONS(1179), + [anon_sym_LT2] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1179), + [anon_sym_GT_EQ] = ACTIONS(1179), + [anon_sym_not_DASHin] = ACTIONS(1179), + [anon_sym_starts_DASHwith] = ACTIONS(1179), + [anon_sym_ends_DASHwith] = ACTIONS(1179), + [anon_sym_EQ_TILDE] = ACTIONS(1179), + [anon_sym_BANG_TILDE] = ACTIONS(1179), + [anon_sym_bit_DASHand] = ACTIONS(1179), + [anon_sym_bit_DASHxor] = ACTIONS(1179), + [anon_sym_bit_DASHor] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_not] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1179), + [anon_sym_DOT_DOT_LT] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1179), + [aux_sym__val_number_decimal_token2] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(1179), + [aux_sym__val_number_decimal_token3] = ACTIONS(1179), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1179), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1179), + [anon_sym_0b] = ACTIONS(1179), + [anon_sym_0o] = ACTIONS(1179), + [anon_sym_0x] = ACTIONS(1179), + [sym_val_date] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1179), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(113), + }, + [2707] = { + [sym_comment] = STATE(2707), + [ts_builtin_sym_end] = ACTIONS(1235), + [anon_sym_SEMI] = ACTIONS(1233), + [anon_sym_LF] = ACTIONS(1235), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(1233), + [anon_sym_PIPE] = ACTIONS(1233), + [anon_sym_DOLLAR] = ACTIONS(1233), + [anon_sym_GT] = ACTIONS(1233), + [anon_sym_DASH_DASH] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_in] = ACTIONS(1233), + [anon_sym_LBRACE] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1233), + [anon_sym_STAR_STAR] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1233), + [anon_sym_SLASH] = ACTIONS(1233), + [anon_sym_mod] = ACTIONS(1233), + [anon_sym_SLASH_SLASH] = ACTIONS(1233), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_bit_DASHshl] = ACTIONS(1233), + [anon_sym_bit_DASHshr] = ACTIONS(1233), + [anon_sym_EQ_EQ] = ACTIONS(1233), + [anon_sym_BANG_EQ] = ACTIONS(1233), + [anon_sym_LT2] = ACTIONS(1233), + [anon_sym_LT_EQ] = ACTIONS(1233), + [anon_sym_GT_EQ] = ACTIONS(1233), + [anon_sym_not_DASHin] = ACTIONS(1233), + [anon_sym_starts_DASHwith] = ACTIONS(1233), + [anon_sym_ends_DASHwith] = ACTIONS(1233), + [anon_sym_EQ_TILDE] = ACTIONS(1233), + [anon_sym_BANG_TILDE] = ACTIONS(1233), + [anon_sym_bit_DASHand] = ACTIONS(1233), + [anon_sym_bit_DASHxor] = ACTIONS(1233), + [anon_sym_bit_DASHor] = ACTIONS(1233), + [anon_sym_and] = ACTIONS(1233), + [anon_sym_xor] = ACTIONS(1233), + [anon_sym_or] = ACTIONS(1233), + [anon_sym_not] = ACTIONS(1233), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1233), + [anon_sym_DOT_DOT_LT] = ACTIONS(1233), + [anon_sym_null] = ACTIONS(1233), + [anon_sym_true] = ACTIONS(1233), + [anon_sym_false] = ACTIONS(1233), + [aux_sym__val_number_decimal_token1] = ACTIONS(1233), + [aux_sym__val_number_decimal_token2] = ACTIONS(1233), + [anon_sym_DOT2] = ACTIONS(1233), + [aux_sym__val_number_decimal_token3] = ACTIONS(1233), + [aux_sym__val_number_token1] = ACTIONS(1233), + [aux_sym__val_number_token2] = ACTIONS(1233), + [aux_sym__val_number_token3] = ACTIONS(1233), + [aux_sym__val_number_token4] = ACTIONS(1233), + [aux_sym__val_number_token5] = ACTIONS(1233), + [aux_sym__val_number_token6] = ACTIONS(1233), + [anon_sym_0b] = ACTIONS(1233), + [anon_sym_0o] = ACTIONS(1233), + [anon_sym_0x] = ACTIONS(1233), + [sym_val_date] = ACTIONS(1233), + [anon_sym_DQUOTE] = ACTIONS(1233), + [sym__str_single_quotes] = ACTIONS(1233), + [sym__str_back_ticks] = ACTIONS(1233), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1233), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1233), + [anon_sym_POUND] = ACTIONS(113), + }, + [2708] = { + [sym_comment] = STATE(2708), + [ts_builtin_sym_end] = ACTIONS(1035), + [anon_sym_SEMI] = ACTIONS(1033), + [anon_sym_LF] = ACTIONS(1035), + [anon_sym_LBRACK] = ACTIONS(1033), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_PIPE] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1033), + [anon_sym_in] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_DOT_DOT] = ACTIONS(1033), + [anon_sym_STAR] = ACTIONS(1033), + [anon_sym_STAR_STAR] = ACTIONS(1033), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_SLASH] = ACTIONS(1033), + [anon_sym_mod] = ACTIONS(1033), + [anon_sym_SLASH_SLASH] = ACTIONS(1033), + [anon_sym_PLUS] = ACTIONS(1033), + [anon_sym_bit_DASHshl] = ACTIONS(1033), + [anon_sym_bit_DASHshr] = ACTIONS(1033), + [anon_sym_EQ_EQ] = ACTIONS(1033), + [anon_sym_BANG_EQ] = ACTIONS(1033), + [anon_sym_LT2] = ACTIONS(1033), + [anon_sym_LT_EQ] = ACTIONS(1033), + [anon_sym_GT_EQ] = ACTIONS(1033), + [anon_sym_not_DASHin] = ACTIONS(1033), + [anon_sym_starts_DASHwith] = ACTIONS(1033), + [anon_sym_ends_DASHwith] = ACTIONS(1033), + [anon_sym_EQ_TILDE] = ACTIONS(1033), + [anon_sym_BANG_TILDE] = ACTIONS(1033), + [anon_sym_bit_DASHand] = ACTIONS(1033), + [anon_sym_bit_DASHxor] = ACTIONS(1033), + [anon_sym_bit_DASHor] = ACTIONS(1033), + [anon_sym_and] = ACTIONS(1033), + [anon_sym_xor] = ACTIONS(1033), + [anon_sym_or] = ACTIONS(1033), + [anon_sym_not] = ACTIONS(1033), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1033), + [anon_sym_DOT_DOT_LT] = ACTIONS(1033), + [anon_sym_null] = ACTIONS(1033), + [anon_sym_true] = ACTIONS(1033), + [anon_sym_false] = ACTIONS(1033), + [aux_sym__val_number_decimal_token1] = ACTIONS(1033), + [aux_sym__val_number_decimal_token2] = ACTIONS(1033), + [anon_sym_DOT2] = ACTIONS(1033), + [aux_sym__val_number_decimal_token3] = ACTIONS(1033), + [aux_sym__val_number_token1] = ACTIONS(1033), + [aux_sym__val_number_token2] = ACTIONS(1033), + [aux_sym__val_number_token3] = ACTIONS(1033), + [aux_sym__val_number_token4] = ACTIONS(1033), + [aux_sym__val_number_token5] = ACTIONS(1033), + [aux_sym__val_number_token6] = ACTIONS(1033), + [anon_sym_0b] = ACTIONS(1033), + [anon_sym_0o] = ACTIONS(1033), + [anon_sym_0x] = ACTIONS(1033), + [sym_val_date] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [sym__str_single_quotes] = ACTIONS(1033), + [sym__str_back_ticks] = ACTIONS(1033), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1033), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1033), + [anon_sym_POUND] = ACTIONS(113), + }, + [2709] = { + [sym_comment] = STATE(2709), + [ts_builtin_sym_end] = ACTIONS(1022), + [anon_sym_SEMI] = ACTIONS(1020), + [anon_sym_LF] = ACTIONS(1022), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1020), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_GT] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1020), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_in] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_DOT_DOT] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_STAR_STAR] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1020), + [anon_sym_SLASH] = ACTIONS(1020), + [anon_sym_mod] = ACTIONS(1020), + [anon_sym_SLASH_SLASH] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_bit_DASHshl] = ACTIONS(1020), + [anon_sym_bit_DASHshr] = ACTIONS(1020), + [anon_sym_EQ_EQ] = ACTIONS(1020), + [anon_sym_BANG_EQ] = ACTIONS(1020), + [anon_sym_LT2] = ACTIONS(1020), + [anon_sym_LT_EQ] = ACTIONS(1020), + [anon_sym_GT_EQ] = ACTIONS(1020), + [anon_sym_not_DASHin] = ACTIONS(1020), + [anon_sym_starts_DASHwith] = ACTIONS(1020), + [anon_sym_ends_DASHwith] = ACTIONS(1020), + [anon_sym_EQ_TILDE] = ACTIONS(1020), + [anon_sym_BANG_TILDE] = ACTIONS(1020), + [anon_sym_bit_DASHand] = ACTIONS(1020), + [anon_sym_bit_DASHxor] = ACTIONS(1020), + [anon_sym_bit_DASHor] = ACTIONS(1020), + [anon_sym_and] = ACTIONS(1020), + [anon_sym_xor] = ACTIONS(1020), + [anon_sym_or] = ACTIONS(1020), + [anon_sym_not] = ACTIONS(1020), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1020), + [anon_sym_DOT_DOT_LT] = ACTIONS(1020), + [anon_sym_null] = ACTIONS(1020), + [anon_sym_true] = ACTIONS(1020), + [anon_sym_false] = ACTIONS(1020), + [aux_sym__val_number_decimal_token1] = ACTIONS(1020), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [anon_sym_DOT2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1020), + [aux_sym__val_number_token1] = ACTIONS(1020), + [aux_sym__val_number_token2] = ACTIONS(1020), + [aux_sym__val_number_token3] = ACTIONS(1020), + [aux_sym__val_number_token4] = ACTIONS(1020), + [aux_sym__val_number_token5] = ACTIONS(1020), + [aux_sym__val_number_token6] = ACTIONS(1020), + [anon_sym_0b] = ACTIONS(1020), + [anon_sym_0o] = ACTIONS(1020), + [anon_sym_0x] = ACTIONS(1020), + [sym_val_date] = ACTIONS(1020), + [anon_sym_DQUOTE] = ACTIONS(1020), + [sym__str_single_quotes] = ACTIONS(1020), + [sym__str_back_ticks] = ACTIONS(1020), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1020), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1020), + [anon_sym_POUND] = ACTIONS(113), + }, + [2710] = { + [sym__expression] = STATE(7611), + [sym_expr_unary] = STATE(5998), + [sym__expr_unary_minus] = STATE(5999), + [sym_expr_binary] = STATE(5998), + [sym__expr_binary_expression] = STATE(6374), + [sym_expr_parenthesized] = STATE(5273), + [sym_val_range] = STATE(6728), + [sym__value] = STATE(5998), + [sym_val_nothing] = STATE(6108), + [sym_val_bool] = STATE(6108), + [sym_val_variable] = STATE(5385), + [sym__var] = STATE(4639), + [sym_val_number] = STATE(6108), + [sym__val_number_decimal] = STATE(5069), + [sym__val_number] = STATE(6110), + [sym_val_duration] = STATE(6108), + [sym_val_filesize] = STATE(6108), + [sym_val_binary] = STATE(6108), + [sym_val_string] = STATE(6108), + [sym__str_double_quotes] = STATE(6195), + [sym_val_interpolated] = STATE(6108), + [sym__inter_single_quotes] = STATE(6197), + [sym__inter_double_quotes] = STATE(6198), + [sym_val_list] = STATE(6108), + [sym_val_record] = STATE(6108), + [sym_val_table] = STATE(6108), + [sym_val_closure] = STATE(6108), + [sym__flag] = STATE(3055), + [sym_short_flag] = STATE(6049), + [sym_long_flag] = STATE(6049), + [sym_long_flag_equals_value] = STATE(6112), + [sym_comment] = STATE(2710), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(2804), + [anon_sym_DOLLAR] = ACTIONS(2806), + [anon_sym_DASH_DASH] = ACTIONS(2557), + [anon_sym_DASH] = ACTIONS(6608), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_DOT_DOT] = ACTIONS(6610), + [anon_sym_not] = ACTIONS(4172), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6612), + [anon_sym_DOT_DOT_LT] = ACTIONS(6612), + [anon_sym_null] = ACTIONS(6614), + [anon_sym_true] = ACTIONS(6616), + [anon_sym_false] = ACTIONS(6616), + [aux_sym__val_number_decimal_token1] = ACTIONS(6618), + [aux_sym__val_number_decimal_token2] = ACTIONS(6620), + [anon_sym_DOT2] = ACTIONS(6622), + [aux_sym__val_number_decimal_token3] = ACTIONS(5057), + [aux_sym__val_number_token1] = ACTIONS(2828), + [aux_sym__val_number_token2] = ACTIONS(2828), + [aux_sym__val_number_token3] = ACTIONS(2828), + [aux_sym__val_number_token4] = ACTIONS(2828), + [aux_sym__val_number_token5] = ACTIONS(2828), + [aux_sym__val_number_token6] = ACTIONS(2828), + [anon_sym_0b] = ACTIONS(2832), + [anon_sym_0o] = ACTIONS(2834), + [anon_sym_0x] = ACTIONS(2834), + [sym_val_date] = ACTIONS(6624), + [anon_sym_DQUOTE] = ACTIONS(4192), + [sym__str_single_quotes] = ACTIONS(4194), + [sym__str_back_ticks] = ACTIONS(4194), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2844), + [anon_sym_POUND] = ACTIONS(3), + }, + [2711] = { + [sym__expression] = STATE(7614), + [sym_expr_unary] = STATE(5998), + [sym__expr_unary_minus] = STATE(5999), + [sym_expr_binary] = STATE(5998), + [sym__expr_binary_expression] = STATE(6374), + [sym_expr_parenthesized] = STATE(5273), + [sym_val_range] = STATE(6728), + [sym__value] = STATE(5998), + [sym_val_nothing] = STATE(6108), + [sym_val_bool] = STATE(6108), + [sym_val_variable] = STATE(5385), + [sym__var] = STATE(4639), + [sym_val_number] = STATE(6108), + [sym__val_number_decimal] = STATE(5069), + [sym__val_number] = STATE(6110), + [sym_val_duration] = STATE(6108), + [sym_val_filesize] = STATE(6108), + [sym_val_binary] = STATE(6108), + [sym_val_string] = STATE(6108), + [sym__str_double_quotes] = STATE(6195), + [sym_val_interpolated] = STATE(6108), + [sym__inter_single_quotes] = STATE(6197), + [sym__inter_double_quotes] = STATE(6198), + [sym_val_list] = STATE(6108), + [sym_val_record] = STATE(6108), + [sym_val_table] = STATE(6108), + [sym_val_closure] = STATE(6108), + [sym__flag] = STATE(3059), + [sym_short_flag] = STATE(6049), + [sym_long_flag] = STATE(6049), + [sym_long_flag_equals_value] = STATE(6112), + [sym_comment] = STATE(2711), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(2804), + [anon_sym_DOLLAR] = ACTIONS(2806), + [anon_sym_DASH_DASH] = ACTIONS(2557), + [anon_sym_DASH] = ACTIONS(6608), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_DOT_DOT] = ACTIONS(6610), + [anon_sym_not] = ACTIONS(4172), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6612), + [anon_sym_DOT_DOT_LT] = ACTIONS(6612), + [anon_sym_null] = ACTIONS(6614), + [anon_sym_true] = ACTIONS(6616), + [anon_sym_false] = ACTIONS(6616), + [aux_sym__val_number_decimal_token1] = ACTIONS(6618), + [aux_sym__val_number_decimal_token2] = ACTIONS(6620), + [anon_sym_DOT2] = ACTIONS(6622), + [aux_sym__val_number_decimal_token3] = ACTIONS(5057), + [aux_sym__val_number_token1] = ACTIONS(2828), + [aux_sym__val_number_token2] = ACTIONS(2828), + [aux_sym__val_number_token3] = ACTIONS(2828), + [aux_sym__val_number_token4] = ACTIONS(2828), + [aux_sym__val_number_token5] = ACTIONS(2828), + [aux_sym__val_number_token6] = ACTIONS(2828), + [anon_sym_0b] = ACTIONS(2832), + [anon_sym_0o] = ACTIONS(2834), + [anon_sym_0x] = ACTIONS(2834), + [sym_val_date] = ACTIONS(6624), + [anon_sym_DQUOTE] = ACTIONS(4192), + [sym__str_single_quotes] = ACTIONS(4194), + [sym__str_back_ticks] = ACTIONS(4194), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2844), + [anon_sym_POUND] = ACTIONS(3), + }, + [2712] = { + [sym__expression] = STATE(7615), + [sym_expr_unary] = STATE(5998), + [sym__expr_unary_minus] = STATE(5999), + [sym_expr_binary] = STATE(5998), + [sym__expr_binary_expression] = STATE(6374), + [sym_expr_parenthesized] = STATE(5273), + [sym_val_range] = STATE(6728), + [sym__value] = STATE(5998), + [sym_val_nothing] = STATE(6108), + [sym_val_bool] = STATE(6108), + [sym_val_variable] = STATE(5385), + [sym__var] = STATE(4639), + [sym_val_number] = STATE(6108), + [sym__val_number_decimal] = STATE(5069), + [sym__val_number] = STATE(6110), + [sym_val_duration] = STATE(6108), + [sym_val_filesize] = STATE(6108), + [sym_val_binary] = STATE(6108), + [sym_val_string] = STATE(6108), + [sym__str_double_quotes] = STATE(6195), + [sym_val_interpolated] = STATE(6108), + [sym__inter_single_quotes] = STATE(6197), + [sym__inter_double_quotes] = STATE(6198), + [sym_val_list] = STATE(6108), + [sym_val_record] = STATE(6108), + [sym_val_table] = STATE(6108), + [sym_val_closure] = STATE(6108), + [sym__flag] = STATE(3060), + [sym_short_flag] = STATE(6049), + [sym_long_flag] = STATE(6049), + [sym_long_flag_equals_value] = STATE(6112), + [sym_comment] = STATE(2712), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(2804), + [anon_sym_DOLLAR] = ACTIONS(2806), + [anon_sym_DASH_DASH] = ACTIONS(2557), + [anon_sym_DASH] = ACTIONS(6608), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_DOT_DOT] = ACTIONS(6610), + [anon_sym_not] = ACTIONS(4172), + [anon_sym_DOT_DOT_EQ] = ACTIONS(6612), + [anon_sym_DOT_DOT_LT] = ACTIONS(6612), + [anon_sym_null] = ACTIONS(6614), + [anon_sym_true] = ACTIONS(6616), + [anon_sym_false] = ACTIONS(6616), + [aux_sym__val_number_decimal_token1] = ACTIONS(6618), + [aux_sym__val_number_decimal_token2] = ACTIONS(6620), + [anon_sym_DOT2] = ACTIONS(6622), + [aux_sym__val_number_decimal_token3] = ACTIONS(5057), + [aux_sym__val_number_token1] = ACTIONS(2828), + [aux_sym__val_number_token2] = ACTIONS(2828), + [aux_sym__val_number_token3] = ACTIONS(2828), + [aux_sym__val_number_token4] = ACTIONS(2828), + [aux_sym__val_number_token5] = ACTIONS(2828), + [aux_sym__val_number_token6] = ACTIONS(2828), + [anon_sym_0b] = ACTIONS(2832), + [anon_sym_0o] = ACTIONS(2834), + [anon_sym_0x] = ACTIONS(2834), + [sym_val_date] = ACTIONS(6624), + [anon_sym_DQUOTE] = ACTIONS(4192), + [sym__str_single_quotes] = ACTIONS(4194), + [sym__str_back_ticks] = ACTIONS(4194), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2844), + [anon_sym_POUND] = ACTIONS(3), + }, + [2713] = { + [sym_comment] = STATE(2713), + [ts_builtin_sym_end] = ACTIONS(1259), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym_LF] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1257), + [anon_sym_DOLLAR] = ACTIONS(1257), + [anon_sym_GT] = ACTIONS(1257), + [anon_sym_DASH_DASH] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_in] = ACTIONS(1257), + [anon_sym_LBRACE] = ACTIONS(1257), + [anon_sym_DOT_DOT] = ACTIONS(1257), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_STAR_STAR] = ACTIONS(1257), + [anon_sym_PLUS_PLUS] = ACTIONS(1257), + [anon_sym_SLASH] = ACTIONS(1257), + [anon_sym_mod] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_bit_DASHshl] = ACTIONS(1257), + [anon_sym_bit_DASHshr] = ACTIONS(1257), + [anon_sym_EQ_EQ] = ACTIONS(1257), + [anon_sym_BANG_EQ] = ACTIONS(1257), + [anon_sym_LT2] = ACTIONS(1257), + [anon_sym_LT_EQ] = ACTIONS(1257), + [anon_sym_GT_EQ] = ACTIONS(1257), + [anon_sym_not_DASHin] = ACTIONS(1257), + [anon_sym_starts_DASHwith] = ACTIONS(1257), + [anon_sym_ends_DASHwith] = ACTIONS(1257), + [anon_sym_EQ_TILDE] = ACTIONS(1257), + [anon_sym_BANG_TILDE] = ACTIONS(1257), + [anon_sym_bit_DASHand] = ACTIONS(1257), + [anon_sym_bit_DASHxor] = ACTIONS(1257), + [anon_sym_bit_DASHor] = ACTIONS(1257), + [anon_sym_and] = ACTIONS(1257), + [anon_sym_xor] = ACTIONS(1257), + [anon_sym_or] = ACTIONS(1257), + [anon_sym_not] = ACTIONS(1257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1257), + [anon_sym_DOT_DOT_LT] = ACTIONS(1257), + [anon_sym_null] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [aux_sym__val_number_decimal_token1] = ACTIONS(1257), + [aux_sym__val_number_decimal_token2] = ACTIONS(1257), + [anon_sym_DOT2] = ACTIONS(1257), + [aux_sym__val_number_decimal_token3] = ACTIONS(1257), + [aux_sym__val_number_token1] = ACTIONS(1257), + [aux_sym__val_number_token2] = ACTIONS(1257), + [aux_sym__val_number_token3] = ACTIONS(1257), + [aux_sym__val_number_token4] = ACTIONS(1257), + [aux_sym__val_number_token5] = ACTIONS(1257), + [aux_sym__val_number_token6] = ACTIONS(1257), + [anon_sym_0b] = ACTIONS(1257), + [anon_sym_0o] = ACTIONS(1257), + [anon_sym_0x] = ACTIONS(1257), + [sym_val_date] = ACTIONS(1257), + [anon_sym_DQUOTE] = ACTIONS(1257), + [sym__str_single_quotes] = ACTIONS(1257), + [sym__str_back_ticks] = ACTIONS(1257), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1257), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1257), [anon_sym_POUND] = ACTIONS(113), }, }; @@ -350961,9 +310347,9 @@ static const uint16_t ts_small_parse_table[] = { [0] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3139), 1, + STATE(2714), 1, sym_comment, - ACTIONS(7100), 18, + ACTIONS(6660), 18, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -350982,7 +310368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - ACTIONS(7098), 44, + ACTIONS(6658), 44, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -351030,9 +310416,9 @@ static const uint16_t ts_small_parse_table[] = { [73] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3140), 1, + STATE(2715), 1, sym_comment, - ACTIONS(1109), 19, + ACTIONS(1037), 19, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -351052,7 +310438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1111), 43, + ACTIONS(1039), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -351099,78 +310485,9 @@ static const uint16_t ts_small_parse_table[] = { [146] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3141), 1, - sym_comment, - ACTIONS(7104), 18, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - ACTIONS(7102), 44, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_DOT_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [219] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3142), 1, + STATE(2716), 1, sym_comment, - ACTIONS(1113), 19, + ACTIONS(1041), 19, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -351190,7 +310507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1115), 43, + ACTIONS(1043), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -351234,22 +310551,22 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [292] = 7, + [219] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7106), 1, + ACTIONS(6662), 1, anon_sym_DOT, - STATE(3143), 1, + STATE(2717), 1, sym_comment, - STATE(3144), 1, + STATE(2718), 1, sym_path, - STATE(3376), 1, + STATE(2936), 1, sym_cell_path, - ACTIONS(1012), 3, + ACTIONS(1004), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1010), 56, + ACTIONS(1002), 56, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -351306,22 +310623,22 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [371] = 7, + [298] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7106), 1, + ACTIONS(6662), 1, anon_sym_DOT, - STATE(3144), 1, + STATE(2718), 1, sym_comment, - STATE(3145), 1, + STATE(2719), 1, aux_sym_cell_path_repeat1, - STATE(3183), 1, + STATE(2904), 1, sym_path, - ACTIONS(989), 3, + ACTIONS(1012), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(987), 56, + ACTIONS(1010), 56, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -351378,16 +310695,16 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [450] = 7, + [377] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7106), 1, + ACTIONS(6662), 1, anon_sym_DOT, - STATE(3145), 1, + STATE(2719), 1, sym_comment, - STATE(3146), 1, + STATE(2720), 1, aux_sym_cell_path_repeat1, - STATE(3183), 1, + STATE(2904), 1, sym_path, ACTIONS(1008), 3, anon_sym_DOT_DOT_EQ2, @@ -351450,21 +310767,21 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [529] = 6, + [456] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7108), 1, + ACTIONS(6664), 1, anon_sym_DOT, - STATE(3183), 1, + STATE(2904), 1, sym_path, - STATE(3146), 2, + STATE(2720), 2, sym_comment, aux_sym_cell_path_repeat1, - ACTIONS(1001), 3, + ACTIONS(987), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(999), 56, + ACTIONS(985), 56, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -351521,12 +310838,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [606] = 4, + [533] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3147), 1, + STATE(2721), 1, sym_comment, - ACTIONS(1117), 19, + ACTIONS(1047), 19, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -351546,7 +310863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1119), 43, + ACTIONS(1049), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -351590,169 +310907,31 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [679] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(3148), 1, - sym_comment, - ACTIONS(1061), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1059), 58, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [751] = 4, + [606] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3149), 1, + STATE(2722), 1, sym_comment, - ACTIONS(1168), 18, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1170), 43, + ACTIONS(6669), 18, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [823] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7111), 1, - anon_sym_DOT, - STATE(3150), 1, - sym_comment, - STATE(3165), 1, - sym_path, - STATE(3420), 1, - sym_cell_path, - ACTIONS(1012), 14, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1010), 44, + anon_sym_CARET, + ACTIONS(6667), 44, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -351765,22 +310944,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_module, anon_sym_use, + anon_sym_DOLLAR, anon_sym_error, - anon_sym_list, anon_sym_DASH, anon_sym_break, anon_sym_continue, anon_sym_for, - anon_sym_in, anon_sym_loop, - anon_sym_make, anon_sym_while, anon_sym_do, anon_sym_if, - anon_sym_else, anon_sym_match, + anon_sym_DOT_DOT, anon_sym_try, - anon_sym_catch, anon_sym_return, anon_sym_source, anon_sym_source_DASHenv, @@ -351788,240 +310964,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [901] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7113), 1, - anon_sym_DOT, - STATE(3151), 1, - sym_comment, - STATE(3153), 1, - sym_path, - STATE(3450), 1, - sym_cell_path, - ACTIONS(1010), 15, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1012), 43, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [979] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7113), 1, - anon_sym_DOT, - STATE(3152), 1, - sym_comment, - STATE(3153), 1, - sym_path, - STATE(3418), 1, - sym_cell_path, - ACTIONS(1148), 15, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + anon_sym_where, anon_sym_not, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1150), 43, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [1057] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7113), 1, - anon_sym_DOT, - STATE(3153), 1, - sym_comment, - STATE(3154), 1, - aux_sym_cell_path_repeat1, - STATE(3366), 1, - sym_path, - ACTIONS(987), 15, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, aux_sym__val_number_decimal_token1, anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(989), 43, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [1135] = 7, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [679] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7113), 1, + ACTIONS(6671), 1, anon_sym_DOT, - STATE(3154), 1, + STATE(2723), 1, sym_comment, - STATE(3155), 1, - aux_sym_cell_path_repeat1, - STATE(3366), 1, + STATE(2748), 1, sym_path, - ACTIONS(1006), 15, + STATE(3069), 1, + sym_cell_path, + ACTIONS(1051), 15, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -352037,7 +311003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1008), 43, + ACTIONS(1053), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -352081,17 +311047,17 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [1213] = 6, + [757] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7115), 1, + ACTIONS(6673), 1, anon_sym_DOT, - STATE(3366), 1, + STATE(2963), 1, sym_path, - STATE(3155), 2, + STATE(2724), 2, sym_comment, aux_sym_cell_path_repeat1, - ACTIONS(999), 15, + ACTIONS(985), 15, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -352107,7 +311073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1001), 43, + ACTIONS(987), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -352151,33 +311117,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [1289] = 7, - ACTIONS(3), 1, + [833] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7111), 1, - anon_sym_DOT, - STATE(3156), 1, + ACTIONS(6676), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6678), 1, + aux_sym__immediate_decimal_token2, + STATE(2725), 1, sym_comment, - STATE(3158), 1, - aux_sym_cell_path_repeat1, - STATE(3370), 1, - sym_path, - ACTIONS(1008), 14, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, + ACTIONS(2231), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1006), 44, + sym__entry_separator, + ACTIONS(2229), 56, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -352190,6 +311143,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_module, anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_error, anon_sym_list, anon_sym_DASH, @@ -352204,6 +311159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_match, + anon_sym_RBRACE, anon_sym_try, anon_sym_catch, anon_sym_return, @@ -352218,143 +311174,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DOT_DOT2, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, aux_sym__record_key_token2, - [1367] = 43, + [909] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(39), 1, + STATE(2726), 1, + sym_comment, + ACTIONS(1061), 18, + anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH, - ACTIONS(59), 1, + anon_sym_in, anon_sym_DOT_DOT, - ACTIONS(77), 1, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_not, - ACTIONS(81), 1, - anon_sym_null, - ACTIONS(89), 1, - anon_sym_DOT2, - ACTIONS(91), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(97), 1, - anon_sym_0b, - ACTIONS(101), 1, - sym_val_date, - ACTIONS(103), 1, - anon_sym_DQUOTE, - ACTIONS(107), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(109), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, - anon_sym_DOLLAR, - ACTIONS(7026), 1, - anon_sym_LBRACE, - ACTIONS(7118), 1, - sym_identifier, - ACTIONS(7120), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, - aux_sym__val_number_decimal_token2, - STATE(3157), 1, - sym_comment, - STATE(4698), 1, - sym__val_number_decimal, - STATE(4886), 1, - sym__var, - STATE(5401), 1, - sym_val_number, - STATE(5567), 1, - sym_val_variable, - STATE(5573), 1, - sym_expr_parenthesized, - STATE(5769), 1, - sym__val_number, - STATE(6347), 1, - sym__expr_unary_minus, - STATE(6363), 1, - sym__inter_single_quotes, - STATE(6365), 1, - sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, - sym__expr_binary_expression, - STATE(8689), 1, - sym_val_range, - STATE(9636), 1, - sym_block, - STATE(9637), 1, - sym__where_predicate, - STATE(9638), 1, - sym__expression, - ACTIONS(79), 2, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(95), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(99), 2, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(105), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(6379), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(93), 4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - STATE(6374), 11, - sym_val_nothing, - sym_val_bool, - 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, - [1517] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7124), 1, - anon_sym_DOT, - STATE(3370), 1, - sym_path, - STATE(3158), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1001), 14, + ACTIONS(1063), 43, + anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, 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_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, 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(999), 44, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [981] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(2727), 1, + sym_comment, + ACTIONS(1035), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1033), 58, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -352367,6 +311277,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_module, anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_error, anon_sym_list, anon_sym_DASH, @@ -352381,6 +311293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_match, + anon_sym_RBRACE, anon_sym_try, anon_sym_catch, anon_sym_return, @@ -352392,27 +311305,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_overlay, anon_sym_new, anon_sym_as, + anon_sym_QMARK2, anon_sym_PLUS, anon_sym_DOT_DOT2, + anon_sym_DOT, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, aux_sym__record_key_token2, - [1593] = 6, + [1053] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7127), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7129), 1, - aux_sym__immediate_decimal_token2, - STATE(3159), 1, + STATE(2728), 1, sym_comment, - ACTIONS(2439), 3, + ACTIONS(1022), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(2437), 56, + ACTIONS(1020), 58, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -352453,8 +311373,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_overlay, anon_sym_new, anon_sym_as, + anon_sym_QMARK2, anon_sym_PLUS, anon_sym_DOT_DOT2, + anon_sym_DOT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, anon_sym_DOT2, @@ -352469,18 +311391,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [1669] = 5, + [1125] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7131), 1, - anon_sym_QMARK2, - STATE(3160), 1, + ACTIONS(6680), 1, + anon_sym_DOT, + ACTIONS(6682), 1, + aux_sym__immediate_decimal_token2, + STATE(2729), 1, sym_comment, - ACTIONS(1072), 3, + ACTIONS(2358), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1070), 57, + ACTIONS(2356), 56, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -352523,7 +311447,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_PLUS, anon_sym_DOT_DOT2, - anon_sym_DOT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, anon_sym_DOT2, @@ -352538,18 +311461,18 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [1743] = 7, + [1201] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7113), 1, + ACTIONS(6671), 1, anon_sym_DOT, - STATE(3153), 1, - sym_path, - STATE(3161), 1, + STATE(2730), 1, sym_comment, - STATE(3419), 1, + STATE(2748), 1, + sym_path, + STATE(3022), 1, sym_cell_path, - ACTIONS(1179), 15, + ACTIONS(1097), 15, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -352565,7 +311488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1181), 43, + ACTIONS(1099), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -352609,18 +311532,140 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [1821] = 5, - ACTIONS(113), 1, + [1279] = 43, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7131), 1, - anon_sym_QMARK2, - STATE(3162), 1, + ACTIONS(137), 1, + anon_sym_LBRACK, + ACTIONS(139), 1, + anon_sym_LPAREN, + ACTIONS(171), 1, + anon_sym_DOT_DOT, + ACTIONS(191), 1, + anon_sym_not, + ACTIONS(195), 1, + anon_sym_null, + ACTIONS(203), 1, + anon_sym_DOT2, + ACTIONS(205), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(211), 1, + anon_sym_0b, + ACTIONS(215), 1, + sym_val_date, + ACTIONS(217), 1, + anon_sym_DQUOTE, + ACTIONS(221), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(223), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(391), 1, + anon_sym_DASH, + ACTIONS(1540), 1, + anon_sym_DOLLAR, + ACTIONS(6499), 1, + anon_sym_LBRACE, + ACTIONS(6684), 1, + sym_identifier, + ACTIONS(6686), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6688), 1, + aux_sym__val_number_decimal_token2, + STATE(2731), 1, sym_comment, - ACTIONS(1072), 3, + STATE(3982), 1, + sym__val_number_decimal, + STATE(4386), 1, + sym__var, + STATE(4586), 1, + sym_val_number, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, + sym_expr_parenthesized, + STATE(5017), 1, + sym_val_variable, + STATE(5408), 1, + sym__str_double_quotes, + STATE(5684), 1, + sym__inter_single_quotes, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, + sym__expr_unary_minus, + STATE(6388), 1, + sym__expr_binary_expression, + STATE(8000), 1, + sym_val_range, + STATE(8878), 1, + sym_block, + STATE(8879), 1, + sym__where_predicate, + STATE(8882), 1, + sym__expression, + ACTIONS(193), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(197), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(209), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(213), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(219), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5709), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(207), 4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + STATE(5711), 11, + sym_val_nothing, + sym_val_bool, + 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, + [1429] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6690), 1, + anon_sym_DOT, + STATE(2732), 1, + sym_comment, + STATE(2733), 1, + aux_sym_cell_path_repeat1, + STATE(2947), 1, + sym_path, + ACTIONS(1008), 14, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1070), 57, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1006), 44, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -352633,8 +311678,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_module, anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + anon_sym_DOT_DOT2, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [1507] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6692), 1, + anon_sym_DOT, + STATE(2947), 1, + sym_path, + STATE(2733), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(987), 14, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(985), 44, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_error, anon_sym_list, anon_sym_DASH, @@ -352649,7 +311762,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_match, - anon_sym_RBRACE, anon_sym_try, anon_sym_catch, anon_sym_return, @@ -352663,10 +311775,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_PLUS, anon_sym_DOT_DOT2, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [1583] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6671), 1, anon_sym_DOT, + STATE(2734), 1, + sym_comment, + STATE(2748), 1, + sym_path, + STATE(3076), 1, + sym_cell_path, + ACTIONS(1085), 15, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1087), 43, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -352674,22 +311845,24 @@ 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, - aux_sym__record_key_token2, - [1895] = 7, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [1661] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7113), 1, + ACTIONS(6671), 1, anon_sym_DOT, - STATE(3153), 1, - sym_path, - STATE(3163), 1, + STATE(2735), 1, sym_comment, - STATE(3415), 1, + STATE(2748), 1, + sym_path, + STATE(3002), 1, sym_cell_path, - ACTIONS(995), 15, + ACTIONS(992), 15, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -352705,7 +311878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(997), 43, + ACTIONS(994), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -352749,18 +311922,18 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [1973] = 7, + [1739] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7113), 1, + ACTIONS(6671), 1, anon_sym_DOT, - STATE(3153), 1, - sym_path, - STATE(3164), 1, + STATE(2736), 1, sym_comment, - STATE(3439), 1, + STATE(2748), 1, + sym_path, + STATE(3035), 1, sym_cell_path, - ACTIONS(1203), 15, + ACTIONS(1101), 15, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -352776,7 +311949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1205), 43, + ACTIONS(1103), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -352820,33 +311993,88 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [2051] = 7, + [1817] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7111), 1, - anon_sym_DOT, - STATE(3156), 1, - aux_sym_cell_path_repeat1, - STATE(3165), 1, + ACTIONS(6695), 1, + anon_sym_DOT_DOT2, + STATE(2737), 1, sym_comment, - STATE(3370), 1, - sym_path, - ACTIONS(989), 14, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, + ACTIONS(6697), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(1089), 17, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1091), 41, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, 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(987), 44, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [1893] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(6699), 1, + anon_sym_QMARK2, + STATE(2738), 1, + sym_comment, + ACTIONS(1026), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1024), 57, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -352859,6 +312087,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_module, anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_error, anon_sym_list, anon_sym_DASH, @@ -352873,6 +312103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_match, + anon_sym_RBRACE, anon_sym_try, anon_sym_catch, anon_sym_return, @@ -352886,42 +312117,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_PLUS, anon_sym_DOT_DOT2, + anon_sym_DOT, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, aux_sym__record_key_token2, - [2129] = 7, + [1967] = 41, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7113), 1, - anon_sym_DOT, - STATE(3153), 1, - sym_path, - STATE(3166), 1, - sym_comment, - STATE(3485), 1, - sym_cell_path, - ACTIONS(1154), 15, + ACTIONS(3100), 1, + anon_sym_LPAREN, + ACTIONS(3128), 1, + anon_sym_0b, + ACTIONS(3140), 1, + aux_sym_unquoted_token1, + ACTIONS(3178), 1, + anon_sym_DQUOTE, + ACTIONS(3659), 1, + anon_sym_DASH, + ACTIONS(5735), 1, anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(6701), 1, + anon_sym_LBRACK, + ACTIONS(6703), 1, + anon_sym_LBRACE, + ACTIONS(6705), 1, + anon_sym_DOT_DOT, + ACTIONS(6709), 1, + anon_sym_null, + ACTIONS(6713), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6715), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6717), 1, + anon_sym_DOT2, + ACTIONS(6719), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6723), 1, + sym_val_date, + STATE(2739), 1, + sym_comment, + STATE(3929), 1, + sym__var, + STATE(4922), 1, + sym__val_number, + STATE(5067), 1, + sym__str_double_quotes, + STATE(7560), 1, + sym__val_number_decimal, + STATE(8987), 1, + sym_expr_parenthesized, + STATE(8988), 1, + sym_val_variable, + STATE(9806), 1, + sym_val_bool, + STATE(9859), 1, + sym__match_pattern_expression, + STATE(9863), 1, + sym__match_pattern_list, + STATE(9864), 1, + sym__match_pattern_record, + STATE(9869), 1, + sym__expr_unary_minus, + STATE(9878), 1, + sym_unquoted, + STATE(10105), 1, + sym__val_range, + STATE(10189), 1, + sym__match_pattern, + STATE(10523), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3130), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3180), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6707), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(6711), 2, + anon_sym_true, + anon_sym_false, + STATE(9862), 2, + sym__match_pattern_value, + sym_val_range, + ACTIONS(3124), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6721), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(9875), 7, + sym_val_nothing, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + ACTIONS(3685), 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, + [2113] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1078), 1, anon_sym_DASH, + ACTIONS(6695), 1, + anon_sym_DOT_DOT2, + STATE(2740), 1, + sym_comment, + ACTIONS(6697), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1076), 6, + anon_sym_GT, anon_sym_in, - anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, + ACTIONS(1072), 10, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1156), 43, + ACTIONS(1074), 20, anon_sym_LBRACK, anon_sym_LPAREN, 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1169), 21, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -352943,36 +312310,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [2207] = 6, + [2195] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7133), 1, - anon_sym_DOT_DOT2, - STATE(3167), 1, + ACTIONS(6671), 1, + anon_sym_DOT, + STATE(2741), 1, sym_comment, - ACTIONS(7135), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1158), 17, + STATE(2748), 1, + sym_path, + STATE(3048), 1, + sym_cell_path, + ACTIONS(1057), 15, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -352983,14 +312332,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_LT2, anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1160), 41, + ACTIONS(1059), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -353015,6 +312362,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -353032,16 +312381,33 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [2283] = 4, - ACTIONS(113), 1, + [2273] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3168), 1, + ACTIONS(6690), 1, + anon_sym_DOT, + STATE(2732), 1, + aux_sym_cell_path_repeat1, + STATE(2742), 1, sym_comment, - ACTIONS(1065), 3, + STATE(2947), 1, + sym_path, + ACTIONS(1012), 14, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1063), 58, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1010), 44, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -353054,8 +312420,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_module, anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_error, anon_sym_list, anon_sym_DASH, @@ -353070,7 +312434,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_match, - anon_sym_RBRACE, anon_sym_try, anon_sym_catch, anon_sym_return, @@ -353082,13 +312445,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_overlay, anon_sym_new, anon_sym_as, - anon_sym_QMARK2, anon_sym_PLUS, anon_sym_DOT_DOT2, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [2351] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6671), 1, anon_sym_DOT, + STATE(2743), 1, + sym_comment, + STATE(2748), 1, + sym_path, + STATE(2989), 1, + sym_cell_path, + ACTIONS(1093), 15, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1095), 43, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -353096,24 +312517,24 @@ 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, - aux_sym__record_key_token2, - [2355] = 6, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [2429] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7137), 1, - anon_sym_DOT, - ACTIONS(7139), 1, - aux_sym__immediate_decimal_token2, - STATE(3169), 1, + ACTIONS(6699), 1, + anon_sym_QMARK2, + STATE(2744), 1, sym_comment, - ACTIONS(2583), 3, + ACTIONS(1026), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(2581), 56, + ACTIONS(1024), 57, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -353156,6 +312577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_PLUS, anon_sym_DOT_DOT2, + anon_sym_DOT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, anon_sym_DOT2, @@ -353170,102 +312592,102 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [2431] = 43, + [2503] = 43, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(137), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(171), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(59), 1, anon_sym_DOT_DOT, - ACTIONS(191), 1, + ACTIONS(77), 1, anon_sym_not, - ACTIONS(195), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(203), 1, + ACTIONS(89), 1, anon_sym_DOT2, - ACTIONS(205), 1, + ACTIONS(91), 1, aux_sym__val_number_decimal_token3, - ACTIONS(211), 1, + ACTIONS(97), 1, anon_sym_0b, - ACTIONS(215), 1, + ACTIONS(101), 1, sym_val_date, - ACTIONS(217), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(221), 1, + ACTIONS(107), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(223), 1, + ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, - anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(6930), 1, + ACTIONS(6606), 1, anon_sym_LBRACE, - ACTIONS(7141), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3170), 1, + STATE(2745), 1, sym_comment, - STATE(4458), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4428), 1, sym__var, - STATE(5173), 1, + STATE(4920), 1, sym_val_number, - STATE(5308), 1, - sym_expr_parenthesized, - STATE(5404), 1, + STATE(5094), 1, sym_val_variable, - STATE(5462), 1, + STATE(5154), 1, + sym_expr_parenthesized, + STATE(5285), 1, sym__val_number, - STATE(5774), 1, + STATE(5878), 1, + sym__expr_unary_minus, + STATE(5888), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6183), 1, - sym__expr_unary_minus, - STATE(6785), 1, + STATE(5940), 1, + sym__inter_double_quotes, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8295), 1, sym_val_range, - STATE(8920), 1, + STATE(9591), 1, sym_block, - STATE(8922), 1, + STATE(9592), 1, sym__where_predicate, - STATE(8935), 1, + STATE(9593), 1, sym__expression, - ACTIONS(193), 2, + ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(197), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(209), 2, + ACTIONS(95), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(213), 2, + ACTIONS(99), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(219), 2, + ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(207), 4, + ACTIONS(93), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -353277,58 +312699,108 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [2581] = 9, + [2653] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1200), 1, - anon_sym_DASH, - ACTIONS(7133), 1, - anon_sym_DOT_DOT2, - STATE(3171), 1, + ACTIONS(6690), 1, + anon_sym_DOT, + STATE(2742), 1, + sym_path, + STATE(2746), 1, sym_comment, - ACTIONS(7135), 2, + STATE(3001), 1, + sym_cell_path, + ACTIONS(1004), 14, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1198), 6, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1002), 44, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + anon_sym_DOT_DOT2, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [2731] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6671), 1, + anon_sym_DOT, + STATE(2747), 1, + sym_comment, + STATE(2748), 1, + sym_path, + STATE(2985), 1, + sym_cell_path, + ACTIONS(1002), 15, + anon_sym_DOLLAR, anon_sym_GT, + anon_sym_DASH, anon_sym_in, + anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1194), 10, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1196), 20, + ACTIONS(1004), 43, anon_sym_LBRACK, anon_sym_LPAREN, 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1366), 21, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -353350,18 +312822,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [2663] = 7, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [2809] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7113), 1, + ACTIONS(6671), 1, anon_sym_DOT, - STATE(3153), 1, - sym_path, - STATE(3172), 1, + STATE(2748), 1, sym_comment, - STATE(3410), 1, - sym_cell_path, - ACTIONS(1190), 15, + STATE(2749), 1, + aux_sym_cell_path_repeat1, + STATE(2963), 1, + sym_path, + ACTIONS(1010), 15, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -353377,7 +312868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1192), 43, + ACTIONS(1012), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -353421,18 +312912,18 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [2741] = 7, + [2887] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7113), 1, + ACTIONS(6671), 1, anon_sym_DOT, - STATE(3153), 1, - sym_path, - STATE(3173), 1, + STATE(2724), 1, + aux_sym_cell_path_repeat1, + STATE(2749), 1, sym_comment, - STATE(3446), 1, - sym_cell_path, - ACTIONS(1186), 15, + STATE(2963), 1, + sym_path, + ACTIONS(1006), 15, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -353448,7 +312939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1188), 43, + ACTIONS(1008), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -353492,12 +312983,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [2819] = 4, + [2965] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3174), 1, + STATE(2750), 1, sym_comment, - ACTIONS(1172), 18, + ACTIONS(1068), 18, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -353516,7 +313007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1174), 43, + ACTIONS(1070), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -353560,111 +313051,6 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [2891] = 41, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2688), 1, - anon_sym_LPAREN, - ACTIONS(2718), 1, - anon_sym_0b, - ACTIONS(2734), 1, - aux_sym_unquoted_token1, - ACTIONS(3391), 1, - anon_sym_DQUOTE, - ACTIONS(3884), 1, - anon_sym_DASH, - ACTIONS(6253), 1, - anon_sym_DOLLAR, - ACTIONS(7147), 1, - anon_sym_LBRACK, - ACTIONS(7149), 1, - anon_sym_LBRACE, - ACTIONS(7151), 1, - anon_sym_DOT_DOT, - ACTIONS(7155), 1, - anon_sym_null, - ACTIONS(7159), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7161), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(7163), 1, - anon_sym_DOT2, - ACTIONS(7165), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(7169), 1, - sym_val_date, - STATE(3175), 1, - sym_comment, - STATE(4486), 1, - sym__var, - STATE(5463), 1, - sym__val_number, - STATE(5541), 1, - sym__str_double_quotes, - STATE(7978), 1, - sym__val_number_decimal, - STATE(9438), 1, - sym_expr_parenthesized, - STATE(9439), 1, - sym_val_variable, - STATE(10370), 1, - sym__match_pattern_expression, - STATE(10372), 1, - sym_val_bool, - STATE(10378), 1, - sym__match_pattern_list, - STATE(10383), 1, - sym__match_pattern_record, - STATE(10390), 1, - sym__expr_unary_minus, - STATE(10403), 1, - sym_unquoted, - STATE(10473), 1, - sym__val_range, - STATE(10657), 1, - sym__match_pattern, - STATE(10967), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(2720), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3393), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(7153), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(7157), 2, - anon_sym_true, - anon_sym_false, - STATE(10371), 2, - sym__match_pattern_value, - sym_val_range, - ACTIONS(2714), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(7167), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(10398), 7, - sym_val_nothing, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_table, - ACTIONS(3910), 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, [3037] = 42, ACTIONS(3), 1, anon_sym_POUND, @@ -353694,45 +313080,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3176), 1, + STATE(2751), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(5017), 1, sym_val_variable, - STATE(5462), 1, - sym__val_number, - STATE(5774), 1, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(8889), 1, + STATE(8439), 1, sym__where_predicate, - STATE(8890), 1, + STATE(8441), 1, sym__expression, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, @@ -353749,7 +313135,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -353758,7 +313144,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -353770,75 +313156,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [3184] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(7139), 1, - aux_sym__immediate_decimal_token2, - STATE(3177), 1, - sym_comment, - ACTIONS(2583), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(2581), 56, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [3257] = 42, + [3184] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -353869,43 +313187,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3178), 1, + STATE(2752), 1, sym_comment, - STATE(4698), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4428), 1, sym__var, - STATE(5401), 1, + STATE(4920), 1, sym_val_number, - STATE(5567), 1, + STATE(5094), 1, sym_val_variable, - STATE(5573), 1, + STATE(5154), 1, sym_expr_parenthesized, - STATE(5769), 1, + STATE(5285), 1, sym__val_number, - STATE(6347), 1, + STATE(5878), 1, sym__expr_unary_minus, - STATE(6363), 1, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5940), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8295), 1, sym_val_range, - STATE(10069), 1, + STATE(9614), 1, sym__where_predicate, - STATE(10071), 1, + STATE(9615), 1, sym__expression, ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, @@ -353922,7 +313240,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -353931,7 +313249,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -353943,75 +313261,112 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [3404] = 5, - ACTIONS(113), 1, + [3331] = 42, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7129), 1, - aux_sym__immediate_decimal_token2, - STATE(3179), 1, - sym_comment, - ACTIONS(2439), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(2437), 56, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, + ACTIONS(39), 1, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + anon_sym_DOT_DOT, + ACTIONS(77), 1, + anon_sym_not, + ACTIONS(81), 1, + anon_sym_null, + ACTIONS(89), 1, anon_sym_DOT2, + ACTIONS(91), 1, aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, + ACTIONS(97), 1, + anon_sym_0b, + ACTIONS(101), 1, + sym_val_date, + ACTIONS(103), 1, + anon_sym_DQUOTE, + ACTIONS(107), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(109), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1528), 1, + anon_sym_DOLLAR, + ACTIONS(6725), 1, + sym_identifier, + ACTIONS(6727), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6729), 1, + aux_sym__val_number_decimal_token2, + STATE(2753), 1, + sym_comment, + STATE(4371), 1, + sym__val_number_decimal, + STATE(4428), 1, + sym__var, + STATE(4920), 1, + sym_val_number, + STATE(5094), 1, + sym_val_variable, + STATE(5154), 1, + sym_expr_parenthesized, + STATE(5285), 1, + sym__val_number, + STATE(5878), 1, + sym__expr_unary_minus, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, + sym__inter_single_quotes, + STATE(5940), 1, + sym__inter_double_quotes, + STATE(6380), 1, + sym__expr_binary_expression, + STATE(8295), 1, + sym_val_range, + STATE(9004), 1, + sym__where_predicate, + STATE(9005), 1, + sym__expression, + ACTIONS(79), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(83), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(95), 2, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_DQUOTE, + ACTIONS(99), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__record_key_token2, - [3477] = 42, + STATE(5890), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(93), 4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + STATE(5931), 11, + sym_val_nothing, + sym_val_bool, + 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, + [3478] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -354042,43 +313397,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3180), 1, + STATE(2754), 1, sym_comment, - STATE(4698), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4428), 1, sym__var, - STATE(5401), 1, + STATE(4920), 1, sym_val_number, - STATE(5567), 1, + STATE(5094), 1, sym_val_variable, - STATE(5573), 1, + STATE(5154), 1, sym_expr_parenthesized, - STATE(5769), 1, + STATE(5285), 1, sym__val_number, - STATE(6347), 1, + STATE(5878), 1, sym__expr_unary_minus, - STATE(6363), 1, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5940), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8295), 1, sym_val_range, - STATE(10044), 1, + STATE(9006), 1, sym__where_predicate, - STATE(10045), 1, + STATE(9007), 1, sym__expression, ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, @@ -354095,7 +313450,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -354104,7 +313459,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -354116,7 +313471,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [3624] = 42, + [3625] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -354147,43 +313502,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3181), 1, + STATE(2755), 1, sym_comment, - STATE(4698), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4428), 1, sym__var, - STATE(5401), 1, + STATE(4920), 1, sym_val_number, - STATE(5567), 1, + STATE(5094), 1, sym_val_variable, - STATE(5573), 1, + STATE(5154), 1, sym_expr_parenthesized, - STATE(5769), 1, + STATE(5285), 1, sym__val_number, - STATE(6347), 1, + STATE(5878), 1, sym__expr_unary_minus, - STATE(6363), 1, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5940), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8295), 1, sym_val_range, - STATE(10054), 1, + STATE(9008), 1, sym__where_predicate, - STATE(10057), 1, + STATE(9010), 1, sym__expression, ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, @@ -354200,7 +313555,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -354209,7 +313564,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -354221,7 +313576,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [3771] = 42, + [3772] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -354252,43 +313607,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3182), 1, + STATE(2756), 1, sym_comment, - STATE(4698), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4428), 1, sym__var, - STATE(5401), 1, + STATE(4920), 1, sym_val_number, - STATE(5567), 1, + STATE(5094), 1, sym_val_variable, - STATE(5573), 1, + STATE(5154), 1, sym_expr_parenthesized, - STATE(5769), 1, + STATE(5285), 1, sym__val_number, - STATE(6347), 1, + STATE(5878), 1, sym__expr_unary_minus, - STATE(6363), 1, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5940), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8295), 1, sym_val_range, - STATE(9661), 1, + STATE(9011), 1, sym__where_predicate, - STATE(9663), 1, + STATE(9013), 1, sym__expression, ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, @@ -354305,7 +313660,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -354314,7 +313669,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -354326,74 +313681,112 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [3918] = 4, - ACTIONS(113), 1, + [3919] = 42, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3183), 1, - sym_comment, - ACTIONS(1115), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1113), 57, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, + ACTIONS(39), 1, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + anon_sym_DOT_DOT, + ACTIONS(77), 1, + anon_sym_not, + ACTIONS(81), 1, + anon_sym_null, + ACTIONS(89), 1, anon_sym_DOT2, + ACTIONS(91), 1, aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, + ACTIONS(97), 1, + anon_sym_0b, + ACTIONS(101), 1, + sym_val_date, + ACTIONS(103), 1, + anon_sym_DQUOTE, + ACTIONS(107), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(109), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1528), 1, + anon_sym_DOLLAR, + ACTIONS(6725), 1, + sym_identifier, + ACTIONS(6727), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6729), 1, + aux_sym__val_number_decimal_token2, + STATE(2757), 1, + sym_comment, + STATE(4371), 1, + sym__val_number_decimal, + STATE(4428), 1, + sym__var, + STATE(4920), 1, + sym_val_number, + STATE(5094), 1, + sym_val_variable, + STATE(5154), 1, + sym_expr_parenthesized, + STATE(5285), 1, + sym__val_number, + STATE(5878), 1, + sym__expr_unary_minus, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, + sym__inter_single_quotes, + STATE(5940), 1, + sym__inter_double_quotes, + STATE(6380), 1, + sym__expr_binary_expression, + STATE(8295), 1, + sym_val_range, + STATE(9015), 1, + sym__where_predicate, + STATE(9017), 1, + sym__expression, + ACTIONS(79), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(83), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(95), 2, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_DQUOTE, + ACTIONS(99), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__record_key_token2, - [3989] = 42, + STATE(5890), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(93), 4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + STATE(5931), 11, + sym_val_nothing, + sym_val_bool, + 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, + [4066] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(137), 1, @@ -354422,45 +313815,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3184), 1, + STATE(2758), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(5017), 1, sym_val_variable, - STATE(5462), 1, - sym__val_number, - STATE(5774), 1, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(9139), 1, + STATE(8936), 1, sym__where_predicate, - STATE(9148), 1, + STATE(8938), 1, sym__expression, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, @@ -354477,7 +313870,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -354486,7 +313879,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -354498,235 +313891,312 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [4136] = 5, - ACTIONS(113), 1, + [4213] = 42, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7171), 1, - aux_sym__immediate_decimal_token2, - STATE(3185), 1, - sym_comment, - ACTIONS(2549), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(2547), 56, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, + ACTIONS(39), 1, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + anon_sym_DOT_DOT, + ACTIONS(77), 1, + anon_sym_not, + ACTIONS(81), 1, + anon_sym_null, + ACTIONS(89), 1, anon_sym_DOT2, + ACTIONS(91), 1, aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(97), 1, + anon_sym_0b, + ACTIONS(101), 1, + sym_val_date, + ACTIONS(103), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [4209] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(3186), 1, - sym_comment, - ACTIONS(1119), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1117), 57, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, + ACTIONS(107), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(109), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1528), 1, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, + ACTIONS(6725), 1, + sym_identifier, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, + STATE(2759), 1, + sym_comment, + STATE(4371), 1, + sym__val_number_decimal, + STATE(4428), 1, + sym__var, + STATE(4920), 1, + sym_val_number, + STATE(5094), 1, + sym_val_variable, + STATE(5154), 1, + sym_expr_parenthesized, + STATE(5285), 1, + sym__val_number, + STATE(5878), 1, + sym__expr_unary_minus, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, + sym__inter_single_quotes, + STATE(5940), 1, + sym__inter_double_quotes, + STATE(6380), 1, + sym__expr_binary_expression, + STATE(8295), 1, + sym_val_range, + STATE(9018), 1, + sym__where_predicate, + STATE(9022), 1, + sym__expression, + ACTIONS(79), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(83), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(95), 2, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_DQUOTE, + ACTIONS(99), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__record_key_token2, - [4280] = 40, + STATE(5890), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(93), 4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + STATE(5931), 11, + sym_val_nothing, + sym_val_bool, + 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, + [4360] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2688), 1, - anon_sym_LPAREN, - ACTIONS(2690), 1, - anon_sym_DOLLAR, - ACTIONS(2718), 1, - anon_sym_0b, - ACTIONS(2728), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2730), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3391), 1, - anon_sym_DQUOTE, - ACTIONS(3882), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(3884), 1, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(3890), 1, - anon_sym_not, - ACTIONS(7173), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(7175), 1, + ACTIONS(59), 1, anon_sym_DOT_DOT, - ACTIONS(7179), 1, + ACTIONS(77), 1, + anon_sym_not, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(7183), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7185), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(7187), 1, + ACTIONS(89), 1, anon_sym_DOT2, - ACTIONS(7189), 1, + ACTIONS(91), 1, aux_sym__val_number_decimal_token3, - ACTIONS(7191), 1, + ACTIONS(97), 1, + anon_sym_0b, + ACTIONS(101), 1, sym_val_date, - STATE(3187), 1, + ACTIONS(103), 1, + anon_sym_DQUOTE, + ACTIONS(107), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(109), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1528), 1, + anon_sym_DOLLAR, + ACTIONS(6725), 1, + sym_identifier, + ACTIONS(6727), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6729), 1, + aux_sym__val_number_decimal_token2, + STATE(2760), 1, sym_comment, - STATE(4486), 1, - sym__var, - STATE(4557), 1, - sym_block, - STATE(4563), 1, - sym__expression, - STATE(5463), 1, - sym__val_number, - STATE(5541), 1, - sym__str_double_quotes, - STATE(5605), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(6244), 1, + STATE(4428), 1, + sym__var, + STATE(4920), 1, + sym_val_number, + STATE(5094), 1, + sym_val_variable, + STATE(5154), 1, sym_expr_parenthesized, - STATE(6245), 1, + STATE(5285), 1, + sym__val_number, + STATE(5878), 1, sym__expr_unary_minus, - STATE(6255), 1, - sym_val_variable, - STATE(6258), 1, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6277), 1, + STATE(5940), 1, sym__inter_double_quotes, - STATE(6797), 1, + STATE(6380), 1, sym__expr_binary_expression, - STATE(7168), 1, + STATE(8295), 1, sym_val_range, - STATE(10621), 1, - sym__match_expression, - ACTIONS(2720), 2, + STATE(9024), 1, + sym__where_predicate, + STATE(9025), 1, + sym__expression, + ACTIONS(79), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(83), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(95), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(99), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3393), 2, + ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(7177), 2, + STATE(5890), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(93), 4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + STATE(5931), 11, + sym_val_nothing, + sym_val_bool, + 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, + [4507] = 42, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(137), 1, + anon_sym_LBRACK, + ACTIONS(139), 1, + anon_sym_LPAREN, + ACTIONS(167), 1, + anon_sym_LBRACE, + ACTIONS(171), 1, + anon_sym_DOT_DOT, + ACTIONS(191), 1, + anon_sym_not, + ACTIONS(195), 1, + anon_sym_null, + ACTIONS(203), 1, + anon_sym_DOT2, + ACTIONS(205), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(211), 1, + anon_sym_0b, + ACTIONS(215), 1, + sym_val_date, + ACTIONS(217), 1, + anon_sym_DQUOTE, + ACTIONS(221), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(223), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(391), 1, + anon_sym_DASH, + ACTIONS(1540), 1, + anon_sym_DOLLAR, + ACTIONS(6684), 1, + sym_identifier, + ACTIONS(6686), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6688), 1, + aux_sym__val_number_decimal_token2, + STATE(2761), 1, + sym_comment, + STATE(3982), 1, + sym__val_number_decimal, + STATE(4386), 1, + sym__var, + STATE(4586), 1, + sym_val_number, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, + sym_expr_parenthesized, + STATE(5017), 1, + sym_val_variable, + STATE(5408), 1, + sym__str_double_quotes, + STATE(5684), 1, + sym__inter_single_quotes, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, + sym__expr_unary_minus, + STATE(6388), 1, + sym__expr_binary_expression, + STATE(8000), 1, + sym_val_range, + STATE(8968), 1, + sym__where_predicate, + STATE(8980), 1, + sym__expression, + ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(7181), 2, + ACTIONS(197), 2, anon_sym_true, anon_sym_false, - STATE(6243), 3, + ACTIONS(209), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(213), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(219), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(2714), 6, + ACTIONS(207), 4, aux_sym__val_number_token1, aux_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(6175), 12, + STATE(5711), 11, sym_val_nothing, sym_val_bool, - sym_val_number, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -354736,7 +314206,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [4423] = 42, + [4654] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(137), 1, @@ -354765,45 +314235,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3188), 1, + STATE(2762), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(5017), 1, sym_val_variable, - STATE(5462), 1, - sym__val_number, - STATE(5774), 1, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(9221), 1, + STATE(8989), 1, sym__where_predicate, - STATE(9222), 1, + STATE(8990), 1, sym__expression, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, @@ -354820,7 +314290,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -354829,7 +314299,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -354841,7 +314311,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [4570] = 42, + [4801] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(137), 1, @@ -354870,46 +314340,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3189), 1, + STATE(2763), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(5017), 1, sym_val_variable, - STATE(5462), 1, - sym__val_number, - STATE(5774), 1, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(9243), 1, - sym__where_predicate, - STATE(9258), 1, + STATE(8724), 1, sym__expression, + STATE(8771), 1, + sym__where_predicate, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -354925,7 +314395,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -354934,7 +314404,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -354946,100 +314416,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [4717] = 42, + [4948] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(137), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(167), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(59), 1, anon_sym_DOT_DOT, - ACTIONS(191), 1, + ACTIONS(77), 1, anon_sym_not, - ACTIONS(195), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(203), 1, + ACTIONS(89), 1, anon_sym_DOT2, - ACTIONS(205), 1, + ACTIONS(91), 1, aux_sym__val_number_decimal_token3, - ACTIONS(211), 1, + ACTIONS(97), 1, anon_sym_0b, - ACTIONS(215), 1, + ACTIONS(101), 1, sym_val_date, - ACTIONS(217), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(221), 1, + ACTIONS(107), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(223), 1, + ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, - anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3190), 1, + STATE(2764), 1, sym_comment, - STATE(4458), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4428), 1, sym__var, - STATE(5173), 1, + STATE(4920), 1, sym_val_number, - STATE(5308), 1, - sym_expr_parenthesized, - STATE(5404), 1, + STATE(5094), 1, sym_val_variable, - STATE(5462), 1, + STATE(5154), 1, + sym_expr_parenthesized, + STATE(5285), 1, sym__val_number, - STATE(5774), 1, + STATE(5878), 1, + sym__expr_unary_minus, + STATE(5888), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6183), 1, - sym__expr_unary_minus, - STATE(6785), 1, + STATE(5940), 1, + sym__inter_double_quotes, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8295), 1, sym_val_range, - STATE(9374), 1, + STATE(9026), 1, sym__where_predicate, - STATE(9402), 1, + STATE(9027), 1, sym__expression, - ACTIONS(193), 2, + ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(197), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(209), 2, + ACTIONS(95), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(213), 2, + ACTIONS(99), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(219), 2, + ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(207), 4, + ACTIONS(93), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -355051,7 +314521,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [4864] = 42, + [5095] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(137), 1, @@ -355080,46 +314550,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3191), 1, + STATE(2765), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(5017), 1, sym_val_variable, - STATE(5462), 1, - sym__val_number, - STATE(5774), 1, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(9110), 1, - sym__expression, - STATE(9403), 1, + STATE(8381), 1, sym__where_predicate, + STATE(8382), 1, + sym__expression, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -355135,7 +314605,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -355144,7 +314614,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -355156,7 +314626,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [5011] = 42, + [5242] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(137), 1, @@ -355185,46 +314655,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3192), 1, + STATE(2766), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(5017), 1, sym_val_variable, - STATE(5462), 1, - sym__val_number, - STATE(5774), 1, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(9008), 1, - sym__expression, - STATE(9441), 1, + STATE(8383), 1, sym__where_predicate, + STATE(8384), 1, + sym__expression, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -355240,7 +314710,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -355249,7 +314719,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -355261,7 +314731,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [5158] = 42, + [5389] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(137), 1, @@ -355290,45 +314760,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3193), 1, + STATE(2767), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(5017), 1, sym_val_variable, - STATE(5462), 1, - sym__val_number, - STATE(5774), 1, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(9018), 1, + STATE(8385), 1, sym__where_predicate, - STATE(9021), 1, + STATE(8386), 1, sym__expression, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, @@ -355345,7 +314815,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -355354,7 +314824,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -355366,7 +314836,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [5305] = 42, + [5536] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(137), 1, @@ -355395,45 +314865,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3194), 1, + STATE(2768), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(5017), 1, sym_val_variable, - STATE(5462), 1, - sym__val_number, - STATE(5774), 1, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(9149), 1, + STATE(8388), 1, sym__where_predicate, - STATE(9372), 1, + STATE(8390), 1, sym__expression, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, @@ -355450,7 +314920,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -355459,7 +314929,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -355471,7 +314941,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [5452] = 42, + [5683] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(137), 1, @@ -355500,45 +314970,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3195), 1, + STATE(2769), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(5017), 1, sym_val_variable, - STATE(5462), 1, - sym__val_number, - STATE(5774), 1, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(8895), 1, + STATE(8391), 1, sym__where_predicate, - STATE(8904), 1, + STATE(8392), 1, sym__expression, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, @@ -355555,7 +315025,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -355564,7 +315034,112 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, + sym_val_nothing, + sym_val_bool, + 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, + [5830] = 42, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + anon_sym_DOT_DOT, + ACTIONS(77), 1, + anon_sym_not, + ACTIONS(81), 1, + anon_sym_null, + ACTIONS(89), 1, + anon_sym_DOT2, + ACTIONS(91), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(97), 1, + anon_sym_0b, + ACTIONS(101), 1, + sym_val_date, + ACTIONS(103), 1, + anon_sym_DQUOTE, + ACTIONS(107), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(109), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1528), 1, + anon_sym_DOLLAR, + ACTIONS(6725), 1, + sym_identifier, + ACTIONS(6727), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6729), 1, + aux_sym__val_number_decimal_token2, + STATE(2770), 1, + sym_comment, + STATE(4371), 1, + sym__val_number_decimal, + STATE(4428), 1, + sym__var, + STATE(4920), 1, + sym_val_number, + STATE(5094), 1, + sym_val_variable, + STATE(5154), 1, + sym_expr_parenthesized, + STATE(5285), 1, + sym__val_number, + STATE(5878), 1, + sym__expr_unary_minus, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, + sym__inter_single_quotes, + STATE(5940), 1, + sym__inter_double_quotes, + STATE(6380), 1, + sym__expr_binary_expression, + STATE(8295), 1, + sym_val_range, + STATE(9028), 1, + sym__where_predicate, + STATE(9029), 1, + sym__expression, + ACTIONS(79), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(83), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(95), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(99), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(105), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5890), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(93), 4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -355576,7 +315151,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [5599] = 42, + [5977] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(137), 1, @@ -355605,45 +315180,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3196), 1, + STATE(2771), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(5017), 1, sym_val_variable, - STATE(5462), 1, - sym__val_number, - STATE(5774), 1, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(8924), 1, + STATE(8393), 1, sym__where_predicate, - STATE(8988), 1, + STATE(8398), 1, sym__expression, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, @@ -355660,7 +315235,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -355669,7 +315244,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -355681,7 +315256,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [5746] = 42, + [6124] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(137), 1, @@ -355710,45 +315285,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3197), 1, + STATE(2772), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(5017), 1, sym_val_variable, - STATE(5462), 1, - sym__val_number, - STATE(5774), 1, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(9004), 1, + STATE(8399), 1, sym__where_predicate, - STATE(9169), 1, + STATE(8400), 1, sym__expression, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, @@ -355765,7 +315340,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -355774,7 +315349,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -355786,7 +315361,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [5893] = 42, + [6271] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(137), 1, @@ -355815,45 +315390,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3198), 1, + STATE(2773), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(5017), 1, sym_val_variable, - STATE(5462), 1, - sym__val_number, - STATE(5774), 1, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(9172), 1, + STATE(8401), 1, sym__where_predicate, - STATE(9178), 1, + STATE(8402), 1, sym__expression, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, @@ -355870,7 +315445,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -355879,7 +315454,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -355891,7 +315466,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [6040] = 42, + [6418] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(137), 1, @@ -355920,45 +315495,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3199), 1, + STATE(2774), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(5017), 1, sym_val_variable, - STATE(5462), 1, - sym__val_number, - STATE(5774), 1, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(9260), 1, + STATE(8403), 1, sym__where_predicate, - STATE(9295), 1, + STATE(8404), 1, sym__expression, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, @@ -355975,7 +315550,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -355984,7 +315559,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -355996,7 +315571,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [6187] = 42, + [6565] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(137), 1, @@ -356025,45 +315600,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3200), 1, + STATE(2775), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(5017), 1, sym_val_variable, - STATE(5462), 1, - sym__val_number, - STATE(5774), 1, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(8824), 1, + STATE(8405), 1, sym__where_predicate, - STATE(8826), 1, + STATE(8406), 1, sym__expression, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, @@ -356080,7 +315655,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -356089,7 +315664,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -356101,100 +315676,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [6334] = 42, + [6712] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(139), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(167), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(171), 1, anon_sym_DOT_DOT, - ACTIONS(77), 1, + ACTIONS(191), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(195), 1, anon_sym_null, - ACTIONS(89), 1, + ACTIONS(203), 1, anon_sym_DOT2, - ACTIONS(91), 1, + ACTIONS(205), 1, aux_sym__val_number_decimal_token3, - ACTIONS(97), 1, + ACTIONS(211), 1, anon_sym_0b, - ACTIONS(101), 1, + ACTIONS(215), 1, sym_val_date, - ACTIONS(103), 1, + ACTIONS(217), 1, anon_sym_DQUOTE, - ACTIONS(107), 1, + ACTIONS(221), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(109), 1, + ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(391), 1, + anon_sym_DASH, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3201), 1, + STATE(2776), 1, sym_comment, - STATE(4698), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4386), 1, sym__var, - STATE(5401), 1, + STATE(4586), 1, sym_val_number, - STATE(5567), 1, - sym_val_variable, - STATE(5573), 1, - sym_expr_parenthesized, - STATE(5769), 1, + STATE(4833), 1, sym__val_number, - STATE(6347), 1, - sym__expr_unary_minus, - STATE(6363), 1, + STATE(5005), 1, + sym_expr_parenthesized, + STATE(5017), 1, + sym_val_variable, + STATE(5408), 1, + sym__str_double_quotes, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5695), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(5748), 1, + sym__expr_unary_minus, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8000), 1, sym_val_range, - STATE(10060), 1, + STATE(8407), 1, sym__where_predicate, - STATE(10061), 1, + STATE(8408), 1, sym__expression, - ACTIONS(79), 2, + ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(83), 2, + ACTIONS(197), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(209), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(99), 2, + ACTIONS(213), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(105), 2, + ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(93), 4, + ACTIONS(207), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -356206,100 +315781,102 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [6481] = 40, + [6859] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5695), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(5701), 1, - anon_sym_DASH, - ACTIONS(5707), 1, + ACTIONS(139), 1, + anon_sym_LPAREN, + ACTIONS(167), 1, + anon_sym_LBRACE, + ACTIONS(171), 1, + anon_sym_DOT_DOT, + ACTIONS(191), 1, anon_sym_not, - ACTIONS(5727), 1, + ACTIONS(195), 1, + anon_sym_null, + ACTIONS(203), 1, + anon_sym_DOT2, + ACTIONS(205), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(211), 1, anon_sym_0b, - ACTIONS(5733), 1, + ACTIONS(215), 1, + sym_val_date, + ACTIONS(217), 1, anon_sym_DQUOTE, - ACTIONS(5737), 1, + ACTIONS(221), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5739), 1, + ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7193), 1, - anon_sym_LPAREN, - ACTIONS(7195), 1, + ACTIONS(391), 1, + anon_sym_DASH, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7197), 1, - anon_sym_LBRACE, - ACTIONS(7199), 1, - anon_sym_DOT_DOT, - ACTIONS(7203), 1, - anon_sym_null, - ACTIONS(7207), 1, + ACTIONS(6684), 1, + sym_identifier, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7209), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - ACTIONS(7211), 1, - anon_sym_DOT2, - ACTIONS(7213), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(7215), 1, - sym_val_date, - STATE(1276), 1, - sym__var, - STATE(1293), 1, + STATE(2777), 1, + sym_comment, + STATE(3982), 1, sym__val_number_decimal, - STATE(1484), 1, - sym_val_variable, - STATE(1516), 1, - sym_expr_parenthesized, - STATE(2550), 1, - sym__expr_unary_minus, - STATE(2603), 1, + STATE(4386), 1, + sym__var, + STATE(4586), 1, + sym_val_number, + STATE(4833), 1, sym__val_number, - STATE(2611), 1, + STATE(5005), 1, + sym_expr_parenthesized, + STATE(5017), 1, + sym_val_variable, + STATE(5408), 1, sym__str_double_quotes, - STATE(2612), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(2613), 1, + STATE(5695), 1, sym__inter_double_quotes, - STATE(3202), 1, - sym_comment, - STATE(4550), 1, + STATE(5748), 1, + sym__expr_unary_minus, + STATE(6388), 1, + sym__expr_binary_expression, + STATE(8000), 1, sym_val_range, - STATE(4557), 1, - sym_block, - STATE(4563), 1, + STATE(8409), 1, + sym__where_predicate, + STATE(8410), 1, sym__expression, - STATE(4609), 1, - sym__match_expression, - STATE(6798), 1, - sym__expr_binary_expression, - ACTIONS(5729), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5735), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(7201), 2, + ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(7205), 2, + ACTIONS(197), 2, anon_sym_true, anon_sym_false, - STATE(2549), 3, + ACTIONS(209), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(213), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(219), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(5723), 6, + ACTIONS(207), 4, aux_sym__val_number_token1, aux_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(2599), 12, + STATE(5711), 11, sym_val_nothing, sym_val_bool, - sym_val_number, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -356309,75 +315886,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [6624] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7217), 1, - anon_sym_QMARK2, - STATE(3203), 1, - sym_comment, - ACTIONS(1072), 14, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1070), 45, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [6697] = 42, + [7006] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(137), 1, @@ -356406,45 +315915,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3204), 1, + STATE(2778), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(5017), 1, sym_val_variable, - STATE(5462), 1, - sym__val_number, - STATE(5774), 1, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(8828), 1, + STATE(8411), 1, sym__where_predicate, - STATE(8842), 1, + STATE(8412), 1, sym__expression, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, @@ -356461,7 +315970,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -356470,7 +315979,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -356482,75 +315991,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [6844] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7217), 1, - anon_sym_QMARK2, - STATE(3205), 1, - sym_comment, - ACTIONS(1072), 14, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1070), 45, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [6917] = 42, + [7153] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(137), 1, @@ -356579,45 +316020,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3206), 1, + STATE(2779), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(5017), 1, sym_val_variable, - STATE(5462), 1, - sym__val_number, - STATE(5774), 1, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(8851), 1, + STATE(8413), 1, sym__where_predicate, - STATE(8882), 1, + STATE(8414), 1, sym__expression, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, @@ -356634,7 +316075,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -356643,7 +316084,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -356655,7 +316096,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [7064] = 42, + [7300] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(137), 1, @@ -356684,45 +316125,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3207), 1, + STATE(2780), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, - sym_expr_parenthesized, - STATE(5404), 1, - sym_val_variable, - STATE(5462), 1, + STATE(4833), 1, sym__val_number, - STATE(5774), 1, + STATE(5005), 1, + sym_expr_parenthesized, + STATE(5017), 1, + sym_val_variable, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(8884), 1, + STATE(8416), 1, sym__where_predicate, - STATE(8887), 1, + STATE(8418), 1, sym__expression, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, @@ -356739,7 +316180,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -356748,7 +316189,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -356760,7 +316201,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [7211] = 42, + [7447] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(137), 1, @@ -356789,45 +316230,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3208), 1, + STATE(2781), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(5017), 1, sym_val_variable, - STATE(5462), 1, - sym__val_number, - STATE(5774), 1, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(8896), 1, + STATE(8419), 1, sym__where_predicate, - STATE(8908), 1, + STATE(8420), 1, sym__expression, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, @@ -356844,7 +316285,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -356853,7 +316294,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -356865,100 +316306,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [7358] = 42, + [7594] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(137), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(167), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(59), 1, anon_sym_DOT_DOT, - ACTIONS(191), 1, + ACTIONS(77), 1, anon_sym_not, - ACTIONS(195), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(203), 1, + ACTIONS(89), 1, anon_sym_DOT2, - ACTIONS(205), 1, + ACTIONS(91), 1, aux_sym__val_number_decimal_token3, - ACTIONS(211), 1, + ACTIONS(97), 1, anon_sym_0b, - ACTIONS(215), 1, + ACTIONS(101), 1, sym_val_date, - ACTIONS(217), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(221), 1, + ACTIONS(107), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(223), 1, + ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, - anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3209), 1, + STATE(2782), 1, sym_comment, - STATE(4458), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4428), 1, sym__var, - STATE(5173), 1, + STATE(4920), 1, sym_val_number, - STATE(5308), 1, - sym_expr_parenthesized, - STATE(5404), 1, + STATE(5094), 1, sym_val_variable, - STATE(5462), 1, + STATE(5154), 1, + sym_expr_parenthesized, + STATE(5285), 1, sym__val_number, - STATE(5774), 1, + STATE(5878), 1, + sym__expr_unary_minus, + STATE(5888), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6183), 1, - sym__expr_unary_minus, - STATE(6785), 1, + STATE(5940), 1, + sym__inter_double_quotes, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8295), 1, sym_val_range, - STATE(8954), 1, + STATE(9031), 1, sym__where_predicate, - STATE(8960), 1, + STATE(9033), 1, sym__expression, - ACTIONS(193), 2, + ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(197), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(209), 2, + ACTIONS(95), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(213), 2, + ACTIONS(99), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(219), 2, + ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(207), 4, + ACTIONS(93), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -356970,7 +316411,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [7505] = 42, + [7741] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(137), 1, @@ -356999,45 +316440,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3210), 1, + STATE(2783), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(5017), 1, sym_val_variable, - STATE(5462), 1, - sym__val_number, - STATE(5774), 1, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(8961), 1, + STATE(8421), 1, sym__where_predicate, - STATE(8974), 1, + STATE(8423), 1, sym__expression, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, @@ -357054,7 +316495,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -357063,7 +316504,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -357075,7 +316516,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [7652] = 42, + [7888] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(137), 1, @@ -357104,45 +316545,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3211), 1, + STATE(2784), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(5017), 1, sym_val_variable, - STATE(5462), 1, - sym__val_number, - STATE(5774), 1, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(8984), 1, + STATE(8424), 1, sym__where_predicate, - STATE(9034), 1, + STATE(8425), 1, sym__expression, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, @@ -357159,7 +316600,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -357168,7 +316609,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -357180,7 +316621,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [7799] = 42, + [8035] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(137), 1, @@ -357209,45 +316650,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3212), 1, + STATE(2785), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(5017), 1, sym_val_variable, - STATE(5462), 1, - sym__val_number, - STATE(5774), 1, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(9035), 1, + STATE(8426), 1, sym__where_predicate, - STATE(9085), 1, + STATE(8430), 1, sym__expression, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, @@ -357264,7 +316705,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -357273,7 +316714,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -357285,7 +316726,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [7946] = 42, + [8182] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(137), 1, @@ -357314,45 +316755,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3213), 1, + STATE(2786), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(5017), 1, sym_val_variable, - STATE(5462), 1, - sym__val_number, - STATE(5774), 1, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(9113), 1, + STATE(8431), 1, sym__where_predicate, - STATE(9158), 1, + STATE(8437), 1, sym__expression, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, @@ -357369,7 +316810,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -357378,7 +316819,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -357390,77 +316831,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [8093] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7219), 1, - anon_sym_DOT, - STATE(3214), 1, - sym_comment, - STATE(3216), 1, - sym_path, - STATE(3508), 1, - sym_cell_path, - ACTIONS(1012), 14, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1010), 43, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [8170] = 42, + [8329] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -357491,43 +316862,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3215), 1, + STATE(2787), 1, sym_comment, - STATE(4698), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4428), 1, sym__var, - STATE(5401), 1, + STATE(4920), 1, sym_val_number, - STATE(5567), 1, + STATE(5094), 1, sym_val_variable, - STATE(5573), 1, + STATE(5154), 1, sym_expr_parenthesized, - STATE(5769), 1, + STATE(5285), 1, sym__val_number, - STATE(6347), 1, + STATE(5878), 1, sym__expr_unary_minus, - STATE(6363), 1, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5940), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8295), 1, sym_val_range, - STATE(10086), 1, + STATE(9625), 1, sym__where_predicate, - STATE(10087), 1, + STATE(9634), 1, sym__expression, ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, @@ -357544,7 +316915,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -357553,7 +316924,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -357565,77 +316936,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [8317] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7219), 1, - anon_sym_DOT, - STATE(3216), 1, - sym_comment, - STATE(3218), 1, - aux_sym_cell_path_repeat1, - STATE(3468), 1, - sym_path, - ACTIONS(989), 14, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(987), 43, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [8394] = 42, + [8476] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(137), 1, @@ -357664,45 +316965,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3217), 1, + STATE(2788), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(5017), 1, sym_val_variable, - STATE(5462), 1, - sym__val_number, - STATE(5774), 1, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(9162), 1, + STATE(8442), 1, sym__where_predicate, - STATE(9165), 1, + STATE(8443), 1, sym__expression, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, @@ -357719,7 +317020,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -357728,7 +317029,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -357740,77 +317041,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [8541] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7219), 1, - anon_sym_DOT, - STATE(3218), 1, - sym_comment, - STATE(3220), 1, - aux_sym_cell_path_repeat1, - STATE(3468), 1, - sym_path, - ACTIONS(1008), 14, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1006), 43, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [8618] = 42, + [8623] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -357841,43 +317072,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3219), 1, + STATE(2789), 1, sym_comment, - STATE(4698), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4428), 1, sym__var, - STATE(5401), 1, + STATE(4920), 1, sym_val_number, - STATE(5567), 1, + STATE(5094), 1, sym_val_variable, - STATE(5573), 1, + STATE(5154), 1, sym_expr_parenthesized, - STATE(5769), 1, + STATE(5285), 1, sym__val_number, - STATE(6347), 1, + STATE(5878), 1, sym__expr_unary_minus, - STATE(6363), 1, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5940), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8295), 1, sym_val_range, - STATE(9659), 1, + STATE(9034), 1, sym__where_predicate, - STATE(9660), 1, + STATE(9035), 1, sym__expression, ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, @@ -357894,7 +317125,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -357903,7 +317134,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -357915,76 +317146,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [8765] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7221), 1, - anon_sym_DOT, - STATE(3468), 1, - sym_path, - STATE(3220), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1001), 14, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(999), 43, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [8840] = 42, + [8770] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -358015,43 +317177,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3221), 1, + STATE(2790), 1, sym_comment, - STATE(4698), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4428), 1, sym__var, - STATE(5401), 1, + STATE(4920), 1, sym_val_number, - STATE(5567), 1, + STATE(5094), 1, sym_val_variable, - STATE(5573), 1, + STATE(5154), 1, sym_expr_parenthesized, - STATE(5769), 1, + STATE(5285), 1, sym__val_number, - STATE(6347), 1, + STATE(5878), 1, sym__expr_unary_minus, - STATE(6363), 1, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5940), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8295), 1, sym_val_range, - STATE(10088), 1, + STATE(9036), 1, sym__where_predicate, - STATE(10090), 1, + STATE(9037), 1, sym__expression, ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, @@ -358068,7 +317230,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -358077,7 +317239,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -358089,7 +317251,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [8987] = 42, + [8917] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -358120,43 +317282,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3222), 1, + STATE(2791), 1, sym_comment, - STATE(4698), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4428), 1, sym__var, - STATE(5401), 1, + STATE(4920), 1, sym_val_number, - STATE(5567), 1, + STATE(5094), 1, sym_val_variable, - STATE(5573), 1, + STATE(5154), 1, sym_expr_parenthesized, - STATE(5769), 1, + STATE(5285), 1, sym__val_number, - STATE(6347), 1, + STATE(5878), 1, sym__expr_unary_minus, - STATE(6363), 1, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5940), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8295), 1, sym_val_range, - STATE(10072), 1, + STATE(9038), 1, sym__where_predicate, - STATE(10073), 1, + STATE(9040), 1, sym__expression, ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, @@ -358173,7 +317335,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -358182,7 +317344,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -358194,100 +317356,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [9134] = 42, + [9064] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(137), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(167), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(59), 1, anon_sym_DOT_DOT, - ACTIONS(191), 1, + ACTIONS(77), 1, anon_sym_not, - ACTIONS(195), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(203), 1, + ACTIONS(89), 1, anon_sym_DOT2, - ACTIONS(205), 1, + ACTIONS(91), 1, aux_sym__val_number_decimal_token3, - ACTIONS(211), 1, + ACTIONS(97), 1, anon_sym_0b, - ACTIONS(215), 1, + ACTIONS(101), 1, sym_val_date, - ACTIONS(217), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(221), 1, + ACTIONS(107), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(223), 1, + ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, - anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3223), 1, + STATE(2792), 1, sym_comment, - STATE(4458), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4428), 1, sym__var, - STATE(5173), 1, + STATE(4920), 1, sym_val_number, - STATE(5308), 1, - sym_expr_parenthesized, - STATE(5404), 1, + STATE(5094), 1, sym_val_variable, - STATE(5462), 1, + STATE(5154), 1, + sym_expr_parenthesized, + STATE(5285), 1, sym__val_number, - STATE(5774), 1, + STATE(5878), 1, + sym__expr_unary_minus, + STATE(5888), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6183), 1, - sym__expr_unary_minus, - STATE(6785), 1, + STATE(5940), 1, + sym__inter_double_quotes, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8295), 1, sym_val_range, - STATE(9151), 1, + STATE(9041), 1, sym__where_predicate, - STATE(9157), 1, + STATE(9043), 1, sym__expression, - ACTIONS(193), 2, + ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(197), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(209), 2, + ACTIONS(95), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(213), 2, + ACTIONS(99), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(219), 2, + ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(207), 4, + ACTIONS(93), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -358299,100 +317461,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [9281] = 42, + [9211] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(137), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(167), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(59), 1, anon_sym_DOT_DOT, - ACTIONS(191), 1, + ACTIONS(77), 1, anon_sym_not, - ACTIONS(195), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(203), 1, + ACTIONS(89), 1, anon_sym_DOT2, - ACTIONS(205), 1, + ACTIONS(91), 1, aux_sym__val_number_decimal_token3, - ACTIONS(211), 1, + ACTIONS(97), 1, anon_sym_0b, - ACTIONS(215), 1, + ACTIONS(101), 1, sym_val_date, - ACTIONS(217), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(221), 1, + ACTIONS(107), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(223), 1, + ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, - anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3224), 1, + STATE(2793), 1, sym_comment, - STATE(4458), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4428), 1, sym__var, - STATE(5173), 1, + STATE(4920), 1, sym_val_number, - STATE(5308), 1, - sym_expr_parenthesized, - STATE(5404), 1, + STATE(5094), 1, sym_val_variable, - STATE(5462), 1, + STATE(5154), 1, + sym_expr_parenthesized, + STATE(5285), 1, sym__val_number, - STATE(5774), 1, + STATE(5878), 1, + sym__expr_unary_minus, + STATE(5888), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6183), 1, - sym__expr_unary_minus, - STATE(6785), 1, + STATE(5940), 1, + sym__inter_double_quotes, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8295), 1, sym_val_range, - STATE(9173), 1, + STATE(9046), 1, sym__where_predicate, - STATE(9241), 1, + STATE(9047), 1, sym__expression, - ACTIONS(193), 2, + ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(197), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(209), 2, + ACTIONS(95), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(213), 2, + ACTIONS(99), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(219), 2, + ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(207), 4, + ACTIONS(93), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -358404,100 +317566,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [9428] = 42, + [9358] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(137), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(167), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(59), 1, anon_sym_DOT_DOT, - ACTIONS(191), 1, + ACTIONS(77), 1, anon_sym_not, - ACTIONS(195), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(203), 1, + ACTIONS(89), 1, anon_sym_DOT2, - ACTIONS(205), 1, + ACTIONS(91), 1, aux_sym__val_number_decimal_token3, - ACTIONS(211), 1, + ACTIONS(97), 1, anon_sym_0b, - ACTIONS(215), 1, + ACTIONS(101), 1, sym_val_date, - ACTIONS(217), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(221), 1, + ACTIONS(107), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(223), 1, + ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, - anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3225), 1, + STATE(2794), 1, sym_comment, - STATE(4458), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4428), 1, sym__var, - STATE(5173), 1, + STATE(4920), 1, sym_val_number, - STATE(5308), 1, - sym_expr_parenthesized, - STATE(5404), 1, + STATE(5094), 1, sym_val_variable, - STATE(5462), 1, + STATE(5154), 1, + sym_expr_parenthesized, + STATE(5285), 1, sym__val_number, - STATE(5774), 1, + STATE(5878), 1, + sym__expr_unary_minus, + STATE(5888), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6183), 1, - sym__expr_unary_minus, - STATE(6785), 1, + STATE(5940), 1, + sym__inter_double_quotes, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8295), 1, sym_val_range, - STATE(9246), 1, + STATE(9051), 1, sym__where_predicate, - STATE(9247), 1, + STATE(9052), 1, sym__expression, - ACTIONS(193), 2, + ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(197), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(209), 2, + ACTIONS(95), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(213), 2, + ACTIONS(99), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(219), 2, + ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(207), 4, + ACTIONS(93), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -358509,100 +317671,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [9575] = 42, + [9505] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(137), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(167), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(59), 1, anon_sym_DOT_DOT, - ACTIONS(191), 1, + ACTIONS(77), 1, anon_sym_not, - ACTIONS(195), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(203), 1, + ACTIONS(89), 1, anon_sym_DOT2, - ACTIONS(205), 1, + ACTIONS(91), 1, aux_sym__val_number_decimal_token3, - ACTIONS(211), 1, + ACTIONS(97), 1, anon_sym_0b, - ACTIONS(215), 1, + ACTIONS(101), 1, sym_val_date, - ACTIONS(217), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(221), 1, + ACTIONS(107), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(223), 1, + ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, - anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3226), 1, + STATE(2795), 1, sym_comment, - STATE(4458), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4428), 1, sym__var, - STATE(5173), 1, + STATE(4920), 1, sym_val_number, - STATE(5308), 1, - sym_expr_parenthesized, - STATE(5404), 1, + STATE(5094), 1, sym_val_variable, - STATE(5462), 1, + STATE(5154), 1, + sym_expr_parenthesized, + STATE(5285), 1, sym__val_number, - STATE(5774), 1, + STATE(5878), 1, + sym__expr_unary_minus, + STATE(5888), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6183), 1, - sym__expr_unary_minus, - STATE(6785), 1, + STATE(5940), 1, + sym__inter_double_quotes, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8295), 1, sym_val_range, - STATE(9264), 1, + STATE(9692), 1, sym__where_predicate, - STATE(9322), 1, + STATE(9693), 1, sym__expression, - ACTIONS(193), 2, + ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(197), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(209), 2, + ACTIONS(95), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(213), 2, + ACTIONS(99), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(219), 2, + ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(207), 4, + ACTIONS(93), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -358614,7 +317776,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [9722] = 42, + [9652] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -358645,43 +317807,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3227), 1, + STATE(2796), 1, sym_comment, - STATE(4698), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4428), 1, sym__var, - STATE(5401), 1, + STATE(4920), 1, sym_val_number, - STATE(5567), 1, + STATE(5094), 1, sym_val_variable, - STATE(5573), 1, + STATE(5154), 1, sym_expr_parenthesized, - STATE(5769), 1, + STATE(5285), 1, sym__val_number, - STATE(6347), 1, + STATE(5878), 1, sym__expr_unary_minus, - STATE(6363), 1, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5940), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8295), 1, sym_val_range, - STATE(10091), 1, + STATE(9694), 1, sym__where_predicate, - STATE(10092), 1, + STATE(9695), 1, sym__expression, ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, @@ -358698,7 +317860,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -358707,7 +317869,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -358719,7 +317881,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [9869] = 42, + [9799] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -358750,43 +317912,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3228), 1, + STATE(2797), 1, sym_comment, - STATE(4698), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4428), 1, sym__var, - STATE(5401), 1, + STATE(4920), 1, sym_val_number, - STATE(5567), 1, + STATE(5094), 1, sym_val_variable, - STATE(5573), 1, + STATE(5154), 1, sym_expr_parenthesized, - STATE(5769), 1, + STATE(5285), 1, sym__val_number, - STATE(6347), 1, + STATE(5878), 1, sym__expr_unary_minus, - STATE(6363), 1, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5940), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8295), 1, sym_val_range, - STATE(10093), 1, + STATE(9697), 1, sym__where_predicate, - STATE(10095), 1, + STATE(9698), 1, sym__expression, ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, @@ -358803,7 +317965,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -358812,7 +317974,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -358824,7 +317986,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [10016] = 42, + [9946] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -358855,43 +318017,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3229), 1, + STATE(2798), 1, sym_comment, - STATE(4698), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4428), 1, sym__var, - STATE(5401), 1, + STATE(4920), 1, sym_val_number, - STATE(5567), 1, + STATE(5094), 1, sym_val_variable, - STATE(5573), 1, + STATE(5154), 1, sym_expr_parenthesized, - STATE(5769), 1, + STATE(5285), 1, sym__val_number, - STATE(6347), 1, + STATE(5878), 1, sym__expr_unary_minus, - STATE(6363), 1, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5940), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8295), 1, sym_val_range, - STATE(10096), 1, + STATE(9699), 1, sym__where_predicate, - STATE(10097), 1, + STATE(9700), 1, sym__expression, ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, @@ -358908,7 +318070,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -358917,7 +318079,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -358929,7 +318091,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [10163] = 42, + [10093] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -358960,43 +318122,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3230), 1, + STATE(2799), 1, sym_comment, - STATE(4698), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4428), 1, sym__var, - STATE(5401), 1, + STATE(4920), 1, sym_val_number, - STATE(5567), 1, + STATE(5094), 1, sym_val_variable, - STATE(5573), 1, + STATE(5154), 1, sym_expr_parenthesized, - STATE(5769), 1, + STATE(5285), 1, sym__val_number, - STATE(6347), 1, + STATE(5878), 1, sym__expr_unary_minus, - STATE(6363), 1, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5940), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8295), 1, sym_val_range, - STATE(10098), 1, + STATE(9161), 1, sym__where_predicate, - STATE(10100), 1, + STATE(9363), 1, sym__expression, ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, @@ -359013,7 +318175,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -359022,7 +318184,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -359034,7 +318196,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [10310] = 42, + [10240] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -359065,43 +318227,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3231), 1, + STATE(2800), 1, sym_comment, - STATE(4698), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4428), 1, sym__var, - STATE(5401), 1, + STATE(4920), 1, sym_val_number, - STATE(5567), 1, + STATE(5094), 1, sym_val_variable, - STATE(5573), 1, + STATE(5154), 1, sym_expr_parenthesized, - STATE(5769), 1, + STATE(5285), 1, sym__val_number, - STATE(6347), 1, + STATE(5878), 1, sym__expr_unary_minus, - STATE(6363), 1, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5940), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8295), 1, sym_val_range, - STATE(10101), 1, + STATE(9096), 1, sym__where_predicate, - STATE(10102), 1, + STATE(9248), 1, sym__expression, ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, @@ -359118,7 +318280,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -359127,7 +318289,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -359139,7 +318301,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [10457] = 42, + [10387] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -359170,43 +318332,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3232), 1, + STATE(2801), 1, sym_comment, - STATE(4698), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4428), 1, sym__var, - STATE(5401), 1, + STATE(4920), 1, sym_val_number, - STATE(5567), 1, + STATE(5094), 1, sym_val_variable, - STATE(5573), 1, + STATE(5154), 1, sym_expr_parenthesized, - STATE(5769), 1, + STATE(5285), 1, sym__val_number, - STATE(6347), 1, + STATE(5878), 1, sym__expr_unary_minus, - STATE(6363), 1, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5940), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8295), 1, sym_val_range, - STATE(10104), 1, + STATE(9251), 1, sym__where_predicate, - STATE(10105), 1, + STATE(9345), 1, sym__expression, ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, @@ -359223,7 +318385,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -359232,7 +318394,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -359244,100 +318406,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [10604] = 42, + [10534] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(137), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(167), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(59), 1, anon_sym_DOT_DOT, - ACTIONS(191), 1, + ACTIONS(77), 1, anon_sym_not, - ACTIONS(195), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(203), 1, + ACTIONS(89), 1, anon_sym_DOT2, - ACTIONS(205), 1, + ACTIONS(91), 1, aux_sym__val_number_decimal_token3, - ACTIONS(211), 1, + ACTIONS(97), 1, anon_sym_0b, - ACTIONS(215), 1, + ACTIONS(101), 1, sym_val_date, - ACTIONS(217), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(221), 1, + ACTIONS(107), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(223), 1, + ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, - anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3233), 1, + STATE(2802), 1, sym_comment, - STATE(4458), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4428), 1, sym__var, - STATE(5173), 1, + STATE(4920), 1, sym_val_number, - STATE(5308), 1, - sym_expr_parenthesized, - STATE(5404), 1, + STATE(5094), 1, sym_val_variable, - STATE(5462), 1, + STATE(5154), 1, + sym_expr_parenthesized, + STATE(5285), 1, sym__val_number, - STATE(5774), 1, + STATE(5878), 1, + sym__expr_unary_minus, + STATE(5888), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6183), 1, - sym__expr_unary_minus, - STATE(6785), 1, + STATE(5940), 1, + sym__inter_double_quotes, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8295), 1, sym_val_range, - STATE(9181), 1, + STATE(9362), 1, sym__where_predicate, - STATE(9211), 1, + STATE(9606), 1, sym__expression, - ACTIONS(193), 2, + ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(197), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(209), 2, + ACTIONS(95), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(213), 2, + ACTIONS(99), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(219), 2, + ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(207), 4, + ACTIONS(93), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -359349,100 +318511,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [10751] = 42, + [10681] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(137), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(167), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(59), 1, anon_sym_DOT_DOT, - ACTIONS(191), 1, + ACTIONS(77), 1, anon_sym_not, - ACTIONS(195), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(203), 1, + ACTIONS(89), 1, anon_sym_DOT2, - ACTIONS(205), 1, + ACTIONS(91), 1, aux_sym__val_number_decimal_token3, - ACTIONS(211), 1, + ACTIONS(97), 1, anon_sym_0b, - ACTIONS(215), 1, + ACTIONS(101), 1, sym_val_date, - ACTIONS(217), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(221), 1, + ACTIONS(107), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(223), 1, + ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, - anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3234), 1, + STATE(2803), 1, sym_comment, - STATE(4458), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4428), 1, sym__var, - STATE(5173), 1, + STATE(4920), 1, sym_val_number, - STATE(5308), 1, - sym_expr_parenthesized, - STATE(5404), 1, + STATE(5094), 1, sym_val_variable, - STATE(5462), 1, + STATE(5154), 1, + sym_expr_parenthesized, + STATE(5285), 1, sym__val_number, - STATE(5774), 1, + STATE(5878), 1, + sym__expr_unary_minus, + STATE(5888), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6183), 1, - sym__expr_unary_minus, - STATE(6785), 1, + STATE(5940), 1, + sym__inter_double_quotes, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8295), 1, sym_val_range, - STATE(9218), 1, - sym__where_predicate, - STATE(9261), 1, + STATE(9110), 1, sym__expression, - ACTIONS(193), 2, + STATE(9295), 1, + sym__where_predicate, + ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(197), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(209), 2, + ACTIONS(95), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(213), 2, + ACTIONS(99), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(219), 2, + ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(207), 4, + ACTIONS(93), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -359454,7 +318616,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [10898] = 42, + [10828] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -359485,44 +318647,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3235), 1, + STATE(2804), 1, sym_comment, - STATE(4698), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4428), 1, sym__var, - STATE(5401), 1, + STATE(4920), 1, sym_val_number, - STATE(5567), 1, + STATE(5094), 1, sym_val_variable, - STATE(5573), 1, + STATE(5154), 1, sym_expr_parenthesized, - STATE(5769), 1, + STATE(5285), 1, sym__val_number, - STATE(6347), 1, + STATE(5878), 1, sym__expr_unary_minus, - STATE(6363), 1, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5940), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8295), 1, sym_val_range, - STATE(9592), 1, - sym__where_predicate, - STATE(9593), 1, + STATE(9256), 1, sym__expression, + STATE(9307), 1, + sym__where_predicate, ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -359538,7 +318700,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -359547,7 +318709,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -359559,7 +318721,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [11045] = 42, + [10975] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -359590,43 +318752,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3236), 1, + STATE(2805), 1, sym_comment, - STATE(4698), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4428), 1, sym__var, - STATE(5401), 1, + STATE(4920), 1, sym_val_number, - STATE(5567), 1, + STATE(5094), 1, sym_val_variable, - STATE(5573), 1, + STATE(5154), 1, sym_expr_parenthesized, - STATE(5769), 1, + STATE(5285), 1, sym__val_number, - STATE(6347), 1, + STATE(5878), 1, sym__expr_unary_minus, - STATE(6363), 1, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5940), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8295), 1, sym_val_range, - STATE(9595), 1, + STATE(9289), 1, sym__where_predicate, - STATE(9596), 1, + STATE(9473), 1, sym__expression, ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, @@ -359643,7 +318805,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -359652,7 +318814,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -359664,7 +318826,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [11192] = 42, + [11122] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -359695,43 +318857,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3237), 1, + STATE(2806), 1, sym_comment, - STATE(4698), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4428), 1, sym__var, - STATE(5401), 1, + STATE(4920), 1, sym_val_number, - STATE(5567), 1, + STATE(5094), 1, sym_val_variable, - STATE(5573), 1, + STATE(5154), 1, sym_expr_parenthesized, - STATE(5769), 1, + STATE(5285), 1, sym__val_number, - STATE(6347), 1, + STATE(5878), 1, sym__expr_unary_minus, - STATE(6363), 1, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5940), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8295), 1, sym_val_range, - STATE(9665), 1, + STATE(9477), 1, sym__where_predicate, - STATE(9666), 1, + STATE(9585), 1, sym__expression, ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, @@ -359748,7 +318910,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -359757,7 +318919,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -359769,100 +318931,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [11339] = 42, + [11269] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(137), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(167), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(59), 1, anon_sym_DOT_DOT, - ACTIONS(191), 1, + ACTIONS(77), 1, anon_sym_not, - ACTIONS(195), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(203), 1, + ACTIONS(89), 1, anon_sym_DOT2, - ACTIONS(205), 1, + ACTIONS(91), 1, aux_sym__val_number_decimal_token3, - ACTIONS(211), 1, + ACTIONS(97), 1, anon_sym_0b, - ACTIONS(215), 1, + ACTIONS(101), 1, sym_val_date, - ACTIONS(217), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(221), 1, + ACTIONS(107), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(223), 1, + ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, - anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3238), 1, + STATE(2807), 1, sym_comment, - STATE(4458), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4428), 1, sym__var, - STATE(5173), 1, + STATE(4920), 1, sym_val_number, - STATE(5308), 1, - sym_expr_parenthesized, - STATE(5404), 1, + STATE(5094), 1, sym_val_variable, - STATE(5462), 1, + STATE(5154), 1, + sym_expr_parenthesized, + STATE(5285), 1, sym__val_number, - STATE(5774), 1, + STATE(5878), 1, + sym__expr_unary_minus, + STATE(5888), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6183), 1, - sym__expr_unary_minus, - STATE(6785), 1, + STATE(5940), 1, + sym__inter_double_quotes, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8295), 1, sym_val_range, - STATE(9284), 1, - sym__where_predicate, - STATE(9358), 1, + STATE(8995), 1, sym__expression, - ACTIONS(193), 2, + STATE(9629), 1, + sym__where_predicate, + ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(197), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(209), 2, + ACTIONS(95), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(213), 2, + ACTIONS(99), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(219), 2, + ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(207), 4, + ACTIONS(93), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -359874,7 +319036,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [11486] = 42, + [11416] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -359905,43 +319067,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3239), 1, + STATE(2808), 1, sym_comment, - STATE(4698), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4428), 1, sym__var, - STATE(5401), 1, + STATE(4920), 1, sym_val_number, - STATE(5567), 1, + STATE(5094), 1, sym_val_variable, - STATE(5573), 1, + STATE(5154), 1, sym_expr_parenthesized, - STATE(5769), 1, + STATE(5285), 1, sym__val_number, - STATE(6347), 1, + STATE(5878), 1, sym__expr_unary_minus, - STATE(6363), 1, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5940), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8295), 1, sym_val_range, - STATE(9599), 1, + STATE(9131), 1, sym__where_predicate, - STATE(9602), 1, + STATE(9282), 1, sym__expression, ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, @@ -359958,7 +319120,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -359967,7 +319129,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -359979,7 +319141,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [11633] = 42, + [11563] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -360010,43 +319172,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3240), 1, + STATE(2809), 1, sym_comment, - STATE(4698), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4428), 1, sym__var, - STATE(5401), 1, + STATE(4920), 1, sym_val_number, - STATE(5567), 1, + STATE(5094), 1, sym_val_variable, - STATE(5573), 1, + STATE(5154), 1, sym_expr_parenthesized, - STATE(5769), 1, + STATE(5285), 1, sym__val_number, - STATE(6347), 1, + STATE(5878), 1, sym__expr_unary_minus, - STATE(6363), 1, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5940), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8295), 1, sym_val_range, - STATE(10040), 1, + STATE(9354), 1, sym__where_predicate, - STATE(10041), 1, + STATE(9400), 1, sym__expression, ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, @@ -360063,7 +319225,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -360072,7 +319234,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -360084,7 +319246,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [11780] = 42, + [11710] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -360115,43 +319277,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3241), 1, + STATE(2810), 1, sym_comment, - STATE(4698), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4428), 1, sym__var, - STATE(5401), 1, + STATE(4920), 1, sym_val_number, - STATE(5567), 1, + STATE(5094), 1, sym_val_variable, - STATE(5573), 1, + STATE(5154), 1, sym_expr_parenthesized, - STATE(5769), 1, + STATE(5285), 1, sym__val_number, - STATE(6347), 1, + STATE(5878), 1, sym__expr_unary_minus, - STATE(6363), 1, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5940), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8295), 1, sym_val_range, - STATE(9606), 1, + STATE(9587), 1, sym__where_predicate, - STATE(9607), 1, + STATE(9597), 1, sym__expression, ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, @@ -360168,7 +319330,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -360177,7 +319339,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -360189,7 +319351,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [11927] = 42, + [11857] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -360220,43 +319382,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3242), 1, + STATE(2811), 1, sym_comment, - STATE(4698), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4428), 1, sym__var, - STATE(5401), 1, + STATE(4920), 1, sym_val_number, - STATE(5567), 1, + STATE(5094), 1, sym_val_variable, - STATE(5573), 1, + STATE(5154), 1, sym_expr_parenthesized, - STATE(5769), 1, + STATE(5285), 1, sym__val_number, - STATE(6347), 1, + STATE(5878), 1, sym__expr_unary_minus, - STATE(6363), 1, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5940), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8295), 1, sym_val_range, - STATE(9609), 1, + STATE(9610), 1, sym__where_predicate, - STATE(9613), 1, + STATE(9620), 1, sym__expression, ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, @@ -360273,7 +319435,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -360282,7 +319444,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -360294,101 +319456,102 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [12074] = 41, + [12004] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2688), 1, - anon_sym_LPAREN, - ACTIONS(2690), 1, - anon_sym_DOLLAR, - ACTIONS(2718), 1, - anon_sym_0b, - ACTIONS(2728), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2730), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3391), 1, - anon_sym_DQUOTE, - ACTIONS(3882), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(3884), 1, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(3886), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(3904), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3984), 1, - anon_sym_COLON, - ACTIONS(7191), 1, - sym_val_date, - ACTIONS(7224), 1, - sym_identifier, - ACTIONS(7226), 1, + ACTIONS(59), 1, anon_sym_DOT_DOT, - ACTIONS(7228), 1, + ACTIONS(77), 1, anon_sym_not, - ACTIONS(7232), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(7236), 1, + ACTIONS(89), 1, + anon_sym_DOT2, + ACTIONS(91), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(97), 1, + anon_sym_0b, + ACTIONS(101), 1, + sym_val_date, + ACTIONS(103), 1, + anon_sym_DQUOTE, + ACTIONS(107), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(109), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1528), 1, + anon_sym_DOLLAR, + ACTIONS(6725), 1, + sym_identifier, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7238), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - ACTIONS(7240), 1, - anon_sym_DOT2, - STATE(3243), 1, + STATE(2812), 1, sym_comment, - STATE(4486), 1, + STATE(4371), 1, + sym__val_number_decimal, + STATE(4428), 1, sym__var, - STATE(5463), 1, + STATE(4920), 1, + sym_val_number, + STATE(5094), 1, + sym_val_variable, + STATE(5154), 1, + sym_expr_parenthesized, + STATE(5285), 1, sym__val_number, - STATE(5541), 1, - sym__str_double_quotes, - STATE(5894), 1, - sym__val_number_decimal, - STATE(6245), 1, + STATE(5878), 1, sym__expr_unary_minus, - STATE(6258), 1, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6277), 1, + STATE(5940), 1, sym__inter_double_quotes, - STATE(6316), 1, - sym_val_variable, - STATE(6385), 1, - sym_expr_parenthesized, - STATE(6786), 1, + STATE(6380), 1, sym__expr_binary_expression, - STATE(7168), 1, + STATE(8295), 1, sym_val_range, - STATE(10501), 1, + STATE(9630), 1, + sym__where_predicate, + STATE(9667), 1, sym__expression, - ACTIONS(2720), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3393), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6107), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(7230), 2, + ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(7234), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - STATE(6243), 3, + ACTIONS(95), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(99), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(105), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(2714), 4, + ACTIONS(93), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6175), 12, + STATE(5931), 11, sym_val_nothing, sym_val_bool, - sym_val_number, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -360398,7 +319561,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [12219] = 42, + [12151] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -360429,44 +319592,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3244), 1, + STATE(2813), 1, sym_comment, - STATE(4698), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4428), 1, sym__var, - STATE(5401), 1, + STATE(4920), 1, sym_val_number, - STATE(5567), 1, + STATE(5094), 1, sym_val_variable, - STATE(5573), 1, + STATE(5154), 1, sym_expr_parenthesized, - STATE(5769), 1, + STATE(5285), 1, sym__val_number, - STATE(6347), 1, + STATE(5878), 1, sym__expr_unary_minus, - STATE(6363), 1, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5940), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8295), 1, sym_val_range, - STATE(9785), 1, - sym__where_predicate, - STATE(9789), 1, + STATE(9146), 1, sym__expression, + STATE(9714), 1, + sym__where_predicate, ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -360482,7 +319645,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -360491,7 +319654,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -360503,7 +319666,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [12366] = 42, + [12298] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -360534,43 +319697,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3245), 1, + STATE(2814), 1, sym_comment, - STATE(4698), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4428), 1, sym__var, - STATE(5401), 1, + STATE(4920), 1, sym_val_number, - STATE(5567), 1, + STATE(5094), 1, sym_val_variable, - STATE(5573), 1, + STATE(5154), 1, sym_expr_parenthesized, - STATE(5769), 1, + STATE(5285), 1, sym__val_number, - STATE(6347), 1, + STATE(5878), 1, sym__expr_unary_minus, - STATE(6363), 1, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5940), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8295), 1, sym_val_range, - STATE(9790), 1, + STATE(9166), 1, sym__where_predicate, - STATE(9794), 1, + STATE(9192), 1, sym__expression, ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, @@ -360587,7 +319750,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -360596,7 +319759,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -360608,7 +319771,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [12513] = 42, + [12445] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -360639,43 +319802,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3246), 1, + STATE(2815), 1, sym_comment, - STATE(4698), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4428), 1, sym__var, - STATE(5401), 1, + STATE(4920), 1, sym_val_number, - STATE(5567), 1, + STATE(5094), 1, sym_val_variable, - STATE(5573), 1, + STATE(5154), 1, sym_expr_parenthesized, - STATE(5769), 1, + STATE(5285), 1, sym__val_number, - STATE(6347), 1, + STATE(5878), 1, sym__expr_unary_minus, - STATE(6363), 1, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5940), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8295), 1, sym_val_range, - STATE(9798), 1, + STATE(9229), 1, sym__where_predicate, - STATE(9803), 1, + STATE(9310), 1, sym__expression, ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, @@ -360692,7 +319855,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -360701,7 +319864,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -360713,7 +319876,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [12660] = 42, + [12592] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -360744,43 +319907,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3247), 1, + STATE(2816), 1, sym_comment, - STATE(4698), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4428), 1, sym__var, - STATE(5401), 1, + STATE(4920), 1, sym_val_number, - STATE(5567), 1, + STATE(5094), 1, sym_val_variable, - STATE(5573), 1, + STATE(5154), 1, sym_expr_parenthesized, - STATE(5769), 1, + STATE(5285), 1, sym__val_number, - STATE(6347), 1, + STATE(5878), 1, sym__expr_unary_minus, - STATE(6363), 1, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5940), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8295), 1, sym_val_range, - STATE(9804), 1, + STATE(9323), 1, sym__where_predicate, - STATE(9807), 1, + STATE(9611), 1, sym__expression, ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, @@ -360797,7 +319960,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -360806,7 +319969,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -360818,7 +319981,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [12807] = 42, + [12739] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -360849,43 +320012,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3248), 1, + STATE(2817), 1, sym_comment, - STATE(4698), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4428), 1, sym__var, - STATE(5401), 1, + STATE(4920), 1, sym_val_number, - STATE(5567), 1, + STATE(5094), 1, sym_val_variable, - STATE(5573), 1, + STATE(5154), 1, sym_expr_parenthesized, - STATE(5769), 1, + STATE(5285), 1, sym__val_number, - STATE(6347), 1, + STATE(5878), 1, sym__expr_unary_minus, - STATE(6363), 1, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5940), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8295), 1, sym_val_range, - STATE(9875), 1, + STATE(9631), 1, sym__where_predicate, - STATE(9903), 1, + STATE(9647), 1, sym__expression, ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, @@ -360902,7 +320065,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -360911,7 +320074,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -360923,7 +320086,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [12954] = 42, + [12886] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -360954,43 +320117,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3249), 1, + STATE(2818), 1, sym_comment, - STATE(4698), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4428), 1, sym__var, - STATE(5401), 1, + STATE(4920), 1, sym_val_number, - STATE(5567), 1, + STATE(5094), 1, sym_val_variable, - STATE(5573), 1, + STATE(5154), 1, sym_expr_parenthesized, - STATE(5769), 1, + STATE(5285), 1, sym__val_number, - STATE(6347), 1, + STATE(5878), 1, sym__expr_unary_minus, - STATE(6363), 1, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5940), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8295), 1, sym_val_range, - STATE(9910), 1, + STATE(9045), 1, sym__where_predicate, - STATE(9925), 1, + STATE(9720), 1, sym__expression, ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, @@ -361007,7 +320170,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -361016,7 +320179,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -361028,7 +320191,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [13101] = 42, + [13033] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -361059,43 +320222,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3250), 1, + STATE(2819), 1, sym_comment, - STATE(4698), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4428), 1, sym__var, - STATE(5401), 1, + STATE(4920), 1, sym_val_number, - STATE(5567), 1, + STATE(5094), 1, sym_val_variable, - STATE(5573), 1, + STATE(5154), 1, sym_expr_parenthesized, - STATE(5769), 1, + STATE(5285), 1, sym__val_number, - STATE(6347), 1, + STATE(5878), 1, sym__expr_unary_minus, - STATE(6363), 1, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5940), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8295), 1, sym_val_range, - STATE(10024), 1, + STATE(9097), 1, sym__where_predicate, - STATE(10025), 1, + STATE(9120), 1, sym__expression, ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, @@ -361112,7 +320275,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -361121,7 +320284,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -361133,7 +320296,77 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [13248] = 42, + [13180] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6731), 1, + anon_sym_DOT, + STATE(2820), 1, + sym_comment, + STATE(2822), 1, + sym_path, + STATE(3085), 1, + sym_cell_path, + ACTIONS(1004), 14, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1002), 43, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [13257] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -361164,44 +320397,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3251), 1, + STATE(2821), 1, sym_comment, - STATE(4698), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4428), 1, sym__var, - STATE(5401), 1, + STATE(4920), 1, sym_val_number, - STATE(5567), 1, + STATE(5094), 1, sym_val_variable, - STATE(5573), 1, + STATE(5154), 1, sym_expr_parenthesized, - STATE(5769), 1, + STATE(5285), 1, sym__val_number, - STATE(6347), 1, + STATE(5878), 1, sym__expr_unary_minus, - STATE(6363), 1, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5940), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8295), 1, sym_val_range, - STATE(10027), 1, - sym__where_predicate, - STATE(10028), 1, + STATE(9279), 1, sym__expression, + STATE(9522), 1, + sym__where_predicate, ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -361217,7 +320450,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -361226,7 +320459,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -361238,7 +320471,216 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [13395] = 42, + [13404] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6731), 1, + anon_sym_DOT, + STATE(2822), 1, + sym_comment, + STATE(2823), 1, + aux_sym_cell_path_repeat1, + STATE(2988), 1, + sym_path, + ACTIONS(1012), 14, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1010), 43, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [13481] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6731), 1, + anon_sym_DOT, + STATE(2823), 1, + sym_comment, + STATE(2824), 1, + aux_sym_cell_path_repeat1, + STATE(2988), 1, + sym_path, + ACTIONS(1008), 14, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1006), 43, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [13558] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6733), 1, + anon_sym_DOT, + STATE(2988), 1, + sym_path, + STATE(2824), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(987), 14, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(985), 43, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [13633] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -361269,43 +320711,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3252), 1, + STATE(2825), 1, sym_comment, - STATE(4698), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4428), 1, sym__var, - STATE(5401), 1, + STATE(4920), 1, sym_val_number, - STATE(5567), 1, + STATE(5094), 1, sym_val_variable, - STATE(5573), 1, + STATE(5154), 1, sym_expr_parenthesized, - STATE(5769), 1, + STATE(5285), 1, sym__val_number, - STATE(6347), 1, + STATE(5878), 1, sym__expr_unary_minus, - STATE(6363), 1, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5940), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8295), 1, sym_val_range, - STATE(9615), 1, + STATE(9054), 1, sym__where_predicate, - STATE(9619), 1, + STATE(9055), 1, sym__expression, ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, @@ -361322,7 +320764,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -361331,7 +320773,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -361343,7 +320785,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [13542] = 42, + [13780] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -361374,43 +320816,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3253), 1, + STATE(2826), 1, sym_comment, - STATE(4698), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4428), 1, sym__var, - STATE(5401), 1, + STATE(4920), 1, sym_val_number, - STATE(5567), 1, + STATE(5094), 1, sym_val_variable, - STATE(5573), 1, + STATE(5154), 1, sym_expr_parenthesized, - STATE(5769), 1, + STATE(5285), 1, sym__val_number, - STATE(6347), 1, + STATE(5878), 1, sym__expr_unary_minus, - STATE(6363), 1, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5940), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8295), 1, sym_val_range, - STATE(9620), 1, + STATE(9056), 1, sym__where_predicate, - STATE(9621), 1, + STATE(9057), 1, sym__expression, ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, @@ -361427,7 +320869,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -361436,7 +320878,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -361448,7 +320890,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [13689] = 42, + [13927] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -361479,43 +320921,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3254), 1, + STATE(2827), 1, sym_comment, - STATE(4698), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4428), 1, sym__var, - STATE(5401), 1, + STATE(4920), 1, sym_val_number, - STATE(5567), 1, + STATE(5094), 1, sym_val_variable, - STATE(5573), 1, + STATE(5154), 1, sym_expr_parenthesized, - STATE(5769), 1, + STATE(5285), 1, sym__val_number, - STATE(6347), 1, + STATE(5878), 1, sym__expr_unary_minus, - STATE(6363), 1, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5940), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8295), 1, sym_val_range, - STATE(9622), 1, + STATE(9060), 1, sym__where_predicate, - STATE(9624), 1, + STATE(9061), 1, sym__expression, ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, @@ -361532,7 +320974,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -361541,7 +320983,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -361553,7 +320995,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [13836] = 42, + [14074] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -361584,43 +321026,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3255), 1, + STATE(2828), 1, sym_comment, - STATE(4698), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4428), 1, sym__var, - STATE(5401), 1, + STATE(4920), 1, sym_val_number, - STATE(5567), 1, + STATE(5094), 1, sym_val_variable, - STATE(5573), 1, + STATE(5154), 1, sym_expr_parenthesized, - STATE(5769), 1, + STATE(5285), 1, sym__val_number, - STATE(6347), 1, + STATE(5878), 1, sym__expr_unary_minus, - STATE(6363), 1, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5940), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8295), 1, sym_val_range, - STATE(10029), 1, + STATE(9062), 1, sym__where_predicate, - STATE(10030), 1, + STATE(9063), 1, sym__expression, ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, @@ -361637,7 +321079,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -361646,7 +321088,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -361658,100 +321100,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [13983] = 42, + [14221] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(137), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(167), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(59), 1, anon_sym_DOT_DOT, - ACTIONS(191), 1, + ACTIONS(77), 1, anon_sym_not, - ACTIONS(195), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(203), 1, + ACTIONS(89), 1, anon_sym_DOT2, - ACTIONS(205), 1, + ACTIONS(91), 1, aux_sym__val_number_decimal_token3, - ACTIONS(211), 1, + ACTIONS(97), 1, anon_sym_0b, - ACTIONS(215), 1, + ACTIONS(101), 1, sym_val_date, - ACTIONS(217), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(221), 1, + ACTIONS(107), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(223), 1, + ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, - anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3256), 1, + STATE(2829), 1, sym_comment, - STATE(4458), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4428), 1, sym__var, - STATE(5173), 1, + STATE(4920), 1, sym_val_number, - STATE(5308), 1, - sym_expr_parenthesized, - STATE(5404), 1, + STATE(5094), 1, sym_val_variable, - STATE(5462), 1, + STATE(5154), 1, + sym_expr_parenthesized, + STATE(5285), 1, sym__val_number, - STATE(5774), 1, + STATE(5878), 1, + sym__expr_unary_minus, + STATE(5888), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6183), 1, - sym__expr_unary_minus, - STATE(6785), 1, + STATE(5940), 1, + sym__inter_double_quotes, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8295), 1, sym_val_range, - STATE(8831), 1, + STATE(9074), 1, sym__where_predicate, - STATE(8859), 1, + STATE(9075), 1, sym__expression, - ACTIONS(193), 2, + ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(197), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(209), 2, + ACTIONS(95), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(213), 2, + ACTIONS(99), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(219), 2, + ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(207), 4, + ACTIONS(93), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -361763,7 +321205,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [14130] = 42, + [14368] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -361794,43 +321236,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3257), 1, + STATE(2830), 1, sym_comment, - STATE(4698), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4428), 1, sym__var, - STATE(5401), 1, + STATE(4920), 1, sym_val_number, - STATE(5567), 1, + STATE(5094), 1, sym_val_variable, - STATE(5573), 1, + STATE(5154), 1, sym_expr_parenthesized, - STATE(5769), 1, + STATE(5285), 1, sym__val_number, - STATE(6347), 1, + STATE(5878), 1, sym__expr_unary_minus, - STATE(6363), 1, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5940), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8295), 1, sym_val_range, - STATE(10032), 1, + STATE(9076), 1, sym__where_predicate, - STATE(10033), 1, + STATE(9077), 1, sym__expression, ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, @@ -361847,7 +321289,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -361856,7 +321298,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -361868,100 +321310,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [14277] = 42, + [14515] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(137), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(167), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(59), 1, anon_sym_DOT_DOT, - ACTIONS(191), 1, + ACTIONS(77), 1, anon_sym_not, - ACTIONS(195), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(203), 1, + ACTIONS(89), 1, anon_sym_DOT2, - ACTIONS(205), 1, + ACTIONS(91), 1, aux_sym__val_number_decimal_token3, - ACTIONS(211), 1, + ACTIONS(97), 1, anon_sym_0b, - ACTIONS(215), 1, + ACTIONS(101), 1, sym_val_date, - ACTIONS(217), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(221), 1, + ACTIONS(107), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(223), 1, + ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, - anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3258), 1, + STATE(2831), 1, sym_comment, - STATE(4458), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4428), 1, sym__var, - STATE(5173), 1, + STATE(4920), 1, sym_val_number, - STATE(5308), 1, - sym_expr_parenthesized, - STATE(5404), 1, + STATE(5094), 1, sym_val_variable, - STATE(5462), 1, + STATE(5154), 1, + sym_expr_parenthesized, + STATE(5285), 1, sym__val_number, - STATE(5774), 1, + STATE(5878), 1, + sym__expr_unary_minus, + STATE(5888), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6183), 1, - sym__expr_unary_minus, - STATE(6785), 1, + STATE(5940), 1, + sym__inter_double_quotes, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8295), 1, sym_val_range, - STATE(8864), 1, + STATE(9079), 1, sym__where_predicate, - STATE(8872), 1, + STATE(9080), 1, sym__expression, - ACTIONS(193), 2, + ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(197), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(209), 2, + ACTIONS(95), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(213), 2, + ACTIONS(99), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(219), 2, + ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(207), 4, + ACTIONS(93), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -361973,7 +321415,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [14424] = 42, + [14662] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -362004,43 +321446,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3259), 1, + STATE(2832), 1, sym_comment, - STATE(4698), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4428), 1, sym__var, - STATE(5401), 1, + STATE(4920), 1, sym_val_number, - STATE(5567), 1, + STATE(5094), 1, sym_val_variable, - STATE(5573), 1, + STATE(5154), 1, sym_expr_parenthesized, - STATE(5769), 1, + STATE(5285), 1, sym__val_number, - STATE(6347), 1, + STATE(5878), 1, sym__expr_unary_minus, - STATE(6363), 1, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5940), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8295), 1, sym_val_range, - STATE(10034), 1, + STATE(9081), 1, sym__where_predicate, - STATE(10107), 1, + STATE(9082), 1, sym__expression, ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, @@ -362057,7 +321499,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -362066,7 +321508,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -362078,7 +321520,74 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [14571] = 42, + [14809] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(2833), 1, + sym_comment, + ACTIONS(3769), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(3767), 57, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + anon_sym_DOT_DOT2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [14880] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -362109,43 +321618,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3260), 1, + STATE(2834), 1, sym_comment, - STATE(4698), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4428), 1, sym__var, - STATE(5401), 1, + STATE(4920), 1, sym_val_number, - STATE(5567), 1, + STATE(5094), 1, sym_val_variable, - STATE(5573), 1, + STATE(5154), 1, sym_expr_parenthesized, - STATE(5769), 1, + STATE(5285), 1, sym__val_number, - STATE(6347), 1, + STATE(5878), 1, sym__expr_unary_minus, - STATE(6363), 1, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5940), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8295), 1, sym_val_range, - STATE(10108), 1, + STATE(9083), 1, sym__where_predicate, - STATE(10109), 1, + STATE(9085), 1, sym__expression, ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, @@ -362162,7 +321671,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -362171,7 +321680,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -362183,7 +321692,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [14718] = 42, + [15027] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -362214,43 +321723,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3261), 1, + STATE(2835), 1, sym_comment, - STATE(4698), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4428), 1, sym__var, - STATE(5401), 1, + STATE(4920), 1, sym_val_number, - STATE(5567), 1, + STATE(5094), 1, sym_val_variable, - STATE(5573), 1, + STATE(5154), 1, sym_expr_parenthesized, - STATE(5769), 1, + STATE(5285), 1, sym__val_number, - STATE(6347), 1, + STATE(5878), 1, sym__expr_unary_minus, - STATE(6363), 1, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5940), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8295), 1, sym_val_range, - STATE(10110), 1, + STATE(9671), 1, sym__where_predicate, - STATE(10111), 1, + STATE(9677), 1, sym__expression, ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, @@ -362267,7 +321776,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -362276,7 +321785,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -362288,100 +321797,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [14865] = 42, + [15174] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(139), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(167), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(171), 1, anon_sym_DOT_DOT, - ACTIONS(77), 1, + ACTIONS(191), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(195), 1, anon_sym_null, - ACTIONS(89), 1, + ACTIONS(203), 1, anon_sym_DOT2, - ACTIONS(91), 1, + ACTIONS(205), 1, aux_sym__val_number_decimal_token3, - ACTIONS(97), 1, + ACTIONS(211), 1, anon_sym_0b, - ACTIONS(101), 1, + ACTIONS(215), 1, sym_val_date, - ACTIONS(103), 1, + ACTIONS(217), 1, anon_sym_DQUOTE, - ACTIONS(107), 1, + ACTIONS(221), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(109), 1, + ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(391), 1, + anon_sym_DASH, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3262), 1, + STATE(2836), 1, sym_comment, - STATE(4698), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4386), 1, sym__var, - STATE(5401), 1, + STATE(4586), 1, sym_val_number, - STATE(5567), 1, - sym_val_variable, - STATE(5573), 1, - sym_expr_parenthesized, - STATE(5769), 1, + STATE(4833), 1, sym__val_number, - STATE(6347), 1, - sym__expr_unary_minus, - STATE(6363), 1, + STATE(5005), 1, + sym_expr_parenthesized, + STATE(5017), 1, + sym_val_variable, + STATE(5408), 1, + sym__str_double_quotes, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5695), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(5748), 1, + sym__expr_unary_minus, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8000), 1, sym_val_range, - STATE(10112), 1, + STATE(8770), 1, sym__where_predicate, - STATE(10113), 1, + STATE(8774), 1, sym__expression, - ACTIONS(79), 2, + ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(83), 2, + ACTIONS(197), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(209), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(99), 2, + ACTIONS(213), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(105), 2, + ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(93), 4, + ACTIONS(207), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -362393,100 +321902,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [15012] = 42, + [15321] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(139), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(167), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(171), 1, anon_sym_DOT_DOT, - ACTIONS(77), 1, + ACTIONS(191), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(195), 1, anon_sym_null, - ACTIONS(89), 1, + ACTIONS(203), 1, anon_sym_DOT2, - ACTIONS(91), 1, + ACTIONS(205), 1, aux_sym__val_number_decimal_token3, - ACTIONS(97), 1, + ACTIONS(211), 1, anon_sym_0b, - ACTIONS(101), 1, + ACTIONS(215), 1, sym_val_date, - ACTIONS(103), 1, + ACTIONS(217), 1, anon_sym_DQUOTE, - ACTIONS(107), 1, + ACTIONS(221), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(109), 1, + ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(391), 1, + anon_sym_DASH, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3263), 1, + STATE(2837), 1, sym_comment, - STATE(4698), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4386), 1, sym__var, - STATE(5401), 1, + STATE(4586), 1, sym_val_number, - STATE(5567), 1, - sym_val_variable, - STATE(5573), 1, - sym_expr_parenthesized, - STATE(5769), 1, + STATE(4833), 1, sym__val_number, - STATE(6347), 1, - sym__expr_unary_minus, - STATE(6363), 1, + STATE(5005), 1, + sym_expr_parenthesized, + STATE(5017), 1, + sym_val_variable, + STATE(5408), 1, + sym__str_double_quotes, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5695), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(5748), 1, + sym__expr_unary_minus, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8000), 1, sym_val_range, - STATE(10115), 1, + STATE(8776), 1, sym__where_predicate, - STATE(10116), 1, + STATE(8779), 1, sym__expression, - ACTIONS(79), 2, + ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(83), 2, + ACTIONS(197), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(209), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(99), 2, + ACTIONS(213), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(105), 2, + ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(93), 4, + ACTIONS(207), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -362498,100 +322007,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [15159] = 42, + [15468] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(139), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(167), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(171), 1, anon_sym_DOT_DOT, - ACTIONS(77), 1, + ACTIONS(191), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(195), 1, anon_sym_null, - ACTIONS(89), 1, + ACTIONS(203), 1, anon_sym_DOT2, - ACTIONS(91), 1, + ACTIONS(205), 1, aux_sym__val_number_decimal_token3, - ACTIONS(97), 1, + ACTIONS(211), 1, anon_sym_0b, - ACTIONS(101), 1, + ACTIONS(215), 1, sym_val_date, - ACTIONS(103), 1, + ACTIONS(217), 1, anon_sym_DQUOTE, - ACTIONS(107), 1, + ACTIONS(221), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(109), 1, + ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(391), 1, + anon_sym_DASH, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3264), 1, + STATE(2838), 1, sym_comment, - STATE(4698), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4386), 1, sym__var, - STATE(5401), 1, + STATE(4586), 1, sym_val_number, - STATE(5567), 1, - sym_val_variable, - STATE(5573), 1, - sym_expr_parenthesized, - STATE(5769), 1, + STATE(4833), 1, sym__val_number, - STATE(6347), 1, - sym__expr_unary_minus, - STATE(6363), 1, + STATE(5005), 1, + sym_expr_parenthesized, + STATE(5017), 1, + sym_val_variable, + STATE(5408), 1, + sym__str_double_quotes, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5695), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(5748), 1, + sym__expr_unary_minus, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8000), 1, sym_val_range, - STATE(10117), 1, + STATE(8781), 1, sym__where_predicate, - STATE(10118), 1, + STATE(8786), 1, sym__expression, - ACTIONS(79), 2, + ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(83), 2, + ACTIONS(197), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(209), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(99), 2, + ACTIONS(213), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(105), 2, + ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(93), 4, + ACTIONS(207), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -362603,100 +322112,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [15306] = 42, + [15615] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(139), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(167), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(171), 1, anon_sym_DOT_DOT, - ACTIONS(77), 1, + ACTIONS(191), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(195), 1, anon_sym_null, - ACTIONS(89), 1, + ACTIONS(203), 1, anon_sym_DOT2, - ACTIONS(91), 1, + ACTIONS(205), 1, aux_sym__val_number_decimal_token3, - ACTIONS(97), 1, + ACTIONS(211), 1, anon_sym_0b, - ACTIONS(101), 1, + ACTIONS(215), 1, sym_val_date, - ACTIONS(103), 1, + ACTIONS(217), 1, anon_sym_DQUOTE, - ACTIONS(107), 1, + ACTIONS(221), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(109), 1, + ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(391), 1, + anon_sym_DASH, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3265), 1, + STATE(2839), 1, sym_comment, - STATE(4698), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4386), 1, sym__var, - STATE(5401), 1, + STATE(4586), 1, sym_val_number, - STATE(5567), 1, - sym_val_variable, - STATE(5573), 1, - sym_expr_parenthesized, - STATE(5769), 1, + STATE(4833), 1, sym__val_number, - STATE(6347), 1, - sym__expr_unary_minus, - STATE(6363), 1, + STATE(5005), 1, + sym_expr_parenthesized, + STATE(5017), 1, + sym_val_variable, + STATE(5408), 1, + sym__str_double_quotes, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5695), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(5748), 1, + sym__expr_unary_minus, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8000), 1, sym_val_range, - STATE(10124), 1, + STATE(8789), 1, sym__where_predicate, - STATE(10127), 1, + STATE(8845), 1, sym__expression, - ACTIONS(79), 2, + ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(83), 2, + ACTIONS(197), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(209), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(99), 2, + ACTIONS(213), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(105), 2, + ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(93), 4, + ACTIONS(207), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -362708,100 +322217,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [15453] = 42, + [15762] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(139), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(167), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(171), 1, anon_sym_DOT_DOT, - ACTIONS(77), 1, + ACTIONS(191), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(195), 1, anon_sym_null, - ACTIONS(89), 1, + ACTIONS(203), 1, anon_sym_DOT2, - ACTIONS(91), 1, + ACTIONS(205), 1, aux_sym__val_number_decimal_token3, - ACTIONS(97), 1, + ACTIONS(211), 1, anon_sym_0b, - ACTIONS(101), 1, + ACTIONS(215), 1, sym_val_date, - ACTIONS(103), 1, + ACTIONS(217), 1, anon_sym_DQUOTE, - ACTIONS(107), 1, + ACTIONS(221), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(109), 1, + ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(391), 1, + anon_sym_DASH, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3266), 1, + STATE(2840), 1, sym_comment, - STATE(4698), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4386), 1, sym__var, - STATE(5401), 1, + STATE(4586), 1, sym_val_number, - STATE(5567), 1, - sym_val_variable, - STATE(5573), 1, - sym_expr_parenthesized, - STATE(5769), 1, + STATE(4833), 1, sym__val_number, - STATE(6347), 1, - sym__expr_unary_minus, - STATE(6363), 1, + STATE(5005), 1, + sym_expr_parenthesized, + STATE(5017), 1, + sym_val_variable, + STATE(5408), 1, + sym__str_double_quotes, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5695), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(5748), 1, + sym__expr_unary_minus, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8000), 1, sym_val_range, - STATE(10128), 1, + STATE(8894), 1, sym__where_predicate, - STATE(10132), 1, + STATE(8895), 1, sym__expression, - ACTIONS(79), 2, + ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(83), 2, + ACTIONS(197), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(209), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(99), 2, + ACTIONS(213), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(105), 2, + ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(93), 4, + ACTIONS(207), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -362813,100 +322322,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [15600] = 42, + [15909] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(139), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(167), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(171), 1, anon_sym_DOT_DOT, - ACTIONS(77), 1, + ACTIONS(191), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(195), 1, anon_sym_null, - ACTIONS(89), 1, + ACTIONS(203), 1, anon_sym_DOT2, - ACTIONS(91), 1, + ACTIONS(205), 1, aux_sym__val_number_decimal_token3, - ACTIONS(97), 1, + ACTIONS(211), 1, anon_sym_0b, - ACTIONS(101), 1, + ACTIONS(215), 1, sym_val_date, - ACTIONS(103), 1, + ACTIONS(217), 1, anon_sym_DQUOTE, - ACTIONS(107), 1, + ACTIONS(221), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(109), 1, + ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(391), 1, + anon_sym_DASH, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3267), 1, + STATE(2841), 1, sym_comment, - STATE(4698), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4386), 1, sym__var, - STATE(5401), 1, + STATE(4586), 1, sym_val_number, - STATE(5567), 1, - sym_val_variable, - STATE(5573), 1, - sym_expr_parenthesized, - STATE(5769), 1, + STATE(4833), 1, sym__val_number, - STATE(6347), 1, - sym__expr_unary_minus, - STATE(6363), 1, + STATE(5005), 1, + sym_expr_parenthesized, + STATE(5017), 1, + sym_val_variable, + STATE(5408), 1, + sym__str_double_quotes, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5695), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(5748), 1, + sym__expr_unary_minus, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8000), 1, sym_val_range, - STATE(10133), 1, + STATE(8901), 1, sym__where_predicate, - STATE(10135), 1, + STATE(8911), 1, sym__expression, - ACTIONS(79), 2, + ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(83), 2, + ACTIONS(197), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(209), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(99), 2, + ACTIONS(213), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(105), 2, + ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(93), 4, + ACTIONS(207), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -362918,100 +322427,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [15747] = 42, + [16056] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(139), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(167), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(171), 1, anon_sym_DOT_DOT, - ACTIONS(77), 1, + ACTIONS(191), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(195), 1, anon_sym_null, - ACTIONS(89), 1, + ACTIONS(203), 1, anon_sym_DOT2, - ACTIONS(91), 1, + ACTIONS(205), 1, aux_sym__val_number_decimal_token3, - ACTIONS(97), 1, + ACTIONS(211), 1, anon_sym_0b, - ACTIONS(101), 1, + ACTIONS(215), 1, sym_val_date, - ACTIONS(103), 1, + ACTIONS(217), 1, anon_sym_DQUOTE, - ACTIONS(107), 1, + ACTIONS(221), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(109), 1, + ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(391), 1, + anon_sym_DASH, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3268), 1, + STATE(2842), 1, sym_comment, - STATE(4698), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4386), 1, sym__var, - STATE(5401), 1, + STATE(4586), 1, sym_val_number, - STATE(5567), 1, - sym_val_variable, - STATE(5573), 1, - sym_expr_parenthesized, - STATE(5769), 1, + STATE(4833), 1, sym__val_number, - STATE(6347), 1, - sym__expr_unary_minus, - STATE(6363), 1, + STATE(5005), 1, + sym_expr_parenthesized, + STATE(5017), 1, + sym_val_variable, + STATE(5408), 1, + sym__str_double_quotes, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5695), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(5748), 1, + sym__expr_unary_minus, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8000), 1, sym_val_range, - STATE(10136), 1, + STATE(8931), 1, sym__where_predicate, - STATE(10139), 1, + STATE(8939), 1, sym__expression, - ACTIONS(79), 2, + ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(83), 2, + ACTIONS(197), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(209), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(99), 2, + ACTIONS(213), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(105), 2, + ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(93), 4, + ACTIONS(207), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -363023,100 +322532,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [15894] = 42, + [16203] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(139), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(167), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(171), 1, anon_sym_DOT_DOT, - ACTIONS(77), 1, + ACTIONS(191), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(195), 1, anon_sym_null, - ACTIONS(89), 1, + ACTIONS(203), 1, anon_sym_DOT2, - ACTIONS(91), 1, + ACTIONS(205), 1, aux_sym__val_number_decimal_token3, - ACTIONS(97), 1, + ACTIONS(211), 1, anon_sym_0b, - ACTIONS(101), 1, + ACTIONS(215), 1, sym_val_date, - ACTIONS(103), 1, + ACTIONS(217), 1, anon_sym_DQUOTE, - ACTIONS(107), 1, + ACTIONS(221), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(109), 1, + ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(391), 1, + anon_sym_DASH, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3269), 1, + STATE(2843), 1, sym_comment, - STATE(4698), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4386), 1, sym__var, - STATE(5401), 1, + STATE(4586), 1, sym_val_number, - STATE(5567), 1, - sym_val_variable, - STATE(5573), 1, - sym_expr_parenthesized, - STATE(5769), 1, + STATE(4833), 1, sym__val_number, - STATE(6347), 1, - sym__expr_unary_minus, - STATE(6363), 1, + STATE(5005), 1, + sym_expr_parenthesized, + STATE(5017), 1, + sym_val_variable, + STATE(5408), 1, + sym__str_double_quotes, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5695), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(5748), 1, + sym__expr_unary_minus, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8000), 1, sym_val_range, - STATE(10141), 1, + STATE(8941), 1, sym__where_predicate, - STATE(10142), 1, + STATE(8966), 1, sym__expression, - ACTIONS(79), 2, + ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(83), 2, + ACTIONS(197), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(209), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(99), 2, + ACTIONS(213), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(105), 2, + ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(93), 4, + ACTIONS(207), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -363128,100 +322637,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [16041] = 42, + [16350] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(139), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(167), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(171), 1, anon_sym_DOT_DOT, - ACTIONS(77), 1, + ACTIONS(191), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(195), 1, anon_sym_null, - ACTIONS(89), 1, + ACTIONS(203), 1, anon_sym_DOT2, - ACTIONS(91), 1, + ACTIONS(205), 1, aux_sym__val_number_decimal_token3, - ACTIONS(97), 1, + ACTIONS(211), 1, anon_sym_0b, - ACTIONS(101), 1, + ACTIONS(215), 1, sym_val_date, - ACTIONS(103), 1, + ACTIONS(217), 1, anon_sym_DQUOTE, - ACTIONS(107), 1, + ACTIONS(221), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(109), 1, + ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(391), 1, + anon_sym_DASH, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3270), 1, + STATE(2844), 1, sym_comment, - STATE(4698), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4386), 1, sym__var, - STATE(5401), 1, + STATE(4586), 1, sym_val_number, - STATE(5567), 1, - sym_val_variable, - STATE(5573), 1, - sym_expr_parenthesized, - STATE(5769), 1, + STATE(4833), 1, sym__val_number, - STATE(6347), 1, - sym__expr_unary_minus, - STATE(6363), 1, + STATE(5005), 1, + sym_expr_parenthesized, + STATE(5017), 1, + sym_val_variable, + STATE(5408), 1, + sym__str_double_quotes, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5695), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(5748), 1, + sym__expr_unary_minus, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8000), 1, sym_val_range, - STATE(10143), 1, - sym__where_predicate, - STATE(10144), 1, + STATE(8387), 1, sym__expression, - ACTIONS(79), 2, + STATE(8967), 1, + sym__where_predicate, + ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(83), 2, + ACTIONS(197), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(209), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(99), 2, + ACTIONS(213), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(105), 2, + ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(93), 4, + ACTIONS(207), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -363233,100 +322742,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [16188] = 42, + [16497] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(139), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(167), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(171), 1, anon_sym_DOT_DOT, - ACTIONS(77), 1, + ACTIONS(191), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(195), 1, anon_sym_null, - ACTIONS(89), 1, + ACTIONS(203), 1, anon_sym_DOT2, - ACTIONS(91), 1, + ACTIONS(205), 1, aux_sym__val_number_decimal_token3, - ACTIONS(97), 1, + ACTIONS(211), 1, anon_sym_0b, - ACTIONS(101), 1, + ACTIONS(215), 1, sym_val_date, - ACTIONS(103), 1, + ACTIONS(217), 1, anon_sym_DQUOTE, - ACTIONS(107), 1, + ACTIONS(221), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(109), 1, + ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(391), 1, + anon_sym_DASH, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3271), 1, + STATE(2845), 1, sym_comment, - STATE(4698), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4386), 1, sym__var, - STATE(5401), 1, + STATE(4586), 1, sym_val_number, - STATE(5567), 1, - sym_val_variable, - STATE(5573), 1, - sym_expr_parenthesized, - STATE(5769), 1, + STATE(4833), 1, sym__val_number, - STATE(6347), 1, - sym__expr_unary_minus, - STATE(6363), 1, + STATE(5005), 1, + sym_expr_parenthesized, + STATE(5017), 1, + sym_val_variable, + STATE(5408), 1, + sym__str_double_quotes, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5695), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(5748), 1, + sym__expr_unary_minus, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8000), 1, sym_val_range, - STATE(10147), 1, + STATE(8389), 1, sym__where_predicate, - STATE(10148), 1, + STATE(8396), 1, sym__expression, - ACTIONS(79), 2, + ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(83), 2, + ACTIONS(197), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(209), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(99), 2, + ACTIONS(213), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(105), 2, + ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(93), 4, + ACTIONS(207), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -363338,7 +322847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [16335] = 42, + [16644] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -363369,43 +322878,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3272), 1, + STATE(2846), 1, sym_comment, - STATE(4698), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4428), 1, sym__var, - STATE(5401), 1, + STATE(4920), 1, sym_val_number, - STATE(5567), 1, + STATE(5094), 1, sym_val_variable, - STATE(5573), 1, + STATE(5154), 1, sym_expr_parenthesized, - STATE(5769), 1, + STATE(5285), 1, sym__val_number, - STATE(6347), 1, + STATE(5878), 1, sym__expr_unary_minus, - STATE(6363), 1, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5940), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8295), 1, sym_val_range, - STATE(10149), 1, + STATE(9686), 1, sym__where_predicate, - STATE(10150), 1, + STATE(9687), 1, sym__expression, ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, @@ -363422,7 +322931,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -363431,7 +322940,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -363443,100 +322952,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [16482] = 42, + [16791] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(139), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(167), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(171), 1, anon_sym_DOT_DOT, - ACTIONS(77), 1, + ACTIONS(191), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(195), 1, anon_sym_null, - ACTIONS(89), 1, + ACTIONS(203), 1, anon_sym_DOT2, - ACTIONS(91), 1, + ACTIONS(205), 1, aux_sym__val_number_decimal_token3, - ACTIONS(97), 1, + ACTIONS(211), 1, anon_sym_0b, - ACTIONS(101), 1, + ACTIONS(215), 1, sym_val_date, - ACTIONS(103), 1, + ACTIONS(217), 1, anon_sym_DQUOTE, - ACTIONS(107), 1, + ACTIONS(221), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(109), 1, + ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(391), 1, + anon_sym_DASH, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3273), 1, + STATE(2847), 1, sym_comment, - STATE(4698), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4386), 1, sym__var, - STATE(5401), 1, + STATE(4586), 1, sym_val_number, - STATE(5567), 1, - sym_val_variable, - STATE(5573), 1, - sym_expr_parenthesized, - STATE(5769), 1, + STATE(4833), 1, sym__val_number, - STATE(6347), 1, - sym__expr_unary_minus, - STATE(6363), 1, + STATE(5005), 1, + sym_expr_parenthesized, + STATE(5017), 1, + sym_val_variable, + STATE(5408), 1, + sym__str_double_quotes, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5695), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(5748), 1, + sym__expr_unary_minus, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8000), 1, sym_val_range, - STATE(10151), 1, + STATE(8397), 1, sym__where_predicate, - STATE(10152), 1, + STATE(8415), 1, sym__expression, - ACTIONS(79), 2, + ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(83), 2, + ACTIONS(197), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(209), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(99), 2, + ACTIONS(213), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(105), 2, + ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(93), 4, + ACTIONS(207), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -363548,100 +323057,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [16629] = 42, + [16938] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(139), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(167), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(171), 1, anon_sym_DOT_DOT, - ACTIONS(77), 1, + ACTIONS(191), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(195), 1, anon_sym_null, - ACTIONS(89), 1, + ACTIONS(203), 1, anon_sym_DOT2, - ACTIONS(91), 1, + ACTIONS(205), 1, aux_sym__val_number_decimal_token3, - ACTIONS(97), 1, + ACTIONS(211), 1, anon_sym_0b, - ACTIONS(101), 1, + ACTIONS(215), 1, sym_val_date, - ACTIONS(103), 1, + ACTIONS(217), 1, anon_sym_DQUOTE, - ACTIONS(107), 1, + ACTIONS(221), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(109), 1, + ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(391), 1, + anon_sym_DASH, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3274), 1, + STATE(2848), 1, sym_comment, - STATE(4698), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4386), 1, sym__var, - STATE(5401), 1, + STATE(4586), 1, sym_val_number, - STATE(5567), 1, - sym_val_variable, - STATE(5573), 1, - sym_expr_parenthesized, - STATE(5769), 1, + STATE(4833), 1, sym__val_number, - STATE(6347), 1, - sym__expr_unary_minus, - STATE(6363), 1, + STATE(5005), 1, + sym_expr_parenthesized, + STATE(5017), 1, + sym_val_variable, + STATE(5408), 1, + sym__str_double_quotes, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5695), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(5748), 1, + sym__expr_unary_minus, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8000), 1, sym_val_range, - STATE(10154), 1, + STATE(8417), 1, sym__where_predicate, - STATE(10155), 1, + STATE(8422), 1, sym__expression, - ACTIONS(79), 2, + ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(83), 2, + ACTIONS(197), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(209), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(99), 2, + ACTIONS(213), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(105), 2, + ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(93), 4, + ACTIONS(207), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -363653,7 +323162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [16776] = 42, + [17085] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(137), 1, @@ -363682,45 +323191,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3275), 1, + STATE(2849), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(5017), 1, sym_val_variable, - STATE(5462), 1, - sym__val_number, - STATE(5774), 1, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(8897), 1, + STATE(8427), 1, sym__where_predicate, - STATE(8913), 1, + STATE(8428), 1, sym__expression, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, @@ -363737,7 +323246,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -363746,7 +323255,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -363758,100 +323267,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [16923] = 42, + [17232] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(139), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(167), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(171), 1, anon_sym_DOT_DOT, - ACTIONS(77), 1, + ACTIONS(191), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(195), 1, anon_sym_null, - ACTIONS(89), 1, + ACTIONS(203), 1, anon_sym_DOT2, - ACTIONS(91), 1, + ACTIONS(205), 1, aux_sym__val_number_decimal_token3, - ACTIONS(97), 1, + ACTIONS(211), 1, anon_sym_0b, - ACTIONS(101), 1, + ACTIONS(215), 1, sym_val_date, - ACTIONS(103), 1, + ACTIONS(217), 1, anon_sym_DQUOTE, - ACTIONS(107), 1, + ACTIONS(221), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(109), 1, + ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(391), 1, + anon_sym_DASH, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3276), 1, + STATE(2850), 1, sym_comment, - STATE(4698), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4386), 1, sym__var, - STATE(5401), 1, + STATE(4586), 1, sym_val_number, - STATE(5567), 1, - sym_val_variable, - STATE(5573), 1, - sym_expr_parenthesized, - STATE(5769), 1, + STATE(4833), 1, sym__val_number, - STATE(6347), 1, - sym__expr_unary_minus, - STATE(6363), 1, + STATE(5005), 1, + sym_expr_parenthesized, + STATE(5017), 1, + sym_val_variable, + STATE(5408), 1, + sym__str_double_quotes, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5695), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(5748), 1, + sym__expr_unary_minus, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8000), 1, sym_val_range, - STATE(9625), 1, + STATE(8432), 1, sym__where_predicate, - STATE(9626), 1, + STATE(8433), 1, sym__expression, - ACTIONS(79), 2, + ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(83), 2, + ACTIONS(197), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(209), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(99), 2, + ACTIONS(213), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(105), 2, + ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(93), 4, + ACTIONS(207), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -363863,7 +323372,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [17070] = 42, + [17379] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(137), 1, @@ -363892,45 +323401,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3277), 1, + STATE(2851), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(5017), 1, sym_val_variable, - STATE(5462), 1, - sym__val_number, - STATE(5774), 1, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(8944), 1, + STATE(8435), 1, sym__where_predicate, - STATE(8945), 1, + STATE(8436), 1, sym__expression, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, @@ -363947,7 +323456,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -363956,7 +323465,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -363968,83 +323477,28 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [17217] = 4, + [17526] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3278), 1, + STATE(2852), 1, sym_comment, - ACTIONS(1059), 16, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1061), 44, - anon_sym_LBRACK, + ACTIONS(1035), 15, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_DOLLAR, + anon_sym_RBRACE, anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [17288] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(3279), 1, - sym_comment, - ACTIONS(1111), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1109), 57, + ACTIONS(1033), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -364057,8 +323511,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_module, anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_error, anon_sym_list, anon_sym_DASH, @@ -364073,7 +323525,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_match, - anon_sym_RBRACE, anon_sym_try, anon_sym_catch, anon_sym_return, @@ -364089,113 +323540,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, aux_sym__record_key_token2, - [17359] = 42, + [17597] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(137), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(167), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(59), 1, anon_sym_DOT_DOT, - ACTIONS(191), 1, + ACTIONS(77), 1, anon_sym_not, - ACTIONS(195), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(203), 1, + ACTIONS(89), 1, anon_sym_DOT2, - ACTIONS(205), 1, + ACTIONS(91), 1, aux_sym__val_number_decimal_token3, - ACTIONS(211), 1, + ACTIONS(97), 1, anon_sym_0b, - ACTIONS(215), 1, + ACTIONS(101), 1, sym_val_date, - ACTIONS(217), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(221), 1, + ACTIONS(107), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(223), 1, + ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, - anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3280), 1, + STATE(2853), 1, sym_comment, - STATE(4458), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4428), 1, sym__var, - STATE(5173), 1, + STATE(4920), 1, sym_val_number, - STATE(5308), 1, - sym_expr_parenthesized, - STATE(5404), 1, + STATE(5094), 1, sym_val_variable, - STATE(5462), 1, + STATE(5154), 1, + sym_expr_parenthesized, + STATE(5285), 1, sym__val_number, - STATE(5774), 1, + STATE(5878), 1, + sym__expr_unary_minus, + STATE(5888), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6183), 1, - sym__expr_unary_minus, - STATE(6785), 1, + STATE(5940), 1, + sym__inter_double_quotes, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8295), 1, sym_val_range, - STATE(8987), 1, + STATE(9002), 1, sym__where_predicate, - STATE(8998), 1, + STATE(9003), 1, sym__expression, - ACTIONS(193), 2, + ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(197), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(209), 2, + ACTIONS(95), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(213), 2, + ACTIONS(99), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(219), 2, + ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(207), 4, + ACTIONS(93), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -364207,74 +323649,74 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [17506] = 4, + [17744] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3281), 1, + STATE(2854), 1, sym_comment, - ACTIONS(1063), 16, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1065), 44, - anon_sym_LBRACK, + ACTIONS(1022), 15, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_DOLLAR, + anon_sym_RBRACE, anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [17577] = 42, + ACTIONS(1020), 45, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [17815] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(137), 1, @@ -364303,45 +323745,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3282), 1, + STATE(2855), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(5017), 1, sym_val_variable, - STATE(5462), 1, - sym__val_number, - STATE(5774), 1, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(9002), 1, + STATE(8447), 1, sym__where_predicate, - STATE(9011), 1, + STATE(8450), 1, sym__expression, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, @@ -364358,7 +323800,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -364367,7 +323809,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -364379,7 +323821,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [17724] = 42, + [17962] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(137), 1, @@ -364408,45 +323850,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3283), 1, + STATE(2856), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(5017), 1, sym_val_variable, - STATE(5462), 1, - sym__val_number, - STATE(5774), 1, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(9015), 1, + STATE(8451), 1, sym__where_predicate, - STATE(9016), 1, + STATE(8452), 1, sym__expression, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, @@ -364463,7 +323905,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -364472,7 +323914,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -364484,7 +323926,76 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [17871] = 42, + [18109] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6736), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6738), 1, + aux_sym__immediate_decimal_token2, + STATE(2857), 1, + sym_comment, + ACTIONS(2231), 14, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2229), 44, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + anon_sym_DOT_DOT2, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [18184] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(137), 1, @@ -364513,45 +324024,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3284), 1, + STATE(2858), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(5017), 1, sym_val_variable, - STATE(5462), 1, - sym__val_number, - STATE(5774), 1, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(9089), 1, + STATE(8456), 1, sym__where_predicate, - STATE(9097), 1, + STATE(8457), 1, sym__expression, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, @@ -364568,7 +324079,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -364577,7 +324088,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -364589,274 +324100,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [18018] = 42, + [18331] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(139), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(167), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(171), 1, anon_sym_DOT_DOT, - ACTIONS(77), 1, + ACTIONS(191), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(195), 1, anon_sym_null, - ACTIONS(89), 1, + ACTIONS(203), 1, anon_sym_DOT2, - ACTIONS(91), 1, + ACTIONS(205), 1, aux_sym__val_number_decimal_token3, - ACTIONS(97), 1, - anon_sym_0b, - ACTIONS(101), 1, - sym_val_date, - ACTIONS(103), 1, - anon_sym_DQUOTE, - ACTIONS(107), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(109), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, - anon_sym_DOLLAR, - ACTIONS(7118), 1, - sym_identifier, - ACTIONS(7120), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, - aux_sym__val_number_decimal_token2, - STATE(3285), 1, - sym_comment, - STATE(4698), 1, - sym__val_number_decimal, - STATE(4886), 1, - sym__var, - STATE(5401), 1, - sym_val_number, - STATE(5567), 1, - sym_val_variable, - STATE(5573), 1, - sym_expr_parenthesized, - STATE(5769), 1, - sym__val_number, - STATE(6347), 1, - sym__expr_unary_minus, - STATE(6363), 1, - sym__inter_single_quotes, - STATE(6365), 1, - sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, - sym__expr_binary_expression, - STATE(8689), 1, - sym_val_range, - STATE(9668), 1, - sym__where_predicate, - STATE(9669), 1, - sym__expression, - ACTIONS(79), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(95), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(99), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(105), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(6379), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(93), 4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - STATE(6374), 11, - sym_val_nothing, - sym_val_bool, - 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, - [18165] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7242), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7244), 1, - aux_sym_unquoted_token2, - STATE(3286), 1, - sym_comment, - ACTIONS(936), 15, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, + ACTIONS(211), 1, anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(938), 43, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(215), 1, sym_val_date, + ACTIONS(217), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(221), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - [18240] = 42, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(59), 1, - anon_sym_DOT_DOT, - ACTIONS(77), 1, - anon_sym_not, - ACTIONS(81), 1, - anon_sym_null, - ACTIONS(89), 1, - anon_sym_DOT2, - ACTIONS(91), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(97), 1, - anon_sym_0b, - ACTIONS(101), 1, - sym_val_date, - ACTIONS(103), 1, - anon_sym_DQUOTE, - ACTIONS(107), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(109), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3287), 1, + STATE(2859), 1, sym_comment, - STATE(4698), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4386), 1, sym__var, - STATE(5401), 1, + STATE(4586), 1, sym_val_number, - STATE(5567), 1, - sym_val_variable, - STATE(5573), 1, - sym_expr_parenthesized, - STATE(5769), 1, + STATE(4833), 1, sym__val_number, - STATE(6347), 1, - sym__expr_unary_minus, - STATE(6363), 1, + STATE(5005), 1, + sym_expr_parenthesized, + STATE(5017), 1, + sym_val_variable, + STATE(5408), 1, + sym__str_double_quotes, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5695), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(5748), 1, + sym__expr_unary_minus, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8000), 1, sym_val_range, - STATE(9672), 1, + STATE(8461), 1, sym__where_predicate, - STATE(9674), 1, + STATE(8465), 1, sym__expression, - ACTIONS(79), 2, + ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(83), 2, + ACTIONS(197), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(209), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(99), 2, + ACTIONS(213), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(105), 2, + ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(93), 4, + ACTIONS(207), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -364868,100 +324205,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [18387] = 42, + [18478] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(139), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(167), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(171), 1, anon_sym_DOT_DOT, - ACTIONS(77), 1, + ACTIONS(191), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(195), 1, anon_sym_null, - ACTIONS(89), 1, + ACTIONS(203), 1, anon_sym_DOT2, - ACTIONS(91), 1, + ACTIONS(205), 1, aux_sym__val_number_decimal_token3, - ACTIONS(97), 1, + ACTIONS(211), 1, anon_sym_0b, - ACTIONS(101), 1, + ACTIONS(215), 1, sym_val_date, - ACTIONS(103), 1, + ACTIONS(217), 1, anon_sym_DQUOTE, - ACTIONS(107), 1, + ACTIONS(221), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(109), 1, + ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(391), 1, + anon_sym_DASH, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3288), 1, + STATE(2860), 1, sym_comment, - STATE(4698), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4386), 1, sym__var, - STATE(5401), 1, + STATE(4586), 1, sym_val_number, - STATE(5567), 1, - sym_val_variable, - STATE(5573), 1, - sym_expr_parenthesized, - STATE(5769), 1, + STATE(4833), 1, sym__val_number, - STATE(6347), 1, - sym__expr_unary_minus, - STATE(6363), 1, + STATE(5005), 1, + sym_expr_parenthesized, + STATE(5017), 1, + sym_val_variable, + STATE(5408), 1, + sym__str_double_quotes, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5695), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(5748), 1, + sym__expr_unary_minus, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8000), 1, sym_val_range, - STATE(10074), 1, + STATE(8470), 1, sym__where_predicate, - STATE(10075), 1, + STATE(8471), 1, sym__expression, - ACTIONS(79), 2, + ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(83), 2, + ACTIONS(197), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(209), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(99), 2, + ACTIONS(213), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(105), 2, + ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(93), 4, + ACTIONS(207), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -364973,100 +324310,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [18534] = 42, + [18625] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(139), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(167), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(171), 1, anon_sym_DOT_DOT, - ACTIONS(77), 1, + ACTIONS(191), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(195), 1, anon_sym_null, - ACTIONS(89), 1, + ACTIONS(203), 1, anon_sym_DOT2, - ACTIONS(91), 1, + ACTIONS(205), 1, aux_sym__val_number_decimal_token3, - ACTIONS(97), 1, + ACTIONS(211), 1, anon_sym_0b, - ACTIONS(101), 1, + ACTIONS(215), 1, sym_val_date, - ACTIONS(103), 1, + ACTIONS(217), 1, anon_sym_DQUOTE, - ACTIONS(107), 1, + ACTIONS(221), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(109), 1, + ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(391), 1, + anon_sym_DASH, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3289), 1, + STATE(2861), 1, sym_comment, - STATE(4698), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4386), 1, sym__var, - STATE(5401), 1, + STATE(4586), 1, sym_val_number, - STATE(5567), 1, - sym_val_variable, - STATE(5573), 1, - sym_expr_parenthesized, - STATE(5769), 1, + STATE(4833), 1, sym__val_number, - STATE(6347), 1, - sym__expr_unary_minus, - STATE(6363), 1, + STATE(5005), 1, + sym_expr_parenthesized, + STATE(5017), 1, + sym_val_variable, + STATE(5408), 1, + sym__str_double_quotes, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5695), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(5748), 1, + sym__expr_unary_minus, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8000), 1, sym_val_range, - STATE(9675), 1, + STATE(8472), 1, sym__where_predicate, - STATE(9676), 1, + STATE(8474), 1, sym__expression, - ACTIONS(79), 2, + ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(83), 2, + ACTIONS(197), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(209), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(99), 2, + ACTIONS(213), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(105), 2, + ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(93), 4, + ACTIONS(207), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -365078,100 +324415,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [18681] = 42, + [18772] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(139), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(167), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(171), 1, anon_sym_DOT_DOT, - ACTIONS(77), 1, + ACTIONS(191), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(195), 1, anon_sym_null, - ACTIONS(89), 1, + ACTIONS(203), 1, anon_sym_DOT2, - ACTIONS(91), 1, + ACTIONS(205), 1, aux_sym__val_number_decimal_token3, - ACTIONS(97), 1, + ACTIONS(211), 1, anon_sym_0b, - ACTIONS(101), 1, + ACTIONS(215), 1, sym_val_date, - ACTIONS(103), 1, + ACTIONS(217), 1, anon_sym_DQUOTE, - ACTIONS(107), 1, + ACTIONS(221), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(109), 1, + ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(391), 1, + anon_sym_DASH, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3290), 1, + STATE(2862), 1, sym_comment, - STATE(4698), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4386), 1, sym__var, - STATE(5401), 1, + STATE(4586), 1, sym_val_number, - STATE(5567), 1, - sym_val_variable, - STATE(5573), 1, - sym_expr_parenthesized, - STATE(5769), 1, + STATE(4833), 1, sym__val_number, - STATE(6347), 1, - sym__expr_unary_minus, - STATE(6363), 1, + STATE(5005), 1, + sym_expr_parenthesized, + STATE(5017), 1, + sym_val_variable, + STATE(5408), 1, + sym__str_double_quotes, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5695), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(5748), 1, + sym__expr_unary_minus, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8000), 1, sym_val_range, - STATE(9677), 1, + STATE(8475), 1, sym__where_predicate, - STATE(9679), 1, + STATE(8476), 1, sym__expression, - ACTIONS(79), 2, + ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(83), 2, + ACTIONS(197), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(209), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(99), 2, + ACTIONS(213), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(105), 2, + ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(93), 4, + ACTIONS(207), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -365183,100 +324520,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [18828] = 42, + [18919] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(139), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(167), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(171), 1, anon_sym_DOT_DOT, - ACTIONS(77), 1, + ACTIONS(191), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(195), 1, anon_sym_null, - ACTIONS(89), 1, + ACTIONS(203), 1, anon_sym_DOT2, - ACTIONS(91), 1, + ACTIONS(205), 1, aux_sym__val_number_decimal_token3, - ACTIONS(97), 1, + ACTIONS(211), 1, anon_sym_0b, - ACTIONS(101), 1, + ACTIONS(215), 1, sym_val_date, - ACTIONS(103), 1, + ACTIONS(217), 1, anon_sym_DQUOTE, - ACTIONS(107), 1, + ACTIONS(221), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(109), 1, + ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(391), 1, + anon_sym_DASH, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3291), 1, + STATE(2863), 1, sym_comment, - STATE(4698), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4386), 1, sym__var, - STATE(5401), 1, + STATE(4586), 1, sym_val_number, - STATE(5567), 1, - sym_val_variable, - STATE(5573), 1, - sym_expr_parenthesized, - STATE(5769), 1, + STATE(4833), 1, sym__val_number, - STATE(6347), 1, - sym__expr_unary_minus, - STATE(6363), 1, + STATE(5005), 1, + sym_expr_parenthesized, + STATE(5017), 1, + sym_val_variable, + STATE(5408), 1, + sym__str_double_quotes, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5695), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(5748), 1, + sym__expr_unary_minus, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8000), 1, sym_val_range, - STATE(10046), 1, + STATE(8477), 1, sym__where_predicate, - STATE(10048), 1, + STATE(8479), 1, sym__expression, - ACTIONS(79), 2, + ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(83), 2, + ACTIONS(197), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(209), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(99), 2, + ACTIONS(213), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(105), 2, + ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(93), 4, + ACTIONS(207), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -365288,100 +324625,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [18975] = 42, + [19066] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(139), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(167), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(171), 1, anon_sym_DOT_DOT, - ACTIONS(77), 1, + ACTIONS(191), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(195), 1, anon_sym_null, - ACTIONS(89), 1, + ACTIONS(203), 1, anon_sym_DOT2, - ACTIONS(91), 1, + ACTIONS(205), 1, aux_sym__val_number_decimal_token3, - ACTIONS(97), 1, + ACTIONS(211), 1, anon_sym_0b, - ACTIONS(101), 1, + ACTIONS(215), 1, sym_val_date, - ACTIONS(103), 1, + ACTIONS(217), 1, anon_sym_DQUOTE, - ACTIONS(107), 1, + ACTIONS(221), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(109), 1, + ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(391), 1, + anon_sym_DASH, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3292), 1, + STATE(2864), 1, sym_comment, - STATE(4698), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4386), 1, sym__var, - STATE(5401), 1, + STATE(4586), 1, sym_val_number, - STATE(5567), 1, - sym_val_variable, - STATE(5573), 1, - sym_expr_parenthesized, - STATE(5769), 1, + STATE(4833), 1, sym__val_number, - STATE(6347), 1, - sym__expr_unary_minus, - STATE(6363), 1, + STATE(5005), 1, + sym_expr_parenthesized, + STATE(5017), 1, + sym_val_variable, + STATE(5408), 1, + sym__str_double_quotes, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5695), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(5748), 1, + sym__expr_unary_minus, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8000), 1, sym_val_range, - STATE(10042), 1, + STATE(8480), 1, sym__where_predicate, - STATE(10043), 1, + STATE(8481), 1, sym__expression, - ACTIONS(79), 2, + ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(83), 2, + ACTIONS(197), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(209), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(99), 2, + ACTIONS(213), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(105), 2, + ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(93), 4, + ACTIONS(207), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -365393,100 +324730,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [19122] = 42, + [19213] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(139), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(167), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(171), 1, anon_sym_DOT_DOT, - ACTIONS(77), 1, + ACTIONS(191), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(195), 1, anon_sym_null, - ACTIONS(89), 1, + ACTIONS(203), 1, anon_sym_DOT2, - ACTIONS(91), 1, + ACTIONS(205), 1, aux_sym__val_number_decimal_token3, - ACTIONS(97), 1, + ACTIONS(211), 1, anon_sym_0b, - ACTIONS(101), 1, + ACTIONS(215), 1, sym_val_date, - ACTIONS(103), 1, + ACTIONS(217), 1, anon_sym_DQUOTE, - ACTIONS(107), 1, + ACTIONS(221), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(109), 1, + ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(391), 1, + anon_sym_DASH, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3293), 1, + STATE(2865), 1, sym_comment, - STATE(4698), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4386), 1, sym__var, - STATE(5401), 1, + STATE(4586), 1, sym_val_number, - STATE(5567), 1, - sym_val_variable, - STATE(5573), 1, - sym_expr_parenthesized, - STATE(5769), 1, + STATE(4833), 1, sym__val_number, - STATE(6347), 1, - sym__expr_unary_minus, - STATE(6363), 1, + STATE(5005), 1, + sym_expr_parenthesized, + STATE(5017), 1, + sym_val_variable, + STATE(5408), 1, + sym__str_double_quotes, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5695), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(5748), 1, + sym__expr_unary_minus, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8000), 1, sym_val_range, - STATE(10050), 1, + STATE(8485), 1, sym__where_predicate, - STATE(10053), 1, + STATE(8486), 1, sym__expression, - ACTIONS(79), 2, + ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(83), 2, + ACTIONS(197), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(209), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(99), 2, + ACTIONS(213), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(105), 2, + ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(93), 4, + ACTIONS(207), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -365498,143 +324835,143 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [19269] = 5, + [19360] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7246), 1, + ACTIONS(6740), 1, anon_sym_QMARK2, - STATE(3294), 1, + STATE(2866), 1, sym_comment, - ACTIONS(1070), 16, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1072), 43, - anon_sym_LBRACK, + ACTIONS(1026), 14, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [19342] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7246), 1, - anon_sym_QMARK2, - STATE(3295), 1, - sym_comment, - ACTIONS(1070), 16, - anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(1024), 45, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, anon_sym_in, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, + anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1072), 43, - anon_sym_LBRACK, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [19433] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6740), 1, + anon_sym_QMARK2, + STATE(2867), 1, + sym_comment, + ACTIONS(1026), 14, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [19415] = 42, + ACTIONS(1024), 45, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [19506] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -365665,43 +325002,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3296), 1, + STATE(2868), 1, sym_comment, - STATE(4698), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4428), 1, sym__var, - STATE(5401), 1, + STATE(4920), 1, sym_val_number, - STATE(5567), 1, + STATE(5094), 1, sym_val_variable, - STATE(5573), 1, + STATE(5154), 1, sym_expr_parenthesized, - STATE(5769), 1, + STATE(5285), 1, sym__val_number, - STATE(6347), 1, + STATE(5878), 1, sym__expr_unary_minus, - STATE(6363), 1, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5940), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8295), 1, sym_val_range, - STATE(9643), 1, + STATE(9149), 1, sym__where_predicate, - STATE(9644), 1, + STATE(9151), 1, sym__expression, ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, @@ -365718,7 +325055,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -365727,7 +325064,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -365739,7 +325076,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [19562] = 42, + [19653] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -365770,43 +325107,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3297), 1, + STATE(2869), 1, sym_comment, - STATE(4698), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4428), 1, sym__var, - STATE(5401), 1, + STATE(4920), 1, sym_val_number, - STATE(5567), 1, + STATE(5094), 1, sym_val_variable, - STATE(5573), 1, + STATE(5154), 1, sym_expr_parenthesized, - STATE(5769), 1, + STATE(5285), 1, sym__val_number, - STATE(6347), 1, + STATE(5878), 1, sym__expr_unary_minus, - STATE(6363), 1, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5940), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8295), 1, sym_val_range, - STATE(10062), 1, + STATE(9156), 1, sym__where_predicate, - STATE(10064), 1, + STATE(9164), 1, sym__expression, ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, @@ -365823,7 +325160,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -365832,7 +325169,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -365844,7 +325181,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [19709] = 42, + [19800] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -365875,43 +325212,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3298), 1, + STATE(2870), 1, sym_comment, - STATE(4698), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4428), 1, sym__var, - STATE(5401), 1, + STATE(4920), 1, sym_val_number, - STATE(5567), 1, + STATE(5094), 1, sym_val_variable, - STATE(5573), 1, + STATE(5154), 1, sym_expr_parenthesized, - STATE(5769), 1, + STATE(5285), 1, sym__val_number, - STATE(6347), 1, + STATE(5878), 1, sym__expr_unary_minus, - STATE(6363), 1, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5940), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8295), 1, sym_val_range, - STATE(9645), 1, + STATE(9641), 1, sym__where_predicate, - STATE(9647), 1, + STATE(9643), 1, sym__expression, ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, @@ -365928,7 +325265,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -365937,7 +325274,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -365949,7 +325286,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [19856] = 42, + [19947] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -365980,43 +325317,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3299), 1, + STATE(2871), 1, sym_comment, - STATE(4698), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4428), 1, sym__var, - STATE(5401), 1, + STATE(4920), 1, sym_val_number, - STATE(5567), 1, + STATE(5094), 1, sym_val_variable, - STATE(5573), 1, + STATE(5154), 1, sym_expr_parenthesized, - STATE(5769), 1, + STATE(5285), 1, sym__val_number, - STATE(6347), 1, + STATE(5878), 1, sym__expr_unary_minus, - STATE(6363), 1, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5940), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8295), 1, sym_val_range, - STATE(9648), 1, + STATE(9169), 1, sym__where_predicate, - STATE(9651), 1, + STATE(9177), 1, sym__expression, ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, @@ -366033,7 +325370,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -366042,7 +325379,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -366054,207 +325391,235 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [20003] = 42, + [20094] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(39), 1, + STATE(2872), 1, + sym_comment, + ACTIONS(1033), 16, + anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(59), 1, + anon_sym_in, anon_sym_DOT_DOT, - ACTIONS(77), 1, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_not, - ACTIONS(81), 1, - anon_sym_null, - ACTIONS(89), 1, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, anon_sym_DOT2, - ACTIONS(91), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(97), 1, anon_sym_0b, - ACTIONS(101), 1, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1035), 44, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, - ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(107), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + [20165] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2873), 1, + sym_comment, + ACTIONS(1020), 16, anon_sym_DOLLAR, - ACTIONS(7118), 1, - sym_identifier, - ACTIONS(7120), 1, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, - aux_sym__val_number_decimal_token2, - STATE(3300), 1, - sym_comment, - STATE(4698), 1, - sym__val_number_decimal, - STATE(4886), 1, - sym__var, - STATE(5401), 1, - sym_val_number, - STATE(5567), 1, - sym_val_variable, - STATE(5573), 1, - sym_expr_parenthesized, - STATE(5769), 1, - sym__val_number, - STATE(6347), 1, - sym__expr_unary_minus, - STATE(6363), 1, - sym__inter_single_quotes, - STATE(6365), 1, - sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, - sym__expr_binary_expression, - STATE(8689), 1, - sym_val_range, - STATE(9653), 1, - sym__where_predicate, - STATE(9654), 1, - sym__expression, - ACTIONS(79), 2, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1022), 44, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(83), 2, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(99), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(105), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(6379), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(93), 4, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, aux_sym__val_number_token5, - STATE(6374), 11, - sym_val_nothing, - sym_val_bool, - 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, - [20150] = 42, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [20236] = 41, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(3100), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(3102), 1, + anon_sym_DOLLAR, + ACTIONS(3128), 1, + anon_sym_0b, + ACTIONS(3134), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3136), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3178), 1, + anon_sym_DQUOTE, + ACTIONS(3655), 1, + anon_sym_COLON, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(3661), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(3679), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6742), 1, + sym_identifier, + ACTIONS(6744), 1, anon_sym_DOT_DOT, - ACTIONS(77), 1, + ACTIONS(6746), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(6750), 1, anon_sym_null, - ACTIONS(89), 1, - anon_sym_DOT2, - ACTIONS(91), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(97), 1, - anon_sym_0b, - ACTIONS(101), 1, - sym_val_date, - ACTIONS(103), 1, - anon_sym_DQUOTE, - ACTIONS(107), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(109), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, - anon_sym_DOLLAR, - ACTIONS(7118), 1, - sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6754), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6756), 1, aux_sym__val_number_decimal_token2, - STATE(3301), 1, + ACTIONS(6758), 1, + anon_sym_DOT2, + ACTIONS(6760), 1, + sym_val_date, + STATE(2874), 1, sym_comment, - STATE(4698), 1, - sym__val_number_decimal, - STATE(4886), 1, + STATE(3929), 1, sym__var, - STATE(5401), 1, - sym_val_number, - STATE(5567), 1, - sym_val_variable, - STATE(5573), 1, - sym_expr_parenthesized, - STATE(5769), 1, + STATE(4922), 1, sym__val_number, - STATE(6347), 1, - sym__expr_unary_minus, - STATE(6363), 1, + STATE(5067), 1, + sym__str_double_quotes, + STATE(5301), 1, + sym__val_number_decimal, + STATE(5725), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5726), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(5745), 1, + sym__expr_unary_minus, + STATE(5903), 1, + sym_val_variable, + STATE(5960), 1, + sym_expr_parenthesized, + STATE(6383), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(6728), 1, sym_val_range, - STATE(10076), 1, - sym__where_predicate, - STATE(10077), 1, + STATE(10021), 1, sym__expression, - ACTIONS(79), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(95), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(99), 2, + ACTIONS(3130), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(105), 2, + ACTIONS(3180), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + ACTIONS(5665), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(6748), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(6752), 2, + anon_sym_true, + anon_sym_false, + STATE(5743), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(93), 4, + ACTIONS(3124), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5659), 12, sym_val_nothing, sym_val_bool, + sym_val_number, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -366264,7 +325629,74 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [20297] = 42, + [20381] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(2875), 1, + sym_comment, + ACTIONS(3723), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(3721), 57, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + anon_sym_DOT_DOT2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [20452] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(137), 1, @@ -366293,45 +325725,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3302), 1, + STATE(2876), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(5017), 1, sym_val_variable, - STATE(5462), 1, - sym__val_number, - STATE(5774), 1, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(9256), 1, + STATE(8603), 1, sym__where_predicate, - STATE(9280), 1, + STATE(8604), 1, sym__expression, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, @@ -366348,7 +325780,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -366357,7 +325789,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -366369,100 +325801,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [20444] = 42, + [20599] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(137), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(167), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(59), 1, anon_sym_DOT_DOT, - ACTIONS(191), 1, + ACTIONS(77), 1, anon_sym_not, - ACTIONS(195), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(203), 1, + ACTIONS(89), 1, anon_sym_DOT2, - ACTIONS(205), 1, + ACTIONS(91), 1, aux_sym__val_number_decimal_token3, - ACTIONS(211), 1, + ACTIONS(97), 1, anon_sym_0b, - ACTIONS(215), 1, + ACTIONS(101), 1, sym_val_date, - ACTIONS(217), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(221), 1, + ACTIONS(107), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(223), 1, + ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, - anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3303), 1, + STATE(2877), 1, sym_comment, - STATE(4458), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4428), 1, sym__var, - STATE(5173), 1, + STATE(4920), 1, sym_val_number, - STATE(5308), 1, - sym_expr_parenthesized, - STATE(5404), 1, + STATE(5094), 1, sym_val_variable, - STATE(5462), 1, + STATE(5154), 1, + sym_expr_parenthesized, + STATE(5285), 1, sym__val_number, - STATE(5774), 1, + STATE(5878), 1, + sym__expr_unary_minus, + STATE(5888), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6183), 1, - sym__expr_unary_minus, - STATE(6785), 1, + STATE(5940), 1, + sym__inter_double_quotes, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8295), 1, sym_val_range, - STATE(9287), 1, + STATE(9245), 1, sym__where_predicate, - STATE(9311), 1, + STATE(9290), 1, sym__expression, - ACTIONS(193), 2, + ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(197), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(209), 2, + ACTIONS(95), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(213), 2, + ACTIONS(99), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(219), 2, + ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(207), 4, + ACTIONS(93), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -366474,7 +325906,76 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [20591] = 42, + [20746] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6762), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6764), 1, + aux_sym_unquoted_token2, + STATE(2878), 1, + sym_comment, + ACTIONS(920), 15, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(922), 43, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [20821] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(137), 1, @@ -366503,45 +326004,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3304), 1, + STATE(2879), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(5017), 1, sym_val_variable, - STATE(5462), 1, - sym__val_number, - STATE(5774), 1, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(9315), 1, + STATE(8605), 1, sym__where_predicate, - STATE(9316), 1, + STATE(8606), 1, sym__expression, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, @@ -366558,7 +326059,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -366567,7 +326068,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -366579,7 +326080,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [20738] = 42, + [20968] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(137), 1, @@ -366608,45 +326109,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3305), 1, + STATE(2880), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(5017), 1, sym_val_variable, - STATE(5462), 1, - sym__val_number, - STATE(5774), 1, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(9324), 1, + STATE(8607), 1, sym__where_predicate, - STATE(9332), 1, + STATE(8608), 1, sym__expression, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, @@ -366663,7 +326164,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -366672,7 +326173,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -366684,7 +326185,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [20885] = 42, + [21115] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(137), 1, @@ -366713,45 +326214,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3306), 1, + STATE(2881), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(5017), 1, sym_val_variable, - STATE(5462), 1, - sym__val_number, - STATE(5774), 1, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(9354), 1, + STATE(8610), 1, sym__where_predicate, - STATE(9404), 1, + STATE(8615), 1, sym__expression, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, @@ -366768,7 +326269,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -366777,7 +326278,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -366789,7 +326290,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [21032] = 42, + [21262] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(137), 1, @@ -366818,45 +326319,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3307), 1, + STATE(2882), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(5017), 1, sym_val_variable, - STATE(5462), 1, - sym__val_number, - STATE(5774), 1, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(8911), 1, + STATE(8617), 1, sym__where_predicate, - STATE(9334), 1, + STATE(8618), 1, sym__expression, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, @@ -366873,7 +326374,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -366882,7 +326383,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -366894,100 +326395,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [21179] = 42, + [21409] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(139), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(167), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(171), 1, anon_sym_DOT_DOT, - ACTIONS(77), 1, + ACTIONS(191), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(195), 1, anon_sym_null, - ACTIONS(89), 1, + ACTIONS(203), 1, anon_sym_DOT2, - ACTIONS(91), 1, + ACTIONS(205), 1, aux_sym__val_number_decimal_token3, - ACTIONS(97), 1, + ACTIONS(211), 1, anon_sym_0b, - ACTIONS(101), 1, + ACTIONS(215), 1, sym_val_date, - ACTIONS(103), 1, + ACTIONS(217), 1, anon_sym_DQUOTE, - ACTIONS(107), 1, + ACTIONS(221), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(109), 1, + ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(391), 1, + anon_sym_DASH, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3308), 1, + STATE(2883), 1, sym_comment, - STATE(4698), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4386), 1, sym__var, - STATE(5401), 1, + STATE(4586), 1, sym_val_number, - STATE(5567), 1, - sym_val_variable, - STATE(5573), 1, - sym_expr_parenthesized, - STATE(5769), 1, + STATE(4833), 1, sym__val_number, - STATE(6347), 1, - sym__expr_unary_minus, - STATE(6363), 1, + STATE(5005), 1, + sym_expr_parenthesized, + STATE(5017), 1, + sym_val_variable, + STATE(5408), 1, + sym__str_double_quotes, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5695), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(5748), 1, + sym__expr_unary_minus, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8000), 1, sym_val_range, - STATE(9573), 1, + STATE(8619), 1, sym__where_predicate, - STATE(9576), 1, + STATE(8620), 1, sym__expression, - ACTIONS(79), 2, + ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(83), 2, + ACTIONS(197), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(209), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(99), 2, + ACTIONS(213), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(105), 2, + ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(93), 4, + ACTIONS(207), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -366999,7 +326500,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [21326] = 42, + [21556] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(137), 1, @@ -367028,46 +326529,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3309), 1, + STATE(2884), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(5017), 1, sym_val_variable, - STATE(5462), 1, - sym__val_number, - STATE(5774), 1, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(8929), 1, - sym__expression, - STATE(9377), 1, + STATE(8621), 1, sym__where_predicate, + STATE(8623), 1, + sym__expression, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -367083,7 +326584,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -367092,7 +326593,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -367104,7 +326605,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [21473] = 42, + [21703] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(137), 1, @@ -367133,45 +326634,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3310), 1, + STATE(2885), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(5017), 1, sym_val_variable, - STATE(5462), 1, - sym__val_number, - STATE(5774), 1, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(9147), 1, + STATE(8624), 1, sym__where_predicate, - STATE(9174), 1, + STATE(8625), 1, sym__expression, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, @@ -367188,7 +326689,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -367197,7 +326698,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -367209,7 +326710,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [21620] = 42, + [21850] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(137), 1, @@ -367238,45 +326739,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3311), 1, + STATE(2886), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(5017), 1, sym_val_variable, - STATE(5462), 1, - sym__val_number, - STATE(5774), 1, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(9224), 1, + STATE(8626), 1, sym__where_predicate, - STATE(9262), 1, + STATE(8627), 1, sym__expression, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, @@ -367293,7 +326794,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -367302,7 +326803,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -367314,7 +326815,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [21767] = 42, + [21997] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(137), 1, @@ -367343,45 +326844,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3312), 1, + STATE(2887), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(5017), 1, sym_val_variable, - STATE(5462), 1, - sym__val_number, - STATE(5774), 1, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(9359), 1, + STATE(8629), 1, sym__where_predicate, - STATE(9366), 1, + STATE(8631), 1, sym__expression, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, @@ -367398,7 +326899,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -367407,7 +326908,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -367419,7 +326920,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [21914] = 42, + [22144] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(137), 1, @@ -367448,45 +326949,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3313), 1, + STATE(2888), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(5017), 1, sym_val_variable, - STATE(5462), 1, - sym__val_number, - STATE(5774), 1, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(8863), 1, + STATE(8633), 1, sym__where_predicate, - STATE(8873), 1, + STATE(8640), 1, sym__expression, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, @@ -367503,7 +327004,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -367512,7 +327013,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -367524,7 +327025,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [22061] = 42, + [22291] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(137), 1, @@ -367553,45 +327054,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3314), 1, + STATE(2889), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(5017), 1, sym_val_variable, - STATE(5462), 1, - sym__val_number, - STATE(5774), 1, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(8876), 1, + STATE(8641), 1, sym__where_predicate, - STATE(8967), 1, + STATE(8642), 1, sym__expression, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, @@ -367608,7 +327109,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -367617,7 +327118,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -367629,7 +327130,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [22208] = 42, + [22438] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(137), 1, @@ -367658,45 +327159,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3315), 1, + STATE(2890), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(5017), 1, sym_val_variable, - STATE(5462), 1, - sym__val_number, - STATE(5774), 1, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(8933), 1, + STATE(8646), 1, sym__where_predicate, - STATE(8948), 1, + STATE(8648), 1, sym__expression, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, @@ -367713,7 +327214,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -367722,7 +327223,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -367734,62 +327235,61 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [22355] = 4, - ACTIONS(113), 1, + [22585] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3316), 1, + ACTIONS(6766), 1, + anon_sym_QMARK2, + STATE(2891), 1, sym_comment, - ACTIONS(4002), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(4000), 57, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_RBRACK, - anon_sym_LPAREN, + ACTIONS(1024), 16, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, + anon_sym_GT, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - anon_sym_DOT_DOT2, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1026), 43, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -367797,209 +327297,174 @@ 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, - aux_sym__record_key_token2, - [22426] = 42, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [22658] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(6766), 1, + anon_sym_QMARK2, + STATE(2892), 1, + sym_comment, + ACTIONS(1024), 16, + anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(59), 1, + anon_sym_in, anon_sym_DOT_DOT, - ACTIONS(77), 1, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_not, - ACTIONS(81), 1, - anon_sym_null, - ACTIONS(89), 1, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, anon_sym_DOT2, - ACTIONS(91), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(97), 1, anon_sym_0b, - ACTIONS(101), 1, - sym_val_date, - ACTIONS(103), 1, - anon_sym_DQUOTE, - ACTIONS(107), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(109), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, - anon_sym_DOLLAR, - ACTIONS(7118), 1, - sym_identifier, - ACTIONS(7120), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, - aux_sym__val_number_decimal_token2, - STATE(3317), 1, - sym_comment, - STATE(4698), 1, - sym__val_number_decimal, - STATE(4886), 1, - sym__var, - STATE(5401), 1, - sym_val_number, - STATE(5567), 1, - sym_val_variable, - STATE(5573), 1, - sym_expr_parenthesized, - STATE(5769), 1, - sym__val_number, - STATE(6347), 1, - sym__expr_unary_minus, - STATE(6363), 1, - sym__inter_single_quotes, - STATE(6365), 1, - sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, - sym__expr_binary_expression, - STATE(8689), 1, - sym_val_range, - STATE(9655), 1, - sym__where_predicate, - STATE(9656), 1, - sym__expression, - ACTIONS(79), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1026), 43, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(83), 2, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(99), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(105), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(6379), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(93), 4, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, aux_sym__val_number_token5, - STATE(6374), 11, - sym_val_nothing, - sym_val_bool, - 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, - [22573] = 42, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [22731] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(139), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(167), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(171), 1, anon_sym_DOT_DOT, - ACTIONS(77), 1, + ACTIONS(191), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(195), 1, anon_sym_null, - ACTIONS(89), 1, + ACTIONS(203), 1, anon_sym_DOT2, - ACTIONS(91), 1, + ACTIONS(205), 1, aux_sym__val_number_decimal_token3, - ACTIONS(97), 1, + ACTIONS(211), 1, anon_sym_0b, - ACTIONS(101), 1, + ACTIONS(215), 1, sym_val_date, - ACTIONS(103), 1, + ACTIONS(217), 1, anon_sym_DQUOTE, - ACTIONS(107), 1, + ACTIONS(221), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(109), 1, + ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(391), 1, + anon_sym_DASH, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3318), 1, + STATE(2893), 1, sym_comment, - STATE(4698), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4386), 1, sym__var, - STATE(5401), 1, + STATE(4586), 1, sym_val_number, - STATE(5567), 1, - sym_val_variable, - STATE(5573), 1, - sym_expr_parenthesized, - STATE(5769), 1, + STATE(4833), 1, sym__val_number, - STATE(6347), 1, - sym__expr_unary_minus, - STATE(6363), 1, + STATE(5005), 1, + sym_expr_parenthesized, + STATE(5017), 1, + sym_val_variable, + STATE(5408), 1, + sym__str_double_quotes, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5695), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(5748), 1, + sym__expr_unary_minus, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8000), 1, sym_val_range, - STATE(9657), 1, + STATE(8674), 1, sym__where_predicate, - STATE(9658), 1, + STATE(8676), 1, sym__expression, - ACTIONS(79), 2, + ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(83), 2, + ACTIONS(197), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(209), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(99), 2, + ACTIONS(213), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(105), 2, + ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(93), 4, + ACTIONS(207), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -368011,100 +327476,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [22720] = 42, + [22878] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(139), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(167), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(171), 1, anon_sym_DOT_DOT, - ACTIONS(77), 1, + ACTIONS(191), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(195), 1, anon_sym_null, - ACTIONS(89), 1, + ACTIONS(203), 1, anon_sym_DOT2, - ACTIONS(91), 1, + ACTIONS(205), 1, aux_sym__val_number_decimal_token3, - ACTIONS(97), 1, + ACTIONS(211), 1, anon_sym_0b, - ACTIONS(101), 1, + ACTIONS(215), 1, sym_val_date, - ACTIONS(103), 1, + ACTIONS(217), 1, anon_sym_DQUOTE, - ACTIONS(107), 1, + ACTIONS(221), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(109), 1, + ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(391), 1, + anon_sym_DASH, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3319), 1, + STATE(2894), 1, sym_comment, - STATE(4698), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4386), 1, sym__var, - STATE(5401), 1, + STATE(4586), 1, sym_val_number, - STATE(5567), 1, - sym_val_variable, - STATE(5573), 1, - sym_expr_parenthesized, - STATE(5769), 1, + STATE(4833), 1, sym__val_number, - STATE(6347), 1, - sym__expr_unary_minus, - STATE(6363), 1, + STATE(5005), 1, + sym_expr_parenthesized, + STATE(5017), 1, + sym_val_variable, + STATE(5408), 1, + sym__str_double_quotes, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5695), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(5748), 1, + sym__expr_unary_minus, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8000), 1, sym_val_range, - STATE(10035), 1, + STATE(8680), 1, sym__where_predicate, - STATE(10036), 1, + STATE(8681), 1, sym__expression, - ACTIONS(79), 2, + ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(83), 2, + ACTIONS(197), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(209), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(99), 2, + ACTIONS(213), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(105), 2, + ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(93), 4, + ACTIONS(207), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -368116,179 +327581,112 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [22867] = 42, + [23025] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(139), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(167), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(171), 1, anon_sym_DOT_DOT, - ACTIONS(77), 1, + ACTIONS(191), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(195), 1, anon_sym_null, - ACTIONS(89), 1, + ACTIONS(203), 1, anon_sym_DOT2, - ACTIONS(91), 1, + ACTIONS(205), 1, aux_sym__val_number_decimal_token3, - ACTIONS(97), 1, + ACTIONS(211), 1, anon_sym_0b, - ACTIONS(101), 1, + ACTIONS(215), 1, sym_val_date, - ACTIONS(103), 1, + ACTIONS(217), 1, anon_sym_DQUOTE, - ACTIONS(107), 1, + ACTIONS(221), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(109), 1, + ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(391), 1, + anon_sym_DASH, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3320), 1, + STATE(2895), 1, sym_comment, - STATE(4698), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4386), 1, sym__var, - STATE(5401), 1, + STATE(4586), 1, sym_val_number, - STATE(5567), 1, - sym_val_variable, - STATE(5573), 1, - sym_expr_parenthesized, - STATE(5769), 1, + STATE(4833), 1, sym__val_number, - STATE(6347), 1, - sym__expr_unary_minus, - STATE(6363), 1, + STATE(5005), 1, + sym_expr_parenthesized, + STATE(5017), 1, + sym_val_variable, + STATE(5408), 1, + sym__str_double_quotes, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5695), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(5748), 1, + sym__expr_unary_minus, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8000), 1, sym_val_range, - STATE(9579), 1, + STATE(8684), 1, sym__where_predicate, - STATE(9582), 1, + STATE(8685), 1, sym__expression, - ACTIONS(79), 2, + ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(83), 2, + ACTIONS(197), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(209), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(99), 2, + ACTIONS(213), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(105), 2, + ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(93), 4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - STATE(6374), 11, - sym_val_nothing, - sym_val_bool, - 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, - [23014] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3321), 1, - sym_comment, - ACTIONS(1065), 15, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1063), 45, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [23085] = 42, + ACTIONS(207), 4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + STATE(5711), 11, + sym_val_nothing, + sym_val_bool, + 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, + [23172] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(137), 1, @@ -368317,45 +327715,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3322), 1, + STATE(2896), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(5017), 1, sym_val_variable, - STATE(5462), 1, - sym__val_number, - STATE(5774), 1, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(8893), 1, + STATE(8687), 1, sym__where_predicate, - STATE(8900), 1, + STATE(8704), 1, sym__expression, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, @@ -368372,7 +327770,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -368381,7 +327779,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -368393,7 +327791,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [23232] = 42, + [23319] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(137), 1, @@ -368422,45 +327820,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3323), 1, + STATE(2897), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(5017), 1, sym_val_variable, - STATE(5462), 1, - sym__val_number, - STATE(5774), 1, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(8906), 1, + STATE(8707), 1, sym__where_predicate, - STATE(8910), 1, + STATE(8709), 1, sym__expression, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, @@ -368477,7 +327875,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -368486,7 +327884,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -368498,7 +327896,76 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [23379] = 42, + [23466] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6770), 1, + aux_sym__immediate_decimal_token2, + STATE(2898), 1, + sym_comment, + ACTIONS(2358), 14, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2356), 44, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + anon_sym_DOT_DOT2, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [23541] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(137), 1, @@ -368527,45 +327994,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3324), 1, + STATE(2899), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(5017), 1, sym_val_variable, - STATE(5462), 1, - sym__val_number, - STATE(5774), 1, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(8918), 1, + STATE(8710), 1, sym__where_predicate, - STATE(8925), 1, + STATE(8714), 1, sym__expression, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, @@ -368582,7 +328049,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -368591,7 +328058,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -368603,7 +328070,74 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [23526] = 42, + [23688] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(2900), 1, + sym_comment, + ACTIONS(1049), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1047), 57, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [23759] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(137), 1, @@ -368632,45 +328166,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3325), 1, + STATE(2901), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(5017), 1, sym_val_variable, - STATE(5462), 1, - sym__val_number, - STATE(5774), 1, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(9212), 1, + STATE(8715), 1, sym__where_predicate, - STATE(9214), 1, + STATE(8733), 1, sym__expression, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, @@ -368687,7 +328221,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -368696,7 +328230,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -368708,7 +328242,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [23673] = 42, + [23906] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(137), 1, @@ -368737,45 +328271,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3326), 1, + STATE(2902), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(5017), 1, sym_val_variable, - STATE(5462), 1, - sym__val_number, - STATE(5774), 1, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(9228), 1, + STATE(8740), 1, sym__where_predicate, - STATE(9235), 1, + STATE(8743), 1, sym__expression, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, @@ -368792,7 +328326,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -368801,7 +328335,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -368813,7 +328347,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [23820] = 42, + [24053] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(137), 1, @@ -368842,45 +328376,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3327), 1, + STATE(2903), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(5017), 1, sym_val_variable, - STATE(5462), 1, - sym__val_number, - STATE(5774), 1, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(9249), 1, + STATE(8744), 1, sym__where_predicate, - STATE(9266), 1, + STATE(8745), 1, sym__expression, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, @@ -368897,7 +328431,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -368906,7 +328440,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -368918,7 +328452,141 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [23967] = 42, + [24200] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(2904), 1, + sym_comment, + ACTIONS(1039), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1037), 57, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [24271] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(2905), 1, + sym_comment, + ACTIONS(1043), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1041), 57, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [24342] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(137), 1, @@ -368947,45 +328615,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3328), 1, + STATE(2906), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(5017), 1, sym_val_variable, - STATE(5462), 1, - sym__val_number, - STATE(5774), 1, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(9271), 1, + STATE(8746), 1, sym__where_predicate, - STATE(9288), 1, + STATE(8747), 1, sym__expression, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, @@ -369002,7 +328670,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -369011,7 +328679,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -369023,7 +328691,211 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [24114] = 42, + [24489] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(6682), 1, + aux_sym__immediate_decimal_token2, + STATE(2907), 1, + sym_comment, + ACTIONS(2358), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(2356), 56, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + anon_sym_DOT_DOT2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [24562] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(6678), 1, + aux_sym__immediate_decimal_token2, + STATE(2908), 1, + sym_comment, + ACTIONS(2231), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(2229), 56, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + anon_sym_DOT_DOT2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [24635] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(6772), 1, + aux_sym__immediate_decimal_token2, + STATE(2909), 1, + sym_comment, + ACTIONS(2364), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(2362), 56, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + anon_sym_DOT_DOT2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [24708] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(137), 1, @@ -369052,45 +328924,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3329), 1, + STATE(2910), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(5017), 1, sym_val_variable, - STATE(5462), 1, - sym__val_number, - STATE(5774), 1, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(9296), 1, + STATE(8748), 1, sym__where_predicate, - STATE(9318), 1, + STATE(8749), 1, sym__expression, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, @@ -369107,7 +328979,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -369116,7 +328988,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -369128,100 +329000,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [24261] = 42, + [24855] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(137), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(167), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(59), 1, anon_sym_DOT_DOT, - ACTIONS(191), 1, + ACTIONS(77), 1, anon_sym_not, - ACTIONS(195), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(203), 1, + ACTIONS(89), 1, anon_sym_DOT2, - ACTIONS(205), 1, + ACTIONS(91), 1, aux_sym__val_number_decimal_token3, - ACTIONS(211), 1, + ACTIONS(97), 1, anon_sym_0b, - ACTIONS(215), 1, + ACTIONS(101), 1, sym_val_date, - ACTIONS(217), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(221), 1, + ACTIONS(107), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(223), 1, + ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, - anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3330), 1, + STATE(2911), 1, sym_comment, - STATE(4458), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4428), 1, sym__var, - STATE(5173), 1, + STATE(4920), 1, sym_val_number, - STATE(5308), 1, - sym_expr_parenthesized, - STATE(5404), 1, + STATE(5094), 1, sym_val_variable, - STATE(5462), 1, + STATE(5154), 1, + sym_expr_parenthesized, + STATE(5285), 1, sym__val_number, - STATE(5774), 1, + STATE(5878), 1, + sym__expr_unary_minus, + STATE(5888), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6183), 1, - sym__expr_unary_minus, - STATE(6785), 1, + STATE(5940), 1, + sym__inter_double_quotes, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8295), 1, sym_val_range, - STATE(9342), 1, + STATE(9623), 1, sym__where_predicate, - STATE(9371), 1, + STATE(9624), 1, sym__expression, - ACTIONS(193), 2, + ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(197), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(209), 2, + ACTIONS(95), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(213), 2, + ACTIONS(99), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(219), 2, + ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(207), 4, + ACTIONS(93), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -369233,7 +329105,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [24408] = 42, + [25002] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(137), 1, @@ -369262,45 +329134,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3331), 1, + STATE(2912), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(5017), 1, sym_val_variable, - STATE(5462), 1, - sym__val_number, - STATE(5774), 1, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(9375), 1, + STATE(8752), 1, sym__where_predicate, - STATE(9380), 1, + STATE(8756), 1, sym__expression, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, @@ -369317,7 +329189,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -369326,7 +329198,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -369338,100 +329210,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [24555] = 42, + [25149] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(137), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(167), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(59), 1, anon_sym_DOT_DOT, - ACTIONS(191), 1, + ACTIONS(77), 1, anon_sym_not, - ACTIONS(195), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(203), 1, + ACTIONS(89), 1, anon_sym_DOT2, - ACTIONS(205), 1, + ACTIONS(91), 1, aux_sym__val_number_decimal_token3, - ACTIONS(211), 1, + ACTIONS(97), 1, anon_sym_0b, - ACTIONS(215), 1, + ACTIONS(101), 1, sym_val_date, - ACTIONS(217), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(221), 1, + ACTIONS(107), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(223), 1, + ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, - anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3332), 1, + STATE(2913), 1, sym_comment, - STATE(4458), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4428), 1, sym__var, - STATE(5173), 1, + STATE(4920), 1, sym_val_number, - STATE(5308), 1, - sym_expr_parenthesized, - STATE(5404), 1, + STATE(5094), 1, sym_val_variable, - STATE(5462), 1, + STATE(5154), 1, + sym_expr_parenthesized, + STATE(5285), 1, sym__val_number, - STATE(5774), 1, + STATE(5878), 1, + sym__expr_unary_minus, + STATE(5888), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6183), 1, - sym__expr_unary_minus, - STATE(6785), 1, + STATE(5940), 1, + sym__inter_double_quotes, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8295), 1, sym_val_range, - STATE(9382), 1, + STATE(9645), 1, sym__where_predicate, - STATE(9384), 1, + STATE(9646), 1, sym__expression, - ACTIONS(193), 2, + ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(197), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(209), 2, + ACTIONS(95), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(213), 2, + ACTIONS(99), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(219), 2, + ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(207), 4, + ACTIONS(93), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -369443,7 +329315,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [24702] = 42, + [25296] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(137), 1, @@ -369472,45 +329344,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3333), 1, + STATE(2914), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(5017), 1, sym_val_variable, - STATE(5462), 1, - sym__val_number, - STATE(5774), 1, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(9399), 1, + STATE(8760), 1, sym__where_predicate, - STATE(9401), 1, + STATE(8764), 1, sym__expression, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, @@ -369527,7 +329399,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -369536,7 +329408,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -369548,102 +329420,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [24849] = 42, + [25443] = 40, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(137), 1, - anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(3100), 1, anon_sym_LPAREN, - ACTIONS(167), 1, - anon_sym_LBRACE, - ACTIONS(171), 1, - anon_sym_DOT_DOT, - ACTIONS(191), 1, - anon_sym_not, - ACTIONS(195), 1, - anon_sym_null, - ACTIONS(203), 1, - anon_sym_DOT2, - ACTIONS(205), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(211), 1, + ACTIONS(3102), 1, + anon_sym_DOLLAR, + ACTIONS(3128), 1, anon_sym_0b, - ACTIONS(215), 1, - sym_val_date, - ACTIONS(217), 1, - anon_sym_DQUOTE, - ACTIONS(221), 1, + ACTIONS(3134), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(223), 1, + ACTIONS(3136), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(3178), 1, + anon_sym_DQUOTE, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, anon_sym_DASH, - ACTIONS(1762), 1, - anon_sym_DOLLAR, - ACTIONS(7141), 1, - sym_identifier, - ACTIONS(7143), 1, + ACTIONS(3665), 1, + anon_sym_not, + ACTIONS(6760), 1, + sym_val_date, + ACTIONS(6774), 1, + anon_sym_LBRACE, + ACTIONS(6776), 1, + anon_sym_DOT_DOT, + ACTIONS(6780), 1, + anon_sym_null, + ACTIONS(6784), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6786), 1, aux_sym__val_number_decimal_token2, - STATE(3334), 1, + ACTIONS(6788), 1, + anon_sym_DOT2, + ACTIONS(6790), 1, + aux_sym__val_number_decimal_token3, + STATE(2915), 1, sym_comment, - STATE(4458), 1, - sym__val_number_decimal, - STATE(4755), 1, + STATE(3929), 1, sym__var, - STATE(5173), 1, - sym_val_number, - STATE(5308), 1, - sym_expr_parenthesized, - STATE(5404), 1, - sym_val_variable, - STATE(5462), 1, + STATE(4198), 1, + sym_block, + STATE(4250), 1, + sym__expression, + STATE(4922), 1, sym__val_number, - STATE(5774), 1, + STATE(5067), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5170), 1, + sym__val_number_decimal, + STATE(5725), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5726), 1, + sym__inter_double_quotes, + STATE(5745), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(5787), 1, + sym_expr_parenthesized, + STATE(5820), 1, + sym_val_variable, + STATE(6372), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(6728), 1, sym_val_range, - STATE(9409), 1, - sym__where_predicate, - STATE(9412), 1, - sym__expression, - ACTIONS(193), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(197), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(209), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(213), 2, + STATE(10081), 1, + sym__match_expression, + ACTIONS(3130), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(219), 2, + ACTIONS(3180), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + ACTIONS(6778), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(6782), 2, + anon_sym_true, + anon_sym_false, + STATE(5743), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(207), 4, + ACTIONS(3124), 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, - STATE(6241), 11, + aux_sym__val_number_token6, + STATE(5659), 12, sym_val_nothing, sym_val_bool, + sym_val_number, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -369653,102 +329523,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [24996] = 42, + [25586] = 40, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(137), 1, + ACTIONS(5155), 1, anon_sym_LBRACK, - ACTIONS(139), 1, - anon_sym_LPAREN, - ACTIONS(167), 1, - anon_sym_LBRACE, - ACTIONS(171), 1, - anon_sym_DOT_DOT, - ACTIONS(191), 1, + ACTIONS(5161), 1, + anon_sym_DASH, + ACTIONS(5167), 1, anon_sym_not, - ACTIONS(195), 1, - anon_sym_null, - ACTIONS(203), 1, - anon_sym_DOT2, - ACTIONS(205), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(211), 1, + ACTIONS(5187), 1, anon_sym_0b, - ACTIONS(215), 1, - sym_val_date, - ACTIONS(217), 1, + ACTIONS(5193), 1, anon_sym_DQUOTE, - ACTIONS(221), 1, + ACTIONS(5197), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(223), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, - anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(6792), 1, + anon_sym_LPAREN, + ACTIONS(6794), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, - sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6796), 1, + anon_sym_LBRACE, + ACTIONS(6798), 1, + anon_sym_DOT_DOT, + ACTIONS(6802), 1, + anon_sym_null, + ACTIONS(6806), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6808), 1, aux_sym__val_number_decimal_token2, - STATE(3335), 1, - sym_comment, - STATE(4458), 1, - sym__val_number_decimal, - STATE(4755), 1, + ACTIONS(6810), 1, + anon_sym_DOT2, + ACTIONS(6812), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6814), 1, + sym_val_date, + STATE(984), 1, sym__var, - STATE(5173), 1, - sym_val_number, - STATE(5308), 1, + STATE(1025), 1, + sym__val_number_decimal, + STATE(1209), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(1255), 1, sym_val_variable, - STATE(5462), 1, + STATE(2114), 1, + sym__expr_unary_minus, + STATE(2176), 1, sym__val_number, - STATE(5774), 1, + STATE(2201), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(2202), 1, sym__inter_single_quotes, - STATE(6183), 1, - sym__expr_unary_minus, - STATE(6785), 1, - sym__expr_binary_expression, - STATE(8278), 1, + STATE(2203), 1, + sym__inter_double_quotes, + STATE(2916), 1, + sym_comment, + STATE(4169), 1, sym_val_range, - STATE(9416), 1, - sym__where_predicate, - STATE(9419), 1, + STATE(4198), 1, + sym_block, + STATE(4250), 1, sym__expression, - ACTIONS(193), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(197), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(209), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(213), 2, + STATE(4251), 1, + sym__match_expression, + STATE(6360), 1, + sym__expr_binary_expression, + ACTIONS(5189), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(219), 2, + ACTIONS(5195), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + ACTIONS(6800), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(6804), 2, + anon_sym_true, + anon_sym_false, + STATE(2108), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(207), 4, + ACTIONS(5183), 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, - STATE(6241), 11, + aux_sym__val_number_token6, + STATE(2022), 12, sym_val_nothing, sym_val_bool, + sym_val_number, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -369758,100 +329626,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [25143] = 42, + [25729] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(137), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(167), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(59), 1, anon_sym_DOT_DOT, - ACTIONS(191), 1, + ACTIONS(77), 1, anon_sym_not, - ACTIONS(195), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(203), 1, + ACTIONS(89), 1, anon_sym_DOT2, - ACTIONS(205), 1, + ACTIONS(91), 1, aux_sym__val_number_decimal_token3, - ACTIONS(211), 1, + ACTIONS(97), 1, anon_sym_0b, - ACTIONS(215), 1, + ACTIONS(101), 1, sym_val_date, - ACTIONS(217), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(221), 1, + ACTIONS(107), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(223), 1, + ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, - anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3336), 1, + STATE(2917), 1, sym_comment, - STATE(4458), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4428), 1, sym__var, - STATE(5173), 1, + STATE(4920), 1, sym_val_number, - STATE(5308), 1, - sym_expr_parenthesized, - STATE(5404), 1, + STATE(5094), 1, sym_val_variable, - STATE(5462), 1, + STATE(5154), 1, + sym_expr_parenthesized, + STATE(5285), 1, sym__val_number, - STATE(5774), 1, + STATE(5878), 1, + sym__expr_unary_minus, + STATE(5888), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6183), 1, - sym__expr_unary_minus, - STATE(6785), 1, + STATE(5940), 1, + sym__inter_double_quotes, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8295), 1, sym_val_range, - STATE(9420), 1, + STATE(9654), 1, sym__where_predicate, - STATE(9427), 1, + STATE(9659), 1, sym__expression, - ACTIONS(193), 2, + ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(197), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(209), 2, + ACTIONS(95), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(213), 2, + ACTIONS(99), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(219), 2, + ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(207), 4, + ACTIONS(93), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -369863,100 +329731,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [25290] = 42, + [25876] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(137), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(167), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(59), 1, anon_sym_DOT_DOT, - ACTIONS(191), 1, + ACTIONS(77), 1, anon_sym_not, - ACTIONS(195), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(203), 1, + ACTIONS(89), 1, anon_sym_DOT2, - ACTIONS(205), 1, + ACTIONS(91), 1, aux_sym__val_number_decimal_token3, - ACTIONS(211), 1, + ACTIONS(97), 1, anon_sym_0b, - ACTIONS(215), 1, + ACTIONS(101), 1, sym_val_date, - ACTIONS(217), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(221), 1, + ACTIONS(107), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(223), 1, + ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, - anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3337), 1, + STATE(2918), 1, sym_comment, - STATE(4458), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4428), 1, sym__var, - STATE(5173), 1, + STATE(4920), 1, sym_val_number, - STATE(5308), 1, - sym_expr_parenthesized, - STATE(5404), 1, + STATE(5094), 1, sym_val_variable, - STATE(5462), 1, + STATE(5154), 1, + sym_expr_parenthesized, + STATE(5285), 1, sym__val_number, - STATE(5774), 1, + STATE(5878), 1, + sym__expr_unary_minus, + STATE(5888), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6183), 1, - sym__expr_unary_minus, - STATE(6785), 1, + STATE(5940), 1, + sym__inter_double_quotes, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8295), 1, sym_val_range, - STATE(9000), 1, - sym__expression, - STATE(9428), 1, + STATE(9663), 1, sym__where_predicate, - ACTIONS(193), 2, + STATE(9669), 1, + sym__expression, + ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(197), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(209), 2, + ACTIONS(95), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(213), 2, + ACTIONS(99), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(219), 2, + ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(207), 4, + ACTIONS(93), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -369968,100 +329836,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [25437] = 42, + [26023] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(137), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(167), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(59), 1, anon_sym_DOT_DOT, - ACTIONS(191), 1, + ACTIONS(77), 1, anon_sym_not, - ACTIONS(195), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(203), 1, + ACTIONS(89), 1, anon_sym_DOT2, - ACTIONS(205), 1, + ACTIONS(91), 1, aux_sym__val_number_decimal_token3, - ACTIONS(211), 1, + ACTIONS(97), 1, anon_sym_0b, - ACTIONS(215), 1, + ACTIONS(101), 1, sym_val_date, - ACTIONS(217), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(221), 1, + ACTIONS(107), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(223), 1, + ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, - anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3338), 1, + STATE(2919), 1, sym_comment, - STATE(4458), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4428), 1, sym__var, - STATE(5173), 1, + STATE(4920), 1, sym_val_number, - STATE(5308), 1, - sym_expr_parenthesized, - STATE(5404), 1, + STATE(5094), 1, sym_val_variable, - STATE(5462), 1, + STATE(5154), 1, + sym_expr_parenthesized, + STATE(5285), 1, sym__val_number, - STATE(5774), 1, + STATE(5878), 1, + sym__expr_unary_minus, + STATE(5888), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6183), 1, - sym__expr_unary_minus, - STATE(6785), 1, + STATE(5940), 1, + sym__inter_double_quotes, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8295), 1, sym_val_range, - STATE(8830), 1, + STATE(9174), 1, sym__where_predicate, - STATE(9100), 1, + STATE(9176), 1, sym__expression, - ACTIONS(193), 2, + ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(197), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(209), 2, + ACTIONS(95), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(213), 2, + ACTIONS(99), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(219), 2, + ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(207), 4, + ACTIONS(93), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -370073,7 +329941,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [25584] = 42, + [26170] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -370104,43 +329972,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3339), 1, + STATE(2920), 1, sym_comment, - STATE(4698), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4428), 1, sym__var, - STATE(5401), 1, + STATE(4920), 1, sym_val_number, - STATE(5567), 1, + STATE(5094), 1, sym_val_variable, - STATE(5573), 1, + STATE(5154), 1, sym_expr_parenthesized, - STATE(5769), 1, + STATE(5285), 1, sym__val_number, - STATE(6347), 1, + STATE(5878), 1, sym__expr_unary_minus, - STATE(6363), 1, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5940), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8295), 1, sym_val_range, - STATE(10078), 1, + STATE(9179), 1, sym__where_predicate, - STATE(10079), 1, + STATE(9182), 1, sym__expression, ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, @@ -370157,7 +330025,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -370166,7 +330034,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -370178,7 +330046,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [25731] = 42, + [26317] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -370209,43 +330077,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3340), 1, + STATE(2921), 1, sym_comment, - STATE(4698), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4428), 1, sym__var, - STATE(5401), 1, + STATE(4920), 1, sym_val_number, - STATE(5567), 1, + STATE(5094), 1, sym_val_variable, - STATE(5573), 1, + STATE(5154), 1, sym_expr_parenthesized, - STATE(5769), 1, + STATE(5285), 1, sym__val_number, - STATE(6347), 1, + STATE(5878), 1, sym__expr_unary_minus, - STATE(6363), 1, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5940), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8295), 1, sym_val_range, - STATE(10080), 1, + STATE(9190), 1, sym__where_predicate, - STATE(10081), 1, + STATE(9191), 1, sym__expression, ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, @@ -370262,7 +330130,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -370271,7 +330139,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -370283,100 +330151,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [25878] = 42, + [26464] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(137), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(167), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(59), 1, anon_sym_DOT_DOT, - ACTIONS(191), 1, + ACTIONS(77), 1, anon_sym_not, - ACTIONS(195), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(203), 1, + ACTIONS(89), 1, anon_sym_DOT2, - ACTIONS(205), 1, + ACTIONS(91), 1, aux_sym__val_number_decimal_token3, - ACTIONS(211), 1, + ACTIONS(97), 1, anon_sym_0b, - ACTIONS(215), 1, + ACTIONS(101), 1, sym_val_date, - ACTIONS(217), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(221), 1, + ACTIONS(107), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(223), 1, + ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, - anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3341), 1, + STATE(2922), 1, sym_comment, - STATE(4458), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4428), 1, sym__var, - STATE(5173), 1, + STATE(4920), 1, sym_val_number, - STATE(5308), 1, - sym_expr_parenthesized, - STATE(5404), 1, + STATE(5094), 1, sym_val_variable, - STATE(5462), 1, + STATE(5154), 1, + sym_expr_parenthesized, + STATE(5285), 1, sym__val_number, - STATE(5774), 1, + STATE(5878), 1, + sym__expr_unary_minus, + STATE(5888), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6183), 1, - sym__expr_unary_minus, - STATE(6785), 1, + STATE(5940), 1, + sym__inter_double_quotes, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8295), 1, sym_val_range, - STATE(8846), 1, - sym__expression, - STATE(8956), 1, + STATE(9201), 1, sym__where_predicate, - ACTIONS(193), 2, + STATE(9313), 1, + sym__expression, + ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(197), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(209), 2, + ACTIONS(95), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(213), 2, + ACTIONS(99), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(219), 2, + ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(207), 4, + ACTIONS(93), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -370388,100 +330256,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [26025] = 42, + [26611] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(137), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(167), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(59), 1, anon_sym_DOT_DOT, - ACTIONS(191), 1, + ACTIONS(77), 1, anon_sym_not, - ACTIONS(195), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(203), 1, + ACTIONS(89), 1, anon_sym_DOT2, - ACTIONS(205), 1, + ACTIONS(91), 1, aux_sym__val_number_decimal_token3, - ACTIONS(211), 1, + ACTIONS(97), 1, anon_sym_0b, - ACTIONS(215), 1, + ACTIONS(101), 1, sym_val_date, - ACTIONS(217), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(221), 1, + ACTIONS(107), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(223), 1, + ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, - anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3342), 1, + STATE(2923), 1, sym_comment, - STATE(4458), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4428), 1, sym__var, - STATE(5173), 1, + STATE(4920), 1, sym_val_number, - STATE(5308), 1, - sym_expr_parenthesized, - STATE(5404), 1, + STATE(5094), 1, sym_val_variable, - STATE(5462), 1, + STATE(5154), 1, + sym_expr_parenthesized, + STATE(5285), 1, sym__val_number, - STATE(5774), 1, + STATE(5878), 1, + sym__expr_unary_minus, + STATE(5888), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6183), 1, - sym__expr_unary_minus, - STATE(6785), 1, + STATE(5940), 1, + sym__inter_double_quotes, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8295), 1, sym_val_range, - STATE(9197), 1, + STATE(9317), 1, sym__where_predicate, - STATE(9410), 1, + STATE(9327), 1, sym__expression, - ACTIONS(193), 2, + ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(197), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(209), 2, + ACTIONS(95), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(213), 2, + ACTIONS(99), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(219), 2, + ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(207), 4, + ACTIONS(93), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -370493,102 +330361,101 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [26172] = 42, + [26758] = 41, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(137), 1, - anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(3100), 1, anon_sym_LPAREN, - ACTIONS(167), 1, - anon_sym_LBRACE, - ACTIONS(171), 1, - anon_sym_DOT_DOT, - ACTIONS(191), 1, - anon_sym_not, - ACTIONS(195), 1, - anon_sym_null, - ACTIONS(203), 1, - anon_sym_DOT2, - ACTIONS(205), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(211), 1, + ACTIONS(3102), 1, + anon_sym_DOLLAR, + ACTIONS(3128), 1, anon_sym_0b, - ACTIONS(215), 1, - sym_val_date, - ACTIONS(217), 1, - anon_sym_DQUOTE, - ACTIONS(221), 1, + ACTIONS(3134), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(223), 1, + ACTIONS(3136), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(3178), 1, + anon_sym_DQUOTE, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, anon_sym_DASH, - ACTIONS(1762), 1, - anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(3661), 1, + anon_sym_LBRACE, + ACTIONS(3679), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3707), 1, + anon_sym_COLON, + ACTIONS(6742), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6744), 1, + anon_sym_DOT_DOT, + ACTIONS(6746), 1, + anon_sym_not, + ACTIONS(6750), 1, + anon_sym_null, + ACTIONS(6754), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6756), 1, aux_sym__val_number_decimal_token2, - STATE(3343), 1, + ACTIONS(6758), 1, + anon_sym_DOT2, + ACTIONS(6760), 1, + sym_val_date, + STATE(2924), 1, sym_comment, - STATE(4458), 1, - sym__val_number_decimal, - STATE(4755), 1, + STATE(3929), 1, sym__var, - STATE(5173), 1, - sym_val_number, - STATE(5308), 1, - sym_expr_parenthesized, - STATE(5404), 1, - sym_val_variable, - STATE(5462), 1, + STATE(4922), 1, sym__val_number, - STATE(5774), 1, + STATE(5067), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5301), 1, + sym__val_number_decimal, + STATE(5725), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5726), 1, + sym__inter_double_quotes, + STATE(5745), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(5903), 1, + sym_val_variable, + STATE(5960), 1, + sym_expr_parenthesized, + STATE(6383), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(6728), 1, sym_val_range, - STATE(8943), 1, - sym__where_predicate, - STATE(8990), 1, + STATE(10021), 1, sym__expression, - ACTIONS(193), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(197), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(209), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(213), 2, + ACTIONS(3130), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(219), 2, + ACTIONS(3180), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + ACTIONS(5665), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(6748), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(6752), 2, + anon_sym_true, + anon_sym_false, + STATE(5743), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(207), 4, + ACTIONS(3124), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5659), 12, sym_val_nothing, sym_val_bool, + sym_val_number, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -370598,100 +330465,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [26319] = 42, + [26903] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(137), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(167), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(59), 1, anon_sym_DOT_DOT, - ACTIONS(191), 1, + ACTIONS(77), 1, anon_sym_not, - ACTIONS(195), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(203), 1, + ACTIONS(89), 1, anon_sym_DOT2, - ACTIONS(205), 1, + ACTIONS(91), 1, aux_sym__val_number_decimal_token3, - ACTIONS(211), 1, + ACTIONS(97), 1, anon_sym_0b, - ACTIONS(215), 1, + ACTIONS(101), 1, sym_val_date, - ACTIONS(217), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(221), 1, + ACTIONS(107), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(223), 1, + ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, - anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3344), 1, + STATE(2925), 1, sym_comment, - STATE(4458), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4428), 1, sym__var, - STATE(5173), 1, + STATE(4920), 1, sym_val_number, - STATE(5308), 1, - sym_expr_parenthesized, - STATE(5404), 1, + STATE(5094), 1, sym_val_variable, - STATE(5462), 1, + STATE(5154), 1, + sym_expr_parenthesized, + STATE(5285), 1, sym__val_number, - STATE(5774), 1, + STATE(5878), 1, + sym__expr_unary_minus, + STATE(5888), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6183), 1, - sym__expr_unary_minus, - STATE(6785), 1, + STATE(5940), 1, + sym__inter_double_quotes, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8295), 1, sym_val_range, - STATE(9104), 1, - sym__expression, - STATE(9290), 1, + STATE(9330), 1, sym__where_predicate, - ACTIONS(193), 2, + STATE(9333), 1, + sym__expression, + ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(197), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(209), 2, + ACTIONS(95), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(213), 2, + ACTIONS(99), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(219), 2, + ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(207), 4, + ACTIONS(93), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -370703,100 +330570,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [26466] = 42, + [27050] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(137), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(167), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(59), 1, anon_sym_DOT_DOT, - ACTIONS(191), 1, + ACTIONS(77), 1, anon_sym_not, - ACTIONS(195), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(203), 1, + ACTIONS(89), 1, anon_sym_DOT2, - ACTIONS(205), 1, + ACTIONS(91), 1, aux_sym__val_number_decimal_token3, - ACTIONS(211), 1, + ACTIONS(97), 1, anon_sym_0b, - ACTIONS(215), 1, + ACTIONS(101), 1, sym_val_date, - ACTIONS(217), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(221), 1, + ACTIONS(107), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(223), 1, + ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, - anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3345), 1, + STATE(2926), 1, sym_comment, - STATE(4458), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4428), 1, sym__var, - STATE(5173), 1, + STATE(4920), 1, sym_val_number, - STATE(5308), 1, - sym_expr_parenthesized, - STATE(5404), 1, + STATE(5094), 1, sym_val_variable, - STATE(5462), 1, + STATE(5154), 1, + sym_expr_parenthesized, + STATE(5285), 1, sym__val_number, - STATE(5774), 1, + STATE(5878), 1, + sym__expr_unary_minus, + STATE(5888), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6183), 1, - sym__expr_unary_minus, - STATE(6785), 1, + STATE(5940), 1, + sym__inter_double_quotes, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8295), 1, sym_val_range, - STATE(9116), 1, + STATE(9336), 1, sym__where_predicate, - STATE(9268), 1, + STATE(9340), 1, sym__expression, - ACTIONS(193), 2, + ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(197), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(209), 2, + ACTIONS(95), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(213), 2, + ACTIONS(99), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(219), 2, + ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(207), 4, + ACTIONS(93), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -370808,100 +330675,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [26613] = 42, + [27197] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(137), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(167), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(59), 1, anon_sym_DOT_DOT, - ACTIONS(191), 1, + ACTIONS(77), 1, anon_sym_not, - ACTIONS(195), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(203), 1, + ACTIONS(89), 1, anon_sym_DOT2, - ACTIONS(205), 1, + ACTIONS(91), 1, aux_sym__val_number_decimal_token3, - ACTIONS(211), 1, + ACTIONS(97), 1, anon_sym_0b, - ACTIONS(215), 1, + ACTIONS(101), 1, sym_val_date, - ACTIONS(217), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(221), 1, + ACTIONS(107), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(223), 1, + ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, - anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3346), 1, + STATE(2927), 1, sym_comment, - STATE(4458), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4428), 1, sym__var, - STATE(5173), 1, + STATE(4920), 1, sym_val_number, - STATE(5308), 1, - sym_expr_parenthesized, - STATE(5404), 1, + STATE(5094), 1, sym_val_variable, - STATE(5462), 1, + STATE(5154), 1, + sym_expr_parenthesized, + STATE(5285), 1, sym__val_number, - STATE(5774), 1, + STATE(5878), 1, + sym__expr_unary_minus, + STATE(5888), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6183), 1, - sym__expr_unary_minus, - STATE(6785), 1, + STATE(5940), 1, + sym__inter_double_quotes, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8295), 1, sym_val_range, - STATE(9184), 1, - sym__expression, - STATE(9367), 1, + STATE(9351), 1, sym__where_predicate, - ACTIONS(193), 2, + STATE(9369), 1, + sym__expression, + ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(197), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(209), 2, + ACTIONS(95), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(213), 2, + ACTIONS(99), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(219), 2, + ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(207), 4, + ACTIONS(93), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -370913,101 +330780,102 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [26760] = 41, + [27344] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2688), 1, - anon_sym_LPAREN, - ACTIONS(2690), 1, - anon_sym_DOLLAR, - ACTIONS(2718), 1, - anon_sym_0b, - ACTIONS(2728), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2730), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3391), 1, - anon_sym_DQUOTE, - ACTIONS(3880), 1, - anon_sym_COLON, - ACTIONS(3882), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(3884), 1, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(3886), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(3904), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(7191), 1, - sym_val_date, - ACTIONS(7224), 1, - sym_identifier, - ACTIONS(7226), 1, + ACTIONS(59), 1, anon_sym_DOT_DOT, - ACTIONS(7228), 1, + ACTIONS(77), 1, anon_sym_not, - ACTIONS(7232), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(7236), 1, + ACTIONS(89), 1, + anon_sym_DOT2, + ACTIONS(91), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(97), 1, + anon_sym_0b, + ACTIONS(101), 1, + sym_val_date, + ACTIONS(103), 1, + anon_sym_DQUOTE, + ACTIONS(107), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(109), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1528), 1, + anon_sym_DOLLAR, + ACTIONS(6725), 1, + sym_identifier, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7238), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - ACTIONS(7240), 1, - anon_sym_DOT2, - STATE(3347), 1, + STATE(2928), 1, sym_comment, - STATE(4486), 1, + STATE(4371), 1, + sym__val_number_decimal, + STATE(4428), 1, sym__var, - STATE(5463), 1, + STATE(4920), 1, + sym_val_number, + STATE(5094), 1, + sym_val_variable, + STATE(5154), 1, + sym_expr_parenthesized, + STATE(5285), 1, sym__val_number, - STATE(5541), 1, - sym__str_double_quotes, - STATE(5894), 1, - sym__val_number_decimal, - STATE(6245), 1, + STATE(5878), 1, sym__expr_unary_minus, - STATE(6258), 1, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6277), 1, + STATE(5940), 1, sym__inter_double_quotes, - STATE(6316), 1, - sym_val_variable, - STATE(6385), 1, - sym_expr_parenthesized, - STATE(6786), 1, + STATE(6380), 1, sym__expr_binary_expression, - STATE(7168), 1, + STATE(8295), 1, sym_val_range, - STATE(10501), 1, + STATE(9569), 1, + sym__where_predicate, + STATE(9572), 1, sym__expression, - ACTIONS(2720), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3393), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6107), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(7230), 2, + ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(7234), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - STATE(6243), 3, + ACTIONS(95), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(99), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(105), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(2714), 4, + ACTIONS(93), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6175), 12, + STATE(5931), 11, sym_val_nothing, sym_val_bool, - sym_val_number, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -371017,7 +330885,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [26905] = 42, + [27491] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -371048,43 +330916,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3348), 1, + STATE(2929), 1, sym_comment, - STATE(4698), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4428), 1, sym__var, - STATE(5401), 1, + STATE(4920), 1, sym_val_number, - STATE(5567), 1, + STATE(5094), 1, sym_val_variable, - STATE(5573), 1, + STATE(5154), 1, sym_expr_parenthesized, - STATE(5769), 1, + STATE(5285), 1, sym__val_number, - STATE(6347), 1, + STATE(5878), 1, sym__expr_unary_minus, - STATE(6363), 1, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5940), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8295), 1, sym_val_range, - STATE(9583), 1, + STATE(9573), 1, sym__where_predicate, - STATE(9588), 1, + STATE(9574), 1, sym__expression, ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, @@ -371101,7 +330969,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -371110,7 +330978,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -371122,7 +330990,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [27052] = 42, + [27638] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -371153,43 +331021,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3349), 1, + STATE(2930), 1, sym_comment, - STATE(4698), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4428), 1, sym__var, - STATE(5401), 1, + STATE(4920), 1, sym_val_number, - STATE(5567), 1, + STATE(5094), 1, sym_val_variable, - STATE(5573), 1, + STATE(5154), 1, sym_expr_parenthesized, - STATE(5769), 1, + STATE(5285), 1, sym__val_number, - STATE(6347), 1, + STATE(5878), 1, sym__expr_unary_minus, - STATE(6363), 1, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5940), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8295), 1, sym_val_range, - STATE(10065), 1, + STATE(9575), 1, sym__where_predicate, - STATE(10068), 1, + STATE(9578), 1, sym__expression, ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, @@ -371206,7 +331074,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -371215,7 +331083,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -371227,76 +331095,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [27199] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7248), 1, - anon_sym_DOT, - ACTIONS(7250), 1, - aux_sym__immediate_decimal_token2, - STATE(3350), 1, - sym_comment, - ACTIONS(2583), 14, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2581), 44, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [27274] = 42, + [27785] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -371327,43 +331126,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3351), 1, + STATE(2931), 1, sym_comment, - STATE(4698), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4886), 1, + STATE(4428), 1, sym__var, - STATE(5401), 1, + STATE(4920), 1, sym_val_number, - STATE(5567), 1, + STATE(5094), 1, sym_val_variable, - STATE(5573), 1, + STATE(5154), 1, sym_expr_parenthesized, - STATE(5769), 1, + STATE(5285), 1, sym__val_number, - STATE(6347), 1, + STATE(5878), 1, sym__expr_unary_minus, - STATE(6363), 1, + STATE(5888), 1, + sym__str_double_quotes, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(5940), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8689), 1, + STATE(8295), 1, sym_val_range, - STATE(10082), 1, + STATE(9579), 1, sym__where_predicate, - STATE(10083), 1, + STATE(9580), 1, sym__expression, ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, @@ -371380,7 +331179,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6379), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -371389,7 +331188,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -371401,100 +331200,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [27421] = 42, + [27932] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(137), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(167), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(59), 1, anon_sym_DOT_DOT, - ACTIONS(191), 1, + ACTIONS(77), 1, anon_sym_not, - ACTIONS(195), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(203), 1, + ACTIONS(89), 1, anon_sym_DOT2, - ACTIONS(205), 1, + ACTIONS(91), 1, aux_sym__val_number_decimal_token3, - ACTIONS(211), 1, + ACTIONS(97), 1, anon_sym_0b, - ACTIONS(215), 1, + ACTIONS(101), 1, sym_val_date, - ACTIONS(217), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(221), 1, + ACTIONS(107), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(223), 1, + ACTIONS(109), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, - anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6725), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6727), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6729), 1, aux_sym__val_number_decimal_token2, - STATE(3352), 1, + STATE(2932), 1, sym_comment, - STATE(4458), 1, + STATE(4371), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4428), 1, sym__var, - STATE(5173), 1, + STATE(4920), 1, sym_val_number, - STATE(5308), 1, - sym_expr_parenthesized, - STATE(5404), 1, + STATE(5094), 1, sym_val_variable, - STATE(5462), 1, + STATE(5154), 1, + sym_expr_parenthesized, + STATE(5285), 1, sym__val_number, - STATE(5774), 1, + STATE(5878), 1, + sym__expr_unary_minus, + STATE(5888), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5935), 1, sym__inter_single_quotes, - STATE(6183), 1, - sym__expr_unary_minus, - STATE(6785), 1, + STATE(5940), 1, + sym__inter_double_quotes, + STATE(6380), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8295), 1, sym_val_range, - STATE(8994), 1, + STATE(9581), 1, sym__where_predicate, - STATE(9308), 1, + STATE(9582), 1, sym__expression, - ACTIONS(193), 2, + ACTIONS(79), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(197), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(209), 2, + ACTIONS(95), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(213), 2, + ACTIONS(99), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(219), 2, + ACTIONS(105), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5890), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(207), 4, + ACTIONS(93), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5931), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -371506,7 +331305,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [27568] = 42, + [28079] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(137), 1, @@ -371535,45 +331334,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(223), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(395), 1, + ACTIONS(391), 1, anon_sym_DASH, - ACTIONS(1762), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR, - ACTIONS(7141), 1, + ACTIONS(6684), 1, sym_identifier, - ACTIONS(7143), 1, + ACTIONS(6686), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(6688), 1, aux_sym__val_number_decimal_token2, - STATE(3353), 1, + STATE(2933), 1, sym_comment, - STATE(4458), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(4755), 1, + STATE(4386), 1, sym__var, - STATE(5173), 1, + STATE(4586), 1, sym_val_number, - STATE(5308), 1, + STATE(4833), 1, + sym__val_number, + STATE(5005), 1, sym_expr_parenthesized, - STATE(5404), 1, + STATE(5017), 1, sym_val_variable, - STATE(5462), 1, - sym__val_number, - STATE(5774), 1, + STATE(5408), 1, sym__str_double_quotes, - STATE(6031), 1, - sym__inter_double_quotes, - STATE(6041), 1, + STATE(5684), 1, sym__inter_single_quotes, - STATE(6183), 1, + STATE(5695), 1, + sym__inter_double_quotes, + STATE(5748), 1, sym__expr_unary_minus, - STATE(6785), 1, + STATE(6388), 1, sym__expr_binary_expression, - STATE(8278), 1, + STATE(8000), 1, sym_val_range, - STATE(9124), 1, + STATE(8444), 1, sym__where_predicate, - STATE(9130), 1, + STATE(8446), 1, sym__expression, ACTIONS(193), 2, anon_sym_DOT_DOT_EQ, @@ -371590,7 +331389,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(219), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6157), 3, + STATE(5709), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -371599,7 +331398,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6241), 11, + STATE(5711), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -371611,171 +331410,99 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [27715] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7252), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7254), 1, - aux_sym__immediate_decimal_token2, - STATE(3354), 1, - sym_comment, - ACTIONS(2439), 14, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2437), 44, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [27790] = 42, + [28226] = 40, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(5485), 1, anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(5491), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(5493), 1, anon_sym_LBRACE, - ACTIONS(59), 1, - anon_sym_DOT_DOT, - ACTIONS(77), 1, - anon_sym_not, - ACTIONS(81), 1, - anon_sym_null, - ACTIONS(89), 1, - anon_sym_DOT2, - ACTIONS(91), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(97), 1, + ACTIONS(5517), 1, anon_sym_0b, - ACTIONS(101), 1, - sym_val_date, - ACTIONS(103), 1, + ACTIONS(5523), 1, anon_sym_DQUOTE, - ACTIONS(107), 1, + ACTIONS(5527), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(109), 1, + ACTIONS(5529), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(6816), 1, + sym_cmd_identifier, + ACTIONS(6818), 1, + anon_sym_LPAREN, + ACTIONS(6820), 1, anon_sym_DOLLAR, - ACTIONS(7118), 1, - sym_identifier, - ACTIONS(7120), 1, + ACTIONS(6822), 1, + anon_sym_DOT_DOT, + ACTIONS(6824), 1, + anon_sym_not, + ACTIONS(6828), 1, + anon_sym_null, + ACTIONS(6832), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, + ACTIONS(6834), 1, aux_sym__val_number_decimal_token2, - STATE(3355), 1, - sym_comment, - STATE(4698), 1, - sym__val_number_decimal, - STATE(4886), 1, + ACTIONS(6836), 1, + anon_sym_DOT2, + ACTIONS(6838), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6842), 1, + sym_val_date, + STATE(506), 1, sym__var, - STATE(5401), 1, - sym_val_number, - STATE(5567), 1, - sym_val_variable, - STATE(5573), 1, + STATE(517), 1, + sym__val_number_decimal, + STATE(548), 1, sym_expr_parenthesized, - STATE(5769), 1, - sym__val_number, - STATE(6347), 1, + STATE(556), 1, + sym_val_variable, + STATE(600), 1, sym__expr_unary_minus, - STATE(6363), 1, + STATE(644), 1, + sym__val_number, + STATE(661), 1, + sym__str_double_quotes, + STATE(662), 1, sym__inter_single_quotes, - STATE(6365), 1, + STATE(663), 1, sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, - sym__expr_binary_expression, - STATE(8689), 1, + STATE(2934), 1, + sym_comment, + STATE(3078), 1, sym_val_range, - STATE(10084), 1, - sym__where_predicate, - STATE(10085), 1, + STATE(3122), 1, sym__expression, - ACTIONS(79), 2, + STATE(6363), 1, + sym__expr_binary_expression, + ACTIONS(5519), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5525), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6826), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(83), 2, + ACTIONS(6830), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(6840), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(99), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(105), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(6379), 3, + STATE(645), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(93), 4, + ACTIONS(5513), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6374), 11, + STATE(643), 12, sym_val_nothing, sym_val_bool, + sym_val_number, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -371785,59 +331512,59 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [27937] = 4, + [28368] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(3356), 1, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + STATE(2935), 1, sym_comment, - ACTIONS(3962), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(3960), 57, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_RBRACK, + ACTIONS(1161), 8, + 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(1159), 50, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, + anon_sym_GT, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_DOT_DOT2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + 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, anon_sym_DOT2, @@ -371848,196 +331575,20 @@ 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_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [28008] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3357), 1, - sym_comment, - ACTIONS(1061), 15, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1059), 45, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [28079] = 42, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(59), 1, - anon_sym_DOT_DOT, - ACTIONS(77), 1, - anon_sym_not, - ACTIONS(81), 1, - anon_sym_null, - ACTIONS(89), 1, - anon_sym_DOT2, - ACTIONS(91), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(97), 1, anon_sym_0b, - ACTIONS(101), 1, - sym_val_date, - ACTIONS(103), 1, - anon_sym_DQUOTE, - ACTIONS(107), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(109), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1742), 1, - anon_sym_DOLLAR, - ACTIONS(7118), 1, - sym_identifier, - ACTIONS(7120), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7122), 1, - aux_sym__val_number_decimal_token2, - STATE(3358), 1, - sym_comment, - STATE(4698), 1, - sym__val_number_decimal, - STATE(4886), 1, - sym__var, - STATE(5401), 1, - sym_val_number, - STATE(5567), 1, - sym_val_variable, - STATE(5573), 1, - sym_expr_parenthesized, - STATE(5769), 1, - sym__val_number, - STATE(6347), 1, - sym__expr_unary_minus, - STATE(6363), 1, - sym__inter_single_quotes, - STATE(6365), 1, - sym__inter_double_quotes, - STATE(6386), 1, - sym__str_double_quotes, - STATE(6784), 1, - sym__expr_binary_expression, - STATE(8689), 1, - sym_val_range, - STATE(9627), 1, - sym__where_predicate, - STATE(9631), 1, - sym__expression, - ACTIONS(79), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(95), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(99), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(105), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(6379), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(93), 4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - STATE(6374), 11, - sym_val_nothing, - sym_val_bool, - 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, - [28226] = 7, + sym_val_date, + [28440] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1008), 1, - sym__entry_separator, - ACTIONS(7256), 1, - anon_sym_DOT, - STATE(3359), 1, + STATE(2936), 1, sym_comment, - STATE(3375), 1, - aux_sym_cell_path_repeat1, - STATE(3505), 1, - sym_path, - ACTIONS(1006), 55, + ACTIONS(1063), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1061), 56, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -372079,6 +331630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_as, anon_sym_PLUS, + anon_sym_DOT_DOT2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, anon_sym_DOT2, @@ -372093,14 +331645,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [28302] = 5, + [28510] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1257), 1, + ACTIONS(1133), 1, aux_sym_unquoted_token6, - STATE(3360), 1, + STATE(2937), 1, sym_comment, - ACTIONS(1255), 8, + ACTIONS(1131), 8, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -372109,7 +331661,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1253), 50, + ACTIONS(1129), 50, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -372160,152 +331712,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, - [28374] = 5, - ACTIONS(113), 1, + [28582] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - STATE(3361), 1, + STATE(2938), 1, sym_comment, - ACTIONS(1275), 8, - anon_sym_LBRACK, + ACTIONS(2231), 15, + anon_sym_COMMA, 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(1273), 50, anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not, - 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, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_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, - [28446] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(7258), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(3362), 1, - sym_comment, - ACTIONS(1243), 58, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2229), 44, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_DOT_DOT2, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, 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, - [28516] = 6, + aux_sym__record_key_token2, + [28652] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3951), 1, + ACTIONS(1004), 1, sym__entry_separator, - ACTIONS(7260), 1, - anon_sym_DOT_DOT2, - STATE(3363), 1, + ACTIONS(6844), 1, + anon_sym_DOT, + STATE(2939), 1, sym_comment, - ACTIONS(7262), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3949), 55, + STATE(2941), 1, + sym_path, + STATE(3121), 1, + sym_cell_path, + ACTIONS(1002), 55, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -372361,19 +331847,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [28590] = 6, - ACTIONS(113), 1, + [28728] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3966), 1, - sym__entry_separator, - ACTIONS(7264), 1, - anon_sym_DOT_DOT2, - STATE(3364), 1, + STATE(2940), 1, sym_comment, - ACTIONS(7266), 2, + ACTIONS(2364), 15, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(3964), 55, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2362), 44, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -372386,8 +331881,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_module, anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_error, anon_sym_list, anon_sym_DASH, @@ -372402,7 +331895,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_match, - anon_sym_RBRACE, anon_sym_try, anon_sym_catch, anon_sym_return, @@ -372415,33 +331907,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_as, anon_sym_PLUS, + anon_sym_DOT_DOT2, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, aux_sym__record_key_token2, - [28664] = 6, + [28798] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4045), 1, + ACTIONS(1012), 1, sym__entry_separator, - ACTIONS(7268), 1, - anon_sym_DOT_DOT2, - STATE(3365), 1, + ACTIONS(6844), 1, + anon_sym_DOT, + STATE(2941), 1, sym_comment, - ACTIONS(7270), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(4043), 55, + STATE(2943), 1, + aux_sym_cell_path_repeat1, + STATE(3086), 1, + sym_path, + ACTIONS(1010), 55, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -372497,153 +331982,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [28738] = 4, + [28874] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3366), 1, + STATE(2942), 1, sym_comment, - ACTIONS(1113), 16, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1115), 43, - anon_sym_LBRACK, + ACTIONS(2404), 15, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [28808] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6768), 1, - aux_sym_unquoted_token5, - STATE(3367), 1, - sym_comment, - ACTIONS(959), 15, anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(961), 43, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [28880] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1012), 1, - sym__entry_separator, - ACTIONS(7256), 1, - anon_sym_DOT, - STATE(3368), 1, - sym_comment, - STATE(3372), 1, - sym_path, - STATE(3537), 1, - sym_cell_path, - ACTIONS(1010), 55, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2402), 44, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -372656,8 +332016,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_module, anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_error, anon_sym_list, anon_sym_DASH, @@ -372672,7 +332030,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_match, - anon_sym_RBRACE, anon_sym_try, anon_sym_catch, anon_sym_return, @@ -372685,107 +332042,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_as, anon_sym_PLUS, + anon_sym_DOT_DOT2, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, aux_sym__record_key_token2, - [28956] = 4, - ACTIONS(3), 1, + [28944] = 7, + ACTIONS(113), 1, anon_sym_POUND, - STATE(3369), 1, - sym_comment, - ACTIONS(1117), 16, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, + ACTIONS(1008), 1, + sym__entry_separator, + ACTIONS(6844), 1, anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1119), 43, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [29026] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3370), 1, + STATE(2943), 1, sym_comment, - ACTIONS(1115), 14, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1113), 45, + STATE(2945), 1, + aux_sym_cell_path_repeat1, + STATE(3086), 1, + sym_path, + ACTIONS(1006), 55, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -372798,6 +332074,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_module, anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_error, anon_sym_list, anon_sym_DASH, @@ -372812,6 +332090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_match, + anon_sym_RBRACE, anon_sym_try, anon_sym_catch, anon_sym_return, @@ -372824,19 +332103,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_as, anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, aux_sym__record_key_token2, - [29096] = 4, + [29020] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(3371), 1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + STATE(2944), 1, sym_comment, - ACTIONS(1282), 8, + ACTIONS(1137), 8, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -372845,7 +332133,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1280), 51, + ACTIONS(1135), 50, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -372896,21 +332184,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, - aux_sym_unquoted_token6, - [29166] = 7, + [29092] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(989), 1, + ACTIONS(987), 1, sym__entry_separator, - ACTIONS(7256), 1, + ACTIONS(6846), 1, anon_sym_DOT, - STATE(3359), 1, - aux_sym_cell_path_repeat1, - STATE(3372), 1, - sym_comment, - STATE(3505), 1, + STATE(3086), 1, sym_path, - ACTIONS(987), 55, + STATE(2945), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(985), 55, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -372966,162 +332252,96 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [29242] = 4, + [29166] = 40, ACTIONS(3), 1, anon_sym_POUND, - STATE(3373), 1, - sym_comment, - ACTIONS(1119), 14, + ACTIONS(3100), 1, anon_sym_LPAREN, + ACTIONS(3102), 1, anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1117), 45, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [29312] = 40, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1695), 1, + ACTIONS(3128), 1, + anon_sym_0b, + ACTIONS(3134), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(1697), 1, + ACTIONS(3136), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1936), 1, - anon_sym_LBRACK, - ACTIONS(1940), 1, - anon_sym_LPAREN, - ACTIONS(1942), 1, - anon_sym_DOLLAR, - ACTIONS(1948), 1, - anon_sym_LBRACE, - ACTIONS(1970), 1, - anon_sym_0b, - ACTIONS(1976), 1, + ACTIONS(3178), 1, anon_sym_DQUOTE, - ACTIONS(4947), 1, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, anon_sym_DASH, - ACTIONS(4965), 1, + ACTIONS(3661), 1, + anon_sym_LBRACE, + ACTIONS(3679), 1, aux_sym__val_number_decimal_token3, - ACTIONS(7272), 1, - sym_cmd_identifier, - ACTIONS(7274), 1, + ACTIONS(6744), 1, anon_sym_DOT_DOT, - ACTIONS(7276), 1, + ACTIONS(6746), 1, anon_sym_not, - ACTIONS(7280), 1, + ACTIONS(6750), 1, anon_sym_null, - ACTIONS(7284), 1, + ACTIONS(6754), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7286), 1, + ACTIONS(6756), 1, aux_sym__val_number_decimal_token2, - ACTIONS(7288), 1, + ACTIONS(6758), 1, anon_sym_DOT2, - ACTIONS(7292), 1, + ACTIONS(6760), 1, sym_val_date, - STATE(3374), 1, + ACTIONS(6849), 1, + sym_identifier, + STATE(2946), 1, sym_comment, - STATE(3507), 1, - sym_val_range, - STATE(3549), 1, - sym__expression, - STATE(5205), 1, + STATE(3929), 1, sym__var, - STATE(5499), 1, - sym__val_number_decimal, - STATE(5638), 1, - sym_expr_parenthesized, - STATE(5789), 1, - sym_val_variable, - STATE(6449), 1, - sym__str_double_quotes, - STATE(6520), 1, - sym__expr_unary_minus, - STATE(6539), 1, + STATE(4922), 1, sym__val_number, - STATE(6557), 1, + STATE(5067), 1, + sym__str_double_quotes, + STATE(5301), 1, + sym__val_number_decimal, + STATE(5725), 1, sym__inter_single_quotes, - STATE(6558), 1, + STATE(5726), 1, sym__inter_double_quotes, - STATE(6791), 1, + STATE(5745), 1, + sym__expr_unary_minus, + STATE(5903), 1, + sym_val_variable, + STATE(5960), 1, + sym_expr_parenthesized, + STATE(6383), 1, sym__expr_binary_expression, - ACTIONS(1972), 2, + STATE(6728), 1, + sym_val_range, + STATE(10246), 1, + sym__expression, + ACTIONS(3130), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(1978), 2, + ACTIONS(3180), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(7278), 2, + ACTIONS(5665), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(6748), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(7282), 2, + ACTIONS(6752), 2, anon_sym_true, anon_sym_false, - ACTIONS(7290), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - STATE(6477), 3, + STATE(5743), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(1966), 4, + ACTIONS(3124), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6614), 12, + STATE(5659), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -373134,19 +332354,27 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [29454] = 6, - ACTIONS(113), 1, + [29308] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1001), 1, - sym__entry_separator, - ACTIONS(7294), 1, - anon_sym_DOT, - STATE(3505), 1, - sym_path, - STATE(3375), 2, + STATE(2947), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(999), 55, + ACTIONS(1039), 14, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1037), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -373159,8 +332387,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_module, anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_error, anon_sym_list, anon_sym_DASH, @@ -373175,7 +332401,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_match, - anon_sym_RBRACE, anon_sym_try, anon_sym_catch, anon_sym_return, @@ -373188,9 +332413,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_as, anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [29378] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6312), 1, + aux_sym_unquoted_token5, + STATE(2948), 1, + sym_comment, + ACTIONS(938), 15, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(940), 43, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -373198,20 +332481,33 @@ 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, - aux_sym__record_key_token2, - [29528] = 4, - ACTIONS(113), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [29450] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3376), 1, + STATE(2949), 1, sym_comment, - ACTIONS(1170), 3, + ACTIONS(1043), 14, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1168), 56, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1041), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -373224,8 +332520,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_module, anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_error, anon_sym_list, anon_sym_DASH, @@ -373240,7 +332534,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_match, - anon_sym_RBRACE, anon_sym_try, anon_sym_catch, anon_sym_return, @@ -373254,110 +332547,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_PLUS, anon_sym_DOT_DOT2, + anon_sym_DOT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, aux_sym__record_key_token2, - [29598] = 40, + [29520] = 40, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5827), 1, + ACTIONS(5305), 1, anon_sym_LBRACK, - ACTIONS(5833), 1, + ACTIONS(5311), 1, anon_sym_DASH, - ACTIONS(5835), 1, + ACTIONS(5313), 1, anon_sym_LBRACE, - ACTIONS(5859), 1, + ACTIONS(5337), 1, anon_sym_0b, - ACTIONS(5865), 1, + ACTIONS(5343), 1, anon_sym_DQUOTE, - ACTIONS(5869), 1, + ACTIONS(5347), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5871), 1, + ACTIONS(5349), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7297), 1, + ACTIONS(6851), 1, sym_cmd_identifier, - ACTIONS(7299), 1, + ACTIONS(6853), 1, anon_sym_LPAREN, - ACTIONS(7301), 1, + ACTIONS(6855), 1, anon_sym_DOLLAR, - ACTIONS(7303), 1, + ACTIONS(6857), 1, anon_sym_DOT_DOT, - ACTIONS(7305), 1, + ACTIONS(6859), 1, anon_sym_not, - ACTIONS(7309), 1, + ACTIONS(6863), 1, anon_sym_null, - ACTIONS(7313), 1, + ACTIONS(6867), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7315), 1, + ACTIONS(6869), 1, aux_sym__val_number_decimal_token2, - ACTIONS(7317), 1, + ACTIONS(6871), 1, anon_sym_DOT2, - ACTIONS(7319), 1, + ACTIONS(6873), 1, aux_sym__val_number_decimal_token3, - ACTIONS(7323), 1, + ACTIONS(6877), 1, sym_val_date, - STATE(797), 1, + STATE(524), 1, sym__var, - STATE(802), 1, + STATE(538), 1, sym__val_number_decimal, - STATE(843), 1, - sym_val_variable, - STATE(850), 1, + STATE(576), 1, sym_expr_parenthesized, - STATE(986), 1, + STATE(577), 1, + sym_val_variable, + STATE(693), 1, sym__str_double_quotes, - STATE(988), 1, + STATE(695), 1, sym__val_number, - STATE(1009), 1, + STATE(710), 1, sym__inter_single_quotes, - STATE(1010), 1, + STATE(711), 1, sym__inter_double_quotes, - STATE(1019), 1, + STATE(730), 1, sym__expr_unary_minus, - STATE(3377), 1, + STATE(2950), 1, sym_comment, - STATE(3560), 1, + STATE(3129), 1, sym__expression, - STATE(3563), 1, + STATE(3134), 1, sym_val_range, - STATE(6805), 1, + STATE(6384), 1, sym__expr_binary_expression, - ACTIONS(5861), 2, + ACTIONS(5339), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(5867), 2, + ACTIONS(5345), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(7307), 2, + ACTIONS(6861), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(7311), 2, + ACTIONS(6865), 2, anon_sym_true, anon_sym_false, - ACTIONS(7321), 2, + ACTIONS(6875), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - STATE(966), 3, + STATE(729), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(5855), 4, + ACTIONS(5333), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(963), 12, + STATE(757), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -373370,96 +332655,96 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [29740] = 40, + [29662] = 40, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5827), 1, + ACTIONS(5305), 1, anon_sym_LBRACK, - ACTIONS(5833), 1, + ACTIONS(5311), 1, anon_sym_DASH, - ACTIONS(5835), 1, + ACTIONS(5313), 1, anon_sym_LBRACE, - ACTIONS(5859), 1, + ACTIONS(5337), 1, anon_sym_0b, - ACTIONS(5865), 1, + ACTIONS(5343), 1, anon_sym_DQUOTE, - ACTIONS(5869), 1, + ACTIONS(5347), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5871), 1, + ACTIONS(5349), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7299), 1, + ACTIONS(6853), 1, anon_sym_LPAREN, - ACTIONS(7301), 1, + ACTIONS(6855), 1, anon_sym_DOLLAR, - ACTIONS(7303), 1, + ACTIONS(6857), 1, anon_sym_DOT_DOT, - ACTIONS(7305), 1, + ACTIONS(6859), 1, anon_sym_not, - ACTIONS(7309), 1, + ACTIONS(6863), 1, anon_sym_null, - ACTIONS(7313), 1, + ACTIONS(6867), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7315), 1, + ACTIONS(6869), 1, aux_sym__val_number_decimal_token2, - ACTIONS(7317), 1, + ACTIONS(6871), 1, anon_sym_DOT2, - ACTIONS(7319), 1, + ACTIONS(6873), 1, aux_sym__val_number_decimal_token3, - ACTIONS(7323), 1, + ACTIONS(6877), 1, sym_val_date, - ACTIONS(7325), 1, + ACTIONS(6879), 1, sym_cmd_identifier, - STATE(797), 1, + STATE(524), 1, sym__var, - STATE(802), 1, + STATE(538), 1, sym__val_number_decimal, - STATE(843), 1, - sym_val_variable, - STATE(850), 1, + STATE(576), 1, sym_expr_parenthesized, - STATE(986), 1, + STATE(577), 1, + sym_val_variable, + STATE(693), 1, sym__str_double_quotes, - STATE(988), 1, + STATE(695), 1, sym__val_number, - STATE(1009), 1, + STATE(710), 1, sym__inter_single_quotes, - STATE(1010), 1, + STATE(711), 1, sym__inter_double_quotes, - STATE(1019), 1, + STATE(730), 1, sym__expr_unary_minus, - STATE(3378), 1, + STATE(2951), 1, sym_comment, - STATE(3553), 1, + STATE(3131), 1, sym__expression, - STATE(3563), 1, + STATE(3134), 1, sym_val_range, - STATE(6805), 1, + STATE(6384), 1, sym__expr_binary_expression, - ACTIONS(5861), 2, + ACTIONS(5339), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(5867), 2, + ACTIONS(5345), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(7307), 2, + ACTIONS(6861), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(7311), 2, + ACTIONS(6865), 2, anon_sym_true, anon_sym_false, - ACTIONS(7321), 2, + ACTIONS(6875), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - STATE(966), 3, + STATE(729), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(5855), 4, + ACTIONS(5333), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(963), 12, + STATE(757), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -373472,29 +332757,87 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [29882] = 4, - ACTIONS(3), 1, + [29804] = 6, + ACTIONS(113), 1, anon_sym_POUND, - STATE(3379), 1, + ACTIONS(3693), 1, + sym__entry_separator, + ACTIONS(6881), 1, + anon_sym_DOT_DOT2, + STATE(2952), 1, sym_comment, - ACTIONS(1061), 16, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(6883), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3691), 55, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1059), 43, + aux_sym__record_key_token2, + [29878] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(3701), 1, + sym__entry_separator, + ACTIONS(6885), 1, + anon_sym_DOT_DOT2, + STATE(2953), 1, + sym_comment, + ACTIONS(6887), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3699), 55, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -373507,6 +332850,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_module, anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_error, anon_sym_list, anon_sym_DASH, @@ -373521,6 +332866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_match, + anon_sym_RBRACE, anon_sym_try, anon_sym_catch, anon_sym_return, @@ -373534,125 +332880,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_PLUS, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, aux_sym__record_key_token2, - [29952] = 40, - ACTIONS(3), 1, + [29952] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2688), 1, + ACTIONS(3713), 1, + sym__entry_separator, + ACTIONS(6889), 1, + anon_sym_DOT_DOT2, + STATE(2954), 1, + sym_comment, + ACTIONS(6891), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3711), 55, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LPAREN, - ACTIONS(2690), 1, anon_sym_DOLLAR, - ACTIONS(2718), 1, - anon_sym_0b, - ACTIONS(2728), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2730), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3391), 1, - anon_sym_DQUOTE, - ACTIONS(3882), 1, - anon_sym_LBRACK, - ACTIONS(3884), 1, + anon_sym_error, + anon_sym_list, anon_sym_DASH, - ACTIONS(3886), 1, - anon_sym_LBRACE, - ACTIONS(3904), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(7191), 1, - sym_val_date, - ACTIONS(7226), 1, - anon_sym_DOT_DOT, - ACTIONS(7228), 1, - anon_sym_not, - ACTIONS(7232), 1, - anon_sym_null, - ACTIONS(7236), 1, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, aux_sym__val_number_decimal_token1, - ACTIONS(7238), 1, aux_sym__val_number_decimal_token2, - ACTIONS(7240), 1, anon_sym_DOT2, - ACTIONS(7327), 1, - sym_identifier, - STATE(3380), 1, - sym_comment, - STATE(4486), 1, - sym__var, - STATE(5463), 1, - sym__val_number, - STATE(5541), 1, - sym__str_double_quotes, - STATE(5894), 1, - sym__val_number_decimal, - STATE(6245), 1, - sym__expr_unary_minus, - STATE(6258), 1, - sym__inter_single_quotes, - STATE(6277), 1, - sym__inter_double_quotes, - STATE(6316), 1, - sym_val_variable, - STATE(6385), 1, - sym_expr_parenthesized, - STATE(6786), 1, - sym__expr_binary_expression, - STATE(7168), 1, - sym_val_range, - STATE(10694), 1, - sym__expression, - ACTIONS(2720), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3393), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6107), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(7230), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(7234), 2, - anon_sym_true, - anon_sym_false, - STATE(6243), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(2714), 4, + aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, aux_sym__val_number_token5, - STATE(6175), 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, - [30094] = 6, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [30026] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2845), 1, + ACTIONS(3356), 1, sym__entry_separator, - ACTIONS(7329), 1, + ACTIONS(6893), 1, anon_sym_DOT_DOT2, - STATE(3381), 1, + STATE(2955), 1, sym_comment, - ACTIONS(7331), 2, + ACTIONS(6895), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2843), 55, + ACTIONS(3354), 55, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -373708,14 +333029,116 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [30168] = 5, + [30100] = 40, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5485), 1, + anon_sym_LBRACK, + ACTIONS(5491), 1, + anon_sym_DASH, + ACTIONS(5493), 1, + anon_sym_LBRACE, + ACTIONS(5517), 1, + anon_sym_0b, + ACTIONS(5523), 1, + anon_sym_DQUOTE, + ACTIONS(5527), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5529), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6818), 1, + anon_sym_LPAREN, + ACTIONS(6820), 1, + anon_sym_DOLLAR, + ACTIONS(6822), 1, + anon_sym_DOT_DOT, + ACTIONS(6824), 1, + anon_sym_not, + ACTIONS(6828), 1, + anon_sym_null, + ACTIONS(6832), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6834), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6836), 1, + anon_sym_DOT2, + ACTIONS(6838), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6842), 1, + sym_val_date, + ACTIONS(6897), 1, + sym_cmd_identifier, + STATE(506), 1, + sym__var, + STATE(517), 1, + sym__val_number_decimal, + STATE(548), 1, + sym_expr_parenthesized, + STATE(556), 1, + sym_val_variable, + STATE(600), 1, + sym__expr_unary_minus, + STATE(644), 1, + sym__val_number, + STATE(661), 1, + sym__str_double_quotes, + STATE(662), 1, + sym__inter_single_quotes, + STATE(663), 1, + sym__inter_double_quotes, + STATE(2956), 1, + sym_comment, + STATE(3078), 1, + sym_val_range, + STATE(3105), 1, + sym__expression, + STATE(6363), 1, + sym__expr_binary_expression, + ACTIONS(5519), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5525), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6826), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(6830), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(6840), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + STATE(645), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(5513), 4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + STATE(643), 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, + [30242] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7333), 1, + ACTIONS(6899), 1, anon_sym_LBRACK2, - STATE(3382), 1, + STATE(2957), 1, sym_comment, - ACTIONS(1259), 16, + ACTIONS(1143), 16, anon_sym_LBRACK, anon_sym_DOLLAR, anon_sym_GT, @@ -373732,7 +333155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1261), 42, + ACTIONS(1145), 42, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_STAR_STAR, @@ -373775,14 +333198,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [30240] = 5, + [30314] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7335), 1, + ACTIONS(6901), 1, anon_sym_QMARK2, - STATE(3383), 1, + STATE(2958), 1, sym_comment, - ACTIONS(1072), 15, + ACTIONS(1026), 15, anon_sym_COLON, anon_sym_COMMA, anon_sym_LPAREN, @@ -373798,7 +333221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1070), 43, + ACTIONS(1024), 43, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -373842,80 +333265,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [30312] = 4, + [30386] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3384), 1, + STATE(2959), 1, sym_comment, - ACTIONS(1111), 14, - anon_sym_LPAREN, + ACTIONS(1047), 16, anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1049), 43, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, 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(1109), 45, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [30382] = 5, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [30456] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7250), 1, + ACTIONS(6770), 1, aux_sym__immediate_decimal_token2, - STATE(3385), 1, + STATE(2960), 1, sym_comment, - ACTIONS(2583), 14, + ACTIONS(2358), 14, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -373930,7 +333353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2581), 44, + ACTIONS(2356), 44, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -373975,298 +333398,96 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [30454] = 40, + [30528] = 40, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2688), 1, + ACTIONS(1493), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(1495), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1718), 1, + anon_sym_LBRACK, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(2690), 1, + ACTIONS(1724), 1, anon_sym_DOLLAR, - ACTIONS(2718), 1, + ACTIONS(1730), 1, + anon_sym_LBRACE, + ACTIONS(1752), 1, anon_sym_0b, - ACTIONS(2728), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2730), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3391), 1, + ACTIONS(1758), 1, anon_sym_DQUOTE, - ACTIONS(3882), 1, - anon_sym_LBRACK, - ACTIONS(3884), 1, + ACTIONS(4094), 1, anon_sym_DASH, - ACTIONS(3886), 1, - anon_sym_LBRACE, - ACTIONS(3904), 1, + ACTIONS(4112), 1, aux_sym__val_number_decimal_token3, - ACTIONS(7191), 1, - sym_val_date, - ACTIONS(7224), 1, - sym_identifier, - ACTIONS(7226), 1, + ACTIONS(6897), 1, + sym_cmd_identifier, + ACTIONS(6903), 1, anon_sym_DOT_DOT, - ACTIONS(7228), 1, + ACTIONS(6905), 1, anon_sym_not, - ACTIONS(7232), 1, + ACTIONS(6909), 1, anon_sym_null, - ACTIONS(7236), 1, + ACTIONS(6913), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7238), 1, + ACTIONS(6915), 1, aux_sym__val_number_decimal_token2, - ACTIONS(7240), 1, + ACTIONS(6917), 1, anon_sym_DOT2, - STATE(3386), 1, + ACTIONS(6921), 1, + sym_val_date, + STATE(2961), 1, sym_comment, - STATE(4486), 1, - sym__var, - STATE(5463), 1, - sym__val_number, - STATE(5541), 1, - sym__str_double_quotes, - STATE(5894), 1, - sym__val_number_decimal, - STATE(6245), 1, - sym__expr_unary_minus, - STATE(6258), 1, - sym__inter_single_quotes, - STATE(6277), 1, - sym__inter_double_quotes, - STATE(6316), 1, - sym_val_variable, - STATE(6385), 1, - sym_expr_parenthesized, - STATE(6786), 1, - sym__expr_binary_expression, - STATE(7168), 1, + STATE(3078), 1, sym_val_range, - STATE(10501), 1, + STATE(3105), 1, sym__expression, - ACTIONS(2720), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3393), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6107), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(7230), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(7234), 2, - anon_sym_true, - anon_sym_false, - STATE(6243), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(2714), 4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - STATE(6175), 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, - [30596] = 39, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2688), 1, - anon_sym_LPAREN, - ACTIONS(2690), 1, - anon_sym_DOLLAR, - ACTIONS(2718), 1, - anon_sym_0b, - ACTIONS(2728), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2730), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3391), 1, - anon_sym_DQUOTE, - ACTIONS(3880), 1, - anon_sym_COLON, - ACTIONS(3882), 1, - anon_sym_LBRACK, - ACTIONS(3884), 1, - anon_sym_DASH, - ACTIONS(3886), 1, - anon_sym_LBRACE, - ACTIONS(3890), 1, - anon_sym_not, - ACTIONS(3904), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(7179), 1, - anon_sym_null, - ACTIONS(7191), 1, - sym_val_date, - ACTIONS(7226), 1, - anon_sym_DOT_DOT, - ACTIONS(7236), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7238), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(7240), 1, - anon_sym_DOT2, - STATE(3387), 1, - sym_comment, - STATE(4486), 1, + STATE(4556), 1, sym__var, - STATE(5463), 1, - sym__val_number, - STATE(5541), 1, - sym__str_double_quotes, - STATE(5894), 1, + STATE(5095), 1, sym__val_number_decimal, - STATE(6245), 1, - sym__expr_unary_minus, - STATE(6258), 1, - sym__inter_single_quotes, - STATE(6277), 1, - sym__inter_double_quotes, - STATE(6316), 1, + STATE(5224), 1, sym_val_variable, - STATE(6385), 1, + STATE(5322), 1, sym_expr_parenthesized, - STATE(6786), 1, - sym__expr_binary_expression, - STATE(7168), 1, - sym_val_range, - STATE(10497), 1, - sym__expression, - ACTIONS(2720), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3393), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(7181), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(7230), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(6243), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(2714), 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(6175), 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, - [30736] = 39, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2688), 1, - anon_sym_LPAREN, - ACTIONS(2690), 1, - anon_sym_DOLLAR, - ACTIONS(2718), 1, - anon_sym_0b, - ACTIONS(2728), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2730), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3391), 1, - anon_sym_DQUOTE, - ACTIONS(3882), 1, - anon_sym_LBRACK, - ACTIONS(3884), 1, - anon_sym_DASH, - ACTIONS(3886), 1, - anon_sym_LBRACE, - ACTIONS(3890), 1, - anon_sym_not, - ACTIONS(3904), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3984), 1, - anon_sym_COLON, - ACTIONS(7179), 1, - anon_sym_null, - ACTIONS(7191), 1, - sym_val_date, - ACTIONS(7226), 1, - anon_sym_DOT_DOT, - ACTIONS(7236), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7238), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(7240), 1, - anon_sym_DOT2, - STATE(3388), 1, - sym_comment, - STATE(4486), 1, - sym__var, - STATE(5463), 1, - sym__val_number, - STATE(5541), 1, - sym__str_double_quotes, - STATE(5894), 1, - sym__val_number_decimal, - STATE(6245), 1, - sym__expr_unary_minus, - STATE(6258), 1, + STATE(6008), 1, sym__inter_single_quotes, - STATE(6277), 1, + STATE(6015), 1, sym__inter_double_quotes, - STATE(6316), 1, - sym_val_variable, - STATE(6385), 1, - sym_expr_parenthesized, - STATE(6786), 1, + STATE(6045), 1, + sym__expr_unary_minus, + STATE(6109), 1, + sym__val_number, + STATE(6178), 1, + sym__str_double_quotes, + STATE(6373), 1, sym__expr_binary_expression, - STATE(7168), 1, - sym_val_range, - STATE(10497), 1, - sym__expression, - ACTIONS(2720), 2, + ACTIONS(1754), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3393), 2, + ACTIONS(1760), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(7181), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(7230), 2, + ACTIONS(6907), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(6243), 3, + ACTIONS(6911), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(6919), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + STATE(6044), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(2714), 6, + ACTIONS(1748), 4, aux_sym__val_number_token1, aux_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(6175), 12, + STATE(6041), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -374279,19 +333500,18 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [30876] = 5, + [30670] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7335), 1, - anon_sym_QMARK2, - STATE(3389), 1, + STATE(2962), 1, sym_comment, - ACTIONS(1072), 15, + ACTIONS(1022), 16, anon_sym_COLON, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, + anon_sym_QMARK2, anon_sym_DOT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -374302,7 +333522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1070), 43, + ACTIONS(1020), 43, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -374345,15 +333565,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT2, aux_sym__val_number_token4, aux_sym__val_number_token6, - aux_sym__record_key_token2, - [30948] = 5, + aux_sym__record_key_token2, + [30740] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2963), 1, + sym_comment, + ACTIONS(1037), 16, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1039), 43, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [30810] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1284), 1, - aux_sym_unquoted_token6, - STATE(3390), 1, + STATE(2964), 1, sym_comment, - ACTIONS(1160), 8, + ACTIONS(1157), 8, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -374362,7 +333646,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1158), 50, + ACTIONS(1155), 51, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -374413,106 +333697,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, - [31020] = 4, + aux_sym_unquoted_token6, + [30880] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3391), 1, + STATE(2965), 1, sym_comment, - ACTIONS(2439), 15, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(1041), 16, anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2437), 44, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, + anon_sym_GT, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - anon_sym_DOT_DOT2, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [31090] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - STATE(3392), 1, - sym_comment, - ACTIONS(1249), 8, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1043), 43, 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(1247), 50, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT_DOT, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -374526,15 +333745,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not, 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -374542,23 +333758,136 @@ 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, + [30950] = 39, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3100), 1, + anon_sym_LPAREN, + ACTIONS(3102), 1, + anon_sym_DOLLAR, + ACTIONS(3128), 1, anon_sym_0b, + ACTIONS(3134), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3136), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3178), 1, + anon_sym_DQUOTE, + ACTIONS(3655), 1, + anon_sym_COLON, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_DASH, + ACTIONS(3661), 1, + anon_sym_LBRACE, + ACTIONS(3665), 1, + anon_sym_not, + ACTIONS(3679), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6744), 1, + anon_sym_DOT_DOT, + ACTIONS(6754), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6756), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6758), 1, + anon_sym_DOT2, + ACTIONS(6760), 1, + sym_val_date, + ACTIONS(6780), 1, + anon_sym_null, + STATE(2966), 1, + sym_comment, + STATE(3929), 1, + sym__var, + STATE(4922), 1, + sym__val_number, + STATE(5067), 1, + sym__str_double_quotes, + STATE(5301), 1, + sym__val_number_decimal, + STATE(5725), 1, + sym__inter_single_quotes, + STATE(5726), 1, + sym__inter_double_quotes, + STATE(5745), 1, + sym__expr_unary_minus, + STATE(5903), 1, + sym_val_variable, + STATE(5960), 1, + sym_expr_parenthesized, + STATE(6383), 1, + sym__expr_binary_expression, + STATE(6728), 1, + sym_val_range, + STATE(10016), 1, + sym__expression, + ACTIONS(3130), 2, anon_sym_0o, anon_sym_0x, - sym_val_date, - [31162] = 6, - ACTIONS(113), 1, + ACTIONS(3180), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6748), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(6782), 2, + anon_sym_true, + anon_sym_false, + STATE(5743), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3124), 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(5659), 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, + [31090] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3868), 1, - sym__entry_separator, - ACTIONS(7337), 1, - anon_sym_DOT_DOT2, - STATE(3393), 1, + ACTIONS(6738), 1, + aux_sym__immediate_decimal_token2, + STATE(2967), 1, sym_comment, - ACTIONS(7339), 2, + ACTIONS(2231), 14, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(3866), 55, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2229), 44, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -374571,8 +333900,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_module, anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_error, anon_sym_list, anon_sym_DASH, @@ -374587,7 +333914,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_match, - anon_sym_RBRACE, anon_sym_try, anon_sym_catch, anon_sym_return, @@ -374600,33 +333926,330 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_as, anon_sym_PLUS, + anon_sym_DOT_DOT2, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [31162] = 40, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3100), 1, + anon_sym_LPAREN, + ACTIONS(3102), 1, + anon_sym_DOLLAR, + ACTIONS(3128), 1, + anon_sym_0b, + ACTIONS(3134), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3136), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3178), 1, + anon_sym_DQUOTE, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_DASH, + ACTIONS(3661), 1, + anon_sym_LBRACE, + ACTIONS(3679), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6742), 1, + sym_identifier, + ACTIONS(6744), 1, + anon_sym_DOT_DOT, + ACTIONS(6746), 1, + anon_sym_not, + ACTIONS(6750), 1, + anon_sym_null, + ACTIONS(6754), 1, aux_sym__val_number_decimal_token1, + ACTIONS(6756), 1, aux_sym__val_number_decimal_token2, + ACTIONS(6758), 1, anon_sym_DOT2, + ACTIONS(6760), 1, + sym_val_date, + STATE(2968), 1, + sym_comment, + STATE(3929), 1, + sym__var, + STATE(4922), 1, + sym__val_number, + STATE(5067), 1, + sym__str_double_quotes, + STATE(5301), 1, + sym__val_number_decimal, + STATE(5725), 1, + sym__inter_single_quotes, + STATE(5726), 1, + sym__inter_double_quotes, + STATE(5745), 1, + sym__expr_unary_minus, + STATE(5903), 1, + sym_val_variable, + STATE(5960), 1, + sym_expr_parenthesized, + STATE(6383), 1, + sym__expr_binary_expression, + STATE(6728), 1, + sym_val_range, + STATE(10021), 1, + sym__expression, + ACTIONS(3130), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3180), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5665), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(6748), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(6752), 2, + anon_sym_true, + anon_sym_false, + STATE(5743), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3124), 4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + STATE(5659), 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, + [31304] = 39, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3100), 1, + anon_sym_LPAREN, + ACTIONS(3102), 1, + anon_sym_DOLLAR, + ACTIONS(3128), 1, + anon_sym_0b, + ACTIONS(3134), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3136), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3178), 1, + anon_sym_DQUOTE, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_DASH, + ACTIONS(3661), 1, + anon_sym_LBRACE, + ACTIONS(3665), 1, + anon_sym_not, + ACTIONS(3679), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3707), 1, + anon_sym_COLON, + ACTIONS(6744), 1, + anon_sym_DOT_DOT, + ACTIONS(6754), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6756), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6758), 1, + anon_sym_DOT2, + ACTIONS(6760), 1, + sym_val_date, + ACTIONS(6780), 1, + anon_sym_null, + STATE(2969), 1, + sym_comment, + STATE(3929), 1, + sym__var, + STATE(4922), 1, + sym__val_number, + STATE(5067), 1, + sym__str_double_quotes, + STATE(5301), 1, + sym__val_number_decimal, + STATE(5725), 1, + sym__inter_single_quotes, + STATE(5726), 1, + sym__inter_double_quotes, + STATE(5745), 1, + sym__expr_unary_minus, + STATE(5903), 1, + sym_val_variable, + STATE(5960), 1, + sym_expr_parenthesized, + STATE(6383), 1, + sym__expr_binary_expression, + STATE(6728), 1, + sym_val_range, + STATE(10016), 1, + sym__expression, + ACTIONS(3130), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3180), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6748), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(6782), 2, + anon_sym_true, + anon_sym_false, + STATE(5743), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3124), 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(5659), 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, + [31444] = 40, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1493), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(1495), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1718), 1, + anon_sym_LBRACK, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1724), 1, + anon_sym_DOLLAR, + ACTIONS(1730), 1, + anon_sym_LBRACE, + ACTIONS(1752), 1, + anon_sym_0b, + ACTIONS(1758), 1, anon_sym_DQUOTE, + ACTIONS(4094), 1, + anon_sym_DASH, + ACTIONS(4112), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6816), 1, + sym_cmd_identifier, + ACTIONS(6903), 1, + anon_sym_DOT_DOT, + ACTIONS(6905), 1, + anon_sym_not, + ACTIONS(6909), 1, + anon_sym_null, + ACTIONS(6913), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6915), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6917), 1, + anon_sym_DOT2, + ACTIONS(6921), 1, + sym_val_date, + STATE(2970), 1, + sym_comment, + STATE(3078), 1, + sym_val_range, + STATE(3122), 1, + sym__expression, + STATE(4556), 1, + sym__var, + STATE(5095), 1, + sym__val_number_decimal, + STATE(5224), 1, + sym_val_variable, + STATE(5322), 1, + sym_expr_parenthesized, + STATE(6008), 1, + sym__inter_single_quotes, + STATE(6015), 1, + sym__inter_double_quotes, + STATE(6045), 1, + sym__expr_unary_minus, + STATE(6109), 1, + sym__val_number, + STATE(6178), 1, + sym__str_double_quotes, + STATE(6373), 1, + sym__expr_binary_expression, + ACTIONS(1754), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1760), 2, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__record_key_token2, - [31236] = 6, + ACTIONS(6907), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(6911), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(6919), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + STATE(6044), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(1748), 4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + STATE(6041), 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, + [31586] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3520), 1, + ACTIONS(3743), 1, sym__entry_separator, - ACTIONS(7341), 1, + ACTIONS(6923), 1, anon_sym_DOT_DOT2, - STATE(3394), 1, + STATE(2971), 1, sym_comment, - ACTIONS(7343), 2, + ACTIONS(6925), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(3518), 55, + ACTIONS(3741), 55, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -374682,28 +334305,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [31310] = 4, - ACTIONS(3), 1, + [31660] = 6, + ACTIONS(113), 1, anon_sym_POUND, - STATE(3395), 1, + ACTIONS(3314), 1, + sym__entry_separator, + ACTIONS(6927), 1, + anon_sym_DOT_DOT2, + STATE(2972), 1, sym_comment, - ACTIONS(2549), 15, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, + ACTIONS(6929), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2547), 44, + ACTIONS(3312), 55, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -374716,6 +334330,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_module, anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_error, anon_sym_list, anon_sym_DASH, @@ -374730,6 +334346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_match, + anon_sym_RBRACE, anon_sym_try, anon_sym_catch, anon_sym_return, @@ -374742,86 +334359,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_as, anon_sym_PLUS, - anon_sym_DOT_DOT2, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [31380] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3396), 1, - sym_comment, - ACTIONS(3507), 15, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_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_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3505), 44, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, aux_sym__record_key_token2, - [31450] = 5, + [31734] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6816), 1, + ACTIONS(6354), 1, aux_sym_unquoted_token5, - STATE(3397), 1, + STATE(2973), 1, sym_comment, - ACTIONS(959), 15, + ACTIONS(938), 15, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -374837,7 +334396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(961), 43, + ACTIONS(940), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -374881,58 +334440,53 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [31522] = 4, + [31806] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(3398), 1, + ACTIONS(6931), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(2974), 1, sym_comment, - ACTIONS(2439), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(2437), 56, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, + ACTIONS(1139), 58, + anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, + anon_sym_GT, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_DOT_DOT2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + 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, anon_sym_DOT2, @@ -374943,18 +334497,23 @@ 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, - aux_sym__record_key_token2, - [31592] = 5, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [31876] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7254), 1, + ACTIONS(6933), 1, aux_sym__immediate_decimal_token2, - STATE(3399), 1, + STATE(2975), 1, sym_comment, - ACTIONS(2439), 14, + ACTIONS(2364), 14, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -374969,7 +334528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2437), 44, + ACTIONS(2362), 44, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -375014,198 +334573,96 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [31664] = 40, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5929), 1, - anon_sym_LBRACK, - ACTIONS(5935), 1, - anon_sym_DASH, - ACTIONS(5937), 1, - anon_sym_LBRACE, - ACTIONS(5961), 1, - anon_sym_0b, - ACTIONS(5967), 1, - anon_sym_DQUOTE, - ACTIONS(5971), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5973), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(7272), 1, - sym_cmd_identifier, - ACTIONS(7345), 1, - anon_sym_LPAREN, - ACTIONS(7347), 1, - anon_sym_DOLLAR, - ACTIONS(7349), 1, - anon_sym_DOT_DOT, - ACTIONS(7351), 1, - anon_sym_not, - ACTIONS(7355), 1, - anon_sym_null, - ACTIONS(7359), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7361), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(7363), 1, - anon_sym_DOT2, - ACTIONS(7365), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(7369), 1, - sym_val_date, - STATE(773), 1, - sym__var, - STATE(787), 1, - sym__val_number_decimal, - STATE(811), 1, - sym_expr_parenthesized, - STATE(817), 1, - sym_val_variable, - STATE(868), 1, - sym__str_double_quotes, - STATE(869), 1, - sym__inter_single_quotes, - STATE(870), 1, - sym__inter_double_quotes, - STATE(893), 1, - sym__expr_unary_minus, - STATE(935), 1, - sym__val_number, - STATE(3400), 1, - sym_comment, - STATE(3507), 1, - sym_val_range, - STATE(3549), 1, - sym__expression, - STATE(6810), 1, - sym__expr_binary_expression, - ACTIONS(5963), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5969), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(7353), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(7357), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(7367), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - STATE(909), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(5957), 4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - STATE(920), 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, - [31806] = 40, + [31948] = 40, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2688), 1, + ACTIONS(3100), 1, anon_sym_LPAREN, - ACTIONS(2690), 1, + ACTIONS(3102), 1, anon_sym_DOLLAR, - ACTIONS(2718), 1, + ACTIONS(3128), 1, anon_sym_0b, - ACTIONS(2728), 1, + ACTIONS(3134), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2730), 1, + ACTIONS(3136), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3391), 1, + ACTIONS(3178), 1, anon_sym_DQUOTE, - ACTIONS(3882), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(3884), 1, + ACTIONS(3659), 1, anon_sym_DASH, - ACTIONS(3886), 1, + ACTIONS(3661), 1, anon_sym_LBRACE, - ACTIONS(3904), 1, + ACTIONS(3679), 1, aux_sym__val_number_decimal_token3, - ACTIONS(7191), 1, - sym_val_date, - ACTIONS(7226), 1, + ACTIONS(6744), 1, anon_sym_DOT_DOT, - ACTIONS(7228), 1, + ACTIONS(6746), 1, anon_sym_not, - ACTIONS(7232), 1, + ACTIONS(6750), 1, anon_sym_null, - ACTIONS(7236), 1, + ACTIONS(6754), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7238), 1, + ACTIONS(6756), 1, aux_sym__val_number_decimal_token2, - ACTIONS(7240), 1, + ACTIONS(6758), 1, anon_sym_DOT2, - ACTIONS(7371), 1, + ACTIONS(6760), 1, + sym_val_date, + ACTIONS(6935), 1, sym_identifier, - STATE(3401), 1, + STATE(2976), 1, sym_comment, - STATE(4486), 1, + STATE(3929), 1, sym__var, - STATE(5463), 1, + STATE(4922), 1, sym__val_number, - STATE(5541), 1, + STATE(5067), 1, sym__str_double_quotes, - STATE(5894), 1, + STATE(5301), 1, sym__val_number_decimal, - STATE(6245), 1, - sym__expr_unary_minus, - STATE(6258), 1, + STATE(5725), 1, sym__inter_single_quotes, - STATE(6277), 1, + STATE(5726), 1, sym__inter_double_quotes, - STATE(6316), 1, + STATE(5745), 1, + sym__expr_unary_minus, + STATE(5903), 1, sym_val_variable, - STATE(6385), 1, + STATE(5960), 1, sym_expr_parenthesized, - STATE(6786), 1, + STATE(6383), 1, sym__expr_binary_expression, - STATE(7168), 1, + STATE(6728), 1, sym_val_range, - STATE(10643), 1, + STATE(10207), 1, sym__expression, - ACTIONS(2720), 2, + ACTIONS(3130), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3393), 2, + ACTIONS(3180), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6107), 2, + ACTIONS(5665), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(7230), 2, + ACTIONS(6748), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(7234), 2, + ACTIONS(6752), 2, anon_sym_true, anon_sym_false, - STATE(6243), 3, + STATE(5743), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(2714), 4, + ACTIONS(3124), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6175), 12, + STATE(5659), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -375218,29 +334675,16 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [31948] = 5, - ACTIONS(3), 1, + [32090] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7373), 1, - aux_sym__immediate_decimal_token2, - STATE(3402), 1, + STATE(2977), 1, sym_comment, - ACTIONS(2549), 14, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, + ACTIONS(2231), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2547), 44, + sym__entry_separator, + ACTIONS(2229), 56, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -375253,6 +334697,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_module, anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_error, anon_sym_list, anon_sym_DASH, @@ -375267,6 +334713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_match, + anon_sym_RBRACE, anon_sym_try, anon_sym_catch, anon_sym_return, @@ -375281,20 +334728,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DOT_DOT2, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, aux_sym__record_key_token2, - [32020] = 4, + [32160] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(3403), 1, + STATE(2978), 1, sym_comment, - ACTIONS(2549), 3, + ACTIONS(2364), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(2547), 56, + ACTIONS(2362), 56, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -375351,16 +334807,16 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [32090] = 4, + [32230] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(3404), 1, + STATE(2979), 1, sym_comment, - ACTIONS(3507), 3, + ACTIONS(2404), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(3505), 56, + ACTIONS(2402), 56, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -375417,244 +334873,107 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [32160] = 40, + [32300] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1695), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(1697), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1936), 1, - anon_sym_LBRACK, - ACTIONS(1940), 1, + ACTIONS(6901), 1, + anon_sym_QMARK2, + STATE(2980), 1, + sym_comment, + ACTIONS(1026), 15, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1942), 1, anon_sym_DOLLAR, - ACTIONS(1948), 1, - anon_sym_LBRACE, - ACTIONS(1970), 1, - anon_sym_0b, - ACTIONS(1976), 1, - anon_sym_DQUOTE, - ACTIONS(4947), 1, - anon_sym_DASH, - ACTIONS(4965), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(7274), 1, - anon_sym_DOT_DOT, - ACTIONS(7276), 1, - anon_sym_not, - ACTIONS(7280), 1, - anon_sym_null, - ACTIONS(7284), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7286), 1, + anon_sym_RBRACE, + anon_sym_DOT, aux_sym__val_number_decimal_token2, - ACTIONS(7288), 1, - anon_sym_DOT2, - ACTIONS(7292), 1, - sym_val_date, - ACTIONS(7375), 1, - sym_cmd_identifier, - STATE(3405), 1, - sym_comment, - STATE(3507), 1, - sym_val_range, - STATE(3532), 1, - sym__expression, - STATE(5205), 1, - sym__var, - STATE(5499), 1, - sym__val_number_decimal, - STATE(5638), 1, - sym_expr_parenthesized, - STATE(5789), 1, - sym_val_variable, - STATE(6449), 1, - sym__str_double_quotes, - STATE(6520), 1, - sym__expr_unary_minus, - STATE(6539), 1, - sym__val_number, - STATE(6557), 1, - sym__inter_single_quotes, - STATE(6558), 1, - sym__inter_double_quotes, - STATE(6791), 1, - sym__expr_binary_expression, - ACTIONS(1972), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1978), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(7278), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(7282), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(7290), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - STATE(6477), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(1966), 4, + aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6614), 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, - [32302] = 40, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5929), 1, - anon_sym_LBRACK, - ACTIONS(5935), 1, - anon_sym_DASH, - ACTIONS(5937), 1, - anon_sym_LBRACE, - ACTIONS(5961), 1, - anon_sym_0b, - ACTIONS(5967), 1, anon_sym_DQUOTE, - ACTIONS(5971), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5973), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(7345), 1, - anon_sym_LPAREN, - ACTIONS(7347), 1, - anon_sym_DOLLAR, - ACTIONS(7349), 1, - anon_sym_DOT_DOT, - ACTIONS(7351), 1, - anon_sym_not, - ACTIONS(7355), 1, - anon_sym_null, - ACTIONS(7359), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7361), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(7363), 1, - anon_sym_DOT2, - ACTIONS(7365), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(7369), 1, - sym_val_date, - ACTIONS(7375), 1, - sym_cmd_identifier, - STATE(773), 1, - sym__var, - STATE(787), 1, - sym__val_number_decimal, - STATE(811), 1, - sym_expr_parenthesized, - STATE(817), 1, - sym_val_variable, - STATE(868), 1, - sym__str_double_quotes, - STATE(869), 1, - sym__inter_single_quotes, - STATE(870), 1, - sym__inter_double_quotes, - STATE(893), 1, - sym__expr_unary_minus, - STATE(935), 1, - sym__val_number, - STATE(3406), 1, - sym_comment, - STATE(3507), 1, - sym_val_range, - STATE(3532), 1, - sym__expression, - STATE(6810), 1, - sym__expr_binary_expression, - ACTIONS(5963), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5969), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(7353), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(7357), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(7367), 2, + ACTIONS(1024), 43, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, aux_sym__val_number_token4, aux_sym__val_number_token6, - STATE(909), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(5957), 4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - STATE(920), 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, - [32444] = 4, - ACTIONS(3), 1, + aux_sym__record_key_token2, + [32372] = 5, + ACTIONS(113), 1, anon_sym_POUND, - STATE(3407), 1, + ACTIONS(1149), 1, + aux_sym_unquoted_token6, + STATE(2981), 1, sym_comment, - ACTIONS(1109), 16, + ACTIONS(1091), 8, + 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(1089), 50, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_DOT_DOT, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1111), 43, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -375668,12 +334987,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_not, 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -375681,18 +335003,82 @@ 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, + [32444] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2982), 1, + sym_comment, + ACTIONS(1049), 14, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + ACTIONS(1047), 45, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, [32514] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3408), 1, + STATE(2983), 1, sym_comment, - ACTIONS(1065), 16, + ACTIONS(1035), 16, anon_sym_COLON, anon_sym_COMMA, anon_sym_LPAREN, @@ -375709,7 +335095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1063), 43, + ACTIONS(1033), 43, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -375756,90 +335142,90 @@ static const uint16_t ts_small_parse_table[] = { [32584] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5473), 1, + ACTIONS(2804), 1, + anon_sym_LPAREN, + ACTIONS(2806), 1, + anon_sym_DOLLAR, + ACTIONS(2832), 1, + anon_sym_0b, + ACTIONS(2842), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2844), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4164), 1, anon_sym_LBRACK, - ACTIONS(5479), 1, + ACTIONS(4166), 1, anon_sym_DASH, - ACTIONS(5481), 1, + ACTIONS(4168), 1, anon_sym_LBRACE, - ACTIONS(5485), 1, + ACTIONS(4172), 1, anon_sym_not, - ACTIONS(5505), 1, - anon_sym_0b, - ACTIONS(5511), 1, + ACTIONS(4192), 1, anon_sym_DQUOTE, - ACTIONS(5515), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5517), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(7377), 1, - anon_sym_LPAREN, - ACTIONS(7379), 1, - anon_sym_DOLLAR, - ACTIONS(7381), 1, + ACTIONS(5057), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6610), 1, anon_sym_DOT_DOT, - ACTIONS(7385), 1, + ACTIONS(6614), 1, anon_sym_null, - ACTIONS(7389), 1, + ACTIONS(6618), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7391), 1, + ACTIONS(6620), 1, aux_sym__val_number_decimal_token2, - ACTIONS(7393), 1, + ACTIONS(6622), 1, anon_sym_DOT2, - ACTIONS(7395), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(7397), 1, + ACTIONS(6624), 1, sym_val_date, - STATE(342), 1, + STATE(2984), 1, + sym_comment, + STATE(4639), 1, sym__var, - STATE(380), 1, + STATE(5069), 1, sym__val_number_decimal, - STATE(469), 1, + STATE(5273), 1, sym_expr_parenthesized, - STATE(500), 1, + STATE(5385), 1, sym_val_variable, - STATE(692), 1, + STATE(5999), 1, sym__expr_unary_minus, - STATE(695), 1, - sym__str_double_quotes, - STATE(732), 1, + STATE(6110), 1, sym__val_number, - STATE(743), 1, + STATE(6195), 1, + sym__str_double_quotes, + STATE(6197), 1, sym__inter_single_quotes, - STATE(744), 1, + STATE(6198), 1, sym__inter_double_quotes, - STATE(2906), 1, - sym__expression, - STATE(2934), 1, - sym_val_range, - STATE(3409), 1, - sym_comment, - STATE(6787), 1, + STATE(6374), 1, sym__expr_binary_expression, - ACTIONS(5507), 2, + STATE(6728), 1, + sym_val_range, + STATE(7649), 1, + sym__expression, + ACTIONS(2834), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(5513), 2, + ACTIONS(4194), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(7383), 2, + ACTIONS(6612), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(7387), 2, + ACTIONS(6616), 2, anon_sym_true, anon_sym_false, - STATE(690), 3, + STATE(5998), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(5501), 6, + ACTIONS(2828), 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(731), 12, + STATE(6108), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -375855,9 +335241,9 @@ static const uint16_t ts_small_parse_table[] = { [32721] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3410), 1, + STATE(2985), 1, sym_comment, - ACTIONS(1316), 15, + ACTIONS(1061), 15, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -375873,7 +335259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1318), 43, + ACTIONS(1063), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -375920,9 +335306,9 @@ static const uint16_t ts_small_parse_table[] = { [32790] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3411), 1, + STATE(2986), 1, sym_comment, - ACTIONS(1320), 15, + ACTIONS(1237), 15, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -375938,7 +335324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1322), 43, + ACTIONS(1239), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -375985,9 +335371,9 @@ static const uint16_t ts_small_parse_table[] = { [32859] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3412), 1, + STATE(2987), 1, sym_comment, - ACTIONS(936), 15, + ACTIONS(1241), 15, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -376003,7 +335389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(938), 43, + ACTIONS(1243), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -376047,111 +335433,77 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [32928] = 38, + [32928] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4151), 1, - anon_sym_DASH, - ACTIONS(4177), 1, - anon_sym_0b, - ACTIONS(4183), 1, - anon_sym_DQUOTE, - ACTIONS(4187), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4189), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(5635), 1, - anon_sym_LBRACE, - ACTIONS(5639), 1, - anon_sym_not, - ACTIONS(7399), 1, + STATE(2988), 1, + sym_comment, + ACTIONS(1039), 15, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(7401), 1, anon_sym_DOLLAR, - ACTIONS(7403), 1, - anon_sym_DOT_DOT, - ACTIONS(7407), 1, - anon_sym_null, - ACTIONS(7411), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7413), 1, + anon_sym_RBRACE, + anon_sym_DOT, aux_sym__val_number_decimal_token2, - ACTIONS(7415), 1, - anon_sym_DOT2, - ACTIONS(7417), 1, aux_sym__val_number_decimal_token3, - ACTIONS(7419), 1, - sym_val_date, - STATE(3413), 1, - sym_comment, - STATE(4110), 1, - sym__var, - STATE(4270), 1, - sym__val_number_decimal, - STATE(4648), 1, - sym_expr_parenthesized, - STATE(4664), 1, - sym_val_variable, - STATE(5025), 1, - sym__str_double_quotes, - STATE(5028), 1, - sym__inter_single_quotes, - STATE(5029), 1, - sym__inter_double_quotes, - STATE(5030), 1, - sym__expr_unary_minus, - STATE(5114), 1, - sym__val_number, - STATE(6793), 1, - sym__expr_binary_expression, - STATE(7168), 1, - sym_val_range, - STATE(7646), 1, - sym__expression, - ACTIONS(4179), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4185), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(7405), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(7409), 2, - anon_sym_true, - anon_sym_false, - STATE(5022), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(4173), 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, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1037), 43, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__val_number_token4, aux_sym__val_number_token6, - STATE(5065), 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, - [33065] = 4, + aux_sym__record_key_token2, + [32997] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3414), 1, + STATE(2989), 1, sym_comment, - ACTIONS(1414), 15, + ACTIONS(1245), 15, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -376167,7 +335519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1416), 43, + ACTIONS(1247), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -376211,12 +335563,77 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [33134] = 4, + [33066] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3415), 1, + STATE(2990), 1, + sym_comment, + ACTIONS(1043), 15, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1041), 43, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [33135] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2991), 1, sym_comment, - ACTIONS(1172), 15, + ACTIONS(1265), 15, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -376232,7 +335649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1174), 43, + ACTIONS(1267), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -376276,12 +335693,79 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [33203] = 4, + [33204] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3416), 1, + ACTIONS(6937), 1, + anon_sym_DOT_DOT2, + STATE(2992), 1, + sym_comment, + ACTIONS(6939), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3713), 12, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3711), 43, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [33277] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2993), 1, sym_comment, - ACTIONS(1418), 15, + ACTIONS(1155), 15, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -376297,7 +335781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1420), 43, + ACTIONS(1157), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -376341,12 +335825,79 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [33272] = 4, + [33346] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3417), 1, + ACTIONS(6941), 1, + anon_sym_DOT_DOT2, + STATE(2994), 1, + sym_comment, + ACTIONS(6943), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3693), 12, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3691), 43, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [33419] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2995), 1, sym_comment, - ACTIONS(1342), 15, + ACTIONS(1265), 15, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -376362,7 +335913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1344), 43, + ACTIONS(1267), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -376406,12 +335957,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [33341] = 4, + [33488] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3418), 1, + STATE(2996), 1, sym_comment, - ACTIONS(1346), 15, + ACTIONS(1287), 15, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -376427,7 +335978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1348), 43, + ACTIONS(1289), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -376471,12 +336022,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [33410] = 4, + [33557] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3419), 1, + STATE(2997), 1, sym_comment, - ACTIONS(1362), 15, + ACTIONS(1249), 15, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -376492,7 +336043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1364), 43, + ACTIONS(1251), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -376536,17 +336087,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [33479] = 4, + [33626] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3420), 1, + ACTIONS(6945), 1, + anon_sym_DOT_DOT2, + STATE(2998), 1, sym_comment, - ACTIONS(1170), 14, + ACTIONS(6947), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3701), 12, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, @@ -376556,7 +336110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1168), 44, + ACTIONS(3699), 43, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -376595,117 +336149,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_as, anon_sym_PLUS, - anon_sym_DOT_DOT2, aux_sym__val_number_decimal_token1, anon_sym_DOT2, aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [33548] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2688), 1, - anon_sym_LPAREN, - ACTIONS(2690), 1, - anon_sym_DOLLAR, - ACTIONS(2718), 1, - anon_sym_0b, - ACTIONS(2728), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2730), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3391), 1, - anon_sym_DQUOTE, - ACTIONS(3882), 1, - anon_sym_LBRACK, - ACTIONS(3884), 1, - anon_sym_DASH, - ACTIONS(3886), 1, - anon_sym_LBRACE, - ACTIONS(3890), 1, - anon_sym_not, - ACTIONS(7179), 1, - anon_sym_null, - ACTIONS(7183), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7185), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(7187), 1, - anon_sym_DOT2, - ACTIONS(7189), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(7191), 1, - sym_val_date, - ACTIONS(7421), 1, - anon_sym_DOT_DOT, - STATE(3421), 1, - sym_comment, - STATE(4486), 1, - sym__var, - STATE(5463), 1, - sym__val_number, - STATE(5541), 1, - sym__str_double_quotes, - STATE(5673), 1, - sym__val_number_decimal, - STATE(6245), 1, - sym__expr_unary_minus, - STATE(6258), 1, - sym__inter_single_quotes, - STATE(6277), 1, - sym__inter_double_quotes, - STATE(6329), 1, - sym_expr_parenthesized, - STATE(6384), 1, - sym_val_variable, - STATE(6796), 1, - sym__expr_binary_expression, - STATE(7168), 1, - sym_val_range, - STATE(11288), 1, - sym__expression, - ACTIONS(2720), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3393), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(7181), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(7423), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(6243), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(2714), 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(6175), 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, - [33685] = 4, + [33699] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3422), 1, + STATE(2999), 1, sym_comment, - ACTIONS(1059), 15, + ACTIONS(1171), 15, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -376721,7 +336175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1061), 43, + ACTIONS(1173), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -376765,12 +336219,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [33754] = 4, + [33768] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3423), 1, + STATE(3000), 1, sym_comment, - ACTIONS(1280), 15, + ACTIONS(1221), 15, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -376786,7 +336240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1282), 43, + ACTIONS(1223), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -376830,149 +336284,27 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [33823] = 4, + [33837] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3424), 1, - sym_comment, - ACTIONS(1063), 15, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1065), 43, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [33892] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(2439), 1, - sym__entry_separator, - ACTIONS(7425), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7427), 1, - aux_sym__immediate_decimal_token2, - STATE(3425), 1, + STATE(3001), 1, sym_comment, - ACTIONS(2437), 55, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, + ACTIONS(1063), 14, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, anon_sym_RBRACE, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_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_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__record_key_token2, - [33965] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(7429), 1, - anon_sym_QMARK2, - STATE(3426), 1, - sym_comment, - ACTIONS(1072), 2, - anon_sym_DOT, - sym__entry_separator, - ACTIONS(1070), 55, + ACTIONS(1061), 44, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -376985,8 +336317,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_module, anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_error, anon_sym_list, anon_sym_DASH, @@ -377001,7 +336331,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_match, - anon_sym_RBRACE, anon_sym_try, anon_sym_catch, anon_sym_return, @@ -377014,75 +336343,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_as, anon_sym_PLUS, + anon_sym_DOT_DOT2, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, aux_sym__record_key_token2, - [34036] = 5, - ACTIONS(113), 1, + [33906] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7429), 1, - anon_sym_QMARK2, - STATE(3427), 1, + STATE(3002), 1, sym_comment, - ACTIONS(1072), 2, - anon_sym_DOT, - sym__entry_separator, - ACTIONS(1070), 55, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, + ACTIONS(1068), 15, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, + anon_sym_GT, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1070), 43, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -377090,24 +336408,23 @@ 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, - aux_sym__record_key_token2, - [34107] = 6, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [33975] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7431), 1, - anon_sym_DOT_DOT2, - STATE(3428), 1, + STATE(3003), 1, sym_comment, - ACTIONS(7433), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2845), 12, + ACTIONS(3769), 14, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, @@ -377117,7 +336434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2843), 43, + ACTIONS(3767), 44, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -377156,197 +336473,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_as, anon_sym_PLUS, + anon_sym_DOT_DOT2, aux_sym__val_number_decimal_token1, anon_sym_DOT2, aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [34180] = 4, + [34044] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3429), 1, + STATE(3004), 1, sym_comment, - ACTIONS(3962), 14, - anon_sym_LPAREN, + ACTIONS(1033), 15, anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3960), 44, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, + anon_sym_GT, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - anon_sym_DOT_DOT2, + anon_sym_LT2, + anon_sym_not, aux_sym__val_number_decimal_token1, anon_sym_DOT2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [34249] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7435), 1, - anon_sym_DOT_DOT2, - STATE(3430), 1, - sym_comment, - ACTIONS(7437), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3868), 12, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1035), 43, + anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, 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(3866), 43, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [34322] = 4, - ACTIONS(113), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [34113] = 20, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3431), 1, + ACTIONS(6953), 1, + anon_sym_in, + ACTIONS(6969), 1, + anon_sym_bit_DASHand, + ACTIONS(6971), 1, + anon_sym_bit_DASHxor, + ACTIONS(6973), 1, + anon_sym_bit_DASHor, + ACTIONS(6975), 1, + anon_sym_and, + ACTIONS(6977), 1, + anon_sym_xor, + ACTIONS(6979), 1, + anon_sym_or, + STATE(3005), 1, sym_comment, - ACTIONS(1061), 2, - anon_sym_DOT, - sym__entry_separator, - ACTIONS(1059), 56, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, + ACTIONS(6949), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(6951), 2, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_QMARK2, anon_sym_PLUS, + ACTIONS(6955), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6957), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6959), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(6961), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6967), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6965), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6963), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1179), 8, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, + anon_sym_not, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1181), 22, + 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_token1, aux_sym__val_number_token2, @@ -377354,19 +336619,23 @@ 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, - aux_sym__record_key_token2, - [34391] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [34214] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(3432), 1, + ACTIONS(6981), 1, + anon_sym_QMARK2, + STATE(3006), 1, sym_comment, - ACTIONS(1065), 2, + ACTIONS(1026), 2, anon_sym_DOT, sym__entry_separator, - ACTIONS(1063), 56, + ACTIONS(1024), 55, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -377407,7 +336676,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_overlay, anon_sym_new, anon_sym_as, - anon_sym_QMARK2, anon_sym_PLUS, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -377423,18 +336691,17 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [34460] = 6, + [34285] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2583), 1, - sym__entry_separator, - ACTIONS(7439), 1, - anon_sym_DOT, - ACTIONS(7441), 1, - aux_sym__immediate_decimal_token2, - STATE(3433), 1, + ACTIONS(6981), 1, + anon_sym_QMARK2, + STATE(3007), 1, sym_comment, - ACTIONS(2581), 55, + ACTIONS(1026), 2, + anon_sym_DOT, + sym__entry_separator, + ACTIONS(1024), 55, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -377459,142 +336726,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_make, anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [34533] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2740), 1, - anon_sym_LPAREN, - ACTIONS(2742), 1, - anon_sym_DOLLAR, - ACTIONS(2768), 1, - anon_sym_0b, - ACTIONS(2774), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2776), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4051), 1, - anon_sym_LBRACK, - ACTIONS(4053), 1, - anon_sym_DASH, - ACTIONS(4055), 1, - anon_sym_LBRACE, - ACTIONS(4059), 1, - anon_sym_not, - ACTIONS(4079), 1, - anon_sym_DQUOTE, - ACTIONS(5603), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(7072), 1, - anon_sym_DOT_DOT, - ACTIONS(7076), 1, - anon_sym_null, - ACTIONS(7080), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7082), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(7084), 1, - anon_sym_DOT2, - ACTIONS(7086), 1, - sym_val_date, - STATE(3434), 1, - sym_comment, - STATE(5171), 1, - sym__var, - STATE(5591), 1, - sym__val_number_decimal, - STATE(5808), 1, - sym_expr_parenthesized, - STATE(5935), 1, - sym_val_variable, - STATE(6419), 1, - sym__inter_double_quotes, - STATE(6430), 1, - sym__expr_unary_minus, - STATE(6464), 1, - sym__inter_single_quotes, - STATE(6519), 1, - sym__val_number, - STATE(6540), 1, - sym__str_double_quotes, - STATE(6790), 1, - sym__expr_binary_expression, - STATE(7168), 1, - sym_val_range, - STATE(8042), 1, - sym__expression, - ACTIONS(2770), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4081), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(7074), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(7078), 2, - anon_sym_true, - anon_sym_false, - STATE(6426), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(2764), 6, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6590), 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, - [34670] = 4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [34356] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3435), 1, + STATE(3008), 1, sym_comment, - ACTIONS(1294), 15, + ACTIONS(1253), 15, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -377610,7 +336778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1296), 43, + ACTIONS(1255), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -377654,12 +336822,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [34739] = 4, + [34425] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3436), 1, + STATE(3009), 1, sym_comment, - ACTIONS(1294), 15, + ACTIONS(1020), 15, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -377675,7 +336843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1296), 43, + ACTIONS(1022), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -377719,12 +336887,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [34808] = 4, + [34494] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3437), 1, + STATE(3010), 1, sym_comment, - ACTIONS(1308), 15, + ACTIONS(1171), 15, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -377740,7 +336908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1310), 43, + ACTIONS(1173), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -377784,12 +336952,79 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [34877] = 4, + [34563] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(2231), 1, + sym__entry_separator, + ACTIONS(6983), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6985), 1, + aux_sym__immediate_decimal_token2, + STATE(3011), 1, + sym_comment, + ACTIONS(2229), 55, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [34636] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3438), 1, + STATE(3012), 1, sym_comment, - ACTIONS(1312), 15, + ACTIONS(920), 15, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -377805,7 +337040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1314), 43, + ACTIONS(922), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -377849,12 +337084,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [34946] = 4, + [34705] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3439), 1, + STATE(3013), 1, sym_comment, - ACTIONS(1186), 15, + ACTIONS(1139), 15, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -377870,7 +337105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1188), 43, + ACTIONS(1209), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -377914,111 +337149,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [35015] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5537), 1, - anon_sym_LBRACK, - ACTIONS(5543), 1, - anon_sym_DASH, - ACTIONS(5545), 1, - anon_sym_LBRACE, - ACTIONS(5549), 1, - anon_sym_not, - ACTIONS(5569), 1, - anon_sym_0b, - ACTIONS(5575), 1, - anon_sym_DQUOTE, - ACTIONS(5579), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5581), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(7443), 1, - anon_sym_LPAREN, - ACTIONS(7445), 1, - anon_sym_DOLLAR, - ACTIONS(7447), 1, - anon_sym_DOT_DOT, - ACTIONS(7451), 1, - anon_sym_null, - ACTIONS(7455), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7457), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(7459), 1, - anon_sym_DOT2, - ACTIONS(7461), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(7463), 1, - sym_val_date, - STATE(323), 1, - sym__var, - STATE(331), 1, - sym__val_number_decimal, - STATE(399), 1, - sym_val_variable, - STATE(434), 1, - sym_expr_parenthesized, - STATE(613), 1, - sym__inter_single_quotes, - STATE(615), 1, - sym__inter_double_quotes, - STATE(645), 1, - sym__str_double_quotes, - STATE(650), 1, - sym__expr_unary_minus, - STATE(663), 1, - sym__val_number, - STATE(2673), 1, - sym__expression, - STATE(2786), 1, - sym_val_range, - STATE(3440), 1, - sym_comment, - STATE(6789), 1, - sym__expr_binary_expression, - ACTIONS(5571), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5577), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(7449), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(7453), 2, - anon_sym_true, - anon_sym_false, - STATE(646), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(5565), 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(661), 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, - [35152] = 4, + [34774] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3441), 1, + STATE(3014), 1, sym_comment, - ACTIONS(1332), 15, + ACTIONS(1171), 15, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -378034,7 +337170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1334), 43, + ACTIONS(1173), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -378078,12 +337214,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [35221] = 4, + [34843] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3442), 1, + STATE(3015), 1, sym_comment, - ACTIONS(1336), 15, + ACTIONS(1211), 15, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -378099,7 +337235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1338), 43, + ACTIONS(1213), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -378143,30 +337279,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [35290] = 6, - ACTIONS(3), 1, + [34912] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7465), 1, - anon_sym_DOT_DOT2, - STATE(3443), 1, + STATE(3016), 1, sym_comment, - ACTIONS(7467), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3951), 12, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3949), 43, + ACTIONS(1035), 2, + anon_sym_DOT, + sym__entry_separator, + ACTIONS(1033), 56, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -378179,6 +337300,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_module, anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_error, anon_sym_list, anon_sym_DASH, @@ -378193,6 +337316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_match, + anon_sym_RBRACE, anon_sym_try, anon_sym_catch, anon_sym_return, @@ -378204,36 +337328,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_overlay, anon_sym_new, anon_sym_as, + anon_sym_QMARK2, anon_sym_PLUS, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [35363] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7469), 1, - anon_sym_DOT_DOT2, - STATE(3444), 1, - sym_comment, - ACTIONS(7471), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3966), 12, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, aux_sym__val_number_decimal_token2, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3964), 43, + aux_sym__record_key_token2, + [34981] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(3017), 1, + sym_comment, + ACTIONS(1022), 2, + anon_sym_DOT, + sym__entry_separator, + ACTIONS(1020), 56, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -378246,6 +337365,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_module, anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_error, anon_sym_list, anon_sym_DASH, @@ -378260,6 +337381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_match, + anon_sym_RBRACE, anon_sym_try, anon_sym_catch, anon_sym_return, @@ -378271,85 +337393,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_overlay, anon_sym_new, anon_sym_as, + anon_sym_QMARK2, anon_sym_PLUS, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [35436] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7473), 1, - anon_sym_DOT_DOT2, - STATE(3445), 1, - sym_comment, - ACTIONS(7475), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(4045), 12, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, aux_sym__val_number_decimal_token2, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4043), 43, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, aux_sym__record_key_token2, - [35509] = 4, + [35050] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3446), 1, + STATE(3018), 1, sym_comment, - ACTIONS(1350), 15, + ACTIONS(1215), 15, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -378365,7 +337430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1352), 43, + ACTIONS(1217), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -378409,12 +337474,79 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [35578] = 4, + [35119] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(2358), 1, + sym__entry_separator, + ACTIONS(6987), 1, + anon_sym_DOT, + ACTIONS(6989), 1, + aux_sym__immediate_decimal_token2, + STATE(3019), 1, + sym_comment, + ACTIONS(2356), 55, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [35192] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3447), 1, + STATE(3020), 1, sym_comment, - ACTIONS(1354), 15, + ACTIONS(1171), 15, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -378430,7 +337562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1356), 43, + ACTIONS(1173), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -378474,93 +337606,93 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [35647] = 38, + [35261] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2740), 1, + ACTIONS(3100), 1, anon_sym_LPAREN, - ACTIONS(2742), 1, + ACTIONS(3102), 1, anon_sym_DOLLAR, - ACTIONS(2768), 1, + ACTIONS(3128), 1, anon_sym_0b, - ACTIONS(2774), 1, + ACTIONS(3134), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2776), 1, + ACTIONS(3136), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4051), 1, + ACTIONS(3178), 1, + anon_sym_DQUOTE, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(4053), 1, + ACTIONS(3659), 1, anon_sym_DASH, - ACTIONS(4055), 1, + ACTIONS(3661), 1, anon_sym_LBRACE, - ACTIONS(4059), 1, + ACTIONS(3665), 1, anon_sym_not, - ACTIONS(4079), 1, - anon_sym_DQUOTE, - ACTIONS(5603), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(7072), 1, - anon_sym_DOT_DOT, - ACTIONS(7076), 1, + ACTIONS(6760), 1, + sym_val_date, + ACTIONS(6780), 1, anon_sym_null, - ACTIONS(7080), 1, + ACTIONS(6784), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7082), 1, + ACTIONS(6786), 1, aux_sym__val_number_decimal_token2, - ACTIONS(7084), 1, + ACTIONS(6788), 1, anon_sym_DOT2, - ACTIONS(7086), 1, - sym_val_date, - STATE(3448), 1, + ACTIONS(6790), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6991), 1, + anon_sym_DOT_DOT, + STATE(3021), 1, sym_comment, - STATE(5171), 1, + STATE(3929), 1, sym__var, - STATE(5591), 1, + STATE(4922), 1, + sym__val_number, + STATE(5067), 1, + sym__str_double_quotes, + STATE(5333), 1, sym__val_number_decimal, - STATE(5808), 1, - sym_expr_parenthesized, - STATE(5935), 1, - sym_val_variable, - STATE(6419), 1, + STATE(5725), 1, + sym__inter_single_quotes, + STATE(5726), 1, sym__inter_double_quotes, - STATE(6430), 1, + STATE(5745), 1, sym__expr_unary_minus, - STATE(6464), 1, - sym__inter_single_quotes, - STATE(6519), 1, - sym__val_number, - STATE(6540), 1, - sym__str_double_quotes, - STATE(6790), 1, + STATE(5884), 1, + sym_val_variable, + STATE(5957), 1, + sym_expr_parenthesized, + STATE(6362), 1, sym__expr_binary_expression, - STATE(7168), 1, + STATE(6728), 1, sym_val_range, - STATE(8108), 1, + STATE(10618), 1, sym__expression, - ACTIONS(2770), 2, + ACTIONS(3130), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(4081), 2, + ACTIONS(3180), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(7074), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(7078), 2, + ACTIONS(6782), 2, anon_sym_true, anon_sym_false, - STATE(6426), 3, + ACTIONS(6993), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(5743), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(2764), 6, + ACTIONS(3124), 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(6590), 12, + STATE(5659), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -378573,79 +337705,77 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [35784] = 6, + [35398] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7477), 1, - anon_sym_DOT_DOT2, - STATE(3449), 1, + STATE(3022), 1, sym_comment, - ACTIONS(7479), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3520), 12, - anon_sym_LPAREN, + ACTIONS(1257), 15, anon_sym_DOLLAR, - anon_sym_RBRACE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1259), 43, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, 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(3518), 43, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [35857] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [35467] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3450), 1, + STATE(3023), 1, sym_comment, - ACTIONS(1168), 15, + ACTIONS(1171), 15, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -378661,7 +337791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1170), 43, + ACTIONS(1173), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -378705,12 +337835,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [35926] = 4, + [35536] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3451), 1, + STATE(3024), 1, sym_comment, - ACTIONS(1358), 15, + ACTIONS(1171), 15, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -378726,7 +337856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1360), 43, + ACTIONS(1173), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -378770,12 +337900,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [35995] = 4, + [35605] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3452), 1, + STATE(3025), 1, sym_comment, - ACTIONS(1198), 15, + ACTIONS(1271), 15, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -378791,7 +337921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1366), 43, + ACTIONS(1273), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -378835,12 +337965,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [36064] = 4, + [35674] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3453), 1, + STATE(3026), 1, sym_comment, - ACTIONS(1368), 15, + ACTIONS(1171), 15, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -378856,7 +337986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1370), 43, + ACTIONS(1173), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -378900,18 +338030,17 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [36133] = 4, + [35743] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3454), 1, + STATE(3027), 1, sym_comment, - ACTIONS(1111), 15, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(3723), 14, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, @@ -378921,7 +338050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1109), 43, + ACTIONS(3721), 44, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -378960,17 +338089,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_as, anon_sym_PLUS, + anon_sym_DOT_DOT2, aux_sym__val_number_decimal_token1, anon_sym_DOT2, aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [36202] = 4, + [35812] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3455), 1, + STATE(3028), 1, sym_comment, - ACTIONS(1368), 15, + ACTIONS(1171), 15, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -378986,7 +338116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1370), 43, + ACTIONS(1173), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -379030,12 +338160,111 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [36271] = 4, + [35881] = 38, ACTIONS(3), 1, anon_sym_POUND, - STATE(3456), 1, + ACTIONS(2804), 1, + anon_sym_LPAREN, + ACTIONS(2806), 1, + anon_sym_DOLLAR, + ACTIONS(2832), 1, + anon_sym_0b, + ACTIONS(2842), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2844), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4164), 1, + anon_sym_LBRACK, + ACTIONS(4166), 1, + anon_sym_DASH, + ACTIONS(4168), 1, + anon_sym_LBRACE, + ACTIONS(4172), 1, + anon_sym_not, + ACTIONS(4192), 1, + anon_sym_DQUOTE, + ACTIONS(5057), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6610), 1, + anon_sym_DOT_DOT, + ACTIONS(6614), 1, + anon_sym_null, + ACTIONS(6618), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6620), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6622), 1, + anon_sym_DOT2, + ACTIONS(6624), 1, + sym_val_date, + STATE(3029), 1, + sym_comment, + STATE(4639), 1, + sym__var, + STATE(5069), 1, + sym__val_number_decimal, + STATE(5273), 1, + sym_expr_parenthesized, + STATE(5385), 1, + sym_val_variable, + STATE(5999), 1, + sym__expr_unary_minus, + STATE(6110), 1, + sym__val_number, + STATE(6195), 1, + sym__str_double_quotes, + STATE(6197), 1, + sym__inter_single_quotes, + STATE(6198), 1, + sym__inter_double_quotes, + STATE(6374), 1, + sym__expr_binary_expression, + STATE(6728), 1, + sym_val_range, + STATE(7650), 1, + sym__expression, + ACTIONS(2834), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4194), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6612), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(6616), 2, + anon_sym_true, + anon_sym_false, + STATE(5998), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(2828), 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(6108), 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, + [36018] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3030), 1, sym_comment, - ACTIONS(1368), 15, + ACTIONS(1275), 15, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -379051,7 +338280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1370), 43, + ACTIONS(1277), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -379095,12 +338324,308 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [36340] = 4, + [36087] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3457), 1, + STATE(3031), 1, + sym_comment, + ACTIONS(1171), 15, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1173), 43, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [36156] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6995), 1, + anon_sym_DOT_DOT2, + STATE(3032), 1, + sym_comment, + ACTIONS(6997), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3356), 12, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3354), 43, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [36229] = 38, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2804), 1, + anon_sym_LPAREN, + ACTIONS(2806), 1, + anon_sym_DOLLAR, + ACTIONS(2832), 1, + anon_sym_0b, + ACTIONS(2842), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2844), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4164), 1, + anon_sym_LBRACK, + ACTIONS(4166), 1, + anon_sym_DASH, + ACTIONS(4168), 1, + anon_sym_LBRACE, + ACTIONS(4172), 1, + anon_sym_not, + ACTIONS(4192), 1, + anon_sym_DQUOTE, + ACTIONS(5057), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6610), 1, + anon_sym_DOT_DOT, + ACTIONS(6614), 1, + anon_sym_null, + ACTIONS(6618), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6620), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6622), 1, + anon_sym_DOT2, + ACTIONS(6624), 1, + sym_val_date, + STATE(3033), 1, + sym_comment, + STATE(4639), 1, + sym__var, + STATE(5069), 1, + sym__val_number_decimal, + STATE(5273), 1, + sym_expr_parenthesized, + STATE(5385), 1, + sym_val_variable, + STATE(5999), 1, + sym__expr_unary_minus, + STATE(6110), 1, + sym__val_number, + STATE(6195), 1, + sym__str_double_quotes, + STATE(6197), 1, + sym__inter_single_quotes, + STATE(6198), 1, + sym__inter_double_quotes, + STATE(6374), 1, + sym__expr_binary_expression, + STATE(6728), 1, + sym_val_range, + STATE(7631), 1, + sym__expression, + ACTIONS(2834), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4194), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6612), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(6616), 2, + anon_sym_true, + anon_sym_false, + STATE(5998), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(2828), 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(6108), 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, + [36366] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3034), 1, + sym_comment, + ACTIONS(1076), 15, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1169), 43, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [36435] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3035), 1, sym_comment, - ACTIONS(1368), 15, + ACTIONS(1261), 15, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -379116,7 +338641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1370), 43, + ACTIONS(1263), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -379152,20 +338677,219 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, - aux_sym__val_number_token5, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [36504] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6999), 1, + anon_sym_DOT_DOT2, + STATE(3036), 1, + sym_comment, + ACTIONS(7001), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3314), 12, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3312), 43, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [36577] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7003), 1, + anon_sym_DOT_DOT2, + STATE(3037), 1, + sym_comment, + ACTIONS(7005), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3743), 12, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3741), 43, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [36650] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3038), 1, + sym_comment, + ACTIONS(1049), 15, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_DOT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1047), 43, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__val_number_token4, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [36409] = 4, + aux_sym__record_key_token2, + [36719] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3458), 1, + STATE(3039), 1, sym_comment, - ACTIONS(959), 15, + ACTIONS(938), 15, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -379181,7 +338905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(961), 43, + ACTIONS(940), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -379225,31 +338949,30 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [36478] = 4, + [36788] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(3459), 1, + ACTIONS(1078), 1, + anon_sym_DASH, + STATE(3040), 1, sym_comment, - ACTIONS(1368), 15, - anon_sym_DOLLAR, + ACTIONS(1076), 6, anon_sym_GT, - anon_sym_DASH, anon_sym_in, - anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, + ACTIONS(1072), 8, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, anon_sym_not, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1370), 43, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(1169), 21, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -379271,6 +338994,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + ACTIONS(1074), 22, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -379290,41 +339017,48 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [36547] = 4, + [36863] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(3460), 1, + STATE(3041), 1, sym_comment, - ACTIONS(1368), 15, - anon_sym_DOLLAR, + ACTIONS(6949), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(6951), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_DOT_DOT, + anon_sym_PLUS, + ACTIONS(6955), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1370), 43, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(6957), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(6959), 2, anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(6961), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(6963), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(1179), 9, + anon_sym_DOLLAR, + anon_sym_in, + anon_sym_DOT_DOT, + anon_sym_not, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1181), 33, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -379355,20 +339089,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [36616] = 4, + [36946] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(3461), 1, + STATE(3042), 1, sym_comment, - ACTIONS(1368), 15, + ACTIONS(6951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6955), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6957), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6959), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1179), 11, anon_sym_DOLLAR, anon_sym_GT, - anon_sym_DASH, anon_sym_in, anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, anon_sym_LT2, anon_sym_not, aux_sym__val_number_decimal_token1, @@ -379376,14 +339118,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1370), 43, + ACTIONS(1181), 39, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -379420,44 +339158,251 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [36685] = 4, + [37023] = 38, ACTIONS(3), 1, anon_sym_POUND, - STATE(3462), 1, - sym_comment, - ACTIONS(1158), 15, + ACTIONS(2804), 1, + anon_sym_LPAREN, + ACTIONS(2806), 1, anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(2832), 1, + anon_sym_0b, + ACTIONS(2842), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2844), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4164), 1, + anon_sym_LBRACK, + ACTIONS(4166), 1, anon_sym_DASH, - anon_sym_in, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(4168), 1, + anon_sym_LBRACE, + ACTIONS(4172), 1, anon_sym_not, + ACTIONS(4192), 1, + anon_sym_DQUOTE, + ACTIONS(5057), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6610), 1, + anon_sym_DOT_DOT, + ACTIONS(6614), 1, + anon_sym_null, + ACTIONS(6618), 1, aux_sym__val_number_decimal_token1, + ACTIONS(6620), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6622), 1, anon_sym_DOT2, - anon_sym_0b, + ACTIONS(6624), 1, + sym_val_date, + STATE(3043), 1, + sym_comment, + STATE(4639), 1, + sym__var, + STATE(5069), 1, + sym__val_number_decimal, + STATE(5273), 1, + sym_expr_parenthesized, + STATE(5385), 1, + sym_val_variable, + STATE(5999), 1, + sym__expr_unary_minus, + STATE(6110), 1, + sym__val_number, + STATE(6195), 1, + sym__str_double_quotes, + STATE(6197), 1, + sym__inter_single_quotes, + STATE(6198), 1, + sym__inter_double_quotes, + STATE(6374), 1, + sym__expr_binary_expression, + STATE(6728), 1, + sym_val_range, + STATE(7698), 1, + sym__expression, + ACTIONS(2834), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(1160), 43, + ACTIONS(4194), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6612), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(6616), 2, + anon_sym_true, + anon_sym_false, + STATE(5998), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(2828), 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(6108), 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, + [37160] = 38, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4254), 1, + anon_sym_DASH, + ACTIONS(4280), 1, + anon_sym_0b, + ACTIONS(4286), 1, + anon_sym_DQUOTE, + ACTIONS(4290), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4292), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5077), 1, anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(5083), 1, anon_sym_LBRACE, + ACTIONS(5087), 1, + anon_sym_not, + ACTIONS(7007), 1, + anon_sym_LPAREN, + ACTIONS(7009), 1, + anon_sym_DOLLAR, + ACTIONS(7011), 1, + anon_sym_DOT_DOT, + ACTIONS(7015), 1, + anon_sym_null, + ACTIONS(7019), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7021), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(7023), 1, + anon_sym_DOT2, + ACTIONS(7025), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(7027), 1, + sym_val_date, + STATE(3044), 1, + sym_comment, + STATE(3729), 1, + sym__var, + STATE(3852), 1, + sym__val_number_decimal, + STATE(4166), 1, + sym_val_variable, + STATE(4214), 1, + sym_expr_parenthesized, + STATE(4641), 1, + sym__val_number, + STATE(4675), 1, + sym__inter_double_quotes, + STATE(4737), 1, + sym__expr_unary_minus, + STATE(4768), 1, + sym__inter_single_quotes, + STATE(4792), 1, + sym__str_double_quotes, + STATE(6379), 1, + sym__expr_binary_expression, + STATE(6728), 1, + sym_val_range, + STATE(7407), 1, + sym__expression, + ACTIONS(4282), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4288), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(7013), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(7017), 2, + anon_sym_true, + anon_sym_false, + STATE(4736), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(4276), 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(4787), 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, + [37297] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6953), 1, + anon_sym_in, + STATE(3045), 1, + sym_comment, + ACTIONS(6949), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(6951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6955), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6957), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(6959), 2, anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(6961), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(6965), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6963), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, + ACTIONS(1179), 8, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, + anon_sym_not, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1181), 30, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_bit_DASHand, @@ -379485,19 +339430,26 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [36754] = 4, + [37384] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(3463), 1, + STATE(3046), 1, sym_comment, - ACTIONS(1368), 15, + ACTIONS(6955), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6957), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6959), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1179), 13, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, anon_sym_not, @@ -379506,14 +339458,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1370), 43, + ACTIONS(1181), 39, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -379550,12 +339498,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [36823] = 4, + [37459] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3464), 1, + STATE(3047), 1, sym_comment, - ACTIONS(1368), 15, + ACTIONS(1171), 15, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -379571,7 +339519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1370), 43, + ACTIONS(1173), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -379615,12 +339563,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [36892] = 4, + [37528] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3465), 1, + STATE(3048), 1, sym_comment, - ACTIONS(1368), 15, + ACTIONS(1051), 15, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -379636,7 +339584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1370), 43, + ACTIONS(1053), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -379680,12 +339628,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [36961] = 4, + [37597] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3466), 1, + STATE(3049), 1, sym_comment, - ACTIONS(1368), 15, + ACTIONS(1175), 15, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -379701,7 +339649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1370), 43, + ACTIONS(1177), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -379745,12 +339693,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [37030] = 4, + [37666] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3467), 1, + STATE(3050), 1, sym_comment, - ACTIONS(1368), 15, + ACTIONS(1171), 15, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -379766,7 +339714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1370), 43, + ACTIONS(1173), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -379810,142 +339758,111 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [37099] = 4, + [37735] = 38, ACTIONS(3), 1, anon_sym_POUND, - STATE(3468), 1, - sym_comment, - ACTIONS(1115), 15, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(3100), 1, anon_sym_LPAREN, + ACTIONS(3102), 1, anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, + ACTIONS(3128), 1, + anon_sym_0b, + ACTIONS(3134), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3136), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3178), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1113), 43, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [37168] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3469), 1, - sym_comment, - ACTIONS(1368), 15, - anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(3657), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, anon_sym_DASH, - anon_sym_in, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(3661), 1, + anon_sym_LBRACE, + ACTIONS(3665), 1, anon_sym_not, + ACTIONS(3679), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6744), 1, + anon_sym_DOT_DOT, + ACTIONS(6754), 1, aux_sym__val_number_decimal_token1, + ACTIONS(6756), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6758), 1, anon_sym_DOT2, - anon_sym_0b, + ACTIONS(6760), 1, + sym_val_date, + ACTIONS(6780), 1, + anon_sym_null, + STATE(3051), 1, + sym_comment, + STATE(3929), 1, + sym__var, + STATE(4922), 1, + sym__val_number, + STATE(5067), 1, + sym__str_double_quotes, + STATE(5301), 1, + sym__val_number_decimal, + STATE(5725), 1, + sym__inter_single_quotes, + STATE(5726), 1, + sym__inter_double_quotes, + STATE(5745), 1, + sym__expr_unary_minus, + STATE(5903), 1, + sym_val_variable, + STATE(5960), 1, + sym_expr_parenthesized, + STATE(6383), 1, + sym__expr_binary_expression, + STATE(6728), 1, + sym_val_range, + STATE(10016), 1, + sym__expression, + ACTIONS(3130), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(1370), 43, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(3180), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6748), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_null, + ACTIONS(6782), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, + STATE(5743), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3124), 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, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [37237] = 4, + STATE(5659), 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, + [37872] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3470), 1, + STATE(3052), 1, sym_comment, - ACTIONS(1406), 15, + ACTIONS(1279), 15, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -379961,7 +339878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1408), 43, + ACTIONS(1281), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -380005,12 +339922,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [37306] = 4, + [37941] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3471), 1, + STATE(3053), 1, sym_comment, - ACTIONS(1410), 15, + ACTIONS(1171), 15, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -380026,7 +339943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1412), 43, + ACTIONS(1173), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -380070,32 +339987,34 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [37375] = 7, + [38010] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1200), 1, - anon_sym_DASH, - STATE(3472), 1, + STATE(3054), 1, sym_comment, - ACTIONS(1198), 6, + ACTIONS(6957), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1179), 15, + anon_sym_DOLLAR, anon_sym_GT, + anon_sym_DASH, anon_sym_in, + anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1194), 8, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, anon_sym_not, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1366), 21, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, + ACTIONS(1181), 41, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, @@ -380115,10 +340034,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1196), 22, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -380138,226 +340053,126 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [37450] = 4, + [38081] = 38, ACTIONS(3), 1, anon_sym_POUND, - STATE(3473), 1, - sym_comment, - ACTIONS(1119), 15, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(2804), 1, anon_sym_LPAREN, + ACTIONS(2806), 1, anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1117), 43, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, + ACTIONS(2832), 1, + anon_sym_0b, + ACTIONS(2842), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2844), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4164), 1, + anon_sym_LBRACK, + ACTIONS(4166), 1, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [37519] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3474), 1, - sym_comment, - ACTIONS(4002), 14, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, + ACTIONS(4168), 1, + anon_sym_LBRACE, + ACTIONS(4172), 1, + anon_sym_not, + ACTIONS(4192), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4000), 44, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [37588] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3475), 1, - sym_comment, - ACTIONS(7481), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7483), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7485), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7487), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7489), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(7491), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(7493), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1376), 9, - anon_sym_DOLLAR, - anon_sym_in, + ACTIONS(5057), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6610), 1, anon_sym_DOT_DOT, - anon_sym_not, + ACTIONS(6614), 1, + anon_sym_null, + ACTIONS(6618), 1, aux_sym__val_number_decimal_token1, + ACTIONS(6620), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6622), 1, anon_sym_DOT2, - anon_sym_0b, + ACTIONS(6624), 1, + sym_val_date, + STATE(3055), 1, + sym_comment, + STATE(4639), 1, + sym__var, + STATE(5069), 1, + sym__val_number_decimal, + STATE(5273), 1, + sym_expr_parenthesized, + STATE(5385), 1, + sym_val_variable, + STATE(5999), 1, + sym__expr_unary_minus, + STATE(6110), 1, + sym__val_number, + STATE(6195), 1, + sym__str_double_quotes, + STATE(6197), 1, + sym__inter_single_quotes, + STATE(6198), 1, + sym__inter_double_quotes, + STATE(6374), 1, + sym__expr_binary_expression, + STATE(6728), 1, + sym_val_range, + STATE(7613), 1, + sym__expression, + ACTIONS(2834), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(1378), 33, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(4194), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6612), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_null, + ACTIONS(6616), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, + STATE(5998), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(2828), 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, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [37671] = 8, + STATE(6108), 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, + [38218] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(3476), 1, + STATE(3056), 1, sym_comment, - ACTIONS(7483), 2, + ACTIONS(6951), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7485), 2, + ACTIONS(6955), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(7487), 2, + ACTIONS(6957), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(7489), 2, + ACTIONS(6959), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1376), 11, + ACTIONS(6961), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(1179), 11, anon_sym_DOLLAR, anon_sym_GT, anon_sym_in, @@ -380369,12 +340184,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1378), 39, + ACTIONS(1181), 37, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -380409,41 +340222,44 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [37748] = 13, + [38297] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7495), 1, + ACTIONS(6953), 1, anon_sym_in, - STATE(3477), 1, + STATE(3057), 1, sym_comment, - ACTIONS(7481), 2, + ACTIONS(6949), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(7483), 2, + ACTIONS(6951), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7485), 2, + ACTIONS(6955), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(7487), 2, + ACTIONS(6957), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(7489), 2, + ACTIONS(6959), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(7491), 2, + ACTIONS(6961), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(7497), 3, + ACTIONS(6967), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6965), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(7493), 4, + ACTIONS(6963), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1376), 8, + ACTIONS(1179), 8, anon_sym_DOLLAR, anon_sym_DOT_DOT, anon_sym_not, @@ -380452,12 +340268,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1378), 30, + ACTIONS(1181), 28, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, @@ -380483,403 +340297,343 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [37835] = 7, + [38386] = 38, ACTIONS(3), 1, anon_sym_POUND, - STATE(3478), 1, - sym_comment, - ACTIONS(7485), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7487), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7489), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1376), 13, - anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(4254), 1, anon_sym_DASH, - anon_sym_in, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, + ACTIONS(4280), 1, anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1378), 39, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, + ACTIONS(4286), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(4290), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(4292), 1, anon_sym_DOLLAR_DQUOTE, - [37910] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3479), 1, - sym_comment, - ACTIONS(7487), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(1376), 15, + ACTIONS(5077), 1, + anon_sym_LBRACK, + ACTIONS(5083), 1, + anon_sym_LBRACE, + ACTIONS(5087), 1, + anon_sym_not, + ACTIONS(7007), 1, + anon_sym_LPAREN, + ACTIONS(7009), 1, anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, + ACTIONS(7011), 1, anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, + ACTIONS(7015), 1, + anon_sym_null, + ACTIONS(7019), 1, aux_sym__val_number_decimal_token1, + ACTIONS(7021), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(7023), 1, anon_sym_DOT2, - anon_sym_0b, + ACTIONS(7025), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(7027), 1, + sym_val_date, + STATE(3058), 1, + sym_comment, + STATE(3729), 1, + sym__var, + STATE(3852), 1, + sym__val_number_decimal, + STATE(4166), 1, + sym_val_variable, + STATE(4214), 1, + sym_expr_parenthesized, + STATE(4641), 1, + sym__val_number, + STATE(4675), 1, + sym__inter_double_quotes, + STATE(4737), 1, + sym__expr_unary_minus, + STATE(4768), 1, + sym__inter_single_quotes, + STATE(4792), 1, + sym__str_double_quotes, + STATE(6367), 1, + sym__expr_binary_expression, + STATE(6728), 1, + sym_val_range, + STATE(7407), 1, + sym__expression, + ACTIONS(4282), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(1378), 41, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(4288), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(7013), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_null, + ACTIONS(7017), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, + STATE(4736), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(4276), 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, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [37981] = 9, + STATE(4787), 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, + [38523] = 38, ACTIONS(3), 1, anon_sym_POUND, - STATE(3480), 1, - sym_comment, - ACTIONS(7483), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7485), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7487), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7489), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(7491), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(1376), 11, + ACTIONS(2804), 1, + anon_sym_LPAREN, + ACTIONS(2806), 1, anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_in, - anon_sym_DOT_DOT, - anon_sym_LT2, - anon_sym_not, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, + ACTIONS(2832), 1, anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1378), 37, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - 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(2842), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(2844), 1, anon_sym_DOLLAR_DQUOTE, - [38060] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7495), 1, - anon_sym_in, - STATE(3481), 1, - sym_comment, - ACTIONS(7481), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7483), 2, + ACTIONS(4164), 1, + anon_sym_LBRACK, + ACTIONS(4166), 1, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7485), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7487), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7489), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(7491), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(7499), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(7497), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(7493), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1376), 8, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, + ACTIONS(4168), 1, + anon_sym_LBRACE, + ACTIONS(4172), 1, anon_sym_not, + ACTIONS(4192), 1, + anon_sym_DQUOTE, + ACTIONS(5057), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6610), 1, + anon_sym_DOT_DOT, + ACTIONS(6614), 1, + anon_sym_null, + ACTIONS(6618), 1, aux_sym__val_number_decimal_token1, + ACTIONS(6620), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6622), 1, anon_sym_DOT2, - anon_sym_0b, + ACTIONS(6624), 1, + sym_val_date, + STATE(3059), 1, + sym_comment, + STATE(4639), 1, + sym__var, + STATE(5069), 1, + sym__val_number_decimal, + STATE(5273), 1, + sym_expr_parenthesized, + STATE(5385), 1, + sym_val_variable, + STATE(5999), 1, + sym__expr_unary_minus, + STATE(6110), 1, + sym__val_number, + STATE(6195), 1, + sym__str_double_quotes, + STATE(6197), 1, + sym__inter_single_quotes, + STATE(6198), 1, + sym__inter_double_quotes, + STATE(6374), 1, + sym__expr_binary_expression, + STATE(6728), 1, + sym_val_range, + STATE(7618), 1, + sym__expression, + ACTIONS(2834), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(1378), 28, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(4194), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6612), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_null, + ACTIONS(6616), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, + STATE(5998), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(2828), 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, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [38149] = 15, + STATE(6108), 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, + [38660] = 38, ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7495), 1, - anon_sym_in, - ACTIONS(7501), 1, - anon_sym_bit_DASHand, - STATE(3482), 1, - sym_comment, - ACTIONS(7481), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7483), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7485), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7487), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7489), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(7491), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(7499), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(7497), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(7493), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1376), 8, + anon_sym_POUND, + ACTIONS(2804), 1, + anon_sym_LPAREN, + ACTIONS(2806), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT, + ACTIONS(2832), 1, + anon_sym_0b, + ACTIONS(2842), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2844), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4164), 1, + anon_sym_LBRACK, + ACTIONS(4166), 1, + anon_sym_DASH, + ACTIONS(4168), 1, + anon_sym_LBRACE, + ACTIONS(4172), 1, anon_sym_not, + ACTIONS(4192), 1, + anon_sym_DQUOTE, + ACTIONS(5057), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6610), 1, + anon_sym_DOT_DOT, + ACTIONS(6614), 1, + anon_sym_null, + ACTIONS(6618), 1, aux_sym__val_number_decimal_token1, + ACTIONS(6620), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6622), 1, anon_sym_DOT2, - anon_sym_0b, + ACTIONS(6624), 1, + sym_val_date, + STATE(3060), 1, + sym_comment, + STATE(4639), 1, + sym__var, + STATE(5069), 1, + sym__val_number_decimal, + STATE(5273), 1, + sym_expr_parenthesized, + STATE(5385), 1, + sym_val_variable, + STATE(5999), 1, + sym__expr_unary_minus, + STATE(6110), 1, + sym__val_number, + STATE(6195), 1, + sym__str_double_quotes, + STATE(6197), 1, + sym__inter_single_quotes, + STATE(6198), 1, + sym__inter_double_quotes, + STATE(6374), 1, + sym__expr_binary_expression, + STATE(6728), 1, + sym_val_range, + STATE(7619), 1, + sym__expression, + ACTIONS(2834), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(1378), 27, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(4194), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6612), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_null, + ACTIONS(6616), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, + STATE(5998), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(2828), 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, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [38240] = 16, + STATE(6108), 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, + [38797] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7495), 1, + ACTIONS(6953), 1, anon_sym_in, - ACTIONS(7501), 1, + ACTIONS(6969), 1, anon_sym_bit_DASHand, - ACTIONS(7503), 1, - anon_sym_bit_DASHxor, - STATE(3483), 1, + STATE(3061), 1, sym_comment, - ACTIONS(7481), 2, + ACTIONS(6949), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(7483), 2, + ACTIONS(6951), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7485), 2, + ACTIONS(6955), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(7487), 2, + ACTIONS(6957), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(7489), 2, + ACTIONS(6959), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(7491), 2, + ACTIONS(6961), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(7499), 2, + ACTIONS(6967), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(7497), 3, + ACTIONS(6965), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(7493), 4, + ACTIONS(6963), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1376), 8, + ACTIONS(1179), 8, anon_sym_DOLLAR, anon_sym_DOT_DOT, anon_sym_not, @@ -380888,10 +340642,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1378), 26, + ACTIONS(1181), 27, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, @@ -380915,90 +340670,111 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [38333] = 17, + [38888] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7495), 1, - anon_sym_in, - ACTIONS(7501), 1, - anon_sym_bit_DASHand, - ACTIONS(7503), 1, - anon_sym_bit_DASHxor, - ACTIONS(7505), 1, - anon_sym_bit_DASHor, - STATE(3484), 1, - sym_comment, - ACTIONS(7481), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7483), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7485), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7487), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7489), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(7491), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(7499), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(7497), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(7493), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1376), 8, + ACTIONS(2804), 1, + anon_sym_LPAREN, + ACTIONS(2806), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT, + ACTIONS(2832), 1, + anon_sym_0b, + ACTIONS(2842), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2844), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4164), 1, + anon_sym_LBRACK, + ACTIONS(4166), 1, + anon_sym_DASH, + ACTIONS(4168), 1, + anon_sym_LBRACE, + ACTIONS(4172), 1, anon_sym_not, + ACTIONS(4192), 1, + anon_sym_DQUOTE, + ACTIONS(5057), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6610), 1, + anon_sym_DOT_DOT, + ACTIONS(6614), 1, + anon_sym_null, + ACTIONS(6618), 1, aux_sym__val_number_decimal_token1, + ACTIONS(6620), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6622), 1, anon_sym_DOT2, - anon_sym_0b, + ACTIONS(6624), 1, + sym_val_date, + STATE(3062), 1, + sym_comment, + STATE(4639), 1, + sym__var, + STATE(5069), 1, + sym__val_number_decimal, + STATE(5273), 1, + sym_expr_parenthesized, + STATE(5385), 1, + sym_val_variable, + STATE(5999), 1, + sym__expr_unary_minus, + STATE(6110), 1, + sym__val_number, + STATE(6195), 1, + sym__str_double_quotes, + STATE(6197), 1, + sym__inter_single_quotes, + STATE(6198), 1, + sym__inter_double_quotes, + STATE(6374), 1, + sym__expr_binary_expression, + STATE(6728), 1, + sym_val_range, + STATE(7622), 1, + sym__expression, + ACTIONS(2834), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(1378), 25, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(4194), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6612), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_null, + ACTIONS(6616), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, + STATE(5998), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(2828), 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, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [38428] = 4, + STATE(6108), 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, + [39025] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3485), 1, + STATE(3063), 1, sym_comment, - ACTIONS(1190), 15, + ACTIONS(1165), 15, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -381014,7 +340790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1192), 43, + ACTIONS(1167), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -381058,52 +340834,52 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [38497] = 18, + [39094] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7495), 1, + ACTIONS(6953), 1, anon_sym_in, - ACTIONS(7501), 1, + ACTIONS(6969), 1, anon_sym_bit_DASHand, - ACTIONS(7503), 1, + ACTIONS(6971), 1, anon_sym_bit_DASHxor, - ACTIONS(7505), 1, + ACTIONS(6973), 1, anon_sym_bit_DASHor, - ACTIONS(7507), 1, + ACTIONS(6975), 1, anon_sym_and, - STATE(3486), 1, + STATE(3064), 1, sym_comment, - ACTIONS(7481), 2, + ACTIONS(6949), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(7483), 2, + ACTIONS(6951), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7485), 2, + ACTIONS(6955), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(7487), 2, + ACTIONS(6957), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(7489), 2, + ACTIONS(6959), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(7491), 2, + ACTIONS(6961), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(7499), 2, + ACTIONS(6967), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(7497), 3, + ACTIONS(6965), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(7493), 4, + ACTIONS(6963), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1376), 8, + ACTIONS(1179), 8, anon_sym_DOLLAR, anon_sym_DOT_DOT, anon_sym_not, @@ -381112,7 +340888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1378), 24, + ACTIONS(1181), 24, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -381137,54 +340913,48 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [38594] = 19, + [39191] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7495), 1, + ACTIONS(6953), 1, anon_sym_in, - ACTIONS(7501), 1, + ACTIONS(6969), 1, anon_sym_bit_DASHand, - ACTIONS(7503), 1, + ACTIONS(6971), 1, anon_sym_bit_DASHxor, - ACTIONS(7505), 1, - anon_sym_bit_DASHor, - ACTIONS(7507), 1, - anon_sym_and, - ACTIONS(7509), 1, - anon_sym_xor, - STATE(3487), 1, + STATE(3065), 1, sym_comment, - ACTIONS(7481), 2, + ACTIONS(6949), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(7483), 2, + ACTIONS(6951), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7485), 2, + ACTIONS(6955), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(7487), 2, + ACTIONS(6957), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(7489), 2, + ACTIONS(6959), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(7491), 2, + ACTIONS(6961), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(7499), 2, + ACTIONS(6967), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(7497), 3, + ACTIONS(6965), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(7493), 4, + ACTIONS(6963), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1376), 8, + ACTIONS(1179), 8, anon_sym_DOLLAR, anon_sym_DOT_DOT, anon_sym_not, @@ -381193,10 +340963,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1378), 23, + ACTIONS(1181), 26, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -381217,56 +340990,50 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [38693] = 20, + [39284] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7495), 1, + ACTIONS(6953), 1, anon_sym_in, - ACTIONS(7501), 1, + ACTIONS(6969), 1, anon_sym_bit_DASHand, - ACTIONS(7503), 1, + ACTIONS(6971), 1, anon_sym_bit_DASHxor, - ACTIONS(7505), 1, + ACTIONS(6973), 1, anon_sym_bit_DASHor, - ACTIONS(7507), 1, - anon_sym_and, - ACTIONS(7509), 1, - anon_sym_xor, - ACTIONS(7511), 1, - anon_sym_or, - STATE(3488), 1, + STATE(3066), 1, sym_comment, - ACTIONS(7481), 2, + ACTIONS(6949), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(7483), 2, + ACTIONS(6951), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7485), 2, + ACTIONS(6955), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(7487), 2, + ACTIONS(6957), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(7489), 2, + ACTIONS(6959), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(7491), 2, + ACTIONS(6961), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(7499), 2, + ACTIONS(6967), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(7497), 3, + ACTIONS(6965), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(7493), 4, + ACTIONS(6963), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1376), 8, + ACTIONS(1179), 8, anon_sym_DOLLAR, anon_sym_DOT_DOT, anon_sym_not, @@ -381275,10 +341042,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1378), 22, + ACTIONS(1181), 25, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -381298,93 +341068,93 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [38794] = 38, + [39379] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2740), 1, - anon_sym_LPAREN, - ACTIONS(2742), 1, - anon_sym_DOLLAR, - ACTIONS(2768), 1, + ACTIONS(4254), 1, + anon_sym_DASH, + ACTIONS(4280), 1, anon_sym_0b, - ACTIONS(2774), 1, + ACTIONS(4286), 1, + anon_sym_DQUOTE, + ACTIONS(4290), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2776), 1, + ACTIONS(4292), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4051), 1, + ACTIONS(5077), 1, anon_sym_LBRACK, - ACTIONS(4053), 1, - anon_sym_DASH, - ACTIONS(4055), 1, + ACTIONS(5083), 1, anon_sym_LBRACE, - ACTIONS(4059), 1, + ACTIONS(5087), 1, anon_sym_not, - ACTIONS(4079), 1, - anon_sym_DQUOTE, - ACTIONS(5603), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(7072), 1, + ACTIONS(7007), 1, + anon_sym_LPAREN, + ACTIONS(7009), 1, + anon_sym_DOLLAR, + ACTIONS(7011), 1, anon_sym_DOT_DOT, - ACTIONS(7076), 1, + ACTIONS(7015), 1, anon_sym_null, - ACTIONS(7080), 1, + ACTIONS(7019), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7082), 1, + ACTIONS(7021), 1, aux_sym__val_number_decimal_token2, - ACTIONS(7084), 1, + ACTIONS(7023), 1, anon_sym_DOT2, - ACTIONS(7086), 1, + ACTIONS(7025), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(7027), 1, sym_val_date, - STATE(3489), 1, + STATE(3067), 1, sym_comment, - STATE(5171), 1, + STATE(3729), 1, sym__var, - STATE(5591), 1, + STATE(3852), 1, sym__val_number_decimal, - STATE(5808), 1, - sym_expr_parenthesized, - STATE(5935), 1, + STATE(4166), 1, sym_val_variable, - STATE(6419), 1, + STATE(4214), 1, + sym_expr_parenthesized, + STATE(4641), 1, + sym__val_number, + STATE(4675), 1, sym__inter_double_quotes, - STATE(6430), 1, + STATE(4737), 1, sym__expr_unary_minus, - STATE(6464), 1, + STATE(4768), 1, sym__inter_single_quotes, - STATE(6519), 1, - sym__val_number, - STATE(6540), 1, + STATE(4792), 1, sym__str_double_quotes, - STATE(6790), 1, + STATE(6371), 1, sym__expr_binary_expression, - STATE(7168), 1, + STATE(6728), 1, sym_val_range, - STATE(8100), 1, + STATE(7407), 1, sym__expression, - ACTIONS(2770), 2, + ACTIONS(4282), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(4081), 2, + ACTIONS(4288), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(7074), 2, + ACTIONS(7013), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(7078), 2, + ACTIONS(7017), 2, anon_sym_true, anon_sym_false, - STATE(6426), 3, + STATE(4736), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(2764), 6, + ACTIONS(4276), 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(6590), 12, + STATE(4787), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -381397,93 +341167,93 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [38931] = 38, + [39516] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2688), 1, - anon_sym_LPAREN, - ACTIONS(2690), 1, - anon_sym_DOLLAR, - ACTIONS(2718), 1, + ACTIONS(4254), 1, + anon_sym_DASH, + ACTIONS(4280), 1, anon_sym_0b, - ACTIONS(2728), 1, + ACTIONS(4286), 1, + anon_sym_DQUOTE, + ACTIONS(4290), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2730), 1, + ACTIONS(4292), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3391), 1, - anon_sym_DQUOTE, - ACTIONS(3882), 1, + ACTIONS(5077), 1, anon_sym_LBRACK, - ACTIONS(3884), 1, - anon_sym_DASH, - ACTIONS(3886), 1, + ACTIONS(5083), 1, anon_sym_LBRACE, - ACTIONS(3890), 1, + ACTIONS(5087), 1, anon_sym_not, - ACTIONS(3904), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(7179), 1, - anon_sym_null, - ACTIONS(7191), 1, - sym_val_date, - ACTIONS(7226), 1, + ACTIONS(7007), 1, + anon_sym_LPAREN, + ACTIONS(7009), 1, + anon_sym_DOLLAR, + ACTIONS(7011), 1, anon_sym_DOT_DOT, - ACTIONS(7236), 1, + ACTIONS(7015), 1, + anon_sym_null, + ACTIONS(7019), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7238), 1, + ACTIONS(7021), 1, aux_sym__val_number_decimal_token2, - ACTIONS(7240), 1, + ACTIONS(7023), 1, anon_sym_DOT2, - STATE(3490), 1, + ACTIONS(7025), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(7027), 1, + sym_val_date, + STATE(3068), 1, sym_comment, - STATE(4486), 1, + STATE(3729), 1, sym__var, - STATE(5463), 1, - sym__val_number, - STATE(5541), 1, - sym__str_double_quotes, - STATE(5894), 1, + STATE(3852), 1, sym__val_number_decimal, - STATE(6245), 1, - sym__expr_unary_minus, - STATE(6258), 1, - sym__inter_single_quotes, - STATE(6277), 1, - sym__inter_double_quotes, - STATE(6316), 1, + STATE(4166), 1, sym_val_variable, - STATE(6385), 1, + STATE(4214), 1, sym_expr_parenthesized, - STATE(6786), 1, + STATE(4641), 1, + sym__val_number, + STATE(4675), 1, + sym__inter_double_quotes, + STATE(4737), 1, + sym__expr_unary_minus, + STATE(4768), 1, + sym__inter_single_quotes, + STATE(4792), 1, + sym__str_double_quotes, + STATE(6381), 1, sym__expr_binary_expression, - STATE(7168), 1, + STATE(6728), 1, sym_val_range, - STATE(10469), 1, + STATE(7407), 1, sym__expression, - ACTIONS(2720), 2, + ACTIONS(4282), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3393), 2, + ACTIONS(4288), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(7181), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(7230), 2, + ACTIONS(7013), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(6243), 3, + ACTIONS(7017), 2, + anon_sym_true, + anon_sym_false, + STATE(4736), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(2714), 6, + ACTIONS(4276), 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(6175), 12, + STATE(4787), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -381496,12 +341266,12 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [39068] = 4, + [39653] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3491), 1, + STATE(3069), 1, sym_comment, - ACTIONS(1372), 15, + ACTIONS(1283), 15, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -381517,7 +341287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1374), 43, + ACTIONS(1285), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -381561,111 +341331,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [39137] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2740), 1, - anon_sym_LPAREN, - ACTIONS(2742), 1, - anon_sym_DOLLAR, - ACTIONS(2768), 1, - anon_sym_0b, - ACTIONS(2774), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2776), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4051), 1, - anon_sym_LBRACK, - ACTIONS(4053), 1, - anon_sym_DASH, - ACTIONS(4055), 1, - anon_sym_LBRACE, - ACTIONS(4059), 1, - anon_sym_not, - ACTIONS(4079), 1, - anon_sym_DQUOTE, - ACTIONS(5603), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(7072), 1, - anon_sym_DOT_DOT, - ACTIONS(7076), 1, - anon_sym_null, - ACTIONS(7080), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7082), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(7084), 1, - anon_sym_DOT2, - ACTIONS(7086), 1, - sym_val_date, - STATE(3492), 1, - sym_comment, - STATE(5171), 1, - sym__var, - STATE(5591), 1, - sym__val_number_decimal, - STATE(5808), 1, - sym_expr_parenthesized, - STATE(5935), 1, - sym_val_variable, - STATE(6419), 1, - sym__inter_double_quotes, - STATE(6430), 1, - sym__expr_unary_minus, - STATE(6464), 1, - sym__inter_single_quotes, - STATE(6519), 1, - sym__val_number, - STATE(6540), 1, - sym__str_double_quotes, - STATE(6790), 1, - sym__expr_binary_expression, - STATE(7168), 1, - sym_val_range, - STATE(8109), 1, - sym__expression, - ACTIONS(2770), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4081), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(7074), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(7078), 2, - anon_sym_true, - anon_sym_false, - STATE(6426), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(2764), 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(6590), 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, - [39274] = 4, + [39722] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3493), 1, + STATE(3070), 1, sym_comment, - ACTIONS(1286), 15, + ACTIONS(1089), 15, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -381681,7 +341352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1288), 43, + ACTIONS(1091), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -381725,210 +341396,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [39343] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2688), 1, - anon_sym_LPAREN, - ACTIONS(2690), 1, - anon_sym_DOLLAR, - ACTIONS(2718), 1, - anon_sym_0b, - ACTIONS(2728), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2730), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3391), 1, - anon_sym_DQUOTE, - ACTIONS(3882), 1, - anon_sym_LBRACK, - ACTIONS(3884), 1, - anon_sym_DASH, - ACTIONS(3886), 1, - anon_sym_LBRACE, - ACTIONS(3890), 1, - anon_sym_not, - ACTIONS(3904), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(7179), 1, - anon_sym_null, - ACTIONS(7191), 1, - sym_val_date, - ACTIONS(7226), 1, - anon_sym_DOT_DOT, - ACTIONS(7236), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7238), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(7240), 1, - anon_sym_DOT2, - STATE(3494), 1, - sym_comment, - STATE(4486), 1, - sym__var, - STATE(5463), 1, - sym__val_number, - STATE(5541), 1, - sym__str_double_quotes, - STATE(5894), 1, - sym__val_number_decimal, - STATE(6245), 1, - sym__expr_unary_minus, - STATE(6258), 1, - sym__inter_single_quotes, - STATE(6277), 1, - sym__inter_double_quotes, - STATE(6316), 1, - sym_val_variable, - STATE(6385), 1, - sym_expr_parenthesized, - STATE(6786), 1, - sym__expr_binary_expression, - STATE(7168), 1, - sym_val_range, - STATE(10497), 1, - sym__expression, - ACTIONS(2720), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3393), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(7181), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(7230), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(6243), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(2714), 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(6175), 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, - [39480] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2740), 1, - anon_sym_LPAREN, - ACTIONS(2742), 1, - anon_sym_DOLLAR, - ACTIONS(2768), 1, - anon_sym_0b, - ACTIONS(2774), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2776), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4051), 1, - anon_sym_LBRACK, - ACTIONS(4053), 1, - anon_sym_DASH, - ACTIONS(4055), 1, - anon_sym_LBRACE, - ACTIONS(4059), 1, - anon_sym_not, - ACTIONS(4079), 1, - anon_sym_DQUOTE, - ACTIONS(5603), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(7072), 1, - anon_sym_DOT_DOT, - ACTIONS(7076), 1, - anon_sym_null, - ACTIONS(7080), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7082), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(7084), 1, - anon_sym_DOT2, - ACTIONS(7086), 1, - sym_val_date, - STATE(3495), 1, - sym_comment, - STATE(5171), 1, - sym__var, - STATE(5591), 1, - sym__val_number_decimal, - STATE(5808), 1, - sym_expr_parenthesized, - STATE(5935), 1, - sym_val_variable, - STATE(6419), 1, - sym__inter_double_quotes, - STATE(6430), 1, - sym__expr_unary_minus, - STATE(6464), 1, - sym__inter_single_quotes, - STATE(6519), 1, - sym__val_number, - STATE(6540), 1, - sym__str_double_quotes, - STATE(6790), 1, - sym__expr_binary_expression, - STATE(7168), 1, - sym_val_range, - STATE(8230), 1, - sym__expression, - ACTIONS(2770), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4081), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(7074), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(7078), 2, - anon_sym_true, - anon_sym_false, - STATE(6426), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(2764), 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(6590), 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, - [39617] = 4, + [39791] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3496), 1, + STATE(3071), 1, sym_comment, - ACTIONS(1298), 15, + ACTIONS(1225), 15, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -381944,7 +341417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1300), 43, + ACTIONS(1227), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -381988,408 +341461,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [39686] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4151), 1, - anon_sym_DASH, - ACTIONS(4177), 1, - anon_sym_0b, - ACTIONS(4183), 1, - anon_sym_DQUOTE, - ACTIONS(4187), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4189), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(5635), 1, - anon_sym_LBRACE, - ACTIONS(5639), 1, - anon_sym_not, - ACTIONS(7399), 1, - anon_sym_LPAREN, - ACTIONS(7401), 1, - anon_sym_DOLLAR, - ACTIONS(7403), 1, - anon_sym_DOT_DOT, - ACTIONS(7407), 1, - anon_sym_null, - ACTIONS(7411), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7413), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(7415), 1, - anon_sym_DOT2, - ACTIONS(7417), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(7419), 1, - sym_val_date, - STATE(3497), 1, - sym_comment, - STATE(4110), 1, - sym__var, - STATE(4270), 1, - sym__val_number_decimal, - STATE(4648), 1, - sym_expr_parenthesized, - STATE(4664), 1, - sym_val_variable, - STATE(5025), 1, - sym__str_double_quotes, - STATE(5028), 1, - sym__inter_single_quotes, - STATE(5029), 1, - sym__inter_double_quotes, - STATE(5030), 1, - sym__expr_unary_minus, - STATE(5114), 1, - sym__val_number, - STATE(6794), 1, - sym__expr_binary_expression, - STATE(7168), 1, - sym_val_range, - STATE(7646), 1, - sym__expression, - ACTIONS(4179), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4185), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(7405), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(7409), 2, - anon_sym_true, - anon_sym_false, - STATE(5022), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(4173), 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(5065), 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, - [39823] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2740), 1, - anon_sym_LPAREN, - ACTIONS(2742), 1, - anon_sym_DOLLAR, - ACTIONS(2768), 1, - anon_sym_0b, - ACTIONS(2774), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2776), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4051), 1, - anon_sym_LBRACK, - ACTIONS(4053), 1, - anon_sym_DASH, - ACTIONS(4055), 1, - anon_sym_LBRACE, - ACTIONS(4059), 1, - anon_sym_not, - ACTIONS(4079), 1, - anon_sym_DQUOTE, - ACTIONS(5603), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(7072), 1, - anon_sym_DOT_DOT, - ACTIONS(7076), 1, - anon_sym_null, - ACTIONS(7080), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7082), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(7084), 1, - anon_sym_DOT2, - ACTIONS(7086), 1, - sym_val_date, - STATE(3498), 1, - sym_comment, - STATE(5171), 1, - sym__var, - STATE(5591), 1, - sym__val_number_decimal, - STATE(5808), 1, - sym_expr_parenthesized, - STATE(5935), 1, - sym_val_variable, - STATE(6419), 1, - sym__inter_double_quotes, - STATE(6430), 1, - sym__expr_unary_minus, - STATE(6464), 1, - sym__inter_single_quotes, - STATE(6519), 1, - sym__val_number, - STATE(6540), 1, - sym__str_double_quotes, - STATE(6790), 1, - sym__expr_binary_expression, - STATE(7168), 1, - sym_val_range, - STATE(8012), 1, - sym__expression, - ACTIONS(2770), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4081), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(7074), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(7078), 2, - anon_sym_true, - anon_sym_false, - STATE(6426), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(2764), 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(6590), 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, - [39960] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2740), 1, - anon_sym_LPAREN, - ACTIONS(2742), 1, - anon_sym_DOLLAR, - ACTIONS(2768), 1, - anon_sym_0b, - ACTIONS(2774), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2776), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4051), 1, - anon_sym_LBRACK, - ACTIONS(4053), 1, - anon_sym_DASH, - ACTIONS(4055), 1, - anon_sym_LBRACE, - ACTIONS(4059), 1, - anon_sym_not, - ACTIONS(4079), 1, - anon_sym_DQUOTE, - ACTIONS(5603), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(7072), 1, - anon_sym_DOT_DOT, - ACTIONS(7076), 1, - anon_sym_null, - ACTIONS(7080), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7082), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(7084), 1, - anon_sym_DOT2, - ACTIONS(7086), 1, - sym_val_date, - STATE(3499), 1, - sym_comment, - STATE(5171), 1, - sym__var, - STATE(5591), 1, - sym__val_number_decimal, - STATE(5808), 1, - sym_expr_parenthesized, - STATE(5935), 1, - sym_val_variable, - STATE(6419), 1, - sym__inter_double_quotes, - STATE(6430), 1, - sym__expr_unary_minus, - STATE(6464), 1, - sym__inter_single_quotes, - STATE(6519), 1, - sym__val_number, - STATE(6540), 1, - sym__str_double_quotes, - STATE(6790), 1, - sym__expr_binary_expression, - STATE(7168), 1, - sym_val_range, - STATE(8014), 1, - sym__expression, - ACTIONS(2770), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4081), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(7074), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(7078), 2, - anon_sym_true, - anon_sym_false, - STATE(6426), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(2764), 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(6590), 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, - [40097] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2740), 1, - anon_sym_LPAREN, - ACTIONS(2742), 1, - anon_sym_DOLLAR, - ACTIONS(2768), 1, - anon_sym_0b, - ACTIONS(2774), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2776), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4051), 1, - anon_sym_LBRACK, - ACTIONS(4053), 1, - anon_sym_DASH, - ACTIONS(4055), 1, - anon_sym_LBRACE, - ACTIONS(4059), 1, - anon_sym_not, - ACTIONS(4079), 1, - anon_sym_DQUOTE, - ACTIONS(5603), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(7072), 1, - anon_sym_DOT_DOT, - ACTIONS(7076), 1, - anon_sym_null, - ACTIONS(7080), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7082), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(7084), 1, - anon_sym_DOT2, - ACTIONS(7086), 1, - sym_val_date, - STATE(3500), 1, - sym_comment, - STATE(5171), 1, - sym__var, - STATE(5591), 1, - sym__val_number_decimal, - STATE(5808), 1, - sym_expr_parenthesized, - STATE(5935), 1, - sym_val_variable, - STATE(6419), 1, - sym__inter_double_quotes, - STATE(6430), 1, - sym__expr_unary_minus, - STATE(6464), 1, - sym__inter_single_quotes, - STATE(6519), 1, - sym__val_number, - STATE(6540), 1, - sym__str_double_quotes, - STATE(6790), 1, - sym__expr_binary_expression, - STATE(7168), 1, - sym_val_range, - STATE(8018), 1, - sym__expression, - ACTIONS(2770), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4081), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(7074), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(7078), 2, - anon_sym_true, - anon_sym_false, - STATE(6426), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(2764), 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(6590), 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, - [40234] = 4, + [39860] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3501), 1, + STATE(3072), 1, sym_comment, - ACTIONS(1302), 15, + ACTIONS(1229), 15, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -382405,7 +341482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1304), 43, + ACTIONS(1231), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -382449,93 +341526,93 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [40303] = 38, + [39929] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4151), 1, - anon_sym_DASH, - ACTIONS(4177), 1, + ACTIONS(3100), 1, + anon_sym_LPAREN, + ACTIONS(3102), 1, + anon_sym_DOLLAR, + ACTIONS(3128), 1, anon_sym_0b, - ACTIONS(4183), 1, - anon_sym_DQUOTE, - ACTIONS(4187), 1, + ACTIONS(3134), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4189), 1, + ACTIONS(3136), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5629), 1, + ACTIONS(3178), 1, + anon_sym_DQUOTE, + ACTIONS(3657), 1, anon_sym_LBRACK, - ACTIONS(5635), 1, + ACTIONS(3659), 1, + anon_sym_DASH, + ACTIONS(3661), 1, anon_sym_LBRACE, - ACTIONS(5639), 1, + ACTIONS(3665), 1, anon_sym_not, - ACTIONS(7399), 1, - anon_sym_LPAREN, - ACTIONS(7401), 1, - anon_sym_DOLLAR, - ACTIONS(7403), 1, + ACTIONS(3679), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6744), 1, anon_sym_DOT_DOT, - ACTIONS(7407), 1, - anon_sym_null, - ACTIONS(7411), 1, + ACTIONS(6754), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7413), 1, + ACTIONS(6756), 1, aux_sym__val_number_decimal_token2, - ACTIONS(7415), 1, + ACTIONS(6758), 1, anon_sym_DOT2, - ACTIONS(7417), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(7419), 1, + ACTIONS(6760), 1, sym_val_date, - STATE(3502), 1, + ACTIONS(6780), 1, + anon_sym_null, + STATE(3073), 1, sym_comment, - STATE(4110), 1, + STATE(3929), 1, sym__var, - STATE(4270), 1, - sym__val_number_decimal, - STATE(4648), 1, - sym_expr_parenthesized, - STATE(4664), 1, - sym_val_variable, - STATE(5025), 1, + STATE(4922), 1, + sym__val_number, + STATE(5067), 1, sym__str_double_quotes, - STATE(5028), 1, + STATE(5301), 1, + sym__val_number_decimal, + STATE(5725), 1, sym__inter_single_quotes, - STATE(5029), 1, + STATE(5726), 1, sym__inter_double_quotes, - STATE(5030), 1, + STATE(5745), 1, sym__expr_unary_minus, - STATE(5114), 1, - sym__val_number, - STATE(6800), 1, + STATE(5903), 1, + sym_val_variable, + STATE(5960), 1, + sym_expr_parenthesized, + STATE(6383), 1, sym__expr_binary_expression, - STATE(7168), 1, + STATE(6728), 1, sym_val_range, - STATE(7646), 1, + STATE(10058), 1, sym__expression, - ACTIONS(4179), 2, + ACTIONS(3130), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(4185), 2, + ACTIONS(3180), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(7405), 2, + ACTIONS(6748), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(7409), 2, + ACTIONS(6782), 2, anon_sym_true, anon_sym_false, - STATE(5022), 3, + STATE(5743), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(4173), 6, + ACTIONS(3124), 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(5065), 12, + STATE(5659), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -382548,111 +341625,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [40440] = 38, + [40066] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4151), 1, + ACTIONS(6953), 1, + anon_sym_in, + ACTIONS(6969), 1, + anon_sym_bit_DASHand, + ACTIONS(6971), 1, + anon_sym_bit_DASHxor, + ACTIONS(6973), 1, + anon_sym_bit_DASHor, + ACTIONS(6975), 1, + anon_sym_and, + ACTIONS(6977), 1, + anon_sym_xor, + STATE(3074), 1, + sym_comment, + ACTIONS(6949), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(6951), 2, anon_sym_DASH, - ACTIONS(4177), 1, - anon_sym_0b, - ACTIONS(4183), 1, - anon_sym_DQUOTE, - ACTIONS(4187), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4189), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5629), 1, - anon_sym_LBRACK, - ACTIONS(5635), 1, - anon_sym_LBRACE, - ACTIONS(5639), 1, - anon_sym_not, - ACTIONS(7399), 1, - anon_sym_LPAREN, - ACTIONS(7401), 1, + anon_sym_PLUS, + ACTIONS(6955), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6957), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6959), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(6961), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6967), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6965), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6963), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1179), 8, anon_sym_DOLLAR, - ACTIONS(7403), 1, anon_sym_DOT_DOT, - ACTIONS(7407), 1, - anon_sym_null, - ACTIONS(7411), 1, + anon_sym_not, aux_sym__val_number_decimal_token1, - ACTIONS(7413), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(7415), 1, anon_sym_DOT2, - ACTIONS(7417), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(7419), 1, - sym_val_date, - STATE(3503), 1, - sym_comment, - STATE(4110), 1, - sym__var, - STATE(4270), 1, - sym__val_number_decimal, - STATE(4648), 1, - sym_expr_parenthesized, - STATE(4664), 1, - sym_val_variable, - STATE(5025), 1, - sym__str_double_quotes, - STATE(5028), 1, - sym__inter_single_quotes, - STATE(5029), 1, - sym__inter_double_quotes, - STATE(5030), 1, - sym__expr_unary_minus, - STATE(5114), 1, - sym__val_number, - STATE(6802), 1, - sym__expr_binary_expression, - STATE(7168), 1, - sym_val_range, - STATE(7646), 1, - sym__expression, - ACTIONS(4179), 2, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4185), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(7405), 2, + ACTIONS(1181), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_or, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(7409), 2, + anon_sym_null, anon_sym_true, anon_sym_false, - STATE(5022), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(4173), 6, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5065), 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, - [40577] = 4, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [40165] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3504), 1, + STATE(3075), 1, sym_comment, - ACTIONS(1243), 15, + ACTIONS(1233), 15, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -382668,7 +341726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1290), 43, + ACTIONS(1235), 43, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -382712,59 +341770,58 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [40646] = 4, - ACTIONS(113), 1, + [40234] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3505), 1, + STATE(3076), 1, sym_comment, - ACTIONS(1115), 2, - anon_sym_DOT, - sym__entry_separator, - ACTIONS(1113), 55, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, + ACTIONS(1093), 15, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, + anon_sym_GT, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1095), 43, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -382772,63 +341829,64 @@ 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, - aux_sym__record_key_token2, - [40714] = 4, - ACTIONS(113), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [40303] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3506), 1, + STATE(3077), 1, sym_comment, - ACTIONS(1119), 2, - anon_sym_DOT, - sym__entry_separator, - ACTIONS(1117), 55, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, + ACTIONS(1171), 15, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, + anon_sym_GT, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1173), 43, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -382836,18 +341894,20 @@ 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, - aux_sym__record_key_token2, - [40782] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [40372] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1196), 1, + ACTIONS(1074), 1, sym__entry_separator, - STATE(3507), 1, + STATE(3078), 1, sym_comment, - ACTIONS(1194), 56, + ACTIONS(1072), 56, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -382904,28 +341964,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [40850] = 4, - ACTIONS(3), 1, + [40440] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(3508), 1, + STATE(3079), 1, sym_comment, - ACTIONS(1170), 15, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1168), 42, + ACTIONS(1043), 2, + anon_sym_DOT, + sym__entry_separator, + ACTIONS(1041), 55, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -382938,6 +341985,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_module, anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_error, anon_sym_list, anon_sym_DASH, @@ -382952,6 +342001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_match, + anon_sym_RBRACE, anon_sym_try, anon_sym_catch, anon_sym_return, @@ -382965,19 +342015,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_PLUS, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, aux_sym__record_key_token2, - [40918] = 5, + [40508] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2358), 1, sym__entry_separator, - ACTIONS(7513), 1, + ACTIONS(6989), 1, aux_sym__immediate_decimal_token2, - STATE(3509), 1, + STATE(3080), 1, sym_comment, - ACTIONS(2547), 55, + ACTIONS(2356), 55, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -383033,16 +342093,16 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [40988] = 5, + [40578] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5085), 1, + ACTIONS(2231), 1, sym__entry_separator, - ACTIONS(7515), 1, - aux_sym__immediate_decimal_token1, - STATE(3510), 1, + ACTIONS(6985), 1, + aux_sym__immediate_decimal_token2, + STATE(3081), 1, sym_comment, - ACTIONS(5083), 55, + ACTIONS(2229), 55, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -383098,15 +342158,16 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [41058] = 4, + [40648] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(3511), 1, - sym_comment, - ACTIONS(1111), 2, - anon_sym_DOT, + ACTIONS(2364), 1, sym__entry_separator, - ACTIONS(1109), 55, + ACTIONS(7029), 1, + aux_sym__immediate_decimal_token2, + STATE(3082), 1, + sym_comment, + ACTIONS(2362), 55, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -383162,16 +342223,16 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [41126] = 5, + [40718] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2583), 1, + ACTIONS(4773), 1, sym__entry_separator, - ACTIONS(7441), 1, - aux_sym__immediate_decimal_token2, - STATE(3512), 1, + ACTIONS(7031), 1, + aux_sym__immediate_decimal_token1, + STATE(3083), 1, sym_comment, - ACTIONS(2581), 55, + ACTIONS(4771), 55, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -383227,30 +342288,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [41196] = 6, - ACTIONS(3), 1, + [40788] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7517), 1, - anon_sym_COLON, - ACTIONS(7519), 1, - anon_sym_COMMA, - STATE(3513), 1, + STATE(3084), 1, sym_comment, - ACTIONS(7521), 13, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1461), 42, + ACTIONS(1049), 2, + anon_sym_DOT, + sym__entry_separator, + ACTIONS(1047), 55, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -383263,6 +342309,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_module, anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_error, anon_sym_list, anon_sym_DASH, @@ -383277,6 +342325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_match, + anon_sym_RBRACE, anon_sym_try, anon_sym_catch, anon_sym_return, @@ -383290,23 +342339,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_PLUS, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, aux_sym__record_key_token2, - [41268] = 6, + [40856] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7523), 1, - anon_sym_DOT, - ACTIONS(7525), 1, - aux_sym__immediate_decimal_token2, - STATE(3514), 1, + STATE(3085), 1, sym_comment, - ACTIONS(2583), 12, + ACTIONS(1063), 15, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, aux_sym__val_number_decimal_token2, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -383315,7 +342373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2581), 43, + ACTIONS(1061), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -383355,20 +342413,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_PLUS, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [41340] = 5, + [40924] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2439), 1, - sym__entry_separator, - ACTIONS(7427), 1, - aux_sym__immediate_decimal_token2, - STATE(3515), 1, + STATE(3086), 1, sym_comment, - ACTIONS(2437), 55, + ACTIONS(1039), 2, + anon_sym_DOT, + sym__entry_separator, + ACTIONS(1037), 55, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -383424,16 +342480,16 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [41410] = 5, + [40992] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3750), 1, + ACTIONS(3576), 1, sym__entry_separator, - ACTIONS(7515), 1, + ACTIONS(7031), 1, aux_sym__immediate_decimal_token1, - STATE(3516), 1, + STATE(3087), 1, sym_comment, - ACTIONS(3748), 55, + ACTIONS(3574), 55, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -383489,16 +342545,16 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [41480] = 6, + [41062] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7527), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7529), 1, - aux_sym__immediate_decimal_token2, - STATE(3517), 1, + ACTIONS(7033), 1, + anon_sym_COLON, + ACTIONS(7035), 1, + anon_sym_COMMA, + STATE(3088), 1, sym_comment, - ACTIONS(2439), 13, + ACTIONS(7037), 13, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -383512,7 +342568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2437), 42, + ACTIONS(1291), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -383555,14 +342611,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [41552] = 4, - ACTIONS(113), 1, + [41134] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2549), 1, - sym__entry_separator, - STATE(3518), 1, + ACTIONS(7039), 1, + anon_sym_DOT, + ACTIONS(7041), 1, + aux_sym__immediate_decimal_token2, + STATE(3089), 1, sym_comment, - ACTIONS(2547), 55, + ACTIONS(2358), 12, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2356), 43, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -383575,8 +342646,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_module, anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_error, anon_sym_list, anon_sym_DASH, @@ -383591,7 +342660,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_match, - anon_sym_RBRACE, anon_sym_try, anon_sym_catch, anon_sym_return, @@ -383605,27 +342673,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_PLUS, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, aux_sym__record_key_token2, - [41619] = 5, + [41206] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7531), 1, + ACTIONS(7043), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7045), 1, aux_sym__immediate_decimal_token2, - STATE(3519), 1, + STATE(3090), 1, sym_comment, - ACTIONS(2549), 13, + ACTIONS(2231), 13, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -383639,7 +342700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2547), 42, + ACTIONS(2229), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -383682,14 +342743,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [41688] = 4, + [41278] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3951), 1, + ACTIONS(5021), 1, sym__entry_separator, - STATE(3520), 1, + STATE(3091), 1, sym_comment, - ACTIONS(3949), 55, + ACTIONS(5019), 55, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -383745,14 +342806,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [41755] = 4, + [41345] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3966), 1, + ACTIONS(2404), 1, sym__entry_separator, - STATE(3521), 1, + STATE(3092), 1, sym_comment, - ACTIONS(3964), 55, + ACTIONS(2402), 55, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -383808,14 +342869,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [41822] = 4, + [41412] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4045), 1, + ACTIONS(3356), 1, sym__entry_separator, - STATE(3522), 1, + STATE(3093), 1, sym_comment, - ACTIONS(4043), 55, + ACTIONS(3354), 55, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -383871,14 +342932,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [41889] = 4, - ACTIONS(113), 1, + [41479] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2845), 1, - sym__entry_separator, - STATE(3523), 1, + ACTIONS(7047), 1, + aux_sym__immediate_decimal_token1, + STATE(3094), 1, sym_comment, - ACTIONS(2843), 55, + ACTIONS(3576), 13, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + aux_sym__val_number_decimal_token2, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3574), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -383891,8 +342966,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_module, anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_error, anon_sym_list, anon_sym_DASH, @@ -383907,7 +342980,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_match, - anon_sym_RBRACE, anon_sym_try, anon_sym_catch, anon_sym_return, @@ -383921,27 +342993,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_PLUS, aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [41548] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7049), 1, + aux_sym__immediate_decimal_token2, + STATE(3095), 1, + sym_comment, + ACTIONS(2364), 13, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, aux_sym__val_number_decimal_token2, anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + ACTIONS(2362), 42, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, aux_sym__record_key_token2, - [41956] = 4, + [41617] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5189), 1, + ACTIONS(3743), 1, sym__entry_separator, - STATE(3524), 1, + STATE(3096), 1, sym_comment, - ACTIONS(5187), 55, + ACTIONS(3741), 55, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -383997,14 +343123,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [42023] = 4, - ACTIONS(113), 1, + [41684] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3868), 1, - sym__entry_separator, - STATE(3525), 1, + ACTIONS(7041), 1, + aux_sym__immediate_decimal_token2, + STATE(3097), 1, sym_comment, - ACTIONS(3866), 55, + ACTIONS(2358), 13, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + aux_sym__val_number_decimal_token2, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2356), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -384017,8 +343157,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_module, anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_error, anon_sym_list, anon_sym_DASH, @@ -384033,7 +343171,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_match, - anon_sym_RBRACE, anon_sym_try, anon_sym_catch, anon_sym_return, @@ -384047,27 +343184,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_PLUS, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, aux_sym__record_key_token2, - [42090] = 4, + [41753] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4002), 1, + ACTIONS(3773), 1, sym__entry_separator, - STATE(3526), 1, + STATE(3098), 1, sym_comment, - ACTIONS(4000), 55, + ACTIONS(3771), 55, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -384123,28 +343250,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [42157] = 5, - ACTIONS(3), 1, + [41820] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7533), 1, - aux_sym__immediate_decimal_token1, - STATE(3527), 1, + ACTIONS(3314), 1, + sym__entry_separator, + STATE(3099), 1, sym_comment, - ACTIONS(5085), 13, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5083), 42, + ACTIONS(3312), 55, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -384157,6 +343270,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_module, anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_error, anon_sym_list, anon_sym_DASH, @@ -384171,6 +343286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_match, + anon_sym_RBRACE, anon_sym_try, anon_sym_catch, anon_sym_return, @@ -384184,17 +343300,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_PLUS, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, aux_sym__record_key_token2, - [42226] = 4, - ACTIONS(113), 1, + [41887] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5193), 1, - sym__entry_separator, - STATE(3528), 1, + ACTIONS(7045), 1, + aux_sym__immediate_decimal_token2, + STATE(3100), 1, sym_comment, - ACTIONS(5191), 55, + ACTIONS(2231), 13, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + aux_sym__val_number_decimal_token2, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2229), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -384207,8 +343347,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_module, anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_error, anon_sym_list, anon_sym_DASH, @@ -384223,7 +343361,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_match, - anon_sym_RBRACE, anon_sym_try, anon_sym_catch, anon_sym_return, @@ -384237,27 +343374,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_PLUS, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, aux_sym__record_key_token2, - [42293] = 4, + [41956] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5197), 1, + ACTIONS(3693), 1, sym__entry_separator, - STATE(3529), 1, + STATE(3101), 1, sym_comment, - ACTIONS(5195), 55, + ACTIONS(3691), 55, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -384313,14 +343440,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [42360] = 4, + [42023] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4008), 1, + ACTIONS(3701), 1, sym__entry_separator, - STATE(3530), 1, + STATE(3102), 1, sym_comment, - ACTIONS(4006), 55, + ACTIONS(3699), 55, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -384376,14 +343503,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [42427] = 4, + [42090] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5217), 1, + ACTIONS(7053), 1, sym__entry_separator, - STATE(3531), 1, + STATE(3103), 1, sym_comment, - ACTIONS(5215), 55, + ACTIONS(7051), 55, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -384439,14 +343566,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [42494] = 4, + [42157] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7537), 1, + ACTIONS(3713), 1, sym__entry_separator, - STATE(3532), 1, + STATE(3104), 1, sym_comment, - ACTIONS(7535), 55, + ACTIONS(3711), 55, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -384502,28 +343629,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [42561] = 5, - ACTIONS(3), 1, + [42224] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7533), 1, - aux_sym__immediate_decimal_token1, - STATE(3533), 1, + ACTIONS(7057), 1, + sym__entry_separator, + STATE(3105), 1, sym_comment, - ACTIONS(3750), 13, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3748), 42, + ACTIONS(7055), 55, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -384536,6 +343649,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_module, anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_error, anon_sym_list, anon_sym_DASH, @@ -384550,6 +343665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_match, + anon_sym_RBRACE, anon_sym_try, anon_sym_catch, anon_sym_return, @@ -384563,17 +343679,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_PLUS, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, aux_sym__record_key_token2, - [42630] = 4, + [42291] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5221), 1, + ACTIONS(4957), 1, sym__entry_separator, - STATE(3534), 1, + STATE(3106), 1, sym_comment, - ACTIONS(5219), 55, + ACTIONS(4955), 55, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -384629,14 +343755,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [42697] = 4, + [42358] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2439), 1, + ACTIONS(2231), 1, sym__entry_separator, - STATE(3535), 1, + STATE(3107), 1, sym_comment, - ACTIONS(2437), 55, + ACTIONS(2229), 55, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -384692,14 +343818,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [42764] = 4, + [42425] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5225), 1, + ACTIONS(4965), 1, sym__entry_separator, - STATE(3536), 1, + STATE(3108), 1, sym_comment, - ACTIONS(5223), 55, + ACTIONS(4963), 55, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -384755,14 +343881,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [42831] = 4, + [42492] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1170), 1, + ACTIONS(4999), 1, sym__entry_separator, - STATE(3537), 1, + STATE(3109), 1, sym_comment, - ACTIONS(1168), 55, + ACTIONS(4997), 55, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -384818,14 +343944,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [42898] = 4, + [42559] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5229), 1, + ACTIONS(5003), 1, sym__entry_separator, - STATE(3538), 1, + STATE(3110), 1, sym_comment, - ACTIONS(5227), 55, + ACTIONS(5001), 55, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -384881,14 +344007,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [42965] = 4, + [42626] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5233), 1, + ACTIONS(5007), 1, sym__entry_separator, - STATE(3539), 1, + STATE(3111), 1, sym_comment, - ACTIONS(5231), 55, + ACTIONS(5005), 55, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -384944,14 +344070,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [43032] = 4, + [42693] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3507), 1, + ACTIONS(3646), 1, sym__entry_separator, - STATE(3540), 1, + STATE(3112), 1, sym_comment, - ACTIONS(3505), 55, + ACTIONS(3644), 55, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -385007,14 +344133,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [43099] = 4, + [42760] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5237), 1, + ACTIONS(5025), 1, sym__entry_separator, - STATE(3541), 1, + STATE(3113), 1, sym_comment, - ACTIONS(5235), 55, + ACTIONS(5023), 55, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -385070,14 +344196,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [43166] = 4, + [42827] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3962), 1, + ACTIONS(5029), 1, sym__entry_separator, - STATE(3542), 1, + STATE(3114), 1, sym_comment, - ACTIONS(3960), 55, + ACTIONS(5027), 55, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -385133,14 +344259,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [43233] = 4, + [42894] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3520), 1, + ACTIONS(5033), 1, sym__entry_separator, - STATE(3543), 1, + STATE(3115), 1, sym_comment, - ACTIONS(3518), 55, + ACTIONS(5031), 55, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -385196,14 +344322,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [43300] = 4, + [42961] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5241), 1, + ACTIONS(3723), 1, sym__entry_separator, - STATE(3544), 1, + STATE(3116), 1, sym_comment, - ACTIONS(5239), 55, + ACTIONS(3721), 55, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -385259,16 +344385,78 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [43367] = 5, - ACTIONS(113), 1, + [43028] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7541), 1, + ACTIONS(7047), 1, + aux_sym__immediate_decimal_token1, + STATE(3117), 1, + sym_comment, + ACTIONS(4773), 13, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_RBRACE, - ACTIONS(7543), 1, + aux_sym__val_number_decimal_token2, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4771), 42, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [43097] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(3769), 1, sym__entry_separator, - STATE(3545), 1, + STATE(3118), 1, sym_comment, - ACTIONS(7539), 54, + ACTIONS(3767), 55, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -385297,6 +344485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_match, + anon_sym_RBRACE, anon_sym_try, anon_sym_catch, anon_sym_return, @@ -385323,14 +344512,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [43436] = 4, + [43164] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7547), 1, + ACTIONS(2364), 1, sym__entry_separator, - STATE(3546), 1, + STATE(3119), 1, sym_comment, - ACTIONS(7545), 55, + ACTIONS(2362), 55, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -385386,28 +344575,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [43503] = 5, - ACTIONS(3), 1, + [43231] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7525), 1, - aux_sym__immediate_decimal_token2, - STATE(3547), 1, + ACTIONS(7061), 1, + sym__entry_separator, + STATE(3120), 1, sym_comment, - ACTIONS(2583), 13, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2581), 42, + ACTIONS(7059), 55, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -385420,6 +344595,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_module, anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_error, anon_sym_list, anon_sym_DASH, @@ -385434,6 +344611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_match, + anon_sym_RBRACE, anon_sym_try, anon_sym_catch, anon_sym_return, @@ -385447,17 +344625,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_PLUS, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, aux_sym__record_key_token2, - [43572] = 4, + [43298] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7551), 1, + ACTIONS(1063), 1, sym__entry_separator, - STATE(3548), 1, + STATE(3121), 1, sym_comment, - ACTIONS(7549), 55, + ACTIONS(1061), 55, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -385513,14 +344701,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [43639] = 4, + [43365] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7555), 1, + ACTIONS(7065), 1, sym__entry_separator, - STATE(3549), 1, + STATE(3122), 1, sym_comment, - ACTIONS(7553), 55, + ACTIONS(7063), 55, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -385576,28 +344764,16 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [43706] = 5, - ACTIONS(3), 1, + [43432] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7529), 1, - aux_sym__immediate_decimal_token2, - STATE(3550), 1, - sym_comment, - ACTIONS(2439), 13, - anon_sym_LPAREN, - anon_sym_DOLLAR, + ACTIONS(7069), 1, anon_sym_RBRACE, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2437), 42, + ACTIONS(7071), 1, + sym__entry_separator, + STATE(3123), 1, + sym_comment, + ACTIONS(7067), 54, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -385610,6 +344786,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_module, anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_error, anon_sym_list, anon_sym_DASH, @@ -385637,17 +344815,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_PLUS, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, aux_sym__record_key_token2, - [43775] = 4, + [43501] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3876), 1, + ACTIONS(4961), 1, sym__entry_separator, - STATE(3551), 1, + STATE(3124), 1, sym_comment, - ACTIONS(3874), 55, + ACTIONS(4959), 55, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -385703,16 +344891,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [43842] = 5, + [43568] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7561), 1, - anon_sym_RBRACE, - STATE(3552), 1, + STATE(3125), 1, sym_comment, - ACTIONS(7559), 12, + ACTIONS(3773), 13, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_RBRACE, aux_sym__val_number_decimal_token2, anon_sym_DOT2, aux_sym__val_number_decimal_token3, @@ -385723,7 +344910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(7557), 42, + ACTIONS(3771), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -385766,12 +344953,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [43910] = 4, + [43634] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3553), 1, + STATE(3126), 1, sym_comment, - ACTIONS(7537), 13, + ACTIONS(3769), 13, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -385785,7 +344972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(7535), 42, + ACTIONS(3767), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -385828,12 +345015,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [43976] = 4, + [43700] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3554), 1, + STATE(3127), 1, sym_comment, - ACTIONS(2845), 13, + ACTIONS(3723), 13, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -385847,7 +345034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2843), 42, + ACTIONS(3721), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -385890,12 +345077,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [44042] = 4, + [43766] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3555), 1, + STATE(3128), 1, sym_comment, - ACTIONS(7563), 13, + ACTIONS(7053), 13, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -385909,7 +345096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(7539), 42, + ACTIONS(7051), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -385952,12 +345139,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [44108] = 4, + [43832] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3556), 1, + STATE(3129), 1, sym_comment, - ACTIONS(3868), 13, + ACTIONS(7057), 13, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -385971,7 +345158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3866), 42, + ACTIONS(7055), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -386014,12 +345201,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [44174] = 4, + [43898] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3557), 1, + STATE(3130), 1, sym_comment, - ACTIONS(3951), 13, + ACTIONS(7061), 13, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -386033,7 +345220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3949), 42, + ACTIONS(7059), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -386076,12 +345263,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [44240] = 4, + [43964] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3558), 1, + STATE(3131), 1, sym_comment, - ACTIONS(3966), 13, + ACTIONS(7065), 13, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -386095,7 +345282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3964), 42, + ACTIONS(7063), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -386138,12 +345325,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [44306] = 4, + [44030] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3559), 1, + STATE(3132), 1, sym_comment, - ACTIONS(4045), 13, + ACTIONS(3743), 13, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -386157,7 +345344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4043), 42, + ACTIONS(3741), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -386200,15 +345387,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [44372] = 4, + [44096] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3560), 1, + ACTIONS(7077), 1, + anon_sym_RBRACE, + STATE(3133), 1, sym_comment, - ACTIONS(7555), 13, + ACTIONS(7075), 12, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_RBRACE, aux_sym__val_number_decimal_token2, anon_sym_DOT2, aux_sym__val_number_decimal_token3, @@ -386219,7 +345407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(7553), 42, + ACTIONS(7073), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -386262,12 +345450,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [44438] = 4, + [44164] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3561), 1, + STATE(3134), 1, sym_comment, - ACTIONS(5189), 13, + ACTIONS(1074), 13, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -386281,7 +345469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5187), 42, + ACTIONS(1072), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -386324,12 +345512,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [44504] = 4, + [44230] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3562), 1, + STATE(3135), 1, sym_comment, - ACTIONS(2439), 13, + ACTIONS(3693), 13, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -386343,7 +345531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2437), 42, + ACTIONS(3691), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -386386,12 +345574,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [44570] = 4, + [44296] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3563), 1, + STATE(3136), 1, sym_comment, - ACTIONS(1196), 13, + ACTIONS(3701), 13, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -386405,7 +345593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1194), 42, + ACTIONS(3699), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -386448,12 +345636,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [44636] = 4, + [44362] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3564), 1, + STATE(3137), 1, sym_comment, - ACTIONS(2549), 13, + ACTIONS(3713), 13, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -386467,7 +345655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2547), 42, + ACTIONS(3711), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -386510,15 +345698,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [44702] = 4, + [44428] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3565), 1, + ACTIONS(7079), 1, + anon_sym_RBRACE, + STATE(3138), 1, sym_comment, - ACTIONS(7551), 13, + ACTIONS(7075), 12, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_RBRACE, aux_sym__val_number_decimal_token2, anon_sym_DOT2, aux_sym__val_number_decimal_token3, @@ -386529,7 +345718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(7549), 42, + ACTIONS(7073), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -386572,12 +345761,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [44768] = 4, + [44496] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3566), 1, + STATE(3139), 1, sym_comment, - ACTIONS(7547), 13, + ACTIONS(4961), 13, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -386591,7 +345780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(7545), 42, + ACTIONS(4959), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -386634,12 +345823,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [44834] = 4, + [44562] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3567), 1, + STATE(3140), 1, sym_comment, - ACTIONS(5193), 13, + ACTIONS(4965), 13, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -386653,7 +345842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5191), 42, + ACTIONS(4963), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -386696,12 +345885,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [44900] = 4, + [44628] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3568), 1, + STATE(3141), 1, sym_comment, - ACTIONS(5197), 13, + ACTIONS(7083), 13, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -386715,7 +345904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5195), 42, + ACTIONS(7081), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -386758,12 +345947,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [44966] = 4, + [44694] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3569), 1, + STATE(3142), 1, sym_comment, - ACTIONS(3962), 13, + ACTIONS(4999), 13, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -386777,7 +345966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3960), 42, + ACTIONS(4997), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -386820,12 +346009,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [45032] = 4, + [44760] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3570), 1, + STATE(3143), 1, sym_comment, - ACTIONS(5217), 13, + ACTIONS(5003), 13, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -386839,7 +346028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5215), 42, + ACTIONS(5001), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -386882,12 +346071,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [45098] = 4, + [44826] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3571), 1, + STATE(3144), 1, sym_comment, - ACTIONS(5221), 13, + ACTIONS(5007), 13, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -386901,7 +346090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5219), 42, + ACTIONS(5005), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -386944,12 +346133,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [45164] = 4, + [44892] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3572), 1, + STATE(3145), 1, sym_comment, - ACTIONS(5225), 13, + ACTIONS(5021), 13, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -386963,7 +346152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5223), 42, + ACTIONS(5019), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -387006,16 +346195,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [45230] = 5, + [44958] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7565), 1, + STATE(3146), 1, + sym_comment, + ACTIONS(5025), 13, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_RBRACE, - STATE(3573), 1, + aux_sym__val_number_decimal_token2, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5023), 42, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [45024] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3147), 1, sym_comment, - ACTIONS(7559), 12, + ACTIONS(5029), 13, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_RBRACE, aux_sym__val_number_decimal_token2, anon_sym_DOT2, aux_sym__val_number_decimal_token3, @@ -387026,7 +346276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(7557), 42, + ACTIONS(5027), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -387069,12 +346319,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [45298] = 4, + [45090] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3574), 1, + STATE(3148), 1, sym_comment, - ACTIONS(5229), 13, + ACTIONS(5033), 13, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -387088,7 +346338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5227), 42, + ACTIONS(5031), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -387131,12 +346381,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [45364] = 4, + [45156] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3575), 1, + STATE(3149), 1, sym_comment, - ACTIONS(5233), 13, + ACTIONS(2231), 13, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -387150,7 +346400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5231), 42, + ACTIONS(2229), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -387193,12 +346443,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [45430] = 4, + [45222] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3576), 1, + STATE(3150), 1, sym_comment, - ACTIONS(5237), 13, + ACTIONS(2364), 13, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -387212,7 +346462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5235), 42, + ACTIONS(2362), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -387255,12 +346505,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [45496] = 4, + [45288] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3577), 1, + STATE(3151), 1, sym_comment, - ACTIONS(5241), 13, + ACTIONS(2404), 13, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -387274,7 +346524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5239), 42, + ACTIONS(2402), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -387317,12 +346567,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [45562] = 4, + [45354] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3578), 1, + STATE(3152), 1, sym_comment, - ACTIONS(3520), 13, + ACTIONS(7085), 13, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -387336,7 +346586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3518), 42, + ACTIONS(7067), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -387379,12 +346629,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [45628] = 4, + [45420] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3579), 1, + STATE(3153), 1, sym_comment, - ACTIONS(4008), 13, + ACTIONS(3314), 13, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -387398,7 +346648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4006), 42, + ACTIONS(3312), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -387441,12 +346691,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [45694] = 4, + [45486] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3580), 1, + STATE(3154), 1, sym_comment, - ACTIONS(7569), 13, + ACTIONS(3356), 13, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -387460,7 +346710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(7567), 42, + ACTIONS(3354), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -387503,12 +346753,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [45760] = 4, + [45552] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3581), 1, + STATE(3155), 1, sym_comment, - ACTIONS(4002), 13, + ACTIONS(3646), 13, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -387522,7 +346772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4000), 42, + ACTIONS(3644), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -387565,12 +346815,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [45826] = 4, + [45618] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3582), 1, + STATE(3156), 1, sym_comment, - ACTIONS(3876), 13, + ACTIONS(4957), 13, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -387584,7 +346834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3874), 42, + ACTIONS(4955), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -387627,15 +346877,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [45892] = 4, + [45684] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3583), 1, + STATE(3157), 1, sym_comment, - ACTIONS(3507), 13, + ACTIONS(7075), 12, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_RBRACE, aux_sym__val_number_decimal_token2, anon_sym_DOT2, aux_sym__val_number_decimal_token3, @@ -387646,7 +346895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3505), 42, + ACTIONS(7073), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -387689,40 +346938,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [45958] = 16, + [45749] = 16, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1655), 1, + ACTIONS(1453), 1, anon_sym_DOLLAR, - ACTIONS(7573), 1, + ACTIONS(7089), 1, anon_sym_RBRACK, - ACTIONS(7575), 1, + ACTIONS(7091), 1, anon_sym_DOLLAR2, - ACTIONS(7577), 1, + ACTIONS(7093), 1, anon_sym_LPAREN2, - ACTIONS(7579), 1, + ACTIONS(7095), 1, anon_sym_DOT, - ACTIONS(7583), 1, + ACTIONS(7099), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7585), 1, + ACTIONS(7101), 1, sym__entry_separator, - ACTIONS(7587), 1, + ACTIONS(7103), 1, aux_sym__unquoted_in_list_token4, - ACTIONS(7589), 1, + ACTIONS(7105), 1, aux_sym__unquoted_in_list_token6, - STATE(3584), 1, + STATE(3158), 1, sym_comment, - STATE(3687), 1, - sym__immediate_decimal, - STATE(3701), 1, + STATE(3255), 1, sym__var, - ACTIONS(7581), 2, + STATE(3271), 1, + sym__immediate_decimal, + ACTIONS(7097), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3869), 2, + STATE(3467), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(7571), 39, + ACTIONS(7087), 39, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -387762,124 +347011,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [46047] = 4, + [45838] = 17, ACTIONS(3), 1, anon_sym_POUND, - STATE(3585), 1, - sym_comment, - ACTIONS(7559), 12, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(7557), 42, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [46112] = 14, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(938), 1, - sym__entry_separator, - ACTIONS(1655), 1, + ACTIONS(3260), 1, anon_sym_DOLLAR, - ACTIONS(2613), 1, - aux_sym_unquoted_token3, - ACTIONS(7577), 1, + ACTIONS(7091), 1, + anon_sym_DOLLAR2, + ACTIONS(7107), 1, + anon_sym_RBRACK, + ACTIONS(7109), 1, anon_sym_LPAREN2, - ACTIONS(7591), 1, + ACTIONS(7111), 1, anon_sym_DOT, - ACTIONS(7595), 1, + ACTIONS(7113), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7115), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7117), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7597), 1, - aux_sym_unquoted_token5, - STATE(3586), 1, + ACTIONS(7119), 1, + aux_sym__unquoted_in_list_token4, + ACTIONS(7121), 1, + aux_sym__unquoted_in_list_token6, + STATE(3159), 1, sym_comment, - STATE(3701), 1, + STATE(3303), 1, sym__var, - STATE(3724), 1, + STATE(3331), 1, sym__immediate_decimal, - ACTIONS(7593), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3869), 2, + STATE(3581), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(936), 40, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(7087), 12, anon_sym_LPAREN, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(7101), 27, + anon_sym_LBRACK, + anon_sym_COMMA, + 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_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, 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, @@ -387892,37 +347084,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - [46196] = 14, + [45928] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(938), 1, + ACTIONS(922), 1, sym__entry_separator, - ACTIONS(1655), 1, + ACTIONS(1453), 1, anon_sym_DOLLAR, - ACTIONS(7577), 1, + ACTIONS(7093), 1, anon_sym_LPAREN2, - ACTIONS(7599), 1, + ACTIONS(7123), 1, anon_sym_DOT, - ACTIONS(7603), 1, + ACTIONS(7127), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7605), 1, + ACTIONS(7129), 1, aux_sym_unquoted_token3, - ACTIONS(7607), 1, + ACTIONS(7131), 1, aux_sym_unquoted_token5, - STATE(3587), 1, + STATE(3160), 1, sym_comment, - STATE(3701), 1, + STATE(3255), 1, sym__var, - STATE(3704), 1, + STATE(3286), 1, sym__immediate_decimal, - ACTIONS(7601), 2, + ACTIONS(7125), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3869), 2, + STATE(3467), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(936), 40, + ACTIONS(920), 40, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -387963,39 +347154,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [46280] = 17, + [46012] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3401), 1, + ACTIONS(3260), 1, anon_sym_DOLLAR, - ACTIONS(7575), 1, + ACTIONS(7091), 1, anon_sym_DOLLAR2, - ACTIONS(7609), 1, - anon_sym_RBRACK, - ACTIONS(7611), 1, + ACTIONS(7109), 1, anon_sym_LPAREN2, - ACTIONS(7613), 1, + ACTIONS(7111), 1, anon_sym_DOT, - ACTIONS(7615), 1, + ACTIONS(7113), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7617), 1, + ACTIONS(7115), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7619), 1, + ACTIONS(7117), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7621), 1, + ACTIONS(7119), 1, aux_sym__unquoted_in_list_token4, - ACTIONS(7623), 1, + ACTIONS(7121), 1, aux_sym__unquoted_in_list_token6, - STATE(3588), 1, + ACTIONS(7133), 1, + anon_sym_RBRACK, + STATE(3161), 1, sym_comment, - STATE(3741), 1, + STATE(3303), 1, sym__var, - STATE(3811), 1, + STATE(3331), 1, sym__immediate_decimal, - STATE(3961), 2, + STATE(3581), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(7571), 12, + ACTIONS(7087), 12, anon_sym_LPAREN, anon_sym_DASH, anon_sym_DOT_DOT, @@ -388008,7 +347199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(7585), 27, + ACTIONS(7101), 27, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DASH_DASH, @@ -388036,39 +347227,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [46370] = 17, + [46102] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3401), 1, + ACTIONS(3260), 1, anon_sym_DOLLAR, - ACTIONS(7575), 1, + ACTIONS(7091), 1, anon_sym_DOLLAR2, - ACTIONS(7611), 1, + ACTIONS(7109), 1, anon_sym_LPAREN2, - ACTIONS(7613), 1, + ACTIONS(7111), 1, anon_sym_DOT, - ACTIONS(7615), 1, + ACTIONS(7113), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7617), 1, + ACTIONS(7115), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7619), 1, + ACTIONS(7117), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7621), 1, + ACTIONS(7119), 1, aux_sym__unquoted_in_list_token4, - ACTIONS(7623), 1, + ACTIONS(7121), 1, aux_sym__unquoted_in_list_token6, - ACTIONS(7625), 1, + ACTIONS(7135), 1, anon_sym_RBRACK, - STATE(3589), 1, + STATE(3162), 1, sym_comment, - STATE(3741), 1, + STATE(3303), 1, sym__var, - STATE(3811), 1, + STATE(3331), 1, sym__immediate_decimal, - STATE(3961), 2, + STATE(3581), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(7571), 12, + ACTIONS(7087), 12, anon_sym_LPAREN, anon_sym_DASH, anon_sym_DOT_DOT, @@ -388081,7 +347272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(7585), 27, + ACTIONS(7101), 27, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DASH_DASH, @@ -388109,39 +347300,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [46460] = 17, + [46192] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3401), 1, + ACTIONS(3260), 1, anon_sym_DOLLAR, - ACTIONS(7575), 1, + ACTIONS(7091), 1, anon_sym_DOLLAR2, - ACTIONS(7611), 1, + ACTIONS(7109), 1, anon_sym_LPAREN2, - ACTIONS(7613), 1, + ACTIONS(7111), 1, anon_sym_DOT, - ACTIONS(7615), 1, + ACTIONS(7113), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7617), 1, + ACTIONS(7115), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7619), 1, + ACTIONS(7117), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7621), 1, + ACTIONS(7119), 1, aux_sym__unquoted_in_list_token4, - ACTIONS(7623), 1, + ACTIONS(7121), 1, aux_sym__unquoted_in_list_token6, - ACTIONS(7627), 1, + ACTIONS(7137), 1, anon_sym_RBRACK, - STATE(3590), 1, + STATE(3163), 1, sym_comment, - STATE(3741), 1, + STATE(3303), 1, sym__var, - STATE(3811), 1, + STATE(3331), 1, sym__immediate_decimal, - STATE(3961), 2, + STATE(3581), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(7571), 12, + ACTIONS(7087), 12, anon_sym_LPAREN, anon_sym_DASH, anon_sym_DOT_DOT, @@ -388154,7 +347345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(7585), 27, + ACTIONS(7101), 27, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DASH_DASH, @@ -388182,67 +347373,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [46550] = 17, - ACTIONS(3), 1, + [46282] = 14, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3401), 1, + ACTIONS(922), 1, + sym__entry_separator, + ACTIONS(1453), 1, anon_sym_DOLLAR, - ACTIONS(7575), 1, - anon_sym_DOLLAR2, - ACTIONS(7611), 1, + ACTIONS(2396), 1, + aux_sym_unquoted_token3, + ACTIONS(7093), 1, anon_sym_LPAREN2, - ACTIONS(7613), 1, + ACTIONS(7139), 1, anon_sym_DOT, - ACTIONS(7615), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7617), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7619), 1, + ACTIONS(7143), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7621), 1, - aux_sym__unquoted_in_list_token4, - ACTIONS(7623), 1, - aux_sym__unquoted_in_list_token6, - ACTIONS(7629), 1, - anon_sym_RBRACK, - STATE(3591), 1, + ACTIONS(7145), 1, + aux_sym_unquoted_token5, + STATE(3164), 1, sym_comment, - STATE(3741), 1, + STATE(3255), 1, sym__var, - STATE(3811), 1, + STATE(3292), 1, sym__immediate_decimal, - STATE(3961), 2, + ACTIONS(7141), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3467), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(7571), 12, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(7585), 27, + ACTIONS(920), 40, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_PLUS, 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_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, @@ -388255,64 +347442,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [46640] = 15, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [46366] = 13, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2919), 1, - aux_sym_unquoted_token3, - ACTIONS(4745), 1, + ACTIONS(1840), 1, + sym__entry_separator, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(7147), 1, anon_sym_DOLLAR, - ACTIONS(7611), 1, + ACTIONS(7149), 1, anon_sym_LPAREN2, - ACTIONS(7631), 1, + ACTIONS(7151), 1, anon_sym_DOT, - ACTIONS(7633), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7635), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7637), 1, + ACTIONS(7155), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7639), 1, - aux_sym_unquoted_token5, - STATE(3592), 1, + STATE(3165), 1, sym_comment, - STATE(3741), 1, + STATE(3426), 1, sym__var, - STATE(3806), 1, + STATE(3583), 1, sym__immediate_decimal, - STATE(3961), 2, + ACTIONS(7153), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3671), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(936), 12, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(938), 28, + ACTIONS(1838), 40, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_PLUS, 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_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, @@ -388325,35 +347510,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [46725] = 6, + aux_sym__unquoted_in_list_token1, + [46447] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7641), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7643), 1, - aux_sym__immediate_decimal_token2, - STATE(3593), 1, - sym_comment, - ACTIONS(911), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, + ACTIONS(922), 1, sym__entry_separator, - ACTIONS(909), 44, + ACTIONS(2396), 1, + aux_sym_unquoted_token4, + ACTIONS(7147), 1, + anon_sym_DOLLAR, + ACTIONS(7149), 1, + anon_sym_LPAREN2, + ACTIONS(7151), 1, + anon_sym_DOT, + ACTIONS(7155), 1, + aux_sym__immediate_decimal_token4, + STATE(3166), 1, + sym_comment, + STATE(3426), 1, + sym__var, + STATE(3566), 1, + sym__immediate_decimal, + ACTIONS(7153), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3698), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(920), 40, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -388384,45 +347578,106 @@ 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_token5, aux_sym__unquoted_in_list_token1, - [46792] = 13, - ACTIONS(113), 1, + [46528] = 15, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2004), 1, - sym__entry_separator, - ACTIONS(2006), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(7645), 1, + ACTIONS(3847), 1, anon_sym_DOLLAR, - ACTIONS(7647), 1, + ACTIONS(7109), 1, anon_sym_LPAREN2, - ACTIONS(7649), 1, + ACTIONS(7111), 1, anon_sym_DOT, - ACTIONS(7653), 1, + ACTIONS(7113), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7115), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7117), 1, aux_sym__immediate_decimal_token4, - STATE(3594), 1, + ACTIONS(7119), 1, + aux_sym__unquoted_in_list_token4, + ACTIONS(7121), 1, + aux_sym__unquoted_in_list_token6, + STATE(3167), 1, sym_comment, - STATE(3854), 1, - sym__immediate_decimal, - STATE(3868), 1, + STATE(3303), 1, sym__var, - ACTIONS(7651), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4132), 2, + STATE(3331), 1, + sym__immediate_decimal, + STATE(3581), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2002), 40, + ACTIONS(7087), 12, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(7101), 28, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__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, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + [46613] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(7157), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7159), 1, + aux_sym__immediate_decimal_token2, + STATE(3168), 1, + sym_comment, + ACTIONS(895), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(893), 44, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -388453,24 +347708,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token5, aux_sym__unquoted_in_list_token1, - [46873] = 6, + [46680] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7655), 1, + ACTIONS(7161), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7657), 1, + ACTIONS(7163), 1, aux_sym__immediate_decimal_token2, - STATE(3595), 1, + STATE(3169), 1, sym_comment, - ACTIONS(911), 6, + ACTIONS(895), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - ACTIONS(909), 44, + ACTIONS(893), 44, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -388515,34 +347771,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token6, - [46940] = 13, + [46747] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(938), 1, + ACTIONS(1884), 1, sym__entry_separator, - ACTIONS(2613), 1, - aux_sym_unquoted_token4, - ACTIONS(7645), 1, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(7147), 1, anon_sym_DOLLAR, - ACTIONS(7647), 1, + ACTIONS(7149), 1, anon_sym_LPAREN2, - ACTIONS(7659), 1, + ACTIONS(7151), 1, anon_sym_DOT, - ACTIONS(7663), 1, + ACTIONS(7155), 1, aux_sym__immediate_decimal_token4, - STATE(3596), 1, + STATE(3170), 1, sym_comment, - STATE(3868), 1, + STATE(3426), 1, sym__var, - STATE(4016), 1, + STATE(3480), 1, sym__immediate_decimal, - ACTIONS(7661), 2, + ACTIONS(7153), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4080), 2, + STATE(3719), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(936), 40, + ACTIONS(1882), 40, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -388583,61 +347839,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [47021] = 13, - ACTIONS(113), 1, + [46828] = 15, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2004), 1, - sym__entry_separator, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - ACTIONS(7645), 1, + ACTIONS(3847), 1, anon_sym_DOLLAR, - ACTIONS(7647), 1, + ACTIONS(7109), 1, anon_sym_LPAREN2, - ACTIONS(7665), 1, + ACTIONS(7165), 1, anon_sym_DOT, - ACTIONS(7669), 1, + ACTIONS(7167), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7169), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7171), 1, aux_sym__immediate_decimal_token4, - STATE(3597), 1, + ACTIONS(7173), 1, + aux_sym_unquoted_token3, + ACTIONS(7175), 1, + aux_sym_unquoted_token5, + STATE(3171), 1, sym_comment, - STATE(3823), 1, - sym__immediate_decimal, - STATE(3868), 1, + STATE(3303), 1, sym__var, - ACTIONS(7667), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4132), 2, + STATE(3325), 1, + sym__immediate_decimal, + STATE(3581), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2002), 40, + ACTIONS(920), 12, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(922), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_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, @@ -388650,35 +347909,34 @@ 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, - [47102] = 13, + [46913] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2004), 1, + ACTIONS(1453), 1, + anon_sym_DOLLAR, + ACTIONS(1840), 1, sym__entry_separator, - ACTIONS(2006), 1, + ACTIONS(1844), 1, aux_sym_unquoted_token2, - ACTIONS(7645), 1, - anon_sym_DOLLAR, - ACTIONS(7647), 1, + ACTIONS(7093), 1, anon_sym_LPAREN2, - ACTIONS(7659), 1, - anon_sym_DOT, - ACTIONS(7663), 1, + ACTIONS(7127), 1, aux_sym__immediate_decimal_token4, - STATE(3598), 1, + ACTIONS(7177), 1, + anon_sym_DOT, + STATE(3172), 1, sym_comment, - STATE(3868), 1, + STATE(3255), 1, sym__var, - STATE(3906), 1, + STATE(3272), 1, sym__immediate_decimal, - ACTIONS(7661), 2, + ACTIONS(7125), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4132), 2, + STATE(3454), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2002), 40, + ACTIONS(1838), 40, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -388719,34 +347977,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [47183] = 13, + [46994] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1655), 1, - anon_sym_DOLLAR, - ACTIONS(1922), 1, + ACTIONS(1884), 1, sym__entry_separator, - ACTIONS(1934), 1, + ACTIONS(1886), 1, aux_sym__unquoted_in_list_token2, - ACTIONS(7577), 1, + ACTIONS(7147), 1, + anon_sym_DOLLAR, + ACTIONS(7149), 1, anon_sym_LPAREN2, - ACTIONS(7583), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7671), 1, + ACTIONS(7179), 1, anon_sym_DOT, - STATE(3599), 1, + ACTIONS(7183), 1, + aux_sym__immediate_decimal_token4, + STATE(3173), 1, sym_comment, - STATE(3701), 1, - sym__var, - STATE(3708), 1, + STATE(3394), 1, sym__immediate_decimal, - ACTIONS(7581), 2, + STATE(3426), 1, + sym__var, + ACTIONS(7181), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3861), 2, + STATE(3719), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1920), 40, + ACTIONS(1882), 40, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -388787,61 +348045,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [47264] = 13, - ACTIONS(113), 1, + [47075] = 15, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1922), 1, - sym__entry_separator, - ACTIONS(1934), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(7645), 1, + ACTIONS(3148), 1, + aux_sym_unquoted_token3, + ACTIONS(3847), 1, anon_sym_DOLLAR, - ACTIONS(7647), 1, + ACTIONS(7109), 1, anon_sym_LPAREN2, - ACTIONS(7649), 1, + ACTIONS(7185), 1, anon_sym_DOT, - ACTIONS(7653), 1, + ACTIONS(7187), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7189), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7191), 1, aux_sym__immediate_decimal_token4, - STATE(3600), 1, + ACTIONS(7193), 1, + aux_sym_unquoted_token5, + STATE(3174), 1, sym_comment, - STATE(3846), 1, - sym__immediate_decimal, - STATE(3868), 1, + STATE(3303), 1, sym__var, - ACTIONS(7651), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4055), 2, + STATE(3346), 1, + sym__immediate_decimal, + STATE(3581), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1920), 40, + ACTIONS(920), 12, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(922), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_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, @@ -388854,35 +348115,34 @@ 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, - [47345] = 13, + [47160] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(938), 1, - sym__entry_separator, - ACTIONS(7605), 1, - aux_sym_unquoted_token4, - ACTIONS(7645), 1, + ACTIONS(1453), 1, anon_sym_DOLLAR, - ACTIONS(7647), 1, + ACTIONS(1840), 1, + sym__entry_separator, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(7093), 1, anon_sym_LPAREN2, - ACTIONS(7665), 1, - anon_sym_DOT, - ACTIONS(7669), 1, + ACTIONS(7143), 1, aux_sym__immediate_decimal_token4, - STATE(3601), 1, + ACTIONS(7195), 1, + anon_sym_DOT, + STATE(3175), 1, sym_comment, - STATE(3819), 1, - sym__immediate_decimal, - STATE(3868), 1, + STATE(3255), 1, sym__var, - ACTIONS(7667), 2, + STATE(3296), 1, + sym__immediate_decimal, + ACTIONS(7141), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4080), 2, + STATE(3454), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(936), 40, + ACTIONS(1838), 40, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -388923,34 +348183,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [47426] = 13, + [47241] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7585), 1, + ACTIONS(922), 1, sym__entry_separator, - ACTIONS(7587), 1, - aux_sym__unquoted_in_list_token5, - ACTIONS(7645), 1, + ACTIONS(7129), 1, + aux_sym_unquoted_token4, + ACTIONS(7147), 1, anon_sym_DOLLAR, - ACTIONS(7647), 1, + ACTIONS(7149), 1, anon_sym_LPAREN2, - ACTIONS(7649), 1, + ACTIONS(7197), 1, anon_sym_DOT, - ACTIONS(7653), 1, + ACTIONS(7201), 1, aux_sym__immediate_decimal_token4, - STATE(3602), 1, + STATE(3176), 1, sym_comment, - STATE(3839), 1, - sym__immediate_decimal, - STATE(3868), 1, + STATE(3426), 1, sym__var, - ACTIONS(7651), 2, + STATE(3443), 1, + sym__immediate_decimal, + ACTIONS(7199), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4080), 2, + STATE(3698), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(7571), 40, + ACTIONS(920), 40, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -388991,34 +348251,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [47507] = 13, + [47322] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1655), 1, - anon_sym_DOLLAR, - ACTIONS(1922), 1, + ACTIONS(7101), 1, sym__entry_separator, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(7577), 1, + ACTIONS(7103), 1, + aux_sym__unquoted_in_list_token5, + ACTIONS(7147), 1, + anon_sym_DOLLAR, + ACTIONS(7149), 1, anon_sym_LPAREN2, - ACTIONS(7603), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7673), 1, + ACTIONS(7179), 1, anon_sym_DOT, - STATE(3603), 1, + ACTIONS(7183), 1, + aux_sym__immediate_decimal_token4, + STATE(3177), 1, sym_comment, - STATE(3692), 1, - sym__immediate_decimal, - STATE(3701), 1, + STATE(3426), 1, sym__var, - ACTIONS(7601), 2, + STATE(3456), 1, + sym__immediate_decimal, + ACTIONS(7181), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3861), 2, + STATE(3698), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1920), 40, + ACTIONS(7087), 40, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -389059,34 +348319,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [47588] = 13, + [47403] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1922), 1, - sym__entry_separator, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(7645), 1, + ACTIONS(1453), 1, anon_sym_DOLLAR, - ACTIONS(7647), 1, + ACTIONS(1840), 1, + sym__entry_separator, + ACTIONS(1844), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(7093), 1, anon_sym_LPAREN2, - ACTIONS(7665), 1, - anon_sym_DOT, - ACTIONS(7669), 1, + ACTIONS(7099), 1, aux_sym__immediate_decimal_token4, - STATE(3604), 1, + ACTIONS(7203), 1, + anon_sym_DOT, + STATE(3178), 1, sym_comment, - STATE(3820), 1, - sym__immediate_decimal, - STATE(3868), 1, + STATE(3255), 1, sym__var, - ACTIONS(7667), 2, + STATE(3258), 1, + sym__immediate_decimal, + ACTIONS(7097), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4055), 2, + STATE(3454), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1920), 40, + ACTIONS(1838), 40, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -389127,64 +348387,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [47669] = 15, - ACTIONS(3), 1, + [47484] = 13, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4745), 1, + ACTIONS(1840), 1, + sym__entry_separator, + ACTIONS(1844), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(7147), 1, anon_sym_DOLLAR, - ACTIONS(7611), 1, + ACTIONS(7149), 1, anon_sym_LPAREN2, - ACTIONS(7675), 1, + ACTIONS(7179), 1, anon_sym_DOT, - ACTIONS(7677), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7679), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7681), 1, + ACTIONS(7183), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7683), 1, - aux_sym_unquoted_token3, - ACTIONS(7685), 1, - aux_sym_unquoted_token5, - STATE(3605), 1, + STATE(3179), 1, sym_comment, - STATE(3720), 1, + STATE(3425), 1, sym__immediate_decimal, - STATE(3741), 1, + STATE(3426), 1, sym__var, - STATE(3961), 2, + ACTIONS(7181), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3671), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(936), 12, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(938), 28, + ACTIONS(1838), 40, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_PLUS, 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_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, @@ -389197,34 +348454,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [47754] = 13, + aux_sym__unquoted_in_list_token1, + [47565] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1655), 1, - anon_sym_DOLLAR, - ACTIONS(1922), 1, + ACTIONS(1884), 1, sym__entry_separator, - ACTIONS(1934), 1, + ACTIONS(1886), 1, aux_sym_unquoted_token2, - ACTIONS(7577), 1, + ACTIONS(7147), 1, + anon_sym_DOLLAR, + ACTIONS(7149), 1, anon_sym_LPAREN2, - ACTIONS(7595), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7687), 1, + ACTIONS(7197), 1, anon_sym_DOT, - STATE(3606), 1, + ACTIONS(7201), 1, + aux_sym__immediate_decimal_token4, + STATE(3180), 1, sym_comment, - STATE(3701), 1, - sym__var, - STATE(3716), 1, + STATE(3402), 1, sym__immediate_decimal, - ACTIONS(7593), 2, + STATE(3426), 1, + sym__var, + ACTIONS(7199), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3861), 2, + STATE(3719), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1920), 40, + ACTIONS(1882), 40, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -389265,34 +348523,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [47835] = 13, + [47646] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1922), 1, + ACTIONS(1840), 1, sym__entry_separator, - ACTIONS(1934), 1, + ACTIONS(1844), 1, aux_sym_unquoted_token2, - ACTIONS(7645), 1, + ACTIONS(7147), 1, anon_sym_DOLLAR, - ACTIONS(7647), 1, + ACTIONS(7149), 1, anon_sym_LPAREN2, - ACTIONS(7659), 1, + ACTIONS(7197), 1, anon_sym_DOT, - ACTIONS(7663), 1, + ACTIONS(7201), 1, aux_sym__immediate_decimal_token4, - STATE(3607), 1, + STATE(3181), 1, sym_comment, - STATE(3868), 1, + STATE(3426), 1, sym__var, - STATE(3963), 1, + STATE(3452), 1, sym__immediate_decimal, - ACTIONS(7661), 2, + ACTIONS(7199), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4055), 2, + STATE(3671), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1920), 40, + ACTIONS(1838), 40, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -389333,64 +348591,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [47916] = 15, - ACTIONS(3), 1, + [47727] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4745), 1, - anon_sym_DOLLAR, - ACTIONS(7611), 1, - anon_sym_LPAREN2, - ACTIONS(7613), 1, + ACTIONS(7205), 1, anon_sym_DOT, - ACTIONS(7615), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7617), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7619), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7621), 1, - aux_sym__unquoted_in_list_token4, - ACTIONS(7623), 1, - aux_sym__unquoted_in_list_token6, - STATE(3608), 1, + ACTIONS(7208), 1, + aux_sym__immediate_decimal_token2, + STATE(3182), 1, sym_comment, - STATE(3741), 1, - sym__var, - STATE(3811), 1, - sym__immediate_decimal, - STATE(3961), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(7571), 12, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(7585), 28, + ACTIONS(913), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(911), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_PLUS, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_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, @@ -389403,21 +348649,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [48001] = 5, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token6, + [47793] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7689), 1, + ACTIONS(7210), 1, + anon_sym_DOT, + ACTIONS(7213), 1, aux_sym__immediate_decimal_token2, - STATE(3609), 1, + STATE(3183), 1, sym_comment, - ACTIONS(925), 6, + ACTIONS(913), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - ACTIONS(923), 44, + ACTIONS(911), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -389429,7 +348679,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -389462,31 +348711,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, aux_sym_unquoted_token5, aux_sym__unquoted_in_list_token1, - [48065] = 12, + [47859] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(961), 1, - sym__entry_separator, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - ACTIONS(7605), 1, - aux_sym_unquoted_token5, - ACTIONS(7691), 1, - anon_sym_DOT_DOT2, - ACTIONS(7693), 1, - anon_sym_DOT, - ACTIONS(7697), 1, - sym_filesize_unit, - ACTIONS(7699), 1, - sym_duration_unit, - STATE(3610), 1, + ACTIONS(7159), 1, + aux_sym__immediate_decimal_token2, + STATE(3184), 1, sym_comment, - STATE(10502), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7695), 2, + ACTIONS(895), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(959), 41, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(893), 44, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -389497,6 +348736,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -389527,34 +348768,35 @@ 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_token5, aux_sym__unquoted_in_list_token1, - [48143] = 14, + [47923] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2006), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(7701), 1, + ACTIONS(7173), 1, + aux_sym_unquoted_token4, + ACTIONS(7215), 1, anon_sym_DOLLAR, - ACTIONS(7703), 1, + ACTIONS(7217), 1, anon_sym_LPAREN2, - ACTIONS(7705), 1, + ACTIONS(7219), 1, anon_sym_DOT, - ACTIONS(7707), 1, + ACTIONS(7221), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7709), 1, + ACTIONS(7223), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7711), 1, + ACTIONS(7225), 1, aux_sym__immediate_decimal_token4, - STATE(3611), 1, + STATE(3185), 1, sym_comment, - STATE(3932), 1, + STATE(3494), 1, sym__var, - STATE(4136), 1, + STATE(3582), 1, sym__immediate_decimal, - STATE(4426), 2, + STATE(3947), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2002), 12, + ACTIONS(920), 12, anon_sym_LPAREN, anon_sym_DASH, anon_sym_DOT_DOT, @@ -389567,7 +348809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2004), 28, + ACTIONS(922), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -389596,62 +348838,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [48225] = 14, - ACTIONS(3), 1, + [48005] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(4745), 1, - anon_sym_DOLLAR, - ACTIONS(7611), 1, - anon_sym_LPAREN2, - ACTIONS(7677), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7679), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7681), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7713), 1, - anon_sym_DOT, - STATE(3612), 1, + ACTIONS(7227), 1, + aux_sym__immediate_decimal_token2, + STATE(3186), 1, sym_comment, - STATE(3728), 1, - sym__immediate_decimal, - STATE(3741), 1, - sym__var, - STATE(3952), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1920), 12, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1922), 28, + ACTIONS(903), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(901), 44, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_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, @@ -389664,33 +348895,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [48307] = 14, + aux_sym_unquoted_token5, + aux_sym__unquoted_in_list_token1, + [48069] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(7701), 1, + ACTIONS(1844), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(3847), 1, anon_sym_DOLLAR, - ACTIONS(7703), 1, + ACTIONS(7109), 1, anon_sym_LPAREN2, - ACTIONS(7715), 1, - anon_sym_DOT, - ACTIONS(7717), 1, + ACTIONS(7113), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7719), 1, + ACTIONS(7115), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7721), 1, + ACTIONS(7117), 1, aux_sym__immediate_decimal_token4, - STATE(3613), 1, + ACTIONS(7229), 1, + anon_sym_DOT, + STATE(3187), 1, sym_comment, - STATE(3932), 1, + STATE(3303), 1, sym__var, - STATE(3985), 1, + STATE(3337), 1, sym__immediate_decimal, - STATE(4397), 2, + STATE(3580), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1920), 12, + ACTIONS(1838), 12, anon_sym_LPAREN, anon_sym_DASH, anon_sym_DOT_DOT, @@ -389703,7 +348936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1922), 28, + ACTIONS(1840), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -389732,33 +348965,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [48389] = 14, + [48151] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(4745), 1, + ACTIONS(1844), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(7215), 1, anon_sym_DOLLAR, - ACTIONS(7611), 1, + ACTIONS(7217), 1, anon_sym_LPAREN2, - ACTIONS(7633), 1, + ACTIONS(7231), 1, + anon_sym_DOT, + ACTIONS(7233), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7635), 1, + ACTIONS(7235), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7637), 1, + ACTIONS(7237), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7723), 1, - anon_sym_DOT, - STATE(3614), 1, + STATE(3188), 1, sym_comment, - STATE(3741), 1, + STATE(3494), 1, sym__var, - STATE(3770), 1, + STATE(3615), 1, sym__immediate_decimal, - STATE(3952), 2, + STATE(3927), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1920), 12, + ACTIONS(1838), 12, anon_sym_LPAREN, anon_sym_DASH, anon_sym_DOT_DOT, @@ -389771,7 +349004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1922), 28, + ACTIONS(1840), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -389800,33 +349033,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [48471] = 14, + [48233] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(7701), 1, + ACTIONS(3148), 1, + aux_sym_unquoted_token4, + ACTIONS(7215), 1, anon_sym_DOLLAR, - ACTIONS(7703), 1, + ACTIONS(7217), 1, anon_sym_LPAREN2, - ACTIONS(7725), 1, + ACTIONS(7239), 1, anon_sym_DOT, - ACTIONS(7727), 1, + ACTIONS(7241), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7729), 1, + ACTIONS(7243), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7731), 1, + ACTIONS(7245), 1, aux_sym__immediate_decimal_token4, - STATE(3615), 1, + STATE(3189), 1, sym_comment, - STATE(3932), 1, + STATE(3494), 1, sym__var, - STATE(4116), 1, + STATE(3667), 1, sym__immediate_decimal, - STATE(4397), 2, + STATE(3947), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1920), 12, + ACTIONS(920), 12, anon_sym_LPAREN, anon_sym_DASH, anon_sym_DOT_DOT, @@ -389839,7 +349072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1922), 28, + ACTIONS(922), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -389868,41 +349101,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [48553] = 12, + [48315] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1655), 1, - anon_sym_DOLLAR, - ACTIONS(2389), 1, - sym__entry_separator, - ACTIONS(7577), 1, - anon_sym_LPAREN2, - ACTIONS(7733), 1, - anon_sym_DOT, - ACTIONS(7737), 1, - aux_sym__immediate_decimal_token4, - STATE(3616), 1, + ACTIONS(7213), 1, + aux_sym__immediate_decimal_token2, + STATE(3190), 1, sym_comment, - STATE(3701), 1, - sym__var, - STATE(3860), 1, - sym__immediate_decimal, - ACTIONS(7735), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3902), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(2387), 40, + ACTIONS(913), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(911), 44, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -389933,42 +349158,35 @@ 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_token5, aux_sym__unquoted_in_list_token1, - [48631] = 12, + [48379] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2389), 1, - sym__entry_separator, - ACTIONS(7645), 1, - anon_sym_DOLLAR, - ACTIONS(7647), 1, - anon_sym_LPAREN2, - ACTIONS(7739), 1, - anon_sym_DOT, - ACTIONS(7743), 1, - aux_sym__immediate_decimal_token4, - STATE(3617), 1, + ACTIONS(7163), 1, + aux_sym__immediate_decimal_token2, + STATE(3191), 1, sym_comment, - STATE(3868), 1, - sym__var, - STATE(4052), 1, - sym__immediate_decimal, - ACTIONS(7741), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4051), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(2387), 40, + ACTIONS(895), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(893), 44, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -390000,62 +349218,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [48709] = 14, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token6, + [48443] = 12, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1934), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(7701), 1, - anon_sym_DOLLAR, - ACTIONS(7703), 1, + ACTIONS(940), 1, + sym__entry_separator, + ACTIONS(2187), 1, anon_sym_LPAREN2, - ACTIONS(7705), 1, + ACTIONS(7129), 1, + aux_sym_unquoted_token5, + ACTIONS(7247), 1, + anon_sym_DOT_DOT2, + ACTIONS(7249), 1, anon_sym_DOT, - ACTIONS(7707), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7709), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7711), 1, - aux_sym__immediate_decimal_token4, - STATE(3618), 1, + ACTIONS(7253), 1, + sym_filesize_unit, + ACTIONS(7255), 1, + sym_duration_unit, + STATE(3192), 1, sym_comment, - STATE(3932), 1, - sym__var, - STATE(4094), 1, - sym__immediate_decimal, - STATE(4397), 2, + STATE(10183), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1920), 12, + ACTIONS(7251), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(938), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, + 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, anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, aux_sym__unquoted_in_list_token1, - ACTIONS(1922), 28, + [48521] = 12, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(2209), 1, + sym__entry_separator, + ACTIONS(7147), 1, + anon_sym_DOLLAR, + ACTIONS(7149), 1, + anon_sym_LPAREN2, + ACTIONS(7257), 1, + anon_sym_DOT, + ACTIONS(7261), 1, + aux_sym__immediate_decimal_token4, + STATE(3193), 1, + sym_comment, + STATE(3426), 1, + sym__var, + STATE(3710), 1, + sym__immediate_decimal, + ACTIONS(7259), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3706), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(2207), 40, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_PLUS, 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_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, @@ -390068,23 +349350,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [48791] = 6, + aux_sym__unquoted_in_list_token1, + [48599] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7689), 1, + ACTIONS(7263), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7745), 1, - anon_sym_DOT, - STATE(3619), 1, + STATE(3194), 1, sym_comment, - ACTIONS(925), 6, + ACTIONS(903), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - ACTIONS(923), 43, + ACTIONS(901), 44, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -390096,6 +349377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -390126,64 +349408,53 @@ 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_token5, aux_sym__unquoted_in_list_token1, - [48857] = 14, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token6, + [48663] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - ACTIONS(7701), 1, - anon_sym_DOLLAR, - ACTIONS(7703), 1, - anon_sym_LPAREN2, - ACTIONS(7715), 1, - anon_sym_DOT, - ACTIONS(7717), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7719), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7721), 1, - aux_sym__immediate_decimal_token4, - STATE(3620), 1, + ACTIONS(7208), 1, + aux_sym__immediate_decimal_token2, + STATE(3195), 1, sym_comment, - STATE(3932), 1, - sym__var, - STATE(4012), 1, - sym__immediate_decimal, - STATE(4426), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(2002), 12, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2004), 28, + ACTIONS(913), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(911), 44, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_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, @@ -390196,62 +349467,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [48939] = 14, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token6, + [48727] = 12, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - ACTIONS(7701), 1, - anon_sym_DOLLAR, - ACTIONS(7703), 1, + ACTIONS(940), 1, + sym__entry_separator, + ACTIONS(7103), 1, + aux_sym__unquoted_in_list_token6, + ACTIONS(7265), 1, anon_sym_LPAREN2, - ACTIONS(7725), 1, + ACTIONS(7267), 1, + anon_sym_DOT_DOT2, + ACTIONS(7269), 1, anon_sym_DOT, - ACTIONS(7727), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7729), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7731), 1, - aux_sym__immediate_decimal_token4, - STATE(3621), 1, + ACTIONS(7273), 1, + sym_filesize_unit, + ACTIONS(7275), 1, + sym_duration_unit, + STATE(3196), 1, sym_comment, - STATE(3932), 1, - sym__var, - STATE(4150), 1, - sym__immediate_decimal, - STATE(4426), 2, + STATE(10057), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(2002), 12, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2004), 28, + ACTIONS(7271), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(938), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_PLUS, 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_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, @@ -390264,33 +349534,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [49021] = 14, + aux_sym__unquoted_in_list_token1, + [48805] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2919), 1, - aux_sym_unquoted_token4, - ACTIONS(7701), 1, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(7215), 1, anon_sym_DOLLAR, - ACTIONS(7703), 1, + ACTIONS(7217), 1, anon_sym_LPAREN2, - ACTIONS(7725), 1, + ACTIONS(7239), 1, anon_sym_DOT, - ACTIONS(7727), 1, + ACTIONS(7241), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7729), 1, + ACTIONS(7243), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7731), 1, + ACTIONS(7245), 1, aux_sym__immediate_decimal_token4, - STATE(3622), 1, + STATE(3197), 1, sym_comment, - STATE(3932), 1, + STATE(3494), 1, sym__var, - STATE(4032), 1, + STATE(3618), 1, sym__immediate_decimal, - STATE(4356), 2, + STATE(3894), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(936), 12, + ACTIONS(1882), 12, anon_sym_LPAREN, anon_sym_DASH, anon_sym_DOT_DOT, @@ -390303,7 +349574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(938), 28, + ACTIONS(1884), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -390332,36 +349603,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [49103] = 12, + [48887] = 12, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(2138), 1, sym__entry_separator, - ACTIONS(7587), 1, - aux_sym__unquoted_in_list_token6, - ACTIONS(7748), 1, + ACTIONS(7147), 1, + anon_sym_DOLLAR, + ACTIONS(7149), 1, anon_sym_LPAREN2, - ACTIONS(7750), 1, - anon_sym_DOT_DOT2, - ACTIONS(7752), 1, + ACTIONS(7257), 1, anon_sym_DOT, - ACTIONS(7756), 1, - sym_filesize_unit, - ACTIONS(7758), 1, - sym_duration_unit, - STATE(3623), 1, + ACTIONS(7261), 1, + aux_sym__immediate_decimal_token4, + STATE(3198), 1, sym_comment, - STATE(10658), 1, + STATE(3426), 1, + sym__var, + STATE(3714), 1, + sym__immediate_decimal, + ACTIONS(7259), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3712), 2, sym__expr_parenthesized_immediate, - ACTIONS(7754), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(959), 41, + sym_val_variable, + ACTIONS(2136), 40, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, @@ -390398,32 +349669,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [49181] = 12, + [48965] = 12, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2351), 1, + ACTIONS(2148), 1, sym__entry_separator, - ACTIONS(7645), 1, + ACTIONS(7147), 1, anon_sym_DOLLAR, - ACTIONS(7647), 1, + ACTIONS(7149), 1, anon_sym_LPAREN2, - ACTIONS(7739), 1, + ACTIONS(7257), 1, anon_sym_DOT, - ACTIONS(7743), 1, + ACTIONS(7261), 1, aux_sym__immediate_decimal_token4, - STATE(3624), 1, + STATE(3199), 1, sym_comment, - STATE(3868), 1, + STATE(3426), 1, sym__var, - STATE(4126), 1, + STATE(3717), 1, sym__immediate_decimal, - ACTIONS(7741), 2, + ACTIONS(7259), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4125), 2, + STATE(3715), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2349), 40, + ACTIONS(2146), 40, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -390464,49 +349735,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [49259] = 12, - ACTIONS(113), 1, + [49043] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2361), 1, - sym__entry_separator, - ACTIONS(7645), 1, - anon_sym_DOLLAR, - ACTIONS(7647), 1, - anon_sym_LPAREN2, - ACTIONS(7739), 1, - anon_sym_DOT, - ACTIONS(7743), 1, - aux_sym__immediate_decimal_token4, - STATE(3625), 1, - sym_comment, - STATE(3868), 1, - sym__var, - STATE(4128), 1, - sym__immediate_decimal, - ACTIONS(7741), 2, + ACTIONS(7277), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4127), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(2359), 40, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(7279), 1, + aux_sym__immediate_decimal_token2, + STATE(3200), 1, + sym_comment, + ACTIONS(893), 15, anon_sym_LPAREN, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token5, + aux_sym__unquoted_in_list_token1, + ACTIONS(895), 34, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN2, + 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -390514,9 +349781,8 @@ 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, @@ -390529,34 +349795,41 @@ 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, - [49337] = 5, + [49109] = 12, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7760), 1, - aux_sym__immediate_decimal_token2, - STATE(3626), 1, - sym_comment, - ACTIONS(925), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, + ACTIONS(1453), 1, + anon_sym_DOLLAR, + ACTIONS(2171), 1, sym__entry_separator, - ACTIONS(923), 44, + ACTIONS(7093), 1, + anon_sym_LPAREN2, + ACTIONS(7281), 1, + anon_sym_DOT, + ACTIONS(7285), 1, + aux_sym__immediate_decimal_token4, + STATE(3201), 1, + sym_comment, + STATE(3255), 1, + sym__var, + STATE(3401), 1, + sym__immediate_decimal, + ACTIONS(7283), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3457), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(2169), 40, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -390588,33 +349861,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token6, - [49401] = 12, + [49187] = 12, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2385), 1, + ACTIONS(2171), 1, sym__entry_separator, - ACTIONS(7645), 1, + ACTIONS(7147), 1, anon_sym_DOLLAR, - ACTIONS(7647), 1, + ACTIONS(7149), 1, anon_sym_LPAREN2, - ACTIONS(7739), 1, + ACTIONS(7257), 1, anon_sym_DOT, - ACTIONS(7743), 1, + ACTIONS(7261), 1, aux_sym__immediate_decimal_token4, - STATE(3627), 1, + STATE(3202), 1, sym_comment, - STATE(3868), 1, + STATE(3426), 1, sym__var, - STATE(4131), 1, + STATE(3661), 1, sym__immediate_decimal, - ACTIONS(7741), 2, + ACTIONS(7259), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4129), 2, + STATE(3639), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2383), 40, + ACTIONS(2169), 40, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -390655,51 +349927,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [49479] = 5, - ACTIONS(113), 1, + [49265] = 14, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7762), 1, - aux_sym__immediate_decimal_token2, - STATE(3628), 1, - sym_comment, - ACTIONS(919), 6, + ACTIONS(1886), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(7215), 1, + anon_sym_DOLLAR, + ACTIONS(7217), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(917), 44, + ACTIONS(7231), 1, + anon_sym_DOT, + ACTIONS(7233), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7235), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7237), 1, + aux_sym__immediate_decimal_token4, + STATE(3203), 1, + sym_comment, + STATE(3494), 1, + sym__var, + STATE(3621), 1, + sym__immediate_decimal, + STATE(3894), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1882), 12, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1884), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_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, @@ -390712,35 +349995,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token6, - [49543] = 14, + [49347] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7621), 1, + ACTIONS(7119), 1, aux_sym__unquoted_in_list_token5, - ACTIONS(7701), 1, + ACTIONS(7215), 1, anon_sym_DOLLAR, - ACTIONS(7703), 1, + ACTIONS(7217), 1, anon_sym_LPAREN2, - ACTIONS(7705), 1, + ACTIONS(7231), 1, anon_sym_DOT, - ACTIONS(7707), 1, + ACTIONS(7233), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7709), 1, + ACTIONS(7235), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7711), 1, + ACTIONS(7237), 1, aux_sym__immediate_decimal_token4, - STATE(3629), 1, + STATE(3204), 1, sym_comment, - STATE(3932), 1, + STATE(3494), 1, sym__var, - STATE(4143), 1, + STATE(3604), 1, sym__immediate_decimal, - STATE(4356), 2, + STATE(3947), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(7571), 12, + ACTIONS(7087), 12, anon_sym_LPAREN, anon_sym_DASH, anon_sym_DOT_DOT, @@ -390753,7 +350034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(7585), 28, + ACTIONS(7101), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -390782,51 +350063,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [49625] = 5, - ACTIONS(113), 1, + [49429] = 14, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7657), 1, - aux_sym__immediate_decimal_token2, - STATE(3630), 1, - sym_comment, - ACTIONS(911), 6, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(3847), 1, + anon_sym_DOLLAR, + ACTIONS(7109), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(909), 44, + ACTIONS(7167), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7169), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7171), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7287), 1, + anon_sym_DOT, + STATE(3205), 1, + sym_comment, + STATE(3303), 1, + sym__var, + STATE(3328), 1, + sym__immediate_decimal, + STATE(3580), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1838), 12, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1840), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_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, @@ -390839,53 +350131,62 @@ 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_token6, - [49689] = 5, - ACTIONS(113), 1, + [49511] = 14, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7764), 1, - aux_sym__immediate_decimal_token2, - STATE(3631), 1, - sym_comment, - ACTIONS(919), 6, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(7215), 1, + anon_sym_DOLLAR, + ACTIONS(7217), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(917), 44, + ACTIONS(7219), 1, + anon_sym_DOT, + ACTIONS(7221), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7223), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7225), 1, + aux_sym__immediate_decimal_token4, + STATE(3206), 1, + sym_comment, + STATE(3494), 1, + sym__var, + STATE(3589), 1, + sym__immediate_decimal, + STATE(3927), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1838), 12, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1840), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_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, @@ -390898,54 +350199,130 @@ 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_token5, - aux_sym__unquoted_in_list_token1, - [49753] = 6, - ACTIONS(113), 1, + [49593] = 14, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7760), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7766), 1, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(3847), 1, + anon_sym_DOLLAR, + ACTIONS(7109), 1, + anon_sym_LPAREN2, + ACTIONS(7187), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7189), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7191), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7289), 1, anon_sym_DOT, - STATE(3632), 1, + STATE(3207), 1, sym_comment, - ACTIONS(925), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(923), 43, + STATE(3303), 1, + sym__var, + STATE(3383), 1, + sym__immediate_decimal, + STATE(3580), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1838), 12, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1840), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, - 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__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, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + [49675] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(7215), 1, + anon_sym_DOLLAR, + ACTIONS(7217), 1, + anon_sym_LPAREN2, + ACTIONS(7239), 1, + anon_sym_DOT, + ACTIONS(7241), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7243), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7245), 1, + aux_sym__immediate_decimal_token4, + STATE(3208), 1, + sym_comment, + STATE(3494), 1, + sym__var, + STATE(3601), 1, + sym__immediate_decimal, + STATE(3927), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1838), 12, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, anon_sym_DOT2, aux_sym__val_number_decimal_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1840), 28, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + 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_token1, aux_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, @@ -390958,56 +350335,62 @@ 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_token6, - [49819] = 6, + [49757] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7769), 1, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(7215), 1, + anon_sym_DOLLAR, + ACTIONS(7217), 1, + anon_sym_LPAREN2, + ACTIONS(7219), 1, + anon_sym_DOT, + ACTIONS(7221), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7771), 1, - aux_sym__immediate_decimal_token2, - STATE(3633), 1, + ACTIONS(7223), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7225), 1, + aux_sym__immediate_decimal_token4, + STATE(3209), 1, sym_comment, - ACTIONS(909), 15, + STATE(3494), 1, + sym__var, + STATE(3536), 1, + sym__immediate_decimal, + STATE(3894), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1882), 12, anon_sym_LPAREN, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, anon_sym_DOT2, + aux_sym__val_number_decimal_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token5, aux_sym__unquoted_in_list_token1, - ACTIONS(911), 34, + ACTIONS(1884), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_LPAREN2, - 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, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, 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, @@ -391020,33 +350403,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [49885] = 14, + [49839] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1934), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(4745), 1, + ACTIONS(7215), 1, anon_sym_DOLLAR, - ACTIONS(7611), 1, + ACTIONS(7217), 1, anon_sym_LPAREN2, - ACTIONS(7615), 1, + ACTIONS(7291), 1, + anon_sym_DOT, + ACTIONS(7293), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7617), 1, + ACTIONS(7295), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7619), 1, + ACTIONS(7297), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7773), 1, - anon_sym_DOT, - STATE(3634), 1, + STATE(3210), 1, sym_comment, - STATE(3741), 1, + STATE(3494), 1, sym__var, - STATE(3768), 1, + STATE(3923), 1, sym__immediate_decimal, - STATE(3952), 2, + STATE(3921), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1920), 12, + ACTIONS(2169), 12, anon_sym_LPAREN, anon_sym_DASH, anon_sym_DOT_DOT, @@ -391059,7 +350440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1922), 28, + ACTIONS(2171), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -391088,33 +350469,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [49967] = 14, + [49918] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7683), 1, - aux_sym_unquoted_token4, - ACTIONS(7701), 1, + ACTIONS(3847), 1, anon_sym_DOLLAR, - ACTIONS(7703), 1, + ACTIONS(7109), 1, anon_sym_LPAREN2, - ACTIONS(7715), 1, + ACTIONS(7299), 1, anon_sym_DOT, - ACTIONS(7717), 1, + ACTIONS(7301), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7719), 1, + ACTIONS(7303), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7721), 1, + ACTIONS(7305), 1, aux_sym__immediate_decimal_token4, - STATE(3635), 1, + STATE(3211), 1, sym_comment, - STATE(3932), 1, + STATE(3303), 1, sym__var, - STATE(3969), 1, + STATE(3579), 1, sym__immediate_decimal, - STATE(4356), 2, + STATE(3578), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(936), 12, + ACTIONS(2169), 12, anon_sym_LPAREN, anon_sym_DASH, anon_sym_DOT_DOT, @@ -391127,7 +350506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(938), 28, + ACTIONS(2171), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -391156,21 +350535,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [50049] = 5, + [49997] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7643), 1, - aux_sym__immediate_decimal_token2, - STATE(3636), 1, + STATE(3212), 1, sym_comment, - ACTIONS(911), 6, + ACTIONS(903), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - ACTIONS(909), 44, + ACTIONS(901), 44, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -391215,19 +350592,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, aux_sym_unquoted_token5, aux_sym__unquoted_in_list_token1, - [50113] = 4, + [50058] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(3637), 1, + STATE(3213), 1, sym_comment, - ACTIONS(919), 6, + ACTIONS(936), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - ACTIONS(917), 44, + ACTIONS(934), 44, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -391272,21 +350649,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, aux_sym_unquoted_token5, aux_sym__unquoted_in_list_token1, - [50174] = 6, + [50119] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7775), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7777), 1, + ACTIONS(7307), 1, + anon_sym_DOT, + ACTIONS(7310), 1, aux_sym__immediate_decimal_token2, - STATE(3638), 1, + STATE(3214), 1, sym_comment, - ACTIONS(909), 14, + ACTIONS(911), 14, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -391294,16 +350671,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, + aux_sym_unquoted_token5, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token6, - ACTIONS(911), 34, + ACTIONS(913), 34, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_null, @@ -391331,21 +350708,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [50239] = 6, + [50184] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7779), 1, - anon_sym_DOT, - ACTIONS(7782), 1, + ACTIONS(7312), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7314), 1, aux_sym__immediate_decimal_token2, - STATE(3639), 1, + STATE(3215), 1, sym_comment, - ACTIONS(923), 14, - anon_sym_LPAREN, + ACTIONS(893), 14, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -391353,16 +350730,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token5, aux_sym__unquoted_in_list_token1, - ACTIONS(925), 34, + aux_sym__unquoted_in_list_token6, + ACTIONS(895), 34, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_null, @@ -391390,31 +350767,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [50304] = 13, + [50249] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(3216), 1, + sym_comment, + ACTIONS(895), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(893), 44, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token6, + [50310] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4745), 1, + ACTIONS(7215), 1, anon_sym_DOLLAR, - ACTIONS(7611), 1, + ACTIONS(7217), 1, anon_sym_LPAREN2, - ACTIONS(7784), 1, + ACTIONS(7291), 1, anon_sym_DOT, - ACTIONS(7786), 1, + ACTIONS(7293), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7788), 1, + ACTIONS(7295), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7790), 1, + ACTIONS(7297), 1, aux_sym__immediate_decimal_token4, - STATE(3640), 1, + STATE(3217), 1, sym_comment, - STATE(3741), 1, + STATE(3494), 1, sym__var, - STATE(3933), 1, + STATE(4062), 1, sym__immediate_decimal, - STATE(3930), 2, + STATE(4048), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2387), 12, + ACTIONS(2207), 12, anon_sym_LPAREN, anon_sym_DASH, anon_sym_DOT_DOT, @@ -391427,7 +350861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2389), 28, + ACTIONS(2209), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -391456,31 +350890,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [50383] = 13, + [50389] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7701), 1, + ACTIONS(7215), 1, anon_sym_DOLLAR, - ACTIONS(7703), 1, + ACTIONS(7217), 1, anon_sym_LPAREN2, - ACTIONS(7792), 1, + ACTIONS(7291), 1, anon_sym_DOT, - ACTIONS(7794), 1, + ACTIONS(7293), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7796), 1, + ACTIONS(7295), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7798), 1, + ACTIONS(7297), 1, aux_sym__immediate_decimal_token4, - STATE(3641), 1, + STATE(3218), 1, sym_comment, - STATE(3932), 1, + STATE(3494), 1, sym__var, - STATE(4393), 1, + STATE(4071), 1, sym__immediate_decimal, - STATE(4392), 2, + STATE(4063), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2387), 12, + ACTIONS(2136), 12, anon_sym_LPAREN, anon_sym_DASH, anon_sym_DOT_DOT, @@ -391493,7 +350927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2389), 28, + ACTIONS(2138), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -391522,54 +350956,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [50462] = 13, + [50468] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7701), 1, - anon_sym_DOLLAR, - ACTIONS(7703), 1, + ACTIONS(2187), 1, anon_sym_LPAREN2, - ACTIONS(7792), 1, + ACTIONS(7173), 1, + aux_sym_unquoted_token5, + ACTIONS(7316), 1, + anon_sym_DOT_DOT2, + ACTIONS(7318), 1, anon_sym_DOT, - ACTIONS(7794), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7796), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7798), 1, - aux_sym__immediate_decimal_token4, - STATE(3642), 1, + ACTIONS(7322), 1, + sym_filesize_unit, + ACTIONS(7324), 1, + sym_duration_unit, + STATE(3219), 1, sym_comment, - STATE(3932), 1, - sym__var, - STATE(4421), 1, - sym__immediate_decimal, - STATE(4419), 2, + STATE(9998), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(2349), 12, + ACTIONS(7320), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(938), 12, anon_sym_LPAREN, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, anon_sym_DOT2, - aux_sym__val_number_decimal_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2351), 28, + ACTIONS(940), 29, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_DOLLAR, 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_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -391588,52 +351021,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [50541] = 5, + [50545] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7800), 1, - aux_sym__immediate_decimal_token2, - STATE(3643), 1, + ACTIONS(7215), 1, + anon_sym_DOLLAR, + ACTIONS(7217), 1, + anon_sym_LPAREN2, + ACTIONS(7291), 1, + anon_sym_DOT, + ACTIONS(7293), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7295), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7297), 1, + aux_sym__immediate_decimal_token4, + STATE(3220), 1, sym_comment, - ACTIONS(917), 15, + STATE(3494), 1, + sym__var, + STATE(4078), 1, + sym__immediate_decimal, + STATE(4077), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(2146), 12, anon_sym_LPAREN, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, anon_sym_DOT2, + aux_sym__val_number_decimal_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token5, aux_sym__unquoted_in_list_token1, - ACTIONS(919), 34, + ACTIONS(2148), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_LPAREN2, - 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, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, 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, @@ -391646,21 +351087,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [50604] = 6, + [50624] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7802), 1, + ACTIONS(7326), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7804), 1, + ACTIONS(7328), 1, aux_sym__immediate_decimal_token2, - STATE(3644), 1, + STATE(3221), 1, sym_comment, - ACTIONS(2439), 4, + ACTIONS(2231), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(2437), 44, + ACTIONS(2229), 44, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -391703,16 +351144,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_token2, aux_sym__unquoted_in_list_token1, - [50669] = 5, + aux_sym__unquoted_in_list_token2, + [50689] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7771), 1, + ACTIONS(7310), 1, aux_sym__immediate_decimal_token2, - STATE(3645), 1, + STATE(3222), 1, sym_comment, - ACTIONS(909), 15, + ACTIONS(911), 15, anon_sym_LPAREN, anon_sym_DASH, anon_sym_DOT_DOT, @@ -391728,7 +351169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0x, aux_sym_unquoted_token5, aux_sym__unquoted_in_list_token1, - ACTIONS(911), 34, + ACTIONS(913), 34, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -391763,183 +351204,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [50732] = 13, + [50752] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7701), 1, - anon_sym_DOLLAR, - ACTIONS(7703), 1, - anon_sym_LPAREN2, - ACTIONS(7792), 1, - anon_sym_DOT, - ACTIONS(7794), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7796), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7798), 1, - aux_sym__immediate_decimal_token4, - STATE(3646), 1, - sym_comment, - STATE(3932), 1, - sym__var, - STATE(4423), 1, - sym__immediate_decimal, - STATE(4422), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(2359), 12, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2361), 28, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__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, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [50811] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(3647), 1, + ACTIONS(7279), 1, + aux_sym__immediate_decimal_token2, + STATE(3223), 1, sym_comment, - ACTIONS(911), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(909), 44, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(893), 15, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DOT_DOT2, anon_sym_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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - aux_sym_unquoted_token5, - aux_sym__unquoted_in_list_token1, - [50872] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7701), 1, - anon_sym_DOLLAR, - ACTIONS(7703), 1, - anon_sym_LPAREN2, - ACTIONS(7792), 1, - anon_sym_DOT, - ACTIONS(7794), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7796), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7798), 1, - aux_sym__immediate_decimal_token4, - STATE(3648), 1, - sym_comment, - STATE(3932), 1, - sym__var, - STATE(4425), 1, - sym__immediate_decimal, - STATE(4424), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(2383), 12, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, anon_sym_DOT2, - aux_sym__val_number_decimal_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + aux_sym_unquoted_token5, aux_sym__unquoted_in_list_token1, - ACTIONS(2385), 28, + ACTIONS(895), 34, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_LPAREN2, + 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_token1, aux_sym__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, @@ -391952,14 +351262,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [50951] = 5, + [50815] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7782), 1, + ACTIONS(7330), 1, aux_sym__immediate_decimal_token2, - STATE(3649), 1, + STATE(3224), 1, sym_comment, - ACTIONS(923), 15, + ACTIONS(901), 15, anon_sym_LPAREN, anon_sym_DASH, anon_sym_DOT_DOT, @@ -391975,7 +351285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0x, aux_sym_unquoted_token5, aux_sym__unquoted_in_list_token1, - ACTIONS(925), 34, + ACTIONS(903), 34, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -392010,19 +351320,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [51014] = 4, + [50878] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(3650), 1, + STATE(3225), 1, sym_comment, - ACTIONS(952), 6, + ACTIONS(903), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - ACTIONS(950), 44, + ACTIONS(901), 44, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -392065,21 +351375,21 @@ 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_token5, aux_sym__unquoted_in_list_token1, - [51075] = 4, + aux_sym__unquoted_in_list_token6, + [50939] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(3651), 1, + STATE(3226), 1, sym_comment, - ACTIONS(911), 6, + ACTIONS(936), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - ACTIONS(909), 44, + ACTIONS(934), 44, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -392124,21 +351434,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token6, - [51136] = 6, + [51000] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7806), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7808), 1, - aux_sym__immediate_decimal_token2, - STATE(3652), 1, + STATE(3227), 1, sym_comment, - ACTIONS(2439), 4, + ACTIONS(895), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, sym__entry_separator, - ACTIONS(2437), 44, + ACTIONS(893), 44, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -392181,21 +351489,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token5, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [51201] = 4, + [51061] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(3653), 1, + ACTIONS(7332), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7334), 1, + aux_sym__immediate_decimal_token2, + STATE(3228), 1, sym_comment, - ACTIONS(952), 6, + ACTIONS(2231), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - ACTIONS(950), 44, + ACTIONS(2229), 44, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -392238,55 +351548,55 @@ 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, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token6, - [51262] = 12, + [51126] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2397), 1, + ACTIONS(7336), 1, + anon_sym_DOLLAR, + ACTIONS(7338), 1, anon_sym_LPAREN2, - ACTIONS(7683), 1, - aux_sym_unquoted_token5, - ACTIONS(7810), 1, - anon_sym_DOT_DOT2, - ACTIONS(7812), 1, + ACTIONS(7340), 1, anon_sym_DOT, - ACTIONS(7816), 1, - sym_filesize_unit, - ACTIONS(7818), 1, - sym_duration_unit, - STATE(3654), 1, + ACTIONS(7342), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7344), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7346), 1, + aux_sym__immediate_decimal_token4, + STATE(3229), 1, sym_comment, - STATE(10696), 1, + STATE(3598), 1, + sym__var, + STATE(4238), 1, + sym__immediate_decimal, + STATE(4237), 2, sym__expr_parenthesized_immediate, - ACTIONS(7814), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(959), 12, + sym_val_variable, + ACTIONS(2146), 12, anon_sym_LPAREN, anon_sym_DASH, + anon_sym__, anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, anon_sym_DOT2, + aux_sym__val_number_decimal_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(961), 29, + aux_sym_unquoted_token1, + ACTIONS(2148), 27, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOLLAR, - 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_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -392305,19 +351615,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [51339] = 4, + [51204] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(3655), 1, + ACTIONS(7334), 1, + aux_sym__immediate_decimal_token2, + STATE(3230), 1, sym_comment, - ACTIONS(919), 6, + ACTIONS(2231), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - ACTIONS(917), 44, + ACTIONS(2229), 44, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -392360,52 +351670,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_token2, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token6, - [51400] = 4, + [51266] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(3656), 1, + ACTIONS(7336), 1, + anon_sym_DOLLAR, + ACTIONS(7338), 1, + anon_sym_LPAREN2, + ACTIONS(7340), 1, + anon_sym_DOT, + ACTIONS(7342), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7344), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7346), 1, + aux_sym__immediate_decimal_token4, + STATE(3231), 1, sym_comment, - ACTIONS(909), 15, + STATE(3598), 1, + sym__var, + STATE(4234), 1, + sym__immediate_decimal, + STATE(4224), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(2136), 12, anon_sym_LPAREN, anon_sym_DASH, + anon_sym__, anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, anon_sym_DOT2, + aux_sym__val_number_decimal_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token5, - aux_sym__unquoted_in_list_token1, - ACTIONS(911), 34, + aux_sym_unquoted_token1, + ACTIONS(2138), 27, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_LPAREN2, - 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_token1, aux_sym__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, @@ -392418,59 +351737,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [51460] = 13, - ACTIONS(3), 1, + [51344] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7820), 1, - anon_sym_DOLLAR, - ACTIONS(7822), 1, - anon_sym_LPAREN2, - ACTIONS(7824), 1, - anon_sym_DOT, - ACTIONS(7826), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7828), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7830), 1, - aux_sym__immediate_decimal_token4, - STATE(3657), 1, + ACTIONS(7348), 1, + aux_sym__immediate_decimal_token2, + STATE(3232), 1, sym_comment, - STATE(4036), 1, - sym__var, - STATE(4545), 1, - sym__immediate_decimal, - STATE(4544), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(2387), 12, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(2389), 27, + ACTIONS(2364), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(2362), 44, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_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, @@ -392483,31 +351792,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [51538] = 13, + aux_sym_unquoted_token2, + aux_sym__unquoted_in_list_token1, + [51406] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7820), 1, + ACTIONS(7336), 1, anon_sym_DOLLAR, - ACTIONS(7822), 1, + ACTIONS(7338), 1, anon_sym_LPAREN2, - ACTIONS(7824), 1, + ACTIONS(7340), 1, anon_sym_DOT, - ACTIONS(7826), 1, + ACTIONS(7342), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7828), 1, + ACTIONS(7344), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7830), 1, + ACTIONS(7346), 1, aux_sym__immediate_decimal_token4, - STATE(3658), 1, + STATE(3233), 1, sym_comment, - STATE(4036), 1, + STATE(3598), 1, sym__var, - STATE(4581), 1, + STATE(4094), 1, sym__immediate_decimal, - STATE(4580), 2, + STATE(4093), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2349), 12, + ACTIONS(2169), 12, anon_sym_LPAREN, anon_sym_DASH, anon_sym__, @@ -392520,7 +351831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(2351), 27, + ACTIONS(2171), 27, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LBRACE, @@ -392548,19 +351859,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [51616] = 5, + [51484] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7832), 1, + ACTIONS(7350), 1, aux_sym__immediate_decimal_token2, - STATE(3659), 1, + STATE(3234), 1, sym_comment, - ACTIONS(2549), 4, + ACTIONS(2358), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(2547), 44, + ACTIONS(2356), 44, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -392603,21 +351914,21 @@ 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, aux_sym__unquoted_in_list_token1, - [51678] = 5, + aux_sym__unquoted_in_list_token2, + [51546] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7834), 1, + ACTIONS(7328), 1, aux_sym__immediate_decimal_token2, - STATE(3660), 1, + STATE(3235), 1, sym_comment, - ACTIONS(2583), 4, + ACTIONS(2231), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(2581), 44, + ACTIONS(2229), 44, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -392662,13 +351973,14 @@ 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, - [51740] = 4, + [51608] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3661), 1, + ACTIONS(7314), 1, + aux_sym__immediate_decimal_token2, + STATE(3236), 1, sym_comment, - ACTIONS(917), 15, - anon_sym_LPAREN, + ACTIONS(893), 14, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -392681,16 +351993,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token5, aux_sym__unquoted_in_list_token1, - ACTIONS(919), 34, + aux_sym__unquoted_in_list_token6, + ACTIONS(895), 34, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_null, @@ -392718,45 +352030,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [51800] = 6, - ACTIONS(3), 1, + [51670] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7836), 1, + ACTIONS(7352), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7838), 1, + ACTIONS(7354), 1, aux_sym__immediate_decimal_token2, - STATE(3662), 1, + STATE(3237), 1, sym_comment, - ACTIONS(2437), 15, + ACTIONS(2231), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(2229), 44, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DOT_DOT2, anon_sym_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, anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, aux_sym_unquoted_token2, aux_sym__unquoted_in_list_token1, - ACTIONS(2439), 32, + [51734] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(7356), 1, + aux_sym__immediate_decimal_token2, + STATE(3238), 1, + sym_comment, + ACTIONS(2364), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(2362), 44, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [51796] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(7358), 1, + anon_sym_DOT, + ACTIONS(7361), 1, + aux_sym__immediate_decimal_token2, + STATE(3239), 1, + sym_comment, + ACTIONS(2358), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(2356), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_PLUS, + 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -392764,6 +352186,9 @@ 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, @@ -392776,31 +352201,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [51864] = 13, + aux_sym_unquoted_token2, + aux_sym__unquoted_in_list_token1, + [51860] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7820), 1, + ACTIONS(7363), 1, anon_sym_DOLLAR, - ACTIONS(7822), 1, + ACTIONS(7365), 1, anon_sym_LPAREN2, - ACTIONS(7824), 1, + ACTIONS(7367), 1, anon_sym_DOT, - ACTIONS(7826), 1, + ACTIONS(7369), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7828), 1, + ACTIONS(7371), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7830), 1, + ACTIONS(7373), 1, aux_sym__immediate_decimal_token4, - STATE(3663), 1, + STATE(3240), 1, sym_comment, - STATE(4036), 1, + STATE(3367), 1, sym__var, - STATE(4633), 1, + STATE(3596), 1, sym__immediate_decimal, - STATE(4549), 2, + STATE(3593), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1920), 12, + ACTIONS(2169), 12, anon_sym_LPAREN, anon_sym_DASH, anon_sym__, @@ -392813,7 +352240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(1922), 27, + ACTIONS(2171), 27, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LBRACE, @@ -392841,50 +352268,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [51942] = 4, + [51938] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(3664), 1, + ACTIONS(7363), 1, + anon_sym_DOLLAR, + ACTIONS(7365), 1, + anon_sym_LPAREN2, + ACTIONS(7369), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7371), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7373), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7375), 1, + anon_sym_DOT, + STATE(3241), 1, sym_comment, - ACTIONS(950), 15, + STATE(3367), 1, + sym__var, + STATE(3677), 1, + sym__immediate_decimal, + STATE(3597), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1838), 12, anon_sym_LPAREN, anon_sym_DASH, + anon_sym__, anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, anon_sym_DOT2, + aux_sym__val_number_decimal_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token5, - aux_sym__unquoted_in_list_token1, - ACTIONS(952), 34, + aux_sym_unquoted_token1, + ACTIONS(1840), 27, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_LPAREN2, - 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_token1, aux_sym__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, @@ -392897,49 +352333,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [52002] = 5, - ACTIONS(113), 1, + [52016] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7808), 1, - aux_sym__immediate_decimal_token2, - STATE(3665), 1, - sym_comment, - ACTIONS(2439), 4, + ACTIONS(7336), 1, + anon_sym_DOLLAR, + ACTIONS(7338), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(2437), 44, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(7340), 1, + anon_sym_DOT, + ACTIONS(7342), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7344), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7346), 1, + aux_sym__immediate_decimal_token4, + STATE(3242), 1, + sym_comment, + STATE(3598), 1, + sym__var, + STATE(4102), 1, + sym__immediate_decimal, + STATE(4107), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1838), 12, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym__, anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1840), 27, + anon_sym_LBRACK, + anon_sym_COMMA, + 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_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, @@ -392952,33 +352398,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [52064] = 13, + [52094] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7840), 1, + ACTIONS(7336), 1, anon_sym_DOLLAR, - ACTIONS(7842), 1, + ACTIONS(7338), 1, anon_sym_LPAREN2, - ACTIONS(7844), 1, + ACTIONS(7340), 1, anon_sym_DOT, - ACTIONS(7846), 1, + ACTIONS(7342), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7848), 1, + ACTIONS(7344), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7850), 1, + ACTIONS(7346), 1, aux_sym__immediate_decimal_token4, - STATE(3666), 1, + STATE(3243), 1, sym_comment, - STATE(3783), 1, + STATE(3598), 1, sym__var, - STATE(4153), 1, + STATE(4117), 1, sym__immediate_decimal, - STATE(4046), 2, + STATE(4239), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1920), 12, + ACTIONS(1882), 12, anon_sym_LPAREN, anon_sym_DASH, anon_sym__, @@ -392991,7 +352435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(1922), 27, + ACTIONS(1884), 27, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LBRACE, @@ -393019,40 +352463,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [52142] = 6, - ACTIONS(113), 1, + [52172] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7834), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7852), 1, - anon_sym_DOT, - STATE(3667), 1, + STATE(3244), 1, sym_comment, - ACTIONS(2583), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(2581), 43, + ACTIONS(893), 15, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token5, + aux_sym__unquoted_in_list_token1, + ACTIONS(895), 34, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, + anon_sym_LPAREN2, + 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_token1, + aux_sym__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, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + [52232] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7377), 1, + aux_sym__immediate_decimal_token2, + STATE(3245), 1, + sym_comment, + ACTIONS(911), 14, + anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token6, + ACTIONS(913), 34, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -393060,9 +352562,8 @@ 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, @@ -393075,22 +352576,21 @@ 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, - [52206] = 6, + [52294] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7855), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7857), 1, + ACTIONS(7350), 1, aux_sym__immediate_decimal_token2, - STATE(3668), 1, + ACTIONS(7379), 1, + anon_sym_DOT, + STATE(3246), 1, sym_comment, - ACTIONS(2439), 3, + ACTIONS(2358), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(2437), 44, + ACTIONS(2356), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -393102,7 +352602,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -393133,41 +352632,99 @@ 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, aux_sym__unquoted_in_list_token1, - [52270] = 5, - ACTIONS(113), 1, + aux_sym__unquoted_in_list_token2, + [52358] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7859), 1, - aux_sym__immediate_decimal_token2, - STATE(3669), 1, + STATE(3247), 1, sym_comment, - ACTIONS(2549), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(2547), 44, + ACTIONS(901), 15, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token5, + aux_sym__unquoted_in_list_token1, + ACTIONS(903), 34, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, + anon_sym_LPAREN2, + 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_token1, + aux_sym__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, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + [52418] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3248), 1, + sym_comment, + ACTIONS(934), 15, + anon_sym_LPAREN, + anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DOT_DOT2, anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token5, + aux_sym__unquoted_in_list_token1, + ACTIONS(936), 34, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN2, + 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -393175,9 +352732,65 @@ 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, + 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, + [52478] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7382), 1, + aux_sym__immediate_decimal_token2, + STATE(3249), 1, + sym_comment, + ACTIONS(901), 14, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token6, + ACTIONS(903), 34, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + 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_token1, + aux_sym__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, @@ -393190,33 +352803,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [52332] = 13, + [52540] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7820), 1, + ACTIONS(7336), 1, anon_sym_DOLLAR, - ACTIONS(7822), 1, + ACTIONS(7338), 1, anon_sym_LPAREN2, - ACTIONS(7824), 1, + ACTIONS(7340), 1, anon_sym_DOT, - ACTIONS(7826), 1, + ACTIONS(7342), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7828), 1, + ACTIONS(7344), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7830), 1, + ACTIONS(7346), 1, aux_sym__immediate_decimal_token4, - STATE(3670), 1, + STATE(3250), 1, sym_comment, - STATE(4036), 1, + STATE(3598), 1, sym__var, - STATE(4583), 1, + STATE(4223), 1, sym__immediate_decimal, - STATE(4582), 2, + STATE(4221), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2359), 12, + ACTIONS(2207), 12, anon_sym_LPAREN, anon_sym_DASH, anon_sym__, @@ -393229,7 +352840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(2361), 27, + ACTIONS(2209), 27, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LBRACE, @@ -393257,19 +352868,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [52410] = 5, + [52618] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7861), 1, + ACTIONS(7377), 1, aux_sym__immediate_decimal_token2, - STATE(3671), 1, + ACTIONS(7384), 1, + anon_sym_DOT, + STATE(3251), 1, sym_comment, - ACTIONS(923), 14, + ACTIONS(911), 13, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -393279,7 +352891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0x, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token6, - ACTIONS(925), 34, + ACTIONS(913), 34, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -393314,53 +352926,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [52472] = 13, + [52682] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7820), 1, - anon_sym_DOLLAR, - ACTIONS(7822), 1, - anon_sym_LPAREN2, - ACTIONS(7824), 1, - anon_sym_DOT, - ACTIONS(7826), 1, + ACTIONS(7387), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7828), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7830), 1, - aux_sym__immediate_decimal_token4, - STATE(3672), 1, + ACTIONS(7389), 1, + aux_sym__immediate_decimal_token2, + STATE(3252), 1, sym_comment, - STATE(4036), 1, - sym__var, - STATE(4638), 1, - sym__immediate_decimal, - STATE(4586), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(2002), 12, + ACTIONS(2229), 15, anon_sym_LPAREN, anon_sym_DASH, - anon_sym__, anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, anon_sym_DOT2, - aux_sym__val_number_decimal_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(2004), 27, + aux_sym_unquoted_token2, + aux_sym__unquoted_in_list_token1, + ACTIONS(2231), 32, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_LPAREN2, + 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_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -393379,19 +352984,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [52550] = 5, + [52746] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7863), 1, + ACTIONS(7361), 1, aux_sym__immediate_decimal_token2, - STATE(3673), 1, + STATE(3253), 1, sym_comment, - ACTIONS(2583), 4, + ACTIONS(2358), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(2581), 44, + ACTIONS(2356), 44, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -393436,19 +353041,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, aux_sym_unquoted_token2, aux_sym__unquoted_in_list_token1, - [52612] = 5, + [52808] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7804), 1, - aux_sym__immediate_decimal_token2, - STATE(3674), 1, + STATE(3254), 1, sym_comment, - ACTIONS(2439), 4, + ACTIONS(2404), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(2437), 44, + ACTIONS(2402), 44, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -393491,61 +353094,53 @@ 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, aux_sym__unquoted_in_list_token1, - [52674] = 13, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token2, + [52867] = 7, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7820), 1, - anon_sym_DOLLAR, - ACTIONS(7822), 1, - anon_sym_LPAREN2, - ACTIONS(7824), 1, + ACTIONS(7391), 1, anon_sym_DOT, - ACTIONS(7826), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7828), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7830), 1, - aux_sym__immediate_decimal_token4, - STATE(3675), 1, + STATE(3255), 1, sym_comment, - STATE(4036), 1, - sym__var, - STATE(4585), 1, - sym__immediate_decimal, - STATE(4584), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(2383), 12, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(2385), 27, + STATE(3257), 1, + sym_path, + STATE(3390), 1, + sym_cell_path, + ACTIONS(1004), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1002), 42, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_PLUS, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_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, @@ -393558,53 +353153,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [52752] = 13, + aux_sym__unquoted_in_list_token1, + [52932] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7840), 1, - anon_sym_DOLLAR, - ACTIONS(7842), 1, - anon_sym_LPAREN2, - ACTIONS(7846), 1, + ACTIONS(7393), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7848), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7850), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7865), 1, - anon_sym_DOT, - STATE(3676), 1, + ACTIONS(7395), 1, + aux_sym__immediate_decimal_token2, + STATE(3256), 1, sym_comment, - STATE(3783), 1, - sym__var, - STATE(4043), 1, - sym__immediate_decimal, - STATE(4042), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(2387), 12, - anon_sym_LPAREN, + ACTIONS(2229), 14, anon_sym_DASH, - anon_sym__, anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, anon_sym_DOT2, - aux_sym__val_number_decimal_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(2389), 27, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2231), 32, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - 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_token2, + aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -393623,21 +353211,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [52830] = 6, + [52995] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7863), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7867), 1, + ACTIONS(7391), 1, anon_sym_DOT, - STATE(3677), 1, + STATE(3257), 1, sym_comment, - ACTIONS(2583), 4, - anon_sym_LPAREN2, + STATE(3260), 1, + aux_sym_cell_path_repeat1, + STATE(3379), 1, + sym_path, + ACTIONS(1012), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(2581), 43, + ACTIONS(1010), 42, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -393679,44 +353268,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, aux_sym__unquoted_in_list_token1, - [52894] = 5, - ACTIONS(3), 1, + [53060] = 8, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7870), 1, - aux_sym__immediate_decimal_token2, - STATE(3678), 1, - sym_comment, - ACTIONS(917), 14, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, + ACTIONS(3356), 1, + sym__entry_separator, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(7397), 1, anon_sym_DOT_DOT2, + STATE(3258), 1, + sym_comment, + ACTIONS(3362), 2, anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token6, - ACTIONS(919), 34, + aux_sym__unquoted_in_list_token2, + ACTIONS(7399), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3354), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_PLUS, + 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -393724,8 +353312,9 @@ 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, @@ -393738,14 +353327,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [52956] = 5, + aux_sym__unquoted_in_list_token1, + [53127] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7777), 1, - aux_sym__immediate_decimal_token2, - STATE(3679), 1, + STATE(3259), 1, sym_comment, - ACTIONS(909), 14, + ACTIONS(901), 14, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -393760,7 +353348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0x, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token6, - ACTIONS(911), 34, + ACTIONS(903), 34, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -393795,20 +353383,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [53018] = 6, + [53186] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(7391), 1, + anon_sym_DOT, + STATE(3260), 1, + sym_comment, + STATE(3287), 1, + aux_sym_cell_path_repeat1, + STATE(3379), 1, + sym_path, + ACTIONS(1008), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1006), 42, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_PLUS, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + aux_sym__unquoted_in_list_token1, + [53251] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7861), 1, + ACTIONS(7401), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7403), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7872), 1, - anon_sym_DOT, - STATE(3680), 1, + STATE(3261), 1, sym_comment, - ACTIONS(923), 13, + ACTIONS(2229), 14, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -393816,9 +353463,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, + aux_sym_unquoted_token2, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token6, - ACTIONS(925), 34, + ACTIONS(2231), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -393839,8 +353486,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, @@ -393853,44 +353498,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [53082] = 6, - ACTIONS(3), 1, + [53314] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7875), 1, - anon_sym_DOT, - ACTIONS(7878), 1, + ACTIONS(7405), 1, aux_sym__immediate_decimal_token2, - STATE(3681), 1, + STATE(3262), 1, sym_comment, - ACTIONS(2581), 14, + ACTIONS(2358), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(2356), 44, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DOT_DOT2, + anon_sym_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, anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, aux_sym_unquoted_token2, aux_sym__unquoted_in_list_token1, - ACTIONS(2583), 32, + [53375] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(7354), 1, + aux_sym__immediate_decimal_token2, + STATE(3263), 1, + sym_comment, + ACTIONS(2231), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(2229), 44, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -393898,6 +353593,9 @@ 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, @@ -393910,18 +353608,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [53145] = 5, + aux_sym_unquoted_token2, + aux_sym__unquoted_in_list_token1, + [53436] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7880), 1, - aux_sym__immediate_decimal_token2, - STATE(3682), 1, + ACTIONS(7391), 1, + anon_sym_DOT, + STATE(3257), 1, + sym_path, + STATE(3264), 1, sym_comment, - ACTIONS(2549), 3, + STATE(3408), 1, + sym_cell_path, + ACTIONS(994), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(2547), 44, + ACTIONS(992), 42, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -393933,7 +353637,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -393964,24 +353667,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, aux_sym__unquoted_in_list_token1, - [53206] = 7, + [53501] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7882), 1, - anon_sym_DOT, - STATE(3683), 1, + ACTIONS(7407), 1, + aux_sym__immediate_decimal_token2, + STATE(3265), 1, sym_comment, - STATE(3703), 1, - sym_path, - STATE(3821), 1, - sym_cell_path, - ACTIONS(997), 3, + ACTIONS(2364), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(995), 42, + ACTIONS(2362), 44, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -393993,6 +353691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -394023,20 +353722,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token2, aux_sym__unquoted_in_list_token1, - [53271] = 5, + [53562] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7884), 1, + ACTIONS(7409), 1, + anon_sym_DOT, + ACTIONS(7412), 1, aux_sym__immediate_decimal_token2, - STATE(3684), 1, + STATE(3266), 1, sym_comment, - ACTIONS(2437), 14, + ACTIONS(2356), 14, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -394044,17 +353746,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, + aux_sym_unquoted_token2, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2439), 33, + ACTIONS(2358), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_null, @@ -394080,16 +353781,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [53332] = 6, + [53625] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7884), 1, + ACTIONS(7412), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7886), 1, - aux_sym__immediate_decimal_token1, - STATE(3685), 1, + STATE(3267), 1, sym_comment, - ACTIONS(2437), 14, + ACTIONS(2356), 15, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -394102,16 +353802,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, + aux_sym_unquoted_token2, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2439), 32, + ACTIONS(2358), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_null, @@ -394137,16 +353837,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [53395] = 6, + [53686] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7888), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7890), 1, + ACTIONS(7389), 1, aux_sym__immediate_decimal_token2, - STATE(3686), 1, + STATE(3268), 1, sym_comment, - ACTIONS(2437), 14, + ACTIONS(2229), 15, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -394161,75 +353860,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0x, aux_sym_unquoted_token2, aux_sym__unquoted_in_list_token1, - ACTIONS(2439), 32, + ACTIONS(2231), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__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, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [53458] = 8, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(3520), 1, - sym__entry_separator, - ACTIONS(3522), 1, anon_sym_LPAREN2, - ACTIONS(7892), 1, - anon_sym_DOT_DOT2, - STATE(3687), 1, - sym_comment, - ACTIONS(1934), 2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(7894), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(3518), 41, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, - 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -394237,9 +353881,6 @@ 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, @@ -394252,23 +353893,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - [53525] = 7, + [53747] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7882), 1, + ACTIONS(7405), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7414), 1, anon_sym_DOT, - STATE(3688), 1, + STATE(3269), 1, sym_comment, - STATE(3712), 1, - aux_sym_cell_path_repeat1, - STATE(3812), 1, - sym_path, - ACTIONS(1008), 3, + ACTIONS(2358), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1006), 42, + ACTIONS(2356), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -394310,16 +353948,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_token2, aux_sym__unquoted_in_list_token1, - [53590] = 5, + [53810] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7838), 1, + ACTIONS(7417), 1, aux_sym__immediate_decimal_token2, - STATE(3689), 1, + STATE(3270), 1, sym_comment, - ACTIONS(2437), 15, - anon_sym_LPAREN, + ACTIONS(2362), 14, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -394332,16 +353970,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token2, aux_sym__unquoted_in_list_token1, - ACTIONS(2439), 32, + aux_sym__unquoted_in_list_token2, + ACTIONS(2364), 33, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_LPAREN2, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_null, @@ -394367,17 +354006,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [53651] = 4, + [53871] = 8, ACTIONS(113), 1, anon_sym_POUND, - STATE(3690), 1, - sym_comment, - ACTIONS(2439), 4, + ACTIONS(3314), 1, + sym__entry_separator, + ACTIONS(3316), 1, anon_sym_LPAREN2, + ACTIONS(7419), 1, + anon_sym_DOT_DOT2, + STATE(3271), 1, + sym_comment, + ACTIONS(1844), 2, + anon_sym_DOT, + aux_sym__unquoted_in_list_token2, + ACTIONS(7421), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(2437), 44, + ACTIONS(3312), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -394388,8 +354034,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -394420,19 +354064,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, aux_sym__unquoted_in_list_token1, - [53710] = 4, + [53938] = 8, ACTIONS(113), 1, anon_sym_POUND, - STATE(3691), 1, - sym_comment, - ACTIONS(2549), 4, + ACTIONS(3356), 1, + sym__entry_separator, + ACTIONS(3358), 1, anon_sym_LPAREN2, + ACTIONS(7423), 1, + anon_sym_DOT_DOT2, + STATE(3272), 1, + sym_comment, + ACTIONS(3362), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(7425), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(2547), 44, + ACTIONS(3354), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -394443,8 +354093,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -394476,97 +354124,43 @@ 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, - [53769] = 8, - ACTIONS(113), 1, + [54005] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2845), 1, - sym__entry_separator, - ACTIONS(2847), 1, - anon_sym_LPAREN2, - ACTIONS(7896), 1, - anon_sym_DOT_DOT2, - STATE(3692), 1, + ACTIONS(7427), 1, + aux_sym__immediate_decimal_token2, + STATE(3273), 1, sym_comment, - ACTIONS(2851), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(7898), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2843), 41, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(2362), 15, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_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, anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, + aux_sym_unquoted_token2, aux_sym__unquoted_in_list_token1, - [53836] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(3693), 1, - sym_comment, - ACTIONS(2549), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(2547), 44, + ACTIONS(2364), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_LPAREN2, + 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -394574,9 +354168,6 @@ 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, @@ -394589,19 +354180,28 @@ 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, - aux_sym__unquoted_in_list_token1, - [53895] = 4, + [54066] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(3694), 1, + ACTIONS(7119), 1, + aux_sym__unquoted_in_list_token6, + ACTIONS(7429), 1, + anon_sym_DOT_DOT2, + ACTIONS(7431), 1, + anon_sym_DOT, + ACTIONS(7435), 1, + sym_filesize_unit, + ACTIONS(7437), 1, + sym_duration_unit, + STATE(3274), 1, sym_comment, - ACTIONS(950), 14, + ACTIONS(7433), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(938), 11, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -394610,8 +354210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token6, - ACTIONS(952), 34, + ACTIONS(940), 30, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -394619,8 +354218,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -394632,8 +354229,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, @@ -394646,47 +354241,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [53954] = 14, + [54137] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(938), 1, - anon_sym_LF, - ACTIONS(3063), 1, - anon_sym_DOLLAR, - ACTIONS(3982), 1, - aux_sym_unquoted_token3, - ACTIONS(7900), 1, - anon_sym_LPAREN2, - ACTIONS(7902), 1, - anon_sym_DOT, - ACTIONS(7906), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7908), 1, - aux_sym_unquoted_token5, - STATE(3695), 1, + STATE(3275), 1, sym_comment, - STATE(4098), 1, - sym__var, - STATE(4257), 1, - sym__immediate_decimal, - ACTIONS(7904), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4523), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(936), 35, - anon_sym_SEMI, + ACTIONS(2231), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(2229), 44, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_not, + anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -394709,19 +354286,27 @@ 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, - [54033] = 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, + aux_sym_unquoted_token2, + aux_sym__unquoted_in_list_token1, + [54196] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(3696), 1, + STATE(3276), 1, sym_comment, - ACTIONS(3507), 4, + ACTIONS(2364), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(3505), 44, + ACTIONS(2362), 44, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -394766,40 +354351,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, aux_sym_unquoted_token2, aux_sym__unquoted_in_list_token1, - [54092] = 4, - ACTIONS(3), 1, + [54255] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(3697), 1, + STATE(3277), 1, sym_comment, - ACTIONS(917), 14, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token6, - ACTIONS(919), 34, + ACTIONS(2404), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(2402), 44, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -394807,8 +354389,9 @@ 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, @@ -394821,15 +354404,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [54151] = 5, + aux_sym_unquoted_token2, + aux_sym__unquoted_in_list_token1, + [54314] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7878), 1, - aux_sym__immediate_decimal_token2, - STATE(3698), 1, + STATE(3278), 1, sym_comment, - ACTIONS(2581), 15, - anon_sym_LPAREN, + ACTIONS(934), 14, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -394842,16 +354424,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token2, aux_sym__unquoted_in_list_token1, - ACTIONS(2583), 32, + aux_sym__unquoted_in_list_token6, + ACTIONS(936), 34, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_null, @@ -394865,6 +354447,8 @@ 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, @@ -394877,37 +354461,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [54212] = 4, - ACTIONS(113), 1, + [54373] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3699), 1, + STATE(3279), 1, sym_comment, - ACTIONS(2439), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(2437), 44, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(893), 14, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DOT_DOT2, anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token6, + ACTIONS(895), 34, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -394915,9 +354502,8 @@ 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, @@ -394930,17 +354516,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_in_list_token1, - aux_sym__unquoted_in_list_token2, - [54271] = 5, + [54432] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7910), 1, + ACTIONS(7439), 1, aux_sym__immediate_decimal_token2, - STATE(3700), 1, + STATE(3280), 1, sym_comment, - ACTIONS(2547), 15, - anon_sym_LPAREN, + ACTIONS(2356), 14, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -394953,16 +354536,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token2, aux_sym__unquoted_in_list_token1, - ACTIONS(2549), 32, + aux_sym__unquoted_in_list_token2, + ACTIONS(2358), 33, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_LPAREN2, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_null, @@ -394988,33 +354572,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [54332] = 7, + [54493] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7882), 1, + ACTIONS(922), 1, + anon_sym_LF, + ACTIONS(2500), 1, + anon_sym_DOLLAR, + ACTIONS(3625), 1, + aux_sym_unquoted_token3, + ACTIONS(7441), 1, + anon_sym_LPAREN2, + ACTIONS(7443), 1, anon_sym_DOT, - STATE(3701), 1, + ACTIONS(7447), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7449), 1, + aux_sym_unquoted_token5, + STATE(3281), 1, sym_comment, - STATE(3703), 1, - sym_path, - STATE(3829), 1, - sym_cell_path, - ACTIONS(1012), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1010), 42, + STATE(3648), 1, + sym__var, + STATE(3842), 1, + sym__immediate_decimal, + ACTIONS(7445), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4121), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(920), 35, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT_DOT2, + anon_sym_not, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -395037,64 +354635,45 @@ 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, - aux_sym__unquoted_in_list_token1, - [54397] = 14, - ACTIONS(113), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [54572] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(938), 1, - anon_sym_LF, - ACTIONS(3063), 1, - anon_sym_DOLLAR, - ACTIONS(7900), 1, - anon_sym_LPAREN2, - ACTIONS(7912), 1, - anon_sym_DOT, - ACTIONS(7916), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7918), 1, - aux_sym_unquoted_token3, - ACTIONS(7920), 1, - aux_sym_unquoted_token5, - STATE(3702), 1, + ACTIONS(7395), 1, + aux_sym__immediate_decimal_token2, + STATE(3282), 1, sym_comment, - STATE(4030), 1, - sym__immediate_decimal, - STATE(4098), 1, - sym__var, - ACTIONS(7914), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4523), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(936), 35, - anon_sym_SEMI, + ACTIONS(2229), 14, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2231), 33, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -395102,31 +354681,29 @@ 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, - [54476] = 7, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + [54633] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7882), 1, - anon_sym_DOT, - STATE(3688), 1, - aux_sym_cell_path_repeat1, - STATE(3703), 1, + STATE(3283), 1, sym_comment, - STATE(3812), 1, - sym_path, - ACTIONS(989), 3, + ACTIONS(2231), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(987), 42, + ACTIONS(2229), 44, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -395138,6 +354715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -395169,24 +354747,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [54541] = 8, + aux_sym__unquoted_in_list_token2, + [54692] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3520), 1, - sym__entry_separator, - ACTIONS(3522), 1, - anon_sym_LPAREN2, - ACTIONS(7922), 1, - anon_sym_DOT_DOT2, - STATE(3704), 1, + STATE(3284), 1, sym_comment, - ACTIONS(1934), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(7924), 2, + ACTIONS(2364), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(3518), 41, + sym__entry_separator, + ACTIONS(2362), 44, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -395197,6 +354769,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -395228,48 +354802,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [54608] = 10, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token2, + [54751] = 14, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7621), 1, - aux_sym__unquoted_in_list_token6, - ACTIONS(7926), 1, - anon_sym_DOT_DOT2, - ACTIONS(7928), 1, + ACTIONS(922), 1, + anon_sym_LF, + ACTIONS(2500), 1, + anon_sym_DOLLAR, + ACTIONS(7441), 1, + anon_sym_LPAREN2, + ACTIONS(7451), 1, anon_sym_DOT, - ACTIONS(7932), 1, - sym_filesize_unit, - ACTIONS(7934), 1, - sym_duration_unit, - STATE(3705), 1, + ACTIONS(7455), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7457), 1, + aux_sym_unquoted_token3, + ACTIONS(7459), 1, + aux_sym_unquoted_token5, + STATE(3285), 1, sym_comment, - ACTIONS(7930), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(959), 11, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(961), 30, + STATE(3624), 1, + sym__immediate_decimal, + STATE(3648), 1, + sym__var, + ACTIONS(7453), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4121), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(920), 35, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -395277,52 +354859,51 @@ 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, - [54679] = 4, - ACTIONS(3), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [54830] = 8, + ACTIONS(113), 1, anon_sym_POUND, - STATE(3706), 1, - sym_comment, - ACTIONS(909), 14, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, + ACTIONS(3314), 1, + sym__entry_separator, + ACTIONS(3316), 1, + anon_sym_LPAREN2, + ACTIONS(7461), 1, anon_sym_DOT_DOT2, + STATE(3286), 1, + sym_comment, + ACTIONS(1844), 2, anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token6, - ACTIONS(911), 34, + aux_sym_unquoted_token2, + ACTIONS(7463), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3312), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_PLUS, + 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -395330,8 +354911,9 @@ 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, @@ -395344,18 +354926,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [54738] = 5, + aux_sym__unquoted_in_list_token1, + [54897] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7857), 1, - aux_sym__immediate_decimal_token2, - STATE(3707), 1, + ACTIONS(7465), 1, + anon_sym_DOT, + STATE(3379), 1, + sym_path, + STATE(3287), 2, sym_comment, - ACTIONS(2439), 3, + aux_sym_cell_path_repeat1, + ACTIONS(987), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(2437), 44, + ACTIONS(985), 42, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -395367,7 +354953,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -395398,26 +354983,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_token2, aux_sym__unquoted_in_list_token1, - [54799] = 8, + [54960] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2845), 1, - sym__entry_separator, - ACTIONS(2847), 1, - anon_sym_LPAREN2, - ACTIONS(7936), 1, - anon_sym_DOT_DOT2, - STATE(3708), 1, + STATE(3288), 1, sym_comment, - ACTIONS(2851), 2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(7938), 2, + ACTIONS(2231), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2843), 41, + sym__entry_separator, + ACTIONS(2229), 44, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -395428,6 +355004,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -395458,38 +355036,45 @@ 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, aux_sym__unquoted_in_list_token1, - [54866] = 4, - ACTIONS(113), 1, + [55018] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3709), 1, + ACTIONS(7439), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7468), 1, + anon_sym_DOT, + STATE(3289), 1, sym_comment, - ACTIONS(3507), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(3505), 44, + ACTIONS(2356), 13, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2358), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -395497,9 +355082,6 @@ 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, @@ -395512,21 +355094,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [54925] = 5, + [55080] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7940), 1, - aux_sym__immediate_decimal_token2, - STATE(3710), 1, + ACTIONS(7471), 1, + anon_sym_DOT, + STATE(3290), 1, sym_comment, - ACTIONS(2547), 14, + STATE(3329), 1, + sym_path, + STATE(3500), 1, + sym_cell_path, + ACTIONS(992), 12, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -395535,8 +355118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2549), 33, + ACTIONS(994), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -395544,7 +355126,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_null, @@ -395570,20 +355151,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [54986] = 6, + [55144] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7942), 1, - anon_sym_DOT, - ACTIONS(7945), 1, + ACTIONS(7473), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7475), 1, aux_sym__immediate_decimal_token2, - STATE(3711), 1, + STATE(3291), 1, sym_comment, - ACTIONS(2583), 3, + ACTIONS(2231), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(2581), 43, + ACTIONS(2229), 42, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -395625,23 +355206,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, aux_sym__unquoted_in_list_token1, - [55049] = 6, + [55206] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7947), 1, - anon_sym_DOT, - STATE(3812), 1, - sym_path, - STATE(3712), 2, + ACTIONS(3314), 1, + sym__entry_separator, + ACTIONS(7477), 1, + anon_sym_DOT_DOT2, + STATE(3292), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1001), 3, + ACTIONS(1844), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(7479), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(999), 42, + ACTIONS(3312), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -395652,7 +355233,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -395684,43 +355264,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [55112] = 5, - ACTIONS(3), 1, + [55270] = 13, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7950), 1, - aux_sym__immediate_decimal_token2, - STATE(3713), 1, - sym_comment, - ACTIONS(2581), 14, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT_DOT2, + ACTIONS(922), 1, + anon_sym_LF, + ACTIONS(3625), 1, + aux_sym_unquoted_token4, + ACTIONS(7481), 1, + anon_sym_DOLLAR, + ACTIONS(7483), 1, + anon_sym_LPAREN2, + ACTIONS(7485), 1, anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2583), 33, + ACTIONS(7489), 1, + aux_sym__immediate_decimal_token4, + STATE(3293), 1, + sym_comment, + STATE(4162), 1, + sym__var, + STATE(4318), 1, + sym__immediate_decimal, + ACTIONS(7487), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4795), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(920), 35, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -395728,42 +355318,54 @@ 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, - [55173] = 5, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [55346] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7945), 1, - aux_sym__immediate_decimal_token2, - STATE(3714), 1, + ACTIONS(1840), 1, + anon_sym_LF, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(2500), 1, + anon_sym_DOLLAR, + ACTIONS(7441), 1, + anon_sym_LPAREN2, + ACTIONS(7455), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7491), 1, + anon_sym_DOT, + STATE(3294), 1, sym_comment, - ACTIONS(2583), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(2581), 44, + STATE(3647), 1, + sym__immediate_decimal, + STATE(3648), 1, + sym__var, + ACTIONS(7453), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4151), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1838), 35, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, + anon_sym_not, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -395786,51 +355388,55 @@ 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, - aux_sym_unquoted_token2, - aux_sym__unquoted_in_list_token1, - [55234] = 4, - ACTIONS(3), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [55422] = 13, + ACTIONS(113), 1, anon_sym_POUND, - STATE(3715), 1, + ACTIONS(1884), 1, + anon_sym_LF, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(7481), 1, + anon_sym_DOLLAR, + ACTIONS(7483), 1, + anon_sym_LPAREN2, + ACTIONS(7485), 1, + anon_sym_DOT, + ACTIONS(7489), 1, + aux_sym__immediate_decimal_token4, + STATE(3295), 1, sym_comment, - ACTIONS(2547), 15, + STATE(4162), 1, + sym__var, + STATE(4366), 1, + sym__immediate_decimal, + ACTIONS(7487), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4783), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1882), 35, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, + anon_sym_not, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - aux_sym__unquoted_in_list_token1, - ACTIONS(2549), 32, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_LPAREN2, - 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -395838,34 +355444,31 @@ 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, - [55292] = 7, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [55498] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2845), 1, + ACTIONS(3356), 1, sym__entry_separator, - ACTIONS(7952), 1, + ACTIONS(7493), 1, anon_sym_DOT_DOT2, - STATE(3716), 1, + STATE(3296), 1, sym_comment, - ACTIONS(2851), 2, + ACTIONS(3362), 2, anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(7954), 2, + ACTIONS(7495), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2843), 41, + ACTIONS(3354), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -395907,34 +355510,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [55356] = 13, + [55562] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1922), 1, + ACTIONS(1840), 1, anon_sym_LF, - ACTIONS(1934), 1, + ACTIONS(1844), 1, aux_sym_unquoted_token2, - ACTIONS(3063), 1, + ACTIONS(7481), 1, anon_sym_DOLLAR, - ACTIONS(7900), 1, + ACTIONS(7483), 1, anon_sym_LPAREN2, - ACTIONS(7916), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7956), 1, + ACTIONS(7497), 1, anon_sym_DOT, - STATE(3717), 1, + ACTIONS(7501), 1, + aux_sym__immediate_decimal_token4, + STATE(3297), 1, sym_comment, - STATE(4048), 1, + STATE(4112), 1, sym__immediate_decimal, - STATE(4098), 1, + STATE(4162), 1, sym__var, - ACTIONS(7914), 2, + ACTIONS(7499), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4558), 2, + STATE(4621), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1920), 35, + ACTIONS(1838), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -395970,41 +355573,53 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [55432] = 4, - ACTIONS(3), 1, + [55638] = 13, + ACTIONS(113), 1, anon_sym_POUND, - STATE(3718), 1, + ACTIONS(1840), 1, + anon_sym_LF, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(2500), 1, + anon_sym_DOLLAR, + ACTIONS(7441), 1, + anon_sym_LPAREN2, + ACTIONS(7447), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7503), 1, + anon_sym_DOT, + STATE(3298), 1, sym_comment, - ACTIONS(2437), 15, + STATE(3648), 1, + sym__var, + STATE(3797), 1, + sym__immediate_decimal, + ACTIONS(7445), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4151), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1838), 35, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, + anon_sym_not, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - aux_sym__unquoted_in_list_token1, - ACTIONS(2439), 32, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_LPAREN2, - 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -396012,50 +355627,50 @@ 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, - [55490] = 6, - ACTIONS(113), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [55714] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7958), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7960), 1, - aux_sym__immediate_decimal_token2, - STATE(3719), 1, + STATE(3299), 1, sym_comment, - ACTIONS(2439), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(2437), 43, + ACTIONS(2229), 14, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2231), 33, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_RBRACE, + 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -396063,9 +355678,6 @@ 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, @@ -396078,28 +355690,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, - aux_sym__unquoted_in_list_token1, - [55552] = 8, + [55772] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3522), 1, - anon_sym_LPAREN2, - ACTIONS(7962), 1, - anon_sym_DOT_DOT2, - STATE(3720), 1, + STATE(3300), 1, sym_comment, - ACTIONS(1934), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(7964), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3518), 12, + ACTIONS(2229), 15, anon_sym_LPAREN, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -396107,14 +355709,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, + aux_sym_unquoted_token2, aux_sym__unquoted_in_list_token1, - ACTIONS(3520), 29, + ACTIONS(2231), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -396138,20 +355744,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [55618] = 6, + [55830] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7966), 1, - anon_sym_DOT, - ACTIONS(7969), 1, - aux_sym__immediate_decimal_token2, - STATE(3721), 1, + STATE(3301), 1, sym_comment, - ACTIONS(2581), 13, + ACTIONS(2362), 15, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -396161,14 +355765,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0x, aux_sym_unquoted_token2, aux_sym__unquoted_in_list_token1, - ACTIONS(2583), 32, + ACTIONS(2364), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_null, @@ -396194,20 +355798,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [55680] = 6, + [55888] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7950), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7971), 1, - anon_sym_DOT, - STATE(3722), 1, + STATE(3302), 1, sym_comment, - ACTIONS(2581), 13, + ACTIONS(2402), 15, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -396215,16 +355817,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, + aux_sym_unquoted_token2, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2583), 32, + ACTIONS(2404), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_null, @@ -396250,17 +355852,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [55742] = 6, + [55946] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7974), 1, + ACTIONS(7471), 1, anon_sym_DOT, - STATE(3848), 1, - sym_path, - STATE(3723), 2, + STATE(3303), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(999), 12, + STATE(3329), 1, + sym_path, + STATE(3519), 1, + sym_cell_path, + ACTIONS(1002), 12, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -396273,7 +355876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1001), 32, + ACTIONS(1004), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -396306,22 +355909,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [55804] = 7, + [56010] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3520), 1, - sym__entry_separator, - ACTIONS(7977), 1, - anon_sym_DOT_DOT2, - STATE(3724), 1, - sym_comment, - ACTIONS(1934), 2, + ACTIONS(7505), 1, anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(7979), 2, + ACTIONS(7507), 1, + aux_sym__immediate_decimal_token2, + STATE(3304), 1, + sym_comment, + ACTIONS(2358), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(3518), 41, + sym__entry_separator, + ACTIONS(2356), 42, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -396332,6 +355933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -396363,28 +355965,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [55868] = 5, + [56072] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7981), 1, - anon_sym_QMARK2, - STATE(3725), 1, + ACTIONS(7509), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7511), 1, + aux_sym__immediate_decimal_token2, + STATE(3305), 1, sym_comment, - ACTIONS(1072), 3, + ACTIONS(895), 6, + anon_sym_LF, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1070), 43, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(893), 39, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_PLUS, + anon_sym_not, anon_sym_DOT_DOT2, anon_sym_DOT, anon_sym_DOT_DOT_EQ, @@ -396409,27 +356018,19 @@ 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, - aux_sym__unquoted_in_list_token1, - [55928] = 5, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + aux_sym_unquoted_token5, + [56134] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7981), 1, - anon_sym_QMARK2, - STATE(3726), 1, + STATE(3306), 1, sym_comment, - ACTIONS(1072), 3, + ACTIONS(1035), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1070), 43, + ACTIONS(1033), 44, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -396439,6 +356040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_QMARK2, anon_sym_PLUS, anon_sym_DOT_DOT2, anon_sym_DOT, @@ -396473,16 +356075,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [55988] = 4, + [56192] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(3727), 1, + STATE(3307), 1, sym_comment, - ACTIONS(1061), 3, + ACTIONS(1022), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1059), 44, + ACTIONS(1020), 44, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -396527,45 +356129,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [56046] = 8, - ACTIONS(3), 1, + [56250] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2847), 1, - anon_sym_LPAREN2, - ACTIONS(7983), 1, - anon_sym_DOT_DOT2, - STATE(3728), 1, + ACTIONS(7513), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7515), 1, + aux_sym__immediate_decimal_token2, + STATE(3308), 1, sym_comment, - ACTIONS(2851), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(7985), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2843), 12, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2845), 29, + ACTIONS(2231), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(2229), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -396573,6 +356168,9 @@ 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, @@ -396585,41 +356183,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [56112] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3729), 1, - sym_comment, - ACTIONS(2437), 14, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - ACTIONS(2439), 33, + [56312] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(7517), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7519), 1, + aux_sym__immediate_decimal_token2, + STATE(3309), 1, + sym_comment, + ACTIONS(2231), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(2229), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -396627,6 +356224,9 @@ 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, @@ -396639,18 +356239,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [56170] = 7, + aux_sym_unquoted_token2, + aux_sym__unquoted_in_list_token1, + [56374] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7987), 1, + ACTIONS(7471), 1, anon_sym_DOT, - STATE(3730), 1, + STATE(3310), 1, sym_comment, - STATE(3750), 1, + STATE(3311), 1, aux_sym_cell_path_repeat1, - STATE(3848), 1, + STATE(3412), 1, sym_path, - ACTIONS(987), 12, + ACTIONS(1006), 12, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -396663,7 +356265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(989), 32, + ACTIONS(1008), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -396696,93 +356298,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [56234] = 6, - ACTIONS(113), 1, + [56438] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7989), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7991), 1, - aux_sym__immediate_decimal_token2, - STATE(3731), 1, + ACTIONS(7521), 1, + anon_sym_DOT, + STATE(3412), 1, + sym_path, + STATE(3311), 2, sym_comment, - ACTIONS(911), 6, - anon_sym_LF, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(909), 39, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + aux_sym_cell_path_repeat1, + ACTIONS(985), 12, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_not, + anon_sym_PLUS, anon_sym_DOT_DOT2, - anon_sym_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, anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - aux_sym_unquoted_token5, - [56296] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(3732), 1, - sym_comment, - ACTIONS(1065), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1063), 44, + aux_sym__unquoted_in_list_token1, + ACTIONS(987), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -396790,9 +356342,6 @@ 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, @@ -396805,78 +356354,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_in_list_token1, - [56354] = 13, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(2004), 1, - anon_sym_LF, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - ACTIONS(7993), 1, - anon_sym_DOLLAR, - ACTIONS(7995), 1, - anon_sym_LPAREN2, - ACTIONS(7997), 1, - anon_sym_DOT, - ACTIONS(8001), 1, - aux_sym__immediate_decimal_token4, - STATE(3733), 1, - sym_comment, - STATE(4599), 1, - sym__immediate_decimal, - STATE(4616), 1, - sym__var, - ACTIONS(7999), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4954), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(2002), 35, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [56430] = 5, + [56500] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7890), 1, + ACTIONS(7524), 1, aux_sym__immediate_decimal_token2, - STATE(3734), 1, + STATE(3312), 1, sym_comment, - ACTIONS(2437), 14, + ACTIONS(2356), 14, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -396891,7 +356376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0x, aux_sym_unquoted_token2, aux_sym__unquoted_in_list_token1, - ACTIONS(2439), 32, + ACTIONS(2358), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -396924,22 +356409,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [56490] = 7, + [56560] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7987), 1, - anon_sym_DOT, - STATE(3730), 1, - sym_path, - STATE(3735), 1, + ACTIONS(7403), 1, + aux_sym__immediate_decimal_token2, + STATE(3313), 1, sym_comment, - STATE(4014), 1, - sym_cell_path, - ACTIONS(995), 12, + ACTIONS(2229), 14, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -396947,8 +356429,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, + aux_sym_unquoted_token2, aux_sym__unquoted_in_list_token1, - ACTIONS(997), 32, + ACTIONS(2231), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -396981,31 +356464,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [56554] = 6, + [56620] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8003), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8005), 1, - aux_sym__immediate_decimal_token2, - STATE(3736), 1, + ACTIONS(922), 1, + anon_sym_LF, + ACTIONS(7457), 1, + aux_sym_unquoted_token4, + ACTIONS(7481), 1, + anon_sym_DOLLAR, + ACTIONS(7483), 1, + anon_sym_LPAREN2, + ACTIONS(7497), 1, + anon_sym_DOT, + ACTIONS(7501), 1, + aux_sym__immediate_decimal_token4, + STATE(3314), 1, sym_comment, - ACTIONS(2439), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(2437), 42, + STATE(4162), 1, + sym__var, + STATE(4184), 1, + sym__immediate_decimal, + ACTIONS(7499), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4795), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(920), 35, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT_DOT2, + anon_sym_not, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -397028,25 +356525,18 @@ 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, - aux_sym__unquoted_in_list_token1, - [56616] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [56696] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(3737), 1, + STATE(3315), 1, sym_comment, - ACTIONS(2439), 3, + ACTIONS(2364), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(2437), 44, + ACTIONS(2362), 44, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -397091,36 +356581,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, aux_sym_unquoted_token2, aux_sym__unquoted_in_list_token1, - [56674] = 4, - ACTIONS(113), 1, + [56754] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3738), 1, + ACTIONS(7526), 1, + aux_sym__immediate_decimal_token2, + STATE(3316), 1, sym_comment, - ACTIONS(2549), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(2547), 44, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(2362), 14, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DOT_DOT2, anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + aux_sym__unquoted_in_list_token1, + ACTIONS(2364), 32, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -397128,9 +356624,6 @@ 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, @@ -397143,47 +356636,28 @@ 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, - aux_sym__unquoted_in_list_token1, - [56732] = 13, + [56814] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(938), 1, - anon_sym_LF, - ACTIONS(7918), 1, - aux_sym_unquoted_token4, - ACTIONS(7993), 1, - anon_sym_DOLLAR, - ACTIONS(7995), 1, - anon_sym_LPAREN2, - ACTIONS(7997), 1, - anon_sym_DOT, - ACTIONS(8001), 1, - aux_sym__immediate_decimal_token4, - STATE(3739), 1, + STATE(3317), 1, sym_comment, - STATE(4616), 1, - sym__var, - STATE(4651), 1, - sym__immediate_decimal, - ACTIONS(7999), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5167), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(936), 35, - anon_sym_SEMI, + ACTIONS(2404), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(2402), 44, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_not, + anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -397206,36 +356680,44 @@ 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, - [56808] = 13, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_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, + aux_sym__unquoted_in_list_token1, + [56872] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(938), 1, + ACTIONS(1840), 1, anon_sym_LF, - ACTIONS(3982), 1, - aux_sym_unquoted_token4, - ACTIONS(7993), 1, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(7481), 1, anon_sym_DOLLAR, - ACTIONS(7995), 1, + ACTIONS(7483), 1, anon_sym_LPAREN2, - ACTIONS(8007), 1, + ACTIONS(7485), 1, anon_sym_DOT, - ACTIONS(8011), 1, + ACTIONS(7489), 1, aux_sym__immediate_decimal_token4, - STATE(3740), 1, + STATE(3318), 1, sym_comment, - STATE(4616), 1, + STATE(4162), 1, sym__var, - STATE(4702), 1, + STATE(4332), 1, sym__immediate_decimal, - ACTIONS(8009), 2, + ACTIONS(7487), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(5167), 2, + STATE(4621), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(936), 35, + ACTIONS(1838), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -397271,22 +356753,17 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [56884] = 7, + [56948] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7987), 1, - anon_sym_DOT, - STATE(3730), 1, - sym_path, - STATE(3741), 1, + STATE(3319), 1, sym_comment, - STATE(3914), 1, - sym_cell_path, - ACTIONS(1010), 12, + ACTIONS(2362), 14, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -397295,7 +356772,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1012), 32, + aux_sym__unquoted_in_list_token2, + ACTIONS(2364), 33, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -397303,6 +356781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_null, @@ -397328,147 +356807,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [56948] = 5, + [57006] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8013), 1, + ACTIONS(7524), 1, aux_sym__immediate_decimal_token2, - STATE(3742), 1, - sym_comment, - ACTIONS(2547), 14, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT_DOT2, + ACTIONS(7528), 1, anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - aux_sym__unquoted_in_list_token1, - ACTIONS(2549), 32, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__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, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [57008] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(3743), 1, + STATE(3320), 1, sym_comment, - ACTIONS(3507), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(3505), 44, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(2356), 13, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DOT_DOT2, - anon_sym_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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, aux_sym_unquoted_token2, aux_sym__unquoted_in_list_token1, - [57066] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(8015), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8017), 1, - aux_sym__immediate_decimal_token2, - STATE(3744), 1, - sym_comment, - ACTIONS(2439), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(2437), 43, + ACTIONS(2358), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -397476,9 +356851,6 @@ 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, @@ -397491,39 +356863,37 @@ 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, - [57128] = 14, + [57068] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3451), 1, + ACTIONS(2410), 1, anon_sym_DOLLAR, - ACTIONS(8019), 1, + ACTIONS(3966), 1, + aux_sym_unquoted_token3, + ACTIONS(7531), 1, anon_sym_LPAREN2, - ACTIONS(8021), 1, + ACTIONS(7533), 1, anon_sym_DOT, - ACTIONS(8025), 1, + ACTIONS(7537), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8027), 1, - aux_sym_unquoted_token3, - ACTIONS(8029), 1, + ACTIONS(7539), 1, aux_sym_unquoted_token5, - STATE(3745), 1, + STATE(3321), 1, sym_comment, - STATE(4164), 1, - sym__immediate_decimal, - STATE(4301), 1, + STATE(3822), 1, sym__var, - ACTIONS(938), 2, + STATE(4018), 1, + sym__immediate_decimal, + ACTIONS(922), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8023), 2, + ACTIONS(7535), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4684), 2, + STATE(4394), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(936), 33, + ACTIONS(920), 33, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -397557,12 +356927,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [57206] = 4, + [57146] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3746), 1, + STATE(3322), 1, sym_comment, - ACTIONS(3505), 14, + ACTIONS(2402), 14, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -397577,7 +356947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0x, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - ACTIONS(3507), 33, + ACTIONS(2404), 33, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -397611,34 +356981,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [57264] = 13, + [57204] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1922), 1, + ACTIONS(1884), 1, anon_sym_LF, - ACTIONS(1934), 1, + ACTIONS(1886), 1, aux_sym_unquoted_token2, - ACTIONS(3063), 1, + ACTIONS(7481), 1, anon_sym_DOLLAR, - ACTIONS(7900), 1, + ACTIONS(7483), 1, anon_sym_LPAREN2, - ACTIONS(7906), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8031), 1, + ACTIONS(7497), 1, anon_sym_DOT, - STATE(3747), 1, + ACTIONS(7501), 1, + aux_sym__immediate_decimal_token4, + STATE(3323), 1, sym_comment, - STATE(4098), 1, + STATE(4162), 1, sym__var, - STATE(4272), 1, + STATE(4241), 1, sym__immediate_decimal, - ACTIONS(7904), 2, + ACTIONS(7499), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4558), 2, + STATE(4783), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1920), 35, + ACTIONS(1882), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -397674,20 +357044,18 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [57340] = 6, + [57280] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8033), 1, - anon_sym_DOT, - ACTIONS(8035), 1, - aux_sym__immediate_decimal_token2, - STATE(3748), 1, + ACTIONS(7541), 1, + anon_sym_QMARK2, + STATE(3324), 1, sym_comment, - ACTIONS(2583), 3, + ACTIONS(1026), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(2581), 42, + ACTIONS(1024), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -397699,6 +357067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -397730,85 +357099,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [57402] = 13, - ACTIONS(113), 1, + [57340] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1922), 1, - anon_sym_LF, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(7993), 1, - anon_sym_DOLLAR, - ACTIONS(7995), 1, + ACTIONS(3316), 1, anon_sym_LPAREN2, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8011), 1, - aux_sym__immediate_decimal_token4, - STATE(3749), 1, + ACTIONS(7543), 1, + anon_sym_DOT_DOT2, + STATE(3325), 1, sym_comment, - STATE(4616), 1, - sym__var, - STATE(4721), 1, - sym__immediate_decimal, - ACTIONS(8009), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5013), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1920), 35, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [57478] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7987), 1, + ACTIONS(1844), 2, anon_sym_DOT, - STATE(3723), 1, - aux_sym_cell_path_repeat1, - STATE(3750), 1, - sym_comment, - STATE(3848), 1, - sym_path, - ACTIONS(1006), 12, + aux_sym_unquoted_token2, + ACTIONS(7545), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3312), 12, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -397817,16 +357127,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1008), 32, + ACTIONS(3314), 29, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -397850,41 +357157,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [57542] = 4, - ACTIONS(3), 1, + [57406] = 5, + ACTIONS(113), 1, anon_sym_POUND, - STATE(3751), 1, + ACTIONS(7541), 1, + anon_sym_QMARK2, + STATE(3326), 1, sym_comment, - ACTIONS(3505), 15, + ACTIONS(1026), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1024), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DOT_DOT2, anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - aux_sym__unquoted_in_list_token1, - ACTIONS(3507), 32, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_LPAREN2, - 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -397892,6 +357196,9 @@ 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, @@ -397904,43 +357211,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [57600] = 13, + aux_sym__unquoted_in_list_token1, + [57466] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1922), 1, - anon_sym_LF, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(7993), 1, + ACTIONS(2410), 1, anon_sym_DOLLAR, - ACTIONS(7995), 1, + ACTIONS(7531), 1, anon_sym_LPAREN2, - ACTIONS(7997), 1, + ACTIONS(7547), 1, anon_sym_DOT, - ACTIONS(8001), 1, + ACTIONS(7551), 1, aux_sym__immediate_decimal_token4, - STATE(3752), 1, + ACTIONS(7553), 1, + aux_sym_unquoted_token3, + ACTIONS(7555), 1, + aux_sym_unquoted_token5, + STATE(3327), 1, sym_comment, - STATE(4513), 1, + STATE(3758), 1, sym__immediate_decimal, - STATE(4616), 1, + STATE(3822), 1, sym__var, - ACTIONS(7999), 2, + ACTIONS(922), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(7549), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(5013), 2, + STATE(4394), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1920), 35, + ACTIONS(920), 33, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, anon_sym_DOT_DOT_EQ, @@ -397967,53 +357276,45 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [57676] = 13, - ACTIONS(113), 1, + [57544] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2004), 1, - anon_sym_LF, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - ACTIONS(7993), 1, - anon_sym_DOLLAR, - ACTIONS(7995), 1, + ACTIONS(3358), 1, anon_sym_LPAREN2, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8011), 1, - aux_sym__immediate_decimal_token4, - STATE(3753), 1, + ACTIONS(7557), 1, + anon_sym_DOT_DOT2, + STATE(3328), 1, sym_comment, - STATE(4616), 1, - sym__var, - STATE(4738), 1, - sym__immediate_decimal, - ACTIONS(8009), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4954), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(2002), 35, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(3362), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(7559), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3354), 12, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_not, + anon_sym_PLUS, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(3356), 29, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -398021,26 +357322,34 @@ 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, - [57752] = 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, + [57610] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(3754), 1, + ACTIONS(7471), 1, + anon_sym_DOT, + STATE(3310), 1, + aux_sym_cell_path_repeat1, + STATE(3329), 1, sym_comment, - ACTIONS(2547), 14, + STATE(3412), 1, + sym_path, + ACTIONS(1010), 12, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -398049,8 +357358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2549), 33, + ACTIONS(1012), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -398058,7 +357366,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_null, @@ -398084,54 +357391,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [57810] = 14, - ACTIONS(113), 1, + [57674] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3451), 1, - anon_sym_DOLLAR, - ACTIONS(4095), 1, - aux_sym_unquoted_token3, - ACTIONS(8019), 1, - anon_sym_LPAREN2, - ACTIONS(8037), 1, - anon_sym_DOT, - ACTIONS(8041), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8043), 1, - aux_sym_unquoted_token5, - STATE(3755), 1, - sym_comment, - STATE(4301), 1, - sym__var, - STATE(4360), 1, - sym__immediate_decimal, - ACTIONS(938), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8039), 2, + ACTIONS(7561), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4684), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(936), 33, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(7563), 1, + aux_sym__immediate_decimal_token2, + STATE(3330), 1, + sym_comment, + ACTIONS(2229), 12, anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_not, + anon_sym_PLUS, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + aux_sym__unquoted_in_list_token1, + ACTIONS(2231), 32, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DOLLAR, + 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_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -398139,28 +357434,35 @@ 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, - [57888] = 5, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + [57735] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7969), 1, - aux_sym__immediate_decimal_token2, - STATE(3756), 1, + ACTIONS(7565), 1, + anon_sym_DOT_DOT2, + STATE(3331), 1, sym_comment, - ACTIONS(2581), 14, + ACTIONS(1844), 2, + anon_sym_DOT, + aux_sym__unquoted_in_list_token2, + ACTIONS(7567), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3312), 11, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -398168,9 +357470,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token2, aux_sym__unquoted_in_list_token1, - ACTIONS(2583), 32, + ACTIONS(3314), 30, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -398178,8 +357479,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -398203,17 +357502,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [57948] = 5, + [57798] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8045), 1, + ACTIONS(7507), 1, aux_sym__immediate_decimal_token2, - STATE(3757), 1, + STATE(3332), 1, sym_comment, - ACTIONS(2583), 2, - anon_sym_LPAREN2, + ACTIONS(2358), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(2581), 43, + ACTIONS(2356), 42, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -398224,7 +357524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -398256,44 +357556,29 @@ 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, - [58007] = 12, + [57857] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_LF, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - ACTIONS(7918), 1, - aux_sym_unquoted_token5, - ACTIONS(8047), 1, - anon_sym_DOT_DOT2, - ACTIONS(8049), 1, - anon_sym_DOT, - ACTIONS(8053), 1, - sym_filesize_unit, - ACTIONS(8055), 1, - sym_duration_unit, - STATE(3758), 1, + ACTIONS(7475), 1, + aux_sym__immediate_decimal_token2, + STATE(3333), 1, sym_comment, - STATE(10697), 1, - sym__expr_parenthesized_immediate, - ACTIONS(8051), 2, + ACTIONS(2231), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(959), 36, - anon_sym_SEMI, + sym__entry_separator, + ACTIONS(2229), 42, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_not, + anon_sym_PLUS, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -398316,37 +357601,37 @@ 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, - [58080] = 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, + aux_sym__unquoted_in_list_token1, + [57916] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8057), 1, - anon_sym_DOT, - ACTIONS(8060), 1, + ACTIONS(7569), 1, aux_sym__immediate_decimal_token2, - STATE(3759), 1, + STATE(3334), 1, sym_comment, - ACTIONS(925), 6, - anon_sym_LF, - anon_sym_LPAREN2, + ACTIONS(2364), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(923), 38, - anon_sym_SEMI, + sym__entry_separator, + ACTIONS(2362), 42, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_not, + anon_sym_PLUS, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -398370,46 +357655,60 @@ 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, - aux_sym_unquoted_token5, - [58141] = 7, - 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, + aux_sym__unquoted_in_list_token1, + [57975] = 12, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8062), 1, + ACTIONS(2209), 1, + anon_sym_LF, + ACTIONS(7481), 1, + anon_sym_DOLLAR, + ACTIONS(7483), 1, + anon_sym_LPAREN2, + ACTIONS(7571), 1, anon_sym_DOT, - STATE(3760), 1, + ACTIONS(7575), 1, + aux_sym__immediate_decimal_token4, + STATE(3335), 1, sym_comment, - STATE(3780), 1, - aux_sym_cell_path_repeat1, - STATE(3966), 1, - sym_path, - ACTIONS(987), 12, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(989), 31, + STATE(4162), 1, + sym__var, + STATE(4739), 1, + sym__immediate_decimal, + ACTIONS(7573), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4730), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(2207), 35, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -398417,54 +357716,50 @@ 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, - [58204] = 13, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [58048] = 12, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(8064), 1, + ACTIONS(2138), 1, + anon_sym_LF, + ACTIONS(7481), 1, anon_sym_DOLLAR, - ACTIONS(8066), 1, + ACTIONS(7483), 1, anon_sym_LPAREN2, - ACTIONS(8068), 1, + ACTIONS(7571), 1, anon_sym_DOT, - ACTIONS(8072), 1, + ACTIONS(7575), 1, aux_sym__immediate_decimal_token4, - STATE(3761), 1, + STATE(3336), 1, sym_comment, - STATE(4715), 1, + STATE(4162), 1, sym__var, - STATE(4798), 1, + STATE(4743), 1, sym__immediate_decimal, - ACTIONS(1922), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8070), 2, + ACTIONS(7573), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(5392), 2, + STATE(4741), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1920), 33, + ACTIONS(2136), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, anon_sym_DOT_DOT_EQ, @@ -398491,17 +357786,23 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [58279] = 4, + [58121] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(3762), 1, + ACTIONS(7577), 1, + anon_sym_DOT_DOT2, + STATE(3337), 1, sym_comment, - ACTIONS(3505), 14, + ACTIONS(3362), 2, + anon_sym_DOT, + aux_sym__unquoted_in_list_token2, + ACTIONS(7579), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3354), 11, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -398509,9 +357810,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token2, aux_sym__unquoted_in_list_token1, - ACTIONS(3507), 32, + ACTIONS(3356), 30, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -398519,8 +357819,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -398544,17 +357842,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [58336] = 5, + [58184] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8074), 1, + ACTIONS(7581), 1, + anon_sym_DOT, + ACTIONS(7584), 1, aux_sym__immediate_decimal_token2, - STATE(3763), 1, + STATE(3338), 1, sym_comment, - ACTIONS(2583), 2, + ACTIONS(2358), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(2581), 43, + ACTIONS(2356), 42, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -398565,7 +357865,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -398596,37 +357895,153 @@ 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, aux_sym__unquoted_in_list_token1, - [58395] = 13, + aux_sym__unquoted_in_list_token2, + [58245] = 12, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - ACTIONS(8064), 1, + ACTIONS(2148), 1, + anon_sym_LF, + ACTIONS(7481), 1, anon_sym_DOLLAR, - ACTIONS(8066), 1, + ACTIONS(7483), 1, anon_sym_LPAREN2, - ACTIONS(8076), 1, + ACTIONS(7571), 1, anon_sym_DOT, - ACTIONS(8080), 1, + ACTIONS(7575), 1, aux_sym__immediate_decimal_token4, - STATE(3764), 1, + STATE(3339), 1, sym_comment, - STATE(4715), 1, + STATE(4162), 1, sym__var, - STATE(4821), 1, + STATE(4766), 1, + sym__immediate_decimal, + ACTIONS(7573), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4763), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(2146), 35, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [58318] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7586), 1, + anon_sym_DOT, + ACTIONS(7588), 1, + aux_sym__immediate_decimal_token2, + STATE(3340), 1, + sym_comment, + ACTIONS(2356), 12, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2358), 32, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__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, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + [58379] = 13, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(7590), 1, + anon_sym_DOLLAR, + ACTIONS(7592), 1, + anon_sym_LPAREN2, + ACTIONS(7594), 1, + anon_sym_DOT, + ACTIONS(7598), 1, + aux_sym__immediate_decimal_token4, + STATE(3341), 1, + sym_comment, + STATE(4263), 1, sym__immediate_decimal, - ACTIONS(2004), 2, + STATE(4298), 1, + sym__var, + ACTIONS(1884), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8078), 2, + ACTIONS(7596), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(5233), 2, + STATE(4972), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2002), 33, + ACTIONS(1882), 33, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -398660,23 +358075,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [58470] = 7, + [58454] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8082), 1, + ACTIONS(7600), 1, anon_sym_DOT, - STATE(3765), 1, + STATE(3342), 1, sym_comment, - STATE(3808), 1, + STATE(3347), 1, + aux_sym_cell_path_repeat1, + STATE(3544), 1, sym_path, - STATE(4135), 1, - sym_cell_path, ACTIONS(1012), 3, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1010), 40, anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -398686,11 +358106,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_RBRACE, anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -398716,21 +358131,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - [58533] = 5, + [58517] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7991), 1, + ACTIONS(7602), 1, + anon_sym_DOT, + ACTIONS(7605), 1, aux_sym__immediate_decimal_token2, - STATE(3766), 1, + STATE(3343), 1, sym_comment, - ACTIONS(911), 6, + ACTIONS(913), 6, anon_sym_LF, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(909), 39, + ACTIONS(911), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -398744,7 +358161,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_not, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -398770,41 +358186,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, aux_sym_unquoted_token5, - [58592] = 5, - ACTIONS(3), 1, + [58578] = 7, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8084), 1, - anon_sym_QMARK2, - STATE(3767), 1, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3576), 1, + sym__entry_separator, + ACTIONS(7607), 1, + aux_sym__immediate_decimal_token1, + STATE(3344), 1, sym_comment, - ACTIONS(1070), 13, + ACTIONS(3362), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(3574), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_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, anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, aux_sym__unquoted_in_list_token1, - ACTIONS(1072), 32, + [58641] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3576), 1, + sym__entry_separator, + ACTIONS(7609), 1, + aux_sym__immediate_decimal_token1, + STATE(3345), 1, + sym_comment, + ACTIONS(3362), 2, + anon_sym_DOT, + aux_sym__unquoted_in_list_token2, + ACTIONS(3574), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_PLUS, + 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -398812,6 +358282,9 @@ 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, @@ -398824,20 +358297,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [58651] = 7, + aux_sym__unquoted_in_list_token1, + [58704] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8086), 1, + ACTIONS(7611), 1, anon_sym_DOT_DOT2, - STATE(3768), 1, + STATE(3346), 1, sym_comment, - ACTIONS(2851), 2, + ACTIONS(1844), 2, anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(8088), 2, + aux_sym_unquoted_token2, + ACTIONS(7613), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2843), 11, + ACTIONS(3312), 11, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -398849,7 +358323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2845), 30, + ACTIONS(3314), 30, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -398880,21 +358354,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [58714] = 5, + [58767] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8005), 1, - aux_sym__immediate_decimal_token2, - STATE(3769), 1, + ACTIONS(7600), 1, + anon_sym_DOT, + STATE(3347), 1, + sym_comment, + STATE(3348), 1, + aux_sym_cell_path_repeat1, + STATE(3544), 1, + sym_path, + ACTIONS(1008), 3, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1006), 40, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + [58830] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(7615), 1, + anon_sym_DOT, + STATE(3544), 1, + sym_path, + STATE(3348), 2, sym_comment, - ACTIONS(2439), 3, + aux_sym_cell_path_repeat1, + ACTIONS(987), 3, + anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(985), 40, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + [58891] = 9, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1085), 1, + anon_sym_SEMI, + ACTIONS(1087), 1, sym__entry_separator, - ACTIONS(2437), 42, + ACTIONS(7620), 1, + anon_sym_RBRACK, + ACTIONS(7623), 1, + anon_sym_DOT, + STATE(3349), 1, + sym_comment, + STATE(5144), 1, + sym_path, + STATE(5868), 1, + sym_cell_path, + ACTIONS(7618), 40, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, @@ -398902,7 +358492,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -398934,43 +358523,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [58773] = 7, - ACTIONS(3), 1, + [58958] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8090), 1, - anon_sym_DOT_DOT2, - STATE(3770), 1, + ACTIONS(7605), 1, + aux_sym__immediate_decimal_token2, + STATE(3350), 1, sym_comment, - ACTIONS(2851), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(8092), 2, + ACTIONS(913), 6, + anon_sym_LF, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2843), 11, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2845), 30, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(911), 39, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + anon_sym_DOT_DOT2, + anon_sym_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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -398978,40 +358567,53 @@ 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, - [58836] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + aux_sym_unquoted_token5, + [59017] = 12, ACTIONS(113), 1, anon_sym_POUND, - STATE(3771), 1, + ACTIONS(940), 1, + anon_sym_LF, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + ACTIONS(7457), 1, + aux_sym_unquoted_token5, + ACTIONS(7625), 1, + anon_sym_DOT_DOT2, + ACTIONS(7627), 1, + anon_sym_DOT, + ACTIONS(7631), 1, + sym_filesize_unit, + ACTIONS(7633), 1, + sym_duration_unit, + STATE(3351), 1, sym_comment, - ACTIONS(1111), 3, + STATE(10027), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7629), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1109), 43, + ACTIONS(938), 36, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, + anon_sym_not, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -399034,6 +358636,53 @@ 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, + [59090] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3352), 1, + sym_comment, + ACTIONS(1033), 13, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1035), 33, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_QMARK2, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__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, anon_sym_out_GT, anon_sym_e_GT, @@ -399042,44 +358691,35 @@ 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, - [58893] = 12, + [59147] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2389), 1, + ACTIONS(7511), 1, + aux_sym__immediate_decimal_token2, + STATE(3353), 1, + sym_comment, + ACTIONS(895), 6, anon_sym_LF, - ACTIONS(3063), 1, - anon_sym_DOLLAR, - ACTIONS(7900), 1, anon_sym_LPAREN2, - ACTIONS(8094), 1, - anon_sym_DOT, - ACTIONS(8098), 1, - aux_sym__immediate_decimal_token4, - STATE(3772), 1, - sym_comment, - STATE(4098), 1, - sym__var, - STATE(4540), 1, - sym__immediate_decimal, - ACTIONS(8096), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4537), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(2387), 35, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(893), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -399104,41 +358744,44 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [58966] = 5, - ACTIONS(3), 1, + aux_sym_unquoted_token5, + [59206] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8084), 1, - anon_sym_QMARK2, - STATE(3773), 1, + ACTIONS(7635), 1, + aux_sym__immediate_decimal_token2, + STATE(3354), 1, sym_comment, - ACTIONS(1070), 13, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1072), 32, + ACTIONS(903), 6, + anon_sym_LF, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(901), 39, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + anon_sym_DOT_DOT2, + anon_sym_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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -399146,54 +358789,46 @@ 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, - [59025] = 6, - ACTIONS(3), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + aux_sym_unquoted_token5, + [59265] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8100), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8102), 1, + ACTIONS(7637), 1, aux_sym__immediate_decimal_token2, - STATE(3774), 1, + STATE(3355), 1, sym_comment, - ACTIONS(2437), 12, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - aux_sym__unquoted_in_list_token1, - ACTIONS(2439), 32, + ACTIONS(2358), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(2356), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_LPAREN2, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -399201,6 +358836,9 @@ 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, @@ -399213,26 +358851,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [59086] = 9, + aux_sym_unquoted_token2, + aux_sym__unquoted_in_list_token1, + [59324] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1154), 1, - anon_sym_SEMI, - ACTIONS(1156), 1, - sym__entry_separator, - ACTIONS(8106), 1, - anon_sym_RBRACK, - ACTIONS(8109), 1, - anon_sym_DOT, - STATE(3775), 1, + ACTIONS(7519), 1, + aux_sym__immediate_decimal_token2, + STATE(3356), 1, sym_comment, - STATE(5501), 1, - sym_path, - STATE(6388), 1, - sym_cell_path, - ACTIONS(8104), 40, + ACTIONS(2231), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(2229), 43, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, @@ -399240,6 +358874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -399270,42 +358905,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_token2, aux_sym__unquoted_in_list_token1, - [59153] = 12, + [59383] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2389), 1, - anon_sym_LF, - ACTIONS(7993), 1, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(7590), 1, anon_sym_DOLLAR, - ACTIONS(7995), 1, + ACTIONS(7592), 1, anon_sym_LPAREN2, - ACTIONS(8111), 1, + ACTIONS(7639), 1, anon_sym_DOT, - ACTIONS(8115), 1, + ACTIONS(7643), 1, aux_sym__immediate_decimal_token4, - STATE(3776), 1, + STATE(3357), 1, sym_comment, - STATE(4616), 1, + STATE(4298), 1, sym__var, - STATE(4978), 1, + STATE(4430), 1, sym__immediate_decimal, - ACTIONS(8113), 2, + ACTIONS(1884), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(7641), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(5213), 2, + STATE(4972), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2387), 35, + ACTIONS(1882), 33, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, anon_sym_DOT_DOT_EQ, @@ -399332,44 +358969,36 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [59226] = 13, + [59458] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - ACTIONS(8064), 1, - anon_sym_DOLLAR, - ACTIONS(8066), 1, - anon_sym_LPAREN2, - ACTIONS(8068), 1, - anon_sym_DOT, - ACTIONS(8072), 1, - aux_sym__immediate_decimal_token4, - STATE(3777), 1, + ACTIONS(7645), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7647), 1, + aux_sym__immediate_decimal_token2, + STATE(3358), 1, sym_comment, - STATE(4715), 1, - sym__var, - STATE(4756), 1, - sym__immediate_decimal, - ACTIONS(2004), 2, + ACTIONS(895), 7, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8070), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5233), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(2002), 33, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(893), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_not, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -399394,51 +359023,42 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [59301] = 12, - ACTIONS(113), 1, + aux_sym_unquoted_token5, + [59519] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2351), 1, - anon_sym_LF, - ACTIONS(7993), 1, - anon_sym_DOLLAR, - ACTIONS(7995), 1, - anon_sym_LPAREN2, - ACTIONS(8111), 1, - anon_sym_DOT, - ACTIONS(8115), 1, - aux_sym__immediate_decimal_token4, - STATE(3778), 1, + ACTIONS(7649), 1, + anon_sym_QMARK2, + STATE(3359), 1, sym_comment, - STATE(4616), 1, - sym__var, - STATE(5181), 1, - sym__immediate_decimal, - ACTIONS(8113), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5178), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(2349), 35, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, + ACTIONS(1024), 13, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_not, + anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1026), 32, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -399446,52 +359066,53 @@ 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, - [59374] = 5, - ACTIONS(113), 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, + [59578] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8117), 1, - aux_sym__immediate_decimal_token2, - STATE(3779), 1, + ACTIONS(7649), 1, + anon_sym_QMARK2, + STATE(3360), 1, sym_comment, - ACTIONS(919), 6, - anon_sym_LF, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(917), 39, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(1024), 13, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_not, + anon_sym_PLUS, anon_sym_DOT_DOT2, anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1026), 32, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -399499,32 +359120,29 @@ 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, - aux_sym_unquoted_token5, - [59433] = 7, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + [59637] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8062), 1, - anon_sym_DOT, - STATE(3780), 1, + STATE(3361), 1, sym_comment, - STATE(3790), 1, - aux_sym_cell_path_repeat1, - STATE(3966), 1, - sym_path, - ACTIONS(1006), 12, + ACTIONS(2229), 14, anon_sym_DASH, - anon_sym__, anon_sym_DOT_DOT, + anon_sym_PLUS, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -399532,14 +359150,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1008), 31, + aux_sym_unquoted_token2, + aux_sym__unquoted_in_list_token1, + ACTIONS(2231), 32, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_null, @@ -399565,35 +359185,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [59496] = 13, + [59694] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1934), 1, + ACTIONS(1844), 1, aux_sym_unquoted_token2, - ACTIONS(3451), 1, + ACTIONS(2410), 1, anon_sym_DOLLAR, - ACTIONS(8019), 1, + ACTIONS(7531), 1, anon_sym_LPAREN2, - ACTIONS(8041), 1, + ACTIONS(7537), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8119), 1, + ACTIONS(7651), 1, anon_sym_DOT, - STATE(3781), 1, + STATE(3362), 1, sym_comment, - STATE(4301), 1, + STATE(3822), 1, sym__var, - STATE(4350), 1, + STATE(4006), 1, sym__immediate_decimal, - ACTIONS(1922), 2, + ACTIONS(1840), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8039), 2, + ACTIONS(7535), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4774), 2, + STATE(4382), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1920), 33, + ACTIONS(1838), 33, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -399627,52 +359247,40 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [59571] = 13, - ACTIONS(113), 1, + [59769] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(8064), 1, - anon_sym_DOLLAR, - ACTIONS(8066), 1, - anon_sym_LPAREN2, - ACTIONS(8076), 1, - anon_sym_DOT, - ACTIONS(8080), 1, - aux_sym__immediate_decimal_token4, - STATE(3782), 1, + STATE(3363), 1, sym_comment, - STATE(4715), 1, - sym__var, - STATE(4850), 1, - sym__immediate_decimal, - ACTIONS(1922), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8078), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5392), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1920), 33, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, + ACTIONS(2362), 14, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_not, + anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + aux_sym__unquoted_in_list_token1, + ACTIONS(2364), 32, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -399680,31 +359288,29 @@ 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, - [59646] = 7, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + [59826] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8062), 1, - anon_sym_DOT, - STATE(3760), 1, - sym_path, - STATE(3783), 1, + STATE(3364), 1, sym_comment, - STATE(4026), 1, - sym_cell_path, - ACTIONS(1010), 12, + ACTIONS(2402), 14, anon_sym_DASH, - anon_sym__, anon_sym_DOT_DOT, + anon_sym_PLUS, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -399712,14 +359318,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1012), 31, + aux_sym_unquoted_token2, + aux_sym__unquoted_in_list_token1, + ACTIONS(2404), 32, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_null, @@ -399745,23 +359353,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [59709] = 7, + [59883] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8082), 1, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(7590), 1, + anon_sym_DOLLAR, + ACTIONS(7592), 1, + anon_sym_LPAREN2, + ACTIONS(7639), 1, anon_sym_DOT, - STATE(3784), 1, + ACTIONS(7643), 1, + aux_sym__immediate_decimal_token4, + STATE(3365), 1, sym_comment, - STATE(3801), 1, - aux_sym_cell_path_repeat1, - STATE(3910), 1, + STATE(4298), 1, + sym__var, + STATE(4436), 1, + sym__immediate_decimal, + ACTIONS(1840), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(7641), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4953), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1838), 33, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [59958] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(7600), 1, + anon_sym_DOT, + STATE(3342), 1, sym_path, - ACTIONS(1008), 3, + STATE(3366), 1, + sym_comment, + STATE(3727), 1, + sym_cell_path, + ACTIONS(1004), 3, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1006), 40, + ACTIONS(1002), 40, anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -399771,11 +359446,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_RBRACE, anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -399801,91 +359471,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - [59772] = 5, - ACTIONS(113), 1, + [60021] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8121), 1, - aux_sym__immediate_decimal_token2, - STATE(3785), 1, + ACTIONS(7653), 1, + anon_sym_DOT, + STATE(3367), 1, sym_comment, - ACTIONS(2549), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(2547), 43, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + STATE(3368), 1, + sym_path, + STATE(3637), 1, + sym_cell_path, + ACTIONS(1002), 12, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym__, anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_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, anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - aux_sym_unquoted_token2, - aux_sym__unquoted_in_list_token1, - [59831] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(8123), 1, - aux_sym__immediate_decimal_token2, - STATE(3786), 1, - sym_comment, - ACTIONS(2549), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(2547), 42, + aux_sym_unquoted_token1, + ACTIONS(1004), 31, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_RBRACE, + 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -399893,9 +359515,6 @@ 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, @@ -399908,38 +359527,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - [59890] = 6, - ACTIONS(113), 1, + [60084] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8074), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(8125), 1, + ACTIONS(7653), 1, anon_sym_DOT, - STATE(3787), 1, + STATE(3368), 1, sym_comment, - ACTIONS(2583), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(2581), 42, + STATE(3374), 1, + aux_sym_cell_path_repeat1, + STATE(3525), 1, + sym_path, + ACTIONS(1010), 12, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1012), 31, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_RBRACE, + 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -399947,9 +359571,6 @@ 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, @@ -399962,19 +359583,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, - aux_sym__unquoted_in_list_token1, - [59951] = 5, + [60147] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8017), 1, + ACTIONS(2231), 1, + sym__entry_separator, + ACTIONS(7655), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7657), 1, aux_sym__immediate_decimal_token2, - STATE(3788), 1, + STATE(3369), 1, sym_comment, - ACTIONS(2439), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(2437), 43, + ACTIONS(2229), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -400016,34 +359636,34 @@ 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, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [60010] = 12, + [60208] = 12, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2361), 1, + ACTIONS(2171), 1, anon_sym_LF, - ACTIONS(7993), 1, + ACTIONS(2500), 1, anon_sym_DOLLAR, - ACTIONS(7995), 1, + ACTIONS(7441), 1, anon_sym_LPAREN2, - ACTIONS(8111), 1, + ACTIONS(7659), 1, anon_sym_DOT, - ACTIONS(8115), 1, + ACTIONS(7663), 1, aux_sym__immediate_decimal_token4, - STATE(3789), 1, + STATE(3370), 1, sym_comment, - STATE(4616), 1, + STATE(3648), 1, sym__var, - STATE(5203), 1, + STATE(4109), 1, sym__immediate_decimal, - ACTIONS(8113), 2, + ACTIONS(7661), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(5182), 2, + STATE(4253), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2359), 35, + ACTIONS(2169), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -400079,42 +359699,37 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [60083] = 6, - ACTIONS(3), 1, + [60281] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8128), 1, + ACTIONS(7637), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7665), 1, anon_sym_DOT, - STATE(3966), 1, - sym_path, - STATE(3790), 2, + STATE(3371), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(999), 12, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1001), 31, + ACTIONS(2358), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(2356), 42, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_PLUS, + 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -400122,6 +359737,9 @@ 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, @@ -400134,32 +359752,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [60144] = 12, + aux_sym_unquoted_token2, + aux_sym__unquoted_in_list_token1, + [60342] = 12, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2385), 1, + ACTIONS(2171), 1, anon_sym_LF, - ACTIONS(7993), 1, + ACTIONS(7481), 1, anon_sym_DOLLAR, - ACTIONS(7995), 1, + ACTIONS(7483), 1, anon_sym_LPAREN2, - ACTIONS(8111), 1, + ACTIONS(7571), 1, anon_sym_DOT, - ACTIONS(8115), 1, + ACTIONS(7575), 1, aux_sym__immediate_decimal_token4, - STATE(3791), 1, + STATE(3372), 1, sym_comment, - STATE(4616), 1, + STATE(4162), 1, sym__var, - STATE(5212), 1, + STATE(4613), 1, sym__immediate_decimal, - ACTIONS(8113), 2, + ACTIONS(7573), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(5209), 2, + STATE(4612), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2383), 35, + ACTIONS(2169), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -400195,40 +359815,36 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [60217] = 4, - ACTIONS(3), 1, + [60415] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(3792), 1, + STATE(3373), 1, sym_comment, - ACTIONS(2437), 14, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - aux_sym__unquoted_in_list_token1, - ACTIONS(2439), 32, + ACTIONS(1049), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1047), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -400236,6 +359852,9 @@ 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, @@ -400248,17 +359867,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [60274] = 4, + aux_sym__unquoted_in_list_token1, + [60472] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(3793), 1, + ACTIONS(7653), 1, + anon_sym_DOT, + STATE(3374), 1, sym_comment, - ACTIONS(1059), 13, + STATE(3377), 1, + aux_sym_cell_path_repeat1, + STATE(3525), 1, + sym_path, + ACTIONS(1006), 12, anon_sym_DASH, + anon_sym__, anon_sym_DOT_DOT, - anon_sym_PLUS, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -400266,16 +359891,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1061), 33, + aux_sym_unquoted_token1, + ACTIONS(1008), 31, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_QMARK2, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_null, @@ -400301,29 +359924,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [60331] = 6, + [60535] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2439), 1, - sym__entry_separator, - ACTIONS(8131), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8133), 1, - aux_sym__immediate_decimal_token2, - STATE(3794), 1, + ACTIONS(3966), 1, + aux_sym_unquoted_token4, + ACTIONS(7590), 1, + anon_sym_DOLLAR, + ACTIONS(7592), 1, + anon_sym_LPAREN2, + ACTIONS(7639), 1, + anon_sym_DOT, + ACTIONS(7643), 1, + aux_sym__immediate_decimal_token4, + STATE(3375), 1, sym_comment, - ACTIONS(2437), 43, + STATE(4298), 1, + sym__var, + STATE(4476), 1, + sym__immediate_decimal, + ACTIONS(922), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(7641), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4940), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(920), 33, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT, + anon_sym_not, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -400346,45 +359984,37 @@ 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, - aux_sym_unquoted_token2, - aux_sym__unquoted_in_list_token1, - [60392] = 13, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [60610] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8027), 1, - aux_sym_unquoted_token4, - ACTIONS(8064), 1, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(2410), 1, anon_sym_DOLLAR, - ACTIONS(8066), 1, + ACTIONS(7531), 1, anon_sym_LPAREN2, - ACTIONS(8068), 1, - anon_sym_DOT, - ACTIONS(8072), 1, + ACTIONS(7551), 1, aux_sym__immediate_decimal_token4, - STATE(3795), 1, + ACTIONS(7668), 1, + anon_sym_DOT, + STATE(3376), 1, sym_comment, - STATE(4715), 1, - sym__var, - STATE(4740), 1, + STATE(3757), 1, sym__immediate_decimal, - ACTIONS(938), 2, + STATE(3822), 1, + sym__var, + ACTIONS(1840), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8070), 2, + ACTIONS(7549), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(5465), 2, + STATE(4382), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(936), 33, + ACTIONS(1838), 33, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -400418,36 +360048,42 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [60467] = 5, - ACTIONS(113), 1, + [60685] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8135), 1, - aux_sym__immediate_decimal_token2, - STATE(3796), 1, + ACTIONS(7670), 1, + anon_sym_DOT, + STATE(3525), 1, + sym_path, + STATE(3377), 2, sym_comment, - ACTIONS(2549), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(2547), 43, + aux_sym_cell_path_repeat1, + ACTIONS(985), 12, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(987), 31, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_RBRACE, + 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -400455,9 +360091,6 @@ 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, @@ -400470,14 +360103,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, - aux_sym__unquoted_in_list_token2, - [60526] = 4, + [60746] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3797), 1, + STATE(3378), 1, sym_comment, - ACTIONS(2547), 14, + ACTIONS(1020), 13, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -400490,9 +360121,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token2, aux_sym__unquoted_in_list_token1, - ACTIONS(2549), 32, + ACTIONS(1022), 33, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -400500,6 +360130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_null, @@ -400525,19 +360156,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [60583] = 6, + [60803] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8045), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(8137), 1, - anon_sym_DOT, - STATE(3798), 1, + STATE(3379), 1, sym_comment, - ACTIONS(2583), 2, - anon_sym_LPAREN2, + ACTIONS(1039), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(2581), 42, + ACTIONS(1037), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -400548,6 +360176,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -400579,32 +360209,106 @@ 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, - [60644] = 7, + [60860] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2847), 1, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(7590), 1, + anon_sym_DOLLAR, + ACTIONS(7592), 1, anon_sym_LPAREN2, - ACTIONS(3750), 1, - sym__entry_separator, - ACTIONS(8140), 1, - aux_sym__immediate_decimal_token1, - STATE(3799), 1, - sym_comment, - ACTIONS(2851), 2, + ACTIONS(7594), 1, anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(3748), 41, + ACTIONS(7598), 1, + aux_sym__immediate_decimal_token4, + STATE(3380), 1, + sym_comment, + STATE(4277), 1, + sym__immediate_decimal, + STATE(4298), 1, + sym__var, + ACTIONS(1840), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(7596), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4953), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1838), 33, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [60935] = 13, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(7553), 1, + aux_sym_unquoted_token4, + ACTIONS(7590), 1, anon_sym_DOLLAR, + ACTIONS(7592), 1, + anon_sym_LPAREN2, + ACTIONS(7594), 1, + anon_sym_DOT, + ACTIONS(7598), 1, + aux_sym__immediate_decimal_token4, + STATE(3381), 1, + sym_comment, + STATE(4289), 1, + sym__immediate_decimal, + STATE(4298), 1, + sym__var, + ACTIONS(922), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(7596), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4940), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(920), 33, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_PLUS, + anon_sym_not, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -400627,25 +360331,18 @@ 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, - aux_sym__unquoted_in_list_token1, - [60707] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [61010] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(3800), 1, + STATE(3382), 1, sym_comment, - ACTIONS(1119), 3, + ACTIONS(1043), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1117), 43, + ACTIONS(1041), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -400689,99 +360386,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [60764] = 6, - ACTIONS(113), 1, + [61067] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8142), 1, - anon_sym_DOT, - STATE(3910), 1, - sym_path, - STATE(3801), 2, + ACTIONS(7673), 1, + anon_sym_DOT_DOT2, + STATE(3383), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1001), 3, - anon_sym_LF, + ACTIONS(3362), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(7675), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(999), 40, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(3354), 11, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - [60825] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(8145), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8147), 1, - aux_sym__immediate_decimal_token2, - STATE(3802), 1, - sym_comment, - ACTIONS(911), 7, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(909), 37, - anon_sym_SEMI, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(3356), 30, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - anon_sym_DOT_DOT2, - anon_sym_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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -400789,54 +360430,40 @@ 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, - aux_sym_unquoted_token5, - [60886] = 13, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + [61130] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4095), 1, - aux_sym_unquoted_token4, - ACTIONS(8064), 1, - anon_sym_DOLLAR, - ACTIONS(8066), 1, - anon_sym_LPAREN2, - ACTIONS(8076), 1, - anon_sym_DOT, - ACTIONS(8080), 1, - aux_sym__immediate_decimal_token4, - STATE(3803), 1, + ACTIONS(7584), 1, + aux_sym__immediate_decimal_token2, + STATE(3384), 1, sym_comment, - STATE(4715), 1, - sym__var, - STATE(4871), 1, - sym__immediate_decimal, - ACTIONS(938), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8078), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5465), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(936), 33, - anon_sym_SEMI, + ACTIONS(2358), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(2356), 43, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_not, + anon_sym_PLUS, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -400859,46 +360486,38 @@ 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, - [60961] = 13, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_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, + [61189] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(3451), 1, - anon_sym_DOLLAR, - ACTIONS(8019), 1, - anon_sym_LPAREN2, - ACTIONS(8025), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8149), 1, - anon_sym_DOT, - STATE(3804), 1, + ACTIONS(7515), 1, + aux_sym__immediate_decimal_token2, + STATE(3385), 1, sym_comment, - STATE(4174), 1, - sym__immediate_decimal, - STATE(4301), 1, - sym__var, - ACTIONS(1922), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8023), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4774), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1920), 33, - anon_sym_SEMI, + ACTIONS(2231), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(2229), 43, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_not, + anon_sym_PLUS, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -400921,19 +360540,30 @@ 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, - [61036] = 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, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [61248] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3805), 1, + ACTIONS(7677), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7679), 1, + aux_sym__immediate_decimal_token2, + STATE(3386), 1, sym_comment, - ACTIONS(1063), 13, + ACTIONS(2229), 12, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -400942,7 +360572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1065), 33, + ACTIONS(2231), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -400950,7 +360580,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_QMARK2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_null, @@ -400976,43 +360605,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [61093] = 7, - ACTIONS(3), 1, + [61309] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8151), 1, - anon_sym_DOT_DOT2, - STATE(3806), 1, + ACTIONS(7681), 1, + aux_sym__immediate_decimal_token2, + STATE(3387), 1, sym_comment, - ACTIONS(1934), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(8153), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3518), 11, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(3520), 30, + ACTIONS(2364), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(2362), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -401020,6 +360642,9 @@ 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, @@ -401032,21 +360657,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [61156] = 7, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [61368] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2847), 1, + ACTIONS(7683), 1, + aux_sym__immediate_decimal_token2, + STATE(3388), 1, + sym_comment, + ACTIONS(2364), 2, anon_sym_LPAREN2, - ACTIONS(3750), 1, sym__entry_separator, - ACTIONS(8155), 1, - aux_sym__immediate_decimal_token1, - STATE(3807), 1, - sym_comment, - ACTIONS(2851), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(3748), 41, + ACTIONS(2362), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -401057,6 +360680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -401087,77 +360711,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token2, aux_sym__unquoted_in_list_token1, - [61219] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(8082), 1, - anon_sym_DOT, - STATE(3784), 1, - aux_sym_cell_path_repeat1, - STATE(3808), 1, - sym_comment, - STATE(3910), 1, - sym_path, - ACTIONS(989), 3, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(987), 40, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - [61282] = 6, + [61427] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8157), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8159), 1, - aux_sym__immediate_decimal_token2, - STATE(3809), 1, + STATE(3389), 1, sym_comment, - ACTIONS(2437), 12, + ACTIONS(1041), 13, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -401166,7 +360732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2439), 32, + ACTIONS(1043), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -401199,17 +360765,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [61343] = 5, + [61483] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7960), 1, - aux_sym__immediate_decimal_token2, - STATE(3810), 1, + STATE(3390), 1, sym_comment, - ACTIONS(2439), 2, - anon_sym_LPAREN2, + ACTIONS(1063), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(2437), 43, + ACTIONS(1061), 42, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -401220,7 +360785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -401251,25 +360816,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, aux_sym__unquoted_in_list_token1, - [61402] = 7, + [61539] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8161), 1, - anon_sym_DOT_DOT2, - STATE(3811), 1, + STATE(3391), 1, sym_comment, - ACTIONS(1934), 2, + ACTIONS(1033), 13, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(8163), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1035), 32, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(3518), 11, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__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, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + [61595] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3392), 1, + sym_comment, + ACTIONS(1047), 13, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -401278,7 +360888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3520), 30, + ACTIONS(1049), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -401286,6 +360896,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -401309,16 +360921,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [61465] = 4, + [61651] = 7, ACTIONS(113), 1, anon_sym_POUND, - STATE(3812), 1, - sym_comment, - ACTIONS(1115), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(1059), 1, sym__entry_separator, - ACTIONS(1113), 43, + ACTIONS(7685), 1, + anon_sym_DOT, + STATE(3393), 1, + sym_comment, + STATE(3414), 1, + sym_path, + STATE(3751), 1, + sym_cell_path, + ACTIONS(1057), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -401329,8 +360945,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -401362,42 +360976,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [61522] = 6, - ACTIONS(3), 1, + [61713] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8165), 1, - anon_sym_DOT, - ACTIONS(8167), 1, - aux_sym__immediate_decimal_token2, - STATE(3813), 1, + ACTIONS(3646), 1, + sym__entry_separator, + ACTIONS(3648), 1, + anon_sym_LPAREN2, + STATE(3394), 1, sym_comment, - ACTIONS(2581), 12, + ACTIONS(3650), 2, + anon_sym_DOT, + aux_sym__unquoted_in_list_token2, + ACTIONS(3644), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, - 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, anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, aux_sym__unquoted_in_list_token1, - ACTIONS(2583), 32, + [61773] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(3395), 1, + sym_comment, + ACTIONS(2231), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(2229), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -401405,6 +361065,9 @@ 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, @@ -401417,18 +361080,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [61583] = 5, + aux_sym_unquoted_token2, + aux_sym__unquoted_in_list_token1, + [61829] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8035), 1, - aux_sym__immediate_decimal_token2, - STATE(3814), 1, + STATE(3396), 1, sym_comment, - ACTIONS(2583), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(2364), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(2581), 42, + ACTIONS(2362), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -401439,7 +361101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -401470,35 +361132,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_token2, aux_sym__unquoted_in_list_token1, - [61642] = 5, + [61885] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8060), 1, - aux_sym__immediate_decimal_token2, - STATE(3815), 1, + STATE(3397), 1, sym_comment, - ACTIONS(925), 6, - anon_sym_LF, + ACTIONS(2404), 2, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(923), 39, - anon_sym_SEMI, + sym__entry_separator, + ACTIONS(2402), 43, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_not, - anon_sym_DOT_DOT2, + anon_sym_PLUS, anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -401522,38 +361176,43 @@ 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, - aux_sym_unquoted_token5, - [61701] = 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, + aux_sym_unquoted_token2, + aux_sym__unquoted_in_list_token1, + [61941] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8169), 1, - anon_sym_DOT, - ACTIONS(8172), 1, - aux_sym__immediate_decimal_token2, - STATE(3816), 1, + STATE(3398), 1, sym_comment, - ACTIONS(925), 7, - ts_builtin_sym_end, + ACTIONS(895), 6, anon_sym_LF, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(923), 36, + ACTIONS(893), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -401579,37 +361238,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, aux_sym_unquoted_token5, - [61761] = 6, - ACTIONS(113), 1, + [61997] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8174), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8176), 1, - aux_sym__unquoted_in_list_token2, - STATE(3817), 1, + ACTIONS(1087), 1, + anon_sym_SEMI, + ACTIONS(7689), 1, + anon_sym_DOT, + STATE(3399), 1, sym_comment, - ACTIONS(7585), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(7571), 41, + STATE(4994), 1, + sym_cell_path, + STATE(6635), 1, + sym_path, + ACTIONS(7618), 9, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(7687), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -401617,9 +361282,6 @@ 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, @@ -401632,39 +361294,35 @@ 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, - [61821] = 7, + [62061] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2847), 1, - anon_sym_LPAREN2, - ACTIONS(8178), 1, - aux_sym__immediate_decimal_token1, - STATE(3818), 1, + STATE(3400), 1, sym_comment, - ACTIONS(2851), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(3748), 10, - anon_sym_LPAREN, + ACTIONS(1020), 13, anon_sym_DASH, + anon_sym__, anon_sym_DOT_DOT, - anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(3750), 31, + aux_sym_unquoted_token1, + ACTIONS(1022), 32, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -401688,19 +361346,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [61883] = 6, + [62117] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3520), 1, + ACTIONS(3701), 1, sym__entry_separator, - ACTIONS(3522), 1, - anon_sym_LPAREN2, - STATE(3819), 1, + ACTIONS(7691), 1, + anon_sym_DOT_DOT2, + STATE(3401), 1, sym_comment, - ACTIONS(1934), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(3518), 41, + ACTIONS(7693), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3699), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -401742,19 +361400,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, - [61943] = 6, + [62177] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2845), 1, + ACTIONS(3646), 1, sym__entry_separator, - ACTIONS(2847), 1, + ACTIONS(3648), 1, anon_sym_LPAREN2, - STATE(3820), 1, + STATE(3402), 1, sym_comment, - ACTIONS(2851), 2, + ACTIONS(3650), 2, anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(2843), 41, + ACTIONS(3644), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -401796,16 +361454,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [62003] = 4, + [62237] = 7, ACTIONS(113), 1, anon_sym_POUND, - STATE(3821), 1, - sym_comment, - ACTIONS(1174), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(1053), 1, sym__entry_separator, - ACTIONS(1172), 42, + ACTIONS(7685), 1, + anon_sym_DOT, + STATE(3403), 1, + sym_comment, + STATE(3414), 1, + sym_path, + STATE(3791), 1, + sym_cell_path, + ACTIONS(1051), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -401816,7 +361478,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -401848,19 +361509,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [62059] = 6, + [62299] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3876), 1, - sym__entry_separator, - ACTIONS(3878), 1, - anon_sym_LPAREN2, - STATE(3822), 1, + STATE(3404), 1, sym_comment, - ACTIONS(2006), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(3874), 41, + ACTIONS(3723), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(3721), 42, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -401871,6 +361529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -401902,29 +361561,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [62119] = 6, + [62355] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4008), 1, - sym__entry_separator, - ACTIONS(4010), 1, - anon_sym_LPAREN2, - STATE(3823), 1, + STATE(3405), 1, sym_comment, - ACTIONS(4012), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(4006), 41, + ACTIONS(903), 6, + anon_sym_LF, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(901), 39, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_PLUS, + anon_sym_not, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -401947,28 +361610,23 @@ 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, - aux_sym__unquoted_in_list_token1, - [62179] = 6, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + aux_sym_unquoted_token5, + [62411] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3750), 1, + ACTIONS(1103), 1, sym__entry_separator, - ACTIONS(8180), 1, - aux_sym__immediate_decimal_token1, - STATE(3824), 1, - sym_comment, - ACTIONS(2851), 2, + ACTIONS(7685), 1, anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(3748), 41, + STATE(3406), 1, + sym_comment, + STATE(3414), 1, + sym_path, + STATE(3834), 1, + sym_cell_path, + ACTIONS(1101), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -402010,42 +361668,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [62239] = 12, + [62473] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - ACTIONS(8027), 1, - aux_sym_unquoted_token5, - ACTIONS(8182), 1, - anon_sym_DOT_DOT2, - ACTIONS(8184), 1, + ACTIONS(1099), 1, + sym__entry_separator, + ACTIONS(7685), 1, anon_sym_DOT, - ACTIONS(8188), 1, - sym_filesize_unit, - ACTIONS(8190), 1, - sym_duration_unit, - STATE(3825), 1, + STATE(3407), 1, sym_comment, - STATE(10634), 1, - sym__expr_parenthesized_immediate, - ACTIONS(961), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8186), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(959), 34, - anon_sym_SEMI, + STATE(3414), 1, + sym_path, + STATE(3811), 1, + sym_cell_path, + ACTIONS(1097), 41, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_not, + anon_sym_PLUS, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -402068,36 +361714,36 @@ 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, - [62311] = 5, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_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, + [62535] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8172), 1, - aux_sym__immediate_decimal_token2, - STATE(3826), 1, + STATE(3408), 1, sym_comment, - ACTIONS(925), 7, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_LPAREN2, + ACTIONS(1070), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(923), 37, - anon_sym_SEMI, + sym__entry_separator, + ACTIONS(1068), 42, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_not, + anon_sym_PLUS, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -402120,37 +361766,39 @@ 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, - aux_sym_unquoted_token5, - [62369] = 5, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_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, + [62591] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8147), 1, - aux_sym__immediate_decimal_token2, - STATE(3827), 1, + ACTIONS(1095), 1, + sym__entry_separator, + ACTIONS(7685), 1, + anon_sym_DOT, + STATE(3409), 1, sym_comment, - ACTIONS(911), 7, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(909), 37, - anon_sym_SEMI, + STATE(3414), 1, + sym_path, + STATE(3784), 1, + sym_cell_path, + ACTIONS(1093), 41, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_not, - anon_sym_DOT_DOT2, - anon_sym_DOT, + anon_sym_PLUS, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -402173,37 +361821,51 @@ 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, - aux_sym_unquoted_token5, - [62427] = 5, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_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, + [62653] = 12, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8192), 1, - aux_sym__immediate_decimal_token2, - STATE(3828), 1, + ACTIONS(7590), 1, + anon_sym_DOLLAR, + ACTIONS(7592), 1, + anon_sym_LPAREN2, + ACTIONS(7695), 1, + anon_sym_DOT, + ACTIONS(7699), 1, + aux_sym__immediate_decimal_token4, + STATE(3410), 1, sym_comment, - ACTIONS(919), 7, + STATE(4298), 1, + sym__var, + STATE(4967), 1, + sym__immediate_decimal, + ACTIONS(2209), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(917), 37, + ACTIONS(7697), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4966), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(2207), 33, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_not, - anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -402228,36 +361890,92 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - aux_sym_unquoted_token5, - [62485] = 4, - ACTIONS(113), 1, + [62725] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3829), 1, + ACTIONS(7679), 1, + aux_sym__immediate_decimal_token2, + STATE(3411), 1, sym_comment, - ACTIONS(1170), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1168), 42, + ACTIONS(2229), 12, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2231), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__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, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + [62783] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3412), 1, + sym_comment, + ACTIONS(1037), 13, + anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1039), 32, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -402265,9 +361983,6 @@ 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, @@ -402280,21 +361995,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - [62541] = 7, + [62839] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1156), 1, - sym__entry_separator, - ACTIONS(8194), 1, - anon_sym_DOT, - STATE(3830), 1, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + ACTIONS(3727), 1, + anon_sym_LPAREN2, + ACTIONS(7701), 1, + aux_sym_command_token1, + STATE(3413), 1, sym_comment, - STATE(3864), 1, - sym_path, - STATE(4223), 1, - sym_cell_path, - ACTIONS(1154), 41, + ACTIONS(3725), 42, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -402327,6 +362039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + sym__entry_separator, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -402336,19 +362049,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [62603] = 6, + [62899] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1160), 1, + ACTIONS(1012), 1, sym__entry_separator, - ACTIONS(3841), 1, - anon_sym_DOT_DOT2, - STATE(3831), 1, + ACTIONS(7685), 1, + anon_sym_DOT, + STATE(3414), 1, sym_comment, - ACTIONS(3843), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1158), 41, + STATE(3423), 1, + aux_sym_cell_path_repeat1, + STATE(3685), 1, + sym_path, + ACTIONS(1010), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -402390,30 +362104,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [62663] = 7, + [62961] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1192), 1, - sym__entry_separator, - ACTIONS(8194), 1, - anon_sym_DOT, - STATE(3832), 1, + STATE(3415), 1, sym_comment, - STATE(3864), 1, - sym_path, - STATE(4229), 1, - sym_cell_path, - ACTIONS(1190), 41, + ACTIONS(936), 6, + anon_sym_LF, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(934), 39, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_PLUS, + anon_sym_not, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -402436,37 +362153,30 @@ 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, - aux_sym__unquoted_in_list_token1, - [62725] = 6, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + aux_sym_unquoted_token5, + [63017] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8196), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8198), 1, + ACTIONS(7588), 1, aux_sym__immediate_decimal_token2, - STATE(3833), 1, + STATE(3416), 1, sym_comment, - ACTIONS(2437), 11, + ACTIONS(2356), 12, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2439), 32, + ACTIONS(2358), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -402474,8 +362184,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DASH_DASH, 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, @@ -402499,39 +362209,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [62785] = 8, - ACTIONS(3), 1, + [63075] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1156), 1, + ACTIONS(7703), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7705), 1, + aux_sym__immediate_decimal_token2, + STATE(3417), 1, + sym_comment, + ACTIONS(2231), 4, + anon_sym_LF, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2229), 39, anon_sym_SEMI, - ACTIONS(8202), 1, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + anon_sym_DOT_DOT2, anon_sym_DOT, - STATE(3834), 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + aux_sym_unquoted_token2, + [63135] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7707), 1, + anon_sym_DOT, + ACTIONS(7709), 1, + aux_sym__immediate_decimal_token2, + STATE(3418), 1, sym_comment, - STATE(5397), 1, - sym_cell_path, - STATE(7027), 1, - sym_path, - ACTIONS(8104), 9, + ACTIONS(2356), 12, anon_sym_DASH, + anon_sym__, anon_sym_DOT_DOT, - anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(8200), 32, + aux_sym_unquoted_token1, + ACTIONS(2358), 31, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -402555,23 +362317,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [62849] = 7, + [63195] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3841), 1, - anon_sym_DOT_DOT2, - ACTIONS(8206), 1, - anon_sym_RBRACK, - ACTIONS(8209), 1, - sym__entry_separator, - STATE(3835), 1, + ACTIONS(7711), 1, + aux_sym__immediate_decimal_token2, + STATE(3419), 1, sym_comment, - ACTIONS(3843), 2, + ACTIONS(903), 7, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(8204), 40, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(901), 37, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + anon_sym_DOT_DOT2, + anon_sym_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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + aux_sym_unquoted_token5, + [63253] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(3576), 1, + sym__entry_separator, + ACTIONS(7713), 1, + aux_sym__immediate_decimal_token1, + STATE(3420), 1, + sym_comment, + ACTIONS(3362), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(3574), 41, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, @@ -402610,23 +362424,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [62911] = 7, + [63313] = 12, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1160), 1, - sym__entry_separator, - ACTIONS(3841), 1, - anon_sym_DOT_DOT2, - ACTIONS(8213), 1, - anon_sym_RBRACK, - STATE(3836), 1, + ACTIONS(7590), 1, + anon_sym_DOLLAR, + ACTIONS(7592), 1, + anon_sym_LPAREN2, + ACTIONS(7695), 1, + anon_sym_DOT, + ACTIONS(7699), 1, + aux_sym__immediate_decimal_token4, + STATE(3421), 1, + sym_comment, + STATE(4298), 1, + sym__var, + STATE(4969), 1, + sym__immediate_decimal, + ACTIONS(2138), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(7697), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4968), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(2136), 33, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [63385] = 12, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(7590), 1, + anon_sym_DOLLAR, + ACTIONS(7592), 1, + anon_sym_LPAREN2, + ACTIONS(7695), 1, + anon_sym_DOT, + ACTIONS(7699), 1, + aux_sym__immediate_decimal_token4, + STATE(3422), 1, + sym_comment, + STATE(4298), 1, + sym__var, + STATE(4971), 1, + sym__immediate_decimal, + ACTIONS(2148), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(7697), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4970), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(2146), 33, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [63457] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1008), 1, + sym__entry_separator, + ACTIONS(7685), 1, + anon_sym_DOT, + STATE(3423), 1, sym_comment, - ACTIONS(3843), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(8211), 40, + STATE(3424), 1, + aux_sym_cell_path_repeat1, + STATE(3685), 1, + sym_path, + ACTIONS(1006), 41, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, @@ -402665,20 +362599,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, - [62973] = 7, + [63519] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1205), 1, + ACTIONS(987), 1, sym__entry_separator, - ACTIONS(8194), 1, + ACTIONS(7715), 1, anon_sym_DOT, - STATE(3837), 1, - sym_comment, - STATE(3864), 1, + STATE(3685), 1, sym_path, - STATE(4258), 1, - sym_cell_path, - ACTIONS(1203), 41, + STATE(3424), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(985), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -402720,20 +362653,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, - [63035] = 7, + [63579] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1188), 1, + ACTIONS(3356), 1, sym__entry_separator, - ACTIONS(8194), 1, - anon_sym_DOT, - STATE(3838), 1, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + STATE(3425), 1, sym_comment, - STATE(3864), 1, - sym_path, - STATE(4268), 1, - sym_cell_path, - ACTIONS(1186), 41, + ACTIONS(3362), 2, + anon_sym_DOT, + aux_sym__unquoted_in_list_token2, + ACTIONS(3354), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -402775,19 +362707,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [63097] = 6, + [63639] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3520), 1, + ACTIONS(1004), 1, sym__entry_separator, - ACTIONS(3522), 1, - anon_sym_LPAREN2, - STATE(3839), 1, - sym_comment, - ACTIONS(1934), 2, + ACTIONS(7685), 1, anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(3518), 41, + STATE(3414), 1, + sym_path, + STATE(3426), 1, + sym_comment, + STATE(3765), 1, + sym_cell_path, + ACTIONS(1002), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -402829,39 +362762,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [63157] = 8, - ACTIONS(113), 1, + [63701] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1205), 1, - sym__entry_separator, - ACTIONS(8194), 1, - anon_sym_DOT, - ACTIONS(8218), 1, - anon_sym_RBRACK, - STATE(3840), 1, + ACTIONS(7718), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7720), 1, + aux_sym__immediate_decimal_token2, + STATE(3427), 1, sym_comment, - STATE(3864), 1, - sym_path, - STATE(4242), 1, - sym_cell_path, - ACTIONS(8216), 40, + ACTIONS(2229), 12, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(2231), 31, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_RBRACE, + 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -402869,9 +362804,6 @@ 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, @@ -402884,30 +362816,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_in_list_token1, - [63221] = 4, + [63761] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(3841), 1, + ACTIONS(7722), 1, + aux_sym__immediate_decimal_token2, + STATE(3428), 1, sym_comment, - ACTIONS(911), 6, + ACTIONS(913), 7, + ts_builtin_sym_end, anon_sym_LF, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(909), 39, + ACTIONS(911), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, anon_sym_DOT_DOT2, @@ -402937,33 +362869,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, aux_sym_unquoted_token5, - [63277] = 4, + [63819] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(3842), 1, + ACTIONS(7724), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7726), 1, + aux_sym_unquoted_token2, + STATE(3429), 1, sym_comment, - ACTIONS(919), 6, - anon_sym_LF, + ACTIONS(922), 2, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(917), 39, - anon_sym_SEMI, + sym__entry_separator, + ACTIONS(920), 41, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_not, - anon_sym_DOT_DOT2, - anon_sym_DOT, + anon_sym_PLUS, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -402986,36 +362914,98 @@ 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, - aux_sym_unquoted_token5, - [63333] = 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, + aux_sym__unquoted_in_list_token1, + [63879] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7728), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7730), 1, + aux_sym__immediate_decimal_token2, + STATE(3430), 1, + sym_comment, + ACTIONS(2229), 11, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + aux_sym__unquoted_in_list_token1, + ACTIONS(2231), 32, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__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, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + [63939] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(3843), 1, + ACTIONS(7722), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7732), 1, + anon_sym_DOT, + STATE(3431), 1, sym_comment, - ACTIONS(952), 6, + ACTIONS(913), 7, + ts_builtin_sym_end, anon_sym_LF, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(950), 39, + ACTIONS(911), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -403041,125 +363031,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, aux_sym_unquoted_token5, - [63389] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(8221), 1, - anon_sym_QMARK2, - STATE(3844), 1, - sym_comment, - ACTIONS(1072), 3, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1070), 41, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [63447] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(8221), 1, - anon_sym_QMARK2, - STATE(3845), 1, - sym_comment, - ACTIONS(1072), 3, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1070), 41, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [63505] = 6, + [63999] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2845), 1, + ACTIONS(1087), 1, sym__entry_separator, - ACTIONS(2847), 1, - anon_sym_LPAREN2, - STATE(3846), 1, - sym_comment, - ACTIONS(2851), 2, + ACTIONS(7685), 1, anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(2843), 41, + STATE(3414), 1, + sym_path, + STATE(3432), 1, + sym_comment, + STATE(3731), 1, + sym_cell_path, + ACTIONS(1085), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -403201,35 +363086,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [63565] = 4, + [64061] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3847), 1, + ACTIONS(7735), 1, + aux_sym__immediate_decimal_token2, + STATE(3433), 1, sym_comment, - ACTIONS(1109), 13, + ACTIONS(2362), 12, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT_DOT2, anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, + aux_sym_unquoted_token2, aux_sym__unquoted_in_list_token1, - ACTIONS(1111), 32, + ACTIONS(2364), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -403253,39 +363139,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [63621] = 4, - ACTIONS(3), 1, + [64119] = 6, + ACTIONS(113), 1, anon_sym_POUND, - STATE(3848), 1, + ACTIONS(7737), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7739), 1, + aux_sym__unquoted_in_list_token2, + STATE(3434), 1, sym_comment, - ACTIONS(1113), 13, + ACTIONS(7101), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(7087), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_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, anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, aux_sym__unquoted_in_list_token1, - ACTIONS(1115), 32, + [64179] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(2358), 1, + sym__entry_separator, + ACTIONS(7741), 1, + aux_sym__immediate_decimal_token2, + STATE(3435), 1, + sym_comment, + ACTIONS(2356), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -403293,6 +363229,9 @@ 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, @@ -403305,39 +363244,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [63677] = 4, - ACTIONS(3), 1, + aux_sym_unquoted_token2, + aux_sym__unquoted_in_list_token1, + [64237] = 5, + ACTIONS(113), 1, anon_sym_POUND, - STATE(3849), 1, + ACTIONS(2231), 1, + sym__entry_separator, + ACTIONS(7657), 1, + aux_sym__immediate_decimal_token2, + STATE(3436), 1, sym_comment, - ACTIONS(1117), 13, + ACTIONS(2229), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT_DOT2, anon_sym_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, anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + aux_sym_unquoted_token2, aux_sym__unquoted_in_list_token1, - ACTIONS(1119), 32, + [64295] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(3773), 1, + sym__entry_separator, + ACTIONS(3775), 1, + anon_sym_LPAREN2, + STATE(3437), 1, + sym_comment, + ACTIONS(1886), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(3771), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_PLUS, + 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -403345,6 +363337,9 @@ 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, @@ -403357,19 +363352,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [63733] = 6, + aux_sym__unquoted_in_list_token1, + [64355] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3876), 1, + ACTIONS(2364), 1, sym__entry_separator, - ACTIONS(3878), 1, - anon_sym_LPAREN2, - STATE(3850), 1, + ACTIONS(7743), 1, + aux_sym__immediate_decimal_token2, + STATE(3438), 1, sym_comment, - ACTIONS(2006), 2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(3874), 41, + ACTIONS(2362), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -403380,6 +363373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -403410,16 +363404,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token2, aux_sym__unquoted_in_list_token1, - [63793] = 4, + [64413] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(3851), 1, + STATE(3439), 1, sym_comment, - ACTIONS(2439), 2, - anon_sym_LPAREN2, + ACTIONS(3769), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(2437), 43, + ACTIONS(3767), 42, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -403430,7 +363426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -403462,16 +363458,73 @@ 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, - [63849] = 4, - ACTIONS(113), 1, + [64469] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3852), 1, + ACTIONS(7745), 1, + anon_sym_DOT, + ACTIONS(7748), 1, + aux_sym__immediate_decimal_token2, + STATE(3440), 1, sym_comment, - ACTIONS(2549), 2, + ACTIONS(2356), 11, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + aux_sym__unquoted_in_list_token1, + ACTIONS(2358), 32, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DOLLAR, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__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, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + [64529] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1091), 1, sym__entry_separator, - ACTIONS(2547), 43, + ACTIONS(3731), 1, + anon_sym_DOT_DOT2, + STATE(3441), 1, + sym_comment, + ACTIONS(3733), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1089), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -403482,7 +363535,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -403514,16 +363566,15 @@ 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, - [63905] = 4, + [64589] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(3853), 1, + STATE(3442), 1, sym_comment, - ACTIONS(3507), 2, + ACTIONS(2231), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(3505), 43, + ACTIONS(2229), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -403567,19 +363618,19 @@ 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, - [63961] = 6, + [64645] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4008), 1, + ACTIONS(3314), 1, sym__entry_separator, - ACTIONS(4010), 1, + ACTIONS(3316), 1, anon_sym_LPAREN2, - STATE(3854), 1, + STATE(3443), 1, sym_comment, - ACTIONS(4012), 2, + ACTIONS(1844), 2, anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(4006), 41, + aux_sym_unquoted_token2, + ACTIONS(3312), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -403621,18 +363672,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, - [64021] = 5, + [64705] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8167), 1, - aux_sym__immediate_decimal_token2, - STATE(3855), 1, + ACTIONS(7750), 1, + anon_sym_QMARK2, + STATE(3444), 1, sym_comment, - ACTIONS(2581), 12, + ACTIONS(1024), 13, anon_sym_DASH, + anon_sym__, anon_sym_DOT_DOT, - anon_sym_PLUS, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -403640,15 +363692,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2583), 32, + aux_sym_unquoted_token1, + ACTIONS(1026), 31, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_null, @@ -403674,40 +363725,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [64079] = 5, - ACTIONS(3), 1, + [64763] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8159), 1, - aux_sym__immediate_decimal_token2, - STATE(3856), 1, + STATE(3445), 1, sym_comment, - ACTIONS(2437), 12, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2439), 32, + ACTIONS(2364), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(2362), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -403715,6 +363760,9 @@ 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, @@ -403727,40 +363775,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [64137] = 5, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [64819] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8223), 1, + ACTIONS(2358), 1, + sym__entry_separator, + ACTIONS(7741), 1, aux_sym__immediate_decimal_token2, - STATE(3857), 1, + ACTIONS(7752), 1, + anon_sym_DOT, + STATE(3446), 1, sym_comment, - ACTIONS(2547), 12, + ACTIONS(2356), 42, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, - 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, anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + aux_sym_unquoted_token2, aux_sym__unquoted_in_list_token1, - ACTIONS(2549), 32, + [64879] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(3447), 1, + sym_comment, + ACTIONS(2404), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(2402), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -403768,6 +363866,9 @@ 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, @@ -403780,48 +363881,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [64195] = 6, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [64935] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8225), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8227), 1, - aux_sym__immediate_decimal_token2, - STATE(3858), 1, + STATE(3448), 1, sym_comment, - ACTIONS(909), 17, - sym_identifier, + ACTIONS(1022), 3, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1020), 42, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token5, - ACTIONS(911), 26, + [64991] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(7755), 1, + anon_sym_QMARK2, + STATE(3449), 1, + sym_comment, + ACTIONS(1026), 3, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1024), 41, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -403832,22 +363983,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [64255] = 6, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [65049] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8229), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8231), 1, - aux_sym__immediate_decimal_token2, - STATE(3859), 1, + ACTIONS(7750), 1, + anon_sym_QMARK2, + STATE(3450), 1, sym_comment, - ACTIONS(2437), 12, + ACTIONS(1024), 13, anon_sym_DASH, anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -403856,7 +364009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(2439), 31, + ACTIONS(1026), 31, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -403888,22 +364041,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [64315] = 6, + [65107] = 8, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3966), 1, + ACTIONS(1059), 1, sym__entry_separator, - ACTIONS(8233), 1, - anon_sym_DOT_DOT2, - STATE(3860), 1, + ACTIONS(7685), 1, + anon_sym_DOT, + ACTIONS(7759), 1, + anon_sym_RBRACK, + STATE(3414), 1, + sym_path, + STATE(3451), 1, sym_comment, - ACTIONS(8235), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3964), 41, + STATE(3874), 1, + sym_cell_path, + ACTIONS(7757), 40, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, @@ -403942,19 +364097,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, - [64375] = 6, + [65171] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4045), 1, + ACTIONS(3356), 1, sym__entry_separator, - ACTIONS(8237), 1, - anon_sym_DOT_DOT2, - STATE(3861), 1, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + STATE(3452), 1, sym_comment, - ACTIONS(8239), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(4043), 41, + ACTIONS(3362), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(3354), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -403996,35 +364151,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [64435] = 6, + [65231] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8241), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8243), 1, - aux_sym__immediate_decimal_token2, - STATE(3862), 1, + ACTIONS(7755), 1, + anon_sym_QMARK2, + STATE(3453), 1, sym_comment, - ACTIONS(2439), 4, + ACTIONS(1026), 3, anon_sym_LF, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2437), 39, + ACTIONS(1024), 41, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_COLON, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [65289] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(3713), 1, + sym__entry_separator, + ACTIONS(7762), 1, + anon_sym_DOT_DOT2, + STATE(3454), 1, + sym_comment, + ACTIONS(7764), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3711), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_not, - anon_sym_DOT_DOT2, - anon_sym_DOT, + anon_sym_PLUS, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -404047,53 +364249,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, - aux_sym_unquoted_token2, - [64495] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3863), 1, - sym_comment, - ACTIONS(1059), 13, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1061), 32, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK2, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__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, anon_sym_out_GT, anon_sym_e_GT, @@ -404102,20 +364257,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [64551] = 7, + aux_sym__unquoted_in_list_token1, + [65349] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(989), 1, - sym__entry_separator, - ACTIONS(8194), 1, - anon_sym_DOT, - STATE(3864), 1, + STATE(3455), 1, sym_comment, - STATE(3866), 1, - aux_sym_cell_path_repeat1, - STATE(4149), 1, - sym_path, - ACTIONS(987), 41, + ACTIONS(2364), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(2362), 42, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -404126,6 +364278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -404157,39 +364310,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [64613] = 4, - ACTIONS(3), 1, + [65405] = 6, + ACTIONS(113), 1, anon_sym_POUND, - STATE(3865), 1, + ACTIONS(3314), 1, + sym__entry_separator, + ACTIONS(3316), 1, + anon_sym_LPAREN2, + STATE(3456), 1, sym_comment, - ACTIONS(1063), 13, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, + ACTIONS(1844), 2, anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1065), 32, + aux_sym__unquoted_in_list_token2, + ACTIONS(3312), 41, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_PLUS, + 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -404197,6 +364348,9 @@ 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, @@ -404209,20 +364363,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [64669] = 7, + aux_sym__unquoted_in_list_token1, + [65465] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1008), 1, + ACTIONS(3693), 1, sym__entry_separator, - ACTIONS(8194), 1, - anon_sym_DOT, - STATE(3866), 1, + ACTIONS(7766), 1, + anon_sym_DOT_DOT2, + STATE(3457), 1, sym_comment, - STATE(3867), 1, - aux_sym_cell_path_repeat1, - STATE(4149), 1, - sym_path, - ACTIONS(1006), 41, + ACTIONS(7768), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3691), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -404264,19 +364418,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [64731] = 6, + [65525] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1001), 1, - sym__entry_separator, - ACTIONS(8245), 1, - anon_sym_DOT, - STATE(4149), 1, - sym_path, - STATE(3867), 2, + STATE(3458), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(999), 41, + ACTIONS(2404), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(2402), 42, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -404287,6 +364438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -404318,30 +364470,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [64791] = 7, + [65581] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1012), 1, - sym__entry_separator, - ACTIONS(8194), 1, - anon_sym_DOT, - STATE(3864), 1, - sym_path, - STATE(3868), 1, + ACTIONS(7647), 1, + aux_sym__immediate_decimal_token2, + STATE(3459), 1, sym_comment, - STATE(4276), 1, - sym_cell_path, - ACTIONS(1010), 41, + ACTIONS(895), 7, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(893), 37, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_PLUS, + anon_sym_not, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -404364,98 +364520,98 @@ 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, - aux_sym__unquoted_in_list_token1, - [64853] = 6, - ACTIONS(113), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + aux_sym_unquoted_token5, + [65639] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3868), 1, - sym__entry_separator, - ACTIONS(8248), 1, - anon_sym_DOT_DOT2, - STATE(3869), 1, + ACTIONS(7770), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7772), 1, + aux_sym__immediate_decimal_token2, + STATE(3460), 1, sym_comment, - ACTIONS(8250), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3866), 41, - anon_sym_LBRACK, + ACTIONS(893), 17, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + ACTIONS(895), 26, + anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [65699] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7774), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7776), 1, + aux_sym__immediate_decimal_token2, + STATE(3461), 1, + sym_comment, + ACTIONS(2229), 11, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_DOT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, aux_sym__unquoted_in_list_token1, - [64913] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(3870), 1, - sym_comment, - ACTIONS(2439), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(2437), 42, + aux_sym__unquoted_in_list_token2, + ACTIONS(2231), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, - 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -404463,9 +364619,6 @@ 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, @@ -404478,17 +364631,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - [64969] = 4, + [65759] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(3871), 1, - sym_comment, - ACTIONS(2549), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(3773), 1, sym__entry_separator, - ACTIONS(2547), 42, + ACTIONS(3775), 1, + anon_sym_LPAREN2, + STATE(3462), 1, + sym_comment, + ACTIONS(1886), 2, + anon_sym_DOT, + aux_sym__unquoted_in_list_token2, + ACTIONS(3771), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -404499,7 +364654,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -404531,16 +364685,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, - [65025] = 4, + [65819] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(3872), 1, + ACTIONS(3731), 1, + anon_sym_DOT_DOT2, + ACTIONS(3759), 1, + sym__entry_separator, + STATE(3463), 1, sym_comment, - ACTIONS(3507), 3, + ACTIONS(3733), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(3505), 42, + ACTIONS(3757), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -404551,7 +364708,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -404583,22 +364739,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [65081] = 6, + [65879] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8252), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8254), 1, - aux_sym_unquoted_token2, - STATE(3873), 1, - sym_comment, - ACTIONS(938), 2, - anon_sym_LPAREN2, + ACTIONS(1091), 1, sym__entry_separator, - ACTIONS(936), 41, + ACTIONS(3731), 1, + anon_sym_DOT_DOT2, + ACTIONS(7780), 1, + anon_sym_RBRACK, + STATE(3464), 1, + sym_comment, + ACTIONS(3733), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7778), 40, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, @@ -404637,197 +364794,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [65141] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8256), 1, - anon_sym_QMARK2, - STATE(3874), 1, - sym_comment, - ACTIONS(1070), 13, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1072), 31, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__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, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [65199] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8256), 1, - anon_sym_QMARK2, - STATE(3875), 1, - sym_comment, - ACTIONS(1070), 13, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1072), 31, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__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, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [65257] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8258), 1, - anon_sym_DOT, - ACTIONS(8260), 1, - aux_sym__immediate_decimal_token2, - STATE(3876), 1, - sym_comment, - ACTIONS(2581), 12, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(2583), 31, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__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, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [65317] = 12, + [65941] = 12, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3451), 1, - anon_sym_DOLLAR, - ACTIONS(8019), 1, + ACTIONS(2187), 1, anon_sym_LPAREN2, - ACTIONS(8262), 1, + ACTIONS(7553), 1, + aux_sym_unquoted_token5, + ACTIONS(7783), 1, + anon_sym_DOT_DOT2, + ACTIONS(7785), 1, anon_sym_DOT, - ACTIONS(8266), 1, - aux_sym__immediate_decimal_token4, - STATE(3877), 1, + ACTIONS(7789), 1, + sym_filesize_unit, + ACTIONS(7791), 1, + sym_duration_unit, + STATE(3465), 1, sym_comment, - STATE(4301), 1, - sym__var, - STATE(4820), 1, - sym__immediate_decimal, - ACTIONS(2389), 2, + STATE(10193), 1, + sym__expr_parenthesized_immediate, + ACTIONS(940), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8264), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4753), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(2387), 33, + ACTIONS(7787), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(938), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, @@ -404857,33 +364854,33 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [65389] = 12, + [66013] = 12, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8064), 1, + ACTIONS(2410), 1, anon_sym_DOLLAR, - ACTIONS(8066), 1, + ACTIONS(7531), 1, anon_sym_LPAREN2, - ACTIONS(8268), 1, + ACTIONS(7793), 1, anon_sym_DOT, - ACTIONS(8272), 1, + ACTIONS(7797), 1, aux_sym__immediate_decimal_token4, - STATE(3878), 1, + STATE(3466), 1, sym_comment, - STATE(4715), 1, + STATE(3822), 1, sym__var, - STATE(5365), 1, + STATE(4379), 1, sym__immediate_decimal, - ACTIONS(2389), 2, + ACTIONS(2171), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8270), 2, + ACTIONS(7795), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(5356), 2, + STATE(4377), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2387), 33, + ACTIONS(2169), 33, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -404917,40 +364914,37 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [65461] = 5, - ACTIONS(3), 1, + [66085] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8274), 1, - aux_sym__immediate_decimal_token2, - STATE(3879), 1, + ACTIONS(3743), 1, + sym__entry_separator, + ACTIONS(7799), 1, + anon_sym_DOT_DOT2, + STATE(3467), 1, sym_comment, - ACTIONS(2581), 12, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - aux_sym__unquoted_in_list_token1, - ACTIONS(2583), 32, + ACTIONS(7801), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3741), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_LPAREN2, + anon_sym_DOT_DOT, + anon_sym_PLUS, 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -404958,59 +364952,9 @@ 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, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [65519] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8102), 1, - aux_sym__immediate_decimal_token2, - STATE(3880), 1, - sym_comment, - ACTIONS(2437), 12, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token2, - aux_sym__unquoted_in_list_token1, - ACTIONS(2439), 32, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOLLAR, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -405023,34 +364967,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [65577] = 5, + aux_sym__unquoted_in_list_token1, + [66145] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8276), 1, - aux_sym__immediate_decimal_token2, - STATE(3881), 1, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(7803), 1, + aux_sym__immediate_decimal_token1, + STATE(3468), 1, sym_comment, - ACTIONS(2547), 12, + ACTIONS(3362), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(3574), 10, anon_sym_LPAREN, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token2, aux_sym__unquoted_in_list_token1, - ACTIONS(2549), 32, + ACTIONS(3576), 31, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -405076,42 +365023,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [65635] = 12, + [66207] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8064), 1, - anon_sym_DOLLAR, - ACTIONS(8066), 1, - anon_sym_LPAREN2, - ACTIONS(8268), 1, - anon_sym_DOT, - ACTIONS(8272), 1, - aux_sym__immediate_decimal_token4, - STATE(3882), 1, + ACTIONS(3731), 1, + anon_sym_DOT_DOT2, + ACTIONS(7807), 1, + anon_sym_RBRACK, + ACTIONS(7810), 1, + sym__entry_separator, + STATE(3469), 1, sym_comment, - STATE(4715), 1, - sym__var, - STATE(5228), 1, - sym__immediate_decimal, - ACTIONS(2351), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8270), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5227), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(2349), 33, - anon_sym_SEMI, + ACTIONS(3733), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7805), 40, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_not, + anon_sym_PLUS, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -405134,35 +365069,42 @@ 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, - [65707] = 12, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_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, + [66269] = 12, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8064), 1, + ACTIONS(7590), 1, anon_sym_DOLLAR, - ACTIONS(8066), 1, + ACTIONS(7592), 1, anon_sym_LPAREN2, - ACTIONS(8268), 1, + ACTIONS(7695), 1, anon_sym_DOT, - ACTIONS(8272), 1, + ACTIONS(7699), 1, aux_sym__immediate_decimal_token4, - STATE(3883), 1, + STATE(3470), 1, sym_comment, - STATE(4715), 1, + STATE(4298), 1, sym__var, - STATE(5230), 1, + STATE(4950), 1, sym__immediate_decimal, - ACTIONS(2361), 2, + ACTIONS(2171), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8270), 2, + ACTIONS(7697), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(5229), 2, + STATE(4949), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2359), 33, + ACTIONS(2169), 33, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -405196,94 +365138,40 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [65779] = 12, - ACTIONS(113), 1, + [66341] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8064), 1, - anon_sym_DOLLAR, - ACTIONS(8066), 1, - anon_sym_LPAREN2, - ACTIONS(8268), 1, - anon_sym_DOT, - ACTIONS(8272), 1, - aux_sym__immediate_decimal_token4, - STATE(3884), 1, + ACTIONS(7812), 1, + aux_sym__immediate_decimal_token2, + STATE(3471), 1, sym_comment, - STATE(4715), 1, - sym__var, - STATE(5222), 1, - sym__immediate_decimal, - ACTIONS(2385), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8270), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5232), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(2383), 33, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, + ACTIONS(2362), 12, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_not, + anon_sym_PLUS, + 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, anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [65851] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(3885), 1, - sym_comment, - ACTIONS(2439), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(2437), 43, + aux_sym__unquoted_in_list_token1, + ACTIONS(2364), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -405291,9 +365179,6 @@ 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, @@ -405306,36 +365191,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, - aux_sym__unquoted_in_list_token1, - [65907] = 4, - ACTIONS(113), 1, + [66399] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3886), 1, + ACTIONS(7748), 1, + aux_sym__immediate_decimal_token2, + STATE(3472), 1, sym_comment, - ACTIONS(2549), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(2547), 43, + ACTIONS(2356), 12, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + aux_sym__unquoted_in_list_token1, + ACTIONS(2358), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT, + 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_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -405343,9 +365232,6 @@ 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, @@ -405358,36 +365244,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, - aux_sym__unquoted_in_list_token1, - [65963] = 4, - ACTIONS(113), 1, + [66457] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3887), 1, + ACTIONS(7563), 1, + aux_sym__immediate_decimal_token2, + STATE(3473), 1, sym_comment, - ACTIONS(3507), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(3505), 43, + ACTIONS(2229), 12, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + aux_sym__unquoted_in_list_token1, + ACTIONS(2231), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT, + 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_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -405395,9 +365285,6 @@ 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, @@ -405410,71 +365297,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, - aux_sym__unquoted_in_list_token1, - [66019] = 4, + [66515] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(3888), 1, + STATE(3474), 1, sym_comment, - ACTIONS(1061), 3, + ACTIONS(1035), 3, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1059), 42, + ACTIONS(1033), 42, anon_sym_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PLUS_PLUS_EQ, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [66075] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(3889), 1, - sym_comment, - ACTIONS(1065), 3, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1063), 42, - anon_sym_EQ, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -405484,11 +365322,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_RBRACE, anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -405516,70 +365349,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT2, anon_sym_DOT, - [66131] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8278), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8280), 1, - aux_sym__immediate_decimal_token2, - STATE(3890), 1, - sym_comment, - ACTIONS(2437), 11, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - aux_sym__unquoted_in_list_token1, - ACTIONS(2439), 32, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__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, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [66191] = 5, + [66571] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2583), 1, - sym__entry_separator, - ACTIONS(8282), 1, - aux_sym__immediate_decimal_token2, - STATE(3891), 1, + STATE(3475), 1, sym_comment, - ACTIONS(2581), 43, + ACTIONS(2231), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(2229), 42, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -405590,7 +365369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -405621,29 +365400,35 @@ 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, aux_sym__unquoted_in_list_token1, - [66249] = 5, + [66627] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2439), 1, - sym__entry_separator, - ACTIONS(8133), 1, - aux_sym__immediate_decimal_token2, - STATE(3892), 1, + ACTIONS(7816), 1, + anon_sym_LF, + ACTIONS(7818), 1, + anon_sym_PIPE, + STATE(3476), 1, sym_comment, - ACTIONS(2437), 43, + STATE(3487), 1, + aux_sym_pipe_element_repeat1, + ACTIONS(7814), 41, + sym_cmd_identifier, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT, + anon_sym_try, + anon_sym_return, + anon_sym_where, + anon_sym_not, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -405666,45 +365451,44 @@ 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, - aux_sym_unquoted_token2, - aux_sym__unquoted_in_list_token1, - [66307] = 5, - ACTIONS(113), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [66686] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2549), 1, - sym__entry_separator, - ACTIONS(8284), 1, - aux_sym__immediate_decimal_token2, - STATE(3893), 1, + ACTIONS(7824), 1, + anon_sym_DOT, + STATE(3477), 1, sym_comment, - ACTIONS(2547), 43, + STATE(3496), 1, + sym_path, + STATE(3893), 1, + sym_cell_path, + ACTIONS(7822), 9, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(7820), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -405712,9 +365496,6 @@ 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, @@ -405727,39 +365508,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, - aux_sym__unquoted_in_list_token1, - [66365] = 6, + [66747] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8274), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(8286), 1, - anon_sym_DOT, - STATE(3894), 1, + ACTIONS(3942), 1, + anon_sym_DOT_DOT2, + STATE(3478), 1, sym_comment, - ACTIONS(2581), 11, - anon_sym_LPAREN, + ACTIONS(3944), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7805), 11, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token2, aux_sym__unquoted_in_list_token1, - ACTIONS(2583), 32, + ACTIONS(7826), 30, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, 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, @@ -405783,18 +365561,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [66425] = 6, + [66806] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2583), 1, + ACTIONS(3773), 1, sym__entry_separator, - ACTIONS(8282), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(8289), 1, - anon_sym_DOT, - STATE(3895), 1, + STATE(3479), 1, sym_comment, - ACTIONS(2581), 42, + ACTIONS(1886), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(3771), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -405835,21 +365612,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, aux_sym__unquoted_in_list_token1, - [66485] = 6, + [66863] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3841), 1, - anon_sym_DOT_DOT2, - ACTIONS(4018), 1, + ACTIONS(3646), 1, sym__entry_separator, - STATE(3896), 1, + STATE(3480), 1, sym_comment, - ACTIONS(3843), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(4016), 41, + ACTIONS(3650), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(3644), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -405891,38 +365665,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [66545] = 7, - ACTIONS(113), 1, + [66920] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1150), 1, - sym__entry_separator, - ACTIONS(8194), 1, - anon_sym_DOT, - STATE(3864), 1, - sym_path, - STATE(3897), 1, + ACTIONS(3942), 1, + anon_sym_DOT_DOT2, + STATE(3481), 1, sym_comment, - STATE(4232), 1, - sym_cell_path, - ACTIONS(1148), 41, + ACTIONS(3944), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7778), 11, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(7828), 30, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, - 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -405930,9 +365706,6 @@ 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, @@ -405945,39 +365718,41 @@ 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, - [66607] = 7, - ACTIONS(113), 1, + [66979] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1181), 1, - sym__entry_separator, - ACTIONS(8194), 1, + ACTIONS(7824), 1, anon_sym_DOT, - STATE(3864), 1, - sym_path, - STATE(3898), 1, + STATE(3482), 1, sym_comment, - STATE(4233), 1, + STATE(3496), 1, + sym_path, + STATE(4045), 1, sym_cell_path, - ACTIONS(1179), 41, + ACTIONS(1085), 9, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1087), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -405985,9 +365760,6 @@ 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, @@ -406000,36 +365772,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - [66669] = 4, - ACTIONS(113), 1, + [67040] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3899), 1, + ACTIONS(3942), 1, + anon_sym_DOT_DOT2, + STATE(3483), 1, sym_comment, - ACTIONS(4002), 3, + ACTIONS(3944), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(4000), 42, + ACTIONS(1089), 11, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1091), 30, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, - 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -406037,9 +365813,6 @@ 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, @@ -406052,17 +365825,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, - [66725] = 4, + [67099] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(3900), 1, + STATE(3484), 1, sym_comment, - ACTIONS(3962), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(1157), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(3960), 42, + ACTIONS(1155), 42, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -406073,7 +365844,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -406105,36 +365875,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [66781] = 6, - ACTIONS(113), 1, + aux_sym__unquoted_in_list_token7, + [67154] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - ACTIONS(4037), 1, - anon_sym_LPAREN2, - ACTIONS(8292), 1, - aux_sym_command_token1, - STATE(3901), 1, + ACTIONS(7824), 1, + anon_sym_DOT, + STATE(3485), 1, sym_comment, - ACTIONS(4035), 42, + STATE(3496), 1, + sym_path, + STATE(3967), 1, + sym_cell_path, + ACTIONS(1097), 9, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1099), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -406142,14 +365918,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, - sym__entry_separator, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -406158,30 +365930,34 @@ 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, - [66841] = 6, + [67215] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3951), 1, - sym__entry_separator, - ACTIONS(8294), 1, - anon_sym_DOT_DOT2, - STATE(3902), 1, + ACTIONS(7830), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7832), 1, + aux_sym__immediate_decimal_token2, + STATE(3486), 1, sym_comment, - ACTIONS(8296), 2, + ACTIONS(2231), 5, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(3949), 41, + ACTIONS(2229), 37, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_PLUS, + anon_sym_not, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -406204,41 +365980,36 @@ 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, - aux_sym__unquoted_in_list_token1, - [66901] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + aux_sym_unquoted_token2, + [67274] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(3903), 1, - sym_comment, - ACTIONS(952), 7, - ts_builtin_sym_end, + ACTIONS(7836), 1, anon_sym_LF, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(950), 37, - anon_sym_SEMI, + ACTIONS(7839), 1, + anon_sym_PIPE, + STATE(3487), 2, + sym_comment, + aux_sym_pipe_element_repeat1, + ACTIONS(7834), 41, + sym_cmd_identifier, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_try, + anon_sym_return, + anon_sym_where, anon_sym_not, - anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -406263,34 +366034,42 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - aux_sym_unquoted_token5, - [66956] = 4, - ACTIONS(113), 1, + anon_sym_CARET, + [67331] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3904), 1, + ACTIONS(7824), 1, + anon_sym_DOT, + STATE(3488), 1, sym_comment, - ACTIONS(1282), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1280), 42, + STATE(3496), 1, + sym_path, + STATE(3941), 1, + sym_cell_path, + ACTIONS(1093), 9, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1095), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -406298,9 +366077,6 @@ 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, @@ -406313,29 +366089,34 @@ 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_token7, - [67011] = 5, + [67392] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3876), 1, - sym__entry_separator, - STATE(3905), 1, + ACTIONS(7818), 1, + anon_sym_PIPE, + ACTIONS(7844), 1, + anon_sym_LF, + STATE(3487), 1, + aux_sym_pipe_element_repeat1, + STATE(3489), 1, sym_comment, - ACTIONS(2006), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(3874), 41, + ACTIONS(7842), 41, + sym_cmd_identifier, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_PLUS, + anon_sym_try, + anon_sym_return, + anon_sym_where, + anon_sym_not, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -406358,6 +366139,52 @@ 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_CARET, + [67451] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3490), 1, + sym_comment, + ACTIONS(2229), 12, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2231), 32, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__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, anon_sym_out_GT, anon_sym_e_GT, @@ -406366,18 +366193,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, - [67068] = 5, + [67506] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4008), 1, - sym__entry_separator, - STATE(3906), 1, - sym_comment, - ACTIONS(4012), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(4006), 41, + ACTIONS(7848), 1, + anon_sym_LPAREN2, + ACTIONS(7850), 1, + aux_sym__unquoted_in_list_token3, + STATE(3491), 1, + sym_comment, + ACTIONS(7846), 42, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -406410,6 +366235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + sym__entry_separator, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -406419,36 +366245,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [67125] = 6, - ACTIONS(113), 1, + [67563] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1249), 1, - sym__entry_separator, - ACTIONS(1251), 1, - aux_sym__unquoted_in_list_token7, - ACTIONS(4037), 1, - anon_sym_LPAREN2, - STATE(3907), 1, + STATE(3492), 1, sym_comment, - ACTIONS(1247), 41, + ACTIONS(2362), 12, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2364), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, - 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -406456,9 +366284,6 @@ 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, @@ -406471,28 +366296,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - [67184] = 6, + [67618] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8298), 1, - aux_sym__immediate_decimal_token1, - STATE(3908), 1, + STATE(3493), 1, sym_comment, - ACTIONS(2851), 2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(3748), 9, + ACTIONS(2402), 12, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3750), 32, + ACTIONS(2404), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -406500,8 +366322,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DASH_DASH, 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, @@ -406525,42 +366347,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [67243] = 6, - ACTIONS(113), 1, + [67673] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8302), 1, - anon_sym_LF, - ACTIONS(8304), 1, - anon_sym_PIPE, - STATE(3909), 1, + ACTIONS(7824), 1, + anon_sym_DOT, + STATE(3494), 1, sym_comment, - STATE(4007), 1, - aux_sym_pipe_element_repeat1, - ACTIONS(8300), 41, - sym_cmd_identifier, + STATE(3496), 1, + sym_path, + STATE(3997), 1, + sym_cell_path, + ACTIONS(1002), 9, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1004), 32, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_where, - anon_sym_not, 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -406568,103 +366389,59 @@ 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_CARET, - [67302] = 4, - ACTIONS(113), 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, + [67734] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3910), 1, + ACTIONS(7852), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7854), 1, + aux_sym__immediate_decimal_token2, + STATE(3495), 1, sym_comment, - ACTIONS(1115), 3, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1113), 41, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(893), 17, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, anon_sym_DOT, - [67357] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(3911), 1, - sym_comment, - ACTIONS(1111), 3, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1109), 41, - anon_sym_EQ, - anon_sym_SEMI, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + ACTIONS(895), 25, anon_sym_COLON, - anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -406675,100 +366452,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [67412] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(8306), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8308), 1, - aux_sym__immediate_decimal_token2, - STATE(3912), 1, - sym_comment, - ACTIONS(2439), 5, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2437), 37, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + [67793] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7824), 1, + anon_sym_DOT, + STATE(3496), 1, + sym_comment, + STATE(3497), 1, + aux_sym_cell_path_repeat1, + STATE(3748), 1, + sym_path, + ACTIONS(1010), 9, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_not, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - 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, - aux_sym_unquoted_token2, - [67471] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(8304), 1, - anon_sym_PIPE, - ACTIONS(8312), 1, - anon_sym_LF, - STATE(3913), 1, - sym_comment, - STATE(4007), 1, - aux_sym_pipe_element_repeat1, - ACTIONS(8310), 41, - sym_cmd_identifier, + aux_sym__unquoted_in_list_token1, + ACTIONS(1012), 32, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_where, - anon_sym_not, 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -406776,35 +366496,40 @@ 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_CARET, - [67530] = 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, + [67854] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(3914), 1, + ACTIONS(7824), 1, + anon_sym_DOT, + STATE(3497), 1, sym_comment, - ACTIONS(1168), 12, + STATE(3498), 1, + aux_sym_cell_path_repeat1, + STATE(3748), 1, + sym_path, + ACTIONS(1006), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1170), 32, + ACTIONS(1008), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -406812,8 +366537,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DASH_DASH, 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, @@ -406837,36 +366562,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [67585] = 6, - ACTIONS(113), 1, + [67915] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1255), 1, - sym__entry_separator, - ACTIONS(1257), 1, - aux_sym__unquoted_in_list_token7, - ACTIONS(4631), 1, - anon_sym_LPAREN2, - STATE(3915), 1, + ACTIONS(7856), 1, + anon_sym_DOT, + STATE(3748), 1, + sym_path, + STATE(3498), 2, sym_comment, - ACTIONS(1253), 41, + aux_sym_cell_path_repeat1, + ACTIONS(985), 9, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(987), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -406874,9 +366603,6 @@ 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, @@ -406889,37 +366615,90 @@ 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, - [67644] = 6, - ACTIONS(113), 1, + [67974] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym__unquoted_in_list_token7, - ACTIONS(1275), 1, - sym__entry_separator, - ACTIONS(4631), 1, - anon_sym_LPAREN2, - STATE(3916), 1, + ACTIONS(7859), 1, + aux_sym__immediate_decimal_token2, + STATE(3499), 1, sym_comment, - ACTIONS(1273), 41, - anon_sym_LBRACK, + ACTIONS(911), 17, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + ACTIONS(913), 26, + anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [68031] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3500), 1, + sym_comment, + ACTIONS(1068), 12, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1070), 32, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -406927,9 +366706,6 @@ 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, @@ -406942,43 +366718,46 @@ 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, - [67703] = 4, - ACTIONS(113), 1, + [68086] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3917), 1, + ACTIONS(7772), 1, + aux_sym__immediate_decimal_token2, + STATE(3501), 1, sym_comment, - ACTIONS(1119), 3, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1117), 41, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(893), 17, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + ACTIONS(895), 26, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -406989,47 +366768,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [68143] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7861), 1, + aux_sym__immediate_decimal_token2, + STATE(3502), 1, + sym_comment, + ACTIONS(901), 17, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, anon_sym_DOT, - [67758] = 6, - ACTIONS(113), 1, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + ACTIONS(903), 26, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [68200] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8304), 1, - anon_sym_PIPE, - ACTIONS(8316), 1, - anon_sym_LF, - STATE(3918), 1, + ACTIONS(7863), 1, + anon_sym_DOT, + ACTIONS(7866), 1, + aux_sym__immediate_decimal_token2, + STATE(3503), 1, sym_comment, - STATE(4007), 1, - aux_sym_pipe_element_repeat1, - ACTIONS(8314), 41, - sym_cmd_identifier, + ACTIONS(2356), 10, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2358), 32, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_where, - anon_sym_not, 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -407037,44 +366863,51 @@ 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_CARET, - [67817] = 5, - ACTIONS(113), 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, + [68259] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8320), 1, - anon_sym_LPAREN2, - ACTIONS(8322), 1, - aux_sym__unquoted_in_list_token3, - STATE(3919), 1, + ACTIONS(7709), 1, + aux_sym__immediate_decimal_token2, + STATE(3504), 1, sym_comment, - ACTIONS(8318), 42, + ACTIONS(2356), 12, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(2358), 31, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_RBRACE, + 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -407082,14 +366915,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, - sym__entry_separator, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -407098,16 +366927,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_in_list_token1, - [67874] = 4, + [68316] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3920), 1, + ACTIONS(7720), 1, + aux_sym__immediate_decimal_token2, + STATE(3505), 1, sym_comment, - ACTIONS(2437), 12, + ACTIONS(2229), 12, anon_sym_DASH, + anon_sym__, anon_sym_DOT_DOT, - anon_sym_PLUS, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -407116,15 +366946,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2439), 32, + aux_sym_unquoted_token1, + ACTIONS(2231), 31, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_null, @@ -407150,25 +366979,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [67929] = 4, + [68373] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(3921), 1, + ACTIONS(7824), 1, + anon_sym_DOT, + STATE(3496), 1, + sym_path, + STATE(3506), 1, sym_comment, - ACTIONS(2547), 12, + STATE(3895), 1, + sym_cell_path, + ACTIONS(1101), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2549), 32, + ACTIONS(1103), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -407176,8 +367008,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DASH_DASH, 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, @@ -407201,36 +367033,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [67984] = 6, - ACTIONS(113), 1, + [68434] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - ACTIONS(4325), 1, - sym__entry_separator, - STATE(3922), 1, + ACTIONS(7868), 1, + aux_sym__immediate_decimal_token2, + STATE(3507), 1, sym_comment, - STATE(11424), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4323), 41, + ACTIONS(2362), 12, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(2364), 31, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_RBRACE, + 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -407238,9 +367073,6 @@ 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, @@ -407253,35 +367085,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - [68043] = 4, + [68491] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3923), 1, + ACTIONS(7870), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7872), 1, + aux_sym_unquoted_token2, + STATE(3508), 1, sym_comment, - ACTIONS(3505), 12, + ACTIONS(920), 10, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3507), 32, + ACTIONS(922), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -407305,18 +367138,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [68098] = 6, + [68550] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - ACTIONS(4377), 1, + ACTIONS(1091), 1, sym__entry_separator, - STATE(3924), 1, + ACTIONS(1149), 1, + aux_sym_unquoted_token6, + ACTIONS(3783), 1, + anon_sym_LPAREN2, + STATE(3509), 1, sym_comment, - STATE(11424), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4375), 41, + ACTIONS(1089), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -407358,93 +367191,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [68157] = 6, - ACTIONS(3), 1, + [68609] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8324), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8326), 1, + ACTIONS(7874), 1, aux_sym__immediate_decimal_token2, - STATE(3925), 1, + STATE(3510), 1, sym_comment, - ACTIONS(909), 17, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token5, - ACTIONS(911), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + ACTIONS(2358), 4, + anon_sym_LF, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [68216] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8328), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8330), 1, - aux_sym_unquoted_token2, - STATE(3926), 1, - sym_comment, - ACTIONS(936), 10, + ACTIONS(2356), 39, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_PLUS, + anon_sym_not, + anon_sym_DOT_DOT2, + anon_sym_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, anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, - aux_sym__unquoted_in_list_token1, - ACTIONS(938), 32, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + aux_sym_unquoted_token2, + [68666] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(7705), 1, + aux_sym__immediate_decimal_token2, + STATE(3511), 1, + sym_comment, + ACTIONS(2231), 4, + anon_sym_LF, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2229), 39, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_LPAREN2, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + anon_sym_DOT_DOT2, + anon_sym_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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -407452,30 +367285,26 @@ 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, - [68275] = 6, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + aux_sym_unquoted_token2, + [68723] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - ACTIONS(4531), 1, + ACTIONS(1026), 1, sym__entry_separator, - STATE(3927), 1, + ACTIONS(7876), 1, + anon_sym_QMARK2, + STATE(3512), 1, sym_comment, - STATE(11424), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4529), 41, + ACTIONS(1024), 42, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -407486,6 +367315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -407517,18 +367347,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [68334] = 6, + [68780] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - ACTIONS(4535), 1, + ACTIONS(1026), 1, sym__entry_separator, - STATE(3928), 1, + ACTIONS(7876), 1, + anon_sym_QMARK2, + STATE(3513), 1, sym_comment, - STATE(11424), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4533), 41, + ACTIONS(1024), 42, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -407539,6 +367367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -407570,93 +367399,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [68393] = 6, - ACTIONS(3), 1, + [68837] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8332), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8334), 1, + ACTIONS(7878), 1, aux_sym__immediate_decimal_token2, - STATE(3929), 1, + STATE(3514), 1, sym_comment, - ACTIONS(909), 15, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(911), 27, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(2364), 4, + anon_sym_LF, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2362), 39, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [68452] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8336), 1, - anon_sym_DOT_DOT2, - STATE(3930), 1, - sym_comment, - ACTIONS(8338), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3949), 11, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_PLUS, + anon_sym_not, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(3951), 30, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -407664,26 +367441,26 @@ 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, - [68511] = 5, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + aux_sym_unquoted_token2, + [68894] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8340), 1, + ACTIONS(7880), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7882), 1, aux_sym__immediate_decimal_token2, - STATE(3931), 1, + STATE(3515), 1, sym_comment, - ACTIONS(923), 17, + ACTIONS(893), 17, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -407701,8 +367478,7 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token5, - ACTIONS(925), 26, - anon_sym_COLON, + ACTIONS(895), 25, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, @@ -407728,74 +367504,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [68568] = 7, - ACTIONS(3), 1, + [68953] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8342), 1, - anon_sym_DOT, - STATE(3932), 1, + STATE(3516), 1, sym_comment, - STATE(3935), 1, - sym_path, - STATE(4444), 1, - sym_cell_path, - ACTIONS(1010), 9, + ACTIONS(1049), 3, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1047), 41, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_DOT_DOT, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1012), 32, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__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, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [68629] = 6, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [69008] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8344), 1, - anon_sym_DOT_DOT2, - STATE(3933), 1, + STATE(3517), 1, sym_comment, - ACTIONS(8346), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3964), 11, + ACTIONS(1047), 13, anon_sym_DASH, + anon_sym__, anon_sym_DOT_DOT, - anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -407803,15 +367573,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(3966), 30, + aux_sym_unquoted_token1, + ACTIONS(1049), 31, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -407835,46 +367606,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [68688] = 5, - ACTIONS(3), 1, + [69063] = 7, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8227), 1, - aux_sym__immediate_decimal_token2, - STATE(3934), 1, + ACTIONS(7884), 1, + anon_sym_DOT, + STATE(3518), 1, sym_comment, - ACTIONS(909), 17, - sym_identifier, + STATE(3586), 1, + aux_sym_cell_path_repeat1, + STATE(3779), 1, + sym_path, + ACTIONS(1008), 4, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1006), 37, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token5, - ACTIONS(911), 26, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -407885,30 +367656,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [68745] = 7, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + [69124] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8342), 1, - anon_sym_DOT, - STATE(3935), 1, + STATE(3519), 1, sym_comment, - STATE(3937), 1, - aux_sym_cell_path_repeat1, - STATE(4171), 1, - sym_path, - ACTIONS(987), 9, + ACTIONS(1061), 12, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(989), 32, + ACTIONS(1063), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -407916,8 +367686,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DASH_DASH, 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, @@ -407941,14 +367711,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [68806] = 5, + [69179] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8348), 1, + ACTIONS(7859), 1, aux_sym__immediate_decimal_token2, - STATE(3936), 1, + ACTIONS(7886), 1, + anon_sym_DOT, + STATE(3520), 1, sym_comment, - ACTIONS(917), 17, + ACTIONS(911), 16, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -407962,11 +367734,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - anon_sym_DOT, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token5, - ACTIONS(919), 26, + ACTIONS(913), 26, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -407993,41 +367764,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [68863] = 7, - ACTIONS(3), 1, + [69238] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8342), 1, - anon_sym_DOT, - STATE(3937), 1, + ACTIONS(1161), 1, + sym__entry_separator, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + ACTIONS(3727), 1, + anon_sym_LPAREN2, + STATE(3521), 1, sym_comment, - STATE(3938), 1, - aux_sym_cell_path_repeat1, - STATE(4171), 1, - sym_path, - ACTIONS(1006), 9, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1008), 32, + ACTIONS(1159), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_PLUS, 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -408035,6 +367801,9 @@ 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, @@ -408047,40 +367816,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [68924] = 6, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [69297] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8350), 1, - anon_sym_DOT, - STATE(4171), 1, - sym_path, - STATE(3938), 2, + ACTIONS(1131), 1, + sym__entry_separator, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + ACTIONS(3841), 1, + anon_sym_LPAREN2, + STATE(3522), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(999), 9, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1001), 32, + ACTIONS(1129), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_PLUS, 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -408088,6 +367854,9 @@ 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, @@ -408100,40 +367869,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [68983] = 6, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [69356] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8353), 1, - anon_sym_DOT, - ACTIONS(8356), 1, - aux_sym__immediate_decimal_token2, - STATE(3939), 1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + ACTIONS(1137), 1, + sym__entry_separator, + ACTIONS(3841), 1, + anon_sym_LPAREN2, + STATE(3523), 1, sym_comment, - ACTIONS(2581), 10, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2583), 32, + ACTIONS(1135), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_PLUS, 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -408141,6 +367907,9 @@ 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, @@ -408153,35 +367922,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [69042] = 5, + aux_sym__unquoted_in_list_token1, + [69415] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8260), 1, - aux_sym__immediate_decimal_token2, - STATE(3940), 1, + ACTIONS(7824), 1, + anon_sym_DOT, + STATE(3496), 1, + sym_path, + STATE(3524), 1, sym_comment, - ACTIONS(2581), 12, + STATE(3959), 1, + sym_cell_path, + ACTIONS(1057), 9, anon_sym_DASH, - anon_sym__, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_PLUS, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(2583), 31, + aux_sym__unquoted_in_list_token1, + ACTIONS(1059), 32, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - 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, @@ -408205,18 +367977,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [69099] = 5, + [69476] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8231), 1, - aux_sym__immediate_decimal_token2, - STATE(3941), 1, + STATE(3525), 1, sym_comment, - ACTIONS(2437), 12, + ACTIONS(1037), 13, anon_sym_DASH, anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -408225,7 +367996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(2439), 31, + ACTIONS(1039), 31, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -408257,18 +368028,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [69156] = 5, + [69531] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8358), 1, - aux_sym__immediate_decimal_token2, - STATE(3942), 1, + STATE(3526), 1, sym_comment, - ACTIONS(2547), 12, + ACTIONS(1041), 13, anon_sym_DASH, anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -408277,7 +368047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(2549), 31, + ACTIONS(1043), 31, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -408309,18 +368079,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [69213] = 7, + [69586] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8342), 1, - anon_sym_DOT, - STATE(3935), 1, - sym_path, - STATE(3943), 1, + ACTIONS(7889), 1, + aux_sym__immediate_decimal_token1, + STATE(3527), 1, sym_comment, - STATE(4467), 1, - sym_cell_path, - ACTIONS(1154), 9, + ACTIONS(3362), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(3574), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -408330,7 +368099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1156), 32, + ACTIONS(3576), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -408363,18 +368132,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [69274] = 6, + [69645] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1160), 1, + ACTIONS(2231), 1, sym__entry_separator, - ACTIONS(1284), 1, - aux_sym_unquoted_token6, - ACTIONS(4895), 1, - anon_sym_LPAREN2, - STATE(3944), 1, + ACTIONS(7891), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7893), 1, + aux_sym__immediate_decimal_token2, + STATE(3528), 1, sym_comment, - ACTIONS(1158), 41, + ACTIONS(2229), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -408416,86 +368185,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [69333] = 6, - ACTIONS(3), 1, + [69704] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4625), 1, - anon_sym_DOT_DOT2, - STATE(3945), 1, + ACTIONS(1161), 1, + sym__entry_separator, + ACTIONS(1163), 1, + aux_sym__unquoted_in_list_token7, + ACTIONS(3727), 1, + anon_sym_LPAREN2, + STATE(3529), 1, sym_comment, - ACTIONS(4627), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1158), 11, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1160), 30, + ACTIONS(1159), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__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, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [69392] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(8360), 1, - aux_sym__immediate_decimal_token2, - STATE(3946), 1, - sym_comment, - ACTIONS(2583), 4, - anon_sym_LF, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2581), 39, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_not, - anon_sym_DOT_DOT2, - anon_sym_DOT, + anon_sym_PLUS, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -408518,36 +368229,37 @@ 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, - aux_sym_unquoted_token2, - [69449] = 5, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_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, + [69763] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8243), 1, - aux_sym__immediate_decimal_token2, - STATE(3947), 1, - sym_comment, - ACTIONS(2439), 4, - anon_sym_LF, + ACTIONS(1131), 1, + sym__entry_separator, + ACTIONS(1133), 1, + aux_sym__unquoted_in_list_token7, + ACTIONS(3841), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2437), 39, - anon_sym_SEMI, + STATE(3530), 1, + sym_comment, + ACTIONS(1129), 41, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_not, - anon_sym_DOT_DOT2, - anon_sym_DOT, + anon_sym_PLUS, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -408570,21 +368282,26 @@ 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, - aux_sym_unquoted_token2, - [69506] = 7, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_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, + [69822] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8342), 1, - anon_sym_DOT, - STATE(3935), 1, - sym_path, - STATE(3948), 1, + ACTIONS(7895), 1, + aux_sym__immediate_decimal_token1, + STATE(3531), 1, sym_comment, - STATE(4473), 1, - sym_cell_path, - ACTIONS(1190), 9, + ACTIONS(3362), 2, + anon_sym_DOT, + aux_sym__unquoted_in_list_token2, + ACTIONS(3574), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -408594,7 +368311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1192), 32, + ACTIONS(3576), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -408627,70 +368344,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [69567] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(8362), 1, - aux_sym__immediate_decimal_token2, - STATE(3949), 1, - sym_comment, - ACTIONS(2549), 4, - anon_sym_LF, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2547), 39, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - anon_sym_DOT_DOT2, - anon_sym_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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - aux_sym_unquoted_token2, - [69624] = 6, + [69881] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1249), 1, + ACTIONS(1133), 1, + aux_sym__unquoted_in_list_token7, + ACTIONS(1137), 1, sym__entry_separator, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - ACTIONS(4037), 1, + ACTIONS(3841), 1, anon_sym_LPAREN2, - STATE(3950), 1, + STATE(3532), 1, sym_comment, - ACTIONS(1247), 41, + ACTIONS(1135), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -408732,70 +368397,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [69683] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8364), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8366), 1, - aux_sym__immediate_decimal_token2, - STATE(3951), 1, - sym_comment, - ACTIONS(909), 17, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token5, - ACTIONS(911), 25, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [69742] = 6, + [69940] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8368), 1, + ACTIONS(3942), 1, anon_sym_DOT_DOT2, - STATE(3952), 1, + STATE(3533), 1, sym_comment, - ACTIONS(8370), 2, + ACTIONS(3944), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(4043), 11, + ACTIONS(3757), 11, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -408807,7 +368419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(4045), 30, + ACTIONS(3759), 30, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -408838,18 +368450,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [69801] = 6, + [69999] = 30, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3116), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3118), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3122), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3655), 1, + anon_sym_COLON, + ACTIONS(4672), 1, + aux_sym_unquoted_token1, + ACTIONS(7897), 1, + anon_sym_LPAREN, + ACTIONS(7899), 1, + anon_sym_DOLLAR, + ACTIONS(7901), 1, + anon_sym_DOT_DOT, + ACTIONS(7905), 1, + anon_sym_DOT2, + ACTIONS(7909), 1, + sym_val_date, + ACTIONS(7911), 1, + anon_sym_DQUOTE, + ACTIONS(7915), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(7917), 1, + anon_sym_DOLLAR_DQUOTE, + STATE(1322), 1, + sym__var, + STATE(2117), 1, + sym__inter_single_quotes, + STATE(2128), 1, + sym__inter_double_quotes, + STATE(2196), 1, + sym__str_double_quotes, + STATE(2278), 1, + sym_unquoted, + STATE(3534), 1, + sym_comment, + STATE(8009), 1, + sym__val_number_decimal, + STATE(10050), 1, + sym__val_range, + STATE(10641), 1, + sym_val_bool, + STATE(10833), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3114), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(7903), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(7913), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(7907), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2387), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(3685), 9, + anon_sym_null, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + [70106] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1255), 1, - sym__entry_separator, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - ACTIONS(4631), 1, + ACTIONS(1209), 1, anon_sym_LPAREN2, - STATE(3953), 1, + ACTIONS(7919), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(3535), 1, sym_comment, - ACTIONS(1253), 41, + ACTIONS(1139), 42, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -408882,6 +368569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + sym__entry_separator, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -408891,36 +368579,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [69860] = 6, - ACTIONS(113), 1, + [70163] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - ACTIONS(1275), 1, - sym__entry_separator, - ACTIONS(4631), 1, + ACTIONS(3648), 1, anon_sym_LPAREN2, - STATE(3954), 1, + STATE(3536), 1, sym_comment, - ACTIONS(1273), 41, + ACTIONS(3650), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(3644), 10, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(3646), 31, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -408928,9 +368620,58 @@ 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, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + [70222] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7866), 1, + aux_sym__immediate_decimal_token2, + STATE(3537), 1, + sym_comment, + ACTIONS(2356), 11, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2358), 32, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -408943,17 +368684,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - [69919] = 5, + [70279] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1072), 1, - sym__entry_separator, - ACTIONS(8372), 1, - anon_sym_QMARK2, - STATE(3955), 1, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + ACTIONS(3727), 1, + anon_sym_LPAREN2, + ACTIONS(7921), 1, + aux_sym_command_token1, + STATE(3538), 1, sym_comment, - ACTIONS(1070), 42, + ACTIONS(3725), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -408964,7 +368706,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -408996,16 +368737,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [69976] = 5, + [70338] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1072), 1, - sym__entry_separator, - ACTIONS(8372), 1, - anon_sym_QMARK2, - STATE(3956), 1, + STATE(3539), 1, sym_comment, - ACTIONS(1070), 42, + ACTIONS(1157), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1155), 42, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -409016,7 +368756,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -409047,42 +368786,38 @@ 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_token6, aux_sym__unquoted_in_list_token1, - [70033] = 7, - ACTIONS(3), 1, + [70393] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8342), 1, - anon_sym_DOT, - STATE(3935), 1, - sym_path, - STATE(3957), 1, + ACTIONS(922), 1, + sym__entry_separator, + ACTIONS(3968), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7923), 1, + aux_sym_unquoted_token2, + STATE(3540), 1, sym_comment, - STATE(4395), 1, - sym_cell_path, - ACTIONS(1203), 9, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1205), 32, + ACTIONS(920), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_PLUS, 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -409090,6 +368825,9 @@ 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, @@ -409102,32 +368840,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [70094] = 4, + aux_sym__unquoted_in_list_token1, + [70452] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(3958), 1, + ACTIONS(7874), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7925), 1, + anon_sym_DOT, + STATE(3541), 1, sym_comment, - ACTIONS(911), 7, - ts_builtin_sym_end, + ACTIONS(2358), 4, anon_sym_LF, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(909), 37, + ACTIONS(2356), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -409152,94 +368893,42 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - aux_sym_unquoted_token5, - [70149] = 6, + aux_sym_unquoted_token2, + [70511] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8340), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(8374), 1, + ACTIONS(7824), 1, anon_sym_DOT, - STATE(3959), 1, + STATE(3496), 1, + sym_path, + STATE(3542), 1, sym_comment, - ACTIONS(923), 16, - sym_identifier, - anon_sym_GT, + STATE(3973), 1, + sym_cell_path, + ACTIONS(1051), 9, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, + anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token5, - ACTIONS(925), 26, - anon_sym_COLON, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1053), 32, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [70208] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(3960), 1, - sym_comment, - ACTIONS(919), 7, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(917), 37, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - anon_sym_DOT_DOT2, - anon_sym_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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -409247,39 +368936,38 @@ 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, - aux_sym_unquoted_token5, - [70263] = 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, + [70572] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8377), 1, - anon_sym_DOT_DOT2, - STATE(3961), 1, + ACTIONS(7776), 1, + aux_sym__immediate_decimal_token2, + STATE(3543), 1, sym_comment, - ACTIONS(8379), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3866), 11, + ACTIONS(2229), 11, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3868), 30, + aux_sym__unquoted_in_list_token2, + ACTIONS(2231), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -409287,6 +368975,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, 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, @@ -409310,34 +369000,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [70322] = 6, + [70629] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8381), 1, - anon_sym_DOT, - STATE(4308), 1, - sym_path, - STATE(3962), 2, + STATE(3544), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1001), 4, - ts_builtin_sym_end, + ACTIONS(1039), 3, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(999), 37, + ACTIONS(1037), 41, anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -409363,35 +369050,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - [70381] = 5, - ACTIONS(113), 1, + anon_sym_DOT, + [70684] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2845), 1, - sym__entry_separator, - STATE(3963), 1, + STATE(3545), 1, sym_comment, - ACTIONS(2851), 2, + ACTIONS(2229), 12, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, aux_sym_unquoted_token2, - ACTIONS(2843), 41, + aux_sym__unquoted_in_list_token1, + ACTIONS(2231), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, + 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_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -409399,9 +369090,6 @@ 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, @@ -409414,35 +369102,34 @@ 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, - [70438] = 4, + [70739] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3964), 1, + STATE(3546), 1, sym_comment, - ACTIONS(4000), 12, + ACTIONS(2362), 12, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, + aux_sym_unquoted_token2, aux_sym__unquoted_in_list_token1, - ACTIONS(4002), 32, + ACTIONS(2364), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -409466,35 +369153,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [70493] = 7, + [70794] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8342), 1, - anon_sym_DOT, - STATE(3935), 1, - sym_path, - STATE(3965), 1, + STATE(3547), 1, sym_comment, - STATE(4433), 1, - sym_cell_path, - ACTIONS(1186), 9, + ACTIONS(2402), 12, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, + aux_sym_unquoted_token2, aux_sym__unquoted_in_list_token1, - ACTIONS(1188), 32, + ACTIONS(2404), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -409520,38 +369204,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [70554] = 4, - ACTIONS(3), 1, + [70849] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(3966), 1, + STATE(3548), 1, sym_comment, - ACTIONS(1113), 13, + ACTIONS(1043), 3, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1041), 41, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym__, - anon_sym_DOT_DOT, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_DOT_DOT2, anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1115), 31, + [70904] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(7818), 1, + anon_sym_PIPE, + ACTIONS(7930), 1, + anon_sym_LF, + STATE(3487), 1, + aux_sym_pipe_element_repeat1, + STATE(3549), 1, + sym_comment, + ACTIONS(7928), 41, + sym_cmd_identifier, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_try, + anon_sym_return, + anon_sym_where, + anon_sym_not, + 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -409559,50 +369298,46 @@ 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, - [70609] = 4, - ACTIONS(3), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [70963] = 6, + ACTIONS(113), 1, anon_sym_POUND, - STATE(3967), 1, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + ACTIONS(4344), 1, + sym__entry_separator, + STATE(3550), 1, sym_comment, - ACTIONS(1117), 13, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1119), 31, + STATE(10434), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4342), 41, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_PLUS, + 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -409610,6 +369345,9 @@ 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, @@ -409622,18 +369360,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [70664] = 6, + aux_sym__unquoted_in_list_token1, + [71022] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2439), 1, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + ACTIONS(4396), 1, sym__entry_separator, - ACTIONS(8384), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8386), 1, - aux_sym__immediate_decimal_token2, - STATE(3968), 1, + STATE(3551), 1, sym_comment, - ACTIONS(2437), 41, + STATE(10434), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4394), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -409675,31 +369414,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [70723] = 6, + [71081] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3522), 1, - anon_sym_LPAREN2, - STATE(3969), 1, + ACTIONS(7932), 1, + aux_sym__immediate_decimal_token2, + STATE(3552), 1, sym_comment, - ACTIONS(1934), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(3518), 10, - anon_sym_LPAREN, + ACTIONS(2362), 11, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3520), 31, + aux_sym__unquoted_in_list_token2, + ACTIONS(2364), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, @@ -409728,38 +369466,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [70782] = 4, - ACTIONS(3), 1, + [71138] = 6, + ACTIONS(113), 1, anon_sym_POUND, - STATE(3970), 1, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + ACTIONS(4424), 1, + sym__entry_separator, + STATE(3553), 1, sym_comment, - ACTIONS(3960), 12, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(3962), 32, + STATE(10434), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4422), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_PLUS, + 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -409767,6 +369503,9 @@ 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, @@ -409779,16 +369518,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [70837] = 5, + aux_sym__unquoted_in_list_token1, + [71197] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1290), 1, + ACTIONS(2187), 1, anon_sym_LPAREN2, - ACTIONS(8388), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(3971), 1, + ACTIONS(4428), 1, + sym__entry_separator, + STATE(3554), 1, sym_comment, - ACTIONS(1243), 42, + STATE(10434), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4426), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -409821,7 +369563,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - sym__entry_separator, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -409831,16 +369572,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [70894] = 6, + [71256] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(7934), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7936), 1, + aux_sym__immediate_decimal_token2, + STATE(3555), 1, + sym_comment, + ACTIONS(2231), 3, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2229), 39, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + anon_sym_DOT_DOT2, + anon_sym_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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + aux_sym_unquoted_token2, + [71315] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8390), 1, + ACTIONS(7938), 1, anon_sym_DOT, - ACTIONS(8392), 1, + ACTIONS(7940), 1, aux_sym__immediate_decimal_token2, - STATE(3972), 1, + STATE(3556), 1, sym_comment, - ACTIONS(923), 15, + ACTIONS(911), 15, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -409856,7 +369650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(925), 27, + ACTIONS(913), 27, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -409884,40 +369678,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [70953] = 6, - ACTIONS(3), 1, + [71374] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4625), 1, - anon_sym_DOT_DOT2, - STATE(3973), 1, + ACTIONS(2358), 1, + sym__entry_separator, + ACTIONS(7942), 1, + anon_sym_DOT, + ACTIONS(7944), 1, + aux_sym__immediate_decimal_token2, + STATE(3557), 1, sym_comment, - ACTIONS(4627), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(8204), 11, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(8394), 30, + ACTIONS(2356), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_PLUS, + 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -409925,6 +369715,9 @@ 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, @@ -409937,89 +369730,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [71012] = 6, + aux_sym__unquoted_in_list_token1, + [71433] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4625), 1, - anon_sym_DOT_DOT2, - STATE(3974), 1, + ACTIONS(7824), 1, + anon_sym_DOT, + STATE(3496), 1, + sym_path, + STATE(3558), 1, sym_comment, - ACTIONS(4627), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(8211), 11, + STATE(4069), 1, + sym_cell_path, + ACTIONS(7757), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(8396), 30, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__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, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [71071] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(938), 1, - sym__entry_separator, - ACTIONS(4633), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8398), 1, - aux_sym_unquoted_token2, - STATE(3975), 1, - sym_comment, - ACTIONS(936), 41, + ACTIONS(7946), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -410027,9 +369773,6 @@ 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, @@ -410042,26 +369785,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, - [71130] = 4, + [71494] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(3976), 1, + STATE(3559), 1, sym_comment, - ACTIONS(1282), 2, + ACTIONS(895), 7, + ts_builtin_sym_end, + anon_sym_LF, anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1280), 42, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(893), 37, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_PLUS, + anon_sym_not, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -410084,44 +369833,37 @@ 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, - aux_sym_unquoted_token6, - aux_sym__unquoted_in_list_token1, - [71185] = 6, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + aux_sym_unquoted_token5, + [71549] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8360), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(8400), 1, - anon_sym_DOT, - STATE(3977), 1, - sym_comment, - ACTIONS(2583), 4, + ACTIONS(7818), 1, + anon_sym_PIPE, + ACTIONS(7950), 1, anon_sym_LF, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2581), 38, - anon_sym_SEMI, + STATE(3487), 1, + aux_sym_pipe_element_repeat1, + STATE(3560), 1, + sym_comment, + ACTIONS(7948), 41, + sym_cmd_identifier, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, + anon_sym_try, + anon_sym_return, + anon_sym_where, anon_sym_not, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -410146,90 +369888,89 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - aux_sym_unquoted_token2, - [71244] = 4, - ACTIONS(3), 1, + anon_sym_CARET, + [71608] = 7, + ACTIONS(113), 1, anon_sym_POUND, - STATE(3978), 1, - sym_comment, - ACTIONS(2437), 12, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, + ACTIONS(7884), 1, anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - aux_sym__unquoted_in_list_token1, - ACTIONS(2439), 32, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOLLAR, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__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, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [71299] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3979), 1, + STATE(3561), 1, sym_comment, - ACTIONS(2547), 12, - anon_sym_LPAREN, + STATE(3576), 1, + sym_path, + STATE(4036), 1, + sym_cell_path, + ACTIONS(1004), 4, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1002), 37, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_DOT_DOT, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - aux_sym__unquoted_in_list_token1, - ACTIONS(2549), 32, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + [71669] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1035), 1, + sym__entry_separator, + STATE(3562), 1, + sym_comment, + ACTIONS(1033), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_LPAREN2, + anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_PLUS, + anon_sym_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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -410237,6 +369978,9 @@ 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, @@ -410249,38 +369993,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [71354] = 4, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [71724] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(3980), 1, + ACTIONS(1022), 1, + sym__entry_separator, + STATE(3563), 1, sym_comment, - ACTIONS(3505), 12, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - aux_sym__unquoted_in_list_token1, - ACTIONS(3507), 32, + ACTIONS(1020), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_LPAREN2, + anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_PLUS, + anon_sym_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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -410288,6 +370029,9 @@ 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, @@ -410300,41 +370044,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [71409] = 7, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [71779] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8342), 1, - anon_sym_DOT, - STATE(3935), 1, - sym_path, - STATE(3981), 1, + ACTIONS(7818), 1, + anon_sym_PIPE, + ACTIONS(7954), 1, + anon_sym_LF, + STATE(3487), 1, + aux_sym_pipe_element_repeat1, + STATE(3564), 1, sym_comment, - STATE(4417), 1, - sym_cell_path, - ACTIONS(1148), 9, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1150), 32, + ACTIONS(7952), 41, + sym_cmd_identifier, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_try, + anon_sym_return, + anon_sym_where, + anon_sym_not, 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -410342,58 +370088,57 @@ 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, - [71470] = 7, - ACTIONS(113), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [71838] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8403), 1, - anon_sym_DOT, - STATE(3982), 1, + ACTIONS(7956), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7958), 1, + aux_sym__immediate_decimal_token2, + STATE(3565), 1, sym_comment, - STATE(4010), 1, - aux_sym_cell_path_repeat1, - STATE(4308), 1, - sym_path, - ACTIONS(989), 4, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(987), 37, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(893), 15, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(895), 27, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -410404,43 +370149,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - [71531] = 5, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [71897] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8356), 1, - aux_sym__immediate_decimal_token2, - STATE(3983), 1, + ACTIONS(3314), 1, + sym__entry_separator, + STATE(3566), 1, sym_comment, - ACTIONS(2581), 11, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, + ACTIONS(1844), 2, anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2583), 32, + aux_sym_unquoted_token2, + ACTIONS(3312), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_PLUS, 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -410448,6 +370187,9 @@ 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, @@ -410460,21 +370202,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [71588] = 6, + aux_sym__unquoted_in_list_token1, + [71954] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - ACTIONS(4293), 1, + ACTIONS(1091), 1, sym__entry_separator, - STATE(3984), 1, + ACTIONS(1149), 1, + aux_sym__unquoted_in_list_token7, + ACTIONS(3783), 1, + anon_sym_LPAREN2, + ACTIONS(7780), 1, + anon_sym_RBRACK, + STATE(3567), 1, sym_comment, - STATE(10503), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4291), 41, + ACTIONS(7778), 40, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, @@ -410513,40 +370257,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [71647] = 6, - ACTIONS(3), 1, + [72015] = 8, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2847), 1, + ACTIONS(7265), 1, anon_sym_LPAREN2, - STATE(3985), 1, + ACTIONS(7962), 1, + anon_sym_COMMA, + ACTIONS(7964), 1, + anon_sym_RBRACK, + ACTIONS(7966), 1, + sym__entry_separator, + STATE(3568), 1, sym_comment, - ACTIONS(2851), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(2843), 10, + STATE(10094), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7960), 39, + anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, + 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, anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, aux_sym__unquoted_in_list_token1, - ACTIONS(2845), 31, + [72078] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(3569), 1, + sym_comment, + ACTIONS(903), 7, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(901), 37, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + anon_sym_DOT_DOT2, + anon_sym_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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -410554,26 +370353,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_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [71706] = 5, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + aux_sym_unquoted_token5, + [72133] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8198), 1, + ACTIONS(7968), 1, aux_sym__immediate_decimal_token2, - STATE(3986), 1, + STATE(3570), 1, sym_comment, - ACTIONS(2437), 11, + ACTIONS(2356), 11, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -410583,9 +370380,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, + aux_sym_unquoted_token2, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2439), 32, + ACTIONS(2358), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -410618,28 +370415,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [71763] = 7, + [72190] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8342), 1, - anon_sym_DOT, - STATE(3935), 1, - sym_path, - STATE(3987), 1, + ACTIONS(7730), 1, + aux_sym__immediate_decimal_token2, + STATE(3571), 1, sym_comment, - STATE(4429), 1, - sym_cell_path, - ACTIONS(1179), 9, + ACTIONS(2229), 11, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, + aux_sym_unquoted_token2, aux_sym__unquoted_in_list_token1, - ACTIONS(1181), 32, + ACTIONS(2231), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -410672,33 +370467,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [71824] = 6, + [72247] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8405), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8407), 1, - aux_sym__immediate_decimal_token2, - STATE(3988), 1, + ACTIONS(2231), 1, + sym__entry_separator, + STATE(3572), 1, sym_comment, - ACTIONS(2439), 3, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2437), 39, - anon_sym_SEMI, + ACTIONS(2229), 43, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_not, - anon_sym_DOT_DOT2, + anon_sym_PLUS, anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -410722,21 +370508,24 @@ 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, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_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, - [71883] = 6, + aux_sym__unquoted_in_list_token1, + [72302] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2583), 1, + ACTIONS(2364), 1, sym__entry_separator, - ACTIONS(8409), 1, - anon_sym_DOT, - ACTIONS(8411), 1, - aux_sym__immediate_decimal_token2, - STATE(3989), 1, + STATE(3573), 1, sym_comment, - ACTIONS(2581), 41, + ACTIONS(2362), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -410747,6 +370536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -410777,28 +370567,28 @@ 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, aux_sym__unquoted_in_list_token1, - [71942] = 6, + [72357] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8413), 1, - aux_sym__immediate_decimal_token1, - STATE(3990), 1, + ACTIONS(7970), 1, + aux_sym__immediate_decimal_token2, + STATE(3574), 1, sym_comment, - ACTIONS(2851), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(3748), 9, + ACTIONS(2362), 11, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, + aux_sym_unquoted_token2, aux_sym__unquoted_in_list_token1, - ACTIONS(3750), 32, + ACTIONS(2364), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -410831,41 +370621,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [72001] = 7, - ACTIONS(3), 1, + [72414] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8342), 1, - anon_sym_DOT, - STATE(3935), 1, - sym_path, - STATE(3991), 1, + ACTIONS(2404), 1, + sym__entry_separator, + STATE(3575), 1, sym_comment, - STATE(4482), 1, - sym_cell_path, - ACTIONS(8216), 9, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(8415), 32, + ACTIONS(2402), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -410873,6 +370655,9 @@ 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, @@ -410885,17 +370670,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [72062] = 7, + aux_sym_unquoted_token2, + aux_sym__unquoted_in_list_token1, + [72469] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8403), 1, + ACTIONS(7884), 1, anon_sym_DOT, - STATE(3982), 1, - sym_path, - STATE(3992), 1, + STATE(3518), 1, + aux_sym_cell_path_repeat1, + STATE(3576), 1, sym_comment, - STATE(4383), 1, - sym_cell_path, + STATE(3779), 1, + sym_path, ACTIONS(1012), 4, ts_builtin_sym_end, anon_sym_LF, @@ -410903,17 +370690,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, ACTIONS(1010), 37, anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -410939,29 +370726,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - [72123] = 6, + [72530] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4625), 1, - anon_sym_DOT_DOT2, - STATE(3993), 1, + ACTIONS(7968), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7972), 1, + anon_sym_DOT, + STATE(3577), 1, sym_comment, - ACTIONS(4627), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(4016), 11, + ACTIONS(2356), 10, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, + aux_sym_unquoted_token2, aux_sym__unquoted_in_list_token1, - ACTIONS(4018), 30, + ACTIONS(2358), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -410969,6 +370754,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, 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, @@ -410992,85 +370779,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [72182] = 4, - ACTIONS(113), 1, + [72589] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1061), 1, - sym__entry_separator, - STATE(3994), 1, + ACTIONS(7975), 1, + anon_sym_DOT_DOT2, + STATE(3578), 1, sym_comment, - ACTIONS(1059), 43, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(7977), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3691), 11, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_QMARK2, anon_sym_PLUS, - anon_sym_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, anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, aux_sym__unquoted_in_list_token1, - [72237] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1065), 1, - sym__entry_separator, - STATE(3995), 1, - sym_comment, - ACTIONS(1063), 43, + ACTIONS(3693), 30, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_PLUS, - anon_sym_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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -411078,9 +370820,6 @@ 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, @@ -411093,27 +370832,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - [72292] = 5, + [72648] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8417), 1, - aux_sym__immediate_decimal_token2, - STATE(3996), 1, + ACTIONS(7979), 1, + anon_sym_DOT_DOT2, + STATE(3579), 1, sym_comment, - ACTIONS(2581), 11, + ACTIONS(7981), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3699), 11, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token2, aux_sym__unquoted_in_list_token1, - ACTIONS(2583), 32, + ACTIONS(3701), 30, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -411121,8 +370862,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, 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, @@ -411146,26 +370885,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [72349] = 5, + [72707] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8280), 1, - aux_sym__immediate_decimal_token2, - STATE(3997), 1, + ACTIONS(7983), 1, + anon_sym_DOT_DOT2, + STATE(3580), 1, sym_comment, - ACTIONS(2437), 11, + ACTIONS(7985), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3711), 11, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token2, aux_sym__unquoted_in_list_token1, - ACTIONS(2439), 32, + ACTIONS(3713), 30, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -411173,8 +370915,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, 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, @@ -411198,26 +370938,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [72406] = 5, + [72766] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8419), 1, - aux_sym__immediate_decimal_token2, - STATE(3998), 1, + ACTIONS(7987), 1, + anon_sym_DOT_DOT2, + STATE(3581), 1, sym_comment, - ACTIONS(2547), 11, + ACTIONS(7989), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3741), 11, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2549), 32, + ACTIONS(3743), 30, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -411225,8 +370968,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, 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, @@ -411250,33 +370991,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [72463] = 4, - ACTIONS(113), 1, + [72825] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2439), 1, - sym__entry_separator, - STATE(3999), 1, + ACTIONS(3316), 1, + anon_sym_LPAREN2, + STATE(3582), 1, sym_comment, - ACTIONS(2437), 43, + ACTIONS(1844), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(3312), 10, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(3314), 31, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -411284,9 +371032,6 @@ 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, @@ -411299,16 +371044,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_token2, - aux_sym__unquoted_in_list_token1, - [72518] = 4, + [72884] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(3356), 1, sym__entry_separator, - STATE(4000), 1, + STATE(3583), 1, sym_comment, - ACTIONS(2547), 43, + ACTIONS(3362), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(3354), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -411319,7 +371065,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -411350,28 +371095,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, aux_sym__unquoted_in_list_token1, - [72573] = 5, + [72941] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8421), 1, - aux_sym__immediate_decimal_token2, - STATE(4001), 1, + STATE(3584), 1, sym_comment, - ACTIONS(2547), 11, + ACTIONS(3767), 12, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token2, aux_sym__unquoted_in_list_token1, - ACTIONS(2549), 32, + ACTIONS(3769), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -411379,8 +371122,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DASH_DASH, 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, @@ -411404,33 +371147,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [72630] = 4, + [72996] = 30, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3116), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3118), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3122), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3707), 1, + anon_sym_COLON, + ACTIONS(4672), 1, + aux_sym_unquoted_token1, + ACTIONS(7897), 1, + anon_sym_LPAREN, + ACTIONS(7899), 1, + anon_sym_DOLLAR, + ACTIONS(7901), 1, + anon_sym_DOT_DOT, + ACTIONS(7905), 1, + anon_sym_DOT2, + ACTIONS(7909), 1, + sym_val_date, + ACTIONS(7911), 1, + anon_sym_DQUOTE, + ACTIONS(7915), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(7917), 1, + anon_sym_DOLLAR_DQUOTE, + STATE(1322), 1, + sym__var, + STATE(2117), 1, + sym__inter_single_quotes, + STATE(2128), 1, + sym__inter_double_quotes, + STATE(2196), 1, + sym__str_double_quotes, + STATE(2278), 1, + sym_unquoted, + STATE(3585), 1, + sym_comment, + STATE(8009), 1, + sym__val_number_decimal, + STATE(10050), 1, + sym__val_range, + STATE(10641), 1, + sym_val_bool, + STATE(10833), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3114), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(7903), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(7913), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(7907), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2387), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(3685), 9, + anon_sym_null, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + [73103] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3507), 1, - sym__entry_separator, - STATE(4002), 1, + ACTIONS(7991), 1, + anon_sym_DOT, + STATE(3779), 1, + sym_path, + STATE(3586), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(987), 4, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(985), 37, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + [73162] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3587), 1, sym_comment, - ACTIONS(3505), 43, + ACTIONS(3721), 12, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(3723), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -411438,9 +371316,6 @@ 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, @@ -411453,31 +371328,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_token2, - aux_sym__unquoted_in_list_token1, - [72685] = 7, + [73217] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1160), 1, - sym__entry_separator, - ACTIONS(1284), 1, - aux_sym__unquoted_in_list_token7, - ACTIONS(4895), 1, - anon_sym_LPAREN2, - ACTIONS(8213), 1, - anon_sym_RBRACK, - STATE(4003), 1, + STATE(3588), 1, sym_comment, - ACTIONS(8211), 40, + ACTIONS(936), 7, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(934), 37, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_PLUS, + anon_sym_not, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -411500,26 +371376,20 @@ 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, - aux_sym__unquoted_in_list_token1, - [72746] = 6, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + aux_sym_unquoted_token5, + [73272] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3878), 1, + ACTIONS(3358), 1, anon_sym_LPAREN2, - STATE(4004), 1, + STATE(3589), 1, sym_comment, - ACTIONS(2006), 2, + ACTIONS(3362), 2, anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(3874), 10, + ACTIONS(3354), 10, anon_sym_LPAREN, anon_sym_DASH, anon_sym_DOT_DOT, @@ -411530,7 +371400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3876), 31, + ACTIONS(3356), 31, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -411562,16 +371432,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [72805] = 6, + [73331] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8417), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(8423), 1, - anon_sym_DOT, - STATE(4005), 1, + ACTIONS(3775), 1, + anon_sym_LPAREN2, + STATE(3590), 1, sym_comment, - ACTIONS(2581), 10, + ACTIONS(1886), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(3771), 10, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -411580,13 +371452,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token2, aux_sym__unquoted_in_list_token1, - ACTIONS(2583), 32, + ACTIONS(3773), 31, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, @@ -411615,23 +371485,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [72864] = 8, + [73390] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7748), 1, + ACTIONS(2187), 1, anon_sym_LPAREN2, - ACTIONS(8428), 1, - anon_sym_COMMA, - ACTIONS(8430), 1, - anon_sym_RBRACK, - ACTIONS(8432), 1, + ACTIONS(4198), 1, sym__entry_separator, - STATE(4006), 1, + STATE(3591), 1, sym_comment, - STATE(10595), 1, + STATE(10191), 1, sym__expr_parenthesized_immediate, - ACTIONS(8426), 39, + ACTIONS(4196), 41, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, @@ -411670,41 +371538,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [72927] = 5, - ACTIONS(113), 1, + [73449] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8436), 1, - anon_sym_LF, - ACTIONS(8439), 1, - anon_sym_PIPE, - STATE(4007), 2, + STATE(3592), 1, sym_comment, - aux_sym_pipe_element_repeat1, - ACTIONS(8434), 41, - sym_cmd_identifier, + ACTIONS(1886), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(3771), 9, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(3773), 32, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_where, - anon_sym_not, 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -411712,85 +371577,62 @@ 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_CARET, - [72984] = 30, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + [73505] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_DOLLAR, - ACTIONS(2795), 1, + ACTIONS(7994), 1, + anon_sym_DOT_DOT2, + STATE(3593), 1, + sym_comment, + ACTIONS(7996), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3691), 11, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - ACTIONS(2797), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2801), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3984), 1, - anon_sym_COLON, - ACTIONS(4611), 1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(8442), 1, + ACTIONS(3693), 29, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(8444), 1, - anon_sym_DOT_DOT, - ACTIONS(8448), 1, - anon_sym_DOT2, - ACTIONS(8452), 1, - sym_val_date, - ACTIONS(8454), 1, - anon_sym_DQUOTE, - ACTIONS(8458), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(8460), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(1690), 1, - sym__var, - STATE(2589), 1, - sym__inter_single_quotes, - STATE(2590), 1, - sym__inter_double_quotes, - STATE(2627), 1, - sym__str_double_quotes, - STATE(2646), 1, - sym_unquoted, - STATE(4008), 1, - sym_comment, - STATE(8428), 1, - sym__val_number_decimal, - STATE(10559), 1, - sym__val_range, - STATE(10861), 1, - sym_val_bool, - STATE(11114), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(2793), 2, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(8446), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(8456), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(8450), 3, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2645), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(3910), 9, - anon_sym_null, + 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, @@ -411799,18 +371641,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [73091] = 7, + [73563] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8342), 1, - anon_sym_DOT, - STATE(3935), 1, - sym_path, - STATE(4009), 1, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + STATE(3594), 1, sym_comment, - STATE(4501), 1, - sym_cell_path, - ACTIONS(8464), 9, + STATE(10434), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4422), 10, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -411820,11 +371661,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(8462), 32, + ACTIONS(4424), 31, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, @@ -411853,90 +371693,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [73152] = 7, - ACTIONS(113), 1, + [73621] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8403), 1, - anon_sym_DOT, - STATE(3962), 1, - aux_sym_cell_path_repeat1, - STATE(4010), 1, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + STATE(3595), 1, sym_comment, - STATE(4308), 1, - sym_path, - ACTIONS(1008), 4, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1006), 37, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, + STATE(10434), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4426), 10, + anon_sym_LPAREN, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - [73213] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - ACTIONS(4037), 1, - anon_sym_LPAREN2, - ACTIONS(8466), 1, - aux_sym_command_token1, - STATE(4011), 1, - sym_comment, - ACTIONS(4035), 41, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(4428), 31, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -411944,9 +371733,58 @@ 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, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + [73679] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7998), 1, + anon_sym_DOT_DOT2, + STATE(3596), 1, + sym_comment, + ACTIONS(8000), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3699), 11, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(3701), 29, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -411959,37 +371797,35 @@ 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, - [73272] = 6, + [73737] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4010), 1, - anon_sym_LPAREN2, - STATE(4012), 1, + ACTIONS(8002), 1, + anon_sym_DOT_DOT2, + STATE(3597), 1, sym_comment, - ACTIONS(4012), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(4006), 10, - anon_sym_LPAREN, + ACTIONS(8004), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3711), 11, anon_sym_DASH, + anon_sym__, anon_sym_DOT_DOT, - anon_sym_PLUS, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(4008), 31, + aux_sym_unquoted_token1, + ACTIONS(3713), 29, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_RBRACE, anon_sym_null, anon_sym_true, anon_sym_false, @@ -412013,42 +371849,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [73331] = 6, - ACTIONS(113), 1, + [73795] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8304), 1, - anon_sym_PIPE, - ACTIONS(8470), 1, - anon_sym_LF, - STATE(4007), 1, - aux_sym_pipe_element_repeat1, - STATE(4013), 1, + ACTIONS(8006), 1, + anon_sym_DOT, + STATE(3598), 1, sym_comment, - ACTIONS(8468), 41, - sym_cmd_identifier, + STATE(3600), 1, + sym_path, + STATE(4186), 1, + sym_cell_path, + ACTIONS(1002), 9, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1004), 31, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_where, - anon_sym_not, + 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -412056,25 +371890,27 @@ 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_CARET, - [73390] = 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, + [73855] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4014), 1, + STATE(3599), 1, sym_comment, - ACTIONS(1172), 12, + ACTIONS(2229), 12, anon_sym_DASH, + anon_sym__, anon_sym_DOT_DOT, - anon_sym_PLUS, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -412083,15 +371919,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1174), 32, + aux_sym_unquoted_token1, + ACTIONS(2231), 31, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_null, @@ -412117,42 +371952,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [73445] = 6, - ACTIONS(113), 1, + [73909] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8304), 1, - anon_sym_PIPE, - ACTIONS(8474), 1, - anon_sym_LF, - STATE(4007), 1, - aux_sym_pipe_element_repeat1, - STATE(4015), 1, + ACTIONS(8006), 1, + anon_sym_DOT, + STATE(3600), 1, sym_comment, - ACTIONS(8472), 41, - sym_cmd_identifier, + STATE(3602), 1, + aux_sym_cell_path_repeat1, + STATE(3909), 1, + sym_path, + ACTIONS(1010), 9, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1012), 31, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_where, - anon_sym_not, + 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -412160,45 +371993,50 @@ 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_CARET, - [73504] = 5, - ACTIONS(113), 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, + [73969] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3520), 1, - sym__entry_separator, - STATE(4016), 1, + STATE(3601), 1, sym_comment, - ACTIONS(1934), 2, + ACTIONS(3362), 2, anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(3518), 41, + ACTIONS(3354), 9, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(3356), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -412206,9 +372044,6 @@ 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, @@ -412221,76 +372056,51 @@ 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, - [73561] = 30, + [74025] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_DOLLAR, - ACTIONS(2795), 1, + ACTIONS(8006), 1, + anon_sym_DOT, + STATE(3602), 1, + sym_comment, + STATE(3603), 1, + aux_sym_cell_path_repeat1, + STATE(3909), 1, + sym_path, + ACTIONS(1006), 9, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - ACTIONS(2797), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2801), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3880), 1, - anon_sym_COLON, - ACTIONS(4611), 1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(8442), 1, + ACTIONS(1008), 31, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(8444), 1, - anon_sym_DOT_DOT, - ACTIONS(8448), 1, - anon_sym_DOT2, - ACTIONS(8452), 1, - sym_val_date, - ACTIONS(8454), 1, - anon_sym_DQUOTE, - ACTIONS(8458), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(8460), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(1690), 1, - sym__var, - STATE(2589), 1, - sym__inter_single_quotes, - STATE(2590), 1, - sym__inter_double_quotes, - STATE(2627), 1, - sym__str_double_quotes, - STATE(2646), 1, - sym_unquoted, - STATE(4017), 1, - sym_comment, - STATE(8428), 1, - sym__val_number_decimal, - STATE(10559), 1, - sym__val_range, - STATE(10861), 1, - sym_val_bool, - STATE(11114), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(2793), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(8446), 2, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(8456), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(8450), 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_token1, + aux_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(2645), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(3910), 9, - anon_sym_null, + 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, @@ -412299,34 +372109,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [73668] = 4, + [74085] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4018), 1, + ACTIONS(8008), 1, + anon_sym_DOT, + STATE(3909), 1, + sym_path, + STATE(3603), 2, sym_comment, - ACTIONS(1109), 13, + aux_sym_cell_path_repeat1, + ACTIONS(985), 9, anon_sym_DASH, anon_sym__, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(1111), 31, + ACTIONS(987), 31, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, - 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, @@ -412350,34 +372161,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [73723] = 5, - ACTIONS(113), 1, + [74143] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2549), 1, - sym__entry_separator, - ACTIONS(8476), 1, - aux_sym__immediate_decimal_token2, - STATE(4019), 1, + STATE(3604), 1, sym_comment, - ACTIONS(2547), 41, + ACTIONS(1844), 2, + anon_sym_DOT, + aux_sym__unquoted_in_list_token2, + ACTIONS(3312), 9, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(3314), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -412385,9 +372200,6 @@ 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, @@ -412400,13 +372212,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - [73779] = 4, + [74199] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(4020), 1, + ACTIONS(926), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(1379), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(1381), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8011), 1, + anon_sym_DOT, + ACTIONS(8013), 1, + aux_sym_unquoted_token3, + ACTIONS(8015), 1, + aux_sym_unquoted_token5, + STATE(3605), 1, sym_comment, - ACTIONS(909), 17, + STATE(8796), 1, + sym__immediate_decimal, + ACTIONS(920), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -412419,12 +372244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token5, - ACTIONS(911), 26, + ACTIONS(922), 24, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -412449,27 +372269,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [73833] = 4, + [74267] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1111), 1, - sym__entry_separator, - STATE(4021), 1, + ACTIONS(8017), 1, + anon_sym_DOT, + ACTIONS(8020), 1, + aux_sym__immediate_decimal_token2, + STATE(3606), 1, sym_comment, - ACTIONS(1109), 42, + ACTIONS(2358), 5, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2356), 36, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT, + anon_sym_not, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -412492,37 +372318,27 @@ 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, - aux_sym__unquoted_in_list_token1, - [73887] = 6, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + aux_sym_unquoted_token2, + [74325] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1284), 1, - aux_sym_unquoted_token6, - ACTIONS(4895), 1, - anon_sym_LPAREN2, - STATE(4022), 1, + ACTIONS(2358), 1, + sym__entry_separator, + ACTIONS(7944), 1, + aux_sym__immediate_decimal_token2, + STATE(3607), 1, sym_comment, - ACTIONS(1160), 6, + ACTIONS(2356), 41, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1158), 35, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DOT_DOT_EQ, @@ -412544,6 +372360,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, @@ -412553,89 +372372,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [73945] = 6, + [74381] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8478), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8480), 1, + ACTIONS(2231), 1, + sym__entry_separator, + ACTIONS(7893), 1, aux_sym__immediate_decimal_token2, - STATE(4023), 1, - sym_comment, - ACTIONS(911), 4, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - ACTIONS(909), 37, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - [74003] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4024), 1, + STATE(3608), 1, sym_comment, - ACTIONS(4000), 12, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(4002), 31, + ACTIONS(2229), 41, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_PLUS, + 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -412643,6 +372407,9 @@ 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, @@ -412655,20 +372422,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [74057] = 6, + aux_sym__unquoted_in_list_token1, + [74437] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8482), 1, - anon_sym_DOT_DOT2, - STATE(4025), 1, + STATE(3609), 1, sym_comment, - ACTIONS(8484), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3518), 11, + ACTIONS(2362), 12, anon_sym_DASH, anon_sym__, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -412677,13 +372441,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(3520), 29, + ACTIONS(2364), 31, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -412707,37 +372473,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [74115] = 4, - ACTIONS(3), 1, + [74491] = 5, + ACTIONS(113), 1, anon_sym_POUND, - STATE(4026), 1, + ACTIONS(2364), 1, + sym__entry_separator, + ACTIONS(8022), 1, + aux_sym__immediate_decimal_token2, + STATE(3610), 1, sym_comment, - ACTIONS(1168), 12, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1170), 31, + ACTIONS(2362), 41, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_PLUS, + 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -412745,6 +372508,9 @@ 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, @@ -412757,28 +372523,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [74169] = 6, + aux_sym__unquoted_in_list_token1, + [74547] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - ACTIONS(4631), 1, - anon_sym_LPAREN2, - STATE(4027), 1, + STATE(3611), 1, sym_comment, - ACTIONS(1255), 6, + ACTIONS(8026), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(8024), 41, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1253), 35, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DOT_DOT_EQ, @@ -412800,6 +372562,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, @@ -412809,28 +372574,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [74227] = 6, + [74601] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - ACTIONS(4631), 1, - anon_sym_LPAREN2, - STATE(4028), 1, + ACTIONS(4738), 1, + sym__entry_separator, + ACTIONS(8028), 1, + sym_long_flag_identifier, + STATE(3612), 1, sym_comment, - ACTIONS(1275), 6, + ACTIONS(4734), 41, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1273), 35, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DOT_DOT_EQ, @@ -412852,6 +372613,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, @@ -412861,35 +372625,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [74285] = 6, + [74657] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8486), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8488), 1, - aux_sym__immediate_decimal_token2, - STATE(4029), 1, + STATE(3613), 1, sym_comment, - ACTIONS(2437), 9, + ACTIONS(2402), 12, anon_sym_DASH, + anon_sym__, anon_sym_DOT_DOT, - anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2439), 32, + aux_sym_unquoted_token1, + ACTIONS(2404), 31, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -412913,71 +372675,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [74343] = 8, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(3520), 1, - anon_sym_LF, - ACTIONS(3522), 1, - anon_sym_LPAREN2, - ACTIONS(8490), 1, - anon_sym_DOT_DOT2, - STATE(4030), 1, - sym_comment, - ACTIONS(1934), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(8492), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3518), 36, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [74405] = 6, + [74711] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8494), 1, + ACTIONS(8030), 1, anon_sym_DOT, - STATE(4465), 1, - sym_path, - STATE(4031), 2, + STATE(3614), 1, sym_comment, + STATE(3629), 1, aux_sym_cell_path_repeat1, - ACTIONS(999), 13, + STATE(3999), 1, + sym_path, + ACTIONS(1006), 13, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -412991,7 +372700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - ACTIONS(1001), 27, + ACTIONS(1008), 27, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -413019,15 +372728,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [74463] = 5, + [74771] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4032), 1, + STATE(3615), 1, sym_comment, - ACTIONS(1934), 2, + ACTIONS(3362), 2, anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(3518), 9, + aux_sym__unquoted_in_list_token2, + ACTIONS(3354), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -413037,7 +372746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3520), 32, + ACTIONS(3356), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -413070,88 +372779,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [74519] = 4, - ACTIONS(3), 1, + [74827] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(4033), 1, + STATE(3616), 1, sym_comment, - ACTIONS(917), 17, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token5, - ACTIONS(919), 26, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(1157), 7, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1155), 36, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [74573] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8497), 1, - anon_sym_QMARK2, - STATE(4034), 1, - sym_comment, - ACTIONS(1070), 10, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1072), 32, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - 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_token1, aux_sym__val_number_decimal_token2, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -413159,10 +372815,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, @@ -413171,38 +372827,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [74629] = 5, - ACTIONS(3), 1, + aux_sym_unquoted_token6, + aux_sym__unquoted_in_list_token1, + [74881] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8497), 1, - anon_sym_QMARK2, - STATE(4035), 1, + ACTIONS(4957), 1, + sym__entry_separator, + STATE(3617), 1, sym_comment, - ACTIONS(1070), 10, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1072), 32, + ACTIONS(4955), 42, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_PLUS, 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -413210,6 +372863,9 @@ 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, @@ -413222,34 +372878,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [74685] = 7, + aux_sym__unquoted_in_list_token1, + [74935] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8499), 1, - anon_sym_DOT, - STATE(4036), 1, + STATE(3618), 1, sym_comment, - STATE(4038), 1, - sym_path, - STATE(4628), 1, - sym_cell_path, - ACTIONS(1010), 9, + ACTIONS(3650), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(3644), 9, anon_sym_DASH, - anon_sym__, anon_sym_DOT_DOT, + anon_sym_PLUS, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1012), 31, + aux_sym__unquoted_in_list_token1, + ACTIONS(3646), 32, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -413275,86 +372930,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [74745] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(8501), 1, - anon_sym_DOT, - ACTIONS(8504), 1, - aux_sym__immediate_decimal_token2, - STATE(4037), 1, - sym_comment, - ACTIONS(2583), 5, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2581), 36, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - aux_sym_unquoted_token2, - [74803] = 7, + [74991] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8499), 1, - anon_sym_DOT, - STATE(4038), 1, + STATE(3619), 1, sym_comment, - STATE(4039), 1, - aux_sym_cell_path_repeat1, - STATE(4327), 1, - sym_path, - ACTIONS(987), 9, + ACTIONS(1886), 2, + anon_sym_DOT, + aux_sym__unquoted_in_list_token2, + ACTIONS(3771), 9, anon_sym_DASH, - anon_sym__, anon_sym_DOT_DOT, + anon_sym_PLUS, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(989), 31, + aux_sym__unquoted_in_list_token1, + ACTIONS(3773), 32, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -413380,34 +372981,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [74863] = 7, + [75047] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8499), 1, + STATE(3620), 1, + sym_comment, + ACTIONS(893), 17, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, anon_sym_DOT, - STATE(4039), 1, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + ACTIONS(895), 26, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [75101] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3621), 1, sym_comment, - STATE(4040), 1, - aux_sym_cell_path_repeat1, - STATE(4327), 1, - sym_path, - ACTIONS(1006), 9, + ACTIONS(3650), 2, + anon_sym_DOT, + aux_sym__unquoted_in_list_token2, + ACTIONS(3644), 9, anon_sym_DASH, - anon_sym__, anon_sym_DOT_DOT, + anon_sym_PLUS, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1008), 31, + aux_sym__unquoted_in_list_token1, + ACTIONS(3646), 32, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -413433,33 +373082,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [74923] = 6, + [75157] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8506), 1, + ACTIONS(8032), 1, anon_sym_DOT, - STATE(4327), 1, - sym_path, - STATE(4040), 2, + ACTIONS(8034), 1, + aux_sym__immediate_decimal_token2, + STATE(3622), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(999), 9, + ACTIONS(2356), 9, anon_sym_DASH, - anon_sym__, anon_sym_DOT_DOT, + anon_sym_PLUS, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1001), 31, + aux_sym__unquoted_in_list_token1, + ACTIONS(2358), 32, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -413485,26 +373134,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [74981] = 5, + [75215] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2583), 1, - sym__entry_separator, - ACTIONS(8411), 1, + ACTIONS(8036), 1, aux_sym__immediate_decimal_token2, - STATE(4041), 1, + STATE(3623), 1, sym_comment, - ACTIONS(2581), 41, + ACTIONS(2364), 5, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2362), 37, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_PLUS, + anon_sym_not, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -413527,48 +373182,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, - aux_sym__unquoted_in_list_token1, - [75037] = 6, - ACTIONS(3), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + aux_sym_unquoted_token2, + [75271] = 8, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8509), 1, + ACTIONS(3314), 1, + anon_sym_LF, + ACTIONS(3316), 1, + anon_sym_LPAREN2, + ACTIONS(8038), 1, anon_sym_DOT_DOT2, - STATE(4042), 1, + STATE(3624), 1, sym_comment, - ACTIONS(8511), 2, + ACTIONS(1844), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(8040), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(3949), 11, + ACTIONS(3312), 36, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym__, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, + anon_sym_not, 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, anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, - aux_sym_unquoted_token1, - ACTIONS(3951), 29, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [75333] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(3625), 1, + sym_comment, + ACTIONS(8044), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(8042), 41, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_PLUS, + 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -413576,6 +373273,9 @@ 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, @@ -413588,35 +373288,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [75095] = 6, + aux_sym__unquoted_in_list_token1, + [75387] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8513), 1, - anon_sym_DOT_DOT2, - STATE(4043), 1, + ACTIONS(8046), 1, + anon_sym_DOT, + ACTIONS(8049), 1, + aux_sym__immediate_decimal_token2, + STATE(3626), 1, sym_comment, - ACTIONS(8515), 2, + ACTIONS(911), 16, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + ACTIONS(913), 25, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(3964), 11, + [75445] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4740), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8051), 1, + aux_sym_unquoted_token2, + STATE(3627), 1, + sym_comment, + ACTIONS(920), 9, anon_sym_DASH, - anon_sym__, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_PLUS, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(3966), 29, + aux_sym__unquoted_in_list_token1, + ACTIONS(922), 32, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + 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, @@ -413640,34 +373393,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [75153] = 5, - ACTIONS(113), 1, + [75503] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2439), 1, - sym__entry_separator, - ACTIONS(8386), 1, + ACTIONS(8053), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8055), 1, aux_sym__immediate_decimal_token2, - STATE(4044), 1, + STATE(3628), 1, sym_comment, - ACTIONS(2437), 41, + ACTIONS(2229), 9, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2231), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -413675,9 +373433,6 @@ 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, @@ -413690,15 +373445,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_in_list_token1, - [75209] = 5, + [75561] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8392), 1, - aux_sym__immediate_decimal_token2, - STATE(4045), 1, + ACTIONS(8057), 1, + anon_sym_DOT, + STATE(3999), 1, + sym_path, + STATE(3629), 2, sym_comment, - ACTIONS(923), 15, + aux_sym_cell_path_repeat1, + ACTIONS(985), 13, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -413712,9 +373469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(925), 27, + ACTIONS(987), 27, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -413741,65 +373496,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [75265] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8517), 1, - anon_sym_DOT_DOT2, - STATE(4046), 1, - sym_comment, - ACTIONS(8519), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(4043), 11, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(4045), 29, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__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, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [75323] = 4, + anon_sym_DOT_DOT_LT2, + [75619] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4047), 1, + STATE(3630), 1, sym_comment, - ACTIONS(950), 17, + ACTIONS(901), 17, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -413817,7 +373520,7 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token5, - ACTIONS(952), 26, + ACTIONS(903), 26, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -413844,68 +373547,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [75377] = 8, - ACTIONS(113), 1, + [75673] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2845), 1, - anon_sym_LF, - ACTIONS(2847), 1, - anon_sym_LPAREN2, - ACTIONS(8521), 1, - anon_sym_DOT_DOT2, - STATE(4048), 1, + STATE(3631), 1, sym_comment, - ACTIONS(2851), 2, + ACTIONS(934), 17, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(8523), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2843), 36, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + ACTIONS(936), 26, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [75439] = 5, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [75727] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8525), 1, - aux_sym__immediate_decimal_token2, - STATE(4049), 1, + ACTIONS(8030), 1, + anon_sym_DOT, + STATE(3632), 1, sym_comment, - ACTIONS(923), 17, + STATE(3679), 1, + sym_path, + STATE(4178), 1, + sym_cell_path, + ACTIONS(992), 13, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -413919,13 +373622,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token5, - ACTIONS(925), 25, + ACTIONS(994), 27, anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, @@ -413949,25 +373650,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [75495] = 4, + [75787] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(4050), 1, + ACTIONS(4961), 1, + sym__entry_separator, + STATE(3633), 1, sym_comment, - ACTIONS(1282), 7, + ACTIONS(4959), 42, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1280), 36, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DOT_DOT_EQ, @@ -413989,6 +373688,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, @@ -413997,16 +373699,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_token6, aux_sym__unquoted_in_list_token1, - [75549] = 4, + [75841] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3951), 1, + ACTIONS(940), 1, sym__entry_separator, - STATE(4051), 1, + ACTIONS(7103), 1, + aux_sym__unquoted_in_list_token6, + STATE(3634), 1, sym_comment, - ACTIONS(3949), 42, + ACTIONS(938), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -414015,7 +373718,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DOT_DOT_EQ, @@ -414049,14 +373751,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [75603] = 4, + [75897] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3966), 1, + ACTIONS(8060), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8062), 1, + aux_sym__immediate_decimal_token2, + STATE(3635), 1, + sym_comment, + ACTIONS(2231), 4, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2229), 37, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + anon_sym_DOT_DOT2, + anon_sym_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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + aux_sym_unquoted_token2, + [75955] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(4965), 1, sym__entry_separator, - STATE(4052), 1, + STATE(3636), 1, sym_comment, - ACTIONS(3964), 42, + ACTIONS(4963), 42, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -414099,35 +373853,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [75657] = 6, + [76009] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5003), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8527), 1, - aux_sym_unquoted_token2, - STATE(4053), 1, + STATE(3637), 1, sym_comment, - ACTIONS(936), 9, + ACTIONS(1061), 12, anon_sym_DASH, + anon_sym__, anon_sym_DOT_DOT, - anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(938), 32, + aux_sym_unquoted_token1, + ACTIONS(1063), 31, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -414151,16 +373903,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [75715] = 6, + [76063] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8529), 1, - anon_sym_DOT, - ACTIONS(8531), 1, - aux_sym__immediate_decimal_token2, - STATE(4054), 1, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + STATE(3638), 1, sym_comment, - ACTIONS(2581), 9, + STATE(9999), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4196), 10, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -414170,11 +373923,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2583), 32, + ACTIONS(4198), 31, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, @@ -414203,14 +373955,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [75773] = 4, + [76121] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4045), 1, + ACTIONS(3693), 1, sym__entry_separator, - STATE(4055), 1, + STATE(3639), 1, sym_comment, - ACTIONS(4043), 42, + ACTIONS(3691), 42, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -414253,40 +374005,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [75827] = 5, - ACTIONS(113), 1, + [76175] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8308), 1, - aux_sym__immediate_decimal_token2, - STATE(4056), 1, + STATE(3640), 1, sym_comment, - ACTIONS(2439), 5, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2437), 37, - anon_sym_SEMI, + ACTIONS(2229), 11, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2231), 32, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - anon_sym_DOT_DOT2, - anon_sym_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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -414294,102 +374043,49 @@ 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, - aux_sym_unquoted_token2, - [75883] = 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, + [76229] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8533), 1, - anon_sym_DOT, - ACTIONS(8536), 1, - aux_sym__immediate_decimal_token2, - STATE(4057), 1, + STATE(3641), 1, sym_comment, - ACTIONS(923), 16, - sym_identifier, - anon_sym_GT, + ACTIONS(1033), 10, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, + anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token5, - ACTIONS(925), 25, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1035), 33, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [75941] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(8504), 1, - aux_sym__immediate_decimal_token2, - STATE(4058), 1, - sym_comment, - ACTIONS(2583), 5, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2581), 37, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - anon_sym_DOT_DOT2, - anon_sym_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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -414397,30 +374093,28 @@ 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, - aux_sym_unquoted_token2, - [75997] = 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, + [76283] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8538), 1, - anon_sym_DOT_DOT2, - STATE(4059), 1, + STATE(3642), 1, sym_comment, - ACTIONS(8540), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3866), 11, + ACTIONS(3721), 12, anon_sym_DASH, anon_sym__, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -414429,13 +374123,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(3868), 29, + ACTIONS(3723), 31, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -414459,23 +374155,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [76055] = 4, + [76337] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(4060), 1, - sym_comment, - ACTIONS(8320), 2, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + ACTIONS(3727), 1, anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(8318), 41, + STATE(3643), 1, + sym_comment, + ACTIONS(1161), 6, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1159), 35, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DOT_DOT_EQ, @@ -414497,9 +374198,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, @@ -414509,88 +374207,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [76109] = 5, - ACTIONS(3), 1, + [76395] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8542), 1, - aux_sym__immediate_decimal_token2, - STATE(4061), 1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + ACTIONS(3841), 1, + anon_sym_LPAREN2, + STATE(3644), 1, sym_comment, - ACTIONS(917), 15, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(919), 27, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(1131), 6, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1129), 35, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [76165] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4062), 1, - sym_comment, - ACTIONS(1059), 10, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1061), 33, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - 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_token1, aux_sym__val_number_decimal_token2, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -414598,10 +374246,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, @@ -414610,39 +374258,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [76219] = 6, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [76453] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + ACTIONS(3841), 1, anon_sym_LPAREN2, - STATE(4063), 1, + STATE(3645), 1, sym_comment, - STATE(10463), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4291), 10, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(4293), 31, + ACTIONS(1137), 6, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1135), 35, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -414650,10 +374298,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, @@ -414662,126 +374310,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [76277] = 4, + aux_sym__unquoted_in_list_token1, + [76511] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(4064), 1, - sym_comment, - ACTIONS(1065), 4, - ts_builtin_sym_end, + ACTIONS(8066), 1, anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1063), 39, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [76331] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8326), 1, - aux_sym__immediate_decimal_token2, - STATE(4065), 1, - sym_comment, - ACTIONS(909), 17, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token5, - ACTIONS(911), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [76387] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(5189), 1, - sym__entry_separator, - STATE(4066), 1, + STATE(3646), 1, sym_comment, - ACTIONS(5187), 42, + ACTIONS(8064), 42, + sym_cmd_identifier, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_PLUS, + anon_sym_try, + anon_sym_return, + anon_sym_where, + anon_sym_not, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -414804,34 +374358,39 @@ 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, - aux_sym__unquoted_in_list_token1, - [76441] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [76565] = 8, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5193), 1, - sym__entry_separator, - STATE(4067), 1, + ACTIONS(3356), 1, + anon_sym_LF, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(8068), 1, + anon_sym_DOT_DOT2, + STATE(3647), 1, sym_comment, - ACTIONS(5191), 42, + ACTIONS(3362), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(8070), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3354), 36, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_PLUS, + anon_sym_not, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -414854,34 +374413,37 @@ 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, - aux_sym__unquoted_in_list_token1, - [76495] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [76627] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5197), 1, - sym__entry_separator, - STATE(4068), 1, + ACTIONS(8072), 1, + anon_sym_DOT, + STATE(3648), 1, sym_comment, - ACTIONS(5195), 42, + STATE(3650), 1, + sym_path, + STATE(4085), 1, + sym_cell_path, + ACTIONS(1004), 3, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1002), 37, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_PLUS, + anon_sym_not, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -414904,47 +374466,35 @@ 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, - aux_sym__unquoted_in_list_token1, - [76549] = 5, - ACTIONS(3), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [76687] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(4069), 1, + STATE(3649), 1, sym_comment, - ACTIONS(2006), 2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(3874), 9, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(3876), 32, + ACTIONS(922), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(920), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_PLUS, 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -414952,6 +374502,9 @@ 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, @@ -414964,33 +374517,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [76605] = 6, + aux_sym__unquoted_in_list_token1, + [76741] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8544), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8546), 1, - aux_sym__immediate_decimal_token2, - STATE(4070), 1, + ACTIONS(8072), 1, + anon_sym_DOT, + STATE(3650), 1, sym_comment, - ACTIONS(2439), 4, - ts_builtin_sym_end, + STATE(3654), 1, + aux_sym_cell_path_repeat1, + STATE(3991), 1, + sym_path, + ACTIONS(1012), 3, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2437), 37, + ACTIONS(1010), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -415015,13 +374571,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - aux_sym_unquoted_token2, - [76663] = 4, + [76801] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4071), 1, + STATE(3651), 1, sym_comment, - ACTIONS(1063), 10, + ACTIONS(2362), 11, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -415032,7 +374587,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1065), 33, + aux_sym__unquoted_in_list_token2, + ACTIONS(2364), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -415040,7 +374596,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -415066,16 +374621,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [76717] = 5, + [76855] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5085), 1, - sym__entry_separator, - ACTIONS(8548), 1, - aux_sym__immediate_decimal_token1, - STATE(4072), 1, + STATE(3652), 1, sym_comment, - ACTIONS(5083), 41, + ACTIONS(1209), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1139), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -415117,76 +374671,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [76773] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8550), 1, - aux_sym__immediate_decimal_token2, - STATE(4073), 1, - sym_comment, - ACTIONS(917), 17, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token5, - ACTIONS(919), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [76829] = 4, + [76909] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(4074), 1, + STATE(3653), 1, sym_comment, - ACTIONS(938), 2, + ACTIONS(2231), 4, + anon_sym_LF, anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(936), 41, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2229), 39, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_PLUS, + anon_sym_not, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -415209,34 +374718,38 @@ 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, - aux_sym__unquoted_in_list_token1, - [76883] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + aux_sym_unquoted_token2, + [76963] = 7, ACTIONS(113), 1, anon_sym_POUND, - STATE(4075), 1, + ACTIONS(8072), 1, + anon_sym_DOT, + STATE(3654), 1, sym_comment, - ACTIONS(1290), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1243), 41, + STATE(3663), 1, + aux_sym_cell_path_repeat1, + STATE(3991), 1, + sym_path, + ACTIONS(1008), 3, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1006), 37, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_PLUS, + anon_sym_not, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -415259,34 +374772,34 @@ 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, - aux_sym__unquoted_in_list_token1, - [76937] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [77023] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(4076), 1, + ACTIONS(8074), 1, + aux_sym__immediate_decimal_token2, + STATE(3655), 1, sym_comment, - ACTIONS(1416), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1414), 41, + ACTIONS(2358), 3, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2356), 39, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_PLUS, + anon_sym_not, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -415309,92 +374822,40 @@ 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, - aux_sym__unquoted_in_list_token1, - [76991] = 4, - ACTIONS(113), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + aux_sym_unquoted_token2, + [77079] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4077), 1, + STATE(3656), 1, sym_comment, - ACTIONS(1420), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1418), 41, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(2402), 11, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_DOT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, aux_sym__unquoted_in_list_token1, - [77045] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(4078), 1, - sym_comment, - ACTIONS(8554), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(8552), 41, + aux_sym__unquoted_in_list_token2, + ACTIONS(2404), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -415402,9 +374863,6 @@ 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, @@ -415417,26 +374875,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, - [77099] = 4, + [77133] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(4079), 1, + ACTIONS(7936), 1, + aux_sym__immediate_decimal_token2, + STATE(3657), 1, sym_comment, - ACTIONS(8558), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(8556), 41, + ACTIONS(2231), 3, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2229), 39, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_PLUS, + anon_sym_not, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -415459,23 +374923,18 @@ 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, - aux_sym__unquoted_in_list_token1, - [77153] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + aux_sym_unquoted_token2, + [77189] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3868), 1, - sym__entry_separator, - STATE(4080), 1, + STATE(3658), 1, sym_comment, - ACTIONS(3866), 42, + ACTIONS(1213), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1211), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -415484,7 +374943,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DOT_DOT_EQ, @@ -415512,76 +374970,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, - anon_sym_o_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, - [77207] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8560), 1, - anon_sym_DOT, - STATE(4081), 1, - sym_comment, - STATE(4134), 1, - sym_path, - STATE(4673), 1, - sym_cell_path, - ACTIONS(995), 13, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - ACTIONS(997), 27, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [77267] = 4, + anon_sym_o_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, + [77243] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(4082), 1, + ACTIONS(8076), 1, + aux_sym__immediate_decimal_token2, + STATE(3659), 1, sym_comment, - ACTIONS(2439), 4, + ACTIONS(2364), 3, anon_sym_LF, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2437), 39, + ACTIONS(2362), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -415621,39 +375027,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, aux_sym_unquoted_token2, - [77321] = 6, - ACTIONS(3), 1, + [77299] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - STATE(4083), 1, + ACTIONS(8078), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(3660), 1, sym_comment, - STATE(11424), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4323), 10, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(4325), 31, + ACTIONS(1139), 42, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_PLUS, 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -415661,62 +375060,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, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [77379] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - STATE(4084), 1, - sym_comment, - STATE(11424), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4375), 10, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(4377), 31, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOLLAR, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + sym__entry_separator, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -415725,14 +375076,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [77437] = 4, + aux_sym__unquoted_in_list_token1, + [77353] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8562), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(4085), 1, + ACTIONS(3701), 1, + sym__entry_separator, + STATE(3661), 1, sym_comment, - ACTIONS(1243), 42, + ACTIONS(3699), 42, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -415741,6 +375093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DOT_DOT_EQ, @@ -415765,7 +375118,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - sym__entry_separator, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -415775,17 +375127,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [77491] = 4, + [77407] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(4086), 1, + STATE(3662), 1, sym_comment, - ACTIONS(2549), 4, + ACTIONS(2364), 4, anon_sym_LF, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2547), 39, + ACTIONS(2362), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -415825,18 +375177,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, aux_sym_unquoted_token2, - [77545] = 5, + [77461] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8564), 1, - aux_sym__immediate_decimal_token2, - STATE(4087), 1, + ACTIONS(8080), 1, + anon_sym_DOT, + STATE(3991), 1, + sym_path, + STATE(3663), 2, sym_comment, - ACTIONS(2583), 3, + aux_sym_cell_path_repeat1, + ACTIONS(987), 3, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2581), 39, + ACTIONS(985), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -415850,7 +375205,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_not, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -415875,33 +375229,25 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - aux_sym_unquoted_token2, - [77601] = 5, + [77519] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8407), 1, - aux_sym__immediate_decimal_token2, - STATE(4088), 1, + STATE(3664), 1, sym_comment, - ACTIONS(2439), 3, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2437), 39, - anon_sym_SEMI, + ACTIONS(1217), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1215), 41, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_not, - anon_sym_DOT_DOT2, - anon_sym_DOT, + anon_sym_PLUS, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -415924,20 +375270,26 @@ 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, - aux_sym_unquoted_token2, - [77657] = 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, + aux_sym__unquoted_in_list_token1, + [77573] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(4089), 1, + STATE(3665), 1, sym_comment, - ACTIONS(3507), 4, + ACTIONS(2404), 4, anon_sym_LF, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(3505), 39, + ACTIONS(2402), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -415977,40 +375329,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, aux_sym_unquoted_token2, - [77711] = 5, - ACTIONS(113), 1, + [77627] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8566), 1, - aux_sym__immediate_decimal_token2, - STATE(4090), 1, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + STATE(3666), 1, sym_comment, - ACTIONS(2549), 3, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2547), 39, - anon_sym_SEMI, - anon_sym_LBRACK, + STATE(10434), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4342), 10, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(4344), 31, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - anon_sym_DOT_DOT2, - anon_sym_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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -416018,27 +375369,27 @@ 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, - aux_sym_unquoted_token2, - [77767] = 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, + [77685] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - STATE(4091), 1, + STATE(3667), 1, sym_comment, - STATE(11424), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4529), 10, - anon_sym_LPAREN, + ACTIONS(1844), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(3312), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -416048,10 +375399,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(4531), 31, + ACTIONS(3314), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, @@ -416080,35 +375432,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [77825] = 6, + [77741] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - STATE(4092), 1, + ACTIONS(8083), 1, + anon_sym_DOT_DOT2, + STATE(3668), 1, sym_comment, - STATE(11424), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4533), 10, - anon_sym_LPAREN, + ACTIONS(8085), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3741), 11, anon_sym_DASH, + anon_sym__, anon_sym_DOT_DOT, - anon_sym_PLUS, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(4535), 31, + aux_sym_unquoted_token1, + ACTIONS(3743), 29, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_RBRACE, anon_sym_null, anon_sym_true, anon_sym_false, @@ -416132,26 +375484,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [77883] = 11, - ACTIONS(3), 1, + [77799] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(942), 1, + ACTIONS(8087), 1, aux_sym__immediate_decimal_token1, - ACTIONS(1582), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(1584), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8568), 1, + ACTIONS(8089), 1, + aux_sym__immediate_decimal_token2, + STATE(3669), 1, + sym_comment, + ACTIONS(895), 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + aux_sym_command_token1, + ACTIONS(893), 37, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(8570), 1, - aux_sym_unquoted_token3, - ACTIONS(8572), 1, + sym_filesize_unit, aux_sym_unquoted_token5, - STATE(4093), 1, + [77857] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7940), 1, + aux_sym__immediate_decimal_token2, + STATE(3670), 1, sym_comment, - STATE(9346), 1, - sym__immediate_decimal, - ACTIONS(936), 12, + ACTIONS(911), 15, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -416164,11 +375556,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(938), 24, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(913), 27, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, @@ -416189,25 +375585,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [77951] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [77913] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(3713), 1, + sym__entry_separator, + STATE(3671), 1, + sym_comment, + ACTIONS(3711), 42, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_PLUS, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + aux_sym__unquoted_in_list_token1, + [77967] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4094), 1, + STATE(3672), 1, sym_comment, - ACTIONS(2851), 2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(2843), 9, + ACTIONS(1020), 10, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2845), 32, + ACTIONS(1022), 33, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -416215,6 +375661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -416240,18 +375687,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [78007] = 7, + [78021] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8560), 1, - anon_sym_DOT, - STATE(4031), 1, - aux_sym_cell_path_repeat1, - STATE(4095), 1, + ACTIONS(8091), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8093), 1, + aux_sym__immediate_decimal_token2, + STATE(3673), 1, sym_comment, - STATE(4465), 1, - sym_path, - ACTIONS(1006), 13, + ACTIONS(893), 17, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -416265,11 +375710,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - ACTIONS(1008), 27, - anon_sym_COLON, + anon_sym_DOT, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + ACTIONS(895), 24, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, @@ -416293,28 +375739,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [78067] = 4, + [78079] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4096), 1, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + STATE(3674), 1, sym_comment, - ACTIONS(2437), 11, + STATE(10434), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4394), 10, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2439), 32, + ACTIONS(4396), 31, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, @@ -416343,87 +375791,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [78121] = 6, + [78137] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8574), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8576), 1, + ACTIONS(8020), 1, aux_sym__immediate_decimal_token2, - STATE(4097), 1, - sym_comment, - ACTIONS(911), 4, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - ACTIONS(909), 37, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - [78179] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(8578), 1, - anon_sym_DOT, - STATE(4098), 1, + STATE(3675), 1, sym_comment, - STATE(4099), 1, - sym_path, - STATE(4625), 1, - sym_cell_path, - ACTIONS(1012), 3, + ACTIONS(2358), 5, + ts_builtin_sym_end, anon_sym_LF, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1010), 37, + ACTIONS(2356), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -416448,43 +375841,91 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [78239] = 7, - ACTIONS(113), 1, + aux_sym_unquoted_token2, + [78193] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8578), 1, - anon_sym_DOT, - STATE(4099), 1, + ACTIONS(7958), 1, + aux_sym__immediate_decimal_token2, + STATE(3676), 1, sym_comment, - STATE(4100), 1, - aux_sym_cell_path_repeat1, - STATE(4361), 1, - sym_path, - ACTIONS(989), 3, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(987), 37, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(893), 15, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(895), 27, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [78249] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8095), 1, + anon_sym_DOT_DOT2, + STATE(3677), 1, + sym_comment, + ACTIONS(8097), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3354), 11, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym__, anon_sym_DOT_DOT, - anon_sym_not, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(3356), 29, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -416492,44 +375933,38 @@ 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, - [78299] = 7, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + [78307] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8578), 1, - anon_sym_DOT, - STATE(4100), 1, + ACTIONS(1145), 1, + sym__entry_separator, + ACTIONS(8099), 1, + anon_sym_LBRACK2, + STATE(3678), 1, sym_comment, - STATE(4102), 1, - aux_sym_cell_path_repeat1, - STATE(4361), 1, - sym_path, - ACTIONS(1008), 3, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1006), 37, - anon_sym_SEMI, + ACTIONS(1143), 41, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_not, - anon_sym_DOT_DOT2, + anon_sym_PLUS, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -416552,26 +375987,88 @@ 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, - [78359] = 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, + aux_sym__unquoted_in_list_token1, + [78363] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(4101), 1, + ACTIONS(8030), 1, + anon_sym_DOT, + STATE(3614), 1, + aux_sym_cell_path_repeat1, + STATE(3679), 1, + sym_comment, + STATE(3999), 1, + sym_path, + ACTIONS(1010), 13, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + ACTIONS(1012), 27, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [78423] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8101), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8103), 1, + aux_sym__unquoted_in_list_token2, + STATE(3680), 1, sym_comment, - ACTIONS(2547), 11, + ACTIONS(7087), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2549), 32, + ACTIONS(7101), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -416604,86 +376101,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [78413] = 6, - ACTIONS(113), 1, + [78481] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8580), 1, - anon_sym_DOT, - STATE(4361), 1, - sym_path, - STATE(4102), 2, + ACTIONS(8105), 1, + aux_sym__immediate_decimal_token2, + STATE(3681), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1001), 3, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(999), 37, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(901), 15, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(903), 27, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [78537] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3682), 1, + sym_comment, + ACTIONS(2229), 11, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_not, - 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_PLUS, + anon_sym_DOT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [78471] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(961), 1, - sym__entry_separator, - ACTIONS(7605), 1, - aux_sym_unquoted_token5, - STATE(4103), 1, - sym_comment, - ACTIONS(959), 41, + aux_sym_unquoted_token2, + aux_sym__unquoted_in_list_token1, + ACTIONS(2231), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -416691,9 +376190,6 @@ 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, @@ -416706,13 +376202,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, - [78527] = 4, + [78591] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4104), 1, + STATE(3683), 1, sym_comment, - ACTIONS(2437), 11, + ACTIONS(2362), 11, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -416724,7 +376219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0x, aux_sym_unquoted_token2, aux_sym__unquoted_in_list_token1, - ACTIONS(2439), 32, + ACTIONS(2364), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -416757,12 +376252,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [78581] = 4, + [78645] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4105), 1, + STATE(3684), 1, sym_comment, - ACTIONS(2547), 11, + ACTIONS(2402), 11, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -416774,7 +376269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0x, aux_sym_unquoted_token2, aux_sym__unquoted_in_list_token1, - ACTIONS(2549), 32, + ACTIONS(2404), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -416807,37 +376302,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [78635] = 4, - ACTIONS(3), 1, + [78699] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(4106), 1, + ACTIONS(1039), 1, + sym__entry_separator, + STATE(3685), 1, sym_comment, - ACTIONS(3505), 11, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - aux_sym__unquoted_in_list_token1, - ACTIONS(3507), 32, + ACTIONS(1037), 42, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -416845,6 +376336,9 @@ 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, @@ -416857,66 +376351,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [78689] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(4107), 1, - sym_comment, - ACTIONS(1061), 4, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1059), 39, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [78743] = 6, + aux_sym__unquoted_in_list_token1, + [78753] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8583), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8585), 1, + ACTIONS(8107), 1, aux_sym__immediate_decimal_token2, - STATE(4108), 1, + STATE(3686), 1, sym_comment, - ACTIONS(909), 17, + ACTIONS(911), 17, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -416934,7 +376377,8 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token5, - ACTIONS(911), 24, + ACTIONS(913), 25, + anon_sym_COLON, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -416959,16 +376403,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [78801] = 5, + [78809] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1290), 1, - anon_sym_LPAREN2, - ACTIONS(8587), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(4109), 1, + ACTIONS(1043), 1, + sym__entry_separator, + STATE(3687), 1, sym_comment, - ACTIONS(1243), 41, + ACTIONS(1041), 42, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -416979,6 +376421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -417010,84 +376453,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [78857] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8560), 1, - anon_sym_DOT, - STATE(4110), 1, - sym_comment, - STATE(4134), 1, - sym_path, - STATE(4570), 1, - sym_cell_path, - ACTIONS(1010), 13, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - ACTIONS(1012), 27, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [78917] = 5, + [78863] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8589), 1, - aux_sym__immediate_decimal_token2, - STATE(4111), 1, + ACTIONS(1049), 1, + sym__entry_separator, + STATE(3688), 1, sym_comment, - ACTIONS(2549), 5, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2547), 37, - anon_sym_SEMI, + ACTIONS(1047), 42, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_not, - anon_sym_DOT_DOT2, + anon_sym_PLUS, anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -417111,51 +376494,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, - aux_sym_unquoted_token2, - [78973] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4112), 1, - sym_comment, - ACTIONS(2437), 12, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(2439), 31, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__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, anon_sym_out_GT, anon_sym_e_GT, @@ -417164,16 +376502,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [79027] = 6, + aux_sym__unquoted_in_list_token1, + [78917] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8525), 1, + ACTIONS(8107), 1, aux_sym__immediate_decimal_token2, - ACTIONS(8591), 1, + ACTIONS(8109), 1, anon_sym_DOT, - STATE(4113), 1, + STATE(3689), 1, sym_comment, - ACTIONS(923), 16, + ACTIONS(911), 16, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -417190,7 +376529,7 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token5, - ACTIONS(925), 25, + ACTIONS(913), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_PIPE, @@ -417216,14 +376555,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [79085] = 5, + [78975] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8536), 1, + ACTIONS(8049), 1, aux_sym__immediate_decimal_token2, - STATE(4114), 1, + STATE(3690), 1, sym_comment, - ACTIONS(923), 17, + ACTIONS(911), 17, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -417241,7 +376580,7 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token5, - ACTIONS(925), 25, + ACTIONS(913), 25, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, @@ -417267,37 +376606,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [79141] = 4, - ACTIONS(3), 1, + [79031] = 5, + ACTIONS(113), 1, anon_sym_POUND, - STATE(4115), 1, + ACTIONS(940), 1, + sym__entry_separator, + ACTIONS(7129), 1, + aux_sym_unquoted_token5, + STATE(3691), 1, sym_comment, - ACTIONS(3505), 11, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(3507), 32, + ACTIONS(938), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_PLUS, 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -417305,57 +376641,9 @@ 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, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [79195] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4116), 1, - sym_comment, - ACTIONS(2851), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(2843), 9, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2845), 32, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -417368,39 +376656,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [79251] = 6, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [79087] = 7, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8594), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8596), 1, - aux_sym__unquoted_in_list_token2, - STATE(4117), 1, + ACTIONS(8072), 1, + anon_sym_DOT, + STATE(3650), 1, + sym_path, + STATE(3692), 1, sym_comment, - ACTIONS(7571), 9, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(7585), 32, + STATE(4246), 1, + sym_cell_path, + ACTIONS(994), 3, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(992), 37, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -417408,32 +376701,29 @@ 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, - [79309] = 6, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [79147] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8564), 1, + ACTIONS(8074), 1, aux_sym__immediate_decimal_token2, - ACTIONS(8598), 1, + ACTIONS(8112), 1, anon_sym_DOT, - STATE(4118), 1, + STATE(3693), 1, sym_comment, - ACTIONS(2583), 3, + ACTIONS(2358), 3, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2581), 38, + ACTIONS(2356), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -417472,37 +376762,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, aux_sym_unquoted_token2, - [79367] = 4, - ACTIONS(3), 1, + [79205] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(4119), 1, + STATE(3694), 1, sym_comment, - ACTIONS(2547), 12, + ACTIONS(1022), 4, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1020), 39, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym__, - anon_sym_DOT_DOT, + anon_sym_in, + anon_sym_STAR, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(2549), 31, + anon_sym_DOT, + [79259] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(3695), 1, + sym_comment, + ACTIONS(7101), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(7087), 41, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_PLUS, + 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -417510,6 +376846,9 @@ 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, @@ -417522,14 +376861,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [79421] = 5, + aux_sym__unquoted_in_list_token1, + [79313] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8366), 1, + ACTIONS(7882), 1, aux_sym__immediate_decimal_token2, - STATE(4120), 1, + STATE(3696), 1, sym_comment, - ACTIONS(909), 17, + ACTIONS(893), 17, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -417547,7 +376887,7 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token5, - ACTIONS(911), 25, + ACTIONS(895), 25, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, @@ -417573,91 +376913,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [79477] = 29, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_DOLLAR, - ACTIONS(2795), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2797), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2801), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4611), 1, - aux_sym_unquoted_token1, - ACTIONS(8442), 1, - anon_sym_LPAREN, - ACTIONS(8444), 1, - anon_sym_DOT_DOT, - ACTIONS(8448), 1, - anon_sym_DOT2, - ACTIONS(8452), 1, - sym_val_date, - ACTIONS(8454), 1, - anon_sym_DQUOTE, - ACTIONS(8458), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(8460), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(1690), 1, - sym__var, - STATE(2589), 1, - sym__inter_single_quotes, - STATE(2590), 1, - sym__inter_double_quotes, - STATE(2627), 1, - sym__str_double_quotes, - STATE(2646), 1, - sym_unquoted, - STATE(4121), 1, - sym_comment, - STATE(8428), 1, - sym__val_number_decimal, - STATE(10559), 1, - sym__val_range, - STATE(10861), 1, - sym_val_bool, - STATE(11114), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(2793), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(8446), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(8456), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(8450), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2645), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(3910), 9, - anon_sym_null, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [79581] = 5, + [79369] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5079), 1, - sym__entry_separator, - ACTIONS(8601), 1, - sym_long_flag_identifier, - STATE(4122), 1, + ACTIONS(1209), 1, + anon_sym_LPAREN2, + ACTIONS(8115), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(3697), 1, sym_comment, - ACTIONS(5075), 41, + ACTIONS(1139), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -417699,16 +376964,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [79637] = 5, + [79425] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5015), 1, + ACTIONS(3743), 1, sym__entry_separator, - ACTIONS(8603), 1, - anon_sym_EQ, - STATE(4123), 1, + STATE(3698), 1, sym_comment, - ACTIONS(5011), 41, + ACTIONS(3741), 42, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -417717,6 +376980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DOT_DOT_EQ, @@ -417750,72 +377014,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [79693] = 29, + [79479] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2629), 1, - anon_sym_DOLLAR, - ACTIONS(2795), 1, + ACTIONS(3116), 1, aux_sym__val_number_decimal_token1, - ACTIONS(2797), 1, + ACTIONS(3118), 1, aux_sym__val_number_decimal_token2, - ACTIONS(2801), 1, + ACTIONS(3122), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4476), 1, + ACTIONS(4672), 1, aux_sym_unquoted_token1, - ACTIONS(8452), 1, - sym_val_date, - ACTIONS(8605), 1, + ACTIONS(7897), 1, anon_sym_LPAREN, - ACTIONS(8607), 1, + ACTIONS(7899), 1, + anon_sym_DOLLAR, + ACTIONS(7901), 1, anon_sym_DOT_DOT, - ACTIONS(8611), 1, + ACTIONS(7905), 1, anon_sym_DOT2, - ACTIONS(8615), 1, + ACTIONS(7909), 1, + sym_val_date, + ACTIONS(7911), 1, anon_sym_DQUOTE, - ACTIONS(8619), 1, + ACTIONS(7915), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(8621), 1, + ACTIONS(7917), 1, anon_sym_DOLLAR_DQUOTE, - STATE(1743), 1, + STATE(1322), 1, sym__var, - STATE(2792), 1, + STATE(2117), 1, sym__inter_single_quotes, - STATE(2793), 1, - sym__str_double_quotes, - STATE(2797), 1, + STATE(2128), 1, sym__inter_double_quotes, - STATE(2901), 1, + STATE(2196), 1, + sym__str_double_quotes, + STATE(2278), 1, sym_unquoted, - STATE(4124), 1, + STATE(3699), 1, sym_comment, - STATE(8255), 1, + STATE(8009), 1, sym__val_number_decimal, - STATE(10518), 1, + STATE(10050), 1, sym__val_range, - STATE(10861), 1, + STATE(10641), 1, sym_val_bool, - STATE(11180), 1, + STATE(10833), 1, sym__unquoted_anonymous_prefix, - ACTIONS(2793), 2, + ACTIONS(3114), 2, anon_sym_true, anon_sym_false, - ACTIONS(8609), 2, + ACTIONS(7903), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(8617), 2, + ACTIONS(7913), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(8613), 3, + ACTIONS(7907), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2897), 4, + STATE(2387), 4, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, - ACTIONS(3910), 9, + ACTIONS(3685), 9, anon_sym_null, anon_sym_err_GT, anon_sym_out_GT, @@ -417825,83 +377089,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [79797] = 4, - ACTIONS(113), 1, + [79583] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5217), 1, - sym__entry_separator, - STATE(4125), 1, + ACTIONS(8117), 1, + anon_sym_DOT_DOT2, + STATE(3700), 1, sym_comment, - ACTIONS(5215), 42, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(8119), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3312), 11, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym__, anon_sym_DOT_DOT, - anon_sym_PLUS, 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, anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - aux_sym__unquoted_in_list_token1, - [79851] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(5221), 1, - sym__entry_separator, - STATE(4126), 1, - sym_comment, - ACTIONS(5219), 42, + aux_sym_unquoted_token1, + ACTIONS(3314), 29, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, - 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -417909,9 +377129,6 @@ 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, @@ -417924,15 +377141,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, - [79905] = 4, + [79641] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5225), 1, + ACTIONS(4725), 1, sym__entry_separator, - STATE(4127), 1, + ACTIONS(8121), 1, + anon_sym_EQ, + STATE(3701), 1, sym_comment, - ACTIONS(5223), 42, + ACTIONS(4721), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -417941,7 +377159,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DOT_DOT_EQ, @@ -417975,47 +377192,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [79959] = 4, - ACTIONS(113), 1, + [79697] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5229), 1, - sym__entry_separator, - STATE(4128), 1, - sym_comment, - ACTIONS(5227), 42, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(3116), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3118), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3122), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3938), 1, + aux_sym_unquoted_token1, + ACTIONS(7909), 1, + sym_val_date, + ACTIONS(8123), 1, anon_sym_LPAREN, + ACTIONS(8125), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(8127), 1, anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, + ACTIONS(8131), 1, + anon_sym_DOT2, + ACTIONS(8135), 1, + anon_sym_DQUOTE, + ACTIONS(8139), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(8141), 1, + anon_sym_DOLLAR_DQUOTE, + STATE(1438), 1, + sym__var, + STATE(2294), 1, + sym__str_double_quotes, + STATE(2369), 1, + sym__inter_double_quotes, + STATE(2370), 1, + sym__inter_single_quotes, + STATE(2424), 1, + sym_unquoted, + STATE(3702), 1, + sym_comment, + STATE(8052), 1, + sym__val_number_decimal, + STATE(10155), 1, + sym__val_range, + STATE(10439), 1, + sym__unquoted_anonymous_prefix, + STATE(10641), 1, + sym_val_bool, + ACTIONS(3114), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, + ACTIONS(8129), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(8137), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(8133), 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, + STATE(2423), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(3685), 9, + anon_sym_null, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -418024,80 +377267,81 @@ 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, - [80013] = 4, - ACTIONS(113), 1, + [79801] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5233), 1, - sym__entry_separator, - STATE(4129), 1, + ACTIONS(8143), 1, + aux_sym__immediate_decimal_token2, + STATE(3703), 1, sym_comment, - ACTIONS(5231), 42, - anon_sym_LBRACK, + ACTIONS(901), 17, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + ACTIONS(903), 25, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - aux_sym__unquoted_in_list_token1, - [80067] = 6, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [79857] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8623), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8625), 1, - aux_sym__immediate_decimal_token2, - STATE(4130), 1, + ACTIONS(8145), 1, + anon_sym_QMARK2, + STATE(3704), 1, sym_comment, - ACTIONS(911), 4, + ACTIONS(1026), 4, + ts_builtin_sym_end, + anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - aux_sym_command_token1, - ACTIONS(909), 37, + ACTIONS(1024), 38, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -418125,25 +377369,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT2, anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - [80125] = 4, + [79913] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5237), 1, - sym__entry_separator, - STATE(4131), 1, + ACTIONS(1149), 1, + aux_sym_unquoted_token6, + ACTIONS(3783), 1, + anon_sym_LPAREN2, + STATE(3705), 1, sym_comment, - ACTIONS(5235), 42, + ACTIONS(1091), 6, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1089), 35, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DOT_DOT_EQ, @@ -418165,9 +377412,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, @@ -418177,14 +377421,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [80179] = 4, + [79971] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5241), 1, + ACTIONS(4999), 1, sym__entry_separator, - STATE(4132), 1, + STATE(3706), 1, sym_comment, - ACTIONS(5239), 42, + ACTIONS(4997), 42, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -418227,14 +377471,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [80233] = 4, + [80025] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8627), 1, + ACTIONS(8147), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8149), 1, + aux_sym__immediate_decimal_token2, + STATE(3707), 1, + sym_comment, + ACTIONS(895), 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + aux_sym_command_token1, + ACTIONS(893), 37, + anon_sym_SEMI, anon_sym_LF, - STATE(4133), 1, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + anon_sym_LF2, + aux_sym_unquoted_token5, + [80083] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(8151), 1, + anon_sym_LF, + STATE(3708), 1, sym_comment, - ACTIONS(8434), 42, + ACTIONS(7834), 42, sym_cmd_identifier, anon_sym_LBRACK, anon_sym_LPAREN, @@ -418277,84 +377573,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [80287] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8560), 1, - anon_sym_DOT, - STATE(4095), 1, - aux_sym_cell_path_repeat1, - STATE(4134), 1, - sym_comment, - STATE(4465), 1, - sym_path, - ACTIONS(987), 13, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - ACTIONS(989), 27, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [80347] = 4, + [80137] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(4135), 1, + ACTIONS(8153), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8155), 1, + aux_sym__immediate_decimal_token2, + STATE(3709), 1, sym_comment, - ACTIONS(1170), 3, + ACTIONS(895), 4, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1168), 40, - anon_sym_EQ, + sym_duration_unit, + ACTIONS(893), 37, anon_sym_SEMI, - anon_sym_COLON, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -418380,38 +377622,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - [80401] = 5, - ACTIONS(3), 1, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + [80195] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(4136), 1, + ACTIONS(5003), 1, + sym__entry_separator, + STATE(3710), 1, sym_comment, - ACTIONS(4012), 2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(4006), 9, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(4008), 32, + ACTIONS(5001), 42, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_PLUS, 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -418419,56 +377659,9 @@ 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, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [80457] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4137), 1, - sym_comment, - ACTIONS(3505), 12, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(3507), 31, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -418481,31 +377674,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [80511] = 5, + aux_sym__unquoted_in_list_token1, + [80249] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8629), 1, - anon_sym_QMARK2, - STATE(4138), 1, + ACTIONS(8157), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8159), 1, + aux_sym__immediate_decimal_token2, + STATE(3711), 1, sym_comment, - ACTIONS(1072), 4, - ts_builtin_sym_end, + ACTIONS(895), 4, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1070), 38, - anon_sym_EQ, + sym_duration_unit, + ACTIONS(893), 37, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -418532,75 +377726,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT2, anon_sym_DOT, - [80567] = 5, + sym_filesize_unit, + [80307] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(5007), 1, + sym__entry_separator, + STATE(3712), 1, + sym_comment, + ACTIONS(5005), 42, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_PLUS, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + aux_sym__unquoted_in_list_token1, + [80361] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8629), 1, + ACTIONS(8145), 1, anon_sym_QMARK2, - STATE(4139), 1, + STATE(3713), 1, sym_comment, - ACTIONS(1072), 4, + ACTIONS(1026), 4, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1070), 38, + ACTIONS(1024), 38, anon_sym_EQ, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PLUS_PLUS_EQ, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [80623] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(8631), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8633), 1, - aux_sym__immediate_decimal_token2, - STATE(4140), 1, - sym_comment, - ACTIONS(911), 4, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - aux_sym_command_token1, - ACTIONS(909), 37, anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, @@ -418632,19 +377828,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT2, anon_sym_DOT, - sym_filesize_unit, - anon_sym_LF2, - aux_sym_unquoted_token5, - [80681] = 5, + [80417] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1261), 1, + ACTIONS(5021), 1, sym__entry_separator, - ACTIONS(8635), 1, - anon_sym_LBRACK2, - STATE(4141), 1, + STATE(3714), 1, sym_comment, - ACTIONS(1259), 41, + ACTIONS(5019), 42, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -418653,6 +377844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DOT_DOT_EQ, @@ -418686,38 +377878,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [80737] = 5, - ACTIONS(3), 1, + [80471] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(4142), 1, + ACTIONS(5025), 1, + sym__entry_separator, + STATE(3715), 1, sym_comment, - ACTIONS(2006), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(3874), 9, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(3876), 32, + ACTIONS(5023), 42, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_PLUS, 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -418725,57 +377912,9 @@ 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, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [80793] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4143), 1, - sym_comment, - ACTIONS(1934), 2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(3518), 9, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(3520), 32, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -418788,14 +377927,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [80849] = 5, + aux_sym__unquoted_in_list_token1, + [80525] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8637), 1, + ACTIONS(7854), 1, aux_sym__immediate_decimal_token2, - STATE(4144), 1, + STATE(3716), 1, sym_comment, - ACTIONS(917), 17, + ACTIONS(893), 17, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -418813,10 +377953,10 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token5, - ACTIONS(919), 25, + ACTIONS(895), 25, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, @@ -418839,15 +377979,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [80905] = 4, + [80581] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(4145), 1, - sym_comment, - ACTIONS(7585), 2, - anon_sym_LPAREN2, + ACTIONS(5029), 1, sym__entry_separator, - ACTIONS(7571), 41, + STATE(3717), 1, + sym_comment, + ACTIONS(5027), 42, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -418856,6 +377995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DOT_DOT_EQ, @@ -418889,31 +378029,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [80959] = 4, + [80635] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8641), 1, - anon_sym_LF, - STATE(4146), 1, + ACTIONS(7832), 1, + aux_sym__immediate_decimal_token2, + STATE(3718), 1, sym_comment, - ACTIONS(8639), 42, - sym_cmd_identifier, + ACTIONS(2231), 5, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2229), 37, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_where, anon_sym_not, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -418938,36 +378079,26 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [81013] = 7, + aux_sym_unquoted_token2, + [80691] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8578), 1, - anon_sym_DOT, - STATE(4099), 1, - sym_path, - STATE(4147), 1, + ACTIONS(5033), 1, + sym__entry_separator, + STATE(3719), 1, sym_comment, - STATE(4548), 1, - sym_cell_path, - ACTIONS(997), 3, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(995), 37, - anon_sym_SEMI, + ACTIONS(5031), 42, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_not, - anon_sym_DOT_DOT2, + anon_sym_PLUS, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -418990,40 +378121,204 @@ 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, - [81073] = 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, + aux_sym__unquoted_in_list_token1, + [80745] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8161), 1, + aux_sym__immediate_decimal_token2, + STATE(3720), 1, + sym_comment, + ACTIONS(901), 17, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + ACTIONS(903), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [80801] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - ACTIONS(4037), 1, + STATE(3721), 1, + sym_comment, + ACTIONS(7848), 2, anon_sym_LPAREN2, - STATE(4148), 1, + sym__entry_separator, + ACTIONS(7846), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_PLUS, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + aux_sym__unquoted_in_list_token1, + [80855] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(961), 1, + anon_sym_DOT_DOT2, + ACTIONS(8013), 1, + aux_sym_unquoted_token5, + ACTIONS(8163), 1, + anon_sym_DOT, + ACTIONS(8165), 1, + sym_filesize_unit, + ACTIONS(8167), 1, + sym_duration_unit, + STATE(3722), 1, + sym_comment, + ACTIONS(965), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(938), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(940), 24, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [80921] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8169), 1, + anon_sym_QMARK2, + STATE(3723), 1, sym_comment, - ACTIONS(1249), 6, + ACTIONS(1024), 10, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1026), 32, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1247), 35, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, + 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_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -419031,10 +378326,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, @@ -419043,34 +378338,38 @@ 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, - [81131] = 4, - ACTIONS(113), 1, + [80977] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1115), 1, - sym__entry_separator, - STATE(4149), 1, + ACTIONS(8169), 1, + anon_sym_QMARK2, + STATE(3724), 1, sym_comment, - ACTIONS(1113), 42, + ACTIONS(1024), 10, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1026), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -419078,9 +378377,6 @@ 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, @@ -419093,35 +378389,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - [81185] = 5, + [81033] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4150), 1, + STATE(3725), 1, sym_comment, - ACTIONS(4012), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(4006), 9, + ACTIONS(3767), 12, anon_sym_DASH, + anon_sym__, anon_sym_DOT_DOT, - anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(4008), 32, + aux_sym_unquoted_token1, + ACTIONS(3769), 31, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -419145,45 +378439,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [81241] = 5, - ACTIONS(3), 1, + [81087] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8334), 1, - aux_sym__immediate_decimal_token2, - STATE(4151), 1, + STATE(3726), 1, sym_comment, - ACTIONS(909), 15, - sym_identifier, + ACTIONS(1035), 4, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1033), 39, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(911), 27, + anon_sym_DOT, + [81141] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(3727), 1, + sym_comment, + ACTIONS(1063), 3, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1061), 40, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -419194,16 +378535,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [81297] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + [81195] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1119), 1, + ACTIONS(4773), 1, sym__entry_separator, - STATE(4152), 1, + ACTIONS(8171), 1, + aux_sym__immediate_decimal_token1, + STATE(3728), 1, sym_comment, - ACTIONS(1117), 42, + ACTIONS(4771), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -419214,7 +378559,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -419246,77 +378590,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [81351] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8643), 1, - anon_sym_DOT_DOT2, - STATE(4153), 1, - sym_comment, - ACTIONS(8645), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2843), 11, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(2845), 29, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__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, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [81409] = 10, + [81251] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(979), 1, - anon_sym_DOT_DOT2, - ACTIONS(8570), 1, - aux_sym_unquoted_token5, - ACTIONS(8647), 1, + ACTIONS(8030), 1, anon_sym_DOT, - ACTIONS(8649), 1, - sym_filesize_unit, - ACTIONS(8651), 1, - sym_duration_unit, - STATE(4154), 1, + STATE(3679), 1, + sym_path, + STATE(3729), 1, sym_comment, - ACTIONS(983), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(959), 12, + STATE(4161), 1, + sym_cell_path, + ACTIONS(1002), 13, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -419329,11 +378614,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(961), 24, + anon_sym_DOT_DOT2, + ACTIONS(1004), 27, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, @@ -419354,16 +378641,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [81475] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [81311] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(5153), 1, sym__entry_separator, - ACTIONS(7587), 1, - aux_sym__unquoted_in_list_token6, - STATE(4155), 1, + STATE(3730), 1, sym_comment, - ACTIONS(959), 41, + ACTIONS(5151), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -419405,37 +378692,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [81531] = 4, - ACTIONS(3), 1, + [81364] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(4156), 1, + ACTIONS(1095), 1, + sym__entry_separator, + STATE(3731), 1, sym_comment, - ACTIONS(3960), 12, + ACTIONS(1093), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym__, + anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, + anon_sym_PLUS, 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, anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, - aux_sym_unquoted_token1, - ACTIONS(3962), 31, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + [81417] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(4198), 1, + sym__entry_separator, + STATE(3732), 1, + sym_comment, + ACTIONS(4196), 41, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_PLUS, + 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -419443,6 +378774,9 @@ 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, @@ -419455,14 +378789,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [81585] = 4, + aux_sym__unquoted_in_list_token1, + [81470] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1416), 1, + ACTIONS(3769), 1, sym__entry_separator, - STATE(4157), 1, + STATE(3733), 1, sym_comment, - ACTIONS(1414), 41, + ACTIONS(3767), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -419504,12 +378839,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, - [81638] = 4, + [81523] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4158), 1, + STATE(3734), 1, sym_comment, - ACTIONS(1059), 14, + ACTIONS(893), 17, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -419524,16 +378859,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(1061), 28, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + ACTIONS(895), 25, anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -419553,37 +378888,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [81691] = 5, + [81576] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7621), 1, - aux_sym__unquoted_in_list_token6, - STATE(4159), 1, + ACTIONS(8093), 1, + aux_sym__immediate_decimal_token2, + STATE(3735), 1, sym_comment, - ACTIONS(959), 9, + ACTIONS(893), 17, + sym_identifier, + anon_sym_GT, anon_sym_DASH, - anon_sym_DOT_DOT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(961), 32, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + ACTIONS(895), 24, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [81631] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1273), 1, + sym__entry_separator, + STATE(3736), 1, + sym_comment, + ACTIONS(1271), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_PLUS, 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -419591,6 +378971,9 @@ 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, @@ -419603,35 +378986,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [81746] = 15, + aux_sym__unquoted_in_list_token1, + [81684] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3113), 1, + ACTIONS(2555), 1, anon_sym_DOLLAR, - ACTIONS(8653), 1, + ACTIONS(6312), 1, + aux_sym_unquoted_token3, + ACTIONS(8173), 1, anon_sym_LPAREN2, - ACTIONS(8655), 1, + ACTIONS(8175), 1, anon_sym_DOT, - ACTIONS(8657), 1, + ACTIONS(8177), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8659), 1, + ACTIONS(8179), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8661), 1, + ACTIONS(8181), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8663), 1, - aux_sym_unquoted_token3, - ACTIONS(8665), 1, + ACTIONS(8183), 1, aux_sym_unquoted_token5, - STATE(4160), 1, + STATE(3737), 1, sym_comment, - STATE(4952), 1, + STATE(4600), 1, sym__var, - STATE(4998), 1, + STATE(5004), 1, sym__immediate_decimal, - STATE(5680), 2, + STATE(5326), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(936), 10, + ACTIONS(920), 10, anon_sym_LPAREN, anon_sym_DASH, anon_sym_DOT_DOT, @@ -419642,7 +379026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(938), 20, + ACTIONS(922), 20, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_not, @@ -419663,112 +379047,63 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [81821] = 4, - ACTIONS(3), 1, + [81759] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(4161), 1, + ACTIONS(1277), 1, + sym__entry_separator, + STATE(3738), 1, sym_comment, - ACTIONS(909), 15, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(911), 27, - anon_sym_COLON, + ACTIONS(1275), 41, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [81874] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(8667), 1, - anon_sym_DOT, - ACTIONS(8670), 1, - aux_sym__immediate_decimal_token2, - STATE(4162), 1, - sym_comment, - ACTIONS(925), 4, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - aux_sym_command_token1, - ACTIONS(923), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token5, - [81931] = 4, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + aux_sym__unquoted_in_list_token1, + [81812] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4163), 1, + ACTIONS(8185), 1, + aux_sym__immediate_decimal_token2, + STATE(3739), 1, sym_comment, - ACTIONS(1063), 14, + ACTIONS(901), 17, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -419783,16 +379118,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(1065), 28, - anon_sym_COLON, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + ACTIONS(903), 24, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -419812,25 +379146,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [81984] = 8, + [81867] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3522), 1, - anon_sym_LPAREN2, - ACTIONS(8672), 1, - anon_sym_DOT_DOT2, - STATE(4164), 1, + ACTIONS(8187), 1, + aux_sym__immediate_decimal_token2, + STATE(3740), 1, sym_comment, - ACTIONS(1934), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(3520), 2, + ACTIONS(2358), 4, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8674), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(3518), 34, + ACTIONS(2356), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -419841,6 +379169,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_not, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -419865,36 +379195,83 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [82045] = 4, - ACTIONS(3), 1, + aux_sym_unquoted_token2, + [81922] = 5, + ACTIONS(113), 1, anon_sym_POUND, - STATE(4165), 1, + ACTIONS(8062), 1, + aux_sym__immediate_decimal_token2, + STATE(3741), 1, sym_comment, - ACTIONS(1109), 10, + ACTIONS(2231), 4, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2229), 37, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_PLUS, + anon_sym_not, + anon_sym_DOT_DOT2, anon_sym_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, anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, - aux_sym__unquoted_in_list_token1, - ACTIONS(1111), 32, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + aux_sym_unquoted_token2, + [81977] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1239), 1, + sym__entry_separator, + STATE(3742), 1, + sym_comment, + ACTIONS(1237), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_PLUS, 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -419902,6 +379279,9 @@ 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, @@ -419914,37 +379294,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [82098] = 5, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [82030] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8531), 1, + ACTIONS(8189), 1, aux_sym__immediate_decimal_token2, - STATE(4166), 1, + STATE(3743), 1, sym_comment, - ACTIONS(2581), 9, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2583), 32, + ACTIONS(2364), 4, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2362), 37, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + anon_sym_DOT_DOT2, + anon_sym_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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -419952,52 +379335,53 @@ 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, - [82153] = 5, - ACTIONS(113), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + aux_sym_unquoted_token2, + [82085] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8676), 1, - aux_sym__immediate_decimal_token2, - STATE(4167), 1, + STATE(3744), 1, sym_comment, - ACTIONS(925), 4, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - ACTIONS(923), 37, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(901), 17, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + ACTIONS(903), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -420008,20 +379392,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - [82208] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [82138] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8488), 1, - aux_sym__immediate_decimal_token2, - STATE(4168), 1, + STATE(3745), 1, sym_comment, - ACTIONS(2437), 9, + ACTIONS(1139), 10, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -420031,14 +379410,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2439), 32, + ACTIONS(1209), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -420064,29 +379443,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [82263] = 4, + [82191] = 8, ACTIONS(113), 1, anon_sym_POUND, - STATE(4169), 1, - sym_comment, - ACTIONS(1119), 4, - ts_builtin_sym_end, + ACTIONS(1091), 1, anon_sym_LF, + ACTIONS(1302), 1, + anon_sym_DOT_DOT2, + ACTIONS(8191), 1, + anon_sym_COLON, + STATE(3746), 1, + sym_comment, + ACTIONS(1304), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1117), 38, + ACTIONS(1293), 6, anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + ACTIONS(1089), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -420111,93 +379496,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [82316] = 10, - ACTIONS(3), 1, + [82252] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(979), 1, - anon_sym_DOT_DOT2, - ACTIONS(8570), 1, - aux_sym_unquoted_token5, - ACTIONS(8647), 1, - anon_sym_DOT, - ACTIONS(8678), 1, - sym_filesize_unit, - ACTIONS(8680), 1, - sym_duration_unit, - STATE(4170), 1, + STATE(3747), 1, sym_comment, - ACTIONS(983), 2, + ACTIONS(2231), 5, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(959), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(961), 23, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(2229), 37, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [82381] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4171), 1, - sym_comment, - ACTIONS(1113), 10, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_PLUS, + anon_sym_not, + anon_sym_DOT_DOT2, anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1115), 32, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - 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_token1, aux_sym__val_number_decimal_token2, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -420205,74 +379535,22 @@ 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, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [82434] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8682), 1, - aux_sym__immediate_decimal_token2, - STATE(4172), 1, - sym_comment, - ACTIONS(2547), 9, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2549), 32, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__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, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [82489] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + aux_sym_unquoted_token2, + [82305] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4173), 1, + STATE(3748), 1, sym_comment, - ACTIONS(1117), 10, + ACTIONS(1037), 10, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -420283,7 +379561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1119), 32, + ACTIONS(1039), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -420316,85 +379594,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [82542] = 8, + [82358] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2847), 1, - anon_sym_LPAREN2, - ACTIONS(8684), 1, - anon_sym_DOT_DOT2, - STATE(4174), 1, + ACTIONS(8193), 1, + aux_sym__immediate_decimal_token2, + STATE(3749), 1, sym_comment, - ACTIONS(2845), 2, - ts_builtin_sym_end, + ACTIONS(913), 4, anon_sym_LF, - ACTIONS(2851), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(8686), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2843), 34, + sym_duration_unit, + ACTIONS(911), 37, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + [82413] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8197), 1, + anon_sym_RBRACK, + STATE(3750), 1, + sym_comment, + ACTIONS(8199), 10, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - 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, - [82603] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(8690), 1, - sym__entry_separator, - STATE(4175), 1, - sym_comment, - ACTIONS(8688), 41, + aux_sym__unquoted_in_list_token1, + ACTIONS(8195), 31, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -420402,13 +379680,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_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -420417,15 +379694,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_in_list_token1, - [82656] = 4, + [82468] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5185), 1, + ACTIONS(1053), 1, sym__entry_separator, - STATE(4176), 1, + STATE(3751), 1, sym_comment, - ACTIONS(5183), 41, + ACTIONS(1051), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -420467,65 +379743,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [82709] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8692), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8694), 1, - aux_sym__immediate_decimal_token2, - STATE(4177), 1, - sym_comment, - ACTIONS(2437), 9, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(2439), 31, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__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, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [82766] = 4, + [82521] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4018), 1, + ACTIONS(1074), 1, sym__entry_separator, - STATE(4178), 1, + STATE(3752), 1, sym_comment, - ACTIONS(4016), 41, + ACTIONS(1072), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -420567,24 +379792,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [82819] = 4, + [82574] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5177), 1, - sym__entry_separator, - STATE(4179), 1, + ACTIONS(8201), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8203), 1, + aux_sym__immediate_decimal_token2, + STATE(3753), 1, sym_comment, - ACTIONS(5175), 41, + ACTIONS(2231), 2, + anon_sym_LF, + anon_sym_LPAREN2, + ACTIONS(2229), 38, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_PLUS, + anon_sym_not, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -420607,33 +379840,75 @@ 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, - aux_sym__unquoted_in_list_token1, - [82872] = 5, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + aux_sym_unquoted_token2, + [82631] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3754), 1, + sym_comment, + ACTIONS(934), 17, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + ACTIONS(936), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [82684] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8696), 1, - aux_sym__immediate_decimal_token1, - STATE(4180), 1, + STATE(3755), 1, sym_comment, - ACTIONS(5083), 9, + ACTIONS(1041), 10, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(5085), 32, + ACTIONS(1043), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -420666,31 +379941,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [82927] = 4, + [82737] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(4181), 1, + ACTIONS(8205), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(3756), 1, sym_comment, - ACTIONS(1061), 3, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1059), 39, - anon_sym_SEMI, + ACTIONS(1139), 41, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_not, - anon_sym_DOT_DOT2, - anon_sym_DOT, + anon_sym_PLUS, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -420713,26 +379981,44 @@ 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, - [82980] = 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, + aux_sym__unquoted_in_list_token1, + [82790] = 8, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5181), 1, - sym__entry_separator, - STATE(4182), 1, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(8207), 1, + anon_sym_DOT_DOT2, + STATE(3757), 1, sym_comment, - ACTIONS(5179), 41, + ACTIONS(3356), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3362), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(8209), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3354), 34, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_PLUS, + anon_sym_not, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -420755,40 +380041,37 @@ 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, - aux_sym__unquoted_in_list_token1, - [83033] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [82851] = 8, ACTIONS(113), 1, anon_sym_POUND, - STATE(4183), 1, + ACTIONS(3316), 1, + anon_sym_LPAREN2, + ACTIONS(8211), 1, + anon_sym_DOT_DOT2, + STATE(3758), 1, sym_comment, - ACTIONS(1065), 3, + ACTIONS(1844), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(3314), 2, + ts_builtin_sym_end, anon_sym_LF, + ACTIONS(8213), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1063), 39, + ACTIONS(3312), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_QMARK2, anon_sym_not, - anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -420813,131 +380096,74 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [83086] = 4, - ACTIONS(113), 1, + [82912] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4293), 1, - sym__entry_separator, - STATE(4184), 1, + ACTIONS(8219), 1, + anon_sym_PIPE, + STATE(3759), 1, sym_comment, - ACTIONS(4291), 41, + ACTIONS(8217), 18, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_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, - aux_sym__unquoted_in_list_token1, - [83139] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(8698), 1, - aux_sym__immediate_decimal_token2, - STATE(4185), 1, - sym_comment, - ACTIONS(925), 4, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - aux_sym_command_token1, - ACTIONS(923), 37, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + ACTIONS(8215), 23, + sym_cmd_identifier, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - anon_sym_LF2, - aux_sym_unquoted_token5, - [83194] = 5, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_DOT_DOT, + anon_sym_try, + anon_sym_return, + anon_sym_where, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [82967] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8700), 1, - anon_sym_QMARK2, - STATE(4186), 1, + ACTIONS(5215), 1, + sym__entry_separator, + STATE(3760), 1, sym_comment, - ACTIONS(1072), 3, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1070), 38, - anon_sym_SEMI, + ACTIONS(5213), 41, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_not, - anon_sym_DOT_DOT2, - anon_sym_DOT, + anon_sym_PLUS, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -420960,34 +380186,33 @@ 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, - [83249] = 5, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_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, + [83020] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8700), 1, - anon_sym_QMARK2, - STATE(4187), 1, + ACTIONS(5219), 1, + sym__entry_separator, + STATE(3761), 1, sym_comment, - ACTIONS(1072), 3, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1070), 38, - anon_sym_SEMI, + ACTIONS(5217), 41, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_not, - anon_sym_DOT_DOT2, - anon_sym_DOT, + anon_sym_PLUS, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -421010,28 +380235,21 @@ 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, - [83304] = 11, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_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, + [83073] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(942), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(1582), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(1584), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8568), 1, - anon_sym_DOT, - ACTIONS(8570), 1, - aux_sym_unquoted_token3, - ACTIONS(8572), 1, - aux_sym_unquoted_token5, - STATE(4188), 1, + STATE(3762), 1, sym_comment, - STATE(9346), 1, - sym__immediate_decimal, - ACTIONS(936), 12, + ACTIONS(893), 17, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -421044,7 +380262,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(938), 23, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + ACTIONS(895), 25, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, @@ -421068,14 +380291,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [83371] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [83126] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8702), 1, - aux_sym__immediate_decimal_token2, - STATE(4189), 1, + ACTIONS(926), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(1379), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(1381), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8011), 1, + anon_sym_DOT, + ACTIONS(8013), 1, + aux_sym_unquoted_token3, + ACTIONS(8015), 1, + aux_sym_unquoted_token5, + STATE(3763), 1, sym_comment, - ACTIONS(923), 17, + STATE(8796), 1, + sym__immediate_decimal, + ACTIONS(920), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -421088,14 +380325,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token5, - ACTIONS(925), 24, + ACTIONS(922), 23, anon_sym_COMMA, - anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, @@ -421116,16 +380349,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [83426] = 4, + [83193] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(938), 1, + ACTIONS(1243), 1, sym__entry_separator, - STATE(4190), 1, + STATE(3764), 1, sym_comment, - ACTIONS(936), 41, + ACTIONS(1241), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -421167,68 +380398,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [83479] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8585), 1, - aux_sym__immediate_decimal_token2, - STATE(4191), 1, - sym_comment, - ACTIONS(909), 17, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token5, - ACTIONS(911), 24, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [83534] = 5, + [83246] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8706), 1, - anon_sym_RBRACK, - ACTIONS(8709), 1, + ACTIONS(1063), 1, sym__entry_separator, - STATE(4192), 1, + STATE(3765), 1, sym_comment, - ACTIONS(8704), 40, + ACTIONS(1061), 41, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, @@ -421267,14 +380447,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [83589] = 5, + [83299] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(3766), 1, + sym_comment, + ACTIONS(2231), 3, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2229), 39, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + anon_sym_DOT_DOT2, + anon_sym_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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + aux_sym_unquoted_token2, + [83352] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8711), 1, - aux_sym__immediate_decimal_token2, - STATE(4193), 1, + STATE(3767), 1, sym_comment, - ACTIONS(917), 17, + ACTIONS(901), 17, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -421292,9 +380519,10 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token5, - ACTIONS(919), 24, + ACTIONS(903), 25, anon_sym_COMMA, - anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, @@ -421317,19 +380545,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [83644] = 6, + [83405] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8713), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8715), 1, - aux_sym__immediate_decimal_token2, - STATE(4194), 1, + STATE(3768), 1, sym_comment, - ACTIONS(2439), 2, + ACTIONS(2364), 3, anon_sym_LF, - anon_sym_LPAREN2, - ACTIONS(2437), 38, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2362), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -421342,6 +380567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, + anon_sym_DOT_DOT2, anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -421368,18 +380594,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, aux_sym_unquoted_token2, - [83701] = 5, + [83458] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8206), 1, - anon_sym_RBRACK, - ACTIONS(8209), 1, + ACTIONS(1281), 1, sym__entry_separator, - STATE(4195), 1, + STATE(3769), 1, sym_comment, - ACTIONS(8204), 40, + ACTIONS(1279), 41, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, @@ -421418,72 +380643,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [83756] = 6, + [83511] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8698), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(8717), 1, - anon_sym_DOT, - STATE(4196), 1, + STATE(3770), 1, sym_comment, - ACTIONS(925), 4, + ACTIONS(2404), 3, + anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - aux_sym_command_token1, - ACTIONS(923), 36, + ACTIONS(2402), 39, anon_sym_SEMI, - anon_sym_LF, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, anon_sym_DOT_DOT2, - sym_filesize_unit, - anon_sym_LF2, - aux_sym_unquoted_token5, - [83813] = 5, + anon_sym_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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + aux_sym_unquoted_token2, + [83564] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8670), 1, - aux_sym__immediate_decimal_token2, - STATE(4197), 1, + ACTIONS(1091), 1, + anon_sym_LF, + ACTIONS(1302), 1, + anon_sym_DOT_DOT2, + STATE(3771), 1, sym_comment, - ACTIONS(925), 4, + ACTIONS(1304), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - aux_sym_command_token1, - ACTIONS(923), 37, + ACTIONS(1293), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + ACTIONS(1089), 32, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, @@ -421515,16 +380744,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - [83868] = 4, + [83623] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4198), 1, + STATE(3772), 1, sym_comment, - ACTIONS(909), 17, + ACTIONS(934), 17, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -421542,7 +380767,7 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token5, - ACTIONS(911), 25, + ACTIONS(936), 25, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, @@ -421568,18 +380793,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [83921] = 5, + [83676] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1160), 1, + ACTIONS(1167), 1, sym__entry_separator, - ACTIONS(8213), 1, - anon_sym_RBRACK, - STATE(4199), 1, + STATE(3773), 1, sym_comment, - ACTIONS(8211), 40, + ACTIONS(1165), 41, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, @@ -421618,19 +380842,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [83976] = 5, + [83729] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8633), 1, + ACTIONS(8221), 1, + anon_sym_DOT, + ACTIONS(8224), 1, aux_sym__immediate_decimal_token2, - STATE(4200), 1, + STATE(3774), 1, sym_comment, - ACTIONS(911), 4, + ACTIONS(913), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, aux_sym_command_token1, - ACTIONS(909), 37, + ACTIONS(911), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -421638,6 +380864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -421664,67 +380891,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - anon_sym_DOT, sym_filesize_unit, - anon_sym_LF2, aux_sym_unquoted_token5, - [84031] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(8428), 1, - anon_sym_COMMA, - ACTIONS(8430), 1, - anon_sym_RBRACK, - ACTIONS(8432), 1, - sym__entry_separator, - STATE(4201), 1, - sym_comment, - ACTIONS(8426), 39, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - aux_sym__unquoted_in_list_token1, - [84088] = 4, + [83786] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4202), 1, + ACTIONS(8226), 1, + anon_sym_QMARK2, + STATE(3775), 1, sym_comment, - ACTIONS(917), 15, + ACTIONS(1024), 14, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -421738,9 +380914,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(919), 27, + anon_sym_DOT, + ACTIONS(1026), 27, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -421768,70 +380943,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [84141] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4203), 1, - sym_comment, - ACTIONS(917), 17, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token5, - ACTIONS(919), 25, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [84194] = 5, + [83841] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8625), 1, + ACTIONS(8159), 1, aux_sym__immediate_decimal_token2, - STATE(4204), 1, + STATE(3776), 1, sym_comment, - ACTIONS(911), 4, + ACTIONS(895), 4, + anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - aux_sym_command_token1, - ACTIONS(909), 37, + ACTIONS(893), 37, anon_sym_SEMI, - anon_sym_LF, + anon_sym_COLON, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, @@ -421839,6 +380965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_RBRACE, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -421866,85 +380993,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, anon_sym_DOT, sym_filesize_unit, - aux_sym_unquoted_token5, - [84249] = 7, - ACTIONS(113), 1, + [83896] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8720), 1, - anon_sym_DOT, - STATE(4205), 1, + ACTIONS(7173), 1, + aux_sym_unquoted_token5, + STATE(3777), 1, sym_comment, - STATE(4309), 1, - sym_path, - STATE(4689), 1, - sym_cell_path, - ACTIONS(997), 4, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(995), 35, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(938), 9, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_not, - 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_PLUS, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - 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, - [84308] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(5173), 1, - sym__entry_separator, - STATE(4206), 1, - sym_comment, - ACTIONS(5171), 41, + aux_sym__unquoted_in_list_token1, + ACTIONS(940), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -421952,9 +381031,6 @@ 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, @@ -421967,277 +381043,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - [84361] = 4, + [83951] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4207), 1, - sym_comment, - ACTIONS(950), 17, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token5, - ACTIONS(952), 25, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [84414] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(8722), 1, - aux_sym__immediate_decimal_token2, - STATE(4208), 1, - sym_comment, - ACTIONS(919), 4, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - aux_sym_command_token1, - ACTIONS(917), 37, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, + ACTIONS(8219), 1, anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - [84469] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8726), 1, - anon_sym_RBRACK, - STATE(4209), 1, + STATE(3778), 1, sym_comment, - ACTIONS(8728), 10, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(8724), 31, + ACTIONS(8230), 18, 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_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, sym_val_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, - [84524] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4210), 1, - sym_comment, - ACTIONS(1059), 10, + anon_sym_CARET, + ACTIONS(8228), 23, + sym_cmd_identifier, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym__, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1061), 32, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_try, + anon_sym_return, + anon_sym_where, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__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, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [84577] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4211), 1, - sym_comment, - ACTIONS(1063), 10, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1065), 32, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__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, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [84630] = 5, + [84006] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8480), 1, - aux_sym__immediate_decimal_token2, - STATE(4212), 1, + STATE(3779), 1, sym_comment, - ACTIONS(911), 4, + ACTIONS(1039), 4, + ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - ACTIONS(909), 37, + ACTIONS(1037), 38, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -422264,27 +381142,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT2, anon_sym_DOT, - sym_filesize_unit, - [84685] = 6, - ACTIONS(113), 1, + [84059] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8730), 1, + ACTIONS(8226), 1, + anon_sym_QMARK2, + STATE(3780), 1, + sym_comment, + ACTIONS(1024), 14, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(8733), 1, + ACTIONS(1026), 27, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [84114] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(8224), 1, aux_sym__immediate_decimal_token2, - STATE(4213), 1, + STATE(3781), 1, sym_comment, - ACTIONS(925), 4, - anon_sym_LF, + ACTIONS(913), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - ACTIONS(923), 36, + aux_sym_command_token1, + ACTIONS(911), 37, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -422314,83 +381239,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, + anon_sym_DOT, sym_filesize_unit, aux_sym_unquoted_token5, - [84742] = 4, - ACTIONS(113), 1, + [84169] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(961), 1, - sym__entry_separator, - STATE(4214), 1, + ACTIONS(8034), 1, + aux_sym__immediate_decimal_token2, + STATE(3782), 1, sym_comment, - ACTIONS(959), 41, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(2356), 9, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, - 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, anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - aux_sym__unquoted_in_list_token1, - [84795] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1290), 1, - sym__entry_separator, - STATE(4215), 1, - sym_comment, - ACTIONS(1243), 41, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2358), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -422398,9 +381280,6 @@ 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, @@ -422413,15 +381292,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_in_list_token1, - [84848] = 4, + [84224] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1160), 1, + ACTIONS(1035), 1, sym__entry_separator, - STATE(4216), 1, + STATE(3783), 1, sym_comment, - ACTIONS(1158), 41, + ACTIONS(1033), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -422463,14 +381341,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [84901] = 4, + [84277] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8735), 1, - aux_sym__unquoted_in_list_token3, - STATE(4217), 1, + ACTIONS(1247), 1, + sym__entry_separator, + STATE(3784), 1, sym_comment, - ACTIONS(8318), 41, + ACTIONS(1245), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -422512,14 +381390,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [84954] = 4, + [84330] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2439), 1, + ACTIONS(1022), 1, sym__entry_separator, - STATE(4218), 1, + STATE(3785), 1, sym_comment, - ACTIONS(2437), 41, + ACTIONS(1020), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -422561,32 +381439,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [85007] = 4, - ACTIONS(113), 1, + [84383] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2549), 1, - sym__entry_separator, - STATE(4219), 1, + STATE(3786), 1, sym_comment, - ACTIONS(2547), 41, + ACTIONS(1211), 10, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1213), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, + 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_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -422594,9 +381476,6 @@ 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, @@ -422609,25 +381488,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - [85060] = 4, + [84436] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1412), 1, - sym__entry_separator, - STATE(4220), 1, + STATE(3787), 1, sym_comment, - ACTIONS(1410), 41, + ACTIONS(1035), 3, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1033), 39, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_PLUS, + anon_sym_QMARK2, + anon_sym_not, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -422650,41 +381535,39 @@ 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, - aux_sym__unquoted_in_list_token1, - [85113] = 4, - ACTIONS(113), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [84489] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3507), 1, - sym__entry_separator, - STATE(4221), 1, + ACTIONS(8055), 1, + aux_sym__immediate_decimal_token2, + STATE(3788), 1, sym_comment, - ACTIONS(3505), 41, + ACTIONS(2229), 9, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2231), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -422692,9 +381575,6 @@ 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, @@ -422707,113 +381587,119 @@ 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, - [85166] = 4, - ACTIONS(113), 1, + [84544] = 10, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1288), 1, - sym__entry_separator, - STATE(4222), 1, + ACTIONS(961), 1, + anon_sym_DOT_DOT2, + ACTIONS(8013), 1, + aux_sym_unquoted_token5, + ACTIONS(8163), 1, + anon_sym_DOT, + ACTIONS(8232), 1, + sym_filesize_unit, + ACTIONS(8234), 1, + sym_duration_unit, + STATE(3789), 1, sym_comment, - ACTIONS(1286), 41, - anon_sym_LBRACK, + ACTIONS(965), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(938), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(940), 23, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [84609] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8219), 1, + anon_sym_PIPE, + STATE(3790), 1, + sym_comment, + ACTIONS(8238), 18, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_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, - aux_sym__unquoted_in_list_token1, - [85219] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1192), 1, - sym__entry_separator, - STATE(4223), 1, - sym_comment, - ACTIONS(1190), 41, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + ACTIONS(8236), 23, + sym_cmd_identifier, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_try, + anon_sym_return, + anon_sym_where, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, 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, - aux_sym__unquoted_in_list_token1, - [85272] = 4, + [84664] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1300), 1, + ACTIONS(1285), 1, sym__entry_separator, - STATE(4224), 1, + STATE(3791), 1, sym_comment, - ACTIONS(1298), 41, + ACTIONS(1283), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -422855,35 +381741,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [85325] = 5, - ACTIONS(3), 1, + [84717] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8737), 1, - anon_sym_RBRACK, - STATE(4225), 1, + ACTIONS(8089), 1, + aux_sym__immediate_decimal_token2, + STATE(3792), 1, sym_comment, - ACTIONS(8728), 10, - anon_sym_DOLLAR, + ACTIONS(895), 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + aux_sym_command_token1, + ACTIONS(893), 37, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_DOT_DOT, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(8724), 31, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + [84772] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(4738), 1, + sym__entry_separator, + STATE(3793), 1, + sym_comment, + ACTIONS(4734), 41, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_PLUS, 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -422891,12 +381824,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_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -422905,14 +381839,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [85380] = 4, + aux_sym__unquoted_in_list_token1, + [84825] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1304), 1, + ACTIONS(1251), 1, sym__entry_separator, - STATE(4226), 1, + STATE(3794), 1, sym_comment, - ACTIONS(1302), 41, + ACTIONS(1249), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -422954,37 +381889,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [85433] = 5, - ACTIONS(3), 1, + [84878] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8739), 1, - anon_sym_QMARK2, - STATE(4227), 1, + STATE(3795), 1, sym_comment, - ACTIONS(1070), 10, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1072), 31, + ACTIONS(1022), 3, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1020), 39, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_not, + anon_sym_DOT_DOT2, + anon_sym_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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -422992,43 +381929,40 @@ 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, - [85488] = 5, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [84931] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8739), 1, - anon_sym_QMARK2, - STATE(4228), 1, + ACTIONS(8240), 1, + anon_sym_LBRACK2, + STATE(3796), 1, sym_comment, - ACTIONS(1070), 10, + ACTIONS(1143), 10, + anon_sym_LBRACK, anon_sym_DASH, - anon_sym__, anon_sym_DOT_DOT, - anon_sym_DOT, + anon_sym_PLUS, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1072), 31, - anon_sym_LBRACK, + aux_sym__unquoted_in_list_token1, + ACTIONS(1145), 31, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -423054,24 +381988,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [85543] = 4, + [84986] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1318), 1, - sym__entry_separator, - STATE(4229), 1, + ACTIONS(3356), 1, + anon_sym_LF, + ACTIONS(8242), 1, + anon_sym_DOT_DOT2, + STATE(3797), 1, sym_comment, - ACTIONS(1316), 41, + ACTIONS(3362), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(8244), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3354), 36, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_PLUS, + anon_sym_not, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -423094,33 +382038,36 @@ 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, - aux_sym__unquoted_in_list_token1, - [85596] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [85045] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1322), 1, - sym__entry_separator, - STATE(4230), 1, + ACTIONS(8246), 1, + anon_sym_DOT, + STATE(3798), 1, sym_comment, - ACTIONS(1320), 41, + STATE(3824), 1, + sym_path, + STATE(4381), 1, + sym_cell_path, + ACTIONS(994), 4, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(992), 35, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_PLUS, + anon_sym_not, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -423143,41 +382090,39 @@ 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, - aux_sym__unquoted_in_list_token1, - [85649] = 4, - ACTIONS(113), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [85104] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1344), 1, - sym__entry_separator, - STATE(4231), 1, + ACTIONS(8248), 1, + aux_sym__immediate_decimal_token2, + STATE(3799), 1, sym_comment, - ACTIONS(1342), 41, + ACTIONS(2362), 9, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2364), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -423185,9 +382130,6 @@ 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, @@ -423200,25 +382142,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_in_list_token1, - [85702] = 4, + [85159] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1348), 1, - sym__entry_separator, - STATE(4232), 1, + STATE(3800), 1, sym_comment, - ACTIONS(1346), 41, + ACTIONS(2364), 5, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2362), 37, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_PLUS, + anon_sym_not, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -423241,23 +382188,66 @@ 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, - aux_sym__unquoted_in_list_token1, - [85755] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + aux_sym_unquoted_token2, + [85212] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3801), 1, + sym_comment, + ACTIONS(893), 15, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(895), 27, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [85265] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1364), 1, + ACTIONS(1255), 1, sym__entry_separator, - STATE(4233), 1, + STATE(3802), 1, sym_comment, - ACTIONS(1362), 41, + ACTIONS(1253), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -423299,19 +382289,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, - [85808] = 5, + [85318] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8741), 1, + ACTIONS(8250), 1, aux_sym__immediate_decimal_token2, - STATE(4234), 1, + STATE(3803), 1, sym_comment, - ACTIONS(919), 4, + ACTIONS(903), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, aux_sym_command_token1, - ACTIONS(917), 37, + ACTIONS(901), 37, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -423319,6 +382309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -423347,168 +382338,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, anon_sym_DOT, sym_filesize_unit, - anon_sym_LF2, - aux_sym_unquoted_token5, - [85863] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8743), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8745), 1, - aux_sym__immediate_decimal_token2, - STATE(4235), 1, - sym_comment, - ACTIONS(911), 15, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(909), 25, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token5, - [85920] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(4236), 1, - sym_comment, - ACTIONS(1111), 4, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1109), 38, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [85973] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8702), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(8747), 1, - anon_sym_DOT, - STATE(4237), 1, - sym_comment, - ACTIONS(923), 16, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, aux_sym_unquoted_token5, - ACTIONS(925), 24, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [86030] = 5, + [85373] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8750), 1, - anon_sym_LBRACK2, - STATE(4238), 1, + STATE(3804), 1, sym_comment, - ACTIONS(1259), 10, - anon_sym_LBRACK, + ACTIONS(1215), 10, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -423518,13 +382355,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1261), 31, + ACTIONS(1217), 32, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -423550,33 +382388,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [86085] = 6, + [85426] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8752), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8754), 1, - aux_sym__immediate_decimal_token2, - STATE(4239), 1, + ACTIONS(922), 1, + sym__entry_separator, + STATE(3805), 1, sym_comment, - ACTIONS(2439), 3, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2437), 37, - anon_sym_SEMI, + ACTIONS(920), 41, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_not, - anon_sym_DOT_DOT2, + anon_sym_PLUS, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -423599,105 +382428,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, - [86142] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(942), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(1582), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(1584), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8568), 1, - anon_sym_DOT, - ACTIONS(8570), 1, - aux_sym_unquoted_token3, - ACTIONS(8572), 1, - aux_sym_unquoted_token5, - STATE(4240), 1, - sym_comment, - STATE(9346), 1, - sym__immediate_decimal, - ACTIONS(936), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(938), 23, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [86209] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1251), 1, - aux_sym__unquoted_in_list_token7, - STATE(4241), 1, - sym_comment, - ACTIONS(1249), 8, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1247), 33, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, @@ -423707,18 +382437,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [86264] = 5, + [85479] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1188), 1, + ACTIONS(1091), 1, sym__entry_separator, - ACTIONS(8758), 1, - anon_sym_RBRACK, - STATE(4242), 1, + STATE(3806), 1, sym_comment, - ACTIONS(8756), 40, + ACTIONS(1089), 41, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, @@ -423757,74 +382486,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [86319] = 15, - ACTIONS(3), 1, + [85532] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3113), 1, - anon_sym_DOLLAR, - ACTIONS(6768), 1, - aux_sym_unquoted_token3, - ACTIONS(8653), 1, - anon_sym_LPAREN2, - ACTIONS(8761), 1, + ACTIONS(8252), 1, anon_sym_DOT, - ACTIONS(8763), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8765), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8767), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8769), 1, - aux_sym_unquoted_token5, - STATE(4243), 1, + ACTIONS(8254), 1, + aux_sym__immediate_decimal_token2, + STATE(3807), 1, sym_comment, - STATE(4952), 1, - sym__var, - STATE(5331), 1, - sym__immediate_decimal, - STATE(5680), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(936), 10, + ACTIONS(2358), 3, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2356), 37, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(938), 20, - anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_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, - [86394] = 4, + [85589] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1408), 1, + ACTIONS(2231), 1, sym__entry_separator, - STATE(4244), 1, + STATE(3808), 1, sym_comment, - ACTIONS(1406), 41, + ACTIONS(2229), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -423866,32 +382586,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [86447] = 4, - ACTIONS(113), 1, + [85642] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3962), 1, - sym__entry_separator, - STATE(4245), 1, + ACTIONS(8219), 1, + anon_sym_PIPE, + STATE(3809), 1, + sym_comment, + ACTIONS(8258), 18, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + ACTIONS(8256), 23, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_DOT_DOT, + anon_sym_try, + anon_sym_return, + anon_sym_where, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [85697] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7119), 1, + aux_sym__unquoted_in_list_token6, + STATE(3810), 1, sym_comment, - ACTIONS(3960), 41, + ACTIONS(938), 9, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(940), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_PLUS, 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -423899,9 +382674,6 @@ 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, @@ -423914,15 +382686,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_in_list_token1, - [86500] = 4, + [85752] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1296), 1, + ACTIONS(1259), 1, sym__entry_separator, - STATE(4246), 1, + STATE(3811), 1, sym_comment, - ACTIONS(1294), 41, + ACTIONS(1257), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -423964,36 +382735,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [86553] = 4, + [85805] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4247), 1, + STATE(3812), 1, sym_comment, - ACTIONS(936), 10, - anon_sym_LPAREN, + ACTIONS(901), 15, + sym_identifier, + anon_sym_GT, anon_sym_DASH, - anon_sym_DOT_DOT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(938), 32, - anon_sym_LBRACK, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(903), 27, + anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [85858] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(8262), 1, + anon_sym_RBRACK, + ACTIONS(8265), 1, + sym__entry_separator, + STATE(3813), 1, + sym_comment, + ACTIONS(8260), 40, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_LPAREN2, + anon_sym_DOT_DOT, + anon_sym_PLUS, 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -424001,6 +382818,9 @@ 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, @@ -424013,36 +382833,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [86606] = 5, - ACTIONS(113), 1, + aux_sym__unquoted_in_list_token1, + [85913] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1284), 1, - aux_sym__unquoted_in_list_token7, - STATE(4248), 1, + ACTIONS(8267), 1, + anon_sym_QMARK2, + STATE(3814), 1, sym_comment, - ACTIONS(8396), 8, + ACTIONS(1024), 10, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1026), 31, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(8211), 33, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, + 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -424050,10 +382872,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, @@ -424061,28 +382883,26 @@ static const uint16_t ts_small_parse_table[] = { 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, - [86661] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8771), 1, - anon_sym_DOT, - ACTIONS(8773), 1, - aux_sym__immediate_decimal_token2, - STATE(4249), 1, + anon_sym_e_PLUSo_GT, + [85968] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8267), 1, + anon_sym_QMARK2, + STATE(3815), 1, sym_comment, - ACTIONS(2581), 9, + ACTIONS(1024), 10, anon_sym_DASH, anon_sym__, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(2583), 31, + ACTIONS(1026), 31, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -424114,75 +382934,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [86718] = 6, + [86023] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8775), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8777), 1, - aux_sym__immediate_decimal_token2, - STATE(4250), 1, + STATE(3816), 1, sym_comment, - ACTIONS(911), 4, + ACTIONS(2404), 5, + ts_builtin_sym_end, anon_sym_LF, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - ACTIONS(909), 36, + ACTIONS(2402), 37, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - [86775] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1310), 1, - sym__entry_separator, - STATE(4251), 1, - sym_comment, - ACTIONS(1308), 41, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_PLUS, + anon_sym_not, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -424205,26 +382980,21 @@ 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, - aux_sym__unquoted_in_list_token1, - [86828] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + aux_sym_unquoted_token2, + [86076] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1314), 1, + ACTIONS(7807), 1, + anon_sym_RBRACK, + ACTIONS(7810), 1, sym__entry_separator, - STATE(4252), 1, + STATE(3817), 1, sym_comment, - ACTIONS(1312), 41, + ACTIONS(7805), 40, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, @@ -424263,37 +383033,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [86881] = 5, - ACTIONS(3), 1, + [86131] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8779), 1, - anon_sym_EQ, - STATE(4253), 1, + ACTIONS(5139), 1, + sym__entry_separator, + STATE(3818), 1, sym_comment, - ACTIONS(5011), 9, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(5015), 32, + ACTIONS(5137), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_PLUS, 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -424301,6 +383066,9 @@ 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, @@ -424313,36 +383081,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [86936] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4254), 1, - sym_comment, - ACTIONS(1243), 10, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1290), 32, - anon_sym_LBRACK, + [86184] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(7962), 1, anon_sym_COMMA, + ACTIONS(7964), 1, anon_sym_RBRACK, + ACTIONS(7966), 1, + sym__entry_separator, + STATE(3819), 1, + sym_comment, + ACTIONS(7960), 39, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_LPAREN2, + anon_sym_DOT_DOT, + anon_sym_PLUS, 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -424350,6 +383117,9 @@ 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, @@ -424362,26 +383132,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [86989] = 5, + aux_sym__unquoted_in_list_token1, + [86241] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym__unquoted_in_list_token7, - STATE(4255), 1, + ACTIONS(2364), 1, + sym__entry_separator, + STATE(3820), 1, sym_comment, - ACTIONS(1255), 8, + ACTIONS(2362), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1253), 33, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DOT_DOT_EQ, @@ -424403,6 +383170,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, @@ -424412,47 +383182,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [87044] = 5, - ACTIONS(113), 1, + [86294] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym__unquoted_in_list_token7, - STATE(4256), 1, + ACTIONS(8269), 1, + sym_long_flag_identifier, + STATE(3821), 1, sym_comment, - ACTIONS(1275), 8, + ACTIONS(4734), 14, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(4738), 27, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1273), 33, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, + 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_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - 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, @@ -424461,35 +383232,34 @@ 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, - [87099] = 7, + [86349] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3520), 1, - anon_sym_LF, - ACTIONS(8781), 1, - anon_sym_DOT_DOT2, - STATE(4257), 1, - sym_comment, - ACTIONS(1934), 2, + ACTIONS(8246), 1, anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(8783), 2, + STATE(3822), 1, + sym_comment, + STATE(3824), 1, + sym_path, + STATE(4347), 1, + sym_cell_path, + ACTIONS(1004), 4, + ts_builtin_sym_end, + anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(3518), 36, + ACTIONS(1002), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -424514,14 +383284,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [87158] = 4, + [86408] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1188), 1, + ACTIONS(2404), 1, sym__entry_separator, - STATE(4258), 1, + STATE(3823), 1, sym_comment, - ACTIONS(1186), 41, + ACTIONS(2402), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -424563,18 +383333,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [87211] = 4, + [86461] = 7, ACTIONS(113), 1, anon_sym_POUND, - STATE(4259), 1, + ACTIONS(8246), 1, + anon_sym_DOT, + STATE(3824), 1, sym_comment, - ACTIONS(2439), 5, + STATE(3827), 1, + aux_sym_cell_path_repeat1, + STATE(4217), 1, + sym_path, + ACTIONS(1012), 4, ts_builtin_sym_end, anon_sym_LF, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2437), 37, + ACTIONS(1010), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -424586,7 +383361,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_not, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -424611,29 +383385,78 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - aux_sym_unquoted_token2, - [87264] = 5, + [86520] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1217), 1, + sym__entry_separator, + STATE(3825), 1, + sym_comment, + ACTIONS(1215), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_PLUS, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + aux_sym__unquoted_in_list_token1, + [86573] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8733), 1, + ACTIONS(8271), 1, aux_sym__immediate_decimal_token2, - STATE(4260), 1, + STATE(3826), 1, sym_comment, - ACTIONS(925), 4, + ACTIONS(903), 4, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - ACTIONS(923), 37, + ACTIONS(901), 37, anon_sym_SEMI, + anon_sym_COLON, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -424661,20 +383484,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, anon_sym_DOT, sym_filesize_unit, - aux_sym_unquoted_token5, - [87319] = 5, + [86628] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8785), 1, - aux_sym__immediate_decimal_token2, - STATE(4261), 1, + ACTIONS(8246), 1, + anon_sym_DOT, + STATE(3827), 1, sym_comment, - ACTIONS(2583), 4, + STATE(3838), 1, + aux_sym_cell_path_repeat1, + STATE(4217), 1, + sym_path, + ACTIONS(1008), 4, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2581), 37, + ACTIONS(1006), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -424686,7 +383512,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_not, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -424711,20 +383536,21 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - aux_sym_unquoted_token2, - [87374] = 5, + [86687] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8546), 1, + ACTIONS(8187), 1, aux_sym__immediate_decimal_token2, - STATE(4262), 1, + ACTIONS(8273), 1, + anon_sym_DOT, + STATE(3828), 1, sym_comment, - ACTIONS(2439), 4, + ACTIONS(2358), 4, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2437), 37, + ACTIONS(2356), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -424736,7 +383562,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_not, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -424762,14 +383587,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, aux_sym_unquoted_token2, - [87429] = 4, + [86744] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(8276), 1, + anon_sym_DOT, + ACTIONS(8279), 1, + aux_sym__immediate_decimal_token2, + STATE(3829), 1, + sym_comment, + ACTIONS(913), 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + aux_sym_command_token1, + ACTIONS(911), 36, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + sym_filesize_unit, + anon_sym_LF2, + aux_sym_unquoted_token5, + [86801] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1334), 1, + ACTIONS(3723), 1, sym__entry_separator, - STATE(4263), 1, + STATE(3830), 1, sym_comment, - ACTIONS(1332), 41, + ACTIONS(3721), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -424811,31 +383687,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [87482] = 5, + [86854] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8787), 1, - aux_sym__immediate_decimal_token2, - STATE(4264), 1, + ACTIONS(1133), 1, + aux_sym__unquoted_in_list_token7, + STATE(3831), 1, sym_comment, - ACTIONS(2549), 4, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2547), 37, - anon_sym_SEMI, + ACTIONS(1131), 8, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1129), 33, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_not, - anon_sym_DOT_DOT2, - anon_sym_DOT, + anon_sym_PLUS, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -424855,28 +383728,35 @@ 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_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - aux_sym_unquoted_token2, - [87537] = 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, + aux_sym__unquoted_in_list_token1, + [86909] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1338), 1, - sym__entry_separator, - STATE(4265), 1, + ACTIONS(1133), 1, + aux_sym__unquoted_in_list_token7, + STATE(3832), 1, sym_comment, - ACTIONS(1336), 41, + ACTIONS(1137), 8, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1135), 33, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DOT_DOT_EQ, @@ -424898,9 +383778,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, @@ -424910,36 +383787,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [87590] = 4, + [86964] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(4266), 1, + ACTIONS(926), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(1379), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(1381), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8011), 1, + anon_sym_DOT, + ACTIONS(8013), 1, + aux_sym_unquoted_token3, + ACTIONS(8015), 1, + aux_sym_unquoted_token5, + STATE(3833), 1, sym_comment, - ACTIONS(1414), 10, - anon_sym_LPAREN, + STATE(8796), 1, + sym__immediate_decimal, + ACTIONS(920), 12, + sym_identifier, + anon_sym_GT, anon_sym_DASH, - anon_sym_DOT_DOT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1416), 32, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(922), 23, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [87031] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1263), 1, + sym__entry_separator, + STATE(3834), 1, + sym_comment, + ACTIONS(1261), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_LPAREN2, + anon_sym_DOT_DOT, + anon_sym_PLUS, 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -424947,6 +383876,9 @@ 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, @@ -424959,14 +383891,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [87643] = 4, + aux_sym__unquoted_in_list_token1, + [87084] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(967), 1, + anon_sym_DOT, + ACTIONS(969), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(1407), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(1409), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8013), 1, + aux_sym_unquoted_token4, + STATE(3835), 1, + sym_comment, + STATE(10080), 1, + sym__immediate_decimal, + ACTIONS(920), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(922), 24, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [87149] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8789), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(4267), 1, + ACTIONS(5243), 1, + sym__entry_separator, + STATE(3836), 1, sym_comment, - ACTIONS(1243), 41, + ACTIONS(5241), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -425008,14 +383996,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [87696] = 4, + [87202] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1352), 1, + ACTIONS(5247), 1, sym__entry_separator, - STATE(4268), 1, + STATE(3837), 1, sym_comment, - ACTIONS(1350), 41, + ACTIONS(5245), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -425057,18 +384045,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [87749] = 4, + [87255] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(4269), 1, + ACTIONS(8281), 1, + anon_sym_DOT, + STATE(4217), 1, + sym_path, + STATE(3838), 2, sym_comment, - ACTIONS(2549), 5, + aux_sym_cell_path_repeat1, + ACTIONS(987), 4, ts_builtin_sym_end, anon_sym_LF, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2547), 37, + ACTIONS(985), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -425080,7 +384072,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_not, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -425105,84 +384096,32 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - aux_sym_unquoted_token2, - [87802] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8791), 1, - anon_sym_DOT_DOT2, - ACTIONS(8795), 1, - sym_filesize_unit, - ACTIONS(8797), 1, - sym_duration_unit, - STATE(4270), 1, - sym_comment, - ACTIONS(8793), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(959), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(961), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [87863] = 4, + [87312] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4271), 1, + ACTIONS(8284), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8286), 1, + aux_sym__immediate_decimal_token2, + STATE(3839), 1, sym_comment, - ACTIONS(1418), 10, - anon_sym_LPAREN, + ACTIONS(2229), 9, anon_sym_DASH, + anon_sym__, anon_sym_DOT_DOT, - anon_sym_PLUS, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1420), 32, + aux_sym_unquoted_token1, + ACTIONS(2231), 31, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_LPAREN2, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -425208,42 +384147,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [87916] = 7, - ACTIONS(113), 1, + [87369] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2845), 1, - anon_sym_LF, - ACTIONS(8799), 1, - anon_sym_DOT_DOT2, - STATE(4272), 1, + ACTIONS(8288), 1, + anon_sym_EQ, + STATE(3840), 1, sym_comment, - ACTIONS(2851), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(8801), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2843), 36, - anon_sym_SEMI, + ACTIONS(4721), 9, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(4725), 32, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_not, 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -425251,123 +384185,84 @@ 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, - [87975] = 4, - ACTIONS(113), 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, + [87424] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4273), 1, + ACTIONS(8219), 1, + anon_sym_PIPE, + STATE(3841), 1, sym_comment, - ACTIONS(3507), 5, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3505), 37, - anon_sym_SEMI, + ACTIONS(8292), 18, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - anon_sym_DOT_DOT2, - anon_sym_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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_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, - aux_sym_unquoted_token2, - [88028] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(4274), 1, - sym_comment, - ACTIONS(2439), 3, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2437), 39, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(8290), 23, + sym_cmd_identifier, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_DOT_DOT, + anon_sym_try, + anon_sym_return, + anon_sym_where, anon_sym_not, - anon_sym_DOT_DOT2, - anon_sym_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, anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - aux_sym_unquoted_token2, - [88081] = 4, + [87479] = 7, ACTIONS(113), 1, anon_sym_POUND, - STATE(4275), 1, - sym_comment, - ACTIONS(2549), 3, + ACTIONS(3314), 1, anon_sym_LF, + ACTIONS(8294), 1, + anon_sym_DOT_DOT2, + STATE(3842), 1, + sym_comment, + ACTIONS(1844), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(8296), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2547), 39, + ACTIONS(3312), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -425380,8 +384275,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, - anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -425406,15 +384299,116 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - aux_sym_unquoted_token2, - [88134] = 4, + [87538] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8298), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8300), 1, + aux_sym__immediate_decimal_token2, + STATE(3843), 1, + sym_comment, + ACTIONS(895), 15, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(893), 25, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + [87595] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(8302), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8304), 1, + aux_sym__immediate_decimal_token2, + STATE(3844), 1, + sym_comment, + ACTIONS(895), 5, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + ACTIONS(893), 35, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + [87652] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1170), 1, + ACTIONS(1231), 1, sym__entry_separator, - STATE(4276), 1, + STATE(3845), 1, sym_comment, - ACTIONS(1168), 41, + ACTIONS(1229), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -425456,63 +384450,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [88187] = 4, - ACTIONS(113), 1, + [87705] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4277), 1, + STATE(3846), 1, sym_comment, - ACTIONS(3507), 3, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3505), 39, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(934), 15, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(936), 27, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - anon_sym_DOT_DOT2, - anon_sym_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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - aux_sym_unquoted_token2, - [88240] = 4, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [87758] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1420), 1, + ACTIONS(5111), 1, sym__entry_separator, - STATE(4278), 1, + STATE(3847), 1, sym_comment, - ACTIONS(1418), 41, + ACTIONS(5109), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -425554,12 +384548,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [88293] = 4, + [87811] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(4279), 1, + ACTIONS(1149), 1, + aux_sym__unquoted_in_list_token7, + STATE(3848), 1, sym_comment, - ACTIONS(1282), 8, + ACTIONS(7828), 8, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -425568,7 +384564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1280), 34, + ACTIONS(7778), 33, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, @@ -425602,114 +384598,64 @@ 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_token7, - [88346] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8807), 1, - anon_sym_PIPE, - STATE(4280), 1, - sym_comment, - ACTIONS(8805), 18, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - ACTIONS(8803), 23, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_DOT_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_where, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [88401] = 4, + [87866] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5209), 1, - sym__entry_separator, - STATE(4281), 1, + ACTIONS(8279), 1, + aux_sym__immediate_decimal_token2, + STATE(3849), 1, sym_comment, - ACTIONS(5207), 41, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(913), 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + aux_sym_command_token1, + ACTIONS(911), 37, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - aux_sym__unquoted_in_list_token1, - [88454] = 4, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + anon_sym_LF2, + aux_sym_unquoted_token5, + [87921] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5213), 1, + ACTIONS(1177), 1, sym__entry_separator, - STATE(4282), 1, + STATE(3850), 1, sym_comment, - ACTIONS(5211), 41, + ACTIONS(1175), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -425751,74 +384697,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [88507] = 5, + [87974] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8809), 1, - sym_long_flag_identifier, - STATE(4283), 1, + ACTIONS(2555), 1, + anon_sym_DOLLAR, + ACTIONS(8173), 1, + anon_sym_LPAREN2, + ACTIONS(8306), 1, + anon_sym_DOT, + ACTIONS(8308), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8310), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8312), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8314), 1, + aux_sym_unquoted_token3, + ACTIONS(8316), 1, + aux_sym_unquoted_token5, + STATE(3851), 1, sym_comment, - ACTIONS(5075), 14, + STATE(4565), 1, + sym__immediate_decimal, + STATE(4600), 1, + sym__var, + STATE(5326), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(920), 10, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, anon_sym_DOT2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, + aux_sym__val_number_decimal_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(5079), 27, + ACTIONS(922), 20, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_not, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, + 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, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [88562] = 10, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [88049] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1043), 1, - anon_sym_DOT, - ACTIONS(1045), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(1609), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(1611), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8570), 1, - aux_sym_unquoted_token4, - STATE(4284), 1, + ACTIONS(8318), 1, + anon_sym_DOT_DOT2, + ACTIONS(8322), 1, + sym_filesize_unit, + ACTIONS(8324), 1, + sym_duration_unit, + STATE(3852), 1, sym_comment, - STATE(10460), 1, - sym__immediate_decimal, - ACTIONS(936), 12, + ACTIONS(8320), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(938), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -425831,11 +384784,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(938), 24, + ACTIONS(940), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, @@ -425856,27 +384810,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [88627] = 5, + [88110] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8576), 1, - aux_sym__immediate_decimal_token2, - STATE(4285), 1, + ACTIONS(1235), 1, + sym__entry_separator, + STATE(3853), 1, sym_comment, - ACTIONS(911), 4, + ACTIONS(1233), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_PLUS, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + aux_sym__unquoted_in_list_token1, + [88163] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(8326), 1, + anon_sym_QMARK2, + STATE(3854), 1, + sym_comment, + ACTIONS(1026), 3, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - ACTIONS(909), 37, + ACTIONS(1024), 38, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + anon_sym_DOT_DOT2, + anon_sym_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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [88218] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(8328), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8330), 1, + aux_sym__immediate_decimal_token2, + STATE(3855), 1, + sym_comment, + ACTIONS(895), 5, + ts_builtin_sym_end, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + aux_sym_command_token1, + ACTIONS(893), 35, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -425906,24 +384960,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, sym_filesize_unit, aux_sym_unquoted_token5, - [88682] = 6, + [88275] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8811), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8813), 1, - aux_sym__immediate_decimal_token2, - STATE(4286), 1, + STATE(3856), 1, sym_comment, - ACTIONS(911), 5, + ACTIONS(1049), 4, ts_builtin_sym_end, + anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - aux_sym_command_token1, - ACTIONS(909), 35, + ACTIONS(1047), 38, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, anon_sym_SEMI, - anon_sym_LF, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, @@ -425955,21 +385009,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT2, anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - [88739] = 5, + [88328] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8815), 1, + ACTIONS(8332), 1, aux_sym__immediate_decimal_token2, - STATE(4287), 1, + STATE(3857), 1, sym_comment, - ACTIONS(919), 4, + ACTIONS(913), 4, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - ACTIONS(917), 37, + ACTIONS(911), 37, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -426007,24 +385059,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, sym_filesize_unit, aux_sym_unquoted_token5, - [88794] = 4, + [88383] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1061), 1, - sym__entry_separator, - STATE(4288), 1, + ACTIONS(8326), 1, + anon_sym_QMARK2, + STATE(3858), 1, sym_comment, - ACTIONS(1059), 41, + ACTIONS(1026), 3, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1024), 38, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_PLUS, + anon_sym_not, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -426047,23 +385107,16 @@ 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, - aux_sym__unquoted_in_list_token1, - [88847] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [88438] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1065), 1, + ACTIONS(1227), 1, sym__entry_separator, - STATE(4289), 1, + STATE(3859), 1, sym_comment, - ACTIONS(1063), 41, + ACTIONS(1225), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -426105,41 +385158,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [88900] = 6, - ACTIONS(113), 1, + [88491] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8817), 1, - anon_sym_DOT, - ACTIONS(8819), 1, - aux_sym__immediate_decimal_token2, - STATE(4290), 1, + ACTIONS(8334), 1, + aux_sym__immediate_decimal_token1, + STATE(3860), 1, sym_comment, - ACTIONS(2583), 3, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2581), 37, - anon_sym_SEMI, + ACTIONS(4771), 9, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(4773), 32, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -426147,31 +385196,38 @@ 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, - [88957] = 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, + [88546] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1374), 1, - sym__entry_separator, - STATE(4291), 1, + ACTIONS(1163), 1, + aux_sym__unquoted_in_list_token7, + STATE(3861), 1, sym_comment, - ACTIONS(1372), 41, + ACTIONS(1161), 8, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1159), 33, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DOT_DOT_EQ, @@ -426193,9 +385249,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, @@ -426205,30 +385258,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [89010] = 7, + [88601] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1160), 1, - anon_sym_LF, - ACTIONS(1472), 1, - anon_sym_DOT_DOT2, - STATE(4292), 1, + ACTIONS(8155), 1, + aux_sym__immediate_decimal_token2, + STATE(3862), 1, sym_comment, - ACTIONS(1474), 2, + ACTIONS(895), 4, + anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1463), 6, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - ACTIONS(1158), 32, + sym_duration_unit, + ACTIONS(893), 37, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -426257,162 +385304,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [89069] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8807), 1, - anon_sym_PIPE, - STATE(4293), 1, - sym_comment, - ACTIONS(8823), 18, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - ACTIONS(8821), 23, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_DOT_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_where, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [89124] = 6, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + [88656] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8785), 1, + ACTIONS(8149), 1, aux_sym__immediate_decimal_token2, - ACTIONS(8825), 1, - anon_sym_DOT, - STATE(4294), 1, + STATE(3863), 1, sym_comment, - ACTIONS(2583), 4, - ts_builtin_sym_end, - anon_sym_LF, + ACTIONS(895), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2581), 36, + sym_duration_unit, + aux_sym_command_token1, + ACTIONS(893), 37, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - aux_sym_unquoted_token2, - [89181] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(5201), 1, - sym__entry_separator, - STATE(4295), 1, - sym_comment, - ACTIONS(5199), 41, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_GT, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - aux_sym__unquoted_in_list_token1, - [89234] = 4, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + anon_sym_LF2, + aux_sym_unquoted_token5, + [88711] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4296), 1, + STATE(3864), 1, sym_comment, - ACTIONS(950), 15, + ACTIONS(1033), 14, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -426426,9 +385377,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(952), 27, + anon_sym_DOT, + ACTIONS(1035), 28, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -426437,6 +385387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -426456,44 +385407,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [89287] = 5, - ACTIONS(3), 1, + [88764] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8828), 1, - anon_sym_QMARK2, - STATE(4297), 1, + ACTIONS(8336), 1, + aux_sym__immediate_decimal_token2, + STATE(3865), 1, sym_comment, - ACTIONS(1070), 14, - sym_identifier, + ACTIONS(903), 4, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + ACTIONS(901), 37, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1072), 27, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -426504,16 +385450,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [89342] = 5, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + [88819] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8828), 1, - anon_sym_QMARK2, - STATE(4298), 1, + ACTIONS(961), 1, + anon_sym_DOT_DOT2, + ACTIONS(8013), 1, + aux_sym_unquoted_token5, + ACTIONS(8163), 1, + anon_sym_DOT, + ACTIONS(8338), 1, + sym_filesize_unit, + ACTIONS(8340), 1, + sym_duration_unit, + STATE(3866), 1, sym_comment, - ACTIONS(1070), 14, + ACTIONS(965), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(938), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -426526,13 +385488,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1072), 27, + ACTIONS(940), 23, anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, @@ -426554,24 +385512,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [89397] = 4, + [88884] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5205), 1, - sym__entry_separator, - STATE(4299), 1, + STATE(3867), 1, sym_comment, - ACTIONS(5203), 41, + ACTIONS(1157), 8, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1155), 34, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DOT_DOT_EQ, @@ -426593,9 +385551,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, @@ -426605,85 +385560,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [89450] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(8830), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8832), 1, - aux_sym__immediate_decimal_token2, - STATE(4300), 1, - sym_comment, - ACTIONS(911), 5, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - ACTIONS(909), 35, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - [89507] = 7, + aux_sym__unquoted_in_list_token7, + [88937] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8720), 1, - anon_sym_DOT, - STATE(4301), 1, + ACTIONS(1267), 1, + sym__entry_separator, + STATE(3868), 1, sym_comment, - STATE(4309), 1, - sym_path, - STATE(4714), 1, - sym_cell_path, - ACTIONS(1012), 4, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1010), 35, - anon_sym_SEMI, + ACTIONS(1265), 41, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_not, - anon_sym_DOT_DOT2, + anon_sym_PLUS, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -426706,66 +385601,71 @@ 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, - [89566] = 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, + aux_sym__unquoted_in_list_token1, + [88990] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8807), 1, - anon_sym_PIPE, - STATE(4302), 1, + ACTIONS(1267), 1, + sym__entry_separator, + STATE(3869), 1, sym_comment, - ACTIONS(8836), 18, + ACTIONS(1265), 41, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - ACTIONS(8834), 23, - sym_cmd_identifier, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, + anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_where, - anon_sym_not, + anon_sym_PLUS, + 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, anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, - [89621] = 5, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + [89043] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7683), 1, - aux_sym_unquoted_token5, - STATE(4303), 1, + STATE(3870), 1, sym_comment, - ACTIONS(959), 9, + ACTIONS(920), 10, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -426775,14 +385675,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(961), 32, + ACTIONS(922), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -426808,112 +385708,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [89676] = 5, - ACTIONS(3), 1, + [89096] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8807), 1, - anon_sym_PIPE, - STATE(4304), 1, + ACTIONS(1213), 1, + sym__entry_separator, + STATE(3871), 1, sym_comment, - ACTIONS(8840), 18, + ACTIONS(1211), 41, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - ACTIONS(8838), 23, - sym_cmd_identifier, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, + anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_where, - anon_sym_not, + anon_sym_PLUS, + 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, - anon_sym_DOT2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [89731] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8807), 1, - anon_sym_PIPE, - STATE(4305), 1, - sym_comment, - ACTIONS(8844), 18, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token5, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - ACTIONS(8842), 23, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_DOT_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_where, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - [89786] = 4, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + [89149] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4306), 1, + ACTIONS(8342), 1, + anon_sym_DOT, + ACTIONS(8345), 1, + aux_sym__immediate_decimal_token2, + STATE(3872), 1, sym_comment, - ACTIONS(909), 17, + ACTIONS(911), 16, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -426927,12 +385780,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - anon_sym_DOT, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token5, - ACTIONS(911), 25, - anon_sym_COLON, + ACTIONS(913), 24, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -426957,133 +385808,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [89839] = 8, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1160), 1, - anon_sym_LF, - ACTIONS(1472), 1, - anon_sym_DOT_DOT2, - ACTIONS(8846), 1, - anon_sym_COLON, - STATE(4307), 1, - sym_comment, - ACTIONS(1474), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1463), 6, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - ACTIONS(1158), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [89900] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(4308), 1, - sym_comment, - ACTIONS(1115), 4, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1113), 38, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [89953] = 7, + [89206] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8720), 1, - anon_sym_DOT, - STATE(4309), 1, + ACTIONS(8347), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8349), 1, + aux_sym__immediate_decimal_token2, + STATE(3873), 1, sym_comment, - STATE(4313), 1, - aux_sym_cell_path_repeat1, - STATE(4652), 1, - sym_path, - ACTIONS(989), 4, - ts_builtin_sym_end, + ACTIONS(2231), 3, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(987), 35, + ACTIONS(2229), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, anon_sym_DOT_DOT2, @@ -427111,17 +385859,18 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [90012] = 4, + [89263] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5079), 1, + ACTIONS(1053), 1, sym__entry_separator, - STATE(4310), 1, + ACTIONS(8353), 1, + anon_sym_RBRACK, + STATE(3874), 1, sym_comment, - ACTIONS(5075), 41, + ACTIONS(8351), 40, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, @@ -427160,78 +385909,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [90065] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4311), 1, - sym_comment, - ACTIONS(917), 17, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token5, - ACTIONS(919), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [90118] = 5, + [89318] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8848), 1, + ACTIONS(8356), 1, aux_sym__immediate_decimal_token2, - STATE(4312), 1, + STATE(3875), 1, sym_comment, - ACTIONS(919), 4, - anon_sym_LF, + ACTIONS(903), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - ACTIONS(917), 37, + aux_sym_command_token1, + ACTIONS(901), 37, anon_sym_SEMI, - anon_sym_COLON, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -427259,64 +385957,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, anon_sym_DOT, sym_filesize_unit, - [90173] = 7, + anon_sym_LF2, + aux_sym_unquoted_token5, + [89373] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8720), 1, - anon_sym_DOT, - STATE(4313), 1, + STATE(3876), 1, sym_comment, - STATE(4318), 1, - aux_sym_cell_path_repeat1, - STATE(4652), 1, - sym_path, - ACTIONS(1008), 4, + ACTIONS(1043), 4, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1006), 35, + ACTIONS(1041), 38, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_GT, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [90232] = 4, + anon_sym_DOT, + [89426] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4314), 1, + STATE(3877), 1, sym_comment, - ACTIONS(950), 17, + ACTIONS(1020), 14, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -427331,16 +386028,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT2, anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token5, - ACTIONS(952), 25, + ACTIONS(1022), 28, anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -427360,14 +386057,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [90285] = 4, + [89479] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1196), 1, + ACTIONS(1209), 1, sym__entry_separator, - STATE(4315), 1, + STATE(3878), 1, sym_comment, - ACTIONS(1194), 41, + ACTIONS(1139), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -427409,14 +386106,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [90338] = 4, + [89532] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4002), 1, + ACTIONS(940), 1, sym__entry_separator, - STATE(4316), 1, + STATE(3879), 1, sym_comment, - ACTIONS(4000), 41, + ACTIONS(938), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -427458,88 +386155,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [90391] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(979), 1, - anon_sym_DOT_DOT2, - ACTIONS(8570), 1, - aux_sym_unquoted_token5, - ACTIONS(8647), 1, - anon_sym_DOT, - ACTIONS(8850), 1, - sym_filesize_unit, - ACTIONS(8852), 1, - sym_duration_unit, - STATE(4317), 1, - sym_comment, - ACTIONS(983), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(959), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(961), 23, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [90456] = 6, + [89585] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8854), 1, - anon_sym_DOT, - STATE(4652), 1, - sym_path, - STATE(4318), 2, + ACTIONS(8360), 1, + sym__entry_separator, + STATE(3880), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1001), 4, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(999), 35, - anon_sym_SEMI, + ACTIONS(8358), 41, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_not, - anon_sym_DOT_DOT2, + anon_sym_PLUS, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -427562,16 +386195,23 @@ 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, - [90513] = 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, + aux_sym__unquoted_in_list_token1, + [89638] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1296), 1, - sym__entry_separator, - STATE(4319), 1, + ACTIONS(8362), 1, + aux_sym__unquoted_in_list_token3, + STATE(3881), 1, sym_comment, - ACTIONS(1294), 41, + ACTIONS(7846), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -427613,39 +386253,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [90566] = 5, + [89691] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8857), 1, - anon_sym_QMARK2, - STATE(4320), 1, + ACTIONS(8332), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(8364), 1, + anon_sym_DOT, + STATE(3882), 1, sym_comment, - ACTIONS(1072), 4, - ts_builtin_sym_end, + ACTIONS(913), 4, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1070), 36, + sym_duration_unit, + ACTIONS(911), 36, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token5, + [89748] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3883), 1, + sym_comment, + ACTIONS(1033), 10, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1035), 32, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -427653,39 +386341,42 @@ 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, - [90620] = 5, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + [89801] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8859), 1, - aux_sym__immediate_decimal_token2, - STATE(4321), 1, + STATE(3884), 1, sym_comment, - ACTIONS(2547), 9, + ACTIONS(1020), 10, anon_sym_DASH, anon_sym__, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(2549), 31, + ACTIONS(1022), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -427711,29 +386402,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [90674] = 4, + [89854] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4322), 1, + ACTIONS(8345), 1, + aux_sym__immediate_decimal_token2, + STATE(3885), 1, sym_comment, - ACTIONS(1063), 9, + ACTIONS(911), 17, + sym_identifier, + anon_sym_GT, anon_sym_DASH, - anon_sym_DOT_DOT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + ACTIONS(913), 24, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [89909] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8367), 1, + anon_sym_DOT, + ACTIONS(8369), 1, + aux_sym__immediate_decimal_token2, + STATE(3886), 1, + sym_comment, + ACTIONS(2356), 9, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1065), 32, + aux_sym_unquoted_token1, + ACTIONS(2358), 31, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -427759,87 +386503,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [90726] = 14, - ACTIONS(3), 1, + [89966] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8663), 1, - aux_sym_unquoted_token4, - ACTIONS(8861), 1, - anon_sym_DOLLAR, - ACTIONS(8863), 1, - anon_sym_LPAREN2, - ACTIONS(8865), 1, - anon_sym_DOT, - ACTIONS(8867), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8869), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8871), 1, - aux_sym__immediate_decimal_token4, - STATE(4323), 1, + ACTIONS(3759), 1, + sym__entry_separator, + STATE(3887), 1, sym_comment, - STATE(5685), 1, - sym__immediate_decimal, - STATE(5760), 1, - sym__var, - STATE(6420), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(936), 10, + ACTIONS(3757), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_PLUS, + 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, anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, - ACTIONS(938), 20, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + [90019] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(8371), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8373), 1, + aux_sym__immediate_decimal_token2, + STATE(3888), 1, + sym_comment, + ACTIONS(895), 4, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + ACTIONS(893), 36, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + [90076] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(5115), 1, + sym__entry_separator, + STATE(3889), 1, + sym_comment, + ACTIONS(5113), 41, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_not, + anon_sym_DOT_DOT, + anon_sym_PLUS, 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_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, - [90798] = 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, + aux_sym__unquoted_in_list_token1, + [90129] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4324), 1, + STATE(3890), 1, sym_comment, - ACTIONS(1109), 10, + ACTIONS(1047), 10, anon_sym_DASH, - anon_sym__, anon_sym_DOT_DOT, + anon_sym_PLUS, anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1111), 31, + aux_sym__unquoted_in_list_token1, + ACTIONS(1049), 32, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -427865,65 +386701,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [90850] = 9, + [90182] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8873), 1, + ACTIONS(8375), 1, anon_sym_RBRACK, - ACTIONS(8881), 1, - anon_sym_list, - STATE(5427), 1, - sym__one_type, - STATE(10858), 1, - sym__type_annotation, - ACTIONS(8878), 2, - anon_sym_table, - anon_sym_record, - STATE(4325), 2, - sym_comment, - aux_sym__multiple_types_repeat1, - STATE(4653), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(8875), 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, - [90912] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4326), 1, + STATE(3891), 1, sym_comment, - ACTIONS(1294), 9, + ACTIONS(8199), 10, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -427933,20 +386719,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1296), 32, + ACTIONS(8195), 31, anon_sym_LBRACK, - anon_sym_COMMA, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_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, + [90237] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1091), 1, + sym__entry_separator, + ACTIONS(7780), 1, anon_sym_RBRACK, + STATE(3892), 1, + sym_comment, + ACTIONS(7778), 40, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_PLUS, 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -427954,6 +386785,9 @@ 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, @@ -427966,29 +386800,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [90964] = 4, + aux_sym__unquoted_in_list_token1, + [90292] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4327), 1, + STATE(3893), 1, sym_comment, - ACTIONS(1113), 10, + ACTIONS(8379), 9, anon_sym_DASH, - anon_sym__, anon_sym_DOT_DOT, - anon_sym_DOT, + anon_sym_PLUS, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1115), 31, + aux_sym__unquoted_in_list_token1, + ACTIONS(8377), 32, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -428014,29 +386849,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [91016] = 4, + [90344] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4328), 1, + STATE(3894), 1, sym_comment, - ACTIONS(1117), 10, + ACTIONS(5031), 9, anon_sym_DASH, - anon_sym__, anon_sym_DOT_DOT, - anon_sym_DOT, + anon_sym_PLUS, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1119), 31, + aux_sym__unquoted_in_list_token1, + ACTIONS(5033), 32, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -428062,12 +386897,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [91068] = 4, + [90396] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4329), 1, + STATE(3895), 1, sym_comment, - ACTIONS(1294), 9, + ACTIONS(1261), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -428077,7 +386912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1296), 32, + ACTIONS(1263), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -428110,98 +386945,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [91120] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8884), 1, - anon_sym_RBRACK, - ACTIONS(8890), 1, - anon_sym_list, - STATE(4330), 1, - sym_comment, - STATE(4448), 1, - aux_sym__multiple_types_repeat1, - STATE(5427), 1, - sym__one_type, - STATE(10858), 1, - sym__type_annotation, - ACTIONS(8888), 2, - anon_sym_table, - anon_sym_record, - STATE(4653), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(8886), 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, - [91184] = 5, - ACTIONS(3), 1, + [90448] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8892), 1, + ACTIONS(8332), 1, aux_sym__immediate_decimal_token2, - STATE(4331), 1, + ACTIONS(8381), 1, + anon_sym_DOT, + STATE(3896), 1, sym_comment, - ACTIONS(925), 15, + ACTIONS(913), 4, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + ACTIONS(911), 35, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + sym_filesize_unit, + [90504] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(8383), 1, + aux_sym__immediate_decimal_token2, + STATE(3897), 1, + sym_comment, + ACTIONS(913), 5, + ts_builtin_sym_end, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(923), 25, - sym_cmd_identifier, + sym_duration_unit, + aux_sym_command_token1, + ACTIONS(911), 35, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, @@ -428211,67 +387043,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, anon_sym_DOT, sym_filesize_unit, - sym_duration_unit, aux_sym_unquoted_token5, - [91238] = 4, + [90558] = 10, ACTIONS(113), 1, anon_sym_POUND, - STATE(4332), 1, - sym_comment, - ACTIONS(1061), 4, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1059), 37, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_not, + ACTIONS(940), 1, + aux_sym_command_token1, + ACTIONS(961), 1, anon_sym_DOT_DOT2, + ACTIONS(8385), 1, anon_sym_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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [91290] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(4333), 1, + ACTIONS(8387), 1, + sym_filesize_unit, + ACTIONS(8389), 1, + sym_duration_unit, + ACTIONS(8391), 1, + aux_sym_unquoted_token5, + STATE(3898), 1, sym_comment, - ACTIONS(919), 4, + ACTIONS(965), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - aux_sym_command_token1, - ACTIONS(917), 37, + ACTIONS(938), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -428279,6 +387072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -428304,38 +387098,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - anon_sym_LF2, - aux_sym_unquoted_token5, - [91342] = 7, + [90622] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3899), 1, + sym_comment, + ACTIONS(8395), 9, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(8393), 32, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__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, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + [90674] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2847), 1, - anon_sym_LPAREN2, - ACTIONS(3750), 1, - anon_sym_LF, - ACTIONS(8894), 1, + ACTIONS(8397), 1, aux_sym__immediate_decimal_token1, - STATE(4334), 1, + ACTIONS(8399), 1, + aux_sym__immediate_decimal_token2, + STATE(3900), 1, sym_comment, - ACTIONS(2851), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(3748), 36, + ACTIONS(2231), 4, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2229), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -428360,30 +387196,29 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [91400] = 5, + [90730] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8896), 1, - aux_sym__immediate_decimal_token1, - STATE(4335), 1, + STATE(3901), 1, sym_comment, - ACTIONS(3748), 9, + ACTIONS(5113), 9, anon_sym_DASH, - anon_sym__, anon_sym_DOT_DOT, + anon_sym_PLUS, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(3750), 31, + aux_sym__unquoted_in_list_token1, + ACTIONS(5115), 32, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -428409,289 +387244,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [91454] = 10, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_LF, - ACTIONS(979), 1, - anon_sym_DOT_DOT2, - ACTIONS(8898), 1, - anon_sym_DOT, - ACTIONS(8900), 1, - sym_filesize_unit, - ACTIONS(8902), 1, - sym_duration_unit, - ACTIONS(8904), 1, - aux_sym_unquoted_token5, - STATE(4336), 1, - sym_comment, - ACTIONS(983), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(959), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [91518] = 5, + [90782] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8745), 1, - aux_sym__immediate_decimal_token2, - STATE(4337), 1, + ACTIONS(8401), 1, + anon_sym_RBRACK, + ACTIONS(8407), 1, + anon_sym_list, + STATE(3902), 1, sym_comment, - ACTIONS(911), 15, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(909), 25, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token5, - [91572] = 4, + STATE(4012), 1, + aux_sym__multiple_types_repeat1, + STATE(4983), 1, + sym__one_type, + STATE(10528), 1, + sym__type_annotation, + ACTIONS(8405), 2, + anon_sym_table, + anon_sym_record, + STATE(4115), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(8403), 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, + [90846] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(4338), 1, - sym_comment, - ACTIONS(8908), 18, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - ACTIONS(8906), 23, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_DOT_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_where, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [91624] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(8676), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(8910), 1, + ACTIONS(967), 1, anon_sym_DOT, - STATE(4339), 1, + ACTIONS(969), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(1407), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(1409), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8013), 1, + aux_sym_unquoted_token4, + STATE(3903), 1, sym_comment, - ACTIONS(925), 4, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - ACTIONS(923), 35, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_PIPE, + STATE(10080), 1, + sym__immediate_decimal, + ACTIONS(920), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - sym_filesize_unit, - [91680] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8912), 1, - aux_sym__immediate_decimal_token2, - STATE(4340), 1, - sym_comment, - ACTIONS(919), 15, + ACTIONS(922), 23, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(917), 25, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_LT2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token5, - [91734] = 5, - ACTIONS(113), 1, + [90910] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8819), 1, - aux_sym__immediate_decimal_token2, - STATE(4341), 1, + STATE(3904), 1, sym_comment, - ACTIONS(2583), 3, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2581), 37, - anon_sym_SEMI, + ACTIONS(1047), 10, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1049), 31, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -428699,30 +387388,87 @@ 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, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + [90962] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3905), 1, + sym_comment, + ACTIONS(8199), 10, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(8195), 31, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [91788] = 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, + [91014] = 10, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8733), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(8914), 1, + ACTIONS(940), 1, + anon_sym_LF, + ACTIONS(8409), 1, + anon_sym_DOT_DOT2, + ACTIONS(8411), 1, anon_sym_DOT, - STATE(4342), 1, + ACTIONS(8415), 1, + sym_filesize_unit, + ACTIONS(8417), 1, + sym_duration_unit, + ACTIONS(8419), 1, + aux_sym_unquoted_token5, + STATE(3906), 1, sym_comment, - ACTIONS(925), 4, - anon_sym_LF, + ACTIONS(8413), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - ACTIONS(923), 35, + ACTIONS(938), 33, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -428756,14 +387502,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - sym_filesize_unit, - [91844] = 4, + [91078] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4343), 1, + STATE(3907), 1, sym_comment, - ACTIONS(959), 9, + ACTIONS(5137), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -428773,7 +387517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(961), 32, + ACTIONS(5139), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -428806,61 +387550,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [91896] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(8754), 1, - aux_sym__immediate_decimal_token2, - STATE(4344), 1, - sym_comment, - ACTIONS(2439), 3, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2437), 37, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [91950] = 4, + [91130] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4345), 1, + STATE(3908), 1, sym_comment, - ACTIONS(1410), 9, + ACTIONS(4955), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -428870,7 +387565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1412), 32, + ACTIONS(4957), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -428903,39 +387598,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [92002] = 5, - ACTIONS(113), 1, + [91182] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8916), 1, - aux_sym__immediate_decimal_token2, - STATE(4346), 1, + STATE(3909), 1, sym_comment, - ACTIONS(2549), 3, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2547), 37, - anon_sym_SEMI, + ACTIONS(1037), 10, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1039), 31, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -428943,21 +387634,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, - [92056] = 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, + [91234] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4347), 1, + STATE(3910), 1, sym_comment, - ACTIONS(5075), 9, + ACTIONS(1241), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -428967,7 +387661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(5079), 32, + ACTIONS(1243), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -429000,90 +387694,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [92108] = 10, + [91286] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1043), 1, + ACTIONS(8314), 1, + aux_sym_unquoted_token4, + ACTIONS(8421), 1, + anon_sym_DOLLAR, + ACTIONS(8423), 1, + anon_sym_LPAREN2, + ACTIONS(8425), 1, anon_sym_DOT, - ACTIONS(1045), 1, + ACTIONS(8427), 1, aux_sym__immediate_decimal_token1, - ACTIONS(1609), 1, + ACTIONS(8429), 1, aux_sym__immediate_decimal_token3, - ACTIONS(1611), 1, + ACTIONS(8431), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8570), 1, - aux_sym_unquoted_token4, - STATE(4348), 1, + STATE(3911), 1, sym_comment, - STATE(10460), 1, + STATE(5373), 1, sym__immediate_decimal, - ACTIONS(936), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(938), 23, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [92172] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4349), 1, - sym_comment, - ACTIONS(1286), 9, + STATE(5524), 1, + sym__var, + STATE(6086), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(920), 10, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_PLUS, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, anon_sym_DOT2, + aux_sym__val_number_decimal_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1288), 32, + ACTIONS(922), 20, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_not, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -429094,49 +387750,37 @@ 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, - [92224] = 7, - ACTIONS(113), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [91358] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8918), 1, - anon_sym_DOT_DOT2, - STATE(4350), 1, + STATE(3912), 1, sym_comment, - ACTIONS(2845), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2851), 2, + ACTIONS(1041), 10, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(8920), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2843), 34, - anon_sym_SEMI, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1043), 31, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, + 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -429144,21 +387788,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, - [92282] = 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, + [91410] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4351), 1, + STATE(3913), 1, sym_comment, - ACTIONS(5171), 9, + ACTIONS(1225), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -429168,7 +387815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(5173), 32, + ACTIONS(1227), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -429201,52 +387848,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [92334] = 14, + [91462] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6768), 1, - aux_sym_unquoted_token4, - ACTIONS(8861), 1, - anon_sym_DOLLAR, - ACTIONS(8863), 1, - anon_sym_LPAREN2, - ACTIONS(8922), 1, - anon_sym_DOT, - ACTIONS(8924), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8926), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8928), 1, - aux_sym__immediate_decimal_token4, - STATE(4352), 1, + STATE(3914), 1, sym_comment, - STATE(5760), 1, - sym__var, - STATE(5960), 1, - sym__immediate_decimal, - STATE(6420), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(936), 10, - anon_sym_LPAREN, + ACTIONS(2229), 9, anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_PLUS, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, anon_sym_DOT2, - aux_sym__val_number_decimal_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(938), 20, + aux_sym__unquoted_in_list_token1, + ACTIONS(2231), 32, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_not, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -429257,14 +387888,22 @@ 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, - [92406] = 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, + [91514] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4353), 1, + ACTIONS(8435), 1, + anon_sym_COMMA, + STATE(3915), 1, sym_comment, - ACTIONS(8552), 9, + ACTIONS(7960), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -429274,9 +387913,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(8554), 32, + ACTIONS(8433), 31, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -429307,28 +387945,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [92458] = 6, + [91568] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8930), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8932), 1, - aux_sym__immediate_decimal_token2, - STATE(4354), 1, + STATE(3916), 1, sym_comment, - ACTIONS(911), 5, - ts_builtin_sym_end, + ACTIONS(903), 4, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - ACTIONS(909), 34, + ACTIONS(901), 37, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -429356,39 +387993,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, anon_sym_DOT, sym_filesize_unit, - aux_sym_unquoted_token5, - [92514] = 4, - ACTIONS(113), 1, + [91620] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4355), 1, + STATE(3917), 1, sym_comment, - ACTIONS(1111), 3, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1109), 38, - anon_sym_SEMI, + ACTIONS(4959), 9, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(4961), 32, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - anon_sym_DOT_DOT2, - anon_sym_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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -429396,21 +388029,72 @@ 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, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + [91672] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3918), 1, + sym_comment, + ACTIONS(2362), 9, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2364), 32, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [92566] = 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, + [91724] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4356), 1, + STATE(3919), 1, sym_comment, - ACTIONS(3866), 9, + ACTIONS(2402), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -429420,7 +388104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3868), 32, + ACTIONS(2404), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -429453,12 +388137,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [92618] = 4, + [91776] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4357), 1, + STATE(3920), 1, sym_comment, - ACTIONS(1414), 9, + ACTIONS(4963), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -429468,7 +388152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1416), 32, + ACTIONS(4965), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -429501,12 +388185,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [92670] = 4, + [91828] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4358), 1, + STATE(3921), 1, sym_comment, - ACTIONS(1308), 9, + ACTIONS(3691), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -429516,7 +388200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1310), 32, + ACTIONS(3693), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -429549,26 +388233,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [92722] = 5, + [91880] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8934), 1, + ACTIONS(8330), 1, aux_sym__immediate_decimal_token2, - STATE(4359), 1, + STATE(3922), 1, sym_comment, - ACTIONS(925), 4, - anon_sym_LF, + ACTIONS(895), 5, + ts_builtin_sym_end, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - ACTIONS(923), 36, + aux_sym_command_token1, + ACTIONS(893), 35, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LF, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -429598,89 +388282,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, sym_filesize_unit, aux_sym_unquoted_token5, - [92776] = 7, - ACTIONS(113), 1, + [91934] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8936), 1, - anon_sym_DOT_DOT2, - STATE(4360), 1, + STATE(3923), 1, sym_comment, - ACTIONS(1934), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(3520), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8938), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3518), 34, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(3699), 9, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - 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, - [92834] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(4361), 1, - sym_comment, - ACTIONS(1115), 3, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1113), 38, - anon_sym_SEMI, + aux_sym__unquoted_in_list_token1, + ACTIONS(3701), 32, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - anon_sym_DOT_DOT2, - anon_sym_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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -429688,21 +388318,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, - [92886] = 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, + [91986] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4362), 1, + STATE(3924), 1, sym_comment, - ACTIONS(8204), 9, + ACTIONS(1253), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -429712,7 +388345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(8394), 32, + ACTIONS(1255), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -429745,20 +388378,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [92938] = 5, + [92038] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8777), 1, - aux_sym__immediate_decimal_token2, - STATE(4363), 1, + STATE(3925), 1, sym_comment, - ACTIONS(911), 4, + ACTIONS(936), 4, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - ACTIONS(909), 36, + ACTIONS(934), 37, anon_sym_SEMI, + anon_sym_COLON, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, @@ -429766,6 +388398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_RBRACE, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -429793,13 +388426,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, anon_sym_DOT, sym_filesize_unit, - aux_sym_unquoted_token5, - [92992] = 4, + [92090] = 27, ACTIONS(3), 1, anon_sym_POUND, - STATE(4364), 1, + ACTIONS(3116), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3118), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3122), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3655), 1, + anon_sym_COLON, + ACTIONS(4672), 1, + aux_sym_unquoted_token1, + ACTIONS(7897), 1, + anon_sym_LPAREN, + ACTIONS(7909), 1, + sym_val_date, + ACTIONS(7911), 1, + anon_sym_DQUOTE, + ACTIONS(7915), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(7917), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(8437), 1, + anon_sym_DOT_DOT, + ACTIONS(8441), 1, + anon_sym_DOT2, + STATE(2117), 1, + sym__inter_single_quotes, + STATE(2128), 1, + sym__inter_double_quotes, + STATE(2196), 1, + sym__str_double_quotes, + STATE(3926), 1, + sym_comment, + STATE(8009), 1, + sym__val_number_decimal, + STATE(10050), 1, + sym__val_range, + STATE(10641), 1, + sym_val_bool, + STATE(10833), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3114), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(7913), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(8439), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(7907), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(948), 4, + sym_expr_parenthesized, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(3685), 9, + anon_sym_null, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + [92188] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3927), 1, sym_comment, - ACTIONS(4016), 9, + ACTIONS(3711), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -429809,7 +388512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(4018), 32, + ACTIONS(3713), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -429842,12 +388545,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [93044] = 4, + [92240] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4365), 1, + STATE(3928), 1, sym_comment, - ACTIONS(8942), 9, + ACTIONS(7778), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -429857,7 +388560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(8940), 32, + ACTIONS(7828), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -429890,35 +388593,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [93096] = 4, + [92292] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(4366), 1, + ACTIONS(8443), 1, + anon_sym_DOT, + STATE(3929), 1, + sym_comment, + STATE(3985), 1, + sym_path, + STATE(4405), 1, + sym_cell_path, + ACTIONS(1002), 6, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT2, + ACTIONS(1004), 32, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [92350] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(2555), 1, + anon_sym_DOLLAR, + ACTIONS(8173), 1, + anon_sym_LPAREN2, + ACTIONS(8177), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8179), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8181), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8445), 1, + anon_sym_DOT, + STATE(3930), 1, sym_comment, - ACTIONS(5175), 9, + STATE(4600), 1, + sym__var, + STATE(4834), 1, + sym__immediate_decimal, + STATE(5317), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1838), 10, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_PLUS, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, anon_sym_DOT2, + aux_sym__val_number_decimal_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(5177), 32, + ACTIONS(1840), 20, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_not, + 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_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [92422] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(8254), 1, + aux_sym__immediate_decimal_token2, + STATE(3931), 1, + sym_comment, + ACTIONS(2358), 3, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2356), 37, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -429926,47 +388742,97 @@ 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, - [93148] = 4, - ACTIONS(3), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [92476] = 5, + ACTIONS(113), 1, anon_sym_POUND, - STATE(4367), 1, + ACTIONS(8349), 1, + aux_sym__immediate_decimal_token2, + STATE(3932), 1, sym_comment, - ACTIONS(8946), 9, + ACTIONS(2231), 3, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2229), 37, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_PLUS, + anon_sym_not, + 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, anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, - aux_sym__unquoted_in_list_token1, - ACTIONS(8944), 32, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [92530] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(8447), 1, + aux_sym__immediate_decimal_token2, + STATE(3933), 1, + sym_comment, + ACTIONS(2364), 3, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2362), 37, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -429974,24 +388840,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, - [93200] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [92584] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4368), 1, + STATE(3934), 1, sym_comment, - ACTIONS(8704), 9, + ACTIONS(1233), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -430001,7 +388864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(8948), 32, + ACTIONS(1235), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -430034,20 +388897,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [93252] = 5, + [92636] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8407), 1, + anon_sym_list, + ACTIONS(8449), 1, + anon_sym_LBRACK, + STATE(3935), 1, + sym_comment, + STATE(10627), 1, + sym__multiple_types, + STATE(10632), 1, + sym__type_annotation, + STATE(10682), 1, + sym__one_type, + ACTIONS(8405), 2, + anon_sym_table, + anon_sym_record, + STATE(4115), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(8403), 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, + [92700] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(8421), 1, + anon_sym_DOLLAR, + ACTIONS(8423), 1, + anon_sym_LPAREN2, + ACTIONS(8451), 1, + anon_sym_DOT, + ACTIONS(8453), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8455), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8457), 1, + aux_sym__immediate_decimal_token4, + STATE(3936), 1, + sym_comment, + STATE(5524), 1, + sym__var, + STATE(5678), 1, + sym__immediate_decimal, + STATE(6056), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1838), 10, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1840), 20, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_not, + 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_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [92772] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3937), 1, + sym_comment, + ACTIONS(8461), 18, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + ACTIONS(8459), 23, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_DOT_DOT, + anon_sym_try, + anon_sym_return, + anon_sym_where, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [92824] = 11, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8950), 1, - aux_sym__immediate_decimal_token2, - STATE(4369), 1, + ACTIONS(922), 1, + aux_sym_command_token1, + ACTIONS(926), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(928), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(1379), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8391), 1, + aux_sym_unquoted_token3, + ACTIONS(8463), 1, + anon_sym_DOT, + ACTIONS(8465), 1, + aux_sym_unquoted_token5, + STATE(3938), 1, sym_comment, - ACTIONS(919), 4, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - ACTIONS(917), 36, + STATE(8796), 1, + sym__immediate_decimal, + ACTIONS(920), 33, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, @@ -430079,64 +389112,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - [93306] = 4, + [92890] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4370), 1, + STATE(3939), 1, sym_comment, - ACTIONS(5179), 9, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(5181), 32, + ACTIONS(8469), 18, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, - 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_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__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, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [93358] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + ACTIONS(8467), 23, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_DOT_DOT, + anon_sym_try, + anon_sym_return, + anon_sym_where, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [92942] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4371), 1, + STATE(3940), 1, sym_comment, - ACTIONS(8211), 9, + ACTIONS(1265), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -430146,7 +389175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(8396), 32, + ACTIONS(1267), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -430179,60 +389208,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [93410] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(4372), 1, - sym_comment, - ACTIONS(1119), 3, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1117), 38, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - anon_sym_DOT_DOT2, - anon_sym_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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [93462] = 4, + [92994] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4373), 1, + STATE(3941), 1, sym_comment, - ACTIONS(4291), 9, + ACTIONS(1245), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -430242,7 +389223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(4293), 32, + ACTIONS(1247), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -430275,12 +389256,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [93514] = 4, + [93046] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4374), 1, + STATE(3942), 1, sym_comment, - ACTIONS(1312), 9, + ACTIONS(1265), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -430290,7 +389271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1314), 32, + ACTIONS(1267), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -430323,50 +389304,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [93566] = 10, - ACTIONS(3), 1, + [93098] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1043), 1, - anon_sym_DOT, - ACTIONS(1045), 1, + ACTIONS(8471), 1, aux_sym__immediate_decimal_token1, - ACTIONS(1609), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(1611), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8570), 1, - aux_sym_unquoted_token4, - STATE(4375), 1, + ACTIONS(8473), 1, + aux_sym__immediate_decimal_token2, + STATE(3943), 1, sym_comment, - STATE(10460), 1, - sym__immediate_decimal, - ACTIONS(936), 12, - sym_identifier, + ACTIONS(895), 5, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + ACTIONS(893), 34, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(938), 23, - anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + [93154] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(8475), 1, + aux_sym__immediate_decimal_token2, + STATE(3944), 1, + sym_comment, + ACTIONS(913), 4, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + ACTIONS(911), 36, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + [93208] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8300), 1, + aux_sym__immediate_decimal_token2, + STATE(3945), 1, + sym_comment, + ACTIONS(895), 15, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(893), 25, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + [93262] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(8373), 1, + aux_sym__immediate_decimal_token2, + STATE(3946), 1, + sym_comment, + ACTIONS(895), 4, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + ACTIONS(893), 36, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -430377,12 +389494,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [93630] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + [93316] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4376), 1, + STATE(3947), 1, sym_comment, - ACTIONS(5183), 9, + ACTIONS(3741), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -430392,7 +389516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(5185), 32, + ACTIONS(3743), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -430425,17 +389549,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [93682] = 4, + [93368] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3948), 1, + sym_comment, + ACTIONS(1047), 14, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1049), 27, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [93420] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(4377), 1, + ACTIONS(8477), 1, + aux_sym__immediate_decimal_token2, + STATE(3949), 1, + sym_comment, + ACTIONS(903), 4, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + ACTIONS(901), 36, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + [93474] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8443), 1, + anon_sym_DOT, + STATE(3950), 1, + sym_comment, + STATE(3985), 1, + sym_path, + STATE(4387), 1, + sym_cell_path, + ACTIONS(992), 6, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT2, + ACTIONS(994), 32, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [93532] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(3951), 1, sym_comment, - ACTIONS(2439), 4, + ACTIONS(2231), 4, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2437), 37, + ACTIONS(2229), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -430473,17 +389745,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, aux_sym_unquoted_token2, - [93734] = 4, + [93584] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(4378), 1, + STATE(3952), 1, sym_comment, - ACTIONS(2549), 4, + ACTIONS(2364), 4, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2547), 37, + ACTIONS(2362), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -430521,17 +389793,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, aux_sym_unquoted_token2, - [93786] = 4, + [93636] = 10, ACTIONS(113), 1, anon_sym_POUND, - STATE(4379), 1, + ACTIONS(940), 1, + anon_sym_LF, + ACTIONS(961), 1, + anon_sym_DOT_DOT2, + ACTIONS(8411), 1, + anon_sym_DOT, + ACTIONS(8415), 1, + sym_filesize_unit, + ACTIONS(8417), 1, + sym_duration_unit, + ACTIONS(8419), 1, + aux_sym_unquoted_token5, + STATE(3953), 1, + sym_comment, + ACTIONS(965), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(938), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [93700] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(3954), 1, sym_comment, - ACTIONS(3507), 4, + ACTIONS(2404), 4, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(3505), 37, + ACTIONS(2402), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -430569,52 +389895,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, aux_sym_unquoted_token2, - [93838] = 14, + [93752] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(3113), 1, - anon_sym_DOLLAR, - ACTIONS(8653), 1, - anon_sym_LPAREN2, - ACTIONS(8657), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8659), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8661), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8952), 1, - anon_sym_DOT, - STATE(4380), 1, + STATE(3955), 1, sym_comment, - STATE(4952), 1, - sym__var, - STATE(5016), 1, - sym__immediate_decimal, - STATE(5929), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1920), 10, - anon_sym_LPAREN, + ACTIONS(8024), 9, anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_PLUS, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(8026), 32, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__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, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + [93804] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3956), 1, + sym_comment, + ACTIONS(1271), 9, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1922), 20, + aux_sym__unquoted_in_list_token1, + ACTIONS(1273), 32, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_not, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -430625,137 +389983,181 @@ 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, - [93910] = 14, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + [93856] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(8861), 1, + STATE(3957), 1, + sym_comment, + ACTIONS(1275), 9, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1277), 32, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(8863), 1, - anon_sym_LPAREN2, - ACTIONS(8865), 1, - anon_sym_DOT, - ACTIONS(8867), 1, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__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, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + [93908] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8479), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8869), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8871), 1, - aux_sym__immediate_decimal_token4, - STATE(4381), 1, + ACTIONS(8481), 1, + aux_sym__immediate_decimal_token2, + STATE(3958), 1, sym_comment, - STATE(5693), 1, - sym__immediate_decimal, - STATE(5760), 1, - sym__var, - STATE(6579), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1920), 10, + ACTIONS(893), 14, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, anon_sym_DOT2, - aux_sym__val_number_decimal_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1922), 20, + aux_sym_unquoted_token5, + ACTIONS(895), 25, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_LPAREN2, + 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_token1, aux_sym__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, - [93982] = 4, + [93964] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4382), 1, + STATE(3959), 1, sym_comment, - ACTIONS(909), 17, - sym_identifier, - anon_sym_GT, + ACTIONS(1051), 9, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, + anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token5, - ACTIONS(911), 24, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1053), 32, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [94034] = 4, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__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, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + [94016] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(4383), 1, + ACTIONS(8483), 1, + aux_sym__immediate_decimal_token2, + STATE(3960), 1, sym_comment, - ACTIONS(1170), 4, + ACTIONS(903), 5, ts_builtin_sym_end, - anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1168), 37, - anon_sym_EQ, + sym_duration_unit, + aux_sym_command_token1, + ACTIONS(901), 35, anon_sym_SEMI, + anon_sym_LF, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -430781,29 +390183,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - [94086] = 4, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + [94070] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4384), 1, + ACTIONS(8485), 1, + aux_sym__immediate_decimal_token1, + STATE(3961), 1, sym_comment, - ACTIONS(4000), 9, + ACTIONS(4771), 9, anon_sym_DASH, + anon_sym__, anon_sym_DOT_DOT, - anon_sym_PLUS, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(4002), 32, + aux_sym_unquoted_token1, + ACTIONS(4773), 31, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -430829,12 +390235,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [94138] = 4, + [94124] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4385), 1, + STATE(3962), 1, sym_comment, - ACTIONS(1302), 9, + ACTIONS(920), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -430844,7 +390250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1304), 32, + ACTIONS(922), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -430877,12 +390283,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [94190] = 4, + [94176] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4386), 1, + ACTIONS(8489), 1, + anon_sym_COMMA, + STATE(3963), 1, sym_comment, - ACTIONS(7571), 9, + ACTIONS(8491), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -430892,9 +390300,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(7585), 32, + ACTIONS(8487), 31, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -430925,108 +390332,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [94242] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(4387), 1, - sym_comment, - ACTIONS(1065), 4, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1063), 37, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_not, - anon_sym_DOT_DOT2, - anon_sym_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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [94294] = 4, + [94230] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(4388), 1, - sym_comment, - ACTIONS(917), 17, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(961), 1, anon_sym_DOT_DOT2, + ACTIONS(8013), 1, + aux_sym_unquoted_token5, + ACTIONS(8163), 1, anon_sym_DOT, + ACTIONS(8493), 1, sym_filesize_unit, + ACTIONS(8495), 1, sym_duration_unit, - aux_sym_unquoted_token5, - ACTIONS(919), 24, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + STATE(3964), 1, + sym_comment, + ACTIONS(965), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [94346] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4389), 1, - sym_comment, - ACTIONS(950), 17, + ACTIONS(938), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -431039,12 +390363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token5, - ACTIONS(952), 24, + ACTIONS(940), 22, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -431067,19 +390386,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [94398] = 5, + [94294] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8954), 1, + ACTIONS(8497), 1, + anon_sym_DOT, + ACTIONS(8500), 1, aux_sym__immediate_decimal_token2, - STATE(4390), 1, + STATE(3965), 1, sym_comment, - ACTIONS(2583), 2, + ACTIONS(2358), 2, anon_sym_LF, anon_sym_LPAREN2, - ACTIONS(2581), 38, + ACTIONS(2356), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -431092,7 +390411,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -431118,39 +390436,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, aux_sym_unquoted_token2, - [94452] = 6, - ACTIONS(113), 1, + [94350] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8954), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(8956), 1, - anon_sym_DOT, - STATE(4391), 1, + STATE(3966), 1, sym_comment, - ACTIONS(2583), 2, - anon_sym_LF, - anon_sym_LPAREN2, - ACTIONS(2581), 37, - anon_sym_SEMI, + ACTIONS(1139), 9, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1209), 32, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_not, 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -431158,22 +390472,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, - aux_sym_unquoted_token2, - [94508] = 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, + [94402] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4392), 1, + STATE(3967), 1, sym_comment, - ACTIONS(3949), 9, + ACTIONS(1257), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -431183,7 +390499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3951), 32, + ACTIONS(1259), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -431216,12 +390532,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [94560] = 4, + [94454] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4393), 1, + STATE(3968), 1, sym_comment, - ACTIONS(3964), 9, + ACTIONS(1249), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -431231,7 +390547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3966), 32, + ACTIONS(1251), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -431264,38 +390580,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [94612] = 5, - ACTIONS(113), 1, + [94506] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8715), 1, - aux_sym__immediate_decimal_token2, - STATE(4394), 1, + STATE(3969), 1, sym_comment, - ACTIONS(2439), 2, - anon_sym_LF, - anon_sym_LPAREN2, - ACTIONS(2437), 38, - anon_sym_SEMI, + ACTIONS(1279), 9, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1281), 32, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - anon_sym_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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -431303,22 +390616,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, - aux_sym_unquoted_token2, - [94666] = 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, + [94558] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4395), 1, + STATE(3970), 1, sym_comment, - ACTIONS(1186), 9, + ACTIONS(1165), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -431328,7 +390643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1188), 32, + ACTIONS(1167), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -431361,17 +390676,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [94718] = 5, + [94610] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8959), 1, - aux_sym__immediate_decimal_token2, - STATE(4396), 1, - sym_comment, - ACTIONS(2549), 2, - anon_sym_LF, + ACTIONS(3358), 1, anon_sym_LPAREN2, - ACTIONS(2547), 38, + ACTIONS(3576), 1, + anon_sym_LF, + ACTIONS(8502), 1, + aux_sym__immediate_decimal_token1, + STATE(3971), 1, + sym_comment, + ACTIONS(3362), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(3574), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -431384,7 +390703,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -431405,163 +390723,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0x, sym_val_date, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - aux_sym_unquoted_token2, - [94772] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4397), 1, - sym_comment, - ACTIONS(4043), 9, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(4045), 32, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__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, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [94824] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(4398), 1, - sym_comment, - ACTIONS(911), 4, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - aux_sym_command_token1, - ACTIONS(909), 37, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - anon_sym_LF2, - aux_sym_unquoted_token5, - [94876] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(8676), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(8961), 1, - anon_sym_DOT, - STATE(4399), 1, - sym_comment, - ACTIONS(925), 4, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - ACTIONS(923), 35, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - sym_filesize_unit, - [94932] = 4, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [94668] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4400), 1, + STATE(3972), 1, sym_comment, - ACTIONS(3960), 9, + ACTIONS(1211), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -431571,7 +390742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3962), 32, + ACTIONS(1213), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -431604,12 +390775,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [94984] = 4, + [94720] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4401), 1, + STATE(3973), 1, sym_comment, - ACTIONS(5187), 9, + ACTIONS(1283), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -431619,7 +390790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(5189), 32, + ACTIONS(1285), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -431652,12 +390823,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [95036] = 4, + [94772] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4402), 1, + STATE(3974), 1, sym_comment, - ACTIONS(5191), 9, + ACTIONS(1215), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -431667,7 +390838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(5193), 32, + ACTIONS(1217), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -431700,29 +390871,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [95088] = 4, + [94824] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4403), 1, + ACTIONS(8504), 1, + anon_sym_DOT, + ACTIONS(8507), 1, + aux_sym__immediate_decimal_token2, + STATE(3975), 1, + sym_comment, + ACTIONS(913), 15, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(911), 24, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + [94880] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8369), 1, + aux_sym__immediate_decimal_token2, + STATE(3976), 1, sym_comment, - ACTIONS(1418), 9, + ACTIONS(2356), 9, anon_sym_DASH, + anon_sym__, anon_sym_DOT_DOT, - anon_sym_PLUS, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1420), 32, + aux_sym_unquoted_token1, + ACTIONS(2358), 31, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -431748,12 +390970,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [95140] = 4, + [94934] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4404), 1, + STATE(3977), 1, sym_comment, - ACTIONS(5195), 9, + ACTIONS(3721), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -431763,7 +390985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(5197), 32, + ACTIONS(3723), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -431796,12 +391018,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [95192] = 4, + [94986] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4405), 1, + STATE(3978), 1, sym_comment, - ACTIONS(1332), 9, + ACTIONS(1089), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -431811,7 +391033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1334), 32, + ACTIONS(1091), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -431844,29 +391066,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [95244] = 4, + [95038] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4406), 1, + ACTIONS(8286), 1, + aux_sym__immediate_decimal_token2, + STATE(3979), 1, sym_comment, - ACTIONS(1336), 9, + ACTIONS(2229), 9, anon_sym_DASH, + anon_sym__, anon_sym_DOT_DOT, - anon_sym_PLUS, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1338), 32, + aux_sym_unquoted_token1, + ACTIONS(2231), 31, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -431892,29 +391115,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [95296] = 4, + [95092] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4407), 1, + ACTIONS(8509), 1, + aux_sym__immediate_decimal_token2, + STATE(3980), 1, sym_comment, - ACTIONS(1342), 9, + ACTIONS(2362), 9, anon_sym_DASH, + anon_sym__, anon_sym_DOT_DOT, - anon_sym_PLUS, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1344), 32, + aux_sym_unquoted_token1, + ACTIONS(2364), 31, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -431940,36 +391164,297 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [95348] = 5, - ACTIONS(3), 1, + [95146] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8966), 1, - anon_sym_COMMA, - STATE(4408), 1, + ACTIONS(8511), 1, + anon_sym_DOT, + ACTIONS(8513), 1, + aux_sym__immediate_decimal_token2, + STATE(3981), 1, sym_comment, - ACTIONS(8968), 9, + ACTIONS(2358), 4, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2356), 35, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_PLUS, + anon_sym_not, + 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, anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, - aux_sym__unquoted_in_list_token1, - ACTIONS(8964), 31, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [95202] = 8, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(940), 1, + anon_sym_LF, + ACTIONS(8515), 1, + anon_sym_DOT_DOT2, + ACTIONS(8519), 1, + sym_filesize_unit, + ACTIONS(8521), 1, + sym_duration_unit, + STATE(3982), 1, + sym_comment, + ACTIONS(8517), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(938), 35, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT, + [95262] = 10, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(940), 1, + aux_sym_command_token1, + ACTIONS(8385), 1, + anon_sym_DOT, + ACTIONS(8387), 1, + sym_filesize_unit, + ACTIONS(8389), 1, + sym_duration_unit, + ACTIONS(8391), 1, + aux_sym_unquoted_token5, + ACTIONS(8523), 1, + anon_sym_DOT_DOT2, + STATE(3983), 1, + sym_comment, + ACTIONS(8525), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(938), 33, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [95326] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1091), 1, + anon_sym_LF, + ACTIONS(1302), 1, + anon_sym_DOT_DOT2, + STATE(3984), 1, + sym_comment, + ACTIONS(1304), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(8527), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + ACTIONS(1089), 31, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [95384] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8443), 1, + anon_sym_DOT, + STATE(3985), 1, + sym_comment, + STATE(4004), 1, + aux_sym_cell_path_repeat1, + STATE(4259), 1, + sym_path, + ACTIONS(1010), 6, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT2, + ACTIONS(1012), 32, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [95442] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(2231), 1, + anon_sym_LF, + ACTIONS(8529), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8531), 1, + aux_sym__immediate_decimal_token2, + STATE(3986), 1, + sym_comment, + ACTIONS(2229), 38, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + anon_sym_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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -431977,24 +391462,22 @@ 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, - [95402] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + aux_sym_unquoted_token2, + [95498] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4409), 1, + STATE(3987), 1, sym_comment, - ACTIONS(5199), 9, + ACTIONS(7618), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -432004,7 +391487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(5201), 32, + ACTIONS(7687), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -432037,12 +391520,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [95454] = 4, + [95550] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4410), 1, + STATE(3988), 1, sym_comment, - ACTIONS(5203), 9, + ACTIONS(4196), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -432052,7 +391535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(5205), 32, + ACTIONS(4198), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -432085,20 +391568,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [95506] = 4, + [95602] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(4411), 1, + STATE(3989), 1, + sym_comment, + ACTIONS(1049), 3, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1047), 38, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + anon_sym_DOT_DOT2, + anon_sym_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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [95654] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(8535), 1, + anon_sym_DOT_DOT2, + STATE(3990), 1, + sym_comment, + ACTIONS(1091), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(8537), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(8533), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + ACTIONS(1089), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [95712] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(3991), 1, + sym_comment, + ACTIONS(1039), 3, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1037), 38, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + anon_sym_DOT_DOT2, + anon_sym_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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [95764] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(8383), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(8539), 1, + anon_sym_DOT, + STATE(3992), 1, sym_comment, - ACTIONS(952), 4, + ACTIONS(913), 5, + ts_builtin_sym_end, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, aux_sym_command_token1, - ACTIONS(950), 37, + ACTIONS(911), 34, anon_sym_SEMI, anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, @@ -432129,37 +391763,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - anon_sym_DOT, sym_filesize_unit, - anon_sym_LF2, aux_sym_unquoted_token5, - [95558] = 11, - ACTIONS(113), 1, + [95820] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(938), 1, - anon_sym_LF, - ACTIONS(942), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(944), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(1582), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8904), 1, - aux_sym_unquoted_token3, - ACTIONS(8970), 1, + ACTIONS(8507), 1, + aux_sym__immediate_decimal_token2, + STATE(3993), 1, + sym_comment, + ACTIONS(913), 15, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(911), 25, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(8972), 1, + sym_filesize_unit, + sym_duration_unit, aux_sym_unquoted_token5, - STATE(4412), 1, + [95874] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(3994), 1, sym_comment, - STATE(9346), 1, - sym__immediate_decimal, - ACTIONS(936), 33, + ACTIONS(895), 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + aux_sym_command_token1, + ACTIONS(893), 37, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -432188,12 +391858,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [95624] = 4, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + [95926] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4413), 1, + STATE(3995), 1, sym_comment, - ACTIONS(5207), 9, + ACTIONS(3767), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -432203,7 +391877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(5209), 32, + ACTIONS(3769), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -432236,62 +391910,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [95676] = 6, - ACTIONS(113), 1, + [95978] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8974), 1, + ACTIONS(926), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(1379), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(1381), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8011), 1, anon_sym_DOT, - ACTIONS(8976), 1, - aux_sym__immediate_decimal_token2, - STATE(4414), 1, + ACTIONS(8013), 1, + aux_sym_unquoted_token3, + ACTIONS(8015), 1, + aux_sym_unquoted_token5, + STATE(3996), 1, sym_comment, - ACTIONS(2583), 4, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2581), 35, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + STATE(8796), 1, + sym__immediate_decimal, + ACTIONS(920), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(922), 22, + anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [95732] = 4, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [96044] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4415), 1, + STATE(3997), 1, sym_comment, - ACTIONS(5211), 9, + ACTIONS(1061), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -432301,7 +391980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(5213), 32, + ACTIONS(1063), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -432334,70 +392013,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [95784] = 14, - ACTIONS(3), 1, + [96096] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - ACTIONS(8861), 1, - anon_sym_DOLLAR, - ACTIONS(8863), 1, - anon_sym_LPAREN2, - ACTIONS(8865), 1, - anon_sym_DOT, - ACTIONS(8867), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8869), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8871), 1, - aux_sym__immediate_decimal_token4, - STATE(4416), 1, + STATE(3998), 1, sym_comment, - STATE(5760), 1, - sym__var, - STATE(5765), 1, - sym__immediate_decimal, - STATE(6518), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(2002), 10, + ACTIONS(1043), 3, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1041), 38, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2004), 20, - anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_not, + anon_sym_DOT_DOT2, + anon_sym_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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_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, - [95856] = 4, + [96148] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4417), 1, + STATE(3999), 1, + sym_comment, + ACTIONS(1037), 14, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1039), 27, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [96200] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4000), 1, sym_comment, - ACTIONS(1346), 9, + ACTIONS(938), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -432407,7 +392124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1348), 32, + ACTIONS(940), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -432440,62 +392157,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [95908] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8978), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8980), 1, - aux_sym__immediate_decimal_token2, - STATE(4418), 1, - sym_comment, - ACTIONS(909), 14, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token5, - ACTIONS(911), 25, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_LPAREN2, - 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_token1, - aux_sym__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, - [95964] = 4, + [96252] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4419), 1, + STATE(4001), 1, sym_comment, - ACTIONS(5215), 9, + ACTIONS(5151), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -432505,7 +392172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(5217), 32, + ACTIONS(5153), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -432538,12 +392205,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [96016] = 4, + [96304] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4420), 1, + STATE(4002), 1, sym_comment, - ACTIONS(1243), 9, + ACTIONS(8544), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -432553,7 +392220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1290), 32, + ACTIONS(8542), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -432586,12 +392253,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [96068] = 4, + [96356] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4421), 1, + STATE(4003), 1, sym_comment, - ACTIONS(5219), 9, + ACTIONS(1033), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -432601,7 +392268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(5221), 32, + ACTIONS(1035), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -432634,35 +392301,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [96120] = 4, + [96408] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(4422), 1, + ACTIONS(8443), 1, + anon_sym_DOT, + STATE(4004), 1, sym_comment, - ACTIONS(5223), 9, + STATE(4016), 1, + aux_sym_cell_path_repeat1, + STATE(4259), 1, + sym_path, + ACTIONS(1006), 6, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT2, + ACTIONS(1008), 32, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_DOT_DOT, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [96466] = 11, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(922), 1, + aux_sym_command_token1, + ACTIONS(926), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(928), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(1379), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8546), 1, + anon_sym_DOT, + ACTIONS(8548), 1, + aux_sym_unquoted_token3, + ACTIONS(8550), 1, + aux_sym_unquoted_token5, + STATE(4005), 1, + sym_comment, + STATE(8796), 1, + sym__immediate_decimal, + ACTIONS(920), 33, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(5225), 32, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LF2, + [96532] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(8552), 1, + anon_sym_DOT_DOT2, + STATE(4006), 1, + sym_comment, + ACTIONS(3356), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3362), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(8554), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3354), 34, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -432670,24 +392449,69 @@ 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, - [96172] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [96590] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(4007), 1, + sym_comment, + ACTIONS(903), 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + aux_sym_command_token1, + ACTIONS(901), 37, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + [96642] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4423), 1, + STATE(4008), 1, sym_comment, - ACTIONS(5227), 9, + ACTIONS(1229), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -432697,7 +392521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(5229), 32, + ACTIONS(1231), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -432730,12 +392554,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [96224] = 4, + [96694] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4424), 1, + STATE(4009), 1, sym_comment, - ACTIONS(5231), 9, + ACTIONS(5213), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -432745,7 +392569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(5233), 32, + ACTIONS(5215), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -432778,12 +392602,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [96276] = 4, + [96746] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(8556), 1, + anon_sym_DOT, + ACTIONS(8559), 1, + aux_sym__immediate_decimal_token2, + STATE(4010), 1, + sym_comment, + ACTIONS(913), 5, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + ACTIONS(911), 34, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token5, + [96802] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4425), 1, + STATE(4011), 1, sym_comment, - ACTIONS(5235), 9, + ACTIONS(5217), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -432793,7 +392667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(5237), 32, + ACTIONS(5219), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -432826,12 +392700,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [96328] = 4, + [96854] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(4426), 1, + ACTIONS(8561), 1, + anon_sym_RBRACK, + ACTIONS(8569), 1, + anon_sym_list, + STATE(4983), 1, + sym__one_type, + STATE(10528), 1, + sym__type_annotation, + ACTIONS(8566), 2, + anon_sym_table, + anon_sym_record, + STATE(4012), 2, + sym_comment, + aux_sym__multiple_types_repeat1, + STATE(4115), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(8563), 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, + [96916] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(8572), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8574), 1, + aux_sym__immediate_decimal_token2, + STATE(4013), 1, + sym_comment, + ACTIONS(895), 5, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + ACTIONS(893), 34, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + [96972] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4014), 1, sym_comment, - ACTIONS(5239), 9, + ACTIONS(1020), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -432841,7 +392818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(5241), 32, + ACTIONS(1022), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -432874,13 +392851,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [96380] = 4, + [97024] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4427), 1, + STATE(4015), 1, sym_comment, - ACTIONS(8728), 10, - anon_sym_DOLLAR, + ACTIONS(7087), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -432890,9 +392866,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(8724), 31, + ACTIONS(7101), 32, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -432912,8 +392891,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, anon_sym_out_GT, anon_sym_e_GT, @@ -432922,38 +392899,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [96432] = 4, - ACTIONS(113), 1, + [97076] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4428), 1, + ACTIONS(8576), 1, + anon_sym_DOT, + STATE(4259), 1, + sym_path, + STATE(4016), 2, sym_comment, - ACTIONS(952), 4, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - ACTIONS(950), 37, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_PIPE, + aux_sym_cell_path_repeat1, + ACTIONS(985), 6, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT2, + ACTIONS(987), 32, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_QMARK2, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -432967,15 +392947,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - [96484] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [97132] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4429), 1, + STATE(4017), 1, sym_comment, - ACTIONS(1362), 9, + ACTIONS(1237), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -432985,7 +392964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1364), 32, + ACTIONS(1239), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -433018,31 +392997,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [96536] = 6, + [97184] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2439), 1, - anon_sym_LF, - ACTIONS(8982), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8984), 1, - aux_sym__immediate_decimal_token2, - STATE(4430), 1, + ACTIONS(8579), 1, + anon_sym_DOT_DOT2, + STATE(4018), 1, sym_comment, - ACTIONS(2437), 38, + ACTIONS(1844), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(3314), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(8581), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3312), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -433067,41 +393048,42 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - aux_sym_unquoted_token2, - [96592] = 6, - ACTIONS(113), 1, + [97242] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8934), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(8986), 1, - anon_sym_DOT, - STATE(4431), 1, + STATE(4019), 1, sym_comment, - ACTIONS(925), 4, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - ACTIONS(923), 35, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1041), 14, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1043), 27, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -433112,32 +393094,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token5, - [96648] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [97294] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6312), 1, + aux_sym_unquoted_token4, + ACTIONS(8421), 1, + anon_sym_DOLLAR, + ACTIONS(8423), 1, + anon_sym_LPAREN2, + ACTIONS(8451), 1, + anon_sym_DOT, + ACTIONS(8453), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8455), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8457), 1, + aux_sym__immediate_decimal_token4, + STATE(4020), 1, + sym_comment, + STATE(5524), 1, + sym__var, + STATE(5586), 1, + sym__immediate_decimal, + STATE(6086), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(920), 10, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(922), 20, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_not, + 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_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [97366] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8989), 1, - aux_sym__immediate_decimal_token2, - STATE(4432), 1, + STATE(4021), 1, sym_comment, - ACTIONS(925), 5, - ts_builtin_sym_end, + ACTIONS(936), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, aux_sym_command_token1, - ACTIONS(923), 35, + ACTIONS(934), 37, anon_sym_SEMI, anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -433167,12 +393202,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, sym_filesize_unit, aux_sym_unquoted_token5, - [96702] = 4, + [97418] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4433), 1, + STATE(4022), 1, sym_comment, - ACTIONS(1350), 9, + ACTIONS(8585), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -433182,7 +393217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1352), 32, + ACTIONS(8583), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -433215,12 +393250,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [96754] = 4, + [97470] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4434), 1, + STATE(4023), 1, sym_comment, - ACTIONS(1406), 9, + ACTIONS(8585), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -433230,7 +393265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1408), 32, + ACTIONS(8583), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -433263,37 +393298,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [96806] = 4, - ACTIONS(113), 1, + [97522] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4435), 1, + STATE(4024), 1, sym_comment, - ACTIONS(911), 4, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - ACTIONS(909), 37, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(893), 17, + sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + ACTIONS(895), 24, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -433304,19 +393344,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - [96858] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [97574] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4436), 1, + STATE(4025), 1, sym_comment, - ACTIONS(8556), 9, + ACTIONS(3757), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -433326,7 +393361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(8558), 32, + ACTIONS(3759), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -433359,114 +393394,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [96910] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(4437), 1, - sym_comment, - ACTIONS(911), 4, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - aux_sym_command_token1, - ACTIONS(909), 37, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - [96962] = 10, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(961), 1, - aux_sym_command_token1, - ACTIONS(8991), 1, - anon_sym_DOT_DOT2, - ACTIONS(8993), 1, - anon_sym_DOT, - ACTIONS(8997), 1, - sym_filesize_unit, - ACTIONS(8999), 1, - sym_duration_unit, - ACTIONS(9001), 1, - aux_sym_unquoted_token5, - STATE(4438), 1, - sym_comment, - ACTIONS(8995), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(959), 33, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LF2, - [97026] = 4, + [97626] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4439), 1, + STATE(4026), 1, sym_comment, - ACTIONS(8104), 9, + ACTIONS(5241), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -433476,7 +393409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(8200), 32, + ACTIONS(5243), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -433509,86 +393442,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [97078] = 4, + [97678] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4440), 1, + STATE(4027), 1, sym_comment, - ACTIONS(9005), 18, + ACTIONS(5245), 9, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(5247), 32, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, + 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_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - ACTIONS(9003), 23, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_DOT_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_where, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [97130] = 5, - ACTIONS(113), 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, + [97730] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8813), 1, - aux_sym__immediate_decimal_token2, - STATE(4441), 1, + STATE(4028), 1, sym_comment, - ACTIONS(911), 5, - ts_builtin_sym_end, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - aux_sym_command_token1, - ACTIONS(909), 35, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, + ACTIONS(901), 17, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + ACTIONS(903), 24, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -433599,19 +393536,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - [97184] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [97782] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4442), 1, + STATE(4029), 1, sym_comment, - ACTIONS(1298), 9, + ACTIONS(8260), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -433621,7 +393553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1300), 32, + ACTIONS(8587), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -433654,63 +393586,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [97236] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9007), 1, - anon_sym_DOT, - STATE(4443), 1, - sym_comment, - STATE(4452), 1, - aux_sym_cell_path_repeat1, - STATE(4747), 1, - sym_path, - ACTIONS(1006), 6, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT2, - ACTIONS(1008), 32, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [97294] = 4, + [97834] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4444), 1, + STATE(4030), 1, sym_comment, - ACTIONS(1168), 9, + ACTIONS(4734), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -433720,7 +393601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1170), 32, + ACTIONS(4738), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -433753,33 +393634,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [97346] = 14, + [97886] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1934), 1, + ACTIONS(1844), 1, aux_sym_unquoted_token2, - ACTIONS(3113), 1, + ACTIONS(2555), 1, anon_sym_DOLLAR, - ACTIONS(8653), 1, + ACTIONS(8173), 1, anon_sym_LPAREN2, - ACTIONS(8763), 1, + ACTIONS(8308), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8765), 1, + ACTIONS(8310), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8767), 1, + ACTIONS(8312), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9009), 1, + ACTIONS(8589), 1, anon_sym_DOT, - STATE(4445), 1, + STATE(4031), 1, sym_comment, - STATE(4952), 1, - sym__var, - STATE(5339), 1, + STATE(4594), 1, sym__immediate_decimal, - STATE(5929), 2, + STATE(4600), 1, + sym__var, + STATE(5317), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1920), 10, + ACTIONS(1838), 10, anon_sym_LPAREN, anon_sym_DASH, anon_sym_DOT_DOT, @@ -433790,7 +393671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1922), 20, + ACTIONS(1840), 20, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_not, @@ -433811,33 +393692,33 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [97418] = 14, + [97958] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1934), 1, + ACTIONS(1844), 1, aux_sym_unquoted_token2, - ACTIONS(8861), 1, + ACTIONS(8421), 1, anon_sym_DOLLAR, - ACTIONS(8863), 1, + ACTIONS(8423), 1, anon_sym_LPAREN2, - ACTIONS(8922), 1, + ACTIONS(8425), 1, anon_sym_DOT, - ACTIONS(8924), 1, + ACTIONS(8427), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8926), 1, + ACTIONS(8429), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8928), 1, + ACTIONS(8431), 1, aux_sym__immediate_decimal_token4, - STATE(4446), 1, + STATE(4032), 1, sym_comment, - STATE(5760), 1, - sym__var, - STATE(6000), 1, + STATE(5444), 1, sym__immediate_decimal, - STATE(6579), 2, + STATE(5524), 1, + sym__var, + STATE(6056), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1920), 10, + ACTIONS(1838), 10, anon_sym_LPAREN, anon_sym_DASH, anon_sym_DOT_DOT, @@ -433848,7 +393729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1922), 20, + ACTIONS(1840), 20, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_not, @@ -433869,24 +393750,72 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [97490] = 5, + [98030] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9011), 1, + STATE(4033), 1, + sym_comment, + ACTIONS(1035), 4, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1033), 37, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_not, + anon_sym_DOT_DOT2, + anon_sym_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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [98082] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(8559), 1, aux_sym__immediate_decimal_token2, - STATE(4447), 1, + STATE(4034), 1, sym_comment, - ACTIONS(919), 5, + ACTIONS(913), 5, ts_builtin_sym_end, + anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - aux_sym_command_token1, - ACTIONS(917), 35, + ACTIONS(911), 35, anon_sym_SEMI, - anon_sym_LF, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -433918,76 +393847,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, sym_filesize_unit, aux_sym_unquoted_token5, - [97544] = 10, + [98136] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8890), 1, - anon_sym_list, - ACTIONS(9013), 1, - anon_sym_RBRACK, - STATE(4325), 1, - aux_sym__multiple_types_repeat1, - STATE(4448), 1, + STATE(4035), 1, sym_comment, - STATE(5427), 1, - sym__one_type, - STATE(10858), 1, - sym__type_annotation, - ACTIONS(8888), 2, - anon_sym_table, - anon_sym_record, - STATE(4653), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(8886), 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, - [97608] = 4, + ACTIONS(934), 17, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + ACTIONS(936), 24, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [98188] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(4449), 1, + STATE(4036), 1, + sym_comment, + ACTIONS(1063), 4, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1061), 37, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + [98240] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(8193), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(8591), 1, + anon_sym_DOT, + STATE(4037), 1, sym_comment, - ACTIONS(919), 4, + ACTIONS(913), 4, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - ACTIONS(917), 37, + ACTIONS(911), 35, anon_sym_SEMI, + anon_sym_COLON, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -434017,33 +393992,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - anon_sym_DOT, sym_filesize_unit, - aux_sym_unquoted_token5, - [97660] = 5, + [98296] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8896), 1, - aux_sym__immediate_decimal_token1, - STATE(4450), 1, + STATE(4038), 1, sym_comment, - ACTIONS(5083), 9, + ACTIONS(8042), 9, anon_sym_DASH, - anon_sym__, anon_sym_DOT_DOT, + anon_sym_PLUS, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(5085), 31, + aux_sym__unquoted_in_list_token1, + ACTIONS(8044), 32, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -434069,86 +394041,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [97714] = 6, - ACTIONS(113), 1, + [98348] = 14, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9015), 1, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(8421), 1, + anon_sym_DOLLAR, + ACTIONS(8423), 1, + anon_sym_LPAREN2, + ACTIONS(8425), 1, + anon_sym_DOT, + ACTIONS(8427), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9017), 1, - aux_sym__immediate_decimal_token2, - STATE(4451), 1, + ACTIONS(8429), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8431), 1, + aux_sym__immediate_decimal_token4, + STATE(4039), 1, sym_comment, - ACTIONS(2439), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_LPAREN2, - ACTIONS(2437), 36, - anon_sym_SEMI, - anon_sym_LBRACK, + STATE(5284), 1, + sym__immediate_decimal, + STATE(5524), 1, + sym__var, + STATE(6191), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1882), 10, anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1884), 20, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_not, - anon_sym_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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_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, - aux_sym_unquoted_token2, - [97770] = 6, + [98420] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9019), 1, + ACTIONS(967), 1, anon_sym_DOT, - STATE(4747), 1, - sym_path, - STATE(4452), 2, + ACTIONS(969), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(1407), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(1409), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8013), 1, + aux_sym_unquoted_token4, + STATE(4040), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(999), 6, + STATE(10080), 1, + sym__immediate_decimal, + ACTIONS(920), 12, + sym_identifier, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_DOT_DOT2, - ACTIONS(1001), 32, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(922), 23, + anon_sym_COLON, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -434164,30 +394153,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [97826] = 4, + [98484] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(4453), 1, + ACTIONS(8593), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8595), 1, + aux_sym__immediate_decimal_token2, + STATE(4041), 1, + sym_comment, + ACTIONS(2231), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LPAREN2, + ACTIONS(2229), 36, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + anon_sym_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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + aux_sym_unquoted_token2, + [98540] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(8500), 1, + aux_sym__immediate_decimal_token2, + STATE(4042), 1, + sym_comment, + ACTIONS(2358), 2, + anon_sym_LF, + anon_sym_LPAREN2, + ACTIONS(2356), 38, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + anon_sym_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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + aux_sym_unquoted_token2, + [98594] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(8304), 1, + aux_sym__immediate_decimal_token2, + STATE(4043), 1, sym_comment, - ACTIONS(919), 4, + ACTIONS(895), 5, + ts_builtin_sym_end, + anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - aux_sym_command_token1, - ACTIONS(917), 37, + ACTIONS(893), 35, anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -434217,12 +394301,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, sym_filesize_unit, aux_sym_unquoted_token5, - [97878] = 4, + [98648] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(8203), 1, + aux_sym__immediate_decimal_token2, + STATE(4044), 1, + sym_comment, + ACTIONS(2231), 2, + anon_sym_LF, + anon_sym_LPAREN2, + ACTIONS(2229), 38, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + anon_sym_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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + aux_sym_unquoted_token2, + [98702] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4454), 1, + STATE(4045), 1, sym_comment, - ACTIONS(1158), 9, + ACTIONS(1093), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -434232,7 +394365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1160), 32, + ACTIONS(1095), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -434265,26 +394398,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [97930] = 6, + [98754] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8989), 1, + ACTIONS(8597), 1, aux_sym__immediate_decimal_token2, - ACTIONS(9022), 1, - anon_sym_DOT, - STATE(4455), 1, + STATE(4046), 1, sym_comment, - ACTIONS(925), 5, + ACTIONS(903), 5, ts_builtin_sym_end, + anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - aux_sym_command_token1, - ACTIONS(923), 34, + ACTIONS(901), 35, anon_sym_SEMI, - anon_sym_LF, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -434313,14 +394444,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, + anon_sym_DOT, sym_filesize_unit, aux_sym_unquoted_token5, - [97986] = 4, + [98808] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4456), 1, + ACTIONS(8485), 1, + aux_sym__immediate_decimal_token1, + STATE(4047), 1, + sym_comment, + ACTIONS(3574), 9, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(3576), 31, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__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, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + [98862] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4048), 1, sym_comment, - ACTIONS(1372), 9, + ACTIONS(4997), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -434330,7 +394511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1374), 32, + ACTIONS(4999), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -434363,73 +394544,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [98038] = 4, + [98914] = 14, ACTIONS(3), 1, anon_sym_POUND, - STATE(4457), 1, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(8421), 1, + anon_sym_DOLLAR, + ACTIONS(8423), 1, + anon_sym_LPAREN2, + ACTIONS(8451), 1, + anon_sym_DOT, + ACTIONS(8453), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8455), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8457), 1, + aux_sym__immediate_decimal_token4, + STATE(4049), 1, sym_comment, - ACTIONS(1109), 14, - sym_identifier, - anon_sym_GT, + STATE(5524), 1, + sym__var, + STATE(5538), 1, + sym__immediate_decimal, + STATE(6191), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1882), 10, + anon_sym_LPAREN, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1111), 27, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1884), 20, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_not, + 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_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [98986] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(8599), 1, + aux_sym__immediate_decimal_token2, + STATE(4050), 1, + sym_comment, + ACTIONS(2364), 2, + anon_sym_LF, + anon_sym_LPAREN2, + ACTIONS(2362), 38, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [98090] = 8, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + anon_sym_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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + aux_sym_unquoted_token2, + [99040] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_LF, - ACTIONS(9025), 1, - anon_sym_DOT_DOT2, - ACTIONS(9029), 1, - sym_filesize_unit, - ACTIONS(9031), 1, - sym_duration_unit, - STATE(4458), 1, + ACTIONS(8193), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(8601), 1, + anon_sym_DOT, + STATE(4051), 1, sym_comment, - ACTIONS(9027), 2, + ACTIONS(913), 4, + anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(959), 35, + sym_duration_unit, + ACTIONS(911), 35, anon_sym_SEMI, - anon_sym_COLON, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, @@ -434462,87 +394699,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT, - [98150] = 10, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(961), 1, - aux_sym_command_token1, - ACTIONS(979), 1, anon_sym_DOT_DOT2, - ACTIONS(8993), 1, - anon_sym_DOT, - ACTIONS(8997), 1, sym_filesize_unit, - ACTIONS(8999), 1, - sym_duration_unit, - ACTIONS(9001), 1, - aux_sym_unquoted_token5, - STATE(4459), 1, + [99096] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(4052), 1, sym_comment, - ACTIONS(983), 2, + ACTIONS(1022), 4, + ts_builtin_sym_end, + anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(959), 33, + ACTIONS(1020), 37, anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LF2, - [98214] = 10, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_not, + anon_sym_DOT_DOT2, + anon_sym_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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [99148] = 11, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(961), 1, - aux_sym_command_token1, - ACTIONS(9033), 1, - anon_sym_DOT_DOT2, - ACTIONS(9035), 1, + ACTIONS(922), 1, + anon_sym_LF, + ACTIONS(926), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(928), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(1379), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8419), 1, + aux_sym_unquoted_token3, + ACTIONS(8604), 1, anon_sym_DOT, - ACTIONS(9039), 1, - sym_filesize_unit, - ACTIONS(9041), 1, - sym_duration_unit, - ACTIONS(9043), 1, + ACTIONS(8606), 1, aux_sym_unquoted_token5, - STATE(4460), 1, + STATE(4053), 1, sym_comment, - ACTIONS(9037), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(959), 33, + STATE(8796), 1, + sym__immediate_decimal, + ACTIONS(920), 33, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -434571,26 +394804,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [98278] = 5, + [99214] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9045), 1, - aux_sym__immediate_decimal_token2, - STATE(4461), 1, + ACTIONS(8608), 1, + anon_sym_QMARK2, + STATE(4054), 1, sym_comment, - ACTIONS(925), 5, + ACTIONS(1026), 4, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(1024), 36, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + anon_sym_DOT_DOT2, + anon_sym_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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [99268] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(4055), 1, + sym_comment, + ACTIONS(895), 4, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym_duration_unit, - ACTIONS(923), 35, + ACTIONS(893), 37, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -434620,164 +394901,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, sym_filesize_unit, aux_sym_unquoted_token5, - [98332] = 14, - ACTIONS(3), 1, + [99320] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - ACTIONS(8861), 1, - anon_sym_DOLLAR, - ACTIONS(8863), 1, - anon_sym_LPAREN2, - ACTIONS(8922), 1, - anon_sym_DOT, - ACTIONS(8924), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8926), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8928), 1, - aux_sym__immediate_decimal_token4, - STATE(4462), 1, + ACTIONS(8608), 1, + anon_sym_QMARK2, + STATE(4056), 1, sym_comment, - STATE(5760), 1, - sym__var, - STATE(6027), 1, - sym__immediate_decimal, - STATE(6518), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(2002), 10, + ACTIONS(1026), 4, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1024), 36, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2004), 20, - anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_not, + anon_sym_DOT_DOT2, + anon_sym_DOT, 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_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [98404] = 27, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2795), 1, aux_sym__val_number_decimal_token1, - ACTIONS(2797), 1, aux_sym__val_number_decimal_token2, - ACTIONS(2801), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3984), 1, - anon_sym_COLON, - ACTIONS(4611), 1, - aux_sym_unquoted_token1, - ACTIONS(8442), 1, - anon_sym_LPAREN, - ACTIONS(8452), 1, - sym_val_date, - ACTIONS(8454), 1, - anon_sym_DQUOTE, - ACTIONS(8458), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(8460), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(9047), 1, - anon_sym_DOT_DOT, - ACTIONS(9051), 1, - anon_sym_DOT2, - STATE(2589), 1, - sym__inter_single_quotes, - STATE(2590), 1, - sym__inter_double_quotes, - STATE(2627), 1, - sym__str_double_quotes, - STATE(4463), 1, - sym_comment, - STATE(8428), 1, - sym__val_number_decimal, - STATE(10559), 1, - sym__val_range, - STATE(10861), 1, - sym_val_bool, - STATE(11114), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(2793), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(8456), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(9049), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(8450), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(1230), 4, - sym_expr_parenthesized, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(3910), 9, - anon_sym_null, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [98502] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4464), 1, - sym_comment, - ACTIONS(1194), 9, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1196), 32, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - 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_token1, aux_sym__val_number_token2, @@ -434785,88 +394941,26 @@ 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, - [98554] = 4, - ACTIONS(3), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [99374] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(4465), 1, + STATE(4057), 1, sym_comment, - ACTIONS(1113), 14, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1115), 27, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + ACTIONS(895), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [98606] = 11, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(938), 1, + sym_duration_unit, aux_sym_command_token1, - ACTIONS(942), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(944), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(1582), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9001), 1, - aux_sym_unquoted_token3, - ACTIONS(9053), 1, - anon_sym_DOT, - ACTIONS(9055), 1, - aux_sym_unquoted_token5, - STATE(4466), 1, - sym_comment, - STATE(9346), 1, - sym__immediate_decimal, - ACTIONS(936), 33, + ACTIONS(893), 37, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -434899,13 +394993,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, anon_sym_LF2, - [98672] = 4, + aux_sym_unquoted_token5, + [99426] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4467), 1, + STATE(4058), 1, sym_comment, - ACTIONS(1190), 9, + ACTIONS(8612), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -434915,7 +395013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1192), 32, + ACTIONS(8610), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -434948,27 +395046,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [98724] = 10, + [99478] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_LF, - ACTIONS(8898), 1, - anon_sym_DOT, - ACTIONS(8900), 1, - sym_filesize_unit, - ACTIONS(8902), 1, - sym_duration_unit, - ACTIONS(8904), 1, - aux_sym_unquoted_token5, - ACTIONS(9057), 1, - anon_sym_DOT_DOT2, - STATE(4468), 1, + STATE(4059), 1, sym_comment, - ACTIONS(9059), 2, + ACTIONS(903), 4, + anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(959), 33, + sym_duration_unit, + ACTIONS(901), 37, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -435002,171 +395090,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [98788] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9007), 1, - anon_sym_DOT, - STATE(4469), 1, - sym_comment, - STATE(4505), 1, - sym_path, - STATE(4784), 1, - sym_cell_path, - ACTIONS(995), 6, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, anon_sym_DOT_DOT2, - ACTIONS(997), 32, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [98846] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(942), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(1582), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(1584), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8568), 1, anon_sym_DOT, - ACTIONS(8570), 1, - aux_sym_unquoted_token3, - ACTIONS(8572), 1, + sym_filesize_unit, aux_sym_unquoted_token5, - STATE(4470), 1, - sym_comment, - STATE(9346), 1, - sym__immediate_decimal, - ACTIONS(936), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(938), 22, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [98912] = 4, + [99530] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4471), 1, + STATE(4060), 1, sym_comment, - ACTIONS(1117), 14, - sym_identifier, - anon_sym_GT, + ACTIONS(1175), 9, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, + anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1119), 27, - anon_sym_COLON, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1177), 32, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [98964] = 4, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__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, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + [99582] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(4472), 1, + STATE(4061), 1, sym_comment, - ACTIONS(952), 4, + ACTIONS(936), 4, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - ACTIONS(950), 37, + ACTIONS(934), 37, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -435204,12 +395190,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, sym_filesize_unit, aux_sym_unquoted_token5, - [99016] = 4, + [99634] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4473), 1, + STATE(4062), 1, sym_comment, - ACTIONS(1316), 9, + ACTIONS(5001), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -435219,7 +395205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1318), 32, + ACTIONS(5003), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -435252,75 +395238,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [99068] = 4, - ACTIONS(113), 1, + [99686] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4474), 1, + STATE(4063), 1, sym_comment, - ACTIONS(911), 4, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - ACTIONS(909), 37, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(5005), 9, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - [99120] = 10, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(5007), 32, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__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, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + [99738] = 10, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(940), 1, aux_sym_command_token1, - ACTIONS(979), 1, + ACTIONS(961), 1, anon_sym_DOT_DOT2, - ACTIONS(9035), 1, + ACTIONS(8548), 1, + aux_sym_unquoted_token5, + ACTIONS(8614), 1, anon_sym_DOT, - ACTIONS(9039), 1, + ACTIONS(8616), 1, sym_filesize_unit, - ACTIONS(9041), 1, + ACTIONS(8618), 1, sym_duration_unit, - ACTIONS(9043), 1, - aux_sym_unquoted_token5, - STATE(4475), 1, + STATE(4064), 1, sym_comment, - ACTIONS(983), 2, + ACTIONS(965), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(959), 33, + ACTIONS(938), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -435328,7 +395314,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -435354,12 +395339,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [99184] = 4, + anon_sym_LF2, + [99802] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4476), 1, + STATE(4065), 1, sym_comment, - ACTIONS(1320), 9, + ACTIONS(7805), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -435369,7 +395355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1322), 32, + ACTIONS(7826), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -435402,89 +395388,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [99236] = 5, - ACTIONS(113), 1, + [99854] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8832), 1, - aux_sym__immediate_decimal_token2, - STATE(4477), 1, + STATE(4066), 1, sym_comment, - ACTIONS(911), 5, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - ACTIONS(909), 35, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, + ACTIONS(8622), 9, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_DOT_DOT, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - [99290] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(9061), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9063), 1, - aux_sym__immediate_decimal_token2, - STATE(4478), 1, - sym_comment, - ACTIONS(2439), 4, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2437), 35, - anon_sym_SEMI, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(8620), 32, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -435492,26 +395424,100 @@ 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, + [99906] = 27, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3116), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3118), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3122), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3707), 1, + anon_sym_COLON, + ACTIONS(4672), 1, + aux_sym_unquoted_token1, + ACTIONS(7897), 1, + anon_sym_LPAREN, + ACTIONS(7909), 1, + sym_val_date, + ACTIONS(7911), 1, + anon_sym_DQUOTE, + ACTIONS(7915), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(7917), 1, anon_sym_DOLLAR_DQUOTE, - [99346] = 4, + ACTIONS(8437), 1, + anon_sym_DOT_DOT, + ACTIONS(8441), 1, + anon_sym_DOT2, + STATE(2117), 1, + sym__inter_single_quotes, + STATE(2128), 1, + sym__inter_double_quotes, + STATE(2196), 1, + sym__str_double_quotes, + STATE(4067), 1, + sym_comment, + STATE(8009), 1, + sym__val_number_decimal, + STATE(10050), 1, + sym__val_range, + STATE(10641), 1, + sym_val_bool, + STATE(10833), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3114), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(7913), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(8439), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(7907), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(948), 4, + sym_expr_parenthesized, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(3685), 9, + anon_sym_null, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + [100004] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(4479), 1, + STATE(4068), 1, sym_comment, - ACTIONS(952), 4, + ACTIONS(903), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, aux_sym_command_token1, - ACTIONS(950), 37, + ACTIONS(901), 37, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -435519,7 +395525,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -435548,13 +395553,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, anon_sym_DOT, sym_filesize_unit, + anon_sym_LF2, aux_sym_unquoted_token5, - [99398] = 4, + [100056] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4069), 1, + sym_comment, + ACTIONS(8351), 9, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(8624), 32, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__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, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + [100108] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4070), 1, + sym_comment, + ACTIONS(5109), 9, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(5111), 32, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__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, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + [100160] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4480), 1, + STATE(4071), 1, sym_comment, - ACTIONS(9067), 9, + ACTIONS(5019), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -435564,7 +395666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(9065), 32, + ACTIONS(5021), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -435597,12 +395699,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [99450] = 4, + [100212] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4481), 1, + STATE(4072), 1, sym_comment, - ACTIONS(9071), 9, + ACTIONS(8358), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -435612,7 +395714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(9069), 32, + ACTIONS(8360), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -435645,12 +395747,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [99502] = 4, + [100264] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4482), 1, + STATE(4073), 1, sym_comment, - ACTIONS(8756), 9, + ACTIONS(7846), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -435660,7 +395762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(9073), 32, + ACTIONS(7848), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -435693,24 +395795,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [99554] = 5, + [100316] = 10, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9075), 1, - aux_sym__immediate_decimal_token2, - STATE(4483), 1, + ACTIONS(940), 1, + aux_sym_command_token1, + ACTIONS(8548), 1, + aux_sym_unquoted_token5, + ACTIONS(8614), 1, + anon_sym_DOT, + ACTIONS(8616), 1, + sym_filesize_unit, + ACTIONS(8618), 1, + sym_duration_unit, + ACTIONS(8626), 1, + anon_sym_DOT_DOT2, + STATE(4074), 1, sym_comment, - ACTIONS(919), 5, - ts_builtin_sym_end, - anon_sym_LF, + ACTIONS(8628), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - ACTIONS(917), 35, + ACTIONS(938), 33, anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -435738,150 +395848,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - [99608] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(979), 1, - anon_sym_DOT_DOT2, - ACTIONS(8570), 1, - aux_sym_unquoted_token5, - ACTIONS(8647), 1, - anon_sym_DOT, - ACTIONS(9077), 1, - sym_filesize_unit, - ACTIONS(9079), 1, - sym_duration_unit, - STATE(4484), 1, - sym_comment, - ACTIONS(983), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(959), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(961), 22, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [99672] = 6, - ACTIONS(3), 1, + anon_sym_LF2, + [100380] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8892), 1, + ACTIONS(8475), 1, aux_sym__immediate_decimal_token2, - ACTIONS(9081), 1, + ACTIONS(8630), 1, anon_sym_DOT, - STATE(4485), 1, + STATE(4075), 1, sym_comment, - ACTIONS(925), 15, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(913), 4, + anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(923), 24, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token5, - [99728] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9007), 1, - anon_sym_DOT, - STATE(4486), 1, - sym_comment, - STATE(4505), 1, - sym_path, - STATE(4924), 1, - sym_cell_path, - ACTIONS(1010), 6, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT2, - ACTIONS(1012), 32, - anon_sym_COMMA, + ACTIONS(911), 35, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -435895,77 +395896,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [99786] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4487), 1, - sym_comment, - ACTIONS(8688), 9, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(8690), 32, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__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, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [99838] = 6, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token5, + [100436] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9084), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9086), 1, - aux_sym__immediate_decimal_token2, - STATE(4488), 1, + STATE(4076), 1, sym_comment, - ACTIONS(911), 5, - ts_builtin_sym_end, + ACTIONS(895), 4, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - ACTIONS(909), 34, + ACTIONS(893), 37, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_QMARK2, anon_sym_STAR_STAR, @@ -435995,12 +395947,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, anon_sym_DOT, sym_filesize_unit, - [99894] = 4, + [100488] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4489), 1, + STATE(4077), 1, sym_comment, - ACTIONS(1059), 9, + ACTIONS(5023), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -436010,7 +395962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1061), 32, + ACTIONS(5025), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -436043,12 +395995,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [99946] = 4, + [100540] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4490), 1, + STATE(4078), 1, sym_comment, - ACTIONS(2437), 9, + ACTIONS(5027), 9, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -436058,7 +396010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2439), 32, + ACTIONS(5029), 32, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -436091,26 +396043,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [99998] = 6, + [100592] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9045), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(9088), 1, - anon_sym_DOT, - STATE(4491), 1, + STATE(4079), 1, sym_comment, - ACTIONS(925), 5, - ts_builtin_sym_end, - anon_sym_LF, + ACTIONS(936), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - ACTIONS(923), 34, + aux_sym_command_token1, + ACTIONS(934), 37, anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -436139,32 +396087,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, + anon_sym_DOT, sym_filesize_unit, + anon_sym_LF2, aux_sym_unquoted_token5, - [100054] = 5, + [100644] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8773), 1, - aux_sym__immediate_decimal_token2, - STATE(4492), 1, + STATE(4080), 1, sym_comment, - ACTIONS(2581), 9, + ACTIONS(1072), 9, anon_sym_DASH, - anon_sym__, anon_sym_DOT_DOT, + anon_sym_PLUS, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(2583), 31, + aux_sym__unquoted_in_list_token1, + ACTIONS(1074), 32, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -436190,30 +396139,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [100108] = 5, - ACTIONS(113), 1, + [100696] = 10, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8857), 1, - anon_sym_QMARK2, - STATE(4493), 1, + ACTIONS(8407), 1, + anon_sym_list, + ACTIONS(8633), 1, + anon_sym_RBRACK, + STATE(3902), 1, + aux_sym__multiple_types_repeat1, + STATE(4081), 1, sym_comment, - ACTIONS(1072), 4, - ts_builtin_sym_end, - anon_sym_LF, + STATE(4983), 1, + sym__one_type, + STATE(10528), 1, + sym__type_annotation, + ACTIONS(8405), 2, + anon_sym_table, + anon_sym_record, + STATE(4115), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(8403), 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, + [100760] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8635), 1, + aux_sym__immediate_decimal_token2, + STATE(4082), 1, + sym_comment, + ACTIONS(903), 15, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1070), 36, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(901), 25, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + [100814] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(4083), 1, + sym_comment, + ACTIONS(2364), 2, + anon_sym_LF, + anon_sym_LPAREN2, + ACTIONS(2362), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, - anon_sym_DOT_DOT2, anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -436239,35 +396288,91 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [100162] = 4, - ACTIONS(3), 1, + aux_sym_unquoted_token2, + [100865] = 10, + ACTIONS(113), 1, anon_sym_POUND, - STATE(4494), 1, + ACTIONS(961), 1, + anon_sym_DOT_DOT2, + ACTIONS(8637), 1, + anon_sym_DOT, + ACTIONS(8639), 1, + sym_filesize_unit, + ACTIONS(8641), 1, + sym_duration_unit, + ACTIONS(8643), 1, + aux_sym_unquoted_token5, + STATE(4084), 1, sym_comment, - ACTIONS(8318), 9, + ACTIONS(940), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(965), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(938), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_DOT_DOT, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(8320), 32, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [100928] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(4085), 1, + sym_comment, + ACTIONS(1063), 3, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1061), 37, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -436275,50 +396380,55 @@ 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, - [100214] = 4, - ACTIONS(113), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [100979] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4495), 1, + ACTIONS(8645), 1, + anon_sym_DOT, + STATE(4086), 1, sym_comment, - ACTIONS(919), 4, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - ACTIONS(917), 37, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_PIPE, + STATE(4097), 1, + aux_sym_cell_path_repeat1, + STATE(4517), 1, + sym_path, + ACTIONS(1006), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1008), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -436329,34 +396439,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - [100266] = 11, + [101036] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(938), 1, - aux_sym_command_token1, - ACTIONS(942), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(944), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(1582), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9043), 1, - aux_sym_unquoted_token3, - ACTIONS(9091), 1, + ACTIONS(8647), 1, anon_sym_DOT, - ACTIONS(9093), 1, - aux_sym_unquoted_token5, - STATE(4496), 1, + STATE(4087), 1, sym_comment, - STATE(9346), 1, - sym__immediate_decimal, - ACTIONS(936), 33, + STATE(4129), 1, + sym_path, + STATE(4785), 1, + sym_cell_path, + ACTIONS(994), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_command_token1, + ACTIONS(992), 34, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -436390,35 +396488,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [100332] = 4, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + [101093] = 7, + ACTIONS(113), 1, anon_sym_POUND, - STATE(4497), 1, + ACTIONS(1053), 1, + anon_sym_LF, + ACTIONS(8649), 1, + anon_sym_DOT, + STATE(4088), 1, sym_comment, - ACTIONS(2547), 9, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2549), 32, + STATE(4152), 1, + sym_path, + STATE(4570), 1, + sym_cell_path, + ACTIONS(1051), 36, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -436426,149 +396530,46 @@ 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, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [100384] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8890), 1, - anon_sym_list, - ACTIONS(9095), 1, - anon_sym_LBRACK, - STATE(4498), 1, - sym_comment, - STATE(11088), 1, - sym__one_type, - STATE(11108), 1, - sym__multiple_types, - STATE(11109), 1, - sym__type_annotation, - ACTIONS(8888), 2, - anon_sym_table, - anon_sym_record, - STATE(4653), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(8886), 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, - [100448] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4499), 1, - sym_comment, - ACTIONS(9099), 9, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(9097), 32, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__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, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [100500] = 4, - ACTIONS(3), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [101150] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(4500), 1, + STATE(4089), 1, sym_comment, - ACTIONS(9099), 9, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(9097), 32, + ACTIONS(3769), 3, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3767), 37, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -436576,88 +396577,29 @@ 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, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [100552] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4501), 1, - sym_comment, - ACTIONS(9103), 9, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(9101), 32, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__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, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [100604] = 7, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [101201] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9107), 1, - anon_sym_DOT_DOT2, - STATE(4502), 1, + STATE(4090), 1, sym_comment, - ACTIONS(1160), 2, + ACTIONS(903), 5, ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(9109), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(9105), 6, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - ACTIONS(1158), 30, + sym_duration_unit, + aux_sym_command_token1, + ACTIONS(901), 35, anon_sym_SEMI, + anon_sym_LF, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, @@ -436687,14 +396629,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [100662] = 5, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + [101252] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8694), 1, - aux_sym__immediate_decimal_token2, - STATE(4503), 1, + STATE(4091), 1, sym_comment, - ACTIONS(2437), 9, + ACTIONS(2362), 9, anon_sym_DASH, anon_sym__, anon_sym_DOT_DOT, @@ -436704,7 +396648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(2439), 31, + ACTIONS(2364), 31, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -436736,113 +396680,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [100716] = 27, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2795), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2797), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2801), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3880), 1, - anon_sym_COLON, - ACTIONS(4611), 1, - aux_sym_unquoted_token1, - ACTIONS(8442), 1, - anon_sym_LPAREN, - ACTIONS(8452), 1, - sym_val_date, - ACTIONS(8454), 1, - anon_sym_DQUOTE, - ACTIONS(8458), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(8460), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(9047), 1, - anon_sym_DOT_DOT, - ACTIONS(9051), 1, - anon_sym_DOT2, - STATE(2589), 1, - sym__inter_single_quotes, - STATE(2590), 1, - sym__inter_double_quotes, - STATE(2627), 1, - sym__str_double_quotes, - STATE(4504), 1, - sym_comment, - STATE(8428), 1, - sym__val_number_decimal, - STATE(10559), 1, - sym__val_range, - STATE(10861), 1, - sym_val_bool, - STATE(11114), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(2793), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(8456), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(9049), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(8450), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(1230), 4, - sym_expr_parenthesized, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(3910), 9, - anon_sym_null, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [100814] = 7, - ACTIONS(3), 1, + [101303] = 7, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9007), 1, + ACTIONS(8647), 1, anon_sym_DOT, - STATE(4443), 1, - aux_sym_cell_path_repeat1, - STATE(4505), 1, + STATE(4092), 1, sym_comment, - STATE(4747), 1, + STATE(4134), 1, + aux_sym_cell_path_repeat1, + STATE(4515), 1, sym_path, - ACTIONS(987), 6, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT2, - ACTIONS(989), 32, - anon_sym_COMMA, + ACTIONS(1008), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_command_token1, + ACTIONS(1006), 34, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -436856,31 +396729,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [100872] = 4, + anon_sym_DOT_DOT2, + [101360] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4506), 1, + STATE(4093), 1, sym_comment, - ACTIONS(3505), 9, + ACTIONS(3691), 9, anon_sym_DASH, + anon_sym__, anon_sym_DOT_DOT, - anon_sym_PLUS, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(3507), 32, + aux_sym_unquoted_token1, + ACTIONS(3693), 31, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -436906,29 +396777,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [100924] = 4, + [101411] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4507), 1, + STATE(4094), 1, sym_comment, - ACTIONS(936), 9, + ACTIONS(3699), 9, anon_sym_DASH, + anon_sym__, anon_sym_DOT_DOT, - anon_sym_PLUS, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(938), 32, + aux_sym_unquoted_token1, + ACTIONS(3701), 31, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -436954,30 +396824,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [100976] = 5, + [101462] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9113), 1, - anon_sym_COMMA, - STATE(4508), 1, + ACTIONS(8481), 1, + aux_sym__immediate_decimal_token2, + STATE(4095), 1, sym_comment, - ACTIONS(8426), 9, + ACTIONS(893), 14, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_PLUS, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(9111), 31, + aux_sym_unquoted_token5, + ACTIONS(895), 25, anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_LPAREN2, + 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_token1, + aux_sym__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, + [101515] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8651), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8653), 1, + aux_sym__immediate_decimal_token2, + STATE(4096), 1, + sym_comment, + ACTIONS(893), 10, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + ACTIONS(895), 28, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [101570] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8655), 1, + anon_sym_DOT, + STATE(4517), 1, + sym_path, + STATE(4097), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(985), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(987), 25, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [101625] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4098), 1, + sym_comment, + ACTIONS(2402), 9, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(2404), 31, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -437003,71 +397017,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [101030] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(979), 1, - anon_sym_DOT_DOT2, - ACTIONS(9115), 1, - anon_sym_DOT, - ACTIONS(9117), 1, - sym_filesize_unit, - ACTIONS(9119), 1, - sym_duration_unit, - ACTIONS(9121), 1, - aux_sym_unquoted_token5, - STATE(4509), 1, - sym_comment, - ACTIONS(983), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(961), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(959), 20, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [101093] = 7, + [101676] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9123), 1, + ACTIONS(8645), 1, anon_sym_DOT, - STATE(4510), 1, + STATE(4099), 1, sym_comment, - STATE(4654), 1, - sym_path, - STATE(4673), 1, + STATE(4161), 1, sym_cell_path, - ACTIONS(995), 12, + STATE(4229), 1, + sym_path, + ACTIONS(1002), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -437080,7 +397041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(997), 25, + ACTIONS(1004), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -437106,29 +397067,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [101150] = 4, + [101733] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(4511), 1, + ACTIONS(8658), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8660), 1, + aux_sym__immediate_decimal_token2, + STATE(4100), 1, sym_comment, - ACTIONS(4002), 3, + ACTIONS(2231), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(4000), 37, + ACTIONS(2229), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, - anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -437153,12 +397115,68 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [101201] = 4, + aux_sym_unquoted_token2, + [101788] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(4512), 1, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + ACTIONS(8314), 1, + aux_sym_unquoted_token5, + ACTIONS(8662), 1, + anon_sym_DOT_DOT2, + ACTIONS(8664), 1, + anon_sym_DOT, + ACTIONS(8668), 1, + sym_filesize_unit, + ACTIONS(8670), 1, + sym_duration_unit, + STATE(4101), 1, + sym_comment, + STATE(10079), 1, + sym__expr_parenthesized_immediate, + ACTIONS(8666), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(938), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(940), 20, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [101855] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4102), 1, sym_comment, - ACTIONS(3505), 9, + ACTIONS(3354), 9, anon_sym_DASH, anon_sym__, anon_sym_DOT_DOT, @@ -437168,7 +397186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(3507), 31, + ACTIONS(3356), 31, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -437200,19 +397218,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [101252] = 6, + [101906] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2845), 1, + ACTIONS(1008), 1, anon_sym_LF, - ACTIONS(2847), 1, - anon_sym_LPAREN2, - STATE(4513), 1, - sym_comment, - ACTIONS(2851), 2, + ACTIONS(8649), 1, anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(2843), 36, + STATE(4103), 1, + sym_comment, + STATE(4196), 1, + aux_sym_cell_path_repeat1, + STATE(4485), 1, + sym_path, + ACTIONS(1006), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -437249,12 +397268,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [101307] = 4, + [101963] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4514), 1, + STATE(4104), 1, sym_comment, - ACTIONS(4000), 9, + ACTIONS(3771), 9, anon_sym_DASH, anon_sym__, anon_sym_DOT_DOT, @@ -437264,7 +397283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(4002), 31, + ACTIONS(3773), 31, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -437296,108 +397315,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [101358] = 26, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2795), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2797), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2801), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4476), 1, - aux_sym_unquoted_token1, - ACTIONS(8452), 1, - sym_val_date, - ACTIONS(8605), 1, - anon_sym_LPAREN, - ACTIONS(8615), 1, - anon_sym_DQUOTE, - ACTIONS(8619), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(8621), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(9125), 1, - anon_sym_DOT_DOT, - ACTIONS(9129), 1, - anon_sym_DOT2, - STATE(2792), 1, - sym__inter_single_quotes, - STATE(2793), 1, - sym__str_double_quotes, - STATE(2797), 1, - sym__inter_double_quotes, - STATE(4515), 1, - sym_comment, - STATE(8255), 1, - sym__val_number_decimal, - STATE(10518), 1, - sym__val_range, - STATE(10861), 1, - sym_val_bool, - STATE(11180), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(2793), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(8617), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(9127), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(8613), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(1310), 4, - sym_expr_parenthesized, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(3910), 9, - anon_sym_null, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [101453] = 5, - ACTIONS(3), 1, + [102014] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9131), 1, + ACTIONS(8672), 1, + anon_sym_DOT, + ACTIONS(8675), 1, aux_sym__immediate_decimal_token2, - STATE(4516), 1, + STATE(4105), 1, sym_comment, - ACTIONS(917), 14, + ACTIONS(2358), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LPAREN2, + ACTIONS(2356), 35, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, + anon_sym_not, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token5, - ACTIONS(919), 25, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_LPAREN2, - 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -437405,36 +397354,40 @@ 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_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [101506] = 4, + aux_sym_unquoted_token2, + [102069] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(4517), 1, + ACTIONS(8677), 1, + aux_sym__immediate_decimal_token2, + STATE(4106), 1, sym_comment, - ACTIONS(3507), 2, + ACTIONS(2364), 4, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_LPAREN2, - ACTIONS(3505), 38, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2362), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, - anon_sym_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -437459,17 +397412,63 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - aux_sym_unquoted_token2, - [101557] = 7, + [102122] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4107), 1, + sym_comment, + ACTIONS(3711), 9, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(3713), 31, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__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, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + [102173] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9133), 1, + ACTIONS(8679), 1, anon_sym_DOT, - STATE(4518), 1, + STATE(4108), 1, sym_comment, - STATE(4620), 1, + STATE(4159), 1, aux_sym_cell_path_repeat1, - STATE(4838), 1, + STATE(4426), 1, sym_path, ACTIONS(1008), 3, anon_sym_LF, @@ -437477,10 +397476,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, ACTIONS(1006), 34, anon_sym_SEMI, + anon_sym_COLON, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -437510,19 +397509,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - [101614] = 6, + [102230] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4018), 1, + ACTIONS(3701), 1, anon_sym_LF, - ACTIONS(6147), 1, + ACTIONS(8681), 1, anon_sym_DOT_DOT2, - STATE(4519), 1, + STATE(4109), 1, sym_comment, - ACTIONS(6149), 2, + ACTIONS(8683), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(4016), 36, + ACTIONS(3699), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -437559,86 +397558,194 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [101669] = 4, - ACTIONS(3), 1, + [102285] = 7, + ACTIONS(113), 1, anon_sym_POUND, - STATE(4520), 1, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(8685), 1, + aux_sym__immediate_decimal_token1, + STATE(4110), 1, sym_comment, - ACTIONS(911), 15, + ACTIONS(3362), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(3576), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3574), 34, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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(909), 25, - sym_cmd_identifier, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [102342] = 10, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(922), 1, + aux_sym_command_token1, + ACTIONS(969), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(971), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(1391), 1, + anon_sym_DOT, + ACTIONS(1407), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8548), 1, + aux_sym_unquoted_token4, + STATE(4111), 1, + sym_comment, + STATE(10080), 1, + sym__immediate_decimal, + ACTIONS(920), 33, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token5, - [101720] = 5, - ACTIONS(3), 1, + anon_sym_LF2, + [102405] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9135), 1, - anon_sym_QMARK2, - STATE(4521), 1, + ACTIONS(3356), 1, + anon_sym_LF, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + STATE(4112), 1, sym_comment, - ACTIONS(1070), 7, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT2, + ACTIONS(3362), 2, anon_sym_DOT, - ACTIONS(1072), 32, - anon_sym_COMMA, + aux_sym_unquoted_token2, + ACTIONS(3354), 36, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [102460] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(8679), 1, + anon_sym_DOT, + STATE(4108), 1, + aux_sym_cell_path_repeat1, + STATE(4113), 1, + sym_comment, + STATE(4426), 1, + sym_path, + ACTIONS(1012), 3, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1010), 34, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -437652,36 +397759,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [101773] = 5, + anon_sym_DOT_DOT2, + [102517] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9135), 1, - anon_sym_QMARK2, - STATE(4522), 1, + ACTIONS(8645), 1, + anon_sym_DOT, + STATE(4114), 1, sym_comment, - ACTIONS(1070), 7, + STATE(4229), 1, + sym_path, + STATE(4599), 1, + sym_cell_path, + ACTIONS(1051), 12, + sym_identifier, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1072), 32, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1053), 25, + anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -437697,66 +397810,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [101826] = 6, - ACTIONS(113), 1, + [102574] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3868), 1, - anon_sym_LF, - ACTIONS(9137), 1, - anon_sym_DOT_DOT2, - STATE(4523), 1, + STATE(4115), 1, sym_comment, - ACTIONS(9139), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3866), 36, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(8687), 40, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_COMMA, + 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, + anon_sym_AT, + anon_sym_LBRACE, + [102623] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8421), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(8423), 1, + anon_sym_LPAREN2, + ACTIONS(8689), 1, + anon_sym_DOT, + ACTIONS(8691), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8693), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8695), 1, + aux_sym__immediate_decimal_token4, + STATE(4116), 1, + sym_comment, + STATE(5524), 1, + sym__var, + STATE(6176), 1, + sym__immediate_decimal, + STATE(6175), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(2207), 10, + anon_sym_LPAREN, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2209), 20, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_not, 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_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, - [101881] = 4, + [102692] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4524), 1, + STATE(4117), 1, sym_comment, - ACTIONS(3866), 9, + ACTIONS(3644), 9, anon_sym_DASH, anon_sym__, anon_sym_DOT_DOT, @@ -437766,7 +397927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(3868), 31, + ACTIONS(3646), 31, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -437798,39 +397959,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [101932] = 6, - ACTIONS(3), 1, + [102743] = 10, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9141), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9143), 1, - aux_sym__immediate_decimal_token2, - STATE(4525), 1, - sym_comment, - ACTIONS(909), 10, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(940), 1, + anon_sym_LF, + ACTIONS(3308), 1, + aux_sym_unquoted_token5, + ACTIONS(8697), 1, anon_sym_DOT_DOT2, + ACTIONS(8699), 1, anon_sym_DOT, + ACTIONS(8703), 1, sym_filesize_unit, - aux_sym_unquoted_token5, - ACTIONS(911), 28, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(8705), 1, + sym_duration_unit, + STATE(4118), 1, + sym_comment, + ACTIONS(8701), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(938), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -437844,38 +398012,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [101987] = 4, + [102806] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(4526), 1, + ACTIONS(8421), 1, + anon_sym_DOLLAR, + ACTIONS(8423), 1, + anon_sym_LPAREN2, + ACTIONS(8689), 1, + anon_sym_DOT, + ACTIONS(8691), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8693), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8695), 1, + aux_sym__immediate_decimal_token4, + STATE(4119), 1, sym_comment, - ACTIONS(9147), 9, + STATE(5524), 1, + sym__var, + STATE(6180), 1, + sym__immediate_decimal, + STATE(6177), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(2136), 10, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_PLUS, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, anon_sym_DOT2, + aux_sym__val_number_decimal_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(9145), 31, + ACTIONS(2138), 20, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_not, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -437886,74 +398066,22 @@ 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, - [102038] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(4527), 1, - sym_comment, - ACTIONS(911), 5, - ts_builtin_sym_end, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - aux_sym_command_token1, - ACTIONS(909), 35, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - [102089] = 6, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [102875] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1001), 1, + ACTIONS(1099), 1, anon_sym_LF, - ACTIONS(9149), 1, + ACTIONS(8649), 1, anon_sym_DOT, - STATE(4940), 1, - sym_path, - STATE(4528), 2, + STATE(4120), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(999), 36, + STATE(4152), 1, + sym_path, + STATE(4534), 1, + sym_cell_path, + ACTIONS(1097), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -437990,73 +398118,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [102144] = 10, + [102932] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9152), 1, + ACTIONS(3743), 1, + anon_sym_LF, + ACTIONS(8707), 1, anon_sym_DOT_DOT2, - ACTIONS(9154), 1, - anon_sym_DOT, - ACTIONS(9158), 1, - sym_filesize_unit, - ACTIONS(9160), 1, - sym_duration_unit, - ACTIONS(9162), 1, - aux_sym_unquoted_token5, - STATE(4529), 1, + STATE(4121), 1, sym_comment, - ACTIONS(961), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(9156), 2, + ACTIONS(8709), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(959), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [102207] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1188), 1, - anon_sym_LF, - ACTIONS(9164), 1, - anon_sym_DOT, - STATE(4530), 1, - sym_comment, - STATE(4656), 1, - sym_path, - STATE(5056), 1, - sym_cell_path, - ACTIONS(1186), 36, + ACTIONS(3741), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -438093,76 +398167,35 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [102264] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4531), 1, - sym_comment, - ACTIONS(952), 15, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(950), 25, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token5, - [102315] = 7, + [102987] = 11, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9166), 1, + ACTIONS(922), 1, + anon_sym_LF, + ACTIONS(926), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(928), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(1379), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8711), 1, anon_sym_DOT, - STATE(4532), 1, + ACTIONS(8713), 1, + aux_sym_unquoted_token3, + ACTIONS(8715), 1, + aux_sym_unquoted_token5, + STATE(4122), 1, sym_comment, - STATE(4543), 1, - sym_path, - STATE(5215), 1, - sym_cell_path, - ACTIONS(997), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - ACTIONS(995), 34, + STATE(8796), 1, + sym__immediate_decimal, + ACTIONS(920), 32, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -438188,40 +398221,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_LF2, - [102372] = 6, - ACTIONS(113), 1, + [103052] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9168), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9170), 1, - aux_sym__immediate_decimal_token2, - STATE(4533), 1, + STATE(4123), 1, sym_comment, - ACTIONS(2439), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2437), 36, - anon_sym_SEMI, + ACTIONS(3741), 9, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(3743), 31, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - anon_sym_DOT, + 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -438229,97 +398256,114 @@ 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, - aux_sym_unquoted_token2, - [102427] = 7, - ACTIONS(113), 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, + [103103] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2847), 1, + ACTIONS(8421), 1, + anon_sym_DOLLAR, + ACTIONS(8423), 1, anon_sym_LPAREN2, - ACTIONS(9172), 1, + ACTIONS(8689), 1, + anon_sym_DOT, + ACTIONS(8691), 1, aux_sym__immediate_decimal_token1, - STATE(4534), 1, + ACTIONS(8693), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8695), 1, + aux_sym__immediate_decimal_token4, + STATE(4124), 1, sym_comment, - ACTIONS(2851), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(3750), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3748), 34, - anon_sym_SEMI, - anon_sym_LBRACK, + STATE(5524), 1, + sym__var, + STATE(6188), 1, + sym__immediate_decimal, + STATE(6185), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(2146), 10, anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2148), 20, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_not, 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_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, - [102484] = 5, - ACTIONS(113), 1, + [103172] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9174), 1, - aux_sym__immediate_decimal_token2, - STATE(4535), 1, + ACTIONS(8645), 1, + anon_sym_DOT, + STATE(4125), 1, sym_comment, - ACTIONS(925), 5, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - ACTIONS(923), 34, - anon_sym_SEMI, - anon_sym_PIPE, + STATE(4229), 1, + sym_path, + STATE(4782), 1, + sym_cell_path, + ACTIONS(1097), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1099), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -438330,49 +398374,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - [102537] = 7, - ACTIONS(113), 1, + [103229] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9133), 1, - anon_sym_DOT, - STATE(4518), 1, - aux_sym_cell_path_repeat1, - STATE(4536), 1, + STATE(4126), 1, sym_comment, - STATE(4838), 1, - sym_path, - ACTIONS(989), 3, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(987), 34, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1033), 7, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1035), 33, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_EQ_GT, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -438386,20 +398419,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - [102594] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [103280] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(2358), 1, + anon_sym_LF, + ACTIONS(8717), 1, + aux_sym__immediate_decimal_token2, + STATE(4127), 1, + sym_comment, + ACTIONS(2356), 38, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + anon_sym_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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + aux_sym_unquoted_token2, + [103333] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3951), 1, + ACTIONS(2231), 1, anon_sym_LF, - ACTIONS(9176), 1, - anon_sym_DOT_DOT2, - STATE(4537), 1, + ACTIONS(8531), 1, + aux_sym__immediate_decimal_token2, + STATE(4128), 1, sym_comment, - ACTIONS(9178), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3949), 36, + ACTIONS(2229), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -438412,6 +398491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -438436,24 +398516,31 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [102649] = 4, + aux_sym_unquoted_token2, + [103386] = 7, ACTIONS(113), 1, anon_sym_POUND, - STATE(4538), 1, + ACTIONS(8647), 1, + anon_sym_DOT, + STATE(4092), 1, + aux_sym_cell_path_repeat1, + STATE(4129), 1, sym_comment, - ACTIONS(919), 5, - ts_builtin_sym_end, + STATE(4515), 1, + sym_path, + ACTIONS(1012), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, aux_sym_command_token1, - ACTIONS(917), 35, + ACTIONS(1010), 34, anon_sym_SEMI, anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -438480,29 +398567,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - [102700] = 5, + [103443] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9180), 1, + ACTIONS(2364), 1, + anon_sym_LF, + ACTIONS(8719), 1, aux_sym__immediate_decimal_token2, - STATE(4539), 1, + STATE(4130), 1, sym_comment, - ACTIONS(2583), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_LPAREN2, - ACTIONS(2581), 36, + ACTIONS(2362), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, anon_sym_DOT, @@ -438531,19 +398615,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, aux_sym_unquoted_token2, - [102753] = 6, + [103496] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3966), 1, - anon_sym_LF, - ACTIONS(9182), 1, - anon_sym_DOT_DOT2, - STATE(4540), 1, + STATE(4131), 1, sym_comment, - ACTIONS(9184), 2, + ACTIONS(3723), 3, + anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(3964), 36, + ACTIONS(3721), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -438556,6 +398637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -438580,96 +398662,94 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [102808] = 7, - ACTIONS(113), 1, + [103547] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9186), 1, + ACTIONS(2555), 1, + anon_sym_DOLLAR, + ACTIONS(8173), 1, + anon_sym_LPAREN2, + ACTIONS(8721), 1, anon_sym_DOT, - STATE(4541), 1, + ACTIONS(8723), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8725), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8727), 1, + aux_sym__immediate_decimal_token4, + STATE(4132), 1, sym_comment, - STATE(4641), 1, - sym_path, - STATE(4965), 1, - sym_cell_path, - ACTIONS(997), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - ACTIONS(995), 34, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + STATE(4600), 1, + sym__var, + STATE(5310), 1, + sym__immediate_decimal, + STATE(5309), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(2169), 10, + anon_sym_LPAREN, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2171), 20, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_not, + 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_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [103616] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4133), 1, + sym_comment, + ACTIONS(1020), 7, + anon_sym_GT, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - [102865] = 10, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(979), 1, anon_sym_DOT_DOT2, - ACTIONS(9188), 1, anon_sym_DOT, - ACTIONS(9190), 1, - sym_filesize_unit, - ACTIONS(9192), 1, - sym_duration_unit, - ACTIONS(9194), 1, - aux_sym_unquoted_token5, - STATE(4542), 1, - sym_comment, - ACTIONS(961), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(983), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(959), 31, - anon_sym_SEMI, - anon_sym_LF, + ACTIONS(1022), 33, + anon_sym_COMMA, anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -438683,22 +398763,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [102928] = 7, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [103667] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9166), 1, + ACTIONS(8729), 1, anon_sym_DOT, - STATE(4543), 1, + STATE(4515), 1, + sym_path, + STATE(4134), 2, sym_comment, - STATE(4611), 1, aux_sym_cell_path_repeat1, - STATE(4870), 1, - sym_path, - ACTIONS(989), 3, + ACTIONS(987), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, aux_sym_command_token1, - ACTIONS(987), 34, + ACTIONS(985), 34, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -438706,6 +398787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -438732,164 +398814,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - anon_sym_LF2, - [102985] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4544), 1, - sym_comment, - ACTIONS(3949), 9, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(3951), 31, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__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, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [103036] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4545), 1, - sym_comment, - ACTIONS(3964), 9, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(3966), 31, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__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, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [103087] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(9017), 1, - aux_sym__immediate_decimal_token2, - STATE(4546), 1, - sym_comment, - ACTIONS(2439), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_LPAREN2, - ACTIONS(2437), 36, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - anon_sym_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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - aux_sym_unquoted_token2, - [103140] = 5, + [103722] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8932), 1, - aux_sym__immediate_decimal_token2, - STATE(4547), 1, + STATE(4135), 1, sym_comment, - ACTIONS(911), 5, + ACTIONS(895), 5, ts_builtin_sym_end, - anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - ACTIONS(909), 34, + aux_sym_command_token1, + ACTIONS(893), 35, anon_sym_SEMI, + anon_sym_LF, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, @@ -438923,124 +398861,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, sym_filesize_unit, aux_sym_unquoted_token5, - [103193] = 4, - ACTIONS(113), 1, + [103773] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4548), 1, + ACTIONS(8732), 1, + aux_sym__immediate_decimal_token2, + STATE(4136), 1, sym_comment, - ACTIONS(1174), 3, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1172), 37, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(901), 14, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_not, anon_sym_DOT_DOT2, + anon_sym_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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [103244] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4549), 1, - sym_comment, - ACTIONS(4043), 9, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(4045), 31, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__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, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [103295] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4550), 1, - sym_comment, - ACTIONS(1194), 9, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1196), 31, + aux_sym_unquoted_token5, + ACTIONS(903), 25, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_not, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -439052,32 +398901,28 @@ 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, 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, - [103346] = 6, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [103826] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3876), 1, - anon_sym_LF, - ACTIONS(3878), 1, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + ACTIONS(3727), 1, anon_sym_LPAREN2, - STATE(4551), 1, + ACTIONS(8734), 1, + aux_sym_command_token1, + STATE(4137), 1, sym_comment, - ACTIONS(2006), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(3874), 36, + ACTIONS(3725), 37, anon_sym_SEMI, + anon_sym_LF, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_RPAREN, @@ -439113,18 +398958,18 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [103401] = 7, + [103881] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9123), 1, + ACTIONS(8645), 1, anon_sym_DOT, - STATE(4552), 1, + STATE(4138), 1, sym_comment, - STATE(4654), 1, + STATE(4229), 1, sym_path, - STATE(5009), 1, + STATE(4615), 1, sym_cell_path, - ACTIONS(1148), 12, + ACTIONS(1093), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -439137,7 +398982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1150), 25, + ACTIONS(1095), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -439163,29 +399008,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [103458] = 5, + [103938] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9196), 1, - aux_sym__immediate_decimal_token2, - STATE(4553), 1, + ACTIONS(8736), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8738), 1, + aux_sym_unquoted_token2, + STATE(4139), 1, sym_comment, - ACTIONS(2549), 3, - ts_builtin_sym_end, + ACTIONS(922), 2, anon_sym_LF, anon_sym_LPAREN2, - ACTIONS(2547), 36, + ACTIONS(920), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -439210,97 +399057,46 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - aux_sym_unquoted_token2, - [103511] = 7, - ACTIONS(113), 1, + [103993] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9198), 1, + ACTIONS(8645), 1, anon_sym_DOT, - STATE(4554), 1, + STATE(4140), 1, sym_comment, - STATE(4608), 1, - aux_sym_cell_path_repeat1, - STATE(4828), 1, + STATE(4178), 1, + sym_cell_path, + STATE(4229), 1, sym_path, - ACTIONS(1008), 3, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1006), 34, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(992), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - [103568] = 10, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_LF, - ACTIONS(979), 1, - anon_sym_DOT_DOT2, - ACTIONS(9200), 1, - anon_sym_DOT, - ACTIONS(9202), 1, - sym_filesize_unit, - ACTIONS(9204), 1, - sym_duration_unit, - ACTIONS(9206), 1, - aux_sym_unquoted_token5, - STATE(4555), 1, - sym_comment, - ACTIONS(983), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(959), 32, - anon_sym_SEMI, + ACTIONS(994), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -439311,85 +399107,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [103631] = 5, + [104050] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9208), 1, - aux_sym__immediate_decimal_token2, - STATE(4556), 1, - sym_comment, - ACTIONS(919), 5, - ts_builtin_sym_end, + ACTIONS(1103), 1, anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - ACTIONS(917), 34, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, + ACTIONS(8649), 1, anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - [103684] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4557), 1, + STATE(4141), 1, sym_comment, - ACTIONS(9212), 9, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(9210), 31, + STATE(4152), 1, + sym_path, + STATE(4535), 1, + sym_cell_path, + ACTIONS(1101), 36, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -439397,31 +399148,29 @@ 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, - [103735] = 6, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [104107] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4045), 1, + ACTIONS(1095), 1, anon_sym_LF, - ACTIONS(9214), 1, - anon_sym_DOT_DOT2, - STATE(4558), 1, + ACTIONS(8649), 1, + anon_sym_DOT, + STATE(4142), 1, sym_comment, - ACTIONS(9216), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(4043), 36, + STATE(4152), 1, + sym_path, + STATE(4696), 1, + sym_cell_path, + ACTIONS(1093), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -439458,65 +399207,16 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [103790] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(9218), 1, - anon_sym_DOT, - STATE(4842), 1, - sym_path, - STATE(4559), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1001), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - ACTIONS(999), 34, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - [103845] = 4, + [104164] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(4560), 1, + STATE(4143), 1, sym_comment, - ACTIONS(2439), 3, + ACTIONS(2231), 3, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2437), 37, + ACTIONS(2229), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -439554,16 +399254,16 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [103896] = 4, + [104215] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(4561), 1, + STATE(4144), 1, sym_comment, - ACTIONS(2549), 3, + ACTIONS(2364), 3, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2547), 37, + ACTIONS(2362), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -439601,12 +399301,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [103947] = 4, + [104266] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4562), 1, + STATE(4145), 1, sym_comment, - ACTIONS(3960), 9, + ACTIONS(4955), 9, anon_sym_DASH, anon_sym__, anon_sym_DOT_DOT, @@ -439616,7 +399316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(3962), 31, + ACTIONS(4957), 31, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -439648,12 +399348,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [103998] = 4, + [104317] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4563), 1, + STATE(4146), 1, sym_comment, - ACTIONS(9223), 9, + ACTIONS(4959), 9, anon_sym_DASH, anon_sym__, anon_sym_DOT_DOT, @@ -439663,7 +399363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(9221), 31, + ACTIONS(4961), 31, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -439695,24 +399395,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [104049] = 6, - ACTIONS(113), 1, + [104368] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4147), 1, + sym_comment, + ACTIONS(4963), 9, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(4965), 31, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__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, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + [104419] = 10, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9225), 1, + ACTIONS(967), 1, anon_sym_DOT, - STATE(4870), 1, - sym_path, - STATE(4564), 2, + ACTIONS(969), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(1407), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(1409), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8013), 1, + aux_sym_unquoted_token4, + STATE(4148), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1001), 3, + STATE(10080), 1, + sym__immediate_decimal, + ACTIONS(920), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(922), 22, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [104482] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(4149), 1, + sym_comment, + ACTIONS(2404), 3, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2402), 37, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [104533] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(4150), 1, + sym_comment, + ACTIONS(936), 5, + ts_builtin_sym_end, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_duration_unit, aux_sym_command_token1, - ACTIONS(999), 34, + ACTIONS(934), 35, anon_sym_SEMI, anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, @@ -439743,19 +399586,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - anon_sym_LF2, - [104104] = 6, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + [104584] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2583), 1, + ACTIONS(3713), 1, anon_sym_LF, - ACTIONS(9228), 1, - anon_sym_DOT, - ACTIONS(9231), 1, - aux_sym__immediate_decimal_token2, - STATE(4565), 1, + ACTIONS(8740), 1, + anon_sym_DOT_DOT2, + STATE(4151), 1, sym_comment, - ACTIONS(2581), 37, + ACTIONS(8742), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3711), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -439792,35 +399638,40 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - aux_sym_unquoted_token2, - [104159] = 4, - ACTIONS(3), 1, + [104639] = 7, + ACTIONS(113), 1, anon_sym_POUND, - STATE(4566), 1, + ACTIONS(1012), 1, + anon_sym_LF, + ACTIONS(8649), 1, + anon_sym_DOT, + STATE(4103), 1, + aux_sym_cell_path_repeat1, + STATE(4152), 1, sym_comment, - ACTIONS(5187), 9, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(5189), 31, + STATE(4485), 1, + sym_path, + ACTIONS(1010), 36, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -439828,47 +399679,106 @@ 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, - [104210] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [104696] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4567), 1, + STATE(4153), 1, + sym_comment, + ACTIONS(903), 15, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(901), 25, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + [104747] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8421), 1, + anon_sym_DOLLAR, + ACTIONS(8423), 1, + anon_sym_LPAREN2, + ACTIONS(8689), 1, + anon_sym_DOT, + ACTIONS(8691), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8693), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8695), 1, + aux_sym__immediate_decimal_token4, + STATE(4154), 1, sym_comment, - ACTIONS(5191), 9, + STATE(5524), 1, + sym__var, + STATE(6038), 1, + sym__immediate_decimal, + STATE(6036), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(2169), 10, + anon_sym_LPAREN, anon_sym_DASH, - anon_sym__, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, anon_sym_DOT2, + aux_sym__val_number_decimal_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(5193), 31, + ACTIONS(2171), 20, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_not, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -439879,38 +399789,38 @@ 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, - [104261] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [104816] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4568), 1, + ACTIONS(8744), 1, + anon_sym_DOT, + ACTIONS(8747), 1, + aux_sym__immediate_decimal_token2, + STATE(4155), 1, sym_comment, - ACTIONS(5195), 9, + ACTIONS(911), 13, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym__, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(5197), 31, + aux_sym_unquoted_token5, + ACTIONS(913), 25, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_not, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -439922,36 +399832,86 @@ 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, 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, - [104312] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [104871] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8749), 1, + anon_sym_QMARK2, + STATE(4156), 1, + sym_comment, + ACTIONS(1024), 7, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1026), 32, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [104924] = 7, ACTIONS(113), 1, anon_sym_POUND, - STATE(4569), 1, + ACTIONS(8751), 1, + anon_sym_DOT, + STATE(4157), 1, sym_comment, - ACTIONS(952), 5, - ts_builtin_sym_end, + STATE(4235), 1, + aux_sym_cell_path_repeat1, + STATE(4522), 1, + sym_path, + ACTIONS(1008), 3, + anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - aux_sym_command_token1, - ACTIONS(950), 35, + ACTIONS(1006), 34, anon_sym_SEMI, - anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -439978,39 +399938,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - [104363] = 4, + [104981] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4570), 1, + ACTIONS(8749), 1, + anon_sym_QMARK2, + STATE(4158), 1, sym_comment, - ACTIONS(1168), 13, - sym_identifier, + ACTIONS(1024), 7, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_DOT_DOT2, - ACTIONS(1170), 27, - anon_sym_COLON, + anon_sym_DOT, + ACTIONS(1026), 32, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -440026,116 +399981,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [104414] = 5, + [105034] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8976), 1, - aux_sym__immediate_decimal_token2, - STATE(4571), 1, + ACTIONS(8753), 1, + anon_sym_DOT, + STATE(4426), 1, + sym_path, + STATE(4159), 2, sym_comment, - ACTIONS(2583), 4, - ts_builtin_sym_end, + aux_sym_cell_path_repeat1, + ACTIONS(987), 3, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2581), 35, + ACTIONS(985), 34, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_GT, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [104467] = 26, + [105089] = 26, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2795), 1, + ACTIONS(3116), 1, aux_sym__val_number_decimal_token1, - ACTIONS(2797), 1, + ACTIONS(3118), 1, aux_sym__val_number_decimal_token2, - ACTIONS(2801), 1, + ACTIONS(3122), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4611), 1, + ACTIONS(3938), 1, aux_sym_unquoted_token1, - ACTIONS(8442), 1, - anon_sym_LPAREN, - ACTIONS(8452), 1, + ACTIONS(7909), 1, sym_val_date, - ACTIONS(8454), 1, + ACTIONS(8123), 1, + anon_sym_LPAREN, + ACTIONS(8135), 1, anon_sym_DQUOTE, - ACTIONS(8458), 1, + ACTIONS(8139), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(8460), 1, + ACTIONS(8141), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(9047), 1, + ACTIONS(8756), 1, anon_sym_DOT_DOT, - ACTIONS(9051), 1, + ACTIONS(8760), 1, anon_sym_DOT2, - STATE(2589), 1, - sym__inter_single_quotes, - STATE(2590), 1, - sym__inter_double_quotes, - STATE(2627), 1, + STATE(2294), 1, sym__str_double_quotes, - STATE(4572), 1, + STATE(2369), 1, + sym__inter_double_quotes, + STATE(2370), 1, + sym__inter_single_quotes, + STATE(4160), 1, sym_comment, - STATE(8428), 1, + STATE(8052), 1, sym__val_number_decimal, - STATE(10559), 1, + STATE(10155), 1, sym__val_range, - STATE(10861), 1, - sym_val_bool, - STATE(11114), 1, + STATE(10439), 1, sym__unquoted_anonymous_prefix, - ACTIONS(2793), 2, + STATE(10641), 1, + sym_val_bool, + ACTIONS(3114), 2, anon_sym_true, anon_sym_false, - ACTIONS(8456), 2, + ACTIONS(8137), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(9049), 2, + ACTIONS(8758), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(8450), 3, + ACTIONS(8133), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1230), 4, + STATE(1052), 4, sym_expr_parenthesized, sym_val_string, sym_val_interpolated, sym_unquoted, - ACTIONS(3910), 9, + ACTIONS(3685), 9, anon_sym_null, anon_sym_err_GT, anon_sym_out_GT, @@ -440145,19 +400104,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [104562] = 6, + [105184] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4161), 1, + sym_comment, + ACTIONS(1061), 13, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + ACTIONS(1063), 27, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [105235] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3750), 1, + ACTIONS(1004), 1, anon_sym_LF, - ACTIONS(9233), 1, - aux_sym__immediate_decimal_token1, - STATE(4573), 1, - sym_comment, - ACTIONS(2851), 2, + ACTIONS(8649), 1, anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(3748), 36, + STATE(4152), 1, + sym_path, + STATE(4162), 1, + sym_comment, + STATE(4777), 1, + sym_cell_path, + ACTIONS(1002), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -440194,29 +400201,31 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [104617] = 6, + [105292] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9235), 1, + ACTIONS(8751), 1, anon_sym_DOT, - ACTIONS(9238), 1, - aux_sym__immediate_decimal_token2, - STATE(4574), 1, + STATE(4163), 1, sym_comment, - ACTIONS(925), 5, - ts_builtin_sym_end, + STATE(4174), 1, + sym_path, + STATE(4636), 1, + sym_cell_path, + ACTIONS(994), 3, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - ACTIONS(923), 33, + ACTIONS(992), 34, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -440242,100 +400251,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - sym_filesize_unit, - [104672] = 26, - ACTIONS(3), 1, + [105349] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2795), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2797), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2801), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4611), 1, - aux_sym_unquoted_token1, - ACTIONS(8442), 1, + STATE(4164), 1, + sym_comment, + ACTIONS(2231), 2, + anon_sym_LF, + anon_sym_LPAREN2, + ACTIONS(2229), 38, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_LPAREN, - ACTIONS(8452), 1, - sym_val_date, - ACTIONS(8454), 1, - anon_sym_DQUOTE, - ACTIONS(8458), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(8460), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(9047), 1, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, - ACTIONS(9051), 1, - anon_sym_DOT2, - STATE(2589), 1, - sym__inter_single_quotes, - STATE(2590), 1, - sym__inter_double_quotes, - STATE(2627), 1, - sym__str_double_quotes, - STATE(4575), 1, - sym_comment, - STATE(8428), 1, - sym__val_number_decimal, - STATE(10559), 1, - sym__val_range, - STATE(10861), 1, - sym_val_bool, - STATE(11114), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(2793), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(8456), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(9049), 2, + anon_sym_not, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(8450), 3, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1272), 4, - sym_expr_parenthesized, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(3910), 9, - anon_sym_null, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [104767] = 7, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + aux_sym_unquoted_token2, + [105400] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9198), 1, + ACTIONS(8762), 1, anon_sym_DOT, - STATE(4554), 1, - aux_sym_cell_path_repeat1, - STATE(4576), 1, + ACTIONS(8765), 1, + aux_sym__immediate_decimal_token2, + STATE(4165), 1, sym_comment, - STATE(4828), 1, - sym_path, - ACTIONS(989), 3, + ACTIONS(913), 5, + ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(987), 34, + sym_duration_unit, + ACTIONS(911), 33, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -440362,18 +400345,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - [104824] = 7, + sym_filesize_unit, + aux_sym_unquoted_token5, + [105455] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9123), 1, - anon_sym_DOT, - STATE(4577), 1, + ACTIONS(8767), 1, + anon_sym_DOT_DOT2, + STATE(4166), 1, sym_comment, - STATE(4654), 1, - sym_path, - STATE(5021), 1, - sym_cell_path, - ACTIONS(1179), 12, + ACTIONS(8769), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1089), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -440386,7 +400370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1181), 25, + ACTIONS(1091), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -440412,16 +400396,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [104881] = 4, + [105510] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(4578), 1, + STATE(4167), 1, sym_comment, - ACTIONS(3507), 3, + ACTIONS(2404), 2, anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3505), 37, + anon_sym_LPAREN2, + ACTIONS(2402), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -440434,7 +400417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, - anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -440459,61 +400442,66 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [104932] = 6, - ACTIONS(113), 1, + aux_sym_unquoted_token2, + [105561] = 10, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9180), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(9240), 1, + ACTIONS(961), 1, + anon_sym_DOT_DOT2, + ACTIONS(8771), 1, anon_sym_DOT, - STATE(4579), 1, + ACTIONS(8773), 1, + sym_filesize_unit, + ACTIONS(8775), 1, + sym_duration_unit, + ACTIONS(8777), 1, + aux_sym_unquoted_token5, + STATE(4168), 1, sym_comment, - ACTIONS(2583), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_LPAREN2, - ACTIONS(2581), 35, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, + ACTIONS(965), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(940), 13, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - aux_sym_unquoted_token2, - [104987] = 4, + ACTIONS(938), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [105624] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4580), 1, + STATE(4169), 1, sym_comment, - ACTIONS(5215), 9, + ACTIONS(1072), 9, anon_sym_DASH, anon_sym__, anon_sym_DOT_DOT, @@ -440523,7 +400511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(5217), 31, + ACTIONS(1074), 31, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -440555,34 +400543,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [105038] = 4, - ACTIONS(3), 1, + [105675] = 5, + ACTIONS(113), 1, anon_sym_POUND, - STATE(4581), 1, + ACTIONS(8574), 1, + aux_sym__immediate_decimal_token2, + STATE(4170), 1, sym_comment, - ACTIONS(5219), 9, + ACTIONS(895), 5, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + ACTIONS(893), 34, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(5221), 31, + anon_sym_in, + anon_sym_STAR, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + [105728] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(8399), 1, + aux_sym__immediate_decimal_token2, + STATE(4171), 1, + sym_comment, + ACTIONS(2231), 4, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2229), 35, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -440590,24 +400630,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, - [105089] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [105781] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4582), 1, + STATE(4172), 1, sym_comment, - ACTIONS(5223), 9, + ACTIONS(3312), 9, anon_sym_DASH, anon_sym__, anon_sym_DOT_DOT, @@ -440617,7 +400654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(5225), 31, + ACTIONS(3314), 31, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -440649,28 +400686,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [105140] = 4, + [105832] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4583), 1, + STATE(4173), 1, sym_comment, - ACTIONS(5227), 9, + ACTIONS(8781), 9, anon_sym_DASH, - anon_sym__, anon_sym_DOT_DOT, + anon_sym_PLUS, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(5229), 31, + aux_sym__unquoted_in_list_token1, + ACTIONS(8779), 31, anon_sym_LBRACK, - anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -440696,34 +400733,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [105191] = 4, + [105883] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(8751), 1, + anon_sym_DOT, + STATE(4157), 1, + aux_sym_cell_path_repeat1, + STATE(4174), 1, + sym_comment, + STATE(4522), 1, + sym_path, + ACTIONS(1012), 3, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1010), 34, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + [105940] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4584), 1, + STATE(4175), 1, + sym_comment, + ACTIONS(936), 15, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(934), 25, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + [105991] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8747), 1, + aux_sym__immediate_decimal_token2, + STATE(4176), 1, sym_comment, - ACTIONS(5231), 9, + ACTIONS(911), 14, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym__, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(5233), 31, + aux_sym_unquoted_token5, + ACTIONS(913), 25, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_LPAREN2, + 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_token1, + aux_sym__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, + [106044] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(3576), 1, + anon_sym_LF, + ACTIONS(8783), 1, + aux_sym__immediate_decimal_token1, + STATE(4177), 1, + sym_comment, + ACTIONS(3362), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(3574), 36, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -440731,40 +400918,84 @@ 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, - [105242] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [106099] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4585), 1, + STATE(4178), 1, sym_comment, - ACTIONS(5235), 9, + ACTIONS(1068), 13, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + ACTIONS(1070), 27, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [106150] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4179), 1, + sym_comment, + ACTIONS(8787), 9, anon_sym_DASH, - anon_sym__, anon_sym_DOT_DOT, + anon_sym_PLUS, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(5237), 31, + aux_sym__unquoted_in_list_token1, + ACTIONS(8785), 31, anon_sym_LBRACK, - anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -440790,34 +401021,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [105293] = 4, - ACTIONS(3), 1, + [106201] = 10, + ACTIONS(113), 1, anon_sym_POUND, - STATE(4586), 1, + ACTIONS(8789), 1, + anon_sym_DOT_DOT2, + ACTIONS(8791), 1, + anon_sym_DOT, + ACTIONS(8795), 1, + sym_filesize_unit, + ACTIONS(8797), 1, + sym_duration_unit, + ACTIONS(8799), 1, + aux_sym_unquoted_token5, + STATE(4180), 1, sym_comment, - ACTIONS(5239), 9, + ACTIONS(940), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(8793), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(938), 31, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(5241), 31, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [106264] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(4181), 1, + sym_comment, + ACTIONS(1049), 4, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1047), 36, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + anon_sym_DOT_DOT2, + anon_sym_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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -440825,41 +401112,38 @@ 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, - [105344] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [106315] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(4587), 1, + ACTIONS(8675), 1, + aux_sym__immediate_decimal_token2, + STATE(4182), 1, sym_comment, - ACTIONS(3962), 3, + ACTIONS(2358), 3, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3960), 37, + anon_sym_LPAREN2, + ACTIONS(2356), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, - anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -440884,38 +401168,41 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [105395] = 4, - ACTIONS(3), 1, + aux_sym_unquoted_token2, + [106368] = 6, + ACTIONS(113), 1, anon_sym_POUND, - STATE(4588), 1, - sym_comment, - ACTIONS(1063), 7, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT2, + ACTIONS(8801), 1, anon_sym_DOT, - ACTIONS(1065), 33, - anon_sym_COMMA, + ACTIONS(8804), 1, + aux_sym__immediate_decimal_token2, + STATE(4183), 1, + sym_comment, + ACTIONS(913), 5, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + ACTIONS(911), 33, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -440929,22 +401216,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [105446] = 7, + anon_sym_DOT_DOT2, + sym_filesize_unit, + [106423] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1181), 1, + ACTIONS(3314), 1, anon_sym_LF, - ACTIONS(9164), 1, + ACTIONS(3316), 1, + anon_sym_LPAREN2, + STATE(4184), 1, + sym_comment, + ACTIONS(1844), 2, anon_sym_DOT, - STATE(4589), 1, + aux_sym_unquoted_token2, + ACTIONS(3312), 36, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [106478] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(2358), 1, + anon_sym_LF, + ACTIONS(8717), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(8806), 1, + anon_sym_DOT, + STATE(4185), 1, sym_comment, - STATE(4656), 1, - sym_path, - STATE(5218), 1, - sym_cell_path, - ACTIONS(1179), 36, + ACTIONS(2356), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -440981,26 +401315,139 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [105503] = 10, + aux_sym_unquoted_token2, + [106533] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4186), 1, + sym_comment, + ACTIONS(1061), 9, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1063), 31, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__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, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + [106584] = 26, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3116), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3118), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3122), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3938), 1, + aux_sym_unquoted_token1, + ACTIONS(7909), 1, + sym_val_date, + ACTIONS(8123), 1, + anon_sym_LPAREN, + ACTIONS(8135), 1, + anon_sym_DQUOTE, + ACTIONS(8139), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(8141), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(8756), 1, + anon_sym_DOT_DOT, + ACTIONS(8760), 1, + anon_sym_DOT2, + STATE(2294), 1, + sym__str_double_quotes, + STATE(2369), 1, + sym__inter_double_quotes, + STATE(2370), 1, + sym__inter_single_quotes, + STATE(4187), 1, + sym_comment, + STATE(8052), 1, + sym__val_number_decimal, + STATE(10155), 1, + sym__val_range, + STATE(10439), 1, + sym__unquoted_anonymous_prefix, + STATE(10641), 1, + sym_val_bool, + ACTIONS(3114), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(8137), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(8758), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(8133), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(1051), 4, + sym_expr_parenthesized, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(3685), 9, + anon_sym_null, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + [106679] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(938), 1, - aux_sym_command_token1, - ACTIONS(1045), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(1047), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(1593), 1, + ACTIONS(8647), 1, anon_sym_DOT, - ACTIONS(1609), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9001), 1, - aux_sym_unquoted_token4, - STATE(4590), 1, + STATE(4129), 1, + sym_path, + STATE(4188), 1, sym_comment, - STATE(10460), 1, - sym__immediate_decimal, - ACTIONS(936), 33, + STATE(4554), 1, + sym_cell_path, + ACTIONS(1004), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_command_token1, + ACTIONS(1002), 34, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -441008,6 +401455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -441033,80 +401481,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LF2, - [105566] = 11, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + [106736] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(942), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(1582), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(1584), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9121), 1, - aux_sym_unquoted_token3, - ACTIONS(9243), 1, - anon_sym_DOT, - ACTIONS(9245), 1, - aux_sym_unquoted_token5, - STATE(4591), 1, + ACTIONS(8513), 1, + aux_sym__immediate_decimal_token2, + STATE(4189), 1, sym_comment, - STATE(9346), 1, - sym__immediate_decimal, - ACTIONS(938), 13, + ACTIONS(2358), 4, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2356), 35, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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(936), 20, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [105631] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [106789] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(4592), 1, + ACTIONS(8804), 1, + aux_sym__immediate_decimal_token2, + STATE(4190), 1, sym_comment, - ACTIONS(911), 4, + ACTIONS(913), 5, + ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - ACTIONS(909), 36, + ACTIONS(911), 34, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -441134,73 +401578,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, anon_sym_DOT, sym_filesize_unit, - aux_sym_unquoted_token5, - [105682] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9123), 1, - anon_sym_DOT, - STATE(4593), 1, - sym_comment, - STATE(4654), 1, - sym_path, - STATE(5058), 1, - sym_cell_path, - ACTIONS(1203), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1205), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [105739] = 7, + [106842] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9166), 1, + ACTIONS(8809), 1, anon_sym_DOT, - STATE(4543), 1, - sym_path, - STATE(4594), 1, + STATE(4191), 1, sym_comment, - STATE(4964), 1, + STATE(4222), 1, + sym_path, + STATE(4729), 1, sym_cell_path, - ACTIONS(1012), 3, + ACTIONS(994), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, aux_sym_command_token1, - ACTIONS(1010), 34, + ACTIONS(992), 34, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -441235,45 +401628,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT2, anon_sym_LF2, - [105796] = 4, + [106899] = 26, ACTIONS(3), 1, anon_sym_POUND, - STATE(4595), 1, - sym_comment, - ACTIONS(2547), 9, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT_DOT, + ACTIONS(3116), 1, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(3118), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3122), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4672), 1, aux_sym_unquoted_token1, - ACTIONS(2549), 31, - anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(7897), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, + ACTIONS(7909), 1, + sym_val_date, + ACTIONS(7911), 1, + anon_sym_DQUOTE, + ACTIONS(7915), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(7917), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(8437), 1, + anon_sym_DOT_DOT, + ACTIONS(8441), 1, + anon_sym_DOT2, + STATE(2117), 1, + sym__inter_single_quotes, + STATE(2128), 1, + sym__inter_double_quotes, + STATE(2196), 1, + sym__str_double_quotes, + STATE(4192), 1, + sym_comment, + STATE(8009), 1, + sym__val_number_decimal, + STATE(10050), 1, + sym__val_range, + STATE(10641), 1, + sym_val_bool, + STATE(10833), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3114), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, + ACTIONS(7913), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(8439), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(7907), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + STATE(948), 4, + sym_expr_parenthesized, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(3685), 9, + anon_sym_null, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -441282,27 +401697,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [105847] = 7, + [106994] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9186), 1, + ACTIONS(8751), 1, anon_sym_DOT, - STATE(4559), 1, - aux_sym_cell_path_repeat1, - STATE(4596), 1, - sym_comment, - STATE(4842), 1, + STATE(4174), 1, sym_path, - ACTIONS(1008), 3, + STATE(4193), 1, + sym_comment, + STATE(4623), 1, + sym_cell_path, + ACTIONS(1004), 3, + anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - ACTIONS(1006), 34, + ACTIONS(1002), 34, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -441332,119 +401747,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - [105904] = 4, + [107051] = 26, ACTIONS(3), 1, anon_sym_POUND, - STATE(4597), 1, - sym_comment, - ACTIONS(919), 15, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(3116), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3118), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3122), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4672), 1, + aux_sym_unquoted_token1, + ACTIONS(7897), 1, + anon_sym_LPAREN, + ACTIONS(7909), 1, + sym_val_date, + ACTIONS(7911), 1, anon_sym_DQUOTE, + ACTIONS(7915), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(7917), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(8437), 1, + anon_sym_DOT_DOT, + ACTIONS(8441), 1, + anon_sym_DOT2, + STATE(2117), 1, + sym__inter_single_quotes, + STATE(2128), 1, + sym__inter_double_quotes, + STATE(2196), 1, + sym__str_double_quotes, + STATE(4194), 1, + sym_comment, + STATE(8009), 1, + sym__val_number_decimal, + STATE(10050), 1, + sym__val_range, + STATE(10641), 1, + sym_val_bool, + STATE(10833), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3114), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(7913), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(917), 25, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token5, - [105955] = 10, - ACTIONS(3), 1, + ACTIONS(8439), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(7907), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(972), 4, + sym_expr_parenthesized, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(3685), 9, + anon_sym_null, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + [107146] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1043), 1, - anon_sym_DOT, - ACTIONS(1045), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(1609), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(1611), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8570), 1, - aux_sym_unquoted_token4, - STATE(4598), 1, + ACTIONS(8595), 1, + aux_sym__immediate_decimal_token2, + STATE(4195), 1, sym_comment, - STATE(10460), 1, - sym__immediate_decimal, - ACTIONS(936), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(938), 22, - anon_sym_COMMA, + ACTIONS(2231), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LPAREN2, + ACTIONS(2229), 36, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [106018] = 6, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + anon_sym_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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + aux_sym_unquoted_token2, + [107199] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4008), 1, + ACTIONS(987), 1, anon_sym_LF, - ACTIONS(4010), 1, - anon_sym_LPAREN2, - STATE(4599), 1, - sym_comment, - ACTIONS(4012), 2, + ACTIONS(8811), 1, anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(4006), 36, + STATE(4485), 1, + sym_path, + STATE(4196), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(985), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -441481,25 +401913,25 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [106073] = 10, + [107254] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9117), 1, + ACTIONS(8773), 1, sym_filesize_unit, - ACTIONS(9119), 1, + ACTIONS(8775), 1, sym_duration_unit, - ACTIONS(9247), 1, + ACTIONS(8814), 1, anon_sym_DOT_DOT2, - ACTIONS(9249), 1, + ACTIONS(8816), 1, anon_sym_DOT, - ACTIONS(9253), 1, + ACTIONS(8820), 1, aux_sym_unquoted_token5, - STATE(4600), 1, + STATE(4197), 1, sym_comment, - ACTIONS(9251), 2, + ACTIONS(8818), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(961), 13, + ACTIONS(940), 13, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -441513,7 +401945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(959), 20, + ACTIONS(938), 20, sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, @@ -441534,62 +401966,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [106136] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9123), 1, - anon_sym_DOT, - STATE(4601), 1, - sym_comment, - STATE(4647), 1, - aux_sym_cell_path_repeat1, - STATE(4826), 1, - sym_path, - ACTIONS(1006), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1008), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [106193] = 4, + [107317] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4602), 1, + STATE(4198), 1, sym_comment, - ACTIONS(3518), 9, + ACTIONS(8824), 9, anon_sym_DASH, anon_sym__, anon_sym_DOT_DOT, @@ -441599,7 +401981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(3520), 31, + ACTIONS(8822), 31, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -441631,27 +402013,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [106244] = 5, + [107368] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9238), 1, - aux_sym__immediate_decimal_token2, - STATE(4603), 1, + STATE(4199), 1, sym_comment, - ACTIONS(925), 5, + ACTIONS(895), 5, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - ACTIONS(923), 34, + ACTIONS(893), 35, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -441679,22 +402059,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, anon_sym_DOT, sym_filesize_unit, - [106297] = 4, + aux_sym_unquoted_token5, + [107419] = 11, ACTIONS(113), 1, anon_sym_POUND, - STATE(4604), 1, + ACTIONS(926), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(928), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(1379), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8799), 1, + aux_sym_unquoted_token3, + ACTIONS(8826), 1, + anon_sym_DOT, + ACTIONS(8828), 1, + aux_sym_unquoted_token5, + STATE(4200), 1, sym_comment, - ACTIONS(911), 5, + STATE(8796), 1, + sym__immediate_decimal, + ACTIONS(922), 2, ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - ACTIONS(909), 35, + aux_sym_command_token1, + ACTIONS(920), 31, anon_sym_SEMI, + anon_sym_LF, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -441722,31 +402114,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - [106348] = 5, + [107484] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9255), 1, - aux_sym__immediate_decimal_token2, - STATE(4605), 1, - sym_comment, - ACTIONS(919), 5, - ts_builtin_sym_end, + ACTIONS(1091), 1, anon_sym_LF, + ACTIONS(1302), 1, + anon_sym_DOT_DOT2, + STATE(4201), 1, + sym_comment, + ACTIONS(1304), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - ACTIONS(917), 34, + ACTIONS(8830), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + ACTIONS(1089), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -441771,30 +402164,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - [106401] = 7, + [107541] = 10, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9133), 1, + ACTIONS(922), 1, + aux_sym_command_token1, + ACTIONS(969), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(971), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(1391), 1, anon_sym_DOT, - STATE(4536), 1, - sym_path, - STATE(4606), 1, + ACTIONS(1407), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8391), 1, + aux_sym_unquoted_token4, + STATE(4202), 1, sym_comment, - STATE(5015), 1, - sym_cell_path, - ACTIONS(997), 3, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(995), 34, + STATE(10080), 1, + sym__immediate_decimal, + ACTIONS(920), 33, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -441823,80 +402217,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - [106458] = 7, - ACTIONS(3), 1, + [107604] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9123), 1, - anon_sym_DOT, - STATE(4607), 1, + ACTIONS(3773), 1, + anon_sym_LF, + ACTIONS(3775), 1, + anon_sym_LPAREN2, + STATE(4203), 1, sym_comment, - STATE(4654), 1, - sym_path, - STATE(5077), 1, - sym_cell_path, - ACTIONS(1186), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1188), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(1886), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(3771), 36, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [106515] = 6, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [107659] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9257), 1, - anon_sym_DOT, - STATE(4828), 1, - sym_path, - STATE(4608), 2, + STATE(4204), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1001), 3, + ACTIONS(903), 5, + ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(999), 34, + sym_duration_unit, + ACTIONS(901), 35, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -441923,119 +402310,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - [106570] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9262), 1, - anon_sym_COMMA, - STATE(4609), 1, - sym_comment, - ACTIONS(9264), 9, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(9260), 30, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__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, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [106623] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9266), 1, anon_sym_DOT, - ACTIONS(9269), 1, - aux_sym__immediate_decimal_token2, - STATE(4610), 1, - sym_comment, - ACTIONS(923), 13, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token5, - ACTIONS(925), 25, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_LPAREN2, - 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_token1, - aux_sym__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, - [106678] = 7, + aux_sym_unquoted_token5, + [107710] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9166), 1, + ACTIONS(8809), 1, anon_sym_DOT, - STATE(4564), 1, - aux_sym_cell_path_repeat1, - STATE(4611), 1, + STATE(4205), 1, sym_comment, - STATE(4870), 1, + STATE(4222), 1, sym_path, - ACTIONS(1008), 3, + STATE(4563), 1, + sym_cell_path, + ACTIONS(1004), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, aux_sym_command_token1, - ACTIONS(1006), 34, + ACTIONS(1002), 34, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -442070,129 +402363,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT2, anon_sym_LF2, - [106735] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(4612), 1, - sym_comment, - ACTIONS(1111), 4, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1109), 36, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - anon_sym_DOT_DOT2, - anon_sym_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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [106786] = 5, + [107767] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9063), 1, - aux_sym__immediate_decimal_token2, - STATE(4613), 1, + STATE(4206), 1, sym_comment, - ACTIONS(2439), 4, + ACTIONS(936), 5, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2437), 35, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [106839] = 10, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_LF, - ACTIONS(3588), 1, - aux_sym_unquoted_token5, - ACTIONS(9202), 1, - sym_filesize_unit, - ACTIONS(9204), 1, sym_duration_unit, - ACTIONS(9271), 1, - anon_sym_DOT_DOT2, - ACTIONS(9273), 1, - anon_sym_DOT, - STATE(4614), 1, - sym_comment, - ACTIONS(9275), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(959), 32, + ACTIONS(934), 35, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -442218,89 +402406,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [106902] = 6, - ACTIONS(113), 1, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + [107818] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9277), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9279), 1, - aux_sym_unquoted_token2, - STATE(4615), 1, + STATE(4207), 1, sym_comment, - ACTIONS(938), 2, - anon_sym_LF, - anon_sym_LPAREN2, - ACTIONS(936), 36, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(3767), 9, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym__, anon_sym_DOT_DOT, - anon_sym_not, - 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, anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [106957] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1012), 1, - anon_sym_LF, - ACTIONS(9164), 1, - anon_sym_DOT, - STATE(4616), 1, - sym_comment, - STATE(4656), 1, - sym_path, - STATE(5200), 1, - sym_cell_path, - ACTIONS(1010), 36, - anon_sym_SEMI, + aux_sym_unquoted_token1, + ACTIONS(3769), 31, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_not, 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -442308,83 +402445,53 @@ 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, - [107014] = 12, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + [107869] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - ACTIONS(8663), 1, - aux_sym_unquoted_token5, - ACTIONS(9281), 1, - anon_sym_DOT_DOT2, - ACTIONS(9283), 1, + ACTIONS(926), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(1379), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(1381), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8777), 1, + aux_sym_unquoted_token3, + ACTIONS(8832), 1, anon_sym_DOT, - ACTIONS(9287), 1, - sym_filesize_unit, - ACTIONS(9289), 1, - sym_duration_unit, - STATE(4617), 1, + ACTIONS(8834), 1, + aux_sym_unquoted_token5, + STATE(4208), 1, sym_comment, - STATE(10743), 1, - sym__expr_parenthesized_immediate, - ACTIONS(9285), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(959), 11, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(961), 20, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, + STATE(8796), 1, + sym__immediate_decimal, + ACTIONS(922), 13, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [107081] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9123), 1, - anon_sym_DOT, - STATE(4570), 1, - sym_cell_path, - STATE(4618), 1, - sym_comment, - STATE(4654), 1, - sym_path, - ACTIONS(1010), 12, - sym_identifier, + ACTIONS(920), 20, + sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -442392,54 +402499,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_mod, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1012), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [107138] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [107934] = 11, ACTIONS(113), 1, anon_sym_POUND, - STATE(4619), 1, + ACTIONS(926), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(928), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(1379), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8643), 1, + aux_sym_unquoted_token3, + ACTIONS(8836), 1, + anon_sym_DOT, + ACTIONS(8838), 1, + aux_sym_unquoted_token5, + STATE(4209), 1, sym_comment, - ACTIONS(919), 4, + STATE(8796), 1, + sym__immediate_decimal, + ACTIONS(922), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - ACTIONS(917), 36, + ACTIONS(920), 31, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -442465,33 +402565,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + [107999] = 10, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(961), 1, anon_sym_DOT_DOT2, + ACTIONS(8791), 1, anon_sym_DOT, + ACTIONS(8795), 1, sym_filesize_unit, + ACTIONS(8797), 1, + sym_duration_unit, + ACTIONS(8799), 1, aux_sym_unquoted_token5, - [107189] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(9291), 1, - anon_sym_DOT, - STATE(4838), 1, - sym_path, - STATE(4620), 2, + STATE(4210), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1001), 3, - anon_sym_LF, + ACTIONS(940), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(965), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(999), 34, + ACTIONS(938), 31, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LF, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -442517,27 +402618,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - [107244] = 6, + [108062] = 10, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9294), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9296), 1, - aux_sym__immediate_decimal_token2, - STATE(4621), 1, + ACTIONS(8637), 1, + anon_sym_DOT, + ACTIONS(8639), 1, + sym_filesize_unit, + ACTIONS(8641), 1, + sym_duration_unit, + ACTIONS(8643), 1, + aux_sym_unquoted_token5, + ACTIONS(8840), 1, + anon_sym_DOT_DOT2, + STATE(4211), 1, sym_comment, - ACTIONS(911), 4, + ACTIONS(940), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(8842), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - sym__entry_separator, - ACTIONS(909), 34, - anon_sym_RBRACK, + ACTIONS(938), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -442563,32 +402671,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + [108125] = 10, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(940), 1, + anon_sym_LF, + ACTIONS(961), 1, anon_sym_DOT_DOT2, - anon_sym_DOT, + ACTIONS(8703), 1, sym_filesize_unit, + ACTIONS(8705), 1, + sym_duration_unit, + ACTIONS(8713), 1, aux_sym_unquoted_token5, - [107299] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(9045), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(9298), 1, + ACTIONS(8844), 1, anon_sym_DOT, - STATE(4622), 1, + STATE(4212), 1, sym_comment, - ACTIONS(925), 5, - ts_builtin_sym_end, - anon_sym_LF, + ACTIONS(965), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - ACTIONS(923), 33, + ACTIONS(938), 32, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -442614,45 +402724,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - sym_filesize_unit, - [107354] = 4, - ACTIONS(113), 1, + [108188] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4623), 1, + STATE(4213), 1, sym_comment, - ACTIONS(919), 5, - ts_builtin_sym_end, - anon_sym_LF, + ACTIONS(895), 15, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - ACTIONS(917), 35, - anon_sym_SEMI, - anon_sym_PIPE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(893), 25, + sym_cmd_identifier, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, @@ -442662,47 +402769,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, anon_sym_DOT, sym_filesize_unit, + sym_duration_unit, aux_sym_unquoted_token5, - [107405] = 10, - ACTIONS(113), 1, + [108239] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(938), 1, - anon_sym_LF, - ACTIONS(1045), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(1047), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(1593), 1, - anon_sym_DOT, - ACTIONS(1609), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8904), 1, - aux_sym_unquoted_token4, - STATE(4624), 1, + ACTIONS(1072), 1, + sym_identifier, + ACTIONS(1078), 1, + anon_sym_DASH, + ACTIONS(8767), 1, + anon_sym_DOT_DOT2, + STATE(4214), 1, sym_comment, - STATE(10460), 1, - sym__immediate_decimal, - ACTIONS(936), 33, - anon_sym_SEMI, + ACTIONS(8769), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1074), 8, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, + ACTIONS(1076), 10, + anon_sym_GT, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1169), 17, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -442713,80 +402823,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [107468] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(4625), 1, - sym_comment, - ACTIONS(1170), 3, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1168), 37, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [107519] = 7, + [108300] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9198), 1, - anon_sym_DOT, - STATE(4576), 1, - sym_path, - STATE(4626), 1, + ACTIONS(8765), 1, + aux_sym__immediate_decimal_token2, + STATE(4215), 1, sym_comment, - STATE(5151), 1, - sym_cell_path, - ACTIONS(997), 3, + ACTIONS(913), 5, + ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(995), 34, + sym_duration_unit, + ACTIONS(911), 34, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -442813,31 +402868,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - [107576] = 10, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + [108353] = 10, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(938), 1, - aux_sym_command_token1, - ACTIONS(1045), 1, + ACTIONS(922), 1, + anon_sym_LF, + ACTIONS(969), 1, aux_sym__immediate_decimal_token3, - ACTIONS(1047), 1, + ACTIONS(971), 1, aux_sym__immediate_decimal_token4, - ACTIONS(1593), 1, + ACTIONS(1391), 1, anon_sym_DOT, - ACTIONS(1609), 1, + ACTIONS(1407), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9043), 1, + ACTIONS(8419), 1, aux_sym_unquoted_token4, - STATE(4627), 1, + STATE(4216), 1, sym_comment, - STATE(10460), 1, + STATE(10080), 1, sym__immediate_decimal, - ACTIONS(936), 33, + ACTIONS(920), 33, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -442866,66 +402924,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [107639] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4628), 1, - sym_comment, - ACTIONS(1168), 9, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1170), 31, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__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, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [107690] = 5, + [108416] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9300), 1, - aux_sym__immediate_decimal_token2, - STATE(4629), 1, + STATE(4217), 1, sym_comment, - ACTIONS(2549), 4, + ACTIONS(1039), 4, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2547), 35, + ACTIONS(1037), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -442937,6 +402946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_not, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -442961,22 +402971,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [107743] = 6, + [108467] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9174), 1, + ACTIONS(8473), 1, aux_sym__immediate_decimal_token2, - ACTIONS(9302), 1, - anon_sym_DOT, - STATE(4630), 1, + STATE(4218), 1, sym_comment, - ACTIONS(925), 5, + ACTIONS(895), 5, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - ACTIONS(923), 33, + ACTIONS(893), 34, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -443008,74 +403016,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token5, - [107798] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8980), 1, - aux_sym__immediate_decimal_token2, - STATE(4631), 1, - sym_comment, - ACTIONS(909), 14, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token5, - ACTIONS(911), 25, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_LPAREN2, - 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_token1, - aux_sym__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, - [107851] = 4, + aux_sym_unquoted_token5, + [108520] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(4632), 1, + ACTIONS(8846), 1, + aux_sym__immediate_decimal_token2, + STATE(4219), 1, sym_comment, - ACTIONS(952), 4, + ACTIONS(903), 5, + ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - ACTIONS(950), 36, + ACTIONS(901), 34, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -443105,85 +403067,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, sym_filesize_unit, aux_sym_unquoted_token5, - [107902] = 4, + [108573] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(4633), 1, - sym_comment, - ACTIONS(2843), 9, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(2845), 31, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__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, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [107953] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(9086), 1, - aux_sym__immediate_decimal_token2, - STATE(4634), 1, + ACTIONS(8645), 1, + anon_sym_DOT, + STATE(4220), 1, sym_comment, - ACTIONS(911), 5, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - ACTIONS(909), 34, - anon_sym_SEMI, - anon_sym_PIPE, + STATE(4229), 1, + sym_path, + STATE(4790), 1, + sym_cell_path, + ACTIONS(1101), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1103), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -443194,68 +403117,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - [108006] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1008), 1, - anon_sym_LF, - ACTIONS(9164), 1, - anon_sym_DOT, - STATE(4528), 1, - aux_sym_cell_path_repeat1, - STATE(4635), 1, - sym_comment, - STATE(4940), 1, - sym_path, - ACTIONS(1006), 36, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [108063] = 4, + [108630] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4636), 1, + STATE(4221), 1, sym_comment, - ACTIONS(3874), 9, + ACTIONS(4997), 9, anon_sym_DASH, anon_sym__, anon_sym_DOT_DOT, @@ -443265,7 +403132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(3876), 31, + ACTIONS(4999), 31, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -443297,22 +403164,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [108114] = 4, + [108681] = 7, ACTIONS(113), 1, anon_sym_POUND, - STATE(4637), 1, + ACTIONS(8809), 1, + anon_sym_DOT, + STATE(4222), 1, sym_comment, - ACTIONS(952), 5, - ts_builtin_sym_end, - anon_sym_LF, + STATE(4244), 1, + aux_sym_cell_path_repeat1, + STATE(4496), 1, + sym_path, + ACTIONS(1012), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - ACTIONS(950), 35, + aux_sym_command_token1, + ACTIONS(1010), 34, anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -443341,15 +403213,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - [108165] = 4, + anon_sym_LF2, + [108738] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4638), 1, + STATE(4223), 1, sym_comment, - ACTIONS(4006), 9, + ACTIONS(5001), 9, anon_sym_DASH, anon_sym__, anon_sym_DOT_DOT, @@ -443359,7 +403229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(4008), 31, + ACTIONS(5003), 31, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -443391,89 +403261,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [108216] = 7, - ACTIONS(113), 1, + [108789] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1156), 1, - anon_sym_LF, - ACTIONS(9164), 1, - anon_sym_DOT, - STATE(4639), 1, + STATE(4224), 1, sym_comment, - STATE(4656), 1, - sym_path, - STATE(5142), 1, - sym_cell_path, - ACTIONS(1154), 36, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(5005), 9, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym__, anon_sym_DOT_DOT, - anon_sym_not, - 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, anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [108273] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1160), 1, - anon_sym_LF, - ACTIONS(6147), 1, - anon_sym_DOT_DOT2, - STATE(4640), 1, - sym_comment, - ACTIONS(6149), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1158), 36, - anon_sym_SEMI, + aux_sym_unquoted_token1, + ACTIONS(5007), 31, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_not, 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -443481,51 +403296,58 @@ 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, - [108328] = 7, - ACTIONS(113), 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, + [108840] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9186), 1, + ACTIONS(8645), 1, anon_sym_DOT, - STATE(4596), 1, - aux_sym_cell_path_repeat1, - STATE(4641), 1, + STATE(4225), 1, sym_comment, - STATE(4842), 1, + STATE(4229), 1, sym_path, - ACTIONS(989), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - ACTIONS(987), 34, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, + STATE(4569), 1, + sym_cell_path, + ACTIONS(1057), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1059), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -443536,145 +403358,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - [108385] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3113), 1, - anon_sym_DOLLAR, - ACTIONS(8653), 1, - anon_sym_LPAREN2, - ACTIONS(9305), 1, - anon_sym_DOT, - ACTIONS(9307), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9309), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9311), 1, - aux_sym__immediate_decimal_token4, - STATE(4642), 1, - sym_comment, - STATE(4952), 1, - sym__var, - STATE(5922), 1, - sym__immediate_decimal, - STATE(5921), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(2387), 10, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2389), 20, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_not, - 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_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [108454] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8861), 1, - anon_sym_DOLLAR, - ACTIONS(8863), 1, - anon_sym_LPAREN2, - ACTIONS(9313), 1, - anon_sym_DOT, - ACTIONS(9315), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9317), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9319), 1, - aux_sym__immediate_decimal_token4, - STATE(4643), 1, - sym_comment, - STATE(5760), 1, - sym__var, - STATE(6564), 1, - sym__immediate_decimal, - STATE(6559), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(2387), 10, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2389), 20, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_not, - 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_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [108523] = 11, + [108897] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(938), 1, - anon_sym_LF, - ACTIONS(942), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(944), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(1582), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9206), 1, - aux_sym_unquoted_token3, - ACTIONS(9321), 1, + ACTIONS(8679), 1, anon_sym_DOT, - ACTIONS(9323), 1, - aux_sym_unquoted_token5, - STATE(4644), 1, + STATE(4113), 1, + sym_path, + STATE(4226), 1, sym_comment, - STATE(9346), 1, - sym__immediate_decimal, - ACTIONS(936), 32, + STATE(4628), 1, + sym_cell_path, + ACTIONS(994), 3, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(992), 34, anon_sym_SEMI, + anon_sym_COLON, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, @@ -443706,20 +403407,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [108588] = 7, + anon_sym_DOT_DOT2, + [108954] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1192), 1, + ACTIONS(1059), 1, anon_sym_LF, - ACTIONS(9164), 1, + ACTIONS(8649), 1, anon_sym_DOT, - STATE(4645), 1, - sym_comment, - STATE(4656), 1, + STATE(4152), 1, sym_path, - STATE(5168), 1, + STATE(4227), 1, + sym_comment, + STATE(4555), 1, sym_cell_path, - ACTIONS(1190), 36, + ACTIONS(1057), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -443756,29 +403458,22 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [108645] = 11, + [109011] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(942), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(944), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(1582), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9162), 1, - aux_sym_unquoted_token3, - ACTIONS(9325), 1, + ACTIONS(8559), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(8848), 1, anon_sym_DOT, - ACTIONS(9327), 1, - aux_sym_unquoted_token5, - STATE(4646), 1, + STATE(4228), 1, sym_comment, - STATE(9346), 1, - sym__immediate_decimal, - ACTIONS(938), 2, + ACTIONS(913), 5, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(936), 31, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + ACTIONS(911), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -443810,17 +403505,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [108710] = 6, + anon_sym_DOT_DOT2, + sym_filesize_unit, + [109066] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9329), 1, + ACTIONS(8645), 1, anon_sym_DOT, - STATE(4826), 1, - sym_path, - STATE(4647), 2, - sym_comment, + STATE(4086), 1, aux_sym_cell_path_repeat1, - ACTIONS(999), 12, + STATE(4229), 1, + sym_comment, + STATE(4517), 1, + sym_path, + ACTIONS(1010), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -443833,7 +403531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1001), 25, + ACTIONS(1012), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -443859,67 +403557,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [108765] = 9, - ACTIONS(3), 1, + [109123] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1194), 1, - sym_identifier, - ACTIONS(1200), 1, - anon_sym_DASH, - ACTIONS(9332), 1, + ACTIONS(3759), 1, + anon_sym_LF, + ACTIONS(5899), 1, anon_sym_DOT_DOT2, - STATE(4648), 1, + STATE(4230), 1, sym_comment, - ACTIONS(9334), 2, + ACTIONS(5901), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1196), 8, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - ACTIONS(1198), 10, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1366), 17, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [108826] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(4649), 1, - sym_comment, - ACTIONS(2439), 2, - anon_sym_LF, - anon_sym_LPAREN2, - ACTIONS(2437), 38, + ACTIONS(3757), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -443932,7 +403582,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -443957,101 +403606,76 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - aux_sym_unquoted_token2, - [108877] = 26, - ACTIONS(3), 1, + [109178] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2795), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2797), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2801), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4476), 1, - aux_sym_unquoted_token1, - ACTIONS(8452), 1, - sym_val_date, - ACTIONS(8605), 1, - anon_sym_LPAREN, - ACTIONS(8615), 1, - anon_sym_DQUOTE, - ACTIONS(8619), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(8621), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(9125), 1, - anon_sym_DOT_DOT, - ACTIONS(9129), 1, - anon_sym_DOT2, - STATE(2792), 1, - sym__inter_single_quotes, - STATE(2793), 1, - sym__str_double_quotes, - STATE(2797), 1, - sym__inter_double_quotes, - STATE(4650), 1, + STATE(4231), 1, sym_comment, - STATE(8255), 1, - sym__val_number_decimal, - STATE(10518), 1, - sym__val_range, - STATE(10861), 1, - sym_val_bool, - STATE(11180), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(2793), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(8617), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(9127), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(8613), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(1305), 4, - sym_expr_parenthesized, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(3910), 9, - anon_sym_null, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [108972] = 6, + ACTIONS(895), 4, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + ACTIONS(893), 36, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + [109229] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3520), 1, + ACTIONS(8850), 1, + aux_sym__immediate_decimal_token2, + STATE(4232), 1, + sym_comment, + ACTIONS(2364), 3, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3522), 1, anon_sym_LPAREN2, - STATE(4651), 1, - sym_comment, - ACTIONS(1934), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(3518), 36, + ACTIONS(2362), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -444076,17 +403700,18 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [109027] = 4, + aux_sym_unquoted_token2, + [109282] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(4652), 1, + STATE(4233), 1, sym_comment, - ACTIONS(1115), 4, + ACTIONS(1043), 4, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1113), 36, + ACTIONS(1041), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -444123,142 +403748,88 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [109078] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4653), 1, - sym_comment, - ACTIONS(9336), 40, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_COMMA, - 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, - anon_sym_AT, - anon_sym_LBRACE, - [109127] = 7, + [109333] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9123), 1, - anon_sym_DOT, - STATE(4601), 1, - aux_sym_cell_path_repeat1, - STATE(4654), 1, + STATE(4234), 1, sym_comment, - STATE(4826), 1, - sym_path, - ACTIONS(987), 12, - sym_identifier, - anon_sym_GT, + ACTIONS(5019), 9, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(989), 25, - anon_sym_COLON, + anon_sym__, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(5021), 31, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [109184] = 7, - ACTIONS(3), 1, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__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, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + [109384] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9123), 1, + ACTIONS(8852), 1, anon_sym_DOT, - STATE(4654), 1, + STATE(4522), 1, sym_path, - STATE(4655), 1, + STATE(4235), 2, sym_comment, - STATE(4991), 1, - sym_cell_path, - ACTIONS(1154), 12, - sym_identifier, + aux_sym_cell_path_repeat1, + ACTIONS(987), 3, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(985), 34, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1156), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -444269,40 +403840,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [109241] = 7, - ACTIONS(113), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + [109439] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(989), 1, - anon_sym_LF, - ACTIONS(9164), 1, - anon_sym_DOT, - STATE(4635), 1, - aux_sym_cell_path_repeat1, - STATE(4656), 1, + STATE(4236), 1, sym_comment, - STATE(4940), 1, - sym_path, - ACTIONS(987), 36, - anon_sym_SEMI, + ACTIONS(2229), 9, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(2231), 31, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_not, 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -444310,59 +403879,47 @@ 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, - [109298] = 13, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + [109490] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8861), 1, - anon_sym_DOLLAR, - ACTIONS(8863), 1, - anon_sym_LPAREN2, - ACTIONS(9313), 1, - anon_sym_DOT, - ACTIONS(9315), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9317), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9319), 1, - aux_sym__immediate_decimal_token4, - STATE(4657), 1, + STATE(4237), 1, sym_comment, - STATE(5760), 1, - sym__var, - STATE(6621), 1, - sym__immediate_decimal, - STATE(6620), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(2349), 10, - anon_sym_LPAREN, + ACTIONS(5023), 9, anon_sym_DASH, + anon_sym__, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, anon_sym_DOT2, - aux_sym__val_number_decimal_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2351), 20, + aux_sym_unquoted_token1, + ACTIONS(5025), 31, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_not, + 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_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -444373,52 +403930,43 @@ 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, - [109367] = 13, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + [109541] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8861), 1, - anon_sym_DOLLAR, - ACTIONS(8863), 1, - anon_sym_LPAREN2, - ACTIONS(9313), 1, - anon_sym_DOT, - ACTIONS(9315), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9317), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9319), 1, - aux_sym__immediate_decimal_token4, - STATE(4658), 1, + STATE(4238), 1, sym_comment, - STATE(5760), 1, - sym__var, - STATE(6623), 1, - sym__immediate_decimal, - STATE(6622), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(2359), 10, - anon_sym_LPAREN, + ACTIONS(5027), 9, anon_sym_DASH, + anon_sym__, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, anon_sym_DOT2, - aux_sym__val_number_decimal_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2361), 20, + aux_sym_unquoted_token1, + ACTIONS(5029), 31, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_not, + 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_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -444429,52 +403977,43 @@ 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, - [109436] = 13, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + [109592] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8861), 1, - anon_sym_DOLLAR, - ACTIONS(8863), 1, - anon_sym_LPAREN2, - ACTIONS(9313), 1, - anon_sym_DOT, - ACTIONS(9315), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9317), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9319), 1, - aux_sym__immediate_decimal_token4, - STATE(4659), 1, + STATE(4239), 1, sym_comment, - STATE(5760), 1, - sym__var, - STATE(6625), 1, - sym__immediate_decimal, - STATE(6624), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(2383), 10, - anon_sym_LPAREN, + ACTIONS(5031), 9, anon_sym_DASH, + anon_sym__, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, anon_sym_DOT2, - aux_sym__val_number_decimal_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2385), 20, + aux_sym_unquoted_token1, + ACTIONS(5033), 31, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_not, + 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_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -444485,17 +404024,75 @@ 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, - [109505] = 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, + [109643] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(4660), 1, + ACTIONS(8855), 1, + aux_sym__immediate_decimal_token2, + STATE(4240), 1, sym_comment, - ACTIONS(2549), 2, + ACTIONS(903), 5, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + ACTIONS(901), 34, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + [109696] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(3646), 1, anon_sym_LF, + ACTIONS(3648), 1, anon_sym_LPAREN2, - ACTIONS(2547), 38, + STATE(4241), 1, + sym_comment, + ACTIONS(3650), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(3644), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -444508,7 +404105,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -444533,35 +404129,74 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - aux_sym_unquoted_token2, - [109556] = 10, + [109751] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(979), 1, - anon_sym_DOT_DOT2, - ACTIONS(9154), 1, + ACTIONS(1087), 1, + anon_sym_LF, + ACTIONS(8649), 1, anon_sym_DOT, - ACTIONS(9158), 1, - sym_filesize_unit, - ACTIONS(9160), 1, - sym_duration_unit, - ACTIONS(9162), 1, - aux_sym_unquoted_token5, - STATE(4661), 1, + STATE(4152), 1, + sym_path, + STATE(4242), 1, sym_comment, - ACTIONS(961), 2, - ts_builtin_sym_end, + STATE(4682), 1, + sym_cell_path, + ACTIONS(1085), 36, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [109808] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(4243), 1, + sym_comment, + ACTIONS(903), 4, anon_sym_LF, - ACTIONS(983), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(959), 31, + sym_duration_unit, + ACTIONS(901), 36, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -444587,38 +404222,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [109619] = 4, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + [109859] = 7, + ACTIONS(113), 1, anon_sym_POUND, - STATE(4662), 1, + ACTIONS(8809), 1, + anon_sym_DOT, + STATE(4244), 1, sym_comment, - ACTIONS(1059), 7, + STATE(4248), 1, + aux_sym_cell_path_repeat1, + STATE(4496), 1, + sym_path, + ACTIONS(1008), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_command_token1, + ACTIONS(1006), 34, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1061), 33, - anon_sym_COMMA, + anon_sym_LF2, + [109916] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(4245), 1, + sym_comment, + ACTIONS(936), 4, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + ACTIONS(934), 36, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK2, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -444632,22 +404319,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [109670] = 7, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + [109967] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1205), 1, - anon_sym_LF, - ACTIONS(9164), 1, - anon_sym_DOT, - STATE(4656), 1, - sym_path, - STATE(4663), 1, + STATE(4246), 1, sym_comment, - STATE(5069), 1, - sym_cell_path, - ACTIONS(1203), 36, + ACTIONS(1070), 3, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1068), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -444660,6 +404345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -444684,45 +404370,89 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [109727] = 6, - ACTIONS(3), 1, + [110018] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9332), 1, - anon_sym_DOT_DOT2, - STATE(4664), 1, + ACTIONS(8857), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8859), 1, + aux_sym__immediate_decimal_token2, + STATE(4247), 1, sym_comment, - ACTIONS(9334), 2, + ACTIONS(895), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1158), 12, - sym_identifier, + sym_duration_unit, + sym__entry_separator, + ACTIONS(893), 34, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1160), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + [110073] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(8861), 1, + anon_sym_DOT, + STATE(4496), 1, + sym_path, + STATE(4248), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(987), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_command_token1, + ACTIONS(985), 34, + anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -444733,75 +404463,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [109782] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_LF2, + [110128] = 7, ACTIONS(113), 1, anon_sym_POUND, - STATE(4665), 1, - sym_comment, - ACTIONS(1119), 4, - ts_builtin_sym_end, + ACTIONS(1091), 1, anon_sym_LF, + ACTIONS(1302), 1, + anon_sym_DOT_DOT2, + STATE(4249), 1, + sym_comment, + ACTIONS(1304), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1117), 36, + ACTIONS(8864), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + ACTIONS(1089), 30, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_GT, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - anon_sym_DOT_DOT2, - anon_sym_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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [109833] = 4, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [110185] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4666), 1, + STATE(4250), 1, sym_comment, - ACTIONS(9340), 9, + ACTIONS(8868), 9, anon_sym_DASH, + anon_sym__, anon_sym_DOT_DOT, - anon_sym_PLUS, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(9338), 31, + aux_sym_unquoted_token1, + ACTIONS(8866), 31, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -444827,12 +404565,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [109884] = 4, + [110236] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4667), 1, + ACTIONS(8872), 1, + anon_sym_COMMA, + STATE(4251), 1, sym_comment, - ACTIONS(2437), 9, + ACTIONS(8874), 9, anon_sym_DASH, anon_sym__, anon_sym_DOT_DOT, @@ -444842,9 +404582,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(2439), 31, + ACTIONS(8870), 30, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, @@ -444874,16 +404613,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [109935] = 5, + [110289] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2583), 1, + ACTIONS(1091), 1, anon_sym_LF, - ACTIONS(9231), 1, - aux_sym__immediate_decimal_token2, - STATE(4668), 1, + ACTIONS(5899), 1, + anon_sym_DOT_DOT2, + STATE(4252), 1, sym_comment, - ACTIONS(2581), 38, + ACTIONS(5901), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1089), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -444896,7 +404638,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -444921,17 +404662,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - aux_sym_unquoted_token2, - [109988] = 5, + [110344] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2439), 1, + ACTIONS(3693), 1, anon_sym_LF, - ACTIONS(8984), 1, - aux_sym__immediate_decimal_token2, - STATE(4669), 1, + ACTIONS(8876), 1, + anon_sym_DOT_DOT2, + STATE(4253), 1, sym_comment, - ACTIONS(2437), 38, + ACTIONS(8878), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3691), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -444944,7 +404687,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -444969,88 +404711,84 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - aux_sym_unquoted_token2, - [110041] = 7, - ACTIONS(113), 1, + [110399] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1150), 1, - anon_sym_LF, - ACTIONS(9164), 1, + ACTIONS(8645), 1, anon_sym_DOT, - STATE(4656), 1, + STATE(4229), 1, sym_path, - STATE(4670), 1, + STATE(4254), 1, sym_comment, - STATE(5217), 1, + STATE(4564), 1, sym_cell_path, - ACTIONS(1148), 36, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(1085), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1087), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [110456] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4255), 1, + sym_comment, + ACTIONS(3721), 9, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym__, anon_sym_DOT_DOT, - anon_sym_not, - 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, anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [110098] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(2549), 1, - anon_sym_LF, - ACTIONS(9342), 1, - aux_sym__immediate_decimal_token2, - STATE(4671), 1, - sym_comment, - ACTIONS(2547), 38, - anon_sym_SEMI, + aux_sym_unquoted_token1, + ACTIONS(3723), 31, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - anon_sym_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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -445058,56 +404796,48 @@ 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, - aux_sym_unquoted_token2, - [110151] = 7, - 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, + [110507] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9123), 1, - anon_sym_DOT, - STATE(4654), 1, - sym_path, - STATE(4672), 1, + ACTIONS(8859), 1, + aux_sym__immediate_decimal_token2, + STATE(4256), 1, sym_comment, - STATE(5035), 1, - sym_cell_path, - ACTIONS(1190), 12, - sym_identifier, + ACTIONS(895), 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + sym__entry_separator, + ACTIONS(893), 34, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1192), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -445118,15 +404848,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [110208] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + [110559] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4673), 1, + ACTIONS(8880), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8882), 1, + aux_sym__immediate_decimal_token2, + STATE(4257), 1, sym_comment, - ACTIONS(1172), 13, + ACTIONS(893), 16, sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, @@ -445137,15 +404877,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - ACTIONS(1174), 27, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_DOT, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + ACTIONS(895), 21, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -445165,30 +404903,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [110259] = 7, + [110613] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9133), 1, + ACTIONS(8884), 1, anon_sym_DOT, - STATE(4536), 1, - sym_path, - STATE(4674), 1, + STATE(4258), 1, sym_comment, - STATE(5046), 1, - sym_cell_path, - ACTIONS(1012), 3, + STATE(4278), 1, + aux_sym_cell_path_repeat1, + STATE(4566), 1, + sym_path, + ACTIONS(1012), 4, + ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1010), 34, + ACTIONS(1010), 32, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -445215,145 +404952,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - [110316] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - ACTIONS(4037), 1, - anon_sym_LPAREN2, - ACTIONS(9344), 1, - aux_sym_command_token1, - STATE(4675), 1, - sym_comment, - ACTIONS(4035), 37, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [110371] = 7, - ACTIONS(113), 1, + [110669] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9186), 1, - anon_sym_DOT, - STATE(4641), 1, - sym_path, - STATE(4676), 1, + STATE(4259), 1, sym_comment, - STATE(5086), 1, - sym_cell_path, - ACTIONS(1012), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - ACTIONS(1010), 34, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1037), 7, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_DOT_DOT2, - [110428] = 10, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(9188), 1, anon_sym_DOT, - ACTIONS(9190), 1, - sym_filesize_unit, - ACTIONS(9192), 1, - sym_duration_unit, - ACTIONS(9194), 1, - aux_sym_unquoted_token5, - ACTIONS(9346), 1, - anon_sym_DOT_DOT2, - STATE(4677), 1, - sym_comment, - ACTIONS(961), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(9348), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(959), 31, - anon_sym_SEMI, - anon_sym_LF, + ACTIONS(1039), 32, + anon_sym_COMMA, anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -445367,36 +404996,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [110491] = 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [110719] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(942), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(944), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(1582), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9194), 1, - aux_sym_unquoted_token3, - ACTIONS(9350), 1, - anon_sym_DOT, - ACTIONS(9352), 1, - aux_sym_unquoted_token5, - STATE(4678), 1, + STATE(4260), 1, sym_comment, - STATE(9346), 1, - sym__immediate_decimal, - ACTIONS(938), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(936), 31, - anon_sym_SEMI, + ACTIONS(1035), 3, anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1033), 36, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -445421,74 +405042,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [110556] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9269), 1, - aux_sym__immediate_decimal_token2, - STATE(4679), 1, - sym_comment, - ACTIONS(923), 14, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token5, - ACTIONS(925), 25, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_LPAREN2, - 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_token1, - aux_sym__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, - [110609] = 5, + [110769] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1072), 1, - anon_sym_LF, - ACTIONS(9354), 1, - anon_sym_QMARK2, - STATE(4680), 1, + STATE(4261), 1, sym_comment, - ACTIONS(1070), 37, + ACTIONS(2364), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LPAREN2, + ACTIONS(2362), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, anon_sym_DOT, @@ -445516,22 +405089,71 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [110661] = 7, - ACTIONS(113), 1, + aux_sym_unquoted_token2, + [110819] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - ACTIONS(4037), 1, - anon_sym_LPAREN2, - ACTIONS(4617), 1, - ts_builtin_sym_end, - ACTIONS(9356), 1, - aux_sym_command_token1, - STATE(4681), 1, + ACTIONS(8886), 1, + anon_sym_DOT, + STATE(4262), 1, + sym_comment, + STATE(4319), 1, + sym_path, + STATE(4805), 1, + sym_cell_path, + ACTIONS(994), 15, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(992), 21, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + [110875] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(3648), 1, + anon_sym_LPAREN2, + STATE(4263), 1, sym_comment, - ACTIONS(4035), 35, - anon_sym_SEMI, + ACTIONS(3646), 2, + ts_builtin_sym_end, anon_sym_LF, + ACTIONS(3650), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(3644), 34, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PIPE, @@ -445565,25 +405187,25 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [110717] = 4, + [110929] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(4682), 1, + ACTIONS(8888), 1, + aux_sym__immediate_decimal_token2, + STATE(4264), 1, sym_comment, - ACTIONS(952), 5, - ts_builtin_sym_end, - anon_sym_LF, + ACTIONS(913), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - ACTIONS(950), 34, - anon_sym_SEMI, - anon_sym_PIPE, + sym__entry_separator, + ACTIONS(911), 34, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -445611,38 +405233,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, anon_sym_DOT, sym_filesize_unit, - [110767] = 6, - ACTIONS(113), 1, + aux_sym_unquoted_token5, + [110981] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9358), 1, + ACTIONS(8890), 1, anon_sym_DOT, - ACTIONS(9361), 1, + ACTIONS(8893), 1, aux_sym__immediate_decimal_token2, - STATE(4683), 1, + STATE(4265), 1, sym_comment, - ACTIONS(925), 4, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - sym__entry_separator, - ACTIONS(923), 33, - anon_sym_RBRACK, + ACTIONS(911), 9, anon_sym_GT, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token5, + ACTIONS(913), 28, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -445656,119 +405279,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token5, - [110821] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(9363), 1, - anon_sym_DOT_DOT2, - STATE(4684), 1, - sym_comment, - ACTIONS(3868), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(9365), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(3866), 34, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [110875] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8890), 1, - anon_sym_list, - ACTIONS(9367), 1, - anon_sym_GT, - STATE(4685), 1, - sym_comment, - STATE(11034), 1, - sym__all_type, - ACTIONS(8888), 2, - anon_sym_table, - anon_sym_record, - STATE(8635), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(8886), 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, - [110933] = 5, + sym_duration_unit, + [111035] = 8, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9369), 1, - anon_sym_QMARK2, - STATE(4686), 1, - sym_comment, - ACTIONS(1072), 3, + ACTIONS(940), 1, anon_sym_LF, + ACTIONS(8895), 1, + anon_sym_DOT_DOT2, + ACTIONS(8899), 1, + sym_filesize_unit, + ACTIONS(8901), 1, + sym_duration_unit, + STATE(4266), 1, + sym_comment, + ACTIONS(8897), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1070), 35, + ACTIONS(938), 33, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -445802,20 +405332,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [110985] = 6, + [111093] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2439), 1, + ACTIONS(2358), 1, anon_sym_LF, - ACTIONS(9371), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9373), 1, + ACTIONS(8903), 1, + anon_sym_DOT, + ACTIONS(8905), 1, aux_sym__immediate_decimal_token2, - STATE(4687), 1, + STATE(4267), 1, sym_comment, - ACTIONS(2437), 36, + ACTIONS(2356), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -445852,26 +405380,34 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [111039] = 5, + [111147] = 11, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9369), 1, - anon_sym_QMARK2, - STATE(4688), 1, + ACTIONS(926), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(928), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(1379), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8907), 1, + anon_sym_DOT, + ACTIONS(8909), 1, + aux_sym_unquoted_token3, + ACTIONS(8911), 1, + aux_sym_unquoted_token5, + STATE(4268), 1, sym_comment, - ACTIONS(1072), 3, + STATE(8796), 1, + sym__immediate_decimal, + ACTIONS(922), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1070), 35, + ACTIONS(920), 30, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -445897,19 +405433,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + [111211] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4269), 1, + sym_comment, + ACTIONS(1041), 7, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_DOT_DOT2, anon_sym_DOT, - [111091] = 4, + ACTIONS(1043), 32, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [111261] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(4689), 1, + STATE(4270), 1, sym_comment, - ACTIONS(1174), 4, + ACTIONS(2231), 3, ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1172), 35, + anon_sym_LPAREN2, + ACTIONS(2229), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -445920,7 +405499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_not, - anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -445945,24 +405524,26 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [111141] = 4, + aux_sym_unquoted_token2, + [111311] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(4690), 1, + STATE(4271), 1, sym_comment, - ACTIONS(911), 5, + ACTIONS(895), 5, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - ACTIONS(909), 34, + ACTIONS(893), 34, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -445990,67 +405571,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, anon_sym_DOT, sym_filesize_unit, - aux_sym_unquoted_token5, - [111191] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1160), 1, - anon_sym_LF, - ACTIONS(1284), 1, - aux_sym_unquoted_token6, - ACTIONS(4895), 1, - anon_sym_LPAREN2, - STATE(4691), 1, - sym_comment, - ACTIONS(1158), 36, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [111245] = 4, + [111361] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(4692), 1, + ACTIONS(8804), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(8913), 1, + anon_sym_DOT, + STATE(4272), 1, sym_comment, - ACTIONS(919), 5, + ACTIONS(913), 5, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - ACTIONS(917), 34, + ACTIONS(911), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -446082,27 +405618,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - anon_sym_DOT, sym_filesize_unit, - aux_sym_unquoted_token5, - [111295] = 4, + [111415] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(4693), 1, + STATE(4273), 1, sym_comment, - ACTIONS(952), 5, - ts_builtin_sym_end, + ACTIONS(1035), 3, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - ACTIONS(950), 34, + ACTIONS(1033), 36, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -446129,32 +405665,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT2, anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - [111345] = 7, + [111465] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9375), 1, - anon_sym_DOT, - STATE(4694), 1, + STATE(4274), 1, sym_comment, - STATE(4807), 1, - sym_path, - STATE(5418), 1, - sym_cell_path, - ACTIONS(997), 4, - ts_builtin_sym_end, + ACTIONS(1022), 3, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(995), 32, + ACTIONS(1020), 36, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -446180,30 +405710,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - [111401] = 6, + anon_sym_DOT, + [111515] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9377), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9379), 1, - aux_sym__immediate_decimal_token2, - STATE(4695), 1, + STATE(4275), 1, sym_comment, - ACTIONS(909), 10, - anon_sym_GT, + ACTIONS(934), 14, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token5, + ACTIONS(936), 25, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_LPAREN2, + 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_token1, + aux_sym__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, + [111565] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4276), 1, + sym_comment, + ACTIONS(1047), 7, + anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, anon_sym_DOT_DOT2, anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - ACTIONS(911), 27, - anon_sym_DASH_DASH, + ACTIONS(1049), 32, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_in, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -446227,24 +405803,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [111455] = 5, + [111615] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9381), 1, - anon_sym_QMARK2, - STATE(4696), 1, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + STATE(4277), 1, sym_comment, - ACTIONS(1072), 3, + ACTIONS(3356), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3362), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(3354), 34, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [111669] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(8884), 1, + anon_sym_DOT, + STATE(4278), 1, + sym_comment, + STATE(4365), 1, + aux_sym_cell_path_repeat1, + STATE(4566), 1, + sym_path, + ACTIONS(1008), 4, + ts_builtin_sym_end, + anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - ACTIONS(1070), 35, + ACTIONS(1006), 32, anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -446273,20 +405900,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, + [111725] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(4279), 1, + sym_comment, + ACTIONS(2404), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LPAREN2, + ACTIONS(2402), 36, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, anon_sym_DOT, - anon_sym_LF2, - [111507] = 5, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + aux_sym_unquoted_token2, + [111775] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9381), 1, - anon_sym_QMARK2, - STATE(4697), 1, + STATE(4280), 1, sym_comment, - ACTIONS(1072), 3, + ACTIONS(1035), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, aux_sym_command_token1, - ACTIONS(1070), 35, + ACTIONS(1033), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -446295,6 +405964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -446322,25 +405992,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, anon_sym_DOT, anon_sym_LF2, - [111559] = 8, + [111825] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9383), 1, - anon_sym_DOT_DOT2, - ACTIONS(9387), 1, - sym_filesize_unit, - ACTIONS(9389), 1, - sym_duration_unit, - STATE(4698), 1, + ACTIONS(1209), 1, + anon_sym_LPAREN2, + ACTIONS(8915), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(4281), 1, sym_comment, - ACTIONS(961), 2, - ts_builtin_sym_end, + ACTIONS(1139), 37, + anon_sym_SEMI, anon_sym_LF, - ACTIONS(9385), 2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [111877] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(4282), 1, + sym_comment, + ACTIONS(1022), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(959), 32, + aux_sym_command_token1, + ACTIONS(1020), 36, anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, @@ -446371,21 +406082,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_DOT_DOT2, anon_sym_DOT, - [111617] = 6, - ACTIONS(113), 1, + anon_sym_LF2, + [111927] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6546), 1, + STATE(4283), 1, + sym_comment, + ACTIONS(893), 14, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - STATE(4699), 1, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token5, + ACTIONS(895), 25, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_LPAREN2, + 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_token1, + aux_sym__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, + [111977] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(8917), 1, + anon_sym_DOT, + ACTIONS(8920), 1, + aux_sym__immediate_decimal_token2, + STATE(4284), 1, sym_comment, - ACTIONS(4018), 2, + ACTIONS(2358), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6548), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(4016), 34, + ACTIONS(2356), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -446420,17 +406178,17 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [111671] = 6, + aux_sym_unquoted_token2, + [112031] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9391), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9393), 1, + ACTIONS(8893), 1, aux_sym__immediate_decimal_token2, - STATE(4700), 1, + STATE(4285), 1, sym_comment, - ACTIONS(909), 9, + ACTIONS(911), 10, anon_sym_GT, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -446439,11 +406197,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, sym_filesize_unit, aux_sym_unquoted_token5, - ACTIONS(911), 28, - anon_sym_COMMA, - anon_sym_DASH, + ACTIONS(913), 28, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_in, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -446468,30 +406226,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [111725] = 7, + [112083] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9395), 1, - anon_sym_DOT, - STATE(4701), 1, + STATE(4286), 1, sym_comment, - STATE(4730), 1, - sym_path, - STATE(5224), 1, - sym_cell_path, - ACTIONS(1012), 4, - ts_builtin_sym_end, + ACTIONS(1035), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, aux_sym_command_token1, - ACTIONS(1010), 32, + ACTIONS(1033), 36, anon_sym_SEMI, anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -446517,85 +406271,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - [111781] = 5, + anon_sym_DOT, + [112133] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3520), 1, - anon_sym_LF, - STATE(4702), 1, + STATE(4287), 1, sym_comment, - ACTIONS(1934), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(3518), 36, + ACTIONS(1022), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_command_token1, + ACTIONS(1020), 36, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [111833] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9397), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9399), 1, - aux_sym__immediate_decimal_token2, - STATE(4703), 1, - sym_comment, - ACTIONS(909), 9, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - ACTIONS(911), 28, - anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -446609,40 +406316,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [111887] = 5, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [112183] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9401), 1, + ACTIONS(8888), 1, aux_sym__immediate_decimal_token2, - STATE(4704), 1, + ACTIONS(8922), 1, + anon_sym_DOT, + STATE(4288), 1, sym_comment, - ACTIONS(923), 10, + ACTIONS(913), 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + sym__entry_separator, + ACTIONS(911), 33, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - ACTIONS(925), 28, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -446656,28 +406363,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [111939] = 4, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token5, + [112237] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(4705), 1, + ACTIONS(3316), 1, + anon_sym_LPAREN2, + STATE(4289), 1, sym_comment, - ACTIONS(1282), 2, + ACTIONS(1844), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(3314), 2, + ts_builtin_sym_end, anon_sym_LF, + ACTIONS(3312), 34, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [112291] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(3775), 1, anon_sym_LPAREN2, - ACTIONS(1280), 37, + STATE(4290), 1, + sym_comment, + ACTIONS(1886), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(3773), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3771), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, anon_sym_DOT_DOT_EQ, @@ -446704,33 +406462,37 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - aux_sym_unquoted_token6, - [111989] = 5, + [112345] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9143), 1, - aux_sym__immediate_decimal_token2, - STATE(4706), 1, + STATE(4291), 1, sym_comment, - ACTIONS(909), 10, + ACTIONS(1033), 13, + sym_identifier, anon_sym_GT, anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_DOT_DOT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - ACTIONS(911), 28, + ACTIONS(1035), 26, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -446746,52 +406508,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [112041] = 11, - ACTIONS(113), 1, + [112395] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(942), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(944), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(1582), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9403), 1, - anon_sym_DOT, - ACTIONS(9405), 1, - aux_sym_unquoted_token3, - ACTIONS(9407), 1, - aux_sym_unquoted_token5, - STATE(4707), 1, + STATE(4292), 1, sym_comment, - STATE(9346), 1, - sym__immediate_decimal, - ACTIONS(938), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(936), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1020), 13, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT, + ACTIONS(1022), 26, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -446802,40 +406554,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [112105] = 5, - ACTIONS(3), 1, + [112445] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9409), 1, - aux_sym__immediate_decimal_token2, - STATE(4708), 1, + ACTIONS(8925), 1, + anon_sym_QMARK2, + STATE(4293), 1, sym_comment, - ACTIONS(917), 10, + ACTIONS(1026), 3, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1024), 35, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - ACTIONS(919), 28, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -446849,31 +406599,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [112157] = 5, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [112497] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9411), 1, - aux_sym__immediate_decimal_token2, - STATE(4709), 1, - sym_comment, - ACTIONS(2583), 2, - ts_builtin_sym_end, + ACTIONS(1161), 1, anon_sym_LF, - ACTIONS(2581), 36, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + ACTIONS(3727), 1, + anon_sym_LPAREN2, + STATE(4294), 1, + sym_comment, + ACTIONS(1159), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -446898,26 +406649,24 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - aux_sym_unquoted_token2, - [112209] = 5, + [112551] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9170), 1, - aux_sym__immediate_decimal_token2, - STATE(4710), 1, - sym_comment, - ACTIONS(2439), 2, - ts_builtin_sym_end, + ACTIONS(2231), 1, anon_sym_LF, - ACTIONS(2437), 36, + STATE(4295), 1, + sym_comment, + ACTIONS(2229), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, anon_sym_DOT, @@ -446946,17 +406695,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, aux_sym_unquoted_token2, - [112261] = 5, + [112601] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9413), 1, - aux_sym__immediate_decimal_token2, - STATE(4711), 1, + STATE(4296), 1, sym_comment, - ACTIONS(2549), 2, + ACTIONS(3769), 4, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(2547), 36, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3767), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -446967,7 +406716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_not, - anon_sym_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -446992,123 +406741,122 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - aux_sym_unquoted_token2, - [112313] = 5, - ACTIONS(3), 1, + [112651] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9415), 1, - anon_sym_QMARK2, - STATE(4712), 1, + ACTIONS(2364), 1, + anon_sym_LF, + STATE(4297), 1, sym_comment, - ACTIONS(1070), 13, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT, - ACTIONS(1072), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(2362), 38, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [112365] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9415), 1, - anon_sym_QMARK2, - STATE(4713), 1, - sym_comment, - ACTIONS(1070), 13, - sym_identifier, - anon_sym_GT, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, anon_sym_DOT, - ACTIONS(1072), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + aux_sym_unquoted_token2, + [112701] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(8927), 1, + anon_sym_DOT, + STATE(4298), 1, + sym_comment, + STATE(4314), 1, + sym_path, + STATE(4874), 1, + sym_cell_path, + ACTIONS(1004), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1002), 34, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [112417] = 4, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [112757] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(4714), 1, - sym_comment, - ACTIONS(1170), 4, - ts_builtin_sym_end, + ACTIONS(2404), 1, anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1168), 35, + STATE(4299), 1, + sym_comment, + ACTIONS(2402), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, - anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -447133,21 +406881,69 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [112467] = 7, + aux_sym_unquoted_token2, + [112807] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8653), 1, + aux_sym__immediate_decimal_token2, + STATE(4300), 1, + sym_comment, + ACTIONS(893), 10, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + ACTIONS(895), 28, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [112859] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9417), 1, + ACTIONS(8927), 1, anon_sym_DOT, - STATE(4715), 1, + STATE(4301), 1, sym_comment, - STATE(4793), 1, + STATE(4314), 1, sym_path, - STATE(5251), 1, + STATE(4836), 1, sym_cell_path, - ACTIONS(1012), 2, + ACTIONS(1053), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1010), 34, + ACTIONS(1051), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -447182,20 +406978,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [112523] = 5, + [112915] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9419), 1, + ACTIONS(8929), 1, anon_sym_QMARK2, - STATE(4716), 1, + STATE(4302), 1, sym_comment, - ACTIONS(1072), 3, - anon_sym_LF, + ACTIONS(1026), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1070), 35, + aux_sym_command_token1, + ACTIONS(1024), 35, anon_sym_SEMI, - anon_sym_COLON, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, @@ -447229,20 +407025,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT2, anon_sym_DOT, - [112575] = 5, + [112967] = 10, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9419), 1, - anon_sym_QMARK2, - STATE(4717), 1, - sym_comment, - ACTIONS(1072), 3, + ACTIONS(922), 1, anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1070), 35, + ACTIONS(969), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(971), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(1391), 1, + anon_sym_DOT, + ACTIONS(1407), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8713), 1, + aux_sym_unquoted_token4, + STATE(4303), 1, + sym_comment, + STATE(10080), 1, + sym__immediate_decimal, + ACTIONS(920), 32, anon_sym_SEMI, - anon_sym_COLON, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, @@ -447274,25 +407077,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [112627] = 8, - ACTIONS(113), 1, + [113029] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_LF, - ACTIONS(9421), 1, + ACTIONS(8931), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8933), 1, + aux_sym__immediate_decimal_token2, + STATE(4304), 1, + sym_comment, + ACTIONS(893), 9, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_DOT_DOT2, - ACTIONS(9425), 1, + anon_sym_DOT, sym_filesize_unit, - ACTIONS(9427), 1, + aux_sym_unquoted_token5, + ACTIONS(895), 28, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym_duration_unit, - STATE(4718), 1, + [113083] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8407), 1, + anon_sym_list, + ACTIONS(8935), 1, + anon_sym_GT, + STATE(4305), 1, + sym_comment, + STATE(10642), 1, + sym__all_type, + ACTIONS(8405), 2, + anon_sym_table, + anon_sym_record, + STATE(8245), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(8403), 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, + [113141] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(8937), 1, + anon_sym_QMARK2, + STATE(4306), 1, sym_comment, - ACTIONS(9423), 2, + ACTIONS(1026), 3, + anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(959), 33, + ACTIONS(1024), 35, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -447326,64 +407220,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [112685] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4719), 1, - sym_comment, - ACTIONS(9431), 9, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(9429), 30, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__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, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [112735] = 6, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [113193] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - ACTIONS(4293), 1, + ACTIONS(2231), 1, anon_sym_LF, - STATE(4720), 1, + ACTIONS(8939), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8941), 1, + aux_sym__immediate_decimal_token2, + STATE(4307), 1, sym_comment, - STATE(10698), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4291), 36, + ACTIONS(2229), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -447420,80 +407270,124 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [112789] = 5, - ACTIONS(113), 1, + [113247] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2845), 1, - anon_sym_LF, - STATE(4721), 1, + ACTIONS(8943), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8945), 1, + aux_sym__immediate_decimal_token2, + STATE(4308), 1, sym_comment, - ACTIONS(2851), 2, + ACTIONS(893), 17, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(2843), 36, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + ACTIONS(895), 20, anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [113301] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8947), 1, + aux_sym__immediate_decimal_token2, + STATE(4309), 1, + sym_comment, + ACTIONS(901), 10, + anon_sym_GT, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + ACTIONS(903), 28, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [112841] = 10, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [113353] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(938), 1, - anon_sym_LF, - ACTIONS(1045), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(1047), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(1593), 1, + ACTIONS(8884), 1, anon_sym_DOT, - ACTIONS(1609), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9206), 1, - aux_sym_unquoted_token4, - STATE(4722), 1, + STATE(4258), 1, + sym_path, + STATE(4310), 1, sym_comment, - STATE(10460), 1, - sym__immediate_decimal, - ACTIONS(936), 32, + STATE(4850), 1, + sym_cell_path, + ACTIONS(1004), 4, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1002), 32, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -447519,23 +407413,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [112903] = 5, + anon_sym_DOT_DOT2, + [113409] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9433), 1, + ACTIONS(8937), 1, anon_sym_QMARK2, - STATE(4723), 1, + STATE(4311), 1, sym_comment, - ACTIONS(1072), 3, + ACTIONS(1026), 3, + anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - ACTIONS(1070), 35, + ACTIONS(1024), 35, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -447566,27 +407461,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT2, anon_sym_DOT, - [112955] = 5, + [113461] = 10, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9433), 1, - anon_sym_QMARK2, - STATE(4724), 1, + ACTIONS(969), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(971), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(1391), 1, + anon_sym_DOT, + ACTIONS(1407), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8799), 1, + aux_sym_unquoted_token4, + STATE(4312), 1, sym_comment, - ACTIONS(1072), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + STATE(10080), 1, + sym__immediate_decimal, + ACTIONS(922), 2, + ts_builtin_sym_end, aux_sym_command_token1, - ACTIONS(1070), 35, + ACTIONS(920), 31, anon_sym_SEMI, anon_sym_LF, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [113523] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(4313), 1, + sym_comment, + ACTIONS(1022), 3, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1020), 36, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -447613,27 +407559,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT2, anon_sym_DOT, - [113007] = 4, + [113573] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2439), 1, - anon_sym_LF, - STATE(4725), 1, + ACTIONS(8927), 1, + anon_sym_DOT, + STATE(4314), 1, sym_comment, - ACTIONS(2437), 38, + STATE(4321), 1, + aux_sym_cell_path_repeat1, + STATE(4707), 1, + sym_path, + ACTIONS(1012), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1010), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -447658,19 +407608,18 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - aux_sym_unquoted_token2, - [113057] = 7, + [113629] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9435), 1, + ACTIONS(8886), 1, anon_sym_DOT, - STATE(4726), 1, + STATE(4315), 1, sym_comment, - STATE(4729), 1, + STATE(4319), 1, sym_path, - STATE(5243), 1, + STATE(4895), 1, sym_cell_path, - ACTIONS(1012), 15, + ACTIONS(1004), 15, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -447686,7 +407635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1010), 21, + ACTIONS(1002), 21, sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, @@ -447708,14 +407657,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - [113113] = 4, + [113685] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(1131), 1, anon_sym_LF, - STATE(4727), 1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + ACTIONS(3841), 1, + anon_sym_LPAREN2, + STATE(4316), 1, sym_comment, - ACTIONS(2547), 38, + ACTIONS(1129), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -447728,7 +407681,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -447753,15 +407705,18 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - aux_sym_unquoted_token2, - [113163] = 4, + [113739] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3507), 1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + ACTIONS(1137), 1, anon_sym_LF, - STATE(4728), 1, + ACTIONS(3841), 1, + anon_sym_LPAREN2, + STATE(4317), 1, sym_comment, - ACTIONS(3505), 38, + ACTIONS(1135), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -447774,7 +407729,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -447799,19 +407753,65 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, + [113793] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(3314), 1, + anon_sym_LF, + STATE(4318), 1, + sym_comment, + ACTIONS(1844), 2, + anon_sym_DOT, aux_sym_unquoted_token2, - [113213] = 7, + ACTIONS(3312), 36, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [113845] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9435), 1, + ACTIONS(8886), 1, anon_sym_DOT, - STATE(4729), 1, + STATE(4319), 1, sym_comment, - STATE(4733), 1, + STATE(4334), 1, aux_sym_cell_path_repeat1, - STATE(5049), 1, + STATE(4593), 1, sym_path, - ACTIONS(989), 15, + ACTIONS(1012), 15, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -447827,7 +407827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(987), 21, + ACTIONS(1010), 21, sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, @@ -447849,69 +407849,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - [113269] = 7, + [113901] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8407), 1, + anon_sym_list, + ACTIONS(8949), 1, + anon_sym_GT, + STATE(4320), 1, + sym_comment, + STATE(10432), 1, + sym__all_type, + ACTIONS(8405), 2, + anon_sym_table, + anon_sym_record, + STATE(8245), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(8403), 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, + [113959] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9395), 1, + ACTIONS(8927), 1, anon_sym_DOT, - STATE(4730), 1, + STATE(4321), 1, sym_comment, - STATE(4794), 1, + STATE(4323), 1, aux_sym_cell_path_repeat1, - STATE(5079), 1, + STATE(4707), 1, sym_path, - ACTIONS(989), 4, + ACTIONS(1008), 2, ts_builtin_sym_end, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - ACTIONS(987), 32, - anon_sym_SEMI, anon_sym_LF, + ACTIONS(1006), 34, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - [113325] = 6, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [114015] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9437), 1, - aux_sym__immediate_decimal_token1, - STATE(4731), 1, + STATE(4322), 1, sym_comment, - ACTIONS(2851), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(3750), 2, + ACTIONS(2231), 4, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3748), 34, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2229), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -447922,6 +407969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_not, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -447946,27 +407994,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [113379] = 5, + [114065] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3876), 1, + ACTIONS(8951), 1, + anon_sym_DOT, + STATE(4707), 1, + sym_path, + ACTIONS(987), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(4732), 1, + STATE(4323), 2, sym_comment, - ACTIONS(2006), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(3874), 36, + aux_sym_cell_path_repeat1, + ACTIONS(985), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, anon_sym_DOT_DOT_EQ, @@ -447993,86 +408042,94 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [113431] = 7, - ACTIONS(3), 1, + [114119] = 7, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9435), 1, + ACTIONS(8927), 1, anon_sym_DOT, - STATE(4733), 1, - sym_comment, - STATE(4735), 1, - aux_sym_cell_path_repeat1, - STATE(5049), 1, + STATE(4314), 1, sym_path, - ACTIONS(1008), 15, + STATE(4324), 1, + sym_comment, + STATE(4929), 1, + sym_cell_path, + ACTIONS(1103), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1101), 34, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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(1006), 21, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - [113487] = 4, - ACTIONS(3), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [114175] = 10, + ACTIONS(113), 1, anon_sym_POUND, - STATE(4734), 1, - sym_comment, - ACTIONS(1109), 7, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT2, + ACTIONS(969), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(971), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(1391), 1, anon_sym_DOT, - ACTIONS(1111), 32, - anon_sym_COMMA, + ACTIONS(1407), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8643), 1, + aux_sym_unquoted_token4, + STATE(4325), 1, + sym_comment, + STATE(10080), 1, + sym__immediate_decimal, + ACTIONS(922), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(920), 31, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -448086,19 +408143,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [113537] = 6, + [114237] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9439), 1, + ACTIONS(969), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(1391), 1, anon_sym_DOT, - STATE(5049), 1, - sym_path, - STATE(4735), 2, + ACTIONS(1407), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(1409), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8777), 1, + aux_sym_unquoted_token4, + STATE(4326), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1001), 15, + STATE(10080), 1, + sym__immediate_decimal, + ACTIONS(922), 13, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -448109,12 +408171,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(999), 21, + ACTIONS(920), 20, sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, @@ -448135,34 +408195,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - [113591] = 4, - ACTIONS(3), 1, + [114299] = 6, + ACTIONS(113), 1, anon_sym_POUND, - STATE(4736), 1, + ACTIONS(8954), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8956), 1, + aux_sym_unquoted_token2, + STATE(4327), 1, sym_comment, - ACTIONS(9444), 9, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(9442), 30, + ACTIONS(922), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LPAREN2, + ACTIONS(920), 34, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -448170,50 +408234,50 @@ 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, - [113641] = 6, - ACTIONS(3), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [114353] = 7, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9401), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(9446), 1, + ACTIONS(8958), 1, anon_sym_DOT, - STATE(4737), 1, + STATE(4328), 1, sym_comment, - ACTIONS(923), 9, + STATE(4395), 1, + sym_path, + STATE(4897), 1, + sym_cell_path, + ACTIONS(994), 4, + ts_builtin_sym_end, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_command_token1, + ACTIONS(992), 32, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token5, - ACTIONS(925), 28, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -448226,167 +408290,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [113695] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(4008), 1, - anon_sym_LF, - STATE(4738), 1, - sym_comment, - ACTIONS(4012), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(4006), 36, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [113747] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1290), 1, - anon_sym_LPAREN2, - ACTIONS(9449), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(4739), 1, - sym_comment, - ACTIONS(1243), 37, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [113799] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(3522), 1, - anon_sym_LPAREN2, - STATE(4740), 1, - sym_comment, - ACTIONS(1934), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(3520), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3518), 34, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [113853] = 7, + anon_sym_or, + anon_sym_DOT_DOT2, + [114409] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9417), 1, - anon_sym_DOT, - STATE(4741), 1, + ACTIONS(8920), 1, + aux_sym__immediate_decimal_token2, + STATE(4329), 1, sym_comment, - STATE(4793), 1, - sym_path, - STATE(5328), 1, - sym_cell_path, - ACTIONS(1156), 2, + ACTIONS(2358), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1154), 34, + ACTIONS(2356), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -448397,6 +408313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_not, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -448421,30 +408338,29 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [113909] = 6, + aux_sym_unquoted_token2, + [114461] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - ACTIONS(4325), 1, - anon_sym_LF, - STATE(4742), 1, + STATE(4330), 1, sym_comment, - STATE(11424), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4323), 36, + ACTIONS(2364), 4, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2362), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -448469,20 +408385,17 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [113963] = 6, + [114511] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(6546), 1, - anon_sym_DOT_DOT2, - STATE(4743), 1, + STATE(4331), 1, sym_comment, - ACTIONS(1160), 2, + ACTIONS(2404), 4, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6548), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1158), 34, + ACTIONS(2402), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -448493,6 +408406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_not, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -448517,18 +408431,17 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [114017] = 6, + [114561] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(938), 1, + ACTIONS(3356), 1, anon_sym_LF, - ACTIONS(6480), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9451), 1, - aux_sym_unquoted_token2, - STATE(4744), 1, + STATE(4332), 1, sym_comment, - ACTIONS(936), 36, + ACTIONS(3362), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(3354), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -448565,18 +408478,16 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [114071] = 6, + [114613] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - ACTIONS(4377), 1, + ACTIONS(1026), 1, anon_sym_LF, - STATE(4745), 1, + ACTIONS(8960), 1, + anon_sym_QMARK2, + STATE(4333), 1, sym_comment, - STATE(11424), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4375), 36, + ACTIONS(1024), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -448589,6 +408500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -448613,89 +408525,142 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [114125] = 10, - ACTIONS(113), 1, + [114665] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3682), 1, - aux_sym_unquoted_token5, - ACTIONS(9453), 1, - anon_sym_DOT_DOT2, - ACTIONS(9455), 1, + ACTIONS(8886), 1, anon_sym_DOT, - ACTIONS(9459), 1, - sym_filesize_unit, - ACTIONS(9461), 1, - sym_duration_unit, - STATE(4746), 1, + STATE(4334), 1, sym_comment, - ACTIONS(961), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(9457), 2, + STATE(4335), 1, + aux_sym_cell_path_repeat1, + STATE(4593), 1, + sym_path, + ACTIONS(1008), 15, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(959), 30, - anon_sym_SEMI, - anon_sym_PIPE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1006), 21, + sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [114187] = 4, + anon_sym_DOT_DOT2, + [114721] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4747), 1, + ACTIONS(8962), 1, + anon_sym_DOT, + STATE(4593), 1, + sym_path, + STATE(4335), 2, sym_comment, - ACTIONS(1113), 7, + aux_sym_cell_path_repeat1, + ACTIONS(987), 15, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(985), 21, + sym_cmd_identifier, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + [114775] = 10, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(961), 1, anon_sym_DOT_DOT2, + ACTIONS(8909), 1, + aux_sym_unquoted_token5, + ACTIONS(8965), 1, anon_sym_DOT, - ACTIONS(1115), 32, - anon_sym_COMMA, + ACTIONS(8967), 1, + sym_filesize_unit, + ACTIONS(8969), 1, + sym_duration_unit, + STATE(4336), 1, + sym_comment, + ACTIONS(940), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(965), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(938), 30, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -448709,23 +408674,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [114237] = 7, + [114837] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9417), 1, - anon_sym_DOT, - STATE(4748), 1, + ACTIONS(8660), 1, + aux_sym__immediate_decimal_token2, + STATE(4337), 1, sym_comment, - STATE(4793), 1, - sym_path, - STATE(5337), 1, - sym_cell_path, - ACTIONS(1192), 2, + ACTIONS(2231), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1190), 34, + ACTIONS(2229), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -448736,6 +408695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_not, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -448760,66 +408720,18 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [114293] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9463), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9465), 1, - aux_sym__immediate_decimal_token2, - STATE(4749), 1, - sym_comment, - ACTIONS(909), 16, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token5, - ACTIONS(911), 21, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [114347] = 6, + aux_sym_unquoted_token2, + [114889] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2583), 1, + ACTIONS(3773), 1, anon_sym_LF, - ACTIONS(9467), 1, - anon_sym_DOT, - ACTIONS(9469), 1, - aux_sym__immediate_decimal_token2, - STATE(4750), 1, + STATE(4338), 1, sym_comment, - ACTIONS(2581), 36, + ACTIONS(1886), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(3771), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -448856,20 +408768,22 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [114401] = 5, + [114941] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9361), 1, - aux_sym__immediate_decimal_token2, - STATE(4751), 1, + ACTIONS(8925), 1, + anon_sym_QMARK2, + STATE(4339), 1, sym_comment, - ACTIONS(925), 4, + ACTIONS(1026), 3, + anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - sym__entry_separator, - ACTIONS(923), 34, - anon_sym_RBRACK, + ACTIONS(1024), 35, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -448901,79 +408815,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT2, anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - [114453] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9471), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9473), 1, - aux_sym__immediate_decimal_token2, - STATE(4752), 1, - sym_comment, - ACTIONS(909), 17, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token5, - ACTIONS(911), 20, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [114507] = 6, + [114993] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9475), 1, - anon_sym_DOT_DOT2, - STATE(4753), 1, - sym_comment, - ACTIONS(3951), 2, - ts_builtin_sym_end, + ACTIONS(5788), 1, anon_sym_LF, - ACTIONS(9477), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3949), 34, + STATE(4340), 1, + sym_comment, + ACTIONS(5786), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_else, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, + anon_sym_catch, anon_sym_not, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -448999,75 +408861,23 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [114561] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4754), 1, - sym_comment, - ACTIONS(1117), 7, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1119), 32, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [114611] = 7, + [115043] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9198), 1, - anon_sym_DOT, - STATE(4576), 1, - sym_path, - STATE(4755), 1, + STATE(4341), 1, sym_comment, - STATE(5349), 1, - sym_cell_path, - ACTIONS(1012), 3, + ACTIONS(895), 5, + ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1010), 33, + sym_duration_unit, + ACTIONS(893), 34, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -449094,20 +408904,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - [114667] = 6, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + [115093] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4342), 1, + sym_comment, + ACTIONS(8973), 9, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(8971), 30, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__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, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + [115143] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4010), 1, - anon_sym_LPAREN2, - STATE(4756), 1, + ACTIONS(6009), 1, + anon_sym_DOT_DOT2, + STATE(4343), 1, sym_comment, - ACTIONS(4008), 2, + ACTIONS(3759), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4012), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(4006), 34, + ACTIONS(6011), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3757), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -449142,28 +409001,30 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [114721] = 4, + [115197] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(4757), 1, - sym_comment, - ACTIONS(2439), 4, - ts_builtin_sym_end, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + ACTIONS(4198), 1, anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2437), 35, + STATE(4344), 1, + sym_comment, + STATE(9996), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4196), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -449188,17 +409049,21 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [114771] = 4, + [115251] = 7, ACTIONS(113), 1, anon_sym_POUND, - STATE(4758), 1, + ACTIONS(8927), 1, + anon_sym_DOT, + STATE(4314), 1, + sym_path, + STATE(4345), 1, sym_comment, - ACTIONS(2549), 4, + STATE(4894), 1, + sym_cell_path, + ACTIONS(1099), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2547), 35, + ACTIONS(1097), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -449209,7 +409074,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_not, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -449234,75 +409098,116 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [114821] = 7, + [115307] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9435), 1, - anon_sym_DOT, - STATE(4729), 1, - sym_path, - STATE(4759), 1, + STATE(4346), 1, sym_comment, - STATE(5242), 1, - sym_cell_path, - ACTIONS(997), 15, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(8977), 9, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(8975), 30, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + 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(995), 21, - sym_cmd_identifier, - anon_sym_GT, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + [115357] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(4347), 1, + sym_comment, + ACTIONS(1063), 4, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1061), 35, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, anon_sym_DOT_DOT2, - [114877] = 4, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [115407] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(4760), 1, + STATE(4348), 1, sym_comment, - ACTIONS(1061), 3, + ACTIONS(903), 5, + ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1059), 36, + sym_duration_unit, + ACTIONS(901), 34, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -449329,26 +409234,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT2, anon_sym_DOT, - [114927] = 4, + sym_filesize_unit, + aux_sym_unquoted_token5, + [115457] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(4761), 1, + ACTIONS(6009), 1, + anon_sym_DOT_DOT2, + STATE(4349), 1, sym_comment, - ACTIONS(1065), 3, + ACTIONS(1091), 2, + ts_builtin_sym_end, anon_sym_LF, + ACTIONS(6011), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1063), 36, + ACTIONS(1089), 34, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [115511] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(4350), 1, + sym_comment, + ACTIONS(936), 5, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + ACTIONS(934), 34, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -449375,19 +409328,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT2, anon_sym_DOT, - [114977] = 6, + sym_filesize_unit, + aux_sym_unquoted_token5, + [115561] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4351), 1, + sym_comment, + ACTIONS(901), 14, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token5, + ACTIONS(903), 25, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_LPAREN2, + 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_token1, + aux_sym__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, + [115611] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9411), 1, + ACTIONS(8979), 1, aux_sym__immediate_decimal_token2, - ACTIONS(9479), 1, - anon_sym_DOT, - STATE(4762), 1, + STATE(4352), 1, sym_comment, - ACTIONS(2583), 2, + ACTIONS(2364), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(2581), 35, + ACTIONS(2362), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -449398,6 +409397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_not, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -449423,28 +409423,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, aux_sym_unquoted_token2, - [115031] = 4, + [115663] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(4763), 1, - sym_comment, - ACTIONS(3507), 4, - ts_builtin_sym_end, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + ACTIONS(4344), 1, anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3505), 35, + STATE(4353), 1, + sym_comment, + STATE(10434), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4342), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -449469,27 +409471,30 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [115081] = 4, + [115717] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(4764), 1, - sym_comment, - ACTIONS(2439), 3, - ts_builtin_sym_end, - anon_sym_LF, + ACTIONS(2187), 1, anon_sym_LPAREN2, - ACTIONS(2437), 36, + ACTIONS(4396), 1, + anon_sym_LF, + STATE(4354), 1, + sym_comment, + STATE(10434), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4394), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -449514,117 +409519,23 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - aux_sym_unquoted_token2, - [115131] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(4765), 1, - sym_comment, - ACTIONS(1061), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - ACTIONS(1059), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_LF2, - [115181] = 4, + [115771] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(4766), 1, + STATE(4355), 1, sym_comment, - ACTIONS(1065), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - ACTIONS(1063), 36, - anon_sym_SEMI, + ACTIONS(903), 5, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_LF2, - [115231] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(4767), 1, - sym_comment, - ACTIONS(1061), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - ACTIONS(1059), 36, + sym_duration_unit, + ACTIONS(901), 34, anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_QMARK2, anon_sym_STAR_STAR, @@ -449653,165 +409564,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT2, anon_sym_DOT, - [115281] = 4, + sym_filesize_unit, + [115821] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(4768), 1, - sym_comment, - ACTIONS(1065), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - ACTIONS(1063), 36, - anon_sym_SEMI, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + ACTIONS(4424), 1, anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [115331] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4769), 1, - sym_comment, - ACTIONS(1059), 13, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT, - ACTIONS(1061), 26, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [115381] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4770), 1, - sym_comment, - ACTIONS(1063), 13, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT, - ACTIONS(1065), 26, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [115431] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(4771), 1, + STATE(4356), 1, sym_comment, - ACTIONS(2549), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_LPAREN2, - ACTIONS(2547), 36, + STATE(10434), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4422), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -449836,28 +409613,30 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - aux_sym_unquoted_token2, - [115481] = 4, + [115875] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(4772), 1, - sym_comment, - ACTIONS(3507), 3, - ts_builtin_sym_end, - anon_sym_LF, + ACTIONS(2187), 1, anon_sym_LPAREN2, - ACTIONS(3505), 36, + ACTIONS(4428), 1, + anon_sym_LF, + STATE(4357), 1, + sym_comment, + STATE(10434), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4426), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -449882,29 +409661,76 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - aux_sym_unquoted_token2, - [115531] = 6, + [115929] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - ACTIONS(4531), 1, + ACTIONS(8981), 1, + anon_sym_DOT, + STATE(4617), 1, + sym_path, + STATE(4358), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(987), 4, + ts_builtin_sym_end, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_command_token1, + ACTIONS(985), 32, + anon_sym_SEMI, anon_sym_LF, - STATE(4773), 1, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + [115983] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(8984), 1, + aux_sym__immediate_decimal_token1, + STATE(4359), 1, sym_comment, - STATE(11424), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4529), 36, + ACTIONS(3362), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(3576), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3574), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, anon_sym_DOT_DOT_EQ, @@ -449931,20 +409757,21 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [115585] = 6, + [116037] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9482), 1, - anon_sym_DOT_DOT2, - STATE(4774), 1, + ACTIONS(8927), 1, + anon_sym_DOT, + STATE(4314), 1, + sym_path, + STATE(4360), 1, sym_comment, - ACTIONS(4045), 2, + STATE(5008), 1, + sym_cell_path, + ACTIONS(1059), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(9484), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(4043), 34, + ACTIONS(1057), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -449979,18 +409806,62 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [115639] = 6, + [116093] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8986), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8988), 1, + aux_sym__immediate_decimal_token2, + STATE(4361), 1, + sym_comment, + ACTIONS(893), 10, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + ACTIONS(895), 27, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [116147] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - ACTIONS(4535), 1, + ACTIONS(1022), 1, anon_sym_LF, - STATE(4775), 1, + STATE(4362), 1, sym_comment, - STATE(11424), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4533), 36, + ACTIONS(1020), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -450002,7 +409873,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT, + anon_sym_QMARK2, anon_sym_not, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -450027,16 +409900,16 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [115693] = 6, + [116197] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9486), 1, + ACTIONS(8990), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9488), 1, + ACTIONS(8992), 1, aux_sym__immediate_decimal_token2, - STATE(4776), 1, + STATE(4363), 1, sym_comment, - ACTIONS(2437), 14, + ACTIONS(2229), 14, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, @@ -450051,7 +409924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token2, - ACTIONS(2439), 23, + ACTIONS(2231), 23, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_not, @@ -450075,37 +409948,39 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [115747] = 4, - ACTIONS(3), 1, + [116251] = 7, + ACTIONS(113), 1, anon_sym_POUND, - STATE(4777), 1, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + ACTIONS(3727), 1, + anon_sym_LPAREN2, + ACTIONS(4646), 1, + ts_builtin_sym_end, + ACTIONS(8994), 1, + aux_sym_command_token1, + STATE(4364), 1, sym_comment, - ACTIONS(909), 14, + ACTIONS(3725), 35, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, + anon_sym_not, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token5, - ACTIONS(911), 25, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_LPAREN2, - 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -450113,89 +409988,35 @@ 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_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [115797] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8890), 1, - anon_sym_list, - ACTIONS(9490), 1, - anon_sym_GT, - STATE(4778), 1, - sym_comment, - STATE(10903), 1, - sym__all_type, - ACTIONS(8888), 2, - anon_sym_table, - anon_sym_record, - STATE(8635), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(8886), 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, - [115855] = 10, + [116307] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1045), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(1047), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(1593), 1, + ACTIONS(8996), 1, anon_sym_DOT, - ACTIONS(1609), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9194), 1, - aux_sym_unquoted_token4, - STATE(4779), 1, + STATE(4566), 1, + sym_path, + STATE(4365), 2, sym_comment, - STATE(10460), 1, - sym__immediate_decimal, - ACTIONS(938), 2, + aux_sym_cell_path_repeat1, + ACTIONS(987), 4, ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(936), 31, - anon_sym_SEMI, anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(985), 32, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -450223,37 +410044,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [115917] = 4, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + [116361] = 5, + ACTIONS(113), 1, anon_sym_POUND, - STATE(4780), 1, + ACTIONS(3646), 1, + anon_sym_LF, + STATE(4366), 1, sym_comment, - ACTIONS(917), 14, + ACTIONS(3650), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(3644), 36, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, + anon_sym_not, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token5, - ACTIONS(919), 25, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_LPAREN2, - 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -450261,143 +410083,46 @@ 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_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [115967] = 6, + [116413] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9238), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(9492), 1, - anon_sym_DOT, - STATE(4781), 1, - sym_comment, - ACTIONS(925), 5, - ts_builtin_sym_end, + ACTIONS(1026), 1, anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - ACTIONS(923), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - sym_filesize_unit, - [116021] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8890), 1, - anon_sym_list, - ACTIONS(9494), 1, - anon_sym_GT, - STATE(4782), 1, - sym_comment, - STATE(11238), 1, - sym__all_type, - ACTIONS(8888), 2, - anon_sym_table, - anon_sym_record, - STATE(8635), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(8886), 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, - [116079] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4783), 1, + ACTIONS(8960), 1, + anon_sym_QMARK2, + STATE(4367), 1, sym_comment, - ACTIONS(950), 14, + ACTIONS(1024), 37, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, + anon_sym_not, anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token5, - ACTIONS(952), 25, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_LPAREN2, - 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -450405,45 +410130,50 @@ 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_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [116129] = 4, - ACTIONS(3), 1, + [116465] = 7, + ACTIONS(113), 1, anon_sym_POUND, - STATE(4784), 1, + ACTIONS(8884), 1, + anon_sym_DOT, + STATE(4258), 1, + sym_path, + STATE(4368), 1, sym_comment, - ACTIONS(1172), 6, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT2, - ACTIONS(1174), 33, - anon_sym_COLON, - anon_sym_COMMA, + STATE(5001), 1, + sym_cell_path, + ACTIONS(994), 4, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(992), 32, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -450457,27 +410187,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [116179] = 4, + anon_sym_DOT_DOT2, + [116521] = 7, ACTIONS(113), 1, anon_sym_POUND, - STATE(4785), 1, + ACTIONS(8958), 1, + anon_sym_DOT, + STATE(4358), 1, + aux_sym_cell_path_repeat1, + STATE(4369), 1, sym_comment, - ACTIONS(919), 5, + STATE(4617), 1, + sym_path, + ACTIONS(1008), 4, ts_builtin_sym_end, - anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - ACTIONS(917), 34, + aux_sym_command_token1, + ACTIONS(1006), 32, anon_sym_SEMI, + anon_sym_LF, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -450503,30 +410237,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - [116229] = 4, + [116577] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(4786), 1, - sym_comment, - ACTIONS(4002), 4, - ts_builtin_sym_end, + ACTIONS(922), 1, anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(4000), 35, + ACTIONS(6290), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8999), 1, + aux_sym_unquoted_token2, + STATE(4370), 1, + sym_comment, + ACTIONS(920), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -450551,25 +410285,31 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [116279] = 5, + [116631] = 8, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9296), 1, - aux_sym__immediate_decimal_token2, - STATE(4787), 1, + ACTIONS(9001), 1, + anon_sym_DOT_DOT2, + ACTIONS(9005), 1, + sym_filesize_unit, + ACTIONS(9007), 1, + sym_duration_unit, + STATE(4371), 1, sym_comment, - ACTIONS(911), 4, + ACTIONS(940), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(9003), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - sym__entry_separator, - ACTIONS(909), 34, - anon_sym_RBRACK, + ACTIONS(938), 32, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -450594,30 +410334,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - [116331] = 4, + [116689] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(4788), 1, + ACTIONS(8929), 1, + anon_sym_QMARK2, + STATE(4372), 1, sym_comment, - ACTIONS(1061), 3, - anon_sym_LF, + ACTIONS(1026), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1059), 36, + aux_sym_command_token1, + ACTIONS(1024), 35, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -450644,45 +410382,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT2, anon_sym_DOT, - [116381] = 10, - ACTIONS(113), 1, + [116741] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(979), 1, - anon_sym_DOT_DOT2, - ACTIONS(9405), 1, - aux_sym_unquoted_token5, - ACTIONS(9459), 1, - sym_filesize_unit, - ACTIONS(9461), 1, - sym_duration_unit, - ACTIONS(9496), 1, - anon_sym_DOT, - STATE(4789), 1, + ACTIONS(9009), 1, + anon_sym_QMARK2, + STATE(4373), 1, sym_comment, - ACTIONS(961), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(983), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(959), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1024), 13, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT, + ACTIONS(1026), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -450693,34 +410429,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [116443] = 7, - ACTIONS(113), 1, + [116793] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9417), 1, - anon_sym_DOT, - STATE(4790), 1, + ACTIONS(8407), 1, + anon_sym_list, + ACTIONS(9011), 1, + anon_sym_GT, + STATE(4374), 1, sym_comment, - STATE(4793), 1, - sym_path, - STATE(5373), 1, - sym_cell_path, - ACTIONS(1150), 2, - ts_builtin_sym_end, + STATE(10359), 1, + sym__all_type, + ACTIONS(8405), 2, + anon_sym_table, + anon_sym_record, + STATE(8245), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(8403), 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, + [116851] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1035), 1, anon_sym_LF, - ACTIONS(1148), 34, + STATE(4375), 1, + sym_comment, + ACTIONS(1033), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, + anon_sym_QMARK2, anon_sym_not, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -450745,17 +410525,17 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [116499] = 4, + [116901] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(4791), 1, + STATE(4376), 1, sym_comment, - ACTIONS(3962), 4, + ACTIONS(3723), 4, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(3960), 35, + ACTIONS(3721), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -450791,70 +410571,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [116549] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(9417), 1, - anon_sym_DOT, - STATE(4792), 1, - sym_comment, - STATE(4793), 1, - sym_path, - STATE(5374), 1, - sym_cell_path, - ACTIONS(1181), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1179), 34, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [116605] = 7, + [116951] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9417), 1, - anon_sym_DOT, - STATE(4793), 1, + ACTIONS(9013), 1, + anon_sym_DOT_DOT2, + STATE(4377), 1, sym_comment, - STATE(4799), 1, - aux_sym_cell_path_repeat1, - STATE(5115), 1, - sym_path, - ACTIONS(989), 2, + ACTIONS(3693), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(987), 34, + ACTIONS(9015), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3691), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -450889,25 +410619,21 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [116661] = 7, + [117005] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9395), 1, - anon_sym_DOT, - STATE(4794), 1, + ACTIONS(9017), 1, + anon_sym_QMARK2, + STATE(4378), 1, sym_comment, - STATE(4808), 1, - aux_sym_cell_path_repeat1, - STATE(5079), 1, - sym_path, - ACTIONS(1008), 4, - ts_builtin_sym_end, + ACTIONS(1026), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, aux_sym_command_token1, - ACTIONS(1006), 32, + ACTIONS(1024), 35, anon_sym_SEMI, anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, @@ -450938,21 +410664,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - [116717] = 7, + anon_sym_DOT, + anon_sym_LF2, + [117057] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9417), 1, - anon_sym_DOT, - STATE(4793), 1, - sym_path, - STATE(4795), 1, + ACTIONS(9019), 1, + anon_sym_DOT_DOT2, + STATE(4379), 1, sym_comment, - STATE(5390), 1, - sym_cell_path, - ACTIONS(1205), 2, + ACTIONS(3701), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1203), 34, + ACTIONS(9021), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3699), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -450987,77 +410714,75 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [116773] = 7, + [117111] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9417), 1, - anon_sym_DOT, - STATE(4793), 1, - sym_path, - STATE(4796), 1, + ACTIONS(9017), 1, + anon_sym_QMARK2, + STATE(4380), 1, sym_comment, - STATE(5405), 1, - sym_cell_path, - ACTIONS(1188), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1186), 34, + ACTIONS(1026), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_command_token1, + ACTIONS(1024), 35, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_GT, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [116829] = 4, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_LF2, + [117163] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(6222), 1, - anon_sym_LF, - STATE(4797), 1, + STATE(4381), 1, sym_comment, - ACTIONS(6220), 38, + ACTIONS(1070), 4, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1068), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_else, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_catch, anon_sym_not, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -451082,20 +410807,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [116879] = 6, + [117213] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2847), 1, - anon_sym_LPAREN2, - STATE(4798), 1, + ACTIONS(9023), 1, + anon_sym_DOT_DOT2, + STATE(4382), 1, sym_comment, - ACTIONS(2845), 2, + ACTIONS(3713), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(2851), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(2843), 34, + ACTIONS(9025), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3711), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -451130,21 +410855,21 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [116933] = 7, + [117267] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9417), 1, + ACTIONS(8927), 1, anon_sym_DOT, - STATE(4799), 1, - sym_comment, - STATE(4803), 1, - aux_sym_cell_path_repeat1, - STATE(5115), 1, + STATE(4314), 1, sym_path, - ACTIONS(1008), 2, + STATE(4383), 1, + sym_comment, + STATE(4860), 1, + sym_cell_path, + ACTIONS(1087), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1006), 34, + ACTIONS(1085), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -451179,25 +410904,34 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [116989] = 4, + [117323] = 10, ACTIONS(113), 1, anon_sym_POUND, - STATE(4800), 1, + ACTIONS(3433), 1, + aux_sym_unquoted_token5, + ACTIONS(8967), 1, + sym_filesize_unit, + ACTIONS(8969), 1, + sym_duration_unit, + ACTIONS(9027), 1, + anon_sym_DOT_DOT2, + ACTIONS(9029), 1, + anon_sym_DOT, + STATE(4384), 1, sym_comment, - ACTIONS(911), 5, + ACTIONS(940), 2, ts_builtin_sym_end, anon_sym_LF, + ACTIONS(9031), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - ACTIONS(909), 34, + ACTIONS(938), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -451222,191 +410956,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - [117039] = 10, + [117385] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1045), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(1593), 1, - anon_sym_DOT, - ACTIONS(1609), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(1611), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9121), 1, - aux_sym_unquoted_token4, - STATE(4801), 1, - sym_comment, - STATE(10460), 1, - sym__immediate_decimal, - ACTIONS(938), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(936), 20, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [117101] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(9498), 1, - aux_sym__immediate_decimal_token2, - STATE(4802), 1, + ACTIONS(9009), 1, + anon_sym_QMARK2, + STATE(4385), 1, sym_comment, - ACTIONS(919), 4, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - sym__entry_separator, - ACTIONS(917), 34, - anon_sym_RBRACK, + ACTIONS(1024), 13, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - [117153] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(9500), 1, anon_sym_DOT, - STATE(5115), 1, - sym_path, - ACTIONS(1001), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(4803), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(999), 34, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(1026), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [117207] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(9375), 1, - anon_sym_DOT, - STATE(4804), 1, - sym_comment, - STATE(4807), 1, - sym_path, - STATE(5249), 1, - sym_cell_path, - ACTIONS(1012), 4, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1010), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -451417,128 +411003,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - [117263] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(9503), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9505), 1, - aux_sym_unquoted_token2, - STATE(4805), 1, - sym_comment, - ACTIONS(938), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_LPAREN2, - ACTIONS(936), 34, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [117317] = 4, + [117437] = 7, ACTIONS(113), 1, anon_sym_POUND, - STATE(4806), 1, + ACTIONS(8679), 1, + anon_sym_DOT, + STATE(4113), 1, + sym_path, + STATE(4386), 1, sym_comment, - ACTIONS(1065), 3, + STATE(5047), 1, + sym_cell_path, + ACTIONS(1004), 3, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1063), 36, + ACTIONS(1002), 33, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, anon_sym_STAR, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [117367] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(9375), 1, - anon_sym_DOT, - STATE(4807), 1, - sym_comment, - STATE(4811), 1, - aux_sym_cell_path_repeat1, - STATE(5162), 1, - sym_path, - ACTIONS(989), 4, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(987), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -451564,141 +411052,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - [117423] = 6, - ACTIONS(113), 1, + [117493] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9507), 1, - anon_sym_DOT, - STATE(5079), 1, - sym_path, - STATE(4808), 2, + STATE(4387), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1001), 4, - ts_builtin_sym_end, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - ACTIONS(999), 32, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, + ACTIONS(1068), 6, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_DOT_DOT2, - [117477] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(3878), 1, - anon_sym_LPAREN2, - STATE(4809), 1, - sym_comment, - ACTIONS(2006), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(3876), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3874), 34, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [117531] = 10, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1045), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(1047), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(1593), 1, - anon_sym_DOT, - ACTIONS(1609), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9162), 1, - aux_sym_unquoted_token4, - STATE(4810), 1, - sym_comment, - STATE(10460), 1, - sym__immediate_decimal, - ACTIONS(938), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(936), 31, - anon_sym_SEMI, + ACTIONS(1070), 33, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -451712,30 +411096,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [117593] = 7, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [117543] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9375), 1, - anon_sym_DOT, - STATE(4811), 1, + STATE(4388), 1, sym_comment, - STATE(4814), 1, - aux_sym_cell_path_repeat1, - STATE(5162), 1, - sym_path, - ACTIONS(1008), 4, + ACTIONS(936), 5, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1006), 32, + sym_duration_unit, + ACTIONS(934), 34, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -451761,18 +411142,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - [117649] = 6, + anon_sym_DOT, + sym_filesize_unit, + [117593] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1249), 1, + ACTIONS(1091), 1, anon_sym_LF, - ACTIONS(1251), 1, + ACTIONS(1149), 1, aux_sym_unquoted_token6, - ACTIONS(4037), 1, + ACTIONS(3783), 1, anon_sym_LPAREN2, - STATE(4812), 1, + STATE(4389), 1, sym_comment, - ACTIONS(1247), 36, + ACTIONS(1089), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -451809,23 +411192,120 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [117703] = 7, + [117647] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9395), 1, + ACTIONS(8927), 1, anon_sym_DOT, - STATE(4730), 1, + STATE(4314), 1, sym_path, - STATE(4813), 1, + STATE(4390), 1, sym_comment, - STATE(5333), 1, + STATE(4921), 1, + sym_cell_path, + ACTIONS(1095), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1093), 34, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [117703] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9033), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9035), 1, + aux_sym__immediate_decimal_token2, + STATE(4391), 1, + sym_comment, + ACTIONS(893), 9, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + ACTIONS(895), 28, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [117757] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(8958), 1, + anon_sym_DOT, + STATE(4392), 1, + sym_comment, + STATE(4395), 1, + sym_path, + STATE(4980), 1, sym_cell_path, - ACTIONS(997), 4, + ACTIONS(1004), 4, ts_builtin_sym_end, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, aux_sym_command_token1, - ACTIONS(995), 32, + ACTIONS(1002), 32, anon_sym_SEMI, anon_sym_LF, anon_sym_PIPE, @@ -451858,28 +411338,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - [117759] = 6, + [117813] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9510), 1, - anon_sym_DOT, - STATE(5162), 1, - sym_path, - STATE(4814), 2, + ACTIONS(9037), 1, + aux_sym__immediate_decimal_token2, + STATE(4393), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1001), 4, - ts_builtin_sym_end, - anon_sym_LF, + ACTIONS(903), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(999), 32, - anon_sym_SEMI, - anon_sym_PIPE, + sym_duration_unit, + sym__entry_separator, + ACTIONS(901), 34, + anon_sym_RBRACK, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -451906,28 +411382,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - [117813] = 6, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + [117865] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1255), 1, - anon_sym_LF, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - ACTIONS(4631), 1, - anon_sym_LPAREN2, - STATE(4815), 1, + ACTIONS(9039), 1, + anon_sym_DOT_DOT2, + STATE(4394), 1, sym_comment, - ACTIONS(1253), 36, + ACTIONS(3743), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(9041), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3741), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, anon_sym_DOT_DOT_EQ, @@ -451954,16 +411433,64 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [117867] = 5, + [117919] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1072), 1, + ACTIONS(8958), 1, + anon_sym_DOT, + STATE(4369), 1, + aux_sym_cell_path_repeat1, + STATE(4395), 1, + sym_comment, + STATE(4617), 1, + sym_path, + ACTIONS(1012), 4, + ts_builtin_sym_end, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_command_token1, + ACTIONS(1010), 32, + anon_sym_SEMI, anon_sym_LF, - ACTIONS(9354), 1, - anon_sym_QMARK2, - STATE(4816), 1, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + [117975] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(4396), 1, sym_comment, - ACTIONS(1070), 37, + ACTIONS(1157), 2, + anon_sym_LF, + anon_sym_LPAREN2, + ACTIONS(1155), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -451976,7 +411503,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -452001,26 +411527,25 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [117919] = 4, + aux_sym_unquoted_token6, + [118025] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1061), 1, - anon_sym_LF, - STATE(4817), 1, + STATE(4397), 1, sym_comment, - ACTIONS(1059), 38, + ACTIONS(2404), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2402), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_QMARK2, anon_sym_not, anon_sym_DOT, anon_sym_DOT_DOT_EQ, @@ -452047,18 +411572,17 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [117969] = 6, + aux_sym_unquoted_token2, + [118074] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - ACTIONS(1275), 1, + ACTIONS(2364), 1, anon_sym_LF, - ACTIONS(4631), 1, - anon_sym_LPAREN2, - STATE(4818), 1, + ACTIONS(9043), 1, + aux_sym__immediate_decimal_token2, + STATE(4398), 1, sym_comment, - ACTIONS(1273), 36, + ACTIONS(2362), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -452095,28 +411619,29 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [118023] = 4, + [118125] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1065), 1, - anon_sym_LF, - STATE(4819), 1, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + ACTIONS(3727), 1, + anon_sym_LPAREN2, + STATE(4399), 1, sym_comment, - ACTIONS(1063), 38, + ACTIONS(1161), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1159), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_QMARK2, anon_sym_not, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -452141,20 +411666,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [118073] = 6, + [118178] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9513), 1, - anon_sym_DOT_DOT2, - STATE(4820), 1, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + STATE(4400), 1, sym_comment, - ACTIONS(3966), 2, + STATE(10197), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4198), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(9515), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3964), 34, + ACTIONS(4196), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -452189,26 +411713,26 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [118127] = 5, + [118231] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(4821), 1, - sym_comment, - ACTIONS(4008), 2, - ts_builtin_sym_end, + ACTIONS(4725), 1, anon_sym_LF, - ACTIONS(4012), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(4006), 34, + ACTIONS(9045), 1, + anon_sym_EQ, + STATE(4401), 1, + sym_comment, + ACTIONS(4721), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, anon_sym_DOT_DOT_EQ, @@ -452235,15 +411759,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [118178] = 4, + [118282] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(4822), 1, + STATE(4402), 1, sym_comment, - ACTIONS(938), 2, + ACTIONS(1213), 2, anon_sym_LF, anon_sym_LPAREN2, - ACTIONS(936), 36, + ACTIONS(1211), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -452280,32 +411804,24 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [118227] = 10, + [118331] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1045), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(1047), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(1593), 1, - anon_sym_DOT, - ACTIONS(1609), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9405), 1, - aux_sym_unquoted_token4, - STATE(4823), 1, + STATE(4403), 1, sym_comment, - STATE(10460), 1, - sym__immediate_decimal, - ACTIONS(938), 2, - ts_builtin_sym_end, + ACTIONS(1049), 3, anon_sym_LF, - ACTIONS(936), 30, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1047), 35, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -452331,16 +411847,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [118288] = 5, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [118380] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2583), 1, + ACTIONS(1145), 1, anon_sym_LF, - ACTIONS(9469), 1, - aux_sym__immediate_decimal_token2, - STATE(4824), 1, + ACTIONS(9047), 1, + anon_sym_LBRACK2, + STATE(4404), 1, sym_comment, - ACTIONS(2581), 36, + ACTIONS(1143), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -452377,28 +411895,27 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [118339] = 6, + [118431] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9517), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9519), 1, - aux_sym__immediate_decimal_token2, - STATE(4825), 1, + STATE(4405), 1, sym_comment, - ACTIONS(909), 9, + ACTIONS(1061), 6, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - ACTIONS(911), 27, + ACTIONS(1063), 32, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -452423,42 +411940,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [118392] = 4, - ACTIONS(3), 1, + [118480] = 7, + ACTIONS(113), 1, anon_sym_POUND, - STATE(4826), 1, + ACTIONS(9049), 1, + anon_sym_DOT, + STATE(4406), 1, sym_comment, - ACTIONS(1113), 13, - sym_identifier, + STATE(4410), 1, + aux_sym_cell_path_repeat1, + STATE(4952), 1, + sym_path, + ACTIONS(1008), 4, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1006), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT, - ACTIONS(1115), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -452469,37 +411984,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [118441] = 6, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + [118535] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9521), 1, - anon_sym_DOT, - ACTIONS(9524), 1, - aux_sym__immediate_decimal_token2, - STATE(4827), 1, + STATE(4407), 1, sym_comment, - ACTIONS(923), 8, + ACTIONS(1049), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_command_token1, + ACTIONS(1047), 35, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token5, - ACTIONS(925), 28, - anon_sym_COMMA, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -452513,27 +412030,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [118494] = 4, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_LF2, + [118584] = 8, ACTIONS(113), 1, anon_sym_POUND, - STATE(4828), 1, + ACTIONS(9051), 1, + anon_sym_DOT_DOT2, + ACTIONS(9055), 1, + sym_filesize_unit, + ACTIONS(9057), 1, + sym_duration_unit, + STATE(4408), 1, sym_comment, - ACTIONS(1115), 3, + ACTIONS(940), 2, + ts_builtin_sym_end, anon_sym_LF, + ACTIONS(9053), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1113), 35, + ACTIONS(938), 31, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -452559,14 +412082,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [118543] = 4, + [118641] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4829), 1, + STATE(4409), 1, sym_comment, - ACTIONS(1117), 13, + ACTIONS(1041), 13, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -452580,7 +412101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT, - ACTIONS(1119), 25, + ACTIONS(1043), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -452606,37 +412127,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [118592] = 6, - ACTIONS(3), 1, + [118690] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9526), 1, + ACTIONS(9059), 1, anon_sym_DOT, - ACTIONS(9529), 1, - aux_sym__immediate_decimal_token2, - STATE(4830), 1, + STATE(4952), 1, + sym_path, + STATE(4410), 2, sym_comment, - ACTIONS(923), 8, + aux_sym_cell_path_repeat1, + ACTIONS(987), 4, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(985), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token5, - ACTIONS(925), 28, - anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -452650,29 +412173,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [118645] = 5, + anon_sym_DOT_DOT2, + [118743] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8407), 1, + anon_sym_list, + STATE(4411), 1, + sym_comment, + STATE(8108), 1, + sym__all_type, + ACTIONS(8405), 2, + anon_sym_table, + anon_sym_record, + STATE(8245), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(8403), 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, + [118798] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2439), 1, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + STATE(4412), 1, + sym_comment, + STATE(10434), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4344), 2, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(9373), 1, - aux_sym__immediate_decimal_token2, - STATE(4831), 1, + ACTIONS(4342), 34, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [118851] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + STATE(4413), 1, sym_comment, - ACTIONS(2437), 36, + STATE(10434), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4396), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4394), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, anon_sym_DOT_DOT_EQ, @@ -452699,25 +412316,74 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [118696] = 4, + [118904] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(4832), 1, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + STATE(4414), 1, sym_comment, - ACTIONS(1416), 2, + STATE(10434), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4424), 2, + ts_builtin_sym_end, anon_sym_LF, + ACTIONS(4422), 34, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [118957] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(2187), 1, anon_sym_LPAREN2, - ACTIONS(1414), 36, + STATE(4415), 1, + sym_comment, + STATE(10434), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4428), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4426), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, anon_sym_DOT_DOT_EQ, @@ -452744,12 +412410,16 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [118745] = 4, + [119010] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4833), 1, + ACTIONS(9062), 1, + anon_sym_DOT, + ACTIONS(9065), 1, + aux_sym__immediate_decimal_token2, + STATE(4416), 1, sym_comment, - ACTIONS(1109), 13, + ACTIONS(911), 16, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -452762,15 +412432,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT, - ACTIONS(1111), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + ACTIONS(913), 20, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -452789,87 +412455,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [118794] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [119063] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9531), 1, - anon_sym_DOT, - STATE(5444), 1, - sym_path, - STATE(4834), 2, + STATE(4417), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1001), 4, + ACTIONS(1022), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(999), 31, + ACTIONS(1020), 36, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - [118847] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9534), 1, - anon_sym_DOT, - ACTIONS(9537), 1, - aux_sym__immediate_decimal_token2, - STATE(4835), 1, - sym_comment, - ACTIONS(2581), 13, + anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_not, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(2583), 23, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_LPAREN2, - 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -452877,34 +412493,42 @@ 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, - [118900] = 5, + [119112] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9539), 1, - aux_sym__immediate_decimal_token2, - STATE(4836), 1, + ACTIONS(9067), 1, + anon_sym_DOT, + STATE(4418), 1, sym_comment, - ACTIONS(917), 10, + STATE(4486), 1, + sym_path, + STATE(5205), 1, + sym_cell_path, + ACTIONS(1097), 5, anon_sym_GT, - anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - ACTIONS(919), 27, - anon_sym_DASH_DASH, + ACTIONS(1099), 30, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_in, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -452926,39 +412550,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [118951] = 6, + [119167] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9541), 1, - anon_sym_DOT, - ACTIONS(9544), 1, - aux_sym__immediate_decimal_token2, - STATE(4837), 1, + STATE(4419), 1, sym_comment, - ACTIONS(923), 15, - sym_identifier, + ACTIONS(893), 10, anon_sym_GT, - anon_sym_in, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_DOT_DOT2, + anon_sym_DOT, sym_filesize_unit, - sym_duration_unit, aux_sym_unquoted_token5, - ACTIONS(925), 21, + ACTIONS(895), 28, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -452974,38 +412589,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [119004] = 4, + sym_duration_unit, + [119216] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(4838), 1, - sym_comment, - ACTIONS(1115), 3, + ACTIONS(4738), 1, anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1113), 35, + ACTIONS(9069), 1, + sym_long_flag_identifier, + STATE(4420), 1, + sym_comment, + ACTIONS(4734), 36, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [119267] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9071), 1, + anon_sym_DOT, + ACTIONS(9074), 1, + aux_sym__immediate_decimal_token2, + STATE(4421), 1, + sym_comment, + ACTIONS(911), 15, + sym_identifier, + anon_sym_GT, + anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + ACTIONS(913), 21, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -453016,21 +412686,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [119053] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [119320] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(4839), 1, + STATE(4422), 1, sym_comment, - ACTIONS(1119), 3, + ACTIONS(1043), 3, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1117), 35, + ACTIONS(1041), 35, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -453066,26 +412733,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT2, anon_sym_DOT, - [119102] = 5, + [119369] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2549), 1, - anon_sym_LF, - ACTIONS(9546), 1, + ACTIONS(9076), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9078), 1, aux_sym__immediate_decimal_token2, - STATE(4840), 1, + STATE(4423), 1, sym_comment, - ACTIONS(2547), 36, + ACTIONS(2231), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2229), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, anon_sym_DOT_DOT_EQ, @@ -453112,24 +412780,26 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [119153] = 4, + [119422] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(4841), 1, - sym_comment, - ACTIONS(1282), 3, - ts_builtin_sym_end, + ACTIONS(2358), 1, anon_sym_LF, - anon_sym_LPAREN2, - ACTIONS(1280), 35, + ACTIONS(8905), 1, + aux_sym__immediate_decimal_token2, + STATE(4424), 1, + sym_comment, + ACTIONS(2356), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, anon_sym_DOT_DOT_EQ, @@ -453156,227 +412826,39 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - aux_sym_unquoted_token6, - [119202] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(4842), 1, - sym_comment, - ACTIONS(1115), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - ACTIONS(1113), 35, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [119251] = 10, + [119473] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9548), 1, - anon_sym_DOT, - ACTIONS(9550), 1, - aux_sym_unquoted_token3, - ACTIONS(9552), 1, - aux_sym_unquoted_token5, - STATE(4843), 1, - sym_comment, - STATE(9346), 1, - sym__immediate_decimal, - ACTIONS(1582), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - ACTIONS(936), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(938), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [119312] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(4844), 1, + ACTIONS(9080), 1, + aux_sym__immediate_decimal_token2, + STATE(4425), 1, sym_comment, - ACTIONS(1420), 2, - anon_sym_LF, - anon_sym_LPAREN2, - ACTIONS(1418), 36, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(2356), 14, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_not, + anon_sym_DOT_DOT2, + anon_sym_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, anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [119361] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9554), 1, - anon_sym_DOT, - STATE(4845), 1, - sym_comment, - STATE(4905), 1, - sym_path, - STATE(5531), 1, - sym_cell_path, - ACTIONS(1148), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1150), 30, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [119416] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(9556), 1, - anon_sym_DOT, - ACTIONS(9558), 1, - aux_sym__immediate_decimal_token2, - STATE(4846), 1, - sym_comment, - ACTIONS(2583), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2581), 34, - anon_sym_SEMI, + aux_sym_unquoted_token2, + ACTIONS(2358), 23, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_LPAREN2, + 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -453384,53 +412866,49 @@ 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, - [119469] = 5, - ACTIONS(3), 1, + [119524] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9560), 1, - anon_sym_QMARK2, - STATE(4847), 1, + STATE(4426), 1, sym_comment, - ACTIONS(1072), 15, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(1039), 3, + anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1070), 22, - sym_cmd_identifier, + ACTIONS(1037), 35, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, @@ -453439,44 +412917,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT2, anon_sym_DOT, - [119520] = 5, + [119573] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9560), 1, - anon_sym_QMARK2, - STATE(4848), 1, + ACTIONS(9067), 1, + anon_sym_DOT, + STATE(4427), 1, sym_comment, - ACTIONS(1072), 15, - anon_sym_DASH_DASH, + STATE(4490), 1, + aux_sym_cell_path_repeat1, + STATE(4905), 1, + sym_path, + ACTIONS(1006), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1008), 30, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [119628] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(9049), 1, + anon_sym_DOT, + STATE(4428), 1, + sym_comment, + STATE(4469), 1, + sym_path, + STATE(5207), 1, + sym_cell_path, + ACTIONS(1004), 4, + ts_builtin_sym_end, + anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1070), 22, - sym_cmd_identifier, + ACTIONS(1002), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, @@ -453484,37 +413013,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - anon_sym_DOT, - [119571] = 4, - ACTIONS(113), 1, + [119683] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4849), 1, + ACTIONS(8933), 1, + aux_sym__immediate_decimal_token2, + STATE(4429), 1, sym_comment, - ACTIONS(1119), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - ACTIONS(1117), 35, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(893), 9, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + ACTIONS(895), 28, + anon_sym_COMMA, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -453528,20 +413056,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [119620] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [119734] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(4850), 1, + STATE(4430), 1, sym_comment, - ACTIONS(2845), 2, + ACTIONS(3646), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(2851), 2, + ACTIONS(3650), 2, anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(2843), 34, + ACTIONS(3644), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -453576,61 +413105,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [119671] = 6, + [119785] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9562), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9564), 1, + ACTIONS(9065), 1, aux_sym__immediate_decimal_token2, - STATE(4851), 1, - sym_comment, - ACTIONS(909), 9, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - ACTIONS(911), 27, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [119724] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9566), 1, - anon_sym_LBRACK2, - STATE(4852), 1, + STATE(4431), 1, sym_comment, - ACTIONS(1259), 12, + ACTIONS(911), 17, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -453643,14 +413125,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1261), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + ACTIONS(913), 20, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -453669,24 +413149,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [119775] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [119836] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(4853), 1, + STATE(4432), 1, sym_comment, - ACTIONS(1119), 3, + ACTIONS(1035), 4, + ts_builtin_sym_end, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, aux_sym_command_token1, - ACTIONS(1117), 35, + ACTIONS(1033), 34, anon_sym_SEMI, anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -453713,41 +413196,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT2, anon_sym_DOT, - anon_sym_LF2, - [119824] = 6, - ACTIONS(3), 1, + [119885] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9568), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9570), 1, - aux_sym__immediate_decimal_token2, - STATE(4854), 1, + STATE(4433), 1, sym_comment, - ACTIONS(2437), 13, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, + ACTIONS(1886), 2, anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, aux_sym_unquoted_token2, - ACTIONS(2439), 23, + ACTIONS(3773), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3771), 34, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_not, - 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, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -453755,25 +413233,25 @@ 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, - [119877] = 5, + [119936] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9572), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(4855), 1, + STATE(4434), 1, sym_comment, - ACTIONS(1290), 2, + ACTIONS(2231), 2, ts_builtin_sym_end, - anon_sym_LPAREN2, - ACTIONS(1243), 35, - anon_sym_SEMI, anon_sym_LF, + ACTIONS(2229), 36, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PIPE, @@ -453783,6 +413261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_not, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -453807,23 +413286,23 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [119928] = 4, + aux_sym_unquoted_token2, + [119985] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(4856), 1, + STATE(4435), 1, sym_comment, - ACTIONS(1111), 3, + ACTIONS(903), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - ACTIONS(1109), 35, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, + sym_duration_unit, + sym__entry_separator, + ACTIONS(901), 34, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -453851,19 +413330,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT2, anon_sym_DOT, - anon_sym_LF2, - [119977] = 5, + sym_filesize_unit, + aux_sym_unquoted_token5, + [120034] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(4857), 1, + STATE(4436), 1, sym_comment, - ACTIONS(2006), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(3876), 2, + ACTIONS(3356), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3874), 34, + ACTIONS(3362), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(3354), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -453898,39 +413378,36 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [120028] = 10, + [120085] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(979), 1, - anon_sym_DOT_DOT2, - ACTIONS(9550), 1, - aux_sym_unquoted_token5, - ACTIONS(9574), 1, - anon_sym_DOT, - ACTIONS(9576), 1, - sym_filesize_unit, - ACTIONS(9578), 1, - sym_duration_unit, - STATE(4858), 1, + STATE(4437), 1, sym_comment, - ACTIONS(983), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(959), 6, + ACTIONS(1047), 13, + sym_identifier, anon_sym_GT, anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(961), 25, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT, + ACTIONS(1049), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -453946,64 +413423,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [120089] = 6, + [120134] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9580), 1, - anon_sym_DOT, - ACTIONS(9583), 1, + ACTIONS(9082), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9084), 1, aux_sym__immediate_decimal_token2, - STATE(4859), 1, + STATE(4438), 1, sym_comment, - ACTIONS(923), 9, - anon_sym_GT, + ACTIONS(2229), 13, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token5, - ACTIONS(925), 27, - anon_sym_DASH_DASH, - anon_sym_in, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + ACTIONS(2231), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + anon_sym_not, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [120142] = 5, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [120187] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9544), 1, + ACTIONS(9074), 1, aux_sym__immediate_decimal_token2, - STATE(4860), 1, + STATE(4439), 1, sym_comment, - ACTIONS(923), 16, + ACTIONS(911), 16, sym_identifier, anon_sym_GT, anon_sym_in, @@ -454020,7 +413494,7 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token5, - ACTIONS(925), 21, + ACTIONS(913), 21, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_STAR_STAR, @@ -454042,40 +413516,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [120193] = 5, - ACTIONS(3), 1, + [120238] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9585), 1, - aux_sym__immediate_decimal_token2, - STATE(4861), 1, + STATE(4440), 1, sym_comment, - ACTIONS(923), 17, - sym_identifier, + ACTIONS(1022), 4, + ts_builtin_sym_end, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_command_token1, + ACTIONS(1020), 34, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token5, - ACTIONS(925), 20, - anon_sym_DASH_DASH, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -454086,18 +413556,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [120244] = 5, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [120287] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5079), 1, + ACTIONS(1043), 1, anon_sym_LF, - ACTIONS(9587), 1, - sym_long_flag_identifier, - STATE(4862), 1, + STATE(4441), 1, sym_comment, - ACTIONS(5075), 36, + ACTIONS(1041), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -454110,6 +413581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -454134,128 +413606,37 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [120295] = 5, - ACTIONS(3), 1, + [120336] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9465), 1, - aux_sym__immediate_decimal_token2, - STATE(4863), 1, + ACTIONS(9086), 1, + anon_sym_QMARK2, + STATE(4442), 1, sym_comment, - ACTIONS(909), 16, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token5, - ACTIONS(911), 21, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + ACTIONS(1026), 4, + ts_builtin_sym_end, + anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [120346] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9473), 1, - aux_sym__immediate_decimal_token2, - STATE(4864), 1, - sym_comment, - ACTIONS(909), 17, - sym_identifier, + ACTIONS(1024), 33, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token5, - ACTIONS(911), 20, - anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [120397] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9379), 1, - aux_sym__immediate_decimal_token2, - STATE(4865), 1, - sym_comment, - ACTIONS(909), 10, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - ACTIONS(911), 27, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -454269,27 +413650,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [120448] = 4, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [120387] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(4866), 1, + ACTIONS(9086), 1, + anon_sym_QMARK2, + STATE(4443), 1, sym_comment, - ACTIONS(1119), 3, + ACTIONS(1026), 4, + ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1117), 35, + ACTIONS(1024), 33, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -454317,65 +413698,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT2, anon_sym_DOT, - [120497] = 7, + [120438] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9554), 1, - anon_sym_DOT, - STATE(4867), 1, + ACTIONS(9092), 1, + anon_sym_list, + STATE(4444), 1, sym_comment, - STATE(4905), 1, - sym_path, - STATE(5492), 1, - sym_cell_path, - ACTIONS(1179), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1181), 30, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [120552] = 5, + STATE(6811), 1, + sym__type_annotation, + ACTIONS(9090), 2, + anon_sym_table, + anon_sym_record, + STATE(7012), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(9088), 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, + [120493] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9589), 1, + ACTIONS(9094), 1, aux_sym__immediate_decimal_token2, - STATE(4868), 1, + STATE(4445), 1, sym_comment, - ACTIONS(917), 17, + ACTIONS(901), 16, sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, @@ -454390,8 +413770,9 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token5, - ACTIONS(919), 20, - anon_sym_DASH_DASH, + ACTIONS(903), 21, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -454411,14 +413792,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [120603] = 4, + [120544] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1111), 1, + ACTIONS(940), 1, anon_sym_LF, - STATE(4869), 1, + ACTIONS(7457), 1, + aux_sym_unquoted_token5, + STATE(4446), 1, sym_comment, - ACTIONS(1109), 37, + ACTIONS(938), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -454431,7 +413814,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -454456,35 +413838,41 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [120652] = 4, - ACTIONS(113), 1, + [120595] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4870), 1, + ACTIONS(9067), 1, + anon_sym_DOT, + STATE(4447), 1, sym_comment, - ACTIONS(1115), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - ACTIONS(1113), 35, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, + STATE(4486), 1, + sym_path, + STATE(5133), 1, + sym_cell_path, + ACTIONS(1101), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1103), 30, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -454498,29 +413886,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_LF2, - [120701] = 5, + [120650] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(4871), 1, + STATE(4448), 1, sym_comment, - ACTIONS(1934), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(3520), 2, - ts_builtin_sym_end, + ACTIONS(1217), 2, anon_sym_LF, - ACTIONS(3518), 34, + anon_sym_LPAREN2, + ACTIONS(1215), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, anon_sym_DOT_DOT_EQ, @@ -454547,15 +413931,16 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [120752] = 4, + [120699] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(4872), 1, - sym_comment, - ACTIONS(1290), 2, + ACTIONS(2231), 1, anon_sym_LF, - anon_sym_LPAREN2, - ACTIONS(1243), 36, + ACTIONS(8941), 1, + aux_sym__immediate_decimal_token2, + STATE(4449), 1, + sym_comment, + ACTIONS(2229), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -454592,36 +413977,44 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [120801] = 4, - ACTIONS(113), 1, + [120750] = 10, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4873), 1, + ACTIONS(1381), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9096), 1, + anon_sym_DOT, + ACTIONS(9098), 1, + aux_sym_unquoted_token3, + ACTIONS(9100), 1, + aux_sym_unquoted_token5, + STATE(4450), 1, sym_comment, - ACTIONS(1061), 4, - ts_builtin_sym_end, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - ACTIONS(1059), 34, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, + STATE(8796), 1, + sym__immediate_decimal, + ACTIONS(1379), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + ACTIONS(920), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, - anon_sym_QMARK2, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(922), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -454635,82 +414028,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [120850] = 4, + [120811] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(4874), 1, + ACTIONS(9102), 1, + anon_sym_DOT, + ACTIONS(9104), 1, + aux_sym__immediate_decimal_token2, + STATE(4451), 1, sym_comment, - ACTIONS(1065), 4, + ACTIONS(2358), 2, ts_builtin_sym_end, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - ACTIONS(1063), 34, - anon_sym_SEMI, anon_sym_LF, + ACTIONS(2356), 34, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [120899] = 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [120864] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9591), 1, + ACTIONS(9106), 1, aux_sym__immediate_decimal_token2, - STATE(4875), 1, + STATE(4452), 1, sym_comment, - ACTIONS(917), 16, - sym_identifier, + ACTIONS(901), 9, anon_sym_GT, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_DOT_DOT2, anon_sym_DOT, sym_filesize_unit, - sym_duration_unit, aux_sym_unquoted_token5, - ACTIONS(919), 21, + ACTIONS(903), 28, anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -454726,79 +414115,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [120950] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8890), 1, - anon_sym_list, - STATE(4876), 1, - sym_comment, - STATE(8619), 1, - sym__all_type, - ACTIONS(8888), 2, - anon_sym_table, - anon_sym_record, - STATE(8635), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(8886), 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, - [121005] = 6, + sym_duration_unit, + [120915] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9593), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9595), 1, + ACTIONS(9108), 1, aux_sym__immediate_decimal_token2, - STATE(4877), 1, + STATE(4453), 1, sym_comment, - ACTIONS(909), 7, + ACTIONS(911), 10, anon_sym_GT, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, anon_sym_DOT_DOT2, + anon_sym_DOT, sym_filesize_unit, - ACTIONS(911), 29, - anon_sym_COMMA, - anon_sym_DASH, + aux_sym_unquoted_token5, + ACTIONS(913), 27, + anon_sym_DASH_DASH, anon_sym_in, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -454823,116 +414167,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [121058] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9537), 1, - aux_sym__immediate_decimal_token2, - STATE(4878), 1, - sym_comment, - ACTIONS(2581), 14, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(2583), 23, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_LPAREN2, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [121109] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - STATE(4879), 1, - sym_comment, - STATE(11424), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4377), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4375), 34, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [121162] = 7, + [120966] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8890), 1, + ACTIONS(8407), 1, anon_sym_list, - STATE(4880), 1, + STATE(4454), 1, sym_comment, - STATE(8655), 1, + STATE(8107), 1, sym__all_type, - ACTIONS(8888), 2, + ACTIONS(8405), 2, anon_sym_table, anon_sym_record, - STATE(8635), 3, + STATE(8245), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(8886), 31, + ACTIONS(8403), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -454964,14 +414215,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [121217] = 5, + [121021] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9488), 1, + ACTIONS(8992), 1, aux_sym__immediate_decimal_token2, - STATE(4881), 1, + STATE(4455), 1, sym_comment, - ACTIONS(2437), 14, + ACTIONS(2229), 14, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, @@ -454986,7 +414237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token2, - ACTIONS(2439), 23, + ACTIONS(2231), 23, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_not, @@ -455010,159 +414261,70 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [121268] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9601), 1, - anon_sym_list, - STATE(4882), 1, - sym_comment, - STATE(7292), 1, - sym__type_annotation, - ACTIONS(9599), 2, - anon_sym_table, - anon_sym_record, - STATE(7390), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(9597), 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, - [121323] = 5, + [121072] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9524), 1, - aux_sym__immediate_decimal_token2, - STATE(4883), 1, + ACTIONS(8816), 1, + anon_sym_DOT, + ACTIONS(8820), 1, + aux_sym_unquoted_token5, + ACTIONS(9110), 1, + anon_sym_DOT_DOT2, + ACTIONS(9114), 1, + sym_filesize_unit, + ACTIONS(9116), 1, + sym_duration_unit, + STATE(4456), 1, sym_comment, - ACTIONS(923), 9, + ACTIONS(9112), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(938), 6, anon_sym_GT, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - ACTIONS(925), 28, - anon_sym_COMMA, - anon_sym_DASH, + ACTIONS(940), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_in, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [121374] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9603), 1, - aux_sym__immediate_decimal_token2, - STATE(4884), 1, - sym_comment, - ACTIONS(2547), 14, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(2549), 23, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_LPAREN2, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [121425] = 6, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [121133] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1284), 1, + ACTIONS(1133), 1, aux_sym_unquoted_token6, - ACTIONS(4895), 1, + ACTIONS(3841), 1, anon_sym_LPAREN2, - STATE(4885), 1, + STATE(4457), 1, sym_comment, - ACTIONS(1160), 2, + ACTIONS(1131), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1158), 34, + ACTIONS(1129), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -455197,40 +414359,36 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [121478] = 7, - ACTIONS(113), 1, + [121186] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9605), 1, - anon_sym_DOT, - STATE(4886), 1, + ACTIONS(9118), 1, + aux_sym__immediate_decimal_token2, + STATE(4458), 1, sym_comment, - STATE(4928), 1, - sym_path, - STATE(5549), 1, - sym_cell_path, - ACTIONS(1012), 4, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1010), 31, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(901), 9, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + ACTIONS(903), 28, + anon_sym_COMMA, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -455244,30 +414402,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - [121533] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [121237] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9607), 1, - anon_sym_DOT, - ACTIONS(9609), 1, + ACTIONS(8988), 1, aux_sym__immediate_decimal_token2, - STATE(4887), 1, + STATE(4459), 1, sym_comment, - ACTIONS(923), 7, + ACTIONS(893), 10, anon_sym_GT, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, anon_sym_DOT_DOT2, + anon_sym_DOT, sym_filesize_unit, - ACTIONS(925), 29, - anon_sym_COMMA, - anon_sym_DASH, + aux_sym_unquoted_token5, + ACTIONS(895), 27, + anon_sym_DASH_DASH, anon_sym_in, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -455292,81 +414451,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [121586] = 4, + [121288] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(4888), 1, + STATE(4460), 1, sym_comment, - ACTIONS(6222), 2, + ACTIONS(1035), 4, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6220), 36, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1033), 34, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_else, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_catch, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [121635] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9393), 1, - aux_sym__immediate_decimal_token2, - STATE(4889), 1, - sym_comment, - ACTIONS(909), 9, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - ACTIONS(911), 28, - anon_sym_COMMA, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -455380,18 +414494,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [121686] = 4, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [121337] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(4890), 1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + ACTIONS(3841), 1, + anon_sym_LPAREN2, + STATE(4461), 1, sym_comment, - ACTIONS(2439), 2, + ACTIONS(1137), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(2437), 36, + ACTIONS(1135), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -455402,7 +414519,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_not, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -455427,48 +414543,43 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - aux_sym_unquoted_token2, - [121735] = 7, - ACTIONS(113), 1, + [121390] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9605), 1, - anon_sym_DOT, - STATE(4891), 1, + STATE(4462), 1, sym_comment, - STATE(4928), 1, - sym_path, - STATE(5534), 1, - sym_cell_path, - ACTIONS(997), 4, - ts_builtin_sym_end, - anon_sym_LF, + ACTIONS(1035), 16, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(995), 31, - anon_sym_SEMI, - anon_sym_PIPE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1033), 22, + sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, @@ -455476,31 +414587,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - [121790] = 5, + anon_sym_DOT, + [121439] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9611), 1, + ACTIONS(8882), 1, aux_sym__immediate_decimal_token2, - STATE(4892), 1, + STATE(4463), 1, sym_comment, - ACTIONS(917), 9, + ACTIONS(893), 16, + sym_identifier, anon_sym_GT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_DOT_DOT2, anon_sym_DOT, sym_filesize_unit, + sym_duration_unit, aux_sym_unquoted_token5, - ACTIONS(919), 28, - anon_sym_COMMA, + ACTIONS(895), 21, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -455516,20 +414632,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [121490] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9120), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9122), 1, + aux_sym_unquoted_token2, + STATE(4464), 1, + sym_comment, + ACTIONS(920), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [121841] = 5, + ACTIONS(922), 24, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [121543] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9583), 1, - aux_sym__immediate_decimal_token2, - STATE(4893), 1, + STATE(4465), 1, sym_comment, - ACTIONS(923), 10, + ACTIONS(901), 10, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, @@ -455540,7 +414697,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, sym_filesize_unit, aux_sym_unquoted_token5, - ACTIONS(925), 27, + ACTIONS(903), 28, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -455568,37 +414726,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [121892] = 5, - ACTIONS(113), 1, + [121592] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9613), 1, - anon_sym_QMARK2, - STATE(4894), 1, + ACTIONS(8945), 1, + aux_sym__immediate_decimal_token2, + STATE(4466), 1, sym_comment, - ACTIONS(1072), 4, - ts_builtin_sym_end, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - ACTIONS(1070), 33, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, + ACTIONS(893), 17, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + ACTIONS(895), 20, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -455609,42 +414770,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [121943] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(9613), 1, - anon_sym_QMARK2, - STATE(4895), 1, - sym_comment, - ACTIONS(1072), 4, - ts_builtin_sym_end, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - ACTIONS(1070), 33, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, + [121643] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9124), 1, + aux_sym__immediate_decimal_token2, + STATE(4467), 1, + sym_comment, + ACTIONS(911), 9, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + ACTIONS(913), 28, + anon_sym_COMMA, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -455658,132 +414815,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [121994] = 7, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [121694] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9619), 1, - anon_sym_list, - STATE(4896), 1, - sym_comment, - STATE(5053), 1, - sym__type_annotation, - ACTIONS(9617), 2, - anon_sym_table, - anon_sym_record, - STATE(4653), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(9615), 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, - [122049] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(5085), 1, - anon_sym_LF, - ACTIONS(9621), 1, - aux_sym__immediate_decimal_token1, - STATE(4897), 1, - sym_comment, - ACTIONS(5083), 36, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [122100] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(4898), 1, + ACTIONS(9035), 1, + aux_sym__immediate_decimal_token2, + STATE(4468), 1, sym_comment, - ACTIONS(1065), 4, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1063), 34, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(893), 9, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + ACTIONS(895), 28, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, - anon_sym_QMARK2, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -455797,26 +414861,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [122149] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [121745] = 7, ACTIONS(113), 1, anon_sym_POUND, - STATE(4899), 1, + ACTIONS(9049), 1, + anon_sym_DOT, + STATE(4406), 1, + aux_sym_cell_path_repeat1, + STATE(4469), 1, sym_comment, - ACTIONS(1111), 3, + STATE(4952), 1, + sym_path, + ACTIONS(1012), 4, + ts_builtin_sym_end, + anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - ACTIONS(1109), 35, + ACTIONS(1010), 31, anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -455843,70 +414912,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - anon_sym_DOT, - [122198] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(4900), 1, - sym_comment, - ACTIONS(2549), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2547), 36, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - anon_sym_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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - aux_sym_unquoted_token2, - [122247] = 7, + [121800] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9554), 1, + ACTIONS(9067), 1, anon_sym_DOT, - STATE(4901), 1, + STATE(4405), 1, + sym_cell_path, + STATE(4470), 1, sym_comment, - STATE(4905), 1, + STATE(4486), 1, sym_path, - STATE(4924), 1, - sym_cell_path, - ACTIONS(1010), 5, + ACTIONS(1002), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1012), 30, + ACTIONS(1004), 30, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -455937,60 +414960,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [122302] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(4902), 1, - sym_comment, - ACTIONS(3507), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3505), 36, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - anon_sym_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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - aux_sym_unquoted_token2, - [122351] = 5, + [121855] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9529), 1, + ACTIONS(9126), 1, aux_sym__immediate_decimal_token2, - STATE(4903), 1, + STATE(4471), 1, sym_comment, - ACTIONS(923), 9, + ACTIONS(901), 10, anon_sym_GT, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -455999,9 +414978,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, sym_filesize_unit, aux_sym_unquoted_token5, - ACTIONS(925), 28, - anon_sym_DOLLAR, - anon_sym_DASH, + ACTIONS(903), 27, + anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, anon_sym_STAR_STAR, @@ -456028,35 +415006,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [122402] = 4, - ACTIONS(113), 1, + [121906] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4904), 1, + ACTIONS(9080), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(9128), 1, + anon_sym_DOT, + STATE(4472), 1, sym_comment, - ACTIONS(1061), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1059), 36, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(2356), 13, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_not, - anon_sym_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + ACTIONS(2358), 23, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_LPAREN2, + 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -456064,139 +415047,45 @@ 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, - [122451] = 7, + [121959] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9554), 1, - anon_sym_DOT, - STATE(4905), 1, - sym_comment, - STATE(4910), 1, - aux_sym_cell_path_repeat1, - STATE(5402), 1, - sym_path, - ACTIONS(987), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(989), 30, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [122506] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(4906), 1, + ACTIONS(9131), 1, + aux_sym__immediate_decimal_token2, + STATE(4473), 1, sym_comment, - ACTIONS(1065), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1063), 36, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(2362), 14, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_not, + anon_sym_DOT_DOT2, anon_sym_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, anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [122555] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(9623), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9625), 1, - aux_sym__immediate_decimal_token2, - STATE(4907), 1, - sym_comment, - ACTIONS(2439), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2437), 34, - anon_sym_SEMI, + aux_sym_unquoted_token2, + ACTIONS(2364), 23, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_LPAREN2, + 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -456204,36 +415093,32 @@ 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, - [122608] = 6, + [122010] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - STATE(4908), 1, - sym_comment, - STATE(11424), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4531), 2, - ts_builtin_sym_end, + ACTIONS(4773), 1, anon_sym_LF, - ACTIONS(4529), 34, + ACTIONS(9133), 1, + aux_sym__immediate_decimal_token1, + STATE(4474), 1, + sym_comment, + ACTIONS(4771), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, anon_sym_DOT_DOT_EQ, @@ -456260,87 +415145,36 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [122661] = 5, - ACTIONS(3), 1, + [122061] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9399), 1, - aux_sym__immediate_decimal_token2, - STATE(4909), 1, + STATE(4475), 1, sym_comment, - ACTIONS(909), 9, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - ACTIONS(911), 28, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(1022), 4, + ts_builtin_sym_end, + anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [122712] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9554), 1, - anon_sym_DOT, - STATE(4910), 1, - sym_comment, - STATE(4915), 1, - aux_sym_cell_path_repeat1, - STATE(5402), 1, - sym_path, - ACTIONS(1006), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1008), 30, - anon_sym_COMMA, + ACTIONS(1020), 34, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -456354,65 +415188,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [122767] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8890), 1, - anon_sym_list, - STATE(4911), 1, - sym_comment, - STATE(5053), 1, - sym__type_annotation, - ACTIONS(8888), 2, - anon_sym_table, - anon_sym_record, - STATE(4653), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(8886), 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, - [122822] = 5, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [122110] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9627), 1, - anon_sym_QMARK2, - STATE(4912), 1, + STATE(4476), 1, sym_comment, - ACTIONS(1072), 2, + ACTIONS(1844), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(3314), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1070), 35, + ACTIONS(3312), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -456423,7 +415212,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_not, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -456448,25 +415236,24 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [122873] = 5, + [122161] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9627), 1, - anon_sym_QMARK2, - STATE(4913), 1, - sym_comment, - ACTIONS(1072), 2, - ts_builtin_sym_end, + ACTIONS(1049), 1, anon_sym_LF, - ACTIONS(1070), 35, + STATE(4477), 1, + sym_comment, + ACTIONS(1047), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, anon_sym_DOT, @@ -456494,127 +415281,127 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [122924] = 5, + [122210] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9629), 1, - aux_sym__immediate_decimal_token2, - STATE(4914), 1, + STATE(4478), 1, sym_comment, - ACTIONS(917), 9, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - ACTIONS(919), 28, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, + ACTIONS(1022), 16, + anon_sym_DASH_DASH, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [122975] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9631), 1, - anon_sym_DOT, - STATE(5402), 1, - sym_path, - STATE(4915), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(999), 5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1020), 22, + sym_cmd_identifier, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1001), 30, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [123028] = 4, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [122259] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(4916), 1, + STATE(4479), 1, sym_comment, - ACTIONS(919), 4, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - sym__entry_separator, - ACTIONS(917), 34, - anon_sym_RBRACK, + ACTIONS(5788), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5786), 36, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_else, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_catch, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [122308] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9135), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9137), 1, + aux_sym__immediate_decimal_token2, + STATE(4480), 1, + sym_comment, + ACTIONS(893), 9, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + ACTIONS(895), 27, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -456628,37 +415415,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - [123077] = 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [122361] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(938), 1, - sym__entry_separator, - ACTIONS(942), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(944), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(1582), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9634), 1, - anon_sym_DOT, - ACTIONS(9636), 1, - aux_sym_unquoted_token3, - ACTIONS(9638), 1, - aux_sym_unquoted_token5, - STATE(4917), 1, + ACTIONS(9139), 1, + anon_sym_QMARK2, + STATE(4481), 1, sym_comment, - STATE(9346), 1, - sym__immediate_decimal, - ACTIONS(936), 30, - anon_sym_RBRACK, + ACTIONS(1026), 4, + ts_builtin_sym_end, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_command_token1, + ACTIONS(1024), 33, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -456684,20 +415462,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [123140] = 6, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [122412] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(6810), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9640), 1, - aux_sym_unquoted_token2, - STATE(4918), 1, + ACTIONS(9141), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(4482), 1, sym_comment, - ACTIONS(938), 2, + ACTIONS(1209), 2, ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(936), 34, + anon_sym_LPAREN2, + ACTIONS(1139), 35, anon_sym_SEMI, + anon_sym_LF, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PIPE, @@ -456730,27 +415509,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [123193] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_LF, - ACTIONS(7918), 1, - aux_sym_unquoted_token5, - STATE(4919), 1, + anon_sym_DOLLAR_DQUOTE, + [122463] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(6411), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9143), 1, + aux_sym_unquoted_token2, + STATE(4483), 1, sym_comment, - ACTIONS(959), 36, + ACTIONS(922), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(920), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, anon_sym_DOT_DOT_EQ, @@ -456777,29 +415557,74 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [123244] = 6, - ACTIONS(113), 1, + [122516] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - ACTIONS(4037), 1, - anon_sym_LPAREN2, - STATE(4920), 1, + ACTIONS(9145), 1, + anon_sym_DOT, + ACTIONS(9147), 1, + aux_sym__immediate_decimal_token2, + STATE(4484), 1, sym_comment, - ACTIONS(1249), 2, - ts_builtin_sym_end, + ACTIONS(911), 7, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + ACTIONS(913), 29, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [122569] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1039), 1, anon_sym_LF, - ACTIONS(1247), 34, + STATE(4485), 1, + sym_comment, + ACTIONS(1037), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -456824,44 +415649,41 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [123297] = 10, - ACTIONS(113), 1, + [122618] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(961), 1, - sym__entry_separator, - ACTIONS(979), 1, - anon_sym_DOT_DOT2, - ACTIONS(9636), 1, - aux_sym_unquoted_token5, - ACTIONS(9642), 1, + ACTIONS(9067), 1, anon_sym_DOT, - ACTIONS(9644), 1, - sym_filesize_unit, - ACTIONS(9646), 1, - sym_duration_unit, - STATE(4921), 1, + STATE(4427), 1, + aux_sym_cell_path_repeat1, + STATE(4486), 1, sym_comment, - ACTIONS(983), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(959), 30, - anon_sym_RBRACK, + STATE(4905), 1, + sym_path, + ACTIONS(1010), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1012), 30, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -456875,35 +415697,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [123358] = 4, - ACTIONS(3), 1, + [122673] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(4922), 1, + STATE(4487), 1, sym_comment, - ACTIONS(909), 10, + ACTIONS(1049), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_command_token1, + ACTIONS(1047), 35, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_DOT_DOT2, anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - ACTIONS(911), 28, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + [122722] = 10, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(969), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(971), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(1391), 1, + anon_sym_DOT, + ACTIONS(1407), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8909), 1, + aux_sym_unquoted_token4, + STATE(4488), 1, + sym_comment, + STATE(10080), 1, + sym__immediate_decimal, + ACTIONS(922), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(920), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -456917,45 +415793,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [123407] = 8, - ACTIONS(113), 1, + [122783] = 10, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9648), 1, + ACTIONS(961), 1, anon_sym_DOT_DOT2, - ACTIONS(9652), 1, + ACTIONS(9098), 1, + aux_sym_unquoted_token5, + ACTIONS(9114), 1, sym_filesize_unit, - ACTIONS(9654), 1, + ACTIONS(9116), 1, sym_duration_unit, - STATE(4923), 1, + ACTIONS(9149), 1, + anon_sym_DOT, + STATE(4489), 1, sym_comment, - ACTIONS(961), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(9650), 2, + ACTIONS(965), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(959), 31, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(938), 6, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(940), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -456969,19 +415844,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [123464] = 4, + [122844] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4924), 1, + ACTIONS(9151), 1, + anon_sym_DOT, + STATE(4905), 1, + sym_path, + STATE(4490), 2, sym_comment, - ACTIONS(1168), 6, + aux_sym_cell_path_repeat1, + ACTIONS(985), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - anon_sym_DOT_DOT2, - ACTIONS(1170), 32, + ACTIONS(987), 30, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -457012,38 +415891,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [123513] = 4, - ACTIONS(113), 1, + [122897] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4925), 1, + ACTIONS(9154), 1, + anon_sym_LBRACK2, + STATE(4491), 1, sym_comment, - ACTIONS(1111), 3, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1109), 35, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1143), 12, + sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1145), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -457054,24 +415937,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [123562] = 6, + [122948] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, + ACTIONS(1149), 1, + aux_sym_unquoted_token6, + ACTIONS(3783), 1, anon_sym_LPAREN2, - STATE(4926), 1, + STATE(4492), 1, sym_comment, - STATE(11424), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4535), 2, + ACTIONS(1091), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1089), 34, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [123001] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(4493), 1, + sym_comment, + ACTIONS(2364), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4533), 34, + ACTIONS(2362), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -457082,6 +416003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_not, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -457106,23 +416028,24 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [123615] = 7, + aux_sym_unquoted_token2, + [123050] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8890), 1, + ACTIONS(8407), 1, anon_sym_list, - STATE(4927), 1, + STATE(4494), 1, sym_comment, - STATE(10356), 1, + STATE(9778), 1, sym__type_annotation, - ACTIONS(8888), 2, + ACTIONS(8405), 2, anon_sym_table, anon_sym_record, - STATE(4653), 3, + STATE(4115), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(8886), 31, + ACTIONS(8403), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -457154,24 +416077,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [123670] = 7, + [123105] = 10, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9605), 1, + ACTIONS(940), 1, + sym__entry_separator, + ACTIONS(961), 1, + anon_sym_DOT_DOT2, + ACTIONS(9156), 1, anon_sym_DOT, - STATE(4928), 1, + ACTIONS(9158), 1, + sym_filesize_unit, + ACTIONS(9160), 1, + sym_duration_unit, + ACTIONS(9162), 1, + aux_sym_unquoted_token5, + STATE(4495), 1, sym_comment, - STATE(4945), 1, - aux_sym_cell_path_repeat1, - STATE(5444), 1, - sym_path, - ACTIONS(989), 4, - ts_builtin_sym_end, - anon_sym_LF, + ACTIONS(965), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(987), 31, + ACTIONS(938), 30, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [123166] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(4496), 1, + sym_comment, + ACTIONS(1039), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_command_token1, + ACTIONS(1037), 35, anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, @@ -457202,19 +416171,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - [123725] = 6, + anon_sym_DOT, + anon_sym_LF2, + [123215] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - STATE(4929), 1, + ACTIONS(9164), 1, + anon_sym_QMARK2, + STATE(4497), 1, sym_comment, - STATE(10635), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4293), 2, + ACTIONS(1026), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4291), 34, + ACTIONS(1024), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -457225,6 +416194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_not, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -457249,28 +416219,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [123778] = 5, + [123266] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5015), 1, - anon_sym_LF, - ACTIONS(9656), 1, - anon_sym_EQ, - STATE(4930), 1, + ACTIONS(9164), 1, + anon_sym_QMARK2, + STATE(4498), 1, sym_comment, - ACTIONS(5011), 36, + ACTIONS(1026), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1024), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -457295,23 +416265,26 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [123829] = 5, + [123317] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9658), 1, - anon_sym_QMARK2, - STATE(4931), 1, + ACTIONS(9049), 1, + anon_sym_DOT, + STATE(4469), 1, + sym_path, + STATE(4499), 1, sym_comment, - ACTIONS(1072), 4, + STATE(5057), 1, + sym_cell_path, + ACTIONS(994), 4, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1070), 33, + ACTIONS(992), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -457340,45 +416313,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - anon_sym_DOT, - [123880] = 5, + [123372] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9170), 1, + anon_sym_list, + STATE(4500), 1, + sym_comment, + STATE(4684), 1, + sym__type_annotation, + ACTIONS(9168), 2, + anon_sym_table, + anon_sym_record, + STATE(4115), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(9166), 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, + [123427] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9658), 1, - anon_sym_QMARK2, - STATE(4932), 1, + STATE(4501), 1, sym_comment, - ACTIONS(1072), 4, + ACTIONS(1035), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1070), 33, + ACTIONS(1033), 36, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_not, + anon_sym_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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [123476] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9172), 1, + anon_sym_QMARK2, + STATE(4502), 1, + sym_comment, + ACTIONS(1026), 15, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1024), 22, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, @@ -457387,36 +416452,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT2, anon_sym_DOT, - [123931] = 10, + [123527] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9249), 1, - anon_sym_DOT, - ACTIONS(9253), 1, - aux_sym_unquoted_token5, - ACTIONS(9576), 1, - sym_filesize_unit, - ACTIONS(9578), 1, - sym_duration_unit, - ACTIONS(9660), 1, - anon_sym_DOT_DOT2, - STATE(4933), 1, + ACTIONS(9174), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9176), 1, + aux_sym__immediate_decimal_token2, + STATE(4503), 1, sym_comment, - ACTIONS(9662), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(959), 6, + ACTIONS(893), 7, anon_sym_GT, - anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(961), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_DOT_DOT2, + sym_filesize_unit, + ACTIONS(895), 29, + anon_sym_COMMA, + anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -457438,43 +416496,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [123992] = 4, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [123580] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(4934), 1, + STATE(4504), 1, sym_comment, - ACTIONS(1061), 16, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(1043), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1059), 22, - sym_cmd_identifier, + aux_sym_command_token1, + ACTIONS(1041), 35, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, @@ -457483,167 +416544,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT2, anon_sym_DOT, - [124041] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - STATE(4935), 1, - sym_comment, - STATE(11424), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4325), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4323), 34, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [124094] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - ACTIONS(4631), 1, - anon_sym_LPAREN2, - STATE(4936), 1, - sym_comment, - ACTIONS(1255), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1253), 34, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [124147] = 5, - ACTIONS(113), 1, + [123629] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1261), 1, - anon_sym_LF, - ACTIONS(9664), 1, - anon_sym_LBRACK2, - STATE(4937), 1, + ACTIONS(8407), 1, + anon_sym_list, + STATE(4505), 1, sym_comment, - ACTIONS(1259), 36, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [124198] = 4, + STATE(4684), 1, + sym__type_annotation, + ACTIONS(8405), 2, + anon_sym_table, + anon_sym_record, + STATE(4115), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(8403), 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, + [123684] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4938), 1, + ACTIONS(9124), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(9178), 1, + anon_sym_DOT, + STATE(4506), 1, sym_comment, - ACTIONS(917), 10, + ACTIONS(911), 8, anon_sym_GT, - anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, anon_sym_DOT_DOT2, - anon_sym_DOT, sym_filesize_unit, aux_sym_unquoted_token5, - ACTIONS(919), 28, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(913), 28, + anon_sym_COMMA, + anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -457668,43 +416639,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [124247] = 6, - ACTIONS(3), 1, + [123737] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9666), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9668), 1, - aux_sym_unquoted_token2, - STATE(4939), 1, + STATE(4507), 1, sym_comment, - ACTIONS(936), 12, - sym_identifier, + ACTIONS(895), 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + sym__entry_separator, + ACTIONS(893), 34, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(938), 24, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + [123786] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(4508), 1, + sym_comment, + ACTIONS(1043), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_command_token1, + ACTIONS(1041), 35, + anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -457715,14 +416723,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [124300] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_LF2, + [123835] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1115), 1, - anon_sym_LF, - STATE(4940), 1, + STATE(4509), 1, sym_comment, - ACTIONS(1113), 37, + ACTIONS(1209), 2, + anon_sym_LF, + anon_sym_LPAREN2, + ACTIONS(1139), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -457735,7 +416750,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -457760,14 +416774,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [124349] = 4, + [123884] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4941), 1, + ACTIONS(9181), 1, + aux_sym__immediate_decimal_token2, + STATE(4510), 1, sym_comment, - ACTIONS(950), 10, + ACTIONS(911), 9, anon_sym_GT, - anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -457776,9 +416791,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, sym_filesize_unit, aux_sym_unquoted_token5, - ACTIONS(952), 28, + ACTIONS(913), 28, anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, anon_sym_STAR_STAR, @@ -457805,83 +416820,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [124398] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - ACTIONS(4631), 1, - anon_sym_LPAREN2, - STATE(4942), 1, - sym_comment, - ACTIONS(1275), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1273), 34, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [124451] = 6, + [123935] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9585), 1, + ACTIONS(9183), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9185), 1, aux_sym__immediate_decimal_token2, - ACTIONS(9670), 1, - anon_sym_DOT, - STATE(4943), 1, + STATE(4511), 1, sym_comment, - ACTIONS(923), 16, - sym_identifier, + ACTIONS(893), 9, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_DOT_DOT2, + anon_sym_DOT, sym_filesize_unit, - sym_duration_unit, aux_sym_unquoted_token5, - ACTIONS(925), 20, - anon_sym_DASH_DASH, + ACTIONS(895), 27, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -457897,87 +416861,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [124504] = 4, - ACTIONS(113), 1, + sym_duration_unit, + [123988] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4944), 1, + ACTIONS(9187), 1, + aux_sym__immediate_decimal_token2, + STATE(4512), 1, sym_comment, - ACTIONS(1061), 4, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1059), 34, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(901), 17, + sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, anon_sym_DOT, - [124553] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(9605), 1, - anon_sym_DOT, - STATE(4834), 1, - aux_sym_cell_path_repeat1, - STATE(4945), 1, - sym_comment, - STATE(5444), 1, - sym_path, - ACTIONS(1008), 4, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1006), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + ACTIONS(903), 20, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -457988,38 +416911,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - [124608] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(4946), 1, - sym_comment, - ACTIONS(952), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - sym__entry_separator, - ACTIONS(950), 34, - anon_sym_RBRACK, + [124039] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4513), 1, + sym_comment, + ACTIONS(934), 10, anon_sym_GT, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + ACTIONS(936), 28, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -458033,64 +416955,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - [124657] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [124088] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9673), 1, + ACTIONS(9189), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(4947), 1, - sym_comment, - ACTIONS(1243), 37, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [124706] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1119), 1, - anon_sym_LF, - STATE(4948), 1, + STATE(4514), 1, sym_comment, - ACTIONS(1117), 37, + ACTIONS(1139), 37, anon_sym_SEMI, + anon_sym_LF, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_RPAREN, @@ -458102,7 +416979,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -458127,43 +417003,43 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [124755] = 4, - ACTIONS(3), 1, + [124137] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(4949), 1, + STATE(4515), 1, sym_comment, - ACTIONS(1065), 16, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(1039), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1063), 22, - sym_cmd_identifier, + aux_sym_command_token1, + ACTIONS(1037), 35, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, @@ -458172,41 +417048,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT2, anon_sym_DOT, - [124804] = 4, - ACTIONS(113), 1, + [124186] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4950), 1, + ACTIONS(9172), 1, + anon_sym_QMARK2, + STATE(4516), 1, sym_comment, - ACTIONS(911), 4, + ACTIONS(1026), 15, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - sym__entry_separator, - ACTIONS(909), 34, - anon_sym_RBRACK, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1024), 22, + sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, @@ -458215,14 +417094,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT2, anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - [124853] = 4, + [124237] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4951), 1, + STATE(4517), 1, sym_comment, - ACTIONS(1368), 12, + ACTIONS(1037), 13, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -458235,7 +417112,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1370), 25, + anon_sym_DOT, + ACTIONS(1039), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -458261,40 +417139,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [124901] = 7, - ACTIONS(3), 1, + [124286] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9675), 1, - anon_sym_DOT, - STATE(4952), 1, + STATE(4518), 1, sym_comment, - STATE(4962), 1, - sym_path, - STATE(5669), 1, - sym_cell_path, - ACTIONS(1010), 11, + ACTIONS(1157), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LPAREN2, + ACTIONS(1155), 35, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, + anon_sym_not, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1012), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -458302,46 +417174,55 @@ 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, - [124955] = 4, - ACTIONS(3), 1, + aux_sym_unquoted_token6, + [124335] = 11, + ACTIONS(113), 1, anon_sym_POUND, - STATE(4953), 1, + ACTIONS(922), 1, + sym__entry_separator, + ACTIONS(926), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(928), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(1379), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9162), 1, + aux_sym_unquoted_token3, + ACTIONS(9191), 1, + anon_sym_DOT, + ACTIONS(9193), 1, + aux_sym_unquoted_token5, + STATE(4519), 1, sym_comment, - ACTIONS(1302), 12, - sym_identifier, + STATE(8796), 1, + sym__immediate_decimal, + ACTIONS(920), 30, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1304), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -458352,14 +417233,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [125003] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [124398] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5241), 1, - anon_sym_LF, - STATE(4954), 1, + STATE(4520), 1, sym_comment, - ACTIONS(5239), 36, + ACTIONS(922), 2, + anon_sym_LF, + anon_sym_LPAREN2, + ACTIONS(920), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -458396,122 +417281,36 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [125051] = 4, + [124447] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1296), 1, - anon_sym_LF, - STATE(4955), 1, + STATE(4521), 1, sym_comment, - ACTIONS(1294), 36, + ACTIONS(1043), 3, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1041), 35, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [125099] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4956), 1, - sym_comment, - ACTIONS(1414), 12, - sym_identifier, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1416), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [125147] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4957), 1, - sym_comment, - ACTIONS(909), 10, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - ACTIONS(911), 27, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -458525,66 +417324,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [125195] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4958), 1, - sym_comment, - ACTIONS(1358), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1360), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [125243] = 6, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [124496] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1001), 1, - anon_sym_LF, - ACTIONS(9677), 1, - anon_sym_DOT, - STATE(5478), 1, - sym_path, - STATE(4959), 2, + STATE(4522), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(999), 33, + ACTIONS(1039), 3, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1037), 35, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -458618,33 +417369,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [125295] = 4, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [124545] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4960), 1, + ACTIONS(9181), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(9195), 1, + anon_sym_DOT, + STATE(4523), 1, sym_comment, - ACTIONS(909), 17, - sym_identifier, + ACTIONS(911), 8, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_DOT_DOT2, - anon_sym_DOT, sym_filesize_unit, - sym_duration_unit, aux_sym_unquoted_token5, - ACTIONS(911), 20, - anon_sym_DASH_DASH, + ACTIONS(913), 28, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -458660,133 +417412,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [125343] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1338), 1, - anon_sym_LF, - STATE(4961), 1, - sym_comment, - ACTIONS(1336), 36, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [125391] = 7, + sym_duration_unit, + [124598] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9675), 1, + ACTIONS(9108), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(9198), 1, anon_sym_DOT, - STATE(4962), 1, - sym_comment, - STATE(4972), 1, - aux_sym_cell_path_repeat1, - STATE(5583), 1, - sym_path, - ACTIONS(987), 11, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(989), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [125445] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1196), 1, - aux_sym_command_token1, - ACTIONS(9680), 1, - anon_sym_DOT_DOT2, - STATE(4963), 1, + STATE(4524), 1, sym_comment, - ACTIONS(9682), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1194), 5, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(1198), 28, + ACTIONS(911), 9, anon_sym_GT, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token5, + ACTIONS(913), 27, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -458800,23 +417462,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [125499] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [124651] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(4964), 1, + STATE(4525), 1, sym_comment, - ACTIONS(1170), 3, + ACTIONS(936), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - ACTIONS(1168), 34, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, + sym_duration_unit, + sym__entry_separator, + ACTIONS(934), 34, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -458843,25 +417507,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - anon_sym_LF2, - [125547] = 4, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + [124700] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(4965), 1, + ACTIONS(9139), 1, + anon_sym_QMARK2, + STATE(4526), 1, sym_comment, - ACTIONS(1174), 3, + ACTIONS(1026), 4, + ts_builtin_sym_end, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, aux_sym_command_token1, - ACTIONS(1172), 34, + ACTIONS(1024), 33, anon_sym_SEMI, anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -458888,26 +417555,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - [125595] = 5, + anon_sym_DOT, + [124751] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9519), 1, - aux_sym__immediate_decimal_token2, - STATE(4966), 1, + STATE(4527), 1, + sym_comment, + ACTIONS(2229), 14, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + ACTIONS(2231), 23, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_LPAREN2, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [124799] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9201), 1, + anon_sym_QMARK2, + STATE(4528), 1, sym_comment, - ACTIONS(909), 9, + ACTIONS(1024), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - ACTIONS(911), 27, + ACTIONS(1026), 31, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -458930,38 +417644,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [125645] = 4, + anon_sym_DOT, + [124849] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4967), 1, + ACTIONS(9201), 1, + anon_sym_QMARK2, + STATE(4529), 1, sym_comment, - ACTIONS(1198), 12, - sym_identifier, + ACTIONS(1024), 5, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1366), 25, - anon_sym_COLON, + ACTIONS(1026), 31, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -458977,24 +417686,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [125693] = 5, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT, + [124899] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9684), 1, - aux_sym__immediate_decimal_token2, - STATE(4968), 1, + ACTIONS(961), 1, + anon_sym_DOT_DOT2, + ACTIONS(9203), 1, + anon_sym_DOT, + ACTIONS(9205), 1, + sym_filesize_unit, + ACTIONS(9207), 1, + sym_duration_unit, + ACTIONS(9209), 1, + aux_sym_unquoted_token5, + STATE(4530), 1, sym_comment, - ACTIONS(923), 9, + ACTIONS(965), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(938), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - ACTIONS(925), 27, + ACTIONS(940), 25, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, @@ -459019,17 +417740,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [125743] = 4, + [124959] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1061), 1, + ACTIONS(1255), 1, anon_sym_LF, - STATE(4969), 1, + STATE(4531), 1, sym_comment, - ACTIONS(1059), 36, + ACTIONS(1253), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -459066,12 +417784,60 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [125791] = 4, + [125007] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(4532), 1, + sym_comment, + ACTIONS(922), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LPAREN2, + ACTIONS(920), 34, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [125055] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4970), 1, + ACTIONS(9211), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9213), 1, + aux_sym_unquoted_token2, + STATE(4533), 1, sym_comment, - ACTIONS(1418), 12, + ACTIONS(920), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -459084,11 +417850,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1420), 25, + ACTIONS(922), 23, anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, @@ -459110,84 +417874,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [125839] = 4, - ACTIONS(3), 1, + [125107] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(4971), 1, + ACTIONS(1259), 1, + anon_sym_LF, + STATE(4534), 1, sym_comment, - ACTIONS(917), 17, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token5, - ACTIONS(919), 20, + ACTIONS(1257), 36, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [125887] = 7, - ACTIONS(3), 1, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [125155] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9675), 1, - anon_sym_DOT, - STATE(4972), 1, + ACTIONS(1263), 1, + anon_sym_LF, + STATE(4535), 1, sym_comment, - STATE(4976), 1, - aux_sym_cell_path_repeat1, - STATE(5583), 1, - sym_path, - ACTIONS(1006), 11, + ACTIONS(1261), 36, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, + anon_sym_not, 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, anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, - ACTIONS(1008), 23, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [125203] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1227), 1, + anon_sym_LF, + STATE(4536), 1, + sym_comment, + ACTIONS(1225), 36, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_not, - 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, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -459195,46 +417997,132 @@ 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, - [125941] = 4, - ACTIONS(3), 1, + [125251] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(4973), 1, + ACTIONS(1267), 1, + anon_sym_LF, + STATE(4537), 1, sym_comment, - ACTIONS(1273), 12, - sym_identifier, - anon_sym_GT, + ACTIONS(1265), 36, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1275), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [125299] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1267), 1, + anon_sym_LF, + STATE(4538), 1, + sym_comment, + ACTIONS(1265), 36, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [125347] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(4539), 1, + sym_comment, + ACTIONS(1049), 4, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1047), 33, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -459245,35 +418133,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [125989] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [125395] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(4974), 1, + ACTIONS(7553), 1, + aux_sym_unquoted_token5, + STATE(4540), 1, sym_comment, - ACTIONS(1111), 4, + ACTIONS(940), 2, ts_builtin_sym_end, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - ACTIONS(1109), 33, - anon_sym_SEMI, anon_sym_LF, + ACTIONS(938), 34, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [125445] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9203), 1, + anon_sym_DOT, + ACTIONS(9205), 1, + sym_filesize_unit, + ACTIONS(9207), 1, + sym_duration_unit, + ACTIONS(9209), 1, + aux_sym_unquoted_token5, + ACTIONS(9215), 1, + anon_sym_DOT_DOT2, + STATE(4541), 1, + sym_comment, + ACTIONS(9217), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(938), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(940), 25, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -459287,14 +418233,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [126037] = 4, + [125505] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4975), 1, + STATE(4542), 1, sym_comment, - ACTIONS(950), 17, + ACTIONS(920), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -459307,12 +418251,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token5, - ACTIONS(952), 20, + ACTIONS(922), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -459331,76 +418277,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [126085] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9686), 1, - anon_sym_DOT, - STATE(5583), 1, - sym_path, - STATE(4976), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(999), 11, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1001), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [126137] = 7, + [125553] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1150), 1, - anon_sym_LF, - ACTIONS(9689), 1, - anon_sym_DOT, - STATE(4977), 1, + ACTIONS(1149), 1, + aux_sym_unquoted_token6, + STATE(4543), 1, sym_comment, - STATE(4986), 1, - sym_path, - STATE(5637), 1, - sym_cell_path, - ACTIONS(1148), 33, - anon_sym_SEMI, + ACTIONS(1091), 2, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1089), 34, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_GT, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -459426,14 +418322,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [126191] = 4, + [125603] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3966), 1, + ACTIONS(1273), 1, anon_sym_LF, - STATE(4978), 1, + STATE(4544), 1, + sym_comment, + ACTIONS(1271), 36, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [125651] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1277), 1, + anon_sym_LF, + STATE(4545), 1, sym_comment, - ACTIONS(3964), 36, + ACTIONS(1275), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -459470,25 +418410,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [126239] = 10, + [125699] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9691), 1, - anon_sym_DOT_DOT2, - ACTIONS(9693), 1, - anon_sym_DOT, - ACTIONS(9697), 1, - sym_filesize_unit, - ACTIONS(9699), 1, - sym_duration_unit, - ACTIONS(9701), 1, - aux_sym_unquoted_token5, - STATE(4979), 1, + STATE(4546), 1, sym_comment, - ACTIONS(9695), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(959), 11, + ACTIONS(893), 16, sym_identifier, anon_sym_GT, anon_sym_in, @@ -459500,7 +418427,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(961), 19, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + ACTIONS(895), 21, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_STAR_STAR, @@ -459520,31 +418452,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [126299] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [125747] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4980), 1, + STATE(4547), 1, sym_comment, - ACTIONS(1059), 5, + ACTIONS(1139), 12, + sym_identifier, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1061), 32, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1209), 25, + anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -459560,35 +418498,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT, - [126347] = 4, + [125795] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4981), 1, + STATE(4548), 1, sym_comment, - ACTIONS(1063), 5, + ACTIONS(1271), 12, + sym_identifier, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1065), 32, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1273), 25, + anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -459604,43 +418542,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT, - [126395] = 6, - ACTIONS(113), 1, + [125843] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1160), 1, - aux_sym_command_token1, - ACTIONS(9680), 1, - anon_sym_DOT_DOT2, - STATE(4982), 1, + STATE(4549), 1, sym_comment, - ACTIONS(9682), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1158), 33, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1275), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1277), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -459651,36 +418586,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [126447] = 7, + [125891] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9703), 1, - anon_sym_DOT, - STATE(4983), 1, + STATE(4550), 1, sym_comment, - STATE(5175), 1, - aux_sym_cell_path_repeat1, - STATE(5603), 1, - sym_path, - ACTIONS(987), 7, + ACTIONS(901), 16, + sym_identifier, anon_sym_GT, - anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_DOT_DOT2, - ACTIONS(989), 27, + anon_sym_DOT, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + ACTIONS(903), 21, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, + anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -459696,35 +418628,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [126501] = 5, + [125939] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9609), 1, - aux_sym__immediate_decimal_token2, - STATE(4984), 1, + STATE(4551), 1, sym_comment, - ACTIONS(923), 7, + ACTIONS(1211), 12, + sym_identifier, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - ACTIONS(925), 29, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1213), 25, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -459740,35 +418674,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + [125987] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4552), 1, + sym_comment, + ACTIONS(934), 16, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, sym_duration_unit, - [126551] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4985), 1, - sym_comment, - ACTIONS(1111), 15, - anon_sym_DASH_DASH, + aux_sym_unquoted_token5, + ACTIONS(936), 21, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1109), 22, - sym_cmd_identifier, + [126035] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4553), 1, + sym_comment, + ACTIONS(1215), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -459776,39 +418732,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_mod, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1217), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_LT2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [126599] = 7, + [126083] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(989), 1, - anon_sym_LF, - ACTIONS(9689), 1, - anon_sym_DOT, - STATE(4986), 1, + STATE(4554), 1, sym_comment, - STATE(5138), 1, - aux_sym_cell_path_repeat1, - STATE(5478), 1, - sym_path, - ACTIONS(987), 33, + ACTIONS(1063), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_command_token1, + ACTIONS(1061), 34, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -459837,14 +418805,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [126653] = 4, + anon_sym_DOT_DOT2, + [126131] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5201), 1, + ACTIONS(1053), 1, anon_sym_LF, - STATE(4987), 1, + STATE(4555), 1, sym_comment, - ACTIONS(5199), 36, + ACTIONS(1051), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -459881,24 +418850,23 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [126701] = 7, + [126179] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1192), 1, - aux_sym_command_token1, - ACTIONS(9705), 1, + ACTIONS(9219), 1, anon_sym_DOT, - STATE(4988), 1, + STATE(4556), 1, sym_comment, - STATE(5191), 1, + STATE(4619), 1, sym_path, - STATE(5672), 1, + STATE(5254), 1, sym_cell_path, - ACTIONS(1190), 33, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1004), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1002), 31, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -459928,101 +418896,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [126755] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4989), 1, - sym_comment, - ACTIONS(917), 16, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token5, - ACTIONS(919), 21, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [126803] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9595), 1, - aux_sym__immediate_decimal_token2, - STATE(4990), 1, - sym_comment, - ACTIONS(909), 7, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, anon_sym_DOT_DOT2, - sym_filesize_unit, - ACTIONS(911), 29, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [126853] = 4, + [126233] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4991), 1, + ACTIONS(8013), 1, + aux_sym_unquoted_token5, + STATE(4557), 1, sym_comment, - ACTIONS(1190), 12, + ACTIONS(938), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -460035,12 +418917,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1192), 25, + ACTIONS(940), 24, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, @@ -460061,58 +418942,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [126901] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(4992), 1, - sym_comment, - ACTIONS(1061), 4, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1059), 33, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [126949] = 4, + [126283] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1310), 1, + ACTIONS(1281), 1, anon_sym_LF, - STATE(4993), 1, + STATE(4558), 1, sym_comment, - ACTIONS(1308), 36, + ACTIONS(1279), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -460149,25 +418986,24 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [126997] = 5, + [126331] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1290), 1, - ts_builtin_sym_end, - ACTIONS(9707), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(4994), 1, + ACTIONS(1167), 1, + anon_sym_LF, + STATE(4559), 1, sym_comment, - ACTIONS(1243), 35, + ACTIONS(1165), 36, anon_sym_SEMI, - anon_sym_LF, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, anon_sym_DOT_DOT_EQ, @@ -460194,35 +419030,140 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [127047] = 5, + [126379] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9709), 1, - aux_sym__immediate_decimal_token2, - STATE(4995), 1, + ACTIONS(9221), 1, + anon_sym_DOT_DOT2, + ACTIONS(9223), 1, + anon_sym_DOT, + ACTIONS(9227), 1, + sym_filesize_unit, + ACTIONS(9229), 1, + sym_duration_unit, + ACTIONS(9231), 1, + aux_sym_unquoted_token5, + STATE(4560), 1, sym_comment, - ACTIONS(917), 7, + ACTIONS(9225), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(938), 12, + sym_identifier, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(940), 18, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [126439] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(961), 1, anon_sym_DOT_DOT2, + ACTIONS(9233), 1, + anon_sym_DOT, + ACTIONS(9235), 1, sym_filesize_unit, - ACTIONS(919), 29, - anon_sym_COMMA, + ACTIONS(9237), 1, + sym_duration_unit, + ACTIONS(9239), 1, + aux_sym_unquoted_token5, + STATE(4561), 1, + sym_comment, + ACTIONS(965), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(938), 11, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(940), 19, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [126499] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1059), 1, + aux_sym_command_token1, + ACTIONS(9241), 1, + anon_sym_DOT, + STATE(4562), 1, + sym_comment, + STATE(4581), 1, + sym_path, + STATE(5348), 1, + sym_cell_path, + ACTIONS(1057), 33, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -460236,63 +419177,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [127097] = 6, - ACTIONS(3), 1, + [126553] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9711), 1, - anon_sym_DOT, - ACTIONS(9714), 1, - aux_sym__immediate_decimal_token2, - STATE(4996), 1, + STATE(4563), 1, sym_comment, - ACTIONS(2581), 12, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(2583), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, + ACTIONS(1063), 3, 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [127149] = 4, + aux_sym_command_token1, + ACTIONS(1061), 34, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_LF2, + [126601] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4997), 1, + STATE(4564), 1, sym_comment, - ACTIONS(950), 16, + ACTIONS(1093), 12, sym_identifier, anon_sym_GT, + anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, @@ -460302,14 +419239,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token5, - ACTIONS(952), 21, + ACTIONS(1095), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -460327,24 +419265,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [127197] = 8, + [126649] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3522), 1, + ACTIONS(3316), 1, anon_sym_LPAREN2, - ACTIONS(9716), 1, + ACTIONS(9243), 1, anon_sym_DOT_DOT2, - STATE(4998), 1, + STATE(4565), 1, sym_comment, - ACTIONS(1934), 2, + ACTIONS(1844), 2, anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(9718), 2, + ACTIONS(9245), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(3518), 11, + ACTIONS(3312), 11, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, @@ -460356,7 +419292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3520), 20, + ACTIONS(3314), 20, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_not, @@ -460377,42 +419313,35 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [127253] = 6, - ACTIONS(3), 1, + [126705] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9720), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9722), 1, - aux_sym_unquoted_token2, - STATE(4999), 1, + STATE(4566), 1, sym_comment, - ACTIONS(936), 12, - sym_identifier, + ACTIONS(1039), 4, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1037), 33, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(938), 23, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -460423,25 +419352,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [127305] = 5, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [126753] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9724), 1, - aux_sym__immediate_decimal_token2, - STATE(5000), 1, + ACTIONS(1381), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9209), 1, + aux_sym_unquoted_token3, + ACTIONS(9247), 1, + anon_sym_DOT, + ACTIONS(9249), 1, + aux_sym_unquoted_token5, + STATE(4567), 1, sym_comment, - ACTIONS(917), 9, + STATE(8796), 1, + sym__immediate_decimal, + ACTIONS(1379), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + ACTIONS(920), 6, anon_sym_GT, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - ACTIONS(919), 27, - anon_sym_DASH, + ACTIONS(922), 24, + anon_sym_DOLLAR, anon_sym_in, anon_sym_LBRACE, anon_sym_STAR_STAR, @@ -460465,15 +419407,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [127355] = 4, + [126813] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5001), 1, + STATE(4568), 1, sym_comment, - ACTIONS(1342), 12, + ACTIONS(1237), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -460486,7 +419425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1344), 25, + ACTIONS(1239), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -460512,12 +419451,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [127403] = 4, + [126861] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5002), 1, + STATE(4569), 1, sym_comment, - ACTIONS(1368), 12, + ACTIONS(1051), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -460530,7 +419469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1370), 25, + ACTIONS(1053), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -460556,14 +419495,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [127451] = 4, + [126909] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4018), 1, + ACTIONS(1285), 1, anon_sym_LF, - STATE(5003), 1, + STATE(4570), 1, sym_comment, - ACTIONS(4016), 36, + ACTIONS(1283), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -460600,12 +419539,56 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [127499] = 4, + [126957] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(4571), 1, + sym_comment, + ACTIONS(1043), 4, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1041), 33, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [127005] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5004), 1, + STATE(4572), 1, sym_comment, - ACTIONS(1247), 12, + ACTIONS(1279), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -460618,7 +419601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1249), 25, + ACTIONS(1281), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -460644,35 +419627,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [127547] = 4, - ACTIONS(113), 1, + [127053] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5005), 1, + STATE(4573), 1, sym_comment, - ACTIONS(1065), 4, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1063), 33, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1165), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1167), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -460683,39 +419671,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [127595] = 4, - ACTIONS(113), 1, + [127101] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5177), 1, - anon_sym_LF, - STATE(5006), 1, + ACTIONS(9251), 1, + anon_sym_DOT, + STATE(4574), 1, sym_comment, - ACTIONS(5175), 36, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, + STATE(4601), 1, + sym_path, + STATE(5249), 1, + sym_cell_path, + ACTIONS(992), 11, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_not, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(994), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -460723,49 +419712,92 @@ 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, - [127643] = 4, - ACTIONS(3), 1, + [127155] = 7, + ACTIONS(113), 1, anon_sym_POUND, - STATE(5007), 1, + ACTIONS(1004), 1, + aux_sym_command_token1, + ACTIONS(9241), 1, + anon_sym_DOT, + STATE(4554), 1, + sym_cell_path, + STATE(4575), 1, sym_comment, - ACTIONS(1368), 12, - sym_identifier, + STATE(4581), 1, + sym_path, + ACTIONS(1002), 33, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1370), 25, - anon_sym_COLON, - anon_sym_COMMA, + [127209] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(9219), 1, + anon_sym_DOT, + STATE(4576), 1, + sym_comment, + STATE(4619), 1, + sym_path, + STATE(5418), 1, + sym_cell_path, + ACTIONS(994), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(992), 31, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -460776,28 +419808,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [127691] = 7, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + [127263] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1150), 1, - aux_sym_command_token1, - ACTIONS(9705), 1, - anon_sym_DOT, - STATE(5008), 1, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + STATE(4577), 1, sym_comment, - STATE(5191), 1, - sym_path, - STATE(5736), 1, - sym_cell_path, - ACTIONS(1148), 33, - anon_sym_SEMI, - anon_sym_LF, + ACTIONS(1161), 2, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1159), 34, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -460823,40 +419857,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [127745] = 4, - ACTIONS(3), 1, + [127313] = 5, + ACTIONS(113), 1, anon_sym_POUND, - STATE(5009), 1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + STATE(4578), 1, sym_comment, - ACTIONS(1346), 12, + ACTIONS(1131), 2, + anon_sym_RBRACK, + anon_sym_RPAREN, + ACTIONS(1129), 34, sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1348), 25, - anon_sym_COLON, - anon_sym_COMMA, + [127363] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + STATE(4579), 1, + sym_comment, + ACTIONS(1137), 2, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1135), 34, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -460867,40 +419944,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [127793] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [127413] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(5010), 1, + ACTIONS(961), 1, + anon_sym_DOT_DOT2, + ACTIONS(9203), 1, + anon_sym_DOT, + ACTIONS(9209), 1, + aux_sym_unquoted_token5, + ACTIONS(9253), 1, + sym_filesize_unit, + ACTIONS(9255), 1, + sym_duration_unit, + STATE(4580), 1, sym_comment, - ACTIONS(1368), 12, - sym_identifier, + ACTIONS(965), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(938), 5, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, + ACTIONS(940), 25, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1370), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, + [127473] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1012), 1, + aux_sym_command_token1, + ACTIONS(9241), 1, + anon_sym_DOT, + STATE(4581), 1, + sym_comment, + STATE(4587), 1, + aux_sym_cell_path_repeat1, + STATE(5132), 1, + sym_path, + ACTIONS(1010), 33, + anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -460911,58 +420041,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [127841] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5011), 1, - sym_comment, - ACTIONS(1368), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1370), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, + [127527] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(3769), 1, + anon_sym_LF, + STATE(4582), 1, + sym_comment, + ACTIONS(3767), 36, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [127889] = 4, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [127575] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3507), 1, + ACTIONS(9259), 1, anon_sym_LF, - STATE(5012), 1, + STATE(4583), 1, sym_comment, - ACTIONS(3505), 36, + ACTIONS(9257), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -460999,14 +420132,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [127937] = 4, + [127623] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4045), 1, + ACTIONS(9263), 1, anon_sym_LF, - STATE(5013), 1, + STATE(4584), 1, sym_comment, - ACTIONS(4043), 36, + ACTIONS(9261), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -461043,20 +420176,142 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [127985] = 7, + [127671] = 21, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1181), 1, - aux_sym_command_token1, - ACTIONS(9726), 1, + ACTIONS(9267), 1, + anon_sym_LF, + ACTIONS(9277), 1, + anon_sym_QMARK2, + ACTIONS(9285), 1, + anon_sym_bit_DASHand, + ACTIONS(9287), 1, + anon_sym_bit_DASHxor, + ACTIONS(9289), 1, + anon_sym_bit_DASHor, + ACTIONS(9291), 1, + anon_sym_and, + ACTIONS(9293), 1, + anon_sym_xor, + ACTIONS(9295), 1, + anon_sym_or, + ACTIONS(9297), 1, anon_sym_DOT, - STATE(5014), 1, + STATE(4585), 1, sym_comment, - STATE(5047), 1, + STATE(4928), 1, sym_path, - STATE(5893), 1, + STATE(5662), 1, + sym_cell_path, + ACTIONS(9271), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9279), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9281), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9283), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9265), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(9273), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9275), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(9269), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [127753] = 21, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(9297), 1, + anon_sym_DOT, + ACTIONS(9301), 1, + anon_sym_LF, + ACTIONS(9311), 1, + anon_sym_QMARK2, + ACTIONS(9319), 1, + anon_sym_bit_DASHand, + ACTIONS(9321), 1, + anon_sym_bit_DASHxor, + ACTIONS(9323), 1, + anon_sym_bit_DASHor, + ACTIONS(9325), 1, + anon_sym_and, + ACTIONS(9327), 1, + anon_sym_xor, + ACTIONS(9329), 1, + anon_sym_or, + STATE(4586), 1, + sym_comment, + STATE(4928), 1, + sym_path, + STATE(5689), 1, sym_cell_path, - ACTIONS(1179), 33, + ACTIONS(9305), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9313), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9315), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9317), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9299), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(9307), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9309), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(9303), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [127835] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1008), 1, + aux_sym_command_token1, + ACTIONS(9241), 1, + anon_sym_DOT, + STATE(4587), 1, + sym_comment, + STATE(4597), 1, + aux_sym_cell_path_repeat1, + STATE(5132), 1, + sym_path, + ACTIONS(1006), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -461064,6 +420319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -461089,25 +420345,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LF2, - [128039] = 4, + [127889] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5015), 1, + ACTIONS(9331), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(4588), 1, sym_comment, - ACTIONS(1174), 3, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1172), 34, - anon_sym_SEMI, + ACTIONS(1139), 36, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_GT, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -461133,42 +420389,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - [128087] = 8, + [127937] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2847), 1, - anon_sym_LPAREN2, - ACTIONS(9728), 1, - anon_sym_DOT_DOT2, - STATE(5016), 1, + ACTIONS(9335), 1, + anon_sym_LT, + STATE(4589), 1, sym_comment, - ACTIONS(2851), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(9730), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2843), 11, + ACTIONS(9333), 36, + anon_sym_COMMA, + 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, + [127985] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(3723), 1, + anon_sym_LF, + STATE(4590), 1, + sym_comment, + ACTIONS(3721), 36, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, + anon_sym_not, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2845), 20, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -461176,76 +420468,82 @@ 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, - [128143] = 4, + [128033] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5017), 1, + ACTIONS(9337), 1, + anon_sym_LT, + STATE(4591), 1, sym_comment, - ACTIONS(1372), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1374), 25, - anon_sym_COLON, + ACTIONS(9333), 36, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + 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, + [128081] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4592), 1, + sym_comment, + ACTIONS(1049), 15, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [128191] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9693), 1, - anon_sym_DOT, - ACTIONS(9701), 1, - aux_sym_unquoted_token5, - ACTIONS(9732), 1, - anon_sym_DOT_DOT2, - ACTIONS(9736), 1, - sym_filesize_unit, - ACTIONS(9738), 1, - sym_duration_unit, - STATE(5018), 1, - sym_comment, - ACTIONS(9734), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(959), 12, - sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1047), 22, + sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -461253,80 +420551,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_mod, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(961), 18, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [128251] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5019), 1, - sym_comment, - ACTIONS(1368), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1370), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [128129] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4593), 1, + sym_comment, + ACTIONS(1039), 15, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [128299] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5020), 1, - sym_comment, - ACTIONS(1368), 12, - sym_identifier, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1037), 22, + sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -461334,146 +420595,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_mod, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1370), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [128347] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5021), 1, - sym_comment, - ACTIONS(1362), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1364), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [128177] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(9339), 1, + anon_sym_DOT_DOT2, + STATE(4594), 1, + sym_comment, + ACTIONS(3362), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(9341), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3354), 11, + anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3356), 20, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [128233] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4595), 1, + sym_comment, + ACTIONS(1043), 15, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [128395] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1194), 1, - sym_identifier, - ACTIONS(1200), 1, - anon_sym_DASH, - STATE(5022), 1, - sym_comment, - ACTIONS(1196), 8, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - ACTIONS(1198), 10, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1041), 22, + sym_cmd_identifier, anon_sym_GT, + anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1366), 17, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [128449] = 5, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [128281] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9740), 1, - anon_sym_LBRACK2, - STATE(5023), 1, - sym_comment, - ACTIONS(1261), 2, - ts_builtin_sym_end, + ACTIONS(5815), 1, anon_sym_LF, - ACTIONS(1259), 34, + STATE(4596), 1, + sym_comment, + ACTIONS(5818), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, anon_sym_DOT_DOT_EQ, @@ -461500,40 +420745,39 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [128499] = 4, - ACTIONS(3), 1, + [128329] = 6, + ACTIONS(113), 1, anon_sym_POUND, - STATE(5024), 1, + ACTIONS(987), 1, + aux_sym_command_token1, + ACTIONS(9343), 1, + anon_sym_DOT, + STATE(5132), 1, + sym_path, + STATE(4597), 2, sym_comment, - ACTIONS(1243), 12, - sym_identifier, + aux_sym_cell_path_repeat1, + ACTIONS(985), 33, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1290), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -461544,12 +420788,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [128547] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [128381] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5025), 1, + STATE(4598), 1, sym_comment, - ACTIONS(1406), 12, + ACTIONS(1249), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -461562,7 +420809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1408), 25, + ACTIONS(1251), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -461588,12 +420835,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [128595] = 4, + [128429] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5026), 1, + STATE(4599), 1, sym_comment, - ACTIONS(1368), 12, + ACTIONS(1283), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -461606,7 +420853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1370), 25, + ACTIONS(1285), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -461632,27 +420879,348 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [128643] = 7, - ACTIONS(113), 1, + [128477] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1012), 1, - aux_sym_command_token1, - ACTIONS(9726), 1, + ACTIONS(9251), 1, anon_sym_DOT, - STATE(4964), 1, + STATE(4600), 1, + sym_comment, + STATE(4601), 1, + sym_path, + STATE(5516), 1, sym_cell_path, - STATE(5027), 1, + ACTIONS(1002), 11, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1004), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [128531] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9251), 1, + anon_sym_DOT, + STATE(4601), 1, sym_comment, - STATE(5047), 1, + STATE(4602), 1, + aux_sym_cell_path_repeat1, + STATE(5121), 1, sym_path, - ACTIONS(1010), 33, + ACTIONS(1010), 11, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1012), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [128585] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9251), 1, + anon_sym_DOT, + STATE(4602), 1, + sym_comment, + STATE(4604), 1, + aux_sym_cell_path_repeat1, + STATE(5121), 1, + sym_path, + ACTIONS(1006), 11, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1008), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [128639] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4603), 1, + sym_comment, + ACTIONS(2362), 14, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + ACTIONS(2364), 23, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_LPAREN2, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [128687] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9346), 1, + anon_sym_DOT, + STATE(5121), 1, + sym_path, + STATE(4604), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(985), 11, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(987), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [128739] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4605), 1, + sym_comment, + ACTIONS(2402), 14, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + ACTIONS(2404), 23, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_LPAREN2, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [128787] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1209), 1, + ts_builtin_sym_end, + ACTIONS(9349), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(4606), 1, + sym_comment, + ACTIONS(1139), 35, anon_sym_SEMI, anon_sym_LF, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [128837] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(994), 1, + anon_sym_LF, + ACTIONS(9351), 1, + anon_sym_DOT, + STATE(4607), 1, + sym_comment, + STATE(4636), 1, + sym_cell_path, + STATE(4735), 1, + sym_path, + ACTIONS(992), 33, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -461678,13 +421246,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LF2, - [128697] = 4, + [128891] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5028), 1, + STATE(4608), 1, sym_comment, - ACTIONS(1294), 12, + ACTIONS(893), 17, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -461697,14 +421264,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1296), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + ACTIONS(895), 20, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -461723,12 +421288,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [128745] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [128939] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5029), 1, + STATE(4609), 1, sym_comment, - ACTIONS(1294), 12, + ACTIONS(901), 17, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -461741,14 +421308,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1296), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + ACTIONS(903), 20, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -461767,12 +421332,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [128793] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [128987] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5030), 1, + STATE(4610), 1, sym_comment, - ACTIONS(1354), 12, + ACTIONS(934), 17, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -461785,14 +421352,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1356), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + ACTIONS(936), 20, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -461811,39 +421376,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [128841] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(9742), 1, - anon_sym_DOT, - STATE(5031), 1, - sym_comment, - STATE(5204), 1, - aux_sym_cell_path_repeat1, - STATE(5587), 1, - sym_path, - ACTIONS(1008), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1006), 31, - anon_sym_RBRACK, + [129035] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9353), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9355), 1, + aux_sym_unquoted_token2, + STATE(4611), 1, + sym_comment, + ACTIONS(920), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(922), 23, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -461854,28 +421424,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - [128895] = 4, + [129087] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(3693), 1, + anon_sym_LF, + STATE(4612), 1, + sym_comment, + ACTIONS(3691), 36, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [129135] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5032), 1, - sym_comment, - ACTIONS(938), 3, - ts_builtin_sym_end, + ACTIONS(3701), 1, anon_sym_LF, - anon_sym_LPAREN2, - ACTIONS(936), 34, + STATE(4613), 1, + sym_comment, + ACTIONS(3699), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, anon_sym_DOT_DOT_EQ, @@ -461902,12 +421512,58 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [128943] = 4, + [129183] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(5033), 1, + ACTIONS(9108), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(9357), 1, + anon_sym_DOT, + STATE(4614), 1, + sym_comment, + ACTIONS(911), 8, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + ACTIONS(913), 27, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [129235] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4615), 1, sym_comment, - ACTIONS(1368), 12, + ACTIONS(1245), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -461920,7 +421576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1370), 25, + ACTIONS(1247), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -461946,17 +421602,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [128991] = 5, + [129283] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9744), 1, - sym_long_flag_identifier, - STATE(5034), 1, + STATE(4616), 1, sym_comment, - ACTIONS(5079), 2, + ACTIONS(1209), 3, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(5075), 34, + anon_sym_LPAREN2, + ACTIONS(1139), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -461991,40 +421646,80 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [129041] = 4, - ACTIONS(3), 1, + [129331] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(5035), 1, + STATE(4617), 1, sym_comment, - ACTIONS(1316), 12, - sym_identifier, + ACTIONS(1039), 4, + ts_builtin_sym_end, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_command_token1, + ACTIONS(1037), 33, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1318), 25, - anon_sym_COLON, - anon_sym_COMMA, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [129379] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(4618), 1, + sym_comment, + ACTIONS(1157), 2, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1155), 35, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -462035,40 +421730,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [129089] = 4, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + aux_sym_unquoted_token6, + [129427] = 7, + ACTIONS(113), 1, anon_sym_POUND, - STATE(5036), 1, + ACTIONS(9219), 1, + anon_sym_DOT, + STATE(4619), 1, sym_comment, - ACTIONS(1368), 12, - sym_identifier, + STATE(4627), 1, + aux_sym_cell_path_repeat1, + STATE(5150), 1, + sym_path, + ACTIONS(1012), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1010), 31, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1370), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -462079,24 +421777,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [129137] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + [129481] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2439), 1, - anon_sym_LF, - STATE(5037), 1, + ACTIONS(9104), 1, + aux_sym__immediate_decimal_token2, + STATE(4620), 1, sym_comment, - ACTIONS(2437), 36, + ACTIONS(2358), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2356), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, anon_sym_DOT_DOT_EQ, @@ -462123,14 +421826,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [129185] = 4, + [129531] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(6329), 1, + ACTIONS(3713), 1, anon_sym_LF, - STATE(5038), 1, + STATE(4621), 1, sym_comment, - ACTIONS(6332), 36, + ACTIONS(3711), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -462167,15 +421870,17 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [129233] = 4, + [129579] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(5039), 1, + ACTIONS(9078), 1, + aux_sym__immediate_decimal_token2, + STATE(4622), 1, sym_comment, - ACTIONS(1111), 2, + ACTIONS(2231), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1109), 35, + ACTIONS(2229), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -462186,7 +421891,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_not, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -462211,40 +421915,36 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [129281] = 4, - ACTIONS(3), 1, + [129629] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(5040), 1, + STATE(4623), 1, sym_comment, - ACTIONS(1308), 12, - sym_identifier, + ACTIONS(1063), 3, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1061), 34, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1310), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -462255,40 +421955,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [129329] = 4, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + [129677] = 5, + ACTIONS(113), 1, anon_sym_POUND, - STATE(5041), 1, + ACTIONS(9359), 1, + aux_sym__immediate_decimal_token2, + STATE(4624), 1, sym_comment, - ACTIONS(1312), 12, - sym_identifier, + ACTIONS(2364), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2362), 34, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [129727] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1053), 1, + aux_sym_command_token1, + ACTIONS(9241), 1, + anon_sym_DOT, + STATE(4581), 1, + sym_path, + STATE(4625), 1, + sym_comment, + STATE(5312), 1, + sym_cell_path, + ACTIONS(1051), 33, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1314), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, + [129781] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1239), 1, + anon_sym_LF, + STATE(4626), 1, + sym_comment, + ACTIONS(1237), 36, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [129829] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(9219), 1, + anon_sym_DOT, + STATE(4627), 1, + sym_comment, + STATE(4630), 1, + aux_sym_cell_path_repeat1, + STATE(5150), 1, + sym_path, + ACTIONS(1008), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1006), 31, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -462299,17 +422138,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [129377] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + [129883] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5042), 1, + STATE(4628), 1, sym_comment, - ACTIONS(1111), 3, + ACTIONS(1070), 3, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1109), 34, + ACTIONS(1068), 34, anon_sym_SEMI, + anon_sym_COLON, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, @@ -462342,29 +422186,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, + [129931] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9361), 1, anon_sym_DOT, - [129425] = 7, + ACTIONS(9364), 1, + aux_sym__immediate_decimal_token2, + STATE(4629), 1, + sym_comment, + ACTIONS(911), 8, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token5, + ACTIONS(913), 27, + anon_sym_DASH, + anon_sym_in, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [129983] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1196), 1, - aux_sym_command_token1, - ACTIONS(9746), 1, - anon_sym_DOT_DOT2, - STATE(5043), 1, + ACTIONS(9366), 1, + anon_sym_DOT, + STATE(5150), 1, + sym_path, + STATE(4630), 2, sym_comment, - ACTIONS(9748), 2, + aux_sym_cell_path_repeat1, + ACTIONS(987), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1194), 5, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_LF2, - ACTIONS(1198), 28, + sym__entry_separator, + ACTIONS(985), 31, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -462390,14 +422277,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [129479] = 4, + anon_sym_DOT_DOT2, + [130035] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5173), 1, + ACTIONS(2231), 1, anon_sym_LF, - STATE(5044), 1, + STATE(4631), 1, sym_comment, - ACTIONS(5171), 36, + ACTIONS(2229), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -462434,24 +422322,24 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [129527] = 4, + [130083] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5045), 1, - sym_comment, - ACTIONS(1420), 3, - ts_builtin_sym_end, + ACTIONS(2364), 1, anon_sym_LF, - anon_sym_LPAREN2, - ACTIONS(1418), 34, + STATE(4632), 1, + sym_comment, + ACTIONS(2362), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, anon_sym_DOT_DOT_EQ, @@ -462478,36 +422366,79 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [129575] = 4, + [130131] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5046), 1, - sym_comment, - ACTIONS(1170), 3, + ACTIONS(2404), 1, anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1168), 34, + STATE(4633), 1, + sym_comment, + ACTIONS(2402), 36, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [130179] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9369), 1, + aux_sym__immediate_decimal_token2, + STATE(4634), 1, + sym_comment, + ACTIONS(911), 9, + anon_sym_GT, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + ACTIONS(913), 27, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -462521,27 +422452,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - [129623] = 7, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [130229] = 8, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(989), 1, - aux_sym_command_token1, - ACTIONS(9726), 1, - anon_sym_DOT, - STATE(5047), 1, + ACTIONS(1074), 1, + anon_sym_LF, + ACTIONS(1078), 1, + anon_sym_DASH, + ACTIONS(9371), 1, + anon_sym_DOT_DOT2, + STATE(4635), 1, sym_comment, - STATE(5074), 1, - aux_sym_cell_path_repeat1, - STATE(5543), 1, - sym_path, - ACTIONS(987), 33, + ACTIONS(9373), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1072), 5, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + ACTIONS(1076), 27, anon_sym_GT, - anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_STAR_STAR, @@ -462568,35 +422503,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LF2, - [129677] = 4, - ACTIONS(3), 1, + [130285] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(5048), 1, + STATE(4636), 1, sym_comment, - ACTIONS(909), 9, + ACTIONS(1070), 3, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1068), 34, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - ACTIONS(911), 28, - anon_sym_COMMA, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -462610,32 +422546,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [129725] = 4, + anon_sym_DOT_DOT2, + [130333] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5049), 1, + STATE(4637), 1, sym_comment, - ACTIONS(1115), 15, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1113), 22, - sym_cmd_identifier, + ACTIONS(938), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -462643,28 +422561,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_mod, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(940), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_LT2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [129773] = 4, + [130381] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5050), 1, + ACTIONS(9185), 1, + aux_sym__immediate_decimal_token2, + STATE(4638), 1, sym_comment, - ACTIONS(950), 10, + ACTIONS(893), 9, anon_sym_GT, - anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -462673,8 +422608,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, sym_filesize_unit, aux_sym_unquoted_token5, - ACTIONS(952), 27, - anon_sym_DASH_DASH, + ACTIONS(895), 27, + anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, anon_sym_STAR_STAR, @@ -462701,40 +422636,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [129821] = 7, - ACTIONS(113), 1, + [130431] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1205), 1, - aux_sym_command_token1, - ACTIONS(9705), 1, + ACTIONS(9375), 1, anon_sym_DOT, - STATE(5051), 1, + STATE(4639), 1, sym_comment, - STATE(5191), 1, + STATE(4642), 1, sym_path, - STATE(5740), 1, + STATE(5283), 1, sym_cell_path, - ACTIONS(1203), 33, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1002), 7, anon_sym_GT, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT2, + ACTIONS(1004), 27, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -462748,12 +422681,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [129875] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [130485] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(5052), 1, + ACTIONS(926), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(1379), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(1381), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9239), 1, + aux_sym_unquoted_token3, + ACTIONS(9377), 1, + anon_sym_DOT, + ACTIONS(9379), 1, + aux_sym_unquoted_token5, + STATE(4640), 1, sym_comment, - ACTIONS(1368), 12, + STATE(8796), 1, + sym__immediate_decimal, + ACTIONS(920), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -462766,15 +422715,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1370), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(922), 18, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -462792,55 +422734,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [129923] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5053), 1, - sym_comment, - ACTIONS(9750), 37, - anon_sym_COMMA, - 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, - anon_sym_LBRACE, - [129969] = 4, + [130547] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5054), 1, + STATE(4641), 1, sym_comment, - ACTIONS(1368), 12, + ACTIONS(1229), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -462853,7 +422752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1370), 25, + ACTIONS(1231), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -462879,130 +422778,212 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [130017] = 4, - ACTIONS(113), 1, + [130595] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5213), 1, - anon_sym_LF, - STATE(5055), 1, + ACTIONS(9375), 1, + anon_sym_DOT, + STATE(4642), 1, sym_comment, - ACTIONS(5211), 36, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, + STATE(4656), 1, + aux_sym_cell_path_repeat1, + STATE(5077), 1, + sym_path, + ACTIONS(1010), 7, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT2, + ACTIONS(1012), 27, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, + anon_sym_in, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [130065] = 4, - ACTIONS(113), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [130649] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1352), 1, - anon_sym_LF, - STATE(5056), 1, + ACTIONS(9147), 1, + aux_sym__immediate_decimal_token2, + STATE(4643), 1, sym_comment, - ACTIONS(1350), 36, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(911), 7, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + ACTIONS(913), 29, + anon_sym_COMMA, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [130113] = 11, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [130699] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(942), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(1582), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(1584), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8570), 1, - aux_sym_unquoted_token3, - ACTIONS(8572), 1, - aux_sym_unquoted_token5, - ACTIONS(9752), 1, - anon_sym_DOT, - STATE(5057), 1, + ACTIONS(9176), 1, + aux_sym__immediate_decimal_token2, + STATE(4644), 1, sym_comment, - STATE(9346), 1, - sym__immediate_decimal, - ACTIONS(936), 12, - sym_identifier, + ACTIONS(893), 7, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + ACTIONS(895), 29, + anon_sym_COMMA, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [130749] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9381), 1, + aux_sym__immediate_decimal_token2, + STATE(4645), 1, + sym_comment, + ACTIONS(901), 9, + anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + ACTIONS(903), 27, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(938), 18, - anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [130799] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9383), 1, + aux_sym__immediate_decimal_token2, + STATE(4646), 1, + sym_comment, + ACTIONS(901), 7, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + ACTIONS(903), 29, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -463018,12 +422999,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [130175] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [130849] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5058), 1, + STATE(4647), 1, sym_comment, - ACTIONS(1186), 12, + ACTIONS(1233), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -463036,7 +423023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1188), 25, + ACTIONS(1235), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -463062,27 +423049,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [130223] = 7, + [130897] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1205), 1, - aux_sym_command_token1, - ACTIONS(9726), 1, - anon_sym_DOT, - STATE(5047), 1, - sym_path, - STATE(5059), 1, + STATE(4648), 1, sym_comment, - STATE(5839), 1, - sym_cell_path, - ACTIONS(1203), 33, - anon_sym_SEMI, + ACTIONS(1049), 3, anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1047), 34, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -463108,37 +423091,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LF2, - [130277] = 5, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [130945] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8570), 1, - aux_sym_unquoted_token5, - STATE(5060), 1, + STATE(4649), 1, sym_comment, - ACTIONS(959), 12, - sym_identifier, + ACTIONS(893), 9, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(961), 24, - anon_sym_COLON, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + ACTIONS(895), 28, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -463154,35 +423131,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [130327] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [130993] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5061), 1, + STATE(4650), 1, sym_comment, - ACTIONS(1332), 12, - sym_identifier, + ACTIONS(901), 9, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1334), 25, - anon_sym_COLON, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + ACTIONS(903), 28, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -463198,12 +423175,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [130375] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [131041] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(5062), 1, + ACTIONS(961), 1, + anon_sym_DOT_DOT2, + ACTIONS(8013), 1, + aux_sym_unquoted_token5, + ACTIONS(8163), 1, + anon_sym_DOT, + ACTIONS(9227), 1, + sym_filesize_unit, + ACTIONS(9229), 1, + sym_duration_unit, + STATE(4651), 1, sym_comment, - ACTIONS(1336), 12, + ACTIONS(965), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(938), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -463216,14 +423212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1338), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + ACTIONS(940), 18, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -463242,56 +423231,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [130423] = 4, + [131101] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5063), 1, + STATE(4652), 1, sym_comment, - ACTIONS(1119), 15, - anon_sym_DASH_DASH, + ACTIONS(934), 9, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + ACTIONS(936), 28, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1117), 22, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [130471] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [131149] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5064), 1, + STATE(4653), 1, sym_comment, - ACTIONS(917), 9, + ACTIONS(893), 9, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, @@ -463301,11 +423290,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, sym_filesize_unit, aux_sym_unquoted_token5, - ACTIONS(919), 28, - anon_sym_COMMA, + ACTIONS(895), 28, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -463330,35 +423319,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [130519] = 4, + [131197] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5065), 1, + STATE(4654), 1, sym_comment, - ACTIONS(1158), 12, - sym_identifier, + ACTIONS(901), 9, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1160), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + ACTIONS(903), 28, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -463374,38 +423357,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [130567] = 5, - ACTIONS(113), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [131245] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - STATE(5066), 1, + STATE(4655), 1, sym_comment, - ACTIONS(1249), 2, - anon_sym_RBRACK, - anon_sym_RPAREN, - ACTIONS(1247), 34, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_DOLLAR, + ACTIONS(934), 9, anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + ACTIONS(936), 28, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -463419,35 +423404,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [130617] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [131293] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(5067), 1, + ACTIONS(9375), 1, + anon_sym_DOT, + STATE(4656), 1, sym_comment, - ACTIONS(1368), 12, - sym_identifier, + STATE(4658), 1, + aux_sym_cell_path_repeat1, + STATE(5077), 1, + sym_path, + ACTIONS(1006), 7, anon_sym_GT, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1370), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_DOT_DOT2, + ACTIONS(1008), 27, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -463463,69 +423449,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [130665] = 5, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [131347] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8027), 1, - aux_sym_unquoted_token5, - STATE(5068), 1, + ACTIONS(9385), 1, + aux_sym__immediate_decimal_token1, + STATE(4657), 1, sym_comment, - ACTIONS(961), 2, + ACTIONS(4773), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(959), 34, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [130715] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1188), 1, - anon_sym_LF, - STATE(5069), 1, - sym_comment, - ACTIONS(1186), 36, + ACTIONS(4771), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, anon_sym_DOT_DOT_EQ, @@ -463552,80 +423499,37 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [130763] = 4, - ACTIONS(113), 1, + [131397] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1065), 1, - anon_sym_LF, - STATE(5070), 1, + ACTIONS(9387), 1, + anon_sym_DOT, + STATE(5077), 1, + sym_path, + STATE(4658), 2, sym_comment, - ACTIONS(1063), 36, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + aux_sym_cell_path_repeat1, + ACTIONS(985), 7, + anon_sym_GT, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [130811] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(5071), 1, - sym_comment, - ACTIONS(1282), 2, - anon_sym_RBRACK, - anon_sym_RPAREN, - ACTIONS(1280), 35, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT2, + ACTIONS(987), 27, anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -463639,15 +423543,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - aux_sym_unquoted_token6, - [130859] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [131449] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9754), 1, + ACTIONS(9364), 1, aux_sym__immediate_decimal_token2, - STATE(5072), 1, + STATE(4659), 1, sym_comment, - ACTIONS(923), 9, + ACTIONS(911), 9, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, @@ -463657,7 +423562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, sym_filesize_unit, aux_sym_unquoted_token5, - ACTIONS(925), 27, + ACTIONS(913), 27, anon_sym_DASH, anon_sym_in, anon_sym_EQ_GT, @@ -463685,107 +423590,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [130909] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9756), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9758), 1, - aux_sym_unquoted_token2, - STATE(5073), 1, - sym_comment, - ACTIONS(936), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(938), 23, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [130961] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1008), 1, - aux_sym_command_token1, - ACTIONS(9726), 1, - anon_sym_DOT, - STATE(5074), 1, - sym_comment, - STATE(5081), 1, - aux_sym_cell_path_repeat1, - STATE(5543), 1, - sym_path, - ACTIONS(1006), 33, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LF2, - [131015] = 4, + [131499] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5205), 1, + ACTIONS(4957), 1, anon_sym_LF, - STATE(5075), 1, + STATE(4660), 1, sym_comment, - ACTIONS(5203), 36, + ACTIONS(4955), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -463822,35 +423634,30 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [131063] = 4, + [131547] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5076), 1, + ACTIONS(9137), 1, + aux_sym__immediate_decimal_token2, + STATE(4661), 1, sym_comment, - ACTIONS(1320), 12, - sym_identifier, + ACTIONS(893), 9, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1322), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + ACTIONS(895), 27, + anon_sym_DASH, + anon_sym_in, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -463866,35 +423673,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [131111] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [131597] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5077), 1, + ACTIONS(9390), 1, + aux_sym__immediate_decimal_token2, + STATE(4662), 1, sym_comment, - ACTIONS(1350), 12, - sym_identifier, + ACTIONS(901), 9, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1352), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + ACTIONS(903), 27, + anon_sym_DASH, + anon_sym_in, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -463910,12 +423718,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [131159] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [131647] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5078), 1, + STATE(4663), 1, sym_comment, - ACTIONS(1280), 12, + ACTIONS(1155), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -463928,7 +423742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1282), 25, + ACTIONS(1157), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -463954,24 +423768,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [131207] = 4, + [131695] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5079), 1, + ACTIONS(4961), 1, + anon_sym_LF, + STATE(4664), 1, + sym_comment, + ACTIONS(4959), 36, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [131743] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(4665), 1, sym_comment, - ACTIONS(1115), 4, + ACTIONS(1035), 4, ts_builtin_sym_end, + anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - ACTIONS(1113), 33, + ACTIONS(1033), 33, anon_sym_SEMI, - anon_sym_LF, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -463998,28 +423856,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT2, anon_sym_DOT, - [131255] = 7, + [131791] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9742), 1, - anon_sym_DOT, - STATE(5031), 1, - aux_sym_cell_path_repeat1, - STATE(5080), 1, + STATE(4666), 1, sym_comment, - STATE(5587), 1, - sym_path, - ACTIONS(989), 3, + ACTIONS(1022), 4, + ts_builtin_sym_end, + anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(987), 31, - anon_sym_RBRACK, + ACTIONS(1020), 33, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -464045,19 +423899,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - [131309] = 6, + anon_sym_DOT, + [131839] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(4965), 1, + anon_sym_LF, + STATE(4667), 1, + sym_comment, + ACTIONS(4963), 36, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [131887] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1091), 1, + anon_sym_LF, + STATE(4668), 1, + sym_comment, + ACTIONS(1089), 36, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [131935] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1001), 1, + ACTIONS(1004), 1, aux_sym_command_token1, - ACTIONS(9760), 1, + ACTIONS(9392), 1, anon_sym_DOT, - STATE(5543), 1, - sym_path, - STATE(5081), 2, + STATE(4563), 1, + sym_cell_path, + STATE(4669), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(999), 33, + STATE(4677), 1, + sym_path, + ACTIONS(1002), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -464091,24 +424035,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_LF2, - [131361] = 4, + [131989] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(5082), 1, + ACTIONS(1381), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9209), 1, + aux_sym_unquoted_token3, + ACTIONS(9247), 1, + anon_sym_DOT, + ACTIONS(9249), 1, + aux_sym_unquoted_token5, + STATE(4670), 1, sym_comment, - ACTIONS(950), 9, + STATE(8796), 1, + sym__immediate_decimal, + ACTIONS(1379), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + ACTIONS(920), 6, anon_sym_GT, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - ACTIONS(952), 28, + ACTIONS(922), 24, anon_sym_COMMA, - anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, anon_sym_STAR_STAR, @@ -464132,29 +424085,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [131409] = 6, + [132049] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(922), 1, + anon_sym_LF, + STATE(4671), 1, + sym_comment, + ACTIONS(920), 36, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [132097] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9583), 1, + ACTIONS(9369), 1, aux_sym__immediate_decimal_token2, - ACTIONS(9763), 1, + ACTIONS(9394), 1, anon_sym_DOT, - STATE(5083), 1, + STATE(4672), 1, sym_comment, - ACTIONS(923), 8, + ACTIONS(911), 8, anon_sym_GT, - anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, anon_sym_DOT_DOT2, sym_filesize_unit, - ACTIONS(925), 27, - anon_sym_DASH_DASH, + aux_sym_unquoted_token5, + ACTIONS(913), 27, + anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, anon_sym_STAR_STAR, @@ -464181,14 +424175,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [131461] = 4, + [132149] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9767), 1, + STATE(4673), 1, + sym_comment, + ACTIONS(1049), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(5084), 1, + ACTIONS(1047), 35, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + anon_sym_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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [132197] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(5111), 1, + anon_sym_LF, + STATE(4674), 1, sym_comment, - ACTIONS(9765), 36, + ACTIONS(5109), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -464225,38 +424263,40 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [131509] = 5, - ACTIONS(113), 1, + [132245] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - STATE(5085), 1, + STATE(4675), 1, sym_comment, - ACTIONS(1255), 2, - anon_sym_RBRACK, - anon_sym_RPAREN, - ACTIONS(1253), 34, + ACTIONS(1265), 12, sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1267), 25, anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_GT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -464267,19 +424307,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [131559] = 4, + [132293] = 7, ACTIONS(113), 1, anon_sym_POUND, - STATE(5086), 1, - sym_comment, - ACTIONS(1170), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(994), 1, aux_sym_command_token1, - ACTIONS(1168), 34, + ACTIONS(9241), 1, + anon_sym_DOT, + STATE(4581), 1, + sym_path, + STATE(4676), 1, + sym_comment, + STATE(4785), 1, + sym_cell_path, + ACTIONS(992), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -464313,25 +424354,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - [131607] = 5, + [132347] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - STATE(5087), 1, + ACTIONS(1012), 1, + aux_sym_command_token1, + ACTIONS(9392), 1, + anon_sym_DOT, + STATE(4677), 1, sym_comment, - ACTIONS(1275), 2, - anon_sym_RBRACK, + STATE(4694), 1, + aux_sym_cell_path_repeat1, + STATE(5072), 1, + sym_path, + ACTIONS(1010), 33, + anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, - ACTIONS(1273), 34, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_DOLLAR, + anon_sym_PIPE, anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -464359,17 +424400,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [131657] = 5, + anon_sym_LF2, + [132401] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9558), 1, - aux_sym__immediate_decimal_token2, - STATE(5088), 1, + ACTIONS(9397), 1, + anon_sym_EQ, + STATE(4678), 1, sym_comment, - ACTIONS(2583), 2, + ACTIONS(4725), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(2581), 34, + ACTIONS(4721), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -464404,78 +424446,38 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [131707] = 4, - ACTIONS(113), 1, + [132451] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5189), 1, - anon_sym_LF, - STATE(5089), 1, + ACTIONS(9399), 1, + aux_sym__immediate_decimal_token2, + STATE(4679), 1, sym_comment, - ACTIONS(5187), 36, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(2356), 13, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_not, + anon_sym_DOT_DOT2, + anon_sym_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, anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [131755] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(5193), 1, - anon_sym_LF, - STATE(5090), 1, - sym_comment, - ACTIONS(5191), 36, - anon_sym_SEMI, + aux_sym_unquoted_token2, + ACTIONS(2358), 23, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, anon_sym_not, - 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -464483,43 +424485,44 @@ 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, - [131803] = 4, - ACTIONS(113), 1, + [132501] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5185), 1, - anon_sym_LF, - STATE(5091), 1, + ACTIONS(9084), 1, + aux_sym__immediate_decimal_token2, + STATE(4680), 1, sym_comment, - ACTIONS(5183), 36, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(2229), 13, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_not, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + ACTIONS(2231), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -464527,173 +424530,30 @@ 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, - [131851] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1192), 1, - anon_sym_LF, - ACTIONS(9689), 1, - anon_sym_DOT, - STATE(4986), 1, - sym_path, - STATE(5092), 1, - sym_comment, - STATE(5816), 1, - sym_cell_path, - ACTIONS(1190), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [131905] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9769), 1, - aux_sym__immediate_decimal_token2, - STATE(5093), 1, - sym_comment, - ACTIONS(917), 9, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - ACTIONS(919), 27, - anon_sym_DASH, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [131955] = 7, + [132551] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1188), 1, - aux_sym_command_token1, - ACTIONS(9726), 1, - anon_sym_DOT, - STATE(5047), 1, - sym_path, - STATE(5094), 1, - sym_comment, - STATE(5820), 1, - sym_cell_path, - ACTIONS(1186), 33, - anon_sym_SEMI, + ACTIONS(1209), 1, anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LF2, - [132009] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(9625), 1, - aux_sym__immediate_decimal_token2, - STATE(5095), 1, + STATE(4681), 1, sym_comment, - ACTIONS(2439), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2437), 34, + ACTIONS(1139), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, anon_sym_DOT_DOT_EQ, @@ -464720,37 +424580,34 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [132059] = 4, - ACTIONS(3), 1, + [132599] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(5096), 1, + ACTIONS(1095), 1, + anon_sym_LF, + STATE(4682), 1, sym_comment, - ACTIONS(2437), 14, + ACTIONS(1093), 36, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, + anon_sym_not, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(2439), 23, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_LPAREN2, - 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -464758,40 +424615,47 @@ 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, - [132107] = 4, - ACTIONS(113), 1, + [132647] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1300), 1, - anon_sym_LF, - STATE(5097), 1, + ACTIONS(9401), 1, + aux_sym__immediate_decimal_token2, + STATE(4683), 1, sym_comment, - ACTIONS(1298), 36, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(2362), 13, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_not, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + ACTIONS(2364), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -464799,49 +424663,92 @@ 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, - [132155] = 7, - ACTIONS(113), 1, + [132697] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1012), 1, - anon_sym_LF, - ACTIONS(9689), 1, + STATE(4684), 1, + sym_comment, + ACTIONS(9403), 37, + anon_sym_COMMA, + 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, + anon_sym_LBRACE, + [132743] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(961), 1, + anon_sym_DOT_DOT2, + ACTIONS(9098), 1, + aux_sym_unquoted_token5, + ACTIONS(9149), 1, anon_sym_DOT, - STATE(4986), 1, - sym_path, - STATE(5046), 1, - sym_cell_path, - STATE(5098), 1, + ACTIONS(9405), 1, + sym_filesize_unit, + ACTIONS(9407), 1, + sym_duration_unit, + STATE(4685), 1, sym_comment, - ACTIONS(1010), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(965), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(938), 6, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(940), 24, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -464855,24 +424762,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [132209] = 5, + [132803] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1284), 1, - aux_sym_unquoted_token6, - STATE(5099), 1, + STATE(4686), 1, sym_comment, - ACTIONS(1160), 2, - anon_sym_RBRACK, - anon_sym_RPAREN, - ACTIONS(1158), 34, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_DOLLAR, + ACTIONS(1043), 4, + ts_builtin_sym_end, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_command_token1, + ACTIONS(1041), 33, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -464900,66 +424804,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [132259] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9684), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(9771), 1, - anon_sym_DOT, - STATE(5100), 1, - sym_comment, - ACTIONS(923), 8, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token5, - ACTIONS(925), 27, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [132311] = 7, + anon_sym_DOT, + [132851] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1181), 1, + ACTIONS(994), 1, aux_sym_command_token1, - ACTIONS(9705), 1, + ACTIONS(9392), 1, anon_sym_DOT, - STATE(5101), 1, - sym_comment, - STATE(5191), 1, + STATE(4677), 1, sym_path, - STATE(5782), 1, + STATE(4687), 1, + sym_comment, + STATE(4729), 1, sym_cell_path, - ACTIONS(1179), 33, + ACTIONS(992), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -464967,7 +424827,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -464993,29 +424852,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [132365] = 4, + anon_sym_LF2, + [132905] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5102), 1, + STATE(4688), 1, sym_comment, - ACTIONS(909), 9, + ACTIONS(1241), 12, + sym_identifier, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - ACTIONS(911), 28, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1243), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -465031,41 +424897,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [132413] = 4, + [132953] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(5103), 1, + ACTIONS(9375), 1, + anon_sym_DOT, + STATE(4642), 1, + sym_path, + STATE(4689), 1, sym_comment, - ACTIONS(959), 12, - sym_identifier, + STATE(5300), 1, + sym_cell_path, + ACTIONS(992), 7, anon_sym_GT, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(961), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_DOT_DOT2, + ACTIONS(994), 27, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -465081,24 +424939,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [132461] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [133007] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5104), 1, - sym_comment, - ACTIONS(1290), 3, - ts_builtin_sym_end, + ACTIONS(1035), 1, anon_sym_LF, - anon_sym_LPAREN2, - ACTIONS(1243), 34, + STATE(4690), 1, + sym_comment, + ACTIONS(1033), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, anon_sym_DOT_DOT_EQ, @@ -465125,86 +424988,24 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [132509] = 21, + [133055] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9776), 1, + ACTIONS(1022), 1, anon_sym_LF, - ACTIONS(9786), 1, - anon_sym_QMARK2, - ACTIONS(9794), 1, - anon_sym_bit_DASHand, - ACTIONS(9796), 1, - anon_sym_bit_DASHxor, - ACTIONS(9798), 1, - anon_sym_bit_DASHor, - ACTIONS(9800), 1, - anon_sym_and, - ACTIONS(9802), 1, - anon_sym_xor, - ACTIONS(9804), 1, - anon_sym_or, - ACTIONS(9806), 1, - anon_sym_DOT, - STATE(5105), 1, - sym_comment, - STATE(5343), 1, - sym_path, - STATE(5999), 1, - sym_cell_path, - ACTIONS(9780), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9788), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9790), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9792), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(9774), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(9782), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(9784), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(9778), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [132591] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(9808), 1, - aux_sym__immediate_decimal_token2, - STATE(5106), 1, + STATE(4691), 1, sym_comment, - ACTIONS(2549), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2547), 34, + ACTIONS(1020), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, anon_sym_DOT_DOT_EQ, @@ -465231,67 +425032,18 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [132641] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1156), 1, - anon_sym_LF, - ACTIONS(9689), 1, - anon_sym_DOT, - STATE(4986), 1, - sym_path, - STATE(5107), 1, - sym_comment, - STATE(5688), 1, - sym_cell_path, - ACTIONS(1154), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [132695] = 5, + [133103] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9810), 1, - anon_sym_QMARK2, - STATE(5108), 1, + STATE(4692), 1, sym_comment, - ACTIONS(1070), 5, + ACTIONS(1033), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1072), 31, + ACTIONS(1035), 32, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -465301,6 +425053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -465323,20 +425076,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT, - [132745] = 5, + [133151] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9810), 1, - anon_sym_QMARK2, - STATE(5109), 1, + STATE(4693), 1, sym_comment, - ACTIONS(1070), 5, + ACTIONS(1020), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1072), 31, + ACTIONS(1022), 32, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -465346,6 +425097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -465368,75 +425120,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT, - [132795] = 4, + [133199] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4293), 1, - anon_sym_LF, - STATE(5110), 1, + ACTIONS(1008), 1, + aux_sym_command_token1, + ACTIONS(9392), 1, + anon_sym_DOT, + STATE(4694), 1, sym_comment, - ACTIONS(4291), 36, + STATE(4701), 1, + aux_sym_cell_path_repeat1, + STATE(5072), 1, + sym_path, + ACTIONS(1006), 33, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [132843] = 10, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(938), 1, - sym__entry_separator, - ACTIONS(1045), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(1047), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(1593), 1, - anon_sym_DOT, - ACTIONS(1609), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9636), 1, - aux_sym_unquoted_token4, - STATE(5111), 1, - sym_comment, - STATE(10460), 1, - sym__immediate_decimal, - ACTIONS(936), 30, - anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -465462,14 +425166,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [132903] = 4, + anon_sym_LF2, + [133253] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3962), 1, + ACTIONS(1213), 1, anon_sym_LF, - STATE(5112), 1, + STATE(4695), 1, sym_comment, - ACTIONS(3960), 36, + ACTIONS(1211), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -465506,115 +425211,26 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [132951] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9564), 1, - aux_sym__immediate_decimal_token2, - STATE(5113), 1, - sym_comment, - ACTIONS(909), 9, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - ACTIONS(911), 27, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [133001] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5114), 1, - sym_comment, - ACTIONS(1410), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1412), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [133049] = 4, + [133301] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5115), 1, - sym_comment, - ACTIONS(1115), 2, - ts_builtin_sym_end, + ACTIONS(1247), 1, anon_sym_LF, - ACTIONS(1113), 35, + STATE(4696), 1, + sym_comment, + ACTIONS(1245), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -465639,79 +425255,39 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [133097] = 4, + [133349] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(5116), 1, - sym_comment, - ACTIONS(1298), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1300), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [133145] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(9812), 1, - anon_sym_EQ, - STATE(5117), 1, + ACTIONS(9399), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(9409), 1, + anon_sym_DOT, + STATE(4697), 1, sym_comment, - ACTIONS(5015), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5011), 34, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, + ACTIONS(2356), 12, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_not, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + ACTIONS(2358), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -465719,46 +425295,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_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [133195] = 4, - ACTIONS(3), 1, + [133401] = 5, + ACTIONS(113), 1, anon_sym_POUND, - STATE(5118), 1, + ACTIONS(9412), 1, + sym_long_flag_identifier, + STATE(4698), 1, sym_comment, - ACTIONS(2547), 14, + ACTIONS(4738), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4734), 34, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, + anon_sym_not, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(2549), 23, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_LPAREN2, - 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -465766,26 +425337,29 @@ 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, - [133243] = 7, + [133451] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(997), 1, + ACTIONS(1087), 1, aux_sym_command_token1, - ACTIONS(9705), 1, + ACTIONS(9392), 1, anon_sym_DOT, - STATE(4965), 1, - sym_cell_path, - STATE(5119), 1, - sym_comment, - STATE(5191), 1, + STATE(4677), 1, sym_path, - ACTIONS(995), 33, + STATE(4699), 1, + sym_comment, + STATE(5335), 1, + sym_cell_path, + ACTIONS(1085), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -465793,7 +425367,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -465819,20 +425392,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [133297] = 7, + anon_sym_LF2, + [133505] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(997), 1, + ACTIONS(1091), 1, aux_sym_command_token1, - ACTIONS(9726), 1, - anon_sym_DOT, - STATE(5047), 1, - sym_path, - STATE(5120), 1, + ACTIONS(9414), 1, + anon_sym_DOT_DOT2, + STATE(4700), 1, sym_comment, - STATE(5215), 1, - sym_cell_path, - ACTIONS(995), 33, + ACTIONS(9416), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1089), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -465866,20 +425439,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_LF2, - [133351] = 7, + [133557] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1188), 1, + ACTIONS(987), 1, aux_sym_command_token1, - ACTIONS(9705), 1, + ACTIONS(9418), 1, anon_sym_DOT, - STATE(5121), 1, - sym_comment, - STATE(5191), 1, + STATE(5072), 1, sym_path, - STATE(5700), 1, - sym_cell_path, - ACTIONS(1186), 33, + STATE(4701), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(985), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -465887,7 +425459,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -465913,14 +425484,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [133405] = 4, + anon_sym_LF2, + [133609] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1322), 1, + ACTIONS(1217), 1, anon_sym_LF, - STATE(5122), 1, + STATE(4702), 1, sym_comment, - ACTIONS(1320), 36, + ACTIONS(1215), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -465957,34 +425529,83 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [133453] = 4, - ACTIONS(3), 1, + [133657] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(5123), 1, + ACTIONS(5153), 1, + anon_sym_LF, + STATE(4703), 1, sym_comment, - ACTIONS(917), 9, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - ACTIONS(919), 28, + ACTIONS(5151), 36, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [133705] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1095), 1, + aux_sym_command_token1, + ACTIONS(9392), 1, + anon_sym_DOT, + STATE(4677), 1, + sym_path, + STATE(4704), 1, + sym_comment, + STATE(5343), 1, + sym_cell_path, + ACTIONS(1093), 33, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -465998,37 +425619,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_LF2, + [133759] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(8888), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(9421), 1, + anon_sym_DOT, + STATE(4705), 1, + sym_comment, + ACTIONS(913), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [133501] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5124), 1, - sym_comment, - ACTIONS(950), 9, + sym__entry_separator, + ACTIONS(911), 31, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - ACTIONS(952), 28, - anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -466042,29 +425664,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [133549] = 4, + anon_sym_DOT_DOT2, + sym_filesize_unit, + [133811] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5125), 1, - sym_comment, - ACTIONS(1119), 2, - ts_builtin_sym_end, + ACTIONS(940), 1, anon_sym_LF, - ACTIONS(1117), 35, + STATE(4706), 1, + sym_comment, + ACTIONS(938), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -466089,26 +425710,26 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [133597] = 4, + [133859] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9816), 1, - anon_sym_LF, - STATE(5126), 1, + STATE(4707), 1, sym_comment, - ACTIONS(9814), 36, + ACTIONS(1039), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1037), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -466133,14 +425754,61 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [133645] = 4, + [133907] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1160), 1, + ACTIONS(1099), 1, + aux_sym_command_token1, + ACTIONS(9392), 1, + anon_sym_DOT, + STATE(4677), 1, + sym_path, + STATE(4708), 1, + sym_comment, + STATE(5346), 1, + sym_cell_path, + ACTIONS(1097), 33, + anon_sym_SEMI, anon_sym_LF, - STATE(5127), 1, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LF2, + [133961] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1251), 1, + anon_sym_LF, + STATE(4709), 1, sym_comment, - ACTIONS(1158), 36, + ACTIONS(1249), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -466177,26 +425845,26 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [133693] = 4, + [134009] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2549), 1, - anon_sym_LF, - STATE(5128), 1, + STATE(4710), 1, sym_comment, - ACTIONS(2547), 36, + ACTIONS(1043), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1041), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -466221,87 +425889,131 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [133741] = 4, - ACTIONS(3), 1, + [134057] = 7, + ACTIONS(113), 1, anon_sym_POUND, - STATE(5129), 1, + ACTIONS(1103), 1, + aux_sym_command_token1, + ACTIONS(9392), 1, + anon_sym_DOT, + STATE(4677), 1, + sym_path, + STATE(4711), 1, sym_comment, - ACTIONS(3505), 14, - anon_sym_LPAREN, - anon_sym_DOLLAR, + STATE(5347), 1, + sym_cell_path, + ACTIONS(1101), 33, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(3507), 23, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_LPAREN2, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [133789] = 10, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LF2, + [134111] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9818), 1, - anon_sym_DOT, - ACTIONS(9820), 1, - aux_sym_unquoted_token3, - ACTIONS(9822), 1, - aux_sym_unquoted_token5, - STATE(5130), 1, + STATE(4712), 1, sym_comment, - STATE(9346), 1, - sym__immediate_decimal, - ACTIONS(1582), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - ACTIONS(936), 6, + ACTIONS(1159), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(938), 24, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1161), 25, + anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [134159] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1004), 1, + anon_sym_LF, + ACTIONS(9351), 1, + anon_sym_DOT, + STATE(4623), 1, + sym_cell_path, + STATE(4713), 1, + sym_comment, + STATE(4735), 1, + sym_path, + ACTIONS(1002), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -466315,14 +426027,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [133849] = 4, + [134213] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(4738), 1, + anon_sym_LF, + STATE(4714), 1, + sym_comment, + ACTIONS(4734), 36, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [134261] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(938), 1, + ACTIONS(1231), 1, anon_sym_LF, - STATE(5131), 1, + STATE(4715), 1, sym_comment, - ACTIONS(936), 36, + ACTIONS(1229), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -466359,87 +426115,40 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [133897] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9826), 1, - anon_sym_LT, - STATE(5132), 1, - sym_comment, - ACTIONS(9824), 36, - anon_sym_COMMA, - 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, - [133945] = 10, - ACTIONS(3), 1, + [134309] = 7, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(979), 1, - anon_sym_DOT_DOT2, - ACTIONS(9820), 1, - aux_sym_unquoted_token5, - ACTIONS(9828), 1, + ACTIONS(1087), 1, + anon_sym_LF, + ACTIONS(9351), 1, anon_sym_DOT, - ACTIONS(9830), 1, - sym_filesize_unit, - ACTIONS(9832), 1, - sym_duration_unit, - STATE(5133), 1, + STATE(4716), 1, sym_comment, - ACTIONS(983), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(959), 5, + STATE(4735), 1, + sym_path, + STATE(5361), 1, + sym_cell_path, + ACTIONS(1085), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(961), 25, - anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -466453,23 +426162,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [134005] = 4, + [134363] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(5134), 1, - sym_comment, - ACTIONS(1111), 4, - ts_builtin_sym_end, + ACTIONS(1091), 1, anon_sym_LF, + ACTIONS(9371), 1, + anon_sym_DOT_DOT2, + STATE(4717), 1, + sym_comment, + ACTIONS(9373), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1109), 33, + ACTIONS(1089), 33, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -466495,45 +426208,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [134053] = 10, - ACTIONS(3), 1, + [134415] = 10, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9820), 1, - aux_sym_unquoted_token5, - ACTIONS(9828), 1, + ACTIONS(940), 1, + sym__entry_separator, + ACTIONS(9156), 1, anon_sym_DOT, - ACTIONS(9830), 1, + ACTIONS(9158), 1, sym_filesize_unit, - ACTIONS(9832), 1, + ACTIONS(9160), 1, sym_duration_unit, - ACTIONS(9834), 1, + ACTIONS(9162), 1, + aux_sym_unquoted_token5, + ACTIONS(9423), 1, anon_sym_DOT_DOT2, - STATE(5135), 1, + STATE(4718), 1, sym_comment, - ACTIONS(9836), 2, + ACTIONS(9425), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(959), 5, + ACTIONS(938), 29, + anon_sym_RBRACK, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, - ACTIONS(961), 25, - anon_sym_DOLLAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [134475] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1059), 1, + aux_sym_command_token1, + ACTIONS(9392), 1, + anon_sym_DOT, + STATE(4677), 1, + sym_path, + STATE(4719), 1, + sym_comment, + STATE(5362), 1, + sym_cell_path, + ACTIONS(1057), 33, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -466547,108 +426304,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [134113] = 4, + anon_sym_LF2, + [134529] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9838), 1, - anon_sym_LT, - STATE(5136), 1, + ACTIONS(926), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(1379), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(1381), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8013), 1, + aux_sym_unquoted_token3, + ACTIONS(8015), 1, + aux_sym_unquoted_token5, + ACTIONS(9427), 1, + anon_sym_DOT, + STATE(4720), 1, + sym_comment, + STATE(8796), 1, + sym__immediate_decimal, + ACTIONS(920), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(922), 18, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [134591] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4721), 1, sym_comment, - ACTIONS(9824), 36, + ACTIONS(1129), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1131), 25, + anon_sym_COLON, anon_sym_COMMA, 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, - [134161] = 4, - ACTIONS(113), 1, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [134639] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5181), 1, - anon_sym_LF, - STATE(5137), 1, + STATE(4722), 1, sym_comment, - ACTIONS(5179), 36, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(1135), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1137), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [134209] = 7, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [134687] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1008), 1, + ACTIONS(1095), 1, anon_sym_LF, - ACTIONS(9689), 1, + ACTIONS(9351), 1, anon_sym_DOT, - STATE(4959), 1, - aux_sym_cell_path_repeat1, - STATE(5138), 1, + STATE(4723), 1, sym_comment, - STATE(5478), 1, + STATE(4735), 1, sym_path, - ACTIONS(1006), 33, + STATE(5365), 1, + sym_cell_path, + ACTIONS(1093), 33, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -466682,43 +426491,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [134263] = 10, + [134741] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9548), 1, - anon_sym_DOT, - ACTIONS(9550), 1, - aux_sym_unquoted_token3, - ACTIONS(9552), 1, - aux_sym_unquoted_token5, - STATE(5139), 1, + STATE(4724), 1, sym_comment, - STATE(9346), 1, - sym__immediate_decimal, - ACTIONS(1582), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - ACTIONS(936), 6, + ACTIONS(1253), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(938), 24, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1255), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [134789] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1053), 1, + aux_sym_command_token1, + ACTIONS(9392), 1, + anon_sym_DOT, + STATE(4677), 1, + sym_path, + STATE(4725), 1, + sym_comment, + STATE(5366), 1, + sym_cell_path, + ACTIONS(1051), 33, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -466732,19 +426581,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [134323] = 4, + anon_sym_LF2, + [134843] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(5140), 1, + ACTIONS(9429), 1, + anon_sym_QMARK2, + STATE(4726), 1, sym_comment, - ACTIONS(1119), 4, + ACTIONS(1026), 4, ts_builtin_sym_end, + anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - ACTIONS(1117), 33, + ACTIONS(1024), 32, anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [134893] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(9429), 1, + anon_sym_QMARK2, + STATE(4727), 1, + sym_comment, + ACTIONS(1026), 4, + ts_builtin_sym_end, anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1024), 32, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, @@ -466776,58 +426672,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT2, anon_sym_DOT, - [134371] = 4, + [134943] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1290), 1, + ACTIONS(1099), 1, anon_sym_LF, - STATE(5141), 1, + ACTIONS(9351), 1, + anon_sym_DOT, + STATE(4728), 1, sym_comment, - ACTIONS(1243), 36, + STATE(4735), 1, + sym_path, + STATE(5372), 1, + sym_cell_path, + ACTIONS(1097), 33, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [134419] = 4, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [134997] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1192), 1, + STATE(4729), 1, + sym_comment, + ACTIONS(1070), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_command_token1, + ACTIONS(1068), 34, + anon_sym_SEMI, anon_sym_LF, - STATE(5142), 1, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_LF2, + [135045] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(4999), 1, + anon_sym_LF, + STATE(4730), 1, sym_comment, - ACTIONS(1190), 36, + ACTIONS(4997), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -466864,14 +426807,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [134467] = 4, + [135093] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5079), 1, + ACTIONS(5243), 1, anon_sym_LF, - STATE(5143), 1, + STATE(4731), 1, sym_comment, - ACTIONS(5075), 36, + ACTIONS(5241), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -466908,14 +426851,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [134515] = 4, + [135141] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1314), 1, + ACTIONS(5247), 1, anon_sym_LF, - STATE(5144), 1, + STATE(4732), 1, sym_comment, - ACTIONS(1312), 36, + ACTIONS(5245), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -466952,38 +426895,40 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [134563] = 7, - ACTIONS(3), 1, + [135189] = 7, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9703), 1, + ACTIONS(1103), 1, + anon_sym_LF, + ACTIONS(9351), 1, anon_sym_DOT, - STATE(4983), 1, - sym_path, - STATE(5145), 1, + STATE(4733), 1, sym_comment, - STATE(5689), 1, + STATE(4735), 1, + sym_path, + STATE(5375), 1, sym_cell_path, - ACTIONS(995), 7, + ACTIONS(1101), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT2, - ACTIONS(997), 27, - anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -466997,108 +426942,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [134617] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9675), 1, - anon_sym_DOT, - STATE(4962), 1, - sym_path, - STATE(5146), 1, - sym_comment, - STATE(5650), 1, - sym_cell_path, - ACTIONS(995), 11, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(997), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [134671] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9714), 1, - aux_sym__immediate_decimal_token2, - STATE(5147), 1, - sym_comment, - ACTIONS(2581), 13, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(2583), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [134721] = 4, + [135243] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5209), 1, + ACTIONS(1235), 1, anon_sym_LF, - STATE(5148), 1, + STATE(4734), 1, sym_comment, - ACTIONS(5207), 36, + ACTIONS(1233), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -467135,27 +426986,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [134769] = 7, + [135291] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1156), 1, - aux_sym_command_token1, - ACTIONS(9726), 1, + ACTIONS(1012), 1, + anon_sym_LF, + ACTIONS(9351), 1, anon_sym_DOT, - STATE(5047), 1, - sym_path, - STATE(5149), 1, + STATE(4735), 1, sym_comment, - STATE(5835), 1, - sym_cell_path, - ACTIONS(1154), 33, + STATE(4762), 1, + aux_sym_cell_path_repeat1, + STATE(5125), 1, + sym_path, + ACTIONS(1010), 33, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -467181,134 +427033,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LF2, - [134823] = 6, - ACTIONS(113), 1, + [135345] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1160), 1, - aux_sym_command_token1, - ACTIONS(9746), 1, - anon_sym_DOT_DOT2, - STATE(5150), 1, - sym_comment, - ACTIONS(9748), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1158), 33, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(1072), 1, + sym_identifier, + ACTIONS(1078), 1, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LF2, - [134875] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(5151), 1, + STATE(4736), 1, sym_comment, - ACTIONS(1174), 3, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1172), 34, - anon_sym_SEMI, + ACTIONS(1074), 8, anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + ACTIONS(1076), 10, anon_sym_GT, - anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - [134923] = 10, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(961), 1, - sym__entry_separator, - ACTIONS(9636), 1, - aux_sym_unquoted_token5, - ACTIONS(9642), 1, - anon_sym_DOT, - ACTIONS(9644), 1, - sym_filesize_unit, - ACTIONS(9646), 1, - sym_duration_unit, - ACTIONS(9840), 1, - anon_sym_DOT_DOT2, - STATE(5152), 1, - sym_comment, - ACTIONS(9842), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(959), 29, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + ACTIONS(1169), 17, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -467319,134 +427080,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [134983] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9570), 1, - aux_sym__immediate_decimal_token2, - STATE(5153), 1, - sym_comment, - ACTIONS(2437), 13, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(2439), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [135033] = 6, + [135399] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9844), 1, - anon_sym_DOT, - STATE(5603), 1, - sym_path, - STATE(5154), 2, + STATE(4737), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(999), 7, + ACTIONS(1287), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_DOT_DOT2, - ACTIONS(1001), 27, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [135085] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1156), 1, - aux_sym_command_token1, - ACTIONS(9705), 1, - anon_sym_DOT, - STATE(5155), 1, - sym_comment, - STATE(5191), 1, - sym_path, - STATE(5743), 1, - sym_cell_path, - ACTIONS(1154), 33, - anon_sym_SEMI, - anon_sym_LF, + ACTIONS(1289), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -467457,18 +427124,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [135139] = 4, + [135447] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(5156), 1, + ACTIONS(9223), 1, + anon_sym_DOT, + ACTIONS(9231), 1, + aux_sym_unquoted_token5, + ACTIONS(9235), 1, + sym_filesize_unit, + ACTIONS(9237), 1, + sym_duration_unit, + ACTIONS(9431), 1, + anon_sym_DOT_DOT2, + STATE(4738), 1, sym_comment, - ACTIONS(1286), 12, + ACTIONS(9433), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(938), 11, sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, @@ -467478,15 +427154,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1288), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(940), 19, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -467504,85 +427174,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [135187] = 7, + [135507] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(997), 1, + ACTIONS(5003), 1, anon_sym_LF, - ACTIONS(9689), 1, - anon_sym_DOT, - STATE(4986), 1, - sym_path, - STATE(5015), 1, - sym_cell_path, - STATE(5157), 1, + STATE(4739), 1, sym_comment, - ACTIONS(995), 33, + ACTIONS(5001), 36, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [135241] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9847), 1, - aux_sym__immediate_decimal_token2, - STATE(5158), 1, - sym_comment, - ACTIONS(2547), 13, - anon_sym_DOLLAR, - anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, + anon_sym_not, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(2549), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -467590,46 +427209,49 @@ 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, - [135291] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1188), 1, - anon_sym_LF, - ACTIONS(9689), 1, - anon_sym_DOT, - STATE(4986), 1, - sym_path, - STATE(5159), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [135555] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4740), 1, sym_comment, - STATE(5848), 1, - sym_cell_path, - ACTIONS(1186), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1221), 12, + sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1223), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -467640,17 +427262,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [135345] = 4, + [135603] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1296), 1, + ACTIONS(5007), 1, anon_sym_LF, - STATE(5160), 1, + STATE(4741), 1, sym_comment, - ACTIONS(1294), 36, + ACTIONS(5005), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -467687,24 +427306,24 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [135393] = 4, + [135651] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4002), 1, - anon_sym_LF, - STATE(5161), 1, + STATE(4742), 1, sym_comment, - ACTIONS(4000), 36, + ACTIONS(1217), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LPAREN2, + ACTIONS(1215), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, anon_sym_DOT_DOT_EQ, @@ -467731,155 +427350,58 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [135441] = 4, + [135699] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5162), 1, - sym_comment, - ACTIONS(1115), 4, - ts_builtin_sym_end, + ACTIONS(5021), 1, anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1113), 33, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [135489] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(979), 1, - anon_sym_DOT_DOT2, - ACTIONS(9820), 1, - aux_sym_unquoted_token5, - ACTIONS(9828), 1, - anon_sym_DOT, - ACTIONS(9849), 1, - sym_filesize_unit, - ACTIONS(9851), 1, - sym_duration_unit, - STATE(5163), 1, - sym_comment, - ACTIONS(983), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(959), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(961), 25, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [135549] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1192), 1, - aux_sym_command_token1, - ACTIONS(9726), 1, - anon_sym_DOT, - STATE(5047), 1, - sym_path, - STATE(5164), 1, + STATE(4743), 1, sym_comment, - STATE(5934), 1, - sym_cell_path, - ACTIONS(1190), 33, + ACTIONS(5019), 36, anon_sym_SEMI, - anon_sym_LF, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LF2, - [135603] = 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [135747] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1416), 1, + ACTIONS(3759), 1, anon_sym_LF, - STATE(5165), 1, + STATE(4744), 1, sym_comment, - ACTIONS(1414), 36, + ACTIONS(3757), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -467916,14 +427438,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [135651] = 4, + [135795] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1334), 1, + ACTIONS(5115), 1, anon_sym_LF, - STATE(5166), 1, + STATE(4745), 1, sym_comment, - ACTIONS(1332), 36, + ACTIONS(5113), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -467960,14 +427482,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [135699] = 4, + [135843] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3868), 1, + ACTIONS(5139), 1, anon_sym_LF, - STATE(5167), 1, + STATE(4746), 1, sym_comment, - ACTIONS(3866), 36, + ACTIONS(5137), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -468004,14 +427526,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [135747] = 4, + [135891] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1318), 1, + ACTIONS(4198), 1, anon_sym_LF, - STATE(5168), 1, + STATE(4747), 1, sym_comment, - ACTIONS(1316), 36, + ACTIONS(4196), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -468048,40 +427570,40 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [135795] = 7, - ACTIONS(113), 1, + [135939] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1205), 1, - anon_sym_LF, - ACTIONS(9689), 1, - anon_sym_DOT, - STATE(4986), 1, - sym_path, - STATE(5169), 1, + STATE(4748), 1, sym_comment, - STATE(5667), 1, - sym_cell_path, - ACTIONS(1203), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1076), 12, + sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1169), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -468092,42 +427614,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [135849] = 6, - ACTIONS(113), 1, + [135987] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1160), 1, - anon_sym_LF, - ACTIONS(9853), 1, - anon_sym_DOT_DOT2, - STATE(5170), 1, + STATE(4749), 1, sym_comment, - ACTIONS(9855), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1158), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1171), 12, + sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1173), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -468138,36 +427658,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [135901] = 7, + [136035] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9703), 1, - anon_sym_DOT, - STATE(4983), 1, - sym_path, - STATE(5171), 1, + STATE(4750), 1, sym_comment, - STATE(5807), 1, - sym_cell_path, - ACTIONS(1010), 7, + ACTIONS(1171), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_DOT_DOT2, - ACTIONS(1012), 27, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1173), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -468183,146 +427702,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + [136083] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4751), 1, + sym_comment, + ACTIONS(1171), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [135955] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(9857), 1, - aux_sym__immediate_decimal_token1, - STATE(5172), 1, - sym_comment, - ACTIONS(5085), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5083), 34, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(1173), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [136005] = 21, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(9806), 1, - anon_sym_DOT, - ACTIONS(9861), 1, - anon_sym_LF, - ACTIONS(9871), 1, - anon_sym_QMARK2, - ACTIONS(9879), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(9881), 1, anon_sym_bit_DASHxor, - ACTIONS(9883), 1, anon_sym_bit_DASHor, - ACTIONS(9885), 1, - anon_sym_and, - ACTIONS(9887), 1, - anon_sym_xor, - ACTIONS(9889), 1, - anon_sym_or, - STATE(5173), 1, + [136131] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4752), 1, sym_comment, - STATE(5343), 1, - sym_path, - STATE(6040), 1, - sym_cell_path, - ACTIONS(9865), 2, + ACTIONS(1171), 12, + sym_identifier, + anon_sym_GT, anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, - ACTIONS(9873), 2, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1173), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9875), 2, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(9877), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(9859), 4, - anon_sym_SEMI, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [136179] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4753), 1, + sym_comment, + ACTIONS(1171), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1173), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(9867), 4, - anon_sym_in, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(9869), 4, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [136227] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4754), 1, + sym_comment, + ACTIONS(1171), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1173), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, - ACTIONS(9863), 6, - anon_sym_GT, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [136087] = 4, - ACTIONS(113), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [136275] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5174), 1, + STATE(4755), 1, sym_comment, - ACTIONS(1119), 4, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1117), 33, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1171), 12, + sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1173), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -468333,38 +427922,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [136135] = 7, + [136323] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9703), 1, - anon_sym_DOT, - STATE(5154), 1, - aux_sym_cell_path_repeat1, - STATE(5175), 1, + STATE(4756), 1, sym_comment, - STATE(5603), 1, - sym_path, - ACTIONS(1006), 7, + ACTIONS(1171), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_DOT_DOT2, - ACTIONS(1008), 27, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1173), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -468380,46 +427966,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + [136371] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4757), 1, + sym_comment, + ACTIONS(1171), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [136189] = 8, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1196), 1, - anon_sym_LF, - ACTIONS(1200), 1, - anon_sym_DASH, - ACTIONS(9853), 1, - anon_sym_DOT_DOT2, - STATE(5176), 1, - sym_comment, - ACTIONS(9855), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1194), 5, - anon_sym_SEMI, + ACTIONS(1173), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_RBRACE, - ACTIONS(1198), 27, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -468430,128 +428010,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + [136419] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4758), 1, + sym_comment, + ACTIONS(1171), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - [136245] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1420), 1, - anon_sym_LF, - STATE(5177), 1, - sym_comment, - ACTIONS(1418), 36, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(1173), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [136293] = 4, - ACTIONS(113), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [136467] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5217), 1, - anon_sym_LF, - STATE(5178), 1, + STATE(4759), 1, sym_comment, - ACTIONS(5215), 36, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(1171), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1173), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [136341] = 6, - ACTIONS(113), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [136515] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9361), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(9891), 1, - anon_sym_DOT, - STATE(5179), 1, + STATE(4760), 1, sym_comment, - ACTIONS(925), 4, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - sym__entry_separator, - ACTIONS(923), 31, + ACTIONS(1171), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1173), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -468562,107 +428142,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + [136563] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4761), 1, + sym_comment, + ACTIONS(1171), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - sym_filesize_unit, - [136393] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_LF, - STATE(5180), 1, - sym_comment, - ACTIONS(959), 36, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(1173), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [136441] = 4, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [136611] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5221), 1, + ACTIONS(1008), 1, anon_sym_LF, - STATE(5181), 1, + ACTIONS(9351), 1, + anon_sym_DOT, + STATE(4762), 1, sym_comment, - ACTIONS(5219), 36, + STATE(4767), 1, + aux_sym_cell_path_repeat1, + STATE(5125), 1, + sym_path, + ACTIONS(1006), 33, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [136489] = 4, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [136665] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5225), 1, + ACTIONS(5025), 1, anon_sym_LF, - STATE(5182), 1, + STATE(4763), 1, sym_comment, - ACTIONS(5223), 36, + ACTIONS(5023), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -468699,14 +428277,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [136537] = 4, + [136713] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1408), 1, + ACTIONS(5215), 1, anon_sym_LF, - STATE(5183), 1, + STATE(4764), 1, sym_comment, - ACTIONS(1406), 36, + ACTIONS(5213), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -468743,61 +428321,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [136585] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1012), 1, - aux_sym_command_token1, - ACTIONS(9705), 1, - anon_sym_DOT, - STATE(5086), 1, - sym_cell_path, - STATE(5184), 1, - sym_comment, - STATE(5191), 1, - sym_path, - ACTIONS(1010), 33, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [136639] = 4, + [136761] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1412), 1, + ACTIONS(5219), 1, anon_sym_LF, - STATE(5185), 1, + STATE(4765), 1, sym_comment, - ACTIONS(1410), 36, + ACTIONS(5217), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -468834,14 +428365,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [136687] = 4, + [136809] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1288), 1, + ACTIONS(5029), 1, anon_sym_LF, - STATE(5186), 1, + STATE(4766), 1, sym_comment, - ACTIONS(1286), 36, + ACTIONS(5027), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -468878,70 +428409,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [136735] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(979), 1, - anon_sym_DOT_DOT2, - ACTIONS(9550), 1, - aux_sym_unquoted_token5, - ACTIONS(9574), 1, - anon_sym_DOT, - ACTIONS(9893), 1, - sym_filesize_unit, - ACTIONS(9895), 1, - sym_duration_unit, - STATE(5187), 1, - sym_comment, - ACTIONS(983), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(959), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(961), 24, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [136795] = 7, + [136857] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1181), 1, + ACTIONS(987), 1, anon_sym_LF, - ACTIONS(9689), 1, + ACTIONS(9435), 1, anon_sym_DOT, - STATE(4986), 1, + STATE(5125), 1, sym_path, - STATE(5188), 1, + STATE(4767), 2, sym_comment, - STATE(5793), 1, - sym_cell_path, - ACTIONS(1179), 33, + aux_sym_cell_path_repeat1, + ACTIONS(985), 33, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -468975,27 +428455,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [136849] = 10, + [136909] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(979), 1, - anon_sym_DOT_DOT2, - ACTIONS(9697), 1, - sym_filesize_unit, - ACTIONS(9699), 1, - sym_duration_unit, - ACTIONS(9897), 1, - anon_sym_DOT, - ACTIONS(9899), 1, - aux_sym_unquoted_token5, - STATE(5189), 1, + STATE(4768), 1, sym_comment, - ACTIONS(983), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(959), 11, + ACTIONS(1265), 12, sym_identifier, anon_sym_GT, + anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, @@ -469005,16 +428473,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(961), 19, + ACTIONS(1267), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [136957] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1074), 1, + aux_sym_command_token1, + ACTIONS(9414), 1, + anon_sym_DOT_DOT2, + STATE(4769), 1, + sym_comment, + ACTIONS(9416), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1072), 5, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_LF2, + ACTIONS(1076), 28, + anon_sym_GT, anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -469025,14 +428543,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [136909] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [137011] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1196), 1, + ACTIONS(1074), 1, anon_sym_LF, - STATE(5190), 1, + STATE(4770), 1, sym_comment, - ACTIONS(1194), 36, + ACTIONS(1072), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -469069,40 +428590,43 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [136957] = 7, - ACTIONS(113), 1, + [137059] = 10, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(989), 1, - aux_sym_command_token1, - ACTIONS(9705), 1, + ACTIONS(1381), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9096), 1, anon_sym_DOT, - STATE(5191), 1, + ACTIONS(9098), 1, + aux_sym_unquoted_token3, + ACTIONS(9100), 1, + aux_sym_unquoted_token5, + STATE(4771), 1, sym_comment, - STATE(5206), 1, - aux_sym_cell_path_repeat1, - STATE(5604), 1, - sym_path, - ACTIONS(987), 33, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, + STATE(8796), 1, + sym__immediate_decimal, + ACTIONS(1379), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + ACTIONS(920), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(922), 24, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -469116,40 +428640,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [137011] = 4, + [137119] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(5192), 1, + ACTIONS(1391), 1, + anon_sym_DOT, + ACTIONS(1409), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9098), 1, + aux_sym_unquoted_token4, + STATE(4772), 1, sym_comment, - ACTIONS(936), 12, - sym_identifier, + STATE(10080), 1, + sym__immediate_decimal, + ACTIONS(1407), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + ACTIONS(920), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, + ACTIONS(922), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(938), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, + [137177] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1087), 1, + aux_sym_command_token1, + ACTIONS(9241), 1, + anon_sym_DOT, + STATE(4581), 1, + sym_path, + STATE(4773), 1, + sym_comment, + STATE(5434), 1, + sym_cell_path, + ACTIONS(1085), 33, + anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -469160,47 +428733,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [137059] = 11, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [137231] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(942), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(1582), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(1584), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9899), 1, - aux_sym_unquoted_token3, - ACTIONS(9901), 1, - anon_sym_DOT, - ACTIONS(9903), 1, - aux_sym_unquoted_token5, - STATE(5193), 1, + ACTIONS(1091), 1, + aux_sym_command_token1, + ACTIONS(9438), 1, + anon_sym_DOT_DOT2, + STATE(4774), 1, sym_comment, - STATE(9346), 1, - sym__immediate_decimal, - ACTIONS(936), 12, - sym_identifier, + ACTIONS(9440), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1089), 33, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(938), 18, - anon_sym_DOLLAR, + [137283] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1059), 1, + anon_sym_LF, + ACTIONS(9351), 1, + anon_sym_DOT, + STATE(4735), 1, + sym_path, + STATE(4775), 1, + sym_comment, + STATE(5436), 1, + sym_cell_path, + ACTIONS(1057), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -469211,12 +428826,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [137121] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [137337] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5194), 1, + STATE(4776), 1, sym_comment, - ACTIONS(917), 10, + ACTIONS(893), 10, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, @@ -469227,7 +428845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, sym_filesize_unit, aux_sym_unquoted_token5, - ACTIONS(919), 27, + ACTIONS(895), 27, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -469255,58 +428873,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [137169] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(5195), 1, - sym_comment, - ACTIONS(1416), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_LPAREN2, - ACTIONS(1414), 34, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [137217] = 4, + [137385] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1304), 1, + ACTIONS(1063), 1, anon_sym_LF, - STATE(5196), 1, + STATE(4777), 1, sym_comment, - ACTIONS(1302), 36, + ACTIONS(1061), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -469343,43 +428917,40 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [137265] = 10, - ACTIONS(3), 1, + [137433] = 7, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1584), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9818), 1, + ACTIONS(1095), 1, + aux_sym_command_token1, + ACTIONS(9241), 1, anon_sym_DOT, - ACTIONS(9820), 1, - aux_sym_unquoted_token3, - ACTIONS(9822), 1, - aux_sym_unquoted_token5, - STATE(5197), 1, + STATE(4581), 1, + sym_path, + STATE(4778), 1, sym_comment, - STATE(9346), 1, - sym__immediate_decimal, - ACTIONS(1582), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - ACTIONS(936), 6, + STATE(5498), 1, + sym_cell_path, + ACTIONS(1093), 33, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(938), 24, - anon_sym_DOLLAR, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -469393,42 +428964,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [137325] = 9, - ACTIONS(3), 1, + [137487] = 7, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1593), 1, + ACTIONS(1053), 1, + anon_sym_LF, + ACTIONS(9351), 1, anon_sym_DOT, - ACTIONS(1611), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9550), 1, - aux_sym_unquoted_token4, - STATE(5198), 1, + STATE(4735), 1, + sym_path, + STATE(4779), 1, sym_comment, - STATE(10460), 1, - sym__immediate_decimal, - ACTIONS(1609), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - ACTIONS(936), 6, + STATE(5501), 1, + sym_cell_path, + ACTIONS(1051), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(938), 25, - anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -469442,37 +429011,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [137383] = 4, - ACTIONS(113), 1, + [137541] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9905), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(5199), 1, + STATE(4780), 1, sym_comment, - ACTIONS(1243), 36, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, + ACTIONS(901), 10, anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + ACTIONS(903), 27, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -469486,14 +429052,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [137431] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [137589] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1170), 1, + ACTIONS(1243), 1, anon_sym_LF, - STATE(5200), 1, + STATE(4781), 1, sym_comment, - ACTIONS(1168), 36, + ACTIONS(1241), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -469530,81 +429099,40 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [137479] = 5, - ACTIONS(113), 1, + [137637] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9907), 1, - anon_sym_QMARK2, - STATE(5201), 1, + STATE(4782), 1, sym_comment, - ACTIONS(1072), 4, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1070), 32, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1257), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [137529] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(9907), 1, - anon_sym_QMARK2, - STATE(5202), 1, - sym_comment, - ACTIONS(1072), 4, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1070), 32, - anon_sym_SEMI, + ACTIONS(1259), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -469615,19 +429143,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [137579] = 4, + [137685] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5229), 1, + ACTIONS(5033), 1, anon_sym_LF, - STATE(5203), 1, + STATE(4783), 1, sym_comment, - ACTIONS(5227), 36, + ACTIONS(5031), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -469664,22 +429187,24 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [137627] = 6, + [137733] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9909), 1, + ACTIONS(1099), 1, + aux_sym_command_token1, + ACTIONS(9241), 1, anon_sym_DOT, - STATE(5587), 1, + STATE(4581), 1, sym_path, - STATE(5204), 2, + STATE(4784), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1001), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(999), 31, - anon_sym_RBRACK, + STATE(5508), 1, + sym_cell_path, + ACTIONS(1097), 33, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -469709,24 +429234,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - [137679] = 7, + [137787] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9742), 1, - anon_sym_DOT, - STATE(5080), 1, - sym_path, - STATE(5205), 1, + STATE(4785), 1, sym_comment, - STATE(5942), 1, - sym_cell_path, - ACTIONS(1012), 3, + ACTIONS(1070), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1010), 31, - anon_sym_RBRACK, + aux_sym_command_token1, + ACTIONS(1068), 34, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -469757,40 +429278,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - [137733] = 7, - ACTIONS(113), 1, + [137835] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1008), 1, - aux_sym_command_token1, - ACTIONS(9705), 1, - anon_sym_DOT, - STATE(5206), 1, + STATE(4786), 1, sym_comment, - STATE(5216), 1, - aux_sym_cell_path_repeat1, - STATE(5604), 1, - sym_path, - ACTIONS(1006), 33, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1175), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1177), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -469801,15 +429322,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [137787] = 4, + [137883] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5207), 1, + STATE(4787), 1, sym_comment, - ACTIONS(1253), 12, + ACTIONS(1089), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -469822,7 +429340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1255), 25, + ACTIONS(1091), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -469848,20 +429366,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [137835] = 7, + [137931] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4788), 1, + sym_comment, + ACTIONS(934), 10, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + ACTIONS(936), 27, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [137979] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1150), 1, + ACTIONS(1103), 1, aux_sym_command_token1, - ACTIONS(9726), 1, + ACTIONS(9241), 1, anon_sym_DOT, - STATE(5047), 1, + STATE(4581), 1, sym_path, - STATE(5208), 1, + STATE(4789), 1, sym_comment, - STATE(5943), 1, + STATE(5511), 1, sym_cell_path, - ACTIONS(1148), 33, + ACTIONS(1101), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -469869,6 +429431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -469894,25 +429457,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LF2, - [137889] = 4, + [138033] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4790), 1, + sym_comment, + ACTIONS(1261), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1263), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [138081] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5233), 1, - anon_sym_LF, - STATE(5209), 1, + ACTIONS(9442), 1, + anon_sym_LBRACK2, + STATE(4791), 1, sym_comment, - ACTIONS(5231), 36, + ACTIONS(1145), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1143), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, anon_sym_DOT_DOT_EQ, @@ -469939,25 +429546,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [137937] = 10, + [138131] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(979), 1, - anon_sym_DOT_DOT2, - ACTIONS(8570), 1, - aux_sym_unquoted_token5, - ACTIONS(8647), 1, - anon_sym_DOT, - ACTIONS(9736), 1, - sym_filesize_unit, - ACTIONS(9738), 1, - sym_duration_unit, - STATE(5210), 1, + STATE(4792), 1, sym_comment, - ACTIONS(983), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(959), 12, + ACTIONS(1225), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -469970,7 +429564,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(961), 18, + ACTIONS(1227), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -469989,38 +429590,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [137997] = 4, - ACTIONS(3), 1, + [138179] = 10, + ACTIONS(113), 1, anon_sym_POUND, - STATE(5211), 1, + ACTIONS(922), 1, + sym__entry_separator, + ACTIONS(969), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(971), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(1391), 1, + anon_sym_DOT, + ACTIONS(1407), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9162), 1, + aux_sym_unquoted_token4, + STATE(4793), 1, sym_comment, - ACTIONS(909), 16, - sym_identifier, + STATE(10080), 1, + sym__immediate_decimal, + ACTIONS(920), 30, + anon_sym_RBRACK, anon_sym_GT, + anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token5, - ACTIONS(911), 21, - anon_sym_DOLLAR, + [138239] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(4794), 1, + sym_comment, + ACTIONS(1049), 4, + ts_builtin_sym_end, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_command_token1, + ACTIONS(1047), 33, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -470031,16 +429679,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [138045] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [138287] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5237), 1, + ACTIONS(3743), 1, anon_sym_LF, - STATE(5212), 1, + STATE(4795), 1, sym_comment, - ACTIONS(5235), 36, + ACTIONS(3741), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -470077,24 +429728,71 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [138093] = 4, + [138335] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3951), 1, + ACTIONS(1074), 1, + aux_sym_command_token1, + ACTIONS(9438), 1, + anon_sym_DOT_DOT2, + STATE(4796), 1, + sym_comment, + ACTIONS(9440), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1072), 5, + anon_sym_SEMI, anon_sym_LF, - STATE(5213), 1, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(1076), 28, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [138389] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(4797), 1, sym_comment, - ACTIONS(3949), 36, + ACTIONS(1213), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LPAREN2, + ACTIONS(1211), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, anon_sym_DOT_DOT_EQ, @@ -470121,24 +429819,83 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [138141] = 4, + [138437] = 21, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1344), 1, + ACTIONS(9452), 1, + anon_sym_QMARK2, + ACTIONS(9460), 1, + anon_sym_bit_DASHand, + ACTIONS(9462), 1, + anon_sym_bit_DASHxor, + ACTIONS(9464), 1, + anon_sym_bit_DASHor, + ACTIONS(9466), 1, + anon_sym_and, + ACTIONS(9468), 1, + anon_sym_xor, + ACTIONS(9470), 1, + anon_sym_or, + ACTIONS(9472), 1, + anon_sym_DOT, + STATE(4798), 1, + sym_comment, + STATE(5169), 1, + sym_path, + STATE(5967), 1, + sym_cell_path, + ACTIONS(9265), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(9267), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(5214), 1, + ACTIONS(9446), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9454), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9456), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9458), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9448), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9450), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(9444), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [138518] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(4799), 1, sym_comment, - ACTIONS(1342), 36, + ACTIONS(1231), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1229), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, anon_sym_DOT_DOT_EQ, @@ -470165,42 +429922,272 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [138189] = 4, + [138565] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(5215), 1, + ACTIONS(922), 1, + aux_sym_command_token1, + ACTIONS(9474), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9476), 1, + aux_sym_unquoted_token2, + STATE(4800), 1, + sym_comment, + ACTIONS(920), 33, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LF2, + [138616] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(961), 1, + anon_sym_DOT_DOT2, + ACTIONS(9203), 1, + anon_sym_DOT, + ACTIONS(9209), 1, + aux_sym_unquoted_token5, + ACTIONS(9478), 1, + sym_filesize_unit, + ACTIONS(9480), 1, + sym_duration_unit, + STATE(4801), 1, + sym_comment, + ACTIONS(965), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(938), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(940), 24, + anon_sym_DASH, + anon_sym_in, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [138675] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9369), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(9482), 1, + anon_sym_DOT, + STATE(4802), 1, sym_comment, - ACTIONS(1174), 3, + ACTIONS(911), 7, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + ACTIONS(913), 27, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [138726] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(9484), 1, + anon_sym_DOT, + STATE(4803), 1, + sym_comment, + STATE(5013), 1, + sym_path, + STATE(5547), 1, + sym_cell_path, + ACTIONS(1087), 2, + ts_builtin_sym_end, aux_sym_command_token1, - ACTIONS(1172), 34, + ACTIONS(1085), 31, anon_sym_SEMI, anon_sym_LF, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [138779] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1091), 1, + anon_sym_LF, + ACTIONS(1302), 1, + anon_sym_DOT_DOT2, + STATE(4804), 1, + sym_comment, + ACTIONS(1304), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1089), 32, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [138830] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4805), 1, + sym_comment, + ACTIONS(1070), 15, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1068), 21, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, @@ -470208,28 +430195,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - anon_sym_LF2, - [138237] = 6, + [138877] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1001), 1, - aux_sym_command_token1, - ACTIONS(9912), 1, + ACTIONS(9484), 1, anon_sym_DOT, - STATE(5604), 1, - sym_path, - STATE(5216), 2, + STATE(4806), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(999), 33, + STATE(5013), 1, + sym_path, + STATE(5559), 1, + sym_cell_path, + ACTIONS(1059), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(1057), 31, anon_sym_SEMI, anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -470255,68 +430241,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [138289] = 4, + [138930] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1348), 1, - anon_sym_LF, - STATE(5217), 1, + STATE(4807), 1, sym_comment, - ACTIONS(1346), 36, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [138337] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1364), 1, + ACTIONS(1091), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(5218), 1, - sym_comment, - ACTIONS(1362), 36, + ACTIONS(1089), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_not, anon_sym_DOT_DOT_EQ, @@ -470343,28 +430284,25 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [138385] = 6, + [138977] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9754), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(9915), 1, - anon_sym_DOT, - STATE(5219), 1, + STATE(4808), 1, sym_comment, - ACTIONS(923), 8, + ACTIONS(893), 9, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, anon_sym_DOT_DOT2, + anon_sym_DOT, sym_filesize_unit, aux_sym_unquoted_token5, - ACTIONS(925), 27, + ACTIONS(895), 27, anon_sym_DASH, anon_sym_in, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -470389,28 +430327,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [138437] = 7, - ACTIONS(113), 1, + [139024] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9742), 1, - anon_sym_DOT, - STATE(5080), 1, - sym_path, - STATE(5220), 1, + STATE(4809), 1, sym_comment, - STATE(5665), 1, - sym_cell_path, - ACTIONS(997), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(995), 31, + ACTIONS(9333), 36, + anon_sym_COMMA, 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, + [139069] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(4810), 1, + sym_comment, + ACTIONS(1035), 2, + anon_sym_LF, + anon_sym_DOT, + ACTIONS(1033), 34, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -470435,107 +430412,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - [138491] = 4, + [139116] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5197), 1, - anon_sym_LF, - STATE(5221), 1, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + STATE(4811), 1, sym_comment, - ACTIONS(5195), 36, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(1159), 35, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [138539] = 4, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [139163] = 7, ACTIONS(113), 1, anon_sym_POUND, - STATE(5222), 1, - sym_comment, - ACTIONS(5237), 2, - ts_builtin_sym_end, + ACTIONS(1059), 1, anon_sym_LF, - ACTIONS(5235), 34, + ACTIONS(9297), 1, + anon_sym_DOT, + STATE(4812), 1, + sym_comment, + STATE(4928), 1, + sym_path, + STATE(5713), 1, + sym_cell_path, + ACTIONS(1057), 32, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_GT, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [138586] = 6, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [139216] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9918), 1, + ACTIONS(969), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(1391), 1, anon_sym_DOT, - STATE(5938), 1, - sym_path, - STATE(5223), 2, + ACTIONS(1407), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(1409), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9239), 1, + aux_sym_unquoted_token4, + STATE(4813), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(999), 12, + STATE(10080), 1, + sym__immediate_decimal, + ACTIONS(920), 12, sym_identifier, anon_sym_GT, + anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, @@ -470545,10 +430531,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - ACTIONS(1001), 21, + ACTIONS(922), 18, anon_sym_DOLLAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [139275] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9486), 1, + anon_sym_DOT, + STATE(4814), 1, + sym_comment, + STATE(4815), 1, + sym_path, + STATE(5703), 1, + sym_cell_path, + ACTIONS(1002), 13, + sym_identifier, + anon_sym_GT, anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + ACTIONS(1004), 20, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -470568,23 +430596,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [138637] = 4, - ACTIONS(113), 1, + [139328] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5224), 1, + ACTIONS(9486), 1, + anon_sym_DOT, + STATE(4815), 1, sym_comment, - ACTIONS(1170), 4, - ts_builtin_sym_end, + STATE(4817), 1, + aux_sym_cell_path_repeat1, + STATE(5503), 1, + sym_path, + ACTIONS(1010), 13, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + ACTIONS(1012), 20, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + [139381] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(9488), 1, + anon_sym_QMARK2, + STATE(4816), 1, + sym_comment, + ACTIONS(1026), 2, + anon_sym_DOT, aux_sym_command_token1, - ACTIONS(1168), 32, + ACTIONS(1024), 33, anon_sym_SEMI, anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -470610,277 +430686,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - [138684] = 5, + [139430] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9921), 1, - anon_sym_QMARK2, - STATE(5225), 1, + ACTIONS(9486), 1, + anon_sym_DOT, + STATE(4817), 1, sym_comment, - ACTIONS(1070), 12, - anon_sym_DOLLAR, + STATE(4818), 1, + aux_sym_cell_path_repeat1, + STATE(5503), 1, + sym_path, + ACTIONS(1006), 13, + sym_identifier, + anon_sym_GT, anon_sym_DASH, - anon_sym_DOT_DOT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1072), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, + ACTIONS(1008), 20, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [138733] = 5, + [139483] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9921), 1, - anon_sym_QMARK2, - STATE(5226), 1, + ACTIONS(9490), 1, + anon_sym_DOT, + STATE(5503), 1, + sym_path, + STATE(4818), 2, sym_comment, - ACTIONS(1070), 12, - anon_sym_DOLLAR, + aux_sym_cell_path_repeat1, + ACTIONS(985), 13, + sym_identifier, + anon_sym_GT, anon_sym_DASH, - anon_sym_DOT_DOT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1072), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, + ACTIONS(987), 20, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [138782] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(5227), 1, - sym_comment, - ACTIONS(5217), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5215), 34, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [138829] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(5228), 1, - sym_comment, - ACTIONS(5221), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5219), 34, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [138876] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(5229), 1, - sym_comment, - ACTIONS(5225), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5223), 34, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [138923] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(5230), 1, - sym_comment, - ACTIONS(5229), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5227), 34, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [138970] = 3, + [139534] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5231), 1, + STATE(4819), 1, sym_comment, - ACTIONS(1280), 36, + ACTIONS(1157), 2, + anon_sym_RBRACK, + anon_sym_RPAREN, + ACTIONS(1155), 34, sym_identifier, - anon_sym_COLON, anon_sym_COMMA, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DOT_DOT_DOT, @@ -470913,101 +430820,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, aux_sym_unquoted_token6, - [139015] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(5232), 1, - sym_comment, - ACTIONS(5233), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5231), 34, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [139062] = 4, + [139581] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5233), 1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + STATE(4820), 1, sym_comment, - ACTIONS(5241), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5239), 34, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(1129), 35, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [139109] = 4, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [139628] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5234), 1, + STATE(4821), 1, sym_comment, - ACTIONS(6329), 2, + ACTIONS(5153), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6332), 34, + ACTIONS(5151), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -471042,15 +430906,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [139156] = 4, + [139675] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5235), 1, + STATE(4822), 1, sym_comment, - ACTIONS(2439), 2, + ACTIONS(1213), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(2437), 34, + ACTIONS(1211), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -471085,24 +430949,24 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [139203] = 7, + [139722] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9923), 1, - anon_sym_DOT_DOT2, - STATE(5236), 1, + ACTIONS(9484), 1, + anon_sym_DOT, + STATE(4823), 1, sym_comment, - ACTIONS(1196), 2, + STATE(5013), 1, + sym_path, + STATE(5857), 1, + sym_cell_path, + ACTIONS(1095), 2, ts_builtin_sym_end, aux_sym_command_token1, - ACTIONS(9925), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1194), 3, + ACTIONS(1093), 31, anon_sym_SEMI, anon_sym_LF, anon_sym_PIPE, - ACTIONS(1198), 28, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -471131,79 +430995,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [139256] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(5237), 1, - sym_comment, - ACTIONS(2549), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2547), 34, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [139303] = 4, - ACTIONS(113), 1, + [139775] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1284), 1, - aux_sym_unquoted_token6, - STATE(5238), 1, + STATE(4824), 1, sym_comment, - ACTIONS(1158), 35, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, + ACTIONS(893), 7, anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + ACTIONS(895), 29, + anon_sym_COMMA, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -471217,64 +431035,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [139350] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(5239), 1, - sym_comment, - ACTIONS(3507), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3505), 34, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [139397] = 7, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [139822] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9927), 1, + ACTIONS(9484), 1, anon_sym_DOT, - STATE(5224), 1, - sym_cell_path, - STATE(5240), 1, + STATE(4825), 1, sym_comment, - STATE(5260), 1, + STATE(5013), 1, sym_path, - ACTIONS(1012), 2, + STATE(5531), 1, + sym_cell_path, + ACTIONS(1053), 2, ts_builtin_sym_end, aux_sym_command_token1, - ACTIONS(1010), 31, + ACTIONS(1051), 31, anon_sym_SEMI, anon_sym_LF, anon_sym_PIPE, @@ -471306,158 +431084,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [139450] = 6, - ACTIONS(3), 1, + [139875] = 7, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9929), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9931), 1, - aux_sym__immediate_decimal_token2, - STATE(5241), 1, - sym_comment, - ACTIONS(2437), 11, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, + ACTIONS(1099), 1, + anon_sym_LF, + ACTIONS(9297), 1, anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(2439), 23, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_not, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [139501] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5242), 1, + STATE(4826), 1, sym_comment, - ACTIONS(1174), 15, - anon_sym_DASH_DASH, + STATE(4928), 1, + sym_path, + STATE(5740), 1, + sym_cell_path, + ACTIONS(1097), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1172), 21, - sym_cmd_identifier, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [139928] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + STATE(4827), 1, + sym_comment, + ACTIONS(1135), 35, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - [139548] = 4, + [139975] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5243), 1, + STATE(4828), 1, sym_comment, - ACTIONS(1170), 15, - anon_sym_DASH_DASH, + ACTIONS(901), 7, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + ACTIONS(903), 29, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1168), 21, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - [139595] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [140022] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5244), 1, + STATE(4829), 1, sym_comment, - ACTIONS(1243), 5, + ACTIONS(901), 9, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1290), 31, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + ACTIONS(903), 27, anon_sym_DASH, anon_sym_in, - anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -471479,72 +431256,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - [139642] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [140069] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5245), 1, + STATE(4830), 1, sym_comment, - ACTIONS(5185), 2, - ts_builtin_sym_end, + ACTIONS(1022), 2, anon_sym_LF, - ACTIONS(5183), 34, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [139689] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(9927), 1, anon_sym_DOT, - STATE(5246), 1, - sym_comment, - STATE(5260), 1, - sym_path, - STATE(6178), 1, - sym_cell_path, - ACTIONS(1192), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(1190), 31, + ACTIONS(1020), 34, anon_sym_SEMI, - anon_sym_LF, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -471569,37 +431302,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [139742] = 5, - ACTIONS(113), 1, + [140116] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9933), 1, - anon_sym_QMARK2, - STATE(5247), 1, + STATE(4831), 1, sym_comment, - ACTIONS(1072), 2, - anon_sym_LF, - anon_sym_DOT, - ACTIONS(1070), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(934), 7, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + ACTIONS(936), 29, + anon_sym_COMMA, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -471613,37 +431342,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [139791] = 5, - ACTIONS(113), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [140163] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9933), 1, - anon_sym_QMARK2, - STATE(5248), 1, - sym_comment, - ACTIONS(1072), 2, - anon_sym_LF, + ACTIONS(9493), 1, anon_sym_DOT, - ACTIONS(1070), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + STATE(4832), 1, + sym_comment, + STATE(4840), 1, + sym_path, + STATE(5719), 1, + sym_cell_path, + ACTIONS(992), 12, + sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + ACTIONS(994), 21, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -471654,27 +431389,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [139840] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [140216] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5249), 1, + STATE(4833), 1, sym_comment, - ACTIONS(1170), 4, - ts_builtin_sym_end, + ACTIONS(1231), 2, anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1168), 32, + anon_sym_DOT, + ACTIONS(1229), 34, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -471699,76 +431434,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - [139887] = 3, + [140263] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(5250), 1, - sym_comment, - ACTIONS(9935), 36, - anon_sym_COMMA, - 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, - [139932] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(5251), 1, + ACTIONS(9495), 1, + anon_sym_DOT_DOT2, + STATE(4834), 1, sym_comment, - ACTIONS(1170), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1168), 34, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, + ACTIONS(3362), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(9497), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3354), 10, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_not, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3356), 21, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -471776,24 +431474,66 @@ 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, + [140316] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9499), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9501), 1, + aux_sym__immediate_decimal_token2, + STATE(4835), 1, + sym_comment, + ACTIONS(2229), 11, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, + ACTIONS(2231), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [139979] = 4, + [140367] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5252), 1, + STATE(4836), 1, sym_comment, - ACTIONS(1196), 2, + ACTIONS(1285), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1194), 34, + ACTIONS(1283), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -471828,40 +431568,74 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [140026] = 10, - ACTIONS(3), 1, + [140414] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1045), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(1593), 1, - anon_sym_DOT, - ACTIONS(1609), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(1611), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9899), 1, - aux_sym_unquoted_token4, - STATE(5253), 1, + ACTIONS(1149), 1, + aux_sym_unquoted_token6, + STATE(4837), 1, sym_comment, - STATE(10460), 1, - sym__immediate_decimal, - ACTIONS(936), 12, + ACTIONS(1091), 2, + anon_sym_RBRACK, + anon_sym_RPAREN, + ACTIONS(1089), 33, sym_identifier, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(938), 18, + [140463] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4838), 1, + sym_comment, + ACTIONS(1211), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1213), 31, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -471877,17 +431651,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [140085] = 5, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LPAREN2, + [140510] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8570), 1, - aux_sym_unquoted_token5, - STATE(5254), 1, + ACTIONS(9493), 1, + anon_sym_DOT, + STATE(4839), 1, sym_comment, - ACTIONS(959), 12, + STATE(4840), 1, + sym_path, + STATE(5674), 1, + sym_cell_path, + ACTIONS(1002), 12, sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, @@ -471897,13 +431678,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(961), 23, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_PIPE, + anon_sym_DOT_DOT2, + ACTIONS(1004), 21, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -471921,39 +431699,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [140134] = 7, - ACTIONS(113), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [140563] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9927), 1, + ACTIONS(9493), 1, anon_sym_DOT, - STATE(5255), 1, + STATE(4840), 1, sym_comment, - STATE(5260), 1, + STATE(4851), 1, + aux_sym_cell_path_repeat1, + STATE(5213), 1, sym_path, - STATE(6215), 1, - sym_cell_path, - ACTIONS(1188), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(1186), 31, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, + ACTIONS(1010), 12, + sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + ACTIONS(1012), 21, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -471964,37 +431745,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [140187] = 10, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [140616] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(979), 1, - anon_sym_DOT_DOT2, - ACTIONS(9820), 1, - aux_sym_unquoted_token5, - ACTIONS(9828), 1, - anon_sym_DOT, - ACTIONS(9937), 1, - sym_filesize_unit, - ACTIONS(9939), 1, - sym_duration_unit, - STATE(5256), 1, + ACTIONS(9503), 1, + anon_sym_QMARK2, + STATE(4841), 1, sym_comment, - ACTIONS(983), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(959), 5, + ACTIONS(1024), 8, anon_sym_GT, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(961), 24, - anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1026), 27, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_in, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -472016,34 +431789,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [140246] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(5257), 1, - sym_comment, - ACTIONS(1061), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1059), 33, - anon_sym_RBRACK, + [140665] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9503), 1, + anon_sym_QMARK2, + STATE(4842), 1, + sym_comment, + ACTIONS(1024), 8, anon_sym_GT, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_QMARK2, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1026), 27, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -472057,41 +431833,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [140293] = 7, - ACTIONS(113), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [140714] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9941), 1, - anon_sym_DOT, - STATE(5258), 1, + STATE(4843), 1, sym_comment, - STATE(5301), 1, - sym_path, - STATE(5957), 1, - sym_cell_path, - ACTIONS(1192), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1190), 31, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(893), 9, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + ACTIONS(895), 27, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -472105,98 +431875,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [140346] = 20, - ACTIONS(113), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [140761] = 10, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9806), 1, + ACTIONS(9203), 1, anon_sym_DOT, - ACTIONS(9945), 1, - anon_sym_LF, - ACTIONS(9961), 1, - anon_sym_bit_DASHand, - ACTIONS(9963), 1, - anon_sym_bit_DASHxor, - ACTIONS(9965), 1, - anon_sym_bit_DASHor, - ACTIONS(9967), 1, - anon_sym_and, - ACTIONS(9969), 1, - anon_sym_xor, - ACTIONS(9971), 1, - anon_sym_or, - STATE(5259), 1, + ACTIONS(9209), 1, + aux_sym_unquoted_token5, + ACTIONS(9505), 1, + anon_sym_DOT_DOT2, + ACTIONS(9509), 1, + sym_filesize_unit, + ACTIONS(9511), 1, + sym_duration_unit, + STATE(4844), 1, sym_comment, - STATE(5343), 1, - sym_path, - STATE(6149), 1, - sym_cell_path, - ACTIONS(9949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9955), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9957), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9959), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(9943), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(9951), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(9953), 4, + ACTIONS(9507), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(938), 5, + anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(9947), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_PLUS, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [140425] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(9927), 1, - anon_sym_DOT, - STATE(5260), 1, - sym_comment, - STATE(5302), 1, - aux_sym_cell_path_repeat1, - STATE(5671), 1, - sym_path, - ACTIONS(989), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(987), 31, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(940), 24, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -472210,36 +431927,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [140478] = 4, + [140820] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9905), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(5261), 1, + STATE(4845), 1, sym_comment, - ACTIONS(1243), 35, - sym_identifier, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(1217), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1215), 34, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [140867] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4846), 1, + sym_comment, + ACTIONS(901), 9, + anon_sym_GT, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + ACTIONS(903), 27, + anon_sym_DASH, + anon_sym_in, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -472253,12 +432010,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [140525] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [140914] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(4847), 1, + sym_comment, + ACTIONS(1243), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1241), 34, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [140961] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5262), 1, + STATE(4848), 1, sym_comment, - ACTIONS(917), 9, + ACTIONS(934), 9, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, @@ -472268,10 +432071,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, sym_filesize_unit, aux_sym_unquoted_token5, - ACTIONS(919), 27, + ACTIONS(936), 27, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -472296,40 +432099,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [140572] = 8, - ACTIONS(113), 1, + [141008] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4666), 1, - anon_sym_LF, - ACTIONS(9806), 1, - anon_sym_DOT, - STATE(5263), 1, + STATE(4849), 1, sym_comment, - STATE(5343), 1, - sym_path, - STATE(6275), 1, - sym_cell_path, - ACTIONS(4669), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(1203), 28, + ACTIONS(1020), 8, anon_sym_GT, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1022), 28, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -472343,67 +432140,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [140627] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5264), 1, - sym_comment, - ACTIONS(9973), 36, - anon_sym_COMMA, - 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, - [140672] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [141055] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5265), 1, + STATE(4850), 1, sym_comment, - ACTIONS(1065), 2, + ACTIONS(1063), 4, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT, - ACTIONS(1063), 34, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1061), 32, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -472428,273 +432184,294 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [140719] = 7, + anon_sym_DOT_DOT2, + [141102] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9975), 1, + ACTIONS(9493), 1, anon_sym_DOT, - STATE(5243), 1, - sym_cell_path, - STATE(5266), 1, + STATE(4851), 1, sym_comment, - STATE(5268), 1, + STATE(4853), 1, + aux_sym_cell_path_repeat1, + STATE(5213), 1, sym_path, - ACTIONS(1012), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1010), 20, - sym_cmd_identifier, + ACTIONS(1006), 12, + sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [140772] = 20, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(9806), 1, - anon_sym_DOT, - ACTIONS(9979), 1, - anon_sym_LF, - ACTIONS(9995), 1, - anon_sym_bit_DASHand, - ACTIONS(9997), 1, - anon_sym_bit_DASHxor, - ACTIONS(9999), 1, - anon_sym_bit_DASHor, - ACTIONS(10001), 1, - anon_sym_and, - ACTIONS(10003), 1, - anon_sym_xor, - ACTIONS(10005), 1, - anon_sym_or, - STATE(5267), 1, - sym_comment, - STATE(5343), 1, - sym_path, - STATE(6236), 1, - sym_cell_path, - ACTIONS(9983), 2, + anon_sym_DOT_DOT2, + ACTIONS(1008), 21, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9989), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9991), 2, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(9993), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(9977), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(9985), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(9987), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(9981), 6, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [140851] = 7, - ACTIONS(3), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [141155] = 7, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9975), 1, + ACTIONS(9484), 1, anon_sym_DOT, - STATE(5268), 1, + STATE(4852), 1, sym_comment, - STATE(5269), 1, - aux_sym_cell_path_repeat1, - STATE(5726), 1, + STATE(5013), 1, sym_path, - ACTIONS(989), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(987), 20, - sym_cmd_identifier, + STATE(5583), 1, + sym_cell_path, + ACTIONS(1099), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(1097), 31, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [140904] = 7, + [141208] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9975), 1, + ACTIONS(9513), 1, anon_sym_DOT, - STATE(5269), 1, + STATE(5213), 1, + sym_path, + STATE(4853), 2, sym_comment, - STATE(5270), 1, aux_sym_cell_path_repeat1, - STATE(5726), 1, - sym_path, - ACTIONS(1008), 13, - anon_sym_DASH_DASH, + ACTIONS(985), 12, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + ACTIONS(987), 21, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1006), 20, - sym_cmd_identifier, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [141259] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4854), 1, + sym_comment, + ACTIONS(1033), 8, anon_sym_GT, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1035), 28, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_LT2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [140957] = 6, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [141306] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10007), 1, - anon_sym_DOT, - STATE(5726), 1, - sym_path, - STATE(5270), 2, + STATE(4855), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1001), 13, + ACTIONS(1251), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1249), 34, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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(999), 20, - sym_cmd_identifier, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [141353] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(922), 1, + aux_sym_command_token1, + ACTIONS(9516), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9518), 1, + aux_sym_unquoted_token2, + STATE(4856), 1, + sym_comment, + ACTIONS(920), 33, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [141008] = 7, + [141404] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9554), 1, - anon_sym_DOT, - STATE(4905), 1, - sym_path, - STATE(5271), 1, + STATE(4857), 1, sym_comment, - STATE(5397), 1, - sym_cell_path, - ACTIONS(1154), 5, + ACTIONS(934), 9, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1156), 28, - anon_sym_COMMA, - anon_sym_DOLLAR, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token5, + ACTIONS(936), 27, anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -472716,39 +432493,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [141061] = 7, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [141451] = 7, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9554), 1, + ACTIONS(9520), 1, anon_sym_DOT, - STATE(4784), 1, + STATE(4850), 1, sym_cell_path, - STATE(4905), 1, - sym_path, - STATE(5272), 1, + STATE(4858), 1, sym_comment, - ACTIONS(995), 5, + STATE(4862), 1, + sym_path, + ACTIONS(1004), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1002), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(997), 28, - anon_sym_COMMA, - anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -472762,74 +432542,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [141114] = 8, + [141504] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1194), 1, - sym_cmd_identifier, - ACTIONS(10010), 1, - anon_sym_DOT_DOT2, - STATE(5273), 1, + ACTIONS(8013), 1, + aux_sym_unquoted_token5, + STATE(4859), 1, sym_comment, - ACTIONS(10012), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1196), 4, + ACTIONS(938), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(940), 23, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1366), 9, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1198), 19, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [141553] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(4860), 1, + sym_comment, + ACTIONS(1095), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1093), 34, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [141600] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1391), 1, + anon_sym_DOT, + ACTIONS(1409), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9209), 1, + aux_sym_unquoted_token4, + STATE(4861), 1, + sym_comment, + STATE(10080), 1, + sym__immediate_decimal, + ACTIONS(1407), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + ACTIONS(920), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(922), 24, + anon_sym_COMMA, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_LT2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [141169] = 7, + [141657] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(997), 1, - anon_sym_LF, - ACTIONS(9806), 1, + ACTIONS(9520), 1, anon_sym_DOT, - STATE(5151), 1, - sym_cell_path, - STATE(5274), 1, + STATE(4862), 1, sym_comment, - STATE(5343), 1, + STATE(4882), 1, + aux_sym_cell_path_repeat1, + STATE(5291), 1, sym_path, - ACTIONS(995), 32, + ACTIONS(1012), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1010), 31, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -472855,20 +432723,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [141222] = 6, + [141710] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9923), 1, - anon_sym_DOT_DOT2, - STATE(5275), 1, + ACTIONS(9484), 1, + anon_sym_DOT, + STATE(4863), 1, sym_comment, - ACTIONS(1160), 2, + STATE(5013), 1, + sym_path, + STATE(5593), 1, + sym_cell_path, + ACTIONS(1103), 2, ts_builtin_sym_end, aux_sym_command_token1, - ACTIONS(9925), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1158), 31, + ACTIONS(1101), 31, anon_sym_SEMI, anon_sym_LF, anon_sym_PIPE, @@ -472900,30 +432769,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [141273] = 4, + [141763] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(5276), 1, + ACTIONS(9486), 1, + anon_sym_DOT, + STATE(4815), 1, + sym_path, + STATE(4864), 1, sym_comment, - ACTIONS(1414), 5, + STATE(5839), 1, + sym_cell_path, + ACTIONS(992), 13, + sym_identifier, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1416), 31, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + ACTIONS(994), 20, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -472939,27 +432813,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - [141320] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [141816] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(938), 1, - aux_sym_command_token1, - ACTIONS(10014), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10016), 1, - aux_sym_unquoted_token2, - STATE(5277), 1, + STATE(4865), 1, sym_comment, - ACTIONS(936), 33, + ACTIONS(4738), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4734), 34, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [141863] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(9520), 1, + anon_sym_DOT, + STATE(4862), 1, + sym_path, + STATE(4866), 1, + sym_comment, + STATE(5706), 1, + sym_cell_path, + ACTIONS(1087), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_RPAREN, + ACTIONS(1085), 31, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -472987,21 +432904,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LF2, - [141371] = 4, + [141916] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(5278), 1, + ACTIONS(9522), 1, + anon_sym_DOT_DOT2, + STATE(4867), 1, sym_comment, - ACTIONS(1282), 2, - anon_sym_RBRACK, - anon_sym_RPAREN, - ACTIONS(1280), 34, - sym_identifier, - anon_sym_COMMA, - anon_sym_DOLLAR, + ACTIONS(1091), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(9524), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1089), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, @@ -473030,36 +432949,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - aux_sym_unquoted_token6, - [141418] = 5, - ACTIONS(3), 1, + [141967] = 7, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10018), 1, - anon_sym_QMARK2, - STATE(5279), 1, + ACTIONS(1103), 1, + anon_sym_LF, + ACTIONS(9297), 1, + anon_sym_DOT, + STATE(4868), 1, sym_comment, - ACTIONS(1070), 8, + STATE(4928), 1, + sym_path, + STATE(5807), 1, + sym_cell_path, + ACTIONS(1101), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1072), 27, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -473073,65 +432995,468 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + [142020] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9526), 1, + anon_sym_QMARK2, + STATE(4869), 1, + sym_comment, + ACTIONS(1024), 12, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1026), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [141467] = 5, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [142069] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10018), 1, + ACTIONS(9526), 1, anon_sym_QMARK2, - STATE(5280), 1, + STATE(4870), 1, sym_comment, - ACTIONS(1070), 8, - anon_sym_GT, + ACTIONS(1024), 12, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(1072), 27, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1026), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_not, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [142118] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9528), 1, + anon_sym_DOT, + STATE(4871), 1, + sym_comment, + STATE(5003), 1, + sym_path, + STATE(5760), 1, + sym_cell_path, + ACTIONS(1059), 13, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1057), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, + [142171] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4872), 1, + sym_comment, + ACTIONS(1033), 12, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1035), 24, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK2, + anon_sym_not, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [141516] = 7, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [142218] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10020), 1, + STATE(4873), 1, + sym_comment, + ACTIONS(1020), 12, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT, - STATE(5281), 1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1022), 24, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK2, + anon_sym_not, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [142265] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(4874), 1, sym_comment, - STATE(5283), 1, + ACTIONS(1063), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1061), 34, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [142312] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(4875), 1, + sym_comment, + ACTIONS(1239), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1237), 34, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [142359] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4876), 1, + sym_comment, + ACTIONS(2229), 13, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + ACTIONS(2231), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [142406] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4877), 1, + sym_comment, + ACTIONS(2362), 13, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + ACTIONS(2364), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [142453] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(4878), 1, + sym_comment, + ACTIONS(1235), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1233), 34, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [142500] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9528), 1, + anon_sym_DOT, + STATE(4879), 1, + sym_comment, + STATE(5003), 1, sym_path, - STATE(6161), 1, + STATE(5549), 1, sym_cell_path, - ACTIONS(1010), 13, - sym_identifier, + ACTIONS(1099), 13, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1097), 20, + sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -473139,59 +433464,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_mod, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - ACTIONS(1012), 20, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [142553] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4880), 1, + sym_comment, + ACTIONS(2402), 13, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + ACTIONS(2404), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [141569] = 4, - ACTIONS(3), 1, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [142600] = 7, + ACTIONS(113), 1, anon_sym_POUND, - STATE(5282), 1, + ACTIONS(9520), 1, + anon_sym_DOT, + STATE(4862), 1, + sym_path, + STATE(4881), 1, sym_comment, - ACTIONS(909), 7, + STATE(5800), 1, + sym_cell_path, + ACTIONS(1095), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1093), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - ACTIONS(911), 29, - anon_sym_COMMA, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -473205,43 +433565,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [141616] = 7, - ACTIONS(3), 1, + [142653] = 7, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10020), 1, + ACTIONS(9520), 1, anon_sym_DOT, - STATE(5283), 1, + STATE(4882), 1, sym_comment, - STATE(5285), 1, + STATE(4892), 1, aux_sym_cell_path_repeat1, - STATE(5947), 1, + STATE(5291), 1, sym_path, - ACTIONS(987), 13, - sym_identifier, + ACTIONS(1008), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1006), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - ACTIONS(989), 20, - anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -473252,35 +433608,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [141669] = 4, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [142706] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(5284), 1, + STATE(4883), 1, + sym_comment, + ACTIONS(3769), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3767), 34, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [142753] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1095), 1, + anon_sym_LF, + ACTIONS(9297), 1, + anon_sym_DOT, + STATE(4884), 1, sym_comment, - ACTIONS(917), 7, + STATE(4928), 1, + sym_path, + STATE(5732), 1, + sym_cell_path, + ACTIONS(1093), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - ACTIONS(919), 29, - anon_sym_COMMA, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -473294,21 +433700,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [141716] = 7, + [142806] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10020), 1, - anon_sym_DOT, - STATE(5285), 1, + STATE(4885), 1, + sym_comment, + ACTIONS(9530), 36, + anon_sym_COMMA, + 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, + [142851] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4886), 1, + sym_comment, + ACTIONS(9532), 36, + anon_sym_COMMA, + 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, + [142896] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9534), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9536), 1, + aux_sym_unquoted_token2, + STATE(4887), 1, sym_comment, - STATE(5287), 1, - aux_sym_cell_path_repeat1, - STATE(5947), 1, - sym_path, - ACTIONS(1006), 13, + ACTIONS(920), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -473321,8 +433806,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - ACTIONS(1008), 20, + ACTIONS(922), 22, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -473341,84 +433829,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [141769] = 4, - ACTIONS(3), 1, + [142947] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(5286), 1, + STATE(4888), 1, sym_comment, - ACTIONS(950), 7, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - ACTIONS(952), 29, - anon_sym_COMMA, + ACTIONS(1255), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1253), 34, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [141816] = 6, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [142994] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10022), 1, - anon_sym_DOT, - STATE(5947), 1, - sym_path, - STATE(5287), 2, + STATE(4889), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(999), 13, + ACTIONS(9538), 36, + anon_sym_COMMA, + 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, + [143039] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1149), 1, + aux_sym_unquoted_token6, + STATE(4890), 1, + sym_comment, + ACTIONS(1089), 35, sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - ACTIONS(1001), 20, - anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -473429,24 +433954,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [141867] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [143086] = 8, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - STATE(5288), 1, - sym_comment, - ACTIONS(1247), 35, - sym_identifier, + ACTIONS(1074), 1, + anon_sym_LF, + ACTIONS(1302), 1, + anon_sym_DOT_DOT2, + ACTIONS(8191), 1, anon_sym_COLON, - anon_sym_COMMA, + STATE(4891), 1, + sym_comment, + ACTIONS(1304), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1072), 3, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DOLLAR, + anon_sym_RBRACE, + ACTIONS(1076), 28, anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -473474,24 +434004,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [141914] = 4, + [143141] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(5289), 1, - sym_comment, - ACTIONS(1065), 2, + ACTIONS(9540), 1, anon_sym_DOT, - aux_sym_command_token1, - ACTIONS(1063), 34, - anon_sym_SEMI, + STATE(5291), 1, + sym_path, + ACTIONS(987), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_RPAREN, + STATE(4892), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(985), 31, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -473516,39 +434049,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LF2, - [141961] = 6, + [143192] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10025), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10027), 1, - aux_sym__immediate_decimal_token2, - STATE(5290), 1, + STATE(4893), 1, + sym_comment, + ACTIONS(9543), 36, + anon_sym_COMMA, + 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, + [143237] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(4894), 1, sym_comment, - ACTIONS(2437), 11, + ACTIONS(1259), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1257), 34, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, + anon_sym_not, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2439), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -473556,70 +434125,76 @@ 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, - [142012] = 4, - ACTIONS(113), 1, + [143284] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - STATE(5291), 1, + STATE(4895), 1, sym_comment, - ACTIONS(1253), 35, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DOT_DOT_DOT, + ACTIONS(1063), 15, anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1061), 21, + sym_cmd_identifier, + anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [142059] = 4, + anon_sym_DOT_DOT2, + [143331] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - STATE(5292), 1, + ACTIONS(9520), 1, + anon_sym_DOT, + STATE(4862), 1, + sym_path, + STATE(4896), 1, sym_comment, - ACTIONS(1273), 35, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, + STATE(5811), 1, + sym_cell_path, + ACTIONS(1099), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1097), 31, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_GT, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, @@ -473648,25 +434223,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [142106] = 7, + [143384] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9941), 1, - anon_sym_DOT, - STATE(5249), 1, - sym_cell_path, - STATE(5293), 1, + STATE(4897), 1, sym_comment, - STATE(5301), 1, - sym_path, - ACTIONS(1012), 2, + ACTIONS(1070), 4, ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1010), 31, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_command_token1, + ACTIONS(1068), 32, anon_sym_SEMI, + anon_sym_LF, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -473694,15 +434265,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [142159] = 4, + anon_sym_DOT_DOT2, + [143431] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5294), 1, + STATE(4898), 1, sym_comment, - ACTIONS(9767), 2, + ACTIONS(5243), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(9765), 34, + ACTIONS(5241), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -473737,58 +434309,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [142206] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(5295), 1, - sym_comment, - ACTIONS(1119), 4, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1117), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [142253] = 4, + [143478] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5296), 1, + STATE(4899), 1, sym_comment, - ACTIONS(9816), 2, + ACTIONS(5247), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(9814), 34, + ACTIONS(5245), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -473823,33 +434352,39 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [142300] = 4, - ACTIONS(3), 1, + [143525] = 7, + ACTIONS(113), 1, anon_sym_POUND, - STATE(5297), 1, + ACTIONS(9520), 1, + anon_sym_DOT, + STATE(4862), 1, + sym_path, + STATE(4900), 1, sym_comment, - ACTIONS(909), 9, + STATE(5816), 1, + sym_cell_path, + ACTIONS(1103), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1101), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - ACTIONS(911), 27, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -473863,36 +434398,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [142347] = 4, - ACTIONS(3), 1, + [143578] = 5, + ACTIONS(113), 1, anon_sym_POUND, - STATE(5298), 1, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + STATE(4901), 1, sym_comment, - ACTIONS(917), 9, + ACTIONS(1161), 2, + anon_sym_RBRACK, + anon_sym_RPAREN, + ACTIONS(1159), 33, + sym_identifier, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - ACTIONS(919), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -473906,79 +434442,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [142394] = 4, + [143627] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(5299), 1, - sym_comment, - ACTIONS(950), 9, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT2, + ACTIONS(9545), 1, anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - ACTIONS(952), 27, - anon_sym_DASH, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [142441] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(5300), 1, + ACTIONS(9547), 1, + aux_sym__immediate_decimal_token2, + STATE(4902), 1, sym_comment, - ACTIONS(1061), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1059), 34, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, + ACTIONS(2356), 11, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_not, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2358), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -473986,34 +434481,28 @@ 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, - [142488] = 7, + [143678] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9941), 1, - anon_sym_DOT, - STATE(5301), 1, + ACTIONS(9549), 1, + anon_sym_QMARK2, + STATE(4903), 1, sym_comment, - STATE(5315), 1, - aux_sym_cell_path_repeat1, - STATE(5749), 1, - sym_path, - ACTIONS(989), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(987), 31, + ACTIONS(1026), 2, + anon_sym_DOT, + aux_sym_command_token1, + ACTIONS(1024), 33, anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -474041,23 +434530,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [142541] = 7, + anon_sym_LF2, + [143727] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9927), 1, - anon_sym_DOT, - STATE(5302), 1, + ACTIONS(9549), 1, + anon_sym_QMARK2, + STATE(4904), 1, sym_comment, - STATE(5309), 1, - aux_sym_cell_path_repeat1, - STATE(5671), 1, - sym_path, - ACTIONS(1008), 2, - ts_builtin_sym_end, + ACTIONS(1026), 2, + anon_sym_DOT, aux_sym_command_token1, - ACTIONS(1006), 31, + ACTIONS(1024), 33, anon_sym_SEMI, anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, @@ -474087,124 +434574,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [142594] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(5303), 1, - sym_comment, - ACTIONS(5173), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5171), 34, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [142641] = 3, + anon_sym_LF2, + [143776] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5304), 1, + STATE(4905), 1, sym_comment, - ACTIONS(10029), 36, + ACTIONS(1037), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1039), 31, anon_sym_COMMA, - 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, - [142686] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(9927), 1, - anon_sym_DOT, - STATE(5260), 1, - sym_path, - STATE(5305), 1, - sym_comment, - STATE(5951), 1, - sym_cell_path, - ACTIONS(1150), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(1148), 31, - anon_sym_SEMI, - anon_sym_LF, anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -474218,78 +434617,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [142739] = 4, + anon_sym_DOT, + [143823] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5306), 1, + STATE(4906), 1, sym_comment, - ACTIONS(1065), 2, - ts_builtin_sym_end, + ACTIONS(1035), 2, anon_sym_LF, - ACTIONS(1063), 34, + anon_sym_DOT, + ACTIONS(1033), 34, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [142786] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9684), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(10031), 1, - anon_sym_DOT, - STATE(5307), 1, - sym_comment, - ACTIONS(923), 7, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - ACTIONS(925), 27, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -474303,31 +434661,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [142837] = 7, + [143870] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1196), 1, - anon_sym_LF, - ACTIONS(1472), 1, - anon_sym_DOT_DOT2, - STATE(5308), 1, + STATE(4907), 1, sym_comment, - ACTIONS(1474), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1194), 4, + ACTIONS(1022), 2, + anon_sym_LF, + anon_sym_DOT, + ACTIONS(1020), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(1198), 28, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -474352,26 +434704,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [142890] = 6, + [143917] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10033), 1, + ACTIONS(1008), 1, + anon_sym_LF, + ACTIONS(9297), 1, anon_sym_DOT, - STATE(5671), 1, - sym_path, - ACTIONS(1001), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - STATE(5309), 2, + STATE(4908), 1, sym_comment, + STATE(5010), 1, aux_sym_cell_path_repeat1, - ACTIONS(999), 31, + STATE(5270), 1, + sym_path, + ACTIONS(1006), 32, anon_sym_SEMI, - anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -474397,20 +434750,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [142941] = 7, + [143970] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10036), 1, + ACTIONS(969), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(1391), 1, anon_sym_DOT, - STATE(5310), 1, + ACTIONS(1407), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(1409), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8013), 1, + aux_sym_unquoted_token4, + STATE(4909), 1, sym_comment, - STATE(5446), 1, - sym_path, - STATE(6232), 1, - sym_cell_path, - ACTIONS(995), 12, + STATE(10080), 1, + sym__immediate_decimal, + ACTIONS(920), 12, sym_identifier, anon_sym_GT, + anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, @@ -474420,10 +434780,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - ACTIONS(997), 21, - anon_sym_DOLLAR, - anon_sym_DASH, + ACTIONS(922), 18, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -474441,73 +434799,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [142994] = 4, - ACTIONS(113), 1, + [144029] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5311), 1, + STATE(4910), 1, sym_comment, - ACTIONS(1322), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1320), 34, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(1215), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1217), 31, + anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_in, + anon_sym_if, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [143041] = 7, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LPAREN2, + [144076] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9554), 1, - anon_sym_DOT, - STATE(4905), 1, - sym_path, - STATE(5312), 1, + STATE(4911), 1, sym_comment, - STATE(6166), 1, - sym_cell_path, - ACTIONS(1203), 5, + ACTIONS(938), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1205), 28, + ACTIONS(940), 31, + anon_sym_COLON, anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, @@ -474532,23 +434885,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [143094] = 4, + [144123] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5313), 1, + ACTIONS(9551), 1, + anon_sym_LBRACK2, + STATE(4912), 1, sym_comment, - ACTIONS(950), 9, + ACTIONS(1143), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - anon_sym_DOT_DOT2, + ACTIONS(1145), 30, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [144172] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1381), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9209), 1, + aux_sym_unquoted_token3, + ACTIONS(9247), 1, anon_sym_DOT, - sym_filesize_unit, + ACTIONS(9249), 1, aux_sym_unquoted_token5, - ACTIONS(952), 27, + STATE(4913), 1, + sym_comment, + STATE(8796), 1, + sym__immediate_decimal, + ACTIONS(1379), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + ACTIONS(920), 6, + anon_sym_GT, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(922), 23, anon_sym_in, anon_sym_LBRACE, anon_sym_STAR_STAR, @@ -474572,70 +434978,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [143141] = 3, + [144231] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(5314), 1, + ACTIONS(1391), 1, + anon_sym_DOT, + ACTIONS(1409), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9209), 1, + aux_sym_unquoted_token4, + STATE(4914), 1, + sym_comment, + STATE(10080), 1, + sym__immediate_decimal, + ACTIONS(1407), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + ACTIONS(920), 6, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(922), 24, + anon_sym_DOLLAR, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [144288] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + STATE(4915), 1, sym_comment, - ACTIONS(9824), 36, + ACTIONS(1131), 2, + anon_sym_RBRACK, + anon_sym_RPAREN, + ACTIONS(1129), 33, + sym_identifier, anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [144337] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + STATE(4916), 1, + sym_comment, + ACTIONS(1137), 2, 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, - [143186] = 7, + anon_sym_RPAREN, + ACTIONS(1135), 33, + sym_identifier, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [144386] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9941), 1, - anon_sym_DOT, - STATE(5315), 1, + STATE(4917), 1, sym_comment, - STATE(5320), 1, - aux_sym_cell_path_repeat1, - STATE(5749), 1, - sym_path, - ACTIONS(1008), 2, + ACTIONS(1049), 4, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1006), 31, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1047), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -474663,42 +435155,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [143239] = 10, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [144433] = 7, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9820), 1, - aux_sym_unquoted_token5, - ACTIONS(9828), 1, + ACTIONS(9520), 1, anon_sym_DOT, - ACTIONS(10038), 1, - anon_sym_DOT_DOT2, - ACTIONS(10042), 1, - sym_filesize_unit, - ACTIONS(10044), 1, - sym_duration_unit, - STATE(5316), 1, + STATE(4862), 1, + sym_path, + STATE(4918), 1, sym_comment, - ACTIONS(10040), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(959), 5, + STATE(5558), 1, + sym_cell_path, + ACTIONS(1059), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1057), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(961), 24, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -474712,154 +435203,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [143298] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5317), 1, - sym_comment, - ACTIONS(2437), 13, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(2439), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [143345] = 4, - ACTIONS(3), 1, + [144486] = 8, + ACTIONS(113), 1, anon_sym_POUND, - STATE(5318), 1, - sym_comment, - ACTIONS(2547), 13, - anon_sym_DOLLAR, + ACTIONS(1078), 1, anon_sym_DASH, - anon_sym_DOT_DOT, + ACTIONS(9522), 1, anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(2549), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [143392] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5319), 1, + STATE(4919), 1, sym_comment, - ACTIONS(3505), 13, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(3507), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [143439] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(10046), 1, - anon_sym_DOT, - STATE(5749), 1, - sym_path, - ACTIONS(1001), 2, + ACTIONS(1074), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(5320), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(999), 31, + ACTIONS(9524), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1072), 3, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_GT, anon_sym_DASH_DASH, - anon_sym_DASH, + ACTIONS(1076), 27, + anon_sym_GT, anon_sym_in, anon_sym_STAR, anon_sym_STAR_STAR, @@ -474886,15 +435250,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [143490] = 4, + [144541] = 21, ACTIONS(113), 1, anon_sym_POUND, - STATE(5321), 1, + ACTIONS(9472), 1, + anon_sym_DOT, + ACTIONS(9561), 1, + anon_sym_QMARK2, + ACTIONS(9569), 1, + anon_sym_bit_DASHand, + ACTIONS(9571), 1, + anon_sym_bit_DASHxor, + ACTIONS(9573), 1, + anon_sym_bit_DASHor, + ACTIONS(9575), 1, + anon_sym_and, + ACTIONS(9577), 1, + anon_sym_xor, + ACTIONS(9579), 1, + anon_sym_or, + STATE(4920), 1, + sym_comment, + STATE(5169), 1, + sym_path, + STATE(5925), 1, + sym_cell_path, + ACTIONS(9299), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(9301), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(9555), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9563), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9565), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9567), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9557), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9559), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(9553), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [144622] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(4921), 1, sym_comment, - ACTIONS(1160), 2, + ACTIONS(1247), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1158), 34, + ACTIONS(1245), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -474929,64 +435353,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [143537] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1012), 1, - anon_sym_LF, - ACTIONS(9806), 1, - anon_sym_DOT, - STATE(5322), 1, - sym_comment, - STATE(5343), 1, - sym_path, - STATE(5349), 1, - sym_cell_path, - ACTIONS(1010), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [143590] = 4, + [144669] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5323), 1, + STATE(4922), 1, sym_comment, - ACTIONS(1418), 5, + ACTIONS(1229), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1420), 31, + ACTIONS(1231), 31, + anon_sym_COLON, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -475017,43 +435396,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - [143637] = 10, - ACTIONS(3), 1, + [144716] = 7, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(979), 1, - anon_sym_DOT_DOT2, - ACTIONS(9820), 1, - aux_sym_unquoted_token5, - ACTIONS(9828), 1, + ACTIONS(9484), 1, anon_sym_DOT, - ACTIONS(10042), 1, - sym_filesize_unit, - ACTIONS(10044), 1, - sym_duration_unit, - STATE(5324), 1, + STATE(4897), 1, + sym_cell_path, + STATE(4923), 1, sym_comment, - ACTIONS(983), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(959), 5, + STATE(5013), 1, + sym_path, + ACTIONS(994), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(992), 31, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(961), 24, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -475067,100 +435442,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [143696] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5325), 1, - sym_comment, - ACTIONS(1059), 12, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1061), 24, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK2, - anon_sym_not, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [143743] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5326), 1, - sym_comment, - ACTIONS(1063), 12, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1065), 24, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK2, - anon_sym_not, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [143790] = 4, + [144769] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9905), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(5327), 1, + STATE(4924), 1, sym_comment, - ACTIONS(1243), 35, + ACTIONS(1155), 36, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -475196,64 +435483,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [143837] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(5328), 1, - sym_comment, - ACTIONS(1192), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1190), 34, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [143884] = 7, + aux_sym_unquoted_token6, + [144814] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9941), 1, + ACTIONS(9520), 1, anon_sym_DOT, - STATE(5301), 1, + STATE(4862), 1, sym_path, - STATE(5329), 1, + STATE(4925), 1, sym_comment, - STATE(6015), 1, + STATE(5575), 1, sym_cell_path, - ACTIONS(1150), 2, + ACTIONS(1053), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1148), 31, + ACTIONS(1051), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -475285,39 +435530,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [143937] = 7, - ACTIONS(113), 1, + [144867] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9927), 1, - anon_sym_DOT, - STATE(5260), 1, - sym_path, - STATE(5330), 1, + STATE(4926), 1, sym_comment, - STATE(6001), 1, - sym_cell_path, - ACTIONS(1181), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(1179), 31, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, + ACTIONS(1139), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1209), 31, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -475331,61 +435572,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [143990] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10049), 1, - anon_sym_DOT_DOT2, - STATE(5331), 1, - sym_comment, - ACTIONS(1934), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(10051), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3518), 10, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3520), 21, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [144043] = 4, + anon_sym_LPAREN2, + [144914] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5332), 1, + STATE(4927), 1, sym_comment, - ACTIONS(1300), 2, + ACTIONS(3723), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1298), 34, + ACTIONS(3721), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -475420,23 +435616,27 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [144090] = 4, + [144961] = 7, ACTIONS(113), 1, anon_sym_POUND, - STATE(5333), 1, + ACTIONS(1012), 1, + anon_sym_LF, + ACTIONS(9297), 1, + anon_sym_DOT, + STATE(4908), 1, + aux_sym_cell_path_repeat1, + STATE(4928), 1, sym_comment, - ACTIONS(1174), 4, - ts_builtin_sym_end, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - ACTIONS(1172), 32, + STATE(5270), 1, + sym_path, + ACTIONS(1010), 32, anon_sym_SEMI, - anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -475462,103 +435662,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - [144137] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5334), 1, - sym_comment, - ACTIONS(10053), 36, - anon_sym_COMMA, - 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, - [144182] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10055), 1, - anon_sym_DOT, - ACTIONS(10057), 1, - aux_sym__immediate_decimal_token2, - STATE(5335), 1, - sym_comment, - ACTIONS(2581), 11, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2583), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [144233] = 4, + [145014] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5336), 1, + STATE(4929), 1, sym_comment, - ACTIONS(5209), 2, + ACTIONS(1263), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(5207), 34, + ACTIONS(1261), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -475593,78 +435705,39 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [144280] = 4, + [145061] = 7, ACTIONS(113), 1, anon_sym_POUND, - STATE(5337), 1, - sym_comment, - ACTIONS(1318), 2, - ts_builtin_sym_end, + ACTIONS(1053), 1, anon_sym_LF, - ACTIONS(1316), 34, + ACTIONS(9297), 1, + anon_sym_DOT, + STATE(4928), 1, + sym_path, + STATE(4930), 1, + sym_comment, + STATE(5831), 1, + sym_cell_path, + ACTIONS(1051), 32, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [144327] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5338), 1, - sym_comment, - ACTIONS(936), 5, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(938), 31, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -475678,40 +435751,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - [144374] = 7, - ACTIONS(3), 1, + [145114] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10059), 1, - anon_sym_DOT_DOT2, - STATE(5339), 1, + STATE(4931), 1, sym_comment, - ACTIONS(2851), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(10061), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2843), 10, + ACTIONS(2231), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2229), 34, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_not, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2845), 21, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -475719,30 +435785,33 @@ 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, - [144427] = 7, + [145161] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9927), 1, - anon_sym_DOT, - STATE(5260), 1, - sym_path, - STATE(5340), 1, + ACTIONS(9581), 1, + anon_sym_DOT_DOT2, + STATE(4932), 1, sym_comment, - STATE(6172), 1, - sym_cell_path, - ACTIONS(1156), 2, + ACTIONS(1074), 2, ts_builtin_sym_end, aux_sym_command_token1, - ACTIONS(1154), 31, + ACTIONS(9583), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1072), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_PIPE, + ACTIONS(1076), 28, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -475771,15 +435840,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [144480] = 4, + [145214] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5341), 1, + STATE(4933), 1, sym_comment, - ACTIONS(5213), 2, + ACTIONS(1074), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(5211), 34, + ACTIONS(1072), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -475814,84 +435883,39 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [144527] = 6, - ACTIONS(113), 1, + [145261] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1160), 1, - anon_sym_LF, - ACTIONS(1472), 1, - anon_sym_DOT_DOT2, - STATE(5342), 1, + ACTIONS(9067), 1, + anon_sym_DOT, + STATE(4486), 1, + sym_path, + STATE(4934), 1, sym_comment, - ACTIONS(1474), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1158), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + STATE(4994), 1, + sym_cell_path, + ACTIONS(1085), 5, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [144578] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(989), 1, - anon_sym_LF, - ACTIONS(9806), 1, - anon_sym_DOT, - STATE(5343), 1, - sym_comment, - STATE(5417), 1, - aux_sym_cell_path_repeat1, - STATE(5811), 1, - sym_path, - ACTIONS(987), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(1087), 28, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -475905,25 +435929,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [144631] = 4, + [145314] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(5344), 1, + ACTIONS(9581), 1, + anon_sym_DOT_DOT2, + STATE(4935), 1, sym_comment, - ACTIONS(1061), 2, - anon_sym_LF, - anon_sym_DOT, - ACTIONS(1059), 34, + ACTIONS(1091), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(9583), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1089), 31, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LF, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -475948,249 +435974,240 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [144678] = 4, + [145365] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5345), 1, + STATE(4936), 1, sym_comment, - ACTIONS(1065), 2, + ACTIONS(2364), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT, - ACTIONS(1063), 34, + ACTIONS(2362), 34, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [144725] = 4, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [145412] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5346), 1, + STATE(4937), 1, sym_comment, - ACTIONS(1061), 2, - anon_sym_DOT, - aux_sym_command_token1, - ACTIONS(1059), 34, - anon_sym_SEMI, + ACTIONS(5815), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_RPAREN, + ACTIONS(5818), 34, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [144772] = 7, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [145459] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9941), 1, - anon_sym_DOT, - STATE(5301), 1, - sym_path, - STATE(5347), 1, + STATE(4938), 1, sym_comment, - STATE(6019), 1, - sym_cell_path, - ACTIONS(1181), 2, + ACTIONS(2404), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1179), 31, + ACTIONS(2402), 34, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [144825] = 7, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [145506] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1150), 1, - anon_sym_LF, - ACTIONS(9806), 1, - anon_sym_DOT, - STATE(5343), 1, - sym_path, - STATE(5348), 1, + STATE(4939), 1, sym_comment, - STATE(6033), 1, - sym_cell_path, - ACTIONS(1148), 32, + ACTIONS(5111), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5109), 34, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [144878] = 4, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [145553] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5349), 1, + STATE(4940), 1, sym_comment, - ACTIONS(1170), 3, + ACTIONS(3743), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1168), 33, + ACTIONS(3741), 34, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - [144925] = 7, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [145600] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9927), 1, - anon_sym_DOT, - STATE(5260), 1, - sym_path, - STATE(5350), 1, + STATE(4941), 1, sym_comment, - STATE(6046), 1, - sym_cell_path, - ACTIONS(1205), 2, - ts_builtin_sym_end, + ACTIONS(1022), 2, + anon_sym_DOT, aux_sym_command_token1, - ACTIONS(1203), 31, + ACTIONS(1020), 34, anon_sym_SEMI, anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -476215,25 +436232,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [144978] = 4, + [145647] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(5351), 1, + ACTIONS(9067), 1, + anon_sym_DOT, + STATE(4486), 1, + sym_path, + STATE(4942), 1, sym_comment, - ACTIONS(909), 9, + STATE(5544), 1, + sym_cell_path, + ACTIONS(1057), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token5, - ACTIONS(911), 27, + ACTIONS(1059), 28, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -476255,18 +436278,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [145025] = 4, + [145700] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5352), 1, + STATE(4943), 1, sym_comment, - ACTIONS(961), 2, + ACTIONS(3759), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(959), 34, + ACTIONS(3757), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -476301,58 +436321,58 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [145072] = 4, + [145747] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5353), 1, + STATE(4944), 1, sym_comment, - ACTIONS(1061), 2, + ACTIONS(5115), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT, - ACTIONS(1059), 34, + ACTIONS(5113), 34, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [145119] = 4, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [145794] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5354), 1, + STATE(4945), 1, sym_comment, - ACTIONS(1412), 2, + ACTIONS(5139), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1410), 34, + ACTIONS(5137), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -476387,64 +436407,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [145166] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1045), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(1593), 1, - anon_sym_DOT, - ACTIONS(1609), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(1611), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8570), 1, - aux_sym_unquoted_token4, - STATE(5355), 1, - sym_comment, - STATE(10460), 1, - sym__immediate_decimal, - ACTIONS(936), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(938), 18, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [145225] = 4, + [145841] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5356), 1, + STATE(4946), 1, sym_comment, - ACTIONS(3951), 2, + ACTIONS(4198), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3949), 34, + ACTIONS(4196), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -476479,69 +436450,63 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [145272] = 10, - ACTIONS(3), 1, + [145888] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1584), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9818), 1, - anon_sym_DOT, - ACTIONS(9820), 1, - aux_sym_unquoted_token3, - ACTIONS(9822), 1, - aux_sym_unquoted_token5, - STATE(5357), 1, + STATE(4947), 1, sym_comment, - STATE(9346), 1, - sym__immediate_decimal, - ACTIONS(1582), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - ACTIONS(936), 6, - anon_sym_GT, + ACTIONS(1227), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1225), 34, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(938), 23, - anon_sym_in, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [145331] = 7, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [145935] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1188), 1, + ACTIONS(1004), 1, anon_sym_LF, - ACTIONS(9806), 1, + ACTIONS(9297), 1, anon_sym_DOT, - STATE(5343), 1, + STATE(4928), 1, sym_path, - STATE(5358), 1, + STATE(4948), 1, sym_comment, - STATE(6108), 1, + STATE(5047), 1, sym_cell_path, - ACTIONS(1186), 32, + ACTIONS(1002), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -476574,108 +436539,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [145384] = 9, - ACTIONS(3), 1, + [145988] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1593), 1, - anon_sym_DOT, - ACTIONS(1611), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9820), 1, - aux_sym_unquoted_token4, - STATE(5359), 1, + STATE(4949), 1, sym_comment, - STATE(10460), 1, - sym__immediate_decimal, - ACTIONS(1609), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - ACTIONS(936), 6, - anon_sym_GT, + ACTIONS(3693), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3691), 34, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(938), 24, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [146035] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(4950), 1, + sym_comment, + ACTIONS(3701), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3699), 34, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_in, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [145441] = 4, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [146082] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(5360), 1, + ACTIONS(9585), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9587), 1, + aux_sym__immediate_decimal_token2, + STATE(4951), 1, sym_comment, - ACTIONS(1059), 8, - anon_sym_GT, + ACTIONS(2229), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT2, + anon_sym_DOT_DOT, anon_sym_DOT, - ACTIONS(1061), 28, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + ACTIONS(2231), 23, + anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [145488] = 4, + anon_sym_not, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [146133] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5361), 1, + STATE(4952), 1, sym_comment, - ACTIONS(1111), 4, + ACTIONS(1039), 4, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1109), 32, + ACTIONS(1037), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -476708,27 +436713,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT2, anon_sym_DOT, - [145535] = 7, + [146180] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9941), 1, - anon_sym_DOT, - STATE(5301), 1, - sym_path, - STATE(5362), 1, + STATE(4953), 1, sym_comment, - STATE(6085), 1, - sym_cell_path, - ACTIONS(1205), 2, + ACTIONS(3713), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1203), 31, + ACTIONS(3711), 34, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [146227] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(922), 1, + anon_sym_LF, + ACTIONS(9589), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9591), 1, + aux_sym_unquoted_token2, + STATE(4954), 1, + sym_comment, + ACTIONS(920), 33, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -476754,19 +436801,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [145588] = 4, + [146278] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5363), 1, + STATE(4955), 1, sym_comment, - ACTIONS(1065), 2, - anon_sym_DOT, - aux_sym_command_token1, - ACTIONS(1063), 34, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1035), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1033), 33, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -476797,18 +436842,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [145635] = 7, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [146325] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9975), 1, + ACTIONS(9528), 1, anon_sym_DOT, - STATE(5242), 1, - sym_cell_path, - STATE(5268), 1, - sym_path, - STATE(5364), 1, + STATE(4956), 1, sym_comment, - ACTIONS(997), 13, + STATE(5003), 1, + sym_path, + STATE(5560), 1, + sym_cell_path, + ACTIONS(1103), 13, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -476822,7 +436869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(995), 20, + ACTIONS(1101), 20, sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, @@ -476843,15 +436890,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [145688] = 4, + [146378] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5365), 1, + STATE(4957), 1, sym_comment, - ACTIONS(3966), 2, + ACTIONS(4957), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3964), 34, + ACTIONS(4955), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -476886,15 +436933,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [145735] = 4, + [146425] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5366), 1, + STATE(4958), 1, sym_comment, - ACTIONS(1304), 2, + ACTIONS(4961), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1302), 34, + ACTIONS(4959), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -476929,106 +436976,61 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [145782] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5367), 1, - sym_comment, - ACTIONS(1063), 8, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1065), 28, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [145829] = 4, - ACTIONS(3), 1, + [146472] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(5368), 1, + STATE(4959), 1, sym_comment, - ACTIONS(1316), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1318), 31, + ACTIONS(4965), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4963), 34, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [145876] = 5, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [146519] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10063), 1, - anon_sym_QMARK2, - STATE(5369), 1, + STATE(4960), 1, sym_comment, - ACTIONS(1072), 2, - anon_sym_DOT, - aux_sym_command_token1, - ACTIONS(1070), 33, - anon_sym_SEMI, + ACTIONS(1043), 4, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_RPAREN, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1041), 32, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, @@ -477058,37 +437060,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LF2, - [145925] = 5, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [146566] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10063), 1, - anon_sym_QMARK2, - STATE(5370), 1, + STATE(4961), 1, sym_comment, - ACTIONS(1072), 2, - anon_sym_DOT, - aux_sym_command_token1, - ACTIONS(1070), 33, + ACTIONS(1267), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1265), 34, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [146613] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(4962), 1, + sym_comment, + ACTIONS(5215), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5213), 34, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [146660] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(4963), 1, + sym_comment, + ACTIONS(5219), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5217), 34, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [146707] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(4964), 1, + sym_comment, + ACTIONS(1267), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_RPAREN, + ACTIONS(1265), 34, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [146754] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1381), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9209), 1, + aux_sym_unquoted_token3, + ACTIONS(9247), 1, + anon_sym_DOT, + ACTIONS(9249), 1, + aux_sym_unquoted_token5, + STATE(4965), 1, + sym_comment, + STATE(8796), 1, + sym__immediate_decimal, + ACTIONS(1379), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + ACTIONS(920), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(922), 23, + anon_sym_in, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -477102,60 +437283,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LF2, - [145974] = 5, + [146813] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1284), 1, - aux_sym_unquoted_token6, - STATE(5371), 1, + STATE(4966), 1, sym_comment, - ACTIONS(1160), 2, - anon_sym_RBRACK, - anon_sym_RPAREN, - ACTIONS(1158), 33, - sym_identifier, - anon_sym_COMMA, + ACTIONS(4999), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4997), 34, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [146023] = 4, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [146860] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(4967), 1, + sym_comment, + ACTIONS(5003), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5001), 34, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [146907] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5372), 1, + STATE(4968), 1, sym_comment, - ACTIONS(1344), 2, + ACTIONS(5007), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1342), 34, + ACTIONS(5005), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -477190,15 +437412,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [146070] = 4, + [146954] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5373), 1, + STATE(4969), 1, sym_comment, - ACTIONS(1348), 2, + ACTIONS(5021), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1346), 34, + ACTIONS(5019), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -477233,15 +437455,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [146117] = 4, + [147001] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5374), 1, + STATE(4970), 1, sym_comment, - ACTIONS(1364), 2, + ACTIONS(5025), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1362), 34, + ACTIONS(5023), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -477276,15 +437498,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [146164] = 4, + [147048] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5375), 1, + STATE(4971), 1, sym_comment, - ACTIONS(1408), 2, + ACTIONS(5029), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1406), 34, + ACTIONS(5027), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -477319,15 +437541,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [146211] = 4, + [147095] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5376), 1, + STATE(4972), 1, sym_comment, - ACTIONS(1296), 2, + ACTIONS(5033), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1294), 34, + ACTIONS(5031), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -477362,15 +437584,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [146258] = 4, + [147142] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5377), 1, + STATE(4973), 1, sym_comment, - ACTIONS(1296), 2, + ACTIONS(922), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1294), 34, + ACTIONS(920), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -477405,33 +437627,26 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [146305] = 10, + [147189] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9818), 1, - anon_sym_DOT, - ACTIONS(9820), 1, - aux_sym_unquoted_token3, - ACTIONS(9822), 1, - aux_sym_unquoted_token5, - STATE(5378), 1, + STATE(4974), 1, sym_comment, - STATE(9346), 1, - sym__immediate_decimal, - ACTIONS(1582), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - ACTIONS(936), 6, + ACTIONS(1047), 5, anon_sym_GT, - anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(938), 23, + ACTIONS(1049), 31, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -477454,61 +437669,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [146364] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(5379), 1, - sym_comment, - ACTIONS(938), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(936), 34, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [146411] = 7, + anon_sym_DOT, + [147236] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9975), 1, + ACTIONS(9528), 1, anon_sym_DOT, - STATE(5268), 1, - sym_path, - STATE(5380), 1, + STATE(4975), 1, sym_comment, - STATE(6093), 1, + STATE(5003), 1, + sym_path, + STATE(5548), 1, sym_cell_path, - ACTIONS(1156), 13, + ACTIONS(1087), 13, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -477522,7 +437695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1154), 20, + ACTIONS(1085), 20, sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, @@ -477543,17 +437716,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [146464] = 6, + [147289] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10010), 1, + ACTIONS(9593), 1, anon_sym_DOT_DOT2, - STATE(5381), 1, + STATE(4976), 1, sym_comment, - ACTIONS(10012), 2, + ACTIONS(9595), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1160), 13, + ACTIONS(1091), 13, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -477567,7 +437740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1158), 20, + ACTIONS(1089), 20, sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, @@ -477588,18 +437761,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [146515] = 4, + [147340] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5382), 1, + STATE(4977), 1, sym_comment, - ACTIONS(1109), 5, + ACTIONS(920), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1111), 31, + ACTIONS(922), 31, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -477630,28 +437803,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT, - [146562] = 7, + anon_sym_LPAREN2, + [147387] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9927), 1, + ACTIONS(1087), 1, + anon_sym_LF, + ACTIONS(9297), 1, anon_sym_DOT, - STATE(5260), 1, + STATE(4928), 1, sym_path, - STATE(5333), 1, - sym_cell_path, - STATE(5383), 1, + STATE(4978), 1, sym_comment, - ACTIONS(997), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(995), 31, + STATE(5655), 1, + sym_cell_path, + ACTIONS(1085), 32, anon_sym_SEMI, - anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -477677,28 +437850,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [146615] = 7, + [147440] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9941), 1, - anon_sym_DOT, - STATE(5301), 1, - sym_path, - STATE(5384), 1, + STATE(4979), 1, sym_comment, - STATE(6138), 1, - sym_cell_path, - ACTIONS(1188), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1186), 31, + ACTIONS(1035), 2, + anon_sym_DOT, + aux_sym_command_token1, + ACTIONS(1033), 34, anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -477723,109 +437892,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [146668] = 4, + anon_sym_LF2, + [147487] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5385), 1, + STATE(4980), 1, sym_comment, - ACTIONS(1310), 2, + ACTIONS(1063), 4, ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1308), 34, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_command_token1, + ACTIONS(1061), 32, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [146715] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(5386), 1, - sym_comment, - ACTIONS(1314), 2, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1312), 34, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [146762] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(10065), 1, - anon_sym_QMARK2, - STATE(5387), 1, - sym_comment, - ACTIONS(1072), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1070), 32, - anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -477852,16 +437936,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - anon_sym_DOT, - [146811] = 4, + [147534] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5388), 1, + STATE(4981), 1, sym_comment, - ACTIONS(1290), 2, + ACTIONS(9259), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1243), 34, + ACTIONS(9257), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -477896,104 +437979,150 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [146858] = 7, + [147581] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9975), 1, + ACTIONS(961), 1, + anon_sym_DOT_DOT2, + ACTIONS(9203), 1, anon_sym_DOT, - STATE(5268), 1, - sym_path, - STATE(5389), 1, + ACTIONS(9209), 1, + aux_sym_unquoted_token5, + ACTIONS(9509), 1, + sym_filesize_unit, + ACTIONS(9511), 1, + sym_duration_unit, + STATE(4982), 1, sym_comment, - STATE(6122), 1, - sym_cell_path, - ACTIONS(1192), 13, - anon_sym_DASH_DASH, + ACTIONS(965), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(938), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(940), 24, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1190), 20, - sym_cmd_identifier, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [147640] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9597), 1, + anon_sym_COMMA, + STATE(4983), 1, + sym_comment, + ACTIONS(9599), 35, + anon_sym_RBRACK, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + [147687] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(4984), 1, + sym_comment, + ACTIONS(940), 2, + anon_sym_LF, + anon_sym_DOT, + ACTIONS(938), 34, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [146911] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(5390), 1, - sym_comment, - ACTIONS(1188), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1186), 34, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [146958] = 4, + [147734] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5391), 1, + STATE(4985), 1, sym_comment, - ACTIONS(4002), 2, + ACTIONS(1273), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4000), 34, + ACTIONS(1271), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -478028,15 +438157,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [147005] = 4, + [147781] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5392), 1, + STATE(4986), 1, sym_comment, - ACTIONS(4045), 2, + ACTIONS(1277), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4043), 34, + ACTIONS(1275), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -478071,15 +438200,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [147052] = 4, + [147828] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5393), 1, + STATE(4987), 1, sym_comment, - ACTIONS(1334), 2, + ACTIONS(9263), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1332), 34, + ACTIONS(9261), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -478114,72 +438243,24 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [147099] = 4, + [147875] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5394), 1, + STATE(4988), 1, sym_comment, - ACTIONS(1338), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1336), 34, + ACTIONS(1022), 2, + anon_sym_DOT, + aux_sym_command_token1, + ACTIONS(1020), 34, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [147146] = 8, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1196), 1, anon_sym_LF, - ACTIONS(1472), 1, - anon_sym_DOT_DOT2, - ACTIONS(8846), 1, - anon_sym_COLON, - STATE(5395), 1, - sym_comment, - ACTIONS(1474), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1194), 3, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(1198), 28, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -478204,38 +438285,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [147201] = 6, - ACTIONS(113), 1, + anon_sym_LF2, + [147922] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(938), 1, - aux_sym_command_token1, - ACTIONS(10067), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10069), 1, - aux_sym_unquoted_token2, - STATE(5396), 1, + ACTIONS(9067), 1, + anon_sym_DOT, + STATE(4387), 1, + sym_cell_path, + STATE(4486), 1, + sym_path, + STATE(4989), 1, sym_comment, - ACTIONS(936), 33, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(992), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(994), 28, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -478249,36 +438332,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [147252] = 4, - ACTIONS(3), 1, + [147975] = 5, + ACTIONS(113), 1, anon_sym_POUND, - STATE(5397), 1, + ACTIONS(9601), 1, + anon_sym_QMARK2, + STATE(4990), 1, sym_comment, - ACTIONS(1190), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1192), 31, + ACTIONS(1026), 2, + anon_sym_LF, + anon_sym_DOT, + ACTIONS(1024), 33, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOLLAR, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -478292,39 +438376,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [147299] = 7, - ACTIONS(3), 1, + [148024] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9554), 1, - anon_sym_DOT, - STATE(4905), 1, - sym_path, - STATE(5368), 1, - sym_cell_path, - STATE(5398), 1, + ACTIONS(9331), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(4991), 1, sym_comment, - ACTIONS(1190), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1192), 28, + ACTIONS(1139), 35, + sym_identifier, + anon_sym_COLON, anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -478338,75 +438419,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [147352] = 21, + [148071] = 20, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10079), 1, - anon_sym_QMARK2, - ACTIONS(10087), 1, + ACTIONS(9297), 1, + anon_sym_DOT, + ACTIONS(9605), 1, + anon_sym_LF, + ACTIONS(9621), 1, anon_sym_bit_DASHand, - ACTIONS(10089), 1, + ACTIONS(9623), 1, anon_sym_bit_DASHxor, - ACTIONS(10091), 1, + ACTIONS(9625), 1, anon_sym_bit_DASHor, - ACTIONS(10093), 1, + ACTIONS(9627), 1, anon_sym_and, - ACTIONS(10095), 1, + ACTIONS(9629), 1, anon_sym_xor, - ACTIONS(10097), 1, + ACTIONS(9631), 1, anon_sym_or, - ACTIONS(10099), 1, - anon_sym_DOT, - STATE(5399), 1, - sym_comment, - STATE(5630), 1, + STATE(4928), 1, sym_path, - STATE(6327), 1, + STATE(4992), 1, + sym_comment, + STATE(5716), 1, sym_cell_path, - ACTIONS(9774), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(9776), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(10073), 2, + ACTIONS(9609), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10081), 2, + ACTIONS(9615), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10083), 2, + ACTIONS(9617), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10085), 2, + ACTIONS(9619), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10075), 4, + ACTIONS(9603), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(9611), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(10077), 4, + ACTIONS(9613), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10071), 6, + ACTIONS(9607), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [147433] = 4, + [148150] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5400), 1, + STATE(4993), 1, sym_comment, - ACTIONS(5079), 2, + ACTIONS(1035), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(5075), 34, + ACTIONS(1033), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -478441,84 +438521,117 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [147480] = 21, - ACTIONS(113), 1, + [148197] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10099), 1, - anon_sym_DOT, - ACTIONS(10109), 1, - anon_sym_QMARK2, - ACTIONS(10117), 1, - anon_sym_bit_DASHand, - ACTIONS(10119), 1, - anon_sym_bit_DASHxor, - ACTIONS(10121), 1, - anon_sym_bit_DASHor, - ACTIONS(10123), 1, - anon_sym_and, - ACTIONS(10125), 1, - anon_sym_xor, - ACTIONS(10127), 1, - anon_sym_or, - STATE(5401), 1, + STATE(4994), 1, sym_comment, - STATE(5630), 1, - sym_path, - STATE(6358), 1, - sym_cell_path, - ACTIONS(9859), 2, + ACTIONS(1093), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1095), 31, anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(9861), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(10103), 2, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10111), 2, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10113), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10115), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10105), 4, - anon_sym_in, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(10107), 4, + 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, + [148244] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9067), 1, + anon_sym_DOT, + STATE(4486), 1, + sym_path, + STATE(4995), 1, + sym_comment, + STATE(5034), 1, + sym_cell_path, + ACTIONS(1093), 5, + anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1095), 28, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10101), 6, - anon_sym_GT, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [147561] = 4, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [148297] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(5402), 1, + ACTIONS(9067), 1, + anon_sym_DOT, + STATE(4486), 1, + sym_path, + STATE(4996), 1, sym_comment, - ACTIONS(1113), 5, + STATE(5686), 1, + sym_cell_path, + ACTIONS(1051), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1115), 31, + ACTIONS(1053), 28, anon_sym_COMMA, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, @@ -478543,16 +438656,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT, - [147608] = 4, + [148350] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5403), 1, + STATE(4997), 1, sym_comment, - ACTIONS(1416), 2, + ACTIONS(1209), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1414), 34, + ACTIONS(1139), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -478587,91 +438699,307 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [147655] = 19, + [148397] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1472), 1, - anon_sym_DOT_DOT2, - ACTIONS(9861), 1, - anon_sym_LF, - ACTIONS(9879), 1, + STATE(4998), 1, + sym_comment, + ACTIONS(1022), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1020), 33, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(9881), 1, anon_sym_bit_DASHxor, - ACTIONS(9883), 1, anon_sym_bit_DASHor, - ACTIONS(9885), 1, anon_sym_and, - ACTIONS(9887), 1, anon_sym_xor, - ACTIONS(9889), 1, anon_sym_or, - STATE(5404), 1, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [148444] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9528), 1, + anon_sym_DOT, + STATE(4895), 1, + sym_cell_path, + STATE(4999), 1, sym_comment, - ACTIONS(1474), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(9865), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9873), 2, + STATE(5003), 1, + sym_path, + ACTIONS(1004), 13, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9875), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9877), 2, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(9859), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(9867), 4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1002), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(9869), 4, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [148497] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(9601), 1, + anon_sym_QMARK2, + STATE(5000), 1, + sym_comment, + ACTIONS(1026), 2, + anon_sym_LF, + anon_sym_DOT, + ACTIONS(1024), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(9863), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [147732] = 4, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [148546] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5405), 1, + STATE(5001), 1, sym_comment, - ACTIONS(1352), 2, + ACTIONS(1070), 4, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1350), 34, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1068), 32, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + [148593] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9528), 1, + anon_sym_DOT, + STATE(5002), 1, + sym_comment, + STATE(5003), 1, + sym_path, + STATE(5561), 1, + sym_cell_path, + ACTIONS(1095), 13, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1093), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [148646] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9528), 1, + anon_sym_DOT, + STATE(5003), 1, + sym_comment, + STATE(5007), 1, + aux_sym_cell_path_repeat1, + STATE(5354), 1, + sym_path, + ACTIONS(1012), 13, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1010), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [148699] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9633), 1, + anon_sym_DOT_DOT2, + STATE(5004), 1, + sym_comment, + ACTIONS(1844), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(9635), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3312), 10, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_not, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3314), 21, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -478679,24 +439007,159 @@ 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, - [147779] = 4, + [148752] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1074), 1, + anon_sym_LF, + ACTIONS(1302), 1, + anon_sym_DOT_DOT2, + STATE(5005), 1, + sym_comment, + ACTIONS(1304), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1072), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(1076), 28, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [148805] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(9484), 1, + anon_sym_DOT, + STATE(4980), 1, + sym_cell_path, + STATE(5006), 1, + sym_comment, + STATE(5013), 1, + sym_path, + ACTIONS(1004), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(1002), 31, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [148858] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9528), 1, + anon_sym_DOT, + STATE(5007), 1, + sym_comment, + STATE(5009), 1, + aux_sym_cell_path_repeat1, + STATE(5354), 1, + sym_path, + ACTIONS(1008), 13, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1006), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [148911] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5406), 1, + STATE(5008), 1, sym_comment, - ACTIONS(3962), 2, + ACTIONS(1053), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3960), 34, + ACTIONS(1051), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -478731,17 +439194,32 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [147826] = 6, + [148958] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10129), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10131), 1, - aux_sym_unquoted_token2, - STATE(5407), 1, + ACTIONS(9637), 1, + anon_sym_DOT, + STATE(5354), 1, + sym_path, + STATE(5009), 2, sym_comment, - ACTIONS(936), 12, - sym_identifier, + aux_sym_cell_path_repeat1, + ACTIONS(987), 13, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(985), 20, + sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -478749,23 +439227,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_mod, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(938), 22, - anon_sym_COMMA, + [149009] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(987), 1, + anon_sym_LF, + ACTIONS(9640), 1, + anon_sym_DOT, + STATE(5270), 1, + sym_path, + STATE(5010), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(985), 32, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -478776,35 +439281,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [147877] = 4, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [149060] = 5, + ACTIONS(113), 1, anon_sym_POUND, - STATE(5408), 1, + ACTIONS(9643), 1, + anon_sym_QMARK2, + STATE(5011), 1, sym_comment, - ACTIONS(1117), 5, + ACTIONS(1026), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1024), 32, + anon_sym_RBRACK, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1119), 31, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -478818,16 +439326,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_DOT_DOT2, anon_sym_DOT, - [147924] = 4, + [149109] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5409), 1, + STATE(5012), 1, sym_comment, - ACTIONS(1420), 2, + ACTIONS(1022), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1418), 34, + ACTIONS(1020), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -478862,23 +439371,27 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [147971] = 5, + [149156] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10065), 1, - anon_sym_QMARK2, - STATE(5410), 1, + ACTIONS(9484), 1, + anon_sym_DOT, + STATE(5013), 1, sym_comment, - ACTIONS(1072), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1070), 32, - anon_sym_RBRACK, + STATE(5035), 1, + aux_sym_cell_path_repeat1, + STATE(5495), 1, + sym_path, + ACTIONS(1012), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(1010), 31, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -478904,42 +439417,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [148020] = 5, - ACTIONS(3), 1, + [149209] = 7, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8570), 1, - aux_sym_unquoted_token5, - STATE(5411), 1, + ACTIONS(9520), 1, + anon_sym_DOT, + STATE(4862), 1, + sym_path, + STATE(5001), 1, + sym_cell_path, + STATE(5014), 1, sym_comment, - ACTIONS(959), 12, - sym_identifier, + ACTIONS(994), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(992), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(961), 23, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -478950,41 +439460,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [148069] = 9, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [149262] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1593), 1, - anon_sym_DOT, - ACTIONS(1611), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9820), 1, - aux_sym_unquoted_token4, - STATE(5412), 1, + ACTIONS(9643), 1, + anon_sym_QMARK2, + STATE(5015), 1, sym_comment, - STATE(10460), 1, - sym__immediate_decimal, - ACTIONS(1609), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - ACTIONS(936), 6, + ACTIONS(1026), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1024), 32, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(938), 24, - anon_sym_COMMA, anon_sym_in, anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -478998,23 +439505,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [148126] = 6, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [149311] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(938), 1, + ACTIONS(994), 1, anon_sym_LF, - ACTIONS(10133), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10135), 1, - aux_sym_unquoted_token2, - STATE(5413), 1, + ACTIONS(9297), 1, + anon_sym_DOT, + STATE(4628), 1, + sym_cell_path, + STATE(4928), 1, + sym_path, + STATE(5016), 1, sym_comment, - ACTIONS(936), 33, + ACTIONS(992), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -479043,105 +439553,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [148177] = 4, - ACTIONS(3), 1, + [149364] = 19, + ACTIONS(113), 1, anon_sym_POUND, - STATE(5414), 1, + ACTIONS(1302), 1, + anon_sym_DOT_DOT2, + ACTIONS(9301), 1, + anon_sym_LF, + ACTIONS(9319), 1, + anon_sym_bit_DASHand, + ACTIONS(9321), 1, + anon_sym_bit_DASHxor, + ACTIONS(9323), 1, + anon_sym_bit_DASHor, + ACTIONS(9325), 1, + anon_sym_and, + ACTIONS(9327), 1, + anon_sym_xor, + ACTIONS(9329), 1, + anon_sym_or, + STATE(5017), 1, sym_comment, - ACTIONS(959), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(961), 31, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, + ACTIONS(1304), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(9305), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_PLUS, + ACTIONS(9313), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(9315), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(9317), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9299), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(9307), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [148224] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10137), 1, - anon_sym_LBRACK2, - STATE(5415), 1, - sym_comment, - ACTIONS(1259), 5, - anon_sym_GT, + ACTIONS(9309), 4, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1261), 30, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(9303), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [148273] = 7, + [149441] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9975), 1, + ACTIONS(9528), 1, anon_sym_DOT, - STATE(5268), 1, + STATE(5003), 1, sym_path, - STATE(5416), 1, + STATE(5018), 1, sym_comment, - STATE(6217), 1, + STATE(5833), 1, sym_cell_path, - ACTIONS(1205), 13, + ACTIONS(1053), 13, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -479155,7 +439636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1203), 20, + ACTIONS(1051), 20, sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, @@ -479176,27 +439657,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [148326] = 7, + [149494] = 8, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1008), 1, + ACTIONS(1074), 1, anon_sym_LF, - ACTIONS(9806), 1, - anon_sym_DOT, - STATE(5417), 1, + ACTIONS(1295), 1, + anon_sym_COLON, + ACTIONS(1302), 1, + anon_sym_DOT_DOT2, + STATE(5019), 1, sym_comment, - STATE(5437), 1, - aux_sym_cell_path_repeat1, - STATE(5811), 1, - sym_path, - ACTIONS(1006), 32, + ACTIONS(1304), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1072), 3, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(1076), 28, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -479222,21 +439704,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [148379] = 4, + [149549] = 8, ACTIONS(113), 1, anon_sym_POUND, - STATE(5418), 1, - sym_comment, - ACTIONS(1174), 4, - ts_builtin_sym_end, + ACTIONS(3890), 1, anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1172), 32, + ACTIONS(9297), 1, + anon_sym_DOT, + STATE(4928), 1, + sym_path, + STATE(5020), 1, + sym_comment, + STATE(5713), 1, + sym_cell_path, + ACTIONS(3893), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(1057), 28, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -479264,36 +439751,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - [148426] = 7, + [149604] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9554), 1, - anon_sym_DOT, - STATE(4905), 1, - sym_path, - STATE(5419), 1, + ACTIONS(9653), 1, + anon_sym_SLASH_SLASH, + STATE(5021), 1, sym_comment, - STATE(6261), 1, - sym_cell_path, - ACTIONS(1186), 5, + ACTIONS(9645), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(9647), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9651), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9655), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9649), 3, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1188), 28, + anon_sym_mod, + ACTIONS(9657), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1179), 5, + sym_identifier, + anon_sym_in, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1181), 15, + anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [149665] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9653), 1, + anon_sym_SLASH_SLASH, + STATE(5022), 1, + sym_comment, + ACTIONS(9647), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_PLUS, + ACTIONS(9651), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(9649), 3, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(1179), 7, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1181), 21, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -479308,233 +439848,686 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + [149720] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9653), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9659), 1, + anon_sym_in, + STATE(5023), 1, + sym_comment, + ACTIONS(9645), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(9647), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9651), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9655), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9649), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(9661), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1179), 4, + sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - [148479] = 4, - ACTIONS(113), 1, + ACTIONS(9657), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1181), 12, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [149785] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5420), 1, + ACTIONS(9653), 1, + anon_sym_SLASH_SLASH, + STATE(5024), 1, sym_comment, - ACTIONS(1065), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1063), 33, + ACTIONS(9651), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9649), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(1179), 9, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1181), 21, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [149838] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5025), 1, + sym_comment, + ACTIONS(9651), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1179), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_QMARK2, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1181), 22, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [149887] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9653), 1, + anon_sym_SLASH_SLASH, + STATE(5026), 1, + sym_comment, + ACTIONS(9647), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9651), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(9655), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9649), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, + ACTIONS(1179), 7, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1181), 19, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [149944] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9653), 1, anon_sym_SLASH_SLASH, + ACTIONS(9659), 1, + anon_sym_in, + STATE(5027), 1, + sym_comment, + ACTIONS(9645), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(9647), 2, + anon_sym_DASH, anon_sym_PLUS, + ACTIONS(9651), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9655), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(9663), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9649), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(9661), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1179), 4, + sym_identifier, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(9657), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(1181), 10, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [150011] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9653), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9659), 1, + anon_sym_in, + ACTIONS(9665), 1, + anon_sym_bit_DASHand, + STATE(5028), 1, + sym_comment, + ACTIONS(9645), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(9647), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9651), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9655), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9663), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9649), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(9661), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + ACTIONS(1179), 4, + sym_identifier, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(9657), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1181), 9, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [150080] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9653), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9659), 1, + anon_sym_in, + ACTIONS(9665), 1, + anon_sym_bit_DASHand, + ACTIONS(9667), 1, + anon_sym_bit_DASHxor, + STATE(5029), 1, + sym_comment, + ACTIONS(9645), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(9647), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9651), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9655), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9663), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, + ACTIONS(9649), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(9661), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1179), 4, + sym_identifier, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(9657), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1181), 8, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_bit_DASHor, + [150151] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9653), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9659), 1, + anon_sym_in, + ACTIONS(9665), 1, anon_sym_bit_DASHand, + ACTIONS(9667), 1, anon_sym_bit_DASHxor, + ACTIONS(9669), 1, anon_sym_bit_DASHor, + STATE(5030), 1, + sym_comment, + ACTIONS(9645), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(9647), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9651), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9655), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9663), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9649), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(9661), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1179), 4, + sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [148526] = 4, - ACTIONS(113), 1, + ACTIONS(9657), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1181), 7, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [150224] = 18, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5421), 1, + ACTIONS(9653), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9659), 1, + anon_sym_in, + ACTIONS(9665), 1, + anon_sym_bit_DASHand, + ACTIONS(9667), 1, + anon_sym_bit_DASHxor, + ACTIONS(9669), 1, + anon_sym_bit_DASHor, + ACTIONS(9671), 1, + anon_sym_and, + STATE(5031), 1, sym_comment, - ACTIONS(4018), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4016), 34, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, + ACTIONS(9645), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(9647), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9651), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9655), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9663), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1179), 3, + sym_identifier, + anon_sym_xor, + anon_sym_or, + ACTIONS(9649), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(9661), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9657), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1181), 7, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [148573] = 4, - ACTIONS(113), 1, + [150299] = 19, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5422), 1, + ACTIONS(9653), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9659), 1, + anon_sym_in, + ACTIONS(9665), 1, + anon_sym_bit_DASHand, + ACTIONS(9667), 1, + anon_sym_bit_DASHxor, + ACTIONS(9669), 1, + anon_sym_bit_DASHor, + ACTIONS(9671), 1, + anon_sym_and, + ACTIONS(9673), 1, + anon_sym_xor, + STATE(5032), 1, sym_comment, - ACTIONS(5177), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5175), 34, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, + ACTIONS(1179), 2, + sym_identifier, + anon_sym_or, + ACTIONS(9645), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(9647), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9651), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9655), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9663), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9649), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(9661), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9657), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1181), 7, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + [150376] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1179), 1, + sym_identifier, + ACTIONS(9653), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9659), 1, + anon_sym_in, + ACTIONS(9665), 1, + anon_sym_bit_DASHand, + ACTIONS(9667), 1, + anon_sym_bit_DASHxor, + ACTIONS(9669), 1, + anon_sym_bit_DASHor, + ACTIONS(9671), 1, + anon_sym_and, + ACTIONS(9673), 1, + anon_sym_xor, + ACTIONS(9675), 1, + anon_sym_or, + STATE(5033), 1, + sym_comment, + ACTIONS(9645), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(9647), 2, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [148620] = 4, - ACTIONS(113), 1, + anon_sym_PLUS, + ACTIONS(9651), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9655), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9663), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9649), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(9661), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9657), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1181), 7, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [150455] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5423), 1, + STATE(5034), 1, sym_comment, - ACTIONS(5181), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5179), 34, + ACTIONS(1245), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1247), 31, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_in, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [148667] = 4, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [150502] = 7, ACTIONS(113), 1, anon_sym_POUND, - STATE(5424), 1, + ACTIONS(9484), 1, + anon_sym_DOT, + STATE(5035), 1, sym_comment, - ACTIONS(4293), 2, + STATE(5039), 1, + aux_sym_cell_path_repeat1, + STATE(5495), 1, + sym_path, + ACTIONS(1008), 2, ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4291), 34, + aux_sym_command_token1, + ACTIONS(1006), 31, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_LF, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_GT, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [148714] = 4, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [150555] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5425), 1, + STATE(5036), 1, sym_comment, - ACTIONS(5189), 2, + ACTIONS(1281), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(5187), 34, + ACTIONS(1279), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -479569,101 +440562,61 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [148761] = 4, - ACTIONS(113), 1, + [150602] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5426), 1, + ACTIONS(9528), 1, + anon_sym_DOT, + STATE(4805), 1, + sym_cell_path, + STATE(5003), 1, + sym_path, + STATE(5037), 1, sym_comment, - ACTIONS(5193), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5191), 34, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, + ACTIONS(994), 13, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [148808] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10139), 1, - anon_sym_COMMA, - STATE(5427), 1, - sym_comment, - ACTIONS(10141), 35, - anon_sym_RBRACK, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - [148855] = 4, + ACTIONS(992), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [150655] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5428), 1, + STATE(5038), 1, sym_comment, - ACTIONS(5197), 2, + ACTIONS(1167), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(5195), 34, + ACTIONS(1165), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -479698,23 +440651,24 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [148902] = 5, + [150702] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - STATE(5429), 1, + ACTIONS(9677), 1, + anon_sym_DOT, + STATE(5495), 1, + sym_path, + ACTIONS(987), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + STATE(5039), 2, sym_comment, - ACTIONS(1249), 2, - anon_sym_RBRACK, - anon_sym_RPAREN, - ACTIONS(1247), 33, - sym_identifier, - anon_sym_COMMA, - anon_sym_DOLLAR, + aux_sym_cell_path_repeat1, + ACTIONS(985), 31, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -479742,15 +440696,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [148951] = 4, + [150753] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8013), 1, + aux_sym_unquoted_token5, + STATE(5040), 1, + sym_comment, + ACTIONS(938), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(940), 23, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [150802] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5430), 1, + STATE(5041), 1, sym_comment, - ACTIONS(5201), 2, + ACTIONS(940), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(5199), 34, + ACTIONS(938), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -479785,63 +440783,77 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [148998] = 5, + [150849] = 20, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - STATE(5431), 1, + ACTIONS(9297), 1, + anon_sym_DOT, + ACTIONS(9682), 1, + anon_sym_LF, + ACTIONS(9698), 1, + anon_sym_bit_DASHand, + ACTIONS(9700), 1, + anon_sym_bit_DASHxor, + ACTIONS(9702), 1, + anon_sym_bit_DASHor, + ACTIONS(9704), 1, + anon_sym_and, + ACTIONS(9706), 1, + anon_sym_xor, + ACTIONS(9708), 1, + anon_sym_or, + STATE(4928), 1, + sym_path, + STATE(5042), 1, sym_comment, - ACTIONS(1255), 2, - anon_sym_RBRACK, - anon_sym_RPAREN, - ACTIONS(1253), 33, - sym_identifier, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + STATE(5784), 1, + sym_cell_path, + ACTIONS(9686), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(9692), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(9694), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9696), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9680), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(9688), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9690), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(9684), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [149047] = 5, + [150928] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - STATE(5432), 1, + ACTIONS(9331), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(5043), 1, sym_comment, - ACTIONS(1275), 2, - anon_sym_RBRACK, - anon_sym_RPAREN, - ACTIONS(1273), 33, + ACTIONS(1139), 35, sym_identifier, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DOT_DOT_DOT, @@ -479873,19 +440885,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [149096] = 7, + [150975] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10020), 1, - anon_sym_DOT, - STATE(5283), 1, - sym_path, - STATE(5433), 1, + ACTIONS(1072), 1, + sym_cmd_identifier, + ACTIONS(9593), 1, + anon_sym_DOT_DOT2, + STATE(5044), 1, sym_comment, - STATE(6026), 1, - sym_cell_path, - ACTIONS(995), 13, - sym_identifier, + ACTIONS(9595), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1074), 4, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1169), 9, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1076), 19, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -479893,54 +440920,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_mod, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - ACTIONS(997), 20, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [149149] = 8, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [151030] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1200), 1, - anon_sym_DASH, - ACTIONS(10143), 1, - anon_sym_DOT_DOT2, - STATE(5434), 1, + ACTIONS(9488), 1, + anon_sym_QMARK2, + STATE(5045), 1, sym_comment, - ACTIONS(1196), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(10145), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1194), 3, + ACTIONS(1026), 2, + anon_sym_DOT, + aux_sym_command_token1, + ACTIONS(1024), 33, anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - ACTIONS(1198), 27, anon_sym_GT, + anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -479966,28 +440976,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [149204] = 7, + [151079] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9941), 1, - anon_sym_DOT, - STATE(5301), 1, - sym_path, - STATE(5435), 1, + STATE(5046), 1, sym_comment, - STATE(6188), 1, - sym_cell_path, - ACTIONS(1156), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1154), 31, + ACTIONS(1035), 2, + anon_sym_DOT, + aux_sym_command_token1, + ACTIONS(1033), 34, anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -480012,62 +441019,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [149257] = 4, + [151126] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5436), 1, + STATE(5047), 1, sym_comment, - ACTIONS(5205), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5203), 34, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [149304] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1001), 1, + ACTIONS(1063), 3, anon_sym_LF, - ACTIONS(10147), 1, - anon_sym_DOT, - STATE(5811), 1, - sym_path, - STATE(5437), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(999), 32, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1061), 33, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -480100,35 +441061,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [149355] = 7, + anon_sym_DOT_DOT2, + [151173] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10036), 1, - anon_sym_DOT, - STATE(5438), 1, + STATE(5048), 1, sym_comment, - STATE(5446), 1, - sym_path, - STATE(6235), 1, - sym_cell_path, - ACTIONS(1010), 12, - sym_identifier, + ACTIONS(1041), 5, anon_sym_GT, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - ACTIONS(1012), 21, + ACTIONS(1043), 31, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -480144,29 +441101,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [149408] = 7, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT, + [151220] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9941), 1, - anon_sym_DOT, - STATE(5301), 1, - sym_path, - STATE(5418), 1, - sym_cell_path, - STATE(5439), 1, + STATE(5049), 1, sym_comment, - ACTIONS(997), 2, - ts_builtin_sym_end, + ACTIONS(1043), 2, anon_sym_LF, - ACTIONS(995), 31, + anon_sym_DOT, + ACTIONS(1041), 33, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -480192,67 +441147,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [149461] = 7, - ACTIONS(3), 1, + [151266] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9975), 1, - anon_sym_DOT, - STATE(5268), 1, - sym_path, - STATE(5440), 1, + ACTIONS(9710), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9712), 1, + aux_sym_unquoted_token2, + STATE(5050), 1, sym_comment, - STATE(6264), 1, - sym_cell_path, - ACTIONS(1188), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1186), 20, - sym_cmd_identifier, + ACTIONS(922), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(920), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [149514] = 7, + [151316] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1181), 1, - anon_sym_LF, - ACTIONS(9806), 1, - anon_sym_DOT, - STATE(5343), 1, - sym_path, - STATE(5441), 1, + ACTIONS(1131), 1, + aux_sym_command_token1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + STATE(5051), 1, sym_comment, - STATE(6116), 1, - sym_cell_path, - ACTIONS(1179), 32, + ACTIONS(1129), 33, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, @@ -480284,28 +441234,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [149567] = 8, + [151364] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1196), 1, - anon_sym_LF, - ACTIONS(1465), 1, - anon_sym_COLON, - ACTIONS(1472), 1, - anon_sym_DOT_DOT2, - STATE(5442), 1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + ACTIONS(1137), 1, + aux_sym_command_token1, + STATE(5052), 1, sym_comment, - ACTIONS(1474), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1194), 3, + ACTIONS(1135), 33, anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(1198), 28, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -480331,17 +441277,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [149622] = 4, + [151412] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5443), 1, + STATE(5053), 1, sym_comment, - ACTIONS(961), 2, - anon_sym_LF, - anon_sym_DOT, - ACTIONS(959), 34, + ACTIONS(1213), 2, + anon_sym_LPAREN2, + aux_sym_command_token1, + ACTIONS(1211), 33, anon_sym_SEMI, - anon_sym_COLON, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, @@ -480349,7 +441295,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_RBRACE, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -480374,18 +441319,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [149669] = 4, + [151458] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5444), 1, + STATE(5054), 1, sym_comment, - ACTIONS(1115), 4, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1113), 32, + ACTIONS(1213), 2, + anon_sym_LPAREN2, + aux_sym_command_token1, + ACTIONS(1211), 33, anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, @@ -480415,25 +441360,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [149716] = 6, + anon_sym_LF2, + [151504] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10143), 1, - anon_sym_DOT_DOT2, - STATE(5445), 1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + STATE(5055), 1, sym_comment, - ACTIONS(1160), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(10145), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1158), 31, - anon_sym_SEMI, + ACTIONS(1135), 34, + sym_identifier, + anon_sym_COMMA, anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_GT, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, @@ -480462,40 +441403,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [149767] = 7, - ACTIONS(3), 1, + [151550] = 3, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10036), 1, - anon_sym_DOT, - STATE(5446), 1, + STATE(5056), 1, sym_comment, - STATE(5470), 1, - aux_sym_cell_path_repeat1, - STATE(5938), 1, - sym_path, - ACTIONS(987), 12, + ACTIONS(1155), 35, sym_identifier, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - ACTIONS(989), 21, - anon_sym_DOLLAR, - anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -480506,50 +441440,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [149820] = 11, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + aux_sym_unquoted_token6, + [151594] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10158), 1, - anon_sym_SLASH_SLASH, - STATE(5447), 1, + STATE(5057), 1, sym_comment, - ACTIONS(10150), 2, + ACTIONS(1070), 4, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1068), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_LT2, - ACTIONS(10152), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10156), 2, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10160), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10154), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(10162), 4, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1376), 5, - sym_identifier, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1378), 15, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -480558,43 +441482,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [149881] = 8, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + [151640] = 7, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10158), 1, - anon_sym_SLASH_SLASH, - STATE(5448), 1, + ACTIONS(9472), 1, + anon_sym_DOT, + STATE(5058), 1, sym_comment, - ACTIONS(10152), 2, + STATE(5169), 1, + sym_path, + STATE(5942), 1, + sym_cell_path, + ACTIONS(1059), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1057), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10156), 2, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10154), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(1376), 7, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1378), 21, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -480605,94 +441528,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [149936] = 13, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [151692] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10158), 1, - anon_sym_SLASH_SLASH, - ACTIONS(10164), 1, - anon_sym_in, - STATE(5449), 1, + ACTIONS(1161), 1, + anon_sym_LF, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + STATE(5059), 1, sym_comment, - ACTIONS(10150), 2, + ACTIONS(1159), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, - anon_sym_LT2, - ACTIONS(10152), 2, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10156), 2, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10160), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10154), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(10166), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1376), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(10162), 4, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1378), 12, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [150001] = 7, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [151740] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10158), 1, - anon_sym_SLASH_SLASH, - STATE(5450), 1, + STATE(5060), 1, sym_comment, - ACTIONS(10156), 2, + ACTIONS(1217), 2, + anon_sym_LPAREN2, + aux_sym_command_token1, + ACTIONS(1215), 33, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10154), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(1376), 9, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1378), 21, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -480703,35 +441612,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [150054] = 5, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LF2, + [151786] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5451), 1, + STATE(5061), 1, sym_comment, - ACTIONS(10156), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(1376), 12, - sym_identifier, + ACTIONS(1047), 8, anon_sym_GT, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1378), 22, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1049), 27, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -480747,459 +441653,494 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [150103] = 9, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [151832] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10158), 1, - anon_sym_SLASH_SLASH, - STATE(5452), 1, + ACTIONS(9714), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9716), 1, + aux_sym_unquoted_token2, + STATE(5062), 1, sym_comment, - ACTIONS(10152), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10156), 2, + ACTIONS(922), 13, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10160), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10154), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(1376), 7, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1378), 19, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_SLASH_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [150160] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10158), 1, - anon_sym_SLASH_SLASH, - ACTIONS(10164), 1, - anon_sym_in, - STATE(5453), 1, - sym_comment, - ACTIONS(10150), 2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(920), 20, + sym_cmd_identifier, anon_sym_GT, - anon_sym_LT2, - ACTIONS(10152), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10156), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10160), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10168), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10154), 3, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(10166), 3, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1376), 4, - sym_identifier, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(10162), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1378), 10, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, + [151882] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9718), 1, + aux_sym__immediate_decimal_token2, + STATE(5063), 1, + sym_comment, + ACTIONS(2362), 11, + anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [150227] = 15, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + ACTIONS(2364), 23, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_not, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [151930] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10158), 1, - anon_sym_SLASH_SLASH, - ACTIONS(10164), 1, - anon_sym_in, - ACTIONS(10170), 1, - anon_sym_bit_DASHand, - STATE(5454), 1, + ACTIONS(9720), 1, + anon_sym_DOT, + ACTIONS(9723), 1, + aux_sym__immediate_decimal_token2, + STATE(5064), 1, sym_comment, - ACTIONS(10150), 2, + ACTIONS(2356), 10, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + ACTIONS(2358), 23, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_not, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [151980] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(5065), 1, + sym_comment, + ACTIONS(1217), 2, + anon_sym_LPAREN2, + aux_sym_command_token1, + ACTIONS(1215), 33, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, - anon_sym_LT2, - ACTIONS(10152), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10156), 2, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10160), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10168), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10154), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(10166), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1376), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(10162), 4, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1378), 9, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [150296] = 16, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [152026] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10158), 1, - anon_sym_SLASH_SLASH, - ACTIONS(10164), 1, - anon_sym_in, - ACTIONS(10170), 1, - anon_sym_bit_DASHand, - ACTIONS(10172), 1, - anon_sym_bit_DASHxor, - STATE(5455), 1, + ACTIONS(1157), 1, + aux_sym_command_token1, + STATE(5066), 1, sym_comment, - ACTIONS(10150), 2, + ACTIONS(1155), 34, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, - anon_sym_LT2, - ACTIONS(10152), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10156), 2, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10160), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10168), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10154), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(10166), 3, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1376), 4, - sym_identifier, + 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, - ACTIONS(10162), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1378), 8, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_bit_DASHor, - [150367] = 17, + aux_sym_unquoted_token6, + [152072] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10158), 1, - anon_sym_SLASH_SLASH, - ACTIONS(10164), 1, - anon_sym_in, - ACTIONS(10170), 1, - anon_sym_bit_DASHand, - ACTIONS(10172), 1, - anon_sym_bit_DASHxor, - ACTIONS(10174), 1, - anon_sym_bit_DASHor, - STATE(5456), 1, + STATE(5067), 1, sym_comment, - ACTIONS(10150), 2, + ACTIONS(1225), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, anon_sym_LT2, - ACTIONS(10152), 2, + ACTIONS(1227), 30, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10156), 2, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10160), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10168), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10154), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(10166), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1376), 4, - sym_identifier, + 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, - ACTIONS(10162), 4, + [152118] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(5068), 1, + sym_comment, + ACTIONS(1049), 2, + anon_sym_DOT, + aux_sym_command_token1, + ACTIONS(1047), 33, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1378), 7, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [150440] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10158), 1, - anon_sym_SLASH_SLASH, - ACTIONS(10164), 1, - anon_sym_in, - ACTIONS(10170), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(10172), 1, anon_sym_bit_DASHxor, - ACTIONS(10174), 1, anon_sym_bit_DASHor, - ACTIONS(10176), 1, anon_sym_and, - STATE(5457), 1, + anon_sym_xor, + anon_sym_or, + anon_sym_LF2, + [152164] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9725), 1, + anon_sym_DOT_DOT2, + ACTIONS(9729), 1, + sym_filesize_unit, + ACTIONS(9731), 1, + sym_duration_unit, + STATE(5069), 1, sym_comment, - ACTIONS(10150), 2, + ACTIONS(9727), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(938), 6, anon_sym_GT, - anon_sym_LT2, - ACTIONS(10152), 2, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(10156), 2, + anon_sym_LT2, + ACTIONS(940), 24, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10160), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10168), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1376), 3, - sym_identifier, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(10154), 3, + [152218] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(5070), 1, + sym_comment, + ACTIONS(1035), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT, + ACTIONS(1033), 32, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - ACTIONS(10166), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10162), 4, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1378), 7, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [150515] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10158), 1, - anon_sym_SLASH_SLASH, - ACTIONS(10164), 1, - anon_sym_in, - ACTIONS(10170), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(10172), 1, anon_sym_bit_DASHxor, - ACTIONS(10174), 1, anon_sym_bit_DASHor, - ACTIONS(10176), 1, anon_sym_and, - ACTIONS(10178), 1, anon_sym_xor, - STATE(5458), 1, - sym_comment, - ACTIONS(1376), 2, - sym_identifier, anon_sym_or, - ACTIONS(10150), 2, + [152264] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(5071), 1, + sym_comment, + ACTIONS(1022), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT, + ACTIONS(1020), 32, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_LT2, - ACTIONS(10152), 2, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10156), 2, + anon_sym_in, + anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10160), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10168), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10154), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(10166), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10162), 4, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1378), 7, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [150592] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1376), 1, - sym_identifier, - ACTIONS(10158), 1, - anon_sym_SLASH_SLASH, - ACTIONS(10164), 1, - anon_sym_in, - ACTIONS(10170), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(10172), 1, anon_sym_bit_DASHxor, - ACTIONS(10174), 1, anon_sym_bit_DASHor, - ACTIONS(10176), 1, anon_sym_and, - ACTIONS(10178), 1, anon_sym_xor, - ACTIONS(10180), 1, anon_sym_or, - STATE(5459), 1, + [152310] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(5072), 1, sym_comment, - ACTIONS(10150), 2, + ACTIONS(1039), 2, + anon_sym_DOT, + aux_sym_command_token1, + ACTIONS(1037), 33, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, - anon_sym_LT2, - ACTIONS(10152), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10156), 2, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10160), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10168), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10154), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(10166), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10162), 4, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1378), 7, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [150671] = 5, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LF2, + [152356] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10182), 1, + ACTIONS(9733), 1, anon_sym_QMARK2, - STATE(5460), 1, + STATE(5073), 1, sym_comment, - ACTIONS(1072), 2, + ACTIONS(1026), 2, + anon_sym_LF, anon_sym_DOT, - aux_sym_command_token1, - ACTIONS(1070), 33, + ACTIONS(1024), 32, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, @@ -481231,17 +442172,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [150720] = 5, - ACTIONS(113), 1, + [152404] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10182), 1, - anon_sym_QMARK2, - STATE(5461), 1, - sym_comment, - ACTIONS(1072), 2, + ACTIONS(1391), 1, anon_sym_DOT, + ACTIONS(1409), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9209), 1, + aux_sym_unquoted_token4, + STATE(5074), 1, + sym_comment, + STATE(10080), 1, + sym__immediate_decimal, + ACTIONS(1407), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + ACTIONS(920), 6, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(922), 23, + anon_sym_in, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [152460] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1157), 1, aux_sym_command_token1, - ACTIONS(1070), 33, + STATE(5075), 1, + sym_comment, + ACTIONS(1155), 34, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -481249,7 +442234,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -481275,25 +442259,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [150769] = 4, + anon_sym_LF2, + aux_sym_unquoted_token6, + [152506] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5462), 1, + STATE(5076), 1, sym_comment, - ACTIONS(1412), 2, + ACTIONS(1217), 2, anon_sym_LF, - anon_sym_DOT, - ACTIONS(1410), 34, + anon_sym_LPAREN2, + ACTIONS(1215), 33, anon_sym_SEMI, - anon_sym_COLON, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -481318,28 +442303,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [150816] = 4, + [152552] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5463), 1, + STATE(5077), 1, sym_comment, - ACTIONS(1410), 5, + ACTIONS(1037), 8, anon_sym_GT, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1412), 31, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_PIPE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1039), 27, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH_DASH, anon_sym_in, - anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -481361,113 +442343,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [150863] = 7, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [152598] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9975), 1, + ACTIONS(1161), 1, + aux_sym_command_token1, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + STATE(5078), 1, + sym_comment, + ACTIONS(1159), 33, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LF2, + [152646] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(9472), 1, anon_sym_DOT, - STATE(5268), 1, - sym_path, - STATE(5464), 1, + STATE(5079), 1, sym_comment, - STATE(6194), 1, + STATE(5169), 1, + sym_path, + STATE(5207), 1, sym_cell_path, - ACTIONS(1150), 13, - anon_sym_DASH_DASH, + ACTIONS(1004), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1002), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1148), 20, - sym_cmd_identifier, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [152698] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(922), 1, + anon_sym_LF, + ACTIONS(9735), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9737), 1, + aux_sym_unquoted_token2, + STATE(5080), 1, + sym_comment, + ACTIONS(920), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [150916] = 4, + [152748] = 7, ACTIONS(113), 1, anon_sym_POUND, - STATE(5465), 1, + ACTIONS(9472), 1, + anon_sym_DOT, + STATE(5081), 1, sym_comment, - ACTIONS(3868), 2, + STATE(5169), 1, + sym_path, + STATE(5916), 1, + sym_cell_path, + ACTIONS(1103), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3866), 34, + ACTIONS(1101), 30, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_GT, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [150963] = 4, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [152800] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5466), 1, + STATE(5082), 1, sym_comment, - ACTIONS(1061), 2, - anon_sym_DOT, - aux_sym_command_token1, - ACTIONS(1059), 34, - anon_sym_SEMI, + ACTIONS(1209), 2, anon_sym_LF, + anon_sym_LPAREN2, + ACTIONS(1139), 33, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -481492,28 +442564,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LF2, - [151010] = 7, + [152846] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1156), 1, - anon_sym_LF, - ACTIONS(9806), 1, - anon_sym_DOT, - STATE(5343), 1, - sym_path, - STATE(5467), 1, + STATE(5083), 1, sym_comment, - STATE(6273), 1, - sym_cell_path, - ACTIONS(1154), 32, + ACTIONS(922), 2, + anon_sym_LPAREN2, + aux_sym_command_token1, + ACTIONS(920), 33, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -481539,24 +442605,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [151063] = 7, + anon_sym_LF2, + [152892] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1205), 1, - anon_sym_LF, - ACTIONS(9806), 1, - anon_sym_DOT, - STATE(5343), 1, - sym_path, - STATE(5468), 1, + ACTIONS(9739), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(5084), 1, sym_comment, - STATE(6275), 1, - sym_cell_path, - ACTIONS(1203), 32, + ACTIONS(1139), 34, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -481585,19 +442648,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [151116] = 7, + [152938] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9975), 1, - anon_sym_DOT, - STATE(5268), 1, - sym_path, - STATE(5469), 1, + STATE(5085), 1, sym_comment, - STATE(6195), 1, - sym_cell_path, - ACTIONS(1181), 13, + ACTIONS(1035), 15, anon_sym_DASH_DASH, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -481607,10 +442665,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, + anon_sym_DOT, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1179), 20, + ACTIONS(1033), 20, sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, @@ -481631,40 +442690,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [151169] = 7, + [152984] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10036), 1, - anon_sym_DOT, - STATE(5223), 1, - aux_sym_cell_path_repeat1, - STATE(5470), 1, + STATE(5086), 1, sym_comment, - STATE(5938), 1, - sym_path, - ACTIONS(1006), 12, - sym_identifier, + ACTIONS(1022), 15, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1020), 20, + sym_cmd_identifier, anon_sym_GT, + anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - ACTIONS(1008), 21, - anon_sym_DOLLAR, + [153030] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(9741), 1, + anon_sym_DOT, + STATE(5670), 1, + sym_path, + ACTIONS(987), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(5087), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(985), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -481675,29 +442773,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [151222] = 7, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [153080] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1192), 1, - anon_sym_LF, - ACTIONS(9806), 1, + ACTIONS(9472), 1, anon_sym_DOT, - STATE(5343), 1, - sym_path, - STATE(5471), 1, + STATE(5088), 1, sym_comment, - STATE(6030), 1, + STATE(5169), 1, + sym_path, + STATE(5908), 1, sym_cell_path, - ACTIONS(1190), 32, + ACTIONS(1053), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1051), 30, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -481723,67 +442821,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [151275] = 4, + [153132] = 7, ACTIONS(113), 1, anon_sym_POUND, - STATE(5472), 1, + ACTIONS(1087), 1, + sym__entry_separator, + ACTIONS(9744), 1, + anon_sym_DOT, + STATE(5089), 1, sym_comment, - ACTIONS(1288), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1286), 34, + STATE(5144), 1, + sym_path, + STATE(5868), 1, + sym_cell_path, + ACTIONS(1085), 31, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [151322] = 5, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [153184] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1160), 1, - anon_sym_LF, - ACTIONS(1284), 1, + ACTIONS(1091), 1, + aux_sym_command_token1, + ACTIONS(1149), 1, aux_sym_unquoted_token6, - STATE(5473), 1, + STATE(5090), 1, sym_comment, - ACTIONS(1158), 33, + ACTIONS(1089), 33, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -481809,33 +442908,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [151370] = 4, - ACTIONS(3), 1, + anon_sym_LF2, + [153232] = 5, + ACTIONS(113), 1, anon_sym_POUND, - STATE(5474), 1, + ACTIONS(1145), 1, + aux_sym_command_token1, + ACTIONS(9746), 1, + anon_sym_LBRACK2, + STATE(5091), 1, sym_comment, - ACTIONS(1117), 8, + ACTIONS(1143), 33, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1119), 27, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -481849,153 +442951,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [151416] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10057), 1, - aux_sym__immediate_decimal_token2, - STATE(5475), 1, - sym_comment, - ACTIONS(2581), 11, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2583), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [151464] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5476), 1, - sym_comment, - ACTIONS(1117), 12, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1119), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [151510] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10027), 1, - aux_sym__immediate_decimal_token2, - STATE(5477), 1, - sym_comment, - ACTIONS(2437), 11, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2439), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [151558] = 4, + anon_sym_LF2, + [153280] = 7, ACTIONS(113), 1, anon_sym_POUND, - STATE(5478), 1, + ACTIONS(9472), 1, + anon_sym_DOT, + STATE(5092), 1, sym_comment, - ACTIONS(1115), 2, + STATE(5169), 1, + sym_path, + STATE(5917), 1, + sym_cell_path, + ACTIONS(1099), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT, - ACTIONS(1113), 33, + ACTIONS(1097), 30, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -482021,73 +442997,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [151604] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10184), 1, - aux_sym__immediate_decimal_token2, - STATE(5479), 1, - sym_comment, - ACTIONS(2547), 11, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2549), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [151652] = 4, + [153332] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5480), 1, + STATE(5093), 1, sym_comment, - ACTIONS(1286), 5, + ACTIONS(1033), 13, + sym_identifier, anon_sym_GT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1288), 30, - anon_sym_COMMA, - anon_sym_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1035), 22, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -482103,25 +443037,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [153378] = 19, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(8535), 1, + anon_sym_DOT_DOT2, + ACTIONS(9569), 1, + anon_sym_bit_DASHand, + ACTIONS(9571), 1, + anon_sym_bit_DASHxor, + ACTIONS(9573), 1, + anon_sym_bit_DASHor, + ACTIONS(9575), 1, anon_sym_and, + ACTIONS(9577), 1, anon_sym_xor, + ACTIONS(9579), 1, anon_sym_or, - [151698] = 7, + STATE(5094), 1, + sym_comment, + ACTIONS(8537), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(9299), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(9301), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(9555), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9563), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9565), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9567), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9557), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9559), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(9553), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [153454] = 8, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1008), 1, + ACTIONS(940), 1, sym__entry_separator, - ACTIONS(10186), 1, - anon_sym_DOT, - STATE(5481), 1, + ACTIONS(9748), 1, + anon_sym_DOT_DOT2, + ACTIONS(9752), 1, + sym_filesize_unit, + ACTIONS(9754), 1, + sym_duration_unit, + STATE(5095), 1, sym_comment, - STATE(5491), 1, - aux_sym_cell_path_repeat1, - STATE(6087), 1, - sym_path, - ACTIONS(1006), 31, - anon_sym_SEMI, - anon_sym_RBRACK, + ACTIONS(9750), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(938), 29, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -482151,23 +443142,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [151750] = 4, + [153508] = 7, ACTIONS(113), 1, anon_sym_POUND, - STATE(5482), 1, + ACTIONS(9472), 1, + anon_sym_DOT, + STATE(5087), 1, + aux_sym_cell_path_repeat1, + STATE(5096), 1, sym_comment, - ACTIONS(1416), 2, + STATE(5670), 1, + sym_path, + ACTIONS(1008), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_LPAREN2, - ACTIONS(1414), 33, + ACTIONS(1006), 30, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -482193,37 +443187,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [151796] = 4, - ACTIONS(113), 1, + [153560] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9905), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(5483), 1, + ACTIONS(9764), 1, + anon_sym_SLASH_SLASH, + STATE(5097), 1, sym_comment, - ACTIONS(1243), 34, - sym_identifier, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, + ACTIONS(9756), 2, anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_LT2, + ACTIONS(9758), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(9762), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, + ACTIONS(9766), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(9760), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(9768), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(1179), 5, + sym_identifier, + anon_sym_in, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1181), 14, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -482232,39 +443236,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [151842] = 5, - ACTIONS(113), 1, + [153620] = 10, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10188), 1, - anon_sym_QMARK2, - STATE(5484), 1, - sym_comment, - ACTIONS(1072), 3, - ts_builtin_sym_end, + ACTIONS(9203), 1, anon_sym_DOT, - aux_sym_command_token1, - ACTIONS(1070), 31, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, + ACTIONS(9209), 1, + aux_sym_unquoted_token5, + ACTIONS(9509), 1, + sym_filesize_unit, + ACTIONS(9511), 1, + sym_duration_unit, + ACTIONS(9770), 1, + anon_sym_DOT_DOT2, + STATE(5098), 1, + sym_comment, + ACTIONS(9772), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(938), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(940), 23, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -482278,22 +443284,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [151890] = 5, + [153678] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10188), 1, - anon_sym_QMARK2, - STATE(5485), 1, + ACTIONS(1149), 1, + aux_sym_unquoted_token6, + STATE(5099), 1, sym_comment, - ACTIONS(1072), 3, - ts_builtin_sym_end, - anon_sym_DOT, - aux_sym_command_token1, - ACTIONS(1070), 31, - anon_sym_SEMI, - anon_sym_LF, + ACTIONS(1089), 34, + sym_identifier, + anon_sym_COMMA, anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -482321,36 +443326,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [151938] = 5, - ACTIONS(113), 1, + [153724] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1261), 1, - anon_sym_LF, - ACTIONS(10190), 1, - anon_sym_LBRACK2, - STATE(5486), 1, + ACTIONS(9764), 1, + anon_sym_SLASH_SLASH, + STATE(5100), 1, sym_comment, - ACTIONS(1259), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, + ACTIONS(9758), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(9762), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(9760), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, + ACTIONS(1179), 7, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1181), 20, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -482361,19 +443372,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [151986] = 5, + [153778] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1160), 1, + ACTIONS(940), 1, aux_sym_command_token1, - ACTIONS(1284), 1, - aux_sym_unquoted_token6, - STATE(5487), 1, + ACTIONS(8391), 1, + aux_sym_unquoted_token5, + STATE(5101), 1, sym_comment, - ACTIONS(1158), 33, + ACTIONS(938), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -482407,23 +443415,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [152034] = 4, + [153826] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9764), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9774), 1, + anon_sym_in, + STATE(5102), 1, + sym_comment, + ACTIONS(9756), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(9758), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9762), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9766), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9760), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(9776), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1179), 4, + sym_identifier, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(9768), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1181), 11, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [153890] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(5488), 1, + ACTIONS(8535), 1, + anon_sym_DOT_DOT2, + STATE(5103), 1, sym_comment, - ACTIONS(1119), 2, + ACTIONS(1091), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT, - ACTIONS(1117), 33, + ACTIONS(8537), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1089), 30, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -482449,38 +443510,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [152080] = 7, - ACTIONS(113), 1, + [153940] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1192), 1, - sym__entry_separator, - ACTIONS(10186), 1, - anon_sym_DOT, - STATE(5489), 1, + ACTIONS(9764), 1, + anon_sym_SLASH_SLASH, + STATE(5104), 1, sym_comment, - STATE(5501), 1, - sym_path, - STATE(6370), 1, - sym_cell_path, - ACTIONS(1190), 31, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + ACTIONS(9762), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(9760), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(1179), 9, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1181), 20, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -482491,85 +443555,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [152132] = 7, + [153992] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2847), 1, - anon_sym_LPAREN2, - ACTIONS(10192), 1, - aux_sym__immediate_decimal_token1, - STATE(5490), 1, - sym_comment, - ACTIONS(2851), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(3748), 9, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3750), 22, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [152184] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1001), 1, - sym__entry_separator, - ACTIONS(10194), 1, - anon_sym_DOT, - STATE(6087), 1, - sym_path, - STATE(5491), 2, + ACTIONS(9778), 1, + anon_sym_QMARK2, + STATE(5105), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(999), 31, - anon_sym_SEMI, - anon_sym_RBRACK, + ACTIONS(1024), 14, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1026), 20, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -482580,33 +443596,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [152234] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [154040] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5492), 1, + STATE(5106), 1, sym_comment, - ACTIONS(1362), 5, + ACTIONS(9762), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1179), 12, + sym_identifier, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1364), 30, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1181), 21, + anon_sym_COLON, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -482622,36 +443641,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [152280] = 6, + [154088] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10197), 1, - anon_sym_DOT, - ACTIONS(10200), 1, + ACTIONS(9547), 1, aux_sym__immediate_decimal_token2, - STATE(5493), 1, + STATE(5107), 1, sym_comment, - ACTIONS(2581), 10, - anon_sym_LPAREN, + ACTIONS(2356), 11, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(2583), 23, + ACTIONS(2358), 23, anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_not, - anon_sym_LPAREN2, - 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, @@ -482669,27 +443684,72 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [152330] = 4, + [154136] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(5494), 1, + ACTIONS(9764), 1, + anon_sym_SLASH_SLASH, + STATE(5108), 1, sym_comment, - ACTIONS(1342), 5, - anon_sym_GT, + ACTIONS(9758), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9762), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9766), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9760), 3, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, + anon_sym_mod, + ACTIONS(1179), 7, + sym_identifier, + anon_sym_GT, + anon_sym_in, anon_sym_LT2, - ACTIONS(1344), 30, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1181), 18, + anon_sym_COLON, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [154192] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5109), 1, + sym_comment, + ACTIONS(1041), 8, + anon_sym_GT, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1043), 27, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_in, - anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -482711,64 +443771,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [152376] = 6, - ACTIONS(113), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [154238] = 14, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(938), 1, - anon_sym_LF, - ACTIONS(10202), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10204), 1, - aux_sym_unquoted_token2, - STATE(5495), 1, + ACTIONS(9764), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9774), 1, + anon_sym_in, + STATE(5110), 1, sym_comment, - ACTIONS(936), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(9756), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(9758), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(9762), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, + ACTIONS(9766), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(9780), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9760), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(9776), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1179), 4, + sym_identifier, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(9768), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(1181), 9, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [152426] = 4, + [154304] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5496), 1, + STATE(5111), 1, sym_comment, - ACTIONS(1420), 2, - anon_sym_LF, - anon_sym_LPAREN2, - ACTIONS(1418), 33, + ACTIONS(1043), 2, + anon_sym_DOT, + aux_sym_command_token1, + ACTIONS(1041), 33, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -482797,69 +443867,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [152472] = 7, - ACTIONS(113), 1, + [154350] = 15, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10099), 1, - anon_sym_DOT, - STATE(5497), 1, + ACTIONS(9764), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9774), 1, + anon_sym_in, + ACTIONS(9782), 1, + anon_sym_bit_DASHand, + STATE(5112), 1, sym_comment, - STATE(5549), 1, - sym_cell_path, - STATE(5630), 1, - sym_path, - ACTIONS(1012), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1010), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(9756), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(9758), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(9762), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, + ACTIONS(9766), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(9780), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9760), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(9776), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + ACTIONS(1179), 4, + sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - [152524] = 5, + ACTIONS(9768), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1181), 8, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [154418] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10206), 1, - anon_sym_QMARK2, - STATE(5498), 1, + ACTIONS(1209), 1, + aux_sym_command_token1, + ACTIONS(9784), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(5113), 1, sym_comment, - ACTIONS(1072), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT, - ACTIONS(1070), 31, + ACTIONS(1139), 33, anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -482885,68 +443963,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [152572] = 8, - ACTIONS(113), 1, + [154466] = 16, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(961), 1, - sym__entry_separator, - ACTIONS(10208), 1, - anon_sym_DOT_DOT2, - ACTIONS(10212), 1, - sym_filesize_unit, - ACTIONS(10214), 1, - sym_duration_unit, - STATE(5499), 1, + ACTIONS(9764), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9774), 1, + anon_sym_in, + ACTIONS(9782), 1, + anon_sym_bit_DASHand, + ACTIONS(9786), 1, + anon_sym_bit_DASHxor, + STATE(5114), 1, sym_comment, - ACTIONS(10210), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(959), 29, + ACTIONS(9756), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(9758), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(9762), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, + ACTIONS(9766), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(9780), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9760), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(9776), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + ACTIONS(1179), 4, + sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - [152626] = 5, + ACTIONS(9768), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1181), 7, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_bit_DASHor, + [154536] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10206), 1, - anon_sym_QMARK2, - STATE(5500), 1, + STATE(5115), 1, sym_comment, - ACTIONS(1072), 3, - ts_builtin_sym_end, - anon_sym_LF, + ACTIONS(1043), 2, anon_sym_DOT, - ACTIONS(1070), 31, + aux_sym_command_token1, + ACTIONS(1041), 33, anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -482974,166 +444058,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [152674] = 7, - ACTIONS(113), 1, + anon_sym_LF2, + [154582] = 17, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(989), 1, - sym__entry_separator, - ACTIONS(10186), 1, - anon_sym_DOT, - STATE(5481), 1, - aux_sym_cell_path_repeat1, - STATE(5501), 1, + ACTIONS(9764), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9774), 1, + anon_sym_in, + ACTIONS(9782), 1, + anon_sym_bit_DASHand, + ACTIONS(9786), 1, + anon_sym_bit_DASHxor, + ACTIONS(9788), 1, + anon_sym_bit_DASHor, + STATE(5116), 1, sym_comment, - STATE(6087), 1, - sym_path, - ACTIONS(987), 31, - anon_sym_SEMI, - anon_sym_RBRACK, + ACTIONS(9756), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(9758), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(9762), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, + ACTIONS(9766), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(9780), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9760), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(9776), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1179), 4, + sym_identifier, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(9768), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(1181), 6, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [154654] = 20, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(9472), 1, + anon_sym_DOT, + ACTIONS(9804), 1, anon_sym_bit_DASHand, + ACTIONS(9806), 1, anon_sym_bit_DASHxor, + ACTIONS(9808), 1, anon_sym_bit_DASHor, + ACTIONS(9810), 1, anon_sym_and, + ACTIONS(9812), 1, anon_sym_xor, + ACTIONS(9814), 1, anon_sym_or, - [152726] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(10099), 1, - anon_sym_DOT, - STATE(5502), 1, + STATE(5117), 1, sym_comment, - STATE(5630), 1, + STATE(5169), 1, sym_path, - STATE(6357), 1, + STATE(5978), 1, sym_cell_path, - ACTIONS(1156), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1154), 30, + ACTIONS(9603), 2, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_GT, + ACTIONS(9605), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(9792), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(9798), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(9800), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9802), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9794), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9796), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(9790), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + [154732] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9764), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9774), 1, + anon_sym_in, + ACTIONS(9782), 1, anon_sym_bit_DASHand, + ACTIONS(9786), 1, anon_sym_bit_DASHxor, + ACTIONS(9788), 1, anon_sym_bit_DASHor, + ACTIONS(9816), 1, anon_sym_and, - anon_sym_xor, - anon_sym_or, - [152778] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(5503), 1, + STATE(5118), 1, sym_comment, - ACTIONS(1290), 2, - anon_sym_LPAREN2, - aux_sym_command_token1, - ACTIONS(1243), 33, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(9756), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(9758), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(9762), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, + ACTIONS(9766), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, + ACTIONS(9780), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, + ACTIONS(1179), 3, + sym_identifier, anon_sym_xor, anon_sym_or, - anon_sym_LF2, - [152824] = 4, - ACTIONS(113), 1, + ACTIONS(9760), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(9776), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9768), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1181), 6, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [154806] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1282), 1, - aux_sym_command_token1, - STATE(5504), 1, + STATE(5119), 1, sym_comment, - ACTIONS(1280), 34, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1241), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1243), 30, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -483147,77 +444270,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - aux_sym_unquoted_token6, - [152870] = 5, - ACTIONS(113), 1, + [154852] = 19, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_LF, - ACTIONS(8904), 1, - aux_sym_unquoted_token5, - STATE(5505), 1, + ACTIONS(9764), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9774), 1, + anon_sym_in, + ACTIONS(9782), 1, + anon_sym_bit_DASHand, + ACTIONS(9786), 1, + anon_sym_bit_DASHxor, + ACTIONS(9788), 1, + anon_sym_bit_DASHor, + ACTIONS(9816), 1, + anon_sym_and, + ACTIONS(9818), 1, + anon_sym_xor, + STATE(5120), 1, sym_comment, - ACTIONS(959), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1179), 2, + sym_identifier, + anon_sym_or, + ACTIONS(9756), 2, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_LT2, + ACTIONS(9758), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(9762), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, + ACTIONS(9766), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(9780), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9760), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(9776), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9768), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [152918] = 6, + ACTIONS(1181), 6, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [154928] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10216), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10218), 1, - aux_sym__immediate_decimal_token2, - STATE(5506), 1, + STATE(5121), 1, sym_comment, - ACTIONS(2437), 10, + ACTIONS(1037), 12, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(2439), 23, + ACTIONS(1039), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_not, - 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, @@ -483235,21 +444369,123 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [152968] = 6, + [154974] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1179), 1, + sym_identifier, + ACTIONS(9764), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9774), 1, + anon_sym_in, + ACTIONS(9782), 1, + anon_sym_bit_DASHand, + ACTIONS(9786), 1, + anon_sym_bit_DASHxor, + ACTIONS(9788), 1, + anon_sym_bit_DASHor, + ACTIONS(9816), 1, + anon_sym_and, + ACTIONS(9818), 1, + anon_sym_xor, + ACTIONS(9820), 1, + anon_sym_or, + STATE(5122), 1, + sym_comment, + ACTIONS(9756), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(9758), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9762), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9766), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9780), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9760), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(9776), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9768), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1181), 6, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [155052] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9822), 1, + anon_sym_QMARK2, + STATE(5123), 1, + sym_comment, + ACTIONS(1024), 13, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1026), 21, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [155100] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10220), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10222), 1, - aux_sym_unquoted_token2, - STATE(5507), 1, + ACTIONS(9472), 1, + anon_sym_DOT, + STATE(5124), 1, sym_comment, - ACTIONS(938), 2, + STATE(5169), 1, + sym_path, + STATE(5865), 1, + sym_cell_path, + ACTIONS(1087), 2, ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(936), 31, - anon_sym_SEMI, anon_sym_LF, + ACTIONS(1085), 30, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, @@ -483279,21 +444515,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [153018] = 5, + [155152] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1249), 1, - aux_sym_command_token1, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - STATE(5508), 1, + STATE(5125), 1, sym_comment, - ACTIONS(1247), 33, - anon_sym_SEMI, + ACTIONS(1039), 2, anon_sym_LF, + anon_sym_DOT, + ACTIONS(1037), 33, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -483322,15 +444557,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [153066] = 4, + [155198] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(5509), 1, - sym_comment, - ACTIONS(1416), 2, - anon_sym_LPAREN2, + ACTIONS(1131), 1, aux_sym_command_token1, - ACTIONS(1414), 33, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + STATE(5126), 1, + sym_comment, + ACTIONS(1129), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -483364,94 +444600,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_LF2, - [153112] = 20, - ACTIONS(113), 1, + [155246] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10099), 1, - anon_sym_DOT, - ACTIONS(10238), 1, - anon_sym_bit_DASHand, - ACTIONS(10240), 1, - anon_sym_bit_DASHxor, - ACTIONS(10242), 1, - anon_sym_bit_DASHor, - ACTIONS(10244), 1, - anon_sym_and, - ACTIONS(10246), 1, - anon_sym_xor, - ACTIONS(10248), 1, - anon_sym_or, - STATE(5510), 1, + STATE(5127), 1, sym_comment, - STATE(5630), 1, - sym_path, - STATE(6349), 1, - sym_cell_path, - ACTIONS(9943), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(9945), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(10226), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10232), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10234), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10236), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10228), 4, + ACTIONS(1020), 13, + sym_identifier, + anon_sym_GT, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10230), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10224), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_PLUS, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [153190] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1255), 1, - aux_sym_command_token1, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - STATE(5511), 1, - sym_comment, - ACTIONS(1253), 33, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1022), 22, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -483462,25 +444640,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [153238] = 7, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [155292] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10099), 1, - anon_sym_DOT, - STATE(5512), 1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + ACTIONS(1137), 1, + aux_sym_command_token1, + STATE(5128), 1, sym_comment, - STATE(5630), 1, - sym_path, - STATE(6360), 1, - sym_cell_path, - ACTIONS(1192), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1190), 30, + ACTIONS(1135), 33, anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, @@ -483510,25 +444684,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [153290] = 5, + anon_sym_LF2, + [155340] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - ACTIONS(1275), 1, - aux_sym_command_token1, - STATE(5513), 1, + STATE(5129), 1, sym_comment, - ACTIONS(1273), 33, + ACTIONS(1035), 3, + ts_builtin_sym_end, + anon_sym_DOT, + aux_sym_command_token1, + ACTIONS(1033), 32, anon_sym_SEMI, anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -483553,20 +444727,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [153338] = 7, + [155386] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1156), 1, + ACTIONS(987), 1, sym__entry_separator, - ACTIONS(10186), 1, + ACTIONS(9824), 1, anon_sym_DOT, - STATE(5501), 1, + STATE(5573), 1, sym_path, - STATE(5514), 1, + STATE(5130), 2, sym_comment, - STATE(6388), 1, - sym_cell_path, - ACTIONS(1154), 31, + aux_sym_cell_path_repeat1, + ACTIONS(985), 31, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_GT, @@ -483598,24 +444771,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [153390] = 7, + [155436] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10099), 1, - anon_sym_DOT, - STATE(5515), 1, + ACTIONS(9331), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(5131), 1, sym_comment, - STATE(5534), 1, - sym_cell_path, - STATE(5630), 1, - sym_path, - ACTIONS(997), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(995), 30, - anon_sym_SEMI, + ACTIONS(1139), 34, + sym_identifier, + anon_sym_COMMA, anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -483643,15 +444813,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [153442] = 4, + [155482] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5516), 1, + STATE(5132), 1, sym_comment, - ACTIONS(1420), 2, - anon_sym_LPAREN2, + ACTIONS(1039), 2, + anon_sym_DOT, aux_sym_command_token1, - ACTIONS(1418), 33, + ACTIONS(1037), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -483659,6 +444829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -483684,36 +444855,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LF2, - [153488] = 4, - ACTIONS(113), 1, + [155528] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5517), 1, + STATE(5133), 1, sym_comment, - ACTIONS(1061), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT, - ACTIONS(1059), 32, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1261), 5, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1263), 30, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, - anon_sym_QMARK2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -483727,24 +444897,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [153534] = 4, + [155574] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(5518), 1, + ACTIONS(1145), 1, + aux_sym_command_token1, + ACTIONS(9827), 1, + anon_sym_LBRACK2, + STATE(5134), 1, sym_comment, - ACTIONS(1065), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT, - ACTIONS(1063), 32, + ACTIONS(1143), 33, anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -483769,56 +444940,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [153580] = 4, + [155622] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5519), 1, - sym_comment, - ACTIONS(1061), 15, - anon_sym_DASH_DASH, + ACTIONS(9822), 1, anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1059), 20, - sym_cmd_identifier, + STATE(5135), 1, + sym_comment, + ACTIONS(1024), 13, + sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1026), 21, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_LT2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [153626] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [155670] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5520), 1, + ACTIONS(9829), 1, + anon_sym_QMARK2, + STATE(5136), 1, sym_comment, - ACTIONS(1065), 15, + ACTIONS(1026), 14, anon_sym_DASH_DASH, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -483832,7 +445005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1063), 20, + ACTIONS(1024), 20, sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, @@ -483853,65 +445026,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [153672] = 4, + [155718] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5521), 1, + ACTIONS(9829), 1, + anon_sym_QMARK2, + STATE(5137), 1, sym_comment, - ACTIONS(1109), 8, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1111), 27, - anon_sym_DOLLAR, + ACTIONS(1026), 14, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1024), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [153718] = 4, + [155766] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1284), 1, - aux_sym_unquoted_token6, - STATE(5522), 1, + STATE(5138), 1, sym_comment, - ACTIONS(1158), 34, - sym_identifier, - anon_sym_COMMA, + ACTIONS(1049), 2, + anon_sym_DOT, + aux_sym_command_token1, + ACTIONS(1047), 33, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -483937,41 +445111,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [153764] = 10, + [155812] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9820), 1, - aux_sym_unquoted_token5, - ACTIONS(9828), 1, - anon_sym_DOT, - ACTIONS(10042), 1, - sym_filesize_unit, - ACTIONS(10044), 1, - sym_duration_unit, - ACTIONS(10250), 1, - anon_sym_DOT_DOT2, - STATE(5523), 1, + ACTIONS(9501), 1, + aux_sym__immediate_decimal_token2, + STATE(5139), 1, sym_comment, - ACTIONS(10252), 2, + ACTIONS(2229), 11, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2231), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(959), 5, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [155860] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1091), 1, + aux_sym_command_token1, + ACTIONS(1149), 1, + aux_sym_unquoted_token6, + STATE(5140), 1, + sym_comment, + ACTIONS(1089), 33, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(961), 23, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -483985,16 +445197,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [153822] = 5, + [155908] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1261), 1, - aux_sym_command_token1, - ACTIONS(10254), 1, - anon_sym_LBRACK2, - STATE(5524), 1, + STATE(5141), 1, sym_comment, - ACTIONS(1259), 33, + ACTIONS(1209), 2, + anon_sym_LPAREN2, + aux_sym_command_token1, + ACTIONS(1139), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -484002,7 +445213,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -484028,16 +445238,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [153870] = 4, + anon_sym_LF2, + [155954] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5525), 1, + STATE(5142), 1, sym_comment, - ACTIONS(1119), 3, + ACTIONS(1049), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1117), 32, + ACTIONS(1047), 32, anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, @@ -484070,112 +445281,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT2, anon_sym_DOT, - [153916] = 3, + [156000] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(5526), 1, - sym_comment, - ACTIONS(10256), 35, - anon_sym_RBRACK, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - [153960] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(10258), 1, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(9831), 1, aux_sym__immediate_decimal_token1, - ACTIONS(10260), 1, - aux_sym_unquoted_token2, - STATE(5527), 1, + STATE(5143), 1, sym_comment, - ACTIONS(938), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(936), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, + ACTIONS(3362), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(3574), 9, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [154010] = 8, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3576), 22, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [156052] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10099), 1, + ACTIONS(1012), 1, + sym__entry_separator, + ACTIONS(9744), 1, anon_sym_DOT, - STATE(5528), 1, + STATE(5144), 1, sym_comment, - STATE(5630), 1, + STATE(5188), 1, + aux_sym_cell_path_repeat1, + STATE(5573), 1, sym_path, - STATE(6310), 1, - sym_cell_path, - ACTIONS(4666), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4669), 2, + ACTIONS(1010), 31, anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(1203), 28, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -484201,24 +445371,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [154064] = 5, + [156104] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1249), 1, - aux_sym_command_token1, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - STATE(5529), 1, + STATE(5145), 1, sym_comment, - ACTIONS(1247), 33, + ACTIONS(1022), 3, + ts_builtin_sym_end, + anon_sym_DOT, + aux_sym_command_token1, + ACTIONS(1020), 32, anon_sym_SEMI, anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -484243,23 +445413,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LF2, - [154112] = 4, + [156150] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(5530), 1, + ACTIONS(940), 1, + anon_sym_LF, + ACTIONS(8419), 1, + aux_sym_unquoted_token5, + STATE(5146), 1, sym_comment, - ACTIONS(1111), 2, - anon_sym_DOT, - aux_sym_command_token1, - ACTIONS(1109), 33, + ACTIONS(938), 33, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -484285,64 +445456,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LF2, - [154158] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5531), 1, - sym_comment, - ACTIONS(1346), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1348), 30, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [154204] = 7, + [156198] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10099), 1, + ACTIONS(9472), 1, anon_sym_DOT, - STATE(5532), 1, + STATE(5057), 1, + sym_cell_path, + STATE(5147), 1, sym_comment, - STATE(5630), 1, + STATE(5169), 1, sym_path, - STATE(6310), 1, - sym_cell_path, - ACTIONS(1205), 2, + ACTIONS(994), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1203), 30, + ACTIONS(992), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -484373,15 +445501,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [154256] = 4, + [156250] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5533), 1, - sym_comment, - ACTIONS(938), 2, + ACTIONS(1157), 1, anon_sym_LF, - anon_sym_LPAREN2, - ACTIONS(936), 33, + STATE(5148), 1, + sym_comment, + ACTIONS(1155), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -484415,22 +445542,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [154302] = 4, + aux_sym_unquoted_token6, + [156296] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5149), 1, + sym_comment, + ACTIONS(9833), 35, + anon_sym_RBRACK, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + [156340] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5534), 1, + STATE(5150), 1, sym_comment, - ACTIONS(1174), 4, - ts_builtin_sym_end, - anon_sym_LF, + ACTIONS(1039), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1172), 31, - anon_sym_SEMI, - anon_sym_PIPE, + sym__entry_separator, + ACTIONS(1037), 32, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -484457,23 +445625,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT2, - [154348] = 4, + anon_sym_DOT, + [156386] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10262), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(5535), 1, + ACTIONS(9835), 1, + anon_sym_QMARK2, + STATE(5151), 1, sym_comment, - ACTIONS(1243), 34, - anon_sym_SEMI, + ACTIONS(1026), 3, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_RPAREN, + anon_sym_DOT, + ACTIONS(1024), 31, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -484499,122 +445669,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [154394] = 20, + [156434] = 20, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10099), 1, + ACTIONS(9472), 1, anon_sym_DOT, - ACTIONS(10278), 1, + ACTIONS(9851), 1, anon_sym_bit_DASHand, - ACTIONS(10280), 1, + ACTIONS(9853), 1, anon_sym_bit_DASHxor, - ACTIONS(10282), 1, + ACTIONS(9855), 1, anon_sym_bit_DASHor, - ACTIONS(10284), 1, + ACTIONS(9857), 1, anon_sym_and, - ACTIONS(10286), 1, + ACTIONS(9859), 1, anon_sym_xor, - ACTIONS(10288), 1, + ACTIONS(9861), 1, anon_sym_or, - STATE(5536), 1, + STATE(5152), 1, sym_comment, - STATE(5630), 1, + STATE(5169), 1, sym_path, - STATE(6302), 1, + STATE(5886), 1, sym_cell_path, - ACTIONS(9977), 2, + ACTIONS(9680), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(9979), 2, + ACTIONS(9682), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(10266), 2, + ACTIONS(9839), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10272), 2, + ACTIONS(9845), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10274), 2, + ACTIONS(9847), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10276), 2, + ACTIONS(9849), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10268), 4, + ACTIONS(9841), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(10270), 4, + ACTIONS(9843), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10264), 6, + ACTIONS(9837), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [154472] = 5, + [156512] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1290), 1, - aux_sym_command_token1, - ACTIONS(10290), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(5537), 1, + ACTIONS(9835), 1, + anon_sym_QMARK2, + STATE(5153), 1, sym_comment, - ACTIONS(1243), 33, - anon_sym_SEMI, + ACTIONS(1026), 3, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LF2, - [154520] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1255), 1, - aux_sym_command_token1, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - STATE(5538), 1, - sym_comment, - ACTIONS(1253), 33, + anon_sym_DOT, + ACTIONS(1024), 31, anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -484642,21 +445770,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LF2, - [154568] = 5, + [156560] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - ACTIONS(1275), 1, - aux_sym_command_token1, - STATE(5539), 1, + ACTIONS(8535), 1, + anon_sym_DOT_DOT2, + STATE(5154), 1, sym_comment, - ACTIONS(1273), 33, + ACTIONS(1072), 2, anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, + ACTIONS(1074), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(8537), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1076), 28, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -484685,172 +445815,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LF2, - [154616] = 11, + [156612] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10300), 1, - anon_sym_SLASH_SLASH, - STATE(5540), 1, + STATE(5155), 1, sym_comment, - ACTIONS(10292), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10294), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10298), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10302), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10296), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(10304), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1376), 5, + ACTIONS(1033), 14, sym_identifier, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1378), 14, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [154676] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5541), 1, - sym_comment, - ACTIONS(1406), 5, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1408), 30, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [154722] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10300), 1, - anon_sym_SLASH_SLASH, - STATE(5542), 1, - sym_comment, - ACTIONS(10294), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10298), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10296), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(1376), 7, - sym_identifier, - anon_sym_GT, - anon_sym_in, + anon_sym_PLUS, anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1378), 20, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [154776] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(5543), 1, - sym_comment, - ACTIONS(1115), 2, + anon_sym_DOT_DOT2, anon_sym_DOT, - aux_sym_command_token1, - ACTIONS(1113), 33, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + ACTIONS(1035), 21, + anon_sym_DASH_DASH, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -484861,19 +445855,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LF2, - [154822] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [156658] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(5544), 1, - sym_comment, - ACTIONS(1111), 2, + ACTIONS(1145), 1, anon_sym_LF, - anon_sym_DOT, - ACTIONS(1109), 33, + ACTIONS(9863), 1, + anon_sym_LBRACK2, + STATE(5156), 1, + sym_comment, + ACTIONS(1143), 33, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -484907,14 +445900,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [154868] = 5, + [156706] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8570), 1, - aux_sym_unquoted_token5, - STATE(5545), 1, + STATE(5157), 1, + sym_comment, + ACTIONS(1041), 12, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1043), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [156752] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9778), 1, + anon_sym_QMARK2, + STATE(5158), 1, sym_comment, - ACTIONS(959), 12, + ACTIONS(1024), 14, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -484927,11 +445962,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(961), 22, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1026), 20, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -484950,24 +445983,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [154916] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [156800] = 8, ACTIONS(113), 1, anon_sym_POUND, - STATE(5546), 1, + ACTIONS(9472), 1, + anon_sym_DOT, + STATE(5159), 1, sym_comment, - ACTIONS(1061), 3, + STATE(5169), 1, + sym_path, + STATE(5942), 1, + sym_cell_path, + ACTIONS(3890), 2, ts_builtin_sym_end, - anon_sym_DOT, - aux_sym_command_token1, - ACTIONS(1059), 32, - anon_sym_SEMI, anon_sym_LF, + ACTIONS(3893), 2, + anon_sym_SEMI, anon_sym_PIPE, + ACTIONS(1057), 28, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -484992,71 +446031,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [154962] = 13, + [156854] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10300), 1, - anon_sym_SLASH_SLASH, - ACTIONS(10306), 1, - anon_sym_in, - STATE(5547), 1, + ACTIONS(9865), 1, + aux_sym__immediate_decimal_token2, + STATE(5160), 1, sym_comment, - ACTIONS(10292), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10294), 2, + ACTIONS(2362), 11, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10298), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10302), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10296), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(10308), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1376), 4, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2364), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [156902] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + STATE(5161), 1, + sym_comment, + ACTIONS(1159), 34, sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(10304), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1378), 11, - anon_sym_COLON, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [155026] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(5548), 1, - sym_comment, - ACTIONS(1119), 2, - anon_sym_DOT, - aux_sym_command_token1, - ACTIONS(1117), 33, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -485084,23 +446116,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LF2, - [155072] = 4, + [156948] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5549), 1, + STATE(5162), 1, sym_comment, - ACTIONS(1170), 4, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1168), 31, + ACTIONS(922), 2, + anon_sym_LPAREN2, + aux_sym_command_token1, + ACTIONS(920), 33, anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -485126,81 +446158,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - [155118] = 5, - ACTIONS(3), 1, + [156994] = 7, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10310), 1, - anon_sym_QMARK2, - STATE(5550), 1, - sym_comment, - ACTIONS(1072), 14, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(1095), 1, + sym__entry_separator, + ACTIONS(9744), 1, anon_sym_DOT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1070), 20, - sym_cmd_identifier, + STATE(5144), 1, + sym_path, + STATE(5163), 1, + sym_comment, + STATE(5885), 1, + sym_cell_path, + ACTIONS(1093), 31, + anon_sym_SEMI, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [155166] = 7, + [157046] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10300), 1, - anon_sym_SLASH_SLASH, - STATE(5551), 1, + STATE(5164), 1, sym_comment, - ACTIONS(10298), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10296), 3, + ACTIONS(1233), 5, + anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, - ACTIONS(1376), 9, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1378), 20, - anon_sym_COLON, + ACTIONS(1235), 30, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -485215,75 +446242,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [155218] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10310), 1, - anon_sym_QMARK2, - STATE(5552), 1, - sym_comment, - ACTIONS(1072), 14, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1070), 20, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [155266] = 5, + [157092] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10200), 1, - aux_sym__immediate_decimal_token2, - STATE(5553), 1, + STATE(5165), 1, sym_comment, - ACTIONS(2581), 11, - anon_sym_LPAREN, + ACTIONS(1047), 12, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(2583), 23, + ACTIONS(1049), 23, anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_not, - anon_sym_LPAREN2, - 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, @@ -485300,41 +446286,36 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [155314] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1593), 1, - anon_sym_DOT, - ACTIONS(1611), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9820), 1, - aux_sym_unquoted_token4, - STATE(5554), 1, + anon_sym_DOLLAR_DQUOTE, + [157138] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1209), 1, + aux_sym_command_token1, + ACTIONS(9867), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(5166), 1, sym_comment, - STATE(10460), 1, - sym__immediate_decimal, - ACTIONS(1609), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - ACTIONS(936), 6, + ACTIONS(1139), 33, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(938), 23, anon_sym_in, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -485348,39 +446329,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [155370] = 5, - ACTIONS(3), 1, + anon_sym_LF2, + [157186] = 5, + ACTIONS(113), 1, anon_sym_POUND, - STATE(5555), 1, + ACTIONS(1091), 1, + anon_sym_LF, + ACTIONS(1149), 1, + aux_sym_unquoted_token6, + STATE(5167), 1, sym_comment, - ACTIONS(10298), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(1376), 12, - sym_identifier, + ACTIONS(1089), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1378), 21, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -485391,24 +446370,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [155418] = 5, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [157234] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1249), 1, - anon_sym_LF, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - STATE(5556), 1, + ACTIONS(940), 1, + aux_sym_command_token1, + ACTIONS(8548), 1, + aux_sym_unquoted_token5, + STATE(5168), 1, sym_comment, - ACTIONS(1247), 33, + ACTIONS(938), 33, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -485434,37 +446415,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [155466] = 5, - ACTIONS(3), 1, + anon_sym_LF2, + [157282] = 7, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10312), 1, - anon_sym_QMARK2, - STATE(5557), 1, + ACTIONS(9472), 1, + anon_sym_DOT, + STATE(5096), 1, + aux_sym_cell_path_repeat1, + STATE(5169), 1, sym_comment, - ACTIONS(1070), 14, - sym_identifier, + STATE(5670), 1, + sym_path, + ACTIONS(1012), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1010), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1072), 20, - anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -485475,29 +446458,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [155514] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [157334] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(5558), 1, + ACTIONS(9869), 1, + anon_sym_DOT_DOT2, + ACTIONS(9873), 1, + sym_filesize_unit, + ACTIONS(9875), 1, + sym_duration_unit, + STATE(5170), 1, sym_comment, - ACTIONS(1372), 5, + ACTIONS(9871), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(938), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1374), 30, + ACTIONS(940), 25, anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -485519,23 +446507,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [155560] = 4, + [157388] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(5559), 1, + ACTIONS(9877), 1, + anon_sym_QMARK2, + STATE(5171), 1, sym_comment, - ACTIONS(1290), 2, + ACTIONS(1026), 3, + ts_builtin_sym_end, + anon_sym_DOT, + aux_sym_command_token1, + ACTIONS(1024), 31, + anon_sym_SEMI, anon_sym_LF, - anon_sym_LPAREN2, - ACTIONS(1243), 33, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [157436] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(9877), 1, + anon_sym_QMARK2, + STATE(5172), 1, + sym_comment, + ACTIONS(1026), 3, + ts_builtin_sym_end, + anon_sym_DOT, + aux_sym_command_token1, + ACTIONS(1024), 31, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LF, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -485561,141 +446593,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [155606] = 14, + [157484] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10300), 1, + ACTIONS(9887), 1, anon_sym_SLASH_SLASH, - ACTIONS(10306), 1, - anon_sym_in, - STATE(5560), 1, + STATE(5173), 1, sym_comment, - ACTIONS(10292), 2, + ACTIONS(9879), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(10294), 2, + ACTIONS(9881), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10298), 2, + ACTIONS(9885), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10302), 2, + ACTIONS(9889), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10314), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10296), 3, + ACTIONS(9883), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(10308), 3, + ACTIONS(9891), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1179), 5, + sym_identifier, + anon_sym_in, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1181), 14, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1376), 4, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [157544] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9887), 1, + anon_sym_SLASH_SLASH, + STATE(5174), 1, + sym_comment, + ACTIONS(9881), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9885), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9883), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(1179), 7, sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(10304), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1378), 9, - anon_sym_COLON, + ACTIONS(1181), 20, anon_sym_COMMA, - anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [155672] = 15, + [157598] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10300), 1, + ACTIONS(9887), 1, anon_sym_SLASH_SLASH, - ACTIONS(10306), 1, + ACTIONS(9893), 1, anon_sym_in, - ACTIONS(10316), 1, - anon_sym_bit_DASHand, - STATE(5561), 1, + STATE(5175), 1, sym_comment, - ACTIONS(10292), 2, + ACTIONS(9879), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(10294), 2, + ACTIONS(9881), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10298), 2, + ACTIONS(9885), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10302), 2, + ACTIONS(9889), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10314), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10296), 3, + ACTIONS(9883), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(10308), 3, + ACTIONS(9895), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1376), 4, + ACTIONS(1179), 4, sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(10304), 4, + ACTIONS(9891), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1378), 8, - anon_sym_COLON, + ACTIONS(1181), 11, anon_sym_COMMA, - anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [155740] = 5, - ACTIONS(113), 1, + [157662] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1255), 1, - anon_sym_LF, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - STATE(5562), 1, + ACTIONS(9887), 1, + anon_sym_SLASH_SLASH, + STATE(5176), 1, sym_comment, - ACTIONS(1253), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + ACTIONS(9885), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(9883), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(1179), 9, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1181), 20, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -485706,39 +446784,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [155788] = 5, - ACTIONS(113), 1, + [157714] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - ACTIONS(1275), 1, - anon_sym_LF, - STATE(5563), 1, + STATE(5177), 1, sym_comment, - ACTIONS(1273), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(9885), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1179), 12, + sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1181), 21, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -485749,38 +446827,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [155836] = 4, - ACTIONS(113), 1, + [157762] = 9, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5564), 1, + ACTIONS(9887), 1, + anon_sym_SLASH_SLASH, + STATE(5178), 1, sym_comment, - ACTIONS(1065), 3, - ts_builtin_sym_end, - anon_sym_DOT, - aux_sym_command_token1, - ACTIONS(1063), 32, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(9881), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_QMARK2, + anon_sym_PLUS, + ACTIONS(9885), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, + ACTIONS(9889), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(9883), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(1179), 7, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1181), 18, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -485791,540 +446874,443 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [155882] = 16, + [157818] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10300), 1, + ACTIONS(9887), 1, anon_sym_SLASH_SLASH, - ACTIONS(10306), 1, + ACTIONS(9893), 1, anon_sym_in, - ACTIONS(10316), 1, - anon_sym_bit_DASHand, - ACTIONS(10318), 1, - anon_sym_bit_DASHxor, - STATE(5565), 1, + STATE(5179), 1, sym_comment, - ACTIONS(10292), 2, + ACTIONS(9879), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(10294), 2, + ACTIONS(9881), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10298), 2, + ACTIONS(9885), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10302), 2, + ACTIONS(9889), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10314), 2, + ACTIONS(9897), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10296), 3, + ACTIONS(9883), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(10308), 3, + ACTIONS(9895), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1376), 4, + ACTIONS(1179), 4, sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(10304), 4, + ACTIONS(9891), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1378), 7, - anon_sym_COLON, + ACTIONS(1181), 9, anon_sym_COMMA, - anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [155952] = 5, + [157884] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9931), 1, - aux_sym__immediate_decimal_token2, - STATE(5566), 1, - sym_comment, - ACTIONS(2437), 11, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(2439), 23, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_not, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [156000] = 19, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(9107), 1, - anon_sym_DOT_DOT2, - ACTIONS(10117), 1, + ACTIONS(9887), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9893), 1, + anon_sym_in, + ACTIONS(9899), 1, anon_sym_bit_DASHand, - ACTIONS(10119), 1, - anon_sym_bit_DASHxor, - ACTIONS(10121), 1, - anon_sym_bit_DASHor, - ACTIONS(10123), 1, - anon_sym_and, - ACTIONS(10125), 1, - anon_sym_xor, - ACTIONS(10127), 1, - anon_sym_or, - STATE(5567), 1, + STATE(5180), 1, sym_comment, - ACTIONS(9109), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(9859), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(9861), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(10103), 2, + ACTIONS(9879), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(9881), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10111), 2, + ACTIONS(9885), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10113), 2, + ACTIONS(9889), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10115), 2, + ACTIONS(9897), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10105), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10107), 4, + ACTIONS(9883), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10101), 6, - anon_sym_GT, + ACTIONS(9895), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1179), 4, + sym_identifier, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(9891), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [156076] = 17, + ACTIONS(1181), 8, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [157952] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10300), 1, + ACTIONS(9887), 1, anon_sym_SLASH_SLASH, - ACTIONS(10306), 1, + ACTIONS(9893), 1, anon_sym_in, - ACTIONS(10316), 1, + ACTIONS(9899), 1, anon_sym_bit_DASHand, - ACTIONS(10318), 1, + ACTIONS(9901), 1, anon_sym_bit_DASHxor, - ACTIONS(10320), 1, - anon_sym_bit_DASHor, - STATE(5568), 1, + STATE(5181), 1, sym_comment, - ACTIONS(10292), 2, + ACTIONS(9879), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(10294), 2, + ACTIONS(9881), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10298), 2, + ACTIONS(9885), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10302), 2, + ACTIONS(9889), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10314), 2, + ACTIONS(9897), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10296), 3, + ACTIONS(9883), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(10308), 3, + ACTIONS(9895), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1376), 4, + ACTIONS(1179), 4, sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(10304), 4, + ACTIONS(9891), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1378), 6, - anon_sym_COLON, + ACTIONS(1181), 7, anon_sym_COMMA, - anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [156148] = 7, - ACTIONS(113), 1, + anon_sym_bit_DASHor, + [158022] = 17, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10099), 1, - anon_sym_DOT, - STATE(5569), 1, + ACTIONS(9887), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9893), 1, + anon_sym_in, + ACTIONS(9899), 1, + anon_sym_bit_DASHand, + ACTIONS(9901), 1, + anon_sym_bit_DASHxor, + ACTIONS(9903), 1, + anon_sym_bit_DASHor, + STATE(5182), 1, sym_comment, - STATE(5590), 1, - aux_sym_cell_path_repeat1, - STATE(6234), 1, - sym_path, - ACTIONS(1008), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1006), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(9879), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(9881), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(9885), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, + ACTIONS(9889), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(9897), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9883), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(9895), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + ACTIONS(1179), 4, + sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - [156200] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1282), 1, - aux_sym_command_token1, - STATE(5570), 1, - sym_comment, - ACTIONS(1280), 34, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(9891), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(1181), 6, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [158094] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9887), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9893), 1, + anon_sym_in, + ACTIONS(9899), 1, anon_sym_bit_DASHand, + ACTIONS(9901), 1, anon_sym_bit_DASHxor, + ACTIONS(9903), 1, anon_sym_bit_DASHor, + ACTIONS(9905), 1, anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LF2, - aux_sym_unquoted_token6, - [156246] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5571), 1, + STATE(5183), 1, sym_comment, - ACTIONS(1059), 14, - sym_identifier, + ACTIONS(9879), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(9881), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1061), 21, - anon_sym_DASH_DASH, - anon_sym_QMARK2, + ACTIONS(9885), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, + ACTIONS(9889), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(9897), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1179), 3, + sym_identifier, + anon_sym_xor, + anon_sym_or, + ACTIONS(9883), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(9895), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9891), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(1181), 6, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [158168] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9887), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9893), 1, + anon_sym_in, + ACTIONS(9899), 1, anon_sym_bit_DASHand, + ACTIONS(9901), 1, anon_sym_bit_DASHxor, + ACTIONS(9903), 1, anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [156292] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5572), 1, + ACTIONS(9905), 1, + anon_sym_and, + ACTIONS(9907), 1, + anon_sym_xor, + STATE(5184), 1, sym_comment, - ACTIONS(1063), 14, + ACTIONS(1179), 2, sym_identifier, + anon_sym_or, + ACTIONS(9879), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(9881), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1065), 21, - anon_sym_DASH_DASH, - anon_sym_QMARK2, + ACTIONS(9885), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, + ACTIONS(9889), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, + ACTIONS(9897), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [156338] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(9107), 1, - anon_sym_DOT_DOT2, - STATE(5573), 1, - sym_comment, - ACTIONS(1194), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(1196), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(9109), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1198), 28, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, + ACTIONS(9883), 3, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(9895), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9891), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [156390] = 18, + ACTIONS(1181), 6, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [158244] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10300), 1, + ACTIONS(1179), 1, + sym_identifier, + ACTIONS(9887), 1, anon_sym_SLASH_SLASH, - ACTIONS(10306), 1, + ACTIONS(9893), 1, anon_sym_in, - ACTIONS(10316), 1, + ACTIONS(9899), 1, anon_sym_bit_DASHand, - ACTIONS(10318), 1, + ACTIONS(9901), 1, anon_sym_bit_DASHxor, - ACTIONS(10320), 1, + ACTIONS(9903), 1, anon_sym_bit_DASHor, - ACTIONS(10322), 1, + ACTIONS(9905), 1, anon_sym_and, - STATE(5574), 1, + ACTIONS(9907), 1, + anon_sym_xor, + ACTIONS(9909), 1, + anon_sym_or, + STATE(5185), 1, sym_comment, - ACTIONS(10292), 2, + ACTIONS(9879), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(10294), 2, + ACTIONS(9881), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10298), 2, + ACTIONS(9885), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10302), 2, + ACTIONS(9889), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10314), 2, + ACTIONS(9897), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1376), 3, - sym_identifier, - anon_sym_xor, - anon_sym_or, - ACTIONS(10296), 3, + ACTIONS(9883), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(10308), 3, + ACTIONS(9895), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(10304), 4, + ACTIONS(9891), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1378), 6, - anon_sym_COLON, + ACTIONS(1181), 6, anon_sym_COMMA, - anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [156464] = 4, - ACTIONS(113), 1, + [158322] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - STATE(5575), 1, + ACTIONS(9911), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9913), 1, + aux_sym__immediate_decimal_token2, + STATE(5186), 1, sym_comment, - ACTIONS(1247), 34, - sym_identifier, - anon_sym_COMMA, - anon_sym_PIPE, + ACTIONS(2229), 10, anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [156510] = 5, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + ACTIONS(2231), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [158372] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10324), 1, + ACTIONS(9723), 1, aux_sym__immediate_decimal_token2, - STATE(5576), 1, + STATE(5187), 1, sym_comment, - ACTIONS(2547), 11, + ACTIONS(2356), 11, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, @@ -486336,7 +447322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token2, - ACTIONS(2549), 23, + ACTIONS(2358), 23, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_not, @@ -486360,21 +447346,26 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [156558] = 3, + [158420] = 7, ACTIONS(113), 1, anon_sym_POUND, - STATE(5577), 1, + ACTIONS(1008), 1, + sym__entry_separator, + ACTIONS(9744), 1, + anon_sym_DOT, + STATE(5130), 1, + aux_sym_cell_path_repeat1, + STATE(5188), 1, sym_comment, - ACTIONS(1280), 35, - sym_identifier, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, + STATE(5573), 1, + sym_path, + ACTIONS(1006), 31, + anon_sym_SEMI, + anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -486400,36 +447391,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - aux_sym_unquoted_token6, - [156602] = 4, - ACTIONS(113), 1, + [158472] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5578), 1, + STATE(5189), 1, sym_comment, - ACTIONS(1420), 2, - anon_sym_LPAREN2, - aux_sym_command_token1, - ACTIONS(1418), 33, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1175), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1177), 30, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -486443,92 +447433,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [156648] = 19, + [158518] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10300), 1, - anon_sym_SLASH_SLASH, - ACTIONS(10306), 1, - anon_sym_in, - ACTIONS(10316), 1, - anon_sym_bit_DASHand, - ACTIONS(10318), 1, - anon_sym_bit_DASHxor, - ACTIONS(10320), 1, - anon_sym_bit_DASHor, - ACTIONS(10322), 1, - anon_sym_and, - ACTIONS(10326), 1, - anon_sym_xor, - STATE(5579), 1, + STATE(5190), 1, sym_comment, - ACTIONS(1376), 2, + ACTIONS(1020), 14, sym_identifier, - anon_sym_or, - ACTIONS(10292), 2, anon_sym_GT, - anon_sym_LT2, - ACTIONS(10294), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10298), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10302), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10314), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10296), 3, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(10308), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10304), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1378), 6, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [156724] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - STATE(5580), 1, - sym_comment, - ACTIONS(1253), 34, - sym_identifier, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DOT_DOT_DOT, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1022), 21, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -486539,26 +447473,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [156770] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [158564] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1257), 1, + ACTIONS(1131), 1, + anon_sym_LF, + ACTIONS(1133), 1, aux_sym_unquoted_token6, - STATE(5581), 1, + STATE(5191), 1, sym_comment, - ACTIONS(1273), 34, - sym_identifier, - anon_sym_COMMA, + ACTIONS(1129), 33, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_GT, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -486578,129 +447512,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [156816] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1376), 1, - sym_identifier, - ACTIONS(10300), 1, - anon_sym_SLASH_SLASH, - ACTIONS(10306), 1, - anon_sym_in, - ACTIONS(10316), 1, - anon_sym_bit_DASHand, - ACTIONS(10318), 1, - anon_sym_bit_DASHxor, - ACTIONS(10320), 1, - anon_sym_bit_DASHor, - ACTIONS(10322), 1, - anon_sym_and, - ACTIONS(10326), 1, - anon_sym_xor, - ACTIONS(10328), 1, - anon_sym_or, - STATE(5582), 1, - sym_comment, - ACTIONS(10292), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10294), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10298), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10302), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10314), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10296), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(10308), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10304), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1378), 6, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [156894] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5583), 1, - sym_comment, - ACTIONS(1113), 12, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1115), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [156940] = 5, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [158612] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1160), 1, - aux_sym_command_token1, - ACTIONS(1284), 1, + ACTIONS(1133), 1, aux_sym_unquoted_token6, - STATE(5584), 1, + ACTIONS(1137), 1, + anon_sym_LF, + STATE(5192), 1, sym_comment, - ACTIONS(1158), 33, + ACTIONS(1135), 33, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -486726,24 +447561,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LF2, - [156988] = 5, + [158660] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1261), 1, - aux_sym_command_token1, - ACTIONS(10330), 1, - anon_sym_LBRACK2, - STATE(5585), 1, + STATE(5193), 1, sym_comment, - ACTIONS(1259), 33, - anon_sym_SEMI, + ACTIONS(1213), 2, anon_sym_LF, + anon_sym_LPAREN2, + ACTIONS(1211), 33, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -486769,32 +447603,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LF2, - [157036] = 6, + [158706] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10332), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10334), 1, - aux_sym_unquoted_token2, - STATE(5586), 1, + ACTIONS(8013), 1, + aux_sym_unquoted_token5, + STATE(5194), 1, sym_comment, - ACTIONS(938), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(936), 20, - sym_cmd_identifier, + ACTIONS(938), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -486802,29 +447619,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_mod, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(940), 22, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_LT2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [157086] = 4, + [158754] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5587), 1, + STATE(5195), 1, sym_comment, - ACTIONS(1115), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1113), 32, - anon_sym_RBRACK, + ACTIONS(1209), 2, + anon_sym_LPAREN2, + aux_sym_command_token1, + ACTIONS(1139), 33, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -486854,26 +447688,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [157132] = 5, + [158800] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10336), 1, - anon_sym_QMARK2, - STATE(5588), 1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + STATE(5196), 1, sym_comment, - ACTIONS(1072), 2, - anon_sym_LF, - anon_sym_DOT, - ACTIONS(1070), 32, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1129), 34, + sym_identifier, + anon_sym_COMMA, anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -486899,24 +447730,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [157180] = 5, + [158846] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10336), 1, - anon_sym_QMARK2, - STATE(5589), 1, + ACTIONS(9472), 1, + anon_sym_DOT, + STATE(5169), 1, + sym_path, + STATE(5197), 1, sym_comment, - ACTIONS(1072), 2, + STATE(5945), 1, + sym_cell_path, + ACTIONS(1095), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT, - ACTIONS(1070), 32, + ACTIONS(1093), 30, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -486942,25 +447775,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [157228] = 6, + [158898] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10338), 1, - anon_sym_DOT, - STATE(6234), 1, - sym_path, - ACTIONS(1001), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(5590), 2, + ACTIONS(9733), 1, + anon_sym_QMARK2, + STATE(5198), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(999), 30, + ACTIONS(1026), 2, + anon_sym_LF, + anon_sym_DOT, + ACTIONS(1024), 32, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -486986,31 +447818,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [157278] = 8, + [158946] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10341), 1, - anon_sym_DOT_DOT2, - ACTIONS(10345), 1, - sym_filesize_unit, - ACTIONS(10347), 1, - sym_duration_unit, - STATE(5591), 1, + STATE(5199), 1, sym_comment, - ACTIONS(10343), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(959), 6, + ACTIONS(1253), 5, anon_sym_GT, - anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(961), 24, - anon_sym_DASH_DASH, + ACTIONS(1255), 30, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_in, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -487032,20 +447860,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [157332] = 4, + [158992] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5592), 1, + STATE(5200), 1, sym_comment, - ACTIONS(938), 2, + ACTIONS(922), 2, + anon_sym_LF, anon_sym_LPAREN2, - aux_sym_command_token1, - ACTIONS(936), 33, + ACTIONS(920), 33, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -487074,35 +447902,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [157378] = 4, - ACTIONS(3), 1, + [159038] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(5593), 1, + STATE(5201), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(1043), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1041), 32, + anon_sym_RBRACK, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, - ACTIONS(1304), 30, - anon_sym_COMMA, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [159084] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(5202), 1, + sym_comment, + ACTIONS(1049), 2, + anon_sym_LF, + anon_sym_DOT, + ACTIONS(1047), 33, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -487116,23 +447986,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [157424] = 4, + [159130] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(5594), 1, + ACTIONS(9915), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9917), 1, + aux_sym_unquoted_token2, + STATE(5203), 1, sym_comment, - ACTIONS(1290), 2, - anon_sym_LPAREN2, + ACTIONS(922), 2, + ts_builtin_sym_end, aux_sym_command_token1, - ACTIONS(1243), 33, + ACTIONS(920), 31, anon_sym_SEMI, anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -487158,16 +448030,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [157470] = 5, + [159180] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(1161), 1, aux_sym_command_token1, - ACTIONS(9001), 1, - aux_sym_unquoted_token5, - STATE(5595), 1, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + STATE(5204), 1, sym_comment, - ACTIONS(959), 33, + ACTIONS(1159), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -487175,6 +448047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -487200,19 +448073,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LF2, - [157518] = 4, - ACTIONS(113), 1, + [159228] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5596), 1, + STATE(5205), 1, sym_comment, - ACTIONS(938), 2, + ACTIONS(1257), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1259), 30, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [159274] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9587), 1, + aux_sym__immediate_decimal_token2, + STATE(5206), 1, + sym_comment, + ACTIONS(2229), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + ACTIONS(2231), 23, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_not, anon_sym_LPAREN2, - aux_sym_command_token1, - ACTIONS(936), 33, - anon_sym_SEMI, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [159322] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(5207), 1, + sym_comment, + ACTIONS(1063), 4, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_RPAREN, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1061), 31, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, @@ -487242,16 +448199,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LF2, - [157564] = 4, + anon_sym_DOT_DOT2, + [159368] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5597), 1, - sym_comment, - ACTIONS(1111), 2, - anon_sym_DOT, + ACTIONS(1289), 1, aux_sym_command_token1, - ACTIONS(1109), 33, + STATE(5208), 1, + sym_comment, + ACTIONS(1287), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -487259,7 +448215,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -487285,16 +448240,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [157610] = 5, + anon_sym_LF2, + [159413] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(1267), 1, aux_sym_command_token1, - ACTIONS(9043), 1, - aux_sym_unquoted_token5, - STATE(5598), 1, + STATE(5209), 1, sym_comment, - ACTIONS(959), 33, + ACTIONS(1265), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -487328,22 +448282,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [157658] = 7, + [159458] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10099), 1, - anon_sym_DOT, - STATE(5599), 1, + ACTIONS(9919), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(5210), 1, sym_comment, - STATE(5630), 1, - sym_path, - STATE(6333), 1, - sym_cell_path, - ACTIONS(1188), 2, + ACTIONS(1209), 2, ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1186), 30, + aux_sym_command_token1, + ACTIONS(1139), 31, anon_sym_SEMI, + anon_sym_LF, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, @@ -487373,34 +448324,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [157710] = 4, - ACTIONS(113), 1, + [159505] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1282), 1, - anon_sym_LF, - STATE(5600), 1, + ACTIONS(9921), 1, + anon_sym_DOT, + STATE(5211), 1, sym_comment, - ACTIONS(1280), 34, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + STATE(5300), 1, + sym_cell_path, + STATE(5435), 1, + sym_path, + ACTIONS(992), 6, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(994), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -487414,13 +448368,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - aux_sym_unquoted_token6, - [157756] = 4, + [159556] = 14, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1181), 1, + aux_sym_command_token1, + ACTIONS(9937), 1, + anon_sym_bit_DASHand, + ACTIONS(9939), 1, + anon_sym_bit_DASHxor, + ACTIONS(9941), 1, + anon_sym_bit_DASHor, + STATE(5212), 1, + sym_comment, + ACTIONS(9925), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9931), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9933), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9935), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9927), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9929), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(9923), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1179), 8, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [159621] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5601), 1, + STATE(5213), 1, sym_comment, - ACTIONS(1059), 13, + ACTIONS(1037), 13, sym_identifier, anon_sym_GT, anon_sym_in, @@ -487434,10 +448438,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(1061), 22, + ACTIONS(1039), 21, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -487457,12 +448460,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [157802] = 4, + [159666] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5602), 1, + STATE(5214), 1, sym_comment, - ACTIONS(1063), 13, + ACTIONS(1041), 13, sym_identifier, anon_sym_GT, anon_sym_in, @@ -487476,10 +448479,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(1065), 22, + ACTIONS(1043), 21, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -487499,33 +448501,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [157848] = 4, - ACTIONS(3), 1, + [159711] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(5603), 1, + ACTIONS(1169), 1, + anon_sym_LF, + STATE(5215), 1, sym_comment, - ACTIONS(1113), 8, + ACTIONS(1076), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1115), 27, - anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -487539,22 +448542,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [157894] = 4, + [159756] = 9, ACTIONS(113), 1, anon_sym_POUND, - STATE(5604), 1, + ACTIONS(1181), 1, + anon_sym_LF, + STATE(5216), 1, sym_comment, - ACTIONS(1115), 2, - anon_sym_DOT, - aux_sym_command_token1, - ACTIONS(1113), 33, + ACTIONS(9945), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9949), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9951), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9947), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(9943), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1179), 17, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [159811] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9953), 1, + aux_sym__immediate_decimal_token1, + STATE(5217), 1, + sym_comment, + ACTIONS(3362), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(3574), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3576), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [159860] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1173), 1, anon_sym_LF, + STATE(5218), 1, + sym_comment, + ACTIONS(1171), 33, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -487583,39 +448672,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [157940] = 8, - ACTIONS(3), 1, + [159905] = 7, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10349), 1, - anon_sym_DOT_DOT2, - ACTIONS(10353), 1, - sym_filesize_unit, - ACTIONS(10355), 1, - sym_duration_unit, - STATE(5605), 1, + ACTIONS(1181), 1, + anon_sym_LF, + STATE(5219), 1, sym_comment, - ACTIONS(10351), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(959), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(961), 25, - anon_sym_COMMA, + ACTIONS(9945), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, + anon_sym_PLUS, + ACTIONS(9949), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(9947), 4, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(1179), 25, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -487629,24 +448716,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [157994] = 5, + [159956] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1290), 1, - aux_sym_command_token1, - ACTIONS(10357), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(5606), 1, + STATE(5220), 1, sym_comment, - ACTIONS(1243), 33, + ACTIONS(1217), 3, + ts_builtin_sym_end, + anon_sym_LPAREN2, + aux_sym_command_token1, + ACTIONS(1215), 31, anon_sym_SEMI, anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -487672,15 +448757,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [158042] = 4, + [160001] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5607), 1, - sym_comment, - ACTIONS(1416), 2, - anon_sym_LPAREN2, + ACTIONS(1173), 1, aux_sym_command_token1, - ACTIONS(1414), 33, + STATE(5221), 1, + sym_comment, + ACTIONS(1171), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -487714,68 +448798,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [158088] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5608), 1, - sym_comment, - ACTIONS(1109), 12, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1111), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [158134] = 7, + [160046] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10099), 1, - anon_sym_DOT, - STATE(5609), 1, + ACTIONS(1173), 1, + aux_sym_command_token1, + STATE(5222), 1, sym_comment, - STATE(5630), 1, - sym_path, - STATE(6362), 1, - sym_cell_path, - ACTIONS(1181), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1179), 30, + ACTIONS(1171), 33, anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -487801,25 +448839,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [158186] = 6, + [160091] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9107), 1, - anon_sym_DOT_DOT2, - STATE(5610), 1, - sym_comment, - ACTIONS(1160), 2, - ts_builtin_sym_end, + ACTIONS(1173), 1, anon_sym_LF, - ACTIONS(9109), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1158), 30, + STATE(5223), 1, + sym_comment, + ACTIONS(1171), 33, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -487845,16 +448880,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [158236] = 4, + [160136] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(5611), 1, + ACTIONS(1091), 1, + sym__entry_separator, + ACTIONS(9955), 1, + anon_sym_DOT_DOT2, + STATE(5224), 1, sym_comment, - ACTIONS(1111), 3, + ACTIONS(9957), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1109), 32, + ACTIONS(1089), 30, anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, @@ -487885,93 +448923,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [158282] = 11, - ACTIONS(3), 1, + [160185] = 10, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10367), 1, - anon_sym_SLASH_SLASH, - STATE(5612), 1, + ACTIONS(1181), 1, + anon_sym_LF, + STATE(5225), 1, sym_comment, - ACTIONS(10359), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10361), 2, + ACTIONS(9945), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10365), 2, + ACTIONS(9949), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10369), 2, + ACTIONS(9951), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10363), 3, + ACTIONS(9947), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(10371), 4, + anon_sym_SLASH_SLASH, + ACTIONS(9959), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9943), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1376), 5, - sym_identifier, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1378), 14, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(1179), 13, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, anon_sym_DASH_DASH, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, + anon_sym_RBRACE, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [158342] = 8, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [160242] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10367), 1, - anon_sym_SLASH_SLASH, - STATE(5613), 1, + ACTIONS(1173), 1, + anon_sym_LF, + STATE(5226), 1, sym_comment, - ACTIONS(10361), 2, + ACTIONS(1171), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10365), 2, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10363), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(1376), 7, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1378), 20, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -487982,92 +449008,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [158396] = 13, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [160287] = 7, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10367), 1, - anon_sym_SLASH_SLASH, - ACTIONS(10373), 1, - anon_sym_in, - STATE(5614), 1, + ACTIONS(1099), 1, + sym__entry_separator, + ACTIONS(9744), 1, + anon_sym_DOT, + STATE(5144), 1, + sym_path, + STATE(5227), 1, sym_comment, - ACTIONS(10359), 2, + STATE(6046), 1, + sym_cell_path, + ACTIONS(1097), 30, + anon_sym_RBRACK, anon_sym_GT, - anon_sym_LT2, - ACTIONS(10361), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10365), 2, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10369), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10363), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(10375), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1376), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(10371), 4, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1378), 11, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [158460] = 7, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [160338] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10367), 1, - anon_sym_SLASH_SLASH, - STATE(5615), 1, + ACTIONS(1181), 1, + anon_sym_LF, + STATE(5228), 1, sym_comment, - ACTIONS(10365), 2, + ACTIONS(9949), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10363), 3, + ACTIONS(9947), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(1376), 9, - sym_identifier, + anon_sym_SLASH_SLASH, + ACTIONS(1179), 27, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1378), 20, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -488078,39 +449095,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [158512] = 5, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [160387] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(5616), 1, + ACTIONS(1173), 1, + anon_sym_LF, + STATE(5229), 1, sym_comment, - ACTIONS(10365), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(1376), 12, - sym_identifier, + ACTIONS(1171), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1378), 21, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -488121,43 +449136,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [158560] = 9, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [160432] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10367), 1, - anon_sym_SLASH_SLASH, - STATE(5617), 1, + ACTIONS(1181), 1, + anon_sym_LF, + STATE(5230), 1, sym_comment, - ACTIONS(10361), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10365), 2, + ACTIONS(9949), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10369), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10363), 3, + ACTIONS(1179), 31, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(1376), 7, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1378), 18, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -488168,422 +449178,302 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [158616] = 14, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [160479] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10367), 1, - anon_sym_SLASH_SLASH, - ACTIONS(10373), 1, - anon_sym_in, - STATE(5618), 1, + ACTIONS(1173), 1, + anon_sym_LF, + STATE(5231), 1, sym_comment, - ACTIONS(10359), 2, + ACTIONS(1171), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, - anon_sym_LT2, - ACTIONS(10361), 2, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10365), 2, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10369), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10377), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10363), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(10375), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1376), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(10371), 4, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1378), 9, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [158682] = 15, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [160524] = 8, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10367), 1, - anon_sym_SLASH_SLASH, - ACTIONS(10373), 1, - anon_sym_in, - ACTIONS(10379), 1, - anon_sym_bit_DASHand, - STATE(5619), 1, + ACTIONS(1181), 1, + anon_sym_LF, + STATE(5232), 1, sym_comment, - ACTIONS(10359), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10361), 2, + ACTIONS(9945), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10365), 2, + ACTIONS(9949), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10369), 2, + ACTIONS(9951), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10377), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10363), 3, + ACTIONS(9947), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(10375), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1376), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(10371), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1378), 8, - anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_SLASH_SLASH, + ACTIONS(1179), 23, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH_DASH, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [158750] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10367), 1, - anon_sym_SLASH_SLASH, - ACTIONS(10373), 1, anon_sym_in, - ACTIONS(10379), 1, - anon_sym_bit_DASHand, - ACTIONS(10381), 1, - anon_sym_bit_DASHxor, - STATE(5620), 1, - sym_comment, - ACTIONS(10359), 2, - anon_sym_GT, + anon_sym_RBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, - ACTIONS(10361), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10365), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10369), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10377), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10363), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(10375), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1376), 4, - sym_identifier, + 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, - ACTIONS(10371), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1378), 7, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_bit_DASHor, - [158820] = 17, - ACTIONS(3), 1, + [160577] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10367), 1, - anon_sym_SLASH_SLASH, - ACTIONS(10373), 1, - anon_sym_in, - ACTIONS(10379), 1, - anon_sym_bit_DASHand, - ACTIONS(10381), 1, - anon_sym_bit_DASHxor, - ACTIONS(10383), 1, - anon_sym_bit_DASHor, - STATE(5621), 1, + ACTIONS(1173), 1, + anon_sym_LF, + STATE(5233), 1, sym_comment, - ACTIONS(10359), 2, + ACTIONS(1171), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, - anon_sym_LT2, - ACTIONS(10361), 2, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10365), 2, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10369), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10377), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10363), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(10375), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1376), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(10371), 4, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1378), 6, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [158892] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10367), 1, - anon_sym_SLASH_SLASH, - ACTIONS(10373), 1, - anon_sym_in, - ACTIONS(10379), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(10381), 1, anon_sym_bit_DASHxor, - ACTIONS(10383), 1, anon_sym_bit_DASHor, - ACTIONS(10385), 1, anon_sym_and, - STATE(5622), 1, + anon_sym_xor, + anon_sym_or, + [160622] = 11, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1181), 1, + anon_sym_LF, + STATE(5234), 1, sym_comment, - ACTIONS(10359), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10361), 2, + ACTIONS(9945), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10365), 2, + ACTIONS(9949), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10369), 2, + ACTIONS(9951), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10377), 2, + ACTIONS(9961), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1376), 3, - sym_identifier, - anon_sym_xor, - anon_sym_or, - ACTIONS(10363), 3, + ACTIONS(9947), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(10375), 3, + anon_sym_SLASH_SLASH, + ACTIONS(9959), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(10371), 4, + ACTIONS(9943), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1378), 6, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(1179), 11, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, anon_sym_DASH_DASH, - [158966] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10367), 1, - anon_sym_SLASH_SLASH, - ACTIONS(10373), 1, - anon_sym_in, - ACTIONS(10379), 1, + anon_sym_RBRACE, anon_sym_bit_DASHand, - ACTIONS(10381), 1, anon_sym_bit_DASHxor, - ACTIONS(10383), 1, anon_sym_bit_DASHor, - ACTIONS(10385), 1, anon_sym_and, - ACTIONS(10387), 1, anon_sym_xor, - STATE(5623), 1, - sym_comment, - ACTIONS(1376), 2, - sym_identifier, anon_sym_or, - ACTIONS(10359), 2, + [160681] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1173), 1, + anon_sym_LF, + STATE(5235), 1, + sym_comment, + ACTIONS(1171), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, - anon_sym_LT2, - ACTIONS(10361), 2, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10365), 2, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10369), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10377), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10363), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(10375), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10371), 4, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1378), 6, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [159042] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1376), 1, - sym_identifier, - ACTIONS(10367), 1, - anon_sym_SLASH_SLASH, - ACTIONS(10373), 1, - anon_sym_in, - ACTIONS(10379), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(10381), 1, anon_sym_bit_DASHxor, - ACTIONS(10383), 1, anon_sym_bit_DASHor, - ACTIONS(10385), 1, anon_sym_and, - ACTIONS(10387), 1, anon_sym_xor, - ACTIONS(10389), 1, anon_sym_or, - STATE(5624), 1, + [160726] = 12, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1181), 1, + anon_sym_LF, + ACTIONS(9963), 1, + anon_sym_bit_DASHand, + STATE(5236), 1, sym_comment, - ACTIONS(10359), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10361), 2, + ACTIONS(9945), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10365), 2, + ACTIONS(9949), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10369), 2, + ACTIONS(9951), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10377), 2, + ACTIONS(9961), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10363), 3, + ACTIONS(9947), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(10375), 3, + anon_sym_SLASH_SLASH, + ACTIONS(9959), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(10371), 4, + ACTIONS(9943), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1378), 6, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(1179), 10, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, anon_sym_DASH_DASH, - [159120] = 5, - ACTIONS(3), 1, + anon_sym_RBRACE, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [160787] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10391), 1, - anon_sym_QMARK2, - STATE(5625), 1, + ACTIONS(1173), 1, + anon_sym_LF, + STATE(5237), 1, sym_comment, - ACTIONS(1070), 13, - sym_identifier, + ACTIONS(1171), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1072), 21, - anon_sym_DOLLAR, - anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -488594,17 +449484,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [159168] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [160832] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5626), 1, - sym_comment, - ACTIONS(1119), 2, - anon_sym_DOT, + ACTIONS(1173), 1, aux_sym_command_token1, - ACTIONS(1117), 33, + STATE(5238), 1, + sym_comment, + ACTIONS(1171), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -488638,37 +449528,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [159214] = 5, - ACTIONS(3), 1, + [160877] = 13, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10391), 1, - anon_sym_QMARK2, - STATE(5627), 1, + ACTIONS(1181), 1, + anon_sym_LF, + ACTIONS(9963), 1, + anon_sym_bit_DASHand, + ACTIONS(9965), 1, + anon_sym_bit_DASHxor, + STATE(5239), 1, sym_comment, - ACTIONS(1070), 13, - sym_identifier, - anon_sym_GT, - anon_sym_in, + ACTIONS(9945), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9949), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9951), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9961), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9947), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_PLUS, + anon_sym_SLASH_SLASH, + ACTIONS(9959), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9943), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1179), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1072), 21, - anon_sym_DOLLAR, + [160940] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1173), 1, + anon_sym_LF, + STATE(5240), 1, + sym_comment, + ACTIONS(1171), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -488679,39 +449616,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [159262] = 5, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [160985] = 14, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10312), 1, - anon_sym_QMARK2, - STATE(5628), 1, + ACTIONS(1181), 1, + anon_sym_LF, + ACTIONS(9963), 1, + anon_sym_bit_DASHand, + ACTIONS(9965), 1, + anon_sym_bit_DASHxor, + ACTIONS(9967), 1, + anon_sym_bit_DASHor, + STATE(5241), 1, sym_comment, - ACTIONS(1070), 14, - sym_identifier, - anon_sym_GT, + ACTIONS(9945), 2, anon_sym_DASH, - anon_sym_in, + anon_sym_PLUS, + ACTIONS(9949), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9951), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9961), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9947), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_PLUS, + anon_sym_SLASH_SLASH, + ACTIONS(9959), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9943), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1179), 8, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1072), 20, + [161050] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1173), 1, + anon_sym_LF, + STATE(5242), 1, + sym_comment, + ACTIONS(1171), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -488722,28 +449708,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [159310] = 7, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [161095] = 15, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10099), 1, - anon_sym_DOT, - STATE(5629), 1, + ACTIONS(1181), 1, + anon_sym_LF, + ACTIONS(9963), 1, + anon_sym_bit_DASHand, + ACTIONS(9965), 1, + anon_sym_bit_DASHxor, + ACTIONS(9967), 1, + anon_sym_bit_DASHor, + ACTIONS(9969), 1, + anon_sym_and, + STATE(5243), 1, sym_comment, - STATE(5630), 1, - sym_path, - STATE(6391), 1, - sym_cell_path, - ACTIONS(1150), 2, - ts_builtin_sym_end, + ACTIONS(9945), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9949), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9951), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9961), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9947), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(9959), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9943), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1179), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_xor, + anon_sym_or, + [161162] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1173), 1, anon_sym_LF, - ACTIONS(1148), 30, + STATE(5244), 1, + sym_comment, + ACTIONS(1171), 33, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -488769,26 +449804,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [159362] = 7, + [161207] = 16, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10099), 1, - anon_sym_DOT, - STATE(5569), 1, - aux_sym_cell_path_repeat1, - STATE(5630), 1, + ACTIONS(1181), 1, + anon_sym_LF, + ACTIONS(9963), 1, + anon_sym_bit_DASHand, + ACTIONS(9965), 1, + anon_sym_bit_DASHxor, + ACTIONS(9967), 1, + anon_sym_bit_DASHor, + ACTIONS(9969), 1, + anon_sym_and, + ACTIONS(9971), 1, + anon_sym_xor, + STATE(5245), 1, sym_comment, - STATE(6234), 1, - sym_path, - ACTIONS(989), 2, - ts_builtin_sym_end, + ACTIONS(9945), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9949), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9951), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9961), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9947), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(9959), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1179), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_or, + ACTIONS(9943), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [161276] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1173), 1, anon_sym_LF, - ACTIONS(987), 30, + STATE(5246), 1, + sym_comment, + ACTIONS(1171), 33, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -488814,43 +449898,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [159414] = 9, - ACTIONS(3), 1, + [161321] = 17, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10300), 1, - anon_sym_SLASH_SLASH, - STATE(5631), 1, + ACTIONS(1181), 1, + anon_sym_LF, + ACTIONS(9963), 1, + anon_sym_bit_DASHand, + ACTIONS(9965), 1, + anon_sym_bit_DASHxor, + ACTIONS(9967), 1, + anon_sym_bit_DASHor, + ACTIONS(9969), 1, + anon_sym_and, + ACTIONS(9971), 1, + anon_sym_xor, + ACTIONS(9973), 1, + anon_sym_or, + STATE(5247), 1, sym_comment, - ACTIONS(10294), 2, + ACTIONS(9945), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10298), 2, + ACTIONS(9949), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10302), 2, + ACTIONS(9951), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10296), 3, + ACTIONS(9961), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9947), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(1376), 7, - sym_identifier, - anon_sym_GT, + anon_sym_SLASH_SLASH, + ACTIONS(9959), 4, anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1179), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + ACTIONS(9943), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1378), 18, - anon_sym_COLON, - anon_sym_COMMA, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [161392] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1173), 1, + anon_sym_LF, + STATE(5248), 1, + sym_comment, + ACTIONS(1171), 33, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_GT, anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -488861,12 +449990,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [159470] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [161437] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5632), 1, + STATE(5249), 1, sym_comment, - ACTIONS(4000), 11, + ACTIONS(1068), 11, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -488878,7 +450010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4002), 23, + ACTIONS(1070), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -488902,63 +450034,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [159515] = 12, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1378), 1, - aux_sym_command_token1, - ACTIONS(10407), 1, - anon_sym_bit_DASHand, - STATE(5633), 1, - sym_comment, - ACTIONS(10395), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10401), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10403), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10405), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10397), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10399), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10393), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1376), 10, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [159576] = 4, + [161482] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, + ACTIONS(1173), 1, aux_sym_command_token1, - STATE(5634), 1, + STATE(5250), 1, sym_comment, - ACTIONS(1368), 33, + ACTIONS(1171), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -488992,14 +450075,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [159621] = 4, + [161527] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1314), 1, + ACTIONS(1173), 1, aux_sym_command_token1, - STATE(5635), 1, + STATE(5251), 1, sym_comment, - ACTIONS(1312), 33, + ACTIONS(1171), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -489007,6 +450090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -489032,24 +450116,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LF2, - [159666] = 4, + [161572] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, - aux_sym_command_token1, - STATE(5636), 1, + STATE(5252), 1, sym_comment, - ACTIONS(1368), 33, - anon_sym_SEMI, + ACTIONS(1022), 3, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_RPAREN, + anon_sym_DOT, + ACTIONS(1020), 31, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -489074,19 +450157,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [159711] = 4, + [161617] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1348), 1, - anon_sym_LF, - STATE(5637), 1, + ACTIONS(1173), 1, + aux_sym_command_token1, + STATE(5253), 1, sym_comment, - ACTIONS(1346), 33, + ACTIONS(1171), 33, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -489115,25 +450198,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [159756] = 7, + [161662] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1196), 1, - sym__entry_separator, - ACTIONS(10409), 1, - anon_sym_DOT_DOT2, - STATE(5638), 1, + STATE(5254), 1, sym_comment, - ACTIONS(1194), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(10411), 2, + ACTIONS(1063), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1198), 28, + sym__entry_separator, + ACTIONS(1061), 31, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -489159,123 +450238,222 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [159807] = 13, + anon_sym_DOT_DOT2, + [161707] = 15, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1378), 1, + ACTIONS(1181), 1, aux_sym_command_token1, - ACTIONS(10407), 1, + ACTIONS(9937), 1, anon_sym_bit_DASHand, - ACTIONS(10413), 1, + ACTIONS(9939), 1, anon_sym_bit_DASHxor, - STATE(5639), 1, + ACTIONS(9941), 1, + anon_sym_bit_DASHor, + ACTIONS(9975), 1, + anon_sym_and, + STATE(5255), 1, sym_comment, - ACTIONS(10395), 2, + ACTIONS(9925), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10401), 2, + ACTIONS(9931), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10403), 2, + ACTIONS(9933), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10405), 2, + ACTIONS(9935), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10397), 4, + ACTIONS(9927), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(10399), 4, + ACTIONS(9929), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10393), 6, + ACTIONS(9923), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1376), 9, + ACTIONS(1179), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_bit_DASHor, - anon_sym_and, anon_sym_xor, anon_sym_or, - [159870] = 14, + [161774] = 16, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1378), 1, + ACTIONS(1181), 1, aux_sym_command_token1, - ACTIONS(10407), 1, + ACTIONS(9937), 1, anon_sym_bit_DASHand, - ACTIONS(10413), 1, + ACTIONS(9939), 1, anon_sym_bit_DASHxor, - ACTIONS(10415), 1, + ACTIONS(9941), 1, anon_sym_bit_DASHor, - STATE(5640), 1, + ACTIONS(9975), 1, + anon_sym_and, + ACTIONS(9977), 1, + anon_sym_xor, + STATE(5256), 1, sym_comment, - ACTIONS(10395), 2, + ACTIONS(9925), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10401), 2, + ACTIONS(9931), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10403), 2, + ACTIONS(9933), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10405), 2, + ACTIONS(9935), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10397), 4, + ACTIONS(9927), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(10399), 4, + ACTIONS(9929), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10393), 6, + ACTIONS(1179), 6, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_or, + ACTIONS(9923), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1376), 8, + [161843] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5257), 1, + sym_comment, + ACTIONS(2229), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + ACTIONS(2231), 23, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_not, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [161888] = 17, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1181), 1, + aux_sym_command_token1, + ACTIONS(9937), 1, + anon_sym_bit_DASHand, + ACTIONS(9939), 1, + anon_sym_bit_DASHxor, + ACTIONS(9941), 1, + anon_sym_bit_DASHor, + ACTIONS(9975), 1, + anon_sym_and, + ACTIONS(9977), 1, + anon_sym_xor, + ACTIONS(9979), 1, + anon_sym_or, + STATE(5258), 1, + sym_comment, + ACTIONS(9925), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9931), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9933), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9935), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9927), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9929), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1179), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [159935] = 4, + ACTIONS(9923), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [161959] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1249), 1, - anon_sym_LF, - STATE(5641), 1, + STATE(5259), 1, sym_comment, - ACTIONS(1247), 33, + ACTIONS(1157), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(1155), 32, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LF, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -489301,18 +450479,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [159980] = 4, + aux_sym_unquoted_token6, + [162004] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5260), 1, + sym_comment, + ACTIONS(2362), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + ACTIONS(2364), 23, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_not, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [162049] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9981), 1, + anon_sym_LBRACK2, + STATE(5261), 1, + sym_comment, + ACTIONS(1145), 13, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1143), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [162096] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5262), 1, + sym_comment, + ACTIONS(2402), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + ACTIONS(2404), 23, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_not, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [162141] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, - aux_sym_command_token1, - STATE(5642), 1, + ACTIONS(9983), 1, + anon_sym_QMARK2, + STATE(5263), 1, sym_comment, - ACTIONS(1368), 33, + ACTIONS(1026), 2, + anon_sym_DOT, + sym__entry_separator, + ACTIONS(1024), 31, anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -489342,18 +450646,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [160025] = 4, + [162188] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, - aux_sym_command_token1, - STATE(5643), 1, + ACTIONS(9983), 1, + anon_sym_QMARK2, + STATE(5264), 1, sym_comment, - ACTIONS(1368), 33, + ACTIONS(1026), 2, + anon_sym_DOT, + sym__entry_separator, + ACTIONS(1024), 31, anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -489383,68 +450688,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [160070] = 15, + [162235] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1378), 1, + ACTIONS(1157), 1, aux_sym_command_token1, - ACTIONS(10407), 1, - anon_sym_bit_DASHand, - ACTIONS(10413), 1, - anon_sym_bit_DASHxor, - ACTIONS(10415), 1, - anon_sym_bit_DASHor, - ACTIONS(10417), 1, - anon_sym_and, - STATE(5644), 1, + STATE(5265), 1, sym_comment, - ACTIONS(10395), 2, + ACTIONS(1155), 33, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10401), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10403), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10405), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10397), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10399), 4, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10393), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1376), 7, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, anon_sym_xor, anon_sym_or, - [160137] = 4, + [162280] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5645), 1, + STATE(5266), 1, sym_comment, - ACTIONS(1111), 3, + ACTIONS(1049), 3, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT, - ACTIONS(1109), 31, + ACTIONS(1047), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -489476,201 +450770,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [160182] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10419), 1, - anon_sym_DOT, - STATE(5646), 1, - sym_comment, - STATE(5762), 1, - sym_path, - STATE(6535), 1, - sym_cell_path, - ACTIONS(1154), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1156), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [160233] = 6, + [162325] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10421), 1, - anon_sym_DOT, - ACTIONS(10424), 1, - aux_sym__immediate_decimal_token2, - STATE(5647), 1, - sym_comment, - ACTIONS(2581), 9, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(2583), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [160282] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - ACTIONS(4037), 1, - anon_sym_LPAREN2, - ACTIONS(10426), 1, - aux_sym_command_token1, - STATE(5648), 1, + ACTIONS(8820), 1, + aux_sym_unquoted_token5, + STATE(5267), 1, sym_comment, - ACTIONS(4035), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, + ACTIONS(940), 13, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [160331] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1310), 1, - anon_sym_LF, - STATE(5649), 1, - sym_comment, - ACTIONS(1308), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(938), 20, + sym_cmd_identifier, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [160376] = 4, + [162372] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(5650), 1, + ACTIONS(3775), 1, + anon_sym_LPAREN2, + STATE(5268), 1, sym_comment, - ACTIONS(1172), 11, + ACTIONS(1886), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(3771), 9, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1174), 23, + ACTIONS(3773), 22, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_not, - 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, @@ -489688,33 +450855,37 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [160421] = 4, - ACTIONS(113), 1, + [162421] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5651), 1, - sym_comment, - ACTIONS(1282), 3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1280), 31, - sym_cmd_identifier, + ACTIONS(9921), 1, + anon_sym_DOT, + STATE(5269), 1, + sym_comment, + STATE(5367), 1, + aux_sym_cell_path_repeat1, + STATE(5943), 1, + sym_path, + ACTIONS(1006), 6, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1008), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -489728,17 +450899,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - aux_sym_unquoted_token6, - [160466] = 4, + [162472] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, - aux_sym_command_token1, - STATE(5652), 1, + STATE(5270), 1, sym_comment, - ACTIONS(1368), 33, - anon_sym_SEMI, + ACTIONS(1039), 2, anon_sym_LF, + anon_sym_DOT, + ACTIONS(1037), 32, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, @@ -489770,22 +450940,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [160511] = 4, + [162517] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1314), 1, - anon_sym_LF, - STATE(5653), 1, + STATE(5271), 1, sym_comment, - ACTIONS(1312), 33, + ACTIONS(1209), 3, + ts_builtin_sym_end, + anon_sym_LPAREN2, + aux_sym_command_token1, + ACTIONS(1139), 31, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LF, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -489811,22 +450981,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [160556] = 4, + [162562] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(961), 1, - aux_sym_command_token1, - STATE(5654), 1, + ACTIONS(9985), 1, + anon_sym_LBRACK2, + STATE(5272), 1, sym_comment, - ACTIONS(959), 33, - anon_sym_SEMI, + ACTIONS(1145), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_RPAREN, + ACTIONS(1143), 31, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -489852,34 +451023,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [160601] = 4, - ACTIONS(113), 1, + [162609] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1370), 1, - aux_sym_command_token1, - STATE(5655), 1, + ACTIONS(1078), 1, + anon_sym_DASH, + ACTIONS(9987), 1, + anon_sym_DOT_DOT2, + STATE(5273), 1, sym_comment, - ACTIONS(1368), 33, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(9989), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1074), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(1076), 5, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1169), 22, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -489893,69 +451068,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [160646] = 16, - ACTIONS(113), 1, + [162662] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1378), 1, - aux_sym_command_token1, - ACTIONS(10407), 1, - anon_sym_bit_DASHand, - ACTIONS(10413), 1, - anon_sym_bit_DASHxor, - ACTIONS(10415), 1, - anon_sym_bit_DASHor, - ACTIONS(10417), 1, - anon_sym_and, - ACTIONS(10428), 1, - anon_sym_xor, - STATE(5656), 1, + ACTIONS(9991), 1, + anon_sym_DOT, + STATE(5274), 1, sym_comment, - ACTIONS(10395), 2, + STATE(5386), 1, + sym_path, + STATE(6001), 1, + sym_cell_path, + ACTIONS(1051), 8, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10401), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10403), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10405), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10397), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10399), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1376), 6, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_or, - ACTIONS(10393), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [160715] = 5, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1053), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [162713] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5275), 1, + sym_comment, + ACTIONS(3767), 11, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3769), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [162758] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(1161), 1, anon_sym_LF, - ACTIONS(9206), 1, - aux_sym_unquoted_token5, - STATE(5657), 1, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + STATE(5276), 1, sym_comment, - ACTIONS(959), 32, + ACTIONS(1159), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -489988,70 +451195,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [160762] = 17, + [162805] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1378), 1, - aux_sym_command_token1, - ACTIONS(10407), 1, - anon_sym_bit_DASHand, - ACTIONS(10413), 1, - anon_sym_bit_DASHxor, - ACTIONS(10415), 1, - anon_sym_bit_DASHor, - ACTIONS(10417), 1, - anon_sym_and, - ACTIONS(10428), 1, - anon_sym_xor, - ACTIONS(10430), 1, - anon_sym_or, - STATE(5658), 1, - sym_comment, - ACTIONS(10395), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10401), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10403), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10405), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10397), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10399), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1376), 5, - anon_sym_SEMI, + ACTIONS(1091), 1, anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(10393), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [160833] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1370), 1, - aux_sym_command_token1, - STATE(5659), 1, + ACTIONS(1149), 1, + aux_sym_unquoted_token6, + STATE(5277), 1, sym_comment, - ACTIONS(1368), 33, + ACTIONS(1089), 32, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, @@ -490083,32 +451237,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [160878] = 6, + [162852] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7133), 1, - anon_sym_DOT_DOT2, - STATE(5660), 1, + ACTIONS(9991), 1, + anon_sym_DOT, + STATE(5278), 1, sym_comment, - ACTIONS(7135), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(4016), 10, + STATE(5386), 1, + sym_path, + STATE(6094), 1, + sym_cell_path, + ACTIONS(1093), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4018), 21, + ACTIONS(1095), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -490126,19 +451281,21 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [160927] = 4, + [162903] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1408), 1, - aux_sym_command_token1, - STATE(5661), 1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + STATE(5279), 1, sym_comment, - ACTIONS(1406), 33, - anon_sym_SEMI, + ACTIONS(1131), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_RPAREN, + ACTIONS(1129), 31, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -490166,78 +451323,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LF2, - [160972] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9253), 1, - aux_sym_unquoted_token5, - STATE(5662), 1, - sym_comment, - ACTIONS(961), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(959), 20, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [161019] = 4, - ACTIONS(3), 1, + [162950] = 5, + ACTIONS(113), 1, anon_sym_POUND, - STATE(5663), 1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + STATE(5280), 1, sym_comment, - ACTIONS(1117), 14, - sym_identifier, + ACTIONS(1137), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1135), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1119), 20, - anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -490248,27 +451362,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [161064] = 7, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [162997] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10432), 1, + ACTIONS(9921), 1, anon_sym_DOT, - STATE(5664), 1, + STATE(5281), 1, sym_comment, - STATE(5684), 1, + STATE(5435), 1, sym_path, - STATE(6459), 1, + STATE(6127), 1, sym_cell_path, - ACTIONS(1190), 6, + ACTIONS(1051), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1192), 25, + ACTIONS(1053), 25, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, @@ -490294,63 +451409,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [161115] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(5665), 1, - sym_comment, - ACTIONS(1174), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1172), 31, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - [161160] = 4, + [163048] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(5666), 1, + ACTIONS(1145), 1, + anon_sym_LF, + ACTIONS(9993), 1, + anon_sym_LBRACK2, + STATE(5282), 1, sym_comment, - ACTIONS(1111), 3, - ts_builtin_sym_end, - anon_sym_DOT, - aux_sym_command_token1, - ACTIONS(1109), 31, + ACTIONS(1143), 32, anon_sym_SEMI, - anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -490376,75 +451451,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [161205] = 4, - ACTIONS(113), 1, + [163095] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1188), 1, - anon_sym_LF, - STATE(5667), 1, + STATE(5283), 1, sym_comment, - ACTIONS(1186), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1061), 7, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [161250] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(10434), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(5668), 1, - sym_comment, - ACTIONS(1243), 33, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, + anon_sym_DOT_DOT2, + ACTIONS(1063), 27, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -490458,30 +451490,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [161295] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [163140] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(5669), 1, + ACTIONS(3648), 1, + anon_sym_LPAREN2, + STATE(5284), 1, sym_comment, - ACTIONS(1168), 11, + ACTIONS(3650), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(3644), 9, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1170), 23, + ACTIONS(3646), 22, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_not, - 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, @@ -490499,23 +451535,23 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [161340] = 4, + [163189] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1366), 1, - anon_sym_LF, - STATE(5670), 1, + STATE(5285), 1, sym_comment, - ACTIONS(1198), 33, + ACTIONS(1231), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT, + ACTIONS(1229), 31, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -490540,23 +451576,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [161385] = 4, + [163234] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5671), 1, + STATE(5286), 1, sym_comment, - ACTIONS(1115), 3, + ACTIONS(1035), 3, ts_builtin_sym_end, + anon_sym_LF, anon_sym_DOT, - aux_sym_command_token1, - ACTIONS(1113), 31, + ACTIONS(1033), 31, anon_sym_SEMI, - anon_sym_LF, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -490581,16 +451617,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [161430] = 4, + [163279] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1318), 1, - aux_sym_command_token1, - STATE(5672), 1, + ACTIONS(1131), 1, + anon_sym_LF, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + STATE(5287), 1, sym_comment, - ACTIONS(1316), 33, + ACTIONS(1129), 32, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, @@ -490622,38 +451659,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [161475] = 8, - ACTIONS(3), 1, + [163326] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10353), 1, - sym_filesize_unit, - ACTIONS(10355), 1, - sym_duration_unit, - ACTIONS(10436), 1, - anon_sym_DOT_DOT2, - STATE(5673), 1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + ACTIONS(1137), 1, + anon_sym_LF, + STATE(5288), 1, sym_comment, - ACTIONS(10438), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(959), 5, + ACTIONS(1135), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(961), 24, anon_sym_DASH, anon_sym_in, - anon_sym_EQ_GT, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -490667,23 +451701,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [161528] = 4, + [163373] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1160), 1, - aux_sym_command_token1, - STATE(5674), 1, + STATE(5289), 1, sym_comment, - ACTIONS(1158), 33, + ACTIONS(1035), 2, + anon_sym_DOT, + sym__entry_separator, + ACTIONS(1033), 32, anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -490708,24 +451742,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [161573] = 5, + [163418] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1196), 1, - aux_sym_command_token1, - STATE(5675), 1, + STATE(5290), 1, sym_comment, - ACTIONS(1194), 5, + ACTIONS(1022), 2, + anon_sym_DOT, + sym__entry_separator, + ACTIONS(1020), 32, anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_LF2, - ACTIONS(1198), 28, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -490750,22 +451783,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [161620] = 4, + [163463] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1282), 1, - anon_sym_LF, - STATE(5676), 1, + STATE(5291), 1, sym_comment, - ACTIONS(1280), 33, + ACTIONS(1039), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT, + ACTIONS(1037), 31, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -490791,39 +451824,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [161665] = 9, + [163508] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9991), 1, + anon_sym_DOT, + STATE(5292), 1, + sym_comment, + STATE(5386), 1, + sym_path, + STATE(6172), 1, + sym_cell_path, + ACTIONS(1057), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1059), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [163559] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1378), 1, - anon_sym_LF, - STATE(5677), 1, + ACTIONS(1181), 1, + aux_sym_command_token1, + STATE(5293), 1, sym_comment, - ACTIONS(10442), 2, + ACTIONS(9925), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10446), 2, + ACTIONS(9931), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10448), 2, + ACTIONS(9933), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10444), 4, + ACTIONS(9929), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10440), 6, + ACTIONS(9923), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1376), 17, + ACTIONS(1179), 17, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, anon_sym_in, anon_sym_RBRACE, anon_sym_not_DASHin, @@ -490837,22 +451914,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [161720] = 6, - ACTIONS(113), 1, + [163614] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10450), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10452), 1, + ACTIONS(9995), 1, + aux_sym__immediate_decimal_token2, + STATE(5294), 1, + sym_comment, + ACTIONS(2356), 10, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, aux_sym_unquoted_token2, - STATE(5678), 1, + ACTIONS(2358), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [163661] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(8643), 1, + aux_sym_unquoted_token5, + STATE(5295), 1, sym_comment, - ACTIONS(938), 2, + ACTIONS(940), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(936), 30, + ACTIONS(938), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -490880,22 +451998,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [161769] = 4, + [163708] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9913), 1, + aux_sym__immediate_decimal_token2, + STATE(5296), 1, + sym_comment, + ACTIONS(2229), 10, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + ACTIONS(2231), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [163755] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(5679), 1, + ACTIONS(1149), 1, + aux_sym_unquoted_token6, + STATE(5297), 1, sym_comment, - ACTIONS(938), 2, + ACTIONS(1091), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_LPAREN2, - ACTIONS(936), 32, + ACTIONS(1089), 31, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -490921,32 +452082,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [161814] = 6, + [163802] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10454), 1, - anon_sym_DOT_DOT2, - STATE(5680), 1, + ACTIONS(9997), 1, + aux_sym__immediate_decimal_token2, + STATE(5298), 1, sym_comment, - ACTIONS(10456), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3866), 10, + ACTIONS(2362), 10, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3868), 21, + aux_sym_unquoted_token2, + ACTIONS(2364), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -490964,21 +452124,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [161863] = 5, + [163849] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1196), 1, - aux_sym_command_token1, - STATE(5681), 1, + STATE(5299), 1, sym_comment, - ACTIONS(1194), 5, - anon_sym_SEMI, + ACTIONS(1043), 3, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_RPAREN, + anon_sym_DOT, + ACTIONS(1041), 31, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(1198), 28, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -491006,35 +452165,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [161910] = 5, - ACTIONS(113), 1, + [163894] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10458), 1, - anon_sym_LBRACK2, - STATE(5682), 1, + STATE(5300), 1, sym_comment, - ACTIONS(1261), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1259), 31, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1068), 7, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT2, + ACTIONS(1070), 27, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -491048,68 +452204,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [161957] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5683), 1, - sym_comment, - ACTIONS(3505), 11, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(3507), 23, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_not, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [162002] = 7, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [163939] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10432), 1, - anon_sym_DOT, - STATE(5684), 1, + ACTIONS(9873), 1, + sym_filesize_unit, + ACTIONS(9875), 1, + sym_duration_unit, + ACTIONS(9999), 1, + anon_sym_DOT_DOT2, + STATE(5301), 1, sym_comment, - STATE(5729), 1, - aux_sym_cell_path_repeat1, - STATE(6289), 1, - sym_path, - ACTIONS(987), 6, + ACTIONS(10001), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(938), 5, anon_sym_GT, - anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(989), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(940), 24, + anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, anon_sym_STAR_STAR, @@ -491133,18 +452251,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [162053] = 6, + [163992] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3522), 1, - anon_sym_LPAREN2, - STATE(5685), 1, - sym_comment, - ACTIONS(1934), 2, + ACTIONS(9991), 1, anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(3518), 9, - anon_sym_LPAREN, + STATE(5302), 1, + sym_comment, + STATE(5386), 1, + sym_path, + STATE(6102), 1, + sym_cell_path, + ACTIONS(1097), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -491153,8 +452271,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3520), 22, + ACTIONS(1099), 23, anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_not, anon_sym_DOT_DOT_EQ, @@ -491176,21 +452295,25 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [162102] = 4, + [164043] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1282), 1, - aux_sym_command_token1, - STATE(5686), 1, + ACTIONS(994), 1, + sym__entry_separator, + ACTIONS(9744), 1, + anon_sym_DOT, + STATE(5144), 1, + sym_path, + STATE(5303), 1, sym_comment, - ACTIONS(1280), 33, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, + STATE(5418), 1, + sym_cell_path, + ACTIONS(992), 30, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -491216,38 +452339,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LF2, - [162147] = 7, - ACTIONS(3), 1, + [164094] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10432), 1, - anon_sym_DOT, - STATE(5684), 1, - sym_path, - STATE(5687), 1, + STATE(5304), 1, sym_comment, - STATE(6465), 1, - sym_cell_path, - ACTIONS(1186), 6, + ACTIONS(940), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT, + ACTIONS(938), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, + anon_sym_in, anon_sym_STAR, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, - ACTIONS(1188), 25, - anon_sym_DOLLAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [164139] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1177), 1, + anon_sym_LF, + STATE(5305), 1, + sym_comment, + ACTIONS(1175), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -491261,19 +452421,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [162198] = 4, + [164184] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5306), 1, + sym_comment, + ACTIONS(3721), 11, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3723), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [164229] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1192), 1, - anon_sym_LF, - STATE(5688), 1, + ACTIONS(1177), 1, + aux_sym_command_token1, + STATE(5307), 1, sym_comment, - ACTIONS(1190), 33, + ACTIONS(1175), 33, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -491302,32 +452503,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [162243] = 4, - ACTIONS(3), 1, + [164274] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(5689), 1, + STATE(5308), 1, sym_comment, - ACTIONS(1172), 7, + ACTIONS(1157), 3, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1155), 31, + sym_cmd_identifier, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_in, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + aux_sym_unquoted_token6, + [164319] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10003), 1, anon_sym_DOT_DOT2, - ACTIONS(1174), 27, + STATE(5309), 1, + sym_comment, + ACTIONS(10005), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3691), 10, anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3693), 21, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [164368] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10007), 1, + anon_sym_DOT_DOT2, + STATE(5310), 1, + sym_comment, + ACTIONS(10009), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3699), 10, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3701), 21, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [164417] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1251), 1, + aux_sym_command_token1, + STATE(5311), 1, + sym_comment, + ACTIONS(1249), 33, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -491341,21 +452671,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [162288] = 4, + [164462] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1334), 1, - anon_sym_LF, - STATE(5690), 1, + ACTIONS(1285), 1, + aux_sym_command_token1, + STATE(5312), 1, sym_comment, - ACTIONS(1332), 33, + ACTIONS(1283), 33, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -491384,19 +452712,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [162333] = 4, + [164507] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, - anon_sym_LF, - STATE(5691), 1, + STATE(5313), 1, sym_comment, - ACTIONS(1368), 33, + ACTIONS(1049), 2, + anon_sym_LF, + anon_sym_DOT, + ACTIONS(1047), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -491425,18 +452753,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [162378] = 4, + [164552] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1314), 1, - aux_sym_command_token1, - STATE(5692), 1, + ACTIONS(1053), 1, + sym__entry_separator, + ACTIONS(9744), 1, + anon_sym_DOT, + STATE(5144), 1, + sym_path, + STATE(5314), 1, sym_comment, - ACTIONS(1312), 33, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, + STATE(5988), 1, + sym_cell_path, + ACTIONS(1051), 30, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -491466,18 +452797,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [162423] = 6, + [164603] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2847), 1, - anon_sym_LPAREN2, - STATE(5693), 1, - sym_comment, - ACTIONS(2851), 2, + ACTIONS(9991), 1, anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(2843), 9, - anon_sym_LPAREN, + STATE(5315), 1, + sym_comment, + STATE(5386), 1, + sym_path, + STATE(6106), 1, + sym_cell_path, + ACTIONS(1101), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -491486,8 +452817,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2845), 22, + ACTIONS(1103), 23, anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_not, anon_sym_DOT_DOT_EQ, @@ -491509,117 +452841,21 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [162472] = 4, + [164654] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1255), 1, - anon_sym_LF, - STATE(5694), 1, + STATE(5316), 1, sym_comment, - ACTIONS(1253), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [162517] = 17, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1378), 1, + ACTIONS(1157), 2, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(10464), 1, - anon_sym_bit_DASHand, - ACTIONS(10466), 1, - anon_sym_bit_DASHxor, - ACTIONS(10468), 1, - anon_sym_bit_DASHor, - ACTIONS(10470), 1, - anon_sym_and, - ACTIONS(10472), 1, - anon_sym_xor, - ACTIONS(10474), 1, - anon_sym_or, - STATE(5695), 1, - sym_comment, - ACTIONS(10442), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10446), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10448), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10462), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10444), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10460), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1376), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - ACTIONS(10440), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [162588] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1296), 1, - aux_sym_command_token1, - STATE(5696), 1, - sym_comment, - ACTIONS(1294), 33, + ACTIONS(1155), 32, anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -491645,33 +452881,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [162633] = 7, + aux_sym_unquoted_token6, + [164699] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10419), 1, - anon_sym_DOT, - STATE(5697), 1, + ACTIONS(10011), 1, + anon_sym_DOT_DOT2, + STATE(5317), 1, sym_comment, - STATE(5762), 1, - sym_path, - STATE(6468), 1, - sym_cell_path, - ACTIONS(1203), 8, + ACTIONS(10013), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3711), 10, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1205), 23, + ACTIONS(3713), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -491689,14 +452925,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [162684] = 4, + [164748] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1322), 1, + ACTIONS(940), 1, aux_sym_command_token1, - STATE(5698), 1, + STATE(5318), 1, sym_comment, - ACTIONS(1320), 33, + ACTIONS(938), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -491704,7 +452940,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -491730,70 +452965,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [162729] = 4, - ACTIONS(3), 1, + anon_sym_LF2, + [164793] = 7, + ACTIONS(113), 1, anon_sym_POUND, - STATE(5699), 1, + ACTIONS(1181), 1, + aux_sym_command_token1, + STATE(5319), 1, sym_comment, - ACTIONS(1111), 14, - anon_sym_DASH_DASH, + ACTIONS(9925), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9931), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1109), 20, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, + ACTIONS(9929), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [162774] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1352), 1, - aux_sym_command_token1, - STATE(5700), 1, - sym_comment, - ACTIONS(1350), 33, + anon_sym_SLASH_SLASH, + ACTIONS(1179), 25, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -491812,22 +453010,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [162819] = 4, + [164844] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1338), 1, - anon_sym_LF, - STATE(5701), 1, + ACTIONS(1091), 1, + aux_sym_command_token1, + STATE(5320), 1, sym_comment, - ACTIONS(1336), 33, + ACTIONS(1089), 33, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -491853,18 +453050,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [162864] = 7, + anon_sym_LF2, + [164889] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10419), 1, + ACTIONS(9995), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(10015), 1, anon_sym_DOT, - STATE(5702), 1, + STATE(5321), 1, sym_comment, - STATE(5762), 1, - sym_path, - STATE(6607), 1, - sym_cell_path, - ACTIONS(1148), 8, + ACTIONS(2356), 9, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -491873,7 +453069,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1150), 23, + aux_sym_unquoted_token2, + ACTIONS(2358), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -491897,23 +453094,26 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [162915] = 4, + [164938] = 7, ACTIONS(113), 1, anon_sym_POUND, - STATE(5703), 1, + ACTIONS(1074), 1, + sym__entry_separator, + ACTIONS(9955), 1, + anon_sym_DOT_DOT2, + STATE(5322), 1, sym_comment, - ACTIONS(1065), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT, - ACTIONS(1063), 31, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1072), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(9957), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1076), 28, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -491938,80 +453138,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [162960] = 4, + [164989] = 10, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1374), 1, + ACTIONS(1181), 1, aux_sym_command_token1, - STATE(5704), 1, + STATE(5323), 1, sym_comment, - ACTIONS(1372), 33, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(9925), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(9931), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, + ACTIONS(9933), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(9927), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [163005] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1160), 1, - anon_sym_LF, - STATE(5705), 1, - sym_comment, - ACTIONS(1158), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, + ACTIONS(9929), 4, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(9923), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, + ACTIONS(1179), 13, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_bit_DASHand, @@ -492020,22 +453185,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [163050] = 4, + [165046] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, - anon_sym_LF, - STATE(5706), 1, + ACTIONS(1231), 1, + aux_sym_command_token1, + STATE(5324), 1, sym_comment, - ACTIONS(1368), 33, + ACTIONS(1229), 33, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -492061,20 +453225,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [163095] = 7, + anon_sym_LF2, + [165091] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1205), 1, + ACTIONS(1103), 1, sym__entry_separator, - ACTIONS(10186), 1, + ACTIONS(9744), 1, anon_sym_DOT, - STATE(5501), 1, + STATE(5144), 1, sym_path, - STATE(5707), 1, + STATE(5325), 1, sym_comment, - STATE(6441), 1, + STATE(6201), 1, sym_cell_path, - ACTIONS(1203), 30, + ACTIONS(1101), 30, anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, @@ -492105,14 +453270,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [163146] = 4, + [165142] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10018), 1, + anon_sym_DOT_DOT2, + STATE(5326), 1, + sym_comment, + ACTIONS(10020), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3741), 10, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3743), 21, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [165191] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1344), 1, + ACTIONS(1157), 1, aux_sym_command_token1, - STATE(5708), 1, + STATE(5327), 1, sym_comment, - ACTIONS(1342), 33, + ACTIONS(1155), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -492120,7 +453328,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -492146,32 +453353,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [163191] = 7, + anon_sym_LF2, + [165236] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1378), 1, - anon_sym_LF, - STATE(5709), 1, + ACTIONS(10022), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(10024), 1, + aux_sym_unquoted_token2, + STATE(5328), 1, sym_comment, - ACTIONS(10442), 2, + ACTIONS(922), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(920), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10446), 2, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10444), 4, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1376), 25, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -492190,19 +453397,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [163242] = 4, + [165285] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, - anon_sym_LF, - STATE(5710), 1, + STATE(5329), 1, sym_comment, - ACTIONS(1368), 33, + ACTIONS(922), 2, + anon_sym_LF, + anon_sym_LPAREN2, + ACTIONS(920), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -492231,22 +453438,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [163287] = 4, + [165330] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, - anon_sym_LF, - STATE(5711), 1, + ACTIONS(1235), 1, + aux_sym_command_token1, + STATE(5330), 1, sym_comment, - ACTIONS(1368), 33, + ACTIONS(1233), 33, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -492272,19 +453478,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [163332] = 4, + anon_sym_LF2, + [165375] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1304), 1, - anon_sym_LF, - STATE(5712), 1, + ACTIONS(1059), 1, + sym__entry_separator, + ACTIONS(9744), 1, + anon_sym_DOT, + STATE(5144), 1, + sym_path, + STATE(5331), 1, sym_comment, - ACTIONS(1302), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + STATE(6000), 1, + sym_cell_path, + ACTIONS(1057), 30, + anon_sym_RBRACK, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -492313,14 +453523,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [163377] = 4, + [165426] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1356), 1, + ACTIONS(1181), 1, aux_sym_command_token1, - STATE(5713), 1, + STATE(5332), 1, sym_comment, - ACTIONS(1354), 33, + ACTIONS(9931), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9929), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1179), 27, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -492329,12 +453547,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -492354,34 +453566,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [163422] = 4, - ACTIONS(113), 1, + [165475] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5714), 1, + ACTIONS(9873), 1, + sym_filesize_unit, + ACTIONS(9875), 1, + sym_duration_unit, + ACTIONS(10026), 1, + anon_sym_DOT_DOT2, + STATE(5333), 1, sym_comment, - ACTIONS(1416), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_LPAREN2, - ACTIONS(1414), 31, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(10028), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(938), 5, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(940), 24, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -492395,24 +453611,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [163467] = 6, + [165528] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1196), 1, - anon_sym_LF, - ACTIONS(1200), 1, - anon_sym_DASH, - STATE(5715), 1, + STATE(5334), 1, sym_comment, - ACTIONS(1194), 5, + ACTIONS(1209), 2, + anon_sym_LF, + anon_sym_LPAREN2, + ACTIONS(1139), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - ACTIONS(1198), 27, anon_sym_GT, + anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -492438,14 +453652,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [163516] = 4, + [165573] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1282), 1, + ACTIONS(1095), 1, aux_sym_command_token1, - STATE(5716), 1, + STATE(5335), 1, sym_comment, - ACTIONS(1280), 33, + ACTIONS(1093), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -492453,7 +453667,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -492479,14 +453692,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [163561] = 4, + anon_sym_LF2, + [165618] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9991), 1, + anon_sym_DOT, + STATE(5336), 1, + sym_comment, + STATE(5386), 1, + sym_path, + STATE(6148), 1, + sym_cell_path, + ACTIONS(1085), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1087), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [165669] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1322), 1, + ACTIONS(1239), 1, aux_sym_command_token1, - STATE(5717), 1, + STATE(5337), 1, sym_comment, - ACTIONS(1320), 33, + ACTIONS(1237), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -492520,63 +453778,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_LF2, - [163606] = 4, - ACTIONS(113), 1, + [165714] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1275), 1, - anon_sym_LF, - STATE(5718), 1, + STATE(5338), 1, sym_comment, - ACTIONS(1273), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(1049), 14, anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1047), 20, + sym_cmd_identifier, + anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [163651] = 4, + [165759] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6695), 1, + anon_sym_DOT_DOT2, + STATE(5339), 1, + sym_comment, + ACTIONS(6697), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1089), 10, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1091), 21, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [165808] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, - anon_sym_LF, - STATE(5719), 1, + ACTIONS(1243), 1, + aux_sym_command_token1, + STATE(5340), 1, sym_comment, - ACTIONS(1368), 33, + ACTIONS(1241), 33, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -492602,125 +453902,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [163696] = 10, + anon_sym_LF2, + [165853] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1378), 1, - anon_sym_LF, - STATE(5720), 1, + ACTIONS(1181), 1, + aux_sym_command_token1, + STATE(5341), 1, sym_comment, - ACTIONS(10442), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10446), 2, + ACTIONS(9931), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10448), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10444), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10460), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10440), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1376), 13, + ACTIONS(1179), 31, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - 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, - [163753] = 16, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1378), 1, anon_sym_LF, - ACTIONS(10464), 1, - anon_sym_bit_DASHand, - ACTIONS(10466), 1, - anon_sym_bit_DASHxor, - ACTIONS(10468), 1, - anon_sym_bit_DASHor, - ACTIONS(10470), 1, - anon_sym_and, - ACTIONS(10472), 1, - anon_sym_xor, - STATE(5721), 1, - sym_comment, - ACTIONS(10442), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10446), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10448), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10462), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10444), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10460), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1376), 6, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_or, - ACTIONS(10440), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [163822] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(5722), 1, - sym_comment, - ACTIONS(938), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_LPAREN2, - ACTIONS(936), 31, - anon_sym_SEMI, - anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, @@ -492743,19 +453945,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [163867] = 4, + [165900] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1356), 1, - anon_sym_LF, - STATE(5723), 1, + STATE(5342), 1, sym_comment, - ACTIONS(1354), 33, + ACTIONS(1213), 2, + anon_sym_LF, + anon_sym_LPAREN2, + ACTIONS(1211), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -492784,36 +453986,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [163912] = 4, - ACTIONS(3), 1, + [165945] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(5724), 1, + ACTIONS(1247), 1, + aux_sym_command_token1, + STATE(5343), 1, sym_comment, - ACTIONS(1059), 12, - sym_identifier, + ACTIONS(1245), 33, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1061), 22, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_EQ_GT, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -492824,23 +454023,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT, - [163957] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LF2, + [165990] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5725), 1, + ACTIONS(1255), 1, + aux_sym_command_token1, + STATE(5344), 1, sym_comment, - ACTIONS(1290), 2, - anon_sym_LF, - anon_sym_LPAREN2, - ACTIONS(1243), 32, + ACTIONS(1253), 33, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -492866,63 +454067,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [164002] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5726), 1, - sym_comment, - ACTIONS(1115), 14, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1113), 20, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [164047] = 4, + anon_sym_LF2, + [166035] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5727), 1, + STATE(5345), 1, sym_comment, - ACTIONS(1119), 3, - ts_builtin_sym_end, - anon_sym_DOT, - aux_sym_command_token1, - ACTIONS(1117), 31, - anon_sym_SEMI, + ACTIONS(1217), 2, anon_sym_LF, + anon_sym_LPAREN2, + ACTIONS(1215), 32, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -492948,22 +454109,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [164092] = 4, + [166080] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, - anon_sym_LF, - STATE(5728), 1, + ACTIONS(1259), 1, + aux_sym_command_token1, + STATE(5346), 1, sym_comment, - ACTIONS(1368), 33, + ACTIONS(1257), 33, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -492989,37 +454149,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [164137] = 7, - ACTIONS(3), 1, + anon_sym_LF2, + [166125] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10432), 1, - anon_sym_DOT, - STATE(5729), 1, + ACTIONS(1263), 1, + aux_sym_command_token1, + STATE(5347), 1, sym_comment, - STATE(5757), 1, - aux_sym_cell_path_repeat1, - STATE(6289), 1, - sym_path, - ACTIONS(1006), 6, + ACTIONS(1261), 33, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1008), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -493033,23 +454190,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [164188] = 5, + anon_sym_LF2, + [166170] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - STATE(5730), 1, + ACTIONS(1053), 1, + aux_sym_command_token1, + STATE(5348), 1, sym_comment, - ACTIONS(1255), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1253), 31, + ACTIONS(1051), 33, anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -493075,22 +454232,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [164235] = 6, + [166215] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1378), 1, + ACTIONS(940), 1, anon_sym_LF, - STATE(5731), 1, + STATE(5349), 1, sym_comment, - ACTIONS(10446), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10444), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1376), 27, + ACTIONS(938), 33, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -493099,6 +454248,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -493118,14 +454273,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [164284] = 4, + [166260] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, + ACTIONS(1091), 1, anon_sym_LF, - STATE(5732), 1, + STATE(5350), 1, sym_comment, - ACTIONS(1368), 33, + ACTIONS(1089), 33, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -493159,23 +454314,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [164329] = 5, + [166305] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - STATE(5733), 1, - sym_comment, - ACTIONS(1275), 2, - ts_builtin_sym_end, + ACTIONS(1231), 1, anon_sym_LF, - ACTIONS(1273), 31, + STATE(5351), 1, + sym_comment, + ACTIONS(1229), 33, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -493201,78 +454355,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [164376] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5734), 1, - sym_comment, - ACTIONS(1119), 14, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1117), 20, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [164421] = 7, - ACTIONS(3), 1, + [166350] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10419), 1, - anon_sym_DOT, - STATE(5735), 1, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + ACTIONS(3727), 1, + anon_sym_LPAREN2, + ACTIONS(10030), 1, + aux_sym_command_token1, + STATE(5352), 1, sym_comment, - STATE(5762), 1, - sym_path, - STATE(6443), 1, - sym_cell_path, - ACTIONS(1190), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1192), 23, + ACTIONS(3725), 31, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_not, 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -493280,20 +454389,23 @@ 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, - [164472] = 4, + [166399] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1348), 1, + ACTIONS(1223), 1, aux_sym_command_token1, - STATE(5736), 1, + STATE(5353), 1, sym_comment, - ACTIONS(1346), 33, + ACTIONS(1221), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -493327,151 +454439,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [164517] = 7, + [166444] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10432), 1, - anon_sym_DOT, - STATE(5684), 1, - sym_path, - STATE(5737), 1, + STATE(5354), 1, sym_comment, - STATE(5807), 1, - sym_cell_path, - ACTIONS(1010), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1012), 25, - anon_sym_DOLLAR, + ACTIONS(1039), 14, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [164568] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1378), 1, - anon_sym_LF, - STATE(5738), 1, - sym_comment, - ACTIONS(10446), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(1376), 31, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [164615] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3878), 1, - anon_sym_LPAREN2, - STATE(5739), 1, - sym_comment, - ACTIONS(2006), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(3874), 9, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3876), 22, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [164664] = 4, + ACTIONS(1037), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [166489] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1188), 1, - aux_sym_command_token1, - STATE(5740), 1, + ACTIONS(1149), 1, + aux_sym_unquoted_token6, + STATE(5355), 1, sym_comment, - ACTIONS(1186), 33, + ACTIONS(1091), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(1089), 31, anon_sym_SEMI, anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -493497,14 +454522,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [164709] = 4, + [166536] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, + ACTIONS(1235), 1, anon_sym_LF, - STATE(5741), 1, + STATE(5356), 1, sym_comment, - ACTIONS(1368), 33, + ACTIONS(1233), 33, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -493538,35 +454563,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [164754] = 8, + [166581] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1378), 1, - anon_sym_LF, - STATE(5742), 1, + STATE(5357), 1, sym_comment, - ACTIONS(10442), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10446), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10448), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10444), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1376), 23, + ACTIONS(1043), 2, + anon_sym_LF, + anon_sym_DOT, + ACTIONS(1041), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, @@ -493583,22 +454604,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [164807] = 4, + [166626] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1192), 1, - aux_sym_command_token1, - STATE(5743), 1, + ACTIONS(8799), 1, + aux_sym_unquoted_token5, + STATE(5358), 1, sym_comment, - ACTIONS(1190), 33, + ACTIONS(940), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(938), 31, anon_sym_SEMI, anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -493624,104 +454646,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [164852] = 4, + [166673] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5744), 1, + STATE(5359), 1, sym_comment, - ACTIONS(1063), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1065), 22, - anon_sym_PIPE, + ACTIONS(1043), 14, anon_sym_DASH_DASH, - anon_sym_EQ_GT, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_DOT, - [164897] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - STATE(5745), 1, - sym_comment, - ACTIONS(1249), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(1247), 31, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1041), 20, + sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [164944] = 5, + [166718] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10476), 1, - anon_sym_QMARK2, - STATE(5746), 1, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + STATE(5360), 1, sym_comment, - ACTIONS(1072), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT, - ACTIONS(1070), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1161), 3, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1159), 30, + sym_cmd_identifier, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -493749,23 +454729,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [164991] = 5, + [166765] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1290), 1, - ts_builtin_sym_end, - ACTIONS(10478), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(5747), 1, + ACTIONS(1095), 1, + anon_sym_LF, + STATE(5361), 1, sym_comment, - ACTIONS(1243), 32, + ACTIONS(1093), 33, anon_sym_SEMI, - anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -493791,23 +454770,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [165038] = 5, + [166810] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10480), 1, - anon_sym_QMARK2, - STATE(5748), 1, + ACTIONS(1053), 1, + aux_sym_command_token1, + STATE(5362), 1, sym_comment, - ACTIONS(1072), 2, - anon_sym_DOT, - sym__entry_separator, - ACTIONS(1070), 31, + ACTIONS(1051), 33, anon_sym_SEMI, - anon_sym_RBRACK, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -493833,22 +454810,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [165085] = 4, + anon_sym_LF2, + [166855] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5749), 1, - sym_comment, - ACTIONS(1115), 3, - ts_builtin_sym_end, + ACTIONS(1239), 1, anon_sym_LF, - anon_sym_DOT, - ACTIONS(1113), 31, + STATE(5363), 1, + sym_comment, + ACTIONS(1237), 33, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -493874,14 +454852,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [165130] = 4, + [166900] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, + ACTIONS(1243), 1, anon_sym_LF, - STATE(5750), 1, + STATE(5364), 1, sym_comment, - ACTIONS(1368), 33, + ACTIONS(1241), 33, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -493915,70 +454893,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [165175] = 11, + [166945] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1378), 1, + ACTIONS(1247), 1, anon_sym_LF, - STATE(5751), 1, + STATE(5365), 1, sym_comment, - ACTIONS(10442), 2, + ACTIONS(1245), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10446), 2, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10448), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10462), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10444), 4, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10460), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10440), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1376), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_RBRACE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [165234] = 4, + [166990] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, - anon_sym_LF, - STATE(5752), 1, + ACTIONS(1285), 1, + aux_sym_command_token1, + STATE(5366), 1, sym_comment, - ACTIONS(1368), 33, + ACTIONS(1283), 33, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -494004,37 +454974,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [165279] = 7, - ACTIONS(113), 1, + anon_sym_LF2, + [167035] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1188), 1, - sym__entry_separator, - ACTIONS(10186), 1, + ACTIONS(10032), 1, anon_sym_DOT, - STATE(5501), 1, + STATE(5943), 1, sym_path, - STATE(5753), 1, + STATE(5367), 2, sym_comment, - STATE(6410), 1, - sym_cell_path, - ACTIONS(1186), 30, - anon_sym_RBRACK, + aux_sym_cell_path_repeat1, + ACTIONS(985), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(987), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -494048,23 +455018,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [165330] = 5, + [167084] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - STATE(5754), 1, + ACTIONS(1255), 1, + anon_sym_LF, + STATE(5368), 1, sym_comment, - ACTIONS(1255), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(1253), 31, + ACTIONS(1253), 33, anon_sym_SEMI, - anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -494090,67 +455059,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [165377] = 12, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1378), 1, - anon_sym_LF, - ACTIONS(10464), 1, - anon_sym_bit_DASHand, - STATE(5755), 1, - sym_comment, - ACTIONS(10442), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10446), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10448), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10462), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10444), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10460), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10440), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1376), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [165438] = 5, + [167129] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10476), 1, + ACTIONS(10035), 1, anon_sym_QMARK2, - STATE(5756), 1, + STATE(5369), 1, sym_comment, - ACTIONS(1072), 3, + ACTIONS(1026), 3, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT, - ACTIONS(1070), 30, + ACTIONS(1024), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -494181,36 +455101,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [165485] = 6, - ACTIONS(3), 1, + [167176] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10482), 1, - anon_sym_DOT, - STATE(6289), 1, - sym_path, - STATE(5757), 2, + ACTIONS(10035), 1, + anon_sym_QMARK2, + STATE(5370), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(999), 6, + ACTIONS(1026), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT, + ACTIONS(1024), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1001), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -494224,35 +455143,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [165534] = 4, - ACTIONS(3), 1, + [167223] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(5758), 1, + ACTIONS(10037), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(5371), 1, sym_comment, - ACTIONS(1117), 13, - sym_identifier, + ACTIONS(1139), 33, + sym_cmd_identifier, anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1119), 21, - anon_sym_DOLLAR, - anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -494263,24 +455178,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [165579] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [167268] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5759), 1, - sym_comment, - ACTIONS(1420), 3, - ts_builtin_sym_end, + ACTIONS(1259), 1, anon_sym_LF, - anon_sym_LPAREN2, - ACTIONS(1418), 31, + STATE(5372), 1, + sym_comment, + ACTIONS(1257), 33, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -494306,18 +455225,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [165624] = 7, + [167313] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10419), 1, - anon_sym_DOT, - STATE(5760), 1, + ACTIONS(3316), 1, + anon_sym_LPAREN2, + STATE(5373), 1, sym_comment, - STATE(5762), 1, - sym_path, - STATE(6574), 1, - sym_cell_path, - ACTIONS(1010), 8, + ACTIONS(1844), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(3312), 9, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -494326,9 +455245,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1012), 23, + ACTIONS(3314), 22, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_not, anon_sym_DOT_DOT_EQ, @@ -494350,31 +455268,35 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [165675] = 4, + [167362] = 8, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, - anon_sym_LF, - STATE(5761), 1, + ACTIONS(1181), 1, + aux_sym_command_token1, + STATE(5374), 1, sym_comment, - ACTIONS(1368), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, + ACTIONS(9925), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(9931), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(9933), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9929), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(1179), 23, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_in, + anon_sym_RBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, @@ -494391,67 +455313,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [165720] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10419), 1, - anon_sym_DOT, - STATE(5762), 1, - sym_comment, - STATE(5764), 1, - aux_sym_cell_path_repeat1, - STATE(6364), 1, - sym_path, - ACTIONS(987), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(989), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [165771] = 5, + [167415] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10485), 1, - anon_sym_LBRACK2, - STATE(5763), 1, + ACTIONS(1263), 1, + anon_sym_LF, + STATE(5375), 1, sym_comment, - ACTIONS(1261), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(1259), 31, + ACTIONS(1261), 33, anon_sym_SEMI, - anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -494477,152 +455354,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [165818] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10419), 1, - anon_sym_DOT, - STATE(5764), 1, - sym_comment, - STATE(5766), 1, - aux_sym_cell_path_repeat1, - STATE(6364), 1, - sym_path, - ACTIONS(1006), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1008), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [165869] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4010), 1, - anon_sym_LPAREN2, - STATE(5765), 1, - sym_comment, - ACTIONS(4012), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(4006), 9, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4008), 22, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [165918] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10487), 1, - anon_sym_DOT, - STATE(6364), 1, - sym_path, - STATE(5766), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(999), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1001), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [165967] = 4, + [167460] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_LF, - STATE(5767), 1, + ACTIONS(1227), 1, + aux_sym_command_token1, + STATE(5376), 1, sym_comment, - ACTIONS(959), 33, + ACTIONS(1225), 33, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -494648,16 +455394,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [166012] = 4, + anon_sym_LF2, + [167505] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5768), 1, + STATE(5377), 1, sym_comment, - ACTIONS(1420), 3, + ACTIONS(922), 3, ts_builtin_sym_end, anon_sym_LPAREN2, aux_sym_command_token1, - ACTIONS(1418), 31, + ACTIONS(920), 31, anon_sym_SEMI, anon_sym_LF, anon_sym_PIPE, @@ -494689,23 +455436,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [166057] = 4, + [167550] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(5769), 1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + STATE(5378), 1, sym_comment, - ACTIONS(1412), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT, - ACTIONS(1410), 31, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1131), 3, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1129), 30, + sym_cmd_identifier, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -494730,18 +455478,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [166102] = 4, + [167597] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(5770), 1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + STATE(5379), 1, sym_comment, - ACTIONS(1290), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_LPAREN2, - ACTIONS(1243), 31, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1137), 3, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1135), 30, + sym_cmd_identifier, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, @@ -494771,14 +455520,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [166147] = 4, + [167644] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1300), 1, + ACTIONS(1181), 1, aux_sym_command_token1, - STATE(5771), 1, + ACTIONS(9937), 1, + anon_sym_bit_DASHand, + ACTIONS(9939), 1, + anon_sym_bit_DASHxor, + STATE(5380), 1, + sym_comment, + ACTIONS(9925), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9931), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9933), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9935), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9927), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9929), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(9923), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1179), 9, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [167707] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1267), 1, + aux_sym_command_token1, + STATE(5381), 1, sym_comment, - ACTIONS(1298), 33, + ACTIONS(1265), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -494786,7 +455585,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -494812,58 +455610,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [166192] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10419), 1, - anon_sym_DOT, - STATE(5762), 1, - sym_path, - STATE(5772), 1, - sym_comment, - STATE(6571), 1, - sym_cell_path, - ACTIONS(1179), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1181), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [166243] = 4, + anon_sym_LF2, + [167752] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1334), 1, + ACTIONS(1267), 1, aux_sym_command_token1, - STATE(5773), 1, + STATE(5382), 1, sym_comment, - ACTIONS(1332), 33, + ACTIONS(1265), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -494871,7 +455626,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -494897,34 +455651,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [166288] = 4, - ACTIONS(113), 1, + anon_sym_LF2, + [167797] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1408), 1, - anon_sym_LF, - STATE(5774), 1, + ACTIONS(9921), 1, + anon_sym_DOT, + STATE(5383), 1, sym_comment, - ACTIONS(1406), 33, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_PIPE, + STATE(5435), 1, + sym_path, + STATE(6120), 1, + sym_cell_path, + ACTIONS(1085), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1087), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -494938,23 +455696,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [166333] = 5, + [167848] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10480), 1, - anon_sym_QMARK2, - STATE(5775), 1, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + STATE(5384), 1, sym_comment, - ACTIONS(1072), 2, - anon_sym_DOT, - sym__entry_separator, - ACTIONS(1070), 31, + ACTIONS(1161), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(1159), 31, anon_sym_SEMI, - anon_sym_RBRACK, + anon_sym_LF, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -494980,34 +455738,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [166380] = 4, - ACTIONS(113), 1, + [167895] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5776), 1, + ACTIONS(9987), 1, + anon_sym_DOT_DOT2, + STATE(5385), 1, sym_comment, - ACTIONS(1119), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT, - ACTIONS(1117), 31, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(9989), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1089), 6, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1091), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -495021,22 +455781,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [166425] = 4, + [167944] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9991), 1, + anon_sym_DOT, + STATE(5386), 1, + sym_comment, + STATE(5389), 1, + aux_sym_cell_path_repeat1, + STATE(5936), 1, + sym_path, + ACTIONS(1010), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1012), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [167995] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5777), 1, + ACTIONS(1273), 1, + aux_sym_command_token1, + STATE(5387), 1, sym_comment, - ACTIONS(1416), 2, - anon_sym_LF, - anon_sym_LPAREN2, - ACTIONS(1414), 32, + ACTIONS(1271), 33, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -495062,14 +455865,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [166470] = 4, + anon_sym_LF2, + [168040] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1296), 1, + ACTIONS(1277), 1, aux_sym_command_token1, - STATE(5778), 1, + STATE(5388), 1, sym_comment, - ACTIONS(1294), 33, + ACTIONS(1275), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -495103,72 +455907,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_LF2, - [166515] = 13, + [168085] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9991), 1, + anon_sym_DOT, + STATE(5389), 1, + sym_comment, + STATE(5390), 1, + aux_sym_cell_path_repeat1, + STATE(5936), 1, + sym_path, + ACTIONS(1006), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1008), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [168136] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10039), 1, + anon_sym_DOT, + STATE(5936), 1, + sym_path, + STATE(5390), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(985), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(987), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [168185] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1378), 1, - anon_sym_LF, - ACTIONS(10464), 1, - anon_sym_bit_DASHand, - ACTIONS(10466), 1, - anon_sym_bit_DASHxor, - STATE(5779), 1, + ACTIONS(10042), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(5391), 1, sym_comment, - ACTIONS(10442), 2, + ACTIONS(1139), 33, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10446), 2, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10448), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10462), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10444), 4, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10460), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10440), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1376), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_RBRACE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [166578] = 4, + [168230] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1338), 1, - aux_sym_command_token1, - STATE(5780), 1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + STATE(5392), 1, sym_comment, - ACTIONS(1336), 33, + ACTIONS(1131), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(1129), 31, anon_sym_SEMI, anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -495194,23 +456077,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [166623] = 4, + [168277] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(5781), 1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + STATE(5393), 1, sym_comment, - ACTIONS(1061), 3, + ACTIONS(1137), 2, ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT, - ACTIONS(1059), 31, + aux_sym_command_token1, + ACTIONS(1135), 31, anon_sym_SEMI, + anon_sym_LF, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -495235,14 +456119,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [166668] = 4, + [168324] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9921), 1, + anon_sym_DOT, + STATE(5394), 1, + sym_comment, + STATE(5435), 1, + sym_path, + STATE(6130), 1, + sym_cell_path, + ACTIONS(1093), 6, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1095), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [168375] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1364), 1, + ACTIONS(1281), 1, aux_sym_command_token1, - STATE(5782), 1, + STATE(5395), 1, sym_comment, - ACTIONS(1362), 33, + ACTIONS(1279), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -495250,7 +456178,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -495276,14 +456203,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [166713] = 4, + anon_sym_LF2, + [168420] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1366), 1, + ACTIONS(1167), 1, aux_sym_command_token1, - STATE(5783), 1, + STATE(5396), 1, sym_comment, - ACTIONS(1198), 33, + ACTIONS(1165), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -495291,7 +456219,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -495317,19 +456244,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [166758] = 4, + anon_sym_LF2, + [168465] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1374), 1, - anon_sym_LF, - STATE(5784), 1, + ACTIONS(1281), 1, + aux_sym_command_token1, + STATE(5397), 1, sym_comment, - ACTIONS(1372), 33, + ACTIONS(1279), 33, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -495358,15 +456286,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [166803] = 4, + [168510] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1282), 1, - anon_sym_LF, - STATE(5785), 1, + ACTIONS(1273), 1, + aux_sym_command_token1, + STATE(5398), 1, sym_comment, - ACTIONS(1280), 33, + ACTIONS(1271), 33, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, @@ -495398,15 +456327,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - aux_sym_unquoted_token6, - [166848] = 4, + [168555] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1360), 1, + ACTIONS(1167), 1, aux_sym_command_token1, - STATE(5786), 1, + STATE(5399), 1, sym_comment, - ACTIONS(1358), 33, + ACTIONS(1165), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -495414,6 +456342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -495439,23 +456368,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LF2, - [166893] = 4, + [168600] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1288), 1, - anon_sym_LF, - STATE(5787), 1, + STATE(5400), 1, sym_comment, - ACTIONS(1286), 33, + ACTIONS(1213), 3, + ts_builtin_sym_end, + anon_sym_LPAREN2, + aux_sym_command_token1, + ACTIONS(1211), 31, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LF, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -495481,19 +456409,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [166938] = 4, + [168645] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1408), 1, - anon_sym_LF, - STATE(5788), 1, + ACTIONS(1277), 1, + aux_sym_command_token1, + STATE(5401), 1, sym_comment, - ACTIONS(1406), 33, + ACTIONS(1275), 33, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -495522,20 +456450,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [166983] = 6, + [168690] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1160), 1, - sym__entry_separator, - ACTIONS(10409), 1, - anon_sym_DOT_DOT2, - STATE(5789), 1, + ACTIONS(1169), 1, + aux_sym_command_token1, + STATE(5402), 1, sym_comment, - ACTIONS(10411), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1158), 30, - anon_sym_RBRACK, + ACTIONS(1076), 33, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -495565,19 +456491,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [167032] = 4, - ACTIONS(113), 1, + [168735] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5790), 1, + ACTIONS(6695), 1, + anon_sym_DOT_DOT2, + STATE(5403), 1, sym_comment, - ACTIONS(1420), 2, + ACTIONS(6697), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3757), 10, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3759), 21, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [168784] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1161), 1, anon_sym_LF, - anon_sym_LPAREN2, - ACTIONS(1418), 32, + STATE(5404), 1, + sym_comment, + ACTIONS(1159), 33, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -495606,21 +456575,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [167077] = 4, + [168829] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5791), 1, - sym_comment, - ACTIONS(1282), 2, - ts_builtin_sym_end, + ACTIONS(1173), 1, aux_sym_command_token1, - ACTIONS(1280), 32, + STATE(5405), 1, + sym_comment, + ACTIONS(1171), 33, anon_sym_SEMI, anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -495646,65 +456616,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - aux_sym_unquoted_token6, - [167122] = 5, - ACTIONS(3), 1, + [168874] = 7, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10490), 1, - anon_sym_LBRACK2, - STATE(5792), 1, + ACTIONS(1004), 1, + sym__entry_separator, + ACTIONS(9744), 1, + anon_sym_DOT, + STATE(5144), 1, + sym_path, + STATE(5254), 1, + sym_cell_path, + STATE(5406), 1, sym_comment, - ACTIONS(1261), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1259), 20, - sym_cmd_identifier, + ACTIONS(1002), 30, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [167169] = 4, + [168925] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1364), 1, - anon_sym_LF, - STATE(5793), 1, + ACTIONS(10044), 1, + anon_sym_LBRACK2, + STATE(5407), 1, sym_comment, - ACTIONS(1362), 33, + ACTIONS(1145), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(1143), 31, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LF, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -495730,64 +456702,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [167214] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10492), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10494), 1, - aux_sym_unquoted_token2, - STATE(5794), 1, - sym_comment, - ACTIONS(936), 9, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(938), 23, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_not, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [167263] = 4, + [168972] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(961), 1, - aux_sym_command_token1, - STATE(5795), 1, + ACTIONS(1227), 1, + anon_sym_LF, + STATE(5408), 1, sym_comment, - ACTIONS(959), 33, + ACTIONS(1225), 33, anon_sym_SEMI, - anon_sym_LF, + anon_sym_COLON, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -495813,21 +456743,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LF2, - [167308] = 4, + [169017] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(5796), 1, - sym_comment, - ACTIONS(1282), 2, - ts_builtin_sym_end, + ACTIONS(1074), 1, anon_sym_LF, - ACTIONS(1280), 32, + ACTIONS(1078), 1, + anon_sym_DASH, + STATE(5409), 1, + sym_comment, + ACTIONS(1072), 5, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_GT, anon_sym_DASH_DASH, - anon_sym_DASH, + anon_sym_RBRACE, + ACTIONS(1076), 27, + anon_sym_GT, anon_sym_in, anon_sym_STAR, anon_sym_STAR_STAR, @@ -495854,24 +456786,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - aux_sym_unquoted_token6, - [167353] = 5, + [169066] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - STATE(5797), 1, + ACTIONS(1289), 1, + anon_sym_LF, + STATE(5410), 1, sym_comment, - ACTIONS(1275), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(1273), 31, + ACTIONS(1287), 33, anon_sym_SEMI, - anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -495897,33 +456827,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [167400] = 4, - ACTIONS(113), 1, + [169111] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1334), 1, - aux_sym_command_token1, - STATE(5798), 1, + ACTIONS(9921), 1, + anon_sym_DOT, + STATE(5411), 1, sym_comment, - ACTIONS(1332), 33, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, + STATE(5435), 1, + sym_path, + STATE(6137), 1, + sym_cell_path, + ACTIONS(1097), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1099), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -495937,22 +456871,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LF2, - [167445] = 5, + [169162] = 4, ACTIONS(113), 1, anon_sym_POUND, ACTIONS(1251), 1, - aux_sym_unquoted_token6, - STATE(5799), 1, + aux_sym_command_token1, + STATE(5412), 1, sym_comment, - ACTIONS(1249), 3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1247), 30, - sym_cmd_identifier, + ACTIONS(1249), 33, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -495980,34 +456911,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [167492] = 4, - ACTIONS(113), 1, + anon_sym_LF2, + [169207] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1304), 1, - aux_sym_command_token1, - STATE(5800), 1, + ACTIONS(9921), 1, + anon_sym_DOT, + STATE(5413), 1, sym_comment, - ACTIONS(1302), 33, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, + STATE(5435), 1, + sym_path, + STATE(6139), 1, + sym_cell_path, + ACTIONS(1101), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1103), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -496021,21 +456956,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [167537] = 7, + [169258] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1181), 1, - sym__entry_separator, - ACTIONS(10186), 1, - anon_sym_DOT, - STATE(5501), 1, - sym_path, - STATE(5801), 1, + ACTIONS(1173), 1, + aux_sym_command_token1, + STATE(5414), 1, sym_comment, - STATE(6575), 1, - sym_cell_path, - ACTIONS(1179), 30, - anon_sym_RBRACK, + ACTIONS(1171), 33, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -496065,64 +456997,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [167588] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7133), 1, - anon_sym_DOT_DOT2, - STATE(5802), 1, - sym_comment, - ACTIONS(7135), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1158), 10, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1160), 21, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [167637] = 7, + [169303] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1012), 1, - sym__entry_separator, - ACTIONS(10186), 1, - anon_sym_DOT, - STATE(5501), 1, - sym_path, - STATE(5803), 1, + ACTIONS(940), 1, + aux_sym_command_token1, + STATE(5415), 1, sym_comment, - STATE(5942), 1, - sym_cell_path, - ACTIONS(1010), 30, - anon_sym_RBRACK, + ACTIONS(938), 33, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -496152,14 +457038,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [167688] = 4, + [169348] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1360), 1, + ACTIONS(1091), 1, aux_sym_command_token1, - STATE(5804), 1, + STATE(5416), 1, sym_comment, - ACTIONS(1358), 33, + ACTIONS(1089), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -496193,22 +457079,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [167733] = 4, + [169393] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, + ACTIONS(1074), 1, aux_sym_command_token1, - STATE(5805), 1, + STATE(5417), 1, sym_comment, - ACTIONS(1368), 33, + ACTIONS(1072), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_LF2, + ACTIONS(1076), 28, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -496234,78 +457121,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [167778] = 9, + [169440] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1378), 1, - aux_sym_command_token1, - STATE(5806), 1, + STATE(5418), 1, sym_comment, - ACTIONS(10395), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10401), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10403), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10399), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10393), 6, + ACTIONS(1070), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1068), 31, + anon_sym_RBRACK, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1376), 17, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [167833] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5807), 1, - sym_comment, - ACTIONS(1168), 7, - anon_sym_GT, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT2, - ACTIONS(1170), 27, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -496319,40 +457161,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [167878] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1200), 1, - anon_sym_DASH, - ACTIONS(10496), 1, anon_sym_DOT_DOT2, - STATE(5808), 1, + [169485] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1231), 1, + aux_sym_command_token1, + STATE(5419), 1, sym_comment, - ACTIONS(10498), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1196), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(1198), 5, + ACTIONS(1229), 33, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1366), 22, + anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -496366,19 +457203,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [167931] = 4, + [169530] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1412), 1, - aux_sym_command_token1, - STATE(5809), 1, + ACTIONS(1267), 1, + anon_sym_LF, + STATE(5420), 1, sym_comment, - ACTIONS(1410), 33, + ACTIONS(1265), 33, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -496407,19 +457244,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [167976] = 4, + [169575] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5810), 1, - sym_comment, - ACTIONS(1111), 2, + ACTIONS(1267), 1, anon_sym_LF, - anon_sym_DOT, - ACTIONS(1109), 32, + STATE(5421), 1, + sym_comment, + ACTIONS(1265), 33, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -496448,22 +457285,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [168021] = 4, + [169620] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5811), 1, + STATE(5422), 1, sym_comment, - ACTIONS(1115), 2, + ACTIONS(922), 3, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT, - ACTIONS(1113), 32, + anon_sym_LPAREN2, + ACTIONS(920), 31, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -496489,21 +457326,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [168066] = 4, + [169665] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, - aux_sym_command_token1, - STATE(5812), 1, + ACTIONS(940), 1, + anon_sym_LF, + ACTIONS(8713), 1, + aux_sym_unquoted_token5, + STATE(5423), 1, sym_comment, - ACTIONS(1368), 33, + ACTIONS(938), 32, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -496529,15 +457368,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LF2, - [168111] = 4, + [169712] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1408), 1, + ACTIONS(1173), 1, aux_sym_command_token1, - STATE(5813), 1, + STATE(5424), 1, sym_comment, - ACTIONS(1406), 33, + ACTIONS(1171), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -496571,14 +457409,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [168156] = 4, + [169757] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1412), 1, + ACTIONS(1235), 1, aux_sym_command_token1, - STATE(5814), 1, + STATE(5425), 1, sym_comment, - ACTIONS(1410), 33, + ACTIONS(1233), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -496586,6 +457424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -496611,18 +457450,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LF2, - [168201] = 4, + [169802] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1366), 1, - aux_sym_command_token1, - STATE(5815), 1, + STATE(5426), 1, sym_comment, - ACTIONS(1198), 33, + ACTIONS(1049), 3, + ts_builtin_sym_end, + anon_sym_DOT, + aux_sym_command_token1, + ACTIONS(1047), 31, anon_sym_SEMI, anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, @@ -496652,23 +457491,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LF2, - [168246] = 4, + [169847] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1318), 1, - anon_sym_LF, - STATE(5816), 1, + ACTIONS(1209), 1, + ts_builtin_sym_end, + ACTIONS(10046), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(5427), 1, sym_comment, - ACTIONS(1316), 33, + ACTIONS(1139), 32, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LF, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -496694,40 +457533,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [168291] = 9, + [169894] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1378), 1, + ACTIONS(1223), 1, aux_sym_command_token1, - STATE(5817), 1, + STATE(5428), 1, sym_comment, - ACTIONS(10502), 2, + ACTIONS(1221), 33, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10506), 2, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10508), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10504), 4, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10500), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1376), 17, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -496740,65 +457574,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_LF2, - [168346] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10424), 1, - aux_sym__immediate_decimal_token2, - STATE(5818), 1, - sym_comment, - ACTIONS(2581), 10, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(2583), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [168393] = 5, + [169939] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1284), 1, - aux_sym_unquoted_token6, - STATE(5819), 1, + ACTIONS(1223), 1, + anon_sym_LF, + STATE(5429), 1, sym_comment, - ACTIONS(1160), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(1158), 31, + ACTIONS(1221), 33, anon_sym_SEMI, - anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -496824,21 +457615,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [168440] = 4, + [169984] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1352), 1, - aux_sym_command_token1, - STATE(5820), 1, + ACTIONS(1273), 1, + anon_sym_LF, + STATE(5430), 1, sym_comment, - ACTIONS(1350), 33, + ACTIONS(1271), 33, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [170029] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1277), 1, anon_sym_LF, + STATE(5431), 1, + sym_comment, + ACTIONS(1275), 33, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -496864,15 +457697,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LF2, - [168485] = 4, + [170074] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1288), 1, + ACTIONS(1173), 1, aux_sym_command_token1, - STATE(5821), 1, + STATE(5432), 1, sym_comment, - ACTIONS(1286), 33, + ACTIONS(1171), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -496880,6 +457712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -496905,22 +457738,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LF2, - [168530] = 5, + [170119] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9194), 1, - aux_sym_unquoted_token5, - STATE(5822), 1, + STATE(5433), 1, sym_comment, - ACTIONS(961), 2, + ACTIONS(1209), 3, ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(959), 31, - anon_sym_SEMI, anon_sym_LF, + anon_sym_LPAREN2, + ACTIONS(1139), 31, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -496948,14 +457779,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [168577] = 4, + [170164] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1374), 1, + ACTIONS(1095), 1, aux_sym_command_token1, - STATE(5823), 1, + STATE(5434), 1, sym_comment, - ACTIONS(1372), 33, + ACTIONS(1093), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -496963,6 +457794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -496988,15 +457820,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LF2, - [168622] = 4, + [170209] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9921), 1, + anon_sym_DOT, + STATE(5269), 1, + aux_sym_cell_path_repeat1, + STATE(5435), 1, + sym_comment, + STATE(5943), 1, + sym_path, + ACTIONS(1010), 6, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1012), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [170260] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, + ACTIONS(1053), 1, anon_sym_LF, - STATE(5824), 1, + STATE(5436), 1, sym_comment, - ACTIONS(1368), 33, + ACTIONS(1051), 33, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -497030,23 +457905,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [168667] = 5, + [170305] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - STATE(5825), 1, + ACTIONS(1239), 1, + aux_sym_command_token1, + STATE(5437), 1, sym_comment, - ACTIONS(1255), 3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1253), 30, - sym_cmd_identifier, + ACTIONS(1237), 33, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -497072,21 +457946,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [168714] = 5, + [170350] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - STATE(5826), 1, + ACTIONS(1177), 1, + aux_sym_command_token1, + STATE(5438), 1, sym_comment, - ACTIONS(1275), 3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1273), 30, - sym_cmd_identifier, + ACTIONS(1175), 33, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -497114,29 +457986,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [168761] = 5, + anon_sym_LF2, + [170395] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10218), 1, - aux_sym__immediate_decimal_token2, - STATE(5827), 1, + ACTIONS(10048), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(10050), 1, + aux_sym_unquoted_token2, + STATE(5439), 1, sym_comment, - ACTIONS(2437), 10, + ACTIONS(920), 9, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(2439), 23, + ACTIONS(922), 23, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_not, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -497156,14 +458030,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [168808] = 4, + [170444] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1338), 1, + ACTIONS(1243), 1, aux_sym_command_token1, - STATE(5828), 1, + STATE(5440), 1, sym_comment, - ACTIONS(1336), 33, + ACTIONS(1241), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -497171,6 +458045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -497196,23 +458071,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LF2, - [168853] = 7, + [170489] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(997), 1, - sym__entry_separator, - ACTIONS(10186), 1, - anon_sym_DOT, - STATE(5501), 1, - sym_path, - STATE(5665), 1, - sym_cell_path, - STATE(5829), 1, + ACTIONS(1281), 1, + anon_sym_LF, + STATE(5441), 1, sym_comment, - ACTIONS(995), 30, - anon_sym_RBRACK, + ACTIONS(1279), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -497241,21 +458112,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [168904] = 4, + [170534] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, - aux_sym_command_token1, - STATE(5830), 1, + ACTIONS(1167), 1, + anon_sym_LF, + STATE(5442), 1, sym_comment, - ACTIONS(1368), 33, + ACTIONS(1165), 33, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -497281,68 +458153,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LF2, - [168949] = 7, + [170579] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1378), 1, + ACTIONS(1267), 1, aux_sym_command_token1, - STATE(5831), 1, + STATE(5443), 1, sym_comment, - ACTIONS(10502), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10506), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10504), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1376), 25, + ACTIONS(1265), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_in, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LF2, - [169000] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - STATE(5832), 1, - sym_comment, - ACTIONS(1249), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1247), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -497368,21 +458194,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [169047] = 4, + [170624] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + STATE(5444), 1, + sym_comment, + ACTIONS(3362), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(3354), 9, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3356), 22, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [170673] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, - aux_sym_command_token1, - STATE(5833), 1, + ACTIONS(940), 1, + anon_sym_LF, + ACTIONS(3308), 1, + aux_sym_unquoted_token5, + STATE(5445), 1, sym_comment, - ACTIONS(1368), 33, + ACTIONS(938), 32, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -497408,59 +458279,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LF2, - [169092] = 7, + [170720] = 11, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1378), 1, + ACTIONS(1181), 1, aux_sym_command_token1, - STATE(5834), 1, + STATE(5446), 1, sym_comment, - ACTIONS(10395), 2, + ACTIONS(9925), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10401), 2, + ACTIONS(9931), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10399), 4, + ACTIONS(9933), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9935), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9927), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9929), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1376), 25, + ACTIONS(9923), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1179), 11, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_GT, - anon_sym_in, anon_sym_RBRACE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [170779] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8777), 1, + aux_sym_unquoted_token5, + STATE(5447), 1, + sym_comment, + ACTIONS(940), 13, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(938), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [169143] = 4, + [170826] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1192), 1, + ACTIONS(1169), 1, aux_sym_command_token1, - STATE(5835), 1, + STATE(5448), 1, sym_comment, - ACTIONS(1190), 33, + ACTIONS(1076), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -497494,44 +458410,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_LF2, - [169188] = 10, + [170871] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1378), 1, + ACTIONS(1181), 1, aux_sym_command_token1, - STATE(5836), 1, + STATE(5449), 1, sym_comment, - ACTIONS(10502), 2, + ACTIONS(10054), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10506), 2, + ACTIONS(10058), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10508), 2, + ACTIONS(10060), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10504), 4, + ACTIONS(10056), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10510), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10500), 6, + ACTIONS(10052), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1376), 13, + ACTIONS(1179), 17, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_bit_DASHand, @@ -497541,25 +458456,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_LF2, - [169245] = 7, + [170926] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1150), 1, - sym__entry_separator, - ACTIONS(10186), 1, - anon_sym_DOT, - STATE(5501), 1, - sym_path, - STATE(5837), 1, + ACTIONS(1173), 1, + aux_sym_command_token1, + STATE(5450), 1, sym_comment, - STATE(6576), 1, - sym_cell_path, - ACTIONS(1148), 30, - anon_sym_RBRACK, + ACTIONS(1171), 33, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -497585,37 +458496,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [169296] = 7, - ACTIONS(3), 1, + anon_sym_LF2, + [170971] = 7, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10432), 1, - anon_sym_DOT, - STATE(5684), 1, - sym_path, - STATE(5838), 1, + ACTIONS(1181), 1, + aux_sym_command_token1, + STATE(5451), 1, sym_comment, - STATE(6517), 1, - sym_cell_path, - ACTIONS(1148), 6, - anon_sym_GT, + ACTIONS(10054), 2, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1150), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, + ACTIONS(10058), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10056), 4, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(1179), 25, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_in, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -497629,14 +458540,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [169347] = 4, + anon_sym_LF2, + [171022] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1188), 1, + ACTIONS(1173), 1, aux_sym_command_token1, - STATE(5839), 1, + STATE(5452), 1, sym_comment, - ACTIONS(1186), 33, + ACTIONS(1171), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -497670,80 +458582,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_LF2, - [169392] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10512), 1, - aux_sym__immediate_decimal_token2, - STATE(5840), 1, - sym_comment, - ACTIONS(2547), 10, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(2549), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [169439] = 4, + [171067] = 10, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, + ACTIONS(1181), 1, aux_sym_command_token1, - STATE(5841), 1, + STATE(5453), 1, sym_comment, - ACTIONS(1368), 33, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(10054), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(10058), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10060), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10056), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(10062), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10052), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, + ACTIONS(1179), 13, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_bit_DASHand, @@ -497753,22 +458629,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_LF2, - [169484] = 6, + [171124] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1378), 1, + ACTIONS(1173), 1, aux_sym_command_token1, - STATE(5842), 1, + STATE(5454), 1, sym_comment, - ACTIONS(10506), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10504), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1376), 27, + ACTIONS(1171), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -497776,6 +458644,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -497796,14 +458670,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_LF2, - [169533] = 4, + [171169] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1300), 1, + ACTIONS(1181), 1, aux_sym_command_token1, - STATE(5843), 1, + STATE(5455), 1, sym_comment, - ACTIONS(1298), 33, + ACTIONS(10058), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10056), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1179), 27, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -497811,12 +458693,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -497837,22 +458713,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_LF2, - [169578] = 4, + [171218] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1322), 1, - anon_sym_LF, - STATE(5844), 1, + ACTIONS(1173), 1, + aux_sym_command_token1, + STATE(5456), 1, sym_comment, - ACTIONS(1320), 33, + ACTIONS(1171), 33, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -497878,14 +458753,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [169623] = 4, + anon_sym_LF2, + [171263] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, + ACTIONS(1181), 1, aux_sym_command_token1, - STATE(5845), 1, + STATE(5457), 1, sym_comment, - ACTIONS(1368), 33, + ACTIONS(10058), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1179), 31, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -497894,8 +458773,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, @@ -497919,17 +458796,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_LF2, - [169668] = 5, + [171310] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1378), 1, + ACTIONS(1173), 1, aux_sym_command_token1, - STATE(5846), 1, + STATE(5458), 1, sym_comment, - ACTIONS(10506), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(1376), 31, + ACTIONS(1171), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -497938,6 +458812,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, @@ -497961,30 +458837,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_LF2, - [169715] = 4, + [171355] = 8, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, + ACTIONS(1181), 1, aux_sym_command_token1, - STATE(5847), 1, + STATE(5459), 1, sym_comment, - ACTIONS(1368), 33, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(10054), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(10058), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, + ACTIONS(10060), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10056), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1179), 23, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_in, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, @@ -498002,22 +458882,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_LF2, - [169760] = 4, + [171408] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1352), 1, - anon_sym_LF, - STATE(5848), 1, + ACTIONS(1173), 1, + aux_sym_command_token1, + STATE(5460), 1, sym_comment, - ACTIONS(1350), 33, + ACTIONS(1171), 33, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -498043,69 +458922,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [169805] = 10, + anon_sym_LF2, + [171453] = 11, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1378), 1, + ACTIONS(1181), 1, aux_sym_command_token1, - STATE(5849), 1, + STATE(5461), 1, sym_comment, - ACTIONS(10395), 2, + ACTIONS(10054), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10401), 2, + ACTIONS(10058), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10403), 2, + ACTIONS(10060), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10397), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10399), 4, + ACTIONS(10064), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10056), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10393), 6, + ACTIONS(10062), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10052), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1376), 13, + ACTIONS(1179), 11, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - 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, - [169862] = 4, + anon_sym_LF2, + [171512] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1344), 1, - anon_sym_LF, - STATE(5850), 1, + ACTIONS(1173), 1, + aux_sym_command_token1, + STATE(5462), 1, sym_comment, - ACTIONS(1342), 33, + ACTIONS(1171), 33, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -498131,100 +459011,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [169907] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5851), 1, - sym_comment, - ACTIONS(2437), 11, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2439), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [169952] = 8, + anon_sym_LF2, + [171557] = 12, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1378), 1, + ACTIONS(1181), 1, aux_sym_command_token1, - STATE(5852), 1, + ACTIONS(10066), 1, + anon_sym_bit_DASHand, + STATE(5463), 1, sym_comment, - ACTIONS(10502), 2, + ACTIONS(10054), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10506), 2, + ACTIONS(10058), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10508), 2, + ACTIONS(10060), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10504), 4, + ACTIONS(10064), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10056), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1376), 23, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(10062), 4, anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10052), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, + ACTIONS(1179), 10, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, anon_sym_LF2, - [170005] = 4, + [171618] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1304), 1, + ACTIONS(1173), 1, aux_sym_command_token1, - STATE(5853), 1, + STATE(5464), 1, sym_comment, - ACTIONS(1302), 33, + ACTIONS(1171), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -498258,55 +459102,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_LF2, - [170050] = 4, + [171663] = 13, ACTIONS(113), 1, anon_sym_POUND, - STATE(5854), 1, + ACTIONS(1181), 1, + aux_sym_command_token1, + ACTIONS(10066), 1, + anon_sym_bit_DASHand, + ACTIONS(10068), 1, + anon_sym_bit_DASHxor, + STATE(5465), 1, sym_comment, - ACTIONS(1119), 2, - anon_sym_LF, - anon_sym_DOT, - ACTIONS(1117), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(10054), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(10058), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10060), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10064), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10056), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(10062), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10052), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, + ACTIONS(1179), 9, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [170095] = 4, + anon_sym_LF2, + [171726] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1344), 1, + ACTIONS(1173), 1, aux_sym_command_token1, - STATE(5855), 1, + STATE(5466), 1, sym_comment, - ACTIONS(1342), 33, + ACTIONS(1171), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -498340,55 +459193,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_LF2, - [170140] = 4, + [171771] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, + ACTIONS(1181), 1, aux_sym_command_token1, - STATE(5856), 1, + ACTIONS(10066), 1, + anon_sym_bit_DASHand, + ACTIONS(10068), 1, + anon_sym_bit_DASHxor, + ACTIONS(10070), 1, + anon_sym_bit_DASHor, + STATE(5467), 1, sym_comment, - ACTIONS(1368), 33, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(10054), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(10058), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10060), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10064), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10056), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(10062), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10052), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + ACTIONS(1179), 8, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_and, anon_sym_xor, anon_sym_or, anon_sym_LF2, - [170185] = 4, + [171836] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1296), 1, + ACTIONS(1173), 1, aux_sym_command_token1, - STATE(5857), 1, + STATE(5468), 1, sym_comment, - ACTIONS(1294), 33, + ACTIONS(1171), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -498422,14 +459285,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_LF2, - [170230] = 4, + [171881] = 15, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, + ACTIONS(1181), 1, aux_sym_command_token1, - STATE(5858), 1, + ACTIONS(10066), 1, + anon_sym_bit_DASHand, + ACTIONS(10068), 1, + anon_sym_bit_DASHxor, + ACTIONS(10070), 1, + anon_sym_bit_DASHor, + ACTIONS(10072), 1, + anon_sym_and, + STATE(5469), 1, + sym_comment, + ACTIONS(10054), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10058), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10060), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10064), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10056), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10062), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10052), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1179), 7, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_xor, + anon_sym_or, + anon_sym_LF2, + [171948] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1173), 1, + aux_sym_command_token1, + STATE(5470), 1, sym_comment, - ACTIONS(1368), 33, + ACTIONS(1171), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -498437,7 +459352,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -498463,71 +459377,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [170275] = 11, + anon_sym_LF2, + [171993] = 16, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1378), 1, + ACTIONS(1181), 1, aux_sym_command_token1, - STATE(5859), 1, + ACTIONS(10066), 1, + anon_sym_bit_DASHand, + ACTIONS(10068), 1, + anon_sym_bit_DASHxor, + ACTIONS(10070), 1, + anon_sym_bit_DASHor, + ACTIONS(10072), 1, + anon_sym_and, + ACTIONS(10074), 1, + anon_sym_xor, + STATE(5471), 1, sym_comment, - ACTIONS(10502), 2, + ACTIONS(10054), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10506), 2, + ACTIONS(10058), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10508), 2, + ACTIONS(10060), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10514), 2, + ACTIONS(10064), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10504), 4, + ACTIONS(10056), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10510), 4, + ACTIONS(10062), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(10500), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1376), 11, + ACTIONS(1179), 6, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, anon_sym_or, anon_sym_LF2, - [170334] = 5, + ACTIONS(10052), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [172062] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1249), 1, - anon_sym_LF, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - STATE(5860), 1, + ACTIONS(1173), 1, + aux_sym_command_token1, + STATE(5472), 1, sym_comment, - ACTIONS(1247), 32, + ACTIONS(1171), 33, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -498553,115 +459471,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [170381] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5861), 1, - sym_comment, - ACTIONS(2547), 11, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2549), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [170426] = 14, + anon_sym_LF2, + [172107] = 17, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1378), 1, - anon_sym_LF, - ACTIONS(10464), 1, + ACTIONS(1181), 1, + aux_sym_command_token1, + ACTIONS(10066), 1, anon_sym_bit_DASHand, - ACTIONS(10466), 1, + ACTIONS(10068), 1, anon_sym_bit_DASHxor, - ACTIONS(10468), 1, + ACTIONS(10070), 1, anon_sym_bit_DASHor, - STATE(5862), 1, + ACTIONS(10072), 1, + anon_sym_and, + ACTIONS(10074), 1, + anon_sym_xor, + ACTIONS(10076), 1, + anon_sym_or, + STATE(5473), 1, sym_comment, - ACTIONS(10442), 2, + ACTIONS(10054), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10446), 2, + ACTIONS(10058), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10448), 2, + ACTIONS(10060), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10462), 2, + ACTIONS(10064), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10444), 4, + ACTIONS(10056), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10460), 4, + ACTIONS(10062), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(10440), 6, + ACTIONS(1179), 5, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_LF2, + ACTIONS(10052), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1376), 8, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [170491] = 5, + [172178] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1160), 1, - anon_sym_LF, - ACTIONS(1284), 1, - aux_sym_unquoted_token6, - STATE(5863), 1, + ACTIONS(1173), 1, + aux_sym_command_token1, + STATE(5474), 1, sym_comment, - ACTIONS(1158), 32, + ACTIONS(1171), 33, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -498687,37 +459566,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [170538] = 4, + anon_sym_LF2, + [172223] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(5864), 1, + ACTIONS(10086), 1, + anon_sym_SLASH_SLASH, + STATE(5475), 1, sym_comment, - ACTIONS(1109), 13, - sym_identifier, + ACTIONS(10078), 2, anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1111), 21, - anon_sym_DOLLAR, + ACTIONS(10080), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10084), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, + ACTIONS(10088), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10082), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(10090), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(1179), 5, + sym_identifier, + anon_sym_in, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1181), 13, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -498726,36 +459615,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [170583] = 4, - ACTIONS(113), 1, + [172282] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1310), 1, - aux_sym_command_token1, - STATE(5865), 1, + ACTIONS(10086), 1, + anon_sym_SLASH_SLASH, + STATE(5476), 1, sym_comment, - ACTIONS(1308), 33, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(10080), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(10084), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10082), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, + ACTIONS(1179), 7, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1181), 19, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -498766,119 +459660,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [170628] = 4, - ACTIONS(113), 1, + [172335] = 13, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5866), 1, + ACTIONS(10086), 1, + anon_sym_SLASH_SLASH, + ACTIONS(10092), 1, + anon_sym_in, + STATE(5477), 1, sym_comment, - ACTIONS(1061), 2, - anon_sym_DOT, - sym__entry_separator, - ACTIONS(1059), 32, - anon_sym_SEMI, - anon_sym_RBRACK, + ACTIONS(10078), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(10080), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_QMARK2, + anon_sym_PLUS, + ACTIONS(10084), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, + ACTIONS(10088), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10082), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(10094), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1179), 4, + sym_identifier, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(10090), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, + ACTIONS(1181), 10, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, 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, - [170673] = 4, + [172398] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(5867), 1, - sym_comment, - ACTIONS(3505), 11, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3507), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [170718] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1296), 1, - aux_sym_command_token1, - STATE(5868), 1, + ACTIONS(10086), 1, + anon_sym_SLASH_SLASH, + STATE(5478), 1, sym_comment, - ACTIONS(1294), 33, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + ACTIONS(10084), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10082), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(1179), 9, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1181), 19, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -498889,35 +459754,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [170763] = 7, + [172449] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10432), 1, - anon_sym_DOT, - STATE(5684), 1, - sym_path, - STATE(5869), 1, + STATE(5479), 1, sym_comment, - STATE(6582), 1, - sym_cell_path, - ACTIONS(1179), 6, + ACTIONS(10084), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1179), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1181), 25, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1181), 20, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -498933,36 +459796,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [170814] = 4, - ACTIONS(113), 1, + [172496] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1370), 1, - aux_sym_command_token1, - STATE(5870), 1, + ACTIONS(10086), 1, + anon_sym_SLASH_SLASH, + STATE(5480), 1, sym_comment, - ACTIONS(1368), 33, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(10080), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(10084), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, + ACTIONS(10088), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10082), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(1179), 7, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1181), 17, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -498973,207 +459842,396 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LF2, - [170859] = 4, - ACTIONS(113), 1, + [172551] = 14, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1370), 1, - anon_sym_LF, - STATE(5871), 1, + ACTIONS(10086), 1, + anon_sym_SLASH_SLASH, + ACTIONS(10092), 1, + anon_sym_in, + STATE(5481), 1, sym_comment, - ACTIONS(1368), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(10078), 2, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_LT2, + ACTIONS(10080), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(10084), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10088), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10096), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10082), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, + ACTIONS(10094), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1179), 4, + sym_identifier, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(10090), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1181), 8, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [172616] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10086), 1, anon_sym_SLASH_SLASH, + ACTIONS(10092), 1, + anon_sym_in, + ACTIONS(10098), 1, + anon_sym_bit_DASHand, + STATE(5482), 1, + sym_comment, + ACTIONS(10078), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10080), 2, + anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10084), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10088), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10096), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10082), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(10094), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1179), 4, + sym_identifier, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(10090), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(1181), 7, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [172683] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10086), 1, + anon_sym_SLASH_SLASH, + ACTIONS(10092), 1, + anon_sym_in, + ACTIONS(10098), 1, + anon_sym_bit_DASHand, + ACTIONS(10100), 1, + anon_sym_bit_DASHxor, + STATE(5483), 1, + sym_comment, + ACTIONS(10078), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10080), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10084), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10088), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10096), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10082), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(10094), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + ACTIONS(1179), 4, + sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - [170904] = 15, - ACTIONS(113), 1, + ACTIONS(10090), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1181), 6, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_bit_DASHor, + [172752] = 17, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1378), 1, - anon_sym_LF, - ACTIONS(10464), 1, + ACTIONS(10086), 1, + anon_sym_SLASH_SLASH, + ACTIONS(10092), 1, + anon_sym_in, + ACTIONS(10098), 1, anon_sym_bit_DASHand, - ACTIONS(10466), 1, + ACTIONS(10100), 1, anon_sym_bit_DASHxor, - ACTIONS(10468), 1, + ACTIONS(10102), 1, anon_sym_bit_DASHor, - ACTIONS(10470), 1, - anon_sym_and, - STATE(5872), 1, + STATE(5484), 1, sym_comment, - ACTIONS(10442), 2, + ACTIONS(10078), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10080), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10446), 2, + ACTIONS(10084), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10448), 2, + ACTIONS(10088), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10462), 2, + ACTIONS(10096), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10444), 4, + ACTIONS(10082), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10460), 4, - anon_sym_in, + ACTIONS(10094), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(10440), 6, - anon_sym_GT, + ACTIONS(1179), 4, + sym_identifier, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(10090), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1376), 7, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1181), 5, + anon_sym_COMMA, anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_xor, - anon_sym_or, - [170971] = 5, - ACTIONS(113), 1, + [172823] = 18, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_LF, - ACTIONS(3588), 1, - aux_sym_unquoted_token5, - STATE(5873), 1, + ACTIONS(10086), 1, + anon_sym_SLASH_SLASH, + ACTIONS(10092), 1, + anon_sym_in, + ACTIONS(10098), 1, + anon_sym_bit_DASHand, + ACTIONS(10100), 1, + anon_sym_bit_DASHxor, + ACTIONS(10102), 1, + anon_sym_bit_DASHor, + ACTIONS(10104), 1, + anon_sym_and, + STATE(5485), 1, sym_comment, - ACTIONS(959), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(10078), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(10080), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(10084), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, + ACTIONS(10088), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10096), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1179), 3, + sym_identifier, + anon_sym_xor, + anon_sym_or, + ACTIONS(10082), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(10094), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10090), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(1181), 5, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [172896] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10086), 1, + anon_sym_SLASH_SLASH, + ACTIONS(10092), 1, + anon_sym_in, + ACTIONS(10098), 1, anon_sym_bit_DASHand, + ACTIONS(10100), 1, anon_sym_bit_DASHxor, + ACTIONS(10102), 1, anon_sym_bit_DASHor, + ACTIONS(10104), 1, anon_sym_and, + ACTIONS(10106), 1, anon_sym_xor, - anon_sym_or, - [171018] = 12, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1378), 1, - aux_sym_command_token1, - ACTIONS(10516), 1, - anon_sym_bit_DASHand, - STATE(5874), 1, + STATE(5486), 1, sym_comment, - ACTIONS(10502), 2, + ACTIONS(1179), 2, + sym_identifier, + anon_sym_or, + ACTIONS(10078), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10080), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10506), 2, + ACTIONS(10084), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10508), 2, + ACTIONS(10088), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10514), 2, + ACTIONS(10096), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10504), 4, + ACTIONS(10082), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10510), 4, - anon_sym_in, + ACTIONS(10094), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(10500), 6, - anon_sym_GT, + ACTIONS(10090), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1376), 10, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, + ACTIONS(1181), 5, + anon_sym_COMMA, anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [172971] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1179), 1, + sym_identifier, + ACTIONS(10086), 1, + anon_sym_SLASH_SLASH, + ACTIONS(10092), 1, + anon_sym_in, + ACTIONS(10098), 1, + anon_sym_bit_DASHand, + ACTIONS(10100), 1, anon_sym_bit_DASHxor, + ACTIONS(10102), 1, anon_sym_bit_DASHor, + ACTIONS(10104), 1, anon_sym_and, + ACTIONS(10106), 1, anon_sym_xor, + ACTIONS(10108), 1, anon_sym_or, - anon_sym_LF2, - [171079] = 4, + STATE(5487), 1, + sym_comment, + ACTIONS(10078), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10080), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10084), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10088), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10096), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10082), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(10094), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10090), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1181), 5, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [173048] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1412), 1, + ACTIONS(1157), 1, anon_sym_LF, - STATE(5875), 1, + STATE(5488), 1, sym_comment, - ACTIONS(1410), 33, + ACTIONS(1155), 33, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -499202,19 +460260,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [171124] = 4, + aux_sym_unquoted_token6, + [173093] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, - aux_sym_command_token1, - STATE(5876), 1, + ACTIONS(1149), 1, + aux_sym_unquoted_token6, + STATE(5489), 1, sym_comment, - ACTIONS(1368), 33, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1091), 3, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1089), 30, + sym_cmd_identifier, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -499242,84 +460303,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LF2, - [171169] = 13, - ACTIONS(113), 1, + [173140] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1378), 1, - aux_sym_command_token1, - ACTIONS(10516), 1, - anon_sym_bit_DASHand, - ACTIONS(10518), 1, - anon_sym_bit_DASHxor, - STATE(5877), 1, + STATE(5490), 1, sym_comment, - ACTIONS(10502), 2, + ACTIONS(1047), 14, + sym_identifier, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10506), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10508), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10514), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10504), 4, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10510), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10500), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_PLUS, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1376), 9, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LF2, - [171232] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1370), 1, - aux_sym_command_token1, - STATE(5878), 1, - sym_comment, - ACTIONS(1368), 33, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1049), 20, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -499330,27 +460342,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LF2, - [171277] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [173185] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10520), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(5879), 1, - sym_comment, - ACTIONS(1290), 2, - ts_builtin_sym_end, + ACTIONS(1173), 1, aux_sym_command_token1, - ACTIONS(1243), 31, + STATE(5491), 1, + sym_comment, + ACTIONS(1171), 33, anon_sym_SEMI, anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -499376,70 +460385,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [171324] = 14, - ACTIONS(113), 1, + [173230] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1378), 1, - aux_sym_command_token1, - ACTIONS(10516), 1, - anon_sym_bit_DASHand, - ACTIONS(10518), 1, - anon_sym_bit_DASHxor, - ACTIONS(10522), 1, - anon_sym_bit_DASHor, - STATE(5880), 1, + STATE(5492), 1, sym_comment, - ACTIONS(10502), 2, + ACTIONS(1033), 12, + sym_identifier, + anon_sym_GT, anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, - ACTIONS(10506), 2, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1035), 22, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_EQ_GT, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10508), 2, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10514), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10504), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10510), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10500), 6, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1376), 8, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LF2, - [171389] = 4, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DOT, + [173275] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1288), 1, - aux_sym_command_token1, - STATE(5881), 1, + ACTIONS(1131), 1, + anon_sym_LF, + STATE(5493), 1, sym_comment, - ACTIONS(1286), 33, + ACTIONS(1129), 33, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -499468,17 +460467,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [171434] = 4, + [173320] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5494), 1, + sym_comment, + ACTIONS(2229), 11, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2231), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [173365] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, - aux_sym_command_token1, - STATE(5882), 1, + STATE(5495), 1, sym_comment, - ACTIONS(1368), 33, + ACTIONS(1039), 3, + ts_builtin_sym_end, + anon_sym_DOT, + aux_sym_command_token1, + ACTIONS(1037), 31, anon_sym_SEMI, anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, @@ -499508,16 +460549,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LF2, - [171479] = 4, + [173410] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10524), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(5883), 1, + STATE(5496), 1, sym_comment, - ACTIONS(1243), 33, - sym_cmd_identifier, + ACTIONS(1213), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LPAREN2, + ACTIONS(1211), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, @@ -499547,37 +460590,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [171524] = 4, - ACTIONS(113), 1, + [173455] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5884), 1, + STATE(5497), 1, sym_comment, - ACTIONS(1065), 2, - anon_sym_DOT, - sym__entry_separator, - ACTIONS(1063), 32, - anon_sym_SEMI, - anon_sym_RBRACK, + ACTIONS(1020), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1022), 22, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_EQ_GT, anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -499588,22 +460630,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [171569] = 4, + anon_sym_DOT, + [173500] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1300), 1, - anon_sym_LF, - STATE(5885), 1, + ACTIONS(1247), 1, + aux_sym_command_token1, + STATE(5498), 1, sym_comment, - ACTIONS(1298), 33, + ACTIONS(1245), 33, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -499632,115 +460672,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [171614] = 15, + [173545] = 12, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1378), 1, + ACTIONS(1181), 1, aux_sym_command_token1, - ACTIONS(10516), 1, + ACTIONS(9937), 1, anon_sym_bit_DASHand, - ACTIONS(10518), 1, - anon_sym_bit_DASHxor, - ACTIONS(10522), 1, - anon_sym_bit_DASHor, - ACTIONS(10526), 1, - anon_sym_and, - STATE(5886), 1, + STATE(5499), 1, sym_comment, - ACTIONS(10502), 2, + ACTIONS(9925), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10506), 2, + ACTIONS(9931), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10508), 2, + ACTIONS(9933), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10514), 2, + ACTIONS(9935), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10504), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10510), 4, + ACTIONS(9927), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(10500), 6, + ACTIONS(9929), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(9923), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1376), 7, + ACTIONS(1179), 10, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LF2, - [171681] = 5, - ACTIONS(3), 1, + [173606] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9121), 1, - aux_sym_unquoted_token5, - STATE(5887), 1, + ACTIONS(1251), 1, + anon_sym_LF, + STATE(5500), 1, sym_comment, - ACTIONS(961), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(959), 20, - sym_cmd_identifier, + ACTIONS(1249), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [171728] = 4, + [173651] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, - aux_sym_command_token1, - STATE(5888), 1, + ACTIONS(1285), 1, + anon_sym_LF, + STATE(5501), 1, sym_comment, - ACTIONS(1368), 33, + ACTIONS(1283), 33, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -499766,21 +460803,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LF2, - [171773] = 5, + [173696] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1261), 1, + ACTIONS(1227), 1, anon_sym_LF, - ACTIONS(10528), 1, - anon_sym_LBRACK2, - STATE(5889), 1, + STATE(5502), 1, sym_comment, - ACTIONS(1259), 32, + ACTIONS(1225), 33, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -499809,34 +460844,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [171820] = 4, - ACTIONS(113), 1, + [173741] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1360), 1, - anon_sym_LF, - STATE(5890), 1, + STATE(5503), 1, sym_comment, - ACTIONS(1358), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1037), 14, + sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1039), 20, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -499847,17 +460883,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [171865] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [173786] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, + ACTIONS(1255), 1, aux_sym_command_token1, - STATE(5891), 1, + STATE(5504), 1, sym_comment, - ACTIONS(1368), 33, + ACTIONS(1253), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -499891,23 +460926,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [171910] = 5, + [173831] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1255), 1, - anon_sym_LF, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - STATE(5892), 1, + STATE(5505), 1, sym_comment, - ACTIONS(1253), 32, + ACTIONS(1043), 3, + ts_builtin_sym_end, + anon_sym_DOT, + aux_sym_command_token1, + ACTIONS(1041), 31, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LF, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -499933,19 +460967,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [171957] = 4, + [173876] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5506), 1, + sym_comment, + ACTIONS(2362), 11, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2364), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [173921] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1364), 1, - aux_sym_command_token1, - STATE(5893), 1, + STATE(5507), 1, sym_comment, - ACTIONS(1362), 33, - anon_sym_SEMI, + ACTIONS(1217), 3, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_RPAREN, + anon_sym_LPAREN2, + ACTIONS(1215), 31, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -499973,39 +461049,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LF2, - [172002] = 8, - ACTIONS(3), 1, + [173966] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10353), 1, - sym_filesize_unit, - ACTIONS(10355), 1, - sym_duration_unit, - ACTIONS(10530), 1, - anon_sym_DOT_DOT2, - STATE(5894), 1, + ACTIONS(1259), 1, + aux_sym_command_token1, + STATE(5508), 1, sym_comment, - ACTIONS(10532), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(959), 5, + ACTIONS(1257), 33, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(961), 24, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -500019,12 +461090,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [172055] = 4, + [174011] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5895), 1, + STATE(5509), 1, sym_comment, - ACTIONS(1109), 14, + ACTIONS(1041), 14, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -500039,7 +461110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(1111), 20, + ACTIONS(1043), 20, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -500060,14 +461131,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [172100] = 4, + [174056] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5510), 1, + sym_comment, + ACTIONS(2402), 11, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2404), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [174101] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, + ACTIONS(1263), 1, aux_sym_command_token1, - STATE(5896), 1, + STATE(5511), 1, sym_comment, - ACTIONS(1368), 33, + ACTIONS(1261), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -500101,20 +461213,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [172145] = 5, + [174146] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - ACTIONS(1275), 1, + ACTIONS(1157), 1, anon_sym_LF, - STATE(5897), 1, + STATE(5512), 1, sym_comment, - ACTIONS(1273), 32, + ACTIONS(1155), 33, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -500143,72 +461254,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [172192] = 16, + [174191] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1378), 1, + ACTIONS(1227), 1, aux_sym_command_token1, - ACTIONS(10516), 1, - anon_sym_bit_DASHand, - ACTIONS(10518), 1, - anon_sym_bit_DASHxor, - ACTIONS(10522), 1, - anon_sym_bit_DASHor, - ACTIONS(10526), 1, - anon_sym_and, - ACTIONS(10534), 1, - anon_sym_xor, - STATE(5898), 1, + STATE(5513), 1, sym_comment, - ACTIONS(10502), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10506), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10508), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10514), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10504), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10510), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1376), 6, + ACTIONS(1225), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_or, - anon_sym_LF2, - ACTIONS(10500), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [172261] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1296), 1, - anon_sym_LF, - STATE(5899), 1, - sym_comment, - ACTIONS(1294), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -500237,21 +461295,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [172306] = 4, + [174236] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, - aux_sym_command_token1, - STATE(5900), 1, + ACTIONS(1137), 1, + anon_sym_LF, + STATE(5514), 1, sym_comment, - ACTIONS(1368), 33, + ACTIONS(1135), 33, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -500277,23 +461336,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LF2, - [172351] = 4, + [174281] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5901), 1, - sym_comment, - ACTIONS(938), 3, - ts_builtin_sym_end, - anon_sym_LPAREN2, + ACTIONS(1173), 1, aux_sym_command_token1, - ACTIONS(936), 31, + STATE(5515), 1, + sym_comment, + ACTIONS(1171), 33, anon_sym_SEMI, anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -500319,12 +461377,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [172396] = 4, + [174326] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5902), 1, + STATE(5516), 1, sym_comment, - ACTIONS(3960), 11, + ACTIONS(1061), 11, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -500336,7 +461394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3962), 23, + ACTIONS(1063), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -500360,22 +461418,111 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [172441] = 4, + [174371] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9921), 1, + anon_sym_DOT, + STATE(5283), 1, + sym_cell_path, + STATE(5435), 1, + sym_path, + STATE(5517), 1, + sym_comment, + ACTIONS(1002), 6, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1004), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [174422] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9921), 1, + anon_sym_DOT, + STATE(5435), 1, + sym_path, + STATE(5518), 1, + sym_comment, + STATE(6190), 1, + sym_cell_path, + ACTIONS(1057), 6, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1059), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [174473] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1296), 1, - anon_sym_LF, - STATE(5903), 1, + ACTIONS(1074), 1, + aux_sym_command_token1, + STATE(5519), 1, sym_comment, - ACTIONS(1294), 33, + ACTIONS(1072), 5, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(1076), 28, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -500401,22 +461548,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [172486] = 6, + [174520] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1378), 1, + ACTIONS(1173), 1, aux_sym_command_token1, - STATE(5904), 1, + STATE(5520), 1, sym_comment, - ACTIONS(10401), 2, + ACTIONS(1171), 33, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10399), 4, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [174565] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5521), 1, + sym_comment, + ACTIONS(1047), 13, + sym_identifier, + anon_sym_GT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1049), 21, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, - ACTIONS(1376), 27, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [174610] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1289), 1, + aux_sym_command_token1, + STATE(5522), 1, + sym_comment, + ACTIONS(1287), 33, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -500425,6 +461646,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -500444,17 +461671,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [172535] = 5, + [174655] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1284), 1, + ACTIONS(1163), 1, aux_sym_unquoted_token6, - STATE(5905), 1, + STATE(5523), 1, sym_comment, - ACTIONS(1160), 2, + ACTIONS(1161), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1158), 31, + ACTIONS(1159), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -500486,28 +461713,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [172582] = 4, + [174702] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(5906), 1, + ACTIONS(9991), 1, + anon_sym_DOT, + STATE(5386), 1, + sym_path, + STATE(5524), 1, sym_comment, - ACTIONS(2437), 11, - anon_sym_LPAREN, + STATE(6140), 1, + sym_cell_path, + ACTIONS(1002), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(2439), 23, + ACTIONS(1004), 23, anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_not, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -500527,46 +461757,35 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [172627] = 11, - ACTIONS(3), 1, + [174753] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10544), 1, - anon_sym_SLASH_SLASH, - STATE(5907), 1, + STATE(5525), 1, sym_comment, - ACTIONS(10536), 2, + ACTIONS(1173), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1171), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_LT2, - ACTIONS(10538), 2, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10542), 2, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10546), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10540), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(10548), 4, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1376), 5, - sym_identifier, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1378), 13, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -500575,41 +461794,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [172686] = 8, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [174797] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10544), 1, - anon_sym_SLASH_SLASH, - STATE(5908), 1, + STATE(5526), 1, sym_comment, - ACTIONS(10538), 2, + ACTIONS(1177), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1175), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10542), 2, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10540), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(1376), 7, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1378), 19, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -500620,127 +461834,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [172739] = 13, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [174841] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10544), 1, - anon_sym_SLASH_SLASH, - ACTIONS(10550), 1, - anon_sym_in, - STATE(5909), 1, + STATE(5527), 1, sym_comment, - ACTIONS(10536), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10538), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10542), 2, + ACTIONS(1251), 13, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10546), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10540), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(10552), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1376), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(10548), 4, + anon_sym_SLASH_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1378), 10, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [172802] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10544), 1, - anon_sym_SLASH_SLASH, - STATE(5910), 1, - sym_comment, - ACTIONS(10542), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10540), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(1376), 9, - sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1249), 20, + sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1378), 19, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [172853] = 5, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [174885] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5911), 1, + STATE(5528), 1, sym_comment, - ACTIONS(10542), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(1376), 12, - sym_identifier, + ACTIONS(1165), 5, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1378), 20, + ACTIONS(1167), 28, anon_sym_COMMA, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -500756,42 +461914,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [172900] = 9, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [174929] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10544), 1, - anon_sym_SLASH_SLASH, - STATE(5912), 1, + STATE(5529), 1, sym_comment, - ACTIONS(10538), 2, + ACTIONS(1043), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT, + ACTIONS(1041), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10542), 2, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10546), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10540), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(1376), 7, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1378), 17, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -500802,395 +461954,300 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [172955] = 14, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [174973] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10544), 1, - anon_sym_SLASH_SLASH, - ACTIONS(10550), 1, - anon_sym_in, - STATE(5913), 1, + STATE(5530), 1, sym_comment, - ACTIONS(10536), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10538), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10542), 2, + ACTIONS(1173), 13, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10546), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10554), 2, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10540), 3, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1171), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(10552), 3, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1376), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(10548), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1378), 8, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [173020] = 15, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [175017] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10544), 1, - anon_sym_SLASH_SLASH, - ACTIONS(10550), 1, - anon_sym_in, - ACTIONS(10556), 1, - anon_sym_bit_DASHand, - STATE(5914), 1, + STATE(5531), 1, sym_comment, - ACTIONS(10536), 2, + ACTIONS(1285), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(1283), 31, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, anon_sym_GT, - anon_sym_LT2, - ACTIONS(10538), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10542), 2, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10546), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10554), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10540), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(10552), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1376), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(10548), 4, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1378), 7, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [173087] = 16, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [175061] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10544), 1, - anon_sym_SLASH_SLASH, - ACTIONS(10550), 1, - anon_sym_in, - ACTIONS(10556), 1, - anon_sym_bit_DASHand, - ACTIONS(10558), 1, - anon_sym_bit_DASHxor, - STATE(5915), 1, + STATE(5532), 1, sym_comment, - ACTIONS(10536), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10538), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10542), 2, + ACTIONS(1173), 13, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10546), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10554), 2, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10540), 3, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1171), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(10552), 3, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1376), 4, - sym_identifier, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(10548), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1378), 6, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_bit_DASHor, - [173156] = 17, - ACTIONS(3), 1, + [175105] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10544), 1, - anon_sym_SLASH_SLASH, - ACTIONS(10550), 1, - anon_sym_in, - ACTIONS(10556), 1, - anon_sym_bit_DASHand, - ACTIONS(10558), 1, - anon_sym_bit_DASHxor, - ACTIONS(10560), 1, - anon_sym_bit_DASHor, - STATE(5916), 1, + STATE(5533), 1, sym_comment, - ACTIONS(10536), 2, + ACTIONS(1161), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1159), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_LT2, - ACTIONS(10538), 2, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10542), 2, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10546), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10554), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10540), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(10552), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1376), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(10548), 4, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1378), 5, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [173227] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10544), 1, - anon_sym_SLASH_SLASH, - ACTIONS(10550), 1, - anon_sym_in, - ACTIONS(10556), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(10558), 1, anon_sym_bit_DASHxor, - ACTIONS(10560), 1, anon_sym_bit_DASHor, - ACTIONS(10562), 1, anon_sym_and, - STATE(5917), 1, + anon_sym_xor, + anon_sym_or, + [175149] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5534), 1, sym_comment, - ACTIONS(10536), 2, + ACTIONS(1171), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, anon_sym_LT2, - ACTIONS(10538), 2, + ACTIONS(1173), 28, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10542), 2, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10546), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10554), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1376), 3, - sym_identifier, - anon_sym_xor, - anon_sym_or, - ACTIONS(10540), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(10552), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10548), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1378), 5, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [173300] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10544), 1, - anon_sym_SLASH_SLASH, - ACTIONS(10550), 1, - anon_sym_in, - ACTIONS(10556), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(10558), 1, anon_sym_bit_DASHxor, - ACTIONS(10560), 1, anon_sym_bit_DASHor, - ACTIONS(10562), 1, anon_sym_and, - ACTIONS(10564), 1, anon_sym_xor, - STATE(5918), 1, - sym_comment, - ACTIONS(1376), 2, - sym_identifier, anon_sym_or, - ACTIONS(10536), 2, + [175193] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1157), 1, + anon_sym_LF, + STATE(5535), 1, + sym_comment, + ACTIONS(1155), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, - anon_sym_LT2, - ACTIONS(10538), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10542), 2, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10546), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10554), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10540), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(10552), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10548), 4, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1378), 5, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [173375] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1376), 1, - sym_identifier, - ACTIONS(10544), 1, - anon_sym_SLASH_SLASH, - ACTIONS(10550), 1, - anon_sym_in, - ACTIONS(10556), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(10558), 1, anon_sym_bit_DASHxor, - ACTIONS(10560), 1, anon_sym_bit_DASHor, - ACTIONS(10562), 1, anon_sym_and, - ACTIONS(10564), 1, anon_sym_xor, - ACTIONS(10566), 1, anon_sym_or, - STATE(5919), 1, + [175237] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5536), 1, sym_comment, - ACTIONS(10536), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10538), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10542), 2, + ACTIONS(1255), 13, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10546), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10554), 2, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10540), 3, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1253), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(10552), 3, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(10548), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1378), 5, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [173452] = 4, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [175281] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1356), 1, - aux_sym_command_token1, - STATE(5920), 1, + STATE(5537), 1, sym_comment, - ACTIONS(1354), 33, + ACTIONS(1255), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(1253), 31, anon_sym_SEMI, anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, @@ -501220,33 +462277,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LF2, - [173497] = 6, + [175325] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10568), 1, - anon_sym_DOT_DOT2, - STATE(5921), 1, + STATE(5538), 1, sym_comment, - ACTIONS(10570), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3949), 10, + ACTIONS(3650), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(3644), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3951), 21, + ACTIONS(3646), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -501264,65 +462318,64 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [173546] = 6, + [175371] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10572), 1, - anon_sym_DOT_DOT2, - STATE(5922), 1, + ACTIONS(10110), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(10112), 1, + aux_sym_unquoted_token2, + STATE(5539), 1, sym_comment, - ACTIONS(10574), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3964), 10, - anon_sym_DOLLAR, + ACTIONS(920), 6, + anon_sym_GT, anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3966), 21, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(922), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, anon_sym_LBRACE, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [173595] = 4, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [175419] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, - aux_sym_command_token1, - STATE(5923), 1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + STATE(5540), 1, sym_comment, - ACTIONS(1368), 33, - anon_sym_SEMI, + ACTIONS(1131), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_RPAREN, + ACTIONS(1129), 30, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -501348,37 +462401,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [173640] = 7, - ACTIONS(3), 1, + [175465] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10432), 1, - anon_sym_DOT, - STATE(5684), 1, - sym_path, - STATE(5924), 1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + STATE(5541), 1, sym_comment, - STATE(6463), 1, - sym_cell_path, - ACTIONS(1154), 6, + ACTIONS(1137), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1135), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1156), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -501392,26 +462442,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [173691] = 5, - ACTIONS(113), 1, + [175511] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1378), 1, - aux_sym_command_token1, - STATE(5925), 1, + STATE(5542), 1, sym_comment, - ACTIONS(10401), 2, + ACTIONS(940), 13, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(1376), 31, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(938), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [175555] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(5543), 1, + sym_comment, + ACTIONS(1043), 2, + anon_sym_DOT, + sym__entry_separator, + ACTIONS(1041), 31, anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, @@ -501434,38 +462522,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [173738] = 8, - ACTIONS(113), 1, + [175599] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1378), 1, - aux_sym_command_token1, - STATE(5926), 1, + STATE(5544), 1, sym_comment, - ACTIONS(10395), 2, - anon_sym_DASH, + ACTIONS(1051), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(10401), 2, + anon_sym_LT2, + ACTIONS(1053), 28, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10403), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10399), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [175643] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5545), 1, + sym_comment, + ACTIONS(1237), 5, + anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1376), 23, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1239), 28, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_in, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -501479,16 +462602,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [173791] = 4, + [175687] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5546), 1, + sym_comment, + ACTIONS(1173), 13, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1171), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [175731] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5927), 1, + STATE(5547), 1, sym_comment, - ACTIONS(1416), 3, + ACTIONS(1095), 2, ts_builtin_sym_end, - anon_sym_LPAREN2, aux_sym_command_token1, - ACTIONS(1414), 31, + ACTIONS(1093), 31, anon_sym_SEMI, anon_sym_LF, anon_sym_PIPE, @@ -501520,74 +462682,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [173836] = 5, - ACTIONS(113), 1, + [175775] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9162), 1, - aux_sym_unquoted_token5, - STATE(5928), 1, + STATE(5548), 1, sym_comment, - ACTIONS(961), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(959), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(1095), 13, anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1093), 20, + sym_cmd_identifier, + anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [175819] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5549), 1, + sym_comment, + ACTIONS(1259), 13, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1257), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [173883] = 6, + [175863] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10576), 1, - anon_sym_DOT_DOT2, - STATE(5929), 1, + ACTIONS(10114), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(10116), 1, + aux_sym__immediate_decimal_token2, + STATE(5550), 1, sym_comment, - ACTIONS(10578), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(4043), 10, + ACTIONS(2229), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4045), 21, + ACTIONS(2231), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -501605,23 +462804,23 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [173932] = 4, + [175911] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(5930), 1, + ACTIONS(3433), 1, + aux_sym_unquoted_token5, + STATE(5551), 1, sym_comment, - ACTIONS(961), 3, + ACTIONS(940), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT, - ACTIONS(959), 31, + ACTIONS(938), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -501646,34 +462845,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [173977] = 4, - ACTIONS(113), 1, + [175957] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1370), 1, - aux_sym_command_token1, - STATE(5931), 1, + ACTIONS(10118), 1, + anon_sym_DOT, + STATE(4782), 1, + sym_cell_path, + STATE(5552), 1, sym_comment, - ACTIONS(1368), 33, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, + STATE(5757), 1, + sym_path, + ACTIONS(1097), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1099), 18, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -501684,40 +462888,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [174022] = 7, - ACTIONS(3), 1, + [176007] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10432), 1, - anon_sym_DOT, - STATE(5684), 1, - sym_path, - STATE(5932), 1, + ACTIONS(1281), 1, + anon_sym_LF, + STATE(5553), 1, sym_comment, - STATE(6446), 1, - sym_cell_path, - ACTIONS(1203), 6, + ACTIONS(1279), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1205), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -501731,37 +462928,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [174073] = 7, - ACTIONS(3), 1, + [176051] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10432), 1, - anon_sym_DOT, - STATE(5684), 1, - sym_path, - STATE(5689), 1, - sym_cell_path, - STATE(5933), 1, + ACTIONS(1209), 1, + ts_builtin_sym_end, + ACTIONS(10120), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(5554), 1, sym_comment, - ACTIONS(995), 6, + ACTIONS(1139), 31, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(997), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -501775,21 +462969,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [174124] = 4, + [176097] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1318), 1, - aux_sym_command_token1, - STATE(5934), 1, + ACTIONS(1167), 1, + anon_sym_LF, + STATE(5555), 1, sym_comment, - ACTIONS(1316), 33, + ACTIONS(1165), 32, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -501815,25 +463009,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LF2, - [174169] = 6, + [176141] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10496), 1, - anon_sym_DOT_DOT2, - STATE(5935), 1, + ACTIONS(10122), 1, + anon_sym_QMARK2, + STATE(5556), 1, sym_comment, - ACTIONS(10498), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1158), 6, + ACTIONS(1024), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1160), 25, + ACTIONS(1026), 26, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, @@ -501859,19 +463049,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [174218] = 5, + anon_sym_DOT, + [176187] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1284), 1, - aux_sym_unquoted_token6, - STATE(5936), 1, + STATE(5557), 1, sym_comment, - ACTIONS(1160), 3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1158), 30, - sym_cmd_identifier, + ACTIONS(1169), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1076), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, @@ -501901,19 +463090,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [174265] = 4, + [176231] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1310), 1, - aux_sym_command_token1, - STATE(5937), 1, + STATE(5558), 1, sym_comment, - ACTIONS(1308), 33, - anon_sym_SEMI, + ACTIONS(1053), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_RPAREN, + ACTIONS(1051), 31, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -501941,36 +463130,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LF2, - [174310] = 4, - ACTIONS(3), 1, + [176275] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(5938), 1, + STATE(5559), 1, sym_comment, - ACTIONS(1113), 13, - sym_identifier, + ACTIONS(1053), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(1051), 31, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1115), 21, - anon_sym_DOLLAR, - anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -501981,210 +463167,271 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [174355] = 17, - ACTIONS(113), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [176319] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1378), 1, - aux_sym_command_token1, - ACTIONS(10516), 1, + STATE(5560), 1, + sym_comment, + ACTIONS(1263), 13, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1261), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_bit_DASHand, - ACTIONS(10518), 1, anon_sym_bit_DASHxor, - ACTIONS(10522), 1, anon_sym_bit_DASHor, - ACTIONS(10526), 1, anon_sym_and, - ACTIONS(10534), 1, anon_sym_xor, - ACTIONS(10580), 1, anon_sym_or, - STATE(5939), 1, + [176363] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5561), 1, sym_comment, - ACTIONS(10502), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10506), 2, + ACTIONS(1247), 13, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10508), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10514), 2, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10504), 4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1245), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10510), 4, - anon_sym_in, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1376), 5, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_LF2, - ACTIONS(10500), 6, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [176407] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10124), 1, + anon_sym_DOT_DOT2, + STATE(5562), 1, + sym_comment, + ACTIONS(9989), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1089), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1091), 25, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [174426] = 11, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [176455] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1378), 1, - aux_sym_command_token1, - STATE(5940), 1, + STATE(5563), 1, sym_comment, - ACTIONS(10395), 2, + ACTIONS(1181), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(10128), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10401), 2, + ACTIONS(10132), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10403), 2, + ACTIONS(10134), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10405), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10397), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10399), 4, + ACTIONS(10130), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10393), 6, + ACTIONS(10126), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1376), 11, + ACTIONS(1179), 15, anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [174485] = 7, + [176509] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10419), 1, - anon_sym_DOT, - STATE(5762), 1, - sym_path, - STATE(5941), 1, + STATE(5564), 1, sym_comment, - STATE(6617), 1, - sym_cell_path, - ACTIONS(1186), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1188), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, + ACTIONS(1177), 13, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [174536] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(5942), 1, - sym_comment, - ACTIONS(1170), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1168), 31, - anon_sym_RBRACK, + ACTIONS(1175), 20, + sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [176553] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5565), 1, + sym_comment, + ACTIONS(1231), 13, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1229), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - [174581] = 4, + [176597] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1348), 1, - aux_sym_command_token1, - STATE(5943), 1, + ACTIONS(1223), 1, + anon_sym_LF, + STATE(5566), 1, sym_comment, - ACTIONS(1346), 33, + ACTIONS(1221), 32, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -502210,35 +463457,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LF2, - [174626] = 4, - ACTIONS(113), 1, + [176641] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5944), 1, + ACTIONS(10124), 1, + anon_sym_DOT_DOT2, + STATE(5567), 1, sym_comment, - ACTIONS(1290), 3, - ts_builtin_sym_end, - anon_sym_LPAREN2, - aux_sym_command_token1, - ACTIONS(1243), 31, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, + ACTIONS(1074), 2, + anon_sym_DOLLAR, + anon_sym_LBRACE, + ACTIONS(9989), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1076), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1169), 23, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -502252,96 +463500,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [174671] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10582), 1, - aux_sym__immediate_decimal_token1, - STATE(5945), 1, - sym_comment, - ACTIONS(2851), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(3748), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3750), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [174720] = 4, + [176691] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(5946), 1, - sym_comment, - ACTIONS(2547), 11, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, + ACTIONS(10118), 1, anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(2549), 23, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_not, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [174765] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5947), 1, + STATE(4790), 1, + sym_cell_path, + STATE(5568), 1, sym_comment, - ACTIONS(1113), 14, + STATE(5757), 1, + sym_path, + ACTIONS(1101), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -502354,9 +463524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1115), 20, + ACTIONS(1103), 18, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -502375,21 +463543,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [174810] = 4, + [176741] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1160), 1, - aux_sym_command_token1, - STATE(5948), 1, + STATE(5569), 1, sym_comment, - ACTIONS(1158), 33, - anon_sym_SEMI, + ACTIONS(1173), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_RPAREN, + ACTIONS(1171), 31, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -502417,63 +463583,218 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LF2, - [174855] = 11, + [176785] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5570), 1, + sym_comment, + ACTIONS(1227), 13, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1225), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [176829] = 7, ACTIONS(113), 1, anon_sym_POUND, - STATE(5949), 1, + STATE(5571), 1, sym_comment, - ACTIONS(1378), 2, + ACTIONS(1181), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(10586), 2, + ACTIONS(10128), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10592), 2, + ACTIONS(10132), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10594), 2, + ACTIONS(10130), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1179), 23, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_in, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10596), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10588), 4, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [176879] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5572), 1, + sym_comment, + ACTIONS(1171), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1173), 28, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(10590), 4, + 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, + [176923] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(5573), 1, + sym_comment, + ACTIONS(1039), 2, + anon_sym_DOT, + sym__entry_separator, + ACTIONS(1037), 31, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10584), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1376), 9, - anon_sym_SEMI, - anon_sym_PIPE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [176967] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5574), 1, + sym_comment, + ACTIONS(1173), 13, anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1171), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [174913] = 4, + [177011] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5950), 1, + STATE(5575), 1, sym_comment, - ACTIONS(1370), 2, + ACTIONS(1285), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1368), 31, + ACTIONS(1283), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -502505,19 +463826,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [174957] = 4, + [177055] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1072), 1, + sym_identifier, + ACTIONS(1074), 1, + anon_sym_DASH_DASH, + ACTIONS(1078), 1, + anon_sym_DASH, + ACTIONS(10136), 1, + anon_sym_DOT_DOT2, + STATE(5576), 1, + sym_comment, + ACTIONS(10138), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1076), 10, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1169), 17, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [177109] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5951), 1, + STATE(5577), 1, sym_comment, - ACTIONS(1348), 2, + ACTIONS(1173), 2, ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(1346), 31, - anon_sym_SEMI, anon_sym_LF, + ACTIONS(1171), 31, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -502545,39 +463911,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [175001] = 7, - ACTIONS(3), 1, + [177153] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10598), 1, - anon_sym_DOT, - STATE(4991), 1, - sym_cell_path, - STATE(5952), 1, + STATE(5578), 1, sym_comment, - STATE(6153), 1, - sym_path, - ACTIONS(1154), 12, - sym_identifier, + ACTIONS(1217), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LPAREN2, + ACTIONS(1215), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1156), 18, - anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -502588,43 +463948,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [175051] = 9, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [177197] = 10, ACTIONS(113), 1, anon_sym_POUND, - STATE(5953), 1, + STATE(5579), 1, sym_comment, - ACTIONS(1378), 2, + ACTIONS(1181), 2, ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(10602), 2, + anon_sym_LF, + ACTIONS(10128), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10606), 2, + ACTIONS(10132), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10608), 2, + ACTIONS(10134), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10604), 4, + ACTIONS(10130), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10600), 6, + ACTIONS(10140), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10126), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1376), 15, + ACTIONS(1179), 11, anon_sym_SEMI, - anon_sym_LF, anon_sym_PIPE, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, + anon_sym_DASH_DASH, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_bit_DASHand, @@ -502633,33 +463997,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [175105] = 4, - ACTIONS(3), 1, + [177253] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(5954), 1, + STATE(5580), 1, sym_comment, - ACTIONS(1368), 5, + ACTIONS(1157), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1155), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1370), 28, - anon_sym_COMMA, - anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -502673,54 +464037,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [175149] = 4, + [177297] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5955), 1, + STATE(5581), 1, sym_comment, - ACTIONS(1368), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1370), 28, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(1209), 13, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1139), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [175193] = 4, + [177341] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1314), 1, + ACTIONS(1161), 1, anon_sym_LF, - STATE(5956), 1, + STATE(5582), 1, sym_comment, - ACTIONS(1312), 32, + ACTIONS(1159), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -502753,19 +464117,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [175237] = 4, + [177385] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5957), 1, + STATE(5583), 1, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1259), 2, ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1316), 31, + aux_sym_command_token1, + ACTIONS(1257), 31, anon_sym_SEMI, + anon_sym_LF, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -502793,33 +464157,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [175281] = 4, - ACTIONS(3), 1, + [177429] = 5, + ACTIONS(113), 1, anon_sym_POUND, - STATE(5958), 1, + STATE(5584), 1, sym_comment, - ACTIONS(1368), 5, + ACTIONS(1074), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(1072), 3, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, + ACTIONS(1076), 28, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1370), 28, - anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -502833,19 +464198,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [175325] = 4, + [177475] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5959), 1, + STATE(5585), 1, sym_comment, - ACTIONS(1304), 2, + ACTIONS(1289), 2, ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1302), 31, + aux_sym_command_token1, + ACTIONS(1287), 31, anon_sym_SEMI, + anon_sym_LF, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -502873,15 +464238,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [175369] = 5, + [177519] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5960), 1, + STATE(5586), 1, sym_comment, - ACTIONS(1934), 2, + ACTIONS(1844), 2, anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(3518), 8, + ACTIONS(3312), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -502890,7 +464255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3520), 23, + ACTIONS(3314), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -502914,38 +464279,75 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [175415] = 6, - ACTIONS(3), 1, + [177565] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10610), 1, - anon_sym_DOT_DOT2, - STATE(5961), 1, + STATE(5587), 1, sym_comment, - ACTIONS(10612), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1158), 12, - sym_identifier, + ACTIONS(1173), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1171), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1160), 18, - anon_sym_DASH_DASH, + [177609] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(5588), 1, + sym_comment, + ACTIONS(1181), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(10132), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10130), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(1179), 25, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -502956,33 +464358,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [175463] = 4, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [177657] = 5, + ACTIONS(113), 1, anon_sym_POUND, - STATE(5962), 1, + ACTIONS(1209), 1, + anon_sym_LPAREN2, + ACTIONS(10142), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(5589), 1, sym_comment, - ACTIONS(1368), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1370), 28, - anon_sym_COMMA, + ACTIONS(1139), 31, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [177703] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(5590), 1, + sym_comment, + ACTIONS(1267), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1265), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -502996,19 +464442,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [175507] = 4, + [177747] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5963), 1, + STATE(5591), 1, sym_comment, - ACTIONS(1322), 2, + ACTIONS(1267), 2, ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(1320), 31, - anon_sym_SEMI, anon_sym_LF, + ACTIONS(1265), 31, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -503036,15 +464482,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [175551] = 4, + [177791] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5964), 1, + STATE(5592), 1, sym_comment, - ACTIONS(1370), 2, + ACTIONS(1239), 2, ts_builtin_sym_end, aux_sym_command_token1, - ACTIONS(1368), 31, + ACTIONS(1237), 31, anon_sym_SEMI, anon_sym_LF, anon_sym_PIPE, @@ -503076,78 +464522,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [175595] = 11, - ACTIONS(3), 1, + [177835] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10622), 1, - anon_sym_SLASH_SLASH, - STATE(5965), 1, + STATE(5593), 1, sym_comment, - ACTIONS(10614), 2, + ACTIONS(1263), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(1261), 31, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, anon_sym_GT, - anon_sym_LT2, - ACTIONS(10616), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10620), 2, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10624), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10618), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(10626), 4, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1378), 6, - anon_sym_DASH_DASH, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1376), 11, - sym_cmd_identifier, - anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [175653] = 7, + [177879] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5966), 1, + STATE(5594), 1, sym_comment, - ACTIONS(1378), 2, + ACTIONS(1173), 2, ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(10602), 2, + anon_sym_LF, + ACTIONS(1171), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10606), 2, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10604), 4, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1376), 23, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_in, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -503166,25 +464602,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [175703] = 8, + [177923] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10622), 1, - anon_sym_SLASH_SLASH, - STATE(5967), 1, + STATE(5595), 1, sym_comment, - ACTIONS(10616), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10620), 2, + ACTIONS(1267), 13, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10618), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(1378), 10, - anon_sym_DASH_DASH, + anon_sym_SLASH_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -503194,10 +464621,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1376), 15, + ACTIONS(1265), 20, sym_cmd_identifier, anon_sym_GT, + anon_sym_DASH, anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_LT2, @@ -503210,106 +464642,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [175755] = 12, - ACTIONS(3), 1, + [177967] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10622), 1, - anon_sym_SLASH_SLASH, - STATE(5968), 1, + STATE(5596), 1, sym_comment, - ACTIONS(10614), 2, + ACTIONS(1223), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(1221), 31, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, anon_sym_GT, - anon_sym_LT2, - ACTIONS(10616), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10620), 2, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10624), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10618), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(10626), 4, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(10628), 4, - anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1378), 6, - anon_sym_DASH_DASH, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1376), 7, - sym_cmd_identifier, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [175815] = 7, - ACTIONS(3), 1, + [178011] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10622), 1, - anon_sym_SLASH_SLASH, - STATE(5969), 1, + STATE(5597), 1, sym_comment, - ACTIONS(10620), 2, + ACTIONS(1273), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1271), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10618), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(1378), 10, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1376), 17, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [175865] = 4, + [178055] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5970), 1, + STATE(5598), 1, sym_comment, - ACTIONS(1360), 2, + ACTIONS(1277), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1358), 31, + ACTIONS(1275), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -503341,16 +464762,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [175909] = 5, + [178099] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5971), 1, + STATE(5599), 1, sym_comment, - ACTIONS(10620), 2, + ACTIONS(1171), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1173), 28, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(1378), 11, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [178143] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5600), 1, + sym_comment, + ACTIONS(1267), 13, anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -503361,7 +464821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1376), 20, + ACTIONS(1265), 20, sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, @@ -503382,340 +464842,278 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [175955] = 9, + [178187] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10622), 1, - anon_sym_SLASH_SLASH, - STATE(5972), 1, + STATE(5601), 1, sym_comment, - ACTIONS(10616), 2, - anon_sym_DASH, + ACTIONS(1171), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(10620), 2, + anon_sym_LT2, + ACTIONS(1173), 28, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10624), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10618), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(1378), 10, - anon_sym_DASH_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1376), 13, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [176009] = 14, - ACTIONS(3), 1, + [178231] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10622), 1, - anon_sym_SLASH_SLASH, - ACTIONS(10632), 1, - anon_sym_bit_DASHand, - STATE(5973), 1, + STATE(5602), 1, sym_comment, - ACTIONS(10614), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10616), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10620), 2, + ACTIONS(1181), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(10132), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10624), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10630), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10618), 3, + ACTIONS(1179), 29, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(1378), 4, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(10626), 4, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(10628), 4, - anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1376), 6, - sym_cmd_identifier, + 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, - [176073] = 15, - ACTIONS(3), 1, + [178277] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10622), 1, - anon_sym_SLASH_SLASH, - ACTIONS(10632), 1, - anon_sym_bit_DASHand, - ACTIONS(10634), 1, - anon_sym_bit_DASHxor, - STATE(5974), 1, + STATE(5603), 1, sym_comment, - ACTIONS(10614), 2, + ACTIONS(1173), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1171), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_LT2, - ACTIONS(10616), 2, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10620), 2, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10624), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10630), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10618), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(1378), 4, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(10626), 4, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(10628), 4, - anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1376), 5, - sym_cmd_identifier, + 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, - [176139] = 16, + [178321] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10622), 1, - anon_sym_SLASH_SLASH, - ACTIONS(10632), 1, - anon_sym_bit_DASHand, - ACTIONS(10634), 1, - anon_sym_bit_DASHxor, - ACTIONS(10636), 1, - anon_sym_bit_DASHor, - STATE(5975), 1, + STATE(5604), 1, sym_comment, - ACTIONS(10614), 2, + ACTIONS(1171), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, anon_sym_LT2, - ACTIONS(10616), 2, + ACTIONS(1173), 28, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10620), 2, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10624), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10630), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10618), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(1376), 4, - sym_cmd_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1378), 4, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(10626), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(10628), 4, - anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - [176207] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10622), 1, - anon_sym_SLASH_SLASH, - ACTIONS(10632), 1, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(10634), 1, anon_sym_bit_DASHxor, - ACTIONS(10636), 1, anon_sym_bit_DASHor, - ACTIONS(10638), 1, anon_sym_and, - STATE(5976), 1, + anon_sym_xor, + anon_sym_or, + [178365] = 8, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(5605), 1, sym_comment, - ACTIONS(10614), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10616), 2, + ACTIONS(1181), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(10128), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10620), 2, + ACTIONS(10132), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10624), 2, + ACTIONS(10134), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10630), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1376), 3, - sym_cmd_identifier, - anon_sym_xor, - anon_sym_or, - ACTIONS(10618), 3, + ACTIONS(10130), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(1378), 4, + anon_sym_SLASH_SLASH, + ACTIONS(1179), 21, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(10626), 4, + anon_sym_in, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(10628), 4, - anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - [176277] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10622), 1, - anon_sym_SLASH_SLASH, - ACTIONS(10632), 1, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(10634), 1, anon_sym_bit_DASHxor, - ACTIONS(10636), 1, anon_sym_bit_DASHor, - ACTIONS(10638), 1, anon_sym_and, - ACTIONS(10640), 1, anon_sym_xor, - STATE(5977), 1, - sym_comment, - ACTIONS(1376), 2, - sym_cmd_identifier, anon_sym_or, - ACTIONS(10614), 2, + [178417] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(5606), 1, + sym_comment, + ACTIONS(940), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(938), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_LT2, - ACTIONS(10616), 2, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10620), 2, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10624), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10630), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10618), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(1378), 4, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(10626), 4, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(10628), 4, - anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - [176349] = 6, - ACTIONS(3), 1, + 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, + [178461] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10642), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10644), 1, - aux_sym_unquoted_token2, - STATE(5978), 1, + STATE(5607), 1, sym_comment, - ACTIONS(936), 6, + ACTIONS(1173), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1171), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(938), 25, - anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -503729,76 +465127,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [176397] = 19, - ACTIONS(3), 1, + [178505] = 11, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1376), 1, - sym_cmd_identifier, - ACTIONS(10622), 1, - anon_sym_SLASH_SLASH, - ACTIONS(10632), 1, - anon_sym_bit_DASHand, - ACTIONS(10634), 1, - anon_sym_bit_DASHxor, - ACTIONS(10636), 1, - anon_sym_bit_DASHor, - ACTIONS(10638), 1, - anon_sym_and, - ACTIONS(10640), 1, - anon_sym_xor, - ACTIONS(10646), 1, - anon_sym_or, - STATE(5979), 1, + STATE(5608), 1, sym_comment, - ACTIONS(10614), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10616), 2, + ACTIONS(1181), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(10128), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10620), 2, + ACTIONS(10132), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10624), 2, + ACTIONS(10134), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10630), 2, + ACTIONS(10144), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10618), 3, + ACTIONS(10130), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(1378), 4, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(10626), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(10628), 4, + anon_sym_SLASH_SLASH, + ACTIONS(10140), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - [176471] = 4, + ACTIONS(10126), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1179), 9, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [178563] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1255), 1, - anon_sym_LF, - STATE(5980), 1, + STATE(5609), 1, sym_comment, - ACTIONS(1253), 32, + ACTIONS(1173), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1171), 31, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -503824,59 +465214,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [176515] = 4, - ACTIONS(3), 1, + [178607] = 12, + ACTIONS(113), 1, anon_sym_POUND, - STATE(5981), 1, + ACTIONS(10146), 1, + anon_sym_bit_DASHand, + STATE(5610), 1, sym_comment, - ACTIONS(1368), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1370), 28, - anon_sym_COMMA, - anon_sym_DOLLAR, + ACTIONS(1181), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(10128), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_PLUS, + ACTIONS(10132), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(10134), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10144), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10130), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10140), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10126), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, + ACTIONS(1179), 8, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [176559] = 4, + [178667] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(5982), 1, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + ACTIONS(3727), 1, + anon_sym_LPAREN2, + STATE(5611), 1, + sym_comment, + ACTIONS(1161), 7, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1159), 24, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [178715] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(5612), 1, sym_comment, - ACTIONS(1370), 2, + ACTIONS(1091), 2, ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(1368), 31, - anon_sym_SEMI, anon_sym_LF, + ACTIONS(1089), 31, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -503904,19 +465344,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [176603] = 4, + [178759] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5983), 1, + STATE(5613), 1, sym_comment, - ACTIONS(1334), 2, + ACTIONS(1173), 2, ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(1332), 31, - anon_sym_SEMI, anon_sym_LF, + ACTIONS(1171), 31, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -503944,12 +465384,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [176647] = 4, + [178803] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5984), 1, + STATE(5614), 1, sym_comment, - ACTIONS(1360), 13, + ACTIONS(1235), 13, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -503963,7 +465403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1358), 20, + ACTIONS(1233), 20, sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, @@ -503984,61 +465424,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [176691] = 10, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(5985), 1, - sym_comment, - ACTIONS(1378), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(10602), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10606), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10608), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10604), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10648), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10600), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1376), 11, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - 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, - [176747] = 4, + [178847] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5986), 1, + STATE(5615), 1, sym_comment, - ACTIONS(1344), 2, + ACTIONS(1281), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1342), 31, + ACTIONS(1279), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -504070,19 +465464,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [176791] = 4, + [178891] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5987), 1, + STATE(5616), 1, sym_comment, - ACTIONS(1310), 2, + ACTIONS(1167), 2, ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(1308), 31, - anon_sym_SEMI, anon_sym_LF, + ACTIONS(1165), 31, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -504110,15 +465504,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [176835] = 4, + [178935] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5988), 1, + STATE(5617), 1, sym_comment, - ACTIONS(1370), 2, + ACTIONS(1169), 2, ts_builtin_sym_end, aux_sym_command_token1, - ACTIONS(1368), 31, + ACTIONS(1076), 31, anon_sym_SEMI, anon_sym_LF, anon_sym_PIPE, @@ -504150,120 +465544,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [176879] = 7, - ACTIONS(3), 1, + [178979] = 9, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10598), 1, - anon_sym_DOT, - STATE(5035), 1, - sym_cell_path, - STATE(5989), 1, + STATE(5618), 1, sym_comment, - STATE(6153), 1, - sym_path, - ACTIONS(1190), 12, - sym_identifier, - anon_sym_GT, + ACTIONS(1181), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(10150), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1192), 18, - anon_sym_DASH_DASH, + ACTIONS(10154), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, + ACTIONS(10156), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [176929] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10650), 1, - anon_sym_DOT, - ACTIONS(10652), 1, - aux_sym__immediate_decimal_token2, - STATE(5990), 1, - sym_comment, - ACTIONS(2581), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2583), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [176977] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1275), 1, - anon_sym_LF, - STATE(5991), 1, - sym_comment, - ACTIONS(1273), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, + ACTIONS(10152), 4, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(10148), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(1179), 15, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -504275,15 +465589,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [177021] = 4, + [179033] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5992), 1, + STATE(5619), 1, sym_comment, - ACTIONS(1314), 2, + ACTIONS(1173), 2, ts_builtin_sym_end, aux_sym_command_token1, - ACTIONS(1312), 31, + ACTIONS(1171), 31, anon_sym_SEMI, anon_sym_LF, anon_sym_PIPE, @@ -504315,30 +465629,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [177065] = 6, + [179077] = 7, ACTIONS(113), 1, anon_sym_POUND, - STATE(5993), 1, + STATE(5620), 1, sym_comment, - ACTIONS(1378), 2, + ACTIONS(1181), 2, ts_builtin_sym_end, aux_sym_command_token1, - ACTIONS(10606), 2, + ACTIONS(10150), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10154), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10604), 4, + ACTIONS(10152), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1376), 25, + ACTIONS(1179), 23, anon_sym_SEMI, anon_sym_LF, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH, anon_sym_in, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -504357,17 +465672,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [177113] = 4, + [179127] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5994), 1, + STATE(5621), 1, sym_comment, - ACTIONS(1290), 3, + ACTIONS(1173), 2, ts_builtin_sym_end, - anon_sym_LF, - anon_sym_LPAREN2, - ACTIONS(1243), 30, + aux_sym_command_token1, + ACTIONS(1171), 31, anon_sym_SEMI, + anon_sym_LF, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, @@ -504397,38 +465712,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [177157] = 4, + [179171] = 10, ACTIONS(113), 1, anon_sym_POUND, - STATE(5995), 1, + STATE(5622), 1, sym_comment, - ACTIONS(1370), 2, + ACTIONS(1181), 2, ts_builtin_sym_end, aux_sym_command_token1, - ACTIONS(1368), 31, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(10150), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(10154), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10156), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10152), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(10158), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10148), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, + ACTIONS(1179), 11, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_bit_DASHand, @@ -504437,17 +465758,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [177201] = 4, + [179227] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5996), 1, + STATE(5623), 1, sym_comment, - ACTIONS(938), 3, + ACTIONS(1173), 2, ts_builtin_sym_end, - anon_sym_LF, - anon_sym_LPAREN2, - ACTIONS(936), 30, + aux_sym_command_token1, + ACTIONS(1171), 31, anon_sym_SEMI, + anon_sym_LF, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, @@ -504477,55 +465798,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [177245] = 4, - ACTIONS(3), 1, + [179271] = 6, + ACTIONS(113), 1, anon_sym_POUND, - STATE(5997), 1, + STATE(5624), 1, sym_comment, - ACTIONS(1374), 13, - anon_sym_DASH_DASH, + ACTIONS(1181), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(10154), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10152), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1372), 20, - sym_cmd_identifier, + ACTIONS(1179), 25, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [177289] = 4, + [179319] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(5998), 1, + STATE(5625), 1, sym_comment, - ACTIONS(1338), 2, + ACTIONS(1173), 2, ts_builtin_sym_end, aux_sym_command_token1, - ACTIONS(1336), 31, + ACTIONS(1171), 31, anon_sym_SEMI, anon_sym_LF, anon_sym_PIPE, @@ -504557,109 +465880,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [177333] = 17, + [179363] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9945), 1, - anon_sym_LF, - ACTIONS(9961), 1, - anon_sym_bit_DASHand, - ACTIONS(9963), 1, - anon_sym_bit_DASHxor, - ACTIONS(9965), 1, - anon_sym_bit_DASHor, - ACTIONS(9967), 1, - anon_sym_and, - ACTIONS(9969), 1, - anon_sym_xor, - ACTIONS(9971), 1, - anon_sym_or, - STATE(5999), 1, - sym_comment, - ACTIONS(9949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9955), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9957), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9959), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(9943), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(9951), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(9953), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(9947), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [177403] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6000), 1, - sym_comment, - ACTIONS(2851), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(2843), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2845), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [177449] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(6001), 1, + STATE(5626), 1, sym_comment, - ACTIONS(1364), 2, + ACTIONS(1181), 2, ts_builtin_sym_end, aux_sym_command_token1, - ACTIONS(1362), 31, + ACTIONS(10154), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1179), 29, anon_sym_SEMI, anon_sym_LF, anon_sym_PIPE, @@ -504667,8 +465899,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, @@ -504691,18 +465921,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [177493] = 5, + [179409] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6002), 1, + STATE(5627), 1, sym_comment, - ACTIONS(1378), 2, + ACTIONS(1173), 2, ts_builtin_sym_end, aux_sym_command_token1, - ACTIONS(10606), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(1376), 29, + ACTIONS(1171), 31, anon_sym_SEMI, anon_sym_LF, anon_sym_PIPE, @@ -504710,6 +465937,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, @@ -504732,30 +465961,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [177539] = 4, + [179453] = 8, ACTIONS(113), 1, anon_sym_POUND, - STATE(6003), 1, + STATE(5628), 1, sym_comment, - ACTIONS(1370), 2, + ACTIONS(1181), 2, ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1368), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, + aux_sym_command_token1, + ACTIONS(10150), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(10154), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10156), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10152), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(1179), 21, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_in, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, @@ -504772,15 +466005,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [177583] = 4, + [179505] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6004), 1, + STATE(5629), 1, sym_comment, - ACTIONS(1370), 2, + ACTIONS(1173), 2, ts_builtin_sym_end, aux_sym_command_token1, - ACTIONS(1368), 31, + ACTIONS(1171), 31, anon_sym_SEMI, anon_sym_LF, anon_sym_PIPE, @@ -504812,59 +466045,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [177627] = 8, + [179549] = 11, ACTIONS(113), 1, anon_sym_POUND, - STATE(6005), 1, + STATE(5630), 1, sym_comment, - ACTIONS(1378), 2, + ACTIONS(1181), 2, ts_builtin_sym_end, aux_sym_command_token1, - ACTIONS(10602), 2, + ACTIONS(10150), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10606), 2, + ACTIONS(10154), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10608), 2, + ACTIONS(10156), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10604), 4, + ACTIONS(10160), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10152), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1376), 21, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(10158), 4, anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10148), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(1179), 9, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [177679] = 4, + [179607] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6006), 1, + STATE(5631), 1, sym_comment, - ACTIONS(1370), 2, + ACTIONS(1173), 2, ts_builtin_sym_end, aux_sym_command_token1, - ACTIONS(1368), 31, + ACTIONS(1171), 31, anon_sym_SEMI, anon_sym_LF, anon_sym_PIPE, @@ -504896,79 +466132,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [177723] = 11, + [179651] = 12, ACTIONS(113), 1, anon_sym_POUND, - STATE(6007), 1, + ACTIONS(10162), 1, + anon_sym_bit_DASHand, + STATE(5632), 1, sym_comment, - ACTIONS(1378), 2, + ACTIONS(1181), 2, ts_builtin_sym_end, aux_sym_command_token1, - ACTIONS(10602), 2, + ACTIONS(10150), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10606), 2, + ACTIONS(10154), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10608), 2, + ACTIONS(10156), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10654), 2, + ACTIONS(10160), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10604), 4, + ACTIONS(10152), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10648), 4, + ACTIONS(10158), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(10600), 6, + ACTIONS(10148), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1376), 9, + ACTIONS(1179), 8, anon_sym_SEMI, anon_sym_LF, anon_sym_PIPE, - anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [177781] = 4, - ACTIONS(3), 1, + [179711] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(6008), 1, + STATE(5633), 1, sym_comment, - ACTIONS(1059), 6, + ACTIONS(1173), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(1171), 31, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1061), 27, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_QMARK2, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -504982,56 +466220,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT, - [177825] = 4, - ACTIONS(3), 1, + [179755] = 13, + ACTIONS(113), 1, anon_sym_POUND, - STATE(6009), 1, + ACTIONS(10162), 1, + anon_sym_bit_DASHand, + ACTIONS(10164), 1, + anon_sym_bit_DASHxor, + STATE(5634), 1, sym_comment, - ACTIONS(1063), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(1181), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(10150), 2, + anon_sym_DASH, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1065), 27, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_QMARK2, + ACTIONS(10154), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(10156), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10160), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10152), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10158), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10148), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, + ACTIONS(1179), 7, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT, - [177869] = 4, + [179817] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6010), 1, + STATE(5635), 1, sym_comment, - ACTIONS(1288), 2, + ACTIONS(1173), 2, ts_builtin_sym_end, aux_sym_command_token1, - ACTIONS(1286), 31, + ACTIONS(1171), 31, anon_sym_SEMI, anon_sym_LF, anon_sym_PIPE, @@ -505063,65 +466309,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [177913] = 14, + [179861] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10656), 1, + ACTIONS(10162), 1, anon_sym_bit_DASHand, - ACTIONS(10658), 1, + ACTIONS(10164), 1, anon_sym_bit_DASHxor, - ACTIONS(10660), 1, + ACTIONS(10166), 1, anon_sym_bit_DASHor, - STATE(6011), 1, + STATE(5636), 1, sym_comment, - ACTIONS(1378), 2, + ACTIONS(1181), 2, ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(10586), 2, + aux_sym_command_token1, + ACTIONS(10150), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10592), 2, + ACTIONS(10154), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10594), 2, + ACTIONS(10156), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10596), 2, + ACTIONS(10160), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10588), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10590), 4, + ACTIONS(10152), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1376), 6, + ACTIONS(10158), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1179), 6, anon_sym_SEMI, + anon_sym_LF, anon_sym_PIPE, - anon_sym_DASH_DASH, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(10584), 6, + ACTIONS(10148), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [177977] = 4, + [179925] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6012), 1, + STATE(5637), 1, sym_comment, - ACTIONS(1304), 2, + ACTIONS(1173), 2, ts_builtin_sym_end, aux_sym_command_token1, - ACTIONS(1302), 31, + ACTIONS(1171), 31, anon_sym_SEMI, anon_sym_LF, anon_sym_PIPE, @@ -505153,15 +466399,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [178021] = 4, + [179969] = 15, ACTIONS(113), 1, anon_sym_POUND, - STATE(6013), 1, + ACTIONS(10162), 1, + anon_sym_bit_DASHand, + ACTIONS(10164), 1, + anon_sym_bit_DASHxor, + ACTIONS(10166), 1, + anon_sym_bit_DASHor, + ACTIONS(10168), 1, + anon_sym_and, + STATE(5638), 1, + sym_comment, + ACTIONS(1181), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(10150), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10154), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10156), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10160), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10152), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10158), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1179), 5, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, + anon_sym_xor, + anon_sym_or, + ACTIONS(10148), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [180035] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(5639), 1, sym_comment, - ACTIONS(1370), 2, + ACTIONS(1173), 2, ts_builtin_sym_end, aux_sym_command_token1, - ACTIONS(1368), 31, + ACTIONS(1171), 31, anon_sym_SEMI, anon_sym_LF, anon_sym_PIPE, @@ -505193,67 +466490,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [178065] = 12, + [180079] = 16, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10662), 1, + ACTIONS(10162), 1, anon_sym_bit_DASHand, - STATE(6014), 1, + ACTIONS(10164), 1, + anon_sym_bit_DASHxor, + ACTIONS(10166), 1, + anon_sym_bit_DASHor, + ACTIONS(10168), 1, + anon_sym_and, + ACTIONS(10170), 1, + anon_sym_xor, + STATE(5640), 1, sym_comment, - ACTIONS(1378), 2, + ACTIONS(1181), 2, ts_builtin_sym_end, aux_sym_command_token1, - ACTIONS(10602), 2, + ACTIONS(10150), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10606), 2, + ACTIONS(10154), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10608), 2, + ACTIONS(10156), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10654), 2, + ACTIONS(10160), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10604), 4, + ACTIONS(1179), 4, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, + anon_sym_or, + ACTIONS(10152), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10648), 4, + ACTIONS(10158), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(10600), 6, + ACTIONS(10148), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1376), 8, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [178125] = 4, + [180147] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6015), 1, + STATE(5641), 1, sym_comment, - ACTIONS(1348), 2, + ACTIONS(1173), 2, ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1346), 31, + aux_sym_command_token1, + ACTIONS(1171), 31, anon_sym_SEMI, + anon_sym_LF, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -505281,59 +466582,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [178169] = 4, - ACTIONS(3), 1, + [180191] = 17, + ACTIONS(113), 1, anon_sym_POUND, - STATE(6016), 1, + ACTIONS(10162), 1, + anon_sym_bit_DASHand, + ACTIONS(10164), 1, + anon_sym_bit_DASHxor, + ACTIONS(10166), 1, + anon_sym_bit_DASHor, + ACTIONS(10168), 1, + anon_sym_and, + ACTIONS(10170), 1, + anon_sym_xor, + ACTIONS(10172), 1, + anon_sym_or, + STATE(5642), 1, sym_comment, - ACTIONS(1332), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1334), 28, - anon_sym_COMMA, - anon_sym_DOLLAR, + ACTIONS(1181), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(10150), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_PLUS, + ACTIONS(10154), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(10156), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10160), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1179), 3, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, + ACTIONS(10152), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10158), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10148), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [178213] = 4, + [180261] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6017), 1, + STATE(5643), 1, sym_comment, - ACTIONS(1288), 2, + ACTIONS(1173), 2, ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1286), 31, + aux_sym_command_token1, + ACTIONS(1171), 31, anon_sym_SEMI, + anon_sym_LF, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -505361,55 +466675,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [178257] = 4, - ACTIONS(3), 1, + [180305] = 13, + ACTIONS(113), 1, anon_sym_POUND, - STATE(6018), 1, + ACTIONS(10146), 1, + anon_sym_bit_DASHand, + ACTIONS(10174), 1, + anon_sym_bit_DASHxor, + STATE(5644), 1, sym_comment, - ACTIONS(1336), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1338), 28, - anon_sym_COMMA, - anon_sym_DOLLAR, + ACTIONS(1181), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(10128), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_PLUS, + ACTIONS(10132), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(10134), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10144), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10130), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10140), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10126), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, + ACTIONS(1179), 7, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [178301] = 4, + [180367] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6019), 1, + STATE(5645), 1, sym_comment, - ACTIONS(1364), 2, + ACTIONS(1173), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1362), 31, + ACTIONS(1171), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -505441,136 +466764,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [178345] = 4, + [180411] = 14, ACTIONS(113), 1, anon_sym_POUND, - STATE(6020), 1, + ACTIONS(10146), 1, + anon_sym_bit_DASHand, + ACTIONS(10174), 1, + anon_sym_bit_DASHxor, + ACTIONS(10176), 1, + anon_sym_bit_DASHor, + STATE(5646), 1, sym_comment, - ACTIONS(1370), 2, + ACTIONS(1181), 2, ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(1368), 31, - anon_sym_SEMI, anon_sym_LF, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(10128), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(10132), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10134), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10144), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10130), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(10140), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + ACTIONS(1179), 6, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, anon_sym_and, anon_sym_xor, anon_sym_or, - [178389] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6021), 1, - sym_comment, - ACTIONS(2006), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(3874), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3876), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [178435] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(6022), 1, - sym_comment, - ACTIONS(1370), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1368), 31, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(10126), 6, anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [178479] = 4, + [180475] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6023), 1, + STATE(5647), 1, sym_comment, - ACTIONS(1249), 2, + ACTIONS(1173), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1247), 31, + ACTIONS(1171), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -505602,59 +466854,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [178523] = 4, + [180519] = 15, ACTIONS(113), 1, anon_sym_POUND, - STATE(6024), 1, + ACTIONS(10146), 1, + anon_sym_bit_DASHand, + ACTIONS(10174), 1, + anon_sym_bit_DASHxor, + ACTIONS(10176), 1, + anon_sym_bit_DASHor, + ACTIONS(10178), 1, + anon_sym_and, + STATE(5648), 1, sym_comment, - ACTIONS(1360), 2, + ACTIONS(1181), 2, ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(1358), 31, - anon_sym_SEMI, anon_sym_LF, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(10128), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(10132), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10134), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10144), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10130), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(10140), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, + ACTIONS(1179), 5, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, anon_sym_xor, anon_sym_or, - [178567] = 4, + ACTIONS(10126), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [180585] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6025), 1, + STATE(5649), 1, sym_comment, - ACTIONS(1282), 2, + ACTIONS(1173), 2, ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(1280), 31, - anon_sym_SEMI, anon_sym_LF, + ACTIONS(1171), 31, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -505682,12 +466945,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [178611] = 4, + [180629] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(6026), 1, + ACTIONS(10118), 1, + anon_sym_DOT, + STATE(4569), 1, + sym_cell_path, + STATE(5650), 1, sym_comment, - ACTIONS(1172), 13, + STATE(5757), 1, + sym_path, + ACTIONS(1057), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -505700,8 +466969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - ACTIONS(1174), 20, + ACTIONS(1059), 18, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -505720,185 +466988,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [178655] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6027), 1, - sym_comment, - ACTIONS(4012), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(4006), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4008), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [178701] = 4, + [180679] = 16, ACTIONS(113), 1, anon_sym_POUND, - STATE(6028), 1, + ACTIONS(10146), 1, + anon_sym_bit_DASHand, + ACTIONS(10174), 1, + anon_sym_bit_DASHxor, + ACTIONS(10176), 1, + anon_sym_bit_DASHor, + ACTIONS(10178), 1, + anon_sym_and, + ACTIONS(10180), 1, + anon_sym_xor, + STATE(5651), 1, sym_comment, - ACTIONS(1408), 2, + ACTIONS(1181), 2, ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(1406), 31, - anon_sym_SEMI, anon_sym_LF, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(10128), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(10132), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10134), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10144), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1179), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_or, + ACTIONS(10130), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(10140), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10126), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [178745] = 5, - ACTIONS(113), 1, + [180747] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10664), 1, - anon_sym_LBRACK2, - STATE(6029), 1, + STATE(5652), 1, sym_comment, - ACTIONS(1261), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1259), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1173), 13, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1171), 20, + sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [178791] = 4, + [180791] = 17, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1318), 1, - anon_sym_LF, - STATE(6030), 1, + ACTIONS(10146), 1, + anon_sym_bit_DASHand, + ACTIONS(10174), 1, + anon_sym_bit_DASHxor, + ACTIONS(10176), 1, + anon_sym_bit_DASHor, + ACTIONS(10178), 1, + anon_sym_and, + ACTIONS(10180), 1, + anon_sym_xor, + ACTIONS(10182), 1, + anon_sym_or, + STATE(5653), 1, sym_comment, - ACTIONS(1316), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(1181), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(10128), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(10132), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10134), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10144), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1179), 3, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + ACTIONS(10130), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(10140), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10126), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [178835] = 4, + [180861] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1296), 1, - anon_sym_LF, - STATE(6031), 1, + STATE(5654), 1, sym_comment, - ACTIONS(1294), 32, + ACTIONS(1173), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1171), 31, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -505924,14 +467173,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [178879] = 4, + [180905] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1374), 1, + ACTIONS(1095), 1, anon_sym_LF, - STATE(6032), 1, + STATE(5655), 1, sym_comment, - ACTIONS(1372), 32, + ACTIONS(1093), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -505964,33 +467213,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [178923] = 4, - ACTIONS(113), 1, + [180949] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1348), 1, - anon_sym_LF, - STATE(6033), 1, + ACTIONS(10184), 1, + anon_sym_DOT, + STATE(5656), 1, sym_comment, - ACTIONS(1346), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + STATE(5667), 1, + sym_path, + STATE(6241), 1, + sym_cell_path, + ACTIONS(1097), 11, + sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1099), 19, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -506001,111 +467256,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [178967] = 13, + [180999] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10662), 1, - anon_sym_bit_DASHand, - ACTIONS(10666), 1, - anon_sym_bit_DASHxor, - STATE(6034), 1, + STATE(5657), 1, sym_comment, - ACTIONS(1378), 2, + ACTIONS(1177), 2, ts_builtin_sym_end, aux_sym_command_token1, - ACTIONS(10602), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10606), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10608), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10654), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10604), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10648), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10600), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1376), 7, + ACTIONS(1175), 31, anon_sym_SEMI, anon_sym_LF, anon_sym_PIPE, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [179029] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6035), 1, - sym_comment, - ACTIONS(1282), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1280), 20, - sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [179073] = 4, + [181043] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6036), 1, + STATE(5658), 1, sym_comment, - ACTIONS(1370), 2, + ACTIONS(1251), 2, ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(1368), 31, - anon_sym_SEMI, anon_sym_LF, + ACTIONS(1249), 31, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -506133,34 +467336,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [179117] = 5, - ACTIONS(113), 1, + [181087] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3682), 1, - aux_sym_unquoted_token5, - STATE(6037), 1, + STATE(5659), 1, sym_comment, - ACTIONS(961), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(959), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1089), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1091), 28, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -506174,16 +467376,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [179163] = 6, + [181131] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1284), 1, + ACTIONS(1133), 1, aux_sym_unquoted_token6, - ACTIONS(4895), 1, + ACTIONS(3841), 1, anon_sym_LPAREN2, - STATE(6038), 1, + STATE(5660), 1, sym_comment, - ACTIONS(1160), 7, + ACTIONS(1131), 7, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_DQUOTE, @@ -506191,7 +467393,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1158), 24, + ACTIONS(1129), 24, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, @@ -506216,15 +467418,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, - [179211] = 4, + [181179] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6039), 1, + STATE(5661), 1, sym_comment, - ACTIONS(961), 2, + ACTIONS(1231), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(959), 31, + ACTIONS(1229), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -506256,121 +467458,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [179255] = 17, + [181223] = 17, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9979), 1, + ACTIONS(9605), 1, anon_sym_LF, - ACTIONS(9995), 1, + ACTIONS(9621), 1, anon_sym_bit_DASHand, - ACTIONS(9997), 1, + ACTIONS(9623), 1, anon_sym_bit_DASHxor, - ACTIONS(9999), 1, + ACTIONS(9625), 1, anon_sym_bit_DASHor, - ACTIONS(10001), 1, + ACTIONS(9627), 1, anon_sym_and, - ACTIONS(10003), 1, + ACTIONS(9629), 1, anon_sym_xor, - ACTIONS(10005), 1, + ACTIONS(9631), 1, anon_sym_or, - STATE(6040), 1, + STATE(5662), 1, sym_comment, - ACTIONS(9983), 2, + ACTIONS(9609), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9989), 2, + ACTIONS(9615), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9991), 2, + ACTIONS(9617), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(9993), 2, + ACTIONS(9619), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(9977), 4, + ACTIONS(9603), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(9985), 4, + ACTIONS(9611), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(9987), 4, + ACTIONS(9613), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(9981), 6, + ACTIONS(9607), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [179325] = 4, - ACTIONS(113), 1, + [181293] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1296), 1, - anon_sym_LF, - STATE(6041), 1, + ACTIONS(10184), 1, + anon_sym_DOT, + STATE(5663), 1, sym_comment, - ACTIONS(1294), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + STATE(5667), 1, + sym_path, + STATE(6251), 1, + sym_cell_path, + ACTIONS(1085), 11, + sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [179369] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6042), 1, - sym_comment, - ACTIONS(1308), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1310), 28, - anon_sym_COMMA, + ACTIONS(1087), 19, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -506386,31 +467554,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [179413] = 4, + [181343] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(6043), 1, + ACTIONS(10184), 1, + anon_sym_DOT, + STATE(5664), 1, sym_comment, - ACTIONS(1312), 5, + STATE(5667), 1, + sym_path, + STATE(5674), 1, + sym_cell_path, + ACTIONS(1002), 11, + sym_identifier, anon_sym_GT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1314), 28, - anon_sym_COMMA, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1004), 19, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -506426,36 +467597,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [179457] = 4, - ACTIONS(113), 1, + [181393] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1282), 1, - anon_sym_LF, - STATE(6044), 1, + ACTIONS(10136), 1, + anon_sym_DOT_DOT2, + STATE(5665), 1, sym_comment, - ACTIONS(1280), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(10138), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1089), 11, + sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1091), 19, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -506466,68 +467639,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [179501] = 14, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(10662), 1, - anon_sym_bit_DASHand, - ACTIONS(10666), 1, - anon_sym_bit_DASHxor, - ACTIONS(10668), 1, - anon_sym_bit_DASHor, - STATE(6045), 1, - sym_comment, - ACTIONS(1378), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(10602), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10606), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10608), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10654), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10604), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10648), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1376), 6, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(10600), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [179565] = 4, + [181441] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6046), 1, + STATE(5666), 1, sym_comment, - ACTIONS(1188), 2, + ACTIONS(1267), 2, ts_builtin_sym_end, aux_sym_command_token1, - ACTIONS(1186), 31, + ACTIONS(1265), 31, anon_sym_SEMI, anon_sym_LF, anon_sym_PIPE, @@ -506559,30 +467679,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [179609] = 6, + [181485] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10670), 1, - anon_sym_DOT_DOT2, - STATE(6047), 1, + ACTIONS(10184), 1, + anon_sym_DOT, + STATE(5667), 1, sym_comment, - ACTIONS(10498), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1158), 5, + STATE(5673), 1, + aux_sym_cell_path_repeat1, + STATE(6057), 1, + sym_path, + ACTIONS(1010), 11, + sym_identifier, anon_sym_GT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1160), 25, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1012), 19, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -506598,18 +467722,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [179657] = 4, + [181535] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6048), 1, + STATE(5668), 1, sym_comment, - ACTIONS(1370), 2, + ACTIONS(1267), 2, ts_builtin_sym_end, aux_sym_command_token1, - ACTIONS(1368), 31, + ACTIONS(1265), 31, anon_sym_SEMI, anon_sym_LF, anon_sym_PIPE, @@ -506641,169 +467762,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [179701] = 4, - ACTIONS(113), 1, + [181579] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6049), 1, + STATE(5669), 1, sym_comment, - ACTIONS(1370), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1368), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(1213), 13, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [179745] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - ACTIONS(4037), 1, - anon_sym_LPAREN2, - STATE(6050), 1, - sym_comment, - ACTIONS(1249), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1247), 24, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [179793] = 15, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(10662), 1, - anon_sym_bit_DASHand, - ACTIONS(10666), 1, - anon_sym_bit_DASHxor, - ACTIONS(10668), 1, - anon_sym_bit_DASHor, - ACTIONS(10672), 1, - anon_sym_and, - STATE(6051), 1, - sym_comment, - ACTIONS(1378), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(10602), 2, + ACTIONS(1211), 20, + sym_cmd_identifier, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10606), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10608), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10654), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10604), 4, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10648), 4, - anon_sym_in, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1376), 5, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(10600), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [179859] = 7, - ACTIONS(3), 1, + [181623] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10670), 1, - anon_sym_DOT_DOT2, - STATE(6052), 1, + STATE(5670), 1, sym_comment, - ACTIONS(1196), 2, - anon_sym_DOLLAR, - anon_sym_LBRACE, - ACTIONS(10498), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1198), 5, + ACTIONS(1039), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT, + ACTIONS(1037), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1366), 23, anon_sym_DASH, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -506817,18 +467842,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [179909] = 4, + [181667] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(6053), 1, + ACTIONS(5815), 1, + anon_sym_LF, + STATE(5671), 1, sym_comment, - ACTIONS(1370), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(1368), 31, + ACTIONS(5818), 4, anon_sym_SEMI, - anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(1237), 28, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -506857,12 +467883,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [179953] = 4, + [181713] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6054), 1, + STATE(5672), 1, sym_comment, - ACTIONS(1300), 13, + ACTIONS(1173), 13, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -506876,7 +467902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1298), 20, + ACTIONS(1171), 20, sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, @@ -506897,28 +467923,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [179997] = 4, + [181757] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(6055), 1, + ACTIONS(10184), 1, + anon_sym_DOT, + STATE(5673), 1, sym_comment, - ACTIONS(1368), 5, + STATE(5676), 1, + aux_sym_cell_path_repeat1, + STATE(6057), 1, + sym_path, + ACTIONS(1006), 11, + sym_identifier, anon_sym_GT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1370), 28, - anon_sym_COMMA, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1008), 19, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -506934,73 +467966,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [180041] = 16, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(10662), 1, - anon_sym_bit_DASHand, - ACTIONS(10666), 1, - anon_sym_bit_DASHxor, - ACTIONS(10668), 1, - anon_sym_bit_DASHor, - ACTIONS(10672), 1, - anon_sym_and, - ACTIONS(10674), 1, - anon_sym_xor, - STATE(6056), 1, - sym_comment, - ACTIONS(1378), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(10602), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10606), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10608), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10654), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1376), 4, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - anon_sym_or, - ACTIONS(10604), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10648), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10600), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [180109] = 7, + [181807] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10676), 1, - anon_sym_DOT, - STATE(6057), 1, + STATE(5674), 1, sym_comment, - STATE(6133), 1, - sym_path, - STATE(6741), 1, - sym_cell_path, - ACTIONS(1179), 11, + ACTIONS(1061), 12, sym_identifier, anon_sym_GT, anon_sym_in, @@ -507012,7 +467983,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1181), 19, + anon_sym_DOT_DOT2, + ACTIONS(1063), 21, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_STAR_STAR, @@ -507032,21 +468004,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [180159] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [181851] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1366), 1, - anon_sym_LF, - STATE(6058), 1, + STATE(5675), 1, sym_comment, - ACTIONS(1198), 32, + ACTIONS(1157), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1155), 31, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -507072,80 +468045,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [180203] = 4, - ACTIONS(113), 1, + aux_sym_unquoted_token6, + [181895] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6059), 1, + ACTIONS(10186), 1, + anon_sym_DOT, + STATE(6057), 1, + sym_path, + STATE(5676), 2, sym_comment, - ACTIONS(1160), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1158), 31, - anon_sym_SEMI, - anon_sym_PIPE, + aux_sym_cell_path_repeat1, + ACTIONS(985), 11, + sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [180247] = 9, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1378), 1, - anon_sym_LF, - STATE(6060), 1, - sym_comment, - ACTIONS(10680), 2, + ACTIONS(987), 19, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10684), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10686), 2, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10682), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10678), 6, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1376), 16, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_in, - anon_sym_RBRACE, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -507154,23 +468088,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [180301] = 4, + [181943] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(6061), 1, + ACTIONS(1078), 1, + anon_sym_DASH, + STATE(5677), 1, sym_comment, - ACTIONS(1370), 2, + ACTIONS(1074), 2, ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(1368), 31, - anon_sym_SEMI, anon_sym_LF, + ACTIONS(1072), 3, + anon_sym_SEMI, anon_sym_PIPE, + anon_sym_DASH_DASH, + ACTIONS(1076), 27, anon_sym_GT, - anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_STAR_STAR, @@ -507197,126 +468130,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [180345] = 16, - ACTIONS(113), 1, + [181991] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10656), 1, - anon_sym_bit_DASHand, - ACTIONS(10658), 1, - anon_sym_bit_DASHxor, - ACTIONS(10660), 1, - anon_sym_bit_DASHor, - ACTIONS(10688), 1, - anon_sym_and, - ACTIONS(10690), 1, - anon_sym_xor, - STATE(6062), 1, + STATE(5678), 1, sym_comment, - ACTIONS(1378), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(10586), 2, + ACTIONS(3362), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(3354), 8, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10592), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10594), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10596), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1376), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_or, - ACTIONS(10588), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10590), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10584), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [180413] = 17, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3356), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [182037] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10662), 1, - anon_sym_bit_DASHand, - ACTIONS(10666), 1, - anon_sym_bit_DASHxor, - ACTIONS(10668), 1, - anon_sym_bit_DASHor, - ACTIONS(10672), 1, - anon_sym_and, - ACTIONS(10674), 1, - anon_sym_xor, - ACTIONS(10692), 1, - anon_sym_or, - STATE(6063), 1, + STATE(5679), 1, sym_comment, - ACTIONS(1378), 2, + ACTIONS(1289), 2, ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(10602), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10606), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10608), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10654), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1376), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - ACTIONS(10604), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10648), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10600), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [180483] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1249), 1, anon_sym_LF, - STATE(6064), 1, - sym_comment, - ACTIONS(1247), 32, + ACTIONS(1287), 31, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -507342,23 +468211,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [180527] = 6, + [182081] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(938), 1, - sym__entry_separator, - ACTIONS(10694), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10696), 1, - aux_sym_unquoted_token2, - STATE(6065), 1, + STATE(5680), 1, sym_comment, - ACTIONS(936), 30, - anon_sym_RBRACK, + ACTIONS(1235), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1233), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -507384,76 +468251,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [180575] = 4, + [182125] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, - anon_sym_LF, - STATE(6066), 1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + ACTIONS(3841), 1, + anon_sym_LPAREN2, + STATE(5681), 1, sym_comment, - ACTIONS(1368), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1137), 7, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1135), 24, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_not, + 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, + anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_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, + [182173] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5682), 1, + sym_comment, + ACTIONS(1217), 13, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1215), 20, + sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [180619] = 7, - ACTIONS(113), 1, + [182217] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1378), 1, - anon_sym_LF, - STATE(6067), 1, + STATE(5683), 1, sym_comment, - ACTIONS(10680), 2, - anon_sym_DASH, + ACTIONS(1249), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(10684), 2, + anon_sym_LT2, + ACTIONS(1251), 28, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10682), 4, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1376), 24, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_in, - anon_sym_RBRACE, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -507467,21 +468373,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [180669] = 4, + [182261] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6068), 1, + ACTIONS(1267), 1, + anon_sym_LF, + STATE(5684), 1, sym_comment, - ACTIONS(1370), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(1368), 31, + ACTIONS(1265), 32, anon_sym_SEMI, - anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -507507,19 +468413,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [180713] = 4, + [182305] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6069), 1, + STATE(5685), 1, sym_comment, - ACTIONS(1370), 2, + ACTIONS(1049), 3, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1368), 31, + anon_sym_DOT, + ACTIONS(1047), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -507547,33 +468453,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [180757] = 4, - ACTIONS(113), 1, + [182349] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1370), 1, - anon_sym_LF, - STATE(6070), 1, + STATE(5686), 1, sym_comment, - ACTIONS(1368), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1283), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1285), 28, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -507587,81 +468493,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [180801] = 17, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(10656), 1, - anon_sym_bit_DASHand, - ACTIONS(10658), 1, - anon_sym_bit_DASHxor, - ACTIONS(10660), 1, - anon_sym_bit_DASHor, - ACTIONS(10688), 1, - anon_sym_and, - ACTIONS(10690), 1, - anon_sym_xor, - ACTIONS(10698), 1, - anon_sym_or, - STATE(6071), 1, - sym_comment, - ACTIONS(1378), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(10586), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10592), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10594), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10596), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1376), 3, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - ACTIONS(10588), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10590), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10584), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [180871] = 5, + [182393] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10700), 1, - anon_sym_QMARK2, - STATE(6072), 1, + ACTIONS(10118), 1, + anon_sym_DOT, + STATE(4599), 1, + sym_cell_path, + STATE(5687), 1, sym_comment, - ACTIONS(1070), 6, + STATE(5757), 1, + sym_path, + ACTIONS(1051), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1072), 26, - anon_sym_DOLLAR, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1053), 18, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -507677,25 +468536,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT, - [180917] = 5, + [182443] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10700), 1, + ACTIONS(10122), 1, anon_sym_QMARK2, - STATE(6073), 1, + STATE(5688), 1, sym_comment, - ACTIONS(1070), 6, + ACTIONS(1024), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1072), 26, + ACTIONS(1026), 26, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, @@ -507722,111 +468577,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT, - [180963] = 10, + [182489] = 17, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1378), 1, + ACTIONS(9682), 1, anon_sym_LF, - STATE(6074), 1, + ACTIONS(9698), 1, + anon_sym_bit_DASHand, + ACTIONS(9700), 1, + anon_sym_bit_DASHxor, + ACTIONS(9702), 1, + anon_sym_bit_DASHor, + ACTIONS(9704), 1, + anon_sym_and, + ACTIONS(9706), 1, + anon_sym_xor, + ACTIONS(9708), 1, + anon_sym_or, + STATE(5689), 1, sym_comment, - ACTIONS(10680), 2, + ACTIONS(9686), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10684), 2, + ACTIONS(9692), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10686), 2, + ACTIONS(9694), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10682), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10702), 4, + ACTIONS(9696), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9680), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(9688), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(10678), 6, + ACTIONS(9690), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(9684), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1376), 12, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - 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, - [181019] = 4, + [182559] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6075), 1, + ACTIONS(10189), 1, + anon_sym_QMARK2, + STATE(5690), 1, sym_comment, - ACTIONS(1160), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(1024), 9, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1026), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + 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(1158), 20, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [181063] = 6, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [182605] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10704), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10706), 1, - aux_sym__immediate_decimal_token2, - STATE(6076), 1, + ACTIONS(10189), 1, + anon_sym_QMARK2, + STATE(5691), 1, sym_comment, - ACTIONS(2437), 8, + ACTIONS(1024), 9, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2439), 23, + ACTIONS(1026), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -507850,21 +468712,21 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [181111] = 4, + [182651] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, - anon_sym_LF, - STATE(6077), 1, + STATE(5692), 1, sym_comment, - ACTIONS(1368), 32, + ACTIONS(1273), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(1271), 31, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LF, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -507890,33 +468752,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [181155] = 4, - ACTIONS(3), 1, + [182695] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(6078), 1, + ACTIONS(1169), 1, + anon_sym_LF, + STATE(5693), 1, sym_comment, - ACTIONS(1320), 5, + ACTIONS(1076), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1322), 28, - anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -507930,19 +468792,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [181199] = 4, + [182739] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6079), 1, + STATE(5694), 1, sym_comment, - ACTIONS(1370), 2, + ACTIONS(1277), 2, ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1368), 31, + aux_sym_command_token1, + ACTIONS(1275), 31, anon_sym_SEMI, + anon_sym_LF, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -507970,22 +468832,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [181243] = 5, + [182783] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1290), 1, - ts_builtin_sym_end, - ACTIONS(10708), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(6080), 1, + ACTIONS(1267), 1, + anon_sym_LF, + STATE(5695), 1, sym_comment, - ACTIONS(1243), 31, + ACTIONS(1265), 32, anon_sym_SEMI, - anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -508011,77 +468872,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [181289] = 6, - ACTIONS(113), 1, + [182827] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1378), 1, - anon_sym_LF, - STATE(6081), 1, + STATE(5696), 1, sym_comment, - ACTIONS(10684), 2, + ACTIONS(1239), 13, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10682), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1376), 26, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1237), 20, + sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [181337] = 4, + [182871] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5697), 1, + sym_comment, + ACTIONS(1033), 9, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1035), 24, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK2, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [182915] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, + ACTIONS(1181), 1, anon_sym_LF, - STATE(6082), 1, + STATE(5698), 1, sym_comment, - ACTIONS(1368), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(10193), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(10197), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10199), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10195), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(10191), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(1179), 16, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_in, + anon_sym_RBRACE, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -508093,17 +468997,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [181381] = 5, + [182969] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1378), 1, + ACTIONS(1173), 1, anon_sym_LF, - STATE(6083), 1, + STATE(5699), 1, sym_comment, - ACTIONS(10684), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(1376), 30, + ACTIONS(1171), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -508112,6 +469013,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, @@ -508134,68 +469037,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [181427] = 4, - ACTIONS(3), 1, + [183013] = 7, + ACTIONS(113), 1, anon_sym_POUND, - STATE(6084), 1, + ACTIONS(1181), 1, + anon_sym_LF, + STATE(5700), 1, sym_comment, - ACTIONS(1366), 13, - anon_sym_DASH_DASH, + ACTIONS(10193), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10197), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1198), 20, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, + ACTIONS(10195), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [181471] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(6085), 1, - sym_comment, - ACTIONS(1188), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1186), 31, + anon_sym_SLASH_SLASH, + ACTIONS(1179), 24, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, + anon_sym_RBRACE, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -508214,14 +469080,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [181515] = 4, + [183063] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, + ACTIONS(1173), 1, anon_sym_LF, - STATE(6086), 1, + STATE(5701), 1, sym_comment, - ACTIONS(1368), 32, + ACTIONS(1171), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -508254,38 +469120,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [181559] = 4, + [183107] = 10, ACTIONS(113), 1, anon_sym_POUND, - STATE(6087), 1, + ACTIONS(1181), 1, + anon_sym_LF, + STATE(5702), 1, sym_comment, - ACTIONS(1115), 2, - anon_sym_DOT, - sym__entry_separator, - ACTIONS(1113), 31, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_GT, + ACTIONS(10193), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(10197), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10199), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10195), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(10201), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10191), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, + ACTIONS(1179), 12, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_bit_DASHand, @@ -508294,18 +469166,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [181603] = 7, + [183163] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10598), 1, - anon_sym_DOT, - STATE(5009), 1, - sym_cell_path, - STATE(6088), 1, + STATE(5703), 1, sym_comment, - STATE(6153), 1, - sym_path, - ACTIONS(1148), 12, + ACTIONS(1061), 13, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -508318,7 +469184,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1150), 18, + anon_sym_DOT_DOT2, + ACTIONS(1063), 20, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -508337,33 +469204,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [181653] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [183207] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6089), 1, + STATE(5704), 1, sym_comment, - ACTIONS(1368), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1370), 28, - anon_sym_COMMA, + ACTIONS(1020), 9, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1022), 24, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_QMARK2, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [183251] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(10203), 1, + anon_sym_LBRACK2, + STATE(5705), 1, + sym_comment, + ACTIONS(1145), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1143), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -508377,34 +469287,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [181697] = 8, + [183297] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1378), 1, - anon_sym_LF, - STATE(6090), 1, + STATE(5706), 1, sym_comment, - ACTIONS(10680), 2, + ACTIONS(1095), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1093), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10684), 2, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10686), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10682), 4, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1376), 22, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_in, - anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, @@ -508421,181 +469327,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [181749] = 4, + [183341] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(6091), 1, + ACTIONS(10184), 1, + anon_sym_DOT, + STATE(5667), 1, + sym_path, + STATE(5707), 1, sym_comment, - ACTIONS(1370), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1368), 20, - sym_cmd_identifier, + STATE(5719), 1, + sym_cell_path, + ACTIONS(992), 11, + sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [181793] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6092), 1, - sym_comment, - ACTIONS(1370), 13, - anon_sym_DASH_DASH, + ACTIONS(994), 19, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1368), 20, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [181837] = 4, + [183391] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6093), 1, + STATE(5708), 1, sym_comment, - ACTIONS(1192), 13, - anon_sym_DASH_DASH, + ACTIONS(1155), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1157), 28, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1190), 20, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [181881] = 4, - ACTIONS(3), 1, + [183435] = 5, + ACTIONS(113), 1, anon_sym_POUND, - STATE(6094), 1, + ACTIONS(1074), 1, + anon_sym_LF, + STATE(5709), 1, sym_comment, - ACTIONS(1370), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1368), 20, - sym_cmd_identifier, + ACTIONS(1072), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(1076), 28, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [181925] = 4, + [183481] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, - anon_sym_LF, - STATE(6095), 1, + STATE(5710), 1, sym_comment, - ACTIONS(1368), 32, + ACTIONS(940), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(938), 31, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LF, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -508621,66 +469491,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [181969] = 11, + [183525] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1378), 1, + ACTIONS(1091), 1, anon_sym_LF, - STATE(6096), 1, + STATE(5711), 1, sym_comment, - ACTIONS(10680), 2, + ACTIONS(1089), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10684), 2, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10686), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10710), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10682), 4, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10702), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10678), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1376), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [182027] = 4, + [183569] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6097), 1, + STATE(5712), 1, sym_comment, - ACTIONS(1412), 2, + ACTIONS(1091), 2, ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1410), 31, + aux_sym_command_token1, + ACTIONS(1089), 31, anon_sym_SEMI, + anon_sym_LF, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -508708,145 +469571,238 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [182071] = 4, - ACTIONS(3), 1, + [183613] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(6098), 1, + ACTIONS(1053), 1, + anon_sym_LF, + STATE(5713), 1, sym_comment, - ACTIONS(1370), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1368), 20, - sym_cmd_identifier, + ACTIONS(1051), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [182115] = 4, + [183657] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6099), 1, + STATE(5714), 1, sym_comment, - ACTIONS(1370), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(2229), 10, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + ACTIONS(2231), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + 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(1368), 20, - sym_cmd_identifier, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [183701] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1173), 1, + anon_sym_LF, + STATE(5715), 1, + sym_comment, + ACTIONS(1171), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [182159] = 15, + [183745] = 17, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10656), 1, + ACTIONS(10207), 1, + anon_sym_LF, + ACTIONS(10223), 1, anon_sym_bit_DASHand, - ACTIONS(10658), 1, + ACTIONS(10225), 1, anon_sym_bit_DASHxor, - ACTIONS(10660), 1, + ACTIONS(10227), 1, anon_sym_bit_DASHor, - ACTIONS(10688), 1, + ACTIONS(10229), 1, anon_sym_and, - STATE(6100), 1, + ACTIONS(10231), 1, + anon_sym_xor, + ACTIONS(10233), 1, + anon_sym_or, + STATE(5716), 1, sym_comment, - ACTIONS(1378), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(10586), 2, + ACTIONS(10211), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10592), 2, + ACTIONS(10217), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10594), 2, + ACTIONS(10219), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10596), 2, + ACTIONS(10221), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10588), 4, + ACTIONS(10205), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(10213), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(10590), 4, + ACTIONS(10215), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1376), 5, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_xor, - anon_sym_or, - ACTIONS(10584), 6, + ACTIONS(10209), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [182225] = 4, + [183815] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10184), 1, + anon_sym_DOT, + STATE(5667), 1, + sym_path, + STATE(5717), 1, + sym_comment, + STATE(6233), 1, + sym_cell_path, + ACTIONS(1057), 11, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1059), 19, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [183865] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1322), 1, + ACTIONS(1181), 1, anon_sym_LF, - STATE(6101), 1, + STATE(5718), 1, sym_comment, - ACTIONS(1320), 32, + ACTIONS(10197), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10195), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1179), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -508854,12 +469810,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -508879,59 +469829,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [182269] = 4, + [183913] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6102), 1, + STATE(5719), 1, sym_comment, - ACTIONS(1370), 13, - anon_sym_DASH_DASH, + ACTIONS(1068), 12, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT2, + ACTIONS(1070), 21, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1368), 20, - sym_cmd_identifier, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [183957] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(5720), 1, + sym_comment, + ACTIONS(1239), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1237), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [182313] = 4, + [184001] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6103), 1, + STATE(5721), 1, sym_comment, - ACTIONS(1255), 2, + ACTIONS(1231), 2, ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1253), 31, + aux_sym_command_token1, + ACTIONS(1229), 31, anon_sym_SEMI, + anon_sym_LF, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -508959,12 +469949,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [182357] = 4, + [184045] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6104), 1, + STATE(5722), 1, + sym_comment, + ACTIONS(2362), 10, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + ACTIONS(2364), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [184089] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5723), 1, sym_comment, - ACTIONS(938), 13, + ACTIONS(1273), 13, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -508978,7 +470008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(936), 20, + ACTIONS(1271), 20, sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, @@ -508999,74 +470029,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [182401] = 5, - ACTIONS(113), 1, + [184133] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1160), 1, - anon_sym_LF, - ACTIONS(8846), 1, - anon_sym_COLON, - STATE(6105), 1, + STATE(5724), 1, sym_comment, - ACTIONS(1158), 31, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1277), 13, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1275), 20, + sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [182447] = 4, - ACTIONS(113), 1, + [184177] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6106), 1, + STATE(5725), 1, sym_comment, - ACTIONS(1275), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1273), 31, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1265), 5, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1267), 28, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -509080,33 +470109,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [182491] = 4, - ACTIONS(113), 1, + [184221] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6107), 1, + STATE(5726), 1, sym_comment, - ACTIONS(1296), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(1294), 31, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, + ACTIONS(1265), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1267), 28, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -509120,14 +470149,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [182535] = 4, + [184265] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1352), 1, + ACTIONS(1173), 1, anon_sym_LF, - STATE(6108), 1, + STATE(5727), 1, sym_comment, - ACTIONS(1350), 32, + ACTIONS(1171), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -509160,14 +470189,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [182579] = 4, + [184309] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5728), 1, + sym_comment, + ACTIONS(2402), 10, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + ACTIONS(2404), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [184353] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, + ACTIONS(1181), 1, anon_sym_LF, - STATE(6109), 1, + STATE(5729), 1, sym_comment, - ACTIONS(1368), 32, + ACTIONS(10197), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1179), 30, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -509176,8 +470248,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, @@ -509200,17 +470270,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [182623] = 5, + [184399] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - STATE(6110), 1, + STATE(5730), 1, sym_comment, - ACTIONS(1255), 2, + ACTIONS(922), 3, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1253), 30, + anon_sym_LPAREN2, + ACTIONS(920), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -509241,20 +470310,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [182669] = 5, + [184443] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - STATE(6111), 1, + STATE(5731), 1, sym_comment, - ACTIONS(1275), 2, + ACTIONS(1243), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1273), 30, + ACTIONS(1241), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -509282,39 +470350,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [182715] = 7, - ACTIONS(3), 1, + [184487] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10676), 1, - anon_sym_DOT, - STATE(6112), 1, + ACTIONS(1247), 1, + anon_sym_LF, + STATE(5732), 1, sym_comment, - STATE(6133), 1, - sym_path, - STATE(6235), 1, - sym_cell_path, - ACTIONS(1010), 11, - sym_identifier, + ACTIONS(1245), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1012), 19, - anon_sym_DOLLAR, - anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -509325,19 +470387,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [182765] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [184531] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6113), 1, + STATE(5733), 1, sym_comment, - ACTIONS(1296), 2, + ACTIONS(1227), 2, ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(1294), 31, - anon_sym_SEMI, anon_sym_LF, + ACTIONS(1225), 31, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -509365,27 +470430,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [182809] = 4, + [184575] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(6114), 1, + ACTIONS(10118), 1, + anon_sym_DOT, + STATE(4161), 1, + sym_cell_path, + STATE(5734), 1, sym_comment, - ACTIONS(1370), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1368), 20, - sym_cmd_identifier, + STATE(5757), 1, + sym_path, + ACTIONS(1002), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -509393,74 +470450,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_mod, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [182853] = 12, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1378), 1, - anon_sym_LF, - ACTIONS(10712), 1, - anon_sym_bit_DASHand, - STATE(6115), 1, - sym_comment, - ACTIONS(10680), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10684), 2, + ACTIONS(1004), 18, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10686), 2, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10710), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10682), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10702), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10678), 6, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1376), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [182913] = 4, + [184625] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1364), 1, + ACTIONS(1173), 1, anon_sym_LF, - STATE(6116), 1, + STATE(5735), 1, sym_comment, - ACTIONS(1362), 32, + ACTIONS(1171), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -509493,79 +470513,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [182957] = 4, - ACTIONS(3), 1, + [184669] = 5, + ACTIONS(113), 1, anon_sym_POUND, - STATE(6117), 1, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + STATE(5736), 1, sym_comment, - ACTIONS(1370), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1368), 20, - sym_cmd_identifier, + ACTIONS(1161), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1159), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [183001] = 7, - ACTIONS(3), 1, + [184715] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10598), 1, - anon_sym_DOT, - STATE(5021), 1, - sym_cell_path, - STATE(6118), 1, + STATE(5737), 1, sym_comment, - STATE(6153), 1, - sym_path, - ACTIONS(1179), 12, - sym_identifier, + ACTIONS(1235), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(1233), 31, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1181), 18, - anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -509576,54 +470591,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [183051] = 4, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [184759] = 8, + ACTIONS(113), 1, anon_sym_POUND, - STATE(6119), 1, + ACTIONS(1181), 1, + anon_sym_LF, + STATE(5738), 1, sym_comment, - ACTIONS(1370), 13, - anon_sym_DASH_DASH, + ACTIONS(10193), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10197), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10199), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10195), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(1179), 22, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_in, + anon_sym_RBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1368), 20, - sym_cmd_identifier, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [184811] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1149), 1, + aux_sym_unquoted_token6, + STATE(5739), 1, + sym_comment, + ACTIONS(1091), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1089), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [183095] = 4, + [184857] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, + ACTIONS(1259), 1, anon_sym_LF, - STATE(6120), 1, + STATE(5740), 1, sym_comment, - ACTIONS(1368), 32, + ACTIONS(1257), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -509656,39 +470719,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [183139] = 7, - ACTIONS(3), 1, + [184901] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10676), 1, - anon_sym_DOT, - STATE(6121), 1, + STATE(5741), 1, sym_comment, - STATE(6133), 1, - sym_path, - STATE(6232), 1, - sym_cell_path, - ACTIONS(995), 11, - sym_identifier, + ACTIONS(1281), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(1279), 31, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(997), 19, - anon_sym_DOLLAR, - anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -509699,190 +470756,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [183189] = 4, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [184945] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(6122), 1, + ACTIONS(1177), 1, + anon_sym_LF, + STATE(5742), 1, sym_comment, - ACTIONS(1318), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1316), 20, - sym_cmd_identifier, + ACTIONS(1175), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [183233] = 4, + [184989] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6123), 1, + STATE(5743), 1, sym_comment, - ACTIONS(1370), 13, - anon_sym_DASH_DASH, + ACTIONS(1074), 5, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + ACTIONS(1076), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1169), 23, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1368), 20, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [183277] = 13, + [185035] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1378), 1, + ACTIONS(1239), 1, anon_sym_LF, - ACTIONS(10712), 1, - anon_sym_bit_DASHand, - ACTIONS(10714), 1, - anon_sym_bit_DASHxor, - STATE(6124), 1, + STATE(5744), 1, sym_comment, - ACTIONS(10680), 2, + ACTIONS(1237), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10684), 2, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10686), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10710), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10682), 4, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10702), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10678), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1376), 8, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [183339] = 4, + [185079] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6125), 1, + STATE(5745), 1, sym_comment, - ACTIONS(1370), 13, - anon_sym_DASH_DASH, + ACTIONS(1287), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1289), 28, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1368), 20, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [183383] = 4, + [185123] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, - anon_sym_LF, - STATE(6126), 1, + STATE(5746), 1, sym_comment, - ACTIONS(1368), 32, + ACTIONS(1167), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(1165), 31, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LF, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -509908,64 +470960,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [183427] = 14, + [185167] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1378), 1, + ACTIONS(1091), 1, anon_sym_LF, - ACTIONS(10712), 1, - anon_sym_bit_DASHand, - ACTIONS(10714), 1, - anon_sym_bit_DASHxor, - ACTIONS(10716), 1, - anon_sym_bit_DASHor, - STATE(6127), 1, + ACTIONS(8191), 1, + anon_sym_COLON, + STATE(5747), 1, sym_comment, - ACTIONS(10680), 2, + ACTIONS(1089), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10684), 2, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10686), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10710), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10682), 4, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10702), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10678), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1376), 7, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [183491] = 4, + [185213] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1360), 1, + ACTIONS(1289), 1, anon_sym_LF, - STATE(6128), 1, + STATE(5748), 1, sym_comment, - ACTIONS(1358), 32, + ACTIONS(1287), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -509998,52 +471041,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [183535] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(6129), 1, - sym_comment, - ACTIONS(1282), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1280), 25, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - aux_sym_unquoted_token6, - [183579] = 4, + [185257] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6130), 1, + STATE(5749), 1, sym_comment, - ACTIONS(1370), 13, + ACTIONS(1169), 13, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -510057,7 +471060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1368), 20, + ACTIONS(1076), 20, sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, @@ -510078,119 +471081,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [183623] = 4, - ACTIONS(113), 1, + [185301] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1370), 1, - anon_sym_LF, - STATE(6131), 1, + STATE(5750), 1, sym_comment, - ACTIONS(1368), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1091), 13, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1089), 20, + sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [183667] = 4, - ACTIONS(3), 1, + [185345] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(6132), 1, + ACTIONS(1235), 1, + anon_sym_LF, + STATE(5751), 1, sym_comment, - ACTIONS(1370), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1368), 20, - sym_cmd_identifier, + ACTIONS(1233), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [183711] = 7, - ACTIONS(3), 1, + [185389] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10676), 1, - anon_sym_DOT, - STATE(6133), 1, + STATE(5752), 1, sym_comment, - STATE(6163), 1, - aux_sym_cell_path_repeat1, - STATE(6433), 1, - sym_path, - ACTIONS(987), 11, - sym_identifier, + ACTIONS(1243), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(1241), 31, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(989), 19, - anon_sym_DOLLAR, - anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -510201,84 +471198,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [183761] = 15, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1378), 1, - anon_sym_LF, - ACTIONS(10712), 1, - anon_sym_bit_DASHand, - ACTIONS(10714), 1, - anon_sym_bit_DASHxor, - ACTIONS(10716), 1, - anon_sym_bit_DASHor, - ACTIONS(10718), 1, anon_sym_and, - STATE(6134), 1, - sym_comment, - ACTIONS(10680), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10684), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10686), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10710), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10682), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10702), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1376), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_xor, anon_sym_or, - ACTIONS(10678), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [183827] = 4, - ACTIONS(113), 1, + [185433] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1344), 1, - anon_sym_LF, - STATE(6135), 1, + ACTIONS(10184), 1, + anon_sym_DOT, + STATE(5667), 1, + sym_path, + STATE(5753), 1, sym_comment, - ACTIONS(1342), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + STATE(6218), 1, + sym_cell_path, + ACTIONS(1093), 11, + sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1095), 19, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -510289,17 +471244,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [183871] = 4, + [185483] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, + ACTIONS(1173), 1, anon_sym_LF, - STATE(6136), 1, + STATE(5754), 1, sym_comment, - ACTIONS(1368), 32, + ACTIONS(1171), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -510332,85 +471284,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [183915] = 16, + [185527] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + STATE(5755), 1, + sym_comment, + STATE(10093), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4196), 9, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4198), 22, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [185575] = 11, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1378), 1, + ACTIONS(1181), 1, anon_sym_LF, - ACTIONS(10712), 1, - anon_sym_bit_DASHand, - ACTIONS(10714), 1, - anon_sym_bit_DASHxor, - ACTIONS(10716), 1, - anon_sym_bit_DASHor, - ACTIONS(10718), 1, - anon_sym_and, - ACTIONS(10720), 1, - anon_sym_xor, - STATE(6137), 1, + STATE(5756), 1, sym_comment, - ACTIONS(10680), 2, + ACTIONS(10193), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10684), 2, + ACTIONS(10197), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10686), 2, + ACTIONS(10199), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10710), 2, + ACTIONS(10235), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10682), 4, + ACTIONS(10195), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10702), 4, + ACTIONS(10201), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1376), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_or, - ACTIONS(10678), 6, + ACTIONS(10191), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [183983] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(6138), 1, - sym_comment, - ACTIONS(1352), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1350), 31, + ACTIONS(1179), 10, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [185633] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10118), 1, + anon_sym_DOT, + STATE(5757), 1, + sym_comment, + STATE(5798), 1, + aux_sym_cell_path_repeat1, + STATE(6184), 1, + sym_path, + ACTIONS(1010), 12, + sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1012), 18, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -510421,24 +471416,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [184027] = 4, + [185683] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, - anon_sym_LF, - STATE(6139), 1, + STATE(5758), 1, sym_comment, - ACTIONS(1368), 32, + ACTIONS(1223), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1221), 31, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -510464,65 +471456,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [184071] = 17, - ACTIONS(113), 1, + [185727] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1378), 1, - anon_sym_LF, - ACTIONS(10712), 1, - anon_sym_bit_DASHand, - ACTIONS(10714), 1, - anon_sym_bit_DASHxor, - ACTIONS(10716), 1, - anon_sym_bit_DASHor, - ACTIONS(10718), 1, - anon_sym_and, - ACTIONS(10720), 1, - anon_sym_xor, - ACTIONS(10722), 1, - anon_sym_or, - STATE(6140), 1, + STATE(5759), 1, sym_comment, - ACTIONS(10680), 2, - anon_sym_DASH, + ACTIONS(1221), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(10684), 2, + anon_sym_LT2, + ACTIONS(1223), 28, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10686), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10710), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1376), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(10682), 4, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10702), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10678), 6, - anon_sym_GT, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [184141] = 4, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [185771] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6141), 1, + STATE(5760), 1, sym_comment, - ACTIONS(1290), 13, + ACTIONS(1053), 13, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -510536,7 +471515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1243), 20, + ACTIONS(1051), 20, sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, @@ -510557,21 +471536,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [184185] = 5, + [185815] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1290), 1, - anon_sym_LPAREN2, - ACTIONS(10724), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(6142), 1, + ACTIONS(1173), 1, + anon_sym_LF, + STATE(5761), 1, + sym_comment, + ACTIONS(1171), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [185859] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(5762), 1, sym_comment, - ACTIONS(1243), 31, + ACTIONS(1157), 8, anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1155), 25, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_not, anon_sym_DOT_DOT_EQ, @@ -510593,17 +471615,13 @@ 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_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [184231] = 4, + aux_sym_unquoted_token6, + [185903] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6143), 1, + STATE(5763), 1, sym_comment, - ACTIONS(961), 13, + ACTIONS(922), 13, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -510617,7 +471635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(959), 20, + ACTIONS(920), 20, sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, @@ -510638,33 +471656,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [184275] = 4, - ACTIONS(113), 1, + [185947] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6144), 1, + STATE(5764), 1, sym_comment, - ACTIONS(1408), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1406), 31, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1279), 5, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1281), 28, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -510678,21 +471696,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [184319] = 4, + [185991] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(6145), 1, - sym_comment, - ACTIONS(1111), 3, - ts_builtin_sym_end, + ACTIONS(1091), 1, anon_sym_LF, - anon_sym_DOT, - ACTIONS(1109), 30, + ACTIONS(1295), 1, + anon_sym_COLON, + STATE(5765), 1, + sym_comment, + ACTIONS(1089), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -510718,73 +471737,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [184363] = 4, + [186037] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(6146), 1, + ACTIONS(9067), 1, + anon_sym_DOT, + STATE(4486), 1, + sym_path, + STATE(5544), 1, + sym_cell_path, + STATE(5766), 1, sym_comment, - ACTIONS(1412), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1410), 20, - sym_cmd_identifier, + ACTIONS(3890), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1057), 5, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [184407] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(6147), 1, - sym_comment, - ACTIONS(1282), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1280), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, + ACTIONS(1059), 23, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -510798,14 +471781,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [184451] = 4, + [186089] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, + ACTIONS(1243), 1, anon_sym_LF, - STATE(6148), 1, + STATE(5767), 1, sym_comment, - ACTIONS(1368), 32, + ACTIONS(1241), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -510838,68 +471821,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [184495] = 17, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(10728), 1, - anon_sym_LF, - ACTIONS(10744), 1, - anon_sym_bit_DASHand, - ACTIONS(10746), 1, - anon_sym_bit_DASHxor, - ACTIONS(10748), 1, - anon_sym_bit_DASHor, - ACTIONS(10750), 1, - anon_sym_and, - ACTIONS(10752), 1, - anon_sym_xor, - ACTIONS(10754), 1, - anon_sym_or, - STATE(6149), 1, - sym_comment, - ACTIONS(10732), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10738), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10740), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10742), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10726), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(10734), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10736), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10730), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [184565] = 4, + [186133] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6150), 1, + STATE(5768), 1, sym_comment, - ACTIONS(1300), 2, + ACTIONS(1157), 2, ts_builtin_sym_end, aux_sym_command_token1, - ACTIONS(1298), 31, + ACTIONS(1155), 31, anon_sym_SEMI, anon_sym_LF, anon_sym_PIPE, @@ -510931,12 +471861,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [184609] = 4, + [186177] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6151), 1, + STATE(5769), 1, sym_comment, - ACTIONS(1288), 13, + ACTIONS(1281), 13, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -510950,7 +471880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1286), 20, + ACTIONS(1279), 20, sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, @@ -510971,34 +471901,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [184653] = 7, + [186221] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10598), 1, - anon_sym_DOT, - STATE(4570), 1, - sym_cell_path, - STATE(6152), 1, + STATE(5770), 1, sym_comment, - STATE(6153), 1, - sym_path, - ACTIONS(1010), 12, - sym_identifier, + ACTIONS(1271), 5, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1012), 18, - anon_sym_DASH_DASH, + ACTIONS(1273), 28, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -511014,34 +471938,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [184703] = 7, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [186265] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10598), 1, - anon_sym_DOT, - STATE(6153), 1, + STATE(5771), 1, sym_comment, - STATE(6154), 1, - aux_sym_cell_path_repeat1, - STATE(6428), 1, - sym_path, - ACTIONS(987), 12, - sym_identifier, + ACTIONS(1275), 5, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(989), 18, - anon_sym_DASH_DASH, + ACTIONS(1277), 28, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -511057,21 +471978,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [184753] = 7, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [186309] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10598), 1, - anon_sym_DOT, - STATE(6154), 1, - sym_comment, - STATE(6155), 1, - aux_sym_cell_path_repeat1, - STATE(6428), 1, - sym_path, - ACTIONS(1006), 12, + ACTIONS(1072), 1, sym_identifier, + ACTIONS(1074), 1, + anon_sym_DOLLAR, + ACTIONS(10136), 1, + anon_sym_DOT_DOT2, + STATE(5772), 1, + sym_comment, + ACTIONS(10138), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1076), 10, anon_sym_GT, - anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, @@ -511081,8 +472006,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1008), 18, - anon_sym_DASH_DASH, + ACTIONS(1169), 18, + anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -511100,63 +472025,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [184803] = 6, - ACTIONS(3), 1, + [186361] = 12, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10756), 1, - anon_sym_DOT, - STATE(6428), 1, - sym_path, - STATE(6155), 2, + ACTIONS(1181), 1, + anon_sym_LF, + ACTIONS(10237), 1, + anon_sym_bit_DASHand, + STATE(5773), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(999), 12, - sym_identifier, - anon_sym_GT, + ACTIONS(10193), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1001), 18, - anon_sym_DASH_DASH, + ACTIONS(10197), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, + ACTIONS(10199), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10235), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10195), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10201), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10191), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, + ACTIONS(1179), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [184851] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [186421] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6156), 1, - sym_comment, - ACTIONS(1119), 3, - ts_builtin_sym_end, + ACTIONS(1173), 1, anon_sym_LF, - anon_sym_DOT, - ACTIONS(1117), 30, + STATE(5774), 1, + sym_comment, + ACTIONS(1171), 32, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -511182,62 +472113,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [184895] = 5, + [186465] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1196), 1, + ACTIONS(1181), 1, anon_sym_LF, - STATE(6157), 1, + ACTIONS(10237), 1, + anon_sym_bit_DASHand, + ACTIONS(10239), 1, + anon_sym_bit_DASHxor, + STATE(5775), 1, sym_comment, - ACTIONS(1194), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(1198), 28, - anon_sym_GT, + ACTIONS(10193), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(10197), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10199), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10235), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10195), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(10201), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10191), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, + ACTIONS(1179), 8, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [184941] = 4, + [186527] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6158), 1, - sym_comment, - ACTIONS(1296), 2, - ts_builtin_sym_end, + ACTIONS(1173), 1, anon_sym_LF, - ACTIONS(1294), 31, + STATE(5776), 1, + sym_comment, + ACTIONS(1171), 32, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -511263,21 +472202,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [184985] = 4, + [186571] = 14, ACTIONS(113), 1, anon_sym_POUND, - STATE(6159), 1, + ACTIONS(1181), 1, + anon_sym_LF, + ACTIONS(10237), 1, + anon_sym_bit_DASHand, + ACTIONS(10239), 1, + anon_sym_bit_DASHxor, + ACTIONS(10241), 1, + anon_sym_bit_DASHor, + STATE(5777), 1, sym_comment, - ACTIONS(1296), 2, - ts_builtin_sym_end, + ACTIONS(10193), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10197), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10199), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10235), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10195), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10201), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10191), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1179), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [186635] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1173), 1, anon_sym_LF, - ACTIONS(1294), 31, + STATE(5778), 1, + sym_comment, + ACTIONS(1171), 32, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -511303,162 +472292,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [185029] = 7, - ACTIONS(3), 1, + [186679] = 15, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10598), 1, - anon_sym_DOT, - STATE(5058), 1, - sym_cell_path, - STATE(6153), 1, - sym_path, - STATE(6160), 1, + ACTIONS(1181), 1, + anon_sym_LF, + ACTIONS(10237), 1, + anon_sym_bit_DASHand, + ACTIONS(10239), 1, + anon_sym_bit_DASHxor, + ACTIONS(10241), 1, + anon_sym_bit_DASHor, + ACTIONS(10243), 1, + anon_sym_and, + STATE(5779), 1, sym_comment, - ACTIONS(1203), 12, - sym_identifier, - anon_sym_GT, + ACTIONS(10193), 2, anon_sym_DASH, - anon_sym_in, + anon_sym_PLUS, + ACTIONS(10197), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10199), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10235), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10195), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, + anon_sym_SLASH_SLASH, + ACTIONS(10201), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1179), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_xor, anon_sym_or, - ACTIONS(1205), 18, - anon_sym_DASH_DASH, + ACTIONS(10191), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [186745] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10253), 1, + anon_sym_SLASH_SLASH, + STATE(5780), 1, + sym_comment, + ACTIONS(10245), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10247), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10251), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, + ACTIONS(10255), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10249), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(10257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(1181), 6, + anon_sym_DASH_DASH, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1179), 11, + sym_cmd_identifier, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [185079] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6161), 1, - sym_comment, - ACTIONS(1168), 13, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT2, - ACTIONS(1170), 20, + [186803] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5781), 1, + sym_comment, + ACTIONS(1167), 13, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [185123] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(6162), 1, - sym_comment, - ACTIONS(1416), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_LPAREN2, - ACTIONS(1414), 30, - anon_sym_SEMI, - anon_sym_PIPE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1165), 20, + sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [185167] = 7, - ACTIONS(3), 1, + [186847] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10676), 1, - anon_sym_DOT, - STATE(6163), 1, + ACTIONS(1173), 1, + anon_sym_LF, + STATE(5782), 1, sym_comment, - STATE(6167), 1, - aux_sym_cell_path_repeat1, - STATE(6433), 1, - sym_path, - ACTIONS(1006), 11, - sym_identifier, + ACTIONS(1171), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1008), 19, - anon_sym_DOLLAR, - anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -511469,12 +472467,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [185217] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [186891] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6164), 1, + STATE(5783), 1, sym_comment, - ACTIONS(1304), 13, + ACTIONS(1243), 13, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -511488,7 +472489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1302), 20, + ACTIONS(1241), 20, sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, @@ -511509,82 +472510,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [185261] = 13, + [186935] = 17, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10656), 1, + ACTIONS(10261), 1, + anon_sym_LF, + ACTIONS(10277), 1, anon_sym_bit_DASHand, - ACTIONS(10658), 1, + ACTIONS(10279), 1, anon_sym_bit_DASHxor, - STATE(6165), 1, + ACTIONS(10281), 1, + anon_sym_bit_DASHor, + ACTIONS(10283), 1, + anon_sym_and, + ACTIONS(10285), 1, + anon_sym_xor, + ACTIONS(10287), 1, + anon_sym_or, + STATE(5784), 1, sym_comment, - ACTIONS(1378), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(10586), 2, + ACTIONS(10265), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10592), 2, + ACTIONS(10271), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10594), 2, + ACTIONS(10273), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10596), 2, + ACTIONS(10275), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10588), 4, + ACTIONS(10259), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(10267), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(10590), 4, + ACTIONS(10269), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10584), 6, + ACTIONS(10263), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1376), 7, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [185323] = 4, - ACTIONS(3), 1, + [187005] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(6166), 1, + ACTIONS(1273), 1, + anon_sym_LF, + STATE(5785), 1, sym_comment, - ACTIONS(1186), 5, + ACTIONS(1271), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1188), 28, - anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -511598,19 +472603,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [185367] = 6, + [187049] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10759), 1, + ACTIONS(10118), 1, anon_sym_DOT, - STATE(6433), 1, + STATE(4564), 1, + sym_cell_path, + STATE(5757), 1, sym_path, - STATE(6167), 2, + STATE(5786), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(999), 11, + ACTIONS(1085), 12, sym_identifier, anon_sym_GT, + anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, @@ -511620,9 +472627,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1001), 19, - anon_sym_DOLLAR, - anon_sym_DASH, + ACTIONS(1087), 18, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -511640,73 +472646,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [185415] = 4, + [187099] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(6168), 1, + ACTIONS(10289), 1, + anon_sym_DOT_DOT2, + STATE(5787), 1, sym_comment, - ACTIONS(1416), 13, - anon_sym_DASH_DASH, + ACTIONS(1074), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(10291), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1076), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1169), 23, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1414), 20, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [185459] = 4, - ACTIONS(3), 1, + [187149] = 16, + ACTIONS(113), 1, anon_sym_POUND, - STATE(6169), 1, + ACTIONS(1181), 1, + anon_sym_LF, + ACTIONS(10237), 1, + anon_sym_bit_DASHand, + ACTIONS(10239), 1, + anon_sym_bit_DASHxor, + ACTIONS(10241), 1, + anon_sym_bit_DASHor, + ACTIONS(10243), 1, + anon_sym_and, + ACTIONS(10293), 1, + anon_sym_xor, + STATE(5788), 1, sym_comment, - ACTIONS(1298), 5, - anon_sym_GT, + ACTIONS(10193), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10197), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10199), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10235), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10195), 4, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10201), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1179), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_or, + ACTIONS(10191), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, - ACTIONS(1300), 28, - anon_sym_COMMA, - anon_sym_DOLLAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [187217] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1277), 1, + anon_sym_LF, + STATE(5789), 1, + sym_comment, + ACTIONS(1275), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -511720,18 +472781,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [185503] = 7, + [187261] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10598), 1, - anon_sym_DOT, - STATE(4673), 1, - sym_cell_path, - STATE(6153), 1, - sym_path, - STATE(6170), 1, + ACTIONS(10136), 1, + anon_sym_DOT_DOT2, + STATE(5790), 1, sym_comment, - ACTIONS(995), 12, + ACTIONS(10138), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1089), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -511744,7 +472804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(997), 18, + ACTIONS(1091), 18, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -511763,178 +472823,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [185553] = 4, - ACTIONS(113), 1, + [187309] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6171), 1, + ACTIONS(10253), 1, + anon_sym_SLASH_SLASH, + STATE(5791), 1, sym_comment, - ACTIONS(1119), 2, - anon_sym_DOT, - sym__entry_separator, - ACTIONS(1117), 31, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_GT, + ACTIONS(10247), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(10251), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10249), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(1181), 10, + anon_sym_DASH_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [185597] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(6172), 1, - sym_comment, - ACTIONS(1192), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(1190), 31, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1179), 15, + sym_cmd_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [185641] = 4, - ACTIONS(113), 1, + [187361] = 12, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6173), 1, + ACTIONS(10253), 1, + anon_sym_SLASH_SLASH, + STATE(5792), 1, sym_comment, - ACTIONS(1310), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1308), 31, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(10245), 2, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_LT2, + ACTIONS(10247), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(10251), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, + ACTIONS(10255), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10249), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(10257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(10295), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + ACTIONS(1181), 6, + anon_sym_DASH_DASH, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1179), 7, + sym_cmd_identifier, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [185685] = 4, - ACTIONS(113), 1, + [187421] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6174), 1, + ACTIONS(10253), 1, + anon_sym_SLASH_SLASH, + STATE(5793), 1, sym_comment, - ACTIONS(1314), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1312), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + ACTIONS(10251), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10249), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(1181), 10, + anon_sym_DASH_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1179), 17, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [185729] = 4, + [187471] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6175), 1, + STATE(5794), 1, sym_comment, - ACTIONS(1158), 5, + ACTIONS(1076), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1160), 28, + ACTIONS(1169), 28, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DASH, @@ -511963,58 +472998,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [185773] = 4, - ACTIONS(113), 1, + [187515] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1334), 1, - anon_sym_LF, - STATE(6176), 1, + STATE(5795), 1, sym_comment, - ACTIONS(1332), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(10251), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1181), 11, + anon_sym_DASH_DASH, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1179), 20, + sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [185817] = 4, + [187561] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6177), 1, + STATE(5796), 1, sym_comment, - ACTIONS(1368), 5, + ACTIONS(1171), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1370), 28, + ACTIONS(1173), 28, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DASH, @@ -512043,98 +473079,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [185861] = 4, - ACTIONS(113), 1, + [187605] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6178), 1, + ACTIONS(10118), 1, + anon_sym_DOT, + STATE(4615), 1, + sym_cell_path, + STATE(5757), 1, + sym_path, + STATE(5797), 1, sym_comment, - ACTIONS(1318), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(1316), 31, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, + ACTIONS(1093), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [185905] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6179), 1, - sym_comment, - ACTIONS(1420), 13, + ACTIONS(1095), 18, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1418), 20, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [185949] = 7, + [187655] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10598), 1, + ACTIONS(10118), 1, anon_sym_DOT, - STATE(5077), 1, - sym_cell_path, - STATE(6153), 1, - sym_path, - STATE(6180), 1, + STATE(5798), 1, sym_comment, - ACTIONS(1186), 12, + STATE(5808), 1, + aux_sym_cell_path_repeat1, + STATE(6184), 1, + sym_path, + ACTIONS(1006), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -512147,7 +473146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1188), 18, + ACTIONS(1008), 18, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -512166,19 +473165,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [185999] = 4, + [187705] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5799), 1, + sym_comment, + ACTIONS(1886), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(3771), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3773), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [187751] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6181), 1, + STATE(5800), 1, sym_comment, - ACTIONS(1374), 2, + ACTIONS(1247), 2, ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(1372), 31, - anon_sym_SEMI, anon_sym_LF, + ACTIONS(1245), 31, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -512206,55 +473246,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [186043] = 5, - ACTIONS(113), 1, + [187795] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6329), 1, - anon_sym_LF, - STATE(6182), 1, + STATE(5801), 1, sym_comment, - ACTIONS(6332), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(1298), 28, + ACTIONS(1157), 13, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1155), 20, + sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [186089] = 4, + [187839] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1356), 1, + ACTIONS(1131), 1, anon_sym_LF, - STATE(6183), 1, + STATE(5802), 1, sym_comment, - ACTIONS(1354), 32, + ACTIONS(1129), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -512287,59 +473326,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [186133] = 4, + [187883] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(6184), 1, + ACTIONS(10253), 1, + anon_sym_SLASH_SLASH, + STATE(5803), 1, sym_comment, - ACTIONS(1280), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1282), 28, - anon_sym_COMMA, - anon_sym_DOLLAR, + ACTIONS(10247), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_PLUS, + ACTIONS(10251), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(10255), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10249), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(1181), 10, + anon_sym_DASH_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1179), 13, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [186177] = 5, + [187937] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6185), 1, + STATE(5804), 1, sym_comment, - ACTIONS(1196), 2, + ACTIONS(1251), 2, ts_builtin_sym_end, aux_sym_command_token1, - ACTIONS(1194), 3, + ACTIONS(1249), 31, anon_sym_SEMI, anon_sym_LF, anon_sym_PIPE, - ACTIONS(1198), 28, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -512368,15 +473411,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [186223] = 4, + [187981] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6186), 1, + STATE(5805), 1, sym_comment, - ACTIONS(1374), 2, + ACTIONS(1255), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1372), 31, + ACTIONS(1253), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -512408,61 +473451,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [186267] = 4, - ACTIONS(113), 1, + [188025] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1338), 1, - anon_sym_LF, - STATE(6187), 1, + ACTIONS(10253), 1, + anon_sym_SLASH_SLASH, + STATE(5806), 1, sym_comment, - ACTIONS(1336), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(10245), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(10247), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(10251), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, + ACTIONS(10255), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10297), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10249), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(1181), 4, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(10257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(10295), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(1179), 7, + sym_cmd_identifier, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [186311] = 4, + [188087] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6188), 1, - sym_comment, - ACTIONS(1192), 2, - ts_builtin_sym_end, + ACTIONS(1263), 1, anon_sym_LF, - ACTIONS(1190), 31, + STATE(5807), 1, + sym_comment, + ACTIONS(1261), 32, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -512488,27 +473540,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [186355] = 4, + [188131] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6189), 1, + ACTIONS(10299), 1, + anon_sym_DOT, + STATE(6184), 1, + sym_path, + STATE(5808), 2, sym_comment, - ACTIONS(1322), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1320), 20, - sym_cmd_identifier, + aux_sym_cell_path_repeat1, + ACTIONS(985), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -512516,167 +473559,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_mod, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [186399] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6190), 1, - sym_comment, - ACTIONS(1344), 13, + ACTIONS(987), 18, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1342), 20, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [186443] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10762), 1, - anon_sym_QMARK2, - STATE(6191), 1, - sym_comment, - ACTIONS(1070), 9, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1072), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [186489] = 5, + [188179] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10762), 1, - anon_sym_QMARK2, - STATE(6192), 1, - sym_comment, - ACTIONS(1070), 9, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1072), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [186535] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(6193), 1, + STATE(5809), 1, sym_comment, - ACTIONS(1366), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1198), 31, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1171), 5, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1173), 28, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -512690,102 +473622,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [186579] = 4, + [188223] = 14, ACTIONS(3), 1, anon_sym_POUND, - STATE(6194), 1, + ACTIONS(10253), 1, + anon_sym_SLASH_SLASH, + ACTIONS(10302), 1, + anon_sym_bit_DASHand, + STATE(5810), 1, sym_comment, - ACTIONS(1348), 13, - anon_sym_DASH_DASH, + ACTIONS(10245), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10247), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10251), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(10255), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10297), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1346), 20, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, + ACTIONS(10249), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [186623] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6195), 1, - sym_comment, - ACTIONS(1364), 13, + ACTIONS(1181), 4, anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(10257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1362), 20, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, + ACTIONS(10295), 4, anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, + ACTIONS(1179), 6, + sym_cmd_identifier, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [186667] = 6, + [188287] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1200), 1, - anon_sym_DASH, - STATE(6196), 1, + STATE(5811), 1, sym_comment, - ACTIONS(1196), 2, + ACTIONS(1259), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1194), 3, + ACTIONS(1257), 31, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DASH_DASH, - ACTIONS(1198), 27, anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_STAR_STAR, @@ -512812,33 +473712,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [186715] = 4, - ACTIONS(113), 1, + [188331] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6197), 1, + STATE(5812), 1, sym_comment, - ACTIONS(961), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(959), 31, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, + ACTIONS(1171), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1173), 28, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -512852,100 +473752,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [186759] = 4, + [188375] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6198), 1, + STATE(5813), 1, sym_comment, - ACTIONS(1408), 13, - anon_sym_DASH_DASH, + ACTIONS(1171), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1173), 28, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1406), 20, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [186803] = 9, - ACTIONS(113), 1, + [188419] = 15, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6199), 1, + ACTIONS(10253), 1, + anon_sym_SLASH_SLASH, + ACTIONS(10302), 1, + anon_sym_bit_DASHand, + ACTIONS(10304), 1, + anon_sym_bit_DASHxor, + STATE(5814), 1, sym_comment, - ACTIONS(1378), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(10586), 2, + ACTIONS(10245), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10247), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10592), 2, + ACTIONS(10251), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10594), 2, + ACTIONS(10255), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10590), 4, + ACTIONS(10297), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10249), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10584), 6, - anon_sym_GT, + ACTIONS(1181), 4, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(10257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1376), 15, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, + ACTIONS(10295), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(1179), 5, + sym_cmd_identifier, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [188485] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10253), 1, + anon_sym_SLASH_SLASH, + ACTIONS(10302), 1, anon_sym_bit_DASHand, + ACTIONS(10304), 1, anon_sym_bit_DASHxor, + ACTIONS(10306), 1, anon_sym_bit_DASHor, + STATE(5815), 1, + sym_comment, + ACTIONS(10245), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10247), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10251), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10255), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10297), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10249), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(1179), 4, + sym_cmd_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - [186857] = 4, + ACTIONS(1181), 4, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(10257), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(10295), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + [188553] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6200), 1, + STATE(5816), 1, sym_comment, - ACTIONS(1356), 2, + ACTIONS(1263), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1354), 31, + ACTIONS(1261), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -512977,66 +473935,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [186901] = 9, + [188597] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1194), 1, - sym_identifier, - ACTIONS(1196), 1, - anon_sym_DASH_DASH, - ACTIONS(1200), 1, - anon_sym_DASH, - ACTIONS(10610), 1, - anon_sym_DOT_DOT2, - STATE(6201), 1, + ACTIONS(10253), 1, + anon_sym_SLASH_SLASH, + ACTIONS(10302), 1, + anon_sym_bit_DASHand, + ACTIONS(10304), 1, + anon_sym_bit_DASHxor, + ACTIONS(10306), 1, + anon_sym_bit_DASHor, + ACTIONS(10308), 1, + anon_sym_and, + STATE(5817), 1, sym_comment, - ACTIONS(10612), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1198), 10, + ACTIONS(10245), 2, anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1366), 17, + ACTIONS(10247), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10251), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, + ACTIONS(10255), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10297), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1179), 3, + sym_cmd_identifier, + anon_sym_xor, + anon_sym_or, + ACTIONS(10249), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(1181), 4, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(10257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(10295), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [186955] = 4, + [188667] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6202), 1, + ACTIONS(1137), 1, + anon_sym_LF, + STATE(5818), 1, sym_comment, - ACTIONS(1356), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(1354), 31, + ACTIONS(1135), 32, anon_sym_SEMI, - anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -513062,18 +474028,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [186999] = 4, + [188711] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6203), 1, + STATE(5819), 1, sym_comment, - ACTIONS(1368), 5, + ACTIONS(1171), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1370), 28, + ACTIONS(1173), 28, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DASH, @@ -513102,101 +474068,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [187043] = 4, + [188755] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6204), 1, + ACTIONS(10289), 1, + anon_sym_DOT_DOT2, + STATE(5820), 1, sym_comment, - ACTIONS(1296), 13, - anon_sym_DASH_DASH, + ACTIONS(10291), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1089), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1091), 25, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1294), 20, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [187087] = 4, + [188803] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(6205), 1, + ACTIONS(10253), 1, + anon_sym_SLASH_SLASH, + ACTIONS(10302), 1, + anon_sym_bit_DASHand, + ACTIONS(10304), 1, + anon_sym_bit_DASHxor, + ACTIONS(10306), 1, + anon_sym_bit_DASHor, + ACTIONS(10308), 1, + anon_sym_and, + ACTIONS(10310), 1, + anon_sym_xor, + STATE(5821), 1, sym_comment, - ACTIONS(1296), 13, - anon_sym_DASH_DASH, + ACTIONS(1179), 2, + sym_cmd_identifier, + anon_sym_or, + ACTIONS(10245), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10247), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10251), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(10255), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10297), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, + ACTIONS(10249), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(1181), 4, + anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1294), 20, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, + ACTIONS(10257), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(10295), 4, anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [187131] = 4, + [188875] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(6206), 1, + ACTIONS(922), 1, + sym__entry_separator, + ACTIONS(10312), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(10314), 1, + aux_sym_unquoted_token2, + STATE(5822), 1, sym_comment, - ACTIONS(1370), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1368), 31, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(920), 30, + anon_sym_RBRACK, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -513222,21 +474206,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [187175] = 4, + [188923] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6207), 1, - sym_comment, - ACTIONS(1334), 2, - ts_builtin_sym_end, + ACTIONS(1173), 1, anon_sym_LF, - ACTIONS(1332), 31, + STATE(5823), 1, + sym_comment, + ACTIONS(1171), 32, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -513262,264 +474246,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [187219] = 4, + [188967] = 17, ACTIONS(113), 1, anon_sym_POUND, - STATE(6208), 1, - sym_comment, - ACTIONS(1338), 2, - ts_builtin_sym_end, + ACTIONS(1181), 1, anon_sym_LF, - ACTIONS(1336), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, + ACTIONS(10237), 1, + anon_sym_bit_DASHand, + ACTIONS(10239), 1, + anon_sym_bit_DASHxor, + ACTIONS(10241), 1, + anon_sym_bit_DASHor, + ACTIONS(10243), 1, + anon_sym_and, + ACTIONS(10293), 1, + anon_sym_xor, + ACTIONS(10316), 1, + anon_sym_or, + STATE(5824), 1, + sym_comment, + ACTIONS(10193), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(10197), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10199), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10235), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1179), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(10195), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(10201), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10191), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + [189037] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1179), 1, + sym_cmd_identifier, + ACTIONS(10253), 1, + anon_sym_SLASH_SLASH, + ACTIONS(10302), 1, anon_sym_bit_DASHand, + ACTIONS(10304), 1, anon_sym_bit_DASHxor, + ACTIONS(10306), 1, anon_sym_bit_DASHor, + ACTIONS(10308), 1, anon_sym_and, + ACTIONS(10310), 1, anon_sym_xor, + ACTIONS(10318), 1, anon_sym_or, - [187263] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10676), 1, - anon_sym_DOT, - STATE(6133), 1, - sym_path, - STATE(6209), 1, + STATE(5825), 1, sym_comment, - STATE(6655), 1, - sym_cell_path, - ACTIONS(1154), 11, - sym_identifier, + ACTIONS(10245), 2, anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1156), 19, - anon_sym_DOLLAR, + ACTIONS(10247), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10251), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, + ACTIONS(10255), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, + ACTIONS(10297), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [187313] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10610), 1, - anon_sym_DOT_DOT2, - STATE(6210), 1, - sym_comment, - ACTIONS(10612), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1158), 11, - sym_identifier, - anon_sym_GT, - anon_sym_in, + ACTIONS(10249), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1160), 19, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(1181), 4, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(10257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(10295), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [187361] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - STATE(6211), 1, - sym_comment, - STATE(11424), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4323), 9, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4325), 22, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [187409] = 4, - ACTIONS(3), 1, + [189111] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(6212), 1, + ACTIONS(1251), 1, + anon_sym_LF, + STATE(5826), 1, sym_comment, - ACTIONS(1310), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1308), 20, - sym_cmd_identifier, + ACTIONS(1249), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [187453] = 4, - ACTIONS(3), 1, + [189155] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(6213), 1, + ACTIONS(1173), 1, + anon_sym_LF, + STATE(5827), 1, sym_comment, - ACTIONS(1314), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1312), 20, - sym_cmd_identifier, + ACTIONS(1171), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [187497] = 6, + [189199] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - STATE(6214), 1, + ACTIONS(10320), 1, + anon_sym_DOT, + ACTIONS(10322), 1, + aux_sym__immediate_decimal_token2, + STATE(5828), 1, sym_comment, - STATE(10744), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4291), 9, - anon_sym_LPAREN, + ACTIONS(2356), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -513528,8 +474452,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4293), 22, + ACTIONS(2358), 23, anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_not, anon_sym_DOT_DOT_EQ, @@ -513551,58 +474476,18 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [187545] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(6215), 1, - sym_comment, - ACTIONS(1352), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(1350), 31, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [187589] = 7, + [189247] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10676), 1, + ACTIONS(10184), 1, anon_sym_DOT, - STATE(6133), 1, + STATE(5667), 1, sym_path, - STATE(6216), 1, + STATE(5829), 1, sym_comment, - STATE(6658), 1, + STATE(6249), 1, sym_cell_path, - ACTIONS(1190), 11, + ACTIONS(1101), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -513614,7 +474499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1192), 19, + ACTIONS(1103), 19, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_STAR_STAR, @@ -513634,12 +474519,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [187639] = 4, + [189297] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6217), 1, + STATE(5830), 1, sym_comment, - ACTIONS(1188), 13, + ACTIONS(1173), 13, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -513653,7 +474538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1186), 20, + ACTIONS(1171), 20, sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, @@ -513674,33 +474559,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [187683] = 4, - ACTIONS(3), 1, + [189341] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(6218), 1, + ACTIONS(1285), 1, + anon_sym_LF, + STATE(5831), 1, sym_comment, - ACTIONS(1368), 5, + ACTIONS(1283), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1370), 28, - anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -513714,12 +474599,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [187727] = 4, + [189385] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6219), 1, + STATE(5832), 1, sym_comment, - ACTIONS(1334), 13, + ACTIONS(1173), 13, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -513733,7 +474618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1332), 20, + ACTIONS(1171), 20, sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, @@ -513754,12 +474639,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [187771] = 4, + [189429] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6220), 1, + STATE(5833), 1, sym_comment, - ACTIONS(1338), 13, + ACTIONS(1285), 13, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -513773,7 +474658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1336), 20, + ACTIONS(1283), 20, sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, @@ -513794,76 +474679,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [187815] = 7, - ACTIONS(113), 1, + [189473] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6221), 1, + STATE(5834), 1, sym_comment, - ACTIONS(1378), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(10586), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10592), 2, + ACTIONS(1173), 13, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10590), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1376), 23, - anon_sym_SEMI, - anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1171), 20, + sym_cmd_identifier, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [187865] = 4, - ACTIONS(113), 1, + [189517] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6222), 1, + ACTIONS(10118), 1, + anon_sym_DOT, + STATE(4178), 1, + sym_cell_path, + STATE(5757), 1, + sym_path, + STATE(5835), 1, sym_comment, - ACTIONS(1344), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(1342), 31, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, + ACTIONS(992), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(994), 18, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -513874,62 +474762,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [187909] = 5, - ACTIONS(113), 1, + [189567] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1160), 1, - anon_sym_LF, - ACTIONS(1465), 1, - anon_sym_COLON, - STATE(6223), 1, + STATE(5836), 1, sym_comment, - ACTIONS(1158), 31, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1223), 13, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1221), 20, + sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [187955] = 7, + [189611] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10676), 1, + ACTIONS(10184), 1, anon_sym_DOT, - STATE(6133), 1, + STATE(5667), 1, sym_path, - STATE(6224), 1, + STATE(5837), 1, sym_comment, - STATE(6633), 1, + STATE(6209), 1, sym_cell_path, - ACTIONS(1148), 11, + ACTIONS(1051), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -513941,7 +474825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1150), 19, + ACTIONS(1053), 19, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_STAR_STAR, @@ -513961,19 +474845,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [188005] = 4, + [189661] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6225), 1, + STATE(5838), 1, sym_comment, - ACTIONS(1370), 2, + ACTIONS(1213), 3, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1368), 31, + anon_sym_LPAREN2, + ACTIONS(1211), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -514001,79 +474885,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [188049] = 10, - ACTIONS(113), 1, + [189705] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6226), 1, + STATE(5839), 1, sym_comment, - ACTIONS(1378), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(10586), 2, + ACTIONS(1068), 13, + sym_identifier, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10592), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10594), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10588), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10590), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10584), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_PLUS, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1376), 11, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - 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, - [188105] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(6227), 1, - sym_comment, - ACTIONS(1370), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1368), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOT_DOT2, + ACTIONS(1070), 20, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -514084,61 +474923,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [188149] = 6, - ACTIONS(113), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [189749] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6228), 1, + ACTIONS(6762), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(10324), 1, + aux_sym_unquoted_token2, + STATE(5840), 1, sym_comment, - ACTIONS(1378), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(10592), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10590), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1376), 25, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, + ACTIONS(920), 8, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [188197] = 6, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(922), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [189797] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2397), 1, + ACTIONS(2187), 1, anon_sym_LPAREN2, - STATE(6229), 1, + STATE(5841), 1, sym_comment, - STATE(11424), 1, + STATE(10434), 1, sym__expr_parenthesized_immediate, - ACTIONS(4375), 9, + ACTIONS(4342), 9, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, @@ -514148,7 +474986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4377), 22, + ACTIONS(4344), 22, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_not, @@ -514171,110 +475009,109 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [188245] = 4, - ACTIONS(113), 1, + [189845] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6230), 1, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + STATE(5842), 1, sym_comment, - ACTIONS(1370), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1368), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, + STATE(10434), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4394), 9, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4396), 22, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [189893] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5843), 1, + sym_comment, + ACTIONS(1173), 13, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [188289] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(6231), 1, - sym_comment, - ACTIONS(1378), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(10592), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(1376), 29, - anon_sym_SEMI, - anon_sym_PIPE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1171), 20, + sym_cmd_identifier, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [188335] = 4, + [189937] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6232), 1, + STATE(5844), 1, sym_comment, - ACTIONS(1172), 12, - sym_identifier, + ACTIONS(1033), 6, anon_sym_GT, - anon_sym_in, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - ACTIONS(1174), 21, + ACTIONS(1035), 27, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -514290,36 +475127,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [188379] = 5, - ACTIONS(113), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT, + [189981] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - STATE(6233), 1, + STATE(5845), 1, sym_comment, - ACTIONS(1249), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1247), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1020), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1022), 27, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -514333,16 +475170,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [188425] = 4, + anon_sym_DOT, + [190025] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(6234), 1, + ACTIONS(8909), 1, + aux_sym_unquoted_token5, + STATE(5846), 1, sym_comment, - ACTIONS(1115), 3, + ACTIONS(940), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT, - ACTIONS(1113), 30, + ACTIONS(938), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -514373,114 +475212,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [188469] = 4, + [190071] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6235), 1, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + STATE(5847), 1, sym_comment, - ACTIONS(1168), 12, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT2, - ACTIONS(1170), 21, + STATE(10434), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4422), 9, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [188513] = 17, - ACTIONS(113), 1, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4424), 22, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [190119] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10766), 1, - anon_sym_LF, - ACTIONS(10782), 1, - anon_sym_bit_DASHand, - ACTIONS(10784), 1, - anon_sym_bit_DASHxor, - ACTIONS(10786), 1, - anon_sym_bit_DASHor, - ACTIONS(10788), 1, - anon_sym_and, - ACTIONS(10790), 1, - anon_sym_xor, - ACTIONS(10792), 1, - anon_sym_or, - STATE(6236), 1, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + STATE(5848), 1, sym_comment, - ACTIONS(10770), 2, + STATE(10434), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4426), 9, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10776), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10778), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10780), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10764), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(10772), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10774), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10768), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [188583] = 4, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4428), 22, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [190167] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6237), 1, + ACTIONS(1255), 1, + anon_sym_LF, + STATE(5849), 1, sym_comment, - ACTIONS(1160), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(1158), 31, + ACTIONS(1253), 32, anon_sym_SEMI, - anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -514506,15 +475336,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [188627] = 4, + [190211] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6238), 1, + STATE(5850), 1, sym_comment, - ACTIONS(1370), 2, + ACTIONS(1131), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1368), 31, + ACTIONS(1129), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -514546,63 +475376,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [188671] = 8, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(6239), 1, - sym_comment, - ACTIONS(1378), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(10586), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10592), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10594), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10590), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1376), 21, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [188723] = 6, + [190255] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1194), 1, + ACTIONS(1072), 1, sym_cmd_identifier, - STATE(6240), 1, + STATE(5851), 1, sym_comment, - ACTIONS(1196), 4, + ACTIONS(1074), 4, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1366), 9, + ACTIONS(1169), 9, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -514612,7 +475398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1198), 19, + ACTIONS(1076), 19, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -514632,33 +475418,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [188771] = 4, - ACTIONS(113), 1, + [190303] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1160), 1, - anon_sym_LF, - STATE(6241), 1, + STATE(5852), 1, sym_comment, - ACTIONS(1158), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1171), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1173), 28, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -514672,12 +475458,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [188815] = 4, + [190347] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6242), 1, + STATE(5853), 1, sym_comment, - ACTIONS(1356), 13, + ACTIONS(1289), 13, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -514691,7 +475477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1354), 20, + ACTIONS(1287), 20, sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, @@ -514712,77 +475498,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [188859] = 5, + [190391] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6243), 1, + STATE(5854), 1, sym_comment, - ACTIONS(1196), 5, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - ACTIONS(1198), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1366), 23, - anon_sym_DASH, - anon_sym_in, + ACTIONS(1173), 13, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1171), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [188905] = 7, - ACTIONS(3), 1, + [190435] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10794), 1, - anon_sym_DOT_DOT2, - STATE(6244), 1, + STATE(5855), 1, sym_comment, - ACTIONS(1196), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(10796), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1198), 5, + ACTIONS(1137), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1135), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1366), 23, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -514796,18 +475578,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [188955] = 4, + [190479] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6245), 1, + STATE(5856), 1, sym_comment, - ACTIONS(1354), 5, + ACTIONS(1171), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1356), 28, + ACTIONS(1173), 28, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DASH, @@ -514836,39 +475618,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [188999] = 7, - ACTIONS(3), 1, + [190523] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10676), 1, - anon_sym_DOT, - STATE(6133), 1, - sym_path, - STATE(6246), 1, + STATE(5857), 1, sym_comment, - STATE(6684), 1, - sym_cell_path, - ACTIONS(1203), 11, - sym_identifier, + ACTIONS(1247), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(1245), 31, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1205), 19, - anon_sym_DOLLAR, - anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -514879,73 +475655,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [189049] = 4, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [190567] = 6, + ACTIONS(113), 1, anon_sym_POUND, - STATE(6247), 1, + ACTIONS(1149), 1, + aux_sym_unquoted_token6, + ACTIONS(3783), 1, + anon_sym_LPAREN2, + STATE(5858), 1, sym_comment, - ACTIONS(2437), 10, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(2439), 23, + ACTIONS(1091), 7, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [189093] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6248), 1, - sym_comment, - ACTIONS(2547), 10, + ACTIONS(1089), 24, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(2549), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_not, 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -514953,148 +475696,61 @@ 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, - [189137] = 4, - ACTIONS(113), 1, + [190615] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1288), 1, - anon_sym_LF, - STATE(6249), 1, + STATE(5859), 1, sym_comment, - ACTIONS(1286), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + ACTIONS(1173), 13, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [189181] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6250), 1, - sym_comment, - ACTIONS(3505), 10, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(3507), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [189225] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1194), 1, - sym_identifier, - ACTIONS(1196), 1, - anon_sym_DOLLAR, - ACTIONS(10610), 1, - anon_sym_DOT_DOT2, - STATE(6251), 1, - sym_comment, - ACTIONS(10612), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1198), 10, + ACTIONS(1171), 20, + sym_cmd_identifier, anon_sym_GT, + anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1366), 18, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [189277] = 5, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [190659] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1284), 1, - aux_sym_unquoted_token6, - STATE(6252), 1, + STATE(5860), 1, sym_comment, - ACTIONS(1160), 2, + ACTIONS(1227), 2, ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1158), 30, + aux_sym_command_token1, + ACTIONS(1225), 31, anon_sym_SEMI, + anon_sym_LF, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, @@ -515124,117 +475780,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [189323] = 4, - ACTIONS(113), 1, + [190703] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6253), 1, + STATE(5861), 1, sym_comment, - ACTIONS(1412), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(1410), 31, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, + ACTIONS(1173), 13, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1171), 20, + sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [189367] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - STATE(6254), 1, - sym_comment, - STATE(11424), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4529), 9, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4531), 22, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [189415] = 6, - ACTIONS(3), 1, + [190747] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10794), 1, - anon_sym_DOT_DOT2, - STATE(6255), 1, + STATE(5862), 1, sym_comment, - ACTIONS(10796), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1158), 5, + ACTIONS(1209), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LPAREN2, + ACTIONS(1139), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1160), 25, - anon_sym_COMMA, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -515248,34 +475860,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [189463] = 5, - ACTIONS(113), 1, + [190791] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9405), 1, - aux_sym_unquoted_token5, - STATE(6256), 1, + STATE(5863), 1, sym_comment, - ACTIONS(961), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(959), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1171), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1173), 28, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -515289,75 +475900,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [189509] = 6, + [190835] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - STATE(6257), 1, + ACTIONS(10326), 1, + sym_long_flag_identifier, + STATE(5864), 1, sym_comment, - STATE(11424), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4533), 9, - anon_sym_LPAREN, + ACTIONS(4734), 14, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, anon_sym_DOT2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4535), 22, + ACTIONS(4738), 17, anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_not, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [189557] = 4, - ACTIONS(3), 1, + [190880] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(6258), 1, + STATE(5865), 1, sym_comment, - ACTIONS(1294), 5, + ACTIONS(1095), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1093), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1296), 28, - anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -515371,75 +475979,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [189601] = 6, + [190923] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - ACTIONS(4631), 1, - anon_sym_LPAREN2, - STATE(6259), 1, - sym_comment, - ACTIONS(1255), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1253), 24, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [189649] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6260), 1, + STATE(5866), 1, sym_comment, - ACTIONS(1368), 5, + ACTIONS(1173), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1171), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1370), 28, - anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -515453,33 +476018,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [189693] = 4, - ACTIONS(3), 1, + [190966] = 5, + ACTIONS(113), 1, anon_sym_POUND, - STATE(6261), 1, + ACTIONS(1131), 1, + anon_sym_LBRACE, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + STATE(5867), 1, sym_comment, - ACTIONS(1350), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1352), 28, - anon_sym_COMMA, + ACTIONS(1129), 30, anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -515493,17 +476058,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [189737] = 4, + [191011] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1310), 1, - anon_sym_LF, - STATE(6262), 1, + ACTIONS(1095), 1, + sym__entry_separator, + STATE(5868), 1, sym_comment, - ACTIONS(1308), 32, + ACTIONS(1093), 31, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -515533,33 +476097,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [189781] = 4, - ACTIONS(3), 1, + [191054] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(6263), 1, + ACTIONS(10328), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(5869), 1, sym_comment, - ACTIONS(1358), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1360), 28, - anon_sym_COMMA, + ACTIONS(1139), 31, anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -515573,103 +476136,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [189825] = 4, - ACTIONS(3), 1, + [191097] = 10, + ACTIONS(113), 1, anon_sym_POUND, - STATE(6264), 1, + STATE(5870), 1, sym_comment, - ACTIONS(1352), 13, - anon_sym_DASH_DASH, + ACTIONS(1181), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(10332), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10338), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10340), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10334), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10336), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(10330), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(1179), 10, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1350), 20, - sym_cmd_identifier, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [191152] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1161), 1, + sym__entry_separator, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + STATE(5871), 1, + sym_comment, + ACTIONS(1159), 30, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [189869] = 6, + [191197] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1257), 1, + ACTIONS(1133), 1, aux_sym_unquoted_token6, - ACTIONS(4631), 1, - anon_sym_LPAREN2, - STATE(6265), 1, - sym_comment, - ACTIONS(1275), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1273), 24, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_not, - 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, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_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, - [189917] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(6266), 1, + ACTIONS(1137), 1, + sym__entry_separator, + STATE(5872), 1, sym_comment, - ACTIONS(1420), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_LPAREN2, - ACTIONS(1418), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1135), 30, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -515695,24 +476261,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [189961] = 4, + [191242] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(6267), 1, + STATE(5873), 1, sym_comment, - ACTIONS(1370), 2, + ACTIONS(1181), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1368), 31, + ACTIONS(10338), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1179), 28, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, @@ -515735,19 +476301,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [190005] = 4, + [191287] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6268), 1, + STATE(5874), 1, sym_comment, - ACTIONS(1322), 2, + ACTIONS(1173), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1320), 31, + ACTIONS(1171), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -515775,99 +476340,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [190049] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7242), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10798), 1, - aux_sym_unquoted_token2, - STATE(6269), 1, - sym_comment, - ACTIONS(936), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(938), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [190097] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6270), 1, - sym_comment, - ACTIONS(1059), 9, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1061), 24, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK2, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [190141] = 4, + [191330] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6271), 1, + STATE(5875), 1, sym_comment, - ACTIONS(1366), 2, + ACTIONS(1173), 2, ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(1198), 31, - anon_sym_SEMI, anon_sym_LF, + ACTIONS(1171), 30, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, @@ -515897,61 +476379,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [190185] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6272), 1, - sym_comment, - ACTIONS(1063), 9, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1065), 24, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK2, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [190229] = 4, + [191373] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1192), 1, - anon_sym_LF, - STATE(6273), 1, + STATE(5876), 1, sym_comment, - ACTIONS(1190), 32, + ACTIONS(1277), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1275), 30, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -515977,34 +476418,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [190273] = 7, + [191416] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10676), 1, - anon_sym_DOT, - STATE(6133), 1, - sym_path, - STATE(6274), 1, + ACTIONS(9098), 1, + aux_sym_unquoted_token5, + STATE(5877), 1, sym_comment, - STATE(6629), 1, - sym_cell_path, - ACTIONS(1186), 11, - sym_identifier, + ACTIONS(938), 6, anon_sym_GT, - anon_sym_in, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1188), 19, + ACTIONS(940), 25, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -516020,21 +476455,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [190323] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [191461] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1188), 1, - anon_sym_LF, - STATE(6275), 1, + STATE(5878), 1, sym_comment, - ACTIONS(1186), 32, + ACTIONS(1289), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1287), 30, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -516060,21 +476497,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [190367] = 4, + [191504] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1300), 1, - anon_sym_LF, - STATE(6276), 1, + STATE(5879), 1, sym_comment, - ACTIONS(1298), 32, + ACTIONS(1169), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1076), 30, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -516100,33 +476536,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [190411] = 4, - ACTIONS(3), 1, + [191547] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(6277), 1, + STATE(5880), 1, sym_comment, - ACTIONS(1294), 5, + ACTIONS(1223), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1221), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1296), 28, - anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -516140,15 +476575,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [190455] = 4, + [191590] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6278), 1, + STATE(5881), 1, sym_comment, - ACTIONS(1282), 2, + ACTIONS(1167), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1280), 31, + ACTIONS(1165), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -516179,33 +476614,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - aux_sym_unquoted_token6, - [190499] = 8, + [191633] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9554), 1, - anon_sym_DOT, - STATE(4905), 1, - sym_path, - STATE(6166), 1, - sym_cell_path, - STATE(6279), 1, + ACTIONS(10342), 1, + anon_sym_QMARK2, + STATE(5882), 1, sym_comment, - ACTIONS(4666), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1203), 5, + ACTIONS(1024), 11, + sym_identifier, anon_sym_GT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1205), 23, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1026), 20, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -516221,36 +476653,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + anon_sym_DOT, + [191678] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10342), 1, + anon_sym_QMARK2, + STATE(5883), 1, + sym_comment, + ACTIONS(1024), 11, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - [190551] = 4, - ACTIONS(113), 1, + ACTIONS(1026), 20, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DOT, + [191723] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1304), 1, - anon_sym_LF, - STATE(6280), 1, + ACTIONS(10344), 1, + anon_sym_DOT_DOT2, + STATE(5884), 1, sym_comment, - ACTIONS(1302), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(10346), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1089), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1091), 24, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -516264,21 +476735,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [190595] = 4, + [191770] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6281), 1, + ACTIONS(1247), 1, + sym__entry_separator, + STATE(5885), 1, sym_comment, - ACTIONS(1370), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1368), 31, + ACTIONS(1245), 31, anon_sym_SEMI, - anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -516304,20 +476774,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [190639] = 4, + [191813] = 17, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(10362), 1, + anon_sym_bit_DASHand, + ACTIONS(10364), 1, + anon_sym_bit_DASHxor, + ACTIONS(10366), 1, + anon_sym_bit_DASHor, + ACTIONS(10368), 1, + anon_sym_and, + ACTIONS(10370), 1, + anon_sym_xor, + ACTIONS(10372), 1, + anon_sym_or, + STATE(5886), 1, + sym_comment, + ACTIONS(10259), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(10261), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(10350), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10356), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10358), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10360), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10352), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10354), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10348), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [191882] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6282), 1, + STATE(5887), 1, sym_comment, - ACTIONS(1198), 5, + ACTIONS(1159), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1366), 28, + ACTIONS(1161), 27, anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, @@ -516344,19 +476865,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [190683] = 4, + [191925] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6283), 1, + STATE(5888), 1, sym_comment, - ACTIONS(1300), 2, + ACTIONS(1227), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1298), 31, + ACTIONS(1225), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -516384,33 +476904,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [190727] = 4, + [191968] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6284), 1, + STATE(5889), 1, sym_comment, - ACTIONS(1368), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1370), 28, - anon_sym_COMMA, + ACTIONS(1139), 9, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1209), 23, + anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_not, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [192011] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(5890), 1, + sym_comment, + ACTIONS(1072), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(1074), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1076), 28, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -516424,28 +476983,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [190771] = 4, + [192056] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6285), 1, + ACTIONS(10374), 1, + anon_sym_QMARK2, + STATE(5891), 1, sym_comment, - ACTIONS(1368), 5, + ACTIONS(1024), 12, + sym_identifier, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1370), 28, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1026), 19, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -516461,159 +477022,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [190815] = 12, + anon_sym_DOT, + [192101] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10656), 1, - anon_sym_bit_DASHand, - STATE(6286), 1, + STATE(5892), 1, sym_comment, - ACTIONS(1378), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(10586), 2, + ACTIONS(1213), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1211), 30, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10592), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10594), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10596), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10588), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10590), 4, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10584), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1376), 8, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [190875] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10622), 1, - anon_sym_SLASH_SLASH, - STATE(6287), 1, - sym_comment, - ACTIONS(10614), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10616), 2, - anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10620), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10624), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10630), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10618), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(1378), 4, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(10626), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(10628), 4, - anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1376), 7, - sym_cmd_identifier, + 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, - [190937] = 5, + [192144] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10800), 1, - sym_long_flag_identifier, - STATE(6288), 1, + ACTIONS(8314), 1, + aux_sym_unquoted_token5, + STATE(5893), 1, sym_comment, - ACTIONS(5075), 14, + ACTIONS(938), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, anon_sym_DOT2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5079), 17, + ACTIONS(940), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_not, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [190982] = 4, + [192189] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6289), 1, + ACTIONS(10376), 1, + anon_sym_LBRACK2, + STATE(5894), 1, sym_comment, - ACTIONS(1113), 6, + ACTIONS(1143), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1115), 26, + ACTIONS(1145), 25, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, @@ -516639,55 +477142,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT, - [191025] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10706), 1, - aux_sym__immediate_decimal_token2, - STATE(6290), 1, - sym_comment, - ACTIONS(2437), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2439), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [191070] = 4, + [192234] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6291), 1, + ACTIONS(10374), 1, + anon_sym_QMARK2, + STATE(5895), 1, sym_comment, - ACTIONS(1063), 11, + ACTIONS(1024), 12, sym_identifier, anon_sym_GT, + anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, @@ -516697,10 +477162,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1065), 21, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_QMARK2, + ACTIONS(1026), 19, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -516719,71 +477182,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_DOT, - [191113] = 22, - ACTIONS(3), 1, + [192279] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2795), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2797), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2801), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3984), 1, - anon_sym_COLON, - ACTIONS(4611), 1, - aux_sym_unquoted_token1, - ACTIONS(8444), 1, - anon_sym_DOT_DOT, - ACTIONS(8448), 1, - anon_sym_DOT2, - ACTIONS(8452), 1, - sym_val_date, - ACTIONS(10802), 1, - anon_sym_DOLLAR, - STATE(1690), 1, - sym__var, - STATE(2500), 1, - sym_val_variable, - STATE(2501), 1, - sym_unquoted, - STATE(6292), 1, + STATE(5896), 1, sym_comment, - STATE(8428), 1, - sym__val_number_decimal, - STATE(10559), 1, - sym__val_range, - STATE(10861), 1, - sym_val_bool, - STATE(11114), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(2793), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(8446), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(8450), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(3910), 9, - anon_sym_null, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [191192] = 5, + ACTIONS(1049), 2, + anon_sym_DOT, + sym__entry_separator, + ACTIONS(1047), 30, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [192322] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(5897), 1, + sym_comment, + ACTIONS(1173), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1171), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [192365] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10804), 1, - aux_sym__immediate_decimal_token2, - STATE(6293), 1, + STATE(5898), 1, sym_comment, - ACTIONS(2547), 8, + ACTIONS(920), 9, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -516792,11 +477275,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2549), 23, + ACTIONS(922), 23, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_not, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -516816,21 +477299,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [191237] = 5, + [192408] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1261), 1, - sym__entry_separator, - ACTIONS(10806), 1, - anon_sym_LBRACK2, - STATE(6294), 1, + STATE(5899), 1, sym_comment, - ACTIONS(1259), 30, - anon_sym_RBRACK, + ACTIONS(1255), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1253), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -516856,15 +477338,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [191282] = 4, + [192451] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6295), 1, + STATE(5900), 1, sym_comment, - ACTIONS(1275), 2, + ACTIONS(1251), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1273), 30, + ACTIONS(1249), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -516895,27 +477377,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [191325] = 4, + [192494] = 7, ACTIONS(113), 1, anon_sym_POUND, - STATE(6296), 1, + STATE(5901), 1, sym_comment, - ACTIONS(1370), 2, + ACTIONS(1181), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1368), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(10332), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(10338), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10336), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, + ACTIONS(1179), 22, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_in, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -516934,21 +477419,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [191368] = 4, + [192543] = 22, ACTIONS(3), 1, anon_sym_POUND, - STATE(6297), 1, + ACTIONS(3116), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3118), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3122), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3655), 1, + anon_sym_COLON, + ACTIONS(4672), 1, + aux_sym_unquoted_token1, + ACTIONS(7901), 1, + anon_sym_DOT_DOT, + ACTIONS(7905), 1, + anon_sym_DOT2, + ACTIONS(7909), 1, + sym_val_date, + ACTIONS(10378), 1, + anon_sym_DOLLAR, + STATE(1322), 1, + sym__var, + STATE(2130), 1, + sym_val_variable, + STATE(2156), 1, + sym_unquoted, + STATE(5902), 1, + sym_comment, + STATE(8009), 1, + sym__val_number_decimal, + STATE(10050), 1, + sym__val_range, + STATE(10641), 1, + sym_val_bool, + STATE(10833), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3114), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(7903), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(7907), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + ACTIONS(3685), 9, + anon_sym_null, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + [192622] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10380), 1, + anon_sym_DOT_DOT2, + STATE(5903), 1, sym_comment, - ACTIONS(1117), 6, + ACTIONS(10382), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1089), 5, anon_sym_GT, - anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1119), 26, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(1091), 24, + anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, anon_sym_STAR_STAR, @@ -516972,64 +477517,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT, - [191411] = 12, + [192669] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10822), 1, + ACTIONS(1145), 1, + sym__entry_separator, + ACTIONS(10384), 1, + anon_sym_LBRACK2, + STATE(5904), 1, + sym_comment, + ACTIONS(1143), 30, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - STATE(6298), 1, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [192714] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10386), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(10388), 1, + aux_sym_unquoted_token2, + STATE(5905), 1, sym_comment, - ACTIONS(1378), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(10810), 2, + ACTIONS(920), 11, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(922), 19, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10816), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10818), 2, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10820), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10812), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10814), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10808), 6, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1376), 7, - anon_sym_SEMI, - anon_sym_PIPE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [191470] = 5, + [192761] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1249), 1, - sym__entry_separator, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - STATE(6299), 1, + STATE(5906), 1, sym_comment, - ACTIONS(1247), 30, + ACTIONS(1217), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1215), 30, anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, @@ -517060,17 +477637,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [191515] = 4, + [192804] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(6300), 1, + STATE(5907), 1, sym_comment, - ACTIONS(1370), 2, + ACTIONS(5815), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1368), 30, + ACTIONS(5818), 2, anon_sym_SEMI, anon_sym_PIPE, + ACTIONS(1237), 28, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -517099,20 +477677,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [191558] = 4, + [192849] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6301), 1, + STATE(5908), 1, sym_comment, - ACTIONS(1111), 2, - anon_sym_DOT, - sym__entry_separator, - ACTIONS(1109), 30, - anon_sym_RBRACK, + ACTIONS(1285), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1283), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -517138,67 +477716,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [191601] = 17, + [192892] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10838), 1, - anon_sym_bit_DASHand, - ACTIONS(10840), 1, - anon_sym_bit_DASHxor, - ACTIONS(10842), 1, - anon_sym_bit_DASHor, - ACTIONS(10844), 1, - anon_sym_and, - ACTIONS(10846), 1, - anon_sym_xor, - ACTIONS(10848), 1, - anon_sym_or, - STATE(6302), 1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + ACTIONS(1137), 1, + anon_sym_LBRACE, + STATE(5909), 1, sym_comment, - ACTIONS(10764), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(10766), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(10826), 2, + ACTIONS(1135), 30, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10832), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10834), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10836), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10828), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10830), 4, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10824), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [191670] = 4, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [192937] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(6303), 1, - sym_comment, - ACTIONS(938), 2, - anon_sym_LPAREN2, + ACTIONS(1131), 1, sym__entry_separator, - ACTIONS(936), 30, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + STATE(5910), 1, + sym_comment, + ACTIONS(1129), 30, anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, @@ -517229,37 +477796,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [191713] = 6, + [192982] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10850), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10852), 1, - aux_sym_unquoted_token2, - STATE(6304), 1, + ACTIONS(10390), 1, + anon_sym_LBRACK2, + STATE(5911), 1, sym_comment, - ACTIONS(936), 11, - sym_identifier, + ACTIONS(1143), 9, + anon_sym_LBRACK, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1145), 22, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [193027] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(5912), 1, + sym_comment, + ACTIONS(922), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(920), 30, + anon_sym_RBRACK, anon_sym_GT, + anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(938), 19, - anon_sym_DOLLAR, - anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -517270,63 +477872,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [191760] = 13, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(10822), 1, - anon_sym_bit_DASHand, - ACTIONS(10854), 1, - anon_sym_bit_DASHxor, - STATE(6305), 1, - sym_comment, - ACTIONS(1378), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(10810), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10816), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10818), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10820), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10812), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10814), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1376), 6, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(10808), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [191821] = 4, + [193070] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6306), 1, + STATE(5913), 1, sym_comment, - ACTIONS(1370), 2, + ACTIONS(1173), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1368), 30, + ACTIONS(1171), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -517357,64 +477914,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [191864] = 14, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(10822), 1, - anon_sym_bit_DASHand, - ACTIONS(10854), 1, - anon_sym_bit_DASHxor, - ACTIONS(10856), 1, - anon_sym_bit_DASHor, - STATE(6307), 1, - sym_comment, - ACTIONS(1378), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(10810), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10816), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10818), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10820), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10812), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10814), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1376), 5, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(10808), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [191927] = 4, + [193113] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6308), 1, + STATE(5914), 1, sym_comment, - ACTIONS(1370), 2, + ACTIONS(1281), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1368), 30, + ACTIONS(1279), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -517445,65 +477953,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [191970] = 15, - ACTIONS(113), 1, + [193156] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10822), 1, - anon_sym_bit_DASHand, - ACTIONS(10854), 1, - anon_sym_bit_DASHxor, - ACTIONS(10856), 1, - anon_sym_bit_DASHor, - ACTIONS(10858), 1, - anon_sym_and, - STATE(6309), 1, + ACTIONS(10392), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(10394), 1, + aux_sym_unquoted_token2, + STATE(5915), 1, sym_comment, - ACTIONS(1378), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(10810), 2, + ACTIONS(920), 6, + anon_sym_GT, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(10816), 2, + anon_sym_LT2, + ACTIONS(922), 24, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10818), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10820), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1376), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_xor, - anon_sym_or, - ACTIONS(10812), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10814), 4, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10808), 6, - anon_sym_GT, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [192035] = 4, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [193203] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6310), 1, + STATE(5916), 1, sym_comment, - ACTIONS(1188), 2, + ACTIONS(1263), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1186), 30, + ACTIONS(1261), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -517534,15 +478033,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [192078] = 4, + [193246] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6311), 1, + STATE(5917), 1, sym_comment, - ACTIONS(1344), 2, + ACTIONS(1259), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1342), 30, + ACTIONS(1257), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -517573,32 +478072,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [192121] = 4, - ACTIONS(113), 1, + [193289] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6312), 1, + STATE(5918), 1, sym_comment, - ACTIONS(1370), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1368), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1135), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1137), 27, + anon_sym_COMMA, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -517612,83 +478111,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [192164] = 16, + [193332] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5919), 1, + sym_comment, + ACTIONS(1047), 9, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1049), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [193375] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5920), 1, + sym_comment, + ACTIONS(1211), 9, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1213), 23, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_not, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [193418] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10822), 1, - anon_sym_bit_DASHand, - ACTIONS(10854), 1, - anon_sym_bit_DASHxor, - ACTIONS(10856), 1, - anon_sym_bit_DASHor, - ACTIONS(10858), 1, - anon_sym_and, - ACTIONS(10860), 1, - anon_sym_xor, - STATE(6313), 1, + STATE(5921), 1, sym_comment, - ACTIONS(1378), 2, + ACTIONS(1181), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(10810), 2, + ACTIONS(10332), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10816), 2, + ACTIONS(10338), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10818), 2, + ACTIONS(10340), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10820), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1376), 3, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_or, - ACTIONS(10812), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10814), 4, + ACTIONS(10336), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10808), 6, + ACTIONS(10330), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [192231] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(6314), 1, - sym_comment, - ACTIONS(1370), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1368), 30, + ACTIONS(1179), 14, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [193471] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5922), 1, + sym_comment, + ACTIONS(1047), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1049), 26, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -517702,86 +478271,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [192274] = 17, + anon_sym_DOT, + [193514] = 8, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10822), 1, - anon_sym_bit_DASHand, - ACTIONS(10854), 1, - anon_sym_bit_DASHxor, - ACTIONS(10856), 1, - anon_sym_bit_DASHor, - ACTIONS(10858), 1, - anon_sym_and, - ACTIONS(10860), 1, - anon_sym_xor, - ACTIONS(10862), 1, - anon_sym_or, - STATE(6315), 1, + STATE(5923), 1, sym_comment, - ACTIONS(1376), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(1378), 2, + ACTIONS(1181), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(10810), 2, + ACTIONS(10332), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10816), 2, + ACTIONS(10338), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10818), 2, + ACTIONS(10340), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10820), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10812), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10814), 4, + ACTIONS(10336), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10808), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [192343] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10864), 1, - anon_sym_DOT_DOT2, - STATE(6316), 1, - sym_comment, - ACTIONS(10866), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1158), 5, + ACTIONS(1179), 20, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1160), 24, - anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -517795,15 +478315,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [192390] = 4, + [193565] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6317), 1, + STATE(5924), 1, sym_comment, - ACTIONS(1370), 2, + ACTIONS(1173), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1368), 30, + ACTIONS(1171), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -517834,18 +478354,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [192433] = 4, + [193608] = 17, ACTIONS(113), 1, anon_sym_POUND, - STATE(6318), 1, + ACTIONS(9851), 1, + anon_sym_bit_DASHand, + ACTIONS(9853), 1, + anon_sym_bit_DASHxor, + ACTIONS(9855), 1, + anon_sym_bit_DASHor, + ACTIONS(9857), 1, + anon_sym_and, + ACTIONS(9859), 1, + anon_sym_xor, + ACTIONS(9861), 1, + anon_sym_or, + STATE(5925), 1, sym_comment, - ACTIONS(1322), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1320), 30, + ACTIONS(9680), 2, anon_sym_SEMI, anon_sym_PIPE, + ACTIONS(9682), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(9839), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9845), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9847), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9849), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9841), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9843), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(9837), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [193677] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1161), 1, + anon_sym_LBRACE, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + STATE(5926), 1, + sym_comment, + ACTIONS(1159), 30, + anon_sym_DOLLAR, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -517873,32 +478446,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [192476] = 4, - ACTIONS(113), 1, + [193722] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6319), 1, + ACTIONS(10396), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(10398), 1, + aux_sym_unquoted_token2, + STATE(5927), 1, sym_comment, - ACTIONS(1249), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1247), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(920), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(922), 25, + anon_sym_COMMA, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -517912,18 +478487,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [192519] = 4, + [193769] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(6320), 1, + ACTIONS(1091), 1, + anon_sym_LBRACE, + ACTIONS(1149), 1, + aux_sym_unquoted_token6, + STATE(5928), 1, sym_comment, - ACTIONS(1300), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1298), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1089), 30, + anon_sym_DOLLAR, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -517951,33 +478527,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [192562] = 5, - ACTIONS(3), 1, + [193814] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10868), 1, - aux_sym__immediate_decimal_token1, - STATE(6321), 1, + ACTIONS(10400), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(5929), 1, sym_comment, - ACTIONS(5083), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5085), 23, + ACTIONS(1139), 31, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_not, 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, + anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -517985,60 +478557,71 @@ 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, - [192607] = 4, + [193857] = 12, ACTIONS(113), 1, anon_sym_POUND, - STATE(6322), 1, + ACTIONS(10404), 1, + anon_sym_bit_DASHand, + STATE(5930), 1, sym_comment, - ACTIONS(1420), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1418), 30, - anon_sym_RBRACK, - anon_sym_GT, + ACTIONS(1181), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(10332), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(10338), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10340), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10402), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10334), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10336), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(10330), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, + ACTIONS(1179), 7, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [192650] = 4, + [193916] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6323), 1, + STATE(5931), 1, sym_comment, - ACTIONS(1360), 2, + ACTIONS(1091), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1358), 30, + ACTIONS(1089), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -518069,32 +478652,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [192693] = 4, - ACTIONS(113), 1, + [193959] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6324), 1, + ACTIONS(10406), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(10408), 1, + aux_sym_unquoted_token2, + STATE(5932), 1, sym_comment, - ACTIONS(1416), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1414), 30, - anon_sym_RBRACK, + ACTIONS(920), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(922), 25, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -518108,14 +478693,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [192736] = 5, + [194006] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10870), 1, - anon_sym_EQ, - STATE(6325), 1, + ACTIONS(10322), 1, + aux_sym__immediate_decimal_token2, + STATE(5933), 1, sym_comment, - ACTIONS(5011), 8, + ACTIONS(2356), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -518124,7 +478709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5015), 23, + ACTIONS(2358), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -518148,21 +478733,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [192781] = 5, + [194051] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1160), 1, - sym__entry_separator, - ACTIONS(1284), 1, - aux_sym_unquoted_token6, - STATE(6326), 1, + STATE(5934), 1, sym_comment, - ACTIONS(1158), 30, - anon_sym_RBRACK, + ACTIONS(1173), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1171), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -518188,81 +478772,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [192826] = 17, + [194094] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10238), 1, - anon_sym_bit_DASHand, - ACTIONS(10240), 1, - anon_sym_bit_DASHxor, - ACTIONS(10242), 1, - anon_sym_bit_DASHor, - ACTIONS(10244), 1, - anon_sym_and, - ACTIONS(10246), 1, - anon_sym_xor, - ACTIONS(10248), 1, - anon_sym_or, - STATE(6327), 1, + STATE(5935), 1, sym_comment, - ACTIONS(9943), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(9945), 2, + ACTIONS(1267), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(10226), 2, + ACTIONS(1265), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10232), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10234), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10236), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10228), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10230), 4, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10224), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [192895] = 4, - ACTIONS(113), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [194137] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10872), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(6328), 1, + STATE(5936), 1, sym_comment, - ACTIONS(1243), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(1037), 9, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1039), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_not, 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, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -518270,104 +478844,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, - [192938] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1196), 1, - anon_sym_EQ_GT, - ACTIONS(10874), 1, - anon_sym_DOT_DOT2, - STATE(6329), 1, - sym_comment, - ACTIONS(10876), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1198), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1366), 23, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [192987] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10878), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10880), 1, - aux_sym_unquoted_token2, - STATE(6330), 1, - sym_comment, - ACTIONS(936), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(938), 25, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [193034] = 4, + [194180] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6331), 1, + STATE(5937), 1, sym_comment, - ACTIONS(1418), 9, + ACTIONS(1215), 9, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, @@ -518377,7 +478865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1420), 23, + ACTIONS(1217), 23, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_not, @@ -518401,15 +478889,16 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [193077] = 4, + [194223] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(6332), 1, - sym_comment, - ACTIONS(1290), 2, - anon_sym_LPAREN2, + ACTIONS(940), 1, sym__entry_separator, - ACTIONS(1243), 30, + ACTIONS(9162), 1, + aux_sym_unquoted_token5, + STATE(5938), 1, + sym_comment, + ACTIONS(938), 30, anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, @@ -518440,15 +478929,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [193120] = 4, + [194268] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6333), 1, + STATE(5939), 1, sym_comment, - ACTIONS(1352), 2, + ACTIONS(1243), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1350), 30, + ACTIONS(1241), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -518479,55 +478968,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [193163] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10882), 1, - anon_sym_LBRACK2, - STATE(6334), 1, - sym_comment, - ACTIONS(1259), 9, - anon_sym_LBRACK, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1261), 22, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [193208] = 4, + [194311] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6335), 1, + STATE(5940), 1, sym_comment, - ACTIONS(1288), 2, + ACTIONS(1267), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1286), 30, + ACTIONS(1265), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -518558,15 +479007,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [193251] = 4, + [194354] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6336), 1, + STATE(5941), 1, sym_comment, - ACTIONS(1310), 2, + ACTIONS(1131), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1308), 30, + ACTIONS(1129), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -518597,21 +479046,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [193294] = 5, + [194397] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1255), 1, - sym__entry_separator, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - STATE(6337), 1, + STATE(5942), 1, sym_comment, - ACTIONS(1253), 30, - anon_sym_RBRACK, + ACTIONS(1053), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1051), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -518637,32 +479085,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [193339] = 4, - ACTIONS(113), 1, + [194440] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6338), 1, + STATE(5943), 1, sym_comment, - ACTIONS(1314), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1312), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1037), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1039), 26, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -518676,21 +479123,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [193382] = 5, + anon_sym_DOT, + [194483] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5944), 1, + sym_comment, + ACTIONS(1041), 9, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1043), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [194526] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - ACTIONS(1275), 1, - sym__entry_separator, - STATE(6339), 1, + STATE(5945), 1, sym_comment, - ACTIONS(1273), 30, - anon_sym_RBRACK, + ACTIONS(1247), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1245), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -518716,15 +479202,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [193427] = 4, + [194569] = 16, ACTIONS(113), 1, anon_sym_POUND, - STATE(6340), 1, + ACTIONS(10404), 1, + anon_sym_bit_DASHand, + ACTIONS(10410), 1, + anon_sym_bit_DASHxor, + ACTIONS(10412), 1, + anon_sym_bit_DASHor, + ACTIONS(10414), 1, + anon_sym_and, + ACTIONS(10416), 1, + anon_sym_xor, + STATE(5946), 1, + sym_comment, + ACTIONS(1181), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(10332), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10338), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10340), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10402), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1179), 3, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_or, + ACTIONS(10334), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10336), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10330), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [194636] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(5947), 1, sym_comment, - ACTIONS(1374), 2, + ACTIONS(1239), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1372), 30, + ACTIONS(1237), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -518755,35 +479292,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [193470] = 5, - ACTIONS(3), 1, + [194679] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10884), 1, - anon_sym_QMARK2, - STATE(6341), 1, + STATE(5948), 1, sym_comment, - ACTIONS(1070), 11, - sym_identifier, + ACTIONS(1173), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1171), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1072), 20, - anon_sym_DOLLAR, - anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -518794,20 +479328,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT, - [193515] = 4, - ACTIONS(113), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [194722] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1282), 1, - anon_sym_LBRACE, - STATE(6342), 1, + ACTIONS(10418), 1, + anon_sym_EQ, + STATE(5949), 1, sym_comment, - ACTIONS(1280), 31, + ACTIONS(4721), 8, anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4725), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [194767] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(5950), 1, + sym_comment, + ACTIONS(1209), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1139), 30, + anon_sym_RBRACK, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -518833,17 +479410,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - aux_sym_unquoted_token6, - [193558] = 5, + [194810] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1160), 1, + ACTIONS(1157), 1, anon_sym_LBRACE, - ACTIONS(1284), 1, - aux_sym_unquoted_token6, - STATE(6343), 1, + STATE(5951), 1, sym_comment, - ACTIONS(1158), 30, + ACTIONS(1155), 31, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH_DASH, @@ -518874,35 +479448,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [193603] = 5, - ACTIONS(3), 1, + aux_sym_unquoted_token6, + [194853] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10886), 1, - anon_sym_QMARK2, - STATE(6344), 1, + STATE(5952), 1, sym_comment, - ACTIONS(1070), 12, - sym_identifier, + ACTIONS(1235), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1233), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1072), 19, - anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -518913,36 +479485,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT, - [193648] = 5, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [194896] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10886), 1, - anon_sym_QMARK2, - STATE(6345), 1, + STATE(5953), 1, sym_comment, - ACTIONS(1070), 12, - sym_identifier, + ACTIONS(1161), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1159), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1072), 19, - anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -518953,56 +479524,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT, - [193693] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8663), 1, - aux_sym_unquoted_token5, - STATE(6346), 1, - sym_comment, - ACTIONS(959), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(961), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [193738] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [194939] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6347), 1, + STATE(5954), 1, sym_comment, - ACTIONS(1356), 2, + ACTIONS(1273), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1354), 30, + ACTIONS(1271), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -519033,35 +479566,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [193781] = 5, - ACTIONS(3), 1, + [194982] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10884), 1, - anon_sym_QMARK2, - STATE(6348), 1, + STATE(5955), 1, sym_comment, - ACTIONS(1070), 11, - sym_identifier, + ACTIONS(1173), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1171), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1072), 20, - anon_sym_DOLLAR, - anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -519072,86 +479602,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT, - [193826] = 17, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(10902), 1, - anon_sym_bit_DASHand, - ACTIONS(10904), 1, - anon_sym_bit_DASHxor, - ACTIONS(10906), 1, - anon_sym_bit_DASHor, - ACTIONS(10908), 1, anon_sym_and, - ACTIONS(10910), 1, anon_sym_xor, - ACTIONS(10912), 1, anon_sym_or, - STATE(6349), 1, + [195025] = 11, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(5956), 1, sym_comment, - ACTIONS(10726), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(10728), 2, + ACTIONS(1181), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(10890), 2, + ACTIONS(10332), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10896), 2, + ACTIONS(10338), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10898), 2, + ACTIONS(10340), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10900), 2, + ACTIONS(10402), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10892), 4, + ACTIONS(10334), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(10894), 4, + ACTIONS(10336), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10888), 6, + ACTIONS(10330), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [193895] = 5, - ACTIONS(113), 1, + ACTIONS(1179), 8, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [195082] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1249), 1, - anon_sym_LBRACE, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - STATE(6350), 1, + ACTIONS(1074), 1, + anon_sym_EQ_GT, + ACTIONS(10344), 1, + anon_sym_DOT_DOT2, + STATE(5957), 1, sym_comment, - ACTIONS(1247), 30, - anon_sym_DOLLAR, + ACTIONS(10346), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1076), 5, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1169), 23, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -519165,34 +479693,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [193940] = 4, - ACTIONS(3), 1, + [195131] = 5, + ACTIONS(113), 1, anon_sym_POUND, - STATE(6351), 1, + ACTIONS(1091), 1, + sym__entry_separator, + ACTIONS(1149), 1, + aux_sym_unquoted_token6, + STATE(5958), 1, sym_comment, - ACTIONS(1059), 11, - sym_identifier, + ACTIONS(1089), 30, + anon_sym_RBRACK, anon_sym_GT, + anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1061), 21, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -519203,73 +479730,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT, - [193983] = 11, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [195176] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6352), 1, + ACTIONS(10420), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(5959), 1, sym_comment, - ACTIONS(1378), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(10810), 2, + ACTIONS(1139), 31, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10816), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10818), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10820), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10812), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10814), 4, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10808), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1376), 8, - anon_sym_SEMI, - anon_sym_PIPE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [194040] = 6, + sym__entry_separator, + [195219] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10914), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10916), 1, - aux_sym_unquoted_token2, - STATE(6353), 1, + ACTIONS(1074), 1, + anon_sym_LBRACE, + ACTIONS(10380), 1, + anon_sym_DOT_DOT2, + STATE(5960), 1, sym_comment, - ACTIONS(936), 5, + ACTIONS(10382), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1076), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(938), 25, - anon_sym_COMMA, + ACTIONS(1169), 23, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -519291,33 +479814,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [194087] = 5, - ACTIONS(113), 1, + [195268] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6354), 1, + STATE(5961), 1, sym_comment, - ACTIONS(6329), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6332), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(1298), 28, + ACTIONS(1129), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1131), 27, + anon_sym_COMMA, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -519331,60 +479853,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [194132] = 4, - ACTIONS(3), 1, + [195311] = 14, + ACTIONS(113), 1, anon_sym_POUND, - STATE(6355), 1, + ACTIONS(10404), 1, + anon_sym_bit_DASHand, + ACTIONS(10410), 1, + anon_sym_bit_DASHxor, + ACTIONS(10412), 1, + anon_sym_bit_DASHor, + STATE(5962), 1, sym_comment, - ACTIONS(1109), 9, - anon_sym_DOLLAR, + ACTIONS(1181), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(10332), 2, anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1111), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [194175] = 5, + anon_sym_PLUS, + ACTIONS(10338), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10340), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10402), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10334), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10336), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1179), 5, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(10330), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [195374] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(961), 1, - sym__entry_separator, - ACTIONS(9636), 1, - aux_sym_unquoted_token5, - STATE(6356), 1, + STATE(5963), 1, sym_comment, - ACTIONS(959), 30, - anon_sym_RBRACK, + ACTIONS(1173), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1171), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -519410,15 +479941,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [194220] = 4, + [195417] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6357), 1, + STATE(5964), 1, sym_comment, - ACTIONS(1192), 2, + ACTIONS(1157), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1190), 30, + ACTIONS(1155), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -519449,71 +479980,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [194263] = 17, + [195460] = 17, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10278), 1, + ACTIONS(10404), 1, anon_sym_bit_DASHand, - ACTIONS(10280), 1, + ACTIONS(10410), 1, anon_sym_bit_DASHxor, - ACTIONS(10282), 1, + ACTIONS(10412), 1, anon_sym_bit_DASHor, - ACTIONS(10284), 1, + ACTIONS(10414), 1, anon_sym_and, - ACTIONS(10286), 1, + ACTIONS(10416), 1, anon_sym_xor, - ACTIONS(10288), 1, + ACTIONS(10422), 1, anon_sym_or, - STATE(6358), 1, + STATE(5965), 1, sym_comment, - ACTIONS(9977), 2, + ACTIONS(1179), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(9979), 2, + ACTIONS(1181), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(10266), 2, + ACTIONS(10332), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10272), 2, + ACTIONS(10338), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10274), 2, + ACTIONS(10340), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10276), 2, + ACTIONS(10402), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10268), 4, + ACTIONS(10334), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(10270), 4, + ACTIONS(10336), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10264), 6, + ACTIONS(10330), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [194332] = 4, + [195529] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6359), 1, + STATE(5966), 1, sym_comment, - ACTIONS(1109), 6, + ACTIONS(1041), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1111), 26, + ACTIONS(1043), 26, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, @@ -519540,32 +480071,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT, - [194375] = 4, + [195572] = 17, ACTIONS(113), 1, anon_sym_POUND, - STATE(6360), 1, + ACTIONS(9804), 1, + anon_sym_bit_DASHand, + ACTIONS(9806), 1, + anon_sym_bit_DASHxor, + ACTIONS(9808), 1, + anon_sym_bit_DASHor, + ACTIONS(9810), 1, + anon_sym_and, + ACTIONS(9812), 1, + anon_sym_xor, + ACTIONS(9814), 1, + anon_sym_or, + STATE(5967), 1, sym_comment, - ACTIONS(1318), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1316), 30, + ACTIONS(9603), 2, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_GT, + ACTIONS(9605), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(9792), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(9798), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(9800), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9802), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9794), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9796), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(9790), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [195641] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8820), 1, + aux_sym_unquoted_token5, + STATE(5968), 1, + sym_comment, + ACTIONS(938), 6, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(940), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -519579,20 +480163,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [194418] = 4, + [195686] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10918), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(6361), 1, + STATE(5969), 1, sym_comment, - ACTIONS(1243), 31, - anon_sym_DOLLAR, + ACTIONS(1173), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1171), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -519618,15 +480202,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [194461] = 4, + [195729] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6362), 1, + STATE(5970), 1, sym_comment, - ACTIONS(1364), 2, + ACTIONS(1137), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1362), 30, + ACTIONS(1135), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -519657,32 +480241,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [194504] = 4, - ACTIONS(113), 1, + [195772] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6363), 1, + STATE(5971), 1, sym_comment, - ACTIONS(1296), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1294), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1033), 11, + sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1035), 21, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DOT, + [195815] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10424), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(10426), 1, + aux_sym_unquoted_token2, + STATE(5972), 1, + sym_comment, + ACTIONS(920), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(922), 18, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [195862] = 22, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3116), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3118), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3122), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3707), 1, + anon_sym_COLON, + ACTIONS(4672), 1, + aux_sym_unquoted_token1, + ACTIONS(7901), 1, + anon_sym_DOT_DOT, + ACTIONS(7905), 1, + anon_sym_DOT2, + ACTIONS(7909), 1, + sym_val_date, + ACTIONS(10378), 1, + anon_sym_DOLLAR, + STATE(1322), 1, + sym__var, + STATE(2130), 1, + sym_val_variable, + STATE(2156), 1, + sym_unquoted, + STATE(5973), 1, + sym_comment, + STATE(8009), 1, + sym__val_number_decimal, + STATE(10050), 1, + sym__val_range, + STATE(10641), 1, + sym_val_bool, + STATE(10833), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3114), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(7903), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(7907), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + ACTIONS(3685), 9, + anon_sym_null, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + [195941] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5974), 1, + sym_comment, + ACTIONS(1020), 11, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1022), 21, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -519693,25 +480416,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + anon_sym_DOT, + [195984] = 15, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(10404), 1, + anon_sym_bit_DASHand, + ACTIONS(10410), 1, + anon_sym_bit_DASHxor, + ACTIONS(10412), 1, + anon_sym_bit_DASHor, + ACTIONS(10414), 1, anon_sym_and, + STATE(5975), 1, + sym_comment, + ACTIONS(1181), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(10332), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10338), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10340), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10402), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1179), 4, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_xor, anon_sym_or, - [194547] = 4, + ACTIONS(10334), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10336), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10330), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [196049] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6364), 1, + ACTIONS(10428), 1, + aux_sym__immediate_decimal_token1, + STATE(5976), 1, sym_comment, - ACTIONS(1113), 9, + ACTIONS(4771), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1115), 23, + ACTIONS(4773), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -519735,52 +480507,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [194590] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(6365), 1, - sym_comment, - ACTIONS(1296), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1294), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [194633] = 4, + [196094] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6366), 1, + ACTIONS(10430), 1, + aux_sym__immediate_decimal_token2, + STATE(5977), 1, sym_comment, - ACTIONS(1414), 9, - anon_sym_LPAREN, + ACTIONS(2362), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -519789,11 +480523,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1416), 23, + ACTIONS(2364), 23, anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_not, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -519813,26 +480547,80 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [194676] = 4, + [196139] = 17, ACTIONS(113), 1, anon_sym_POUND, - STATE(6367), 1, + ACTIONS(10446), 1, + anon_sym_bit_DASHand, + ACTIONS(10448), 1, + anon_sym_bit_DASHxor, + ACTIONS(10450), 1, + anon_sym_bit_DASHor, + ACTIONS(10452), 1, + anon_sym_and, + ACTIONS(10454), 1, + anon_sym_xor, + ACTIONS(10456), 1, + anon_sym_or, + STATE(5978), 1, sym_comment, - ACTIONS(1304), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1302), 30, + ACTIONS(10205), 2, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_GT, + ACTIONS(10207), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(10434), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10440), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10442), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10444), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10436), 4, anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10438), 4, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10432), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [196208] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(5979), 1, + sym_comment, + ACTIONS(1181), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(10338), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10336), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(1179), 24, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -519852,22 +480640,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [194719] = 4, + [196255] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6368), 1, + ACTIONS(10116), 1, + aux_sym__immediate_decimal_token2, + STATE(5980), 1, sym_comment, - ACTIONS(1117), 9, + ACTIONS(2229), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1119), 23, + ACTIONS(2231), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -519891,61 +480680,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [194762] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10920), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10922), 1, - aux_sym_unquoted_token2, - STATE(6369), 1, - sym_comment, - ACTIONS(936), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(938), 18, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [194809] = 4, + [196300] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1318), 1, - sym__entry_separator, - STATE(6370), 1, + STATE(5981), 1, sym_comment, - ACTIONS(1316), 31, + ACTIONS(1173), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1171), 30, anon_sym_SEMI, - anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -519971,54 +480719,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [194852] = 4, + [196343] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10924), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(6371), 1, + ACTIONS(10404), 1, + anon_sym_bit_DASHand, + ACTIONS(10410), 1, + anon_sym_bit_DASHxor, + STATE(5982), 1, sym_comment, - ACTIONS(1243), 31, - anon_sym_RBRACK, - anon_sym_GT, + ACTIONS(1181), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(10332), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(10338), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, + ACTIONS(10340), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(10402), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10334), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, + ACTIONS(10336), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1179), 6, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - sym__entry_separator, - [194895] = 4, + ACTIONS(10330), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [196404] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6372), 1, + STATE(5983), 1, sym_comment, - ACTIONS(1282), 2, + ACTIONS(1177), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1280), 30, + ACTIONS(1175), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -520049,32 +480806,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [194938] = 4, - ACTIONS(3), 1, + [196447] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(6373), 1, + ACTIONS(1157), 1, + sym__entry_separator, + STATE(5984), 1, sym_comment, - ACTIONS(1247), 5, + ACTIONS(1155), 31, + anon_sym_RBRACK, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1249), 27, - anon_sym_COMMA, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -520088,15 +480844,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [194981] = 4, + aux_sym_unquoted_token6, + [196490] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6374), 1, + STATE(5985), 1, sym_comment, - ACTIONS(1160), 2, + ACTIONS(1173), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1158), 30, + ACTIONS(1171), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -520127,74 +480884,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [195024] = 22, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2795), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2797), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2801), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3880), 1, - anon_sym_COLON, - ACTIONS(4611), 1, - aux_sym_unquoted_token1, - ACTIONS(8444), 1, - anon_sym_DOT_DOT, - ACTIONS(8448), 1, - anon_sym_DOT2, - ACTIONS(8452), 1, - sym_val_date, - ACTIONS(10802), 1, - anon_sym_DOLLAR, - STATE(1690), 1, - sym__var, - STATE(2500), 1, - sym_val_variable, - STATE(2501), 1, - sym_unquoted, - STATE(6375), 1, - sym_comment, - STATE(8428), 1, - sym__val_number_decimal, - STATE(10559), 1, - sym__val_range, - STATE(10861), 1, - sym_val_bool, - STATE(11114), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(2793), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(8446), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(8450), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(3910), 9, - anon_sym_null, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [195103] = 4, + [196533] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6376), 1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + STATE(5986), 1, sym_comment, - ACTIONS(1334), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1332), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1135), 30, + sym_identifier, + anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -520223,20 +480922,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [195146] = 4, + [196575] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6377), 1, + ACTIONS(1251), 1, + sym__entry_separator, + STATE(5987), 1, sym_comment, - ACTIONS(1338), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1336), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1249), 30, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -520262,14 +480960,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [195189] = 4, + [196617] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1282), 1, + ACTIONS(1285), 1, sym__entry_separator, - STATE(6378), 1, + STATE(5988), 1, sym_comment, - ACTIONS(1280), 31, + ACTIONS(1283), 30, anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, @@ -520300,20 +480998,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - aux_sym_unquoted_token6, - [195232] = 5, + [196659] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5989), 1, + sym_comment, + ACTIONS(920), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(922), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [196701] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6379), 1, + ACTIONS(9331), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(5990), 1, sym_comment, - ACTIONS(1194), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(1196), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1198), 28, + ACTIONS(1139), 30, + sym_identifier, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -520341,23 +481074,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [195277] = 6, + [196743] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10926), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10928), 1, - aux_sym_unquoted_token2, - STATE(6380), 1, + STATE(5991), 1, sym_comment, - ACTIONS(936), 6, + ACTIONS(1279), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(938), 24, + ACTIONS(1281), 25, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -520382,33 +481112,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [195324] = 5, + [196785] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9550), 1, - aux_sym_unquoted_token5, - STATE(6381), 1, + ACTIONS(10458), 1, + anon_sym_in, + ACTIONS(10461), 1, + anon_sym_DOT_DOT2, + STATE(5992), 1, sym_comment, - ACTIONS(959), 6, + ACTIONS(10463), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1076), 5, anon_sym_GT, - anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(961), 25, + ACTIONS(1169), 22, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [196833] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5993), 1, + sym_comment, + ACTIONS(1033), 8, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1035), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [196875] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1281), 1, + sym__entry_separator, + STATE(5994), 1, + sym_comment, + ACTIONS(1279), 30, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -520422,20 +481229,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [195369] = 4, + [196917] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5995), 1, + sym_comment, + ACTIONS(1139), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1209), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [196959] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6382), 1, + ACTIONS(1167), 1, + sym__entry_separator, + STATE(5996), 1, sym_comment, - ACTIONS(1366), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1198), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1165), 30, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -520461,39 +481305,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [195412] = 9, - ACTIONS(113), 1, + [197001] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6383), 1, + STATE(5997), 1, sym_comment, - ACTIONS(1378), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(10810), 2, + ACTIONS(1020), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1022), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [197043] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1078), 1, anon_sym_DASH, + STATE(5998), 1, + sym_comment, + ACTIONS(1074), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(1076), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(10816), 2, + anon_sym_LT2, + ACTIONS(1169), 22, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10818), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10814), 4, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10808), 6, - anon_sym_GT, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1376), 14, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -520505,26 +481383,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [195465] = 6, + [197089] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10874), 1, - anon_sym_DOT_DOT2, - STATE(6384), 1, + STATE(5999), 1, sym_comment, - ACTIONS(10876), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1158), 5, + ACTIONS(1287), 6, anon_sym_GT, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1160), 24, - anon_sym_DASH, + ACTIONS(1289), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_in, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -520546,35 +481421,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [195512] = 7, - ACTIONS(3), 1, + [197131] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1196), 1, - anon_sym_LBRACE, - ACTIONS(10864), 1, - anon_sym_DOT_DOT2, - STATE(6385), 1, + ACTIONS(1053), 1, + sym__entry_separator, + STATE(6000), 1, sym_comment, - ACTIONS(10866), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1198), 5, + ACTIONS(1051), 30, + anon_sym_RBRACK, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1366), 23, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -520588,20 +481459,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [195561] = 4, + [197173] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6001), 1, + sym_comment, + ACTIONS(1283), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1285), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [197215] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6386), 1, + ACTIONS(1239), 1, + sym__entry_separator, + STATE(6002), 1, sym_comment, - ACTIONS(1408), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1406), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1237), 30, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -520627,18 +481535,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [195604] = 4, + [197257] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6003), 1, + sym_comment, + ACTIONS(1211), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1213), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [197299] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(6387), 1, + ACTIONS(1131), 1, + anon_sym_LBRACE, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + STATE(6004), 1, sym_comment, - ACTIONS(1370), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1368), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1129), 29, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -520666,20 +481612,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [195647] = 4, + [197343] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1192), 1, - sym__entry_separator, - STATE(6388), 1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + ACTIONS(1137), 1, + anon_sym_LBRACE, + STATE(6005), 1, sym_comment, - ACTIONS(1190), 31, - anon_sym_SEMI, - anon_sym_RBRACK, + ACTIONS(1135), 29, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -520705,19 +481651,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [195690] = 5, + [197387] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1255), 1, + ACTIONS(1157), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - STATE(6389), 1, + STATE(6006), 1, sym_comment, - ACTIONS(1253), 30, + ACTIONS(1155), 30, anon_sym_DOLLAR, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -520745,33 +481688,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [195735] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1257), 1, aux_sym_unquoted_token6, - ACTIONS(1275), 1, - anon_sym_LBRACE, - STATE(6390), 1, + [197429] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6007), 1, sym_comment, - ACTIONS(1273), 30, - anon_sym_DOLLAR, + ACTIONS(1221), 6, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1223), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -520785,20 +481727,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [195780] = 4, + [197471] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6391), 1, + ACTIONS(1267), 1, + sym__entry_separator, + STATE(6008), 1, sym_comment, - ACTIONS(1348), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1346), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1265), 30, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -520824,30 +481765,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [195823] = 7, + [197513] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6392), 1, + ACTIONS(10465), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(6009), 1, sym_comment, - ACTIONS(1378), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(10810), 2, + ACTIONS(1139), 30, + anon_sym_COMMA, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10816), 2, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10814), 4, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1376), 22, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_in, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -520866,13 +481803,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [195872] = 4, + [197555] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6393), 1, + STATE(6010), 1, sym_comment, - ACTIONS(1243), 9, - anon_sym_LPAREN, + ACTIONS(1215), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -520881,11 +481817,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1290), 23, + ACTIONS(1217), 23, anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_not, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -520905,32 +481841,31 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [195915] = 4, - ACTIONS(113), 1, + [197597] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6394), 1, + STATE(6011), 1, sym_comment, - ACTIONS(1370), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1368), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1165), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1167), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -520944,43 +481879,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [195958] = 10, + [197639] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(6395), 1, + ACTIONS(1091), 1, + anon_sym_RBRACE, + ACTIONS(1149), 1, + aux_sym_unquoted_token6, + STATE(6012), 1, sym_comment, - ACTIONS(1378), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(10810), 2, + ACTIONS(1089), 29, + anon_sym_COMMA, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10816), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10818), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10812), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10814), 4, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10808), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1376), 10, - anon_sym_SEMI, - anon_sym_PIPE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_bit_DASHand, @@ -520989,17 +481918,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [196013] = 4, + [197683] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(6396), 1, + ACTIONS(1091), 1, + anon_sym_LBRACE, + ACTIONS(1149), 1, + aux_sym_unquoted_token6, + STATE(6013), 1, sym_comment, - ACTIONS(1370), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1368), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1089), 29, + anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -521028,74 +481957,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [196056] = 5, + [197727] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10930), 1, + ACTIONS(10467), 1, anon_sym_LBRACK2, - STATE(6397), 1, + STATE(6014), 1, sym_comment, - ACTIONS(1259), 6, + ACTIONS(1143), 11, + sym_identifier, anon_sym_GT, - anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1261), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [196101] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(6398), 1, - sym_comment, - ACTIONS(1378), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(10816), 2, + ACTIONS(1145), 19, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10814), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1376), 24, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -521106,23 +481996,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [196148] = 4, + [197771] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(6399), 1, + ACTIONS(1267), 1, + sym__entry_separator, + STATE(6015), 1, sym_comment, - ACTIONS(1370), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1368), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1265), 30, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -521148,72 +482034,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [196191] = 4, - ACTIONS(113), 1, + [197813] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6400), 1, + STATE(6016), 1, sym_comment, - ACTIONS(1255), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1253), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1076), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [196234] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(6401), 1, - sym_comment, - ACTIONS(1378), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(10816), 2, + ACTIONS(1169), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(1376), 28, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -521227,21 +482072,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [196279] = 5, + [197855] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9253), 1, - aux_sym_unquoted_token5, - STATE(6402), 1, + STATE(6017), 1, sym_comment, - ACTIONS(959), 6, + ACTIONS(1171), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(961), 25, + ACTIONS(1173), 25, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, @@ -521267,14 +482110,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [196324] = 5, + [197897] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10652), 1, - aux_sym__immediate_decimal_token2, - STATE(6403), 1, + STATE(6018), 1, sym_comment, - ACTIONS(2581), 8, + ACTIONS(1089), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -521283,7 +482124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2583), 23, + ACTIONS(1091), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -521307,24 +482148,23 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [196369] = 4, + [197939] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6404), 1, + STATE(6019), 1, sym_comment, - ACTIONS(1253), 5, + ACTIONS(1171), 6, anon_sym_GT, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1255), 27, - anon_sym_COMMA, - anon_sym_DASH, + ACTIONS(1173), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -521346,24 +482186,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [196412] = 4, + [197981] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6405), 1, + STATE(6020), 1, sym_comment, - ACTIONS(1273), 5, + ACTIONS(1171), 6, anon_sym_GT, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1275), 27, - anon_sym_COMMA, - anon_sym_DASH, + ACTIONS(1173), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -521385,32 +482224,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [196455] = 4, - ACTIONS(113), 1, + [198023] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6406), 1, + STATE(6021), 1, sym_comment, - ACTIONS(1370), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1368), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1171), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1173), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -521424,75 +482262,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [196498] = 8, - ACTIONS(113), 1, + [198065] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6407), 1, + STATE(6022), 1, sym_comment, - ACTIONS(1378), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(10810), 2, + ACTIONS(1171), 6, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10816), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10818), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10814), 4, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1376), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_in, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_PLUS, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [196549] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(6408), 1, - sym_comment, - ACTIONS(1370), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1368), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, + ACTIONS(1173), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -521506,58 +482300,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [196592] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6409), 1, - sym_comment, - ACTIONS(936), 9, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(938), 23, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_not, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [196635] = 4, + [198107] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1352), 1, - sym__entry_separator, - STATE(6410), 1, + ACTIONS(10465), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(6023), 1, sym_comment, - ACTIONS(1350), 30, - anon_sym_RBRACK, + ACTIONS(1139), 30, + anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -521583,12 +482338,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [196677] = 4, + [198149] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6411), 1, + STATE(6024), 1, sym_comment, - ACTIONS(1294), 8, + ACTIONS(1241), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -521597,7 +482352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1296), 23, + ACTIONS(1243), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -521621,67 +482376,31 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [196719] = 4, + [198191] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6412), 1, - sym_comment, - ACTIONS(1294), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1296), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [196761] = 3, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(6413), 1, + STATE(6025), 1, sym_comment, - ACTIONS(1280), 31, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(1171), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1173), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -521695,20 +482414,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - aux_sym_unquoted_token6, - [196801] = 4, + [198233] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6414), 1, + STATE(6026), 1, sym_comment, - ACTIONS(1308), 6, + ACTIONS(1171), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1310), 25, + ACTIONS(1173), 25, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, @@ -521734,19 +482452,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [196843] = 4, + [198275] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6415), 1, + STATE(6027), 1, sym_comment, - ACTIONS(1312), 6, + ACTIONS(1171), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1314), 25, + ACTIONS(1173), 25, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, @@ -521772,32 +482490,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [196885] = 5, - ACTIONS(3), 1, + [198317] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9820), 1, - aux_sym_unquoted_token5, - STATE(6416), 1, + ACTIONS(1255), 1, + sym__entry_separator, + STATE(6028), 1, sym_comment, - ACTIONS(959), 5, + ACTIONS(1253), 30, + anon_sym_RBRACK, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(961), 25, - anon_sym_COMMA, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -521811,30 +482528,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [196929] = 5, + [198359] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9701), 1, - aux_sym_unquoted_token5, - STATE(6417), 1, + STATE(6029), 1, sym_comment, - ACTIONS(959), 11, - sym_identifier, + ACTIONS(1171), 6, anon_sym_GT, - anon_sym_in, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(961), 19, + ACTIONS(1173), 25, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -521850,57 +482563,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [196973] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6418), 1, - sym_comment, - ACTIONS(4016), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4018), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [197015] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [198401] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6419), 1, + STATE(6030), 1, sym_comment, - ACTIONS(1294), 6, + ACTIONS(1171), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1296), 25, + ACTIONS(1173), 25, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, @@ -521926,104 +482604,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [197057] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6420), 1, - sym_comment, - ACTIONS(3866), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3868), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [197099] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6421), 1, - sym_comment, - ACTIONS(1342), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1344), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [197141] = 4, + [198443] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6422), 1, + STATE(6031), 1, sym_comment, - ACTIONS(1109), 12, - sym_identifier, + ACTIONS(1171), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1111), 19, + ACTIONS(1173), 25, + anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -522039,70 +482639,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT, - [197183] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [198485] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6423), 1, - sym_comment, - ACTIONS(1286), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1288), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [197225] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(9905), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(6424), 1, + STATE(6032), 1, sym_comment, - ACTIONS(1243), 30, - sym_identifier, + ACTIONS(1171), 6, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1173), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -522116,31 +482680,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [197267] = 4, - ACTIONS(113), 1, + [198527] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1284), 1, - aux_sym_unquoted_token6, - STATE(6425), 1, + STATE(6033), 1, sym_comment, - ACTIONS(1158), 30, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(1171), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1173), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -522154,33 +482718,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [197309] = 6, - ACTIONS(3), 1, + [198569] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1200), 1, - anon_sym_DASH, - STATE(6426), 1, + ACTIONS(1149), 1, + aux_sym_unquoted_token6, + STATE(6034), 1, sym_comment, - ACTIONS(1196), 3, + ACTIONS(1089), 30, + sym_identifier, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(1198), 5, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1366), 22, + anon_sym_DASH, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -522194,19 +482756,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [197355] = 4, + [198611] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - STATE(6427), 1, + ACTIONS(1235), 1, + sym__entry_separator, + STATE(6035), 1, sym_comment, - ACTIONS(1247), 30, - sym_identifier, + ACTIONS(1233), 30, + anon_sym_RBRACK, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -522232,28 +482794,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [197397] = 4, + [198653] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6428), 1, + STATE(6036), 1, sym_comment, - ACTIONS(1113), 12, - sym_identifier, - anon_sym_GT, + ACTIONS(3691), 8, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3693), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [198695] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9209), 1, + aux_sym_unquoted_token5, + STATE(6037), 1, + sym_comment, + ACTIONS(938), 5, + anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1115), 19, - anon_sym_DASH_DASH, + ACTIONS(940), 25, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -522269,13 +482868,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT, - [197439] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [198739] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6429), 1, + STATE(6038), 1, sym_comment, - ACTIONS(3505), 8, + ACTIONS(3699), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -522284,7 +482885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3507), 23, + ACTIONS(3701), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -522308,19 +482909,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [197481] = 4, + [198781] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6430), 1, + STATE(6039), 1, sym_comment, - ACTIONS(1354), 6, + ACTIONS(1215), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1356), 25, + ACTIONS(1217), 25, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, @@ -522346,33 +482947,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [197523] = 4, - ACTIONS(3), 1, + [198823] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(6431), 1, + ACTIONS(940), 1, + sym__entry_separator, + STATE(6040), 1, sym_comment, - ACTIONS(1117), 12, - sym_identifier, + ACTIONS(938), 30, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1119), 19, - anon_sym_DASH_DASH, + [198865] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1091), 1, + sym__entry_separator, + STATE(6041), 1, + sym_comment, + ACTIONS(1089), 30, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -522383,13 +483020,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT, - [197565] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [198907] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6432), 1, + STATE(6042), 1, sym_comment, - ACTIONS(4000), 8, + ACTIONS(3767), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -522398,7 +483037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4002), 23, + ACTIONS(3769), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -522422,69 +483061,35 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [197607] = 4, + [198949] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6433), 1, - sym_comment, - ACTIONS(1113), 11, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1115), 20, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT, - [197649] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - STATE(6434), 1, + ACTIONS(9231), 1, + aux_sym_unquoted_token5, + STATE(6043), 1, sym_comment, - ACTIONS(1253), 30, + ACTIONS(938), 11, sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(940), 19, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -522495,20 +483100,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [197691] = 4, + [198993] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - STATE(6435), 1, + ACTIONS(1074), 1, + sym__entry_separator, + STATE(6044), 1, sym_comment, - ACTIONS(1273), 30, - sym_identifier, + ACTIONS(1072), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(1076), 28, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -522536,31 +483139,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [197733] = 4, - ACTIONS(3), 1, + [199037] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(6436), 1, + ACTIONS(1289), 1, + sym__entry_separator, + STATE(6045), 1, sym_comment, - ACTIONS(1414), 6, + ACTIONS(1287), 30, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1416), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -522574,31 +483177,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [197775] = 4, - ACTIONS(3), 1, + [199079] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(6437), 1, + ACTIONS(1259), 1, + sym__entry_separator, + STATE(6046), 1, sym_comment, - ACTIONS(1372), 6, + ACTIONS(1257), 30, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1374), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -522612,28 +483215,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [197817] = 4, + [199121] = 21, ACTIONS(3), 1, anon_sym_POUND, - STATE(6438), 1, + ACTIONS(3116), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3118), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3122), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4672), 1, + aux_sym_unquoted_token1, + ACTIONS(7901), 1, + anon_sym_DOT_DOT, + ACTIONS(7905), 1, + anon_sym_DOT2, + ACTIONS(7909), 1, + sym_val_date, + ACTIONS(10378), 1, + anon_sym_DOLLAR, + STATE(1322), 1, + sym__var, + STATE(2130), 1, + sym_val_variable, + STATE(2156), 1, + sym_unquoted, + STATE(6047), 1, sym_comment, - ACTIONS(1117), 11, - sym_identifier, + STATE(8009), 1, + sym__val_number_decimal, + STATE(10050), 1, + sym__val_range, + STATE(10641), 1, + sym_val_bool, + STATE(10833), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3114), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(7903), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(7907), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + ACTIONS(3685), 9, + anon_sym_null, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + [199197] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9209), 1, + aux_sym_unquoted_token5, + STATE(6048), 1, + sym_comment, + ACTIONS(938), 5, anon_sym_GT, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1119), 20, - anon_sym_DOLLAR, + ACTIONS(940), 25, + anon_sym_COMMA, anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -522649,13 +483306,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT, - [197859] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [199241] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6439), 1, + STATE(6049), 1, sym_comment, - ACTIONS(959), 8, + ACTIONS(5109), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -522664,7 +483323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(961), 23, + ACTIONS(5111), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -522688,23 +483347,25 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [197901] = 4, + [199283] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6440), 1, + ACTIONS(10461), 1, + anon_sym_DOT_DOT2, + STATE(6050), 1, sym_comment, - ACTIONS(1358), 6, + ACTIONS(10463), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1089), 5, anon_sym_GT, - anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1360), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(1091), 23, + anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -522726,19 +483387,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [197943] = 4, + [199329] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1188), 1, - sym__entry_separator, - STATE(6441), 1, + ACTIONS(1161), 1, + anon_sym_LBRACE, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + STATE(6051), 1, sym_comment, - ACTIONS(1186), 30, - anon_sym_RBRACK, + ACTIONS(1159), 29, + anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -522764,18 +483426,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [197985] = 4, + [199373] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1282), 1, - anon_sym_RBRACE, - STATE(6442), 1, + ACTIONS(1223), 1, + sym__entry_separator, + STATE(6052), 1, sym_comment, - ACTIONS(1280), 30, - anon_sym_COMMA, + ACTIONS(1221), 30, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -522801,70 +483464,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - aux_sym_unquoted_token6, - [198027] = 4, + [199415] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6443), 1, - sym_comment, - ACTIONS(1316), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1318), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [198069] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1288), 1, - sym__entry_separator, - STATE(6444), 1, + STATE(6053), 1, sym_comment, - ACTIONS(1286), 30, - anon_sym_RBRACK, + ACTIONS(1047), 11, + sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1049), 20, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -522875,21 +483501,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [198111] = 5, + anon_sym_DOT, + [199457] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1249), 1, + ACTIONS(1131), 1, anon_sym_LBRACE, - ACTIONS(1251), 1, + ACTIONS(1133), 1, aux_sym_unquoted_token6, - STATE(6445), 1, + STATE(6054), 1, sym_comment, - ACTIONS(1247), 29, + ACTIONS(1129), 29, + anon_sym_DOLLAR, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -522917,31 +483541,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [198155] = 4, - ACTIONS(3), 1, + [199501] = 5, + ACTIONS(113), 1, anon_sym_POUND, - STATE(6446), 1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + ACTIONS(1137), 1, + anon_sym_LBRACE, + STATE(6055), 1, sym_comment, - ACTIONS(1186), 6, + ACTIONS(1135), 29, + anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1188), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -522955,12 +483580,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [198197] = 4, + [199545] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6447), 1, + STATE(6056), 1, sym_comment, - ACTIONS(5175), 8, + ACTIONS(3711), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -522969,7 +483594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5177), 23, + ACTIONS(3713), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -522993,31 +483618,33 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [198239] = 4, - ACTIONS(113), 1, + [199587] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1284), 1, - aux_sym_unquoted_token6, - STATE(6448), 1, + STATE(6057), 1, sym_comment, - ACTIONS(1158), 30, + ACTIONS(1037), 11, sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1039), 20, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -523028,17 +483655,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + anon_sym_DOT, + [199629] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6058), 1, + sym_comment, + ACTIONS(1041), 11, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - [198281] = 4, + ACTIONS(1043), 20, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DOT, + [199671] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1408), 1, + ACTIONS(1169), 1, sym__entry_separator, - STATE(6449), 1, + STATE(6059), 1, sym_comment, - ACTIONS(1406), 30, + ACTIONS(1076), 30, anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, @@ -523069,33 +483732,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [198323] = 4, + [199713] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1300), 1, + ACTIONS(1181), 1, sym__entry_separator, - STATE(6450), 1, + STATE(6060), 1, sym_comment, - ACTIONS(1298), 30, - anon_sym_RBRACK, - anon_sym_GT, + ACTIONS(10471), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(10475), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10477), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10473), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(10469), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(1179), 14, + anon_sym_RBRACK, + anon_sym_in, + anon_sym_RBRACE, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -523107,20 +483775,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [198365] = 5, + [199765] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1160), 1, - anon_sym_LBRACE, - ACTIONS(1284), 1, - aux_sym_unquoted_token6, - STATE(6451), 1, + ACTIONS(1173), 1, + sym__entry_separator, + STATE(6061), 1, sym_comment, - ACTIONS(1158), 29, - anon_sym_DOLLAR, + ACTIONS(1171), 30, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -523146,69 +483813,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [198409] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6452), 1, - sym_comment, - ACTIONS(5171), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5173), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [198451] = 4, - ACTIONS(3), 1, + [199807] = 7, + ACTIONS(113), 1, anon_sym_POUND, - STATE(6453), 1, + ACTIONS(1181), 1, + sym__entry_separator, + STATE(6062), 1, sym_comment, - ACTIONS(1302), 6, - anon_sym_GT, + ACTIONS(10471), 2, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1304), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, + ACTIONS(10475), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10473), 4, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(1179), 22, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_in, + anon_sym_RBRACE, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -523222,14 +483854,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [198493] = 4, + [199855] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1322), 1, + ACTIONS(1173), 1, sym__entry_separator, - STATE(6454), 1, + STATE(6063), 1, sym_comment, - ACTIONS(1320), 30, + ACTIONS(1171), 30, anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, @@ -523260,129 +483892,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [198535] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6455), 1, - sym_comment, - ACTIONS(5183), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5185), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [198577] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2795), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2797), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2801), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4476), 1, - aux_sym_unquoted_token1, - ACTIONS(8452), 1, - sym_val_date, - ACTIONS(8607), 1, - anon_sym_DOT_DOT, - ACTIONS(8611), 1, - anon_sym_DOT2, - ACTIONS(10932), 1, - anon_sym_DOLLAR, - STATE(1743), 1, - sym__var, - STATE(2761), 1, - sym_val_variable, - STATE(2766), 1, - sym_unquoted, - STATE(6456), 1, - sym_comment, - STATE(8255), 1, - sym__val_number_decimal, - STATE(10518), 1, - sym__val_range, - STATE(10861), 1, - sym_val_bool, - STATE(11180), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(2793), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(8609), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(8613), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(3910), 9, - anon_sym_null, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [198653] = 4, - ACTIONS(3), 1, + [199897] = 10, + ACTIONS(113), 1, anon_sym_POUND, - STATE(6457), 1, + ACTIONS(1181), 1, + sym__entry_separator, + STATE(6064), 1, sym_comment, - ACTIONS(1243), 6, - anon_sym_GT, + ACTIONS(10471), 2, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1290), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, + ACTIONS(10475), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(10477), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10473), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10479), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10469), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, + ACTIONS(1179), 10, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_bit_DASHand, @@ -523391,69 +483936,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [198695] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6458), 1, - sym_comment, - ACTIONS(5179), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5181), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [198737] = 4, - ACTIONS(3), 1, + [199951] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(6459), 1, + ACTIONS(1173), 1, + sym__entry_separator, + STATE(6065), 1, sym_comment, - ACTIONS(1316), 6, + ACTIONS(1171), 30, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1318), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -523467,31 +483974,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [198779] = 4, - ACTIONS(3), 1, + [199993] = 6, + ACTIONS(113), 1, anon_sym_POUND, - STATE(6460), 1, + ACTIONS(1181), 1, + sym__entry_separator, + STATE(6066), 1, sym_comment, - ACTIONS(1332), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1334), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, + ACTIONS(10475), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10473), 4, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(1179), 24, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -523505,14 +484014,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [198821] = 4, + [200039] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, + ACTIONS(1173), 1, sym__entry_separator, - STATE(6461), 1, + STATE(6067), 1, sym_comment, - ACTIONS(1368), 30, + ACTIONS(1171), 30, anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, @@ -523543,31 +484052,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [198863] = 4, - ACTIONS(3), 1, + [200081] = 5, + ACTIONS(113), 1, anon_sym_POUND, - STATE(6462), 1, + ACTIONS(1181), 1, + sym__entry_separator, + STATE(6068), 1, sym_comment, - ACTIONS(1320), 6, + ACTIONS(10475), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1179), 28, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1322), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -523581,31 +484091,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [198905] = 4, - ACTIONS(3), 1, + [200125] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(6463), 1, + ACTIONS(1173), 1, + sym__entry_separator, + STATE(6069), 1, sym_comment, - ACTIONS(1190), 6, + ACTIONS(1171), 30, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1192), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -523619,31 +484129,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [198947] = 4, - ACTIONS(3), 1, + [200167] = 8, + ACTIONS(113), 1, anon_sym_POUND, - STATE(6464), 1, + ACTIONS(1181), 1, + sym__entry_separator, + STATE(6070), 1, sym_comment, - ACTIONS(1294), 6, - anon_sym_GT, + ACTIONS(10471), 2, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1296), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, + ACTIONS(10475), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(10477), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10473), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1179), 20, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_in, + anon_sym_RBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -523657,31 +484171,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [198989] = 4, - ACTIONS(3), 1, + [200217] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(6465), 1, + ACTIONS(1173), 1, + sym__entry_separator, + STATE(6071), 1, sym_comment, - ACTIONS(1350), 6, + ACTIONS(1171), 30, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1352), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -523695,81 +484209,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [199031] = 15, + [200259] = 11, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1378), 1, + ACTIONS(1181), 1, sym__entry_separator, - ACTIONS(10948), 1, - anon_sym_bit_DASHand, - ACTIONS(10950), 1, - anon_sym_bit_DASHxor, - ACTIONS(10952), 1, - anon_sym_bit_DASHor, - ACTIONS(10954), 1, - anon_sym_and, - STATE(6466), 1, + STATE(6072), 1, sym_comment, - ACTIONS(10936), 2, + ACTIONS(10471), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10942), 2, + ACTIONS(10475), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10944), 2, + ACTIONS(10477), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10946), 2, + ACTIONS(10481), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1376), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_xor, - anon_sym_or, - ACTIONS(10938), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10940), 4, + ACTIONS(10473), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10934), 6, + ACTIONS(10479), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10469), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [199095] = 8, + ACTIONS(1179), 8, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [200315] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1378), 1, + ACTIONS(1173), 1, sym__entry_separator, - STATE(6467), 1, + STATE(6073), 1, sym_comment, - ACTIONS(10936), 2, + ACTIONS(1171), 30, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10942), 2, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10944), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10940), 4, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1376), 20, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_in, - anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, @@ -523786,52 +484292,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [199145] = 4, - ACTIONS(3), 1, + [200357] = 12, + ACTIONS(113), 1, anon_sym_POUND, - STATE(6468), 1, + ACTIONS(1181), 1, + sym__entry_separator, + ACTIONS(10483), 1, + anon_sym_bit_DASHand, + STATE(6074), 1, sym_comment, - ACTIONS(1186), 8, - anon_sym_DOLLAR, + ACTIONS(10471), 2, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1188), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [199187] = 4, + anon_sym_PLUS, + ACTIONS(10475), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10477), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10481), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10473), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10479), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10469), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1179), 7, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [200415] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, + ACTIONS(1173), 1, sym__entry_separator, - STATE(6469), 1, + STATE(6075), 1, sym_comment, - ACTIONS(1368), 30, + ACTIONS(1171), 30, anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, @@ -523862,18 +484376,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [199229] = 4, + [200457] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1282), 1, - anon_sym_LBRACE, - STATE(6470), 1, + ACTIONS(1173), 1, + sym__entry_separator, + STATE(6076), 1, sym_comment, - ACTIONS(1280), 30, + ACTIONS(1171), 30, + anon_sym_RBRACK, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -523899,15 +484414,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - aux_sym_unquoted_token6, - [199271] = 4, + [200499] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, + ACTIONS(1181), 1, sym__entry_separator, - STATE(6471), 1, + ACTIONS(10483), 1, + anon_sym_bit_DASHand, + ACTIONS(10485), 1, + anon_sym_bit_DASHxor, + ACTIONS(10487), 1, + anon_sym_bit_DASHor, + STATE(6077), 1, + sym_comment, + ACTIONS(10471), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10475), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10477), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10481), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10473), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10479), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1179), 5, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(10469), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [200561] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1173), 1, + sym__entry_separator, + STATE(6078), 1, sym_comment, - ACTIONS(1368), 30, + ACTIONS(1171), 30, anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, @@ -523938,14 +484500,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [199313] = 4, + [200603] = 15, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1282), 1, + ACTIONS(1181), 1, sym__entry_separator, - STATE(6472), 1, + ACTIONS(10483), 1, + anon_sym_bit_DASHand, + ACTIONS(10485), 1, + anon_sym_bit_DASHxor, + ACTIONS(10487), 1, + anon_sym_bit_DASHor, + ACTIONS(10489), 1, + anon_sym_and, + STATE(6079), 1, + sym_comment, + ACTIONS(10471), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10475), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10477), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10481), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1179), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_xor, + anon_sym_or, + ACTIONS(10473), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10479), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10469), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [200667] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1173), 1, + sym__entry_separator, + STATE(6080), 1, sym_comment, - ACTIONS(1280), 30, + ACTIONS(1171), 30, anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, @@ -523976,20 +484587,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [199355] = 5, + [200709] = 16, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1255), 1, - anon_sym_LBRACE, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - STATE(6473), 1, + ACTIONS(1181), 1, + sym__entry_separator, + ACTIONS(10483), 1, + anon_sym_bit_DASHand, + ACTIONS(10485), 1, + anon_sym_bit_DASHxor, + ACTIONS(10487), 1, + anon_sym_bit_DASHor, + ACTIONS(10489), 1, + anon_sym_and, + ACTIONS(10491), 1, + anon_sym_xor, + STATE(6081), 1, sym_comment, - ACTIONS(1253), 29, + ACTIONS(10471), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10475), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10477), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10481), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1179), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_or, + ACTIONS(10473), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10479), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10469), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [200775] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1173), 1, + sym__entry_separator, + STATE(6082), 1, + sym_comment, + ACTIONS(1171), 30, + anon_sym_RBRACK, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -524015,61 +484675,217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [199399] = 13, + [200817] = 17, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1378), 1, + ACTIONS(1181), 1, sym__entry_separator, - ACTIONS(10948), 1, + ACTIONS(10483), 1, anon_sym_bit_DASHand, - ACTIONS(10950), 1, + ACTIONS(10485), 1, anon_sym_bit_DASHxor, - STATE(6474), 1, + ACTIONS(10487), 1, + anon_sym_bit_DASHor, + ACTIONS(10489), 1, + anon_sym_and, + ACTIONS(10491), 1, + anon_sym_xor, + ACTIONS(10493), 1, + anon_sym_or, + STATE(6083), 1, sym_comment, - ACTIONS(10936), 2, + ACTIONS(1179), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(10471), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10942), 2, + ACTIONS(10475), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10944), 2, + ACTIONS(10477), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10946), 2, + ACTIONS(10481), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10938), 4, + ACTIONS(10473), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10479), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(10940), 4, + ACTIONS(10469), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [200885] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1173), 1, + sym__entry_separator, + STATE(6084), 1, + sym_comment, + ACTIONS(1171), 30, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1376), 6, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(10934), 6, + [200927] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6085), 1, + sym_comment, + ACTIONS(1175), 6, anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1177), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [199459] = 4, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [200969] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6086), 1, + sym_comment, + ACTIONS(3741), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3743), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [201011] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6087), 1, + sym_comment, + ACTIONS(1225), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1227), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [201053] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, + ACTIONS(1243), 1, sym__entry_separator, - STATE(6475), 1, + STATE(6088), 1, sym_comment, - ACTIONS(1368), 30, + ACTIONS(1241), 30, anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, @@ -524100,19 +484916,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [199501] = 4, + [201095] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, - sym__entry_separator, - STATE(6476), 1, + STATE(6089), 1, sym_comment, - ACTIONS(1368), 30, - anon_sym_RBRACK, + ACTIONS(1155), 31, + sym_identifier, + anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -524138,32 +484952,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [199543] = 5, - ACTIONS(113), 1, + aux_sym_unquoted_token6, + [201135] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1196), 1, - sym__entry_separator, - STATE(6477), 1, + ACTIONS(10495), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(10497), 1, + aux_sym_unquoted_token2, + STATE(6090), 1, sym_comment, - ACTIONS(1194), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(1198), 28, + ACTIONS(920), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(922), 24, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -524177,19 +484993,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [199587] = 4, + [201181] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, - sym__entry_separator, - STATE(6478), 1, + ACTIONS(1149), 1, + aux_sym_unquoted_token6, + STATE(6091), 1, sym_comment, - ACTIONS(1368), 30, - anon_sym_RBRACK, + ACTIONS(1089), 30, + sym_identifier, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -524215,31 +485031,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [199629] = 4, + [201223] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6479), 1, + STATE(6092), 1, + sym_comment, + ACTIONS(5151), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5153), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [201265] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1157), 1, + anon_sym_RBRACE, + STATE(6093), 1, sym_comment, - ACTIONS(1336), 6, + ACTIONS(1155), 30, + anon_sym_COMMA, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1338), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -524253,12 +485106,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [199671] = 4, + aux_sym_unquoted_token6, + [201307] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6480), 1, + STATE(6094), 1, sym_comment, - ACTIONS(5199), 8, + ACTIONS(1245), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -524267,7 +485121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5201), 23, + ACTIONS(1247), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -524291,51 +485145,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [199713] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9701), 1, - aux_sym_unquoted_token5, - STATE(6481), 1, - sym_comment, - ACTIONS(959), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(961), 18, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [199757] = 4, + [201349] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6482), 1, + STATE(6095), 1, sym_comment, - ACTIONS(5203), 8, + ACTIONS(1253), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -524344,7 +485159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5205), 23, + ACTIONS(1255), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -524368,18 +485183,17 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [199799] = 5, + [201391] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1160), 1, - anon_sym_LBRACE, - ACTIONS(1284), 1, - aux_sym_unquoted_token6, - STATE(6483), 1, + ACTIONS(10499), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(6096), 1, sym_comment, - ACTIONS(1158), 29, + ACTIONS(1139), 30, + sym_identifier, + anon_sym_DOLLAR, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -524407,81 +485221,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [199843] = 16, + [201433] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1378), 1, + ACTIONS(1273), 1, sym__entry_separator, - ACTIONS(10948), 1, - anon_sym_bit_DASHand, - ACTIONS(10950), 1, - anon_sym_bit_DASHxor, - ACTIONS(10952), 1, - anon_sym_bit_DASHor, - ACTIONS(10954), 1, - anon_sym_and, - ACTIONS(10956), 1, - anon_sym_xor, - STATE(6484), 1, + STATE(6097), 1, sym_comment, - ACTIONS(10936), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10942), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10944), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10946), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1376), 3, + ACTIONS(1271), 30, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_or, - ACTIONS(10938), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10940), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10934), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [199909] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6485), 1, - sym_comment, - ACTIONS(1198), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1366), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -524495,32 +485259,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [199951] = 5, - ACTIONS(3), 1, + [201475] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9550), 1, - aux_sym_unquoted_token5, - STATE(6486), 1, + ACTIONS(1277), 1, + sym__entry_separator, + STATE(6098), 1, sym_comment, - ACTIONS(959), 6, + ACTIONS(1275), 30, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(961), 24, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -524534,18 +485297,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [199995] = 5, + [201517] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1257), 1, + ACTIONS(1161), 1, + anon_sym_RBRACE, + ACTIONS(1163), 1, aux_sym_unquoted_token6, - ACTIONS(1275), 1, - anon_sym_LBRACE, - STATE(6487), 1, + STATE(6099), 1, sym_comment, - ACTIONS(1273), 29, + ACTIONS(1159), 29, + anon_sym_COMMA, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -524573,107 +485336,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [200039] = 4, + [201561] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6488), 1, + STATE(6100), 1, sym_comment, - ACTIONS(1342), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1344), 25, + ACTIONS(1249), 8, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1251), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [200081] = 4, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [201603] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6489), 1, + STATE(6101), 1, sym_comment, - ACTIONS(1368), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1370), 25, + ACTIONS(3721), 8, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3723), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [200123] = 4, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [201645] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6490), 1, + STATE(6102), 1, sym_comment, - ACTIONS(936), 6, + ACTIONS(1257), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1259), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [201687] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1131), 1, + anon_sym_RBRACE, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + STATE(6103), 1, + sym_comment, + ACTIONS(1129), 29, + anon_sym_COMMA, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(938), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -524687,18 +485489,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [200165] = 5, + [201731] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1255), 1, + ACTIONS(1091), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, + ACTIONS(1149), 1, aux_sym_unquoted_token6, - STATE(6491), 1, + STATE(6104), 1, sym_comment, - ACTIONS(1253), 29, - anon_sym_DOLLAR, + ACTIONS(1089), 29, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -524726,31 +485528,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [200209] = 4, - ACTIONS(3), 1, + [201775] = 5, + ACTIONS(113), 1, anon_sym_POUND, - STATE(6492), 1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + ACTIONS(1137), 1, + anon_sym_RBRACE, + STATE(6105), 1, sym_comment, - ACTIONS(1368), 6, + ACTIONS(1135), 29, + anon_sym_COMMA, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1370), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -524764,57 +485567,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [200251] = 4, + [201819] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6493), 1, + STATE(6106), 1, sym_comment, - ACTIONS(1368), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1370), 25, + ACTIONS(1261), 8, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1263), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [200293] = 4, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [201861] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6494), 1, + STATE(6107), 1, sym_comment, - ACTIONS(1368), 6, + ACTIONS(938), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1370), 25, + ACTIONS(940), 25, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, @@ -524840,19 +485643,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [200335] = 4, + [201903] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6495), 1, + STATE(6108), 1, sym_comment, - ACTIONS(1368), 6, + ACTIONS(1089), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1370), 25, + ACTIONS(1091), 25, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, @@ -524878,14 +485681,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [200377] = 4, + [201945] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1360), 1, + ACTIONS(1231), 1, sym__entry_separator, - STATE(6496), 1, + STATE(6109), 1, sym_comment, - ACTIONS(1358), 30, + ACTIONS(1229), 30, anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, @@ -524916,30 +485719,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [200419] = 4, - ACTIONS(113), 1, + [201987] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1282), 1, - anon_sym_LBRACE, - STATE(6497), 1, + STATE(6110), 1, sym_comment, - ACTIONS(1280), 30, - anon_sym_DOLLAR, + ACTIONS(1229), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1231), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -524953,13 +485757,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - aux_sym_unquoted_token6, - [200461] = 4, + [202029] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6498), 1, + STATE(6111), 1, sym_comment, - ACTIONS(4291), 8, + ACTIONS(1072), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -524968,7 +485771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4293), 23, + ACTIONS(1074), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -524992,50 +485795,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [200503] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6499), 1, - sym_comment, - ACTIONS(1368), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1370), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [200545] = 4, + [202071] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6500), 1, + STATE(6112), 1, sym_comment, - ACTIONS(1298), 8, + ACTIONS(4734), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -525044,7 +485809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1300), 23, + ACTIONS(4738), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -525068,22 +485833,22 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [200587] = 5, + [202113] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9820), 1, + ACTIONS(9098), 1, aux_sym_unquoted_token5, - STATE(6501), 1, + STATE(6113), 1, sym_comment, - ACTIONS(959), 5, + ACTIONS(938), 6, anon_sym_GT, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(961), 25, - anon_sym_DOLLAR, - anon_sym_DASH, + ACTIONS(940), 24, + anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, anon_sym_STAR_STAR, @@ -525107,26 +485872,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [200631] = 4, + [202157] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6502), 1, + ACTIONS(9231), 1, + aux_sym_unquoted_token5, + STATE(6114), 1, sym_comment, - ACTIONS(1280), 6, + ACTIONS(938), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1282), 25, - anon_sym_DOLLAR, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(940), 18, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -525142,34 +485911,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [200673] = 4, - ACTIONS(113), 1, + [202201] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1366), 1, - sym__entry_separator, - STATE(6503), 1, + STATE(6115), 1, sym_comment, - ACTIONS(1198), 30, - anon_sym_RBRACK, + ACTIONS(1233), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1235), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -525183,19 +485949,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [200715] = 4, + [202243] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6504), 1, + STATE(6116), 1, sym_comment, - ACTIONS(1368), 6, + ACTIONS(1139), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1370), 25, + ACTIONS(1209), 25, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, @@ -525221,33 +485987,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [200757] = 6, + [202285] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10958), 1, - anon_sym_DOT_DOT2, - STATE(6505), 1, + STATE(6117), 1, sym_comment, - ACTIONS(10960), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1158), 5, + ACTIONS(1265), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1267), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [202327] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6118), 1, + sym_comment, + ACTIONS(1265), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1267), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [202369] = 3, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(6119), 1, + sym_comment, + ACTIONS(1155), 31, + sym_identifier, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1160), 23, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -525261,19 +486099,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [200803] = 4, + aux_sym_unquoted_token6, + [202409] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6506), 1, + STATE(6120), 1, sym_comment, - ACTIONS(1368), 6, + ACTIONS(1093), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1370), 25, + ACTIONS(1095), 25, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, @@ -525299,19 +486138,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [200845] = 4, + [202451] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6507), 1, + STATE(6121), 1, sym_comment, - ACTIONS(1368), 6, + ACTIONS(1237), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1370), 25, + ACTIONS(1239), 25, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, @@ -525337,19 +486176,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [200887] = 4, + [202493] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6508), 1, + STATE(6122), 1, sym_comment, - ACTIONS(1368), 6, + ACTIONS(1241), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1370), 25, + ACTIONS(1243), 25, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, @@ -525375,19 +486214,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [200929] = 4, + [202535] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6509), 1, + STATE(6123), 1, sym_comment, - ACTIONS(1368), 6, + ACTIONS(1249), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1370), 25, + ACTIONS(1251), 25, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, @@ -525413,31 +486252,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [200971] = 4, + [202577] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6510), 1, + STATE(6124), 1, sym_comment, - ACTIONS(1368), 6, - anon_sym_GT, + ACTIONS(4955), 8, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1370), 25, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4957), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [202619] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + STATE(6125), 1, + sym_comment, + ACTIONS(1129), 30, + sym_identifier, anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_GT, + anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -525451,32 +486328,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [201013] = 5, - ACTIONS(113), 1, + [202661] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - ACTIONS(1275), 1, - anon_sym_LBRACE, - STATE(6511), 1, + STATE(6126), 1, sym_comment, - ACTIONS(1273), 29, - anon_sym_DOLLAR, + ACTIONS(1211), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1213), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -525490,19 +486366,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [201057] = 4, + [202703] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6512), 1, + STATE(6127), 1, sym_comment, - ACTIONS(1368), 6, + ACTIONS(1283), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1370), 25, + ACTIONS(1285), 25, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, @@ -525528,33 +486404,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [201099] = 6, + [202745] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10962), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10964), 1, - aux_sym_unquoted_token2, - STATE(6513), 1, + STATE(6128), 1, sym_comment, - ACTIONS(936), 5, + ACTIONS(4959), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4961), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [202787] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(10328), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(6129), 1, + sym_comment, + ACTIONS(1139), 30, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(938), 24, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_EQ_GT, + anon_sym_LBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -525568,31 +486480,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [201145] = 4, - ACTIONS(113), 1, + [202829] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - STATE(6514), 1, + STATE(6130), 1, sym_comment, - ACTIONS(1253), 30, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(1245), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1247), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -525606,28 +486518,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [201187] = 4, + [202871] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6515), 1, + STATE(6131), 1, sym_comment, - ACTIONS(1109), 11, - sym_identifier, + ACTIONS(2229), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2231), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [202913] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6132), 1, + sym_comment, + ACTIONS(1253), 6, anon_sym_GT, - anon_sym_in, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1111), 20, + ACTIONS(1255), 25, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -525643,32 +486591,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT, - [201229] = 4, - ACTIONS(113), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [202955] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6133), 1, + sym_comment, + ACTIONS(4963), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4965), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [202997] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6134), 1, + sym_comment, + ACTIONS(2362), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2364), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [203039] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6135), 1, + sym_comment, + ACTIONS(5241), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5243), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [203081] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6136), 1, + sym_comment, + ACTIONS(5245), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5247), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [203123] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - STATE(6516), 1, + STATE(6137), 1, sym_comment, - ACTIONS(1273), 30, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(1257), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1259), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -525682,19 +486784,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [201271] = 4, + [203165] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6517), 1, + STATE(6138), 1, + sym_comment, + ACTIONS(2402), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2404), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [203207] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6139), 1, sym_comment, - ACTIONS(1346), 6, + ACTIONS(1261), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1348), 25, + ACTIONS(1263), 25, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, @@ -525720,12 +486860,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [201313] = 4, + [203249] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6518), 1, + STATE(6140), 1, sym_comment, - ACTIONS(5239), 8, + ACTIONS(1061), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -525734,7 +486874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5241), 23, + ACTIONS(1063), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -525758,21 +486898,23 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [201355] = 4, + [203291] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6519), 1, + ACTIONS(10501), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(10503), 1, + aux_sym_unquoted_token2, + STATE(6141), 1, sym_comment, - ACTIONS(1410), 6, + ACTIONS(920), 5, anon_sym_GT, - anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1412), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(922), 24, + anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, anon_sym_STAR_STAR, @@ -525796,19 +486938,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [201397] = 4, + [203337] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6142), 1, + sym_comment, + ACTIONS(3757), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3759), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [203379] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6143), 1, + sym_comment, + ACTIONS(5113), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5115), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [203421] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6144), 1, + sym_comment, + ACTIONS(5137), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5139), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [203463] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6145), 1, + sym_comment, + ACTIONS(4196), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4198), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [203505] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1356), 1, - sym__entry_separator, - STATE(6520), 1, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + STATE(6146), 1, sym_comment, - ACTIONS(1354), 30, - anon_sym_RBRACK, + ACTIONS(1159), 30, + sym_identifier, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -525834,29 +487128,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [201439] = 7, + [203547] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6147), 1, + sym_comment, + ACTIONS(938), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(940), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [203589] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6148), 1, + sym_comment, + ACTIONS(1093), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1095), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [203631] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6149), 1, + sym_comment, + ACTIONS(1237), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1239), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [203673] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6150), 1, + sym_comment, + ACTIONS(1271), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1273), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [203715] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6151), 1, + sym_comment, + ACTIONS(1275), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1277), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [203757] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1378), 1, - sym__entry_separator, - STATE(6521), 1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + STATE(6152), 1, sym_comment, - ACTIONS(10936), 2, + ACTIONS(1129), 30, + sym_identifier, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10942), 2, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10940), 4, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1376), 22, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_in, - anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -525875,35 +487356,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [201487] = 10, + [203799] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(6522), 1, + STATE(6153), 1, sym_comment, - ACTIONS(10966), 2, + ACTIONS(10505), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(10968), 2, + ACTIONS(10507), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10970), 2, + ACTIONS(10509), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(10972), 2, + ACTIONS(10511), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10974), 2, + ACTIONS(10513), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10976), 2, + ACTIONS(10515), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10978), 4, + ACTIONS(10517), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1378), 15, + ACTIONS(1181), 15, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, @@ -525919,27 +487400,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [201541] = 8, + [203853] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(6523), 1, + STATE(6154), 1, sym_comment, - ACTIONS(1376), 2, + ACTIONS(1179), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(10968), 2, + ACTIONS(10507), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10970), 2, + ACTIONS(10509), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(10972), 2, + ACTIONS(10511), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10974), 2, + ACTIONS(10513), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1378), 21, + ACTIONS(1181), 21, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, @@ -525961,40 +487442,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [201591] = 11, + [203903] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(6524), 1, + STATE(6155), 1, sym_comment, - ACTIONS(10966), 2, + ACTIONS(10505), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(10968), 2, + ACTIONS(10507), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10970), 2, + ACTIONS(10509), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(10972), 2, + ACTIONS(10511), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10974), 2, + ACTIONS(10513), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10976), 2, + ACTIONS(10515), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10978), 4, + ACTIONS(10517), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(10980), 4, + ACTIONS(10519), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1378), 11, + ACTIONS(1181), 11, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, @@ -526006,26 +487487,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [201647] = 7, + [203959] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(6525), 1, + STATE(6156), 1, sym_comment, - ACTIONS(10970), 2, + ACTIONS(10509), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(10972), 2, + ACTIONS(10511), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10974), 2, + ACTIONS(10513), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1376), 4, + ACTIONS(1179), 4, anon_sym_GT, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1378), 21, + ACTIONS(1181), 21, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, @@ -526047,22 +487528,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [201695] = 5, + [204007] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6526), 1, + STATE(6157), 1, sym_comment, - ACTIONS(10972), 2, + ACTIONS(10511), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(1376), 6, + ACTIONS(1179), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1378), 23, + ACTIONS(1181), 23, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, @@ -526086,30 +487567,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [201739] = 9, + [204051] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(6527), 1, + STATE(6158), 1, sym_comment, - ACTIONS(1376), 2, + ACTIONS(1179), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(10968), 2, + ACTIONS(10507), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10970), 2, + ACTIONS(10509), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(10972), 2, + ACTIONS(10511), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10974), 2, + ACTIONS(10513), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10976), 2, + ACTIONS(10515), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(1378), 19, + ACTIONS(1181), 19, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, @@ -526129,43 +487610,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [201791] = 12, + [204103] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(6528), 1, + STATE(6159), 1, sym_comment, - ACTIONS(10966), 2, + ACTIONS(10505), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(10968), 2, + ACTIONS(10507), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10970), 2, + ACTIONS(10509), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(10972), 2, + ACTIONS(10511), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10974), 2, + ACTIONS(10513), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10976), 2, + ACTIONS(10515), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10982), 2, + ACTIONS(10521), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10978), 4, + ACTIONS(10517), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(10980), 4, + ACTIONS(10519), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1378), 9, + ACTIONS(1181), 9, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, @@ -526175,45 +487656,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [201849] = 13, + [204161] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10984), 1, + ACTIONS(10523), 1, anon_sym_bit_DASHand, - STATE(6529), 1, + STATE(6160), 1, sym_comment, - ACTIONS(10966), 2, + ACTIONS(10505), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(10968), 2, + ACTIONS(10507), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10970), 2, + ACTIONS(10509), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(10972), 2, + ACTIONS(10511), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10974), 2, + ACTIONS(10513), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10976), 2, + ACTIONS(10515), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10982), 2, + ACTIONS(10521), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10978), 4, + ACTIONS(10517), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(10980), 4, + ACTIONS(10519), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1378), 8, + ACTIONS(1181), 8, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, @@ -526222,47 +487703,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [201909] = 14, + [204221] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10984), 1, + ACTIONS(10523), 1, anon_sym_bit_DASHand, - ACTIONS(10986), 1, + ACTIONS(10525), 1, anon_sym_bit_DASHxor, - STATE(6530), 1, + STATE(6161), 1, sym_comment, - ACTIONS(10966), 2, + ACTIONS(10505), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(10968), 2, + ACTIONS(10507), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10970), 2, + ACTIONS(10509), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(10972), 2, + ACTIONS(10511), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10974), 2, + ACTIONS(10513), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10976), 2, + ACTIONS(10515), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10982), 2, + ACTIONS(10521), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10978), 4, + ACTIONS(10517), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(10980), 4, + ACTIONS(10519), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1378), 7, + ACTIONS(1181), 7, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, @@ -526270,844 +487751,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [201971] = 15, + [204283] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10984), 1, + ACTIONS(10523), 1, anon_sym_bit_DASHand, - ACTIONS(10986), 1, + ACTIONS(10525), 1, anon_sym_bit_DASHxor, - ACTIONS(10988), 1, + ACTIONS(10527), 1, anon_sym_bit_DASHor, - STATE(6531), 1, + STATE(6162), 1, sym_comment, - ACTIONS(10966), 2, + ACTIONS(10505), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(10968), 2, + ACTIONS(10507), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10970), 2, + ACTIONS(10509), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(10972), 2, + ACTIONS(10511), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10974), 2, + ACTIONS(10513), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10976), 2, + ACTIONS(10515), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10982), 2, + ACTIONS(10521), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10978), 4, + ACTIONS(10517), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(10980), 4, + ACTIONS(10519), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1378), 6, + ACTIONS(1181), 6, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [202035] = 16, + [204347] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10984), 1, + ACTIONS(10523), 1, anon_sym_bit_DASHand, - ACTIONS(10986), 1, + ACTIONS(10525), 1, anon_sym_bit_DASHxor, - ACTIONS(10988), 1, + ACTIONS(10527), 1, anon_sym_bit_DASHor, - ACTIONS(10990), 1, + ACTIONS(10529), 1, anon_sym_and, - STATE(6532), 1, + STATE(6163), 1, sym_comment, - ACTIONS(10966), 2, + ACTIONS(10505), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(10968), 2, + ACTIONS(10507), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10970), 2, + ACTIONS(10509), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(10972), 2, + ACTIONS(10511), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10974), 2, + ACTIONS(10513), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10976), 2, + ACTIONS(10515), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10982), 2, + ACTIONS(10521), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10978), 4, + ACTIONS(10517), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(10980), 4, + ACTIONS(10519), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1378), 5, + ACTIONS(1181), 5, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_xor, anon_sym_or, - [202101] = 17, + [204413] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10984), 1, + ACTIONS(10523), 1, anon_sym_bit_DASHand, - ACTIONS(10986), 1, + ACTIONS(10525), 1, anon_sym_bit_DASHxor, - ACTIONS(10988), 1, + ACTIONS(10527), 1, anon_sym_bit_DASHor, - ACTIONS(10990), 1, + ACTIONS(10529), 1, anon_sym_and, - ACTIONS(10992), 1, + ACTIONS(10531), 1, anon_sym_xor, - STATE(6533), 1, + STATE(6164), 1, sym_comment, - ACTIONS(10966), 2, + ACTIONS(10505), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(10968), 2, + ACTIONS(10507), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10970), 2, + ACTIONS(10509), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(10972), 2, + ACTIONS(10511), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10974), 2, + ACTIONS(10513), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10976), 2, + ACTIONS(10515), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10982), 2, + ACTIONS(10521), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1378), 4, + ACTIONS(1181), 4, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_or, - ACTIONS(10978), 4, + ACTIONS(10517), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(10980), 4, + ACTIONS(10519), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - [202169] = 18, + [204481] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10984), 1, + ACTIONS(10523), 1, anon_sym_bit_DASHand, - ACTIONS(10986), 1, + ACTIONS(10525), 1, anon_sym_bit_DASHxor, - ACTIONS(10988), 1, + ACTIONS(10527), 1, anon_sym_bit_DASHor, - ACTIONS(10990), 1, + ACTIONS(10529), 1, anon_sym_and, - ACTIONS(10992), 1, + ACTIONS(10531), 1, anon_sym_xor, - ACTIONS(10994), 1, + ACTIONS(10533), 1, anon_sym_or, - STATE(6534), 1, + STATE(6165), 1, sym_comment, - ACTIONS(10966), 2, + ACTIONS(10505), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(10968), 2, + ACTIONS(10507), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10970), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10972), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10974), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10976), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10982), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1378), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(10978), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(10980), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - [202239] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6535), 1, - sym_comment, - ACTIONS(1190), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1192), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [202281] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6536), 1, - sym_comment, - ACTIONS(936), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(938), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [202323] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6537), 1, - sym_comment, - ACTIONS(1406), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1408), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [202365] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1370), 1, - sym__entry_separator, - STATE(6538), 1, - sym_comment, - ACTIONS(1368), 30, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, + ACTIONS(10509), 2, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [202407] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1412), 1, - sym__entry_separator, - STATE(6539), 1, - sym_comment, - ACTIONS(1410), 30, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + ACTIONS(10511), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, + ACTIONS(10513), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, + ACTIONS(10515), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, + ACTIONS(10521), 2, 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, - [202449] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6540), 1, - sym_comment, - ACTIONS(1406), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1408), 25, + ACTIONS(1181), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [202491] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1344), 1, - sym__entry_separator, - STATE(6541), 1, - sym_comment, - ACTIONS(1342), 30, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [202533] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6542), 1, - sym_comment, - ACTIONS(3960), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3962), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [202575] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9899), 1, - aux_sym_unquoted_token5, - STATE(6543), 1, - sym_comment, - ACTIONS(959), 11, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(961), 19, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [202619] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1370), 1, - sym__entry_separator, - STATE(6544), 1, - sym_comment, - ACTIONS(1368), 30, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [202661] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6545), 1, - sym_comment, - ACTIONS(5211), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5213), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [202703] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8570), 1, - aux_sym_unquoted_token5, - STATE(6546), 1, - sym_comment, - ACTIONS(959), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(961), 18, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(10517), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [202747] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6547), 1, - sym_comment, - ACTIONS(1332), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1334), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [202789] = 17, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1378), 1, - sym__entry_separator, - ACTIONS(10948), 1, - anon_sym_bit_DASHand, - ACTIONS(10950), 1, - anon_sym_bit_DASHxor, - ACTIONS(10952), 1, - anon_sym_bit_DASHor, - ACTIONS(10954), 1, - anon_sym_and, - ACTIONS(10956), 1, - anon_sym_xor, - ACTIONS(10996), 1, - anon_sym_or, - STATE(6548), 1, - sym_comment, - ACTIONS(1376), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(10936), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10942), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10944), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10946), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10938), 4, + ACTIONS(10519), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(10940), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10934), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [202857] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6549), 1, - sym_comment, - ACTIONS(1243), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1290), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [202899] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6550), 1, - sym_comment, - ACTIONS(1410), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1412), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [202941] = 4, + [204551] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1370), 1, - sym__entry_separator, - STATE(6551), 1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + STATE(6166), 1, sym_comment, - ACTIONS(1368), 30, - anon_sym_RBRACK, + ACTIONS(1135), 30, + sym_identifier, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -527133,12 +487991,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [202983] = 4, + [204593] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6552), 1, + STATE(6167), 1, sym_comment, - ACTIONS(1320), 8, + ACTIONS(1229), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -527147,7 +488005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1322), 23, + ACTIONS(1231), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -527171,32 +488029,35 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [203025] = 5, - ACTIONS(113), 1, + [204635] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1249), 1, - anon_sym_RBRACE, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - STATE(6553), 1, + ACTIONS(9239), 1, + aux_sym_unquoted_token5, + STATE(6168), 1, sym_comment, - ACTIONS(1247), 29, - anon_sym_COMMA, + ACTIONS(938), 11, + sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(940), 19, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -527207,18 +488068,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + [204679] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8013), 1, + aux_sym_unquoted_token5, + STATE(6169), 1, + sym_comment, + ACTIONS(938), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - [203069] = 4, + ACTIONS(940), 18, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [204723] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10998), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(6554), 1, + ACTIONS(1177), 1, + sym__entry_separator, + STATE(6170), 1, sym_comment, - ACTIONS(1243), 30, - anon_sym_COMMA, + ACTIONS(1175), 30, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -527248,52 +488145,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [203111] = 21, + [204765] = 21, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2795), 1, + ACTIONS(3116), 1, aux_sym__val_number_decimal_token1, - ACTIONS(2797), 1, + ACTIONS(3118), 1, aux_sym__val_number_decimal_token2, - ACTIONS(2801), 1, + ACTIONS(3122), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4611), 1, + ACTIONS(3938), 1, aux_sym_unquoted_token1, - ACTIONS(8444), 1, + ACTIONS(7909), 1, + sym_val_date, + ACTIONS(8127), 1, anon_sym_DOT_DOT, - ACTIONS(8448), 1, + ACTIONS(8131), 1, anon_sym_DOT2, - ACTIONS(8452), 1, - sym_val_date, - ACTIONS(10802), 1, + ACTIONS(10535), 1, anon_sym_DOLLAR, - STATE(1690), 1, + STATE(1438), 1, sym__var, - STATE(2500), 1, - sym_val_variable, - STATE(2501), 1, + STATE(2277), 1, sym_unquoted, - STATE(6555), 1, + STATE(2322), 1, + sym_val_variable, + STATE(6171), 1, sym_comment, - STATE(8428), 1, + STATE(8052), 1, sym__val_number_decimal, - STATE(10559), 1, + STATE(10155), 1, sym__val_range, - STATE(10861), 1, - sym_val_bool, - STATE(11114), 1, + STATE(10439), 1, sym__unquoted_anonymous_prefix, - ACTIONS(2793), 2, + STATE(10641), 1, + sym_val_bool, + ACTIONS(3114), 2, anon_sym_true, anon_sym_false, - ACTIONS(8446), 2, + ACTIONS(8129), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(8450), 3, + ACTIONS(8133), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - ACTIONS(3910), 9, + ACTIONS(3685), 9, anon_sym_null, anon_sym_err_GT, anon_sym_out_GT, @@ -527303,12 +488200,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [203187] = 4, + [204841] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6556), 1, + STATE(6172), 1, sym_comment, - ACTIONS(1059), 8, + ACTIONS(1051), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -527317,7 +488214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1061), 23, + ACTIONS(1053), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -527341,57 +488238,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [203229] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1296), 1, - sym__entry_separator, - STATE(6557), 1, - sym_comment, - ACTIONS(1294), 30, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [203271] = 4, + [204883] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1296), 1, - sym__entry_separator, - STATE(6558), 1, + ACTIONS(1161), 1, + anon_sym_LBRACE, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + STATE(6173), 1, sym_comment, - ACTIONS(1294), 30, - anon_sym_RBRACK, + ACTIONS(1159), 29, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -527417,12 +488277,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [203313] = 4, + [204927] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6559), 1, + STATE(6174), 1, sym_comment, - ACTIONS(3949), 8, + ACTIONS(1233), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -527431,7 +488291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3951), 23, + ACTIONS(1235), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -527455,12 +488315,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [203355] = 4, + [204969] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6560), 1, + STATE(6175), 1, sym_comment, - ACTIONS(1063), 8, + ACTIONS(4997), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -527469,7 +488329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1065), 23, + ACTIONS(4999), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -527493,133 +488353,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [203397] = 10, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1378), 1, - sym__entry_separator, - STATE(6561), 1, - sym_comment, - ACTIONS(10936), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10942), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10944), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10938), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10940), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10934), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1376), 10, - anon_sym_RBRACK, - anon_sym_RBRACE, - 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, - [203451] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6562), 1, - sym_comment, - ACTIONS(1298), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1300), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [203493] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1249), 1, - anon_sym_LBRACE, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - STATE(6563), 1, - sym_comment, - ACTIONS(1247), 29, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [203537] = 4, + [205011] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6564), 1, + STATE(6176), 1, sym_comment, - ACTIONS(3964), 8, + ACTIONS(5001), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -527628,7 +488367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3966), 23, + ACTIONS(5003), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -527652,50 +488391,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [203579] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6565), 1, - sym_comment, - ACTIONS(1286), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1288), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [203621] = 4, + [205053] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6566), 1, + STATE(6177), 1, sym_comment, - ACTIONS(5207), 8, + ACTIONS(5005), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -527704,7 +488405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5209), 23, + ACTIONS(5007), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -527728,76 +488429,71 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [203663] = 11, + [205095] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1378), 1, + ACTIONS(1227), 1, sym__entry_separator, - STATE(6567), 1, + STATE(6178), 1, sym_comment, - ACTIONS(10936), 2, + ACTIONS(1225), 30, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10942), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10944), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10946), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10938), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10940), 4, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10934), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1376), 8, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [203719] = 4, - ACTIONS(113), 1, + [205137] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1370), 1, - sym__entry_separator, - STATE(6568), 1, + STATE(6179), 1, sym_comment, - ACTIONS(1368), 30, - anon_sym_RBRACK, + ACTIONS(1047), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1049), 19, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -527808,15 +488504,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [203761] = 4, + anon_sym_DOT, + [205179] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6569), 1, + STATE(6180), 1, sym_comment, - ACTIONS(1194), 8, + ACTIONS(5019), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -527825,7 +488519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1196), 23, + ACTIONS(5021), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -527849,12 +488543,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [203803] = 4, + [205221] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6570), 1, + STATE(6181), 1, sym_comment, - ACTIONS(1336), 8, + ACTIONS(1279), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -527863,7 +488557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1338), 23, + ACTIONS(1281), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -527887,12 +488581,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [203845] = 4, + [205263] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6571), 1, + STATE(6182), 1, sym_comment, - ACTIONS(1362), 8, + ACTIONS(1165), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -527901,7 +488595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1364), 23, + ACTIONS(1167), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -527925,23 +488619,21 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [203887] = 6, + [205305] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11000), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11002), 1, - aux_sym_unquoted_token2, - STATE(6572), 1, + STATE(6183), 1, sym_comment, - ACTIONS(936), 5, + ACTIONS(920), 6, anon_sym_GT, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(938), 24, - anon_sym_DASH, + ACTIONS(922), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, anon_sym_STAR_STAR, @@ -527965,31 +488657,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [203933] = 4, - ACTIONS(113), 1, + [205347] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1370), 1, - sym__entry_separator, - STATE(6573), 1, + STATE(6184), 1, sym_comment, - ACTIONS(1368), 30, - anon_sym_RBRACK, + ACTIONS(1037), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1039), 19, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -528000,15 +488694,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [203975] = 4, + anon_sym_DOT, + [205389] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6574), 1, + STATE(6185), 1, sym_comment, - ACTIONS(1168), 8, + ACTIONS(5023), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -528017,7 +488709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1170), 23, + ACTIONS(5025), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -528041,69 +488733,31 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [204017] = 4, - ACTIONS(113), 1, + [205431] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1364), 1, - sym__entry_separator, - STATE(6575), 1, + STATE(6186), 1, sym_comment, - ACTIONS(1362), 30, - anon_sym_RBRACK, + ACTIONS(1155), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [204059] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1348), 1, - sym__entry_separator, - STATE(6576), 1, - sym_comment, - ACTIONS(1346), 30, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DASH, + ACTIONS(1157), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -528117,147 +488771,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [204101] = 4, + [205473] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6577), 1, + STATE(6187), 1, sym_comment, - ACTIONS(1414), 8, - anon_sym_DOLLAR, + ACTIONS(1041), 12, + sym_identifier, + anon_sym_GT, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1416), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [204143] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1378), 1, - sym__entry_separator, - STATE(6578), 1, - sym_comment, - ACTIONS(10942), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10940), 4, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1376), 24, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [204189] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6579), 1, - sym_comment, - ACTIONS(4043), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4045), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [204231] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1370), 1, - sym__entry_separator, - STATE(6580), 1, - sym_comment, - ACTIONS(1368), 30, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + ACTIONS(1043), 19, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -528268,15 +488808,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [204273] = 4, + anon_sym_DOT, + [205515] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6581), 1, + STATE(6188), 1, sym_comment, - ACTIONS(5075), 8, + ACTIONS(5027), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -528285,7 +488823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5079), 23, + ACTIONS(5029), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -528309,52 +488847,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [204315] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6582), 1, - sym_comment, - ACTIONS(1362), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1364), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [204357] = 4, + [205557] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1251), 1, + ACTIONS(1163), 1, aux_sym_unquoted_token6, - STATE(6583), 1, + STATE(6189), 1, sym_comment, - ACTIONS(1247), 30, + ACTIONS(1159), 30, sym_identifier, anon_sym_DOLLAR, anon_sym_GT, @@ -528385,19 +488885,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [204399] = 4, + [205599] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6584), 1, + STATE(6190), 1, sym_comment, - ACTIONS(959), 6, + ACTIONS(1051), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(961), 25, + ACTIONS(1053), 25, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, @@ -528423,50 +488923,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [204441] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(10998), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(6585), 1, - sym_comment, - ACTIONS(1243), 30, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [204483] = 4, + [205641] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6586), 1, + STATE(6191), 1, sym_comment, - ACTIONS(1418), 8, + ACTIONS(5031), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -528475,7 +488937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1420), 23, + ACTIONS(5033), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -528499,12 +488961,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [204525] = 4, + [205683] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6587), 1, + STATE(6192), 1, sym_comment, - ACTIONS(2437), 8, + ACTIONS(5213), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -528513,7 +488975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2439), 23, + ACTIONS(5215), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -528537,12 +488999,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [204567] = 4, + [205725] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6588), 1, + STATE(6193), 1, sym_comment, - ACTIONS(2547), 8, + ACTIONS(5217), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -528551,7 +489013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2549), 23, + ACTIONS(5219), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -528575,31 +489037,31 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [204609] = 4, - ACTIONS(3), 1, + [205767] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(6589), 1, + ACTIONS(1157), 1, + sym__entry_separator, + STATE(6194), 1, sym_comment, - ACTIONS(1418), 6, + ACTIONS(1155), 30, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1420), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -528613,19 +489075,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [204651] = 4, + [205809] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6590), 1, + STATE(6195), 1, sym_comment, - ACTIONS(1158), 6, + ACTIONS(1225), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1160), 25, + ACTIONS(1227), 25, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, @@ -528651,77 +489113,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [204693] = 12, + [205851] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1378), 1, - sym__entry_separator, - ACTIONS(10948), 1, - anon_sym_bit_DASHand, - STATE(6591), 1, + ACTIONS(1157), 1, + anon_sym_LBRACE, + STATE(6196), 1, sym_comment, - ACTIONS(10936), 2, + ACTIONS(1155), 30, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10942), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10944), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10946), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10938), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10940), 4, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10934), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1376), 7, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [204751] = 4, - ACTIONS(113), 1, + aux_sym_unquoted_token6, + [205893] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11004), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(6592), 1, + STATE(6197), 1, sym_comment, - ACTIONS(1243), 30, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(1265), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1267), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -528735,69 +489189,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [204793] = 4, + [205935] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6593), 1, - sym_comment, - ACTIONS(1308), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1310), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [204835] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1374), 1, - sym__entry_separator, - STATE(6594), 1, + STATE(6198), 1, sym_comment, - ACTIONS(1372), 30, - anon_sym_RBRACK, + ACTIONS(1265), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1267), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -528811,31 +489227,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [204877] = 4, - ACTIONS(113), 1, + [205977] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1310), 1, - sym__entry_separator, - STATE(6595), 1, + STATE(6199), 1, sym_comment, - ACTIONS(1308), 30, - anon_sym_RBRACK, + ACTIONS(1271), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1273), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -528849,31 +489265,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [204919] = 4, - ACTIONS(113), 1, + [206019] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1314), 1, - sym__entry_separator, - STATE(6596), 1, + STATE(6200), 1, sym_comment, - ACTIONS(1312), 30, - anon_sym_RBRACK, + ACTIONS(1275), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1277), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -528887,38 +489303,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [204961] = 9, + [206061] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1378), 1, + ACTIONS(1263), 1, sym__entry_separator, - STATE(6597), 1, + STATE(6201), 1, sym_comment, - ACTIONS(10936), 2, + ACTIONS(1261), 30, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10942), 2, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10944), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10940), 4, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10934), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1376), 14, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_RBRACE, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -528930,68 +489341,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [205013] = 14, + [206103] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1378), 1, + ACTIONS(1181), 1, sym__entry_separator, - ACTIONS(10948), 1, + ACTIONS(10483), 1, anon_sym_bit_DASHand, - ACTIONS(10950), 1, + ACTIONS(10485), 1, anon_sym_bit_DASHxor, - ACTIONS(10952), 1, - anon_sym_bit_DASHor, - STATE(6598), 1, + STATE(6202), 1, sym_comment, - ACTIONS(10936), 2, + ACTIONS(10471), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10942), 2, + ACTIONS(10475), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10944), 2, + ACTIONS(10477), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10946), 2, + ACTIONS(10481), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10938), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10940), 4, + ACTIONS(10473), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1376), 5, + ACTIONS(10479), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1179), 6, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(10934), 6, + ACTIONS(10469), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [205075] = 5, + [206163] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1160), 1, - anon_sym_RBRACE, - ACTIONS(1284), 1, - aux_sym_unquoted_token6, - STATE(6599), 1, + ACTIONS(10465), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(6203), 1, sym_comment, - ACTIONS(1158), 29, - anon_sym_COMMA, + ACTIONS(1139), 29, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -529017,67 +489425,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [205119] = 4, + [206204] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6600), 1, - sym_comment, - ACTIONS(1312), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1314), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [205161] = 3, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(6601), 1, + STATE(6204), 1, sym_comment, - ACTIONS(1280), 31, + ACTIONS(1275), 11, sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1277), 19, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -529088,149 +489462,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - aux_sym_unquoted_token6, - [205201] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6602), 1, - sym_comment, - ACTIONS(5187), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5189), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [205243] = 4, + [206245] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6603), 1, + STATE(6205), 1, sym_comment, - ACTIONS(5191), 8, + ACTIONS(1171), 11, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1173), 19, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5193), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [205285] = 4, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [206286] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6604), 1, - sym_comment, - ACTIONS(5195), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5197), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [205327] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1370), 1, - sym__entry_separator, - STATE(6605), 1, + STATE(6206), 1, sym_comment, - ACTIONS(1368), 30, - anon_sym_RBRACK, + ACTIONS(1171), 11, + sym_identifier, anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1173), 19, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -529241,35 +489536,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [205369] = 5, - ACTIONS(113), 1, + [206327] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1378), 1, - sym__entry_separator, - STATE(6606), 1, + STATE(6207), 1, sym_comment, - ACTIONS(10942), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(1376), 28, - anon_sym_RBRACK, + ACTIONS(1171), 11, + sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1173), 19, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -529280,55 +489573,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [205413] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6607), 1, - sym_comment, - ACTIONS(1346), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1348), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [205455] = 5, + [206368] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11006), 1, - anon_sym_LBRACK2, - STATE(6608), 1, + STATE(6208), 1, sym_comment, - ACTIONS(1259), 11, + ACTIONS(1171), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -529340,7 +489590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1261), 19, + ACTIONS(1173), 19, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_STAR_STAR, @@ -529360,31 +489610,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [205499] = 4, - ACTIONS(113), 1, + [206409] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(961), 1, - sym__entry_separator, - STATE(6609), 1, + STATE(6209), 1, sym_comment, - ACTIONS(959), 30, - anon_sym_RBRACK, + ACTIONS(1283), 11, + sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1285), 19, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -529395,61 +489647,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [205541] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6610), 1, - sym_comment, - ACTIONS(1158), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1160), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [205583] = 5, + [206450] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1255), 1, - anon_sym_RBRACE, - ACTIONS(1257), 1, + ACTIONS(1163), 1, aux_sym_unquoted_token6, - STATE(6611), 1, + STATE(6210), 1, sym_comment, - ACTIONS(1253), 29, - anon_sym_COMMA, + ACTIONS(1159), 29, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_EQ_GT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -529475,20 +489684,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [205627] = 5, + [206491] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - ACTIONS(1275), 1, - anon_sym_RBRACE, - STATE(6612), 1, + STATE(6211), 1, sym_comment, - ACTIONS(1273), 29, - anon_sym_COMMA, + ACTIONS(1155), 30, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_EQ_GT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -529514,29 +489719,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [205671] = 7, + aux_sym_unquoted_token6, + [206530] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10958), 1, - anon_sym_DOT_DOT2, - ACTIONS(11008), 1, - anon_sym_in, - STATE(6613), 1, + STATE(6212), 1, sym_comment, - ACTIONS(10960), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1198), 5, + ACTIONS(1171), 11, + sym_identifier, anon_sym_GT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1366), 22, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1173), 19, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -529552,22 +489757,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [205719] = 4, + [206571] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1160), 1, - sym__entry_separator, - STATE(6614), 1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + STATE(6213), 1, sym_comment, - ACTIONS(1158), 30, - anon_sym_RBRACK, + ACTIONS(1129), 29, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -529593,19 +489794,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [205761] = 4, + [206612] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10918), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(6615), 1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + STATE(6214), 1, sym_comment, - ACTIONS(1243), 30, + ACTIONS(1135), 29, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -529631,31 +489831,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [205803] = 4, - ACTIONS(113), 1, + [206653] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1304), 1, - sym__entry_separator, - STATE(6616), 1, + STATE(6215), 1, sym_comment, - ACTIONS(1302), 30, - anon_sym_RBRACK, + ACTIONS(1171), 11, + sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1173), 19, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -529666,60 +489868,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [205845] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6617), 1, - sym_comment, - ACTIONS(1350), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1352), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [205887] = 4, + [206694] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1334), 1, - sym__entry_separator, - STATE(6618), 1, + ACTIONS(1157), 1, + anon_sym_LBRACE, + STATE(6216), 1, sym_comment, - ACTIONS(1332), 30, - anon_sym_RBRACK, + ACTIONS(1155), 29, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -529745,31 +489904,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [205929] = 4, - ACTIONS(113), 1, + aux_sym_unquoted_token6, + [206735] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1338), 1, - sym__entry_separator, - STATE(6619), 1, + STATE(6217), 1, sym_comment, - ACTIONS(1336), 30, - anon_sym_RBRACK, + ACTIONS(1229), 11, + sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1231), 19, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -529780,303 +489942,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [205971] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6620), 1, - sym_comment, - ACTIONS(5215), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5217), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [206013] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6621), 1, - sym_comment, - ACTIONS(5219), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5221), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [206055] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6622), 1, - sym_comment, - ACTIONS(5223), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5225), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [206097] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6623), 1, - sym_comment, - ACTIONS(5227), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5229), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [206139] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6624), 1, - sym_comment, - ACTIONS(5231), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5233), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [206181] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6625), 1, - sym_comment, - ACTIONS(5235), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5237), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [206223] = 4, + [206776] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6626), 1, + STATE(6218), 1, sym_comment, - ACTIONS(1302), 8, + ACTIONS(1245), 11, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1247), 19, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1304), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [206265] = 9, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [206817] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11011), 1, - anon_sym_DASH, - ACTIONS(11017), 1, - anon_sym_SLASH_SLASH, - ACTIONS(11019), 1, - anon_sym_PLUS, - STATE(6627), 1, + STATE(6219), 1, sym_comment, - ACTIONS(11015), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(11013), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(1376), 7, + ACTIONS(1171), 11, sym_identifier, anon_sym_GT, anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1378), 15, + ACTIONS(1173), 19, anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -530091,12 +490016,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [206316] = 4, + [206858] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6628), 1, + STATE(6220), 1, sym_comment, - ACTIONS(1368), 11, + ACTIONS(1171), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -530108,7 +490033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1370), 19, + ACTIONS(1173), 19, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_STAR_STAR, @@ -530128,12 +490053,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [206357] = 4, + [206899] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6629), 1, + STATE(6221), 1, sym_comment, - ACTIONS(1350), 11, + ACTIONS(1171), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -530145,7 +490070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1352), 19, + ACTIONS(1173), 19, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_STAR_STAR, @@ -530165,30 +490090,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [206398] = 4, - ACTIONS(3), 1, + [206940] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(6630), 1, + ACTIONS(1161), 1, + sym__entry_separator, + STATE(6222), 1, sym_comment, - ACTIONS(1247), 6, + ACTIONS(1159), 29, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1249), 24, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -530202,115 +490127,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [206439] = 19, + [206981] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1378), 1, + STATE(6223), 1, + sym_comment, + ACTIONS(1171), 11, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1173), 19, anon_sym_DOLLAR, - ACTIONS(11011), 1, anon_sym_DASH, - ACTIONS(11017), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, - ACTIONS(11019), 1, - anon_sym_PLUS, - ACTIONS(11023), 1, - anon_sym_in, - ACTIONS(11033), 1, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(11035), 1, anon_sym_bit_DASHxor, - ACTIONS(11037), 1, anon_sym_bit_DASHor, - ACTIONS(11039), 1, - anon_sym_and, - STATE(6631), 1, + [207022] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6224), 1, sym_comment, - ACTIONS(11015), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(11021), 2, + ACTIONS(1171), 11, + sym_identifier, anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, anon_sym_LT2, - ACTIONS(11025), 2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1173), 19, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11031), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1376), 3, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [207063] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6225), 1, + sym_comment, + ACTIONS(1171), 11, sym_identifier, - anon_sym_xor, - anon_sym_or, - ACTIONS(11013), 3, + anon_sym_GT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(11029), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(11027), 4, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1173), 19, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [206510] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11043), 1, - anon_sym_DASH, - ACTIONS(11053), 1, - anon_sym_PLUS, - ACTIONS(11061), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(11063), 1, anon_sym_bit_DASHxor, - ACTIONS(11065), 1, anon_sym_bit_DASHor, - ACTIONS(11067), 1, - anon_sym_and, - ACTIONS(11069), 1, - anon_sym_xor, - STATE(6632), 1, + [207104] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6226), 1, sym_comment, - ACTIONS(11041), 2, + ACTIONS(938), 11, + sym_identifier, anon_sym_GT, - anon_sym_LT2, - ACTIONS(11047), 2, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11049), 2, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(940), 19, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11051), 2, - anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11055), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11059), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1378), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_or, - ACTIONS(11045), 4, - anon_sym_in, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(11057), 4, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [207145] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1072), 1, + sym_identifier, + ACTIONS(1074), 1, + anon_sym_DOLLAR, + STATE(6227), 1, + sym_comment, + ACTIONS(1076), 10, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1169), 18, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [206579] = 4, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [207190] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6633), 1, + STATE(6228), 1, sym_comment, - ACTIONS(1346), 11, + ACTIONS(1175), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -530322,7 +490331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1348), 19, + ACTIONS(1177), 19, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_STAR_STAR, @@ -530342,12 +490351,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [206620] = 4, + [207231] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6634), 1, + STATE(6229), 1, sym_comment, - ACTIONS(936), 11, + ACTIONS(1253), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -530359,7 +490368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(938), 19, + ACTIONS(1255), 19, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_STAR_STAR, @@ -530379,30 +490388,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [206661] = 8, + [207272] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6635), 1, + STATE(6230), 1, sym_comment, - ACTIONS(1376), 2, + ACTIONS(1287), 11, + sym_identifier, anon_sym_GT, - anon_sym_LT2, - ACTIONS(11071), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11073), 2, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11075), 2, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1289), 19, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11077), 2, - anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1378), 20, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -530417,42 +490425,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [206710] = 11, + [207313] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11043), 1, - anon_sym_DASH, - ACTIONS(11053), 1, - anon_sym_PLUS, - STATE(6636), 1, + ACTIONS(9209), 1, + aux_sym_unquoted_token5, + STATE(6231), 1, sym_comment, - ACTIONS(11041), 2, + ACTIONS(938), 5, anon_sym_GT, - anon_sym_LT2, - ACTIONS(11047), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11049), 2, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(940), 24, + anon_sym_DASH, + anon_sym_in, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11051), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11055), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11057), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1378), 14, - anon_sym_COMMA, - anon_sym_in, - anon_sym_RBRACE, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -530464,111 +490463,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [206765] = 13, + [207356] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11081), 1, + ACTIONS(1181), 1, + anon_sym_DOLLAR, + ACTIONS(10539), 1, anon_sym_DASH, - ACTIONS(11091), 1, + ACTIONS(10541), 1, + anon_sym_in, + ACTIONS(10547), 1, + anon_sym_SLASH_SLASH, + ACTIONS(10549), 1, anon_sym_PLUS, - STATE(6637), 1, + ACTIONS(10559), 1, + anon_sym_bit_DASHand, + ACTIONS(10561), 1, + anon_sym_bit_DASHxor, + ACTIONS(10563), 1, + anon_sym_bit_DASHor, + ACTIONS(10565), 1, + anon_sym_and, + ACTIONS(10567), 1, + anon_sym_xor, + STATE(6232), 1, sym_comment, - ACTIONS(11079), 2, + ACTIONS(1179), 2, + sym_identifier, + anon_sym_or, + ACTIONS(10537), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(11085), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(11087), 2, + ACTIONS(10545), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11089), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(11093), 2, + ACTIONS(10551), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11097), 2, + ACTIONS(10557), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(11083), 4, - anon_sym_in, + ACTIONS(10543), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(10555), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(11095), 4, + ACTIONS(10553), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1378), 8, + [207429] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6233), 1, + sym_comment, + ACTIONS(1051), 11, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1053), 19, anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [207470] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1091), 1, anon_sym_LBRACE, + ACTIONS(1149), 1, + aux_sym_unquoted_token6, + STATE(6234), 1, + sym_comment, + ACTIONS(1089), 28, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [206824] = 14, + [207513] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11081), 1, - anon_sym_DASH, - ACTIONS(11091), 1, - anon_sym_PLUS, - ACTIONS(11099), 1, - anon_sym_bit_DASHand, - STATE(6638), 1, + STATE(6235), 1, sym_comment, - ACTIONS(11079), 2, + ACTIONS(1155), 11, + sym_identifier, anon_sym_GT, - anon_sym_LT2, - ACTIONS(11085), 2, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11087), 2, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1157), 19, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11089), 2, - anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11093), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11097), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(11083), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(11095), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1378), 7, - anon_sym_DOLLAR, - anon_sym_LBRACE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [206885] = 4, + [207554] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10998), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(6639), 1, + ACTIONS(1149), 1, + aux_sym_unquoted_token6, + STATE(6236), 1, sym_comment, - ACTIONS(1243), 29, + ACTIONS(1089), 29, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -530594,83 +490665,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [206926] = 20, + [207595] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1378), 1, + ACTIONS(1181), 1, anon_sym_DOLLAR, - ACTIONS(11011), 1, + ACTIONS(10539), 1, anon_sym_DASH, - ACTIONS(11017), 1, + ACTIONS(10541), 1, + anon_sym_in, + ACTIONS(10547), 1, anon_sym_SLASH_SLASH, - ACTIONS(11019), 1, + ACTIONS(10549), 1, anon_sym_PLUS, - ACTIONS(11023), 1, - anon_sym_in, - ACTIONS(11033), 1, + ACTIONS(10559), 1, anon_sym_bit_DASHand, - ACTIONS(11035), 1, + ACTIONS(10561), 1, anon_sym_bit_DASHxor, - ACTIONS(11037), 1, + ACTIONS(10563), 1, anon_sym_bit_DASHor, - ACTIONS(11039), 1, - anon_sym_and, - ACTIONS(11101), 1, - anon_sym_xor, - STATE(6640), 1, + STATE(6237), 1, sym_comment, - ACTIONS(1376), 2, - sym_identifier, - anon_sym_or, - ACTIONS(11015), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(11021), 2, + ACTIONS(10537), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(11025), 2, + ACTIONS(10545), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10551), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11031), 2, + ACTIONS(10557), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(11013), 3, + ACTIONS(10543), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(11029), 3, + ACTIONS(10555), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(11027), 4, + ACTIONS(1179), 4, + sym_identifier, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(10553), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [206999] = 3, - ACTIONS(113), 1, + [207664] = 10, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6641), 1, + STATE(6238), 1, sym_comment, - ACTIONS(1280), 30, + ACTIONS(10569), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(10571), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_EQ_GT, + anon_sym_PLUS, + ACTIONS(10573), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10575), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, + ACTIONS(10577), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, + ACTIONS(10579), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(1181), 14, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -530682,111 +490759,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - aux_sym_unquoted_token6, - [207038] = 21, + [207717] = 21, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1376), 1, + ACTIONS(1179), 1, sym_identifier, - ACTIONS(1378), 1, + ACTIONS(1181), 1, anon_sym_DOLLAR, - ACTIONS(11011), 1, + ACTIONS(10539), 1, anon_sym_DASH, - ACTIONS(11017), 1, + ACTIONS(10541), 1, + anon_sym_in, + ACTIONS(10547), 1, anon_sym_SLASH_SLASH, - ACTIONS(11019), 1, + ACTIONS(10549), 1, anon_sym_PLUS, - ACTIONS(11023), 1, - anon_sym_in, - ACTIONS(11033), 1, + ACTIONS(10559), 1, anon_sym_bit_DASHand, - ACTIONS(11035), 1, + ACTIONS(10561), 1, anon_sym_bit_DASHxor, - ACTIONS(11037), 1, + ACTIONS(10563), 1, anon_sym_bit_DASHor, - ACTIONS(11039), 1, + ACTIONS(10565), 1, anon_sym_and, - ACTIONS(11101), 1, + ACTIONS(10567), 1, anon_sym_xor, - ACTIONS(11103), 1, + ACTIONS(10583), 1, anon_sym_or, - STATE(6642), 1, + STATE(6239), 1, sym_comment, - ACTIONS(11015), 2, + ACTIONS(10537), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10545), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11021), 2, + ACTIONS(10551), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10557), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10543), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(10555), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10553), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [207792] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10539), 1, + anon_sym_DASH, + ACTIONS(10541), 1, + anon_sym_in, + ACTIONS(10547), 1, + anon_sym_SLASH_SLASH, + ACTIONS(10549), 1, + anon_sym_PLUS, + ACTIONS(10559), 1, + anon_sym_bit_DASHand, + ACTIONS(10561), 1, + anon_sym_bit_DASHxor, + STATE(6240), 1, + sym_comment, + ACTIONS(1181), 2, + anon_sym_DOLLAR, + anon_sym_bit_DASHor, + ACTIONS(10537), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(11025), 2, + ACTIONS(10545), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10551), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11031), 2, + ACTIONS(10557), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(11013), 3, + ACTIONS(10543), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(11029), 3, + ACTIONS(10555), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(11027), 4, + ACTIONS(1179), 4, + sym_identifier, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(10553), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [207113] = 11, + [207859] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6643), 1, + STATE(6241), 1, sym_comment, - ACTIONS(11071), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11073), 2, + ACTIONS(1257), 11, + sym_identifier, + anon_sym_GT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11075), 2, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1259), 19, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11077), 2, - anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11105), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(11109), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11107), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(11111), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1378), 10, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [207168] = 4, + [207900] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6644), 1, + STATE(6242), 1, sym_comment, - ACTIONS(1368), 11, + ACTIONS(1233), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -530798,7 +490917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1370), 19, + ACTIONS(1235), 19, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_STAR_STAR, @@ -530818,60 +490937,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [207209] = 15, + [207941] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11081), 1, - anon_sym_DASH, - ACTIONS(11091), 1, - anon_sym_PLUS, - ACTIONS(11099), 1, - anon_sym_bit_DASHand, - ACTIONS(11113), 1, - anon_sym_bit_DASHxor, - STATE(6645), 1, + STATE(6243), 1, sym_comment, - ACTIONS(11079), 2, + ACTIONS(1179), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(11085), 2, + ACTIONS(10571), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10573), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11087), 2, + ACTIONS(10575), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11089), 2, + ACTIONS(10577), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11093), 2, + ACTIONS(1181), 20, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11097), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(11083), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(11095), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1378), 6, - anon_sym_DOLLAR, - anon_sym_LBRACE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [207272] = 4, + [207990] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6646), 1, + STATE(6244), 1, sym_comment, - ACTIONS(1368), 11, + ACTIONS(1249), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -530883,7 +490995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1370), 19, + ACTIONS(1251), 19, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_STAR_STAR, @@ -530903,38 +491015,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [207313] = 7, + [208031] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(6647), 1, + STATE(6245), 1, sym_comment, - ACTIONS(11073), 2, + ACTIONS(10569), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10571), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10573), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11075), 2, + ACTIONS(10575), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11077), 2, + ACTIONS(10577), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1376), 4, - anon_sym_GT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1378), 20, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, + ACTIONS(10579), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(10585), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + ACTIONS(1181), 10, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_bit_DASHand, @@ -530943,16 +491059,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [207360] = 5, + [208086] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1255), 1, - anon_sym_LBRACE, - ACTIONS(1257), 1, + ACTIONS(1133), 1, aux_sym_unquoted_token6, - STATE(6648), 1, + ACTIONS(1137), 1, + anon_sym_LBRACE, + STATE(6246), 1, sym_comment, - ACTIONS(1253), 28, + ACTIONS(1135), 28, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -530981,80 +491097,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [207403] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11081), 1, - anon_sym_DASH, - ACTIONS(11091), 1, - anon_sym_PLUS, - ACTIONS(11099), 1, - anon_sym_bit_DASHand, - ACTIONS(11113), 1, - anon_sym_bit_DASHxor, - ACTIONS(11115), 1, - anon_sym_bit_DASHor, - STATE(6649), 1, - sym_comment, - ACTIONS(11079), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(11085), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(11087), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(11089), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(11093), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(11097), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(11083), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(11095), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1378), 5, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [207468] = 5, - ACTIONS(3), 1, + [208129] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9820), 1, - aux_sym_unquoted_token5, - STATE(6650), 1, + ACTIONS(1131), 1, + sym__entry_separator, + STATE(6247), 1, sym_comment, - ACTIONS(959), 5, + ACTIONS(1129), 29, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(961), 24, anon_sym_DASH, anon_sym_in, - anon_sym_EQ_GT, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -531068,31 +491134,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [207511] = 5, - ACTIONS(3), 1, + [208170] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(6651), 1, + ACTIONS(1137), 1, + sym__entry_separator, + STATE(6248), 1, sym_comment, - ACTIONS(11075), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(1376), 6, + ACTIONS(1135), 29, anon_sym_GT, anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1378), 22, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -531106,12 +491171,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [207554] = 4, + [208211] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6652), 1, + STATE(6249), 1, sym_comment, - ACTIONS(1294), 11, + ACTIONS(1261), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -531123,7 +491188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1296), 19, + ACTIONS(1263), 19, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_STAR_STAR, @@ -531143,29 +491208,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [207595] = 4, + [208252] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(6653), 1, + STATE(6250), 1, sym_comment, - ACTIONS(1368), 11, - sym_identifier, - anon_sym_GT, - anon_sym_in, + ACTIONS(10573), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1370), 19, - anon_sym_DOLLAR, - anon_sym_DASH, + ACTIONS(10575), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10577), 2, + anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(1179), 4, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1181), 20, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -531180,12 +491245,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [207636] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [208299] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6654), 1, + STATE(6251), 1, sym_comment, - ACTIONS(1368), 11, + ACTIONS(1093), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -531197,7 +491265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1370), 19, + ACTIONS(1095), 19, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_STAR_STAR, @@ -531217,29 +491285,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [207677] = 4, + [208340] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(6655), 1, + ACTIONS(10589), 1, + anon_sym_DASH, + ACTIONS(10597), 1, + anon_sym_PLUS, + STATE(6252), 1, sym_comment, - ACTIONS(1190), 11, - sym_identifier, + ACTIONS(10587), 2, anon_sym_GT, - anon_sym_in, + anon_sym_LT2, + ACTIONS(10591), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(10593), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10595), 2, anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, + anon_sym_SLASH_SLASH, + ACTIONS(10599), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10601), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1181), 14, + anon_sym_COMMA, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1192), 19, - anon_sym_DOLLAR, + [208395] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10589), 1, anon_sym_DASH, + ACTIONS(10597), 1, + anon_sym_PLUS, + STATE(6253), 1, + sym_comment, + ACTIONS(1179), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10591), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10593), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10595), 2, + anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(1181), 20, + anon_sym_COMMA, + anon_sym_in, + anon_sym_RBRACE, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -531254,77 +491368,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [207718] = 17, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [208446] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11081), 1, + ACTIONS(10589), 1, anon_sym_DASH, - ACTIONS(11091), 1, + ACTIONS(10597), 1, anon_sym_PLUS, - ACTIONS(11099), 1, - anon_sym_bit_DASHand, - ACTIONS(11113), 1, - anon_sym_bit_DASHxor, - ACTIONS(11115), 1, - anon_sym_bit_DASHor, - ACTIONS(11117), 1, - anon_sym_and, - STATE(6656), 1, + STATE(6254), 1, sym_comment, - ACTIONS(11079), 2, + ACTIONS(10587), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(11085), 2, + ACTIONS(10591), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11087), 2, + ACTIONS(10593), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11089), 2, + ACTIONS(10595), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11093), 2, + ACTIONS(10599), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11097), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1378), 4, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_xor, - anon_sym_or, - ACTIONS(11083), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(11095), 4, + ACTIONS(10601), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [207785] = 5, + ACTIONS(10603), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1181), 10, + anon_sym_COMMA, + anon_sym_RBRACE, + 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, + [208503] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(6657), 1, + STATE(6255), 1, sym_comment, - ACTIONS(6329), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1298), 5, - anon_sym_GT, + ACTIONS(10591), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1300), 23, - anon_sym_DASH, - anon_sym_in, + ACTIONS(10593), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10595), 2, anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(1179), 3, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1181), 21, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -531342,12 +491456,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [207828] = 4, + [208550] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6658), 1, + STATE(6256), 1, sym_comment, - ACTIONS(1316), 11, + ACTIONS(1171), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -531359,7 +491473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1318), 19, + ACTIONS(1173), 19, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_STAR_STAR, @@ -531379,33 +491493,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [207869] = 9, + [208591] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(6659), 1, + ACTIONS(10589), 1, + anon_sym_DASH, + ACTIONS(10597), 1, + anon_sym_PLUS, + STATE(6257), 1, sym_comment, - ACTIONS(1376), 2, + ACTIONS(1179), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(11071), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11073), 2, + ACTIONS(10591), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11075), 2, + ACTIONS(10593), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11077), 2, + ACTIONS(10595), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11109), 2, + ACTIONS(10599), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(1378), 18, - anon_sym_DASH_DASH, + ACTIONS(1181), 18, + anon_sym_COMMA, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -531421,135 +491536,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [207920] = 19, + [208644] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11043), 1, + ACTIONS(10589), 1, anon_sym_DASH, - ACTIONS(11053), 1, + ACTIONS(10597), 1, anon_sym_PLUS, - ACTIONS(11061), 1, - anon_sym_bit_DASHand, - ACTIONS(11063), 1, - anon_sym_bit_DASHxor, - ACTIONS(11065), 1, - anon_sym_bit_DASHor, - ACTIONS(11067), 1, - anon_sym_and, - ACTIONS(11069), 1, - anon_sym_xor, - ACTIONS(11119), 1, - anon_sym_or, - STATE(6660), 1, + STATE(6258), 1, sym_comment, - ACTIONS(1378), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(11041), 2, + ACTIONS(10587), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(11047), 2, + ACTIONS(10591), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11049), 2, + ACTIONS(10593), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11051), 2, + ACTIONS(10595), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11055), 2, + ACTIONS(10599), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11059), 2, + ACTIONS(10605), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(11045), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(11057), 4, + ACTIONS(10601), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [207991] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11081), 1, - anon_sym_DASH, - ACTIONS(11091), 1, - anon_sym_PLUS, - ACTIONS(11099), 1, + ACTIONS(10603), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1181), 8, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_bit_DASHand, - ACTIONS(11113), 1, anon_sym_bit_DASHxor, - ACTIONS(11115), 1, anon_sym_bit_DASHor, - ACTIONS(11117), 1, anon_sym_and, - ACTIONS(11121), 1, anon_sym_xor, - STATE(6661), 1, + anon_sym_or, + [208703] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10539), 1, + anon_sym_DASH, + ACTIONS(10547), 1, + anon_sym_SLASH_SLASH, + ACTIONS(10549), 1, + anon_sym_PLUS, + STATE(6259), 1, sym_comment, - ACTIONS(11079), 2, + ACTIONS(10537), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(11085), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(11087), 2, + ACTIONS(10545), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11089), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(11093), 2, + ACTIONS(10551), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11097), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1378), 3, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_or, - ACTIONS(11083), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(11095), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [208060] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1275), 1, - sym__entry_separator, - STATE(6662), 1, - sym_comment, - ACTIONS(1273), 29, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, + ACTIONS(10543), 3, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(10553), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(1179), 5, + sym_identifier, + anon_sym_in, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1181), 9, + anon_sym_DOLLAR, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -531558,56 +491627,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [208101] = 4, + [208760] = 14, ACTIONS(3), 1, anon_sym_POUND, - STATE(6663), 1, + ACTIONS(10589), 1, + anon_sym_DASH, + ACTIONS(10597), 1, + anon_sym_PLUS, + ACTIONS(10607), 1, + anon_sym_bit_DASHand, + STATE(6260), 1, sym_comment, - ACTIONS(1414), 11, - sym_identifier, + ACTIONS(10587), 2, anon_sym_GT, - anon_sym_in, + anon_sym_LT2, + ACTIONS(10591), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1416), 19, - anon_sym_DOLLAR, - anon_sym_DASH, + ACTIONS(10593), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10595), 2, + anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(10599), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10605), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10601), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(10603), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, + ACTIONS(1181), 7, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [208142] = 6, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [208821] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1194), 1, - sym_identifier, - ACTIONS(1196), 1, - anon_sym_DOLLAR, - STATE(6664), 1, + STATE(6261), 1, sym_comment, - ACTIONS(1198), 10, + ACTIONS(1225), 11, + sym_identifier, anon_sym_GT, anon_sym_in, anon_sym_STAR, @@ -531618,7 +491691,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1366), 18, + ACTIONS(1227), 19, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -531637,144 +491711,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [208187] = 4, + [208862] = 15, ACTIONS(3), 1, anon_sym_POUND, - STATE(6665), 1, + ACTIONS(10589), 1, + anon_sym_DASH, + ACTIONS(10597), 1, + anon_sym_PLUS, + ACTIONS(10607), 1, + anon_sym_bit_DASHand, + ACTIONS(10609), 1, + anon_sym_bit_DASHxor, + STATE(6262), 1, sym_comment, - ACTIONS(1354), 11, - sym_identifier, + ACTIONS(10587), 2, anon_sym_GT, - anon_sym_in, + anon_sym_LT2, + ACTIONS(10591), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1356), 19, - anon_sym_DOLLAR, - anon_sym_DASH, + ACTIONS(10593), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10595), 2, + anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(10599), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10605), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10601), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(10603), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, + ACTIONS(1181), 6, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_bit_DASHor, - [208228] = 9, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [208925] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11043), 1, + ACTIONS(10589), 1, anon_sym_DASH, - ACTIONS(11053), 1, + ACTIONS(10597), 1, anon_sym_PLUS, - STATE(6666), 1, + ACTIONS(10607), 1, + anon_sym_bit_DASHand, + ACTIONS(10609), 1, + anon_sym_bit_DASHxor, + ACTIONS(10611), 1, + anon_sym_bit_DASHor, + STATE(6263), 1, sym_comment, - ACTIONS(1376), 2, + ACTIONS(10587), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(11047), 2, + ACTIONS(10591), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11049), 2, + ACTIONS(10593), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11051), 2, + ACTIONS(10595), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1378), 20, - anon_sym_COMMA, - anon_sym_in, - anon_sym_RBRACE, + ACTIONS(10599), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10605), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10601), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(10603), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + ACTIONS(1181), 5, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [208279] = 4, + [208990] = 17, ACTIONS(3), 1, anon_sym_POUND, - STATE(6667), 1, + ACTIONS(10589), 1, + anon_sym_DASH, + ACTIONS(10597), 1, + anon_sym_PLUS, + ACTIONS(10607), 1, + anon_sym_bit_DASHand, + ACTIONS(10609), 1, + anon_sym_bit_DASHxor, + ACTIONS(10611), 1, + anon_sym_bit_DASHor, + ACTIONS(10613), 1, + anon_sym_and, + STATE(6264), 1, sym_comment, - ACTIONS(1342), 11, - sym_identifier, + ACTIONS(10587), 2, anon_sym_GT, - anon_sym_in, + anon_sym_LT2, + ACTIONS(10591), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1344), 19, - anon_sym_DOLLAR, - anon_sym_DASH, + ACTIONS(10593), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10595), 2, + anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(10599), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10605), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1181), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_xor, + anon_sym_or, + ACTIONS(10601), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(10603), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [208320] = 4, + [209057] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6668), 1, + ACTIONS(9209), 1, + aux_sym_unquoted_token5, + STATE(6265), 1, sym_comment, - ACTIONS(1368), 11, - sym_identifier, + ACTIONS(938), 5, anon_sym_GT, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1370), 19, - anon_sym_DOLLAR, + ACTIONS(940), 24, anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -531790,95 +491893,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [208361] = 19, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [209100] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11081), 1, + ACTIONS(10589), 1, anon_sym_DASH, - ACTIONS(11091), 1, + ACTIONS(10597), 1, anon_sym_PLUS, - ACTIONS(11099), 1, + ACTIONS(10607), 1, anon_sym_bit_DASHand, - ACTIONS(11113), 1, + ACTIONS(10609), 1, anon_sym_bit_DASHxor, - ACTIONS(11115), 1, + ACTIONS(10611), 1, anon_sym_bit_DASHor, - ACTIONS(11117), 1, + ACTIONS(10613), 1, anon_sym_and, - ACTIONS(11121), 1, + ACTIONS(10615), 1, anon_sym_xor, - ACTIONS(11123), 1, - anon_sym_or, - STATE(6669), 1, + STATE(6266), 1, sym_comment, - ACTIONS(1378), 2, - anon_sym_DOLLAR, - anon_sym_LBRACE, - ACTIONS(11079), 2, + ACTIONS(10587), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(11085), 2, + ACTIONS(10591), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11087), 2, + ACTIONS(10593), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11089), 2, + ACTIONS(10595), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11093), 2, + ACTIONS(10599), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11097), 2, + ACTIONS(10605), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(11083), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(11095), 4, + ACTIONS(1181), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_or, + ACTIONS(10601), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [208432] = 12, + ACTIONS(10603), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + [209169] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11043), 1, + ACTIONS(10589), 1, anon_sym_DASH, - ACTIONS(11053), 1, + ACTIONS(10597), 1, anon_sym_PLUS, - STATE(6670), 1, + ACTIONS(10607), 1, + anon_sym_bit_DASHand, + ACTIONS(10609), 1, + anon_sym_bit_DASHxor, + ACTIONS(10611), 1, + anon_sym_bit_DASHor, + ACTIONS(10613), 1, + anon_sym_and, + ACTIONS(10615), 1, + anon_sym_xor, + ACTIONS(10617), 1, + anon_sym_or, + STATE(6267), 1, sym_comment, - ACTIONS(11041), 2, + ACTIONS(1181), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(10587), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(11047), 2, + ACTIONS(10591), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11049), 2, + ACTIONS(10593), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11051), 2, + ACTIONS(10595), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11055), 2, + ACTIONS(10599), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11045), 4, + ACTIONS(10605), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10601), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(10603), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(11057), 4, + [209240] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(10465), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(6268), 1, + sym_comment, + ACTIONS(1139), 29, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_EQ_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1378), 10, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_bit_DASHand, @@ -531887,28 +492036,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [208489] = 4, + [209281] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6671), 1, + STATE(6269), 1, sym_comment, - ACTIONS(1332), 11, - sym_identifier, + ACTIONS(10575), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1179), 6, anon_sym_GT, - anon_sym_in, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1334), 19, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, + ACTIONS(1181), 22, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -531924,12 +492071,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [208530] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [209324] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6672), 1, + STATE(6270), 1, sym_comment, - ACTIONS(1410), 11, + ACTIONS(1215), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -531941,7 +492091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1412), 19, + ACTIONS(1217), 19, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_STAR_STAR, @@ -531961,76 +492111,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [208571] = 12, + [209365] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(6673), 1, + STATE(6271), 1, sym_comment, - ACTIONS(11071), 2, + ACTIONS(1179), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10571), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11073), 2, + ACTIONS(10573), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11075), 2, + ACTIONS(10575), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11077), 2, + ACTIONS(10577), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11105), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(11109), 2, + ACTIONS(10579), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11125), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(11107), 4, + ACTIONS(1181), 18, + anon_sym_DASH_DASH, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(11111), 4, + anon_sym_LBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1378), 8, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [208628] = 5, - ACTIONS(113), 1, + [209416] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - ACTIONS(1275), 1, - anon_sym_LBRACE, - STATE(6674), 1, + STATE(6272), 1, sym_comment, - ACTIONS(1273), 28, + ACTIONS(1237), 11, + sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1239), 19, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -532041,33 +492190,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [208671] = 4, - ACTIONS(113), 1, + [209457] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1255), 1, - sym__entry_separator, - STATE(6675), 1, + STATE(6273), 1, sym_comment, - ACTIONS(1253), 29, + ACTIONS(1076), 11, + sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1169), 19, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -532078,78 +492227,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + [209498] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10539), 1, + anon_sym_DASH, + ACTIONS(10547), 1, + anon_sym_SLASH_SLASH, + ACTIONS(10549), 1, + anon_sym_PLUS, + STATE(6274), 1, + sym_comment, + ACTIONS(10545), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10543), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(1179), 7, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - [208712] = 13, + ACTIONS(1181), 15, + anon_sym_DOLLAR, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [209549] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11127), 1, - anon_sym_bit_DASHand, - STATE(6676), 1, + STATE(6275), 1, sym_comment, - ACTIONS(11071), 2, + ACTIONS(10569), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10571), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11073), 2, + ACTIONS(10573), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11075), 2, + ACTIONS(10575), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11077), 2, + ACTIONS(10577), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11105), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(11109), 2, + ACTIONS(10579), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11125), 2, + ACTIONS(10619), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(11107), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(11111), 4, + ACTIONS(10581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1378), 7, + ACTIONS(10585), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1181), 8, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [208771] = 7, + [209606] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6677), 1, + STATE(6276), 1, sym_comment, - ACTIONS(11047), 2, + ACTIONS(1265), 11, + sym_identifier, + anon_sym_GT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11049), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(11051), 2, anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1376), 3, - anon_sym_GT, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1378), 21, - anon_sym_COMMA, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1267), 19, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -532164,62 +492351,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [208818] = 14, + [209647] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11127), 1, + ACTIONS(10621), 1, anon_sym_bit_DASHand, - ACTIONS(11129), 1, - anon_sym_bit_DASHxor, - STATE(6678), 1, + STATE(6277), 1, sym_comment, - ACTIONS(11071), 2, + ACTIONS(10569), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10571), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11073), 2, + ACTIONS(10573), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11075), 2, + ACTIONS(10575), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11077), 2, + ACTIONS(10577), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11105), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(11109), 2, + ACTIONS(10579), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11125), 2, + ACTIONS(10619), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(11107), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(11111), 4, + ACTIONS(10581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1378), 6, + ACTIONS(10585), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1181), 7, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [208879] = 4, + [209706] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6679), 1, + STATE(6278), 1, sym_comment, - ACTIONS(1336), 11, + ACTIONS(1265), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -532231,7 +492414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1338), 19, + ACTIONS(1267), 19, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_STAR_STAR, @@ -532251,12 +492434,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [208920] = 4, + [209747] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6680), 1, + STATE(6279), 1, sym_comment, - ACTIONS(1312), 11, + ACTIONS(1241), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -532268,7 +492451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1314), 19, + ACTIONS(1243), 19, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_STAR_STAR, @@ -532288,97 +492471,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [208961] = 4, + [209788] = 14, ACTIONS(3), 1, anon_sym_POUND, - STATE(6681), 1, + ACTIONS(10539), 1, + anon_sym_DASH, + ACTIONS(10541), 1, + anon_sym_in, + ACTIONS(10547), 1, + anon_sym_SLASH_SLASH, + ACTIONS(10549), 1, + anon_sym_PLUS, + STATE(6280), 1, sym_comment, - ACTIONS(1368), 11, - sym_identifier, + ACTIONS(10537), 2, anon_sym_GT, - anon_sym_in, + anon_sym_LT2, + ACTIONS(10545), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10551), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10543), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(10555), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1179), 4, + sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1370), 19, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(10553), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, + ACTIONS(1181), 6, + anon_sym_DOLLAR, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [209002] = 15, + [209849] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11127), 1, + ACTIONS(10621), 1, anon_sym_bit_DASHand, - ACTIONS(11129), 1, + ACTIONS(10623), 1, anon_sym_bit_DASHxor, - ACTIONS(11131), 1, - anon_sym_bit_DASHor, - STATE(6682), 1, + STATE(6281), 1, sym_comment, - ACTIONS(11071), 2, + ACTIONS(10569), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10571), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11073), 2, + ACTIONS(10573), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11075), 2, + ACTIONS(10575), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11077), 2, + ACTIONS(10577), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11105), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(11109), 2, + ACTIONS(10579), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11125), 2, + ACTIONS(10619), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(11107), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(11111), 4, + ACTIONS(10581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1378), 5, + ACTIONS(10585), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1181), 6, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [209065] = 4, + [209910] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6683), 1, + STATE(6282), 1, sym_comment, - ACTIONS(1368), 11, + ACTIONS(920), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -532390,7 +492582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1370), 19, + ACTIONS(922), 19, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_STAR_STAR, @@ -532410,29 +492602,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [209106] = 4, + [209951] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(6684), 1, + ACTIONS(10547), 1, + anon_sym_SLASH_SLASH, + STATE(6283), 1, sym_comment, - ACTIONS(1186), 11, - sym_identifier, - anon_sym_GT, - anon_sym_in, + ACTIONS(10545), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10543), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, + ACTIONS(1179), 8, + sym_identifier, + anon_sym_GT, + anon_sym_in, anon_sym_PLUS, anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1188), 19, + ACTIONS(1181), 16, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -532447,61 +492642,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [209147] = 16, + [209998] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11127), 1, + ACTIONS(10621), 1, anon_sym_bit_DASHand, - ACTIONS(11129), 1, + ACTIONS(10623), 1, anon_sym_bit_DASHxor, - ACTIONS(11131), 1, + ACTIONS(10625), 1, anon_sym_bit_DASHor, - ACTIONS(11133), 1, - anon_sym_and, - STATE(6685), 1, + STATE(6284), 1, sym_comment, - ACTIONS(11071), 2, + ACTIONS(10569), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10571), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11073), 2, + ACTIONS(10573), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11075), 2, + ACTIONS(10575), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11077), 2, + ACTIONS(10577), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11105), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(11109), 2, + ACTIONS(10579), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11125), 2, + ACTIONS(10619), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1378), 4, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_xor, - anon_sym_or, - ACTIONS(11107), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(11111), 4, + ACTIONS(10581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [209212] = 4, + ACTIONS(10585), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1181), 5, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [210061] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6686), 1, + STATE(6285), 1, sym_comment, - ACTIONS(1320), 11, + ACTIONS(1221), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -532513,7 +492707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1322), 19, + ACTIONS(1223), 19, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_STAR_STAR, @@ -532533,21 +492727,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [209253] = 5, + [210102] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9820), 1, - aux_sym_unquoted_token5, - STATE(6687), 1, + STATE(6286), 1, sym_comment, - ACTIONS(959), 5, + ACTIONS(1129), 6, anon_sym_GT, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(961), 24, - anon_sym_DASH, + ACTIONS(1131), 24, + anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, anon_sym_STAR_STAR, @@ -532571,122 +492764,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [209296] = 4, + [210143] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(6688), 1, + ACTIONS(10629), 1, + anon_sym_DASH, + ACTIONS(10637), 1, + anon_sym_PLUS, + STATE(6287), 1, sym_comment, - ACTIONS(1308), 11, - sym_identifier, + ACTIONS(10627), 2, anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1310), 19, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [209337] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11127), 1, - anon_sym_bit_DASHand, - ACTIONS(11129), 1, - anon_sym_bit_DASHxor, - ACTIONS(11131), 1, - anon_sym_bit_DASHor, - ACTIONS(11133), 1, - anon_sym_and, - ACTIONS(11135), 1, - anon_sym_xor, - STATE(6689), 1, - sym_comment, - ACTIONS(11071), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11073), 2, + ACTIONS(10631), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11075), 2, + ACTIONS(10633), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11077), 2, + ACTIONS(10635), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11105), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(11109), 2, + ACTIONS(10639), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11125), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1378), 3, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_or, - ACTIONS(11107), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(11111), 4, + ACTIONS(10641), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [209404] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6690), 1, - sym_comment, - ACTIONS(1243), 11, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1290), 19, + ACTIONS(1181), 14, anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_in, + anon_sym_LBRACE, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -532695,86 +492805,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [209445] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11127), 1, - anon_sym_bit_DASHand, - ACTIONS(11129), 1, - anon_sym_bit_DASHxor, - ACTIONS(11131), 1, - anon_sym_bit_DASHor, - ACTIONS(11133), 1, anon_sym_and, - ACTIONS(11135), 1, anon_sym_xor, - ACTIONS(11137), 1, anon_sym_or, - STATE(6691), 1, - sym_comment, - ACTIONS(1378), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(11071), 2, + [210198] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10629), 1, anon_sym_DASH, + ACTIONS(10637), 1, anon_sym_PLUS, - ACTIONS(11073), 2, + STATE(6288), 1, + sym_comment, + ACTIONS(1179), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10631), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11075), 2, + ACTIONS(10633), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11077), 2, + ACTIONS(10635), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11105), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(11109), 2, + ACTIONS(1181), 20, + anon_sym_DOLLAR, + anon_sym_in, + anon_sym_LBRACE, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11125), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(11107), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(11111), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [209514] = 4, - ACTIONS(113), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [210249] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - STATE(6692), 1, + ACTIONS(10629), 1, + anon_sym_DASH, + ACTIONS(10637), 1, + anon_sym_PLUS, + STATE(6289), 1, sym_comment, - ACTIONS(1253), 29, + ACTIONS(10627), 2, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_EQ_GT, + anon_sym_LT2, + ACTIONS(10631), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10633), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, + ACTIONS(10635), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, + ACTIONS(10639), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10641), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(10643), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + ACTIONS(1181), 10, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_bit_DASHand, @@ -532783,30 +492895,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [209555] = 4, - ACTIONS(113), 1, + [210306] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - STATE(6693), 1, + STATE(6290), 1, sym_comment, - ACTIONS(1273), 29, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_EQ_GT, + ACTIONS(10631), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10633), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, + ACTIONS(10635), 2, anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(1179), 3, + anon_sym_GT, anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1181), 21, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -532820,12 +492935,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [209596] = 4, + [210353] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6694), 1, + STATE(6291), 1, sym_comment, - ACTIONS(1368), 11, + ACTIONS(10545), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1179), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -532837,11 +492955,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1370), 19, + ACTIONS(1181), 17, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -532857,25 +492973,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [209637] = 5, + [210396] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6695), 1, + STATE(6292), 1, sym_comment, - ACTIONS(11049), 2, + ACTIONS(10633), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(1376), 5, + ACTIONS(1179), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1378), 23, - anon_sym_COMMA, + ACTIONS(1181), 23, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, @@ -532895,49 +493011,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [209680] = 4, + [210439] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(6696), 1, + ACTIONS(10629), 1, + anon_sym_DASH, + ACTIONS(10637), 1, + anon_sym_PLUS, + STATE(6293), 1, sym_comment, - ACTIONS(1302), 11, - sym_identifier, + ACTIONS(1179), 2, anon_sym_GT, - anon_sym_in, + anon_sym_LT2, + ACTIONS(10631), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(10633), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10635), 2, anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, + anon_sym_SLASH_SLASH, + ACTIONS(10639), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(1181), 18, + anon_sym_DOLLAR, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1304), 19, - anon_sym_DOLLAR, + [210492] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10629), 1, anon_sym_DASH, + ACTIONS(10637), 1, + anon_sym_PLUS, + STATE(6294), 1, + sym_comment, + ACTIONS(10627), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10631), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10633), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10635), 2, + anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(10639), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10645), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10641), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(10643), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(1181), 8, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [209721] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [210551] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6697), 1, + STATE(6295), 1, sym_comment, - ACTIONS(1368), 11, + ACTIONS(1139), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -532949,7 +493117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1370), 19, + ACTIONS(1209), 19, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_STAR_STAR, @@ -532969,168 +493137,235 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [209762] = 10, + [210592] = 14, ACTIONS(3), 1, anon_sym_POUND, - STATE(6698), 1, - sym_comment, - ACTIONS(11071), 2, + ACTIONS(10629), 1, anon_sym_DASH, + ACTIONS(10637), 1, anon_sym_PLUS, - ACTIONS(11073), 2, + ACTIONS(10647), 1, + anon_sym_bit_DASHand, + STATE(6296), 1, + sym_comment, + ACTIONS(10627), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10631), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11075), 2, + ACTIONS(10633), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11077), 2, + ACTIONS(10635), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11105), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(11109), 2, + ACTIONS(10639), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11111), 4, + ACTIONS(10645), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10641), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1378), 14, - anon_sym_DASH_DASH, + ACTIONS(10643), 4, anon_sym_in, - anon_sym_LBRACE, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, + ACTIONS(1181), 7, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [209815] = 4, + [210653] = 15, ACTIONS(3), 1, anon_sym_POUND, - STATE(6699), 1, + ACTIONS(10629), 1, + anon_sym_DASH, + ACTIONS(10637), 1, + anon_sym_PLUS, + ACTIONS(10647), 1, + anon_sym_bit_DASHand, + ACTIONS(10649), 1, + anon_sym_bit_DASHxor, + STATE(6297), 1, sym_comment, - ACTIONS(1286), 11, - sym_identifier, + ACTIONS(10627), 2, anon_sym_GT, - anon_sym_in, + anon_sym_LT2, + ACTIONS(10631), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1288), 19, - anon_sym_DOLLAR, - anon_sym_DASH, + ACTIONS(10633), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10635), 2, + anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(10639), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10645), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10641), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(10643), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, + ACTIONS(1181), 6, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_bit_DASHor, - [209856] = 14, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [210716] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11011), 1, + ACTIONS(10629), 1, anon_sym_DASH, - ACTIONS(11017), 1, - anon_sym_SLASH_SLASH, - ACTIONS(11019), 1, + ACTIONS(10637), 1, anon_sym_PLUS, - ACTIONS(11023), 1, - anon_sym_in, - STATE(6700), 1, + ACTIONS(10647), 1, + anon_sym_bit_DASHand, + ACTIONS(10649), 1, + anon_sym_bit_DASHxor, + ACTIONS(10651), 1, + anon_sym_bit_DASHor, + STATE(6298), 1, sym_comment, - ACTIONS(11015), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(11021), 2, + ACTIONS(10627), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(11025), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(11013), 3, + ACTIONS(10631), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(10633), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10635), 2, anon_sym_mod, - ACTIONS(11029), 3, + anon_sym_SLASH_SLASH, + ACTIONS(10639), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10645), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10641), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(10643), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1376), 4, - sym_identifier, + ACTIONS(1181), 5, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [210781] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10629), 1, + anon_sym_DASH, + ACTIONS(10637), 1, + anon_sym_PLUS, + ACTIONS(10647), 1, + anon_sym_bit_DASHand, + ACTIONS(10649), 1, + anon_sym_bit_DASHxor, + ACTIONS(10651), 1, + anon_sym_bit_DASHor, + ACTIONS(10653), 1, anon_sym_and, + STATE(6299), 1, + sym_comment, + ACTIONS(10627), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10631), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10633), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10635), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10639), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10645), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1181), 4, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_xor, anon_sym_or, - ACTIONS(11027), 4, + ACTIONS(10641), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1378), 6, - anon_sym_DOLLAR, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [209917] = 11, + ACTIONS(10643), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + [210848] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11147), 1, + ACTIONS(10663), 1, anon_sym_SLASH_SLASH, - STATE(6701), 1, + STATE(6300), 1, sym_comment, - ACTIONS(11139), 2, + ACTIONS(10655), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(11141), 2, + ACTIONS(10657), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11145), 2, + ACTIONS(10661), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11149), 2, + ACTIONS(10665), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11143), 3, + ACTIONS(10659), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(11151), 4, + ACTIONS(10667), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1376), 5, + ACTIONS(1179), 5, sym_identifier, anon_sym_in, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1378), 9, + ACTIONS(1181), 9, anon_sym_DASH_DASH, anon_sym_not_DASHin, anon_sym_starts_DASHwith, @@ -533140,24 +493375,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [209972] = 8, + [210903] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11147), 1, + ACTIONS(10663), 1, anon_sym_SLASH_SLASH, - STATE(6702), 1, + STATE(6301), 1, sym_comment, - ACTIONS(11141), 2, + ACTIONS(10657), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11145), 2, + ACTIONS(10661), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11143), 3, + ACTIONS(10659), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(1376), 7, + ACTIONS(1179), 7, sym_identifier, anon_sym_GT, anon_sym_in, @@ -533165,7 +493400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1378), 15, + ACTIONS(1181), 15, anon_sym_DASH_DASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -533181,67 +493416,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [210021] = 13, + [210952] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11147), 1, + ACTIONS(10663), 1, anon_sym_SLASH_SLASH, - ACTIONS(11153), 1, + ACTIONS(10669), 1, anon_sym_in, - STATE(6703), 1, + STATE(6302), 1, sym_comment, - ACTIONS(11139), 2, + ACTIONS(10655), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(11141), 2, + ACTIONS(10657), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11145), 2, + ACTIONS(10661), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11149), 2, + ACTIONS(10665), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11143), 3, + ACTIONS(10659), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(11155), 3, + ACTIONS(10671), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1376), 4, + ACTIONS(1179), 4, sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(11151), 4, + ACTIONS(10667), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1378), 6, + ACTIONS(1181), 6, anon_sym_DASH_DASH, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [210080] = 7, + [211011] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11147), 1, + ACTIONS(10663), 1, anon_sym_SLASH_SLASH, - STATE(6704), 1, + STATE(6303), 1, sym_comment, - ACTIONS(11145), 2, + ACTIONS(10661), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11143), 3, + ACTIONS(10659), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(1376), 9, + ACTIONS(1179), 9, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -533251,7 +493486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1378), 15, + ACTIONS(1181), 15, anon_sym_DASH_DASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -533267,15 +493502,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [210127] = 5, + [211058] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6705), 1, + STATE(6304), 1, sym_comment, - ACTIONS(11145), 2, + ACTIONS(10661), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(1376), 12, + ACTIONS(1179), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -533288,7 +493523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1378), 16, + ACTIONS(1181), 16, anon_sym_DASH_DASH, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, @@ -533305,27 +493540,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [210170] = 9, + [211101] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11147), 1, + ACTIONS(10663), 1, anon_sym_SLASH_SLASH, - STATE(6706), 1, + STATE(6305), 1, sym_comment, - ACTIONS(11141), 2, + ACTIONS(10657), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11145), 2, + ACTIONS(10661), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11149), 2, + ACTIONS(10665), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11143), 3, + ACTIONS(10659), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(1376), 7, + ACTIONS(1179), 7, sym_identifier, anon_sym_GT, anon_sym_in, @@ -533333,7 +493568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1378), 13, + ACTIONS(1181), 13, anon_sym_DASH_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -533347,935 +493582,683 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [210221] = 14, + [211152] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11147), 1, + ACTIONS(10663), 1, anon_sym_SLASH_SLASH, - ACTIONS(11153), 1, + ACTIONS(10669), 1, anon_sym_in, - STATE(6707), 1, + STATE(6306), 1, sym_comment, - ACTIONS(11139), 2, + ACTIONS(10655), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(11141), 2, + ACTIONS(10657), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11145), 2, + ACTIONS(10661), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11149), 2, + ACTIONS(10665), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11157), 2, + ACTIONS(10673), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(11143), 3, + ACTIONS(10659), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(11155), 3, + ACTIONS(10671), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1376), 4, + ACTIONS(1179), 4, sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1378), 4, + ACTIONS(1181), 4, anon_sym_DASH_DASH, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - ACTIONS(11151), 4, + ACTIONS(10667), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [210282] = 15, + [211213] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11147), 1, + ACTIONS(10663), 1, anon_sym_SLASH_SLASH, - ACTIONS(11153), 1, + ACTIONS(10669), 1, anon_sym_in, - ACTIONS(11159), 1, + ACTIONS(10675), 1, anon_sym_bit_DASHand, - STATE(6708), 1, + STATE(6307), 1, sym_comment, - ACTIONS(11139), 2, + ACTIONS(10655), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(11141), 2, + ACTIONS(10657), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11145), 2, + ACTIONS(10661), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11149), 2, + ACTIONS(10665), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11157), 2, + ACTIONS(10673), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1378), 3, + ACTIONS(1181), 3, anon_sym_DASH_DASH, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - ACTIONS(11143), 3, + ACTIONS(10659), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(11155), 3, + ACTIONS(10671), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1376), 4, + ACTIONS(1179), 4, sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(11151), 4, + ACTIONS(10667), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [210345] = 16, + [211276] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11147), 1, + ACTIONS(10663), 1, anon_sym_SLASH_SLASH, - ACTIONS(11153), 1, + ACTIONS(10669), 1, anon_sym_in, - ACTIONS(11159), 1, + ACTIONS(10675), 1, anon_sym_bit_DASHand, - ACTIONS(11161), 1, + ACTIONS(10677), 1, anon_sym_bit_DASHxor, - STATE(6709), 1, + STATE(6308), 1, sym_comment, - ACTIONS(1378), 2, + ACTIONS(1181), 2, anon_sym_DASH_DASH, anon_sym_bit_DASHor, - ACTIONS(11139), 2, + ACTIONS(10655), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(11141), 2, + ACTIONS(10657), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11145), 2, + ACTIONS(10661), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11149), 2, + ACTIONS(10665), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11157), 2, + ACTIONS(10673), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(11143), 3, + ACTIONS(10659), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(11155), 3, + ACTIONS(10671), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1376), 4, + ACTIONS(1179), 4, sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(11151), 4, + ACTIONS(10667), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [210410] = 17, + [211341] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1378), 1, + ACTIONS(1181), 1, anon_sym_DASH_DASH, - ACTIONS(11147), 1, + ACTIONS(10663), 1, anon_sym_SLASH_SLASH, - ACTIONS(11153), 1, + ACTIONS(10669), 1, anon_sym_in, - ACTIONS(11159), 1, + ACTIONS(10675), 1, anon_sym_bit_DASHand, - ACTIONS(11161), 1, + ACTIONS(10677), 1, anon_sym_bit_DASHxor, - ACTIONS(11163), 1, + ACTIONS(10679), 1, anon_sym_bit_DASHor, - STATE(6710), 1, + STATE(6309), 1, sym_comment, - ACTIONS(11139), 2, + ACTIONS(10655), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(11141), 2, + ACTIONS(10657), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11145), 2, + ACTIONS(10661), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11149), 2, + ACTIONS(10665), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11157), 2, + ACTIONS(10673), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(11143), 3, + ACTIONS(10659), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(11155), 3, + ACTIONS(10671), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1376), 4, + ACTIONS(1179), 4, sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(11151), 4, + ACTIONS(10667), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [210477] = 18, + [211408] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1378), 1, + ACTIONS(1181), 1, anon_sym_DASH_DASH, - ACTIONS(11147), 1, + ACTIONS(10663), 1, anon_sym_SLASH_SLASH, - ACTIONS(11153), 1, + ACTIONS(10669), 1, anon_sym_in, - ACTIONS(11159), 1, + ACTIONS(10675), 1, anon_sym_bit_DASHand, - ACTIONS(11161), 1, + ACTIONS(10677), 1, anon_sym_bit_DASHxor, - ACTIONS(11163), 1, + ACTIONS(10679), 1, anon_sym_bit_DASHor, - ACTIONS(11165), 1, + ACTIONS(10681), 1, anon_sym_and, - STATE(6711), 1, + STATE(6310), 1, sym_comment, - ACTIONS(11139), 2, + ACTIONS(10655), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(11141), 2, + ACTIONS(10657), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11145), 2, + ACTIONS(10661), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11149), 2, + ACTIONS(10665), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11157), 2, + ACTIONS(10673), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1376), 3, + ACTIONS(1179), 3, sym_identifier, anon_sym_xor, anon_sym_or, - ACTIONS(11143), 3, + ACTIONS(10659), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(11155), 3, + ACTIONS(10671), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(11151), 4, + ACTIONS(10667), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [210546] = 19, + [211477] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1378), 1, + ACTIONS(1181), 1, anon_sym_DASH_DASH, - ACTIONS(11147), 1, + ACTIONS(10663), 1, anon_sym_SLASH_SLASH, - ACTIONS(11153), 1, + ACTIONS(10669), 1, anon_sym_in, - ACTIONS(11159), 1, + ACTIONS(10675), 1, anon_sym_bit_DASHand, - ACTIONS(11161), 1, + ACTIONS(10677), 1, anon_sym_bit_DASHxor, - ACTIONS(11163), 1, + ACTIONS(10679), 1, anon_sym_bit_DASHor, - ACTIONS(11165), 1, + ACTIONS(10681), 1, anon_sym_and, - ACTIONS(11167), 1, + ACTIONS(10683), 1, anon_sym_xor, - STATE(6712), 1, + STATE(6311), 1, sym_comment, - ACTIONS(1376), 2, + ACTIONS(1179), 2, sym_identifier, anon_sym_or, - ACTIONS(11139), 2, + ACTIONS(10655), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(11141), 2, + ACTIONS(10657), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11145), 2, + ACTIONS(10661), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11149), 2, + ACTIONS(10665), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11157), 2, + ACTIONS(10673), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(11143), 3, + ACTIONS(10659), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(11155), 3, + ACTIONS(10671), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(11151), 4, + ACTIONS(10667), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [210617] = 20, + [211548] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1376), 1, + ACTIONS(1179), 1, sym_identifier, - ACTIONS(1378), 1, + ACTIONS(1181), 1, anon_sym_DASH_DASH, - ACTIONS(11147), 1, + ACTIONS(10663), 1, anon_sym_SLASH_SLASH, - ACTIONS(11153), 1, + ACTIONS(10669), 1, anon_sym_in, - ACTIONS(11159), 1, + ACTIONS(10675), 1, anon_sym_bit_DASHand, - ACTIONS(11161), 1, + ACTIONS(10677), 1, anon_sym_bit_DASHxor, - ACTIONS(11163), 1, + ACTIONS(10679), 1, anon_sym_bit_DASHor, - ACTIONS(11165), 1, + ACTIONS(10681), 1, anon_sym_and, - ACTIONS(11167), 1, + ACTIONS(10683), 1, anon_sym_xor, - ACTIONS(11169), 1, + ACTIONS(10685), 1, anon_sym_or, - STATE(6713), 1, + STATE(6312), 1, sym_comment, - ACTIONS(11139), 2, + ACTIONS(10655), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(11141), 2, + ACTIONS(10657), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11145), 2, + ACTIONS(10661), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11149), 2, + ACTIONS(10665), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11157), 2, + ACTIONS(10673), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(11143), 3, + ACTIONS(10659), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(11155), 3, + ACTIONS(10671), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(11151), 4, + ACTIONS(10667), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [210690] = 4, + [211621] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(6714), 1, - sym_comment, - ACTIONS(1372), 11, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1374), 19, - anon_sym_DOLLAR, + ACTIONS(10629), 1, anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(10637), 1, + anon_sym_PLUS, + ACTIONS(10647), 1, anon_sym_bit_DASHand, + ACTIONS(10649), 1, anon_sym_bit_DASHxor, + ACTIONS(10651), 1, anon_sym_bit_DASHor, - [210731] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11017), 1, - anon_sym_SLASH_SLASH, - STATE(6715), 1, - sym_comment, - ACTIONS(11015), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(11013), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(1376), 8, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(10653), 1, anon_sym_and, + ACTIONS(10687), 1, anon_sym_xor, - anon_sym_or, - ACTIONS(1378), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [210778] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - STATE(6716), 1, + STATE(6313), 1, sym_comment, - ACTIONS(1247), 29, + ACTIONS(10627), 2, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_EQ_GT, + anon_sym_LT2, + ACTIONS(10631), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10633), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, + ACTIONS(10635), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, + ACTIONS(10639), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, + ACTIONS(10645), 2, 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, - [210819] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6717), 1, - sym_comment, - ACTIONS(11015), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(1376), 11, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1378), 17, + ACTIONS(1181), 3, anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + anon_sym_LBRACE, + anon_sym_or, + ACTIONS(10641), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(10643), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [210862] = 4, - ACTIONS(113), 1, + [211690] = 19, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1249), 1, - sym__entry_separator, - STATE(6718), 1, - sym_comment, - ACTIONS(1247), 29, - anon_sym_GT, + ACTIONS(10629), 1, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(10637), 1, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(10647), 1, anon_sym_bit_DASHand, + ACTIONS(10649), 1, anon_sym_bit_DASHxor, + ACTIONS(10651), 1, anon_sym_bit_DASHor, + ACTIONS(10653), 1, anon_sym_and, + ACTIONS(10687), 1, anon_sym_xor, + ACTIONS(10689), 1, anon_sym_or, - [210903] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1160), 1, - anon_sym_LBRACE, - ACTIONS(1284), 1, - aux_sym_unquoted_token6, - STATE(6719), 1, + STATE(6314), 1, sym_comment, - ACTIONS(1158), 28, + ACTIONS(1181), 2, + anon_sym_DOLLAR, + anon_sym_LBRACE, + ACTIONS(10627), 2, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, + anon_sym_LT2, + ACTIONS(10631), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10633), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, + ACTIONS(10635), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, + ACTIONS(10639), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10645), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10641), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(10643), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + [211761] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10621), 1, anon_sym_bit_DASHand, + ACTIONS(10623), 1, anon_sym_bit_DASHxor, + ACTIONS(10625), 1, anon_sym_bit_DASHor, + ACTIONS(10691), 1, anon_sym_and, - anon_sym_xor, - anon_sym_or, - [210946] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11011), 1, - anon_sym_DASH, - ACTIONS(11017), 1, - anon_sym_SLASH_SLASH, - ACTIONS(11019), 1, - anon_sym_PLUS, - STATE(6720), 1, + STATE(6315), 1, sym_comment, - ACTIONS(11015), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(11025), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(11013), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(1376), 7, - sym_identifier, + ACTIONS(10569), 2, anon_sym_GT, - anon_sym_in, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1378), 13, - anon_sym_DOLLAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [210999] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11043), 1, + ACTIONS(10571), 2, anon_sym_DASH, - ACTIONS(11053), 1, anon_sym_PLUS, - STATE(6721), 1, - sym_comment, - ACTIONS(1376), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(11047), 2, + ACTIONS(10573), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11049), 2, + ACTIONS(10575), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11051), 2, + ACTIONS(10577), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11055), 2, + ACTIONS(10579), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(1378), 18, - anon_sym_COMMA, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, + ACTIONS(10619), 2, 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, - [211052] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6722), 1, - sym_comment, - ACTIONS(1418), 11, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, + ACTIONS(1181), 4, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_xor, anon_sym_or, - ACTIONS(1420), 19, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(10581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(10585), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [211093] = 15, + [211826] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11011), 1, + ACTIONS(10539), 1, anon_sym_DASH, - ACTIONS(11017), 1, + ACTIONS(10541), 1, + anon_sym_in, + ACTIONS(10547), 1, anon_sym_SLASH_SLASH, - ACTIONS(11019), 1, + ACTIONS(10549), 1, anon_sym_PLUS, - ACTIONS(11023), 1, - anon_sym_in, - STATE(6723), 1, + ACTIONS(10559), 1, + anon_sym_bit_DASHand, + STATE(6316), 1, sym_comment, - ACTIONS(11015), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(11021), 2, + ACTIONS(10537), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(11025), 2, + ACTIONS(10545), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10551), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11031), 2, + ACTIONS(10557), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(11013), 3, + ACTIONS(1181), 3, + anon_sym_DOLLAR, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + ACTIONS(10543), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(11029), 3, + ACTIONS(10555), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1376), 4, + ACTIONS(1179), 4, sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1378), 4, - anon_sym_DOLLAR, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - ACTIONS(11027), 4, + ACTIONS(10553), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [211156] = 4, + [211891] = 19, ACTIONS(3), 1, anon_sym_POUND, - STATE(6724), 1, - sym_comment, - ACTIONS(1158), 11, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1160), 19, + ACTIONS(1181), 1, anon_sym_DOLLAR, + ACTIONS(10539), 1, anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, + ACTIONS(10541), 1, + anon_sym_in, + ACTIONS(10547), 1, anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(10549), 1, + anon_sym_PLUS, + ACTIONS(10559), 1, anon_sym_bit_DASHand, + ACTIONS(10561), 1, anon_sym_bit_DASHxor, + ACTIONS(10563), 1, anon_sym_bit_DASHor, - [211197] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6725), 1, + ACTIONS(10565), 1, + anon_sym_and, + STATE(6317), 1, sym_comment, - ACTIONS(1406), 11, - sym_identifier, + ACTIONS(10537), 2, anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1408), 19, - anon_sym_DOLLAR, - anon_sym_DASH, + ACTIONS(10545), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, + ACTIONS(10551), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, + ACTIONS(10557), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [211238] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11043), 1, - anon_sym_DASH, - ACTIONS(11053), 1, - anon_sym_PLUS, - STATE(6726), 1, - sym_comment, - ACTIONS(11041), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(11047), 2, + ACTIONS(1179), 3, + sym_identifier, + anon_sym_xor, + anon_sym_or, + ACTIONS(10543), 3, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11049), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(11051), 2, anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(11055), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(11059), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(11045), 4, - anon_sym_in, + ACTIONS(10555), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(11057), 4, + ACTIONS(10553), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1378), 8, - anon_sym_COMMA, - anon_sym_RBRACE, + [211962] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10621), 1, anon_sym_bit_DASHand, + ACTIONS(10623), 1, anon_sym_bit_DASHxor, + ACTIONS(10625), 1, anon_sym_bit_DASHor, + ACTIONS(10691), 1, anon_sym_and, + ACTIONS(10693), 1, anon_sym_xor, - anon_sym_or, - [211297] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6727), 1, + STATE(6318), 1, sym_comment, - ACTIONS(1198), 11, - sym_identifier, + ACTIONS(10569), 2, anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1366), 19, - anon_sym_DOLLAR, + ACTIONS(10571), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10573), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10575), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10577), 2, + anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(10579), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10619), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1181), 3, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_or, + ACTIONS(10581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(10585), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [211338] = 4, - ACTIONS(113), 1, + [212029] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10998), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(6728), 1, + STATE(6319), 1, sym_comment, - ACTIONS(1243), 29, + ACTIONS(1135), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, - anon_sym_EQ_GT, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1137), 24, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -534289,188 +494272,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [211379] = 4, + [212070] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(6729), 1, - sym_comment, - ACTIONS(959), 11, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(961), 19, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(10621), 1, anon_sym_bit_DASHand, + ACTIONS(10623), 1, anon_sym_bit_DASHxor, + ACTIONS(10625), 1, anon_sym_bit_DASHor, - [211420] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6730), 1, - sym_comment, - ACTIONS(1368), 11, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(10691), 1, anon_sym_and, + ACTIONS(10693), 1, anon_sym_xor, + ACTIONS(10695), 1, anon_sym_or, - ACTIONS(1370), 19, - anon_sym_DOLLAR, + STATE(6320), 1, + sym_comment, + ACTIONS(1181), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(10569), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10571), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10573), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10575), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10577), 2, + anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(10579), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10619), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(10585), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [211461] = 16, + [212139] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11011), 1, + ACTIONS(10539), 1, anon_sym_DASH, - ACTIONS(11017), 1, + ACTIONS(10547), 1, anon_sym_SLASH_SLASH, - ACTIONS(11019), 1, + ACTIONS(10549), 1, anon_sym_PLUS, - ACTIONS(11023), 1, - anon_sym_in, - ACTIONS(11033), 1, - anon_sym_bit_DASHand, - STATE(6731), 1, + STATE(6321), 1, sym_comment, - ACTIONS(11015), 2, + ACTIONS(10545), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11021), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(11025), 2, + ACTIONS(10551), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11031), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1378), 3, - anon_sym_DOLLAR, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - ACTIONS(11013), 3, + ACTIONS(10543), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(11029), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1376), 4, + ACTIONS(1179), 7, sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(11027), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [211526] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1282), 1, - anon_sym_LBRACE, - STATE(6732), 1, - sym_comment, - ACTIONS(1280), 29, anon_sym_GT, - anon_sym_DASH, anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - aux_sym_unquoted_token6, - [211567] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6733), 1, - sym_comment, - ACTIONS(1253), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1255), 24, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(1181), 13, + anon_sym_DOLLAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -534483,22 +494366,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [211608] = 4, + [212192] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6734), 1, + STATE(6322), 1, sym_comment, - ACTIONS(1273), 6, + ACTIONS(1159), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1275), 24, + ACTIONS(1161), 24, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -534523,226 +494403,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [211649] = 14, + [212233] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11043), 1, + ACTIONS(10539), 1, anon_sym_DASH, - ACTIONS(11053), 1, - anon_sym_PLUS, - ACTIONS(11061), 1, - anon_sym_bit_DASHand, - STATE(6735), 1, - sym_comment, - ACTIONS(11041), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(11047), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(11049), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(11051), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(11055), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(11059), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(11045), 4, + ACTIONS(10541), 1, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(11057), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1378), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [211710] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11043), 1, - anon_sym_DASH, - ACTIONS(11053), 1, + ACTIONS(10547), 1, + anon_sym_SLASH_SLASH, + ACTIONS(10549), 1, anon_sym_PLUS, - ACTIONS(11061), 1, - anon_sym_bit_DASHand, - ACTIONS(11063), 1, - anon_sym_bit_DASHxor, - STATE(6736), 1, + STATE(6323), 1, sym_comment, - ACTIONS(11041), 2, + ACTIONS(10537), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(11047), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(11049), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(11051), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(11055), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(11059), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(11045), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(11057), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1378), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [211773] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11011), 1, - anon_sym_DASH, - ACTIONS(11017), 1, - anon_sym_SLASH_SLASH, - ACTIONS(11019), 1, - anon_sym_PLUS, - STATE(6737), 1, - sym_comment, - ACTIONS(11015), 2, + ACTIONS(10545), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11021), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(11025), 2, + ACTIONS(10551), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11013), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(11027), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1376), 5, - sym_identifier, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1378), 9, - anon_sym_DOLLAR, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, + ACTIONS(10557), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [211830] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6738), 1, - sym_comment, - ACTIONS(1294), 11, - sym_identifier, - anon_sym_GT, - anon_sym_in, + ACTIONS(10543), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1296), 19, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(10555), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [211871] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6739), 1, - sym_comment, - ACTIONS(1358), 11, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(1179), 4, + sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1360), 19, + ACTIONS(1181), 4, anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + ACTIONS(10553), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [211912] = 4, + [212296] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6740), 1, + STATE(6324), 1, sym_comment, - ACTIONS(1280), 11, + ACTIONS(1279), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -534754,7 +494468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1282), 19, + ACTIONS(1281), 19, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_STAR_STAR, @@ -534774,28 +494488,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [211953] = 4, + [212337] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6741), 1, + STATE(6325), 1, sym_comment, - ACTIONS(1362), 11, - sym_identifier, + ACTIONS(5815), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1237), 5, anon_sym_GT, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1364), 19, - anon_sym_DOLLAR, + ACTIONS(1239), 23, anon_sym_DASH, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -534811,12 +494523,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [211994] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [212380] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6742), 1, + STATE(6326), 1, sym_comment, - ACTIONS(1368), 11, + ACTIONS(1271), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -534828,7 +494543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1370), 19, + ACTIONS(1273), 19, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_STAR_STAR, @@ -534848,12 +494563,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [212035] = 4, + [212421] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6743), 1, + STATE(6327), 1, sym_comment, - ACTIONS(1298), 11, + ACTIONS(1211), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -534865,7 +494580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1300), 19, + ACTIONS(1213), 19, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_STAR_STAR, @@ -534885,39 +494600,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [212076] = 11, - ACTIONS(3), 1, + [212462] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(11081), 1, - anon_sym_DASH, - ACTIONS(11091), 1, - anon_sym_PLUS, - STATE(6744), 1, + ACTIONS(1161), 1, + anon_sym_LBRACE, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + STATE(6328), 1, sym_comment, - ACTIONS(11079), 2, + ACTIONS(1159), 28, anon_sym_GT, - anon_sym_LT2, - ACTIONS(11085), 2, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(11087), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11089), 2, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11093), 2, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11095), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1378), 14, - anon_sym_DOLLAR, - anon_sym_in, - anon_sym_LBRACE, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -534929,120 +494638,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [212131] = 9, + [212505] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11081), 1, - anon_sym_DASH, - ACTIONS(11091), 1, - anon_sym_PLUS, - STATE(6745), 1, + STATE(6329), 1, sym_comment, - ACTIONS(1376), 2, + ACTIONS(1165), 11, + sym_identifier, anon_sym_GT, - anon_sym_LT2, - ACTIONS(11085), 2, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11087), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(11089), 2, anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1378), 20, - anon_sym_DOLLAR, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - [212182] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11081), 1, + ACTIONS(1167), 19, + anon_sym_DOLLAR, anon_sym_DASH, - ACTIONS(11091), 1, - anon_sym_PLUS, - STATE(6746), 1, - sym_comment, - ACTIONS(11079), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(11085), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(11087), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11089), 2, - anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11093), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11083), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(11095), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1378), 10, - anon_sym_DOLLAR, - anon_sym_LBRACE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [212239] = 7, - ACTIONS(3), 1, + [212546] = 5, + ACTIONS(113), 1, anon_sym_POUND, - STATE(6747), 1, + ACTIONS(1131), 1, + anon_sym_LBRACE, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + STATE(6330), 1, sym_comment, - ACTIONS(11085), 2, + ACTIONS(1129), 28, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(11087), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11089), 2, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1376), 3, - anon_sym_GT, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1378), 21, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -535056,75 +494713,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [212286] = 16, + [212589] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11043), 1, - anon_sym_DASH, - ACTIONS(11053), 1, - anon_sym_PLUS, - ACTIONS(11061), 1, - anon_sym_bit_DASHand, - ACTIONS(11063), 1, - anon_sym_bit_DASHxor, - ACTIONS(11065), 1, - anon_sym_bit_DASHor, - STATE(6748), 1, + STATE(6331), 1, sym_comment, - ACTIONS(11041), 2, + ACTIONS(1089), 11, + sym_identifier, anon_sym_GT, - anon_sym_LT2, - ACTIONS(11047), 2, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11049), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(11051), 2, anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(11055), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(11059), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(11045), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(11057), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1378), 5, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - [212351] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6749), 1, - sym_comment, - ACTIONS(11087), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(1376), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1378), 23, + ACTIONS(1091), 19, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_mod, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -535140,37 +494750,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [212394] = 10, + [212630] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11081), 1, - anon_sym_DASH, - ACTIONS(11091), 1, - anon_sym_PLUS, - STATE(6750), 1, + STATE(6332), 1, sym_comment, - ACTIONS(1376), 2, + ACTIONS(10593), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1179), 5, anon_sym_GT, - anon_sym_LT2, - ACTIONS(11085), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11087), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(11089), 2, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1181), 23, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11093), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(1378), 18, - anon_sym_DOLLAR, - anon_sym_in, - anon_sym_LBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -535186,567 +494788,502 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [212447] = 5, - ACTIONS(113), 1, + [212673] = 17, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1249), 1, - anon_sym_LBRACE, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - STATE(6751), 1, - sym_comment, - ACTIONS(1247), 28, - anon_sym_GT, + ACTIONS(10699), 1, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(10709), 1, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(10717), 1, anon_sym_bit_DASHand, + ACTIONS(10719), 1, anon_sym_bit_DASHxor, + ACTIONS(10721), 1, anon_sym_bit_DASHor, + ACTIONS(10723), 1, anon_sym_and, - anon_sym_xor, - anon_sym_or, - [212490] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1284), 1, - aux_sym_unquoted_token6, - STATE(6752), 1, + STATE(6333), 1, sym_comment, - ACTIONS(1158), 29, + ACTIONS(10697), 2, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_EQ_GT, + anon_sym_LT2, + ACTIONS(10703), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10705), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, + ACTIONS(10707), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, + ACTIONS(10711), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, + ACTIONS(10715), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, + ACTIONS(1181), 3, + anon_sym_LBRACE, anon_sym_xor, anon_sym_or, - [212531] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11011), 1, - anon_sym_DASH, - ACTIONS(11017), 1, - anon_sym_SLASH_SLASH, - ACTIONS(11019), 1, - anon_sym_PLUS, - ACTIONS(11023), 1, + ACTIONS(10701), 4, anon_sym_in, - ACTIONS(11033), 1, - anon_sym_bit_DASHand, - ACTIONS(11035), 1, - anon_sym_bit_DASHxor, - STATE(6753), 1, - sym_comment, - ACTIONS(1378), 2, - anon_sym_DOLLAR, - anon_sym_bit_DASHor, - ACTIONS(11015), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(11021), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(11025), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(11031), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(11013), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(11029), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1376), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(11027), 4, + ACTIONS(10713), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [212598] = 17, + [212739] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11043), 1, + ACTIONS(10727), 1, anon_sym_DASH, - ACTIONS(11053), 1, + ACTIONS(10737), 1, anon_sym_PLUS, - ACTIONS(11061), 1, + ACTIONS(10745), 1, anon_sym_bit_DASHand, - ACTIONS(11063), 1, + ACTIONS(10747), 1, anon_sym_bit_DASHxor, - ACTIONS(11065), 1, + ACTIONS(10749), 1, anon_sym_bit_DASHor, - ACTIONS(11067), 1, - anon_sym_and, - STATE(6754), 1, + STATE(6334), 1, sym_comment, - ACTIONS(11041), 2, + ACTIONS(10725), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(11047), 2, + ACTIONS(10731), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11049), 2, + ACTIONS(10733), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11051), 2, + ACTIONS(10735), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11055), 2, + ACTIONS(10739), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11059), 2, + ACTIONS(10743), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1378), 4, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1181), 4, + anon_sym_EQ_GT, + anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(11045), 4, + ACTIONS(10729), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(11057), 4, + ACTIONS(10741), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [212665] = 18, + [212803] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1378), 1, - anon_sym_DOLLAR, - ACTIONS(11011), 1, + ACTIONS(10699), 1, anon_sym_DASH, - ACTIONS(11017), 1, - anon_sym_SLASH_SLASH, - ACTIONS(11019), 1, + ACTIONS(10709), 1, anon_sym_PLUS, - ACTIONS(11023), 1, - anon_sym_in, - ACTIONS(11033), 1, + ACTIONS(10717), 1, anon_sym_bit_DASHand, - ACTIONS(11035), 1, + ACTIONS(10719), 1, anon_sym_bit_DASHxor, - ACTIONS(11037), 1, - anon_sym_bit_DASHor, - STATE(6755), 1, + STATE(6335), 1, sym_comment, - ACTIONS(11015), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(11021), 2, + ACTIONS(10697), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(11025), 2, + ACTIONS(10703), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10705), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10707), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10711), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11031), 2, + ACTIONS(10715), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(11013), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(11029), 3, + ACTIONS(10701), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1376), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(11027), 4, + ACTIONS(10713), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [212734] = 4, + ACTIONS(1181), 5, + anon_sym_LBRACE, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [212865] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(6756), 1, + ACTIONS(10727), 1, + anon_sym_DASH, + ACTIONS(10737), 1, + anon_sym_PLUS, + STATE(6336), 1, sym_comment, - ACTIONS(1368), 11, - sym_identifier, + ACTIONS(10725), 2, anon_sym_GT, - anon_sym_in, + anon_sym_LT2, + ACTIONS(10731), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1370), 19, - anon_sym_DOLLAR, - anon_sym_DASH, + ACTIONS(10733), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10735), 2, + anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(10739), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10729), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10741), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, + ACTIONS(1181), 9, + anon_sym_EQ_GT, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [212775] = 13, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [212921] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11173), 1, + ACTIONS(10699), 1, anon_sym_DASH, - ACTIONS(11183), 1, + ACTIONS(10709), 1, anon_sym_PLUS, - STATE(6757), 1, + STATE(6337), 1, sym_comment, - ACTIONS(11171), 2, + ACTIONS(1179), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(11177), 2, + ACTIONS(10703), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11179), 2, + ACTIONS(10705), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11181), 2, + ACTIONS(10707), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11185), 2, + ACTIONS(10711), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11189), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(11175), 4, + ACTIONS(1181), 17, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(11187), 4, + anon_sym_LBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1378), 7, - anon_sym_LBRACE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [212833] = 14, + [212973] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11173), 1, + ACTIONS(10727), 1, anon_sym_DASH, - ACTIONS(11183), 1, + ACTIONS(10737), 1, anon_sym_PLUS, - ACTIONS(11191), 1, + ACTIONS(10745), 1, anon_sym_bit_DASHand, - STATE(6758), 1, + ACTIONS(10747), 1, + anon_sym_bit_DASHxor, + ACTIONS(10749), 1, + anon_sym_bit_DASHor, + ACTIONS(10751), 1, + anon_sym_and, + ACTIONS(10753), 1, + anon_sym_xor, + STATE(6338), 1, sym_comment, - ACTIONS(11171), 2, + ACTIONS(1181), 2, + anon_sym_EQ_GT, + anon_sym_or, + ACTIONS(10725), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(11177), 2, + ACTIONS(10731), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11179), 2, + ACTIONS(10733), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11181), 2, + ACTIONS(10735), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11185), 2, + ACTIONS(10739), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11189), 2, + ACTIONS(10743), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(11175), 4, + ACTIONS(10729), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(11187), 4, + ACTIONS(10741), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1378), 6, - anon_sym_LBRACE, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [212893] = 18, + [213041] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11173), 1, + ACTIONS(10699), 1, anon_sym_DASH, - ACTIONS(11183), 1, + ACTIONS(10709), 1, anon_sym_PLUS, - ACTIONS(11191), 1, + ACTIONS(10717), 1, anon_sym_bit_DASHand, - ACTIONS(11193), 1, + ACTIONS(10719), 1, anon_sym_bit_DASHxor, - ACTIONS(11195), 1, + ACTIONS(10721), 1, anon_sym_bit_DASHor, - ACTIONS(11197), 1, + ACTIONS(10723), 1, anon_sym_and, - ACTIONS(11199), 1, + ACTIONS(10755), 1, anon_sym_xor, - STATE(6759), 1, + STATE(6339), 1, sym_comment, - ACTIONS(1378), 2, + ACTIONS(1181), 2, anon_sym_LBRACE, anon_sym_or, - ACTIONS(11171), 2, + ACTIONS(10697), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(11177), 2, + ACTIONS(10703), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11179), 2, + ACTIONS(10705), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11181), 2, + ACTIONS(10707), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11185), 2, + ACTIONS(10711), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11189), 2, + ACTIONS(10715), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(11175), 4, + ACTIONS(10701), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(11187), 4, + ACTIONS(10713), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [212961] = 5, + [213109] = 19, ACTIONS(3), 1, anon_sym_POUND, - STATE(6760), 1, + ACTIONS(1181), 1, + anon_sym_LBRACE, + ACTIONS(10699), 1, + anon_sym_DASH, + ACTIONS(10709), 1, + anon_sym_PLUS, + ACTIONS(10717), 1, + anon_sym_bit_DASHand, + ACTIONS(10719), 1, + anon_sym_bit_DASHxor, + ACTIONS(10721), 1, + anon_sym_bit_DASHor, + ACTIONS(10723), 1, + anon_sym_and, + ACTIONS(10755), 1, + anon_sym_xor, + ACTIONS(10757), 1, + anon_sym_or, + STATE(6340), 1, sym_comment, - ACTIONS(11179), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(1376), 5, + ACTIONS(10697), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(10703), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1378), 22, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, + ACTIONS(10705), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10707), 2, anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(10711), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10715), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10701), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10713), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [213003] = 19, + [213179] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1378), 1, - anon_sym_LBRACE, - ACTIONS(11173), 1, + ACTIONS(1181), 1, + anon_sym_EQ_GT, + ACTIONS(10727), 1, anon_sym_DASH, - ACTIONS(11183), 1, + ACTIONS(10737), 1, anon_sym_PLUS, - ACTIONS(11191), 1, + ACTIONS(10745), 1, anon_sym_bit_DASHand, - ACTIONS(11193), 1, + ACTIONS(10747), 1, anon_sym_bit_DASHxor, - ACTIONS(11195), 1, + ACTIONS(10749), 1, anon_sym_bit_DASHor, - ACTIONS(11197), 1, + ACTIONS(10751), 1, anon_sym_and, - ACTIONS(11199), 1, + ACTIONS(10753), 1, anon_sym_xor, - ACTIONS(11201), 1, + ACTIONS(10759), 1, anon_sym_or, - STATE(6761), 1, + STATE(6341), 1, sym_comment, - ACTIONS(11171), 2, + ACTIONS(10725), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(11177), 2, + ACTIONS(10731), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11179), 2, + ACTIONS(10733), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11181), 2, + ACTIONS(10735), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11185), 2, + ACTIONS(10739), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11189), 2, + ACTIONS(10743), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(11175), 4, + ACTIONS(10729), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(11187), 4, + ACTIONS(10741), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [213073] = 15, + [213249] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11173), 1, + ACTIONS(10727), 1, anon_sym_DASH, - ACTIONS(11183), 1, + ACTIONS(10737), 1, anon_sym_PLUS, - ACTIONS(11191), 1, - anon_sym_bit_DASHand, - ACTIONS(11193), 1, - anon_sym_bit_DASHxor, - STATE(6762), 1, + STATE(6342), 1, sym_comment, - ACTIONS(11171), 2, + ACTIONS(1179), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(11177), 2, + ACTIONS(10731), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11179), 2, + ACTIONS(10733), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11181), 2, + ACTIONS(10735), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11185), 2, + ACTIONS(10739), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11189), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(11175), 4, + ACTIONS(1181), 17, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(11187), 4, + anon_sym_EQ_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1378), 5, - anon_sym_LBRACE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [213135] = 7, + [213301] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(6763), 1, + STATE(6343), 1, sym_comment, - ACTIONS(11177), 2, + ACTIONS(10731), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11179), 2, + ACTIONS(10733), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11181), 2, + ACTIONS(10735), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1376), 3, + ACTIONS(1179), 3, anon_sym_GT, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1378), 20, + ACTIONS(1181), 20, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -535764,38 +495301,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [213181] = 11, + [213347] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11205), 1, + ACTIONS(10727), 1, anon_sym_DASH, - ACTIONS(11213), 1, + ACTIONS(10737), 1, anon_sym_PLUS, - STATE(6764), 1, + STATE(6344), 1, sym_comment, - ACTIONS(11203), 2, + ACTIONS(1179), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(11207), 2, + ACTIONS(10731), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11209), 2, + ACTIONS(10733), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11211), 2, + ACTIONS(10735), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11215), 2, + ACTIONS(1181), 19, + anon_sym_in, + anon_sym_EQ_GT, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11217), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1378), 13, - anon_sym_in, - anon_sym_EQ_GT, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -535807,113 +495342,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [213235] = 9, + [213397] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11205), 1, + ACTIONS(10699), 1, anon_sym_DASH, - ACTIONS(11213), 1, + ACTIONS(10709), 1, anon_sym_PLUS, - STATE(6765), 1, + ACTIONS(10717), 1, + anon_sym_bit_DASHand, + ACTIONS(10719), 1, + anon_sym_bit_DASHxor, + ACTIONS(10721), 1, + anon_sym_bit_DASHor, + STATE(6345), 1, sym_comment, - ACTIONS(1376), 2, + ACTIONS(10697), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(11207), 2, + ACTIONS(10703), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11209), 2, + ACTIONS(10705), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11211), 2, + ACTIONS(10707), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1378), 19, - anon_sym_in, - anon_sym_EQ_GT, + ACTIONS(10711), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, + ACTIONS(10715), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + ACTIONS(1181), 4, + anon_sym_LBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [213285] = 12, + ACTIONS(10701), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10713), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [213461] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11205), 1, + ACTIONS(10727), 1, anon_sym_DASH, - ACTIONS(11213), 1, + ACTIONS(10737), 1, anon_sym_PLUS, - STATE(6766), 1, + ACTIONS(10745), 1, + anon_sym_bit_DASHand, + ACTIONS(10747), 1, + anon_sym_bit_DASHxor, + ACTIONS(10749), 1, + anon_sym_bit_DASHor, + ACTIONS(10751), 1, + anon_sym_and, + STATE(6346), 1, sym_comment, - ACTIONS(11203), 2, + ACTIONS(10725), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(11207), 2, + ACTIONS(10731), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11209), 2, + ACTIONS(10733), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11211), 2, + ACTIONS(10735), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11215), 2, + ACTIONS(10739), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11217), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(11219), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1378), 9, - anon_sym_EQ_GT, + ACTIONS(10743), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, + ACTIONS(1181), 3, + anon_sym_EQ_GT, anon_sym_xor, anon_sym_or, - [213341] = 7, + ACTIONS(10729), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10741), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [213527] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(6767), 1, + ACTIONS(10699), 1, + anon_sym_DASH, + ACTIONS(10709), 1, + anon_sym_PLUS, + STATE(6347), 1, sym_comment, - ACTIONS(11207), 2, + ACTIONS(1179), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10703), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11209), 2, + ACTIONS(10705), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11211), 2, + ACTIONS(10707), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1376), 3, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1378), 20, - anon_sym_DASH, + ACTIONS(1181), 19, anon_sym_in, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -535931,24 +495480,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [213387] = 5, + [213577] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6768), 1, + STATE(6348), 1, sym_comment, - ACTIONS(11209), 2, + ACTIONS(10705), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(1376), 5, + ACTIONS(1179), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1378), 22, + ACTIONS(1181), 22, anon_sym_DASH, anon_sym_in, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, @@ -535968,40 +495517,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [213429] = 10, + [213619] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11205), 1, + ACTIONS(10699), 1, anon_sym_DASH, - ACTIONS(11213), 1, + ACTIONS(10709), 1, anon_sym_PLUS, - STATE(6769), 1, + STATE(6349), 1, sym_comment, - ACTIONS(1376), 2, + ACTIONS(10697), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(11207), 2, + ACTIONS(10703), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11209), 2, + ACTIONS(10705), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11211), 2, + ACTIONS(10707), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11215), 2, + ACTIONS(10711), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(1378), 17, + ACTIONS(10701), 4, anon_sym_in, - anon_sym_EQ_GT, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10713), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, + ACTIONS(1181), 9, + anon_sym_LBRACE, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_bit_DASHand, @@ -536010,44 +495561,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [213481] = 13, + [213675] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11205), 1, + ACTIONS(10727), 1, anon_sym_DASH, - ACTIONS(11213), 1, + ACTIONS(10737), 1, anon_sym_PLUS, - STATE(6770), 1, + STATE(6350), 1, sym_comment, - ACTIONS(11203), 2, + ACTIONS(10725), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(11207), 2, + ACTIONS(10731), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11209), 2, + ACTIONS(10733), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11211), 2, + ACTIONS(10735), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11215), 2, + ACTIONS(10739), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11221), 2, + ACTIONS(10743), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(11217), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(11219), 4, + ACTIONS(10729), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1378), 7, + ACTIONS(10741), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1181), 7, anon_sym_EQ_GT, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, @@ -536055,416 +495606,247 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [213539] = 14, + [213733] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11205), 1, - anon_sym_DASH, - ACTIONS(11213), 1, - anon_sym_PLUS, - ACTIONS(11223), 1, - anon_sym_bit_DASHand, - STATE(6771), 1, + STATE(6351), 1, sym_comment, - ACTIONS(11203), 2, + ACTIONS(10733), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1179), 5, anon_sym_GT, - anon_sym_LT2, - ACTIONS(11207), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11209), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(11211), 2, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1181), 22, + anon_sym_DASH, + anon_sym_in, + anon_sym_EQ_GT, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11215), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11221), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(11217), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(11219), 4, - anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1378), 6, - anon_sym_EQ_GT, + 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, - [213599] = 15, + [213775] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11205), 1, + ACTIONS(10699), 1, anon_sym_DASH, - ACTIONS(11213), 1, + ACTIONS(10709), 1, anon_sym_PLUS, - ACTIONS(11223), 1, + ACTIONS(10717), 1, anon_sym_bit_DASHand, - ACTIONS(11225), 1, - anon_sym_bit_DASHxor, - STATE(6772), 1, + STATE(6352), 1, sym_comment, - ACTIONS(11203), 2, + ACTIONS(10697), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(11207), 2, + ACTIONS(10703), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11209), 2, + ACTIONS(10705), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11211), 2, + ACTIONS(10707), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11215), 2, + ACTIONS(10711), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11221), 2, + ACTIONS(10715), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(11217), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(11219), 4, + ACTIONS(10701), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1378), 5, - anon_sym_EQ_GT, + ACTIONS(10713), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1181), 6, + anon_sym_LBRACE, + anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [213661] = 16, + [213835] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11205), 1, + ACTIONS(10727), 1, anon_sym_DASH, - ACTIONS(11213), 1, + ACTIONS(10737), 1, anon_sym_PLUS, - ACTIONS(11223), 1, + ACTIONS(10745), 1, anon_sym_bit_DASHand, - ACTIONS(11225), 1, - anon_sym_bit_DASHxor, - ACTIONS(11227), 1, - anon_sym_bit_DASHor, - STATE(6773), 1, + STATE(6353), 1, sym_comment, - ACTIONS(11203), 2, + ACTIONS(10725), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(11207), 2, + ACTIONS(10731), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11209), 2, + ACTIONS(10733), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11211), 2, + ACTIONS(10735), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11215), 2, + ACTIONS(10739), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11221), 2, + ACTIONS(10743), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1378), 4, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(11217), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(11219), 4, + ACTIONS(10729), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - [213725] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11205), 1, - anon_sym_DASH, - ACTIONS(11213), 1, - anon_sym_PLUS, - ACTIONS(11223), 1, - anon_sym_bit_DASHand, - ACTIONS(11225), 1, + ACTIONS(10741), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1181), 6, + anon_sym_EQ_GT, anon_sym_bit_DASHxor, - ACTIONS(11227), 1, anon_sym_bit_DASHor, - ACTIONS(11229), 1, anon_sym_and, - STATE(6774), 1, - sym_comment, - ACTIONS(11203), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(11207), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(11209), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(11211), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(11215), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(11221), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1378), 3, - anon_sym_EQ_GT, anon_sym_xor, anon_sym_or, - ACTIONS(11217), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(11219), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - [213791] = 18, + [213895] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11205), 1, + ACTIONS(10727), 1, anon_sym_DASH, - ACTIONS(11213), 1, + ACTIONS(10737), 1, anon_sym_PLUS, - ACTIONS(11223), 1, - anon_sym_bit_DASHand, - ACTIONS(11225), 1, - anon_sym_bit_DASHxor, - ACTIONS(11227), 1, - anon_sym_bit_DASHor, - ACTIONS(11229), 1, - anon_sym_and, - ACTIONS(11231), 1, - anon_sym_xor, - STATE(6775), 1, + STATE(6354), 1, sym_comment, - ACTIONS(1378), 2, - anon_sym_EQ_GT, - anon_sym_or, - ACTIONS(11203), 2, + ACTIONS(10725), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(11207), 2, + ACTIONS(10731), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11209), 2, + ACTIONS(10733), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11211), 2, + ACTIONS(10735), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11215), 2, + ACTIONS(10739), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11221), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(11217), 4, + ACTIONS(10741), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(11219), 4, + ACTIONS(1181), 13, anon_sym_in, + anon_sym_EQ_GT, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - [213859] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1378), 1, - anon_sym_EQ_GT, - ACTIONS(11205), 1, - anon_sym_DASH, - ACTIONS(11213), 1, - anon_sym_PLUS, - ACTIONS(11223), 1, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(11225), 1, anon_sym_bit_DASHxor, - ACTIONS(11227), 1, anon_sym_bit_DASHor, - ACTIONS(11229), 1, anon_sym_and, - ACTIONS(11231), 1, anon_sym_xor, - ACTIONS(11233), 1, anon_sym_or, - STATE(6776), 1, - sym_comment, - ACTIONS(11203), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(11207), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(11209), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(11211), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(11215), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(11221), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(11217), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(11219), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - [213929] = 12, + [213949] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11173), 1, + ACTIONS(10699), 1, anon_sym_DASH, - ACTIONS(11183), 1, + ACTIONS(10709), 1, anon_sym_PLUS, - STATE(6777), 1, + STATE(6355), 1, sym_comment, - ACTIONS(11171), 2, + ACTIONS(10697), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(11177), 2, + ACTIONS(10703), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11179), 2, + ACTIONS(10705), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11181), 2, + ACTIONS(10707), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11185), 2, + ACTIONS(10711), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11175), 4, + ACTIONS(10715), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10701), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(11187), 4, + ACTIONS(10713), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1378), 9, + ACTIONS(1181), 7, anon_sym_LBRACE, - 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, - [213985] = 16, + [214007] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11173), 1, - anon_sym_DASH, - ACTIONS(11183), 1, - anon_sym_PLUS, - ACTIONS(11191), 1, - anon_sym_bit_DASHand, - ACTIONS(11193), 1, - anon_sym_bit_DASHxor, - ACTIONS(11195), 1, - anon_sym_bit_DASHor, - STATE(6778), 1, + STATE(6356), 1, sym_comment, - ACTIONS(11171), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(11177), 2, + ACTIONS(10703), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11179), 2, + ACTIONS(10705), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11181), 2, + ACTIONS(10707), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11185), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(11189), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1378), 4, - anon_sym_LBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(11175), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(11187), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [214049] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11173), 1, - anon_sym_DASH, - ACTIONS(11183), 1, - anon_sym_PLUS, - STATE(6779), 1, - sym_comment, - ACTIONS(1376), 2, + ACTIONS(1179), 3, anon_sym_GT, + anon_sym_PLUS, anon_sym_LT2, - ACTIONS(11177), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(11179), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(11181), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(11185), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(1378), 17, + ACTIONS(1181), 20, + anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -536480,128 +495862,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [214101] = 17, + [214053] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11173), 1, + ACTIONS(10727), 1, anon_sym_DASH, - ACTIONS(11183), 1, + ACTIONS(10737), 1, anon_sym_PLUS, - ACTIONS(11191), 1, + ACTIONS(10745), 1, anon_sym_bit_DASHand, - ACTIONS(11193), 1, + ACTIONS(10747), 1, anon_sym_bit_DASHxor, - ACTIONS(11195), 1, - anon_sym_bit_DASHor, - ACTIONS(11197), 1, - anon_sym_and, - STATE(6780), 1, + STATE(6357), 1, sym_comment, - ACTIONS(11171), 2, + ACTIONS(10725), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(11177), 2, + ACTIONS(10731), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11179), 2, + ACTIONS(10733), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11181), 2, + ACTIONS(10735), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11185), 2, + ACTIONS(10739), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11189), 2, + ACTIONS(10743), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1378), 3, - anon_sym_LBRACE, - anon_sym_xor, - anon_sym_or, - ACTIONS(11175), 4, + ACTIONS(10729), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(11187), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [214167] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11173), 1, - anon_sym_DASH, - ACTIONS(11183), 1, - anon_sym_PLUS, - STATE(6781), 1, - sym_comment, - ACTIONS(11171), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(11177), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(11179), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(11181), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(11185), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(11187), 4, + ACTIONS(10741), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1378), 13, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, + ACTIONS(1181), 5, + anon_sym_EQ_GT, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [214221] = 9, + [214115] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11173), 1, + ACTIONS(10699), 1, anon_sym_DASH, - ACTIONS(11183), 1, + ACTIONS(10709), 1, anon_sym_PLUS, - STATE(6782), 1, + STATE(6358), 1, sym_comment, - ACTIONS(1376), 2, + ACTIONS(10697), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(11177), 2, + ACTIONS(10703), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11179), 2, + ACTIONS(10705), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11181), 2, + ACTIONS(10707), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1378), 19, - anon_sym_in, - anon_sym_LBRACE, + ACTIONS(10711), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10713), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(1181), 13, + anon_sym_in, + anon_sym_LBRACE, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -536613,1724 +495952,1626 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [214271] = 18, + [214169] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10586), 1, - anon_sym_PLUS, - ACTIONS(11235), 1, + ACTIONS(10629), 1, anon_sym_DASH, - ACTIONS(11249), 1, + ACTIONS(10637), 1, + anon_sym_PLUS, + ACTIONS(10647), 1, anon_sym_bit_DASHand, - ACTIONS(11251), 1, + ACTIONS(10649), 1, anon_sym_bit_DASHxor, - ACTIONS(11253), 1, + ACTIONS(10651), 1, anon_sym_bit_DASHor, - ACTIONS(11255), 1, + ACTIONS(10653), 1, anon_sym_and, - ACTIONS(11257), 1, + ACTIONS(10687), 1, anon_sym_xor, - ACTIONS(11259), 1, + ACTIONS(10689), 1, anon_sym_or, - STATE(6783), 1, + STATE(6359), 1, sym_comment, - ACTIONS(10584), 2, + ACTIONS(10627), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(10590), 2, + ACTIONS(10631), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11239), 2, + ACTIONS(10633), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11241), 2, + ACTIONS(10635), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11243), 2, + ACTIONS(10639), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11247), 2, + ACTIONS(10645), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(11237), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(11245), 4, + ACTIONS(10641), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [214338] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10810), 1, - anon_sym_PLUS, - ACTIONS(11261), 1, - anon_sym_DASH, - ACTIONS(11275), 1, - anon_sym_bit_DASHand, - ACTIONS(11277), 1, - anon_sym_bit_DASHxor, - ACTIONS(11279), 1, - anon_sym_bit_DASHor, - ACTIONS(11281), 1, - anon_sym_and, - ACTIONS(11283), 1, - anon_sym_xor, - ACTIONS(11285), 1, - anon_sym_or, - STATE(6784), 1, - sym_comment, - ACTIONS(10808), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10814), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(11265), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(11267), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(11269), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(11273), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(11263), 4, + ACTIONS(10643), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(11271), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [214405] = 18, + [214236] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10680), 1, + ACTIONS(5619), 1, anon_sym_PLUS, - ACTIONS(11287), 1, - anon_sym_DASH, - ACTIONS(11301), 1, + ACTIONS(5637), 1, anon_sym_bit_DASHand, - ACTIONS(11303), 1, + ACTIONS(5639), 1, anon_sym_bit_DASHxor, - ACTIONS(11305), 1, + ACTIONS(5641), 1, anon_sym_bit_DASHor, - ACTIONS(11307), 1, + ACTIONS(5643), 1, anon_sym_and, - ACTIONS(11309), 1, + ACTIONS(5645), 1, anon_sym_xor, - ACTIONS(11311), 1, + ACTIONS(5647), 1, anon_sym_or, - STATE(6785), 1, + ACTIONS(10761), 1, + anon_sym_DASH, + STATE(6360), 1, sym_comment, - ACTIONS(10678), 2, + ACTIONS(5617), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(10682), 2, + ACTIONS(5623), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11291), 2, + ACTIONS(5625), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11293), 2, + ACTIONS(5627), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11295), 2, + ACTIONS(5629), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11299), 2, + ACTIONS(5635), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(11289), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(11297), 4, + ACTIONS(5631), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [214472] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11173), 1, - anon_sym_DASH, - ACTIONS(11183), 1, - anon_sym_PLUS, - ACTIONS(11191), 1, - anon_sym_bit_DASHand, - ACTIONS(11193), 1, - anon_sym_bit_DASHxor, - ACTIONS(11195), 1, - anon_sym_bit_DASHor, - ACTIONS(11197), 1, - anon_sym_and, - ACTIONS(11199), 1, - anon_sym_xor, - ACTIONS(11201), 1, - anon_sym_or, - STATE(6786), 1, - sym_comment, - ACTIONS(11171), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(11177), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(11179), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(11181), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(11185), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(11189), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(11175), 4, + ACTIONS(5633), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(11187), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [214539] = 18, + [214303] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1510), 1, + ACTIONS(6951), 1, anon_sym_PLUS, - ACTIONS(11313), 1, - anon_sym_DASH, - ACTIONS(11327), 1, + ACTIONS(6969), 1, anon_sym_bit_DASHand, - ACTIONS(11329), 1, + ACTIONS(6971), 1, anon_sym_bit_DASHxor, - ACTIONS(11331), 1, + ACTIONS(6973), 1, anon_sym_bit_DASHor, - ACTIONS(11333), 1, + ACTIONS(6975), 1, anon_sym_and, - ACTIONS(11335), 1, + ACTIONS(6977), 1, anon_sym_xor, - ACTIONS(11337), 1, + ACTIONS(6979), 1, anon_sym_or, - STATE(6787), 1, + ACTIONS(10763), 1, + anon_sym_DASH, + STATE(6361), 1, sym_comment, - ACTIONS(1508), 2, + ACTIONS(6949), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(1514), 2, + ACTIONS(6955), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11317), 2, + ACTIONS(6957), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11319), 2, + ACTIONS(6959), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11321), 2, + ACTIONS(6961), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11325), 2, + ACTIONS(6967), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(11315), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(11323), 4, + ACTIONS(6963), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [214606] = 18, + ACTIONS(6965), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + [214370] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10442), 1, - anon_sym_PLUS, - ACTIONS(11339), 1, + ACTIONS(10727), 1, anon_sym_DASH, - ACTIONS(11353), 1, + ACTIONS(10737), 1, + anon_sym_PLUS, + ACTIONS(10745), 1, anon_sym_bit_DASHand, - ACTIONS(11355), 1, + ACTIONS(10747), 1, anon_sym_bit_DASHxor, - ACTIONS(11357), 1, + ACTIONS(10749), 1, anon_sym_bit_DASHor, - ACTIONS(11359), 1, + ACTIONS(10751), 1, anon_sym_and, - ACTIONS(11361), 1, + ACTIONS(10753), 1, anon_sym_xor, - ACTIONS(11363), 1, + ACTIONS(10759), 1, anon_sym_or, - STATE(6788), 1, + STATE(6362), 1, sym_comment, - ACTIONS(10440), 2, + ACTIONS(10725), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(10444), 2, + ACTIONS(10731), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11343), 2, + ACTIONS(10733), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11345), 2, + ACTIONS(10735), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11347), 2, + ACTIONS(10739), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11351), 2, + ACTIONS(10743), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(11341), 4, + ACTIONS(10729), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(11349), 4, + ACTIONS(10741), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [214673] = 18, + [214437] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1484), 1, + ACTIONS(1534), 1, anon_sym_PLUS, - ACTIONS(11365), 1, + ACTIONS(10765), 1, anon_sym_DASH, - ACTIONS(11379), 1, + ACTIONS(10779), 1, anon_sym_bit_DASHand, - ACTIONS(11381), 1, + ACTIONS(10781), 1, anon_sym_bit_DASHxor, - ACTIONS(11383), 1, + ACTIONS(10783), 1, anon_sym_bit_DASHor, - ACTIONS(11385), 1, + ACTIONS(10785), 1, anon_sym_and, - ACTIONS(11387), 1, + ACTIONS(10787), 1, anon_sym_xor, - ACTIONS(11389), 1, + ACTIONS(10789), 1, anon_sym_or, - STATE(6789), 1, + STATE(6363), 1, sym_comment, - ACTIONS(1478), 2, + ACTIONS(1536), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1482), 2, + ACTIONS(1542), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(11369), 2, + ACTIONS(10769), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11371), 2, + ACTIONS(10771), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11373), 2, + ACTIONS(10773), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11377), 2, + ACTIONS(10777), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(11367), 4, + ACTIONS(10767), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(11375), 4, + ACTIONS(10775), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [214740] = 18, + [214504] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11071), 1, + ACTIONS(1308), 1, anon_sym_PLUS, - ACTIONS(11127), 1, + ACTIONS(10791), 1, + anon_sym_DASH, + ACTIONS(10805), 1, anon_sym_bit_DASHand, - ACTIONS(11129), 1, + ACTIONS(10807), 1, anon_sym_bit_DASHxor, - ACTIONS(11131), 1, + ACTIONS(10809), 1, anon_sym_bit_DASHor, - ACTIONS(11133), 1, + ACTIONS(10811), 1, anon_sym_and, - ACTIONS(11135), 1, + ACTIONS(10813), 1, anon_sym_xor, - ACTIONS(11137), 1, + ACTIONS(10815), 1, anon_sym_or, - ACTIONS(11391), 1, - anon_sym_DASH, - STATE(6790), 1, + STATE(6364), 1, sym_comment, - ACTIONS(11073), 2, + ACTIONS(1306), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(1310), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11075), 2, + ACTIONS(10795), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11077), 2, + ACTIONS(10797), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11105), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(11109), 2, + ACTIONS(10799), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11125), 2, + ACTIONS(10803), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(11107), 4, + ACTIONS(10793), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(11111), 4, + ACTIONS(10801), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [214807] = 18, + [214571] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10936), 1, + ACTIONS(1185), 1, anon_sym_PLUS, - ACTIONS(11393), 1, + ACTIONS(10817), 1, anon_sym_DASH, - ACTIONS(11407), 1, + ACTIONS(10831), 1, anon_sym_bit_DASHand, - ACTIONS(11409), 1, + ACTIONS(10833), 1, anon_sym_bit_DASHxor, - ACTIONS(11411), 1, + ACTIONS(10835), 1, anon_sym_bit_DASHor, - ACTIONS(11413), 1, + ACTIONS(10837), 1, anon_sym_and, - ACTIONS(11415), 1, + ACTIONS(10839), 1, anon_sym_xor, - ACTIONS(11417), 1, + ACTIONS(10841), 1, anon_sym_or, - STATE(6791), 1, + STATE(6365), 1, sym_comment, - ACTIONS(10934), 2, + ACTIONS(1183), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(10940), 2, + ACTIONS(1187), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11397), 2, + ACTIONS(10821), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11399), 2, + ACTIONS(10823), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11401), 2, + ACTIONS(10825), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11405), 2, + ACTIONS(10829), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(11395), 4, + ACTIONS(10819), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(11403), 4, + ACTIONS(10827), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [214874] = 18, + [214638] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10602), 1, + ACTIONS(9945), 1, anon_sym_PLUS, - ACTIONS(11419), 1, + ACTIONS(10843), 1, anon_sym_DASH, - ACTIONS(11433), 1, + ACTIONS(10857), 1, anon_sym_bit_DASHand, - ACTIONS(11435), 1, + ACTIONS(10859), 1, anon_sym_bit_DASHxor, - ACTIONS(11437), 1, + ACTIONS(10861), 1, anon_sym_bit_DASHor, - ACTIONS(11439), 1, + ACTIONS(10863), 1, anon_sym_and, - ACTIONS(11441), 1, + ACTIONS(10865), 1, anon_sym_xor, - ACTIONS(11443), 1, + ACTIONS(10867), 1, anon_sym_or, - STATE(6792), 1, + STATE(6366), 1, sym_comment, - ACTIONS(10600), 2, + ACTIONS(9943), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(10604), 2, + ACTIONS(9947), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11423), 2, + ACTIONS(10847), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11425), 2, + ACTIONS(10849), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11427), 2, + ACTIONS(10851), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11431), 2, + ACTIONS(10855), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(11421), 4, + ACTIONS(10845), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(11429), 4, + ACTIONS(10853), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [214941] = 18, + [214705] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10294), 1, + ACTIONS(9647), 1, anon_sym_PLUS, - ACTIONS(10316), 1, + ACTIONS(9665), 1, anon_sym_bit_DASHand, - ACTIONS(10318), 1, + ACTIONS(9667), 1, anon_sym_bit_DASHxor, - ACTIONS(10320), 1, + ACTIONS(9669), 1, anon_sym_bit_DASHor, - ACTIONS(11445), 1, + ACTIONS(10869), 1, anon_sym_DASH, - ACTIONS(11447), 1, + ACTIONS(10871), 1, anon_sym_and, - ACTIONS(11449), 1, + ACTIONS(10873), 1, anon_sym_xor, - ACTIONS(11451), 1, + ACTIONS(10875), 1, anon_sym_or, - STATE(6793), 1, + STATE(6367), 1, sym_comment, - ACTIONS(10292), 2, + ACTIONS(9645), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(10296), 2, + ACTIONS(9649), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(10298), 2, + ACTIONS(9651), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10300), 2, + ACTIONS(9653), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10302), 2, + ACTIONS(9655), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10314), 2, + ACTIONS(9663), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10304), 4, + ACTIONS(9657), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(10308), 4, + ACTIONS(9661), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - [215008] = 18, + [214772] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10152), 1, + ACTIONS(5713), 1, anon_sym_PLUS, - ACTIONS(10170), 1, + ACTIONS(5729), 1, anon_sym_bit_DASHand, - ACTIONS(10172), 1, + ACTIONS(5767), 1, anon_sym_bit_DASHxor, - ACTIONS(10174), 1, + ACTIONS(5784), 1, anon_sym_bit_DASHor, - ACTIONS(11453), 1, - anon_sym_DASH, - ACTIONS(11455), 1, + ACTIONS(5804), 1, anon_sym_and, - ACTIONS(11457), 1, + ACTIONS(5808), 1, anon_sym_xor, - ACTIONS(11459), 1, + ACTIONS(5813), 1, anon_sym_or, - STATE(6794), 1, + ACTIONS(10877), 1, + anon_sym_DASH, + STATE(6368), 1, sym_comment, - ACTIONS(10150), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10154), 2, + ACTIONS(5705), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(10156), 2, + ACTIONS(5707), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10158), 2, + ACTIONS(5709), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10160), 2, + ACTIONS(5711), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(5717), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10168), 2, + ACTIONS(5723), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10162), 4, + ACTIONS(5719), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(10166), 4, + ACTIONS(5721), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - [215075] = 18, + [214839] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10502), 1, + ACTIONS(6628), 1, anon_sym_PLUS, - ACTIONS(11461), 1, + ACTIONS(10879), 1, anon_sym_DASH, - ACTIONS(11475), 1, + ACTIONS(10893), 1, anon_sym_bit_DASHand, - ACTIONS(11477), 1, + ACTIONS(10895), 1, anon_sym_bit_DASHxor, - ACTIONS(11479), 1, + ACTIONS(10897), 1, anon_sym_bit_DASHor, - ACTIONS(11481), 1, + ACTIONS(10899), 1, anon_sym_and, - ACTIONS(11483), 1, + ACTIONS(10901), 1, anon_sym_xor, - ACTIONS(11485), 1, + ACTIONS(10903), 1, anon_sym_or, - STATE(6795), 1, + STATE(6369), 1, sym_comment, - ACTIONS(10500), 2, + ACTIONS(6626), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(10504), 2, + ACTIONS(6632), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11465), 2, + ACTIONS(10883), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11467), 2, + ACTIONS(10885), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11469), 2, + ACTIONS(10887), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11473), 2, + ACTIONS(10891), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(11463), 4, + ACTIONS(10881), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(11471), 4, + ACTIONS(10889), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [215142] = 18, + [214906] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11205), 1, - anon_sym_DASH, - ACTIONS(11213), 1, + ACTIONS(4881), 1, anon_sym_PLUS, - ACTIONS(11223), 1, + ACTIONS(10905), 1, + anon_sym_DASH, + ACTIONS(10919), 1, anon_sym_bit_DASHand, - ACTIONS(11225), 1, + ACTIONS(10921), 1, anon_sym_bit_DASHxor, - ACTIONS(11227), 1, + ACTIONS(10923), 1, anon_sym_bit_DASHor, - ACTIONS(11229), 1, + ACTIONS(10925), 1, anon_sym_and, - ACTIONS(11231), 1, + ACTIONS(10927), 1, anon_sym_xor, - ACTIONS(11233), 1, + ACTIONS(10929), 1, anon_sym_or, - STATE(6796), 1, + STATE(6370), 1, sym_comment, - ACTIONS(11203), 2, + ACTIONS(4879), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(11207), 2, + ACTIONS(4883), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11209), 2, + ACTIONS(10909), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11211), 2, + ACTIONS(10911), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11215), 2, + ACTIONS(10913), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11221), 2, + ACTIONS(10917), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(11217), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(11219), 4, + ACTIONS(10907), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - [215209] = 18, + ACTIONS(10915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [214973] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11043), 1, - anon_sym_DASH, - ACTIONS(11053), 1, + ACTIONS(10080), 1, anon_sym_PLUS, - ACTIONS(11061), 1, + ACTIONS(10098), 1, anon_sym_bit_DASHand, - ACTIONS(11063), 1, + ACTIONS(10100), 1, anon_sym_bit_DASHxor, - ACTIONS(11065), 1, + ACTIONS(10102), 1, anon_sym_bit_DASHor, - ACTIONS(11067), 1, + ACTIONS(10931), 1, + anon_sym_DASH, + ACTIONS(10933), 1, anon_sym_and, - ACTIONS(11069), 1, + ACTIONS(10935), 1, anon_sym_xor, - ACTIONS(11119), 1, + ACTIONS(10937), 1, anon_sym_or, - STATE(6797), 1, + STATE(6371), 1, sym_comment, - ACTIONS(11041), 2, + ACTIONS(10078), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(11047), 2, + ACTIONS(10082), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11049), 2, + ACTIONS(10084), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11051), 2, + ACTIONS(10086), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11055), 2, + ACTIONS(10088), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11059), 2, + ACTIONS(10096), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(11045), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(11057), 4, + ACTIONS(10090), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [215276] = 18, + ACTIONS(10094), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + [215040] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6299), 1, + ACTIONS(10589), 1, + anon_sym_DASH, + ACTIONS(10597), 1, anon_sym_PLUS, - ACTIONS(6317), 1, + ACTIONS(10607), 1, anon_sym_bit_DASHand, - ACTIONS(6319), 1, + ACTIONS(10609), 1, anon_sym_bit_DASHxor, - ACTIONS(6321), 1, + ACTIONS(10611), 1, anon_sym_bit_DASHor, - ACTIONS(6323), 1, + ACTIONS(10613), 1, anon_sym_and, - ACTIONS(6325), 1, + ACTIONS(10615), 1, anon_sym_xor, - ACTIONS(6327), 1, + ACTIONS(10617), 1, anon_sym_or, - ACTIONS(11487), 1, - anon_sym_DASH, - STATE(6798), 1, + STATE(6372), 1, sym_comment, - ACTIONS(6297), 2, + ACTIONS(10587), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(6301), 2, + ACTIONS(10591), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6303), 2, + ACTIONS(10593), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(6305), 2, + ACTIONS(10595), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(6307), 2, + ACTIONS(10599), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(6315), 2, + ACTIONS(10605), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(6309), 4, + ACTIONS(10601), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6313), 4, + ACTIONS(10603), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - [215343] = 5, + [215107] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11008), 1, - anon_sym_in, - STATE(6799), 1, + ACTIONS(10471), 1, + anon_sym_PLUS, + ACTIONS(10939), 1, + anon_sym_DASH, + ACTIONS(10953), 1, + anon_sym_bit_DASHand, + ACTIONS(10955), 1, + anon_sym_bit_DASHxor, + ACTIONS(10957), 1, + anon_sym_bit_DASHor, + ACTIONS(10959), 1, + anon_sym_and, + ACTIONS(10961), 1, + anon_sym_xor, + ACTIONS(10963), 1, + anon_sym_or, + STATE(6373), 1, sym_comment, - ACTIONS(1198), 5, + ACTIONS(10469), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(10473), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1366), 22, - anon_sym_DASH, + ACTIONS(10943), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10945), 2, anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(10947), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10951), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10941), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10949), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [215384] = 18, + [215174] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10538), 1, + ACTIONS(10571), 1, anon_sym_PLUS, - ACTIONS(10556), 1, + ACTIONS(10621), 1, anon_sym_bit_DASHand, - ACTIONS(10558), 1, + ACTIONS(10623), 1, anon_sym_bit_DASHxor, - ACTIONS(10560), 1, + ACTIONS(10625), 1, anon_sym_bit_DASHor, - ACTIONS(11489), 1, - anon_sym_DASH, - ACTIONS(11491), 1, + ACTIONS(10691), 1, anon_sym_and, - ACTIONS(11493), 1, + ACTIONS(10693), 1, anon_sym_xor, - ACTIONS(11495), 1, + ACTIONS(10695), 1, anon_sym_or, - STATE(6800), 1, + ACTIONS(10965), 1, + anon_sym_DASH, + STATE(6374), 1, sym_comment, - ACTIONS(10536), 2, + ACTIONS(10569), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(10540), 2, + ACTIONS(10573), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(10542), 2, + ACTIONS(10575), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10544), 2, + ACTIONS(10577), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10546), 2, + ACTIONS(10579), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10554), 2, + ACTIONS(10619), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10548), 4, + ACTIONS(10581), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(10552), 4, + ACTIONS(10585), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - [215451] = 18, + [215241] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10616), 1, + ACTIONS(10054), 1, anon_sym_PLUS, - ACTIONS(11497), 1, + ACTIONS(10967), 1, anon_sym_DASH, - ACTIONS(11503), 1, + ACTIONS(10981), 1, anon_sym_bit_DASHand, - ACTIONS(11505), 1, + ACTIONS(10983), 1, anon_sym_bit_DASHxor, - ACTIONS(11507), 1, + ACTIONS(10985), 1, anon_sym_bit_DASHor, - ACTIONS(11509), 1, + ACTIONS(10987), 1, anon_sym_and, - ACTIONS(11511), 1, + ACTIONS(10989), 1, anon_sym_xor, - ACTIONS(11513), 1, + ACTIONS(10991), 1, anon_sym_or, - STATE(6801), 1, + STATE(6375), 1, sym_comment, - ACTIONS(10614), 2, + ACTIONS(10052), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(10618), 2, + ACTIONS(10056), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(10620), 2, + ACTIONS(10971), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10622), 2, + ACTIONS(10973), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10630), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(11501), 2, + ACTIONS(10975), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10626), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(11499), 4, + ACTIONS(10979), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10969), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - [215518] = 18, + ACTIONS(10977), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [215308] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10361), 1, + ACTIONS(10150), 1, anon_sym_PLUS, - ACTIONS(10379), 1, + ACTIONS(10993), 1, + anon_sym_DASH, + ACTIONS(11007), 1, anon_sym_bit_DASHand, - ACTIONS(10381), 1, + ACTIONS(11009), 1, anon_sym_bit_DASHxor, - ACTIONS(10383), 1, + ACTIONS(11011), 1, anon_sym_bit_DASHor, - ACTIONS(11515), 1, - anon_sym_DASH, - ACTIONS(11517), 1, + ACTIONS(11013), 1, anon_sym_and, - ACTIONS(11519), 1, + ACTIONS(11015), 1, anon_sym_xor, - ACTIONS(11521), 1, + ACTIONS(11017), 1, anon_sym_or, - STATE(6802), 1, + STATE(6376), 1, sym_comment, - ACTIONS(10359), 2, + ACTIONS(10148), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(10363), 2, + ACTIONS(10152), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(10365), 2, + ACTIONS(10997), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10367), 2, + ACTIONS(10999), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10369), 2, + ACTIONS(11001), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10377), 2, + ACTIONS(11005), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10371), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(10375), 4, + ACTIONS(10995), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - [215585] = 18, + ACTIONS(11003), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [215375] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11011), 1, - anon_sym_DASH, - ACTIONS(11019), 1, + ACTIONS(10128), 1, anon_sym_PLUS, + ACTIONS(11019), 1, + anon_sym_DASH, ACTIONS(11033), 1, anon_sym_bit_DASHand, ACTIONS(11035), 1, anon_sym_bit_DASHxor, ACTIONS(11037), 1, anon_sym_bit_DASHor, - ACTIONS(11523), 1, + ACTIONS(11039), 1, anon_sym_and, - ACTIONS(11525), 1, + ACTIONS(11041), 1, anon_sym_xor, - ACTIONS(11527), 1, + ACTIONS(11043), 1, anon_sym_or, - STATE(6803), 1, + STATE(6377), 1, sym_comment, - ACTIONS(11013), 2, + ACTIONS(10126), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10130), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11015), 2, + ACTIONS(11023), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11017), 2, + ACTIONS(11025), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11021), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(11025), 2, + ACTIONS(11027), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, ACTIONS(11031), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(11027), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(11029), 4, + ACTIONS(11021), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - [215652] = 18, + ACTIONS(11029), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [215442] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10968), 1, + ACTIONS(10247), 1, anon_sym_PLUS, - ACTIONS(10984), 1, + ACTIONS(11045), 1, + anon_sym_DASH, + ACTIONS(11051), 1, anon_sym_bit_DASHand, - ACTIONS(10986), 1, + ACTIONS(11053), 1, anon_sym_bit_DASHxor, - ACTIONS(10988), 1, + ACTIONS(11055), 1, anon_sym_bit_DASHor, - ACTIONS(10990), 1, + ACTIONS(11057), 1, anon_sym_and, - ACTIONS(10992), 1, + ACTIONS(11059), 1, anon_sym_xor, - ACTIONS(10994), 1, + ACTIONS(11061), 1, anon_sym_or, - ACTIONS(11529), 1, - anon_sym_DASH, - STATE(6804), 1, + STATE(6378), 1, sym_comment, - ACTIONS(10966), 2, + ACTIONS(10245), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(10970), 2, + ACTIONS(10249), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(10972), 2, + ACTIONS(10251), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10974), 2, + ACTIONS(10253), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10976), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10982), 2, + ACTIONS(10297), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10978), 4, + ACTIONS(11049), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(10980), 4, + ACTIONS(11047), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - [215719] = 18, + [215509] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, + ACTIONS(9758), 1, anon_sym_PLUS, - ACTIONS(11531), 1, - anon_sym_DASH, - ACTIONS(11537), 1, + ACTIONS(9782), 1, anon_sym_bit_DASHand, - ACTIONS(11539), 1, + ACTIONS(9786), 1, anon_sym_bit_DASHxor, - ACTIONS(11541), 1, + ACTIONS(9788), 1, anon_sym_bit_DASHor, - ACTIONS(11543), 1, + ACTIONS(11063), 1, + anon_sym_DASH, + ACTIONS(11065), 1, anon_sym_and, - ACTIONS(11545), 1, + ACTIONS(11067), 1, anon_sym_xor, - ACTIONS(11547), 1, + ACTIONS(11069), 1, anon_sym_or, - STATE(6805), 1, + STATE(6379), 1, sym_comment, - ACTIONS(1764), 2, + ACTIONS(9756), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(1768), 2, + ACTIONS(9760), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1770), 2, + ACTIONS(9762), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(1772), 2, + ACTIONS(9764), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1780), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(11535), 2, + ACTIONS(9766), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(1776), 4, + ACTIONS(9780), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9768), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(11533), 4, + ACTIONS(9776), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - [215786] = 18, + [215576] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7050), 1, + ACTIONS(10332), 1, anon_sym_PLUS, - ACTIONS(11549), 1, + ACTIONS(11071), 1, anon_sym_DASH, - ACTIONS(11563), 1, + ACTIONS(11085), 1, anon_sym_bit_DASHand, - ACTIONS(11565), 1, + ACTIONS(11087), 1, anon_sym_bit_DASHxor, - ACTIONS(11567), 1, + ACTIONS(11089), 1, anon_sym_bit_DASHor, - ACTIONS(11569), 1, + ACTIONS(11091), 1, anon_sym_and, - ACTIONS(11571), 1, + ACTIONS(11093), 1, anon_sym_xor, - ACTIONS(11573), 1, + ACTIONS(11095), 1, anon_sym_or, - STATE(6806), 1, + STATE(6380), 1, sym_comment, - ACTIONS(7048), 2, + ACTIONS(10330), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(7054), 2, + ACTIONS(10336), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11553), 2, + ACTIONS(11075), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11555), 2, + ACTIONS(11077), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11557), 2, + ACTIONS(11079), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11561), 2, + ACTIONS(11083), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(11551), 4, + ACTIONS(11073), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(11559), 4, + ACTIONS(11081), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [215853] = 18, + [215643] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11141), 1, + ACTIONS(9881), 1, anon_sym_PLUS, - ACTIONS(11159), 1, + ACTIONS(9899), 1, anon_sym_bit_DASHand, - ACTIONS(11161), 1, + ACTIONS(9901), 1, anon_sym_bit_DASHxor, - ACTIONS(11163), 1, + ACTIONS(9903), 1, anon_sym_bit_DASHor, - ACTIONS(11575), 1, + ACTIONS(11097), 1, anon_sym_DASH, - ACTIONS(11577), 1, + ACTIONS(11099), 1, anon_sym_and, - ACTIONS(11579), 1, + ACTIONS(11101), 1, anon_sym_xor, - ACTIONS(11581), 1, + ACTIONS(11103), 1, anon_sym_or, - STATE(6807), 1, + STATE(6381), 1, sym_comment, - ACTIONS(11139), 2, + ACTIONS(9879), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(11143), 2, + ACTIONS(9883), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11145), 2, + ACTIONS(9885), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11147), 2, + ACTIONS(9887), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11149), 2, + ACTIONS(9889), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11157), 2, + ACTIONS(9897), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(11151), 4, + ACTIONS(9891), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(11155), 4, + ACTIONS(9895), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - [215920] = 18, + [215710] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6964), 1, + ACTIONS(10657), 1, anon_sym_PLUS, - ACTIONS(11583), 1, - anon_sym_DASH, - ACTIONS(11597), 1, + ACTIONS(10675), 1, anon_sym_bit_DASHand, - ACTIONS(11599), 1, + ACTIONS(10677), 1, anon_sym_bit_DASHxor, - ACTIONS(11601), 1, + ACTIONS(10679), 1, anon_sym_bit_DASHor, - ACTIONS(11603), 1, + ACTIONS(11105), 1, + anon_sym_DASH, + ACTIONS(11107), 1, anon_sym_and, - ACTIONS(11605), 1, + ACTIONS(11109), 1, anon_sym_xor, - ACTIONS(11607), 1, + ACTIONS(11111), 1, anon_sym_or, - STATE(6808), 1, + STATE(6382), 1, sym_comment, - ACTIONS(6962), 2, + ACTIONS(10655), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(6966), 2, + ACTIONS(10659), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11587), 2, + ACTIONS(10661), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11589), 2, + ACTIONS(10663), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11591), 2, + ACTIONS(10665), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11595), 2, + ACTIONS(10673), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(11585), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(11593), 4, + ACTIONS(10667), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [215987] = 18, + ACTIONS(10671), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + [215777] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7483), 1, + ACTIONS(10699), 1, + anon_sym_DASH, + ACTIONS(10709), 1, anon_sym_PLUS, - ACTIONS(7501), 1, + ACTIONS(10717), 1, anon_sym_bit_DASHand, - ACTIONS(7503), 1, + ACTIONS(10719), 1, anon_sym_bit_DASHxor, - ACTIONS(7505), 1, + ACTIONS(10721), 1, anon_sym_bit_DASHor, - ACTIONS(7507), 1, + ACTIONS(10723), 1, anon_sym_and, - ACTIONS(7509), 1, + ACTIONS(10755), 1, anon_sym_xor, - ACTIONS(7511), 1, + ACTIONS(10757), 1, anon_sym_or, - ACTIONS(11609), 1, - anon_sym_DASH, - STATE(6809), 1, + STATE(6383), 1, sym_comment, - ACTIONS(7481), 2, + ACTIONS(10697), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(7485), 2, + ACTIONS(10703), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(7487), 2, + ACTIONS(10705), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(7489), 2, + ACTIONS(10707), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(7491), 2, + ACTIONS(10711), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(7499), 2, + ACTIONS(10715), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(7493), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7497), 4, + ACTIONS(10701), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - [216054] = 18, + ACTIONS(10713), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [215844] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1734), 1, + ACTIONS(1564), 1, anon_sym_PLUS, - ACTIONS(11611), 1, + ACTIONS(11113), 1, anon_sym_DASH, - ACTIONS(11625), 1, + ACTIONS(11119), 1, anon_sym_bit_DASHand, - ACTIONS(11627), 1, + ACTIONS(11121), 1, anon_sym_bit_DASHxor, - ACTIONS(11629), 1, + ACTIONS(11123), 1, anon_sym_bit_DASHor, - ACTIONS(11631), 1, + ACTIONS(11125), 1, anon_sym_and, - ACTIONS(11633), 1, + ACTIONS(11127), 1, anon_sym_xor, - ACTIONS(11635), 1, + ACTIONS(11129), 1, anon_sym_or, - STATE(6810), 1, + STATE(6384), 1, sym_comment, - ACTIONS(1732), 2, + ACTIONS(1562), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(1736), 2, + ACTIONS(1566), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11615), 2, + ACTIONS(1568), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11617), 2, + ACTIONS(1570), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11619), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(11623), 2, + ACTIONS(1578), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(11613), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(11621), 4, + ACTIONS(11117), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(1574), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [216121] = 18, + ACTIONS(11115), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + [215911] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1437), 1, - anon_sym_PLUS, - ACTIONS(11637), 1, - anon_sym_DASH, - ACTIONS(11651), 1, - anon_sym_bit_DASHand, - ACTIONS(11653), 1, - anon_sym_bit_DASHxor, - ACTIONS(11655), 1, - anon_sym_bit_DASHor, - ACTIONS(11657), 1, - anon_sym_and, - ACTIONS(11659), 1, - anon_sym_xor, - ACTIONS(11661), 1, - anon_sym_or, - STATE(6811), 1, + ACTIONS(10458), 1, + anon_sym_in, + STATE(6385), 1, sym_comment, - ACTIONS(1435), 2, + ACTIONS(1076), 5, anon_sym_GT, - anon_sym_LT2, - ACTIONS(1439), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11641), 2, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1169), 22, + anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11643), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11645), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11649), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(11639), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(11647), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [216188] = 18, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [215952] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1382), 1, - anon_sym_PLUS, - ACTIONS(11663), 1, + ACTIONS(10539), 1, anon_sym_DASH, - ACTIONS(11677), 1, + ACTIONS(10549), 1, + anon_sym_PLUS, + ACTIONS(10559), 1, anon_sym_bit_DASHand, - ACTIONS(11679), 1, + ACTIONS(10561), 1, anon_sym_bit_DASHxor, - ACTIONS(11681), 1, + ACTIONS(10563), 1, anon_sym_bit_DASHor, - ACTIONS(11683), 1, + ACTIONS(11131), 1, anon_sym_and, - ACTIONS(11685), 1, + ACTIONS(11133), 1, anon_sym_xor, - ACTIONS(11687), 1, + ACTIONS(11135), 1, anon_sym_or, - STATE(6812), 1, + STATE(6386), 1, sym_comment, - ACTIONS(1380), 2, + ACTIONS(10537), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(1384), 2, + ACTIONS(10543), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11667), 2, + ACTIONS(10545), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11669), 2, + ACTIONS(10547), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11671), 2, + ACTIONS(10551), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11675), 2, + ACTIONS(10557), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(11665), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(11673), 4, + ACTIONS(10553), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [216255] = 18, + ACTIONS(10555), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + [216019] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11081), 1, - anon_sym_DASH, - ACTIONS(11091), 1, + ACTIONS(9925), 1, anon_sym_PLUS, - ACTIONS(11099), 1, + ACTIONS(11137), 1, + anon_sym_DASH, + ACTIONS(11151), 1, anon_sym_bit_DASHand, - ACTIONS(11113), 1, + ACTIONS(11153), 1, anon_sym_bit_DASHxor, - ACTIONS(11115), 1, + ACTIONS(11155), 1, anon_sym_bit_DASHor, - ACTIONS(11117), 1, + ACTIONS(11157), 1, anon_sym_and, - ACTIONS(11121), 1, + ACTIONS(11159), 1, anon_sym_xor, - ACTIONS(11123), 1, + ACTIONS(11161), 1, anon_sym_or, - STATE(6813), 1, + STATE(6387), 1, sym_comment, - ACTIONS(11079), 2, + ACTIONS(9923), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(11085), 2, + ACTIONS(9929), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11087), 2, + ACTIONS(11141), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11089), 2, + ACTIONS(11143), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11093), 2, + ACTIONS(11145), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11097), 2, + ACTIONS(11149), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(11083), 4, + ACTIONS(11139), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(11095), 4, + ACTIONS(11147), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [216322] = 18, + [216086] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6113), 1, + ACTIONS(10193), 1, anon_sym_PLUS, - ACTIONS(6131), 1, + ACTIONS(11163), 1, + anon_sym_DASH, + ACTIONS(11177), 1, anon_sym_bit_DASHand, - ACTIONS(6133), 1, + ACTIONS(11179), 1, anon_sym_bit_DASHxor, - ACTIONS(6135), 1, + ACTIONS(11181), 1, anon_sym_bit_DASHor, - ACTIONS(6137), 1, + ACTIONS(11183), 1, anon_sym_and, - ACTIONS(6139), 1, + ACTIONS(11185), 1, anon_sym_xor, - ACTIONS(6141), 1, + ACTIONS(11187), 1, anon_sym_or, - ACTIONS(11689), 1, - anon_sym_DASH, - STATE(6814), 1, + STATE(6388), 1, sym_comment, - ACTIONS(6111), 2, + ACTIONS(10191), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(6115), 2, + ACTIONS(10195), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6117), 2, + ACTIONS(11167), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(6119), 2, + ACTIONS(11169), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(6121), 2, + ACTIONS(11171), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(6129), 2, + ACTIONS(11175), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(6123), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6127), 4, + ACTIONS(11165), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - [216389] = 18, + ACTIONS(11173), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [216153] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5267), 1, + ACTIONS(6443), 1, anon_sym_PLUS, - ACTIONS(11691), 1, + ACTIONS(11189), 1, anon_sym_DASH, - ACTIONS(11705), 1, + ACTIONS(11203), 1, anon_sym_bit_DASHand, - ACTIONS(11707), 1, + ACTIONS(11205), 1, anon_sym_bit_DASHxor, - ACTIONS(11709), 1, + ACTIONS(11207), 1, anon_sym_bit_DASHor, - ACTIONS(11711), 1, + ACTIONS(11209), 1, anon_sym_and, - ACTIONS(11713), 1, + ACTIONS(11211), 1, anon_sym_xor, - ACTIONS(11715), 1, + ACTIONS(11213), 1, anon_sym_or, - STATE(6815), 1, + STATE(6389), 1, sym_comment, - ACTIONS(5265), 2, + ACTIONS(6441), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(5269), 2, + ACTIONS(6447), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11695), 2, + ACTIONS(11193), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11697), 2, + ACTIONS(11195), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11699), 2, + ACTIONS(11197), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11703), 2, + ACTIONS(11201), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(11693), 4, + ACTIONS(11191), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(11701), 4, + ACTIONS(11199), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [216456] = 18, + [216220] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10395), 1, + ACTIONS(10507), 1, anon_sym_PLUS, - ACTIONS(11717), 1, - anon_sym_DASH, - ACTIONS(11731), 1, + ACTIONS(10523), 1, anon_sym_bit_DASHand, - ACTIONS(11733), 1, + ACTIONS(10525), 1, anon_sym_bit_DASHxor, - ACTIONS(11735), 1, + ACTIONS(10527), 1, anon_sym_bit_DASHor, - ACTIONS(11737), 1, + ACTIONS(10529), 1, anon_sym_and, - ACTIONS(11739), 1, + ACTIONS(10531), 1, anon_sym_xor, - ACTIONS(11741), 1, + ACTIONS(10533), 1, anon_sym_or, - STATE(6816), 1, + ACTIONS(11215), 1, + anon_sym_DASH, + STATE(6390), 1, sym_comment, - ACTIONS(10393), 2, + ACTIONS(10505), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(10399), 2, + ACTIONS(10509), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(11721), 2, + ACTIONS(10511), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11723), 2, + ACTIONS(10513), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11725), 2, + ACTIONS(10515), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11729), 2, + ACTIONS(10521), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(11719), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(11727), 4, + ACTIONS(10517), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [216523] = 15, + ACTIONS(10519), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + [216287] = 15, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(938), 1, + ACTIONS(922), 1, anon_sym_LF, - ACTIONS(3317), 1, + ACTIONS(3052), 1, anon_sym_DOLLAR, - ACTIONS(8904), 1, + ACTIONS(8419), 1, aux_sym_unquoted_token3, - ACTIONS(8972), 1, + ACTIONS(8606), 1, aux_sym_unquoted_token5, - ACTIONS(11743), 1, + ACTIONS(11217), 1, anon_sym_LPAREN2, - ACTIONS(11745), 1, + ACTIONS(11219), 1, anon_sym_DOT, - ACTIONS(11747), 1, + ACTIONS(11221), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11749), 1, + ACTIONS(11223), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11751), 1, + ACTIONS(11225), 1, aux_sym__immediate_decimal_token4, - STATE(4674), 1, + STATE(4193), 1, sym__var, - STATE(6817), 1, + STATE(6391), 1, sym_comment, - STATE(7124), 1, + STATE(6688), 1, sym__immediate_decimal, - STATE(7812), 2, + STATE(7196), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(936), 6, + ACTIONS(920), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [216575] = 13, + [216339] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11753), 1, + ACTIONS(11227), 1, anon_sym_DOLLAR, - ACTIONS(11755), 1, + ACTIONS(11229), 1, anon_sym_LPAREN2, - ACTIONS(11757), 1, + ACTIONS(11231), 1, anon_sym_DOT, - ACTIONS(11759), 1, + ACTIONS(11233), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11761), 1, + ACTIONS(11235), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11763), 1, + ACTIONS(11237), 1, aux_sym__immediate_decimal_token4, - STATE(6818), 1, + STATE(6392), 1, sym_comment, - STATE(7151), 1, + STATE(6504), 1, sym__var, - STATE(7621), 1, + STATE(6659), 1, sym__immediate_decimal, - ACTIONS(2349), 2, + ACTIONS(2169), 2, sym_identifier, anon_sym_DASH, - STATE(7619), 2, + STATE(6657), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2351), 7, + ACTIONS(2171), 7, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -538338,34 +497579,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [216623] = 13, + [216387] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11753), 1, - anon_sym_DOLLAR, - ACTIONS(11755), 1, + ACTIONS(11229), 1, anon_sym_LPAREN2, - ACTIONS(11757), 1, + ACTIONS(11237), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11239), 1, + anon_sym_DOLLAR, + ACTIONS(11241), 1, anon_sym_DOT, - ACTIONS(11759), 1, + ACTIONS(11243), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11761), 1, + ACTIONS(11245), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11763), 1, - aux_sym__immediate_decimal_token4, - STATE(6819), 1, + STATE(6393), 1, sym_comment, - STATE(7151), 1, + STATE(6778), 1, sym__var, - STATE(7198), 1, + STATE(7334), 1, sym__immediate_decimal, - ACTIONS(2002), 2, + ACTIONS(2136), 2, sym_identifier, anon_sym_DASH, - STATE(7632), 2, + STATE(7301), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2004), 7, + ACTIONS(2138), 7, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -538373,71 +497614,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [216671] = 15, - ACTIONS(113), 1, + [216435] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(938), 1, - anon_sym_LF, - ACTIONS(3317), 1, - anon_sym_DOLLAR, - ACTIONS(8904), 1, - aux_sym_unquoted_token3, - ACTIONS(8972), 1, - aux_sym_unquoted_token5, - ACTIONS(11743), 1, + ACTIONS(11229), 1, anon_sym_LPAREN2, - ACTIONS(11745), 1, + ACTIONS(11237), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11239), 1, + anon_sym_DOLLAR, + ACTIONS(11241), 1, anon_sym_DOT, - ACTIONS(11747), 1, + ACTIONS(11243), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11749), 1, + ACTIONS(11245), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11751), 1, - aux_sym__immediate_decimal_token4, - STATE(4674), 1, - sym__var, - STATE(6820), 1, + STATE(6394), 1, sym_comment, - STATE(7287), 1, + STATE(6655), 1, sym__immediate_decimal, - STATE(7812), 2, + STATE(6778), 1, + sym__var, + ACTIONS(1882), 2, + sym_identifier, + anon_sym_DASH, + STATE(7151), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(936), 6, - anon_sym_SEMI, + ACTIONS(1884), 7, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [216723] = 13, + [216483] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11753), 1, + ACTIONS(11229), 1, + anon_sym_LPAREN2, + ACTIONS(11237), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11239), 1, anon_sym_DOLLAR, - ACTIONS(11755), 1, + ACTIONS(11241), 1, + anon_sym_DOT, + ACTIONS(11243), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11245), 1, + aux_sym__immediate_decimal_token3, + STATE(6395), 1, + sym_comment, + STATE(6778), 1, + sym__var, + STATE(7288), 1, + sym__immediate_decimal, + ACTIONS(2207), 2, + sym_identifier, + anon_sym_DASH, + STATE(7401), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(2209), 7, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [216531] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11229), 1, anon_sym_LPAREN2, - ACTIONS(11757), 1, + ACTIONS(11237), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11239), 1, + anon_sym_DOLLAR, + ACTIONS(11241), 1, anon_sym_DOT, - ACTIONS(11759), 1, + ACTIONS(11243), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11761), 1, + ACTIONS(11245), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11763), 1, - aux_sym__immediate_decimal_token4, - STATE(6821), 1, + STATE(6396), 1, sym_comment, - STATE(7151), 1, + STATE(6778), 1, sym__var, - STATE(7626), 1, + STATE(7381), 1, sym__immediate_decimal, - ACTIONS(2359), 2, + ACTIONS(2169), 2, sym_identifier, anon_sym_DASH, - STATE(7624), 2, + STATE(7324), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2361), 7, + ACTIONS(2171), 7, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -538445,34 +497719,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [216771] = 13, + [216579] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11753), 1, - anon_sym_DOLLAR, - ACTIONS(11755), 1, + ACTIONS(11229), 1, anon_sym_LPAREN2, - ACTIONS(11757), 1, + ACTIONS(11237), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11239), 1, + anon_sym_DOLLAR, + ACTIONS(11241), 1, anon_sym_DOT, - ACTIONS(11759), 1, + ACTIONS(11243), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11761), 1, + ACTIONS(11245), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11763), 1, - aux_sym__immediate_decimal_token4, - STATE(6822), 1, + STATE(6397), 1, sym_comment, - STATE(7151), 1, + STATE(6778), 1, sym__var, - STATE(7631), 1, + STATE(7246), 1, sym__immediate_decimal, - ACTIONS(2383), 2, + ACTIONS(2146), 2, sym_identifier, anon_sym_DASH, - STATE(7630), 2, + STATE(7346), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2385), 7, + ACTIONS(2148), 7, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -538480,34 +497754,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [216819] = 13, + [216627] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11755), 1, - anon_sym_LPAREN2, - ACTIONS(11763), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(11765), 1, + ACTIONS(11227), 1, anon_sym_DOLLAR, - ACTIONS(11767), 1, - anon_sym_DOT, - ACTIONS(11769), 1, + ACTIONS(11229), 1, + anon_sym_LPAREN2, + ACTIONS(11233), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11771), 1, + ACTIONS(11235), 1, aux_sym__immediate_decimal_token3, - STATE(6823), 1, + ACTIONS(11237), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11247), 1, + anon_sym_DOT, + STATE(6398), 1, sym_comment, - STATE(6921), 1, + STATE(6504), 1, sym__var, - STATE(7137), 1, + STATE(6765), 1, sym__immediate_decimal, - ACTIONS(1920), 2, + ACTIONS(1838), 2, sym_identifier, anon_sym_DASH, - STATE(7115), 2, + STATE(6661), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1922), 7, + ACTIONS(1840), 7, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -538515,34 +497789,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [216867] = 13, + [216675] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11755), 1, + ACTIONS(11229), 1, anon_sym_LPAREN2, - ACTIONS(11763), 1, + ACTIONS(11237), 1, aux_sym__immediate_decimal_token4, - ACTIONS(11765), 1, + ACTIONS(11239), 1, anon_sym_DOLLAR, - ACTIONS(11769), 1, + ACTIONS(11241), 1, + anon_sym_DOT, + ACTIONS(11243), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11771), 1, + ACTIONS(11245), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11773), 1, - anon_sym_DOT, - STATE(6824), 1, + STATE(6399), 1, sym_comment, - STATE(6921), 1, + STATE(6778), 1, sym__var, - STATE(7104), 1, + STATE(6788), 1, sym__immediate_decimal, - ACTIONS(2387), 2, + ACTIONS(1838), 2, sym_identifier, anon_sym_DASH, - STATE(7101), 2, + STATE(7168), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2389), 7, + ACTIONS(1840), 7, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -538550,84 +497824,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [216915] = 13, - ACTIONS(3), 1, + [216723] = 15, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(11753), 1, + ACTIONS(922), 1, + anon_sym_LF, + ACTIONS(3052), 1, anon_sym_DOLLAR, - ACTIONS(11755), 1, + ACTIONS(8419), 1, + aux_sym_unquoted_token3, + ACTIONS(8606), 1, + aux_sym_unquoted_token5, + ACTIONS(11217), 1, anon_sym_LPAREN2, - ACTIONS(11757), 1, + ACTIONS(11219), 1, anon_sym_DOT, - ACTIONS(11759), 1, + ACTIONS(11221), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11761), 1, + ACTIONS(11223), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11763), 1, + ACTIONS(11225), 1, aux_sym__immediate_decimal_token4, - STATE(6825), 1, - sym_comment, - STATE(7151), 1, + STATE(4193), 1, sym__var, - STATE(7196), 1, + STATE(6400), 1, + sym_comment, + STATE(6869), 1, sym__immediate_decimal, - ACTIONS(1920), 2, - sym_identifier, - anon_sym_DASH, - STATE(7586), 2, + STATE(7196), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1922), 7, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(920), 6, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [216963] = 13, - ACTIONS(3), 1, + anon_sym_DASH, + anon_sym_RBRACE, + [216775] = 15, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(11753), 1, + ACTIONS(922), 1, + aux_sym_command_token1, + ACTIONS(1598), 1, anon_sym_DOLLAR, - ACTIONS(11755), 1, + ACTIONS(8548), 1, + aux_sym_unquoted_token3, + ACTIONS(8550), 1, + aux_sym_unquoted_token5, + ACTIONS(11249), 1, anon_sym_LPAREN2, - ACTIONS(11757), 1, + ACTIONS(11251), 1, anon_sym_DOT, - ACTIONS(11759), 1, + ACTIONS(11253), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11761), 1, + ACTIONS(11255), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11763), 1, + ACTIONS(11257), 1, aux_sym__immediate_decimal_token4, - STATE(6826), 1, + STATE(4205), 1, + sym__var, + STATE(6401), 1, sym_comment, - STATE(7151), 1, + STATE(6986), 1, + sym__immediate_decimal, + STATE(7434), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(920), 5, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_LF2, + [216826] = 14, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1840), 1, + anon_sym_LF, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(5011), 1, + anon_sym_DOLLAR, + ACTIONS(11217), 1, + anon_sym_LPAREN2, + ACTIONS(11259), 1, + anon_sym_DOT, + ACTIONS(11261), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11263), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(11265), 1, + aux_sym__immediate_decimal_token4, + STATE(4713), 1, sym__var, - STATE(7581), 1, + STATE(6402), 1, + sym_comment, + STATE(7521), 1, sym__immediate_decimal, - ACTIONS(2387), 2, - sym_identifier, - anon_sym_DASH, - STATE(7580), 2, + STATE(7924), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2389), 7, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(1838), 6, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [217011] = 4, + anon_sym_DASH, + anon_sym_RBRACE, + [216875] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1059), 1, + ACTIONS(1020), 1, anon_sym_DASH, - STATE(6827), 1, + STATE(6403), 1, sym_comment, - ACTIONS(1061), 17, + ACTIONS(1022), 17, anon_sym_EQ, anon_sym_SEMI, sym_cmd_identifier, @@ -538645,578 +497957,643 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [217040] = 15, + [216904] = 15, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(938), 1, + ACTIONS(922), 1, aux_sym_command_token1, - ACTIONS(1874), 1, + ACTIONS(1650), 1, anon_sym_DOLLAR, - ACTIONS(9043), 1, + ACTIONS(8391), 1, aux_sym_unquoted_token3, - ACTIONS(9093), 1, + ACTIONS(8465), 1, aux_sym_unquoted_token5, - ACTIONS(11775), 1, + ACTIONS(11267), 1, anon_sym_LPAREN2, - ACTIONS(11777), 1, + ACTIONS(11269), 1, anon_sym_DOT, - ACTIONS(11779), 1, + ACTIONS(11271), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11781), 1, + ACTIONS(11273), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11783), 1, + ACTIONS(11275), 1, aux_sym__immediate_decimal_token4, - STATE(4676), 1, + STATE(4188), 1, sym__var, - STATE(6828), 1, + STATE(6404), 1, sym_comment, - STATE(7274), 1, + STATE(7020), 1, sym__immediate_decimal, - STATE(7924), 2, + STATE(7489), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(936), 5, + ACTIONS(920), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [217091] = 15, + [216955] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(938), 1, - aux_sym_command_token1, - ACTIONS(1822), 1, + ACTIONS(922), 1, + anon_sym_LF, + ACTIONS(5011), 1, anon_sym_DOLLAR, - ACTIONS(9001), 1, - aux_sym_unquoted_token3, - ACTIONS(9055), 1, - aux_sym_unquoted_token5, - ACTIONS(11785), 1, + ACTIONS(8419), 1, + aux_sym_unquoted_token4, + ACTIONS(11217), 1, anon_sym_LPAREN2, - ACTIONS(11787), 1, + ACTIONS(11259), 1, anon_sym_DOT, - ACTIONS(11789), 1, + ACTIONS(11261), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11791), 1, + ACTIONS(11263), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11793), 1, + ACTIONS(11265), 1, aux_sym__immediate_decimal_token4, - STATE(4594), 1, + STATE(4713), 1, sym__var, - STATE(6829), 1, + STATE(6405), 1, sym_comment, - STATE(7495), 1, + STATE(7516), 1, sym__immediate_decimal, - STATE(7908), 2, + STATE(7888), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(936), 5, + ACTIONS(920), 6, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_LF2, - [217142] = 15, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [217004] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2925), 1, + ACTIONS(1884), 1, + anon_sym_LF, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(5011), 1, anon_sym_DOLLAR, - ACTIONS(9162), 1, - aux_sym_unquoted_token3, - ACTIONS(9327), 1, - aux_sym_unquoted_token5, - ACTIONS(11795), 1, + ACTIONS(11217), 1, anon_sym_LPAREN2, - ACTIONS(11797), 1, + ACTIONS(11259), 1, anon_sym_DOT, - ACTIONS(11799), 1, + ACTIONS(11261), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11801), 1, + ACTIONS(11263), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11803), 1, + ACTIONS(11265), 1, aux_sym__immediate_decimal_token4, - STATE(4804), 1, + STATE(4713), 1, sym__var, - STATE(6830), 1, + STATE(6406), 1, sym_comment, - STATE(7299), 1, + STATE(7309), 1, sym__immediate_decimal, - ACTIONS(938), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(7952), 2, + STATE(7956), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(936), 4, + ACTIONS(1882), 6, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [217193] = 14, + anon_sym_RBRACE, + [217053] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1033), 1, + anon_sym_DASH, + STATE(6407), 1, + sym_comment, + ACTIONS(1035), 17, + anon_sym_EQ, + anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [217082] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2004), 1, + ACTIONS(1884), 1, anon_sym_LF, - ACTIONS(2006), 1, + ACTIONS(1886), 1, aux_sym_unquoted_token2, - ACTIONS(5529), 1, + ACTIONS(5011), 1, anon_sym_DOLLAR, - ACTIONS(11743), 1, + ACTIONS(11217), 1, anon_sym_LPAREN2, - ACTIONS(11805), 1, + ACTIONS(11259), 1, anon_sym_DOT, - ACTIONS(11807), 1, + ACTIONS(11261), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11809), 1, + ACTIONS(11263), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11811), 1, + ACTIONS(11265), 1, aux_sym__immediate_decimal_token4, - STATE(5098), 1, + STATE(4713), 1, sym__var, - STATE(6831), 1, + STATE(6408), 1, sym_comment, - STATE(7983), 1, + STATE(7524), 1, sym__immediate_decimal, - STATE(8288), 2, + STATE(7956), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2002), 6, + ACTIONS(1882), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [217242] = 14, + [217131] = 15, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2004), 1, - anon_sym_LF, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - ACTIONS(5529), 1, + ACTIONS(922), 1, + aux_sym_command_token1, + ACTIONS(1650), 1, anon_sym_DOLLAR, - ACTIONS(11743), 1, + ACTIONS(8391), 1, + aux_sym_unquoted_token3, + ACTIONS(8465), 1, + aux_sym_unquoted_token5, + ACTIONS(11267), 1, anon_sym_LPAREN2, - ACTIONS(11805), 1, + ACTIONS(11269), 1, anon_sym_DOT, - ACTIONS(11807), 1, + ACTIONS(11271), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11809), 1, + ACTIONS(11273), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11811), 1, + ACTIONS(11275), 1, aux_sym__immediate_decimal_token4, - STATE(5098), 1, + STATE(4188), 1, sym__var, - STATE(6832), 1, + STATE(6409), 1, sym_comment, - STATE(7765), 1, + STATE(6919), 1, sym__immediate_decimal, - STATE(8288), 2, + STATE(7489), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2002), 6, + ACTIONS(920), 5, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_RBRACE, - [217291] = 14, + [217182] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1922), 1, + ACTIONS(1840), 1, anon_sym_LF, - ACTIONS(1934), 1, + ACTIONS(1844), 1, aux_sym_unquoted_token2, - ACTIONS(3317), 1, + ACTIONS(3052), 1, anon_sym_DOLLAR, - ACTIONS(11743), 1, + ACTIONS(11217), 1, anon_sym_LPAREN2, - ACTIONS(11747), 1, + ACTIONS(11221), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11749), 1, + ACTIONS(11223), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11751), 1, + ACTIONS(11225), 1, aux_sym__immediate_decimal_token4, - ACTIONS(11813), 1, + ACTIONS(11277), 1, anon_sym_DOT, - STATE(4674), 1, + STATE(4193), 1, sym__var, - STATE(6833), 1, + STATE(6410), 1, sym_comment, - STATE(7156), 1, + STATE(6747), 1, sym__immediate_decimal, - STATE(7815), 2, + STATE(7199), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1920), 6, + ACTIONS(1838), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [217340] = 15, + [217231] = 15, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(938), 1, - aux_sym_command_token1, - ACTIONS(1874), 1, + ACTIONS(2667), 1, anon_sym_DOLLAR, - ACTIONS(9043), 1, + ACTIONS(8643), 1, aux_sym_unquoted_token3, - ACTIONS(9093), 1, + ACTIONS(8838), 1, aux_sym_unquoted_token5, - ACTIONS(11775), 1, + ACTIONS(11279), 1, anon_sym_LPAREN2, - ACTIONS(11777), 1, + ACTIONS(11281), 1, anon_sym_DOT, - ACTIONS(11779), 1, + ACTIONS(11283), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11781), 1, + ACTIONS(11285), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11783), 1, + ACTIONS(11287), 1, aux_sym__immediate_decimal_token4, - STATE(4676), 1, + STATE(4310), 1, sym__var, - STATE(6834), 1, + STATE(6411), 1, sym_comment, - STATE(7379), 1, + STATE(7059), 1, sym__immediate_decimal, - STATE(7924), 2, + ACTIONS(922), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(7539), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(936), 5, + ACTIONS(920), 4, anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [217391] = 14, + anon_sym_DASH_DASH, + anon_sym_DASH, + [217282] = 15, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1922), 1, - anon_sym_LF, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(5529), 1, + ACTIONS(922), 1, + aux_sym_command_token1, + ACTIONS(1598), 1, anon_sym_DOLLAR, - ACTIONS(11743), 1, + ACTIONS(8548), 1, + aux_sym_unquoted_token3, + ACTIONS(8550), 1, + aux_sym_unquoted_token5, + ACTIONS(11249), 1, anon_sym_LPAREN2, - ACTIONS(11805), 1, + ACTIONS(11251), 1, anon_sym_DOT, - ACTIONS(11807), 1, + ACTIONS(11253), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11809), 1, + ACTIONS(11255), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11811), 1, + ACTIONS(11257), 1, aux_sym__immediate_decimal_token4, - STATE(5098), 1, + STATE(4205), 1, sym__var, - STATE(6835), 1, + STATE(6412), 1, sym_comment, - STATE(7704), 1, + STATE(6865), 1, sym__immediate_decimal, - STATE(8497), 2, + STATE(7434), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1920), 6, + ACTIONS(920), 5, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [217440] = 15, + anon_sym_LF2, + [217333] = 15, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2925), 1, + ACTIONS(2667), 1, anon_sym_DOLLAR, - ACTIONS(9162), 1, + ACTIONS(8643), 1, aux_sym_unquoted_token3, - ACTIONS(9327), 1, + ACTIONS(8838), 1, aux_sym_unquoted_token5, - ACTIONS(11795), 1, + ACTIONS(11279), 1, anon_sym_LPAREN2, - ACTIONS(11797), 1, + ACTIONS(11281), 1, anon_sym_DOT, - ACTIONS(11799), 1, + ACTIONS(11283), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11801), 1, + ACTIONS(11285), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11803), 1, + ACTIONS(11287), 1, aux_sym__immediate_decimal_token4, - STATE(4804), 1, + STATE(4310), 1, sym__var, - STATE(6836), 1, + STATE(6413), 1, sym_comment, - STATE(7512), 1, + STATE(6807), 1, sym__immediate_decimal, - ACTIONS(938), 2, + ACTIONS(922), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(7952), 2, + STATE(7539), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(936), 4, + ACTIONS(920), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [217491] = 14, + [217384] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(938), 1, + ACTIONS(922), 1, anon_sym_LF, - ACTIONS(5529), 1, + ACTIONS(5011), 1, anon_sym_DOLLAR, - ACTIONS(8904), 1, + ACTIONS(8419), 1, aux_sym_unquoted_token4, - ACTIONS(11743), 1, + ACTIONS(11217), 1, anon_sym_LPAREN2, - ACTIONS(11805), 1, + ACTIONS(11259), 1, anon_sym_DOT, - ACTIONS(11807), 1, + ACTIONS(11261), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11809), 1, + ACTIONS(11263), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11811), 1, + ACTIONS(11265), 1, aux_sym__immediate_decimal_token4, - STATE(5098), 1, + STATE(4713), 1, sym__var, - STATE(6837), 1, + STATE(6414), 1, sym_comment, - STATE(7627), 1, + STATE(7125), 1, sym__immediate_decimal, - STATE(8492), 2, + STATE(7888), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(936), 6, + ACTIONS(920), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [217540] = 14, + [217433] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(938), 1, + ACTIONS(1840), 1, anon_sym_LF, - ACTIONS(5529), 1, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(3052), 1, anon_sym_DOLLAR, - ACTIONS(8904), 1, - aux_sym_unquoted_token4, - ACTIONS(11743), 1, + ACTIONS(11217), 1, anon_sym_LPAREN2, - ACTIONS(11805), 1, - anon_sym_DOT, - ACTIONS(11807), 1, + ACTIONS(11221), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11809), 1, + ACTIONS(11223), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11811), 1, + ACTIONS(11225), 1, aux_sym__immediate_decimal_token4, - STATE(5098), 1, + ACTIONS(11289), 1, + anon_sym_DOT, + STATE(4193), 1, sym__var, - STATE(6838), 1, + STATE(6415), 1, sym_comment, - STATE(7950), 1, + STATE(6819), 1, sym__immediate_decimal, - STATE(8492), 2, + STATE(7199), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(936), 6, + ACTIONS(1838), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [217589] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1063), 1, - anon_sym_DASH, - STATE(6839), 1, - sym_comment, - ACTIONS(1065), 17, - anon_sym_EQ, - anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [217618] = 14, + [217482] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1922), 1, + ACTIONS(1840), 1, anon_sym_LF, - ACTIONS(1934), 1, + ACTIONS(1844), 1, aux_sym_unquoted_token2, - ACTIONS(3317), 1, + ACTIONS(5011), 1, anon_sym_DOLLAR, - ACTIONS(11743), 1, + ACTIONS(11217), 1, anon_sym_LPAREN2, - ACTIONS(11747), 1, + ACTIONS(11259), 1, + anon_sym_DOT, + ACTIONS(11261), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11749), 1, + ACTIONS(11263), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11751), 1, + ACTIONS(11265), 1, aux_sym__immediate_decimal_token4, - ACTIONS(11815), 1, - anon_sym_DOT, - STATE(4674), 1, + STATE(4713), 1, sym__var, - STATE(6840), 1, + STATE(6416), 1, sym_comment, - STATE(7320), 1, + STATE(7122), 1, sym__immediate_decimal, - STATE(7815), 2, + STATE(7924), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1920), 6, + ACTIONS(1838), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [217667] = 14, + [217531] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1922), 1, + ACTIONS(2171), 1, anon_sym_LF, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(5529), 1, + ACTIONS(3052), 1, anon_sym_DOLLAR, - ACTIONS(11743), 1, + ACTIONS(11217), 1, anon_sym_LPAREN2, - ACTIONS(11805), 1, + ACTIONS(11225), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11291), 1, anon_sym_DOT, - ACTIONS(11807), 1, + ACTIONS(11293), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11809), 1, + ACTIONS(11295), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11811), 1, - aux_sym__immediate_decimal_token4, - STATE(5098), 1, + STATE(4193), 1, sym__var, - STATE(6841), 1, + STATE(6417), 1, sym_comment, - STATE(7890), 1, + STATE(7198), 1, sym__immediate_decimal, - STATE(8497), 2, + STATE(7105), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1920), 6, + ACTIONS(2169), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [217716] = 15, + [217577] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(938), 1, + ACTIONS(1884), 1, aux_sym_command_token1, - ACTIONS(1822), 1, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(5143), 1, anon_sym_DOLLAR, - ACTIONS(9001), 1, - aux_sym_unquoted_token3, - ACTIONS(9055), 1, - aux_sym_unquoted_token5, - ACTIONS(11785), 1, + ACTIONS(11249), 1, anon_sym_LPAREN2, - ACTIONS(11787), 1, + ACTIONS(11297), 1, anon_sym_DOT, - ACTIONS(11789), 1, + ACTIONS(11299), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11791), 1, + ACTIONS(11301), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11793), 1, + ACTIONS(11303), 1, aux_sym__immediate_decimal_token4, - STATE(4594), 1, + STATE(4669), 1, sym__var, - STATE(6842), 1, + STATE(6418), 1, sym_comment, - STATE(7338), 1, + STATE(7520), 1, sym__immediate_decimal, - STATE(7908), 2, + STATE(8171), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(936), 5, + ACTIONS(1882), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_LF2, - [217767] = 14, + [217625] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1874), 1, + ACTIONS(1598), 1, anon_sym_DOLLAR, - ACTIONS(1922), 1, + ACTIONS(1840), 1, aux_sym_command_token1, - ACTIONS(1934), 1, + ACTIONS(1844), 1, aux_sym_unquoted_token2, - ACTIONS(11775), 1, + ACTIONS(11249), 1, anon_sym_LPAREN2, - ACTIONS(11779), 1, + ACTIONS(11253), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11781), 1, + ACTIONS(11255), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11783), 1, + ACTIONS(11257), 1, aux_sym__immediate_decimal_token4, - ACTIONS(11817), 1, + ACTIONS(11305), 1, anon_sym_DOT, - STATE(4676), 1, + STATE(4205), 1, sym__var, - STATE(6843), 1, + STATE(6419), 1, sym_comment, - STATE(7384), 1, + STATE(7086), 1, sym__immediate_decimal, - STATE(7997), 2, + STATE(7447), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1920), 5, + ACTIONS(1838), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [217815] = 6, + anon_sym_LF2, + [217673] = 14, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1840), 1, + aux_sym_command_token1, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(5143), 1, + anon_sym_DOLLAR, + ACTIONS(11249), 1, + anon_sym_LPAREN2, + ACTIONS(11297), 1, + anon_sym_DOT, + ACTIONS(11299), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11301), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(11303), 1, + aux_sym__immediate_decimal_token4, + STATE(4669), 1, + sym__var, + STATE(6420), 1, + sym_comment, + STATE(7576), 1, + sym__immediate_decimal, + STATE(8266), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1838), 5, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_LF2, + [217721] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(920), 1, + sym_cmd_identifier, + ACTIONS(8820), 1, + aux_sym_unquoted_token3, + ACTIONS(11307), 1, + anon_sym_DOLLAR, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + ACTIONS(11311), 1, + anon_sym_DOT, + ACTIONS(11313), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11315), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(11317), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11319), 1, + aux_sym_unquoted_token5, + STATE(6421), 1, + sym_comment, + STATE(7002), 1, + sym__var, + STATE(7150), 1, + sym__immediate_decimal, + STATE(7689), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(922), 4, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [217771] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(11819), 1, + ACTIONS(11321), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11821), 1, + ACTIONS(11323), 1, aux_sym__immediate_decimal_token2, - STATE(6844), 1, + STATE(6422), 1, sym_comment, - ACTIONS(911), 6, + ACTIONS(895), 6, anon_sym_LF, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(909), 9, + ACTIONS(893), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -539226,1491 +498603,1476 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token5, - [217847] = 14, + [217803] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1874), 1, - anon_sym_DOLLAR, - ACTIONS(1922), 1, + ACTIONS(922), 1, aux_sym_command_token1, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(11775), 1, + ACTIONS(5205), 1, + anon_sym_DOLLAR, + ACTIONS(8391), 1, + aux_sym_unquoted_token4, + ACTIONS(11267), 1, anon_sym_LPAREN2, - ACTIONS(11779), 1, + ACTIONS(11325), 1, + anon_sym_DOT, + ACTIONS(11327), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11781), 1, + ACTIONS(11329), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11783), 1, + ACTIONS(11331), 1, aux_sym__immediate_decimal_token4, - ACTIONS(11823), 1, - anon_sym_DOT, - STATE(4676), 1, + STATE(4575), 1, sym__var, - STATE(6845), 1, + STATE(6423), 1, sym_comment, - STATE(7238), 1, + STATE(7528), 1, sym__immediate_decimal, - STATE(7997), 2, + STATE(8367), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1920), 5, + ACTIONS(920), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [217895] = 14, + [217851] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1922), 1, - aux_sym_command_token1, - ACTIONS(1934), 1, + ACTIONS(1844), 1, aux_sym_unquoted_token2, - ACTIONS(5745), 1, + ACTIONS(4969), 1, anon_sym_DOLLAR, - ACTIONS(11775), 1, + ACTIONS(11279), 1, anon_sym_LPAREN2, - ACTIONS(11825), 1, + ACTIONS(11333), 1, anon_sym_DOT, - ACTIONS(11827), 1, + ACTIONS(11335), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11829), 1, + ACTIONS(11337), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11831), 1, + ACTIONS(11339), 1, aux_sym__immediate_decimal_token4, - STATE(5184), 1, + STATE(4858), 1, sym__var, - STATE(6846), 1, + STATE(6424), 1, sym_comment, - STATE(7942), 1, + STATE(7493), 1, sym__immediate_decimal, - STATE(8648), 2, + ACTIONS(1840), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(8106), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1920), 5, + ACTIONS(1838), 4, anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [217943] = 14, + anon_sym_DASH_DASH, + anon_sym_DASH, + [217899] = 15, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5445), 1, + ACTIONS(251), 1, anon_sym_DOLLAR, - ACTIONS(9162), 1, - aux_sym_unquoted_token4, - ACTIONS(11795), 1, + ACTIONS(922), 1, + anon_sym_LF, + ACTIONS(8713), 1, + aux_sym_unquoted_token3, + ACTIONS(8715), 1, + aux_sym_unquoted_token5, + ACTIONS(11217), 1, anon_sym_LPAREN2, - ACTIONS(11833), 1, + ACTIONS(11341), 1, anon_sym_DOT, - ACTIONS(11835), 1, + ACTIONS(11343), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11837), 1, + ACTIONS(11345), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11839), 1, + ACTIONS(11347), 1, aux_sym__immediate_decimal_token4, - STATE(5293), 1, - sym__var, - STATE(6847), 1, + STATE(6425), 1, sym_comment, - STATE(7939), 1, + STATE(7098), 1, sym__immediate_decimal, - ACTIONS(938), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8641), 2, + STATE(7099), 1, + sym__var, + STATE(7656), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(936), 4, + ACTIONS(920), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [217991] = 13, + anon_sym_RBRACE, + [217949] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2389), 1, - anon_sym_LF, - ACTIONS(3317), 1, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(2667), 1, anon_sym_DOLLAR, - ACTIONS(11743), 1, + ACTIONS(11279), 1, anon_sym_LPAREN2, - ACTIONS(11751), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(11841), 1, - anon_sym_DOT, - ACTIONS(11843), 1, + ACTIONS(11283), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11845), 1, + ACTIONS(11285), 1, aux_sym__immediate_decimal_token3, - STATE(4674), 1, + ACTIONS(11287), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11349), 1, + anon_sym_DOT, + STATE(4310), 1, sym__var, - STATE(6848), 1, + STATE(6426), 1, sym_comment, - STATE(7814), 1, + STATE(7043), 1, sym__immediate_decimal, - STATE(7813), 2, + ACTIONS(1840), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(7543), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2387), 6, + ACTIONS(1838), 4, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_RBRACE, - [218037] = 15, + [217997] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(251), 1, + ACTIONS(1884), 1, + aux_sym_command_token1, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(5143), 1, anon_sym_DOLLAR, - ACTIONS(938), 1, - anon_sym_LF, - ACTIONS(9206), 1, - aux_sym_unquoted_token3, - ACTIONS(9323), 1, - aux_sym_unquoted_token5, - ACTIONS(11743), 1, + ACTIONS(11249), 1, anon_sym_LPAREN2, - ACTIONS(11847), 1, + ACTIONS(11297), 1, anon_sym_DOT, - ACTIONS(11849), 1, + ACTIONS(11299), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11851), 1, + ACTIONS(11301), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11853), 1, + ACTIONS(11303), 1, aux_sym__immediate_decimal_token4, - STATE(6849), 1, + STATE(4669), 1, + sym__var, + STATE(6427), 1, sym_comment, - STATE(7502), 1, + STATE(7627), 1, sym__immediate_decimal, - STATE(7523), 1, - sym__var, - STATE(8203), 2, + STATE(8171), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(936), 4, + ACTIONS(1882), 5, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [218087] = 14, + anon_sym_LF2, + [218045] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(938), 1, - aux_sym_command_token1, - ACTIONS(5745), 1, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(4969), 1, anon_sym_DOLLAR, - ACTIONS(9043), 1, - aux_sym_unquoted_token4, - ACTIONS(11775), 1, + ACTIONS(11279), 1, anon_sym_LPAREN2, - ACTIONS(11825), 1, + ACTIONS(11333), 1, anon_sym_DOT, - ACTIONS(11827), 1, + ACTIONS(11335), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11829), 1, + ACTIONS(11337), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11831), 1, + ACTIONS(11339), 1, aux_sym__immediate_decimal_token4, - STATE(5184), 1, + STATE(4858), 1, sym__var, - STATE(6850), 1, + STATE(6428), 1, sym_comment, - STATE(8232), 1, + STATE(7647), 1, sym__immediate_decimal, - STATE(8584), 2, + ACTIONS(1840), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(8106), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(936), 5, + ACTIONS(1838), 4, anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [218135] = 13, + anon_sym_DASH_DASH, + anon_sym_DASH, + [218093] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2389), 1, + ACTIONS(1840), 1, anon_sym_LF, - ACTIONS(5529), 1, + ACTIONS(3052), 1, anon_sym_DOLLAR, - ACTIONS(11743), 1, + ACTIONS(11217), 1, anon_sym_LPAREN2, - ACTIONS(11751), 1, + ACTIONS(11225), 1, aux_sym__immediate_decimal_token4, - ACTIONS(11855), 1, - anon_sym_DOT, - ACTIONS(11857), 1, + ACTIONS(11293), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11859), 1, + ACTIONS(11295), 1, aux_sym__immediate_decimal_token3, - STATE(5098), 1, + ACTIONS(11351), 1, + anon_sym_DOT, + STATE(4193), 1, sym__var, - STATE(6851), 1, + STATE(6429), 1, sym_comment, - STATE(8366), 1, + STATE(7195), 1, sym__immediate_decimal, - STATE(8360), 2, + STATE(7199), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2387), 6, + ACTIONS(1838), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [218181] = 14, + [218139] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2004), 1, - aux_sym_command_token1, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - ACTIONS(5745), 1, + ACTIONS(1840), 1, + anon_sym_LF, + ACTIONS(5011), 1, anon_sym_DOLLAR, - ACTIONS(11775), 1, + ACTIONS(11217), 1, anon_sym_LPAREN2, - ACTIONS(11825), 1, + ACTIONS(11225), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11353), 1, anon_sym_DOT, - ACTIONS(11827), 1, + ACTIONS(11355), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11829), 1, + ACTIONS(11357), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11831), 1, - aux_sym__immediate_decimal_token4, - STATE(5184), 1, + STATE(4713), 1, sym__var, - STATE(6852), 1, + STATE(6430), 1, sym_comment, - STATE(7912), 1, + STATE(7828), 1, sym__immediate_decimal, - STATE(8817), 2, + STATE(7924), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2002), 5, + ACTIONS(1838), 6, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_RBRACE, - [218229] = 13, + [218185] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2351), 1, + ACTIONS(1884), 1, anon_sym_LF, - ACTIONS(5529), 1, + ACTIONS(5011), 1, anon_sym_DOLLAR, - ACTIONS(11743), 1, + ACTIONS(11217), 1, anon_sym_LPAREN2, - ACTIONS(11751), 1, + ACTIONS(11225), 1, aux_sym__immediate_decimal_token4, - ACTIONS(11855), 1, + ACTIONS(11353), 1, anon_sym_DOT, - ACTIONS(11857), 1, + ACTIONS(11355), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11859), 1, + ACTIONS(11357), 1, aux_sym__immediate_decimal_token3, - STATE(5098), 1, + STATE(4713), 1, sym__var, - STATE(6853), 1, + STATE(6431), 1, sym_comment, - STATE(8258), 1, + STATE(8049), 1, sym__immediate_decimal, - STATE(8491), 2, + STATE(7956), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2349), 6, + ACTIONS(1882), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [218275] = 15, - ACTIONS(3), 1, + [218231] = 14, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(936), 1, - sym_cmd_identifier, - ACTIONS(9253), 1, - aux_sym_unquoted_token3, - ACTIONS(11861), 1, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(2667), 1, anon_sym_DOLLAR, - ACTIONS(11863), 1, + ACTIONS(11279), 1, anon_sym_LPAREN2, - ACTIONS(11865), 1, - anon_sym_DOT, - ACTIONS(11867), 1, + ACTIONS(11283), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11869), 1, + ACTIONS(11285), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11871), 1, + ACTIONS(11287), 1, aux_sym__immediate_decimal_token4, - ACTIONS(11873), 1, - aux_sym_unquoted_token5, - STATE(6854), 1, + ACTIONS(11359), 1, + anon_sym_DOT, + STATE(4310), 1, + sym__var, + STATE(6432), 1, sym_comment, - STATE(7368), 1, + STATE(6908), 1, sym__immediate_decimal, - STATE(7516), 1, - sym__var, - STATE(8169), 2, + ACTIONS(1840), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(7543), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(938), 4, + ACTIONS(1838), 4, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [218325] = 14, + anon_sym_DASH, + [218279] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5445), 1, + ACTIONS(1884), 1, + aux_sym_command_token1, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(5205), 1, anon_sym_DOLLAR, - ACTIONS(9162), 1, - aux_sym_unquoted_token4, - ACTIONS(11795), 1, + ACTIONS(11267), 1, anon_sym_LPAREN2, - ACTIONS(11833), 1, + ACTIONS(11325), 1, anon_sym_DOT, - ACTIONS(11835), 1, + ACTIONS(11327), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11837), 1, + ACTIONS(11329), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11839), 1, + ACTIONS(11331), 1, aux_sym__immediate_decimal_token4, - STATE(5293), 1, + STATE(4575), 1, sym__var, - STATE(6855), 1, + STATE(6433), 1, sym_comment, - STATE(8068), 1, + STATE(7553), 1, sym__immediate_decimal, - ACTIONS(938), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8641), 2, + STATE(8252), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(936), 4, + ACTIONS(1882), 5, anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [218373] = 13, + anon_sym_RBRACE, + [218327] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2361), 1, + ACTIONS(2209), 1, anon_sym_LF, - ACTIONS(5529), 1, + ACTIONS(5011), 1, anon_sym_DOLLAR, - ACTIONS(11743), 1, + ACTIONS(11217), 1, anon_sym_LPAREN2, - ACTIONS(11751), 1, + ACTIONS(11225), 1, aux_sym__immediate_decimal_token4, - ACTIONS(11855), 1, + ACTIONS(11353), 1, anon_sym_DOT, - ACTIONS(11857), 1, + ACTIONS(11355), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11859), 1, + ACTIONS(11357), 1, aux_sym__immediate_decimal_token3, - STATE(5098), 1, + STATE(4713), 1, sym__var, - STATE(6856), 1, + STATE(6434), 1, sym_comment, - STATE(8262), 1, + STATE(7951), 1, sym__immediate_decimal, - STATE(8261), 2, + STATE(7950), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2359), 6, + ACTIONS(2207), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [218419] = 15, + [218373] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(251), 1, - anon_sym_DOLLAR, - ACTIONS(938), 1, + ACTIONS(2138), 1, anon_sym_LF, - ACTIONS(3588), 1, - aux_sym_unquoted_token3, - ACTIONS(3590), 1, - aux_sym_unquoted_token5, - ACTIONS(11743), 1, + ACTIONS(5011), 1, + anon_sym_DOLLAR, + ACTIONS(11217), 1, anon_sym_LPAREN2, - ACTIONS(11849), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11851), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(11853), 1, + ACTIONS(11225), 1, aux_sym__immediate_decimal_token4, - ACTIONS(11875), 1, + ACTIONS(11353), 1, anon_sym_DOT, - STATE(6857), 1, - sym_comment, - STATE(7523), 1, + ACTIONS(11355), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11357), 1, + aux_sym__immediate_decimal_token3, + STATE(4713), 1, sym__var, - STATE(7648), 1, + STATE(6435), 1, + sym_comment, + STATE(7953), 1, sym__immediate_decimal, - STATE(8203), 2, + STATE(7952), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(936), 4, + ACTIONS(2136), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_RBRACE, - [218469] = 14, + [218419] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(2925), 1, + ACTIONS(2148), 1, + anon_sym_LF, + ACTIONS(5011), 1, anon_sym_DOLLAR, - ACTIONS(11795), 1, + ACTIONS(11217), 1, anon_sym_LPAREN2, - ACTIONS(11799), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11801), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(11803), 1, + ACTIONS(11225), 1, aux_sym__immediate_decimal_token4, - ACTIONS(11877), 1, + ACTIONS(11353), 1, anon_sym_DOT, - STATE(4804), 1, + ACTIONS(11355), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11357), 1, + aux_sym__immediate_decimal_token3, + STATE(4713), 1, sym__var, - STATE(6858), 1, + STATE(6436), 1, sym_comment, - STATE(7443), 1, + STATE(7955), 1, sym__immediate_decimal, - ACTIONS(1922), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(7958), 2, + STATE(7954), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1920), 4, + ACTIONS(2146), 6, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [218517] = 15, + anon_sym_RBRACE, + [218465] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2064), 1, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(4969), 1, anon_sym_DOLLAR, - ACTIONS(9194), 1, - aux_sym_unquoted_token3, - ACTIONS(9352), 1, - aux_sym_unquoted_token5, - ACTIONS(11879), 1, + ACTIONS(11279), 1, anon_sym_LPAREN2, - ACTIONS(11881), 1, + ACTIONS(11333), 1, anon_sym_DOT, - ACTIONS(11883), 1, + ACTIONS(11335), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11885), 1, + ACTIONS(11337), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11887), 1, + ACTIONS(11339), 1, aux_sym__immediate_decimal_token4, - STATE(4701), 1, + STATE(4858), 1, sym__var, - STATE(6859), 1, + STATE(6437), 1, sym_comment, - STATE(7514), 1, + STATE(7654), 1, sym__immediate_decimal, - ACTIONS(938), 2, + ACTIONS(1884), 2, ts_builtin_sym_end, - aux_sym_command_token1, - STATE(8220), 2, + anon_sym_LF, + STATE(8112), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(936), 3, + ACTIONS(1882), 4, anon_sym_SEMI, - anon_sym_LF, anon_sym_PIPE, - [218567] = 14, + anon_sym_DASH_DASH, + anon_sym_DASH, + [218513] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(938), 1, + ACTIONS(922), 1, aux_sym_command_token1, - ACTIONS(5687), 1, + ACTIONS(5143), 1, anon_sym_DOLLAR, - ACTIONS(9001), 1, + ACTIONS(8548), 1, aux_sym_unquoted_token4, - ACTIONS(11785), 1, + ACTIONS(11249), 1, anon_sym_LPAREN2, - ACTIONS(11889), 1, + ACTIONS(11297), 1, anon_sym_DOT, - ACTIONS(11891), 1, + ACTIONS(11299), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11893), 1, + ACTIONS(11301), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11895), 1, + ACTIONS(11303), 1, aux_sym__immediate_decimal_token4, - STATE(5027), 1, + STATE(4669), 1, sym__var, - STATE(6860), 1, + STATE(6438), 1, sym_comment, - STATE(7996), 1, + STATE(7810), 1, sym__immediate_decimal, - STATE(8644), 2, + STATE(8222), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(936), 5, + ACTIONS(920), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_LF2, - [218615] = 14, + [218561] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1822), 1, + ACTIONS(1598), 1, anon_sym_DOLLAR, - ACTIONS(1922), 1, + ACTIONS(1840), 1, aux_sym_command_token1, - ACTIONS(1934), 1, + ACTIONS(1844), 1, aux_sym_unquoted_token2, - ACTIONS(11785), 1, + ACTIONS(11249), 1, anon_sym_LPAREN2, - ACTIONS(11789), 1, + ACTIONS(11253), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11791), 1, + ACTIONS(11255), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11793), 1, + ACTIONS(11257), 1, aux_sym__immediate_decimal_token4, - ACTIONS(11897), 1, + ACTIONS(11361), 1, anon_sym_DOT, - STATE(4594), 1, + STATE(4205), 1, sym__var, - STATE(6861), 1, + STATE(6439), 1, sym_comment, - STATE(7378), 1, + STATE(6834), 1, sym__immediate_decimal, - STATE(7962), 2, + STATE(7447), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1920), 5, + ACTIONS(1838), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_LF2, - [218663] = 14, + [218609] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2004), 1, + ACTIONS(1840), 1, aux_sym_command_token1, - ACTIONS(2006), 1, + ACTIONS(1844), 1, aux_sym_unquoted_token2, - ACTIONS(5745), 1, + ACTIONS(5143), 1, anon_sym_DOLLAR, - ACTIONS(11775), 1, + ACTIONS(11249), 1, anon_sym_LPAREN2, - ACTIONS(11825), 1, + ACTIONS(11297), 1, anon_sym_DOT, - ACTIONS(11827), 1, + ACTIONS(11299), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11829), 1, + ACTIONS(11301), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11831), 1, + ACTIONS(11303), 1, aux_sym__immediate_decimal_token4, - STATE(5184), 1, + STATE(4669), 1, sym__var, - STATE(6862), 1, + STATE(6440), 1, sym_comment, - STATE(8251), 1, + STATE(7513), 1, sym__immediate_decimal, - STATE(8817), 2, + STATE(8266), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2002), 5, + ACTIONS(1838), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [218711] = 14, + anon_sym_LF2, + [218657] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(2925), 1, + ACTIONS(1650), 1, anon_sym_DOLLAR, - ACTIONS(11795), 1, + ACTIONS(1840), 1, + aux_sym_command_token1, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(11267), 1, anon_sym_LPAREN2, - ACTIONS(11799), 1, + ACTIONS(11271), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11801), 1, + ACTIONS(11273), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11803), 1, + ACTIONS(11275), 1, aux_sym__immediate_decimal_token4, - ACTIONS(11899), 1, + ACTIONS(11363), 1, anon_sym_DOT, - STATE(4804), 1, + STATE(4188), 1, sym__var, - STATE(6863), 1, + STATE(6441), 1, sym_comment, - STATE(7331), 1, + STATE(6881), 1, sym__immediate_decimal, - ACTIONS(1922), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(7958), 2, + STATE(7474), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1920), 4, + ACTIONS(1838), 5, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [218759] = 14, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(5445), 1, - anon_sym_DOLLAR, - ACTIONS(11795), 1, - anon_sym_LPAREN2, - ACTIONS(11833), 1, - anon_sym_DOT, - ACTIONS(11835), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11837), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(11839), 1, - aux_sym__immediate_decimal_token4, - STATE(5293), 1, - sym__var, - STATE(6864), 1, - sym_comment, - STATE(7985), 1, - sym__immediate_decimal, - ACTIONS(1922), 2, - ts_builtin_sym_end, anon_sym_LF, - STATE(8810), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1920), 4, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [218807] = 14, + anon_sym_RBRACE, + [218705] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2004), 1, + ACTIONS(1840), 1, aux_sym_command_token1, - ACTIONS(2006), 1, + ACTIONS(1844), 1, aux_sym_unquoted_token2, - ACTIONS(5687), 1, + ACTIONS(5205), 1, anon_sym_DOLLAR, - ACTIONS(11785), 1, + ACTIONS(11267), 1, anon_sym_LPAREN2, - ACTIONS(11889), 1, + ACTIONS(11325), 1, anon_sym_DOT, - ACTIONS(11891), 1, + ACTIONS(11327), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11893), 1, + ACTIONS(11329), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11895), 1, + ACTIONS(11331), 1, aux_sym__immediate_decimal_token4, - STATE(5027), 1, + STATE(4575), 1, sym__var, - STATE(6865), 1, + STATE(6442), 1, sym_comment, - STATE(7873), 1, + STATE(7545), 1, sym__immediate_decimal, - STATE(8755), 2, + STATE(8148), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2002), 5, + ACTIONS(1838), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_LF2, - [218855] = 14, + anon_sym_RBRACE, + [218753] = 15, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1922), 1, - aux_sym_command_token1, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(5687), 1, + ACTIONS(1788), 1, anon_sym_DOLLAR, - ACTIONS(11785), 1, + ACTIONS(8799), 1, + aux_sym_unquoted_token3, + ACTIONS(8828), 1, + aux_sym_unquoted_token5, + ACTIONS(11365), 1, anon_sym_LPAREN2, - ACTIONS(11889), 1, + ACTIONS(11367), 1, anon_sym_DOT, - ACTIONS(11891), 1, + ACTIONS(11369), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11893), 1, + ACTIONS(11371), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11895), 1, + ACTIONS(11373), 1, aux_sym__immediate_decimal_token4, - STATE(5027), 1, + STATE(4392), 1, sym__var, - STATE(6866), 1, + STATE(6443), 1, sym_comment, - STATE(8242), 1, + STATE(7088), 1, sym__immediate_decimal, - STATE(8557), 2, + ACTIONS(922), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + STATE(7798), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1920), 5, + ACTIONS(920), 3, anon_sym_SEMI, anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_LF2, - [218903] = 14, + [218803] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - ACTIONS(5445), 1, + ACTIONS(4969), 1, anon_sym_DOLLAR, - ACTIONS(11795), 1, + ACTIONS(8643), 1, + aux_sym_unquoted_token4, + ACTIONS(11279), 1, anon_sym_LPAREN2, - ACTIONS(11833), 1, + ACTIONS(11333), 1, anon_sym_DOT, - ACTIONS(11835), 1, + ACTIONS(11335), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11837), 1, + ACTIONS(11337), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11839), 1, + ACTIONS(11339), 1, aux_sym__immediate_decimal_token4, - STATE(5293), 1, + STATE(4858), 1, sym__var, - STATE(6867), 1, + STATE(6444), 1, sym_comment, - STATE(8085), 1, + STATE(7641), 1, sym__immediate_decimal, - ACTIONS(2004), 2, + ACTIONS(922), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(8594), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(2002), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [218951] = 13, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1922), 1, - anon_sym_LF, - ACTIONS(3317), 1, - anon_sym_DOLLAR, - ACTIONS(11743), 1, - anon_sym_LPAREN2, - ACTIONS(11751), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(11843), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11845), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(11901), 1, - anon_sym_DOT, - STATE(4674), 1, - sym__var, - STATE(6868), 1, - sym_comment, - STATE(7811), 1, - sym__immediate_decimal, - STATE(7815), 2, + STATE(8357), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1920), 6, + ACTIONS(920), 4, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_RBRACE, - [218997] = 13, + [218851] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1922), 1, - anon_sym_LF, - ACTIONS(5529), 1, + ACTIONS(1650), 1, anon_sym_DOLLAR, - ACTIONS(11743), 1, - anon_sym_LPAREN2, - ACTIONS(11751), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(11855), 1, - anon_sym_DOT, - ACTIONS(11857), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11859), 1, - aux_sym__immediate_decimal_token3, - STATE(5098), 1, - sym__var, - STATE(6869), 1, - sym_comment, - STATE(8447), 1, - sym__immediate_decimal, - STATE(8497), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1920), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [219043] = 14, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(2004), 1, + ACTIONS(1840), 1, aux_sym_command_token1, - ACTIONS(2006), 1, + ACTIONS(1844), 1, aux_sym_unquoted_token2, - ACTIONS(5687), 1, - anon_sym_DOLLAR, - ACTIONS(11785), 1, + ACTIONS(11267), 1, anon_sym_LPAREN2, - ACTIONS(11889), 1, - anon_sym_DOT, - ACTIONS(11891), 1, + ACTIONS(11271), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11893), 1, + ACTIONS(11273), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11895), 1, + ACTIONS(11275), 1, aux_sym__immediate_decimal_token4, - STATE(5027), 1, + ACTIONS(11375), 1, + anon_sym_DOT, + STATE(4188), 1, sym__var, - STATE(6870), 1, + STATE(6445), 1, sym_comment, - STATE(8145), 1, + STATE(6938), 1, sym__immediate_decimal, - STATE(8755), 2, + STATE(7474), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2002), 5, + ACTIONS(1838), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_LF2, - [219091] = 14, + anon_sym_RBRACE, + [218899] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(938), 1, + ACTIONS(1840), 1, aux_sym_command_token1, - ACTIONS(5687), 1, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(5205), 1, anon_sym_DOLLAR, - ACTIONS(9001), 1, - aux_sym_unquoted_token4, - ACTIONS(11785), 1, + ACTIONS(11267), 1, anon_sym_LPAREN2, - ACTIONS(11889), 1, + ACTIONS(11325), 1, anon_sym_DOT, - ACTIONS(11891), 1, + ACTIONS(11327), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11893), 1, + ACTIONS(11329), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11895), 1, + ACTIONS(11331), 1, aux_sym__immediate_decimal_token4, - STATE(5027), 1, + STATE(4575), 1, sym__var, - STATE(6871), 1, + STATE(6446), 1, sym_comment, - STATE(8077), 1, + STATE(7796), 1, sym__immediate_decimal, - STATE(8644), 2, + STATE(8148), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(936), 5, + ACTIONS(1838), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_LF2, - [219139] = 15, + anon_sym_RBRACE, + [218947] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2064), 1, + ACTIONS(922), 1, + aux_sym_command_token1, + ACTIONS(5205), 1, anon_sym_DOLLAR, - ACTIONS(9194), 1, - aux_sym_unquoted_token3, - ACTIONS(9352), 1, - aux_sym_unquoted_token5, - ACTIONS(11879), 1, + ACTIONS(8391), 1, + aux_sym_unquoted_token4, + ACTIONS(11267), 1, anon_sym_LPAREN2, - ACTIONS(11881), 1, + ACTIONS(11325), 1, anon_sym_DOT, - ACTIONS(11883), 1, + ACTIONS(11327), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11885), 1, + ACTIONS(11329), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11887), 1, + ACTIONS(11331), 1, aux_sym__immediate_decimal_token4, - STATE(4701), 1, + STATE(4575), 1, sym__var, - STATE(6872), 1, + STATE(6447), 1, sym_comment, - STATE(7840), 1, + STATE(7752), 1, sym__immediate_decimal, - ACTIONS(938), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - STATE(8220), 2, + STATE(8367), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(936), 3, + ACTIONS(920), 5, anon_sym_SEMI, anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, - [219189] = 13, + anon_sym_RBRACE, + [218995] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2004), 1, - anon_sym_LF, - ACTIONS(5529), 1, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(4969), 1, anon_sym_DOLLAR, - ACTIONS(11743), 1, + ACTIONS(11279), 1, anon_sym_LPAREN2, - ACTIONS(11751), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(11855), 1, + ACTIONS(11333), 1, anon_sym_DOT, - ACTIONS(11857), 1, + ACTIONS(11335), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11859), 1, + ACTIONS(11337), 1, aux_sym__immediate_decimal_token3, - STATE(5098), 1, + ACTIONS(11339), 1, + aux_sym__immediate_decimal_token4, + STATE(4858), 1, sym__var, - STATE(6873), 1, + STATE(6448), 1, sym_comment, - STATE(8505), 1, + STATE(7498), 1, sym__immediate_decimal, - STATE(8288), 2, + ACTIONS(1884), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(8112), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2002), 6, + ACTIONS(1882), 4, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_RBRACE, - [219235] = 14, + [219043] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(938), 1, + ACTIONS(922), 1, aux_sym_command_token1, - ACTIONS(5745), 1, + ACTIONS(5143), 1, anon_sym_DOLLAR, - ACTIONS(9043), 1, + ACTIONS(8548), 1, aux_sym_unquoted_token4, - ACTIONS(11775), 1, + ACTIONS(11249), 1, anon_sym_LPAREN2, - ACTIONS(11825), 1, + ACTIONS(11297), 1, anon_sym_DOT, - ACTIONS(11827), 1, + ACTIONS(11299), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11829), 1, + ACTIONS(11301), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11831), 1, + ACTIONS(11303), 1, aux_sym__immediate_decimal_token4, - STATE(5184), 1, + STATE(4669), 1, sym__var, - STATE(6874), 1, + STATE(6449), 1, sym_comment, - STATE(7921), 1, + STATE(7510), 1, sym__immediate_decimal, - STATE(8584), 2, + STATE(8222), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(936), 5, + ACTIONS(920), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [219283] = 14, + anon_sym_LF2, + [219091] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1922), 1, + ACTIONS(1884), 1, aux_sym_command_token1, - ACTIONS(1934), 1, + ACTIONS(1886), 1, aux_sym_unquoted_token2, - ACTIONS(5745), 1, + ACTIONS(5205), 1, anon_sym_DOLLAR, - ACTIONS(11775), 1, + ACTIONS(11267), 1, anon_sym_LPAREN2, - ACTIONS(11825), 1, + ACTIONS(11325), 1, anon_sym_DOT, - ACTIONS(11827), 1, + ACTIONS(11327), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11829), 1, + ACTIONS(11329), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11831), 1, + ACTIONS(11331), 1, aux_sym__immediate_decimal_token4, - STATE(5184), 1, + STATE(4575), 1, sym__var, - STATE(6875), 1, + STATE(6450), 1, sym_comment, - STATE(8137), 1, + STATE(7578), 1, sym__immediate_decimal, - STATE(8648), 2, + STATE(8252), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1920), 5, + ACTIONS(1882), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [219331] = 14, + [219139] = 15, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1822), 1, + ACTIONS(251), 1, anon_sym_DOLLAR, - ACTIONS(1922), 1, - aux_sym_command_token1, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(11785), 1, + ACTIONS(922), 1, + anon_sym_LF, + ACTIONS(3308), 1, + aux_sym_unquoted_token3, + ACTIONS(3310), 1, + aux_sym_unquoted_token5, + ACTIONS(11217), 1, anon_sym_LPAREN2, - ACTIONS(11789), 1, + ACTIONS(11343), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11791), 1, + ACTIONS(11345), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11793), 1, + ACTIONS(11347), 1, aux_sym__immediate_decimal_token4, - ACTIONS(11903), 1, + ACTIONS(11377), 1, anon_sym_DOT, - STATE(4594), 1, - sym__var, - STATE(6876), 1, + STATE(6451), 1, sym_comment, - STATE(7259), 1, + STATE(7099), 1, + sym__var, + STATE(7228), 1, sym__immediate_decimal, - STATE(7962), 2, + STATE(7656), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1920), 5, + ACTIONS(920), 4, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_LF2, - [219379] = 14, + anon_sym_RBRACE, + [219189] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1922), 1, - aux_sym_command_token1, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(5687), 1, + ACTIONS(4969), 1, anon_sym_DOLLAR, - ACTIONS(11785), 1, + ACTIONS(8643), 1, + aux_sym_unquoted_token4, + ACTIONS(11279), 1, anon_sym_LPAREN2, - ACTIONS(11889), 1, + ACTIONS(11333), 1, anon_sym_DOT, - ACTIONS(11891), 1, + ACTIONS(11335), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11893), 1, + ACTIONS(11337), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11895), 1, + ACTIONS(11339), 1, aux_sym__immediate_decimal_token4, - STATE(5027), 1, + STATE(4858), 1, sym__var, - STATE(6877), 1, + STATE(6452), 1, sym_comment, - STATE(7854), 1, + STATE(7484), 1, sym__immediate_decimal, - STATE(8557), 2, + ACTIONS(922), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(8357), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1920), 5, + ACTIONS(920), 4, anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_LF2, - [219427] = 14, + anon_sym_DASH_DASH, + anon_sym_DASH, + [219237] = 15, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - ACTIONS(5445), 1, + ACTIONS(1788), 1, anon_sym_DOLLAR, - ACTIONS(11795), 1, + ACTIONS(8799), 1, + aux_sym_unquoted_token3, + ACTIONS(8828), 1, + aux_sym_unquoted_token5, + ACTIONS(11365), 1, anon_sym_LPAREN2, - ACTIONS(11833), 1, + ACTIONS(11367), 1, anon_sym_DOT, - ACTIONS(11835), 1, + ACTIONS(11369), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11837), 1, + ACTIONS(11371), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11839), 1, + ACTIONS(11373), 1, aux_sym__immediate_decimal_token4, - STATE(5293), 1, + STATE(4392), 1, sym__var, - STATE(6878), 1, + STATE(6453), 1, sym_comment, - STATE(8003), 1, + STATE(7260), 1, sym__immediate_decimal, - ACTIONS(2004), 2, + ACTIONS(922), 2, ts_builtin_sym_end, - anon_sym_LF, - STATE(8594), 2, + aux_sym_command_token1, + STATE(7798), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2002), 4, + ACTIONS(920), 3, anon_sym_SEMI, + anon_sym_LF, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [219475] = 15, + [219287] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(936), 1, + ACTIONS(920), 1, sym_cmd_identifier, - ACTIONS(9253), 1, + ACTIONS(8820), 1, aux_sym_unquoted_token3, - ACTIONS(11861), 1, + ACTIONS(11307), 1, anon_sym_DOLLAR, - ACTIONS(11863), 1, + ACTIONS(11309), 1, anon_sym_LPAREN2, - ACTIONS(11865), 1, + ACTIONS(11311), 1, anon_sym_DOT, - ACTIONS(11867), 1, + ACTIONS(11313), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11869), 1, + ACTIONS(11315), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11871), 1, + ACTIONS(11317), 1, aux_sym__immediate_decimal_token4, - ACTIONS(11873), 1, + ACTIONS(11319), 1, aux_sym_unquoted_token5, - STATE(6879), 1, + STATE(6454), 1, sym_comment, - STATE(7516), 1, - sym__var, - STATE(7764), 1, + STATE(6971), 1, sym__immediate_decimal, - STATE(8169), 2, + STATE(7002), 1, + sym__var, + STATE(7689), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(938), 4, + ACTIONS(922), 4, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [219525] = 14, + [219337] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(5445), 1, + ACTIONS(2171), 1, + anon_sym_LF, + ACTIONS(5011), 1, anon_sym_DOLLAR, - ACTIONS(11795), 1, + ACTIONS(11217), 1, anon_sym_LPAREN2, - ACTIONS(11833), 1, + ACTIONS(11225), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11353), 1, anon_sym_DOT, - ACTIONS(11835), 1, + ACTIONS(11355), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11837), 1, + ACTIONS(11357), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11839), 1, - aux_sym__immediate_decimal_token4, - STATE(5293), 1, + STATE(4713), 1, sym__var, - STATE(6880), 1, + STATE(6455), 1, sym_comment, - STATE(8052), 1, + STATE(7921), 1, sym__immediate_decimal, - ACTIONS(1922), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8810), 2, + STATE(7920), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1920), 4, + ACTIONS(2169), 6, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [219573] = 13, + anon_sym_RBRACE, + [219383] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2385), 1, - anon_sym_LF, - ACTIONS(5529), 1, + ACTIONS(2667), 1, anon_sym_DOLLAR, - ACTIONS(11743), 1, + ACTIONS(11279), 1, anon_sym_LPAREN2, - ACTIONS(11751), 1, + ACTIONS(11287), 1, aux_sym__immediate_decimal_token4, - ACTIONS(11855), 1, + ACTIONS(11379), 1, anon_sym_DOT, - ACTIONS(11857), 1, + ACTIONS(11381), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11859), 1, + ACTIONS(11383), 1, aux_sym__immediate_decimal_token3, - STATE(5098), 1, + STATE(4310), 1, sym__var, - STATE(6881), 1, + STATE(6456), 1, sym_comment, - STATE(8267), 1, + STATE(7544), 1, sym__immediate_decimal, - STATE(8263), 2, + ACTIONS(1840), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(7543), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2383), 6, + ACTIONS(1838), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [219428] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(11323), 1, + aux_sym__immediate_decimal_token2, + STATE(6457), 1, + sym_comment, + ACTIONS(895), 6, + anon_sym_LF, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(893), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [219619] = 13, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token5, + [219457] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11385), 1, + anon_sym_DOT, + STATE(6458), 1, + sym_comment, + STATE(6467), 1, + aux_sym_cell_path_repeat1, + STATE(6576), 1, + sym_path, + ACTIONS(1010), 2, + anon_sym_DASH, + anon_sym_DOT_DOT2, + ACTIONS(1012), 11, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [219490] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2351), 1, + ACTIONS(2209), 1, aux_sym_command_token1, - ACTIONS(5745), 1, + ACTIONS(5205), 1, anon_sym_DOLLAR, - ACTIONS(11775), 1, + ACTIONS(11267), 1, anon_sym_LPAREN2, - ACTIONS(11783), 1, + ACTIONS(11275), 1, aux_sym__immediate_decimal_token4, - ACTIONS(11905), 1, + ACTIONS(11387), 1, anon_sym_DOT, - ACTIONS(11907), 1, + ACTIONS(11389), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11909), 1, + ACTIONS(11391), 1, aux_sym__immediate_decimal_token3, - STATE(5184), 1, + STATE(4575), 1, sym__var, - STATE(6882), 1, + STATE(6459), 1, sym_comment, - STATE(8788), 1, + STATE(8075), 1, sym__immediate_decimal, - STATE(8770), 2, + STATE(8240), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2349), 5, + ACTIONS(2207), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [219664] = 13, + [219535] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1822), 1, - anon_sym_DOLLAR, - ACTIONS(2389), 1, + ACTIONS(2138), 1, aux_sym_command_token1, - ACTIONS(11785), 1, + ACTIONS(5205), 1, + anon_sym_DOLLAR, + ACTIONS(11267), 1, anon_sym_LPAREN2, - ACTIONS(11793), 1, + ACTIONS(11275), 1, aux_sym__immediate_decimal_token4, - ACTIONS(11911), 1, + ACTIONS(11387), 1, anon_sym_DOT, - ACTIONS(11913), 1, + ACTIONS(11389), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11915), 1, + ACTIONS(11391), 1, aux_sym__immediate_decimal_token3, - STATE(4594), 1, + STATE(4575), 1, sym__var, - STATE(6883), 1, + STATE(6460), 1, sym_comment, - STATE(7930), 1, + STATE(8248), 1, sym__immediate_decimal, - STATE(7929), 2, + STATE(8247), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2387), 5, + ACTIONS(2136), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_LF2, - [219709] = 13, + anon_sym_RBRACE, + [219580] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2389), 1, + ACTIONS(2148), 1, aux_sym_command_token1, - ACTIONS(5687), 1, + ACTIONS(5205), 1, anon_sym_DOLLAR, - ACTIONS(11785), 1, + ACTIONS(11267), 1, anon_sym_LPAREN2, - ACTIONS(11793), 1, + ACTIONS(11275), 1, aux_sym__immediate_decimal_token4, - ACTIONS(11917), 1, + ACTIONS(11387), 1, anon_sym_DOT, - ACTIONS(11919), 1, + ACTIONS(11389), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11921), 1, + ACTIONS(11391), 1, aux_sym__immediate_decimal_token3, - STATE(5027), 1, + STATE(4575), 1, sym__var, - STATE(6884), 1, + STATE(6461), 1, sym_comment, - STATE(8615), 1, + STATE(8250), 1, sym__immediate_decimal, - STATE(8779), 2, + STATE(8249), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2387), 5, + ACTIONS(2146), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_LF2, - [219754] = 6, + anon_sym_RBRACE, + [219625] = 15, + ACTIONS(35), 1, + anon_sym_DOLLAR, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(11923), 1, + ACTIONS(3433), 1, + aux_sym_unquoted_token3, + ACTIONS(3435), 1, + aux_sym_unquoted_token5, + ACTIONS(11279), 1, + anon_sym_LPAREN2, + ACTIONS(11393), 1, + anon_sym_DOT, + ACTIONS(11395), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11397), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(11399), 1, + aux_sym__immediate_decimal_token4, + STATE(6462), 1, + sym_comment, + STATE(7390), 1, + sym__var, + STATE(7426), 1, + sym__immediate_decimal, + ACTIONS(920), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(922), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(7927), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [219674] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1882), 1, + sym_cmd_identifier, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + ACTIONS(11401), 1, + anon_sym_DOLLAR, + ACTIONS(11403), 1, + anon_sym_DOT, + ACTIONS(11405), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11925), 1, + ACTIONS(11407), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(11409), 1, + aux_sym__immediate_decimal_token4, + STATE(6463), 1, + sym_comment, + STATE(7707), 1, + sym__var, + STATE(7869), 1, + sym__immediate_decimal, + STATE(8522), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1884), 4, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [219721] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(11411), 1, aux_sym__immediate_decimal_token2, - STATE(6885), 1, + STATE(6464), 1, sym_comment, - ACTIONS(911), 6, + ACTIONS(903), 6, + anon_sym_LF, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - aux_sym_command_token1, - ACTIONS(909), 8, + ACTIONS(901), 9, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT, - anon_sym_LF2, aux_sym_unquoted_token5, - [219785] = 14, + [219750] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5613), 1, + ACTIONS(5069), 1, anon_sym_DOLLAR, - ACTIONS(9194), 1, + ACTIONS(8799), 1, aux_sym_unquoted_token4, - ACTIONS(11879), 1, + ACTIONS(11365), 1, anon_sym_LPAREN2, - ACTIONS(11927), 1, + ACTIONS(11413), 1, anon_sym_DOT, - ACTIONS(11929), 1, + ACTIONS(11415), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11931), 1, + ACTIONS(11417), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11933), 1, + ACTIONS(11419), 1, aux_sym__immediate_decimal_token4, - STATE(5240), 1, + STATE(5006), 1, sym__var, - STATE(6886), 1, + STATE(6465), 1, sym_comment, - STATE(8020), 1, + STATE(7806), 1, sym__immediate_decimal, - ACTIONS(938), 2, + ACTIONS(922), 2, ts_builtin_sym_end, aux_sym_command_token1, - STATE(9320), 2, + STATE(8927), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(936), 3, + ACTIONS(920), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_PIPE, - [219832] = 13, + [219797] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1874), 1, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(5069), 1, anon_sym_DOLLAR, - ACTIONS(2389), 1, - aux_sym_command_token1, - ACTIONS(11775), 1, + ACTIONS(11365), 1, anon_sym_LPAREN2, - ACTIONS(11783), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(11935), 1, + ACTIONS(11413), 1, anon_sym_DOT, - ACTIONS(11937), 1, + ACTIONS(11415), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11939), 1, + ACTIONS(11417), 1, aux_sym__immediate_decimal_token3, - STATE(4676), 1, - sym__var, - STATE(6887), 1, - sym_comment, - STATE(7940), 1, - sym__immediate_decimal, - STATE(7917), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(2387), 5, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [219877] = 13, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(2389), 1, - aux_sym_command_token1, - ACTIONS(5745), 1, - anon_sym_DOLLAR, - ACTIONS(11775), 1, - anon_sym_LPAREN2, - ACTIONS(11783), 1, + ACTIONS(11419), 1, aux_sym__immediate_decimal_token4, - ACTIONS(11905), 1, - anon_sym_DOT, - ACTIONS(11907), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11909), 1, - aux_sym__immediate_decimal_token3, - STATE(5184), 1, + STATE(5006), 1, sym__var, - STATE(6888), 1, + STATE(6466), 1, sym_comment, - STATE(8771), 1, + STATE(7598), 1, sym__immediate_decimal, - STATE(8737), 2, + ACTIONS(1884), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + STATE(8762), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2387), 5, + ACTIONS(1882), 3, anon_sym_SEMI, anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [219922] = 4, + [219844] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(6889), 1, + ACTIONS(11385), 1, + anon_sym_DOT, + STATE(6467), 1, sym_comment, - ACTIONS(1059), 3, + STATE(6468), 1, + aux_sym_cell_path_repeat1, + STATE(6576), 1, + sym_path, + ACTIONS(1006), 2, anon_sym_DASH, anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1061), 13, - anon_sym_EQ, + ACTIONS(1008), 11, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -540720,20 +500082,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - [219949] = 4, + [219877] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6890), 1, - sym_comment, - ACTIONS(1063), 3, + ACTIONS(11421), 1, + anon_sym_DOT, + STATE(6576), 1, + sym_path, + ACTIONS(985), 2, anon_sym_DASH, anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1065), 13, - anon_sym_EQ, + STATE(6468), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(987), 11, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -540743,920 +500107,1247 @@ static const uint16_t ts_small_parse_table[] = { 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, - [219976] = 14, + [219908] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - ACTIONS(5613), 1, + ACTIONS(922), 1, + anon_sym_LF, + ACTIONS(3308), 1, + aux_sym_unquoted_token4, + ACTIONS(4937), 1, anon_sym_DOLLAR, - ACTIONS(11879), 1, + ACTIONS(11217), 1, anon_sym_LPAREN2, - ACTIONS(11927), 1, + ACTIONS(11424), 1, anon_sym_DOT, - ACTIONS(11929), 1, + ACTIONS(11426), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11931), 1, + ACTIONS(11428), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11933), 1, + ACTIONS(11430), 1, aux_sym__immediate_decimal_token4, - STATE(5240), 1, - sym__var, - STATE(6891), 1, + STATE(6469), 1, sym_comment, - STATE(8209), 1, + STATE(7637), 1, + sym__var, + STATE(7993), 1, sym__immediate_decimal, - ACTIONS(2004), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - STATE(9348), 2, + STATE(7888), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2002), 3, + ACTIONS(920), 4, anon_sym_SEMI, - anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, - [220023] = 14, + anon_sym_RBRACE, + [219955] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1920), 1, + ACTIONS(1882), 1, sym_cmd_identifier, - ACTIONS(1934), 1, + ACTIONS(1886), 1, aux_sym_unquoted_token2, - ACTIONS(11861), 1, - anon_sym_DOLLAR, - ACTIONS(11863), 1, + ACTIONS(11309), 1, anon_sym_LPAREN2, - ACTIONS(11867), 1, + ACTIONS(11401), 1, + anon_sym_DOLLAR, + ACTIONS(11403), 1, + anon_sym_DOT, + ACTIONS(11405), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11869), 1, + ACTIONS(11407), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11871), 1, + ACTIONS(11409), 1, aux_sym__immediate_decimal_token4, - ACTIONS(11941), 1, - anon_sym_DOT, - STATE(6892), 1, + STATE(6470), 1, sym_comment, - STATE(7362), 1, + STATE(7623), 1, sym__immediate_decimal, - STATE(7516), 1, + STATE(7707), 1, sym__var, - STATE(8048), 2, + STATE(8522), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1922), 4, + ACTIONS(1884), 4, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [220070] = 13, + [220002] = 13, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(2667), 1, + anon_sym_DOLLAR, + ACTIONS(11279), 1, + anon_sym_LPAREN2, + ACTIONS(11287), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11381), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11383), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(11432), 1, + anon_sym_DOT, + STATE(4310), 1, + sym__var, + STATE(6471), 1, + sym_comment, + STATE(7542), 1, + sym__immediate_decimal, + ACTIONS(2171), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(7541), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(2169), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [220047] = 13, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(4969), 1, + anon_sym_DOLLAR, + ACTIONS(11279), 1, + anon_sym_LPAREN2, + ACTIONS(11287), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11434), 1, + anon_sym_DOT, + ACTIONS(11436), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11438), 1, + aux_sym__immediate_decimal_token3, + STATE(4858), 1, + sym__var, + STATE(6472), 1, + sym_comment, + STATE(8094), 1, + sym__immediate_decimal, + ACTIONS(2171), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(8093), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(2169), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [220092] = 13, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(4969), 1, + anon_sym_DOLLAR, + ACTIONS(11279), 1, + anon_sym_LPAREN2, + ACTIONS(11287), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11434), 1, + anon_sym_DOT, + ACTIONS(11436), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11438), 1, + aux_sym__immediate_decimal_token3, + STATE(4858), 1, + sym__var, + STATE(6473), 1, + sym_comment, + STATE(8111), 1, + sym__immediate_decimal, + ACTIONS(1840), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(8106), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1838), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [220137] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2351), 1, + ACTIONS(2209), 1, aux_sym_command_token1, - ACTIONS(5687), 1, + ACTIONS(5143), 1, anon_sym_DOLLAR, - ACTIONS(11785), 1, + ACTIONS(11249), 1, anon_sym_LPAREN2, - ACTIONS(11793), 1, + ACTIONS(11257), 1, aux_sym__immediate_decimal_token4, - ACTIONS(11917), 1, + ACTIONS(11440), 1, anon_sym_DOT, - ACTIONS(11919), 1, + ACTIONS(11442), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11921), 1, + ACTIONS(11444), 1, aux_sym__immediate_decimal_token3, - STATE(5027), 1, + STATE(4669), 1, sym__var, - STATE(6893), 1, + STATE(6474), 1, sym_comment, - STATE(8616), 1, + STATE(8319), 1, sym__immediate_decimal, - STATE(8672), 2, + STATE(8305), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2349), 5, + ACTIONS(2207), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_LF2, - [220115] = 13, + [220182] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1838), 1, + sym_cmd_identifier, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(11307), 1, + anon_sym_DOLLAR, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + ACTIONS(11313), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11315), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(11317), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11446), 1, + anon_sym_DOT, + STATE(6475), 1, + sym_comment, + STATE(7002), 1, + sym__var, + STATE(7077), 1, + sym__immediate_decimal, + STATE(7675), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1840), 4, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [220229] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1838), 1, + sym_cmd_identifier, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + ACTIONS(11401), 1, + anon_sym_DOLLAR, + ACTIONS(11403), 1, + anon_sym_DOT, + ACTIONS(11405), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11407), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(11409), 1, + aux_sym__immediate_decimal_token4, + STATE(6476), 1, + sym_comment, + STATE(7707), 1, + sym__var, + STATE(7740), 1, + sym__immediate_decimal, + STATE(8501), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1840), 4, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [220276] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2925), 1, + ACTIONS(4969), 1, anon_sym_DOLLAR, - ACTIONS(11795), 1, + ACTIONS(11279), 1, anon_sym_LPAREN2, - ACTIONS(11803), 1, + ACTIONS(11287), 1, aux_sym__immediate_decimal_token4, - ACTIONS(11943), 1, + ACTIONS(11434), 1, anon_sym_DOT, - ACTIONS(11945), 1, + ACTIONS(11436), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11947), 1, + ACTIONS(11438), 1, aux_sym__immediate_decimal_token3, - STATE(4804), 1, + STATE(4858), 1, sym__var, - STATE(6894), 1, + STATE(6477), 1, sym_comment, - STATE(7957), 1, + STATE(8081), 1, sym__immediate_decimal, - ACTIONS(2389), 2, + ACTIONS(2209), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(7956), 2, + STATE(8079), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2387), 4, + ACTIONS(2207), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [220160] = 13, + [220321] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5445), 1, + ACTIONS(4969), 1, anon_sym_DOLLAR, - ACTIONS(11795), 1, + ACTIONS(11279), 1, anon_sym_LPAREN2, - ACTIONS(11803), 1, + ACTIONS(11287), 1, aux_sym__immediate_decimal_token4, - ACTIONS(11949), 1, + ACTIONS(11434), 1, anon_sym_DOT, - ACTIONS(11951), 1, + ACTIONS(11436), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11953), 1, + ACTIONS(11438), 1, aux_sym__immediate_decimal_token3, - STATE(5293), 1, + STATE(4858), 1, sym__var, - STATE(6895), 1, + STATE(6478), 1, sym_comment, - STATE(8526), 1, + STATE(8089), 1, sym__immediate_decimal, - ACTIONS(2389), 2, + ACTIONS(2138), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(8518), 2, + STATE(8086), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2387), 4, + ACTIONS(2136), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [220205] = 13, + [220366] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2925), 1, + ACTIONS(4969), 1, anon_sym_DOLLAR, - ACTIONS(11795), 1, + ACTIONS(11279), 1, anon_sym_LPAREN2, - ACTIONS(11803), 1, + ACTIONS(11287), 1, aux_sym__immediate_decimal_token4, - ACTIONS(11945), 1, + ACTIONS(11434), 1, + anon_sym_DOT, + ACTIONS(11436), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11947), 1, + ACTIONS(11438), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11955), 1, - anon_sym_DOT, - STATE(4804), 1, + STATE(4858), 1, sym__var, - STATE(6896), 1, + STATE(6479), 1, sym_comment, - STATE(7959), 1, + STATE(8105), 1, sym__immediate_decimal, - ACTIONS(1922), 2, + ACTIONS(2148), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(7958), 2, + STATE(8092), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1920), 4, + ACTIONS(2146), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [220250] = 13, + [220411] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5445), 1, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(5069), 1, anon_sym_DOLLAR, - ACTIONS(11795), 1, + ACTIONS(11365), 1, anon_sym_LPAREN2, - ACTIONS(11803), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(11949), 1, + ACTIONS(11413), 1, anon_sym_DOT, - ACTIONS(11951), 1, + ACTIONS(11415), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11953), 1, + ACTIONS(11417), 1, aux_sym__immediate_decimal_token3, - STATE(5293), 1, + ACTIONS(11419), 1, + aux_sym__immediate_decimal_token4, + STATE(5006), 1, sym__var, - STATE(6897), 1, + STATE(6480), 1, sym_comment, - STATE(8512), 1, + STATE(7961), 1, sym__immediate_decimal, - ACTIONS(1922), 2, + ACTIONS(1884), 2, ts_builtin_sym_end, - anon_sym_LF, - STATE(8810), 2, + aux_sym_command_token1, + STATE(8762), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1920), 4, + ACTIONS(1882), 3, anon_sym_SEMI, + anon_sym_LF, anon_sym_PIPE, - anon_sym_DASH_DASH, + [220458] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6481), 1, + sym_comment, + ACTIONS(1033), 3, anon_sym_DASH, - [220295] = 13, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1035), 13, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + 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, + [220485] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2361), 1, + ACTIONS(2138), 1, aux_sym_command_token1, - ACTIONS(5687), 1, + ACTIONS(5143), 1, anon_sym_DOLLAR, - ACTIONS(11785), 1, + ACTIONS(11249), 1, anon_sym_LPAREN2, - ACTIONS(11793), 1, + ACTIONS(11257), 1, aux_sym__immediate_decimal_token4, - ACTIONS(11917), 1, + ACTIONS(11440), 1, anon_sym_DOT, - ACTIONS(11919), 1, + ACTIONS(11442), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11921), 1, + ACTIONS(11444), 1, aux_sym__immediate_decimal_token3, - STATE(5027), 1, + STATE(4669), 1, sym__var, - STATE(6898), 1, + STATE(6482), 1, sym_comment, - STATE(8716), 1, + STATE(8082), 1, sym__immediate_decimal, - STATE(8625), 2, + STATE(8376), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2359), 5, + ACTIONS(2136), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_LF2, - [220340] = 13, + [220530] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5445), 1, + ACTIONS(4969), 1, anon_sym_DOLLAR, - ACTIONS(11795), 1, + ACTIONS(11279), 1, anon_sym_LPAREN2, - ACTIONS(11803), 1, + ACTIONS(11287), 1, aux_sym__immediate_decimal_token4, - ACTIONS(11949), 1, + ACTIONS(11434), 1, anon_sym_DOT, - ACTIONS(11951), 1, + ACTIONS(11436), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11953), 1, + ACTIONS(11438), 1, aux_sym__immediate_decimal_token3, - STATE(5293), 1, + STATE(4858), 1, sym__var, - STATE(6899), 1, + STATE(6483), 1, sym_comment, - STATE(8562), 1, + STATE(8151), 1, sym__immediate_decimal, - ACTIONS(2351), 2, + ACTIONS(1884), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(8555), 2, + STATE(8112), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2349), 4, + ACTIONS(1882), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [220385] = 13, + [220575] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5445), 1, + ACTIONS(922), 1, + anon_sym_LF, + ACTIONS(4937), 1, anon_sym_DOLLAR, - ACTIONS(11795), 1, + ACTIONS(8713), 1, + aux_sym_unquoted_token4, + ACTIONS(11217), 1, anon_sym_LPAREN2, - ACTIONS(11803), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(11949), 1, + ACTIONS(11424), 1, anon_sym_DOT, - ACTIONS(11951), 1, + ACTIONS(11426), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11953), 1, + ACTIONS(11428), 1, aux_sym__immediate_decimal_token3, - STATE(5293), 1, - sym__var, - STATE(6900), 1, + ACTIONS(11430), 1, + aux_sym__immediate_decimal_token4, + STATE(6484), 1, sym_comment, - STATE(8570), 1, + STATE(7637), 1, + sym__var, + STATE(7657), 1, sym__immediate_decimal, - ACTIONS(2361), 2, - ts_builtin_sym_end, + STATE(7888), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(920), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [220622] = 14, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1884), 1, anon_sym_LF, - STATE(8565), 2, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(4937), 1, + anon_sym_DOLLAR, + ACTIONS(11217), 1, + anon_sym_LPAREN2, + ACTIONS(11424), 1, + anon_sym_DOT, + ACTIONS(11426), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11428), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(11430), 1, + aux_sym__immediate_decimal_token4, + STATE(6485), 1, + sym_comment, + STATE(7637), 1, + sym__var, + STATE(7781), 1, + sym__immediate_decimal, + STATE(7956), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2359), 4, + ACTIONS(1882), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, + anon_sym_RBRACE, + [220669] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6486), 1, + sym_comment, + ACTIONS(1020), 3, anon_sym_DASH, - [220430] = 13, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1022), 13, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + 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, + [220696] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5445), 1, + ACTIONS(2148), 1, + aux_sym_command_token1, + ACTIONS(5143), 1, anon_sym_DOLLAR, - ACTIONS(11795), 1, + ACTIONS(11249), 1, anon_sym_LPAREN2, - ACTIONS(11803), 1, + ACTIONS(11257), 1, aux_sym__immediate_decimal_token4, - ACTIONS(11949), 1, + ACTIONS(11440), 1, anon_sym_DOT, - ACTIONS(11951), 1, + ACTIONS(11442), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11953), 1, + ACTIONS(11444), 1, aux_sym__immediate_decimal_token3, - STATE(5293), 1, + STATE(4669), 1, sym__var, - STATE(6901), 1, + STATE(6487), 1, sym_comment, - STATE(8592), 1, + STATE(8164), 1, sym__immediate_decimal, - ACTIONS(2385), 2, - ts_builtin_sym_end, + STATE(8104), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(2146), 5, + anon_sym_SEMI, anon_sym_LF, - STATE(8571), 2, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_LF2, + [220741] = 14, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1884), 1, + anon_sym_LF, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(4937), 1, + anon_sym_DOLLAR, + ACTIONS(11217), 1, + anon_sym_LPAREN2, + ACTIONS(11424), 1, + anon_sym_DOT, + ACTIONS(11426), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11428), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(11430), 1, + aux_sym__immediate_decimal_token4, + STATE(6488), 1, + sym_comment, + STATE(7637), 1, + sym__var, + STATE(8028), 1, + sym__immediate_decimal, + STATE(7956), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2383), 4, + ACTIONS(1882), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [220788] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(11448), 1, + aux_sym__immediate_decimal_token2, + STATE(6489), 1, + sym_comment, + ACTIONS(913), 6, + anon_sym_LF, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(911), 9, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [220475] = 13, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token5, + [220817] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5445), 1, + ACTIONS(5069), 1, anon_sym_DOLLAR, - ACTIONS(11795), 1, + ACTIONS(8799), 1, + aux_sym_unquoted_token4, + ACTIONS(11365), 1, anon_sym_LPAREN2, - ACTIONS(11803), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(11949), 1, + ACTIONS(11413), 1, anon_sym_DOT, - ACTIONS(11951), 1, + ACTIONS(11415), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11953), 1, + ACTIONS(11417), 1, aux_sym__immediate_decimal_token3, - STATE(5293), 1, + ACTIONS(11419), 1, + aux_sym__immediate_decimal_token4, + STATE(5006), 1, sym__var, - STATE(6902), 1, + STATE(6490), 1, sym_comment, - STATE(8596), 1, + STATE(7910), 1, sym__immediate_decimal, - ACTIONS(2004), 2, + ACTIONS(922), 2, ts_builtin_sym_end, - anon_sym_LF, - STATE(8594), 2, + aux_sym_command_token1, + STATE(8927), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2002), 4, + ACTIONS(920), 3, anon_sym_SEMI, + anon_sym_LF, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [220520] = 13, + [220864] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2385), 1, + ACTIONS(11450), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11452), 1, + aux_sym__immediate_decimal_token2, + STATE(6491), 1, + sym_comment, + ACTIONS(895), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, aux_sym_command_token1, - ACTIONS(5687), 1, + ACTIONS(893), 8, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_LF2, + aux_sym_unquoted_token5, + [220895] = 13, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1598), 1, anon_sym_DOLLAR, - ACTIONS(11785), 1, + ACTIONS(2171), 1, + aux_sym_command_token1, + ACTIONS(11249), 1, anon_sym_LPAREN2, - ACTIONS(11793), 1, + ACTIONS(11257), 1, aux_sym__immediate_decimal_token4, - ACTIONS(11917), 1, + ACTIONS(11454), 1, anon_sym_DOT, - ACTIONS(11919), 1, + ACTIONS(11456), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11921), 1, + ACTIONS(11458), 1, aux_sym__immediate_decimal_token3, - STATE(5027), 1, + STATE(4205), 1, sym__var, - STATE(6903), 1, + STATE(6492), 1, sym_comment, - STATE(8733), 1, + STATE(7445), 1, sym__immediate_decimal, - STATE(8717), 2, + STATE(7444), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2383), 5, + ACTIONS(2169), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_LF2, - [220565] = 14, - ACTIONS(3), 1, + [220940] = 13, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1920), 1, - sym_cmd_identifier, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(11863), 1, - anon_sym_LPAREN2, - ACTIONS(11957), 1, + ACTIONS(2171), 1, + aux_sym_command_token1, + ACTIONS(5143), 1, anon_sym_DOLLAR, - ACTIONS(11959), 1, + ACTIONS(11249), 1, + anon_sym_LPAREN2, + ACTIONS(11257), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11440), 1, anon_sym_DOT, - ACTIONS(11961), 1, + ACTIONS(11442), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11963), 1, + ACTIONS(11444), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11965), 1, - aux_sym__immediate_decimal_token4, - STATE(6904), 1, - sym_comment, - STATE(8075), 1, + STATE(4669), 1, sym__var, - STATE(8107), 1, + STATE(6493), 1, + sym_comment, + STATE(8340), 1, sym__immediate_decimal, - STATE(9033), 2, + STATE(8338), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1922), 4, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [220612] = 13, + ACTIONS(2169), 5, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_LF2, + [220985] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2361), 1, - aux_sym_command_token1, - ACTIONS(5745), 1, + ACTIONS(1650), 1, anon_sym_DOLLAR, - ACTIONS(11775), 1, + ACTIONS(2171), 1, + aux_sym_command_token1, + ACTIONS(11267), 1, anon_sym_LPAREN2, - ACTIONS(11783), 1, + ACTIONS(11275), 1, aux_sym__immediate_decimal_token4, - ACTIONS(11905), 1, + ACTIONS(11460), 1, anon_sym_DOT, - ACTIONS(11907), 1, + ACTIONS(11462), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11909), 1, + ACTIONS(11464), 1, aux_sym__immediate_decimal_token3, - STATE(5184), 1, + STATE(4188), 1, sym__var, - STATE(6905), 1, + STATE(6494), 1, sym_comment, - STATE(8806), 1, + STATE(7472), 1, sym__immediate_decimal, - STATE(8798), 2, + STATE(7471), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2359), 5, + ACTIONS(2169), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [220657] = 13, + [221030] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2385), 1, + ACTIONS(2171), 1, aux_sym_command_token1, - ACTIONS(5745), 1, + ACTIONS(5205), 1, anon_sym_DOLLAR, - ACTIONS(11775), 1, + ACTIONS(11267), 1, anon_sym_LPAREN2, - ACTIONS(11783), 1, + ACTIONS(11275), 1, aux_sym__immediate_decimal_token4, - ACTIONS(11905), 1, + ACTIONS(11387), 1, anon_sym_DOT, - ACTIONS(11907), 1, + ACTIONS(11389), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11909), 1, + ACTIONS(11391), 1, aux_sym__immediate_decimal_token3, - STATE(5184), 1, + STATE(4575), 1, sym__var, - STATE(6906), 1, + STATE(6495), 1, sym_comment, - STATE(8816), 1, + STATE(8145), 1, sym__immediate_decimal, - STATE(8809), 2, + STATE(8138), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2383), 5, + ACTIONS(2169), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [220702] = 15, + [221075] = 15, ACTIONS(35), 1, anon_sym_DOLLAR, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9405), 1, + ACTIONS(8909), 1, aux_sym_unquoted_token3, - ACTIONS(9407), 1, + ACTIONS(8911), 1, aux_sym_unquoted_token5, - ACTIONS(11795), 1, + ACTIONS(11279), 1, anon_sym_LPAREN2, - ACTIONS(11967), 1, - anon_sym_DOT, - ACTIONS(11969), 1, + ACTIONS(11395), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11971), 1, + ACTIONS(11397), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11973), 1, + ACTIONS(11399), 1, aux_sym__immediate_decimal_token4, - STATE(6907), 1, + ACTIONS(11466), 1, + anon_sym_DOT, + STATE(6496), 1, sym_comment, - STATE(7793), 1, + STATE(7259), 1, sym__immediate_decimal, - STATE(7845), 1, + STATE(7390), 1, sym__var, - ACTIONS(936), 2, + ACTIONS(920), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(938), 2, + ACTIONS(922), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(8259), 2, + STATE(7927), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [220751] = 14, - ACTIONS(3), 1, + [221124] = 14, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(936), 1, - sym_cmd_identifier, - ACTIONS(9253), 1, - aux_sym_unquoted_token4, - ACTIONS(11863), 1, - anon_sym_LPAREN2, - ACTIONS(11957), 1, + ACTIONS(251), 1, anon_sym_DOLLAR, - ACTIONS(11959), 1, - anon_sym_DOT, - ACTIONS(11961), 1, + ACTIONS(1840), 1, + anon_sym_LF, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(11217), 1, + anon_sym_LPAREN2, + ACTIONS(11343), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11963), 1, + ACTIONS(11345), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11965), 1, + ACTIONS(11347), 1, aux_sym__immediate_decimal_token4, - STATE(6908), 1, + ACTIONS(11468), 1, + anon_sym_DOT, + STATE(6497), 1, sym_comment, - STATE(8075), 1, + STATE(7099), 1, sym__var, - STATE(8128), 1, + STATE(7253), 1, sym__immediate_decimal, - STATE(8940), 2, + STATE(7681), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(938), 4, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [220798] = 6, + ACTIONS(1838), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [221171] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(11975), 1, + ACTIONS(1840), 1, + anon_sym_LF, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(4937), 1, + anon_sym_DOLLAR, + ACTIONS(11217), 1, + anon_sym_LPAREN2, + ACTIONS(11424), 1, + anon_sym_DOT, + ACTIONS(11426), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11977), 1, - aux_sym__immediate_decimal_token2, - STATE(6909), 1, + ACTIONS(11428), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(11430), 1, + aux_sym__immediate_decimal_token4, + STATE(6498), 1, sym_comment, - ACTIONS(911), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_command_token1, - ACTIONS(909), 8, + STATE(7637), 1, + sym__var, + STATE(7736), 1, + sym__immediate_decimal, + STATE(7924), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1838), 4, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token5, - [220829] = 14, - ACTIONS(3), 1, + [221218] = 14, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2002), 1, - sym_cmd_identifier, - ACTIONS(2006), 1, + ACTIONS(1788), 1, + anon_sym_DOLLAR, + ACTIONS(1844), 1, aux_sym_unquoted_token2, - ACTIONS(11863), 1, + ACTIONS(11365), 1, anon_sym_LPAREN2, - ACTIONS(11957), 1, - anon_sym_DOLLAR, - ACTIONS(11959), 1, - anon_sym_DOT, - ACTIONS(11961), 1, + ACTIONS(11369), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11963), 1, + ACTIONS(11371), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11965), 1, + ACTIONS(11373), 1, aux_sym__immediate_decimal_token4, - STATE(6910), 1, - sym_comment, - STATE(8075), 1, + ACTIONS(11470), 1, + anon_sym_DOT, + STATE(4392), 1, sym__var, - STATE(8274), 1, + STATE(6499), 1, + sym_comment, + STATE(7291), 1, sym__immediate_decimal, - STATE(9312), 2, + ACTIONS(1840), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + STATE(7644), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2004), 4, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [220876] = 14, + ACTIONS(1838), 3, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, + [221265] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2002), 1, + ACTIONS(920), 1, sym_cmd_identifier, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - ACTIONS(11863), 1, + ACTIONS(8820), 1, + aux_sym_unquoted_token4, + ACTIONS(11309), 1, anon_sym_LPAREN2, - ACTIONS(11957), 1, + ACTIONS(11401), 1, anon_sym_DOLLAR, - ACTIONS(11959), 1, + ACTIONS(11403), 1, anon_sym_DOT, - ACTIONS(11961), 1, + ACTIONS(11405), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11963), 1, + ACTIONS(11407), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11965), 1, + ACTIONS(11409), 1, aux_sym__immediate_decimal_token4, - STATE(6911), 1, + STATE(6500), 1, sym_comment, - STATE(8075), 1, + STATE(7707), 1, sym__var, - STATE(8115), 1, + STATE(7811), 1, sym__immediate_decimal, - STATE(9312), 2, + STATE(8453), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2004), 4, + ACTIONS(922), 4, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [220923] = 15, - ACTIONS(35), 1, - anon_sym_DOLLAR, + [221312] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3682), 1, - aux_sym_unquoted_token3, - ACTIONS(3684), 1, - aux_sym_unquoted_token5, - ACTIONS(11795), 1, - anon_sym_LPAREN2, - ACTIONS(11969), 1, + ACTIONS(11472), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11971), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(11973), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(11979), 1, - anon_sym_DOT, - STATE(6912), 1, + ACTIONS(11474), 1, + aux_sym__immediate_decimal_token2, + STATE(6501), 1, sym_comment, - STATE(7845), 1, - sym__var, - STATE(8002), 1, - sym__immediate_decimal, - ACTIONS(936), 2, + ACTIONS(893), 7, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(938), 2, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token5, + ACTIONS(895), 7, ts_builtin_sym_end, anon_sym_LF, - STATE(8259), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [220972] = 14, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [221343] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(938), 1, - anon_sym_LF, - ACTIONS(5411), 1, + ACTIONS(251), 1, anon_sym_DOLLAR, - ACTIONS(9206), 1, - aux_sym_unquoted_token4, - ACTIONS(11743), 1, + ACTIONS(1840), 1, + anon_sym_LF, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(11217), 1, anon_sym_LPAREN2, - ACTIONS(11981), 1, - anon_sym_DOT, - ACTIONS(11983), 1, + ACTIONS(11343), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11985), 1, + ACTIONS(11345), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11987), 1, + ACTIONS(11347), 1, aux_sym__immediate_decimal_token4, - STATE(6913), 1, - sym_comment, - STATE(8127), 1, - sym__var, - STATE(8236), 1, + ACTIONS(11476), 1, + anon_sym_DOT, + STATE(6502), 1, + sym_comment, + STATE(6942), 1, sym__immediate_decimal, - STATE(8492), 2, + STATE(7099), 1, + sym__var, + STATE(7681), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(936), 4, + ACTIONS(1838), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [221019] = 14, + [221390] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2006), 1, + ACTIONS(1840), 1, + anon_sym_LF, + ACTIONS(1844), 1, aux_sym_unquoted_token2, - ACTIONS(5613), 1, + ACTIONS(4937), 1, anon_sym_DOLLAR, - ACTIONS(11879), 1, + ACTIONS(11217), 1, anon_sym_LPAREN2, - ACTIONS(11927), 1, + ACTIONS(11424), 1, anon_sym_DOT, - ACTIONS(11929), 1, + ACTIONS(11426), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11931), 1, + ACTIONS(11428), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11933), 1, + ACTIONS(11430), 1, aux_sym__immediate_decimal_token4, - STATE(5240), 1, - sym__var, - STATE(6914), 1, + STATE(6503), 1, sym_comment, - STATE(8284), 1, + STATE(7637), 1, + sym__var, + STATE(8014), 1, sym__immediate_decimal, - ACTIONS(2004), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - STATE(9348), 2, + STATE(7924), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2002), 3, + ACTIONS(1838), 4, anon_sym_SEMI, - anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [221437] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11385), 1, + anon_sym_DOT, + STATE(6458), 1, + sym_path, + STATE(6504), 1, + sym_comment, + STATE(6772), 1, + sym_cell_path, + ACTIONS(1002), 2, + anon_sym_DASH, + anon_sym_DOT_DOT2, + ACTIONS(1004), 11, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, - [221066] = 14, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [221470] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2004), 1, - anon_sym_LF, - ACTIONS(2006), 1, + ACTIONS(1844), 1, aux_sym_unquoted_token2, - ACTIONS(5411), 1, + ACTIONS(5069), 1, anon_sym_DOLLAR, - ACTIONS(11743), 1, + ACTIONS(11365), 1, anon_sym_LPAREN2, - ACTIONS(11981), 1, + ACTIONS(11413), 1, anon_sym_DOT, - ACTIONS(11983), 1, + ACTIONS(11415), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11985), 1, + ACTIONS(11417), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11987), 1, + ACTIONS(11419), 1, aux_sym__immediate_decimal_token4, - STATE(6915), 1, - sym_comment, - STATE(8127), 1, + STATE(5006), 1, sym__var, - STATE(8219), 1, + STATE(6505), 1, + sym_comment, + STATE(7928), 1, sym__immediate_decimal, - STATE(8288), 2, + ACTIONS(1840), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + STATE(8395), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2002), 4, + ACTIONS(1838), 3, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LF, anon_sym_PIPE, - anon_sym_RBRACE, - [221113] = 14, + [221517] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1920), 1, + ACTIONS(1838), 1, sym_cmd_identifier, - ACTIONS(1934), 1, + ACTIONS(1844), 1, aux_sym_unquoted_token2, - ACTIONS(11861), 1, + ACTIONS(11307), 1, anon_sym_DOLLAR, - ACTIONS(11863), 1, + ACTIONS(11309), 1, anon_sym_LPAREN2, - ACTIONS(11867), 1, + ACTIONS(11313), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11869), 1, + ACTIONS(11315), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11871), 1, + ACTIONS(11317), 1, aux_sym__immediate_decimal_token4, - ACTIONS(11989), 1, + ACTIONS(11478), 1, anon_sym_DOT, - STATE(6916), 1, + STATE(6506), 1, sym_comment, - STATE(7516), 1, + STATE(7002), 1, sym__var, - STATE(7831), 1, + STATE(7278), 1, sym__immediate_decimal, - STATE(8048), 2, + STATE(7675), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1922), 4, + ACTIONS(1840), 4, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [221160] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(11991), 1, - aux_sym__immediate_decimal_token2, - STATE(6917), 1, - sym_comment, - ACTIONS(925), 6, - anon_sym_LF, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(923), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token5, - [221189] = 14, + [221564] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1920), 1, + ACTIONS(1838), 1, sym_cmd_identifier, - ACTIONS(1934), 1, + ACTIONS(1844), 1, aux_sym_unquoted_token2, - ACTIONS(11863), 1, + ACTIONS(11309), 1, anon_sym_LPAREN2, - ACTIONS(11957), 1, + ACTIONS(11401), 1, anon_sym_DOLLAR, - ACTIONS(11959), 1, + ACTIONS(11403), 1, anon_sym_DOT, - ACTIONS(11961), 1, + ACTIONS(11405), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11963), 1, + ACTIONS(11407), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11965), 1, + ACTIONS(11409), 1, aux_sym__immediate_decimal_token4, - STATE(6918), 1, + STATE(6507), 1, sym_comment, - STATE(8075), 1, + STATE(7707), 1, sym__var, - STATE(8487), 1, + STATE(7850), 1, sym__immediate_decimal, - STATE(9033), 2, + STATE(8501), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1922), 4, + ACTIONS(1840), 4, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [221236] = 5, + [221611] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(11821), 1, + ACTIONS(11448), 1, aux_sym__immediate_decimal_token2, - STATE(6919), 1, + ACTIONS(11480), 1, + anon_sym_DOT, + STATE(6508), 1, sym_comment, - ACTIONS(911), 6, + ACTIONS(913), 6, anon_sym_LF, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(909), 9, + ACTIONS(911), 8, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -541664,891 +501355,814 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_DOT, aux_sym_unquoted_token5, - [221265] = 5, + [221642] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(11993), 1, + ACTIONS(11483), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11485), 1, aux_sym__immediate_decimal_token2, - STATE(6920), 1, + STATE(6509), 1, sym_comment, - ACTIONS(919), 6, - anon_sym_LF, + ACTIONS(895), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(917), 9, + aux_sym_command_token1, + ACTIONS(893), 8, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token5, - [221294] = 7, - ACTIONS(3), 1, + [221673] = 12, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(11995), 1, + ACTIONS(940), 1, + anon_sym_LF, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + ACTIONS(8411), 1, anon_sym_DOT, - STATE(6921), 1, - sym_comment, - STATE(6925), 1, - sym_path, - STATE(7134), 1, - sym_cell_path, - ACTIONS(1010), 2, - anon_sym_DASH, + ACTIONS(8419), 1, + aux_sym_unquoted_token5, + ACTIONS(11487), 1, anon_sym_DOT_DOT2, - ACTIONS(1012), 11, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(11491), 1, + sym_filesize_unit, + ACTIONS(11493), 1, + sym_duration_unit, + STATE(6510), 1, + sym_comment, + STATE(10208), 1, + sym__expr_parenthesized_immediate, + ACTIONS(11489), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(938), 6, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [221327] = 14, + anon_sym_DASH, + anon_sym_RBRACE, + [221716] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(938), 1, - anon_sym_LF, - ACTIONS(3588), 1, - aux_sym_unquoted_token4, - ACTIONS(5411), 1, + ACTIONS(1788), 1, anon_sym_DOLLAR, - ACTIONS(11743), 1, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(11365), 1, anon_sym_LPAREN2, - ACTIONS(11981), 1, - anon_sym_DOT, - ACTIONS(11983), 1, + ACTIONS(11369), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11985), 1, + ACTIONS(11371), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11987), 1, + ACTIONS(11373), 1, aux_sym__immediate_decimal_token4, - STATE(6922), 1, - sym_comment, - STATE(8127), 1, + ACTIONS(11495), 1, + anon_sym_DOT, + STATE(4392), 1, sym__var, - STATE(8509), 1, + STATE(6511), 1, + sym_comment, + STATE(7029), 1, sym__immediate_decimal, - STATE(8492), 2, + ACTIONS(1840), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + STATE(7644), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(936), 4, + ACTIONS(1838), 3, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LF, anon_sym_PIPE, - anon_sym_RBRACE, - [221374] = 14, + [221763] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2004), 1, - anon_sym_LF, - ACTIONS(2006), 1, + ACTIONS(1844), 1, aux_sym_unquoted_token2, - ACTIONS(5411), 1, + ACTIONS(5069), 1, anon_sym_DOLLAR, - ACTIONS(11743), 1, + ACTIONS(11365), 1, anon_sym_LPAREN2, - ACTIONS(11981), 1, + ACTIONS(11413), 1, anon_sym_DOT, - ACTIONS(11983), 1, + ACTIONS(11415), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11985), 1, + ACTIONS(11417), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11987), 1, + ACTIONS(11419), 1, aux_sym__immediate_decimal_token4, - STATE(6923), 1, - sym_comment, - STATE(8127), 1, + STATE(5006), 1, sym__var, - STATE(8471), 1, + STATE(6512), 1, + sym_comment, + STATE(7803), 1, sym__immediate_decimal, - STATE(8288), 2, + ACTIONS(1840), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + STATE(8395), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2002), 4, + ACTIONS(1838), 3, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [221421] = 12, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(961), 1, anon_sym_LF, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - ACTIONS(8898), 1, - anon_sym_DOT, - ACTIONS(8904), 1, - aux_sym_unquoted_token5, - ACTIONS(11997), 1, - anon_sym_DOT_DOT2, - ACTIONS(12001), 1, - sym_filesize_unit, - ACTIONS(12003), 1, - sym_duration_unit, - STATE(6924), 1, - sym_comment, - STATE(10675), 1, - sym__expr_parenthesized_immediate, - ACTIONS(11999), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(959), 6, - anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [221464] = 7, + [221810] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11995), 1, + ACTIONS(920), 1, + sym_cmd_identifier, + ACTIONS(8820), 1, + aux_sym_unquoted_token4, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + ACTIONS(11401), 1, + anon_sym_DOLLAR, + ACTIONS(11403), 1, anon_sym_DOT, - STATE(6925), 1, + ACTIONS(11405), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11407), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(11409), 1, + aux_sym__immediate_decimal_token4, + STATE(6513), 1, sym_comment, - STATE(6926), 1, - aux_sym_cell_path_repeat1, - STATE(7035), 1, - sym_path, - ACTIONS(987), 2, - anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(989), 11, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + STATE(7707), 1, + sym__var, + STATE(7823), 1, + sym__immediate_decimal, + STATE(8453), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(922), 4, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [221497] = 7, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [221857] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11995), 1, - anon_sym_DOT, - STATE(6926), 1, + STATE(6514), 1, sym_comment, - STATE(6927), 1, - aux_sym_cell_path_repeat1, - STATE(7035), 1, - sym_path, - ACTIONS(1006), 2, + ACTIONS(1033), 3, anon_sym_DASH, anon_sym_DOT_DOT2, - ACTIONS(1008), 11, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [221530] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12005), 1, anon_sym_DOT, - STATE(7035), 1, - sym_path, - ACTIONS(999), 2, - anon_sym_DASH, - anon_sym_DOT_DOT2, - STATE(6927), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1001), 11, + ACTIONS(1035), 12, sym_identifier, anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_GT, anon_sym_DASH_DASH, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [221561] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(936), 1, - sym_cmd_identifier, - ACTIONS(9253), 1, - aux_sym_unquoted_token4, - ACTIONS(11863), 1, - anon_sym_LPAREN2, - ACTIONS(11957), 1, - anon_sym_DOLLAR, - ACTIONS(11959), 1, - anon_sym_DOT, - ACTIONS(11961), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11963), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(11965), 1, - aux_sym__immediate_decimal_token4, - STATE(6928), 1, - sym_comment, - STATE(8075), 1, - sym__var, - STATE(8362), 1, - sym__immediate_decimal, - STATE(8940), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(938), 4, - anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [221608] = 14, + [221883] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5613), 1, + ACTIONS(5069), 1, anon_sym_DOLLAR, - ACTIONS(9194), 1, - aux_sym_unquoted_token4, - ACTIONS(11879), 1, + ACTIONS(11365), 1, anon_sym_LPAREN2, - ACTIONS(11927), 1, + ACTIONS(11373), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11497), 1, anon_sym_DOT, - ACTIONS(11929), 1, + ACTIONS(11499), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11931), 1, + ACTIONS(11501), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11933), 1, - aux_sym__immediate_decimal_token4, - STATE(5240), 1, + STATE(5006), 1, sym__var, - STATE(6929), 1, + STATE(6515), 1, sym_comment, - STATE(8501), 1, + STATE(8728), 1, sym__immediate_decimal, - ACTIONS(938), 2, + ACTIONS(2138), 2, ts_builtin_sym_end, aux_sym_command_token1, - STATE(9320), 2, + STATE(8727), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(936), 3, + ACTIONS(2136), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_PIPE, - [221655] = 6, + [221927] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6516), 1, + sym_comment, + ACTIONS(1020), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1022), 12, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [221953] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(11991), 1, + ACTIONS(11503), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11505), 1, aux_sym__immediate_decimal_token2, - ACTIONS(12008), 1, - anon_sym_DOT, - STATE(6930), 1, + STATE(6517), 1, sym_comment, - ACTIONS(925), 6, + ACTIONS(895), 6, anon_sym_LF, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(923), 8, + ACTIONS(893), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_RBRACE, anon_sym_DOT_DOT2, + anon_sym_DOT, aux_sym_unquoted_token5, - [221686] = 14, + [221983] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(2064), 1, + ACTIONS(251), 1, anon_sym_DOLLAR, - ACTIONS(11879), 1, + ACTIONS(1840), 1, + anon_sym_LF, + ACTIONS(11217), 1, anon_sym_LPAREN2, - ACTIONS(11883), 1, + ACTIONS(11225), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11293), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11885), 1, + ACTIONS(11295), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11887), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12011), 1, + ACTIONS(11351), 1, anon_sym_DOT, - STATE(4701), 1, - sym__var, - STATE(6931), 1, + STATE(6518), 1, sym_comment, - STATE(7398), 1, + STATE(7099), 1, + sym__var, + STATE(7688), 1, sym__immediate_decimal, - ACTIONS(1922), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - STATE(8039), 2, + STATE(7681), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1920), 3, + ACTIONS(1838), 4, anon_sym_SEMI, - anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, - [221733] = 14, + anon_sym_RBRACE, + [222027] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(2064), 1, + ACTIONS(251), 1, anon_sym_DOLLAR, - ACTIONS(11879), 1, + ACTIONS(2171), 1, + anon_sym_LF, + ACTIONS(11217), 1, anon_sym_LPAREN2, - ACTIONS(11883), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11885), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(11887), 1, + ACTIONS(11225), 1, aux_sym__immediate_decimal_token4, - ACTIONS(12013), 1, + ACTIONS(11291), 1, anon_sym_DOT, - STATE(4701), 1, - sym__var, - STATE(6932), 1, + ACTIONS(11293), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11295), 1, + aux_sym__immediate_decimal_token3, + STATE(6519), 1, sym_comment, - STATE(7787), 1, + STATE(7099), 1, + sym__var, + STATE(7680), 1, sym__immediate_decimal, - ACTIONS(1922), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - STATE(8039), 2, + STATE(7679), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1920), 3, + ACTIONS(2169), 4, anon_sym_SEMI, - anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [222071] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11507), 1, + anon_sym_DOT, + ACTIONS(11509), 1, + aux_sym__immediate_decimal_token2, + STATE(6520), 1, + sym_comment, + ACTIONS(2356), 3, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + ACTIONS(2358), 10, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, - [221780] = 14, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [222101] = 14, + ACTIONS(35), 1, + anon_sym_DOLLAR, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1934), 1, + ACTIONS(1844), 1, aux_sym_unquoted_token2, - ACTIONS(5613), 1, - anon_sym_DOLLAR, - ACTIONS(11879), 1, + ACTIONS(11279), 1, anon_sym_LPAREN2, - ACTIONS(11927), 1, - anon_sym_DOT, - ACTIONS(11929), 1, + ACTIONS(11395), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11931), 1, + ACTIONS(11397), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11933), 1, + ACTIONS(11399), 1, aux_sym__immediate_decimal_token4, - STATE(5240), 1, - sym__var, - STATE(6933), 1, + ACTIONS(11511), 1, + anon_sym_DOT, + STATE(6521), 1, sym_comment, - STATE(8396), 1, + STATE(7269), 1, sym__immediate_decimal, - ACTIONS(1922), 2, + STATE(7390), 1, + sym__var, + ACTIONS(1838), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(1840), 2, ts_builtin_sym_end, - aux_sym_command_token1, - STATE(9028), 2, + anon_sym_LF, + STATE(7899), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1920), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - [221827] = 14, - ACTIONS(113), 1, + [222147] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(251), 1, - anon_sym_DOLLAR, - ACTIONS(1922), 1, - anon_sym_LF, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(11743), 1, + ACTIONS(2207), 1, + sym_cmd_identifier, + ACTIONS(11309), 1, anon_sym_LPAREN2, - ACTIONS(11849), 1, + ACTIONS(11401), 1, + anon_sym_DOLLAR, + ACTIONS(11513), 1, + anon_sym_DOT, + ACTIONS(11515), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11851), 1, + ACTIONS(11517), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11853), 1, + ACTIONS(11519), 1, aux_sym__immediate_decimal_token4, - ACTIONS(12015), 1, - anon_sym_DOT, - STATE(6934), 1, + STATE(6522), 1, sym_comment, - STATE(7473), 1, + STATE(7707), 1, + sym__var, + STATE(8514), 1, sym__immediate_decimal, - STATE(7523), 1, + STATE(8513), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(2209), 4, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [222191] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2136), 1, + sym_cmd_identifier, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + ACTIONS(11401), 1, + anon_sym_DOLLAR, + ACTIONS(11513), 1, + anon_sym_DOT, + ACTIONS(11515), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11517), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(11519), 1, + aux_sym__immediate_decimal_token4, + STATE(6523), 1, + sym_comment, + STATE(7707), 1, sym__var, - STATE(8084), 2, + STATE(8517), 1, + sym__immediate_decimal, + STATE(8516), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1920), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [221874] = 14, + ACTIONS(2138), 4, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [222235] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1922), 1, + ACTIONS(2171), 1, anon_sym_LF, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(5411), 1, + ACTIONS(4937), 1, anon_sym_DOLLAR, - ACTIONS(11743), 1, + ACTIONS(11217), 1, anon_sym_LPAREN2, - ACTIONS(11981), 1, + ACTIONS(11225), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11353), 1, anon_sym_DOT, - ACTIONS(11983), 1, + ACTIONS(11355), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11985), 1, + ACTIONS(11357), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11987), 1, - aux_sym__immediate_decimal_token4, - STATE(6935), 1, + STATE(6524), 1, sym_comment, - STATE(8127), 1, + STATE(7637), 1, sym__var, - STATE(8139), 1, + STATE(7921), 1, sym__immediate_decimal, - STATE(8497), 2, + STATE(7920), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1920), 4, + ACTIONS(2169), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [221921] = 14, - ACTIONS(113), 1, + [222279] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(5613), 1, - anon_sym_DOLLAR, - ACTIONS(11879), 1, + ACTIONS(2146), 1, + sym_cmd_identifier, + ACTIONS(11309), 1, anon_sym_LPAREN2, - ACTIONS(11927), 1, + ACTIONS(11401), 1, + anon_sym_DOLLAR, + ACTIONS(11513), 1, anon_sym_DOT, - ACTIONS(11929), 1, + ACTIONS(11515), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11931), 1, + ACTIONS(11517), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11933), 1, + ACTIONS(11519), 1, aux_sym__immediate_decimal_token4, - STATE(5240), 1, - sym__var, - STATE(6936), 1, + STATE(6525), 1, sym_comment, - STATE(8206), 1, + STATE(7707), 1, + sym__var, + STATE(8521), 1, sym__immediate_decimal, - ACTIONS(1922), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - STATE(9028), 2, + STATE(8520), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1920), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - [221968] = 14, + ACTIONS(2148), 4, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [222323] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(251), 1, + ACTIONS(5069), 1, anon_sym_DOLLAR, - ACTIONS(1922), 1, - anon_sym_LF, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(11743), 1, + ACTIONS(11365), 1, anon_sym_LPAREN2, - ACTIONS(11849), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11851), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(11853), 1, + ACTIONS(11373), 1, aux_sym__immediate_decimal_token4, - ACTIONS(12017), 1, + ACTIONS(11497), 1, anon_sym_DOT, - STATE(6937), 1, - sym_comment, - STATE(7523), 1, + ACTIONS(11499), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11501), 1, + aux_sym__immediate_decimal_token3, + STATE(5006), 1, sym__var, - STATE(7835), 1, + STATE(6526), 1, + sym_comment, + STATE(8753), 1, sym__immediate_decimal, - STATE(8084), 2, + ACTIONS(2148), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + STATE(8729), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1920), 4, + ACTIONS(2146), 3, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LF, anon_sym_PIPE, - anon_sym_RBRACE, - [222015] = 14, + [222367] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1922), 1, - anon_sym_LF, - ACTIONS(1934), 1, + ACTIONS(1844), 1, aux_sym_unquoted_token2, - ACTIONS(5411), 1, + ACTIONS(4911), 1, anon_sym_DOLLAR, - ACTIONS(11743), 1, + ACTIONS(11279), 1, anon_sym_LPAREN2, - ACTIONS(11981), 1, + ACTIONS(11521), 1, anon_sym_DOT, - ACTIONS(11983), 1, + ACTIONS(11523), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11985), 1, + ACTIONS(11525), 1, aux_sym__immediate_decimal_token3, - ACTIONS(11987), 1, + ACTIONS(11527), 1, aux_sym__immediate_decimal_token4, - STATE(6938), 1, + STATE(6527), 1, sym_comment, - STATE(8127), 1, + STATE(7851), 1, sym__var, - STATE(8494), 1, + STATE(7867), 1, sym__immediate_decimal, - STATE(8497), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1920), 4, + ACTIONS(1838), 2, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [222062] = 6, + ACTIONS(1840), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(8106), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [222413] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12019), 1, + ACTIONS(11529), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12021), 1, + ACTIONS(11531), 1, aux_sym__immediate_decimal_token2, - STATE(6939), 1, + STATE(6528), 1, sym_comment, - ACTIONS(909), 7, + ACTIONS(893), 6, anon_sym_SEMI, + anon_sym_LF, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token5, - ACTIONS(911), 7, + ACTIONS(895), 7, ts_builtin_sym_end, - anon_sym_LF, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [222093] = 6, + aux_sym_command_token1, + [222443] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12023), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12025), 1, + ACTIONS(11485), 1, aux_sym__immediate_decimal_token2, - STATE(6940), 1, + STATE(6529), 1, sym_comment, - ACTIONS(2439), 4, - anon_sym_LF, + ACTIONS(895), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2437), 9, + sym_filesize_unit, + sym_duration_unit, + aux_sym_command_token1, + ACTIONS(893), 8, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT, - aux_sym_unquoted_token2, - [222123] = 5, + aux_sym_unquoted_token5, + [222471] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12027), 1, + ACTIONS(11533), 1, aux_sym__immediate_decimal_token2, - STATE(6941), 1, + STATE(6530), 1, sym_comment, - ACTIONS(925), 6, + ACTIONS(913), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, aux_sym_command_token1, - ACTIONS(923), 8, + ACTIONS(911), 8, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT, + anon_sym_LF2, aux_sym_unquoted_token5, - [222151] = 5, + [222499] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12029), 1, - aux_sym__immediate_decimal_token2, - STATE(6942), 1, + STATE(6531), 1, sym_comment, - ACTIONS(919), 6, + ACTIONS(895), 6, + anon_sym_LF, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - aux_sym_command_token1, - ACTIONS(917), 8, + ACTIONS(893), 9, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_LF2, - aux_sym_unquoted_token5, - [222179] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6943), 1, - sym_comment, - ACTIONS(1063), 3, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(1065), 12, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [222205] = 14, + aux_sym_unquoted_token5, + [222525] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(936), 1, + ACTIONS(920), 1, anon_sym_DASH, - ACTIONS(9253), 1, + ACTIONS(8820), 1, aux_sym_unquoted_token3, - ACTIONS(11873), 1, + ACTIONS(11319), 1, aux_sym_unquoted_token5, - ACTIONS(12031), 1, + ACTIONS(11535), 1, anon_sym_DOLLAR, - ACTIONS(12033), 1, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(12035), 1, + ACTIONS(11539), 1, anon_sym_DOT, - ACTIONS(12039), 1, + ACTIONS(11543), 1, aux_sym__immediate_decimal_token4, - STATE(6944), 1, + STATE(6532), 1, sym_comment, - STATE(7633), 1, + STATE(7203), 1, sym__var, - STATE(7760), 1, + STATE(7529), 1, sym__immediate_decimal, - ACTIONS(938), 2, + ACTIONS(922), 2, anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(12037), 2, + ACTIONS(11541), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(8331), 2, + STATE(7880), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [222251] = 6, + [222571] = 12, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12027), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(12041), 1, - anon_sym_DOT, - STATE(6945), 1, - sym_comment, - ACTIONS(925), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, + ACTIONS(940), 1, aux_sym_command_token1, - ACTIONS(923), 7, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token5, - [222281] = 13, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(2004), 1, - anon_sym_LF, - ACTIONS(5411), 1, - anon_sym_DOLLAR, - ACTIONS(11743), 1, - anon_sym_LPAREN2, - ACTIONS(11751), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(11855), 1, - anon_sym_DOT, - ACTIONS(11857), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11859), 1, - aux_sym__immediate_decimal_token3, - STATE(6946), 1, - sym_comment, - STATE(8127), 1, - sym__var, - STATE(8505), 1, - sym__immediate_decimal, - STATE(8288), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(2002), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [222325] = 12, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(2397), 1, + ACTIONS(2187), 1, anon_sym_LPAREN2, - ACTIONS(9154), 1, + ACTIONS(8385), 1, anon_sym_DOT, - ACTIONS(9162), 1, + ACTIONS(8391), 1, aux_sym_unquoted_token5, - ACTIONS(12044), 1, + ACTIONS(11545), 1, anon_sym_DOT_DOT2, - ACTIONS(12048), 1, + ACTIONS(11549), 1, sym_filesize_unit, - ACTIONS(12050), 1, + ACTIONS(11551), 1, sym_duration_unit, - STATE(6947), 1, + STATE(6533), 1, sym_comment, - STATE(10661), 1, + STATE(10152), 1, sym__expr_parenthesized_immediate, - ACTIONS(961), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(12046), 2, + ACTIONS(11547), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(959), 4, + ACTIONS(938), 5, anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [222367] = 5, + anon_sym_RBRACE, + [222613] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(11977), 1, - aux_sym__immediate_decimal_token2, - STATE(6948), 1, + STATE(6534), 1, sym_comment, - ACTIONS(911), 6, + ACTIONS(903), 6, + anon_sym_LF, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - aux_sym_command_token1, - ACTIONS(909), 8, + ACTIONS(901), 9, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token5, - [222395] = 13, + [222639] = 14, + ACTIONS(35), 1, + anon_sym_DOLLAR, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5613), 1, - anon_sym_DOLLAR, - ACTIONS(11879), 1, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(11279), 1, anon_sym_LPAREN2, - ACTIONS(11887), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12052), 1, - anon_sym_DOT, - ACTIONS(12054), 1, + ACTIONS(11395), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12056), 1, + ACTIONS(11397), 1, aux_sym__immediate_decimal_token3, - STATE(5240), 1, - sym__var, - STATE(6949), 1, + ACTIONS(11399), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11553), 1, + anon_sym_DOT, + STATE(6535), 1, sym_comment, - STATE(9190), 1, + STATE(7390), 1, + sym__var, + STATE(7433), 1, sym__immediate_decimal, - ACTIONS(2351), 2, + ACTIONS(1838), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(1840), 2, ts_builtin_sym_end, - aux_sym_command_token1, - STATE(9087), 2, + anon_sym_LF, + STATE(7899), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2349), 3, - anon_sym_SEMI, - anon_sym_LF, + [222685] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11555), 1, + anon_sym_QMARK2, + STATE(6536), 1, + sym_comment, + ACTIONS(1024), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1026), 11, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, - [222439] = 5, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [222713] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12058), 1, + ACTIONS(11557), 1, + anon_sym_DOT, + ACTIONS(11560), 1, aux_sym__immediate_decimal_token2, - STATE(6950), 1, + STATE(6537), 1, sym_comment, - ACTIONS(923), 7, + ACTIONS(911), 6, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_DOT_DOT2, - anon_sym_DOT, aux_sym_unquoted_token5, - ACTIONS(925), 7, + ACTIONS(913), 7, ts_builtin_sym_end, anon_sym_LF, anon_sym_LPAREN2, @@ -542556,537 +502170,601 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [222467] = 13, + [222743] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5613), 1, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(4911), 1, anon_sym_DOLLAR, - ACTIONS(11879), 1, + ACTIONS(11279), 1, anon_sym_LPAREN2, - ACTIONS(11887), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12052), 1, + ACTIONS(11521), 1, anon_sym_DOT, - ACTIONS(12054), 1, + ACTIONS(11523), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12056), 1, + ACTIONS(11525), 1, aux_sym__immediate_decimal_token3, - STATE(5240), 1, - sym__var, - STATE(6951), 1, + ACTIONS(11527), 1, + aux_sym__immediate_decimal_token4, + STATE(6538), 1, sym_comment, - STATE(9210), 1, + STATE(7851), 1, + sym__var, + STATE(8096), 1, sym__immediate_decimal, - ACTIONS(2361), 2, + ACTIONS(1838), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(1840), 2, ts_builtin_sym_end, - aux_sym_command_token1, - STATE(9195), 2, + anon_sym_LF, + STATE(8106), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2359), 3, - anon_sym_SEMI, - anon_sym_LF, + [222789] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11555), 1, + anon_sym_QMARK2, + STATE(6539), 1, + sym_comment, + ACTIONS(1024), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1026), 11, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, - [222511] = 13, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [222817] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1922), 1, + ACTIONS(1840), 1, anon_sym_LF, - ACTIONS(5411), 1, + ACTIONS(4937), 1, anon_sym_DOLLAR, - ACTIONS(11743), 1, + ACTIONS(11217), 1, anon_sym_LPAREN2, - ACTIONS(11751), 1, + ACTIONS(11225), 1, aux_sym__immediate_decimal_token4, - ACTIONS(11855), 1, + ACTIONS(11353), 1, anon_sym_DOT, - ACTIONS(11857), 1, + ACTIONS(11355), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11859), 1, + ACTIONS(11357), 1, aux_sym__immediate_decimal_token3, - STATE(6952), 1, + STATE(6540), 1, sym_comment, - STATE(8127), 1, + STATE(7637), 1, sym__var, - STATE(8447), 1, + STATE(7828), 1, sym__immediate_decimal, - STATE(8497), 2, + STATE(7924), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1920), 4, + ACTIONS(1838), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [222555] = 13, - ACTIONS(113), 1, + [222861] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5613), 1, - anon_sym_DOLLAR, - ACTIONS(11879), 1, - anon_sym_LPAREN2, - ACTIONS(11887), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12052), 1, - anon_sym_DOT, - ACTIONS(12054), 1, + ACTIONS(11562), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12056), 1, - aux_sym__immediate_decimal_token3, - STATE(5240), 1, - sym__var, - STATE(6953), 1, - sym_comment, - STATE(9319), 1, - sym__immediate_decimal, - ACTIONS(2385), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - STATE(9216), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(2383), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - [222599] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(12021), 1, + ACTIONS(11564), 1, aux_sym__immediate_decimal_token2, - STATE(6954), 1, + STATE(6541), 1, sym_comment, - ACTIONS(909), 7, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, + ACTIONS(893), 6, + sym_cmd_identifier, anon_sym_DOT_DOT2, anon_sym_DOT, + sym_filesize_unit, + sym_duration_unit, aux_sym_unquoted_token5, - ACTIONS(911), 7, - ts_builtin_sym_end, - anon_sym_LF, + ACTIONS(895), 7, + anon_sym_DASH_DASH, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [222627] = 5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [222891] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12060), 1, + ACTIONS(11566), 1, aux_sym__immediate_decimal_token2, - STATE(6955), 1, + STATE(6542), 1, sym_comment, - ACTIONS(917), 7, + ACTIONS(903), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_command_token1, + ACTIONS(901), 8, anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, + anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token5, - ACTIONS(919), 7, - ts_builtin_sym_end, + [222919] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(11568), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11570), 1, + aux_sym__immediate_decimal_token2, + STATE(6543), 1, + sym_comment, + ACTIONS(2231), 4, anon_sym_LF, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [222655] = 5, + ACTIONS(2229), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token2, + [222949] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12062), 1, + ACTIONS(11452), 1, aux_sym__immediate_decimal_token2, - STATE(6956), 1, + STATE(6544), 1, sym_comment, - ACTIONS(919), 6, + ACTIONS(895), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, aux_sym_command_token1, - ACTIONS(917), 8, + ACTIONS(893), 8, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT, + anon_sym_LF2, aux_sym_unquoted_token5, - [222683] = 13, - ACTIONS(113), 1, + [222977] = 14, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2064), 1, + ACTIONS(920), 1, + anon_sym_DASH, + ACTIONS(8820), 1, + aux_sym_unquoted_token3, + ACTIONS(11319), 1, + aux_sym_unquoted_token5, + ACTIONS(11535), 1, anon_sym_DOLLAR, - ACTIONS(11879), 1, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(11887), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12064), 1, + ACTIONS(11539), 1, anon_sym_DOT, - ACTIONS(12066), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12068), 1, - aux_sym__immediate_decimal_token3, - STATE(4701), 1, - sym__var, - STATE(6957), 1, + ACTIONS(11543), 1, + aux_sym__immediate_decimal_token4, + STATE(6545), 1, sym_comment, - STATE(8031), 1, + STATE(7143), 1, sym__immediate_decimal, - ACTIONS(2389), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - STATE(8229), 2, + STATE(7203), 1, + sym__var, + ACTIONS(922), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(11541), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7880), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2387), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - [222727] = 13, + [223023] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2351), 1, - anon_sym_LF, - ACTIONS(5411), 1, + ACTIONS(3433), 1, + aux_sym_unquoted_token4, + ACTIONS(4911), 1, anon_sym_DOLLAR, - ACTIONS(11743), 1, + ACTIONS(11279), 1, anon_sym_LPAREN2, - ACTIONS(11751), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(11855), 1, + ACTIONS(11521), 1, anon_sym_DOT, - ACTIONS(11857), 1, + ACTIONS(11523), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11859), 1, + ACTIONS(11525), 1, aux_sym__immediate_decimal_token3, - STATE(6958), 1, + ACTIONS(11527), 1, + aux_sym__immediate_decimal_token4, + STATE(6546), 1, sym_comment, - STATE(8127), 1, + STATE(7851), 1, sym__var, - STATE(8258), 1, + STATE(8335), 1, sym__immediate_decimal, - STATE(8491), 2, + ACTIONS(920), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(922), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(8357), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2349), 4, + [223069] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(6547), 1, + sym_comment, + ACTIONS(936), 6, + anon_sym_LF, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(934), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_RBRACE, - [222771] = 13, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token5, + [223095] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2387), 1, - sym_cmd_identifier, - ACTIONS(11861), 1, + ACTIONS(5735), 1, anon_sym_DOLLAR, - ACTIONS(11863), 1, + ACTIONS(9209), 1, + aux_sym_unquoted_token3, + ACTIONS(9249), 1, + aux_sym_unquoted_token5, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(12070), 1, + ACTIONS(11572), 1, anon_sym_DOT, - ACTIONS(12072), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12074), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(12076), 1, + ACTIONS(11576), 1, aux_sym__immediate_decimal_token4, - STATE(6959), 1, - sym_comment, - STATE(7516), 1, + STATE(3929), 1, sym__var, - STATE(8212), 1, + STATE(6548), 1, + sym_comment, + STATE(7815), 1, sym__immediate_decimal, - STATE(8211), 2, + ACTIONS(11574), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(8280), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2389), 4, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [222815] = 13, - ACTIONS(3), 1, + ACTIONS(922), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [223139] = 14, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2387), 1, - sym_cmd_identifier, - ACTIONS(11863), 1, - anon_sym_LPAREN2, - ACTIONS(11957), 1, + ACTIONS(4911), 1, anon_sym_DOLLAR, - ACTIONS(12076), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12078), 1, + ACTIONS(8909), 1, + aux_sym_unquoted_token4, + ACTIONS(11279), 1, + anon_sym_LPAREN2, + ACTIONS(11521), 1, anon_sym_DOT, - ACTIONS(12080), 1, + ACTIONS(11523), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12082), 1, + ACTIONS(11525), 1, aux_sym__immediate_decimal_token3, - STATE(6960), 1, + ACTIONS(11527), 1, + aux_sym__immediate_decimal_token4, + STATE(6549), 1, sym_comment, - STATE(8075), 1, + STATE(7851), 1, sym__var, - STATE(8855), 1, + STATE(8022), 1, sym__immediate_decimal, - STATE(9370), 2, + ACTIONS(920), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(922), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(8357), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2389), 4, + [223185] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(11578), 1, + aux_sym__immediate_decimal_token2, + STATE(6550), 1, + sym_comment, + ACTIONS(901), 7, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [222859] = 14, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token5, + ACTIONS(903), 7, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [223213] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3682), 1, - aux_sym_unquoted_token4, - ACTIONS(5155), 1, + ACTIONS(1788), 1, anon_sym_DOLLAR, - ACTIONS(11795), 1, + ACTIONS(11365), 1, anon_sym_LPAREN2, - ACTIONS(12084), 1, + ACTIONS(11373), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11580), 1, anon_sym_DOT, - ACTIONS(12086), 1, + ACTIONS(11582), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12088), 1, + ACTIONS(11584), 1, aux_sym__immediate_decimal_token3, - ACTIONS(12090), 1, - aux_sym__immediate_decimal_token4, - STATE(6961), 1, - sym_comment, - STATE(8434), 1, + STATE(4392), 1, sym__var, - STATE(8807), 1, + STATE(6551), 1, + sym_comment, + STATE(7755), 1, sym__immediate_decimal, - ACTIONS(936), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(938), 2, + ACTIONS(2171), 2, ts_builtin_sym_end, - anon_sym_LF, - STATE(8641), 2, + aux_sym_command_token1, + STATE(7731), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [222905] = 15, + ACTIONS(2169), 3, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, + [223257] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(938), 1, + ACTIONS(11586), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11588), 1, + aux_sym__immediate_decimal_token2, + STATE(6552), 1, + sym_comment, + ACTIONS(2229), 3, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + ACTIONS(2231), 10, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - ACTIONS(9701), 1, - aux_sym_unquoted_token3, - ACTIONS(12092), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [223287] = 13, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(5069), 1, anon_sym_DOLLAR, - ACTIONS(12094), 1, + ACTIONS(11365), 1, anon_sym_LPAREN2, - ACTIONS(12096), 1, + ACTIONS(11373), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11497), 1, anon_sym_DOT, - ACTIONS(12098), 1, + ACTIONS(11499), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12100), 1, + ACTIONS(11501), 1, aux_sym__immediate_decimal_token3, - ACTIONS(12102), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12104), 1, - aux_sym_unquoted_token5, - STATE(6962), 1, - sym_comment, - STATE(7579), 1, + STATE(5006), 1, sym__var, - STATE(7975), 1, + STATE(6553), 1, + sym_comment, + STATE(8863), 1, sym__immediate_decimal, - ACTIONS(936), 2, - sym_identifier, - anon_sym_DASH, - STATE(8322), 2, + ACTIONS(2171), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + STATE(8862), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [222953] = 13, + ACTIONS(2169), 3, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, + [223331] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2361), 1, + ACTIONS(2209), 1, anon_sym_LF, - ACTIONS(5411), 1, + ACTIONS(4937), 1, anon_sym_DOLLAR, - ACTIONS(11743), 1, + ACTIONS(11217), 1, anon_sym_LPAREN2, - ACTIONS(11751), 1, + ACTIONS(11225), 1, aux_sym__immediate_decimal_token4, - ACTIONS(11855), 1, + ACTIONS(11353), 1, anon_sym_DOT, - ACTIONS(11857), 1, + ACTIONS(11355), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11859), 1, + ACTIONS(11357), 1, aux_sym__immediate_decimal_token3, - STATE(6963), 1, + STATE(6554), 1, sym_comment, - STATE(8127), 1, + STATE(7637), 1, sym__var, - STATE(8262), 1, + STATE(7951), 1, sym__immediate_decimal, - STATE(8261), 2, + STATE(7950), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2359), 4, + ACTIONS(2207), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [222997] = 13, - ACTIONS(113), 1, + [223375] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5613), 1, + ACTIONS(2169), 1, + sym_cmd_identifier, + ACTIONS(11307), 1, anon_sym_DOLLAR, - ACTIONS(11879), 1, + ACTIONS(11309), 1, anon_sym_LPAREN2, - ACTIONS(11887), 1, + ACTIONS(11519), 1, aux_sym__immediate_decimal_token4, - ACTIONS(12052), 1, + ACTIONS(11590), 1, anon_sym_DOT, - ACTIONS(12054), 1, + ACTIONS(11592), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12056), 1, + ACTIONS(11594), 1, aux_sym__immediate_decimal_token3, - STATE(5240), 1, - sym__var, - STATE(6964), 1, + STATE(6555), 1, sym_comment, - STATE(9285), 1, + STATE(7002), 1, + sym__var, + STATE(7674), 1, sym__immediate_decimal, - ACTIONS(2389), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - STATE(8834), 2, + STATE(7673), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2387), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - [223041] = 12, + ACTIONS(2171), 4, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [223419] = 12, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(940), 1, aux_sym_command_token1, - ACTIONS(2397), 1, + ACTIONS(2187), 1, anon_sym_LPAREN2, - ACTIONS(8993), 1, - anon_sym_DOT, - ACTIONS(9001), 1, + ACTIONS(8548), 1, aux_sym_unquoted_token5, - ACTIONS(12106), 1, + ACTIONS(8614), 1, + anon_sym_DOT, + ACTIONS(11596), 1, anon_sym_DOT_DOT2, - ACTIONS(12110), 1, + ACTIONS(11600), 1, sym_filesize_unit, - ACTIONS(12112), 1, + ACTIONS(11602), 1, sym_duration_unit, - STATE(6965), 1, + STATE(6556), 1, sym_comment, - STATE(10664), 1, + STATE(10242), 1, sym__expr_parenthesized_immediate, - ACTIONS(12108), 2, + ACTIONS(11598), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(959), 5, + ACTIONS(938), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_LF2, - [223083] = 15, + [223461] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(938), 1, + ACTIONS(922), 1, anon_sym_DASH_DASH, - ACTIONS(9701), 1, + ACTIONS(9231), 1, aux_sym_unquoted_token3, - ACTIONS(12092), 1, + ACTIONS(11604), 1, anon_sym_DOLLAR, - ACTIONS(12094), 1, + ACTIONS(11606), 1, anon_sym_LPAREN2, - ACTIONS(12096), 1, + ACTIONS(11608), 1, anon_sym_DOT, - ACTIONS(12098), 1, + ACTIONS(11610), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12100), 1, + ACTIONS(11612), 1, aux_sym__immediate_decimal_token3, - ACTIONS(12102), 1, + ACTIONS(11614), 1, aux_sym__immediate_decimal_token4, - ACTIONS(12104), 1, + ACTIONS(11616), 1, aux_sym_unquoted_token5, - STATE(6966), 1, + STATE(6557), 1, sym_comment, - STATE(7579), 1, + STATE(7135), 1, sym__var, - STATE(8081), 1, + STATE(7422), 1, sym__immediate_decimal, - ACTIONS(936), 2, + ACTIONS(920), 2, sym_identifier, anon_sym_DASH, - STATE(8322), 2, + STATE(7982), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [223131] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(12114), 1, - anon_sym_DOT, - ACTIONS(12117), 1, - aux_sym__immediate_decimal_token2, - STATE(6967), 1, - sym_comment, - ACTIONS(925), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_command_token1, - ACTIONS(923), 7, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOT_DOT2, - anon_sym_LF2, - aux_sym_unquoted_token5, - [223161] = 5, + [223509] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12117), 1, + ACTIONS(11533), 1, aux_sym__immediate_decimal_token2, - STATE(6968), 1, + ACTIONS(11618), 1, + anon_sym_DOT, + STATE(6558), 1, sym_comment, - ACTIONS(925), 6, + ACTIONS(913), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, aux_sym_command_token1, - ACTIONS(923), 8, + ACTIONS(911), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_LF2, aux_sym_unquoted_token5, - [223189] = 4, + [223539] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1406), 1, + ACTIONS(1225), 1, anon_sym_DASH, - STATE(6969), 1, + STATE(6559), 1, sym_comment, - ACTIONS(1408), 14, + ACTIONS(1227), 14, anon_sym_EQ, sym_identifier, anon_sym_COLON, @@ -543101,515 +502779,243 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [223215] = 4, + [223565] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(6970), 1, - sym_comment, - ACTIONS(911), 6, - anon_sym_LF, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(909), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, + ACTIONS(11621), 1, anon_sym_DOT, - aux_sym_unquoted_token5, - [223241] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(12119), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12121), 1, + ACTIONS(11624), 1, aux_sym__immediate_decimal_token2, - STATE(6971), 1, + STATE(6560), 1, sym_comment, - ACTIONS(911), 6, - anon_sym_LF, + ACTIONS(913), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(909), 7, + aux_sym_command_token1, + ACTIONS(911), 7, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_DOT, aux_sym_unquoted_token5, - [223271] = 4, + [223595] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(6972), 1, + ACTIONS(11560), 1, + aux_sym__immediate_decimal_token2, + STATE(6561), 1, sym_comment, - ACTIONS(919), 6, - anon_sym_LF, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(917), 9, + ACTIONS(911), 7, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token5, - [223297] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6253), 1, - anon_sym_DOLLAR, - ACTIONS(9820), 1, - aux_sym_unquoted_token3, - ACTIONS(9822), 1, - aux_sym_unquoted_token5, - ACTIONS(12033), 1, - anon_sym_LPAREN2, - ACTIONS(12123), 1, - anon_sym_DOT, - ACTIONS(12127), 1, - aux_sym__immediate_decimal_token4, - STATE(4486), 1, - sym__var, - STATE(6973), 1, - sym_comment, - STATE(8202), 1, - sym__immediate_decimal, - ACTIONS(12125), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(8742), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(938), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [223341] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(6974), 1, - sym_comment, - ACTIONS(952), 6, + ACTIONS(913), 7, + ts_builtin_sym_end, anon_sym_LF, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(950), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token5, - [223367] = 6, + [223623] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12129), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12131), 1, + ACTIONS(11624), 1, aux_sym__immediate_decimal_token2, - STATE(6975), 1, + STATE(6562), 1, sym_comment, - ACTIONS(909), 6, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token5, - ACTIONS(911), 7, - ts_builtin_sym_end, + ACTIONS(913), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, aux_sym_command_token1, - [223397] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2349), 1, - sym_cmd_identifier, - ACTIONS(11863), 1, - anon_sym_LPAREN2, - ACTIONS(11957), 1, - anon_sym_DOLLAR, - ACTIONS(12076), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12078), 1, - anon_sym_DOT, - ACTIONS(12080), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12082), 1, - aux_sym__immediate_decimal_token3, - STATE(6976), 1, - sym_comment, - STATE(8075), 1, - sym__var, - STATE(9229), 1, - sym__immediate_decimal, - STATE(9144), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(2351), 4, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [223441] = 14, - ACTIONS(35), 1, - anon_sym_DOLLAR, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(11795), 1, - anon_sym_LPAREN2, - ACTIONS(11969), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11971), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(11973), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12133), 1, - anon_sym_DOT, - STATE(6977), 1, - sym_comment, - STATE(7829), 1, - sym__immediate_decimal, - STATE(7845), 1, - sym__var, - ACTIONS(1920), 2, + ACTIONS(911), 8, anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(1922), 2, - ts_builtin_sym_end, anon_sym_LF, - STATE(8302), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [223487] = 14, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token5, + [223651] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1934), 1, + ACTIONS(1886), 1, aux_sym_unquoted_token2, - ACTIONS(5155), 1, + ACTIONS(4911), 1, anon_sym_DOLLAR, - ACTIONS(11795), 1, + ACTIONS(11279), 1, anon_sym_LPAREN2, - ACTIONS(12084), 1, + ACTIONS(11521), 1, anon_sym_DOT, - ACTIONS(12086), 1, + ACTIONS(11523), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12088), 1, + ACTIONS(11525), 1, aux_sym__immediate_decimal_token3, - ACTIONS(12090), 1, + ACTIONS(11527), 1, aux_sym__immediate_decimal_token4, - STATE(6978), 1, + STATE(6563), 1, sym_comment, - STATE(8434), 1, + STATE(7851), 1, sym__var, - STATE(8475), 1, + STATE(7958), 1, sym__immediate_decimal, - ACTIONS(1920), 2, + ACTIONS(1882), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(1922), 2, + ACTIONS(1884), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(8810), 2, + STATE(8112), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [223533] = 5, - ACTIONS(3), 1, + [223697] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12135), 1, - anon_sym_QMARK2, - STATE(6979), 1, + ACTIONS(11626), 1, + aux_sym__immediate_decimal_token2, + STATE(6564), 1, sym_comment, - ACTIONS(1070), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1072), 11, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + ACTIONS(903), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [223561] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12135), 1, - anon_sym_QMARK2, - STATE(6980), 1, - sym_comment, - ACTIONS(1070), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1072), 11, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, + sym_filesize_unit, + sym_duration_unit, + aux_sym_command_token1, + ACTIONS(901), 8, + anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [223589] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12137), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12139), 1, - aux_sym__immediate_decimal_token2, - STATE(6981), 1, - sym_comment, - ACTIONS(909), 6, - sym_cmd_identifier, anon_sym_DOT_DOT2, anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, + anon_sym_LF2, aux_sym_unquoted_token5, - ACTIONS(911), 7, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [223619] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2359), 1, - sym_cmd_identifier, - ACTIONS(11863), 1, - anon_sym_LPAREN2, - ACTIONS(11957), 1, - anon_sym_DOLLAR, - ACTIONS(12076), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12078), 1, - anon_sym_DOT, - ACTIONS(12080), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12082), 1, - aux_sym__immediate_decimal_token3, - STATE(6982), 1, - sym_comment, - STATE(8075), 1, - sym__var, - STATE(9326), 1, - sym__immediate_decimal, - STATE(9250), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(2361), 4, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [223663] = 14, - ACTIONS(35), 1, - anon_sym_DOLLAR, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(11795), 1, - anon_sym_LPAREN2, - ACTIONS(11969), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11971), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(11973), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12141), 1, - anon_sym_DOT, - STATE(6983), 1, - sym_comment, - STATE(7845), 1, - sym__var, - STATE(7903), 1, - sym__immediate_decimal, - ACTIONS(1920), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(1922), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8302), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [223709] = 14, + [223725] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1934), 1, + ACTIONS(1886), 1, aux_sym_unquoted_token2, - ACTIONS(5155), 1, + ACTIONS(4911), 1, anon_sym_DOLLAR, - ACTIONS(11795), 1, + ACTIONS(11279), 1, anon_sym_LPAREN2, - ACTIONS(12084), 1, + ACTIONS(11521), 1, anon_sym_DOT, - ACTIONS(12086), 1, + ACTIONS(11523), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12088), 1, + ACTIONS(11525), 1, aux_sym__immediate_decimal_token3, - ACTIONS(12090), 1, + ACTIONS(11527), 1, aux_sym__immediate_decimal_token4, - STATE(6984), 1, + STATE(6565), 1, sym_comment, - STATE(8434), 1, + STATE(7851), 1, sym__var, - STATE(8674), 1, + STATE(8084), 1, sym__immediate_decimal, - ACTIONS(1920), 2, + ACTIONS(1882), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(1922), 2, + ACTIONS(1884), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(8810), 2, + STATE(8112), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [223755] = 13, + [223771] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2383), 1, + ACTIONS(2169), 1, sym_cmd_identifier, - ACTIONS(11863), 1, + ACTIONS(11309), 1, anon_sym_LPAREN2, - ACTIONS(11957), 1, + ACTIONS(11401), 1, anon_sym_DOLLAR, - ACTIONS(12076), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12078), 1, + ACTIONS(11513), 1, anon_sym_DOT, - ACTIONS(12080), 1, + ACTIONS(11515), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12082), 1, + ACTIONS(11517), 1, aux_sym__immediate_decimal_token3, - STATE(6985), 1, + ACTIONS(11519), 1, + aux_sym__immediate_decimal_token4, + STATE(6566), 1, sym_comment, - STATE(8075), 1, + STATE(7707), 1, sym__var, - STATE(8941), 1, + STATE(8500), 1, sym__immediate_decimal, - STATE(9411), 2, + STATE(8499), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2385), 4, + ACTIONS(2171), 4, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [223799] = 6, + [223815] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12143), 1, - anon_sym_DOT, - ACTIONS(12145), 1, - aux_sym__immediate_decimal_token2, - STATE(6986), 1, - sym_comment, - ACTIONS(2581), 3, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(2583), 10, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + ACTIONS(922), 1, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [223829] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(936), 1, - anon_sym_DASH, - ACTIONS(9253), 1, + ACTIONS(9231), 1, aux_sym_unquoted_token3, - ACTIONS(11873), 1, - aux_sym_unquoted_token5, - ACTIONS(12031), 1, + ACTIONS(11604), 1, anon_sym_DOLLAR, - ACTIONS(12033), 1, + ACTIONS(11606), 1, anon_sym_LPAREN2, - ACTIONS(12035), 1, + ACTIONS(11608), 1, anon_sym_DOT, - ACTIONS(12039), 1, + ACTIONS(11610), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11612), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(11614), 1, aux_sym__immediate_decimal_token4, - STATE(6987), 1, + ACTIONS(11616), 1, + aux_sym_unquoted_token5, + STATE(6567), 1, sym_comment, - STATE(7633), 1, + STATE(7135), 1, sym__var, - STATE(7901), 1, + STATE(7589), 1, sym__immediate_decimal, - ACTIONS(938), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(12037), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(8331), 2, + ACTIONS(920), 2, + sym_identifier, + anon_sym_DASH, + STATE(7982), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [223875] = 6, + [223863] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12058), 1, + ACTIONS(11474), 1, aux_sym__immediate_decimal_token2, - ACTIONS(12147), 1, - anon_sym_DOT, - STATE(6988), 1, + STATE(6568), 1, sym_comment, - ACTIONS(923), 6, + ACTIONS(893), 7, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_DOT_DOT2, + anon_sym_DOT, aux_sym_unquoted_token5, - ACTIONS(925), 7, + ACTIONS(895), 7, ts_builtin_sym_end, anon_sym_LF, anon_sym_LPAREN2, @@ -543617,230 +503023,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [223905] = 14, + [223891] = 12, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - ACTIONS(5155), 1, - anon_sym_DOLLAR, - ACTIONS(11795), 1, + ACTIONS(2187), 1, anon_sym_LPAREN2, - ACTIONS(12084), 1, + ACTIONS(8637), 1, anon_sym_DOT, - ACTIONS(12086), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12088), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(12090), 1, - aux_sym__immediate_decimal_token4, - STATE(6989), 1, + ACTIONS(8643), 1, + aux_sym_unquoted_token5, + ACTIONS(11628), 1, + anon_sym_DOT_DOT2, + ACTIONS(11632), 1, + sym_filesize_unit, + ACTIONS(11634), 1, + sym_duration_unit, + STATE(6569), 1, sym_comment, - STATE(8434), 1, - sym__var, - STATE(8490), 1, - sym__immediate_decimal, - ACTIONS(2002), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(2004), 2, + STATE(10005), 1, + sym__expr_parenthesized_immediate, + ACTIONS(940), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(8594), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [223951] = 14, + ACTIONS(11630), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(938), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [223933] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - ACTIONS(5155), 1, + ACTIONS(2138), 1, + anon_sym_LF, + ACTIONS(4937), 1, anon_sym_DOLLAR, - ACTIONS(11795), 1, + ACTIONS(11217), 1, anon_sym_LPAREN2, - ACTIONS(12084), 1, + ACTIONS(11225), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11353), 1, anon_sym_DOT, - ACTIONS(12086), 1, + ACTIONS(11355), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12088), 1, + ACTIONS(11357), 1, aux_sym__immediate_decimal_token3, - ACTIONS(12090), 1, - aux_sym__immediate_decimal_token4, - STATE(6990), 1, + STATE(6570), 1, sym_comment, - STATE(8434), 1, + STATE(7637), 1, sym__var, - STATE(8713), 1, + STATE(7953), 1, sym__immediate_decimal, - ACTIONS(2002), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(2004), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8594), 2, + STATE(7952), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [223997] = 13, + ACTIONS(2136), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [223977] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2385), 1, + ACTIONS(2148), 1, anon_sym_LF, - ACTIONS(5411), 1, + ACTIONS(4937), 1, anon_sym_DOLLAR, - ACTIONS(11743), 1, + ACTIONS(11217), 1, anon_sym_LPAREN2, - ACTIONS(11751), 1, + ACTIONS(11225), 1, aux_sym__immediate_decimal_token4, - ACTIONS(11855), 1, + ACTIONS(11353), 1, anon_sym_DOT, - ACTIONS(11857), 1, + ACTIONS(11355), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11859), 1, + ACTIONS(11357), 1, aux_sym__immediate_decimal_token3, - STATE(6991), 1, + STATE(6571), 1, sym_comment, - STATE(8127), 1, + STATE(7637), 1, sym__var, - STATE(8267), 1, + STATE(7955), 1, sym__immediate_decimal, - STATE(8263), 2, + STATE(7954), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2383), 4, + ACTIONS(2146), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [224041] = 13, + [224021] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(251), 1, + ACTIONS(5069), 1, anon_sym_DOLLAR, - ACTIONS(2389), 1, - anon_sym_LF, - ACTIONS(11743), 1, + ACTIONS(11365), 1, anon_sym_LPAREN2, - ACTIONS(11751), 1, + ACTIONS(11373), 1, aux_sym__immediate_decimal_token4, - ACTIONS(11841), 1, + ACTIONS(11497), 1, anon_sym_DOT, - ACTIONS(11843), 1, + ACTIONS(11499), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11845), 1, + ACTIONS(11501), 1, aux_sym__immediate_decimal_token3, - STATE(6992), 1, - sym_comment, - STATE(7523), 1, + STATE(5006), 1, sym__var, - STATE(8234), 1, + STATE(6572), 1, + sym_comment, + STATE(8991), 1, sym__immediate_decimal, - STATE(8237), 2, + ACTIONS(2209), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + STATE(8721), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2387), 4, + ACTIONS(2207), 3, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LF, anon_sym_PIPE, - anon_sym_RBRACE, - [224085] = 13, + [224065] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2389), 1, + ACTIONS(1884), 1, anon_sym_LF, - ACTIONS(5411), 1, + ACTIONS(4937), 1, anon_sym_DOLLAR, - ACTIONS(11743), 1, + ACTIONS(11217), 1, anon_sym_LPAREN2, - ACTIONS(11751), 1, + ACTIONS(11225), 1, aux_sym__immediate_decimal_token4, - ACTIONS(11855), 1, + ACTIONS(11353), 1, anon_sym_DOT, - ACTIONS(11857), 1, + ACTIONS(11355), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11859), 1, + ACTIONS(11357), 1, aux_sym__immediate_decimal_token3, - STATE(6993), 1, + STATE(6573), 1, sym_comment, - STATE(8127), 1, + STATE(7637), 1, sym__var, - STATE(8366), 1, + STATE(8049), 1, sym__immediate_decimal, - STATE(8360), 2, + STATE(7956), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2387), 4, + ACTIONS(1882), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [224129] = 12, + [224109] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(961), 1, - aux_sym_command_token1, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - ACTIONS(9035), 1, - anon_sym_DOT, - ACTIONS(9043), 1, - aux_sym_unquoted_token5, - ACTIONS(12150), 1, - anon_sym_DOT_DOT2, - ACTIONS(12154), 1, - sym_filesize_unit, - ACTIONS(12156), 1, - sym_duration_unit, - STATE(6994), 1, + ACTIONS(11636), 1, + aux_sym__immediate_decimal_token2, + STATE(6574), 1, sym_comment, - STATE(10640), 1, - sym__expr_parenthesized_immediate, - ACTIONS(12152), 2, + ACTIONS(2358), 4, + anon_sym_LF, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(959), 5, + ACTIONS(2356), 9, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_RBRACE, - [224171] = 5, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token2, + [224136] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(11925), 1, + ACTIONS(11638), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11640), 1, aux_sym__immediate_decimal_token2, - STATE(6995), 1, + STATE(6575), 1, sym_comment, - ACTIONS(911), 6, + ACTIONS(2231), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, aux_sym_command_token1, - ACTIONS(909), 8, + ACTIONS(2229), 8, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT, - anon_sym_LF2, - aux_sym_unquoted_token5, - [224199] = 6, + aux_sym_unquoted_token2, + [224165] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12158), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12160), 1, - aux_sym__immediate_decimal_token2, - STATE(6996), 1, + STATE(6576), 1, sym_comment, - ACTIONS(2437), 3, - sym_identifier, + ACTIONS(1037), 3, anon_sym_DASH, anon_sym_DOT_DOT2, - ACTIONS(2439), 10, + anon_sym_DOT, + ACTIONS(1039), 11, + sym_identifier, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -543851,419 +503243,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [224229] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6997), 1, - sym_comment, - ACTIONS(1059), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1061), 12, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [224255] = 13, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(251), 1, - anon_sym_DOLLAR, - ACTIONS(1922), 1, - anon_sym_LF, - ACTIONS(11743), 1, - anon_sym_LPAREN2, - ACTIONS(11751), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(11843), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11845), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(11901), 1, - anon_sym_DOT, - STATE(6998), 1, - sym_comment, - STATE(7523), 1, - sym__var, - STATE(8076), 1, - sym__immediate_decimal, - STATE(8084), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1920), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [224299] = 14, + [224190] = 15, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5155), 1, + ACTIONS(1724), 1, anon_sym_DOLLAR, - ACTIONS(9405), 1, - aux_sym_unquoted_token4, - ACTIONS(11795), 1, + ACTIONS(6322), 1, anon_sym_LPAREN2, - ACTIONS(12084), 1, + ACTIONS(7087), 1, + anon_sym_RBRACK, + ACTIONS(7101), 1, + sym__entry_separator, + ACTIONS(7103), 1, + aux_sym__unquoted_in_list_token4, + ACTIONS(7105), 1, + aux_sym__unquoted_in_list_token6, + ACTIONS(11642), 1, anon_sym_DOT, - ACTIONS(12086), 1, + ACTIONS(11644), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12088), 1, + ACTIONS(11646), 1, aux_sym__immediate_decimal_token3, - ACTIONS(12090), 1, + ACTIONS(11648), 1, aux_sym__immediate_decimal_token4, - STATE(6999), 1, - sym_comment, - STATE(8408), 1, - sym__immediate_decimal, - STATE(8434), 1, + STATE(4556), 1, sym__var, - ACTIONS(936), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(938), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8641), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [224345] = 13, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(5155), 1, - anon_sym_DOLLAR, - ACTIONS(11795), 1, - anon_sym_LPAREN2, - ACTIONS(11803), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(11949), 1, - anon_sym_DOT, - ACTIONS(11951), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11953), 1, - aux_sym__immediate_decimal_token3, - STATE(7000), 1, + STATE(6577), 1, sym_comment, - STATE(8434), 1, - sym__var, - STATE(8512), 1, + STATE(7783), 1, sym__immediate_decimal, - ACTIONS(1920), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(1922), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8810), 2, + STATE(8279), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [224388] = 12, + [224237] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2006), 1, + ACTIONS(1886), 1, aux_sym_unquoted_token2, - ACTIONS(12033), 1, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(12162), 1, + ACTIONS(11650), 1, anon_sym_DOLLAR, - ACTIONS(12164), 1, + ACTIONS(11652), 1, anon_sym_DOT, - ACTIONS(12168), 1, + ACTIONS(11656), 1, aux_sym__immediate_decimal_token4, - STATE(4901), 1, + STATE(4470), 1, sym__var, - STATE(7001), 1, + STATE(6578), 1, sym_comment, - STATE(9133), 1, + STATE(8924), 1, sym__immediate_decimal, - ACTIONS(12166), 2, + ACTIONS(11654), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7753), 2, + STATE(7172), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2004), 3, + ACTIONS(1884), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [224429] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(999), 1, - anon_sym_DASH, - ACTIONS(12170), 1, - anon_sym_DOT, - STATE(7117), 1, - sym_path, - STATE(7002), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1001), 10, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [224458] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12173), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12175), 1, - aux_sym__immediate_decimal_token2, - STATE(7003), 1, - sym_comment, - ACTIONS(909), 4, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token5, - ACTIONS(911), 8, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [224487] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(12177), 1, - aux_sym__immediate_decimal_token2, - STATE(7004), 1, - sym_comment, - ACTIONS(925), 6, - anon_sym_LF, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(923), 7, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token5, - [224514] = 14, + [224278] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2694), 1, + ACTIONS(2621), 1, anon_sym_DASH, - ACTIONS(2744), 1, + ACTIONS(2808), 1, anon_sym_DASH_DASH, - ACTIONS(3984), 1, + ACTIONS(3707), 1, anon_sym_COLON, - ACTIONS(12179), 1, + ACTIONS(11658), 1, anon_sym_DOLLAR, - ACTIONS(12181), 1, + ACTIONS(11660), 1, anon_sym_LBRACE, - STATE(4616), 1, + STATE(4162), 1, sym__var, - STATE(5084), 1, + STATE(4583), 1, sym_block, - STATE(5126), 1, + STATE(4584), 1, sym_val_closure, - STATE(7005), 1, + STATE(6579), 1, sym_comment, - STATE(7150), 1, + STATE(6768), 1, sym__flag, - STATE(8074), 1, + STATE(7692), 1, sym_long_flag_equals_value, - STATE(1896), 2, + STATE(1477), 2, sym__blosure, sym_val_variable, - STATE(9344), 2, + STATE(8892), 2, sym_short_flag, sym_long_flag, - [224559] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(7006), 1, - sym_comment, - ACTIONS(919), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_command_token1, - ACTIONS(917), 8, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token5, - [224584] = 12, + [224323] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, + ACTIONS(4911), 1, + anon_sym_DOLLAR, + ACTIONS(11279), 1, anon_sym_LPAREN2, - ACTIONS(9188), 1, + ACTIONS(11287), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11434), 1, anon_sym_DOT, - ACTIONS(9194), 1, - aux_sym_unquoted_token5, - ACTIONS(12183), 1, - anon_sym_DOT_DOT2, - ACTIONS(12187), 1, - sym_filesize_unit, - ACTIONS(12189), 1, - sym_duration_unit, - STATE(7007), 1, + ACTIONS(11436), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11438), 1, + aux_sym__immediate_decimal_token3, + STATE(6580), 1, sym_comment, - STATE(10693), 1, - sym__expr_parenthesized_immediate, - ACTIONS(961), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(12185), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(959), 3, + STATE(7851), 1, + sym__var, + STATE(8089), 1, + sym__immediate_decimal, + ACTIONS(2136), 2, anon_sym_SEMI, - anon_sym_LF, anon_sym_PIPE, - [224625] = 13, - ACTIONS(3), 1, + ACTIONS(2138), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(8086), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [224366] = 15, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2002), 1, - anon_sym_DASH, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - ACTIONS(6247), 1, + ACTIONS(920), 1, + anon_sym_RBRACK, + ACTIONS(922), 1, + sym__entry_separator, + ACTIONS(1724), 1, anon_sym_DOLLAR, - ACTIONS(12033), 1, + ACTIONS(6322), 1, anon_sym_LPAREN2, - ACTIONS(12191), 1, + ACTIONS(9162), 1, + aux_sym_unquoted_token3, + ACTIONS(9193), 1, + aux_sym_unquoted_token5, + ACTIONS(11662), 1, anon_sym_DOT, - ACTIONS(12195), 1, + ACTIONS(11664), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11666), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(11668), 1, aux_sym__immediate_decimal_token4, - STATE(7008), 1, - sym_comment, - STATE(7440), 1, + STATE(4556), 1, sym__var, - STATE(8373), 1, + STATE(6581), 1, + sym_comment, + STATE(7585), 1, sym__immediate_decimal, - ACTIONS(2004), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(12193), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7753), 2, + STATE(8279), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [224668] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(12121), 1, - aux_sym__immediate_decimal_token2, - STATE(7009), 1, - sym_comment, - ACTIONS(911), 6, - anon_sym_LF, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(909), 7, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token5, - [224695] = 6, + [224413] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12197), 1, - anon_sym_DOT, - ACTIONS(12200), 1, - aux_sym__immediate_decimal_token2, - STATE(7010), 1, - sym_comment, - ACTIONS(923), 5, - sym_cmd_identifier, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token5, - ACTIONS(925), 7, + ACTIONS(922), 1, anon_sym_DASH_DASH, + ACTIONS(9231), 1, + aux_sym_unquoted_token4, + ACTIONS(11229), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [224724] = 15, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(936), 1, - anon_sym_RBRACK, - ACTIONS(938), 1, - sym__entry_separator, - ACTIONS(1942), 1, + ACTIONS(11670), 1, anon_sym_DOLLAR, - ACTIONS(6772), 1, - anon_sym_LPAREN2, - ACTIONS(9636), 1, - aux_sym_unquoted_token3, - ACTIONS(9638), 1, - aux_sym_unquoted_token5, - ACTIONS(12202), 1, + ACTIONS(11672), 1, anon_sym_DOT, - ACTIONS(12204), 1, + ACTIONS(11674), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12206), 1, + ACTIONS(11676), 1, aux_sym__immediate_decimal_token3, - ACTIONS(12208), 1, + ACTIONS(11678), 1, aux_sym__immediate_decimal_token4, - STATE(5205), 1, - sym__var, - STATE(7011), 1, + STATE(6582), 1, sym_comment, - STATE(8320), 1, + STATE(7915), 1, + sym__var, + STATE(8713), 1, sym__immediate_decimal, - STATE(8642), 2, + ACTIONS(920), 2, + sym_identifier, + anon_sym_DASH, + STATE(7130), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [224771] = 4, + [224458] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(7012), 1, + STATE(6583), 1, sym_comment, - ACTIONS(911), 6, + ACTIONS(903), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, aux_sym_command_token1, - ACTIONS(909), 8, + ACTIONS(901), 8, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -544272,134 +503449,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token5, - [224796] = 5, - ACTIONS(3), 1, + [224483] = 13, + ACTIONS(35), 1, + anon_sym_DOLLAR, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1070), 1, - anon_sym_DASH, - ACTIONS(12210), 1, - anon_sym_QMARK2, - STATE(7013), 1, + ACTIONS(11279), 1, + anon_sym_LPAREN2, + ACTIONS(11287), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11381), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11383), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(11432), 1, + anon_sym_DOT, + STATE(6584), 1, sym_comment, - ACTIONS(1072), 12, - anon_sym_EQ, + STATE(7390), 1, + sym__var, + STATE(7895), 1, + sym__immediate_decimal, + ACTIONS(2169), 2, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - [224823] = 12, - ACTIONS(3), 1, + anon_sym_PIPE, + ACTIONS(2171), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(7894), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [224526] = 15, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9820), 1, - aux_sym_unquoted_token4, - ACTIONS(12033), 1, - anon_sym_LPAREN2, - ACTIONS(12162), 1, + ACTIONS(920), 1, + anon_sym_RBRACK, + ACTIONS(922), 1, + sym__entry_separator, + ACTIONS(1724), 1, anon_sym_DOLLAR, - ACTIONS(12164), 1, + ACTIONS(6322), 1, + anon_sym_LPAREN2, + ACTIONS(9162), 1, + aux_sym_unquoted_token3, + ACTIONS(9193), 1, + aux_sym_unquoted_token5, + ACTIONS(11662), 1, anon_sym_DOT, - ACTIONS(12168), 1, + ACTIONS(11664), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11666), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(11668), 1, aux_sym__immediate_decimal_token4, - STATE(4901), 1, + STATE(4556), 1, sym__var, - STATE(7014), 1, + STATE(6585), 1, sym_comment, - STATE(8962), 1, + STATE(7885), 1, sym__immediate_decimal, - ACTIONS(12166), 2, + STATE(8279), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [224573] = 13, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(4911), 1, + anon_sym_DOLLAR, + ACTIONS(11279), 1, + anon_sym_LPAREN2, + ACTIONS(11287), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11434), 1, + anon_sym_DOT, + ACTIONS(11436), 1, aux_sym__immediate_decimal_token1, + ACTIONS(11438), 1, aux_sym__immediate_decimal_token3, - STATE(7645), 2, + STATE(6586), 1, + sym_comment, + STATE(7851), 1, + sym__var, + STATE(8094), 1, + sym__immediate_decimal, + ACTIONS(2169), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(2171), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(8093), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(938), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [224864] = 5, + [224616] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1070), 1, - anon_sym_DASH, - ACTIONS(12210), 1, - anon_sym_QMARK2, - STATE(7015), 1, + ACTIONS(11509), 1, + aux_sym__immediate_decimal_token2, + STATE(6587), 1, sym_comment, - ACTIONS(1072), 12, - anon_sym_EQ, - anon_sym_SEMI, + ACTIONS(2356), 3, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + ACTIONS(2358), 10, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - [224891] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [224643] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12212), 1, + ACTIONS(11505), 1, aux_sym__immediate_decimal_token2, - STATE(7016), 1, + STATE(6588), 1, sym_comment, - ACTIONS(2583), 4, + ACTIONS(895), 6, anon_sym_LF, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2581), 9, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(893), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT, - aux_sym_unquoted_token2, - [224918] = 6, + aux_sym_unquoted_token5, + [224670] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12212), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(12214), 1, - anon_sym_DOT, - STATE(7017), 1, + STATE(6589), 1, sym_comment, - ACTIONS(2583), 4, - anon_sym_LF, + ACTIONS(895), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2581), 8, + sym_filesize_unit, + sym_duration_unit, + aux_sym_command_token1, + ACTIONS(893), 8, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_LF2, + aux_sym_unquoted_token5, + [224695] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11680), 1, + aux_sym__immediate_decimal_token2, + STATE(6590), 1, + sym_comment, + ACTIONS(2362), 3, + sym_identifier, anon_sym_DASH, - anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [224947] = 4, + ACTIONS(2364), 10, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [224722] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(7018), 1, + STATE(6591), 1, sym_comment, - ACTIONS(1109), 3, + ACTIONS(1047), 3, anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(1111), 11, + ACTIONS(1049), 11, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -544411,14 +503649,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [224972] = 4, + [224747] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1406), 1, + ACTIONS(1225), 1, anon_sym_DASH, - STATE(7019), 1, + STATE(6592), 1, sym_comment, - ACTIONS(1408), 13, + ACTIONS(1227), 13, anon_sym_EQ, sym_cmd_identifier, anon_sym_COLON, @@ -544432,110 +503670,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [224997] = 7, + [224772] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1006), 1, + ACTIONS(920), 1, anon_sym_DASH, - ACTIONS(12217), 1, + ACTIONS(5725), 1, + anon_sym_DOLLAR, + ACTIONS(8820), 1, + aux_sym_unquoted_token4, + ACTIONS(11537), 1, + anon_sym_LPAREN2, + ACTIONS(11682), 1, anon_sym_DOT, - STATE(7002), 1, - aux_sym_cell_path_repeat1, - STATE(7020), 1, + ACTIONS(11686), 1, + aux_sym__immediate_decimal_token4, + STATE(6593), 1, sym_comment, - STATE(7117), 1, - sym_path, - ACTIONS(1008), 10, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOLLAR, + STATE(7000), 1, + sym__var, + STATE(7820), 1, + sym__immediate_decimal, + ACTIONS(922), 2, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - [225028] = 5, - ACTIONS(113), 1, + ACTIONS(11684), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7175), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [224815] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12219), 1, - aux_sym__immediate_decimal_token2, - STATE(7021), 1, - sym_comment, - ACTIONS(919), 6, - anon_sym_LF, + ACTIONS(5735), 1, + anon_sym_DOLLAR, + ACTIONS(9209), 1, + aux_sym_unquoted_token3, + ACTIONS(9249), 1, + aux_sym_unquoted_token5, + ACTIONS(11537), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(917), 7, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(11688), 1, + anon_sym_DOT, + ACTIONS(11692), 1, + aux_sym__immediate_decimal_token4, + STATE(3929), 1, + sym__var, + STATE(6594), 1, + sym_comment, + STATE(7994), 1, + sym__immediate_decimal, + ACTIONS(922), 2, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, + anon_sym_EQ_GT, + ACTIONS(11690), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(8984), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [224858] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1884), 1, + anon_sym_DASH_DASH, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(11229), 1, + anon_sym_LPAREN2, + ACTIONS(11670), 1, + anon_sym_DOLLAR, + ACTIONS(11672), 1, anon_sym_DOT, - aux_sym_unquoted_token5, - [225055] = 5, - ACTIONS(113), 1, + ACTIONS(11674), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11676), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(11678), 1, + aux_sym__immediate_decimal_token4, + STATE(6595), 1, + sym_comment, + STATE(7915), 1, + sym__var, + STATE(8098), 1, + sym__immediate_decimal, + ACTIONS(1882), 2, + sym_identifier, + anon_sym_DASH, + STATE(7151), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [224903] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12131), 1, + ACTIONS(11694), 1, aux_sym__immediate_decimal_token2, - STATE(7022), 1, + STATE(6596), 1, sym_comment, - ACTIONS(909), 6, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, + ACTIONS(901), 6, + sym_cmd_identifier, anon_sym_DOT_DOT2, anon_sym_DOT, + sym_filesize_unit, + sym_duration_unit, aux_sym_unquoted_token5, - ACTIONS(911), 7, - ts_builtin_sym_end, + ACTIONS(903), 7, + anon_sym_DASH_DASH, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_command_token1, - [225082] = 6, - ACTIONS(113), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [224930] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12221), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12223), 1, - aux_sym__immediate_decimal_token2, - STATE(7023), 1, + ACTIONS(1024), 1, + anon_sym_DASH, + ACTIONS(11696), 1, + anon_sym_QMARK2, + STATE(6597), 1, sym_comment, - ACTIONS(2439), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - ACTIONS(2437), 8, + ACTIONS(1026), 12, + anon_sym_EQ, anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT2, anon_sym_DOT, - aux_sym_unquoted_token2, - [225111] = 5, + [224957] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1006), 1, + anon_sym_DASH, + ACTIONS(11698), 1, + anon_sym_DOT, + STATE(6598), 1, + sym_comment, + STATE(6642), 1, + aux_sym_cell_path_repeat1, + STATE(6727), 1, + sym_path, + ACTIONS(1008), 10, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [224988] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12225), 1, + ACTIONS(11636), 1, aux_sym__immediate_decimal_token2, - STATE(7024), 1, + ACTIONS(11700), 1, + anon_sym_DOT, + STATE(6599), 1, sym_comment, - ACTIONS(2549), 4, + ACTIONS(2358), 4, anon_sym_LF, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2547), 9, + ACTIONS(2356), 8, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -544543,291 +503851,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_DOT, aux_sym_unquoted_token2, - [225138] = 15, - ACTIONS(113), 1, + [225017] = 14, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(936), 1, - anon_sym_RBRACK, - ACTIONS(938), 1, - sym__entry_separator, - ACTIONS(1942), 1, - anon_sym_DOLLAR, - ACTIONS(6772), 1, + ACTIONS(1884), 1, + anon_sym_DASH_DASH, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(11229), 1, anon_sym_LPAREN2, - ACTIONS(9636), 1, - aux_sym_unquoted_token3, - ACTIONS(9638), 1, - aux_sym_unquoted_token5, - ACTIONS(12202), 1, + ACTIONS(11670), 1, + anon_sym_DOLLAR, + ACTIONS(11672), 1, anon_sym_DOT, - ACTIONS(12204), 1, + ACTIONS(11674), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12206), 1, + ACTIONS(11676), 1, aux_sym__immediate_decimal_token3, - ACTIONS(12208), 1, + ACTIONS(11678), 1, aux_sym__immediate_decimal_token4, - STATE(5205), 1, - sym__var, - STATE(7025), 1, + STATE(6600), 1, sym_comment, - STATE(8173), 1, + STATE(7915), 1, + sym__var, + STATE(8459), 1, sym__immediate_decimal, - STATE(8642), 2, + ACTIONS(1882), 2, + sym_identifier, + anon_sym_DASH, + STATE(7151), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [225185] = 14, - ACTIONS(3), 1, + [225062] = 13, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1922), 1, - anon_sym_DASH_DASH, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(12092), 1, + ACTIONS(4911), 1, anon_sym_DOLLAR, - ACTIONS(12094), 1, + ACTIONS(11279), 1, anon_sym_LPAREN2, - ACTIONS(12098), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12100), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(12102), 1, + ACTIONS(11287), 1, aux_sym__immediate_decimal_token4, - ACTIONS(12227), 1, + ACTIONS(11434), 1, anon_sym_DOT, - STATE(7026), 1, + ACTIONS(11436), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11438), 1, + aux_sym__immediate_decimal_token3, + STATE(6601), 1, sym_comment, - STATE(7579), 1, + STATE(7851), 1, sym__var, - STATE(7923), 1, + STATE(8081), 1, sym__immediate_decimal, - ACTIONS(1920), 2, - sym_identifier, - anon_sym_DASH, - STATE(8292), 2, + ACTIONS(2207), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(2209), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(8079), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [225230] = 7, + [225105] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(987), 1, + ACTIONS(2621), 1, anon_sym_DASH, - ACTIONS(12217), 1, - anon_sym_DOT, - STATE(7020), 1, - aux_sym_cell_path_repeat1, - STATE(7027), 1, - sym_comment, - STATE(7117), 1, - sym_path, - ACTIONS(989), 10, - anon_sym_EQ, - anon_sym_SEMI, + ACTIONS(2808), 1, + anon_sym_DASH_DASH, + ACTIONS(3655), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(11658), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(11660), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - [225261] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12229), 1, - aux_sym__immediate_decimal_token2, - STATE(7028), 1, + STATE(4162), 1, + sym__var, + STATE(4583), 1, + sym_block, + STATE(4584), 1, + sym_val_closure, + STATE(6602), 1, sym_comment, - ACTIONS(2547), 3, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(2549), 10, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [225288] = 12, - ACTIONS(3), 1, + STATE(6768), 1, + sym__flag, + STATE(7692), 1, + sym_long_flag_equals_value, + STATE(1477), 2, + sym__blosure, + sym_val_variable, + STATE(8892), 2, + sym_short_flag, + sym_long_flag, + [225150] = 13, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(6253), 1, + ACTIONS(4911), 1, anon_sym_DOLLAR, - ACTIONS(12033), 1, + ACTIONS(11279), 1, anon_sym_LPAREN2, - ACTIONS(12127), 1, + ACTIONS(11287), 1, aux_sym__immediate_decimal_token4, - ACTIONS(12231), 1, + ACTIONS(11434), 1, anon_sym_DOT, - STATE(4486), 1, - sym__var, - STATE(7029), 1, - sym_comment, - STATE(8204), 1, - sym__immediate_decimal, - ACTIONS(12125), 2, + ACTIONS(11436), 1, aux_sym__immediate_decimal_token1, + ACTIONS(11438), 1, aux_sym__immediate_decimal_token3, - STATE(8775), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1922), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [225329] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(12233), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12235), 1, - aux_sym__immediate_decimal_token2, - STATE(7030), 1, + STATE(6603), 1, sym_comment, - ACTIONS(909), 5, + STATE(7851), 1, + sym__var, + STATE(8151), 1, + sym__immediate_decimal, + ACTIONS(1882), 2, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token5, - ACTIONS(911), 7, + ACTIONS(1884), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [225358] = 14, - ACTIONS(3), 1, + STATE(8112), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [225193] = 13, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2004), 1, - anon_sym_DASH_DASH, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - ACTIONS(11755), 1, - anon_sym_LPAREN2, - ACTIONS(12237), 1, + ACTIONS(4911), 1, anon_sym_DOLLAR, - ACTIONS(12239), 1, + ACTIONS(11279), 1, + anon_sym_LPAREN2, + ACTIONS(11287), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11434), 1, anon_sym_DOT, - ACTIONS(12241), 1, + ACTIONS(11436), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12243), 1, + ACTIONS(11438), 1, aux_sym__immediate_decimal_token3, - ACTIONS(12245), 1, - aux_sym__immediate_decimal_token4, - STATE(7031), 1, + STATE(6604), 1, sym_comment, - STATE(8321), 1, + STATE(7851), 1, sym__var, - STATE(8780), 1, + STATE(8105), 1, sym__immediate_decimal, - ACTIONS(2002), 2, - sym_identifier, - anon_sym_DASH, - STATE(7632), 2, + ACTIONS(2146), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(2148), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(8092), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [225403] = 14, + [225236] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1922), 1, - anon_sym_DASH_DASH, - ACTIONS(1934), 1, + ACTIONS(1844), 1, aux_sym_unquoted_token2, - ACTIONS(11755), 1, - anon_sym_LPAREN2, - ACTIONS(12237), 1, + ACTIONS(5735), 1, anon_sym_DOLLAR, - ACTIONS(12239), 1, - anon_sym_DOT, - ACTIONS(12241), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12243), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(12245), 1, + ACTIONS(11537), 1, + anon_sym_LPAREN2, + ACTIONS(11576), 1, aux_sym__immediate_decimal_token4, - STATE(7032), 1, - sym_comment, - STATE(8321), 1, + ACTIONS(11703), 1, + anon_sym_DOT, + STATE(3929), 1, sym__var, - STATE(8610), 1, + STATE(6605), 1, + sym_comment, + STATE(7588), 1, sym__immediate_decimal, - ACTIONS(1920), 2, - sym_identifier, - anon_sym_DASH, - STATE(7586), 2, + ACTIONS(11574), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(8234), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [225448] = 4, + ACTIONS(1840), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [225277] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(7033), 1, + STATE(6606), 1, sym_comment, - ACTIONS(909), 7, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token5, - ACTIONS(911), 7, - ts_builtin_sym_end, - anon_sym_LF, + ACTIONS(936), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [225473] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(959), 1, - sym_cmd_identifier, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - ACTIONS(9249), 1, + aux_sym_command_token1, + ACTIONS(934), 8, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(9253), 1, aux_sym_unquoted_token5, - ACTIONS(12247), 1, - anon_sym_DOT_DOT2, - ACTIONS(12251), 1, - sym_filesize_unit, - ACTIONS(12253), 1, - sym_duration_unit, - STATE(7034), 1, - sym_comment, - STATE(10701), 1, - sym__expr_parenthesized_immediate, - ACTIONS(12249), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(961), 4, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [225514] = 4, + [225302] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(7035), 1, + STATE(6607), 1, sym_comment, - ACTIONS(1113), 3, + ACTIONS(1041), 3, anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(1115), 11, + ACTIONS(1043), 11, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -544839,107 +504075,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [225539] = 6, + [225327] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1840), 1, + anon_sym_DASH_DASH, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(11604), 1, + anon_sym_DOLLAR, + ACTIONS(11606), 1, + anon_sym_LPAREN2, + ACTIONS(11610), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11612), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(11614), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11705), 1, + anon_sym_DOT, + STATE(6608), 1, + sym_comment, + STATE(7135), 1, + sym__var, + STATE(7653), 1, + sym__immediate_decimal, + ACTIONS(1838), 2, + sym_identifier, + anon_sym_DASH, + STATE(7964), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [225372] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12177), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(12255), 1, + ACTIONS(11707), 1, anon_sym_DOT, - STATE(7036), 1, + ACTIONS(11710), 1, + aux_sym__immediate_decimal_token2, + STATE(6609), 1, sym_comment, - ACTIONS(923), 6, + ACTIONS(911), 5, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LF, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token5, - ACTIONS(925), 6, - anon_sym_LF, + ACTIONS(913), 7, + ts_builtin_sym_end, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [225568] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(12258), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12260), 1, - aux_sym__immediate_decimal_token2, - STATE(7037), 1, - sym_comment, - ACTIONS(2439), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, aux_sym_command_token1, - ACTIONS(2437), 8, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_LF2, - aux_sym_unquoted_token2, - [225597] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(7038), 1, - sym_comment, - ACTIONS(1117), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1119), 11, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [225622] = 4, + [225401] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(7039), 1, + STATE(6610), 1, sym_comment, - ACTIONS(911), 6, + ACTIONS(895), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, aux_sym_command_token1, - ACTIONS(909), 8, + ACTIONS(893), 8, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT, - anon_sym_LF2, aux_sym_unquoted_token5, - [225647] = 4, + [225426] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(7040), 1, + STATE(6611), 1, sym_comment, - ACTIONS(919), 6, + ACTIONS(936), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, aux_sym_command_token1, - ACTIONS(917), 8, + ACTIONS(934), 8, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, @@ -544948,590 +504171,658 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_LF2, aux_sym_unquoted_token5, - [225672] = 14, + [225451] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(938), 1, + ACTIONS(11588), 1, + aux_sym__immediate_decimal_token2, + STATE(6612), 1, + sym_comment, + ACTIONS(2229), 3, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + ACTIONS(2231), 10, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - ACTIONS(9701), 1, - aux_sym_unquoted_token4, - ACTIONS(11755), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [225478] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1840), 1, + anon_sym_DASH_DASH, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(11229), 1, anon_sym_LPAREN2, - ACTIONS(12237), 1, + ACTIONS(11670), 1, anon_sym_DOLLAR, - ACTIONS(12239), 1, + ACTIONS(11672), 1, anon_sym_DOT, - ACTIONS(12241), 1, + ACTIONS(11674), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12243), 1, + ACTIONS(11676), 1, aux_sym__immediate_decimal_token3, - ACTIONS(12245), 1, + ACTIONS(11678), 1, aux_sym__immediate_decimal_token4, - STATE(7041), 1, + STATE(6613), 1, sym_comment, - STATE(8321), 1, + STATE(7915), 1, sym__var, - STATE(8805), 1, + STATE(8394), 1, sym__immediate_decimal, - ACTIONS(936), 2, + ACTIONS(1838), 2, sym_identifier, anon_sym_DASH, - STATE(7556), 2, + STATE(7168), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [225717] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12139), 1, - aux_sym__immediate_decimal_token2, - STATE(7042), 1, - sym_comment, - ACTIONS(909), 6, - sym_cmd_identifier, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token5, - ACTIONS(911), 7, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [225744] = 14, + [225523] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1922), 1, - anon_sym_DASH_DASH, - ACTIONS(1934), 1, + ACTIONS(1838), 1, + anon_sym_DASH, + ACTIONS(1844), 1, aux_sym_unquoted_token2, - ACTIONS(12092), 1, + ACTIONS(11535), 1, anon_sym_DOLLAR, - ACTIONS(12094), 1, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(12098), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12100), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(12102), 1, + ACTIONS(11543), 1, aux_sym__immediate_decimal_token4, - ACTIONS(12262), 1, + ACTIONS(11712), 1, anon_sym_DOT, - STATE(7043), 1, + STATE(6614), 1, sym_comment, - STATE(7579), 1, + STATE(7203), 1, sym__var, - STATE(8103), 1, + STATE(7267), 1, sym__immediate_decimal, - ACTIONS(1920), 2, - sym_identifier, - anon_sym_DASH, - STATE(8292), 2, + ACTIONS(1840), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(11541), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7848), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [225789] = 14, + [225566] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1922), 1, - anon_sym_DASH_DASH, - ACTIONS(1934), 1, + ACTIONS(1838), 1, + anon_sym_DASH, + ACTIONS(1844), 1, aux_sym_unquoted_token2, - ACTIONS(11755), 1, - anon_sym_LPAREN2, - ACTIONS(12237), 1, + ACTIONS(5725), 1, anon_sym_DOLLAR, - ACTIONS(12239), 1, + ACTIONS(11537), 1, + anon_sym_LPAREN2, + ACTIONS(11682), 1, anon_sym_DOT, - ACTIONS(12241), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12243), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(12245), 1, + ACTIONS(11686), 1, aux_sym__immediate_decimal_token4, - STATE(7044), 1, + STATE(6615), 1, sym_comment, - STATE(8321), 1, + STATE(7000), 1, sym__var, - STATE(9094), 1, + STATE(8241), 1, sym__immediate_decimal, - ACTIONS(1920), 2, - sym_identifier, - anon_sym_DASH, - STATE(7586), 2, + ACTIONS(1840), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(11684), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7403), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [225834] = 13, - ACTIONS(35), 1, - anon_sym_DOLLAR, - ACTIONS(113), 1, + [225609] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11795), 1, + ACTIONS(1838), 1, + anon_sym_DASH, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(11535), 1, + anon_sym_DOLLAR, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(11803), 1, + ACTIONS(11543), 1, aux_sym__immediate_decimal_token4, - ACTIONS(11943), 1, + ACTIONS(11714), 1, anon_sym_DOT, - ACTIONS(11945), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11947), 1, - aux_sym__immediate_decimal_token3, - STATE(7045), 1, + STATE(6616), 1, sym_comment, - STATE(7845), 1, + STATE(7203), 1, sym__var, - STATE(8268), 1, + STATE(7538), 1, sym__immediate_decimal, - ACTIONS(2387), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(2389), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8266), 2, + ACTIONS(1840), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(11541), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7848), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [225877] = 12, + [225652] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_LF, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - ACTIONS(9200), 1, + STATE(6617), 1, + sym_comment, + ACTIONS(901), 7, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(9206), 1, aux_sym_unquoted_token5, - ACTIONS(12264), 1, - anon_sym_DOT_DOT2, - ACTIONS(12268), 1, - sym_filesize_unit, - ACTIONS(12270), 1, - sym_duration_unit, - STATE(7046), 1, - sym_comment, - STATE(10697), 1, - sym__expr_parenthesized_immediate, - ACTIONS(12266), 2, + ACTIONS(903), 7, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(959), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [225918] = 14, + sym_filesize_unit, + sym_duration_unit, + [225677] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2694), 1, - anon_sym_DASH, - ACTIONS(2744), 1, + ACTIONS(1840), 1, anon_sym_DASH_DASH, - ACTIONS(3880), 1, - anon_sym_COLON, - ACTIONS(12179), 1, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(11229), 1, + anon_sym_LPAREN2, + ACTIONS(11670), 1, anon_sym_DOLLAR, - ACTIONS(12181), 1, - anon_sym_LBRACE, - STATE(4616), 1, - sym__var, - STATE(5084), 1, - sym_block, - STATE(5126), 1, - sym_val_closure, - STATE(7047), 1, + ACTIONS(11672), 1, + anon_sym_DOT, + ACTIONS(11674), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11676), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(11678), 1, + aux_sym__immediate_decimal_token4, + STATE(6618), 1, sym_comment, - STATE(7150), 1, - sym__flag, - STATE(8074), 1, - sym_long_flag_equals_value, - STATE(1896), 2, - sym__blosure, + STATE(7915), 1, + sym__var, + STATE(8235), 1, + sym__immediate_decimal, + ACTIONS(1838), 2, + sym_identifier, + anon_sym_DASH, + STATE(7168), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - STATE(9344), 2, - sym_short_flag, - sym_long_flag, - [225963] = 13, - ACTIONS(113), 1, + [225722] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5155), 1, + ACTIONS(1838), 1, + anon_sym_DASH, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(5725), 1, anon_sym_DOLLAR, - ACTIONS(11795), 1, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(11803), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(11949), 1, + ACTIONS(11682), 1, anon_sym_DOT, - ACTIONS(11951), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11953), 1, - aux_sym__immediate_decimal_token3, - STATE(7048), 1, + ACTIONS(11686), 1, + aux_sym__immediate_decimal_token4, + STATE(6619), 1, sym_comment, - STATE(8434), 1, + STATE(7000), 1, sym__var, - STATE(8562), 1, + STATE(7849), 1, sym__immediate_decimal, - ACTIONS(2349), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(2351), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8555), 2, + ACTIONS(1840), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(11684), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7403), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [226006] = 13, - ACTIONS(113), 1, + [225765] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5155), 1, + ACTIONS(1882), 1, + anon_sym_DASH, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(5725), 1, anon_sym_DOLLAR, - ACTIONS(11795), 1, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(11803), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(11949), 1, + ACTIONS(11682), 1, anon_sym_DOT, - ACTIONS(11951), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11953), 1, - aux_sym__immediate_decimal_token3, - STATE(7049), 1, + ACTIONS(11686), 1, + aux_sym__immediate_decimal_token4, + STATE(6620), 1, sym_comment, - STATE(8434), 1, + STATE(7000), 1, sym__var, - STATE(8570), 1, + STATE(8285), 1, sym__immediate_decimal, - ACTIONS(2359), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(2361), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8565), 2, + ACTIONS(1884), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(11684), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7172), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [226049] = 13, - ACTIONS(113), 1, + [225808] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5155), 1, + ACTIONS(1882), 1, + anon_sym_DASH, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(5725), 1, anon_sym_DOLLAR, - ACTIONS(11795), 1, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(11803), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(11949), 1, + ACTIONS(11682), 1, anon_sym_DOT, - ACTIONS(11951), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11953), 1, - aux_sym__immediate_decimal_token3, - STATE(7050), 1, + ACTIONS(11686), 1, + aux_sym__immediate_decimal_token4, + STATE(6621), 1, sym_comment, - STATE(8434), 1, + STATE(7000), 1, sym__var, - STATE(8592), 1, + STATE(7868), 1, sym__immediate_decimal, - ACTIONS(2383), 2, + ACTIONS(1884), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(11684), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7172), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [225851] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(6622), 1, + sym_comment, + ACTIONS(893), 7, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2385), 2, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token5, + ACTIONS(895), 7, ts_builtin_sym_end, anon_sym_LF, - STATE(8571), 2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [225876] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(938), 1, + sym_cmd_identifier, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + ACTIONS(8816), 1, + anon_sym_DOT, + ACTIONS(8820), 1, + aux_sym_unquoted_token5, + ACTIONS(11716), 1, + anon_sym_DOT_DOT2, + ACTIONS(11720), 1, + sym_filesize_unit, + ACTIONS(11722), 1, + sym_duration_unit, + STATE(6623), 1, + sym_comment, + STATE(10092), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - [226092] = 13, + ACTIONS(11718), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(940), 4, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [225917] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5155), 1, - anon_sym_DOLLAR, - ACTIONS(11795), 1, + ACTIONS(11724), 1, + aux_sym__immediate_decimal_token2, + STATE(6624), 1, + sym_comment, + ACTIONS(903), 6, + anon_sym_LF, anon_sym_LPAREN2, - ACTIONS(11803), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(11949), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(901), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(11951), 1, + aux_sym_unquoted_token5, + [225944] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1840), 1, + anon_sym_DASH_DASH, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(11604), 1, + anon_sym_DOLLAR, + ACTIONS(11606), 1, + anon_sym_LPAREN2, + ACTIONS(11610), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11953), 1, + ACTIONS(11612), 1, aux_sym__immediate_decimal_token3, - STATE(7051), 1, + ACTIONS(11614), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11726), 1, + anon_sym_DOT, + STATE(6625), 1, sym_comment, - STATE(8434), 1, + STATE(7135), 1, sym__var, - STATE(8596), 1, + STATE(7425), 1, sym__immediate_decimal, - ACTIONS(2002), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(2004), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8594), 2, + ACTIONS(1838), 2, + sym_identifier, + anon_sym_DASH, + STATE(7964), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [226135] = 13, + [225989] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2002), 1, + ACTIONS(920), 1, anon_sym_DASH, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - ACTIONS(6247), 1, + ACTIONS(5725), 1, anon_sym_DOLLAR, - ACTIONS(12033), 1, + ACTIONS(8820), 1, + aux_sym_unquoted_token4, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(12191), 1, + ACTIONS(11682), 1, anon_sym_DOT, - ACTIONS(12195), 1, + ACTIONS(11686), 1, aux_sym__immediate_decimal_token4, - STATE(7052), 1, + STATE(6626), 1, sym_comment, - STATE(7440), 1, + STATE(7000), 1, sym__var, - STATE(8758), 1, + STATE(8172), 1, sym__immediate_decimal, - ACTIONS(2004), 2, + ACTIONS(922), 2, anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(12193), 2, + ACTIONS(11684), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7753), 2, + STATE(7175), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [226178] = 13, + [226032] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5155), 1, + ACTIONS(4911), 1, anon_sym_DOLLAR, - ACTIONS(11795), 1, + ACTIONS(11279), 1, anon_sym_LPAREN2, - ACTIONS(11803), 1, + ACTIONS(11287), 1, aux_sym__immediate_decimal_token4, - ACTIONS(11949), 1, + ACTIONS(11434), 1, anon_sym_DOT, - ACTIONS(11951), 1, + ACTIONS(11436), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11953), 1, + ACTIONS(11438), 1, aux_sym__immediate_decimal_token3, - STATE(7053), 1, + STATE(6627), 1, sym_comment, - STATE(8434), 1, + STATE(7851), 1, sym__var, - STATE(8526), 1, + STATE(8111), 1, sym__immediate_decimal, - ACTIONS(2387), 2, + ACTIONS(1838), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2389), 2, + ACTIONS(1840), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(8518), 2, + STATE(8106), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [226221] = 6, - ACTIONS(113), 1, + [226075] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12272), 1, + ACTIONS(11728), 1, anon_sym_DOT, - ACTIONS(12275), 1, + ACTIONS(11731), 1, aux_sym__immediate_decimal_token2, - STATE(7054), 1, + STATE(6628), 1, sym_comment, - ACTIONS(923), 5, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, + ACTIONS(911), 5, + sym_cmd_identifier, anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, aux_sym_unquoted_token5, - ACTIONS(925), 7, - ts_builtin_sym_end, + ACTIONS(913), 7, + anon_sym_DASH_DASH, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_command_token1, - [226250] = 5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [226104] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12275), 1, + ACTIONS(11733), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11735), 1, aux_sym__immediate_decimal_token2, - STATE(7055), 1, + STATE(6629), 1, sym_comment, - ACTIONS(923), 6, + ACTIONS(893), 5, anon_sym_SEMI, - anon_sym_LF, anon_sym_PIPE, anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token5, - ACTIONS(925), 7, + ACTIONS(895), 7, ts_builtin_sym_end, + anon_sym_LF, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - aux_sym_command_token1, - [226277] = 13, + [226133] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(936), 1, - anon_sym_DASH, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(9253), 1, + ACTIONS(922), 1, + anon_sym_DASH_DASH, + ACTIONS(9231), 1, aux_sym_unquoted_token4, - ACTIONS(12033), 1, + ACTIONS(11229), 1, anon_sym_LPAREN2, - ACTIONS(12191), 1, + ACTIONS(11670), 1, + anon_sym_DOLLAR, + ACTIONS(11672), 1, anon_sym_DOT, - ACTIONS(12195), 1, + ACTIONS(11674), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11676), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(11678), 1, aux_sym__immediate_decimal_token4, - STATE(7056), 1, + STATE(6630), 1, sym_comment, - STATE(7440), 1, + STATE(7915), 1, sym__var, - STATE(8553), 1, + STATE(8324), 1, sym__immediate_decimal, - ACTIONS(938), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(12193), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7645), 2, + ACTIONS(920), 2, + sym_identifier, + anon_sym_DASH, + STATE(7130), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [226320] = 13, - ACTIONS(3), 1, + [226178] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(6253), 1, - anon_sym_DOLLAR, - ACTIONS(9820), 1, - aux_sym_unquoted_token3, - ACTIONS(9822), 1, - aux_sym_unquoted_token5, - ACTIONS(12033), 1, + ACTIONS(11737), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11739), 1, + aux_sym__immediate_decimal_token2, + STATE(6631), 1, + sym_comment, + ACTIONS(2231), 5, + ts_builtin_sym_end, + anon_sym_LF, anon_sym_LPAREN2, - ACTIONS(12277), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2229), 7, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(12281), 1, - aux_sym__immediate_decimal_token4, - STATE(4486), 1, - sym__var, - STATE(7057), 1, + aux_sym_unquoted_token2, + [226207] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(11741), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11743), 1, + aux_sym__immediate_decimal_token2, + STATE(6632), 1, sym_comment, - STATE(8483), 1, - sym__immediate_decimal, - ACTIONS(938), 2, + ACTIONS(2231), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_command_token1, + ACTIONS(2229), 8, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(12279), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(9434), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [226363] = 4, - ACTIONS(113), 1, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_LF2, + aux_sym_unquoted_token2, + [226236] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7058), 1, + ACTIONS(11745), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11747), 1, + aux_sym__immediate_decimal_token2, + STATE(6633), 1, sym_comment, - ACTIONS(917), 7, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, + ACTIONS(893), 4, anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token5, - ACTIONS(919), 7, - ts_builtin_sym_end, - anon_sym_LF, + ACTIONS(895), 8, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [226388] = 13, - ACTIONS(3), 1, + [226265] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1920), 1, - anon_sym_DASH, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(12031), 1, - anon_sym_DOLLAR, - ACTIONS(12033), 1, + STATE(6634), 1, + sym_comment, + ACTIONS(903), 6, anon_sym_LPAREN2, - ACTIONS(12039), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12283), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_command_token1, + ACTIONS(901), 8, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOT_DOT2, anon_sym_DOT, - STATE(7059), 1, - sym_comment, - STATE(7633), 1, - sym__var, - STATE(7934), 1, - sym__immediate_decimal, - ACTIONS(1922), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(12037), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(8415), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [226431] = 13, + anon_sym_LF2, + aux_sym_unquoted_token5, + [226290] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(936), 1, + ACTIONS(1010), 1, anon_sym_DASH, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(9253), 1, - aux_sym_unquoted_token4, - ACTIONS(12033), 1, - anon_sym_LPAREN2, - ACTIONS(12191), 1, + ACTIONS(11698), 1, anon_sym_DOT, - ACTIONS(12195), 1, - aux_sym__immediate_decimal_token4, - STATE(7060), 1, + STATE(6598), 1, + aux_sym_cell_path_repeat1, + STATE(6635), 1, sym_comment, - STATE(7440), 1, - sym__var, - STATE(8359), 1, - sym__immediate_decimal, - ACTIONS(938), 2, + STATE(6727), 1, + sym_path, + ACTIONS(1012), 10, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(12193), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7645), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [226474] = 5, + anon_sym_RBRACE, + [226321] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12025), 1, + ACTIONS(11749), 1, aux_sym__immediate_decimal_token2, - STATE(7061), 1, + STATE(6636), 1, sym_comment, - ACTIONS(2439), 4, + ACTIONS(2364), 4, anon_sym_LF, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2437), 9, + ACTIONS(2362), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -545541,51 +504832,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token2, - [226501] = 13, + [226348] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1920), 1, - anon_sym_DASH, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12033), 1, - anon_sym_LPAREN2, - ACTIONS(12191), 1, + ACTIONS(11564), 1, + aux_sym__immediate_decimal_token2, + STATE(6637), 1, + sym_comment, + ACTIONS(893), 6, + sym_cmd_identifier, + anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(12195), 1, - aux_sym__immediate_decimal_token4, - STATE(7062), 1, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + ACTIONS(895), 7, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [226375] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11731), 1, + aux_sym__immediate_decimal_token2, + STATE(6638), 1, sym_comment, - STATE(7440), 1, - sym__var, - STATE(8657), 1, - sym__immediate_decimal, - ACTIONS(1922), 2, + ACTIONS(911), 6, + sym_cmd_identifier, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + ACTIONS(913), 7, anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(12193), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7671), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [226544] = 5, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [226402] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12285), 1, + ACTIONS(11751), 1, aux_sym__immediate_decimal_token2, - STATE(7063), 1, + STATE(6639), 1, sym_comment, - ACTIONS(917), 6, + ACTIONS(901), 6, anon_sym_SEMI, anon_sym_LF, anon_sym_PIPE, anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token5, - ACTIONS(919), 7, + ACTIONS(903), 7, ts_builtin_sym_end, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, @@ -545593,1004 +504898,665 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_command_token1, - [226571] = 14, - ACTIONS(3), 1, + [226429] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(938), 1, - anon_sym_DASH_DASH, - ACTIONS(9701), 1, - aux_sym_unquoted_token4, - ACTIONS(11755), 1, + ACTIONS(11710), 1, + aux_sym__immediate_decimal_token2, + STATE(6640), 1, + sym_comment, + ACTIONS(911), 6, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token5, + ACTIONS(913), 7, + ts_builtin_sym_end, anon_sym_LPAREN2, - ACTIONS(12237), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_command_token1, + [226456] = 13, + ACTIONS(35), 1, anon_sym_DOLLAR, - ACTIONS(12239), 1, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(11279), 1, + anon_sym_LPAREN2, + ACTIONS(11287), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11379), 1, anon_sym_DOT, - ACTIONS(12241), 1, + ACTIONS(11381), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12243), 1, + ACTIONS(11383), 1, aux_sym__immediate_decimal_token3, - ACTIONS(12245), 1, - aux_sym__immediate_decimal_token4, - STATE(7064), 1, + STATE(6641), 1, sym_comment, - STATE(8321), 1, + STATE(7390), 1, sym__var, - STATE(9198), 1, + STATE(7900), 1, sym__immediate_decimal, - ACTIONS(936), 2, - sym_identifier, - anon_sym_DASH, - STATE(7556), 2, + ACTIONS(1838), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(1840), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(7899), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [226616] = 4, + [226499] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(985), 1, + anon_sym_DASH, + ACTIONS(11753), 1, + anon_sym_DOT, + STATE(6727), 1, + sym_path, + STATE(6642), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(987), 10, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [226528] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(7065), 1, + ACTIONS(11531), 1, + aux_sym__immediate_decimal_token2, + STATE(6643), 1, sym_comment, - ACTIONS(950), 7, + ACTIONS(893), 6, anon_sym_SEMI, + anon_sym_LF, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token5, - ACTIONS(952), 7, + ACTIONS(895), 7, ts_builtin_sym_end, - anon_sym_LF, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [226641] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(12033), 1, - anon_sym_LPAREN2, - ACTIONS(12162), 1, - anon_sym_DOLLAR, - ACTIONS(12164), 1, - anon_sym_DOT, - ACTIONS(12168), 1, - aux_sym__immediate_decimal_token4, - STATE(4901), 1, - sym__var, - STATE(7066), 1, - sym_comment, - STATE(8861), 1, - sym__immediate_decimal, - ACTIONS(12166), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7671), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1922), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [226682] = 4, + aux_sym_command_token1, + [226555] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(7067), 1, + ACTIONS(11756), 1, + aux_sym__immediate_decimal_token2, + STATE(6644), 1, sym_comment, - ACTIONS(952), 6, + ACTIONS(913), 6, + anon_sym_LF, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - aux_sym_command_token1, - ACTIONS(950), 8, + ACTIONS(911), 7, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token5, - [226707] = 5, - ACTIONS(3), 1, + [226582] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12145), 1, - aux_sym__immediate_decimal_token2, - STATE(7068), 1, + STATE(6645), 1, sym_comment, - ACTIONS(2581), 3, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(2583), 10, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(934), 7, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [226734] = 15, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1942), 1, - anon_sym_DOLLAR, - ACTIONS(6772), 1, - anon_sym_LPAREN2, - ACTIONS(7571), 1, - anon_sym_RBRACK, - ACTIONS(7585), 1, - sym__entry_separator, - ACTIONS(7587), 1, - aux_sym__unquoted_in_list_token4, - ACTIONS(7589), 1, - aux_sym__unquoted_in_list_token6, - ACTIONS(12287), 1, - anon_sym_DOT, - ACTIONS(12289), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12291), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(12293), 1, - aux_sym__immediate_decimal_token4, - STATE(5205), 1, - sym__var, - STATE(7069), 1, - sym_comment, - STATE(8163), 1, - sym__immediate_decimal, - STATE(8642), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [226781] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12200), 1, - aux_sym__immediate_decimal_token2, - STATE(7070), 1, - sym_comment, - ACTIONS(923), 6, - sym_cmd_identifier, + anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, aux_sym_unquoted_token5, - ACTIONS(925), 7, - anon_sym_DASH_DASH, + ACTIONS(936), 7, + ts_builtin_sym_end, + anon_sym_LF, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [226808] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12160), 1, - aux_sym__immediate_decimal_token2, - STATE(7071), 1, - sym_comment, - ACTIONS(2437), 3, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(2439), 10, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [226835] = 6, + sym_filesize_unit, + sym_duration_unit, + [226607] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12295), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12297), 1, + ACTIONS(11570), 1, aux_sym__immediate_decimal_token2, - STATE(7072), 1, + STATE(6646), 1, sym_comment, - ACTIONS(2439), 5, - ts_builtin_sym_end, + ACTIONS(2231), 4, anon_sym_LF, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2437), 7, + ACTIONS(2229), 9, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token2, - [226864] = 13, + [226634] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1920), 1, - anon_sym_DASH, - ACTIONS(1934), 1, + ACTIONS(1844), 1, aux_sym_unquoted_token2, - ACTIONS(12031), 1, - anon_sym_DOLLAR, - ACTIONS(12033), 1, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(12039), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12299), 1, - anon_sym_DOT, - STATE(7073), 1, - sym_comment, - STATE(7633), 1, - sym__var, - STATE(7830), 1, - sym__immediate_decimal, - ACTIONS(1922), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(12037), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(8415), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [226907] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1920), 1, - anon_sym_DASH, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(6247), 1, + ACTIONS(11650), 1, anon_sym_DOLLAR, - ACTIONS(12033), 1, - anon_sym_LPAREN2, - ACTIONS(12191), 1, + ACTIONS(11652), 1, anon_sym_DOT, - ACTIONS(12195), 1, + ACTIONS(11656), 1, aux_sym__immediate_decimal_token4, - STATE(7074), 1, - sym_comment, - STATE(7440), 1, + STATE(4470), 1, sym__var, - STATE(8481), 1, + STATE(6647), 1, + sym_comment, + STATE(8693), 1, sym__immediate_decimal, - ACTIONS(1922), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(12193), 2, + ACTIONS(11654), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7671), 2, + STATE(7403), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [226950] = 14, + ACTIONS(1840), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [226675] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2004), 1, - anon_sym_DASH_DASH, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - ACTIONS(11755), 1, + ACTIONS(9209), 1, + aux_sym_unquoted_token4, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(12237), 1, + ACTIONS(11650), 1, anon_sym_DOLLAR, - ACTIONS(12239), 1, + ACTIONS(11652), 1, anon_sym_DOT, - ACTIONS(12241), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12243), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(12245), 1, + ACTIONS(11656), 1, aux_sym__immediate_decimal_token4, - STATE(7075), 1, - sym_comment, - STATE(8321), 1, + STATE(4470), 1, sym__var, - STATE(9231), 1, + STATE(6648), 1, + sym_comment, + STATE(8986), 1, sym__immediate_decimal, - ACTIONS(2002), 2, - sym_identifier, - anon_sym_DASH, - STATE(7632), 2, + ACTIONS(11654), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7175), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [226995] = 13, - ACTIONS(35), 1, - anon_sym_DOLLAR, + ACTIONS(922), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [226716] = 12, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(11795), 1, + ACTIONS(940), 1, + anon_sym_LF, + ACTIONS(2187), 1, anon_sym_LPAREN2, - ACTIONS(11803), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(11945), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11947), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(11955), 1, + ACTIONS(8713), 1, + aux_sym_unquoted_token5, + ACTIONS(8844), 1, anon_sym_DOT, - STATE(7076), 1, + ACTIONS(11758), 1, + anon_sym_DOT_DOT2, + ACTIONS(11762), 1, + sym_filesize_unit, + ACTIONS(11764), 1, + sym_duration_unit, + STATE(6649), 1, sym_comment, - STATE(7845), 1, - sym__var, - STATE(8311), 1, - sym__immediate_decimal, - ACTIONS(1920), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(1922), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8302), 2, + STATE(10027), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - [227038] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(7077), 1, - sym_comment, - ACTIONS(952), 6, - anon_sym_LPAREN2, + ACTIONS(11760), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_command_token1, - ACTIONS(950), 8, + ACTIONS(938), 4, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_LF2, - aux_sym_unquoted_token5, - [227063] = 11, + anon_sym_RBRACE, + [226757] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12303), 1, + ACTIONS(11768), 1, anon_sym_EQ, - ACTIONS(12305), 1, + ACTIONS(11770), 1, anon_sym_COLON, - ACTIONS(12307), 1, + ACTIONS(11772), 1, anon_sym_COMMA, - ACTIONS(12309), 1, + ACTIONS(11774), 1, anon_sym_LPAREN, - ACTIONS(12311), 1, + ACTIONS(11776), 1, anon_sym_DASH, - STATE(7078), 1, + STATE(6650), 1, sym_comment, - STATE(7315), 1, + STATE(6893), 1, sym_flag_capsule, - STATE(7386), 1, + STATE(6965), 1, sym_param_value, - STATE(7847), 1, + STATE(7397), 1, sym_param_type, - ACTIONS(12301), 6, + ACTIONS(11766), 6, sym_identifier, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [227102] = 14, + [226796] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12313), 1, + ACTIONS(11778), 1, sym_identifier, - ACTIONS(12318), 1, + ACTIONS(11783), 1, anon_sym_DOLLAR, - ACTIONS(12321), 1, + ACTIONS(11786), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12324), 1, + ACTIONS(11789), 1, anon_sym_DASH_DASH, - ACTIONS(12327), 1, + ACTIONS(11792), 1, anon_sym_DASH, - STATE(7078), 1, + STATE(6650), 1, sym_param_long_flag, - STATE(7350), 1, + STATE(6917), 1, sym__param_name, - STATE(7383), 1, + STATE(6934), 1, + sym_param_short_flag, + STATE(7066), 1, sym_param_rest, - STATE(7454), 1, + STATE(7081), 1, sym_param_opt, - STATE(7466), 1, - sym_param_short_flag, - STATE(8149), 1, + STATE(7577), 1, sym_parameter, - ACTIONS(12316), 2, + ACTIONS(11781), 2, anon_sym_RBRACK, anon_sym_RPAREN, - STATE(7079), 2, + STATE(6651), 2, sym_comment, aux_sym_parameter_parens_repeat1, - [227147] = 5, - ACTIONS(3), 1, + [226841] = 12, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12330), 1, - aux_sym__immediate_decimal_token2, - STATE(7080), 1, - sym_comment, - ACTIONS(917), 6, - sym_cmd_identifier, - anon_sym_DOT_DOT2, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + ACTIONS(8791), 1, anon_sym_DOT, + ACTIONS(8799), 1, + aux_sym_unquoted_token5, + ACTIONS(11795), 1, + anon_sym_DOT_DOT2, + ACTIONS(11799), 1, sym_filesize_unit, + ACTIONS(11801), 1, sym_duration_unit, - aux_sym_unquoted_token5, - ACTIONS(919), 7, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, + STATE(6652), 1, + sym_comment, + STATE(10008), 1, + sym__expr_parenthesized_immediate, + ACTIONS(940), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(11797), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [227174] = 4, + ACTIONS(938), 3, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, + [226882] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(7081), 1, + ACTIONS(11756), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(11803), 1, + anon_sym_DOT, + STATE(6653), 1, sym_comment, - ACTIONS(917), 6, + ACTIONS(911), 6, anon_sym_SEMI, - anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_DOT, aux_sym_unquoted_token5, - ACTIONS(919), 7, - ts_builtin_sym_end, + ACTIONS(913), 6, + anon_sym_LF, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - aux_sym_command_token1, - [227198] = 4, + [226911] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(7082), 1, - sym_comment, - ACTIONS(3505), 2, + ACTIONS(1024), 1, anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(3507), 11, - sym_identifier, + ACTIONS(11696), 1, + anon_sym_QMARK2, + STATE(6654), 1, + sym_comment, + ACTIONS(1026), 12, + anon_sym_EQ, + anon_sym_SEMI, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [227222] = 14, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1920), 1, - anon_sym_RBRACK, - ACTIONS(1922), 1, - sym__entry_separator, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(1942), 1, - anon_sym_DOLLAR, - ACTIONS(6772), 1, - anon_sym_LPAREN2, - ACTIONS(12204), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12206), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(12208), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12332), 1, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, - STATE(5205), 1, - sym__var, - STATE(7083), 1, - sym_comment, - STATE(8299), 1, - sym__immediate_decimal, - STATE(8668), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [227266] = 14, + [226938] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12313), 1, + ACTIONS(3644), 1, + anon_sym_DASH, + STATE(6655), 1, + sym_comment, + ACTIONS(3646), 12, sym_identifier, - ACTIONS(12316), 1, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(12318), 1, anon_sym_DOLLAR, - ACTIONS(12321), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12324), 1, anon_sym_DASH_DASH, - ACTIONS(12327), 1, - anon_sym_DASH, - STATE(7103), 1, - sym_param_long_flag, - STATE(7372), 1, - sym__param_name, - STATE(7383), 1, - sym_param_rest, - STATE(7454), 1, - sym_param_opt, - STATE(7466), 1, - sym_param_short_flag, - STATE(8149), 1, - sym_parameter, - STATE(7084), 2, - sym_comment, - aux_sym_parameter_parens_repeat1, - [227310] = 5, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [226962] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12334), 1, - aux_sym__immediate_decimal_token2, - STATE(7085), 1, + STATE(6656), 1, sym_comment, - ACTIONS(2549), 5, - ts_builtin_sym_end, + ACTIONS(936), 6, anon_sym_LF, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2547), 7, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(934), 7, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, + anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT, - aux_sym_unquoted_token2, - [227336] = 14, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1920), 1, - anon_sym_RBRACK, - ACTIONS(1922), 1, - sym__entry_separator, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(5097), 1, - anon_sym_DOLLAR, - ACTIONS(6772), 1, - anon_sym_LPAREN2, - ACTIONS(12336), 1, - anon_sym_DOT, - ACTIONS(12338), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12340), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(12342), 1, - aux_sym__immediate_decimal_token4, - STATE(5803), 1, - sym__var, - STATE(7086), 1, - sym_comment, - STATE(10200), 1, - sym__immediate_decimal, - STATE(4055), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [227380] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6253), 1, - anon_sym_DOLLAR, - ACTIONS(12033), 1, - anon_sym_LPAREN2, - ACTIONS(12127), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12344), 1, - anon_sym_DOT, - STATE(4486), 1, - sym__var, - STATE(7087), 1, - sym_comment, - STATE(8774), 1, - sym__immediate_decimal, - ACTIONS(12346), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(8773), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(2389), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [227418] = 11, + aux_sym_unquoted_token5, + [226986] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12033), 1, - anon_sym_LPAREN2, - ACTIONS(12127), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12162), 1, - anon_sym_DOLLAR, - ACTIONS(12348), 1, - anon_sym_DOT, - STATE(4901), 1, - sym__var, - STATE(7088), 1, - sym_comment, - STATE(7637), 1, - sym__immediate_decimal, - ACTIONS(12350), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7592), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(2389), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [227456] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(12352), 1, - aux_sym__immediate_decimal_token2, - STATE(7089), 1, + ACTIONS(3691), 1, + anon_sym_DASH, + ACTIONS(11806), 1, + anon_sym_DOT_DOT2, + STATE(6657), 1, sym_comment, - ACTIONS(2583), 4, - anon_sym_LPAREN2, + ACTIONS(11808), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - ACTIONS(2581), 8, - anon_sym_SEMI, - anon_sym_LF, + ACTIONS(3693), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_LF2, - aux_sym_unquoted_token2, - [227482] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12033), 1, - anon_sym_LPAREN2, - ACTIONS(12127), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12162), 1, anon_sym_DOLLAR, - ACTIONS(12348), 1, - anon_sym_DOT, - STATE(4901), 1, - sym__var, - STATE(7090), 1, - sym_comment, - STATE(7736), 1, - sym__immediate_decimal, - ACTIONS(12350), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7735), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(2351), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [227520] = 11, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [227014] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12033), 1, - anon_sym_LPAREN2, - ACTIONS(12127), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12162), 1, + ACTIONS(11810), 1, + sym_identifier, + ACTIONS(11812), 1, + anon_sym_RBRACK, + ACTIONS(11814), 1, anon_sym_DOLLAR, - ACTIONS(12348), 1, - anon_sym_DOT, - STATE(4901), 1, - sym__var, - STATE(7091), 1, + ACTIONS(11816), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11818), 1, + anon_sym_DASH_DASH, + ACTIONS(11820), 1, + anon_sym_DASH, + STATE(6650), 1, + sym_param_long_flag, + STATE(6658), 1, sym_comment, - STATE(7743), 1, - sym__immediate_decimal, - ACTIONS(12350), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7737), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(2361), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [227558] = 11, + STATE(6667), 1, + aux_sym_parameter_parens_repeat1, + STATE(6917), 1, + sym__param_name, + STATE(6934), 1, + sym_param_short_flag, + STATE(7066), 1, + sym_param_rest, + STATE(7081), 1, + sym_param_opt, + STATE(7577), 1, + sym_parameter, + [227060] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12033), 1, - anon_sym_LPAREN2, - ACTIONS(12127), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12162), 1, - anon_sym_DOLLAR, - ACTIONS(12348), 1, - anon_sym_DOT, - STATE(4901), 1, - sym__var, - STATE(7092), 1, + ACTIONS(3699), 1, + anon_sym_DASH, + ACTIONS(11822), 1, + anon_sym_DOT_DOT2, + STATE(6659), 1, sym_comment, - STATE(7748), 1, - sym__immediate_decimal, - ACTIONS(12350), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7744), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(2385), 3, + ACTIONS(11824), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3701), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [227596] = 15, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [227088] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12354), 1, + ACTIONS(11810), 1, sym_identifier, - ACTIONS(12356), 1, - anon_sym_PIPE, - ACTIONS(12358), 1, + ACTIONS(11814), 1, anon_sym_DOLLAR, - ACTIONS(12360), 1, + ACTIONS(11816), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12362), 1, + ACTIONS(11818), 1, anon_sym_DASH_DASH, - ACTIONS(12364), 1, + ACTIONS(11820), 1, anon_sym_DASH, - STATE(7093), 1, - sym_comment, - STATE(7103), 1, + ACTIONS(11826), 1, + anon_sym_RPAREN, + STATE(6650), 1, sym_param_long_flag, - STATE(7111), 1, + STATE(6660), 1, + sym_comment, + STATE(6668), 1, aux_sym_parameter_parens_repeat1, - STATE(7372), 1, + STATE(6917), 1, sym__param_name, - STATE(7383), 1, + STATE(6934), 1, + sym_param_short_flag, + STATE(7066), 1, sym_param_rest, - STATE(7454), 1, + STATE(7081), 1, sym_param_opt, - STATE(7466), 1, - sym_param_short_flag, - STATE(8149), 1, + STATE(7577), 1, sym_parameter, - [227642] = 4, + [227134] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(7094), 1, - sym_comment, - ACTIONS(4000), 2, + ACTIONS(3711), 1, anon_sym_DASH, + ACTIONS(11828), 1, anon_sym_DOT_DOT2, - ACTIONS(4002), 11, + STATE(6661), 1, + sym_comment, + ACTIONS(11830), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3713), 9, + sym_identifier, + anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [227666] = 13, + [227162] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2694), 1, + ACTIONS(2621), 1, anon_sym_DASH, - ACTIONS(2744), 1, + ACTIONS(2808), 1, anon_sym_DASH_DASH, - ACTIONS(12366), 1, + ACTIONS(11658), 1, anon_sym_DOLLAR, - ACTIONS(12368), 1, + ACTIONS(11660), 1, anon_sym_LBRACE, - STATE(4715), 1, + STATE(4162), 1, sym__var, - STATE(5294), 1, + STATE(4583), 1, sym_block, - STATE(5296), 1, + STATE(4584), 1, sym_val_closure, - STATE(7095), 1, + STATE(6662), 1, sym_comment, - STATE(7206), 1, + STATE(6674), 1, sym__flag, - STATE(8074), 1, + STATE(7692), 1, sym_long_flag_equals_value, - STATE(2555), 2, + STATE(1936), 2, sym__blosure, sym_val_variable, - STATE(9344), 2, + STATE(8892), 2, sym_short_flag, sym_long_flag, - [227708] = 14, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(2002), 1, - anon_sym_RBRACK, - ACTIONS(2004), 1, - sym__entry_separator, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - ACTIONS(5097), 1, - anon_sym_DOLLAR, - ACTIONS(6772), 1, - anon_sym_LPAREN2, - ACTIONS(12336), 1, - anon_sym_DOT, - ACTIONS(12338), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12340), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(12342), 1, - aux_sym__immediate_decimal_token4, - STATE(5803), 1, - sym__var, - STATE(7096), 1, - sym_comment, - STATE(9010), 1, - sym__immediate_decimal, - STATE(4132), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [227752] = 15, + [227204] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12354), 1, + ACTIONS(11778), 1, sym_identifier, - ACTIONS(12358), 1, + ACTIONS(11781), 1, + anon_sym_PIPE, + ACTIONS(11783), 1, anon_sym_DOLLAR, - ACTIONS(12360), 1, + ACTIONS(11786), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12362), 1, + ACTIONS(11789), 1, anon_sym_DASH_DASH, - ACTIONS(12364), 1, + ACTIONS(11792), 1, anon_sym_DASH, - ACTIONS(12370), 1, - anon_sym_RBRACK, - STATE(7078), 1, + STATE(6715), 1, sym_param_long_flag, - STATE(7097), 1, - sym_comment, - STATE(7100), 1, - aux_sym_parameter_parens_repeat1, - STATE(7350), 1, - sym__param_name, - STATE(7383), 1, + STATE(6934), 1, + sym_param_short_flag, + STATE(7066), 1, sym_param_rest, - STATE(7454), 1, + STATE(7081), 1, sym_param_opt, - STATE(7466), 1, - sym_param_short_flag, - STATE(8149), 1, + STATE(7104), 1, + sym__param_name, + STATE(7577), 1, sym_parameter, - [227798] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12354), 1, - sym_identifier, - ACTIONS(12358), 1, - anon_sym_DOLLAR, - ACTIONS(12360), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12362), 1, - anon_sym_DASH_DASH, - ACTIONS(12364), 1, - anon_sym_DASH, - ACTIONS(12372), 1, - anon_sym_RPAREN, - STATE(7078), 1, - sym_param_long_flag, - STATE(7098), 1, + STATE(6663), 2, sym_comment, - STATE(7102), 1, aux_sym_parameter_parens_repeat1, - STATE(7350), 1, - sym__param_name, - STATE(7383), 1, - sym_param_rest, - STATE(7454), 1, - sym_param_opt, - STATE(7466), 1, - sym_param_short_flag, - STATE(8149), 1, - sym_parameter, - [227844] = 13, - ACTIONS(3), 1, + [227248] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(938), 1, - anon_sym_LBRACE, - ACTIONS(6253), 1, - anon_sym_DOLLAR, - ACTIONS(9820), 1, - aux_sym_unquoted_token3, - ACTIONS(9822), 1, - aux_sym_unquoted_token5, - ACTIONS(12033), 1, + ACTIONS(11832), 1, + aux_sym__immediate_decimal_token2, + STATE(6664), 1, + sym_comment, + ACTIONS(2358), 5, + ts_builtin_sym_end, + anon_sym_LF, anon_sym_LPAREN2, - ACTIONS(12374), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2356), 7, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(12378), 1, - aux_sym__immediate_decimal_token4, - STATE(7099), 1, - sym_comment, - STATE(7403), 1, - sym__var, - STATE(8055), 1, - sym__immediate_decimal, - ACTIONS(12376), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(8331), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [227886] = 15, + aux_sym_unquoted_token2, + [227274] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12354), 1, - sym_identifier, - ACTIONS(12358), 1, - anon_sym_DOLLAR, - ACTIONS(12360), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12362), 1, - anon_sym_DASH_DASH, - ACTIONS(12364), 1, - anon_sym_DASH, - ACTIONS(12380), 1, - anon_sym_RBRACK, - STATE(7078), 1, - sym_param_long_flag, - STATE(7079), 1, - aux_sym_parameter_parens_repeat1, - STATE(7100), 1, + STATE(6665), 1, sym_comment, - STATE(7350), 1, - sym__param_name, - STATE(7383), 1, - sym_param_rest, - STATE(7454), 1, - sym_param_opt, - STATE(7466), 1, - sym_param_short_flag, - STATE(8149), 1, - sym_parameter, - [227932] = 6, + ACTIONS(934), 6, + sym_cmd_identifier, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + ACTIONS(936), 7, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [227298] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3949), 1, + STATE(6666), 1, + sym_comment, + ACTIONS(2362), 2, anon_sym_DASH, - ACTIONS(12382), 1, anon_sym_DOT_DOT2, - STATE(7101), 1, - sym_comment, - ACTIONS(12384), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3951), 9, + ACTIONS(2364), 11, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -546600,342 +505566,346 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [227960] = 15, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [227322] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12354), 1, + ACTIONS(11810), 1, sym_identifier, - ACTIONS(12358), 1, + ACTIONS(11814), 1, anon_sym_DOLLAR, - ACTIONS(12360), 1, + ACTIONS(11816), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12362), 1, + ACTIONS(11818), 1, anon_sym_DASH_DASH, - ACTIONS(12364), 1, + ACTIONS(11820), 1, anon_sym_DASH, - ACTIONS(12386), 1, - anon_sym_RPAREN, - STATE(7078), 1, + ACTIONS(11834), 1, + anon_sym_RBRACK, + STATE(6650), 1, sym_param_long_flag, - STATE(7079), 1, + STATE(6651), 1, aux_sym_parameter_parens_repeat1, - STATE(7102), 1, + STATE(6667), 1, sym_comment, - STATE(7350), 1, + STATE(6917), 1, sym__param_name, - STATE(7383), 1, + STATE(6934), 1, + sym_param_short_flag, + STATE(7066), 1, sym_param_rest, - STATE(7454), 1, + STATE(7081), 1, sym_param_opt, - STATE(7466), 1, - sym_param_short_flag, - STATE(8149), 1, + STATE(7577), 1, sym_parameter, - [228006] = 11, + [227368] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12305), 1, - anon_sym_COLON, - ACTIONS(12307), 1, - anon_sym_COMMA, - ACTIONS(12309), 1, - anon_sym_LPAREN, - ACTIONS(12311), 1, - anon_sym_DASH, - ACTIONS(12388), 1, - anon_sym_EQ, - STATE(7103), 1, - sym_comment, - STATE(7386), 1, - sym_param_value, - STATE(7388), 1, - sym_flag_capsule, - STATE(7907), 1, - sym_param_type, - ACTIONS(12301), 5, + ACTIONS(11810), 1, sym_identifier, - anon_sym_PIPE, + ACTIONS(11814), 1, anon_sym_DOLLAR, + ACTIONS(11816), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(11818), 1, anon_sym_DASH_DASH, - [228044] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3964), 1, + ACTIONS(11820), 1, anon_sym_DASH, - ACTIONS(12390), 1, - anon_sym_DOT_DOT2, - STATE(7104), 1, + ACTIONS(11836), 1, + anon_sym_RPAREN, + STATE(6650), 1, + sym_param_long_flag, + STATE(6651), 1, + aux_sym_parameter_parens_repeat1, + STATE(6668), 1, sym_comment, - ACTIONS(12392), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3966), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, + STATE(6917), 1, + sym__param_name, + STATE(6934), 1, + sym_param_short_flag, + STATE(7066), 1, + sym_param_rest, + STATE(7081), 1, + sym_param_opt, + STATE(7577), 1, + sym_parameter, + [227414] = 14, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1882), 1, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1884), 1, + sym__entry_separator, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(4793), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [228072] = 4, + ACTIONS(6322), 1, + anon_sym_LPAREN2, + ACTIONS(11838), 1, + anon_sym_DOT, + ACTIONS(11840), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11842), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(11844), 1, + aux_sym__immediate_decimal_token4, + STATE(5406), 1, + sym__var, + STATE(6669), 1, + sym_comment, + STATE(9032), 1, + sym__immediate_decimal, + STATE(3719), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [227458] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(7105), 1, + ACTIONS(11846), 1, + aux_sym__immediate_decimal_token2, + STATE(6670), 1, sym_comment, - ACTIONS(911), 6, + ACTIONS(2364), 5, + ts_builtin_sym_end, anon_sym_LF, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(909), 7, + ACTIONS(2362), 7, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_DOT, - aux_sym_unquoted_token5, - [228096] = 5, + aux_sym_unquoted_token2, + [227484] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12394), 1, - aux_sym__immediate_decimal_token2, - STATE(7106), 1, - sym_comment, - ACTIONS(923), 4, + ACTIONS(2621), 1, anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token5, - ACTIONS(925), 8, - anon_sym_DOLLAR, + ACTIONS(2808), 1, anon_sym_DASH_DASH, + ACTIONS(11848), 1, + anon_sym_DOLLAR, + ACTIONS(11850), 1, anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [228122] = 4, + STATE(4298), 1, + sym__var, + STATE(4981), 1, + sym_block, + STATE(4987), 1, + sym_val_closure, + STATE(6671), 1, + sym_comment, + STATE(6723), 1, + sym__flag, + STATE(7692), 1, + sym_long_flag_equals_value, + STATE(2034), 2, + sym__blosure, + sym_val_variable, + STATE(8892), 2, + sym_short_flag, + sym_long_flag, + [227526] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(7107), 1, - sym_comment, - ACTIONS(917), 6, - sym_cmd_identifier, - anon_sym_DOT_DOT2, + ACTIONS(922), 1, + anon_sym_LBRACE, + ACTIONS(1381), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5735), 1, + anon_sym_DOLLAR, + ACTIONS(9209), 1, + aux_sym_unquoted_token3, + ACTIONS(9247), 1, anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, + ACTIONS(9249), 1, aux_sym_unquoted_token5, - ACTIONS(919), 7, - anon_sym_DASH_DASH, + ACTIONS(11537), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [228146] = 12, + STATE(6672), 1, + sym_comment, + STATE(6987), 1, + sym__var, + STATE(8275), 1, + sym__immediate_decimal, + ACTIONS(1379), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(9202), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [227568] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2387), 1, - anon_sym_DASH, - ACTIONS(12031), 1, + ACTIONS(922), 1, + anon_sym_LBRACE, + ACTIONS(5735), 1, anon_sym_DOLLAR, - ACTIONS(12033), 1, + ACTIONS(9209), 1, + aux_sym_unquoted_token3, + ACTIONS(9249), 1, + aux_sym_unquoted_token5, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(12039), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12396), 1, + ACTIONS(11852), 1, anon_sym_DOT, - STATE(7108), 1, + ACTIONS(11856), 1, + aux_sym__immediate_decimal_token4, + STATE(6673), 1, sym_comment, - STATE(7633), 1, + STATE(6987), 1, sym__var, - STATE(8414), 1, + STATE(7718), 1, sym__immediate_decimal, - ACTIONS(2389), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(12398), 2, + ACTIONS(11854), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(8413), 2, + STATE(7880), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [228186] = 6, + [227610] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2621), 1, + anon_sym_DASH, + ACTIONS(3232), 1, + anon_sym_DASH_DASH, + ACTIONS(11658), 1, + anon_sym_DOLLAR, + ACTIONS(11660), 1, + anon_sym_LBRACE, + STATE(4162), 1, + sym__var, + STATE(4583), 1, + sym_block, + STATE(4584), 1, + sym_val_closure, + STATE(6674), 1, + sym_comment, + STATE(7692), 1, + sym_long_flag_equals_value, + STATE(7833), 1, + sym__flag, + STATE(1968), 2, + sym__blosure, + sym_val_variable, + STATE(8892), 2, + sym_short_flag, + sym_long_flag, + [227652] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12400), 1, - anon_sym_DOT, - ACTIONS(12403), 1, + ACTIONS(11858), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11860), 1, aux_sym__immediate_decimal_token2, - STATE(7109), 1, + STATE(6675), 1, sym_comment, - ACTIONS(923), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token5, - ACTIONS(925), 7, - ts_builtin_sym_end, + ACTIONS(2231), 4, anon_sym_LF, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [228214] = 6, + ACTIONS(2229), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token2, + [227680] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12352), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(12405), 1, - anon_sym_DOT, - STATE(7110), 1, + STATE(6676), 1, sym_comment, - ACTIONS(2583), 4, + ACTIONS(2231), 4, + anon_sym_LF, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - ACTIONS(2581), 7, + ACTIONS(2229), 9, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOT_DOT2, - anon_sym_LF2, - aux_sym_unquoted_token2, - [228242] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12354), 1, - sym_identifier, - ACTIONS(12358), 1, - anon_sym_DOLLAR, - ACTIONS(12360), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12362), 1, anon_sym_DASH_DASH, - ACTIONS(12364), 1, anon_sym_DASH, - ACTIONS(12408), 1, - anon_sym_PIPE, - STATE(7084), 1, - aux_sym_parameter_parens_repeat1, - STATE(7103), 1, - sym_param_long_flag, - STATE(7111), 1, - sym_comment, - STATE(7372), 1, - sym__param_name, - STATE(7383), 1, - sym_param_rest, - STATE(7454), 1, - sym_param_opt, - STATE(7466), 1, - sym_param_short_flag, - STATE(8149), 1, - sym_parameter, - [228288] = 13, - ACTIONS(3), 1, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token2, + [227704] = 14, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(938), 1, - anon_sym_LBRACE, - ACTIONS(1584), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6253), 1, + ACTIONS(920), 1, + anon_sym_RBRACK, + ACTIONS(922), 1, + sym__entry_separator, + ACTIONS(4793), 1, anon_sym_DOLLAR, - ACTIONS(9818), 1, - anon_sym_DOT, - ACTIONS(9820), 1, - aux_sym_unquoted_token3, - ACTIONS(9822), 1, - aux_sym_unquoted_token5, - ACTIONS(12033), 1, + ACTIONS(6322), 1, anon_sym_LPAREN2, - STATE(7112), 1, - sym_comment, - STATE(7403), 1, - sym__var, - STATE(8614), 1, - sym__immediate_decimal, - ACTIONS(1582), 2, + ACTIONS(9162), 1, + aux_sym_unquoted_token4, + ACTIONS(11838), 1, + anon_sym_DOT, + ACTIONS(11840), 1, aux_sym__immediate_decimal_token1, + ACTIONS(11842), 1, aux_sym__immediate_decimal_token3, - STATE(9452), 2, + ACTIONS(11844), 1, + aux_sym__immediate_decimal_token4, + STATE(5406), 1, + sym__var, + STATE(6677), 1, + sym_comment, + STATE(9371), 1, + sym__immediate_decimal, + STATE(3698), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [228330] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12410), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12412), 1, - aux_sym__immediate_decimal_token2, - STATE(7113), 1, - sym_comment, - ACTIONS(911), 4, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(909), 7, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token5, - [228358] = 12, + [227748] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2359), 1, + ACTIONS(1838), 1, anon_sym_DASH, - ACTIONS(6247), 1, + ACTIONS(11535), 1, anon_sym_DOLLAR, - ACTIONS(12033), 1, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(12039), 1, + ACTIONS(11543), 1, aux_sym__immediate_decimal_token4, - ACTIONS(12414), 1, + ACTIONS(11862), 1, anon_sym_DOT, - STATE(7114), 1, + STATE(6678), 1, sym_comment, - STATE(7440), 1, + STATE(7203), 1, sym__var, - STATE(7743), 1, + STATE(8327), 1, sym__immediate_decimal, - ACTIONS(2361), 2, + ACTIONS(1840), 2, anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(12416), 2, + ACTIONS(11864), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7737), 2, + STATE(7848), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [228398] = 6, + [227788] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4043), 1, + STATE(6679), 1, + sym_comment, + ACTIONS(2402), 2, anon_sym_DASH, - ACTIONS(12418), 1, anon_sym_DOT_DOT2, - STATE(7115), 1, - sym_comment, - ACTIONS(12420), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(4045), 9, + ACTIONS(2404), 11, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -546945,867 +505915,731 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [228426] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [227812] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(7116), 1, + ACTIONS(9209), 1, + aux_sym_unquoted_token4, + ACTIONS(11537), 1, + anon_sym_LPAREN2, + ACTIONS(11650), 1, + anon_sym_DOLLAR, + ACTIONS(11866), 1, + anon_sym_DOT, + ACTIONS(11870), 1, + aux_sym__immediate_decimal_token4, + STATE(6680), 1, + sym_comment, + STATE(8975), 1, + sym__var, + STATE(9175), 1, + sym__immediate_decimal, + ACTIONS(922), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(11868), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7175), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [227852] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6681), 1, sym_comment, - ACTIONS(2437), 2, + ACTIONS(3767), 2, anon_sym_DASH, anon_sym_DOT_DOT2, - ACTIONS(2439), 11, - sym_identifier, - anon_sym_COLON, + ACTIONS(3769), 11, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [228450] = 4, - ACTIONS(3), 1, + [227876] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1113), 1, - anon_sym_DASH, - STATE(7117), 1, + STATE(6682), 1, sym_comment, - ACTIONS(1115), 12, - anon_sym_EQ, + ACTIONS(2364), 4, + anon_sym_LF, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2362), 9, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOLLAR, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, + anon_sym_DASH, anon_sym_RBRACE, + anon_sym_DOT_DOT2, anon_sym_DOT, - [228474] = 12, + aux_sym_unquoted_token2, + [227900] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, + ACTIONS(1882), 1, + anon_sym_RBRACK, + ACTIONS(1884), 1, + sym__entry_separator, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(4793), 1, + anon_sym_DOLLAR, + ACTIONS(6322), 1, anon_sym_LPAREN2, - ACTIONS(9405), 1, - aux_sym_unquoted_token5, - ACTIONS(9496), 1, + ACTIONS(11838), 1, anon_sym_DOT, - ACTIONS(12422), 1, - anon_sym_DOT_DOT2, - ACTIONS(12426), 1, - sym_filesize_unit, - ACTIONS(12428), 1, - sym_duration_unit, - STATE(7118), 1, + ACTIONS(11840), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11842), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(11844), 1, + aux_sym__immediate_decimal_token4, + STATE(5406), 1, + sym__var, + STATE(6683), 1, sym_comment, - STATE(10634), 1, + STATE(8464), 1, + sym__immediate_decimal, + STATE(3719), 2, sym__expr_parenthesized_immediate, - ACTIONS(959), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(961), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(12424), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [228514] = 13, + sym_val_variable, + [227944] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2694), 1, + ACTIONS(3771), 1, anon_sym_DASH, - ACTIONS(2744), 1, - anon_sym_DASH_DASH, - ACTIONS(12366), 1, + STATE(6684), 1, + sym_comment, + ACTIONS(3773), 12, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(12368), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_LBRACE, - STATE(4715), 1, - sym__var, - STATE(5294), 1, - sym_block, - STATE(5296), 1, - sym_val_closure, - STATE(7095), 1, - sym__flag, - STATE(7119), 1, - sym_comment, - STATE(8074), 1, - sym_long_flag_equals_value, - STATE(2552), 2, - sym__blosure, - sym_val_variable, - STATE(9344), 2, - sym_short_flag, - sym_long_flag, - [228556] = 4, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [227968] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(7120), 1, - sym_comment, - ACTIONS(950), 6, - sym_cmd_identifier, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token5, - ACTIONS(952), 7, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [228580] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(7121), 1, - sym_comment, - ACTIONS(909), 6, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, + ACTIONS(3741), 1, + anon_sym_DASH, + ACTIONS(11872), 1, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token5, - ACTIONS(911), 7, - ts_builtin_sym_end, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_command_token1, - [228604] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(7122), 1, + STATE(6685), 1, sym_comment, - ACTIONS(919), 6, - anon_sym_LF, - anon_sym_LPAREN2, + ACTIONS(11874), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(917), 7, - anon_sym_SEMI, + ACTIONS(3743), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [227996] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1882), 1, + anon_sym_DASH, + ACTIONS(5725), 1, + anon_sym_DOLLAR, + ACTIONS(11537), 1, + anon_sym_LPAREN2, + ACTIONS(11543), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11876), 1, anon_sym_DOT, - aux_sym_unquoted_token5, - [228628] = 5, + STATE(6655), 1, + sym__immediate_decimal, + STATE(6686), 1, + sym_comment, + STATE(7000), 1, + sym__var, + ACTIONS(1884), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(11878), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7172), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [228036] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12430), 1, + ACTIONS(11640), 1, aux_sym__immediate_decimal_token2, - STATE(7123), 1, + STATE(6687), 1, sym_comment, - ACTIONS(2583), 5, - ts_builtin_sym_end, - anon_sym_LF, + ACTIONS(2231), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2581), 7, + aux_sym_command_token1, + ACTIONS(2229), 8, anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, + anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token2, - [228654] = 8, + [228062] = 8, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3520), 1, + ACTIONS(3314), 1, anon_sym_LF, - ACTIONS(3522), 1, + ACTIONS(3316), 1, anon_sym_LPAREN2, - ACTIONS(12432), 1, + ACTIONS(11880), 1, anon_sym_DOT_DOT2, - STATE(7124), 1, + STATE(6688), 1, sym_comment, - ACTIONS(1934), 2, + ACTIONS(1844), 2, anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(12434), 2, + ACTIONS(11882), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(3518), 6, + ACTIONS(3312), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [228686] = 5, + [228094] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12436), 1, + ACTIONS(11743), 1, aux_sym__immediate_decimal_token2, - STATE(7125), 1, + STATE(6689), 1, sym_comment, - ACTIONS(2583), 4, + ACTIONS(2231), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, aux_sym_command_token1, - ACTIONS(2581), 8, + ACTIONS(2229), 8, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT, + anon_sym_LF2, aux_sym_unquoted_token2, - [228712] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(7126), 1, - sym_comment, - ACTIONS(952), 6, - anon_sym_LF, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(950), 7, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token5, - [228736] = 12, + [228120] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1920), 1, - anon_sym_DASH, - ACTIONS(12031), 1, + ACTIONS(2171), 1, + anon_sym_DASH_DASH, + ACTIONS(11604), 1, anon_sym_DOLLAR, - ACTIONS(12033), 1, + ACTIONS(11606), 1, anon_sym_LPAREN2, - ACTIONS(12039), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12438), 1, + ACTIONS(11884), 1, anon_sym_DOT, - STATE(7127), 1, + ACTIONS(11886), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11888), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(11890), 1, + aux_sym__immediate_decimal_token4, + STATE(6690), 1, sym_comment, - STATE(7633), 1, + STATE(7135), 1, sym__var, - STATE(8665), 1, + STATE(7963), 1, sym__immediate_decimal, - ACTIONS(1922), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(12398), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(8415), 2, + ACTIONS(2169), 2, + sym_identifier, + anon_sym_DASH, + STATE(7962), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [228776] = 12, + [228162] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1920), 1, - anon_sym_DASH, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12033), 1, + ACTIONS(2171), 1, + anon_sym_DASH_DASH, + ACTIONS(11229), 1, anon_sym_LPAREN2, - ACTIONS(12039), 1, + ACTIONS(11237), 1, aux_sym__immediate_decimal_token4, - ACTIONS(12414), 1, + ACTIONS(11670), 1, + anon_sym_DOLLAR, + ACTIONS(11892), 1, anon_sym_DOT, - STATE(7128), 1, + ACTIONS(11894), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11896), 1, + aux_sym__immediate_decimal_token3, + STATE(6691), 1, sym_comment, - STATE(7196), 1, + STATE(7381), 1, sym__immediate_decimal, - STATE(7440), 1, + STATE(7915), 1, sym__var, - ACTIONS(1922), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(12416), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7671), 2, + ACTIONS(2169), 2, + sym_identifier, + anon_sym_DASH, + STATE(7324), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [228816] = 6, - ACTIONS(113), 1, + [228204] = 15, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12430), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(12440), 1, - anon_sym_DOT, - STATE(7129), 1, - sym_comment, - ACTIONS(2583), 5, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2581), 6, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(11810), 1, + sym_identifier, + ACTIONS(11814), 1, + anon_sym_DOLLAR, + ACTIONS(11816), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11818), 1, anon_sym_DASH_DASH, + ACTIONS(11820), 1, anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [228844] = 5, + ACTIONS(11898), 1, + anon_sym_PIPE, + STATE(6692), 1, + sym_comment, + STATE(6714), 1, + aux_sym_parameter_parens_repeat1, + STATE(6715), 1, + sym_param_long_flag, + STATE(6934), 1, + sym_param_short_flag, + STATE(7066), 1, + sym_param_rest, + STATE(7081), 1, + sym_param_opt, + STATE(7104), 1, + sym__param_name, + STATE(7577), 1, + sym_parameter, + [228250] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12175), 1, - aux_sym__immediate_decimal_token2, - STATE(7130), 1, + STATE(6693), 1, sym_comment, - ACTIONS(909), 4, - anon_sym_DASH, + ACTIONS(893), 6, + sym_cmd_identifier, anon_sym_DOT_DOT2, anon_sym_DOT, + sym_filesize_unit, + sym_duration_unit, aux_sym_unquoted_token5, - ACTIONS(911), 8, - anon_sym_DOLLAR, + ACTIONS(895), 7, anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [228870] = 12, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [228274] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2387), 1, + ACTIONS(2207), 1, anon_sym_DASH, - ACTIONS(6247), 1, + ACTIONS(5725), 1, anon_sym_DOLLAR, - ACTIONS(12033), 1, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(12039), 1, + ACTIONS(11543), 1, aux_sym__immediate_decimal_token4, - ACTIONS(12414), 1, + ACTIONS(11876), 1, anon_sym_DOT, - STATE(7131), 1, + STATE(6694), 1, sym_comment, - STATE(7440), 1, + STATE(7000), 1, sym__var, - STATE(7637), 1, + STATE(7139), 1, sym__immediate_decimal, - ACTIONS(2389), 2, + ACTIONS(2209), 2, anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(12416), 2, + ACTIONS(11878), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7592), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [228910] = 14, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(2002), 1, - anon_sym_RBRACK, - ACTIONS(2004), 1, - sym__entry_separator, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - ACTIONS(5097), 1, - anon_sym_DOLLAR, - ACTIONS(6772), 1, - anon_sym_LPAREN2, - ACTIONS(12336), 1, - anon_sym_DOT, - ACTIONS(12338), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12340), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(12342), 1, - aux_sym__immediate_decimal_token4, - STATE(5803), 1, - sym__var, - STATE(7132), 1, - sym_comment, - STATE(9519), 1, - sym__immediate_decimal, - STATE(4132), 2, + STATE(7138), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [228954] = 5, + [228314] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12223), 1, - aux_sym__immediate_decimal_token2, - STATE(7133), 1, + STATE(6695), 1, sym_comment, - ACTIONS(2439), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - ACTIONS(2437), 8, + ACTIONS(893), 6, anon_sym_SEMI, anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT, - aux_sym_unquoted_token2, - [228980] = 4, + aux_sym_unquoted_token5, + ACTIONS(895), 7, + ts_builtin_sym_end, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_command_token1, + [228338] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(7134), 1, - sym_comment, - ACTIONS(1168), 2, - anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(1170), 11, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(922), 1, + anon_sym_LBRACE, + ACTIONS(1381), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5735), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [229004] = 15, + ACTIONS(9209), 1, + aux_sym_unquoted_token3, + ACTIONS(9247), 1, + anon_sym_DOT, + ACTIONS(9249), 1, + aux_sym_unquoted_token5, + ACTIONS(11537), 1, + anon_sym_LPAREN2, + STATE(6696), 1, + sym_comment, + STATE(6987), 1, + sym__var, + STATE(7881), 1, + sym__immediate_decimal, + ACTIONS(1379), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(9202), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [228380] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12354), 1, + ACTIONS(11810), 1, sym_identifier, - ACTIONS(12358), 1, + ACTIONS(11814), 1, anon_sym_DOLLAR, - ACTIONS(12360), 1, + ACTIONS(11816), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12362), 1, + ACTIONS(11818), 1, anon_sym_DASH_DASH, - ACTIONS(12364), 1, + ACTIONS(11820), 1, anon_sym_DASH, - ACTIONS(12443), 1, + ACTIONS(11900), 1, anon_sym_RBRACK, - STATE(7078), 1, + STATE(6650), 1, sym_param_long_flag, - STATE(7135), 1, + STATE(6697), 1, sym_comment, - STATE(7174), 1, + STATE(6700), 1, aux_sym_parameter_parens_repeat1, - STATE(7350), 1, + STATE(6917), 1, sym__param_name, - STATE(7383), 1, + STATE(6934), 1, + sym_param_short_flag, + STATE(7066), 1, sym_param_rest, - STATE(7454), 1, + STATE(7081), 1, sym_param_opt, - STATE(7466), 1, - sym_param_short_flag, - STATE(8149), 1, + STATE(7577), 1, sym_parameter, - [229050] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12445), 1, - aux_sym__immediate_decimal_token2, - STATE(7136), 1, - sym_comment, - ACTIONS(917), 4, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token5, - ACTIONS(919), 8, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [229076] = 6, + [228426] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2843), 1, - anon_sym_DASH, - ACTIONS(12447), 1, - anon_sym_DOT_DOT2, - STATE(7137), 1, - sym_comment, - ACTIONS(12449), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2845), 9, + ACTIONS(11810), 1, sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(11814), 1, anon_sym_DOLLAR, + ACTIONS(11816), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(11818), 1, anon_sym_DASH_DASH, - [229104] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(12260), 1, - aux_sym__immediate_decimal_token2, - STATE(7138), 1, - sym_comment, - ACTIONS(2439), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - ACTIONS(2437), 8, - anon_sym_SEMI, - anon_sym_LF, + ACTIONS(11820), 1, + anon_sym_DASH, + ACTIONS(11902), 1, anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_LF2, - aux_sym_unquoted_token2, - [229130] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(12451), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12453), 1, - aux_sym__immediate_decimal_token2, - STATE(7139), 1, - sym_comment, - ACTIONS(2439), 5, - ts_builtin_sym_end, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - ACTIONS(2437), 6, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - [229158] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(12455), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12457), 1, - aux_sym__immediate_decimal_token2, - STATE(7140), 1, + STATE(6650), 1, + sym_param_long_flag, + STATE(6698), 1, sym_comment, - ACTIONS(2439), 4, - anon_sym_LF, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2437), 7, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - [229186] = 4, + STATE(6702), 1, + aux_sym_parameter_parens_repeat1, + STATE(6917), 1, + sym__param_name, + STATE(6934), 1, + sym_param_short_flag, + STATE(7066), 1, + sym_param_rest, + STATE(7081), 1, + sym_param_opt, + STATE(7577), 1, + sym_parameter, + [228472] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(7141), 1, - sym_comment, - ACTIONS(3960), 2, + ACTIONS(2136), 1, anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(3962), 11, - anon_sym_COMMA, - anon_sym_PIPE, + ACTIONS(5725), 1, anon_sym_DOLLAR, + ACTIONS(11537), 1, + anon_sym_LPAREN2, + ACTIONS(11543), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11876), 1, + anon_sym_DOT, + STATE(6699), 1, + sym_comment, + STATE(7000), 1, + sym__var, + STATE(7148), 1, + sym__immediate_decimal, + ACTIONS(2138), 2, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [229210] = 15, + ACTIONS(11878), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7147), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [228512] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12354), 1, + ACTIONS(11810), 1, sym_identifier, - ACTIONS(12358), 1, + ACTIONS(11814), 1, anon_sym_DOLLAR, - ACTIONS(12360), 1, + ACTIONS(11816), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12362), 1, + ACTIONS(11818), 1, anon_sym_DASH_DASH, - ACTIONS(12364), 1, + ACTIONS(11820), 1, anon_sym_DASH, - ACTIONS(12459), 1, - anon_sym_RPAREN, - STATE(7078), 1, + ACTIONS(11904), 1, + anon_sym_RBRACK, + STATE(6650), 1, sym_param_long_flag, - STATE(7142), 1, - sym_comment, - STATE(7202), 1, + STATE(6651), 1, aux_sym_parameter_parens_repeat1, - STATE(7350), 1, + STATE(6700), 1, + sym_comment, + STATE(6917), 1, sym__param_name, - STATE(7383), 1, + STATE(6934), 1, + sym_param_short_flag, + STATE(7066), 1, sym_param_rest, - STATE(7454), 1, + STATE(7081), 1, sym_param_opt, - STATE(7466), 1, - sym_param_short_flag, - STATE(8149), 1, + STATE(7577), 1, sym_parameter, - [229256] = 14, - ACTIONS(113), 1, + [228558] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5097), 1, + ACTIONS(2169), 1, + anon_sym_DASH, + ACTIONS(11535), 1, anon_sym_DOLLAR, - ACTIONS(6772), 1, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(7571), 1, - anon_sym_RBRACK, - ACTIONS(7585), 1, - sym__entry_separator, - ACTIONS(7587), 1, - aux_sym__unquoted_in_list_token5, - ACTIONS(12461), 1, - anon_sym_DOT, - ACTIONS(12463), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12465), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(12467), 1, + ACTIONS(11543), 1, aux_sym__immediate_decimal_token4, - STATE(5803), 1, - sym__var, - STATE(7143), 1, + ACTIONS(11906), 1, + anon_sym_DOT, + STATE(6701), 1, sym_comment, - STATE(9226), 1, + STATE(7203), 1, + sym__var, + STATE(7847), 1, sym__immediate_decimal, - STATE(4080), 2, + ACTIONS(2171), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(11864), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7846), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [229300] = 13, + [228598] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2694), 1, - anon_sym_DASH, - ACTIONS(2744), 1, - anon_sym_DASH_DASH, - ACTIONS(12179), 1, + ACTIONS(11810), 1, + sym_identifier, + ACTIONS(11814), 1, anon_sym_DOLLAR, - ACTIONS(12181), 1, - anon_sym_LBRACE, - STATE(4616), 1, - sym__var, - STATE(5084), 1, - sym_block, - STATE(5126), 1, - sym_val_closure, - STATE(7144), 1, + ACTIONS(11816), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11818), 1, + anon_sym_DASH_DASH, + ACTIONS(11820), 1, + anon_sym_DASH, + ACTIONS(11908), 1, + anon_sym_RPAREN, + STATE(6650), 1, + sym_param_long_flag, + STATE(6651), 1, + aux_sym_parameter_parens_repeat1, + STATE(6702), 1, sym_comment, - STATE(7150), 1, - sym__flag, - STATE(8074), 1, - sym_long_flag_equals_value, - STATE(1896), 2, - sym__blosure, - sym_val_variable, - STATE(9344), 2, - sym_short_flag, - sym_long_flag, - [229342] = 13, + STATE(6917), 1, + sym__param_name, + STATE(6934), 1, + sym_param_short_flag, + STATE(7066), 1, + sym_param_rest, + STATE(7081), 1, + sym_param_opt, + STATE(7577), 1, + sym_parameter, + [228644] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(938), 1, - anon_sym_in, - ACTIONS(6253), 1, + ACTIONS(2169), 1, + anon_sym_DASH, + ACTIONS(5725), 1, anon_sym_DOLLAR, - ACTIONS(9820), 1, - aux_sym_unquoted_token3, - ACTIONS(9822), 1, - aux_sym_unquoted_token5, - ACTIONS(12033), 1, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(12469), 1, - anon_sym_DOT, - ACTIONS(12473), 1, + ACTIONS(11543), 1, aux_sym__immediate_decimal_token4, - STATE(7145), 1, + ACTIONS(11876), 1, + anon_sym_DOT, + STATE(6703), 1, sym_comment, - STATE(7403), 1, + STATE(7000), 1, sym__var, - STATE(8371), 1, + STATE(7368), 1, sym__immediate_decimal, - ACTIONS(12471), 2, + ACTIONS(2171), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(11878), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(10123), 2, + STATE(7360), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [229384] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(7146), 1, - sym_comment, - ACTIONS(950), 6, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token5, - ACTIONS(952), 7, - ts_builtin_sym_end, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_command_token1, - [229408] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(7147), 1, - sym_comment, - ACTIONS(909), 6, - sym_cmd_identifier, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token5, - ACTIONS(911), 7, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [229432] = 13, + [228684] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2351), 1, - sym__entry_separator, - ACTIONS(5097), 1, + ACTIONS(1724), 1, anon_sym_DOLLAR, - ACTIONS(6772), 1, + ACTIONS(2171), 1, + sym__entry_separator, + ACTIONS(6322), 1, anon_sym_LPAREN2, - ACTIONS(12293), 1, + ACTIONS(11648), 1, aux_sym__immediate_decimal_token4, - ACTIONS(12475), 1, + ACTIONS(11910), 1, anon_sym_DOT, - ACTIONS(12477), 1, + ACTIONS(11912), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12479), 1, + ACTIONS(11914), 1, aux_sym__immediate_decimal_token3, - STATE(4126), 1, - sym__immediate_decimal, - STATE(5803), 1, + STATE(4556), 1, sym__var, - STATE(7148), 1, + STATE(6704), 1, sym_comment, - ACTIONS(2349), 2, + STATE(8265), 1, + sym__immediate_decimal, + ACTIONS(2169), 2, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(4125), 2, + STATE(8251), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [229474] = 14, - ACTIONS(3), 1, + [228726] = 13, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(936), 1, - sym_identifier, - ACTIONS(9701), 1, - aux_sym_unquoted_token3, - ACTIONS(12092), 1, + ACTIONS(2171), 1, + sym__entry_separator, + ACTIONS(4793), 1, anon_sym_DOLLAR, - ACTIONS(12094), 1, + ACTIONS(6322), 1, anon_sym_LPAREN2, - ACTIONS(12104), 1, - aux_sym_unquoted_token5, - ACTIONS(12481), 1, + ACTIONS(11648), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11916), 1, anon_sym_DOT, - ACTIONS(12483), 1, + ACTIONS(11918), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12485), 1, + ACTIONS(11920), 1, aux_sym__immediate_decimal_token3, - ACTIONS(12487), 1, - aux_sym__immediate_decimal_token4, - STATE(7149), 1, - sym_comment, - STATE(7579), 1, - sym__var, - STATE(8190), 1, + STATE(3661), 1, sym__immediate_decimal, - STATE(8322), 2, + STATE(5406), 1, + sym__var, + STATE(6705), 1, + sym_comment, + ACTIONS(2169), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(3639), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [229518] = 13, + [228768] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2694), 1, + ACTIONS(2621), 1, anon_sym_DASH, - ACTIONS(2744), 1, + ACTIONS(3232), 1, anon_sym_DASH_DASH, - ACTIONS(12179), 1, + ACTIONS(11848), 1, anon_sym_DOLLAR, - ACTIONS(12181), 1, + ACTIONS(11850), 1, anon_sym_LBRACE, - STATE(4616), 1, + STATE(4298), 1, sym__var, - STATE(5084), 1, + STATE(4981), 1, sym_block, - STATE(5126), 1, + STATE(4987), 1, sym_val_closure, - STATE(7150), 1, + STATE(6706), 1, sym_comment, - STATE(7183), 1, - sym__flag, - STATE(8074), 1, + STATE(7692), 1, sym_long_flag_equals_value, - STATE(1920), 2, + STATE(7875), 1, + sym__flag, + STATE(2151), 2, sym__blosure, sym_val_variable, - STATE(9344), 2, + STATE(8892), 2, sym_short_flag, sym_long_flag, - [229560] = 7, + [228810] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1010), 1, + ACTIONS(3312), 1, anon_sym_DASH, - ACTIONS(12489), 1, - anon_sym_DOT, - STATE(7134), 1, - sym_cell_path, - STATE(7151), 1, + STATE(6707), 1, sym_comment, - STATE(7159), 1, - sym_path, - ACTIONS(1012), 9, + ACTIONS(3314), 12, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -547815,50 +506649,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [229590] = 14, - ACTIONS(113), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [228834] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(936), 1, - anon_sym_RBRACK, - ACTIONS(938), 1, - sym__entry_separator, - ACTIONS(5097), 1, - anon_sym_DOLLAR, - ACTIONS(6772), 1, + ACTIONS(11922), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11924), 1, + aux_sym__immediate_decimal_token2, + STATE(6708), 1, + sym_comment, + ACTIONS(895), 4, + anon_sym_DASH_DASH, anon_sym_LPAREN2, - ACTIONS(9636), 1, - aux_sym_unquoted_token4, - ACTIONS(12336), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(893), 7, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(12338), 1, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + [228862] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6709), 1, + sym_comment, + ACTIONS(3721), 2, + anon_sym_DASH, + anon_sym_DOT_DOT2, + ACTIONS(3723), 11, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [228886] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11926), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12340), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(12342), 1, - aux_sym__immediate_decimal_token4, - STATE(5803), 1, - sym__var, - STATE(7152), 1, + ACTIONS(11928), 1, + aux_sym__immediate_decimal_token2, + STATE(6710), 1, sym_comment, - STATE(9194), 1, - sym__immediate_decimal, - STATE(4080), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [229634] = 6, + ACTIONS(2229), 4, + sym_cmd_identifier, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(2231), 7, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [228914] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12394), 1, + ACTIONS(11930), 1, aux_sym__immediate_decimal_token2, - ACTIONS(12491), 1, - anon_sym_DOT, - STATE(7153), 1, + STATE(6711), 1, sym_comment, - ACTIONS(923), 3, + ACTIONS(901), 4, anon_sym_DASH, anon_sym_DOT_DOT2, + anon_sym_DOT, aux_sym_unquoted_token5, - ACTIONS(925), 8, + ACTIONS(903), 8, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, @@ -547867,188 +506737,215 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [229662] = 5, + [228940] = 14, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(4793), 1, + anon_sym_DOLLAR, + ACTIONS(6322), 1, + anon_sym_LPAREN2, + ACTIONS(7087), 1, + anon_sym_RBRACK, + ACTIONS(7101), 1, + sym__entry_separator, + ACTIONS(7103), 1, + aux_sym__unquoted_in_list_token5, + ACTIONS(11932), 1, + anon_sym_DOT, + ACTIONS(11934), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11936), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(11938), 1, + aux_sym__immediate_decimal_token4, + STATE(5406), 1, + sym__var, + STATE(6712), 1, + sym_comment, + STATE(8896), 1, + sym__immediate_decimal, + STATE(3698), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [228984] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12297), 1, + ACTIONS(11735), 1, aux_sym__immediate_decimal_token2, - STATE(7154), 1, + STATE(6713), 1, sym_comment, - ACTIONS(2439), 5, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2437), 7, + ACTIONS(893), 5, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_DOT, - aux_sym_unquoted_token2, - [229688] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(7155), 1, - sym_comment, - ACTIONS(3507), 4, + aux_sym_unquoted_token5, + ACTIONS(895), 7, + ts_builtin_sym_end, anon_sym_LF, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(3505), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + sym_filesize_unit, + sym_duration_unit, + [229010] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11810), 1, + sym_identifier, + ACTIONS(11814), 1, + anon_sym_DOLLAR, + ACTIONS(11816), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11818), 1, anon_sym_DASH_DASH, + ACTIONS(11820), 1, anon_sym_DASH, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - [229712] = 8, - ACTIONS(113), 1, + ACTIONS(11940), 1, + anon_sym_PIPE, + STATE(6663), 1, + aux_sym_parameter_parens_repeat1, + STATE(6714), 1, + sym_comment, + STATE(6715), 1, + sym_param_long_flag, + STATE(6934), 1, + sym_param_short_flag, + STATE(7066), 1, + sym_param_rest, + STATE(7081), 1, + sym_param_opt, + STATE(7104), 1, + sym__param_name, + STATE(7577), 1, + sym_parameter, + [229056] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2845), 1, - anon_sym_LF, - ACTIONS(2847), 1, - anon_sym_LPAREN2, - ACTIONS(12494), 1, - anon_sym_DOT_DOT2, - STATE(7156), 1, + ACTIONS(11770), 1, + anon_sym_COLON, + ACTIONS(11772), 1, + anon_sym_COMMA, + ACTIONS(11774), 1, + anon_sym_LPAREN, + ACTIONS(11776), 1, + anon_sym_DASH, + ACTIONS(11942), 1, + anon_sym_EQ, + STATE(6715), 1, sym_comment, - ACTIONS(2851), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(12496), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2843), 6, - anon_sym_SEMI, - anon_sym_RPAREN, + STATE(6965), 1, + sym_param_value, + STATE(6966), 1, + sym_flag_capsule, + STATE(7556), 1, + sym_param_type, + ACTIONS(11766), 5, + sym_identifier, anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [229744] = 13, + [229094] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(938), 1, - anon_sym_LBRACE, - ACTIONS(6253), 1, + ACTIONS(2146), 1, + anon_sym_DASH, + ACTIONS(5725), 1, anon_sym_DOLLAR, - ACTIONS(9820), 1, - aux_sym_unquoted_token3, - ACTIONS(9822), 1, - aux_sym_unquoted_token5, - ACTIONS(12033), 1, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(12374), 1, - anon_sym_DOT, - ACTIONS(12378), 1, + ACTIONS(11543), 1, aux_sym__immediate_decimal_token4, - STATE(7157), 1, + ACTIONS(11876), 1, + anon_sym_DOT, + STATE(6716), 1, sym_comment, - STATE(7403), 1, + STATE(7000), 1, sym__var, - STATE(8256), 1, + STATE(7156), 1, sym__immediate_decimal, - ACTIONS(12376), 2, + ACTIONS(2148), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(11878), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(8331), 2, + STATE(7155), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [229786] = 13, - ACTIONS(113), 1, + [229134] = 14, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2361), 1, - sym__entry_separator, - ACTIONS(5097), 1, + ACTIONS(920), 1, + sym_identifier, + ACTIONS(9231), 1, + aux_sym_unquoted_token3, + ACTIONS(11604), 1, anon_sym_DOLLAR, - ACTIONS(6772), 1, + ACTIONS(11606), 1, anon_sym_LPAREN2, - ACTIONS(12293), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12475), 1, + ACTIONS(11616), 1, + aux_sym_unquoted_token5, + ACTIONS(11944), 1, anon_sym_DOT, - ACTIONS(12477), 1, + ACTIONS(11946), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12479), 1, + ACTIONS(11948), 1, aux_sym__immediate_decimal_token3, - STATE(4128), 1, - sym__immediate_decimal, - STATE(5803), 1, - sym__var, - STATE(7158), 1, + ACTIONS(11950), 1, + aux_sym__immediate_decimal_token4, + STATE(6717), 1, sym_comment, - ACTIONS(2359), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(4127), 2, + STATE(7135), 1, + sym__var, + STATE(7939), 1, + sym__immediate_decimal, + STATE(7982), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [229828] = 7, + [229178] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(987), 1, + ACTIONS(938), 1, anon_sym_DASH, - ACTIONS(12489), 1, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + ACTIONS(8816), 1, anon_sym_DOT, - STATE(7159), 1, + ACTIONS(8820), 1, + aux_sym_unquoted_token5, + ACTIONS(11952), 1, + anon_sym_DOT_DOT2, + ACTIONS(11956), 1, + sym_filesize_unit, + ACTIONS(11958), 1, + sym_duration_unit, + STATE(6718), 1, sym_comment, - STATE(7160), 1, - aux_sym_cell_path_repeat1, - STATE(7444), 1, - sym_path, - ACTIONS(989), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + STATE(10092), 1, + sym__expr_parenthesized_immediate, + ACTIONS(11954), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(940), 3, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [229858] = 7, + anon_sym_LBRACE, + [229218] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1006), 1, + ACTIONS(1010), 1, anon_sym_DASH, - ACTIONS(12489), 1, + ACTIONS(11960), 1, anon_sym_DOT, - STATE(7160), 1, + STATE(6719), 1, sym_comment, - STATE(7161), 1, + STATE(6787), 1, aux_sym_cell_path_repeat1, - STATE(7444), 1, - sym_path, - ACTIONS(1008), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [229888] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(999), 1, - anon_sym_DASH, - ACTIONS(12498), 1, - anon_sym_DOT, - STATE(7444), 1, + STATE(6932), 1, sym_path, - STATE(7161), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1001), 9, + ACTIONS(1012), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -548058,15 +506955,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [229916] = 4, + [229248] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(7162), 1, + STATE(6720), 1, sym_comment, - ACTIONS(4000), 2, + ACTIONS(3767), 2, anon_sym_DASH, anon_sym_DOT_DOT2, - ACTIONS(4002), 11, + ACTIONS(3769), 11, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -548078,142 +506975,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [229940] = 4, - ACTIONS(3), 1, + [229272] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1117), 1, - anon_sym_DASH, - STATE(7163), 1, + ACTIONS(11962), 1, + aux_sym__immediate_decimal_token2, + STATE(6721), 1, sym_comment, - ACTIONS(1119), 12, - anon_sym_EQ, + ACTIONS(2364), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_command_token1, + ACTIONS(2362), 8, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_RBRACE, + anon_sym_DOT_DOT2, anon_sym_DOT, - [229964] = 13, + aux_sym_unquoted_token2, + [229298] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2692), 1, - anon_sym_DASH_DASH, - ACTIONS(2694), 1, + ACTIONS(2621), 1, anon_sym_DASH, - ACTIONS(12366), 1, + ACTIONS(2808), 1, + anon_sym_DASH_DASH, + ACTIONS(11658), 1, anon_sym_DOLLAR, - ACTIONS(12368), 1, + ACTIONS(11660), 1, anon_sym_LBRACE, - STATE(4715), 1, + STATE(4162), 1, sym__var, - STATE(5294), 1, + STATE(4583), 1, sym_block, - STATE(5296), 1, + STATE(4584), 1, sym_val_closure, - STATE(7164), 1, + STATE(6722), 1, sym_comment, - STATE(8074), 1, - sym_long_flag_equals_value, - STATE(8390), 1, + STATE(6768), 1, sym__flag, - STATE(2384), 2, + STATE(7692), 1, + sym_long_flag_equals_value, + STATE(1477), 2, sym__blosure, sym_val_variable, - STATE(9344), 2, + STATE(8892), 2, sym_short_flag, sym_long_flag, - [230006] = 5, - ACTIONS(113), 1, + [229340] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12501), 1, - aux_sym__immediate_decimal_token2, - STATE(7165), 1, + ACTIONS(2621), 1, + anon_sym_DASH, + ACTIONS(2808), 1, + anon_sym_DASH_DASH, + ACTIONS(11848), 1, + anon_sym_DOLLAR, + ACTIONS(11850), 1, + anon_sym_LBRACE, + STATE(4298), 1, + sym__var, + STATE(4981), 1, + sym_block, + STATE(4987), 1, + sym_val_closure, + STATE(6706), 1, + sym__flag, + STATE(6723), 1, sym_comment, - ACTIONS(2549), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - ACTIONS(2547), 8, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_LF2, - aux_sym_unquoted_token2, - [230032] = 13, + STATE(7692), 1, + sym_long_flag_equals_value, + STATE(2125), 2, + sym__blosure, + sym_val_variable, + STATE(8892), 2, + sym_short_flag, + sym_long_flag, + [229382] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2351), 1, - anon_sym_DASH_DASH, - ACTIONS(11755), 1, + ACTIONS(5735), 1, + anon_sym_DOLLAR, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(11763), 1, + ACTIONS(11576), 1, aux_sym__immediate_decimal_token4, - ACTIONS(12237), 1, - anon_sym_DOLLAR, - ACTIONS(12503), 1, + ACTIONS(11964), 1, anon_sym_DOT, - ACTIONS(12505), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12507), 1, - aux_sym__immediate_decimal_token3, - STATE(7166), 1, + STATE(3929), 1, + sym__var, + STATE(6724), 1, sym_comment, - STATE(7621), 1, + STATE(8231), 1, sym__immediate_decimal, - STATE(8321), 1, - sym__var, - ACTIONS(2349), 2, - sym_identifier, - anon_sym_DASH, - STATE(7619), 2, + ACTIONS(11966), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(8230), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [230074] = 13, + ACTIONS(2171), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [229420] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(938), 1, - anon_sym_in, - ACTIONS(6253), 1, - anon_sym_DOLLAR, - ACTIONS(9820), 1, - aux_sym_unquoted_token3, - ACTIONS(9822), 1, - aux_sym_unquoted_token5, - ACTIONS(12033), 1, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(12469), 1, - anon_sym_DOT, - ACTIONS(12473), 1, + ACTIONS(11576), 1, aux_sym__immediate_decimal_token4, - STATE(7167), 1, - sym_comment, - STATE(7403), 1, + ACTIONS(11650), 1, + anon_sym_DOLLAR, + ACTIONS(11968), 1, + anon_sym_DOT, + STATE(4470), 1, sym__var, - STATE(8633), 1, + STATE(6725), 1, + sym_comment, + STATE(7368), 1, sym__immediate_decimal, - ACTIONS(12471), 2, + ACTIONS(11970), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(10123), 2, + STATE(7360), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [230116] = 4, + ACTIONS(2171), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [229458] = 12, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + ACTIONS(8909), 1, + aux_sym_unquoted_token5, + ACTIONS(8965), 1, + anon_sym_DOT, + ACTIONS(11972), 1, + anon_sym_DOT_DOT2, + ACTIONS(11976), 1, + sym_filesize_unit, + ACTIONS(11978), 1, + sym_duration_unit, + STATE(6726), 1, + sym_comment, + STATE(10193), 1, + sym__expr_parenthesized_immediate, + ACTIONS(938), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(940), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(11974), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [229498] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1194), 1, + ACTIONS(1037), 1, anon_sym_DASH, - STATE(7168), 1, + STATE(6727), 1, + sym_comment, + ACTIONS(1039), 12, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + [229522] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1072), 1, + anon_sym_DASH, + STATE(6728), 1, sym_comment, - ACTIONS(1196), 12, + ACTIONS(1074), 12, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -548226,365 +507176,310 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - [230140] = 14, - ACTIONS(113), 1, + [229546] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1920), 1, - anon_sym_RBRACK, - ACTIONS(1922), 1, - sym__entry_separator, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(1942), 1, - anon_sym_DOLLAR, - ACTIONS(6772), 1, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(12204), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12206), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(12208), 1, + ACTIONS(11576), 1, aux_sym__immediate_decimal_token4, - ACTIONS(12509), 1, + ACTIONS(11650), 1, + anon_sym_DOLLAR, + ACTIONS(11968), 1, anon_sym_DOT, - STATE(5205), 1, + STATE(4470), 1, sym__var, - STATE(7169), 1, + STATE(6729), 1, sym_comment, - STATE(8218), 1, + STATE(7139), 1, sym__immediate_decimal, - STATE(8668), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [230184] = 14, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1920), 1, - anon_sym_RBRACK, - ACTIONS(1922), 1, - sym__entry_separator, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(5097), 1, - anon_sym_DOLLAR, - ACTIONS(6772), 1, - anon_sym_LPAREN2, - ACTIONS(12336), 1, - anon_sym_DOT, - ACTIONS(12338), 1, + ACTIONS(11970), 2, aux_sym__immediate_decimal_token1, - ACTIONS(12340), 1, aux_sym__immediate_decimal_token3, - ACTIONS(12342), 1, - aux_sym__immediate_decimal_token4, - STATE(5803), 1, - sym__var, - STATE(7170), 1, - sym_comment, - STATE(8832), 1, - sym__immediate_decimal, - STATE(4055), 2, + STATE(7138), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [230228] = 5, - ACTIONS(113), 1, + ACTIONS(2209), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [229584] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12403), 1, - aux_sym__immediate_decimal_token2, - STATE(7171), 1, + STATE(6730), 1, sym_comment, - ACTIONS(923), 5, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(901), 6, + sym_cmd_identifier, anon_sym_DOT_DOT2, anon_sym_DOT, + sym_filesize_unit, + sym_duration_unit, aux_sym_unquoted_token5, - ACTIONS(925), 7, - ts_builtin_sym_end, - anon_sym_LF, + ACTIONS(903), 7, + anon_sym_DASH_DASH, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [230254] = 12, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [229608] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2383), 1, - anon_sym_DASH, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12033), 1, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(12039), 1, + ACTIONS(11576), 1, aux_sym__immediate_decimal_token4, - ACTIONS(12414), 1, + ACTIONS(11650), 1, + anon_sym_DOLLAR, + ACTIONS(11968), 1, anon_sym_DOT, - STATE(7172), 1, - sym_comment, - STATE(7440), 1, + STATE(4470), 1, sym__var, - STATE(7748), 1, + STATE(6731), 1, + sym_comment, + STATE(7148), 1, sym__immediate_decimal, - ACTIONS(2385), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(12416), 2, + ACTIONS(11970), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7744), 2, + STATE(7147), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [230294] = 14, - ACTIONS(113), 1, + ACTIONS(2138), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [229646] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(936), 1, - anon_sym_RBRACK, - ACTIONS(938), 1, - sym__entry_separator, - ACTIONS(5097), 1, - anon_sym_DOLLAR, - ACTIONS(6772), 1, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(9636), 1, - aux_sym_unquoted_token4, - ACTIONS(12336), 1, - anon_sym_DOT, - ACTIONS(12338), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12340), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(12342), 1, + ACTIONS(11576), 1, aux_sym__immediate_decimal_token4, - STATE(5803), 1, + ACTIONS(11650), 1, + anon_sym_DOLLAR, + ACTIONS(11968), 1, + anon_sym_DOT, + STATE(4470), 1, sym__var, - STATE(7173), 1, + STATE(6732), 1, sym_comment, - STATE(10193), 1, + STATE(7156), 1, sym__immediate_decimal, - STATE(4080), 2, + ACTIONS(11970), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7155), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [230338] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12354), 1, - sym_identifier, - ACTIONS(12358), 1, - anon_sym_DOLLAR, - ACTIONS(12360), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12362), 1, - anon_sym_DASH_DASH, - ACTIONS(12364), 1, - anon_sym_DASH, - ACTIONS(12511), 1, - anon_sym_RBRACK, - STATE(7078), 1, - sym_param_long_flag, - STATE(7079), 1, - aux_sym_parameter_parens_repeat1, - STATE(7174), 1, - sym_comment, - STATE(7350), 1, - sym__param_name, - STATE(7383), 1, - sym_param_rest, - STATE(7454), 1, - sym_param_opt, - STATE(7466), 1, - sym_param_short_flag, - STATE(8149), 1, - sym_parameter, - [230384] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12354), 1, - sym_identifier, - ACTIONS(12358), 1, - anon_sym_DOLLAR, - ACTIONS(12360), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12362), 1, - anon_sym_DASH_DASH, - ACTIONS(12364), 1, - anon_sym_DASH, - ACTIONS(12513), 1, - anon_sym_RBRACK, - STATE(7078), 1, - sym_param_long_flag, - STATE(7175), 1, - sym_comment, - STATE(7186), 1, - aux_sym_parameter_parens_repeat1, - STATE(7350), 1, - sym__param_name, - STATE(7383), 1, - sym_param_rest, - STATE(7454), 1, - sym_param_opt, - STATE(7466), 1, - sym_param_short_flag, - STATE(8149), 1, - sym_parameter, - [230430] = 12, + ACTIONS(2148), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [229684] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9820), 1, - aux_sym_unquoted_token4, - ACTIONS(12033), 1, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(12162), 1, + ACTIONS(11650), 1, anon_sym_DOLLAR, - ACTIONS(12515), 1, + ACTIONS(11866), 1, anon_sym_DOT, - ACTIONS(12519), 1, + ACTIONS(11870), 1, aux_sym__immediate_decimal_token4, - STATE(7176), 1, + STATE(6733), 1, sym_comment, - STATE(9422), 1, + STATE(8975), 1, sym__var, - STATE(10168), 1, + STATE(9000), 1, sym__immediate_decimal, - ACTIONS(938), 2, + ACTIONS(1884), 2, anon_sym_PIPE, anon_sym_EQ_GT, - ACTIONS(12517), 2, + ACTIONS(11868), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7645), 2, + STATE(7172), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [230470] = 14, + [229724] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1920), 1, - anon_sym_RBRACK, - ACTIONS(1922), 1, - sym__entry_separator, - ACTIONS(1934), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1942), 1, - anon_sym_DOLLAR, - ACTIONS(6772), 1, + STATE(6734), 1, + sym_comment, + ACTIONS(2404), 4, + anon_sym_LF, anon_sym_LPAREN2, - ACTIONS(12289), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12291), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(12293), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12521), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2402), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, anon_sym_DOT, - STATE(5205), 1, - sym__var, - STATE(7177), 1, + aux_sym_unquoted_token2, + [229748] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(985), 1, + anon_sym_DASH, + ACTIONS(11980), 1, + anon_sym_DOT, + STATE(6932), 1, + sym_path, + STATE(6735), 2, sym_comment, - STATE(8038), 1, - sym__immediate_decimal, - STATE(8668), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [230514] = 12, + aux_sym_cell_path_repeat1, + ACTIONS(987), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [229776] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(6253), 1, + ACTIONS(1838), 1, + anon_sym_DASH, + ACTIONS(5725), 1, anon_sym_DOLLAR, - ACTIONS(12033), 1, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(12281), 1, + ACTIONS(11543), 1, aux_sym__immediate_decimal_token4, - ACTIONS(12523), 1, + ACTIONS(11876), 1, anon_sym_DOT, - STATE(4486), 1, - sym__var, - STATE(7178), 1, + STATE(6736), 1, sym_comment, - STATE(8345), 1, + STATE(6788), 1, sym__immediate_decimal, - ACTIONS(1922), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(12279), 2, + STATE(7000), 1, + sym__var, + ACTIONS(1840), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(11878), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(9432), 2, + STATE(7403), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [230554] = 12, - ACTIONS(3), 1, + [229816] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1934), 1, + ACTIONS(11832), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(11983), 1, + anon_sym_DOT, + STATE(6737), 1, + sym_comment, + ACTIONS(2358), 5, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2356), 6, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(12033), 1, + [229844] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6738), 1, + sym_comment, + ACTIONS(2229), 2, + anon_sym_DASH, + anon_sym_DOT_DOT2, + ACTIONS(2231), 11, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [229868] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(11986), 1, + aux_sym__immediate_decimal_token2, + STATE(6739), 1, + sym_comment, + ACTIONS(2364), 4, anon_sym_LPAREN2, - ACTIONS(12162), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_command_token1, + ACTIONS(2362), 8, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_LF2, + aux_sym_unquoted_token2, + [229894] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(922), 1, + anon_sym_in, + ACTIONS(5735), 1, anon_sym_DOLLAR, - ACTIONS(12515), 1, + ACTIONS(9209), 1, + aux_sym_unquoted_token3, + ACTIONS(9249), 1, + aux_sym_unquoted_token5, + ACTIONS(11537), 1, + anon_sym_LPAREN2, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12519), 1, + ACTIONS(11992), 1, aux_sym__immediate_decimal_token4, - STATE(7179), 1, + STATE(6740), 1, sym_comment, - STATE(9422), 1, + STATE(6987), 1, sym__var, - STATE(9464), 1, + STATE(7934), 1, sym__immediate_decimal, - ACTIONS(1922), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(12517), 2, + ACTIONS(11990), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7671), 2, + STATE(9652), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [230594] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12354), 1, - sym_identifier, - ACTIONS(12358), 1, - anon_sym_DOLLAR, - ACTIONS(12360), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12362), 1, - anon_sym_DASH_DASH, - ACTIONS(12364), 1, - anon_sym_DASH, - ACTIONS(12525), 1, - anon_sym_RPAREN, - STATE(7078), 1, - sym_param_long_flag, - STATE(7180), 1, - sym_comment, - STATE(7192), 1, - aux_sym_parameter_parens_repeat1, - STATE(7350), 1, - sym__param_name, - STATE(7383), 1, - sym_param_rest, - STATE(7454), 1, - sym_param_opt, - STATE(7466), 1, - sym_param_short_flag, - STATE(8149), 1, - sym_parameter, - [230640] = 6, + [229936] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3518), 1, + ACTIONS(3312), 1, anon_sym_DASH, - ACTIONS(12527), 1, + ACTIONS(11994), 1, anon_sym_DOT_DOT2, - STATE(7181), 1, + STATE(6741), 1, sym_comment, - ACTIONS(12529), 2, + ACTIONS(11996), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(3520), 9, + ACTIONS(3314), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -548594,179 +507489,275 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [230668] = 14, + [229964] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(6742), 1, + sym_comment, + ACTIONS(934), 6, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token5, + ACTIONS(936), 7, + ts_builtin_sym_end, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_command_token1, + [229988] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1920), 1, + ACTIONS(1724), 1, + anon_sym_DOLLAR, + ACTIONS(1838), 1, anon_sym_RBRACK, - ACTIONS(1922), 1, + ACTIONS(1840), 1, sym__entry_separator, - ACTIONS(1934), 1, + ACTIONS(1844), 1, aux_sym__unquoted_in_list_token2, - ACTIONS(5097), 1, + ACTIONS(6322), 1, + anon_sym_LPAREN2, + ACTIONS(11644), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11646), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(11648), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11998), 1, + anon_sym_DOT, + STATE(4556), 1, + sym__var, + STATE(6743), 1, + sym_comment, + STATE(7716), 1, + sym__immediate_decimal, + STATE(8371), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [230032] = 13, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(2209), 1, + sym__entry_separator, + ACTIONS(4793), 1, anon_sym_DOLLAR, - ACTIONS(6772), 1, + ACTIONS(6322), 1, + anon_sym_LPAREN2, + ACTIONS(11648), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11916), 1, + anon_sym_DOT, + ACTIONS(11918), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11920), 1, + aux_sym__immediate_decimal_token3, + STATE(3710), 1, + sym__immediate_decimal, + STATE(5406), 1, + sym__var, + STATE(6744), 1, + sym_comment, + ACTIONS(2207), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(3706), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [230074] = 14, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1838), 1, + anon_sym_RBRACK, + ACTIONS(1840), 1, + sym__entry_separator, + ACTIONS(1844), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(4793), 1, + anon_sym_DOLLAR, + ACTIONS(6322), 1, anon_sym_LPAREN2, - ACTIONS(12461), 1, + ACTIONS(11932), 1, anon_sym_DOT, - ACTIONS(12463), 1, + ACTIONS(11934), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12465), 1, + ACTIONS(11936), 1, aux_sym__immediate_decimal_token3, - ACTIONS(12467), 1, + ACTIONS(11938), 1, aux_sym__immediate_decimal_token4, - STATE(5803), 1, + STATE(5406), 1, sym__var, - STATE(7182), 1, + STATE(6745), 1, sym_comment, - STATE(9146), 1, + STATE(8694), 1, sym__immediate_decimal, - STATE(4055), 2, + STATE(3671), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [230712] = 13, - ACTIONS(3), 1, + [230118] = 14, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2694), 1, - anon_sym_DASH, - ACTIONS(2744), 1, - anon_sym_DASH_DASH, - ACTIONS(12179), 1, + ACTIONS(1882), 1, + anon_sym_RBRACK, + ACTIONS(1884), 1, + sym__entry_separator, + ACTIONS(1886), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(4793), 1, anon_sym_DOLLAR, - ACTIONS(12181), 1, - anon_sym_LBRACE, - STATE(4616), 1, + ACTIONS(6322), 1, + anon_sym_LPAREN2, + ACTIONS(11932), 1, + anon_sym_DOT, + ACTIONS(11934), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11936), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(11938), 1, + aux_sym__immediate_decimal_token4, + STATE(5406), 1, sym__var, - STATE(5084), 1, - sym_block, - STATE(5126), 1, - sym_val_closure, - STATE(7183), 1, + STATE(6746), 1, sym_comment, - STATE(7193), 1, - sym__flag, - STATE(8074), 1, - sym_long_flag_equals_value, - STATE(1934), 2, - sym__blosure, + STATE(8498), 1, + sym__immediate_decimal, + STATE(3719), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - STATE(9344), 2, - sym_short_flag, - sym_long_flag, - [230754] = 4, - ACTIONS(3), 1, + [230162] = 8, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3518), 1, - anon_sym_DASH, - STATE(7184), 1, + ACTIONS(3356), 1, + anon_sym_LF, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(12000), 1, + anon_sym_DOT_DOT2, + STATE(6747), 1, sym_comment, - ACTIONS(3520), 12, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(3362), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(12002), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3354), 6, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, + anon_sym_DASH, anon_sym_RBRACE, - anon_sym_EQ_GT, - [230778] = 13, - ACTIONS(113), 1, + [230194] = 14, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2385), 1, - sym__entry_separator, - ACTIONS(5097), 1, + ACTIONS(920), 1, + sym_identifier, + ACTIONS(9231), 1, + aux_sym_unquoted_token3, + ACTIONS(11604), 1, anon_sym_DOLLAR, - ACTIONS(6772), 1, + ACTIONS(11606), 1, anon_sym_LPAREN2, - ACTIONS(12293), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12475), 1, + ACTIONS(11616), 1, + aux_sym_unquoted_token5, + ACTIONS(11944), 1, anon_sym_DOT, - ACTIONS(12477), 1, + ACTIONS(11946), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12479), 1, + ACTIONS(11948), 1, aux_sym__immediate_decimal_token3, - STATE(4131), 1, - sym__immediate_decimal, - STATE(5803), 1, - sym__var, - STATE(7185), 1, + ACTIONS(11950), 1, + aux_sym__immediate_decimal_token4, + STATE(6748), 1, sym_comment, - ACTIONS(2383), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(4129), 2, + STATE(7135), 1, + sym__var, + STATE(7738), 1, + sym__immediate_decimal, + STATE(7982), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [230820] = 15, + [230238] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12354), 1, + ACTIONS(11810), 1, sym_identifier, - ACTIONS(12358), 1, + ACTIONS(11814), 1, anon_sym_DOLLAR, - ACTIONS(12360), 1, + ACTIONS(11816), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12362), 1, + ACTIONS(11818), 1, anon_sym_DASH_DASH, - ACTIONS(12364), 1, + ACTIONS(11820), 1, anon_sym_DASH, - ACTIONS(12531), 1, + ACTIONS(12004), 1, anon_sym_RBRACK, - STATE(7078), 1, + STATE(6650), 1, sym_param_long_flag, - STATE(7079), 1, - aux_sym_parameter_parens_repeat1, - STATE(7186), 1, + STATE(6749), 1, sym_comment, - STATE(7350), 1, + STATE(6754), 1, + aux_sym_parameter_parens_repeat1, + STATE(6917), 1, sym__param_name, - STATE(7383), 1, + STATE(6934), 1, + sym_param_short_flag, + STATE(7066), 1, sym_param_rest, - STATE(7454), 1, + STATE(7081), 1, sym_param_opt, - STATE(7466), 1, - sym_param_short_flag, - STATE(8149), 1, + STATE(7577), 1, sym_parameter, - [230866] = 4, - ACTIONS(113), 1, + [230284] = 15, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7187), 1, - sym_comment, - ACTIONS(2439), 4, - anon_sym_LF, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2437), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(11810), 1, + sym_identifier, + ACTIONS(11814), 1, + anon_sym_DOLLAR, + ACTIONS(11816), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11818), 1, anon_sym_DASH_DASH, + ACTIONS(11820), 1, anon_sym_DASH, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - [230890] = 5, + ACTIONS(12006), 1, + anon_sym_RPAREN, + STATE(6650), 1, + sym_param_long_flag, + STATE(6750), 1, + sym_comment, + STATE(6755), 1, + aux_sym_parameter_parens_repeat1, + STATE(6917), 1, + sym__param_name, + STATE(6934), 1, + sym_param_short_flag, + STATE(7066), 1, + sym_param_rest, + STATE(7081), 1, + sym_param_opt, + STATE(7577), 1, + sym_parameter, + [230330] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12235), 1, + ACTIONS(12008), 1, aux_sym__immediate_decimal_token2, - STATE(7188), 1, + STATE(6751), 1, sym_comment, - ACTIONS(909), 5, + ACTIONS(901), 5, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token5, - ACTIONS(911), 7, + ACTIONS(903), 7, ts_builtin_sym_end, anon_sym_LF, anon_sym_LPAREN2, @@ -548774,385 +507765,357 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [230916] = 13, - ACTIONS(113), 1, + [230356] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1942), 1, + ACTIONS(2621), 1, + anon_sym_DASH, + ACTIONS(2808), 1, + anon_sym_DASH_DASH, + ACTIONS(11848), 1, anon_sym_DOLLAR, - ACTIONS(2389), 1, - sym__entry_separator, - ACTIONS(6772), 1, - anon_sym_LPAREN2, - ACTIONS(12293), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12533), 1, - anon_sym_DOT, - ACTIONS(12535), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12537), 1, - aux_sym__immediate_decimal_token3, - STATE(5205), 1, + ACTIONS(11850), 1, + anon_sym_LBRACE, + STATE(4298), 1, sym__var, - STATE(7189), 1, + STATE(4981), 1, + sym_block, + STATE(4987), 1, + sym_val_closure, + STATE(6671), 1, + sym__flag, + STATE(6752), 1, sym_comment, - STATE(8579), 1, - sym__immediate_decimal, - ACTIONS(2387), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(8567), 2, - sym__expr_parenthesized_immediate, + STATE(7692), 1, + sym_long_flag_equals_value, + STATE(2118), 2, + sym__blosure, sym_val_variable, - [230958] = 14, + STATE(8892), 2, + sym_short_flag, + sym_long_flag, + [230398] = 14, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2002), 1, + ACTIONS(1724), 1, + anon_sym_DOLLAR, + ACTIONS(1838), 1, anon_sym_RBRACK, - ACTIONS(2004), 1, + ACTIONS(1840), 1, sym__entry_separator, - ACTIONS(2006), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5097), 1, - anon_sym_DOLLAR, - ACTIONS(6772), 1, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(6322), 1, anon_sym_LPAREN2, - ACTIONS(12461), 1, - anon_sym_DOT, - ACTIONS(12463), 1, + ACTIONS(11664), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12465), 1, + ACTIONS(11666), 1, aux_sym__immediate_decimal_token3, - ACTIONS(12467), 1, + ACTIONS(11668), 1, aux_sym__immediate_decimal_token4, - STATE(5803), 1, + ACTIONS(12010), 1, + anon_sym_DOT, + STATE(4556), 1, sym__var, - STATE(7190), 1, + STATE(6753), 1, sym_comment, - STATE(8942), 1, + STATE(7907), 1, sym__immediate_decimal, - STATE(4132), 2, + STATE(8371), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [231002] = 4, + [230442] = 15, ACTIONS(3), 1, anon_sym_POUND, - STATE(7191), 1, - sym_comment, - ACTIONS(3960), 2, - anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(3962), 11, + ACTIONS(11810), 1, sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(11814), 1, anon_sym_DOLLAR, + ACTIONS(11816), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(11818), 1, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [231026] = 15, + ACTIONS(11820), 1, + anon_sym_DASH, + ACTIONS(12012), 1, + anon_sym_RBRACK, + STATE(6650), 1, + sym_param_long_flag, + STATE(6651), 1, + aux_sym_parameter_parens_repeat1, + STATE(6754), 1, + sym_comment, + STATE(6917), 1, + sym__param_name, + STATE(6934), 1, + sym_param_short_flag, + STATE(7066), 1, + sym_param_rest, + STATE(7081), 1, + sym_param_opt, + STATE(7577), 1, + sym_parameter, + [230488] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12354), 1, + ACTIONS(11810), 1, sym_identifier, - ACTIONS(12358), 1, + ACTIONS(11814), 1, anon_sym_DOLLAR, - ACTIONS(12360), 1, + ACTIONS(11816), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12362), 1, + ACTIONS(11818), 1, anon_sym_DASH_DASH, - ACTIONS(12364), 1, + ACTIONS(11820), 1, anon_sym_DASH, - ACTIONS(12539), 1, + ACTIONS(12014), 1, anon_sym_RPAREN, - STATE(7078), 1, + STATE(6650), 1, sym_param_long_flag, - STATE(7079), 1, + STATE(6651), 1, aux_sym_parameter_parens_repeat1, - STATE(7192), 1, + STATE(6755), 1, sym_comment, - STATE(7350), 1, + STATE(6917), 1, sym__param_name, - STATE(7383), 1, - sym_param_rest, - STATE(7454), 1, - sym_param_opt, - STATE(7466), 1, + STATE(6934), 1, sym_param_short_flag, - STATE(8149), 1, + STATE(7066), 1, + sym_param_rest, + STATE(7081), 1, + sym_param_opt, + STATE(7577), 1, sym_parameter, - [231072] = 13, + [230534] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2692), 1, - anon_sym_DASH_DASH, - ACTIONS(2694), 1, - anon_sym_DASH, - ACTIONS(12179), 1, - anon_sym_DOLLAR, - ACTIONS(12181), 1, - anon_sym_LBRACE, - STATE(4616), 1, - sym__var, - STATE(5084), 1, - sym_block, - STATE(5126), 1, - sym_val_closure, - STATE(7193), 1, + ACTIONS(12016), 1, + aux_sym__immediate_decimal_token2, + STATE(6756), 1, sym_comment, - STATE(8074), 1, - sym_long_flag_equals_value, - STATE(8370), 1, - sym__flag, - STATE(1955), 2, - sym__blosure, - sym_val_variable, - STATE(9344), 2, - sym_short_flag, - sym_long_flag, - [231114] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(911), 4, anon_sym_DASH, - ACTIONS(12541), 1, anon_sym_DOT_DOT2, - STATE(7194), 1, - sym_comment, - ACTIONS(12543), 2, + anon_sym_DOT, + aux_sym_unquoted_token5, + ACTIONS(913), 8, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(3868), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, + sym_filesize_unit, + sym_duration_unit, + [230560] = 14, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1838), 1, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1840), 1, + sym__entry_separator, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(4793), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [231142] = 5, + ACTIONS(6322), 1, + anon_sym_LPAREN2, + ACTIONS(11838), 1, + anon_sym_DOT, + ACTIONS(11840), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11842), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(11844), 1, + aux_sym__immediate_decimal_token4, + STATE(5406), 1, + sym__var, + STATE(6757), 1, + sym_comment, + STATE(9716), 1, + sym__immediate_decimal, + STATE(3671), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [230604] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12545), 1, + ACTIONS(12018), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12020), 1, aux_sym__immediate_decimal_token2, - STATE(7195), 1, + STATE(6758), 1, sym_comment, - ACTIONS(2549), 4, + ACTIONS(2231), 5, + ts_builtin_sym_end, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, aux_sym_command_token1, - ACTIONS(2547), 8, + ACTIONS(2229), 6, anon_sym_SEMI, anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token2, - [231168] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2843), 1, - anon_sym_DASH, - STATE(7196), 1, - sym_comment, - ACTIONS(2845), 12, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [231192] = 5, + [230632] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12547), 1, + ACTIONS(12022), 1, + anon_sym_DOT, + ACTIONS(12025), 1, aux_sym__immediate_decimal_token2, - STATE(7197), 1, + STATE(6759), 1, sym_comment, - ACTIONS(917), 5, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token5, - ACTIONS(919), 7, - ts_builtin_sym_end, - anon_sym_LF, + ACTIONS(2358), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [231218] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4006), 1, - anon_sym_DASH, - STATE(7198), 1, - sym_comment, - ACTIONS(4008), 12, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, + aux_sym_command_token1, + ACTIONS(2356), 7, + anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [231242] = 4, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + anon_sym_LF2, + aux_sym_unquoted_token2, + [230660] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3874), 1, - anon_sym_DASH, - STATE(7199), 1, + ACTIONS(12027), 1, + aux_sym__immediate_decimal_token2, + STATE(6760), 1, sym_comment, - ACTIONS(3876), 12, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(2358), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_command_token1, + ACTIONS(2356), 8, + anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - [231266] = 12, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token2, + [230686] = 14, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2349), 1, - anon_sym_DASH, - ACTIONS(6247), 1, + ACTIONS(1724), 1, anon_sym_DOLLAR, - ACTIONS(12033), 1, + ACTIONS(1838), 1, + anon_sym_RBRACK, + ACTIONS(1840), 1, + sym__entry_separator, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(6322), 1, anon_sym_LPAREN2, - ACTIONS(12039), 1, + ACTIONS(11664), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11666), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(11668), 1, aux_sym__immediate_decimal_token4, - ACTIONS(12414), 1, + ACTIONS(12029), 1, anon_sym_DOT, - STATE(7200), 1, - sym_comment, - STATE(7440), 1, + STATE(4556), 1, sym__var, - STATE(7736), 1, + STATE(6761), 1, + sym_comment, + STATE(7646), 1, sym__immediate_decimal, - ACTIONS(2351), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(12416), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7735), 2, + STATE(8371), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [231306] = 12, - ACTIONS(3), 1, + [230730] = 14, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(959), 1, - anon_sym_DASH, - ACTIONS(2397), 1, + ACTIONS(1838), 1, + anon_sym_RBRACK, + ACTIONS(1840), 1, + sym__entry_separator, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(4793), 1, + anon_sym_DOLLAR, + ACTIONS(6322), 1, anon_sym_LPAREN2, - ACTIONS(9249), 1, + ACTIONS(11838), 1, anon_sym_DOT, - ACTIONS(9253), 1, - aux_sym_unquoted_token5, - ACTIONS(12549), 1, - anon_sym_DOT_DOT2, - ACTIONS(12553), 1, - sym_filesize_unit, - ACTIONS(12555), 1, - sym_duration_unit, - STATE(7201), 1, + ACTIONS(11840), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11842), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(11844), 1, + aux_sym__immediate_decimal_token4, + STATE(5406), 1, + sym__var, + STATE(6762), 1, sym_comment, - STATE(10701), 1, + STATE(8929), 1, + sym__immediate_decimal, + STATE(3671), 2, sym__expr_parenthesized_immediate, - ACTIONS(12551), 2, + sym_val_variable, + [230774] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(11739), 1, + aux_sym__immediate_decimal_token2, + STATE(6763), 1, + sym_comment, + ACTIONS(2231), 5, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(961), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [231346] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12354), 1, - sym_identifier, - ACTIONS(12358), 1, - anon_sym_DOLLAR, - ACTIONS(12360), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12362), 1, + ACTIONS(2229), 7, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_DASH_DASH, - ACTIONS(12364), 1, anon_sym_DASH, - ACTIONS(12557), 1, - anon_sym_RPAREN, - STATE(7078), 1, - sym_param_long_flag, - STATE(7079), 1, - aux_sym_parameter_parens_repeat1, - STATE(7202), 1, - sym_comment, - STATE(7350), 1, - sym__param_name, - STATE(7383), 1, - sym_param_rest, - STATE(7454), 1, - sym_param_opt, - STATE(7466), 1, - sym_param_short_flag, - STATE(8149), 1, - sym_parameter, - [231392] = 4, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token2, + [230800] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(7203), 1, + STATE(6764), 1, sym_comment, - ACTIONS(2549), 4, + ACTIONS(895), 6, anon_sym_LF, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2547), 9, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(893), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT, - aux_sym_unquoted_token2, - [231416] = 4, + aux_sym_unquoted_token5, + [230824] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(7204), 1, - sym_comment, - ACTIONS(2547), 2, + ACTIONS(3354), 1, anon_sym_DASH, + ACTIONS(12031), 1, anon_sym_DOT_DOT2, - ACTIONS(2549), 11, + STATE(6765), 1, + sym_comment, + ACTIONS(12033), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3356), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -549162,786 +508125,965 @@ 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, - [231440] = 13, + [230852] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2361), 1, + ACTIONS(2209), 1, anon_sym_DASH_DASH, - ACTIONS(11755), 1, + ACTIONS(11229), 1, anon_sym_LPAREN2, - ACTIONS(11763), 1, + ACTIONS(11237), 1, aux_sym__immediate_decimal_token4, - ACTIONS(12237), 1, + ACTIONS(11670), 1, anon_sym_DOLLAR, - ACTIONS(12503), 1, + ACTIONS(11892), 1, anon_sym_DOT, - ACTIONS(12505), 1, + ACTIONS(11894), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12507), 1, + ACTIONS(11896), 1, aux_sym__immediate_decimal_token3, - STATE(7205), 1, + STATE(6766), 1, sym_comment, - STATE(7626), 1, + STATE(7288), 1, sym__immediate_decimal, - STATE(8321), 1, + STATE(7915), 1, + sym__var, + ACTIONS(2207), 2, + sym_identifier, + anon_sym_DASH, + STATE(7401), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [230894] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2138), 1, + anon_sym_DASH_DASH, + ACTIONS(11229), 1, + anon_sym_LPAREN2, + ACTIONS(11237), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11670), 1, + anon_sym_DOLLAR, + ACTIONS(11892), 1, + anon_sym_DOT, + ACTIONS(11894), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11896), 1, + aux_sym__immediate_decimal_token3, + STATE(6767), 1, + sym_comment, + STATE(7334), 1, + sym__immediate_decimal, + STATE(7915), 1, sym__var, - ACTIONS(2359), 2, + ACTIONS(2136), 2, sym_identifier, anon_sym_DASH, - STATE(7624), 2, + STATE(7301), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [231482] = 13, + [230936] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2694), 1, + ACTIONS(2621), 1, anon_sym_DASH, - ACTIONS(2744), 1, + ACTIONS(2808), 1, anon_sym_DASH_DASH, - ACTIONS(12366), 1, + ACTIONS(11658), 1, anon_sym_DOLLAR, - ACTIONS(12368), 1, + ACTIONS(11660), 1, anon_sym_LBRACE, - STATE(4715), 1, + STATE(4162), 1, sym__var, - STATE(5294), 1, + STATE(4583), 1, sym_block, - STATE(5296), 1, + STATE(4584), 1, sym_val_closure, - STATE(7164), 1, + STATE(6662), 1, sym__flag, - STATE(7206), 1, + STATE(6768), 1, sym_comment, - STATE(8074), 1, + STATE(7692), 1, sym_long_flag_equals_value, - STATE(2630), 2, + STATE(1807), 2, sym__blosure, sym_val_variable, - STATE(9344), 2, + STATE(8892), 2, sym_short_flag, sym_long_flag, - [231524] = 13, + [230978] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2389), 1, + ACTIONS(2148), 1, anon_sym_DASH_DASH, - ACTIONS(12092), 1, - anon_sym_DOLLAR, - ACTIONS(12094), 1, + ACTIONS(11229), 1, anon_sym_LPAREN2, - ACTIONS(12559), 1, + ACTIONS(11237), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11670), 1, + anon_sym_DOLLAR, + ACTIONS(11892), 1, anon_sym_DOT, - ACTIONS(12561), 1, + ACTIONS(11894), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12563), 1, + ACTIONS(11896), 1, aux_sym__immediate_decimal_token3, - ACTIONS(12565), 1, - aux_sym__immediate_decimal_token4, - STATE(7207), 1, + STATE(6769), 1, sym_comment, - STATE(7579), 1, - sym__var, - STATE(8286), 1, + STATE(7246), 1, sym__immediate_decimal, - ACTIONS(2387), 2, + STATE(7915), 1, + sym__var, + ACTIONS(2146), 2, sym_identifier, anon_sym_DASH, - STATE(8285), 2, + STATE(7346), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [231566] = 6, - ACTIONS(113), 1, + [231020] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12436), 1, + ACTIONS(11747), 1, aux_sym__immediate_decimal_token2, - ACTIONS(12567), 1, - anon_sym_DOT, - STATE(7208), 1, + STATE(6770), 1, sym_comment, - ACTIONS(2583), 4, + ACTIONS(893), 4, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token5, + ACTIONS(895), 8, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - ACTIONS(2581), 7, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [231594] = 14, + sym_filesize_unit, + sym_duration_unit, + [231046] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(936), 1, - sym_identifier, - ACTIONS(9701), 1, - aux_sym_unquoted_token3, - ACTIONS(12092), 1, + ACTIONS(922), 1, + anon_sym_LBRACE, + ACTIONS(5735), 1, anon_sym_DOLLAR, - ACTIONS(12094), 1, - anon_sym_LPAREN2, - ACTIONS(12104), 1, + ACTIONS(9209), 1, + aux_sym_unquoted_token3, + ACTIONS(9249), 1, aux_sym_unquoted_token5, - ACTIONS(12481), 1, + ACTIONS(11537), 1, + anon_sym_LPAREN2, + ACTIONS(11852), 1, anon_sym_DOT, - ACTIONS(12483), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12485), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(12487), 1, + ACTIONS(11856), 1, aux_sym__immediate_decimal_token4, - STATE(7209), 1, + STATE(6771), 1, sym_comment, - STATE(7579), 1, + STATE(6987), 1, sym__var, - STATE(8394), 1, + STATE(8020), 1, sym__immediate_decimal, - STATE(8322), 2, + ACTIONS(11854), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7880), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [231638] = 13, + [231088] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2385), 1, - anon_sym_DASH_DASH, - ACTIONS(11755), 1, - anon_sym_LPAREN2, - ACTIONS(11763), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12237), 1, + STATE(6772), 1, + sym_comment, + ACTIONS(1061), 2, + anon_sym_DASH, + anon_sym_DOT_DOT2, + ACTIONS(1063), 11, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(12503), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [231112] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(12027), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(12035), 1, anon_sym_DOT, - ACTIONS(12505), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12507), 1, - aux_sym__immediate_decimal_token3, - STATE(7210), 1, + STATE(6773), 1, sym_comment, - STATE(7631), 1, - sym__immediate_decimal, - STATE(8321), 1, - sym__var, - ACTIONS(2383), 2, - sym_identifier, - anon_sym_DASH, - STATE(7630), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [231680] = 13, + ACTIONS(2358), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_command_token1, + ACTIONS(2356), 7, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [231140] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2389), 1, - anon_sym_DASH_DASH, - ACTIONS(11755), 1, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(5735), 1, + anon_sym_DOLLAR, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(11763), 1, + ACTIONS(11692), 1, aux_sym__immediate_decimal_token4, - ACTIONS(12237), 1, - anon_sym_DOLLAR, - ACTIONS(12503), 1, + ACTIONS(12038), 1, anon_sym_DOT, - ACTIONS(12505), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12507), 1, - aux_sym__immediate_decimal_token3, - STATE(7211), 1, + STATE(3929), 1, + sym__var, + STATE(6774), 1, sym_comment, - STATE(7581), 1, + STATE(7826), 1, sym__immediate_decimal, - STATE(8321), 1, - sym__var, - ACTIONS(2387), 2, - sym_identifier, - anon_sym_DASH, - STATE(7580), 2, + ACTIONS(1840), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(11690), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(8983), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [231722] = 12, + [231180] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2002), 1, - anon_sym_DASH, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12033), 1, - anon_sym_LPAREN2, - ACTIONS(12039), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12414), 1, + ACTIONS(12016), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(12040), 1, anon_sym_DOT, - STATE(7198), 1, - sym__immediate_decimal, - STATE(7212), 1, + STATE(6775), 1, sym_comment, - STATE(7440), 1, - sym__var, - ACTIONS(2004), 2, + ACTIONS(911), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token5, + ACTIONS(913), 8, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(12416), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7753), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [231762] = 13, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [231208] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2389), 1, + ACTIONS(2138), 1, sym__entry_separator, - ACTIONS(5097), 1, + ACTIONS(4793), 1, anon_sym_DOLLAR, - ACTIONS(6772), 1, + ACTIONS(6322), 1, anon_sym_LPAREN2, - ACTIONS(12293), 1, + ACTIONS(11648), 1, aux_sym__immediate_decimal_token4, - ACTIONS(12475), 1, + ACTIONS(11916), 1, anon_sym_DOT, - ACTIONS(12477), 1, + ACTIONS(11918), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12479), 1, + ACTIONS(11920), 1, aux_sym__immediate_decimal_token3, - STATE(4052), 1, + STATE(3714), 1, sym__immediate_decimal, - STATE(5803), 1, + STATE(5406), 1, sym__var, - STATE(7213), 1, + STATE(6776), 1, sym_comment, - ACTIONS(2387), 2, + ACTIONS(2136), 2, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(4051), 2, + STATE(3712), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [231804] = 6, + [231250] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12570), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12572), 1, - aux_sym__immediate_decimal_token2, - STATE(7214), 1, + ACTIONS(1041), 1, + anon_sym_DASH, + STATE(6777), 1, sym_comment, - ACTIONS(2437), 4, - sym_cmd_identifier, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(2439), 7, + ACTIONS(1043), 12, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [231832] = 13, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + [231274] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(938), 1, - anon_sym_LBRACE, - ACTIONS(1584), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6253), 1, + ACTIONS(1002), 1, + anon_sym_DASH, + ACTIONS(11960), 1, + anon_sym_DOT, + STATE(6719), 1, + sym_path, + STATE(6772), 1, + sym_cell_path, + STATE(6778), 1, + sym_comment, + ACTIONS(1004), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(9818), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [231304] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(12043), 1, anon_sym_DOT, - ACTIONS(9820), 1, - aux_sym_unquoted_token3, - ACTIONS(9822), 1, + ACTIONS(12046), 1, + aux_sym__immediate_decimal_token2, + STATE(6779), 1, + sym_comment, + ACTIONS(911), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DOT_DOT2, aux_sym_unquoted_token5, - ACTIONS(12033), 1, + ACTIONS(913), 7, + ts_builtin_sym_end, + anon_sym_LF, anon_sym_LPAREN2, - STATE(7215), 1, - sym_comment, - STATE(7403), 1, - sym__var, - STATE(8279), 1, - sym__immediate_decimal, - ACTIONS(1582), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(9452), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [231874] = 12, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [231332] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2006), 1, + ACTIONS(1844), 1, aux_sym_unquoted_token2, - ACTIONS(12033), 1, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(12162), 1, + ACTIONS(11650), 1, anon_sym_DOLLAR, - ACTIONS(12515), 1, + ACTIONS(11866), 1, anon_sym_DOT, - ACTIONS(12519), 1, + ACTIONS(11870), 1, aux_sym__immediate_decimal_token4, - STATE(7216), 1, + STATE(6780), 1, sym_comment, - STATE(9422), 1, + STATE(8975), 1, sym__var, - STATE(9502), 1, + STATE(8996), 1, sym__immediate_decimal, - ACTIONS(2004), 2, + ACTIONS(1840), 2, anon_sym_PIPE, anon_sym_EQ_GT, - ACTIONS(12517), 2, + ACTIONS(11868), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7753), 2, + STATE(7403), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [231914] = 13, + [231372] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2694), 1, - anon_sym_DASH, - ACTIONS(3041), 1, - anon_sym_DASH_DASH, - ACTIONS(3880), 1, - anon_sym_COLON, - ACTIONS(6247), 1, + ACTIONS(922), 1, + anon_sym_in, + ACTIONS(5735), 1, anon_sym_DOLLAR, - ACTIONS(12574), 1, - sym_identifier, - STATE(7217), 1, + ACTIONS(9209), 1, + aux_sym_unquoted_token3, + ACTIONS(9249), 1, + aux_sym_unquoted_token5, + ACTIONS(11537), 1, + anon_sym_LPAREN2, + ACTIONS(11988), 1, + anon_sym_DOT, + ACTIONS(11992), 1, + aux_sym__immediate_decimal_token4, + STATE(6781), 1, sym_comment, - STATE(8507), 1, - sym__variable_name, - STATE(8729), 1, - sym__var, - STATE(8921), 1, - sym_val_variable, - STATE(9436), 1, - sym__flag, - STATE(9751), 1, - sym_long_flag_equals_value, - STATE(9344), 2, - sym_short_flag, - sym_long_flag, - [231955] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4383), 1, - anon_sym_not, - ACTIONS(12576), 1, - anon_sym_LPAREN, - ACTIONS(12578), 1, - anon_sym_DOLLAR, - ACTIONS(12580), 1, - anon_sym_DASH, - STATE(5098), 1, + STATE(6987), 1, sym__var, - STATE(5723), 1, - sym__expr_unary_minus, - STATE(7218), 1, - sym_comment, - ACTIONS(12582), 2, - anon_sym_true, - anon_sym_false, - STATE(5890), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, + STATE(8323), 1, + sym__immediate_decimal, + ACTIONS(11990), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(9652), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - [231990] = 5, + [231414] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12584), 1, + ACTIONS(12025), 1, aux_sym__immediate_decimal_token2, - STATE(7219), 1, + STATE(6782), 1, sym_comment, - ACTIONS(2583), 5, - ts_builtin_sym_end, + ACTIONS(2358), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, aux_sym_command_token1, - ACTIONS(2581), 6, + ACTIONS(2356), 8, anon_sym_SEMI, anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOT_DOT2, anon_sym_DOT, + anon_sym_LF2, aux_sym_unquoted_token2, - [232015] = 5, + [231440] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12588), 1, - anon_sym_QMARK, - ACTIONS(12590), 1, - anon_sym_DASH, - STATE(7220), 1, + STATE(6783), 1, sym_comment, - ACTIONS(12586), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, + ACTIONS(3721), 2, + anon_sym_DASH, + anon_sym_DOT_DOT2, + ACTIONS(3723), 11, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [232040] = 5, - ACTIONS(3), 1, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [231464] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12592), 1, + ACTIONS(12046), 1, aux_sym__immediate_decimal_token2, - STATE(7221), 1, + STATE(6784), 1, sym_comment, - ACTIONS(925), 4, - anon_sym_DASH_DASH, + ACTIONS(911), 5, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token5, + ACTIONS(913), 7, + ts_builtin_sym_end, + anon_sym_LF, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(923), 7, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + [231490] = 13, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(2148), 1, + sym__entry_separator, + ACTIONS(4793), 1, + anon_sym_DOLLAR, + ACTIONS(6322), 1, + anon_sym_LPAREN2, + ACTIONS(11648), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11916), 1, anon_sym_DOT, + ACTIONS(11918), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11920), 1, + aux_sym__immediate_decimal_token3, + STATE(3717), 1, + sym__immediate_decimal, + STATE(5406), 1, + sym__var, + STATE(6785), 1, + sym_comment, + ACTIONS(2146), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(3715), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [231532] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(6786), 1, + sym_comment, + ACTIONS(903), 6, + anon_sym_LF, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, + ACTIONS(901), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT, aux_sym_unquoted_token5, - [232065] = 13, + [231556] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2694), 1, + ACTIONS(1006), 1, anon_sym_DASH, - ACTIONS(3041), 1, - anon_sym_DASH_DASH, - ACTIONS(3984), 1, + ACTIONS(11960), 1, + anon_sym_DOT, + STATE(6735), 1, + aux_sym_cell_path_repeat1, + STATE(6787), 1, + sym_comment, + STATE(6932), 1, + sym_path, + ACTIONS(1008), 9, + sym_identifier, anon_sym_COLON, - ACTIONS(6247), 1, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(12574), 1, - sym_identifier, - STATE(7222), 1, - sym_comment, - STATE(8507), 1, - sym__variable_name, - STATE(8729), 1, - sym__var, - STATE(8921), 1, - sym_val_variable, - STATE(9436), 1, - sym__flag, - STATE(9751), 1, - sym_long_flag_equals_value, - STATE(9344), 2, - sym_short_flag, - sym_long_flag, - [232106] = 10, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [231586] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5549), 1, - anon_sym_not, - ACTIONS(12594), 1, - anon_sym_LPAREN, - ACTIONS(12596), 1, - anon_sym_DOLLAR, - ACTIONS(12598), 1, + ACTIONS(3354), 1, anon_sym_DASH, - STATE(410), 1, - sym__var, - STATE(650), 1, - sym__expr_unary_minus, - STATE(7223), 1, + STATE(6788), 1, sym_comment, - ACTIONS(7453), 2, - anon_sym_true, - anon_sym_false, - STATE(614), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [232141] = 10, - ACTIONS(3), 1, + ACTIONS(3356), 12, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [231610] = 14, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4059), 1, - anon_sym_not, - ACTIONS(12600), 1, - anon_sym_LPAREN, - ACTIONS(12602), 1, + ACTIONS(920), 1, + anon_sym_RBRACK, + ACTIONS(922), 1, + sym__entry_separator, + ACTIONS(4793), 1, anon_sym_DOLLAR, - ACTIONS(12604), 1, - anon_sym_DASH, - STATE(5737), 1, + ACTIONS(6322), 1, + anon_sym_LPAREN2, + ACTIONS(9162), 1, + aux_sym_unquoted_token4, + ACTIONS(11838), 1, + anon_sym_DOT, + ACTIONS(11840), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11842), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(11844), 1, + aux_sym__immediate_decimal_token4, + STATE(5406), 1, sym__var, - STATE(6430), 1, - sym__expr_unary_minus, - STATE(7224), 1, + STATE(6789), 1, sym_comment, - ACTIONS(7078), 2, - anon_sym_true, - anon_sym_false, - STATE(6440), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, + STATE(8636), 1, + sym__immediate_decimal, + STATE(3698), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - [232176] = 12, + [231654] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(6790), 1, + sym_comment, + ACTIONS(901), 6, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token5, + ACTIONS(903), 7, + ts_builtin_sym_end, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_command_token1, + [231678] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1593), 1, + ACTIONS(1391), 1, anon_sym_DOT, - ACTIONS(1611), 1, + ACTIONS(1409), 1, aux_sym__immediate_decimal_token4, - ACTIONS(2004), 1, + ACTIONS(1840), 1, anon_sym_LBRACE, - ACTIONS(2006), 1, + ACTIONS(1844), 1, aux_sym_unquoted_token2, - ACTIONS(6247), 1, + ACTIONS(5725), 1, anon_sym_DOLLAR, - ACTIONS(12033), 1, + ACTIONS(11537), 1, anon_sym_LPAREN2, - STATE(7225), 1, + STATE(6791), 1, sym_comment, - STATE(7440), 1, + STATE(7000), 1, sym__var, - STATE(10326), 1, + STATE(9883), 1, sym__immediate_decimal, - ACTIONS(1609), 2, + ACTIONS(1407), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7753), 2, + STATE(7403), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [232215] = 12, + [231717] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(6792), 1, + sym_comment, + ACTIONS(934), 5, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token5, + ACTIONS(936), 7, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [231740] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(12048), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12050), 1, + aux_sym__immediate_decimal_token2, + STATE(6793), 1, + sym_comment, + ACTIONS(893), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token5, + ACTIONS(895), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [231767] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(938), 1, + ACTIONS(1840), 1, anon_sym_LBRACE, - ACTIONS(6247), 1, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(5735), 1, anon_sym_DOLLAR, - ACTIONS(9820), 1, - aux_sym_unquoted_token4, - ACTIONS(12033), 1, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(12606), 1, - anon_sym_DOT, - ACTIONS(12610), 1, + ACTIONS(11856), 1, aux_sym__immediate_decimal_token4, - STATE(7226), 1, + ACTIONS(12052), 1, + anon_sym_DOT, + STATE(6794), 1, sym_comment, - STATE(7440), 1, + STATE(6987), 1, sym__var, - STATE(9108), 1, + STATE(7732), 1, sym__immediate_decimal, - ACTIONS(12608), 2, + ACTIONS(11854), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7645), 2, + STATE(7848), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [232254] = 10, + [231806] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4951), 1, - anon_sym_not, - ACTIONS(12612), 1, - anon_sym_LPAREN, - ACTIONS(12614), 1, + ACTIONS(1884), 1, + anon_sym_in, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(5725), 1, anon_sym_DOLLAR, - ACTIONS(12616), 1, - anon_sym_DASH, - STATE(5803), 1, - sym__var, - STATE(6520), 1, - sym__expr_unary_minus, - STATE(7227), 1, + ACTIONS(11537), 1, + anon_sym_LPAREN2, + ACTIONS(12054), 1, + anon_sym_DOT, + ACTIONS(12058), 1, + aux_sym__immediate_decimal_token4, + STATE(6795), 1, sym_comment, - ACTIONS(12618), 2, - anon_sym_true, - anon_sym_false, - STATE(6496), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, + STATE(9648), 1, + sym__var, + STATE(9840), 1, + sym__immediate_decimal, + ACTIONS(12056), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7172), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - [232289] = 5, - ACTIONS(3), 1, + [231845] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12412), 1, + ACTIONS(12060), 1, aux_sym__immediate_decimal_token2, - STATE(7228), 1, + STATE(6796), 1, sym_comment, - ACTIONS(911), 4, - anon_sym_DASH_DASH, + ACTIONS(2364), 5, + ts_builtin_sym_end, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(909), 7, - sym_identifier, - anon_sym_DASH, + aux_sym_command_token1, + ACTIONS(2362), 6, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, anon_sym_DOT_DOT2, anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token5, - [232314] = 4, + aux_sym_unquoted_token2, + [231870] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(7229), 1, + STATE(6797), 1, sym_comment, - ACTIONS(2439), 5, - ts_builtin_sym_end, - anon_sym_LF, + ACTIONS(2364), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2437), 7, + aux_sym_command_token1, + ACTIONS(2362), 8, anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token2, + [231893] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12062), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12064), 1, + aux_sym__immediate_decimal_token2, + STATE(6798), 1, + sym_comment, + ACTIONS(2229), 4, anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token2, - [232337] = 10, + ACTIONS(2231), 6, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [231920] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4456), 1, + ACTIONS(4098), 1, anon_sym_not, - ACTIONS(12620), 1, + ACTIONS(12066), 1, anon_sym_LPAREN, - ACTIONS(12622), 1, + ACTIONS(12068), 1, anon_sym_DOLLAR, - ACTIONS(12624), 1, + ACTIONS(12070), 1, anon_sym_DASH, - STATE(5497), 1, + STATE(5406), 1, sym__var, - STATE(6347), 1, + STATE(6045), 1, sym__expr_unary_minus, - STATE(7230), 1, + STATE(6799), 1, sym_comment, - ACTIONS(12626), 2, + ACTIONS(12072), 2, anon_sym_true, anon_sym_false, - STATE(6323), 4, + STATE(6052), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [232372] = 10, + [231955] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4646), 1, + ACTIONS(4000), 1, anon_sym_not, - ACTIONS(12628), 1, + ACTIONS(12074), 1, anon_sym_LPAREN, - ACTIONS(12630), 1, + ACTIONS(12076), 1, anon_sym_DOLLAR, - ACTIONS(12632), 1, + ACTIONS(12078), 1, anon_sym_DASH, - STATE(5240), 1, + STATE(4669), 1, sym__var, - STATE(6202), 1, + STATE(5208), 1, sym__expr_unary_minus, - STATE(7231), 1, + STATE(6800), 1, sym_comment, - ACTIONS(12634), 2, + ACTIONS(12080), 2, anon_sym_true, anon_sym_false, - STATE(6024), 4, + STATE(5428), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [232407] = 12, + [231990] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(938), 1, - anon_sym_in, - ACTIONS(6247), 1, + ACTIONS(1838), 1, + sym_identifier, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(11604), 1, anon_sym_DOLLAR, - ACTIONS(9820), 1, - aux_sym_unquoted_token4, - ACTIONS(12033), 1, + ACTIONS(11606), 1, anon_sym_LPAREN2, - ACTIONS(12636), 1, - anon_sym_DOT, - ACTIONS(12640), 1, + ACTIONS(11946), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11948), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(11950), 1, aux_sym__immediate_decimal_token4, - STATE(7232), 1, + ACTIONS(12082), 1, + anon_sym_DOT, + STATE(6801), 1, sym_comment, - STATE(10119), 1, + STATE(7135), 1, sym__var, - STATE(10435), 1, + STATE(7791), 1, sym__immediate_decimal, - ACTIONS(12638), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7645), 2, + STATE(7964), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [232446] = 6, - ACTIONS(113), 1, + [232031] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12584), 1, + ACTIONS(12084), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12086), 1, aux_sym__immediate_decimal_token2, - ACTIONS(12642), 1, - anon_sym_DOT, - STATE(7233), 1, + STATE(6802), 1, sym_comment, - ACTIONS(2581), 5, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(2583), 5, - ts_builtin_sym_end, + ACTIONS(895), 4, + anon_sym_DOLLAR, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - [232473] = 10, + ACTIONS(893), 6, + sym_identifier, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + [232058] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5639), 1, + ACTIONS(1838), 1, + sym_identifier, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(11229), 1, + anon_sym_LPAREN2, + ACTIONS(11670), 1, + anon_sym_DOLLAR, + ACTIONS(12088), 1, + anon_sym_DOT, + ACTIONS(12090), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12092), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(12094), 1, + aux_sym__immediate_decimal_token4, + STATE(6803), 1, + sym_comment, + STATE(7915), 1, + sym__var, + STATE(8656), 1, + sym__immediate_decimal, + STATE(7168), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [232099] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4402), 1, anon_sym_not, - ACTIONS(12645), 1, + ACTIONS(12096), 1, anon_sym_LPAREN, - ACTIONS(12647), 1, + ACTIONS(12098), 1, anon_sym_DOLLAR, - ACTIONS(12649), 1, + ACTIONS(12100), 1, anon_sym_DASH, - STATE(4618), 1, + STATE(4858), 1, sym__var, - STATE(5030), 1, + STATE(5679), 1, sym__expr_unary_minus, - STATE(7234), 1, + STATE(6804), 1, sym_comment, - ACTIONS(7409), 2, + ACTIONS(12102), 2, anon_sym_true, anon_sym_false, - STATE(4958), 4, + STATE(5758), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [232508] = 5, + [232134] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12651), 1, + ACTIONS(12104), 1, aux_sym__immediate_decimal_token2, - STATE(7235), 1, + STATE(6805), 1, sym_comment, - ACTIONS(919), 4, + ACTIONS(913), 4, anon_sym_DASH_DASH, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(917), 7, + ACTIONS(911), 7, sym_identifier, anon_sym_DASH, anon_sym_DOT_DOT2, @@ -549949,834 +509091,574 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token5, - [232533] = 10, + [232159] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4835), 1, + ACTIONS(4172), 1, anon_sym_not, - ACTIONS(12653), 1, + ACTIONS(12106), 1, anon_sym_LPAREN, - ACTIONS(12655), 1, + ACTIONS(12108), 1, anon_sym_DOLLAR, - ACTIONS(12657), 1, + ACTIONS(12110), 1, anon_sym_DASH, - STATE(5027), 1, + STATE(5517), 1, sym__var, - STATE(5920), 1, + STATE(5999), 1, sym__expr_unary_minus, - STATE(7236), 1, + STATE(6806), 1, sym_comment, - ACTIONS(12659), 2, + ACTIONS(6616), 2, anon_sym_true, anon_sym_false, - STATE(5786), 4, + STATE(6007), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [232568] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(938), 1, - anon_sym_LBRACE, - ACTIONS(1593), 1, - anon_sym_DOT, - ACTIONS(1611), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(9820), 1, - aux_sym_unquoted_token4, - ACTIONS(12033), 1, - anon_sym_LPAREN2, - STATE(7237), 1, - sym_comment, - STATE(7440), 1, - sym__var, - STATE(10426), 1, - sym__immediate_decimal, - ACTIONS(1609), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7645), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [232607] = 8, + [232194] = 8, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2845), 1, - aux_sym_command_token1, - ACTIONS(2847), 1, + ACTIONS(3316), 1, anon_sym_LPAREN2, - ACTIONS(12661), 1, + ACTIONS(12112), 1, anon_sym_DOT_DOT2, - STATE(7238), 1, + STATE(6807), 1, sym_comment, - ACTIONS(2851), 2, + ACTIONS(1844), 2, anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(12663), 2, + ACTIONS(3314), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(12114), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2843), 5, + ACTIONS(3312), 4, anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [232638] = 4, - ACTIONS(3), 1, + anon_sym_DASH_DASH, + anon_sym_DASH, + [232225] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(7239), 1, + STATE(6808), 1, sym_comment, - ACTIONS(909), 4, - anon_sym_DASH, + ACTIONS(893), 5, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token5, - ACTIONS(911), 8, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + ACTIONS(895), 7, + ts_builtin_sym_end, + anon_sym_LF, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [232661] = 12, + [232248] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1922), 1, - anon_sym_in, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(6253), 1, + ACTIONS(4260), 1, + anon_sym_not, + ACTIONS(12116), 1, + anon_sym_LPAREN, + ACTIONS(12118), 1, anon_sym_DOLLAR, - ACTIONS(12033), 1, - anon_sym_LPAREN2, - ACTIONS(12473), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12665), 1, - anon_sym_DOT, - STATE(7240), 1, - sym_comment, - STATE(7403), 1, + ACTIONS(12120), 1, + anon_sym_DASH, + STATE(4737), 1, + sym__expr_unary_minus, + STATE(5734), 1, sym__var, - STATE(8458), 1, - sym__immediate_decimal, - ACTIONS(12471), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(10039), 2, - sym__expr_parenthesized_immediate, + STATE(6809), 1, + sym_comment, + ACTIONS(7017), 2, + anon_sym_true, + anon_sym_false, + STATE(4740), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, sym_val_variable, - [232700] = 10, + [232283] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5707), 1, + ACTIONS(4562), 1, anon_sym_not, - ACTIONS(12667), 1, + ACTIONS(12122), 1, anon_sym_LPAREN, - ACTIONS(12669), 1, + ACTIONS(12124), 1, anon_sym_DOLLAR, - ACTIONS(12671), 1, + ACTIONS(12126), 1, anon_sym_DASH, - STATE(1504), 1, + STATE(1145), 1, sym__var, - STATE(2550), 1, + STATE(2161), 1, sym__expr_unary_minus, - STATE(7241), 1, + STATE(6810), 1, sym_comment, - ACTIONS(7205), 2, + ACTIONS(12128), 2, anon_sym_true, anon_sym_false, - STATE(2553), 4, + STATE(2224), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [232735] = 12, + [232318] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1922), 1, - anon_sym_in, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12033), 1, - anon_sym_LPAREN2, - ACTIONS(12636), 1, - anon_sym_DOT, - ACTIONS(12640), 1, - aux_sym__immediate_decimal_token4, - STATE(7242), 1, + ACTIONS(12132), 1, + anon_sym_AT, + ACTIONS(12134), 1, + anon_sym_DASH, + STATE(6811), 1, sym_comment, - STATE(9670), 1, - sym__immediate_decimal, - STATE(10119), 1, - sym__var, - ACTIONS(12638), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7671), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [232774] = 5, + STATE(7310), 1, + sym_param_cmd, + ACTIONS(12130), 9, + anon_sym_EQ, + sym_identifier, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [232345] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12673), 1, - aux_sym__immediate_decimal_token2, - STATE(7243), 1, + ACTIONS(12138), 1, + anon_sym_DASH, + STATE(6812), 1, sym_comment, - ACTIONS(2581), 4, - sym_cmd_identifier, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(2583), 7, + ACTIONS(12136), 11, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + [232368] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(6813), 1, + sym_comment, + ACTIONS(2231), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [232799] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1920), 1, - sym_identifier, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(12092), 1, - anon_sym_DOLLAR, - ACTIONS(12094), 1, - anon_sym_LPAREN2, - ACTIONS(12483), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12485), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(12487), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12675), 1, + aux_sym_command_token1, + ACTIONS(2229), 8, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOT_DOT2, anon_sym_DOT, - STATE(7244), 1, - sym_comment, - STATE(7579), 1, - sym__var, - STATE(8479), 1, - sym__immediate_decimal, - STATE(8292), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [232840] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1920), 1, - sym_identifier, - ACTIONS(1934), 1, + anon_sym_LF2, aux_sym_unquoted_token2, - ACTIONS(11755), 1, - anon_sym_LPAREN2, - ACTIONS(12237), 1, - anon_sym_DOLLAR, - ACTIONS(12677), 1, - anon_sym_DOT, - ACTIONS(12679), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12681), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(12683), 1, - aux_sym__immediate_decimal_token4, - STATE(7245), 1, - sym_comment, - STATE(8321), 1, - sym__var, - STATE(9678), 1, - sym__immediate_decimal, - STATE(7586), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [232881] = 12, + [232391] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_DASH_DASH, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - ACTIONS(9693), 1, - anon_sym_DOT, - ACTIONS(9701), 1, - aux_sym_unquoted_token5, - ACTIONS(12685), 1, - anon_sym_DOT_DOT2, - ACTIONS(12689), 1, - sym_filesize_unit, - ACTIONS(12691), 1, - sym_duration_unit, - STATE(7246), 1, + STATE(6814), 1, sym_comment, - STATE(10531), 1, - sym__expr_parenthesized_immediate, - ACTIONS(959), 2, - sym_identifier, + ACTIONS(1033), 2, anon_sym_DASH, - ACTIONS(12687), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [232920] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4875), 1, - anon_sym_not, - ACTIONS(12693), 1, - anon_sym_LPAREN, - ACTIONS(12695), 1, + anon_sym_DOT, + ACTIONS(1035), 10, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(12697), 1, - anon_sym_DASH, - STATE(5184), 1, - sym__var, - STATE(5713), 1, - sym__expr_unary_minus, - STATE(7247), 1, - sym_comment, - ACTIONS(12699), 2, - anon_sym_true, - anon_sym_false, - STATE(5804), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [232955] = 12, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + [232414] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1922), 1, + ACTIONS(1381), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(1840), 1, anon_sym_LBRACE, - ACTIONS(1934), 1, + ACTIONS(1844), 1, aux_sym_unquoted_token2, - ACTIONS(6253), 1, + ACTIONS(5735), 1, anon_sym_DOLLAR, - ACTIONS(12033), 1, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(12378), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12701), 1, + ACTIONS(12140), 1, anon_sym_DOT, - STATE(7248), 1, + STATE(6815), 1, sym_comment, - STATE(7403), 1, + STATE(6987), 1, sym__var, - STATE(8063), 1, + STATE(8304), 1, sym__immediate_decimal, - ACTIONS(12376), 2, + ACTIONS(1379), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(8415), 2, + STATE(9586), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [232994] = 12, + [232453] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1922), 1, + ACTIONS(1391), 1, + anon_sym_DOT, + ACTIONS(1409), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(1884), 1, anon_sym_LBRACE, - ACTIONS(1934), 1, + ACTIONS(1886), 1, aux_sym_unquoted_token2, - ACTIONS(6247), 1, + ACTIONS(5725), 1, anon_sym_DOLLAR, - ACTIONS(12033), 1, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(12606), 1, - anon_sym_DOT, - ACTIONS(12610), 1, - aux_sym__immediate_decimal_token4, - STATE(7249), 1, + STATE(6816), 1, sym_comment, - STATE(7440), 1, + STATE(7000), 1, sym__var, - STATE(9126), 1, + STATE(9030), 1, sym__immediate_decimal, - ACTIONS(12608), 2, + ACTIONS(1407), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7671), 2, + STATE(7172), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [233033] = 12, + [232492] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1593), 1, - anon_sym_DOT, - ACTIONS(1611), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(2004), 1, - anon_sym_LBRACE, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - ACTIONS(6247), 1, + ACTIONS(5735), 1, anon_sym_DOLLAR, - ACTIONS(12033), 1, + ACTIONS(11537), 1, anon_sym_LPAREN2, - STATE(7250), 1, + ACTIONS(12142), 1, + anon_sym_DOT, + ACTIONS(12146), 1, + aux_sym__immediate_decimal_token4, + STATE(6817), 1, sym_comment, - STATE(7440), 1, + STATE(6987), 1, sym__var, - STATE(9518), 1, + STATE(8527), 1, sym__immediate_decimal, - ACTIONS(1609), 2, + ACTIONS(2171), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(12144), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7753), 2, + STATE(8526), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [233072] = 6, + [232529] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12703), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12705), 1, - aux_sym__immediate_decimal_token2, - STATE(7251), 1, + STATE(6818), 1, sym_comment, - ACTIONS(2437), 4, + ACTIONS(1020), 2, anon_sym_DASH, - anon_sym_DOT_DOT2, anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(2439), 6, + ACTIONS(1022), 10, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_LPAREN2, + anon_sym_QMARK2, + [232552] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(3356), 1, + anon_sym_LF, + ACTIONS(12148), 1, + anon_sym_DOT_DOT2, + STATE(6819), 1, + sym_comment, + ACTIONS(3362), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(12150), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [233099] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4913), 1, - anon_sym_not, - ACTIONS(12707), 1, - anon_sym_LPAREN, - ACTIONS(12709), 1, - anon_sym_DOLLAR, - ACTIONS(12711), 1, + ACTIONS(3354), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, anon_sym_DASH, - STATE(5266), 1, - sym__var, - STATE(6242), 1, - sym__expr_unary_minus, - STATE(7252), 1, - sym_comment, - ACTIONS(12713), 2, - anon_sym_true, - anon_sym_false, - STATE(5984), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [233134] = 12, + anon_sym_RBRACE, + [232581] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(938), 1, - anon_sym_in, - ACTIONS(6247), 1, + ACTIONS(5725), 1, anon_sym_DOLLAR, - ACTIONS(9820), 1, - aux_sym_unquoted_token4, - ACTIONS(12033), 1, + ACTIONS(7117), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(12636), 1, + ACTIONS(12152), 1, anon_sym_DOT, - ACTIONS(12640), 1, - aux_sym__immediate_decimal_token4, - STATE(7253), 1, + STATE(6820), 1, sym_comment, - STATE(9575), 1, - sym__immediate_decimal, - STATE(10119), 1, + STATE(7000), 1, sym__var, - ACTIONS(12638), 2, + STATE(7148), 1, + sym__immediate_decimal, + ACTIONS(2138), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(12154), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7645), 2, + STATE(7147), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [233173] = 4, + [232618] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(7254), 1, + STATE(6821), 1, sym_comment, - ACTIONS(2439), 4, + ACTIONS(2364), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, aux_sym_command_token1, - ACTIONS(2437), 8, + ACTIONS(2362), 8, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_LF2, + aux_sym_unquoted_token2, + [232641] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(6822), 1, + sym_comment, + ACTIONS(2404), 5, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2402), 7, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token2, - [233196] = 10, + [232664] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4704), 1, + ACTIONS(5317), 1, anon_sym_not, - ACTIONS(12715), 1, + ACTIONS(12156), 1, anon_sym_LPAREN, - ACTIONS(12717), 1, + ACTIONS(12158), 1, anon_sym_DOLLAR, - ACTIONS(12719), 1, + ACTIONS(12160), 1, anon_sym_DASH, - STATE(6112), 1, + STATE(564), 1, sym__var, - STATE(6665), 1, + STATE(730), 1, sym__expr_unary_minus, - STATE(7255), 1, + STATE(6823), 1, sym_comment, - ACTIONS(12721), 2, + ACTIONS(12162), 2, anon_sym_true, anon_sym_false, - STATE(6739), 4, + STATE(731), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [233231] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(7256), 1, - sym_comment, - ACTIONS(2549), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - ACTIONS(2547), 8, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_LF2, - aux_sym_unquoted_token2, - [233254] = 4, + [232699] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(7257), 1, - sym_comment, - ACTIONS(917), 4, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token5, - ACTIONS(919), 8, - anon_sym_DOLLAR, + ACTIONS(2838), 1, + anon_sym_DQUOTE, + ACTIONS(2976), 1, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [233277] = 5, + ACTIONS(3655), 1, + anon_sym_COLON, + ACTIONS(12164), 1, + sym_cmd_identifier, + STATE(6592), 1, + sym__str_double_quotes, + STATE(6824), 1, + sym_comment, + STATE(7096), 1, + aux_sym_decl_def_repeat1, + STATE(7567), 1, + sym_val_string, + STATE(7692), 1, + sym_long_flag_equals_value, + STATE(8720), 1, + sym_long_flag, + STATE(9576), 1, + sym__command_name, + ACTIONS(2840), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [232740] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12572), 1, + ACTIONS(12166), 1, aux_sym__immediate_decimal_token2, - STATE(7258), 1, + STATE(6825), 1, sym_comment, - ACTIONS(2437), 4, - sym_cmd_identifier, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(2439), 7, + ACTIONS(903), 4, anon_sym_DASH_DASH, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [233302] = 8, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(2845), 1, - aux_sym_command_token1, - ACTIONS(2847), 1, - anon_sym_LPAREN2, - ACTIONS(12723), 1, + ACTIONS(901), 7, + sym_identifier, + anon_sym_DASH, anon_sym_DOT_DOT2, - STATE(7259), 1, - sym_comment, - ACTIONS(2851), 2, anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(12725), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2843), 5, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_LF2, - [233333] = 12, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + [232765] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(938), 1, - anon_sym_LBRACE, - ACTIONS(1593), 1, - anon_sym_DOT, - ACTIONS(1611), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6247), 1, + ACTIONS(5725), 1, anon_sym_DOLLAR, - ACTIONS(9820), 1, - aux_sym_unquoted_token4, - ACTIONS(12033), 1, + ACTIONS(7117), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11537), 1, anon_sym_LPAREN2, - STATE(7260), 1, + ACTIONS(12152), 1, + anon_sym_DOT, + STATE(6826), 1, sym_comment, - STATE(7440), 1, + STATE(7000), 1, sym__var, - STATE(10186), 1, + STATE(7156), 1, sym__immediate_decimal, - ACTIONS(1609), 2, + ACTIONS(2148), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(12154), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7645), 2, + STATE(7155), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [233372] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5839), 1, - anon_sym_not, - ACTIONS(12727), 1, - anon_sym_LPAREN, - ACTIONS(12729), 1, - anon_sym_DOLLAR, - ACTIONS(12731), 1, - anon_sym_DASH, - STATE(835), 1, - sym__var, - STATE(1019), 1, - sym__expr_unary_minus, - STATE(7261), 1, - sym_comment, - ACTIONS(12733), 2, - anon_sym_true, - anon_sym_false, - STATE(1018), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [233407] = 4, + [232802] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12737), 1, - anon_sym_DASH, - STATE(7262), 1, + ACTIONS(12168), 1, + aux_sym__immediate_decimal_token2, + STATE(6827), 1, sym_comment, - ACTIONS(12735), 11, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + ACTIONS(2356), 4, + sym_cmd_identifier, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(2358), 7, anon_sym_DASH_DASH, - [233430] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4109), 1, - anon_sym_not, - ACTIONS(12739), 1, - anon_sym_LPAREN, - ACTIONS(12741), 1, - anon_sym_DOLLAR, - ACTIONS(12743), 1, - anon_sym_DASH, - STATE(2692), 1, - sym__var, - STATE(3093), 1, - sym__expr_unary_minus, - STATE(7263), 1, - sym_comment, - ACTIONS(12745), 2, - anon_sym_true, - anon_sym_false, - STATE(3095), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [233465] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(7264), 1, - sym_comment, - ACTIONS(2549), 5, - ts_builtin_sym_end, - anon_sym_LF, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2547), 7, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - [233488] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4157), 1, - anon_sym_not, - ACTIONS(12649), 1, - anon_sym_DASH, - ACTIONS(12747), 1, - anon_sym_LPAREN, - ACTIONS(12749), 1, - anon_sym_DOLLAR, - STATE(5030), 1, - sym__expr_unary_minus, - STATE(6152), 1, - sym__var, - STATE(7265), 1, - sym_comment, - ACTIONS(7409), 2, - anon_sym_true, - anon_sym_false, - STATE(4958), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [233523] = 13, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [232827] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1920), 1, + ACTIONS(1724), 1, + anon_sym_DOLLAR, + ACTIONS(1838), 1, anon_sym_RBRACE, - ACTIONS(1922), 1, + ACTIONS(1840), 1, sym__entry_separator, - ACTIONS(1942), 1, - anon_sym_DOLLAR, - ACTIONS(6772), 1, + ACTIONS(6322), 1, anon_sym_LPAREN2, - ACTIONS(12293), 1, + ACTIONS(11648), 1, aux_sym__immediate_decimal_token4, - ACTIONS(12535), 1, + ACTIONS(11912), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12537), 1, + ACTIONS(11914), 1, aux_sym__immediate_decimal_token3, - ACTIONS(12751), 1, + ACTIONS(12170), 1, anon_sym_DOT, - STATE(5205), 1, + STATE(4556), 1, sym__var, - STATE(7266), 1, + STATE(6828), 1, sym_comment, - STATE(9408), 1, + STATE(8850), 1, sym__immediate_decimal, - STATE(8668), 2, + STATE(8371), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [233564] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4205), 1, - anon_sym_not, - ACTIONS(12753), 1, - anon_sym_LPAREN, - ACTIONS(12755), 1, - anon_sym_DOLLAR, - ACTIONS(12757), 1, - anon_sym_DASH, - STATE(2527), 1, - sym__var, - STATE(2950), 1, - sym__expr_unary_minus, - STATE(7267), 1, - sym_comment, - ACTIONS(12759), 2, - anon_sym_true, - anon_sym_false, - STATE(2954), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [233599] = 6, + [232868] = 13, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12761), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12763), 1, - aux_sym__immediate_decimal_token2, - STATE(7268), 1, - sym_comment, - ACTIONS(2437), 5, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(2439), 5, - ts_builtin_sym_end, - anon_sym_LF, + ACTIONS(1838), 1, + anon_sym_RBRACE, + ACTIONS(1840), 1, + sym__entry_separator, + ACTIONS(4793), 1, + anon_sym_DOLLAR, + ACTIONS(6322), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [233626] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12592), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(12765), 1, + ACTIONS(11648), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11916), 1, anon_sym_DOT, - STATE(7269), 1, + ACTIONS(11918), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11920), 1, + aux_sym__immediate_decimal_token3, + STATE(3093), 1, + sym__immediate_decimal, + STATE(5406), 1, + sym__var, + STATE(6829), 1, sym_comment, - ACTIONS(925), 4, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(923), 6, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token5, - [233653] = 5, + STATE(3671), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [232909] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12768), 1, + ACTIONS(11860), 1, aux_sym__immediate_decimal_token2, - STATE(7270), 1, + STATE(6830), 1, sym_comment, - ACTIONS(2583), 4, + ACTIONS(2231), 4, anon_sym_LF, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2581), 7, + ACTIONS(2229), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -550784,858 +509666,811 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token2, - [233678] = 5, + [232934] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12770), 1, - aux_sym__immediate_decimal_token2, - STATE(7271), 1, - sym_comment, - ACTIONS(2547), 4, - sym_cmd_identifier, - anon_sym_DOT_DOT2, + ACTIONS(922), 1, + anon_sym_LBRACE, + ACTIONS(1391), 1, anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(2549), 7, - anon_sym_DASH_DASH, + ACTIONS(1409), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5725), 1, + anon_sym_DOLLAR, + ACTIONS(9209), 1, + aux_sym_unquoted_token4, + ACTIONS(11537), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [233703] = 10, + STATE(6831), 1, + sym_comment, + STATE(7000), 1, + sym__var, + STATE(9346), 1, + sym__immediate_decimal, + ACTIONS(1407), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7175), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [232973] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4255), 1, - anon_sym_not, - ACTIONS(12772), 1, - anon_sym_LPAREN, - ACTIONS(12774), 1, + ACTIONS(922), 1, + anon_sym_in, + ACTIONS(5725), 1, anon_sym_DOLLAR, - ACTIONS(12776), 1, - anon_sym_DASH, - STATE(3151), 1, - sym__var, - STATE(3447), 1, - sym__expr_unary_minus, - STATE(7272), 1, + ACTIONS(9209), 1, + aux_sym_unquoted_token4, + ACTIONS(11537), 1, + anon_sym_LPAREN2, + ACTIONS(12054), 1, + anon_sym_DOT, + ACTIONS(12058), 1, + aux_sym__immediate_decimal_token4, + STATE(6832), 1, sym_comment, - ACTIONS(12778), 2, - anon_sym_true, - anon_sym_false, - STATE(3451), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, + STATE(9104), 1, + sym__immediate_decimal, + STATE(9648), 1, + sym__var, + ACTIONS(12056), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7175), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - [233738] = 5, - ACTIONS(113), 1, + [233012] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12457), 1, - aux_sym__immediate_decimal_token2, - STATE(7273), 1, - sym_comment, - ACTIONS(2439), 4, - anon_sym_LF, + ACTIONS(1884), 1, + anon_sym_LBRACE, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(5725), 1, + anon_sym_DOLLAR, + ACTIONS(11537), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2437), 7, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, + ACTIONS(12172), 1, anon_sym_DOT, - aux_sym_unquoted_token2, - [233763] = 8, + ACTIONS(12176), 1, + aux_sym__immediate_decimal_token4, + STATE(6833), 1, + sym_comment, + STATE(7000), 1, + sym__var, + STATE(9658), 1, + sym__immediate_decimal, + ACTIONS(12174), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7172), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [233051] = 8, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3520), 1, + ACTIONS(3356), 1, aux_sym_command_token1, - ACTIONS(3522), 1, + ACTIONS(3358), 1, anon_sym_LPAREN2, - ACTIONS(12780), 1, + ACTIONS(12178), 1, anon_sym_DOT_DOT2, - STATE(7274), 1, + STATE(6834), 1, sym_comment, - ACTIONS(1934), 2, + ACTIONS(3362), 2, anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(12782), 2, + ACTIONS(12180), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(3518), 5, + ACTIONS(3354), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [233794] = 5, + anon_sym_LF2, + [233082] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12784), 1, - aux_sym__immediate_decimal_token2, - STATE(7275), 1, + STATE(6835), 1, sym_comment, - ACTIONS(2549), 4, + ACTIONS(2364), 5, + ts_builtin_sym_end, anon_sym_LF, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2547), 7, + ACTIONS(2362), 7, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token2, - [233819] = 5, + [233105] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12786), 1, + ACTIONS(11636), 1, aux_sym__immediate_decimal_token2, - STATE(7276), 1, + ACTIONS(12182), 1, + anon_sym_DOT, + STATE(6836), 1, sym_comment, - ACTIONS(2549), 5, - ts_builtin_sym_end, - anon_sym_LPAREN2, + ACTIONS(2358), 3, + anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - ACTIONS(2547), 6, + ACTIONS(2356), 7, anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - [233844] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(7277), 1, - sym_comment, - ACTIONS(1059), 2, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1061), 10, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_QMARK2, - [233867] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(7278), 1, - sym_comment, - ACTIONS(1063), 2, anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1065), 10, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - [233890] = 13, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1920), 1, anon_sym_RBRACE, - ACTIONS(1922), 1, - sym__entry_separator, - ACTIONS(5097), 1, - anon_sym_DOLLAR, - ACTIONS(6772), 1, - anon_sym_LPAREN2, - ACTIONS(12293), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12475), 1, - anon_sym_DOT, - ACTIONS(12477), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12479), 1, - aux_sym__immediate_decimal_token3, - STATE(3523), 1, - sym__immediate_decimal, - STATE(5803), 1, - sym__var, - STATE(7279), 1, - sym_comment, - STATE(4055), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [233931] = 10, + anon_sym_DOT_DOT2, + [233132] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5941), 1, + ACTIONS(4306), 1, anon_sym_not, - ACTIONS(12788), 1, + ACTIONS(12184), 1, anon_sym_LPAREN, - ACTIONS(12790), 1, + ACTIONS(12186), 1, anon_sym_DOLLAR, - ACTIONS(12792), 1, + ACTIONS(12188), 1, anon_sym_DASH, - STATE(825), 1, + STATE(2092), 1, sym__var, - STATE(893), 1, + STATE(2540), 1, sym__expr_unary_minus, - STATE(7280), 1, + STATE(6837), 1, sym_comment, - ACTIONS(12794), 2, + ACTIONS(12190), 2, anon_sym_true, anon_sym_false, - STATE(894), 4, + STATE(2550), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [233966] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(12768), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(12796), 1, - anon_sym_DOT, - STATE(7281), 1, - sym_comment, - ACTIONS(2583), 4, - anon_sym_LF, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2581), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [233993] = 6, + [233167] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12799), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12801), 1, - aux_sym__immediate_decimal_token2, - STATE(7282), 1, - sym_comment, - ACTIONS(911), 4, + ACTIONS(1840), 1, + anon_sym_LBRACE, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(5725), 1, anon_sym_DOLLAR, + ACTIONS(11537), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(909), 6, - sym_identifier, - anon_sym_DOT_DOT2, + ACTIONS(12172), 1, anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token5, - [234020] = 10, + ACTIONS(12176), 1, + aux_sym__immediate_decimal_token4, + STATE(6838), 1, + sym_comment, + STATE(7000), 1, + sym__var, + STATE(8731), 1, + sym__immediate_decimal, + ACTIONS(12174), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7403), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [233206] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4591), 1, + ACTIONS(3665), 1, anon_sym_not, - ACTIONS(12803), 1, - anon_sym_LPAREN, - ACTIONS(12805), 1, + ACTIONS(11650), 1, anon_sym_DOLLAR, - ACTIONS(12807), 1, + ACTIONS(12192), 1, + anon_sym_LPAREN, + ACTIONS(12194), 1, anon_sym_DASH, - STATE(5322), 1, + STATE(4470), 1, sym__var, - STATE(6183), 1, + STATE(5745), 1, sym__expr_unary_minus, - STATE(7283), 1, + STATE(6839), 1, sym_comment, - ACTIONS(12809), 2, + ACTIONS(6782), 2, anon_sym_true, anon_sym_false, - STATE(6128), 4, + STATE(5759), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [234055] = 10, + [233241] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(12196), 1, + aux_sym__immediate_decimal_token2, + STATE(6840), 1, + sym_comment, + ACTIONS(2358), 5, + ts_builtin_sym_end, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_command_token1, + ACTIONS(2356), 6, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token2, + [233266] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4339), 1, + ACTIONS(4652), 1, anon_sym_not, - ACTIONS(12811), 1, + ACTIONS(12198), 1, anon_sym_LPAREN, - ACTIONS(12813), 1, + ACTIONS(12200), 1, anon_sym_DOLLAR, - ACTIONS(12815), 1, + ACTIONS(12202), 1, anon_sym_DASH, - STATE(382), 1, + STATE(4948), 1, sym__var, - STATE(542), 1, + STATE(5748), 1, sym__expr_unary_minus, - STATE(7284), 1, + STATE(6841), 1, sym_comment, - ACTIONS(12817), 2, + ACTIONS(12204), 2, anon_sym_true, anon_sym_false, - STATE(543), 4, + STATE(5566), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [234090] = 12, + [233301] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(938), 1, - anon_sym_LBRACE, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(9820), 1, - aux_sym_unquoted_token4, - ACTIONS(12033), 1, - anon_sym_LPAREN2, - ACTIONS(12606), 1, - anon_sym_DOT, - ACTIONS(12610), 1, - aux_sym__immediate_decimal_token4, - STATE(7285), 1, - sym_comment, - STATE(7440), 1, - sym__var, - STATE(9667), 1, - sym__immediate_decimal, - ACTIONS(12608), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7645), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [234129] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(7286), 1, - sym_comment, - ACTIONS(3507), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - ACTIONS(3505), 8, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_LF2, - aux_sym_unquoted_token2, - [234152] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(3520), 1, - anon_sym_LF, - ACTIONS(12819), 1, - anon_sym_DOT_DOT2, - STATE(7287), 1, + ACTIONS(12206), 1, + anon_sym_QMARK2, + STATE(6842), 1, sym_comment, - ACTIONS(1934), 2, + ACTIONS(1024), 2, + anon_sym_DASH, anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(12821), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3518), 6, - anon_sym_SEMI, + ACTIONS(1026), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [234181] = 10, + [233326] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4415), 1, + ACTIONS(5087), 1, anon_sym_not, - ACTIONS(12823), 1, + ACTIONS(12120), 1, + anon_sym_DASH, + ACTIONS(12208), 1, anon_sym_LPAREN, - ACTIONS(12825), 1, + ACTIONS(12210), 1, anon_sym_DOLLAR, - ACTIONS(12827), 1, - anon_sym_DASH, - STATE(348), 1, + STATE(4099), 1, sym__var, - STATE(481), 1, + STATE(4737), 1, sym__expr_unary_minus, - STATE(7288), 1, + STATE(6843), 1, sym_comment, - ACTIONS(12829), 2, + ACTIONS(7017), 2, anon_sym_true, anon_sym_false, - STATE(482), 4, + STATE(4740), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [234216] = 12, + [233361] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1922), 1, + ACTIONS(1381), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(1840), 1, anon_sym_LBRACE, - ACTIONS(1934), 1, + ACTIONS(1844), 1, aux_sym_unquoted_token2, - ACTIONS(6253), 1, + ACTIONS(5735), 1, anon_sym_DOLLAR, - ACTIONS(12033), 1, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(12378), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12831), 1, + ACTIONS(12212), 1, anon_sym_DOT, - STATE(7289), 1, + STATE(6844), 1, sym_comment, - STATE(7403), 1, + STATE(6987), 1, sym__var, - STATE(8298), 1, + STATE(7903), 1, sym__immediate_decimal, - ACTIONS(12376), 2, + ACTIONS(1379), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(8415), 2, + STATE(9586), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [234255] = 12, + [233400] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1922), 1, + ACTIONS(1884), 1, anon_sym_LBRACE, - ACTIONS(1934), 1, + ACTIONS(1886), 1, aux_sym_unquoted_token2, - ACTIONS(6247), 1, + ACTIONS(5725), 1, anon_sym_DOLLAR, - ACTIONS(12033), 1, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(12606), 1, + ACTIONS(12172), 1, anon_sym_DOT, - ACTIONS(12610), 1, + ACTIONS(12176), 1, aux_sym__immediate_decimal_token4, - STATE(7290), 1, + STATE(6845), 1, sym_comment, - STATE(7440), 1, + STATE(7000), 1, sym__var, - STATE(9706), 1, + STATE(8758), 1, sym__immediate_decimal, - ACTIONS(12608), 2, + ACTIONS(12174), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7671), 2, + STATE(7172), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [234294] = 10, + [233439] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4493), 1, + ACTIONS(4514), 1, anon_sym_not, - ACTIONS(12833), 1, + ACTIONS(12214), 1, anon_sym_LPAREN, - ACTIONS(12835), 1, + ACTIONS(12216), 1, anon_sym_DOLLAR, - ACTIONS(12837), 1, + ACTIONS(12218), 1, anon_sym_DASH, - STATE(1455), 1, + STATE(285), 1, sym__var, - STATE(2361), 1, + STATE(415), 1, sym__expr_unary_minus, - STATE(7291), 1, + STATE(6846), 1, sym_comment, - ACTIONS(12839), 2, + ACTIONS(12220), 2, anon_sym_true, anon_sym_false, - STATE(2365), 4, + STATE(381), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [234329] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12843), 1, - anon_sym_AT, - ACTIONS(12845), 1, - anon_sym_DASH, - STATE(7292), 1, - sym_comment, - STATE(7824), 1, - sym_param_cmd, - ACTIONS(12841), 9, - anon_sym_EQ, - sym_identifier, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [234356] = 11, + [233474] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12033), 1, - anon_sym_LPAREN2, - ACTIONS(12127), 1, + ACTIONS(1391), 1, + anon_sym_DOT, + ACTIONS(1409), 1, aux_sym__immediate_decimal_token4, - ACTIONS(12162), 1, + ACTIONS(1840), 1, + anon_sym_LBRACE, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(5725), 1, anon_sym_DOLLAR, - ACTIONS(12348), 1, - anon_sym_DOT, - STATE(7293), 1, + ACTIONS(11537), 1, + anon_sym_LPAREN2, + STATE(6847), 1, sym_comment, - STATE(7748), 1, - sym__immediate_decimal, - STATE(9422), 1, + STATE(7000), 1, sym__var, - ACTIONS(2385), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(12350), 2, + STATE(9707), 1, + sym__immediate_decimal, + ACTIONS(1407), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7744), 2, + STATE(7403), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [234393] = 13, + [233513] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1920), 1, - sym_identifier, - ACTIONS(1934), 1, + ACTIONS(1840), 1, + anon_sym_LBRACE, + ACTIONS(1844), 1, aux_sym_unquoted_token2, - ACTIONS(11755), 1, - anon_sym_LPAREN2, - ACTIONS(12237), 1, - anon_sym_DOLLAR, - ACTIONS(12677), 1, - anon_sym_DOT, - ACTIONS(12679), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12681), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(12683), 1, + ACTIONS(5735), 1, + anon_sym_DOLLAR, + ACTIONS(11537), 1, + anon_sym_LPAREN2, + ACTIONS(11856), 1, aux_sym__immediate_decimal_token4, - STATE(7294), 1, + ACTIONS(12222), 1, + anon_sym_DOT, + STATE(6848), 1, sym_comment, - STATE(8321), 1, + STATE(6987), 1, sym__var, - STATE(9350), 1, + STATE(8037), 1, sym__immediate_decimal, - STATE(7586), 2, + ACTIONS(11854), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7848), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [234434] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(7295), 1, - sym_comment, - ACTIONS(2549), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - ACTIONS(2547), 8, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - [234457] = 10, + [233552] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4549), 1, + ACTIONS(5167), 1, anon_sym_not, - ACTIONS(12847), 1, + ACTIONS(12224), 1, anon_sym_LPAREN, - ACTIONS(12849), 1, + ACTIONS(12226), 1, anon_sym_DOLLAR, - ACTIONS(12851), 1, + ACTIONS(12228), 1, anon_sym_DASH, - STATE(1359), 1, + STATE(1172), 1, sym__var, - STATE(1818), 1, + STATE(2114), 1, sym__expr_unary_minus, - STATE(7296), 1, + STATE(6849), 1, sym_comment, - ACTIONS(12853), 2, + ACTIONS(6804), 2, anon_sym_true, anon_sym_false, - STATE(1821), 4, + STATE(2135), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [234492] = 12, + [233587] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(1922), 1, - anon_sym_LBRACE, - ACTIONS(1934), 1, + ACTIONS(1840), 1, + anon_sym_in, + ACTIONS(1844), 1, aux_sym_unquoted_token2, - ACTIONS(6253), 1, + ACTIONS(5735), 1, anon_sym_DOLLAR, - ACTIONS(12033), 1, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(12855), 1, + ACTIONS(11992), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(12230), 1, anon_sym_DOT, - STATE(7297), 1, + STATE(6850), 1, sym_comment, - STATE(7403), 1, + STATE(6987), 1, sym__var, - STATE(8538), 1, + STATE(7965), 1, sym__immediate_decimal, - ACTIONS(1582), 2, + ACTIONS(11990), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(9560), 2, + STATE(9276), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [234531] = 12, + [233626] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1593), 1, - anon_sym_DOT, - ACTIONS(1611), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(1922), 1, - anon_sym_LBRACE, - ACTIONS(1934), 1, + ACTIONS(1840), 1, + anon_sym_in, + ACTIONS(1844), 1, aux_sym_unquoted_token2, - ACTIONS(6247), 1, + ACTIONS(5725), 1, anon_sym_DOLLAR, - ACTIONS(12033), 1, + ACTIONS(11537), 1, anon_sym_LPAREN2, - STATE(7298), 1, + ACTIONS(12054), 1, + anon_sym_DOT, + ACTIONS(12058), 1, + aux_sym__immediate_decimal_token4, + STATE(6851), 1, sym_comment, - STATE(7440), 1, - sym__var, - STATE(10437), 1, + STATE(9162), 1, sym__immediate_decimal, - ACTIONS(1609), 2, + STATE(9648), 1, + sym__var, + ACTIONS(12056), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7671), 2, + STATE(7403), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [234570] = 8, + [233665] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3522), 1, + STATE(6852), 1, + sym_comment, + ACTIONS(2231), 4, anon_sym_LPAREN2, - ACTIONS(12857), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_command_token1, + ACTIONS(2229), 8, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - STATE(7299), 1, + anon_sym_DOT, + aux_sym_unquoted_token2, + [233688] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(12232), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12234), 1, + aux_sym__immediate_decimal_token2, + STATE(6853), 1, sym_comment, - ACTIONS(1934), 2, + ACTIONS(2229), 5, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(3520), 2, + ACTIONS(2231), 5, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(12859), 2, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(3518), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [234601] = 12, + [233715] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2004), 1, - anon_sym_LBRACE, - ACTIONS(2006), 1, + ACTIONS(1838), 1, + sym_identifier, + ACTIONS(1844), 1, aux_sym_unquoted_token2, - ACTIONS(6247), 1, + ACTIONS(11604), 1, anon_sym_DOLLAR, - ACTIONS(12033), 1, + ACTIONS(11606), 1, anon_sym_LPAREN2, - ACTIONS(12606), 1, - anon_sym_DOT, - ACTIONS(12610), 1, + ACTIONS(11946), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11948), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(11950), 1, aux_sym__immediate_decimal_token4, - STATE(7300), 1, + ACTIONS(12236), 1, + anon_sym_DOT, + STATE(6854), 1, sym_comment, - STATE(7440), 1, + STATE(7135), 1, sym__var, - STATE(9728), 1, + STATE(7967), 1, sym__immediate_decimal, - ACTIONS(12608), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7753), 2, + STATE(7964), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [234640] = 4, + [233756] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(7301), 1, - sym_comment, - ACTIONS(950), 4, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token5, - ACTIONS(952), 8, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + ACTIONS(920), 1, + sym_identifier, + ACTIONS(9231), 1, + aux_sym_unquoted_token4, + ACTIONS(11229), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [234663] = 5, + ACTIONS(11670), 1, + anon_sym_DOLLAR, + ACTIONS(12088), 1, + anon_sym_DOT, + ACTIONS(12090), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12092), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(12094), 1, + aux_sym__immediate_decimal_token4, + STATE(6855), 1, + sym_comment, + STATE(7915), 1, + sym__var, + STATE(8573), 1, + sym__immediate_decimal, + STATE(7130), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [233797] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12861), 1, - anon_sym_LT, - ACTIONS(12863), 1, - anon_sym_DASH, - STATE(7302), 1, - sym_comment, - ACTIONS(9824), 10, - anon_sym_EQ, + ACTIONS(1838), 1, sym_identifier, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [234688] = 13, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(2002), 1, - anon_sym_RBRACE, - ACTIONS(2004), 1, - sym__entry_separator, - ACTIONS(5097), 1, - anon_sym_DOLLAR, - ACTIONS(6772), 1, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(11229), 1, anon_sym_LPAREN2, - ACTIONS(12293), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12475), 1, + ACTIONS(11670), 1, + anon_sym_DOLLAR, + ACTIONS(12088), 1, anon_sym_DOT, - ACTIONS(12477), 1, + ACTIONS(12090), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12479), 1, + ACTIONS(12092), 1, aux_sym__immediate_decimal_token3, - STATE(3530), 1, - sym__immediate_decimal, - STATE(5803), 1, - sym__var, - STATE(7303), 1, + ACTIONS(12094), 1, + aux_sym__immediate_decimal_token4, + STATE(6856), 1, sym_comment, - STATE(4132), 2, + STATE(7915), 1, + sym__var, + STATE(9167), 1, + sym__immediate_decimal, + STATE(7168), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [234729] = 5, + [233838] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12863), 1, - anon_sym_DASH, - ACTIONS(12865), 1, - anon_sym_LT, - STATE(7304), 1, + ACTIONS(11507), 1, + anon_sym_DOT, + ACTIONS(11509), 1, + aux_sym__immediate_decimal_token2, + STATE(6857), 1, sym_comment, - ACTIONS(9824), 10, - anon_sym_EQ, + ACTIONS(2356), 2, sym_identifier, + anon_sym_DASH, + ACTIONS(2358), 8, + anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [234754] = 12, + [233865] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4442), 1, + anon_sym_not, + ACTIONS(12238), 1, + anon_sym_LPAREN, + ACTIONS(12240), 1, + anon_sym_DOLLAR, + ACTIONS(12242), 1, + anon_sym_DASH, + STATE(315), 1, + sym__var, + STATE(420), 1, + sym__expr_unary_minus, + STATE(6858), 1, + sym_comment, + ACTIONS(12244), 2, + anon_sym_true, + anon_sym_false, + STATE(421), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [233900] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2004), 1, + ACTIONS(1840), 1, anon_sym_LBRACE, - ACTIONS(2006), 1, + ACTIONS(1844), 1, aux_sym_unquoted_token2, - ACTIONS(6247), 1, + ACTIONS(5725), 1, anon_sym_DOLLAR, - ACTIONS(12033), 1, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(12606), 1, + ACTIONS(12172), 1, anon_sym_DOT, - ACTIONS(12610), 1, + ACTIONS(12176), 1, aux_sym__immediate_decimal_token4, - STATE(7305), 1, + STATE(6859), 1, sym_comment, - STATE(7440), 1, + STATE(7000), 1, sym__var, - STATE(9143), 1, + STATE(9642), 1, sym__immediate_decimal, - ACTIONS(12608), 2, + ACTIONS(12174), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7753), 2, + STATE(7403), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [234793] = 5, + [233939] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12453), 1, + ACTIONS(12020), 1, aux_sym__immediate_decimal_token2, - STATE(7306), 1, + STATE(6860), 1, sym_comment, - ACTIONS(2439), 5, + ACTIONS(2231), 5, ts_builtin_sym_end, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, aux_sym_command_token1, - ACTIONS(2437), 6, + ACTIONS(2229), 6, anon_sym_SEMI, anon_sym_LF, anon_sym_PIPE, anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token2, - [234818] = 4, + [233964] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2838), 1, + anon_sym_DQUOTE, + ACTIONS(2976), 1, + anon_sym_DASH_DASH, + ACTIONS(3707), 1, + anon_sym_COLON, + ACTIONS(12164), 1, + sym_cmd_identifier, + STATE(6592), 1, + sym__str_double_quotes, + STATE(6861), 1, + sym_comment, + STATE(7096), 1, + aux_sym_decl_def_repeat1, + STATE(7567), 1, + sym_val_string, + STATE(7692), 1, + sym_long_flag_equals_value, + STATE(8720), 1, + sym_long_flag, + STATE(9576), 1, + sym__command_name, + ACTIONS(2840), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [234005] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4610), 1, + anon_sym_not, + ACTIONS(12246), 1, + anon_sym_LPAREN, + ACTIONS(12248), 1, + anon_sym_DOLLAR, + ACTIONS(12250), 1, + anon_sym_DASH, + STATE(1092), 1, + sym__var, + STATE(1792), 1, + sym__expr_unary_minus, + STATE(6862), 1, + sym_comment, + ACTIONS(12252), 2, + anon_sym_true, + anon_sym_false, + STATE(1970), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [234040] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(7307), 1, + STATE(6863), 1, sym_comment, - ACTIONS(909), 5, + ACTIONS(901), 5, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token5, - ACTIONS(911), 7, + ACTIONS(903), 7, ts_builtin_sym_end, anon_sym_LF, anon_sym_LPAREN2, @@ -551643,531 +510478,679 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [234841] = 13, + [234063] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2724), 1, - anon_sym_DQUOTE, - ACTIONS(3275), 1, + ACTIONS(2619), 1, anon_sym_DASH_DASH, - ACTIONS(3984), 1, + ACTIONS(2621), 1, + anon_sym_DASH, + ACTIONS(3707), 1, anon_sym_COLON, - ACTIONS(12867), 1, - sym_cmd_identifier, - STATE(7019), 1, - sym__str_double_quotes, - STATE(7308), 1, + ACTIONS(5725), 1, + anon_sym_DOLLAR, + ACTIONS(12254), 1, + sym_identifier, + STATE(6864), 1, sym_comment, - STATE(7518), 1, - aux_sym_decl_def_repeat1, - STATE(7900), 1, - sym_val_string, - STATE(8074), 1, + STATE(8063), 1, + sym__variable_name, + STATE(8258), 1, + sym__var, + STATE(8718), 1, + sym_val_variable, + STATE(8985), 1, + sym__flag, + STATE(9246), 1, sym_long_flag_equals_value, - STATE(8838), 1, + STATE(8892), 2, + sym_short_flag, sym_long_flag, - STATE(10026), 1, - sym__command_name, - ACTIONS(2726), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [234882] = 4, + [234104] = 8, ACTIONS(113), 1, anon_sym_POUND, - STATE(7309), 1, - sym_comment, - ACTIONS(3507), 4, + ACTIONS(3314), 1, + aux_sym_command_token1, + ACTIONS(3316), 1, anon_sym_LPAREN2, + ACTIONS(12256), 1, + anon_sym_DOT_DOT2, + STATE(6865), 1, + sym_comment, + ACTIONS(1844), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(12258), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - ACTIONS(3505), 8, + ACTIONS(3312), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, + anon_sym_LF2, + [234135] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(940), 1, + anon_sym_DASH_DASH, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + ACTIONS(9223), 1, anon_sym_DOT, - aux_sym_unquoted_token2, - [234905] = 13, + ACTIONS(9231), 1, + aux_sym_unquoted_token5, + ACTIONS(12260), 1, + anon_sym_DOT_DOT2, + ACTIONS(12264), 1, + sym_filesize_unit, + ACTIONS(12266), 1, + sym_duration_unit, + STATE(6866), 1, + sym_comment, + STATE(10200), 1, + sym__expr_parenthesized_immediate, + ACTIONS(938), 2, + sym_identifier, + anon_sym_DASH, + ACTIONS(12262), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [234174] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(936), 1, + ACTIONS(920), 1, sym_identifier, - ACTIONS(9701), 1, + ACTIONS(9231), 1, aux_sym_unquoted_token4, - ACTIONS(11755), 1, + ACTIONS(11229), 1, anon_sym_LPAREN2, - ACTIONS(12237), 1, + ACTIONS(11670), 1, anon_sym_DOLLAR, - ACTIONS(12677), 1, + ACTIONS(12088), 1, anon_sym_DOT, - ACTIONS(12679), 1, + ACTIONS(12090), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12681), 1, + ACTIONS(12092), 1, aux_sym__immediate_decimal_token3, - ACTIONS(12683), 1, + ACTIONS(12094), 1, aux_sym__immediate_decimal_token4, - STATE(7310), 1, + STATE(6867), 1, sym_comment, - STATE(8321), 1, + STATE(7915), 1, sym__var, - STATE(9244), 1, + STATE(9111), 1, sym__immediate_decimal, - STATE(7556), 2, + STATE(7130), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [234946] = 13, + [234215] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2724), 1, - anon_sym_DQUOTE, - ACTIONS(3275), 1, + ACTIONS(922), 1, + anon_sym_LBRACE, + ACTIONS(5725), 1, + anon_sym_DOLLAR, + ACTIONS(9209), 1, + aux_sym_unquoted_token4, + ACTIONS(11537), 1, + anon_sym_LPAREN2, + ACTIONS(12172), 1, + anon_sym_DOT, + ACTIONS(12176), 1, + aux_sym__immediate_decimal_token4, + STATE(6868), 1, + sym_comment, + STATE(7000), 1, + sym__var, + STATE(8697), 1, + sym__immediate_decimal, + ACTIONS(12174), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7175), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [234254] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(3314), 1, + anon_sym_LF, + ACTIONS(12268), 1, + anon_sym_DOT_DOT2, + STATE(6869), 1, + sym_comment, + ACTIONS(1844), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(12270), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3312), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DASH_DASH, - ACTIONS(3880), 1, - anon_sym_COLON, - ACTIONS(12867), 1, - sym_cmd_identifier, - STATE(7019), 1, - sym__str_double_quotes, - STATE(7311), 1, + anon_sym_DASH, + anon_sym_RBRACE, + [234283] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5725), 1, + anon_sym_DOLLAR, + ACTIONS(7117), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11537), 1, + anon_sym_LPAREN2, + ACTIONS(12152), 1, + anon_sym_DOT, + STATE(6870), 1, sym_comment, - STATE(7518), 1, - aux_sym_decl_def_repeat1, - STATE(7900), 1, - sym_val_string, - STATE(8074), 1, - sym_long_flag_equals_value, - STATE(8838), 1, - sym_long_flag, - STATE(10026), 1, - sym__command_name, - ACTIONS(2726), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [234987] = 11, + STATE(7000), 1, + sym__var, + STATE(7368), 1, + sym__immediate_decimal, + ACTIONS(2171), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(12154), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7360), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [234320] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6253), 1, + ACTIONS(5735), 1, anon_sym_DOLLAR, - ACTIONS(12033), 1, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(12127), 1, + ACTIONS(12146), 1, aux_sym__immediate_decimal_token4, - ACTIONS(12344), 1, + ACTIONS(12272), 1, anon_sym_DOT, - STATE(4486), 1, - sym__var, - STATE(7312), 1, + STATE(6871), 1, sym_comment, - STATE(9431), 1, + STATE(6987), 1, + sym__var, + STATE(8510), 1, sym__immediate_decimal, - ACTIONS(2389), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(12346), 2, + ACTIONS(1840), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(12144), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(9430), 2, + STATE(8528), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [235024] = 6, + [234357] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(6872), 1, + sym_comment, + ACTIONS(2404), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_command_token1, + ACTIONS(2402), 8, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token2, + [234380] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12869), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12871), 1, - aux_sym__immediate_decimal_token2, - STATE(7313), 1, + STATE(6873), 1, sym_comment, - ACTIONS(909), 3, + ACTIONS(893), 4, + anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token5, - ACTIONS(911), 7, + ACTIONS(895), 8, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [235051] = 6, + [234403] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12673), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(12873), 1, + ACTIONS(5725), 1, + anon_sym_DOLLAR, + ACTIONS(7117), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11537), 1, + anon_sym_LPAREN2, + ACTIONS(12152), 1, anon_sym_DOT, - STATE(7314), 1, + STATE(6788), 1, + sym__immediate_decimal, + STATE(6874), 1, sym_comment, - ACTIONS(2581), 3, - sym_cmd_identifier, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(2583), 7, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [235078] = 9, + STATE(7000), 1, + sym__var, + ACTIONS(1840), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(12154), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7403), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [234440] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12303), 1, - anon_sym_EQ, - ACTIONS(12305), 1, - anon_sym_COLON, - ACTIONS(12878), 1, - anon_sym_COMMA, - ACTIONS(12880), 1, + ACTIONS(4060), 1, + anon_sym_not, + ACTIONS(12274), 1, + anon_sym_LPAREN, + ACTIONS(12276), 1, + anon_sym_DOLLAR, + ACTIONS(12278), 1, anon_sym_DASH, - STATE(7315), 1, + STATE(4999), 1, + sym__var, + STATE(5853), 1, + sym__expr_unary_minus, + STATE(6875), 1, sym_comment, - STATE(7469), 1, - sym_param_value, - STATE(7848), 1, - sym_param_type, - ACTIONS(12876), 6, - sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(12280), 2, + anon_sym_true, + anon_sym_false, + STATE(5836), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [234475] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4358), 1, + anon_sym_not, + ACTIONS(12282), 1, + anon_sym_LPAREN, + ACTIONS(12284), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [235111] = 5, + ACTIONS(12286), 1, + anon_sym_DASH, + STATE(2747), 1, + sym__var, + STATE(2996), 1, + sym__expr_unary_minus, + STATE(6876), 1, + sym_comment, + ACTIONS(12288), 2, + anon_sym_true, + anon_sym_false, + STATE(3000), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [234510] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12882), 1, - anon_sym_QMARK2, - STATE(7316), 1, + ACTIONS(5725), 1, + anon_sym_DOLLAR, + ACTIONS(7117), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11537), 1, + anon_sym_LPAREN2, + ACTIONS(12152), 1, + anon_sym_DOT, + STATE(6655), 1, + sym__immediate_decimal, + STATE(6877), 1, sym_comment, - ACTIONS(1070), 2, + STATE(7000), 1, + sym__var, + ACTIONS(1884), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(12154), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7172), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [234547] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12290), 1, + anon_sym_LT, + ACTIONS(12292), 1, anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1072), 9, + STATE(6878), 1, + sym_comment, + ACTIONS(9333), 10, + anon_sym_EQ, sym_identifier, - anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [235136] = 5, + [234572] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12882), 1, - anon_sym_QMARK2, - STATE(7317), 1, - sym_comment, - ACTIONS(1070), 2, + ACTIONS(12292), 1, anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1072), 9, + ACTIONS(12294), 1, + anon_sym_LT, + STATE(6879), 1, + sym_comment, + ACTIONS(9333), 10, + anon_sym_EQ, sym_identifier, - anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [235161] = 4, + [234597] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(7318), 1, + ACTIONS(12296), 1, + aux_sym__immediate_decimal_token2, + STATE(6880), 1, sym_comment, - ACTIONS(2439), 4, + ACTIONS(2358), 4, + anon_sym_LF, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - ACTIONS(2437), 8, + ACTIONS(2356), 7, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT, - anon_sym_LF2, aux_sym_unquoted_token2, - [235184] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3890), 1, - anon_sym_not, - ACTIONS(12162), 1, - anon_sym_DOLLAR, - ACTIONS(12884), 1, - anon_sym_LPAREN, - ACTIONS(12886), 1, - anon_sym_DASH, - STATE(4901), 1, - sym__var, - STATE(6245), 1, - sym__expr_unary_minus, - STATE(7319), 1, - sym_comment, - ACTIONS(7181), 2, - anon_sym_true, - anon_sym_false, - STATE(6263), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [235219] = 7, + [234622] = 8, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2845), 1, - anon_sym_LF, - ACTIONS(12888), 1, + ACTIONS(3356), 1, + aux_sym_command_token1, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(12298), 1, anon_sym_DOT_DOT2, - STATE(7320), 1, + STATE(6881), 1, sym_comment, - ACTIONS(2851), 2, + ACTIONS(3362), 2, anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(12890), 2, + ACTIONS(12300), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2843), 6, + ACTIONS(3354), 5, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_RBRACE, - [235248] = 4, + [234653] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(7321), 1, - sym_comment, - ACTIONS(1168), 2, + ACTIONS(12304), 1, + anon_sym_QMARK, + ACTIONS(12306), 1, anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(1170), 10, + STATE(6882), 1, + sym_comment, + ACTIONS(12302), 10, anon_sym_EQ, + sym_identifier, anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, + [234678] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11924), 1, + aux_sym__immediate_decimal_token2, + STATE(6883), 1, + sym_comment, + ACTIONS(895), 4, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [235271] = 13, + ACTIONS(893), 7, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + [234703] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2002), 1, - sym_identifier, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - ACTIONS(11755), 1, - anon_sym_LPAREN2, - ACTIONS(12237), 1, - anon_sym_DOLLAR, - ACTIONS(12677), 1, + ACTIONS(922), 1, + anon_sym_LBRACE, + ACTIONS(1391), 1, anon_sym_DOT, - ACTIONS(12679), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12681), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(12683), 1, + ACTIONS(1409), 1, aux_sym__immediate_decimal_token4, - STATE(7322), 1, + ACTIONS(5725), 1, + anon_sym_DOLLAR, + ACTIONS(9209), 1, + aux_sym_unquoted_token4, + ACTIONS(11537), 1, + anon_sym_LPAREN2, + STATE(6884), 1, sym_comment, - STATE(8321), 1, + STATE(7000), 1, sym__var, - STATE(8915), 1, + STATE(9810), 1, sym__immediate_decimal, - STATE(7632), 2, + ACTIONS(1407), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7175), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [235312] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(7323), 1, - sym_comment, - ACTIONS(917), 5, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token5, - ACTIONS(919), 7, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [235335] = 6, - ACTIONS(113), 1, + [234742] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12892), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12894), 1, - aux_sym__immediate_decimal_token2, - STATE(7324), 1, - sym_comment, - ACTIONS(2439), 3, - anon_sym_LF, - anon_sym_LPAREN2, - anon_sym_DOT, - ACTIONS(2437), 7, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(2619), 1, anon_sym_DASH_DASH, + ACTIONS(2621), 1, anon_sym_DASH, - anon_sym_RBRACE, - aux_sym_unquoted_token2, - [235362] = 12, + ACTIONS(3655), 1, + anon_sym_COLON, + ACTIONS(5725), 1, + anon_sym_DOLLAR, + ACTIONS(12254), 1, + sym_identifier, + STATE(6885), 1, + sym_comment, + STATE(8063), 1, + sym__variable_name, + STATE(8258), 1, + sym__var, + STATE(8718), 1, + sym_val_variable, + STATE(8985), 1, + sym__flag, + STATE(9246), 1, + sym_long_flag_equals_value, + STATE(8892), 2, + sym_short_flag, + sym_long_flag, + [234783] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1922), 1, + ACTIONS(1884), 1, anon_sym_in, - ACTIONS(1934), 1, + ACTIONS(1886), 1, aux_sym_unquoted_token2, - ACTIONS(6253), 1, + ACTIONS(5725), 1, anon_sym_DOLLAR, - ACTIONS(12033), 1, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(12473), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12896), 1, + ACTIONS(12054), 1, anon_sym_DOT, - STATE(7325), 1, + ACTIONS(12058), 1, + aux_sym__immediate_decimal_token4, + STATE(6886), 1, sym_comment, - STATE(7403), 1, - sym__var, - STATE(8686), 1, + STATE(9209), 1, sym__immediate_decimal, - ACTIONS(12471), 2, + STATE(9648), 1, + sym__var, + ACTIONS(12056), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(10039), 2, + STATE(7172), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [235401] = 4, - ACTIONS(113), 1, + [234822] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7326), 1, + ACTIONS(11928), 1, + aux_sym__immediate_decimal_token2, + STATE(6887), 1, sym_comment, - ACTIONS(950), 5, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(2229), 4, + sym_cmd_identifier, anon_sym_DOT_DOT2, anon_sym_DOT, - aux_sym_unquoted_token5, - ACTIONS(952), 7, - ts_builtin_sym_end, - anon_sym_LF, + aux_sym_unquoted_token2, + ACTIONS(2231), 7, + anon_sym_DASH_DASH, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [235424] = 11, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [234847] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6253), 1, - anon_sym_DOLLAR, - ACTIONS(12033), 1, + ACTIONS(1882), 1, + sym_identifier, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(11229), 1, anon_sym_LPAREN2, - ACTIONS(12898), 1, + ACTIONS(11670), 1, + anon_sym_DOLLAR, + ACTIONS(12088), 1, anon_sym_DOT, - ACTIONS(12902), 1, + ACTIONS(12090), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12092), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(12094), 1, aux_sym__immediate_decimal_token4, - STATE(7327), 1, + STATE(6888), 1, sym_comment, - STATE(7403), 1, + STATE(7915), 1, sym__var, - STATE(8928), 1, + STATE(9210), 1, sym__immediate_decimal, - ACTIONS(1922), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(12900), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(9275), 2, + STATE(7151), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [235461] = 11, + [234888] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(7619), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12033), 1, - anon_sym_LPAREN2, - ACTIONS(12904), 1, - anon_sym_DOT, - STATE(7196), 1, - sym__immediate_decimal, - STATE(7328), 1, + STATE(6889), 1, sym_comment, - STATE(7440), 1, - sym__var, - ACTIONS(1922), 2, + ACTIONS(1061), 2, + anon_sym_DASH, + anon_sym_DOT_DOT2, + ACTIONS(1063), 10, + anon_sym_EQ, + anon_sym_COLON, anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(12906), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7671), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [235498] = 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [234911] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6247), 1, + ACTIONS(12308), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12310), 1, + aux_sym__immediate_decimal_token2, + STATE(6890), 1, + sym_comment, + ACTIONS(893), 3, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token5, + ACTIONS(895), 7, anon_sym_DOLLAR, - ACTIONS(7619), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12033), 1, + anon_sym_LBRACE, anon_sym_LPAREN2, - ACTIONS(12904), 1, - anon_sym_DOT, - STATE(7198), 1, - sym__immediate_decimal, - STATE(7329), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [234938] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(12312), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12314), 1, + aux_sym__immediate_decimal_token2, + STATE(6891), 1, sym_comment, - STATE(7440), 1, - sym__var, - ACTIONS(2004), 2, - anon_sym_COMMA, + ACTIONS(2231), 3, + anon_sym_LF, + anon_sym_LPAREN2, + anon_sym_DOT, + ACTIONS(2229), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_RBRACE, - ACTIONS(12906), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7753), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [235535] = 6, + aux_sym_unquoted_token2, + [234965] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12143), 1, - anon_sym_DOT, - ACTIONS(12145), 1, - aux_sym__immediate_decimal_token2, - STATE(7330), 1, + ACTIONS(12206), 1, + anon_sym_QMARK2, + STATE(6892), 1, sym_comment, - ACTIONS(2581), 2, - sym_identifier, + ACTIONS(1024), 2, anon_sym_DASH, - ACTIONS(2583), 8, + anon_sym_DOT, + ACTIONS(1026), 9, + sym_identifier, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -552176,402 +511159,492 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [235562] = 8, + [234990] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11768), 1, + anon_sym_EQ, + ACTIONS(11770), 1, + anon_sym_COLON, + ACTIONS(12318), 1, + anon_sym_COMMA, + ACTIONS(12320), 1, + anon_sym_DASH, + STATE(6893), 1, + sym_comment, + STATE(7030), 1, + sym_param_value, + STATE(7399), 1, + sym_param_type, + ACTIONS(12316), 6, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [235023] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2847), 1, - anon_sym_LPAREN2, - ACTIONS(12908), 1, - anon_sym_DOT_DOT2, - STATE(7331), 1, + ACTIONS(12322), 1, + aux_sym__immediate_decimal_token2, + STATE(6894), 1, sym_comment, - ACTIONS(2845), 2, - ts_builtin_sym_end, + ACTIONS(2364), 4, anon_sym_LF, - ACTIONS(2851), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(12910), 2, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2843), 4, + ACTIONS(2362), 7, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [235593] = 6, - ACTIONS(113), 1, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token2, + [235048] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12912), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12914), 1, - aux_sym__immediate_decimal_token2, - STATE(7332), 1, + STATE(6895), 1, sym_comment, - ACTIONS(909), 4, - anon_sym_RBRACK, + ACTIONS(901), 4, + anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_DOT, - aux_sym__unquoted_in_list_token6, - ACTIONS(911), 6, + aux_sym_unquoted_token5, + ACTIONS(903), 8, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [235620] = 12, + [235071] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(1922), 1, + ACTIONS(922), 1, anon_sym_LBRACE, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(6253), 1, + ACTIONS(5725), 1, anon_sym_DOLLAR, - ACTIONS(12033), 1, + ACTIONS(9209), 1, + aux_sym_unquoted_token4, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(12916), 1, + ACTIONS(12172), 1, anon_sym_DOT, - STATE(7333), 1, + ACTIONS(12176), 1, + aux_sym__immediate_decimal_token4, + STATE(6896), 1, sym_comment, - STATE(7403), 1, + STATE(7000), 1, sym__var, - STATE(8280), 1, + STATE(9609), 1, sym__immediate_decimal, - ACTIONS(1582), 2, + ACTIONS(12174), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(9560), 2, + STATE(7175), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [235659] = 12, - ACTIONS(3), 1, + [235110] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1593), 1, + ACTIONS(12324), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12326), 1, + aux_sym__immediate_decimal_token2, + STATE(6897), 1, + sym_comment, + ACTIONS(893), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(1611), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(1922), 1, - anon_sym_LBRACE, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(6247), 1, + aux_sym__unquoted_in_list_token6, + ACTIONS(895), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [235137] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5725), 1, anon_sym_DOLLAR, - ACTIONS(12033), 1, + ACTIONS(7117), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11537), 1, anon_sym_LPAREN2, - STATE(7334), 1, + ACTIONS(12152), 1, + anon_sym_DOT, + STATE(6898), 1, sym_comment, - STATE(7440), 1, + STATE(7000), 1, sym__var, - STATE(9486), 1, + STATE(7139), 1, sym__immediate_decimal, - ACTIONS(1609), 2, + ACTIONS(2209), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(12154), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7671), 2, + STATE(7138), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [235698] = 10, + [235174] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4303), 1, + ACTIONS(4482), 1, anon_sym_not, - ACTIONS(12918), 1, + ACTIONS(12328), 1, anon_sym_LPAREN, - ACTIONS(12920), 1, + ACTIONS(12330), 1, anon_sym_DOLLAR, - ACTIONS(12922), 1, + ACTIONS(12332), 1, anon_sym_DASH, - STATE(5293), 1, + STATE(4713), 1, sym__var, - STATE(6200), 1, + STATE(5410), 1, sym__expr_unary_minus, - STATE(7335), 1, + STATE(6899), 1, sym_comment, - ACTIONS(12924), 2, + ACTIONS(12334), 2, anon_sym_true, anon_sym_false, - STATE(5970), 4, + STATE(5429), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [235733] = 12, + [235209] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2004), 1, + ACTIONS(1840), 1, anon_sym_in, - ACTIONS(2006), 1, + ACTIONS(1844), 1, aux_sym_unquoted_token2, - ACTIONS(6247), 1, + ACTIONS(5725), 1, anon_sym_DOLLAR, - ACTIONS(12033), 1, - anon_sym_LPAREN2, - ACTIONS(12636), 1, - anon_sym_DOT, - ACTIONS(12640), 1, - aux_sym__immediate_decimal_token4, - STATE(7336), 1, - sym_comment, - STATE(9702), 1, - sym__immediate_decimal, - STATE(10119), 1, - sym__var, - ACTIONS(12638), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7753), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [235772] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2002), 1, - sym_identifier, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - ACTIONS(11755), 1, - anon_sym_LPAREN2, - ACTIONS(12237), 1, - anon_sym_DOLLAR, - ACTIONS(12677), 1, - anon_sym_DOT, - ACTIONS(12679), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12681), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(12683), 1, - aux_sym__immediate_decimal_token4, - STATE(7337), 1, - sym_comment, - STATE(8321), 1, - sym__var, - STATE(9703), 1, - sym__immediate_decimal, - STATE(7632), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [235813] = 8, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(3520), 1, - aux_sym_command_token1, - ACTIONS(3522), 1, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(12926), 1, - anon_sym_DOT_DOT2, - STATE(7338), 1, - sym_comment, - ACTIONS(1934), 2, + ACTIONS(12054), 1, anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(12928), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3518), 5, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_LF2, - [235844] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6253), 1, - anon_sym_DOLLAR, - ACTIONS(12033), 1, - anon_sym_LPAREN2, - ACTIONS(12902), 1, + ACTIONS(12058), 1, aux_sym__immediate_decimal_token4, - ACTIONS(12930), 1, - anon_sym_DOT, - STATE(7339), 1, + STATE(6900), 1, sym_comment, - STATE(7403), 1, + STATE(9648), 1, sym__var, - STATE(9134), 1, + STATE(9964), 1, sym__immediate_decimal, - ACTIONS(2389), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(12900), 2, + ACTIONS(12056), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(9405), 2, + STATE(7403), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [235881] = 11, + [235248] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6247), 1, + ACTIONS(4130), 1, + anon_sym_not, + ACTIONS(12336), 1, + anon_sym_LPAREN, + ACTIONS(12338), 1, anon_sym_DOLLAR, - ACTIONS(7619), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12033), 1, - anon_sym_LPAREN2, - ACTIONS(12904), 1, - anon_sym_DOT, - STATE(7340), 1, - sym_comment, - STATE(7440), 1, + ACTIONS(12340), 1, + anon_sym_DASH, + STATE(5664), 1, sym__var, - STATE(7637), 1, - sym__immediate_decimal, - ACTIONS(2389), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(12906), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7592), 2, - sym__expr_parenthesized_immediate, + STATE(6230), 1, + sym__expr_unary_minus, + STATE(6901), 1, + sym_comment, + ACTIONS(12342), 2, + anon_sym_true, + anon_sym_false, + STATE(6285), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, sym_val_variable, - [235918] = 11, - ACTIONS(3), 1, + [235283] = 13, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(6247), 1, + ACTIONS(1882), 1, + anon_sym_RBRACE, + ACTIONS(1884), 1, + sym__entry_separator, + ACTIONS(4793), 1, anon_sym_DOLLAR, - ACTIONS(7619), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12033), 1, + ACTIONS(6322), 1, anon_sym_LPAREN2, - ACTIONS(12904), 1, + ACTIONS(11648), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11916), 1, anon_sym_DOT, - STATE(7341), 1, - sym_comment, - STATE(7440), 1, - sym__var, - STATE(7736), 1, - sym__immediate_decimal, - ACTIONS(2351), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(12906), 2, + ACTIONS(11918), 1, aux_sym__immediate_decimal_token1, + ACTIONS(11920), 1, aux_sym__immediate_decimal_token3, - STATE(7735), 2, + STATE(3112), 1, + sym__immediate_decimal, + STATE(5406), 1, + sym__var, + STATE(6902), 1, + sym_comment, + STATE(3719), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [235955] = 11, + [235324] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6247), 1, + ACTIONS(5497), 1, + anon_sym_not, + ACTIONS(12344), 1, + anon_sym_LPAREN, + ACTIONS(12346), 1, anon_sym_DOLLAR, - ACTIONS(7619), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12033), 1, - anon_sym_LPAREN2, - ACTIONS(12904), 1, - anon_sym_DOT, - STATE(7342), 1, + ACTIONS(12348), 1, + anon_sym_DASH, + STATE(544), 1, + sym__var, + STATE(600), 1, + sym__expr_unary_minus, + STATE(6903), 1, sym_comment, - STATE(7440), 1, + ACTIONS(12350), 2, + anon_sym_true, + anon_sym_false, + STATE(606), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [235359] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3813), 1, + anon_sym_not, + ACTIONS(12352), 1, + anon_sym_LPAREN, + ACTIONS(12354), 1, + anon_sym_DOLLAR, + ACTIONS(12356), 1, + anon_sym_DASH, + STATE(5006), 1, sym__var, - STATE(7743), 1, - sym__immediate_decimal, - ACTIONS(2361), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(12906), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7737), 2, - sym__expr_parenthesized_immediate, + STATE(5585), 1, + sym__expr_unary_minus, + STATE(6904), 1, + sym_comment, + ACTIONS(12358), 2, + anon_sym_true, + anon_sym_false, + STATE(5596), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, sym_val_variable, - [235992] = 11, + [235394] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6247), 1, + ACTIONS(922), 1, + anon_sym_in, + ACTIONS(5725), 1, anon_sym_DOLLAR, - ACTIONS(7619), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12033), 1, + ACTIONS(9209), 1, + aux_sym_unquoted_token4, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(12904), 1, + ACTIONS(12054), 1, anon_sym_DOT, - STATE(7343), 1, + ACTIONS(12058), 1, + aux_sym__immediate_decimal_token4, + STATE(6905), 1, sym_comment, - STATE(7440), 1, + STATE(9648), 1, sym__var, - STATE(7748), 1, + STATE(9897), 1, sym__immediate_decimal, - ACTIONS(2385), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(12906), 2, + ACTIONS(12056), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7744), 2, + STATE(7175), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [236029] = 10, + [235433] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(12196), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(12360), 1, + anon_sym_DOT, + STATE(6906), 1, + sym_comment, + ACTIONS(2356), 5, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(2358), 5, + ts_builtin_sym_end, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_command_token1, + [235460] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5485), 1, + ACTIONS(4212), 1, anon_sym_not, - ACTIONS(12932), 1, + ACTIONS(12363), 1, anon_sym_LPAREN, - ACTIONS(12934), 1, + ACTIONS(12365), 1, anon_sym_DOLLAR, - ACTIONS(12936), 1, + ACTIONS(12367), 1, anon_sym_DASH, - STATE(530), 1, + STATE(2308), 1, sym__var, - STATE(692), 1, + STATE(2647), 1, sym__expr_unary_minus, - STATE(7344), 1, + STATE(6907), 1, sym_comment, - ACTIONS(7387), 2, + ACTIONS(12369), 2, anon_sym_true, anon_sym_false, - STATE(696), 4, + STATE(2684), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [236064] = 13, - ACTIONS(3), 1, + [235495] = 8, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(936), 1, - sym_identifier, - ACTIONS(9701), 1, - aux_sym_unquoted_token4, - ACTIONS(11755), 1, + ACTIONS(3358), 1, anon_sym_LPAREN2, - ACTIONS(12237), 1, + ACTIONS(12371), 1, + anon_sym_DOT_DOT2, + STATE(6908), 1, + sym_comment, + ACTIONS(3356), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3362), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(12373), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3354), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [235526] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6909), 1, + sym_comment, + ACTIONS(934), 4, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token5, + ACTIONS(936), 8, anon_sym_DOLLAR, - ACTIONS(12677), 1, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [235549] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(6910), 1, + sym_comment, + ACTIONS(2404), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_command_token1, + ACTIONS(2402), 8, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(12679), 1, + anon_sym_LF2, + aux_sym_unquoted_token2, + [235572] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12375), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12681), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(12683), 1, + ACTIONS(12377), 1, + aux_sym__immediate_decimal_token2, + STATE(6911), 1, + sym_comment, + ACTIONS(893), 3, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token5, + ACTIONS(895), 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, + [235599] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1391), 1, + anon_sym_DOT, + ACTIONS(1409), 1, aux_sym__immediate_decimal_token4, - STATE(7345), 1, + ACTIONS(1884), 1, + anon_sym_LBRACE, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(5725), 1, + anon_sym_DOLLAR, + ACTIONS(11537), 1, + anon_sym_LPAREN2, + STATE(6912), 1, sym_comment, - STATE(8321), 1, + STATE(7000), 1, sym__var, - STATE(9589), 1, + STATE(9962), 1, sym__immediate_decimal, - STATE(7556), 2, + ACTIONS(1407), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7172), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [236105] = 4, + [235638] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(7346), 1, + STATE(6913), 1, sym_comment, - ACTIONS(3507), 5, + ACTIONS(2231), 5, ts_builtin_sym_end, anon_sym_LF, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(3505), 7, + ACTIONS(2229), 7, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, @@ -552579,539 +511652,339 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token2, - [236128] = 12, + [235661] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2004), 1, - anon_sym_in, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12033), 1, - anon_sym_LPAREN2, - ACTIONS(12636), 1, + ACTIONS(12104), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(12379), 1, anon_sym_DOT, - ACTIONS(12640), 1, - aux_sym__immediate_decimal_token4, - STATE(7347), 1, + STATE(6914), 1, sym_comment, - STATE(10119), 1, - sym__var, - STATE(10310), 1, - sym__immediate_decimal, - ACTIONS(12638), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7753), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [236167] = 12, + ACTIONS(913), 4, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(911), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + [235688] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1922), 1, - anon_sym_in, - ACTIONS(1934), 1, + ACTIONS(1882), 1, + sym_identifier, + ACTIONS(1886), 1, aux_sym_unquoted_token2, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12033), 1, + ACTIONS(11229), 1, anon_sym_LPAREN2, - ACTIONS(12636), 1, + ACTIONS(11670), 1, + anon_sym_DOLLAR, + ACTIONS(12088), 1, anon_sym_DOT, - ACTIONS(12640), 1, + ACTIONS(12090), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12092), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(12094), 1, aux_sym__immediate_decimal_token4, - STATE(7348), 1, + STATE(6915), 1, sym_comment, - STATE(10119), 1, + STATE(7915), 1, sym__var, - STATE(10330), 1, + STATE(8730), 1, sym__immediate_decimal, - ACTIONS(12638), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7671), 2, + STATE(7151), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [236206] = 6, - ACTIONS(3), 1, + [235729] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12938), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12940), 1, + ACTIONS(12296), 1, aux_sym__immediate_decimal_token2, - STATE(7349), 1, - sym_comment, - ACTIONS(909), 3, - anon_sym_DOT_DOT2, + ACTIONS(12382), 1, anon_sym_DOT, - aux_sym_unquoted_token5, - ACTIONS(911), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + STATE(6916), 1, + sym_comment, + ACTIONS(2358), 4, + anon_sym_LF, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [236233] = 9, + ACTIONS(2356), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [235756] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12303), 1, + ACTIONS(11768), 1, anon_sym_EQ, - ACTIONS(12305), 1, + ACTIONS(11770), 1, anon_sym_COLON, - ACTIONS(12944), 1, + ACTIONS(12387), 1, anon_sym_COMMA, - ACTIONS(12946), 1, + ACTIONS(12389), 1, anon_sym_DASH, - STATE(7350), 1, + STATE(6917), 1, sym_comment, - STATE(7385), 1, + STATE(6963), 1, sym_param_value, - STATE(7846), 1, + STATE(7396), 1, sym_param_type, - ACTIONS(12942), 6, + ACTIONS(12385), 6, sym_identifier, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [236266] = 6, + [235789] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4028), 1, + anon_sym_not, + ACTIONS(12391), 1, + anon_sym_LPAREN, + ACTIONS(12393), 1, + anon_sym_DOLLAR, + ACTIONS(12395), 1, + anon_sym_DASH, + STATE(4575), 1, + sym__var, + STATE(5522), 1, + sym__expr_unary_minus, + STATE(6918), 1, + sym_comment, + ACTIONS(12397), 2, + anon_sym_true, + anon_sym_false, + STATE(5353), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [235824] = 8, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12212), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(12948), 1, - anon_sym_DOT, - STATE(7351), 1, + ACTIONS(3314), 1, + aux_sym_command_token1, + ACTIONS(3316), 1, + anon_sym_LPAREN2, + ACTIONS(12399), 1, + anon_sym_DOT_DOT2, + STATE(6919), 1, sym_comment, - ACTIONS(2583), 3, - anon_sym_LF, + ACTIONS(1844), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(12401), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2581), 7, + ACTIONS(3312), 5, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [236293] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(12950), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12952), 1, - aux_sym__immediate_decimal_token2, - STATE(7352), 1, - sym_comment, - ACTIONS(909), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token5, - ACTIONS(911), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [236320] = 11, + [235855] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12033), 1, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(12127), 1, + ACTIONS(11576), 1, aux_sym__immediate_decimal_token4, - ACTIONS(12162), 1, + ACTIONS(11650), 1, anon_sym_DOLLAR, - ACTIONS(12348), 1, + ACTIONS(11968), 1, anon_sym_DOT, - STATE(7353), 1, + STATE(6920), 1, sym_comment, - STATE(7637), 1, + STATE(7368), 1, sym__immediate_decimal, - STATE(9422), 1, + STATE(8975), 1, sym__var, - ACTIONS(2389), 2, + ACTIONS(2171), 2, anon_sym_PIPE, anon_sym_EQ_GT, - ACTIONS(12350), 2, + ACTIONS(11970), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7592), 2, + STATE(7360), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [236357] = 11, + [235892] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12033), 1, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(12127), 1, + ACTIONS(11576), 1, aux_sym__immediate_decimal_token4, - ACTIONS(12162), 1, + ACTIONS(11650), 1, anon_sym_DOLLAR, - ACTIONS(12348), 1, + ACTIONS(11968), 1, anon_sym_DOT, - STATE(7354), 1, + STATE(6921), 1, sym_comment, - STATE(7736), 1, + STATE(7139), 1, sym__immediate_decimal, - STATE(9422), 1, + STATE(8975), 1, sym__var, - ACTIONS(2351), 2, + ACTIONS(2209), 2, anon_sym_PIPE, anon_sym_EQ_GT, - ACTIONS(12350), 2, + ACTIONS(11970), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7735), 2, + STATE(7138), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [236394] = 11, + [235929] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12033), 1, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(12127), 1, + ACTIONS(11576), 1, aux_sym__immediate_decimal_token4, - ACTIONS(12162), 1, + ACTIONS(11650), 1, anon_sym_DOLLAR, - ACTIONS(12348), 1, + ACTIONS(11968), 1, anon_sym_DOT, - STATE(7355), 1, + STATE(6922), 1, sym_comment, - STATE(7743), 1, + STATE(7148), 1, sym__immediate_decimal, - STATE(9422), 1, + STATE(8975), 1, sym__var, - ACTIONS(2361), 2, + ACTIONS(2138), 2, anon_sym_PIPE, anon_sym_EQ_GT, - ACTIONS(12350), 2, + ACTIONS(11970), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7737), 2, + STATE(7147), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [236431] = 13, + [235966] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1920), 1, - sym_identifier, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(12092), 1, - anon_sym_DOLLAR, - ACTIONS(12094), 1, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(12483), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12485), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(12487), 1, + ACTIONS(11576), 1, aux_sym__immediate_decimal_token4, - ACTIONS(12954), 1, + ACTIONS(11650), 1, + anon_sym_DOLLAR, + ACTIONS(11968), 1, anon_sym_DOT, - STATE(7356), 1, + STATE(6923), 1, sym_comment, - STATE(7579), 1, - sym__var, - STATE(8178), 1, + STATE(7156), 1, sym__immediate_decimal, - STATE(8292), 2, + STATE(8975), 1, + sym__var, + ACTIONS(2148), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(11970), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7155), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [236472] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12956), 1, - anon_sym_DASH, - STATE(7357), 1, - sym_comment, - ACTIONS(9973), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [236494] = 9, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(3067), 1, - anon_sym_DASH, - ACTIONS(5993), 1, - anon_sym_LF, - ACTIONS(12958), 1, - anon_sym_DASH_DASH, - STATE(5143), 1, - sym_long_flag_equals_value, - STATE(7358), 1, - sym_comment, - STATE(8952), 1, - sym__flag, - STATE(5044), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(5991), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [236526] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2724), 1, - anon_sym_DQUOTE, - ACTIONS(3275), 1, - anon_sym_DASH_DASH, - ACTIONS(12867), 1, - sym_cmd_identifier, - STATE(7019), 1, - sym__str_double_quotes, - STATE(7359), 1, - sym_comment, - STATE(7900), 1, - sym_val_string, - STATE(8074), 1, - sym_long_flag_equals_value, - STATE(8126), 1, - aux_sym_decl_def_repeat1, - STATE(8838), 1, - sym_long_flag, - STATE(10184), 1, - sym__command_name, - ACTIONS(2726), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [236564] = 7, + [236003] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(987), 1, - anon_sym_DOT_DOT2, - ACTIONS(12960), 1, + ACTIONS(12168), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(12403), 1, anon_sym_DOT, - STATE(7360), 1, - sym_comment, - STATE(7377), 1, - aux_sym_cell_path_repeat1, - STATE(7992), 1, - sym_path, - ACTIONS(989), 7, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [236592] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(7361), 1, + STATE(6924), 1, sym_comment, - ACTIONS(919), 4, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(917), 7, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token5, - [236614] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2843), 1, + ACTIONS(2356), 3, sym_cmd_identifier, - ACTIONS(2847), 1, - anon_sym_LPAREN2, - ACTIONS(12962), 1, anon_sym_DOT_DOT2, - STATE(7362), 1, - sym_comment, - ACTIONS(2851), 2, - anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(12964), 2, + ACTIONS(2358), 7, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2845), 4, - anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [236644] = 9, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(3321), 1, - anon_sym_DASH, - ACTIONS(5625), 1, - anon_sym_DASH_DASH, - ACTIONS(5993), 1, - anon_sym_LF, - STATE(7363), 1, - sym_comment, - STATE(7395), 1, - sym__flag, - STATE(8282), 1, - sym_long_flag_equals_value, - STATE(8329), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(5991), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [236676] = 9, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(3321), 1, - anon_sym_DASH, - ACTIONS(5625), 1, - anon_sym_DASH_DASH, - ACTIONS(5993), 1, - anon_sym_LF, - STATE(7364), 1, - sym_comment, - STATE(7396), 1, - sym__flag, - STATE(8282), 1, - sym_long_flag_equals_value, - STATE(8329), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(5991), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [236708] = 9, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(3321), 1, - anon_sym_DASH, - ACTIONS(5625), 1, - anon_sym_DASH_DASH, - ACTIONS(5993), 1, - anon_sym_LF, - STATE(7365), 1, - sym_comment, - STATE(7397), 1, - sym__flag, - STATE(8282), 1, - sym_long_flag_equals_value, - STATE(8329), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(5991), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [236740] = 5, + [236030] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12966), 1, - aux_sym__immediate_decimal_token2, - STATE(7366), 1, - sym_comment, - ACTIONS(925), 4, + ACTIONS(1840), 1, + anon_sym_in, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(5735), 1, anon_sym_DOLLAR, + ACTIONS(11537), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(923), 6, - sym_identifier, - anon_sym_DOT_DOT2, + ACTIONS(11992), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(12406), 1, anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token5, - [236764] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12968), 1, - aux_sym__immediate_decimal_token2, - STATE(7367), 1, + STATE(6925), 1, sym_comment, - ACTIONS(919), 4, - anon_sym_DOLLAR, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(917), 6, - sym_identifier, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token5, - [236788] = 8, + STATE(6987), 1, + sym__var, + STATE(8360), 1, + sym__immediate_decimal, + ACTIONS(11990), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(9276), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [236069] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3518), 1, - sym_cmd_identifier, - ACTIONS(3522), 1, + ACTIONS(5735), 1, + anon_sym_DOLLAR, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(12970), 1, - anon_sym_DOT_DOT2, - STATE(7368), 1, - sym_comment, - ACTIONS(1934), 2, + ACTIONS(11576), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11964), 1, anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(12972), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3520), 4, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [236818] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12863), 1, - anon_sym_DASH, - STATE(7369), 1, + STATE(3929), 1, + sym__var, + STATE(6926), 1, sym_comment, - ACTIONS(9824), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, + STATE(8982), 1, + sym__immediate_decimal, + ACTIONS(2171), 2, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [236840] = 4, + anon_sym_EQ_GT, + ACTIONS(11966), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(8981), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [236106] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(7370), 1, + ACTIONS(12408), 1, + aux_sym__immediate_decimal_token2, + STATE(6927), 1, sym_comment, - ACTIONS(2437), 4, + ACTIONS(2362), 4, sym_cmd_identifier, anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(2439), 7, + ACTIONS(2364), 7, anon_sym_DASH_DASH, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, @@ -553119,204 +511992,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [236862] = 6, + [236131] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12974), 1, - anon_sym_DOT, - ACTIONS(12977), 1, - aux_sym__immediate_decimal_token2, - STATE(7371), 1, - sym_comment, - ACTIONS(2581), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(2583), 6, + ACTIONS(3918), 1, + anon_sym_not, + ACTIONS(12410), 1, + anon_sym_LPAREN, + ACTIONS(12412), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [236888] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12305), 1, - anon_sym_COLON, - ACTIONS(12388), 1, - anon_sym_EQ, - ACTIONS(12944), 1, - anon_sym_COMMA, - ACTIONS(12946), 1, + ACTIONS(12414), 1, anon_sym_DASH, - STATE(7372), 1, + STATE(5079), 1, + sym__var, + STATE(5878), 1, + sym__expr_unary_minus, + STATE(6928), 1, sym_comment, - STATE(7385), 1, - sym_param_value, - STATE(7906), 1, - sym_param_type, - ACTIONS(12942), 5, - sym_identifier, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [236920] = 9, + ACTIONS(12416), 2, + anon_sym_true, + anon_sym_false, + STATE(5880), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [236166] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3321), 1, - anon_sym_DASH, - ACTIONS(5623), 1, - anon_sym_LF, - ACTIONS(5625), 1, - anon_sym_DASH_DASH, - STATE(7364), 1, - sym__flag, - STATE(7373), 1, - sym_comment, - STATE(8282), 1, - sym_long_flag_equals_value, - STATE(8329), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(5621), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [236952] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12981), 1, + ACTIONS(3056), 1, anon_sym_DASH, - STATE(7374), 1, - sym_comment, - ACTIONS(12979), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + ACTIONS(4837), 1, anon_sym_DASH_DASH, - [236974] = 9, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(3321), 1, - anon_sym_DASH, - ACTIONS(5439), 1, + ACTIONS(12420), 1, anon_sym_LF, - ACTIONS(5625), 1, - anon_sym_DASH_DASH, - STATE(7375), 1, + STATE(6929), 1, sym_comment, - STATE(7513), 1, + STATE(7036), 1, sym__flag, - STATE(8282), 1, + STATE(7909), 1, sym_long_flag_equals_value, - STATE(8329), 2, + STATE(8027), 2, sym_short_flag, sym_long_flag, - ACTIONS(5437), 4, + ACTIONS(12418), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [237006] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(12983), 1, - aux_sym__immediate_decimal_token2, - STATE(7376), 1, - sym_comment, - ACTIONS(917), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token5, - ACTIONS(919), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [237030] = 7, + [236198] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1006), 1, - anon_sym_DOT_DOT2, - ACTIONS(12960), 1, - anon_sym_DOT, - STATE(7377), 1, - sym_comment, - STATE(7387), 1, - aux_sym_cell_path_repeat1, - STATE(7992), 1, - sym_path, - ACTIONS(1008), 7, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [237058] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(2845), 1, - aux_sym_command_token1, - ACTIONS(12985), 1, - anon_sym_DOT_DOT2, - STATE(7378), 1, - sym_comment, - ACTIONS(2851), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(12987), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2843), 5, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_LF2, - [237086] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(3520), 1, - aux_sym_command_token1, - ACTIONS(12989), 1, - anon_sym_DOT_DOT2, - STATE(7379), 1, + STATE(6930), 1, sym_comment, - ACTIONS(1934), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(12991), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3518), 5, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [237114] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12995), 1, + ACTIONS(1047), 2, anon_sym_DASH, - STATE(7380), 1, - sym_comment, - ACTIONS(12993), 10, - anon_sym_EQ, + anon_sym_DOT, + ACTIONS(1049), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -553326,1557 +512058,1481 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [237136] = 12, + [236220] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2724), 1, + ACTIONS(3038), 1, anon_sym_DQUOTE, - ACTIONS(3275), 1, - anon_sym_DASH_DASH, - ACTIONS(12867), 1, + ACTIONS(12352), 1, + anon_sym_LPAREN, + ACTIONS(12354), 1, + anon_sym_DOLLAR, + ACTIONS(12422), 1, sym_cmd_identifier, - STATE(7019), 1, + STATE(5006), 1, + sym__var, + STATE(5860), 1, sym__str_double_quotes, - STATE(7381), 1, + STATE(6931), 1, sym_comment, - STATE(7900), 1, - sym_val_string, - STATE(8074), 1, - sym_long_flag_equals_value, - STATE(8126), 1, - aux_sym_decl_def_repeat1, - STATE(8838), 1, - sym_long_flag, - STATE(9566), 1, - sym__command_name, - ACTIONS(2726), 2, + ACTIONS(3040), 2, sym__str_single_quotes, sym__str_back_ticks, - [237174] = 4, + STATE(8246), 3, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + [236254] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12999), 1, - anon_sym_DASH, - STATE(7382), 1, + STATE(6932), 1, sym_comment, - ACTIONS(12997), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [237196] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13003), 1, + ACTIONS(1037), 2, anon_sym_DASH, - STATE(7383), 1, - sym_comment, - ACTIONS(13001), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [237218] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(2845), 1, - aux_sym_command_token1, - ACTIONS(13005), 1, - anon_sym_DOT_DOT2, - STATE(7384), 1, - sym_comment, - ACTIONS(2851), 2, anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(13007), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2843), 5, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [237246] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12305), 1, - anon_sym_COLON, - ACTIONS(13011), 1, - anon_sym_COMMA, - ACTIONS(13013), 1, - anon_sym_DASH, - STATE(7385), 1, - sym_comment, - STATE(7884), 1, - sym_param_type, - ACTIONS(13009), 7, + ACTIONS(1039), 9, sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [237274] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12305), 1, anon_sym_COLON, - ACTIONS(13017), 1, anon_sym_COMMA, - ACTIONS(13019), 1, - anon_sym_DASH, - STATE(7386), 1, - sym_comment, - STATE(7965), 1, - sym_param_type, - ACTIONS(13015), 7, - sym_identifier, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [237302] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(999), 1, - anon_sym_DOT_DOT2, - ACTIONS(13021), 1, - anon_sym_DOT, - STATE(7992), 1, - sym_path, - STATE(7387), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1001), 7, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [237328] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12305), 1, - anon_sym_COLON, - ACTIONS(12388), 1, - anon_sym_EQ, - ACTIONS(12878), 1, - anon_sym_COMMA, - ACTIONS(12880), 1, - anon_sym_DASH, - STATE(7388), 1, - sym_comment, - STATE(7469), 1, - sym_param_value, - STATE(7894), 1, - sym_param_type, - ACTIONS(12876), 5, - sym_identifier, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [237360] = 11, + [236276] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1381), 1, aux_sym__immediate_decimal_token4, - ACTIONS(2385), 1, + ACTIONS(2171), 1, anon_sym_LBRACE, - ACTIONS(6247), 1, + ACTIONS(5725), 1, anon_sym_DOLLAR, - ACTIONS(12033), 1, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(13024), 1, + ACTIONS(12424), 1, anon_sym_DOT, - STATE(7389), 1, + STATE(6933), 1, sym_comment, - STATE(7440), 1, + STATE(7000), 1, sym__var, - STATE(7748), 1, + STATE(7368), 1, sym__immediate_decimal, - ACTIONS(13026), 2, + ACTIONS(12426), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7744), 2, + STATE(7360), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [237396] = 4, + [236312] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13028), 1, + ACTIONS(12430), 1, anon_sym_DASH, - STATE(7390), 1, + STATE(6934), 1, sym_comment, - ACTIONS(9336), 10, + ACTIONS(12428), 10, anon_sym_EQ, sym_identifier, + anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [237418] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(995), 1, - anon_sym_DOT_DOT2, - ACTIONS(12960), 1, - anon_sym_DOT, - STATE(7360), 1, - sym_path, - STATE(7391), 1, - sym_comment, - STATE(8216), 1, - sym_cell_path, - ACTIONS(997), 7, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [237446] = 6, + [236334] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13030), 1, - anon_sym_DOT, - ACTIONS(13033), 1, + ACTIONS(12432), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12434), 1, aux_sym__immediate_decimal_token2, - STATE(7392), 1, - sym_comment, - ACTIONS(923), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token5, - ACTIONS(925), 7, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [237472] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(7393), 1, + STATE(6935), 1, sym_comment, - ACTIONS(2439), 5, - ts_builtin_sym_end, + ACTIONS(2231), 4, + anon_sym_DASH_DASH, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - ACTIONS(2437), 6, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, + ACTIONS(2229), 5, + sym_identifier, + anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token2, - [237494] = 4, + [236360] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(7394), 1, + ACTIONS(12436), 1, + aux_sym__immediate_decimal_token2, + STATE(6936), 1, sym_comment, - ACTIONS(2439), 4, + ACTIONS(2358), 3, anon_sym_LF, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2437), 7, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, anon_sym_DOT, - aux_sym_unquoted_token2, - [237516] = 9, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(3067), 1, - anon_sym_DASH, - ACTIONS(6039), 1, - anon_sym_LF, - ACTIONS(12958), 1, - anon_sym_DASH_DASH, - STATE(5143), 1, - sym_long_flag_equals_value, - STATE(7395), 1, - sym_comment, - STATE(8976), 1, - sym__flag, - STATE(5044), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(6037), 4, + ACTIONS(2356), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [237548] = 9, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(3321), 1, - anon_sym_DASH, - ACTIONS(5625), 1, anon_sym_DASH_DASH, - ACTIONS(6039), 1, - anon_sym_LF, - STATE(7396), 1, - sym_comment, - STATE(7405), 1, - sym__flag, - STATE(8282), 1, - sym_long_flag_equals_value, - STATE(8329), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(6037), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [237580] = 9, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(3321), 1, anon_sym_DASH, - ACTIONS(5625), 1, - anon_sym_DASH_DASH, - ACTIONS(6039), 1, - anon_sym_LF, - STATE(7397), 1, - sym_comment, - STATE(7406), 1, - sym__flag, - STATE(8282), 1, - sym_long_flag_equals_value, - STATE(8329), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(6037), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_RBRACE, - [237612] = 8, - ACTIONS(113), 1, + aux_sym_unquoted_token2, + [236384] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2847), 1, + ACTIONS(1381), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(2171), 1, + anon_sym_LBRACE, + ACTIONS(5735), 1, + anon_sym_DOLLAR, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(13035), 1, - anon_sym_DOT_DOT2, - STATE(7398), 1, + ACTIONS(12438), 1, + anon_sym_DOT, + STATE(6937), 1, sym_comment, - ACTIONS(2845), 2, - ts_builtin_sym_end, + STATE(6987), 1, + sym__var, + STATE(9375), 1, + sym__immediate_decimal, + ACTIONS(12440), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(9367), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [236420] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(3356), 1, aux_sym_command_token1, - ACTIONS(2851), 2, + ACTIONS(12442), 1, + anon_sym_DOT_DOT2, + STATE(6938), 1, + sym_comment, + ACTIONS(3362), 2, anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(13037), 2, + ACTIONS(12444), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2843), 3, + ACTIONS(3354), 5, anon_sym_SEMI, anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, - [237642] = 9, + anon_sym_RBRACE, + [236448] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3321), 1, + ACTIONS(3056), 1, anon_sym_DASH, - ACTIONS(5625), 1, + ACTIONS(4837), 1, anon_sym_DASH_DASH, - ACTIONS(6039), 1, + ACTIONS(4949), 1, anon_sym_LF, - STATE(7399), 1, + STATE(6939), 1, sym_comment, - STATE(7408), 1, + STATE(6954), 1, sym__flag, - STATE(8282), 1, + STATE(7909), 1, sym_long_flag_equals_value, - STATE(8329), 2, + STATE(8027), 2, sym_short_flag, sym_long_flag, - ACTIONS(6037), 4, + ACTIONS(4947), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [237674] = 4, + [236480] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12448), 1, + anon_sym_DASH, + STATE(6940), 1, + sym_comment, + ACTIONS(12446), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [236502] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(7400), 1, + STATE(6941), 1, sym_comment, - ACTIONS(2549), 4, - anon_sym_LF, + ACTIONS(2364), 5, + ts_builtin_sym_end, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2547), 7, + aux_sym_command_token1, + ACTIONS(2362), 6, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LF, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token2, - [237696] = 7, + [236524] = 8, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13039), 1, - anon_sym_DOT, - STATE(5151), 1, - sym_cell_path, - STATE(7401), 1, - sym_comment, - STATE(7524), 1, - sym_path, - ACTIONS(997), 3, + ACTIONS(3356), 1, anon_sym_LF, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(12450), 1, + anon_sym_DOT_DOT2, + STATE(6942), 1, + sym_comment, + ACTIONS(3362), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(12452), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(995), 5, + ACTIONS(3354), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [237724] = 5, + [236554] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13033), 1, - aux_sym__immediate_decimal_token2, - STATE(7402), 1, - sym_comment, - ACTIONS(923), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token5, - ACTIONS(925), 7, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [237748] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1010), 1, - anon_sym_DOT_DOT2, - ACTIONS(9007), 1, - anon_sym_DOT, - STATE(4505), 1, - sym_path, - STATE(7321), 1, - sym_cell_path, - STATE(7403), 1, + ACTIONS(12454), 1, + anon_sym_LT, + STATE(6943), 1, sym_comment, - ACTIONS(1012), 7, + ACTIONS(9333), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_DASH_GT, anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_in, + anon_sym_GT, + anon_sym_AT, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [237776] = 6, - ACTIONS(3), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [236576] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13041), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13043), 1, + ACTIONS(12314), 1, aux_sym__immediate_decimal_token2, - STATE(7404), 1, + STATE(6944), 1, sym_comment, - ACTIONS(909), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token5, - ACTIONS(911), 6, - anon_sym_in, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [237802] = 9, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(3067), 1, - anon_sym_DASH, - ACTIONS(6043), 1, + ACTIONS(2231), 3, anon_sym_LF, - ACTIONS(12958), 1, - anon_sym_DASH_DASH, - STATE(5143), 1, - sym_long_flag_equals_value, - STATE(7405), 1, - sym_comment, - STATE(8992), 1, - sym__flag, - STATE(5044), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(6041), 4, + anon_sym_LPAREN2, + anon_sym_DOT, + ACTIONS(2229), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_RBRACE, - [237834] = 9, + aux_sym_unquoted_token2, + [236600] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3321), 1, + ACTIONS(2504), 1, anon_sym_DASH, - ACTIONS(5625), 1, - anon_sym_DASH_DASH, - ACTIONS(6043), 1, + ACTIONS(4953), 1, anon_sym_LF, - STATE(7406), 1, + ACTIONS(12456), 1, + anon_sym_DASH_DASH, + STATE(4714), 1, + sym_long_flag_equals_value, + STATE(6945), 1, sym_comment, - STATE(7413), 1, + STATE(8487), 1, sym__flag, - STATE(8282), 1, - sym_long_flag_equals_value, - STATE(8329), 2, + STATE(4674), 2, sym_short_flag, sym_long_flag, - ACTIONS(6041), 4, + ACTIONS(4951), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [237866] = 6, - ACTIONS(113), 1, + [236632] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12352), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(13045), 1, + ACTIONS(1381), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(1884), 1, + anon_sym_LBRACE, + ACTIONS(5725), 1, + anon_sym_DOLLAR, + ACTIONS(11537), 1, + anon_sym_LPAREN2, + ACTIONS(12424), 1, anon_sym_DOT, - STATE(7407), 1, + STATE(6655), 1, + sym__immediate_decimal, + STATE(6946), 1, sym_comment, - ACTIONS(2583), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - ACTIONS(2581), 6, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOT_DOT2, - anon_sym_LF2, - [237892] = 9, + STATE(7000), 1, + sym__var, + ACTIONS(12426), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7172), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [236668] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3321), 1, + ACTIONS(3056), 1, anon_sym_DASH, - ACTIONS(5625), 1, + ACTIONS(4837), 1, anon_sym_DASH_DASH, - ACTIONS(6043), 1, + ACTIONS(4873), 1, anon_sym_LF, - STATE(7408), 1, + STATE(6947), 1, sym_comment, - STATE(7414), 1, + STATE(7039), 1, sym__flag, - STATE(8282), 1, + STATE(7909), 1, sym_long_flag_equals_value, - STATE(8329), 2, + STATE(8027), 2, sym_short_flag, sym_long_flag, - ACTIONS(6041), 4, + ACTIONS(4871), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [237924] = 9, + [236700] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3321), 1, - anon_sym_DASH, - ACTIONS(5625), 1, - anon_sym_DASH_DASH, - ACTIONS(6043), 1, - anon_sym_LF, - STATE(7409), 1, + ACTIONS(12458), 1, + aux_sym__immediate_decimal_token2, + STATE(6948), 1, sym_comment, - STATE(7415), 1, - sym__flag, - STATE(8282), 1, - sym_long_flag_equals_value, - STATE(8329), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(6041), 4, + ACTIONS(2364), 3, + anon_sym_LF, + anon_sym_LPAREN2, + anon_sym_DOT, + ACTIONS(2362), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_RBRACE, - [237956] = 11, + aux_sym_unquoted_token2, + [236724] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1922), 1, - anon_sym_EQ_GT, - ACTIONS(6253), 1, + ACTIONS(2171), 1, + anon_sym_LBRACE, + ACTIONS(5735), 1, anon_sym_DOLLAR, - ACTIONS(12033), 1, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(12127), 1, + ACTIONS(11543), 1, aux_sym__immediate_decimal_token4, - ACTIONS(13047), 1, + ACTIONS(11906), 1, anon_sym_DOT, - STATE(4486), 1, - sym__var, - STATE(7410), 1, + STATE(6949), 1, sym_comment, - STATE(9766), 1, + STATE(6987), 1, + sym__var, + STATE(7847), 1, sym__immediate_decimal, - ACTIONS(12346), 2, + ACTIONS(11864), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(9432), 2, + STATE(7846), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [237992] = 11, + [236760] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1922), 1, - anon_sym_EQ_GT, - ACTIONS(12033), 1, - anon_sym_LPAREN2, - ACTIONS(12127), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12162), 1, + ACTIONS(938), 1, + sym_identifier, + ACTIONS(940), 1, anon_sym_DOLLAR, - ACTIONS(12348), 1, - anon_sym_DOT, - STATE(7196), 1, - sym__immediate_decimal, - STATE(7411), 1, - sym_comment, - STATE(9422), 1, - sym__var, - ACTIONS(12350), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7671), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [238028] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2004), 1, - anon_sym_EQ_GT, - ACTIONS(12033), 1, + ACTIONS(2187), 1, anon_sym_LPAREN2, - ACTIONS(12127), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12162), 1, - anon_sym_DOLLAR, - ACTIONS(12348), 1, + ACTIONS(9223), 1, anon_sym_DOT, - STATE(7198), 1, - sym__immediate_decimal, - STATE(7412), 1, + ACTIONS(9231), 1, + aux_sym_unquoted_token5, + ACTIONS(12460), 1, + anon_sym_DOT_DOT2, + ACTIONS(12464), 1, + sym_filesize_unit, + ACTIONS(12466), 1, + sym_duration_unit, + STATE(6950), 1, sym_comment, - STATE(9422), 1, - sym__var, - ACTIONS(12350), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7753), 2, + STATE(10200), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - [238064] = 9, + ACTIONS(12462), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [236798] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3067), 1, + ACTIONS(3056), 1, anon_sym_DASH, - ACTIONS(6047), 1, - anon_sym_LF, - ACTIONS(12958), 1, + ACTIONS(4837), 1, anon_sym_DASH_DASH, - STATE(5143), 1, - sym_long_flag_equals_value, - STATE(7413), 1, + ACTIONS(4953), 1, + anon_sym_LF, + STATE(6951), 1, sym_comment, - STATE(9007), 1, + STATE(6991), 1, sym__flag, - STATE(5044), 2, + STATE(7909), 1, + sym_long_flag_equals_value, + STATE(8027), 2, sym_short_flag, sym_long_flag, - ACTIONS(6045), 4, + ACTIONS(4951), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [238096] = 9, + [236830] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(6952), 1, + sym_comment, + ACTIONS(2404), 5, + ts_builtin_sym_end, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_command_token1, + ACTIONS(2402), 6, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token2, + [236852] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(12468), 1, + anon_sym_DOT, + ACTIONS(12471), 1, + aux_sym__immediate_decimal_token2, + STATE(6953), 1, + sym_comment, + ACTIONS(911), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token5, + ACTIONS(913), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [236878] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3321), 1, + ACTIONS(3056), 1, anon_sym_DASH, - ACTIONS(5625), 1, + ACTIONS(4837), 1, anon_sym_DASH_DASH, - ACTIONS(6047), 1, + ACTIONS(4953), 1, anon_sym_LF, - STATE(7414), 1, + STATE(6954), 1, sym_comment, - STATE(7419), 1, + STATE(6995), 1, sym__flag, - STATE(8282), 1, + STATE(7909), 1, sym_long_flag_equals_value, - STATE(8329), 2, + STATE(8027), 2, sym_short_flag, sym_long_flag, - ACTIONS(6045), 4, + ACTIONS(4951), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [238128] = 9, + [236910] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3321), 1, + ACTIONS(12473), 1, + aux_sym__immediate_decimal_token2, + STATE(6955), 1, + sym_comment, + ACTIONS(901), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token5, + ACTIONS(903), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [236934] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6956), 1, + sym_comment, + ACTIONS(1041), 2, anon_sym_DASH, - ACTIONS(5625), 1, + anon_sym_DOT, + ACTIONS(1043), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - ACTIONS(6047), 1, - anon_sym_LF, - STATE(7415), 1, + [236956] = 12, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(938), 1, + anon_sym_RBRACK, + ACTIONS(940), 1, + sym__entry_separator, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + ACTIONS(9156), 1, + anon_sym_DOT, + ACTIONS(9162), 1, + aux_sym_unquoted_token5, + ACTIONS(12475), 1, + anon_sym_DOT_DOT2, + ACTIONS(12479), 1, + sym_filesize_unit, + ACTIONS(12481), 1, + sym_duration_unit, + STATE(6957), 1, sym_comment, - STATE(7420), 1, - sym__flag, - STATE(8282), 1, - sym_long_flag_equals_value, - STATE(8329), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(6045), 4, - anon_sym_SEMI, + STATE(10183), 1, + sym__expr_parenthesized_immediate, + ACTIONS(12477), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [236994] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12485), 1, + anon_sym_DASH, + STATE(6958), 1, + sym_comment, + ACTIONS(12483), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [238160] = 4, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [237016] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13049), 1, - anon_sym_LT, - STATE(7416), 1, + ACTIONS(12489), 1, + anon_sym_DASH, + STATE(6959), 1, sym_comment, - ACTIONS(9824), 10, + ACTIONS(12487), 10, anon_sym_EQ, sym_identifier, - anon_sym_DASH_GT, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [238182] = 9, - ACTIONS(113), 1, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [237038] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3321), 1, + ACTIONS(12493), 1, anon_sym_DASH, - ACTIONS(5625), 1, - anon_sym_DASH_DASH, - ACTIONS(6047), 1, - anon_sym_LF, - STATE(7417), 1, + STATE(6960), 1, sym_comment, - STATE(7421), 1, - sym__flag, - STATE(8282), 1, - sym_long_flag_equals_value, - STATE(8329), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(6045), 4, - anon_sym_SEMI, + ACTIONS(12491), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [238214] = 4, - ACTIONS(113), 1, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [237060] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7418), 1, + ACTIONS(12497), 1, + anon_sym_DASH, + STATE(6961), 1, sym_comment, - ACTIONS(3507), 4, - anon_sym_LF, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3505), 7, - anon_sym_SEMI, + ACTIONS(12495), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - [238236] = 9, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [237082] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3067), 1, + ACTIONS(3056), 1, anon_sym_DASH, - ACTIONS(12958), 1, + ACTIONS(4837), 1, anon_sym_DASH_DASH, - ACTIONS(13053), 1, + ACTIONS(4953), 1, anon_sym_LF, - STATE(5143), 1, - sym_long_flag_equals_value, - STATE(7419), 1, + STATE(6962), 1, sym_comment, - STATE(9019), 1, + STATE(6996), 1, sym__flag, - STATE(5044), 2, + STATE(7909), 1, + sym_long_flag_equals_value, + STATE(8027), 2, sym_short_flag, sym_long_flag, - ACTIONS(13051), 4, + ACTIONS(4951), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [238268] = 9, + [237114] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11770), 1, + anon_sym_COLON, + ACTIONS(12501), 1, + anon_sym_COMMA, + ACTIONS(12503), 1, + anon_sym_DASH, + STATE(6963), 1, + sym_comment, + STATE(7466), 1, + sym_param_type, + ACTIONS(12499), 7, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [237142] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3321), 1, + ACTIONS(3056), 1, anon_sym_DASH, - ACTIONS(5625), 1, + ACTIONS(4837), 1, anon_sym_DASH_DASH, - ACTIONS(13053), 1, + ACTIONS(5603), 1, anon_sym_LF, - STATE(7420), 1, + STATE(6964), 1, sym_comment, - STATE(7423), 1, + STATE(7022), 1, sym__flag, - STATE(8282), 1, + STATE(7909), 1, sym_long_flag_equals_value, - STATE(8329), 2, + STATE(8027), 2, sym_short_flag, sym_long_flag, - ACTIONS(13051), 4, + ACTIONS(5601), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [238300] = 9, - ACTIONS(113), 1, + [237174] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11770), 1, + anon_sym_COLON, + ACTIONS(12507), 1, + anon_sym_COMMA, + ACTIONS(12509), 1, + anon_sym_DASH, + STATE(6965), 1, + sym_comment, + STATE(7467), 1, + sym_param_type, + ACTIONS(12505), 7, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [237202] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3321), 1, + ACTIONS(11770), 1, + anon_sym_COLON, + ACTIONS(11942), 1, + anon_sym_EQ, + ACTIONS(12318), 1, + anon_sym_COMMA, + ACTIONS(12320), 1, anon_sym_DASH, - ACTIONS(5625), 1, + STATE(6966), 1, + sym_comment, + STATE(7030), 1, + sym_param_value, + STATE(7468), 1, + sym_param_type, + ACTIONS(12316), 5, + sym_identifier, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [237234] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1006), 1, + anon_sym_DOT_DOT2, + ACTIONS(12511), 1, + anon_sym_DOT, + STATE(6967), 1, + sym_comment, + STATE(7058), 1, + aux_sym_cell_path_repeat1, + STATE(7449), 1, + sym_path, + ACTIONS(1008), 7, + sym_cmd_identifier, anon_sym_DASH_DASH, - ACTIONS(13053), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [237262] = 8, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(3576), 1, anon_sym_LF, - STATE(7421), 1, + ACTIONS(12513), 1, + anon_sym_DOT, + ACTIONS(12515), 1, + aux_sym__immediate_decimal_token1, + STATE(6968), 1, sym_comment, - STATE(7424), 1, - sym__flag, - STATE(8282), 1, - sym_long_flag_equals_value, - STATE(8329), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(13051), 4, + ACTIONS(3574), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_RBRACE, - [238332] = 9, + [237292] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3321), 1, + ACTIONS(3056), 1, anon_sym_DASH, - ACTIONS(5625), 1, + ACTIONS(4837), 1, anon_sym_DASH_DASH, - ACTIONS(13053), 1, + ACTIONS(5603), 1, anon_sym_LF, - STATE(7422), 1, + STATE(6969), 1, sym_comment, - STATE(7425), 1, + STATE(7027), 1, sym__flag, - STATE(8282), 1, + STATE(7909), 1, sym_long_flag_equals_value, - STATE(8329), 2, + STATE(8027), 2, sym_short_flag, sym_long_flag, - ACTIONS(13051), 4, + ACTIONS(5601), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [238364] = 9, + [237324] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3067), 1, + ACTIONS(2504), 1, anon_sym_DASH, - ACTIONS(12958), 1, - anon_sym_DASH_DASH, - ACTIONS(13057), 1, + ACTIONS(4933), 1, anon_sym_LF, - STATE(5143), 1, + ACTIONS(12456), 1, + anon_sym_DASH_DASH, + STATE(4714), 1, sym_long_flag_equals_value, - STATE(7423), 1, + STATE(6970), 1, sym_comment, - STATE(9031), 1, + STATE(8478), 1, sym__flag, - STATE(5044), 2, + STATE(4674), 2, sym_short_flag, sym_long_flag, - ACTIONS(13055), 4, + ACTIONS(4931), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [238396] = 9, - ACTIONS(113), 1, + [237356] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3321), 1, - anon_sym_DASH, - ACTIONS(5625), 1, + ACTIONS(3312), 1, + sym_cmd_identifier, + ACTIONS(3316), 1, + anon_sym_LPAREN2, + ACTIONS(12517), 1, + anon_sym_DOT_DOT2, + STATE(6971), 1, + sym_comment, + ACTIONS(1844), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(12519), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3314), 4, anon_sym_DASH_DASH, - ACTIONS(13057), 1, - anon_sym_LF, - STATE(7424), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [237386] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2486), 1, + anon_sym_DQUOTE, + ACTIONS(12074), 1, + anon_sym_LPAREN, + ACTIONS(12076), 1, + anon_sym_DOLLAR, + ACTIONS(12521), 1, + sym_cmd_identifier, + STATE(4669), 1, + sym__var, + STATE(5376), 1, + sym__str_double_quotes, + STATE(6972), 1, sym_comment, - STATE(7426), 1, - sym__flag, - STATE(8282), 1, - sym_long_flag_equals_value, - STATE(8329), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(13055), 4, + ACTIONS(2488), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(8071), 3, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + [237420] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1840), 1, + anon_sym_EQ_GT, + ACTIONS(5735), 1, + anon_sym_DOLLAR, + ACTIONS(11537), 1, + anon_sym_LPAREN2, + ACTIONS(11576), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(12523), 1, + anon_sym_DOT, + STATE(3929), 1, + sym__var, + STATE(6973), 1, + sym_comment, + STATE(9128), 1, + sym__immediate_decimal, + ACTIONS(11966), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(8983), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [237456] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1840), 1, + anon_sym_EQ_GT, + ACTIONS(11537), 1, + anon_sym_LPAREN2, + ACTIONS(11576), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11650), 1, + anon_sym_DOLLAR, + ACTIONS(11968), 1, + anon_sym_DOT, + STATE(6788), 1, + sym__immediate_decimal, + STATE(6974), 1, + sym_comment, + STATE(8975), 1, + sym__var, + ACTIONS(11970), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7403), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [237492] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(12525), 1, + anon_sym_DOT, + STATE(4628), 1, + sym_cell_path, + STATE(6975), 1, + sym_comment, + STATE(7100), 1, + sym_path, + ACTIONS(994), 3, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(992), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [238428] = 9, + anon_sym_DOT_DOT2, + [237520] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1381), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(2209), 1, + anon_sym_LBRACE, + ACTIONS(5725), 1, + anon_sym_DOLLAR, + ACTIONS(11537), 1, + anon_sym_LPAREN2, + ACTIONS(12424), 1, + anon_sym_DOT, + STATE(6976), 1, + sym_comment, + STATE(7000), 1, + sym__var, + STATE(7139), 1, + sym__immediate_decimal, + ACTIONS(12426), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7138), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [237556] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1381), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(2138), 1, + anon_sym_LBRACE, + ACTIONS(5725), 1, + anon_sym_DOLLAR, + ACTIONS(11537), 1, + anon_sym_LPAREN2, + ACTIONS(12424), 1, + anon_sym_DOT, + STATE(6977), 1, + sym_comment, + STATE(7000), 1, + sym__var, + STATE(7148), 1, + sym__immediate_decimal, + ACTIONS(12426), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7147), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [237592] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3321), 1, + ACTIONS(3056), 1, anon_sym_DASH, - ACTIONS(5625), 1, + ACTIONS(4837), 1, anon_sym_DASH_DASH, - ACTIONS(13057), 1, + ACTIONS(4933), 1, anon_sym_LF, - STATE(7425), 1, + STATE(6978), 1, sym_comment, - STATE(7427), 1, + STATE(7028), 1, sym__flag, - STATE(8282), 1, + STATE(7909), 1, sym_long_flag_equals_value, - STATE(8329), 2, + STATE(8027), 2, sym_short_flag, sym_long_flag, - ACTIONS(13055), 4, + ACTIONS(4931), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [238460] = 9, + [237624] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3067), 1, + ACTIONS(3056), 1, anon_sym_DASH, - ACTIONS(12958), 1, + ACTIONS(4837), 1, anon_sym_DASH_DASH, - ACTIONS(13061), 1, + ACTIONS(4933), 1, anon_sym_LF, - STATE(5143), 1, - sym_long_flag_equals_value, - STATE(7426), 1, + STATE(6979), 1, sym_comment, - STATE(9088), 1, + STATE(7061), 1, sym__flag, - STATE(5044), 2, + STATE(7909), 1, + sym_long_flag_equals_value, + STATE(8027), 2, sym_short_flag, sym_long_flag, - ACTIONS(13059), 4, + ACTIONS(4931), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [238492] = 9, + [237656] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3321), 1, + ACTIONS(3056), 1, anon_sym_DASH, - ACTIONS(5625), 1, + ACTIONS(4837), 1, anon_sym_DASH_DASH, - ACTIONS(13061), 1, + ACTIONS(4933), 1, anon_sym_LF, - STATE(7427), 1, + STATE(6980), 1, sym_comment, - STATE(7430), 1, + STATE(7090), 1, sym__flag, - STATE(8282), 1, + STATE(7909), 1, sym_long_flag_equals_value, - STATE(8329), 2, + STATE(8027), 2, sym_short_flag, sym_long_flag, - ACTIONS(13059), 4, + ACTIONS(4931), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [238524] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(7428), 1, - sym_comment, - ACTIONS(1109), 2, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1111), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [238546] = 5, + [237688] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13063), 1, - aux_sym__immediate_decimal_token2, - STATE(7429), 1, + STATE(6981), 1, sym_comment, - ACTIONS(923), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token5, - ACTIONS(925), 6, + ACTIONS(2231), 4, + anon_sym_LF, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [238570] = 9, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(3067), 1, - anon_sym_DASH, - ACTIONS(12958), 1, - anon_sym_DASH_DASH, - ACTIONS(13067), 1, - anon_sym_LF, - STATE(5143), 1, - sym_long_flag_equals_value, - STATE(7430), 1, - sym_comment, - STATE(9095), 1, - sym__flag, - STATE(5044), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(13065), 4, + ACTIONS(2229), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [238602] = 11, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token2, + [237710] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1884), 1, + anon_sym_EQ_GT, + ACTIONS(11537), 1, + anon_sym_LPAREN2, + ACTIONS(11576), 1, aux_sym__immediate_decimal_token4, - ACTIONS(2389), 1, - anon_sym_LBRACE, - ACTIONS(6247), 1, + ACTIONS(11650), 1, anon_sym_DOLLAR, - ACTIONS(12033), 1, - anon_sym_LPAREN2, - ACTIONS(13024), 1, + ACTIONS(11968), 1, anon_sym_DOT, - STATE(7431), 1, + STATE(6655), 1, + sym__immediate_decimal, + STATE(6982), 1, sym_comment, - STATE(7440), 1, + STATE(8975), 1, sym__var, - STATE(7637), 1, - sym__immediate_decimal, - ACTIONS(13026), 2, + ACTIONS(11970), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7592), 2, + STATE(7172), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [238638] = 6, - ACTIONS(113), 1, + [237746] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12436), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(13069), 1, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + ACTIONS(9203), 1, anon_sym_DOT, - STATE(7432), 1, + ACTIONS(9209), 1, + aux_sym_unquoted_token5, + ACTIONS(12527), 1, + anon_sym_DOT_DOT2, + ACTIONS(12531), 1, + sym_filesize_unit, + ACTIONS(12533), 1, + sym_duration_unit, + STATE(6983), 1, sym_comment, - ACTIONS(2583), 3, + STATE(10092), 1, + sym__expr_parenthesized_immediate, + ACTIONS(940), 2, + anon_sym_DOLLAR, + anon_sym_LBRACE, + ACTIONS(12529), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - ACTIONS(2581), 6, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [238664] = 5, + [237782] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12705), 1, - aux_sym__immediate_decimal_token2, - STATE(7433), 1, + STATE(6984), 1, sym_comment, - ACTIONS(2437), 4, - anon_sym_DASH, + ACTIONS(2402), 4, + sym_cmd_identifier, anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(2439), 6, - anon_sym_DOLLAR, + ACTIONS(2404), 7, anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [238688] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13071), 1, - anon_sym_LT, - STATE(7434), 1, - sym_comment, - ACTIONS(9824), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - anon_sym_LBRACE, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [238710] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(7435), 1, - sym_comment, - ACTIONS(2549), 5, - ts_builtin_sym_end, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - ACTIONS(2547), 6, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - [238732] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(13073), 1, - anon_sym_DOT, - ACTIONS(13076), 1, - aux_sym__immediate_decimal_token2, - STATE(7436), 1, - sym_comment, - ACTIONS(923), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token6, - ACTIONS(925), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [238758] = 5, + [237804] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12871), 1, - aux_sym__immediate_decimal_token2, - STATE(7437), 1, - sym_comment, - ACTIONS(909), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token5, - ACTIONS(911), 7, - anon_sym_DOLLAR, + ACTIONS(1381), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(1840), 1, anon_sym_LBRACE, + ACTIONS(5735), 1, + anon_sym_DOLLAR, + ACTIONS(11537), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [238782] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(13076), 1, - aux_sym__immediate_decimal_token2, - STATE(7438), 1, - sym_comment, - ACTIONS(923), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT2, + ACTIONS(12535), 1, anon_sym_DOT, - aux_sym__unquoted_in_list_token6, - ACTIONS(925), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [238806] = 5, + STATE(6985), 1, + sym_comment, + STATE(6987), 1, + sym__var, + STATE(9067), 1, + sym__immediate_decimal, + ACTIONS(12440), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(9586), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [237840] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13078), 1, - aux_sym__immediate_decimal_token2, - STATE(7439), 1, - sym_comment, - ACTIONS(2581), 5, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(3314), 1, + aux_sym_command_token1, + ACTIONS(12537), 1, anon_sym_DOT_DOT2, + STATE(6986), 1, + sym_comment, + ACTIONS(1844), 2, anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(2583), 5, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_LPAREN2, + ACTIONS(12539), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [238830] = 7, + ACTIONS(3312), 5, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_LF2, + [237868] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1010), 1, - anon_sym_DASH, - ACTIONS(12217), 1, + ACTIONS(1002), 1, + anon_sym_DOT_DOT2, + ACTIONS(8443), 1, anon_sym_DOT, - STATE(7027), 1, + STATE(3985), 1, sym_path, - STATE(7321), 1, + STATE(6889), 1, sym_cell_path, - STATE(7440), 1, + STATE(6987), 1, sym_comment, - ACTIONS(1012), 7, - anon_sym_EQ, - anon_sym_COLON, + ACTIONS(1004), 7, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_in, anon_sym_LBRACE, anon_sym_RBRACE, - [238858] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13080), 1, - aux_sym__immediate_decimal_token2, - STATE(7441), 1, - sym_comment, - ACTIONS(917), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token5, - ACTIONS(919), 7, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [238882] = 5, + [237896] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12763), 1, - aux_sym__immediate_decimal_token2, - STATE(7442), 1, - sym_comment, - ACTIONS(2437), 5, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(2439), 5, - ts_builtin_sym_end, + ACTIONS(3056), 1, + anon_sym_DASH, + ACTIONS(4837), 1, + anon_sym_DASH_DASH, + ACTIONS(5603), 1, anon_sym_LF, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [238906] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(13082), 1, - anon_sym_DOT_DOT2, - STATE(7443), 1, + STATE(6947), 1, + sym__flag, + STATE(6988), 1, sym_comment, - ACTIONS(2845), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2851), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(13084), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2843), 4, + STATE(7909), 1, + sym_long_flag_equals_value, + STATE(8027), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(5601), 4, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [238934] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(7444), 1, - sym_comment, - ACTIONS(1113), 2, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1115), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [238956] = 5, + anon_sym_RBRACE, + [237928] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13086), 1, - aux_sym__immediate_decimal_token2, - STATE(7445), 1, - sym_comment, - ACTIONS(2547), 4, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(2549), 6, - anon_sym_DOLLAR, + ACTIONS(2838), 1, + anon_sym_DQUOTE, + ACTIONS(2976), 1, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [238980] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(7446), 1, + ACTIONS(12164), 1, + sym_cmd_identifier, + STATE(6592), 1, + sym__str_double_quotes, + STATE(6989), 1, sym_comment, - ACTIONS(1117), 2, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1119), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [239002] = 5, + STATE(7065), 1, + aux_sym_decl_def_repeat1, + STATE(7567), 1, + sym_val_string, + STATE(7692), 1, + sym_long_flag_equals_value, + STATE(8720), 1, + sym_long_flag, + STATE(9235), 1, + sym__command_name, + ACTIONS(2840), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [237966] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13088), 1, - aux_sym__immediate_decimal_token1, - STATE(7447), 1, + ACTIONS(1381), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(1840), 1, + anon_sym_LBRACE, + ACTIONS(5725), 1, + anon_sym_DOLLAR, + ACTIONS(11537), 1, + anon_sym_LPAREN2, + ACTIONS(12424), 1, + anon_sym_DOT, + STATE(6788), 1, + sym__immediate_decimal, + STATE(6990), 1, sym_comment, - ACTIONS(5083), 2, - sym_identifier, + STATE(7000), 1, + sym__var, + ACTIONS(12426), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7403), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [238002] = 9, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(2504), 1, anon_sym_DASH, - ACTIONS(5085), 8, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + ACTIONS(12456), 1, anon_sym_DASH_DASH, - [239026] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13090), 1, - aux_sym__immediate_decimal_token2, - STATE(7448), 1, + ACTIONS(12543), 1, + anon_sym_LF, + STATE(4714), 1, + sym_long_flag_equals_value, + STATE(6991), 1, sym_comment, - ACTIONS(917), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token5, - ACTIONS(919), 7, + STATE(8489), 1, + sym__flag, + STATE(4674), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(12541), 4, + anon_sym_SEMI, + anon_sym_RPAREN, 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, - [239050] = 11, + anon_sym_RBRACE, + [238034] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2389), 1, + ACTIONS(1381), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(2148), 1, anon_sym_LBRACE, - ACTIONS(6253), 1, + ACTIONS(5725), 1, anon_sym_DOLLAR, - ACTIONS(12033), 1, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(12039), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12396), 1, + ACTIONS(12424), 1, anon_sym_DOT, - STATE(7403), 1, - sym__var, - STATE(7449), 1, + STATE(6992), 1, sym_comment, - STATE(8414), 1, + STATE(7000), 1, + sym__var, + STATE(7156), 1, sym__immediate_decimal, - ACTIONS(12398), 2, + ACTIONS(12426), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(8413), 2, + STATE(7155), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [239086] = 5, + [238070] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13092), 1, - aux_sym__immediate_decimal_token2, - STATE(7450), 1, + STATE(6993), 1, sym_comment, - ACTIONS(2547), 5, + ACTIONS(2364), 4, + anon_sym_LF, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2362), 7, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(2549), 5, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [239110] = 4, - ACTIONS(3), 1, + [238092] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(7451), 1, + STATE(6994), 1, sym_comment, - ACTIONS(952), 4, - anon_sym_DASH_DASH, + ACTIONS(2404), 4, + anon_sym_LF, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(950), 7, - sym_identifier, - anon_sym_DASH, + ACTIONS(2402), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token5, - [239132] = 9, + aux_sym_unquoted_token2, + [238114] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3321), 1, + ACTIONS(3056), 1, anon_sym_DASH, - ACTIONS(5431), 1, - anon_sym_LF, - ACTIONS(5625), 1, + ACTIONS(4837), 1, anon_sym_DASH_DASH, - STATE(7452), 1, + ACTIONS(12543), 1, + anon_sym_LF, + STATE(6995), 1, sym_comment, - STATE(7521), 1, + STATE(7001), 1, sym__flag, - STATE(8282), 1, + STATE(7909), 1, sym_long_flag_equals_value, - STATE(8329), 2, + STATE(8027), 2, sym_short_flag, sym_long_flag, - ACTIONS(5429), 4, + ACTIONS(12541), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [239164] = 9, + [238146] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3321), 1, + ACTIONS(3056), 1, anon_sym_DASH, - ACTIONS(5431), 1, + ACTIONS(4837), 1, + anon_sym_DASH_DASH, + ACTIONS(12543), 1, anon_sym_LF, - ACTIONS(5625), 1, + STATE(6996), 1, + sym_comment, + STATE(7025), 1, + sym__flag, + STATE(7909), 1, + sym_long_flag_equals_value, + STATE(8027), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(12541), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [238178] = 9, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(3056), 1, + anon_sym_DASH, + ACTIONS(4837), 1, anon_sym_DASH_DASH, - STATE(7453), 1, + ACTIONS(12543), 1, + anon_sym_LF, + STATE(6997), 1, sym_comment, - STATE(7529), 1, + STATE(7026), 1, sym__flag, - STATE(8282), 1, + STATE(7909), 1, sym_long_flag_equals_value, - STATE(8329), 2, + STATE(8027), 2, sym_short_flag, sym_long_flag, - ACTIONS(5429), 4, + ACTIONS(12541), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [239196] = 4, + [238210] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13096), 1, - anon_sym_DASH, - STATE(7454), 1, + ACTIONS(12545), 1, + aux_sym__immediate_decimal_token1, + STATE(6998), 1, sym_comment, - ACTIONS(13094), 10, - anon_sym_EQ, + ACTIONS(3574), 2, sym_identifier, + anon_sym_DASH, + ACTIONS(3576), 8, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -554885,237 +513541,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [239218] = 6, + [238234] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13098), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13100), 1, + ACTIONS(12547), 1, aux_sym__immediate_decimal_token2, - STATE(7455), 1, + STATE(6999), 1, sym_comment, - ACTIONS(909), 3, + ACTIONS(2356), 4, + anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_DOT, - aux_sym_unquoted_token5, - ACTIONS(911), 6, + aux_sym_unquoted_token2, + ACTIONS(2358), 6, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [239244] = 6, + [238258] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13102), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13104), 1, - aux_sym__immediate_decimal_token2, - STATE(7456), 1, - sym_comment, - ACTIONS(2439), 4, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2437), 5, - sym_identifier, + ACTIONS(1002), 1, anon_sym_DASH, - anon_sym_DOT_DOT2, + ACTIONS(11698), 1, anon_sym_DOT, - aux_sym_unquoted_token2, - [239270] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13088), 1, - aux_sym__immediate_decimal_token1, - STATE(7457), 1, + STATE(6635), 1, + sym_path, + STATE(6889), 1, + sym_cell_path, + STATE(7000), 1, sym_comment, - ACTIONS(3748), 2, - sym_identifier, - anon_sym_DASH, - ACTIONS(3750), 8, + ACTIONS(1004), 7, + anon_sym_EQ, anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [239294] = 5, + anon_sym_LBRACE, + anon_sym_RBRACE, + [238286] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13106), 1, - aux_sym__immediate_decimal_token2, - STATE(7458), 1, - sym_comment, - ACTIONS(2583), 3, + ACTIONS(2504), 1, + anon_sym_DASH, + ACTIONS(12456), 1, + anon_sym_DASH_DASH, + ACTIONS(12551), 1, anon_sym_LF, - anon_sym_LPAREN2, - anon_sym_DOT, - ACTIONS(2581), 7, + STATE(4714), 1, + sym_long_flag_equals_value, + STATE(7001), 1, + sym_comment, + STATE(8490), 1, + sym__flag, + STATE(4674), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(12549), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_RBRACE, - aux_sym_unquoted_token2, - [239318] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3552), 1, - anon_sym_DQUOTE, - ACTIONS(12653), 1, - anon_sym_LPAREN, - ACTIONS(12655), 1, - anon_sym_DOLLAR, - ACTIONS(13108), 1, - sym_cmd_identifier, - STATE(5027), 1, - sym__var, - STATE(5661), 1, - sym__str_double_quotes, - STATE(7459), 1, - sym_comment, - ACTIONS(3554), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(8422), 3, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - [239352] = 4, + [238318] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(7460), 1, - sym_comment, - ACTIONS(2547), 4, - sym_cmd_identifier, + ACTIONS(1002), 1, anon_sym_DOT_DOT2, + ACTIONS(12511), 1, anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(2549), 7, + STATE(7002), 1, + sym_comment, + STATE(7063), 1, + sym_path, + STATE(7697), 1, + sym_cell_path, + ACTIONS(1004), 7, + sym_cmd_identifier, anon_sym_DASH_DASH, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [239374] = 12, + [238346] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(959), 1, - anon_sym_RBRACK, - ACTIONS(961), 1, - sym__entry_separator, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - ACTIONS(9636), 1, - aux_sym_unquoted_token5, - ACTIONS(9642), 1, - anon_sym_DOT, - ACTIONS(13110), 1, - anon_sym_DOT_DOT2, - ACTIONS(13114), 1, - sym_filesize_unit, - ACTIONS(13116), 1, - sym_duration_unit, - STATE(7461), 1, + ACTIONS(12553), 1, + aux_sym__immediate_decimal_token2, + STATE(7003), 1, sym_comment, - STATE(10502), 1, - sym__expr_parenthesized_immediate, - ACTIONS(13112), 2, + ACTIONS(2356), 5, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(2358), 5, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [239412] = 6, + [238370] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12430), 1, + ACTIONS(12234), 1, aux_sym__immediate_decimal_token2, - ACTIONS(13118), 1, - anon_sym_DOT, - STATE(7462), 1, + STATE(7004), 1, sym_comment, - ACTIONS(2583), 4, + ACTIONS(2229), 5, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(2231), 5, ts_builtin_sym_end, anon_sym_LF, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2581), 5, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_DOT_DOT2, - [239438] = 4, + [238394] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(7463), 1, + ACTIONS(12555), 1, + aux_sym__immediate_decimal_token2, + STATE(7005), 1, sym_comment, - ACTIONS(911), 4, - anon_sym_DASH_DASH, + ACTIONS(913), 4, + anon_sym_DOLLAR, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(909), 7, + ACTIONS(911), 6, sym_identifier, - anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_DOT, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token5, - [239460] = 4, + [238418] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(7464), 1, + ACTIONS(12557), 1, + aux_sym__immediate_decimal_token2, + STATE(7006), 1, sym_comment, - ACTIONS(3507), 5, - ts_builtin_sym_end, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - ACTIONS(3505), 6, + ACTIONS(2362), 5, anon_sym_SEMI, - anon_sym_LF, anon_sym_PIPE, anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token2, - [239482] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(12894), 1, - aux_sym__immediate_decimal_token2, - STATE(7465), 1, - sym_comment, - ACTIONS(2439), 3, + ACTIONS(2364), 5, + ts_builtin_sym_end, anon_sym_LF, anon_sym_LPAREN2, - anon_sym_DOT, - ACTIONS(2437), 7, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - aux_sym_unquoted_token2, - [239506] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [238442] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13122), 1, - anon_sym_DASH, - STATE(7466), 1, + ACTIONS(12545), 1, + aux_sym__immediate_decimal_token1, + STATE(7007), 1, sym_comment, - ACTIONS(13120), 10, - anon_sym_EQ, + ACTIONS(4771), 2, sym_identifier, + anon_sym_DASH, + ACTIONS(4773), 8, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -555124,1091 +513720,1148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [239528] = 9, + [238466] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3067), 1, + ACTIONS(2504), 1, anon_sym_DASH, - ACTIONS(5623), 1, + ACTIONS(4831), 1, anon_sym_LF, - ACTIONS(12958), 1, + ACTIONS(12456), 1, anon_sym_DASH_DASH, - STATE(5143), 1, + STATE(4714), 1, sym_long_flag_equals_value, - STATE(7467), 1, + STATE(7008), 1, sym_comment, - STATE(8848), 1, + STATE(8469), 1, sym__flag, - STATE(5044), 2, + STATE(4674), 2, sym_short_flag, sym_long_flag, - ACTIONS(5621), 4, + ACTIONS(4829), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [239560] = 5, + [238498] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12940), 1, - aux_sym__immediate_decimal_token2, - STATE(7468), 1, + ACTIONS(12292), 1, + anon_sym_DASH, + STATE(7009), 1, sym_comment, - ACTIONS(909), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token5, - ACTIONS(911), 7, + ACTIONS(9333), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [238520] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(7010), 1, + sym_comment, + ACTIONS(895), 4, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(893), 7, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, sym_filesize_unit, sym_duration_unit, - [239584] = 7, + aux_sym_unquoted_token5, + [238542] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12305), 1, - anon_sym_COLON, - ACTIONS(13126), 1, - anon_sym_COMMA, - ACTIONS(13128), 1, + ACTIONS(12559), 1, + aux_sym__immediate_decimal_token2, + STATE(7011), 1, + sym_comment, + ACTIONS(2362), 4, anon_sym_DASH, - STATE(7469), 1, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(2364), 6, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [238566] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12561), 1, + anon_sym_DASH, + STATE(7012), 1, sym_comment, - STATE(7867), 1, - sym_param_type, - ACTIONS(13124), 7, + ACTIONS(8687), 10, + anon_sym_EQ, sym_identifier, + anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [239612] = 6, - ACTIONS(113), 1, + [238588] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13130), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13132), 1, + ACTIONS(12563), 1, + anon_sym_DOT, + ACTIONS(12566), 1, aux_sym__immediate_decimal_token2, - STATE(7470), 1, + STATE(7013), 1, sym_comment, - ACTIONS(2439), 4, + ACTIONS(911), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token5, + ACTIONS(913), 7, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(2437), 5, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + [238614] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(12568), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12570), 1, + aux_sym__immediate_decimal_token2, + STATE(7014), 1, + sym_comment, + ACTIONS(2231), 4, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LPAREN2, anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - [239638] = 10, + ACTIONS(2229), 5, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + aux_sym_unquoted_token2, + [238640] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3025), 1, - anon_sym_DQUOTE, - ACTIONS(12628), 1, - anon_sym_LPAREN, - ACTIONS(12630), 1, - anon_sym_DOLLAR, - ACTIONS(13134), 1, - sym_cmd_identifier, - STATE(5240), 1, - sym__var, - STATE(6028), 1, - sym__str_double_quotes, - STATE(7471), 1, + STATE(7015), 1, sym_comment, - ACTIONS(3027), 2, + ACTIONS(2229), 4, + sym_cmd_identifier, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(2231), 7, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - STATE(8800), 3, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - [239672] = 11, + [238662] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - ACTIONS(9820), 1, - aux_sym_unquoted_token5, - ACTIONS(9828), 1, - anon_sym_DOT, - ACTIONS(13136), 1, + ACTIONS(12572), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12574), 1, + aux_sym__immediate_decimal_token2, + STATE(7016), 1, + sym_comment, + ACTIONS(893), 3, anon_sym_DOT_DOT2, - ACTIONS(13140), 1, + anon_sym_DOT, + aux_sym_unquoted_token5, + ACTIONS(895), 6, + anon_sym_in, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym_filesize_unit, - ACTIONS(13142), 1, sym_duration_unit, - STATE(7472), 1, + [238688] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(7017), 1, sym_comment, - STATE(10701), 1, - sym__expr_parenthesized_immediate, - ACTIONS(961), 2, - anon_sym_DOLLAR, - anon_sym_LBRACE, - ACTIONS(13138), 2, + ACTIONS(2362), 4, + sym_cmd_identifier, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(2364), 7, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [239708] = 8, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [238710] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2845), 1, - anon_sym_LF, - ACTIONS(2847), 1, - anon_sym_LPAREN2, - ACTIONS(13144), 1, - anon_sym_DOT_DOT2, - STATE(7473), 1, - sym_comment, - ACTIONS(2851), 2, + ACTIONS(11832), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(12576), 1, anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(13146), 2, + STATE(7018), 1, + sym_comment, + ACTIONS(2358), 4, + ts_builtin_sym_end, + anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2843), 4, + ACTIONS(2356), 5, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [239738] = 12, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_DOT_DOT2, + [238736] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2724), 1, + ACTIONS(2838), 1, anon_sym_DQUOTE, - ACTIONS(3275), 1, + ACTIONS(2976), 1, anon_sym_DASH_DASH, - ACTIONS(12867), 1, + ACTIONS(12164), 1, sym_cmd_identifier, - STATE(7019), 1, + STATE(6592), 1, sym__str_double_quotes, - STATE(7359), 1, - aux_sym_decl_def_repeat1, - STATE(7474), 1, + STATE(7019), 1, sym_comment, - STATE(7900), 1, + STATE(7567), 1, sym_val_string, - STATE(8074), 1, + STATE(7692), 1, sym_long_flag_equals_value, - STATE(8838), 1, + STATE(7737), 1, + aux_sym_decl_def_repeat1, + STATE(8720), 1, sym_long_flag, - STATE(9462), 1, + STATE(9114), 1, sym__command_name, - ACTIONS(2726), 2, + ACTIONS(2840), 2, sym__str_single_quotes, sym__str_back_ticks, - [239776] = 11, - ACTIONS(3), 1, + [238774] = 7, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1584), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(2389), 1, - anon_sym_LBRACE, - ACTIONS(6253), 1, - anon_sym_DOLLAR, - ACTIONS(12033), 1, - anon_sym_LPAREN2, - ACTIONS(13148), 1, - anon_sym_DOT, - STATE(7403), 1, - sym__var, - STATE(7475), 1, + ACTIONS(3314), 1, + aux_sym_command_token1, + ACTIONS(12578), 1, + anon_sym_DOT_DOT2, + STATE(7020), 1, sym_comment, - STATE(9548), 1, - sym__immediate_decimal, - ACTIONS(13150), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(9547), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [239812] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2389), 1, - anon_sym_in, - ACTIONS(6253), 1, - anon_sym_DOLLAR, - ACTIONS(12033), 1, - anon_sym_LPAREN2, - ACTIONS(12473), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(13152), 1, + ACTIONS(1844), 2, anon_sym_DOT, - STATE(7403), 1, - sym__var, - STATE(7476), 1, - sym_comment, - STATE(10038), 1, - sym__immediate_decimal, - ACTIONS(13154), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(10037), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [239848] = 6, + aux_sym_unquoted_token2, + ACTIONS(12580), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3312), 5, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [238802] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13063), 1, + ACTIONS(12050), 1, aux_sym__immediate_decimal_token2, - ACTIONS(13156), 1, - anon_sym_DOT, - STATE(7477), 1, + STATE(7021), 1, sym_comment, - ACTIONS(923), 3, + ACTIONS(893), 4, anon_sym_RBRACK, anon_sym_DOT_DOT2, + anon_sym_DOT, aux_sym_unquoted_token5, - ACTIONS(925), 6, + ACTIONS(895), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [239874] = 9, + [238826] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3321), 1, + ACTIONS(2504), 1, anon_sym_DASH, - ACTIONS(5623), 1, + ACTIONS(4873), 1, anon_sym_LF, - ACTIONS(5625), 1, + ACTIONS(12456), 1, anon_sym_DASH_DASH, - STATE(7358), 1, - sym__flag, - STATE(7478), 1, - sym_comment, - STATE(8282), 1, + STATE(4714), 1, sym_long_flag_equals_value, - STATE(8329), 2, + STATE(7022), 1, + sym_comment, + STATE(8454), 1, + sym__flag, + STATE(4674), 2, sym_short_flag, sym_long_flag, - ACTIONS(5621), 4, + ACTIONS(4871), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [239906] = 11, + [238858] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2389), 1, - anon_sym_in, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12033), 1, - anon_sym_LPAREN2, - ACTIONS(12473), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(13159), 1, - anon_sym_DOT, - STATE(7479), 1, - sym_comment, - STATE(7637), 1, - sym__immediate_decimal, - STATE(10119), 1, - sym__var, - ACTIONS(13161), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7592), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [239942] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(13163), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13165), 1, - aux_sym__immediate_decimal_token2, - STATE(7480), 1, + ACTIONS(12582), 1, + anon_sym_DASH, + STATE(7023), 1, sym_comment, - ACTIONS(2439), 3, - anon_sym_LPAREN2, - anon_sym_DOT, - aux_sym_command_token1, - ACTIONS(2437), 6, - anon_sym_SEMI, - anon_sym_LF, + ACTIONS(9543), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_LF2, - aux_sym_unquoted_token2, - [239968] = 5, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [238880] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12914), 1, + ACTIONS(12326), 1, aux_sym__immediate_decimal_token2, - STATE(7481), 1, + STATE(7024), 1, sym_comment, - ACTIONS(909), 4, + ACTIONS(893), 4, anon_sym_RBRACK, anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym__unquoted_in_list_token6, - ACTIONS(911), 6, + ACTIONS(895), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [239992] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2351), 1, - anon_sym_in, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12033), 1, - anon_sym_LPAREN2, - ACTIONS(12473), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(13159), 1, - anon_sym_DOT, - STATE(7482), 1, - sym_comment, - STATE(7736), 1, - sym__immediate_decimal, - STATE(10119), 1, - sym__var, - ACTIONS(13161), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7735), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [240028] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2361), 1, - anon_sym_in, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12033), 1, - anon_sym_LPAREN2, - ACTIONS(12473), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(13159), 1, - anon_sym_DOT, - STATE(7483), 1, - sym_comment, - STATE(7743), 1, - sym__immediate_decimal, - STATE(10119), 1, - sym__var, - ACTIONS(13161), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7737), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [240064] = 11, - ACTIONS(3), 1, + [238904] = 9, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2385), 1, - anon_sym_in, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12033), 1, - anon_sym_LPAREN2, - ACTIONS(12473), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(13159), 1, - anon_sym_DOT, - STATE(7484), 1, + ACTIONS(3056), 1, + anon_sym_DASH, + ACTIONS(4837), 1, + anon_sym_DASH_DASH, + ACTIONS(12551), 1, + anon_sym_LF, + STATE(7025), 1, sym_comment, - STATE(7748), 1, - sym__immediate_decimal, - STATE(10119), 1, - sym__var, - ACTIONS(13161), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7744), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [240100] = 5, + STATE(7031), 1, + sym__flag, + STATE(7909), 1, + sym_long_flag_equals_value, + STATE(8027), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(12549), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [238936] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13167), 1, - aux_sym__immediate_decimal_token2, - STATE(7485), 1, - sym_comment, - ACTIONS(2549), 3, + ACTIONS(3056), 1, + anon_sym_DASH, + ACTIONS(4837), 1, + anon_sym_DASH_DASH, + ACTIONS(12551), 1, anon_sym_LF, - anon_sym_LPAREN2, - anon_sym_DOT, - ACTIONS(2547), 7, + STATE(6929), 1, + sym__flag, + STATE(7026), 1, + sym_comment, + STATE(7909), 1, + sym_long_flag_equals_value, + STATE(8027), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(12549), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_RBRACE, - aux_sym_unquoted_token2, - [240124] = 8, + [238968] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2847), 1, - anon_sym_LPAREN2, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(3750), 1, + ACTIONS(3056), 1, + anon_sym_DASH, + ACTIONS(4837), 1, + anon_sym_DASH_DASH, + ACTIONS(4873), 1, anon_sym_LF, - ACTIONS(13169), 1, - anon_sym_DOT, - ACTIONS(13171), 1, - aux_sym__immediate_decimal_token1, - STATE(7486), 1, + STATE(7008), 1, + sym__flag, + STATE(7027), 1, sym_comment, - ACTIONS(3748), 6, + STATE(7909), 1, + sym_long_flag_equals_value, + STATE(8027), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(4871), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_RBRACE, - [240154] = 6, + [239000] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13078), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(13173), 1, - anon_sym_DOT, - STATE(7487), 1, + ACTIONS(2504), 1, + anon_sym_DASH, + ACTIONS(4949), 1, + anon_sym_LF, + ACTIONS(12456), 1, + anon_sym_DASH_DASH, + STATE(4714), 1, + sym_long_flag_equals_value, + STATE(7028), 1, sym_comment, - ACTIONS(2581), 4, + STATE(8484), 1, + sym__flag, + STATE(4674), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(4947), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_RBRACE, + [239032] = 8, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(12584), 1, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(2583), 5, + STATE(7029), 1, + sym_comment, + ACTIONS(3356), 2, ts_builtin_sym_end, - anon_sym_LF, - anon_sym_LPAREN2, + aux_sym_command_token1, + ACTIONS(3362), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(12586), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [240180] = 4, + ACTIONS(3354), 3, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, + [239062] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13176), 1, + ACTIONS(11770), 1, + anon_sym_COLON, + ACTIONS(12590), 1, + anon_sym_COMMA, + ACTIONS(12592), 1, anon_sym_DASH, - STATE(7488), 1, + STATE(7030), 1, sym_comment, - ACTIONS(10029), 10, - anon_sym_EQ, + STATE(7512), 1, + sym_param_type, + ACTIONS(12588), 7, sym_identifier, - anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [240202] = 6, - ACTIONS(3), 1, + [239090] = 9, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13178), 1, - anon_sym_DOT, - ACTIONS(13181), 1, - aux_sym__immediate_decimal_token2, - STATE(7489), 1, + ACTIONS(2504), 1, + anon_sym_DASH, + ACTIONS(12420), 1, + anon_sym_LF, + ACTIONS(12456), 1, + anon_sym_DASH_DASH, + STATE(4714), 1, + sym_long_flag_equals_value, + STATE(7031), 1, sym_comment, - ACTIONS(923), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token5, - ACTIONS(925), 7, + STATE(8491), 1, + sym__flag, + STATE(4674), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(12418), 4, + anon_sym_SEMI, + anon_sym_RPAREN, 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, - [240228] = 5, + anon_sym_RBRACE, + [239122] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12977), 1, + ACTIONS(12566), 1, aux_sym__immediate_decimal_token2, - STATE(7490), 1, + STATE(7032), 1, sym_comment, - ACTIONS(2581), 4, - anon_sym_DASH, + ACTIONS(911), 3, anon_sym_DOT_DOT2, anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(2583), 6, + aux_sym_unquoted_token5, + ACTIONS(913), 7, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [240252] = 11, - ACTIONS(3), 1, + sym_filesize_unit, + sym_duration_unit, + [239146] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1584), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(1922), 1, - anon_sym_LBRACE, - ACTIONS(6253), 1, - anon_sym_DOLLAR, - ACTIONS(12033), 1, - anon_sym_LPAREN2, - ACTIONS(13183), 1, - anon_sym_DOT, - STATE(7403), 1, - sym__var, - STATE(7491), 1, - sym_comment, - STATE(10114), 1, - sym__immediate_decimal, - ACTIONS(13150), 2, + ACTIONS(12594), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(9560), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [240288] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1584), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(1922), 1, - anon_sym_LBRACE, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12033), 1, - anon_sym_LPAREN2, - ACTIONS(13024), 1, - anon_sym_DOT, - STATE(7196), 1, - sym__immediate_decimal, - STATE(7440), 1, - sym__var, - STATE(7492), 1, + ACTIONS(12596), 1, + aux_sym__immediate_decimal_token2, + STATE(7033), 1, sym_comment, - ACTIONS(13026), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7671), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [240324] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1584), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(2351), 1, - anon_sym_LBRACE, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12033), 1, + ACTIONS(2231), 4, anon_sym_LPAREN2, - ACTIONS(13024), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(2229), 5, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, anon_sym_DOT, - STATE(7440), 1, - sym__var, - STATE(7493), 1, - sym_comment, - STATE(7736), 1, - sym__immediate_decimal, - ACTIONS(13026), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7735), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [240360] = 4, + aux_sym__unquoted_in_list_token2, + [239172] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13185), 1, - anon_sym_DASH, - STATE(7494), 1, + ACTIONS(12598), 1, + aux_sym__immediate_decimal_token2, + STATE(7034), 1, sym_comment, - ACTIONS(9935), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(901), 3, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token5, + ACTIONS(903), 7, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [240382] = 7, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [239196] = 12, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3520), 1, - aux_sym_command_token1, - ACTIONS(13187), 1, + ACTIONS(938), 1, + anon_sym_RBRACK, + ACTIONS(940), 1, + sym__entry_separator, + ACTIONS(7103), 1, + aux_sym__unquoted_in_list_token6, + ACTIONS(7265), 1, + anon_sym_LPAREN2, + ACTIONS(7269), 1, + anon_sym_DOT, + ACTIONS(12600), 1, anon_sym_DOT_DOT2, - STATE(7495), 1, + ACTIONS(12604), 1, + sym_filesize_unit, + ACTIONS(12606), 1, + sym_duration_unit, + STATE(7035), 1, sym_comment, - ACTIONS(1934), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(13189), 2, + STATE(10057), 1, + sym__expr_parenthesized_immediate, + ACTIONS(12602), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(3518), 5, - anon_sym_SEMI, + [239234] = 9, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(2504), 1, + anon_sym_DASH, + ACTIONS(12456), 1, + anon_sym_DASH_DASH, + ACTIONS(12610), 1, anon_sym_LF, + STATE(4714), 1, + sym_long_flag_equals_value, + STATE(7036), 1, + sym_comment, + STATE(8492), 1, + sym__flag, + STATE(4674), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(12608), 4, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_LF2, - [240410] = 5, + anon_sym_RBRACE, + [239266] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12801), 1, + ACTIONS(12612), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12614), 1, aux_sym__immediate_decimal_token2, - STATE(7496), 1, + STATE(7037), 1, sym_comment, - ACTIONS(911), 4, - anon_sym_DOLLAR, + ACTIONS(893), 3, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token5, + ACTIONS(895), 6, + anon_sym_LBRACE, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(909), 6, - sym_identifier, - anon_sym_DOT_DOT2, - anon_sym_DOT, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token5, - [240434] = 6, + [239292] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13191), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13193), 1, - aux_sym__immediate_decimal_token2, - STATE(7497), 1, + ACTIONS(3056), 1, + anon_sym_DASH, + ACTIONS(4837), 1, + anon_sym_DASH_DASH, + ACTIONS(5597), 1, + anon_sym_LF, + STATE(6964), 1, + sym__flag, + STATE(7038), 1, sym_comment, - ACTIONS(2439), 3, - anon_sym_LPAREN2, - anon_sym_DOT, - aux_sym_command_token1, - ACTIONS(2437), 6, + STATE(7909), 1, + sym_long_flag_equals_value, + STATE(8027), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(5595), 4, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - aux_sym_unquoted_token2, - [240460] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(7498), 1, - sym_comment, - ACTIONS(3505), 4, - sym_cmd_identifier, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(3507), 7, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [240482] = 12, - ACTIONS(3), 1, + [239324] = 9, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2694), 1, + ACTIONS(3056), 1, anon_sym_DASH, - ACTIONS(3041), 1, + ACTIONS(4831), 1, + anon_sym_LF, + ACTIONS(4837), 1, anon_sym_DASH_DASH, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12574), 1, - sym_identifier, - STATE(7499), 1, - sym_comment, - STATE(8436), 1, - sym__variable_name, - STATE(8729), 1, - sym__var, - STATE(8921), 1, - sym_val_variable, - STATE(9219), 1, + STATE(6970), 1, sym__flag, - STATE(9751), 1, + STATE(7039), 1, + sym_comment, + STATE(7909), 1, sym_long_flag_equals_value, - STATE(9344), 2, + STATE(8027), 2, sym_short_flag, sym_long_flag, - [240520] = 6, + ACTIONS(4829), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [239356] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13106), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(13195), 1, - anon_sym_DOT, - STATE(7500), 1, - sym_comment, - ACTIONS(2583), 2, + ACTIONS(3056), 1, + anon_sym_DASH, + ACTIONS(4837), 1, + anon_sym_DASH_DASH, + ACTIONS(5597), 1, anon_sym_LF, - anon_sym_LPAREN2, - ACTIONS(2581), 7, + STATE(6969), 1, + sym__flag, + STATE(7040), 1, + sym_comment, + STATE(7909), 1, + sym_long_flag_equals_value, + STATE(8027), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(5595), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_RBRACE, - aux_sym_unquoted_token2, - [240546] = 10, + [239388] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2670), 1, - anon_sym_DQUOTE, - ACTIONS(12693), 1, - anon_sym_LPAREN, - ACTIONS(12695), 1, + ACTIONS(12616), 1, + anon_sym_DASH, + STATE(7041), 1, + sym_comment, + ACTIONS(9538), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(13198), 1, - sym_cmd_identifier, - STATE(5184), 1, - sym__var, - STATE(5813), 1, - sym__str_double_quotes, - STATE(7501), 1, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [239410] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12618), 1, + anon_sym_LT, + STATE(7042), 1, sym_comment, - ACTIONS(2672), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(8477), 3, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - [240580] = 8, + ACTIONS(9333), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_AT, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [239432] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3520), 1, - anon_sym_LF, - ACTIONS(3522), 1, - anon_sym_LPAREN2, - ACTIONS(13200), 1, + ACTIONS(12620), 1, anon_sym_DOT_DOT2, - STATE(7502), 1, + STATE(7043), 1, sym_comment, - ACTIONS(1934), 2, + ACTIONS(3356), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3362), 2, anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(13202), 2, + ACTIONS(12622), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(3518), 4, + ACTIONS(3354), 4, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [240610] = 9, + anon_sym_DASH_DASH, + anon_sym_DASH, + [239460] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3321), 1, + ACTIONS(3056), 1, anon_sym_DASH, - ACTIONS(5425), 1, + ACTIONS(4831), 1, anon_sym_LF, - ACTIONS(5625), 1, + ACTIONS(4837), 1, anon_sym_DASH_DASH, - STATE(7452), 1, + STATE(6978), 1, sym__flag, - STATE(7503), 1, + STATE(7044), 1, sym_comment, - STATE(8282), 1, + STATE(7909), 1, sym_long_flag_equals_value, - STATE(8329), 2, + STATE(8027), 2, sym_short_flag, sym_long_flag, - ACTIONS(5423), 4, + ACTIONS(4829), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [240642] = 6, + [239492] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12966), 1, + ACTIONS(12547), 1, aux_sym__immediate_decimal_token2, - ACTIONS(13204), 1, + ACTIONS(12624), 1, anon_sym_DOT, - STATE(7504), 1, + STATE(7045), 1, sym_comment, - ACTIONS(925), 4, + ACTIONS(2356), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(2358), 6, anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(923), 5, - sym_identifier, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token5, - [240668] = 12, - ACTIONS(3), 1, + [239518] = 9, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2724), 1, - anon_sym_DQUOTE, - ACTIONS(3275), 1, + ACTIONS(3056), 1, + anon_sym_DASH, + ACTIONS(4831), 1, + anon_sym_LF, + ACTIONS(4837), 1, anon_sym_DASH_DASH, - ACTIONS(12867), 1, - sym_cmd_identifier, - STATE(7019), 1, - sym__str_double_quotes, - STATE(7381), 1, - aux_sym_decl_def_repeat1, - STATE(7505), 1, + STATE(6979), 1, + sym__flag, + STATE(7046), 1, sym_comment, - STATE(7900), 1, - sym_val_string, - STATE(8074), 1, + STATE(7909), 1, sym_long_flag_equals_value, - STATE(8838), 1, + STATE(8027), 2, + sym_short_flag, sym_long_flag, - STATE(10172), 1, - sym__command_name, - ACTIONS(2726), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [240706] = 5, + ACTIONS(4829), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [239550] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12952), 1, + ACTIONS(12627), 1, aux_sym__immediate_decimal_token2, - STATE(7506), 1, + STATE(7047), 1, sym_comment, - ACTIONS(909), 4, + ACTIONS(901), 4, anon_sym_RBRACK, anon_sym_DOT_DOT2, anon_sym_DOT, - aux_sym_unquoted_token5, - ACTIONS(911), 6, + aux_sym__unquoted_in_list_token6, + ACTIONS(903), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [240730] = 4, - ACTIONS(3), 1, + [239574] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13207), 1, - anon_sym_DASH, - STATE(7507), 1, + ACTIONS(12027), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(12629), 1, + anon_sym_DOT, + STATE(7048), 1, sym_comment, - ACTIONS(10053), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(2358), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_command_token1, + ACTIONS(2356), 6, + anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [239600] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(12631), 1, + anon_sym_DOT, + ACTIONS(12634), 1, + aux_sym__immediate_decimal_token2, + STATE(7049), 1, + sym_comment, + ACTIONS(911), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token6, + ACTIONS(913), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [239626] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12086), 1, + aux_sym__immediate_decimal_token2, + STATE(7050), 1, + sym_comment, + ACTIONS(895), 4, anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [240752] = 5, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(893), 6, + sym_identifier, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + [239650] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13209), 1, + ACTIONS(12634), 1, aux_sym__immediate_decimal_token2, - STATE(7508), 1, + STATE(7051), 1, sym_comment, - ACTIONS(917), 4, + ACTIONS(911), 4, anon_sym_RBRACK, anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym__unquoted_in_list_token6, - ACTIONS(919), 6, + ACTIONS(913), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [240776] = 5, + [239674] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(7052), 1, + sym_comment, + ACTIONS(903), 4, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(901), 7, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + [239696] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(7053), 1, + sym_comment, + ACTIONS(2231), 5, + ts_builtin_sym_end, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_command_token1, + ACTIONS(2229), 6, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token2, + [239718] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13181), 1, + ACTIONS(12310), 1, aux_sym__immediate_decimal_token2, - STATE(7509), 1, + STATE(7054), 1, + sym_comment, + ACTIONS(893), 3, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token5, + ACTIONS(895), 7, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [239742] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12636), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12638), 1, + aux_sym__immediate_decimal_token2, + STATE(7055), 1, sym_comment, - ACTIONS(923), 3, + ACTIONS(893), 3, anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token5, - ACTIONS(925), 7, + ACTIONS(895), 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, - [240800] = 11, - ACTIONS(3), 1, + [239768] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1584), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(2361), 1, - anon_sym_LBRACE, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12033), 1, + ACTIONS(12640), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12642), 1, + aux_sym__immediate_decimal_token2, + STATE(7056), 1, + sym_comment, + ACTIONS(2231), 3, anon_sym_LPAREN2, - ACTIONS(13024), 1, anon_sym_DOT, - STATE(7440), 1, - sym__var, - STATE(7510), 1, + aux_sym_command_token1, + ACTIONS(2229), 6, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_LF2, + aux_sym_unquoted_token2, + [239794] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(12553), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(12644), 1, + anon_sym_DOT, + STATE(7057), 1, sym_comment, - STATE(7743), 1, - sym__immediate_decimal, - ACTIONS(13026), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7737), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [240836] = 4, + ACTIONS(2356), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(2358), 5, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [239820] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13213), 1, - anon_sym_DASH, - STATE(7511), 1, + ACTIONS(985), 1, + anon_sym_DOT_DOT2, + ACTIONS(12647), 1, + anon_sym_DOT, + STATE(7449), 1, + sym_path, + STATE(7058), 2, sym_comment, - ACTIONS(13211), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + aux_sym_cell_path_repeat1, + ACTIONS(987), 7, + sym_cmd_identifier, anon_sym_DASH_DASH, - [240858] = 7, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [239846] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13215), 1, + ACTIONS(12650), 1, anon_sym_DOT_DOT2, - STATE(7512), 1, + STATE(7059), 1, sym_comment, - ACTIONS(1934), 2, + ACTIONS(1844), 2, anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(3520), 2, + ACTIONS(3314), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(13217), 2, + ACTIONS(12652), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(3518), 4, + ACTIONS(3312), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [240886] = 9, + [239874] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12064), 1, + aux_sym__immediate_decimal_token2, + STATE(7060), 1, + sym_comment, + ACTIONS(2229), 4, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(2231), 6, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [239898] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3321), 1, + ACTIONS(3056), 1, anon_sym_DASH, - ACTIONS(5623), 1, - anon_sym_LF, - ACTIONS(5625), 1, + ACTIONS(4837), 1, anon_sym_DASH_DASH, - STATE(7363), 1, + ACTIONS(4949), 1, + anon_sym_LF, + STATE(6945), 1, sym__flag, - STATE(7513), 1, + STATE(7061), 1, sym_comment, - STATE(8282), 1, + STATE(7909), 1, sym_long_flag_equals_value, - STATE(8329), 2, + STATE(8027), 2, sym_short_flag, sym_long_flag, - ACTIONS(5621), 4, + ACTIONS(4947), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [240918] = 8, - ACTIONS(113), 1, + [239930] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3522), 1, - anon_sym_LPAREN2, - ACTIONS(13219), 1, - anon_sym_DOT_DOT2, - STATE(7514), 1, + ACTIONS(12654), 1, + aux_sym__immediate_decimal_token2, + STATE(7062), 1, sym_comment, - ACTIONS(1934), 2, + ACTIONS(901), 3, + anon_sym_DOT_DOT2, anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(3520), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(13221), 2, + aux_sym_unquoted_token5, + ACTIONS(903), 7, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(3518), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - [240948] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2724), 1, - anon_sym_DQUOTE, - ACTIONS(3275), 1, - anon_sym_DASH_DASH, - ACTIONS(12867), 1, - sym_cmd_identifier, - STATE(7019), 1, - sym__str_double_quotes, - STATE(7515), 1, - sym_comment, - STATE(7518), 1, - aux_sym_decl_def_repeat1, - STATE(7900), 1, - sym_val_string, - STATE(8074), 1, - sym_long_flag_equals_value, - STATE(8838), 1, - sym_long_flag, - STATE(10026), 1, - sym__command_name, - ACTIONS(2726), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [240986] = 7, + sym_filesize_unit, + sym_duration_unit, + [239954] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1010), 1, anon_sym_DOT_DOT2, - ACTIONS(12960), 1, + ACTIONS(12511), 1, anon_sym_DOT, - STATE(7360), 1, - sym_path, - STATE(7516), 1, + STATE(6967), 1, + aux_sym_cell_path_repeat1, + STATE(7063), 1, sym_comment, - STATE(8073), 1, - sym_cell_path, + STATE(7449), 1, + sym_path, ACTIONS(1012), 7, sym_cmd_identifier, anon_sym_DASH_DASH, @@ -556217,92 +514870,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [241014] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2724), 1, - anon_sym_DQUOTE, - ACTIONS(3275), 1, - anon_sym_DASH_DASH, - ACTIONS(12867), 1, - sym_cmd_identifier, - STATE(7019), 1, - sym__str_double_quotes, - STATE(7517), 1, - sym_comment, - STATE(7519), 1, - aux_sym_decl_def_repeat1, - STATE(7900), 1, - sym_val_string, - STATE(8074), 1, - sym_long_flag_equals_value, - STATE(8838), 1, - sym_long_flag, - STATE(10055), 1, - sym__command_name, - ACTIONS(2726), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [241052] = 12, - ACTIONS(3), 1, + [239982] = 9, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2724), 1, - anon_sym_DQUOTE, - ACTIONS(3275), 1, + ACTIONS(3056), 1, + anon_sym_DASH, + ACTIONS(4837), 1, anon_sym_DASH_DASH, - ACTIONS(12867), 1, - sym_cmd_identifier, - STATE(7019), 1, - sym__str_double_quotes, - STATE(7518), 1, + ACTIONS(4873), 1, + anon_sym_LF, + STATE(7044), 1, + sym__flag, + STATE(7064), 1, sym_comment, - STATE(7900), 1, - sym_val_string, - STATE(8074), 1, + STATE(7909), 1, sym_long_flag_equals_value, - STATE(8126), 1, - aux_sym_decl_def_repeat1, - STATE(8838), 1, + STATE(8027), 2, + sym_short_flag, sym_long_flag, - STATE(10056), 1, - sym__command_name, - ACTIONS(2726), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [241090] = 12, + ACTIONS(4871), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [240014] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2724), 1, + ACTIONS(2838), 1, anon_sym_DQUOTE, - ACTIONS(3275), 1, + ACTIONS(2976), 1, anon_sym_DASH_DASH, - ACTIONS(12867), 1, + ACTIONS(12164), 1, sym_cmd_identifier, - STATE(7019), 1, + STATE(6592), 1, sym__str_double_quotes, - STATE(7519), 1, + STATE(7065), 1, sym_comment, - STATE(7900), 1, + STATE(7567), 1, sym_val_string, - STATE(8074), 1, + STATE(7692), 1, sym_long_flag_equals_value, - STATE(8126), 1, + STATE(7737), 1, aux_sym_decl_def_repeat1, - STATE(8838), 1, + STATE(8720), 1, sym_long_flag, - STATE(10059), 1, + STATE(9294), 1, sym__command_name, - ACTIONS(2726), 2, + ACTIONS(2840), 2, sym__str_single_quotes, sym__str_back_ticks, - [241128] = 4, + [240052] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13225), 1, + ACTIONS(12658), 1, anon_sym_DASH, - STATE(7520), 1, + STATE(7066), 1, sym_comment, - ACTIONS(13223), 10, + ACTIONS(12656), 10, anon_sym_EQ, sym_identifier, anon_sym_COLON, @@ -556313,871 +514937,932 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [241150] = 9, - ACTIONS(113), 1, + [240074] = 10, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3321), 1, - anon_sym_DASH, - ACTIONS(5439), 1, - anon_sym_LF, - ACTIONS(5625), 1, - anon_sym_DASH_DASH, - STATE(7467), 1, - sym__flag, - STATE(7521), 1, + ACTIONS(2764), 1, + anon_sym_DQUOTE, + ACTIONS(12391), 1, + anon_sym_LPAREN, + ACTIONS(12393), 1, + anon_sym_DOLLAR, + ACTIONS(12660), 1, + sym_cmd_identifier, + STATE(4575), 1, + sym__var, + STATE(5513), 1, + sym__str_double_quotes, + STATE(7067), 1, sym_comment, - STATE(8282), 1, - sym_long_flag_equals_value, - STATE(8329), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(5437), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [241182] = 12, - ACTIONS(113), 1, + ACTIONS(2766), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(8041), 3, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + [240108] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(959), 1, - anon_sym_RBRACK, - ACTIONS(961), 1, - sym__entry_separator, - ACTIONS(7587), 1, - aux_sym__unquoted_in_list_token6, - ACTIONS(7748), 1, + ACTIONS(2171), 1, + anon_sym_in, + ACTIONS(5735), 1, + anon_sym_DOLLAR, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(7752), 1, + ACTIONS(11992), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(12662), 1, anon_sym_DOT, - ACTIONS(13227), 1, - anon_sym_DOT_DOT2, - ACTIONS(13231), 1, - sym_filesize_unit, - ACTIONS(13233), 1, - sym_duration_unit, - STATE(7522), 1, + STATE(6987), 1, + sym__var, + STATE(7068), 1, sym_comment, - STATE(10658), 1, + STATE(9275), 1, + sym__immediate_decimal, + ACTIONS(12664), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(9274), 2, sym__expr_parenthesized_immediate, - ACTIONS(13229), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [241220] = 7, - ACTIONS(113), 1, + sym_val_variable, + [240144] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13039), 1, + ACTIONS(12555), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(12666), 1, anon_sym_DOT, - STATE(4135), 1, - sym_cell_path, - STATE(7523), 1, + STATE(7069), 1, sym_comment, - STATE(7524), 1, - sym_path, - ACTIONS(1012), 3, - anon_sym_LF, + ACTIONS(913), 4, + anon_sym_DOLLAR, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1010), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, + ACTIONS(911), 5, + sym_identifier, anon_sym_DOT_DOT2, - [241248] = 7, - ACTIONS(113), 1, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + [240170] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13039), 1, + ACTIONS(2171), 1, + anon_sym_in, + ACTIONS(5725), 1, + anon_sym_DOLLAR, + ACTIONS(11537), 1, + anon_sym_LPAREN2, + ACTIONS(11992), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(12669), 1, anon_sym_DOT, - STATE(3910), 1, - sym_path, - STATE(7524), 1, + STATE(7070), 1, sym_comment, - STATE(7525), 1, - aux_sym_cell_path_repeat1, - ACTIONS(989), 3, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(987), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [241276] = 7, - ACTIONS(113), 1, + STATE(7368), 1, + sym__immediate_decimal, + STATE(9648), 1, + sym__var, + ACTIONS(12671), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7360), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [240206] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13039), 1, + ACTIONS(2209), 1, + anon_sym_in, + ACTIONS(5725), 1, + anon_sym_DOLLAR, + ACTIONS(11537), 1, + anon_sym_LPAREN2, + ACTIONS(11992), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(12669), 1, anon_sym_DOT, - STATE(3910), 1, - sym_path, - STATE(7525), 1, + STATE(7071), 1, sym_comment, - STATE(7526), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1008), 3, - anon_sym_LF, + STATE(7139), 1, + sym__immediate_decimal, + STATE(9648), 1, + sym__var, + ACTIONS(12671), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7138), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [240242] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2138), 1, + anon_sym_in, + ACTIONS(5725), 1, + anon_sym_DOLLAR, + ACTIONS(11537), 1, + anon_sym_LPAREN2, + ACTIONS(11992), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(12669), 1, + anon_sym_DOT, + STATE(7072), 1, + sym_comment, + STATE(7148), 1, + sym__immediate_decimal, + STATE(9648), 1, + sym__var, + ACTIONS(12671), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7147), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [240278] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2148), 1, + anon_sym_in, + ACTIONS(5725), 1, + anon_sym_DOLLAR, + ACTIONS(11537), 1, + anon_sym_LPAREN2, + ACTIONS(11992), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(12669), 1, + anon_sym_DOT, + STATE(7073), 1, + sym_comment, + STATE(7156), 1, + sym__immediate_decimal, + STATE(9648), 1, + sym__var, + ACTIONS(12671), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7155), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [240314] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12673), 1, + anon_sym_DOT, + ACTIONS(12676), 1, + aux_sym__immediate_decimal_token2, + STATE(7074), 1, + sym_comment, + ACTIONS(911), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token5, + ACTIONS(913), 7, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1006), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [241304] = 6, - ACTIONS(113), 1, + sym_filesize_unit, + sym_duration_unit, + [240340] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13235), 1, - anon_sym_DOT, - STATE(3910), 1, - sym_path, - STATE(7526), 2, + STATE(7075), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1001), 3, - anon_sym_LF, + ACTIONS(936), 4, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(999), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, + ACTIONS(934), 7, + sym_identifier, + anon_sym_DASH, anon_sym_DOT_DOT2, - [241330] = 6, + anon_sym_DOT, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + [240362] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13238), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13240), 1, + ACTIONS(12436), 1, aux_sym__immediate_decimal_token2, - STATE(7527), 1, + ACTIONS(12678), 1, + anon_sym_DOT, + STATE(7076), 1, sym_comment, - ACTIONS(2439), 4, - ts_builtin_sym_end, + ACTIONS(2358), 2, anon_sym_LF, anon_sym_LPAREN2, - anon_sym_DOT, - ACTIONS(2437), 5, + ACTIONS(2356), 7, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_RBRACE, aux_sym_unquoted_token2, - [241356] = 11, + [240388] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(2004), 1, - anon_sym_LBRACE, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12033), 1, + ACTIONS(3354), 1, + sym_cmd_identifier, + ACTIONS(3358), 1, anon_sym_LPAREN2, - ACTIONS(13024), 1, - anon_sym_DOT, - STATE(7198), 1, - sym__immediate_decimal, - STATE(7440), 1, - sym__var, - STATE(7528), 1, + ACTIONS(12681), 1, + anon_sym_DOT_DOT2, + STATE(7077), 1, sym_comment, - ACTIONS(13026), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7753), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [241392] = 9, + ACTIONS(3362), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(12683), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3356), 4, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [240418] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3321), 1, + ACTIONS(3056), 1, anon_sym_DASH, - ACTIONS(5439), 1, - anon_sym_LF, - ACTIONS(5625), 1, + ACTIONS(4837), 1, anon_sym_DASH_DASH, - STATE(7478), 1, + ACTIONS(5355), 1, + anon_sym_LF, + STATE(7038), 1, sym__flag, - STATE(7529), 1, + STATE(7078), 1, sym_comment, - STATE(8282), 1, + STATE(7909), 1, sym_long_flag_equals_value, - STATE(8329), 2, + STATE(8027), 2, sym_short_flag, sym_long_flag, - ACTIONS(5437), 4, + ACTIONS(5353), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [241424] = 6, + [240450] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13242), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13244), 1, + ACTIONS(12676), 1, aux_sym__immediate_decimal_token2, - STATE(7530), 1, + STATE(7079), 1, sym_comment, - ACTIONS(909), 3, + ACTIONS(911), 3, anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token5, - ACTIONS(911), 6, + ACTIONS(913), 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, - [241450] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2694), 1, - anon_sym_DASH, - ACTIONS(3041), 1, - anon_sym_DASH_DASH, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12574), 1, - sym_identifier, - STATE(7531), 1, - sym_comment, - STATE(8507), 1, - sym__variable_name, - STATE(8729), 1, - sym__var, - STATE(8921), 1, - sym_val_variable, - STATE(9436), 1, - sym__flag, - STATE(9751), 1, - sym_long_flag_equals_value, - STATE(9344), 2, - sym_short_flag, - sym_long_flag, - [241488] = 12, + [240474] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(959), 1, - sym_identifier, - ACTIONS(961), 1, - anon_sym_DOLLAR, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - ACTIONS(9693), 1, - anon_sym_DOT, - ACTIONS(9701), 1, - aux_sym_unquoted_token5, - ACTIONS(13246), 1, + ACTIONS(992), 1, anon_sym_DOT_DOT2, - ACTIONS(13250), 1, - sym_filesize_unit, - ACTIONS(13252), 1, - sym_duration_unit, - STATE(7532), 1, + ACTIONS(12511), 1, + anon_sym_DOT, + STATE(7063), 1, + sym_path, + STATE(7080), 1, sym_comment, - STATE(10531), 1, - sym__expr_parenthesized_immediate, - ACTIONS(13248), 2, + STATE(7648), 1, + sym_cell_path, + ACTIONS(994), 7, + sym_cmd_identifier, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [241526] = 4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [240502] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(7533), 1, - sym_comment, - ACTIONS(3505), 4, + ACTIONS(12687), 1, anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(3507), 6, + STATE(7081), 1, + sym_comment, + ACTIONS(12685), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [241547] = 5, + [240524] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13254), 1, + ACTIONS(12689), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12691), 1, aux_sym__immediate_decimal_token2, - STATE(7534), 1, + STATE(7082), 1, sym_comment, - ACTIONS(2583), 3, + ACTIONS(2231), 3, anon_sym_LPAREN2, anon_sym_DOT, aux_sym_command_token1, - ACTIONS(2581), 6, + ACTIONS(2229), 6, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_LF2, + anon_sym_RBRACE, aux_sym_unquoted_token2, - [241570] = 7, - ACTIONS(113), 1, + [240550] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(3750), 1, - anon_sym_LF, - ACTIONS(13169), 1, - anon_sym_DOT, - ACTIONS(13171), 1, - aux_sym__immediate_decimal_token1, - STATE(7535), 1, + ACTIONS(12693), 1, + anon_sym_DASH, + STATE(7083), 1, sym_comment, - ACTIONS(3748), 6, - anon_sym_SEMI, + ACTIONS(9530), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [241597] = 4, + [240572] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(7536), 1, + ACTIONS(12695), 1, + anon_sym_DASH, + STATE(7084), 1, sym_comment, - ACTIONS(1059), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1061), 8, - sym_cmd_identifier, + ACTIONS(9532), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [241618] = 5, + [240594] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13256), 1, + ACTIONS(12697), 1, aux_sym__immediate_decimal_token2, - STATE(7537), 1, - sym_comment, - ACTIONS(923), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token5, - ACTIONS(925), 6, - anon_sym_in, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [241641] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(7538), 1, - sym_comment, - ACTIONS(1063), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1065), 8, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [241662] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(7539), 1, + STATE(7085), 1, sym_comment, - ACTIONS(952), 4, + ACTIONS(903), 4, anon_sym_DOLLAR, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(950), 6, + ACTIONS(901), 6, sym_identifier, anon_sym_DOT_DOT2, anon_sym_DOT, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token5, - [241683] = 6, + [240618] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4018), 1, - anon_sym_LF, - ACTIONS(9853), 1, + ACTIONS(3356), 1, + aux_sym_command_token1, + ACTIONS(12699), 1, anon_sym_DOT_DOT2, - STATE(7540), 1, + STATE(7086), 1, sym_comment, - ACTIONS(9855), 2, + ACTIONS(3362), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(12701), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(4016), 6, + ACTIONS(3354), 5, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [241708] = 4, + anon_sym_LF2, + [240646] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(7541), 1, + ACTIONS(2838), 1, + anon_sym_DQUOTE, + ACTIONS(2976), 1, + anon_sym_DASH_DASH, + ACTIONS(12164), 1, + sym_cmd_identifier, + STATE(6592), 1, + sym__str_double_quotes, + STATE(7019), 1, + aux_sym_decl_def_repeat1, + STATE(7087), 1, sym_comment, - ACTIONS(2547), 4, - anon_sym_DASH, + STATE(7567), 1, + sym_val_string, + STATE(7692), 1, + sym_long_flag_equals_value, + STATE(8720), 1, + sym_long_flag, + STATE(9137), 1, + sym__command_name, + ACTIONS(2840), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [240684] = 8, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(3316), 1, + anon_sym_LPAREN2, + ACTIONS(12703), 1, anon_sym_DOT_DOT2, + STATE(7088), 1, + sym_comment, + ACTIONS(1844), 2, anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(2549), 6, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_LPAREN2, + ACTIONS(3314), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(12705), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [241729] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(13258), 1, - anon_sym_DOT, - ACTIONS(13261), 1, - aux_sym__immediate_decimal_token2, - STATE(7542), 1, - sym_comment, - ACTIONS(2583), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_LPAREN2, - ACTIONS(2581), 5, + ACTIONS(3312), 3, anon_sym_SEMI, + anon_sym_LF, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - aux_sym_unquoted_token2, - [241754] = 5, - ACTIONS(3), 1, + [240714] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13043), 1, + ACTIONS(12471), 1, aux_sym__immediate_decimal_token2, - STATE(7543), 1, + STATE(7089), 1, sym_comment, - ACTIONS(909), 3, + ACTIONS(911), 4, + anon_sym_RBRACK, anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token5, - ACTIONS(911), 6, - anon_sym_in, + ACTIONS(913), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [241777] = 9, + sym__entry_separator, + [240738] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2929), 1, + ACTIONS(3056), 1, anon_sym_DASH, - ACTIONS(6151), 1, + ACTIONS(4837), 1, anon_sym_DASH_DASH, - STATE(7544), 1, - sym_comment, - STATE(7798), 1, + ACTIONS(4949), 1, + anon_sym_LF, + STATE(6951), 1, sym__flag, - STATE(8808), 1, + STATE(7090), 1, + sym_comment, + STATE(7909), 1, sym_long_flag_equals_value, - ACTIONS(5437), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(5439), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8772), 2, + STATE(8027), 2, sym_short_flag, sym_long_flag, - [241808] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13263), 1, - aux_sym__immediate_decimal_token2, - STATE(7545), 1, - sym_comment, - ACTIONS(917), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token5, - ACTIONS(919), 6, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [241831] = 8, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(2847), 1, - anon_sym_LPAREN2, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(3750), 1, - aux_sym_command_token1, - ACTIONS(13169), 1, - anon_sym_DOT, - ACTIONS(13265), 1, - aux_sym__immediate_decimal_token1, - STATE(7546), 1, - sym_comment, - ACTIONS(3748), 5, + ACTIONS(4947), 4, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_LF2, - [241860] = 7, - ACTIONS(3), 1, + anon_sym_RBRACE, + [240770] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13267), 1, + ACTIONS(12025), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(12707), 1, anon_sym_DOT, - STATE(7547), 1, + STATE(7091), 1, sym_comment, - STATE(7589), 1, - sym_path, - STATE(8310), 1, - sym_cell_path, - ACTIONS(995), 2, - anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(997), 5, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(2358), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [241887] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(13165), 1, - aux_sym__immediate_decimal_token2, - STATE(7548), 1, - sym_comment, - ACTIONS(2439), 3, - anon_sym_LPAREN2, - anon_sym_DOT, aux_sym_command_token1, - ACTIONS(2437), 6, + ACTIONS(2356), 6, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DOT_DOT2, anon_sym_LF2, - aux_sym_unquoted_token2, - [241910] = 6, + [240796] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13269), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13271), 1, + ACTIONS(12377), 1, aux_sym__immediate_decimal_token2, - STATE(7549), 1, + STATE(7092), 1, sym_comment, - ACTIONS(2437), 2, - sym_cmd_identifier, + ACTIONS(893), 3, anon_sym_DOT_DOT2, - ACTIONS(2439), 6, - anon_sym_DASH_DASH, + anon_sym_DOT, + aux_sym_unquoted_token5, + ACTIONS(895), 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, + [240820] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2838), 1, anon_sym_DQUOTE, + ACTIONS(2976), 1, + anon_sym_DASH_DASH, + ACTIONS(12164), 1, + sym_cmd_identifier, + STATE(6592), 1, + sym__str_double_quotes, + STATE(7093), 1, + sym_comment, + STATE(7096), 1, + aux_sym_decl_def_repeat1, + STATE(7567), 1, + sym_val_string, + STATE(7692), 1, + sym_long_flag_equals_value, + STATE(8720), 1, + sym_long_flag, + STATE(9576), 1, + sym__command_name, + ACTIONS(2840), 2, sym__str_single_quotes, sym__str_back_ticks, - [241935] = 6, + [240858] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13273), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13275), 1, - aux_sym__immediate_decimal_token2, - STATE(7550), 1, - sym_comment, - ACTIONS(2437), 4, - sym_identifier, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(2439), 4, + ACTIONS(2619), 1, + anon_sym_DASH_DASH, + ACTIONS(2621), 1, + anon_sym_DASH, + ACTIONS(5725), 1, anon_sym_DOLLAR, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [241960] = 3, + ACTIONS(12254), 1, + sym_identifier, + STATE(7094), 1, + sym_comment, + STATE(8021), 1, + sym__variable_name, + STATE(8258), 1, + sym__var, + STATE(8718), 1, + sym_val_variable, + STATE(8872), 1, + sym__flag, + STATE(9246), 1, + sym_long_flag_equals_value, + STATE(8892), 2, + sym_short_flag, + sym_long_flag, + [240896] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(7551), 1, - sym_comment, - ACTIONS(10029), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - anon_sym_LBRACE, + ACTIONS(2838), 1, anon_sym_DQUOTE, + ACTIONS(2976), 1, + anon_sym_DASH_DASH, + ACTIONS(12164), 1, + sym_cmd_identifier, + STATE(6592), 1, + sym__str_double_quotes, + STATE(7095), 1, + sym_comment, + STATE(7097), 1, + aux_sym_decl_def_repeat1, + STATE(7567), 1, + sym_val_string, + STATE(7692), 1, + sym_long_flag_equals_value, + STATE(8720), 1, + sym_long_flag, + STATE(9600), 1, + sym__command_name, + ACTIONS(2840), 2, sym__str_single_quotes, sym__str_back_ticks, - [241979] = 3, + [240934] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(7552), 1, - sym_comment, - ACTIONS(10053), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - anon_sym_LBRACE, + ACTIONS(2838), 1, anon_sym_DQUOTE, + ACTIONS(2976), 1, + anon_sym_DASH_DASH, + ACTIONS(12164), 1, + sym_cmd_identifier, + STATE(6592), 1, + sym__str_double_quotes, + STATE(7096), 1, + sym_comment, + STATE(7567), 1, + sym_val_string, + STATE(7692), 1, + sym_long_flag_equals_value, + STATE(7737), 1, + aux_sym_decl_def_repeat1, + STATE(8720), 1, + sym_long_flag, + STATE(9601), 1, + sym__command_name, + ACTIONS(2840), 2, sym__str_single_quotes, sym__str_back_ticks, - [241998] = 5, + [240972] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13277), 1, - aux_sym__immediate_decimal_token2, - STATE(7553), 1, + ACTIONS(2838), 1, + anon_sym_DQUOTE, + ACTIONS(2976), 1, + anon_sym_DASH_DASH, + ACTIONS(12164), 1, + sym_cmd_identifier, + STATE(6592), 1, + sym__str_double_quotes, + STATE(7097), 1, sym_comment, - ACTIONS(917), 3, + STATE(7567), 1, + sym_val_string, + STATE(7692), 1, + sym_long_flag_equals_value, + STATE(7737), 1, + aux_sym_decl_def_repeat1, + STATE(8720), 1, + sym_long_flag, + STATE(9605), 1, + sym__command_name, + ACTIONS(2840), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [241010] = 8, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(3314), 1, + anon_sym_LF, + ACTIONS(3316), 1, + anon_sym_LPAREN2, + ACTIONS(12709), 1, anon_sym_DOT_DOT2, + STATE(7098), 1, + sym_comment, + ACTIONS(1844), 2, anon_sym_DOT, - aux_sym_unquoted_token5, - ACTIONS(919), 6, - anon_sym_in, - anon_sym_LPAREN2, + aux_sym_unquoted_token2, + ACTIONS(12711), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [242021] = 9, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(2929), 1, - anon_sym_DASH, - ACTIONS(6151), 1, - anon_sym_DASH_DASH, - STATE(7554), 1, - sym_comment, - STATE(7801), 1, - sym__flag, - STATE(8808), 1, - sym_long_flag_equals_value, - ACTIONS(5437), 2, + ACTIONS(3312), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(5439), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8772), 2, - sym_short_flag, - sym_long_flag, - [242052] = 4, + anon_sym_RBRACE, + [241040] = 7, ACTIONS(113), 1, anon_sym_POUND, - STATE(7555), 1, + ACTIONS(12525), 1, + anon_sym_DOT, + STATE(3727), 1, + sym_cell_path, + STATE(7099), 1, sym_comment, - ACTIONS(3962), 3, + STATE(7100), 1, + sym_path, + ACTIONS(1004), 3, anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(3960), 7, + ACTIONS(1002), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [242073] = 4, - ACTIONS(3), 1, + [241068] = 7, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3866), 1, - anon_sym_DASH, - STATE(7556), 1, + ACTIONS(12525), 1, + anon_sym_DOT, + STATE(3544), 1, + sym_path, + STATE(7100), 1, sym_comment, - ACTIONS(3868), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, + STATE(7101), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1012), 3, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1010), 5, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [242094] = 9, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [241096] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2929), 1, - anon_sym_DASH, - ACTIONS(6151), 1, - anon_sym_DASH_DASH, - STATE(7557), 1, + ACTIONS(12525), 1, + anon_sym_DOT, + STATE(3544), 1, + sym_path, + STATE(7101), 1, sym_comment, - STATE(7818), 1, - sym__flag, - STATE(8808), 1, - sym_long_flag_equals_value, - ACTIONS(5437), 2, + STATE(7102), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1008), 3, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1006), 5, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(5439), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8772), 2, - sym_short_flag, - sym_long_flag, - [242125] = 9, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [241124] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2975), 1, - anon_sym_DASH, - ACTIONS(13279), 1, - anon_sym_DASH_DASH, - STATE(5400), 1, - sym_long_flag_equals_value, - STATE(7558), 1, + ACTIONS(12713), 1, + anon_sym_DOT, + STATE(3544), 1, + sym_path, + STATE(7102), 2, sym_comment, - STATE(10170), 1, - sym__flag, - ACTIONS(5991), 2, + aux_sym_cell_path_repeat1, + ACTIONS(987), 3, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(985), 5, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(5993), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(5303), 2, - sym_short_flag, - sym_long_flag, - [242156] = 9, - ACTIONS(113), 1, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [241150] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2929), 1, - anon_sym_DASH, - ACTIONS(6151), 1, + ACTIONS(2619), 1, anon_sym_DASH_DASH, - STATE(7559), 1, + ACTIONS(2621), 1, + anon_sym_DASH, + ACTIONS(5725), 1, + anon_sym_DOLLAR, + ACTIONS(12254), 1, + sym_identifier, + STATE(7103), 1, sym_comment, - STATE(7566), 1, + STATE(8063), 1, + sym__variable_name, + STATE(8258), 1, + sym__var, + STATE(8718), 1, + sym_val_variable, + STATE(8985), 1, sym__flag, - STATE(8808), 1, + STATE(9246), 1, sym_long_flag_equals_value, - ACTIONS(5991), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(5993), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8772), 2, + STATE(8892), 2, sym_short_flag, sym_long_flag, - [242187] = 9, - ACTIONS(113), 1, + [241188] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2929), 1, + ACTIONS(11770), 1, + anon_sym_COLON, + ACTIONS(11942), 1, + anon_sym_EQ, + ACTIONS(12387), 1, + anon_sym_COMMA, + ACTIONS(12389), 1, anon_sym_DASH, - ACTIONS(6151), 1, - anon_sym_DASH_DASH, - STATE(7560), 1, + STATE(6963), 1, + sym_param_value, + STATE(7104), 1, sym_comment, - STATE(7567), 1, - sym__flag, - STATE(8808), 1, - sym_long_flag_equals_value, - ACTIONS(5991), 2, - anon_sym_SEMI, + STATE(7555), 1, + sym_param_type, + ACTIONS(12385), 5, + sym_identifier, anon_sym_PIPE, - ACTIONS(5993), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8772), 2, - sym_short_flag, - sym_long_flag, - [242218] = 9, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [241220] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2929), 1, - anon_sym_DASH, - ACTIONS(6151), 1, - anon_sym_DASH_DASH, - STATE(7561), 1, + ACTIONS(3693), 1, + anon_sym_LF, + ACTIONS(12716), 1, + anon_sym_DOT_DOT2, + STATE(7105), 1, sym_comment, - STATE(7568), 1, - sym__flag, - STATE(8808), 1, - sym_long_flag_equals_value, - ACTIONS(5991), 2, + ACTIONS(12718), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3691), 6, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(5993), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8772), 2, - sym_short_flag, - sym_long_flag, - [242249] = 5, - ACTIONS(113), 1, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [241245] = 10, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13281), 1, + ACTIONS(11217), 1, + anon_sym_LPAREN2, + ACTIONS(11424), 1, + anon_sym_DOT, + ACTIONS(12200), 1, + anon_sym_DOLLAR, + ACTIONS(12720), 1, + aux_sym__immediate_decimal_token4, + STATE(7106), 1, + sym_comment, + STATE(7637), 1, + sym__var, + STATE(8026), 1, + sym__immediate_decimal, + ACTIONS(11426), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7936), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [241278] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12722), 1, aux_sym__immediate_decimal_token2, - STATE(7562), 1, + STATE(7107), 1, sym_comment, - ACTIONS(2549), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(2547), 5, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(901), 3, anon_sym_DOT_DOT2, anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - [242272] = 4, + aux_sym_unquoted_token5, + ACTIONS(903), 6, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [241301] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5187), 1, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + ACTIONS(4342), 1, anon_sym_DASH, - STATE(7563), 1, + STATE(7108), 1, sym_comment, - ACTIONS(5189), 9, - anon_sym_COMMA, - anon_sym_PIPE, + STATE(10434), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4344), 7, + sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [242293] = 4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [241326] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5191), 1, + ACTIONS(4955), 1, anon_sym_DASH, - STATE(7564), 1, + STATE(7109), 1, sym_comment, - ACTIONS(5193), 9, + ACTIONS(4957), 9, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -557187,333 +515872,449 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - [242314] = 4, + [241347] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5195), 1, - anon_sym_DASH, - STATE(7565), 1, + ACTIONS(11217), 1, + anon_sym_LPAREN2, + ACTIONS(11353), 1, + anon_sym_DOT, + ACTIONS(12330), 1, + anon_sym_DOLLAR, + ACTIONS(12724), 1, + aux_sym__immediate_decimal_token4, + STATE(4713), 1, + sym__var, + STATE(7110), 1, sym_comment, - ACTIONS(5197), 9, - anon_sym_COMMA, - anon_sym_PIPE, + STATE(7935), 1, + sym__immediate_decimal, + ACTIONS(11355), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7933), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [241380] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11279), 1, + anon_sym_LPAREN2, + ACTIONS(11434), 1, + anon_sym_DOT, + ACTIONS(12412), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [242335] = 9, + ACTIONS(12726), 1, + aux_sym__immediate_decimal_token4, + STATE(7111), 1, + sym_comment, + STATE(7851), 1, + sym__var, + STATE(8353), 1, + sym__immediate_decimal, + ACTIONS(11436), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(8346), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [241413] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5725), 1, + anon_sym_DOLLAR, + ACTIONS(11537), 1, + anon_sym_LPAREN2, + ACTIONS(12172), 1, + anon_sym_DOT, + ACTIONS(12176), 1, + aux_sym__immediate_decimal_token4, + STATE(7000), 1, + sym__var, + STATE(7112), 1, + sym_comment, + STATE(8750), 1, + sym__immediate_decimal, + ACTIONS(12174), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7200), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [241446] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2975), 1, + ACTIONS(2671), 1, anon_sym_DASH, - ACTIONS(13279), 1, + ACTIONS(5763), 1, anon_sym_DASH_DASH, - STATE(5400), 1, - sym_long_flag_equals_value, - STATE(7566), 1, + STATE(7113), 1, sym_comment, - STATE(10182), 1, + STATE(7294), 1, sym__flag, - ACTIONS(6037), 2, + STATE(8239), 1, + sym_long_flag_equals_value, + ACTIONS(5601), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(6039), 2, + ACTIONS(5603), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(5303), 2, + STATE(8315), 2, sym_short_flag, sym_long_flag, - [242366] = 9, - ACTIONS(113), 1, + [241477] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2929), 1, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + ACTIONS(4394), 1, anon_sym_DASH, - ACTIONS(6151), 1, + STATE(7114), 1, + sym_comment, + STATE(10434), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4396), 7, + sym_cmd_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - STATE(7567), 1, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [241502] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11279), 1, + anon_sym_LPAREN2, + ACTIONS(11434), 1, + anon_sym_DOT, + ACTIONS(12412), 1, + anon_sym_DOLLAR, + ACTIONS(12726), 1, + aux_sym__immediate_decimal_token4, + STATE(7115), 1, sym_comment, - STATE(7574), 1, - sym__flag, - STATE(8808), 1, - sym_long_flag_equals_value, - ACTIONS(6037), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(6039), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8772), 2, - sym_short_flag, - sym_long_flag, - [242397] = 9, + STATE(7851), 1, + sym__var, + STATE(8358), 1, + sym__immediate_decimal, + ACTIONS(11436), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(8357), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [241535] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1868), 1, + anon_sym_LPAREN2, + ACTIONS(12728), 1, + anon_sym_DOLLAR, + ACTIONS(12730), 1, + anon_sym_DOT, + ACTIONS(12734), 1, + aux_sym__immediate_decimal_token4, + STATE(1105), 1, + sym__var, + STATE(1150), 1, + sym__immediate_decimal, + STATE(7116), 1, + sym_comment, + ACTIONS(12732), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1540), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [241568] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2929), 1, + ACTIONS(2671), 1, anon_sym_DASH, - ACTIONS(6151), 1, + ACTIONS(5763), 1, anon_sym_DASH_DASH, - STATE(7568), 1, + STATE(7117), 1, sym_comment, - STATE(7575), 1, + STATE(7162), 1, sym__flag, - STATE(8808), 1, + STATE(8239), 1, sym_long_flag_equals_value, - ACTIONS(6037), 2, + ACTIONS(4829), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(6039), 2, + ACTIONS(4831), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(8772), 2, + STATE(8315), 2, sym_short_flag, sym_long_flag, - [242428] = 9, + [241599] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2929), 1, + ACTIONS(2671), 1, anon_sym_DASH, - ACTIONS(6151), 1, + ACTIONS(5763), 1, anon_sym_DASH_DASH, - STATE(7569), 1, + STATE(7118), 1, sym_comment, - STATE(7576), 1, + STATE(7163), 1, sym__flag, - STATE(8808), 1, + STATE(8239), 1, sym_long_flag_equals_value, - ACTIONS(6037), 2, + ACTIONS(4829), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(6039), 2, + ACTIONS(4831), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(8772), 2, + STATE(8315), 2, sym_short_flag, sym_long_flag, - [242459] = 6, - ACTIONS(113), 1, + [241630] = 10, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13283), 1, + ACTIONS(11229), 1, + anon_sym_LPAREN2, + ACTIONS(11237), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11239), 1, + anon_sym_DOLLAR, + ACTIONS(11892), 1, + anon_sym_DOT, + STATE(6684), 1, + sym__immediate_decimal, + STATE(6778), 1, + sym__var, + STATE(7119), 1, + sym_comment, + ACTIONS(11245), 2, aux_sym__immediate_decimal_token1, - ACTIONS(13285), 1, - aux_sym__immediate_decimal_token2, - STATE(7570), 1, + aux_sym__immediate_decimal_token3, + STATE(7314), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [241663] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11267), 1, + anon_sym_LPAREN2, + ACTIONS(11387), 1, + anon_sym_DOT, + ACTIONS(12393), 1, + anon_sym_DOLLAR, + ACTIONS(12736), 1, + aux_sym__immediate_decimal_token4, + STATE(4575), 1, + sym__var, + STATE(7120), 1, sym_comment, - ACTIONS(2439), 3, + STATE(8182), 1, + sym__immediate_decimal, + ACTIONS(11389), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(8181), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [241696] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7336), 1, + anon_sym_DOLLAR, + ACTIONS(7338), 1, + anon_sym_LPAREN2, + ACTIONS(7346), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(12738), 1, + anon_sym_DOT, + STATE(3598), 1, + sym__var, + STATE(4104), 1, + sym__immediate_decimal, + STATE(7121), 1, + sym_comment, + ACTIONS(7344), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4147), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [241729] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(3356), 1, anon_sym_LF, + ACTIONS(3358), 1, anon_sym_LPAREN2, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(12513), 1, anon_sym_DOT, - ACTIONS(2437), 5, + STATE(7122), 1, + sym_comment, + ACTIONS(3354), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_RBRACE, - aux_sym_unquoted_token2, - [242484] = 4, - ACTIONS(113), 1, + [241756] = 11, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7571), 1, - sym_comment, - ACTIONS(2437), 5, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(2439), 5, - ts_builtin_sym_end, - anon_sym_LF, + ACTIONS(940), 1, + anon_sym_LBRACE, + ACTIONS(2187), 1, anon_sym_LPAREN2, + ACTIONS(9203), 1, + anon_sym_DOT, + ACTIONS(9209), 1, + aux_sym_unquoted_token5, + ACTIONS(12740), 1, + anon_sym_DOT_DOT2, + ACTIONS(12744), 1, + sym_filesize_unit, + ACTIONS(12746), 1, + sym_duration_unit, + STATE(7123), 1, + sym_comment, + STATE(10092), 1, + sym__expr_parenthesized_immediate, + ACTIONS(12742), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [242505] = 4, + [241791] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(7572), 1, + STATE(7124), 1, sym_comment, - ACTIONS(2547), 5, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(901), 4, + anon_sym_RBRACK, anon_sym_DOT_DOT2, anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(2549), 5, - ts_builtin_sym_end, - anon_sym_LF, + aux_sym__unquoted_in_list_token6, + ACTIONS(903), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [242526] = 4, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [241812] = 7, ACTIONS(113), 1, anon_sym_POUND, - STATE(7573), 1, - sym_comment, - ACTIONS(3505), 5, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, + ACTIONS(1844), 1, aux_sym_unquoted_token2, - ACTIONS(3507), 5, - ts_builtin_sym_end, + ACTIONS(3314), 1, anon_sym_LF, + ACTIONS(3316), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [242547] = 9, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(2975), 1, - anon_sym_DASH, - ACTIONS(13279), 1, - anon_sym_DASH_DASH, - STATE(5400), 1, - sym_long_flag_equals_value, - STATE(7574), 1, + ACTIONS(12748), 1, + anon_sym_DOT, + STATE(7125), 1, sym_comment, - STATE(10185), 1, - sym__flag, - ACTIONS(6041), 2, + ACTIONS(3312), 6, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(6043), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(5303), 2, - sym_short_flag, - sym_long_flag, - [242578] = 9, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(2929), 1, - anon_sym_DASH, - ACTIONS(6151), 1, anon_sym_DASH_DASH, - STATE(7575), 1, - sym_comment, - STATE(7583), 1, - sym__flag, - STATE(8808), 1, - sym_long_flag_equals_value, - ACTIONS(6041), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(6043), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8772), 2, - sym_short_flag, - sym_long_flag, - [242609] = 9, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(2929), 1, anon_sym_DASH, - ACTIONS(6151), 1, - anon_sym_DASH_DASH, - STATE(7576), 1, - sym_comment, - STATE(7584), 1, - sym__flag, - STATE(8808), 1, - sym_long_flag_equals_value, - ACTIONS(6041), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(6043), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8772), 2, - sym_short_flag, - sym_long_flag, - [242640] = 6, + anon_sym_RBRACE, + [241839] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13256), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(13287), 1, + ACTIONS(12750), 1, anon_sym_DOT, - STATE(7577), 1, + ACTIONS(12753), 1, + aux_sym__immediate_decimal_token2, + STATE(7126), 1, sym_comment, - ACTIONS(923), 2, + ACTIONS(911), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token5, - ACTIONS(925), 6, - anon_sym_in, + ACTIONS(913), 6, + anon_sym_LBRACE, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [242665] = 9, - ACTIONS(113), 1, + [241864] = 10, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2929), 1, - anon_sym_DASH, - ACTIONS(6151), 1, - anon_sym_DASH_DASH, - STATE(7578), 1, + ACTIONS(5735), 1, + anon_sym_DOLLAR, + ACTIONS(11537), 1, + anon_sym_LPAREN2, + ACTIONS(11576), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11968), 1, + anon_sym_DOT, + STATE(3929), 1, + sym__var, + STATE(7127), 1, sym_comment, - STATE(7585), 1, - sym__flag, - STATE(8808), 1, - sym_long_flag_equals_value, - ACTIONS(6041), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(6043), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8772), 2, - sym_short_flag, - sym_long_flag, - [242696] = 7, + STATE(9619), 1, + sym__immediate_decimal, + ACTIONS(11966), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(8984), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [241897] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13267), 1, + ACTIONS(12755), 1, anon_sym_DOT, - STATE(7579), 1, + STATE(7128), 1, sym_comment, - STATE(7589), 1, + STATE(7189), 1, sym_path, - STATE(8318), 1, + STATE(7827), 1, sym_cell_path, - ACTIONS(1010), 2, + ACTIONS(992), 2, anon_sym_DASH, anon_sym_DOT_DOT2, - ACTIONS(1012), 5, + ACTIONS(994), 5, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [242723] = 4, + [241924] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3949), 1, - anon_sym_DASH, - STATE(7580), 1, - sym_comment, - ACTIONS(3951), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(11537), 1, + anon_sym_LPAREN2, + ACTIONS(11576), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11650), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [242744] = 4, + ACTIONS(11968), 1, + anon_sym_DOT, + STATE(6707), 1, + sym__immediate_decimal, + STATE(7129), 1, + sym_comment, + STATE(8975), 1, + sym__var, + ACTIONS(11970), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7175), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [241957] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3964), 1, + ACTIONS(3741), 1, anon_sym_DASH, - STATE(7581), 1, + STATE(7130), 1, sym_comment, - ACTIONS(3966), 9, + ACTIONS(3743), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -557523,226 +516324,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [242765] = 5, - ACTIONS(113), 1, + [241978] = 10, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13290), 1, - aux_sym__immediate_decimal_token2, - STATE(7582), 1, - sym_comment, - ACTIONS(2549), 3, + ACTIONS(1381), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5725), 1, + anon_sym_DOLLAR, + ACTIONS(11537), 1, anon_sym_LPAREN2, + ACTIONS(12424), 1, anon_sym_DOT, - aux_sym_command_token1, - ACTIONS(2547), 6, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_LF2, - aux_sym_unquoted_token2, - [242788] = 9, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(2975), 1, - anon_sym_DASH, - ACTIONS(13279), 1, - anon_sym_DASH_DASH, - STATE(5400), 1, - sym_long_flag_equals_value, - STATE(7583), 1, + STATE(6684), 1, + sym__immediate_decimal, + STATE(7000), 1, + sym__var, + STATE(7131), 1, sym_comment, - STATE(10188), 1, - sym__flag, - ACTIONS(6045), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(6047), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(5303), 2, - sym_short_flag, - sym_long_flag, - [242819] = 9, + ACTIONS(12426), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7200), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [242011] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2929), 1, + ACTIONS(2671), 1, anon_sym_DASH, - ACTIONS(6151), 1, + ACTIONS(5763), 1, anon_sym_DASH_DASH, - STATE(7584), 1, - sym_comment, - STATE(7593), 1, + STATE(7118), 1, sym__flag, - STATE(8808), 1, - sym_long_flag_equals_value, - ACTIONS(6045), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(6047), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8772), 2, - sym_short_flag, - sym_long_flag, - [242850] = 9, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(2929), 1, - anon_sym_DASH, - ACTIONS(6151), 1, - anon_sym_DASH_DASH, - STATE(7585), 1, + STATE(7132), 1, sym_comment, - STATE(7606), 1, - sym__flag, - STATE(8808), 1, + STATE(8239), 1, sym_long_flag_equals_value, - ACTIONS(6045), 2, + ACTIONS(4871), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(6047), 2, + ACTIONS(4873), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(8772), 2, + STATE(8315), 2, sym_short_flag, sym_long_flag, - [242881] = 4, + [242042] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4043), 1, - anon_sym_DASH, - STATE(7586), 1, - sym_comment, - ACTIONS(4045), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1391), 1, + anon_sym_DOT, + ACTIONS(1409), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5725), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [242902] = 9, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(2929), 1, - anon_sym_DASH, - ACTIONS(6151), 1, - anon_sym_DASH_DASH, - STATE(7587), 1, + ACTIONS(11537), 1, + anon_sym_LPAREN2, + STATE(7000), 1, + sym__var, + STATE(7133), 1, sym_comment, - STATE(7609), 1, - sym__flag, - STATE(8808), 1, - sym_long_flag_equals_value, - ACTIONS(6045), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(6047), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8772), 2, - sym_short_flag, - sym_long_flag, - [242933] = 10, + STATE(9009), 1, + sym__immediate_decimal, + ACTIONS(1407), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7200), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [242075] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11743), 1, + ACTIONS(6322), 1, anon_sym_LPAREN2, - ACTIONS(11855), 1, + ACTIONS(11838), 1, anon_sym_DOT, - ACTIONS(13292), 1, + ACTIONS(12068), 1, anon_sym_DOLLAR, - ACTIONS(13294), 1, + ACTIONS(12757), 1, aux_sym__immediate_decimal_token4, - STATE(7523), 1, + STATE(5406), 1, sym__var, - STATE(7588), 1, + STATE(7134), 1, sym_comment, - STATE(8070), 1, + STATE(9014), 1, sym__immediate_decimal, - ACTIONS(11843), 2, + ACTIONS(11840), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(8203), 2, + STATE(3636), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [242966] = 7, + [242108] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13267), 1, + ACTIONS(12755), 1, anon_sym_DOT, - STATE(7589), 1, + STATE(7135), 1, sym_comment, - STATE(7604), 1, - aux_sym_cell_path_repeat1, - STATE(8238), 1, + STATE(7189), 1, sym_path, - ACTIONS(987), 2, + STATE(8012), 1, + sym_cell_path, + ACTIONS(1002), 2, anon_sym_DASH, anon_sym_DOT_DOT2, - ACTIONS(989), 5, + ACTIONS(1004), 5, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [242993] = 10, - ACTIONS(3), 1, + [242135] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(11743), 1, + ACTIONS(12759), 1, + aux_sym__immediate_decimal_token2, + STATE(7136), 1, + sym_comment, + ACTIONS(2358), 4, + ts_builtin_sym_end, + anon_sym_LF, anon_sym_LPAREN2, - ACTIONS(11855), 1, anon_sym_DOT, - ACTIONS(12805), 1, + ACTIONS(2356), 5, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + aux_sym_unquoted_token2, + [242158] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11535), 1, anon_sym_DOLLAR, - ACTIONS(13294), 1, + ACTIONS(11537), 1, + anon_sym_LPAREN2, + ACTIONS(11543), 1, aux_sym__immediate_decimal_token4, - STATE(7590), 1, + ACTIONS(11876), 1, + anon_sym_DOT, + STATE(7137), 1, sym_comment, - STATE(8127), 1, + STATE(7203), 1, sym__var, - STATE(8451), 1, + STATE(8123), 1, sym__immediate_decimal, - ACTIONS(11857), 2, + ACTIONS(11864), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(8492), 2, + STATE(7880), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [243026] = 10, + [242191] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11795), 1, - anon_sym_LPAREN2, - ACTIONS(11949), 1, - anon_sym_DOT, - ACTIONS(12622), 1, - anon_sym_DOLLAR, - ACTIONS(13296), 1, - aux_sym__immediate_decimal_token4, - STATE(7591), 1, + ACTIONS(4997), 1, + anon_sym_DASH, + STATE(7138), 1, sym_comment, - STATE(8434), 1, - sym__var, - STATE(8661), 1, - sym__immediate_decimal, - ACTIONS(11951), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(8641), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [243059] = 4, + ACTIONS(4999), 9, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [242212] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3949), 1, + ACTIONS(5001), 1, anon_sym_DASH, - STATE(7592), 1, + STATE(7139), 1, sym_comment, - ACTIONS(3951), 9, + ACTIONS(5003), 9, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -557752,299 +516510,232 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - [243080] = 9, + [242233] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2975), 1, + ACTIONS(2671), 1, anon_sym_DASH, - ACTIONS(13279), 1, + ACTIONS(5763), 1, anon_sym_DASH_DASH, - STATE(5400), 1, - sym_long_flag_equals_value, - STATE(7593), 1, + STATE(7140), 1, sym_comment, - STATE(10194), 1, + STATE(7257), 1, sym__flag, - ACTIONS(13051), 2, + STATE(8239), 1, + sym_long_flag_equals_value, + ACTIONS(5601), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(13053), 2, + ACTIONS(5603), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(5303), 2, + STATE(8315), 2, sym_short_flag, sym_long_flag, - [243111] = 4, - ACTIONS(3), 1, + [242264] = 6, + ACTIONS(113), 1, anon_sym_POUND, - STATE(7594), 1, - sym_comment, - ACTIONS(909), 3, - anon_sym_DOT_DOT2, + ACTIONS(12759), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(12761), 1, anon_sym_DOT, - aux_sym_unquoted_token5, - ACTIONS(911), 7, + STATE(7141), 1, + sym_comment, + ACTIONS(2358), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LPAREN2, + ACTIONS(2356), 5, + anon_sym_SEMI, 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, - [243132] = 7, + anon_sym_DASH_DASH, + anon_sym_DASH, + aux_sym_unquoted_token2, + [242289] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13298), 1, - anon_sym_DOT, - STATE(5534), 1, - sym_cell_path, - STATE(7595), 1, + ACTIONS(2671), 1, + anon_sym_DASH, + ACTIONS(5763), 1, + anon_sym_DASH_DASH, + STATE(7142), 1, sym_comment, - STATE(7804), 1, - sym_path, - ACTIONS(995), 3, + STATE(7284), 1, + sym__flag, + STATE(8239), 1, + sym_long_flag_equals_value, + ACTIONS(5601), 2, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DOT_DOT2, - ACTIONS(997), 4, + ACTIONS(5603), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [243159] = 4, - ACTIONS(113), 1, + STATE(8315), 2, + sym_short_flag, + sym_long_flag, + [242320] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7596), 1, - sym_comment, - ACTIONS(909), 4, - anon_sym_RBRACK, + ACTIONS(3312), 1, + anon_sym_DASH, + ACTIONS(3316), 1, + anon_sym_LPAREN2, + ACTIONS(12764), 1, anon_sym_DOT_DOT2, + STATE(7143), 1, + sym_comment, + ACTIONS(1844), 2, anon_sym_DOT, - aux_sym_unquoted_token5, - ACTIONS(911), 6, - anon_sym_LPAREN2, + aux_sym_unquoted_token2, + ACTIONS(12766), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [243180] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6772), 1, - anon_sym_LPAREN2, - ACTIONS(12461), 1, - anon_sym_DOT, - ACTIONS(12614), 1, + ACTIONS(3314), 3, anon_sym_DOLLAR, - ACTIONS(13300), 1, - aux_sym__immediate_decimal_token4, - STATE(5803), 1, - sym__var, - STATE(7597), 1, - sym_comment, - STATE(9299), 1, - sym__immediate_decimal, - ACTIONS(12463), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4068), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [243213] = 10, - ACTIONS(3), 1, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [242349] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(11795), 1, - anon_sym_LPAREN2, - ACTIONS(11949), 1, - anon_sym_DOT, - ACTIONS(12920), 1, - anon_sym_DOLLAR, - ACTIONS(13296), 1, - aux_sym__immediate_decimal_token4, - STATE(5293), 1, - sym__var, - STATE(7598), 1, - sym_comment, - STATE(8581), 1, - sym__immediate_decimal, - ACTIONS(11951), 2, + ACTIONS(12768), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(8580), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [243246] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11795), 1, - anon_sym_LPAREN2, - ACTIONS(11949), 1, - anon_sym_DOT, - ACTIONS(12920), 1, - anon_sym_DOLLAR, - ACTIONS(13296), 1, - aux_sym__immediate_decimal_token4, - STATE(5293), 1, - sym__var, - STATE(7599), 1, + ACTIONS(12770), 1, + aux_sym_unquoted_token2, + STATE(7144), 1, sym_comment, - STATE(8583), 1, - sym__immediate_decimal, - ACTIONS(11951), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(8582), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [243279] = 5, + ACTIONS(922), 2, + anon_sym_LF, + anon_sym_LPAREN2, + ACTIONS(920), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [242374] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13302), 1, - aux_sym__immediate_decimal_token2, - STATE(7600), 1, + ACTIONS(2671), 1, + anon_sym_DASH, + ACTIONS(5763), 1, + anon_sym_DASH_DASH, + STATE(7145), 1, sym_comment, - ACTIONS(2583), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(2581), 5, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - [243302] = 10, - ACTIONS(3), 1, + STATE(7349), 1, + sym__flag, + STATE(8239), 1, + sym_long_flag_equals_value, + ACTIONS(4829), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4831), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(8315), 2, + sym_short_flag, + sym_long_flag, + [242405] = 9, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(11879), 1, - anon_sym_LPAREN2, - ACTIONS(11927), 1, - anon_sym_DOT, - ACTIONS(12630), 1, - anon_sym_DOLLAR, - ACTIONS(13304), 1, - aux_sym__immediate_decimal_token4, - STATE(5240), 1, - sym__var, - STATE(7601), 1, + ACTIONS(2671), 1, + anon_sym_DASH, + ACTIONS(5763), 1, + anon_sym_DASH_DASH, + STATE(7146), 1, sym_comment, - STATE(8249), 1, - sym__immediate_decimal, - ACTIONS(11929), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(9240), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [243335] = 10, + STATE(7264), 1, + sym__flag, + STATE(8239), 1, + sym_long_flag_equals_value, + ACTIONS(12541), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(12543), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(8315), 2, + sym_short_flag, + sym_long_flag, + [242436] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12033), 1, - anon_sym_LPAREN2, - ACTIONS(12162), 1, - anon_sym_DOLLAR, - ACTIONS(12164), 1, - anon_sym_DOT, - ACTIONS(12168), 1, - aux_sym__immediate_decimal_token4, - STATE(4901), 1, - sym__var, - STATE(7602), 1, + ACTIONS(5005), 1, + anon_sym_DASH, + STATE(7147), 1, sym_comment, - STATE(9093), 1, - sym__immediate_decimal, - ACTIONS(12166), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7565), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [243368] = 4, + ACTIONS(5007), 9, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [242457] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5187), 1, + ACTIONS(5019), 1, anon_sym_DASH, - STATE(7603), 1, + STATE(7148), 1, sym_comment, - ACTIONS(5189), 9, - sym_identifier, - anon_sym_COLON, + ACTIONS(5021), 9, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [243389] = 7, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [242478] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13267), 1, - anon_sym_DOT, - STATE(7604), 1, + STATE(7149), 1, sym_comment, - STATE(7608), 1, - aux_sym_cell_path_repeat1, - STATE(8238), 1, - sym_path, - ACTIONS(1006), 2, + ACTIONS(2229), 4, anon_sym_DASH, anon_sym_DOT_DOT2, - ACTIONS(1008), 5, - sym_identifier, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(2231), 6, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [243416] = 4, + [242499] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5191), 1, - anon_sym_DASH, - STATE(7605), 1, + ACTIONS(3312), 1, + sym_cmd_identifier, + ACTIONS(12772), 1, + anon_sym_DOT_DOT2, + STATE(7150), 1, sym_comment, - ACTIONS(5193), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [243437] = 9, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(2929), 1, - anon_sym_DASH, - ACTIONS(6151), 1, + ACTIONS(1844), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(12774), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3314), 4, anon_sym_DASH_DASH, - STATE(7606), 1, - sym_comment, - STATE(7614), 1, - sym__flag, - STATE(8808), 1, - sym_long_flag_equals_value, - ACTIONS(13051), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(13053), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8772), 2, - sym_short_flag, - sym_long_flag, - [243468] = 4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [242526] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5195), 1, + ACTIONS(5031), 1, anon_sym_DASH, - STATE(7607), 1, + STATE(7151), 1, sym_comment, - ACTIONS(5197), 9, + ACTIONS(5033), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -558054,452 +516745,350 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [243489] = 6, + [242547] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13306), 1, + ACTIONS(11217), 1, + anon_sym_LPAREN2, + ACTIONS(11259), 1, anon_sym_DOT, - STATE(8238), 1, - sym_path, - ACTIONS(999), 2, - anon_sym_DASH, - anon_sym_DOT_DOT2, - STATE(7608), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1001), 5, - sym_identifier, + ACTIONS(12330), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [243514] = 9, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(2929), 1, - anon_sym_DASH, - ACTIONS(6151), 1, - anon_sym_DASH_DASH, - STATE(7609), 1, + ACTIONS(12776), 1, + aux_sym__immediate_decimal_token4, + STATE(4713), 1, + sym__var, + STATE(7152), 1, sym_comment, - STATE(7615), 1, - sym__flag, - STATE(8808), 1, - sym_long_flag_equals_value, - ACTIONS(13051), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(13053), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8772), 2, - sym_short_flag, - sym_long_flag, - [243545] = 10, + STATE(7375), 1, + sym__immediate_decimal, + ACTIONS(11261), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7936), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [242580] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11743), 1, + ACTIONS(11309), 1, anon_sym_LPAREN2, - ACTIONS(11855), 1, - anon_sym_DOT, - ACTIONS(12805), 1, + ACTIONS(11401), 1, anon_sym_DOLLAR, - ACTIONS(13294), 1, + ACTIONS(11513), 1, + anon_sym_DOT, + ACTIONS(11519), 1, aux_sym__immediate_decimal_token4, - STATE(7610), 1, + STATE(7153), 1, sym_comment, - STATE(8127), 1, + STATE(7707), 1, sym__var, - STATE(8405), 1, + STATE(8508), 1, sym__immediate_decimal, - ACTIONS(11857), 2, + ACTIONS(11517), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(8403), 2, + STATE(8507), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [243578] = 10, + [242613] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(10932), 1, + ACTIONS(5653), 1, anon_sym_DOLLAR, - ACTIONS(13309), 1, + ACTIONS(6467), 1, + anon_sym_LPAREN2, + ACTIONS(6469), 1, anon_sym_DOT, - ACTIONS(13313), 1, + ACTIONS(6475), 1, aux_sym__immediate_decimal_token4, - STATE(1743), 1, + STATE(2820), 1, sym__var, - STATE(2853), 1, + STATE(3125), 1, sym__immediate_decimal, - STATE(7611), 1, + STATE(7154), 1, sym_comment, - ACTIONS(13311), 2, + ACTIONS(6473), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2879), 2, + STATE(3140), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [243611] = 9, - ACTIONS(113), 1, + [242646] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2929), 1, + ACTIONS(5023), 1, anon_sym_DASH, - ACTIONS(6151), 1, - anon_sym_DASH_DASH, - STATE(7612), 1, - sym_comment, - STATE(7617), 1, - sym__flag, - STATE(8808), 1, - sym_long_flag_equals_value, - ACTIONS(13051), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(13053), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8772), 2, - sym_short_flag, - sym_long_flag, - [243642] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(7613), 1, + STATE(7155), 1, sym_comment, - ACTIONS(2439), 3, - anon_sym_LF, - anon_sym_LPAREN2, - anon_sym_DOT, - ACTIONS(2437), 7, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(5025), 9, + anon_sym_COMMA, anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, - aux_sym_unquoted_token2, - [243663] = 9, - ACTIONS(113), 1, + anon_sym_EQ_GT, + [242667] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2975), 1, + ACTIONS(5027), 1, anon_sym_DASH, - ACTIONS(13279), 1, - anon_sym_DASH_DASH, - STATE(5400), 1, - sym_long_flag_equals_value, - STATE(7614), 1, + STATE(7156), 1, sym_comment, - STATE(10197), 1, - sym__flag, - ACTIONS(13055), 2, - anon_sym_SEMI, + ACTIONS(5029), 9, + anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(13057), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(5303), 2, - sym_short_flag, - sym_long_flag, - [243694] = 9, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(2929), 1, - anon_sym_DASH, - ACTIONS(6151), 1, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - STATE(7615), 1, - sym_comment, - STATE(7620), 1, - sym__flag, - STATE(8808), 1, - sym_long_flag_equals_value, - ACTIONS(13055), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(13057), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8772), 2, - sym_short_flag, - sym_long_flag, - [243725] = 9, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [242688] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2929), 1, + ACTIONS(2671), 1, anon_sym_DASH, - ACTIONS(6151), 1, + ACTIONS(5763), 1, anon_sym_DASH_DASH, - STATE(7616), 1, + STATE(7157), 1, sym_comment, - STATE(7683), 1, + STATE(7305), 1, sym__flag, - STATE(8808), 1, + STATE(8239), 1, sym_long_flag_equals_value, - ACTIONS(5423), 2, + ACTIONS(4947), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5425), 2, + ACTIONS(4949), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(8772), 2, + STATE(8315), 2, sym_short_flag, sym_long_flag, - [243756] = 9, + [242719] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2929), 1, + ACTIONS(2671), 1, anon_sym_DASH, - ACTIONS(6151), 1, + ACTIONS(5763), 1, anon_sym_DASH_DASH, - STATE(7617), 1, + STATE(7158), 1, sym_comment, - STATE(7622), 1, + STATE(7270), 1, sym__flag, - STATE(8808), 1, + STATE(8239), 1, sym_long_flag_equals_value, - ACTIONS(13055), 2, + ACTIONS(12541), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(13057), 2, + ACTIONS(12543), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(8772), 2, + STATE(8315), 2, sym_short_flag, sym_long_flag, - [243787] = 6, - ACTIONS(113), 1, + [242750] = 10, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13315), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13317), 1, - aux_sym_unquoted_token2, - STATE(7618), 1, - sym_comment, - ACTIONS(938), 2, - anon_sym_LF, + ACTIONS(5735), 1, + anon_sym_DOLLAR, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(936), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [243812] = 4, + ACTIONS(12146), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(12778), 1, + anon_sym_DOT, + STATE(6987), 1, + sym__var, + STATE(7159), 1, + sym_comment, + STATE(8891), 1, + sym__immediate_decimal, + ACTIONS(12144), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(8898), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [242783] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5215), 1, - anon_sym_DASH, - STATE(7619), 1, - sym_comment, - ACTIONS(5217), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(5725), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [243833] = 9, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(2975), 1, - anon_sym_DASH, - ACTIONS(13279), 1, - anon_sym_DASH_DASH, - STATE(5400), 1, - sym_long_flag_equals_value, - STATE(7620), 1, + ACTIONS(11537), 1, + anon_sym_LPAREN2, + ACTIONS(11543), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11876), 1, + anon_sym_DOT, + STATE(6707), 1, + sym__immediate_decimal, + STATE(7000), 1, + sym__var, + STATE(7160), 1, sym_comment, - STATE(9446), 1, - sym__flag, - ACTIONS(13059), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(13061), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(5303), 2, - sym_short_flag, - sym_long_flag, - [243864] = 4, + ACTIONS(11878), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7175), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [242816] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5219), 1, - anon_sym_DASH, - STATE(7621), 1, + STATE(7161), 1, sym_comment, - ACTIONS(5221), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(895), 4, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [243885] = 9, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(893), 6, + sym_identifier, + anon_sym_DOT_DOT2, + anon_sym_DOT, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + [242837] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2929), 1, + ACTIONS(2414), 1, anon_sym_DASH, - ACTIONS(6151), 1, + ACTIONS(12780), 1, anon_sym_DASH_DASH, - STATE(7622), 1, + STATE(4865), 1, + sym_long_flag_equals_value, + STATE(7162), 1, sym_comment, - STATE(7623), 1, + STATE(9208), 1, sym__flag, - STATE(8808), 1, - sym_long_flag_equals_value, - ACTIONS(13059), 2, + ACTIONS(4931), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(13061), 2, + ACTIONS(4933), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(8772), 2, + STATE(4939), 2, sym_short_flag, sym_long_flag, - [243916] = 9, + [242868] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2975), 1, + ACTIONS(2671), 1, anon_sym_DASH, - ACTIONS(13279), 1, + ACTIONS(5763), 1, anon_sym_DASH_DASH, - STATE(5400), 1, - sym_long_flag_equals_value, - STATE(7623), 1, + STATE(7163), 1, sym_comment, - STATE(9447), 1, + STATE(7362), 1, sym__flag, - ACTIONS(13065), 2, + STATE(8239), 1, + sym_long_flag_equals_value, + ACTIONS(4931), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(13067), 2, + ACTIONS(4933), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(5303), 2, + STATE(8315), 2, sym_short_flag, sym_long_flag, - [243947] = 4, + [242899] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5223), 1, - anon_sym_DASH, - STATE(7624), 1, - sym_comment, - ACTIONS(5225), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(5725), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [243968] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(7625), 1, - sym_comment, - ACTIONS(2549), 3, - anon_sym_LF, + ACTIONS(7117), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11537), 1, anon_sym_LPAREN2, + ACTIONS(12152), 1, anon_sym_DOT, - ACTIONS(2547), 7, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - aux_sym_unquoted_token2, - [243989] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5227), 1, - anon_sym_DASH, - STATE(7626), 1, + STATE(6707), 1, + sym__immediate_decimal, + STATE(7000), 1, + sym__var, + STATE(7164), 1, sym_comment, - ACTIONS(5229), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [244010] = 7, - ACTIONS(113), 1, + ACTIONS(12154), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7175), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [242932] = 10, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(3520), 1, - anon_sym_LF, - ACTIONS(3522), 1, + ACTIONS(2157), 1, anon_sym_LPAREN2, - ACTIONS(13319), 1, + ACTIONS(12782), 1, + anon_sym_DOLLAR, + ACTIONS(12784), 1, anon_sym_DOT, - STATE(7627), 1, + ACTIONS(12788), 1, + aux_sym__immediate_decimal_token4, + STATE(1191), 1, + sym__var, + STATE(1366), 1, + sym__immediate_decimal, + STATE(7165), 1, sym_comment, - ACTIONS(3518), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [244037] = 4, - ACTIONS(113), 1, + ACTIONS(12786), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2085), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [242965] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7628), 1, + STATE(7166), 1, sym_comment, - ACTIONS(950), 4, - anon_sym_RBRACK, + ACTIONS(2362), 4, + anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_DOT, - aux_sym__unquoted_in_list_token6, - ACTIONS(952), 6, + aux_sym_unquoted_token2, + ACTIONS(2364), 6, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [244058] = 4, + [242986] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(7629), 1, + ACTIONS(12790), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12792), 1, + aux_sym__immediate_decimal_token2, + STATE(7167), 1, sym_comment, - ACTIONS(3507), 3, - anon_sym_LF, - anon_sym_LPAREN2, - anon_sym_DOT, - ACTIONS(3505), 7, + ACTIONS(2229), 4, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LF, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, aux_sym_unquoted_token2, - [244079] = 4, + ACTIONS(2231), 4, + ts_builtin_sym_end, + anon_sym_LPAREN2, + anon_sym_DOT, + aux_sym_command_token1, + [243011] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5231), 1, + ACTIONS(3711), 1, anon_sym_DASH, - STATE(7630), 1, + STATE(7168), 1, sym_comment, - ACTIONS(5233), 9, + ACTIONS(3713), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -558509,16 +517098,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [244100] = 4, + [243032] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5725), 1, + anon_sym_DOLLAR, + ACTIONS(11537), 1, + anon_sym_LPAREN2, + ACTIONS(12054), 1, + anon_sym_DOT, + ACTIONS(12058), 1, + aux_sym__immediate_decimal_token4, + STATE(7169), 1, + sym_comment, + STATE(9194), 1, + sym__immediate_decimal, + STATE(9648), 1, + sym__var, + ACTIONS(12056), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7200), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [243065] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11229), 1, + anon_sym_LPAREN2, + ACTIONS(11670), 1, + anon_sym_DOLLAR, + ACTIONS(12088), 1, + anon_sym_DOT, + ACTIONS(12094), 1, + aux_sym__immediate_decimal_token4, + STATE(7170), 1, + sym_comment, + STATE(7915), 1, + sym__var, + STATE(9195), 1, + sym__immediate_decimal, + ACTIONS(12092), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7314), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [243098] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5235), 1, + ACTIONS(12796), 1, anon_sym_DASH, - STATE(7631), 1, + STATE(7171), 1, sym_comment, - ACTIONS(5237), 9, + ACTIONS(12794), 9, + anon_sym_EQ, sym_identifier, - anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, @@ -558526,116 +517161,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [244121] = 4, + [243119] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5239), 1, + ACTIONS(5031), 1, anon_sym_DASH, - STATE(7632), 1, + STATE(7172), 1, sym_comment, - ACTIONS(5241), 9, - sym_identifier, - anon_sym_COLON, + ACTIONS(5033), 9, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [244142] = 7, - ACTIONS(3), 1, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [243140] = 9, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9703), 1, - anon_sym_DOT, - STATE(4983), 1, - sym_path, - STATE(7321), 1, - sym_cell_path, - STATE(7633), 1, - sym_comment, - ACTIONS(1010), 2, + ACTIONS(2671), 1, anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(1012), 5, - anon_sym_DOLLAR, + ACTIONS(5763), 1, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [244169] = 6, + STATE(7140), 1, + sym__flag, + STATE(7173), 1, + sym_comment, + STATE(8239), 1, + sym_long_flag_equals_value, + ACTIONS(5595), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(5597), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(8315), 2, + sym_short_flag, + sym_long_flag, + [243171] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13321), 1, - anon_sym_DOT, - ACTIONS(13324), 1, + ACTIONS(12434), 1, aux_sym__immediate_decimal_token2, - STATE(7634), 1, + STATE(7174), 1, sym_comment, - ACTIONS(923), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token5, - ACTIONS(925), 6, - anon_sym_LBRACE, + ACTIONS(2231), 4, + anon_sym_DASH_DASH, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [244194] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1584), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6253), 1, - anon_sym_DOLLAR, - ACTIONS(12033), 1, - anon_sym_LPAREN2, - ACTIONS(13024), 1, - anon_sym_DOT, - STATE(7403), 1, - sym__var, - STATE(7635), 1, - sym_comment, - STATE(9782), 1, - sym__immediate_decimal, - ACTIONS(13150), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(9452), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [244227] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1584), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12033), 1, - anon_sym_LPAREN2, - ACTIONS(13024), 1, + ACTIONS(2229), 5, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, anon_sym_DOT, - STATE(7184), 1, - sym__immediate_decimal, - STATE(7440), 1, - sym__var, - STATE(7636), 1, - sym_comment, - ACTIONS(13026), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7645), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [244260] = 4, + aux_sym_unquoted_token2, + [243194] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3964), 1, + ACTIONS(3741), 1, anon_sym_DASH, - STATE(7637), 1, + STATE(7175), 1, sym_comment, - ACTIONS(3966), 9, + ACTIONS(3743), 9, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -558645,161 +517235,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - [244281] = 5, + [243215] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13324), 1, - aux_sym__immediate_decimal_token2, - STATE(7638), 1, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + ACTIONS(4422), 1, + anon_sym_DASH, + STATE(7176), 1, sym_comment, - ACTIONS(923), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token5, - ACTIONS(925), 6, + STATE(10434), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4424), 7, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [244304] = 10, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [243240] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11785), 1, + ACTIONS(2187), 1, anon_sym_LPAREN2, - ACTIONS(11889), 1, - anon_sym_DOT, - ACTIONS(12655), 1, - anon_sym_DOLLAR, - ACTIONS(13326), 1, - aux_sym__immediate_decimal_token4, - STATE(5027), 1, - sym__var, - STATE(7639), 1, + ACTIONS(4426), 1, + anon_sym_DASH, + STATE(7177), 1, sym_comment, - STATE(7918), 1, - sym__immediate_decimal, - ACTIONS(11891), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(8701), 2, + STATE(10434), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - [244337] = 10, + ACTIONS(4428), 7, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [243265] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11879), 1, + ACTIONS(11365), 1, anon_sym_LPAREN2, - ACTIONS(11927), 1, + ACTIONS(11413), 1, anon_sym_DOT, - ACTIONS(12630), 1, + ACTIONS(12354), 1, anon_sym_DOLLAR, - ACTIONS(13304), 1, + ACTIONS(12798), 1, aux_sym__immediate_decimal_token4, - STATE(5240), 1, + STATE(5006), 1, sym__var, - STATE(7640), 1, + STATE(7178), 1, sym_comment, - STATE(8312), 1, + STATE(7744), 1, sym__immediate_decimal, - ACTIONS(11929), 2, + ACTIONS(11415), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(9240), 2, + STATE(8567), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [244370] = 10, + [243298] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11879), 1, + ACTIONS(5653), 1, + anon_sym_DOLLAR, + ACTIONS(6467), 1, anon_sym_LPAREN2, - ACTIONS(12052), 1, + ACTIONS(6469), 1, anon_sym_DOT, - ACTIONS(12630), 1, - anon_sym_DOLLAR, - ACTIONS(13328), 1, + ACTIONS(6475), 1, aux_sym__immediate_decimal_token4, - STATE(5240), 1, + STATE(2820), 1, sym__var, - STATE(7641), 1, - sym_comment, - STATE(9153), 1, + STATE(3139), 1, sym__immediate_decimal, - ACTIONS(12054), 2, + STATE(7179), 1, + sym_comment, + ACTIONS(6473), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(8836), 2, + STATE(3156), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [244403] = 10, + [243331] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(12800), 1, + anon_sym_DOT, + STATE(3779), 1, + sym_path, + STATE(7180), 1, + sym_comment, + STATE(7182), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1010), 3, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DOT_DOT2, + ACTIONS(1012), 4, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [243358] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11743), 1, + ACTIONS(11279), 1, anon_sym_LPAREN2, - ACTIONS(11855), 1, + ACTIONS(11434), 1, anon_sym_DOT, - ACTIONS(12578), 1, + ACTIONS(12412), 1, anon_sym_DOLLAR, - ACTIONS(13294), 1, + ACTIONS(12726), 1, aux_sym__immediate_decimal_token4, - STATE(5098), 1, - sym__var, - STATE(7642), 1, + STATE(7181), 1, sym_comment, - STATE(8384), 1, + STATE(7851), 1, + sym__var, + STATE(8355), 1, sym__immediate_decimal, - ACTIONS(11857), 2, + ACTIONS(11436), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(8459), 2, + STATE(8354), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [244436] = 5, + [243391] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13330), 1, - aux_sym__immediate_decimal_token2, - STATE(7643), 1, - sym_comment, - ACTIONS(2583), 3, - anon_sym_LPAREN2, + ACTIONS(12800), 1, anon_sym_DOT, - aux_sym_command_token1, - ACTIONS(2581), 6, + STATE(3779), 1, + sym_path, + STATE(7182), 1, + sym_comment, + STATE(7188), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1006), 3, anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - aux_sym_unquoted_token2, - [244459] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13332), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13334), 1, - aux_sym__immediate_decimal_token2, - STATE(7644), 1, - sym_comment, - ACTIONS(2437), 3, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(2439), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(1008), 4, + ts_builtin_sym_end, + anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [244484] = 4, + [243418] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(4959), 1, anon_sym_DASH, - STATE(7645), 1, + STATE(7183), 1, sym_comment, - ACTIONS(3868), 9, + ACTIONS(4961), 9, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -558809,630 +517399,605 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - [244505] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13338), 1, - anon_sym_DASH, - STATE(7646), 1, - sym_comment, - ACTIONS(13336), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [244526] = 4, + [243439] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(7647), 1, + ACTIONS(12570), 1, + aux_sym__immediate_decimal_token2, + STATE(7184), 1, sym_comment, - ACTIONS(917), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token5, - ACTIONS(919), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [244547] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(3520), 1, + ACTIONS(2231), 4, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(13340), 1, - anon_sym_DOT_DOT2, - STATE(7648), 1, - sym_comment, - ACTIONS(1934), 2, + anon_sym_LPAREN2, anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(13342), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3518), 4, + ACTIONS(2229), 5, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [244574] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11795), 1, - anon_sym_LPAREN2, - ACTIONS(11949), 1, - anon_sym_DOT, - ACTIONS(13296), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(13344), 1, - anon_sym_DOLLAR, - STATE(4804), 1, - sym__var, - STATE(7649), 1, - sym_comment, - STATE(7953), 1, - sym__immediate_decimal, - ACTIONS(11945), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7952), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [244607] = 10, + anon_sym_DASH_DASH, + anon_sym_DASH, + aux_sym_unquoted_token2, + [243462] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11795), 1, + ACTIONS(11279), 1, anon_sym_LPAREN2, - ACTIONS(11949), 1, + ACTIONS(11333), 1, anon_sym_DOT, - ACTIONS(12920), 1, + ACTIONS(12098), 1, anon_sym_DOLLAR, - ACTIONS(13296), 1, + ACTIONS(12802), 1, aux_sym__immediate_decimal_token4, - STATE(5293), 1, + STATE(4858), 1, sym__var, - STATE(7650), 1, + STATE(7185), 1, sym_comment, - STATE(8661), 1, + STATE(7652), 1, sym__immediate_decimal, - ACTIONS(11951), 2, + ACTIONS(11335), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(8641), 2, + STATE(8354), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [244640] = 10, + [243495] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11775), 1, + ACTIONS(6322), 1, anon_sym_LPAREN2, - ACTIONS(11825), 1, + ACTIONS(11838), 1, anon_sym_DOT, - ACTIONS(12695), 1, + ACTIONS(12068), 1, anon_sym_DOLLAR, - ACTIONS(13346), 1, + ACTIONS(12757), 1, aux_sym__immediate_decimal_token4, - STATE(5184), 1, + STATE(5406), 1, sym__var, - STATE(7651), 1, + STATE(7186), 1, sym_comment, - STATE(7885), 1, + STATE(8449), 1, sym__immediate_decimal, - ACTIONS(11827), 2, + ACTIONS(11840), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(8756), 2, + STATE(3636), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [244673] = 10, - ACTIONS(3), 1, + [243528] = 8, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7701), 1, - anon_sym_DOLLAR, - ACTIONS(7703), 1, + ACTIONS(3358), 1, anon_sym_LPAREN2, - ACTIONS(7711), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(13348), 1, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(3576), 1, + aux_sym_command_token1, + ACTIONS(12513), 1, anon_sym_DOT, - STATE(3932), 1, - sym__var, - STATE(4069), 1, - sym__immediate_decimal, - STATE(7652), 1, - sym_comment, - ACTIONS(7709), 2, + ACTIONS(12804), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4404), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [244706] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(13193), 1, - aux_sym__immediate_decimal_token2, - STATE(7653), 1, + STATE(7187), 1, sym_comment, - ACTIONS(2439), 3, - anon_sym_LPAREN2, - anon_sym_DOT, - aux_sym_command_token1, - ACTIONS(2437), 6, + ACTIONS(3574), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - aux_sym_unquoted_token2, - [244729] = 10, - ACTIONS(3), 1, + anon_sym_LF2, + [243557] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(10932), 1, - anon_sym_DOLLAR, - ACTIONS(13309), 1, + ACTIONS(12806), 1, anon_sym_DOT, - ACTIONS(13313), 1, - aux_sym__immediate_decimal_token4, - STATE(1743), 1, - sym__var, - STATE(2866), 1, - sym__immediate_decimal, - STATE(7654), 1, + STATE(3779), 1, + sym_path, + STATE(7188), 2, sym_comment, - ACTIONS(13311), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2861), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [244762] = 10, + aux_sym_cell_path_repeat1, + ACTIONS(985), 3, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DOT_DOT2, + ACTIONS(987), 4, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [243582] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2567), 1, - anon_sym_LPAREN2, - ACTIONS(10802), 1, - anon_sym_DOLLAR, - ACTIONS(13350), 1, + ACTIONS(12755), 1, anon_sym_DOT, - ACTIONS(13354), 1, - aux_sym__immediate_decimal_token4, - STATE(1690), 1, - sym__var, - STATE(2749), 1, - sym__immediate_decimal, - STATE(7655), 1, + STATE(7189), 1, sym_comment, - ACTIONS(13352), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2723), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [244795] = 10, + STATE(7318), 1, + aux_sym_cell_path_repeat1, + STATE(7743), 1, + sym_path, + ACTIONS(1010), 2, + anon_sym_DASH, + anon_sym_DOT_DOT2, + ACTIONS(1012), 5, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [243609] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4959), 1, + anon_sym_DASH, + STATE(7190), 1, + sym_comment, + ACTIONS(4961), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [243630] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3497), 1, + ACTIONS(11229), 1, anon_sym_LPAREN2, - ACTIONS(13356), 1, + ACTIONS(11237), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11670), 1, anon_sym_DOLLAR, - ACTIONS(13358), 1, + ACTIONS(11892), 1, anon_sym_DOT, - ACTIONS(13362), 1, - aux_sym__immediate_decimal_token4, - STATE(1426), 1, - sym__var, - STATE(1704), 1, + STATE(7190), 1, sym__immediate_decimal, - STATE(7656), 1, + STATE(7191), 1, sym_comment, - ACTIONS(13360), 2, + STATE(7915), 1, + sym__var, + ACTIONS(11896), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1738), 2, + STATE(7315), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [244828] = 10, + [243663] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2631), 1, + ACTIONS(6332), 1, anon_sym_LPAREN2, - ACTIONS(10932), 1, - anon_sym_DOLLAR, - ACTIONS(13309), 1, + ACTIONS(6334), 1, anon_sym_DOT, - ACTIONS(13313), 1, + ACTIONS(12809), 1, + anon_sym_DOLLAR, + ACTIONS(12813), 1, aux_sym__immediate_decimal_token4, - STATE(1743), 1, + STATE(2939), 1, sym__var, - STATE(2877), 1, + STATE(3098), 1, sym__immediate_decimal, - STATE(7657), 1, + STATE(7192), 1, sym_comment, - ACTIONS(13311), 2, + ACTIONS(12811), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2862), 2, + STATE(3108), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [244861] = 10, + [243696] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11863), 1, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(11957), 1, + ACTIONS(11650), 1, anon_sym_DOLLAR, - ACTIONS(11959), 1, + ACTIONS(11866), 1, anon_sym_DOT, - ACTIONS(11965), 1, + ACTIONS(11870), 1, aux_sym__immediate_decimal_token4, - STATE(7658), 1, + STATE(7193), 1, sym_comment, - STATE(8075), 1, + STATE(8975), 1, sym__var, - STATE(8090), 1, + STATE(9306), 1, sym__immediate_decimal, - ACTIONS(11963), 2, + ACTIONS(11868), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(9202), 2, + STATE(7200), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [244894] = 10, - ACTIONS(3), 1, + [243729] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(11785), 1, - anon_sym_LPAREN2, - ACTIONS(11889), 1, - anon_sym_DOT, - ACTIONS(12655), 1, - anon_sym_DOLLAR, - ACTIONS(13326), 1, - aux_sym__immediate_decimal_token4, - STATE(5027), 1, - sym__var, - STATE(7659), 1, + ACTIONS(3314), 1, + anon_sym_LF, + ACTIONS(12815), 1, + anon_sym_DOT_DOT2, + STATE(7194), 1, sym_comment, - STATE(8193), 1, - sym__immediate_decimal, - ACTIONS(11891), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(8701), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [244927] = 10, + ACTIONS(12817), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3312), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [243754] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(3356), 1, + anon_sym_LF, + ACTIONS(12819), 1, + anon_sym_DOT_DOT2, + STATE(7195), 1, + sym_comment, + ACTIONS(12821), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3354), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [243779] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(3743), 1, + anon_sym_LF, + ACTIONS(12823), 1, + anon_sym_DOT_DOT2, + STATE(7196), 1, + sym_comment, + ACTIONS(12825), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3741), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [243804] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11785), 1, + ACTIONS(11279), 1, anon_sym_LPAREN2, - ACTIONS(11917), 1, + ACTIONS(11434), 1, anon_sym_DOT, - ACTIONS(12655), 1, + ACTIONS(12098), 1, anon_sym_DOLLAR, - ACTIONS(13364), 1, + ACTIONS(12726), 1, aux_sym__immediate_decimal_token4, - STATE(5027), 1, + STATE(4858), 1, sym__var, - STATE(7660), 1, + STATE(7197), 1, sym_comment, - STATE(8685), 1, + STATE(8355), 1, sym__immediate_decimal, - ACTIONS(11919), 2, + ACTIONS(11436), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(8680), 2, + STATE(8354), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [244960] = 10, - ACTIONS(3), 1, + [243837] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12033), 1, - anon_sym_LPAREN2, - ACTIONS(12039), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12414), 1, - anon_sym_DOT, + ACTIONS(3701), 1, + anon_sym_LF, + ACTIONS(12827), 1, + anon_sym_DOT_DOT2, + STATE(7198), 1, + sym_comment, + ACTIONS(12829), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3699), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [243862] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(3713), 1, + anon_sym_LF, + ACTIONS(12831), 1, + anon_sym_DOT_DOT2, STATE(7199), 1, - sym__immediate_decimal, - STATE(7440), 1, - sym__var, - STATE(7661), 1, sym_comment, - ACTIONS(12416), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7565), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [244993] = 10, + ACTIONS(12833), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3711), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [243887] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11743), 1, - anon_sym_LPAREN2, - ACTIONS(11855), 1, - anon_sym_DOT, - ACTIONS(13294), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(13366), 1, + ACTIONS(4963), 1, + anon_sym_DASH, + STATE(7200), 1, + sym_comment, + ACTIONS(4965), 9, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DOLLAR, - STATE(4674), 1, - sym__var, - STATE(7662), 1, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [243908] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(7201), 1, sym_comment, - STATE(7810), 1, - sym__immediate_decimal, - ACTIONS(11843), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7812), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [245026] = 10, + ACTIONS(901), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token5, + ACTIONS(903), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [243929] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11743), 1, - anon_sym_LPAREN2, - ACTIONS(11855), 1, - anon_sym_DOT, - ACTIONS(12578), 1, + ACTIONS(7363), 1, anon_sym_DOLLAR, - ACTIONS(13294), 1, + ACTIONS(7365), 1, + anon_sym_LPAREN2, + ACTIONS(7373), 1, aux_sym__immediate_decimal_token4, - STATE(5098), 1, + ACTIONS(12835), 1, + anon_sym_DOT, + STATE(3367), 1, sym__var, - STATE(7663), 1, - sym_comment, - STATE(8451), 1, + STATE(3700), 1, sym__immediate_decimal, - ACTIONS(11857), 2, + STATE(7202), 1, + sym_comment, + ACTIONS(7371), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(8492), 2, + STATE(3668), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [245059] = 10, + [243962] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6772), 1, - anon_sym_LPAREN2, - ACTIONS(12336), 1, + ACTIONS(9375), 1, anon_sym_DOT, - ACTIONS(12614), 1, - anon_sym_DOLLAR, - ACTIONS(13368), 1, - aux_sym__immediate_decimal_token4, - STATE(5803), 1, - sym__var, - STATE(7664), 1, + STATE(4642), 1, + sym_path, + STATE(6889), 1, + sym_cell_path, + STATE(7203), 1, sym_comment, - STATE(8845), 1, - sym__immediate_decimal, - ACTIONS(12338), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4068), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [245092] = 10, + ACTIONS(1002), 2, + anon_sym_DASH, + anon_sym_DOT_DOT2, + ACTIONS(1004), 5, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [243989] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12033), 1, - anon_sym_LPAREN2, - ACTIONS(12162), 1, + ACTIONS(7336), 1, anon_sym_DOLLAR, - ACTIONS(12515), 1, - anon_sym_DOT, - ACTIONS(12519), 1, + ACTIONS(7338), 1, + anon_sym_LPAREN2, + ACTIONS(7346), 1, aux_sym__immediate_decimal_token4, - STATE(7665), 1, - sym_comment, - STATE(9422), 1, + ACTIONS(12738), 1, + anon_sym_DOT, + STATE(3598), 1, sym__var, - STATE(9493), 1, + STATE(4172), 1, sym__immediate_decimal, - ACTIONS(12517), 2, + STATE(7204), 1, + sym_comment, + ACTIONS(7344), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7565), 2, + STATE(4123), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [245125] = 4, - ACTIONS(3), 1, + [244022] = 9, + ACTIONS(113), 1, anon_sym_POUND, - STATE(7666), 1, + ACTIONS(2414), 1, + anon_sym_DASH, + ACTIONS(12780), 1, + anon_sym_DASH_DASH, + STATE(4865), 1, + sym_long_flag_equals_value, + STATE(7205), 1, sym_comment, - ACTIONS(917), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token5, - ACTIONS(919), 7, + STATE(9221), 1, + sym__flag, + ACTIONS(4951), 2, + anon_sym_SEMI, 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, - [245146] = 10, + ACTIONS(4953), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(4939), 2, + sym_short_flag, + sym_long_flag, + [244053] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11743), 1, - anon_sym_LPAREN2, - ACTIONS(11855), 1, - anon_sym_DOT, - ACTIONS(12578), 1, + ACTIONS(7215), 1, anon_sym_DOLLAR, - ACTIONS(13294), 1, + ACTIONS(7217), 1, + anon_sym_LPAREN2, + ACTIONS(7225), 1, aux_sym__immediate_decimal_token4, - STATE(5098), 1, + ACTIONS(12837), 1, + anon_sym_DOT, + STATE(3494), 1, sym__var, - STATE(7667), 1, - sym_comment, - STATE(8405), 1, + STATE(3590), 1, sym__immediate_decimal, - ACTIONS(11857), 2, + STATE(7206), 1, + sym_comment, + ACTIONS(7223), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(8403), 2, + STATE(3920), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [245179] = 10, - ACTIONS(3), 1, + [244086] = 9, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(6772), 1, - anon_sym_LPAREN2, - ACTIONS(12475), 1, - anon_sym_DOT, - ACTIONS(12614), 1, - anon_sym_DOLLAR, - ACTIONS(13370), 1, - aux_sym__immediate_decimal_token4, - STATE(3551), 1, - sym__immediate_decimal, - STATE(5803), 1, - sym__var, - STATE(7668), 1, + ACTIONS(2671), 1, + anon_sym_DASH, + ACTIONS(5763), 1, + anon_sym_DASH_DASH, + STATE(7207), 1, sym_comment, - ACTIONS(12477), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4068), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [245212] = 10, + STATE(7414), 1, + sym__flag, + STATE(8239), 1, + sym_long_flag_equals_value, + ACTIONS(4951), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4953), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(8315), 2, + sym_short_flag, + sym_long_flag, + [244117] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2557), 1, + ACTIONS(7592), 1, anon_sym_LPAREN2, - ACTIONS(13372), 1, + ACTIONS(11848), 1, anon_sym_DOLLAR, - ACTIONS(13374), 1, + ACTIONS(12839), 1, anon_sym_DOT, - ACTIONS(13378), 1, + ACTIONS(12843), 1, aux_sym__immediate_decimal_token4, - STATE(1295), 1, - sym__var, - STATE(1666), 1, + STATE(4290), 1, sym__immediate_decimal, - STATE(7669), 1, + STATE(4298), 1, + sym__var, + STATE(7208), 1, sym_comment, - ACTIONS(13376), 2, + ACTIONS(12841), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1620), 2, + STATE(4959), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [245245] = 10, + [244150] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2567), 1, - anon_sym_LPAREN2, - ACTIONS(10802), 1, + ACTIONS(5725), 1, anon_sym_DOLLAR, - ACTIONS(13350), 1, + ACTIONS(11537), 1, + anon_sym_LPAREN2, + ACTIONS(11682), 1, anon_sym_DOT, - ACTIONS(13354), 1, + ACTIONS(11686), 1, aux_sym__immediate_decimal_token4, - STATE(1690), 1, + STATE(7000), 1, sym__var, - STATE(2744), 1, - sym__immediate_decimal, - STATE(7670), 1, + STATE(7209), 1, sym_comment, - ACTIONS(13352), 2, + STATE(8274), 1, + sym__immediate_decimal, + ACTIONS(11684), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2686), 2, + STATE(7200), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [245278] = 4, + [244183] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4043), 1, - anon_sym_DASH, - STATE(7671), 1, - sym_comment, - ACTIONS(4045), 9, - anon_sym_COMMA, - anon_sym_PIPE, + ACTIONS(5725), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [245299] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11755), 1, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(12237), 1, - anon_sym_DOLLAR, - ACTIONS(12677), 1, + ACTIONS(12172), 1, anon_sym_DOT, - ACTIONS(12683), 1, + ACTIONS(12176), 1, aux_sym__immediate_decimal_token4, - STATE(7672), 1, - sym_comment, - STATE(8321), 1, + STATE(7000), 1, sym__var, - STATE(9203), 1, + STATE(7210), 1, + sym_comment, + STATE(9656), 1, sym__immediate_decimal, - ACTIONS(12681), 2, + ACTIONS(12174), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7607), 2, + STATE(7200), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [245332] = 10, + [244216] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11775), 1, + ACTIONS(1381), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5735), 1, + anon_sym_DOLLAR, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(11825), 1, + ACTIONS(12424), 1, anon_sym_DOT, - ACTIONS(12695), 1, - anon_sym_DOLLAR, - ACTIONS(13346), 1, - aux_sym__immediate_decimal_token4, - STATE(5184), 1, + STATE(6987), 1, sym__var, - STATE(7673), 1, + STATE(7211), 1, sym_comment, - STATE(8156), 1, + STATE(9379), 1, sym__immediate_decimal, - ACTIONS(11827), 2, + ACTIONS(12440), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(8756), 2, + STATE(9202), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [245365] = 6, + [244249] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2397), 1, + ACTIONS(2187), 1, anon_sym_LPAREN2, - ACTIONS(4323), 1, + ACTIONS(4196), 1, anon_sym_DASH, - STATE(7674), 1, + STATE(7212), 1, sym_comment, - STATE(11424), 1, + STATE(10132), 1, sym__expr_parenthesized_immediate, - ACTIONS(4325), 7, + ACTIONS(4198), 7, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, @@ -559440,677 +518005,699 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [245390] = 6, - ACTIONS(3), 1, + [244274] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - ACTIONS(4375), 1, - anon_sym_DASH, - STATE(7675), 1, + STATE(7213), 1, sym_comment, - STATE(11424), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4377), 7, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [245415] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2567), 1, - anon_sym_LPAREN2, - ACTIONS(10802), 1, - anon_sym_DOLLAR, - ACTIONS(13350), 1, + ACTIONS(893), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(13354), 1, - aux_sym__immediate_decimal_token4, - STATE(1690), 1, - sym__var, - STATE(2722), 1, - sym__immediate_decimal, - STATE(7676), 1, - sym_comment, - ACTIONS(13352), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2721), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [245448] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11753), 1, - anon_sym_DOLLAR, - ACTIONS(11755), 1, + aux_sym__unquoted_in_list_token6, + ACTIONS(895), 6, anon_sym_LPAREN2, - ACTIONS(11763), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12503), 1, - anon_sym_DOT, - STATE(7151), 1, - sym__var, - STATE(7199), 1, - sym__immediate_decimal, - STATE(7677), 1, - sym_comment, - ACTIONS(11761), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7607), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [245481] = 10, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [244295] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12031), 1, - anon_sym_DOLLAR, - ACTIONS(12033), 1, - anon_sym_LPAREN2, - ACTIONS(12039), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12414), 1, + ACTIONS(9203), 1, anon_sym_DOT, - STATE(7633), 1, - sym__var, - STATE(7678), 1, + ACTIONS(9209), 1, + aux_sym_unquoted_token5, + ACTIONS(12845), 1, + anon_sym_DOT_DOT2, + ACTIONS(12849), 1, + sym_filesize_unit, + ACTIONS(12851), 1, + sym_duration_unit, + STATE(7214), 1, sym_comment, - STATE(8631), 1, - sym__immediate_decimal, - ACTIONS(12398), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(8331), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [245514] = 10, + ACTIONS(12847), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(940), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [244326] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6247), 1, + ACTIONS(1381), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5725), 1, anon_sym_DOLLAR, - ACTIONS(12033), 1, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(12039), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12414), 1, + ACTIONS(12424), 1, anon_sym_DOT, - STATE(7184), 1, + STATE(6707), 1, sym__immediate_decimal, - STATE(7440), 1, + STATE(7000), 1, sym__var, - STATE(7679), 1, + STATE(7215), 1, sym_comment, - ACTIONS(12416), 2, + ACTIONS(12426), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7645), 2, + STATE(7175), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [245547] = 5, + [244359] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13261), 1, - aux_sym__immediate_decimal_token2, - STATE(7680), 1, + ACTIONS(2671), 1, + anon_sym_DASH, + ACTIONS(5763), 1, + anon_sym_DASH_DASH, + STATE(7207), 1, + sym__flag, + STATE(7216), 1, sym_comment, - ACTIONS(2583), 4, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_LPAREN2, - anon_sym_DOT, - ACTIONS(2581), 5, + STATE(8239), 1, + sym_long_flag_equals_value, + ACTIONS(4947), 2, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - aux_sym_unquoted_token2, - [245570] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12033), 1, - anon_sym_LPAREN2, - ACTIONS(12191), 1, - anon_sym_DOT, - ACTIONS(12195), 1, - aux_sym__immediate_decimal_token4, - STATE(7440), 1, - sym__var, - STATE(7681), 1, - sym_comment, - STATE(8404), 1, - sym__immediate_decimal, - ACTIONS(12193), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7565), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [245603] = 10, + ACTIONS(4949), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(8315), 2, + sym_short_flag, + sym_long_flag, + [244390] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11863), 1, + ACTIONS(2157), 1, anon_sym_LPAREN2, - ACTIONS(11957), 1, + ACTIONS(12782), 1, anon_sym_DOLLAR, - ACTIONS(11959), 1, + ACTIONS(12853), 1, anon_sym_DOT, - ACTIONS(11965), 1, + ACTIONS(12857), 1, aux_sym__immediate_decimal_token4, - STATE(7682), 1, - sym_comment, - STATE(8075), 1, + STATE(1191), 1, sym__var, - STATE(8435), 1, + STATE(1279), 1, sym__immediate_decimal, - ACTIONS(11963), 2, + STATE(7217), 1, + sym_comment, + ACTIONS(12855), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(9202), 2, + STATE(2085), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [245636] = 9, + [244423] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2929), 1, + ACTIONS(2671), 1, anon_sym_DASH, - ACTIONS(6151), 1, + ACTIONS(5763), 1, anon_sym_DASH_DASH, - STATE(7544), 1, + STATE(7216), 1, sym__flag, - STATE(7683), 1, + STATE(7218), 1, sym_comment, - STATE(8808), 1, + STATE(8239), 1, sym_long_flag_equals_value, - ACTIONS(5429), 2, + ACTIONS(4931), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5431), 2, + ACTIONS(4933), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(8772), 2, + STATE(8315), 2, sym_short_flag, sym_long_flag, - [245667] = 9, + [244454] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2929), 1, + ACTIONS(2671), 1, anon_sym_DASH, - ACTIONS(6151), 1, + ACTIONS(5763), 1, anon_sym_DASH_DASH, - STATE(7554), 1, - sym__flag, - STATE(7684), 1, + STATE(7219), 1, sym_comment, - STATE(8808), 1, + STATE(7400), 1, + sym__flag, + STATE(8239), 1, sym_long_flag_equals_value, - ACTIONS(5429), 2, + ACTIONS(5353), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5431), 2, + ACTIONS(5355), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(8772), 2, + STATE(8315), 2, sym_short_flag, sym_long_flag, - [245698] = 10, - ACTIONS(3), 1, + [244485] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12033), 1, - anon_sym_LPAREN2, - ACTIONS(12039), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12414), 1, - anon_sym_DOT, - STATE(7440), 1, - sym__var, - STATE(7564), 1, - sym__immediate_decimal, - STATE(7685), 1, - sym_comment, - ACTIONS(12416), 2, + ACTIONS(12859), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7563), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [245731] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12033), 1, + ACTIONS(12861), 1, + aux_sym__immediate_decimal_token2, + STATE(7220), 1, + sym_comment, + ACTIONS(2231), 3, + anon_sym_LF, anon_sym_LPAREN2, - ACTIONS(12127), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12162), 1, - anon_sym_DOLLAR, - ACTIONS(12348), 1, anon_sym_DOT, - STATE(7199), 1, - sym__immediate_decimal, - STATE(7686), 1, - sym_comment, - STATE(9422), 1, - sym__var, - ACTIONS(12350), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7565), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [245764] = 10, + ACTIONS(2229), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [244510] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6772), 1, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(12475), 1, + ACTIONS(11650), 1, + anon_sym_DOLLAR, + ACTIONS(11652), 1, anon_sym_DOT, - ACTIONS(13370), 1, + ACTIONS(11656), 1, aux_sym__immediate_decimal_token4, - ACTIONS(13380), 1, - anon_sym_DOLLAR, - STATE(5205), 1, + STATE(4470), 1, sym__var, - STATE(7687), 1, + STATE(7221), 1, sym_comment, - STATE(8970), 1, + STATE(8595), 1, sym__immediate_decimal, - ACTIONS(12535), 2, + ACTIONS(11654), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(8642), 2, + STATE(7200), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [245797] = 10, + [244543] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6772), 1, + ACTIONS(12863), 1, + aux_sym__immediate_decimal_token2, + STATE(7222), 1, + sym_comment, + ACTIONS(901), 3, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token5, + ACTIONS(903), 6, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [244566] = 9, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(2671), 1, + anon_sym_DASH, + ACTIONS(5763), 1, + anon_sym_DASH_DASH, + STATE(7158), 1, + sym__flag, + STATE(7223), 1, + sym_comment, + STATE(8239), 1, + sym_long_flag_equals_value, + ACTIONS(4951), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4953), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(8315), 2, + sym_short_flag, + sym_long_flag, + [244597] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(7224), 1, + sym_comment, + ACTIONS(2231), 3, + anon_sym_LF, anon_sym_LPAREN2, - ACTIONS(12475), 1, anon_sym_DOT, - ACTIONS(12614), 1, - anon_sym_DOLLAR, - ACTIONS(13370), 1, - aux_sym__immediate_decimal_token4, - STATE(3543), 1, - sym__immediate_decimal, - STATE(5803), 1, - sym__var, - STATE(7688), 1, + ACTIONS(2229), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [244618] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(7225), 1, sym_comment, - ACTIONS(12477), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4080), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [245830] = 10, + ACTIONS(3769), 3, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3767), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [244639] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1593), 1, + ACTIONS(12865), 1, anon_sym_DOT, - ACTIONS(1611), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12033), 1, - anon_sym_LPAREN2, - STATE(7440), 1, - sym__var, - STATE(7689), 1, + ACTIONS(12868), 1, + aux_sym__immediate_decimal_token2, + STATE(7226), 1, sym_comment, - STATE(9505), 1, - sym__immediate_decimal, - ACTIONS(1609), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7565), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [245863] = 10, + ACTIONS(2356), 4, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(2358), 4, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [244664] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6772), 1, - anon_sym_LPAREN2, - ACTIONS(12336), 1, - anon_sym_DOT, - ACTIONS(12614), 1, + ACTIONS(7215), 1, anon_sym_DOLLAR, - ACTIONS(13368), 1, + ACTIONS(7217), 1, + anon_sym_LPAREN2, + ACTIONS(7297), 1, aux_sym__immediate_decimal_token4, - STATE(5803), 1, + ACTIONS(12870), 1, + anon_sym_DOT, + STATE(3494), 1, sym__var, - STATE(7690), 1, - sym_comment, - STATE(9510), 1, + STATE(3917), 1, sym__immediate_decimal, - ACTIONS(12338), 2, + STATE(7227), 1, + sym_comment, + ACTIONS(7295), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4068), 2, + STATE(3908), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [245896] = 5, + [244697] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13382), 1, - aux_sym__immediate_decimal_token2, - STATE(7691), 1, + ACTIONS(3314), 1, + anon_sym_LF, + ACTIONS(12872), 1, + anon_sym_DOT_DOT2, + STATE(7228), 1, sym_comment, - ACTIONS(2549), 3, - anon_sym_LPAREN2, + ACTIONS(1844), 2, anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(12874), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3312), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [244724] = 8, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(3576), 1, aux_sym_command_token1, - ACTIONS(2547), 6, + ACTIONS(12513), 1, + anon_sym_DOT, + ACTIONS(12876), 1, + aux_sym__immediate_decimal_token1, + STATE(7229), 1, + sym_comment, + ACTIONS(3574), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, + [244753] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12878), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12880), 1, + aux_sym__immediate_decimal_token2, + STATE(7230), 1, + sym_comment, + ACTIONS(2229), 4, + sym_identifier, + anon_sym_DOT_DOT2, + anon_sym_DOT, aux_sym_unquoted_token2, - [245919] = 10, + ACTIONS(2231), 4, + anon_sym_DOLLAR, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [244778] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11795), 1, + ACTIONS(11217), 1, anon_sym_LPAREN2, - ACTIONS(11949), 1, + ACTIONS(11353), 1, anon_sym_DOT, - ACTIONS(12622), 1, - anon_sym_DOLLAR, - ACTIONS(13296), 1, + ACTIONS(12724), 1, aux_sym__immediate_decimal_token4, - STATE(7692), 1, - sym_comment, - STATE(8434), 1, + ACTIONS(12882), 1, + anon_sym_DOLLAR, + STATE(4193), 1, sym__var, - STATE(8581), 1, + STATE(7194), 1, sym__immediate_decimal, - ACTIONS(11951), 2, + STATE(7231), 1, + sym_comment, + ACTIONS(11293), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(8580), 2, + STATE(7196), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [245952] = 10, + [244811] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12033), 1, + ACTIONS(6580), 1, + anon_sym_DOLLAR, + ACTIONS(6582), 1, anon_sym_LPAREN2, - ACTIONS(12127), 1, + ACTIONS(6590), 1, aux_sym__immediate_decimal_token4, - ACTIONS(12162), 1, - anon_sym_DOLLAR, - ACTIONS(12348), 1, + ACTIONS(12884), 1, anon_sym_DOT, - STATE(4901), 1, + STATE(2746), 1, sym__var, - STATE(7564), 1, + STATE(3036), 1, sym__immediate_decimal, - STATE(7693), 1, + STATE(7232), 1, sym_comment, - ACTIONS(12350), 2, + ACTIONS(6588), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7563), 2, + STATE(3037), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [245985] = 10, + [244844] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(12596), 1, + aux_sym__immediate_decimal_token2, + STATE(7233), 1, + sym_comment, + ACTIONS(2231), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(2229), 5, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym__unquoted_in_list_token2, + [244867] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6247), 1, + ACTIONS(5653), 1, anon_sym_DOLLAR, - ACTIONS(7619), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12033), 1, + ACTIONS(6467), 1, anon_sym_LPAREN2, - ACTIONS(12904), 1, + ACTIONS(6469), 1, anon_sym_DOT, - STATE(7199), 1, - sym__immediate_decimal, - STATE(7440), 1, + ACTIONS(6475), 1, + aux_sym__immediate_decimal_token4, + STATE(2820), 1, sym__var, - STATE(7694), 1, + STATE(3153), 1, + sym__immediate_decimal, + STATE(7234), 1, sym_comment, - ACTIONS(12906), 2, + ACTIONS(6473), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7565), 2, + STATE(3132), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [246018] = 10, + [244900] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11755), 1, + ACTIONS(11279), 1, anon_sym_LPAREN2, - ACTIONS(11763), 1, + ACTIONS(11434), 1, + anon_sym_DOT, + ACTIONS(12726), 1, aux_sym__immediate_decimal_token4, - ACTIONS(11765), 1, + ACTIONS(12886), 1, anon_sym_DOLLAR, - ACTIONS(12503), 1, - anon_sym_DOT, - STATE(6921), 1, + STATE(7235), 1, + sym_comment, + STATE(7390), 1, sym__var, - STATE(7181), 1, + STATE(7931), 1, sym__immediate_decimal, - STATE(7695), 1, - sym_comment, - ACTIONS(11771), 2, + ACTIONS(11381), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7194), 2, + STATE(7927), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [246051] = 10, + [244933] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(7236), 1, + sym_comment, + ACTIONS(2229), 5, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(2231), 5, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [244954] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11753), 1, - anon_sym_DOLLAR, - ACTIONS(11755), 1, + ACTIONS(12888), 1, + aux_sym__immediate_decimal_token2, + STATE(7237), 1, + sym_comment, + ACTIONS(911), 3, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token5, + ACTIONS(913), 6, + anon_sym_in, anon_sym_LPAREN2, - ACTIONS(11763), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12503), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [244977] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11217), 1, + anon_sym_LPAREN2, + ACTIONS(11353), 1, anon_sym_DOT, - STATE(7151), 1, + ACTIONS(12330), 1, + anon_sym_DOLLAR, + ACTIONS(12724), 1, + aux_sym__immediate_decimal_token4, + STATE(4713), 1, sym__var, - STATE(7184), 1, - sym__immediate_decimal, - STATE(7696), 1, + STATE(7238), 1, sym_comment, - ACTIONS(11761), 2, + STATE(8038), 1, + sym__immediate_decimal, + ACTIONS(11355), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7556), 2, + STATE(7888), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [246084] = 10, + [245010] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11795), 1, + ACTIONS(7149), 1, anon_sym_LPAREN2, - ACTIONS(11949), 1, - anon_sym_DOT, - ACTIONS(12622), 1, + ACTIONS(12890), 1, anon_sym_DOLLAR, - ACTIONS(13296), 1, + ACTIONS(12892), 1, + anon_sym_DOT, + ACTIONS(12896), 1, aux_sym__immediate_decimal_token4, - STATE(7697), 1, - sym_comment, - STATE(8434), 1, + STATE(3426), 1, sym__var, - STATE(8583), 1, + STATE(3462), 1, sym__immediate_decimal, - ACTIONS(11951), 2, + STATE(7239), 1, + sym_comment, + ACTIONS(12894), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(8582), 2, + STATE(3636), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [246117] = 10, + [245043] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12033), 1, + ACTIONS(2157), 1, anon_sym_LPAREN2, - ACTIONS(12636), 1, + ACTIONS(12782), 1, + anon_sym_DOLLAR, + ACTIONS(12898), 1, anon_sym_DOT, - ACTIONS(12640), 1, + ACTIONS(12902), 1, aux_sym__immediate_decimal_token4, - STATE(7698), 1, - sym_comment, - STATE(9691), 1, - sym__immediate_decimal, - STATE(10119), 1, + STATE(1191), 1, sym__var, - ACTIONS(12638), 2, + STATE(2084), 1, + sym__immediate_decimal, + STATE(7240), 1, + sym_comment, + ACTIONS(12900), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7565), 2, + STATE(2083), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [246150] = 10, + [245076] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11755), 1, - anon_sym_LPAREN2, - ACTIONS(12237), 1, + ACTIONS(5725), 1, anon_sym_DOLLAR, - ACTIONS(12677), 1, + ACTIONS(11537), 1, + anon_sym_LPAREN2, + ACTIONS(12054), 1, anon_sym_DOT, - ACTIONS(12683), 1, + ACTIONS(12058), 1, aux_sym__immediate_decimal_token4, - STATE(7699), 1, + STATE(7241), 1, sym_comment, - STATE(8321), 1, + STATE(9648), 1, sym__var, - STATE(9692), 1, + STATE(9777), 1, sym__immediate_decimal, - ACTIONS(12681), 2, + ACTIONS(12056), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7607), 2, + STATE(7200), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [246183] = 4, + [245109] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(7700), 1, + STATE(7242), 1, sym_comment, - ACTIONS(2437), 4, - anon_sym_DASH, + ACTIONS(901), 3, anon_sym_DOT_DOT2, anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(2439), 6, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [246204] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13384), 1, - anon_sym_DOT, - ACTIONS(13387), 1, - aux_sym__immediate_decimal_token2, - STATE(7701), 1, - sym_comment, - ACTIONS(923), 2, - anon_sym_DOT_DOT2, aux_sym_unquoted_token5, - ACTIONS(925), 6, + ACTIONS(903), 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, - [246229] = 10, + [245130] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11775), 1, + ACTIONS(11217), 1, anon_sym_LPAREN2, - ACTIONS(11905), 1, + ACTIONS(11353), 1, anon_sym_DOT, - ACTIONS(12695), 1, + ACTIONS(12200), 1, anon_sym_DOLLAR, - ACTIONS(13389), 1, + ACTIONS(12724), 1, aux_sym__immediate_decimal_token4, - STATE(5184), 1, - sym__var, - STATE(7702), 1, + STATE(7243), 1, sym_comment, - STATE(8736), 1, + STATE(7637), 1, + sym__var, + STATE(7935), 1, sym__immediate_decimal, - ACTIONS(11907), 2, + ACTIONS(11355), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(8723), 2, + STATE(7933), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [246262] = 10, - ACTIONS(3), 1, + [245163] = 7, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7820), 1, - anon_sym_DOLLAR, - ACTIONS(7822), 1, - anon_sym_LPAREN2, - ACTIONS(7830), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(13391), 1, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(3576), 1, + anon_sym_LF, + ACTIONS(12513), 1, anon_sym_DOT, - STATE(4036), 1, - sym__var, - STATE(4636), 1, - sym__immediate_decimal, - STATE(7703), 1, - sym_comment, - ACTIONS(7828), 2, + ACTIONS(12515), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4568), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [246295] = 7, + STATE(7244), 1, + sym_comment, + ACTIONS(3574), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [245190] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2845), 1, + STATE(7245), 1, + sym_comment, + ACTIONS(2364), 3, anon_sym_LF, - ACTIONS(2847), 1, anon_sym_LPAREN2, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(13169), 1, anon_sym_DOT, - STATE(7704), 1, - sym_comment, - ACTIONS(2843), 6, + ACTIONS(2362), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [246322] = 4, + aux_sym_unquoted_token2, + [245211] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6347), 1, + ACTIONS(5027), 1, anon_sym_DASH, - STATE(7705), 1, + STATE(7246), 1, sym_comment, - ACTIONS(6349), 9, - anon_sym_EQ, + ACTIONS(5029), 9, sym_identifier, + anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, @@ -560118,1423 +518705,1610 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [246343] = 10, + [245232] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12033), 1, + ACTIONS(11217), 1, anon_sym_LPAREN2, - ACTIONS(12127), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12162), 1, - anon_sym_DOLLAR, - ACTIONS(12348), 1, + ACTIONS(11353), 1, anon_sym_DOT, - STATE(7184), 1, - sym__immediate_decimal, - STATE(7706), 1, - sym_comment, - STATE(9422), 1, - sym__var, - ACTIONS(12350), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7645), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [246376] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8066), 1, - anon_sym_LPAREN2, - ACTIONS(12366), 1, + ACTIONS(12330), 1, anon_sym_DOLLAR, - ACTIONS(13393), 1, - anon_sym_DOT, - ACTIONS(13397), 1, + ACTIONS(12724), 1, aux_sym__immediate_decimal_token4, - STATE(4715), 1, + STATE(4713), 1, sym__var, - STATE(4809), 1, - sym__immediate_decimal, - STATE(7707), 1, + STATE(7247), 1, sym_comment, - ACTIONS(13395), 2, + STATE(8025), 1, + sym__immediate_decimal, + ACTIONS(11355), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(5428), 2, + STATE(7936), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [246409] = 10, + [245265] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12033), 1, - anon_sym_LPAREN2, - ACTIONS(12191), 1, + ACTIONS(12904), 1, + anon_sym_QMARK2, + STATE(7248), 1, + sym_comment, + ACTIONS(1024), 2, + anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(12195), 1, - aux_sym__immediate_decimal_token4, - STATE(7440), 1, - sym__var, - STATE(7708), 1, + ACTIONS(1026), 7, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [245288] = 9, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(2671), 1, + anon_sym_DASH, + ACTIONS(5763), 1, + anon_sym_DASH_DASH, + STATE(7249), 1, sym_comment, - STATE(8746), 1, - sym__immediate_decimal, - ACTIONS(12193), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7565), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [246442] = 10, + STATE(7357), 1, + sym__flag, + STATE(8239), 1, + sym_long_flag_equals_value, + ACTIONS(12541), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(12543), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(8315), 2, + sym_short_flag, + sym_long_flag, + [245319] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1593), 1, + ACTIONS(12906), 1, anon_sym_DOT, - ACTIONS(1611), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12033), 1, - anon_sym_LPAREN2, - STATE(7440), 1, - sym__var, - STATE(7709), 1, + ACTIONS(12909), 1, + aux_sym__immediate_decimal_token2, + STATE(7250), 1, sym_comment, - STATE(10366), 1, - sym__immediate_decimal, - ACTIONS(1609), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7565), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [246475] = 10, + ACTIONS(911), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token5, + ACTIONS(913), 6, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [245344] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11863), 1, - anon_sym_LPAREN2, - ACTIONS(11957), 1, + ACTIONS(12904), 1, + anon_sym_QMARK2, + STATE(7251), 1, + sym_comment, + ACTIONS(1024), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1026), 7, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [245367] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5725), 1, anon_sym_DOLLAR, - ACTIONS(12076), 1, + ACTIONS(11537), 1, + anon_sym_LPAREN2, + ACTIONS(11543), 1, aux_sym__immediate_decimal_token4, - ACTIONS(12078), 1, + ACTIONS(11876), 1, anon_sym_DOT, - STATE(7710), 1, - sym_comment, - STATE(8075), 1, + STATE(7000), 1, sym__var, - STATE(9182), 1, + STATE(7183), 1, sym__immediate_decimal, - ACTIONS(12082), 2, + STATE(7252), 1, + sym_comment, + ACTIONS(11878), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(9101), 2, + STATE(7109), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [246508] = 10, + [245400] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(3356), 1, + anon_sym_LF, + ACTIONS(12911), 1, + anon_sym_DOT_DOT2, + STATE(7253), 1, + sym_comment, + ACTIONS(3362), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(12913), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3354), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [245427] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6095), 1, - anon_sym_DOLLAR, - ACTIONS(6944), 1, + ACTIONS(7149), 1, anon_sym_LPAREN2, - ACTIONS(6946), 1, + ACTIONS(12890), 1, + anon_sym_DOLLAR, + ACTIONS(12915), 1, anon_sym_DOT, - ACTIONS(6952), 1, + ACTIONS(12919), 1, aux_sym__immediate_decimal_token4, - STATE(3214), 1, + STATE(3426), 1, sym__var, - STATE(3582), 1, + STATE(3437), 1, sym__immediate_decimal, - STATE(7711), 1, + STATE(7254), 1, sym_comment, - ACTIONS(6950), 2, + ACTIONS(12917), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3568), 2, + STATE(3636), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [246541] = 10, + [245460] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6253), 1, - anon_sym_DOLLAR, - ACTIONS(12033), 1, - anon_sym_LPAREN2, - ACTIONS(12902), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(13399), 1, - anon_sym_DOT, - STATE(7403), 1, - sym__var, - STATE(7712), 1, + ACTIONS(12614), 1, + aux_sym__immediate_decimal_token2, + STATE(7255), 1, sym_comment, - STATE(9232), 1, - sym__immediate_decimal, - ACTIONS(12900), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(9254), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [246574] = 10, + ACTIONS(893), 3, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token5, + ACTIONS(895), 6, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [245483] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6247), 1, + ACTIONS(7215), 1, anon_sym_DOLLAR, - ACTIONS(7619), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12033), 1, + ACTIONS(7217), 1, anon_sym_LPAREN2, - ACTIONS(12904), 1, + ACTIONS(7245), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(12921), 1, anon_sym_DOT, - STATE(7184), 1, - sym__immediate_decimal, - STATE(7440), 1, + STATE(3494), 1, sym__var, - STATE(7713), 1, + STATE(3592), 1, + sym__immediate_decimal, + STATE(7256), 1, sym_comment, - ACTIONS(12906), 2, + ACTIONS(7243), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7645), 2, + STATE(3920), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [246607] = 10, - ACTIONS(3), 1, + [245516] = 9, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7647), 1, + ACTIONS(2671), 1, + anon_sym_DASH, + ACTIONS(5763), 1, + anon_sym_DASH_DASH, + STATE(7257), 1, + sym_comment, + STATE(7410), 1, + sym__flag, + STATE(8239), 1, + sym_long_flag_equals_value, + ACTIONS(4871), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4873), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(8315), 2, + sym_short_flag, + sym_long_flag, + [245547] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(7258), 1, + sym_comment, + ACTIONS(934), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token5, + ACTIONS(936), 6, anon_sym_LPAREN2, - ACTIONS(13401), 1, - anon_sym_DOLLAR, - ACTIONS(13403), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [245568] = 8, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(3316), 1, + anon_sym_LPAREN2, + ACTIONS(12923), 1, + anon_sym_DOT_DOT2, + STATE(7259), 1, + sym_comment, + ACTIONS(1844), 2, anon_sym_DOT, - ACTIONS(13407), 1, - aux_sym__immediate_decimal_token4, - STATE(3850), 1, - sym__immediate_decimal, - STATE(3868), 1, - sym__var, - STATE(7714), 1, + aux_sym_unquoted_token2, + ACTIONS(3312), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3314), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(12925), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [245597] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(12927), 1, + anon_sym_DOT_DOT2, + STATE(7260), 1, + sym_comment, + ACTIONS(1844), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(3314), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(12929), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3312), 3, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, + [245624] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12931), 1, + anon_sym_DOT, + ACTIONS(12933), 1, + aux_sym__immediate_decimal_token2, + STATE(7261), 1, sym_comment, - ACTIONS(13405), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4068), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [246640] = 10, + ACTIONS(2356), 2, + sym_cmd_identifier, + anon_sym_DOT_DOT2, + ACTIONS(2358), 6, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [245649] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12033), 1, + ACTIONS(11249), 1, anon_sym_LPAREN2, - ACTIONS(12636), 1, + ACTIONS(11297), 1, anon_sym_DOT, - ACTIONS(12640), 1, + ACTIONS(12076), 1, + anon_sym_DOLLAR, + ACTIONS(12935), 1, aux_sym__immediate_decimal_token4, - STATE(7715), 1, - sym_comment, - STATE(10119), 1, + STATE(4669), 1, sym__var, - STATE(10287), 1, + STATE(7262), 1, + sym_comment, + STATE(7519), 1, sym__immediate_decimal, - ACTIONS(12638), 2, + ACTIONS(11299), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7565), 2, + STATE(8329), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [246673] = 5, + [245682] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13240), 1, - aux_sym__immediate_decimal_token2, - STATE(7716), 1, + STATE(7263), 1, sym_comment, - ACTIONS(2439), 4, - ts_builtin_sym_end, + ACTIONS(2404), 3, anon_sym_LF, anon_sym_LPAREN2, anon_sym_DOT, - ACTIONS(2437), 5, + ACTIONS(2402), 7, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_RBRACE, aux_sym_unquoted_token2, - [246696] = 10, - ACTIONS(3), 1, + [245703] = 9, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(11755), 1, - anon_sym_LPAREN2, - ACTIONS(11763), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12237), 1, - anon_sym_DOLLAR, - ACTIONS(12503), 1, - anon_sym_DOT, - STATE(7605), 1, - sym__immediate_decimal, - STATE(7717), 1, + ACTIONS(2414), 1, + anon_sym_DASH, + ACTIONS(12780), 1, + anon_sym_DASH_DASH, + STATE(4865), 1, + sym_long_flag_equals_value, + STATE(7264), 1, sym_comment, - STATE(8321), 1, - sym__var, - ACTIONS(12507), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7603), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [246729] = 10, + STATE(9236), 1, + sym__flag, + ACTIONS(12549), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(12551), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(4939), 2, + sym_short_flag, + sym_long_flag, + [245734] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6782), 1, + ACTIONS(11365), 1, anon_sym_LPAREN2, - ACTIONS(6784), 1, + ACTIONS(11413), 1, anon_sym_DOT, - ACTIONS(13409), 1, + ACTIONS(12354), 1, anon_sym_DOLLAR, - ACTIONS(13413), 1, + ACTIONS(12798), 1, aux_sym__immediate_decimal_token4, - STATE(3368), 1, + STATE(5006), 1, sym__var, - STATE(3551), 1, - sym__immediate_decimal, - STATE(7718), 1, + STATE(7265), 1, sym_comment, - ACTIONS(13411), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3529), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [246762] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7840), 1, - anon_sym_DOLLAR, - ACTIONS(7842), 1, - anon_sym_LPAREN2, - ACTIONS(7850), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(13415), 1, - anon_sym_DOT, - STATE(3783), 1, - sym__var, - STATE(4025), 1, + STATE(7949), 1, sym__immediate_decimal, - STATE(7719), 1, - sym_comment, - ACTIONS(7848), 2, + ACTIONS(11415), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4059), 2, + STATE(8567), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [246795] = 10, + [245767] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7820), 1, - anon_sym_DOLLAR, - ACTIONS(7822), 1, - anon_sym_LPAREN2, - ACTIONS(7830), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(13391), 1, - anon_sym_DOT, - STATE(4036), 1, - sym__var, - STATE(4602), 1, - sym__immediate_decimal, - STATE(7720), 1, - sym_comment, - ACTIONS(7828), 2, + ACTIONS(12937), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4524), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [246828] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11755), 1, - anon_sym_LPAREN2, - ACTIONS(12237), 1, - anon_sym_DOLLAR, - ACTIONS(12239), 1, - anon_sym_DOT, - ACTIONS(12245), 1, - aux_sym__immediate_decimal_token4, - STATE(7721), 1, + ACTIONS(12939), 1, + aux_sym__immediate_decimal_token2, + STATE(7266), 1, sym_comment, - STATE(8321), 1, - sym__var, - STATE(8699), 1, - sym__immediate_decimal, - ACTIONS(12243), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7607), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [246861] = 10, + ACTIONS(2229), 2, + sym_cmd_identifier, + anon_sym_DOT_DOT2, + ACTIONS(2231), 6, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [245792] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8066), 1, + ACTIONS(3354), 1, + anon_sym_DASH, + ACTIONS(3358), 1, anon_sym_LPAREN2, - ACTIONS(12366), 1, - anon_sym_DOLLAR, - ACTIONS(13417), 1, - anon_sym_DOT, - ACTIONS(13421), 1, - aux_sym__immediate_decimal_token4, - STATE(4715), 1, - sym__var, - STATE(4857), 1, - sym__immediate_decimal, - STATE(7722), 1, + ACTIONS(12941), 1, + anon_sym_DOT_DOT2, + STATE(7267), 1, sym_comment, - ACTIONS(13419), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5428), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [246894] = 6, + ACTIONS(3362), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(12943), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3356), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [245821] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13254), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(13423), 1, + ACTIONS(12945), 1, anon_sym_DOT, - STATE(7723), 1, + ACTIONS(12948), 1, + aux_sym__immediate_decimal_token2, + STATE(7268), 1, sym_comment, - ACTIONS(2583), 2, + ACTIONS(2358), 2, anon_sym_LPAREN2, aux_sym_command_token1, - ACTIONS(2581), 6, + ACTIONS(2356), 6, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_LF2, + anon_sym_RBRACE, aux_sym_unquoted_token2, - [246919] = 10, - ACTIONS(3), 1, + [245846] = 8, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7701), 1, - anon_sym_DOLLAR, - ACTIONS(7703), 1, + ACTIONS(3358), 1, anon_sym_LPAREN2, - ACTIONS(7798), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(13426), 1, + ACTIONS(12950), 1, + anon_sym_DOT_DOT2, + STATE(7269), 1, + sym_comment, + ACTIONS(3354), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3356), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3362), 2, anon_sym_DOT, - STATE(3932), 1, - sym__var, - STATE(4402), 1, - sym__immediate_decimal, - STATE(7724), 1, + aux_sym_unquoted_token2, + ACTIONS(12952), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [245875] = 9, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(2671), 1, + anon_sym_DASH, + ACTIONS(5763), 1, + anon_sym_DASH_DASH, + STATE(7270), 1, sym_comment, - ACTIONS(7796), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4401), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [246952] = 10, + STATE(7298), 1, + sym__flag, + STATE(8239), 1, + sym_long_flag_equals_value, + ACTIONS(12549), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(12551), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(8315), 2, + sym_short_flag, + sym_long_flag, + [245906] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6932), 1, - anon_sym_DOLLAR, - ACTIONS(6934), 1, - anon_sym_LPAREN2, - ACTIONS(6942), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(13428), 1, - anon_sym_DOT, - STATE(3150), 1, - sym__var, - STATE(3449), 1, - sym__immediate_decimal, - STATE(7725), 1, + ACTIONS(12574), 1, + aux_sym__immediate_decimal_token2, + STATE(7271), 1, sym_comment, - ACTIONS(6940), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3430), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [246985] = 10, + ACTIONS(893), 3, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token5, + ACTIONS(895), 6, + anon_sym_in, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [245929] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6095), 1, - anon_sym_DOLLAR, - ACTIONS(6944), 1, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(6946), 1, - anon_sym_DOT, - ACTIONS(6952), 1, + ACTIONS(11576), 1, aux_sym__immediate_decimal_token4, - STATE(3214), 1, - sym__var, - STATE(3578), 1, + ACTIONS(11650), 1, + anon_sym_DOLLAR, + ACTIONS(11968), 1, + anon_sym_DOT, + STATE(6684), 1, sym__immediate_decimal, - STATE(7726), 1, + STATE(7272), 1, sym_comment, - ACTIONS(6950), 2, + STATE(8975), 1, + sym__var, + ACTIONS(11970), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3556), 2, + STATE(7200), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [247018] = 10, + [245962] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7995), 1, - anon_sym_LPAREN2, - ACTIONS(12179), 1, - anon_sym_DOLLAR, - ACTIONS(13430), 1, - anon_sym_DOT, - ACTIONS(13434), 1, - aux_sym__immediate_decimal_token4, - STATE(4551), 1, - sym__immediate_decimal, - STATE(4616), 1, - sym__var, - STATE(7727), 1, + STATE(7273), 1, sym_comment, - ACTIONS(13432), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5221), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [247051] = 10, + ACTIONS(1033), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1035), 8, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [245983] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11755), 1, + ACTIONS(11229), 1, anon_sym_LPAREN2, - ACTIONS(12237), 1, + ACTIONS(11237), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11239), 1, anon_sym_DOLLAR, - ACTIONS(12239), 1, + ACTIONS(11892), 1, anon_sym_DOT, - ACTIONS(12245), 1, - aux_sym__immediate_decimal_token4, - STATE(7728), 1, - sym_comment, - STATE(8321), 1, + STATE(6778), 1, sym__var, - STATE(8875), 1, + STATE(7190), 1, sym__immediate_decimal, - ACTIONS(12243), 2, + STATE(7274), 1, + sym_comment, + ACTIONS(11245), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7607), 2, + STATE(7315), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [247084] = 4, + [246016] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(7729), 1, + STATE(7275), 1, sym_comment, - ACTIONS(950), 4, - anon_sym_RBRACK, + ACTIONS(2362), 5, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_DOT_DOT2, anon_sym_DOT, - aux_sym_unquoted_token5, - ACTIONS(952), 6, + aux_sym_unquoted_token2, + ACTIONS(2364), 5, + ts_builtin_sym_end, + anon_sym_LF, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [247105] = 10, + [246037] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(7276), 1, + sym_comment, + ACTIONS(2402), 5, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(2404), 5, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [246058] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11753), 1, - anon_sym_DOLLAR, - ACTIONS(11755), 1, + ACTIONS(6322), 1, anon_sym_LPAREN2, - ACTIONS(11763), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12503), 1, + ACTIONS(11916), 1, anon_sym_DOT, - STATE(7151), 1, + ACTIONS(12954), 1, + anon_sym_DOLLAR, + ACTIONS(12956), 1, + aux_sym__immediate_decimal_token4, + STATE(4556), 1, sym__var, - STATE(7605), 1, - sym__immediate_decimal, - STATE(7730), 1, + STATE(7277), 1, sym_comment, - ACTIONS(11761), 2, + STATE(8925), 1, + sym__immediate_decimal, + ACTIONS(11912), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7603), 2, + STATE(8279), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [247138] = 10, + [246091] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6772), 1, + ACTIONS(3354), 1, + sym_cmd_identifier, + ACTIONS(12958), 1, + anon_sym_DOT_DOT2, + STATE(7278), 1, + sym_comment, + ACTIONS(3362), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(12960), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3356), 4, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [246118] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6322), 1, anon_sym_LPAREN2, - ACTIONS(13436), 1, + ACTIONS(12962), 1, anon_sym_DOLLAR, - ACTIONS(13438), 1, + ACTIONS(12964), 1, anon_sym_DOT, - ACTIONS(13442), 1, + ACTIONS(12968), 1, aux_sym__immediate_decimal_token4, - STATE(3143), 1, + STATE(2717), 1, sym__var, - STATE(3394), 1, + STATE(2972), 1, sym__immediate_decimal, - STATE(7731), 1, + STATE(7279), 1, sym_comment, - ACTIONS(13440), 2, + ACTIONS(12966), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3393), 2, + STATE(2971), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [247171] = 10, + [246151] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6782), 1, + ACTIONS(7483), 1, anon_sym_LPAREN2, - ACTIONS(6784), 1, - anon_sym_DOT, - ACTIONS(13409), 1, + ACTIONS(11658), 1, anon_sym_DOLLAR, - ACTIONS(13413), 1, + ACTIONS(12970), 1, + anon_sym_DOT, + ACTIONS(12974), 1, aux_sym__immediate_decimal_token4, - STATE(3368), 1, + STATE(4162), 1, sym__var, - STATE(3543), 1, + STATE(4664), 1, sym__immediate_decimal, - STATE(7732), 1, + STATE(7280), 1, sym_comment, - ACTIONS(13411), 2, + ACTIONS(12972), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3525), 2, + STATE(4660), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [247204] = 10, + [246184] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8863), 1, + ACTIONS(6322), 1, anon_sym_LPAREN2, - ACTIONS(8871), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(13444), 1, - anon_sym_DOLLAR, - ACTIONS(13446), 1, + ACTIONS(11916), 1, anon_sym_DOT, - STATE(5739), 1, + ACTIONS(12068), 1, + anon_sym_DOLLAR, + ACTIONS(12956), 1, + aux_sym__immediate_decimal_token4, + STATE(3099), 1, sym__immediate_decimal, - STATE(5760), 1, + STATE(5406), 1, sym__var, - STATE(7733), 1, + STATE(7281), 1, sym_comment, - ACTIONS(8869), 2, + ACTIONS(11918), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(6604), 2, + STATE(3698), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [247237] = 10, + [246217] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(12642), 1, + aux_sym__immediate_decimal_token2, + STATE(7282), 1, + sym_comment, + ACTIONS(2231), 3, + anon_sym_LPAREN2, + anon_sym_DOT, + aux_sym_command_token1, + ACTIONS(2229), 6, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_LF2, + aux_sym_unquoted_token2, + [246240] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7995), 1, + ACTIONS(6332), 1, anon_sym_LPAREN2, - ACTIONS(12179), 1, - anon_sym_DOLLAR, - ACTIONS(13448), 1, + ACTIONS(6334), 1, anon_sym_DOT, - ACTIONS(13452), 1, + ACTIONS(12809), 1, + anon_sym_DOLLAR, + ACTIONS(12813), 1, aux_sym__immediate_decimal_token4, - STATE(4616), 1, + STATE(2939), 1, sym__var, - STATE(4732), 1, + STATE(3099), 1, sym__immediate_decimal, - STATE(7734), 1, + STATE(7283), 1, sym_comment, - ACTIONS(13450), 2, + ACTIONS(12811), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(5221), 2, + STATE(3096), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [247270] = 4, - ACTIONS(3), 1, + [246273] = 9, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5215), 1, + ACTIONS(2671), 1, anon_sym_DASH, - STATE(7735), 1, + ACTIONS(5763), 1, + anon_sym_DASH_DASH, + STATE(7117), 1, + sym__flag, + STATE(7284), 1, sym_comment, - ACTIONS(5217), 9, - anon_sym_COMMA, + STATE(8239), 1, + sym_long_flag_equals_value, + ACTIONS(4871), 2, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [247291] = 4, + ACTIONS(4873), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(8315), 2, + sym_short_flag, + sym_long_flag, + [246304] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5219), 1, - anon_sym_DASH, - STATE(7736), 1, + STATE(7285), 1, sym_comment, - ACTIONS(5221), 9, + ACTIONS(9333), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_DASH_GT, anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, + anon_sym_GT, + anon_sym_AT, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [247312] = 4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [246323] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5223), 1, - anon_sym_DASH, - STATE(7737), 1, + STATE(7286), 1, sym_comment, - ACTIONS(5225), 9, - anon_sym_COMMA, - anon_sym_PIPE, + ACTIONS(893), 3, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token5, + ACTIONS(895), 7, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [247333] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(13454), 1, - aux_sym__immediate_decimal_token2, - STATE(7738), 1, - sym_comment, - ACTIONS(2549), 4, - ts_builtin_sym_end, - anon_sym_LF, anon_sym_LPAREN2, - anon_sym_DOT, - ACTIONS(2547), 5, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - aux_sym_unquoted_token2, - [247356] = 10, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [246344] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12033), 1, + ACTIONS(11229), 1, anon_sym_LPAREN2, - ACTIONS(12473), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(13159), 1, + ACTIONS(11670), 1, + anon_sym_DOLLAR, + ACTIONS(11672), 1, anon_sym_DOT, - STATE(7564), 1, - sym__immediate_decimal, - STATE(7739), 1, + ACTIONS(11678), 1, + aux_sym__immediate_decimal_token4, + STATE(7287), 1, sym_comment, - STATE(10119), 1, + STATE(7915), 1, sym__var, - ACTIONS(13161), 2, + STATE(8350), 1, + sym__immediate_decimal, + ACTIONS(11676), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7563), 2, + STATE(7314), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [247389] = 7, - ACTIONS(113), 1, + [246377] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - ACTIONS(3876), 1, - anon_sym_LF, - ACTIONS(3878), 1, - anon_sym_LPAREN2, - ACTIONS(13456), 1, - anon_sym_DOT, - STATE(7740), 1, + ACTIONS(5001), 1, + anon_sym_DASH, + STATE(7288), 1, sym_comment, - ACTIONS(3874), 6, - anon_sym_SEMI, + ACTIONS(5003), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [247416] = 10, + [246398] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11795), 1, + ACTIONS(7592), 1, anon_sym_LPAREN2, - ACTIONS(11833), 1, - anon_sym_DOT, - ACTIONS(12920), 1, + ACTIONS(11848), 1, anon_sym_DOLLAR, - ACTIONS(13458), 1, + ACTIONS(12976), 1, + anon_sym_DOT, + ACTIONS(12980), 1, aux_sym__immediate_decimal_token4, - STATE(5293), 1, + STATE(4298), 1, sym__var, - STATE(7741), 1, - sym_comment, - STATE(8001), 1, + STATE(4433), 1, sym__immediate_decimal, - ACTIONS(11835), 2, + STATE(7289), 1, + sym_comment, + ACTIONS(12978), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(8582), 2, + STATE(4959), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [247449] = 10, + [246431] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8863), 1, + ACTIONS(6322), 1, anon_sym_LPAREN2, - ACTIONS(8928), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(13444), 1, - anon_sym_DOLLAR, - ACTIONS(13460), 1, + ACTIONS(11916), 1, anon_sym_DOT, - STATE(5760), 1, - sym__var, - STATE(6021), 1, + ACTIONS(12068), 1, + anon_sym_DOLLAR, + ACTIONS(12956), 1, + aux_sym__immediate_decimal_token4, + STATE(3633), 1, sym__immediate_decimal, - STATE(7742), 1, + STATE(5406), 1, + sym__var, + STATE(7290), 1, sym_comment, - ACTIONS(8926), 2, + ACTIONS(11918), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(6604), 2, + STATE(3617), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [247482] = 4, - ACTIONS(3), 1, + [246464] = 7, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5227), 1, - anon_sym_DASH, - STATE(7743), 1, + ACTIONS(12982), 1, + anon_sym_DOT_DOT2, + STATE(7291), 1, sym_comment, - ACTIONS(5229), 9, - anon_sym_COMMA, + ACTIONS(3356), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(3362), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(12984), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3354), 3, + anon_sym_SEMI, + anon_sym_LF, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [247503] = 4, + [246491] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5231), 1, - anon_sym_DASH, - STATE(7744), 1, - sym_comment, - ACTIONS(5233), 9, - anon_sym_COMMA, - anon_sym_PIPE, + ACTIONS(11229), 1, + anon_sym_LPAREN2, + ACTIONS(11670), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [247524] = 10, + ACTIONS(12088), 1, + anon_sym_DOT, + ACTIONS(12094), 1, + aux_sym__immediate_decimal_token4, + STATE(7292), 1, + sym_comment, + STATE(7915), 1, + sym__var, + STATE(8706), 1, + sym__immediate_decimal, + ACTIONS(12092), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7314), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [246524] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8066), 1, + ACTIONS(1868), 1, anon_sym_LPAREN2, - ACTIONS(12366), 1, + ACTIONS(12728), 1, anon_sym_DOLLAR, - ACTIONS(13462), 1, + ACTIONS(12986), 1, anon_sym_DOT, - ACTIONS(13466), 1, + ACTIONS(12990), 1, aux_sym__immediate_decimal_token4, - STATE(4715), 1, + STATE(1105), 1, sym__var, - STATE(5426), 1, + STATE(1539), 1, sym__immediate_decimal, - STATE(7745), 1, + STATE(7293), 1, sym_comment, - ACTIONS(13464), 2, + ACTIONS(12988), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(5425), 2, + STATE(1538), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [247557] = 10, + [246557] = 9, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(2414), 1, + anon_sym_DASH, + ACTIONS(12780), 1, + anon_sym_DASH_DASH, + STATE(4865), 1, + sym_long_flag_equals_value, + STATE(7294), 1, + sym_comment, + STATE(9150), 1, + sym__flag, + ACTIONS(4871), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4873), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(4939), 2, + sym_short_flag, + sym_long_flag, + [246588] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2369), 1, + ACTIONS(11267), 1, anon_sym_LPAREN2, - ACTIONS(13468), 1, - anon_sym_DOLLAR, - ACTIONS(13470), 1, + ACTIONS(11325), 1, anon_sym_DOT, - ACTIONS(13474), 1, + ACTIONS(12393), 1, + anon_sym_DOLLAR, + ACTIONS(12992), 1, aux_sym__immediate_decimal_token4, - STATE(1451), 1, - sym__immediate_decimal, - STATE(1498), 1, + STATE(4575), 1, sym__var, - STATE(7746), 1, + STATE(7295), 1, sym_comment, - ACTIONS(13472), 2, + STATE(7703), 1, + sym__immediate_decimal, + ACTIONS(11327), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2476), 2, + STATE(8186), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [247590] = 10, + [246621] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11795), 1, + ACTIONS(11217), 1, anon_sym_LPAREN2, - ACTIONS(11833), 1, + ACTIONS(11353), 1, anon_sym_DOT, - ACTIONS(12920), 1, + ACTIONS(12200), 1, anon_sym_DOLLAR, - ACTIONS(13458), 1, + ACTIONS(12724), 1, aux_sym__immediate_decimal_token4, - STATE(5293), 1, - sym__var, - STATE(7747), 1, + STATE(7296), 1, sym_comment, - STATE(8157), 1, + STATE(7637), 1, + sym__var, + STATE(8025), 1, sym__immediate_decimal, - ACTIONS(11835), 2, + ACTIONS(11355), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(8582), 2, + STATE(7936), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [247623] = 4, + [246654] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5235), 1, - anon_sym_DASH, - STATE(7748), 1, + ACTIONS(12638), 1, + aux_sym__immediate_decimal_token2, + STATE(7297), 1, sym_comment, - ACTIONS(5237), 9, - anon_sym_COMMA, + ACTIONS(893), 3, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token5, + ACTIONS(895), 6, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, - [247644] = 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [246677] = 9, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(2414), 1, + anon_sym_DASH, + ACTIONS(12780), 1, + anon_sym_DASH_DASH, + STATE(4865), 1, + sym_long_flag_equals_value, + STATE(7298), 1, + sym_comment, + STATE(9238), 1, + sym__flag, + ACTIONS(12418), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(12420), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(4939), 2, + sym_short_flag, + sym_long_flag, + [246708] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(12753), 1, + aux_sym__immediate_decimal_token2, + STATE(7299), 1, + sym_comment, + ACTIONS(911), 3, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token5, + ACTIONS(913), 6, anon_sym_LBRACE, - ACTIONS(2397), 1, anon_sym_LPAREN2, - ACTIONS(9820), 1, - aux_sym_unquoted_token5, - ACTIONS(9828), 1, - anon_sym_DOT, - ACTIONS(13476), 1, - anon_sym_DOT_DOT2, - ACTIONS(13480), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym_filesize_unit, - ACTIONS(13482), 1, sym_duration_unit, - STATE(7749), 1, + [246731] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12994), 1, + aux_sym__immediate_decimal_token2, + STATE(7300), 1, sym_comment, - STATE(10701), 1, - sym__expr_parenthesized_immediate, - ACTIONS(13478), 2, + ACTIONS(901), 3, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token5, + ACTIONS(903), 6, + anon_sym_in, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [247679] = 10, + sym_filesize_unit, + sym_duration_unit, + [246754] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7647), 1, - anon_sym_LPAREN2, - ACTIONS(13401), 1, + ACTIONS(5005), 1, + anon_sym_DASH, + STATE(7301), 1, + sym_comment, + ACTIONS(5007), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(13484), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [246775] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11365), 1, + anon_sym_LPAREN2, + ACTIONS(11497), 1, anon_sym_DOT, - ACTIONS(13488), 1, + ACTIONS(12354), 1, + anon_sym_DOLLAR, + ACTIONS(12996), 1, aux_sym__immediate_decimal_token4, - STATE(3868), 1, + STATE(5006), 1, sym__var, - STATE(4067), 1, - sym__immediate_decimal, - STATE(7750), 1, + STATE(7302), 1, sym_comment, - ACTIONS(13486), 2, + STATE(8562), 1, + sym__immediate_decimal, + ACTIONS(11499), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4066), 2, + STATE(8543), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [247712] = 10, + [246808] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11743), 1, - anon_sym_LPAREN2, - ACTIONS(11805), 1, - anon_sym_DOT, - ACTIONS(12578), 1, + ACTIONS(5725), 1, anon_sym_DOLLAR, - ACTIONS(13490), 1, + ACTIONS(11537), 1, + anon_sym_LPAREN2, + ACTIONS(11543), 1, aux_sym__immediate_decimal_token4, - STATE(5098), 1, - sym__var, - STATE(7740), 1, + ACTIONS(11876), 1, + anon_sym_DOT, + STATE(6684), 1, sym__immediate_decimal, - STATE(7751), 1, + STATE(7000), 1, + sym__var, + STATE(7303), 1, sym_comment, - ACTIONS(11807), 2, + ACTIONS(11878), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(8459), 2, + STATE(7200), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [247745] = 10, + [246841] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2369), 1, - anon_sym_LPAREN2, - ACTIONS(13468), 1, + ACTIONS(5725), 1, anon_sym_DOLLAR, - ACTIONS(13492), 1, - anon_sym_DOT, - ACTIONS(13496), 1, + ACTIONS(11537), 1, + anon_sym_LPAREN2, + ACTIONS(11992), 1, aux_sym__immediate_decimal_token4, - STATE(1498), 1, - sym__var, - STATE(1647), 1, + ACTIONS(12669), 1, + anon_sym_DOT, + STATE(7183), 1, sym__immediate_decimal, - STATE(7752), 1, + STATE(7304), 1, sym_comment, - ACTIONS(13494), 2, + STATE(9648), 1, + sym__var, + ACTIONS(12671), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2476), 2, + STATE(7109), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [247778] = 4, - ACTIONS(3), 1, + [246874] = 9, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5239), 1, + ACTIONS(2671), 1, anon_sym_DASH, - STATE(7753), 1, + ACTIONS(5763), 1, + anon_sym_DASH_DASH, + STATE(7146), 1, + sym__flag, + STATE(7305), 1, sym_comment, - ACTIONS(5241), 9, - anon_sym_COMMA, + STATE(8239), 1, + sym_long_flag_equals_value, + ACTIONS(4951), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4953), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(8315), 2, + sym_short_flag, + sym_long_flag, + [246905] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(12998), 1, + aux_sym__immediate_decimal_token2, + STATE(7306), 1, + sym_comment, + ACTIONS(2364), 4, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LPAREN2, + anon_sym_DOT, + ACTIONS(2362), 5, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [247799] = 6, - ACTIONS(3), 1, + anon_sym_DASH, + aux_sym_unquoted_token2, + [246928] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + ACTIONS(3727), 1, anon_sym_LPAREN2, - ACTIONS(4291), 1, + ACTIONS(13000), 1, + aux_sym_command_token1, + STATE(7307), 1, + sym_comment, + ACTIONS(3725), 7, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, anon_sym_DASH, - STATE(7754), 1, + anon_sym_RBRACE, + [246953] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(13002), 1, + aux_sym__immediate_decimal_token2, + STATE(7308), 1, sym_comment, - STATE(10703), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4293), 7, - sym_cmd_identifier, - anon_sym_DOLLAR, + ACTIONS(2364), 3, + anon_sym_LPAREN2, + anon_sym_DOT, + aux_sym_command_token1, + ACTIONS(2362), 6, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [246976] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(3646), 1, + anon_sym_LF, + ACTIONS(3648), 1, + anon_sym_LPAREN2, + ACTIONS(3650), 1, + aux_sym_unquoted_token2, + ACTIONS(13004), 1, + anon_sym_DOT, + STATE(7309), 1, + sym_comment, + ACTIONS(3644), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [247824] = 6, + anon_sym_DASH, + anon_sym_RBRACE, + [247003] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - ACTIONS(4529), 1, + ACTIONS(13008), 1, anon_sym_DASH, - STATE(7755), 1, + STATE(7310), 1, sym_comment, - STATE(11424), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4531), 7, - sym_cmd_identifier, + ACTIONS(13006), 9, + anon_sym_EQ, + sym_identifier, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [247849] = 10, + [247024] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(7619), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12033), 1, + ACTIONS(11309), 1, anon_sym_LPAREN2, - ACTIONS(12904), 1, + ACTIONS(11401), 1, + anon_sym_DOLLAR, + ACTIONS(11403), 1, anon_sym_DOT, - STATE(7440), 1, - sym__var, - STATE(7564), 1, - sym__immediate_decimal, - STATE(7756), 1, + ACTIONS(11409), 1, + aux_sym__immediate_decimal_token4, + STATE(7311), 1, sym_comment, - ACTIONS(12906), 2, + STATE(7604), 1, + sym__immediate_decimal, + STATE(7707), 1, + sym__var, + ACTIONS(11407), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7563), 2, + STATE(8509), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [247882] = 10, + [247057] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1926), 1, + ACTIONS(7483), 1, anon_sym_LPAREN2, - ACTIONS(13498), 1, + ACTIONS(11658), 1, anon_sym_DOLLAR, - ACTIONS(13500), 1, + ACTIONS(13010), 1, anon_sym_DOT, - ACTIONS(13504), 1, + ACTIONS(13014), 1, aux_sym__immediate_decimal_token4, - STATE(1365), 1, - sym__immediate_decimal, - STATE(1373), 1, + STATE(4162), 1, sym__var, - STATE(7757), 1, + STATE(4203), 1, + sym__immediate_decimal, + STATE(7312), 1, sym_comment, - ACTIONS(13502), 2, + ACTIONS(13012), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1780), 2, + STATE(4667), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [247915] = 10, + [247090] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11743), 1, + ACTIONS(11229), 1, anon_sym_LPAREN2, - ACTIONS(11805), 1, - anon_sym_DOT, - ACTIONS(12578), 1, + ACTIONS(11670), 1, anon_sym_DOLLAR, - ACTIONS(13490), 1, + ACTIONS(11672), 1, + anon_sym_DOT, + ACTIONS(11678), 1, aux_sym__immediate_decimal_token4, - STATE(5098), 1, - sym__var, - STATE(7758), 1, + STATE(7313), 1, sym_comment, - STATE(7925), 1, + STATE(7915), 1, + sym__var, + STATE(8448), 1, sym__immediate_decimal, - ACTIONS(11807), 2, + ACTIONS(11676), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(8459), 2, + STATE(7314), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [247948] = 6, + [247123] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - ACTIONS(4533), 1, + ACTIONS(4963), 1, anon_sym_DASH, - STATE(7759), 1, + STATE(7314), 1, sym_comment, - STATE(11424), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4535), 7, - sym_cmd_identifier, + ACTIONS(4965), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [247973] = 8, + [247144] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3518), 1, + ACTIONS(4955), 1, anon_sym_DASH, - ACTIONS(3522), 1, - anon_sym_LPAREN2, - ACTIONS(13506), 1, - anon_sym_DOT_DOT2, - STATE(7760), 1, + STATE(7315), 1, sym_comment, - ACTIONS(1934), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(13508), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3520), 3, + ACTIONS(4957), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [248002] = 10, + [247165] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7820), 1, - anon_sym_DOLLAR, - ACTIONS(7822), 1, - anon_sym_LPAREN2, - ACTIONS(7830), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(13391), 1, - anon_sym_DOT, - STATE(4036), 1, - sym__var, - STATE(4567), 1, - sym__immediate_decimal, - STATE(7761), 1, + STATE(7316), 1, sym_comment, - ACTIONS(7828), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4566), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [248035] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12033), 1, - anon_sym_LPAREN2, - ACTIONS(12606), 1, + ACTIONS(901), 3, + anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(12610), 1, - aux_sym__immediate_decimal_token4, - STATE(7440), 1, - sym__var, - STATE(7762), 1, - sym_comment, - STATE(8870), 1, - sym__immediate_decimal, - ACTIONS(12608), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7565), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [248068] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1926), 1, - anon_sym_LPAREN2, - ACTIONS(13498), 1, + aux_sym_unquoted_token5, + ACTIONS(903), 7, anon_sym_DOLLAR, - ACTIONS(13510), 1, - anon_sym_DOT, - ACTIONS(13514), 1, - aux_sym__immediate_decimal_token4, - STATE(1373), 1, - sym__var, - STATE(1443), 1, - sym__immediate_decimal, - STATE(7763), 1, - sym_comment, - ACTIONS(13512), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1780), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [248101] = 7, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [247186] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3518), 1, - sym_cmd_identifier, - ACTIONS(13516), 1, - anon_sym_DOT_DOT2, - STATE(7764), 1, + STATE(7317), 1, sym_comment, - ACTIONS(1934), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(13518), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3520), 4, - anon_sym_DASH_DASH, + ACTIONS(9538), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_AT, + anon_sym_LBRACE, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [248128] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(4008), 1, - anon_sym_LF, - ACTIONS(4010), 1, - anon_sym_LPAREN2, - ACTIONS(4012), 1, - aux_sym_unquoted_token2, - ACTIONS(13520), 1, - anon_sym_DOT, - STATE(7765), 1, - sym_comment, - ACTIONS(4006), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [248155] = 8, - ACTIONS(113), 1, + [247205] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2847), 1, - anon_sym_LPAREN2, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(3750), 1, - aux_sym_command_token1, - ACTIONS(13169), 1, + ACTIONS(12755), 1, anon_sym_DOT, - ACTIONS(13522), 1, - aux_sym__immediate_decimal_token1, - STATE(7766), 1, + STATE(7318), 1, sym_comment, - ACTIONS(3748), 5, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [248184] = 10, + STATE(7350), 1, + aux_sym_cell_path_repeat1, + STATE(7743), 1, + sym_path, + ACTIONS(1006), 2, + anon_sym_DASH, + anon_sym_DOT_DOT2, + ACTIONS(1008), 5, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [247232] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7995), 1, + ACTIONS(11279), 1, anon_sym_LPAREN2, - ACTIONS(12179), 1, - anon_sym_DOLLAR, - ACTIONS(13524), 1, + ACTIONS(11521), 1, anon_sym_DOT, - ACTIONS(13528), 1, + ACTIONS(12412), 1, + anon_sym_DOLLAR, + ACTIONS(13016), 1, aux_sym__immediate_decimal_token4, - STATE(4616), 1, + STATE(7319), 1, + sym_comment, + STATE(7851), 1, sym__var, - STATE(5090), 1, + STATE(7945), 1, sym__immediate_decimal, - STATE(7767), 1, - sym_comment, - ACTIONS(13526), 2, + ACTIONS(11523), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(5089), 2, + STATE(8354), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [248217] = 10, + [247265] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6772), 1, + ACTIONS(7149), 1, anon_sym_LPAREN2, - ACTIONS(12475), 1, - anon_sym_DOT, - ACTIONS(12614), 1, + ACTIONS(12890), 1, anon_sym_DOLLAR, - ACTIONS(13370), 1, + ACTIONS(13018), 1, + anon_sym_DOT, + ACTIONS(13022), 1, aux_sym__immediate_decimal_token4, - STATE(4067), 1, - sym__immediate_decimal, - STATE(5803), 1, + STATE(3426), 1, sym__var, - STATE(7768), 1, + STATE(3479), 1, + sym__immediate_decimal, + STATE(7320), 1, sym_comment, - ACTIONS(12477), 2, + ACTIONS(13020), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4066), 2, + STATE(3636), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [248250] = 10, + [247298] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7701), 1, - anon_sym_DOLLAR, - ACTIONS(7703), 1, + ACTIONS(11249), 1, anon_sym_LPAREN2, - ACTIONS(7721), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(13530), 1, + ACTIONS(11297), 1, anon_sym_DOT, - STATE(3932), 1, + ACTIONS(12076), 1, + anon_sym_DOLLAR, + ACTIONS(12935), 1, + aux_sym__immediate_decimal_token4, + STATE(4669), 1, sym__var, - STATE(4004), 1, - sym__immediate_decimal, - STATE(7769), 1, + STATE(7321), 1, sym_comment, - ACTIONS(7719), 2, + STATE(7610), 1, + sym__immediate_decimal, + ACTIONS(11299), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4404), 2, + STATE(8329), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [248283] = 10, + [247331] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12033), 1, + ACTIONS(11217), 1, anon_sym_LPAREN2, - ACTIONS(12606), 1, + ACTIONS(11353), 1, anon_sym_DOT, - ACTIONS(12610), 1, + ACTIONS(12724), 1, aux_sym__immediate_decimal_token4, - STATE(7440), 1, + ACTIONS(13024), 1, + anon_sym_DOLLAR, + STATE(7099), 1, sym__var, - STATE(7770), 1, + STATE(7322), 1, sym_comment, - STATE(9722), 1, + STATE(7771), 1, sym__immediate_decimal, - ACTIONS(12608), 2, + ACTIONS(11293), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7565), 2, + STATE(7656), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [248316] = 4, + [247364] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1109), 1, + ACTIONS(13026), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13028), 1, + aux_sym__immediate_decimal_token2, + STATE(7323), 1, + sym_comment, + ACTIONS(2229), 2, + sym_cmd_identifier, + aux_sym_unquoted_token2, + ACTIONS(2231), 6, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [247389] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3691), 1, anon_sym_DASH, - STATE(7771), 1, + STATE(7324), 1, + sym_comment, + ACTIONS(3693), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [247410] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1047), 1, + anon_sym_DASH, + STATE(7325), 1, sym_comment, - ACTIONS(1111), 9, + ACTIONS(1049), 9, anon_sym_EQ, anon_sym_COLON, anon_sym_COMMA, @@ -561544,162 +520318,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - [248337] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11743), 1, - anon_sym_LPAREN2, - ACTIONS(11855), 1, - anon_sym_DOT, - ACTIONS(12805), 1, - anon_sym_DOLLAR, - ACTIONS(13294), 1, - aux_sym__immediate_decimal_token4, - STATE(7772), 1, - sym_comment, - STATE(8127), 1, - sym__var, - STATE(8384), 1, - sym__immediate_decimal, - ACTIONS(11857), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(8459), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [248370] = 6, + [247431] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13532), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13534), 1, - aux_sym__immediate_decimal_token2, - STATE(7773), 1, + ACTIONS(2414), 1, + anon_sym_DASH, + ACTIONS(12780), 1, + anon_sym_DASH_DASH, + STATE(4865), 1, + sym_long_flag_equals_value, + STATE(7326), 1, sym_comment, - ACTIONS(2437), 4, + STATE(9240), 1, + sym__flag, + ACTIONS(12608), 2, anon_sym_SEMI, - anon_sym_LF, anon_sym_PIPE, - aux_sym_unquoted_token2, - ACTIONS(2439), 4, + ACTIONS(12610), 2, ts_builtin_sym_end, - anon_sym_LPAREN2, - anon_sym_DOT, - aux_sym_command_token1, - [248395] = 10, + anon_sym_LF, + STATE(4939), 2, + sym_short_flag, + sym_long_flag, + [247462] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8863), 1, + ACTIONS(11217), 1, anon_sym_LPAREN2, - ACTIONS(9319), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(13444), 1, - anon_sym_DOLLAR, - ACTIONS(13536), 1, + ACTIONS(11353), 1, anon_sym_DOT, - STATE(5760), 1, - sym__var, - STATE(6603), 1, - sym__immediate_decimal, - STATE(7774), 1, - sym_comment, - ACTIONS(9317), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6602), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [248428] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7647), 1, - anon_sym_LPAREN2, - ACTIONS(13401), 1, + ACTIONS(12200), 1, anon_sym_DOLLAR, - ACTIONS(13538), 1, - anon_sym_DOT, - ACTIONS(13542), 1, + ACTIONS(12724), 1, aux_sym__immediate_decimal_token4, - STATE(3822), 1, - sym__immediate_decimal, - STATE(3868), 1, - sym__var, - STATE(7775), 1, + STATE(7327), 1, sym_comment, - ACTIONS(13540), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4068), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [248461] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7701), 1, - anon_sym_DOLLAR, - ACTIONS(7703), 1, - anon_sym_LPAREN2, - ACTIONS(7731), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(13544), 1, - anon_sym_DOT, - STATE(3932), 1, + STATE(7637), 1, sym__var, - STATE(4142), 1, + STATE(8038), 1, sym__immediate_decimal, - STATE(7776), 1, - sym_comment, - ACTIONS(7729), 2, + ACTIONS(11355), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4404), 2, + STATE(7888), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [248494] = 3, + [247495] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(7777), 1, + ACTIONS(5769), 1, + anon_sym_DASH, + STATE(7328), 1, sym_comment, - ACTIONS(9935), 10, + ACTIONS(5771), 9, anon_sym_EQ, sym_identifier, - anon_sym_DASH_GT, anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [248513] = 10, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [247516] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6095), 1, + STATE(7329), 1, + sym_comment, + ACTIONS(2402), 4, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(2404), 6, anon_sym_DOLLAR, - ACTIONS(6944), 1, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [247537] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7592), 1, anon_sym_LPAREN2, - ACTIONS(6946), 1, + ACTIONS(11848), 1, + anon_sym_DOLLAR, + ACTIONS(13030), 1, anon_sym_DOT, - ACTIONS(6952), 1, + ACTIONS(13034), 1, aux_sym__immediate_decimal_token4, - STATE(3214), 1, + STATE(4298), 1, sym__var, - STATE(3567), 1, + STATE(4958), 1, sym__immediate_decimal, - STATE(7778), 1, + STATE(7330), 1, sym_comment, - ACTIONS(6950), 2, + ACTIONS(13032), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3561), 2, + STATE(4957), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [248546] = 3, + [247570] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(7779), 1, + STATE(7331), 1, sym_comment, - ACTIONS(9973), 10, + ACTIONS(9530), 10, anon_sym_EQ, sym_identifier, anon_sym_DASH_GT, @@ -561710,215 +520436,293 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [248565] = 10, + [247589] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11795), 1, - anon_sym_LPAREN2, - ACTIONS(12084), 1, + STATE(7332), 1, + sym_comment, + ACTIONS(934), 3, + anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(12622), 1, + aux_sym_unquoted_token5, + ACTIONS(936), 7, anon_sym_DOLLAR, - ACTIONS(13546), 1, - aux_sym__immediate_decimal_token4, - STATE(7780), 1, - sym_comment, - STATE(8434), 1, - sym__var, - STATE(8485), 1, - sym__immediate_decimal, - ACTIONS(12086), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(8582), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [248598] = 10, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [247610] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7647), 1, - anon_sym_LPAREN2, - ACTIONS(13401), 1, + STATE(7333), 1, + sym_comment, + ACTIONS(936), 4, anon_sym_DOLLAR, - ACTIONS(13548), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(934), 6, + sym_identifier, + anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(13552), 1, - aux_sym__immediate_decimal_token4, - STATE(3868), 1, - sym__var, - STATE(3905), 1, - sym__immediate_decimal, - STATE(7781), 1, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + [247631] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5019), 1, + anon_sym_DASH, + STATE(7334), 1, sym_comment, - ACTIONS(13550), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4068), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [248631] = 9, + ACTIONS(5021), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [247652] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9820), 1, - aux_sym_unquoted_token5, - ACTIONS(9828), 1, + ACTIONS(12888), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(13036), 1, anon_sym_DOT, - ACTIONS(13554), 1, + STATE(7335), 1, + sym_comment, + ACTIONS(911), 2, anon_sym_DOT_DOT2, - ACTIONS(13558), 1, + aux_sym_unquoted_token5, + ACTIONS(913), 6, + anon_sym_in, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym_filesize_unit, - ACTIONS(13560), 1, sym_duration_unit, - STATE(7782), 1, + [247677] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(7336), 1, sym_comment, - ACTIONS(13556), 2, + ACTIONS(3723), 3, + anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(961), 3, + ACTIONS(3721), 7, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [248662] = 6, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [247698] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13562), 1, - anon_sym_DOT, - ACTIONS(13565), 1, + ACTIONS(13039), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13041), 1, aux_sym__immediate_decimal_token2, - STATE(7783), 1, + STATE(7337), 1, sym_comment, - ACTIONS(2581), 4, - sym_identifier, - anon_sym_DASH, + ACTIONS(2229), 3, anon_sym_DOT_DOT2, + anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(2583), 4, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, + ACTIONS(2231), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [248687] = 10, + [247723] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2369), 1, + ACTIONS(1868), 1, anon_sym_LPAREN2, - ACTIONS(13468), 1, + ACTIONS(12728), 1, anon_sym_DOLLAR, - ACTIONS(13567), 1, + ACTIONS(13043), 1, anon_sym_DOT, - ACTIONS(13571), 1, + ACTIONS(13047), 1, aux_sym__immediate_decimal_token4, - STATE(1498), 1, + STATE(1105), 1, sym__var, - STATE(2475), 1, + STATE(1142), 1, sym__immediate_decimal, - STATE(7784), 1, + STATE(7338), 1, sym_comment, - ACTIONS(13569), 2, + ACTIONS(13045), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2474), 2, + STATE(1540), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [248720] = 10, + [247756] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(13049), 1, + anon_sym_DOT, + ACTIONS(13052), 1, + aux_sym__immediate_decimal_token2, + STATE(7339), 1, + sym_comment, + ACTIONS(2358), 2, + anon_sym_LPAREN2, + aux_sym_command_token1, + ACTIONS(2356), 6, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_LF2, + aux_sym_unquoted_token2, + [247781] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11743), 1, + ACTIONS(8423), 1, anon_sym_LPAREN2, - ACTIONS(11981), 1, + ACTIONS(8431), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(13054), 1, + anon_sym_DOLLAR, + ACTIONS(13056), 1, anon_sym_DOT, - ACTIONS(12805), 1, + STATE(5268), 1, + sym__immediate_decimal, + STATE(5524), 1, + sym__var, + STATE(7340), 1, + sym_comment, + ACTIONS(8429), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6133), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [247814] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7483), 1, + anon_sym_LPAREN2, + ACTIONS(11658), 1, anon_sym_DOLLAR, - ACTIONS(13573), 1, + ACTIONS(13058), 1, + anon_sym_DOT, + ACTIONS(13062), 1, aux_sym__immediate_decimal_token4, - STATE(7785), 1, - sym_comment, - STATE(8114), 1, - sym__immediate_decimal, - STATE(8127), 1, + STATE(4162), 1, sym__var, - ACTIONS(11983), 2, + STATE(4338), 1, + sym__immediate_decimal, + STATE(7341), 1, + sym_comment, + ACTIONS(13060), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(8459), 2, + STATE(4667), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [248753] = 10, + [247847] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11795), 1, + ACTIONS(11217), 1, anon_sym_LPAREN2, - ACTIONS(12084), 1, + ACTIONS(11259), 1, anon_sym_DOT, - ACTIONS(12622), 1, + ACTIONS(12330), 1, anon_sym_DOLLAR, - ACTIONS(13546), 1, + ACTIONS(12776), 1, aux_sym__immediate_decimal_token4, - STATE(7786), 1, - sym_comment, - STATE(8434), 1, + STATE(4713), 1, sym__var, - STATE(8522), 1, + STATE(7342), 1, + sym_comment, + STATE(7523), 1, sym__immediate_decimal, - ACTIONS(12086), 2, + ACTIONS(11261), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(8582), 2, + STATE(7936), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [248786] = 7, - ACTIONS(113), 1, + [247880] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13575), 1, - anon_sym_DOT_DOT2, - STATE(7787), 1, + ACTIONS(13064), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13066), 1, + aux_sym__immediate_decimal_token2, + STATE(7343), 1, sym_comment, - ACTIONS(2845), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(2851), 2, + ACTIONS(2229), 3, + anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(13577), 2, + ACTIONS(2231), 5, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2843), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - [248813] = 10, + [247905] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(13068), 1, + aux_sym__immediate_decimal_token2, + STATE(7344), 1, + sym_comment, + ACTIONS(2358), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(2356), 5, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym__unquoted_in_list_token2, + [247928] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1926), 1, + ACTIONS(11249), 1, anon_sym_LPAREN2, - ACTIONS(13498), 1, - anon_sym_DOLLAR, - ACTIONS(13579), 1, + ACTIONS(11440), 1, anon_sym_DOT, - ACTIONS(13583), 1, + ACTIONS(12076), 1, + anon_sym_DOLLAR, + ACTIONS(13070), 1, aux_sym__immediate_decimal_token4, - STATE(1373), 1, + STATE(4669), 1, sym__var, - STATE(1779), 1, - sym__immediate_decimal, - STATE(7788), 1, + STATE(7345), 1, sym_comment, - ACTIONS(13581), 2, + STATE(8078), 1, + sym__immediate_decimal, + ACTIONS(11442), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1778), 2, + STATE(8343), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [248846] = 4, + [247961] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13587), 1, + ACTIONS(5023), 1, anon_sym_DASH, - STATE(7789), 1, + STATE(7346), 1, sym_comment, - ACTIONS(13585), 9, - anon_sym_EQ, + ACTIONS(5025), 9, sym_identifier, + anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, @@ -561926,676 +520730,708 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [248867] = 10, + [247982] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11743), 1, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(11981), 1, - anon_sym_DOT, - ACTIONS(12805), 1, - anon_sym_DOLLAR, - ACTIONS(13573), 1, + ACTIONS(11576), 1, aux_sym__immediate_decimal_token4, - STATE(7790), 1, - sym_comment, - STATE(8127), 1, + ACTIONS(11650), 1, + anon_sym_DOLLAR, + ACTIONS(11968), 1, + anon_sym_DOT, + STATE(4470), 1, sym__var, - STATE(8357), 1, + STATE(7183), 1, sym__immediate_decimal, - ACTIONS(11983), 2, + STATE(7347), 1, + sym_comment, + ACTIONS(11970), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(8459), 2, + STATE(7109), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [248900] = 10, + [248015] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6782), 1, - anon_sym_LPAREN2, - ACTIONS(6784), 1, - anon_sym_DOT, - ACTIONS(13409), 1, + ACTIONS(5725), 1, anon_sym_DOLLAR, - ACTIONS(13413), 1, + ACTIONS(7117), 1, aux_sym__immediate_decimal_token4, - STATE(3368), 1, - sym__var, - STATE(3528), 1, + ACTIONS(11537), 1, + anon_sym_LPAREN2, + ACTIONS(12152), 1, + anon_sym_DOT, + STATE(6684), 1, sym__immediate_decimal, - STATE(7791), 1, + STATE(7000), 1, + sym__var, + STATE(7348), 1, sym_comment, - ACTIONS(13411), 2, + ACTIONS(12154), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3524), 2, + STATE(7200), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [248933] = 6, + [248048] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - ACTIONS(4037), 1, - anon_sym_LPAREN2, - ACTIONS(13589), 1, - aux_sym_command_token1, - STATE(7792), 1, - sym_comment, - ACTIONS(4035), 7, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, + ACTIONS(2671), 1, anon_sym_DASH, - anon_sym_RBRACE, - [248958] = 8, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(3522), 1, - anon_sym_LPAREN2, - ACTIONS(13591), 1, - anon_sym_DOT_DOT2, - STATE(7793), 1, + ACTIONS(5763), 1, + anon_sym_DASH_DASH, + STATE(7349), 1, sym_comment, - ACTIONS(1934), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(3518), 2, + STATE(7374), 1, + sym__flag, + STATE(8239), 1, + sym_long_flag_equals_value, + ACTIONS(4931), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3520), 2, + ACTIONS(4933), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(13593), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [248987] = 6, - ACTIONS(113), 1, + STATE(8315), 2, + sym_short_flag, + sym_long_flag, + [248079] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12584), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(13595), 1, + ACTIONS(13072), 1, anon_sym_DOT, - STATE(7794), 1, - sym_comment, - ACTIONS(2581), 4, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, + STATE(7743), 1, + sym_path, + ACTIONS(985), 2, + anon_sym_DASH, anon_sym_DOT_DOT2, - ACTIONS(2583), 4, - ts_builtin_sym_end, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - [249012] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(7795), 1, + STATE(7350), 2, sym_comment, - ACTIONS(911), 4, + aux_sym_cell_path_repeat1, + ACTIONS(987), 5, + sym_identifier, anon_sym_DOLLAR, - anon_sym_LPAREN2, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(909), 6, - sym_identifier, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token5, - [249033] = 4, + [248104] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(7796), 1, + STATE(7351), 1, sym_comment, - ACTIONS(950), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token5, - ACTIONS(952), 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, - [249054] = 5, + ACTIONS(9543), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_AT, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [248123] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13387), 1, - aux_sym__immediate_decimal_token2, - STATE(7797), 1, + ACTIONS(5780), 1, + anon_sym_DASH, + STATE(7352), 1, sym_comment, - ACTIONS(923), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token5, - ACTIONS(925), 6, + ACTIONS(5782), 9, + anon_sym_EQ, + sym_identifier, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [249077] = 9, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [248144] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2975), 1, + ACTIONS(2671), 1, anon_sym_DASH, - ACTIONS(13279), 1, + ACTIONS(5763), 1, anon_sym_DASH_DASH, - STATE(5400), 1, - sym_long_flag_equals_value, - STATE(7798), 1, - sym_comment, - STATE(10145), 1, + STATE(7326), 1, sym__flag, - ACTIONS(5621), 2, + STATE(7353), 1, + sym_comment, + STATE(8239), 1, + sym_long_flag_equals_value, + ACTIONS(12418), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5623), 2, + ACTIONS(12420), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(5303), 2, + STATE(8315), 2, sym_short_flag, sym_long_flag, - [249108] = 10, + [248175] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11795), 1, + ACTIONS(6332), 1, anon_sym_LPAREN2, - ACTIONS(11949), 1, + ACTIONS(6334), 1, anon_sym_DOT, - ACTIONS(13296), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(13597), 1, + ACTIONS(12809), 1, anon_sym_DOLLAR, - STATE(7799), 1, - sym_comment, - STATE(7845), 1, + ACTIONS(12813), 1, + aux_sym__immediate_decimal_token4, + STATE(2939), 1, sym__var, - STATE(8270), 1, + STATE(3124), 1, sym__immediate_decimal, - ACTIONS(11945), 2, + STATE(7354), 1, + sym_comment, + ACTIONS(12811), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(8259), 2, + STATE(3106), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [249141] = 11, + [248208] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(3759), 1, + anon_sym_LF, + ACTIONS(9371), 1, + anon_sym_DOT_DOT2, + STATE(7355), 1, + sym_comment, + ACTIONS(9373), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3757), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [248233] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_in, - ACTIONS(2397), 1, + ACTIONS(1381), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5725), 1, + anon_sym_DOLLAR, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(9820), 1, - aux_sym_unquoted_token5, - ACTIONS(9828), 1, + ACTIONS(12424), 1, anon_sym_DOT, - ACTIONS(13599), 1, - anon_sym_DOT_DOT2, - ACTIONS(13603), 1, - sym_filesize_unit, - ACTIONS(13605), 1, - sym_duration_unit, - STATE(7800), 1, + STATE(7000), 1, + sym__var, + STATE(7183), 1, + sym__immediate_decimal, + STATE(7356), 1, sym_comment, - STATE(10570), 1, + ACTIONS(12426), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7109), 2, sym__expr_parenthesized_immediate, - ACTIONS(13601), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [249176] = 9, + sym_val_variable, + [248266] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2929), 1, + ACTIONS(2671), 1, anon_sym_DASH, - ACTIONS(6151), 1, + ACTIONS(5763), 1, anon_sym_DASH_DASH, - STATE(7558), 1, + STATE(7353), 1, sym__flag, - STATE(7801), 1, + STATE(7357), 1, sym_comment, - STATE(8808), 1, + STATE(8239), 1, sym_long_flag_equals_value, - ACTIONS(5621), 2, + ACTIONS(12549), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5623), 2, + ACTIONS(12551), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(8772), 2, + STATE(8315), 2, sym_short_flag, sym_long_flag, - [249207] = 4, + [248297] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(7802), 1, + ACTIONS(6322), 1, + anon_sym_LPAREN2, + ACTIONS(11916), 1, + anon_sym_DOT, + ACTIONS(12068), 1, + anon_sym_DOLLAR, + ACTIONS(12956), 1, + aux_sym__immediate_decimal_token4, + STATE(3098), 1, + sym__immediate_decimal, + STATE(5406), 1, + sym__var, + STATE(7358), 1, sym_comment, - ACTIONS(909), 3, - anon_sym_DOT_DOT2, + ACTIONS(11918), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3636), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [248330] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11227), 1, + anon_sym_DOLLAR, + ACTIONS(11229), 1, + anon_sym_LPAREN2, + ACTIONS(11237), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11892), 1, anon_sym_DOT, - aux_sym_unquoted_token5, - ACTIONS(911), 7, + STATE(6504), 1, + sym__var, + STATE(6741), 1, + sym__immediate_decimal, + STATE(7359), 1, + sym_comment, + ACTIONS(11235), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6685), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [248363] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3691), 1, + anon_sym_DASH, + STATE(7360), 1, + sym_comment, + ACTIONS(3693), 9, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_if, anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [249228] = 6, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [248384] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13330), 1, + ACTIONS(12691), 1, aux_sym__immediate_decimal_token2, - ACTIONS(13607), 1, - anon_sym_DOT, - STATE(7803), 1, + STATE(7361), 1, sym_comment, - ACTIONS(2583), 2, + ACTIONS(2231), 3, anon_sym_LPAREN2, + anon_sym_DOT, aux_sym_command_token1, - ACTIONS(2581), 6, + ACTIONS(2229), 6, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, aux_sym_unquoted_token2, - [249253] = 7, + [248407] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13298), 1, - anon_sym_DOT, - STATE(4308), 1, - sym_path, - STATE(7804), 1, + ACTIONS(2414), 1, + anon_sym_DASH, + ACTIONS(12780), 1, + anon_sym_DASH_DASH, + STATE(4865), 1, + sym_long_flag_equals_value, + STATE(7362), 1, sym_comment, - STATE(7806), 1, - aux_sym_cell_path_repeat1, - ACTIONS(987), 3, + STATE(9213), 1, + sym__flag, + ACTIONS(4947), 2, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DOT_DOT2, - ACTIONS(989), 4, + ACTIONS(4949), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [249280] = 6, - ACTIONS(3), 1, + STATE(4939), 2, + sym_short_flag, + sym_long_flag, + [248438] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13610), 1, + ACTIONS(13075), 1, aux_sym__immediate_decimal_token1, - ACTIONS(13612), 1, + ACTIONS(13077), 1, aux_sym__immediate_decimal_token2, - STATE(7805), 1, + STATE(7363), 1, sym_comment, - ACTIONS(2437), 2, - sym_cmd_identifier, + ACTIONS(2229), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT2, + anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(2439), 6, - anon_sym_DASH_DASH, + ACTIONS(2231), 4, anon_sym_LPAREN2, - anon_sym_DOT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [249305] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(13298), 1, - anon_sym_DOT, - STATE(4308), 1, - sym_path, - STATE(7806), 1, - sym_comment, - STATE(7807), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1006), 3, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DOT_DOT2, - ACTIONS(1008), 4, - ts_builtin_sym_end, - anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [249332] = 6, - ACTIONS(113), 1, + sym__entry_separator, + [248463] = 10, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13614), 1, + ACTIONS(11229), 1, + anon_sym_LPAREN2, + ACTIONS(11237), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11239), 1, + anon_sym_DOLLAR, + ACTIONS(11892), 1, anon_sym_DOT, - STATE(4308), 1, - sym_path, - STATE(7807), 2, + STATE(6707), 1, + sym__immediate_decimal, + STATE(6778), 1, + sym__var, + STATE(7364), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(999), 3, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DOT_DOT2, - ACTIONS(1001), 4, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [249357] = 4, + ACTIONS(11245), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7130), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [248496] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(7808), 1, + ACTIONS(12909), 1, + aux_sym__immediate_decimal_token2, + STATE(7365), 1, sym_comment, - ACTIONS(917), 3, + ACTIONS(911), 3, anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token5, - ACTIONS(919), 7, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_LPAREN2, + ACTIONS(913), 6, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [249378] = 5, + [248519] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13244), 1, - aux_sym__immediate_decimal_token2, - STATE(7809), 1, + ACTIONS(7149), 1, + anon_sym_LPAREN2, + ACTIONS(12890), 1, + anon_sym_DOLLAR, + ACTIONS(13079), 1, + anon_sym_DOT, + ACTIONS(13083), 1, + aux_sym__immediate_decimal_token4, + STATE(3426), 1, + sym__var, + STATE(3633), 1, + sym__immediate_decimal, + STATE(7366), 1, sym_comment, - ACTIONS(909), 3, - anon_sym_DOT_DOT2, + ACTIONS(13081), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3617), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [248552] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11217), 1, + anon_sym_LPAREN2, + ACTIONS(11424), 1, anon_sym_DOT, - aux_sym_unquoted_token5, - ACTIONS(911), 6, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [249401] = 6, - ACTIONS(113), 1, + ACTIONS(12200), 1, + anon_sym_DOLLAR, + ACTIONS(12720), 1, + aux_sym__immediate_decimal_token4, + STATE(7367), 1, + sym_comment, + STATE(7637), 1, + sym__var, + STATE(7768), 1, + sym__immediate_decimal, + ACTIONS(11426), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7936), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [248585] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3520), 1, - anon_sym_LF, - ACTIONS(13617), 1, - anon_sym_DOT_DOT2, - STATE(7810), 1, + ACTIONS(3699), 1, + anon_sym_DASH, + STATE(7368), 1, sym_comment, - ACTIONS(13619), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3518), 6, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3701), 9, + anon_sym_COMMA, anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, - [249426] = 6, - ACTIONS(113), 1, + anon_sym_EQ_GT, + [248606] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2845), 1, - anon_sym_LF, - ACTIONS(13621), 1, - anon_sym_DOT_DOT2, - STATE(7811), 1, + STATE(7369), 1, sym_comment, - ACTIONS(13623), 2, + ACTIONS(903), 4, + anon_sym_DOLLAR, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2843), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [249451] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(3868), 1, - anon_sym_LF, - ACTIONS(13625), 1, + ACTIONS(901), 6, + sym_identifier, anon_sym_DOT_DOT2, - STATE(7812), 1, + anon_sym_DOT, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token5, + [248627] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11279), 1, + anon_sym_LPAREN2, + ACTIONS(11521), 1, + anon_sym_DOT, + ACTIONS(12412), 1, + anon_sym_DOLLAR, + ACTIONS(13016), 1, + aux_sym__immediate_decimal_token4, + STATE(7370), 1, sym_comment, - ACTIONS(13627), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3866), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [249476] = 6, + STATE(7851), 1, + sym__var, + STATE(8365), 1, + sym__immediate_decimal, + ACTIONS(11523), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(8354), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [248660] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3951), 1, + ACTIONS(12196), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(13085), 1, + anon_sym_DOT, + STATE(7371), 1, + sym_comment, + ACTIONS(2356), 4, + anon_sym_SEMI, anon_sym_LF, - ACTIONS(13629), 1, + anon_sym_PIPE, anon_sym_DOT_DOT2, - STATE(7813), 1, - sym_comment, - ACTIONS(13631), 2, + ACTIONS(2358), 4, + ts_builtin_sym_end, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(3949), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [249501] = 6, + aux_sym_command_token1, + [248685] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3966), 1, - anon_sym_LF, - ACTIONS(13633), 1, - anon_sym_DOT_DOT2, - STATE(7814), 1, + ACTIONS(12800), 1, + anon_sym_DOT, + STATE(5057), 1, + sym_cell_path, + STATE(7180), 1, + sym_path, + STATE(7372), 1, sym_comment, - ACTIONS(13635), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3964), 6, + ACTIONS(992), 3, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [249526] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(4045), 1, - anon_sym_LF, - ACTIONS(13637), 1, anon_sym_DOT_DOT2, - STATE(7815), 1, - sym_comment, - ACTIONS(13639), 2, + ACTIONS(994), 4, + ts_builtin_sym_end, + anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(4043), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [249551] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(7816), 1, - sym_comment, - ACTIONS(9824), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [249570] = 4, + [248712] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(7817), 1, + STATE(7373), 1, sym_comment, - ACTIONS(950), 3, + ACTIONS(1020), 2, anon_sym_DOT_DOT2, anon_sym_DOT, - aux_sym_unquoted_token5, - ACTIONS(952), 7, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_LPAREN2, + ACTIONS(1022), 8, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [249591] = 9, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [248733] = 9, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2929), 1, + ACTIONS(2671), 1, anon_sym_DASH, - ACTIONS(6151), 1, + ACTIONS(5763), 1, anon_sym_DASH_DASH, - STATE(7559), 1, + STATE(7205), 1, sym__flag, - STATE(7818), 1, + STATE(7374), 1, sym_comment, - STATE(8808), 1, + STATE(8239), 1, sym_long_flag_equals_value, - ACTIONS(5621), 2, + ACTIONS(4947), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5623), 2, + ACTIONS(4949), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(8772), 2, + STATE(8315), 2, sym_short_flag, sym_long_flag, - [249622] = 6, - ACTIONS(3), 1, + [248764] = 7, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13641), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13643), 1, - aux_sym__immediate_decimal_token2, - STATE(7819), 1, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(3773), 1, + anon_sym_LF, + ACTIONS(3775), 1, + anon_sym_LPAREN2, + ACTIONS(13087), 1, + anon_sym_DOT, + STATE(7375), 1, + sym_comment, + ACTIONS(3771), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [248791] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(7376), 1, sym_comment, - ACTIONS(2437), 3, + ACTIONS(934), 4, + anon_sym_RBRACK, anon_sym_DOT_DOT2, anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(2439), 5, - anon_sym_DOLLAR, - anon_sym_LBRACE, + aux_sym__unquoted_in_list_token6, + ACTIONS(936), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [249647] = 5, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [248812] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11279), 1, + anon_sym_LPAREN2, + ACTIONS(11333), 1, + anon_sym_DOT, + ACTIONS(12098), 1, + anon_sym_DOLLAR, + ACTIONS(12802), 1, + aux_sym__immediate_decimal_token4, + STATE(4858), 1, + sym__var, + STATE(7377), 1, + sym_comment, + STATE(7497), 1, + sym__immediate_decimal, + ACTIONS(11335), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(8354), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [248845] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13565), 1, - aux_sym__immediate_decimal_token2, - STATE(7820), 1, - sym_comment, - ACTIONS(2583), 4, - anon_sym_DASH_DASH, + ACTIONS(8423), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2581), 5, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, + ACTIONS(8457), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(13054), 1, + anon_sym_DOLLAR, + ACTIONS(13089), 1, anon_sym_DOT, - aux_sym_unquoted_token2, - [249670] = 9, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(2929), 1, - anon_sym_DASH, - ACTIONS(6151), 1, - anon_sym_DASH_DASH, - STATE(7560), 1, - sym__flag, - STATE(7821), 1, + STATE(5524), 1, + sym__var, + STATE(5799), 1, + sym__immediate_decimal, + STATE(7378), 1, sym_comment, - STATE(8808), 1, - sym_long_flag_equals_value, - ACTIONS(5621), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(5623), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8772), 2, - sym_short_flag, - sym_long_flag, - [249701] = 5, - ACTIONS(3), 1, + ACTIONS(8455), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6133), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [248878] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13104), 1, + ACTIONS(13091), 1, aux_sym__immediate_decimal_token2, - STATE(7822), 1, + STATE(7379), 1, sym_comment, - ACTIONS(2439), 4, - anon_sym_DASH_DASH, + ACTIONS(2364), 3, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2437), 5, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, anon_sym_DOT, + aux_sym_command_token1, + ACTIONS(2362), 6, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_LF2, aux_sym_unquoted_token2, - [249724] = 4, + [248901] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(7823), 1, + ACTIONS(12948), 1, + aux_sym__immediate_decimal_token2, + STATE(7380), 1, sym_comment, - ACTIONS(4002), 3, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(4000), 7, + ACTIONS(2358), 3, + anon_sym_LPAREN2, + anon_sym_DOT, + aux_sym_command_token1, + ACTIONS(2356), 6, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [249745] = 4, + aux_sym_unquoted_token2, + [248924] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13647), 1, + ACTIONS(3699), 1, anon_sym_DASH, - STATE(7824), 1, + STATE(7381), 1, sym_comment, - ACTIONS(13645), 9, - anon_sym_EQ, + ACTIONS(3701), 9, sym_identifier, + anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, @@ -562603,3014 +521439,3592 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [249766] = 5, + [248945] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13649), 1, - aux_sym__immediate_decimal_token2, - STATE(7825), 1, + STATE(7382), 1, sym_comment, - ACTIONS(2549), 4, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2547), 5, - sym_identifier, - anon_sym_DASH, + ACTIONS(893), 3, anon_sym_DOT_DOT2, anon_sym_DOT, - aux_sym_unquoted_token2, - [249789] = 4, + aux_sym_unquoted_token5, + ACTIONS(895), 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, + [248966] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(7826), 1, - sym_comment, - ACTIONS(919), 4, + ACTIONS(7336), 1, anon_sym_DOLLAR, + ACTIONS(7338), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(917), 6, - sym_identifier, - anon_sym_DOT_DOT2, + ACTIONS(7346), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(12738), 1, anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token5, - [249810] = 5, + STATE(3598), 1, + sym__var, + STATE(4146), 1, + sym__immediate_decimal, + STATE(7383), 1, + sym_comment, + ACTIONS(7344), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4145), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [248999] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13100), 1, + ACTIONS(11279), 1, + anon_sym_LPAREN2, + ACTIONS(11434), 1, + anon_sym_DOT, + ACTIONS(12726), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(13093), 1, + anon_sym_DOLLAR, + STATE(4310), 1, + sym__var, + STATE(7384), 1, + sym_comment, + STATE(7540), 1, + sym__immediate_decimal, + ACTIONS(11381), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7539), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [249032] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(13052), 1, aux_sym__immediate_decimal_token2, - STATE(7827), 1, + STATE(7385), 1, sym_comment, - ACTIONS(909), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token5, - ACTIONS(911), 6, - anon_sym_LBRACE, + ACTIONS(2358), 3, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [249833] = 5, - ACTIONS(113), 1, + anon_sym_DOT, + aux_sym_command_token1, + ACTIONS(2356), 6, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_LF2, + aux_sym_unquoted_token2, + [249055] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13132), 1, + ACTIONS(12868), 1, aux_sym__immediate_decimal_token2, - STATE(7828), 1, + STATE(7386), 1, sym_comment, - ACTIONS(2439), 4, + ACTIONS(2358), 4, + anon_sym_DASH_DASH, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(2437), 5, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(2356), 5, + sym_identifier, + anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - [249856] = 8, - ACTIONS(113), 1, + aux_sym_unquoted_token2, + [249078] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2847), 1, + ACTIONS(940), 1, + anon_sym_in, + ACTIONS(2187), 1, anon_sym_LPAREN2, - ACTIONS(13651), 1, + ACTIONS(9203), 1, + anon_sym_DOT, + ACTIONS(9209), 1, + aux_sym_unquoted_token5, + ACTIONS(13095), 1, anon_sym_DOT_DOT2, - STATE(7829), 1, + ACTIONS(13099), 1, + sym_filesize_unit, + ACTIONS(13101), 1, + sym_duration_unit, + STATE(7387), 1, sym_comment, - ACTIONS(2843), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(2845), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2851), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(13653), 2, + STATE(10044), 1, + sym__expr_parenthesized_immediate, + ACTIONS(13097), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [249885] = 8, + [249113] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2843), 1, - anon_sym_DASH, - ACTIONS(2847), 1, + ACTIONS(11279), 1, anon_sym_LPAREN2, - ACTIONS(13655), 1, - anon_sym_DOT_DOT2, - STATE(7830), 1, - sym_comment, - ACTIONS(2851), 2, + ACTIONS(11434), 1, anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(13657), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2845), 3, + ACTIONS(12098), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [249914] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2843), 1, - sym_cmd_identifier, - ACTIONS(13659), 1, - anon_sym_DOT_DOT2, - STATE(7831), 1, + ACTIONS(12726), 1, + aux_sym__immediate_decimal_token4, + STATE(4858), 1, + sym__var, + STATE(7388), 1, sym_comment, - ACTIONS(2851), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(13661), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2845), 4, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [249941] = 8, + STATE(8358), 1, + sym__immediate_decimal, + ACTIONS(11436), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(8357), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [249146] = 8, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2847), 1, + ACTIONS(3358), 1, anon_sym_LPAREN2, - ACTIONS(2851), 1, + ACTIONS(3362), 1, aux_sym_unquoted_token2, - ACTIONS(13169), 1, + ACTIONS(12513), 1, anon_sym_DOT, - ACTIONS(13663), 1, + ACTIONS(13103), 1, aux_sym__immediate_decimal_token1, - STATE(7832), 1, + STATE(7389), 1, sym_comment, - ACTIONS(3750), 2, + ACTIONS(3576), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3748), 4, + ACTIONS(3574), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [249970] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13665), 1, - aux_sym__immediate_decimal_token2, - STATE(7833), 1, - sym_comment, - ACTIONS(917), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token5, - ACTIONS(919), 6, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [249993] = 4, + [249175] = 7, ACTIONS(113), 1, anon_sym_POUND, - STATE(7834), 1, - sym_comment, - ACTIONS(909), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT2, + ACTIONS(12800), 1, anon_sym_DOT, - aux_sym__unquoted_in_list_token6, - ACTIONS(911), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [250014] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(2845), 1, - anon_sym_LF, - ACTIONS(13667), 1, - anon_sym_DOT_DOT2, - STATE(7835), 1, + STATE(4036), 1, + sym_cell_path, + STATE(7180), 1, + sym_path, + STATE(7390), 1, sym_comment, - ACTIONS(2851), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(13669), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2843), 4, + ACTIONS(1002), 3, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [250041] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13671), 1, - anon_sym_QMARK2, - STATE(7836), 1, - sym_comment, - ACTIONS(1070), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1072), 7, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [250064] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13671), 1, - anon_sym_QMARK2, - STATE(7837), 1, - sym_comment, - ACTIONS(1070), 2, anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1072), 7, - sym_cmd_identifier, - anon_sym_DASH_DASH, + ACTIONS(1004), 4, + ts_builtin_sym_end, + anon_sym_LF, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [250087] = 6, + [249202] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13673), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13675), 1, + ACTIONS(13105), 1, aux_sym__immediate_decimal_token2, - STATE(7838), 1, + STATE(7391), 1, sym_comment, - ACTIONS(2437), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(2439), 4, + ACTIONS(2364), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [250112] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13677), 1, - anon_sym_DOT, - ACTIONS(13679), 1, - aux_sym__immediate_decimal_token2, - STATE(7839), 1, - sym_comment, - ACTIONS(2581), 2, - sym_cmd_identifier, - anon_sym_DOT_DOT2, - ACTIONS(2583), 6, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [250137] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(13681), 1, + ACTIONS(2362), 5, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - STATE(7840), 1, - sym_comment, - ACTIONS(1934), 2, anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(3520), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(13683), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3518), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - [250164] = 10, + aux_sym__unquoted_in_list_token2, + [249225] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(8423), 1, + anon_sym_LPAREN2, + ACTIONS(8695), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6247), 1, + ACTIONS(13054), 1, anon_sym_DOLLAR, - ACTIONS(12033), 1, - anon_sym_LPAREN2, - ACTIONS(13024), 1, + ACTIONS(13107), 1, anon_sym_DOT, - STATE(7440), 1, + STATE(5524), 1, sym__var, - STATE(7564), 1, + STATE(6128), 1, sym__immediate_decimal, - STATE(7841), 1, + STATE(7392), 1, sym_comment, - ACTIONS(13026), 2, + ACTIONS(8693), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7563), 2, + STATE(6124), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [250197] = 10, + [249258] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6247), 1, + ACTIONS(5725), 1, anon_sym_DOLLAR, - ACTIONS(12033), 1, + ACTIONS(11537), 1, anon_sym_LPAREN2, - ACTIONS(13024), 1, + ACTIONS(11682), 1, anon_sym_DOT, - STATE(7199), 1, - sym__immediate_decimal, - STATE(7440), 1, + ACTIONS(11686), 1, + aux_sym__immediate_decimal_token4, + STATE(7000), 1, sym__var, - STATE(7842), 1, + STATE(7393), 1, sym_comment, - ACTIONS(13026), 2, + STATE(7864), 1, + sym__immediate_decimal, + ACTIONS(11684), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7565), 2, + STATE(7200), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [250230] = 4, - ACTIONS(113), 1, + [249291] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7843), 1, + STATE(7394), 1, sym_comment, - ACTIONS(917), 4, - anon_sym_RBRACK, + ACTIONS(934), 3, anon_sym_DOT_DOT2, anon_sym_DOT, - aux_sym__unquoted_in_list_token6, - ACTIONS(919), 6, - anon_sym_LPAREN2, + aux_sym_unquoted_token5, + ACTIONS(936), 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, - [250251] = 4, + [249312] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6343), 1, - anon_sym_DASH, - STATE(7844), 1, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + ACTIONS(11401), 1, + anon_sym_DOLLAR, + ACTIONS(11403), 1, + anon_sym_DOT, + ACTIONS(11409), 1, + aux_sym__immediate_decimal_token4, + STATE(7395), 1, sym_comment, - ACTIONS(6345), 9, + STATE(7707), 1, + sym__var, + STATE(7865), 1, + sym__immediate_decimal, + ACTIONS(11407), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(8509), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [249345] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12503), 1, + anon_sym_DASH, + ACTIONS(13109), 1, anon_sym_EQ, - sym_identifier, + ACTIONS(13111), 1, anon_sym_COMMA, + STATE(7396), 1, + sym_comment, + STATE(7465), 1, + sym_param_value, + ACTIONS(12499), 6, + sym_identifier, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [250272] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(13298), 1, - anon_sym_DOT, - STATE(4383), 1, - sym_cell_path, - STATE(7804), 1, - sym_path, - STATE(7845), 1, - sym_comment, - ACTIONS(1010), 3, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DOT_DOT2, - ACTIONS(1012), 4, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [250299] = 7, + [249372] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13013), 1, + ACTIONS(12507), 1, + anon_sym_COMMA, + ACTIONS(12509), 1, anon_sym_DASH, - ACTIONS(13685), 1, + ACTIONS(13109), 1, anon_sym_EQ, - ACTIONS(13687), 1, - anon_sym_COMMA, - STATE(7846), 1, + STATE(7397), 1, sym_comment, - STATE(7859), 1, + STATE(7467), 1, sym_param_value, - ACTIONS(13009), 6, + ACTIONS(12505), 6, sym_identifier, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [250326] = 7, + [249399] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6322), 1, + anon_sym_LPAREN2, + ACTIONS(11932), 1, + anon_sym_DOT, + ACTIONS(12068), 1, + anon_sym_DOLLAR, + ACTIONS(13113), 1, + aux_sym__immediate_decimal_token4, + STATE(5406), 1, + sym__var, + STATE(7398), 1, + sym_comment, + STATE(8650), 1, + sym__immediate_decimal, + ACTIONS(11934), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3636), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [249432] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13017), 1, + ACTIONS(12590), 1, anon_sym_COMMA, - ACTIONS(13019), 1, + ACTIONS(12592), 1, anon_sym_DASH, - ACTIONS(13685), 1, + ACTIONS(13109), 1, anon_sym_EQ, - STATE(7847), 1, + STATE(7399), 1, sym_comment, - STATE(7965), 1, + STATE(7512), 1, sym_param_value, - ACTIONS(13015), 6, + ACTIONS(12588), 6, sym_identifier, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [250353] = 7, + [249459] = 9, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(2671), 1, + anon_sym_DASH, + ACTIONS(5763), 1, + anon_sym_DASH_DASH, + STATE(7113), 1, + sym__flag, + STATE(7400), 1, + sym_comment, + STATE(8239), 1, + sym_long_flag_equals_value, + ACTIONS(5595), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(5597), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(8315), 2, + sym_short_flag, + sym_long_flag, + [249490] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13126), 1, - anon_sym_COMMA, - ACTIONS(13128), 1, + ACTIONS(4997), 1, anon_sym_DASH, - ACTIONS(13685), 1, - anon_sym_EQ, - STATE(7848), 1, + STATE(7401), 1, sym_comment, - STATE(7867), 1, - sym_param_value, - ACTIONS(13124), 6, + ACTIONS(4999), 9, sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [250380] = 10, + [249511] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12033), 1, + ACTIONS(13115), 1, + aux_sym__immediate_decimal_token2, + STATE(7402), 1, + sym_comment, + ACTIONS(2364), 4, + anon_sym_DASH_DASH, anon_sym_LPAREN2, - ACTIONS(12127), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(12162), 1, - anon_sym_DOLLAR, - ACTIONS(12348), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2362), 5, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, anon_sym_DOT, - STATE(7564), 1, - sym__immediate_decimal, - STATE(7849), 1, + aux_sym_unquoted_token2, + [249534] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3711), 1, + anon_sym_DASH, + STATE(7403), 1, sym_comment, - STATE(9422), 1, + ACTIONS(3713), 9, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [249555] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(7404), 1, + sym_comment, + ACTIONS(893), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token5, + ACTIONS(895), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [249576] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1391), 1, + anon_sym_DOT, + ACTIONS(1409), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5725), 1, + anon_sym_DOLLAR, + ACTIONS(11537), 1, + anon_sym_LPAREN2, + STATE(7000), 1, sym__var, - ACTIONS(12350), 2, + STATE(7405), 1, + sym_comment, + STATE(9769), 1, + sym__immediate_decimal, + ACTIONS(1407), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7563), 2, + STATE(7200), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [250413] = 10, + [249609] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6253), 1, + ACTIONS(5725), 1, anon_sym_DOLLAR, - ACTIONS(12033), 1, - anon_sym_LPAREN2, - ACTIONS(12127), 1, + ACTIONS(7117), 1, aux_sym__immediate_decimal_token4, - ACTIONS(12348), 1, + ACTIONS(11537), 1, + anon_sym_LPAREN2, + ACTIONS(12152), 1, anon_sym_DOT, - STATE(4486), 1, + STATE(7000), 1, sym__var, - STATE(7850), 1, - sym_comment, - STATE(10070), 1, + STATE(7183), 1, sym__immediate_decimal, - ACTIONS(12346), 2, + STATE(7406), 1, + sym_comment, + ACTIONS(12154), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(9434), 2, + STATE(7109), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [250446] = 6, - ACTIONS(113), 1, + [249642] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13689), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13691), 1, - aux_sym_unquoted_token2, - STATE(7851), 1, + ACTIONS(13119), 1, + anon_sym_DASH, + STATE(7407), 1, sym_comment, - ACTIONS(938), 2, - anon_sym_LPAREN2, - aux_sym_command_token1, - ACTIONS(936), 5, - anon_sym_SEMI, - anon_sym_LF, + ACTIONS(13117), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_LF2, - [250470] = 4, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [249663] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11537), 1, + anon_sym_LPAREN2, + ACTIONS(11576), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(11650), 1, + anon_sym_DOLLAR, + ACTIONS(11968), 1, + anon_sym_DOT, + STATE(7183), 1, + sym__immediate_decimal, + STATE(7408), 1, + sym_comment, + STATE(8975), 1, + sym__var, + ACTIONS(11970), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7109), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [249696] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(7409), 1, + sym_comment, + ACTIONS(9532), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_AT, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [249715] = 9, ACTIONS(113), 1, anon_sym_POUND, - STATE(7852), 1, + ACTIONS(2414), 1, + anon_sym_DASH, + ACTIONS(12780), 1, + anon_sym_DASH_DASH, + STATE(4865), 1, + sym_long_flag_equals_value, + STATE(7410), 1, sym_comment, - ACTIONS(4002), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - ACTIONS(4000), 6, + STATE(9183), 1, + sym__flag, + ACTIONS(4829), 2, anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [250490] = 7, - ACTIONS(113), 1, + ACTIONS(4831), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(4939), 2, + sym_short_flag, + sym_long_flag, + [249746] = 10, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(3750), 1, - aux_sym_command_token1, - ACTIONS(13169), 1, + ACTIONS(11267), 1, + anon_sym_LPAREN2, + ACTIONS(11325), 1, anon_sym_DOT, - ACTIONS(13522), 1, + ACTIONS(12393), 1, + anon_sym_DOLLAR, + ACTIONS(12992), 1, + aux_sym__immediate_decimal_token4, + STATE(4575), 1, + sym__var, + STATE(7411), 1, + sym_comment, + STATE(7548), 1, + sym__immediate_decimal, + ACTIONS(11327), 2, aux_sym__immediate_decimal_token1, - STATE(7853), 1, + aux_sym__immediate_decimal_token3, + STATE(8186), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [249779] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7215), 1, + anon_sym_DOLLAR, + ACTIONS(7217), 1, + anon_sym_LPAREN2, + ACTIONS(7237), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(13121), 1, + anon_sym_DOT, + STATE(3494), 1, + sym__var, + STATE(3619), 1, + sym__immediate_decimal, + STATE(7412), 1, sym_comment, - ACTIONS(3748), 5, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [250516] = 7, - ACTIONS(113), 1, + ACTIONS(7235), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3920), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [249812] = 10, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2845), 1, - aux_sym_command_token1, - ACTIONS(2847), 1, + ACTIONS(11279), 1, anon_sym_LPAREN2, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(13169), 1, + ACTIONS(11434), 1, anon_sym_DOT, - STATE(7854), 1, + ACTIONS(12098), 1, + anon_sym_DOLLAR, + ACTIONS(12726), 1, + aux_sym__immediate_decimal_token4, + STATE(4858), 1, + sym__var, + STATE(7413), 1, + sym_comment, + STATE(8353), 1, + sym__immediate_decimal, + ACTIONS(11436), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(8346), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [249845] = 9, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(2414), 1, + anon_sym_DASH, + ACTIONS(12780), 1, + anon_sym_DASH_DASH, + STATE(4865), 1, + sym_long_flag_equals_value, + STATE(7414), 1, sym_comment, - ACTIONS(2843), 5, + STATE(9227), 1, + sym__flag, + ACTIONS(12541), 2, anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_LF2, - [250542] = 4, + ACTIONS(12543), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(4939), 2, + sym_short_flag, + sym_long_flag, + [249876] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(7415), 1, + sym_comment, + ACTIONS(5771), 9, + anon_sym_EQ, + sym_cmd_identifier, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [249894] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(7416), 1, + sym_comment, + ACTIONS(934), 3, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token5, + ACTIONS(936), 6, + anon_sym_in, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [249914] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(7855), 1, + STATE(7417), 1, sym_comment, - ACTIONS(1282), 2, - anon_sym_LF, + ACTIONS(2404), 3, anon_sym_LPAREN2, - ACTIONS(1280), 7, + anon_sym_DOT, + aux_sym_command_token1, + ACTIONS(2402), 6, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - aux_sym_unquoted_token6, - [250562] = 6, + anon_sym_LF2, + aux_sym_unquoted_token2, + [249934] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13693), 1, - anon_sym_DOT, - ACTIONS(13696), 1, + ACTIONS(13123), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13125), 1, aux_sym__immediate_decimal_token2, - STATE(7856), 1, + STATE(7418), 1, sym_comment, - ACTIONS(2581), 2, + ACTIONS(2229), 3, anon_sym_DOT_DOT2, + anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(2583), 5, - anon_sym_DOLLAR, + ACTIONS(2231), 4, anon_sym_LBRACE, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [250586] = 6, + [249958] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13698), 1, + ACTIONS(13127), 1, anon_sym_DOT, - ACTIONS(13701), 1, + ACTIONS(13130), 1, aux_sym__immediate_decimal_token2, - STATE(7857), 1, + STATE(7419), 1, sym_comment, - ACTIONS(2581), 3, - sym_identifier, + ACTIONS(2356), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(2583), 4, - anon_sym_DOLLAR, - anon_sym_LPAREN2, + ACTIONS(2358), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [250610] = 4, + [249982] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(7858), 1, - sym_comment, - ACTIONS(4002), 4, - ts_builtin_sym_end, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + ACTIONS(4198), 1, anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(4000), 5, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_DOT_DOT2, - [250630] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13705), 1, - anon_sym_COMMA, - ACTIONS(13707), 1, - anon_sym_DASH, - STATE(7859), 1, + STATE(7420), 1, sym_comment, - ACTIONS(13703), 7, - sym_identifier, - anon_sym_RBRACK, + STATE(10261), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4196), 6, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [250652] = 4, + anon_sym_DASH, + anon_sym_RBRACE, + [250006] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(7860), 1, + STATE(7421), 1, sym_comment, - ACTIONS(2439), 4, - anon_sym_DASH_DASH, + ACTIONS(901), 3, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token5, + ACTIONS(903), 6, + anon_sym_LBRACE, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2437), 5, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - [250672] = 4, + sym_filesize_unit, + sym_duration_unit, + [250026] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(7861), 1, - sym_comment, - ACTIONS(2549), 4, + ACTIONS(3314), 1, anon_sym_DASH_DASH, + ACTIONS(3316), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2547), 5, - sym_identifier, - anon_sym_DASH, + ACTIONS(13132), 1, anon_sym_DOT_DOT2, + STATE(7422), 1, + sym_comment, + ACTIONS(1844), 2, anon_sym_DOT, aux_sym_unquoted_token2, - [250692] = 4, + ACTIONS(3312), 2, + sym_identifier, + anon_sym_DASH, + ACTIONS(13134), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [250054] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(7862), 1, - sym_comment, - ACTIONS(3507), 4, - anon_sym_DASH_DASH, + ACTIONS(3358), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3505), 5, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, + ACTIONS(3362), 1, aux_sym_unquoted_token2, - [250712] = 4, + ACTIONS(3574), 1, + sym_cmd_identifier, + ACTIONS(12513), 1, + anon_sym_DOT, + ACTIONS(13136), 1, + aux_sym__immediate_decimal_token1, + STATE(7423), 1, + sym_comment, + ACTIONS(3576), 4, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [250082] = 7, ACTIONS(113), 1, anon_sym_POUND, - STATE(7863), 1, - sym_comment, - ACTIONS(2549), 3, - anon_sym_LPAREN2, - anon_sym_DOT, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(3576), 1, aux_sym_command_token1, - ACTIONS(2547), 6, + ACTIONS(12513), 1, + anon_sym_DOT, + ACTIONS(12804), 1, + aux_sym__immediate_decimal_token1, + STATE(7424), 1, + sym_comment, + ACTIONS(3574), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_LF2, - aux_sym_unquoted_token2, - [250732] = 6, - ACTIONS(113), 1, + [250108] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1249), 1, - anon_sym_LF, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - ACTIONS(4037), 1, + ACTIONS(3356), 1, + anon_sym_DASH_DASH, + ACTIONS(3358), 1, anon_sym_LPAREN2, - STATE(7864), 1, + ACTIONS(13138), 1, + anon_sym_DOT_DOT2, + STATE(7425), 1, sym_comment, - ACTIONS(1247), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, + ACTIONS(3354), 2, + sym_identifier, anon_sym_DASH, - anon_sym_RBRACE, - [250756] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(13675), 1, - aux_sym__immediate_decimal_token2, - STATE(7865), 1, - sym_comment, - ACTIONS(2437), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT2, + ACTIONS(3362), 2, anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(2439), 4, - anon_sym_LPAREN2, + ACTIONS(13140), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [250778] = 4, - ACTIONS(3), 1, + [250136] = 7, + ACTIONS(113), 1, anon_sym_POUND, - STATE(7866), 1, - sym_comment, - ACTIONS(917), 3, + ACTIONS(13142), 1, anon_sym_DOT_DOT2, + STATE(7426), 1, + sym_comment, + ACTIONS(1844), 2, anon_sym_DOT, - aux_sym_unquoted_token5, - ACTIONS(919), 6, - anon_sym_LBRACE, - anon_sym_LPAREN2, + aux_sym_unquoted_token2, + ACTIONS(3312), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3314), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(13144), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [250798] = 5, + [250162] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13711), 1, - anon_sym_COMMA, - ACTIONS(13713), 1, - anon_sym_DASH, - STATE(7867), 1, + ACTIONS(13146), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13148), 1, + aux_sym__immediate_decimal_token2, + STATE(7427), 1, sym_comment, - ACTIONS(13709), 7, - sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(2229), 2, + anon_sym_DASH, + aux_sym_unquoted_token2, + ACTIONS(2231), 5, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [250820] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(7868), 1, - sym_comment, - ACTIONS(2549), 3, + anon_sym_LBRACE, anon_sym_LPAREN2, anon_sym_DOT, - aux_sym_command_token1, - ACTIONS(2547), 6, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - aux_sym_unquoted_token2, - [250840] = 6, + [250186] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1255), 1, - anon_sym_LF, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - ACTIONS(4631), 1, + ACTIONS(2187), 1, anon_sym_LPAREN2, - STATE(7869), 1, + ACTIONS(4344), 1, + anon_sym_LF, + STATE(7428), 1, sym_comment, - ACTIONS(1253), 6, + STATE(10434), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4342), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [250864] = 6, + [250210] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - ACTIONS(1275), 1, - anon_sym_LF, - ACTIONS(4631), 1, + ACTIONS(2187), 1, anon_sym_LPAREN2, - STATE(7870), 1, + ACTIONS(4396), 1, + anon_sym_LF, + STATE(7429), 1, sym_comment, - ACTIONS(1273), 6, + STATE(10434), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4394), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [250888] = 6, - ACTIONS(3), 1, + [250234] = 8, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13715), 1, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(3576), 1, + anon_sym_LF, + ACTIONS(12513), 1, anon_sym_DOT, - ACTIONS(13717), 1, - aux_sym__immediate_decimal_token2, - STATE(7871), 1, + ACTIONS(13150), 1, + aux_sym__immediate_decimal_token1, + STATE(7430), 1, sym_comment, - ACTIONS(2581), 3, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(2583), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [250912] = 6, + ACTIONS(3574), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [250262] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1160), 1, - anon_sym_LF, - ACTIONS(1284), 1, - aux_sym_unquoted_token6, - ACTIONS(4895), 1, + ACTIONS(2187), 1, anon_sym_LPAREN2, - STATE(7872), 1, + ACTIONS(4424), 1, + anon_sym_LF, + STATE(7431), 1, sym_comment, - ACTIONS(1158), 6, + STATE(10434), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4422), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [250936] = 7, + [250286] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4008), 1, - aux_sym_command_token1, - ACTIONS(4010), 1, + ACTIONS(2187), 1, anon_sym_LPAREN2, - ACTIONS(4012), 1, - aux_sym_unquoted_token2, - ACTIONS(13520), 1, - anon_sym_DOT, - STATE(7873), 1, + ACTIONS(4428), 1, + anon_sym_LF, + STATE(7432), 1, sym_comment, - ACTIONS(4006), 5, + STATE(10434), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4426), 6, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_LF2, - [250962] = 5, - ACTIONS(3), 1, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [250310] = 7, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13719), 1, - aux_sym__immediate_decimal_token2, - STATE(7874), 1, - sym_comment, - ACTIONS(2547), 4, - sym_identifier, + ACTIONS(13152), 1, anon_sym_DOT_DOT2, + STATE(7433), 1, + sym_comment, + ACTIONS(3354), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3356), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3362), 2, anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(2549), 4, - anon_sym_DOLLAR, - anon_sym_LPAREN2, + ACTIONS(13154), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [250984] = 4, + [250336] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(7875), 1, - sym_comment, - ACTIONS(3507), 3, - anon_sym_LPAREN2, - anon_sym_DOT, + ACTIONS(3743), 1, aux_sym_command_token1, - ACTIONS(3505), 6, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - aux_sym_unquoted_token2, - [251004] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2724), 1, - anon_sym_DQUOTE, - ACTIONS(12867), 1, - sym_cmd_identifier, - ACTIONS(13721), 1, - anon_sym_RBRACK, - STATE(7019), 1, - sym__str_double_quotes, - STATE(7876), 1, - sym_comment, - STATE(7900), 1, - sym_val_string, - STATE(7987), 1, - aux_sym_command_list_repeat1, - STATE(8728), 1, - sym__command_name, - ACTIONS(2726), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [251036] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(7877), 1, - sym_comment, - ACTIONS(950), 3, + ACTIONS(13156), 1, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token5, - ACTIONS(952), 6, - anon_sym_in, - anon_sym_LPAREN2, + STATE(7434), 1, + sym_comment, + ACTIONS(13158), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [251056] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(13723), 1, - anon_sym_DOT, - ACTIONS(13726), 1, - aux_sym__immediate_decimal_token2, - STATE(7878), 1, - sym_comment, - ACTIONS(2583), 2, - anon_sym_LF, - anon_sym_LPAREN2, - ACTIONS(2581), 5, + ACTIONS(3741), 5, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - aux_sym_unquoted_token2, - [251080] = 6, - ACTIONS(3), 1, + anon_sym_LF2, + [250360] = 8, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13728), 1, - anon_sym_DOT, - ACTIONS(13731), 1, - aux_sym__immediate_decimal_token2, - STATE(7879), 1, - sym_comment, - ACTIONS(2581), 2, - sym_cmd_identifier, - aux_sym_unquoted_token2, - ACTIONS(2583), 5, - anon_sym_DASH_DASH, + ACTIONS(3358), 1, anon_sym_LPAREN2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [251104] = 5, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(12513), 1, + anon_sym_DOT, + ACTIONS(13160), 1, + aux_sym__immediate_decimal_token1, + STATE(7435), 1, + sym_comment, + ACTIONS(3576), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(3574), 3, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, + [250388] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13679), 1, + ACTIONS(13130), 1, aux_sym__immediate_decimal_token2, - STATE(7880), 1, + STATE(7436), 1, sym_comment, - ACTIONS(2581), 2, - sym_cmd_identifier, + ACTIONS(2356), 3, anon_sym_DOT_DOT2, - ACTIONS(2583), 6, - anon_sym_DASH_DASH, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(2358), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [251126] = 10, + [250410] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2724), 1, - anon_sym_DQUOTE, - ACTIONS(12867), 1, + ACTIONS(13162), 1, sym_cmd_identifier, - ACTIONS(13733), 1, + ACTIONS(13165), 1, anon_sym_RBRACK, - STATE(7019), 1, + ACTIONS(13167), 1, + anon_sym_DQUOTE, + STATE(6592), 1, sym__str_double_quotes, - STATE(7876), 1, - aux_sym_command_list_repeat1, - STATE(7881), 1, - sym_comment, - STATE(7900), 1, + STATE(7567), 1, sym_val_string, - STATE(8728), 1, + STATE(8125), 1, sym__command_name, - ACTIONS(2726), 2, + ACTIONS(13170), 2, sym__str_single_quotes, sym__str_back_ticks, - [251158] = 6, + STATE(7437), 2, + sym_comment, + aux_sym_command_list_repeat1, + [250440] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LF, - ACTIONS(12212), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(13735), 1, - anon_sym_DOT, - STATE(7882), 1, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + ACTIONS(3727), 1, + anon_sym_LPAREN2, + ACTIONS(4646), 1, + ts_builtin_sym_end, + ACTIONS(13173), 1, + aux_sym_command_token1, + STATE(7438), 1, sym_comment, - ACTIONS(2581), 6, + ACTIONS(3725), 5, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LF, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_RBRACE, - [251182] = 5, - ACTIONS(113), 1, + [250466] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13737), 1, + ACTIONS(13175), 1, aux_sym__immediate_decimal_token2, - STATE(7883), 1, + STATE(7439), 1, sym_comment, - ACTIONS(2581), 4, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, + ACTIONS(2356), 3, + anon_sym_DOT_DOT2, + anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(2583), 4, - ts_builtin_sym_end, + ACTIONS(2358), 5, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_LPAREN2, - anon_sym_DOT, - aux_sym_command_token1, - [251204] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [250488] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13707), 1, - anon_sym_DASH, - ACTIONS(13739), 1, - anon_sym_COMMA, - STATE(7884), 1, + ACTIONS(13066), 1, + aux_sym__immediate_decimal_token2, + STATE(7440), 1, sym_comment, - ACTIONS(13703), 7, - sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [251226] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(2006), 1, + ACTIONS(2229), 3, + anon_sym_DOT_DOT2, + anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(3876), 1, - aux_sym_command_token1, - ACTIONS(3878), 1, + ACTIONS(2231), 5, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_LPAREN2, - ACTIONS(13456), 1, - anon_sym_DOT, - STATE(7885), 1, - sym_comment, - ACTIONS(3874), 5, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [251252] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [250510] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13741), 1, + ACTIONS(13041), 1, aux_sym__immediate_decimal_token2, - STATE(7886), 1, + STATE(7441), 1, sym_comment, - ACTIONS(2581), 3, + ACTIONS(2229), 3, anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(2583), 5, + ACTIONS(2231), 5, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [251274] = 5, + [250532] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13743), 1, + ACTIONS(13177), 1, aux_sym__immediate_decimal_token2, - STATE(7887), 1, + STATE(7442), 1, sym_comment, - ACTIONS(2547), 3, + ACTIONS(2362), 3, anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(2549), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(2364), 5, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [251296] = 10, + [250554] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2724), 1, - anon_sym_DQUOTE, - ACTIONS(12867), 1, - sym_cmd_identifier, - ACTIONS(13745), 1, - anon_sym_RBRACK, - STATE(7019), 1, - sym__str_double_quotes, - STATE(7888), 1, + STATE(7443), 1, sym_comment, - STATE(7896), 1, - aux_sym_command_list_repeat1, - STATE(7900), 1, - sym_val_string, - STATE(8728), 1, - sym__command_name, - ACTIONS(2726), 2, + ACTIONS(1047), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1049), 7, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [251328] = 6, - ACTIONS(3), 1, + [250574] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13747), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13749), 1, - aux_sym__immediate_decimal_token2, - STATE(7889), 1, + ACTIONS(3693), 1, + aux_sym_command_token1, + ACTIONS(13179), 1, + anon_sym_DOT_DOT2, + STATE(7444), 1, sym_comment, - ACTIONS(2437), 2, - anon_sym_DASH, - aux_sym_unquoted_token2, - ACTIONS(2439), 5, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT, - [251352] = 6, + ACTIONS(13181), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3691), 5, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_LF2, + [250598] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2845), 1, - anon_sym_LF, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(13169), 1, - anon_sym_DOT, - STATE(7890), 1, + ACTIONS(3701), 1, + aux_sym_command_token1, + ACTIONS(13183), 1, + anon_sym_DOT_DOT2, + STATE(7445), 1, sym_comment, - ACTIONS(2843), 6, + ACTIONS(13185), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3699), 5, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [251376] = 6, + anon_sym_LF2, + [250622] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13751), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13753), 1, - aux_sym__immediate_decimal_token2, - STATE(7891), 1, + STATE(7446), 1, sym_comment, - ACTIONS(2437), 3, + ACTIONS(893), 3, anon_sym_DOT_DOT2, anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(2439), 4, - anon_sym_in, - anon_sym_LPAREN2, + aux_sym_unquoted_token5, + ACTIONS(895), 6, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [251400] = 4, + sym_filesize_unit, + sym_duration_unit, + [250642] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(7892), 1, - sym_comment, - ACTIONS(2439), 3, - anon_sym_LPAREN2, - anon_sym_DOT, + ACTIONS(3713), 1, aux_sym_command_token1, - ACTIONS(2437), 6, + ACTIONS(13187), 1, + anon_sym_DOT_DOT2, + STATE(7447), 1, + sym_comment, + ACTIONS(13189), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3711), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_LF2, - aux_sym_unquoted_token2, - [251420] = 5, + [250666] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13271), 1, - aux_sym__immediate_decimal_token2, - STATE(7893), 1, + STATE(7448), 1, sym_comment, - ACTIONS(2437), 2, - sym_cmd_identifier, + ACTIONS(901), 3, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token5, + ACTIONS(903), 6, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [250686] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(7449), 1, + sym_comment, + ACTIONS(1037), 2, anon_sym_DOT_DOT2, - ACTIONS(2439), 6, + anon_sym_DOT, + ACTIONS(1039), 7, + sym_cmd_identifier, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [251442] = 7, + [250706] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13126), 1, - anon_sym_COMMA, - ACTIONS(13128), 1, - anon_sym_DASH, - ACTIONS(13755), 1, - anon_sym_EQ, - STATE(7867), 1, - sym_param_value, - STATE(7894), 1, + ACTIONS(13191), 1, + aux_sym__immediate_decimal_token2, + STATE(7450), 1, sym_comment, - ACTIONS(13124), 5, - sym_identifier, + ACTIONS(2362), 3, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(2364), 5, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [251468] = 5, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [250728] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13275), 1, - aux_sym__immediate_decimal_token2, - STATE(7895), 1, + STATE(7451), 1, sym_comment, - ACTIONS(2437), 4, - sym_identifier, + ACTIONS(934), 3, anon_sym_DOT_DOT2, anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(2439), 4, - anon_sym_DOLLAR, - anon_sym_LPAREN2, + aux_sym_unquoted_token5, + ACTIONS(936), 6, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [251490] = 10, + sym_filesize_unit, + sym_duration_unit, + [250748] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2724), 1, - anon_sym_DQUOTE, - ACTIONS(12867), 1, + STATE(7452), 1, + sym_comment, + ACTIONS(1041), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1043), 7, sym_cmd_identifier, - ACTIONS(13757), 1, - anon_sym_RBRACK, - STATE(7019), 1, - sym__str_double_quotes, - STATE(7896), 1, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [250768] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(920), 1, + anon_sym_DASH, + STATE(7453), 1, sym_comment, - STATE(7900), 1, - sym_val_string, - STATE(7987), 1, - aux_sym_command_list_repeat1, - STATE(8728), 1, - sym__command_name, - ACTIONS(2726), 2, + ACTIONS(922), 8, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [251522] = 4, - ACTIONS(113), 1, + [250788] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7897), 1, + ACTIONS(1139), 1, + anon_sym_DASH, + STATE(7454), 1, sym_comment, - ACTIONS(3507), 4, + ACTIONS(1209), 8, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(3505), 5, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - [251542] = 4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [250808] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(7898), 1, + STATE(7455), 1, sym_comment, - ACTIONS(3507), 4, + ACTIONS(3769), 4, ts_builtin_sym_end, anon_sym_LF, - anon_sym_LPAREN2, - anon_sym_DOT, - ACTIONS(3505), 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3767), 5, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - aux_sym_unquoted_token2, - [251562] = 3, + anon_sym_DOT_DOT2, + [250828] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(7899), 1, + ACTIONS(1211), 1, + anon_sym_DASH, + STATE(7456), 1, sym_comment, - ACTIONS(6345), 9, - anon_sym_EQ, + ACTIONS(1213), 8, sym_cmd_identifier, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN2, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [251580] = 3, + [250848] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(7900), 1, + ACTIONS(1215), 1, + anon_sym_DASH, + STATE(7457), 1, sym_comment, - ACTIONS(6349), 9, - anon_sym_EQ, + ACTIONS(1217), 8, sym_cmd_identifier, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN2, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [251598] = 7, + [250868] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3518), 1, - anon_sym_DASH, - ACTIONS(13759), 1, - anon_sym_DOT_DOT2, - STATE(7901), 1, + STATE(7458), 1, sym_comment, - ACTIONS(1934), 2, + ACTIONS(934), 3, + anon_sym_DOT_DOT2, anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(13761), 2, + aux_sym_unquoted_token5, + ACTIONS(936), 6, + anon_sym_LBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(3520), 3, - anon_sym_DOLLAR, + sym_filesize_unit, + sym_duration_unit, + [250888] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13193), 1, + anon_sym_DOT, + ACTIONS(13196), 1, + aux_sym__immediate_decimal_token2, + STATE(7459), 1, + sym_comment, + ACTIONS(2356), 2, + sym_cmd_identifier, + aux_sym_unquoted_token2, + ACTIONS(2358), 5, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [251624] = 6, + anon_sym_LPAREN2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [250912] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12977), 1, + ACTIONS(12933), 1, aux_sym__immediate_decimal_token2, - ACTIONS(13763), 1, - anon_sym_DOT, - STATE(7902), 1, + STATE(7460), 1, sym_comment, - ACTIONS(2581), 2, - anon_sym_DASH, + ACTIONS(2356), 2, + sym_cmd_identifier, anon_sym_DOT_DOT2, - ACTIONS(2583), 5, - anon_sym_DOLLAR, + ACTIONS(2358), 6, anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [251648] = 7, - ACTIONS(113), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [250934] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13765), 1, - anon_sym_DOT_DOT2, - STATE(7903), 1, + ACTIONS(12939), 1, + aux_sym__immediate_decimal_token2, + STATE(7461), 1, sym_comment, - ACTIONS(2843), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(2845), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2851), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(13767), 2, + ACTIONS(2229), 2, + sym_cmd_identifier, + anon_sym_DOT_DOT2, + ACTIONS(2231), 6, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [251674] = 5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [250956] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13769), 1, + ACTIONS(13198), 1, anon_sym_QMARK2, - STATE(7904), 1, + STATE(7462), 1, sym_comment, - ACTIONS(1070), 3, + ACTIONS(1024), 3, anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(1072), 5, + ACTIONS(1026), 5, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [251696] = 5, + [250978] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13769), 1, + ACTIONS(13198), 1, anon_sym_QMARK2, - STATE(7905), 1, + STATE(7463), 1, sym_comment, - ACTIONS(1070), 3, + ACTIONS(1024), 3, anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(1072), 5, + ACTIONS(1026), 5, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [251718] = 7, + [251000] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13013), 1, - anon_sym_DASH, - ACTIONS(13687), 1, + ACTIONS(13200), 1, + aux_sym__immediate_decimal_token2, + STATE(7464), 1, + sym_comment, + ACTIONS(2362), 2, + sym_cmd_identifier, + anon_sym_DOT_DOT2, + ACTIONS(2364), 6, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [251022] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13204), 1, anon_sym_COMMA, - ACTIONS(13755), 1, - anon_sym_EQ, - STATE(7859), 1, - sym_param_value, - STATE(7906), 1, + ACTIONS(13206), 1, + anon_sym_DASH, + STATE(7465), 1, sym_comment, - ACTIONS(13009), 5, + ACTIONS(13202), 7, sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [251744] = 7, + [251044] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13017), 1, - anon_sym_COMMA, - ACTIONS(13019), 1, + ACTIONS(13206), 1, anon_sym_DASH, - ACTIONS(13755), 1, - anon_sym_EQ, - STATE(7907), 1, + ACTIONS(13208), 1, + anon_sym_COMMA, + STATE(7466), 1, sym_comment, - STATE(7965), 1, - sym_param_value, - ACTIONS(13015), 5, + ACTIONS(13202), 7, sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [251770] = 6, - ACTIONS(113), 1, + [251066] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3868), 1, - aux_sym_command_token1, - ACTIONS(13771), 1, - anon_sym_DOT_DOT2, - STATE(7908), 1, + ACTIONS(13212), 1, + anon_sym_COMMA, + ACTIONS(13214), 1, + anon_sym_DASH, + STATE(7467), 1, sym_comment, - ACTIONS(13773), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3866), 5, - anon_sym_SEMI, - anon_sym_LF, + ACTIONS(13210), 7, + sym_identifier, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_LF2, - [251794] = 6, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [251088] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13775), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13777), 1, - aux_sym__immediate_decimal_token2, - STATE(7909), 1, - sym_comment, - ACTIONS(2437), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(2439), 4, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [251818] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(7910), 1, + ACTIONS(12590), 1, + anon_sym_COMMA, + ACTIONS(12592), 1, + anon_sym_DASH, + ACTIONS(13216), 1, + anon_sym_EQ, + STATE(7468), 1, sym_comment, - ACTIONS(3962), 4, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3960), 5, - anon_sym_SEMI, + STATE(7512), 1, + sym_param_value, + ACTIONS(12588), 5, + sym_identifier, anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_DOT_DOT2, - [251838] = 7, + [251114] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(13169), 1, - anon_sym_DOT, - ACTIONS(13663), 1, + ACTIONS(13218), 1, aux_sym__immediate_decimal_token1, - STATE(7911), 1, + ACTIONS(13220), 1, + aux_sym_unquoted_token2, + STATE(7469), 1, sym_comment, - ACTIONS(3750), 2, + ACTIONS(922), 3, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3748), 4, + anon_sym_LPAREN2, + ACTIONS(920), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [251864] = 7, + [251138] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4008), 1, - aux_sym_command_token1, - ACTIONS(4010), 1, - anon_sym_LPAREN2, - ACTIONS(4012), 1, - aux_sym_unquoted_token2, - ACTIONS(13520), 1, + ACTIONS(13222), 1, anon_sym_DOT, - STATE(7912), 1, - sym_comment, - ACTIONS(4006), 5, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [251890] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(7913), 1, + ACTIONS(13225), 1, + aux_sym__immediate_decimal_token2, + STATE(7470), 1, sym_comment, - ACTIONS(950), 3, + ACTIONS(2356), 3, + anon_sym_RBRACK, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token5, - ACTIONS(952), 6, - anon_sym_LBRACE, + aux_sym_unquoted_token2, + ACTIONS(2358), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [251910] = 7, + sym__entry_separator, + [251162] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - ACTIONS(4037), 1, - anon_sym_LPAREN2, - ACTIONS(4617), 1, - ts_builtin_sym_end, - ACTIONS(13779), 1, + ACTIONS(3693), 1, aux_sym_command_token1, - STATE(7914), 1, + ACTIONS(13227), 1, + anon_sym_DOT_DOT2, + STATE(7471), 1, sym_comment, - ACTIONS(4035), 5, + ACTIONS(13229), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3691), 5, anon_sym_SEMI, anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [251936] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [251186] = 6, + ACTIONS(113), 1, anon_sym_POUND, - STATE(7915), 1, - sym_comment, - ACTIONS(917), 3, + ACTIONS(3701), 1, + aux_sym_command_token1, + ACTIONS(13231), 1, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token5, - ACTIONS(919), 6, - anon_sym_in, - anon_sym_LPAREN2, + STATE(7472), 1, + sym_comment, + ACTIONS(13233), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [251956] = 5, + ACTIONS(3699), 5, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [251210] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13781), 1, + ACTIONS(13235), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13237), 1, aux_sym__immediate_decimal_token2, - STATE(7916), 1, + STATE(7473), 1, sym_comment, - ACTIONS(2547), 2, - sym_cmd_identifier, + ACTIONS(2229), 3, + sym_identifier, + anon_sym_DASH, anon_sym_DOT_DOT2, - ACTIONS(2549), 6, + ACTIONS(2231), 4, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [251978] = 6, + [251234] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3951), 1, + ACTIONS(3713), 1, aux_sym_command_token1, - ACTIONS(13783), 1, + ACTIONS(13239), 1, anon_sym_DOT_DOT2, - STATE(7917), 1, + STATE(7474), 1, sym_comment, - ACTIONS(13785), 2, + ACTIONS(13241), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(3949), 5, + ACTIONS(3711), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [252002] = 7, + [251258] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2006), 1, + ACTIONS(3362), 1, aux_sym_unquoted_token2, - ACTIONS(3876), 1, + ACTIONS(3576), 1, aux_sym_command_token1, - ACTIONS(3878), 1, - anon_sym_LPAREN2, - ACTIONS(13456), 1, + ACTIONS(12513), 1, anon_sym_DOT, - STATE(7918), 1, + ACTIONS(12876), 1, + aux_sym__immediate_decimal_token1, + STATE(7475), 1, sym_comment, - ACTIONS(3874), 5, + ACTIONS(3574), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_LF2, - [252028] = 5, + anon_sym_RBRACE, + [251284] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13534), 1, + ACTIONS(13243), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13245), 1, aux_sym__immediate_decimal_token2, - STATE(7919), 1, + STATE(7476), 1, sym_comment, - ACTIONS(2437), 4, + ACTIONS(2229), 3, anon_sym_SEMI, - anon_sym_LF, anon_sym_PIPE, aux_sym_unquoted_token2, - ACTIONS(2439), 4, + ACTIONS(2231), 4, ts_builtin_sym_end, + anon_sym_LF, anon_sym_LPAREN2, anon_sym_DOT, - aux_sym_command_token1, - [252050] = 4, - ACTIONS(3), 1, + [251308] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(936), 1, - anon_sym_DASH, - STATE(7920), 1, + ACTIONS(13247), 1, + aux_sym__immediate_decimal_token2, + STATE(7477), 1, sym_comment, - ACTIONS(938), 8, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + ACTIONS(2358), 3, + anon_sym_LF, anon_sym_LPAREN2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [252070] = 7, + anon_sym_DOT, + ACTIONS(2356), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [251330] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(3520), 1, - aux_sym_command_token1, - ACTIONS(3522), 1, + ACTIONS(12861), 1, + aux_sym__immediate_decimal_token2, + STATE(7478), 1, + sym_comment, + ACTIONS(2231), 3, + anon_sym_LF, anon_sym_LPAREN2, - ACTIONS(13319), 1, anon_sym_DOT, - STATE(7921), 1, - sym_comment, - ACTIONS(3518), 5, + ACTIONS(2229), 5, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [251352] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(13249), 1, + aux_sym__immediate_decimal_token2, + STATE(7479), 1, + sym_comment, + ACTIONS(2364), 3, anon_sym_LF, + anon_sym_LPAREN2, + anon_sym_DOT, + ACTIONS(2362), 5, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [252096] = 6, + aux_sym_unquoted_token2, + [251374] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13741), 1, + ACTIONS(13251), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13253), 1, aux_sym__immediate_decimal_token2, - ACTIONS(13787), 1, + STATE(7480), 1, + sym_comment, + ACTIONS(2229), 3, + anon_sym_DOT_DOT2, anon_sym_DOT, - STATE(7922), 1, + aux_sym_unquoted_token2, + ACTIONS(2231), 4, + anon_sym_in, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [251398] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13175), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(13255), 1, + anon_sym_DOT, + STATE(7481), 1, sym_comment, - ACTIONS(2581), 2, + ACTIONS(2356), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(2583), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(2358), 5, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [252120] = 8, + [251422] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2845), 1, + STATE(7482), 1, + sym_comment, + ACTIONS(2231), 4, anon_sym_DASH_DASH, - ACTIONS(2847), 1, anon_sym_LPAREN2, - ACTIONS(13790), 1, - anon_sym_DOT_DOT2, - STATE(7923), 1, - sym_comment, - ACTIONS(2843), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2229), 5, sym_identifier, anon_sym_DASH, - ACTIONS(2851), 2, + anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(13792), 2, + [251442] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(7483), 1, + sym_comment, + ACTIONS(2364), 4, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [252148] = 6, + ACTIONS(2362), 5, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token2, + [251462] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3868), 1, - aux_sym_command_token1, - ACTIONS(13794), 1, - anon_sym_DOT_DOT2, - STATE(7924), 1, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(3316), 1, + anon_sym_LPAREN2, + ACTIONS(12748), 1, + anon_sym_DOT, + STATE(7484), 1, + sym_comment, + ACTIONS(3314), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3312), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [251488] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(7485), 1, sym_comment, - ACTIONS(13796), 2, + ACTIONS(2404), 4, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(3866), 5, + ACTIONS(2402), 5, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token2, + [251508] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(13258), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13260), 1, + aux_sym_unquoted_token2, + STATE(7486), 1, + sym_comment, + ACTIONS(922), 2, + anon_sym_LPAREN2, + aux_sym_command_token1, + ACTIONS(920), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [252172] = 6, + anon_sym_LF2, + [251532] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - ACTIONS(3876), 1, + ACTIONS(2358), 1, anon_sym_LF, - ACTIONS(13456), 1, + ACTIONS(11636), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(13262), 1, anon_sym_DOT, - STATE(7925), 1, + STATE(7487), 1, sym_comment, - ACTIONS(3874), 6, + ACTIONS(2356), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [252196] = 4, + [251556] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(7926), 1, + ACTIONS(13264), 1, + aux_sym__immediate_decimal_token2, + STATE(7488), 1, + sym_comment, + ACTIONS(2356), 4, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, + aux_sym_unquoted_token2, + ACTIONS(2358), 4, + ts_builtin_sym_end, + anon_sym_LPAREN2, + anon_sym_DOT, + aux_sym_command_token1, + [251578] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(3743), 1, + aux_sym_command_token1, + ACTIONS(13266), 1, + anon_sym_DOT_DOT2, + STATE(7489), 1, sym_comment, - ACTIONS(4002), 3, + ACTIONS(13268), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - ACTIONS(4000), 6, + ACTIONS(3741), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOT_DOT2, - anon_sym_LF2, - [252216] = 4, + anon_sym_RBRACE, + [251602] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(7927), 1, + ACTIONS(13247), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(13270), 1, + anon_sym_DOT, + STATE(7490), 1, sym_comment, - ACTIONS(2549), 4, + ACTIONS(2358), 2, + anon_sym_LF, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(2547), 5, - anon_sym_RBRACK, + ACTIONS(2356), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - [252236] = 4, + aux_sym_unquoted_token2, + [251626] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1243), 1, - anon_sym_DASH, - STATE(7928), 1, - sym_comment, - ACTIONS(1290), 8, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_LPAREN2, + ACTIONS(2838), 1, anon_sym_DQUOTE, + ACTIONS(12164), 1, + sym_cmd_identifier, + ACTIONS(13273), 1, + anon_sym_RBRACK, + STATE(6592), 1, + sym__str_double_quotes, + STATE(7491), 1, + sym_comment, + STATE(7495), 1, + aux_sym_command_list_repeat1, + STATE(7567), 1, + sym_val_string, + STATE(8125), 1, + sym__command_name, + ACTIONS(2840), 2, sym__str_single_quotes, sym__str_back_ticks, - [252256] = 6, + [251658] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3951), 1, - aux_sym_command_token1, - ACTIONS(13798), 1, - anon_sym_DOT_DOT2, - STATE(7929), 1, + STATE(7492), 1, sym_comment, - ACTIONS(13800), 2, + ACTIONS(3769), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(3949), 5, + aux_sym_command_token1, + ACTIONS(3767), 6, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DOT_DOT2, anon_sym_LF2, - [252280] = 6, + [251678] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3966), 1, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(12513), 1, + anon_sym_DOT, + STATE(7493), 1, + sym_comment, + ACTIONS(3356), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3354), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [251704] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(12792), 1, + aux_sym__immediate_decimal_token2, + STATE(7494), 1, + sym_comment, + ACTIONS(2229), 4, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, + aux_sym_unquoted_token2, + ACTIONS(2231), 4, + ts_builtin_sym_end, + anon_sym_LPAREN2, + anon_sym_DOT, aux_sym_command_token1, - ACTIONS(13802), 1, - anon_sym_DOT_DOT2, - STATE(7930), 1, + [251726] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2838), 1, + anon_sym_DQUOTE, + ACTIONS(12164), 1, + sym_cmd_identifier, + ACTIONS(13275), 1, + anon_sym_RBRACK, + STATE(6592), 1, + sym__str_double_quotes, + STATE(7437), 1, + aux_sym_command_list_repeat1, + STATE(7495), 1, + sym_comment, + STATE(7567), 1, + sym_val_string, + STATE(8125), 1, + sym__command_name, + ACTIONS(2840), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [251758] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1091), 1, + anon_sym_LF, + ACTIONS(1149), 1, + aux_sym_unquoted_token6, + ACTIONS(3783), 1, + anon_sym_LPAREN2, + STATE(7496), 1, + sym_comment, + ACTIONS(1089), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [251782] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(3775), 1, + anon_sym_LPAREN2, + ACTIONS(13087), 1, + anon_sym_DOT, + STATE(7497), 1, + sym_comment, + ACTIONS(3773), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3771), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [251808] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(3648), 1, + anon_sym_LPAREN2, + ACTIONS(3650), 1, + aux_sym_unquoted_token2, + ACTIONS(13004), 1, + anon_sym_DOT, + STATE(7498), 1, + sym_comment, + ACTIONS(3646), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3644), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [251834] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(7499), 1, sym_comment, - ACTIONS(13804), 2, + ACTIONS(3723), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(3964), 5, + aux_sym_command_token1, + ACTIONS(3721), 6, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DOT_DOT2, anon_sym_LF2, - [252304] = 6, + [251854] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13806), 1, - anon_sym_DOT, - ACTIONS(13809), 1, + ACTIONS(13277), 1, aux_sym__immediate_decimal_token2, - STATE(7931), 1, + STATE(7500), 1, sym_comment, - ACTIONS(2581), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT2, + ACTIONS(2362), 4, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, aux_sym_unquoted_token2, - ACTIONS(2583), 4, + ACTIONS(2364), 4, + ts_builtin_sym_end, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [252328] = 5, + anon_sym_DOT, + aux_sym_command_token1, + [251876] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1290), 1, - anon_sym_LPAREN2, - ACTIONS(10262), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(7932), 1, + STATE(7501), 1, sym_comment, - ACTIONS(1243), 7, + ACTIONS(2231), 3, + anon_sym_LPAREN2, + anon_sym_DOT, + aux_sym_command_token1, + ACTIONS(2229), 6, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [251896] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(12513), 1, + anon_sym_DOT, + ACTIONS(13103), 1, + aux_sym__immediate_decimal_token1, + STATE(7502), 1, + sym_comment, + ACTIONS(3576), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3574), 4, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, + [251922] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(7503), 1, + sym_comment, + ACTIONS(2364), 3, + anon_sym_LPAREN2, + anon_sym_DOT, + aux_sym_command_token1, + ACTIONS(2362), 6, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [251942] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(7504), 1, + sym_comment, + ACTIONS(2404), 3, + anon_sym_LPAREN2, + anon_sym_DOT, + aux_sym_command_token1, + ACTIONS(2402), 6, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_RBRACE, - [252350] = 4, + aux_sym_unquoted_token2, + [251962] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(7933), 1, + STATE(7505), 1, sym_comment, - ACTIONS(3962), 3, + ACTIONS(3769), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, aux_sym_command_token1, - ACTIONS(3960), 6, + ACTIONS(3767), 6, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [252370] = 7, - ACTIONS(3), 1, + [251982] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1161), 1, + anon_sym_LF, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + ACTIONS(3727), 1, + anon_sym_LPAREN2, + STATE(7506), 1, + sym_comment, + ACTIONS(1159), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [252006] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1131), 1, + anon_sym_LF, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + ACTIONS(3841), 1, + anon_sym_LPAREN2, + STATE(7507), 1, + sym_comment, + ACTIONS(1129), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [252030] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2843), 1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + ACTIONS(1137), 1, + anon_sym_LF, + ACTIONS(3841), 1, + anon_sym_LPAREN2, + STATE(7508), 1, + sym_comment, + ACTIONS(1135), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, anon_sym_DASH, - ACTIONS(13811), 1, + anon_sym_RBRACE, + [252054] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(3759), 1, + aux_sym_command_token1, + ACTIONS(9438), 1, anon_sym_DOT_DOT2, - STATE(7934), 1, + STATE(7509), 1, sym_comment, - ACTIONS(2851), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(13813), 2, + ACTIONS(9440), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2845), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [252396] = 8, + ACTIONS(3757), 5, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [252078] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2847), 1, - anon_sym_LPAREN2, - ACTIONS(2851), 1, + ACTIONS(1844), 1, aux_sym_unquoted_token2, - ACTIONS(13169), 1, + ACTIONS(3314), 1, + aux_sym_command_token1, + ACTIONS(3316), 1, + anon_sym_LPAREN2, + ACTIONS(12748), 1, anon_sym_DOT, - ACTIONS(13815), 1, - aux_sym__immediate_decimal_token1, - STATE(7935), 1, + STATE(7510), 1, sym_comment, - ACTIONS(3750), 2, - ts_builtin_sym_end, + ACTIONS(3312), 5, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_LF2, + [252104] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(7511), 1, + sym_comment, + ACTIONS(3723), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym_command_token1, - ACTIONS(3748), 3, + ACTIONS(3721), 6, anon_sym_SEMI, anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, - [252424] = 8, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [252124] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2847), 1, - anon_sym_LPAREN2, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(3748), 1, - sym_cmd_identifier, - ACTIONS(13169), 1, - anon_sym_DOT, - ACTIONS(13817), 1, - aux_sym__immediate_decimal_token1, - STATE(7936), 1, + ACTIONS(13281), 1, + anon_sym_COMMA, + ACTIONS(13283), 1, + anon_sym_DASH, + STATE(7512), 1, sym_comment, - ACTIONS(3750), 4, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [252452] = 8, + ACTIONS(13279), 7, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [252146] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2847), 1, + ACTIONS(3356), 1, + aux_sym_command_token1, + ACTIONS(3358), 1, anon_sym_LPAREN2, - ACTIONS(2851), 1, + ACTIONS(3362), 1, aux_sym_unquoted_token2, - ACTIONS(3750), 1, - anon_sym_LF, - ACTIONS(13169), 1, + ACTIONS(12513), 1, anon_sym_DOT, - ACTIONS(13819), 1, - aux_sym__immediate_decimal_token1, - STATE(7937), 1, + STATE(7513), 1, sym_comment, - ACTIONS(3748), 4, + ACTIONS(3354), 5, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [252480] = 6, + anon_sym_LF2, + [252172] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13196), 1, + aux_sym__immediate_decimal_token2, + STATE(7514), 1, + sym_comment, + ACTIONS(2356), 2, + sym_cmd_identifier, + aux_sym_unquoted_token2, + ACTIONS(2358), 6, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [252194] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13821), 1, + ACTIONS(13285), 1, aux_sym__immediate_decimal_token1, - ACTIONS(13823), 1, + ACTIONS(13287), 1, aux_sym__immediate_decimal_token2, - STATE(7938), 1, + STATE(7515), 1, sym_comment, - ACTIONS(2437), 3, + ACTIONS(2229), 3, anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(2439), 4, + ACTIONS(2231), 4, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [252504] = 7, + [252218] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1934), 1, + ACTIONS(1844), 1, aux_sym_unquoted_token2, - ACTIONS(3522), 1, - anon_sym_LPAREN2, - ACTIONS(13319), 1, + ACTIONS(3314), 1, + anon_sym_LF, + ACTIONS(12748), 1, anon_sym_DOT, - STATE(7939), 1, + STATE(7516), 1, sym_comment, - ACTIONS(3520), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3518), 4, + ACTIONS(3312), 6, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [252530] = 6, + anon_sym_RBRACE, + [252242] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3966), 1, - aux_sym_command_token1, - ACTIONS(13825), 1, - anon_sym_DOT_DOT2, - STATE(7940), 1, + ACTIONS(1209), 1, + anon_sym_LPAREN2, + ACTIONS(9739), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(7517), 1, sym_comment, - ACTIONS(13827), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3964), 5, + ACTIONS(1139), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_RBRACE, - [252554] = 4, + [252264] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1414), 1, - anon_sym_DASH, - STATE(7941), 1, + ACTIONS(13028), 1, + aux_sym__immediate_decimal_token2, + STATE(7518), 1, sym_comment, - ACTIONS(1416), 8, + ACTIONS(2229), 2, sym_cmd_identifier, - anon_sym_DOLLAR, + aux_sym_unquoted_token2, + ACTIONS(2231), 6, anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_LPAREN2, + anon_sym_DOT, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [252574] = 7, + [252286] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2845), 1, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(3773), 1, aux_sym_command_token1, - ACTIONS(2847), 1, + ACTIONS(3775), 1, anon_sym_LPAREN2, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(13169), 1, + ACTIONS(13087), 1, anon_sym_DOT, - STATE(7942), 1, + STATE(7519), 1, sym_comment, - ACTIONS(2843), 5, + ACTIONS(3771), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [252600] = 6, + anon_sym_LF2, + [252312] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, + ACTIONS(3646), 1, + aux_sym_command_token1, + ACTIONS(3648), 1, anon_sym_LPAREN2, - ACTIONS(4325), 1, + ACTIONS(3650), 1, + aux_sym_unquoted_token2, + ACTIONS(13004), 1, + anon_sym_DOT, + STATE(7520), 1, + sym_comment, + ACTIONS(3644), 5, + anon_sym_SEMI, anon_sym_LF, - STATE(7943), 1, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_LF2, + [252338] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(3356), 1, + anon_sym_LF, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(12513), 1, + anon_sym_DOT, + STATE(7521), 1, sym_comment, - STATE(11424), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4323), 6, + ACTIONS(3354), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [252624] = 4, + [252362] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1418), 1, - anon_sym_DASH, - STATE(7944), 1, + ACTIONS(13289), 1, + aux_sym__immediate_decimal_token2, + STATE(7522), 1, sym_comment, - ACTIONS(1420), 8, + ACTIONS(2362), 2, sym_cmd_identifier, - anon_sym_DOLLAR, + aux_sym_unquoted_token2, + ACTIONS(2364), 6, anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_LPAREN2, + anon_sym_DOT, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [252644] = 6, + [252384] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - ACTIONS(4377), 1, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(3773), 1, anon_sym_LF, - STATE(7945), 1, + ACTIONS(13087), 1, + anon_sym_DOT, + STATE(7523), 1, sym_comment, - STATE(11424), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4375), 6, + ACTIONS(3771), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [252668] = 4, + [252408] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(7946), 1, - sym_comment, - ACTIONS(2439), 4, - ts_builtin_sym_end, + ACTIONS(3646), 1, anon_sym_LF, - anon_sym_LPAREN2, + ACTIONS(3650), 1, + aux_sym_unquoted_token2, + ACTIONS(13004), 1, anon_sym_DOT, - ACTIONS(2437), 5, + STATE(7524), 1, + sym_comment, + ACTIONS(3644), 6, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - aux_sym_unquoted_token2, - [252688] = 6, + anon_sym_RBRACE, + [252432] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2838), 1, + anon_sym_DQUOTE, + ACTIONS(12164), 1, + sym_cmd_identifier, + ACTIONS(13291), 1, + anon_sym_RBRACK, + STATE(6592), 1, + sym__str_double_quotes, + STATE(7437), 1, + aux_sym_command_list_repeat1, + STATE(7525), 1, + sym_comment, + STATE(7567), 1, + sym_val_string, + STATE(8125), 1, + sym__command_name, + ACTIONS(2840), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [252464] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4018), 1, - aux_sym_command_token1, - ACTIONS(9746), 1, + ACTIONS(13225), 1, + aux_sym__immediate_decimal_token2, + STATE(7526), 1, + sym_comment, + ACTIONS(2356), 4, + anon_sym_RBRACK, anon_sym_DOT_DOT2, - STATE(7947), 1, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(2358), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [252486] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(13077), 1, + aux_sym__immediate_decimal_token2, + STATE(7527), 1, sym_comment, - ACTIONS(9748), 2, + ACTIONS(2229), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(2231), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(4016), 5, + sym__entry_separator, + [252508] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(3314), 1, + aux_sym_command_token1, + ACTIONS(3316), 1, + anon_sym_LPAREN2, + ACTIONS(12748), 1, + anon_sym_DOT, + STATE(7528), 1, + sym_comment, + ACTIONS(3312), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_LF2, - [252712] = 6, + anon_sym_RBRACE, + [252534] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3312), 1, + anon_sym_DASH, + ACTIONS(13293), 1, + anon_sym_DOT_DOT2, + STATE(7529), 1, + sym_comment, + ACTIONS(1844), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(13295), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3314), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [252560] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13829), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13831), 1, + STATE(7530), 1, + sym_comment, + ACTIONS(2231), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(2229), 5, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym__unquoted_in_list_token2, + [252580] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13297), 1, + anon_sym_DOT, + ACTIONS(13299), 1, + aux_sym__immediate_decimal_token2, + STATE(7531), 1, + sym_comment, + ACTIONS(2356), 3, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + ACTIONS(2358), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [252604] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(13301), 1, + aux_sym__immediate_decimal_token2, + STATE(7532), 1, + sym_comment, + ACTIONS(2362), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT2, + anon_sym_DOT, aux_sym_unquoted_token2, - STATE(7948), 1, + ACTIONS(2364), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [252626] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(7533), 1, sym_comment, - ACTIONS(938), 3, + ACTIONS(2231), 4, ts_builtin_sym_end, anon_sym_LF, anon_sym_LPAREN2, - ACTIONS(936), 4, + anon_sym_DOT, + ACTIONS(2229), 5, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [252736] = 4, + aux_sym_unquoted_token2, + [252646] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(7949), 1, + STATE(7534), 1, sym_comment, - ACTIONS(3507), 3, + ACTIONS(2364), 4, + ts_builtin_sym_end, + anon_sym_LF, anon_sym_LPAREN2, anon_sym_DOT, - aux_sym_command_token1, - ACTIONS(3505), 6, + ACTIONS(2362), 5, anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_LF2, + anon_sym_DASH_DASH, + anon_sym_DASH, aux_sym_unquoted_token2, - [252756] = 6, + [252666] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(3520), 1, + STATE(7535), 1, + sym_comment, + ACTIONS(2404), 4, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(13319), 1, + anon_sym_LPAREN2, anon_sym_DOT, - STATE(7950), 1, - sym_comment, - ACTIONS(3518), 6, + ACTIONS(2402), 5, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_RBRACE, - [252780] = 4, + aux_sym_unquoted_token2, + [252686] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(7951), 1, + ACTIONS(2838), 1, + anon_sym_DQUOTE, + ACTIONS(12164), 1, + sym_cmd_identifier, + ACTIONS(13303), 1, + anon_sym_RBRACK, + STATE(6592), 1, + sym__str_double_quotes, + STATE(7525), 1, + aux_sym_command_list_repeat1, + STATE(7536), 1, sym_comment, - ACTIONS(1109), 2, - anon_sym_DOT_DOT2, + STATE(7567), 1, + sym_val_string, + STATE(8125), 1, + sym__command_name, + ACTIONS(2840), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [252718] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12547), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(13305), 1, anon_sym_DOT, - ACTIONS(1111), 7, - sym_cmd_identifier, + STATE(7537), 1, + sym_comment, + ACTIONS(2356), 2, + anon_sym_DASH, + anon_sym_DOT_DOT2, + ACTIONS(2358), 5, + anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [252800] = 6, + [252742] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3354), 1, + anon_sym_DASH, + ACTIONS(13307), 1, + anon_sym_DOT_DOT2, + STATE(7538), 1, + sym_comment, + ACTIONS(3362), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(13309), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3356), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [252768] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13833), 1, + ACTIONS(13311), 1, anon_sym_DOT_DOT2, - STATE(7952), 1, + STATE(7539), 1, sym_comment, - ACTIONS(3868), 2, + ACTIONS(3743), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(13835), 2, + ACTIONS(13313), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(3866), 4, + ACTIONS(3741), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [252824] = 6, + [252792] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13837), 1, + ACTIONS(13315), 1, anon_sym_DOT_DOT2, - STATE(7953), 1, + STATE(7540), 1, sym_comment, - ACTIONS(3520), 2, + ACTIONS(3314), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(13839), 2, + ACTIONS(13317), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(3518), 4, + ACTIONS(3312), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [252848] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13612), 1, - aux_sym__immediate_decimal_token2, - STATE(7954), 1, - sym_comment, - ACTIONS(2437), 2, - sym_cmd_identifier, - aux_sym_unquoted_token2, - ACTIONS(2439), 6, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [252870] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(13841), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13843), 1, - aux_sym__immediate_decimal_token2, - STATE(7955), 1, - sym_comment, - ACTIONS(2437), 3, - anon_sym_SEMI, - anon_sym_PIPE, - aux_sym_unquoted_token2, - ACTIONS(2439), 4, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_LPAREN2, - anon_sym_DOT, - [252894] = 6, + [252816] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13845), 1, + ACTIONS(13319), 1, anon_sym_DOT_DOT2, - STATE(7956), 1, + STATE(7541), 1, sym_comment, - ACTIONS(3951), 2, + ACTIONS(3693), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(13847), 2, + ACTIONS(13321), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(3949), 4, + ACTIONS(3691), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [252918] = 6, + [252840] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13849), 1, + ACTIONS(13323), 1, anon_sym_DOT_DOT2, - STATE(7957), 1, + STATE(7542), 1, sym_comment, - ACTIONS(3966), 2, + ACTIONS(3701), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(13851), 2, + ACTIONS(13325), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(3964), 4, + ACTIONS(3699), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [252942] = 6, + [252864] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13853), 1, + ACTIONS(13327), 1, anon_sym_DOT_DOT2, - STATE(7958), 1, + STATE(7543), 1, sym_comment, - ACTIONS(4045), 2, + ACTIONS(3713), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(13855), 2, + ACTIONS(13329), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(4043), 4, + ACTIONS(3711), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [252966] = 6, + [252888] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13857), 1, + ACTIONS(13331), 1, anon_sym_DOT_DOT2, - STATE(7959), 1, + STATE(7544), 1, sym_comment, - ACTIONS(2845), 2, + ACTIONS(3356), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(13859), 2, + ACTIONS(13333), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2843), 4, + ACTIONS(3354), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [252990] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(7960), 1, - sym_comment, - ACTIONS(909), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token5, - ACTIONS(911), 6, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [253010] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13696), 1, - aux_sym__immediate_decimal_token2, - STATE(7961), 1, - sym_comment, - ACTIONS(2581), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(2583), 5, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [253032] = 6, + [252912] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4045), 1, + ACTIONS(3356), 1, aux_sym_command_token1, - ACTIONS(13861), 1, - anon_sym_DOT_DOT2, - STATE(7962), 1, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(12513), 1, + anon_sym_DOT, + STATE(7545), 1, sym_comment, - ACTIONS(13863), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(4043), 5, + ACTIONS(3354), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_LF2, - [253056] = 6, + anon_sym_RBRACE, + [252938] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - ACTIONS(4293), 1, - anon_sym_LF, - STATE(7963), 1, + STATE(7546), 1, sym_comment, - STATE(10677), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4291), 6, + ACTIONS(1157), 2, + anon_sym_LF, + anon_sym_LPAREN2, + ACTIONS(1155), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [253080] = 4, + aux_sym_unquoted_token6, + [252958] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(7964), 1, + STATE(7547), 1, sym_comment, - ACTIONS(3962), 3, + ACTIONS(2364), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(2362), 5, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym__unquoted_in_list_token2, + [252978] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(3773), 1, aux_sym_command_token1, - ACTIONS(3960), 6, + ACTIONS(3775), 1, + anon_sym_LPAREN2, + ACTIONS(13087), 1, + anon_sym_DOT, + STATE(7548), 1, + sym_comment, + ACTIONS(3771), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOT_DOT2, - anon_sym_LF2, - [253100] = 5, - ACTIONS(3), 1, + anon_sym_RBRACE, + [253004] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13867), 1, - anon_sym_COMMA, - ACTIONS(13869), 1, - anon_sym_DASH, - STATE(7965), 1, + ACTIONS(13335), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13337), 1, + aux_sym_unquoted_token2, + STATE(7549), 1, sym_comment, - ACTIONS(13865), 7, - sym_identifier, - anon_sym_RBRACK, + ACTIONS(922), 2, + anon_sym_LPAREN2, + aux_sym_command_token1, + ACTIONS(920), 5, + anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [253122] = 5, + anon_sym_RBRACE, + [253028] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13871), 1, - aux_sym__immediate_decimal_token2, - STATE(7966), 1, + STATE(7550), 1, sym_comment, - ACTIONS(2547), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(2549), 4, + ACTIONS(2404), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [253144] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13643), 1, - aux_sym__immediate_decimal_token2, - STATE(7967), 1, - sym_comment, - ACTIONS(2437), 3, + ACTIONS(2402), 5, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(2439), 5, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [253166] = 5, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token2, + [253048] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13334), 1, + ACTIONS(13264), 1, aux_sym__immediate_decimal_token2, - STATE(7968), 1, - sym_comment, - ACTIONS(2437), 3, - anon_sym_DOT_DOT2, + ACTIONS(13339), 1, anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(2439), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [253188] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13873), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13875), 1, - aux_sym__immediate_decimal_token2, - STATE(7969), 1, + STATE(7551), 1, sym_comment, - ACTIONS(2437), 3, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(2439), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [253212] = 4, + ACTIONS(2358), 3, + ts_builtin_sym_end, + anon_sym_LPAREN2, + aux_sym_command_token1, + ACTIONS(2356), 4, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, + aux_sym_unquoted_token2, + [253072] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(7970), 1, + STATE(7552), 1, sym_comment, - ACTIONS(909), 3, + ACTIONS(893), 3, anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token5, - ACTIONS(911), 6, + ACTIONS(895), 6, anon_sym_LBRACE, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [253232] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13877), 1, - aux_sym__immediate_decimal_token2, - STATE(7971), 1, - sym_comment, - ACTIONS(2547), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(2549), 5, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [253254] = 7, + [253092] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(3750), 1, + ACTIONS(3646), 1, aux_sym_command_token1, - ACTIONS(13169), 1, + ACTIONS(3648), 1, + anon_sym_LPAREN2, + ACTIONS(3650), 1, + aux_sym_unquoted_token2, + ACTIONS(13004), 1, anon_sym_DOT, - ACTIONS(13265), 1, - aux_sym__immediate_decimal_token1, - STATE(7972), 1, + STATE(7553), 1, sym_comment, - ACTIONS(3748), 5, + ACTIONS(3644), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_LF2, - [253280] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13701), 1, - aux_sym__immediate_decimal_token2, - STATE(7973), 1, - sym_comment, - ACTIONS(2581), 4, - sym_identifier, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(2583), 4, - anon_sym_DOLLAR, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [253302] = 6, + anon_sym_RBRACE, + [253118] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10143), 1, + ACTIONS(9522), 1, anon_sym_DOT_DOT2, - STATE(7974), 1, + STATE(7554), 1, sym_comment, - ACTIONS(4018), 2, + ACTIONS(3759), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(10145), 2, + ACTIONS(9524), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(4016), 4, + ACTIONS(3757), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [253326] = 8, + [253142] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3520), 1, - anon_sym_DASH_DASH, - ACTIONS(3522), 1, - anon_sym_LPAREN2, - ACTIONS(13879), 1, - anon_sym_DOT_DOT2, - STATE(7975), 1, + ACTIONS(12503), 1, + anon_sym_DASH, + ACTIONS(13111), 1, + anon_sym_COMMA, + ACTIONS(13216), 1, + anon_sym_EQ, + STATE(7465), 1, + sym_param_value, + STATE(7555), 1, sym_comment, - ACTIONS(1934), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(3518), 2, + ACTIONS(12499), 5, sym_identifier, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [253168] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12507), 1, + anon_sym_COMMA, + ACTIONS(12509), 1, anon_sym_DASH, - ACTIONS(13881), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [253354] = 5, + ACTIONS(13216), 1, + anon_sym_EQ, + STATE(7467), 1, + sym_param_value, + STATE(7556), 1, + sym_comment, + ACTIONS(12505), 5, + sym_identifier, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [253194] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13883), 1, + ACTIONS(13342), 1, aux_sym__immediate_decimal_token2, - STATE(7976), 1, + STATE(7557), 1, sym_comment, - ACTIONS(2547), 2, - sym_cmd_identifier, + ACTIONS(2356), 4, + sym_identifier, + anon_sym_DOT_DOT2, + anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(2549), 6, - anon_sym_DASH_DASH, + ACTIONS(2358), 4, + anon_sym_DOLLAR, anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [253216] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(7558), 1, + sym_comment, + ACTIONS(893), 3, + anon_sym_DOT_DOT2, anon_sym_DOT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [253376] = 6, + aux_sym_unquoted_token5, + ACTIONS(895), 6, + anon_sym_in, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [253236] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - ACTIONS(4531), 1, - anon_sym_LF, - STATE(7977), 1, + STATE(7559), 1, sym_comment, - STATE(11424), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4529), 6, + ACTIONS(2231), 3, + anon_sym_LPAREN2, + anon_sym_DOT, + aux_sym_command_token1, + ACTIONS(2229), 6, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [253400] = 9, + anon_sym_LF2, + aux_sym_unquoted_token2, + [253256] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9820), 1, - aux_sym_unquoted_token5, - ACTIONS(9828), 1, + ACTIONS(9203), 1, anon_sym_DOT, - ACTIONS(13885), 1, + ACTIONS(9209), 1, + aux_sym_unquoted_token5, + ACTIONS(13344), 1, anon_sym_DOT_DOT2, - ACTIONS(13889), 1, + ACTIONS(13348), 1, sym_filesize_unit, - ACTIONS(13891), 1, + ACTIONS(13350), 1, sym_duration_unit, - STATE(7978), 1, + STATE(7560), 1, sym_comment, - ACTIONS(961), 2, + ACTIONS(940), 2, anon_sym_PIPE, anon_sym_EQ_GT, - ACTIONS(13887), 2, + ACTIONS(13346), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [253430] = 4, + [253286] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(7979), 1, + STATE(7561), 1, + sym_comment, + ACTIONS(3723), 4, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3721), 5, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_DOT_DOT2, + [253306] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(13068), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(13352), 1, + anon_sym_DOT, + STATE(7562), 1, sym_comment, - ACTIONS(2439), 4, + ACTIONS(2356), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(2358), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(2437), 5, - anon_sym_RBRACK, - anon_sym_RBRACE, + [253330] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12880), 1, + aux_sym__immediate_decimal_token2, + STATE(7563), 1, + sym_comment, + ACTIONS(2229), 4, + sym_identifier, anon_sym_DOT_DOT2, anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - [253450] = 6, + aux_sym_unquoted_token2, + ACTIONS(2231), 4, + anon_sym_DOLLAR, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [253352] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - ACTIONS(4535), 1, - anon_sym_LF, - STATE(7980), 1, + ACTIONS(3759), 1, + aux_sym_command_token1, + ACTIONS(9414), 1, + anon_sym_DOT_DOT2, + STATE(7564), 1, sym_comment, - STATE(11424), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4533), 6, + ACTIONS(9416), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3757), 5, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [253474] = 6, + anon_sym_LF2, + [253376] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(7565), 1, + sym_comment, + ACTIONS(901), 3, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token5, + ACTIONS(903), 6, + anon_sym_in, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [253396] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13893), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13895), 1, - aux_sym_unquoted_token2, - STATE(7981), 1, + STATE(7566), 1, sym_comment, - ACTIONS(938), 2, + ACTIONS(2364), 3, anon_sym_LPAREN2, + anon_sym_DOT, aux_sym_command_token1, - ACTIONS(936), 5, + ACTIONS(2362), 6, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [253498] = 5, - ACTIONS(113), 1, + anon_sym_LF2, + aux_sym_unquoted_token2, + [253416] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13897), 1, - aux_sym__immediate_decimal_token2, - STATE(7982), 1, + STATE(7567), 1, sym_comment, - ACTIONS(2547), 4, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - aux_sym_unquoted_token2, - ACTIONS(2549), 4, - ts_builtin_sym_end, - anon_sym_LPAREN2, - anon_sym_DOT, - aux_sym_command_token1, - [253520] = 6, + ACTIONS(5782), 9, + anon_sym_EQ, + sym_cmd_identifier, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [253434] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4008), 1, + ACTIONS(922), 1, anon_sym_LF, - ACTIONS(4012), 1, + ACTIONS(9589), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13355), 1, aux_sym_unquoted_token2, - ACTIONS(13520), 1, - anon_sym_DOT, - STATE(7983), 1, + STATE(7568), 1, sym_comment, - ACTIONS(4006), 6, + ACTIONS(920), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [253544] = 5, - ACTIONS(113), 1, + [253458] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13726), 1, + ACTIONS(13357), 1, aux_sym__immediate_decimal_token2, - STATE(7984), 1, + STATE(7569), 1, sym_comment, - ACTIONS(2583), 3, - anon_sym_LF, - anon_sym_LPAREN2, + ACTIONS(2362), 4, + sym_identifier, + anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(2581), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, aux_sym_unquoted_token2, - [253566] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(2847), 1, + ACTIONS(2364), 4, + anon_sym_DOLLAR, anon_sym_LPAREN2, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(13169), 1, - anon_sym_DOT, - STATE(7985), 1, - sym_comment, - ACTIONS(2845), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2843), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [253592] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [253480] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(7986), 1, + ACTIONS(13342), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(13359), 1, + anon_sym_DOT, + STATE(7570), 1, sym_comment, - ACTIONS(917), 3, + ACTIONS(2356), 3, + sym_identifier, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token5, - ACTIONS(919), 6, - anon_sym_PIPE, - anon_sym_EQ_GT, + aux_sym_unquoted_token2, + ACTIONS(2358), 4, + anon_sym_DOLLAR, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [253612] = 9, + [253504] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13899), 1, + STATE(7571), 1, + sym_comment, + ACTIONS(2362), 2, sym_cmd_identifier, - ACTIONS(13902), 1, - anon_sym_RBRACK, - ACTIONS(13904), 1, + aux_sym_unquoted_token2, + ACTIONS(2364), 6, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT, anon_sym_DQUOTE, - STATE(7019), 1, - sym__str_double_quotes, - STATE(7900), 1, - sym_val_string, - STATE(8728), 1, - sym__command_name, - ACTIONS(13907), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(7987), 2, + [253523] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(7572), 1, sym_comment, - aux_sym_command_list_repeat1, - [253642] = 6, + ACTIONS(2402), 3, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(2404), 5, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [253542] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13302), 1, + ACTIONS(13068), 1, aux_sym__immediate_decimal_token2, - ACTIONS(13910), 1, + ACTIONS(13362), 1, anon_sym_DOT, - STATE(7988), 1, + STATE(7573), 1, sym_comment, - ACTIONS(2581), 3, + ACTIONS(2356), 3, anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(2583), 4, - anon_sym_LPAREN2, + ACTIONS(2358), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [253666] = 5, - ACTIONS(113), 1, + [253565] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3767), 1, + anon_sym_DOT_DOT2, + STATE(7574), 1, + sym_comment, + ACTIONS(3769), 7, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [253584] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13809), 1, + ACTIONS(13253), 1, aux_sym__immediate_decimal_token2, - STATE(7989), 1, + STATE(7575), 1, sym_comment, - ACTIONS(2581), 4, - anon_sym_RBRACK, + ACTIONS(2229), 3, anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(2583), 4, + ACTIONS(2231), 4, + anon_sym_in, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [253688] = 6, + [253605] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13737), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(13913), 1, + ACTIONS(3356), 1, + aux_sym_command_token1, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(12513), 1, anon_sym_DOT, - STATE(7990), 1, + STATE(7576), 1, sym_comment, - ACTIONS(2583), 3, - ts_builtin_sym_end, - anon_sym_LPAREN2, - aux_sym_command_token1, - ACTIONS(2581), 4, + ACTIONS(3354), 5, anon_sym_SEMI, anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, - aux_sym_unquoted_token2, - [253712] = 5, - ACTIONS(113), 1, + anon_sym_LF2, + [253628] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13285), 1, - aux_sym__immediate_decimal_token2, - STATE(7991), 1, + ACTIONS(13366), 1, + anon_sym_DASH, + STATE(7577), 1, sym_comment, - ACTIONS(2439), 3, - anon_sym_LF, - anon_sym_LPAREN2, + ACTIONS(13364), 7, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [253647] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(3646), 1, + aux_sym_command_token1, + ACTIONS(3650), 1, + aux_sym_unquoted_token2, + ACTIONS(13004), 1, anon_sym_DOT, - ACTIONS(2437), 5, + STATE(7578), 1, + sym_comment, + ACTIONS(3644), 5, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - aux_sym_unquoted_token2, - [253734] = 4, + [253670] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(7992), 1, + ACTIONS(3655), 1, + anon_sym_COLON, + ACTIONS(5725), 1, + anon_sym_DOLLAR, + ACTIONS(12254), 1, + sym_identifier, + STATE(2531), 1, + sym__assignment_pattern, + STATE(7000), 1, + sym__var, + STATE(7579), 1, sym_comment, - ACTIONS(1113), 2, + STATE(8718), 1, + sym_val_variable, + STATE(9320), 1, + sym__assignment_pattern_last, + STATE(9858), 1, + sym__variable_name, + [253701] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2229), 1, anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1115), 7, + STATE(7580), 1, + sym_comment, + ACTIONS(2231), 7, sym_cmd_identifier, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, @@ -565618,970 +525032,1214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [253754] = 6, - ACTIONS(113), 1, + [253720] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4018), 1, - aux_sym_command_token1, - ACTIONS(9680), 1, + ACTIONS(2362), 1, anon_sym_DOT_DOT2, - STATE(7993), 1, + STATE(7581), 1, sym_comment, - ACTIONS(9682), 2, + ACTIONS(2364), 7, + sym_cmd_identifier, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(4016), 5, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [253778] = 4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [253739] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(7994), 1, + ACTIONS(2402), 1, + anon_sym_DOT_DOT2, + STATE(7582), 1, + sym_comment, + ACTIONS(2404), 7, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [253758] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3721), 1, + anon_sym_DOT_DOT2, + STATE(7583), 1, + sym_comment, + ACTIONS(3723), 7, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [253777] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13368), 1, + aux_sym__immediate_decimal_token2, + STATE(7584), 1, sym_comment, - ACTIONS(909), 3, + ACTIONS(2362), 3, anon_sym_DOT_DOT2, anon_sym_DOT, - aux_sym_unquoted_token5, - ACTIONS(911), 6, + aux_sym_unquoted_token2, + ACTIONS(2364), 4, anon_sym_in, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [253798] = 4, + [253798] = 8, ACTIONS(113), 1, anon_sym_POUND, - STATE(7995), 1, - sym_comment, - ACTIONS(2549), 4, - ts_builtin_sym_end, - anon_sym_LF, + ACTIONS(3312), 1, + anon_sym_RBRACK, + ACTIONS(3314), 1, + sym__entry_separator, + ACTIONS(3316), 1, anon_sym_LPAREN2, + ACTIONS(13370), 1, + anon_sym_DOT_DOT2, + STATE(7585), 1, + sym_comment, + ACTIONS(1844), 2, anon_sym_DOT, - ACTIONS(2547), 5, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, aux_sym_unquoted_token2, - [253818] = 7, + ACTIONS(13372), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [253825] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3655), 1, + anon_sym_COLON, + ACTIONS(5725), 1, + anon_sym_DOLLAR, + ACTIONS(12254), 1, + sym_identifier, + STATE(2533), 1, + sym__assignment_pattern, + STATE(7000), 1, + sym__var, + STATE(7586), 1, + sym_comment, + STATE(8718), 1, + sym_val_variable, + STATE(8992), 1, + sym__assignment_pattern_last, + STATE(9858), 1, + sym__variable_name, + [253856] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(3520), 1, - aux_sym_command_token1, - ACTIONS(3522), 1, - anon_sym_LPAREN2, - ACTIONS(13319), 1, - anon_sym_DOT, - STATE(7996), 1, + STATE(7587), 1, sym_comment, - ACTIONS(3518), 5, + ACTIONS(3767), 4, anon_sym_SEMI, anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_LF2, - [253844] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(4045), 1, + anon_sym_DOT_DOT2, + ACTIONS(3769), 4, + ts_builtin_sym_end, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym_command_token1, - ACTIONS(13916), 1, + [253875] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13374), 1, anon_sym_DOT_DOT2, - STATE(7997), 1, + STATE(7588), 1, + sym_comment, + ACTIONS(3362), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(13376), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3356), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [253898] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3314), 1, + anon_sym_DASH_DASH, + ACTIONS(13378), 1, + anon_sym_DOT_DOT2, + STATE(7589), 1, sym_comment, - ACTIONS(13918), 2, + ACTIONS(1844), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(3312), 2, + sym_identifier, + anon_sym_DASH, + ACTIONS(13380), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(4043), 5, + [253923] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1161), 1, + aux_sym_command_token1, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + ACTIONS(3727), 1, + anon_sym_LPAREN2, + STATE(7590), 1, + sym_comment, + ACTIONS(1159), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [253868] = 6, + [253946] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(938), 1, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(3576), 1, anon_sym_LF, - ACTIONS(10133), 1, + ACTIONS(12513), 1, + anon_sym_DOT, + ACTIONS(13150), 1, aux_sym__immediate_decimal_token1, - ACTIONS(13920), 1, - aux_sym_unquoted_token2, - STATE(7998), 1, + STATE(7591), 1, sym_comment, - ACTIONS(936), 6, + ACTIONS(3574), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_RBRACE, - [253892] = 4, + [253971] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(7999), 1, + ACTIONS(13382), 1, + aux_sym__immediate_decimal_token2, + STATE(7592), 1, sym_comment, - ACTIONS(950), 3, + ACTIONS(2362), 3, anon_sym_DOT_DOT2, anon_sym_DOT, - aux_sym_unquoted_token5, - ACTIONS(952), 6, - anon_sym_PIPE, - anon_sym_EQ_GT, + aux_sym_unquoted_token2, + ACTIONS(2364), 4, + anon_sym_LBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [253912] = 4, + [253992] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(8000), 1, + ACTIONS(3655), 1, + anon_sym_COLON, + ACTIONS(5725), 1, + anon_sym_DOLLAR, + ACTIONS(12254), 1, + sym_identifier, + STATE(2534), 1, + sym__assignment_pattern, + STATE(7000), 1, + sym__var, + STATE(7593), 1, sym_comment, - ACTIONS(1117), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1119), 7, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [253932] = 7, + STATE(8718), 1, + sym_val_variable, + STATE(9325), 1, + sym__assignment_pattern_last, + STATE(9858), 1, + sym__variable_name, + [254023] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - ACTIONS(3878), 1, + ACTIONS(2187), 1, anon_sym_LPAREN2, - ACTIONS(13456), 1, + ACTIONS(4424), 1, + aux_sym_command_token1, + STATE(7594), 1, + sym_comment, + STATE(10434), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4422), 5, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_LF2, + [254046] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(13384), 1, anon_sym_DOT, - STATE(8001), 1, + ACTIONS(13387), 1, + aux_sym__immediate_decimal_token2, + STATE(7595), 1, sym_comment, - ACTIONS(3876), 2, + ACTIONS(2356), 3, + anon_sym_SEMI, + anon_sym_PIPE, + aux_sym_unquoted_token2, + ACTIONS(2358), 3, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3874), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [253958] = 7, + anon_sym_LPAREN2, + [254069] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13922), 1, - anon_sym_DOT_DOT2, - STATE(8002), 1, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + ACTIONS(4428), 1, + aux_sym_command_token1, + STATE(7596), 1, sym_comment, - ACTIONS(1934), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(3518), 2, + STATE(10434), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4426), 5, anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3520), 2, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(13924), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [253984] = 7, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_LF2, + [254092] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2838), 1, + anon_sym_DQUOTE, + ACTIONS(3655), 1, + anon_sym_COLON, + ACTIONS(12164), 1, + sym_cmd_identifier, + STATE(6592), 1, + sym__str_double_quotes, + STATE(7567), 1, + sym_val_string, + STATE(7597), 1, + sym_comment, + STATE(9635), 1, + sym__command_name, + ACTIONS(2840), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [254121] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4010), 1, + ACTIONS(3648), 1, anon_sym_LPAREN2, - ACTIONS(4012), 1, + ACTIONS(3650), 1, aux_sym_unquoted_token2, - ACTIONS(13520), 1, + ACTIONS(13004), 1, anon_sym_DOT, - STATE(8003), 1, + STATE(7598), 1, sym_comment, - ACTIONS(4008), 2, + ACTIONS(3646), 2, ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4006), 4, + aux_sym_command_token1, + ACTIONS(3644), 3, anon_sym_SEMI, + anon_sym_LF, anon_sym_PIPE, - anon_sym_DASH_DASH, + [254146] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2621), 1, anon_sym_DASH, - [254010] = 4, + ACTIONS(3104), 1, + anon_sym_DASH_DASH, + ACTIONS(13389), 1, + anon_sym_LBRACE, + STATE(2334), 1, + sym_val_record, + STATE(7599), 1, + sym_comment, + STATE(7692), 1, + sym_long_flag_equals_value, + STATE(10134), 1, + sym__flag, + STATE(8892), 2, + sym_short_flag, + sym_long_flag, + [254175] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(8004), 1, + ACTIONS(9867), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(7600), 1, sym_comment, - ACTIONS(2439), 3, + ACTIONS(1209), 2, anon_sym_LPAREN2, - anon_sym_DOT, aux_sym_command_token1, - ACTIONS(2437), 6, + ACTIONS(1139), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - aux_sym_unquoted_token2, - [254030] = 5, + anon_sym_LF2, + [254196] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2621), 1, + anon_sym_DASH, + ACTIONS(2716), 1, + anon_sym_DASH_DASH, + ACTIONS(13391), 1, + sym_identifier, + STATE(7601), 1, + sym_comment, + STATE(7606), 1, + aux_sym_overlay_use_repeat1, + STATE(9246), 1, + sym_long_flag_equals_value, + STATE(9891), 1, + sym__flag, + STATE(8892), 2, + sym_short_flag, + sym_long_flag, + [254225] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13926), 1, - aux_sym__immediate_decimal_token2, - STATE(8005), 1, + ACTIONS(1131), 1, + aux_sym_command_token1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + ACTIONS(3841), 1, + anon_sym_LPAREN2, + STATE(7602), 1, sym_comment, - ACTIONS(2549), 3, + ACTIONS(1129), 5, + anon_sym_SEMI, anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [254248] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + ACTIONS(1137), 1, + aux_sym_command_token1, + ACTIONS(3841), 1, anon_sym_LPAREN2, - anon_sym_DOT, - ACTIONS(2547), 5, + STATE(7603), 1, + sym_comment, + ACTIONS(1135), 5, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - aux_sym_unquoted_token2, - [254052] = 5, + [254271] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13731), 1, - aux_sym__immediate_decimal_token2, - STATE(8006), 1, - sym_comment, - ACTIONS(2581), 2, - sym_cmd_identifier, + ACTIONS(1886), 1, aux_sym_unquoted_token2, - ACTIONS(2583), 6, - anon_sym_DASH_DASH, + ACTIONS(3771), 1, + sym_cmd_identifier, + ACTIONS(3775), 1, anon_sym_LPAREN2, + ACTIONS(13087), 1, anon_sym_DOT, + STATE(7604), 1, + sym_comment, + ACTIONS(3773), 4, + anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [254074] = 6, - ACTIONS(113), 1, + [254296] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - ACTIONS(4037), 1, - anon_sym_LPAREN2, - ACTIONS(13928), 1, - aux_sym_command_token1, - STATE(8007), 1, + STATE(7605), 1, sym_comment, - ACTIONS(4035), 5, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, + ACTIONS(2229), 3, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(2231), 5, anon_sym_PIPE, - anon_sym_RBRACE, - [254097] = 5, - ACTIONS(113), 1, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [254315] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10478), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(8008), 1, - sym_comment, - ACTIONS(1290), 2, - ts_builtin_sym_end, - anon_sym_LPAREN2, - ACTIONS(1243), 5, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - anon_sym_DASH_DASH, + ACTIONS(2621), 1, anon_sym_DASH, - [254118] = 8, + ACTIONS(2716), 1, + anon_sym_DASH_DASH, + ACTIONS(13393), 1, + sym_identifier, + STATE(7606), 1, + sym_comment, + STATE(7805), 1, + aux_sym_overlay_use_repeat1, + STATE(9246), 1, + sym_long_flag_equals_value, + STATE(9891), 1, + sym__flag, + STATE(8892), 2, + sym_short_flag, + sym_long_flag, + [254344] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13930), 1, - sym_identifier, - ACTIONS(13933), 1, - anon_sym_GT, - ACTIONS(13935), 1, + ACTIONS(3655), 1, + anon_sym_COLON, + ACTIONS(7911), 1, anon_sym_DQUOTE, - STATE(6969), 1, - sym__str_double_quotes, - STATE(8380), 1, + ACTIONS(13395), 1, + sym_cmd_identifier, + STATE(956), 1, + sym__command_name, + STATE(2033), 1, sym_val_string, - ACTIONS(13938), 2, + STATE(2196), 1, + sym__str_double_quotes, + STATE(7607), 1, + sym_comment, + ACTIONS(7913), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(8009), 2, + [254373] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3655), 1, + anon_sym_COLON, + ACTIONS(7911), 1, + anon_sym_DQUOTE, + ACTIONS(13395), 1, + sym_cmd_identifier, + STATE(2033), 1, + sym_val_string, + STATE(2193), 1, + sym__command_name, + STATE(2196), 1, + sym__str_double_quotes, + STATE(7608), 1, sym_comment, - aux_sym_collection_type_repeat1, - [254145] = 6, + ACTIONS(7913), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [254402] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, + STATE(7609), 1, + sym_comment, + ACTIONS(2229), 4, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, + aux_sym_unquoted_token2, + ACTIONS(2231), 4, + ts_builtin_sym_end, anon_sym_LPAREN2, - ACTIONS(4325), 1, + anon_sym_DOT, aux_sym_command_token1, - STATE(8010), 1, + [254421] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(3773), 1, + aux_sym_command_token1, + ACTIONS(13087), 1, + anon_sym_DOT, + STATE(7610), 1, sym_comment, - STATE(11424), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4323), 5, + ACTIONS(3771), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [254168] = 9, + anon_sym_LF2, + [254444] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2621), 1, + anon_sym_DASH, + ACTIONS(3104), 1, + anon_sym_DASH_DASH, + ACTIONS(13397), 1, + anon_sym_LBRACE, + STATE(2399), 1, + sym_block, + STATE(7611), 1, + sym_comment, + STATE(7692), 1, + sym_long_flag_equals_value, + STATE(9979), 1, + sym__flag, + STATE(8892), 2, + sym_short_flag, + sym_long_flag, + [254473] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2891), 1, + ACTIONS(2651), 1, anon_sym_DQUOTE, - ACTIONS(13941), 1, + ACTIONS(13399), 1, sym_identifier, - ACTIONS(13943), 1, + ACTIONS(13401), 1, anon_sym_GT, - STATE(6969), 1, + STATE(6559), 1, sym__str_double_quotes, - STATE(8009), 1, - aux_sym_collection_type_repeat1, - STATE(8011), 1, + STATE(7612), 1, sym_comment, - STATE(8380), 1, + STATE(7617), 1, + aux_sym_collection_type_repeat1, + STATE(7871), 1, sym_val_string, - ACTIONS(2893), 2, + ACTIONS(2653), 2, sym__str_single_quotes, sym__str_back_ticks, - [254197] = 9, + [254502] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2694), 1, + ACTIONS(2621), 1, anon_sym_DASH, - ACTIONS(2785), 1, + ACTIONS(3104), 1, anon_sym_DASH_DASH, - ACTIONS(13945), 1, + ACTIONS(13397), 1, anon_sym_LBRACE, - STATE(2778), 1, + STATE(2374), 1, sym_block, - STATE(8012), 1, + STATE(7613), 1, sym_comment, - STATE(8074), 1, + STATE(7692), 1, sym_long_flag_equals_value, - STATE(10491), 1, + STATE(10128), 1, sym__flag, - STATE(9344), 2, + STATE(8892), 2, sym_short_flag, sym_long_flag, - [254226] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13707), 1, - anon_sym_DASH, - STATE(8013), 1, - sym_comment, - ACTIONS(13703), 7, - sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [254245] = 9, + [254531] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2694), 1, + ACTIONS(2621), 1, anon_sym_DASH, - ACTIONS(2785), 1, + ACTIONS(3104), 1, anon_sym_DASH_DASH, - ACTIONS(13945), 1, + ACTIONS(13397), 1, anon_sym_LBRACE, - STATE(2780), 1, + STATE(2286), 1, sym_block, - STATE(8014), 1, + STATE(7614), 1, sym_comment, - STATE(8074), 1, + STATE(7692), 1, sym_long_flag_equals_value, - STATE(10493), 1, + STATE(10163), 1, sym__flag, - STATE(9344), 2, + STATE(8892), 2, sym_short_flag, sym_long_flag, - [254274] = 9, + [254560] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2694), 1, + ACTIONS(2621), 1, anon_sym_DASH, - ACTIONS(2785), 1, + ACTIONS(3104), 1, anon_sym_DASH_DASH, - ACTIONS(13945), 1, + ACTIONS(13397), 1, anon_sym_LBRACE, - STATE(2781), 1, + STATE(2296), 1, sym_block, - STATE(8015), 1, + STATE(7615), 1, sym_comment, - STATE(8074), 1, + STATE(7692), 1, sym_long_flag_equals_value, - STATE(10494), 1, + STATE(10230), 1, sym__flag, - STATE(9344), 2, + STATE(8892), 2, sym_short_flag, sym_long_flag, - [254303] = 6, + [254589] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10258), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13947), 1, - aux_sym_unquoted_token2, - STATE(8016), 1, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + ACTIONS(3727), 1, + anon_sym_LPAREN2, + STATE(7616), 1, sym_comment, - ACTIONS(938), 2, + ACTIONS(1161), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(936), 4, + ACTIONS(1159), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [254326] = 6, + [254612] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(936), 1, - sym_cmd_identifier, - ACTIONS(13949), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13951), 1, - aux_sym_unquoted_token2, - STATE(8017), 1, - sym_comment, - ACTIONS(938), 5, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, + ACTIONS(2651), 1, anon_sym_DQUOTE, + ACTIONS(13399), 1, + sym_identifier, + ACTIONS(13403), 1, + anon_sym_GT, + STATE(6559), 1, + sym__str_double_quotes, + STATE(7617), 1, + sym_comment, + STATE(7685), 1, + aux_sym_collection_type_repeat1, + STATE(7871), 1, + sym_val_string, + ACTIONS(2653), 2, sym__str_single_quotes, sym__str_back_ticks, - [254349] = 9, + [254641] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2694), 1, + ACTIONS(2621), 1, anon_sym_DASH, - ACTIONS(2785), 1, + ACTIONS(3104), 1, anon_sym_DASH_DASH, - ACTIONS(13945), 1, + ACTIONS(13397), 1, anon_sym_LBRACE, - STATE(2790), 1, + STATE(2272), 1, sym_block, - STATE(8018), 1, + STATE(7618), 1, sym_comment, - STATE(8074), 1, + STATE(7692), 1, sym_long_flag_equals_value, - STATE(10496), 1, + STATE(10259), 1, sym__flag, - STATE(9344), 2, + STATE(8892), 2, sym_short_flag, sym_long_flag, - [254378] = 6, - ACTIONS(113), 1, + [254670] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - ACTIONS(4037), 1, - anon_sym_LPAREN2, - STATE(8019), 1, - sym_comment, - ACTIONS(1249), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1247), 4, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(2621), 1, + anon_sym_DASH, + ACTIONS(3104), 1, anon_sym_DASH_DASH, + ACTIONS(13397), 1, + anon_sym_LBRACE, + STATE(2327), 1, + sym_block, + STATE(7619), 1, + sym_comment, + STATE(7692), 1, + sym_long_flag_equals_value, + STATE(10072), 1, + sym__flag, + STATE(8892), 2, + sym_short_flag, + sym_long_flag, + [254699] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2621), 1, anon_sym_DASH, - [254401] = 7, - ACTIONS(113), 1, + ACTIONS(3104), 1, + anon_sym_DASH_DASH, + ACTIONS(13397), 1, + anon_sym_LBRACE, + STATE(2335), 1, + sym_block, + STATE(7620), 1, + sym_comment, + STATE(7692), 1, + sym_long_flag_equals_value, + STATE(9988), 1, + sym__flag, + STATE(8892), 2, + sym_short_flag, + sym_long_flag, + [254728] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1934), 1, + ACTIONS(13405), 1, + aux_sym__immediate_decimal_token2, + STATE(7621), 1, + sym_comment, + ACTIONS(2356), 2, + anon_sym_DASH, aux_sym_unquoted_token2, - ACTIONS(3522), 1, + ACTIONS(2358), 5, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_LPAREN2, - ACTIONS(13319), 1, anon_sym_DOT, - STATE(8020), 1, - sym_comment, - ACTIONS(3520), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(3518), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - [254426] = 4, + [254749] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3960), 1, - anon_sym_DOT_DOT2, - STATE(8021), 1, - sym_comment, - ACTIONS(3962), 7, - sym_cmd_identifier, + ACTIONS(2621), 1, + anon_sym_DASH, + ACTIONS(3104), 1, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [254445] = 4, + ACTIONS(13397), 1, + anon_sym_LBRACE, + STATE(2346), 1, + sym_block, + STATE(7622), 1, + sym_comment, + STATE(7692), 1, + sym_long_flag_equals_value, + STATE(10089), 1, + sym__flag, + STATE(8892), 2, + sym_short_flag, + sym_long_flag, + [254778] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2437), 1, - anon_sym_DOT_DOT2, - STATE(8022), 1, - sym_comment, - ACTIONS(2439), 7, + ACTIONS(3644), 1, sym_cmd_identifier, + ACTIONS(3648), 1, + anon_sym_LPAREN2, + ACTIONS(3650), 1, + aux_sym_unquoted_token2, + ACTIONS(13004), 1, + anon_sym_DOT, + STATE(7623), 1, + sym_comment, + ACTIONS(3646), 4, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [254464] = 5, + [254803] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10290), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(8023), 1, - sym_comment, - ACTIONS(1290), 2, - anon_sym_LPAREN2, + ACTIONS(2358), 1, aux_sym_command_token1, - ACTIONS(1243), 5, + ACTIONS(12025), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(13407), 1, + anon_sym_DOT, + STATE(7624), 1, + sym_comment, + ACTIONS(2356), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_LF2, - [254485] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4291), 1, - anon_sym_DASH, - STATE(8024), 1, - sym_comment, - ACTIONS(4293), 7, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [254504] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13953), 1, - aux_sym__immediate_decimal_token2, - STATE(8025), 1, - sym_comment, - ACTIONS(2547), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(2549), 4, - anon_sym_in, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [254525] = 5, + [254826] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5085), 1, - anon_sym_LF, - ACTIONS(13171), 1, - aux_sym__immediate_decimal_token1, - STATE(8026), 1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + ACTIONS(3841), 1, + anon_sym_LPAREN2, + STATE(7625), 1, sym_comment, - ACTIONS(5083), 6, + ACTIONS(1131), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1129), 4, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_RBRACE, - [254546] = 6, + [254849] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1255), 1, - aux_sym_command_token1, - ACTIONS(1257), 1, + ACTIONS(1133), 1, aux_sym_unquoted_token6, - ACTIONS(4631), 1, + ACTIONS(3841), 1, anon_sym_LPAREN2, - STATE(8027), 1, + STATE(7626), 1, sym_comment, - ACTIONS(1253), 5, - anon_sym_SEMI, + ACTIONS(1137), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_RPAREN, + ACTIONS(1135), 4, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACE, - [254569] = 6, + anon_sym_DASH_DASH, + anon_sym_DASH, + [254872] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - ACTIONS(1275), 1, + ACTIONS(3646), 1, aux_sym_command_token1, - ACTIONS(4631), 1, - anon_sym_LPAREN2, - STATE(8028), 1, + ACTIONS(3650), 1, + aux_sym_unquoted_token2, + ACTIONS(13004), 1, + anon_sym_DOT, + STATE(7627), 1, sym_comment, - ACTIONS(1273), 5, + ACTIONS(3644), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [254592] = 4, + anon_sym_LF2, + [254895] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(8029), 1, + ACTIONS(11698), 1, + anon_sym_DOT, + STATE(5034), 1, + sym_cell_path, + STATE(6635), 1, + sym_path, + STATE(7628), 1, sym_comment, - ACTIONS(1117), 3, + ACTIONS(1095), 5, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOLLAR, + anon_sym_LBRACE, + [254918] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(3574), 1, anon_sym_DASH, - anon_sym_DOT_DOT2, + ACTIONS(12513), 1, anon_sym_DOT, - ACTIONS(1119), 5, - sym_identifier, + ACTIONS(13409), 1, + aux_sym__immediate_decimal_token1, + STATE(7629), 1, + sym_comment, + ACTIONS(3576), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [254611] = 4, + anon_sym_LBRACE, + [254945] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2547), 1, - anon_sym_DOT_DOT2, - STATE(8030), 1, - sym_comment, - ACTIONS(2549), 7, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(3574), 1, sym_cmd_identifier, + ACTIONS(12513), 1, + anon_sym_DOT, + ACTIONS(13136), 1, + aux_sym__immediate_decimal_token1, + STATE(7630), 1, + sym_comment, + ACTIONS(3576), 4, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [254630] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(13955), 1, - anon_sym_DOT_DOT2, - STATE(8031), 1, - sym_comment, - ACTIONS(3966), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(13957), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3964), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - [254653] = 9, + [254970] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2694), 1, + ACTIONS(2621), 1, anon_sym_DASH, - ACTIONS(2861), 1, + ACTIONS(3104), 1, anon_sym_DASH_DASH, - ACTIONS(13959), 1, - sym_identifier, - STATE(8032), 1, + ACTIONS(13411), 1, + anon_sym_LBRACE, + STATE(2419), 1, + sym_block, + STATE(7631), 1, sym_comment, - STATE(8034), 1, - aux_sym_overlay_use_repeat1, - STATE(9751), 1, + STATE(7692), 1, sym_long_flag_equals_value, - STATE(10449), 1, + STATE(10078), 1, sym__flag, - STATE(9344), 2, + STATE(8892), 2, sym_short_flag, sym_long_flag, - [254682] = 4, - ACTIONS(3), 1, + [254999] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(8033), 1, + STATE(7632), 1, sym_comment, - ACTIONS(1109), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, + ACTIONS(2362), 4, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, + aux_sym_unquoted_token2, + ACTIONS(2364), 4, + ts_builtin_sym_end, + anon_sym_LPAREN2, anon_sym_DOT, - ACTIONS(1111), 5, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [254701] = 8, + aux_sym_command_token1, + [255018] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3643), 1, - sym_identifier, - ACTIONS(13961), 1, - anon_sym_DASH_DASH, - ACTIONS(13964), 1, + ACTIONS(2621), 1, anon_sym_DASH, - STATE(9751), 1, + ACTIONS(3104), 1, + anon_sym_DASH_DASH, + ACTIONS(13411), 1, + anon_sym_LBRACE, + STATE(2420), 1, + sym_block, + STATE(7633), 1, + sym_comment, + STATE(7692), 1, sym_long_flag_equals_value, - STATE(10449), 1, + STATE(10106), 1, sym__flag, - STATE(8034), 2, - sym_comment, - aux_sym_overlay_use_repeat1, - STATE(9344), 2, + STATE(8892), 2, sym_short_flag, sym_long_flag, - [254728] = 6, + [255047] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1249), 1, + ACTIONS(922), 1, aux_sym_command_token1, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - ACTIONS(4037), 1, - anon_sym_LPAREN2, - STATE(8035), 1, + ACTIONS(9474), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13413), 1, + aux_sym_unquoted_token2, + STATE(7634), 1, sym_comment, - ACTIONS(1247), 5, + ACTIONS(920), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [254751] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(8036), 1, - sym_comment, - ACTIONS(2547), 4, - sym_identifier, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(2549), 4, - anon_sym_DOLLAR, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [254770] = 6, + anon_sym_LF2, + [255070] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9923), 1, - anon_sym_DOT_DOT2, - STATE(8037), 1, - sym_comment, - ACTIONS(4018), 2, - ts_builtin_sym_end, + ACTIONS(922), 1, aux_sym_command_token1, - ACTIONS(9925), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(4016), 3, + ACTIONS(9516), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13415), 1, + aux_sym_unquoted_token2, + STATE(7635), 1, + sym_comment, + ACTIONS(920), 5, anon_sym_SEMI, anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, - [254793] = 8, + anon_sym_RBRACE, + [255093] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2843), 1, - anon_sym_RBRACK, - ACTIONS(2845), 1, - sym__entry_separator, - ACTIONS(2847), 1, - anon_sym_LPAREN2, - ACTIONS(13967), 1, + ACTIONS(1302), 1, anon_sym_DOT_DOT2, - STATE(8038), 1, + ACTIONS(3759), 1, + anon_sym_LF, + STATE(7636), 1, sym_comment, - ACTIONS(2851), 2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(13969), 2, + ACTIONS(1304), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [254820] = 6, + ACTIONS(3757), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [255116] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13971), 1, - anon_sym_DOT_DOT2, - STATE(8039), 1, + ACTIONS(1004), 1, + anon_sym_LF, + ACTIONS(9297), 1, + anon_sym_DOT, + STATE(3727), 1, + sym_cell_path, + STATE(4928), 1, + sym_path, + STATE(7637), 1, sym_comment, - ACTIONS(4045), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(13973), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(4043), 3, + ACTIONS(1002), 4, anon_sym_SEMI, - anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, - [254843] = 5, + anon_sym_RBRACE, + [255141] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3750), 1, + ACTIONS(940), 1, anon_sym_LF, - ACTIONS(13171), 1, - aux_sym__immediate_decimal_token1, - STATE(8040), 1, + ACTIONS(8419), 1, + aux_sym_unquoted_token5, + STATE(7638), 1, sym_comment, - ACTIONS(3748), 6, + ACTIONS(938), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [254864] = 4, - ACTIONS(113), 1, + [255162] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(8041), 1, + STATE(7639), 1, sym_comment, - ACTIONS(2547), 4, - anon_sym_RBRACK, + ACTIONS(2402), 4, + sym_identifier, anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(2549), 4, + ACTIONS(2404), 4, + anon_sym_DOLLAR, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [254883] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2694), 1, - anon_sym_DASH, - ACTIONS(2785), 1, - anon_sym_DASH_DASH, - ACTIONS(13975), 1, - anon_sym_LBRACE, - STATE(2883), 1, - sym_block, - STATE(8042), 1, - sym_comment, - STATE(8074), 1, - sym_long_flag_equals_value, - STATE(10663), 1, - sym__flag, - STATE(9344), 2, - sym_short_flag, - sym_long_flag, - [254912] = 4, + [255181] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(8043), 1, + STATE(7640), 1, sym_comment, - ACTIONS(2437), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT2, - anon_sym_DOT, + ACTIONS(2402), 4, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, aux_sym_unquoted_token2, - ACTIONS(2439), 4, + ACTIONS(2404), 4, + ts_builtin_sym_end, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [254931] = 5, - ACTIONS(3), 1, + anon_sym_DOT, + aux_sym_command_token1, + [255200] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13977), 1, - aux_sym__immediate_decimal_token2, - STATE(8044), 1, - sym_comment, - ACTIONS(2581), 2, - anon_sym_DASH, + ACTIONS(1844), 1, aux_sym_unquoted_token2, - ACTIONS(2583), 5, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_LPAREN2, + ACTIONS(12748), 1, anon_sym_DOT, - [254952] = 5, + STATE(7641), 1, + sym_comment, + ACTIONS(3314), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3312), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [255223] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13979), 1, - aux_sym__immediate_decimal_token2, - STATE(8045), 1, + ACTIONS(2651), 1, + anon_sym_DQUOTE, + ACTIONS(13399), 1, + sym_identifier, + ACTIONS(13417), 1, + anon_sym_GT, + STATE(6559), 1, + sym__str_double_quotes, + STATE(7642), 1, sym_comment, - ACTIONS(2581), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(2583), 4, - anon_sym_in, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [254973] = 6, + STATE(7643), 1, + aux_sym_collection_type_repeat1, + STATE(7871), 1, + sym_val_string, + ACTIONS(2653), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [255252] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12217), 1, - anon_sym_DOT, - STATE(5368), 1, - sym_cell_path, - STATE(7027), 1, - sym_path, - STATE(8046), 1, + ACTIONS(2651), 1, + anon_sym_DQUOTE, + ACTIONS(13399), 1, + sym_identifier, + ACTIONS(13419), 1, + anon_sym_GT, + STATE(6559), 1, + sym__str_double_quotes, + STATE(7643), 1, sym_comment, - ACTIONS(1192), 5, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOLLAR, - anon_sym_LBRACE, - [254996] = 4, + STATE(7685), 1, + aux_sym_collection_type_repeat1, + STATE(7871), 1, + sym_val_string, + ACTIONS(2653), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [255281] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(8047), 1, + ACTIONS(13421), 1, + anon_sym_DOT_DOT2, + STATE(7644), 1, sym_comment, - ACTIONS(2437), 4, + ACTIONS(3713), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(13423), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3711), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_PIPE, - aux_sym_unquoted_token2, - ACTIONS(2439), 4, - ts_builtin_sym_end, - anon_sym_LPAREN2, - anon_sym_DOT, - aux_sym_command_token1, - [255015] = 5, + [255304] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13981), 1, + ACTIONS(2651), 1, + anon_sym_DQUOTE, + ACTIONS(13399), 1, + sym_identifier, + ACTIONS(13425), 1, + anon_sym_GT, + STATE(6559), 1, + sym__str_double_quotes, + STATE(7645), 1, + sym_comment, + STATE(7685), 1, + aux_sym_collection_type_repeat1, + STATE(7871), 1, + sym_val_string, + ACTIONS(2653), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [255333] = 8, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(3354), 1, + anon_sym_RBRACK, + ACTIONS(3356), 1, + sym__entry_separator, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(13427), 1, anon_sym_DOT_DOT2, - STATE(8048), 1, + STATE(7646), 1, sym_comment, - ACTIONS(13983), 2, + ACTIONS(3362), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(13429), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(4045), 5, - sym_cmd_identifier, + [255360] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(12513), 1, + anon_sym_DOT, + STATE(7647), 1, + sym_comment, + ACTIONS(3356), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3354), 4, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [255036] = 4, + anon_sym_DASH, + [255383] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3505), 1, + ACTIONS(1068), 1, anon_sym_DOT_DOT2, - STATE(8049), 1, + STATE(7648), 1, sym_comment, - ACTIONS(3507), 7, + ACTIONS(1070), 7, sym_cmd_identifier, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, @@ -566589,2249 +526247,1935 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [255055] = 6, - ACTIONS(113), 1, + [255402] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - ACTIONS(4377), 1, - aux_sym_command_token1, - STATE(8050), 1, + ACTIONS(2621), 1, + anon_sym_DASH, + ACTIONS(3104), 1, + anon_sym_DASH_DASH, + ACTIONS(13411), 1, + anon_sym_LBRACE, + STATE(2435), 1, + sym_block, + STATE(7649), 1, sym_comment, - STATE(11424), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4375), 5, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [255078] = 6, + STATE(7692), 1, + sym_long_flag_equals_value, + STATE(10235), 1, + sym__flag, + STATE(8892), 2, + sym_short_flag, + sym_long_flag, + [255431] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13985), 1, - anon_sym_DOT, - STATE(8051), 1, + ACTIONS(2621), 1, + anon_sym_DASH, + ACTIONS(3104), 1, + anon_sym_DASH_DASH, + ACTIONS(13411), 1, + anon_sym_LBRACE, + STATE(2437), 1, + sym_block, + STATE(7650), 1, sym_comment, - STATE(8111), 1, - sym_path, - STATE(9023), 1, - sym_cell_path, - ACTIONS(1150), 5, - sym_cmd_identifier, + STATE(7692), 1, + sym_long_flag_equals_value, + STATE(10055), 1, + sym__flag, + STATE(8892), 2, + sym_short_flag, + sym_long_flag, + [255460] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2621), 1, + anon_sym_DASH, + ACTIONS(3104), 1, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [255101] = 6, + ACTIONS(13411), 1, + anon_sym_LBRACE, + STATE(2438), 1, + sym_block, + STATE(7651), 1, + sym_comment, + STATE(7692), 1, + sym_long_flag_equals_value, + STATE(10144), 1, + sym__flag, + STATE(8892), 2, + sym_short_flag, + sym_long_flag, + [255489] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2851), 1, + ACTIONS(1886), 1, aux_sym_unquoted_token2, - ACTIONS(13169), 1, + ACTIONS(13087), 1, anon_sym_DOT, - STATE(8052), 1, + STATE(7652), 1, sym_comment, - ACTIONS(2845), 2, + ACTIONS(3773), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(2843), 4, + ACTIONS(3771), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [255124] = 6, + [255512] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3356), 1, + anon_sym_DASH_DASH, + ACTIONS(13431), 1, + anon_sym_DOT_DOT2, + STATE(7653), 1, + sym_comment, + ACTIONS(3354), 2, + sym_identifier, + anon_sym_DASH, + ACTIONS(3362), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(13433), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [255537] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - ACTIONS(1275), 1, - aux_sym_command_token1, - ACTIONS(4631), 1, - anon_sym_LPAREN2, - STATE(8053), 1, + ACTIONS(3650), 1, + aux_sym_unquoted_token2, + ACTIONS(13004), 1, + anon_sym_DOT, + STATE(7654), 1, sym_comment, - ACTIONS(1273), 5, - anon_sym_SEMI, + ACTIONS(3646), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_RPAREN, + ACTIONS(3644), 4, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_LF2, - [255147] = 5, + anon_sym_DASH_DASH, + anon_sym_DASH, + [255560] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13987), 1, + ACTIONS(13435), 1, + anon_sym_DOT, + ACTIONS(13438), 1, aux_sym__immediate_decimal_token2, - STATE(8054), 1, + STATE(7655), 1, sym_comment, - ACTIONS(2547), 3, + ACTIONS(2356), 2, anon_sym_DOT_DOT2, - anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(2549), 4, + ACTIONS(2358), 4, anon_sym_LBRACE, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [255168] = 7, - ACTIONS(3), 1, + [255583] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3522), 1, - anon_sym_LPAREN2, - ACTIONS(13989), 1, + ACTIONS(3743), 1, + anon_sym_LF, + ACTIONS(13440), 1, anon_sym_DOT_DOT2, - STATE(8055), 1, + STATE(7656), 1, sym_comment, - ACTIONS(1934), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(3520), 2, - anon_sym_DOLLAR, - anon_sym_LBRACE, - ACTIONS(13991), 2, + ACTIONS(13442), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [255193] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2891), 1, - anon_sym_DQUOTE, - ACTIONS(13941), 1, - sym_identifier, - ACTIONS(13993), 1, - anon_sym_GT, - STATE(6969), 1, - sym__str_double_quotes, - STATE(8009), 1, - aux_sym_collection_type_repeat1, - STATE(8056), 1, - sym_comment, - STATE(8380), 1, - sym_val_string, - ACTIONS(2893), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [255222] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13707), 1, - anon_sym_DASH, - STATE(8057), 1, - sym_comment, - ACTIONS(13703), 7, - sym_identifier, - anon_sym_RBRACK, + ACTIONS(3741), 4, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [255241] = 6, + anon_sym_RBRACE, + [255606] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13995), 1, - anon_sym_DOT, - ACTIONS(13998), 1, - aux_sym__immediate_decimal_token2, - STATE(8058), 1, - sym_comment, - ACTIONS(2581), 3, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1844), 1, aux_sym_unquoted_token2, - ACTIONS(2583), 3, - ts_builtin_sym_end, + ACTIONS(3314), 1, anon_sym_LF, + ACTIONS(3316), 1, anon_sym_LPAREN2, - [255264] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2694), 1, - anon_sym_DASH, - ACTIONS(2861), 1, - anon_sym_DASH_DASH, - ACTIONS(14000), 1, - sym_identifier, - STATE(8032), 1, - aux_sym_overlay_use_repeat1, - STATE(8059), 1, + ACTIONS(12748), 1, + anon_sym_DOT, + STATE(7657), 1, sym_comment, - STATE(9751), 1, - sym_long_flag_equals_value, - STATE(10449), 1, - sym__flag, - STATE(9344), 2, - sym_short_flag, - sym_long_flag, - [255293] = 4, + ACTIONS(3312), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [255631] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(8060), 1, + STATE(7658), 1, sym_comment, - ACTIONS(3505), 4, - anon_sym_RBRACK, + ACTIONS(3721), 4, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(3507), 4, - anon_sym_LPAREN2, + ACTIONS(3723), 4, + ts_builtin_sym_end, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [255312] = 4, + aux_sym_command_token1, + [255650] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5199), 1, - anon_sym_DASH, - STATE(8061), 1, + ACTIONS(13405), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(13444), 1, + anon_sym_DOT, + STATE(7659), 1, sym_comment, - ACTIONS(5201), 7, - sym_cmd_identifier, + ACTIONS(2356), 2, + anon_sym_DASH, + aux_sym_unquoted_token2, + ACTIONS(2358), 4, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [255331] = 4, - ACTIONS(3), 1, + anon_sym_LPAREN2, + [255673] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5203), 1, - anon_sym_DASH, - STATE(8062), 1, + ACTIONS(10046), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(7660), 1, sym_comment, - ACTIONS(5205), 7, - sym_cmd_identifier, - anon_sym_DOLLAR, + ACTIONS(1209), 2, + ts_builtin_sym_end, + anon_sym_LPAREN2, + ACTIONS(1139), 5, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [255350] = 7, + anon_sym_DASH, + [255694] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2847), 1, - anon_sym_LPAREN2, - ACTIONS(14002), 1, - anon_sym_DOT_DOT2, - STATE(8063), 1, + STATE(7661), 1, sym_comment, - ACTIONS(2845), 2, - anon_sym_DOLLAR, - anon_sym_LBRACE, - ACTIONS(2851), 2, + ACTIONS(2362), 3, + anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(14004), 2, + ACTIONS(2364), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [255375] = 6, + [255713] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2581), 1, - anon_sym_DOT_DOT2, - ACTIONS(13741), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(14006), 1, + ACTIONS(13447), 1, anon_sym_DOT, - STATE(8064), 1, + ACTIONS(13450), 1, + aux_sym__immediate_decimal_token2, + STATE(7662), 1, sym_comment, - ACTIONS(2583), 5, + ACTIONS(2356), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(2358), 4, anon_sym_PIPE, - anon_sym_if, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [255398] = 4, + [255736] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + ACTIONS(3727), 1, + anon_sym_LPAREN2, + ACTIONS(13452), 1, + aux_sym_command_token1, + STATE(7663), 1, + sym_comment, + ACTIONS(3725), 5, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [255759] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14010), 1, - anon_sym_DASH, - STATE(8065), 1, + ACTIONS(920), 1, + sym_cmd_identifier, + ACTIONS(13454), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13456), 1, + aux_sym_unquoted_token2, + STATE(7664), 1, sym_comment, - ACTIONS(14008), 7, - sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + ACTIONS(922), 5, anon_sym_DASH_DASH, - [255417] = 6, + anon_sym_LPAREN2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [255782] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12430), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(14012), 1, - anon_sym_DOT, - STATE(8066), 1, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + ACTIONS(4198), 1, + aux_sym_command_token1, + STATE(7665), 1, sym_comment, - ACTIONS(2583), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2581), 4, + STATE(10164), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4196), 5, anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [255440] = 5, + anon_sym_RBRACE, + [255805] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(3576), 1, anon_sym_LF, - ACTIONS(8904), 1, - aux_sym_unquoted_token5, - STATE(8067), 1, + ACTIONS(12515), 1, + aux_sym__immediate_decimal_token1, + STATE(7666), 1, sym_comment, - ACTIONS(959), 6, + ACTIONS(3574), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [255461] = 6, - ACTIONS(113), 1, + [255826] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(13319), 1, - anon_sym_DOT, - STATE(8068), 1, + ACTIONS(13460), 1, + anon_sym_DASH, + STATE(7667), 1, sym_comment, - ACTIONS(3520), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3518), 4, - anon_sym_SEMI, + ACTIONS(13458), 7, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + [255845] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13460), 1, anon_sym_DASH, - [255484] = 5, + STATE(7668), 1, + sym_comment, + ACTIONS(13458), 7, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [255864] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14014), 1, - aux_sym__immediate_decimal_token2, - STATE(8069), 1, + STATE(7669), 1, sym_comment, - ACTIONS(2581), 3, + ACTIONS(2402), 3, anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(2583), 4, - anon_sym_LBRACE, - anon_sym_LPAREN2, + ACTIONS(2404), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [255505] = 6, - ACTIONS(113), 1, + [255883] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3520), 1, - anon_sym_LF, - ACTIONS(14016), 1, - anon_sym_DOT_DOT2, - STATE(8070), 1, + ACTIONS(13464), 1, + anon_sym_DASH, + STATE(7670), 1, sym_comment, - ACTIONS(14018), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3518), 4, - anon_sym_SEMI, + ACTIONS(13462), 7, + sym_identifier, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [255528] = 7, - ACTIONS(113), 1, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [255902] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(13169), 1, - anon_sym_DOT, - ACTIONS(13815), 1, - aux_sym__immediate_decimal_token1, - STATE(8071), 1, + ACTIONS(13283), 1, + anon_sym_DASH, + STATE(7671), 1, sym_comment, - ACTIONS(3750), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(3748), 3, - anon_sym_SEMI, - anon_sym_LF, + ACTIONS(13279), 7, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, - [255553] = 5, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [255921] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13717), 1, + ACTIONS(13148), 1, aux_sym__immediate_decimal_token2, - STATE(8072), 1, + STATE(7672), 1, sym_comment, - ACTIONS(2581), 3, - sym_identifier, + ACTIONS(2229), 2, anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(2583), 4, + aux_sym_unquoted_token2, + ACTIONS(2231), 5, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [255574] = 4, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT, + [255942] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1168), 1, + ACTIONS(13466), 1, anon_sym_DOT_DOT2, - STATE(8073), 1, + STATE(7673), 1, sym_comment, - ACTIONS(1170), 7, - sym_cmd_identifier, - anon_sym_DASH_DASH, + ACTIONS(13468), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(3693), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [255593] = 4, + [255963] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5075), 1, - anon_sym_DASH, - STATE(8074), 1, + ACTIONS(13470), 1, + anon_sym_DOT_DOT2, + STATE(7674), 1, sym_comment, - ACTIONS(5079), 7, + ACTIONS(13472), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3701), 5, sym_cmd_identifier, - anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [255612] = 6, + [255984] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13985), 1, - anon_sym_DOT, - STATE(8073), 1, - sym_cell_path, - STATE(8075), 1, + ACTIONS(13474), 1, + anon_sym_DOT_DOT2, + STATE(7675), 1, sym_comment, - STATE(8111), 1, - sym_path, - ACTIONS(1012), 5, + ACTIONS(13476), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3713), 5, sym_cmd_identifier, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [255635] = 6, + [256005] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2845), 1, - anon_sym_LF, - ACTIONS(14020), 1, - anon_sym_DOT_DOT2, - STATE(8076), 1, + STATE(7676), 1, sym_comment, - ACTIONS(14022), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2843), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [255658] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(3520), 1, + ACTIONS(1157), 2, + anon_sym_LPAREN2, aux_sym_command_token1, - ACTIONS(13319), 1, - anon_sym_DOT, - STATE(8077), 1, - sym_comment, - ACTIONS(3518), 5, + ACTIONS(1155), 6, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_LF2, - [255681] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2694), 1, - anon_sym_DASH, - ACTIONS(2785), 1, - anon_sym_DASH_DASH, - ACTIONS(13975), 1, - anon_sym_LBRACE, - STATE(2812), 1, - sym_block, - STATE(8074), 1, - sym_long_flag_equals_value, - STATE(8078), 1, - sym_comment, - STATE(10569), 1, - sym__flag, - STATE(9344), 2, - sym_short_flag, - sym_long_flag, - [255710] = 4, + aux_sym_unquoted_token6, + [256024] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(8079), 1, - sym_comment, - ACTIONS(2437), 3, + ACTIONS(2356), 1, anon_sym_DOT_DOT2, + ACTIONS(13130), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(13478), 1, anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(2439), 5, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_LPAREN2, + STATE(7677), 1, + sym_comment, + ACTIONS(2358), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [255729] = 6, + [256047] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(938), 1, - aux_sym_command_token1, - ACTIONS(10014), 1, + ACTIONS(4773), 1, + anon_sym_LF, + ACTIONS(12515), 1, aux_sym__immediate_decimal_token1, - ACTIONS(14024), 1, - aux_sym_unquoted_token2, - STATE(8080), 1, + STATE(7678), 1, sym_comment, - ACTIONS(936), 5, + ACTIONS(4771), 6, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_LF2, - [255752] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3520), 1, anon_sym_DASH_DASH, - ACTIONS(14026), 1, - anon_sym_DOT_DOT2, - STATE(8081), 1, - sym_comment, - ACTIONS(1934), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(3518), 2, - sym_identifier, anon_sym_DASH, - ACTIONS(14028), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [255777] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13985), 1, - anon_sym_DOT, - STATE(8082), 1, - sym_comment, - STATE(8111), 1, - sym_path, - STATE(9356), 1, - sym_cell_path, - ACTIONS(1156), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [255800] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2724), 1, - anon_sym_DQUOTE, - ACTIONS(3984), 1, - anon_sym_COLON, - ACTIONS(12867), 1, - sym_cmd_identifier, - STATE(7019), 1, - sym__str_double_quotes, - STATE(7900), 1, - sym_val_string, - STATE(8083), 1, - sym_comment, - STATE(10942), 1, - sym__command_name, - ACTIONS(2726), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [255829] = 6, + anon_sym_RBRACE, + [256068] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4045), 1, + ACTIONS(3693), 1, anon_sym_LF, - ACTIONS(14030), 1, + ACTIONS(13480), 1, anon_sym_DOT_DOT2, - STATE(8084), 1, + STATE(7679), 1, sym_comment, - ACTIONS(14032), 2, + ACTIONS(13482), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(4043), 4, + ACTIONS(3691), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [255852] = 6, + [256091] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4012), 1, - aux_sym_unquoted_token2, - ACTIONS(13520), 1, - anon_sym_DOT, - STATE(8085), 1, - sym_comment, - ACTIONS(4008), 2, - ts_builtin_sym_end, + ACTIONS(3701), 1, anon_sym_LF, - ACTIONS(4006), 4, + ACTIONS(13484), 1, + anon_sym_DOT_DOT2, + STATE(7680), 1, + sym_comment, + ACTIONS(13486), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3699), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [255875] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [256114] = 6, + ACTIONS(113), 1, anon_sym_POUND, - STATE(8086), 1, - sym_comment, - ACTIONS(2547), 3, + ACTIONS(3713), 1, + anon_sym_LF, + ACTIONS(13488), 1, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(2549), 5, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_LPAREN2, + STATE(7681), 1, + sym_comment, + ACTIONS(13490), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [255894] = 4, + ACTIONS(3711), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [256137] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(8087), 1, + ACTIONS(4725), 1, + anon_sym_LF, + ACTIONS(13492), 1, + anon_sym_EQ, + STATE(7682), 1, sym_comment, - ACTIONS(1282), 2, - anon_sym_LPAREN2, - aux_sym_command_token1, - ACTIONS(1280), 6, + ACTIONS(4721), 6, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_RBRACE, - aux_sym_unquoted_token6, - [255913] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(8088), 1, - sym_comment, - ACTIONS(3505), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(3507), 5, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [255932] = 5, + [256158] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14034), 1, + ACTIONS(13450), 1, aux_sym__immediate_decimal_token2, - STATE(8089), 1, + STATE(7683), 1, sym_comment, - ACTIONS(2581), 3, + ACTIONS(2356), 3, anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(2583), 4, + ACTIONS(2358), 4, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [255953] = 7, - ACTIONS(3), 1, + [256179] = 7, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2006), 1, + ACTIONS(3362), 1, aux_sym_unquoted_token2, - ACTIONS(3874), 1, - sym_cmd_identifier, - ACTIONS(3878), 1, - anon_sym_LPAREN2, - ACTIONS(13456), 1, + ACTIONS(12513), 1, anon_sym_DOT, - STATE(8090), 1, + ACTIONS(13160), 1, + aux_sym__immediate_decimal_token1, + STATE(7684), 1, sym_comment, - ACTIONS(3876), 4, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [255978] = 9, + ACTIONS(3576), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(3574), 3, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, + [256204] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3984), 1, - anon_sym_COLON, - ACTIONS(8454), 1, + ACTIONS(13494), 1, + sym_identifier, + ACTIONS(13497), 1, + anon_sym_GT, + ACTIONS(13499), 1, anon_sym_DQUOTE, - ACTIONS(14036), 1, - sym_cmd_identifier, - STATE(2494), 1, - sym__command_name, - STATE(2627), 1, + STATE(6559), 1, sym__str_double_quotes, - STATE(2633), 1, + STATE(7871), 1, sym_val_string, - STATE(8091), 1, - sym_comment, - ACTIONS(8456), 2, + ACTIONS(13502), 2, sym__str_single_quotes, sym__str_back_ticks, - [256007] = 5, + STATE(7685), 2, + sym_comment, + aux_sym_collection_type_repeat1, + [256231] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2621), 1, + anon_sym_DASH, + ACTIONS(3104), 1, + anon_sym_DASH_DASH, + ACTIONS(13411), 1, + anon_sym_LBRACE, + STATE(2421), 1, + sym_block, + STATE(7686), 1, + sym_comment, + STATE(7692), 1, + sym_long_flag_equals_value, + STATE(10228), 1, + sym__flag, + STATE(8892), 2, + sym_short_flag, + sym_long_flag, + [256260] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13823), 1, + ACTIONS(13287), 1, aux_sym__immediate_decimal_token2, - STATE(8092), 1, + STATE(7687), 1, sym_comment, - ACTIONS(2437), 3, + ACTIONS(2229), 3, anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(2439), 4, + ACTIONS(2231), 4, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [256028] = 6, + [256281] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - ACTIONS(4631), 1, - anon_sym_LPAREN2, - STATE(8093), 1, - sym_comment, - ACTIONS(1255), 2, - ts_builtin_sym_end, + ACTIONS(3356), 1, anon_sym_LF, - ACTIONS(1253), 4, + ACTIONS(13505), 1, + anon_sym_DOT_DOT2, + STATE(7688), 1, + sym_comment, + ACTIONS(13507), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3354), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [256051] = 9, + anon_sym_RBRACE, + [256304] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2694), 1, - anon_sym_DASH, - ACTIONS(2785), 1, - anon_sym_DASH_DASH, - ACTIONS(14038), 1, - anon_sym_LBRACE, - STATE(2664), 1, - sym_val_record, - STATE(8074), 1, - sym_long_flag_equals_value, - STATE(8094), 1, - sym_comment, - STATE(10620), 1, - sym__flag, - STATE(9344), 2, - sym_short_flag, - sym_long_flag, - [256080] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(8095), 1, - sym_comment, - ACTIONS(3960), 4, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, + ACTIONS(13509), 1, anon_sym_DOT_DOT2, - ACTIONS(3962), 4, - ts_builtin_sym_end, + STATE(7689), 1, + sym_comment, + ACTIONS(13511), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - [256099] = 5, + ACTIONS(3743), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [256325] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14040), 1, + ACTIONS(13513), 1, aux_sym__immediate_decimal_token2, - STATE(8096), 1, + STATE(7690), 1, sym_comment, - ACTIONS(2547), 3, + ACTIONS(2362), 3, anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(2549), 4, + ACTIONS(2364), 4, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [256120] = 6, - ACTIONS(113), 1, + [256346] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - ACTIONS(4631), 1, - anon_sym_LPAREN2, - STATE(8097), 1, + ACTIONS(13515), 1, + anon_sym_DOT, + STATE(7691), 1, sym_comment, - ACTIONS(1275), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1273), 4, - anon_sym_SEMI, - anon_sym_PIPE, + STATE(7713), 1, + sym_path, + STATE(8535), 1, + sym_cell_path, + ACTIONS(1059), 5, + sym_cmd_identifier, anon_sym_DASH_DASH, - anon_sym_DASH, - [256143] = 4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [256369] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(8098), 1, + ACTIONS(4734), 1, + anon_sym_DASH, + STATE(7692), 1, sym_comment, - ACTIONS(3505), 4, - sym_identifier, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(3507), 4, + ACTIONS(4738), 7, + sym_cmd_identifier, anon_sym_DOLLAR, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [256162] = 6, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [256388] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(938), 1, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + ACTIONS(4344), 1, aux_sym_command_token1, - ACTIONS(10067), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14042), 1, - aux_sym_unquoted_token2, - STATE(8099), 1, + STATE(7693), 1, sym_comment, - ACTIONS(936), 5, + STATE(10434), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4342), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [256185] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2694), 1, - anon_sym_DASH, - ACTIONS(2785), 1, - anon_sym_DASH_DASH, - ACTIONS(13975), 1, - anon_sym_LBRACE, - STATE(2938), 1, - sym_block, - STATE(8074), 1, - sym_long_flag_equals_value, - STATE(8100), 1, - sym_comment, - STATE(10515), 1, - sym__flag, - STATE(9344), 2, - sym_short_flag, - sym_long_flag, - [256214] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2694), 1, - anon_sym_DASH, - ACTIONS(2785), 1, - anon_sym_DASH_DASH, - ACTIONS(14044), 1, - anon_sym_LBRACE, - STATE(2830), 1, - sym_val_record, - STATE(8074), 1, - sym_long_flag_equals_value, - STATE(8101), 1, - sym_comment, - STATE(10599), 1, - sym__flag, - STATE(9344), 2, - sym_short_flag, - sym_long_flag, - [256243] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2694), 1, - anon_sym_DASH, - ACTIONS(2785), 1, - anon_sym_DASH_DASH, - ACTIONS(13975), 1, - anon_sym_LBRACE, - STATE(2824), 1, - sym_block, - STATE(8074), 1, - sym_long_flag_equals_value, - STATE(8102), 1, - sym_comment, - STATE(10479), 1, - sym__flag, - STATE(9344), 2, - sym_short_flag, - sym_long_flag, - [256272] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2845), 1, - anon_sym_DASH_DASH, - ACTIONS(14046), 1, - anon_sym_DOT_DOT2, - STATE(8103), 1, - sym_comment, - ACTIONS(2843), 2, - sym_identifier, - anon_sym_DASH, - ACTIONS(2851), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(14048), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [256297] = 6, + [256411] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, + ACTIONS(2187), 1, anon_sym_LPAREN2, - ACTIONS(4535), 1, + ACTIONS(4396), 1, aux_sym_command_token1, - STATE(8104), 1, + STATE(7694), 1, sym_comment, - STATE(11424), 1, + STATE(10434), 1, sym__expr_parenthesized_immediate, - ACTIONS(4533), 5, + ACTIONS(4394), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [256320] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4016), 1, - anon_sym_DASH, - STATE(8105), 1, - sym_comment, - ACTIONS(4018), 7, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [256339] = 6, + [256434] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1251), 1, + ACTIONS(1091), 1, + aux_sym_command_token1, + ACTIONS(1149), 1, aux_sym_unquoted_token6, - ACTIONS(4037), 1, + ACTIONS(3783), 1, anon_sym_LPAREN2, - ACTIONS(14050), 1, - aux_sym_command_token1, - STATE(8106), 1, + STATE(7695), 1, sym_comment, - ACTIONS(4035), 5, + ACTIONS(1089), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_LF2, - [256362] = 7, + anon_sym_RBRACE, + [256457] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2843), 1, + STATE(7696), 1, + sym_comment, + ACTIONS(2229), 2, sym_cmd_identifier, - ACTIONS(2847), 1, - anon_sym_LPAREN2, - ACTIONS(2851), 1, aux_sym_unquoted_token2, - ACTIONS(13169), 1, - anon_sym_DOT, - STATE(8107), 1, - sym_comment, - ACTIONS(2845), 4, + ACTIONS(2231), 6, anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [256387] = 9, + [256476] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2694), 1, - anon_sym_DASH, - ACTIONS(2785), 1, - anon_sym_DASH_DASH, - ACTIONS(13975), 1, - anon_sym_LBRACE, - STATE(2849), 1, - sym_block, - STATE(8074), 1, - sym_long_flag_equals_value, - STATE(8108), 1, + ACTIONS(1061), 1, + anon_sym_DOT_DOT2, + STATE(7697), 1, sym_comment, - STATE(10577), 1, - sym__flag, - STATE(9344), 2, - sym_short_flag, - sym_long_flag, - [256416] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2694), 1, - anon_sym_DASH, - ACTIONS(2785), 1, + ACTIONS(1063), 7, + sym_cmd_identifier, anon_sym_DASH_DASH, - ACTIONS(13975), 1, - anon_sym_LBRACE, - STATE(2856), 1, - sym_block, - STATE(8074), 1, - sym_long_flag_equals_value, - STATE(8109), 1, - sym_comment, - STATE(10583), 1, - sym__flag, - STATE(9344), 2, - sym_short_flag, - sym_long_flag, - [256445] = 9, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [256495] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2694), 1, + ACTIONS(2621), 1, anon_sym_DASH, - ACTIONS(2785), 1, + ACTIONS(3104), 1, anon_sym_DASH_DASH, - ACTIONS(13975), 1, + ACTIONS(13411), 1, anon_sym_LBRACE, - STATE(2857), 1, + STATE(2444), 1, sym_block, - STATE(8074), 1, + STATE(7692), 1, sym_long_flag_equals_value, - STATE(8110), 1, + STATE(7698), 1, sym_comment, - STATE(10585), 1, + STATE(9981), 1, sym__flag, - STATE(9344), 2, + STATE(8892), 2, sym_short_flag, sym_long_flag, - [256474] = 6, - ACTIONS(3), 1, + [256524] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13985), 1, - anon_sym_DOT, - STATE(8111), 1, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + ACTIONS(4424), 1, + aux_sym_command_token1, + STATE(7699), 1, sym_comment, - STATE(8132), 1, - aux_sym_cell_path_repeat1, - STATE(8815), 1, - sym_path, - ACTIONS(989), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [256497] = 6, - ACTIONS(3), 1, + STATE(10434), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4422), 5, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [256547] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13985), 1, + ACTIONS(2358), 1, + aux_sym_command_token1, + ACTIONS(12027), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(13517), 1, anon_sym_DOT, - STATE(8111), 1, - sym_path, - STATE(8112), 1, + STATE(7700), 1, sym_comment, - STATE(9294), 1, - sym_cell_path, - ACTIONS(1181), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [256520] = 4, - ACTIONS(3), 1, + ACTIONS(2356), 5, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [256570] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14054), 1, - anon_sym_DASH, - STATE(8113), 1, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + ACTIONS(4428), 1, + aux_sym_command_token1, + STATE(7701), 1, sym_comment, - ACTIONS(14052), 7, - sym_identifier, - anon_sym_RBRACK, + STATE(10434), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4426), 5, + anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [256539] = 7, + anon_sym_RBRACE, + [256593] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2006), 1, + ACTIONS(13519), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13521), 1, aux_sym_unquoted_token2, - ACTIONS(3876), 1, + STATE(7702), 1, + sym_comment, + ACTIONS(922), 2, anon_sym_LF, - ACTIONS(3878), 1, anon_sym_LPAREN2, - ACTIONS(13456), 1, - anon_sym_DOT, - STATE(8114), 1, - sym_comment, - ACTIONS(3874), 4, + ACTIONS(920), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [256564] = 7, - ACTIONS(3), 1, + [256616] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4006), 1, - sym_cmd_identifier, - ACTIONS(4010), 1, - anon_sym_LPAREN2, - ACTIONS(4012), 1, + ACTIONS(1886), 1, aux_sym_unquoted_token2, - ACTIONS(13520), 1, + ACTIONS(3773), 1, + aux_sym_command_token1, + ACTIONS(13087), 1, anon_sym_DOT, - STATE(8115), 1, + STATE(7703), 1, sym_comment, - ACTIONS(4008), 4, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [256589] = 9, + ACTIONS(3771), 5, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [256639] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2694), 1, + ACTIONS(2621), 1, anon_sym_DASH, - ACTIONS(2861), 1, + ACTIONS(2716), 1, anon_sym_DASH_DASH, - ACTIONS(14056), 1, + ACTIONS(13523), 1, sym_identifier, - STATE(8116), 1, + STATE(7704), 1, sym_comment, - STATE(8184), 1, + STATE(7805), 1, aux_sym_overlay_use_repeat1, - STATE(9751), 1, + STATE(9246), 1, sym_long_flag_equals_value, - STATE(10449), 1, + STATE(9891), 1, sym__flag, - STATE(9344), 2, + STATE(8892), 2, sym_short_flag, sym_long_flag, - [256618] = 9, + [256668] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2724), 1, - anon_sym_DQUOTE, - ACTIONS(3880), 1, - anon_sym_COLON, - ACTIONS(12867), 1, - sym_cmd_identifier, - STATE(7019), 1, - sym__str_double_quotes, - STATE(7900), 1, - sym_val_string, - STATE(8117), 1, + ACTIONS(13527), 1, + anon_sym_DASH, + STATE(7705), 1, sym_comment, - STATE(10942), 1, - sym__command_name, - ACTIONS(2726), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [256647] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3880), 1, - anon_sym_COLON, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12574), 1, + ACTIONS(13525), 7, sym_identifier, - STATE(3033), 1, - sym__assignment_pattern, - STATE(7440), 1, - sym__var, - STATE(8118), 1, - sym_comment, - STATE(8921), 1, - sym_val_variable, - STATE(9477), 1, - sym__assignment_pattern_last, - STATE(10265), 1, - sym__variable_name, - [256678] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3880), 1, - anon_sym_COLON, - ACTIONS(6247), 1, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(12574), 1, - sym_identifier, - STATE(3063), 1, - sym__assignment_pattern, - STATE(7440), 1, - sym__var, - STATE(8119), 1, - sym_comment, - STATE(8921), 1, - sym_val_variable, - STATE(9487), 1, - sym__assignment_pattern_last, - STATE(10265), 1, - sym__variable_name, - [256709] = 10, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [256687] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3880), 1, - anon_sym_COLON, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12574), 1, - sym_identifier, - STATE(2953), 1, - sym__assignment_pattern, - STATE(7440), 1, - sym__var, - STATE(8120), 1, + ACTIONS(13125), 1, + aux_sym__immediate_decimal_token2, + STATE(7706), 1, sym_comment, - STATE(8921), 1, - sym_val_variable, - STATE(9488), 1, - sym__assignment_pattern_last, - STATE(10265), 1, - sym__variable_name, - [256740] = 9, + ACTIONS(2229), 3, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(2231), 4, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [256708] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2724), 1, - anon_sym_DQUOTE, - ACTIONS(3880), 1, - anon_sym_COLON, - ACTIONS(12867), 1, - sym_cmd_identifier, - STATE(7019), 1, - sym__str_double_quotes, - STATE(7900), 1, - sym_val_string, - STATE(8121), 1, + ACTIONS(13515), 1, + anon_sym_DOT, + STATE(7697), 1, + sym_cell_path, + STATE(7707), 1, sym_comment, - STATE(9561), 1, - sym__command_name, - ACTIONS(2726), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [256769] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3880), 1, - anon_sym_COLON, - ACTIONS(8454), 1, - anon_sym_DQUOTE, - ACTIONS(14036), 1, + STATE(7713), 1, + sym_path, + ACTIONS(1004), 5, sym_cmd_identifier, - STATE(2494), 1, - sym__command_name, - STATE(2627), 1, - sym__str_double_quotes, - STATE(2633), 1, - sym_val_string, - STATE(8122), 1, - sym_comment, - ACTIONS(8456), 2, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [256798] = 6, + [256731] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1284), 1, - aux_sym_unquoted_token6, - ACTIONS(4895), 1, - anon_sym_LPAREN2, - STATE(8123), 1, + ACTIONS(13529), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13531), 1, + aux_sym_unquoted_token2, + STATE(7708), 1, sym_comment, - ACTIONS(1160), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1158), 4, + ACTIONS(920), 3, anon_sym_SEMI, + anon_sym_LF, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [256821] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(13302), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(14058), 1, - anon_sym_DOT, - STATE(8124), 1, - sym_comment, - ACTIONS(2581), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(2583), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [256844] = 6, + ACTIONS(922), 3, + ts_builtin_sym_end, + anon_sym_LPAREN2, + aux_sym_command_token1, + [256754] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1472), 1, + ACTIONS(9581), 1, anon_sym_DOT_DOT2, - ACTIONS(4018), 1, - anon_sym_LF, - STATE(8125), 1, + STATE(7709), 1, sym_comment, - ACTIONS(1474), 2, + ACTIONS(3759), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(9583), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(4016), 4, + ACTIONS(3757), 3, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LF, anon_sym_PIPE, - anon_sym_RBRACE, - [256867] = 6, + [256777] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14062), 1, - anon_sym_DASH_DASH, - STATE(8074), 1, - sym_long_flag_equals_value, - STATE(8838), 1, - sym_long_flag, - STATE(8126), 2, + ACTIONS(13533), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13535), 1, + aux_sym__immediate_decimal_token2, + STATE(7710), 1, sym_comment, - aux_sym_decl_def_repeat1, - ACTIONS(14060), 4, - sym_cmd_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [256890] = 7, + ACTIONS(2229), 3, + sym_identifier, + anon_sym_DASH, + aux_sym_unquoted_token2, + ACTIONS(2231), 3, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT, + [256800] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1012), 1, - anon_sym_LF, - ACTIONS(9806), 1, - anon_sym_DOT, - STATE(4135), 1, - sym_cell_path, - STATE(5343), 1, - sym_path, - STATE(8127), 1, + ACTIONS(1149), 1, + aux_sym_unquoted_token6, + ACTIONS(3783), 1, + anon_sym_LPAREN2, + STATE(7711), 1, sym_comment, - ACTIONS(1010), 4, + ACTIONS(1091), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1089), 4, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [256915] = 7, + anon_sym_DASH_DASH, + anon_sym_DASH, + [256823] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(3518), 1, + STATE(7712), 1, + sym_comment, + ACTIONS(2402), 2, sym_cmd_identifier, - ACTIONS(3522), 1, + aux_sym_unquoted_token2, + ACTIONS(2404), 6, + anon_sym_DASH_DASH, anon_sym_LPAREN2, - ACTIONS(13319), 1, anon_sym_DOT, - STATE(8128), 1, - sym_comment, - ACTIONS(3520), 4, - anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [256940] = 10, + [256842] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3984), 1, - anon_sym_COLON, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12574), 1, - sym_identifier, - STATE(2953), 1, - sym__assignment_pattern, - STATE(7440), 1, - sym__var, - STATE(8129), 1, + ACTIONS(13515), 1, + anon_sym_DOT, + STATE(7713), 1, sym_comment, - STATE(8921), 1, - sym_val_variable, - STATE(9488), 1, - sym__assignment_pattern_last, - STATE(10265), 1, - sym__variable_name, - [256971] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3880), 1, - anon_sym_COLON, - ACTIONS(8454), 1, - anon_sym_DQUOTE, - ACTIONS(14036), 1, + STATE(7720), 1, + aux_sym_cell_path_repeat1, + STATE(8165), 1, + sym_path, + ACTIONS(1012), 5, sym_cmd_identifier, - STATE(1271), 1, - sym__command_name, - STATE(2627), 1, - sym__str_double_quotes, - STATE(2633), 1, - sym_val_string, - STATE(8130), 1, - sym_comment, - ACTIONS(8456), 2, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [257000] = 5, + [256865] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(7714), 1, + sym_comment, + ACTIONS(1047), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1049), 5, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [256884] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13998), 1, - aux_sym__immediate_decimal_token2, - STATE(8131), 1, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + ACTIONS(4344), 1, + aux_sym_command_token1, + STATE(7715), 1, sym_comment, - ACTIONS(2581), 3, + STATE(10434), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4342), 5, anon_sym_SEMI, - anon_sym_PIPE, - aux_sym_unquoted_token2, - ACTIONS(2583), 4, - ts_builtin_sym_end, anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_LF2, + [256907] = 8, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(3354), 1, + anon_sym_RBRACK, + ACTIONS(3356), 1, + sym__entry_separator, + ACTIONS(3358), 1, anon_sym_LPAREN2, + ACTIONS(13537), 1, + anon_sym_DOT_DOT2, + STATE(7716), 1, + sym_comment, + ACTIONS(3362), 2, anon_sym_DOT, - [257021] = 6, + aux_sym__unquoted_in_list_token2, + ACTIONS(13539), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [256934] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13985), 1, + ACTIONS(13515), 1, anon_sym_DOT, - STATE(8132), 1, - sym_comment, - STATE(8136), 1, - aux_sym_cell_path_repeat1, - STATE(8815), 1, + STATE(7713), 1, sym_path, - ACTIONS(1008), 5, + STATE(7717), 1, + sym_comment, + STATE(8722), 1, + sym_cell_path, + ACTIONS(1087), 5, sym_cmd_identifier, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [257044] = 4, + [256957] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(8133), 1, - sym_comment, - ACTIONS(2547), 3, + ACTIONS(3316), 1, + anon_sym_LPAREN2, + ACTIONS(13541), 1, anon_sym_DOT_DOT2, + STATE(7718), 1, + sym_comment, + ACTIONS(1844), 2, anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(2549), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(3314), 2, + anon_sym_DOLLAR, + anon_sym_LBRACE, + ACTIONS(13543), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [257063] = 10, + [256982] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3984), 1, - anon_sym_COLON, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12574), 1, - sym_identifier, - STATE(3033), 1, - sym__assignment_pattern, - STATE(7440), 1, - sym__var, - STATE(8134), 1, - sym_comment, - STATE(8921), 1, - sym_val_variable, - STATE(9477), 1, - sym__assignment_pattern_last, - STATE(10265), 1, - sym__variable_name, - [257094] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(13843), 1, - aux_sym__immediate_decimal_token2, - STATE(8135), 1, + ACTIONS(9593), 1, + anon_sym_DOT_DOT2, + STATE(7719), 1, sym_comment, - ACTIONS(2437), 3, - anon_sym_SEMI, - anon_sym_PIPE, - aux_sym_unquoted_token2, - ACTIONS(2439), 4, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_LPAREN2, - anon_sym_DOT, - [257115] = 5, + ACTIONS(9595), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1091), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [257003] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14065), 1, + ACTIONS(13515), 1, anon_sym_DOT, - STATE(8815), 1, - sym_path, - STATE(8136), 2, + STATE(7720), 1, sym_comment, + STATE(7733), 1, aux_sym_cell_path_repeat1, - ACTIONS(1001), 5, + STATE(8165), 1, + sym_path, + ACTIONS(1008), 5, sym_cmd_identifier, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [257136] = 6, + [257026] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2845), 1, - aux_sym_command_token1, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(13169), 1, - anon_sym_DOT, - STATE(8137), 1, + STATE(7721), 1, sym_comment, - ACTIONS(2843), 5, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [257159] = 6, + ACTIONS(2229), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(2231), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [257045] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1251), 1, + ACTIONS(1163), 1, aux_sym_unquoted_token6, - ACTIONS(4037), 1, + ACTIONS(3727), 1, anon_sym_LPAREN2, - ACTIONS(14068), 1, + ACTIONS(13545), 1, aux_sym_command_token1, - STATE(8138), 1, + STATE(7722), 1, sym_comment, - ACTIONS(4035), 5, + ACTIONS(3725), 5, sym_cmd_identifier, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [257182] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(2845), 1, - anon_sym_LF, - ACTIONS(2847), 1, - anon_sym_LPAREN2, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(13169), 1, - anon_sym_DOT, - STATE(8139), 1, - sym_comment, - ACTIONS(2843), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [257207] = 6, - ACTIONS(113), 1, + [257068] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14070), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14072), 1, - aux_sym_unquoted_token2, - STATE(8140), 1, + ACTIONS(9593), 1, + anon_sym_DOT_DOT2, + STATE(7723), 1, sym_comment, - ACTIONS(936), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - ACTIONS(938), 3, - ts_builtin_sym_end, - anon_sym_LPAREN2, - aux_sym_command_token1, - [257230] = 5, + ACTIONS(9595), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3759), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [257089] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13749), 1, - aux_sym__immediate_decimal_token2, - STATE(8141), 1, - sym_comment, - ACTIONS(2437), 2, + ACTIONS(3757), 1, anon_sym_DASH, - aux_sym_unquoted_token2, - ACTIONS(2439), 5, + STATE(7724), 1, + sym_comment, + ACTIONS(3759), 7, + sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT, - [257251] = 4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [257108] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(8142), 1, + ACTIONS(5113), 1, + anon_sym_DASH, + STATE(7725), 1, sym_comment, - ACTIONS(2437), 2, + ACTIONS(5115), 7, sym_cmd_identifier, - aux_sym_unquoted_token2, - ACTIONS(2439), 6, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT, + anon_sym_LBRACE, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [257270] = 4, + [257127] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13869), 1, + ACTIONS(5137), 1, anon_sym_DASH, - STATE(8143), 1, + STATE(7726), 1, sym_comment, - ACTIONS(13865), 7, - sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(5139), 7, + sym_cmd_identifier, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [257289] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(8144), 1, - sym_comment, - ACTIONS(2549), 3, - anon_sym_LF, - anon_sym_LPAREN2, - anon_sym_DOT, - ACTIONS(2547), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - aux_sym_unquoted_token2, - [257308] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(4008), 1, - aux_sym_command_token1, - ACTIONS(4012), 1, - aux_sym_unquoted_token2, - ACTIONS(13520), 1, - anon_sym_DOT, - STATE(8145), 1, - sym_comment, - ACTIONS(4006), 5, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_LF2, - [257331] = 5, - ACTIONS(113), 1, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [257146] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14074), 1, - aux_sym__immediate_decimal_token2, - STATE(8146), 1, + ACTIONS(4196), 1, + anon_sym_DASH, + STATE(7727), 1, sym_comment, - ACTIONS(2547), 3, - anon_sym_SEMI, - anon_sym_PIPE, - aux_sym_unquoted_token2, - ACTIONS(2549), 4, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_LPAREN2, - anon_sym_DOT, - [257352] = 6, + ACTIONS(4198), 7, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [257165] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, + ACTIONS(2187), 1, anon_sym_LPAREN2, - STATE(8147), 1, + STATE(7728), 1, sym_comment, - STATE(11424), 1, + STATE(10009), 1, sym__expr_parenthesized_immediate, - ACTIONS(4325), 2, + ACTIONS(4198), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4323), 4, + ACTIONS(4196), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [257375] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(8148), 1, - sym_comment, - ACTIONS(3507), 3, - anon_sym_LF, - anon_sym_LPAREN2, - anon_sym_DOT, - ACTIONS(3505), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - aux_sym_unquoted_token2, - [257394] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14078), 1, - anon_sym_DASH, - STATE(8149), 1, - sym_comment, - ACTIONS(14076), 7, - sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [257413] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10010), 1, - anon_sym_DOT_DOT2, - STATE(8150), 1, - sym_comment, - ACTIONS(10012), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1160), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [257434] = 9, + [257188] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2891), 1, + ACTIONS(2651), 1, anon_sym_DQUOTE, - ACTIONS(13941), 1, + ACTIONS(13399), 1, sym_identifier, - ACTIONS(14080), 1, + ACTIONS(13547), 1, anon_sym_GT, - STATE(6969), 1, + STATE(6559), 1, sym__str_double_quotes, - STATE(8151), 1, - sym_comment, - STATE(8152), 1, + STATE(7645), 1, aux_sym_collection_type_repeat1, - STATE(8380), 1, + STATE(7729), 1, + sym_comment, + STATE(7871), 1, sym_val_string, - ACTIONS(2893), 2, + ACTIONS(2653), 2, sym__str_single_quotes, sym__str_back_ticks, - [257463] = 9, + [257217] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2891), 1, - anon_sym_DQUOTE, - ACTIONS(13941), 1, - sym_identifier, - ACTIONS(14082), 1, - anon_sym_GT, - STATE(6969), 1, - sym__str_double_quotes, - STATE(8009), 1, - aux_sym_collection_type_repeat1, - STATE(8152), 1, + ACTIONS(13515), 1, + anon_sym_DOT, + STATE(7713), 1, + sym_path, + STATE(7730), 1, sym_comment, - STATE(8380), 1, - sym_val_string, - ACTIONS(2893), 2, + STATE(8849), 1, + sym_cell_path, + ACTIONS(1095), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [257492] = 6, + [257240] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - ACTIONS(4037), 1, - anon_sym_LPAREN2, - ACTIONS(14084), 1, - aux_sym_command_token1, - STATE(8153), 1, + ACTIONS(13549), 1, + anon_sym_DOT_DOT2, + STATE(7731), 1, sym_comment, - ACTIONS(4035), 5, + ACTIONS(3693), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(13551), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3691), 3, anon_sym_SEMI, anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [257515] = 4, + [257263] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4000), 1, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(13553), 1, anon_sym_DOT_DOT2, - STATE(8154), 1, + STATE(7732), 1, sym_comment, - ACTIONS(4002), 7, - sym_cmd_identifier, - anon_sym_DASH_DASH, + ACTIONS(3356), 2, + anon_sym_DOLLAR, + anon_sym_LBRACE, + ACTIONS(3362), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(13555), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + [257288] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13557), 1, + anon_sym_DOT, + STATE(8165), 1, + sym_path, + STATE(7733), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(987), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [257534] = 5, - ACTIONS(3), 1, + [257309] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13753), 1, - aux_sym__immediate_decimal_token2, - STATE(8155), 1, + STATE(7734), 1, sym_comment, - ACTIONS(2437), 3, + ACTIONS(2362), 4, + anon_sym_RBRACK, anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(2439), 4, - anon_sym_in, + ACTIONS(2364), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [257555] = 6, + sym__entry_separator, + [257328] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - ACTIONS(3876), 1, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + ACTIONS(4396), 1, aux_sym_command_token1, - ACTIONS(13456), 1, - anon_sym_DOT, - STATE(8156), 1, + STATE(7735), 1, sym_comment, - ACTIONS(3874), 5, + STATE(10434), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4394), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [257578] = 6, + anon_sym_LF2, + [257351] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2006), 1, + ACTIONS(3356), 1, + anon_sym_LF, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3362), 1, aux_sym_unquoted_token2, - ACTIONS(13456), 1, + ACTIONS(12513), 1, anon_sym_DOT, - STATE(8157), 1, - sym_comment, - ACTIONS(3876), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3874), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [257601] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(5015), 1, - anon_sym_LF, - ACTIONS(14086), 1, - anon_sym_EQ, - STATE(8158), 1, + STATE(7736), 1, sym_comment, - ACTIONS(5011), 6, + ACTIONS(3354), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_RBRACE, - [257622] = 6, - ACTIONS(113), 1, + [257376] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - STATE(8159), 1, - sym_comment, - STATE(11424), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4377), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4375), 4, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(13562), 1, anon_sym_DASH_DASH, - anon_sym_DASH, - [257645] = 5, + STATE(7692), 1, + sym_long_flag_equals_value, + STATE(8720), 1, + sym_long_flag, + STATE(7737), 2, + sym_comment, + aux_sym_decl_def_repeat1, + ACTIONS(13560), 4, + sym_cmd_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [257399] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10010), 1, + ACTIONS(3312), 1, + sym_identifier, + ACTIONS(3314), 1, + anon_sym_DOLLAR, + ACTIONS(3316), 1, + anon_sym_LPAREN2, + ACTIONS(13565), 1, anon_sym_DOT_DOT2, - STATE(8160), 1, + STATE(7738), 1, sym_comment, - ACTIONS(10012), 2, + ACTIONS(1844), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(13567), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(4018), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [257666] = 9, + [257426] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(7739), 1, + sym_comment, + ACTIONS(2402), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(2404), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [257445] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3984), 1, - anon_sym_COLON, - ACTIONS(8454), 1, - anon_sym_DQUOTE, - ACTIONS(14036), 1, + ACTIONS(3354), 1, sym_cmd_identifier, - STATE(1271), 1, - sym__command_name, - STATE(2627), 1, - sym__str_double_quotes, - STATE(2633), 1, - sym_val_string, - STATE(8161), 1, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(12513), 1, + anon_sym_DOT, + STATE(7740), 1, sym_comment, - ACTIONS(8456), 2, + ACTIONS(3356), 4, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [257695] = 6, + [257470] = 8, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, + ACTIONS(3358), 1, anon_sym_LPAREN2, - ACTIONS(4325), 1, - aux_sym_command_token1, - STATE(8162), 1, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(12513), 1, + anon_sym_DOT, + ACTIONS(13569), 1, + aux_sym__immediate_decimal_token1, + STATE(7741), 1, sym_comment, - STATE(11424), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4323), 5, + ACTIONS(3574), 2, anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_LF2, - [257718] = 8, - ACTIONS(113), 1, + ACTIONS(3576), 2, + ts_builtin_sym_end, + anon_sym_LF, + [257497] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3518), 1, - anon_sym_RBRACK, - ACTIONS(3520), 1, - sym__entry_separator, - ACTIONS(3522), 1, - anon_sym_LPAREN2, - ACTIONS(14088), 1, - anon_sym_DOT_DOT2, - STATE(8163), 1, + ACTIONS(2621), 1, + anon_sym_DASH, + ACTIONS(3104), 1, + anon_sym_DASH_DASH, + ACTIONS(13411), 1, + anon_sym_LBRACE, + STATE(2409), 1, + sym_block, + STATE(7692), 1, + sym_long_flag_equals_value, + STATE(7742), 1, + sym_comment, + STATE(9991), 1, + sym__flag, + STATE(8892), 2, + sym_short_flag, + sym_long_flag, + [257526] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(7743), 1, sym_comment, - ACTIONS(1934), 2, + ACTIONS(1037), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(14090), 2, + ACTIONS(1039), 5, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [257745] = 4, + [257545] = 7, ACTIONS(113), 1, anon_sym_POUND, - STATE(8164), 1, - sym_comment, - ACTIONS(3505), 4, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, + ACTIONS(1886), 1, aux_sym_unquoted_token2, - ACTIONS(3507), 4, - ts_builtin_sym_end, + ACTIONS(3775), 1, anon_sym_LPAREN2, + ACTIONS(13087), 1, anon_sym_DOT, + STATE(7744), 1, + sym_comment, + ACTIONS(3773), 2, + ts_builtin_sym_end, aux_sym_command_token1, - [257764] = 10, + ACTIONS(3771), 3, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, + [257570] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2838), 1, + anon_sym_DQUOTE, + ACTIONS(3707), 1, + anon_sym_COLON, + ACTIONS(12164), 1, + sym_cmd_identifier, + STATE(6592), 1, + sym__str_double_quotes, + STATE(7567), 1, + sym_val_string, + STATE(7745), 1, + sym_comment, + STATE(10504), 1, + sym__command_name, + ACTIONS(2840), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [257599] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3984), 1, + ACTIONS(3707), 1, anon_sym_COLON, - ACTIONS(6247), 1, + ACTIONS(5725), 1, anon_sym_DOLLAR, - ACTIONS(12574), 1, + ACTIONS(12254), 1, sym_identifier, - STATE(3063), 1, + STATE(2531), 1, sym__assignment_pattern, - STATE(7440), 1, + STATE(7000), 1, sym__var, - STATE(8165), 1, + STATE(7746), 1, sym_comment, - STATE(8921), 1, + STATE(8718), 1, sym_val_variable, - STATE(9487), 1, + STATE(9320), 1, sym__assignment_pattern_last, - STATE(10265), 1, + STATE(9858), 1, sym__variable_name, - [257795] = 6, - ACTIONS(113), 1, + [257630] = 10, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, - aux_sym_command_token1, - ACTIONS(12436), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(14092), 1, - anon_sym_DOT, - STATE(8166), 1, + ACTIONS(3707), 1, + anon_sym_COLON, + ACTIONS(5725), 1, + anon_sym_DOLLAR, + ACTIONS(12254), 1, + sym_identifier, + STATE(2533), 1, + sym__assignment_pattern, + STATE(7000), 1, + sym__var, + STATE(7747), 1, sym_comment, - ACTIONS(2581), 5, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [257818] = 5, + STATE(8718), 1, + sym_val_variable, + STATE(8992), 1, + sym__assignment_pattern_last, + STATE(9858), 1, + sym__variable_name, + [257661] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13875), 1, - aux_sym__immediate_decimal_token2, - STATE(8167), 1, - sym_comment, - ACTIONS(2437), 3, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(2439), 4, + ACTIONS(3707), 1, + anon_sym_COLON, + ACTIONS(5725), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [257839] = 6, - ACTIONS(113), 1, + ACTIONS(12254), 1, + sym_identifier, + STATE(2534), 1, + sym__assignment_pattern, + STATE(7000), 1, + sym__var, + STATE(7748), 1, + sym_comment, + STATE(8718), 1, + sym_val_variable, + STATE(9325), 1, + sym__assignment_pattern_last, + STATE(9858), 1, + sym__variable_name, + [257692] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1249), 1, - aux_sym_command_token1, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - ACTIONS(4037), 1, - anon_sym_LPAREN2, - STATE(8168), 1, + ACTIONS(2838), 1, + anon_sym_DQUOTE, + ACTIONS(3707), 1, + anon_sym_COLON, + ACTIONS(12164), 1, + sym_cmd_identifier, + STATE(6592), 1, + sym__str_double_quotes, + STATE(7567), 1, + sym_val_string, + STATE(7749), 1, sym_comment, - ACTIONS(1247), 5, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_LF2, - [257862] = 5, + STATE(9635), 1, + sym__command_name, + ACTIONS(2840), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [257721] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14094), 1, - anon_sym_DOT_DOT2, - STATE(8169), 1, + ACTIONS(3707), 1, + anon_sym_COLON, + ACTIONS(7911), 1, + anon_sym_DQUOTE, + ACTIONS(13395), 1, + sym_cmd_identifier, + STATE(2033), 1, + sym_val_string, + STATE(2193), 1, + sym__command_name, + STATE(2196), 1, + sym__str_double_quotes, + STATE(7750), 1, sym_comment, - ACTIONS(14096), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3868), 5, + ACTIONS(7913), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [257750] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13515), 1, + anon_sym_DOT, + STATE(7713), 1, + sym_path, + STATE(7751), 1, + sym_comment, + STATE(8867), 1, + sym_cell_path, + ACTIONS(1099), 5, sym_cmd_identifier, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [257883] = 6, + [257773] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1160), 1, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(3314), 1, aux_sym_command_token1, - ACTIONS(1284), 1, - aux_sym_unquoted_token6, - ACTIONS(4895), 1, - anon_sym_LPAREN2, - STATE(8170), 1, + ACTIONS(12748), 1, + anon_sym_DOT, + STATE(7752), 1, sym_comment, - ACTIONS(1158), 5, + ACTIONS(3312), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_LF2, - [257906] = 6, + anon_sym_RBRACE, + [257796] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2621), 1, + anon_sym_DASH, + ACTIONS(3104), 1, + anon_sym_DASH_DASH, + ACTIONS(13571), 1, + anon_sym_LBRACE, + STATE(2465), 1, + sym_val_record, + STATE(7692), 1, + sym_long_flag_equals_value, + STATE(7753), 1, + sym_comment, + STATE(10178), 1, + sym__flag, + STATE(8892), 2, + sym_short_flag, + sym_long_flag, + [257825] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3707), 1, + anon_sym_COLON, + ACTIONS(7911), 1, + anon_sym_DQUOTE, + ACTIONS(13395), 1, + sym_cmd_identifier, + STATE(956), 1, + sym__command_name, + STATE(2033), 1, + sym_val_string, + STATE(2196), 1, + sym__str_double_quotes, + STATE(7754), 1, + sym_comment, + ACTIONS(7913), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [257854] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - STATE(8171), 1, + ACTIONS(13573), 1, + anon_sym_DOT_DOT2, + STATE(7755), 1, sym_comment, - STATE(10680), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4293), 2, + ACTIONS(3701), 2, ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4291), 4, + aux_sym_command_token1, + ACTIONS(13575), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3699), 3, anon_sym_SEMI, + anon_sym_LF, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [257929] = 4, + [257877] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(8172), 1, + STATE(7756), 1, sym_comment, - ACTIONS(2437), 3, + ACTIONS(1041), 3, + anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(2439), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(1043), 5, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [257948] = 8, - ACTIONS(113), 1, + [257896] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3518), 1, - anon_sym_RBRACK, - ACTIONS(3520), 1, - sym__entry_separator, - ACTIONS(3522), 1, - anon_sym_LPAREN2, - ACTIONS(14098), 1, - anon_sym_DOT_DOT2, - STATE(8173), 1, + ACTIONS(13206), 1, + anon_sym_DASH, + STATE(7757), 1, sym_comment, - ACTIONS(1934), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(14100), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [257975] = 9, + ACTIONS(13202), 7, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [257915] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2891), 1, - anon_sym_DQUOTE, - ACTIONS(13941), 1, - sym_identifier, - ACTIONS(14102), 1, - anon_sym_GT, - STATE(6969), 1, - sym__str_double_quotes, - STATE(8056), 1, - aux_sym_collection_type_repeat1, - STATE(8174), 1, + ACTIONS(13515), 1, + anon_sym_DOT, + STATE(7713), 1, + sym_path, + STATE(7758), 1, sym_comment, - STATE(8380), 1, - sym_val_string, - ACTIONS(2893), 2, + STATE(8979), 1, + sym_cell_path, + ACTIONS(1053), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [258004] = 9, + [257938] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2694), 1, + ACTIONS(13206), 1, anon_sym_DASH, - ACTIONS(2785), 1, - anon_sym_DASH_DASH, - ACTIONS(13975), 1, - anon_sym_LBRACE, - STATE(2806), 1, - sym_block, - STATE(8074), 1, - sym_long_flag_equals_value, - STATE(8175), 1, + STATE(7759), 1, sym_comment, - STATE(10558), 1, - sym__flag, - STATE(9344), 2, - sym_short_flag, - sym_long_flag, - [258033] = 6, + ACTIONS(13202), 7, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [257957] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13977), 1, + ACTIONS(13577), 1, aux_sym__immediate_decimal_token2, - ACTIONS(14104), 1, - anon_sym_DOT, - STATE(8176), 1, + STATE(7760), 1, sym_comment, - ACTIONS(2581), 2, + ACTIONS(2362), 2, anon_sym_DASH, aux_sym_unquoted_token2, - ACTIONS(2583), 4, + ACTIONS(2364), 5, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_LPAREN2, - [258056] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - ACTIONS(4377), 1, - aux_sym_command_token1, - STATE(8177), 1, - sym_comment, - STATE(11424), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4375), 5, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_LF2, - [258079] = 8, + anon_sym_DOT, + [257978] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2843), 1, - sym_identifier, - ACTIONS(2845), 1, - anon_sym_DOLLAR, - ACTIONS(2847), 1, - anon_sym_LPAREN2, - ACTIONS(14107), 1, - anon_sym_DOT_DOT2, - STATE(8178), 1, - sym_comment, - ACTIONS(2851), 2, + ACTIONS(13579), 1, anon_sym_DOT, + ACTIONS(13582), 1, + aux_sym__immediate_decimal_token2, + STATE(7761), 1, + sym_comment, + ACTIONS(2356), 2, + anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(14109), 2, + ACTIONS(2358), 4, + anon_sym_in, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [258106] = 4, + [258001] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14113), 1, + ACTIONS(13214), 1, anon_sym_DASH, - STATE(8179), 1, + STATE(7762), 1, sym_comment, - ACTIONS(14111), 7, + ACTIONS(13210), 7, sym_identifier, anon_sym_RBRACK, anon_sym_RPAREN, @@ -568839,267 +528183,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [258125] = 4, + [258020] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(8180), 1, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + STATE(7763), 1, sym_comment, - ACTIONS(1282), 3, + STATE(10434), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4344), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_LPAREN2, - ACTIONS(1280), 5, + ACTIONS(4342), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - aux_sym_unquoted_token6, - [258144] = 6, + [258043] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + ACTIONS(3727), 1, anon_sym_LPAREN2, - STATE(8181), 1, + ACTIONS(13584), 1, + aux_sym_command_token1, + STATE(7764), 1, sym_comment, - STATE(11424), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4531), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4529), 4, + ACTIONS(3725), 5, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [258167] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13713), 1, - anon_sym_DASH, - STATE(8182), 1, - sym_comment, - ACTIONS(13709), 7, - sym_identifier, - anon_sym_RBRACK, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [258186] = 6, + anon_sym_RBRACE, + [258066] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, + ACTIONS(2187), 1, anon_sym_LPAREN2, - STATE(8183), 1, + STATE(7765), 1, sym_comment, - STATE(11424), 1, + STATE(10434), 1, sym__expr_parenthesized_immediate, - ACTIONS(4535), 2, + ACTIONS(4396), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4533), 4, + ACTIONS(4394), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [258209] = 9, + [258089] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2694), 1, - anon_sym_DASH, - ACTIONS(2861), 1, - anon_sym_DASH_DASH, - ACTIONS(14115), 1, - sym_identifier, - STATE(8034), 1, - aux_sym_overlay_use_repeat1, - STATE(8184), 1, + ACTIONS(13515), 1, + anon_sym_DOT, + STATE(7713), 1, + sym_path, + STATE(7766), 1, sym_comment, - STATE(9751), 1, - sym_long_flag_equals_value, - STATE(10449), 1, - sym__flag, - STATE(9344), 2, - sym_short_flag, - sym_long_flag, - [258238] = 8, + STATE(8875), 1, + sym_cell_path, + ACTIONS(1103), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [258112] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2847), 1, - anon_sym_LPAREN2, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(13169), 1, + ACTIONS(11832), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(13586), 1, anon_sym_DOT, - ACTIONS(14117), 1, - aux_sym__immediate_decimal_token1, - STATE(8185), 1, + STATE(7767), 1, sym_comment, - ACTIONS(3748), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3750), 2, + ACTIONS(2358), 2, ts_builtin_sym_end, anon_sym_LF, - [258265] = 6, + ACTIONS(2356), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [258135] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2583), 1, - aux_sym_command_token1, - ACTIONS(12352), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(14119), 1, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(3773), 1, + anon_sym_LF, + ACTIONS(3775), 1, + anon_sym_LPAREN2, + ACTIONS(13087), 1, anon_sym_DOT, - STATE(8186), 1, + STATE(7768), 1, sym_comment, - ACTIONS(2581), 5, + ACTIONS(3771), 4, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_LF2, - [258288] = 4, + anon_sym_RBRACE, + [258160] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5207), 1, + ACTIONS(12592), 1, anon_sym_DASH, - STATE(8187), 1, + STATE(7769), 1, sym_comment, - ACTIONS(5209), 7, - sym_cmd_identifier, + ACTIONS(12588), 7, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [258307] = 5, + [258179] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14121), 1, + ACTIONS(13438), 1, aux_sym__immediate_decimal_token2, - STATE(8188), 1, + STATE(7770), 1, sym_comment, - ACTIONS(2547), 3, - sym_identifier, - anon_sym_DASH, + ACTIONS(2356), 3, anon_sym_DOT_DOT2, - ACTIONS(2549), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(2358), 4, + anon_sym_LBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [258328] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5211), 1, - anon_sym_DASH, - STATE(8189), 1, - sym_comment, - ACTIONS(5213), 7, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [258347] = 8, - ACTIONS(3), 1, + [258200] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3518), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_DOLLAR, - ACTIONS(3522), 1, - anon_sym_LPAREN2, - ACTIONS(14123), 1, + ACTIONS(3314), 1, + anon_sym_LF, + ACTIONS(13588), 1, anon_sym_DOT_DOT2, - STATE(8190), 1, + STATE(7771), 1, sym_comment, - ACTIONS(1934), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(14125), 2, + ACTIONS(13590), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [258374] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14127), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14129), 1, - aux_sym__immediate_decimal_token2, - STATE(8191), 1, - sym_comment, - ACTIONS(2437), 3, - sym_identifier, - anon_sym_DASH, - aux_sym_unquoted_token2, - ACTIONS(2439), 3, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT, - [258397] = 8, - ACTIONS(3), 1, + ACTIONS(3312), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [258223] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2847), 1, + ACTIONS(2187), 1, anon_sym_LPAREN2, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(3748), 1, - anon_sym_DASH, - ACTIONS(13169), 1, - anon_sym_DOT, - ACTIONS(14131), 1, - aux_sym__immediate_decimal_token1, - STATE(8192), 1, + STATE(7772), 1, sym_comment, - ACTIONS(3750), 3, - anon_sym_DOLLAR, + STATE(10434), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4424), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4422), 4, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [258424] = 6, + anon_sym_DASH, + [258246] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - ACTIONS(3876), 1, - aux_sym_command_token1, - ACTIONS(13456), 1, - anon_sym_DOT, - STATE(8193), 1, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + STATE(7773), 1, sym_comment, - ACTIONS(3874), 5, - anon_sym_SEMI, + STATE(10434), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4428), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_RPAREN, + ACTIONS(4426), 4, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_LF2, - [258447] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(8194), 1, - sym_comment, - ACTIONS(2547), 2, - sym_cmd_identifier, - aux_sym_unquoted_token2, - ACTIONS(2549), 6, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [258466] = 4, + anon_sym_DASH, + [258269] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5175), 1, + ACTIONS(5213), 1, anon_sym_DASH, - STATE(8195), 1, + STATE(7774), 1, sym_comment, - ACTIONS(5177), 7, + ACTIONS(5215), 7, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, @@ -569107,83 +528383,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [258485] = 6, + [258288] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14014), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(14133), 1, - anon_sym_DOT, - STATE(8196), 1, + ACTIONS(5217), 1, + anon_sym_DASH, + STATE(7775), 1, sym_comment, - ACTIONS(2581), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(2583), 4, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [258508] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(3748), 1, + ACTIONS(5219), 7, sym_cmd_identifier, - ACTIONS(13169), 1, - anon_sym_DOT, - ACTIONS(13817), 1, - aux_sym__immediate_decimal_token1, - STATE(8197), 1, - sym_comment, - ACTIONS(3750), 4, + anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [258533] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(10357), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(8198), 1, - sym_comment, - ACTIONS(1290), 2, - anon_sym_LPAREN2, - aux_sym_command_token1, - ACTIONS(1243), 5, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [258554] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(3750), 1, - anon_sym_LF, - ACTIONS(13169), 1, - anon_sym_DOT, - ACTIONS(13819), 1, - aux_sym__immediate_decimal_token1, - STATE(8199), 1, - sym_comment, - ACTIONS(3748), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [258579] = 4, + [258307] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5179), 1, + ACTIONS(5241), 1, anon_sym_DASH, - STATE(8200), 1, + STATE(7776), 1, sym_comment, - ACTIONS(5181), 7, + ACTIONS(5243), 7, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, @@ -569191,247 +528413,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [258598] = 4, + [258326] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(8201), 1, + ACTIONS(5245), 1, + anon_sym_DASH, + STATE(7777), 1, sym_comment, - ACTIONS(3505), 2, + ACTIONS(5247), 7, sym_cmd_identifier, - aux_sym_unquoted_token2, - ACTIONS(3507), 6, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT, + anon_sym_LBRACE, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [258617] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14136), 1, - anon_sym_DOT_DOT2, - STATE(8202), 1, - sym_comment, - ACTIONS(1934), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(14138), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3520), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [258640] = 6, + [258345] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3868), 1, - anon_sym_LF, - ACTIONS(14140), 1, - anon_sym_DOT_DOT2, - STATE(8203), 1, - sym_comment, - ACTIONS(14142), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3866), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [258663] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14144), 1, - anon_sym_DOT_DOT2, - STATE(8204), 1, - sym_comment, - ACTIONS(2851), 2, - anon_sym_DOT, + ACTIONS(9710), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13592), 1, aux_sym_unquoted_token2, - ACTIONS(14146), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2845), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [258686] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(8205), 1, + STATE(7778), 1, sym_comment, - ACTIONS(4000), 4, - anon_sym_SEMI, + ACTIONS(922), 2, + ts_builtin_sym_end, anon_sym_LF, + ACTIONS(920), 4, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DOT_DOT2, - ACTIONS(4002), 4, - ts_builtin_sym_end, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_command_token1, - [258705] = 7, + anon_sym_DASH_DASH, + anon_sym_DASH, + [258368] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2847), 1, - anon_sym_LPAREN2, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(13169), 1, - anon_sym_DOT, - STATE(8206), 1, + ACTIONS(9739), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(7779), 1, sym_comment, - ACTIONS(2845), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(2843), 3, + ACTIONS(1139), 7, anon_sym_SEMI, anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, - [258730] = 9, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [258387] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2694), 1, + ACTIONS(13299), 1, + aux_sym__immediate_decimal_token2, + STATE(7780), 1, + sym_comment, + ACTIONS(2356), 3, + sym_identifier, anon_sym_DASH, - ACTIONS(2785), 1, + anon_sym_DOT_DOT2, + ACTIONS(2358), 4, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - ACTIONS(13945), 1, - anon_sym_LBRACE, - STATE(2710), 1, - sym_block, - STATE(8074), 1, - sym_long_flag_equals_value, - STATE(8207), 1, - sym_comment, - STATE(10738), 1, - sym__flag, - STATE(9344), 2, - sym_short_flag, - sym_long_flag, - [258759] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [258408] = 7, ACTIONS(113), 1, anon_sym_POUND, - STATE(8208), 1, - sym_comment, - ACTIONS(2547), 4, - anon_sym_SEMI, + ACTIONS(3646), 1, anon_sym_LF, - anon_sym_PIPE, - aux_sym_unquoted_token2, - ACTIONS(2549), 4, - ts_builtin_sym_end, + ACTIONS(3648), 1, anon_sym_LPAREN2, - anon_sym_DOT, - aux_sym_command_token1, - [258778] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(4010), 1, - anon_sym_LPAREN2, - ACTIONS(4012), 1, + ACTIONS(3650), 1, aux_sym_unquoted_token2, - ACTIONS(13520), 1, + ACTIONS(13004), 1, anon_sym_DOT, - STATE(8209), 1, + STATE(7781), 1, sym_comment, - ACTIONS(4008), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(4006), 3, + ACTIONS(3644), 4, anon_sym_SEMI, - anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, - [258803] = 4, + anon_sym_RBRACE, + [258433] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(8210), 1, + STATE(7782), 1, sym_comment, - ACTIONS(2437), 4, - sym_identifier, + ACTIONS(2229), 3, anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(2439), 4, + ACTIONS(2231), 5, anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [258822] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14148), 1, - anon_sym_DOT_DOT2, - STATE(8211), 1, - sym_comment, - ACTIONS(14150), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3951), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [258843] = 5, - ACTIONS(3), 1, + [258452] = 8, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14152), 1, + ACTIONS(3312), 1, + anon_sym_RBRACK, + ACTIONS(3314), 1, + sym__entry_separator, + ACTIONS(3316), 1, + anon_sym_LPAREN2, + ACTIONS(13594), 1, anon_sym_DOT_DOT2, - STATE(8212), 1, + STATE(7783), 1, sym_comment, - ACTIONS(14154), 2, + ACTIONS(1844), 2, + anon_sym_DOT, + aux_sym__unquoted_in_list_token2, + ACTIONS(13596), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(3966), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [258864] = 6, + [258479] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13979), 1, + ACTIONS(13237), 1, aux_sym__immediate_decimal_token2, - ACTIONS(14156), 1, - anon_sym_DOT, - STATE(8213), 1, + STATE(7784), 1, sym_comment, - ACTIONS(2581), 2, + ACTIONS(2229), 3, + sym_identifier, + anon_sym_DASH, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(2583), 4, - anon_sym_in, - anon_sym_LPAREN2, + ACTIONS(2231), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [258887] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1255), 1, - aux_sym_command_token1, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - ACTIONS(4631), 1, - anon_sym_LPAREN2, - STATE(8214), 1, - sym_comment, - ACTIONS(1253), 5, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_LF2, - [258910] = 4, + [258500] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14010), 1, + ACTIONS(12503), 1, anon_sym_DASH, - STATE(8215), 1, + STATE(7785), 1, sym_comment, - ACTIONS(14008), 7, + ACTIONS(12499), 7, sym_identifier, anon_sym_RBRACK, anon_sym_RPAREN, @@ -569439,53661 +528559,52280 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [258929] = 4, + [258519] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1172), 1, - anon_sym_DOT_DOT2, - STATE(8216), 1, - sym_comment, - ACTIONS(1174), 7, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(2838), 1, anon_sym_DQUOTE, + ACTIONS(3655), 1, + anon_sym_COLON, + ACTIONS(12164), 1, + sym_cmd_identifier, + STATE(6592), 1, + sym__str_double_quotes, + STATE(7567), 1, + sym_val_string, + STATE(7786), 1, + sym_comment, + STATE(10504), 1, + sym__command_name, + ACTIONS(2840), 2, sym__str_single_quotes, sym__str_back_ticks, - [258948] = 6, + [258548] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13985), 1, - anon_sym_DOT, - STATE(8111), 1, - sym_path, - STATE(8217), 1, + ACTIONS(12509), 1, + anon_sym_DASH, + STATE(7787), 1, sym_comment, - STATE(8997), 1, - sym_cell_path, - ACTIONS(1205), 5, - sym_cmd_identifier, + ACTIONS(12505), 7, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [258971] = 8, + [258567] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2843), 1, - anon_sym_RBRACK, - ACTIONS(2845), 1, - sym__entry_separator, - ACTIONS(2847), 1, - anon_sym_LPAREN2, - ACTIONS(14159), 1, - anon_sym_DOT_DOT2, - STATE(8218), 1, + ACTIONS(9784), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(7788), 1, sym_comment, - ACTIONS(2851), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(14161), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [258998] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(4008), 1, - anon_sym_LF, - ACTIONS(4010), 1, + ACTIONS(1209), 2, anon_sym_LPAREN2, - ACTIONS(4012), 1, - aux_sym_unquoted_token2, - ACTIONS(13520), 1, - anon_sym_DOT, - STATE(8219), 1, - sym_comment, - ACTIONS(4006), 4, + aux_sym_command_token1, + ACTIONS(1139), 5, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [259023] = 6, + [258588] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14163), 1, - anon_sym_DOT_DOT2, - STATE(8220), 1, + ACTIONS(4738), 1, + anon_sym_LF, + ACTIONS(13598), 1, + sym_long_flag_identifier, + STATE(7789), 1, sym_comment, - ACTIONS(3868), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(14165), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3866), 3, + ACTIONS(4734), 6, anon_sym_SEMI, - anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, - [259046] = 9, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [258609] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2891), 1, - anon_sym_DQUOTE, - ACTIONS(13941), 1, + ACTIONS(2621), 1, + anon_sym_DASH, + ACTIONS(2716), 1, + anon_sym_DASH_DASH, + ACTIONS(13600), 1, sym_identifier, - ACTIONS(14167), 1, - anon_sym_GT, - STATE(6969), 1, - sym__str_double_quotes, - STATE(8011), 1, - aux_sym_collection_type_repeat1, - STATE(8221), 1, - sym_comment, - STATE(8380), 1, - sym_val_string, - ACTIONS(2893), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [259075] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13985), 1, - anon_sym_DOT, - STATE(8111), 1, - sym_path, - STATE(8222), 1, + STATE(7704), 1, + aux_sym_overlay_use_repeat1, + STATE(7790), 1, sym_comment, - STATE(9338), 1, - sym_cell_path, - ACTIONS(1192), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [259098] = 5, + STATE(9246), 1, + sym_long_flag_equals_value, + STATE(9891), 1, + sym__flag, + STATE(8892), 2, + sym_short_flag, + sym_long_flag, + [258638] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13777), 1, - aux_sym__immediate_decimal_token2, - STATE(8223), 1, - sym_comment, - ACTIONS(2437), 3, + ACTIONS(3354), 1, + sym_identifier, + ACTIONS(3356), 1, + anon_sym_DOLLAR, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(13602), 1, anon_sym_DOT_DOT2, + STATE(7791), 1, + sym_comment, + ACTIONS(3362), 2, anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(2439), 4, - anon_sym_LBRACE, - anon_sym_LPAREN2, + ACTIONS(13604), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [259119] = 4, + [258665] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(8224), 1, - sym_comment, - ACTIONS(1282), 2, - anon_sym_LPAREN2, + ACTIONS(1161), 1, aux_sym_command_token1, - ACTIONS(1280), 6, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + ACTIONS(3727), 1, + anon_sym_LPAREN2, + STATE(7792), 1, + sym_comment, + ACTIONS(1159), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_LF2, - aux_sym_unquoted_token6, - [259138] = 6, + [258688] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13606), 1, + aux_sym__immediate_decimal_token2, + STATE(7793), 1, + sym_comment, + ACTIONS(2362), 3, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + ACTIONS(2364), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [258709] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - ACTIONS(4531), 1, + ACTIONS(1091), 1, aux_sym_command_token1, - STATE(8225), 1, + ACTIONS(1149), 1, + aux_sym_unquoted_token6, + ACTIONS(3783), 1, + anon_sym_LPAREN2, + STATE(7794), 1, sym_comment, - STATE(11424), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4529), 5, + ACTIONS(1089), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [259161] = 6, + anon_sym_LF2, + [258732] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14034), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(14169), 1, - anon_sym_DOT, - STATE(8226), 1, + STATE(7795), 1, sym_comment, - ACTIONS(2581), 2, + ACTIONS(2362), 3, anon_sym_DOT_DOT2, + anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(2583), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(2364), 5, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [259184] = 6, + [258751] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - ACTIONS(4293), 1, + ACTIONS(3356), 1, aux_sym_command_token1, - STATE(8227), 1, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(12513), 1, + anon_sym_DOT, + STATE(7796), 1, sym_comment, - STATE(10648), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4291), 5, + ACTIONS(3354), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [259207] = 9, - ACTIONS(3), 1, + [258774] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2724), 1, - anon_sym_DQUOTE, - ACTIONS(3984), 1, - anon_sym_COLON, - ACTIONS(12867), 1, - sym_cmd_identifier, - STATE(7019), 1, - sym__str_double_quotes, - STATE(7900), 1, - sym_val_string, - STATE(8228), 1, + STATE(7797), 1, sym_comment, - STATE(9561), 1, - sym__command_name, - ACTIONS(2726), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [259236] = 6, + ACTIONS(1157), 2, + anon_sym_LPAREN2, + aux_sym_command_token1, + ACTIONS(1155), 6, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + aux_sym_unquoted_token6, + [258793] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14172), 1, + ACTIONS(13608), 1, anon_sym_DOT_DOT2, - STATE(8229), 1, + STATE(7798), 1, sym_comment, - ACTIONS(3951), 2, + ACTIONS(3743), 2, ts_builtin_sym_end, aux_sym_command_token1, - ACTIONS(14174), 2, + ACTIONS(13610), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(3949), 3, + ACTIONS(3741), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_PIPE, - [259259] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2694), 1, - anon_sym_DASH, - ACTIONS(2785), 1, - anon_sym_DASH_DASH, - ACTIONS(13945), 1, - anon_sym_LBRACE, - STATE(2742), 1, - sym_block, - STATE(8074), 1, - sym_long_flag_equals_value, - STATE(8230), 1, - sym_comment, - STATE(10477), 1, - sym__flag, - STATE(9344), 2, - sym_short_flag, - sym_long_flag, - [259288] = 9, - ACTIONS(3), 1, + [258816] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2694), 1, - anon_sym_DASH, - ACTIONS(2785), 1, - anon_sym_DASH_DASH, - ACTIONS(13945), 1, - anon_sym_LBRACE, - STATE(2746), 1, - sym_block, - STATE(8074), 1, - sym_long_flag_equals_value, - STATE(8231), 1, + ACTIONS(13387), 1, + aux_sym__immediate_decimal_token2, + STATE(7799), 1, sym_comment, - STATE(10478), 1, - sym__flag, - STATE(9344), 2, - sym_short_flag, - sym_long_flag, - [259317] = 6, + ACTIONS(2356), 3, + anon_sym_SEMI, + anon_sym_PIPE, + aux_sym_unquoted_token2, + ACTIONS(2358), 4, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LPAREN2, + anon_sym_DOT, + [258837] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(3520), 1, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + ACTIONS(3727), 1, + anon_sym_LPAREN2, + ACTIONS(13612), 1, aux_sym_command_token1, - ACTIONS(13319), 1, - anon_sym_DOT, - STATE(8232), 1, + STATE(7800), 1, sym_comment, - ACTIONS(3518), 5, + ACTIONS(3725), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [259340] = 9, + anon_sym_LF2, + [258860] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2694), 1, - anon_sym_DASH, - ACTIONS(2785), 1, - anon_sym_DASH_DASH, - ACTIONS(13945), 1, - anon_sym_LBRACE, - STATE(2747), 1, - sym_block, - STATE(8074), 1, - sym_long_flag_equals_value, - STATE(8233), 1, + STATE(7801), 1, sym_comment, - STATE(10480), 1, - sym__flag, - STATE(9344), 2, - sym_short_flag, - sym_long_flag, - [259369] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(3966), 1, - anon_sym_LF, - ACTIONS(14176), 1, + ACTIONS(2229), 4, + sym_identifier, anon_sym_DOT_DOT2, - STATE(8234), 1, - sym_comment, - ACTIONS(14178), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(2231), 4, + anon_sym_DOLLAR, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(3964), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [259392] = 4, + [258879] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10262), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(8235), 1, + ACTIONS(13245), 1, + aux_sym__immediate_decimal_token2, + STATE(7802), 1, sym_comment, - ACTIONS(1243), 7, + ACTIONS(2229), 3, anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [259411] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1934), 1, aux_sym_unquoted_token2, - ACTIONS(3520), 1, + ACTIONS(2231), 4, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3522), 1, anon_sym_LPAREN2, - ACTIONS(13319), 1, anon_sym_DOT, - STATE(8236), 1, + [258900] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(12513), 1, + anon_sym_DOT, + STATE(7803), 1, sym_comment, - ACTIONS(3518), 4, + ACTIONS(3356), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(3354), 3, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LF, anon_sym_PIPE, - anon_sym_RBRACE, - [259436] = 6, + [258925] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3951), 1, - anon_sym_LF, - ACTIONS(14180), 1, - anon_sym_DOT_DOT2, - STATE(8237), 1, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + ACTIONS(4198), 1, + aux_sym_command_token1, + STATE(7804), 1, sym_comment, - ACTIONS(14182), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3949), 4, + STATE(10244), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4196), 5, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [259459] = 4, + anon_sym_LF2, + [258948] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(8238), 1, - sym_comment, - ACTIONS(1113), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1115), 5, + ACTIONS(3412), 1, sym_identifier, - anon_sym_DOLLAR, + ACTIONS(13614), 1, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [259478] = 6, + ACTIONS(13617), 1, + anon_sym_DASH, + STATE(9246), 1, + sym_long_flag_equals_value, + STATE(9891), 1, + sym__flag, + STATE(7805), 2, + sym_comment, + aux_sym_overlay_use_repeat1, + STATE(8892), 2, + sym_short_flag, + sym_long_flag, + [258975] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(3316), 1, anon_sym_LPAREN2, - ACTIONS(4531), 1, - aux_sym_command_token1, - STATE(8239), 1, + ACTIONS(12748), 1, + anon_sym_DOT, + STATE(7806), 1, sym_comment, - STATE(11424), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4529), 5, + ACTIONS(3314), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(3312), 3, anon_sym_SEMI, anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_LF2, - [259501] = 6, + [259000] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - ACTIONS(4535), 1, - aux_sym_command_token1, - STATE(8240), 1, + STATE(7807), 1, sym_comment, - STATE(11424), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4533), 5, + ACTIONS(2231), 3, + anon_sym_LF, + anon_sym_LPAREN2, + anon_sym_DOT, + ACTIONS(2229), 5, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [259019] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(7808), 1, + sym_comment, + ACTIONS(2364), 3, anon_sym_LF, + anon_sym_LPAREN2, + anon_sym_DOT, + ACTIONS(2362), 5, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_LF2, - [259524] = 5, - ACTIONS(3), 1, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [259038] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14184), 1, + ACTIONS(13620), 1, aux_sym__immediate_decimal_token2, - STATE(8241), 1, + STATE(7809), 1, sym_comment, - ACTIONS(2547), 2, - anon_sym_DASH, + ACTIONS(2362), 3, + anon_sym_SEMI, + anon_sym_PIPE, aux_sym_unquoted_token2, - ACTIONS(2549), 5, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + ACTIONS(2364), 4, + ts_builtin_sym_end, + anon_sym_LF, anon_sym_LPAREN2, anon_sym_DOT, - [259545] = 6, + [259059] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2845), 1, - aux_sym_command_token1, - ACTIONS(2851), 1, + ACTIONS(1844), 1, aux_sym_unquoted_token2, - ACTIONS(13169), 1, + ACTIONS(3314), 1, + aux_sym_command_token1, + ACTIONS(12748), 1, anon_sym_DOT, - STATE(8242), 1, + STATE(7810), 1, sym_comment, - ACTIONS(2843), 5, + ACTIONS(3312), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_LF2, - [259568] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13013), 1, - anon_sym_DASH, - STATE(8243), 1, - sym_comment, - ACTIONS(13009), 7, - sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [259587] = 6, + [259082] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13985), 1, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(3312), 1, + sym_cmd_identifier, + ACTIONS(3316), 1, + anon_sym_LPAREN2, + ACTIONS(12748), 1, anon_sym_DOT, - STATE(8111), 1, - sym_path, - STATE(8244), 1, + STATE(7811), 1, sym_comment, - STATE(8866), 1, - sym_cell_path, - ACTIONS(1188), 5, - sym_cmd_identifier, + ACTIONS(3314), 4, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [259610] = 6, - ACTIONS(113), 1, + [259107] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1160), 1, - aux_sym_command_token1, - ACTIONS(1284), 1, - aux_sym_unquoted_token6, - ACTIONS(4895), 1, - anon_sym_LPAREN2, - STATE(8245), 1, + STATE(7812), 1, sym_comment, - ACTIONS(1158), 5, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [259633] = 5, + ACTIONS(2362), 4, + sym_identifier, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(2364), 4, + anon_sym_DOLLAR, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [259126] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5079), 1, - anon_sym_LF, - ACTIONS(14186), 1, - sym_long_flag_identifier, - STATE(8246), 1, + STATE(7813), 1, sym_comment, - ACTIONS(5075), 6, + ACTIONS(2404), 3, + anon_sym_LF, + anon_sym_LPAREN2, + anon_sym_DOT, + ACTIONS(2402), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_RBRACE, - [259654] = 4, + aux_sym_unquoted_token2, + [259145] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(8247), 1, + ACTIONS(13582), 1, + aux_sym__immediate_decimal_token2, + STATE(7814), 1, sym_comment, - ACTIONS(3505), 3, + ACTIONS(2356), 3, anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(3507), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(2358), 4, + anon_sym_in, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [259673] = 4, + [259166] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13019), 1, - anon_sym_DASH, - STATE(8248), 1, + ACTIONS(13622), 1, + anon_sym_DOT_DOT2, + STATE(7815), 1, sym_comment, - ACTIONS(13015), 7, - sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(1844), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(13624), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3314), 3, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [259692] = 7, + anon_sym_if, + anon_sym_EQ_GT, + [259189] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - ACTIONS(3878), 1, + ACTIONS(1131), 1, + aux_sym_command_token1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + ACTIONS(3841), 1, anon_sym_LPAREN2, - ACTIONS(13456), 1, - anon_sym_DOT, - STATE(8249), 1, + STATE(7816), 1, sym_comment, - ACTIONS(3876), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(3874), 3, + ACTIONS(1129), 5, anon_sym_SEMI, anon_sym_LF, - anon_sym_PIPE, - [259717] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13128), 1, - anon_sym_DASH, - STATE(8250), 1, - sym_comment, - ACTIONS(13124), 7, - sym_identifier, - anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [259736] = 6, + anon_sym_LF2, + [259212] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4008), 1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + ACTIONS(1137), 1, aux_sym_command_token1, - ACTIONS(4012), 1, - aux_sym_unquoted_token2, - ACTIONS(13520), 1, - anon_sym_DOT, - STATE(8251), 1, + ACTIONS(3841), 1, + anon_sym_LPAREN2, + STATE(7817), 1, sym_comment, - ACTIONS(4006), 5, + ACTIONS(1135), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [259759] = 6, + anon_sym_LF2, + [259235] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14188), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14190), 1, - aux_sym_unquoted_token2, - STATE(8252), 1, + STATE(7818), 1, sym_comment, - ACTIONS(938), 2, + ACTIONS(1157), 3, + ts_builtin_sym_end, anon_sym_LF, anon_sym_LPAREN2, - ACTIONS(936), 4, + ACTIONS(1155), 5, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + aux_sym_unquoted_token6, + [259254] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1161), 1, + anon_sym_LF, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + ACTIONS(3727), 1, + anon_sym_LPAREN2, + STATE(7819), 1, + sym_comment, + ACTIONS(1159), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [259782] = 6, + [259276] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(3312), 1, + anon_sym_DASH, + ACTIONS(3316), 1, + anon_sym_LPAREN2, + ACTIONS(12748), 1, + anon_sym_DOT, + STATE(7820), 1, + sym_comment, + ACTIONS(3314), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [259300] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + ACTIONS(3727), 1, anon_sym_LPAREN2, - ACTIONS(4293), 1, + ACTIONS(4646), 1, + ts_builtin_sym_end, + ACTIONS(13626), 1, aux_sym_command_token1, - STATE(8253), 1, + STATE(7821), 1, sym_comment, - STATE(10666), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4291), 5, + ACTIONS(3725), 3, anon_sym_SEMI, anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_LF2, - [259805] = 4, - ACTIONS(113), 1, + [259324] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(8254), 1, + STATE(7822), 1, sym_comment, - ACTIONS(2439), 3, - anon_sym_LF, + ACTIONS(2229), 2, + anon_sym_DASH, + aux_sym_unquoted_token2, + ACTIONS(2231), 5, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_LPAREN2, anon_sym_DOT, - ACTIONS(2437), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - aux_sym_unquoted_token2, - [259824] = 7, + [259342] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(979), 1, - anon_sym_DOT_DOT2, - ACTIONS(3682), 1, - aux_sym_unquoted_token5, - ACTIONS(9455), 1, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(3312), 1, + sym_cmd_identifier, + ACTIONS(12748), 1, anon_sym_DOT, - STATE(8255), 1, + STATE(7823), 1, + sym_comment, + ACTIONS(3314), 4, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [259364] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(7824), 1, sym_comment, - ACTIONS(983), 2, + ACTIONS(3721), 2, + anon_sym_DASH, + anon_sym_DOT_DOT2, + ACTIONS(3723), 5, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(14192), 2, - sym_filesize_unit, - sym_duration_unit, - [259848] = 6, + [259382] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(13628), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13630), 1, + aux_sym__immediate_decimal_token2, + STATE(7825), 1, + sym_comment, + ACTIONS(2229), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(2231), 3, + anon_sym_LPAREN2, + anon_sym_DOT, + sym__entry_separator, + [259404] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14194), 1, + ACTIONS(13632), 1, anon_sym_DOT_DOT2, - STATE(8256), 1, + STATE(7826), 1, sym_comment, - ACTIONS(1934), 2, + ACTIONS(3356), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(3362), 2, anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(3520), 2, + ACTIONS(13634), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [259426] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(7827), 1, + sym_comment, + ACTIONS(1068), 2, + anon_sym_DASH, + anon_sym_DOT_DOT2, + ACTIONS(1070), 5, + sym_identifier, anon_sym_DOLLAR, - anon_sym_LBRACE, - ACTIONS(14196), 2, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [259870] = 7, + [259444] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14200), 1, + ACTIONS(3356), 1, anon_sym_LF, - ACTIONS(14202), 1, - aux_sym_command_token1, - ACTIONS(14204), 1, - anon_sym_LF2, - STATE(8257), 1, + STATE(7828), 1, sym_comment, - STATE(8502), 1, - aux_sym__command_parenthesized_body_repeat1, - ACTIONS(14198), 3, + ACTIONS(3354), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - [259894] = 4, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [259462] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5221), 1, + ACTIONS(5215), 1, anon_sym_LF, - STATE(8258), 1, + STATE(7829), 1, sym_comment, - ACTIONS(5219), 6, + ACTIONS(5213), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [259912] = 6, + [259480] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7911), 1, + anon_sym_DQUOTE, + ACTIONS(13395), 1, + sym_cmd_identifier, + STATE(2033), 1, + sym_val_string, + STATE(2196), 1, + sym__str_double_quotes, + STATE(2373), 1, + sym__command_name, + STATE(7830), 1, + sym_comment, + ACTIONS(7913), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [259506] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14206), 1, - anon_sym_DOT_DOT2, - STATE(8259), 1, + ACTIONS(5219), 1, + anon_sym_LF, + STATE(7831), 1, sym_comment, - ACTIONS(3866), 2, + ACTIONS(5217), 6, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(3868), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(14208), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [259934] = 4, - ACTIONS(113), 1, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [259524] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(8260), 1, + ACTIONS(2838), 1, + anon_sym_DQUOTE, + ACTIONS(12164), 1, + sym_cmd_identifier, + STATE(6592), 1, + sym__str_double_quotes, + STATE(7567), 1, + sym_val_string, + STATE(7832), 1, + sym_comment, + STATE(9360), 1, + sym__command_name, + ACTIONS(2840), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [259550] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11658), 1, + anon_sym_DOLLAR, + ACTIONS(11660), 1, + anon_sym_LBRACE, + STATE(4162), 1, + sym__var, + STATE(4583), 1, + sym_block, + STATE(4584), 1, + sym_val_closure, + STATE(7833), 1, + sym_comment, + STATE(1479), 2, + sym__blosure, + sym_val_variable, + [259576] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3655), 1, + anon_sym_COLON, + ACTIONS(13636), 1, + anon_sym_alias, + ACTIONS(13638), 1, + anon_sym_const, + ACTIONS(13640), 1, + anon_sym_def, + ACTIONS(13642), 1, + anon_sym_extern, + ACTIONS(13644), 1, + anon_sym_module, + ACTIONS(13646), 1, + anon_sym_use, + STATE(7834), 1, + sym_comment, + [259604] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7911), 1, + anon_sym_DQUOTE, + ACTIONS(13395), 1, + sym_cmd_identifier, + STATE(2033), 1, + sym_val_string, + STATE(2196), 1, + sym__str_double_quotes, + STATE(2328), 1, + sym__command_name, + STATE(7835), 1, + sym_comment, + ACTIONS(7913), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [259630] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7911), 1, + anon_sym_DQUOTE, + ACTIONS(13395), 1, + sym_cmd_identifier, + STATE(2033), 1, + sym_val_string, + STATE(2196), 1, + sym__str_double_quotes, + STATE(2394), 1, + sym__command_name, + STATE(7836), 1, sym_comment, - ACTIONS(1282), 2, + ACTIONS(7913), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [259656] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(5243), 1, anon_sym_LF, - anon_sym_LPAREN2, - ACTIONS(1280), 5, + STATE(7837), 1, + sym_comment, + ACTIONS(5241), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_RBRACE, - aux_sym_unquoted_token6, - [259952] = 4, + [259674] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7911), 1, + anon_sym_DQUOTE, + ACTIONS(13395), 1, + sym_cmd_identifier, + STATE(2033), 1, + sym_val_string, + STATE(2196), 1, + sym__str_double_quotes, + STATE(2358), 1, + sym__command_name, + STATE(7838), 1, + sym_comment, + ACTIONS(7913), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [259700] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5225), 1, + ACTIONS(922), 1, anon_sym_LF, - STATE(8261), 1, + ACTIONS(9735), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13648), 1, + aux_sym_unquoted_token2, + STATE(7839), 1, sym_comment, - ACTIONS(5223), 6, + ACTIONS(920), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_RBRACE, - [259970] = 4, + [259722] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5229), 1, + ACTIONS(5247), 1, anon_sym_LF, - STATE(8262), 1, + STATE(7840), 1, sym_comment, - ACTIONS(5227), 6, + ACTIONS(5245), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [259988] = 4, + [259740] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5233), 1, + ACTIONS(13652), 1, + aux_sym_command_token1, + STATE(7841), 1, + sym_comment, + STATE(8059), 1, + aux_sym_command_repeat1, + ACTIONS(13650), 5, + anon_sym_SEMI, anon_sym_LF, - STATE(8263), 1, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [259760] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1209), 1, + anon_sym_LPAREN2, + ACTIONS(10042), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(7842), 1, sym_comment, - ACTIONS(5231), 6, + ACTIONS(1139), 5, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_RBRACE, - [260006] = 5, + [259780] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13663), 1, + ACTIONS(9915), 1, aux_sym__immediate_decimal_token1, - STATE(8264), 1, + ACTIONS(13654), 1, + aux_sym_unquoted_token2, + STATE(7843), 1, sym_comment, - ACTIONS(5085), 2, + ACTIONS(922), 2, ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5083), 4, + aux_sym_command_token1, + ACTIONS(920), 3, anon_sym_SEMI, + anon_sym_LF, anon_sym_PIPE, + [259802] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11698), 1, + anon_sym_DOT, + STATE(4994), 1, + sym_cell_path, + STATE(6635), 1, + sym_path, + STATE(7844), 1, + sym_comment, + ACTIONS(1087), 4, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOLLAR, + anon_sym_LBRACE, + [259824] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3757), 1, + anon_sym_DASH, + ACTIONS(9987), 1, + anon_sym_DOT_DOT2, + STATE(7845), 1, + sym_comment, + ACTIONS(9989), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3759), 3, + anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_LBRACE, + [259846] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3691), 1, anon_sym_DASH, - [260026] = 4, - ACTIONS(113), 1, + ACTIONS(13656), 1, + anon_sym_DOT_DOT2, + STATE(7846), 1, + sym_comment, + ACTIONS(13658), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3693), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [259868] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(8265), 1, + ACTIONS(3699), 1, + anon_sym_DASH, + ACTIONS(13660), 1, + anon_sym_DOT_DOT2, + STATE(7847), 1, sym_comment, - ACTIONS(1280), 3, - sym_cmd_identifier, + ACTIONS(13662), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3701), 3, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - aux_sym_unquoted_token6, - ACTIONS(1282), 4, + anon_sym_LBRACE, + [259890] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3711), 1, + anon_sym_DASH, + ACTIONS(13664), 1, + anon_sym_DOT_DOT2, + STATE(7848), 1, + sym_comment, + ACTIONS(13666), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3713), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [259912] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3354), 1, + anon_sym_DASH, + ACTIONS(3358), 1, anon_sym_LPAREN2, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(12513), 1, + anon_sym_DOT, + STATE(7849), 1, + sym_comment, + ACTIONS(3356), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [259936] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3354), 1, + sym_cmd_identifier, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(12513), 1, + anon_sym_DOT, + STATE(7850), 1, + sym_comment, + ACTIONS(3356), 4, + anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [260044] = 6, + [259958] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14210), 1, - anon_sym_DOT_DOT2, - STATE(8266), 1, + ACTIONS(9472), 1, + anon_sym_DOT, + STATE(4036), 1, + sym_cell_path, + STATE(5169), 1, + sym_path, + STATE(7851), 1, sym_comment, - ACTIONS(3949), 2, + ACTIONS(1002), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3951), 2, + ACTIONS(1004), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(14212), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [260066] = 4, - ACTIONS(113), 1, + [259982] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5237), 1, - anon_sym_LF, - STATE(8267), 1, + ACTIONS(1085), 1, + anon_sym_DASH, + ACTIONS(11698), 1, + anon_sym_DOT, + STATE(6120), 1, + sym_cell_path, + STATE(6635), 1, + sym_path, + STATE(7852), 1, sym_comment, - ACTIONS(5235), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1087), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [260006] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1093), 1, + anon_sym_DASH, + ACTIONS(11698), 1, + anon_sym_DOT, + STATE(6130), 1, + sym_cell_path, + STATE(6635), 1, + sym_path, + STATE(7853), 1, + sym_comment, + ACTIONS(1095), 3, + anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_LBRACE, + [260030] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1097), 1, anon_sym_DASH, - anon_sym_RBRACE, - [260084] = 6, + ACTIONS(11698), 1, + anon_sym_DOT, + STATE(6137), 1, + sym_cell_path, + STATE(6635), 1, + sym_path, + STATE(7854), 1, + sym_comment, + ACTIONS(1099), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [260054] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1101), 1, + anon_sym_DASH, + ACTIONS(11698), 1, + anon_sym_DOT, + STATE(6139), 1, + sym_cell_path, + STATE(6635), 1, + sym_path, + STATE(7855), 1, + sym_comment, + ACTIONS(1103), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [260078] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1057), 1, + anon_sym_DASH, + ACTIONS(11698), 1, + anon_sym_DOT, + STATE(6190), 1, + sym_cell_path, + STATE(6635), 1, + sym_path, + STATE(7856), 1, + sym_comment, + ACTIONS(1059), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [260102] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1051), 1, + anon_sym_DASH, + ACTIONS(11698), 1, + anon_sym_DOT, + STATE(6127), 1, + sym_cell_path, + STATE(6635), 1, + sym_path, + STATE(7857), 1, + sym_comment, + ACTIONS(1053), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [260126] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2838), 1, + anon_sym_DQUOTE, + ACTIONS(12164), 1, + sym_cmd_identifier, + STATE(6592), 1, + sym__str_double_quotes, + STATE(7567), 1, + sym_val_string, + STATE(7858), 1, + sym_comment, + STATE(10840), 1, + sym__command_name, + ACTIONS(2840), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [260152] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14214), 1, + ACTIONS(8535), 1, anon_sym_DOT_DOT2, - STATE(8268), 1, + STATE(7859), 1, sym_comment, - ACTIONS(3964), 2, + ACTIONS(3757), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3966), 2, + ACTIONS(3759), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(14216), 2, + ACTIONS(8537), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [260106] = 9, + [260174] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12574), 1, - sym_identifier, - STATE(3047), 1, - sym__assignment_pattern_parenthesized, - STATE(7440), 1, - sym__var, - STATE(8269), 1, + ACTIONS(920), 1, + sym_cmd_identifier, + ACTIONS(9714), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13668), 1, + aux_sym_unquoted_token2, + STATE(7860), 1, sym_comment, - STATE(8921), 1, - sym_val_variable, - STATE(10243), 1, - sym__variable_name, - STATE(10252), 1, - sym__assignment_pattern_parenthesized_last, - [260134] = 6, + ACTIONS(922), 4, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [260196] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14218), 1, - anon_sym_DOT_DOT2, - STATE(8270), 1, + ACTIONS(1209), 1, + aux_sym_command_token1, + ACTIONS(9784), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(7861), 1, sym_comment, - ACTIONS(3518), 2, + ACTIONS(1139), 5, anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(3520), 2, + anon_sym_RBRACE, + [260216] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(7862), 1, + sym_comment, + ACTIONS(1157), 3, ts_builtin_sym_end, + anon_sym_LPAREN2, + aux_sym_command_token1, + ACTIONS(1155), 4, + anon_sym_SEMI, anon_sym_LF, - ACTIONS(14220), 2, + anon_sym_PIPE, + aux_sym_unquoted_token6, + [260234] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(7863), 1, + sym_comment, + ACTIONS(2229), 3, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(2231), 4, + anon_sym_LBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [260156] = 6, - ACTIONS(113), 1, + [260252] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(3771), 1, + anon_sym_DASH, + ACTIONS(3775), 1, + anon_sym_LPAREN2, + ACTIONS(13087), 1, + anon_sym_DOT, + STATE(7864), 1, + sym_comment, + ACTIONS(3773), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [260276] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1255), 1, - anon_sym_LF, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - ACTIONS(4631), 1, - anon_sym_LPAREN2, - STATE(8271), 1, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(3771), 1, + sym_cmd_identifier, + ACTIONS(13087), 1, + anon_sym_DOT, + STATE(7865), 1, sym_comment, - ACTIONS(1253), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [260178] = 8, + ACTIONS(3773), 4, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [260298] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8615), 1, + ACTIONS(2838), 1, anon_sym_DQUOTE, - ACTIONS(14222), 1, + ACTIONS(12164), 1, sym_cmd_identifier, - STATE(1302), 1, - sym__command_name, - STATE(2793), 1, + STATE(6592), 1, sym__str_double_quotes, - STATE(2800), 1, + STATE(7171), 1, + sym__command_name, + STATE(7567), 1, sym_val_string, - STATE(8272), 1, + STATE(7866), 1, sym_comment, - ACTIONS(8617), 2, + ACTIONS(2840), 2, sym__str_single_quotes, sym__str_back_ticks, - [260204] = 6, + [260324] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - ACTIONS(1275), 1, - anon_sym_LF, - ACTIONS(4631), 1, + ACTIONS(3358), 1, anon_sym_LPAREN2, - STATE(8273), 1, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(12513), 1, + anon_sym_DOT, + STATE(7867), 1, sym_comment, - ACTIONS(1273), 4, + ACTIONS(3354), 2, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [260226] = 6, + ACTIONS(3356), 2, + ts_builtin_sym_end, + anon_sym_LF, + [260348] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3644), 1, + anon_sym_DASH, + ACTIONS(3648), 1, + anon_sym_LPAREN2, + ACTIONS(3650), 1, + aux_sym_unquoted_token2, + ACTIONS(13004), 1, + anon_sym_DOT, + STATE(7868), 1, + sym_comment, + ACTIONS(3646), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [260372] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4006), 1, + ACTIONS(3644), 1, sym_cmd_identifier, - ACTIONS(4012), 1, + ACTIONS(3650), 1, aux_sym_unquoted_token2, - ACTIONS(13520), 1, + ACTIONS(13004), 1, anon_sym_DOT, - STATE(8274), 1, + STATE(7869), 1, sym_comment, - ACTIONS(4008), 4, + ACTIONS(3646), 4, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [260248] = 8, + [260394] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2724), 1, - anon_sym_DQUOTE, - ACTIONS(12867), 1, - sym_cmd_identifier, - STATE(7019), 1, - sym__str_double_quotes, - STATE(7900), 1, - sym_val_string, - STATE(8275), 1, + ACTIONS(13672), 1, + anon_sym_COLON, + ACTIONS(13674), 1, + anon_sym_COMMA, + STATE(7870), 1, sym_comment, - STATE(10833), 1, - sym__command_name, - ACTIONS(2726), 2, + ACTIONS(13670), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [260274] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(14224), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14226), 1, - aux_sym__immediate_decimal_token2, - STATE(8276), 1, - sym_comment, - ACTIONS(2437), 2, - anon_sym_RBRACK, - aux_sym_unquoted_token2, - ACTIONS(2439), 3, - anon_sym_LPAREN2, - anon_sym_DOT, - sym__entry_separator, - [260296] = 8, + [260414] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8615), 1, - anon_sym_DQUOTE, - ACTIONS(14222), 1, - sym_cmd_identifier, - STATE(2793), 1, - sym__str_double_quotes, - STATE(2800), 1, - sym_val_string, - STATE(2842), 1, - sym__command_name, - STATE(8277), 1, + ACTIONS(13678), 1, + anon_sym_COLON, + ACTIONS(13680), 1, + anon_sym_COMMA, + STATE(7871), 1, sym_comment, - ACTIONS(8617), 2, + ACTIONS(13676), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [260322] = 4, + [260434] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1196), 1, - anon_sym_LF, - STATE(8278), 1, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + STATE(7872), 1, sym_comment, - ACTIONS(1194), 6, + STATE(10434), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4424), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(4422), 3, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LF, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [260340] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3520), 1, - anon_sym_LBRACE, - ACTIONS(3522), 1, - anon_sym_LPAREN2, - ACTIONS(14228), 1, - anon_sym_DOT_DOT2, - STATE(8279), 1, - sym_comment, - ACTIONS(1934), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(14230), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [260364] = 7, - ACTIONS(3), 1, + [260456] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2845), 1, - anon_sym_LBRACE, - ACTIONS(2847), 1, + ACTIONS(2187), 1, anon_sym_LPAREN2, - ACTIONS(14232), 1, - anon_sym_DOT_DOT2, - STATE(8280), 1, + STATE(7873), 1, sym_comment, - ACTIONS(2851), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(14234), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [260388] = 5, + STATE(10434), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4428), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(4426), 3, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, + [260478] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1290), 1, + ACTIONS(1149), 1, + aux_sym_unquoted_token6, + ACTIONS(3783), 1, anon_sym_LPAREN2, - ACTIONS(14236), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(8281), 1, + STATE(7874), 1, sym_comment, - ACTIONS(1243), 5, + ACTIONS(1089), 2, sym_cmd_identifier, anon_sym_DASH_DASH, + ACTIONS(1091), 3, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [260408] = 4, + [260500] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11848), 1, + anon_sym_DOLLAR, + ACTIONS(11850), 1, + anon_sym_LBRACE, + STATE(4298), 1, + sym__var, + STATE(4981), 1, + sym_block, + STATE(4987), 1, + sym_val_closure, + STATE(7875), 1, + sym_comment, + STATE(2170), 2, + sym__blosure, + sym_val_variable, + [260526] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5079), 1, - anon_sym_LF, - STATE(8282), 1, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + ACTIONS(3727), 1, + anon_sym_LPAREN2, + STATE(7876), 1, sym_comment, - ACTIONS(5075), 6, + ACTIONS(1161), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(1159), 3, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LF, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [260426] = 7, + [260548] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1148), 1, - anon_sym_DASH, - ACTIONS(14238), 1, - anon_sym_DOT, - STATE(8283), 1, + ACTIONS(13682), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13684), 1, + aux_sym__immediate_decimal_token2, + STATE(7877), 1, sym_comment, - STATE(8330), 1, - sym_path, - STATE(10031), 1, - sym_cell_path, - ACTIONS(1150), 3, + ACTIONS(2229), 2, sym_identifier, + aux_sym_unquoted_token2, + ACTIONS(2231), 3, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [260450] = 6, + anon_sym_LPAREN2, + anon_sym_DOT, + [260570] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4012), 1, - aux_sym_unquoted_token2, - ACTIONS(13520), 1, - anon_sym_DOT, - STATE(8284), 1, + ACTIONS(1149), 1, + aux_sym_unquoted_token6, + ACTIONS(3783), 1, + anon_sym_LPAREN2, + STATE(7878), 1, sym_comment, - ACTIONS(4008), 2, + ACTIONS(1091), 2, ts_builtin_sym_end, aux_sym_command_token1, - ACTIONS(4006), 3, + ACTIONS(1089), 3, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, + [260592] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(940), 1, + aux_sym_command_token1, + ACTIONS(8391), 1, + aux_sym_unquoted_token5, + STATE(7879), 1, + sym_comment, + ACTIONS(938), 5, anon_sym_SEMI, anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, - [260472] = 6, + anon_sym_RBRACE, + [260612] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3949), 1, + ACTIONS(3741), 1, anon_sym_DASH, - ACTIONS(14240), 1, + ACTIONS(13686), 1, anon_sym_DOT_DOT2, - STATE(8285), 1, + STATE(7880), 1, sym_comment, - ACTIONS(14242), 2, + ACTIONS(13688), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(3951), 3, - sym_identifier, + ACTIONS(3743), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [260494] = 6, + anon_sym_LBRACE, + [260634] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3964), 1, - anon_sym_DASH, - ACTIONS(14244), 1, + ACTIONS(3314), 1, + anon_sym_LBRACE, + ACTIONS(3316), 1, + anon_sym_LPAREN2, + ACTIONS(13690), 1, anon_sym_DOT_DOT2, - STATE(8286), 1, + STATE(7881), 1, sym_comment, - ACTIONS(14246), 2, + ACTIONS(1844), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(13692), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(3966), 3, - sym_identifier, - anon_sym_DOLLAR, + [260658] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(7882), 1, + sym_comment, + ACTIONS(1155), 3, + sym_cmd_identifier, anon_sym_DASH_DASH, - [260516] = 8, + aux_sym_unquoted_token6, + ACTIONS(1157), 4, + anon_sym_LPAREN2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [260676] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8615), 1, + ACTIONS(2838), 1, anon_sym_DQUOTE, - ACTIONS(14222), 1, + ACTIONS(12164), 1, sym_cmd_identifier, - STATE(2793), 1, + STATE(6592), 1, sym__str_double_quotes, - STATE(2800), 1, + STATE(7567), 1, sym_val_string, - STATE(2867), 1, - sym__command_name, - STATE(8287), 1, + STATE(7883), 1, sym_comment, - ACTIONS(8617), 2, + STATE(10703), 1, + sym__command_name, + ACTIONS(2840), 2, sym__str_single_quotes, sym__str_back_ticks, - [260542] = 4, + [260702] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5241), 1, - anon_sym_LF, - STATE(8288), 1, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(12513), 1, + anon_sym_DOT, + ACTIONS(13569), 1, + aux_sym__immediate_decimal_token1, + STATE(7884), 1, sym_comment, - ACTIONS(5239), 6, + ACTIONS(3574), 2, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [260560] = 7, + ACTIONS(3576), 2, + ts_builtin_sym_end, + anon_sym_LF, + [260726] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14202), 1, - aux_sym_command_token1, - ACTIONS(14204), 1, - anon_sym_LF2, - ACTIONS(14250), 1, - anon_sym_LF, - STATE(8289), 1, + ACTIONS(3312), 1, + anon_sym_RBRACK, + ACTIONS(3314), 1, + sym__entry_separator, + ACTIONS(13694), 1, + anon_sym_DOT_DOT2, + STATE(7885), 1, sym_comment, - STATE(8303), 1, - aux_sym__command_parenthesized_body_repeat1, - ACTIONS(14248), 3, + ACTIONS(1844), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(13696), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [260750] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(7886), 1, + sym_comment, + ACTIONS(1157), 2, + anon_sym_LF, + anon_sym_LPAREN2, + ACTIONS(1155), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - [260584] = 5, + anon_sym_RBRACE, + aux_sym_unquoted_token6, + [260768] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5725), 1, + anon_sym_DOLLAR, + ACTIONS(12254), 1, + sym_identifier, + STATE(2545), 1, + sym__assignment_pattern_parenthesized, + STATE(7000), 1, + sym__var, + STATE(7887), 1, + sym_comment, + STATE(8718), 1, + sym_val_variable, + STATE(9938), 1, + sym__assignment_pattern_parenthesized_last, + STATE(9953), 1, + sym__variable_name, + [260796] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5079), 1, - aux_sym_command_token1, - ACTIONS(14252), 1, - sym_long_flag_identifier, - STATE(8290), 1, + ACTIONS(3743), 1, + anon_sym_LF, + STATE(7888), 1, sym_comment, - ACTIONS(5075), 5, + ACTIONS(3741), 6, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_LF2, - [260604] = 7, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [260814] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1190), 1, + ACTIONS(1101), 1, anon_sym_DASH, - ACTIONS(14238), 1, + ACTIONS(13698), 1, anon_sym_DOT, - STATE(8291), 1, + STATE(7889), 1, sym_comment, - STATE(8330), 1, + STATE(7919), 1, sym_path, - STATE(9829), 1, + STATE(9372), 1, sym_cell_path, - ACTIONS(1192), 3, + ACTIONS(1103), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [260628] = 6, + [260838] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4043), 1, - anon_sym_DASH, - ACTIONS(14254), 1, - anon_sym_DOT_DOT2, - STATE(8292), 1, - sym_comment, - ACTIONS(14256), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(4045), 3, + ACTIONS(5725), 1, + anon_sym_DOLLAR, + ACTIONS(12254), 1, sym_identifier, + STATE(2546), 1, + sym__assignment_pattern_parenthesized, + STATE(7000), 1, + sym__var, + STATE(7890), 1, + sym_comment, + STATE(8718), 1, + sym_val_variable, + STATE(9953), 1, + sym__variable_name, + STATE(9965), 1, + sym__assignment_pattern_parenthesized_last, + [260866] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5725), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [260650] = 4, + ACTIONS(12254), 1, + sym_identifier, + STATE(2547), 1, + sym__assignment_pattern_parenthesized, + STATE(7000), 1, + sym__var, + STATE(7891), 1, + sym_comment, + STATE(8718), 1, + sym_val_variable, + STATE(9953), 1, + sym__variable_name, + STATE(9966), 1, + sym__assignment_pattern_parenthesized_last, + [260894] = 7, ACTIONS(113), 1, anon_sym_POUND, - STATE(8293), 1, - sym_comment, - ACTIONS(1282), 3, - ts_builtin_sym_end, - anon_sym_LPAREN2, + ACTIONS(13702), 1, + anon_sym_LF, + ACTIONS(13704), 1, aux_sym_command_token1, - ACTIONS(1280), 4, + ACTIONS(13706), 1, + anon_sym_LF2, + STATE(7892), 1, + sym_comment, + STATE(8065), 1, + aux_sym__command_parenthesized_body_repeat1, + ACTIONS(13700), 3, anon_sym_SEMI, - anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, - aux_sym_unquoted_token6, - [260668] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(8294), 1, - sym_comment, - ACTIONS(2437), 2, - anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(2439), 5, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [260686] = 5, + [260918] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14258), 1, - sym_long_flag_identifier, - STATE(8295), 1, + ACTIONS(13103), 1, + aux_sym__immediate_decimal_token1, + STATE(7893), 1, sym_comment, - ACTIONS(5079), 2, + ACTIONS(4773), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(5075), 4, + ACTIONS(4771), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [260706] = 4, - ACTIONS(3), 1, + [260938] = 6, + ACTIONS(113), 1, anon_sym_POUND, - STATE(8296), 1, - sym_comment, - ACTIONS(2547), 2, - anon_sym_DASH, + ACTIONS(13708), 1, anon_sym_DOT_DOT2, - ACTIONS(2549), 5, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [260724] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(8297), 1, + STATE(7894), 1, sym_comment, - ACTIONS(3505), 2, - anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(3507), 5, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(3691), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3693), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(13710), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [260742] = 6, - ACTIONS(3), 1, + [260960] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14260), 1, + ACTIONS(13712), 1, anon_sym_DOT_DOT2, - STATE(8298), 1, + STATE(7895), 1, sym_comment, - ACTIONS(2845), 2, - anon_sym_DOLLAR, - anon_sym_LBRACE, - ACTIONS(2851), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(14262), 2, + ACTIONS(3699), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3701), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(13714), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [260764] = 7, - ACTIONS(113), 1, + [260982] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2843), 1, - anon_sym_RBRACK, - ACTIONS(2845), 1, - sym__entry_separator, - ACTIONS(14264), 1, - anon_sym_DOT_DOT2, - STATE(8299), 1, + ACTIONS(13716), 1, + sym_cmd_identifier, + ACTIONS(13718), 1, + anon_sym_DQUOTE, + STATE(6559), 1, + sym__str_double_quotes, + STATE(7171), 1, + sym__command_name, + STATE(7352), 1, + sym_val_string, + STATE(7896), 1, sym_comment, - ACTIONS(2851), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(14266), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [260788] = 6, + ACTIONS(2653), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [261008] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14268), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14270), 1, - aux_sym_unquoted_token2, - STATE(8300), 1, + ACTIONS(12196), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(13720), 1, + anon_sym_DOT, + STATE(7897), 1, sym_comment, - ACTIONS(936), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(938), 3, + ACTIONS(2358), 2, ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(2356), 3, + anon_sym_SEMI, anon_sym_LF, - anon_sym_LPAREN2, - [260810] = 5, + anon_sym_PIPE, + [261030] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13663), 1, + ACTIONS(13103), 1, aux_sym__immediate_decimal_token1, - STATE(8301), 1, + STATE(7898), 1, sym_comment, - ACTIONS(3750), 2, + ACTIONS(3576), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3748), 4, + ACTIONS(3574), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [260830] = 6, + [261050] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14272), 1, + ACTIONS(13722), 1, anon_sym_DOT_DOT2, - STATE(8302), 1, + STATE(7899), 1, sym_comment, - ACTIONS(4043), 2, + ACTIONS(3711), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4045), 2, + ACTIONS(3713), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(14274), 2, + ACTIONS(13724), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [260852] = 7, + [261072] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14202), 1, - aux_sym_command_token1, - ACTIONS(14204), 1, - anon_sym_LF2, - ACTIONS(14278), 1, - anon_sym_LF, - STATE(8303), 1, + ACTIONS(13726), 1, + anon_sym_DOT_DOT2, + STATE(7900), 1, sym_comment, - STATE(8502), 1, - aux_sym__command_parenthesized_body_repeat1, - ACTIONS(14276), 3, + ACTIONS(3354), 2, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - [260876] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2437), 1, - anon_sym_DOT_DOT2, - ACTIONS(14280), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14282), 1, - aux_sym__immediate_decimal_token2, - STATE(8304), 1, - sym_comment, - ACTIONS(2439), 4, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3356), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(13728), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [260898] = 8, - ACTIONS(3), 1, + [261094] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8615), 1, - anon_sym_DQUOTE, - ACTIONS(14222), 1, - sym_cmd_identifier, - STATE(2793), 1, - sym__str_double_quotes, - STATE(2800), 1, - sym_val_string, - STATE(2889), 1, - sym__command_name, - STATE(8305), 1, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + STATE(7901), 1, sym_comment, - ACTIONS(8617), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [260924] = 8, + STATE(10434), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4344), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(4342), 3, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, + [261116] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2724), 1, - anon_sym_DQUOTE, - ACTIONS(12867), 1, - sym_cmd_identifier, - STATE(7019), 1, - sym__str_double_quotes, - STATE(7900), 1, - sym_val_string, - STATE(8306), 1, - sym_comment, - STATE(11045), 1, - sym__command_name, - ACTIONS(2726), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [260950] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - ACTIONS(4037), 1, - anon_sym_LPAREN2, - STATE(8307), 1, + ACTIONS(13730), 1, + anon_sym_QMARK2, + STATE(7902), 1, sym_comment, - ACTIONS(1247), 2, + ACTIONS(1026), 6, sym_cmd_identifier, anon_sym_DASH_DASH, - ACTIONS(1249), 3, + anon_sym_DOT, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [260972] = 8, + [261134] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8615), 1, - anon_sym_DQUOTE, - ACTIONS(14222), 1, - sym_cmd_identifier, - STATE(2793), 1, - sym__str_double_quotes, - STATE(2800), 1, - sym_val_string, - STATE(2890), 1, - sym__command_name, - STATE(8308), 1, + ACTIONS(3356), 1, + anon_sym_LBRACE, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(13732), 1, + anon_sym_DOT_DOT2, + STATE(7903), 1, sym_comment, - ACTIONS(8617), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [260998] = 4, + ACTIONS(3362), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(13734), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [261158] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14284), 1, + ACTIONS(13730), 1, anon_sym_QMARK2, - STATE(8309), 1, + STATE(7904), 1, sym_comment, - ACTIONS(1072), 6, + ACTIONS(1026), 6, sym_cmd_identifier, anon_sym_DASH_DASH, anon_sym_DOT, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [261016] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(8310), 1, - sym_comment, - ACTIONS(1172), 2, - anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(1174), 5, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [261034] = 6, + [261176] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14286), 1, - anon_sym_DOT_DOT2, - STATE(8311), 1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + ACTIONS(3841), 1, + anon_sym_LPAREN2, + STATE(7905), 1, sym_comment, - ACTIONS(2843), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(2845), 2, + ACTIONS(1131), 2, ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(1129), 3, + anon_sym_SEMI, anon_sym_LF, - ACTIONS(14288), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [261056] = 6, + anon_sym_PIPE, + [261198] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - ACTIONS(13456), 1, - anon_sym_DOT, - STATE(8312), 1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + ACTIONS(3841), 1, + anon_sym_LPAREN2, + STATE(7906), 1, sym_comment, - ACTIONS(3876), 2, + ACTIONS(1137), 2, ts_builtin_sym_end, aux_sym_command_token1, - ACTIONS(3874), 3, + ACTIONS(1135), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_PIPE, - [261078] = 4, + [261220] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(3354), 1, + anon_sym_RBRACK, + ACTIONS(3356), 1, + sym__entry_separator, + ACTIONS(13736), 1, + anon_sym_DOT_DOT2, + STATE(7907), 1, + sym_comment, + ACTIONS(3362), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(13738), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [261244] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14284), 1, - anon_sym_QMARK2, - STATE(8313), 1, + STATE(7908), 1, sym_comment, - ACTIONS(1072), 6, - sym_cmd_identifier, + ACTIONS(2362), 2, + anon_sym_DASH, + aux_sym_unquoted_token2, + ACTIONS(2364), 5, + anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN2, anon_sym_DOT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [261096] = 5, + [261262] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5085), 1, - aux_sym_command_token1, - ACTIONS(13522), 1, - aux_sym__immediate_decimal_token1, - STATE(8314), 1, + ACTIONS(4738), 1, + anon_sym_LF, + STATE(7909), 1, sym_comment, - ACTIONS(5083), 5, + ACTIONS(4734), 6, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_RBRACE, - [261116] = 5, + [261280] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(961), 1, - aux_sym_command_token1, - ACTIONS(9043), 1, - aux_sym_unquoted_token5, - STATE(8315), 1, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(12748), 1, + anon_sym_DOT, + STATE(7910), 1, sym_comment, - ACTIONS(959), 5, + ACTIONS(3314), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(3312), 3, anon_sym_SEMI, anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [261136] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12574), 1, - sym_identifier, - STATE(3052), 1, - sym__assignment_pattern, - STATE(7440), 1, - sym__var, - STATE(8316), 1, - sym_comment, - STATE(8921), 1, - sym_val_variable, - STATE(10215), 1, - sym__variable_name, - STATE(10303), 1, - sym__assignment_pattern_last, - [261164] = 5, + [261302] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14292), 1, - aux_sym_command_token1, - STATE(8317), 1, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + STATE(7911), 1, sym_comment, - STATE(8327), 1, - aux_sym_command_repeat1, - ACTIONS(14290), 5, + STATE(10434), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4396), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(4394), 3, anon_sym_SEMI, anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [261184] = 4, + [261324] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(8318), 1, + ACTIONS(2838), 1, + anon_sym_DQUOTE, + ACTIONS(12164), 1, + sym_cmd_identifier, + STATE(6592), 1, + sym__str_double_quotes, + STATE(7567), 1, + sym_val_string, + STATE(7912), 1, sym_comment, - ACTIONS(1168), 2, - anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(1170), 5, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [261202] = 6, + STATE(10474), 1, + sym__command_name, + ACTIONS(2840), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [261350] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1158), 1, - anon_sym_DASH, - ACTIONS(10610), 1, - anon_sym_DOT_DOT2, - STATE(8319), 1, + ACTIONS(8135), 1, + anon_sym_DQUOTE, + ACTIONS(13740), 1, + sym_cmd_identifier, + STATE(2294), 1, + sym__str_double_quotes, + STATE(2364), 1, + sym_val_string, + STATE(2440), 1, + sym__command_name, + STATE(7913), 1, sym_comment, - ACTIONS(10612), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1160), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [261224] = 7, - ACTIONS(113), 1, + ACTIONS(8137), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [261376] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3518), 1, - anon_sym_RBRACK, - ACTIONS(3520), 1, - sym__entry_separator, - ACTIONS(14294), 1, - anon_sym_DOT_DOT2, - STATE(8320), 1, + STATE(7914), 1, sym_comment, - ACTIONS(1934), 2, + ACTIONS(2229), 3, + anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(14296), 2, + ACTIONS(2231), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [261248] = 7, + [261394] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1010), 1, + ACTIONS(1002), 1, anon_sym_DASH, - ACTIONS(14238), 1, + ACTIONS(13698), 1, anon_sym_DOT, - STATE(8318), 1, - sym_cell_path, - STATE(8321), 1, + STATE(7915), 1, sym_comment, - STATE(8330), 1, + STATE(7919), 1, sym_path, - ACTIONS(1012), 3, + STATE(8012), 1, + sym_cell_path, + ACTIONS(1004), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [261272] = 6, + [261418] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, - anon_sym_DASH, - ACTIONS(14298), 1, - anon_sym_DOT_DOT2, - STATE(8322), 1, + STATE(7916), 1, sym_comment, - ACTIONS(14300), 2, + ACTIONS(2362), 3, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(2364), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(3868), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [261294] = 9, + [261436] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12574), 1, - sym_identifier, - STATE(3033), 1, - sym__assignment_pattern, - STATE(7440), 1, - sym__var, - STATE(8323), 1, + STATE(7917), 1, sym_comment, - STATE(8921), 1, - sym_val_variable, - STATE(9477), 1, - sym__assignment_pattern_last, - STATE(10265), 1, - sym__variable_name, - [261322] = 9, - ACTIONS(3), 1, + ACTIONS(2402), 3, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(2404), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [261454] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12574), 1, - sym_identifier, - STATE(3063), 1, - sym__assignment_pattern, - STATE(7440), 1, - sym__var, - STATE(8324), 1, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + ACTIONS(3727), 1, + anon_sym_LPAREN2, + ACTIONS(13742), 1, + aux_sym_command_token1, + STATE(7918), 1, sym_comment, - STATE(8921), 1, - sym_val_variable, - STATE(9487), 1, - sym__assignment_pattern_last, - STATE(10265), 1, - sym__variable_name, - [261350] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6247), 1, + ACTIONS(3725), 4, anon_sym_DOLLAR, - ACTIONS(12574), 1, - sym_identifier, - STATE(2953), 1, - sym__assignment_pattern, - STATE(7440), 1, - sym__var, - STATE(8325), 1, - sym_comment, - STATE(8921), 1, - sym_val_variable, - STATE(9488), 1, - sym__assignment_pattern_last, - STATE(10265), 1, - sym__variable_name, - [261378] = 8, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + [261476] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8454), 1, - anon_sym_DQUOTE, - ACTIONS(14036), 1, - sym_cmd_identifier, - STATE(2494), 1, - sym__command_name, - STATE(2627), 1, - sym__str_double_quotes, - STATE(2633), 1, - sym_val_string, - STATE(8326), 1, + ACTIONS(1010), 1, + anon_sym_DASH, + ACTIONS(13698), 1, + anon_sym_DOT, + STATE(7919), 1, sym_comment, - ACTIONS(8456), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [261404] = 4, + STATE(7923), 1, + aux_sym_cell_path_repeat1, + STATE(8555), 1, + sym_path, + ACTIONS(1012), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [261500] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14304), 1, - aux_sym_command_token1, - STATE(8327), 2, + ACTIONS(3693), 1, + anon_sym_LF, + STATE(7920), 1, sym_comment, - aux_sym_command_repeat1, - ACTIONS(14302), 5, + ACTIONS(3691), 6, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [261422] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(8328), 1, - sym_comment, - ACTIONS(2437), 2, - anon_sym_DASH, - aux_sym_unquoted_token2, - ACTIONS(2439), 5, - anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT, - [261440] = 4, + anon_sym_DASH, + anon_sym_RBRACE, + [261518] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5173), 1, + ACTIONS(3701), 1, anon_sym_LF, - STATE(8329), 1, + STATE(7921), 1, sym_comment, - ACTIONS(5171), 6, + ACTIONS(3699), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [261458] = 7, + [261536] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + ACTIONS(3727), 1, + anon_sym_LPAREN2, + STATE(7922), 1, + sym_comment, + ACTIONS(1159), 2, + sym_cmd_identifier, + anon_sym_DASH_DASH, + ACTIONS(1161), 3, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [261558] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(987), 1, + ACTIONS(1006), 1, anon_sym_DASH, - ACTIONS(14238), 1, + ACTIONS(13698), 1, anon_sym_DOT, - STATE(8330), 1, + STATE(7923), 1, sym_comment, - STATE(8341), 1, + STATE(7925), 1, aux_sym_cell_path_repeat1, - STATE(8823), 1, + STATE(8555), 1, sym_path, - ACTIONS(989), 3, + ACTIONS(1008), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [261482] = 6, - ACTIONS(3), 1, + [261582] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3866), 1, - anon_sym_DASH, - ACTIONS(14307), 1, - anon_sym_DOT_DOT2, - STATE(8331), 1, + ACTIONS(3713), 1, + anon_sym_LF, + STATE(7924), 1, sym_comment, - ACTIONS(14309), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3868), 3, - anon_sym_DOLLAR, + ACTIONS(3711), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [261504] = 8, + anon_sym_DASH, + anon_sym_RBRACE, + [261600] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8454), 1, - anon_sym_DQUOTE, - ACTIONS(14036), 1, - sym_cmd_identifier, - STATE(1271), 1, - sym__command_name, - STATE(2627), 1, - sym__str_double_quotes, - STATE(2633), 1, - sym_val_string, - STATE(8332), 1, + ACTIONS(985), 1, + anon_sym_DASH, + ACTIONS(13744), 1, + anon_sym_DOT, + STATE(8555), 1, + sym_path, + STATE(7925), 2, sym_comment, - ACTIONS(8456), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [261530] = 5, + aux_sym_cell_path_repeat1, + ACTIONS(987), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [261622] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5015), 1, + ACTIONS(4725), 1, aux_sym_command_token1, - ACTIONS(14311), 1, + ACTIONS(13747), 1, anon_sym_EQ, - STATE(8333), 1, + STATE(7926), 1, sym_comment, - ACTIONS(5011), 5, + ACTIONS(4721), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [261550] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2724), 1, - anon_sym_DQUOTE, - ACTIONS(12867), 1, - sym_cmd_identifier, - STATE(7019), 1, - sym__str_double_quotes, - STATE(7900), 1, - sym_val_string, - STATE(8334), 1, - sym_comment, - STATE(9466), 1, - sym__command_name, - ACTIONS(2726), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [261576] = 7, + anon_sym_LF2, + [261642] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(13169), 1, - anon_sym_DOT, - ACTIONS(14117), 1, - aux_sym__immediate_decimal_token1, - STATE(8335), 1, + ACTIONS(13749), 1, + anon_sym_DOT_DOT2, + STATE(7927), 1, sym_comment, - ACTIONS(3748), 2, + ACTIONS(3741), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3750), 2, + ACTIONS(3743), 2, ts_builtin_sym_end, anon_sym_LF, - [261600] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8615), 1, - anon_sym_DQUOTE, - ACTIONS(14222), 1, - sym_cmd_identifier, - STATE(2653), 1, - sym__command_name, - STATE(2793), 1, - sym__str_double_quotes, - STATE(2800), 1, - sym_val_string, - STATE(8336), 1, - sym_comment, - ACTIONS(8617), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [261626] = 5, + ACTIONS(13751), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [261664] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14313), 1, - anon_sym_EQ, - STATE(8337), 1, - sym_comment, - ACTIONS(5015), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5011), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [261646] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3365), 1, - anon_sym_DASH_DASH, - ACTIONS(3367), 1, - anon_sym_DASH, - ACTIONS(14315), 1, - anon_sym_in, - STATE(8338), 1, - sym_comment, - STATE(10877), 1, - sym__flag, - STATE(11044), 1, - sym_long_flag_equals_value, - STATE(10775), 2, - sym_short_flag, - sym_long_flag, - [261672] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12574), 1, - sym_identifier, - STATE(3052), 1, - sym__assignment_pattern, - STATE(7440), 1, - sym__var, - STATE(8339), 1, - sym_comment, - STATE(8921), 1, - sym_val_variable, - STATE(9581), 1, - sym__assignment_pattern_last, - STATE(10265), 1, - sym__variable_name, - [261700] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8454), 1, - anon_sym_DQUOTE, - ACTIONS(14036), 1, - sym_cmd_identifier, - STATE(2509), 1, - sym__command_name, - STATE(2627), 1, - sym__str_double_quotes, - STATE(2633), 1, - sym_val_string, - STATE(8340), 1, - sym_comment, - ACTIONS(8456), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [261726] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1006), 1, - anon_sym_DASH, - ACTIONS(14238), 1, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(12513), 1, anon_sym_DOT, - STATE(8341), 1, - sym_comment, - STATE(8348), 1, - aux_sym_cell_path_repeat1, - STATE(8823), 1, - sym_path, - ACTIONS(1008), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [261750] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12574), 1, - sym_identifier, - STATE(2995), 1, - sym__assignment_pattern_parenthesized, - STATE(7440), 1, - sym__var, - STATE(8342), 1, - sym_comment, - STATE(8921), 1, - sym_val_variable, - STATE(10242), 1, - sym__assignment_pattern_parenthesized_last, - STATE(10243), 1, - sym__variable_name, - [261778] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8454), 1, - anon_sym_DQUOTE, - ACTIONS(14036), 1, - sym_cmd_identifier, - STATE(2627), 1, - sym__str_double_quotes, - STATE(2633), 1, - sym_val_string, - STATE(2669), 1, - sym__command_name, - STATE(8343), 1, - sym_comment, - ACTIONS(8456), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [261804] = 8, - ACTIONS(3), 1, + STATE(7928), 1, + sym_comment, + ACTIONS(3356), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(3354), 3, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, + [261686] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8454), 1, - anon_sym_DQUOTE, - ACTIONS(14036), 1, - sym_cmd_identifier, - STATE(2627), 1, - sym__str_double_quotes, - STATE(2633), 1, - sym_val_string, - STATE(2670), 1, - sym__command_name, - STATE(8344), 1, + ACTIONS(13753), 1, + anon_sym_EQ, + STATE(7929), 1, sym_comment, - ACTIONS(8456), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [261830] = 6, + ACTIONS(4725), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4721), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [261706] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14317), 1, - anon_sym_DOT_DOT2, - STATE(8345), 1, + ACTIONS(2229), 1, + aux_sym_unquoted_token2, + ACTIONS(13755), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13757), 1, + aux_sym__immediate_decimal_token2, + STATE(7930), 1, sym_comment, - ACTIONS(2845), 2, + ACTIONS(2231), 4, anon_sym_PIPE, + anon_sym_if, anon_sym_EQ_GT, - ACTIONS(2851), 2, anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(14319), 2, + [261728] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(13759), 1, + anon_sym_DOT_DOT2, + STATE(7931), 1, + sym_comment, + ACTIONS(3312), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3314), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(13761), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [261852] = 4, + [261750] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(8346), 1, + STATE(7932), 1, sym_comment, - ACTIONS(2437), 3, + ACTIONS(2229), 3, anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(2439), 4, + ACTIONS(2231), 4, anon_sym_in, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [261870] = 4, - ACTIONS(3), 1, + [261768] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(8347), 1, + ACTIONS(4957), 1, + anon_sym_LF, + STATE(7933), 1, sym_comment, - ACTIONS(2547), 2, - anon_sym_DASH, - aux_sym_unquoted_token2, - ACTIONS(2549), 5, - anon_sym_DOLLAR, + ACTIONS(4955), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DASH_DASH, - anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_RBRACE, + [261786] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3314), 1, + anon_sym_in, + ACTIONS(3316), 1, anon_sym_LPAREN2, + ACTIONS(13763), 1, + anon_sym_DOT_DOT2, + STATE(7934), 1, + sym_comment, + ACTIONS(1844), 2, anon_sym_DOT, - [261888] = 6, - ACTIONS(3), 1, + aux_sym_unquoted_token2, + ACTIONS(13765), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [261810] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(999), 1, + ACTIONS(4961), 1, + anon_sym_LF, + STATE(7935), 1, + sym_comment, + ACTIONS(4959), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, anon_sym_DASH, - ACTIONS(14321), 1, - anon_sym_DOT, - STATE(8823), 1, - sym_path, - STATE(8348), 2, + anon_sym_RBRACE, + [261828] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(4965), 1, + anon_sym_LF, + STATE(7936), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1001), 3, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(4963), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DASH_DASH, - [261910] = 7, + anon_sym_DASH, + anon_sym_RBRACE, + [261846] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1251), 1, + ACTIONS(1133), 1, aux_sym_unquoted_token6, - ACTIONS(4037), 1, + ACTIONS(3841), 1, anon_sym_LPAREN2, - ACTIONS(4617), 1, - ts_builtin_sym_end, - ACTIONS(14324), 1, + STATE(7937), 1, + sym_comment, + ACTIONS(1129), 2, + sym_cmd_identifier, + anon_sym_DASH_DASH, + ACTIONS(1131), 3, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [261868] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + ACTIONS(3841), 1, + anon_sym_LPAREN2, + STATE(7938), 1, + sym_comment, + ACTIONS(1135), 2, + sym_cmd_identifier, + anon_sym_DASH_DASH, + ACTIONS(1137), 3, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [261890] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3312), 1, + sym_identifier, + ACTIONS(3314), 1, + anon_sym_DOLLAR, + ACTIONS(13767), 1, + anon_sym_DOT_DOT2, + STATE(7939), 1, + sym_comment, + ACTIONS(1844), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(13769), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [261914] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1209), 1, aux_sym_command_token1, - STATE(8349), 1, + ACTIONS(9867), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(7940), 1, sym_comment, - ACTIONS(4035), 3, + ACTIONS(1139), 5, anon_sym_SEMI, anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_LF2, [261934] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6247), 1, + ACTIONS(5725), 1, anon_sym_DOLLAR, - ACTIONS(12574), 1, + ACTIONS(12254), 1, sym_identifier, - STATE(2997), 1, - sym__assignment_pattern_parenthesized, - STATE(7440), 1, + STATE(2531), 1, + sym__assignment_pattern, + STATE(7000), 1, sym__var, - STATE(8350), 1, + STATE(7941), 1, sym_comment, - STATE(8921), 1, + STATE(8718), 1, sym_val_variable, - STATE(10243), 1, + STATE(9747), 1, sym__variable_name, - STATE(10249), 1, - sym__assignment_pattern_parenthesized_last, + STATE(9807), 1, + sym__assignment_pattern_last, [261962] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14292), 1, - aux_sym_command_token1, - STATE(8327), 1, - aux_sym_command_repeat1, - STATE(8351), 1, + ACTIONS(1209), 1, + ts_builtin_sym_end, + ACTIONS(10046), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(7942), 1, sym_comment, - ACTIONS(14326), 5, + ACTIONS(1139), 5, anon_sym_SEMI, anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [261982] = 6, + anon_sym_DASH_DASH, + anon_sym_DASH, + [261982] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(7943), 1, + sym_comment, + ACTIONS(2402), 2, + anon_sym_DASH, + aux_sym_unquoted_token2, + ACTIONS(2404), 5, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT, + [262000] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1160), 1, + ACTIONS(3759), 1, anon_sym_LF, - ACTIONS(1284), 1, - aux_sym_unquoted_token6, - ACTIONS(4895), 1, - anon_sym_LPAREN2, - STATE(8352), 1, + STATE(7944), 1, sym_comment, - ACTIONS(1158), 4, + ACTIONS(3757), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_RBRACE, - [262004] = 4, + [262018] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(3775), 1, + anon_sym_LPAREN2, + ACTIONS(13087), 1, + anon_sym_DOT, + STATE(7945), 1, + sym_comment, + ACTIONS(3771), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3773), 2, + ts_builtin_sym_end, + anon_sym_LF, + [262042] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(8353), 1, + STATE(7946), 1, sym_comment, - ACTIONS(3505), 3, + ACTIONS(2362), 3, anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(3507), 4, - anon_sym_LBRACE, + ACTIONS(2364), 4, + anon_sym_in, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [262022] = 4, + [262060] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(6647), 1, - anon_sym_LF, - STATE(8354), 1, + ACTIONS(3590), 1, + anon_sym_COLON, + ACTIONS(13652), 1, + aux_sym_command_token1, + STATE(7947), 1, sym_comment, - ACTIONS(6645), 6, + STATE(8003), 1, + aux_sym_command_repeat1, + ACTIONS(13771), 4, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LF, anon_sym_PIPE, - anon_sym_else, anon_sym_RBRACE, - anon_sym_catch, - [262040] = 4, + [262082] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(8355), 1, - sym_comment, - ACTIONS(3505), 2, - anon_sym_DASH, - aux_sym_unquoted_token2, - ACTIONS(3507), 5, + ACTIONS(5725), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT, - [262058] = 6, + ACTIONS(12254), 1, + sym_identifier, + STATE(2533), 1, + sym__assignment_pattern, + STATE(7000), 1, + sym__var, + STATE(7948), 1, + sym_comment, + STATE(8718), 1, + sym_val_variable, + STATE(9747), 1, + sym__variable_name, + STATE(9900), 1, + sym__assignment_pattern_last, + [262110] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12584), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(14328), 1, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(13087), 1, anon_sym_DOT, - STATE(8356), 1, + STATE(7949), 1, sym_comment, - ACTIONS(2583), 2, + ACTIONS(3773), 2, ts_builtin_sym_end, aux_sym_command_token1, - ACTIONS(2581), 3, + ACTIONS(3771), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_PIPE, - [262080] = 6, + [262132] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - ACTIONS(3876), 1, + ACTIONS(4999), 1, anon_sym_LF, - ACTIONS(13456), 1, - anon_sym_DOT, - STATE(8357), 1, + STATE(7950), 1, sym_comment, - ACTIONS(3874), 4, + ACTIONS(4997), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [262102] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8615), 1, - anon_sym_DQUOTE, - ACTIONS(14222), 1, - sym_cmd_identifier, - STATE(2793), 1, - sym__str_double_quotes, - STATE(2800), 1, - sym_val_string, - STATE(2891), 1, - sym__command_name, - STATE(8358), 1, - sym_comment, - ACTIONS(8617), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [262128] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(3518), 1, - anon_sym_DASH, - ACTIONS(3522), 1, - anon_sym_LPAREN2, - ACTIONS(13319), 1, - anon_sym_DOT, - STATE(8359), 1, - sym_comment, - ACTIONS(3520), 3, - anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [262152] = 4, + anon_sym_DASH, + anon_sym_RBRACE, + [262150] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3951), 1, + ACTIONS(5003), 1, anon_sym_LF, - STATE(8360), 1, + STATE(7951), 1, sym_comment, - ACTIONS(3949), 6, + ACTIONS(5001), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [262170] = 6, + [262168] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1284), 1, - aux_sym_unquoted_token6, - ACTIONS(4895), 1, - anon_sym_LPAREN2, - STATE(8361), 1, + ACTIONS(5007), 1, + anon_sym_LF, + STATE(7952), 1, sym_comment, - ACTIONS(1158), 2, - sym_cmd_identifier, + ACTIONS(5005), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DASH_DASH, - ACTIONS(1160), 3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [262192] = 6, - ACTIONS(3), 1, + anon_sym_DASH, + anon_sym_RBRACE, + [262186] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(3518), 1, - sym_cmd_identifier, - ACTIONS(13319), 1, - anon_sym_DOT, - STATE(8362), 1, + ACTIONS(5021), 1, + anon_sym_LF, + STATE(7953), 1, sym_comment, - ACTIONS(3520), 4, + ACTIONS(5019), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [262214] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8454), 1, - anon_sym_DQUOTE, - ACTIONS(14036), 1, - sym_cmd_identifier, - STATE(2627), 1, - sym__str_double_quotes, - STATE(2633), 1, - sym_val_string, - STATE(2715), 1, - sym__command_name, - STATE(8363), 1, - sym_comment, - ACTIONS(8456), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [262240] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(8364), 1, - sym_comment, - ACTIONS(2437), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(2439), 4, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [262258] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2724), 1, - anon_sym_DQUOTE, - ACTIONS(12867), 1, - sym_cmd_identifier, - STATE(7019), 1, - sym__str_double_quotes, - STATE(7900), 1, - sym_val_string, - STATE(8365), 1, - sym_comment, - STATE(11345), 1, - sym__command_name, - ACTIONS(2726), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [262284] = 4, + anon_sym_DASH, + anon_sym_RBRACE, + [262204] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3966), 1, + ACTIONS(5025), 1, anon_sym_LF, - STATE(8366), 1, + STATE(7954), 1, sym_comment, - ACTIONS(3964), 6, + ACTIONS(5023), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [262302] = 5, + [262222] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10520), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(8367), 1, + ACTIONS(5029), 1, + anon_sym_LF, + STATE(7955), 1, sym_comment, - ACTIONS(1243), 3, + ACTIONS(5027), 6, anon_sym_SEMI, - anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(1290), 3, - ts_builtin_sym_end, - anon_sym_LPAREN2, - aux_sym_command_token1, - [262322] = 7, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [262240] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - ACTIONS(4037), 1, - anon_sym_LPAREN2, - ACTIONS(4617), 1, - ts_builtin_sym_end, - ACTIONS(14330), 1, - aux_sym_command_token1, - STATE(8368), 1, + ACTIONS(5033), 1, + anon_sym_LF, + STATE(7956), 1, sym_comment, - ACTIONS(4035), 3, + ACTIONS(5031), 6, anon_sym_SEMI, - anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, - [262346] = 8, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [262258] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8615), 1, + ACTIONS(8135), 1, anon_sym_DQUOTE, - ACTIONS(14222), 1, + ACTIONS(13740), 1, sym_cmd_identifier, - STATE(2793), 1, + STATE(1012), 1, + sym__command_name, + STATE(2294), 1, sym__str_double_quotes, - STATE(2800), 1, + STATE(2364), 1, sym_val_string, - STATE(2841), 1, - sym__command_name, - STATE(8369), 1, + STATE(7957), 1, sym_comment, - ACTIONS(8617), 2, + ACTIONS(8137), 2, sym__str_single_quotes, sym__str_back_ticks, - [262372] = 8, - ACTIONS(3), 1, + [262284] = 7, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12179), 1, - anon_sym_DOLLAR, - ACTIONS(12181), 1, - anon_sym_LBRACE, - STATE(4616), 1, - sym__var, - STATE(5084), 1, - sym_block, - STATE(5126), 1, - sym_val_closure, - STATE(8370), 1, + ACTIONS(3648), 1, + anon_sym_LPAREN2, + ACTIONS(3650), 1, + aux_sym_unquoted_token2, + ACTIONS(13004), 1, + anon_sym_DOT, + STATE(7958), 1, sym_comment, - STATE(2081), 2, - sym__blosure, - sym_val_variable, - [262398] = 7, + ACTIONS(3644), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3646), 2, + ts_builtin_sym_end, + anon_sym_LF, + [262308] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3520), 1, - anon_sym_in, - ACTIONS(3522), 1, - anon_sym_LPAREN2, - ACTIONS(14332), 1, - anon_sym_DOT_DOT2, - STATE(8371), 1, + STATE(7959), 1, sym_comment, - ACTIONS(1934), 2, + ACTIONS(2402), 3, + anon_sym_DOT_DOT2, anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(14334), 2, + ACTIONS(2404), 4, + anon_sym_in, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [262422] = 8, + [262326] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2847), 1, - anon_sym_LPAREN2, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(3750), 1, + ACTIONS(3152), 1, anon_sym_DASH_DASH, - ACTIONS(13169), 1, - anon_sym_DOT, - ACTIONS(14336), 1, - aux_sym__immediate_decimal_token1, - STATE(8372), 1, - sym_comment, - ACTIONS(3748), 2, - sym_identifier, + ACTIONS(3154), 1, anon_sym_DASH, - [262448] = 7, - ACTIONS(3), 1, + ACTIONS(13773), 1, + anon_sym_in, + STATE(7960), 1, + sym_comment, + STATE(10390), 1, + sym__flag, + STATE(10628), 1, + sym_long_flag_equals_value, + STATE(10275), 2, + sym_short_flag, + sym_long_flag, + [262352] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4006), 1, - anon_sym_DASH, - ACTIONS(4010), 1, - anon_sym_LPAREN2, - ACTIONS(4012), 1, + ACTIONS(3650), 1, aux_sym_unquoted_token2, - ACTIONS(13520), 1, + ACTIONS(13004), 1, anon_sym_DOT, - STATE(8373), 1, + STATE(7961), 1, sym_comment, - ACTIONS(4008), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [262472] = 8, + ACTIONS(3646), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(3644), 3, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, + [262374] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8454), 1, - anon_sym_DQUOTE, - ACTIONS(14036), 1, - sym_cmd_identifier, - STATE(2627), 1, - sym__str_double_quotes, - STATE(2633), 1, - sym_val_string, - STATE(2757), 1, - sym__command_name, - STATE(8374), 1, + ACTIONS(3691), 1, + anon_sym_DASH, + ACTIONS(13775), 1, + anon_sym_DOT_DOT2, + STATE(7962), 1, sym_comment, - ACTIONS(8456), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [262498] = 8, + ACTIONS(13777), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3693), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [262396] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8454), 1, - anon_sym_DQUOTE, - ACTIONS(14036), 1, - sym_cmd_identifier, - STATE(2627), 1, - sym__str_double_quotes, - STATE(2633), 1, - sym_val_string, - STATE(2759), 1, - sym__command_name, - STATE(8375), 1, + ACTIONS(3699), 1, + anon_sym_DASH, + ACTIONS(13779), 1, + anon_sym_DOT_DOT2, + STATE(7963), 1, sym_comment, - ACTIONS(8456), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [262524] = 4, + ACTIONS(13781), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3701), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [262418] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(8376), 1, - sym_comment, - ACTIONS(2437), 3, + ACTIONS(3711), 1, + anon_sym_DASH, + ACTIONS(13783), 1, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(2439), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, + STATE(7964), 1, + sym_comment, + ACTIONS(13785), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [262542] = 4, + ACTIONS(3713), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [262440] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(8377), 1, - sym_comment, - ACTIONS(2547), 3, + ACTIONS(3356), 1, + anon_sym_in, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(13787), 1, anon_sym_DOT_DOT2, + STATE(7965), 1, + sym_comment, + ACTIONS(3362), 2, anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(2549), 4, - anon_sym_LBRACE, - anon_sym_LPAREN2, + ACTIONS(13789), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [262560] = 5, - ACTIONS(3), 1, + [262464] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14340), 1, - anon_sym_COLON, - ACTIONS(14342), 1, - anon_sym_COMMA, - STATE(8378), 1, + ACTIONS(5115), 1, + anon_sym_LF, + STATE(7966), 1, sym_comment, - ACTIONS(14338), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [262580] = 4, + ACTIONS(5113), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [262482] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(8379), 1, - sym_comment, - ACTIONS(2547), 3, + ACTIONS(3354), 1, + sym_identifier, + ACTIONS(3356), 1, + anon_sym_DOLLAR, + ACTIONS(13791), 1, anon_sym_DOT_DOT2, + STATE(7967), 1, + sym_comment, + ACTIONS(3362), 2, anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(2549), 4, - anon_sym_in, - anon_sym_LPAREN2, + ACTIONS(13793), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [262598] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14346), 1, - anon_sym_COLON, - ACTIONS(14348), 1, - anon_sym_COMMA, - STATE(8380), 1, - sym_comment, - ACTIONS(14344), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [262618] = 9, + [262506] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6247), 1, + ACTIONS(5725), 1, anon_sym_DOLLAR, - ACTIONS(12574), 1, + ACTIONS(12254), 1, sym_identifier, - STATE(3033), 1, + STATE(2534), 1, sym__assignment_pattern, - STATE(7440), 1, + STATE(7000), 1, sym__var, - STATE(8381), 1, + STATE(7968), 1, sym_comment, - STATE(8921), 1, + STATE(8718), 1, sym_val_variable, - STATE(10208), 1, - sym__assignment_pattern_last, - STATE(10215), 1, + STATE(9747), 1, sym__variable_name, - [262646] = 4, - ACTIONS(3), 1, + STATE(9844), 1, + sym__assignment_pattern_last, + [262534] = 6, + ACTIONS(113), 1, anon_sym_POUND, - STATE(8382), 1, - sym_comment, - ACTIONS(2547), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, + ACTIONS(13795), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13797), 1, aux_sym_unquoted_token2, - ACTIONS(2549), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [262664] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8454), 1, - anon_sym_DQUOTE, - ACTIONS(14036), 1, - sym_cmd_identifier, - STATE(2627), 1, - sym__str_double_quotes, - STATE(2633), 1, - sym_val_string, - STATE(2784), 1, - sym__command_name, - STATE(8383), 1, + STATE(7969), 1, sym_comment, - ACTIONS(8456), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [262690] = 4, + ACTIONS(920), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(922), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LPAREN2, + [262556] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3876), 1, + ACTIONS(5139), 1, anon_sym_LF, - STATE(8384), 1, + STATE(7970), 1, sym_comment, - ACTIONS(3874), 6, + ACTIONS(5137), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [262708] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - ACTIONS(4631), 1, - anon_sym_LPAREN2, - STATE(8385), 1, - sym_comment, - ACTIONS(1253), 2, - sym_cmd_identifier, - anon_sym_DASH_DASH, - ACTIONS(1255), 3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [262730] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(8386), 1, - sym_comment, - ACTIONS(3505), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(3507), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [262748] = 6, + [262574] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1257), 1, + ACTIONS(1163), 1, aux_sym_unquoted_token6, - ACTIONS(4631), 1, - anon_sym_LPAREN2, - STATE(8387), 1, - sym_comment, - ACTIONS(1273), 2, - sym_cmd_identifier, - anon_sym_DASH_DASH, - ACTIONS(1275), 3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [262770] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(936), 1, - anon_sym_DASH, - ACTIONS(14350), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14352), 1, - aux_sym_unquoted_token2, - STATE(8388), 1, - sym_comment, - ACTIONS(938), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + ACTIONS(3727), 1, anon_sym_LPAREN2, - [262792] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1290), 1, + ACTIONS(4646), 1, + ts_builtin_sym_end, + ACTIONS(13799), 1, aux_sym_command_token1, - ACTIONS(10357), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(8389), 1, + STATE(7971), 1, sym_comment, - ACTIONS(1243), 5, + ACTIONS(3725), 3, anon_sym_SEMI, anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [262812] = 8, + [262598] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12366), 1, - anon_sym_DOLLAR, - ACTIONS(12368), 1, - anon_sym_LBRACE, - STATE(4715), 1, - sym__var, - STATE(5294), 1, - sym_block, - STATE(5296), 1, - sym_val_closure, - STATE(8390), 1, + ACTIONS(13801), 1, + anon_sym_DOT, + ACTIONS(13804), 1, + aux_sym__immediate_decimal_token2, + STATE(7972), 1, sym_comment, - STATE(2437), 2, - sym__blosure, - sym_val_variable, - [262838] = 7, + ACTIONS(2358), 2, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + ACTIONS(2356), 3, + sym_identifier, + anon_sym_DASH, + aux_sym_unquoted_token2, + [262620] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1154), 1, - anon_sym_DASH, - ACTIONS(14238), 1, - anon_sym_DOT, - STATE(8330), 1, - sym_path, - STATE(8391), 1, + ACTIONS(13804), 1, + aux_sym__immediate_decimal_token2, + STATE(7973), 1, sym_comment, - STATE(9720), 1, - sym_cell_path, - ACTIONS(1156), 3, + ACTIONS(2356), 3, sym_identifier, - anon_sym_DOLLAR, + anon_sym_DASH, + aux_sym_unquoted_token2, + ACTIONS(2358), 3, anon_sym_DASH_DASH, - [262862] = 7, + anon_sym_LPAREN2, + anon_sym_DOT, + [262640] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(3757), 1, anon_sym_DASH, - ACTIONS(14238), 1, - anon_sym_DOT, - STATE(8330), 1, - sym_path, - STATE(8392), 1, + ACTIONS(10136), 1, + anon_sym_DOT_DOT2, + STATE(7974), 1, sym_comment, - STATE(10049), 1, - sym_cell_path, - ACTIONS(1181), 3, + ACTIONS(10138), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3759), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [262886] = 9, + [262662] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12574), 1, - sym_identifier, - STATE(3063), 1, - sym__assignment_pattern, - STATE(7440), 1, - sym__var, - STATE(8393), 1, + STATE(7975), 1, sym_comment, - STATE(8921), 1, - sym_val_variable, - STATE(10215), 1, - sym__variable_name, - STATE(10290), 1, - sym__assignment_pattern_last, - [262914] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3518), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_DOLLAR, - ACTIONS(14354), 1, + ACTIONS(2402), 3, anon_sym_DOT_DOT2, - STATE(8394), 1, - sym_comment, - ACTIONS(1934), 2, anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(14356), 2, + ACTIONS(2404), 4, + anon_sym_LBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [262938] = 7, + [262680] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1203), 1, + ACTIONS(13535), 1, + aux_sym__immediate_decimal_token2, + STATE(7976), 1, + sym_comment, + ACTIONS(2229), 3, + sym_identifier, anon_sym_DASH, - ACTIONS(14238), 1, + aux_sym_unquoted_token2, + ACTIONS(2231), 3, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, anon_sym_DOT, - STATE(8330), 1, + [262700] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1057), 1, + anon_sym_DASH, + ACTIONS(13698), 1, + anon_sym_DOT, + STATE(7919), 1, sym_path, - STATE(8395), 1, + STATE(7977), 1, sym_comment, - STATE(9496), 1, + STATE(9255), 1, sym_cell_path, - ACTIONS(1205), 3, + ACTIONS(1059), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [262962] = 6, + [262724] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(13169), 1, - anon_sym_DOT, - STATE(8396), 1, + ACTIONS(8643), 1, + aux_sym_unquoted_token5, + STATE(7978), 1, sym_comment, - ACTIONS(2845), 2, + ACTIONS(940), 2, ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(2843), 3, - anon_sym_SEMI, anon_sym_LF, + ACTIONS(938), 4, + anon_sym_SEMI, anon_sym_PIPE, - [262984] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(3748), 1, - anon_sym_DASH, - ACTIONS(13169), 1, - anon_sym_DOT, - ACTIONS(14131), 1, - aux_sym__immediate_decimal_token1, - STATE(8397), 1, - sym_comment, - ACTIONS(3750), 3, - anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [263008] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3984), 1, - anon_sym_COLON, - ACTIONS(14358), 1, - anon_sym_alias, - ACTIONS(14360), 1, - anon_sym_const, - ACTIONS(14362), 1, - anon_sym_def, - ACTIONS(14364), 1, - anon_sym_extern, - ACTIONS(14366), 1, - anon_sym_module, - ACTIONS(14368), 1, - anon_sym_use, - STATE(8398), 1, - sym_comment, - [263036] = 4, + anon_sym_DASH, + [262744] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(8399), 1, + ACTIONS(13806), 1, + aux_sym__immediate_decimal_token2, + STATE(7979), 1, sym_comment, - ACTIONS(3505), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, + ACTIONS(2362), 3, + sym_identifier, + anon_sym_DASH, aux_sym_unquoted_token2, - ACTIONS(3507), 4, - anon_sym_in, + ACTIONS(2364), 3, + anon_sym_DASH_DASH, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [263054] = 5, + anon_sym_DOT, + [262764] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9162), 1, + ACTIONS(940), 1, + aux_sym_command_token1, + ACTIONS(8548), 1, aux_sym_unquoted_token5, - STATE(8400), 1, + STATE(7980), 1, sym_comment, - ACTIONS(961), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(959), 4, + ACTIONS(938), 5, anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [263074] = 9, + anon_sym_LF2, + [262784] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12574), 1, - sym_identifier, - STATE(2953), 1, - sym__assignment_pattern, - STATE(7440), 1, - sym__var, - STATE(8401), 1, + ACTIONS(2838), 1, + anon_sym_DQUOTE, + ACTIONS(12164), 1, + sym_cmd_identifier, + STATE(6592), 1, + sym__str_double_quotes, + STATE(7567), 1, + sym_val_string, + STATE(7981), 1, sym_comment, - STATE(8921), 1, - sym_val_variable, - STATE(10215), 1, - sym__variable_name, - STATE(10401), 1, - sym__assignment_pattern_last, - [263102] = 6, + STATE(10314), 1, + sym__command_name, + ACTIONS(2840), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [262810] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3741), 1, + anon_sym_DASH, + ACTIONS(13808), 1, + anon_sym_DOT_DOT2, + STATE(7982), 1, + sym_comment, + ACTIONS(13810), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3743), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [262832] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, + ACTIONS(2187), 1, anon_sym_LPAREN2, - STATE(8402), 1, + STATE(7983), 1, sym_comment, - STATE(11424), 1, + STATE(10011), 1, sym__expr_parenthesized_immediate, - ACTIONS(4531), 2, + ACTIONS(4198), 2, ts_builtin_sym_end, aux_sym_command_token1, - ACTIONS(4529), 3, + ACTIONS(4196), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_PIPE, - [263124] = 4, + [262854] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5189), 1, - anon_sym_LF, - STATE(8403), 1, + ACTIONS(13812), 1, + sym_long_flag_identifier, + STATE(7984), 1, sym_comment, - ACTIONS(5187), 6, + ACTIONS(4738), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4734), 4, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, + [262874] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(13652), 1, + aux_sym_command_token1, + STATE(7985), 1, + sym_comment, + STATE(8003), 1, + aux_sym_command_repeat1, + ACTIONS(13771), 5, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_RBRACE, - [263142] = 7, + [262894] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - ACTIONS(3874), 1, - anon_sym_DASH, - ACTIONS(3878), 1, - anon_sym_LPAREN2, - ACTIONS(13456), 1, - anon_sym_DOT, - STATE(8404), 1, + ACTIONS(8135), 1, + anon_sym_DQUOTE, + ACTIONS(13740), 1, + sym_cmd_identifier, + STATE(2276), 1, + sym__command_name, + STATE(2294), 1, + sym__str_double_quotes, + STATE(2364), 1, + sym_val_string, + STATE(7986), 1, sym_comment, - ACTIONS(3876), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [263166] = 4, + ACTIONS(8137), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [262920] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5193), 1, + ACTIONS(4198), 1, anon_sym_LF, - STATE(8405), 1, + STATE(7987), 1, sym_comment, - ACTIONS(5191), 6, + ACTIONS(4196), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [263184] = 6, - ACTIONS(113), 1, + [262938] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - STATE(8406), 1, + ACTIONS(8135), 1, + anon_sym_DQUOTE, + ACTIONS(13740), 1, + sym_cmd_identifier, + STATE(2294), 1, + sym__str_double_quotes, + STATE(2364), 1, + sym_val_string, + STATE(2426), 1, + sym__command_name, + STATE(7988), 1, sym_comment, - STATE(11424), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4535), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(4533), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - [263206] = 5, + ACTIONS(8137), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [262964] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1290), 1, - aux_sym_command_token1, - ACTIONS(10290), 1, + ACTIONS(9919), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(8407), 1, + STATE(7989), 1, sym_comment, - ACTIONS(1243), 5, + ACTIONS(1139), 3, anon_sym_SEMI, anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_LF2, - [263226] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(3522), 1, - anon_sym_LPAREN2, - ACTIONS(13319), 1, - anon_sym_DOT, - STATE(8408), 1, - sym_comment, - ACTIONS(3518), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3520), 2, - ts_builtin_sym_end, - anon_sym_LF, - [263250] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(10220), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14370), 1, - aux_sym_unquoted_token2, - STATE(8409), 1, - sym_comment, - ACTIONS(938), 2, + ACTIONS(1209), 3, ts_builtin_sym_end, + anon_sym_LPAREN2, aux_sym_command_token1, - ACTIONS(936), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - [263272] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12217), 1, - anon_sym_DOT, - STATE(5397), 1, - sym_cell_path, - STATE(7027), 1, - sym_path, - STATE(8410), 1, - sym_comment, - ACTIONS(1156), 4, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOLLAR, - anon_sym_LBRACE, - [263294] = 6, + [262984] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14372), 1, - anon_sym_DOT, - ACTIONS(14375), 1, + ACTIONS(2356), 1, + sym_cmd_identifier, + ACTIONS(12933), 1, aux_sym__immediate_decimal_token2, - STATE(8411), 1, + ACTIONS(13814), 1, + anon_sym_DOT, + STATE(7990), 1, sym_comment, - ACTIONS(2583), 2, + ACTIONS(2358), 4, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - ACTIONS(2581), 3, - sym_identifier, - anon_sym_DASH, - aux_sym_unquoted_token2, - [263316] = 6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [263006] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4016), 1, - anon_sym_DASH, - ACTIONS(10496), 1, - anon_sym_DOT_DOT2, - STATE(8412), 1, + ACTIONS(8135), 1, + anon_sym_DQUOTE, + ACTIONS(13740), 1, + sym_cmd_identifier, + STATE(2294), 1, + sym__str_double_quotes, + STATE(2364), 1, + sym_val_string, + STATE(2427), 1, + sym__command_name, + STATE(7991), 1, sym_comment, - ACTIONS(10498), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(4018), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [263338] = 6, - ACTIONS(3), 1, + ACTIONS(8137), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [263032] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3949), 1, - anon_sym_DASH, - ACTIONS(14377), 1, - anon_sym_DOT_DOT2, - STATE(8413), 1, + ACTIONS(4725), 1, + aux_sym_command_token1, + ACTIONS(13816), 1, + anon_sym_EQ, + STATE(7992), 1, sym_comment, - ACTIONS(14379), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3951), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [263360] = 6, - ACTIONS(3), 1, + ACTIONS(4721), 5, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [263052] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3964), 1, - anon_sym_DASH, - ACTIONS(14381), 1, - anon_sym_DOT_DOT2, - STATE(8414), 1, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(3314), 1, + anon_sym_LF, + ACTIONS(12748), 1, + anon_sym_DOT, + STATE(7993), 1, sym_comment, - ACTIONS(14383), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3966), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [263382] = 6, + ACTIONS(3312), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [263074] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4043), 1, - anon_sym_DASH, - ACTIONS(14385), 1, + ACTIONS(13818), 1, anon_sym_DOT_DOT2, - STATE(8415), 1, + STATE(7994), 1, sym_comment, - ACTIONS(14387), 2, + ACTIONS(1844), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(3314), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(13820), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(4045), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [263404] = 6, + [263096] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - ACTIONS(4037), 1, - anon_sym_LPAREN2, - ACTIONS(14389), 1, - aux_sym_command_token1, - STATE(8416), 1, - sym_comment, - ACTIONS(4035), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - [263426] = 4, + STATE(7995), 1, + sym_comment, + ACTIONS(2229), 3, + anon_sym_SEMI, + anon_sym_PIPE, + aux_sym_unquoted_token2, + ACTIONS(2231), 4, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LPAREN2, + anon_sym_DOT, + [263114] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5201), 1, - anon_sym_LF, - STATE(8417), 1, + ACTIONS(13824), 1, + aux_sym_command_token1, + ACTIONS(13827), 1, + anon_sym_LF2, + STATE(7996), 2, sym_comment, - ACTIONS(5199), 6, + aux_sym__command_parenthesized_body_repeat1, + ACTIONS(13822), 4, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [263444] = 4, + [263134] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5205), 1, + STATE(7997), 1, + sym_comment, + ACTIONS(2362), 3, + anon_sym_SEMI, + anon_sym_PIPE, + aux_sym_unquoted_token2, + ACTIONS(2364), 4, + ts_builtin_sym_end, anon_sym_LF, - STATE(8418), 1, + anon_sym_LPAREN2, + anon_sym_DOT, + [263152] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(7998), 1, sym_comment, - ACTIONS(5203), 6, + ACTIONS(2402), 3, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [263462] = 4, + aux_sym_unquoted_token2, + ACTIONS(2404), 4, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LPAREN2, + anon_sym_DOT, + [263170] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5209), 1, + ACTIONS(13704), 1, + aux_sym_command_token1, + ACTIONS(13706), 1, + anon_sym_LF2, + ACTIONS(13832), 1, anon_sym_LF, - STATE(8419), 1, + STATE(7996), 1, + aux_sym__command_parenthesized_body_repeat1, + STATE(7999), 1, sym_comment, - ACTIONS(5207), 6, + ACTIONS(13830), 3, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [263480] = 4, + [263194] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5213), 1, + ACTIONS(1074), 1, anon_sym_LF, - STATE(8420), 1, + STATE(8000), 1, sym_comment, - ACTIONS(5211), 6, + ACTIONS(1072), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [263498] = 5, + [263212] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5015), 1, - aux_sym_command_token1, - ACTIONS(14391), 1, - anon_sym_EQ, - STATE(8421), 1, + ACTIONS(1209), 1, + anon_sym_LPAREN2, + ACTIONS(13834), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(8001), 1, sym_comment, - ACTIONS(5011), 5, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_LF2, - [263518] = 7, + ACTIONS(1139), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [263232] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2838), 1, + anon_sym_DQUOTE, + ACTIONS(12164), 1, + sym_cmd_identifier, + STATE(6592), 1, + sym__str_double_quotes, + STATE(7567), 1, + sym_val_string, + STATE(8002), 1, + sym_comment, + STATE(10416), 1, + sym__command_name, + ACTIONS(2840), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [263258] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14202), 1, + ACTIONS(13652), 1, aux_sym_command_token1, - ACTIONS(14204), 1, - anon_sym_LF2, - ACTIONS(14395), 1, - anon_sym_LF, - STATE(8257), 1, - aux_sym__command_parenthesized_body_repeat1, - STATE(8422), 1, + STATE(8003), 1, sym_comment, - ACTIONS(14393), 3, + STATE(8059), 1, + aux_sym_command_repeat1, + ACTIONS(13836), 5, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - [263542] = 8, + anon_sym_RBRACE, + [263278] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2724), 1, + ACTIONS(2838), 1, anon_sym_DQUOTE, - ACTIONS(12867), 1, + ACTIONS(12164), 1, sym_cmd_identifier, - STATE(7019), 1, + STATE(6592), 1, sym__str_double_quotes, - STATE(7900), 1, + STATE(7567), 1, sym_val_string, - STATE(8423), 1, + STATE(8004), 1, sym_comment, - STATE(10942), 1, + STATE(10504), 1, sym__command_name, - ACTIONS(2726), 2, + ACTIONS(2840), 2, sym__str_single_quotes, sym__str_back_ticks, - [263568] = 8, + [263304] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2724), 1, + ACTIONS(2838), 1, anon_sym_DQUOTE, - ACTIONS(12867), 1, + ACTIONS(12164), 1, sym_cmd_identifier, - STATE(7019), 1, + STATE(6592), 1, sym__str_double_quotes, - STATE(7900), 1, + STATE(7567), 1, sym_val_string, - STATE(8424), 1, + STATE(8005), 1, sym_comment, - STATE(9561), 1, + STATE(9635), 1, sym__command_name, - ACTIONS(2726), 2, + ACTIONS(2840), 2, sym__str_single_quotes, sym__str_back_ticks, - [263594] = 8, + [263330] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2724), 1, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(3576), 1, + anon_sym_DASH_DASH, + ACTIONS(12513), 1, + anon_sym_DOT, + ACTIONS(13838), 1, + aux_sym__immediate_decimal_token1, + STATE(8006), 1, + sym_comment, + ACTIONS(3574), 2, + sym_identifier, + anon_sym_DASH, + [263356] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2838), 1, anon_sym_DQUOTE, - ACTIONS(12867), 1, + ACTIONS(12164), 1, sym_cmd_identifier, - STATE(7019), 1, + STATE(6592), 1, sym__str_double_quotes, - STATE(7900), 1, + STATE(7567), 1, sym_val_string, - STATE(8425), 1, + STATE(8007), 1, sym_comment, - STATE(11232), 1, + STATE(10620), 1, sym__command_name, - ACTIONS(2726), 2, + ACTIONS(2840), 2, sym__str_single_quotes, sym__str_back_ticks, - [263620] = 8, + [263382] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2724), 1, + ACTIONS(2838), 1, anon_sym_DQUOTE, - ACTIONS(12867), 1, + ACTIONS(12164), 1, sym_cmd_identifier, - STATE(7019), 1, + STATE(6592), 1, sym__str_double_quotes, - STATE(7900), 1, + STATE(7567), 1, sym_val_string, - STATE(8426), 1, + STATE(8008), 1, sym_comment, - STATE(9578), 1, + STATE(9674), 1, sym__command_name, - ACTIONS(2726), 2, + ACTIONS(2840), 2, sym__str_single_quotes, sym__str_back_ticks, - [263646] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(14292), 1, - aux_sym_command_token1, - STATE(8317), 1, - aux_sym_command_repeat1, - STATE(8427), 1, - sym_comment, - ACTIONS(14397), 5, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [263666] = 7, + [263408] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(979), 1, + ACTIONS(961), 1, anon_sym_DOT_DOT2, - ACTIONS(3588), 1, + ACTIONS(3308), 1, aux_sym_unquoted_token5, - ACTIONS(9273), 1, + ACTIONS(8699), 1, anon_sym_DOT, - STATE(8428), 1, + STATE(8009), 1, sym_comment, - ACTIONS(983), 2, + ACTIONS(965), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(14192), 2, + ACTIONS(13840), 2, sym_filesize_unit, sym_duration_unit, - [263690] = 9, + [263432] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3880), 1, + ACTIONS(3707), 1, anon_sym_COLON, - ACTIONS(14358), 1, + ACTIONS(13636), 1, anon_sym_alias, - ACTIONS(14360), 1, + ACTIONS(13638), 1, anon_sym_const, - ACTIONS(14362), 1, + ACTIONS(13640), 1, anon_sym_def, - ACTIONS(14364), 1, + ACTIONS(13642), 1, anon_sym_extern, - ACTIONS(14366), 1, + ACTIONS(13644), 1, anon_sym_module, - ACTIONS(14368), 1, + ACTIONS(13646), 1, anon_sym_use, - STATE(8429), 1, + STATE(8010), 1, sym_comment, - [263718] = 6, - ACTIONS(113), 1, + [263460] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1249), 1, - anon_sym_LF, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - ACTIONS(4037), 1, + STATE(8011), 1, + sym_comment, + ACTIONS(2362), 3, + anon_sym_DOT_DOT2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(2364), 4, + anon_sym_LBRACE, anon_sym_LPAREN2, - STATE(8430), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [263478] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(8012), 1, sym_comment, - ACTIONS(1247), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [263740] = 6, + ACTIONS(1061), 2, + anon_sym_DASH, + anon_sym_DOT_DOT2, + ACTIONS(1063), 5, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [263496] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3916), 1, + ACTIONS(3709), 1, anon_sym_COLON, - ACTIONS(14292), 1, + ACTIONS(13652), 1, aux_sym_command_token1, - STATE(8317), 1, + STATE(8003), 1, aux_sym_command_repeat1, - STATE(8431), 1, + STATE(8013), 1, sym_comment, - ACTIONS(14397), 4, + ACTIONS(13771), 4, anon_sym_SEMI, anon_sym_LF, anon_sym_PIPE, anon_sym_RBRACE, - [263762] = 5, + [263518] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(961), 1, - aux_sym_command_token1, - ACTIONS(9001), 1, - aux_sym_unquoted_token5, - STATE(8432), 1, + ACTIONS(3356), 1, + anon_sym_LF, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(12513), 1, + anon_sym_DOT, + STATE(8014), 1, sym_comment, - ACTIONS(959), 5, + ACTIONS(3354), 4, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_LF2, - [263782] = 6, + anon_sym_RBRACE, + [263540] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2581), 1, - sym_cmd_identifier, - ACTIONS(13679), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(14399), 1, - anon_sym_DOT, - STATE(8433), 1, + ACTIONS(920), 1, + anon_sym_DASH, + ACTIONS(13842), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13844), 1, + aux_sym_unquoted_token2, + STATE(8015), 1, sym_comment, - ACTIONS(2583), 4, + ACTIONS(922), 4, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [263804] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(10099), 1, - anon_sym_DOT, - STATE(4383), 1, - sym_cell_path, - STATE(5630), 1, - sym_path, - STATE(8434), 1, - sym_comment, - ACTIONS(1010), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(1012), 2, - ts_builtin_sym_end, - anon_sym_LF, - [263828] = 6, + anon_sym_LBRACE, + anon_sym_LPAREN2, + [263562] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2006), 1, + ACTIONS(3362), 1, aux_sym_unquoted_token2, - ACTIONS(3874), 1, - sym_cmd_identifier, - ACTIONS(13456), 1, + ACTIONS(3574), 1, + anon_sym_DASH, + ACTIONS(12513), 1, anon_sym_DOT, - STATE(8435), 1, + ACTIONS(13409), 1, + aux_sym__immediate_decimal_token1, + STATE(8016), 1, sym_comment, - ACTIONS(3876), 4, + ACTIONS(3576), 3, + anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_LBRACE, + [263586] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2838), 1, anon_sym_DQUOTE, + ACTIONS(12164), 1, + sym_cmd_identifier, + STATE(6592), 1, + sym__str_double_quotes, + STATE(7567), 1, + sym_val_string, + STATE(8017), 1, + sym_comment, + STATE(10849), 1, + sym__command_name, + ACTIONS(2840), 2, sym__str_single_quotes, sym__str_back_ticks, - [263850] = 8, - ACTIONS(3), 1, + [263612] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3365), 1, - anon_sym_DASH_DASH, - ACTIONS(3367), 1, - anon_sym_DASH, - ACTIONS(14401), 1, - anon_sym_in, - STATE(8436), 1, + ACTIONS(6041), 1, + anon_sym_LF, + STATE(8018), 1, sym_comment, - STATE(11044), 1, - sym_long_flag_equals_value, - STATE(11182), 1, - sym__flag, - STATE(10775), 2, - sym_short_flag, - sym_long_flag, - [263876] = 7, + ACTIONS(6039), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_else, + anon_sym_RBRACE, + anon_sym_catch, + [263630] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1154), 1, + ACTIONS(1051), 1, anon_sym_DASH, - ACTIONS(12217), 1, + ACTIONS(13698), 1, anon_sym_DOT, - STATE(6463), 1, - sym_cell_path, - STATE(7027), 1, + STATE(7919), 1, sym_path, - STATE(8437), 1, + STATE(8019), 1, sym_comment, - ACTIONS(1156), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [263900] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1190), 1, - anon_sym_DASH, - ACTIONS(12217), 1, - anon_sym_DOT, - STATE(6459), 1, + STATE(9665), 1, sym_cell_path, - STATE(7027), 1, - sym_path, - STATE(8438), 1, - sym_comment, - ACTIONS(1192), 3, + ACTIONS(1053), 3, + sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [263924] = 7, + [263654] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1148), 1, - anon_sym_DASH, - ACTIONS(12217), 1, - anon_sym_DOT, - STATE(6517), 1, - sym_cell_path, - STATE(7027), 1, - sym_path, - STATE(8439), 1, + ACTIONS(13846), 1, + anon_sym_DOT_DOT2, + STATE(8020), 1, sym_comment, - ACTIONS(1150), 3, + ACTIONS(1844), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(3314), 2, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, - [263948] = 7, + ACTIONS(13848), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [263676] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(3152), 1, + anon_sym_DASH_DASH, + ACTIONS(3154), 1, anon_sym_DASH, - ACTIONS(12217), 1, - anon_sym_DOT, - STATE(6582), 1, - sym_cell_path, - STATE(7027), 1, - sym_path, - STATE(8440), 1, + ACTIONS(13850), 1, + anon_sym_in, + STATE(8021), 1, sym_comment, - ACTIONS(1181), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [263972] = 6, + STATE(10488), 1, + sym__flag, + STATE(10628), 1, + sym_long_flag_equals_value, + STATE(10275), 2, + sym_short_flag, + sym_long_flag, + [263702] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9107), 1, - anon_sym_DOT_DOT2, - STATE(8441), 1, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(3316), 1, + anon_sym_LPAREN2, + ACTIONS(12748), 1, + anon_sym_DOT, + STATE(8022), 1, sym_comment, - ACTIONS(4016), 2, + ACTIONS(3312), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4018), 2, + ACTIONS(3314), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(9109), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [263994] = 6, + [263726] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14403), 1, + ACTIONS(5153), 1, + anon_sym_LF, + STATE(8023), 1, + sym_comment, + ACTIONS(5151), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [263744] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(13852), 1, aux_sym__immediate_decimal_token1, - ACTIONS(14405), 1, + ACTIONS(13854), 1, aux_sym__immediate_decimal_token2, - STATE(8442), 1, + STATE(8024), 1, sym_comment, - ACTIONS(2437), 2, + ACTIONS(2229), 2, anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(2439), 3, + aux_sym_unquoted_token2, + ACTIONS(2231), 3, anon_sym_LPAREN2, anon_sym_DOT, sym__entry_separator, - [264016] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(936), 1, - sym_cmd_identifier, - ACTIONS(10332), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14407), 1, - aux_sym_unquoted_token2, - STATE(8443), 1, - sym_comment, - ACTIONS(938), 4, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [264038] = 7, - ACTIONS(3), 1, + [263766] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1203), 1, - anon_sym_DASH, - ACTIONS(12217), 1, - anon_sym_DOT, - STATE(6446), 1, - sym_cell_path, - STATE(7027), 1, - sym_path, - STATE(8444), 1, + ACTIONS(3773), 1, + anon_sym_LF, + STATE(8025), 1, sym_comment, - ACTIONS(1205), 3, - anon_sym_DOLLAR, + ACTIONS(3771), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [264062] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1186), 1, anon_sym_DASH, - ACTIONS(12217), 1, - anon_sym_DOT, - STATE(6465), 1, - sym_cell_path, - STATE(7027), 1, - sym_path, - STATE(8445), 1, - sym_comment, - ACTIONS(1188), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [264086] = 5, + anon_sym_RBRACE, + [263784] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5085), 1, - aux_sym_command_token1, - ACTIONS(13265), 1, - aux_sym__immediate_decimal_token1, - STATE(8446), 1, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(3773), 1, + anon_sym_LF, + ACTIONS(13087), 1, + anon_sym_DOT, + STATE(8026), 1, sym_comment, - ACTIONS(5083), 5, + ACTIONS(3771), 4, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_LF2, - [264106] = 4, + anon_sym_RBRACE, + [263806] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2845), 1, + ACTIONS(5111), 1, anon_sym_LF, - STATE(8447), 1, + STATE(8027), 1, sym_comment, - ACTIONS(2843), 6, + ACTIONS(5109), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [264124] = 8, - ACTIONS(3), 1, + [263824] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8615), 1, - anon_sym_DQUOTE, - ACTIONS(14222), 1, - sym_cmd_identifier, - STATE(2770), 1, - sym__command_name, - STATE(2793), 1, - sym__str_double_quotes, - STATE(2800), 1, - sym_val_string, - STATE(8448), 1, + ACTIONS(3646), 1, + anon_sym_LF, + ACTIONS(3650), 1, + aux_sym_unquoted_token2, + ACTIONS(13004), 1, + anon_sym_DOT, + STATE(8028), 1, sym_comment, - ACTIONS(8617), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [264150] = 8, + ACTIONS(3644), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [263846] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2724), 1, - anon_sym_DQUOTE, - ACTIONS(12867), 1, - sym_cmd_identifier, - STATE(7019), 1, - sym__str_double_quotes, - STATE(7900), 1, - sym_val_string, - STATE(8449), 1, + STATE(8029), 1, sym_comment, - STATE(9473), 1, - sym__command_name, - ACTIONS(2726), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [264176] = 8, + ACTIONS(2229), 2, + anon_sym_DASH, + anon_sym_DOT_DOT2, + ACTIONS(2231), 5, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [263864] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14409), 1, - sym_cmd_identifier, - ACTIONS(14411), 1, - anon_sym_DQUOTE, - STATE(6969), 1, - sym__str_double_quotes, - STATE(7705), 1, - sym_val_string, - STATE(7789), 1, - sym__command_name, - STATE(8450), 1, + STATE(8030), 1, sym_comment, - ACTIONS(2893), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [264202] = 4, + ACTIONS(2362), 2, + anon_sym_DASH, + anon_sym_DOT_DOT2, + ACTIONS(2364), 5, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [263882] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3520), 1, - anon_sym_LF, - STATE(8451), 1, + ACTIONS(4738), 1, + aux_sym_command_token1, + ACTIONS(13856), 1, + sym_long_flag_identifier, + STATE(8031), 1, sym_comment, - ACTIONS(3518), 6, + ACTIONS(4734), 5, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_RBRACE, - [264220] = 4, + [263902] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(8452), 1, + STATE(8032), 1, sym_comment, - ACTIONS(4000), 2, + ACTIONS(2402), 2, anon_sym_DASH, anon_sym_DOT_DOT2, - ACTIONS(4002), 5, + ACTIONS(2404), 5, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [264238] = 7, + [263920] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(4738), 1, + aux_sym_command_token1, + ACTIONS(13858), 1, + sym_long_flag_identifier, + STATE(8033), 1, + sym_comment, + ACTIONS(4734), 5, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_LF2, + [263940] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1186), 1, + ACTIONS(1085), 1, anon_sym_DASH, - ACTIONS(14238), 1, + ACTIONS(13698), 1, anon_sym_DOT, - STATE(8330), 1, + STATE(7919), 1, sym_path, - STATE(8453), 1, + STATE(8034), 1, sym_comment, - STATE(9541), 1, + STATE(9666), 1, sym_cell_path, - ACTIONS(1188), 3, + ACTIONS(1087), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [264262] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(4020), 1, - anon_sym_COLON, - ACTIONS(14292), 1, - aux_sym_command_token1, - STATE(8317), 1, - aux_sym_command_repeat1, - STATE(8454), 1, - sym_comment, - ACTIONS(14397), 4, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - anon_sym_RBRACE, - [264284] = 6, + [263964] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4016), 1, + ACTIONS(1089), 1, anon_sym_DASH, - ACTIONS(10610), 1, + ACTIONS(10136), 1, anon_sym_DOT_DOT2, - STATE(8455), 1, + STATE(8035), 1, sym_comment, - ACTIONS(10612), 2, + ACTIONS(10138), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(4018), 3, + ACTIONS(1091), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [264306] = 4, + [263986] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(8456), 1, - sym_comment, - ACTIONS(2437), 3, - anon_sym_SEMI, - anon_sym_PIPE, - aux_sym_unquoted_token2, - ACTIONS(2439), 4, - ts_builtin_sym_end, + ACTIONS(1091), 1, anon_sym_LF, + ACTIONS(1149), 1, + aux_sym_unquoted_token6, + ACTIONS(3783), 1, anon_sym_LPAREN2, - anon_sym_DOT, - [264324] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2724), 1, - anon_sym_DQUOTE, - ACTIONS(12867), 1, - sym_cmd_identifier, - STATE(7019), 1, - sym__str_double_quotes, - STATE(7900), 1, - sym_val_string, - STATE(8457), 1, + STATE(8036), 1, sym_comment, - STATE(11253), 1, - sym__command_name, - ACTIONS(2726), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [264350] = 7, + ACTIONS(1089), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [264008] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2845), 1, - anon_sym_in, - ACTIONS(2847), 1, - anon_sym_LPAREN2, - ACTIONS(14413), 1, + ACTIONS(13860), 1, anon_sym_DOT_DOT2, - STATE(8458), 1, + STATE(8037), 1, sym_comment, - ACTIONS(2851), 2, + ACTIONS(3356), 2, + anon_sym_DOLLAR, + anon_sym_LBRACE, + ACTIONS(3362), 2, anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(14415), 2, + ACTIONS(13862), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [264374] = 4, + [264030] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5197), 1, + ACTIONS(3314), 1, anon_sym_LF, - STATE(8459), 1, + STATE(8038), 1, sym_comment, - ACTIONS(5195), 6, + ACTIONS(3312), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [264392] = 6, + [264048] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2437), 1, + ACTIONS(2229), 1, aux_sym_unquoted_token2, - ACTIONS(14417), 1, + ACTIONS(13864), 1, aux_sym__immediate_decimal_token1, - ACTIONS(14419), 1, + ACTIONS(13866), 1, aux_sym__immediate_decimal_token2, - STATE(8460), 1, + STATE(8039), 1, sym_comment, - ACTIONS(2439), 4, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT, - [264414] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(2397), 1, + ACTIONS(2231), 4, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_LPAREN2, - STATE(8461), 1, - sym_comment, - STATE(10458), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4293), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(4291), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - [264436] = 8, + anon_sym_DOT, + [264070] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2724), 1, + ACTIONS(2838), 1, anon_sym_DQUOTE, - ACTIONS(12867), 1, + ACTIONS(12164), 1, sym_cmd_identifier, - STATE(7019), 1, + STATE(6592), 1, sym__str_double_quotes, - STATE(7789), 1, - sym__command_name, - STATE(7900), 1, + STATE(7567), 1, sym_val_string, - STATE(8462), 1, + STATE(8040), 1, sym_comment, - ACTIONS(2726), 2, + STATE(10384), 1, + sym__command_name, + ACTIONS(2840), 2, sym__str_single_quotes, sym__str_back_ticks, - [264462] = 6, + [264096] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(13652), 1, + aux_sym_command_token1, + STATE(7841), 1, + aux_sym_command_repeat1, + STATE(8041), 1, + sym_comment, + ACTIONS(13868), 5, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [264116] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5725), 1, + anon_sym_DOLLAR, + ACTIONS(12254), 1, + sym_identifier, + STATE(2532), 1, + sym__assignment_pattern, + STATE(7000), 1, + sym__var, + STATE(8042), 1, + sym_comment, + STATE(8718), 1, + sym_val_variable, + STATE(9738), 1, + sym__assignment_pattern_last, + STATE(9747), 1, + sym__variable_name, + [264144] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2581), 1, + ACTIONS(2229), 1, anon_sym_DOT_DOT2, - ACTIONS(14421), 1, - anon_sym_DOT, - ACTIONS(14423), 1, + ACTIONS(13870), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13872), 1, aux_sym__immediate_decimal_token2, - STATE(8463), 1, + STATE(8043), 1, sym_comment, - ACTIONS(2583), 4, + ACTIONS(2231), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [264484] = 4, + [264166] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4018), 1, - anon_sym_LF, - STATE(8464), 1, + ACTIONS(4773), 1, + aux_sym_command_token1, + ACTIONS(12804), 1, + aux_sym__immediate_decimal_token1, + STATE(8044), 1, sym_comment, - ACTIONS(4016), 6, + ACTIONS(4771), 5, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, + anon_sym_LF2, + [264186] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1093), 1, anon_sym_DASH, - anon_sym_RBRACE, - [264502] = 6, - ACTIONS(113), 1, + ACTIONS(13698), 1, + anon_sym_DOT, + STATE(7919), 1, + sym_path, + STATE(8045), 1, + sym_comment, + STATE(9702), 1, + sym_cell_path, + ACTIONS(1095), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [264210] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - STATE(8465), 1, + ACTIONS(2838), 1, + anon_sym_DQUOTE, + ACTIONS(12164), 1, + sym_cmd_identifier, + STATE(6592), 1, + sym__str_double_quotes, + STATE(7567), 1, + sym_val_string, + STATE(8046), 1, sym_comment, - STATE(11424), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4325), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(4323), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - [264524] = 6, - ACTIONS(113), 1, + STATE(9147), 1, + sym__command_name, + ACTIONS(2840), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [264236] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - STATE(8466), 1, + ACTIONS(8135), 1, + anon_sym_DQUOTE, + ACTIONS(13740), 1, + sym_cmd_identifier, + STATE(2294), 1, + sym__str_double_quotes, + STATE(2364), 1, + sym_val_string, + STATE(2376), 1, + sym__command_name, + STATE(8047), 1, sym_comment, - STATE(11424), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4377), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(4375), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - [264546] = 4, - ACTIONS(113), 1, + ACTIONS(8137), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [264262] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(8467), 1, + ACTIONS(8135), 1, + anon_sym_DQUOTE, + ACTIONS(13740), 1, + sym_cmd_identifier, + STATE(2294), 1, + sym__str_double_quotes, + STATE(2364), 1, + sym_val_string, + STATE(2477), 1, + sym__command_name, + STATE(8048), 1, sym_comment, - ACTIONS(2547), 3, - anon_sym_SEMI, - anon_sym_PIPE, - aux_sym_unquoted_token2, - ACTIONS(2549), 4, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_LPAREN2, - anon_sym_DOT, - [264564] = 4, + ACTIONS(8137), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [264288] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5177), 1, + ACTIONS(3646), 1, anon_sym_LF, - STATE(8468), 1, + STATE(8049), 1, sym_comment, - ACTIONS(5175), 6, + ACTIONS(3644), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [264582] = 4, - ACTIONS(113), 1, + [264306] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(8469), 1, + ACTIONS(8135), 1, + anon_sym_DQUOTE, + ACTIONS(13740), 1, + sym_cmd_identifier, + STATE(2294), 1, + sym__str_double_quotes, + STATE(2364), 1, + sym_val_string, + STATE(2478), 1, + sym__command_name, + STATE(8050), 1, sym_comment, - ACTIONS(3505), 3, - anon_sym_SEMI, - anon_sym_PIPE, - aux_sym_unquoted_token2, - ACTIONS(3507), 4, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_LPAREN2, - anon_sym_DOT, - [264600] = 8, + ACTIONS(8137), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [264332] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2724), 1, + ACTIONS(2838), 1, anon_sym_DQUOTE, - ACTIONS(12867), 1, + ACTIONS(12164), 1, sym_cmd_identifier, - STATE(7019), 1, + STATE(6592), 1, sym__str_double_quotes, - STATE(7900), 1, + STATE(7567), 1, sym_val_string, - STATE(8470), 1, + STATE(8051), 1, sym_comment, - STATE(10873), 1, + STATE(10739), 1, sym__command_name, - ACTIONS(2726), 2, + ACTIONS(2840), 2, sym__str_single_quotes, sym__str_back_ticks, - [264626] = 6, - ACTIONS(113), 1, + [264358] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4008), 1, - anon_sym_LF, - ACTIONS(4012), 1, - aux_sym_unquoted_token2, - ACTIONS(13520), 1, + ACTIONS(961), 1, + anon_sym_DOT_DOT2, + ACTIONS(3433), 1, + aux_sym_unquoted_token5, + ACTIONS(9029), 1, anon_sym_DOT, - STATE(8471), 1, + STATE(8052), 1, sym_comment, - ACTIONS(4006), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [264648] = 4, - ACTIONS(113), 1, + ACTIONS(965), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(13840), 2, + sym_filesize_unit, + sym_duration_unit, + [264382] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5181), 1, - anon_sym_LF, - STATE(8472), 1, + ACTIONS(5725), 1, + anon_sym_DOLLAR, + ACTIONS(12254), 1, + sym_identifier, + STATE(2624), 1, + sym__assignment_pattern_parenthesized, + STATE(7000), 1, + sym__var, + STATE(8053), 1, sym_comment, - ACTIONS(5179), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [264666] = 5, + STATE(8718), 1, + sym_val_variable, + STATE(9760), 1, + sym__assignment_pattern_parenthesized_last, + STATE(9953), 1, + sym__variable_name, + [264410] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14375), 1, + ACTIONS(2356), 1, + anon_sym_DOT_DOT2, + ACTIONS(13874), 1, + anon_sym_DOT, + ACTIONS(13876), 1, aux_sym__immediate_decimal_token2, - STATE(8473), 1, + STATE(8054), 1, sym_comment, - ACTIONS(2581), 3, + ACTIONS(2358), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [264432] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5725), 1, + anon_sym_DOLLAR, + ACTIONS(12254), 1, sym_identifier, - anon_sym_DASH, - aux_sym_unquoted_token2, - ACTIONS(2583), 3, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT, - [264686] = 6, - ACTIONS(113), 1, + STATE(2531), 1, + sym__assignment_pattern, + STATE(7000), 1, + sym__var, + STATE(8055), 1, + sym_comment, + STATE(8718), 1, + sym_val_variable, + STATE(9320), 1, + sym__assignment_pattern_last, + STATE(9858), 1, + sym__variable_name, + [264460] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - ACTIONS(4037), 1, - anon_sym_LPAREN2, - STATE(8474), 1, + ACTIONS(5725), 1, + anon_sym_DOLLAR, + ACTIONS(12254), 1, + sym_identifier, + STATE(2533), 1, + sym__assignment_pattern, + STATE(7000), 1, + sym__var, + STATE(8056), 1, sym_comment, - ACTIONS(1249), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(1247), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - [264708] = 7, - ACTIONS(113), 1, + STATE(8718), 1, + sym_val_variable, + STATE(8992), 1, + sym__assignment_pattern_last, + STATE(9858), 1, + sym__variable_name, + [264488] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2847), 1, - anon_sym_LPAREN2, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(13169), 1, - anon_sym_DOT, - STATE(8475), 1, + ACTIONS(5725), 1, + anon_sym_DOLLAR, + ACTIONS(12254), 1, + sym_identifier, + STATE(2534), 1, + sym__assignment_pattern, + STATE(7000), 1, + sym__var, + STATE(8057), 1, sym_comment, - ACTIONS(2843), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(2845), 2, - ts_builtin_sym_end, - anon_sym_LF, - [264732] = 6, - ACTIONS(113), 1, + STATE(8718), 1, + sym_val_variable, + STATE(9325), 1, + sym__assignment_pattern_last, + STATE(9858), 1, + sym__variable_name, + [264516] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1284), 1, - aux_sym_unquoted_token6, - ACTIONS(4895), 1, - anon_sym_LPAREN2, - STATE(8476), 1, + ACTIONS(7911), 1, + anon_sym_DQUOTE, + ACTIONS(13395), 1, + sym_cmd_identifier, + STATE(2033), 1, + sym_val_string, + STATE(2193), 1, + sym__command_name, + STATE(2196), 1, + sym__str_double_quotes, + STATE(8058), 1, sym_comment, - ACTIONS(1160), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(1158), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - [264754] = 5, + ACTIONS(7913), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [264542] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14292), 1, + ACTIONS(13880), 1, aux_sym_command_token1, - STATE(8351), 1, - aux_sym_command_repeat1, - STATE(8477), 1, + STATE(8059), 2, sym_comment, - ACTIONS(14425), 5, + aux_sym_command_repeat1, + ACTIONS(13878), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [264774] = 5, + [264560] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14129), 1, - aux_sym__immediate_decimal_token2, - STATE(8478), 1, + ACTIONS(8135), 1, + anon_sym_DQUOTE, + ACTIONS(13740), 1, + sym_cmd_identifier, + STATE(2294), 1, + sym__str_double_quotes, + STATE(2364), 1, + sym_val_string, + STATE(2411), 1, + sym__command_name, + STATE(8060), 1, sym_comment, - ACTIONS(2437), 3, - sym_identifier, - anon_sym_DASH, - aux_sym_unquoted_token2, - ACTIONS(2439), 3, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT, - [264794] = 7, + ACTIONS(8137), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [264586] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2843), 1, + ACTIONS(1097), 1, + anon_sym_DASH, + ACTIONS(13698), 1, + anon_sym_DOT, + STATE(7919), 1, + sym_path, + STATE(8061), 1, + sym_comment, + STATE(9594), 1, + sym_cell_path, + ACTIONS(1099), 3, sym_identifier, - ACTIONS(2845), 1, anon_sym_DOLLAR, - ACTIONS(14427), 1, - anon_sym_DOT_DOT2, - STATE(8479), 1, - sym_comment, - ACTIONS(2851), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(14429), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [264818] = 4, - ACTIONS(113), 1, + anon_sym_DASH_DASH, + [264610] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4293), 1, - anon_sym_LF, - STATE(8480), 1, + ACTIONS(7911), 1, + anon_sym_DQUOTE, + ACTIONS(13395), 1, + sym_cmd_identifier, + STATE(956), 1, + sym__command_name, + STATE(2033), 1, + sym_val_string, + STATE(2196), 1, + sym__str_double_quotes, + STATE(8062), 1, sym_comment, - ACTIONS(4291), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(7913), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [264636] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3152), 1, anon_sym_DASH_DASH, + ACTIONS(3154), 1, anon_sym_DASH, - anon_sym_RBRACE, - [264836] = 7, + ACTIONS(13883), 1, + anon_sym_in, + STATE(8063), 1, + sym_comment, + STATE(10628), 1, + sym_long_flag_equals_value, + STATE(10846), 1, + sym__flag, + STATE(10275), 2, + sym_short_flag, + sym_long_flag, + [264662] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2843), 1, + ACTIONS(3152), 1, + anon_sym_DASH_DASH, + ACTIONS(3154), 1, anon_sym_DASH, - ACTIONS(2847), 1, - anon_sym_LPAREN2, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(13169), 1, - anon_sym_DOT, - STATE(8481), 1, + ACTIONS(13885), 1, + anon_sym_in, + STATE(8064), 1, sym_comment, - ACTIONS(2845), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [264860] = 4, + STATE(10628), 1, + sym_long_flag_equals_value, + STATE(10850), 1, + sym__flag, + STATE(10275), 2, + sym_short_flag, + sym_long_flag, + [264688] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(13704), 1, + aux_sym_command_token1, + ACTIONS(13706), 1, + anon_sym_LF2, + ACTIONS(13889), 1, + anon_sym_LF, + STATE(7996), 1, + aux_sym__command_parenthesized_body_repeat1, + STATE(8065), 1, + sym_comment, + ACTIONS(13887), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + [264712] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(8482), 1, + STATE(8066), 1, sym_comment, - ACTIONS(3960), 2, + ACTIONS(3767), 2, anon_sym_DASH, anon_sym_DOT_DOT2, - ACTIONS(3962), 5, + ACTIONS(3769), 5, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [264878] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14431), 1, - anon_sym_DOT_DOT2, - STATE(8483), 1, - sym_comment, - ACTIONS(1934), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(3520), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(14433), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [264900] = 5, + [264730] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14435), 1, - aux_sym__immediate_decimal_token2, - STATE(8484), 1, - sym_comment, - ACTIONS(2547), 3, + ACTIONS(5725), 1, + anon_sym_DOLLAR, + ACTIONS(12254), 1, sym_identifier, - anon_sym_DASH, - aux_sym_unquoted_token2, - ACTIONS(2549), 3, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT, - [264920] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - ACTIONS(3878), 1, - anon_sym_LPAREN2, - ACTIONS(13456), 1, - anon_sym_DOT, - STATE(8485), 1, + STATE(2532), 1, + sym__assignment_pattern, + STATE(7000), 1, + sym__var, + STATE(8067), 1, sym_comment, - ACTIONS(3874), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3876), 2, - ts_builtin_sym_end, - anon_sym_LF, - [264944] = 5, - ACTIONS(113), 1, + STATE(8718), 1, + sym_val_variable, + STATE(9681), 1, + sym__assignment_pattern_last, + STATE(9858), 1, + sym__variable_name, + [264758] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1290), 1, - ts_builtin_sym_end, - ACTIONS(10478), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(8486), 1, + ACTIONS(7911), 1, + anon_sym_DQUOTE, + ACTIONS(13395), 1, + sym_cmd_identifier, + STATE(2032), 1, + sym__command_name, + STATE(2033), 1, + sym_val_string, + STATE(2196), 1, + sym__str_double_quotes, + STATE(8068), 1, sym_comment, - ACTIONS(1243), 5, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [264964] = 6, + ACTIONS(7913), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [264784] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2843), 1, + ACTIONS(7911), 1, + anon_sym_DQUOTE, + ACTIONS(13395), 1, sym_cmd_identifier, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(13169), 1, - anon_sym_DOT, - STATE(8487), 1, + STATE(2033), 1, + sym_val_string, + STATE(2196), 1, + sym__str_double_quotes, + STATE(2350), 1, + sym__command_name, + STATE(8069), 1, sym_comment, - ACTIONS(2845), 4, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, + ACTIONS(7913), 2, sym__str_single_quotes, sym__str_back_ticks, - [264986] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(5079), 1, - aux_sym_command_token1, - ACTIONS(14437), 1, - sym_long_flag_identifier, - STATE(8488), 1, - sym_comment, - ACTIONS(5075), 5, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [265006] = 6, + [264810] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2437), 1, - aux_sym_unquoted_token2, - ACTIONS(14439), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14441), 1, - aux_sym__immediate_decimal_token2, - STATE(8489), 1, + ACTIONS(7911), 1, + anon_sym_DQUOTE, + ACTIONS(13395), 1, + sym_cmd_identifier, + STATE(2033), 1, + sym_val_string, + STATE(2196), 1, + sym__str_double_quotes, + STATE(2357), 1, + sym__command_name, + STATE(8070), 1, sym_comment, - ACTIONS(2439), 4, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT, - [265028] = 7, + ACTIONS(7913), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [264836] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4010), 1, - anon_sym_LPAREN2, - ACTIONS(4012), 1, - aux_sym_unquoted_token2, - ACTIONS(13520), 1, - anon_sym_DOT, - STATE(8490), 1, + ACTIONS(13704), 1, + aux_sym_command_token1, + ACTIONS(13706), 1, + anon_sym_LF2, + ACTIONS(13893), 1, + anon_sym_LF, + STATE(7999), 1, + aux_sym__command_parenthesized_body_repeat1, + STATE(8071), 1, sym_comment, - ACTIONS(4006), 2, + ACTIONS(13891), 3, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(4008), 2, - ts_builtin_sym_end, - anon_sym_LF, - [265052] = 4, + [264860] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5217), 1, + ACTIONS(1131), 1, anon_sym_LF, - STATE(8491), 1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + ACTIONS(3841), 1, + anon_sym_LPAREN2, + STATE(8072), 1, sym_comment, - ACTIONS(5215), 6, + ACTIONS(1129), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_RBRACE, - [265070] = 4, + [264882] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3868), 1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + ACTIONS(1137), 1, anon_sym_LF, - STATE(8492), 1, + ACTIONS(3841), 1, + anon_sym_LPAREN2, + STATE(8073), 1, sym_comment, - ACTIONS(3866), 6, + ACTIONS(1135), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_RBRACE, - [265088] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14443), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14445), 1, - aux_sym__immediate_decimal_token2, - STATE(8493), 1, - sym_comment, - ACTIONS(2437), 2, - sym_identifier, - aux_sym_unquoted_token2, - ACTIONS(2439), 3, - anon_sym_DOLLAR, - anon_sym_LPAREN2, - anon_sym_DOT, - [265110] = 6, + [264904] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2845), 1, - anon_sym_LF, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(13169), 1, - anon_sym_DOT, - STATE(8494), 1, + ACTIONS(4773), 1, + aux_sym_command_token1, + ACTIONS(12876), 1, + aux_sym__immediate_decimal_token1, + STATE(8074), 1, sym_comment, - ACTIONS(2843), 4, + ACTIONS(4771), 5, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [265132] = 6, + [264924] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(938), 1, - anon_sym_LF, - ACTIONS(10202), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14447), 1, - aux_sym_unquoted_token2, - STATE(8495), 1, + ACTIONS(5003), 1, + aux_sym_command_token1, + STATE(8075), 1, sym_comment, - ACTIONS(936), 4, + ACTIONS(5001), 5, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [265154] = 8, - ACTIONS(3), 1, + [264941] = 7, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2724), 1, - anon_sym_DQUOTE, - ACTIONS(12867), 1, - sym_cmd_identifier, - STATE(7019), 1, - sym__str_double_quotes, - STATE(7900), 1, - sym_val_string, - STATE(8496), 1, + ACTIONS(13895), 1, + anon_sym_LPAREN, + ACTIONS(13899), 1, + anon_sym_DQUOTE2, + STATE(8076), 1, sym_comment, - STATE(11240), 1, - sym__command_name, - ACTIONS(2726), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [265180] = 4, + STATE(8162), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9124), 1, + sym_expr_interpolated, + ACTIONS(13897), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [264964] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4045), 1, - anon_sym_LF, - STATE(8497), 1, + ACTIONS(1074), 1, + aux_sym_command_token1, + STATE(8077), 1, sym_comment, - ACTIONS(4043), 6, + ACTIONS(1072), 5, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_RBRACE, - [265198] = 6, + [264981] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - ACTIONS(4631), 1, - anon_sym_LPAREN2, - STATE(8498), 1, - sym_comment, - ACTIONS(1255), 2, - ts_builtin_sym_end, + ACTIONS(4961), 1, aux_sym_command_token1, - ACTIONS(1253), 3, + STATE(8078), 1, + sym_comment, + ACTIONS(4959), 5, anon_sym_SEMI, anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, - [265220] = 6, + anon_sym_LF2, + [264998] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - ACTIONS(4631), 1, - anon_sym_LPAREN2, - STATE(8499), 1, + STATE(8079), 1, sym_comment, - ACTIONS(1275), 2, + ACTIONS(4999), 2, ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(1273), 3, - anon_sym_SEMI, anon_sym_LF, + ACTIONS(4997), 4, + anon_sym_SEMI, anon_sym_PIPE, - [265242] = 8, - ACTIONS(3), 1, + anon_sym_DASH_DASH, + anon_sym_DASH, + [265015] = 7, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2724), 1, - anon_sym_DQUOTE, - ACTIONS(12867), 1, - sym_cmd_identifier, - STATE(7019), 1, - sym__str_double_quotes, - STATE(7900), 1, - sym_val_string, - STATE(8500), 1, + ACTIONS(13895), 1, + anon_sym_LPAREN, + ACTIONS(13901), 1, + anon_sym_DQUOTE2, + STATE(8080), 1, sym_comment, - STATE(11213), 1, - sym__command_name, - ACTIONS(2726), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [265268] = 6, + STATE(8083), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9124), 1, + sym_expr_interpolated, + ACTIONS(13897), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [265038] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(13319), 1, - anon_sym_DOT, - STATE(8501), 1, + STATE(8081), 1, sym_comment, - ACTIONS(3520), 2, + ACTIONS(5003), 2, ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(3518), 3, - anon_sym_SEMI, anon_sym_LF, + ACTIONS(5001), 4, + anon_sym_SEMI, anon_sym_PIPE, - [265290] = 5, + anon_sym_DASH_DASH, + anon_sym_DASH, + [265055] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14451), 1, + ACTIONS(5021), 1, aux_sym_command_token1, - ACTIONS(14454), 1, - anon_sym_LF2, - STATE(8502), 2, + STATE(8082), 1, sym_comment, - aux_sym__command_parenthesized_body_repeat1, - ACTIONS(14449), 4, + ACTIONS(5019), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - [265310] = 4, + anon_sym_LF2, + [265072] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5185), 1, - anon_sym_LF, - STATE(8503), 1, - sym_comment, - ACTIONS(5183), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [265328] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12574), 1, - sym_identifier, - STATE(3030), 1, - sym__assignment_pattern_parenthesized, - STATE(7440), 1, - sym__var, - STATE(8504), 1, + ACTIONS(13895), 1, + anon_sym_LPAREN, + ACTIONS(13903), 1, + anon_sym_DQUOTE2, + STATE(8083), 1, sym_comment, - STATE(8921), 1, - sym_val_variable, - STATE(10243), 1, - sym__variable_name, - STATE(10413), 1, - sym__assignment_pattern_parenthesized_last, - [265356] = 4, + STATE(8162), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9124), 1, + sym_expr_interpolated, + ACTIONS(13897), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [265095] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4008), 1, - anon_sym_LF, - STATE(8505), 1, + ACTIONS(3650), 1, + aux_sym_unquoted_token2, + ACTIONS(13004), 1, + anon_sym_DOT, + STATE(8084), 1, sym_comment, - ACTIONS(4006), 6, + ACTIONS(3644), 2, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [265374] = 5, + ACTIONS(3646), 2, + ts_builtin_sym_end, + anon_sym_LF, + [265116] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1290), 1, - anon_sym_LPAREN2, - ACTIONS(10434), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(8506), 1, + ACTIONS(13895), 1, + anon_sym_LPAREN, + ACTIONS(13905), 1, + anon_sym_DQUOTE2, + STATE(8085), 1, sym_comment, - ACTIONS(1243), 5, - anon_sym_SEMI, + STATE(8103), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9124), 1, + sym_expr_interpolated, + ACTIONS(13897), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [265139] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(8086), 1, + sym_comment, + ACTIONS(5007), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_RPAREN, + ACTIONS(5005), 4, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACE, - [265394] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3365), 1, anon_sym_DASH_DASH, - ACTIONS(3367), 1, anon_sym_DASH, - ACTIONS(14457), 1, - anon_sym_in, - STATE(8507), 1, - sym_comment, - STATE(11044), 1, - sym_long_flag_equals_value, - STATE(11360), 1, - sym__flag, - STATE(10775), 2, - sym_short_flag, - sym_long_flag, - [265420] = 8, + [265156] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3365), 1, - anon_sym_DASH_DASH, - ACTIONS(3367), 1, - anon_sym_DASH, - ACTIONS(14459), 1, - anon_sym_in, - STATE(8508), 1, + STATE(8087), 1, sym_comment, - STATE(11044), 1, - sym_long_flag_equals_value, - STATE(11364), 1, - sym__flag, - STATE(10775), 2, - sym_short_flag, - sym_long_flag, - [265446] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(3520), 1, - anon_sym_LF, - ACTIONS(13319), 1, + ACTIONS(1049), 6, + sym_cmd_identifier, + anon_sym_DASH_DASH, anon_sym_DOT, - STATE(8509), 1, - sym_comment, - ACTIONS(3518), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [265468] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2724), 1, anon_sym_DQUOTE, - ACTIONS(12867), 1, - sym_cmd_identifier, - STATE(7019), 1, - sym__str_double_quotes, - STATE(7900), 1, - sym_val_string, - STATE(8510), 1, - sym_comment, - STATE(11233), 1, - sym__command_name, - ACTIONS(2726), 2, sym__str_single_quotes, sym__str_back_ticks, - [265494] = 8, - ACTIONS(3), 1, + [265171] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14362), 1, - anon_sym_def, - ACTIONS(14364), 1, - anon_sym_extern, - ACTIONS(14366), 1, - anon_sym_module, - ACTIONS(14368), 1, - anon_sym_use, - ACTIONS(14461), 1, - anon_sym_alias, - ACTIONS(14463), 1, - anon_sym_const, - STATE(8511), 1, + ACTIONS(1209), 1, + anon_sym_LPAREN2, + ACTIONS(13834), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(8088), 1, sym_comment, - [265519] = 4, + ACTIONS(1139), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + [265190] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(8512), 1, + STATE(8089), 1, sym_comment, - ACTIONS(2845), 2, + ACTIONS(5021), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(2843), 4, + ACTIONS(5019), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [265536] = 7, + [265207] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, + ACTIONS(13895), 1, anon_sym_LPAREN, - ACTIONS(14469), 1, + ACTIONS(13907), 1, anon_sym_DQUOTE2, - STATE(8513), 1, + STATE(8090), 1, sym_comment, - STATE(8638), 1, + STATE(8091), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9733), 1, + STATE(9124), 1, sym_expr_interpolated, - ACTIONS(14467), 2, + ACTIONS(13897), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [265559] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - ACTIONS(4375), 1, - anon_sym_DASH, - STATE(8514), 1, - sym_comment, - STATE(11424), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4377), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [265580] = 6, + [265230] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14471), 1, - anon_sym_DOT, - ACTIONS(14474), 1, - aux_sym__immediate_decimal_token2, - STATE(8515), 1, + ACTIONS(13895), 1, + anon_sym_LPAREN, + ACTIONS(13909), 1, + anon_sym_DQUOTE2, + STATE(8091), 1, sym_comment, - ACTIONS(2581), 2, - anon_sym_RBRACK, - aux_sym_unquoted_token2, - ACTIONS(2583), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [265601] = 4, - ACTIONS(3), 1, + STATE(8162), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9124), 1, + sym_expr_interpolated, + ACTIONS(13897), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [265253] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14476), 1, - anon_sym_LBRACK2, - STATE(8516), 1, + STATE(8092), 1, sym_comment, - ACTIONS(1261), 5, - sym_cmd_identifier, + ACTIONS(5025), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5023), 4, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [265618] = 3, - ACTIONS(3), 1, + anon_sym_DASH, + [265270] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(8517), 1, + STATE(8093), 1, sym_comment, - ACTIONS(1119), 6, - sym_cmd_identifier, + ACTIONS(3693), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3691), 4, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_DASH_DASH, - anon_sym_DOT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [265633] = 4, + anon_sym_DASH, + [265287] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(8518), 1, + STATE(8094), 1, sym_comment, - ACTIONS(3951), 2, + ACTIONS(3701), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3949), 4, + ACTIONS(3699), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [265650] = 4, + [265304] = 8, ACTIONS(113), 1, anon_sym_POUND, - STATE(8519), 1, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(3574), 1, + anon_sym_RBRACK, + ACTIONS(3576), 1, + sym__entry_separator, + ACTIONS(12513), 1, + anon_sym_DOT, + ACTIONS(13911), 1, + aux_sym__immediate_decimal_token1, + STATE(8095), 1, sym_comment, - ACTIONS(1280), 3, + [265329] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(12513), 1, + anon_sym_DOT, + STATE(8096), 1, + sym_comment, + ACTIONS(3354), 2, anon_sym_SEMI, anon_sym_PIPE, - aux_sym_unquoted_token6, - ACTIONS(1282), 3, + ACTIONS(3356), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_LPAREN2, - [265667] = 6, + [265350] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(13895), 1, + anon_sym_LPAREN, + ACTIONS(13913), 1, + anon_sym_DQUOTE2, + STATE(8097), 1, + sym_comment, + STATE(8099), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9124), 1, + sym_expr_interpolated, + ACTIONS(13897), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [265373] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2397), 1, + ACTIONS(3646), 1, + anon_sym_DASH_DASH, + ACTIONS(3648), 1, anon_sym_LPAREN2, - ACTIONS(4533), 1, - anon_sym_DASH, - STATE(8520), 1, + ACTIONS(3650), 1, + aux_sym_unquoted_token2, + ACTIONS(13004), 1, + anon_sym_DOT, + STATE(8098), 1, sym_comment, - STATE(11424), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4535), 3, + ACTIONS(3644), 2, sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [265688] = 7, + anon_sym_DASH, + [265396] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, + ACTIONS(13895), 1, anon_sym_LPAREN, - ACTIONS(14478), 1, + ACTIONS(13915), 1, anon_sym_DQUOTE2, - STATE(8521), 1, + STATE(8099), 1, sym_comment, - STATE(8523), 1, + STATE(8162), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9733), 1, + STATE(9124), 1, sym_expr_interpolated, - ACTIONS(14467), 2, + ACTIONS(13897), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [265711] = 6, + [265419] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - ACTIONS(13456), 1, - anon_sym_DOT, - STATE(8522), 1, + ACTIONS(5215), 1, + aux_sym_command_token1, + STATE(8100), 1, sym_comment, - ACTIONS(3874), 2, + ACTIONS(5213), 5, anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3876), 2, - ts_builtin_sym_end, anon_sym_LF, - [265732] = 7, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_LF2, + [265436] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, + ACTIONS(13895), 1, anon_sym_LPAREN, - ACTIONS(14480), 1, + ACTIONS(13917), 1, anon_sym_DQUOTE2, - STATE(8523), 1, + STATE(8101), 1, sym_comment, - STATE(8638), 1, + STATE(8102), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9733), 1, + STATE(9124), 1, sym_expr_interpolated, - ACTIONS(14467), 2, + ACTIONS(13897), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [265755] = 7, - ACTIONS(3), 1, + [265459] = 7, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2847), 1, - anon_sym_LPAREN2, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(13169), 1, - anon_sym_DOT, - ACTIONS(14482), 1, - aux_sym__immediate_decimal_token1, - STATE(8524), 1, + ACTIONS(13895), 1, + anon_sym_LPAREN, + ACTIONS(13919), 1, + anon_sym_DQUOTE2, + STATE(8102), 1, sym_comment, - ACTIONS(3750), 2, - anon_sym_DOLLAR, - anon_sym_LBRACE, - [265778] = 7, + STATE(8162), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9124), 1, + sym_expr_interpolated, + ACTIONS(13897), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [265482] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(6538), 1, + ACTIONS(13895), 1, + anon_sym_LPAREN, + ACTIONS(13921), 1, + anon_sym_DQUOTE2, + STATE(8103), 1, + sym_comment, + STATE(8162), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9124), 1, + sym_expr_interpolated, + ACTIONS(13897), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [265505] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(5025), 1, + aux_sym_command_token1, + STATE(8104), 1, + sym_comment, + ACTIONS(5023), 5, anon_sym_SEMI, - ACTIONS(6540), 1, anon_sym_LF, - STATE(2696), 1, - sym__terminator, - STATE(8525), 1, - sym_comment, - STATE(8754), 1, - aux_sym__block_body_repeat1, - ACTIONS(14484), 2, anon_sym_RPAREN, - anon_sym_RBRACE, - [265801] = 4, + anon_sym_PIPE, + anon_sym_LF2, + [265522] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(8526), 1, + STATE(8105), 1, + sym_comment, + ACTIONS(5029), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5027), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [265539] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(8106), 1, sym_comment, - ACTIONS(3966), 2, + ACTIONS(3713), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3964), 4, + ACTIONS(3711), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [265818] = 5, + [265556] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14486), 1, - anon_sym_DOT_DOT2, - STATE(8527), 1, + ACTIONS(13925), 1, + anon_sym_COMMA, + STATE(8107), 1, sym_comment, - ACTIONS(14488), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(8394), 3, + ACTIONS(13923), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [265573] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13929), 1, + anon_sym_COMMA, + STATE(8108), 1, + sym_comment, + ACTIONS(13927), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [265590] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9067), 1, + anon_sym_DOT, + STATE(4486), 1, + sym_path, + STATE(8109), 1, + sym_comment, + STATE(9805), 1, + sym_cell_path, + ACTIONS(7820), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [265837] = 6, - ACTIONS(113), 1, + [265611] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - ACTIONS(4037), 1, + ACTIONS(2187), 1, anon_sym_LPAREN2, - ACTIONS(14490), 1, - aux_sym_command_token1, - STATE(8528), 1, + ACTIONS(4196), 1, + anon_sym_DASH, + STATE(8110), 1, sym_comment, - ACTIONS(4035), 3, + STATE(10214), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4198), 3, sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, - [265858] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(14465), 1, - anon_sym_LPAREN, - ACTIONS(14492), 1, - anon_sym_DQUOTE2, - STATE(8529), 1, - sym_comment, - STATE(8535), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(9733), 1, - sym_expr_interpolated, - ACTIONS(14467), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [265881] = 4, + [265632] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(8530), 1, + STATE(8111), 1, sym_comment, - ACTIONS(4018), 2, + ACTIONS(3356), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4016), 4, + ACTIONS(3354), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [265898] = 5, + [265649] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13815), 1, - aux_sym__immediate_decimal_token1, - STATE(8531), 1, + STATE(8112), 1, sym_comment, - ACTIONS(5085), 2, + ACTIONS(5033), 2, ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(5083), 3, - anon_sym_SEMI, anon_sym_LF, + ACTIONS(5031), 4, + anon_sym_SEMI, anon_sym_PIPE, - [265917] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14486), 1, - anon_sym_DOT_DOT2, - STATE(8532), 1, - sym_comment, - ACTIONS(14488), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(8396), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [265936] = 7, + anon_sym_DASH_DASH, + anon_sym_DASH, + [265666] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, + ACTIONS(13895), 1, anon_sym_LPAREN, - ACTIONS(14494), 1, + ACTIONS(13931), 1, anon_sym_DQUOTE2, - STATE(8533), 1, + STATE(8113), 1, sym_comment, - STATE(8534), 1, + STATE(8114), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9733), 1, + STATE(9124), 1, sym_expr_interpolated, - ACTIONS(14467), 2, + ACTIONS(13897), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [265959] = 7, + [265689] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, + ACTIONS(13895), 1, anon_sym_LPAREN, - ACTIONS(14496), 1, + ACTIONS(13933), 1, anon_sym_DQUOTE2, - STATE(8534), 1, + STATE(8114), 1, sym_comment, - STATE(8638), 1, + STATE(8162), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9733), 1, + STATE(9124), 1, sym_expr_interpolated, - ACTIONS(14467), 2, + ACTIONS(13897), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [265982] = 7, + [265712] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, - anon_sym_LPAREN, - ACTIONS(14498), 1, - anon_sym_DQUOTE2, - STATE(8535), 1, + ACTIONS(5219), 1, + aux_sym_command_token1, + STATE(8115), 1, sym_comment, - STATE(8638), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(9733), 1, - sym_expr_interpolated, - ACTIONS(14467), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [266005] = 4, + ACTIONS(5217), 5, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_LF2, + [265729] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(13630), 1, + aux_sym__immediate_decimal_token2, + STATE(8116), 1, + sym_comment, + ACTIONS(2229), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(2231), 3, + anon_sym_LPAREN2, + anon_sym_DOT, + sym__entry_separator, + [265748] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1059), 1, - anon_sym_DASH, - STATE(8536), 1, + ACTIONS(13935), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13937), 1, + aux_sym_unquoted_token2, + STATE(8117), 1, sym_comment, - ACTIONS(1061), 5, + ACTIONS(920), 2, sym_identifier, - anon_sym_DOLLAR, + anon_sym_DASH, + ACTIONS(922), 2, anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_DOT, - [266022] = 4, + anon_sym_LPAREN2, + [265769] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(8537), 1, + ACTIONS(3759), 1, + aux_sym_command_token1, + STATE(8118), 1, + sym_comment, + ACTIONS(3757), 5, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [265786] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(8119), 1, sym_comment, - ACTIONS(5177), 2, + ACTIONS(5243), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(5175), 4, + ACTIONS(5241), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [266039] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2845), 1, - anon_sym_LBRACE, - ACTIONS(14500), 1, - anon_sym_DOT_DOT2, - STATE(8538), 1, - sym_comment, - ACTIONS(2851), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(14502), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [266060] = 4, + [265803] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(8539), 1, + STATE(8120), 1, sym_comment, - ACTIONS(5181), 2, + ACTIONS(5247), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(5179), 4, + ACTIONS(5245), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [266077] = 7, + [265820] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4771), 1, + sym_cmd_identifier, + ACTIONS(13939), 1, + aux_sym__immediate_decimal_token1, + STATE(8121), 1, + sym_comment, + ACTIONS(4773), 4, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [265839] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, + ACTIONS(13895), 1, anon_sym_LPAREN, - ACTIONS(14504), 1, + ACTIONS(13941), 1, anon_sym_DQUOTE2, - STATE(8540), 1, + STATE(8122), 1, sym_comment, - STATE(8638), 1, + STATE(8124), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9733), 1, + STATE(9124), 1, + sym_expr_interpolated, + ACTIONS(13897), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [265862] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3312), 1, + anon_sym_DASH, + ACTIONS(13943), 1, + anon_sym_DOT_DOT2, + STATE(8123), 1, + sym_comment, + ACTIONS(3314), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(13945), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [265883] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(13895), 1, + anon_sym_LPAREN, + ACTIONS(13947), 1, + anon_sym_DQUOTE2, + STATE(8124), 1, + sym_comment, + STATE(8162), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9124), 1, sym_expr_interpolated, - ACTIONS(14467), 2, + ACTIONS(13897), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [266100] = 4, + [265906] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13951), 1, + anon_sym_COMMA, + STATE(8125), 1, + sym_comment, + ACTIONS(13949), 5, + sym_cmd_identifier, + anon_sym_RBRACK, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [265923] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5133), 1, + ACTIONS(4821), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(8541), 1, + STATE(8126), 1, sym_comment, - ACTIONS(1243), 5, + ACTIONS(1139), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [266117] = 6, + [265940] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(13169), 1, - anon_sym_DOT, - ACTIONS(14506), 1, - aux_sym__immediate_decimal_token1, - STATE(8542), 1, + ACTIONS(13953), 1, + anon_sym_LBRACK2, + STATE(8127), 1, sym_comment, - ACTIONS(3750), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [266138] = 4, + ACTIONS(1145), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [265957] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(8543), 1, + ACTIONS(5115), 1, + aux_sym_command_token1, + STATE(8128), 1, sym_comment, - ACTIONS(4293), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4291), 4, + ACTIONS(5113), 5, anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [266155] = 4, + anon_sym_RBRACE, + [265974] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(8544), 1, + ACTIONS(5139), 1, + aux_sym_command_token1, + STATE(8129), 1, sym_comment, - ACTIONS(5185), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5183), 4, + ACTIONS(5137), 5, anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [266172] = 7, - ACTIONS(113), 1, + anon_sym_RBRACE, + [265991] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14465), 1, - anon_sym_LPAREN, - ACTIONS(14508), 1, - anon_sym_DQUOTE2, - STATE(8545), 1, + ACTIONS(13955), 1, + aux_sym__immediate_decimal_token2, + STATE(8130), 1, sym_comment, - STATE(8546), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(9733), 1, - sym_expr_interpolated, - ACTIONS(14467), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [266195] = 7, + ACTIONS(2356), 2, + sym_identifier, + aux_sym_unquoted_token2, + ACTIONS(2358), 3, + anon_sym_DOLLAR, + anon_sym_LPAREN2, + anon_sym_DOT, + [266010] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, + ACTIONS(13895), 1, anon_sym_LPAREN, - ACTIONS(14510), 1, + ACTIONS(13957), 1, anon_sym_DQUOTE2, - STATE(8546), 1, + STATE(8131), 1, sym_comment, - STATE(8638), 1, + STATE(8132), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9733), 1, + STATE(9124), 1, sym_expr_interpolated, - ACTIONS(14467), 2, + ACTIONS(13897), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [266218] = 7, + [266033] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, + ACTIONS(13895), 1, anon_sym_LPAREN, - ACTIONS(14512), 1, + ACTIONS(13959), 1, anon_sym_DQUOTE2, - STATE(8547), 1, + STATE(8132), 1, sym_comment, - STATE(8560), 1, + STATE(8162), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9733), 1, + STATE(9124), 1, sym_expr_interpolated, - ACTIONS(14467), 2, + ACTIONS(13897), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [266241] = 5, + [266056] = 8, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14226), 1, - aux_sym__immediate_decimal_token2, - STATE(8548), 1, - sym_comment, - ACTIONS(2437), 2, - anon_sym_RBRACK, - aux_sym_unquoted_token2, - ACTIONS(2439), 3, + ACTIONS(3358), 1, anon_sym_LPAREN2, - anon_sym_DOT, + ACTIONS(3362), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(3574), 1, + anon_sym_RBRACK, + ACTIONS(3576), 1, sym__entry_separator, - [266260] = 6, + ACTIONS(12513), 1, + anon_sym_DOT, + ACTIONS(13961), 1, + aux_sym__immediate_decimal_token1, + STATE(8133), 1, + sym_comment, + [266081] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5725), 1, + anon_sym_DOLLAR, + ACTIONS(12254), 1, + sym_identifier, + STATE(2532), 1, + sym__assignment_pattern, + STATE(7000), 1, + sym__var, + STATE(8134), 1, + sym_comment, + STATE(8718), 1, + sym_val_variable, + STATE(9822), 1, + sym__variable_name, + [266106] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1255), 1, - anon_sym_LBRACE, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - ACTIONS(4631), 1, - anon_sym_LPAREN2, - STATE(8549), 1, + ACTIONS(4198), 1, + aux_sym_command_token1, + STATE(8135), 1, sym_comment, - ACTIONS(1253), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - [266281] = 4, - ACTIONS(3), 1, + ACTIONS(4196), 5, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [266123] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1063), 1, - anon_sym_DASH, - STATE(8550), 1, + ACTIONS(4738), 1, + aux_sym_command_token1, + STATE(8136), 1, sym_comment, - ACTIONS(1065), 5, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_DOT, - [266298] = 5, - ACTIONS(3), 1, + ACTIONS(4734), 5, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [266140] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1070), 1, - anon_sym_DASH, - ACTIONS(14514), 1, - anon_sym_QMARK2, - STATE(8551), 1, + ACTIONS(13963), 1, + ts_builtin_sym_end, + ACTIONS(13965), 1, + aux_sym_command_token1, + STATE(8137), 2, sym_comment, - ACTIONS(1072), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT, - [266317] = 5, - ACTIONS(3), 1, + aux_sym_command_repeat1, + ACTIONS(13878), 3, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, + [266159] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1070), 1, - anon_sym_DASH, - ACTIONS(14514), 1, - anon_sym_QMARK2, - STATE(8552), 1, + ACTIONS(3693), 1, + aux_sym_command_token1, + STATE(8138), 1, sym_comment, - ACTIONS(1072), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT, - [266336] = 6, + ACTIONS(3691), 5, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [266176] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(5153), 1, + aux_sym_command_token1, + STATE(8139), 1, + sym_comment, + ACTIONS(5151), 5, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_LF2, + [266193] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1934), 1, + ACTIONS(2356), 1, aux_sym_unquoted_token2, - ACTIONS(3518), 1, - anon_sym_DASH, - ACTIONS(13319), 1, + ACTIONS(13968), 1, anon_sym_DOT, - STATE(8553), 1, + ACTIONS(13971), 1, + aux_sym__immediate_decimal_token2, + STATE(8140), 1, sym_comment, - ACTIONS(3520), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [266357] = 7, + ACTIONS(2358), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [266214] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, + ACTIONS(13895), 1, anon_sym_LPAREN, - ACTIONS(14516), 1, + ACTIONS(13973), 1, anon_sym_DQUOTE2, - STATE(8554), 1, + STATE(8141), 1, sym_comment, - STATE(8556), 1, + STATE(8142), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9733), 1, + STATE(9124), 1, sym_expr_interpolated, - ACTIONS(14467), 2, + ACTIONS(13897), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [266380] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(8555), 1, - sym_comment, - ACTIONS(5217), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5215), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [266397] = 7, + [266237] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, + ACTIONS(13895), 1, anon_sym_LPAREN, - ACTIONS(14518), 1, + ACTIONS(13975), 1, anon_sym_DQUOTE2, - STATE(8556), 1, + STATE(8142), 1, sym_comment, - STATE(8638), 1, + STATE(8162), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9733), 1, + STATE(9124), 1, sym_expr_interpolated, - ACTIONS(14467), 2, + ACTIONS(13897), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [266420] = 4, + [266260] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13977), 1, + anon_sym_EQ, + STATE(8143), 1, + sym_comment, + ACTIONS(4725), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [266277] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2362), 1, + aux_sym_unquoted_token2, + ACTIONS(13979), 1, + aux_sym__immediate_decimal_token2, + STATE(8144), 1, + sym_comment, + ACTIONS(2364), 4, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT, + [266296] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4045), 1, + ACTIONS(3701), 1, aux_sym_command_token1, - STATE(8557), 1, + STATE(8145), 1, sym_comment, - ACTIONS(4043), 5, + ACTIONS(3699), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_LF2, - [266437] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12574), 1, - sym_identifier, - STATE(2995), 1, - sym__assignment_pattern_parenthesized, - STATE(7440), 1, - sym__var, - STATE(8558), 1, - sym_comment, - STATE(8921), 1, - sym_val_variable, - STATE(10316), 1, - sym__variable_name, - [266462] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12574), 1, - sym_identifier, - STATE(2997), 1, - sym__assignment_pattern_parenthesized, - STATE(7440), 1, - sym__var, - STATE(8559), 1, - sym_comment, - STATE(8921), 1, - sym_val_variable, - STATE(10316), 1, - sym__variable_name, - [266487] = 7, + anon_sym_RBRACE, + [266313] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, + ACTIONS(13895), 1, anon_sym_LPAREN, - ACTIONS(14520), 1, + ACTIONS(13981), 1, anon_sym_DQUOTE2, - STATE(8560), 1, + STATE(8146), 1, sym_comment, - STATE(8638), 1, + STATE(8149), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9733), 1, + STATE(9124), 1, sym_expr_interpolated, - ACTIONS(14467), 2, + ACTIONS(13897), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [266510] = 7, + [266336] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1391), 1, + anon_sym_DOT, + ACTIONS(1409), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + STATE(8147), 1, + sym_comment, + STATE(10098), 1, + sym__immediate_decimal, + ACTIONS(1407), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [266359] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(3713), 1, + aux_sym_command_token1, + STATE(8148), 1, + sym_comment, + ACTIONS(3711), 5, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [266376] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, + ACTIONS(13895), 1, anon_sym_LPAREN, - ACTIONS(14522), 1, + ACTIONS(13983), 1, anon_sym_DQUOTE2, - STATE(8561), 1, + STATE(8149), 1, sym_comment, - STATE(8769), 1, + STATE(8162), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9733), 1, + STATE(9124), 1, sym_expr_interpolated, - ACTIONS(14467), 2, + ACTIONS(13897), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [266533] = 4, + [266399] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(3574), 1, + sym_identifier, + ACTIONS(3576), 1, + anon_sym_DOLLAR, + ACTIONS(12513), 1, + anon_sym_DOT, + ACTIONS(13985), 1, + aux_sym__immediate_decimal_token1, + STATE(8150), 1, + sym_comment, + [266424] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(8562), 1, + STATE(8151), 1, sym_comment, - ACTIONS(5221), 2, + ACTIONS(3646), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(5219), 4, + ACTIONS(3644), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [266550] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14362), 1, - anon_sym_def, - ACTIONS(14364), 1, - anon_sym_extern, - ACTIONS(14366), 1, - anon_sym_module, - ACTIONS(14368), 1, - anon_sym_use, - ACTIONS(14524), 1, - anon_sym_alias, - ACTIONS(14526), 1, - anon_sym_const, - STATE(8563), 1, - sym_comment, - [266575] = 7, + [266441] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, + ACTIONS(13895), 1, anon_sym_LPAREN, - ACTIONS(14528), 1, + ACTIONS(13987), 1, anon_sym_DQUOTE2, - STATE(8564), 1, + STATE(8152), 1, sym_comment, - STATE(8566), 1, + STATE(8155), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9733), 1, + STATE(9124), 1, sym_expr_interpolated, - ACTIONS(14467), 2, + ACTIONS(13897), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [266598] = 4, + [266464] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(8565), 1, + ACTIONS(4738), 1, + aux_sym_command_token1, + STATE(8153), 1, sym_comment, - ACTIONS(5225), 2, - ts_builtin_sym_end, + ACTIONS(4734), 5, + anon_sym_SEMI, anon_sym_LF, - ACTIONS(5223), 4, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_LF2, + [266481] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(13989), 1, + anon_sym_EQ, + STATE(8154), 1, + sym_comment, + ACTIONS(4725), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(4721), 3, anon_sym_SEMI, + anon_sym_LF, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [266615] = 7, + [266500] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, + ACTIONS(13895), 1, anon_sym_LPAREN, - ACTIONS(14530), 1, + ACTIONS(13991), 1, anon_sym_DQUOTE2, - STATE(8566), 1, + STATE(8155), 1, sym_comment, - STATE(8638), 1, + STATE(8162), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9733), 1, + STATE(9124), 1, sym_expr_interpolated, - ACTIONS(14467), 2, + ACTIONS(13897), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [266638] = 6, + [266523] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3951), 1, - sym__entry_separator, - ACTIONS(14532), 1, - anon_sym_DOT_DOT2, - STATE(8567), 1, + ACTIONS(13160), 1, + aux_sym__immediate_decimal_token1, + STATE(8156), 1, sym_comment, - ACTIONS(3949), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(14534), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [266659] = 4, + ACTIONS(4773), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(4771), 3, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, + [266542] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4293), 1, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + ACTIONS(3727), 1, + anon_sym_LPAREN2, + ACTIONS(13993), 1, aux_sym_command_token1, - STATE(8568), 1, + STATE(8157), 1, sym_comment, - ACTIONS(4291), 5, - anon_sym_SEMI, + ACTIONS(3725), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH, + [266563] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(8158), 1, + sym_comment, + ACTIONS(3759), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_RPAREN, + ACTIONS(3757), 4, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_LF2, - [266676] = 8, + anon_sym_DASH_DASH, + anon_sym_DASH, + [266580] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12574), 1, - sym_identifier, - STATE(3047), 1, - sym__assignment_pattern_parenthesized, - STATE(7440), 1, - sym__var, - STATE(8569), 1, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(3576), 1, + anon_sym_DASH_DASH, + ACTIONS(12513), 1, + anon_sym_DOT, + ACTIONS(13838), 1, + aux_sym__immediate_decimal_token1, + STATE(8159), 1, sym_comment, - STATE(8921), 1, - sym_val_variable, - STATE(10316), 1, - sym__variable_name, - [266701] = 4, + ACTIONS(3574), 2, + sym_identifier, + anon_sym_DASH, + [266603] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(8570), 1, + STATE(8160), 1, sym_comment, - ACTIONS(5229), 2, + ACTIONS(5115), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(5227), 4, + ACTIONS(5113), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [266718] = 4, + [266620] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(8571), 1, + STATE(8161), 1, sym_comment, - ACTIONS(5233), 2, + ACTIONS(5139), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(5231), 4, + ACTIONS(5137), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [266735] = 7, + [266637] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, + ACTIONS(13995), 1, anon_sym_LPAREN, - ACTIONS(14536), 1, + ACTIONS(14001), 1, anon_sym_DQUOTE2, - STATE(8572), 1, - sym_comment, - STATE(8573), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(9733), 1, + STATE(9124), 1, sym_expr_interpolated, - ACTIONS(14467), 2, + ACTIONS(13998), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [266758] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(14465), 1, - anon_sym_LPAREN, - ACTIONS(14538), 1, - anon_sym_DQUOTE2, - STATE(8573), 1, + STATE(8162), 2, sym_comment, - STATE(8638), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9733), 1, - sym_expr_interpolated, - ACTIONS(14467), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [266781] = 5, + [266658] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1290), 1, - anon_sym_LPAREN2, - ACTIONS(14236), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(8574), 1, + STATE(8163), 1, sym_comment, - ACTIONS(1243), 4, - anon_sym_DOLLAR, + ACTIONS(4198), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4196), 4, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, - [266800] = 7, + [266675] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(5029), 1, + aux_sym_command_token1, + STATE(8164), 1, + sym_comment, + ACTIONS(5027), 5, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_LF2, + [266692] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(14540), 1, + STATE(8165), 1, + sym_comment, + ACTIONS(1039), 6, + sym_cmd_identifier, + anon_sym_DASH_DASH, anon_sym_DOT, - STATE(8575), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [266707] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(13895), 1, + anon_sym_LPAREN, + ACTIONS(14003), 1, + anon_sym_DQUOTE2, + STATE(8166), 1, sym_comment, - STATE(8860), 1, - sym__immediate_decimal, - ACTIONS(1582), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [266823] = 4, + STATE(8168), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9124), 1, + sym_expr_interpolated, + ACTIONS(13897), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [266730] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1196), 1, + ACTIONS(14007), 1, aux_sym_command_token1, - STATE(8576), 1, + STATE(8167), 1, sym_comment, - ACTIONS(1194), 5, + ACTIONS(14005), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_LF2, - [266840] = 6, + [266747] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - ACTIONS(4037), 1, - anon_sym_LPAREN2, - STATE(8577), 1, + ACTIONS(13895), 1, + anon_sym_LPAREN, + ACTIONS(14009), 1, + anon_sym_DQUOTE2, + STATE(8162), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(8168), 1, sym_comment, - ACTIONS(1247), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(1249), 2, - ts_builtin_sym_end, - anon_sym_LF, - [266861] = 6, - ACTIONS(3), 1, + STATE(9124), 1, + sym_expr_interpolated, + ACTIONS(13897), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [266770] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9554), 1, - anon_sym_DOT, - STATE(4905), 1, - sym_path, - STATE(8578), 1, + ACTIONS(14011), 1, + ts_builtin_sym_end, + ACTIONS(14013), 1, + aux_sym_command_token1, + STATE(8137), 1, + aux_sym_command_repeat1, + STATE(8169), 1, sym_comment, - STATE(10392), 1, - sym_cell_path, - ACTIONS(8462), 3, + ACTIONS(13650), 3, + anon_sym_SEMI, + anon_sym_LF, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [266882] = 6, + [266791] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3966), 1, - sym__entry_separator, - ACTIONS(14542), 1, - anon_sym_DOT_DOT2, - STATE(8579), 1, + ACTIONS(6058), 1, + anon_sym_SEMI, + ACTIONS(6060), 1, + anon_sym_LF, + STATE(2372), 1, + sym__terminator, + STATE(8170), 1, sym_comment, - ACTIONS(3964), 2, - anon_sym_RBRACK, + STATE(8306), 1, + aux_sym__block_body_repeat1, + ACTIONS(14015), 2, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(14544), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [266903] = 4, + [266814] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(8580), 1, + ACTIONS(5033), 1, + aux_sym_command_token1, + STATE(8171), 1, sym_comment, - ACTIONS(5189), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5187), 4, + ACTIONS(5031), 5, anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [266920] = 4, - ACTIONS(113), 1, + anon_sym_LF2, + [266831] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(8581), 1, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(3312), 1, + anon_sym_DASH, + ACTIONS(12748), 1, + anon_sym_DOT, + STATE(8172), 1, sym_comment, - ACTIONS(5193), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5191), 4, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(3314), 3, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, - [266937] = 4, - ACTIONS(113), 1, + anon_sym_LBRACE, + [266852] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(8582), 1, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(12513), 1, + anon_sym_DOT, + ACTIONS(14017), 1, + aux_sym__immediate_decimal_token1, + STATE(8173), 1, sym_comment, - ACTIONS(5197), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5195), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [266954] = 4, + ACTIONS(3576), 2, + anon_sym_DOLLAR, + anon_sym_LBRACE, + [266875] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(8583), 1, - sym_comment, - ACTIONS(3876), 2, + ACTIONS(14013), 1, + aux_sym_command_token1, + ACTIONS(14019), 1, ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3874), 4, + STATE(8137), 1, + aux_sym_command_repeat1, + STATE(8174), 1, + sym_comment, + ACTIONS(13836), 3, anon_sym_SEMI, + anon_sym_LF, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [266971] = 4, + [266896] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(14021), 1, + anon_sym_alias, + ACTIONS(14023), 1, + anon_sym_const, + ACTIONS(14025), 1, + anon_sym_def, + ACTIONS(14027), 1, + anon_sym_extern, + ACTIONS(14029), 1, + anon_sym_module, + ACTIONS(14031), 1, + anon_sym_use, + STATE(8175), 1, + sym_comment, + [266921] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3868), 1, - aux_sym_command_token1, - STATE(8584), 1, + ACTIONS(7818), 1, + anon_sym_PIPE, + ACTIONS(14035), 1, + anon_sym_LF, + STATE(3549), 1, + aux_sym_pipe_element_repeat1, + STATE(8176), 1, sym_comment, - ACTIONS(3866), 5, + ACTIONS(14033), 3, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_RBRACE, - [266988] = 7, + [266942] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, + ACTIONS(13895), 1, anon_sym_LPAREN, - ACTIONS(14546), 1, + ACTIONS(14038), 1, anon_sym_DQUOTE2, - STATE(8585), 1, + STATE(8177), 1, sym_comment, - STATE(8586), 1, + STATE(8178), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9733), 1, + STATE(9124), 1, sym_expr_interpolated, - ACTIONS(14467), 2, + ACTIONS(13897), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [267011] = 7, + [266965] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, + ACTIONS(13895), 1, anon_sym_LPAREN, - ACTIONS(14548), 1, + ACTIONS(14040), 1, anon_sym_DQUOTE2, - STATE(8586), 1, - sym_comment, - STATE(8638), 1, + STATE(8162), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9733), 1, + STATE(8178), 1, + sym_comment, + STATE(9124), 1, sym_expr_interpolated, - ACTIONS(14467), 2, + ACTIONS(13897), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [267034] = 7, + [266988] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, + ACTIONS(13895), 1, anon_sym_LPAREN, - ACTIONS(14550), 1, + ACTIONS(14042), 1, anon_sym_DQUOTE2, - STATE(8587), 1, + STATE(8179), 1, sym_comment, - STATE(8599), 1, + STATE(8185), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9733), 1, + STATE(9124), 1, sym_expr_interpolated, - ACTIONS(14467), 2, + ACTIONS(13897), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [267057] = 6, + [267011] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + ACTIONS(4422), 1, + anon_sym_DASH, + STATE(8180), 1, + sym_comment, + STATE(10434), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4424), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [267032] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8304), 1, - anon_sym_PIPE, - ACTIONS(14554), 1, - anon_sym_LF, - STATE(4015), 1, - aux_sym_pipe_element_repeat1, - STATE(8588), 1, + ACTIONS(4957), 1, + aux_sym_command_token1, + STATE(8181), 1, sym_comment, - ACTIONS(14552), 3, + ACTIONS(4955), 5, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_RBRACE, - [267078] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(14557), 1, - aux_sym__immediate_decimal_token2, - STATE(8589), 1, - sym_comment, - ACTIONS(2547), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(2549), 3, - anon_sym_LPAREN2, - anon_sym_DOT, - sym__entry_separator, - [267097] = 8, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(2847), 1, - anon_sym_LPAREN2, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(3748), 1, - anon_sym_RBRACK, - ACTIONS(3750), 1, - sym__entry_separator, - ACTIONS(13169), 1, - anon_sym_DOT, - ACTIONS(14559), 1, - aux_sym__immediate_decimal_token1, - STATE(8590), 1, - sym_comment, - [267122] = 5, + [267049] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14561), 1, - anon_sym_EQ, - STATE(8591), 1, - sym_comment, - ACTIONS(5015), 2, - ts_builtin_sym_end, + ACTIONS(4961), 1, aux_sym_command_token1, - ACTIONS(5011), 3, + STATE(8182), 1, + sym_comment, + ACTIONS(4959), 5, anon_sym_SEMI, anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, - [267141] = 4, + anon_sym_RBRACE, + [267066] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(8592), 1, - sym_comment, - ACTIONS(5237), 2, - ts_builtin_sym_end, + ACTIONS(7818), 1, + anon_sym_PIPE, + ACTIONS(14046), 1, anon_sym_LF, - ACTIONS(5235), 4, + STATE(3560), 1, + aux_sym_pipe_element_repeat1, + STATE(8183), 1, + sym_comment, + ACTIONS(14044), 3, anon_sym_SEMI, - anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [267087] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(8184), 1, + sym_comment, + ACTIONS(1043), 6, + sym_cmd_identifier, anon_sym_DASH_DASH, - anon_sym_DASH, - [267158] = 4, + anon_sym_DOT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [267102] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(13895), 1, + anon_sym_LPAREN, + ACTIONS(14049), 1, + anon_sym_DQUOTE2, + STATE(8162), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(8185), 1, + sym_comment, + STATE(9124), 1, + sym_expr_interpolated, + ACTIONS(13897), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [267125] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1196), 1, + ACTIONS(4965), 1, aux_sym_command_token1, - STATE(8593), 1, + STATE(8186), 1, sym_comment, - ACTIONS(1194), 5, + ACTIONS(4963), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [267175] = 4, + [267142] = 7, ACTIONS(113), 1, anon_sym_POUND, - STATE(8594), 1, + ACTIONS(13895), 1, + anon_sym_LPAREN, + ACTIONS(14051), 1, + anon_sym_DQUOTE2, + STATE(8187), 1, sym_comment, - ACTIONS(5241), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5239), 4, - anon_sym_SEMI, + STATE(8189), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9124), 1, + sym_expr_interpolated, + ACTIONS(13897), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [267165] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(12513), 1, + anon_sym_DOT, + ACTIONS(14053), 1, + aux_sym__immediate_decimal_token1, + STATE(8188), 1, + sym_comment, + ACTIONS(3576), 3, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [267192] = 7, + anon_sym_if, + anon_sym_EQ_GT, + [267186] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, + ACTIONS(13895), 1, anon_sym_LPAREN, - ACTIONS(14563), 1, + ACTIONS(14055), 1, anon_sym_DQUOTE2, - STATE(8595), 1, - sym_comment, - STATE(8597), 1, + STATE(8162), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9733), 1, + STATE(8189), 1, + sym_comment, + STATE(9124), 1, sym_expr_interpolated, - ACTIONS(14467), 2, + ACTIONS(13897), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [267215] = 4, + [267209] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(8596), 1, + ACTIONS(1161), 1, + anon_sym_LBRACE, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + ACTIONS(3727), 1, + anon_sym_LPAREN2, + STATE(8190), 1, sym_comment, - ACTIONS(4008), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4006), 4, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1159), 3, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, - [267232] = 7, + [267230] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, + ACTIONS(13895), 1, anon_sym_LPAREN, - ACTIONS(14565), 1, + ACTIONS(14057), 1, anon_sym_DQUOTE2, - STATE(8597), 1, + STATE(8191), 1, sym_comment, - STATE(8638), 1, + STATE(8192), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9733), 1, + STATE(9124), 1, sym_expr_interpolated, - ACTIONS(14467), 2, + ACTIONS(13897), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [267255] = 5, + [267253] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14405), 1, - aux_sym__immediate_decimal_token2, - STATE(8598), 1, + ACTIONS(13895), 1, + anon_sym_LPAREN, + ACTIONS(14059), 1, + anon_sym_DQUOTE2, + STATE(8162), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(8192), 1, sym_comment, - ACTIONS(2437), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(2439), 3, + STATE(9124), 1, + sym_expr_interpolated, + ACTIONS(13897), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [267276] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(8193), 1, + sym_comment, + ACTIONS(1157), 2, + anon_sym_LBRACE, anon_sym_LPAREN2, - anon_sym_DOT, - sym__entry_separator, - [267274] = 7, + ACTIONS(1155), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + aux_sym_unquoted_token6, + [267293] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13640), 1, + anon_sym_def, + ACTIONS(13642), 1, + anon_sym_extern, + ACTIONS(13644), 1, + anon_sym_module, + ACTIONS(13646), 1, + anon_sym_use, + ACTIONS(14061), 1, + anon_sym_alias, + ACTIONS(14063), 1, + anon_sym_const, + STATE(8194), 1, + sym_comment, + [267318] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, + ACTIONS(13895), 1, anon_sym_LPAREN, - ACTIONS(14567), 1, + ACTIONS(14065), 1, anon_sym_DQUOTE2, - STATE(8599), 1, + STATE(8195), 1, sym_comment, - STATE(8638), 1, + STATE(8197), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9733), 1, + STATE(9124), 1, sym_expr_interpolated, - ACTIONS(14467), 2, + ACTIONS(13897), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [267297] = 6, + [267341] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14569), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14571), 1, - aux_sym_unquoted_token2, - STATE(8600), 1, + ACTIONS(13640), 1, + anon_sym_def, + ACTIONS(13642), 1, + anon_sym_extern, + ACTIONS(13644), 1, + anon_sym_module, + ACTIONS(13646), 1, + anon_sym_use, + ACTIONS(14067), 1, + anon_sym_alias, + ACTIONS(14069), 1, + anon_sym_const, + STATE(8196), 1, sym_comment, - ACTIONS(936), 2, - sym_identifier, - anon_sym_DASH, - ACTIONS(938), 2, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [267318] = 4, + [267366] = 7, ACTIONS(113), 1, anon_sym_POUND, - STATE(8601), 1, + ACTIONS(13895), 1, + anon_sym_LPAREN, + ACTIONS(14071), 1, + anon_sym_DQUOTE2, + STATE(8162), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(8197), 1, sym_comment, - ACTIONS(6647), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6645), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_else, - anon_sym_catch, - [267335] = 4, + STATE(9124), 1, + sym_expr_interpolated, + ACTIONS(13897), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [267389] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(8602), 1, + ACTIONS(9919), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(8198), 1, sym_comment, - ACTIONS(5213), 2, + ACTIONS(1209), 2, ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5211), 4, + aux_sym_command_token1, + ACTIONS(1139), 3, anon_sym_SEMI, + anon_sym_LF, anon_sym_PIPE, - anon_sym_DASH_DASH, + [267408] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + ACTIONS(4426), 1, anon_sym_DASH, - [267352] = 5, + STATE(8199), 1, + sym_comment, + STATE(10434), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4428), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [267429] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14474), 1, - aux_sym__immediate_decimal_token2, - STATE(8603), 1, + ACTIONS(13895), 1, + anon_sym_LPAREN, + ACTIONS(14073), 1, + anon_sym_DQUOTE2, + STATE(8200), 1, sym_comment, - ACTIONS(2581), 2, - anon_sym_RBRACK, - aux_sym_unquoted_token2, - ACTIONS(2583), 3, - anon_sym_LPAREN2, - anon_sym_DOT, - sym__entry_separator, - [267371] = 7, + STATE(8201), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9124), 1, + sym_expr_interpolated, + ACTIONS(13897), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [267452] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, + ACTIONS(13895), 1, anon_sym_LPAREN, - ACTIONS(14573), 1, + ACTIONS(14075), 1, anon_sym_DQUOTE2, - STATE(8604), 1, - sym_comment, - STATE(8605), 1, + STATE(8162), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9733), 1, + STATE(8201), 1, + sym_comment, + STATE(9124), 1, sym_expr_interpolated, - ACTIONS(14467), 2, + ACTIONS(13897), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [267394] = 7, + [267475] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5725), 1, + anon_sym_DOLLAR, + ACTIONS(12254), 1, + sym_identifier, + STATE(2545), 1, + sym__assignment_pattern_parenthesized, + STATE(7000), 1, + sym__var, + STATE(8202), 1, + sym_comment, + STATE(8718), 1, + sym_val_variable, + STATE(9829), 1, + sym__variable_name, + [267500] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2356), 1, + aux_sym_unquoted_token2, + ACTIONS(13971), 1, + aux_sym__immediate_decimal_token2, + STATE(8203), 1, + sym_comment, + ACTIONS(2358), 4, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT, + [267519] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, + ACTIONS(13895), 1, anon_sym_LPAREN, - ACTIONS(14575), 1, + ACTIONS(14077), 1, anon_sym_DQUOTE2, - STATE(8605), 1, + STATE(8204), 1, sym_comment, - STATE(8638), 1, + STATE(8207), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9733), 1, + STATE(9124), 1, sym_expr_interpolated, - ACTIONS(14467), 2, + ACTIONS(13897), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [267417] = 5, + [267542] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14579), 1, - anon_sym_LF, - ACTIONS(14581), 1, - anon_sym_else, - STATE(8606), 1, + ACTIONS(1149), 1, + aux_sym_unquoted_token6, + ACTIONS(3783), 1, + anon_sym_LPAREN2, + STATE(8205), 1, sym_comment, - ACTIONS(14577), 4, + ACTIONS(1089), 2, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [267436] = 8, + ACTIONS(1091), 2, + ts_builtin_sym_end, + anon_sym_LF, + [267563] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14583), 1, - anon_sym_alias, - ACTIONS(14585), 1, - anon_sym_const, - ACTIONS(14587), 1, - anon_sym_def, - ACTIONS(14589), 1, - anon_sym_extern, - ACTIONS(14591), 1, - anon_sym_module, - ACTIONS(14593), 1, - anon_sym_use, - STATE(8607), 1, + ACTIONS(5725), 1, + anon_sym_DOLLAR, + ACTIONS(12254), 1, + sym_identifier, + STATE(2546), 1, + sym__assignment_pattern_parenthesized, + STATE(7000), 1, + sym__var, + STATE(8206), 1, + sym_comment, + STATE(8718), 1, + sym_val_variable, + STATE(9829), 1, + sym__variable_name, + [267588] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(13895), 1, + anon_sym_LPAREN, + ACTIONS(14079), 1, + anon_sym_DQUOTE2, + STATE(8162), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(8207), 1, + sym_comment, + STATE(9124), 1, + sym_expr_interpolated, + ACTIONS(13897), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [267611] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5725), 1, + anon_sym_DOLLAR, + ACTIONS(12254), 1, + sym_identifier, + STATE(2547), 1, + sym__assignment_pattern_parenthesized, + STATE(7000), 1, + sym__var, + STATE(8208), 1, sym_comment, - [267461] = 6, + STATE(8718), 1, + sym_val_variable, + STATE(9829), 1, + sym__variable_name, + [267636] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9554), 1, + ACTIONS(11509), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(14081), 1, anon_sym_DOT, - STATE(4905), 1, - sym_path, - STATE(8608), 1, + STATE(8209), 1, sym_comment, - STATE(10285), 1, - sym_cell_path, - ACTIONS(8415), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [267482] = 4, + ACTIONS(2356), 2, + sym_identifier, + anon_sym_DASH, + ACTIONS(2358), 2, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [267657] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(13895), 1, + anon_sym_LPAREN, + ACTIONS(14083), 1, + anon_sym_DQUOTE2, + STATE(8210), 1, + sym_comment, + STATE(8212), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9124), 1, + sym_expr_interpolated, + ACTIONS(13897), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [267680] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5185), 1, + ACTIONS(14013), 1, aux_sym_command_token1, - STATE(8609), 1, + ACTIONS(14085), 1, + ts_builtin_sym_end, + STATE(8174), 1, + aux_sym_command_repeat1, + STATE(8211), 1, sym_comment, - ACTIONS(5183), 5, + ACTIONS(13771), 3, anon_sym_SEMI, anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [267499] = 7, - ACTIONS(3), 1, + [267701] = 7, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2845), 1, - anon_sym_DASH_DASH, - ACTIONS(2847), 1, - anon_sym_LPAREN2, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(13169), 1, - anon_sym_DOT, - STATE(8610), 1, + ACTIONS(13895), 1, + anon_sym_LPAREN, + ACTIONS(14087), 1, + anon_sym_DQUOTE2, + STATE(8162), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(8212), 1, sym_comment, - ACTIONS(2843), 2, - sym_identifier, - anon_sym_DASH, - [267522] = 7, + STATE(9124), 1, + sym_expr_interpolated, + ACTIONS(13897), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [267724] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, + ACTIONS(13895), 1, anon_sym_LPAREN, - ACTIONS(14595), 1, + ACTIONS(14089), 1, anon_sym_DQUOTE2, - STATE(8611), 1, + STATE(8213), 1, sym_comment, - STATE(8612), 1, + STATE(8214), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9733), 1, + STATE(9124), 1, sym_expr_interpolated, - ACTIONS(14467), 2, + ACTIONS(13897), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [267545] = 7, + [267747] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, + ACTIONS(13895), 1, anon_sym_LPAREN, - ACTIONS(14597), 1, + ACTIONS(14091), 1, anon_sym_DQUOTE2, - STATE(8612), 1, - sym_comment, - STATE(8638), 1, + STATE(8162), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9733), 1, + STATE(8214), 1, + sym_comment, + STATE(9124), 1, sym_expr_interpolated, - ACTIONS(14467), 2, + ACTIONS(13897), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [267568] = 5, + [267770] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5083), 1, + ACTIONS(4734), 1, sym_cmd_identifier, - ACTIONS(14599), 1, - aux_sym__immediate_decimal_token1, - STATE(8613), 1, + ACTIONS(14093), 1, + sym_long_flag_identifier, + STATE(8215), 1, sym_comment, - ACTIONS(5085), 4, + ACTIONS(4738), 4, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [267587] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3520), 1, - anon_sym_LBRACE, - ACTIONS(14601), 1, - anon_sym_DOT_DOT2, - STATE(8614), 1, - sym_comment, - ACTIONS(1934), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(14603), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [267608] = 4, + [267789] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3966), 1, - aux_sym_command_token1, - STATE(8615), 1, + ACTIONS(13895), 1, + anon_sym_LPAREN, + ACTIONS(14095), 1, + anon_sym_DQUOTE2, + STATE(8216), 1, sym_comment, - ACTIONS(3964), 5, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_LF2, - [267625] = 4, + STATE(8217), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9124), 1, + sym_expr_interpolated, + ACTIONS(13897), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [267812] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5221), 1, - aux_sym_command_token1, - STATE(8616), 1, + ACTIONS(13895), 1, + anon_sym_LPAREN, + ACTIONS(14097), 1, + anon_sym_DQUOTE2, + STATE(8162), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(8217), 1, sym_comment, - ACTIONS(5219), 5, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_LF2, - [267642] = 5, - ACTIONS(3), 1, + STATE(9124), 1, + sym_expr_interpolated, + ACTIONS(13897), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [267835] = 7, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14605), 1, - aux_sym__immediate_decimal_token2, - STATE(8617), 1, + ACTIONS(13895), 1, + anon_sym_LPAREN, + ACTIONS(14099), 1, + anon_sym_DQUOTE2, + STATE(8218), 1, sym_comment, - ACTIONS(2547), 2, - sym_identifier, - aux_sym_unquoted_token2, - ACTIONS(2549), 3, - anon_sym_DOLLAR, - anon_sym_LPAREN2, - anon_sym_DOT, - [267661] = 4, + STATE(8219), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9124), 1, + sym_expr_interpolated, + ACTIONS(13897), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [267858] = 7, ACTIONS(113), 1, anon_sym_POUND, - STATE(8618), 1, + ACTIONS(13895), 1, + anon_sym_LPAREN, + ACTIONS(14101), 1, + anon_sym_DQUOTE2, + STATE(8162), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(8219), 1, sym_comment, - ACTIONS(1282), 2, - anon_sym_LBRACE, - anon_sym_LPAREN2, - ACTIONS(1280), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - aux_sym_unquoted_token6, - [267678] = 4, + STATE(9124), 1, + sym_expr_interpolated, + ACTIONS(13897), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [267881] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14609), 1, - anon_sym_COMMA, - STATE(8619), 1, + ACTIONS(13636), 1, + anon_sym_alias, + ACTIONS(13638), 1, + anon_sym_const, + ACTIONS(13640), 1, + anon_sym_def, + ACTIONS(13642), 1, + anon_sym_extern, + ACTIONS(13644), 1, + anon_sym_module, + ACTIONS(13646), 1, + anon_sym_use, + STATE(8220), 1, sym_comment, - ACTIONS(14607), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [267695] = 7, + [267906] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2851), 1, + ACTIONS(2229), 1, aux_sym_unquoted_token2, - ACTIONS(3750), 1, - anon_sym_DASH_DASH, - ACTIONS(13169), 1, - anon_sym_DOT, - ACTIONS(14336), 1, + ACTIONS(14103), 1, aux_sym__immediate_decimal_token1, - STATE(8620), 1, + ACTIONS(14105), 1, + aux_sym__immediate_decimal_token2, + STATE(8221), 1, sym_comment, - ACTIONS(3748), 2, - sym_identifier, - anon_sym_DASH, - [267718] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2397), 1, + ACTIONS(2231), 3, + anon_sym_LBRACE, anon_sym_LPAREN2, - ACTIONS(4323), 1, - anon_sym_DASH, - STATE(8621), 1, - sym_comment, - STATE(11424), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4325), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [267739] = 5, + anon_sym_DOT, + [267927] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5079), 1, - anon_sym_LF, - ACTIONS(14611), 1, - sym_long_flag_identifier, - STATE(8622), 1, + ACTIONS(3743), 1, + aux_sym_command_token1, + STATE(8222), 1, sym_comment, - ACTIONS(5075), 4, + ACTIONS(3741), 5, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [267758] = 5, + anon_sym_LF2, + [267944] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_LF, - ACTIONS(9206), 1, - aux_sym_unquoted_token5, - STATE(8623), 1, + ACTIONS(5243), 1, + aux_sym_command_token1, + STATE(8223), 1, sym_comment, - ACTIONS(959), 4, + ACTIONS(5241), 5, anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [267777] = 7, + anon_sym_LF2, + [267961] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, + ACTIONS(14107), 1, + aux_sym__immediate_decimal_token2, + STATE(8224), 1, + sym_comment, + ACTIONS(2362), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(2364), 3, + anon_sym_LPAREN2, + anon_sym_DOT, + sym__entry_separator, + [267980] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(13895), 1, anon_sym_LPAREN, - ACTIONS(14613), 1, + ACTIONS(14109), 1, anon_sym_DQUOTE2, - STATE(8624), 1, + STATE(8225), 1, sym_comment, - STATE(8627), 1, + STATE(8226), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9733), 1, + STATE(9124), 1, sym_expr_interpolated, - ACTIONS(14467), 2, + ACTIONS(13897), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [267800] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(5225), 1, - aux_sym_command_token1, - STATE(8625), 1, - sym_comment, - ACTIONS(5223), 5, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_LF2, - [267817] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(9194), 1, - aux_sym_unquoted_token5, - STATE(8626), 1, - sym_comment, - ACTIONS(961), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(959), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - [267836] = 7, + [268003] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, + ACTIONS(13895), 1, anon_sym_LPAREN, - ACTIONS(14615), 1, + ACTIONS(14111), 1, anon_sym_DQUOTE2, - STATE(8627), 1, - sym_comment, - STATE(8638), 1, + STATE(8162), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9733), 1, + STATE(8226), 1, + sym_comment, + STATE(9124), 1, sym_expr_interpolated, - ACTIONS(14467), 2, + ACTIONS(13897), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [267859] = 6, + [268026] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14617), 1, - anon_sym_DOT, - ACTIONS(14620), 1, + ACTIONS(14113), 1, aux_sym__immediate_decimal_token2, - STATE(8628), 1, + STATE(8227), 1, sym_comment, - ACTIONS(2581), 2, + ACTIONS(2356), 2, anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(2583), 2, + aux_sym_unquoted_token2, + ACTIONS(2358), 3, anon_sym_LPAREN2, + anon_sym_DOT, sym__entry_separator, - [267880] = 5, + [268045] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5075), 1, - sym_cmd_identifier, - ACTIONS(14622), 1, - sym_long_flag_identifier, - STATE(8629), 1, + ACTIONS(9067), 1, + anon_sym_DOT, + STATE(4486), 1, + sym_path, + STATE(8228), 1, sym_comment, - ACTIONS(5079), 4, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [267899] = 7, + STATE(9890), 1, + sym_cell_path, + ACTIONS(7946), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [268066] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, + ACTIONS(13895), 1, anon_sym_LPAREN, - ACTIONS(14624), 1, + ACTIONS(14115), 1, anon_sym_DQUOTE2, - STATE(8630), 1, - sym_comment, - STATE(8637), 1, + STATE(8162), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9733), 1, + STATE(8229), 1, + sym_comment, + STATE(9124), 1, sym_expr_interpolated, - ACTIONS(14467), 2, + ACTIONS(13897), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [267922] = 6, + [268089] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(14117), 1, + anon_sym_DOT_DOT2, + STATE(8230), 1, + sym_comment, + ACTIONS(14119), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3693), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [268108] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3518), 1, - anon_sym_DASH, - ACTIONS(14626), 1, + ACTIONS(14121), 1, anon_sym_DOT_DOT2, - STATE(8631), 1, + STATE(8231), 1, sym_comment, - ACTIONS(3520), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(14628), 2, + ACTIONS(14123), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [267943] = 7, + ACTIONS(3701), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [268127] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, - anon_sym_LPAREN, - ACTIONS(14630), 1, - anon_sym_DQUOTE2, - STATE(8632), 1, + ACTIONS(5247), 1, + aux_sym_command_token1, + STATE(8232), 1, sym_comment, - STATE(8660), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(9733), 1, - sym_expr_interpolated, - ACTIONS(14467), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [267966] = 6, + ACTIONS(5245), 5, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_LF2, + [268144] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(14113), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(14125), 1, + anon_sym_DOT, + STATE(8233), 1, + sym_comment, + ACTIONS(2356), 2, + anon_sym_RBRACK, + aux_sym_unquoted_token2, + ACTIONS(2358), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [268165] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3520), 1, - anon_sym_in, - ACTIONS(14632), 1, + ACTIONS(14128), 1, anon_sym_DOT_DOT2, - STATE(8633), 1, + STATE(8234), 1, sym_comment, - ACTIONS(1934), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(14634), 2, + ACTIONS(14130), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [267987] = 7, + ACTIONS(3713), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [268184] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1593), 1, - anon_sym_DOT, - ACTIONS(1611), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(1934), 1, + ACTIONS(3356), 1, + anon_sym_DASH_DASH, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3362), 1, aux_sym_unquoted_token2, - STATE(8634), 1, - sym_comment, - STATE(10700), 1, - sym__immediate_decimal, - ACTIONS(1609), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [268010] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(8635), 1, + ACTIONS(12513), 1, + anon_sym_DOT, + STATE(8235), 1, sym_comment, - ACTIONS(14636), 6, + ACTIONS(3354), 2, sym_identifier, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [268025] = 7, + anon_sym_DASH, + [268207] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, + ACTIONS(13895), 1, anon_sym_LPAREN, - ACTIONS(14638), 1, + ACTIONS(14132), 1, anon_sym_DQUOTE2, - STATE(8636), 1, + STATE(8236), 1, sym_comment, - STATE(8639), 1, + STATE(8237), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9733), 1, + STATE(9124), 1, sym_expr_interpolated, - ACTIONS(14467), 2, + ACTIONS(13897), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [268048] = 7, + [268230] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, + ACTIONS(13895), 1, anon_sym_LPAREN, - ACTIONS(14640), 1, + ACTIONS(14134), 1, anon_sym_DQUOTE2, - STATE(8637), 1, - sym_comment, - STATE(8638), 1, + STATE(8162), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9733), 1, - sym_expr_interpolated, - ACTIONS(14467), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [268071] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(14642), 1, - anon_sym_LPAREN, - ACTIONS(14648), 1, - anon_sym_DQUOTE2, - STATE(9733), 1, + STATE(8237), 1, + sym_comment, + STATE(9124), 1, sym_expr_interpolated, - ACTIONS(14645), 2, + ACTIONS(13897), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - STATE(8638), 2, - sym_comment, - aux_sym__inter_double_quotes_repeat1, - [268092] = 7, + [268253] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, + ACTIONS(13895), 1, anon_sym_LPAREN, - ACTIONS(14650), 1, + ACTIONS(14136), 1, anon_sym_DQUOTE2, - STATE(8638), 1, + STATE(8229), 1, aux_sym__inter_double_quotes_repeat1, - STATE(8639), 1, + STATE(8238), 1, sym_comment, - STATE(9733), 1, + STATE(9124), 1, sym_expr_interpolated, - ACTIONS(14467), 2, + ACTIONS(13897), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [268115] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(5209), 1, - aux_sym_command_token1, - STATE(8640), 1, - sym_comment, - ACTIONS(5207), 5, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_LF2, - [268132] = 4, + [268276] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(8641), 1, + STATE(8239), 1, sym_comment, - ACTIONS(3868), 2, + ACTIONS(4738), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3866), 4, + ACTIONS(4734), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [268149] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(3868), 1, - sym__entry_separator, - ACTIONS(14652), 1, - anon_sym_DOT_DOT2, - STATE(8642), 1, - sym_comment, - ACTIONS(3866), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(14654), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [268170] = 4, + [268293] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5213), 1, + ACTIONS(4999), 1, aux_sym_command_token1, - STATE(8643), 1, + STATE(8240), 1, sym_comment, - ACTIONS(5211), 5, + ACTIONS(4997), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_LF2, - [268187] = 4, + anon_sym_RBRACE, + [268310] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3354), 1, + anon_sym_DASH, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(12513), 1, + anon_sym_DOT, + STATE(8241), 1, + sym_comment, + ACTIONS(3356), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [268331] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3868), 1, - aux_sym_command_token1, - STATE(8644), 1, + ACTIONS(13895), 1, + anon_sym_LPAREN, + ACTIONS(14138), 1, + anon_sym_DQUOTE2, + STATE(8076), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(8242), 1, sym_comment, - ACTIONS(3866), 5, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_LF2, - [268204] = 6, + STATE(9124), 1, + sym_expr_interpolated, + ACTIONS(13897), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [268354] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2581), 1, + ACTIONS(920), 1, + anon_sym_DASH, + ACTIONS(10110), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14140), 1, aux_sym_unquoted_token2, - ACTIONS(14656), 1, - anon_sym_DOT, - ACTIONS(14659), 1, - aux_sym__immediate_decimal_token2, - STATE(8645), 1, + STATE(8243), 1, sym_comment, - ACTIONS(2583), 3, + ACTIONS(922), 3, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_LPAREN2, - [268225] = 8, + [268375] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6247), 1, + ACTIONS(3707), 1, + anon_sym_COLON, + ACTIONS(10378), 1, anon_sym_DOLLAR, - ACTIONS(12574), 1, + ACTIONS(14142), 1, sym_identifier, - STATE(3033), 1, - sym__assignment_pattern, - STATE(7440), 1, + STATE(1322), 1, sym__var, - STATE(8646), 1, - sym_comment, - STATE(8921), 1, + STATE(2300), 1, sym_val_variable, - STATE(10445), 1, + STATE(2383), 1, sym__variable_name, - [268250] = 5, + STATE(8244), 1, + sym_comment, + [268400] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(8245), 1, + sym_comment, + ACTIONS(14144), 6, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [268415] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14663), 1, - anon_sym_LF, - ACTIONS(14665), 1, - anon_sym_catch, - STATE(8647), 1, + ACTIONS(14013), 1, + aux_sym_command_token1, + ACTIONS(14146), 1, + ts_builtin_sym_end, + STATE(8169), 1, + aux_sym_command_repeat1, + STATE(8246), 1, sym_comment, - ACTIONS(14661), 4, + ACTIONS(13868), 3, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LF, anon_sym_PIPE, - anon_sym_RBRACE, - [268269] = 4, + [268436] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4045), 1, + ACTIONS(5007), 1, aux_sym_command_token1, - STATE(8648), 1, + STATE(8247), 1, sym_comment, - ACTIONS(4043), 5, + ACTIONS(5005), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [268286] = 6, + [268453] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14667), 1, - ts_builtin_sym_end, - ACTIONS(14669), 1, + ACTIONS(5021), 1, aux_sym_command_token1, - STATE(8649), 1, + STATE(8248), 1, sym_comment, - STATE(8721), 1, - aux_sym_command_repeat1, - ACTIONS(14326), 3, + ACTIONS(5019), 5, anon_sym_SEMI, anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, - [268307] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(14465), 1, - anon_sym_LPAREN, - ACTIONS(14671), 1, - anon_sym_DQUOTE2, - STATE(8650), 1, - sym_comment, - STATE(8653), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(9733), 1, - sym_expr_interpolated, - ACTIONS(14467), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [268330] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12574), 1, - sym_identifier, - STATE(3063), 1, - sym__assignment_pattern, - STATE(7440), 1, - sym__var, - STATE(8651), 1, - sym_comment, - STATE(8921), 1, - sym_val_variable, - STATE(10445), 1, - sym__variable_name, - [268355] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12574), 1, - sym_identifier, - STATE(2953), 1, - sym__assignment_pattern, - STATE(7440), 1, - sym__var, - STATE(8652), 1, - sym_comment, - STATE(8921), 1, - sym_val_variable, - STATE(10445), 1, - sym__variable_name, - [268380] = 7, + anon_sym_RBRACE, + [268470] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, - anon_sym_LPAREN, - ACTIONS(14673), 1, - anon_sym_DQUOTE2, - STATE(8638), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(8653), 1, + ACTIONS(5025), 1, + aux_sym_command_token1, + STATE(8249), 1, sym_comment, - STATE(9733), 1, - sym_expr_interpolated, - ACTIONS(14467), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [268403] = 4, + ACTIONS(5023), 5, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [268487] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5173), 1, + ACTIONS(5029), 1, aux_sym_command_token1, - STATE(8654), 1, + STATE(8250), 1, sym_comment, - ACTIONS(5171), 5, + ACTIONS(5027), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [268420] = 4, - ACTIONS(3), 1, + [268504] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14677), 1, - anon_sym_COMMA, - STATE(8655), 1, + ACTIONS(3693), 1, + sym__entry_separator, + ACTIONS(14148), 1, + anon_sym_DOT_DOT2, + STATE(8251), 1, sym_comment, - ACTIONS(14675), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [268437] = 6, + ACTIONS(3691), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(14150), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [268525] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1284), 1, - aux_sym_unquoted_token6, - ACTIONS(4895), 1, - anon_sym_LPAREN2, - STATE(8656), 1, + ACTIONS(5033), 1, + aux_sym_command_token1, + STATE(8252), 1, sym_comment, - ACTIONS(1158), 2, + ACTIONS(5031), 5, anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(1160), 2, - ts_builtin_sym_end, anon_sym_LF, - [268458] = 6, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [268542] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2843), 1, + ACTIONS(1024), 1, anon_sym_DASH, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(13169), 1, - anon_sym_DOT, - STATE(8657), 1, + ACTIONS(14152), 1, + anon_sym_QMARK2, + STATE(8253), 1, sym_comment, - ACTIONS(2845), 3, + ACTIONS(1026), 4, + sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [268479] = 5, + anon_sym_DOT, + [268561] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14679), 1, - sym_long_flag_identifier, - STATE(8658), 1, + ACTIONS(10120), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(8254), 1, sym_comment, - ACTIONS(5079), 2, + ACTIONS(1209), 2, ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(5075), 3, + anon_sym_LPAREN2, + ACTIONS(1139), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_PIPE, - [268498] = 8, - ACTIONS(113), 1, + [268580] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2847), 1, - anon_sym_LPAREN2, - ACTIONS(2851), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(3748), 1, - anon_sym_RBRACK, - ACTIONS(3750), 1, - sym__entry_separator, - ACTIONS(13169), 1, + ACTIONS(1381), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(14154), 1, anon_sym_DOT, - ACTIONS(14681), 1, - aux_sym__immediate_decimal_token1, - STATE(8659), 1, + STATE(8255), 1, sym_comment, - [268523] = 7, - ACTIONS(113), 1, + STATE(8682), 1, + sym__immediate_decimal, + ACTIONS(1379), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [268603] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14465), 1, - anon_sym_LPAREN, - ACTIONS(14683), 1, - anon_sym_DQUOTE2, - STATE(8638), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(8660), 1, + ACTIONS(1391), 1, + anon_sym_DOT, + ACTIONS(1409), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + STATE(8256), 1, sym_comment, - STATE(9733), 1, - sym_expr_interpolated, - ACTIONS(14467), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [268546] = 4, - ACTIONS(113), 1, + STATE(10176), 1, + sym__immediate_decimal, + ACTIONS(1407), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [268626] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(8661), 1, + ACTIONS(1024), 1, + anon_sym_DASH, + ACTIONS(14152), 1, + anon_sym_QMARK2, + STATE(8257), 1, sym_comment, - ACTIONS(3520), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3518), 4, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1026), 4, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, - [268563] = 7, - ACTIONS(113), 1, + anon_sym_DOT, + [268645] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14465), 1, - anon_sym_LPAREN, - ACTIONS(14685), 1, - anon_sym_DQUOTE2, - STATE(8662), 1, + ACTIONS(1002), 1, + anon_sym_DASH, + ACTIONS(14156), 1, + anon_sym_DOT, + STATE(6889), 1, + sym_cell_path, + STATE(8258), 1, sym_comment, - STATE(8664), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(9733), 1, - sym_expr_interpolated, - ACTIONS(14467), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [268586] = 4, + STATE(8261), 1, + sym_path, + ACTIONS(1004), 2, + anon_sym_DASH_DASH, + anon_sym_in, + [268668] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5079), 1, - aux_sym_command_token1, - STATE(8663), 1, + ACTIONS(4725), 1, + anon_sym_LF, + ACTIONS(14158), 1, + anon_sym_EQ, + STATE(8259), 1, sym_comment, - ACTIONS(5075), 5, + ACTIONS(4721), 4, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [268603] = 7, + [268687] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, - anon_sym_LPAREN, - ACTIONS(14687), 1, - anon_sym_DQUOTE2, - STATE(8638), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(8664), 1, + STATE(8260), 1, sym_comment, - STATE(9733), 1, - sym_expr_interpolated, - ACTIONS(14467), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [268626] = 6, + ACTIONS(5215), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5213), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [268704] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2843), 1, + ACTIONS(1010), 1, anon_sym_DASH, - ACTIONS(14689), 1, - anon_sym_DOT_DOT2, - STATE(8665), 1, + ACTIONS(14156), 1, + anon_sym_DOT, + STATE(6727), 1, + sym_path, + STATE(8261), 1, sym_comment, - ACTIONS(2845), 2, + STATE(8262), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1012), 2, anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(14691), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [268647] = 5, + anon_sym_in, + [268727] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2547), 1, - aux_sym_unquoted_token2, - ACTIONS(14693), 1, - aux_sym__immediate_decimal_token2, - STATE(8666), 1, + ACTIONS(1006), 1, + anon_sym_DASH, + ACTIONS(14156), 1, + anon_sym_DOT, + STATE(6727), 1, + sym_path, + STATE(8262), 1, + sym_comment, + STATE(8264), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1008), 2, + anon_sym_DASH_DASH, + anon_sym_in, + [268750] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(8263), 1, sym_comment, - ACTIONS(2549), 4, + ACTIONS(5219), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5217), 4, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT, - [268666] = 6, + anon_sym_DASH_DASH, + anon_sym_DASH, + [268767] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14695), 1, + ACTIONS(985), 1, + anon_sym_DASH, + ACTIONS(14160), 1, anon_sym_DOT, - ACTIONS(14698), 1, - aux_sym__immediate_decimal_token2, - STATE(8667), 1, + STATE(6727), 1, + sym_path, + ACTIONS(987), 2, + anon_sym_DASH_DASH, + anon_sym_in, + STATE(8264), 2, sym_comment, - ACTIONS(2581), 2, - sym_identifier, - aux_sym_unquoted_token2, - ACTIONS(2583), 2, - anon_sym_DOLLAR, - anon_sym_LPAREN2, - [268687] = 6, + aux_sym_cell_path_repeat1, + [268788] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4045), 1, + ACTIONS(3701), 1, sym__entry_separator, - ACTIONS(14700), 1, + ACTIONS(14163), 1, anon_sym_DOT_DOT2, - STATE(8668), 1, + STATE(8265), 1, sym_comment, - ACTIONS(4043), 2, + ACTIONS(3699), 2, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(14702), 2, + ACTIONS(14165), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [268708] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(14465), 1, - anon_sym_LPAREN, - ACTIONS(14704), 1, - anon_sym_DQUOTE2, - STATE(8669), 1, - sym_comment, - STATE(8671), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(9733), 1, - sym_expr_interpolated, - ACTIONS(14467), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [268731] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2581), 1, - aux_sym_unquoted_token2, - ACTIONS(14706), 1, - aux_sym__immediate_decimal_token2, - STATE(8670), 1, - sym_comment, - ACTIONS(2583), 4, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT, - [268750] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(14465), 1, - anon_sym_LPAREN, - ACTIONS(14708), 1, - anon_sym_DQUOTE2, - STATE(8638), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(8671), 1, - sym_comment, - STATE(9733), 1, - sym_expr_interpolated, - ACTIONS(14467), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [268773] = 4, + [268809] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5217), 1, + ACTIONS(3713), 1, aux_sym_command_token1, - STATE(8672), 1, + STATE(8266), 1, sym_comment, - ACTIONS(5215), 5, + ACTIONS(3711), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_LF2, - [268790] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(8673), 1, - sym_comment, - ACTIONS(2437), 3, - sym_identifier, - anon_sym_DASH, - aux_sym_unquoted_token2, - ACTIONS(2439), 3, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT, - [268807] = 6, + [268826] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(13169), 1, - anon_sym_DOT, - STATE(8674), 1, - sym_comment, - ACTIONS(2843), 2, + ACTIONS(6058), 1, anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(2845), 2, - ts_builtin_sym_end, + ACTIONS(6060), 1, anon_sym_LF, - [268828] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12574), 1, - sym_identifier, - STATE(3030), 1, - sym__assignment_pattern_parenthesized, - STATE(7440), 1, - sym__var, - STATE(8675), 1, - sym_comment, - STATE(8921), 1, - sym_val_variable, - STATE(10316), 1, - sym__variable_name, - [268853] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(8676), 1, + STATE(1977), 1, + aux_sym__block_body_repeat1, + STATE(2372), 1, + sym__terminator, + STATE(8267), 1, sym_comment, - ACTIONS(2547), 3, - sym_identifier, - anon_sym_DASH, - aux_sym_unquoted_token2, - ACTIONS(2549), 3, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT, - [268870] = 5, + ACTIONS(14167), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [268849] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10708), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(8677), 1, + ACTIONS(5243), 1, + aux_sym_command_token1, + STATE(8268), 1, sym_comment, - ACTIONS(1290), 2, - ts_builtin_sym_end, - anon_sym_LPAREN2, - ACTIONS(1243), 3, + ACTIONS(5241), 5, anon_sym_SEMI, anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, - [268889] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [268866] = 5, + ACTIONS(113), 1, anon_sym_POUND, - STATE(8678), 1, + ACTIONS(13854), 1, + aux_sym__immediate_decimal_token2, + STATE(8269), 1, sym_comment, - ACTIONS(3505), 3, - sym_identifier, - anon_sym_DASH, + ACTIONS(2229), 2, + anon_sym_RBRACK, aux_sym_unquoted_token2, - ACTIONS(3507), 3, - anon_sym_DASH_DASH, + ACTIONS(2231), 3, anon_sym_LPAREN2, anon_sym_DOT, - [268906] = 7, + sym__entry_separator, + [268885] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, - anon_sym_LPAREN, - ACTIONS(14710), 1, - anon_sym_DQUOTE2, - STATE(8513), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(8679), 1, + ACTIONS(5111), 1, + aux_sym_command_token1, + STATE(8270), 1, sym_comment, - STATE(9733), 1, - sym_expr_interpolated, - ACTIONS(14467), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [268929] = 4, + ACTIONS(5109), 5, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [268902] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5189), 1, + ACTIONS(5247), 1, aux_sym_command_token1, - STATE(8680), 1, + STATE(8271), 1, sym_comment, - ACTIONS(5187), 5, + ACTIONS(5245), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_LF2, - [268946] = 7, + anon_sym_RBRACE, + [268919] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, - anon_sym_LPAREN, - ACTIONS(14712), 1, - anon_sym_DQUOTE2, - STATE(8638), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(8681), 1, + ACTIONS(8799), 1, + aux_sym_unquoted_token5, + STATE(8272), 1, sym_comment, - STATE(9733), 1, - sym_expr_interpolated, - ACTIONS(14467), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [268969] = 7, + ACTIONS(940), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(938), 3, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, + [268938] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, + ACTIONS(13895), 1, anon_sym_LPAREN, - ACTIONS(14714), 1, + ACTIONS(14169), 1, anon_sym_DQUOTE2, - STATE(8682), 1, + STATE(8273), 1, sym_comment, - STATE(8684), 1, + STATE(8277), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9733), 1, + STATE(9124), 1, sym_expr_interpolated, - ACTIONS(14467), 2, + ACTIONS(13897), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [268992] = 6, - ACTIONS(113), 1, + [268961] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1249), 1, - anon_sym_LBRACE, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - ACTIONS(4037), 1, - anon_sym_LPAREN2, - STATE(8683), 1, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(3771), 1, + anon_sym_DASH, + ACTIONS(13087), 1, + anon_sym_DOT, + STATE(8274), 1, sym_comment, - ACTIONS(1247), 3, + ACTIONS(3773), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, - [269013] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(14465), 1, - anon_sym_LPAREN, - ACTIONS(14716), 1, - anon_sym_DQUOTE2, - STATE(8638), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(8684), 1, - sym_comment, - STATE(9733), 1, - sym_expr_interpolated, - ACTIONS(14467), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [269036] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(5193), 1, - aux_sym_command_token1, - STATE(8685), 1, - sym_comment, - ACTIONS(5191), 5, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_LF2, - [269053] = 6, + anon_sym_LBRACE, + [268982] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2845), 1, - anon_sym_in, - ACTIONS(14718), 1, + ACTIONS(3314), 1, + anon_sym_LBRACE, + ACTIONS(14171), 1, anon_sym_DOT_DOT2, - STATE(8686), 1, + STATE(8275), 1, sym_comment, - ACTIONS(2851), 2, + ACTIONS(1844), 2, anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(14720), 2, + ACTIONS(14173), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [269074] = 7, - ACTIONS(113), 1, + [269003] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14465), 1, - anon_sym_LPAREN, - ACTIONS(14722), 1, - anon_sym_DQUOTE2, - STATE(8687), 1, + ACTIONS(13955), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(14175), 1, + anon_sym_DOT, + STATE(8276), 1, sym_comment, - STATE(8688), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(9733), 1, - sym_expr_interpolated, - ACTIONS(14467), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [269097] = 7, + ACTIONS(2356), 2, + sym_identifier, + aux_sym_unquoted_token2, + ACTIONS(2358), 2, + anon_sym_DOLLAR, + anon_sym_LPAREN2, + [269024] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, + ACTIONS(13895), 1, anon_sym_LPAREN, - ACTIONS(14724), 1, + ACTIONS(14178), 1, anon_sym_DQUOTE2, - STATE(8638), 1, + STATE(8162), 1, aux_sym__inter_double_quotes_repeat1, - STATE(8688), 1, + STATE(8277), 1, sym_comment, - STATE(9733), 1, + STATE(9124), 1, sym_expr_interpolated, - ACTIONS(14467), 2, + ACTIONS(13897), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [269120] = 4, - ACTIONS(113), 1, + [269047] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(8689), 1, + ACTIONS(5725), 1, + anon_sym_DOLLAR, + ACTIONS(12254), 1, + sym_identifier, + STATE(2531), 1, + sym__assignment_pattern, + STATE(7000), 1, + sym__var, + STATE(8278), 1, sym_comment, - ACTIONS(1196), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1194), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [269137] = 7, + STATE(8718), 1, + sym_val_variable, + STATE(9822), 1, + sym__variable_name, + [269072] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, - anon_sym_LPAREN, - ACTIONS(14726), 1, - anon_sym_DQUOTE2, - STATE(8690), 1, + ACTIONS(3743), 1, + sym__entry_separator, + ACTIONS(14180), 1, + anon_sym_DOT_DOT2, + STATE(8279), 1, sym_comment, - STATE(8709), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(9733), 1, - sym_expr_interpolated, - ACTIONS(14467), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [269160] = 7, - ACTIONS(113), 1, + ACTIONS(3741), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(14182), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [269093] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14465), 1, - anon_sym_LPAREN, - ACTIONS(14728), 1, - anon_sym_DQUOTE2, - STATE(8691), 1, + ACTIONS(14184), 1, + anon_sym_DOT_DOT2, + STATE(8280), 1, sym_comment, - STATE(8692), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(9733), 1, - sym_expr_interpolated, - ACTIONS(14467), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [269183] = 7, - ACTIONS(113), 1, + ACTIONS(14186), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3743), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [269112] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14465), 1, - anon_sym_LPAREN, - ACTIONS(14730), 1, - anon_sym_DQUOTE2, - STATE(8638), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(8692), 1, + ACTIONS(2356), 1, + aux_sym_unquoted_token2, + ACTIONS(14188), 1, + anon_sym_DOT, + ACTIONS(14191), 1, + aux_sym__immediate_decimal_token2, + STATE(8281), 1, sym_comment, - STATE(9733), 1, - sym_expr_interpolated, - ACTIONS(14467), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [269206] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - ACTIONS(1275), 1, + ACTIONS(2358), 3, + anon_sym_DOLLAR, anon_sym_LBRACE, - ACTIONS(4631), 1, anon_sym_LPAREN2, - STATE(8693), 1, - sym_comment, - ACTIONS(1273), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - [269227] = 7, + [269133] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, - anon_sym_LPAREN, - ACTIONS(14732), 1, - anon_sym_DQUOTE2, - STATE(8694), 1, + ACTIONS(14195), 1, + anon_sym_LF, + ACTIONS(14197), 1, + anon_sym_catch, + STATE(8282), 1, sym_comment, - STATE(8696), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(9733), 1, - sym_expr_interpolated, - ACTIONS(14467), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [269250] = 5, + ACTIONS(14193), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [269152] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14698), 1, + ACTIONS(2356), 1, + anon_sym_DOT_DOT2, + ACTIONS(13582), 1, aux_sym__immediate_decimal_token2, - STATE(8695), 1, - sym_comment, - ACTIONS(2581), 2, - sym_identifier, - aux_sym_unquoted_token2, - ACTIONS(2583), 3, - anon_sym_DOLLAR, - anon_sym_LPAREN2, + ACTIONS(14199), 1, anon_sym_DOT, - [269269] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(14465), 1, - anon_sym_LPAREN, - ACTIONS(14734), 1, - anon_sym_DQUOTE2, - STATE(8638), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(8696), 1, - sym_comment, - STATE(9733), 1, - sym_expr_interpolated, - ACTIONS(14467), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [269292] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(10450), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14736), 1, - aux_sym_unquoted_token2, - STATE(8697), 1, + STATE(8283), 1, sym_comment, - ACTIONS(936), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(938), 2, - ts_builtin_sym_end, - anon_sym_LF, - [269313] = 7, - ACTIONS(113), 1, + ACTIONS(2358), 3, + anon_sym_in, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [269173] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14465), 1, - anon_sym_LPAREN, - ACTIONS(14738), 1, - anon_sym_DQUOTE2, - STATE(8698), 1, + ACTIONS(5725), 1, + anon_sym_DOLLAR, + ACTIONS(12254), 1, + sym_identifier, + STATE(2533), 1, + sym__assignment_pattern, + STATE(7000), 1, + sym__var, + STATE(8284), 1, sym_comment, - STATE(8700), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(9733), 1, - sym_expr_interpolated, - ACTIONS(14467), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [269336] = 7, + STATE(8718), 1, + sym_val_variable, + STATE(9822), 1, + sym__variable_name, + [269198] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2006), 1, + ACTIONS(3644), 1, + anon_sym_DASH, + ACTIONS(3650), 1, aux_sym_unquoted_token2, - ACTIONS(3876), 1, - anon_sym_DASH_DASH, - ACTIONS(3878), 1, - anon_sym_LPAREN2, - ACTIONS(13456), 1, + ACTIONS(13004), 1, anon_sym_DOT, - STATE(8699), 1, + STATE(8285), 1, sym_comment, - ACTIONS(3874), 2, - sym_identifier, - anon_sym_DASH, - [269359] = 7, - ACTIONS(113), 1, + ACTIONS(3646), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [269219] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14465), 1, - anon_sym_LPAREN, - ACTIONS(14740), 1, - anon_sym_DQUOTE2, - STATE(8638), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(8700), 1, + ACTIONS(2356), 1, + aux_sym_unquoted_token2, + ACTIONS(14191), 1, + aux_sym__immediate_decimal_token2, + STATE(8286), 1, sym_comment, - STATE(9733), 1, - sym_expr_interpolated, - ACTIONS(14467), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [269382] = 4, + ACTIONS(2358), 4, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT, + [269238] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5197), 1, - aux_sym_command_token1, - STATE(8701), 1, + ACTIONS(4738), 1, + anon_sym_LF, + ACTIONS(14201), 1, + sym_long_flag_identifier, + STATE(8287), 1, sym_comment, - ACTIONS(5195), 5, + ACTIONS(4734), 4, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_LF2, - [269399] = 7, - ACTIONS(113), 1, + anon_sym_RBRACE, + [269257] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14465), 1, - anon_sym_LPAREN, - ACTIONS(14742), 1, - anon_sym_DQUOTE2, - STATE(8702), 1, + ACTIONS(938), 1, + sym_cmd_identifier, + ACTIONS(8820), 1, + aux_sym_unquoted_token5, + STATE(8288), 1, sym_comment, - STATE(8703), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(9733), 1, - sym_expr_interpolated, - ACTIONS(14467), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [269422] = 7, - ACTIONS(113), 1, + ACTIONS(940), 4, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [269276] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14465), 1, - anon_sym_LPAREN, - ACTIONS(14744), 1, - anon_sym_DQUOTE2, - STATE(8638), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(8703), 1, + ACTIONS(5725), 1, + anon_sym_DOLLAR, + ACTIONS(12254), 1, + sym_identifier, + STATE(2534), 1, + sym__assignment_pattern, + STATE(7000), 1, + sym__var, + STATE(8289), 1, sym_comment, - STATE(9733), 1, - sym_expr_interpolated, - ACTIONS(14467), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [269445] = 7, + STATE(8718), 1, + sym_val_variable, + STATE(9822), 1, + sym__variable_name, + [269301] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, + ACTIONS(13895), 1, anon_sym_LPAREN, - ACTIONS(14746), 1, + ACTIONS(14203), 1, anon_sym_DQUOTE2, - STATE(8704), 1, + STATE(8290), 1, sym_comment, - STATE(8705), 1, + STATE(8291), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9733), 1, + STATE(9124), 1, sym_expr_interpolated, - ACTIONS(14467), 2, + ACTIONS(13897), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [269468] = 7, + [269324] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, + ACTIONS(13895), 1, anon_sym_LPAREN, - ACTIONS(14748), 1, + ACTIONS(14205), 1, anon_sym_DQUOTE2, - STATE(8638), 1, + STATE(8162), 1, aux_sym__inter_double_quotes_repeat1, - STATE(8705), 1, + STATE(8291), 1, sym_comment, - STATE(9733), 1, + STATE(9124), 1, sym_expr_interpolated, - ACTIONS(14467), 2, + ACTIONS(13897), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [269491] = 7, + [269347] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, - anon_sym_LPAREN, - ACTIONS(14750), 1, - anon_sym_DQUOTE2, - STATE(8706), 1, + ACTIONS(1091), 1, + anon_sym_LBRACE, + ACTIONS(1149), 1, + aux_sym_unquoted_token6, + ACTIONS(3783), 1, + anon_sym_LPAREN2, + STATE(8292), 1, sym_comment, - STATE(8707), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(9733), 1, - sym_expr_interpolated, - ACTIONS(14467), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [269514] = 7, - ACTIONS(113), 1, + ACTIONS(1089), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + [269368] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14465), 1, - anon_sym_LPAREN, - ACTIONS(14752), 1, - anon_sym_DQUOTE2, - STATE(8638), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(8707), 1, + ACTIONS(2356), 1, + anon_sym_DOT_DOT2, + ACTIONS(13438), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(14207), 1, + anon_sym_DOT, + STATE(8293), 1, sym_comment, - STATE(9733), 1, - sym_expr_interpolated, - ACTIONS(14467), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [269537] = 6, + ACTIONS(2358), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [269389] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12145), 1, + ACTIONS(2229), 1, + aux_sym_unquoted_token2, + ACTIONS(13866), 1, aux_sym__immediate_decimal_token2, - ACTIONS(14754), 1, - anon_sym_DOT, - STATE(8708), 1, + STATE(8294), 1, sym_comment, - ACTIONS(2581), 2, - sym_identifier, - anon_sym_DASH, - ACTIONS(2583), 2, + ACTIONS(2231), 4, anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT, + [269408] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(8295), 1, + sym_comment, + ACTIONS(1074), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1072), 4, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_DASH_DASH, - [269558] = 7, + anon_sym_DASH, + [269425] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, + ACTIONS(13895), 1, anon_sym_LPAREN, - ACTIONS(14756), 1, + ACTIONS(14209), 1, anon_sym_DQUOTE2, - STATE(8638), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(8709), 1, + STATE(8296), 1, sym_comment, - STATE(9733), 1, + STATE(8300), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9124), 1, sym_expr_interpolated, - ACTIONS(14467), 2, + ACTIONS(13897), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [269581] = 4, - ACTIONS(113), 1, + [269448] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(8710), 1, + ACTIONS(14211), 1, + anon_sym_DOT_DOT2, + STATE(8297), 1, sym_comment, - ACTIONS(5209), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5207), 4, - anon_sym_SEMI, + ACTIONS(14213), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7826), 3, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [269598] = 8, + anon_sym_if, + anon_sym_EQ_GT, + [269467] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14358), 1, - anon_sym_alias, - ACTIONS(14360), 1, - anon_sym_const, - ACTIONS(14362), 1, - anon_sym_def, - ACTIONS(14364), 1, - anon_sym_extern, - ACTIONS(14366), 1, - anon_sym_module, - ACTIONS(14368), 1, - anon_sym_use, - STATE(8711), 1, + ACTIONS(14211), 1, + anon_sym_DOT_DOT2, + STATE(8298), 1, sym_comment, - [269623] = 4, + ACTIONS(14213), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7828), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [269486] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5205), 1, - aux_sym_command_token1, - STATE(8712), 1, + ACTIONS(14215), 1, + aux_sym__immediate_decimal_token2, + STATE(8299), 1, sym_comment, - ACTIONS(5203), 5, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [269640] = 6, + ACTIONS(2362), 2, + anon_sym_RBRACK, + aux_sym_unquoted_token2, + ACTIONS(2364), 3, + anon_sym_LPAREN2, + anon_sym_DOT, + sym__entry_separator, + [269505] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4012), 1, + ACTIONS(13895), 1, + anon_sym_LPAREN, + ACTIONS(14217), 1, + anon_sym_DQUOTE2, + STATE(8162), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(8300), 1, + sym_comment, + STATE(9124), 1, + sym_expr_interpolated, + ACTIONS(13897), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [269528] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2229), 1, aux_sym_unquoted_token2, - ACTIONS(13520), 1, - anon_sym_DOT, - STATE(8713), 1, + ACTIONS(13757), 1, + aux_sym__immediate_decimal_token2, + STATE(8301), 1, sym_comment, - ACTIONS(4006), 2, - anon_sym_SEMI, + ACTIONS(2231), 4, anon_sym_PIPE, - ACTIONS(4008), 2, - ts_builtin_sym_end, - anon_sym_LF, - [269661] = 5, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT, + [269547] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5015), 1, - anon_sym_LF, - ACTIONS(14758), 1, - anon_sym_EQ, - STATE(8714), 1, + ACTIONS(14219), 1, + anon_sym_DOT, + ACTIONS(14222), 1, + aux_sym__immediate_decimal_token2, + STATE(8302), 1, sym_comment, - ACTIONS(5011), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [269680] = 5, + ACTIONS(2356), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(2358), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [269568] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5725), 1, + anon_sym_DOLLAR, + ACTIONS(12254), 1, + sym_identifier, + STATE(2624), 1, + sym__assignment_pattern_parenthesized, + STATE(7000), 1, + sym__var, + STATE(8303), 1, + sym_comment, + STATE(8718), 1, + sym_val_variable, + STATE(9829), 1, + sym__variable_name, + [269593] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2581), 1, + ACTIONS(3356), 1, + anon_sym_LBRACE, + ACTIONS(14224), 1, anon_sym_DOT_DOT2, - ACTIONS(14423), 1, - aux_sym__immediate_decimal_token2, - STATE(8715), 1, + STATE(8304), 1, sym_comment, - ACTIONS(2583), 4, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3362), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(14226), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [269699] = 4, + [269614] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5229), 1, + ACTIONS(4999), 1, aux_sym_command_token1, - STATE(8716), 1, + STATE(8305), 1, sym_comment, - ACTIONS(5227), 5, + ACTIONS(4997), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_LF2, - [269716] = 4, + [269631] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5233), 1, - aux_sym_command_token1, - STATE(8717), 1, - sym_comment, - ACTIONS(5231), 5, + ACTIONS(6058), 1, anon_sym_SEMI, + ACTIONS(6060), 1, anon_sym_LF, + STATE(1977), 1, + aux_sym__block_body_repeat1, + STATE(2372), 1, + sym__terminator, + STATE(8306), 1, + sym_comment, + ACTIONS(14228), 2, anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_LF2, - [269733] = 8, + anon_sym_RBRACE, + [269654] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3880), 1, - anon_sym_COLON, - ACTIONS(10802), 1, - anon_sym_DOLLAR, - ACTIONS(14760), 1, - sym_identifier, - STATE(1690), 1, - sym__var, - STATE(2648), 1, - sym__variable_name, - STATE(2796), 1, - sym_val_variable, - STATE(8718), 1, - sym_comment, - [269758] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(8719), 1, + ACTIONS(2356), 1, + anon_sym_DOT_DOT2, + ACTIONS(13876), 1, + aux_sym__immediate_decimal_token2, + STATE(8307), 1, sym_comment, - ACTIONS(5201), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5199), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [269775] = 3, + ACTIONS(2358), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [269673] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(8720), 1, + ACTIONS(14230), 1, + aux_sym__immediate_decimal_token2, + STATE(8308), 1, sym_comment, - ACTIONS(1111), 6, - sym_cmd_identifier, - anon_sym_DASH_DASH, + ACTIONS(2362), 2, + sym_identifier, + aux_sym_unquoted_token2, + ACTIONS(2364), 3, + anon_sym_DOLLAR, + anon_sym_LPAREN2, anon_sym_DOT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [269790] = 5, - ACTIONS(113), 1, + [269692] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14762), 1, - ts_builtin_sym_end, - ACTIONS(14764), 1, - aux_sym_command_token1, - STATE(8721), 2, + ACTIONS(2362), 1, + aux_sym_unquoted_token2, + ACTIONS(14232), 1, + aux_sym__immediate_decimal_token2, + STATE(8309), 1, sym_comment, - aux_sym_command_repeat1, - ACTIONS(14302), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - [269809] = 5, + ACTIONS(2364), 4, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT, + [269711] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2437), 1, + ACTIONS(2229), 1, anon_sym_DOT_DOT2, - ACTIONS(14282), 1, + ACTIONS(13872), 1, aux_sym__immediate_decimal_token2, - STATE(8722), 1, + STATE(8310), 1, sym_comment, - ACTIONS(2439), 4, + ACTIONS(2231), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [269828] = 4, + [269730] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5189), 1, - aux_sym_command_token1, - STATE(8723), 1, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + ACTIONS(3727), 1, + anon_sym_LPAREN2, + STATE(8311), 1, sym_comment, - ACTIONS(5187), 5, + ACTIONS(1159), 2, anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [269845] = 5, + ACTIONS(1161), 2, + ts_builtin_sym_end, + anon_sym_LF, + [269751] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13684), 1, + aux_sym__immediate_decimal_token2, + STATE(8312), 1, + sym_comment, + ACTIONS(2229), 2, + sym_identifier, + aux_sym_unquoted_token2, + ACTIONS(2231), 3, + anon_sym_DOLLAR, + anon_sym_LPAREN2, + anon_sym_DOT, + [269770] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2547), 1, + ACTIONS(2362), 1, anon_sym_DOT_DOT2, - ACTIONS(14767), 1, + ACTIONS(14234), 1, aux_sym__immediate_decimal_token2, - STATE(8724), 1, + STATE(8313), 1, sym_comment, - ACTIONS(2549), 4, + ACTIONS(2364), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [269864] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2581), 1, - aux_sym_unquoted_token2, - ACTIONS(14706), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(14769), 1, - anon_sym_DOT, - STATE(8725), 1, - sym_comment, - ACTIONS(2583), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [269885] = 6, + [269789] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2437), 1, - aux_sym_unquoted_token2, - ACTIONS(14772), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14774), 1, - aux_sym__immediate_decimal_token2, - STATE(8726), 1, + ACTIONS(3655), 1, + anon_sym_COLON, + ACTIONS(10378), 1, + anon_sym_DOLLAR, + ACTIONS(14142), 1, + sym_identifier, + STATE(1322), 1, + sym__var, + STATE(2300), 1, + sym_val_variable, + STATE(2383), 1, + sym__variable_name, + STATE(8314), 1, sym_comment, - ACTIONS(2439), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT, - [269906] = 4, + [269814] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(8727), 1, + STATE(8315), 1, sym_comment, - ACTIONS(5205), 2, + ACTIONS(5111), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(5203), 4, + ACTIONS(5109), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [269923] = 4, - ACTIONS(3), 1, + [269831] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14778), 1, - anon_sym_COMMA, - STATE(8728), 1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + ACTIONS(3841), 1, + anon_sym_LPAREN2, + STATE(8316), 1, sym_comment, - ACTIONS(14776), 5, - sym_cmd_identifier, - anon_sym_RBRACK, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [269940] = 7, - ACTIONS(3), 1, + ACTIONS(1129), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(1131), 2, + ts_builtin_sym_end, + anon_sym_LF, + [269852] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1010), 1, - anon_sym_DASH, - ACTIONS(14780), 1, - anon_sym_DOT, - STATE(7321), 1, - sym_cell_path, - STATE(8729), 1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + ACTIONS(3841), 1, + anon_sym_LPAREN2, + STATE(8317), 1, sym_comment, - STATE(8730), 1, - sym_path, - ACTIONS(1012), 2, - anon_sym_DASH_DASH, - anon_sym_in, - [269963] = 7, + ACTIONS(1135), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(1137), 2, + ts_builtin_sym_end, + anon_sym_LF, + [269873] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(987), 1, - anon_sym_DASH, - ACTIONS(14780), 1, - anon_sym_DOT, - STATE(7117), 1, - sym_path, - STATE(8730), 1, + STATE(8318), 1, sym_comment, - STATE(8731), 1, - aux_sym_cell_path_repeat1, - ACTIONS(989), 2, - anon_sym_DASH_DASH, - anon_sym_in, - [269986] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1006), 1, + ACTIONS(2229), 3, + sym_identifier, anon_sym_DASH, - ACTIONS(14780), 1, - anon_sym_DOT, - STATE(7117), 1, - sym_path, - STATE(8731), 1, - sym_comment, - STATE(8732), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1008), 2, + aux_sym_unquoted_token2, + ACTIONS(2231), 3, anon_sym_DASH_DASH, - anon_sym_in, - [270009] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(999), 1, - anon_sym_DASH, - ACTIONS(14782), 1, + anon_sym_LPAREN2, anon_sym_DOT, - STATE(7117), 1, - sym_path, - ACTIONS(1001), 2, - anon_sym_DASH_DASH, - anon_sym_in, - STATE(8732), 2, - sym_comment, - aux_sym_cell_path_repeat1, - [270030] = 4, + [269890] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5237), 1, + ACTIONS(5003), 1, aux_sym_command_token1, - STATE(8733), 1, + STATE(8319), 1, sym_comment, - ACTIONS(5235), 5, + ACTIONS(5001), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_LF2, - [270047] = 7, + [269907] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, - anon_sym_LPAREN, - ACTIONS(14785), 1, - anon_sym_DQUOTE2, - STATE(8734), 1, + ACTIONS(14236), 1, + sym_long_flag_identifier, + STATE(8320), 1, sym_comment, - STATE(8738), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(9733), 1, - sym_expr_interpolated, - ACTIONS(14467), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [270070] = 6, + ACTIONS(4738), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(4734), 3, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, + [269926] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(936), 1, + ACTIONS(2356), 1, anon_sym_DASH, - ACTIONS(10642), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14787), 1, - aux_sym_unquoted_token2, - STATE(8735), 1, + ACTIONS(12547), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(14238), 1, + anon_sym_DOT, + STATE(8321), 1, sym_comment, - ACTIONS(938), 3, + ACTIONS(2358), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [270091] = 4, + [269947] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5193), 1, - aux_sym_command_token1, - STATE(8736), 1, + ACTIONS(10022), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14240), 1, + aux_sym_unquoted_token2, + STATE(8322), 1, sym_comment, - ACTIONS(5191), 5, + ACTIONS(920), 2, anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [270108] = 4, + ACTIONS(922), 2, + ts_builtin_sym_end, + anon_sym_LF, + [269968] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3314), 1, + anon_sym_in, + ACTIONS(14242), 1, + anon_sym_DOT_DOT2, + STATE(8323), 1, + sym_comment, + ACTIONS(1844), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(14244), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [269989] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(3314), 1, + anon_sym_DASH_DASH, + ACTIONS(3316), 1, + anon_sym_LPAREN2, + ACTIONS(12748), 1, + anon_sym_DOT, + STATE(8324), 1, + sym_comment, + ACTIONS(3312), 2, + sym_identifier, + anon_sym_DASH, + [270012] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(13895), 1, + anon_sym_LPAREN, + ACTIONS(14246), 1, + anon_sym_DQUOTE2, + STATE(8162), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(8325), 1, + sym_comment, + STATE(9124), 1, + sym_expr_interpolated, + ACTIONS(13897), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [270035] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3951), 1, + ACTIONS(5153), 1, aux_sym_command_token1, - STATE(8737), 1, + STATE(8326), 1, sym_comment, - ACTIONS(3949), 5, + ACTIONS(5151), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [270125] = 7, + [270052] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3354), 1, + anon_sym_DASH, + ACTIONS(14248), 1, + anon_sym_DOT_DOT2, + STATE(8327), 1, + sym_comment, + ACTIONS(3356), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(14250), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [270073] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, + ACTIONS(13895), 1, anon_sym_LPAREN, - ACTIONS(14789), 1, + ACTIONS(14252), 1, anon_sym_DQUOTE2, - STATE(8638), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(8738), 1, + STATE(8328), 1, sym_comment, - STATE(9733), 1, + STATE(8333), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9124), 1, sym_expr_interpolated, - ACTIONS(14467), 2, + ACTIONS(13897), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [270148] = 4, + [270096] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5209), 1, + ACTIONS(4965), 1, aux_sym_command_token1, - STATE(8739), 1, + STATE(8329), 1, sym_comment, - ACTIONS(5207), 5, + ACTIONS(4963), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [270165] = 4, + anon_sym_LF2, + [270113] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5213), 1, - aux_sym_command_token1, - STATE(8740), 1, + ACTIONS(940), 1, + anon_sym_LF, + ACTIONS(8713), 1, + aux_sym_unquoted_token5, + STATE(8330), 1, sym_comment, - ACTIONS(5211), 5, + ACTIONS(938), 4, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [270182] = 4, + [270132] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(6058), 1, + anon_sym_SEMI, + ACTIONS(6060), 1, + anon_sym_LF, + STATE(2372), 1, + sym__terminator, + STATE(8267), 1, + aux_sym__block_body_repeat1, + STATE(8331), 1, + sym_comment, + ACTIONS(14228), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [270155] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5201), 1, + ACTIONS(5111), 1, aux_sym_command_token1, - STATE(8741), 1, + STATE(8332), 1, sym_comment, - ACTIONS(5199), 5, + ACTIONS(5109), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_LF2, - [270199] = 5, - ACTIONS(3), 1, + [270172] = 7, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14791), 1, - anon_sym_DOT_DOT2, - STATE(8742), 1, + ACTIONS(13895), 1, + anon_sym_LPAREN, + ACTIONS(14254), 1, + anon_sym_DQUOTE2, + STATE(8162), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(8333), 1, sym_comment, - ACTIONS(14793), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3868), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [270218] = 6, + STATE(9124), 1, + sym_expr_interpolated, + ACTIONS(13897), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [270195] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - ACTIONS(4291), 1, + ACTIONS(1033), 1, anon_sym_DASH, - STATE(8743), 1, + STATE(8334), 1, sym_comment, - STATE(10532), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4293), 3, + ACTIONS(1035), 5, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [270239] = 7, + anon_sym_QMARK2, + anon_sym_DOT, + [270212] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, - anon_sym_LPAREN, - ACTIONS(14795), 1, - anon_sym_DQUOTE2, - STATE(8744), 1, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(12748), 1, + anon_sym_DOT, + STATE(8335), 1, sym_comment, - STATE(8751), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(9733), 1, - sym_expr_interpolated, - ACTIONS(14467), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [270262] = 4, + ACTIONS(3312), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3314), 2, + ts_builtin_sym_end, + anon_sym_LF, + [270233] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5205), 1, + ACTIONS(1074), 1, aux_sym_command_token1, - STATE(8745), 1, + STATE(8336), 1, sym_comment, - ACTIONS(5203), 5, + ACTIONS(1072), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_LF2, - [270279] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - ACTIONS(3874), 1, - anon_sym_DASH, - ACTIONS(13456), 1, - anon_sym_DOT, - STATE(8746), 1, - sym_comment, - ACTIONS(3876), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [270300] = 6, - ACTIONS(3), 1, + [270250] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2437), 1, - aux_sym_unquoted_token2, - ACTIONS(14797), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14799), 1, + ACTIONS(14222), 1, aux_sym__immediate_decimal_token2, - STATE(8747), 1, + STATE(8337), 1, sym_comment, - ACTIONS(2439), 3, - anon_sym_in, + ACTIONS(2356), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(2358), 3, anon_sym_LPAREN2, anon_sym_DOT, - [270321] = 8, - ACTIONS(3), 1, + sym__entry_separator, + [270269] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12574), 1, - sym_identifier, - STATE(3052), 1, - sym__assignment_pattern, - STATE(7440), 1, - sym__var, - STATE(8748), 1, + ACTIONS(3693), 1, + aux_sym_command_token1, + STATE(8338), 1, sym_comment, - STATE(8921), 1, - sym_val_variable, - STATE(10445), 1, - sym__variable_name, - [270346] = 5, + ACTIONS(3691), 5, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_LF2, + [270286] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2437), 1, - aux_sym_unquoted_token2, - ACTIONS(14419), 1, - aux_sym__immediate_decimal_token2, - STATE(8749), 1, + STATE(8339), 1, sym_comment, - ACTIONS(2439), 4, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(2362), 3, + sym_identifier, + anon_sym_DASH, + aux_sym_unquoted_token2, + ACTIONS(2364), 3, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, anon_sym_DOT, - [270365] = 4, + [270303] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5185), 1, + ACTIONS(3701), 1, aux_sym_command_token1, - STATE(8750), 1, + STATE(8340), 1, sym_comment, - ACTIONS(5183), 5, + ACTIONS(3699), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_LF2, - [270382] = 7, + [270320] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, - anon_sym_LPAREN, - ACTIONS(14801), 1, - anon_sym_DQUOTE2, - STATE(8638), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(8751), 1, + STATE(8341), 1, sym_comment, - STATE(9733), 1, - sym_expr_interpolated, - ACTIONS(14467), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [270405] = 4, + ACTIONS(6041), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6039), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_else, + anon_sym_catch, + [270337] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(8342), 1, + sym_comment, + ACTIONS(5153), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5151), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [270354] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4018), 1, + ACTIONS(4957), 1, aux_sym_command_token1, - STATE(8752), 1, + STATE(8343), 1, sym_comment, - ACTIONS(4016), 5, + ACTIONS(4955), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_LF2, - [270422] = 4, + [270371] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(8344), 1, + sym_comment, + ACTIONS(2402), 3, + sym_identifier, + anon_sym_DASH, + aux_sym_unquoted_token2, + ACTIONS(2404), 3, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT, + [270388] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5079), 1, + ACTIONS(3759), 1, aux_sym_command_token1, - STATE(8753), 1, + STATE(8345), 1, sym_comment, - ACTIONS(5075), 5, + ACTIONS(3757), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_LF2, - [270439] = 7, + [270405] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(6538), 1, - anon_sym_SEMI, - ACTIONS(6540), 1, + STATE(8346), 1, + sym_comment, + ACTIONS(4957), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(1799), 1, - aux_sym__block_body_repeat1, - STATE(2696), 1, - sym__terminator, - STATE(8754), 1, + ACTIONS(4955), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [270422] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(14258), 1, + aux_sym_command_token1, + STATE(8347), 1, sym_comment, - ACTIONS(14803), 2, + ACTIONS(14256), 5, + anon_sym_SEMI, + anon_sym_LF, anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_RBRACE, - [270462] = 4, + [270439] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5241), 1, + ACTIONS(5115), 1, aux_sym_command_token1, - STATE(8755), 1, + STATE(8348), 1, sym_comment, - ACTIONS(5239), 5, + ACTIONS(5113), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_LF2, - [270479] = 4, + [270456] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5197), 1, + ACTIONS(5139), 1, aux_sym_command_token1, - STATE(8756), 1, + STATE(8349), 1, sym_comment, - ACTIONS(5195), 5, + ACTIONS(5137), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, + anon_sym_LF2, + [270473] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(3773), 1, + anon_sym_DASH_DASH, + ACTIONS(3775), 1, + anon_sym_LPAREN2, + ACTIONS(13087), 1, + anon_sym_DOT, + STATE(8350), 1, + sym_comment, + ACTIONS(3771), 2, + sym_identifier, + anon_sym_DASH, [270496] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14236), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(8757), 1, + ACTIONS(4198), 1, + aux_sym_command_token1, + STATE(8351), 1, sym_comment, - ACTIONS(1243), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [270513] = 6, + ACTIONS(4196), 5, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_LF2, + [270513] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4006), 1, + ACTIONS(1020), 1, anon_sym_DASH, - ACTIONS(4012), 1, - aux_sym_unquoted_token2, - ACTIONS(13520), 1, - anon_sym_DOT, - STATE(8758), 1, + STATE(8352), 1, sym_comment, - ACTIONS(4008), 3, + ACTIONS(1022), 5, + sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [270534] = 4, + anon_sym_QMARK2, + anon_sym_DOT, + [270530] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5173), 1, - aux_sym_command_token1, - STATE(8759), 1, + STATE(8353), 1, sym_comment, - ACTIONS(5171), 5, + ACTIONS(4961), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4959), 4, anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [270547] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(8354), 1, + sym_comment, + ACTIONS(4965), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_RPAREN, + ACTIONS(4963), 4, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_LF2, - [270551] = 4, - ACTIONS(3), 1, + anon_sym_DASH_DASH, + anon_sym_DASH, + [270564] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14805), 1, - anon_sym_EQ, - STATE(8760), 1, + STATE(8355), 1, sym_comment, - ACTIONS(5015), 5, - sym_cmd_identifier, + ACTIONS(3773), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3771), 4, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [270568] = 7, + anon_sym_DASH, + [270581] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, + ACTIONS(13895), 1, anon_sym_LPAREN, - ACTIONS(14807), 1, + ACTIONS(14260), 1, anon_sym_DQUOTE2, - STATE(8761), 1, + STATE(8356), 1, sym_comment, - STATE(8766), 1, + STATE(8362), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9733), 1, + STATE(9124), 1, sym_expr_interpolated, - ACTIONS(14467), 2, + ACTIONS(13897), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [270591] = 7, + [270604] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(6538), 1, - anon_sym_SEMI, - ACTIONS(6540), 1, - anon_sym_LF, - STATE(1799), 1, - aux_sym__block_body_repeat1, - STATE(2696), 1, - sym__terminator, - STATE(8762), 1, + STATE(8357), 1, sym_comment, - ACTIONS(14484), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [270614] = 6, + ACTIONS(3743), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3741), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [270621] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - ACTIONS(4631), 1, - anon_sym_LPAREN2, - STATE(8763), 1, + STATE(8358), 1, sym_comment, - ACTIONS(1253), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(1255), 2, + ACTIONS(3314), 2, ts_builtin_sym_end, anon_sym_LF, - [270635] = 6, - ACTIONS(3), 1, + ACTIONS(3312), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [270638] = 7, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2581), 1, - anon_sym_DOT_DOT2, - ACTIONS(13979), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(14809), 1, - anon_sym_DOT, - STATE(8764), 1, + ACTIONS(13895), 1, + anon_sym_LPAREN, + ACTIONS(14262), 1, + anon_sym_DQUOTE2, + STATE(8359), 1, sym_comment, - ACTIONS(2583), 3, - anon_sym_in, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [270656] = 5, + STATE(8361), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9124), 1, + sym_expr_interpolated, + ACTIONS(13897), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [270661] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2581), 1, - aux_sym_unquoted_token2, - ACTIONS(14659), 1, - aux_sym__immediate_decimal_token2, - STATE(8765), 1, + ACTIONS(3356), 1, + anon_sym_in, + ACTIONS(14264), 1, + anon_sym_DOT_DOT2, + STATE(8360), 1, sym_comment, - ACTIONS(2583), 4, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_LPAREN2, + ACTIONS(3362), 2, anon_sym_DOT, - [270675] = 7, + aux_sym_unquoted_token2, + ACTIONS(14266), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [270682] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, + ACTIONS(13895), 1, anon_sym_LPAREN, - ACTIONS(14811), 1, + ACTIONS(14268), 1, anon_sym_DQUOTE2, - STATE(8638), 1, + STATE(8162), 1, aux_sym__inter_double_quotes_repeat1, - STATE(8766), 1, + STATE(8361), 1, sym_comment, - STATE(9733), 1, + STATE(9124), 1, sym_expr_interpolated, - ACTIONS(14467), 2, + ACTIONS(13897), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [270698] = 6, - ACTIONS(3), 1, + [270705] = 7, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - ACTIONS(4529), 1, - anon_sym_DASH, - STATE(8767), 1, + ACTIONS(13895), 1, + anon_sym_LPAREN, + ACTIONS(14270), 1, + anon_sym_DQUOTE2, + STATE(8162), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(8362), 1, sym_comment, - STATE(11424), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4531), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [270719] = 5, - ACTIONS(3), 1, + STATE(9124), 1, + sym_expr_interpolated, + ACTIONS(13897), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [270728] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2437), 1, - aux_sym_unquoted_token2, - ACTIONS(14441), 1, - aux_sym__immediate_decimal_token2, - STATE(8768), 1, + ACTIONS(5215), 1, + aux_sym_command_token1, + STATE(8363), 1, sym_comment, - ACTIONS(2439), 4, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT, - [270738] = 7, + ACTIONS(5213), 5, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [270745] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, + ACTIONS(13895), 1, anon_sym_LPAREN, - ACTIONS(14813), 1, + ACTIONS(14272), 1, anon_sym_DQUOTE2, - STATE(8638), 1, + STATE(8325), 1, aux_sym__inter_double_quotes_repeat1, - STATE(8769), 1, + STATE(8364), 1, sym_comment, - STATE(9733), 1, + STATE(9124), 1, sym_expr_interpolated, - ACTIONS(14467), 2, + ACTIONS(13897), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [270761] = 4, + [270768] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5217), 1, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(13087), 1, + anon_sym_DOT, + STATE(8365), 1, + sym_comment, + ACTIONS(3771), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3773), 2, + ts_builtin_sym_end, + anon_sym_LF, + [270789] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(5219), 1, aux_sym_command_token1, - STATE(8770), 1, + STATE(8366), 1, sym_comment, - ACTIONS(5215), 5, + ACTIONS(5217), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [270778] = 4, + [270806] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3966), 1, + ACTIONS(3743), 1, aux_sym_command_token1, - STATE(8771), 1, + STATE(8367), 1, sym_comment, - ACTIONS(3964), 5, + ACTIONS(3741), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [270795] = 4, - ACTIONS(113), 1, + [270823] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(8772), 1, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + ACTIONS(4342), 1, + anon_sym_DASH, + STATE(8368), 1, sym_comment, - ACTIONS(5173), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5171), 4, - anon_sym_SEMI, - anon_sym_PIPE, + STATE(10434), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4344), 3, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, - [270812] = 5, - ACTIONS(3), 1, + [270844] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14815), 1, - anon_sym_DOT_DOT2, - STATE(8773), 1, + ACTIONS(14276), 1, + anon_sym_LF, + ACTIONS(14278), 1, + anon_sym_else, + STATE(8369), 1, sym_comment, - ACTIONS(14817), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3951), 3, + ACTIONS(14274), 4, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [270831] = 5, + anon_sym_RBRACE, + [270863] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14819), 1, - anon_sym_DOT_DOT2, - STATE(8774), 1, + ACTIONS(2229), 1, + aux_sym_unquoted_token2, + ACTIONS(14280), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14282), 1, + aux_sym__immediate_decimal_token2, + STATE(8370), 1, sym_comment, - ACTIONS(14821), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3966), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [270850] = 5, - ACTIONS(3), 1, + ACTIONS(2231), 3, + anon_sym_in, + anon_sym_LPAREN2, + anon_sym_DOT, + [270884] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14823), 1, + ACTIONS(3713), 1, + sym__entry_separator, + ACTIONS(14284), 1, anon_sym_DOT_DOT2, - STATE(8775), 1, + STATE(8371), 1, sym_comment, - ACTIONS(14825), 2, + ACTIONS(3711), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(14286), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(4045), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [270869] = 6, + [270905] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1160), 1, + ACTIONS(1131), 1, anon_sym_LBRACE, - ACTIONS(1284), 1, + ACTIONS(1133), 1, aux_sym_unquoted_token6, - ACTIONS(4895), 1, + ACTIONS(3841), 1, anon_sym_LPAREN2, - STATE(8776), 1, + STATE(8372), 1, + sym_comment, + ACTIONS(1129), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + [270926] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + ACTIONS(1137), 1, + anon_sym_LBRACE, + ACTIONS(3841), 1, + anon_sym_LPAREN2, + STATE(8373), 1, sym_comment, - ACTIONS(1158), 3, + ACTIONS(1135), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, - [270890] = 5, + [270947] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14445), 1, + ACTIONS(2229), 1, + aux_sym_unquoted_token2, + ACTIONS(14288), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14290), 1, aux_sym__immediate_decimal_token2, - STATE(8777), 1, + STATE(8374), 1, sym_comment, - ACTIONS(2437), 2, - sym_identifier, - aux_sym_unquoted_token2, - ACTIONS(2439), 3, - anon_sym_DOLLAR, - anon_sym_LPAREN2, + ACTIONS(2231), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT, - [270909] = 6, - ACTIONS(113), 1, + [270968] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - ACTIONS(4631), 1, - anon_sym_LPAREN2, - STATE(8778), 1, + ACTIONS(13640), 1, + anon_sym_def, + ACTIONS(13642), 1, + anon_sym_extern, + ACTIONS(13644), 1, + anon_sym_module, + ACTIONS(13646), 1, + anon_sym_use, + ACTIONS(14292), 1, + anon_sym_alias, + ACTIONS(14294), 1, + anon_sym_const, + STATE(8375), 1, sym_comment, - ACTIONS(1273), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(1275), 2, - ts_builtin_sym_end, - anon_sym_LF, - [270930] = 4, + [270993] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3951), 1, + ACTIONS(5007), 1, aux_sym_command_token1, - STATE(8779), 1, + STATE(8376), 1, sym_comment, - ACTIONS(3949), 5, + ACTIONS(5005), 5, anon_sym_SEMI, anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_LF2, - [270947] = 7, + [271010] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4008), 1, - anon_sym_DASH_DASH, - ACTIONS(4010), 1, + ACTIONS(2187), 1, anon_sym_LPAREN2, - ACTIONS(4012), 1, - aux_sym_unquoted_token2, - ACTIONS(13520), 1, - anon_sym_DOT, - STATE(8780), 1, - sym_comment, - ACTIONS(4006), 2, - sym_identifier, + ACTIONS(4394), 1, anon_sym_DASH, - [270970] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1593), 1, - anon_sym_DOT, - ACTIONS(1611), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - STATE(8781), 1, - sym_comment, - STATE(10510), 1, - sym__immediate_decimal, - ACTIONS(1609), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [270993] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2547), 1, - aux_sym_unquoted_token2, - ACTIONS(14827), 1, - aux_sym__immediate_decimal_token2, - STATE(8782), 1, + STATE(8377), 1, sym_comment, - ACTIONS(2549), 4, + STATE(10434), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4396), 3, + sym_identifier, anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT, - [271012] = 7, + anon_sym_DASH_DASH, + [271031] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(6538), 1, + STATE(8378), 1, + sym_comment, + ACTIONS(1155), 3, anon_sym_SEMI, - ACTIONS(6540), 1, + anon_sym_PIPE, + aux_sym_unquoted_token6, + ACTIONS(1157), 3, + ts_builtin_sym_end, anon_sym_LF, - STATE(2696), 1, - sym__terminator, - STATE(8762), 1, - aux_sym__block_body_repeat1, - STATE(8783), 1, - sym_comment, - ACTIONS(14829), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [271035] = 5, - ACTIONS(3), 1, + anon_sym_LPAREN2, + [271048] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(959), 1, - sym_cmd_identifier, - ACTIONS(9253), 1, - aux_sym_unquoted_token5, - STATE(8784), 1, + ACTIONS(13834), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(8379), 1, sym_comment, - ACTIONS(961), 4, + ACTIONS(1139), 5, + sym_cmd_identifier, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [271054] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2847), 1, - anon_sym_LPAREN2, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(3748), 1, - sym_identifier, - ACTIONS(3750), 1, - anon_sym_DOLLAR, - ACTIONS(13169), 1, - anon_sym_DOT, - ACTIONS(14831), 1, - aux_sym__immediate_decimal_token1, - STATE(8785), 1, - sym_comment, - [271079] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(14835), 1, - aux_sym_command_token1, - STATE(8786), 1, - sym_comment, - ACTIONS(14833), 5, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [271096] = 5, + [271065] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14620), 1, - aux_sym__immediate_decimal_token2, - STATE(8787), 1, + ACTIONS(14296), 1, + anon_sym_LPAREN, + ACTIONS(14298), 1, + sym_unescaped_interpolated_content, + ACTIONS(14300), 1, + anon_sym_SQUOTE, + STATE(8380), 1, sym_comment, - ACTIONS(2581), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(2583), 3, - anon_sym_LPAREN2, - anon_sym_DOT, - sym__entry_separator, - [271115] = 4, + STATE(8647), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(9819), 1, + sym_expr_interpolated, + [271087] = 4, ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(5221), 1, - aux_sym_command_token1, - STATE(8788), 1, + anon_sym_POUND, + ACTIONS(14304), 1, + anon_sym_LF, + STATE(8381), 1, sym_comment, - ACTIONS(5219), 5, + ACTIONS(14302), 4, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [271132] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14362), 1, - anon_sym_def, - ACTIONS(14364), 1, - anon_sym_extern, - ACTIONS(14366), 1, - anon_sym_module, - ACTIONS(14368), 1, - anon_sym_use, - ACTIONS(14837), 1, - anon_sym_alias, - ACTIONS(14839), 1, - anon_sym_const, - STATE(8789), 1, - sym_comment, - [271157] = 4, + [271103] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5177), 1, - aux_sym_command_token1, - STATE(8790), 1, + ACTIONS(14308), 1, + anon_sym_LF, + STATE(8382), 1, sym_comment, - ACTIONS(5175), 5, + ACTIONS(14306), 4, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_LF2, - [271174] = 4, + anon_sym_RBRACE, + [271119] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4018), 1, - aux_sym_command_token1, - STATE(8791), 1, + ACTIONS(14304), 1, + anon_sym_LF, + STATE(8383), 1, sym_comment, - ACTIONS(4016), 5, + ACTIONS(14302), 4, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [271191] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3984), 1, - anon_sym_COLON, - ACTIONS(10802), 1, - anon_sym_DOLLAR, - ACTIONS(14760), 1, - sym_identifier, - STATE(1690), 1, - sym__var, - STATE(2648), 1, - sym__variable_name, - STATE(2796), 1, - sym_val_variable, - STATE(8792), 1, - sym_comment, - [271216] = 4, + [271135] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5177), 1, - aux_sym_command_token1, - STATE(8793), 1, + ACTIONS(14308), 1, + anon_sym_LF, + STATE(8384), 1, sym_comment, - ACTIONS(5175), 5, + ACTIONS(14306), 4, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [271233] = 4, + [271151] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5181), 1, - aux_sym_command_token1, - STATE(8794), 1, + ACTIONS(14304), 1, + anon_sym_LF, + STATE(8385), 1, sym_comment, - ACTIONS(5179), 5, + ACTIONS(14302), 4, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [271250] = 4, + [271167] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4293), 1, - aux_sym_command_token1, - STATE(8795), 1, + ACTIONS(14308), 1, + anon_sym_LF, + STATE(8386), 1, sym_comment, - ACTIONS(4291), 5, + ACTIONS(14306), 4, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [271267] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2581), 1, - anon_sym_DASH, - ACTIONS(12977), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(14841), 1, - anon_sym_DOT, - STATE(8796), 1, - sym_comment, - ACTIONS(2583), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [271288] = 5, + [271183] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10520), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(8797), 1, + ACTIONS(14312), 1, + anon_sym_LF, + STATE(8387), 1, sym_comment, - ACTIONS(1290), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(1243), 3, + ACTIONS(14310), 4, anon_sym_SEMI, - anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, - [271307] = 4, + anon_sym_RBRACE, + [271199] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5225), 1, - aux_sym_command_token1, - STATE(8798), 1, + ACTIONS(14304), 1, + anon_sym_LF, + STATE(8388), 1, sym_comment, - ACTIONS(5223), 5, + ACTIONS(14302), 4, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [271324] = 6, + [271215] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8304), 1, - anon_sym_PIPE, - ACTIONS(14845), 1, + ACTIONS(14316), 1, anon_sym_LF, - STATE(4013), 1, - aux_sym_pipe_element_repeat1, - STATE(8799), 1, + STATE(8389), 1, sym_comment, - ACTIONS(14843), 3, + ACTIONS(14314), 4, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_RBRACE, - [271345] = 6, + [271231] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14669), 1, - aux_sym_command_token1, - ACTIONS(14848), 1, - ts_builtin_sym_end, - STATE(8649), 1, - aux_sym_command_repeat1, - STATE(8800), 1, + ACTIONS(14308), 1, + anon_sym_LF, + STATE(8390), 1, sym_comment, - ACTIONS(14425), 3, + ACTIONS(14306), 4, anon_sym_SEMI, - anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, - [271366] = 4, + anon_sym_RBRACE, + [271247] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5201), 1, - aux_sym_command_token1, - STATE(8801), 1, + ACTIONS(14304), 1, + anon_sym_LF, + STATE(8391), 1, sym_comment, - ACTIONS(5199), 5, + ACTIONS(14302), 4, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [271383] = 4, + [271263] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14852), 1, - aux_sym_command_token1, - STATE(8802), 1, + ACTIONS(14308), 1, + anon_sym_LF, + STATE(8392), 1, sym_comment, - ACTIONS(14850), 5, + ACTIONS(14306), 4, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_LF2, - [271400] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2437), 1, - aux_sym_unquoted_token2, - ACTIONS(14854), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14856), 1, - aux_sym__immediate_decimal_token2, - STATE(8803), 1, - sym_comment, - ACTIONS(2439), 3, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT, - [271421] = 5, + anon_sym_RBRACE, + [271279] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14858), 1, - aux_sym__immediate_decimal_token2, - STATE(8804), 1, + ACTIONS(14304), 1, + anon_sym_LF, + STATE(8393), 1, sym_comment, - ACTIONS(2547), 2, - anon_sym_RBRACK, - aux_sym_unquoted_token2, - ACTIONS(2549), 3, - anon_sym_LPAREN2, - anon_sym_DOT, - sym__entry_separator, - [271440] = 7, + ACTIONS(14302), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [271295] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(3520), 1, + ACTIONS(3356), 1, anon_sym_DASH_DASH, - ACTIONS(3522), 1, - anon_sym_LPAREN2, - ACTIONS(13319), 1, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(12513), 1, anon_sym_DOT, - STATE(8805), 1, + STATE(8394), 1, sym_comment, - ACTIONS(3518), 2, + ACTIONS(3354), 2, sym_identifier, anon_sym_DASH, - [271463] = 4, + [271315] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5229), 1, - aux_sym_command_token1, - STATE(8806), 1, + STATE(8395), 1, sym_comment, - ACTIONS(5227), 5, + ACTIONS(3713), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(3711), 3, anon_sym_SEMI, anon_sym_LF, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [271480] = 6, + [271331] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(13319), 1, - anon_sym_DOT, - STATE(8807), 1, + ACTIONS(14312), 1, + anon_sym_LF, + STATE(8396), 1, sym_comment, - ACTIONS(3518), 2, + ACTIONS(14310), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(3520), 2, - ts_builtin_sym_end, - anon_sym_LF, - [271501] = 4, + anon_sym_RBRACE, + [271347] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(8808), 1, - sym_comment, - ACTIONS(5079), 2, - ts_builtin_sym_end, + ACTIONS(14316), 1, anon_sym_LF, - ACTIONS(5075), 4, + STATE(8397), 1, + sym_comment, + ACTIONS(14314), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [271518] = 4, + anon_sym_RBRACE, + [271363] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5233), 1, - aux_sym_command_token1, - STATE(8809), 1, + ACTIONS(14308), 1, + anon_sym_LF, + STATE(8398), 1, sym_comment, - ACTIONS(5231), 5, + ACTIONS(14306), 4, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [271535] = 4, + [271379] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(8810), 1, - sym_comment, - ACTIONS(4045), 2, - ts_builtin_sym_end, + ACTIONS(14304), 1, anon_sym_LF, - ACTIONS(4043), 4, + STATE(8399), 1, + sym_comment, + ACTIONS(14302), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [271552] = 6, + anon_sym_RBRACE, + [271395] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14669), 1, - aux_sym_command_token1, - ACTIONS(14860), 1, - ts_builtin_sym_end, - STATE(8811), 1, + ACTIONS(14308), 1, + anon_sym_LF, + STATE(8400), 1, sym_comment, - STATE(8812), 1, - aux_sym_command_repeat1, - ACTIONS(14397), 3, + ACTIONS(14306), 4, anon_sym_SEMI, - anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, - [271573] = 6, + anon_sym_RBRACE, + [271411] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14669), 1, - aux_sym_command_token1, - ACTIONS(14862), 1, - ts_builtin_sym_end, - STATE(8721), 1, - aux_sym_command_repeat1, - STATE(8812), 1, + ACTIONS(14304), 1, + anon_sym_LF, + STATE(8401), 1, sym_comment, - ACTIONS(14290), 3, + ACTIONS(14302), 4, anon_sym_SEMI, - anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, - [271594] = 7, + anon_sym_RBRACE, + [271427] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, - anon_sym_LPAREN, - ACTIONS(14864), 1, - anon_sym_DQUOTE2, - STATE(8540), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(8813), 1, + ACTIONS(14308), 1, + anon_sym_LF, + STATE(8402), 1, sym_comment, - STATE(9733), 1, - sym_expr_interpolated, - ACTIONS(14467), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [271617] = 4, + ACTIONS(14306), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [271443] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5181), 1, - aux_sym_command_token1, - STATE(8814), 1, + ACTIONS(14304), 1, + anon_sym_LF, + STATE(8403), 1, sym_comment, - ACTIONS(5179), 5, + ACTIONS(14302), 4, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_LF2, - [271634] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(8815), 1, - sym_comment, - ACTIONS(1115), 6, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DOT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [271649] = 4, + anon_sym_RBRACE, + [271459] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5237), 1, - aux_sym_command_token1, - STATE(8816), 1, + ACTIONS(14308), 1, + anon_sym_LF, + STATE(8404), 1, sym_comment, - ACTIONS(5235), 5, + ACTIONS(14306), 4, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [271666] = 4, + [271475] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5241), 1, - aux_sym_command_token1, - STATE(8817), 1, + ACTIONS(14320), 1, + anon_sym_LF, + STATE(8405), 1, sym_comment, - ACTIONS(5239), 5, + ACTIONS(14318), 4, anon_sym_SEMI, - anon_sym_LF, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [271683] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2581), 1, - anon_sym_DOT_DOT2, - ACTIONS(14014), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(14866), 1, - anon_sym_DOT, - STATE(8818), 1, - sym_comment, - ACTIONS(2583), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [271704] = 7, + [271491] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14465), 1, - anon_sym_LPAREN, - ACTIONS(14868), 1, - anon_sym_DQUOTE2, - STATE(8681), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(8819), 1, - sym_comment, - STATE(9733), 1, - sym_expr_interpolated, - ACTIONS(14467), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [271727] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14870), 1, - anon_sym_DQUOTE, - ACTIONS(14874), 1, - aux_sym_path_token1, - STATE(3389), 1, - sym__str_double_quotes, - STATE(8820), 1, + ACTIONS(14324), 1, + anon_sym_LF, + STATE(8406), 1, sym_comment, - ACTIONS(14872), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [271747] = 6, + ACTIONS(14322), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [271507] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - ACTIONS(1275), 1, - anon_sym_LBRACE, - ACTIONS(4631), 1, - anon_sym_LPAREN2, - STATE(8821), 1, + ACTIONS(14320), 1, + anon_sym_LF, + STATE(8407), 1, sym_comment, - ACTIONS(1273), 2, - sym_identifier, - anon_sym_DOLLAR, - [271767] = 7, + ACTIONS(14318), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [271523] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, - anon_sym_LPAREN, - ACTIONS(14878), 1, - sym_unescaped_interpolated_content, - ACTIONS(14880), 1, - anon_sym_SQUOTE, - STATE(8822), 1, - sym_comment, - STATE(8827), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, - sym_expr_interpolated, - [271789] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1113), 1, - anon_sym_DASH, - STATE(8823), 1, + ACTIONS(14324), 1, + anon_sym_LF, + STATE(8408), 1, sym_comment, - ACTIONS(1115), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT, - [271805] = 4, + ACTIONS(14322), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [271539] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14884), 1, + ACTIONS(14320), 1, anon_sym_LF, - STATE(8824), 1, + STATE(8409), 1, sym_comment, - ACTIONS(14882), 4, + ACTIONS(14318), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [271821] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2581), 1, - aux_sym_unquoted_token2, - ACTIONS(14886), 1, - anon_sym_DOT, - ACTIONS(14889), 1, - aux_sym__immediate_decimal_token2, - STATE(8825), 1, - sym_comment, - ACTIONS(2583), 2, - anon_sym_in, - anon_sym_LPAREN2, - [271841] = 4, + [271555] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14893), 1, + ACTIONS(14324), 1, anon_sym_LF, - STATE(8826), 1, + STATE(8410), 1, sym_comment, - ACTIONS(14891), 4, + ACTIONS(14322), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [271857] = 7, + [271571] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, - anon_sym_LPAREN, - ACTIONS(14878), 1, - sym_unescaped_interpolated_content, - ACTIONS(14895), 1, - anon_sym_SQUOTE, - STATE(8827), 1, + ACTIONS(14320), 1, + anon_sym_LF, + STATE(8411), 1, sym_comment, - STATE(9291), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, - sym_expr_interpolated, - [271879] = 4, + ACTIONS(14318), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [271587] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14899), 1, + ACTIONS(14324), 1, anon_sym_LF, - STATE(8828), 1, + STATE(8412), 1, sym_comment, - ACTIONS(14897), 4, + ACTIONS(14322), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [271895] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14901), 1, - anon_sym_DQUOTE, - ACTIONS(14905), 1, - aux_sym_path_token1, - STATE(4696), 1, - sym__str_double_quotes, - STATE(8829), 1, - sym_comment, - ACTIONS(14903), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [271915] = 4, + [271603] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14909), 1, + ACTIONS(14320), 1, anon_sym_LF, - STATE(8830), 1, + STATE(8413), 1, sym_comment, - ACTIONS(14907), 4, + ACTIONS(14318), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [271931] = 4, + [271619] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14913), 1, + ACTIONS(14324), 1, anon_sym_LF, - STATE(8831), 1, + STATE(8414), 1, sym_comment, - ACTIONS(14911), 4, + ACTIONS(14322), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [271947] = 7, + [271635] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2843), 1, - anon_sym_RBRACK, - ACTIONS(2845), 1, - sym__entry_separator, - ACTIONS(2847), 1, - anon_sym_LPAREN2, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(13169), 1, - anon_sym_DOT, - STATE(8832), 1, + ACTIONS(14312), 1, + anon_sym_LF, + STATE(8415), 1, sym_comment, - [271969] = 7, + ACTIONS(14310), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [271651] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, - anon_sym_LPAREN, - ACTIONS(14878), 1, - sym_unescaped_interpolated_content, - ACTIONS(14915), 1, - anon_sym_SQUOTE, - STATE(8833), 1, + ACTIONS(14320), 1, + anon_sym_LF, + STATE(8416), 1, sym_comment, - STATE(8847), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, - sym_expr_interpolated, - [271991] = 4, + ACTIONS(14318), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [271667] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(8834), 1, + ACTIONS(14316), 1, + anon_sym_LF, + STATE(8417), 1, sym_comment, - ACTIONS(3951), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(3949), 3, + ACTIONS(14314), 4, anon_sym_SEMI, - anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, - [272007] = 4, + anon_sym_RBRACE, + [271683] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14919), 1, + ACTIONS(14324), 1, anon_sym_LF, - STATE(8835), 1, + STATE(8418), 1, sym_comment, - ACTIONS(14917), 4, + ACTIONS(14322), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [272023] = 4, + [271699] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(8836), 1, + ACTIONS(14320), 1, + anon_sym_LF, + STATE(8419), 1, sym_comment, - ACTIONS(5189), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(5187), 3, + ACTIONS(14318), 4, anon_sym_SEMI, - anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, - [272039] = 7, + anon_sym_RBRACE, + [271715] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, - anon_sym_LPAREN, - ACTIONS(14878), 1, - sym_unescaped_interpolated_content, - ACTIONS(14921), 1, - anon_sym_SQUOTE, - STATE(8837), 1, - sym_comment, - STATE(8844), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, - sym_expr_interpolated, - [272061] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(8838), 1, + ACTIONS(14324), 1, + anon_sym_LF, + STATE(8420), 1, sym_comment, - ACTIONS(14923), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [272075] = 5, + ACTIONS(14322), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [271731] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - ACTIONS(4631), 1, - anon_sym_LPAREN2, - STATE(8839), 1, + ACTIONS(14320), 1, + anon_sym_LF, + STATE(8421), 1, sym_comment, - ACTIONS(1253), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH, - [272093] = 7, + ACTIONS(14318), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [271747] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, - anon_sym_LPAREN, - ACTIONS(14878), 1, - sym_unescaped_interpolated_content, - ACTIONS(14925), 1, - anon_sym_SQUOTE, - STATE(8840), 1, + ACTIONS(14312), 1, + anon_sym_LF, + STATE(8422), 1, sym_comment, - STATE(8894), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, - sym_expr_interpolated, - [272115] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14927), 1, + ACTIONS(14310), 4, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(14929), 1, - anon_sym_if, - ACTIONS(14931), 1, - anon_sym_EQ_GT, - STATE(8841), 1, - sym_comment, - STATE(10229), 1, - aux_sym_match_pattern_repeat1, - STATE(10838), 1, - sym_match_guard, - [272137] = 4, + anon_sym_RBRACE, + [271763] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14935), 1, + ACTIONS(14324), 1, anon_sym_LF, - STATE(8842), 1, + STATE(8423), 1, sym_comment, - ACTIONS(14933), 4, + ACTIONS(14322), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [272153] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14937), 1, - anon_sym_DOT, - ACTIONS(14941), 1, - aux_sym__immediate_decimal_token4, - STATE(8843), 1, - sym_comment, - STATE(10829), 1, - sym__immediate_decimal, - ACTIONS(14939), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [272173] = 7, + [271779] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, - anon_sym_LPAREN, - ACTIONS(14878), 1, - sym_unescaped_interpolated_content, - ACTIONS(14943), 1, - anon_sym_SQUOTE, - STATE(8844), 1, + ACTIONS(14320), 1, + anon_sym_LF, + STATE(8424), 1, sym_comment, - STATE(9291), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, - sym_expr_interpolated, - [272195] = 7, + ACTIONS(14318), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [271795] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - ACTIONS(3874), 1, - anon_sym_RBRACK, - ACTIONS(3876), 1, - sym__entry_separator, - ACTIONS(3878), 1, - anon_sym_LPAREN2, - ACTIONS(13456), 1, - anon_sym_DOT, - STATE(8845), 1, + ACTIONS(14324), 1, + anon_sym_LF, + STATE(8425), 1, sym_comment, - [272217] = 4, + ACTIONS(14322), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [271811] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14947), 1, + ACTIONS(14320), 1, anon_sym_LF, - STATE(8846), 1, + STATE(8426), 1, sym_comment, - ACTIONS(14945), 4, + ACTIONS(14318), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [272233] = 7, + [271827] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, - anon_sym_LPAREN, - ACTIONS(14878), 1, - sym_unescaped_interpolated_content, - ACTIONS(14949), 1, - anon_sym_SQUOTE, - STATE(8847), 1, + ACTIONS(14316), 1, + anon_sym_LF, + STATE(8427), 1, sym_comment, - STATE(9291), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, - sym_expr_interpolated, - [272255] = 4, + ACTIONS(14314), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [271843] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5993), 1, + ACTIONS(14312), 1, anon_sym_LF, - STATE(8848), 1, + STATE(8428), 1, sym_comment, - ACTIONS(5991), 4, + ACTIONS(14310), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [272271] = 6, + [271859] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14951), 1, - anon_sym_DQUOTE, - ACTIONS(14955), 1, - aux_sym_path_token1, - STATE(4716), 1, - sym__str_double_quotes, - STATE(8849), 1, - sym_comment, - ACTIONS(14953), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [272291] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(14876), 1, - anon_sym_LPAREN, - ACTIONS(14878), 1, - sym_unescaped_interpolated_content, - ACTIONS(14957), 1, - anon_sym_SQUOTE, - STATE(8850), 1, + ACTIONS(11698), 1, + anon_sym_DOT, + STATE(5544), 1, + sym_cell_path, + STATE(6635), 1, + sym_path, + STATE(8429), 1, sym_comment, - STATE(8854), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, - sym_expr_interpolated, - [272313] = 4, + ACTIONS(1059), 2, + anon_sym_DOLLAR, + anon_sym_LBRACE, + [271879] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14899), 1, + ACTIONS(14324), 1, anon_sym_LF, - STATE(8851), 1, + STATE(8430), 1, sym_comment, - ACTIONS(14897), 4, + ACTIONS(14322), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [272329] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(14876), 1, - anon_sym_LPAREN, - ACTIONS(14878), 1, - sym_unescaped_interpolated_content, - ACTIONS(14959), 1, - anon_sym_SQUOTE, - STATE(8852), 1, - sym_comment, - STATE(8934), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, - sym_expr_interpolated, - [272351] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - ACTIONS(4631), 1, - anon_sym_LPAREN2, - STATE(8853), 1, - sym_comment, - ACTIONS(1273), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH, - [272369] = 7, + [271895] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, - anon_sym_LPAREN, - ACTIONS(14878), 1, - sym_unescaped_interpolated_content, - ACTIONS(14961), 1, - anon_sym_SQUOTE, - STATE(8854), 1, - sym_comment, - STATE(9291), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, - sym_expr_interpolated, - [272391] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(8855), 1, - sym_comment, - ACTIONS(3966), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [272405] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3351), 1, - anon_sym_DQUOTE, - ACTIONS(14965), 1, - aux_sym_path_token1, - STATE(4686), 1, - sym__str_double_quotes, - STATE(8856), 1, + ACTIONS(14320), 1, + anon_sym_LF, + STATE(8431), 1, sym_comment, - ACTIONS(14963), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [272425] = 4, + ACTIONS(14318), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [271911] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14236), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(8857), 1, - sym_comment, - ACTIONS(1243), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - [272441] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(8858), 1, + ACTIONS(14328), 1, + anon_sym_LF, + STATE(8432), 1, sym_comment, - ACTIONS(1322), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [272455] = 4, + ACTIONS(14326), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [271927] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14969), 1, + ACTIONS(14332), 1, anon_sym_LF, - STATE(8859), 1, + STATE(8433), 1, sym_comment, - ACTIONS(14967), 4, + ACTIONS(14330), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [272471] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14971), 1, - anon_sym_DOT_DOT2, - STATE(8860), 1, - sym_comment, - ACTIONS(2851), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(14973), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [272489] = 5, + [271943] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(13169), 1, + ACTIONS(11698), 1, anon_sym_DOT, - STATE(8861), 1, - sym_comment, - ACTIONS(2845), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [272507] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14975), 1, - anon_sym_DQUOTE, - ACTIONS(14979), 1, - aux_sym_path_token1, - STATE(4912), 1, - sym__str_double_quotes, - STATE(8862), 1, + STATE(5686), 1, + sym_cell_path, + STATE(6635), 1, + sym_path, + STATE(8434), 1, sym_comment, - ACTIONS(14977), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [272527] = 4, + ACTIONS(1053), 2, + anon_sym_DOLLAR, + anon_sym_LBRACE, + [271963] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14983), 1, + ACTIONS(14328), 1, anon_sym_LF, - STATE(8863), 1, + STATE(8435), 1, sym_comment, - ACTIONS(14981), 4, + ACTIONS(14326), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [272543] = 4, + [271979] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14913), 1, + ACTIONS(14332), 1, anon_sym_LF, - STATE(8864), 1, + STATE(8436), 1, sym_comment, - ACTIONS(14911), 4, + ACTIONS(14330), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [272559] = 7, + [271995] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8304), 1, - anon_sym_PIPE, - ACTIONS(14552), 1, - anon_sym_SEMI, - ACTIONS(14554), 1, + ACTIONS(14324), 1, anon_sym_LF, - ACTIONS(14985), 1, - ts_builtin_sym_end, - STATE(4015), 1, - aux_sym_pipe_element_repeat1, - STATE(8865), 1, + STATE(8437), 1, sym_comment, - [272581] = 3, + ACTIONS(14322), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [272011] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(8866), 1, - sym_comment, - ACTIONS(1352), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [272595] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(14876), 1, - anon_sym_LPAREN, - ACTIONS(14878), 1, - sym_unescaped_interpolated_content, - ACTIONS(14987), 1, - anon_sym_SQUOTE, - STATE(8867), 1, + ACTIONS(11698), 1, + anon_sym_DOT, + STATE(5205), 1, + sym_cell_path, + STATE(6635), 1, + sym_path, + STATE(8438), 1, sym_comment, - STATE(9291), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, - sym_expr_interpolated, - [272617] = 7, + ACTIONS(1099), 2, + anon_sym_DOLLAR, + anon_sym_LBRACE, + [272031] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, - anon_sym_LPAREN, - ACTIONS(14878), 1, - sym_unescaped_interpolated_content, - ACTIONS(14989), 1, - anon_sym_SQUOTE, - STATE(8868), 1, - sym_comment, - STATE(9291), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, - sym_expr_interpolated, - [272639] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5083), 1, - anon_sym_DASH, - ACTIONS(14131), 1, - aux_sym__immediate_decimal_token1, - STATE(8869), 1, + ACTIONS(14320), 1, + anon_sym_LF, + STATE(8439), 1, sym_comment, - ACTIONS(5085), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [272657] = 6, + ACTIONS(14318), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [272047] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - ACTIONS(3878), 1, - anon_sym_LPAREN2, - ACTIONS(13456), 1, + ACTIONS(11698), 1, anon_sym_DOT, - STATE(8870), 1, + STATE(5133), 1, + sym_cell_path, + STATE(6635), 1, + sym_path, + STATE(8440), 1, sym_comment, - ACTIONS(3876), 2, + ACTIONS(1103), 2, anon_sym_DOLLAR, anon_sym_LBRACE, - [272677] = 4, + [272067] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14993), 1, + ACTIONS(14324), 1, anon_sym_LF, - STATE(8871), 1, + STATE(8441), 1, sym_comment, - ACTIONS(14991), 4, + ACTIONS(14322), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [272693] = 4, + [272083] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14969), 1, + ACTIONS(14320), 1, anon_sym_LF, - STATE(8872), 1, + STATE(8442), 1, sym_comment, - ACTIONS(14967), 4, + ACTIONS(14318), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [272709] = 4, + [272099] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14997), 1, + ACTIONS(14324), 1, anon_sym_LF, - STATE(8873), 1, + STATE(8443), 1, sym_comment, - ACTIONS(14995), 4, + ACTIONS(14322), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [272725] = 4, + [272115] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(8874), 1, + ACTIONS(14328), 1, + anon_sym_LF, + STATE(8444), 1, sym_comment, - ACTIONS(5079), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(5075), 3, + ACTIONS(14326), 4, anon_sym_SEMI, - anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, - [272741] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [272131] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - ACTIONS(3876), 1, - anon_sym_DASH_DASH, - ACTIONS(13456), 1, - anon_sym_DOT, - STATE(8875), 1, + ACTIONS(14334), 1, + anon_sym_EQ, + STATE(8445), 1, sym_comment, - ACTIONS(3874), 2, - sym_identifier, - anon_sym_DASH, - [272761] = 4, + ACTIONS(4721), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4725), 2, + ts_builtin_sym_end, + anon_sym_LF, + [272149] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14983), 1, + ACTIONS(14332), 1, anon_sym_LF, - STATE(8876), 1, + STATE(8446), 1, sym_comment, - ACTIONS(14981), 4, + ACTIONS(14330), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [272777] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(14876), 1, - anon_sym_LPAREN, - ACTIONS(14878), 1, - sym_unescaped_interpolated_content, - ACTIONS(14999), 1, - anon_sym_SQUOTE, - STATE(8877), 1, - sym_comment, - STATE(8881), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, - sym_expr_interpolated, - [272799] = 7, + [272165] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15001), 1, - ts_builtin_sym_end, - ACTIONS(15003), 1, - anon_sym_SEMI, - ACTIONS(15005), 1, + ACTIONS(14328), 1, anon_sym_LF, - STATE(8878), 1, - sym_comment, - STATE(9279), 1, - aux_sym__block_body_repeat1, - STATE(10231), 1, - sym__terminator, - [272821] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1282), 1, - anon_sym_LPAREN2, - STATE(8879), 1, + STATE(8447), 1, sym_comment, - ACTIONS(1280), 4, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH, - aux_sym_unquoted_token6, - [272837] = 6, + ACTIONS(14326), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [272181] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2581), 1, + ACTIONS(1886), 1, aux_sym_unquoted_token2, - ACTIONS(15007), 1, + ACTIONS(3773), 1, + anon_sym_DASH_DASH, + ACTIONS(13087), 1, anon_sym_DOT, - ACTIONS(15010), 1, - aux_sym__immediate_decimal_token2, - STATE(8880), 1, + STATE(8448), 1, sym_comment, - ACTIONS(2583), 2, - anon_sym_LBRACE, - anon_sym_LPAREN2, - [272857] = 7, + ACTIONS(3771), 2, + sym_identifier, + anon_sym_DASH, + [272201] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, - anon_sym_LPAREN, - ACTIONS(14878), 1, - sym_unescaped_interpolated_content, - ACTIONS(15012), 1, - anon_sym_SQUOTE, - STATE(8881), 1, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(3771), 1, + anon_sym_RBRACK, + ACTIONS(3773), 1, + sym__entry_separator, + ACTIONS(3775), 1, + anon_sym_LPAREN2, + ACTIONS(13087), 1, + anon_sym_DOT, + STATE(8449), 1, sym_comment, - STATE(9291), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, - sym_expr_interpolated, - [272879] = 4, + [272223] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14935), 1, + ACTIONS(14332), 1, anon_sym_LF, - STATE(8882), 1, + STATE(8450), 1, sym_comment, - ACTIONS(14933), 4, + ACTIONS(14330), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [272895] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15014), 1, - anon_sym_DQUOTE, - ACTIONS(15018), 1, - aux_sym_path_token1, - STATE(352), 1, - sym__str_double_quotes, - STATE(8883), 1, - sym_comment, - ACTIONS(15016), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [272915] = 4, + [272239] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14899), 1, + ACTIONS(14328), 1, anon_sym_LF, - STATE(8884), 1, + STATE(8451), 1, sym_comment, - ACTIONS(14897), 4, + ACTIONS(14326), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [272931] = 4, - ACTIONS(3), 1, + [272255] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2547), 1, - aux_sym_unquoted_token2, - STATE(8885), 1, + ACTIONS(14332), 1, + anon_sym_LF, + STATE(8452), 1, sym_comment, - ACTIONS(2549), 4, + ACTIONS(14330), 4, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT, - [272947] = 3, + anon_sym_RBRACE, + [272271] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(8886), 1, + STATE(8453), 1, sym_comment, - ACTIONS(1196), 5, + ACTIONS(3743), 5, sym_cmd_identifier, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [272961] = 4, + [272285] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14935), 1, + ACTIONS(4831), 1, anon_sym_LF, - STATE(8887), 1, + STATE(8454), 1, sym_comment, - ACTIONS(14933), 4, + ACTIONS(4829), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [272977] = 6, - ACTIONS(3), 1, + [272301] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15020), 1, - anon_sym_DQUOTE, - ACTIONS(15024), 1, - aux_sym_path_token1, - STATE(4138), 1, - sym__str_double_quotes, - STATE(8888), 1, + ACTIONS(7087), 1, + anon_sym_RBRACK, + ACTIONS(14336), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14338), 1, + aux_sym__unquoted_in_list_token2, + STATE(8455), 1, sym_comment, - ACTIONS(15022), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [272997] = 4, + ACTIONS(7101), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [272321] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15028), 1, + ACTIONS(14328), 1, anon_sym_LF, - STATE(8889), 1, + STATE(8456), 1, sym_comment, - ACTIONS(15026), 4, + ACTIONS(14326), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [273013] = 4, + [272337] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15032), 1, + ACTIONS(14332), 1, anon_sym_LF, - STATE(8890), 1, + STATE(8457), 1, sym_comment, - ACTIONS(15030), 4, + ACTIONS(14330), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [273029] = 7, - ACTIONS(113), 1, + [272353] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14876), 1, - anon_sym_LPAREN, - ACTIONS(14878), 1, - sym_unescaped_interpolated_content, - ACTIONS(15034), 1, - anon_sym_SQUOTE, - STATE(8891), 1, + ACTIONS(922), 1, + anon_sym_DASH_DASH, + ACTIONS(10424), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14340), 1, + aux_sym_unquoted_token2, + STATE(8458), 1, sym_comment, - STATE(8901), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, - sym_expr_interpolated, - [273051] = 7, - ACTIONS(113), 1, + ACTIONS(920), 2, + sym_identifier, + anon_sym_DASH, + [272373] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6538), 1, - anon_sym_SEMI, - ACTIONS(6540), 1, - anon_sym_LF, - ACTIONS(15036), 1, - anon_sym_RPAREN, - STATE(1799), 1, - aux_sym__block_body_repeat1, - STATE(2696), 1, - sym__terminator, - STATE(8892), 1, + ACTIONS(3646), 1, + anon_sym_DASH_DASH, + ACTIONS(3650), 1, + aux_sym_unquoted_token2, + ACTIONS(13004), 1, + anon_sym_DOT, + STATE(8459), 1, + sym_comment, + ACTIONS(3644), 2, + sym_identifier, + anon_sym_DASH, + [272393] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2356), 1, + aux_sym_unquoted_token2, + ACTIONS(14342), 1, + anon_sym_DOT, + ACTIONS(14345), 1, + aux_sym__immediate_decimal_token2, + STATE(8460), 1, sym_comment, - [273073] = 4, + ACTIONS(2358), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [272413] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15028), 1, + ACTIONS(14328), 1, anon_sym_LF, - STATE(8893), 1, + STATE(8461), 1, sym_comment, - ACTIONS(15026), 4, + ACTIONS(14326), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [273089] = 7, + [272429] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, + ACTIONS(14296), 1, anon_sym_LPAREN, - ACTIONS(14878), 1, + ACTIONS(14298), 1, sym_unescaped_interpolated_content, - ACTIONS(15038), 1, + ACTIONS(14347), 1, anon_sym_SQUOTE, - STATE(8894), 1, + STATE(8462), 1, sym_comment, - STATE(9291), 1, + STATE(8467), 1, aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, + STATE(9819), 1, sym_expr_interpolated, - [273111] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(14884), 1, - anon_sym_LF, - STATE(8895), 1, - sym_comment, - ACTIONS(14882), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [273127] = 4, + [272451] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14899), 1, + ACTIONS(3590), 1, + anon_sym_COLON, + ACTIONS(14351), 1, anon_sym_LF, - STATE(8896), 1, + STATE(8463), 1, sym_comment, - ACTIONS(14897), 4, + ACTIONS(14349), 3, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [273143] = 4, + [272469] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14913), 1, - anon_sym_LF, - STATE(8897), 1, - sym_comment, - ACTIONS(14911), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [273159] = 4, + ACTIONS(3644), 1, + anon_sym_RBRACK, + ACTIONS(3646), 1, + sym__entry_separator, + ACTIONS(3648), 1, + anon_sym_LPAREN2, + ACTIONS(3650), 1, + aux_sym_unquoted_token2, + ACTIONS(13004), 1, + anon_sym_DOT, + STATE(8464), 1, + sym_comment, + [272491] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15042), 1, + ACTIONS(14332), 1, anon_sym_LF, - STATE(8898), 1, + STATE(8465), 1, sym_comment, - ACTIONS(15040), 4, + ACTIONS(14330), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [273175] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2547), 1, - aux_sym_unquoted_token2, - ACTIONS(15044), 1, - aux_sym__immediate_decimal_token2, - STATE(8899), 1, - sym_comment, - ACTIONS(2549), 3, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT, - [273193] = 4, + [272507] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15032), 1, + ACTIONS(3590), 1, + anon_sym_COLON, + ACTIONS(14355), 1, anon_sym_LF, - STATE(8900), 1, + STATE(8466), 1, sym_comment, - ACTIONS(15030), 4, + ACTIONS(14353), 3, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [273209] = 7, + [272525] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, + ACTIONS(14296), 1, anon_sym_LPAREN, - ACTIONS(14878), 1, + ACTIONS(14298), 1, sym_unescaped_interpolated_content, - ACTIONS(15046), 1, + ACTIONS(14357), 1, anon_sym_SQUOTE, - STATE(8901), 1, + STATE(8467), 1, sym_comment, - STATE(9291), 1, + STATE(8473), 1, aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, + STATE(9819), 1, sym_expr_interpolated, - [273231] = 6, + [272547] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15048), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(15052), 1, + ACTIONS(14361), 1, aux_sym_path_token1, - STATE(3844), 1, + STATE(5369), 1, sym__str_double_quotes, - STATE(8902), 1, + STATE(8468), 1, sym_comment, - ACTIONS(15050), 2, + ACTIONS(14359), 2, sym__str_single_quotes, sym__str_back_ticks, - [273251] = 7, + [272567] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, - anon_sym_LPAREN, - ACTIONS(14878), 1, - sym_unescaped_interpolated_content, - ACTIONS(15054), 1, - anon_sym_SQUOTE, - STATE(8903), 1, + ACTIONS(4933), 1, + anon_sym_LF, + STATE(8469), 1, sym_comment, - STATE(8907), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, - sym_expr_interpolated, - [273273] = 4, + ACTIONS(4931), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [272583] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14893), 1, + ACTIONS(14328), 1, anon_sym_LF, - STATE(8904), 1, + STATE(8470), 1, sym_comment, - ACTIONS(14891), 4, + ACTIONS(14326), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [273289] = 6, - ACTIONS(3), 1, + [272599] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15056), 1, - anon_sym_DQUOTE, - ACTIONS(15060), 1, - aux_sym_path_token1, - STATE(1664), 1, - sym__str_double_quotes, - STATE(8905), 1, + ACTIONS(14332), 1, + anon_sym_LF, + STATE(8471), 1, sym_comment, - ACTIONS(15058), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [273309] = 4, + ACTIONS(14330), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [272615] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15028), 1, + ACTIONS(14328), 1, anon_sym_LF, - STATE(8906), 1, + STATE(8472), 1, sym_comment, - ACTIONS(15026), 4, + ACTIONS(14326), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [273325] = 7, + [272631] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, + ACTIONS(14363), 1, anon_sym_LPAREN, - ACTIONS(14878), 1, + ACTIONS(14366), 1, sym_unescaped_interpolated_content, - ACTIONS(15062), 1, + ACTIONS(14369), 1, anon_sym_SQUOTE, - STATE(8907), 1, + STATE(9819), 1, + sym_expr_interpolated, + STATE(8473), 2, sym_comment, - STATE(9291), 1, aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, - sym_expr_interpolated, - [273347] = 4, + [272651] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14935), 1, + ACTIONS(14332), 1, anon_sym_LF, - STATE(8908), 1, + STATE(8474), 1, sym_comment, - ACTIONS(14933), 4, + ACTIONS(14330), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [273363] = 6, - ACTIONS(3), 1, + [272667] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4079), 1, - anon_sym_DQUOTE, - ACTIONS(15066), 1, - aux_sym_path_token1, - STATE(5279), 1, - sym__str_double_quotes, - STATE(8909), 1, + ACTIONS(14328), 1, + anon_sym_LF, + STATE(8475), 1, sym_comment, - ACTIONS(15064), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [273383] = 4, + ACTIONS(14326), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [272683] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15032), 1, + ACTIONS(14332), 1, anon_sym_LF, - STATE(8910), 1, + STATE(8476), 1, sym_comment, - ACTIONS(15030), 4, + ACTIONS(14330), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [273399] = 4, + [272699] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14983), 1, + ACTIONS(14328), 1, anon_sym_LF, - STATE(8911), 1, + STATE(8477), 1, sym_comment, - ACTIONS(14981), 4, + ACTIONS(14326), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [273415] = 7, + [272715] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(3748), 1, - anon_sym_RBRACK, - ACTIONS(3750), 1, - sym__entry_separator, - ACTIONS(13169), 1, - anon_sym_DOT, - ACTIONS(14559), 1, - aux_sym__immediate_decimal_token1, - STATE(8912), 1, + ACTIONS(4949), 1, + anon_sym_LF, + STATE(8478), 1, sym_comment, - [273437] = 4, + ACTIONS(4947), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [272731] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14969), 1, + ACTIONS(14332), 1, anon_sym_LF, - STATE(8913), 1, + STATE(8479), 1, sym_comment, - ACTIONS(14967), 4, + ACTIONS(14330), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [273453] = 5, - ACTIONS(3), 1, + [272747] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13741), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(15068), 1, - anon_sym_DOT, - STATE(8914), 1, + ACTIONS(14328), 1, + anon_sym_LF, + STATE(8480), 1, sym_comment, - ACTIONS(2583), 3, + ACTIONS(14326), 4, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [273471] = 7, - ACTIONS(3), 1, + anon_sym_RBRACE, + [272763] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4006), 1, - sym_identifier, - ACTIONS(4008), 1, - anon_sym_DOLLAR, - ACTIONS(4010), 1, - anon_sym_LPAREN2, - ACTIONS(4012), 1, - aux_sym_unquoted_token2, - ACTIONS(13520), 1, - anon_sym_DOT, - STATE(8915), 1, + ACTIONS(14332), 1, + anon_sym_LF, + STATE(8481), 1, sym_comment, - [273493] = 5, + ACTIONS(14330), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [272779] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - ACTIONS(4037), 1, - anon_sym_LPAREN2, - STATE(8916), 1, + ACTIONS(14296), 1, + anon_sym_LPAREN, + ACTIONS(14298), 1, + sym_unescaped_interpolated_content, + ACTIONS(14371), 1, + anon_sym_SQUOTE, + STATE(8473), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(8482), 1, sym_comment, - ACTIONS(1247), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH, - [273511] = 4, + STATE(9819), 1, + sym_expr_interpolated, + [272801] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1117), 1, - anon_sym_DASH, - STATE(8917), 1, - sym_comment, - ACTIONS(1119), 4, + ACTIONS(920), 1, sym_identifier, + ACTIONS(14373), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14375), 1, + aux_sym_unquoted_token2, + STATE(8483), 1, + sym_comment, + ACTIONS(922), 2, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT, - [273527] = 4, + anon_sym_LPAREN2, + [272821] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15028), 1, + ACTIONS(4953), 1, anon_sym_LF, - STATE(8918), 1, + STATE(8484), 1, sym_comment, - ACTIONS(15026), 4, + ACTIONS(4951), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [273543] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2724), 1, - anon_sym_DQUOTE, - ACTIONS(15072), 1, - aux_sym_path_token1, - STATE(7013), 1, - sym__str_double_quotes, - STATE(8919), 1, - sym_comment, - ACTIONS(15070), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [273563] = 4, + [272837] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15076), 1, + ACTIONS(14328), 1, anon_sym_LF, - STATE(8920), 1, + STATE(8485), 1, sym_comment, - ACTIONS(15074), 4, + ACTIONS(14326), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [273579] = 4, - ACTIONS(3), 1, + [272853] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(6754), 1, - anon_sym_DASH, - STATE(8921), 1, + ACTIONS(14332), 1, + anon_sym_LF, + STATE(8486), 1, sym_comment, - ACTIONS(6756), 4, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_DASH_DASH, - anon_sym_in, - [273595] = 4, + ACTIONS(14330), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [272869] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15080), 1, + ACTIONS(12543), 1, anon_sym_LF, - STATE(8922), 1, + STATE(8487), 1, sym_comment, - ACTIONS(15078), 4, + ACTIONS(12541), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [273611] = 5, + [272885] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15082), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15084), 1, - aux_sym_unquoted_token2, - STATE(8923), 1, + ACTIONS(10124), 1, + anon_sym_DOT_DOT2, + STATE(8488), 1, sym_comment, - ACTIONS(938), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [273629] = 4, + ACTIONS(3759), 2, + anon_sym_DOLLAR, + anon_sym_LBRACE, + ACTIONS(9989), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [272903] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14884), 1, + ACTIONS(12551), 1, anon_sym_LF, - STATE(8924), 1, + STATE(8489), 1, sym_comment, - ACTIONS(14882), 4, + ACTIONS(12549), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [273645] = 4, + [272919] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15032), 1, + ACTIONS(12420), 1, anon_sym_LF, - STATE(8925), 1, + STATE(8490), 1, sym_comment, - ACTIONS(15030), 4, + ACTIONS(12418), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [273661] = 7, + [272935] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, - anon_sym_LPAREN, - ACTIONS(14878), 1, - sym_unescaped_interpolated_content, - ACTIONS(15086), 1, - anon_sym_SQUOTE, - STATE(8926), 1, + ACTIONS(12610), 1, + anon_sym_LF, + STATE(8491), 1, sym_comment, - STATE(8930), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, - sym_expr_interpolated, - [273683] = 4, + ACTIONS(12608), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [272951] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15090), 1, + ACTIONS(14379), 1, anon_sym_LF, - STATE(8927), 1, + STATE(8492), 1, sym_comment, - ACTIONS(15088), 4, + ACTIONS(14377), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [273699] = 5, - ACTIONS(3), 1, + [272967] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(14381), 1, + ts_builtin_sym_end, + ACTIONS(14383), 1, + anon_sym_SEMI, + ACTIONS(14385), 1, + anon_sym_LF, + STATE(8493), 1, + sym_comment, + STATE(8495), 1, + aux_sym__block_body_repeat1, + STATE(9884), 1, + sym__terminator, + [272989] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15092), 1, + ACTIONS(7810), 1, + sym__entry_separator, + ACTIONS(9955), 1, anon_sym_DOT_DOT2, - STATE(8928), 1, + ACTIONS(14387), 1, + anon_sym_RBRACK, + STATE(8494), 1, sym_comment, - ACTIONS(2845), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(15094), 2, + ACTIONS(9957), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [273717] = 4, + [273009] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14997), 1, + ACTIONS(14383), 1, + anon_sym_SEMI, + ACTIONS(14385), 1, anon_sym_LF, - STATE(8929), 1, + ACTIONS(14389), 1, + ts_builtin_sym_end, + STATE(8495), 1, + sym_comment, + STATE(8533), 1, + aux_sym__block_body_repeat1, + STATE(9884), 1, + sym__terminator, + [273031] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(2358), 1, + sym__entry_separator, + ACTIONS(13068), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(14391), 1, + anon_sym_DOT, + STATE(8496), 1, + sym_comment, + ACTIONS(2356), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [273051] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(8497), 1, sym_comment, - ACTIONS(14995), 4, + ACTIONS(5215), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(5213), 3, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LF, anon_sym_PIPE, - anon_sym_RBRACE, - [273733] = 7, + [273067] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(3644), 1, + anon_sym_RBRACK, + ACTIONS(3646), 1, + sym__entry_separator, + ACTIONS(3648), 1, + anon_sym_LPAREN2, + ACTIONS(3650), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(13004), 1, + anon_sym_DOT, + STATE(8498), 1, + sym_comment, + [273089] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(8499), 1, + sym_comment, + ACTIONS(3693), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [273103] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(8500), 1, + sym_comment, + ACTIONS(3701), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [273117] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(8501), 1, + sym_comment, + ACTIONS(3713), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [273131] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, + ACTIONS(14296), 1, anon_sym_LPAREN, - ACTIONS(14878), 1, + ACTIONS(14298), 1, sym_unescaped_interpolated_content, - ACTIONS(15096), 1, + ACTIONS(14393), 1, anon_sym_SQUOTE, - STATE(8930), 1, + STATE(8502), 1, sym_comment, - STATE(9291), 1, + STATE(8503), 1, aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, + STATE(9819), 1, sym_expr_interpolated, - [273755] = 5, + [273153] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4020), 1, - anon_sym_COLON, - ACTIONS(15100), 1, - anon_sym_LF, - STATE(8931), 1, + ACTIONS(14296), 1, + anon_sym_LPAREN, + ACTIONS(14298), 1, + sym_unescaped_interpolated_content, + ACTIONS(14395), 1, + anon_sym_SQUOTE, + STATE(8473), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(8503), 1, sym_comment, - ACTIONS(15098), 3, + STATE(9819), 1, + sym_expr_interpolated, + [273175] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(6058), 1, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RBRACE, - [273773] = 6, + ACTIONS(6060), 1, + anon_sym_LF, + ACTIONS(14397), 1, + anon_sym_RPAREN, + STATE(1977), 1, + aux_sym__block_body_repeat1, + STATE(2372), 1, + sym__terminator, + STATE(8504), 1, + sym_comment, + [273197] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15102), 1, + ACTIONS(1758), 1, anon_sym_DQUOTE, - ACTIONS(15106), 1, + ACTIONS(14401), 1, aux_sym_path_token1, - STATE(5498), 1, + STATE(5011), 1, sym__str_double_quotes, - STATE(8932), 1, + STATE(8505), 1, sym_comment, - ACTIONS(15104), 2, + ACTIONS(14399), 2, sym__str_single_quotes, sym__str_back_ticks, - [273793] = 4, + [273217] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14983), 1, - anon_sym_LF, - STATE(8933), 1, + STATE(8506), 1, sym_comment, - ACTIONS(14981), 4, + ACTIONS(5219), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(5217), 3, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LF, anon_sym_PIPE, + [273233] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(8507), 1, + sym_comment, + ACTIONS(4957), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [273247] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(8508), 1, + sym_comment, + ACTIONS(4961), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [273261] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(8509), 1, + sym_comment, + ACTIONS(4965), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [273275] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(14403), 1, + anon_sym_DOT_DOT2, + STATE(8510), 1, + sym_comment, + ACTIONS(3356), 2, + anon_sym_COMMA, anon_sym_RBRACE, - [273809] = 7, + ACTIONS(14405), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [273293] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(8511), 1, + sym_comment, + ACTIONS(1267), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [273307] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(8512), 1, + sym_comment, + ACTIONS(1267), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [273321] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(8513), 1, + sym_comment, + ACTIONS(4999), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [273335] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(8514), 1, + sym_comment, + ACTIONS(5003), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [273349] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, + ACTIONS(14296), 1, anon_sym_LPAREN, - ACTIONS(14878), 1, + ACTIONS(14298), 1, sym_unescaped_interpolated_content, - ACTIONS(15108), 1, + ACTIONS(14407), 1, anon_sym_SQUOTE, - STATE(8934), 1, + STATE(8515), 1, sym_comment, - STATE(9291), 1, + STATE(8518), 1, aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, + STATE(9819), 1, sym_expr_interpolated, - [273831] = 4, - ACTIONS(113), 1, + [273371] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15112), 1, - anon_sym_LF, - STATE(8935), 1, + STATE(8516), 1, sym_comment, - ACTIONS(15110), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [273847] = 6, + ACTIONS(5007), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [273385] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12217), 1, - anon_sym_DOT, - STATE(6166), 1, - sym_cell_path, - STATE(7027), 1, - sym_path, - STATE(8936), 1, + STATE(8517), 1, sym_comment, - ACTIONS(1205), 2, - anon_sym_DOLLAR, - anon_sym_LBRACE, - [273867] = 4, + ACTIONS(5021), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [273399] = 7, ACTIONS(113), 1, anon_sym_POUND, - STATE(8937), 1, + ACTIONS(14296), 1, + anon_sym_LPAREN, + ACTIONS(14298), 1, + sym_unescaped_interpolated_content, + ACTIONS(14409), 1, + anon_sym_SQUOTE, + STATE(8473), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(8518), 1, sym_comment, - ACTIONS(3505), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(3507), 3, - anon_sym_LPAREN2, - anon_sym_DOT, - sym__entry_separator, - [273883] = 6, + STATE(9819), 1, + sym_expr_interpolated, + [273421] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(13169), 1, - anon_sym_DOT, - ACTIONS(14482), 1, - aux_sym__immediate_decimal_token1, - STATE(8938), 1, + ACTIONS(14411), 1, + anon_sym_DQUOTE, + ACTIONS(14415), 1, + aux_sym_path_token1, + STATE(3449), 1, + sym__str_double_quotes, + STATE(8519), 1, sym_comment, - ACTIONS(3750), 2, - anon_sym_DOLLAR, - anon_sym_LBRACE, - [273903] = 5, + ACTIONS(14413), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [273441] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5011), 1, - anon_sym_DASH, - ACTIONS(15114), 1, - anon_sym_EQ, - STATE(8939), 1, + STATE(8520), 1, sym_comment, - ACTIONS(5015), 3, - anon_sym_DOLLAR, + ACTIONS(5025), 5, + sym_cmd_identifier, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [273921] = 3, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [273455] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(8940), 1, + STATE(8521), 1, sym_comment, - ACTIONS(3868), 5, + ACTIONS(5029), 5, sym_cmd_identifier, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [273935] = 3, + [273469] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(8941), 1, + STATE(8522), 1, sym_comment, - ACTIONS(5237), 5, + ACTIONS(5033), 5, sym_cmd_identifier, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [273949] = 7, + [273483] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4006), 1, - anon_sym_RBRACK, - ACTIONS(4008), 1, - sym__entry_separator, - ACTIONS(4010), 1, - anon_sym_LPAREN2, - ACTIONS(4012), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(13520), 1, - anon_sym_DOT, - STATE(8942), 1, + ACTIONS(13834), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(8523), 1, sym_comment, - [273971] = 4, + ACTIONS(1139), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + [273499] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14909), 1, + ACTIONS(7818), 1, + anon_sym_PIPE, + ACTIONS(14044), 1, + anon_sym_SEMI, + ACTIONS(14046), 1, anon_sym_LF, - STATE(8943), 1, + ACTIONS(14417), 1, + ts_builtin_sym_end, + STATE(3560), 1, + aux_sym_pipe_element_repeat1, + STATE(8524), 1, sym_comment, - ACTIONS(14907), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [273987] = 4, - ACTIONS(113), 1, + [273521] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14913), 1, - anon_sym_LF, - STATE(8944), 1, + ACTIONS(2356), 1, + aux_sym_unquoted_token2, + ACTIONS(14419), 1, + aux_sym__immediate_decimal_token2, + STATE(8525), 1, sym_comment, - ACTIONS(14911), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [274003] = 4, - ACTIONS(113), 1, + ACTIONS(2358), 3, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT, + [273539] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14969), 1, - anon_sym_LF, - STATE(8945), 1, + ACTIONS(14421), 1, + anon_sym_DOT_DOT2, + STATE(8526), 1, sym_comment, - ACTIONS(14967), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(3693), 2, + anon_sym_COMMA, anon_sym_RBRACE, - [274019] = 6, + ACTIONS(14423), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [273557] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12217), 1, - anon_sym_DOT, - STATE(6261), 1, - sym_cell_path, - STATE(7027), 1, - sym_path, - STATE(8946), 1, + ACTIONS(14425), 1, + anon_sym_DOT_DOT2, + STATE(8527), 1, sym_comment, - ACTIONS(1188), 2, - anon_sym_DOLLAR, - anon_sym_LBRACE, - [274039] = 4, - ACTIONS(113), 1, + ACTIONS(3701), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(14427), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [273575] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15118), 1, - anon_sym_LF, - STATE(8947), 1, + ACTIONS(14429), 1, + anon_sym_DOT_DOT2, + STATE(8528), 1, sym_comment, - ACTIONS(15116), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(3713), 2, + anon_sym_COMMA, anon_sym_RBRACE, - [274055] = 4, + ACTIONS(14431), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [273593] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14997), 1, - anon_sym_LF, - STATE(8948), 1, + ACTIONS(14433), 1, + sym_long_flag_identifier, + STATE(8529), 1, sym_comment, - ACTIONS(14995), 4, + ACTIONS(4734), 2, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [274071] = 7, + ACTIONS(4738), 2, + ts_builtin_sym_end, + anon_sym_LF, + [273611] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, + ACTIONS(14296), 1, anon_sym_LPAREN, - ACTIONS(14878), 1, + ACTIONS(14298), 1, sym_unescaped_interpolated_content, - ACTIONS(15120), 1, + ACTIONS(14435), 1, anon_sym_SQUOTE, - STATE(8949), 1, + STATE(8530), 1, sym_comment, - STATE(8953), 1, + STATE(8532), 1, aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, + STATE(9819), 1, sym_expr_interpolated, - [274093] = 3, + [273633] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(8950), 1, + ACTIONS(920), 1, + anon_sym_DASH, + STATE(8531), 1, + sym_comment, + ACTIONS(922), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [273649] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(14296), 1, + anon_sym_LPAREN, + ACTIONS(14298), 1, + sym_unescaped_interpolated_content, + ACTIONS(14437), 1, + anon_sym_SQUOTE, + STATE(8473), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(8532), 1, + sym_comment, + STATE(9819), 1, + sym_expr_interpolated, + [273671] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(14439), 1, + ts_builtin_sym_end, + ACTIONS(14441), 1, + anon_sym_SEMI, + ACTIONS(14444), 1, + anon_sym_LF, + STATE(9884), 1, + sym__terminator, + STATE(8533), 2, + sym_comment, + aux_sym__block_body_repeat1, + [273691] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(14447), 1, + anon_sym_DQUOTE, + ACTIONS(14451), 1, + aux_sym_path_token1, + STATE(6654), 1, + sym__str_double_quotes, + STATE(8534), 1, + sym_comment, + ACTIONS(14449), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [273711] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(8535), 1, sym_comment, - ACTIONS(1304), 5, + ACTIONS(1053), 5, sym_cmd_identifier, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [274107] = 4, + [273725] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15124), 1, - anon_sym_LF, - STATE(8951), 1, + ACTIONS(1157), 1, + anon_sym_LPAREN2, + STATE(8536), 1, sym_comment, - ACTIONS(15122), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [274123] = 4, - ACTIONS(113), 1, + ACTIONS(1155), 4, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH, + aux_sym_unquoted_token6, + [273741] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6039), 1, - anon_sym_LF, - STATE(8952), 1, + ACTIONS(14453), 1, + anon_sym_DQUOTE, + ACTIONS(14457), 1, + aux_sym_path_token1, + STATE(3704), 1, + sym__str_double_quotes, + STATE(8537), 1, sym_comment, - ACTIONS(6037), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [274139] = 7, + ACTIONS(14455), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [273761] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, + ACTIONS(14296), 1, anon_sym_LPAREN, - ACTIONS(14878), 1, + ACTIONS(14298), 1, sym_unescaped_interpolated_content, - ACTIONS(15126), 1, + ACTIONS(14459), 1, anon_sym_SQUOTE, - STATE(8953), 1, + STATE(8538), 1, sym_comment, - STATE(9291), 1, + STATE(8539), 1, aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, + STATE(9819), 1, sym_expr_interpolated, - [274161] = 4, + [273783] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14899), 1, - anon_sym_LF, - STATE(8954), 1, + ACTIONS(14296), 1, + anon_sym_LPAREN, + ACTIONS(14298), 1, + sym_unescaped_interpolated_content, + ACTIONS(14461), 1, + anon_sym_SQUOTE, + STATE(8473), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(8539), 1, sym_comment, - ACTIONS(14897), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [274177] = 6, + STATE(9819), 1, + sym_expr_interpolated, + [273805] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15128), 1, + ACTIONS(3178), 1, anon_sym_DQUOTE, - ACTIONS(15132), 1, + ACTIONS(14465), 1, aux_sym_path_token1, - STATE(4723), 1, + STATE(4156), 1, sym__str_double_quotes, - STATE(8955), 1, + STATE(8540), 1, sym_comment, - ACTIONS(15130), 2, + ACTIONS(14463), 2, sym__str_single_quotes, sym__str_back_ticks, - [274197] = 4, + [273825] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14909), 1, - anon_sym_LF, - STATE(8956), 1, + STATE(8541), 1, + sym_comment, + ACTIONS(2229), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(2231), 3, + anon_sym_LPAREN2, + anon_sym_DOT, + sym__entry_separator, + [273841] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(8542), 1, + sym_comment, + ACTIONS(2362), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(2364), 3, + anon_sym_LPAREN2, + anon_sym_DOT, + sym__entry_separator, + [273857] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(8543), 1, sym_comment, - ACTIONS(14907), 4, + ACTIONS(4957), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(4955), 3, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LF, anon_sym_PIPE, - anon_sym_RBRACE, - [274213] = 4, - ACTIONS(3), 1, + [273873] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2437), 1, - aux_sym_unquoted_token2, - STATE(8957), 1, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + ACTIONS(3727), 1, + anon_sym_LPAREN2, + ACTIONS(14467), 1, + aux_sym_command_token1, + STATE(8544), 1, sym_comment, - ACTIONS(2439), 4, + ACTIONS(3725), 2, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT, - [274229] = 3, + [273893] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(8958), 1, + STATE(8545), 1, sym_comment, - ACTIONS(1344), 5, + ACTIONS(1281), 5, sym_cmd_identifier, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [274243] = 7, + [273907] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1047), 1, + anon_sym_DASH, + STATE(8546), 1, + sym_comment, + ACTIONS(1049), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT, + [273923] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(8547), 1, + sym_comment, + ACTIONS(2362), 2, + sym_identifier, + aux_sym_unquoted_token2, + ACTIONS(2364), 3, + anon_sym_DOLLAR, + anon_sym_LPAREN2, + anon_sym_DOT, + [273939] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, + ACTIONS(14296), 1, anon_sym_LPAREN, - ACTIONS(14878), 1, + ACTIONS(14298), 1, sym_unescaped_interpolated_content, - ACTIONS(15134), 1, + ACTIONS(14469), 1, anon_sym_SQUOTE, - STATE(8959), 1, + STATE(8548), 1, sym_comment, - STATE(8963), 1, + STATE(8549), 1, aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, + STATE(9819), 1, sym_expr_interpolated, - [274265] = 4, + [273961] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14935), 1, - anon_sym_LF, - STATE(8960), 1, + ACTIONS(14296), 1, + anon_sym_LPAREN, + ACTIONS(14298), 1, + sym_unescaped_interpolated_content, + ACTIONS(14471), 1, + anon_sym_SQUOTE, + STATE(8473), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(8549), 1, sym_comment, - ACTIONS(14933), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [274281] = 4, + STATE(9819), 1, + sym_expr_interpolated, + [273983] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(14473), 1, + anon_sym_DQUOTE, + ACTIONS(14477), 1, + aux_sym_path_token1, + STATE(4497), 1, + sym__str_double_quotes, + STATE(8550), 1, + sym_comment, + ACTIONS(14475), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [274003] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14899), 1, - anon_sym_LF, - STATE(8961), 1, + STATE(8551), 1, sym_comment, - ACTIONS(14897), 4, + ACTIONS(5153), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(5151), 3, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LF, anon_sym_PIPE, - anon_sym_RBRACE, - [274297] = 5, + [274019] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1139), 1, + anon_sym_DASH, + STATE(8552), 1, + sym_comment, + ACTIONS(1209), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [274035] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1934), 1, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3362), 1, aux_sym_unquoted_token2, - ACTIONS(13319), 1, + ACTIONS(3576), 1, + anon_sym_LBRACE, + ACTIONS(12513), 1, anon_sym_DOT, - STATE(8962), 1, + ACTIONS(14479), 1, + aux_sym__immediate_decimal_token1, + STATE(8553), 1, sym_comment, - ACTIONS(3520), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [274315] = 7, + [274057] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, - anon_sym_LPAREN, - ACTIONS(14878), 1, - sym_unescaped_interpolated_content, - ACTIONS(15136), 1, - anon_sym_SQUOTE, - STATE(8963), 1, + ACTIONS(1209), 1, + anon_sym_LPAREN2, + ACTIONS(14481), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(8554), 1, sym_comment, - STATE(9291), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, - sym_expr_interpolated, - [274337] = 7, + ACTIONS(1139), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH, + [274075] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1037), 1, + anon_sym_DASH, + STATE(8555), 1, + sym_comment, + ACTIONS(1039), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT, + [274091] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, - anon_sym_LPAREN, - ACTIONS(14878), 1, - sym_unescaped_interpolated_content, - ACTIONS(15138), 1, - anon_sym_SQUOTE, - STATE(8964), 1, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(3574), 1, + anon_sym_RBRACK, + ACTIONS(3576), 1, + sym__entry_separator, + ACTIONS(12513), 1, + anon_sym_DOT, + ACTIONS(13911), 1, + aux_sym__immediate_decimal_token1, + STATE(8556), 1, sym_comment, - STATE(8996), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, - sym_expr_interpolated, - [274359] = 6, + [274113] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(14383), 1, + anon_sym_SEMI, + ACTIONS(14385), 1, + anon_sym_LF, + ACTIONS(14483), 1, + ts_builtin_sym_end, + STATE(8533), 1, + aux_sym__block_body_repeat1, + STATE(8557), 1, + sym_comment, + STATE(9884), 1, + sym__terminator, + [274135] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15140), 1, - anon_sym_DQUOTE, - ACTIONS(15144), 1, - aux_sym_path_token1, - STATE(594), 1, - sym__str_double_quotes, - STATE(8965), 1, + ACTIONS(1041), 1, + anon_sym_DASH, + STATE(8558), 1, + sym_comment, + ACTIONS(1043), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT, + [274151] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(8559), 1, sym_comment, - ACTIONS(15142), 2, + ACTIONS(1167), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [274379] = 7, + [274165] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, + ACTIONS(14296), 1, anon_sym_LPAREN, - ACTIONS(14878), 1, + ACTIONS(14298), 1, sym_unescaped_interpolated_content, - ACTIONS(15146), 1, + ACTIONS(14485), 1, anon_sym_SQUOTE, - STATE(8966), 1, + STATE(8560), 1, sym_comment, - STATE(8977), 1, + STATE(8561), 1, aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, + STATE(9819), 1, sym_expr_interpolated, - [274401] = 4, + [274187] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14997), 1, - anon_sym_LF, - STATE(8967), 1, + ACTIONS(14296), 1, + anon_sym_LPAREN, + ACTIONS(14298), 1, + sym_unescaped_interpolated_content, + ACTIONS(14487), 1, + anon_sym_SQUOTE, + STATE(8473), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(8561), 1, sym_comment, - ACTIONS(14995), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [274417] = 4, + STATE(9819), 1, + sym_expr_interpolated, + [274209] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15150), 1, - anon_sym_LF, - STATE(8968), 1, + STATE(8562), 1, sym_comment, - ACTIONS(15148), 4, + ACTIONS(4961), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(4959), 3, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LF, anon_sym_PIPE, - anon_sym_RBRACE, - [274433] = 7, - ACTIONS(113), 1, + [274225] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14876), 1, - anon_sym_LPAREN, - ACTIONS(14878), 1, - sym_unescaped_interpolated_content, - ACTIONS(15152), 1, - anon_sym_SQUOTE, - STATE(8969), 1, + ACTIONS(14489), 1, + anon_sym_DQUOTE, + ACTIONS(14493), 1, + aux_sym_path_token1, + STATE(4726), 1, + sym__str_double_quotes, + STATE(8563), 1, sym_comment, - STATE(8973), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, - sym_expr_interpolated, - [274455] = 6, + ACTIONS(14491), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [274245] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3518), 1, - anon_sym_RBRACE, - ACTIONS(3520), 1, + ACTIONS(920), 1, + anon_sym_RBRACK, + ACTIONS(14495), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14497), 1, + aux_sym_unquoted_token2, + STATE(8564), 1, + sym_comment, + ACTIONS(922), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(15154), 1, - anon_sym_DOT_DOT2, - STATE(8970), 1, + [274265] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2229), 1, + aux_sym_unquoted_token2, + STATE(8565), 1, sym_comment, - ACTIONS(15156), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [274475] = 7, + ACTIONS(2231), 4, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT, + [274281] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2229), 1, + aux_sym_unquoted_token2, + ACTIONS(14105), 1, + aux_sym__immediate_decimal_token2, + STATE(8566), 1, + sym_comment, + ACTIONS(2231), 3, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT, + [274299] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, - anon_sym_LPAREN, - ACTIONS(14878), 1, - sym_unescaped_interpolated_content, - ACTIONS(15158), 1, - anon_sym_SQUOTE, - STATE(8971), 1, + STATE(8567), 1, sym_comment, - STATE(9030), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, - sym_expr_interpolated, - [274497] = 4, + ACTIONS(4965), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(4963), 3, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, + [274315] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2547), 1, + ACTIONS(14499), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14501), 1, aux_sym_unquoted_token2, - STATE(8972), 1, + STATE(8568), 1, sym_comment, - ACTIONS(2549), 4, + ACTIONS(922), 3, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_LPAREN2, - anon_sym_DOT, - [274513] = 7, + [274333] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1209), 1, + ts_builtin_sym_end, + ACTIONS(5903), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(8569), 1, + sym_comment, + ACTIONS(1139), 3, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, + [274351] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, + ACTIONS(14296), 1, anon_sym_LPAREN, - ACTIONS(14878), 1, + ACTIONS(14298), 1, sym_unescaped_interpolated_content, - ACTIONS(15160), 1, + ACTIONS(14503), 1, anon_sym_SQUOTE, - STATE(8973), 1, + STATE(8570), 1, sym_comment, - STATE(9291), 1, + STATE(8571), 1, aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, + STATE(9819), 1, sym_expr_interpolated, - [274535] = 4, + [274373] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14935), 1, - anon_sym_LF, - STATE(8974), 1, + ACTIONS(14296), 1, + anon_sym_LPAREN, + ACTIONS(14298), 1, + sym_unescaped_interpolated_content, + ACTIONS(14505), 1, + anon_sym_SQUOTE, + STATE(8473), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(8571), 1, sym_comment, - ACTIONS(14933), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [274551] = 6, + STATE(9819), 1, + sym_expr_interpolated, + [274395] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15162), 1, + ACTIONS(14507), 1, anon_sym_DQUOTE, - ACTIONS(15166), 1, + ACTIONS(14511), 1, aux_sym_path_token1, - STATE(1507), 1, + STATE(1466), 1, sym__str_double_quotes, - STATE(8975), 1, + STATE(8572), 1, sym_comment, - ACTIONS(15164), 2, + ACTIONS(14509), 2, sym__str_single_quotes, sym__str_back_ticks, - [274571] = 4, + [274415] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(3312), 1, + sym_identifier, + ACTIONS(3314), 1, + anon_sym_DOLLAR, + ACTIONS(3316), 1, + anon_sym_LPAREN2, + ACTIONS(12748), 1, + anon_sym_DOT, + STATE(8573), 1, + sym_comment, + [274437] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(6043), 1, - anon_sym_LF, - STATE(8976), 1, + ACTIONS(14513), 1, + anon_sym_catch, + STATE(8574), 1, sym_comment, - ACTIONS(6041), 4, + ACTIONS(14193), 2, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [274587] = 7, + ACTIONS(14195), 2, + ts_builtin_sym_end, + anon_sym_LF, + [274455] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, + ACTIONS(14296), 1, anon_sym_LPAREN, - ACTIONS(14878), 1, + ACTIONS(14298), 1, sym_unescaped_interpolated_content, - ACTIONS(15168), 1, + ACTIONS(14515), 1, anon_sym_SQUOTE, - STATE(8977), 1, + STATE(8575), 1, sym_comment, - STATE(9291), 1, + STATE(8576), 1, aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, + STATE(9819), 1, sym_expr_interpolated, - [274609] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15170), 1, - aux_sym__immediate_decimal_token1, - STATE(8978), 1, - sym_comment, - ACTIONS(5083), 2, - sym_identifier, - anon_sym_DASH, - ACTIONS(5085), 2, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [274627] = 7, + [274477] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, + ACTIONS(14296), 1, anon_sym_LPAREN, - ACTIONS(14878), 1, + ACTIONS(14298), 1, sym_unescaped_interpolated_content, - ACTIONS(15172), 1, + ACTIONS(14517), 1, anon_sym_SQUOTE, - STATE(8979), 1, - sym_comment, - STATE(8983), 1, + STATE(8473), 1, aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, + STATE(8576), 1, + sym_comment, + STATE(9819), 1, sym_expr_interpolated, - [274649] = 6, + [274499] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3552), 1, + ACTIONS(3038), 1, anon_sym_DQUOTE, - ACTIONS(15176), 1, + ACTIONS(14521), 1, aux_sym_path_token1, - STATE(5369), 1, + STATE(5171), 1, sym__str_double_quotes, - STATE(8980), 1, + STATE(8577), 1, sym_comment, - ACTIONS(15174), 2, + ACTIONS(14519), 2, sym__str_single_quotes, sym__str_back_ticks, - [274669] = 6, - ACTIONS(3), 1, + [274519] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12217), 1, - anon_sym_DOT, - STATE(5531), 1, - sym_cell_path, - STATE(7027), 1, - sym_path, - STATE(8981), 1, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + ACTIONS(3727), 1, + anon_sym_LPAREN2, + ACTIONS(14523), 1, + aux_sym_command_token1, + STATE(8578), 1, sym_comment, - ACTIONS(1150), 2, + ACTIONS(3725), 2, + sym_identifier, anon_sym_DOLLAR, - anon_sym_LBRACE, - [274689] = 6, + [274539] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12217), 1, - anon_sym_DOT, - STATE(5492), 1, - sym_cell_path, - STATE(7027), 1, - sym_path, - STATE(8982), 1, + ACTIONS(1211), 1, + anon_sym_DASH, + STATE(8579), 1, sym_comment, - ACTIONS(1181), 2, + ACTIONS(1213), 4, + sym_identifier, anon_sym_DOLLAR, - anon_sym_LBRACE, - [274709] = 7, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [274555] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(6058), 1, + anon_sym_SEMI, + ACTIONS(6060), 1, + anon_sym_LF, + ACTIONS(14397), 1, + anon_sym_RPAREN, + STATE(2372), 1, + sym__terminator, + STATE(8580), 1, + sym_comment, + STATE(8766), 1, + aux_sym__block_body_repeat1, + [274577] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, + ACTIONS(14296), 1, anon_sym_LPAREN, - ACTIONS(14878), 1, + ACTIONS(14298), 1, sym_unescaped_interpolated_content, - ACTIONS(15178), 1, + ACTIONS(14525), 1, anon_sym_SQUOTE, - STATE(8983), 1, + STATE(8581), 1, sym_comment, - STATE(9291), 1, + STATE(8582), 1, aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, + STATE(9819), 1, sym_expr_interpolated, - [274731] = 4, + [274599] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14899), 1, - anon_sym_LF, - STATE(8984), 1, + ACTIONS(14296), 1, + anon_sym_LPAREN, + ACTIONS(14298), 1, + sym_unescaped_interpolated_content, + ACTIONS(14527), 1, + anon_sym_SQUOTE, + STATE(8473), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(8582), 1, sym_comment, - ACTIONS(14897), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [274747] = 6, + STATE(9819), 1, + sym_expr_interpolated, + [274621] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15180), 1, + ACTIONS(14529), 1, anon_sym_DQUOTE, - ACTIONS(15184), 1, + ACTIONS(14533), 1, aux_sym_path_token1, - STATE(7836), 1, + STATE(4526), 1, sym__str_double_quotes, - STATE(8985), 1, + STATE(8583), 1, sym_comment, - ACTIONS(15182), 2, + ACTIONS(14531), 2, sym__str_single_quotes, sym__str_back_ticks, - [274767] = 4, + [274641] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3505), 1, - aux_sym_unquoted_token2, - STATE(8986), 1, + ACTIONS(1215), 1, + anon_sym_DASH, + STATE(8584), 1, sym_comment, - ACTIONS(3507), 4, + ACTIONS(1217), 4, + sym_identifier, anon_sym_DOLLAR, - anon_sym_LBRACE, + anon_sym_DASH_DASH, anon_sym_LPAREN2, - anon_sym_DOT, - [274783] = 4, + [274657] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14913), 1, - anon_sym_LF, - STATE(8987), 1, + ACTIONS(14296), 1, + anon_sym_LPAREN, + ACTIONS(14298), 1, + sym_unescaped_interpolated_content, + ACTIONS(14535), 1, + anon_sym_SQUOTE, + STATE(8585), 1, sym_comment, - ACTIONS(14911), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [274799] = 4, - ACTIONS(113), 1, + STATE(8587), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(9819), 1, + sym_expr_interpolated, + [274679] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14893), 1, - anon_sym_LF, - STATE(8988), 1, + ACTIONS(13130), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(14537), 1, + anon_sym_DOT, + STATE(8586), 1, sym_comment, - ACTIONS(14891), 4, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2358), 3, anon_sym_PIPE, - anon_sym_RBRACE, - [274815] = 7, + anon_sym_if, + anon_sym_EQ_GT, + [274697] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, + ACTIONS(14296), 1, anon_sym_LPAREN, - ACTIONS(14878), 1, + ACTIONS(14298), 1, sym_unescaped_interpolated_content, - ACTIONS(15186), 1, + ACTIONS(14539), 1, anon_sym_SQUOTE, - STATE(8989), 1, - sym_comment, - STATE(8993), 1, + STATE(8473), 1, aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, + STATE(8587), 1, + sym_comment, + STATE(9819), 1, sym_expr_interpolated, - [274837] = 4, + [274719] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(14541), 1, + anon_sym_DQUOTE, + ACTIONS(14545), 1, + aux_sym_path_token1, + STATE(5263), 1, + sym__str_double_quotes, + STATE(8588), 1, + sym_comment, + ACTIONS(14543), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [274739] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(8589), 1, + sym_comment, + ACTIONS(14547), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [274753] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(8590), 1, + sym_comment, + ACTIONS(14549), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [274767] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2229), 1, + aux_sym_unquoted_token2, + STATE(8591), 1, + sym_comment, + ACTIONS(2231), 4, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT, + [274783] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14947), 1, + ACTIONS(14383), 1, + anon_sym_SEMI, + ACTIONS(14385), 1, anon_sym_LF, - STATE(8990), 1, + ACTIONS(14389), 1, + ts_builtin_sym_end, + STATE(8557), 1, + aux_sym__block_body_repeat1, + STATE(8592), 1, sym_comment, - ACTIONS(14945), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [274853] = 5, + STATE(9884), 1, + sym__terminator, + [274805] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15190), 1, + ACTIONS(14553), 1, anon_sym_LF, - ACTIONS(15192), 1, - anon_sym_catch, - STATE(8991), 1, + STATE(8593), 1, sym_comment, - ACTIONS(15188), 3, + ACTIONS(14551), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - [274871] = 4, + anon_sym_RBRACE, + [274821] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(6047), 1, + ACTIONS(14557), 1, anon_sym_LF, - STATE(8992), 1, + STATE(8594), 1, sym_comment, - ACTIONS(6045), 4, + ACTIONS(14555), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [274887] = 7, - ACTIONS(113), 1, + [274837] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14876), 1, - anon_sym_LPAREN, - ACTIONS(14878), 1, - sym_unescaped_interpolated_content, - ACTIONS(15194), 1, - anon_sym_SQUOTE, - STATE(8993), 1, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(13087), 1, + anon_sym_DOT, + STATE(8595), 1, sym_comment, - STATE(9291), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, - sym_expr_interpolated, - [274909] = 4, + ACTIONS(3773), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [274855] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14909), 1, + ACTIONS(14561), 1, anon_sym_LF, - STATE(8994), 1, + STATE(8596), 1, sym_comment, - ACTIONS(14907), 4, + ACTIONS(14559), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [274925] = 6, + [274871] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15196), 1, - anon_sym_DQUOTE, - ACTIONS(15200), 1, - aux_sym_path_token1, - STATE(5247), 1, - sym__str_double_quotes, - STATE(8995), 1, - sym_comment, - ACTIONS(15198), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [274945] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(14876), 1, - anon_sym_LPAREN, - ACTIONS(14878), 1, - sym_unescaped_interpolated_content, - ACTIONS(15202), 1, - anon_sym_SQUOTE, - STATE(8996), 1, + ACTIONS(2362), 1, + aux_sym_unquoted_token2, + ACTIONS(14563), 1, + aux_sym__immediate_decimal_token2, + STATE(8597), 1, sym_comment, - STATE(9291), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, - sym_expr_interpolated, - [274967] = 3, + ACTIONS(2364), 3, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT, + [274889] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(8997), 1, + STATE(8598), 1, sym_comment, - ACTIONS(1188), 5, + ACTIONS(14565), 5, sym_cmd_identifier, - anon_sym_DASH_DASH, + anon_sym_RBRACK, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [274981] = 4, + [274903] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14969), 1, + ACTIONS(14569), 1, anon_sym_LF, - STATE(8998), 1, + STATE(8599), 1, sym_comment, - ACTIONS(14967), 4, + ACTIONS(14567), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [274997] = 7, + [274919] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, + ACTIONS(14296), 1, anon_sym_LPAREN, - ACTIONS(14878), 1, + ACTIONS(14298), 1, sym_unescaped_interpolated_content, - ACTIONS(15204), 1, + ACTIONS(14571), 1, anon_sym_SQUOTE, - STATE(8999), 1, + STATE(8600), 1, sym_comment, - STATE(9003), 1, + STATE(8601), 1, aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, + STATE(9819), 1, sym_expr_interpolated, - [275019] = 4, + [274941] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14947), 1, - anon_sym_LF, - STATE(9000), 1, + ACTIONS(14296), 1, + anon_sym_LPAREN, + ACTIONS(14298), 1, + sym_unescaped_interpolated_content, + ACTIONS(14573), 1, + anon_sym_SQUOTE, + STATE(8473), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(8601), 1, sym_comment, - ACTIONS(14945), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [275035] = 6, + STATE(9819), 1, + sym_expr_interpolated, + [274963] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(217), 1, anon_sym_DQUOTE, - ACTIONS(15208), 1, + ACTIONS(14577), 1, aux_sym_path_token1, - STATE(5588), 1, + STATE(5198), 1, sym__str_double_quotes, - STATE(9001), 1, + STATE(8602), 1, sym_comment, - ACTIONS(15206), 2, + ACTIONS(14575), 2, sym__str_single_quotes, sym__str_back_ticks, - [275055] = 4, + [274983] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14913), 1, + ACTIONS(14581), 1, anon_sym_LF, - STATE(9002), 1, + STATE(8603), 1, sym_comment, - ACTIONS(14911), 4, + ACTIONS(14579), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [275071] = 7, + [274999] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, - anon_sym_LPAREN, - ACTIONS(14878), 1, - sym_unescaped_interpolated_content, - ACTIONS(15210), 1, - anon_sym_SQUOTE, - STATE(9003), 1, + ACTIONS(14585), 1, + anon_sym_LF, + STATE(8604), 1, sym_comment, - STATE(9291), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, - sym_expr_interpolated, - [275093] = 4, + ACTIONS(14583), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [275015] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14884), 1, + ACTIONS(14581), 1, anon_sym_LF, - STATE(9004), 1, + STATE(8605), 1, sym_comment, - ACTIONS(14882), 4, + ACTIONS(14579), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [275109] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15212), 1, - anon_sym_DQUOTE, - ACTIONS(15216), 1, - aux_sym_path_token1, - STATE(474), 1, - sym__str_double_quotes, - STATE(9005), 1, - sym_comment, - ACTIONS(15214), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [275129] = 4, + [275031] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9006), 1, + ACTIONS(14585), 1, + anon_sym_LF, + STATE(8606), 1, sym_comment, - ACTIONS(4018), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(4016), 3, + ACTIONS(14583), 4, anon_sym_SEMI, - anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, - [275145] = 4, + anon_sym_RBRACE, + [275047] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13053), 1, + ACTIONS(14581), 1, anon_sym_LF, - STATE(9007), 1, + STATE(8607), 1, sym_comment, - ACTIONS(13051), 4, + ACTIONS(14579), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [275161] = 4, + [275063] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14893), 1, + ACTIONS(14585), 1, anon_sym_LF, - STATE(9008), 1, + STATE(8608), 1, sym_comment, - ACTIONS(14891), 4, + ACTIONS(14583), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [275177] = 7, - ACTIONS(113), 1, + [275079] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14876), 1, - anon_sym_LPAREN, - ACTIONS(14878), 1, - sym_unescaped_interpolated_content, - ACTIONS(15218), 1, - anon_sym_SQUOTE, - STATE(9009), 1, + STATE(8609), 1, sym_comment, - STATE(9012), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, - sym_expr_interpolated, - [275199] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(4006), 1, - anon_sym_RBRACK, - ACTIONS(4008), 1, - sym__entry_separator, - ACTIONS(4010), 1, - anon_sym_LPAREN2, - ACTIONS(4012), 1, + ACTIONS(2402), 2, + sym_identifier, aux_sym_unquoted_token2, - ACTIONS(13520), 1, + ACTIONS(2404), 3, + anon_sym_DOLLAR, + anon_sym_LPAREN2, anon_sym_DOT, - STATE(9010), 1, - sym_comment, - [275221] = 4, + [275095] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14969), 1, + ACTIONS(14581), 1, anon_sym_LF, - STATE(9011), 1, + STATE(8610), 1, sym_comment, - ACTIONS(14967), 4, + ACTIONS(14579), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [275237] = 7, + [275111] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2362), 1, + aux_sym_unquoted_token2, + STATE(8611), 1, + sym_comment, + ACTIONS(2364), 4, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT, + [275127] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2356), 1, + aux_sym_unquoted_token2, + ACTIONS(14345), 1, + aux_sym__immediate_decimal_token2, + STATE(8612), 1, + sym_comment, + ACTIONS(2358), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT, + [275145] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, + ACTIONS(14296), 1, anon_sym_LPAREN, - ACTIONS(14878), 1, + ACTIONS(14298), 1, sym_unescaped_interpolated_content, - ACTIONS(15220), 1, + ACTIONS(14587), 1, anon_sym_SQUOTE, - STATE(9012), 1, + STATE(8613), 1, sym_comment, - STATE(9291), 1, + STATE(8614), 1, aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, + STATE(9819), 1, sym_expr_interpolated, - [275259] = 7, + [275167] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, + ACTIONS(14296), 1, anon_sym_LPAREN, - ACTIONS(14878), 1, + ACTIONS(14298), 1, sym_unescaped_interpolated_content, - ACTIONS(15222), 1, + ACTIONS(14589), 1, anon_sym_SQUOTE, - STATE(9013), 1, - sym_comment, - STATE(9145), 1, + STATE(8473), 1, aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, + STATE(8614), 1, + sym_comment, + STATE(9819), 1, sym_expr_interpolated, - [275281] = 6, + [275189] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(14585), 1, + anon_sym_LF, + STATE(8615), 1, + sym_comment, + ACTIONS(14583), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [275205] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15224), 1, + ACTIONS(14591), 1, anon_sym_DQUOTE, - ACTIONS(15228), 1, + ACTIONS(14595), 1, aux_sym_path_token1, - STATE(1353), 1, + STATE(4333), 1, sym__str_double_quotes, - STATE(9014), 1, + STATE(8616), 1, sym_comment, - ACTIONS(15226), 2, + ACTIONS(14593), 2, sym__str_single_quotes, sym__str_back_ticks, - [275301] = 4, + [275225] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14913), 1, + ACTIONS(14581), 1, anon_sym_LF, - STATE(9015), 1, + STATE(8617), 1, sym_comment, - ACTIONS(14911), 4, + ACTIONS(14579), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [275317] = 4, + [275241] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14969), 1, + ACTIONS(14585), 1, anon_sym_LF, - STATE(9016), 1, + STATE(8618), 1, sym_comment, - ACTIONS(14967), 4, + ACTIONS(14583), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [275333] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(14876), 1, - anon_sym_LPAREN, - ACTIONS(14878), 1, - sym_unescaped_interpolated_content, - ACTIONS(15230), 1, - anon_sym_SQUOTE, - STATE(9017), 1, - sym_comment, - STATE(9020), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, - sym_expr_interpolated, - [275355] = 4, + [275257] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14884), 1, + ACTIONS(14581), 1, anon_sym_LF, - STATE(9018), 1, + STATE(8619), 1, sym_comment, - ACTIONS(14882), 4, + ACTIONS(14579), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [275371] = 4, + [275273] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13057), 1, + ACTIONS(14585), 1, anon_sym_LF, - STATE(9019), 1, + STATE(8620), 1, sym_comment, - ACTIONS(13055), 4, + ACTIONS(14583), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [275387] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(14876), 1, - anon_sym_LPAREN, - ACTIONS(14878), 1, - sym_unescaped_interpolated_content, - ACTIONS(15232), 1, - anon_sym_SQUOTE, - STATE(9020), 1, - sym_comment, - STATE(9291), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, - sym_expr_interpolated, - [275409] = 4, + [275289] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14893), 1, + ACTIONS(14581), 1, anon_sym_LF, - STATE(9021), 1, + STATE(8621), 1, sym_comment, - ACTIONS(14891), 4, + ACTIONS(14579), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [275425] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2891), 1, - anon_sym_DQUOTE, - ACTIONS(15236), 1, - aux_sym_path_token1, - STATE(7904), 1, - sym__str_double_quotes, - STATE(9022), 1, - sym_comment, - ACTIONS(15234), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [275445] = 3, + [275305] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(9023), 1, + ACTIONS(2229), 1, + aux_sym_unquoted_token2, + ACTIONS(14290), 1, + aux_sym__immediate_decimal_token2, + STATE(8622), 1, sym_comment, - ACTIONS(1348), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [275459] = 5, + ACTIONS(2231), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT, + [275323] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9405), 1, - aux_sym_unquoted_token5, - STATE(9024), 1, + ACTIONS(14585), 1, + anon_sym_LF, + STATE(8623), 1, sym_comment, - ACTIONS(959), 2, + ACTIONS(14583), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(961), 2, - ts_builtin_sym_end, - anon_sym_LF, - [275477] = 7, + anon_sym_RBRACE, + [275339] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, - anon_sym_LPAREN, - ACTIONS(14878), 1, - sym_unescaped_interpolated_content, - ACTIONS(15238), 1, - anon_sym_SQUOTE, - STATE(9025), 1, - sym_comment, - STATE(9027), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, - sym_expr_interpolated, - [275499] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15072), 1, - aux_sym_path_token1, - ACTIONS(15240), 1, - anon_sym_DQUOTE, - STATE(7013), 1, - sym__str_double_quotes, - STATE(9026), 1, + ACTIONS(14581), 1, + anon_sym_LF, + STATE(8624), 1, sym_comment, - ACTIONS(15070), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [275519] = 7, + ACTIONS(14579), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [275355] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, - anon_sym_LPAREN, - ACTIONS(14878), 1, - sym_unescaped_interpolated_content, - ACTIONS(15242), 1, - anon_sym_SQUOTE, - STATE(9027), 1, + ACTIONS(14585), 1, + anon_sym_LF, + STATE(8625), 1, sym_comment, - STATE(9291), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, - sym_expr_interpolated, - [275541] = 4, + ACTIONS(14583), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [275371] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9028), 1, + ACTIONS(14581), 1, + anon_sym_LF, + STATE(8626), 1, sym_comment, - ACTIONS(4045), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(4043), 3, + ACTIONS(14579), 4, anon_sym_SEMI, - anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, - [275557] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [275387] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15240), 1, - anon_sym_DQUOTE, - ACTIONS(15246), 1, - aux_sym_path_token1, - STATE(6072), 1, - sym__str_double_quotes, - STATE(9029), 1, + ACTIONS(14585), 1, + anon_sym_LF, + STATE(8627), 1, sym_comment, - ACTIONS(15244), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [275577] = 7, + ACTIONS(14583), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [275403] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, + ACTIONS(14296), 1, anon_sym_LPAREN, - ACTIONS(14878), 1, + ACTIONS(14298), 1, sym_unescaped_interpolated_content, - ACTIONS(15248), 1, + ACTIONS(14597), 1, anon_sym_SQUOTE, - STATE(9030), 1, + STATE(8628), 1, sym_comment, - STATE(9291), 1, + STATE(8632), 1, aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, + STATE(9819), 1, sym_expr_interpolated, - [275599] = 4, + [275425] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13061), 1, + ACTIONS(14581), 1, anon_sym_LF, - STATE(9031), 1, + STATE(8629), 1, sym_comment, - ACTIONS(13059), 4, + ACTIONS(14579), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [275615] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15250), 1, - anon_sym_DQUOTE, - ACTIONS(15254), 1, - aux_sym_path_token1, - STATE(3767), 1, - sym__str_double_quotes, - STATE(9032), 1, - sym_comment, - ACTIONS(15252), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [275635] = 3, + [275441] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(9033), 1, + ACTIONS(2362), 1, + aux_sym_unquoted_token2, + ACTIONS(14599), 1, + aux_sym__immediate_decimal_token2, + STATE(8630), 1, sym_comment, - ACTIONS(4045), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [275649] = 4, + ACTIONS(2364), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT, + [275459] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14935), 1, + ACTIONS(14585), 1, anon_sym_LF, - STATE(9034), 1, + STATE(8631), 1, sym_comment, - ACTIONS(14933), 4, + ACTIONS(14583), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [275665] = 4, + [275475] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(14296), 1, + anon_sym_LPAREN, + ACTIONS(14298), 1, + sym_unescaped_interpolated_content, + ACTIONS(14601), 1, + anon_sym_SQUOTE, + STATE(8473), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(8632), 1, + sym_comment, + STATE(9819), 1, + sym_expr_interpolated, + [275497] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14899), 1, + ACTIONS(14581), 1, anon_sym_LF, - STATE(9035), 1, + STATE(8633), 1, sym_comment, - ACTIONS(14897), 4, + ACTIONS(14579), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [275681] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4183), 1, - anon_sym_DQUOTE, - ACTIONS(15258), 1, - aux_sym_path_token1, - STATE(4297), 1, - sym__str_double_quotes, - STATE(9036), 1, - sym_comment, - ACTIONS(15256), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [275701] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2724), 1, - anon_sym_DQUOTE, - ACTIONS(15262), 1, - aux_sym_path_token1, - STATE(8309), 1, - sym__str_double_quotes, - STATE(9037), 1, - sym_comment, - ACTIONS(15260), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [275721] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15264), 1, - anon_sym_DQUOTE, - ACTIONS(15268), 1, - aux_sym_path_token1, - STATE(8551), 1, - sym__str_double_quotes, - STATE(9038), 1, - sym_comment, - ACTIONS(15266), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [275741] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15270), 1, - anon_sym_DQUOTE, - ACTIONS(15274), 1, - aux_sym_path_token1, - STATE(4493), 1, - sym__str_double_quotes, - STATE(9039), 1, - sym_comment, - ACTIONS(15272), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [275761] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15276), 1, - anon_sym_DQUOTE, - ACTIONS(15280), 1, - aux_sym_path_token1, - STATE(3725), 1, - sym__str_double_quotes, - STATE(9040), 1, - sym_comment, - ACTIONS(15278), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [275781] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15282), 1, - anon_sym_DQUOTE, - ACTIONS(15286), 1, - aux_sym_path_token1, - STATE(4034), 1, - sym__str_double_quotes, - STATE(9041), 1, - sym_comment, - ACTIONS(15284), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [275801] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15288), 1, - anon_sym_DQUOTE, - ACTIONS(15292), 1, - aux_sym_path_token1, - STATE(1301), 1, - sym__str_double_quotes, - STATE(9042), 1, - sym_comment, - ACTIONS(15290), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [275821] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15294), 1, - anon_sym_DQUOTE, - ACTIONS(15298), 1, - aux_sym_path_token1, - STATE(4712), 1, - sym__str_double_quotes, - STATE(9043), 1, - sym_comment, - ACTIONS(15296), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [275841] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14411), 1, - anon_sym_DQUOTE, - ACTIONS(15302), 1, - aux_sym_path_token1, - STATE(6979), 1, - sym__str_double_quotes, - STATE(9044), 1, - sym_comment, - ACTIONS(15300), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [275861] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15304), 1, - anon_sym_DQUOTE, - ACTIONS(15308), 1, - aux_sym_path_token1, - STATE(7316), 1, - sym__str_double_quotes, - STATE(9045), 1, - sym_comment, - ACTIONS(15306), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [275881] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4939), 1, - anon_sym_DQUOTE, - ACTIONS(15312), 1, - aux_sym_path_token1, - STATE(4847), 1, - sym__str_double_quotes, - STATE(9046), 1, - sym_comment, - ACTIONS(15310), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [275901] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15314), 1, - anon_sym_DQUOTE, - ACTIONS(15318), 1, - aux_sym_path_token1, - STATE(4186), 1, - sym__str_double_quotes, - STATE(9047), 1, - sym_comment, - ACTIONS(15316), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [275921] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4730), 1, - anon_sym_DQUOTE, - ACTIONS(15322), 1, - aux_sym_path_token1, - STATE(5625), 1, - sym__str_double_quotes, - STATE(9048), 1, - sym_comment, - ACTIONS(15320), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [275941] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15324), 1, - anon_sym_DQUOTE, - ACTIONS(15328), 1, - aux_sym_path_token1, - STATE(5225), 1, - sym__str_double_quotes, - STATE(9049), 1, - sym_comment, - ACTIONS(15326), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [275961] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15330), 1, - anon_sym_DQUOTE, - ACTIONS(15334), 1, - aux_sym_path_token1, - STATE(3955), 1, - sym__str_double_quotes, - STATE(9050), 1, - sym_comment, - ACTIONS(15332), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [275981] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15336), 1, - anon_sym_DQUOTE, - ACTIONS(15340), 1, - aux_sym_path_token1, - STATE(416), 1, - sym__str_double_quotes, - STATE(9051), 1, - sym_comment, - ACTIONS(15338), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [276001] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15342), 1, - anon_sym_DQUOTE, - ACTIONS(15346), 1, - aux_sym_path_token1, - STATE(808), 1, - sym__str_double_quotes, - STATE(9052), 1, - sym_comment, - ACTIONS(15344), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [276021] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15348), 1, - anon_sym_DQUOTE, - ACTIONS(15352), 1, - aux_sym_path_token1, - STATE(1695), 1, - sym__str_double_quotes, - STATE(9053), 1, - sym_comment, - ACTIONS(15350), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [276041] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15354), 1, - anon_sym_DQUOTE, - ACTIONS(15358), 1, - aux_sym_path_token1, - STATE(3874), 1, - sym__str_double_quotes, - STATE(9054), 1, - sym_comment, - ACTIONS(15356), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [276061] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15360), 1, - anon_sym_DQUOTE, - ACTIONS(15364), 1, - aux_sym_path_token1, - STATE(4227), 1, - sym__str_double_quotes, - STATE(9055), 1, - sym_comment, - ACTIONS(15362), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [276081] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15366), 1, - anon_sym_DQUOTE, - ACTIONS(15370), 1, - aux_sym_path_token1, - STATE(1319), 1, - sym__str_double_quotes, - STATE(9056), 1, - sym_comment, - ACTIONS(15368), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [276101] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15372), 1, - anon_sym_DQUOTE, - ACTIONS(15376), 1, - aux_sym_path_token1, - STATE(5550), 1, - sym__str_double_quotes, - STATE(9057), 1, - sym_comment, - ACTIONS(15374), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [276121] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15378), 1, - anon_sym_DQUOTE, - ACTIONS(15382), 1, - aux_sym_path_token1, - STATE(1274), 1, - sym__str_double_quotes, - STATE(9058), 1, - sym_comment, - ACTIONS(15380), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [276141] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15384), 1, - anon_sym_DQUOTE, - ACTIONS(15388), 1, - aux_sym_path_token1, - STATE(6341), 1, - sym__str_double_quotes, - STATE(9059), 1, - sym_comment, - ACTIONS(15386), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [276161] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15390), 1, - anon_sym_DQUOTE, - ACTIONS(15394), 1, - aux_sym_path_token1, - STATE(6191), 1, - sym__str_double_quotes, - STATE(9060), 1, - sym_comment, - ACTIONS(15392), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [276181] = 6, + [275513] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15396), 1, + ACTIONS(14603), 1, anon_sym_DQUOTE, - ACTIONS(15400), 1, + ACTIONS(14607), 1, aux_sym_path_token1, - STATE(1929), 1, + STATE(4293), 1, sym__str_double_quotes, - STATE(9061), 1, + STATE(8634), 1, sym_comment, - ACTIONS(15398), 2, + ACTIONS(14605), 2, sym__str_single_quotes, sym__str_back_ticks, - [276201] = 6, + [275533] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15402), 1, - anon_sym_DQUOTE, - ACTIONS(15406), 1, - aux_sym_path_token1, - STATE(855), 1, - sym__str_double_quotes, - STATE(9062), 1, + ACTIONS(4771), 1, + anon_sym_DASH, + ACTIONS(13409), 1, + aux_sym__immediate_decimal_token1, + STATE(8635), 1, sym_comment, - ACTIONS(15404), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [276221] = 6, - ACTIONS(3), 1, + ACTIONS(4773), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [275551] = 7, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15408), 1, - anon_sym_DQUOTE, - ACTIONS(15412), 1, - aux_sym_path_token1, - STATE(3203), 1, - sym__str_double_quotes, - STATE(9063), 1, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(3312), 1, + anon_sym_RBRACK, + ACTIONS(3314), 1, + sym__entry_separator, + ACTIONS(3316), 1, + anon_sym_LPAREN2, + ACTIONS(12748), 1, + anon_sym_DOT, + STATE(8636), 1, sym_comment, - ACTIONS(15410), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [276241] = 6, + [275573] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15414), 1, - anon_sym_DQUOTE, - ACTIONS(15418), 1, - aux_sym_path_token1, - STATE(1665), 1, - sym__str_double_quotes, - STATE(9064), 1, + ACTIONS(2402), 1, + aux_sym_unquoted_token2, + STATE(8637), 1, sym_comment, - ACTIONS(15416), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [276261] = 6, + ACTIONS(2404), 4, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT, + [275589] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15420), 1, - anon_sym_DQUOTE, - ACTIONS(15424), 1, - aux_sym_path_token1, - STATE(5628), 1, - sym__str_double_quotes, - STATE(9065), 1, + ACTIONS(2362), 1, + aux_sym_unquoted_token2, + STATE(8638), 1, sym_comment, - ACTIONS(15422), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [276281] = 6, - ACTIONS(3), 1, + ACTIONS(2364), 4, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT, + [275605] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15426), 1, - anon_sym_DQUOTE, - ACTIONS(15430), 1, - aux_sym_path_token1, - STATE(1616), 1, - sym__str_double_quotes, - STATE(9066), 1, + ACTIONS(14611), 1, + anon_sym_LF, + STATE(8639), 1, sym_comment, - ACTIONS(15428), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [276301] = 6, - ACTIONS(3), 1, + ACTIONS(14609), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [275621] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15432), 1, - anon_sym_DQUOTE, - ACTIONS(15436), 1, - aux_sym_path_token1, - STATE(1569), 1, - sym__str_double_quotes, - STATE(9067), 1, + ACTIONS(14585), 1, + anon_sym_LF, + STATE(8640), 1, sym_comment, - ACTIONS(15434), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [276321] = 6, - ACTIONS(3), 1, + ACTIONS(14583), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [275637] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15438), 1, - anon_sym_DQUOTE, - ACTIONS(15442), 1, - aux_sym_path_token1, - STATE(3076), 1, - sym__str_double_quotes, - STATE(9068), 1, + ACTIONS(14581), 1, + anon_sym_LF, + STATE(8641), 1, sym_comment, - ACTIONS(15440), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [276341] = 6, - ACTIONS(3), 1, + ACTIONS(14579), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [275653] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15444), 1, - anon_sym_DQUOTE, - ACTIONS(15448), 1, - aux_sym_path_token1, - STATE(2915), 1, - sym__str_double_quotes, - STATE(9069), 1, - sym_comment, - ACTIONS(15446), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [276361] = 6, - ACTIONS(3), 1, + ACTIONS(14585), 1, + anon_sym_LF, + STATE(8642), 1, + sym_comment, + ACTIONS(14583), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [275669] = 7, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15450), 1, - anon_sym_DQUOTE, - ACTIONS(15454), 1, - aux_sym_path_token1, - STATE(792), 1, - sym__str_double_quotes, - STATE(9070), 1, + ACTIONS(6058), 1, + anon_sym_SEMI, + ACTIONS(6060), 1, + anon_sym_LF, + ACTIONS(14613), 1, + anon_sym_RPAREN, + STATE(2372), 1, + sym__terminator, + STATE(8504), 1, + aux_sym__block_body_repeat1, + STATE(8643), 1, sym_comment, - ACTIONS(15452), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [276381] = 6, + [275691] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15456), 1, - anon_sym_DQUOTE, - ACTIONS(15460), 1, - aux_sym_path_token1, - STATE(308), 1, - sym__str_double_quotes, - STATE(9071), 1, + ACTIONS(14615), 1, + aux_sym__immediate_decimal_token1, + STATE(8644), 1, sym_comment, - ACTIONS(15458), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [276401] = 6, + ACTIONS(4771), 2, + sym_identifier, + anon_sym_DASH, + ACTIONS(4773), 2, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [275709] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15462), 1, - anon_sym_DQUOTE, - ACTIONS(15466), 1, - aux_sym_path_token1, - STATE(6344), 1, - sym__str_double_quotes, - STATE(9072), 1, + ACTIONS(6001), 1, + anon_sym_DASH, + STATE(8645), 1, sym_comment, - ACTIONS(15464), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [276421] = 6, - ACTIONS(3), 1, + ACTIONS(6003), 4, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DASH_DASH, + anon_sym_in, + [275725] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15468), 1, - anon_sym_DQUOTE, - ACTIONS(15472), 1, - aux_sym_path_token1, - STATE(2697), 1, - sym__str_double_quotes, - STATE(9073), 1, + ACTIONS(14581), 1, + anon_sym_LF, + STATE(8646), 1, sym_comment, - ACTIONS(15470), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [276441] = 6, - ACTIONS(3), 1, + ACTIONS(14579), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [275741] = 7, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15474), 1, - anon_sym_DQUOTE, - ACTIONS(15478), 1, - aux_sym_path_token1, - STATE(293), 1, - sym__str_double_quotes, - STATE(9074), 1, + ACTIONS(14296), 1, + anon_sym_LPAREN, + ACTIONS(14298), 1, + sym_unescaped_interpolated_content, + ACTIONS(14617), 1, + anon_sym_SQUOTE, + STATE(8473), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(8647), 1, sym_comment, - ACTIONS(15476), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [276461] = 6, - ACTIONS(3), 1, + STATE(9819), 1, + sym_expr_interpolated, + [275763] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15480), 1, - anon_sym_DQUOTE, - ACTIONS(15484), 1, - aux_sym_path_token1, - STATE(3294), 1, - sym__str_double_quotes, - STATE(9075), 1, + ACTIONS(14585), 1, + anon_sym_LF, + STATE(8648), 1, sym_comment, - ACTIONS(15482), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [276481] = 6, + ACTIONS(14583), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [275779] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15486), 1, + ACTIONS(14619), 1, anon_sym_DQUOTE, - ACTIONS(15490), 1, + ACTIONS(14623), 1, aux_sym_path_token1, - STATE(838), 1, + STATE(1345), 1, sym__str_double_quotes, - STATE(9076), 1, + STATE(8649), 1, sym_comment, - ACTIONS(15488), 2, + ACTIONS(14621), 2, sym__str_single_quotes, sym__str_back_ticks, - [276501] = 6, - ACTIONS(3), 1, + [275799] = 7, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15492), 1, - anon_sym_DQUOTE, - ACTIONS(15496), 1, - aux_sym_path_token1, - STATE(3160), 1, - sym__str_double_quotes, - STATE(9077), 1, + ACTIONS(1886), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(3771), 1, + anon_sym_RBRACK, + ACTIONS(3773), 1, + sym__entry_separator, + ACTIONS(3775), 1, + anon_sym_LPAREN2, + ACTIONS(13087), 1, + anon_sym_DOT, + STATE(8650), 1, sym_comment, - ACTIONS(15494), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [276521] = 6, + [275821] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15498), 1, - anon_sym_DQUOTE, - ACTIONS(15502), 1, - aux_sym_path_token1, - STATE(3426), 1, - sym__str_double_quotes, - STATE(9078), 1, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(3576), 1, + anon_sym_in, + ACTIONS(12513), 1, + anon_sym_DOT, + ACTIONS(14625), 1, + aux_sym__immediate_decimal_token1, + STATE(8651), 1, sym_comment, - ACTIONS(15500), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [276541] = 6, + [275843] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15504), 1, - anon_sym_DQUOTE, - ACTIONS(15508), 1, - aux_sym_path_token1, - STATE(1297), 1, - sym__str_double_quotes, - STATE(9079), 1, + ACTIONS(10535), 1, + anon_sym_DOLLAR, + ACTIONS(14627), 1, + sym_identifier, + STATE(1438), 1, + sym__var, + STATE(2429), 1, + sym__variable_name, + STATE(2450), 1, + sym_val_variable, + STATE(8652), 1, sym_comment, - ACTIONS(15506), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [276561] = 6, + [275865] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15510), 1, - anon_sym_DQUOTE, - ACTIONS(15514), 1, - aux_sym_path_token1, - STATE(418), 1, - sym__str_double_quotes, - STATE(9080), 1, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(3574), 1, + sym_identifier, + ACTIONS(3576), 1, + anon_sym_DOLLAR, + ACTIONS(12513), 1, + anon_sym_DOT, + ACTIONS(13985), 1, + aux_sym__immediate_decimal_token1, + STATE(8653), 1, sym_comment, - ACTIONS(15512), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [276581] = 6, - ACTIONS(3), 1, + [275887] = 7, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15516), 1, - anon_sym_DQUOTE, - ACTIONS(15520), 1, - aux_sym_path_token1, - STATE(394), 1, - sym__str_double_quotes, - STATE(9081), 1, + ACTIONS(14296), 1, + anon_sym_LPAREN, + ACTIONS(14298), 1, + sym_unescaped_interpolated_content, + ACTIONS(14629), 1, + anon_sym_SQUOTE, + STATE(8654), 1, sym_comment, - ACTIONS(15518), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [276601] = 6, - ACTIONS(3), 1, + STATE(8655), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(9819), 1, + sym_expr_interpolated, + [275909] = 7, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15522), 1, - anon_sym_DQUOTE, - ACTIONS(15526), 1, - aux_sym_path_token1, - STATE(1280), 1, - sym__str_double_quotes, - STATE(9082), 1, + ACTIONS(14296), 1, + anon_sym_LPAREN, + ACTIONS(14298), 1, + sym_unescaped_interpolated_content, + ACTIONS(14631), 1, + anon_sym_SQUOTE, + STATE(8473), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(8655), 1, sym_comment, - ACTIONS(15524), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [276621] = 6, + STATE(9819), 1, + sym_expr_interpolated, + [275931] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15528), 1, - anon_sym_DQUOTE, - ACTIONS(15532), 1, - aux_sym_path_token1, - STATE(1602), 1, - sym__str_double_quotes, - STATE(9083), 1, + ACTIONS(3354), 1, + sym_identifier, + ACTIONS(3356), 1, + anon_sym_DOLLAR, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(12513), 1, + anon_sym_DOT, + STATE(8656), 1, sym_comment, - ACTIONS(15530), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [276641] = 6, + [275953] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15534), 1, + ACTIONS(2486), 1, anon_sym_DQUOTE, - ACTIONS(15538), 1, + ACTIONS(14635), 1, aux_sym_path_token1, - STATE(1479), 1, + STATE(4903), 1, sym__str_double_quotes, - STATE(9084), 1, + STATE(8657), 1, sym_comment, - ACTIONS(15536), 2, + ACTIONS(14633), 2, sym__str_single_quotes, sym__str_back_ticks, - [276661] = 4, + [275973] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14935), 1, + ACTIONS(7818), 1, + anon_sym_PIPE, + ACTIONS(14033), 1, + anon_sym_SEMI, + ACTIONS(14035), 1, anon_sym_LF, - STATE(9085), 1, + ACTIONS(14637), 1, + ts_builtin_sym_end, + STATE(3549), 1, + aux_sym_pipe_element_repeat1, + STATE(8658), 1, sym_comment, - ACTIONS(14933), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [276677] = 6, + [275995] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15540), 1, - anon_sym_DQUOTE, - ACTIONS(15544), 1, - aux_sym_path_token1, - STATE(5201), 1, - sym__str_double_quotes, - STATE(9086), 1, + ACTIONS(4734), 1, + anon_sym_DASH, + ACTIONS(14639), 1, + sym_long_flag_identifier, + STATE(8659), 1, sym_comment, - ACTIONS(15542), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [276697] = 4, + ACTIONS(4738), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [276013] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9087), 1, + STATE(8660), 1, sym_comment, - ACTIONS(5217), 2, + ACTIONS(4738), 2, ts_builtin_sym_end, aux_sym_command_token1, - ACTIONS(5215), 3, + ACTIONS(4734), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_PIPE, - [276713] = 4, + [276029] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13067), 1, - anon_sym_LF, - STATE(9088), 1, + STATE(8661), 1, sym_comment, - ACTIONS(13065), 4, + ACTIONS(3759), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(3757), 3, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LF, anon_sym_PIPE, - anon_sym_RBRACE, - [276729] = 4, + [276045] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14913), 1, - anon_sym_LF, - STATE(9089), 1, + ACTIONS(14296), 1, + anon_sym_LPAREN, + ACTIONS(14298), 1, + sym_unescaped_interpolated_content, + ACTIONS(14641), 1, + anon_sym_SQUOTE, + STATE(8662), 1, sym_comment, - ACTIONS(14911), 4, - anon_sym_SEMI, - anon_sym_RPAREN, + STATE(8663), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(9819), 1, + sym_expr_interpolated, + [276067] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(14296), 1, + anon_sym_LPAREN, + ACTIONS(14298), 1, + sym_unescaped_interpolated_content, + ACTIONS(14643), 1, + anon_sym_SQUOTE, + STATE(8473), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(8663), 1, + sym_comment, + STATE(9819), 1, + sym_expr_interpolated, + [276089] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2402), 1, + aux_sym_unquoted_token2, + STATE(8664), 1, + sym_comment, + ACTIONS(2404), 4, anon_sym_PIPE, - anon_sym_RBRACE, - [276745] = 4, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT, + [276105] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(936), 1, - anon_sym_DASH, - STATE(9090), 1, + ACTIONS(14645), 1, + anon_sym_DQUOTE, + ACTIONS(14649), 1, + aux_sym_path_token1, + STATE(4528), 1, + sym__str_double_quotes, + STATE(8665), 1, sym_comment, - ACTIONS(938), 4, + ACTIONS(14647), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [276125] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(8666), 1, + sym_comment, + ACTIONS(1157), 2, + anon_sym_LBRACE, + anon_sym_LPAREN2, + ACTIONS(1155), 3, sym_identifier, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [276761] = 6, + aux_sym_unquoted_token6, + [276141] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(6538), 1, - anon_sym_SEMI, - ACTIONS(6540), 1, + ACTIONS(7818), 1, + anon_sym_PIPE, + ACTIONS(14653), 1, anon_sym_LF, - STATE(2674), 1, - sym__terminator, - STATE(9091), 1, + STATE(3489), 1, + aux_sym_pipe_element_repeat1, + STATE(8667), 1, sym_comment, - ACTIONS(6393), 2, + ACTIONS(14651), 2, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_RBRACE, - [276781] = 5, + [276161] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15546), 1, - sym_long_flag_identifier, - STATE(9092), 1, + STATE(8668), 1, sym_comment, - ACTIONS(5075), 2, + ACTIONS(14258), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(14256), 3, anon_sym_SEMI, + anon_sym_LF, anon_sym_PIPE, - ACTIONS(5079), 2, + [276177] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(8669), 1, + sym_comment, + ACTIONS(5115), 2, ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(5113), 3, + anon_sym_SEMI, anon_sym_LF, - [276799] = 5, + anon_sym_PIPE, + [276193] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - ACTIONS(13456), 1, + ACTIONS(1391), 1, anon_sym_DOT, - STATE(9093), 1, + ACTIONS(1409), 1, + aux_sym__immediate_decimal_token4, + STATE(8670), 1, sym_comment, - ACTIONS(3876), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [276817] = 6, + STATE(10103), 1, + sym__immediate_decimal, + ACTIONS(1407), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [276213] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2845), 1, - anon_sym_DASH_DASH, - ACTIONS(2851), 1, + ACTIONS(2356), 1, aux_sym_unquoted_token2, - ACTIONS(13169), 1, + ACTIONS(14419), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(14656), 1, anon_sym_DOT, - STATE(9094), 1, + STATE(8671), 1, sym_comment, - ACTIONS(2843), 2, - sym_identifier, - anon_sym_DASH, - [276837] = 4, + ACTIONS(2358), 2, + anon_sym_LBRACE, + anon_sym_LPAREN2, + [276233] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15550), 1, - anon_sym_LF, - STATE(9095), 1, + STATE(8672), 1, sym_comment, - ACTIONS(15548), 4, + ACTIONS(5139), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(5137), 3, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LF, anon_sym_PIPE, - anon_sym_RBRACE, - [276853] = 7, + [276249] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, + ACTIONS(14296), 1, anon_sym_LPAREN, - ACTIONS(14878), 1, + ACTIONS(14298), 1, sym_unescaped_interpolated_content, - ACTIONS(15552), 1, + ACTIONS(14659), 1, anon_sym_SQUOTE, - STATE(9096), 1, + STATE(8673), 1, sym_comment, - STATE(9242), 1, + STATE(8675), 1, aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, + STATE(9819), 1, sym_expr_interpolated, - [276875] = 4, + [276271] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14969), 1, + ACTIONS(14663), 1, anon_sym_LF, - STATE(9097), 1, + STATE(8674), 1, sym_comment, - ACTIONS(14967), 4, + ACTIONS(14661), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [276891] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2581), 1, - aux_sym_unquoted_token2, - ACTIONS(14889), 1, - aux_sym__immediate_decimal_token2, - STATE(9098), 1, - sym_comment, - ACTIONS(2583), 3, - anon_sym_in, - anon_sym_LPAREN2, - anon_sym_DOT, - [276909] = 7, + [276287] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, + ACTIONS(14296), 1, anon_sym_LPAREN, - ACTIONS(14878), 1, + ACTIONS(14298), 1, sym_unescaped_interpolated_content, - ACTIONS(15554), 1, + ACTIONS(14665), 1, anon_sym_SQUOTE, - STATE(9099), 1, - sym_comment, - STATE(9114), 1, + STATE(8473), 1, aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, + STATE(8675), 1, + sym_comment, + STATE(9819), 1, sym_expr_interpolated, - [276931] = 4, + [276309] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14947), 1, + ACTIONS(14669), 1, anon_sym_LF, - STATE(9100), 1, + STATE(8676), 1, sym_comment, - ACTIONS(14945), 4, + ACTIONS(14667), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [276947] = 3, + [276325] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(9101), 1, - sym_comment, - ACTIONS(5189), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, + ACTIONS(2701), 1, anon_sym_DQUOTE, + ACTIONS(14673), 1, + aux_sym_path_token1, + STATE(4443), 1, + sym__str_double_quotes, + STATE(8677), 1, + sym_comment, + ACTIONS(14671), 2, sym__str_single_quotes, sym__str_back_ticks, - [276961] = 3, + [276345] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9102), 1, + STATE(8678), 1, sym_comment, - ACTIONS(1300), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, + ACTIONS(14675), 5, + sym_identifier, + anon_sym_GT, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [276975] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(15556), 1, - anon_sym_EQ, - STATE(9103), 1, - sym_comment, - ACTIONS(5011), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(5015), 2, - ts_builtin_sym_end, - anon_sym_LF, - [276993] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(14947), 1, - anon_sym_LF, - STATE(9104), 1, - sym_comment, - ACTIONS(14945), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [277009] = 6, - ACTIONS(113), 1, + [276359] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1160), 1, - anon_sym_LBRACE, - ACTIONS(1284), 1, - aux_sym_unquoted_token6, - ACTIONS(4895), 1, - anon_sym_LPAREN2, - STATE(9105), 1, + STATE(8679), 1, sym_comment, - ACTIONS(1158), 2, + ACTIONS(14677), 5, sym_identifier, - anon_sym_DOLLAR, - [277029] = 5, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [276373] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3916), 1, - anon_sym_COLON, - ACTIONS(15100), 1, + ACTIONS(14663), 1, anon_sym_LF, - STATE(9106), 1, + STATE(8680), 1, sym_comment, - ACTIONS(15098), 3, + ACTIONS(14661), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [277047] = 5, + [276389] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3916), 1, - anon_sym_COLON, - ACTIONS(15560), 1, + ACTIONS(14669), 1, anon_sym_LF, - STATE(9107), 1, + STATE(8681), 1, sym_comment, - ACTIONS(15558), 3, + ACTIONS(14667), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [277065] = 6, + [276405] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(3522), 1, - anon_sym_LPAREN2, - ACTIONS(13319), 1, - anon_sym_DOT, - STATE(9108), 1, + ACTIONS(14679), 1, + anon_sym_DOT_DOT2, + STATE(8682), 1, sym_comment, - ACTIONS(3520), 2, - anon_sym_DOLLAR, - anon_sym_LBRACE, - [277085] = 5, + ACTIONS(3362), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(14681), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [276423] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2581), 1, - aux_sym_unquoted_token2, - ACTIONS(15562), 1, - aux_sym__immediate_decimal_token2, - STATE(9109), 1, + STATE(8683), 1, sym_comment, - ACTIONS(2583), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT, - [277103] = 4, + ACTIONS(940), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [276437] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14893), 1, + ACTIONS(14663), 1, anon_sym_LF, - STATE(9110), 1, + STATE(8684), 1, sym_comment, - ACTIONS(14891), 4, + ACTIONS(14661), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [277119] = 7, + [276453] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, - anon_sym_LPAREN, - ACTIONS(14878), 1, - sym_unescaped_interpolated_content, - ACTIONS(15564), 1, - anon_sym_SQUOTE, - STATE(9111), 1, + ACTIONS(14669), 1, + anon_sym_LF, + STATE(8685), 1, sym_comment, - STATE(9291), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, - sym_expr_interpolated, - [277141] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(6538), 1, + ACTIONS(14667), 4, anon_sym_SEMI, - ACTIONS(6540), 1, - anon_sym_LF, - ACTIONS(15566), 1, anon_sym_RPAREN, - STATE(2696), 1, - sym__terminator, - STATE(9112), 1, + anon_sym_PIPE, + anon_sym_RBRACE, + [276469] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(8686), 1, sym_comment, - STATE(9388), 1, - aux_sym__block_body_repeat1, - [277163] = 4, + ACTIONS(1091), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [276483] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14899), 1, + ACTIONS(14663), 1, anon_sym_LF, - STATE(9113), 1, + STATE(8687), 1, sym_comment, - ACTIONS(14897), 4, + ACTIONS(14661), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [277179] = 7, + [276499] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, + ACTIONS(14296), 1, anon_sym_LPAREN, - ACTIONS(14878), 1, + ACTIONS(14298), 1, sym_unescaped_interpolated_content, - ACTIONS(15568), 1, + ACTIONS(14683), 1, anon_sym_SQUOTE, - STATE(9114), 1, + STATE(8688), 1, sym_comment, - STATE(9291), 1, + STATE(8690), 1, aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, + STATE(9819), 1, sym_expr_interpolated, - [277201] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - ACTIONS(4037), 1, - anon_sym_LPAREN2, - ACTIONS(15570), 1, - aux_sym_command_token1, - STATE(9115), 1, - sym_comment, - ACTIONS(4035), 2, - sym_identifier, - anon_sym_DOLLAR, - [277221] = 4, + [276521] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14909), 1, - anon_sym_LF, - STATE(9116), 1, + STATE(8689), 1, sym_comment, - ACTIONS(14907), 4, + ACTIONS(4198), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(4196), 3, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LF, anon_sym_PIPE, - anon_sym_RBRACE, - [277237] = 7, + [276537] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, + ACTIONS(14296), 1, anon_sym_LPAREN, - ACTIONS(14878), 1, + ACTIONS(14298), 1, sym_unescaped_interpolated_content, - ACTIONS(15572), 1, + ACTIONS(14685), 1, anon_sym_SQUOTE, - STATE(9117), 1, - sym_comment, - STATE(9209), 1, + STATE(8473), 1, aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, - sym_expr_interpolated, - [277259] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3880), 1, - anon_sym_COLON, - ACTIONS(15574), 1, - anon_sym_use, - ACTIONS(15576), 1, - anon_sym_list, - ACTIONS(15578), 1, - anon_sym_hide, - ACTIONS(15580), 1, - anon_sym_new, - STATE(9118), 1, - sym_comment, - [277281] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3505), 1, - aux_sym_unquoted_token2, - STATE(9119), 1, + STATE(8690), 1, sym_comment, - ACTIONS(3507), 4, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT, - [277297] = 6, + STATE(9819), 1, + sym_expr_interpolated, + [276559] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15582), 1, + ACTIONS(2764), 1, anon_sym_DQUOTE, - ACTIONS(15586), 1, + ACTIONS(14689), 1, aux_sym_path_token1, - STATE(5108), 1, + STATE(5045), 1, sym__str_double_quotes, - STATE(9120), 1, + STATE(8691), 1, sym_comment, - ACTIONS(15584), 2, + ACTIONS(14687), 2, sym__str_single_quotes, sym__str_back_ticks, - [277317] = 6, + [276579] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15588), 1, - anon_sym_DQUOTE, - ACTIONS(15592), 1, - aux_sym_path_token1, - STATE(4894), 1, - sym__str_double_quotes, - STATE(9121), 1, + STATE(8692), 1, sym_comment, - ACTIONS(15590), 2, + ACTIONS(1231), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [277337] = 7, + [276593] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2847), 1, - anon_sym_LPAREN2, - ACTIONS(2851), 1, + ACTIONS(3362), 1, aux_sym_unquoted_token2, - ACTIONS(3750), 1, - anon_sym_LBRACE, - ACTIONS(13169), 1, + ACTIONS(12513), 1, anon_sym_DOT, - ACTIONS(15594), 1, - aux_sym__immediate_decimal_token1, - STATE(9122), 1, + STATE(8693), 1, sym_comment, - [277359] = 7, + ACTIONS(3356), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [276611] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15003), 1, - anon_sym_SEMI, - ACTIONS(15005), 1, - anon_sym_LF, - ACTIONS(15596), 1, - ts_builtin_sym_end, - STATE(8878), 1, - aux_sym__block_body_repeat1, - STATE(9123), 1, + ACTIONS(3354), 1, + anon_sym_RBRACK, + ACTIONS(3356), 1, + sym__entry_separator, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3362), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(12513), 1, + anon_sym_DOT, + STATE(8694), 1, sym_comment, - STATE(10231), 1, - sym__terminator, - [277381] = 4, + [276633] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(14691), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14693), 1, + aux_sym_unquoted_token2, + STATE(8695), 1, + sym_comment, + ACTIONS(922), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [276651] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14909), 1, + ACTIONS(14697), 1, anon_sym_LF, - STATE(9124), 1, + STATE(8696), 1, sym_comment, - ACTIONS(14907), 4, + ACTIONS(14695), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [277397] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2959), 1, - anon_sym_DQUOTE, - ACTIONS(15024), 1, - aux_sym_path_token1, - STATE(4138), 1, - sym__str_double_quotes, - STATE(9125), 1, - sym_comment, - ACTIONS(15022), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [277417] = 6, + [276667] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2847), 1, - anon_sym_LPAREN2, - ACTIONS(2851), 1, + ACTIONS(1844), 1, aux_sym_unquoted_token2, - ACTIONS(13169), 1, + ACTIONS(3316), 1, + anon_sym_LPAREN2, + ACTIONS(12748), 1, anon_sym_DOT, - STATE(9126), 1, + STATE(8697), 1, sym_comment, - ACTIONS(2845), 2, + ACTIONS(3314), 2, anon_sym_DOLLAR, anon_sym_LBRACE, - [277437] = 6, + [276687] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1091), 1, + anon_sym_LBRACE, + ACTIONS(1149), 1, + aux_sym_unquoted_token6, + ACTIONS(3783), 1, + anon_sym_LPAREN2, + STATE(8698), 1, + sym_comment, + ACTIONS(1089), 2, + sym_identifier, + anon_sym_DOLLAR, + [276707] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14937), 1, - anon_sym_DOT, - ACTIONS(14941), 1, - aux_sym__immediate_decimal_token4, - STATE(9127), 1, + STATE(8699), 1, sym_comment, - STATE(10808), 1, - sym__immediate_decimal, - ACTIONS(14939), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [277457] = 6, + ACTIONS(1235), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [276721] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(14296), 1, + anon_sym_LPAREN, + ACTIONS(14298), 1, + sym_unescaped_interpolated_content, + ACTIONS(14699), 1, + anon_sym_SQUOTE, + STATE(8700), 1, + sym_comment, + STATE(8702), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(9819), 1, + sym_expr_interpolated, + [276743] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15598), 1, - anon_sym_DOT, - ACTIONS(15602), 1, - aux_sym__immediate_decimal_token4, - STATE(9128), 1, + STATE(8701), 1, sym_comment, - STATE(10810), 1, - sym__immediate_decimal, - ACTIONS(15600), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [277477] = 6, + ACTIONS(5111), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [276757] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(14296), 1, + anon_sym_LPAREN, + ACTIONS(14298), 1, + sym_unescaped_interpolated_content, + ACTIONS(14701), 1, + anon_sym_SQUOTE, + STATE(8473), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(8702), 1, + sym_comment, + STATE(9819), 1, + sym_expr_interpolated, + [276779] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1593), 1, - anon_sym_DOT, - ACTIONS(1611), 1, - aux_sym__immediate_decimal_token4, - STATE(9129), 1, + ACTIONS(14703), 1, + anon_sym_DQUOTE, + ACTIONS(14707), 1, + aux_sym_path_token1, + STATE(4378), 1, + sym__str_double_quotes, + STATE(8703), 1, sym_comment, - STATE(10522), 1, - sym__immediate_decimal, - ACTIONS(1609), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [277497] = 4, + ACTIONS(14705), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [276799] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14947), 1, + ACTIONS(14669), 1, anon_sym_LF, - STATE(9130), 1, + STATE(8704), 1, sym_comment, - ACTIONS(14945), 4, + ACTIONS(14667), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [277513] = 4, - ACTIONS(113), 1, + [276815] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(9131), 1, + STATE(8705), 1, sym_comment, - ACTIONS(3505), 2, - anon_sym_RBRACK, + ACTIONS(1074), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [276829] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1886), 1, aux_sym_unquoted_token2, - ACTIONS(3507), 3, + ACTIONS(3771), 1, + sym_identifier, + ACTIONS(3773), 1, + anon_sym_DOLLAR, + ACTIONS(3775), 1, anon_sym_LPAREN2, + ACTIONS(13087), 1, anon_sym_DOT, - sym__entry_separator, - [277529] = 4, + STATE(8706), 1, + sym_comment, + [276851] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15606), 1, + ACTIONS(14663), 1, anon_sym_LF, - STATE(9132), 1, + STATE(8707), 1, sym_comment, - ACTIONS(15604), 4, + ACTIONS(14661), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [277545] = 5, - ACTIONS(3), 1, + [276867] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4012), 1, - aux_sym_unquoted_token2, - ACTIONS(13520), 1, - anon_sym_DOT, - STATE(9133), 1, + ACTIONS(14351), 1, + anon_sym_LF, + STATE(8708), 1, sym_comment, - ACTIONS(4008), 3, + ACTIONS(14349), 4, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [277563] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15608), 1, - anon_sym_DOT_DOT2, - STATE(9134), 1, - sym_comment, - ACTIONS(3966), 2, - anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(15610), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [277581] = 5, + [276883] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4020), 1, - anon_sym_COLON, - ACTIONS(15560), 1, + ACTIONS(14669), 1, anon_sym_LF, - STATE(9135), 1, + STATE(8709), 1, sym_comment, - ACTIONS(15558), 3, + ACTIONS(14667), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [277599] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2437), 1, - aux_sym_unquoted_token2, - ACTIONS(14774), 1, - aux_sym__immediate_decimal_token2, - STATE(9136), 1, - sym_comment, - ACTIONS(2439), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT, - [277617] = 5, + [276899] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15612), 1, - anon_sym_catch, - STATE(9137), 1, + ACTIONS(14663), 1, + anon_sym_LF, + STATE(8710), 1, sym_comment, - ACTIONS(14661), 2, + ACTIONS(14661), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(14663), 2, - ts_builtin_sym_end, - anon_sym_LF, - [277635] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(2583), 1, - sym__entry_separator, - ACTIONS(13302), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(15614), 1, - anon_sym_DOT, - STATE(9138), 1, - sym_comment, - ACTIONS(2581), 2, - anon_sym_RBRACK, anon_sym_RBRACE, - [277655] = 4, + [276915] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14913), 1, + ACTIONS(14355), 1, anon_sym_LF, - STATE(9139), 1, + STATE(8711), 1, sym_comment, - ACTIONS(14911), 4, + ACTIONS(14353), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [277671] = 4, + [276931] = 7, ACTIONS(113), 1, anon_sym_POUND, - STATE(9140), 1, + ACTIONS(14296), 1, + anon_sym_LPAREN, + ACTIONS(14298), 1, + sym_unescaped_interpolated_content, + ACTIONS(14709), 1, + anon_sym_SQUOTE, + STATE(8712), 1, sym_comment, - ACTIONS(14835), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(14833), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - [277687] = 4, + STATE(8716), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(9819), 1, + sym_expr_interpolated, + [276953] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(3314), 1, + anon_sym_DASH_DASH, + ACTIONS(12748), 1, + anon_sym_DOT, + STATE(8713), 1, + sym_comment, + ACTIONS(3312), 2, + sym_identifier, + anon_sym_DASH, + [276973] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15100), 1, + ACTIONS(14669), 1, anon_sym_LF, - STATE(9141), 1, + STATE(8714), 1, sym_comment, - ACTIONS(15098), 4, + ACTIONS(14667), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [277703] = 4, + [276989] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15560), 1, + ACTIONS(14663), 1, anon_sym_LF, - STATE(9142), 1, + STATE(8715), 1, sym_comment, - ACTIONS(15558), 4, + ACTIONS(14661), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [277719] = 6, + [277005] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(14296), 1, + anon_sym_LPAREN, + ACTIONS(14298), 1, + sym_unescaped_interpolated_content, + ACTIONS(14711), 1, + anon_sym_SQUOTE, + STATE(8473), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(8716), 1, + sym_comment, + STATE(9819), 1, + sym_expr_interpolated, + [277027] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3086), 1, + anon_sym_DQUOTE, + ACTIONS(14715), 1, + aux_sym_path_token1, + STATE(4306), 1, + sym__str_double_quotes, + STATE(8717), 1, + sym_comment, + ACTIONS(14713), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [277047] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4010), 1, + ACTIONS(6005), 1, + anon_sym_DASH, + STATE(8718), 1, + sym_comment, + ACTIONS(6007), 4, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DASH_DASH, + anon_sym_in, + [277063] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(8719), 1, + sym_comment, + ACTIONS(2402), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(2404), 3, anon_sym_LPAREN2, - ACTIONS(4012), 1, - aux_sym_unquoted_token2, - ACTIONS(13520), 1, anon_sym_DOT, - STATE(9143), 1, + sym__entry_separator, + [277079] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(8720), 1, sym_comment, - ACTIONS(4008), 2, - anon_sym_DOLLAR, - anon_sym_LBRACE, - [277739] = 3, + ACTIONS(14717), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [277093] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(8721), 1, + sym_comment, + ACTIONS(4999), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(4997), 3, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, + [277109] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9144), 1, + STATE(8722), 1, sym_comment, - ACTIONS(5217), 5, + ACTIONS(1095), 5, sym_cmd_identifier, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [277753] = 7, + [277123] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, + ACTIONS(14296), 1, anon_sym_LPAREN, - ACTIONS(14878), 1, + ACTIONS(14298), 1, sym_unescaped_interpolated_content, - ACTIONS(15616), 1, + ACTIONS(14719), 1, anon_sym_SQUOTE, - STATE(9145), 1, + STATE(8723), 1, sym_comment, - STATE(9291), 1, + STATE(8725), 1, aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, + STATE(9819), 1, sym_expr_interpolated, - [277775] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(2843), 1, - anon_sym_RBRACK, - ACTIONS(2845), 1, - sym__entry_separator, - ACTIONS(2847), 1, - anon_sym_LPAREN2, - ACTIONS(2851), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(13169), 1, - anon_sym_DOT, - STATE(9146), 1, - sym_comment, - [277797] = 4, + [277145] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14983), 1, + ACTIONS(14308), 1, anon_sym_LF, - STATE(9147), 1, + STATE(8724), 1, sym_comment, - ACTIONS(14981), 4, + ACTIONS(14306), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [277813] = 4, + [277161] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14969), 1, - anon_sym_LF, - STATE(9148), 1, + ACTIONS(14296), 1, + anon_sym_LPAREN, + ACTIONS(14298), 1, + sym_unescaped_interpolated_content, + ACTIONS(14721), 1, + anon_sym_SQUOTE, + STATE(8473), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(8725), 1, sym_comment, - ACTIONS(14967), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [277829] = 4, - ACTIONS(113), 1, + STATE(9819), 1, + sym_expr_interpolated, + [277183] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14884), 1, - anon_sym_LF, - STATE(9149), 1, + ACTIONS(4192), 1, + anon_sym_DQUOTE, + ACTIONS(14725), 1, + aux_sym_path_token1, + STATE(4841), 1, + sym__str_double_quotes, + STATE(8726), 1, sym_comment, - ACTIONS(14882), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [277845] = 4, + ACTIONS(14723), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [277203] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9150), 1, + STATE(8727), 1, sym_comment, - ACTIONS(5177), 2, + ACTIONS(5007), 2, ts_builtin_sym_end, aux_sym_command_token1, - ACTIONS(5175), 3, + ACTIONS(5005), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_PIPE, - [277861] = 4, + [277219] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14913), 1, - anon_sym_LF, - STATE(9151), 1, + STATE(8728), 1, sym_comment, - ACTIONS(14911), 4, + ACTIONS(5021), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(5019), 3, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LF, anon_sym_PIPE, - anon_sym_RBRACE, - [277877] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(14876), 1, - anon_sym_LPAREN, - ACTIONS(14878), 1, - sym_unescaped_interpolated_content, - ACTIONS(15618), 1, - anon_sym_SQUOTE, - STATE(9152), 1, - sym_comment, - STATE(9163), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, - sym_expr_interpolated, - [277899] = 4, + [277235] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9153), 1, + STATE(8729), 1, sym_comment, - ACTIONS(5193), 2, + ACTIONS(5025), 2, ts_builtin_sym_end, aux_sym_command_token1, - ACTIONS(5191), 3, + ACTIONS(5023), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_PIPE, - [277915] = 7, + [277251] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2847), 1, + ACTIONS(3644), 1, + sym_identifier, + ACTIONS(3646), 1, + anon_sym_DOLLAR, + ACTIONS(3648), 1, anon_sym_LPAREN2, - ACTIONS(2851), 1, + ACTIONS(3650), 1, aux_sym_unquoted_token2, - ACTIONS(3750), 1, - anon_sym_in, - ACTIONS(13169), 1, + ACTIONS(13004), 1, anon_sym_DOT, - ACTIONS(15620), 1, - aux_sym__immediate_decimal_token1, - STATE(9154), 1, + STATE(8730), 1, sym_comment, - [277937] = 7, - ACTIONS(113), 1, + [277273] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15003), 1, - anon_sym_SEMI, - ACTIONS(15005), 1, - anon_sym_LF, - ACTIONS(15596), 1, - ts_builtin_sym_end, - STATE(9155), 1, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(12513), 1, + anon_sym_DOT, + STATE(8731), 1, sym_comment, - STATE(9279), 1, - aux_sym__block_body_repeat1, - STATE(10231), 1, - sym__terminator, - [277959] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(7571), 1, - anon_sym_RBRACK, - ACTIONS(15622), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15624), 1, - aux_sym__unquoted_in_list_token2, - STATE(9156), 1, + ACTIONS(3356), 2, + anon_sym_DOLLAR, + anon_sym_LBRACE, + [277293] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(8732), 1, sym_comment, - ACTIONS(7585), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [277979] = 4, + ACTIONS(1239), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [277307] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14969), 1, + ACTIONS(14669), 1, anon_sym_LF, - STATE(9157), 1, + STATE(8733), 1, sym_comment, - ACTIONS(14967), 4, + ACTIONS(14667), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [277995] = 4, + [277323] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14935), 1, + ACTIONS(14729), 1, anon_sym_LF, - STATE(9158), 1, + ACTIONS(14731), 1, + anon_sym_else, + STATE(8734), 1, sym_comment, - ACTIONS(14933), 4, + ACTIONS(14727), 3, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [278011] = 4, + [277341] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15628), 1, + ACTIONS(14296), 1, + anon_sym_LPAREN, + ACTIONS(14298), 1, + sym_unescaped_interpolated_content, + ACTIONS(14733), 1, + anon_sym_SQUOTE, + STATE(8735), 1, + sym_comment, + STATE(8739), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(9819), 1, + sym_expr_interpolated, + [277363] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(14737), 1, anon_sym_LF, - STATE(9159), 1, + STATE(8736), 1, sym_comment, - ACTIONS(15626), 4, + ACTIONS(14735), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [278027] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(938), 1, - anon_sym_DASH_DASH, - ACTIONS(10920), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15630), 1, - aux_sym_unquoted_token2, - STATE(9160), 1, - sym_comment, - ACTIONS(936), 2, - sym_identifier, - anon_sym_DASH, - [278047] = 5, - ACTIONS(3), 1, + [277379] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2547), 1, - aux_sym_unquoted_token2, - ACTIONS(15632), 1, - aux_sym__immediate_decimal_token2, - STATE(9161), 1, + ACTIONS(14741), 1, + anon_sym_LF, + STATE(8737), 1, sym_comment, - ACTIONS(2549), 3, + ACTIONS(14739), 4, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT, - [278065] = 4, + anon_sym_RBRACE, + [277395] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14899), 1, + ACTIONS(6058), 1, + anon_sym_SEMI, + ACTIONS(6060), 1, anon_sym_LF, - STATE(9162), 1, + STATE(2324), 1, + sym__terminator, + STATE(8738), 1, sym_comment, - ACTIONS(14897), 4, - anon_sym_SEMI, + ACTIONS(14743), 2, anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_RBRACE, - [278081] = 7, + [277415] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, + ACTIONS(14296), 1, anon_sym_LPAREN, - ACTIONS(14878), 1, + ACTIONS(14298), 1, sym_unescaped_interpolated_content, - ACTIONS(15634), 1, + ACTIONS(14745), 1, anon_sym_SQUOTE, - STATE(9163), 1, - sym_comment, - STATE(9291), 1, + STATE(8473), 1, aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, - sym_expr_interpolated, - [278103] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2437), 1, - aux_sym_unquoted_token2, - ACTIONS(14799), 1, - aux_sym__immediate_decimal_token2, - STATE(9164), 1, + STATE(8739), 1, sym_comment, - ACTIONS(2439), 3, - anon_sym_in, - anon_sym_LPAREN2, - anon_sym_DOT, - [278121] = 4, + STATE(9819), 1, + sym_expr_interpolated, + [277437] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14935), 1, + ACTIONS(14663), 1, anon_sym_LF, - STATE(9165), 1, + STATE(8740), 1, sym_comment, - ACTIONS(14933), 4, + ACTIONS(14661), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [278137] = 6, + [277453] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15636), 1, + ACTIONS(14747), 1, anon_sym_DQUOTE, - ACTIONS(15640), 1, + ACTIONS(14751), 1, aux_sym_path_token1, - STATE(1759), 1, + STATE(5151), 1, sym__str_double_quotes, - STATE(9166), 1, + STATE(8741), 1, sym_comment, - ACTIONS(15638), 2, + ACTIONS(14749), 2, sym__str_single_quotes, sym__str_back_ticks, - [278157] = 7, + [277473] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10802), 1, - anon_sym_DOLLAR, - ACTIONS(14760), 1, - sym_identifier, - STATE(1690), 1, - sym__var, - STATE(2648), 1, - sym__variable_name, - STATE(2796), 1, - sym_val_variable, - STATE(9167), 1, + STATE(8742), 1, sym_comment, - [278179] = 6, + ACTIONS(1243), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [277487] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8304), 1, - anon_sym_PIPE, - ACTIONS(15644), 1, + ACTIONS(14669), 1, anon_sym_LF, - STATE(3918), 1, - aux_sym_pipe_element_repeat1, - STATE(9168), 1, + STATE(8743), 1, sym_comment, - ACTIONS(15642), 2, + ACTIONS(14667), 4, anon_sym_SEMI, anon_sym_RPAREN, - [278199] = 4, + anon_sym_PIPE, + anon_sym_RBRACE, + [277503] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14893), 1, + ACTIONS(14663), 1, anon_sym_LF, - STATE(9169), 1, + STATE(8744), 1, sym_comment, - ACTIONS(14891), 4, + ACTIONS(14661), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [278215] = 3, - ACTIONS(3), 1, + [277519] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(9170), 1, + ACTIONS(14669), 1, + anon_sym_LF, + STATE(8745), 1, sym_comment, - ACTIONS(1310), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [278229] = 4, + ACTIONS(14667), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [277535] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9171), 1, + ACTIONS(14663), 1, + anon_sym_LF, + STATE(8746), 1, sym_comment, - ACTIONS(2437), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(2439), 3, - anon_sym_LPAREN2, - anon_sym_DOT, - sym__entry_separator, - [278245] = 4, + ACTIONS(14661), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [277551] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14884), 1, + ACTIONS(14669), 1, anon_sym_LF, - STATE(9172), 1, + STATE(8747), 1, sym_comment, - ACTIONS(14882), 4, + ACTIONS(14667), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [278261] = 4, + [277567] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14899), 1, + ACTIONS(14663), 1, anon_sym_LF, - STATE(9173), 1, + STATE(8748), 1, sym_comment, - ACTIONS(14897), 4, + ACTIONS(14661), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [278277] = 4, + [277583] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14997), 1, + ACTIONS(14669), 1, anon_sym_LF, - STATE(9174), 1, + STATE(8749), 1, sym_comment, - ACTIONS(14995), 4, + ACTIONS(14667), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [278293] = 4, + [277599] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1243), 1, - anon_sym_DASH, - STATE(9175), 1, - sym_comment, - ACTIONS(1290), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(3775), 1, anon_sym_LPAREN2, - [278309] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(14876), 1, - anon_sym_LPAREN, - ACTIONS(14878), 1, - sym_unescaped_interpolated_content, - ACTIONS(15647), 1, - anon_sym_SQUOTE, - STATE(9176), 1, + ACTIONS(13087), 1, + anon_sym_DOT, + STATE(8750), 1, sym_comment, - STATE(9192), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, - sym_expr_interpolated, - [278331] = 7, + ACTIONS(3773), 2, + anon_sym_DOLLAR, + anon_sym_LBRACE, + [277619] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, + ACTIONS(14296), 1, anon_sym_LPAREN, - ACTIONS(14878), 1, + ACTIONS(14298), 1, sym_unescaped_interpolated_content, - ACTIONS(15649), 1, + ACTIONS(14753), 1, anon_sym_SQUOTE, - STATE(9177), 1, + STATE(8751), 1, sym_comment, - STATE(9291), 1, + STATE(8755), 1, aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, + STATE(9819), 1, sym_expr_interpolated, - [278353] = 4, + [277641] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14893), 1, + ACTIONS(14663), 1, anon_sym_LF, - STATE(9178), 1, + STATE(8752), 1, sym_comment, - ACTIONS(14891), 4, + ACTIONS(14661), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [278369] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2959), 1, - anon_sym_DQUOTE, - ACTIONS(15653), 1, - aux_sym_path_token1, - STATE(4931), 1, - sym__str_double_quotes, - STATE(9179), 1, - sym_comment, - ACTIONS(15651), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [278389] = 5, + [277657] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1290), 1, - anon_sym_LPAREN2, - ACTIONS(15655), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(9180), 1, + STATE(8753), 1, sym_comment, - ACTIONS(1243), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH, - [278407] = 4, + ACTIONS(5029), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(5027), 3, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, + [277673] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14913), 1, + ACTIONS(7818), 1, + anon_sym_PIPE, + ACTIONS(14757), 1, anon_sym_LF, - STATE(9181), 1, + STATE(3564), 1, + aux_sym_pipe_element_repeat1, + STATE(8754), 1, sym_comment, - ACTIONS(14911), 4, + ACTIONS(14755), 2, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [278423] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(9182), 1, - sym_comment, - ACTIONS(5193), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [278437] = 6, + [277693] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1255), 1, - anon_sym_LBRACE, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - ACTIONS(4631), 1, - anon_sym_LPAREN2, - STATE(9183), 1, + ACTIONS(14296), 1, + anon_sym_LPAREN, + ACTIONS(14298), 1, + sym_unescaped_interpolated_content, + ACTIONS(14760), 1, + anon_sym_SQUOTE, + STATE(8473), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(8755), 1, sym_comment, - ACTIONS(1253), 2, - sym_identifier, - anon_sym_DOLLAR, - [278457] = 4, + STATE(9819), 1, + sym_expr_interpolated, + [277715] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14947), 1, + ACTIONS(14669), 1, anon_sym_LF, - STATE(9184), 1, + STATE(8756), 1, sym_comment, - ACTIONS(14945), 4, + ACTIONS(14667), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [278473] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(9185), 1, - sym_comment, - ACTIONS(1334), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [278487] = 3, + [277731] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(9186), 1, - sym_comment, - ACTIONS(1338), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, + ACTIONS(14762), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [278501] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(9187), 1, + ACTIONS(14766), 1, + aux_sym_path_token1, + STATE(4372), 1, + sym__str_double_quotes, + STATE(8757), 1, sym_comment, - ACTIONS(1314), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, + ACTIONS(14764), 2, sym__str_single_quotes, sym__str_back_ticks, - [278515] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(9188), 1, - sym_comment, - ACTIONS(5181), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(5179), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - [278531] = 4, + [277751] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2437), 1, + ACTIONS(3648), 1, + anon_sym_LPAREN2, + ACTIONS(3650), 1, aux_sym_unquoted_token2, - STATE(9189), 1, - sym_comment, - ACTIONS(2439), 4, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(13004), 1, anon_sym_DOT, - [278547] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(9190), 1, - sym_comment, - ACTIONS(5221), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(5219), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - [278563] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3391), 1, - anon_sym_DQUOTE, - ACTIONS(15659), 1, - aux_sym_path_token1, - STATE(4521), 1, - sym__str_double_quotes, - STATE(9191), 1, + STATE(8758), 1, sym_comment, - ACTIONS(15657), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [278583] = 7, + ACTIONS(3646), 2, + anon_sym_DOLLAR, + anon_sym_LBRACE, + [277771] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, + ACTIONS(14296), 1, anon_sym_LPAREN, - ACTIONS(14878), 1, + ACTIONS(14298), 1, sym_unescaped_interpolated_content, - ACTIONS(15661), 1, + ACTIONS(14768), 1, anon_sym_SQUOTE, - STATE(9192), 1, + STATE(8759), 1, sym_comment, - STATE(9291), 1, + STATE(8761), 1, aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, + STATE(9819), 1, sym_expr_interpolated, - [278605] = 4, - ACTIONS(3), 1, + [277793] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5183), 1, - anon_sym_DASH, - STATE(9193), 1, + ACTIONS(14663), 1, + anon_sym_LF, + STATE(8760), 1, sym_comment, - ACTIONS(5185), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [278621] = 7, + ACTIONS(14661), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [277809] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(3518), 1, - anon_sym_RBRACK, - ACTIONS(3520), 1, - sym__entry_separator, - ACTIONS(3522), 1, - anon_sym_LPAREN2, - ACTIONS(13319), 1, - anon_sym_DOT, - STATE(9194), 1, + ACTIONS(14296), 1, + anon_sym_LPAREN, + ACTIONS(14298), 1, + sym_unescaped_interpolated_content, + ACTIONS(14770), 1, + anon_sym_SQUOTE, + STATE(8473), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(8761), 1, sym_comment, - [278643] = 4, + STATE(9819), 1, + sym_expr_interpolated, + [277831] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9195), 1, + STATE(8762), 1, sym_comment, - ACTIONS(5225), 2, + ACTIONS(5033), 2, ts_builtin_sym_end, aux_sym_command_token1, - ACTIONS(5223), 3, + ACTIONS(5031), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_PIPE, - [278659] = 6, + [277847] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(103), 1, + ACTIONS(14772), 1, anon_sym_DQUOTE, - ACTIONS(15665), 1, + ACTIONS(14776), 1, aux_sym_path_token1, - STATE(5746), 1, + STATE(7248), 1, sym__str_double_quotes, - STATE(9196), 1, + STATE(8763), 1, sym_comment, - ACTIONS(15663), 2, + ACTIONS(14774), 2, sym__str_single_quotes, sym__str_back_ticks, - [278679] = 4, + [277867] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14909), 1, + ACTIONS(14669), 1, anon_sym_LF, - STATE(9197), 1, + STATE(8764), 1, sym_comment, - ACTIONS(14907), 4, + ACTIONS(14667), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [278695] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(3520), 1, - anon_sym_DASH_DASH, - ACTIONS(13319), 1, - anon_sym_DOT, - STATE(9198), 1, - sym_comment, - ACTIONS(3518), 2, - sym_identifier, - anon_sym_DASH, - [278715] = 4, + [277883] = 7, ACTIONS(113), 1, anon_sym_POUND, - STATE(9199), 1, - sym_comment, - ACTIONS(5201), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(5199), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - [278731] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(9200), 1, + ACTIONS(14296), 1, + anon_sym_LPAREN, + ACTIONS(14298), 1, + sym_unescaped_interpolated_content, + ACTIONS(14778), 1, + anon_sym_SQUOTE, + STATE(8765), 1, sym_comment, - ACTIONS(5173), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [278745] = 4, + STATE(8767), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(9819), 1, + sym_expr_interpolated, + [277905] = 7, ACTIONS(113), 1, anon_sym_POUND, - STATE(9201), 1, - sym_comment, - ACTIONS(5205), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(5203), 3, + ACTIONS(6058), 1, anon_sym_SEMI, + ACTIONS(6060), 1, anon_sym_LF, - anon_sym_PIPE, - [278761] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(9202), 1, - sym_comment, - ACTIONS(5197), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [278775] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - ACTIONS(3874), 1, - sym_identifier, - ACTIONS(3876), 1, - anon_sym_DOLLAR, - ACTIONS(3878), 1, - anon_sym_LPAREN2, - ACTIONS(13456), 1, - anon_sym_DOT, - STATE(9203), 1, - sym_comment, - [278797] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3351), 1, - anon_sym_DQUOTE, - ACTIONS(15052), 1, - aux_sym_path_token1, - STATE(3844), 1, - sym__str_double_quotes, - STATE(9204), 1, + ACTIONS(14780), 1, + anon_sym_RPAREN, + STATE(1977), 1, + aux_sym__block_body_repeat1, + STATE(2372), 1, + sym__terminator, + STATE(8766), 1, sym_comment, - ACTIONS(15050), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [278817] = 4, + [277927] = 7, ACTIONS(113), 1, anon_sym_POUND, - STATE(9205), 1, + ACTIONS(14296), 1, + anon_sym_LPAREN, + ACTIONS(14298), 1, + sym_unescaped_interpolated_content, + ACTIONS(14782), 1, + anon_sym_SQUOTE, + STATE(8473), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(8767), 1, sym_comment, - ACTIONS(1282), 2, - anon_sym_LBRACE, - anon_sym_LPAREN2, - ACTIONS(1280), 3, - sym_identifier, - anon_sym_DOLLAR, - aux_sym_unquoted_token6, - [278833] = 6, + STATE(9819), 1, + sym_expr_interpolated, + [277949] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15072), 1, - aux_sym_path_token1, - ACTIONS(15582), 1, + ACTIONS(14784), 1, anon_sym_DQUOTE, - STATE(7013), 1, + ACTIONS(14788), 1, + aux_sym_path_token1, + STATE(4990), 1, sym__str_double_quotes, - STATE(9206), 1, + STATE(8768), 1, sym_comment, - ACTIONS(15070), 2, + ACTIONS(14786), 2, sym__str_single_quotes, sym__str_back_ticks, - [278853] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1290), 1, - ts_builtin_sym_end, - ACTIONS(6211), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(9207), 1, - sym_comment, - ACTIONS(1243), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - [278871] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(14876), 1, - anon_sym_LPAREN, - ACTIONS(14878), 1, - sym_unescaped_interpolated_content, - ACTIONS(15667), 1, - anon_sym_SQUOTE, - STATE(9208), 1, - sym_comment, - STATE(9269), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, - sym_expr_interpolated, - [278893] = 7, + [277969] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, + ACTIONS(14296), 1, anon_sym_LPAREN, - ACTIONS(14878), 1, + ACTIONS(14298), 1, sym_unescaped_interpolated_content, - ACTIONS(15669), 1, + ACTIONS(14790), 1, anon_sym_SQUOTE, - STATE(9209), 1, + STATE(8769), 1, sym_comment, - STATE(9291), 1, + STATE(8772), 1, aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, + STATE(9819), 1, sym_expr_interpolated, - [278915] = 4, + [277991] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9210), 1, + ACTIONS(14316), 1, + anon_sym_LF, + STATE(8770), 1, sym_comment, - ACTIONS(5229), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(5227), 3, + ACTIONS(14314), 4, anon_sym_SEMI, - anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, - [278931] = 4, + anon_sym_RBRACE, + [278007] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14969), 1, + ACTIONS(14304), 1, anon_sym_LF, - STATE(9211), 1, + STATE(8771), 1, sym_comment, - ACTIONS(14967), 4, + ACTIONS(14302), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [278947] = 4, + [278023] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(14296), 1, + anon_sym_LPAREN, + ACTIONS(14298), 1, + sym_unescaped_interpolated_content, + ACTIONS(14792), 1, + anon_sym_SQUOTE, + STATE(8473), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(8772), 1, + sym_comment, + STATE(9819), 1, + sym_expr_interpolated, + [278045] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2651), 1, + anon_sym_DQUOTE, + ACTIONS(14796), 1, + aux_sym_path_token1, + STATE(7462), 1, + sym__str_double_quotes, + STATE(8773), 1, + sym_comment, + ACTIONS(14794), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [278065] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15028), 1, + ACTIONS(14312), 1, anon_sym_LF, - STATE(9212), 1, + STATE(8774), 1, sym_comment, - ACTIONS(15026), 4, + ACTIONS(14310), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [278963] = 3, - ACTIONS(3), 1, + [278081] = 7, + ACTIONS(113), 1, anon_sym_POUND, - STATE(9213), 1, + ACTIONS(14296), 1, + anon_sym_LPAREN, + ACTIONS(14298), 1, + sym_unescaped_interpolated_content, + ACTIONS(14798), 1, + anon_sym_SQUOTE, + STATE(8775), 1, sym_comment, - ACTIONS(15671), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [278977] = 4, + STATE(8777), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(9819), 1, + sym_expr_interpolated, + [278103] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15032), 1, + ACTIONS(14316), 1, anon_sym_LF, - STATE(9214), 1, + STATE(8776), 1, sym_comment, - ACTIONS(15030), 4, + ACTIONS(14314), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [278993] = 6, + [278119] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(14296), 1, + anon_sym_LPAREN, + ACTIONS(14298), 1, + sym_unescaped_interpolated_content, + ACTIONS(14800), 1, + anon_sym_SQUOTE, + STATE(8473), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(8777), 1, + sym_comment, + STATE(9819), 1, + sym_expr_interpolated, + [278141] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15462), 1, + ACTIONS(14447), 1, anon_sym_DQUOTE, - ACTIONS(15586), 1, + ACTIONS(14804), 1, aux_sym_path_token1, - STATE(5108), 1, + STATE(5688), 1, sym__str_double_quotes, - STATE(9215), 1, + STATE(8778), 1, sym_comment, - ACTIONS(15584), 2, + ACTIONS(14802), 2, sym__str_single_quotes, sym__str_back_ticks, - [279013] = 4, + [278161] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9216), 1, + ACTIONS(14312), 1, + anon_sym_LF, + STATE(8779), 1, sym_comment, - ACTIONS(5233), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(5231), 3, + ACTIONS(14310), 4, anon_sym_SEMI, - anon_sym_LF, + anon_sym_RPAREN, anon_sym_PIPE, - [279029] = 3, - ACTIONS(3), 1, + anon_sym_RBRACE, + [278177] = 7, + ACTIONS(113), 1, anon_sym_POUND, - STATE(9217), 1, + ACTIONS(14296), 1, + anon_sym_LPAREN, + ACTIONS(14298), 1, + sym_unescaped_interpolated_content, + ACTIONS(14806), 1, + anon_sym_SQUOTE, + STATE(8780), 1, sym_comment, - ACTIONS(961), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [279043] = 4, + STATE(8782), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(9819), 1, + sym_expr_interpolated, + [278199] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14913), 1, + ACTIONS(14316), 1, anon_sym_LF, - STATE(9218), 1, + STATE(8781), 1, sym_comment, - ACTIONS(14911), 4, + ACTIONS(14314), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [279059] = 7, - ACTIONS(3), 1, + [278215] = 7, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12574), 1, - sym_identifier, - STATE(8338), 1, - sym__variable_name, - STATE(8729), 1, - sym__var, - STATE(8921), 1, - sym_val_variable, - STATE(9219), 1, + ACTIONS(14296), 1, + anon_sym_LPAREN, + ACTIONS(14298), 1, + sym_unescaped_interpolated_content, + ACTIONS(14808), 1, + anon_sym_SQUOTE, + STATE(8473), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(8782), 1, sym_comment, - [279081] = 4, + STATE(9819), 1, + sym_expr_interpolated, + [278237] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(9220), 1, + ACTIONS(14810), 1, + anon_sym_DQUOTE, + ACTIONS(14814), 1, + aux_sym_path_token1, + STATE(3359), 1, + sym__str_double_quotes, + STATE(8783), 1, sym_comment, - ACTIONS(2547), 2, - sym_identifier, - aux_sym_unquoted_token2, - ACTIONS(2549), 3, - anon_sym_DOLLAR, - anon_sym_LPAREN2, - anon_sym_DOT, - [279097] = 4, + ACTIONS(14812), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [278257] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14884), 1, - anon_sym_LF, - STATE(9221), 1, + ACTIONS(14296), 1, + anon_sym_LPAREN, + ACTIONS(14298), 1, + sym_unescaped_interpolated_content, + ACTIONS(14816), 1, + anon_sym_SQUOTE, + STATE(8784), 1, sym_comment, - ACTIONS(14882), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [279113] = 4, + STATE(8785), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(9819), 1, + sym_expr_interpolated, + [278279] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14893), 1, + ACTIONS(14296), 1, + anon_sym_LPAREN, + ACTIONS(14298), 1, + sym_unescaped_interpolated_content, + ACTIONS(14818), 1, + anon_sym_SQUOTE, + STATE(8473), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(8785), 1, + sym_comment, + STATE(9819), 1, + sym_expr_interpolated, + [278301] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(14312), 1, anon_sym_LF, - STATE(9222), 1, + STATE(8786), 1, sym_comment, - ACTIONS(14891), 4, + ACTIONS(14310), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [279129] = 6, + [278317] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(14820), 1, + anon_sym_DQUOTE, + ACTIONS(14824), 1, + aux_sym_path_token1, + STATE(2980), 1, + sym__str_double_quotes, + STATE(8787), 1, + sym_comment, + ACTIONS(14822), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [278337] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8304), 1, + ACTIONS(7818), 1, anon_sym_PIPE, - ACTIONS(15675), 1, + ACTIONS(14828), 1, anon_sym_LF, - STATE(3909), 1, + STATE(3476), 1, aux_sym_pipe_element_repeat1, - STATE(9223), 1, + STATE(8788), 1, sym_comment, - ACTIONS(15673), 2, + ACTIONS(14826), 2, anon_sym_SEMI, anon_sym_RPAREN, - [279149] = 4, + [278357] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14983), 1, + ACTIONS(14316), 1, anon_sym_LF, - STATE(9224), 1, + STATE(8789), 1, sym_comment, - ACTIONS(14981), 4, + ACTIONS(14314), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [279165] = 4, + [278373] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15680), 1, - anon_sym_LF, - STATE(9225), 1, + ACTIONS(14296), 1, + anon_sym_LPAREN, + ACTIONS(14298), 1, + sym_unescaped_interpolated_content, + ACTIONS(14831), 1, + anon_sym_SQUOTE, + STATE(8790), 1, sym_comment, - ACTIONS(15678), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [279181] = 7, + STATE(8791), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(9819), 1, + sym_expr_interpolated, + [278395] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1934), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(3518), 1, - anon_sym_RBRACK, - ACTIONS(3520), 1, - sym__entry_separator, - ACTIONS(3522), 1, - anon_sym_LPAREN2, - ACTIONS(13319), 1, - anon_sym_DOT, - STATE(9226), 1, + ACTIONS(14296), 1, + anon_sym_LPAREN, + ACTIONS(14298), 1, + sym_unescaped_interpolated_content, + ACTIONS(14833), 1, + anon_sym_SQUOTE, + STATE(8473), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(8791), 1, sym_comment, - [279203] = 3, + STATE(9819), 1, + sym_expr_interpolated, + [278417] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(9227), 1, - sym_comment, - ACTIONS(1412), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, + ACTIONS(4286), 1, anon_sym_DQUOTE, + ACTIONS(14837), 1, + aux_sym_path_token1, + STATE(3775), 1, + sym__str_double_quotes, + STATE(8792), 1, + sym_comment, + ACTIONS(14835), 2, sym__str_single_quotes, sym__str_back_ticks, - [279217] = 4, + [278437] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15028), 1, - anon_sym_LF, - STATE(9228), 1, - sym_comment, - ACTIONS(15026), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [279233] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(9229), 1, + ACTIONS(14296), 1, + anon_sym_LPAREN, + ACTIONS(14298), 1, + sym_unescaped_interpolated_content, + ACTIONS(14839), 1, + anon_sym_SQUOTE, + STATE(8793), 1, sym_comment, - ACTIONS(5221), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [279247] = 6, - ACTIONS(3), 1, + STATE(8794), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(9819), 1, + sym_expr_interpolated, + [278459] = 7, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14937), 1, - anon_sym_DOT, - ACTIONS(14941), 1, - aux_sym__immediate_decimal_token4, - STATE(9230), 1, + ACTIONS(14296), 1, + anon_sym_LPAREN, + ACTIONS(14298), 1, + sym_unescaped_interpolated_content, + ACTIONS(14841), 1, + anon_sym_SQUOTE, + STATE(8473), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(8794), 1, sym_comment, - STATE(11115), 1, - sym__immediate_decimal, - ACTIONS(14939), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [279267] = 6, + STATE(9819), 1, + sym_expr_interpolated, + [278481] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4008), 1, - anon_sym_DASH_DASH, - ACTIONS(4012), 1, - aux_sym_unquoted_token2, - ACTIONS(13520), 1, - anon_sym_DOT, - STATE(9231), 1, + ACTIONS(2838), 1, + anon_sym_DQUOTE, + ACTIONS(14845), 1, + aux_sym_path_token1, + STATE(7902), 1, + sym__str_double_quotes, + STATE(8795), 1, sym_comment, - ACTIONS(4006), 2, - sym_identifier, - anon_sym_DASH, - [279287] = 5, + ACTIONS(14843), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [278501] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15682), 1, + ACTIONS(14847), 1, anon_sym_DOT_DOT2, - STATE(9232), 1, + STATE(8796), 1, sym_comment, - ACTIONS(3520), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(15684), 2, + ACTIONS(1844), 2, + anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(14849), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [279305] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2581), 1, - aux_sym_unquoted_token2, - ACTIONS(15562), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(15686), 1, - anon_sym_DOT, - STATE(9233), 1, - sym_comment, - ACTIONS(2583), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [279325] = 7, + [278519] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(3748), 1, - sym_identifier, - ACTIONS(3750), 1, - anon_sym_DOLLAR, - ACTIONS(13169), 1, - anon_sym_DOT, - ACTIONS(14831), 1, - aux_sym__immediate_decimal_token1, - STATE(9234), 1, - sym_comment, - [279347] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(15032), 1, - anon_sym_LF, - STATE(9235), 1, - sym_comment, - ACTIONS(15030), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [279363] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - ACTIONS(4037), 1, - anon_sym_LPAREN2, - ACTIONS(15689), 1, - aux_sym_command_token1, - STATE(9236), 1, + ACTIONS(14851), 1, + anon_sym_DQUOTE, + ACTIONS(14855), 1, + aux_sym_path_token1, + STATE(8253), 1, + sym__str_double_quotes, + STATE(8797), 1, sym_comment, - ACTIONS(4035), 2, - anon_sym_RBRACK, - sym__entry_separator, - [279383] = 7, + ACTIONS(14853), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [278539] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, + ACTIONS(14296), 1, anon_sym_LPAREN, - ACTIONS(14878), 1, + ACTIONS(14298), 1, sym_unescaped_interpolated_content, - ACTIONS(15691), 1, + ACTIONS(14857), 1, anon_sym_SQUOTE, - STATE(9237), 1, - sym_comment, - STATE(9245), 1, + STATE(8482), 1, aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, - sym_expr_interpolated, - [279405] = 7, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(6538), 1, - anon_sym_SEMI, - ACTIONS(6540), 1, - anon_sym_LF, - ACTIONS(15693), 1, - anon_sym_RPAREN, - STATE(2696), 1, - sym__terminator, - STATE(8892), 1, - aux_sym__block_body_repeat1, - STATE(9238), 1, + STATE(8798), 1, sym_comment, - [279427] = 6, + STATE(9819), 1, + sym_expr_interpolated, + [278561] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(13169), 1, - anon_sym_DOT, - ACTIONS(15695), 1, - aux_sym__immediate_decimal_token1, - STATE(9239), 1, + ACTIONS(14859), 1, + anon_sym_DQUOTE, + ACTIONS(14863), 1, + aux_sym_path_token1, + STATE(4054), 1, + sym__str_double_quotes, + STATE(8799), 1, sym_comment, - ACTIONS(3750), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [279447] = 4, - ACTIONS(113), 1, + ACTIONS(14861), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [278581] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(9240), 1, + ACTIONS(14865), 1, + anon_sym_DQUOTE, + ACTIONS(14869), 1, + aux_sym_path_token1, + STATE(3324), 1, + sym__str_double_quotes, + STATE(8800), 1, sym_comment, - ACTIONS(5197), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(5195), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - [279463] = 4, - ACTIONS(113), 1, + ACTIONS(14867), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [278601] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14935), 1, - anon_sym_LF, - STATE(9241), 1, + ACTIONS(14871), 1, + anon_sym_DQUOTE, + ACTIONS(14875), 1, + aux_sym_path_token1, + STATE(3723), 1, + sym__str_double_quotes, + STATE(8801), 1, sym_comment, - ACTIONS(14933), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [279479] = 7, - ACTIONS(113), 1, + ACTIONS(14873), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [278621] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14876), 1, - anon_sym_LPAREN, - ACTIONS(14878), 1, - sym_unescaped_interpolated_content, - ACTIONS(15697), 1, - anon_sym_SQUOTE, - STATE(9242), 1, + ACTIONS(14877), 1, + anon_sym_DQUOTE, + ACTIONS(14881), 1, + aux_sym_path_token1, + STATE(1026), 1, + sym__str_double_quotes, + STATE(8802), 1, sym_comment, - STATE(9291), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, - sym_expr_interpolated, - [279501] = 4, - ACTIONS(113), 1, + ACTIONS(14879), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [278641] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14884), 1, - anon_sym_LF, - STATE(9243), 1, + ACTIONS(14883), 1, + anon_sym_DQUOTE, + ACTIONS(14887), 1, + aux_sym_path_token1, + STATE(4373), 1, + sym__str_double_quotes, + STATE(8803), 1, sym_comment, - ACTIONS(14882), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [279517] = 7, + ACTIONS(14885), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [278661] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(3518), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_DOLLAR, - ACTIONS(3522), 1, - anon_sym_LPAREN2, - ACTIONS(13319), 1, - anon_sym_DOT, - STATE(9244), 1, + ACTIONS(13718), 1, + anon_sym_DQUOTE, + ACTIONS(14891), 1, + aux_sym_path_token1, + STATE(6536), 1, + sym__str_double_quotes, + STATE(8804), 1, sym_comment, - [279539] = 7, - ACTIONS(113), 1, + ACTIONS(14889), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [278681] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14876), 1, - anon_sym_LPAREN, - ACTIONS(14878), 1, - sym_unescaped_interpolated_content, - ACTIONS(15699), 1, - anon_sym_SQUOTE, - STATE(9245), 1, + ACTIONS(14893), 1, + anon_sym_DQUOTE, + ACTIONS(14897), 1, + aux_sym_path_token1, + STATE(6842), 1, + sym__str_double_quotes, + STATE(8805), 1, sym_comment, - STATE(9291), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, - sym_expr_interpolated, - [279561] = 4, - ACTIONS(113), 1, + ACTIONS(14895), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [278701] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14899), 1, - anon_sym_LF, - STATE(9246), 1, + ACTIONS(4086), 1, + anon_sym_DQUOTE, + ACTIONS(14901), 1, + aux_sym_path_token1, + STATE(4502), 1, + sym__str_double_quotes, + STATE(8806), 1, sym_comment, - ACTIONS(14897), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [279577] = 4, - ACTIONS(113), 1, + ACTIONS(14899), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [278721] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14935), 1, - anon_sym_LF, - STATE(9247), 1, + ACTIONS(14903), 1, + anon_sym_DQUOTE, + ACTIONS(14907), 1, + aux_sym_path_token1, + STATE(3854), 1, + sym__str_double_quotes, + STATE(8807), 1, sym_comment, - ACTIONS(14933), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [279593] = 6, - ACTIONS(113), 1, + ACTIONS(14905), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [278741] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - ACTIONS(4037), 1, - anon_sym_LPAREN2, - ACTIONS(15701), 1, - aux_sym_command_token1, - STATE(9248), 1, + ACTIONS(4156), 1, + anon_sym_DQUOTE, + ACTIONS(14911), 1, + aux_sym_path_token1, + STATE(5123), 1, + sym__str_double_quotes, + STATE(8808), 1, sym_comment, - ACTIONS(4035), 2, - anon_sym_DOLLAR, - anon_sym_LBRACE, - [279613] = 4, - ACTIONS(113), 1, + ACTIONS(14909), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [278761] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15028), 1, - anon_sym_LF, - STATE(9249), 1, - sym_comment, - ACTIONS(15026), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [279629] = 3, + ACTIONS(14913), 1, + anon_sym_DQUOTE, + ACTIONS(14917), 1, + aux_sym_path_token1, + STATE(4869), 1, + sym__str_double_quotes, + STATE(8809), 1, + sym_comment, + ACTIONS(14915), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [278781] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(9250), 1, + ACTIONS(14919), 1, + anon_sym_DQUOTE, + ACTIONS(14923), 1, + aux_sym_path_token1, + STATE(3512), 1, + sym__str_double_quotes, + STATE(8810), 1, sym_comment, - ACTIONS(5225), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, + ACTIONS(14921), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [278801] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(14925), 1, anon_sym_DQUOTE, + ACTIONS(14929), 1, + aux_sym_path_token1, + STATE(320), 1, + sym__str_double_quotes, + STATE(8811), 1, + sym_comment, + ACTIONS(14927), 2, sym__str_single_quotes, sym__str_back_ticks, - [279643] = 5, + [278821] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2581), 1, - aux_sym_unquoted_token2, - ACTIONS(15010), 1, - aux_sym__immediate_decimal_token2, - STATE(9251), 1, + ACTIONS(14931), 1, + anon_sym_DQUOTE, + ACTIONS(14935), 1, + aux_sym_path_token1, + STATE(533), 1, + sym__str_double_quotes, + STATE(8812), 1, sym_comment, - ACTIONS(2583), 3, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT, - [279661] = 6, + ACTIONS(14933), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [278841] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(14937), 1, - anon_sym_DOT, + anon_sym_DQUOTE, ACTIONS(14941), 1, - aux_sym__immediate_decimal_token4, - STATE(9252), 1, + aux_sym_path_token1, + STATE(1290), 1, + sym__str_double_quotes, + STATE(8813), 1, sym_comment, - STATE(10839), 1, - sym__immediate_decimal, ACTIONS(14939), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [279681] = 5, + sym__str_single_quotes, + sym__str_back_ticks, + [278861] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2547), 1, - aux_sym_unquoted_token2, - ACTIONS(15703), 1, - aux_sym__immediate_decimal_token2, - STATE(9253), 1, + ACTIONS(14943), 1, + anon_sym_DQUOTE, + ACTIONS(14947), 1, + aux_sym_path_token1, + STATE(3444), 1, + sym__str_double_quotes, + STATE(8814), 1, sym_comment, - ACTIONS(2549), 3, - anon_sym_in, - anon_sym_LPAREN2, - anon_sym_DOT, - [279699] = 5, + ACTIONS(14945), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [278881] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15705), 1, - anon_sym_DOT_DOT2, - STATE(9254), 1, + ACTIONS(14949), 1, + anon_sym_DQUOTE, + ACTIONS(14953), 1, + aux_sym_path_token1, + STATE(3814), 1, + sym__str_double_quotes, + STATE(8815), 1, sym_comment, - ACTIONS(3868), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(15707), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [279717] = 6, + ACTIONS(14951), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [278901] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15598), 1, - anon_sym_DOT, - ACTIONS(15602), 1, - aux_sym__immediate_decimal_token4, - STATE(9255), 1, + ACTIONS(14955), 1, + anon_sym_DQUOTE, + ACTIONS(14959), 1, + aux_sym_path_token1, + STATE(1023), 1, + sym__str_double_quotes, + STATE(8816), 1, sym_comment, - STATE(10979), 1, - sym__immediate_decimal, - ACTIONS(15600), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [279737] = 4, - ACTIONS(113), 1, + ACTIONS(14957), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [278921] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14983), 1, - anon_sym_LF, - STATE(9256), 1, + ACTIONS(14961), 1, + anon_sym_DQUOTE, + ACTIONS(14965), 1, + aux_sym_path_token1, + STATE(5136), 1, + sym__str_double_quotes, + STATE(8817), 1, sym_comment, - ACTIONS(14981), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [279753] = 6, + ACTIONS(14963), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [278941] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3025), 1, + ACTIONS(14967), 1, anon_sym_DQUOTE, - ACTIONS(15711), 1, + ACTIONS(14971), 1, aux_sym_path_token1, - STATE(5484), 1, + STATE(1003), 1, sym__str_double_quotes, - STATE(9257), 1, + STATE(8818), 1, sym_comment, - ACTIONS(15709), 2, + ACTIONS(14969), 2, sym__str_single_quotes, sym__str_back_ticks, - [279773] = 4, - ACTIONS(113), 1, + [278961] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14893), 1, - anon_sym_LF, - STATE(9258), 1, + ACTIONS(14973), 1, + anon_sym_DQUOTE, + ACTIONS(14977), 1, + aux_sym_path_token1, + STATE(5882), 1, + sym__str_double_quotes, + STATE(8819), 1, sym_comment, - ACTIONS(14891), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [279789] = 7, - ACTIONS(113), 1, + ACTIONS(14975), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [278981] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14876), 1, - anon_sym_LPAREN, - ACTIONS(14878), 1, - sym_unescaped_interpolated_content, - ACTIONS(15713), 1, - anon_sym_SQUOTE, - STATE(9259), 1, + ACTIONS(14979), 1, + anon_sym_DQUOTE, + ACTIONS(14983), 1, + aux_sym_path_token1, + STATE(5690), 1, + sym__str_double_quotes, + STATE(8820), 1, sym_comment, - STATE(9267), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, - sym_expr_interpolated, - [279811] = 4, - ACTIONS(113), 1, + ACTIONS(14981), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [279001] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14884), 1, - anon_sym_LF, - STATE(9260), 1, + ACTIONS(14985), 1, + anon_sym_DQUOTE, + ACTIONS(14989), 1, + aux_sym_path_token1, + STATE(1420), 1, + sym__str_double_quotes, + STATE(8821), 1, sym_comment, - ACTIONS(14882), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [279827] = 4, - ACTIONS(113), 1, + ACTIONS(14987), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [279021] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14969), 1, - anon_sym_LF, - STATE(9261), 1, + ACTIONS(14991), 1, + anon_sym_DQUOTE, + ACTIONS(14995), 1, + aux_sym_path_token1, + STATE(588), 1, + sym__str_double_quotes, + STATE(8822), 1, sym_comment, - ACTIONS(14967), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [279843] = 4, - ACTIONS(113), 1, + ACTIONS(14993), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [279041] = 6, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(14997), 1, - anon_sym_LF, - STATE(9262), 1, + anon_sym_DQUOTE, + ACTIONS(15001), 1, + aux_sym_path_token1, + STATE(2866), 1, + sym__str_double_quotes, + STATE(8823), 1, sym_comment, - ACTIONS(14995), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [279859] = 5, + ACTIONS(14999), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [279061] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15715), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15717), 1, - aux_sym_unquoted_token2, - STATE(9263), 1, + ACTIONS(15003), 1, + anon_sym_DQUOTE, + ACTIONS(15007), 1, + aux_sym_path_token1, + STATE(1357), 1, + sym__str_double_quotes, + STATE(8824), 1, sym_comment, - ACTIONS(938), 3, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_LPAREN2, - [279877] = 4, - ACTIONS(113), 1, + ACTIONS(15005), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [279081] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14899), 1, - anon_sym_LF, - STATE(9264), 1, + ACTIONS(15009), 1, + anon_sym_DQUOTE, + ACTIONS(15013), 1, + aux_sym_path_token1, + STATE(5105), 1, + sym__str_double_quotes, + STATE(8825), 1, sym_comment, - ACTIONS(14897), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [279893] = 3, + ACTIONS(15011), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [279101] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(9265), 1, - sym_comment, - ACTIONS(1288), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, + ACTIONS(15015), 1, anon_sym_DQUOTE, + ACTIONS(15019), 1, + aux_sym_path_token1, + STATE(1291), 1, + sym__str_double_quotes, + STATE(8826), 1, + sym_comment, + ACTIONS(15017), 2, sym__str_single_quotes, sym__str_back_ticks, - [279907] = 4, - ACTIONS(113), 1, + [279121] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15032), 1, - anon_sym_LF, - STATE(9266), 1, + ACTIONS(15021), 1, + anon_sym_DQUOTE, + ACTIONS(15025), 1, + aux_sym_path_token1, + STATE(1202), 1, + sym__str_double_quotes, + STATE(8827), 1, sym_comment, - ACTIONS(15030), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [279923] = 7, - ACTIONS(113), 1, + ACTIONS(15023), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [279141] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14876), 1, - anon_sym_LPAREN, - ACTIONS(14878), 1, - sym_unescaped_interpolated_content, - ACTIONS(15719), 1, - anon_sym_SQUOTE, - STATE(9267), 1, + ACTIONS(15027), 1, + anon_sym_DQUOTE, + ACTIONS(15031), 1, + aux_sym_path_token1, + STATE(2685), 1, + sym__str_double_quotes, + STATE(8828), 1, sym_comment, - STATE(9291), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, - sym_expr_interpolated, - [279945] = 4, - ACTIONS(113), 1, + ACTIONS(15029), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [279161] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14947), 1, - anon_sym_LF, - STATE(9268), 1, + ACTIONS(15033), 1, + anon_sym_DQUOTE, + ACTIONS(15037), 1, + aux_sym_path_token1, + STATE(2504), 1, + sym__str_double_quotes, + STATE(8829), 1, sym_comment, - ACTIONS(14945), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [279961] = 7, - ACTIONS(113), 1, + ACTIONS(15035), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [279181] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14876), 1, - anon_sym_LPAREN, - ACTIONS(14878), 1, - sym_unescaped_interpolated_content, - ACTIONS(15721), 1, - anon_sym_SQUOTE, - STATE(9269), 1, + ACTIONS(15039), 1, + anon_sym_DQUOTE, + ACTIONS(15043), 1, + aux_sym_path_token1, + STATE(514), 1, + sym__str_double_quotes, + STATE(8830), 1, sym_comment, - STATE(9291), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, - sym_expr_interpolated, - [279983] = 7, - ACTIONS(113), 1, + ACTIONS(15041), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [279201] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8304), 1, - anon_sym_PIPE, - ACTIONS(14843), 1, - anon_sym_SEMI, - ACTIONS(14845), 1, - anon_sym_LF, - ACTIONS(15723), 1, - ts_builtin_sym_end, - STATE(4013), 1, - aux_sym_pipe_element_repeat1, - STATE(9270), 1, + ACTIONS(15045), 1, + anon_sym_DQUOTE, + ACTIONS(15049), 1, + aux_sym_path_token1, + STATE(275), 1, + sym__str_double_quotes, + STATE(8831), 1, sym_comment, - [280005] = 4, - ACTIONS(113), 1, + ACTIONS(15047), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [279221] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15028), 1, - anon_sym_LF, - STATE(9271), 1, + ACTIONS(15051), 1, + anon_sym_DQUOTE, + ACTIONS(15055), 1, + aux_sym_path_token1, + STATE(5891), 1, + sym__str_double_quotes, + STATE(8832), 1, sym_comment, - ACTIONS(15026), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [280021] = 6, + ACTIONS(15053), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [279241] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14937), 1, - anon_sym_DOT, - ACTIONS(14941), 1, - aux_sym__immediate_decimal_token4, - STATE(9272), 1, + ACTIONS(15057), 1, + anon_sym_DQUOTE, + ACTIONS(15061), 1, + aux_sym_path_token1, + STATE(2306), 1, + sym__str_double_quotes, + STATE(8833), 1, sym_comment, - STATE(10971), 1, - sym__immediate_decimal, - ACTIONS(14939), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [280041] = 5, + ACTIONS(15059), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [279261] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10670), 1, - anon_sym_DOT_DOT2, - STATE(9273), 1, + ACTIONS(15063), 1, + anon_sym_DQUOTE, + ACTIONS(15067), 1, + aux_sym_path_token1, + STATE(270), 1, + sym__str_double_quotes, + STATE(8834), 1, sym_comment, - ACTIONS(4018), 2, - anon_sym_DOLLAR, - anon_sym_LBRACE, - ACTIONS(10498), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [280059] = 6, + ACTIONS(15065), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [279281] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2670), 1, + ACTIONS(15069), 1, anon_sym_DQUOTE, - ACTIONS(15727), 1, + ACTIONS(15073), 1, aux_sym_path_token1, - STATE(5460), 1, + STATE(2891), 1, sym__str_double_quotes, - STATE(9274), 1, + STATE(8835), 1, sym_comment, - ACTIONS(15725), 2, + ACTIONS(15071), 2, sym__str_single_quotes, sym__str_back_ticks, - [280079] = 5, + [279301] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15729), 1, - anon_sym_DOT_DOT2, - STATE(9275), 1, + ACTIONS(15075), 1, + anon_sym_DQUOTE, + ACTIONS(15079), 1, + aux_sym_path_token1, + STATE(561), 1, + sym__str_double_quotes, + STATE(8836), 1, sym_comment, - ACTIONS(4045), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(15731), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [280097] = 6, - ACTIONS(113), 1, + ACTIONS(15077), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [279321] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4016), 1, - anon_sym_RBRACK, - ACTIONS(4018), 1, - sym__entry_separator, - ACTIONS(10409), 1, - anon_sym_DOT_DOT2, - STATE(9276), 1, + ACTIONS(15081), 1, + anon_sym_DQUOTE, + ACTIONS(15085), 1, + aux_sym_path_token1, + STATE(2744), 1, + sym__str_double_quotes, + STATE(8837), 1, sym_comment, - ACTIONS(10411), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [280117] = 4, - ACTIONS(113), 1, + ACTIONS(15083), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [279341] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(9277), 1, + ACTIONS(15087), 1, + anon_sym_DQUOTE, + ACTIONS(15091), 1, + aux_sym_path_token1, + STATE(3006), 1, + sym__str_double_quotes, + STATE(8838), 1, sym_comment, - ACTIONS(4293), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(4291), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - [280133] = 6, - ACTIONS(113), 1, + ACTIONS(15089), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [279361] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1249), 1, - anon_sym_LBRACE, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - ACTIONS(4037), 1, - anon_sym_LPAREN2, - STATE(9278), 1, + ACTIONS(15093), 1, + anon_sym_DQUOTE, + ACTIONS(15097), 1, + aux_sym_path_token1, + STATE(1009), 1, + sym__str_double_quotes, + STATE(8839), 1, sym_comment, - ACTIONS(1247), 2, - sym_identifier, - anon_sym_DOLLAR, - [280153] = 6, - ACTIONS(113), 1, + ACTIONS(15095), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [279381] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15733), 1, - ts_builtin_sym_end, - ACTIONS(15735), 1, - anon_sym_SEMI, - ACTIONS(15738), 1, - anon_sym_LF, - STATE(10231), 1, - sym__terminator, - STATE(9279), 2, + ACTIONS(15099), 1, + anon_sym_DQUOTE, + ACTIONS(15103), 1, + aux_sym_path_token1, + STATE(321), 1, + sym__str_double_quotes, + STATE(8840), 1, sym_comment, - aux_sym__block_body_repeat1, - [280173] = 4, - ACTIONS(113), 1, + ACTIONS(15101), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [279401] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14997), 1, - anon_sym_LF, - STATE(9280), 1, + ACTIONS(15105), 1, + anon_sym_DQUOTE, + ACTIONS(15109), 1, + aux_sym_path_token1, + STATE(300), 1, + sym__str_double_quotes, + STATE(8841), 1, sym_comment, - ACTIONS(14995), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [280189] = 6, + ACTIONS(15107), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [279421] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15741), 1, + ACTIONS(15111), 1, anon_sym_DQUOTE, - ACTIONS(15745), 1, + ACTIONS(15115), 1, aux_sym_path_token1, - STATE(4680), 1, + STATE(953), 1, sym__str_double_quotes, - STATE(9281), 1, + STATE(8842), 1, sym_comment, - ACTIONS(15743), 2, + ACTIONS(15113), 2, sym__str_single_quotes, sym__str_back_ticks, - [280209] = 3, + [279441] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(9282), 1, - sym_comment, - ACTIONS(15747), 5, - sym_cmd_identifier, - anon_sym_RBRACK, + ACTIONS(15117), 1, anon_sym_DQUOTE, + ACTIONS(15121), 1, + aux_sym_path_token1, + STATE(1333), 1, + sym__str_double_quotes, + STATE(8843), 1, + sym_comment, + ACTIONS(15119), 2, sym__str_single_quotes, sym__str_back_ticks, - [280223] = 3, + [279461] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(9283), 1, - sym_comment, - ACTIONS(1296), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, + ACTIONS(15123), 1, anon_sym_DQUOTE, + ACTIONS(15127), 1, + aux_sym_path_token1, + STATE(1216), 1, + sym__str_double_quotes, + STATE(8844), 1, + sym_comment, + ACTIONS(15125), 2, sym__str_single_quotes, sym__str_back_ticks, - [280237] = 4, + [279481] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14913), 1, + ACTIONS(14312), 1, anon_sym_LF, - STATE(9284), 1, + STATE(8845), 1, sym_comment, - ACTIONS(14911), 4, + ACTIONS(14310), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [280253] = 4, - ACTIONS(113), 1, + [279497] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(9285), 1, + STATE(8846), 1, sym_comment, - ACTIONS(3966), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(3964), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - [280269] = 6, + ACTIONS(2229), 2, + sym_identifier, + aux_sym_unquoted_token2, + ACTIONS(2231), 3, + anon_sym_DOLLAR, + anon_sym_LPAREN2, + anon_sym_DOT, + [279513] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8304), 1, - anon_sym_PIPE, - ACTIONS(15751), 1, + ACTIONS(3709), 1, + anon_sym_COLON, + ACTIONS(14351), 1, anon_sym_LF, - STATE(3913), 1, - aux_sym_pipe_element_repeat1, - STATE(9286), 1, + STATE(8847), 1, sym_comment, - ACTIONS(15749), 2, + ACTIONS(14349), 3, anon_sym_SEMI, - anon_sym_RPAREN, - [280289] = 4, + anon_sym_PIPE, + anon_sym_RBRACE, + [279531] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14983), 1, + ACTIONS(3709), 1, + anon_sym_COLON, + ACTIONS(14355), 1, anon_sym_LF, - STATE(9287), 1, + STATE(8848), 1, sym_comment, - ACTIONS(14981), 4, + ACTIONS(14353), 3, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [280305] = 4, - ACTIONS(113), 1, + [279549] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15032), 1, - anon_sym_LF, - STATE(9288), 1, + STATE(8849), 1, sym_comment, - ACTIONS(15030), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1247), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [279563] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(3354), 1, anon_sym_RBRACE, - [280321] = 6, + ACTIONS(3356), 1, + sym__entry_separator, + ACTIONS(15129), 1, + anon_sym_DOT_DOT2, + STATE(8850), 1, + sym_comment, + ACTIONS(15131), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [279583] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14937), 1, + ACTIONS(2356), 1, + aux_sym_unquoted_token2, + ACTIONS(15133), 1, + aux_sym__immediate_decimal_token2, + STATE(8851), 1, + sym_comment, + ACTIONS(2358), 3, + anon_sym_in, + anon_sym_LPAREN2, anon_sym_DOT, - ACTIONS(14941), 1, - aux_sym__immediate_decimal_token4, - STATE(9289), 1, + [279601] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3707), 1, + anon_sym_COLON, + ACTIONS(15135), 1, + anon_sym_use, + ACTIONS(15137), 1, + anon_sym_list, + ACTIONS(15139), 1, + anon_sym_hide, + ACTIONS(15141), 1, + anon_sym_new, + STATE(8852), 1, sym_comment, - STATE(11035), 1, - sym__immediate_decimal, - ACTIONS(14939), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [280341] = 4, + [279623] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14909), 1, - anon_sym_LF, - STATE(9290), 1, + ACTIONS(15143), 1, + anon_sym_else, + STATE(8853), 1, sym_comment, - ACTIONS(14907), 4, + ACTIONS(14274), 2, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [280357] = 6, + ACTIONS(14276), 2, + ts_builtin_sym_end, + anon_sym_LF, + [279641] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15754), 1, - anon_sym_LPAREN, - ACTIONS(15757), 1, - sym_unescaped_interpolated_content, - ACTIONS(15760), 1, - anon_sym_SQUOTE, - STATE(10209), 1, - sym_expr_interpolated, - STATE(9291), 2, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + ACTIONS(3727), 1, + anon_sym_LPAREN2, + STATE(8854), 1, sym_comment, - aux_sym__inter_single_quotes_repeat1, - [280377] = 3, + ACTIONS(1159), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH, + [279659] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(9292), 1, + ACTIONS(3655), 1, + anon_sym_COLON, + ACTIONS(15135), 1, + anon_sym_use, + ACTIONS(15137), 1, + anon_sym_list, + ACTIONS(15139), 1, + anon_sym_hide, + ACTIONS(15141), 1, + anon_sym_new, + STATE(8855), 1, sym_comment, - ACTIONS(1296), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, + [279681] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2701), 1, anon_sym_DQUOTE, + ACTIONS(14457), 1, + aux_sym_path_token1, + STATE(3704), 1, + sym__str_double_quotes, + STATE(8856), 1, + sym_comment, + ACTIONS(14455), 2, sym__str_single_quotes, sym__str_back_ticks, - [280391] = 6, + [279701] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14937), 1, + ACTIONS(15145), 1, anon_sym_DOT, - ACTIONS(14941), 1, + ACTIONS(15149), 1, aux_sym__immediate_decimal_token4, - STATE(9293), 1, + STATE(8857), 1, sym_comment, - STATE(11110), 1, + STATE(10870), 1, sym__immediate_decimal, - ACTIONS(14939), 2, + ACTIONS(15147), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - [280411] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(9294), 1, - sym_comment, - ACTIONS(1364), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [280425] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(14893), 1, - anon_sym_LF, - STATE(9295), 1, - sym_comment, - ACTIONS(14891), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [280441] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(15028), 1, - anon_sym_LF, - STATE(9296), 1, - sym_comment, - ACTIONS(15026), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [280457] = 6, + [279721] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14937), 1, + ACTIONS(15151), 1, anon_sym_DOT, - ACTIONS(14941), 1, + ACTIONS(15155), 1, aux_sym__immediate_decimal_token4, - STATE(9297), 1, + STATE(8858), 1, sym_comment, - STATE(11211), 1, + STATE(10877), 1, sym__immediate_decimal, - ACTIONS(14939), 2, + ACTIONS(15153), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - [280477] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1284), 1, - aux_sym_unquoted_token6, - ACTIONS(4895), 1, - anon_sym_LPAREN2, - STATE(9298), 1, - sym_comment, - ACTIONS(1158), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH, - [280495] = 7, + [279741] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2006), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(3874), 1, - anon_sym_RBRACK, - ACTIONS(3876), 1, - sym__entry_separator, - ACTIONS(3878), 1, - anon_sym_LPAREN2, - ACTIONS(13456), 1, - anon_sym_DOT, - STATE(9299), 1, + STATE(8859), 1, sym_comment, - [280517] = 3, + ACTIONS(5111), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(5109), 3, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, + [279757] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9300), 1, + STATE(8860), 1, sym_comment, - ACTIONS(5185), 5, + ACTIONS(1255), 5, sym_cmd_identifier, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [280531] = 6, + [279771] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14937), 1, + ACTIONS(15145), 1, anon_sym_DOT, - ACTIONS(14941), 1, + ACTIONS(15149), 1, aux_sym__immediate_decimal_token4, - STATE(9301), 1, + STATE(8861), 1, sym_comment, - STATE(11316), 1, + STATE(10427), 1, sym__immediate_decimal, - ACTIONS(14939), 2, + ACTIONS(15147), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - [280551] = 4, + [279791] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9302), 1, + STATE(8862), 1, sym_comment, - ACTIONS(5173), 2, + ACTIONS(3693), 2, ts_builtin_sym_end, aux_sym_command_token1, - ACTIONS(5171), 3, + ACTIONS(3691), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_PIPE, - [280567] = 4, + [279807] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9303), 1, + STATE(8863), 1, sym_comment, - ACTIONS(5209), 2, + ACTIONS(3701), 2, ts_builtin_sym_end, aux_sym_command_token1, - ACTIONS(5207), 3, + ACTIONS(3699), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_PIPE, - [280583] = 5, + [279823] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(959), 1, - anon_sym_DASH, - ACTIONS(9253), 1, - aux_sym_unquoted_token5, - STATE(9304), 1, + STATE(8864), 1, sym_comment, - ACTIONS(961), 3, - anon_sym_DOLLAR, + ACTIONS(1273), 5, + sym_cmd_identifier, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [280601] = 6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [279837] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14937), 1, + ACTIONS(10378), 1, + anon_sym_DOLLAR, + ACTIONS(14142), 1, + sym_identifier, + STATE(1322), 1, + sym__var, + STATE(2300), 1, + sym_val_variable, + STATE(2383), 1, + sym__variable_name, + STATE(8865), 1, + sym_comment, + [279859] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(8866), 1, + sym_comment, + ACTIONS(2229), 2, + anon_sym_RBRACK, + aux_sym_unquoted_token2, + ACTIONS(2231), 3, + anon_sym_LPAREN2, anon_sym_DOT, - ACTIONS(14941), 1, - aux_sym__immediate_decimal_token4, - STATE(9305), 1, + sym__entry_separator, + [279875] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(8867), 1, sym_comment, - STATE(11423), 1, - sym__immediate_decimal, - ACTIONS(14939), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [280621] = 5, + ACTIONS(1259), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [279889] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15762), 1, - anon_sym_else, - STATE(9306), 1, + ACTIONS(14296), 1, + anon_sym_LPAREN, + ACTIONS(14298), 1, + sym_unescaped_interpolated_content, + ACTIONS(15157), 1, + anon_sym_SQUOTE, + STATE(8868), 1, sym_comment, - ACTIONS(14577), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14579), 2, - ts_builtin_sym_end, - anon_sym_LF, - [280639] = 4, + STATE(8900), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(9819), 1, + sym_expr_interpolated, + [279911] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9307), 1, + STATE(8869), 1, sym_comment, - ACTIONS(2437), 2, - sym_identifier, + ACTIONS(1277), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [279925] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2229), 1, aux_sym_unquoted_token2, - ACTIONS(2439), 3, - anon_sym_DOLLAR, + ACTIONS(14282), 1, + aux_sym__immediate_decimal_token2, + STATE(8870), 1, + sym_comment, + ACTIONS(2231), 3, + anon_sym_in, anon_sym_LPAREN2, anon_sym_DOT, - [280655] = 4, + [279943] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14947), 1, + ACTIONS(15161), 1, anon_sym_LF, - STATE(9308), 1, + STATE(8871), 1, sym_comment, - ACTIONS(14945), 4, + ACTIONS(15159), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [280671] = 6, + [279959] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14937), 1, - anon_sym_DOT, - ACTIONS(14941), 1, - aux_sym__immediate_decimal_token4, - STATE(9309), 1, + ACTIONS(5725), 1, + anon_sym_DOLLAR, + ACTIONS(12254), 1, + sym_identifier, + STATE(7960), 1, + sym__variable_name, + STATE(8258), 1, + sym__var, + STATE(8718), 1, + sym_val_variable, + STATE(8872), 1, sym_comment, - STATE(10809), 1, - sym__immediate_decimal, - ACTIONS(14939), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [280691] = 7, + [279981] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15003), 1, + ACTIONS(8909), 1, + aux_sym_unquoted_token5, + STATE(8873), 1, + sym_comment, + ACTIONS(938), 2, anon_sym_SEMI, - ACTIONS(15005), 1, - anon_sym_LF, - ACTIONS(15764), 1, + anon_sym_PIPE, + ACTIONS(940), 2, ts_builtin_sym_end, - STATE(9155), 1, - aux_sym__block_body_repeat1, - STATE(9310), 1, - sym_comment, - STATE(10231), 1, - sym__terminator, - [280713] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(14997), 1, anon_sym_LF, - STATE(9311), 1, + [279999] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2356), 1, + aux_sym_unquoted_token2, + ACTIONS(15133), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(15163), 1, + anon_sym_DOT, + STATE(8874), 1, sym_comment, - ACTIONS(14995), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [280729] = 3, + ACTIONS(2358), 2, + anon_sym_in, + anon_sym_LPAREN2, + [280019] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9312), 1, + STATE(8875), 1, sym_comment, - ACTIONS(5241), 5, + ACTIONS(1263), 5, sym_cmd_identifier, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [280743] = 6, + [280033] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14937), 1, - anon_sym_DOT, - ACTIONS(14941), 1, - aux_sym__immediate_decimal_token4, - STATE(9313), 1, - sym_comment, - STATE(10887), 1, - sym__immediate_decimal, - ACTIONS(14939), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [280763] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(9314), 1, + ACTIONS(15166), 1, + anon_sym_PIPE, + ACTIONS(15168), 1, + anon_sym_if, + ACTIONS(15170), 1, + anon_sym_EQ_GT, + STATE(8876), 1, sym_comment, - ACTIONS(2437), 2, - anon_sym_RBRACK, - aux_sym_unquoted_token2, - ACTIONS(2439), 3, - anon_sym_LPAREN2, - anon_sym_DOT, - sym__entry_separator, - [280779] = 4, - ACTIONS(113), 1, + STATE(9768), 1, + aux_sym_match_pattern_repeat1, + STATE(10585), 1, + sym_match_guard, + [280055] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14983), 1, - anon_sym_LF, - STATE(9315), 1, + ACTIONS(1143), 1, + anon_sym_DASH, + ACTIONS(15172), 1, + anon_sym_LBRACK2, + STATE(8877), 1, sym_comment, - ACTIONS(14981), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [280795] = 4, + ACTIONS(1145), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [280073] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14997), 1, + ACTIONS(15176), 1, anon_sym_LF, - STATE(9316), 1, + STATE(8878), 1, sym_comment, - ACTIONS(14995), 4, + ACTIONS(15174), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [280811] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14937), 1, - anon_sym_DOT, - ACTIONS(14941), 1, - aux_sym__immediate_decimal_token4, - STATE(9317), 1, - sym_comment, - STATE(10802), 1, - sym__immediate_decimal, - ACTIONS(14939), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [280831] = 4, + [280089] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15032), 1, + ACTIONS(15180), 1, anon_sym_LF, - STATE(9318), 1, + STATE(8879), 1, sym_comment, - ACTIONS(15030), 4, + ACTIONS(15178), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [280847] = 4, + [280105] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9319), 1, + STATE(8880), 1, sym_comment, - ACTIONS(5237), 2, + ACTIONS(5243), 2, ts_builtin_sym_end, aux_sym_command_token1, - ACTIONS(5235), 3, + ACTIONS(5241), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_PIPE, - [280863] = 4, + [280121] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9320), 1, + STATE(8881), 1, sym_comment, - ACTIONS(3868), 2, + ACTIONS(5247), 2, ts_builtin_sym_end, aux_sym_command_token1, - ACTIONS(3866), 3, + ACTIONS(5245), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_PIPE, - [280879] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14937), 1, - anon_sym_DOT, - ACTIONS(14941), 1, - aux_sym__immediate_decimal_token4, - STATE(9321), 1, - sym_comment, - STATE(11004), 1, - sym__immediate_decimal, - ACTIONS(14939), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [280899] = 4, + [280137] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14935), 1, + ACTIONS(15184), 1, anon_sym_LF, - STATE(9322), 1, + STATE(8882), 1, sym_comment, - ACTIONS(14933), 4, + ACTIONS(15182), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [280915] = 4, + [280153] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1414), 1, - anon_sym_DASH, - STATE(9323), 1, + ACTIONS(3086), 1, + anon_sym_DQUOTE, + ACTIONS(14415), 1, + aux_sym_path_token1, + STATE(3449), 1, + sym__str_double_quotes, + STATE(8883), 1, sym_comment, - ACTIONS(1416), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [280931] = 4, + ACTIONS(14413), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [280173] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(14451), 1, + aux_sym_path_token1, + ACTIONS(14645), 1, + anon_sym_DQUOTE, + STATE(6654), 1, + sym__str_double_quotes, + STATE(8884), 1, + sym_comment, + ACTIONS(14449), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [280193] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14983), 1, - anon_sym_LF, - STATE(9324), 1, + ACTIONS(1161), 1, + anon_sym_LBRACE, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + ACTIONS(3727), 1, + anon_sym_LPAREN2, + STATE(8885), 1, sym_comment, - ACTIONS(14981), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [280947] = 6, + ACTIONS(1159), 2, + sym_identifier, + anon_sym_DOLLAR, + [280213] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14937), 1, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(12513), 1, anon_sym_DOT, - ACTIONS(14941), 1, - aux_sym__immediate_decimal_token4, - STATE(9325), 1, - sym_comment, - STATE(11009), 1, - sym__immediate_decimal, - ACTIONS(14939), 2, + ACTIONS(14017), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [280967] = 3, + STATE(8886), 1, + sym_comment, + ACTIONS(3576), 2, + anon_sym_DOLLAR, + anon_sym_LBRACE, + [280233] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(9326), 1, - sym_comment, - ACTIONS(5229), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, + ACTIONS(14649), 1, + aux_sym_path_token1, + ACTIONS(15051), 1, anon_sym_DQUOTE, + STATE(4528), 1, + sym__str_double_quotes, + STATE(8887), 1, + sym_comment, + ACTIONS(14647), 2, sym__str_single_quotes, sym__str_back_ticks, - [280981] = 6, + [280253] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8209), 1, - sym__entry_separator, - ACTIONS(10409), 1, - anon_sym_DOT_DOT2, - ACTIONS(15766), 1, - anon_sym_RBRACK, - STATE(9327), 1, + STATE(8888), 1, sym_comment, - ACTIONS(10411), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [281001] = 3, + ACTIONS(2362), 2, + anon_sym_RBRACK, + aux_sym_unquoted_token2, + ACTIONS(2364), 3, + anon_sym_LPAREN2, + anon_sym_DOT, + sym__entry_separator, + [280269] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(9328), 1, + ACTIONS(938), 1, + anon_sym_DASH, + ACTIONS(8820), 1, + aux_sym_unquoted_token5, + STATE(8889), 1, sym_comment, - ACTIONS(15768), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [281015] = 6, + ACTIONS(940), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [280287] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14937), 1, + ACTIONS(15145), 1, anon_sym_DOT, - ACTIONS(14941), 1, + ACTIONS(15149), 1, aux_sym__immediate_decimal_token4, - STATE(9329), 1, + STATE(8890), 1, sym_comment, - STATE(10837), 1, + STATE(10326), 1, sym__immediate_decimal, - ACTIONS(14939), 2, + ACTIONS(15147), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - [281035] = 7, + [280307] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(15186), 1, + anon_sym_DOT_DOT2, + STATE(8891), 1, + sym_comment, + ACTIONS(3314), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(15188), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [280325] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5109), 1, + anon_sym_DASH, + STATE(8892), 1, + sym_comment, + ACTIONS(5111), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [280341] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, - anon_sym_LPAREN, - ACTIONS(14878), 1, - sym_unescaped_interpolated_content, - ACTIONS(15770), 1, - anon_sym_SQUOTE, - STATE(8867), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(9330), 1, + STATE(8893), 1, sym_comment, - STATE(10209), 1, - sym_expr_interpolated, - [281057] = 7, + ACTIONS(2402), 2, + anon_sym_RBRACK, + aux_sym_unquoted_token2, + ACTIONS(2404), 3, + anon_sym_LPAREN2, + anon_sym_DOT, + sym__entry_separator, + [280357] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, - anon_sym_LPAREN, - ACTIONS(14878), 1, - sym_unescaped_interpolated_content, - ACTIONS(15772), 1, - anon_sym_SQUOTE, - STATE(9331), 1, + ACTIONS(14316), 1, + anon_sym_LF, + STATE(8894), 1, sym_comment, - STATE(9339), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(10209), 1, - sym_expr_interpolated, - [281079] = 4, + ACTIONS(14314), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [280373] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14997), 1, + ACTIONS(14312), 1, anon_sym_LF, - STATE(9332), 1, + STATE(8895), 1, sym_comment, - ACTIONS(14995), 4, + ACTIONS(14310), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [281095] = 6, + [280389] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1844), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(3312), 1, + anon_sym_RBRACK, + ACTIONS(3314), 1, + sym__entry_separator, + ACTIONS(3316), 1, + anon_sym_LPAREN2, + ACTIONS(12748), 1, + anon_sym_DOT, + STATE(8896), 1, + sym_comment, + [280411] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14937), 1, + ACTIONS(15145), 1, anon_sym_DOT, - ACTIONS(14941), 1, + ACTIONS(15149), 1, aux_sym__immediate_decimal_token4, - STATE(9333), 1, + STATE(8897), 1, sym_comment, - STATE(11065), 1, + STATE(10653), 1, sym__immediate_decimal, - ACTIONS(14939), 2, + ACTIONS(15147), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [280431] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(15190), 1, + anon_sym_DOT_DOT2, + STATE(8898), 1, + sym_comment, + ACTIONS(3743), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(15192), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [280449] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(15151), 1, + anon_sym_DOT, + ACTIONS(15155), 1, + aux_sym__immediate_decimal_token4, + STATE(8899), 1, + sym_comment, + STATE(10525), 1, + sym__immediate_decimal, + ACTIONS(15153), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - [281115] = 4, + [280469] = 7, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14997), 1, + ACTIONS(14296), 1, + anon_sym_LPAREN, + ACTIONS(14298), 1, + sym_unescaped_interpolated_content, + ACTIONS(15194), 1, + anon_sym_SQUOTE, + STATE(8473), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(8900), 1, + sym_comment, + STATE(9819), 1, + sym_expr_interpolated, + [280491] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(14316), 1, anon_sym_LF, - STATE(9334), 1, + STATE(8901), 1, sym_comment, - ACTIONS(14995), 4, + ACTIONS(14314), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [281131] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1259), 1, - anon_sym_DASH, - ACTIONS(15774), 1, - anon_sym_LBRACK2, - STATE(9335), 1, - sym_comment, - ACTIONS(1261), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [281149] = 4, + [280507] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9336), 1, + STATE(8902), 1, sym_comment, - ACTIONS(5213), 2, + ACTIONS(1074), 2, ts_builtin_sym_end, aux_sym_command_token1, - ACTIONS(5211), 3, + ACTIONS(1072), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_PIPE, - [281165] = 6, - ACTIONS(3), 1, + [280523] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14937), 1, - anon_sym_DOT, - ACTIONS(14941), 1, - aux_sym__immediate_decimal_token4, - STATE(9337), 1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + ACTIONS(3841), 1, + anon_sym_LPAREN2, + STATE(8903), 1, sym_comment, - STATE(11259), 1, - sym__immediate_decimal, - ACTIONS(14939), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [281185] = 3, + ACTIONS(1129), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH, + [280541] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9338), 1, + STATE(8904), 1, sym_comment, - ACTIONS(1318), 5, + ACTIONS(5153), 5, sym_cmd_identifier, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [281199] = 7, + [280555] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, - anon_sym_LPAREN, - ACTIONS(14878), 1, - sym_unescaped_interpolated_content, - ACTIONS(15776), 1, - anon_sym_SQUOTE, - STATE(9291), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(9339), 1, + ACTIONS(1149), 1, + aux_sym_unquoted_token6, + ACTIONS(3783), 1, + anon_sym_LPAREN2, + STATE(8905), 1, sym_comment, - STATE(10209), 1, - sym_expr_interpolated, - [281221] = 4, - ACTIONS(113), 1, + ACTIONS(1089), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH, + [280573] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(9340), 1, + ACTIONS(2838), 1, + anon_sym_DQUOTE, + ACTIONS(14451), 1, + aux_sym_path_token1, + STATE(6654), 1, + sym__str_double_quotes, + STATE(8906), 1, sym_comment, - ACTIONS(5185), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(5183), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_PIPE, - [281237] = 6, + ACTIONS(14449), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [280593] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14937), 1, + ACTIONS(15145), 1, anon_sym_DOT, - ACTIONS(14941), 1, + ACTIONS(15149), 1, aux_sym__immediate_decimal_token4, - STATE(9341), 1, + STATE(8907), 1, sym_comment, - STATE(10763), 1, + STATE(10453), 1, sym__immediate_decimal, - ACTIONS(14939), 2, + ACTIONS(15147), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - [281257] = 4, + [280613] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1131), 1, + anon_sym_LBRACE, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + ACTIONS(3841), 1, + anon_sym_LPAREN2, + STATE(8908), 1, + sym_comment, + ACTIONS(1129), 2, + sym_identifier, + anon_sym_DOLLAR, + [280633] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + ACTIONS(1137), 1, + anon_sym_LBRACE, + ACTIONS(3841), 1, + anon_sym_LPAREN2, + STATE(8909), 1, + sym_comment, + ACTIONS(1135), 2, + sym_identifier, + anon_sym_DOLLAR, + [280653] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + ACTIONS(3841), 1, + anon_sym_LPAREN2, + STATE(8910), 1, + sym_comment, + ACTIONS(1135), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH, + [280671] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15028), 1, + ACTIONS(14312), 1, anon_sym_LF, - STATE(9342), 1, + STATE(8911), 1, sym_comment, - ACTIONS(15026), 4, + ACTIONS(14310), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [281273] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15778), 1, - anon_sym_DQUOTE, - ACTIONS(15782), 1, - aux_sym_path_token1, - STATE(5748), 1, - sym__str_double_quotes, - STATE(9343), 1, - sym_comment, - ACTIONS(15780), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [281293] = 4, + [280687] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5171), 1, + ACTIONS(4721), 1, anon_sym_DASH, - STATE(9344), 1, + ACTIONS(15196), 1, + anon_sym_EQ, + STATE(8912), 1, sym_comment, - ACTIONS(5173), 4, - sym_identifier, + ACTIONS(4725), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [281309] = 6, + [280705] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14937), 1, + ACTIONS(15145), 1, anon_sym_DOT, - ACTIONS(14941), 1, + ACTIONS(15149), 1, aux_sym__immediate_decimal_token4, - STATE(9345), 1, + STATE(8913), 1, sym_comment, - STATE(10821), 1, + STATE(10333), 1, sym__immediate_decimal, - ACTIONS(14939), 2, + ACTIONS(15147), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - [281329] = 5, + [280725] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15784), 1, - anon_sym_DOT_DOT2, - STATE(9346), 1, - sym_comment, - ACTIONS(1934), 2, + ACTIONS(15145), 1, anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(15786), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [281347] = 6, + ACTIONS(15149), 1, + aux_sym__immediate_decimal_token4, + STATE(8914), 1, + sym_comment, + STATE(10586), 1, + sym__immediate_decimal, + ACTIONS(15147), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [280745] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(936), 1, - sym_identifier, - ACTIONS(15788), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15790), 1, - aux_sym_unquoted_token2, - STATE(9347), 1, + ACTIONS(15145), 1, + anon_sym_DOT, + ACTIONS(15149), 1, + aux_sym__immediate_decimal_token4, + STATE(8915), 1, sym_comment, - ACTIONS(938), 2, - anon_sym_DOLLAR, - anon_sym_LPAREN2, - [281367] = 4, + STATE(10798), 1, + sym__immediate_decimal, + ACTIONS(15147), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [280765] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(9348), 1, - sym_comment, - ACTIONS(5241), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(5239), 3, + ACTIONS(6058), 1, anon_sym_SEMI, + ACTIONS(6060), 1, anon_sym_LF, - anon_sym_PIPE, - [281383] = 6, + STATE(2293), 1, + sym__terminator, + STATE(8916), 1, + sym_comment, + ACTIONS(6054), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [280785] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14937), 1, + ACTIONS(15145), 1, anon_sym_DOT, - ACTIONS(14941), 1, + ACTIONS(15149), 1, aux_sym__immediate_decimal_token4, - STATE(9349), 1, + STATE(8917), 1, sym_comment, - STATE(10872), 1, + STATE(10424), 1, sym__immediate_decimal, - ACTIONS(14939), 2, + ACTIONS(15147), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - [281403] = 7, + [280805] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2843), 1, - sym_identifier, - ACTIONS(2845), 1, - anon_sym_DOLLAR, - ACTIONS(2847), 1, - anon_sym_LPAREN2, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(13169), 1, + ACTIONS(15145), 1, anon_sym_DOT, - STATE(9350), 1, - sym_comment, - [281425] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15792), 1, - anon_sym_DQUOTE, - ACTIONS(15796), 1, - aux_sym_path_token1, - STATE(376), 1, - sym__str_double_quotes, - STATE(9351), 1, - sym_comment, - ACTIONS(15794), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [281445] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(9352), 1, + ACTIONS(15149), 1, + aux_sym__immediate_decimal_token4, + STATE(8918), 1, sym_comment, - ACTIONS(2547), 2, - anon_sym_RBRACK, - aux_sym_unquoted_token2, - ACTIONS(2549), 3, - anon_sym_LPAREN2, - anon_sym_DOT, - sym__entry_separator, - [281461] = 6, + STATE(10711), 1, + sym__immediate_decimal, + ACTIONS(15147), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [280825] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14937), 1, + ACTIONS(15145), 1, anon_sym_DOT, - ACTIONS(14941), 1, + ACTIONS(15149), 1, aux_sym__immediate_decimal_token4, - STATE(9353), 1, + STATE(8919), 1, sym_comment, - STATE(10944), 1, + STATE(10588), 1, sym__immediate_decimal, - ACTIONS(14939), 2, + ACTIONS(15147), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - [281481] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(14983), 1, - anon_sym_LF, - STATE(9354), 1, - sym_comment, - ACTIONS(14981), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [281497] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(9355), 1, - sym_comment, - ACTIONS(1160), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [281511] = 3, + [280845] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9356), 1, + STATE(8920), 1, sym_comment, - ACTIONS(1192), 5, + ACTIONS(1251), 5, sym_cmd_identifier, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [281525] = 6, + [280859] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14937), 1, + ACTIONS(15145), 1, anon_sym_DOT, - ACTIONS(14941), 1, + ACTIONS(15149), 1, aux_sym__immediate_decimal_token4, - STATE(9357), 1, + STATE(8921), 1, sym_comment, - STATE(11022), 1, + STATE(10510), 1, sym__immediate_decimal, - ACTIONS(14939), 2, + ACTIONS(15147), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - [281545] = 4, + [280879] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14969), 1, + ACTIONS(15200), 1, anon_sym_LF, - STATE(9358), 1, + STATE(8922), 1, sym_comment, - ACTIONS(14967), 4, + ACTIONS(15198), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [281561] = 4, - ACTIONS(113), 1, + [280895] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14983), 1, - anon_sym_LF, - STATE(9359), 1, + ACTIONS(15145), 1, + anon_sym_DOT, + ACTIONS(15149), 1, + aux_sym__immediate_decimal_token4, + STATE(8923), 1, sym_comment, - ACTIONS(14981), 4, - anon_sym_SEMI, - anon_sym_RPAREN, + STATE(10285), 1, + sym__immediate_decimal, + ACTIONS(15147), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [280915] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3650), 1, + aux_sym_unquoted_token2, + ACTIONS(13004), 1, + anon_sym_DOT, + STATE(8924), 1, + sym_comment, + ACTIONS(3646), 3, anon_sym_PIPE, - anon_sym_RBRACE, - [281577] = 5, + anon_sym_if, + anon_sym_EQ_GT, + [280933] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15800), 1, - anon_sym_LF, - ACTIONS(15802), 1, - anon_sym_else, - STATE(9360), 1, + ACTIONS(3312), 1, + anon_sym_RBRACE, + ACTIONS(3314), 1, + sym__entry_separator, + ACTIONS(15202), 1, + anon_sym_DOT_DOT2, + STATE(8925), 1, sym_comment, - ACTIONS(15798), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - [281595] = 6, + ACTIONS(15204), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [280953] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14937), 1, + ACTIONS(15145), 1, anon_sym_DOT, - ACTIONS(14941), 1, + ACTIONS(15149), 1, aux_sym__immediate_decimal_token4, - STATE(9361), 1, + STATE(8926), 1, sym_comment, - STATE(11132), 1, + STATE(10597), 1, sym__immediate_decimal, - ACTIONS(14939), 2, + ACTIONS(15147), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - [281615] = 4, + [280973] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15806), 1, - anon_sym_LF, - STATE(9362), 1, + STATE(8927), 1, sym_comment, - ACTIONS(15804), 4, + ACTIONS(3743), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(3741), 3, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LF, anon_sym_PIPE, - anon_sym_RBRACE, - [281631] = 5, + [280989] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2437), 1, - aux_sym_unquoted_token2, - ACTIONS(14856), 1, - aux_sym__immediate_decimal_token2, - STATE(9363), 1, + ACTIONS(15145), 1, + anon_sym_DOT, + ACTIONS(15149), 1, + aux_sym__immediate_decimal_token4, + STATE(8928), 1, sym_comment, - ACTIONS(2439), 3, - anon_sym_LBRACE, + STATE(10853), 1, + sym__immediate_decimal, + ACTIONS(15147), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [281009] = 7, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(3354), 1, + anon_sym_RBRACK, + ACTIONS(3356), 1, + sym__entry_separator, + ACTIONS(3358), 1, anon_sym_LPAREN2, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(12513), 1, anon_sym_DOT, - [281649] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1976), 1, - anon_sym_DQUOTE, - ACTIONS(15810), 1, - aux_sym_path_token1, - STATE(5387), 1, - sym__str_double_quotes, - STATE(9364), 1, + STATE(8929), 1, sym_comment, - ACTIONS(15808), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [281669] = 6, + [281031] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14937), 1, + ACTIONS(15145), 1, anon_sym_DOT, - ACTIONS(14941), 1, + ACTIONS(15149), 1, aux_sym__immediate_decimal_token4, - STATE(9365), 1, + STATE(8930), 1, sym_comment, - STATE(11370), 1, + STATE(10425), 1, sym__immediate_decimal, - ACTIONS(14939), 2, + ACTIONS(15147), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - [281689] = 4, + [281051] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14997), 1, + ACTIONS(14316), 1, anon_sym_LF, - STATE(9366), 1, + STATE(8931), 1, sym_comment, - ACTIONS(14995), 4, + ACTIONS(14314), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [281705] = 4, + [281067] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14909), 1, + ACTIONS(15208), 1, anon_sym_LF, - STATE(9367), 1, + STATE(8932), 1, sym_comment, - ACTIONS(14907), 4, + ACTIONS(15206), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [281721] = 6, - ACTIONS(113), 1, + [281083] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6538), 1, - anon_sym_SEMI, - ACTIONS(6540), 1, - anon_sym_LF, - STATE(2652), 1, - sym__terminator, - STATE(9368), 1, + ACTIONS(2362), 1, + aux_sym_unquoted_token2, + ACTIONS(15210), 1, + aux_sym__immediate_decimal_token2, + STATE(8933), 1, sym_comment, - ACTIONS(15812), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [281741] = 6, + ACTIONS(2364), 3, + anon_sym_in, + anon_sym_LPAREN2, + anon_sym_DOT, + [281101] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14937), 1, + ACTIONS(15145), 1, anon_sym_DOT, - ACTIONS(14941), 1, + ACTIONS(15149), 1, aux_sym__immediate_decimal_token4, - STATE(9369), 1, + STATE(8934), 1, sym_comment, - STATE(10805), 1, + STATE(10626), 1, sym__immediate_decimal, - ACTIONS(14939), 2, + ACTIONS(15147), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - [281761] = 3, + [281121] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(9370), 1, - sym_comment, - ACTIONS(3951), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [281775] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(15032), 1, - anon_sym_LF, - STATE(9371), 1, + ACTIONS(15145), 1, + anon_sym_DOT, + ACTIONS(15149), 1, + aux_sym__immediate_decimal_token4, + STATE(8935), 1, sym_comment, - ACTIONS(15030), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [281791] = 4, + STATE(10786), 1, + sym__immediate_decimal, + ACTIONS(15147), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [281141] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14893), 1, + ACTIONS(14304), 1, anon_sym_LF, - STATE(9372), 1, + STATE(8936), 1, sym_comment, - ACTIONS(14891), 4, + ACTIONS(14302), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [281807] = 6, + [281157] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14937), 1, + ACTIONS(15145), 1, anon_sym_DOT, - ACTIONS(14941), 1, + ACTIONS(15149), 1, aux_sym__immediate_decimal_token4, - STATE(9373), 1, + STATE(8937), 1, sym_comment, - STATE(10750), 1, + STATE(10303), 1, sym__immediate_decimal, - ACTIONS(14939), 2, + ACTIONS(15147), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - [281827] = 4, + [281177] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14884), 1, + ACTIONS(14308), 1, anon_sym_LF, - STATE(9374), 1, + STATE(8938), 1, sym_comment, - ACTIONS(14882), 4, + ACTIONS(14306), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [281843] = 4, + [281193] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15028), 1, + ACTIONS(14312), 1, anon_sym_LF, - STATE(9375), 1, + STATE(8939), 1, sym_comment, - ACTIONS(15026), 4, + ACTIONS(14310), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [281859] = 6, + [281209] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14937), 1, + ACTIONS(15145), 1, anon_sym_DOT, - ACTIONS(14941), 1, + ACTIONS(15149), 1, aux_sym__immediate_decimal_token4, - STATE(9376), 1, + STATE(8940), 1, sym_comment, - STATE(10985), 1, + STATE(10401), 1, sym__immediate_decimal, - ACTIONS(14939), 2, + ACTIONS(15147), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - [281879] = 4, + [281229] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14983), 1, + ACTIONS(14316), 1, anon_sym_LF, - STATE(9377), 1, + STATE(8941), 1, sym_comment, - ACTIONS(14981), 4, + ACTIONS(14314), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [281895] = 4, + [281245] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(15145), 1, + anon_sym_DOT, + ACTIONS(15149), 1, + aux_sym__immediate_decimal_token4, + STATE(8942), 1, + sym_comment, + STATE(10503), 1, + sym__immediate_decimal, + ACTIONS(15147), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [281265] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(15145), 1, + anon_sym_DOT, + ACTIONS(15149), 1, + aux_sym__immediate_decimal_token4, + STATE(8943), 1, + sym_comment, + STATE(10611), 1, + sym__immediate_decimal, + ACTIONS(15147), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [281285] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(15145), 1, + anon_sym_DOT, + ACTIONS(15149), 1, + aux_sym__immediate_decimal_token4, + STATE(8944), 1, + sym_comment, + STATE(10736), 1, + sym__immediate_decimal, + ACTIONS(15147), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [281305] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1109), 1, + ACTIONS(5151), 1, anon_sym_DASH, - STATE(9378), 1, + STATE(8945), 1, sym_comment, - ACTIONS(1111), 4, + ACTIONS(5153), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_LBRACE, + [281321] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(15145), 1, anon_sym_DOT, - [281911] = 6, + ACTIONS(15149), 1, + aux_sym__immediate_decimal_token4, + STATE(8946), 1, + sym_comment, + STATE(10827), 1, + sym__immediate_decimal, + ACTIONS(15147), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [281341] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14937), 1, + ACTIONS(15145), 1, anon_sym_DOT, - ACTIONS(14941), 1, + ACTIONS(15149), 1, aux_sym__immediate_decimal_token4, - STATE(9379), 1, + STATE(8947), 1, sym_comment, - STATE(11149), 1, + STATE(10290), 1, sym__immediate_decimal, - ACTIONS(14939), 2, + ACTIONS(15147), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - [281931] = 4, + [281361] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15032), 1, - anon_sym_LF, - STATE(9380), 1, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + ACTIONS(3727), 1, + anon_sym_LPAREN2, + ACTIONS(15212), 1, + aux_sym_command_token1, + STATE(8948), 1, sym_comment, - ACTIONS(15030), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [281947] = 6, + ACTIONS(3725), 2, + anon_sym_RBRACK, + sym__entry_separator, + [281381] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14937), 1, + ACTIONS(15145), 1, anon_sym_DOT, - ACTIONS(14941), 1, + ACTIONS(15149), 1, aux_sym__immediate_decimal_token4, - STATE(9381), 1, + STATE(8949), 1, sym_comment, - STATE(11265), 1, + STATE(10338), 1, sym__immediate_decimal, - ACTIONS(14939), 2, + ACTIONS(15147), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - [281967] = 4, + [281401] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15028), 1, - anon_sym_LF, - STATE(9382), 1, + ACTIONS(3757), 1, + anon_sym_RBRACK, + ACTIONS(3759), 1, + sym__entry_separator, + ACTIONS(9955), 1, + anon_sym_DOT_DOT2, + STATE(8950), 1, sym_comment, - ACTIONS(15026), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [281983] = 6, + ACTIONS(9957), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [281421] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14937), 1, + ACTIONS(15145), 1, anon_sym_DOT, - ACTIONS(14941), 1, + ACTIONS(15149), 1, aux_sym__immediate_decimal_token4, - STATE(9383), 1, + STATE(8951), 1, sym_comment, - STATE(10772), 1, + STATE(10366), 1, sym__immediate_decimal, - ACTIONS(14939), 2, + ACTIONS(15147), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - [282003] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(15032), 1, - anon_sym_LF, - STATE(9384), 1, - sym_comment, - ACTIONS(15030), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [282019] = 6, + [281441] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14937), 1, + ACTIONS(15145), 1, anon_sym_DOT, - ACTIONS(14941), 1, + ACTIONS(15149), 1, aux_sym__immediate_decimal_token4, - STATE(9385), 1, + STATE(8952), 1, sym_comment, - STATE(10828), 1, + STATE(10397), 1, sym__immediate_decimal, - ACTIONS(14939), 2, + ACTIONS(15147), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - [282039] = 4, + [281461] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1418), 1, - anon_sym_DASH, - STATE(9386), 1, + ACTIONS(15145), 1, + anon_sym_DOT, + ACTIONS(15149), 1, + aux_sym__immediate_decimal_token4, + STATE(8953), 1, sym_comment, - ACTIONS(1420), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [282055] = 6, + STATE(10431), 1, + sym__immediate_decimal, + ACTIONS(15147), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [281481] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14937), 1, + ACTIONS(15145), 1, anon_sym_DOT, - ACTIONS(14941), 1, + ACTIONS(15149), 1, aux_sym__immediate_decimal_token4, - STATE(9387), 1, + STATE(8954), 1, sym_comment, - STATE(10878), 1, + STATE(10465), 1, sym__immediate_decimal, - ACTIONS(14939), 2, + ACTIONS(15147), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - [282075] = 7, - ACTIONS(113), 1, + [281501] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6538), 1, - anon_sym_SEMI, - ACTIONS(6540), 1, - anon_sym_LF, - ACTIONS(15693), 1, - anon_sym_RPAREN, - STATE(1799), 1, - aux_sym__block_body_repeat1, - STATE(2696), 1, - sym__terminator, - STATE(9388), 1, + ACTIONS(15145), 1, + anon_sym_DOT, + ACTIONS(15149), 1, + aux_sym__immediate_decimal_token4, + STATE(8955), 1, sym_comment, - [282097] = 6, + STATE(10497), 1, + sym__immediate_decimal, + ACTIONS(15147), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [281521] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14937), 1, + ACTIONS(15145), 1, anon_sym_DOT, - ACTIONS(14941), 1, + ACTIONS(15149), 1, aux_sym__immediate_decimal_token4, - STATE(9389), 1, + STATE(8956), 1, sym_comment, - STATE(10933), 1, + STATE(10539), 1, sym__immediate_decimal, - ACTIONS(14939), 2, + ACTIONS(15147), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - [282117] = 6, + [281541] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14937), 1, + ACTIONS(15145), 1, anon_sym_DOT, - ACTIONS(14941), 1, + ACTIONS(15149), 1, aux_sym__immediate_decimal_token4, - STATE(9390), 1, + STATE(8957), 1, sym_comment, - STATE(10980), 1, + STATE(10566), 1, sym__immediate_decimal, - ACTIONS(14939), 2, + ACTIONS(15147), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - [282137] = 6, + [281561] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14937), 1, + ACTIONS(15145), 1, anon_sym_DOT, - ACTIONS(14941), 1, + ACTIONS(15149), 1, aux_sym__immediate_decimal_token4, - STATE(9391), 1, + STATE(8958), 1, sym_comment, - STATE(11032), 1, + STATE(10591), 1, sym__immediate_decimal, - ACTIONS(14939), 2, + ACTIONS(15147), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - [282157] = 6, + [281581] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14937), 1, + ACTIONS(15145), 1, anon_sym_DOT, - ACTIONS(14941), 1, + ACTIONS(15149), 1, aux_sym__immediate_decimal_token4, - STATE(9392), 1, + STATE(8959), 1, sym_comment, - STATE(11052), 1, + STATE(10610), 1, sym__immediate_decimal, - ACTIONS(14939), 2, + ACTIONS(15147), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - [282177] = 6, + [281601] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14937), 1, + ACTIONS(15145), 1, anon_sym_DOT, - ACTIONS(14941), 1, + ACTIONS(15149), 1, aux_sym__immediate_decimal_token4, - STATE(9393), 1, + STATE(8960), 1, sym_comment, - STATE(11085), 1, + STATE(10631), 1, sym__immediate_decimal, - ACTIONS(14939), 2, + ACTIONS(15147), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - [282197] = 6, + [281621] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14937), 1, + ACTIONS(15145), 1, anon_sym_DOT, - ACTIONS(14941), 1, + ACTIONS(15149), 1, aux_sym__immediate_decimal_token4, - STATE(9394), 1, + STATE(8961), 1, sym_comment, - STATE(11107), 1, + STATE(10645), 1, sym__immediate_decimal, - ACTIONS(14939), 2, + ACTIONS(15147), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - [282217] = 6, + [281641] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14937), 1, + ACTIONS(15145), 1, anon_sym_DOT, - ACTIONS(14941), 1, + ACTIONS(15149), 1, aux_sym__immediate_decimal_token4, - STATE(9395), 1, + STATE(8962), 1, sym_comment, - STATE(11119), 1, + STATE(10657), 1, sym__immediate_decimal, - ACTIONS(14939), 2, + ACTIONS(15147), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - [282237] = 6, + [281661] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14937), 1, + ACTIONS(15145), 1, anon_sym_DOT, - ACTIONS(14941), 1, + ACTIONS(15149), 1, aux_sym__immediate_decimal_token4, - STATE(9396), 1, + STATE(8963), 1, sym_comment, - STATE(11136), 1, + STATE(10669), 1, sym__immediate_decimal, - ACTIONS(14939), 2, + ACTIONS(15147), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - [282257] = 6, + [281681] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14937), 1, + ACTIONS(15145), 1, anon_sym_DOT, - ACTIONS(14941), 1, + ACTIONS(15149), 1, aux_sym__immediate_decimal_token4, - STATE(9397), 1, + STATE(8964), 1, sym_comment, - STATE(11148), 1, + STATE(10685), 1, sym__immediate_decimal, - ACTIONS(14939), 2, + ACTIONS(15147), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - [282277] = 6, + [281701] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14937), 1, + ACTIONS(15145), 1, anon_sym_DOT, - ACTIONS(14941), 1, + ACTIONS(15149), 1, aux_sym__immediate_decimal_token4, - STATE(9398), 1, + STATE(8965), 1, sym_comment, - STATE(11162), 1, + STATE(10696), 1, sym__immediate_decimal, - ACTIONS(14939), 2, + ACTIONS(15147), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - [282297] = 4, + [281721] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15028), 1, + ACTIONS(14312), 1, anon_sym_LF, - STATE(9399), 1, + STATE(8966), 1, sym_comment, - ACTIONS(15026), 4, + ACTIONS(14310), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [282313] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6750), 1, - anon_sym_DASH, - STATE(9400), 1, - sym_comment, - ACTIONS(6752), 4, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_DASH_DASH, - anon_sym_in, - [282329] = 4, + [281737] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15032), 1, + ACTIONS(14316), 1, anon_sym_LF, - STATE(9401), 1, + STATE(8967), 1, sym_comment, - ACTIONS(15030), 4, + ACTIONS(14314), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [282345] = 4, + [281753] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14893), 1, + ACTIONS(14304), 1, anon_sym_LF, - STATE(9402), 1, + STATE(8968), 1, sym_comment, - ACTIONS(14891), 4, + ACTIONS(14302), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [282361] = 4, + [281769] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(15214), 1, + anon_sym_DOT, + STATE(8969), 1, + sym_comment, + STATE(8976), 1, + sym_path, + STATE(9890), 1, + sym_cell_path, + ACTIONS(7946), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [281789] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(12513), 1, + anon_sym_DOT, + ACTIONS(15216), 1, + aux_sym__immediate_decimal_token1, + STATE(8970), 1, + sym_comment, + ACTIONS(3576), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [281809] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(15214), 1, + anon_sym_DOT, + STATE(8971), 1, + sym_comment, + STATE(8976), 1, + sym_path, + STATE(9805), 1, + sym_cell_path, + ACTIONS(7820), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [281829] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(15214), 1, + anon_sym_DOT, + STATE(5205), 1, + sym_cell_path, + STATE(8972), 1, + sym_comment, + STATE(8976), 1, + sym_path, + ACTIONS(1099), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [281849] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(15214), 1, + anon_sym_DOT, + STATE(5133), 1, + sym_cell_path, + STATE(8973), 1, + sym_comment, + STATE(8976), 1, + sym_path, + ACTIONS(1103), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [281869] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14884), 1, + ACTIONS(15220), 1, anon_sym_LF, - STATE(9403), 1, + ACTIONS(15222), 1, + anon_sym_catch, + STATE(8974), 1, sym_comment, - ACTIONS(14882), 4, + ACTIONS(15218), 3, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [282377] = 4, + [281887] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(15214), 1, + anon_sym_DOT, + STATE(4405), 1, + sym_cell_path, + STATE(8975), 1, + sym_comment, + STATE(8976), 1, + sym_path, + ACTIONS(1004), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [281907] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(15214), 1, + anon_sym_DOT, + STATE(4905), 1, + sym_path, + STATE(8976), 1, + sym_comment, + STATE(8977), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1012), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [281927] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(15214), 1, + anon_sym_DOT, + STATE(4905), 1, + sym_path, + STATE(8977), 1, + sym_comment, + STATE(8978), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1008), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [281947] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(15224), 1, + anon_sym_DOT, + STATE(4905), 1, + sym_path, + ACTIONS(987), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + STATE(8978), 2, + sym_comment, + aux_sym_cell_path_repeat1, + [281965] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(8979), 1, + sym_comment, + ACTIONS(1285), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [281979] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14997), 1, + ACTIONS(14308), 1, anon_sym_LF, - STATE(9404), 1, + STATE(8980), 1, sym_comment, - ACTIONS(14995), 4, + ACTIONS(14306), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [282393] = 5, + [281995] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15814), 1, + ACTIONS(15227), 1, anon_sym_DOT_DOT2, - STATE(9405), 1, + STATE(8981), 1, sym_comment, - ACTIONS(3951), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(15816), 2, + ACTIONS(3693), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(15229), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [282411] = 7, + [282013] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3984), 1, - anon_sym_COLON, - ACTIONS(15574), 1, - anon_sym_use, - ACTIONS(15576), 1, - anon_sym_list, - ACTIONS(15578), 1, - anon_sym_hide, - ACTIONS(15580), 1, - anon_sym_new, - STATE(9406), 1, + ACTIONS(15231), 1, + anon_sym_DOT_DOT2, + STATE(8982), 1, sym_comment, - [282433] = 3, + ACTIONS(3701), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(15233), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [282031] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(9407), 1, + ACTIONS(15235), 1, + anon_sym_DOT_DOT2, + STATE(8983), 1, + sym_comment, + ACTIONS(3713), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(15237), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [282049] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(15239), 1, + anon_sym_DOT_DOT2, + STATE(8984), 1, sym_comment, - ACTIONS(15818), 5, + ACTIONS(3743), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(15241), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [282067] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5725), 1, + anon_sym_DOLLAR, + ACTIONS(12254), 1, sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [282447] = 6, - ACTIONS(113), 1, + STATE(8064), 1, + sym__variable_name, + STATE(8258), 1, + sym__var, + STATE(8718), 1, + sym_val_variable, + STATE(8985), 1, + sym_comment, + [282089] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2843), 1, - anon_sym_RBRACE, - ACTIONS(2845), 1, - sym__entry_separator, - ACTIONS(15820), 1, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(12748), 1, + anon_sym_DOT, + STATE(8986), 1, + sym_comment, + ACTIONS(3314), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [282107] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10344), 1, anon_sym_DOT_DOT2, - STATE(9408), 1, + STATE(8987), 1, + sym_comment, + ACTIONS(7826), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(10346), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [282125] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10344), 1, + anon_sym_DOT_DOT2, + STATE(8988), 1, sym_comment, - ACTIONS(15822), 2, + ACTIONS(7828), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(10346), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [282467] = 4, + [282143] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14909), 1, + ACTIONS(14304), 1, anon_sym_LF, - STATE(9409), 1, + STATE(8989), 1, sym_comment, - ACTIONS(14907), 4, + ACTIONS(14302), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [282483] = 4, + [282159] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14947), 1, + ACTIONS(14308), 1, anon_sym_LF, - STATE(9410), 1, + STATE(8990), 1, sym_comment, - ACTIONS(14945), 4, + ACTIONS(14306), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [282499] = 3, - ACTIONS(3), 1, + [282175] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(9411), 1, + STATE(8991), 1, sym_comment, - ACTIONS(5233), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [282513] = 4, + ACTIONS(5003), 2, + ts_builtin_sym_end, + aux_sym_command_token1, + ACTIONS(5001), 3, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_PIPE, + [282191] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14947), 1, + ACTIONS(15245), 1, anon_sym_LF, - STATE(9412), 1, + STATE(8992), 1, sym_comment, - ACTIONS(14945), 4, + ACTIONS(15243), 3, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_RBRACE, - [282529] = 6, + [282206] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(15247), 1, + anon_sym_LBRACK, + ACTIONS(15249), 1, + anon_sym_RBRACK, + STATE(8993), 1, + sym_comment, + STATE(9222), 1, + aux_sym_val_table_repeat1, + STATE(10145), 1, + sym_val_list, + [282225] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(15251), 1, + anon_sym_DQUOTE, + STATE(8994), 1, + sym_comment, + STATE(9411), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(15253), 2, + sym__escaped_str_content, + sym_escape_sequence, + [282242] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(8995), 1, + sym_comment, + ACTIONS(14310), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14312), 2, + ts_builtin_sym_end, + anon_sym_LF, + [282257] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15824), 1, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(12513), 1, anon_sym_DOT, - STATE(9413), 1, + STATE(8996), 1, sym_comment, - STATE(9423), 1, - sym_path, - STATE(10285), 1, - sym_cell_path, - ACTIONS(8415), 2, + ACTIONS(3356), 2, anon_sym_PIPE, anon_sym_EQ_GT, - [282549] = 7, + [282274] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(15247), 1, + anon_sym_LBRACK, + ACTIONS(15255), 1, + anon_sym_RBRACK, + STATE(8997), 1, + sym_comment, + STATE(8998), 1, + aux_sym_val_table_repeat1, + STATE(10145), 1, + sym_val_list, + [282293] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(15247), 1, + anon_sym_LBRACK, + ACTIONS(15257), 1, + anon_sym_RBRACK, + STATE(8998), 1, + sym_comment, + STATE(9222), 1, + aux_sym_val_table_repeat1, + STATE(10145), 1, + sym_val_list, + [282312] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, - anon_sym_LPAREN, - ACTIONS(14878), 1, - sym_unescaped_interpolated_content, - ACTIONS(15826), 1, - anon_sym_SQUOTE, - STATE(9111), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(9414), 1, + ACTIONS(15259), 1, + anon_sym_DQUOTE, + STATE(8999), 1, sym_comment, - STATE(10209), 1, - sym_expr_interpolated, - [282571] = 6, + STATE(9411), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(15253), 2, + sym__escaped_str_content, + sym_escape_sequence, + [282329] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15824), 1, + ACTIONS(3650), 1, + aux_sym_unquoted_token2, + ACTIONS(13004), 1, anon_sym_DOT, - STATE(9415), 1, + STATE(9000), 1, sym_comment, - STATE(9423), 1, - sym_path, - STATE(10392), 1, - sym_cell_path, - ACTIONS(8462), 2, + ACTIONS(3646), 2, anon_sym_PIPE, anon_sym_EQ_GT, - [282591] = 4, + [282346] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2229), 1, + aux_sym_unquoted_token2, + STATE(9001), 1, + sym_comment, + ACTIONS(2231), 3, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT, + [282361] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14909), 1, + STATE(9002), 1, + sym_comment, + ACTIONS(14302), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14304), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(9416), 1, + [282376] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(9003), 1, sym_comment, - ACTIONS(14907), 4, + ACTIONS(14306), 2, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [282607] = 6, - ACTIONS(3), 1, + ACTIONS(14308), 2, + ts_builtin_sym_end, + anon_sym_LF, + [282391] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15824), 1, - anon_sym_DOT, - STATE(5531), 1, - sym_cell_path, - STATE(9417), 1, + STATE(9004), 1, sym_comment, - STATE(9423), 1, - sym_path, - ACTIONS(1150), 2, + ACTIONS(14302), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14304), 2, + ts_builtin_sym_end, + anon_sym_LF, + [282406] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(9005), 1, + sym_comment, + ACTIONS(14306), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14308), 2, + ts_builtin_sym_end, + anon_sym_LF, + [282421] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(9006), 1, + sym_comment, + ACTIONS(14302), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14304), 2, + ts_builtin_sym_end, + anon_sym_LF, + [282436] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(9007), 1, + sym_comment, + ACTIONS(14306), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14308), 2, + ts_builtin_sym_end, + anon_sym_LF, + [282451] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(9008), 1, + sym_comment, + ACTIONS(14302), 2, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ_GT, - [282627] = 6, + ACTIONS(14304), 2, + ts_builtin_sym_end, + anon_sym_LF, + [282466] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15824), 1, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(3773), 1, + anon_sym_LBRACE, + ACTIONS(3775), 1, + anon_sym_LPAREN2, + ACTIONS(13087), 1, anon_sym_DOT, - STATE(5492), 1, - sym_cell_path, - STATE(9418), 1, + STATE(9009), 1, sym_comment, - STATE(9423), 1, - sym_path, - ACTIONS(1181), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [282647] = 4, + [282485] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14947), 1, - anon_sym_LF, - STATE(9419), 1, + STATE(9010), 1, sym_comment, - ACTIONS(14945), 4, + ACTIONS(14306), 2, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [282663] = 4, + ACTIONS(14308), 2, + ts_builtin_sym_end, + anon_sym_LF, + [282500] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14909), 1, - anon_sym_LF, - STATE(9420), 1, + STATE(9011), 1, sym_comment, - ACTIONS(14907), 4, + ACTIONS(14302), 2, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [282679] = 3, + ACTIONS(14304), 2, + ts_builtin_sym_end, + anon_sym_LF, + [282515] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9421), 1, + STATE(9012), 1, sym_comment, - ACTIONS(15828), 5, + ACTIONS(15261), 4, sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [282693] = 6, - ACTIONS(3), 1, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [282528] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15824), 1, - anon_sym_DOT, - STATE(4924), 1, - sym_cell_path, - STATE(9422), 1, + STATE(9013), 1, sym_comment, - STATE(9423), 1, - sym_path, - ACTIONS(1012), 2, + ACTIONS(14306), 2, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ_GT, - [282713] = 6, - ACTIONS(3), 1, + ACTIONS(14308), 2, + ts_builtin_sym_end, + anon_sym_LF, + [282543] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15824), 1, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(3771), 1, + anon_sym_RBRACK, + ACTIONS(3773), 1, + sym__entry_separator, + ACTIONS(13087), 1, anon_sym_DOT, - STATE(5402), 1, - sym_path, - STATE(9423), 1, + STATE(9014), 1, sym_comment, - STATE(9424), 1, - aux_sym_cell_path_repeat1, - ACTIONS(989), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [282733] = 6, - ACTIONS(3), 1, + [282562] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15824), 1, - anon_sym_DOT, - STATE(5402), 1, - sym_path, - STATE(9424), 1, + STATE(9015), 1, sym_comment, - STATE(9425), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1008), 2, + ACTIONS(14302), 2, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ_GT, - [282753] = 5, - ACTIONS(3), 1, + ACTIONS(14304), 2, + ts_builtin_sym_end, + anon_sym_LF, + [282577] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15830), 1, - anon_sym_DOT, - STATE(5402), 1, - sym_path, - ACTIONS(1001), 2, + ACTIONS(15263), 1, + anon_sym_DQUOTE, + STATE(9016), 1, + sym_comment, + STATE(9019), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(15253), 2, + sym__escaped_str_content, + sym_escape_sequence, + [282594] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(9017), 1, + sym_comment, + ACTIONS(14306), 2, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ_GT, - STATE(9425), 2, + ACTIONS(14308), 2, + ts_builtin_sym_end, + anon_sym_LF, + [282609] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(9018), 1, sym_comment, - aux_sym_cell_path_repeat1, - [282771] = 6, + ACTIONS(14302), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14304), 2, + ts_builtin_sym_end, + anon_sym_LF, + [282624] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(936), 1, + ACTIONS(15265), 1, + anon_sym_DQUOTE, + STATE(9019), 1, + sym_comment, + STATE(9411), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(15253), 2, + sym__escaped_str_content, + sym_escape_sequence, + [282641] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(15247), 1, + anon_sym_LBRACK, + ACTIONS(15267), 1, anon_sym_RBRACK, - ACTIONS(15833), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15835), 1, - aux_sym_unquoted_token2, - STATE(9426), 1, + STATE(9020), 1, sym_comment, - ACTIONS(938), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [282791] = 4, + STATE(9023), 1, + aux_sym_val_table_repeat1, + STATE(10145), 1, + sym_val_list, + [282660] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14947), 1, - anon_sym_LF, - STATE(9427), 1, + STATE(9021), 1, sym_comment, - ACTIONS(14945), 4, + ACTIONS(14559), 2, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [282807] = 4, + ACTIONS(14561), 2, + ts_builtin_sym_end, + anon_sym_LF, + [282675] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14909), 1, - anon_sym_LF, - STATE(9428), 1, + STATE(9022), 1, sym_comment, - ACTIONS(14907), 4, + ACTIONS(14306), 2, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [282823] = 7, + ACTIONS(14308), 2, + ts_builtin_sym_end, + anon_sym_LF, + [282690] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10932), 1, - anon_sym_DOLLAR, - ACTIONS(15837), 1, - sym_identifier, - STATE(1743), 1, - sym__var, - STATE(2818), 1, - sym_val_variable, - STATE(2922), 1, - sym__variable_name, - STATE(9429), 1, + ACTIONS(15247), 1, + anon_sym_LBRACK, + ACTIONS(15269), 1, + anon_sym_RBRACK, + STATE(9023), 1, sym_comment, - [282845] = 5, - ACTIONS(3), 1, + STATE(9222), 1, + aux_sym_val_table_repeat1, + STATE(10145), 1, + sym_val_list, + [282709] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15839), 1, - anon_sym_DOT_DOT2, - STATE(9430), 1, + STATE(9024), 1, sym_comment, - ACTIONS(3951), 2, + ACTIONS(14302), 2, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(15841), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [282863] = 5, - ACTIONS(3), 1, + ACTIONS(14304), 2, + ts_builtin_sym_end, + anon_sym_LF, + [282724] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15843), 1, - anon_sym_DOT_DOT2, - STATE(9431), 1, + STATE(9025), 1, sym_comment, - ACTIONS(3966), 2, + ACTIONS(14306), 2, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(15845), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [282881] = 5, - ACTIONS(3), 1, + ACTIONS(14308), 2, + ts_builtin_sym_end, + anon_sym_LF, + [282739] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15847), 1, - anon_sym_DOT_DOT2, - STATE(9432), 1, + STATE(9026), 1, sym_comment, - ACTIONS(4045), 2, + ACTIONS(14302), 2, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(15849), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [282899] = 4, + ACTIONS(14304), 2, + ts_builtin_sym_end, + anon_sym_LF, + [282754] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9433), 1, - sym_comment, - ACTIONS(2547), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(2549), 3, - anon_sym_LPAREN2, - anon_sym_DOT, - sym__entry_separator, - [282915] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15851), 1, - anon_sym_DOT_DOT2, - STATE(9434), 1, + STATE(9027), 1, sym_comment, - ACTIONS(3868), 2, + ACTIONS(14306), 2, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(15853), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [282933] = 7, + ACTIONS(14308), 2, + ts_builtin_sym_end, + anon_sym_LF, + [282769] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, - anon_sym_LPAREN, - ACTIONS(14878), 1, - sym_unescaped_interpolated_content, - ACTIONS(15855), 1, - anon_sym_SQUOTE, - STATE(8868), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(9435), 1, + STATE(9028), 1, sym_comment, - STATE(10209), 1, - sym_expr_interpolated, - [282955] = 7, - ACTIONS(3), 1, + ACTIONS(14302), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14304), 2, + ts_builtin_sym_end, + anon_sym_LF, + [282784] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(6247), 1, - anon_sym_DOLLAR, - ACTIONS(12574), 1, - sym_identifier, - STATE(8508), 1, - sym__variable_name, - STATE(8729), 1, - sym__var, - STATE(8921), 1, - sym_val_variable, - STATE(9436), 1, + STATE(9029), 1, sym_comment, - [282977] = 4, + ACTIONS(14306), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14308), 2, + ts_builtin_sym_end, + anon_sym_LF, + [282799] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(9437), 1, - sym_comment, - ACTIONS(3505), 2, - sym_identifier, - aux_sym_unquoted_token2, - ACTIONS(3507), 3, - anon_sym_DOLLAR, + ACTIONS(3646), 1, + anon_sym_LBRACE, + ACTIONS(3648), 1, anon_sym_LPAREN2, + ACTIONS(3650), 1, + aux_sym_unquoted_token2, + ACTIONS(13004), 1, anon_sym_DOT, - [282993] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10874), 1, - anon_sym_DOT_DOT2, - STATE(9438), 1, + STATE(9030), 1, sym_comment, - ACTIONS(8394), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(10876), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [283011] = 5, - ACTIONS(3), 1, + [282818] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10874), 1, - anon_sym_DOT_DOT2, - STATE(9439), 1, + STATE(9031), 1, sym_comment, - ACTIONS(8396), 2, + ACTIONS(14302), 2, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(10876), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [283029] = 5, - ACTIONS(3), 1, + ACTIONS(14304), 2, + ts_builtin_sym_end, + anon_sym_LF, + [282833] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5075), 1, - anon_sym_DASH, - ACTIONS(15857), 1, - sym_long_flag_identifier, - STATE(9440), 1, + ACTIONS(3644), 1, + anon_sym_RBRACK, + ACTIONS(3646), 1, + sym__entry_separator, + ACTIONS(3650), 1, + aux_sym_unquoted_token2, + ACTIONS(13004), 1, + anon_sym_DOT, + STATE(9032), 1, sym_comment, - ACTIONS(5079), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [283047] = 4, + [282852] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14884), 1, - anon_sym_LF, - STATE(9441), 1, + STATE(9033), 1, sym_comment, - ACTIONS(14882), 4, + ACTIONS(14306), 2, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [283063] = 4, + ACTIONS(14308), 2, + ts_builtin_sym_end, + anon_sym_LF, + [282867] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9442), 1, + STATE(9034), 1, sym_comment, - ACTIONS(1196), 2, - ts_builtin_sym_end, - aux_sym_command_token1, - ACTIONS(1194), 3, + ACTIONS(14302), 2, anon_sym_SEMI, - anon_sym_LF, anon_sym_PIPE, - [283079] = 7, + ACTIONS(14304), 2, + ts_builtin_sym_end, + anon_sym_LF, + [282882] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14876), 1, - anon_sym_LPAREN, - ACTIONS(14878), 1, - sym_unescaped_interpolated_content, - ACTIONS(15859), 1, - anon_sym_SQUOTE, - STATE(9177), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(9443), 1, + STATE(9035), 1, sym_comment, - STATE(10209), 1, - sym_expr_interpolated, - [283101] = 5, + ACTIONS(14306), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14308), 2, + ts_builtin_sym_end, + anon_sym_LF, + [282897] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15861), 1, - anon_sym_DQUOTE, - STATE(9444), 1, - sym_comment, - STATE(9704), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, - sym__escaped_str_content, - sym_escape_sequence, - [283118] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15865), 1, - anon_sym_LBRACK, - ACTIONS(15867), 1, - anon_sym_RBRACK, - STATE(9445), 1, + STATE(9036), 1, sym_comment, - STATE(9491), 1, - aux_sym_val_table_repeat1, - STATE(10538), 1, - sym_val_list, - [283137] = 4, + ACTIONS(14302), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14304), 2, + ts_builtin_sym_end, + anon_sym_LF, + [282912] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9446), 1, + STATE(9037), 1, sym_comment, - ACTIONS(13065), 2, + ACTIONS(14306), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(13067), 2, + ACTIONS(14308), 2, ts_builtin_sym_end, anon_sym_LF, - [283152] = 4, + [282927] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9447), 1, + STATE(9038), 1, sym_comment, - ACTIONS(15548), 2, + ACTIONS(14318), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(15550), 2, + ACTIONS(14320), 2, ts_builtin_sym_end, anon_sym_LF, - [283167] = 5, + [282942] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15869), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15871), 1, - aux_sym_unquoted_token2, - STATE(9448), 1, + STATE(9039), 1, sym_comment, - ACTIONS(938), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [283184] = 5, - ACTIONS(3), 1, + ACTIONS(15271), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [282955] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3748), 1, - anon_sym_DASH, - ACTIONS(14131), 1, - aux_sym__immediate_decimal_token1, - STATE(9449), 1, + STATE(9040), 1, sym_comment, - ACTIONS(3750), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [283201] = 3, + ACTIONS(14322), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14324), 2, + ts_builtin_sym_end, + anon_sym_LF, + [282970] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9450), 1, + STATE(9041), 1, sym_comment, - ACTIONS(1280), 4, + ACTIONS(14318), 2, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - aux_sym_unquoted_token6, - [283214] = 3, - ACTIONS(3), 1, + ACTIONS(14320), 2, + ts_builtin_sym_end, + anon_sym_LF, + [282985] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(9451), 1, + STATE(9042), 1, sym_comment, - ACTIONS(15873), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [283227] = 5, - ACTIONS(3), 1, + ACTIONS(15159), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(15161), 2, + ts_builtin_sym_end, + anon_sym_LF, + [283000] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3868), 1, - anon_sym_LBRACE, - ACTIONS(15875), 1, - anon_sym_DOT_DOT2, - STATE(9452), 1, + STATE(9043), 1, sym_comment, - ACTIONS(15877), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [283244] = 5, + ACTIONS(14322), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14324), 2, + ts_builtin_sym_end, + anon_sym_LF, + [283015] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15879), 1, + ACTIONS(15273), 1, anon_sym_DQUOTE, - STATE(9453), 1, + STATE(9044), 1, sym_comment, - STATE(9457), 1, + STATE(9048), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [283261] = 4, + [283032] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15883), 1, - anon_sym_LF, - STATE(9454), 1, + STATE(9045), 1, sym_comment, - ACTIONS(15881), 3, + ACTIONS(14326), 2, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [283276] = 4, + anon_sym_PIPE, + ACTIONS(14328), 2, + ts_builtin_sym_end, + anon_sym_LF, + [283047] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(6873), 1, - anon_sym_LF, - STATE(9455), 1, + STATE(9046), 1, sym_comment, - ACTIONS(6681), 3, + ACTIONS(14318), 2, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [283291] = 4, + anon_sym_PIPE, + ACTIONS(14320), 2, + ts_builtin_sym_end, + anon_sym_LF, + [283062] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(6885), 1, - anon_sym_LF, - STATE(9456), 1, + STATE(9047), 1, sym_comment, - ACTIONS(6696), 3, + ACTIONS(14322), 2, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [283306] = 5, + anon_sym_PIPE, + ACTIONS(14324), 2, + ts_builtin_sym_end, + anon_sym_LF, + [283077] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15885), 1, + ACTIONS(15275), 1, anon_sym_DQUOTE, - STATE(9457), 1, + STATE(9048), 1, sym_comment, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [283323] = 6, + [283094] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(15887), 1, + ACTIONS(15277), 1, anon_sym_RBRACK, - STATE(9458), 1, + STATE(9049), 1, sym_comment, - STATE(9460), 1, + STATE(9098), 1, aux_sym_val_table_repeat1, - STATE(10538), 1, + STATE(10145), 1, sym_val_list, - [283342] = 4, + [283113] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1294), 1, - anon_sym_DASH, - STATE(9459), 1, + ACTIONS(15247), 1, + anon_sym_LBRACK, + ACTIONS(15279), 1, + anon_sym_RBRACK, + STATE(9050), 1, sym_comment, - ACTIONS(1296), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [283357] = 6, + STATE(9053), 1, + aux_sym_val_table_repeat1, + STATE(10145), 1, + sym_val_list, + [283132] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(9051), 1, + sym_comment, + ACTIONS(14318), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14320), 2, + ts_builtin_sym_end, + anon_sym_LF, + [283147] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(9052), 1, + sym_comment, + ACTIONS(14322), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14324), 2, + ts_builtin_sym_end, + anon_sym_LF, + [283162] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(15889), 1, + ACTIONS(15281), 1, anon_sym_RBRACK, - STATE(9460), 1, + STATE(9053), 1, sym_comment, - STATE(9479), 1, + STATE(9222), 1, aux_sym_val_table_repeat1, - STATE(10538), 1, + STATE(10145), 1, sym_val_list, - [283376] = 4, - ACTIONS(3), 1, + [283181] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1294), 1, - anon_sym_DASH, - STATE(9461), 1, + STATE(9054), 1, sym_comment, - ACTIONS(1296), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [283391] = 6, - ACTIONS(3), 1, + ACTIONS(14318), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14320), 2, + ts_builtin_sym_end, + anon_sym_LF, + [283196] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15891), 1, - anon_sym_LBRACK, - ACTIONS(15893), 1, - anon_sym_LPAREN, - STATE(9462), 1, + STATE(9055), 1, sym_comment, - STATE(10181), 1, - sym_parameter_parens, - STATE(10183), 1, - sym_parameter_bracks, - [283410] = 6, - ACTIONS(3), 1, + ACTIONS(14322), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14324), 2, + ts_builtin_sym_end, + anon_sym_LF, + [283211] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(3750), 1, - anon_sym_in, - ACTIONS(13169), 1, - anon_sym_DOT, - ACTIONS(15620), 1, - aux_sym__immediate_decimal_token1, - STATE(9463), 1, + STATE(9056), 1, sym_comment, - [283429] = 5, - ACTIONS(3), 1, + ACTIONS(14318), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14320), 2, + ts_builtin_sym_end, + anon_sym_LF, + [283226] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(13169), 1, - anon_sym_DOT, - STATE(9464), 1, + STATE(9057), 1, sym_comment, - ACTIONS(2845), 2, + ACTIONS(14322), 2, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ_GT, - [283446] = 4, - ACTIONS(3), 1, + ACTIONS(14324), 2, + ts_builtin_sym_end, + anon_sym_LF, + [283241] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2437), 1, - aux_sym_unquoted_token2, - STATE(9465), 1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + STATE(9058), 1, sym_comment, - ACTIONS(2439), 3, + ACTIONS(1135), 3, anon_sym_PIPE, + anon_sym_if, anon_sym_EQ_GT, - anon_sym_DOT, - [283461] = 6, - ACTIONS(3), 1, + [283256] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15895), 1, - anon_sym_LBRACK, - ACTIONS(15897), 1, - anon_sym_LPAREN, - STATE(2767), 1, - sym_parameter_parens, - STATE(2768), 1, - sym_parameter_bracks, - STATE(9466), 1, + ACTIONS(1089), 1, + anon_sym_RBRACK, + ACTIONS(1091), 1, + sym__entry_separator, + ACTIONS(1149), 1, + aux_sym_unquoted_token6, + ACTIONS(3783), 1, + anon_sym_LPAREN2, + STATE(9059), 1, sym_comment, - [283480] = 6, - ACTIONS(3), 1, + [283275] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13975), 1, - anon_sym_LBRACE, - ACTIONS(15899), 1, - anon_sym_COLON, - STATE(2859), 1, - sym_block, - STATE(9467), 1, + STATE(9060), 1, sym_comment, - STATE(10728), 1, - sym_returns, - [283499] = 6, - ACTIONS(3), 1, + ACTIONS(14318), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14320), 2, + ts_builtin_sym_end, + anon_sym_LF, + [283290] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13975), 1, - anon_sym_LBRACE, - ACTIONS(15899), 1, - anon_sym_COLON, - STATE(2882), 1, - sym_block, - STATE(9468), 1, + STATE(9061), 1, sym_comment, - STATE(10459), 1, - sym_returns, - [283518] = 3, + ACTIONS(14322), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14324), 2, + ts_builtin_sym_end, + anon_sym_LF, + [283305] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(9062), 1, + sym_comment, + ACTIONS(14318), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14320), 2, + ts_builtin_sym_end, + anon_sym_LF, + [283320] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(9063), 1, + sym_comment, + ACTIONS(14322), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14324), 2, + ts_builtin_sym_end, + anon_sym_LF, + [283335] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9469), 1, + STATE(9064), 1, sym_comment, - ACTIONS(15901), 4, + ACTIONS(15283), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [283531] = 4, + [283348] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2547), 1, + ACTIONS(2229), 1, aux_sym_unquoted_token2, - STATE(9470), 1, + STATE(9065), 1, sym_comment, - ACTIONS(2549), 3, + ACTIONS(2231), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT, - [283546] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(7748), 1, - anon_sym_LPAREN2, - ACTIONS(15903), 1, - anon_sym_RBRACK, - ACTIONS(15905), 1, - sym__entry_separator, - STATE(9471), 1, - sym_comment, - STATE(11066), 1, - sym__expr_parenthesized_immediate, - [283565] = 5, + [283363] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15907), 1, + ACTIONS(15285), 1, anon_sym_DQUOTE, - STATE(9472), 1, + STATE(9066), 1, sym_comment, - STATE(9475), 1, + STATE(9069), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [283582] = 6, + [283380] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15895), 1, - anon_sym_LBRACK, - ACTIONS(15897), 1, - anon_sym_LPAREN, - STATE(2640), 1, - sym_parameter_bracks, - STATE(2727), 1, - sym_parameter_parens, - STATE(9473), 1, + ACTIONS(3356), 1, + anon_sym_LBRACE, + ACTIONS(15287), 1, + anon_sym_DOT_DOT2, + STATE(9067), 1, sym_comment, - [283601] = 4, + ACTIONS(15289), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [283397] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3505), 1, - aux_sym_unquoted_token2, - STATE(9474), 1, - sym_comment, - ACTIONS(3507), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT, - [283616] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(15909), 1, - anon_sym_DQUOTE, - STATE(9475), 1, + ACTIONS(3757), 1, + anon_sym_DASH, + STATE(9068), 1, sym_comment, - STATE(9704), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, - sym__escaped_str_content, - sym_escape_sequence, - [283633] = 5, + ACTIONS(3759), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [283412] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15911), 1, + ACTIONS(15291), 1, anon_sym_DQUOTE, - STATE(9476), 1, + STATE(9069), 1, sym_comment, - STATE(9707), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [283650] = 4, + [283429] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15915), 1, + ACTIONS(15295), 1, anon_sym_LF, - STATE(9477), 1, + STATE(9070), 1, sym_comment, - ACTIONS(15913), 3, + ACTIONS(15293), 3, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [283665] = 6, + [283444] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(15917), 1, + ACTIONS(15297), 1, anon_sym_RBRACK, - STATE(9478), 1, + STATE(9071), 1, sym_comment, - STATE(9481), 1, + STATE(9073), 1, aux_sym_val_table_repeat1, - STATE(10538), 1, - sym_val_list, - [283684] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15919), 1, - anon_sym_LBRACK, - ACTIONS(15922), 1, - anon_sym_RBRACK, - STATE(10538), 1, + STATE(10145), 1, sym_val_list, - STATE(9479), 2, - sym_comment, - aux_sym_val_table_repeat1, - [283701] = 4, - ACTIONS(3), 1, + [283463] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1308), 1, - anon_sym_DASH, - STATE(9480), 1, + STATE(9072), 1, sym_comment, - ACTIONS(1310), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [283716] = 6, + ACTIONS(1155), 2, + anon_sym_RBRACK, + aux_sym_unquoted_token6, + ACTIONS(1157), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [283478] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(15924), 1, + ACTIONS(15299), 1, anon_sym_RBRACK, - STATE(9479), 1, - aux_sym_val_table_repeat1, - STATE(9481), 1, + STATE(9073), 1, sym_comment, - STATE(10538), 1, + STATE(9222), 1, + aux_sym_val_table_repeat1, + STATE(10145), 1, sym_val_list, - [283735] = 5, - ACTIONS(3), 1, + [283497] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7950), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(15926), 1, - anon_sym_DOT, - STATE(9482), 1, + STATE(9074), 1, sym_comment, - ACTIONS(2583), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [283752] = 4, - ACTIONS(3), 1, + ACTIONS(14318), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14320), 2, + ts_builtin_sym_end, + anon_sym_LF, + [283512] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1312), 1, - anon_sym_DASH, - STATE(9483), 1, + STATE(9075), 1, sym_comment, - ACTIONS(1314), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [283767] = 4, - ACTIONS(3), 1, + ACTIONS(14322), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14324), 2, + ts_builtin_sym_end, + anon_sym_LF, + [283527] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5199), 1, - anon_sym_DASH, - STATE(9484), 1, + STATE(9076), 1, sym_comment, - ACTIONS(5201), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [283782] = 4, - ACTIONS(3), 1, + ACTIONS(14318), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14320), 2, + ts_builtin_sym_end, + anon_sym_LF, + [283542] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5203), 1, - anon_sym_DASH, - STATE(9485), 1, + STATE(9077), 1, sym_comment, - ACTIONS(5205), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [283797] = 6, + ACTIONS(14322), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14324), 2, + ts_builtin_sym_end, + anon_sym_LF, + [283557] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2845), 1, - anon_sym_LBRACE, - ACTIONS(2847), 1, - anon_sym_LPAREN2, - ACTIONS(2851), 1, + ACTIONS(2362), 1, aux_sym_unquoted_token2, - ACTIONS(13169), 1, + STATE(9078), 1, + sym_comment, + ACTIONS(2364), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT, - STATE(9486), 1, + [283572] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(9079), 1, sym_comment, - [283816] = 4, + ACTIONS(14318), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14320), 2, + ts_builtin_sym_end, + anon_sym_LF, + [283587] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15930), 1, + STATE(9080), 1, + sym_comment, + ACTIONS(14322), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14324), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(9487), 1, + [283602] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(9081), 1, sym_comment, - ACTIONS(15928), 3, + ACTIONS(14318), 2, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [283831] = 4, + anon_sym_PIPE, + ACTIONS(14320), 2, + ts_builtin_sym_end, + anon_sym_LF, + [283617] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15934), 1, + STATE(9082), 1, + sym_comment, + ACTIONS(14322), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14324), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(9488), 1, + [283632] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(9083), 1, sym_comment, - ACTIONS(15932), 3, + ACTIONS(14318), 2, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [283846] = 6, + anon_sym_PIPE, + ACTIONS(14320), 2, + ts_builtin_sym_end, + anon_sym_LF, + [283647] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2402), 1, + aux_sym_unquoted_token2, + STATE(9084), 1, + sym_comment, + ACTIONS(2404), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT, + [283662] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7748), 1, - anon_sym_LPAREN2, - ACTIONS(15936), 1, - anon_sym_RBRACK, - ACTIONS(15938), 1, - sym__entry_separator, - STATE(9489), 1, + STATE(9085), 1, sym_comment, - STATE(11066), 1, - sym__expr_parenthesized_immediate, - [283865] = 5, + ACTIONS(14322), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14324), 2, + ts_builtin_sym_end, + anon_sym_LF, + [283677] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1290), 1, - anon_sym_LPAREN2, - ACTIONS(15655), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(9490), 1, + STATE(9086), 1, sym_comment, - ACTIONS(1243), 2, + ACTIONS(14567), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14569), 2, + ts_builtin_sym_end, + anon_sym_LF, + [283692] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5113), 1, + anon_sym_DASH, + STATE(9087), 1, + sym_comment, + ACTIONS(5115), 3, sym_identifier, anon_sym_DOLLAR, - [283882] = 6, + anon_sym_DASH_DASH, + [283707] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, - anon_sym_LBRACK, - ACTIONS(15940), 1, - anon_sym_RBRACK, - STATE(9479), 1, - aux_sym_val_table_repeat1, - STATE(9491), 1, + ACTIONS(5137), 1, + anon_sym_DASH, + STATE(9088), 1, sym_comment, - STATE(10538), 1, - sym_val_list, - [283901] = 3, + ACTIONS(5139), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [283722] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9492), 1, + STATE(9089), 1, sym_comment, - ACTIONS(15942), 4, + ACTIONS(15301), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [283914] = 5, + [283735] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2006), 1, + ACTIONS(15303), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(15305), 1, aux_sym_unquoted_token2, - ACTIONS(13456), 1, - anon_sym_DOT, - STATE(9493), 1, + STATE(9090), 1, sym_comment, - ACTIONS(3876), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [283931] = 5, + ACTIONS(922), 2, + anon_sym_in, + anon_sym_LPAREN2, + [283752] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(6318), 1, + ts_builtin_sym_end, + ACTIONS(14383), 1, + anon_sym_SEMI, + ACTIONS(14385), 1, + anon_sym_LF, + STATE(2485), 1, + sym__terminator, + STATE(9091), 1, + sym_comment, + [283771] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15944), 1, + ACTIONS(15307), 1, anon_sym_DQUOTE, - STATE(9494), 1, + STATE(9092), 1, sym_comment, - STATE(9495), 1, + STATE(9093), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [283948] = 5, + [283788] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15946), 1, + ACTIONS(15309), 1, anon_sym_DQUOTE, - STATE(9495), 1, + STATE(9093), 1, sym_comment, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [283965] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1186), 1, - anon_sym_DASH, - STATE(9496), 1, - sym_comment, - ACTIONS(1188), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [283980] = 6, + [283805] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(15948), 1, + ACTIONS(15311), 1, anon_sym_RBRACK, - STATE(9497), 1, + STATE(9094), 1, sym_comment, - STATE(9499), 1, + STATE(9095), 1, aux_sym_val_table_repeat1, - STATE(10538), 1, + STATE(10145), 1, sym_val_list, - [283999] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15950), 1, - anon_sym_LBRACE, - STATE(5084), 1, - sym_block, - STATE(5126), 1, - sym_val_closure, - STATE(9498), 1, - sym_comment, - STATE(9753), 1, - sym__blosure, - [284018] = 6, + [283824] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(15952), 1, + ACTIONS(15313), 1, anon_sym_RBRACK, - STATE(9479), 1, - aux_sym_val_table_repeat1, - STATE(9499), 1, + STATE(9095), 1, sym_comment, - STATE(10538), 1, + STATE(9222), 1, + aux_sym_val_table_repeat1, + STATE(10145), 1, sym_val_list, - [284037] = 4, + [283843] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15956), 1, - anon_sym_LF, - STATE(9500), 1, + STATE(9096), 1, sym_comment, - ACTIONS(15954), 3, + ACTIONS(14314), 2, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - [284052] = 4, + ACTIONS(14316), 2, + ts_builtin_sym_end, + anon_sym_LF, + [283858] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15960), 1, - anon_sym_LF, - STATE(9501), 1, + STATE(9097), 1, sym_comment, - ACTIONS(15958), 3, + ACTIONS(14326), 2, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - [284067] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4012), 1, - aux_sym_unquoted_token2, - ACTIONS(13520), 1, - anon_sym_DOT, - STATE(9502), 1, - sym_comment, - ACTIONS(4008), 2, anon_sym_PIPE, - anon_sym_EQ_GT, - [284084] = 4, + ACTIONS(14328), 2, + ts_builtin_sym_end, + anon_sym_LF, + [283873] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1332), 1, - anon_sym_DASH, - STATE(9503), 1, + ACTIONS(15247), 1, + anon_sym_LBRACK, + ACTIONS(15315), 1, + anon_sym_RBRACK, + STATE(9098), 1, sym_comment, - ACTIONS(1334), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [284099] = 4, + STATE(9222), 1, + aux_sym_val_table_repeat1, + STATE(10145), 1, + sym_val_list, + [283892] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1336), 1, + ACTIONS(4196), 1, anon_sym_DASH, - STATE(9504), 1, + STATE(9099), 1, sym_comment, - ACTIONS(1338), 3, + ACTIONS(4198), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [284114] = 6, + [283907] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2006), 1, + ACTIONS(2362), 1, aux_sym_unquoted_token2, - ACTIONS(3876), 1, + STATE(9100), 1, + sym_comment, + ACTIONS(2364), 3, anon_sym_LBRACE, - ACTIONS(3878), 1, anon_sym_LPAREN2, - ACTIONS(13456), 1, anon_sym_DOT, - STATE(9505), 1, - sym_comment, - [284133] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(8304), 1, - anon_sym_PIPE, - ACTIONS(15673), 1, - anon_sym_SEMI, - ACTIONS(15962), 1, - anon_sym_LF, - STATE(3909), 1, - aux_sym_pipe_element_repeat1, - STATE(9506), 1, - sym_comment, - [284152] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(8304), 1, - anon_sym_PIPE, - ACTIONS(15749), 1, - anon_sym_SEMI, - ACTIONS(15962), 1, - anon_sym_LF, - STATE(3913), 1, - aux_sym_pipe_element_repeat1, - STATE(9507), 1, - sym_comment, - [284171] = 3, + [283922] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9508), 1, + STATE(9101), 1, sym_comment, - ACTIONS(15964), 4, + ACTIONS(15317), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [284184] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(8304), 1, - anon_sym_PIPE, - ACTIONS(15642), 1, - anon_sym_SEMI, - ACTIONS(15962), 1, - anon_sym_LF, - STATE(3918), 1, - aux_sym_pipe_element_repeat1, - STATE(9509), 1, - sym_comment, - [284203] = 6, - ACTIONS(113), 1, + [283935] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2006), 1, + ACTIONS(15319), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(15321), 1, aux_sym_unquoted_token2, - ACTIONS(3874), 1, - anon_sym_RBRACK, - ACTIONS(3876), 1, - sym__entry_separator, - ACTIONS(13456), 1, - anon_sym_DOT, - STATE(9510), 1, + STATE(9102), 1, sym_comment, - [284222] = 5, + ACTIONS(922), 2, + anon_sym_LBRACE, + anon_sym_LPAREN2, + [283952] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15966), 1, + ACTIONS(15323), 1, anon_sym_DQUOTE, - STATE(9511), 1, + STATE(9103), 1, sym_comment, - STATE(9513), 1, + STATE(9105), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [284239] = 6, - ACTIONS(113), 1, + [283969] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7748), 1, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(3314), 1, + anon_sym_in, + ACTIONS(3316), 1, anon_sym_LPAREN2, - ACTIONS(15968), 1, - anon_sym_RBRACK, - ACTIONS(15970), 1, - sym__entry_separator, - STATE(9512), 1, + ACTIONS(12748), 1, + anon_sym_DOT, + STATE(9104), 1, sym_comment, - STATE(11066), 1, - sym__expr_parenthesized_immediate, - [284258] = 5, + [283988] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15972), 1, + ACTIONS(15325), 1, anon_sym_DQUOTE, - STATE(9513), 1, + STATE(9105), 1, sym_comment, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [284275] = 6, + [284005] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(15974), 1, + ACTIONS(15327), 1, anon_sym_RBRACK, - STATE(9514), 1, - sym_comment, - STATE(9516), 1, - aux_sym_val_table_repeat1, - STATE(10538), 1, - sym_val_list, - [284294] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(9515), 1, + STATE(9106), 1, sym_comment, - ACTIONS(15804), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(15806), 2, - ts_builtin_sym_end, - anon_sym_LF, - [284309] = 6, + STATE(9107), 1, + aux_sym_val_table_repeat1, + STATE(10145), 1, + sym_val_list, + [284024] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(15976), 1, + ACTIONS(15329), 1, anon_sym_RBRACK, - STATE(9479), 1, - aux_sym_val_table_repeat1, - STATE(9516), 1, + STATE(9107), 1, sym_comment, - STATE(10538), 1, + STATE(9222), 1, + aux_sym_val_table_repeat1, + STATE(10145), 1, sym_val_list, - [284328] = 6, + [284043] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15978), 1, - anon_sym_LBRACE, - STATE(5294), 1, - sym_block, - STATE(5296), 1, - sym_val_closure, - STATE(9517), 1, + ACTIONS(5213), 1, + anon_sym_DASH, + STATE(9108), 1, sym_comment, - STATE(9777), 1, - sym__blosure, - [284347] = 6, + ACTIONS(5215), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [284058] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4008), 1, + ACTIONS(13411), 1, anon_sym_LBRACE, - ACTIONS(4010), 1, - anon_sym_LPAREN2, - ACTIONS(4012), 1, - aux_sym_unquoted_token2, - ACTIONS(13520), 1, - anon_sym_DOT, - STATE(9518), 1, + ACTIONS(15331), 1, + anon_sym_COLON, + STATE(2401), 1, + sym_block, + STATE(9109), 1, sym_comment, - [284366] = 6, + STATE(10077), 1, + sym_returns, + [284077] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4006), 1, - anon_sym_RBRACK, - ACTIONS(4008), 1, - sym__entry_separator, - ACTIONS(4012), 1, - aux_sym_unquoted_token2, - ACTIONS(13520), 1, - anon_sym_DOT, - STATE(9519), 1, + STATE(9110), 1, sym_comment, - [284385] = 6, + ACTIONS(14310), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14312), 2, + ts_builtin_sym_end, + anon_sym_LF, + [284092] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, - anon_sym_LBRACK, - ACTIONS(15980), 1, - anon_sym_RBRACK, - STATE(9479), 1, - aux_sym_val_table_repeat1, - STATE(9520), 1, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(3312), 1, + sym_identifier, + ACTIONS(3314), 1, + anon_sym_DOLLAR, + ACTIONS(12748), 1, + anon_sym_DOT, + STATE(9111), 1, sym_comment, - STATE(10538), 1, - sym_val_list, - [284404] = 5, + [284111] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7884), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(15982), 1, - aux_sym__immediate_decimal_token1, - STATE(9521), 1, + ACTIONS(13411), 1, + anon_sym_LBRACE, + ACTIONS(15331), 1, + anon_sym_COLON, + STATE(2402), 1, + sym_block, + STATE(9112), 1, sym_comment, - ACTIONS(2439), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [284421] = 6, + STATE(10226), 1, + sym_returns, + [284130] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7748), 1, - anon_sym_LPAREN2, - ACTIONS(15984), 1, - anon_sym_RBRACK, - ACTIONS(15986), 1, - sym__entry_separator, - STATE(9522), 1, + ACTIONS(15333), 1, + anon_sym_LPAREN, + STATE(9113), 1, sym_comment, - STATE(11066), 1, - sym__expr_parenthesized_immediate, - [284440] = 6, + ACTIONS(15335), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [284145] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15988), 1, - anon_sym_use, - ACTIONS(15990), 1, - anon_sym_list, - ACTIONS(15992), 1, - anon_sym_hide, - ACTIONS(15994), 1, - anon_sym_new, - STATE(9523), 1, + ACTIONS(15337), 1, + anon_sym_LBRACK, + ACTIONS(15339), 1, + anon_sym_LPAREN, + STATE(9114), 1, sym_comment, - [284459] = 4, + STATE(9178), 1, + sym_parameter_parens, + STATE(9270), 1, + sym_parameter_bracks, + [284164] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9524), 1, - sym_comment, - ACTIONS(15040), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(15042), 2, - ts_builtin_sym_end, + ACTIONS(15343), 1, anon_sym_LF, - [284474] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(9525), 1, + STATE(9115), 1, sym_comment, - ACTIONS(15148), 2, + ACTIONS(15341), 3, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(15150), 2, - ts_builtin_sym_end, - anon_sym_LF, - [284489] = 4, + [284179] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - STATE(9526), 1, + ACTIONS(15347), 1, + anon_sym_LF, + STATE(9116), 1, sym_comment, - ACTIONS(1247), 3, + ACTIONS(15345), 3, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [284504] = 3, + [284194] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9527), 1, + STATE(9117), 1, sym_comment, - ACTIONS(15996), 4, + ACTIONS(15349), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [284517] = 5, + [284207] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1089), 1, + anon_sym_RBRACK, + ACTIONS(1091), 1, + sym__entry_separator, + ACTIONS(1149), 1, + aux_sym__unquoted_in_list_token7, + ACTIONS(3783), 1, + anon_sym_LPAREN2, + STATE(9118), 1, + sym_comment, + [284226] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15998), 1, + ACTIONS(15351), 1, anon_sym_DQUOTE, - STATE(9528), 1, + STATE(9119), 1, sym_comment, - STATE(9530), 1, + STATE(9122), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [284534] = 4, + [284243] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16002), 1, - anon_sym_LF, - STATE(9529), 1, + STATE(9120), 1, sym_comment, - ACTIONS(16000), 3, + ACTIONS(14330), 2, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - [284549] = 5, + ACTIONS(14332), 2, + ts_builtin_sym_end, + anon_sym_LF, + [284258] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1271), 1, + anon_sym_DASH, + STATE(9121), 1, + sym_comment, + ACTIONS(1273), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [284273] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16004), 1, + ACTIONS(15353), 1, anon_sym_DQUOTE, - STATE(9530), 1, + STATE(9122), 1, sym_comment, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [284566] = 4, + [284290] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9531), 1, + ACTIONS(15357), 1, + anon_sym_LF, + STATE(9123), 1, sym_comment, - ACTIONS(14991), 2, + ACTIONS(15355), 3, anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14993), 2, - ts_builtin_sym_end, - anon_sym_LF, - [284581] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [284305] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(15359), 1, + anon_sym_LPAREN, + STATE(9124), 1, + sym_comment, + ACTIONS(15361), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [284320] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(16006), 1, + ACTIONS(15363), 1, anon_sym_RBRACK, - STATE(9532), 1, + STATE(9125), 1, sym_comment, - STATE(9535), 1, + STATE(9127), 1, aux_sym_val_table_repeat1, - STATE(10538), 1, + STATE(10145), 1, sym_val_list, - [284600] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(16010), 1, - anon_sym_LF, - STATE(9533), 1, - sym_comment, - ACTIONS(16008), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - [284615] = 5, + [284339] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_DASH_DASH, - ACTIONS(9701), 1, - aux_sym_unquoted_token5, - STATE(9534), 1, + ACTIONS(5217), 1, + anon_sym_DASH, + STATE(9126), 1, sym_comment, - ACTIONS(959), 2, + ACTIONS(5219), 3, sym_identifier, - anon_sym_DASH, - [284632] = 6, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [284354] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(16012), 1, + ACTIONS(15365), 1, anon_sym_RBRACK, - STATE(9479), 1, - aux_sym_val_table_repeat1, - STATE(9535), 1, + STATE(9127), 1, sym_comment, - STATE(10538), 1, + STATE(9222), 1, + aux_sym_val_table_repeat1, + STATE(10145), 1, sym_val_list, - [284651] = 6, - ACTIONS(113), 1, + [284373] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15003), 1, - anon_sym_SEMI, - ACTIONS(15005), 1, - anon_sym_LF, - ACTIONS(16014), 1, - ts_builtin_sym_end, - STATE(2869), 1, - sym__terminator, - STATE(9536), 1, + ACTIONS(3356), 1, + anon_sym_EQ_GT, + ACTIONS(15367), 1, + anon_sym_DOT_DOT2, + STATE(9128), 1, sym_comment, - [284670] = 6, - ACTIONS(113), 1, + ACTIONS(15369), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [284390] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1158), 1, - anon_sym_RBRACK, - ACTIONS(1160), 1, - sym__entry_separator, - ACTIONS(1284), 1, - aux_sym_unquoted_token6, - ACTIONS(4895), 1, - anon_sym_LPAREN2, - STATE(9537), 1, + ACTIONS(1087), 1, + anon_sym_in, + ACTIONS(15371), 1, + anon_sym_DOT, + STATE(4994), 1, + sym_cell_path, + STATE(9129), 1, sym_comment, - [284689] = 6, + STATE(9649), 1, + sym_path, + [284409] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15950), 1, - anon_sym_LBRACE, - STATE(5084), 1, - sym_block, - STATE(5126), 1, - sym_val_closure, - STATE(9500), 1, - sym__blosure, - STATE(9538), 1, + ACTIONS(1059), 1, + anon_sym_in, + ACTIONS(15371), 1, + anon_sym_DOT, + STATE(5544), 1, + sym_cell_path, + STATE(9130), 1, sym_comment, - [284708] = 4, + STATE(9649), 1, + sym_path, + [284428] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9539), 1, + STATE(9131), 1, sym_comment, - ACTIONS(15116), 2, + ACTIONS(14326), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(15118), 2, + ACTIONS(14328), 2, ts_builtin_sym_end, anon_sym_LF, - [284723] = 4, + [284443] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1320), 1, + ACTIONS(1275), 1, anon_sym_DASH, - STATE(9540), 1, + STATE(9132), 1, sym_comment, - ACTIONS(1322), 3, + ACTIONS(1277), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [284738] = 4, + [284458] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1350), 1, + ACTIONS(5241), 1, anon_sym_DASH, - STATE(9541), 1, + STATE(9133), 1, sym_comment, - ACTIONS(1352), 3, + ACTIONS(5243), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [284753] = 4, - ACTIONS(113), 1, + [284473] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16018), 1, - anon_sym_LF, - STATE(9542), 1, + ACTIONS(1095), 1, + anon_sym_in, + ACTIONS(15371), 1, + anon_sym_DOT, + STATE(5034), 1, + sym_cell_path, + STATE(9134), 1, sym_comment, - ACTIONS(16016), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - [284768] = 3, + STATE(9649), 1, + sym_path, + [284492] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(9543), 1, + ACTIONS(5245), 1, + anon_sym_DASH, + STATE(9135), 1, sym_comment, - ACTIONS(16020), 4, + ACTIONS(5247), 3, sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [284507] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1053), 1, anon_sym_in, - anon_sym_nu, - anon_sym_env, - [284781] = 5, - ACTIONS(113), 1, + ACTIONS(15371), 1, + anon_sym_DOT, + STATE(5686), 1, + sym_cell_path, + STATE(9136), 1, + sym_comment, + STATE(9649), 1, + sym_path, + [284526] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16022), 1, - anon_sym_DQUOTE, - STATE(9544), 1, + ACTIONS(15337), 1, + anon_sym_LBRACK, + ACTIONS(15339), 1, + anon_sym_LPAREN, + STATE(9109), 1, + sym_parameter_parens, + STATE(9112), 1, + sym_parameter_bracks, + STATE(9137), 1, sym_comment, - STATE(9546), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, - sym__escaped_str_content, - sym_escape_sequence, - [284798] = 3, + [284545] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9545), 1, + STATE(9138), 1, sym_comment, - ACTIONS(16024), 4, + ACTIONS(15373), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [284811] = 5, + [284558] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16026), 1, + ACTIONS(15375), 1, anon_sym_DQUOTE, - STATE(9546), 1, + STATE(9139), 1, sym_comment, - STATE(9704), 1, + STATE(9141), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [284828] = 5, + [284575] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3951), 1, - anon_sym_LBRACE, - ACTIONS(16028), 1, - anon_sym_DOT_DOT2, - STATE(9547), 1, + ACTIONS(1099), 1, + anon_sym_in, + ACTIONS(15371), 1, + anon_sym_DOT, + STATE(5205), 1, + sym_cell_path, + STATE(9140), 1, sym_comment, - ACTIONS(16030), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [284845] = 5, + STATE(9649), 1, + sym_path, + [284594] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(15377), 1, + anon_sym_DQUOTE, + STATE(9141), 1, + sym_comment, + STATE(9411), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(15253), 2, + sym__escaped_str_content, + sym_escape_sequence, + [284611] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3966), 1, - anon_sym_LBRACE, - ACTIONS(16032), 1, - anon_sym_DOT_DOT2, - STATE(9548), 1, + ACTIONS(1103), 1, + anon_sym_in, + ACTIONS(15371), 1, + anon_sym_DOT, + STATE(5133), 1, + sym_cell_path, + STATE(9142), 1, sym_comment, - ACTIONS(16034), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [284862] = 6, + STATE(9649), 1, + sym_path, + [284630] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(16036), 1, + ACTIONS(15379), 1, anon_sym_RBRACK, - STATE(9549), 1, + STATE(9143), 1, sym_comment, - STATE(9550), 1, + STATE(9145), 1, aux_sym_val_table_repeat1, - STATE(10538), 1, + STATE(10145), 1, sym_val_list, - [284881] = 6, + [284649] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(2402), 1, + aux_sym_unquoted_token2, + STATE(9144), 1, + sym_comment, + ACTIONS(2404), 3, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT, + [284664] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(16038), 1, + ACTIONS(15381), 1, anon_sym_RBRACK, - STATE(9479), 1, - aux_sym_val_table_repeat1, - STATE(9550), 1, + STATE(9145), 1, sym_comment, - STATE(10538), 1, + STATE(9222), 1, + aux_sym_val_table_repeat1, + STATE(10145), 1, sym_val_list, - [284900] = 4, + [284683] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9551), 1, + STATE(9146), 1, sym_comment, - ACTIONS(15122), 2, + ACTIONS(14330), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(15124), 2, + ACTIONS(14332), 2, ts_builtin_sym_end, anon_sym_LF, - [284915] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(9552), 1, - sym_comment, - ACTIONS(16040), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [284928] = 6, + [284698] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15574), 1, - anon_sym_use, - ACTIONS(15576), 1, - anon_sym_list, - ACTIONS(15578), 1, - anon_sym_hide, - ACTIONS(15580), 1, - anon_sym_new, - STATE(9553), 1, + ACTIONS(15383), 1, + anon_sym_LBRACK, + ACTIONS(15385), 1, + anon_sym_LPAREN, + STATE(2281), 1, + sym_parameter_bracks, + STATE(2305), 1, + sym_parameter_parens, + STATE(9147), 1, sym_comment, - [284947] = 6, + [284717] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13975), 1, - anon_sym_LBRACE, - ACTIONS(15899), 1, - anon_sym_COLON, - STATE(2917), 1, - sym_block, - STATE(9554), 1, + ACTIONS(2229), 1, + aux_sym_unquoted_token2, + STATE(9148), 1, sym_comment, - STATE(10524), 1, - sym_returns, - [284966] = 5, - ACTIONS(3), 1, + ACTIONS(2231), 3, + anon_sym_in, + anon_sym_LPAREN2, + anon_sym_DOT, + [284732] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4018), 1, - anon_sym_LBRACE, - ACTIONS(10864), 1, - anon_sym_DOT_DOT2, - STATE(9555), 1, + STATE(9149), 1, sym_comment, - ACTIONS(10866), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [284983] = 5, + ACTIONS(14661), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14663), 2, + ts_builtin_sym_end, + anon_sym_LF, + [284747] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16042), 1, - anon_sym_DQUOTE, - STATE(9556), 1, + STATE(9150), 1, sym_comment, - STATE(9570), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, - sym__escaped_str_content, - sym_escape_sequence, - [285000] = 5, + ACTIONS(4829), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4831), 2, + ts_builtin_sym_end, + anon_sym_LF, + [284762] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1290), 1, - anon_sym_LPAREN2, - ACTIONS(10998), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(9557), 1, + STATE(9151), 1, sym_comment, - ACTIONS(1243), 2, - anon_sym_DOLLAR, - anon_sym_LBRACE, - [285017] = 3, + ACTIONS(14667), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14669), 2, + ts_builtin_sym_end, + anon_sym_LF, + [284777] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9558), 1, + STATE(9152), 1, sym_comment, - ACTIONS(16044), 4, + ACTIONS(15387), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [285030] = 5, + [284790] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(14383), 1, + anon_sym_SEMI, + ACTIONS(14385), 1, + anon_sym_LF, + ACTIONS(15389), 1, + ts_builtin_sym_end, + STATE(2448), 1, + sym__terminator, + STATE(9153), 1, + sym_comment, + [284809] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16046), 1, + ACTIONS(15391), 1, anon_sym_DQUOTE, - STATE(9559), 1, + STATE(9154), 1, sym_comment, - STATE(9562), 1, + STATE(9157), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [285047] = 5, + [284826] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4045), 1, - anon_sym_LBRACE, - ACTIONS(16048), 1, - anon_sym_DOT_DOT2, - STATE(9560), 1, + ACTIONS(9209), 1, + aux_sym_unquoted_token5, + STATE(9155), 1, sym_comment, - ACTIONS(16050), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [285064] = 6, - ACTIONS(3), 1, + ACTIONS(940), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [284841] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16052), 1, - anon_sym_LBRACK, - ACTIONS(16054), 1, - anon_sym_LPAREN, - STATE(2512), 1, - sym_parameter_bracks, - STATE(2638), 1, - sym_parameter_parens, - STATE(9561), 1, + STATE(9156), 1, sym_comment, - [285083] = 5, + ACTIONS(14661), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14663), 2, + ts_builtin_sym_end, + anon_sym_LF, + [284856] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16056), 1, + ACTIONS(15393), 1, anon_sym_DQUOTE, - STATE(9562), 1, + STATE(9157), 1, sym_comment, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [285100] = 6, + [284873] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(9158), 1, + sym_comment, + ACTIONS(1155), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token7, + ACTIONS(1157), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [284888] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(16058), 1, + ACTIONS(15395), 1, anon_sym_RBRACK, - STATE(9563), 1, + STATE(9159), 1, sym_comment, - STATE(9564), 1, + STATE(9160), 1, aux_sym_val_table_repeat1, - STATE(10538), 1, + STATE(10145), 1, sym_val_list, - [285119] = 6, + [284907] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(16060), 1, + ACTIONS(15397), 1, anon_sym_RBRACK, - STATE(9479), 1, - aux_sym_val_table_repeat1, - STATE(9564), 1, + STATE(9160), 1, sym_comment, - STATE(10538), 1, + STATE(9222), 1, + aux_sym_val_table_repeat1, + STATE(10145), 1, sym_val_list, - [285138] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13975), 1, - anon_sym_LBRACE, - ACTIONS(15899), 1, - anon_sym_COLON, - STATE(2918), 1, - sym_block, - STATE(9565), 1, - sym_comment, - STATE(10535), 1, - sym_returns, - [285157] = 6, - ACTIONS(3), 1, + [284926] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15891), 1, - anon_sym_LBRACK, - ACTIONS(15893), 1, - anon_sym_LPAREN, - STATE(9467), 1, - sym_parameter_parens, - STATE(9468), 1, - sym_parameter_bracks, - STATE(9566), 1, + STATE(9161), 1, sym_comment, - [285176] = 4, + ACTIONS(14314), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14316), 2, + ts_builtin_sym_end, + anon_sym_LF, + [284941] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2437), 1, - aux_sym_unquoted_token2, - STATE(9567), 1, - sym_comment, - ACTIONS(2439), 3, + ACTIONS(3356), 1, anon_sym_in, + ACTIONS(3358), 1, anon_sym_LPAREN2, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(12513), 1, anon_sym_DOT, - [285191] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - STATE(9568), 1, - sym_comment, - ACTIONS(1253), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [285206] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - STATE(9569), 1, - sym_comment, - ACTIONS(1273), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [285221] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(16062), 1, - anon_sym_DQUOTE, - STATE(9570), 1, + STATE(9162), 1, sym_comment, - STATE(9704), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, - sym__escaped_str_content, - sym_escape_sequence, - [285238] = 3, + [284960] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9571), 1, + STATE(9163), 1, sym_comment, - ACTIONS(16064), 4, + ACTIONS(15399), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [285251] = 5, + [284973] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(9164), 1, + sym_comment, + ACTIONS(14667), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14669), 2, + ts_builtin_sym_end, + anon_sym_LF, + [284988] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16066), 1, + ACTIONS(15401), 1, anon_sym_DQUOTE, - STATE(9572), 1, + STATE(9165), 1, sym_comment, - STATE(9574), 1, + STATE(9168), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [285268] = 4, + [285005] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9573), 1, + STATE(9166), 1, sym_comment, - ACTIONS(14911), 2, + ACTIONS(14326), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14913), 2, + ACTIONS(14328), 2, ts_builtin_sym_end, anon_sym_LF, - [285283] = 5, + [285020] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3354), 1, + sym_identifier, + ACTIONS(3356), 1, + anon_sym_DOLLAR, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(12513), 1, + anon_sym_DOT, + STATE(9167), 1, + sym_comment, + [285039] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16068), 1, + ACTIONS(15403), 1, anon_sym_DQUOTE, - STATE(9574), 1, + STATE(9168), 1, sym_comment, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [285300] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(3520), 1, - anon_sym_in, - ACTIONS(3522), 1, - anon_sym_LPAREN2, - ACTIONS(13319), 1, - anon_sym_DOT, - STATE(9575), 1, - sym_comment, - [285319] = 4, + [285056] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9576), 1, + STATE(9169), 1, sym_comment, - ACTIONS(14967), 2, + ACTIONS(14661), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14969), 2, + ACTIONS(14663), 2, ts_builtin_sym_end, anon_sym_LF, - [285334] = 6, + [285071] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(16070), 1, + ACTIONS(15405), 1, anon_sym_RBRACK, - STATE(9577), 1, + STATE(9170), 1, sym_comment, - STATE(9580), 1, + STATE(9172), 1, aux_sym_val_table_repeat1, - STATE(10538), 1, + STATE(10145), 1, sym_val_list, - [285353] = 6, + [285090] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(7265), 1, + anon_sym_LPAREN2, + ACTIONS(15407), 1, + anon_sym_RBRACK, + ACTIONS(15409), 1, + sym__entry_separator, + STATE(9171), 1, + sym_comment, + STATE(10658), 1, + sym__expr_parenthesized_immediate, + [285109] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16052), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(16054), 1, - anon_sym_LPAREN, - STATE(2519), 1, - sym_parameter_parens, - STATE(2520), 1, - sym_parameter_bracks, - STATE(9578), 1, + ACTIONS(15411), 1, + anon_sym_RBRACK, + STATE(9172), 1, + sym_comment, + STATE(9222), 1, + aux_sym_val_table_repeat1, + STATE(10145), 1, + sym_val_list, + [285128] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2362), 1, + aux_sym_unquoted_token2, + STATE(9173), 1, sym_comment, - [285372] = 4, + ACTIONS(2364), 3, + anon_sym_in, + anon_sym_LPAREN2, + anon_sym_DOT, + [285143] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9579), 1, + STATE(9174), 1, sym_comment, - ACTIONS(14911), 2, + ACTIONS(14579), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14913), 2, + ACTIONS(14581), 2, ts_builtin_sym_end, anon_sym_LF, - [285387] = 6, + [285158] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, - anon_sym_LBRACK, - ACTIONS(16072), 1, - anon_sym_RBRACK, - STATE(9479), 1, - aux_sym_val_table_repeat1, - STATE(9580), 1, - sym_comment, - STATE(10538), 1, - sym_val_list, - [285406] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(16076), 1, - anon_sym_LF, - STATE(9581), 1, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(12748), 1, + anon_sym_DOT, + STATE(9175), 1, sym_comment, - ACTIONS(16074), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [285421] = 4, + ACTIONS(3314), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [285175] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9582), 1, + STATE(9176), 1, sym_comment, - ACTIONS(14967), 2, + ACTIONS(14583), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14969), 2, + ACTIONS(14585), 2, ts_builtin_sym_end, anon_sym_LF, - [285436] = 4, + [285190] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9583), 1, + STATE(9177), 1, sym_comment, - ACTIONS(14911), 2, + ACTIONS(14667), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14913), 2, + ACTIONS(14669), 2, ts_builtin_sym_end, anon_sym_LF, - [285451] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13945), 1, - anon_sym_LBRACE, - ACTIONS(15899), 1, - anon_sym_COLON, - STATE(2679), 1, - sym_block, - STATE(9584), 1, - sym_comment, - STATE(10668), 1, - sym_returns, - [285470] = 6, + [285205] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13945), 1, + ACTIONS(13411), 1, anon_sym_LBRACE, - ACTIONS(15899), 1, + ACTIONS(15331), 1, anon_sym_COLON, - STATE(2680), 1, + STATE(2414), 1, sym_block, - STATE(9585), 1, + STATE(9178), 1, sym_comment, - STATE(10674), 1, + STATE(10064), 1, sym_returns, - [285489] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2547), 1, - aux_sym_unquoted_token2, - STATE(9586), 1, - sym_comment, - ACTIONS(2549), 3, - anon_sym_in, - anon_sym_LPAREN2, - anon_sym_DOT, - [285504] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15865), 1, - anon_sym_LBRACK, - ACTIONS(16078), 1, - anon_sym_RBRACK, - STATE(9587), 1, - sym_comment, - STATE(9617), 1, - aux_sym_val_table_repeat1, - STATE(10538), 1, - sym_val_list, - [285523] = 4, + [285224] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9588), 1, + STATE(9179), 1, sym_comment, - ACTIONS(14967), 2, + ACTIONS(14579), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14969), 2, + ACTIONS(14581), 2, ts_builtin_sym_end, anon_sym_LF, - [285538] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(3518), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_DOLLAR, - ACTIONS(13319), 1, - anon_sym_DOT, - STATE(9589), 1, - sym_comment, - [285557] = 3, + [285239] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9590), 1, + STATE(9180), 1, sym_comment, - ACTIONS(16080), 4, + ACTIONS(15413), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [285570] = 5, + [285252] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16082), 1, + ACTIONS(15415), 1, anon_sym_DQUOTE, - STATE(9591), 1, + STATE(9181), 1, sym_comment, - STATE(9594), 1, + STATE(9184), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [285587] = 4, + [285269] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9592), 1, + STATE(9182), 1, sym_comment, - ACTIONS(14911), 2, + ACTIONS(14583), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14913), 2, + ACTIONS(14585), 2, ts_builtin_sym_end, anon_sym_LF, - [285602] = 4, + [285284] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9593), 1, + STATE(9183), 1, sym_comment, - ACTIONS(14967), 2, + ACTIONS(4931), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14969), 2, + ACTIONS(4933), 2, ts_builtin_sym_end, anon_sym_LF, - [285617] = 5, + [285299] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16084), 1, + ACTIONS(15417), 1, anon_sym_DQUOTE, - STATE(9594), 1, + STATE(9184), 1, sym_comment, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [285634] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(9595), 1, - sym_comment, - ACTIONS(14911), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14913), 2, - ts_builtin_sym_end, - anon_sym_LF, - [285649] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(9596), 1, - sym_comment, - ACTIONS(14967), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14969), 2, - ts_builtin_sym_end, - anon_sym_LF, - [285664] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(9597), 1, - sym_comment, - ACTIONS(1280), 2, - anon_sym_RBRACK, - aux_sym_unquoted_token6, - ACTIONS(1282), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [285679] = 6, + [285316] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(16086), 1, + ACTIONS(15419), 1, anon_sym_RBRACK, - STATE(9598), 1, - sym_comment, - STATE(9600), 1, - aux_sym_val_table_repeat1, - STATE(10538), 1, - sym_val_list, - [285698] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(9599), 1, + STATE(9185), 1, sym_comment, - ACTIONS(14911), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14913), 2, - ts_builtin_sym_end, - anon_sym_LF, - [285713] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15865), 1, - anon_sym_LBRACK, - ACTIONS(16088), 1, - anon_sym_RBRACK, - STATE(9479), 1, + STATE(9187), 1, aux_sym_val_table_repeat1, - STATE(9600), 1, - sym_comment, - STATE(10538), 1, + STATE(10145), 1, sym_val_list, - [285732] = 4, + [285335] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3505), 1, + ACTIONS(2402), 1, aux_sym_unquoted_token2, - STATE(9601), 1, + STATE(9186), 1, sym_comment, - ACTIONS(3507), 3, + ACTIONS(2404), 3, anon_sym_in, anon_sym_LPAREN2, anon_sym_DOT, - [285747] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(9602), 1, - sym_comment, - ACTIONS(14967), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14969), 2, - ts_builtin_sym_end, - anon_sym_LF, - [285762] = 6, + [285350] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15950), 1, - anon_sym_LBRACE, - STATE(5084), 1, - sym_block, - STATE(5126), 1, - sym_val_closure, - STATE(8835), 1, - sym__blosure, - STATE(9603), 1, + ACTIONS(15247), 1, + anon_sym_LBRACK, + ACTIONS(15421), 1, + anon_sym_RBRACK, + STATE(9187), 1, sym_comment, - [285781] = 6, + STATE(9222), 1, + aux_sym_val_table_repeat1, + STATE(10145), 1, + sym_val_list, + [285369] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13945), 1, + ACTIONS(13411), 1, anon_sym_LBRACE, - ACTIONS(15899), 1, + ACTIONS(15331), 1, anon_sym_COLON, - STATE(2699), 1, + STATE(2400), 1, sym_block, - STATE(9604), 1, + STATE(9188), 1, sym_comment, - STATE(10716), 1, + STATE(10212), 1, sym_returns, - [285800] = 6, + [285388] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13945), 1, + ACTIONS(13411), 1, anon_sym_LBRACE, - ACTIONS(15899), 1, + ACTIONS(15331), 1, anon_sym_COLON, - STATE(2700), 1, + STATE(2407), 1, sym_block, - STATE(9605), 1, + STATE(9189), 1, sym_comment, - STATE(10718), 1, + STATE(9994), 1, sym_returns, - [285819] = 4, + [285407] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9606), 1, + STATE(9190), 1, sym_comment, - ACTIONS(14911), 2, + ACTIONS(14579), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14913), 2, + ACTIONS(14581), 2, ts_builtin_sym_end, anon_sym_LF, - [285834] = 4, + [285422] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9607), 1, + STATE(9191), 1, sym_comment, - ACTIONS(14967), 2, + ACTIONS(14583), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14969), 2, + ACTIONS(14585), 2, + ts_builtin_sym_end, + anon_sym_LF, + [285437] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(9192), 1, + sym_comment, + ACTIONS(14330), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14332), 2, ts_builtin_sym_end, anon_sym_LF, - [285849] = 3, + [285452] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9608), 1, + STATE(9193), 1, sym_comment, - ACTIONS(16090), 4, + ACTIONS(15423), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [285862] = 4, + [285465] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(3773), 1, + anon_sym_in, + ACTIONS(3775), 1, + anon_sym_LPAREN2, + ACTIONS(13087), 1, + anon_sym_DOT, + STATE(9194), 1, + sym_comment, + [285484] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(3771), 1, + sym_identifier, + ACTIONS(3773), 1, + anon_sym_DOLLAR, + ACTIONS(13087), 1, + anon_sym_DOT, + STATE(9195), 1, + sym_comment, + [285503] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9609), 1, + ACTIONS(15427), 1, + anon_sym_LF, + STATE(9196), 1, sym_comment, - ACTIONS(14911), 2, + ACTIONS(15425), 3, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(14913), 2, - ts_builtin_sym_end, + [285518] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(9197), 1, + sym_comment, + ACTIONS(15429), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [285531] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(15433), 1, anon_sym_LF, - [285877] = 5, + STATE(9198), 1, + sym_comment, + ACTIONS(15431), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + [285546] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16092), 1, + ACTIONS(15435), 1, anon_sym_DQUOTE, - STATE(9610), 1, + STATE(9199), 1, sym_comment, - STATE(9614), 1, + STATE(9203), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [285894] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13945), 1, - anon_sym_LBRACE, - ACTIONS(15899), 1, - anon_sym_COLON, - STATE(2705), 1, - sym_block, - STATE(9611), 1, - sym_comment, - STATE(10736), 1, - sym_returns, - [285913] = 6, - ACTIONS(3), 1, + [285563] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13945), 1, - anon_sym_LBRACE, - ACTIONS(15899), 1, - anon_sym_COLON, - STATE(2707), 1, - sym_block, - STATE(9612), 1, + ACTIONS(15437), 1, + anon_sym_DQUOTE, + STATE(9200), 1, sym_comment, - STATE(10737), 1, - sym_returns, - [285932] = 4, + STATE(9215), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(15253), 2, + sym__escaped_str_content, + sym_escape_sequence, + [285580] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9613), 1, + STATE(9201), 1, sym_comment, - ACTIONS(14967), 2, + ACTIONS(14579), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14969), 2, + ACTIONS(14581), 2, ts_builtin_sym_end, anon_sym_LF, - [285947] = 5, + [285595] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3743), 1, + anon_sym_LBRACE, + ACTIONS(15439), 1, + anon_sym_DOT_DOT2, + STATE(9202), 1, + sym_comment, + ACTIONS(15441), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [285612] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16094), 1, + ACTIONS(15443), 1, anon_sym_DQUOTE, - STATE(9614), 1, + STATE(9203), 1, sym_comment, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [285964] = 4, + [285629] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9615), 1, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + STATE(9204), 1, sym_comment, - ACTIONS(14911), 2, - anon_sym_SEMI, + ACTIONS(1159), 3, anon_sym_PIPE, - ACTIONS(14913), 2, - ts_builtin_sym_end, + anon_sym_if, + anon_sym_EQ_GT, + [285644] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(15447), 1, anon_sym_LF, - [285979] = 6, + STATE(9205), 1, + sym_comment, + ACTIONS(15445), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + [285659] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(16096), 1, + ACTIONS(15449), 1, anon_sym_RBRACK, - STATE(9616), 1, + STATE(9206), 1, sym_comment, - STATE(9618), 1, + STATE(9207), 1, aux_sym_val_table_repeat1, - STATE(10538), 1, + STATE(10145), 1, sym_val_list, - [285998] = 6, + [285678] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(16098), 1, + ACTIONS(15451), 1, anon_sym_RBRACK, - STATE(9479), 1, - aux_sym_val_table_repeat1, - STATE(9617), 1, + STATE(9207), 1, sym_comment, - STATE(10538), 1, - sym_val_list, - [286017] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15865), 1, - anon_sym_LBRACK, - ACTIONS(16100), 1, - anon_sym_RBRACK, - STATE(9479), 1, + STATE(9222), 1, aux_sym_val_table_repeat1, - STATE(9618), 1, - sym_comment, - STATE(10538), 1, + STATE(10145), 1, sym_val_list, - [286036] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(9619), 1, - sym_comment, - ACTIONS(14967), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14969), 2, - ts_builtin_sym_end, - anon_sym_LF, - [286051] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(9620), 1, - sym_comment, - ACTIONS(14911), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14913), 2, - ts_builtin_sym_end, - anon_sym_LF, - [286066] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(9621), 1, - sym_comment, - ACTIONS(14967), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14969), 2, - ts_builtin_sym_end, - anon_sym_LF, - [286081] = 4, + [285697] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9622), 1, + STATE(9208), 1, sym_comment, - ACTIONS(14911), 2, + ACTIONS(4947), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14913), 2, + ACTIONS(4949), 2, ts_builtin_sym_end, anon_sym_LF, - [286096] = 5, + [285712] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16102), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(16104), 1, - aux_sym_unquoted_token2, - STATE(9623), 1, - sym_comment, - ACTIONS(938), 2, + ACTIONS(3646), 1, anon_sym_in, + ACTIONS(3648), 1, anon_sym_LPAREN2, - [286113] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(9624), 1, - sym_comment, - ACTIONS(14967), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14969), 2, - ts_builtin_sym_end, - anon_sym_LF, - [286128] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(9625), 1, - sym_comment, - ACTIONS(14911), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14913), 2, - ts_builtin_sym_end, - anon_sym_LF, - [286143] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(9626), 1, - sym_comment, - ACTIONS(14967), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14969), 2, - ts_builtin_sym_end, - anon_sym_LF, - [286158] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(9627), 1, - sym_comment, - ACTIONS(14911), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14913), 2, - ts_builtin_sym_end, - anon_sym_LF, - [286173] = 6, + ACTIONS(3650), 1, + aux_sym_unquoted_token2, + ACTIONS(13004), 1, + anon_sym_DOT, + STATE(9209), 1, + sym_comment, + [285731] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13945), 1, - anon_sym_LBRACE, - ACTIONS(15899), 1, - anon_sym_COLON, - STATE(2735), 1, - sym_block, - STATE(9628), 1, + ACTIONS(3644), 1, + sym_identifier, + ACTIONS(3646), 1, + anon_sym_DOLLAR, + ACTIONS(3650), 1, + aux_sym_unquoted_token2, + ACTIONS(13004), 1, + anon_sym_DOT, + STATE(9210), 1, sym_comment, - STATE(10471), 1, - sym_returns, - [286192] = 3, + [285750] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9629), 1, + STATE(9211), 1, sym_comment, - ACTIONS(16106), 4, + ACTIONS(15453), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [286205] = 6, + [285763] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13945), 1, - anon_sym_LBRACE, - ACTIONS(15899), 1, - anon_sym_COLON, - STATE(2736), 1, - sym_block, - STATE(9630), 1, + STATE(9212), 1, sym_comment, - STATE(10472), 1, - sym_returns, - [286224] = 4, + ACTIONS(15455), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [285776] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9631), 1, + STATE(9213), 1, sym_comment, - ACTIONS(14967), 2, + ACTIONS(4951), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14969), 2, + ACTIONS(4953), 2, ts_builtin_sym_end, anon_sym_LF, - [286239] = 5, + [285791] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16108), 1, + ACTIONS(15457), 1, anon_sym_DQUOTE, - STATE(9632), 1, + STATE(9214), 1, sym_comment, - STATE(9633), 1, + STATE(9217), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [286256] = 5, + [285808] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16110), 1, + ACTIONS(15459), 1, anon_sym_DQUOTE, - STATE(9633), 1, + STATE(9215), 1, sym_comment, - STATE(9704), 1, + STATE(9411), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(15253), 2, + sym__escaped_str_content, + sym_escape_sequence, + [285825] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(7265), 1, + anon_sym_LPAREN2, + ACTIONS(15461), 1, + anon_sym_RBRACK, + ACTIONS(15463), 1, + sym__entry_separator, + STATE(9216), 1, + sym_comment, + STATE(10658), 1, + sym__expr_parenthesized_immediate, + [285844] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(15465), 1, + anon_sym_DQUOTE, + STATE(9217), 1, + sym_comment, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [286273] = 6, + [285861] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(14053), 1, + aux_sym__immediate_decimal_token1, + STATE(9218), 1, + sym_comment, + ACTIONS(4773), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [285876] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(16112), 1, + ACTIONS(15467), 1, anon_sym_RBRACK, - STATE(9634), 1, + STATE(9219), 1, sym_comment, - STATE(9635), 1, + STATE(9220), 1, aux_sym_val_table_repeat1, - STATE(10538), 1, + STATE(10145), 1, sym_val_list, - [286292] = 6, + [285895] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(16114), 1, + ACTIONS(15469), 1, anon_sym_RBRACK, - STATE(9479), 1, - aux_sym_val_table_repeat1, - STATE(9635), 1, + STATE(9220), 1, sym_comment, - STATE(10538), 1, + STATE(9222), 1, + aux_sym_val_table_repeat1, + STATE(10145), 1, sym_val_list, - [286311] = 4, + [285914] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9636), 1, + STATE(9221), 1, sym_comment, - ACTIONS(15074), 2, + ACTIONS(12541), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(15076), 2, + ACTIONS(12543), 2, ts_builtin_sym_end, anon_sym_LF, - [286326] = 4, - ACTIONS(113), 1, + [285929] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(9637), 1, + ACTIONS(15471), 1, + anon_sym_LBRACK, + ACTIONS(15474), 1, + anon_sym_RBRACK, + STATE(10145), 1, + sym_val_list, + STATE(9222), 2, sym_comment, - ACTIONS(15078), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(15080), 2, - ts_builtin_sym_end, - anon_sym_LF, - [286341] = 4, + aux_sym_val_table_repeat1, + [285946] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(9638), 1, + ACTIONS(1159), 1, + anon_sym_RBRACK, + ACTIONS(1161), 1, + sym__entry_separator, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + ACTIONS(3727), 1, + anon_sym_LPAREN2, + STATE(9223), 1, sym_comment, - ACTIONS(15110), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(15112), 2, - ts_builtin_sym_end, - anon_sym_LF, - [286356] = 4, - ACTIONS(113), 1, + [285965] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(9639), 1, + ACTIONS(15247), 1, + anon_sym_LBRACK, + ACTIONS(15476), 1, + anon_sym_RBRACK, + STATE(9224), 1, sym_comment, - ACTIONS(15098), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(15100), 2, - ts_builtin_sym_end, - anon_sym_LF, - [286371] = 6, + STATE(9243), 1, + aux_sym_val_table_repeat1, + STATE(10145), 1, + sym_val_list, + [285984] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1247), 1, + ACTIONS(7265), 1, + anon_sym_LPAREN2, + ACTIONS(15478), 1, anon_sym_RBRACK, - ACTIONS(1249), 1, + ACTIONS(15480), 1, sym__entry_separator, - ACTIONS(1251), 1, - aux_sym__unquoted_in_list_token7, - ACTIONS(4037), 1, - anon_sym_LPAREN2, - STATE(9640), 1, + STATE(9225), 1, sym_comment, - [286390] = 3, + STATE(10658), 1, + sym__expr_parenthesized_immediate, + [286003] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9641), 1, + STATE(9226), 1, sym_comment, - ACTIONS(16116), 4, + ACTIONS(15482), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [286403] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(16118), 1, - anon_sym_DQUOTE, - STATE(9642), 1, - sym_comment, - STATE(9646), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, - sym__escaped_str_content, - sym_escape_sequence, - [286420] = 4, + [286016] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9643), 1, + STATE(9227), 1, sym_comment, - ACTIONS(14981), 2, + ACTIONS(12549), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14983), 2, + ACTIONS(12551), 2, ts_builtin_sym_end, anon_sym_LF, - [286435] = 4, + [286031] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(9644), 1, + ACTIONS(15484), 1, + anon_sym_DQUOTE, + STATE(9228), 1, sym_comment, - ACTIONS(14995), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14997), 2, - ts_builtin_sym_end, - anon_sym_LF, - [286450] = 4, + STATE(9230), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(15253), 2, + sym__escaped_str_content, + sym_escape_sequence, + [286048] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9645), 1, + STATE(9229), 1, sym_comment, - ACTIONS(14981), 2, + ACTIONS(14326), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14983), 2, + ACTIONS(14328), 2, ts_builtin_sym_end, anon_sym_LF, - [286465] = 5, + [286063] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16120), 1, + ACTIONS(15486), 1, anon_sym_DQUOTE, - STATE(9646), 1, + STATE(9230), 1, sym_comment, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [286482] = 4, - ACTIONS(113), 1, + [286080] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(9647), 1, + ACTIONS(15247), 1, + anon_sym_LBRACK, + ACTIONS(15488), 1, + anon_sym_RBRACK, + STATE(9231), 1, sym_comment, - ACTIONS(14995), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14997), 2, - ts_builtin_sym_end, - anon_sym_LF, - [286497] = 4, + STATE(9233), 1, + aux_sym_val_table_repeat1, + STATE(10145), 1, + sym_val_list, + [286099] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(9648), 1, + ACTIONS(1209), 1, + anon_sym_LPAREN2, + ACTIONS(10465), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(9232), 1, sym_comment, - ACTIONS(14981), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14983), 2, - ts_builtin_sym_end, - anon_sym_LF, - [286512] = 6, + ACTIONS(1139), 2, + anon_sym_DOLLAR, + anon_sym_LBRACE, + [286116] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(16122), 1, + ACTIONS(15490), 1, anon_sym_RBRACK, - STATE(9649), 1, - sym_comment, - STATE(9650), 1, + STATE(9222), 1, aux_sym_val_table_repeat1, - STATE(10538), 1, + STATE(9233), 1, + sym_comment, + STATE(10145), 1, sym_val_list, - [286531] = 6, + [286135] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(16124), 1, + ACTIONS(15492), 1, anon_sym_RBRACK, - STATE(9479), 1, + STATE(9222), 1, aux_sym_val_table_repeat1, - STATE(9650), 1, + STATE(9234), 1, sym_comment, - STATE(10538), 1, + STATE(10145), 1, sym_val_list, - [286550] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(9651), 1, - sym_comment, - ACTIONS(14995), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14997), 2, - ts_builtin_sym_end, - anon_sym_LF, - [286565] = 5, + [286154] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16126), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(16128), 1, - aux_sym_unquoted_token2, - STATE(9652), 1, - sym_comment, - ACTIONS(938), 2, - anon_sym_LBRACE, - anon_sym_LPAREN2, - [286582] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(9653), 1, - sym_comment, - ACTIONS(14981), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14983), 2, - ts_builtin_sym_end, - anon_sym_LF, - [286597] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(9654), 1, + ACTIONS(15337), 1, + anon_sym_LBRACK, + ACTIONS(15339), 1, + anon_sym_LPAREN, + STATE(9235), 1, sym_comment, - ACTIONS(14995), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14997), 2, - ts_builtin_sym_end, - anon_sym_LF, - [286612] = 4, + STATE(9261), 1, + sym_parameter_parens, + STATE(9262), 1, + sym_parameter_bracks, + [286173] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9655), 1, + STATE(9236), 1, sym_comment, - ACTIONS(14981), 2, + ACTIONS(12418), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14983), 2, + ACTIONS(12420), 2, ts_builtin_sym_end, anon_sym_LF, - [286627] = 4, + [286188] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(9656), 1, + ACTIONS(7265), 1, + anon_sym_LPAREN2, + ACTIONS(15494), 1, + anon_sym_RBRACK, + ACTIONS(15496), 1, + sym__entry_separator, + STATE(9237), 1, sym_comment, - ACTIONS(14995), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14997), 2, - ts_builtin_sym_end, - anon_sym_LF, - [286642] = 4, + STATE(10658), 1, + sym__expr_parenthesized_immediate, + [286207] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9657), 1, + STATE(9238), 1, sym_comment, - ACTIONS(14981), 2, + ACTIONS(12608), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14983), 2, + ACTIONS(12610), 2, ts_builtin_sym_end, anon_sym_LF, - [286657] = 4, + [286222] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9658), 1, - sym_comment, - ACTIONS(14995), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14997), 2, - ts_builtin_sym_end, + ACTIONS(15500), 1, anon_sym_LF, - [286672] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(9659), 1, + STATE(9239), 1, sym_comment, - ACTIONS(14981), 2, + ACTIONS(15498), 3, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(14983), 2, - ts_builtin_sym_end, - anon_sym_LF, - [286687] = 4, + [286237] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9660), 1, + STATE(9240), 1, sym_comment, - ACTIONS(14995), 2, + ACTIONS(14377), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14997), 2, + ACTIONS(14379), 2, ts_builtin_sym_end, anon_sym_LF, - [286702] = 4, - ACTIONS(113), 1, + [286252] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(9661), 1, + ACTIONS(15502), 1, + anon_sym_LBRACE, + STATE(4981), 1, + sym_block, + STATE(4987), 1, + sym_val_closure, + STATE(9241), 1, sym_comment, - ACTIONS(14981), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14983), 2, - ts_builtin_sym_end, - anon_sym_LF, - [286717] = 3, + STATE(9691), 1, + sym__blosure, + [286271] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9662), 1, + STATE(9242), 1, sym_comment, - ACTIONS(16130), 4, + ACTIONS(15504), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [286730] = 4, - ACTIONS(113), 1, + [286284] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(9663), 1, + ACTIONS(15247), 1, + anon_sym_LBRACK, + ACTIONS(15506), 1, + anon_sym_RBRACK, + STATE(9222), 1, + aux_sym_val_table_repeat1, + STATE(9243), 1, sym_comment, - ACTIONS(14995), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14997), 2, - ts_builtin_sym_end, - anon_sym_LF, - [286745] = 5, + STATE(10145), 1, + sym_val_list, + [286303] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16132), 1, + ACTIONS(15508), 1, anon_sym_DQUOTE, - STATE(9444), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9664), 1, + STATE(9244), 1, sym_comment, - ACTIONS(15863), 2, + STATE(9247), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [286762] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(9665), 1, - sym_comment, - ACTIONS(14981), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14983), 2, - ts_builtin_sym_end, - anon_sym_LF, - [286777] = 4, + [286320] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9666), 1, + STATE(9245), 1, sym_comment, - ACTIONS(14995), 2, + ACTIONS(14661), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14997), 2, + ACTIONS(14663), 2, ts_builtin_sym_end, anon_sym_LF, - [286792] = 5, + [286335] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(13319), 1, - anon_sym_DOT, - STATE(9667), 1, + ACTIONS(4734), 1, + anon_sym_DASH, + STATE(9246), 1, sym_comment, - ACTIONS(3520), 2, + ACTIONS(4738), 3, + sym_identifier, anon_sym_DOLLAR, - anon_sym_LBRACE, - [286809] = 4, + anon_sym_DASH_DASH, + [286350] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(9668), 1, + ACTIONS(15510), 1, + anon_sym_DQUOTE, + STATE(9247), 1, sym_comment, - ACTIONS(14981), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14983), 2, - ts_builtin_sym_end, - anon_sym_LF, - [286824] = 4, + STATE(9411), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(15253), 2, + sym__escaped_str_content, + sym_escape_sequence, + [286367] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9669), 1, + STATE(9248), 1, sym_comment, - ACTIONS(14995), 2, + ACTIONS(14310), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14997), 2, + ACTIONS(14312), 2, ts_builtin_sym_end, anon_sym_LF, - [286839] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2845), 1, - anon_sym_in, - ACTIONS(2847), 1, - anon_sym_LPAREN2, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(13169), 1, - anon_sym_DOT, - STATE(9670), 1, - sym_comment, - [286858] = 6, + [286382] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(16134), 1, + ACTIONS(15512), 1, anon_sym_RBRACK, - STATE(9671), 1, + STATE(9249), 1, sym_comment, - STATE(9673), 1, + STATE(9250), 1, aux_sym_val_table_repeat1, - STATE(10538), 1, + STATE(10145), 1, sym_val_list, - [286877] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(9672), 1, - sym_comment, - ACTIONS(14981), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14983), 2, - ts_builtin_sym_end, - anon_sym_LF, - [286892] = 6, + [286401] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(16136), 1, + ACTIONS(15514), 1, anon_sym_RBRACK, - STATE(9479), 1, + STATE(9222), 1, aux_sym_val_table_repeat1, - STATE(9673), 1, + STATE(9250), 1, sym_comment, - STATE(10538), 1, + STATE(10145), 1, sym_val_list, - [286911] = 4, + [286420] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9674), 1, + STATE(9251), 1, sym_comment, - ACTIONS(14995), 2, + ACTIONS(14314), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14997), 2, + ACTIONS(14316), 2, ts_builtin_sym_end, anon_sym_LF, - [286926] = 4, + [286435] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9675), 1, + STATE(9252), 1, sym_comment, - ACTIONS(14981), 2, + ACTIONS(14551), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14983), 2, + ACTIONS(14553), 2, ts_builtin_sym_end, anon_sym_LF, - [286941] = 4, + [286450] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(9676), 1, + ACTIONS(15516), 1, + anon_sym_DQUOTE, + STATE(9253), 1, sym_comment, - ACTIONS(14995), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14997), 2, - ts_builtin_sym_end, - anon_sym_LF, - [286956] = 4, + STATE(9358), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(15253), 2, + sym__escaped_str_content, + sym_escape_sequence, + [286467] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(9677), 1, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + ACTIONS(3725), 1, + anon_sym_in, + ACTIONS(3727), 1, + anon_sym_LPAREN2, + ACTIONS(15518), 1, + aux_sym_command_token1, + STATE(9254), 1, sym_comment, - ACTIONS(14981), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14983), 2, - ts_builtin_sym_end, - anon_sym_LF, - [286971] = 6, + [286486] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2843), 1, + ACTIONS(1051), 1, + anon_sym_DASH, + STATE(9255), 1, + sym_comment, + ACTIONS(1053), 3, sym_identifier, - ACTIONS(2845), 1, anon_sym_DOLLAR, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(13169), 1, - anon_sym_DOT, - STATE(9678), 1, - sym_comment, - [286990] = 4, + anon_sym_DASH_DASH, + [286501] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9679), 1, + STATE(9256), 1, sym_comment, - ACTIONS(14995), 2, + ACTIONS(14310), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14997), 2, + ACTIONS(14312), 2, ts_builtin_sym_end, anon_sym_LF, - [287005] = 4, + [286516] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13397), 1, + anon_sym_LBRACE, + ACTIONS(15331), 1, + anon_sym_COLON, + STATE(2366), 1, + sym_block, + STATE(9257), 1, + sym_comment, + STATE(10199), 1, + sym_returns, + [286535] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9680), 1, + ACTIONS(10465), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(9258), 1, sym_comment, - ACTIONS(15678), 2, - anon_sym_SEMI, + ACTIONS(1139), 3, anon_sym_PIPE, - ACTIONS(15680), 2, - ts_builtin_sym_end, - anon_sym_LF, - [287020] = 3, + anon_sym_if, + anon_sym_EQ_GT, + [286550] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(9681), 1, + ACTIONS(13397), 1, + anon_sym_LBRACE, + ACTIONS(15331), 1, + anon_sym_COLON, + STATE(2340), 1, + sym_block, + STATE(9259), 1, + sym_comment, + STATE(10007), 1, + sym_returns, + [286569] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(9260), 1, sym_comment, - ACTIONS(16138), 4, + ACTIONS(15520), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [287033] = 4, + [286582] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(959), 1, - anon_sym_DASH, - STATE(9682), 1, + ACTIONS(13411), 1, + anon_sym_LBRACE, + ACTIONS(15331), 1, + anon_sym_COLON, + STATE(2495), 1, + sym_block, + STATE(9261), 1, sym_comment, - ACTIONS(961), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [287048] = 4, - ACTIONS(113), 1, + STATE(10223), 1, + sym_returns, + [286601] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1284), 1, - aux_sym_unquoted_token6, - STATE(9683), 1, + ACTIONS(13411), 1, + anon_sym_LBRACE, + ACTIONS(15331), 1, + anon_sym_COLON, + STATE(2496), 1, + sym_block, + STATE(9262), 1, sym_comment, - ACTIONS(8211), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [287063] = 5, + STATE(10247), 1, + sym_returns, + [286620] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16140), 1, + ACTIONS(15522), 1, anon_sym_DQUOTE, - STATE(9684), 1, + STATE(9263), 1, sym_comment, - STATE(9686), 1, + STATE(9264), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [287080] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1158), 1, - anon_sym_DASH, - STATE(9685), 1, - sym_comment, - ACTIONS(1160), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [287095] = 5, + [286637] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16142), 1, + ACTIONS(15524), 1, anon_sym_DQUOTE, - STATE(9686), 1, + STATE(9264), 1, sym_comment, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [287112] = 6, + [286654] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1158), 1, - anon_sym_RBRACK, - ACTIONS(1160), 1, - sym__entry_separator, - ACTIONS(1284), 1, - aux_sym__unquoted_in_list_token7, - ACTIONS(4895), 1, - anon_sym_LPAREN2, - STATE(9687), 1, + STATE(9265), 1, sym_comment, - [287131] = 6, + ACTIONS(14555), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14557), 2, + ts_builtin_sym_end, + anon_sym_LF, + [286669] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(16144), 1, + ACTIONS(15526), 1, anon_sym_RBRACK, - STATE(9688), 1, + STATE(9266), 1, sym_comment, - STATE(9690), 1, + STATE(9268), 1, aux_sym_val_table_repeat1, - STATE(10538), 1, + STATE(10145), 1, sym_val_list, - [287150] = 4, - ACTIONS(3), 1, + [286688] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1410), 1, - anon_sym_DASH, - STATE(9689), 1, + ACTIONS(1129), 1, + anon_sym_RBRACK, + ACTIONS(1131), 1, + sym__entry_separator, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + ACTIONS(3841), 1, + anon_sym_LPAREN2, + STATE(9267), 1, sym_comment, - ACTIONS(1412), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [287165] = 6, + [286707] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(16146), 1, + ACTIONS(15528), 1, anon_sym_RBRACK, - STATE(9479), 1, + STATE(9222), 1, aux_sym_val_table_repeat1, - STATE(9690), 1, + STATE(9268), 1, sym_comment, - STATE(10538), 1, + STATE(10145), 1, sym_val_list, - [287184] = 6, - ACTIONS(3), 1, + [286726] = 6, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - ACTIONS(3876), 1, - anon_sym_in, - ACTIONS(3878), 1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + ACTIONS(1135), 1, + anon_sym_RBRACK, + ACTIONS(1137), 1, + sym__entry_separator, + ACTIONS(3841), 1, anon_sym_LPAREN2, - ACTIONS(13456), 1, - anon_sym_DOT, - STATE(9691), 1, - sym_comment, - [287203] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - ACTIONS(3874), 1, - sym_identifier, - ACTIONS(3876), 1, - anon_sym_DOLLAR, - ACTIONS(13456), 1, - anon_sym_DOT, - STATE(9692), 1, - sym_comment, - [287222] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1286), 1, - anon_sym_DASH, - STATE(9693), 1, - sym_comment, - ACTIONS(1288), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [287237] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(9694), 1, + STATE(9269), 1, sym_comment, - ACTIONS(16148), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [287250] = 6, + [286745] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(3750), 1, + ACTIONS(13411), 1, anon_sym_LBRACE, - ACTIONS(13169), 1, - anon_sym_DOT, - ACTIONS(15594), 1, - aux_sym__immediate_decimal_token1, - STATE(9695), 1, + ACTIONS(15331), 1, + anon_sym_COLON, + STATE(2415), 1, + sym_block, + STATE(9270), 1, sym_comment, - [287269] = 5, + STATE(10086), 1, + sym_returns, + [286764] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16150), 1, - anon_sym_DQUOTE, - STATE(9696), 1, - sym_comment, - STATE(9698), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, - sym__escaped_str_content, - sym_escape_sequence, - [287286] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14506), 1, - aux_sym__immediate_decimal_token1, - STATE(9697), 1, + ACTIONS(15532), 1, + anon_sym_LF, + STATE(9271), 1, sym_comment, - ACTIONS(5085), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [287301] = 5, + ACTIONS(15530), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [286779] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16152), 1, - anon_sym_DQUOTE, - STATE(9698), 1, + ACTIONS(6314), 1, + anon_sym_LF, + STATE(9272), 1, sym_comment, - STATE(9704), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, - sym__escaped_str_content, - sym_escape_sequence, - [287318] = 4, + ACTIONS(6270), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [286794] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9699), 1, - sym_comment, - ACTIONS(15088), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(15090), 2, - ts_builtin_sym_end, + ACTIONS(6316), 1, anon_sym_LF, - [287333] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15865), 1, - anon_sym_LBRACK, - ACTIONS(16154), 1, - anon_sym_RBRACK, - STATE(9700), 1, + STATE(9273), 1, sym_comment, - STATE(9701), 1, - aux_sym_val_table_repeat1, - STATE(10538), 1, - sym_val_list, - [287352] = 6, + ACTIONS(6102), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [286809] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, - anon_sym_LBRACK, - ACTIONS(16156), 1, - anon_sym_RBRACK, - STATE(9479), 1, - aux_sym_val_table_repeat1, - STATE(9701), 1, + ACTIONS(3693), 1, + anon_sym_in, + ACTIONS(15534), 1, + anon_sym_DOT_DOT2, + STATE(9274), 1, sym_comment, - STATE(10538), 1, - sym_val_list, - [287371] = 6, + ACTIONS(15536), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [286826] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4008), 1, + ACTIONS(3701), 1, anon_sym_in, - ACTIONS(4010), 1, - anon_sym_LPAREN2, - ACTIONS(4012), 1, - aux_sym_unquoted_token2, - ACTIONS(13520), 1, - anon_sym_DOT, - STATE(9702), 1, + ACTIONS(15538), 1, + anon_sym_DOT_DOT2, + STATE(9275), 1, sym_comment, - [287390] = 6, + ACTIONS(15540), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [286843] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4006), 1, - sym_identifier, - ACTIONS(4008), 1, - anon_sym_DOLLAR, - ACTIONS(4012), 1, - aux_sym_unquoted_token2, - ACTIONS(13520), 1, - anon_sym_DOT, - STATE(9703), 1, + ACTIONS(3713), 1, + anon_sym_in, + ACTIONS(15542), 1, + anon_sym_DOT_DOT2, + STATE(9276), 1, sym_comment, - [287409] = 4, + ACTIONS(15544), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [286860] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16158), 1, - anon_sym_DQUOTE, - ACTIONS(16160), 2, - sym__escaped_str_content, - sym_escape_sequence, - STATE(9704), 2, - sym_comment, - aux_sym__str_double_quotes_repeat1, - [287424] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(997), 1, - anon_sym_COLON, - ACTIONS(12217), 1, - anon_sym_DOT, - STATE(4784), 1, - sym_cell_path, - STATE(7027), 1, - sym_path, - STATE(9705), 1, - sym_comment, - [287443] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(13169), 1, - anon_sym_DOT, - STATE(9706), 1, + ACTIONS(15548), 1, + anon_sym_LF, + STATE(9277), 1, sym_comment, - ACTIONS(2845), 2, - anon_sym_DOLLAR, - anon_sym_LBRACE, - [287460] = 5, + ACTIONS(15546), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [286875] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16163), 1, - anon_sym_DQUOTE, - STATE(9704), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9707), 1, + ACTIONS(15552), 1, + anon_sym_LF, + STATE(9278), 1, sym_comment, - ACTIONS(15863), 2, - sym__escaped_str_content, - sym_escape_sequence, - [287477] = 5, + ACTIONS(15550), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + [286890] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8320), 1, - anon_sym_LPAREN2, - ACTIONS(8322), 1, - aux_sym__unquoted_in_list_token3, - STATE(9708), 1, + STATE(9279), 1, sym_comment, - ACTIONS(8318), 2, - anon_sym_RBRACK, - sym__entry_separator, - [287494] = 3, + ACTIONS(14330), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14332), 2, + ts_builtin_sym_end, + anon_sym_LF, + [286905] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9709), 1, + STATE(9280), 1, sym_comment, - ACTIONS(16165), 4, + ACTIONS(15554), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [287507] = 5, + [286918] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16167), 1, + ACTIONS(15556), 1, anon_sym_DQUOTE, - STATE(9710), 1, + STATE(9281), 1, sym_comment, - STATE(9711), 1, + STATE(9283), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [287524] = 5, + [286935] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16169), 1, - anon_sym_DQUOTE, - STATE(9704), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9711), 1, + STATE(9282), 1, sym_comment, - ACTIONS(15863), 2, - sym__escaped_str_content, - sym_escape_sequence, - [287541] = 6, + ACTIONS(14330), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14332), 2, + ts_builtin_sym_end, + anon_sym_LF, + [286950] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(936), 1, - anon_sym_RBRACK, - ACTIONS(938), 1, - sym__entry_separator, - ACTIONS(10694), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(16171), 1, - aux_sym_unquoted_token2, - STATE(9712), 1, + ACTIONS(15558), 1, + anon_sym_DQUOTE, + STATE(9283), 1, sym_comment, - [287560] = 4, + STATE(9411), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(15253), 2, + sym__escaped_str_content, + sym_escape_sequence, + [286967] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9713), 1, + ACTIONS(15560), 1, + anon_sym_LPAREN, + STATE(9284), 1, sym_comment, - ACTIONS(1280), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token7, - ACTIONS(1282), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [287575] = 6, + ACTIONS(15562), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [286982] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(936), 1, - sym_identifier, - ACTIONS(938), 1, - anon_sym_DOLLAR, - ACTIONS(10850), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(16173), 1, - aux_sym_unquoted_token2, - STATE(9714), 1, + STATE(9285), 1, sym_comment, - [287594] = 6, + ACTIONS(15564), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [286995] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(16175), 1, + ACTIONS(15566), 1, anon_sym_RBRACK, - STATE(9715), 1, + STATE(9286), 1, sym_comment, - STATE(9716), 1, + STATE(9287), 1, aux_sym_val_table_repeat1, - STATE(10538), 1, + STATE(10145), 1, sym_val_list, - [287613] = 6, + [287014] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(16177), 1, + ACTIONS(15568), 1, anon_sym_RBRACK, - STATE(9479), 1, + STATE(9222), 1, aux_sym_val_table_repeat1, - STATE(9716), 1, + STATE(9287), 1, sym_comment, - STATE(10538), 1, + STATE(10145), 1, sym_val_list, - [287632] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1253), 1, - anon_sym_RBRACK, - ACTIONS(1255), 1, - sym__entry_separator, - ACTIONS(1257), 1, - aux_sym__unquoted_in_list_token7, - ACTIONS(4631), 1, - anon_sym_LPAREN2, - STATE(9717), 1, - sym_comment, - [287651] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym__unquoted_in_list_token7, - ACTIONS(1273), 1, - anon_sym_RBRACK, - ACTIONS(1275), 1, - sym__entry_separator, - ACTIONS(4631), 1, - anon_sym_LPAREN2, - STATE(9718), 1, - sym_comment, - [287670] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10878), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(16179), 1, - aux_sym_unquoted_token2, - STATE(9719), 1, - sym_comment, - ACTIONS(938), 2, - anon_sym_DOLLAR, - anon_sym_LBRACE, - [287687] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1190), 1, - anon_sym_DASH, - STATE(9720), 1, - sym_comment, - ACTIONS(1192), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [287702] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(9721), 1, - sym_comment, - ACTIONS(16181), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [287715] = 5, + [287033] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - ACTIONS(13456), 1, + ACTIONS(7439), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(15570), 1, anon_sym_DOT, - STATE(9722), 1, - sym_comment, - ACTIONS(3876), 2, - anon_sym_DOLLAR, - anon_sym_LBRACE, - [287732] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15865), 1, - anon_sym_LBRACK, - ACTIONS(16183), 1, - anon_sym_RBRACK, - STATE(9520), 1, - aux_sym_val_table_repeat1, - STATE(9723), 1, - sym_comment, - STATE(10538), 1, - sym_val_list, - [287751] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(16185), 1, - anon_sym_LPAREN, - STATE(9724), 1, + STATE(9288), 1, sym_comment, - ACTIONS(16187), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [287766] = 6, + ACTIONS(2358), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [287050] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1247), 1, - anon_sym_RBRACK, - ACTIONS(1249), 1, - sym__entry_separator, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - ACTIONS(4037), 1, - anon_sym_LPAREN2, - STATE(9725), 1, + STATE(9289), 1, sym_comment, - [287785] = 5, + ACTIONS(14314), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14316), 2, + ts_builtin_sym_end, + anon_sym_LF, + [287065] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16189), 1, - anon_sym_DQUOTE, - STATE(9726), 1, - sym_comment, - STATE(9734), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, - sym__escaped_str_content, - sym_escape_sequence, - [287802] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(9727), 1, + STATE(9290), 1, sym_comment, - ACTIONS(16191), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [287815] = 5, + ACTIONS(14667), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14669), 2, + ts_builtin_sym_end, + anon_sym_LF, + [287080] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4012), 1, - aux_sym_unquoted_token2, - ACTIONS(13520), 1, - anon_sym_DOT, - STATE(9728), 1, - sym_comment, - ACTIONS(4008), 2, - anon_sym_DOLLAR, + ACTIONS(15572), 1, anon_sym_LBRACE, - [287832] = 5, + STATE(4583), 1, + sym_block, + STATE(4584), 1, + sym_val_closure, + STATE(9291), 1, + sym_comment, + STATE(9577), 1, + sym__blosure, + [287099] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16193), 1, - anon_sym_DQUOTE, - STATE(9729), 1, + ACTIONS(15576), 1, + anon_sym_LF, + STATE(9292), 1, sym_comment, - STATE(9730), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, - sym__escaped_str_content, - sym_escape_sequence, - [287849] = 5, + ACTIONS(15574), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + [287114] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16195), 1, + ACTIONS(15578), 1, anon_sym_DQUOTE, - STATE(9704), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9730), 1, + STATE(9293), 1, sym_comment, - ACTIONS(15863), 2, + STATE(9304), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [287866] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15865), 1, - anon_sym_LBRACK, - ACTIONS(16197), 1, - anon_sym_RBRACK, - STATE(9731), 1, - sym_comment, - STATE(9732), 1, - aux_sym_val_table_repeat1, - STATE(10538), 1, - sym_val_list, - [287885] = 6, + [287131] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15337), 1, anon_sym_LBRACK, - ACTIONS(16199), 1, - anon_sym_RBRACK, - STATE(9479), 1, - aux_sym_val_table_repeat1, - STATE(9732), 1, - sym_comment, - STATE(10538), 1, - sym_val_list, - [287904] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(16201), 1, + ACTIONS(15339), 1, anon_sym_LPAREN, - STATE(9733), 1, + STATE(9188), 1, + sym_parameter_parens, + STATE(9189), 1, + sym_parameter_bracks, + STATE(9294), 1, sym_comment, - ACTIONS(16203), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [287919] = 5, + [287150] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16205), 1, - anon_sym_DQUOTE, - STATE(9704), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9734), 1, + STATE(9295), 1, sym_comment, - ACTIONS(15863), 2, - sym__escaped_str_content, - sym_escape_sequence, - [287936] = 3, + ACTIONS(14314), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14316), 2, + ts_builtin_sym_end, + anon_sym_LF, + [287165] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9735), 1, + STATE(9296), 1, sym_comment, - ACTIONS(16207), 4, + ACTIONS(15580), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [287949] = 5, + [287178] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16209), 1, + ACTIONS(15582), 1, anon_sym_DQUOTE, - STATE(9736), 1, + STATE(9297), 1, sym_comment, - STATE(9738), 1, + STATE(9298), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [287966] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15865), 1, - anon_sym_LBRACK, - ACTIONS(16211), 1, - anon_sym_RBRACK, - STATE(9737), 1, - sym_comment, - STATE(9749), 1, - aux_sym_val_table_repeat1, - STATE(10538), 1, - sym_val_list, - [287985] = 5, + [287195] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16213), 1, + ACTIONS(15584), 1, anon_sym_DQUOTE, - STATE(9704), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9738), 1, + STATE(9298), 1, sym_comment, - ACTIONS(15863), 2, + STATE(9411), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [288002] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1298), 1, - anon_sym_DASH, - STATE(9739), 1, - sym_comment, - ACTIONS(1300), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [288017] = 6, + [287212] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(16215), 1, + ACTIONS(15586), 1, anon_sym_RBRACK, - STATE(9740), 1, + STATE(9299), 1, sym_comment, - STATE(9741), 1, + STATE(9300), 1, aux_sym_val_table_repeat1, - STATE(10538), 1, + STATE(10145), 1, sym_val_list, - [288036] = 6, + [287231] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(16217), 1, + ACTIONS(15588), 1, anon_sym_RBRACK, - STATE(9479), 1, + STATE(9222), 1, aux_sym_val_table_repeat1, - STATE(9741), 1, + STATE(9300), 1, sym_comment, - STATE(10538), 1, + STATE(10145), 1, sym_val_list, - [288055] = 3, + [287250] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(9742), 1, + ACTIONS(1279), 1, + anon_sym_DASH, + STATE(9301), 1, + sym_comment, + ACTIONS(1281), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [287265] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(9302), 1, sym_comment, - ACTIONS(16219), 4, + ACTIONS(15590), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [288068] = 5, + [287278] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16221), 1, + ACTIONS(15592), 1, anon_sym_DQUOTE, - STATE(9743), 1, + STATE(9303), 1, sym_comment, - STATE(9744), 1, + STATE(9305), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [288085] = 5, + [287295] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16223), 1, + ACTIONS(15594), 1, anon_sym_DQUOTE, - STATE(9704), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9744), 1, + STATE(9304), 1, sym_comment, - ACTIONS(15863), 2, + STATE(9411), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [288102] = 4, + [287312] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16227), 1, - anon_sym_LF, - STATE(9745), 1, + ACTIONS(15596), 1, + anon_sym_DQUOTE, + STATE(9305), 1, sym_comment, - ACTIONS(16225), 3, - anon_sym_SEMI, - anon_sym_RPAREN, + STATE(9411), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(15253), 2, + sym__escaped_str_content, + sym_escape_sequence, + [287329] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(13087), 1, + anon_sym_DOT, + STATE(9306), 1, + sym_comment, + ACTIONS(3773), 2, anon_sym_PIPE, - [288117] = 4, + anon_sym_EQ_GT, + [287346] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16231), 1, - anon_sym_LF, - STATE(9746), 1, + STATE(9307), 1, sym_comment, - ACTIONS(16229), 3, + ACTIONS(14314), 2, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - [288132] = 6, + ACTIONS(14316), 2, + ts_builtin_sym_end, + anon_sym_LF, + [287361] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(16233), 1, + ACTIONS(15598), 1, anon_sym_RBRACK, - STATE(9747), 1, + STATE(9308), 1, sym_comment, - STATE(9748), 1, + STATE(9309), 1, aux_sym_val_table_repeat1, - STATE(10538), 1, + STATE(10145), 1, sym_val_list, - [288151] = 6, + [287380] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(16235), 1, + ACTIONS(15600), 1, anon_sym_RBRACK, - STATE(9479), 1, + STATE(9222), 1, aux_sym_val_table_repeat1, - STATE(9748), 1, + STATE(9309), 1, sym_comment, - STATE(10538), 1, + STATE(10145), 1, sym_val_list, - [288170] = 6, - ACTIONS(3), 1, + [287399] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15865), 1, - anon_sym_LBRACK, - ACTIONS(16237), 1, - anon_sym_RBRACK, - STATE(9479), 1, - aux_sym_val_table_repeat1, - STATE(9749), 1, + STATE(9310), 1, sym_comment, - STATE(10538), 1, - sym_val_list, - [288189] = 3, + ACTIONS(14330), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14332), 2, + ts_builtin_sym_end, + anon_sym_LF, + [287414] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9750), 1, + STATE(9311), 1, sym_comment, - ACTIONS(16239), 4, + ACTIONS(15602), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [288202] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5075), 1, - anon_sym_DASH, - STATE(9751), 1, - sym_comment, - ACTIONS(5079), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [288217] = 5, + [287427] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16241), 1, + ACTIONS(15604), 1, anon_sym_DQUOTE, - STATE(9752), 1, + STATE(9312), 1, sym_comment, - STATE(9755), 1, + STATE(9315), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [288234] = 4, + [287444] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16245), 1, - anon_sym_LF, - STATE(9753), 1, + STATE(9313), 1, sym_comment, - ACTIONS(16243), 3, + ACTIONS(14583), 2, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - [288249] = 4, + ACTIONS(14585), 2, + ts_builtin_sym_end, + anon_sym_LF, + [287459] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1302), 1, + ACTIONS(1165), 1, anon_sym_DASH, - STATE(9754), 1, + STATE(9314), 1, sym_comment, - ACTIONS(1304), 3, + ACTIONS(1167), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [288264] = 5, + [287474] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16247), 1, + ACTIONS(15606), 1, anon_sym_DQUOTE, - STATE(9704), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9755), 1, + STATE(9315), 1, sym_comment, - ACTIONS(15863), 2, + STATE(9411), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [288281] = 6, + [287491] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(16249), 1, + ACTIONS(15608), 1, anon_sym_RBRACK, - STATE(9756), 1, + STATE(9316), 1, sym_comment, - STATE(9757), 1, + STATE(9339), 1, aux_sym_val_table_repeat1, - STATE(10538), 1, + STATE(10145), 1, sym_val_list, - [288300] = 6, + [287510] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(9317), 1, + sym_comment, + ACTIONS(14579), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14581), 2, + ts_builtin_sym_end, + anon_sym_LF, + [287525] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(16251), 1, + ACTIONS(15610), 1, anon_sym_RBRACK, - STATE(9479), 1, + STATE(9318), 1, + sym_comment, + STATE(9319), 1, aux_sym_val_table_repeat1, - STATE(9757), 1, + STATE(10145), 1, + sym_val_list, + [287544] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(15247), 1, + anon_sym_LBRACK, + ACTIONS(15612), 1, + anon_sym_RBRACK, + STATE(9222), 1, + aux_sym_val_table_repeat1, + STATE(9319), 1, sym_comment, - STATE(10538), 1, + STATE(10145), 1, sym_val_list, - [288319] = 3, + [287563] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(15616), 1, + anon_sym_LF, + STATE(9320), 1, + sym_comment, + ACTIONS(15614), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [287578] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(9758), 1, + ACTIONS(15572), 1, + anon_sym_LBRACE, + STATE(4583), 1, + sym_block, + STATE(4584), 1, + sym_val_closure, + STATE(9205), 1, + sym__blosure, + STATE(9321), 1, + sym_comment, + [287597] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(9322), 1, sym_comment, - ACTIONS(16253), 4, + ACTIONS(15618), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [288332] = 5, + [287610] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(9323), 1, + sym_comment, + ACTIONS(14326), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14328), 2, + ts_builtin_sym_end, + anon_sym_LF, + [287625] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16255), 1, + ACTIONS(15620), 1, anon_sym_DQUOTE, - STATE(9759), 1, + STATE(9324), 1, sym_comment, - STATE(9760), 1, + STATE(9326), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [288349] = 5, + [287642] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(15624), 1, + anon_sym_LF, + STATE(9325), 1, + sym_comment, + ACTIONS(15622), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [287657] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16257), 1, + ACTIONS(15626), 1, anon_sym_DQUOTE, - STATE(9704), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9760), 1, + STATE(9326), 1, sym_comment, - ACTIONS(15863), 2, + STATE(9411), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [288366] = 5, + [287674] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5085), 1, - sym__entry_separator, - ACTIONS(14681), 1, - aux_sym__immediate_decimal_token1, - STATE(9761), 1, + STATE(9327), 1, sym_comment, - ACTIONS(5083), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [288383] = 6, + ACTIONS(14583), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14585), 2, + ts_builtin_sym_end, + anon_sym_LF, + [287689] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(16259), 1, + ACTIONS(15628), 1, anon_sym_RBRACK, - STATE(9762), 1, + STATE(9328), 1, sym_comment, - STATE(9763), 1, + STATE(9329), 1, aux_sym_val_table_repeat1, - STATE(10538), 1, + STATE(10145), 1, sym_val_list, - [288402] = 6, + [287708] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(16261), 1, + ACTIONS(15630), 1, anon_sym_RBRACK, - STATE(9479), 1, + STATE(9222), 1, aux_sym_val_table_repeat1, - STATE(9763), 1, + STATE(9329), 1, sym_comment, - STATE(10538), 1, + STATE(10145), 1, sym_val_list, - [288421] = 3, + [287727] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(9330), 1, + sym_comment, + ACTIONS(14579), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14581), 2, + ts_builtin_sym_end, + anon_sym_LF, + [287742] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9764), 1, + STATE(9331), 1, sym_comment, - ACTIONS(16263), 4, + ACTIONS(15632), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [288434] = 5, + [287755] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16265), 1, + ACTIONS(15634), 1, anon_sym_DQUOTE, - STATE(9765), 1, + STATE(9332), 1, sym_comment, - STATE(9767), 1, + STATE(9335), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [288451] = 5, - ACTIONS(3), 1, + [287772] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2845), 1, - anon_sym_EQ_GT, - ACTIONS(16267), 1, - anon_sym_DOT_DOT2, - STATE(9766), 1, + STATE(9333), 1, sym_comment, - ACTIONS(16269), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [288468] = 5, + ACTIONS(14583), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14585), 2, + ts_builtin_sym_end, + anon_sym_LF, + [287787] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1209), 1, + anon_sym_LPAREN2, + ACTIONS(14481), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(9334), 1, + sym_comment, + ACTIONS(1139), 2, + sym_identifier, + anon_sym_DOLLAR, + [287804] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16271), 1, + ACTIONS(15636), 1, anon_sym_DQUOTE, - STATE(9704), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9767), 1, + STATE(9335), 1, sym_comment, - ACTIONS(15863), 2, + STATE(9411), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [288485] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1156), 1, - anon_sym_in, - ACTIONS(16273), 1, - anon_sym_DOT, - STATE(5397), 1, - sym_cell_path, - STATE(9768), 1, - sym_comment, - STATE(10120), 1, - sym_path, - [288504] = 6, - ACTIONS(3), 1, + [287821] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1205), 1, - anon_sym_in, - ACTIONS(16273), 1, - anon_sym_DOT, - STATE(6166), 1, - sym_cell_path, - STATE(9769), 1, + STATE(9336), 1, sym_comment, - STATE(10120), 1, - sym_path, - [288523] = 6, + ACTIONS(14579), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14581), 2, + ts_builtin_sym_end, + anon_sym_LF, + [287836] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(16275), 1, + ACTIONS(15638), 1, anon_sym_RBRACK, - STATE(9770), 1, + STATE(9337), 1, sym_comment, - STATE(9771), 1, + STATE(9338), 1, aux_sym_val_table_repeat1, - STATE(10538), 1, + STATE(10145), 1, sym_val_list, - [288542] = 6, + [287855] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(16277), 1, + ACTIONS(15640), 1, anon_sym_RBRACK, - STATE(9479), 1, + STATE(9222), 1, aux_sym_val_table_repeat1, - STATE(9771), 1, + STATE(9338), 1, sym_comment, - STATE(10538), 1, + STATE(10145), 1, sym_val_list, - [288561] = 6, + [287874] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1192), 1, - anon_sym_in, - ACTIONS(16273), 1, - anon_sym_DOT, - STATE(5368), 1, - sym_cell_path, - STATE(9772), 1, + ACTIONS(15247), 1, + anon_sym_LBRACK, + ACTIONS(15642), 1, + anon_sym_RBRACK, + STATE(9222), 1, + aux_sym_val_table_repeat1, + STATE(9339), 1, sym_comment, - STATE(10120), 1, - sym_path, - [288580] = 6, - ACTIONS(3), 1, + STATE(10145), 1, + sym_val_list, + [287893] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1188), 1, - anon_sym_in, - ACTIONS(16273), 1, - anon_sym_DOT, - STATE(6261), 1, - sym_cell_path, - STATE(9773), 1, + STATE(9340), 1, sym_comment, - STATE(10120), 1, - sym_path, - [288599] = 3, + ACTIONS(14583), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14585), 2, + ts_builtin_sym_end, + anon_sym_LF, + [287908] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9774), 1, + STATE(9341), 1, sym_comment, - ACTIONS(16279), 4, + ACTIONS(15644), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [288612] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(16283), 1, - anon_sym_LF, - STATE(9775), 1, - sym_comment, - ACTIONS(16281), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - [288627] = 5, + [287921] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16285), 1, + ACTIONS(15646), 1, anon_sym_DQUOTE, - STATE(9776), 1, + STATE(9342), 1, sym_comment, - STATE(9780), 1, + STATE(9344), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [288644] = 4, + [287938] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(9777), 1, - sym_comment, - ACTIONS(14917), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14919), 2, - ts_builtin_sym_end, - anon_sym_LF, - [288659] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1150), 1, - anon_sym_in, - ACTIONS(16273), 1, - anon_sym_DOT, - STATE(5531), 1, - sym_cell_path, - STATE(9778), 1, - sym_comment, - STATE(10120), 1, - sym_path, - [288678] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1181), 1, - anon_sym_in, - ACTIONS(16273), 1, - anon_sym_DOT, - STATE(5492), 1, - sym_cell_path, - STATE(9779), 1, + ACTIONS(1159), 1, + anon_sym_RBRACK, + ACTIONS(1161), 1, + sym__entry_separator, + ACTIONS(1163), 1, + aux_sym__unquoted_in_list_token7, + ACTIONS(3727), 1, + anon_sym_LPAREN2, + STATE(9343), 1, sym_comment, - STATE(10120), 1, - sym_path, - [288697] = 5, + [287957] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16287), 1, + ACTIONS(15648), 1, anon_sym_DQUOTE, - STATE(9704), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9780), 1, + STATE(9344), 1, sym_comment, - ACTIONS(15863), 2, + STATE(9411), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [288714] = 4, + [287974] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9781), 1, + STATE(9345), 1, sym_comment, - ACTIONS(15558), 2, + ACTIONS(14310), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(15560), 2, + ACTIONS(14312), 2, ts_builtin_sym_end, anon_sym_LF, - [288729] = 5, + [287989] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3520), 1, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(3314), 1, anon_sym_LBRACE, - ACTIONS(16289), 1, - anon_sym_DOT_DOT2, - STATE(9782), 1, + ACTIONS(3316), 1, + anon_sym_LPAREN2, + ACTIONS(12748), 1, + anon_sym_DOT, + STATE(9346), 1, sym_comment, - ACTIONS(16291), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [288746] = 6, + [288008] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(16293), 1, + ACTIONS(15650), 1, anon_sym_RBRACK, - STATE(9783), 1, + STATE(9347), 1, sym_comment, - STATE(9784), 1, + STATE(9348), 1, aux_sym_val_table_repeat1, - STATE(10538), 1, + STATE(10145), 1, sym_val_list, - [288765] = 6, + [288027] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(16295), 1, + ACTIONS(15652), 1, anon_sym_RBRACK, - STATE(9479), 1, + STATE(9222), 1, aux_sym_val_table_repeat1, - STATE(9784), 1, + STATE(9348), 1, sym_comment, - STATE(10538), 1, + STATE(10145), 1, sym_val_list, - [288784] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(9785), 1, - sym_comment, - ACTIONS(15026), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(15028), 2, - ts_builtin_sym_end, - anon_sym_LF, - [288799] = 3, + [288046] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9786), 1, + STATE(9349), 1, sym_comment, - ACTIONS(16297), 4, + ACTIONS(15654), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [288812] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(10998), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(9787), 1, - sym_comment, - ACTIONS(1243), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [288827] = 5, + [288059] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16299), 1, + ACTIONS(15656), 1, anon_sym_DQUOTE, - STATE(9788), 1, + STATE(9350), 1, sym_comment, - STATE(9791), 1, + STATE(9352), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [288844] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(9789), 1, - sym_comment, - ACTIONS(15030), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(15032), 2, - ts_builtin_sym_end, - anon_sym_LF, - [288859] = 4, + [288076] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9790), 1, + STATE(9351), 1, sym_comment, - ACTIONS(15026), 2, + ACTIONS(14579), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(15028), 2, + ACTIONS(14581), 2, ts_builtin_sym_end, anon_sym_LF, - [288874] = 5, + [288091] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16301), 1, + ACTIONS(15658), 1, anon_sym_DQUOTE, - STATE(9704), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9791), 1, + STATE(9352), 1, sym_comment, - ACTIONS(15863), 2, + STATE(9411), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [288891] = 6, + [288108] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - ACTIONS(4035), 1, - anon_sym_LBRACE, - ACTIONS(4037), 1, + ACTIONS(7265), 1, anon_sym_LPAREN2, - ACTIONS(16303), 1, - aux_sym_command_token1, - STATE(9792), 1, - sym_comment, - [288910] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4018), 1, - anon_sym_in, - ACTIONS(10958), 1, - anon_sym_DOT_DOT2, - STATE(9793), 1, + ACTIONS(7964), 1, + anon_sym_RBRACK, + ACTIONS(7966), 1, + sym__entry_separator, + STATE(9353), 1, sym_comment, - ACTIONS(10960), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [288927] = 4, + STATE(10094), 1, + sym__expr_parenthesized_immediate, + [288127] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9794), 1, + STATE(9354), 1, sym_comment, - ACTIONS(15030), 2, + ACTIONS(14326), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(15032), 2, + ACTIONS(14328), 2, ts_builtin_sym_end, anon_sym_LF, - [288942] = 6, + [288142] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(16305), 1, + ACTIONS(15660), 1, anon_sym_RBRACK, - STATE(9795), 1, + STATE(9355), 1, sym_comment, - STATE(9796), 1, + STATE(9356), 1, aux_sym_val_table_repeat1, - STATE(10538), 1, + STATE(10145), 1, sym_val_list, - [288961] = 6, + [288161] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(16307), 1, + ACTIONS(15662), 1, anon_sym_RBRACK, - STATE(9479), 1, + STATE(9222), 1, aux_sym_val_table_repeat1, - STATE(9796), 1, + STATE(9356), 1, sym_comment, - STATE(10538), 1, + STATE(10145), 1, sym_val_list, - [288980] = 3, + [288180] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9797), 1, + STATE(9357), 1, sym_comment, - ACTIONS(16309), 4, + ACTIONS(15664), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [288993] = 4, + [288193] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(9798), 1, - sym_comment, - ACTIONS(15026), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(15028), 2, - ts_builtin_sym_end, - anon_sym_LF, - [289008] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(16311), 1, + ACTIONS(15666), 1, anon_sym_DQUOTE, - STATE(9799), 1, + STATE(9358), 1, sym_comment, - STATE(9802), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [289025] = 6, + [288210] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1253), 1, - anon_sym_RBRACK, - ACTIONS(1255), 1, - sym__entry_separator, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - ACTIONS(4631), 1, - anon_sym_LPAREN2, - STATE(9800), 1, + ACTIONS(15668), 1, + anon_sym_DQUOTE, + STATE(9359), 1, sym_comment, - [289044] = 6, - ACTIONS(113), 1, + STATE(9361), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(15253), 2, + sym__escaped_str_content, + sym_escape_sequence, + [288227] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - ACTIONS(1273), 1, - anon_sym_RBRACK, - ACTIONS(1275), 1, - sym__entry_separator, - ACTIONS(4631), 1, - anon_sym_LPAREN2, - STATE(9801), 1, + ACTIONS(15383), 1, + anon_sym_LBRACK, + ACTIONS(15385), 1, + anon_sym_LPAREN, + STATE(2381), 1, + sym_parameter_parens, + STATE(2382), 1, + sym_parameter_bracks, + STATE(9360), 1, sym_comment, - [289063] = 5, + [288246] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16313), 1, + ACTIONS(15670), 1, anon_sym_DQUOTE, - STATE(9704), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9802), 1, + STATE(9361), 1, sym_comment, - ACTIONS(15863), 2, + STATE(9411), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [289080] = 4, + [288263] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9803), 1, + STATE(9362), 1, sym_comment, - ACTIONS(15030), 2, + ACTIONS(14314), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(15032), 2, + ACTIONS(14316), 2, ts_builtin_sym_end, anon_sym_LF, - [289095] = 4, + [288278] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(9804), 1, + STATE(9363), 1, sym_comment, - ACTIONS(15026), 2, + ACTIONS(14310), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(15028), 2, + ACTIONS(14312), 2, ts_builtin_sym_end, anon_sym_LF, - [289110] = 6, + [288293] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(16315), 1, + ACTIONS(15672), 1, anon_sym_RBRACK, - STATE(9805), 1, + STATE(9364), 1, sym_comment, - STATE(9806), 1, + STATE(9365), 1, aux_sym_val_table_repeat1, - STATE(10538), 1, + STATE(10145), 1, sym_val_list, - [289129] = 6, + [288312] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(16317), 1, + ACTIONS(15674), 1, anon_sym_RBRACK, - STATE(9479), 1, + STATE(9222), 1, aux_sym_val_table_repeat1, - STATE(9806), 1, + STATE(9365), 1, sym_comment, - STATE(10538), 1, + STATE(10145), 1, sym_val_list, - [289148] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(9807), 1, - sym_comment, - ACTIONS(15030), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(15032), 2, - ts_builtin_sym_end, - anon_sym_LF, - [289163] = 3, + [288331] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9808), 1, + STATE(9366), 1, sym_comment, - ACTIONS(16319), 4, + ACTIONS(15676), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [289176] = 5, + [288344] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3693), 1, + anon_sym_LBRACE, + ACTIONS(15678), 1, + anon_sym_DOT_DOT2, + STATE(9367), 1, + sym_comment, + ACTIONS(15680), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [288361] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16321), 1, + ACTIONS(15682), 1, anon_sym_DQUOTE, - STATE(9809), 1, + STATE(9368), 1, sym_comment, - STATE(9812), 1, + STATE(9370), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [289193] = 4, + [288378] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16325), 1, - anon_sym_LF, - STATE(9810), 1, + STATE(9369), 1, sym_comment, - ACTIONS(16323), 3, + ACTIONS(14583), 2, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [289208] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(16329), 1, + anon_sym_PIPE, + ACTIONS(14585), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(9811), 1, - sym_comment, - ACTIONS(16327), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [289223] = 5, + [288393] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16331), 1, + ACTIONS(15684), 1, anon_sym_DQUOTE, - STATE(9704), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9812), 1, + STATE(9370), 1, sym_comment, - ACTIONS(15863), 2, + STATE(9411), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [289240] = 6, + [288410] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(3312), 1, + anon_sym_RBRACK, + ACTIONS(3314), 1, + sym__entry_separator, + ACTIONS(12748), 1, + anon_sym_DOT, + STATE(9371), 1, + sym_comment, + [288429] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(1261), 1, + anon_sym_DASH, + STATE(9372), 1, + sym_comment, + ACTIONS(1263), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [288444] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(16333), 1, + ACTIONS(15686), 1, anon_sym_RBRACK, - STATE(9813), 1, + STATE(9373), 1, sym_comment, - STATE(9814), 1, + STATE(9374), 1, aux_sym_val_table_repeat1, - STATE(10538), 1, + STATE(10145), 1, sym_val_list, - [289259] = 6, + [288463] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(16335), 1, + ACTIONS(15688), 1, anon_sym_RBRACK, - STATE(9479), 1, + STATE(9222), 1, aux_sym_val_table_repeat1, - STATE(9814), 1, + STATE(9374), 1, sym_comment, - STATE(10538), 1, + STATE(10145), 1, sym_val_list, - [289278] = 3, + [288482] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(9815), 1, + ACTIONS(3701), 1, + anon_sym_LBRACE, + ACTIONS(15690), 1, + anon_sym_DOT_DOT2, + STATE(9375), 1, + sym_comment, + ACTIONS(15692), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [288499] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(9376), 1, sym_comment, - ACTIONS(16337), 4, + ACTIONS(15694), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [289291] = 5, + [288512] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16339), 1, + ACTIONS(15696), 1, anon_sym_DQUOTE, - STATE(9816), 1, + STATE(9377), 1, sym_comment, - STATE(9817), 1, + STATE(9378), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [289308] = 5, + [288529] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16341), 1, + ACTIONS(15698), 1, anon_sym_DQUOTE, - STATE(9704), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9817), 1, + STATE(9378), 1, sym_comment, - ACTIONS(15863), 2, + STATE(9411), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [289325] = 6, + [288546] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(3314), 1, + anon_sym_LBRACE, + ACTIONS(15700), 1, + anon_sym_DOT_DOT2, + STATE(9379), 1, + sym_comment, + ACTIONS(15702), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [288563] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(16343), 1, + ACTIONS(15704), 1, anon_sym_RBRACK, - STATE(9818), 1, + STATE(9380), 1, sym_comment, - STATE(9819), 1, + STATE(9381), 1, aux_sym_val_table_repeat1, - STATE(10538), 1, + STATE(10145), 1, sym_val_list, - [289344] = 6, + [288582] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(16345), 1, + ACTIONS(15706), 1, anon_sym_RBRACK, - STATE(9479), 1, + STATE(9222), 1, aux_sym_val_table_repeat1, - STATE(9819), 1, + STATE(9381), 1, sym_comment, - STATE(10538), 1, + STATE(10145), 1, sym_val_list, - [289363] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(7748), 1, - anon_sym_LPAREN2, - ACTIONS(8430), 1, - anon_sym_RBRACK, - ACTIONS(8432), 1, - sym__entry_separator, - STATE(9820), 1, - sym_comment, - STATE(10595), 1, - sym__expr_parenthesized_immediate, - [289382] = 3, + [288601] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9821), 1, + STATE(9382), 1, sym_comment, - ACTIONS(16347), 4, + ACTIONS(15708), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [289395] = 5, + [288614] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16349), 1, + ACTIONS(15710), 1, anon_sym_DQUOTE, - STATE(9822), 1, + STATE(9383), 1, sym_comment, - STATE(9823), 1, + STATE(9384), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [289412] = 5, + [288631] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16351), 1, + ACTIONS(15712), 1, anon_sym_DQUOTE, - STATE(9704), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9823), 1, + STATE(9384), 1, sym_comment, - ACTIONS(15863), 2, + STATE(9411), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [289429] = 6, + [288648] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(16353), 1, + ACTIONS(15714), 1, anon_sym_RBRACK, - STATE(9824), 1, + STATE(9385), 1, sym_comment, - STATE(9825), 1, + STATE(9386), 1, aux_sym_val_table_repeat1, - STATE(10538), 1, + STATE(10145), 1, sym_val_list, - [289448] = 6, + [288667] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(16355), 1, + ACTIONS(15716), 1, anon_sym_RBRACK, - STATE(9479), 1, + STATE(9222), 1, aux_sym_val_table_repeat1, - STATE(9825), 1, + STATE(9386), 1, sym_comment, - STATE(10538), 1, + STATE(10145), 1, sym_val_list, - [289467] = 3, + [288686] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9826), 1, + STATE(9387), 1, sym_comment, - ACTIONS(16357), 4, + ACTIONS(15718), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [289480] = 5, + [288699] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16359), 1, + ACTIONS(15720), 1, anon_sym_DQUOTE, - STATE(9827), 1, + STATE(9388), 1, sym_comment, - STATE(9828), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, - sym__escaped_str_content, - sym_escape_sequence, - [289497] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(16361), 1, - anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9389), 1, aux_sym__str_double_quotes_repeat1, - STATE(9828), 1, - sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [289514] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1316), 1, - anon_sym_DASH, - STATE(9829), 1, - sym_comment, - ACTIONS(1318), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [289529] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(9830), 1, - sym_comment, - ACTIONS(16363), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [289542] = 5, + [288716] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16365), 1, + ACTIONS(15722), 1, anon_sym_DQUOTE, - STATE(9831), 1, + STATE(9389), 1, sym_comment, - STATE(9832), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, - sym__escaped_str_content, - sym_escape_sequence, - [289559] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(16367), 1, - anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(9832), 1, - sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [289576] = 3, + [288733] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9833), 1, + STATE(9390), 1, sym_comment, - ACTIONS(16369), 4, + ACTIONS(15724), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [289589] = 5, + [288746] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16371), 1, + ACTIONS(15726), 1, anon_sym_DQUOTE, - STATE(9834), 1, + STATE(9391), 1, sym_comment, - STATE(9835), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, - sym__escaped_str_content, - sym_escape_sequence, - [289606] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(16373), 1, - anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9392), 1, aux_sym__str_double_quotes_repeat1, - STATE(9835), 1, - sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [289623] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(9836), 1, - sym_comment, - ACTIONS(16375), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [289636] = 5, + [288763] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16377), 1, + ACTIONS(15728), 1, anon_sym_DQUOTE, - STATE(9837), 1, + STATE(9392), 1, sym_comment, - STATE(9838), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [289653] = 5, + [288780] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16379), 1, - anon_sym_DQUOTE, - STATE(9704), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9838), 1, + ACTIONS(15732), 1, + anon_sym_LF, + STATE(9393), 1, sym_comment, - ACTIONS(15863), 2, - sym__escaped_str_content, - sym_escape_sequence, - [289670] = 3, + ACTIONS(15730), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [288795] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9839), 1, + STATE(9394), 1, sym_comment, - ACTIONS(16381), 4, + ACTIONS(15734), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [289683] = 5, + [288808] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16383), 1, + ACTIONS(15736), 1, anon_sym_DQUOTE, - STATE(9840), 1, + STATE(9395), 1, sym_comment, - STATE(9841), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, - sym__escaped_str_content, - sym_escape_sequence, - [289700] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(16385), 1, - anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9396), 1, aux_sym__str_double_quotes_repeat1, - STATE(9841), 1, - sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [289717] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(9842), 1, - sym_comment, - ACTIONS(16387), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [289730] = 5, + [288825] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16389), 1, + ACTIONS(15738), 1, anon_sym_DQUOTE, - STATE(9843), 1, + STATE(9396), 1, sym_comment, - STATE(9844), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, - sym__escaped_str_content, - sym_escape_sequence, - [289747] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(16391), 1, - anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(9844), 1, - sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [289764] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(9845), 1, - sym_comment, - ACTIONS(16393), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [289777] = 3, + [288842] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9846), 1, + STATE(9397), 1, sym_comment, - ACTIONS(16395), 4, + ACTIONS(15740), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [289790] = 5, + [288855] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16397), 1, + ACTIONS(15742), 1, anon_sym_DQUOTE, - STATE(9847), 1, + STATE(9398), 1, sym_comment, - STATE(9848), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, - sym__escaped_str_content, - sym_escape_sequence, - [289807] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(16399), 1, - anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9399), 1, aux_sym__str_double_quotes_repeat1, - STATE(9848), 1, - sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [289824] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(9849), 1, - sym_comment, - ACTIONS(16401), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [289837] = 5, + [288872] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16403), 1, + ACTIONS(15744), 1, anon_sym_DQUOTE, - STATE(9850), 1, + STATE(9399), 1, sym_comment, - STATE(9851), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [289854] = 5, + [288889] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16405), 1, - anon_sym_DQUOTE, - STATE(9704), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9851), 1, + STATE(9400), 1, sym_comment, - ACTIONS(15863), 2, - sym__escaped_str_content, - sym_escape_sequence, - [289871] = 3, + ACTIONS(14330), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14332), 2, + ts_builtin_sym_end, + anon_sym_LF, + [288904] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9852), 1, + STATE(9401), 1, sym_comment, - ACTIONS(16407), 4, + ACTIONS(15746), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [289884] = 5, + [288917] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16409), 1, + ACTIONS(15748), 1, anon_sym_DQUOTE, - STATE(9853), 1, + STATE(9402), 1, sym_comment, - STATE(9854), 1, + STATE(9403), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [289901] = 5, + [288934] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16411), 1, + ACTIONS(15750), 1, anon_sym_DQUOTE, - STATE(9704), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9854), 1, + STATE(9403), 1, sym_comment, - ACTIONS(15863), 2, + STATE(9411), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [289918] = 3, + [288951] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9855), 1, + STATE(9404), 1, sym_comment, - ACTIONS(16413), 4, + ACTIONS(15752), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [289931] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(16415), 1, - anon_sym_DQUOTE, - STATE(9856), 1, - sym_comment, - STATE(9857), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, - sym__escaped_str_content, - sym_escape_sequence, - [289948] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(16417), 1, - anon_sym_DQUOTE, - STATE(9704), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9857), 1, - sym_comment, - ACTIONS(15863), 2, - sym__escaped_str_content, - sym_escape_sequence, - [289965] = 3, + [288964] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9858), 1, + STATE(9405), 1, sym_comment, - ACTIONS(16419), 4, + ACTIONS(15754), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [289978] = 5, + [288977] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16421), 1, + ACTIONS(15756), 1, anon_sym_DQUOTE, - STATE(9859), 1, + STATE(9406), 1, sym_comment, - STATE(9860), 1, + STATE(9407), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [289995] = 5, + [288994] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16423), 1, + ACTIONS(15758), 1, anon_sym_DQUOTE, - STATE(9704), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9860), 1, + STATE(9407), 1, sym_comment, - ACTIONS(15863), 2, + STATE(9411), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [290012] = 3, + [289011] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9861), 1, + STATE(9408), 1, sym_comment, - ACTIONS(16425), 4, + ACTIONS(15760), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [290025] = 5, + [289024] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16427), 1, + ACTIONS(15762), 1, anon_sym_DQUOTE, - STATE(9862), 1, + STATE(9409), 1, sym_comment, - STATE(9863), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, - sym__escaped_str_content, - sym_escape_sequence, - [290042] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(16429), 1, - anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9410), 1, aux_sym__str_double_quotes_repeat1, - STATE(9863), 1, - sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [290059] = 5, + [289041] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16431), 1, + ACTIONS(15764), 1, anon_sym_DQUOTE, - STATE(9864), 1, + STATE(9410), 1, sym_comment, - STATE(9917), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [290076] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(9865), 1, - sym_comment, - ACTIONS(16433), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [290089] = 5, + [289058] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16435), 1, + ACTIONS(15766), 1, anon_sym_DQUOTE, - STATE(9866), 1, - sym_comment, - STATE(9867), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15768), 2, sym__escaped_str_content, sym_escape_sequence, - [290106] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(16437), 1, - anon_sym_DQUOTE, - STATE(9704), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9867), 1, + STATE(9411), 2, sym_comment, - ACTIONS(15863), 2, - sym__escaped_str_content, - sym_escape_sequence, - [290123] = 3, + aux_sym__str_double_quotes_repeat1, + [289073] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9868), 1, + STATE(9412), 1, sym_comment, - ACTIONS(16439), 4, + ACTIONS(15771), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [290136] = 5, + [289086] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16441), 1, + ACTIONS(15773), 1, anon_sym_DQUOTE, - STATE(9869), 1, + STATE(9413), 1, sym_comment, - STATE(9870), 1, + STATE(9414), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [290153] = 5, + [289103] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16443), 1, + ACTIONS(15775), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(9870), 1, - sym_comment, - ACTIONS(15863), 2, - sym__escaped_str_content, - sym_escape_sequence, - [290170] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(15655), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(9871), 1, - sym_comment, - ACTIONS(1243), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH, - [290185] = 3, + STATE(9414), 1, + sym_comment, + ACTIONS(15253), 2, + sym__escaped_str_content, + sym_escape_sequence, + [289120] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9872), 1, + STATE(9415), 1, sym_comment, - ACTIONS(16445), 4, + ACTIONS(15777), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [290198] = 5, + [289133] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16447), 1, + ACTIONS(15779), 1, anon_sym_DQUOTE, - STATE(9873), 1, + STATE(9416), 1, sym_comment, - STATE(9874), 1, + STATE(9417), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [290215] = 5, + [289150] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16449), 1, + ACTIONS(15781), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(9874), 1, + STATE(9417), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [290232] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(9875), 1, - sym_comment, - ACTIONS(15026), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(15028), 2, - ts_builtin_sym_end, - anon_sym_LF, - [290247] = 3, + [289167] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9876), 1, + STATE(9418), 1, sym_comment, - ACTIONS(16451), 4, + ACTIONS(15783), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [290260] = 5, + [289180] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16453), 1, + ACTIONS(15785), 1, anon_sym_DQUOTE, - STATE(9877), 1, + STATE(9419), 1, sym_comment, - STATE(9878), 1, + STATE(9420), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [290277] = 5, + [289197] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16455), 1, + ACTIONS(15787), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(9878), 1, + STATE(9420), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [290294] = 3, + [289214] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9879), 1, + STATE(9421), 1, sym_comment, - ACTIONS(16457), 4, + ACTIONS(15789), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [290307] = 5, + [289227] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16459), 1, + ACTIONS(15791), 1, anon_sym_DQUOTE, - STATE(9880), 1, + STATE(9422), 1, sym_comment, - STATE(9881), 1, + STATE(9423), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [290324] = 5, + [289244] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16461), 1, + ACTIONS(15793), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(9881), 1, + STATE(9423), 1, + sym_comment, + ACTIONS(15253), 2, + sym__escaped_str_content, + sym_escape_sequence, + [289261] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(15795), 1, + anon_sym_DQUOTE, + STATE(9424), 1, sym_comment, - ACTIONS(15863), 2, + STATE(9465), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [290341] = 3, + [289278] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9882), 1, + STATE(9425), 1, sym_comment, - ACTIONS(16463), 4, + ACTIONS(15797), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [290354] = 5, + [289291] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16465), 1, + ACTIONS(15799), 1, anon_sym_DQUOTE, - STATE(9883), 1, + STATE(9426), 1, sym_comment, - STATE(9884), 1, + STATE(9427), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [290371] = 5, + [289308] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16467), 1, + ACTIONS(15801), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(9884), 1, + STATE(9427), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [290388] = 3, + [289325] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(9885), 1, + ACTIONS(1249), 1, + anon_sym_DASH, + STATE(9428), 1, + sym_comment, + ACTIONS(1251), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [289340] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(9429), 1, sym_comment, - ACTIONS(16469), 4, + ACTIONS(15803), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [290401] = 5, + [289353] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16471), 1, + ACTIONS(15805), 1, anon_sym_DQUOTE, - STATE(9886), 1, + STATE(9430), 1, sym_comment, - STATE(9887), 1, + STATE(9431), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [290418] = 5, + [289370] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16473), 1, + ACTIONS(15807), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(9887), 1, + STATE(9431), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [290435] = 3, + [289387] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9888), 1, + STATE(9432), 1, sym_comment, - ACTIONS(16475), 4, + ACTIONS(15809), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [290448] = 5, + [289400] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16477), 1, + ACTIONS(15811), 1, anon_sym_DQUOTE, - STATE(9889), 1, + STATE(9433), 1, sym_comment, - STATE(9890), 1, + STATE(9434), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [290465] = 5, + [289417] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16479), 1, + ACTIONS(15813), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(9890), 1, + STATE(9434), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [290482] = 3, + [289434] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9891), 1, + STATE(9435), 1, sym_comment, - ACTIONS(16481), 4, + ACTIONS(15815), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [290495] = 5, + [289447] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16483), 1, + ACTIONS(15817), 1, anon_sym_DQUOTE, - STATE(9892), 1, + STATE(9436), 1, sym_comment, - STATE(9893), 1, + STATE(9437), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [290512] = 5, + [289464] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16485), 1, + ACTIONS(15819), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(9893), 1, + STATE(9437), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [290529] = 3, + [289481] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9894), 1, + STATE(9438), 1, sym_comment, - ACTIONS(16487), 4, + ACTIONS(15821), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [290542] = 5, + [289494] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16489), 1, + ACTIONS(15823), 1, anon_sym_DQUOTE, - STATE(9895), 1, + STATE(9439), 1, sym_comment, - STATE(9896), 1, + STATE(9440), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [290559] = 5, + [289511] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16491), 1, + ACTIONS(15825), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(9896), 1, + STATE(9440), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [290576] = 3, + [289528] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9897), 1, + STATE(9441), 1, sym_comment, - ACTIONS(16493), 4, + ACTIONS(15827), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [290589] = 5, + [289541] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16495), 1, + ACTIONS(15829), 1, anon_sym_DQUOTE, - STATE(9898), 1, + STATE(9442), 1, sym_comment, - STATE(9899), 1, + STATE(9443), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [290606] = 5, + [289558] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16497), 1, + ACTIONS(15831), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(9899), 1, + STATE(9443), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [290623] = 3, + [289575] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9900), 1, + STATE(9444), 1, sym_comment, - ACTIONS(16499), 4, + ACTIONS(15833), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [290636] = 5, + [289588] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16501), 1, + ACTIONS(15835), 1, anon_sym_DQUOTE, - STATE(9901), 1, + STATE(9445), 1, sym_comment, - STATE(9902), 1, + STATE(9446), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [290653] = 5, + [289605] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16503), 1, + ACTIONS(15837), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(9902), 1, + STATE(9446), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [290670] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(9903), 1, - sym_comment, - ACTIONS(15030), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(15032), 2, - ts_builtin_sym_end, - anon_sym_LF, - [290685] = 3, + [289622] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9904), 1, + STATE(9447), 1, sym_comment, - ACTIONS(16505), 4, + ACTIONS(15839), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [290698] = 5, + [289635] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16507), 1, + ACTIONS(15841), 1, anon_sym_DQUOTE, - STATE(9905), 1, + STATE(9448), 1, sym_comment, - STATE(9906), 1, + STATE(9449), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [290715] = 5, + [289652] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16509), 1, + ACTIONS(15843), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(9906), 1, + STATE(9449), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [290732] = 3, + [289669] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9907), 1, + STATE(9450), 1, sym_comment, - ACTIONS(16511), 4, + ACTIONS(15845), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [290745] = 5, + [289682] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16513), 1, + ACTIONS(15847), 1, anon_sym_DQUOTE, - STATE(9908), 1, + STATE(9451), 1, sym_comment, - STATE(9909), 1, + STATE(9452), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [290762] = 5, + [289699] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16515), 1, + ACTIONS(15849), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(9909), 1, + STATE(9452), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [290779] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(9910), 1, - sym_comment, - ACTIONS(15026), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(15028), 2, - ts_builtin_sym_end, - anon_sym_LF, - [290794] = 3, + [289716] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9911), 1, + STATE(9453), 1, sym_comment, - ACTIONS(16517), 4, + ACTIONS(15851), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [290807] = 5, + [289729] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16519), 1, + ACTIONS(15853), 1, anon_sym_DQUOTE, - STATE(9912), 1, + STATE(9454), 1, sym_comment, - STATE(9913), 1, + STATE(9455), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [290824] = 5, + [289746] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16521), 1, + ACTIONS(15855), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(9913), 1, + STATE(9455), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [290841] = 3, + [289763] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9914), 1, + STATE(9456), 1, sym_comment, - ACTIONS(16523), 4, + ACTIONS(15857), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [290854] = 5, + [289776] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16525), 1, + ACTIONS(15859), 1, anon_sym_DQUOTE, - STATE(9915), 1, + STATE(9457), 1, sym_comment, - STATE(9916), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, - sym__escaped_str_content, - sym_escape_sequence, - [290871] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(16527), 1, - anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9458), 1, aux_sym__str_double_quotes_repeat1, - STATE(9916), 1, - sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [290888] = 5, + [289793] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16529), 1, + ACTIONS(15861), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(9917), 1, + STATE(9458), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [290905] = 3, + [289810] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9918), 1, + STATE(9459), 1, sym_comment, - ACTIONS(16531), 4, + ACTIONS(15863), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [290918] = 5, + [289823] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16533), 1, + ACTIONS(15865), 1, anon_sym_DQUOTE, - STATE(9919), 1, + STATE(9460), 1, sym_comment, - STATE(9920), 1, + STATE(9461), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [290935] = 5, + [289840] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16535), 1, + ACTIONS(15867), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(9920), 1, + STATE(9461), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [290952] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1342), 1, - anon_sym_DASH, - STATE(9921), 1, - sym_comment, - ACTIONS(1344), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [290967] = 3, + [289857] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9922), 1, + STATE(9462), 1, sym_comment, - ACTIONS(16537), 4, + ACTIONS(15869), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [290980] = 5, + [289870] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16539), 1, + ACTIONS(15871), 1, anon_sym_DQUOTE, - STATE(9923), 1, + STATE(9463), 1, sym_comment, - STATE(9924), 1, + STATE(9464), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [290997] = 5, + [289887] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16541), 1, + ACTIONS(15873), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(9924), 1, + STATE(9464), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [291014] = 4, + [289904] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(9925), 1, + ACTIONS(15875), 1, + anon_sym_DQUOTE, + STATE(9411), 1, + aux_sym__str_double_quotes_repeat1, + STATE(9465), 1, sym_comment, - ACTIONS(15030), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(15032), 2, - ts_builtin_sym_end, - anon_sym_LF, - [291029] = 3, + ACTIONS(15253), 2, + sym__escaped_str_content, + sym_escape_sequence, + [289921] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9926), 1, + STATE(9466), 1, sym_comment, - ACTIONS(16543), 4, + ACTIONS(15877), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [291042] = 5, + [289934] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16545), 1, + ACTIONS(15879), 1, anon_sym_DQUOTE, - STATE(9927), 1, + STATE(9467), 1, sym_comment, - STATE(9928), 1, + STATE(9468), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [291059] = 5, + [289951] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16547), 1, + ACTIONS(15881), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(9928), 1, + STATE(9468), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [291076] = 3, + [289968] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(9929), 1, + ACTIONS(994), 1, + anon_sym_COLON, + ACTIONS(11698), 1, + anon_sym_DOT, + STATE(4387), 1, + sym_cell_path, + STATE(6635), 1, + sym_path, + STATE(9469), 1, + sym_comment, + [289987] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(9470), 1, sym_comment, - ACTIONS(16549), 4, + ACTIONS(15883), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [291089] = 5, + [290000] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16551), 1, + ACTIONS(15885), 1, anon_sym_DQUOTE, - STATE(9930), 1, + STATE(9471), 1, sym_comment, - STATE(9931), 1, + STATE(9472), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [291106] = 5, + [290017] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16553), 1, + ACTIONS(15887), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(9931), 1, + STATE(9472), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [291123] = 3, + [290034] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(9473), 1, + sym_comment, + ACTIONS(14310), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14312), 2, + ts_builtin_sym_end, + anon_sym_LF, + [290049] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9932), 1, + STATE(9474), 1, sym_comment, - ACTIONS(16555), 4, + ACTIONS(15889), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [291136] = 5, + [290062] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16557), 1, + ACTIONS(15891), 1, anon_sym_DQUOTE, - STATE(9933), 1, + STATE(9475), 1, sym_comment, - STATE(9934), 1, + STATE(9476), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [291153] = 5, + [290079] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16559), 1, + ACTIONS(15893), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(9934), 1, + STATE(9476), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [291170] = 3, + [290096] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(9477), 1, + sym_comment, + ACTIONS(14314), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14316), 2, + ts_builtin_sym_end, + anon_sym_LF, + [290111] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9935), 1, + STATE(9478), 1, sym_comment, - ACTIONS(16561), 4, + ACTIONS(15895), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [291183] = 5, + [290124] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16563), 1, + ACTIONS(15897), 1, anon_sym_DQUOTE, - STATE(9936), 1, + STATE(9479), 1, sym_comment, - STATE(9937), 1, + STATE(9480), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [291200] = 5, + [290141] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16565), 1, + ACTIONS(15899), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(9937), 1, + STATE(9480), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [291217] = 3, + [290158] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9938), 1, + STATE(9481), 1, sym_comment, - ACTIONS(16567), 4, + ACTIONS(15901), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [291230] = 5, + [290171] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16569), 1, + ACTIONS(15903), 1, anon_sym_DQUOTE, - STATE(9939), 1, + STATE(9482), 1, sym_comment, - STATE(9940), 1, + STATE(9483), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [291247] = 5, + [290188] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16571), 1, + ACTIONS(15905), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(9940), 1, + STATE(9483), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [291264] = 3, + [290205] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9941), 1, + STATE(9484), 1, sym_comment, - ACTIONS(16573), 4, + ACTIONS(15907), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [291277] = 5, + [290218] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16575), 1, + ACTIONS(15909), 1, anon_sym_DQUOTE, - STATE(9942), 1, + STATE(9485), 1, sym_comment, - STATE(9943), 1, + STATE(9486), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [291294] = 5, + [290235] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16577), 1, + ACTIONS(15911), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(9943), 1, + STATE(9486), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [291311] = 3, + [290252] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9944), 1, + STATE(9487), 1, sym_comment, - ACTIONS(16579), 4, + ACTIONS(15913), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [291324] = 5, + [290265] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16581), 1, + ACTIONS(15915), 1, anon_sym_DQUOTE, - STATE(9945), 1, + STATE(9488), 1, sym_comment, - STATE(9946), 1, + STATE(9489), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [291341] = 5, + [290282] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16583), 1, + ACTIONS(15917), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(9946), 1, + STATE(9489), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [291358] = 6, + [290299] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(16585), 1, + ACTIONS(15919), 1, anon_sym_RBRACK, - STATE(9947), 1, + STATE(9490), 1, sym_comment, - STATE(9984), 1, + STATE(9526), 1, aux_sym_val_table_repeat1, - STATE(10538), 1, + STATE(10145), 1, sym_val_list, - [291377] = 3, + [290318] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9948), 1, + STATE(9491), 1, sym_comment, - ACTIONS(16587), 4, + ACTIONS(15921), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [291390] = 5, + [290331] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16589), 1, + ACTIONS(15923), 1, anon_sym_DQUOTE, - STATE(9949), 1, + STATE(9492), 1, sym_comment, - STATE(9950), 1, + STATE(9493), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [291407] = 5, + [290348] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16591), 1, + ACTIONS(15925), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(9950), 1, + STATE(9493), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [291424] = 3, + [290365] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9951), 1, + STATE(9494), 1, sym_comment, - ACTIONS(16593), 4, + ACTIONS(15927), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [291437] = 5, + [290378] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16595), 1, + ACTIONS(15929), 1, anon_sym_DQUOTE, - STATE(9952), 1, + STATE(9495), 1, sym_comment, - STATE(9953), 1, + STATE(9496), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [291454] = 5, + [290395] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16597), 1, + ACTIONS(15931), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(9953), 1, + STATE(9496), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [291471] = 3, + [290412] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9954), 1, + STATE(9497), 1, sym_comment, - ACTIONS(16599), 4, + ACTIONS(15933), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [291484] = 5, + [290425] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16601), 1, + ACTIONS(15935), 1, anon_sym_DQUOTE, - STATE(9955), 1, + STATE(9498), 1, sym_comment, - STATE(9956), 1, + STATE(9499), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [291501] = 5, + [290442] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16603), 1, + ACTIONS(15937), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(9956), 1, + STATE(9499), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [291518] = 3, + [290459] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9957), 1, + STATE(9500), 1, sym_comment, - ACTIONS(16605), 4, + ACTIONS(15939), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [291531] = 5, + [290472] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16607), 1, + ACTIONS(15941), 1, anon_sym_DQUOTE, - STATE(9958), 1, + STATE(9501), 1, sym_comment, - STATE(9959), 1, + STATE(9502), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [291548] = 5, + [290489] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16609), 1, + ACTIONS(15943), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(9959), 1, + STATE(9502), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [291565] = 3, + [290506] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9960), 1, + STATE(9503), 1, sym_comment, - ACTIONS(16611), 4, + ACTIONS(15945), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [291578] = 5, + [290519] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16613), 1, + ACTIONS(15947), 1, anon_sym_DQUOTE, - STATE(9961), 1, + STATE(9504), 1, sym_comment, - STATE(9962), 1, + STATE(9505), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [291595] = 5, + [290536] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16615), 1, + ACTIONS(15949), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(9962), 1, + STATE(9505), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [291612] = 3, + [290553] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9963), 1, + STATE(9506), 1, sym_comment, - ACTIONS(16617), 4, + ACTIONS(15951), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [291625] = 5, + [290566] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16619), 1, + ACTIONS(15953), 1, anon_sym_DQUOTE, - STATE(9964), 1, + STATE(9507), 1, sym_comment, - STATE(9965), 1, + STATE(9508), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [291642] = 5, + [290583] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16621), 1, + ACTIONS(15955), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(9965), 1, + STATE(9508), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [291659] = 3, + [290600] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(9966), 1, + ACTIONS(920), 1, + sym_identifier, + ACTIONS(922), 1, + anon_sym_DOLLAR, + ACTIONS(10386), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(15957), 1, + aux_sym_unquoted_token2, + STATE(9509), 1, + sym_comment, + [290619] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(9510), 1, sym_comment, - ACTIONS(16623), 4, + ACTIONS(15959), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [291672] = 5, + [290632] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16625), 1, + ACTIONS(15961), 1, anon_sym_DQUOTE, - STATE(9967), 1, + STATE(9511), 1, sym_comment, - STATE(9968), 1, + STATE(9512), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [291689] = 5, + [290649] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16627), 1, + ACTIONS(15963), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(9968), 1, + STATE(9512), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [291706] = 3, + [290666] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9969), 1, + STATE(9513), 1, sym_comment, - ACTIONS(16629), 4, + ACTIONS(15965), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [291719] = 5, + [290679] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16631), 1, + ACTIONS(15967), 1, anon_sym_DQUOTE, - STATE(9970), 1, + STATE(9514), 1, sym_comment, - STATE(9971), 1, + STATE(9515), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [291736] = 5, + [290696] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16633), 1, + ACTIONS(15969), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(9971), 1, + STATE(9515), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [291753] = 3, + [290713] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9972), 1, + STATE(9516), 1, sym_comment, - ACTIONS(16635), 4, + ACTIONS(15971), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [291766] = 5, + [290726] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16637), 1, + ACTIONS(15973), 1, anon_sym_DQUOTE, - STATE(9973), 1, + STATE(9517), 1, sym_comment, - STATE(9974), 1, + STATE(9518), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [291783] = 5, + [290743] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16639), 1, + ACTIONS(15975), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(9974), 1, + STATE(9518), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [291800] = 3, + [290760] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9975), 1, + STATE(9519), 1, sym_comment, - ACTIONS(16641), 4, + ACTIONS(15977), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [291813] = 5, + [290773] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16643), 1, + ACTIONS(15979), 1, anon_sym_DQUOTE, - STATE(9976), 1, + STATE(9520), 1, sym_comment, - STATE(9977), 1, + STATE(9521), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [291830] = 5, + [290790] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16645), 1, + ACTIONS(15981), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(9977), 1, + STATE(9521), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [291847] = 3, + [290807] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(9522), 1, + sym_comment, + ACTIONS(14326), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14328), 2, + ts_builtin_sym_end, + anon_sym_LF, + [290822] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9978), 1, + STATE(9523), 1, sym_comment, - ACTIONS(16647), 4, + ACTIONS(15983), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [291860] = 5, + [290835] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16649), 1, + ACTIONS(15985), 1, anon_sym_DQUOTE, - STATE(9979), 1, + STATE(9524), 1, sym_comment, - STATE(9980), 1, + STATE(9525), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [291877] = 5, + [290852] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16651), 1, + ACTIONS(15987), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(9980), 1, + STATE(9525), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [291894] = 4, - ACTIONS(113), 1, + [290869] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(9981), 1, + ACTIONS(15247), 1, + anon_sym_LBRACK, + ACTIONS(15989), 1, + anon_sym_RBRACK, + STATE(9222), 1, + aux_sym_val_table_repeat1, + STATE(9526), 1, sym_comment, - ACTIONS(15604), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(15606), 2, - ts_builtin_sym_end, - anon_sym_LF, - [291909] = 5, + STATE(10145), 1, + sym_val_list, + [290888] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(9527), 1, + sym_comment, + ACTIONS(15991), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [290901] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16653), 1, + ACTIONS(15993), 1, anon_sym_DQUOTE, - STATE(9982), 1, + STATE(9528), 1, sym_comment, - STATE(9983), 1, + STATE(9529), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [291926] = 5, + [290918] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16655), 1, + ACTIONS(15995), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(9983), 1, + STATE(9529), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [291943] = 6, + [290935] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, - anon_sym_LBRACK, - ACTIONS(16657), 1, - anon_sym_RBRACK, - STATE(9479), 1, - aux_sym_val_table_repeat1, - STATE(9984), 1, + STATE(9530), 1, sym_comment, - STATE(10538), 1, - sym_val_list, - [291962] = 5, + ACTIONS(15997), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [290948] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16659), 1, + ACTIONS(15999), 1, anon_sym_DQUOTE, - STATE(9985), 1, + STATE(9531), 1, sym_comment, - STATE(9986), 1, + STATE(9532), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [291979] = 5, + [290965] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16661), 1, + ACTIONS(16001), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(9986), 1, + STATE(9532), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [291996] = 5, + [290982] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16663), 1, + ACTIONS(16003), 1, anon_sym_DQUOTE, - STATE(9987), 1, + STATE(9533), 1, sym_comment, - STATE(9988), 1, + STATE(9534), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [292013] = 5, + [290999] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16665), 1, + ACTIONS(16005), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(9988), 1, + STATE(9534), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [292030] = 5, + [291016] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16667), 1, + ACTIONS(16007), 1, anon_sym_DQUOTE, - STATE(9989), 1, + STATE(9535), 1, sym_comment, - STATE(9990), 1, + STATE(9536), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [292047] = 5, + [291033] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16669), 1, + ACTIONS(16009), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(9990), 1, + STATE(9536), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [292064] = 5, + [291050] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16671), 1, + ACTIONS(16011), 1, anon_sym_DQUOTE, - STATE(9991), 1, + STATE(9537), 1, sym_comment, - STATE(9992), 1, + STATE(9538), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [292081] = 5, + [291067] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16673), 1, + ACTIONS(16013), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(9992), 1, + STATE(9538), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [292098] = 5, + [291084] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16675), 1, + ACTIONS(16015), 1, anon_sym_DQUOTE, - STATE(9993), 1, + STATE(9539), 1, sym_comment, - STATE(9994), 1, + STATE(9540), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [292115] = 5, + [291101] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16677), 1, + ACTIONS(16017), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(9994), 1, + STATE(9540), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [292132] = 5, + [291118] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16679), 1, + ACTIONS(16019), 1, anon_sym_DQUOTE, - STATE(9995), 1, + STATE(9541), 1, sym_comment, - STATE(9996), 1, + STATE(9542), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [292149] = 5, + [291135] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16681), 1, + ACTIONS(16021), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(9996), 1, + STATE(9542), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [292166] = 5, + [291152] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16683), 1, + ACTIONS(16023), 1, anon_sym_DQUOTE, - STATE(9997), 1, + STATE(9543), 1, sym_comment, - STATE(9998), 1, + STATE(9544), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [292183] = 5, + [291169] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16685), 1, + ACTIONS(16025), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(9998), 1, + STATE(9544), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [292200] = 5, + [291186] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16687), 1, + ACTIONS(16027), 1, anon_sym_DQUOTE, - STATE(9999), 1, + STATE(9545), 1, sym_comment, - STATE(10000), 1, + STATE(9546), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [292217] = 5, + [291203] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16689), 1, + ACTIONS(16029), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(10000), 1, + STATE(9546), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [292234] = 5, + [291220] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16691), 1, + ACTIONS(16031), 1, anon_sym_DQUOTE, - STATE(10001), 1, + STATE(9547), 1, sym_comment, - STATE(10002), 1, + STATE(9548), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [292251] = 5, + [291237] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16693), 1, + ACTIONS(16033), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(10002), 1, + STATE(9548), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [292268] = 5, + [291254] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16695), 1, + ACTIONS(16035), 1, anon_sym_DQUOTE, - STATE(10003), 1, + STATE(9549), 1, sym_comment, - STATE(10004), 1, + STATE(9550), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [292285] = 5, + [291271] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16697), 1, + ACTIONS(16037), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(10004), 1, + STATE(9550), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [292302] = 5, + [291288] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16699), 1, + ACTIONS(16039), 1, anon_sym_DQUOTE, - STATE(10005), 1, + STATE(9551), 1, sym_comment, - STATE(10006), 1, + STATE(9552), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [292319] = 5, + [291305] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16701), 1, + ACTIONS(16041), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(10006), 1, + STATE(9552), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [292336] = 5, + [291322] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16703), 1, + ACTIONS(16043), 1, anon_sym_DQUOTE, - STATE(10007), 1, + STATE(9553), 1, sym_comment, - STATE(10008), 1, + STATE(9554), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [292353] = 5, + [291339] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16705), 1, + ACTIONS(16045), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(10008), 1, + STATE(9554), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [292370] = 5, + [291356] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16707), 1, + ACTIONS(16047), 1, anon_sym_DQUOTE, - STATE(10009), 1, + STATE(9555), 1, sym_comment, - STATE(10010), 1, + STATE(9556), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [292387] = 5, + [291373] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16709), 1, + ACTIONS(16049), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(10010), 1, + STATE(9556), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [292404] = 5, + [291390] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16711), 1, + ACTIONS(16051), 1, anon_sym_DQUOTE, - STATE(10011), 1, + STATE(9557), 1, sym_comment, - STATE(10012), 1, + STATE(9558), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [292421] = 5, + [291407] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16713), 1, + ACTIONS(16053), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(10012), 1, + STATE(9558), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [292438] = 5, + [291424] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16715), 1, + ACTIONS(16055), 1, anon_sym_DQUOTE, - STATE(10013), 1, + STATE(9559), 1, sym_comment, - STATE(10014), 1, + STATE(9560), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [292455] = 5, + [291441] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16717), 1, + ACTIONS(16057), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(10014), 1, + STATE(9560), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [292472] = 5, + [291458] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16719), 1, + ACTIONS(16059), 1, anon_sym_DQUOTE, - STATE(10015), 1, + STATE(9561), 1, sym_comment, - STATE(10016), 1, + STATE(9562), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [292489] = 5, + [291475] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16721), 1, + ACTIONS(16061), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(10016), 1, + STATE(9562), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [292506] = 5, + [291492] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16723), 1, + ACTIONS(16063), 1, anon_sym_DQUOTE, - STATE(10017), 1, + STATE(9563), 1, sym_comment, - STATE(10018), 1, + STATE(9564), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [292523] = 5, + [291509] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16725), 1, + ACTIONS(16065), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(10018), 1, + STATE(9564), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [292540] = 5, + [291526] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16727), 1, + ACTIONS(16067), 1, anon_sym_DQUOTE, - STATE(10019), 1, + STATE(9565), 1, sym_comment, - STATE(10020), 1, + STATE(9566), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [292557] = 5, + [291543] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16729), 1, + ACTIONS(16069), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(10020), 1, + STATE(9566), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [292574] = 5, + [291560] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16731), 1, + ACTIONS(16071), 1, anon_sym_DQUOTE, - STATE(10021), 1, + STATE(9567), 1, sym_comment, - STATE(10022), 1, + STATE(9568), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [292591] = 5, + [291577] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16733), 1, + ACTIONS(16073), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9411), 1, aux_sym__str_double_quotes_repeat1, - STATE(10022), 1, + STATE(9568), 1, sym_comment, - ACTIONS(15863), 2, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [292608] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(10023), 1, - sym_comment, - ACTIONS(15626), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(15628), 2, - ts_builtin_sym_end, - anon_sym_LF, - [292623] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(10024), 1, - sym_comment, - ACTIONS(15026), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(15028), 2, - ts_builtin_sym_end, - anon_sym_LF, - [292638] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(10025), 1, - sym_comment, - ACTIONS(15030), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(15032), 2, - ts_builtin_sym_end, - anon_sym_LF, - [292653] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15891), 1, - anon_sym_LBRACK, - ACTIONS(15893), 1, - anon_sym_LPAREN, - STATE(9584), 1, - sym_parameter_parens, - STATE(9585), 1, - sym_parameter_bracks, - STATE(10026), 1, - sym_comment, - [292672] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(10027), 1, - sym_comment, - ACTIONS(15026), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(15028), 2, - ts_builtin_sym_end, - anon_sym_LF, - [292687] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(10028), 1, - sym_comment, - ACTIONS(15030), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(15032), 2, - ts_builtin_sym_end, - anon_sym_LF, - [292702] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(10029), 1, - sym_comment, - ACTIONS(15026), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(15028), 2, - ts_builtin_sym_end, - anon_sym_LF, - [292717] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(10030), 1, - sym_comment, - ACTIONS(15030), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(15032), 2, - ts_builtin_sym_end, - anon_sym_LF, - [292732] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1346), 1, - anon_sym_DASH, - STATE(10031), 1, - sym_comment, - ACTIONS(1348), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [292747] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(10032), 1, - sym_comment, - ACTIONS(15026), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(15028), 2, - ts_builtin_sym_end, - anon_sym_LF, - [292762] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(10033), 1, - sym_comment, - ACTIONS(15030), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(15032), 2, - ts_builtin_sym_end, - anon_sym_LF, - [292777] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(10034), 1, - sym_comment, - ACTIONS(15026), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(15028), 2, - ts_builtin_sym_end, - anon_sym_LF, - [292792] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(10035), 1, - sym_comment, - ACTIONS(14882), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14884), 2, - ts_builtin_sym_end, - anon_sym_LF, - [292807] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(10036), 1, - sym_comment, - ACTIONS(14891), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14893), 2, - ts_builtin_sym_end, - anon_sym_LF, - [292822] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3951), 1, - anon_sym_in, - ACTIONS(16735), 1, - anon_sym_DOT_DOT2, - STATE(10037), 1, - sym_comment, - ACTIONS(16737), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [292839] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3966), 1, - anon_sym_in, - ACTIONS(16739), 1, - anon_sym_DOT_DOT2, - STATE(10038), 1, - sym_comment, - ACTIONS(16741), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [292856] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4045), 1, - anon_sym_in, - ACTIONS(16743), 1, - anon_sym_DOT_DOT2, - STATE(10039), 1, - sym_comment, - ACTIONS(16745), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [292873] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(10040), 1, - sym_comment, - ACTIONS(14882), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14884), 2, - ts_builtin_sym_end, - anon_sym_LF, - [292888] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(10041), 1, - sym_comment, - ACTIONS(14891), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14893), 2, - ts_builtin_sym_end, - anon_sym_LF, - [292903] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(10042), 1, - sym_comment, - ACTIONS(14882), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14884), 2, - ts_builtin_sym_end, - anon_sym_LF, - [292918] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(10043), 1, - sym_comment, - ACTIONS(14891), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14893), 2, - ts_builtin_sym_end, - anon_sym_LF, - [292933] = 4, + [291594] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10044), 1, + STATE(9569), 1, sym_comment, - ACTIONS(14882), 2, + ACTIONS(14579), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14884), 2, + ACTIONS(14581), 2, ts_builtin_sym_end, anon_sym_LF, - [292948] = 4, + [291609] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10045), 1, - sym_comment, - ACTIONS(14891), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14893), 2, - ts_builtin_sym_end, + ACTIONS(16077), 1, anon_sym_LF, - [292963] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(10046), 1, + STATE(9570), 1, sym_comment, - ACTIONS(14882), 2, + ACTIONS(16075), 3, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(14884), 2, - ts_builtin_sym_end, - anon_sym_LF, - [292978] = 3, + [291624] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(10047), 1, + ACTIONS(7395), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(16079), 1, + aux_sym__immediate_decimal_token1, + STATE(9571), 1, sym_comment, - ACTIONS(16747), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [292991] = 4, + ACTIONS(2231), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [291641] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10048), 1, + STATE(9572), 1, sym_comment, - ACTIONS(14891), 2, + ACTIONS(14583), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14893), 2, + ACTIONS(14585), 2, ts_builtin_sym_end, anon_sym_LF, - [293006] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1362), 1, - anon_sym_DASH, - STATE(10049), 1, - sym_comment, - ACTIONS(1364), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [293021] = 4, + [291656] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10050), 1, + STATE(9573), 1, sym_comment, - ACTIONS(14882), 2, + ACTIONS(14579), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14884), 2, + ACTIONS(14581), 2, ts_builtin_sym_end, anon_sym_LF, - [293036] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(16749), 1, - anon_sym_DQUOTE, - STATE(10051), 1, - sym_comment, - STATE(10058), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, - sym__escaped_str_content, - sym_escape_sequence, - [293053] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2437), 1, - aux_sym_unquoted_token2, - STATE(10052), 1, - sym_comment, - ACTIONS(2439), 3, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT, - [293068] = 4, + [291671] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10053), 1, + STATE(9574), 1, sym_comment, - ACTIONS(14891), 2, + ACTIONS(14583), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14893), 2, + ACTIONS(14585), 2, ts_builtin_sym_end, anon_sym_LF, - [293083] = 4, + [291686] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10054), 1, + STATE(9575), 1, sym_comment, - ACTIONS(14882), 2, + ACTIONS(14579), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14884), 2, + ACTIONS(14581), 2, ts_builtin_sym_end, anon_sym_LF, - [293098] = 6, + [291701] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15891), 1, + ACTIONS(15337), 1, anon_sym_LBRACK, - ACTIONS(15893), 1, + ACTIONS(15339), 1, anon_sym_LPAREN, - STATE(9604), 1, - sym_parameter_parens, - STATE(9605), 1, - sym_parameter_bracks, - STATE(10055), 1, + STATE(9576), 1, sym_comment, - [293117] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15891), 1, - anon_sym_LBRACK, - ACTIONS(15893), 1, - anon_sym_LPAREN, - STATE(9611), 1, + STATE(9678), 1, sym_parameter_parens, - STATE(9612), 1, + STATE(9679), 1, sym_parameter_bracks, - STATE(10056), 1, - sym_comment, - [293136] = 4, + [291720] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10057), 1, + ACTIONS(16083), 1, + anon_sym_LF, + STATE(9577), 1, sym_comment, - ACTIONS(14891), 2, + ACTIONS(16081), 3, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(14893), 2, - ts_builtin_sym_end, - anon_sym_LF, - [293151] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(16751), 1, - anon_sym_DQUOTE, - STATE(9704), 1, - aux_sym__str_double_quotes_repeat1, - STATE(10058), 1, - sym_comment, - ACTIONS(15863), 2, - sym__escaped_str_content, - sym_escape_sequence, - [293168] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15891), 1, - anon_sym_LBRACK, - ACTIONS(15893), 1, - anon_sym_LPAREN, - STATE(9628), 1, - sym_parameter_parens, - STATE(9630), 1, - sym_parameter_bracks, - STATE(10059), 1, - sym_comment, - [293187] = 4, + [291735] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10060), 1, + STATE(9578), 1, sym_comment, - ACTIONS(14882), 2, + ACTIONS(14583), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14884), 2, + ACTIONS(14585), 2, ts_builtin_sym_end, anon_sym_LF, - [293202] = 4, + [291750] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10061), 1, + STATE(9579), 1, sym_comment, - ACTIONS(14891), 2, + ACTIONS(14579), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14893), 2, + ACTIONS(14581), 2, ts_builtin_sym_end, anon_sym_LF, - [293217] = 4, + [291765] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10062), 1, + STATE(9580), 1, sym_comment, - ACTIONS(14882), 2, + ACTIONS(14583), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14884), 2, + ACTIONS(14585), 2, ts_builtin_sym_end, anon_sym_LF, - [293232] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15865), 1, - anon_sym_LBRACK, - ACTIONS(16753), 1, - anon_sym_RBRACK, - STATE(10063), 1, - sym_comment, - STATE(10066), 1, - aux_sym_val_table_repeat1, - STATE(10538), 1, - sym_val_list, - [293251] = 4, + [291780] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10064), 1, + STATE(9581), 1, sym_comment, - ACTIONS(14891), 2, + ACTIONS(14579), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14893), 2, + ACTIONS(14581), 2, ts_builtin_sym_end, anon_sym_LF, - [293266] = 4, + [291795] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10065), 1, + STATE(9582), 1, sym_comment, - ACTIONS(14882), 2, + ACTIONS(14583), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14884), 2, + ACTIONS(14585), 2, ts_builtin_sym_end, anon_sym_LF, - [293281] = 6, - ACTIONS(3), 1, + [291810] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15865), 1, - anon_sym_LBRACK, - ACTIONS(16755), 1, - anon_sym_RBRACK, - STATE(9479), 1, - aux_sym_val_table_repeat1, - STATE(10066), 1, + ACTIONS(16087), 1, + anon_sym_LF, + STATE(9583), 1, sym_comment, - STATE(10538), 1, - sym_val_list, - [293300] = 5, + ACTIONS(16085), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + [291825] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5011), 1, + ACTIONS(3574), 1, anon_sym_DASH, - ACTIONS(16757), 1, - anon_sym_EQ, - STATE(10067), 1, + ACTIONS(13409), 1, + aux_sym__immediate_decimal_token1, + STATE(9584), 1, sym_comment, - ACTIONS(5015), 2, - sym_identifier, + ACTIONS(3576), 2, anon_sym_DASH_DASH, - [293317] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(10068), 1, - sym_comment, - ACTIONS(14891), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14893), 2, - ts_builtin_sym_end, - anon_sym_LF, - [293332] = 4, + anon_sym_LBRACE, + [291842] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10069), 1, + STATE(9585), 1, sym_comment, - ACTIONS(14882), 2, + ACTIONS(14310), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14884), 2, + ACTIONS(14312), 2, ts_builtin_sym_end, anon_sym_LF, - [293347] = 5, + [291857] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3520), 1, - anon_sym_EQ_GT, - ACTIONS(16759), 1, + ACTIONS(3713), 1, + anon_sym_LBRACE, + ACTIONS(16089), 1, anon_sym_DOT_DOT2, - STATE(10070), 1, + STATE(9586), 1, sym_comment, - ACTIONS(16761), 2, + ACTIONS(16091), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [293364] = 4, + [291874] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10071), 1, + STATE(9587), 1, sym_comment, - ACTIONS(14891), 2, + ACTIONS(14326), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14893), 2, + ACTIONS(14328), 2, ts_builtin_sym_end, anon_sym_LF, - [293379] = 4, + [291889] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(10072), 1, + ACTIONS(920), 1, + anon_sym_RBRACK, + ACTIONS(922), 1, + sym__entry_separator, + ACTIONS(10312), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(16093), 1, + aux_sym_unquoted_token2, + STATE(9588), 1, sym_comment, - ACTIONS(14882), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14884), 2, - ts_builtin_sym_end, - anon_sym_LF, - [293394] = 4, + [291908] = 3, ACTIONS(113), 1, anon_sym_POUND, - STATE(10073), 1, + STATE(9589), 1, sym_comment, - ACTIONS(14891), 2, - anon_sym_SEMI, + ACTIONS(1155), 4, anon_sym_PIPE, - ACTIONS(14893), 2, - ts_builtin_sym_end, - anon_sym_LF, - [293409] = 4, + anon_sym_if, + anon_sym_EQ_GT, + aux_sym_unquoted_token6, + [291921] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(10074), 1, + ACTIONS(1209), 1, + anon_sym_LPAREN2, + ACTIONS(10420), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(9590), 1, sym_comment, - ACTIONS(14882), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14884), 2, - ts_builtin_sym_end, - anon_sym_LF, - [293424] = 4, + ACTIONS(1139), 2, + anon_sym_RBRACK, + sym__entry_separator, + [291938] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10075), 1, + STATE(9591), 1, sym_comment, - ACTIONS(14891), 2, + ACTIONS(15174), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14893), 2, + ACTIONS(15176), 2, ts_builtin_sym_end, anon_sym_LF, - [293439] = 4, + [291953] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10076), 1, + STATE(9592), 1, sym_comment, - ACTIONS(14897), 2, + ACTIONS(15178), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14899), 2, + ACTIONS(15180), 2, ts_builtin_sym_end, anon_sym_LF, - [293454] = 4, + [291968] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10077), 1, + STATE(9593), 1, sym_comment, - ACTIONS(14933), 2, + ACTIONS(15182), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14935), 2, + ACTIONS(15184), 2, ts_builtin_sym_end, anon_sym_LF, - [293469] = 4, - ACTIONS(113), 1, + [291983] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(10078), 1, + ACTIONS(1257), 1, + anon_sym_DASH, + STATE(9594), 1, sym_comment, - ACTIONS(14897), 2, - anon_sym_SEMI, + ACTIONS(1259), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [291998] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(7818), 1, anon_sym_PIPE, - ACTIONS(14899), 2, - ts_builtin_sym_end, + ACTIONS(14651), 1, + anon_sym_SEMI, + ACTIONS(16095), 1, anon_sym_LF, - [293484] = 4, + STATE(3489), 1, + aux_sym_pipe_element_repeat1, + STATE(9595), 1, + sym_comment, + [292017] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10079), 1, + ACTIONS(16099), 1, + anon_sym_LF, + STATE(9596), 1, sym_comment, - ACTIONS(14933), 2, + ACTIONS(16097), 3, anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14935), 2, - ts_builtin_sym_end, - anon_sym_LF, - [293499] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [292032] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10080), 1, + STATE(9597), 1, sym_comment, - ACTIONS(14897), 2, + ACTIONS(14330), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14899), 2, + ACTIONS(14332), 2, ts_builtin_sym_end, anon_sym_LF, - [293514] = 4, + [292047] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(10081), 1, - sym_comment, - ACTIONS(14933), 2, - anon_sym_SEMI, + ACTIONS(7818), 1, anon_sym_PIPE, - ACTIONS(14935), 2, - ts_builtin_sym_end, + ACTIONS(14755), 1, + anon_sym_SEMI, + ACTIONS(16095), 1, anon_sym_LF, - [293529] = 4, + STATE(3564), 1, + aux_sym_pipe_element_repeat1, + STATE(9598), 1, + sym_comment, + [292066] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10082), 1, + ACTIONS(16103), 1, + anon_sym_LF, + STATE(9599), 1, sym_comment, - ACTIONS(14897), 2, + ACTIONS(16101), 3, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(14899), 2, - ts_builtin_sym_end, - anon_sym_LF, - [293544] = 4, - ACTIONS(113), 1, + [292081] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(10083), 1, + ACTIONS(15337), 1, + anon_sym_LBRACK, + ACTIONS(15339), 1, + anon_sym_LPAREN, + STATE(9600), 1, sym_comment, - ACTIONS(14933), 2, - anon_sym_SEMI, + STATE(9701), 1, + sym_parameter_parens, + STATE(9708), 1, + sym_parameter_bracks, + [292100] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(15337), 1, + anon_sym_LBRACK, + ACTIONS(15339), 1, + anon_sym_LPAREN, + STATE(9601), 1, + sym_comment, + STATE(9717), 1, + sym_parameter_parens, + STATE(9719), 1, + sym_parameter_bracks, + [292119] = 6, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(7818), 1, anon_sym_PIPE, - ACTIONS(14935), 2, - ts_builtin_sym_end, + ACTIONS(14826), 1, + anon_sym_SEMI, + ACTIONS(16095), 1, anon_sym_LF, - [293559] = 4, + STATE(3476), 1, + aux_sym_pipe_element_repeat1, + STATE(9602), 1, + sym_comment, + [292138] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(16105), 1, + anon_sym_use, + ACTIONS(16107), 1, + anon_sym_list, + ACTIONS(16109), 1, + anon_sym_hide, + ACTIONS(16111), 1, + anon_sym_new, + STATE(9603), 1, + sym_comment, + [292157] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(10084), 1, + ACTIONS(4773), 1, + sym__entry_separator, + ACTIONS(13961), 1, + aux_sym__immediate_decimal_token1, + STATE(9604), 1, sym_comment, - ACTIONS(14897), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14899), 2, - ts_builtin_sym_end, - anon_sym_LF, - [293574] = 4, + ACTIONS(4771), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [292174] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(15337), 1, + anon_sym_LBRACK, + ACTIONS(15339), 1, + anon_sym_LPAREN, + STATE(9257), 1, + sym_parameter_parens, + STATE(9259), 1, + sym_parameter_bracks, + STATE(9605), 1, + sym_comment, + [292193] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10085), 1, + STATE(9606), 1, sym_comment, - ACTIONS(14933), 2, + ACTIONS(14310), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14935), 2, + ACTIONS(14312), 2, ts_builtin_sym_end, anon_sym_LF, - [293589] = 4, + [292208] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10086), 1, + STATE(9607), 1, sym_comment, - ACTIONS(14897), 2, + ACTIONS(14349), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14899), 2, + ACTIONS(14351), 2, ts_builtin_sym_end, anon_sym_LF, - [293604] = 4, + [292223] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(9608), 1, + sym_comment, + ACTIONS(16113), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [292236] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(12748), 1, + anon_sym_DOT, + STATE(9609), 1, + sym_comment, + ACTIONS(3314), 2, + anon_sym_DOLLAR, + anon_sym_LBRACE, + [292253] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10087), 1, + STATE(9610), 1, sym_comment, - ACTIONS(14933), 2, + ACTIONS(14326), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14935), 2, + ACTIONS(14328), 2, ts_builtin_sym_end, anon_sym_LF, - [293619] = 4, + [292268] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10088), 1, + STATE(9611), 1, sym_comment, - ACTIONS(14897), 2, + ACTIONS(14330), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14899), 2, + ACTIONS(14332), 2, ts_builtin_sym_end, anon_sym_LF, - [293634] = 3, + [292283] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(10089), 1, + STATE(9612), 1, sym_comment, - ACTIONS(16763), 4, + ACTIONS(16115), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [293647] = 4, + [292296] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10090), 1, + STATE(9613), 1, sym_comment, - ACTIONS(14933), 2, + ACTIONS(14739), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14935), 2, + ACTIONS(14741), 2, ts_builtin_sym_end, anon_sym_LF, - [293662] = 4, + [292311] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10091), 1, + STATE(9614), 1, sym_comment, - ACTIONS(14897), 2, + ACTIONS(14661), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14899), 2, + ACTIONS(14663), 2, ts_builtin_sym_end, anon_sym_LF, - [293677] = 4, + [292326] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10092), 1, + STATE(9615), 1, sym_comment, - ACTIONS(14933), 2, + ACTIONS(14667), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14935), 2, + ACTIONS(14669), 2, ts_builtin_sym_end, anon_sym_LF, - [293692] = 4, + [292341] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4721), 1, + anon_sym_DASH, + ACTIONS(16117), 1, + anon_sym_EQ, + STATE(9616), 1, + sym_comment, + ACTIONS(4725), 2, + sym_identifier, + anon_sym_DASH_DASH, + [292358] = 6, ACTIONS(113), 1, anon_sym_POUND, - STATE(10093), 1, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + ACTIONS(3725), 1, + anon_sym_LBRACE, + ACTIONS(3727), 1, + anon_sym_LPAREN2, + ACTIONS(16119), 1, + aux_sym_command_token1, + STATE(9617), 1, + sym_comment, + [292377] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3759), 1, + anon_sym_in, + ACTIONS(10461), 1, + anon_sym_DOT_DOT2, + STATE(9618), 1, + sym_comment, + ACTIONS(10463), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [292394] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3314), 1, + anon_sym_EQ_GT, + ACTIONS(16121), 1, + anon_sym_DOT_DOT2, + STATE(9619), 1, + sym_comment, + ACTIONS(16123), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [292411] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(9620), 1, sym_comment, - ACTIONS(14897), 2, + ACTIONS(14330), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14899), 2, + ACTIONS(14332), 2, ts_builtin_sym_end, anon_sym_LF, - [293707] = 5, - ACTIONS(113), 1, + [292426] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16765), 1, - anon_sym_DQUOTE, - STATE(10094), 1, + ACTIONS(15135), 1, + anon_sym_use, + ACTIONS(15137), 1, + anon_sym_list, + ACTIONS(15139), 1, + anon_sym_hide, + ACTIONS(15141), 1, + anon_sym_new, + STATE(9621), 1, sym_comment, - STATE(10099), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, - sym__escaped_str_content, - sym_escape_sequence, - [293724] = 4, + [292445] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10095), 1, + STATE(9622), 1, sym_comment, - ACTIONS(14933), 2, + ACTIONS(14609), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14935), 2, + ACTIONS(14611), 2, ts_builtin_sym_end, anon_sym_LF, - [293739] = 4, + [292460] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10096), 1, + STATE(9623), 1, sym_comment, - ACTIONS(14897), 2, + ACTIONS(14661), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14899), 2, + ACTIONS(14663), 2, ts_builtin_sym_end, anon_sym_LF, - [293754] = 4, + [292475] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10097), 1, + STATE(9624), 1, sym_comment, - ACTIONS(14933), 2, + ACTIONS(14667), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14935), 2, + ACTIONS(14669), 2, ts_builtin_sym_end, anon_sym_LF, - [293769] = 4, + [292490] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10098), 1, + STATE(9625), 1, sym_comment, - ACTIONS(14897), 2, + ACTIONS(14661), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14899), 2, + ACTIONS(14663), 2, ts_builtin_sym_end, anon_sym_LF, - [293784] = 5, + [292505] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16767), 1, + ACTIONS(1149), 1, + aux_sym_unquoted_token6, + STATE(9626), 1, + sym_comment, + ACTIONS(7778), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [292520] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(16125), 1, anon_sym_DQUOTE, - STATE(9704), 1, + STATE(9627), 1, + sym_comment, + STATE(9662), 1, aux_sym__str_double_quotes_repeat1, - STATE(10099), 1, + ACTIONS(15253), 2, + sym__escaped_str_content, + sym_escape_sequence, + [292537] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(16127), 1, + anon_sym_DQUOTE, + STATE(9628), 1, sym_comment, - ACTIONS(15863), 2, + STATE(9638), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(15253), 2, sym__escaped_str_content, sym_escape_sequence, - [293801] = 4, + [292554] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10100), 1, + STATE(9629), 1, sym_comment, - ACTIONS(14933), 2, + ACTIONS(14314), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14935), 2, + ACTIONS(14316), 2, ts_builtin_sym_end, anon_sym_LF, - [293816] = 4, + [292569] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10101), 1, + STATE(9630), 1, sym_comment, - ACTIONS(14897), 2, + ACTIONS(14326), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14899), 2, + ACTIONS(14328), 2, ts_builtin_sym_end, anon_sym_LF, - [293831] = 4, + [292584] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10102), 1, + STATE(9631), 1, sym_comment, - ACTIONS(14933), 2, + ACTIONS(14326), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14935), 2, + ACTIONS(14328), 2, ts_builtin_sym_end, anon_sym_LF, - [293846] = 6, + [292599] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, - anon_sym_LBRACK, - ACTIONS(16769), 1, - anon_sym_RBRACK, - STATE(10103), 1, + ACTIONS(938), 1, + anon_sym_DASH, + STATE(9632), 1, sym_comment, - STATE(10106), 1, - aux_sym_val_table_repeat1, - STATE(10538), 1, - sym_val_list, - [293865] = 4, - ACTIONS(113), 1, + ACTIONS(940), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [292614] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(10104), 1, + ACTIONS(1089), 1, + anon_sym_DASH, + STATE(9633), 1, sym_comment, - ACTIONS(14897), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14899), 2, - ts_builtin_sym_end, - anon_sym_LF, - [293880] = 4, + ACTIONS(1091), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [292629] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10105), 1, + STATE(9634), 1, sym_comment, - ACTIONS(14933), 2, + ACTIONS(14667), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14935), 2, + ACTIONS(14669), 2, ts_builtin_sym_end, anon_sym_LF, - [293895] = 6, + [292644] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(16129), 1, anon_sym_LBRACK, - ACTIONS(16771), 1, - anon_sym_RBRACK, - STATE(9479), 1, - aux_sym_val_table_repeat1, - STATE(10106), 1, - sym_comment, - STATE(10538), 1, - sym_val_list, - [293914] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(10107), 1, + ACTIONS(16131), 1, + anon_sym_LPAREN, + STATE(2120), 1, + sym_parameter_parens, + STATE(2123), 1, + sym_parameter_bracks, + STATE(9635), 1, sym_comment, - ACTIONS(15030), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(15032), 2, - ts_builtin_sym_end, - anon_sym_LF, - [293929] = 4, + [292663] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10108), 1, + STATE(9636), 1, sym_comment, - ACTIONS(15026), 2, + ACTIONS(14353), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(15028), 2, + ACTIONS(14355), 2, ts_builtin_sym_end, anon_sym_LF, - [293944] = 4, - ACTIONS(113), 1, + [292678] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(10109), 1, + ACTIONS(1229), 1, + anon_sym_DASH, + STATE(9637), 1, sym_comment, - ACTIONS(15030), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(15032), 2, - ts_builtin_sym_end, - anon_sym_LF, - [293959] = 4, + ACTIONS(1231), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [292693] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(10110), 1, + ACTIONS(16133), 1, + anon_sym_DQUOTE, + STATE(9411), 1, + aux_sym__str_double_quotes_repeat1, + STATE(9638), 1, sym_comment, - ACTIONS(15026), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(15028), 2, - ts_builtin_sym_end, - anon_sym_LF, - [293974] = 4, - ACTIONS(113), 1, + ACTIONS(15253), 2, + sym__escaped_str_content, + sym_escape_sequence, + [292710] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(10111), 1, + ACTIONS(10406), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(16135), 1, + aux_sym_unquoted_token2, + STATE(9639), 1, sym_comment, - ACTIONS(15030), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(15032), 2, - ts_builtin_sym_end, - anon_sym_LF, - [293989] = 4, - ACTIONS(113), 1, + ACTIONS(922), 2, + anon_sym_DOLLAR, + anon_sym_LBRACE, + [292727] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(10112), 1, + ACTIONS(1233), 1, + anon_sym_DASH, + STATE(9640), 1, sym_comment, - ACTIONS(14907), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14909), 2, - ts_builtin_sym_end, - anon_sym_LF, - [294004] = 4, + ACTIONS(1235), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [292742] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10113), 1, + STATE(9641), 1, sym_comment, - ACTIONS(14945), 2, + ACTIONS(14661), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14947), 2, + ACTIONS(14663), 2, ts_builtin_sym_end, anon_sym_LF, - [294019] = 5, + [292757] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2845), 1, - anon_sym_LBRACE, - ACTIONS(16773), 1, - anon_sym_DOT_DOT2, - STATE(10114), 1, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(12513), 1, + anon_sym_DOT, + STATE(9642), 1, sym_comment, - ACTIONS(16775), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [294036] = 4, + ACTIONS(3356), 2, + anon_sym_DOLLAR, + anon_sym_LBRACE, + [292774] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10115), 1, + STATE(9643), 1, sym_comment, - ACTIONS(14907), 2, + ACTIONS(14667), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14909), 2, + ACTIONS(14669), 2, ts_builtin_sym_end, anon_sym_LF, - [294051] = 4, + [292789] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(15247), 1, + anon_sym_LBRACK, + ACTIONS(16137), 1, + anon_sym_RBRACK, + STATE(9644), 1, + sym_comment, + STATE(9661), 1, + aux_sym_val_table_repeat1, + STATE(10145), 1, + sym_val_list, + [292808] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10116), 1, + STATE(9645), 1, sym_comment, - ACTIONS(14945), 2, + ACTIONS(14661), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14947), 2, + ACTIONS(14663), 2, ts_builtin_sym_end, anon_sym_LF, - [294066] = 4, + [292823] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10117), 1, + STATE(9646), 1, sym_comment, - ACTIONS(14907), 2, + ACTIONS(14667), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14909), 2, + ACTIONS(14669), 2, ts_builtin_sym_end, anon_sym_LF, - [294081] = 4, + [292838] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10118), 1, + STATE(9647), 1, sym_comment, - ACTIONS(14945), 2, + ACTIONS(14330), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14947), 2, + ACTIONS(14332), 2, ts_builtin_sym_end, anon_sym_LF, - [294096] = 6, + [292853] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1012), 1, + ACTIONS(1004), 1, anon_sym_in, - ACTIONS(16273), 1, + ACTIONS(15371), 1, anon_sym_DOT, - STATE(7321), 1, + STATE(6889), 1, sym_cell_path, - STATE(10119), 1, + STATE(9648), 1, sym_comment, - STATE(10120), 1, + STATE(9649), 1, sym_path, - [294115] = 6, + [292872] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(989), 1, + ACTIONS(1012), 1, anon_sym_in, - ACTIONS(16273), 1, + ACTIONS(15371), 1, anon_sym_DOT, - STATE(7117), 1, + STATE(6727), 1, sym_path, - STATE(10120), 1, + STATE(9649), 1, sym_comment, - STATE(10121), 1, + STATE(9650), 1, aux_sym_cell_path_repeat1, - [294134] = 6, + [292891] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1008), 1, anon_sym_in, - ACTIONS(16273), 1, + ACTIONS(15371), 1, anon_sym_DOT, - STATE(7117), 1, + STATE(6727), 1, sym_path, - STATE(10121), 1, + STATE(9650), 1, sym_comment, - STATE(10122), 1, + STATE(9651), 1, aux_sym_cell_path_repeat1, - [294153] = 5, + [292910] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1001), 1, + ACTIONS(987), 1, anon_sym_in, - ACTIONS(16777), 1, + ACTIONS(16139), 1, anon_sym_DOT, - STATE(7117), 1, + STATE(6727), 1, sym_path, - STATE(10122), 2, + STATE(9651), 2, sym_comment, aux_sym_cell_path_repeat1, - [294170] = 5, + [292927] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3868), 1, + ACTIONS(3743), 1, anon_sym_in, - ACTIONS(16780), 1, + ACTIONS(16142), 1, anon_sym_DOT_DOT2, - STATE(10123), 1, + STATE(9652), 1, sym_comment, - ACTIONS(16782), 2, + ACTIONS(16144), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [294187] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(10124), 1, - sym_comment, - ACTIONS(14907), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14909), 2, - ts_builtin_sym_end, - anon_sym_LF, - [294202] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1290), 1, - anon_sym_LPAREN2, - ACTIONS(10924), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(10125), 1, - sym_comment, - ACTIONS(1243), 2, - anon_sym_RBRACK, - sym__entry_separator, - [294219] = 3, + [292944] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(10126), 1, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(3576), 1, + anon_sym_LBRACE, + ACTIONS(12513), 1, + anon_sym_DOT, + ACTIONS(14479), 1, + aux_sym__immediate_decimal_token1, + STATE(9653), 1, sym_comment, - ACTIONS(16784), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [294232] = 4, + [292963] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10127), 1, + STATE(9654), 1, sym_comment, - ACTIONS(14945), 2, + ACTIONS(14661), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14947), 2, + ACTIONS(14663), 2, ts_builtin_sym_end, anon_sym_LF, - [294247] = 4, + [292978] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10128), 1, + STATE(9655), 1, sym_comment, - ACTIONS(14907), 2, + ACTIONS(14695), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14909), 2, + ACTIONS(14697), 2, ts_builtin_sym_end, anon_sym_LF, - [294262] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(16788), 1, - anon_sym_LF, - STATE(10129), 1, - sym_comment, - ACTIONS(16786), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - [294277] = 5, - ACTIONS(113), 1, + [292993] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16790), 1, - anon_sym_DQUOTE, - STATE(10130), 1, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(13087), 1, + anon_sym_DOT, + STATE(9656), 1, sym_comment, - STATE(10134), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, - sym__escaped_str_content, - sym_escape_sequence, - [294294] = 4, + ACTIONS(3773), 2, + anon_sym_DOLLAR, + anon_sym_LBRACE, + [293010] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16794), 1, + ACTIONS(16148), 1, anon_sym_LF, - STATE(10131), 1, + STATE(9657), 1, sym_comment, - ACTIONS(16792), 3, + ACTIONS(16146), 3, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_PIPE, - [294309] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(10132), 1, - sym_comment, - ACTIONS(14945), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14947), 2, - ts_builtin_sym_end, - anon_sym_LF, - [294324] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(10133), 1, - sym_comment, - ACTIONS(14907), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14909), 2, - ts_builtin_sym_end, - anon_sym_LF, - [294339] = 5, - ACTIONS(113), 1, + anon_sym_RBRACE, + [293025] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16796), 1, - anon_sym_DQUOTE, - STATE(9704), 1, - aux_sym__str_double_quotes_repeat1, - STATE(10134), 1, + ACTIONS(3650), 1, + aux_sym_unquoted_token2, + ACTIONS(13004), 1, + anon_sym_DOT, + STATE(9658), 1, sym_comment, - ACTIONS(15863), 2, - sym__escaped_str_content, - sym_escape_sequence, - [294356] = 4, + ACTIONS(3646), 2, + anon_sym_DOLLAR, + anon_sym_LBRACE, + [293042] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10135), 1, + STATE(9659), 1, sym_comment, - ACTIONS(14945), 2, + ACTIONS(14667), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14947), 2, + ACTIONS(14669), 2, ts_builtin_sym_end, anon_sym_LF, - [294371] = 4, + [293057] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(10136), 1, - sym_comment, - ACTIONS(14907), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14909), 2, - ts_builtin_sym_end, - anon_sym_LF, - [294386] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9820), 1, - aux_sym_unquoted_token5, - STATE(10137), 1, + ACTIONS(7848), 1, + anon_sym_LPAREN2, + ACTIONS(7850), 1, + aux_sym__unquoted_in_list_token3, + STATE(9660), 1, sym_comment, - ACTIONS(961), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [294401] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15865), 1, - anon_sym_LBRACK, - ACTIONS(16798), 1, + ACTIONS(7846), 2, anon_sym_RBRACK, - STATE(10138), 1, - sym_comment, - STATE(10140), 1, - aux_sym_val_table_repeat1, - STATE(10538), 1, - sym_val_list, - [294420] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(10139), 1, - sym_comment, - ACTIONS(14945), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14947), 2, - ts_builtin_sym_end, - anon_sym_LF, - [294435] = 6, + sym__entry_separator, + [293074] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(16800), 1, + ACTIONS(16150), 1, anon_sym_RBRACK, - STATE(9479), 1, + STATE(9222), 1, aux_sym_val_table_repeat1, - STATE(10140), 1, + STATE(9661), 1, sym_comment, - STATE(10538), 1, + STATE(10145), 1, sym_val_list, - [294454] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(10141), 1, - sym_comment, - ACTIONS(14907), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14909), 2, - ts_builtin_sym_end, - anon_sym_LF, - [294469] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(10142), 1, - sym_comment, - ACTIONS(14945), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14947), 2, - ts_builtin_sym_end, - anon_sym_LF, - [294484] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(10143), 1, - sym_comment, - ACTIONS(14907), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14909), 2, - ts_builtin_sym_end, - anon_sym_LF, - [294499] = 4, + [293093] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(10144), 1, + ACTIONS(16152), 1, + anon_sym_DQUOTE, + STATE(9411), 1, + aux_sym__str_double_quotes_repeat1, + STATE(9662), 1, sym_comment, - ACTIONS(14945), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14947), 2, - ts_builtin_sym_end, - anon_sym_LF, - [294514] = 4, + ACTIONS(15253), 2, + sym__escaped_str_content, + sym_escape_sequence, + [293110] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10145), 1, + STATE(9663), 1, sym_comment, - ACTIONS(5991), 2, + ACTIONS(14661), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5993), 2, + ACTIONS(14663), 2, ts_builtin_sym_end, anon_sym_LF, - [294529] = 4, + [293125] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2547), 1, + ACTIONS(16154), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(16156), 1, aux_sym_unquoted_token2, - STATE(10146), 1, - sym_comment, - ACTIONS(2549), 3, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT, - [294544] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(10147), 1, + STATE(9664), 1, sym_comment, - ACTIONS(14907), 2, - anon_sym_SEMI, + ACTIONS(922), 2, anon_sym_PIPE, - ACTIONS(14909), 2, - ts_builtin_sym_end, - anon_sym_LF, - [294559] = 4, - ACTIONS(113), 1, + anon_sym_EQ_GT, + [293142] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(10148), 1, + ACTIONS(1283), 1, + anon_sym_DASH, + STATE(9665), 1, sym_comment, - ACTIONS(14945), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14947), 2, - ts_builtin_sym_end, - anon_sym_LF, - [294574] = 4, - ACTIONS(113), 1, + ACTIONS(1285), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [293157] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(10149), 1, + ACTIONS(1093), 1, + anon_sym_DASH, + STATE(9666), 1, sym_comment, - ACTIONS(14907), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14909), 2, - ts_builtin_sym_end, - anon_sym_LF, - [294589] = 4, + ACTIONS(1095), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [293172] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10150), 1, + STATE(9667), 1, sym_comment, - ACTIONS(14945), 2, + ACTIONS(14330), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14947), 2, + ACTIONS(14332), 2, ts_builtin_sym_end, anon_sym_LF, - [294604] = 4, + [293187] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10151), 1, + ACTIONS(14481), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(9668), 1, sym_comment, - ACTIONS(14907), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14909), 2, - ts_builtin_sym_end, - anon_sym_LF, - [294619] = 4, + ACTIONS(1139), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH, + [293202] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10152), 1, + STATE(9669), 1, sym_comment, - ACTIONS(14945), 2, + ACTIONS(14667), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14947), 2, + ACTIONS(14669), 2, ts_builtin_sym_end, anon_sym_LF, - [294634] = 3, + [293217] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(10153), 1, + STATE(9670), 1, sym_comment, - ACTIONS(16802), 4, + ACTIONS(16158), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [294647] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - STATE(10154), 1, - sym_comment, - ACTIONS(14907), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14909), 2, - ts_builtin_sym_end, - anon_sym_LF, - [294662] = 4, + [293230] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10155), 1, + STATE(9671), 1, sym_comment, - ACTIONS(14945), 2, + ACTIONS(14661), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14947), 2, + ACTIONS(14663), 2, ts_builtin_sym_end, anon_sym_LF, - [294677] = 5, + [293245] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16804), 1, - anon_sym_DQUOTE, - STATE(10156), 1, + ACTIONS(1129), 1, + anon_sym_RBRACK, + ACTIONS(1131), 1, + sym__entry_separator, + ACTIONS(1133), 1, + aux_sym__unquoted_in_list_token7, + ACTIONS(3841), 1, + anon_sym_LPAREN2, + STATE(9672), 1, sym_comment, - STATE(10157), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, - sym__escaped_str_content, - sym_escape_sequence, - [294694] = 5, + [293264] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16806), 1, - anon_sym_DQUOTE, - STATE(9704), 1, - aux_sym__str_double_quotes_repeat1, - STATE(10157), 1, + ACTIONS(1133), 1, + aux_sym__unquoted_in_list_token7, + ACTIONS(1135), 1, + anon_sym_RBRACK, + ACTIONS(1137), 1, + sym__entry_separator, + ACTIONS(3841), 1, + anon_sym_LPAREN2, + STATE(9673), 1, sym_comment, - ACTIONS(15863), 2, - sym__escaped_str_content, - sym_escape_sequence, - [294711] = 4, + [293283] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4016), 1, - anon_sym_DASH, - STATE(10158), 1, + ACTIONS(16129), 1, + anon_sym_LBRACK, + ACTIONS(16131), 1, + anon_sym_LPAREN, + STATE(2148), 1, + sym_parameter_parens, + STATE(2149), 1, + sym_parameter_bracks, + STATE(9674), 1, sym_comment, - ACTIONS(4018), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [294726] = 6, + [293302] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(16808), 1, + ACTIONS(16160), 1, anon_sym_RBRACK, - STATE(10159), 1, - sym_comment, - STATE(10162), 1, + STATE(9234), 1, aux_sym_val_table_repeat1, - STATE(10538), 1, - sym_val_list, - [294745] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5175), 1, - anon_sym_DASH, - STATE(10160), 1, + STATE(9675), 1, sym_comment, - ACTIONS(5177), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [294760] = 4, + STATE(10145), 1, + sym_val_list, + [293321] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5179), 1, + ACTIONS(1237), 1, anon_sym_DASH, - STATE(10161), 1, + STATE(9676), 1, sym_comment, - ACTIONS(5181), 3, + ACTIONS(1239), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [294775] = 6, - ACTIONS(3), 1, + [293336] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15865), 1, - anon_sym_LBRACK, - ACTIONS(16810), 1, - anon_sym_RBRACK, - STATE(9479), 1, - aux_sym_val_table_repeat1, - STATE(10162), 1, + STATE(9677), 1, sym_comment, - STATE(10538), 1, - sym_val_list, - [294794] = 4, + ACTIONS(14667), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14669), 2, + ts_builtin_sym_end, + anon_sym_LF, + [293351] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4291), 1, - anon_sym_DASH, - STATE(10163), 1, + ACTIONS(13397), 1, + anon_sym_LBRACE, + ACTIONS(15331), 1, + anon_sym_COLON, + STATE(2397), 1, + sym_block, + STATE(9678), 1, sym_comment, - ACTIONS(4293), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [294809] = 4, + STATE(10250), 1, + sym_returns, + [293370] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5207), 1, - anon_sym_DASH, - STATE(10164), 1, + ACTIONS(13397), 1, + anon_sym_LBRACE, + ACTIONS(15331), 1, + anon_sym_COLON, + STATE(2398), 1, + sym_block, + STATE(9679), 1, sym_comment, - ACTIONS(5209), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [294824] = 4, + STATE(10252), 1, + sym_returns, + [293389] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5211), 1, + ACTIONS(1241), 1, anon_sym_DASH, - STATE(10165), 1, + STATE(9680), 1, sym_comment, - ACTIONS(5213), 3, + ACTIONS(1243), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [294839] = 4, + [293404] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16812), 1, - anon_sym_LPAREN, - STATE(10166), 1, + ACTIONS(16164), 1, + anon_sym_LF, + STATE(9681), 1, sym_comment, - ACTIONS(16814), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [294854] = 4, + ACTIONS(16162), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [293419] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3505), 1, - aux_sym_unquoted_token2, - STATE(10167), 1, + STATE(9682), 1, sym_comment, - ACTIONS(3507), 3, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT, - [294869] = 5, + ACTIONS(16166), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [293432] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(13319), 1, - anon_sym_DOT, - STATE(10168), 1, + ACTIONS(15247), 1, + anon_sym_LBRACK, + ACTIONS(16168), 1, + anon_sym_RBRACK, + STATE(8993), 1, + aux_sym_val_table_repeat1, + STATE(9683), 1, sym_comment, - ACTIONS(3520), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [294886] = 3, + STATE(10145), 1, + sym_val_list, + [293451] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(10169), 1, + ACTIONS(3759), 1, + anon_sym_LBRACE, + ACTIONS(10380), 1, + anon_sym_DOT_DOT2, + STATE(9684), 1, sym_comment, - ACTIONS(16816), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [294899] = 4, + ACTIONS(10382), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [293468] = 5, ACTIONS(113), 1, anon_sym_POUND, - STATE(10170), 1, + ACTIONS(16170), 1, + anon_sym_DQUOTE, + STATE(9685), 1, + sym_comment, + STATE(9688), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(15253), 2, + sym__escaped_str_content, + sym_escape_sequence, + [293485] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(9686), 1, sym_comment, - ACTIONS(6037), 2, + ACTIONS(14661), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(6039), 2, + ACTIONS(14663), 2, ts_builtin_sym_end, anon_sym_LF, - [294914] = 4, + [293500] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16820), 1, - anon_sym_LF, - STATE(10171), 1, + STATE(9687), 1, sym_comment, - ACTIONS(16818), 3, + ACTIONS(14667), 2, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [294929] = 6, + anon_sym_PIPE, + ACTIONS(14669), 2, + ts_builtin_sym_end, + anon_sym_LF, + [293515] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(16172), 1, + anon_sym_DQUOTE, + STATE(9411), 1, + aux_sym__str_double_quotes_repeat1, + STATE(9688), 1, + sym_comment, + ACTIONS(15253), 2, + sym__escaped_str_content, + sym_escape_sequence, + [293532] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(16174), 1, + anon_sym_DQUOTE, + STATE(8999), 1, + aux_sym__str_double_quotes_repeat1, + STATE(9689), 1, + sym_comment, + ACTIONS(15253), 2, + sym__escaped_str_content, + sym_escape_sequence, + [293549] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15891), 1, - anon_sym_LBRACK, - ACTIONS(15893), 1, - anon_sym_LPAREN, - STATE(9554), 1, - sym_parameter_parens, - STATE(9565), 1, - sym_parameter_bracks, - STATE(10172), 1, + ACTIONS(15572), 1, + anon_sym_LBRACE, + STATE(4583), 1, + sym_block, + STATE(4584), 1, + sym_val_closure, + STATE(8736), 1, + sym__blosure, + STATE(9690), 1, sym_comment, - [294948] = 4, + [293568] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16824), 1, - anon_sym_LF, - STATE(10173), 1, + STATE(9691), 1, sym_comment, - ACTIONS(16822), 3, + ACTIONS(14735), 2, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - [294963] = 5, + ACTIONS(14737), 2, + ts_builtin_sym_end, + anon_sym_LF, + [293583] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16826), 1, - anon_sym_DQUOTE, - STATE(10174), 1, + STATE(9692), 1, sym_comment, - STATE(10176), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, - sym__escaped_str_content, - sym_escape_sequence, - [294980] = 4, + ACTIONS(14314), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14316), 2, + ts_builtin_sym_end, + anon_sym_LF, + [293598] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16830), 1, - anon_sym_LF, - STATE(10175), 1, + STATE(9693), 1, sym_comment, - ACTIONS(16828), 3, + ACTIONS(14310), 2, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [294995] = 5, + anon_sym_PIPE, + ACTIONS(14312), 2, + ts_builtin_sym_end, + anon_sym_LF, + [293613] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16832), 1, - anon_sym_DQUOTE, - STATE(9704), 1, - aux_sym__str_double_quotes_repeat1, - STATE(10176), 1, + STATE(9694), 1, + sym_comment, + ACTIONS(14314), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14316), 2, + ts_builtin_sym_end, + anon_sym_LF, + [293628] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(9695), 1, sym_comment, - ACTIONS(15863), 2, - sym__escaped_str_content, - sym_escape_sequence, - [295012] = 6, + ACTIONS(14310), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14312), 2, + ts_builtin_sym_end, + anon_sym_LF, + [293643] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, + ACTIONS(15247), 1, anon_sym_LBRACK, - ACTIONS(16834), 1, + ACTIONS(16176), 1, anon_sym_RBRACK, - STATE(10177), 1, + STATE(9696), 1, sym_comment, - STATE(10179), 1, + STATE(9703), 1, aux_sym_val_table_repeat1, - STATE(10538), 1, + STATE(10145), 1, sym_val_list, - [295031] = 4, + [293662] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16838), 1, - anon_sym_LF, - STATE(10178), 1, + STATE(9697), 1, sym_comment, - ACTIONS(16836), 3, + ACTIONS(14314), 2, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - [295046] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15865), 1, - anon_sym_LBRACK, - ACTIONS(16840), 1, - anon_sym_RBRACK, - STATE(9479), 1, - aux_sym_val_table_repeat1, - STATE(10179), 1, - sym_comment, - STATE(10538), 1, - sym_val_list, - [295065] = 6, + ACTIONS(14316), 2, + ts_builtin_sym_end, + anon_sym_LF, + [293677] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - ACTIONS(4035), 1, - anon_sym_in, - ACTIONS(4037), 1, - anon_sym_LPAREN2, - ACTIONS(16842), 1, - aux_sym_command_token1, - STATE(10180), 1, + STATE(9698), 1, sym_comment, - [295084] = 6, - ACTIONS(3), 1, + ACTIONS(14310), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14312), 2, + ts_builtin_sym_end, + anon_sym_LF, + [293692] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13975), 1, - anon_sym_LBRACE, - ACTIONS(15899), 1, - anon_sym_COLON, - STATE(2827), 1, - sym_block, - STATE(10181), 1, + STATE(9699), 1, sym_comment, - STATE(10729), 1, - sym_returns, - [295103] = 4, + ACTIONS(14314), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14316), 2, + ts_builtin_sym_end, + anon_sym_LF, + [293707] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10182), 1, + STATE(9700), 1, sym_comment, - ACTIONS(6041), 2, + ACTIONS(14310), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(6043), 2, + ACTIONS(14312), 2, ts_builtin_sym_end, anon_sym_LF, - [295118] = 6, + [293722] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13975), 1, + ACTIONS(13397), 1, anon_sym_LBRACE, - ACTIONS(15899), 1, + ACTIONS(15331), 1, anon_sym_COLON, - STATE(2846), 1, + STATE(2279), 1, sym_block, - STATE(10183), 1, + STATE(9701), 1, sym_comment, - STATE(10733), 1, + STATE(10248), 1, sym_returns, - [295137] = 6, + [293741] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15891), 1, - anon_sym_LBRACK, - ACTIONS(15893), 1, - anon_sym_LPAREN, - STATE(10184), 1, + ACTIONS(1245), 1, + anon_sym_DASH, + STATE(9702), 1, sym_comment, - STATE(10190), 1, - sym_parameter_parens, - STATE(10191), 1, - sym_parameter_bracks, - [295156] = 4, - ACTIONS(113), 1, + ACTIONS(1247), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [293756] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(10185), 1, + ACTIONS(15247), 1, + anon_sym_LBRACK, + ACTIONS(16178), 1, + anon_sym_RBRACK, + STATE(9222), 1, + aux_sym_val_table_repeat1, + STATE(9703), 1, sym_comment, - ACTIONS(6045), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(6047), 2, - ts_builtin_sym_end, - anon_sym_LF, - [295171] = 6, + STATE(10145), 1, + sym_val_list, + [293775] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1934), 1, + ACTIONS(3362), 1, aux_sym_unquoted_token2, - ACTIONS(3520), 1, - anon_sym_LBRACE, - ACTIONS(3522), 1, - anon_sym_LPAREN2, - ACTIONS(13319), 1, + ACTIONS(3576), 1, + anon_sym_in, + ACTIONS(12513), 1, anon_sym_DOT, - STATE(10186), 1, - sym_comment, - [295190] = 6, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(6822), 1, - ts_builtin_sym_end, - ACTIONS(15003), 1, - anon_sym_SEMI, - ACTIONS(15005), 1, - anon_sym_LF, - STATE(2907), 1, - sym__terminator, - STATE(10187), 1, + ACTIONS(14625), 1, + aux_sym__immediate_decimal_token1, + STATE(9704), 1, sym_comment, - [295209] = 4, + [293794] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10188), 1, + STATE(9705), 1, sym_comment, - ACTIONS(13051), 2, + ACTIONS(15198), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(13053), 2, + ACTIONS(15200), 2, ts_builtin_sym_end, anon_sym_LF, - [295224] = 3, + [293809] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(10189), 1, + ACTIONS(940), 1, + anon_sym_DASH_DASH, + ACTIONS(9231), 1, + aux_sym_unquoted_token5, + STATE(9706), 1, sym_comment, - ACTIONS(16844), 4, + ACTIONS(938), 2, sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [295237] = 6, + anon_sym_DASH, + [293826] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13975), 1, + ACTIONS(3356), 1, anon_sym_LBRACE, - ACTIONS(15899), 1, - anon_sym_COLON, - STATE(2820), 1, - sym_block, - STATE(10190), 1, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(12513), 1, + anon_sym_DOT, + STATE(9707), 1, sym_comment, - STATE(10740), 1, - sym_returns, - [295256] = 6, + [293845] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13975), 1, + ACTIONS(13397), 1, anon_sym_LBRACE, - ACTIONS(15899), 1, + ACTIONS(15331), 1, anon_sym_COLON, - STATE(2821), 1, + STATE(2280), 1, sym_block, - STATE(10191), 1, + STATE(9708), 1, sym_comment, - STATE(10505), 1, + STATE(10074), 1, sym_returns, - [295275] = 5, + [293864] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16846), 1, - anon_sym_DQUOTE, - STATE(10192), 1, + STATE(9709), 1, sym_comment, - STATE(10196), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(15863), 2, - sym__escaped_str_content, - sym_escape_sequence, - [295292] = 6, - ACTIONS(113), 1, + ACTIONS(15206), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(15208), 2, + ts_builtin_sym_end, + anon_sym_LF, + [293879] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(3518), 1, - anon_sym_RBRACK, - ACTIONS(3520), 1, - sym__entry_separator, - ACTIONS(13319), 1, - anon_sym_DOT, - STATE(10193), 1, + ACTIONS(1265), 1, + anon_sym_DASH, + STATE(9710), 1, sym_comment, - [295311] = 4, + ACTIONS(1267), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [293894] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10194), 1, + ACTIONS(16182), 1, + anon_sym_LF, + STATE(9711), 1, sym_comment, - ACTIONS(13055), 2, + ACTIONS(16180), 3, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(13057), 2, - ts_builtin_sym_end, - anon_sym_LF, - [295326] = 5, + [293909] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5079), 1, - anon_sym_DASH_DASH, - ACTIONS(16848), 1, - sym_long_flag_identifier, - STATE(10195), 1, + ACTIONS(1265), 1, + anon_sym_DASH, + STATE(9712), 1, sym_comment, - ACTIONS(5075), 2, + ACTIONS(1267), 3, sym_identifier, - anon_sym_DASH, - [295343] = 5, - ACTIONS(113), 1, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [293924] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16850), 1, - anon_sym_DQUOTE, - STATE(9704), 1, - aux_sym__str_double_quotes_repeat1, - STATE(10196), 1, + ACTIONS(1253), 1, + anon_sym_DASH, + STATE(9713), 1, sym_comment, - ACTIONS(15863), 2, - sym__escaped_str_content, - sym_escape_sequence, - [295360] = 4, + ACTIONS(1255), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [293939] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10197), 1, + STATE(9714), 1, sym_comment, - ACTIONS(13059), 2, + ACTIONS(14326), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(13061), 2, + ACTIONS(14328), 2, ts_builtin_sym_end, anon_sym_LF, - [295375] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15865), 1, - anon_sym_LBRACK, - ACTIONS(16852), 1, - anon_sym_RBRACK, - STATE(10198), 1, - sym_comment, - STATE(10199), 1, - aux_sym_val_table_repeat1, - STATE(10538), 1, - sym_val_list, - [295394] = 6, + [293954] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15865), 1, - anon_sym_LBRACK, - ACTIONS(16854), 1, - anon_sym_RBRACK, - STATE(9479), 1, - aux_sym_val_table_repeat1, - STATE(10199), 1, + ACTIONS(4738), 1, + anon_sym_DASH_DASH, + ACTIONS(16184), 1, + sym_long_flag_identifier, + STATE(9715), 1, sym_comment, - STATE(10538), 1, - sym_val_list, - [295413] = 6, + ACTIONS(4734), 2, + sym_identifier, + anon_sym_DASH, + [293971] = 6, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2843), 1, + ACTIONS(3354), 1, anon_sym_RBRACK, - ACTIONS(2845), 1, + ACTIONS(3356), 1, sym__entry_separator, - ACTIONS(2851), 1, + ACTIONS(3362), 1, aux_sym_unquoted_token2, - ACTIONS(13169), 1, + ACTIONS(12513), 1, anon_sym_DOT, - STATE(10200), 1, + STATE(9716), 1, sym_comment, - [295432] = 5, + [293990] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - ACTIONS(4535), 1, - anon_sym_in, - STATE(10201), 1, + ACTIONS(13397), 1, + anon_sym_LBRACE, + ACTIONS(15331), 1, + anon_sym_COLON, + STATE(2314), 1, + sym_block, + STATE(9717), 1, sym_comment, - STATE(11424), 1, - sym__expr_parenthesized_immediate, - [295448] = 5, + STATE(10019), 1, + sym_returns, + [294009] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(925), 1, - anon_sym_COLON, - ACTIONS(16856), 1, - anon_sym_DOT, - ACTIONS(16858), 1, - aux_sym__immediate_decimal_token2, - STATE(10202), 1, + STATE(9718), 1, sym_comment, - [295464] = 5, + ACTIONS(16186), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [294022] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - ACTIONS(4531), 1, - anon_sym_in, - STATE(10203), 1, + ACTIONS(13397), 1, + anon_sym_LBRACE, + ACTIONS(15331), 1, + anon_sym_COLON, + STATE(2316), 1, + sym_block, + STATE(9719), 1, sym_comment, - STATE(11424), 1, - sym__expr_parenthesized_immediate, - [295480] = 5, + STATE(10045), 1, + sym_returns, + [294041] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2437), 1, - aux_sym__list_item_starts_with_sign_token1, - ACTIONS(16860), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(16862), 1, - aux_sym__immediate_decimal_token2, - STATE(10204), 1, + STATE(9720), 1, sym_comment, - [295496] = 4, + ACTIONS(14330), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14332), 2, + ts_builtin_sym_end, + anon_sym_LF, + [294056] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - STATE(10205), 1, + ACTIONS(16188), 1, + anon_sym_DQUOTE, + STATE(8994), 1, + aux_sym__str_double_quotes_repeat1, + STATE(9721), 1, sym_comment, - ACTIONS(1247), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [295510] = 4, - ACTIONS(113), 1, + ACTIONS(15253), 2, + sym__escaped_str_content, + sym_escape_sequence, + [294073] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16864), 1, - anon_sym_LPAREN, - STATE(10206), 1, + ACTIONS(15247), 1, + anon_sym_LBRACK, + ACTIONS(16190), 1, + anon_sym_RBRACK, + STATE(9722), 1, sym_comment, - ACTIONS(16866), 2, - sym_unescaped_interpolated_content, - anon_sym_SQUOTE, - [295524] = 5, + STATE(9723), 1, + aux_sym_val_table_repeat1, + STATE(10145), 1, + sym_val_list, + [294092] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16868), 1, + ACTIONS(15247), 1, + anon_sym_LBRACK, + ACTIONS(16192), 1, anon_sym_RBRACK, - ACTIONS(16870), 1, - sym_hex_digit, - STATE(10207), 1, + STATE(9222), 1, + aux_sym_val_table_repeat1, + STATE(9723), 1, sym_comment, - STATE(10214), 1, - aux_sym_val_binary_repeat1, - [295540] = 4, + STATE(10145), 1, + sym_val_list, + [294111] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15913), 1, - anon_sym_SEMI, - STATE(10208), 1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + STATE(9724), 1, sym_comment, - ACTIONS(15915), 2, - ts_builtin_sym_end, - anon_sym_LF, - [295554] = 4, + ACTIONS(1129), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [294126] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16872), 1, - anon_sym_LPAREN, - STATE(10209), 1, + ACTIONS(16196), 1, + anon_sym_LF, + STATE(9725), 1, sym_comment, - ACTIONS(16874), 2, - sym_unescaped_interpolated_content, - anon_sym_SQUOTE, - [295568] = 5, + ACTIONS(16194), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [294140] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_in, - ACTIONS(13979), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(16876), 1, - anon_sym_DOT, - STATE(10210), 1, + ACTIONS(16198), 1, + anon_sym_RBRACK, + ACTIONS(16200), 1, + sym_hex_digit, + STATE(9726), 1, sym_comment, - [295584] = 5, + STATE(9830), 1, + aux_sym_val_binary_repeat1, + [294156] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, + ACTIONS(16200), 1, sym_hex_digit, - ACTIONS(16878), 1, + ACTIONS(16202), 1, anon_sym_RBRACK, - STATE(10211), 1, + STATE(9727), 1, sym_comment, - STATE(10213), 1, + STATE(9830), 1, aux_sym_val_binary_repeat1, - [295600] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1814), 1, - aux_sym_unquoted_token6, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - STATE(10212), 1, - sym_comment, - STATE(10517), 1, - sym__expr_parenthesized_immediate, - [295616] = 5, + [294172] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, + ACTIONS(16200), 1, sym_hex_digit, - ACTIONS(16880), 1, + ACTIONS(16204), 1, anon_sym_RBRACK, - STATE(10213), 1, + STATE(9728), 1, sym_comment, - STATE(10420), 1, + STATE(9729), 1, aux_sym_val_binary_repeat1, - [295632] = 5, + [294188] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, + ACTIONS(16200), 1, sym_hex_digit, - ACTIONS(16882), 1, + ACTIONS(16206), 1, anon_sym_RBRACK, - STATE(10214), 1, + STATE(9729), 1, sym_comment, - STATE(10420), 1, + STATE(9830), 1, aux_sym_val_binary_repeat1, - [295648] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(16884), 1, - anon_sym_EQ, - ACTIONS(16886), 1, - anon_sym_COLON, - STATE(10215), 1, - sym_comment, - STATE(10766), 1, - sym_param_type, - [295664] = 5, + [294204] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, + ACTIONS(16200), 1, sym_hex_digit, - ACTIONS(16888), 1, + ACTIONS(16208), 1, anon_sym_RBRACK, - STATE(10216), 1, + STATE(9730), 1, sym_comment, - STATE(10218), 1, + STATE(9830), 1, aux_sym_val_binary_repeat1, - [295680] = 5, + [294220] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16890), 1, + ACTIONS(6270), 1, anon_sym_SEMI, - ACTIONS(16892), 1, + STATE(9731), 1, + sym_comment, + ACTIONS(6314), 2, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(16894), 1, - anon_sym_RPAREN, - STATE(10217), 1, + [294234] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(938), 1, + sym_identifier, + ACTIONS(940), 1, + anon_sym_DOLLAR, + ACTIONS(9231), 1, + aux_sym_unquoted_token5, + STATE(9732), 1, sym_comment, - [295696] = 5, + [294250] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, + ACTIONS(16200), 1, sym_hex_digit, - ACTIONS(16896), 1, + ACTIONS(16210), 1, anon_sym_RBRACK, - STATE(10218), 1, + STATE(9733), 1, sym_comment, - STATE(10420), 1, + STATE(9791), 1, aux_sym_val_binary_repeat1, - [295712] = 5, + [294266] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, + ACTIONS(16200), 1, sym_hex_digit, - ACTIONS(16898), 1, + ACTIONS(16212), 1, anon_sym_RBRACK, - STATE(10219), 1, + STATE(9734), 1, sym_comment, - STATE(10232), 1, + STATE(9830), 1, aux_sym_val_binary_repeat1, - [295728] = 4, + [294282] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16902), 1, + ACTIONS(1089), 1, + anon_sym_RBRACK, + ACTIONS(1091), 1, + sym__entry_separator, + ACTIONS(16214), 1, + anon_sym_SEMI, + STATE(9735), 1, + sym_comment, + [294298] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(16218), 1, anon_sym_LF, - STATE(10220), 1, + STATE(9736), 1, sym_comment, - ACTIONS(16900), 2, + ACTIONS(16216), 2, anon_sym_SEMI, anon_sym_RPAREN, - [295742] = 4, + [294312] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10998), 1, + ACTIONS(14481), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(10221), 1, + STATE(9737), 1, sym_comment, - ACTIONS(1243), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [295756] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(959), 1, + ACTIONS(1139), 2, sym_identifier, - ACTIONS(961), 1, anon_sym_DOLLAR, - ACTIONS(9701), 1, - aux_sym_unquoted_token5, - STATE(10222), 1, + [294326] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(16162), 1, + anon_sym_SEMI, + STATE(9738), 1, sym_comment, - [295772] = 5, + ACTIONS(16164), 2, + ts_builtin_sym_end, + anon_sym_LF, + [294340] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, + ACTIONS(2187), 1, anon_sym_LPAREN2, - ACTIONS(9093), 1, + ACTIONS(7459), 1, aux_sym_unquoted_token6, - STATE(10223), 1, + STATE(9739), 1, sym_comment, - STATE(10640), 1, + STATE(10027), 1, sym__expr_parenthesized_immediate, - [295788] = 4, - ACTIONS(113), 1, + [294356] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16906), 1, - anon_sym_LF, - STATE(10224), 1, + ACTIONS(4734), 1, + sym_identifier, + ACTIONS(4738), 1, + anon_sym_DOLLAR, + ACTIONS(16220), 1, + sym_long_flag_identifier, + STATE(9740), 1, sym_comment, - ACTIONS(16904), 2, + [294372] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(15293), 1, anon_sym_SEMI, - anon_sym_RPAREN, - [295802] = 5, + STATE(9741), 1, + sym_comment, + ACTIONS(15295), 2, + ts_builtin_sym_end, + anon_sym_LF, + [294386] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, + ACTIONS(16200), 1, sym_hex_digit, - ACTIONS(16908), 1, + ACTIONS(16222), 1, anon_sym_RBRACK, - STATE(10225), 1, + STATE(9742), 1, sym_comment, - STATE(10256), 1, + STATE(9745), 1, aux_sym_val_binary_repeat1, - [295818] = 5, + [294402] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, + ACTIONS(16200), 1, sym_hex_digit, - ACTIONS(16910), 1, + ACTIONS(16224), 1, anon_sym_RBRACK, - STATE(10226), 1, + STATE(9743), 1, sym_comment, - STATE(10228), 1, + STATE(9771), 1, aux_sym_val_binary_repeat1, - [295834] = 5, + [294418] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - ACTIONS(9352), 1, - aux_sym_unquoted_token6, - STATE(10227), 1, + ACTIONS(15355), 1, + anon_sym_SEMI, + STATE(9744), 1, sym_comment, - STATE(10693), 1, - sym__expr_parenthesized_immediate, - [295850] = 5, + ACTIONS(15357), 2, + ts_builtin_sym_end, + anon_sym_LF, + [294432] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, + ACTIONS(16200), 1, sym_hex_digit, - ACTIONS(16912), 1, + ACTIONS(16226), 1, anon_sym_RBRACK, - STATE(10228), 1, + STATE(9745), 1, sym_comment, - STATE(10420), 1, + STATE(9830), 1, aux_sym_val_binary_repeat1, - [295866] = 5, + [294448] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14927), 1, - anon_sym_PIPE, - ACTIONS(16914), 1, - anon_sym_EQ_GT, - STATE(10229), 1, + ACTIONS(16228), 1, + aux_sym__immediate_decimal_token1, + STATE(9746), 1, sym_comment, - STATE(10314), 1, - aux_sym_match_pattern_repeat1, - [295882] = 5, + ACTIONS(3576), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [294462] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(16230), 1, + anon_sym_EQ, + ACTIONS(16232), 1, + anon_sym_COLON, + STATE(9747), 1, + sym_comment, + STATE(10639), 1, + sym_param_type, + [294478] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(959), 1, - anon_sym_RBRACK, - ACTIONS(961), 1, - sym__entry_separator, - ACTIONS(9636), 1, - aux_sym_unquoted_token5, - STATE(10230), 1, + ACTIONS(1155), 1, + aux_sym_unquoted_token6, + STATE(9748), 1, sym_comment, - [295898] = 4, + ACTIONS(1157), 2, + anon_sym_LBRACE, + anon_sym_LPAREN2, + [294492] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(6510), 1, + ACTIONS(6058), 1, anon_sym_SEMI, - STATE(10231), 1, - sym_comment, - ACTIONS(6512), 2, - ts_builtin_sym_end, + ACTIONS(6060), 1, anon_sym_LF, - [295912] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(16870), 1, - sym_hex_digit, - ACTIONS(16916), 1, - anon_sym_RBRACK, - STATE(10232), 1, + STATE(2623), 1, + sym__terminator, + STATE(9749), 1, sym_comment, - STATE(10420), 1, - aux_sym_val_binary_repeat1, - [295928] = 5, + [294508] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, + ACTIONS(16200), 1, sym_hex_digit, - ACTIONS(16918), 1, + ACTIONS(16234), 1, anon_sym_RBRACK, - STATE(10233), 1, + STATE(9750), 1, sym_comment, - STATE(10236), 1, + STATE(9759), 1, aux_sym_val_binary_repeat1, - [295944] = 4, + [294524] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1257), 1, + ACTIONS(1133), 1, aux_sym_unquoted_token6, - STATE(10234), 1, + STATE(9751), 1, sym_comment, - ACTIONS(1253), 2, + ACTIONS(1129), 2, anon_sym_PIPE, anon_sym_EQ_GT, - [295958] = 4, + [294538] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1257), 1, + ACTIONS(1091), 1, + anon_sym_LBRACE, + ACTIONS(1149), 1, aux_sym_unquoted_token6, - STATE(10235), 1, - sym_comment, - ACTIONS(1273), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [295972] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(16870), 1, - sym_hex_digit, - ACTIONS(16920), 1, - anon_sym_RBRACK, - STATE(10236), 1, - sym_comment, - STATE(10420), 1, - aux_sym_val_binary_repeat1, - [295988] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5075), 1, - sym_identifier, - ACTIONS(5079), 1, - anon_sym_DOLLAR, - ACTIONS(16922), 1, - sym_long_flag_identifier, - STATE(10237), 1, + ACTIONS(3783), 1, + anon_sym_LPAREN2, + STATE(9752), 1, sym_comment, - [296004] = 5, + [294554] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, + ACTIONS(3655), 1, + anon_sym_COLON, + ACTIONS(13397), 1, anon_sym_LBRACE, - ACTIONS(14014), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(16924), 1, - anon_sym_DOT, - STATE(10238), 1, - sym_comment, - [296020] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(16870), 1, - sym_hex_digit, - ACTIONS(16926), 1, - anon_sym_RBRACK, - STATE(10239), 1, - sym_comment, - STATE(10240), 1, - aux_sym_val_binary_repeat1, - [296036] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(16870), 1, - sym_hex_digit, - ACTIONS(16928), 1, - anon_sym_RBRACK, - STATE(10240), 1, + STATE(2375), 1, + sym_block, + STATE(9753), 1, sym_comment, - STATE(10420), 1, - aux_sym_val_binary_repeat1, - [296052] = 5, + [294570] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, + ACTIONS(2187), 1, anon_sym_LPAREN2, - ACTIONS(9327), 1, + ACTIONS(7175), 1, aux_sym_unquoted_token6, - STATE(10241), 1, + STATE(9754), 1, sym_comment, - STATE(10661), 1, + STATE(9998), 1, sym__expr_parenthesized_immediate, - [296068] = 4, + [294586] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16932), 1, + ACTIONS(16238), 1, anon_sym_LF, - STATE(10242), 1, + STATE(9755), 1, sym_comment, - ACTIONS(16930), 2, + ACTIONS(16236), 2, anon_sym_SEMI, anon_sym_RPAREN, - [296082] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(16886), 1, - anon_sym_COLON, - ACTIONS(16934), 1, - anon_sym_EQ, - STATE(10243), 1, - sym_comment, - STATE(11189), 1, - sym_param_type, - [296098] = 5, + [294600] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1160), 1, - anon_sym_LBRACE, - ACTIONS(1284), 1, - aux_sym_unquoted_token6, - ACTIONS(4895), 1, - anon_sym_LPAREN2, - STATE(10244), 1, - sym_comment, - [296114] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9820), 1, - aux_sym_unquoted_token5, - STATE(10245), 1, + ACTIONS(2356), 1, + aux_sym__list_item_starts_with_sign_token1, + ACTIONS(16240), 1, + anon_sym_DOT, + ACTIONS(16242), 1, + aux_sym__immediate_decimal_token2, + STATE(9756), 1, sym_comment, - ACTIONS(961), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [296128] = 5, + [294616] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, + ACTIONS(16200), 1, sym_hex_digit, - ACTIONS(16936), 1, + ACTIONS(16244), 1, anon_sym_RBRACK, - STATE(10246), 1, + STATE(9757), 1, sym_comment, - STATE(10248), 1, + STATE(9830), 1, aux_sym_val_binary_repeat1, - [296144] = 5, - ACTIONS(3), 1, + [294632] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16870), 1, - sym_hex_digit, - ACTIONS(16938), 1, - anon_sym_RBRACK, - STATE(10247), 1, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + ACTIONS(11616), 1, + aux_sym_unquoted_token6, + STATE(9758), 1, sym_comment, - STATE(10254), 1, - aux_sym_val_binary_repeat1, - [296160] = 5, + STATE(10200), 1, + sym__expr_parenthesized_immediate, + [294648] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, + ACTIONS(16200), 1, sym_hex_digit, - ACTIONS(16940), 1, + ACTIONS(16246), 1, anon_sym_RBRACK, - STATE(10248), 1, + STATE(9759), 1, sym_comment, - STATE(10420), 1, + STATE(9830), 1, aux_sym_val_binary_repeat1, - [296176] = 4, + [294664] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16944), 1, + ACTIONS(16250), 1, anon_sym_LF, - STATE(10249), 1, + STATE(9760), 1, sym_comment, - ACTIONS(16942), 2, + ACTIONS(16248), 2, anon_sym_SEMI, anon_sym_RPAREN, - [296190] = 5, + [294678] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - ACTIONS(7685), 1, + ACTIONS(1159), 1, + anon_sym_in, + ACTIONS(1163), 1, aux_sym_unquoted_token6, - STATE(10250), 1, + ACTIONS(3727), 1, + anon_sym_LPAREN2, + STATE(9761), 1, sym_comment, - STATE(10696), 1, + [294694] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + ACTIONS(4424), 1, + anon_sym_in, + STATE(9762), 1, + sym_comment, + STATE(10434), 1, sym__expr_parenthesized_immediate, - [296206] = 5, + [294710] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, + ACTIONS(16200), 1, sym_hex_digit, - ACTIONS(16946), 1, + ACTIONS(16252), 1, anon_sym_RBRACK, - STATE(10251), 1, + STATE(9763), 1, sym_comment, - STATE(10253), 1, + STATE(9766), 1, aux_sym_val_binary_repeat1, - [296222] = 4, + [294726] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16950), 1, - anon_sym_LF, - STATE(10252), 1, + ACTIONS(10465), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(9764), 1, sym_comment, - ACTIONS(16948), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [296236] = 5, + ACTIONS(1139), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [294740] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, + ACTIONS(16200), 1, sym_hex_digit, - ACTIONS(16952), 1, + ACTIONS(16254), 1, anon_sym_RBRACK, - STATE(10253), 1, + STATE(9765), 1, sym_comment, - STATE(10420), 1, + STATE(9775), 1, aux_sym_val_binary_repeat1, - [296252] = 5, + [294756] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, + ACTIONS(16200), 1, sym_hex_digit, - ACTIONS(16954), 1, + ACTIONS(16256), 1, anon_sym_RBRACK, - STATE(10254), 1, + STATE(9766), 1, sym_comment, - STATE(10420), 1, + STATE(9830), 1, aux_sym_val_binary_repeat1, - [296268] = 5, - ACTIONS(3), 1, + [294772] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16870), 1, - sym_hex_digit, - ACTIONS(16956), 1, - anon_sym_RBRACK, - STATE(10255), 1, + ACTIONS(16097), 1, + anon_sym_SEMI, + STATE(9767), 1, sym_comment, - STATE(10257), 1, - aux_sym_val_binary_repeat1, - [296284] = 5, + ACTIONS(16099), 2, + ts_builtin_sym_end, + anon_sym_LF, + [294786] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, - sym_hex_digit, - ACTIONS(16958), 1, - anon_sym_RBRACK, - STATE(10256), 1, + ACTIONS(15166), 1, + anon_sym_PIPE, + ACTIONS(16258), 1, + anon_sym_EQ_GT, + STATE(9768), 1, sym_comment, - STATE(10420), 1, - aux_sym_val_binary_repeat1, - [296300] = 5, + STATE(9954), 1, + aux_sym_match_pattern_repeat1, + [294802] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, - sym_hex_digit, - ACTIONS(16960), 1, - anon_sym_RBRACK, - STATE(10257), 1, - sym_comment, - STATE(10420), 1, - aux_sym_val_binary_repeat1, - [296316] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(10924), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(10258), 1, - sym_comment, - ACTIONS(1243), 2, - anon_sym_RBRACK, - sym__entry_separator, - [296330] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(8304), 1, - anon_sym_PIPE, - ACTIONS(15962), 1, - anon_sym_LF, - STATE(3909), 1, - aux_sym_pipe_element_repeat1, - STATE(10259), 1, + ACTIONS(1886), 1, + aux_sym_unquoted_token2, + ACTIONS(3773), 1, + anon_sym_LBRACE, + ACTIONS(13087), 1, + anon_sym_DOT, + STATE(9769), 1, sym_comment, - [296346] = 3, + [294818] = 4, ACTIONS(113), 1, anon_sym_POUND, - STATE(10260), 1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + STATE(9770), 1, sym_comment, - ACTIONS(1280), 3, + ACTIONS(1135), 2, anon_sym_PIPE, anon_sym_EQ_GT, - aux_sym_unquoted_token6, - [296358] = 5, + [294832] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, + ACTIONS(16200), 1, sym_hex_digit, - ACTIONS(16962), 1, + ACTIONS(16260), 1, anon_sym_RBRACK, - STATE(10261), 1, + STATE(9771), 1, sym_comment, - STATE(10263), 1, + STATE(9830), 1, aux_sym_val_binary_repeat1, - [296374] = 5, + [294848] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2397), 1, + ACTIONS(2187), 1, anon_sym_LPAREN2, - ACTIONS(4293), 1, + ACTIONS(4428), 1, anon_sym_in, - STATE(10262), 1, + STATE(9772), 1, sym_comment, - STATE(10571), 1, + STATE(10434), 1, + sym__expr_parenthesized_immediate, + [294864] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1858), 1, + aux_sym_unquoted_token6, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + STATE(9773), 1, + sym_comment, + STATE(10115), 1, sym__expr_parenthesized_immediate, - [296390] = 5, + [294880] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(16264), 1, + anon_sym_LF, + STATE(9774), 1, + sym_comment, + ACTIONS(16262), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [294894] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, + ACTIONS(16200), 1, sym_hex_digit, - ACTIONS(16964), 1, + ACTIONS(16266), 1, anon_sym_RBRACK, - STATE(10263), 1, + STATE(9775), 1, sym_comment, - STATE(10420), 1, + STATE(9830), 1, aux_sym_val_binary_repeat1, - [296406] = 5, + [294910] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(2356), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(16268), 1, + anon_sym_DOT, + ACTIONS(16270), 1, + aux_sym__immediate_decimal_token2, + STATE(9776), 1, + sym_comment, + [294926] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(938), 1, - anon_sym_in, - ACTIONS(11000), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(16966), 1, + ACTIONS(1886), 1, aux_sym_unquoted_token2, - STATE(10264), 1, + ACTIONS(3773), 1, + anon_sym_in, + ACTIONS(13087), 1, + anon_sym_DOT, + STATE(9777), 1, sym_comment, - [296422] = 5, + [294942] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16886), 1, - anon_sym_COLON, - ACTIONS(16968), 1, + ACTIONS(12130), 1, anon_sym_EQ, - STATE(10265), 1, + ACTIONS(16272), 1, + anon_sym_AT, + STATE(7310), 1, + sym_param_cmd, + STATE(9778), 1, sym_comment, - STATE(11272), 1, - sym_param_type, - [296438] = 4, + [294958] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16970), 1, + ACTIONS(16228), 1, aux_sym__immediate_decimal_token1, - STATE(10266), 1, + STATE(9779), 1, sym_comment, - ACTIONS(3750), 2, + ACTIONS(4773), 2, anon_sym_COMMA, anon_sym_RBRACE, - [296452] = 5, + [294972] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16972), 1, - anon_sym_LPAREN2, - ACTIONS(16974), 1, - aux_sym__list_item_starts_with_sign_token1, - ACTIONS(16976), 1, - sym_short_flag_identifier, - STATE(10267), 1, + ACTIONS(16274), 1, + anon_sym_LF, + STATE(9780), 1, sym_comment, - [296468] = 5, + ACTIONS(6409), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [294986] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, + ACTIONS(16200), 1, sym_hex_digit, - ACTIONS(16978), 1, + ACTIONS(16276), 1, anon_sym_RBRACK, - STATE(10268), 1, + STATE(9781), 1, sym_comment, - STATE(10273), 1, + STATE(9784), 1, aux_sym_val_binary_repeat1, - [296484] = 5, + [295002] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, + ACTIONS(16200), 1, sym_hex_digit, - ACTIONS(16980), 1, + ACTIONS(16278), 1, anon_sym_RBRACK, - STATE(10269), 1, + STATE(9782), 1, sym_comment, - STATE(10300), 1, + STATE(9788), 1, aux_sym_val_binary_repeat1, - [296500] = 5, + [295018] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1158), 1, - anon_sym_RBRACK, - ACTIONS(1160), 1, - sym__entry_separator, - ACTIONS(16982), 1, + ACTIONS(15530), 1, anon_sym_SEMI, - STATE(10270), 1, + STATE(9783), 1, sym_comment, - [296516] = 5, + ACTIONS(15532), 2, + ts_builtin_sym_end, + anon_sym_LF, + [295032] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(16200), 1, + sym_hex_digit, + ACTIONS(16280), 1, + anon_sym_RBRACK, + STATE(9784), 1, + sym_comment, + STATE(9830), 1, + aux_sym_val_binary_repeat1, + [295048] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, + ACTIONS(1157), 1, anon_sym_LPAREN2, - ACTIONS(7607), 1, + STATE(9785), 1, + sym_comment, + ACTIONS(1155), 2, + anon_sym_in, aux_sym_unquoted_token6, - STATE(10271), 1, + [295062] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1161), 1, + anon_sym_LBRACE, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + ACTIONS(3727), 1, + anon_sym_LPAREN2, + STATE(9786), 1, sym_comment, - STATE(10502), 1, + [295078] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + ACTIONS(7131), 1, + aux_sym_unquoted_token6, + STATE(9787), 1, + sym_comment, + STATE(10183), 1, sym__expr_parenthesized_immediate, - [296532] = 5, + [295094] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3984), 1, - anon_sym_COLON, - ACTIONS(13945), 1, - anon_sym_LBRACE, - STATE(2641), 1, - sym_block, - STATE(10272), 1, + ACTIONS(16200), 1, + sym_hex_digit, + ACTIONS(16282), 1, + anon_sym_RBRACK, + STATE(9788), 1, + sym_comment, + STATE(9830), 1, + aux_sym_val_binary_repeat1, + [295110] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(16284), 1, + anon_sym_LF, + STATE(9789), 1, + sym_comment, + ACTIONS(6423), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [295124] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(16288), 1, + anon_sym_LF, + STATE(9790), 1, sym_comment, - [296548] = 5, + ACTIONS(16286), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [295138] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, + ACTIONS(16200), 1, sym_hex_digit, - ACTIONS(16984), 1, + ACTIONS(16290), 1, anon_sym_RBRACK, - STATE(10273), 1, + STATE(9791), 1, sym_comment, - STATE(10420), 1, + STATE(9830), 1, aux_sym_val_binary_repeat1, - [296564] = 3, + [295154] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(10274), 1, + STATE(9792), 1, sym_comment, - ACTIONS(9065), 3, + ACTIONS(7687), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [296576] = 5, + [295166] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8304), 1, - anon_sym_PIPE, - ACTIONS(15962), 1, + ACTIONS(16292), 1, + anon_sym_SEMI, + ACTIONS(16294), 1, anon_sym_LF, - STATE(3913), 1, - aux_sym_pipe_element_repeat1, - STATE(10275), 1, + ACTIONS(16296), 1, + anon_sym_RPAREN, + STATE(9793), 1, sym_comment, - [296592] = 5, + [295182] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8304), 1, - anon_sym_PIPE, - ACTIONS(15962), 1, + ACTIONS(16300), 1, anon_sym_LF, - STATE(3918), 1, - aux_sym_pipe_element_repeat1, - STATE(10276), 1, - sym_comment, - [296608] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - ACTIONS(8665), 1, - aux_sym_unquoted_token6, - STATE(10277), 1, + STATE(9794), 1, sym_comment, - STATE(10743), 1, - sym__expr_parenthesized_immediate, - [296624] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(6808), 1, - anon_sym_RPAREN, - ACTIONS(16986), 1, + ACTIONS(16298), 2, anon_sym_SEMI, - ACTIONS(16988), 1, - anon_sym_LF, - STATE(10278), 1, - sym_comment, - [296640] = 5, - ACTIONS(113), 1, + anon_sym_RPAREN, + [295196] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7589), 1, - aux_sym__unquoted_in_list_token7, - ACTIONS(7748), 1, - anon_sym_LPAREN2, - STATE(10279), 1, + ACTIONS(16200), 1, + sym_hex_digit, + ACTIONS(16302), 1, + anon_sym_RBRACK, + STATE(9795), 1, sym_comment, - STATE(10658), 1, - sym__expr_parenthesized_immediate, - [296656] = 3, + STATE(9797), 1, + aux_sym_val_binary_repeat1, + [295212] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(10280), 1, + STATE(9796), 1, sym_comment, - ACTIONS(9069), 3, + ACTIONS(8583), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [296668] = 5, + [295224] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, + ACTIONS(16200), 1, sym_hex_digit, - ACTIONS(16990), 1, + ACTIONS(16304), 1, anon_sym_RBRACK, - STATE(10281), 1, + STATE(9797), 1, sym_comment, - STATE(10306), 1, + STATE(9830), 1, aux_sym_val_binary_repeat1, - [296684] = 5, + [295240] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1249), 1, - anon_sym_LBRACE, - ACTIONS(1251), 1, + ACTIONS(1163), 1, aux_sym_unquoted_token6, - ACTIONS(4037), 1, - anon_sym_LPAREN2, - STATE(10282), 1, + STATE(9798), 1, sym_comment, - [296700] = 4, + ACTIONS(1159), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [295254] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1282), 1, - anon_sym_LPAREN2, - STATE(10283), 1, - sym_comment, - ACTIONS(1280), 2, + ACTIONS(1089), 1, anon_sym_in, + ACTIONS(1149), 1, aux_sym_unquoted_token6, - [296714] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(5075), 1, - anon_sym_RBRACK, - ACTIONS(5079), 1, - sym__entry_separator, - ACTIONS(16992), 1, - sym_long_flag_identifier, - STATE(10284), 1, + ACTIONS(3783), 1, + anon_sym_LPAREN2, + STATE(9799), 1, sym_comment, - [296730] = 3, + [295270] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(10285), 1, + STATE(9800), 1, sym_comment, - ACTIONS(9073), 3, + ACTIONS(8583), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [296742] = 5, + [295282] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, + ACTIONS(16200), 1, sym_hex_digit, - ACTIONS(16994), 1, + ACTIONS(16306), 1, anon_sym_RBRACK, - STATE(10286), 1, + STATE(9801), 1, sym_comment, - STATE(10291), 1, + STATE(9827), 1, aux_sym_val_binary_repeat1, - [296758] = 5, + [295298] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(7818), 1, + anon_sym_PIPE, + ACTIONS(16095), 1, + anon_sym_LF, + STATE(3489), 1, + aux_sym_pipe_element_repeat1, + STATE(9802), 1, + sym_comment, + [295314] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(7818), 1, + anon_sym_PIPE, + ACTIONS(16095), 1, + anon_sym_LF, + STATE(3564), 1, + aux_sym_pipe_element_repeat1, + STATE(9803), 1, + sym_comment, + [295330] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - ACTIONS(3876), 1, - anon_sym_in, - ACTIONS(13456), 1, - anon_sym_DOT, - STATE(10287), 1, + ACTIONS(16200), 1, + sym_hex_digit, + ACTIONS(16308), 1, + anon_sym_RBRACK, + STATE(9804), 1, sym_comment, - [296774] = 4, - ACTIONS(113), 1, + STATE(9808), 1, + aux_sym_val_binary_repeat1, + [295346] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1280), 1, - aux_sym_unquoted_token6, - STATE(10288), 1, + STATE(9805), 1, sym_comment, - ACTIONS(1282), 2, - anon_sym_LBRACE, - anon_sym_LPAREN2, - [296788] = 5, + ACTIONS(8377), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [295358] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - ACTIONS(9407), 1, + ACTIONS(1149), 1, aux_sym_unquoted_token6, - STATE(10289), 1, + STATE(9806), 1, sym_comment, - STATE(10634), 1, - sym__expr_parenthesized_immediate, - [296804] = 4, + ACTIONS(7778), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [295372] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15928), 1, + ACTIONS(15614), 1, anon_sym_SEMI, - STATE(10290), 1, + STATE(9807), 1, sym_comment, - ACTIONS(15930), 2, + ACTIONS(15616), 2, ts_builtin_sym_end, anon_sym_LF, - [296818] = 5, + [295386] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, + ACTIONS(16200), 1, sym_hex_digit, - ACTIONS(16996), 1, + ACTIONS(16310), 1, anon_sym_RBRACK, - STATE(10291), 1, + STATE(9808), 1, sym_comment, - STATE(10420), 1, + STATE(9830), 1, aux_sym_val_binary_repeat1, - [296834] = 4, + [295402] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17000), 1, - anon_sym_LF, - STATE(10292), 1, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + ACTIONS(8465), 1, + aux_sym_unquoted_token6, + STATE(9809), 1, sym_comment, - ACTIONS(16998), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [296848] = 5, + STATE(10152), 1, + sym__expr_parenthesized_immediate, + [295418] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(3314), 1, + anon_sym_LBRACE, + ACTIONS(12748), 1, + anon_sym_DOT, + STATE(9810), 1, + sym_comment, + [295434] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, + ACTIONS(2187), 1, anon_sym_LPAREN2, - ACTIONS(9055), 1, + ACTIONS(9193), 1, aux_sym_unquoted_token6, - STATE(10293), 1, + STATE(9811), 1, sym_comment, - STATE(10664), 1, + STATE(10183), 1, sym__expr_parenthesized_immediate, - [296864] = 4, + [295450] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17004), 1, + ACTIONS(7818), 1, + anon_sym_PIPE, + ACTIONS(16095), 1, anon_sym_LF, - STATE(10294), 1, + STATE(3476), 1, + aux_sym_pipe_element_repeat1, + STATE(9812), 1, sym_comment, - ACTIONS(17002), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [296878] = 5, + [295466] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(938), 1, - anon_sym_LBRACE, - ACTIONS(11000), 1, + ACTIONS(895), 1, + anon_sym_COLON, + ACTIONS(16312), 1, aux_sym__immediate_decimal_token1, - ACTIONS(17006), 1, - aux_sym_unquoted_token2, - STATE(10295), 1, + ACTIONS(16314), 1, + aux_sym__immediate_decimal_token2, + STATE(9813), 1, sym_comment, - [296894] = 5, + [295482] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, + ACTIONS(16200), 1, sym_hex_digit, - ACTIONS(17008), 1, + ACTIONS(16316), 1, anon_sym_RBRACK, - STATE(10296), 1, + STATE(9814), 1, sym_comment, - STATE(10302), 1, + STATE(9820), 1, aux_sym_val_binary_repeat1, - [296910] = 5, + [295498] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(13169), 1, - anon_sym_DOT, - ACTIONS(15594), 1, - aux_sym__immediate_decimal_token1, - STATE(10297), 1, + ACTIONS(16200), 1, + sym_hex_digit, + ACTIONS(16318), 1, + anon_sym_RBRACK, + STATE(9815), 1, sym_comment, - [296926] = 5, + STATE(9816), 1, + aux_sym_val_binary_repeat1, + [295514] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, + ACTIONS(16200), 1, sym_hex_digit, - ACTIONS(17010), 1, + ACTIONS(16320), 1, anon_sym_RBRACK, - STATE(10298), 1, + STATE(9816), 1, sym_comment, - STATE(10309), 1, + STATE(9830), 1, aux_sym_val_binary_repeat1, - [296942] = 5, + [295530] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1089), 1, + anon_sym_RBRACK, + ACTIONS(1091), 1, + sym__entry_separator, + ACTIONS(16322), 1, + anon_sym_SEMI, + STATE(9817), 1, + sym_comment, + [295546] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, + ACTIONS(2187), 1, anon_sym_LPAREN2, - ACTIONS(9323), 1, + ACTIONS(8911), 1, aux_sym_unquoted_token6, - STATE(10299), 1, + STATE(9818), 1, sym_comment, - STATE(10697), 1, + STATE(10193), 1, sym__expr_parenthesized_immediate, - [296958] = 5, - ACTIONS(3), 1, + [295562] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16870), 1, - sym_hex_digit, - ACTIONS(17012), 1, - anon_sym_RBRACK, - STATE(10300), 1, + ACTIONS(16324), 1, + anon_sym_LPAREN, + STATE(9819), 1, sym_comment, - STATE(10420), 1, - aux_sym_val_binary_repeat1, - [296974] = 5, + ACTIONS(16326), 2, + sym_unescaped_interpolated_content, + anon_sym_SQUOTE, + [295576] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, + ACTIONS(16200), 1, sym_hex_digit, - ACTIONS(17014), 1, + ACTIONS(16328), 1, anon_sym_RBRACK, - STATE(10301), 1, + STATE(9820), 1, sym_comment, - STATE(10313), 1, + STATE(9830), 1, aux_sym_val_binary_repeat1, - [296990] = 5, + [295592] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, + ACTIONS(16200), 1, sym_hex_digit, - ACTIONS(17016), 1, + ACTIONS(16330), 1, anon_sym_RBRACK, - STATE(10302), 1, - sym_comment, - STATE(10420), 1, + STATE(9757), 1, aux_sym_val_binary_repeat1, - [297006] = 4, - ACTIONS(113), 1, + STATE(9821), 1, + sym_comment, + [295608] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16074), 1, - anon_sym_SEMI, - STATE(10303), 1, + ACTIONS(16232), 1, + anon_sym_COLON, + ACTIONS(16332), 1, + anon_sym_EQ, + STATE(9822), 1, sym_comment, - ACTIONS(16076), 2, - ts_builtin_sym_end, - anon_sym_LF, - [297020] = 5, - ACTIONS(113), 1, + STATE(10524), 1, + sym_param_type, + [295624] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2340), 1, - aux_sym_unquoted_token6, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - STATE(10304), 1, + ACTIONS(3707), 1, + anon_sym_COLON, + ACTIONS(13397), 1, + anon_sym_LBRACE, + STATE(2352), 1, + sym_block, + STATE(9823), 1, sym_comment, - STATE(10647), 1, - sym__expr_parenthesized_immediate, - [297036] = 5, - ACTIONS(113), 1, + [295640] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2437), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(17018), 1, + ACTIONS(922), 1, + anon_sym_in, + ACTIONS(10501), 1, aux_sym__immediate_decimal_token1, - ACTIONS(17020), 1, - aux_sym__immediate_decimal_token2, - STATE(10305), 1, + ACTIONS(16334), 1, + aux_sym_unquoted_token2, + STATE(9824), 1, sym_comment, - [297052] = 5, + [295656] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, + ACTIONS(16200), 1, sym_hex_digit, - ACTIONS(17022), 1, + ACTIONS(16336), 1, anon_sym_RBRACK, - STATE(10306), 1, + STATE(9825), 1, sym_comment, - STATE(10420), 1, + STATE(9831), 1, aux_sym_val_binary_repeat1, - [297068] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - ACTIONS(11873), 1, - aux_sym_unquoted_token6, - STATE(10307), 1, - sym_comment, - STATE(10701), 1, - sym__expr_parenthesized_immediate, - [297084] = 4, + [295672] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17024), 1, - anon_sym_EQ, - STATE(10308), 1, - sym_comment, - ACTIONS(5015), 2, - anon_sym_DOLLAR, + ACTIONS(3707), 1, + anon_sym_COLON, + ACTIONS(13397), 1, anon_sym_LBRACE, - [297098] = 5, + STATE(2375), 1, + sym_block, + STATE(9826), 1, + sym_comment, + [295688] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, + ACTIONS(16200), 1, sym_hex_digit, - ACTIONS(17026), 1, + ACTIONS(16338), 1, anon_sym_RBRACK, - STATE(10309), 1, + STATE(9827), 1, sym_comment, - STATE(10420), 1, + STATE(9830), 1, aux_sym_val_binary_repeat1, - [297114] = 5, + [295704] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4008), 1, - anon_sym_in, - ACTIONS(4012), 1, - aux_sym_unquoted_token2, - ACTIONS(13520), 1, - anon_sym_DOT, - STATE(10310), 1, + ACTIONS(3707), 1, + anon_sym_COLON, + ACTIONS(16340), 1, + anon_sym_LBRACE, + STATE(8282), 1, + sym_block, + STATE(9828), 1, sym_comment, - [297130] = 5, + [295720] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, - sym_hex_digit, - ACTIONS(17028), 1, - anon_sym_RBRACK, - STATE(10311), 1, + ACTIONS(16232), 1, + anon_sym_COLON, + ACTIONS(16342), 1, + anon_sym_EQ, + STATE(9829), 1, sym_comment, - STATE(10312), 1, - aux_sym_val_binary_repeat1, - [297146] = 5, + STATE(10447), 1, + sym_param_type, + [295736] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, - sym_hex_digit, - ACTIONS(17030), 1, + ACTIONS(16344), 1, anon_sym_RBRACK, - STATE(10312), 1, + ACTIONS(16346), 1, + sym_hex_digit, + STATE(9830), 2, sym_comment, - STATE(10420), 1, aux_sym_val_binary_repeat1, - [297162] = 5, + [295750] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, + ACTIONS(16200), 1, sym_hex_digit, - ACTIONS(17032), 1, + ACTIONS(16349), 1, anon_sym_RBRACK, - STATE(10313), 1, - sym_comment, - STATE(10420), 1, + STATE(9830), 1, aux_sym_val_binary_repeat1, - [297178] = 4, + STATE(9831), 1, + sym_comment, + [295766] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17034), 1, - anon_sym_PIPE, - ACTIONS(17037), 1, - anon_sym_EQ_GT, - STATE(10314), 2, + ACTIONS(9209), 1, + aux_sym_unquoted_token5, + STATE(9832), 1, sym_comment, - aux_sym_match_pattern_repeat1, - [297192] = 5, + ACTIONS(940), 2, + anon_sym_DOLLAR, + anon_sym_LBRACE, + [295780] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5011), 1, + ACTIONS(938), 1, anon_sym_RBRACK, - ACTIONS(5015), 1, + ACTIONS(940), 1, sym__entry_separator, - ACTIONS(17039), 1, - anon_sym_EQ, - STATE(10315), 1, + ACTIONS(9162), 1, + aux_sym_unquoted_token5, + STATE(9833), 1, sym_comment, - [297208] = 5, - ACTIONS(3), 1, + [295796] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16886), 1, - anon_sym_COLON, - ACTIONS(17041), 1, - anon_sym_EQ, - STATE(10316), 1, + ACTIONS(4734), 1, + anon_sym_RBRACK, + ACTIONS(4738), 1, + sym__entry_separator, + ACTIONS(16351), 1, + sym_long_flag_identifier, + STATE(9834), 1, sym_comment, - STATE(11287), 1, - sym_param_type, - [297224] = 5, + [295812] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1243), 1, - anon_sym_in, - ACTIONS(1290), 1, + ACTIONS(1139), 1, + anon_sym_LBRACE, + ACTIONS(1209), 1, anon_sym_LPAREN2, - ACTIONS(10998), 1, + ACTIONS(10465), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(10317), 1, + STATE(9835), 1, sym_comment, - [297240] = 5, + [295828] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1247), 1, - anon_sym_in, - ACTIONS(1251), 1, - aux_sym_unquoted_token6, - ACTIONS(4037), 1, - anon_sym_LPAREN2, - STATE(10318), 1, - sym_comment, - [297256] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(16870), 1, - sym_hex_digit, - ACTIONS(17043), 1, - anon_sym_RBRACK, - STATE(10319), 1, + ACTIONS(16146), 1, + anon_sym_SEMI, + STATE(9836), 1, sym_comment, - STATE(10322), 1, - aux_sym_val_binary_repeat1, - [297272] = 5, + ACTIONS(16148), 2, + ts_builtin_sym_end, + anon_sym_LF, + [295842] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1255), 1, - anon_sym_LBRACE, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - ACTIONS(4631), 1, + ACTIONS(2187), 1, anon_sym_LPAREN2, - STATE(10320), 1, - sym_comment, - [297288] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1257), 1, + ACTIONS(7555), 1, aux_sym_unquoted_token6, - ACTIONS(1275), 1, - anon_sym_LBRACE, - ACTIONS(4631), 1, - anon_sym_LPAREN2, - STATE(10321), 1, + STATE(9837), 1, sym_comment, - [297304] = 5, + STATE(10193), 1, + sym__expr_parenthesized_immediate, + [295858] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, + ACTIONS(16200), 1, sym_hex_digit, - ACTIONS(17045), 1, + ACTIONS(16353), 1, anon_sym_RBRACK, - STATE(10322), 1, + STATE(9838), 1, sym_comment, - STATE(10420), 1, + STATE(9843), 1, aux_sym_val_binary_repeat1, - [297320] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(17049), 1, - anon_sym_LF, - STATE(10323), 1, - sym_comment, - ACTIONS(17047), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [297334] = 5, + [295874] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17051), 1, + ACTIONS(16355), 1, anon_sym_LPAREN2, - ACTIONS(17053), 1, + ACTIONS(16357), 1, aux_sym__list_item_starts_with_sign_token1, - ACTIONS(17055), 1, + ACTIONS(16359), 1, sym_short_flag_identifier, - STATE(10324), 1, - sym_comment, - [297350] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(17057), 1, - anon_sym_EQ, - STATE(10325), 1, + STATE(9839), 1, sym_comment, - ACTIONS(5015), 2, - sym_identifier, - anon_sym_DOLLAR, - [297364] = 5, + [295890] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4008), 1, - anon_sym_LBRACE, - ACTIONS(4012), 1, + ACTIONS(3646), 1, + anon_sym_in, + ACTIONS(3650), 1, aux_sym_unquoted_token2, - ACTIONS(13520), 1, + ACTIONS(13004), 1, anon_sym_DOT, - STATE(10326), 1, + STATE(9840), 1, sym_comment, - [297380] = 5, - ACTIONS(113), 1, + [295906] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1158), 1, + ACTIONS(16200), 1, + sym_hex_digit, + ACTIONS(16361), 1, anon_sym_RBRACK, - ACTIONS(1160), 1, - sym__entry_separator, - ACTIONS(17059), 1, - anon_sym_SEMI, - STATE(10327), 1, + STATE(9841), 1, sym_comment, - [297396] = 4, + STATE(9907), 1, + aux_sym_val_binary_repeat1, + [295922] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9820), 1, - aux_sym_unquoted_token5, - STATE(10328), 1, + ACTIONS(2358), 1, + anon_sym_in, + ACTIONS(13582), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(16363), 1, + anon_sym_DOT, + STATE(9842), 1, sym_comment, - ACTIONS(961), 2, - anon_sym_DOLLAR, - anon_sym_LBRACE, - [297410] = 5, + [295938] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3880), 1, - anon_sym_COLON, - ACTIONS(13945), 1, - anon_sym_LBRACE, - STATE(2641), 1, - sym_block, - STATE(10329), 1, + ACTIONS(16200), 1, + sym_hex_digit, + ACTIONS(16365), 1, + anon_sym_RBRACK, + STATE(9830), 1, + aux_sym_val_binary_repeat1, + STATE(9843), 1, sym_comment, - [297426] = 5, - ACTIONS(3), 1, + [295954] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2845), 1, - anon_sym_in, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(13169), 1, - anon_sym_DOT, - STATE(10330), 1, + ACTIONS(15622), 1, + anon_sym_SEMI, + STATE(9844), 1, sym_comment, - [297442] = 5, + ACTIONS(15624), 2, + ts_builtin_sym_end, + anon_sym_LF, + [295968] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3880), 1, + ACTIONS(3655), 1, anon_sym_COLON, - ACTIONS(13945), 1, + ACTIONS(13397), 1, anon_sym_LBRACE, - STATE(2644), 1, + STATE(2352), 1, sym_block, - STATE(10331), 1, + STATE(9845), 1, sym_comment, - [297458] = 4, - ACTIONS(3), 1, + [295984] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16970), 1, - aux_sym__immediate_decimal_token1, - STATE(10332), 1, + ACTIONS(10420), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(9846), 1, sym_comment, - ACTIONS(5085), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [297472] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(16870), 1, - sym_hex_digit, - ACTIONS(17061), 1, + ACTIONS(1139), 2, anon_sym_RBRACK, - STATE(10333), 1, - sym_comment, - STATE(10335), 1, - aux_sym_val_binary_repeat1, - [297488] = 5, - ACTIONS(3), 1, + sym__entry_separator, + [295998] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3880), 1, - anon_sym_COLON, - ACTIONS(17063), 1, - anon_sym_LBRACE, - STATE(8647), 1, - sym_block, - STATE(10334), 1, + ACTIONS(15560), 1, + anon_sym_LPAREN, + STATE(9847), 1, sym_comment, - [297504] = 5, + ACTIONS(15562), 2, + sym_unescaped_interpolated_content, + anon_sym_SQUOTE, + [296012] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, + ACTIONS(16200), 1, sym_hex_digit, - ACTIONS(17065), 1, + ACTIONS(16367), 1, anon_sym_RBRACK, - STATE(10335), 1, + STATE(9848), 1, sym_comment, - STATE(10420), 1, + STATE(9870), 1, aux_sym_val_binary_repeat1, - [297520] = 5, + [296028] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, + ACTIONS(16200), 1, sym_hex_digit, - ACTIONS(17067), 1, + ACTIONS(16369), 1, anon_sym_RBRACK, - STATE(10336), 1, + STATE(9849), 1, sym_comment, - STATE(10338), 1, + STATE(9853), 1, aux_sym_val_binary_repeat1, - [297536] = 5, + [296044] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(9850), 1, + sym_comment, + ACTIONS(8610), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [296056] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, + ACTIONS(2187), 1, anon_sym_LPAREN2, - ACTIONS(9638), 1, + ACTIONS(8606), 1, aux_sym_unquoted_token6, - STATE(10337), 1, + STATE(9851), 1, sym_comment, - STATE(10502), 1, + STATE(10208), 1, sym__expr_parenthesized_immediate, - [297552] = 5, + [296072] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, + ACTIONS(15168), 1, + anon_sym_if, + ACTIONS(16371), 1, + anon_sym_EQ_GT, + STATE(9852), 1, + sym_comment, + STATE(10585), 1, + sym_match_guard, + [296088] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(16200), 1, sym_hex_digit, - ACTIONS(17069), 1, + ACTIONS(16373), 1, anon_sym_RBRACK, - STATE(10338), 1, - sym_comment, - STATE(10420), 1, + STATE(9830), 1, aux_sym_val_binary_repeat1, - [297568] = 5, + STATE(9853), 1, + sym_comment, + [296104] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, + ACTIONS(16200), 1, sym_hex_digit, - ACTIONS(17071), 1, + ACTIONS(16375), 1, anon_sym_RBRACK, - STATE(10339), 1, + STATE(9854), 1, sym_comment, - STATE(10344), 1, + STATE(9873), 1, aux_sym_val_binary_repeat1, - [297584] = 4, - ACTIONS(113), 1, + [296120] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17073), 1, - anon_sym_LF, - STATE(10340), 1, + ACTIONS(922), 1, + anon_sym_LBRACE, + ACTIONS(10501), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(16377), 1, + aux_sym_unquoted_token2, + STATE(9855), 1, sym_comment, - ACTIONS(6798), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [297598] = 5, + [296136] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - ACTIONS(8972), 1, - aux_sym_unquoted_token6, - STATE(10341), 1, + ACTIONS(6058), 1, + anon_sym_SEMI, + ACTIONS(6060), 1, + anon_sym_LF, + STATE(2625), 1, + sym__terminator, + STATE(9856), 1, sym_comment, - STATE(10675), 1, - sym__expr_parenthesized_immediate, - [297614] = 5, + [296152] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1253), 1, - anon_sym_in, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - ACTIONS(4631), 1, - anon_sym_LPAREN2, - STATE(10342), 1, + ACTIONS(16379), 1, + anon_sym_DQUOTE, + STATE(9857), 1, sym_comment, - [297630] = 5, - ACTIONS(113), 1, + ACTIONS(16381), 2, + sym__escaped_str_content, + sym_escape_sequence, + [296166] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1257), 1, - aux_sym_unquoted_token6, - ACTIONS(1273), 1, - anon_sym_in, - ACTIONS(4631), 1, - anon_sym_LPAREN2, - STATE(10343), 1, + ACTIONS(16232), 1, + anon_sym_COLON, + ACTIONS(16383), 1, + anon_sym_EQ, + STATE(9858), 1, sym_comment, - [297646] = 5, + STATE(10623), 1, + sym_param_type, + [296182] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, - sym_hex_digit, - ACTIONS(17075), 1, - anon_sym_RBRACK, - STATE(10344), 1, + STATE(9859), 1, sym_comment, - STATE(10420), 1, - aux_sym_val_binary_repeat1, - [297662] = 4, - ACTIONS(113), 1, + ACTIONS(16385), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [296194] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17077), 1, - anon_sym_LF, - STATE(10345), 1, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + ACTIONS(4198), 1, + anon_sym_in, + STATE(9860), 1, sym_comment, - ACTIONS(6895), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [297676] = 5, + STATE(10048), 1, + sym__expr_parenthesized_immediate, + [296210] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(911), 1, + ACTIONS(3655), 1, anon_sym_COLON, - ACTIONS(17079), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(17081), 1, - aux_sym__immediate_decimal_token2, - STATE(10346), 1, + ACTIONS(16340), 1, + anon_sym_LBRACE, + STATE(8282), 1, + sym_block, + STATE(9861), 1, sym_comment, - [297692] = 5, + [296226] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, - sym_hex_digit, - ACTIONS(17083), 1, - anon_sym_RBRACK, - STATE(10347), 1, + STATE(9862), 1, sym_comment, - STATE(10349), 1, - aux_sym_val_binary_repeat1, - [297708] = 5, + ACTIONS(7826), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [296238] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, - sym_hex_digit, - ACTIONS(17085), 1, - anon_sym_RBRACK, - STATE(10348), 1, + STATE(9863), 1, sym_comment, - STATE(10351), 1, - aux_sym_val_binary_repeat1, - [297724] = 5, + ACTIONS(8393), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [296250] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, - sym_hex_digit, - ACTIONS(17087), 1, - anon_sym_RBRACK, - STATE(10349), 1, + STATE(9864), 1, sym_comment, - STATE(10420), 1, - aux_sym_val_binary_repeat1, - [297740] = 5, + ACTIONS(8542), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [296262] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, + ACTIONS(2187), 1, anon_sym_LPAREN2, - ACTIONS(12104), 1, + ACTIONS(8715), 1, aux_sym_unquoted_token6, - STATE(10350), 1, + STATE(9865), 1, sym_comment, - STATE(10531), 1, + STATE(10027), 1, sym__expr_parenthesized_immediate, - [297756] = 5, + [296278] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, + ACTIONS(16200), 1, sym_hex_digit, - ACTIONS(17089), 1, + ACTIONS(16387), 1, anon_sym_RBRACK, - STATE(10351), 1, + STATE(9866), 1, sym_comment, - STATE(10420), 1, + STATE(9882), 1, aux_sym_val_binary_repeat1, - [297772] = 4, + [296294] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10998), 1, + ACTIONS(16389), 1, + anon_sym_LPAREN2, + ACTIONS(16391), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(10352), 1, + ACTIONS(16393), 1, + sym_short_flag_identifier, + STATE(9867), 1, sym_comment, - ACTIONS(1243), 2, - anon_sym_DOLLAR, - anon_sym_LBRACE, - [297786] = 5, + [296310] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1158), 1, - anon_sym_RBRACK, - ACTIONS(1160), 1, - sym__entry_separator, - ACTIONS(17091), 1, + ACTIONS(6348), 1, + anon_sym_RPAREN, + ACTIONS(16395), 1, anon_sym_SEMI, - STATE(10353), 1, - sym_comment, - [297802] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(959), 1, - anon_sym_RBRACK, - ACTIONS(961), 1, - sym__entry_separator, - ACTIONS(7587), 1, - aux_sym__unquoted_in_list_token6, - STATE(10354), 1, + ACTIONS(16397), 1, + anon_sym_LF, + STATE(9868), 1, sym_comment, - [297818] = 5, + [296326] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14929), 1, + STATE(9869), 1, + sym_comment, + ACTIONS(8587), 3, + anon_sym_PIPE, anon_sym_if, - ACTIONS(17093), 1, anon_sym_EQ_GT, - STATE(10355), 1, - sym_comment, - STATE(10838), 1, - sym_match_guard, - [297834] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12841), 1, - anon_sym_EQ, - ACTIONS(17095), 1, - anon_sym_AT, - STATE(7824), 1, - sym_param_cmd, - STATE(10356), 1, - sym_comment, - [297850] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(17097), 1, - sym_long_flag_identifier, - STATE(10357), 1, - sym_comment, - ACTIONS(5079), 2, - anon_sym_DOLLAR, - anon_sym_LBRACE, - [297864] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(2581), 1, - aux_sym__list_item_starts_with_sign_token1, - ACTIONS(17099), 1, - anon_sym_DOT, - ACTIONS(17101), 1, - aux_sym__immediate_decimal_token2, - STATE(10358), 1, - sym_comment, - [297880] = 5, + [296338] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, + ACTIONS(16200), 1, sym_hex_digit, - ACTIONS(17103), 1, + ACTIONS(16399), 1, anon_sym_RBRACK, - STATE(10359), 1, - sym_comment, - STATE(10415), 1, + STATE(9830), 1, aux_sym_val_binary_repeat1, - [297896] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1243), 1, - anon_sym_LBRACE, - ACTIONS(1290), 1, - anon_sym_LPAREN2, - ACTIONS(10998), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(10360), 1, + STATE(9870), 1, sym_comment, - [297912] = 5, + [296354] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1158), 1, - anon_sym_RBRACK, - ACTIONS(1160), 1, - sym__entry_separator, - ACTIONS(17105), 1, - anon_sym_SEMI, - STATE(10361), 1, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + ACTIONS(9249), 1, + aux_sym_unquoted_token6, + STATE(9871), 1, sym_comment, - [297928] = 5, + STATE(10092), 1, + sym__expr_parenthesized_immediate, + [296370] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, + ACTIONS(16200), 1, sym_hex_digit, - ACTIONS(17107), 1, + ACTIONS(16401), 1, anon_sym_RBRACK, - STATE(10362), 1, - sym_comment, - STATE(10367), 1, + STATE(9830), 1, aux_sym_val_binary_repeat1, - [297944] = 5, + STATE(9872), 1, + sym_comment, + [296386] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, + ACTIONS(16200), 1, sym_hex_digit, - ACTIONS(17109), 1, + ACTIONS(16403), 1, anon_sym_RBRACK, - STATE(10363), 1, - sym_comment, - STATE(10375), 1, + STATE(9830), 1, aux_sym_val_binary_repeat1, - [297960] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(2581), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(17111), 1, - anon_sym_DOT, - ACTIONS(17113), 1, - aux_sym__immediate_decimal_token2, - STATE(10364), 1, + STATE(9873), 1, sym_comment, - [297976] = 5, + [296402] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, + ACTIONS(7105), 1, + aux_sym__unquoted_in_list_token7, + ACTIONS(7265), 1, anon_sym_LPAREN2, - ACTIONS(9822), 1, - aux_sym_unquoted_token6, - STATE(10365), 1, + STATE(9874), 1, sym_comment, - STATE(10701), 1, + STATE(10057), 1, sym__expr_parenthesized_immediate, - [297992] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - ACTIONS(3876), 1, - anon_sym_LBRACE, - ACTIONS(13456), 1, - anon_sym_DOT, - STATE(10366), 1, - sym_comment, - [298008] = 5, + [296418] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, - sym_hex_digit, - ACTIONS(17115), 1, - anon_sym_RBRACK, - STATE(10367), 1, + STATE(9875), 1, sym_comment, - STATE(10420), 1, - aux_sym_val_binary_repeat1, - [298024] = 5, + ACTIONS(7828), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [296430] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1158), 1, - anon_sym_in, - ACTIONS(1284), 1, - aux_sym_unquoted_token6, - ACTIONS(4895), 1, - anon_sym_LPAREN2, - STATE(10368), 1, + ACTIONS(10465), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(9876), 1, sym_comment, - [298040] = 5, + ACTIONS(1139), 2, + anon_sym_DOLLAR, + anon_sym_LBRACE, + [296444] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1158), 1, + ACTIONS(1089), 1, anon_sym_RBRACK, - ACTIONS(1160), 1, + ACTIONS(1091), 1, sym__entry_separator, - ACTIONS(17117), 1, + ACTIONS(16405), 1, anon_sym_SEMI, - STATE(10369), 1, + STATE(9877), 1, sym_comment, - [298056] = 3, + [296460] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(10370), 1, + STATE(9878), 1, sym_comment, - ACTIONS(17119), 3, + ACTIONS(16407), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [298068] = 3, + [296472] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(10371), 1, + ACTIONS(16200), 1, + sym_hex_digit, + ACTIONS(16409), 1, + anon_sym_RBRACK, + STATE(9879), 1, sym_comment, - ACTIONS(8394), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [298080] = 4, + STATE(9895), 1, + aux_sym_val_binary_repeat1, + [296488] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(16411), 1, + sym_long_flag_identifier, + STATE(9880), 1, + sym_comment, + ACTIONS(4738), 2, + anon_sym_DOLLAR, + anon_sym_LBRACE, + [296502] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1284), 1, - aux_sym_unquoted_token6, - STATE(10372), 1, + ACTIONS(16415), 1, + anon_sym_LF, + STATE(9881), 1, sym_comment, - ACTIONS(8211), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [298094] = 4, + ACTIONS(16413), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [296516] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(16200), 1, + sym_hex_digit, + ACTIONS(16417), 1, + anon_sym_RBRACK, + STATE(9830), 1, + aux_sym_val_binary_repeat1, + STATE(9882), 1, + sym_comment, + [296532] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3356), 1, + anon_sym_LBRACE, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(12513), 1, + anon_sym_DOT, + STATE(9883), 1, + sym_comment, + [296548] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16828), 1, + ACTIONS(6243), 1, anon_sym_SEMI, - STATE(10373), 1, + STATE(9884), 1, sym_comment, - ACTIONS(16830), 2, + ACTIONS(6245), 2, ts_builtin_sym_end, anon_sym_LF, - [298108] = 5, + [296562] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1158), 1, + ACTIONS(1089), 1, anon_sym_RBRACK, - ACTIONS(1160), 1, + ACTIONS(1091), 1, sym__entry_separator, - ACTIONS(17121), 1, + ACTIONS(16419), 1, anon_sym_SEMI, - STATE(10374), 1, + STATE(9885), 1, sym_comment, - [298124] = 5, + [296578] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, + ACTIONS(16200), 1, sym_hex_digit, - ACTIONS(17123), 1, + ACTIONS(16421), 1, anon_sym_RBRACK, - STATE(10375), 1, - sym_comment, - STATE(10420), 1, + STATE(9730), 1, aux_sym_val_binary_repeat1, - [298140] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(10376), 1, - sym_comment, - ACTIONS(8200), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [298152] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1158), 1, - anon_sym_RBRACK, - ACTIONS(1160), 1, - sym__entry_separator, - ACTIONS(17125), 1, - anon_sym_SEMI, - STATE(10377), 1, + STATE(9886), 1, sym_comment, - [298168] = 3, + [296594] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(10378), 1, + STATE(9887), 1, sym_comment, - ACTIONS(8940), 3, + ACTIONS(8620), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [298180] = 5, + [296606] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - ACTIONS(4325), 1, - anon_sym_in, - STATE(10379), 1, - sym_comment, - STATE(11424), 1, - sym__expr_parenthesized_immediate, - [298196] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1158), 1, + ACTIONS(16200), 1, + sym_hex_digit, + ACTIONS(16423), 1, anon_sym_RBRACK, - ACTIONS(1160), 1, - sym__entry_separator, - ACTIONS(17127), 1, - anon_sym_SEMI, - STATE(10380), 1, + STATE(9888), 1, sym_comment, - [298212] = 5, - ACTIONS(3), 1, + STATE(9939), 1, + aux_sym_val_binary_repeat1, + [296622] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, + ACTIONS(2187), 1, anon_sym_LPAREN2, - ACTIONS(4377), 1, - anon_sym_in, - STATE(10381), 1, + ACTIONS(8838), 1, + aux_sym_unquoted_token6, + STATE(9889), 1, sym_comment, - STATE(11424), 1, + STATE(10005), 1, sym__expr_parenthesized_immediate, - [298228] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1158), 1, - anon_sym_RBRACK, - ACTIONS(1160), 1, - sym__entry_separator, - ACTIONS(17129), 1, - anon_sym_SEMI, - STATE(10382), 1, - sym_comment, - [298244] = 3, + [296638] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(10383), 1, + STATE(9890), 1, sym_comment, - ACTIONS(8944), 3, + ACTIONS(8624), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [298256] = 3, + [296650] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(10384), 1, - sym_comment, - ACTIONS(9097), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [298268] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1158), 1, - anon_sym_RBRACK, - ACTIONS(1160), 1, - sym__entry_separator, - ACTIONS(17131), 1, - anon_sym_SEMI, - STATE(10385), 1, + ACTIONS(5589), 1, + anon_sym_DASH, + STATE(9891), 1, sym_comment, - [298284] = 5, + ACTIONS(5591), 2, + sym_identifier, + anon_sym_DASH_DASH, + [296664] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1158), 1, + ACTIONS(1089), 1, anon_sym_RBRACK, - ACTIONS(1160), 1, + ACTIONS(1091), 1, sym__entry_separator, - ACTIONS(17133), 1, + ACTIONS(16425), 1, anon_sym_SEMI, - STATE(10386), 1, + STATE(9892), 1, sym_comment, - [298300] = 3, + [296680] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(10387), 1, - sym_comment, - ACTIONS(9097), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [298312] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1158), 1, + ACTIONS(16200), 1, + sym_hex_digit, + ACTIONS(16427), 1, anon_sym_RBRACK, - ACTIONS(1160), 1, - sym__entry_separator, - ACTIONS(17135), 1, - anon_sym_SEMI, - STATE(10388), 1, + STATE(9727), 1, + aux_sym_val_binary_repeat1, + STATE(9893), 1, sym_comment, - [298328] = 5, + [296696] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, + ACTIONS(16200), 1, sym_hex_digit, - ACTIONS(17137), 1, + ACTIONS(16429), 1, anon_sym_RBRACK, - STATE(10389), 1, + STATE(9894), 1, sym_comment, - STATE(10397), 1, + STATE(9914), 1, aux_sym_val_binary_repeat1, - [298344] = 3, + [296712] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(10390), 1, + ACTIONS(16200), 1, + sym_hex_digit, + ACTIONS(16431), 1, + anon_sym_RBRACK, + STATE(9830), 1, + aux_sym_val_binary_repeat1, + STATE(9895), 1, sym_comment, - ACTIONS(8948), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [298356] = 5, + [296728] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1158), 1, + ACTIONS(938), 1, anon_sym_RBRACK, - ACTIONS(1160), 1, + ACTIONS(940), 1, sym__entry_separator, - ACTIONS(17139), 1, - anon_sym_SEMI, - STATE(10391), 1, + ACTIONS(7103), 1, + aux_sym__unquoted_in_list_token6, + STATE(9896), 1, sym_comment, - [298372] = 3, + [296744] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(10392), 1, + ACTIONS(1844), 1, + aux_sym_unquoted_token2, + ACTIONS(3314), 1, + anon_sym_in, + ACTIONS(12748), 1, + anon_sym_DOT, + STATE(9897), 1, sym_comment, - ACTIONS(9101), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [298384] = 5, + [296760] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, + ACTIONS(2187), 1, anon_sym_LPAREN2, - ACTIONS(9822), 1, + ACTIONS(8550), 1, aux_sym_unquoted_token6, - STATE(10393), 1, + STATE(9898), 1, sym_comment, - STATE(10570), 1, + STATE(10242), 1, sym__expr_parenthesized_immediate, - [298400] = 5, + [296776] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1158), 1, + ACTIONS(1089), 1, anon_sym_RBRACK, - ACTIONS(1160), 1, + ACTIONS(1091), 1, sym__entry_separator, - ACTIONS(17141), 1, + ACTIONS(16433), 1, anon_sym_SEMI, - STATE(10394), 1, - sym_comment, - [298416] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(17143), 1, - anon_sym_DQUOTE, - STATE(10395), 1, + STATE(9899), 1, sym_comment, - ACTIONS(17145), 2, - sym__escaped_str_content, - sym_escape_sequence, - [298430] = 5, + [296792] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1158), 1, - anon_sym_RBRACK, - ACTIONS(1160), 1, - sym__entry_separator, - ACTIONS(17147), 1, + ACTIONS(15243), 1, anon_sym_SEMI, - STATE(10396), 1, - sym_comment, - [298446] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(16870), 1, - sym_hex_digit, - ACTIONS(17149), 1, - anon_sym_RBRACK, - STATE(10397), 1, + STATE(9900), 1, sym_comment, - STATE(10420), 1, - aux_sym_val_binary_repeat1, - [298462] = 3, + ACTIONS(15245), 2, + ts_builtin_sym_end, + anon_sym_LF, + [296806] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(10398), 1, + ACTIONS(16435), 1, + anon_sym_COMMA, + STATE(9901), 1, sym_comment, - ACTIONS(8396), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [298474] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1158), 1, + ACTIONS(16437), 2, anon_sym_RBRACK, - ACTIONS(1160), 1, - sym__entry_separator, - ACTIONS(17151), 1, - anon_sym_SEMI, - STATE(10399), 1, - sym_comment, - [298490] = 5, + sym_hex_digit, + [296820] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1158), 1, + ACTIONS(1089), 1, anon_sym_RBRACK, - ACTIONS(1160), 1, + ACTIONS(1091), 1, sym__entry_separator, - ACTIONS(17153), 1, + ACTIONS(16439), 1, anon_sym_SEMI, - STATE(10400), 1, + STATE(9902), 1, sym_comment, - [298506] = 4, + [296836] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15932), 1, + ACTIONS(15730), 1, anon_sym_SEMI, - STATE(10401), 1, + STATE(9903), 1, sym_comment, - ACTIONS(15934), 2, + ACTIONS(15732), 2, ts_builtin_sym_end, anon_sym_LF, - [298520] = 5, + [296850] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1158), 1, + ACTIONS(1089), 1, anon_sym_RBRACK, - ACTIONS(1160), 1, + ACTIONS(1091), 1, sym__entry_separator, - ACTIONS(17155), 1, + ACTIONS(16441), 1, anon_sym_SEMI, - STATE(10402), 1, + STATE(9904), 1, sym_comment, - [298536] = 3, + [296866] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(10403), 1, + ACTIONS(2358), 1, + anon_sym_LBRACE, + ACTIONS(13438), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(16443), 1, + anon_sym_DOT, + STATE(9905), 1, sym_comment, - ACTIONS(17157), 3, + [296882] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(7818), 1, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [298548] = 5, + ACTIONS(16095), 1, + anon_sym_LF, + STATE(3549), 1, + aux_sym_pipe_element_repeat1, + STATE(9906), 1, + sym_comment, + [296898] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3984), 1, - anon_sym_COLON, - ACTIONS(13945), 1, - anon_sym_LBRACE, - STATE(2644), 1, - sym_block, - STATE(10404), 1, + ACTIONS(16200), 1, + sym_hex_digit, + ACTIONS(16445), 1, + anon_sym_RBRACK, + STATE(9830), 1, + aux_sym_val_binary_repeat1, + STATE(9907), 1, sym_comment, - [298564] = 5, + [296914] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1158), 1, + ACTIONS(1089), 1, anon_sym_RBRACK, - ACTIONS(1160), 1, + ACTIONS(1091), 1, sym__entry_separator, - ACTIONS(17159), 1, + ACTIONS(16447), 1, anon_sym_SEMI, - STATE(10405), 1, + STATE(9908), 1, sym_comment, - [298580] = 5, + [296930] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1158), 1, - anon_sym_RBRACK, - ACTIONS(1160), 1, - sym__entry_separator, - ACTIONS(17161), 1, - anon_sym_SEMI, - STATE(10406), 1, + ACTIONS(1139), 1, + anon_sym_in, + ACTIONS(1209), 1, + anon_sym_LPAREN2, + ACTIONS(10465), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(9909), 1, sym_comment, - [298596] = 5, + [296946] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8304), 1, - anon_sym_PIPE, - ACTIONS(15962), 1, + ACTIONS(6102), 1, + anon_sym_SEMI, + STATE(9910), 1, + sym_comment, + ACTIONS(6316), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(4013), 1, - aux_sym_pipe_element_repeat1, - STATE(10407), 1, + [296960] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1089), 1, + anon_sym_RBRACK, + ACTIONS(1091), 1, + sym__entry_separator, + ACTIONS(16449), 1, + anon_sym_SEMI, + STATE(9911), 1, sym_comment, - [298612] = 5, + [296976] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8304), 1, - anon_sym_PIPE, - ACTIONS(15962), 1, - anon_sym_LF, - STATE(4015), 1, - aux_sym_pipe_element_repeat1, - STATE(10408), 1, + ACTIONS(1131), 1, + anon_sym_LBRACE, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + ACTIONS(3841), 1, + anon_sym_LPAREN2, + STATE(9912), 1, sym_comment, - [298628] = 4, + [296992] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15881), 1, + ACTIONS(1089), 1, + anon_sym_RBRACK, + ACTIONS(1091), 1, + sym__entry_separator, + ACTIONS(16451), 1, anon_sym_SEMI, - STATE(10409), 1, + STATE(9913), 1, sym_comment, - ACTIONS(15883), 2, - ts_builtin_sym_end, - anon_sym_LF, - [298642] = 4, + [297008] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(16200), 1, + sym_hex_digit, + ACTIONS(16453), 1, + anon_sym_RBRACK, + STATE(9830), 1, + aux_sym_val_binary_repeat1, + STATE(9914), 1, + sym_comment, + [297024] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(6681), 1, - anon_sym_SEMI, - STATE(10410), 1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + ACTIONS(1137), 1, + anon_sym_LBRACE, + ACTIONS(3841), 1, + anon_sym_LPAREN2, + STATE(9915), 1, sym_comment, - ACTIONS(6873), 2, - ts_builtin_sym_end, - anon_sym_LF, - [298656] = 5, + [297040] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1158), 1, + ACTIONS(1089), 1, anon_sym_RBRACK, - ACTIONS(1160), 1, + ACTIONS(1091), 1, sym__entry_separator, - ACTIONS(17163), 1, + ACTIONS(16455), 1, anon_sym_SEMI, - STATE(10411), 1, + STATE(9916), 1, sym_comment, - [298672] = 4, - ACTIONS(3), 1, + [297056] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17165), 1, - anon_sym_COMMA, - STATE(10412), 1, - sym_comment, - ACTIONS(17167), 2, + ACTIONS(1089), 1, anon_sym_RBRACK, - sym_hex_digit, - [298686] = 4, + ACTIONS(1091), 1, + sym__entry_separator, + ACTIONS(16457), 1, + anon_sym_SEMI, + STATE(9917), 1, + sym_comment, + [297072] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17171), 1, - anon_sym_LF, - STATE(10413), 1, + ACTIONS(1129), 1, + anon_sym_in, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + ACTIONS(3841), 1, + anon_sym_LPAREN2, + STATE(9918), 1, sym_comment, - ACTIONS(17169), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [298700] = 5, + [297088] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1158), 1, + ACTIONS(1089), 1, anon_sym_RBRACK, - ACTIONS(1160), 1, + ACTIONS(1091), 1, sym__entry_separator, - ACTIONS(17173), 1, + ACTIONS(16459), 1, anon_sym_SEMI, - STATE(10414), 1, + STATE(9919), 1, sym_comment, - [298716] = 5, - ACTIONS(3), 1, + [297104] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16870), 1, - sym_hex_digit, - ACTIONS(17175), 1, + ACTIONS(1089), 1, anon_sym_RBRACK, - STATE(10415), 1, + ACTIONS(1091), 1, + sym__entry_separator, + ACTIONS(16461), 1, + anon_sym_SEMI, + STATE(9920), 1, sym_comment, - STATE(10420), 1, - aux_sym_val_binary_repeat1, - [298732] = 4, - ACTIONS(113), 1, + [297120] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15655), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(10416), 1, + ACTIONS(16463), 1, + anon_sym_EQ, + STATE(9921), 1, sym_comment, - ACTIONS(1243), 2, + ACTIONS(4725), 2, sym_identifier, anon_sym_DOLLAR, - [298746] = 5, + [297134] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1158), 1, + ACTIONS(1089), 1, anon_sym_RBRACK, - ACTIONS(1160), 1, + ACTIONS(1091), 1, sym__entry_separator, - ACTIONS(17177), 1, + ACTIONS(16465), 1, anon_sym_SEMI, - STATE(10417), 1, - sym_comment, - [298762] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3984), 1, - anon_sym_COLON, - ACTIONS(17063), 1, - anon_sym_LBRACE, - STATE(8647), 1, - sym_block, - STATE(10418), 1, + STATE(9922), 1, sym_comment, - [298778] = 5, + [297150] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1158), 1, + ACTIONS(1089), 1, anon_sym_RBRACK, - ACTIONS(1160), 1, + ACTIONS(1091), 1, sym__entry_separator, - ACTIONS(17179), 1, + ACTIONS(16467), 1, anon_sym_SEMI, - STATE(10419), 1, + STATE(9923), 1, sym_comment, - [298794] = 4, - ACTIONS(3), 1, + [297166] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17181), 1, - anon_sym_RBRACK, - ACTIONS(17183), 1, - sym_hex_digit, - STATE(10420), 2, + ACTIONS(16469), 1, + anon_sym_LPAREN, + STATE(9924), 1, sym_comment, - aux_sym_val_binary_repeat1, - [298808] = 5, + ACTIONS(16471), 2, + sym_unescaped_interpolated_content, + anon_sym_SQUOTE, + [297180] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1158), 1, + ACTIONS(1089), 1, anon_sym_RBRACK, - ACTIONS(1160), 1, + ACTIONS(1091), 1, sym__entry_separator, - ACTIONS(17186), 1, + ACTIONS(16473), 1, anon_sym_SEMI, - STATE(10421), 1, + STATE(9925), 1, sym_comment, - [298824] = 5, + [297196] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1158), 1, + ACTIONS(7818), 1, + anon_sym_PIPE, + ACTIONS(16095), 1, + anon_sym_LF, + STATE(3560), 1, + aux_sym_pipe_element_repeat1, + STATE(9926), 1, + sym_comment, + [297212] = 5, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1089), 1, anon_sym_RBRACK, - ACTIONS(1160), 1, + ACTIONS(1091), 1, sym__entry_separator, - ACTIONS(17188), 1, + ACTIONS(16475), 1, anon_sym_SEMI, - STATE(10422), 1, + STATE(9927), 1, sym_comment, - [298840] = 5, + [297228] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, + ACTIONS(16200), 1, sym_hex_digit, - ACTIONS(17190), 1, + ACTIONS(16477), 1, anon_sym_RBRACK, - STATE(10423), 1, + STATE(9928), 1, sym_comment, - STATE(10432), 1, + STATE(9946), 1, aux_sym_val_binary_repeat1, - [298856] = 4, + [297244] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16812), 1, - anon_sym_LPAREN, - STATE(10424), 1, + ACTIONS(4721), 1, + anon_sym_RBRACK, + ACTIONS(4725), 1, + sym__entry_separator, + ACTIONS(16479), 1, + anon_sym_EQ, + STATE(9929), 1, sym_comment, - ACTIONS(16814), 2, - sym_unescaped_interpolated_content, - anon_sym_SQUOTE, - [298870] = 5, + [297260] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1158), 1, + ACTIONS(1089), 1, anon_sym_RBRACK, - ACTIONS(1160), 1, + ACTIONS(1091), 1, sym__entry_separator, - ACTIONS(17192), 1, + ACTIONS(16481), 1, anon_sym_SEMI, - STATE(10425), 1, + STATE(9930), 1, sym_comment, - [298886] = 5, + [297276] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1934), 1, + ACTIONS(3362), 1, aux_sym_unquoted_token2, - ACTIONS(3520), 1, - anon_sym_LBRACE, - ACTIONS(13319), 1, + ACTIONS(12513), 1, anon_sym_DOT, - STATE(10426), 1, + ACTIONS(14479), 1, + aux_sym__immediate_decimal_token1, + STATE(9931), 1, sym_comment, - [298902] = 5, + [297292] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(6538), 1, + ACTIONS(15546), 1, anon_sym_SEMI, - ACTIONS(6540), 1, - anon_sym_LF, - STATE(3029), 1, - sym__terminator, - STATE(10427), 1, + STATE(9932), 1, sym_comment, - [298918] = 5, + ACTIONS(15548), 2, + ts_builtin_sym_end, + anon_sym_LF, + [297306] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - ACTIONS(8029), 1, + ACTIONS(1133), 1, aux_sym_unquoted_token6, - STATE(10428), 1, + ACTIONS(1135), 1, + anon_sym_in, + ACTIONS(3841), 1, + anon_sym_LPAREN2, + STATE(9933), 1, sym_comment, - STATE(10634), 1, - sym__expr_parenthesized_immediate, - [298934] = 5, + [297322] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1158), 1, + ACTIONS(1089), 1, anon_sym_RBRACK, - ACTIONS(1160), 1, + ACTIONS(1091), 1, sym__entry_separator, - ACTIONS(17194), 1, + ACTIONS(16483), 1, anon_sym_SEMI, - STATE(10429), 1, + STATE(9934), 1, + sym_comment, + [297338] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(913), 1, + anon_sym_COLON, + ACTIONS(16485), 1, + anon_sym_DOT, + ACTIONS(16487), 1, + aux_sym__immediate_decimal_token2, + STATE(9935), 1, sym_comment, - [298950] = 5, + [297354] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1158), 1, - anon_sym_RBRACK, - ACTIONS(1160), 1, - sym__entry_separator, - ACTIONS(17196), 1, - anon_sym_SEMI, - STATE(10430), 1, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + ACTIONS(9249), 1, + aux_sym_unquoted_token6, + STATE(9936), 1, sym_comment, - [298966] = 5, + STATE(10044), 1, + sym__expr_parenthesized_immediate, + [297370] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1158), 1, + ACTIONS(1089), 1, anon_sym_RBRACK, - ACTIONS(1160), 1, + ACTIONS(1091), 1, sym__entry_separator, - ACTIONS(17198), 1, + ACTIONS(16489), 1, anon_sym_SEMI, - STATE(10431), 1, + STATE(9937), 1, + sym_comment, + [297386] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(16493), 1, + anon_sym_LF, + STATE(9938), 1, sym_comment, - [298982] = 5, + ACTIONS(16491), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [297400] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, + ACTIONS(16200), 1, sym_hex_digit, - ACTIONS(17200), 1, + ACTIONS(16495), 1, anon_sym_RBRACK, - STATE(10420), 1, + STATE(9830), 1, aux_sym_val_binary_repeat1, - STATE(10432), 1, + STATE(9939), 1, sym_comment, - [298998] = 5, + [297416] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1158), 1, + ACTIONS(1089), 1, anon_sym_RBRACK, - ACTIONS(1160), 1, + ACTIONS(1091), 1, sym__entry_separator, - ACTIONS(17202), 1, + ACTIONS(16497), 1, anon_sym_SEMI, - STATE(10433), 1, + STATE(9940), 1, + sym_comment, + [297432] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9209), 1, + aux_sym_unquoted_token5, + STATE(9941), 1, sym_comment, - [299014] = 5, + ACTIONS(940), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [297446] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1158), 1, + ACTIONS(1089), 1, anon_sym_RBRACK, - ACTIONS(1160), 1, + ACTIONS(1091), 1, sym__entry_separator, - ACTIONS(17204), 1, + ACTIONS(16499), 1, anon_sym_SEMI, - STATE(10434), 1, - sym_comment, - [299030] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1934), 1, - aux_sym_unquoted_token2, - ACTIONS(3520), 1, - anon_sym_in, - ACTIONS(13319), 1, - anon_sym_DOT, - STATE(10435), 1, + STATE(9942), 1, sym_comment, - [299046] = 5, + [297462] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1158), 1, + ACTIONS(1089), 1, anon_sym_RBRACK, - ACTIONS(1160), 1, + ACTIONS(1091), 1, sym__entry_separator, - ACTIONS(17206), 1, + ACTIONS(16501), 1, anon_sym_SEMI, - STATE(10436), 1, + STATE(9943), 1, sym_comment, - [299062] = 5, + [297478] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2845), 1, - anon_sym_LBRACE, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(13169), 1, - anon_sym_DOT, - STATE(10437), 1, + ACTIONS(16200), 1, + sym_hex_digit, + ACTIONS(16503), 1, + anon_sym_RBRACK, + STATE(9734), 1, + aux_sym_val_binary_repeat1, + STATE(9944), 1, sym_comment, - [299078] = 5, + [297494] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1158), 1, + ACTIONS(1089), 1, anon_sym_RBRACK, - ACTIONS(1160), 1, + ACTIONS(1091), 1, sym__entry_separator, - ACTIONS(17208), 1, + ACTIONS(16505), 1, anon_sym_SEMI, - STATE(10438), 1, + STATE(9945), 1, + sym_comment, + [297510] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(16200), 1, + sym_hex_digit, + ACTIONS(16507), 1, + anon_sym_RBRACK, + STATE(9830), 1, + aux_sym_val_binary_repeat1, + STATE(9946), 1, sym_comment, - [299094] = 5, + [297526] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1158), 1, + ACTIONS(1089), 1, anon_sym_RBRACK, - ACTIONS(1160), 1, + ACTIONS(1091), 1, sym__entry_separator, - ACTIONS(17210), 1, + ACTIONS(16509), 1, anon_sym_SEMI, - STATE(10439), 1, + STATE(9947), 1, sym_comment, - [299110] = 4, + [297542] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(6696), 1, - anon_sym_SEMI, - STATE(10440), 1, + ACTIONS(2229), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(16511), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(16513), 1, + aux_sym__immediate_decimal_token2, + STATE(9948), 1, sym_comment, - ACTIONS(6885), 2, - ts_builtin_sym_end, - anon_sym_LF, - [299124] = 5, + [297558] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1158), 1, + ACTIONS(1089), 1, anon_sym_RBRACK, - ACTIONS(1160), 1, + ACTIONS(1091), 1, sym__entry_separator, - ACTIONS(17212), 1, + ACTIONS(16515), 1, anon_sym_SEMI, - STATE(10441), 1, + STATE(9949), 1, sym_comment, - [299140] = 5, + [297574] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1158), 1, + ACTIONS(1089), 1, anon_sym_RBRACK, - ACTIONS(1160), 1, + ACTIONS(1091), 1, sym__entry_separator, - ACTIONS(17214), 1, + ACTIONS(16517), 1, anon_sym_SEMI, - STATE(10442), 1, + STATE(9950), 1, sym_comment, - [299156] = 5, + [297590] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, + ACTIONS(16200), 1, sym_hex_digit, - ACTIONS(17216), 1, + ACTIONS(16519), 1, anon_sym_RBRACK, - STATE(10443), 1, - sym_comment, - STATE(10450), 1, + STATE(9726), 1, aux_sym_val_binary_repeat1, - [299172] = 5, + STATE(9951), 1, + sym_comment, + [297606] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1158), 1, + ACTIONS(1089), 1, anon_sym_RBRACK, - ACTIONS(1160), 1, + ACTIONS(1091), 1, sym__entry_separator, - ACTIONS(17218), 1, + ACTIONS(16521), 1, anon_sym_SEMI, - STATE(10444), 1, + STATE(9952), 1, sym_comment, - [299188] = 5, + [297622] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16886), 1, + ACTIONS(16232), 1, anon_sym_COLON, - ACTIONS(17220), 1, + ACTIONS(16523), 1, anon_sym_EQ, - STATE(10445), 1, + STATE(9953), 1, sym_comment, - STATE(11341), 1, + STATE(10787), 1, sym_param_type, - [299204] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(6538), 1, - anon_sym_SEMI, - ACTIONS(6540), 1, - anon_sym_LF, - STATE(2975), 1, - sym__terminator, - STATE(10446), 1, - sym_comment, - [299220] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(16818), 1, - anon_sym_SEMI, - STATE(10447), 1, - sym_comment, - ACTIONS(16820), 2, - ts_builtin_sym_end, - anon_sym_LF, - [299234] = 5, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(17053), 1, - aux_sym__list_item_starts_with_sign_token1, - ACTIONS(17055), 1, - sym_short_flag_identifier, - ACTIONS(17222), 1, - anon_sym_LPAREN2, - STATE(10448), 1, - sym_comment, - [299250] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5661), 1, - anon_sym_DASH, - STATE(10449), 1, - sym_comment, - ACTIONS(5663), 2, - sym_identifier, - anon_sym_DASH_DASH, - [299264] = 5, + [297638] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, - sym_hex_digit, - ACTIONS(17224), 1, - anon_sym_RBRACK, - STATE(10420), 1, - aux_sym_val_binary_repeat1, - STATE(10450), 1, + ACTIONS(16525), 1, + anon_sym_PIPE, + ACTIONS(16528), 1, + anon_sym_EQ_GT, + STATE(9954), 2, sym_comment, - [299280] = 4, + aux_sym_match_pattern_repeat1, + [297652] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16323), 1, + ACTIONS(1089), 1, + anon_sym_RBRACK, + ACTIONS(1091), 1, + sym__entry_separator, + ACTIONS(16530), 1, anon_sym_SEMI, - STATE(10451), 1, + STATE(9955), 1, sym_comment, - ACTIONS(16325), 2, - ts_builtin_sym_end, - anon_sym_LF, - [299294] = 5, + [297668] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16870), 1, + ACTIONS(16200), 1, sym_hex_digit, - ACTIONS(17226), 1, + ACTIONS(16532), 1, anon_sym_RBRACK, - STATE(10452), 1, + STATE(9956), 1, sym_comment, - STATE(10455), 1, + STATE(9967), 1, aux_sym_val_binary_repeat1, - [299310] = 4, + [297684] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(16327), 1, + ACTIONS(1089), 1, + anon_sym_RBRACK, + ACTIONS(1091), 1, + sym__entry_separator, + ACTIONS(16534), 1, anon_sym_SEMI, - STATE(10453), 1, + STATE(9957), 1, sym_comment, - ACTIONS(16329), 2, - ts_builtin_sym_end, - anon_sym_LF, - [299324] = 5, + [297700] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - ACTIONS(7920), 1, - aux_sym_unquoted_token6, - STATE(10454), 1, - sym_comment, - STATE(10697), 1, - sym__expr_parenthesized_immediate, - [299340] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(16870), 1, - sym_hex_digit, - ACTIONS(17228), 1, + ACTIONS(1089), 1, anon_sym_RBRACK, - STATE(10420), 1, - aux_sym_val_binary_repeat1, - STATE(10455), 1, + ACTIONS(1091), 1, + sym__entry_separator, + ACTIONS(16536), 1, + anon_sym_SEMI, + STATE(9958), 1, sym_comment, - [299356] = 5, + [297716] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3748), 1, - anon_sym_RBRACE, - ACTIONS(3750), 1, + ACTIONS(1089), 1, + anon_sym_RBRACK, + ACTIONS(1091), 1, sym__entry_separator, - ACTIONS(14681), 1, - aux_sym__immediate_decimal_token1, - STATE(10456), 1, + ACTIONS(16538), 1, + anon_sym_SEMI, + STATE(9959), 1, sym_comment, - [299372] = 4, + [297732] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10478), 1, - aux_sym__list_item_starts_with_sign_token1, - ACTIONS(17230), 1, - aux_sym__immediate_decimal_token1, - STATE(10457), 1, + ACTIONS(1089), 1, + anon_sym_RBRACK, + ACTIONS(1091), 1, + sym__entry_separator, + ACTIONS(16540), 1, + anon_sym_SEMI, + STATE(9960), 1, sym_comment, - [299385] = 4, + [297748] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17232), 1, - aux_sym__unquoted_with_expr_token1, - STATE(10458), 1, + ACTIONS(1089), 1, + anon_sym_RBRACK, + ACTIONS(1091), 1, + sym__entry_separator, + ACTIONS(16542), 1, + anon_sym_SEMI, + STATE(9961), 1, sym_comment, - STATE(10725), 1, - aux_sym__unquoted_with_expr_repeat1, - [299398] = 4, + [297764] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13975), 1, + ACTIONS(3646), 1, anon_sym_LBRACE, - STATE(2881), 1, - sym_block, - STATE(10459), 1, - sym_comment, - [299411] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1934), 1, + ACTIONS(3650), 1, aux_sym_unquoted_token2, - ACTIONS(13319), 1, + ACTIONS(13004), 1, anon_sym_DOT, - STATE(10460), 1, + STATE(9962), 1, sym_comment, - [299424] = 4, + [297780] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17234), 1, - aux_sym__unquoted_with_expr_token1, - STATE(10461), 1, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + ACTIONS(8316), 1, + aux_sym_unquoted_token6, + STATE(9963), 1, sym_comment, - STATE(10662), 1, - aux_sym__unquoted_with_expr_repeat1, - [299437] = 4, - ACTIONS(113), 1, + STATE(10079), 1, + sym__expr_parenthesized_immediate, + [297796] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17236), 1, - aux_sym__unquoted_with_expr_token1, - STATE(10462), 1, + ACTIONS(3356), 1, + anon_sym_in, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(12513), 1, + anon_sym_DOT, + STATE(9964), 1, sym_comment, - STATE(10662), 1, - aux_sym__unquoted_with_expr_repeat1, - [299450] = 4, + [297812] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17238), 1, - aux_sym__unquoted_with_expr_token1, - STATE(10463), 1, + ACTIONS(16546), 1, + anon_sym_LF, + STATE(9965), 1, sym_comment, - STATE(10581), 1, - aux_sym__unquoted_with_expr_repeat1, - [299463] = 4, + ACTIONS(16544), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [297826] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17240), 1, - anon_sym_RBRACK, - ACTIONS(17242), 1, - sym__entry_separator, - STATE(10464), 1, + ACTIONS(16550), 1, + anon_sym_LF, + STATE(9966), 1, sym_comment, - [299476] = 4, - ACTIONS(113), 1, + ACTIONS(16548), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [297840] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17244), 1, - aux_sym__unquoted_with_expr_token1, - STATE(10465), 1, + ACTIONS(16200), 1, + sym_hex_digit, + ACTIONS(16552), 1, + anon_sym_RBRACK, + STATE(9830), 1, + aux_sym_val_binary_repeat1, + STATE(9967), 1, sym_comment, - STATE(10662), 1, - aux_sym__unquoted_with_expr_repeat1, - [299489] = 4, + [297856] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17246), 1, - aux_sym__unquoted_with_expr_token1, - STATE(10466), 1, - sym_comment, - STATE(10662), 1, - aux_sym__unquoted_with_expr_repeat1, - [299502] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14929), 1, - anon_sym_if, - STATE(10467), 1, + ACTIONS(16357), 1, + aux_sym__list_item_starts_with_sign_token1, + ACTIONS(16359), 1, + sym_short_flag_identifier, + ACTIONS(16554), 1, + anon_sym_LPAREN2, + STATE(9968), 1, sym_comment, - STATE(10838), 1, - sym_match_guard, - [299515] = 4, + [297872] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5421), 1, - aux_sym__list_item_starts_with_sign_token1, - ACTIONS(17248), 1, + ACTIONS(3574), 1, + anon_sym_RBRACE, + ACTIONS(3576), 1, + sym__entry_separator, + ACTIONS(13961), 1, aux_sym__immediate_decimal_token1, - STATE(10468), 1, + STATE(9969), 1, sym_comment, - [299528] = 4, + [297888] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13975), 1, - anon_sym_LBRACE, - STATE(2833), 1, - sym_block, - STATE(10469), 1, - sym_comment, - [299541] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1243), 1, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + ACTIONS(4344), 1, anon_sym_in, - ACTIONS(10998), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(10470), 1, + STATE(9970), 1, sym_comment, - [299554] = 4, - ACTIONS(3), 1, + STATE(10434), 1, + sym__expr_parenthesized_immediate, + [297904] = 3, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13945), 1, - anon_sym_LBRACE, - STATE(2773), 1, - sym_block, - STATE(10471), 1, + STATE(9971), 1, sym_comment, - [299567] = 4, - ACTIONS(3), 1, + ACTIONS(1155), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + aux_sym_unquoted_token6, + [297916] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13945), 1, - anon_sym_LBRACE, - STATE(2774), 1, - sym_block, - STATE(10472), 1, + ACTIONS(1708), 1, + aux_sym_unquoted_token6, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + STATE(9972), 1, sym_comment, - [299580] = 4, + STATE(10022), 1, + sym__expr_parenthesized_immediate, + [297932] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9820), 1, - aux_sym_unquoted_token2, - ACTIONS(17250), 1, - anon_sym_DOT, - STATE(10473), 1, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + ACTIONS(4396), 1, + anon_sym_in, + STATE(9973), 1, sym_comment, - [299593] = 4, - ACTIONS(3), 1, + STATE(10434), 1, + sym__expr_parenthesized_immediate, + [297948] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7621), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(17252), 1, - anon_sym_DOT, - STATE(10474), 1, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + ACTIONS(11319), 1, + aux_sym_unquoted_token6, + STATE(9974), 1, sym_comment, - [299606] = 4, + STATE(10092), 1, + sym__expr_parenthesized_immediate, + [297964] = 5, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10290), 1, + ACTIONS(2229), 1, aux_sym__list_item_starts_with_sign_token1, - ACTIONS(17248), 1, + ACTIONS(16556), 1, aux_sym__immediate_decimal_token1, - STATE(10475), 1, + ACTIONS(16558), 1, + aux_sym__immediate_decimal_token2, + STATE(9975), 1, sym_comment, - [299619] = 4, + [297980] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5015), 1, - anon_sym_LBRACE, - ACTIONS(17254), 1, + ACTIONS(16560), 1, anon_sym_EQ, - STATE(10476), 1, + STATE(9976), 1, sym_comment, - [299632] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13945), 1, + ACTIONS(4725), 2, + anon_sym_DOLLAR, anon_sym_LBRACE, - STATE(2776), 1, - sym_block, - STATE(10477), 1, - sym_comment, - [299645] = 4, - ACTIONS(3), 1, + [297994] = 5, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13945), 1, - anon_sym_LBRACE, - STATE(2777), 1, - sym_block, - STATE(10478), 1, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + ACTIONS(8828), 1, + aux_sym_unquoted_token6, + STATE(9977), 1, sym_comment, - [299658] = 4, + STATE(10008), 1, + sym__expr_parenthesized_immediate, + [298010] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13975), 1, - anon_sym_LBRACE, - STATE(2936), 1, - sym_block, - STATE(10479), 1, + ACTIONS(16200), 1, + sym_hex_digit, + ACTIONS(16562), 1, + anon_sym_RBRACK, + STATE(9872), 1, + aux_sym_val_binary_repeat1, + STATE(9978), 1, sym_comment, - [299671] = 4, + [298026] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13945), 1, + ACTIONS(13397), 1, anon_sym_LBRACE, - STATE(2779), 1, + STATE(2338), 1, sym_block, - STATE(10480), 1, - sym_comment, - [299684] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1433), 1, - aux_sym__list_item_starts_with_sign_token1, - ACTIONS(17248), 1, - aux_sym__immediate_decimal_token1, - STATE(10481), 1, + STATE(9979), 1, sym_comment, - [299697] = 4, + [298039] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17256), 1, - anon_sym_RBRACK, - ACTIONS(17258), 1, + ACTIONS(8265), 1, sym__entry_separator, - STATE(10482), 1, + ACTIONS(16564), 1, + anon_sym_RBRACK, + STATE(9980), 1, sym_comment, - [299710] = 4, + [298052] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3880), 1, - anon_sym_COLON, - ACTIONS(17260), 1, - anon_sym_make, - STATE(10483), 1, + ACTIONS(13411), 1, + anon_sym_LBRACE, + STATE(2445), 1, + sym_block, + STATE(9981), 1, sym_comment, - [299723] = 4, + [298065] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8430), 1, - anon_sym_RBRACK, - ACTIONS(8432), 1, - sym__entry_separator, - STATE(10484), 1, + ACTIONS(8984), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9349), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(9982), 1, sym_comment, - [299736] = 4, + [298078] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10357), 1, + ACTIONS(10046), 1, aux_sym__list_item_starts_with_sign_token1, - ACTIONS(17248), 1, + ACTIONS(16566), 1, aux_sym__immediate_decimal_token1, - STATE(10485), 1, - sym_comment, - [299749] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(8709), 1, - sym__entry_separator, - ACTIONS(17262), 1, - anon_sym_RBRACK, - STATE(10486), 1, + STATE(9983), 1, sym_comment, - [299762] = 4, + [298091] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10520), 1, + ACTIONS(10046), 1, aux_sym__list_item_starts_with_sign_token1, - ACTIONS(17264), 1, + ACTIONS(16568), 1, aux_sym__immediate_decimal_token1, - STATE(10487), 1, + STATE(9984), 1, sym_comment, - [299775] = 4, - ACTIONS(113), 1, + [298104] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10924), 1, - aux_sym__list_item_starts_with_sign_token1, - ACTIONS(17248), 1, + ACTIONS(4773), 1, + anon_sym_in, + ACTIONS(14625), 1, aux_sym__immediate_decimal_token1, - STATE(10488), 1, + STATE(9985), 1, sym_comment, - [299788] = 4, + [298117] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8140), 1, + ACTIONS(9739), 1, + aux_sym__list_item_starts_with_sign_token1, + ACTIONS(16568), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8322), 1, - aux_sym__unquoted_in_list_token3, - STATE(10489), 1, + STATE(9986), 1, sym_comment, - [299801] = 4, - ACTIONS(3), 1, + [298130] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, + ACTIONS(1163), 1, + aux_sym__unquoted_in_list_token7, + ACTIONS(3727), 1, anon_sym_LPAREN2, - STATE(10490), 1, + STATE(9987), 1, sym_comment, - STATE(10664), 1, - sym__expr_parenthesized_immediate, - [299814] = 4, + [298143] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13945), 1, + ACTIONS(13397), 1, anon_sym_LBRACE, - STATE(2785), 1, + STATE(2287), 1, sym_block, - STATE(10491), 1, + STATE(9988), 1, sym_comment, - [299827] = 4, + [298156] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10524), 1, - aux_sym__list_item_starts_with_sign_token1, - ACTIONS(17248), 1, - aux_sym__immediate_decimal_token1, - STATE(10492), 1, + ACTIONS(16570), 1, + aux_sym__unquoted_with_expr_token1, + STATE(9989), 1, sym_comment, - [299840] = 4, - ACTIONS(3), 1, + STATE(10114), 1, + aux_sym__unquoted_with_expr_repeat1, + [298169] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13945), 1, - anon_sym_LBRACE, - STATE(2788), 1, - sym_block, - STATE(10493), 1, + ACTIONS(7810), 1, + sym__entry_separator, + ACTIONS(14387), 1, + anon_sym_RBRACK, + STATE(9990), 1, sym_comment, - [299853] = 4, + [298182] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13945), 1, + ACTIONS(13411), 1, anon_sym_LBRACE, - STATE(2789), 1, + STATE(2418), 1, sym_block, - STATE(10494), 1, + STATE(9991), 1, sym_comment, - [299866] = 4, + [298195] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17266), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(10495), 1, + ACTIONS(16572), 1, + anon_sym_RBRACK, + ACTIONS(16574), 1, + sym__entry_separator, + STATE(9992), 1, sym_comment, - STATE(10719), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [299879] = 4, - ACTIONS(3), 1, + [298208] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13945), 1, - anon_sym_LBRACE, - STATE(2791), 1, - sym_block, - STATE(10496), 1, + ACTIONS(8502), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8915), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(9993), 1, sym_comment, - [299892] = 4, + [298221] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13945), 1, + ACTIONS(13411), 1, anon_sym_LBRACE, - STATE(2665), 1, + STATE(2417), 1, sym_block, - STATE(10497), 1, + STATE(9994), 1, sym_comment, - [299905] = 4, + [298234] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10708), 1, + ACTIONS(10328), 1, aux_sym__list_item_starts_with_sign_token1, - ACTIONS(17248), 1, + ACTIONS(16568), 1, aux_sym__immediate_decimal_token1, - STATE(10498), 1, - sym_comment, - [299918] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(17268), 1, - anon_sym_LPAREN2, - ACTIONS(17270), 1, - sym_short_flag_identifier, - STATE(10499), 1, - sym_comment, - [299931] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(17272), 1, - aux_sym__unquoted_with_expr_token1, - STATE(10500), 1, - sym_comment, - STATE(10662), 1, - aux_sym__unquoted_with_expr_repeat1, - [299944] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(17063), 1, - anon_sym_LBRACE, - STATE(8606), 1, - sym_block, - STATE(10501), 1, + STATE(9995), 1, sym_comment, - [299957] = 4, + [298247] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17274), 1, + ACTIONS(16576), 1, aux_sym__unquoted_with_expr_token1, - STATE(10502), 1, + STATE(9996), 1, sym_comment, - STATE(10507), 1, + STATE(10063), 1, aux_sym__unquoted_with_expr_repeat1, - [299970] = 4, + [298260] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17276), 1, + ACTIONS(16578), 1, aux_sym__unquoted_with_expr_token1, - STATE(10503), 1, + STATE(9997), 1, sym_comment, - STATE(10508), 1, + STATE(10114), 1, aux_sym__unquoted_with_expr_repeat1, - [299983] = 4, + [298273] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17278), 1, + ACTIONS(16580), 1, aux_sym__unquoted_with_expr_token1, - STATE(10504), 1, + STATE(9998), 1, sym_comment, - STATE(10662), 1, + STATE(10171), 1, aux_sym__unquoted_with_expr_repeat1, - [299996] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13975), 1, - anon_sym_LBRACE, - STATE(2844), 1, - sym_block, - STATE(10505), 1, - sym_comment, - [300009] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(9233), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9673), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(10506), 1, - sym_comment, - [300022] = 4, + [298286] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17280), 1, + ACTIONS(16582), 1, aux_sym__unquoted_with_expr_token1, - STATE(10507), 1, + STATE(9999), 1, sym_comment, - STATE(10662), 1, + STATE(10256), 1, aux_sym__unquoted_with_expr_repeat1, - [300035] = 4, + [298299] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17282), 1, + ACTIONS(16584), 1, aux_sym__unquoted_with_expr_token1, - STATE(10508), 1, + STATE(10000), 1, sym_comment, - STATE(10662), 1, + STATE(10114), 1, aux_sym__unquoted_with_expr_repeat1, - [300048] = 4, + [298312] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5079), 1, - anon_sym_LBRACE, - ACTIONS(17284), 1, - sym_long_flag_identifier, - STATE(10509), 1, + ACTIONS(7103), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(16586), 1, + anon_sym_DOT, + STATE(10001), 1, sym_comment, - [300061] = 4, - ACTIONS(3), 1, + [298325] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4012), 1, - aux_sym_unquoted_token2, - ACTIONS(13520), 1, - anon_sym_DOT, - STATE(10510), 1, + ACTIONS(7713), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8078), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10002), 1, sym_comment, - [300074] = 4, + [298338] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10478), 1, + ACTIONS(10465), 1, aux_sym__list_item_starts_with_sign_token1, - ACTIONS(17248), 1, + ACTIONS(16588), 1, aux_sym__immediate_decimal_token1, - STATE(10511), 1, + STATE(10003), 1, sym_comment, - [300087] = 4, - ACTIONS(3), 1, + [298351] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17286), 1, - anon_sym_LPAREN2, - ACTIONS(17288), 1, - sym_short_flag_identifier, - STATE(10512), 1, + ACTIONS(7069), 1, + anon_sym_RBRACE, + ACTIONS(7071), 1, + sym__entry_separator, + STATE(10004), 1, sym_comment, - [300100] = 4, - ACTIONS(3), 1, + [298364] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(925), 1, - anon_sym_COLON, - ACTIONS(16858), 1, - aux_sym__immediate_decimal_token2, - STATE(10513), 1, + ACTIONS(16590), 1, + aux_sym__unquoted_with_expr_token1, + STATE(10005), 1, sym_comment, - [300113] = 4, + STATE(10054), 1, + aux_sym__unquoted_with_expr_repeat1, + [298377] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(11004), 1, + ACTIONS(10465), 1, aux_sym__list_item_starts_with_sign_token1, - ACTIONS(17248), 1, + ACTIONS(16592), 1, aux_sym__immediate_decimal_token1, - STATE(10514), 1, + STATE(10006), 1, sym_comment, - [300126] = 4, + [298390] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13975), 1, + ACTIONS(13397), 1, anon_sym_LBRACE, - STATE(2845), 1, + STATE(2283), 1, sym_block, - STATE(10515), 1, + STATE(10007), 1, sym_comment, - [300139] = 4, + [298403] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10582), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10872), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(10516), 1, + ACTIONS(16594), 1, + aux_sym__unquoted_with_expr_token1, + STATE(10008), 1, sym_comment, - [300152] = 4, + STATE(10162), 1, + aux_sym__unquoted_with_expr_repeat1, + [298416] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17290), 1, + ACTIONS(16596), 1, aux_sym__unquoted_with_expr_token1, - STATE(10517), 1, + STATE(10009), 1, sym_comment, - STATE(10530), 1, + STATE(10083), 1, aux_sym__unquoted_with_expr_repeat1, - [300165] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3682), 1, - aux_sym_unquoted_token2, - ACTIONS(17292), 1, - anon_sym_DOT, - STATE(10518), 1, - sym_comment, - [300178] = 4, + [298429] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9905), 1, - aux_sym__list_item_starts_with_sign_token1, - ACTIONS(17248), 1, - aux_sym__immediate_decimal_token1, - STATE(10519), 1, + ACTIONS(16598), 1, + aux_sym__unquoted_with_expr_token1, + STATE(10010), 1, sym_comment, - [300191] = 4, + STATE(10114), 1, + aux_sym__unquoted_with_expr_repeat1, + [298442] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17294), 1, + ACTIONS(16600), 1, aux_sym__unquoted_with_expr_token1, - STATE(10520), 1, + STATE(10011), 1, sym_comment, - STATE(10534), 1, + STATE(10195), 1, aux_sym__unquoted_with_expr_repeat1, - [300204] = 4, - ACTIONS(3), 1, + [298455] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(911), 1, - anon_sym_COLON, - ACTIONS(17081), 1, - aux_sym__immediate_decimal_token2, - STATE(10521), 1, + ACTIONS(9919), 1, + aux_sym__list_item_starts_with_sign_token1, + ACTIONS(16602), 1, + aux_sym__immediate_decimal_token1, + STATE(10012), 1, sym_comment, - [300217] = 4, - ACTIONS(3), 1, + [298468] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2006), 1, - aux_sym_unquoted_token2, - ACTIONS(13456), 1, - anon_sym_DOT, - STATE(10522), 1, + ACTIONS(16604), 1, + anon_sym_RBRACE, + ACTIONS(16606), 1, + sym__entry_separator, + STATE(10013), 1, sym_comment, - [300230] = 4, + [298481] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14336), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15655), 1, + ACTIONS(16608), 1, + aux_sym__unquoted_with_expr_token1, + STATE(10014), 1, + sym_comment, + STATE(10114), 1, + aux_sym__unquoted_with_expr_repeat1, + [298494] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(10042), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(10523), 1, + ACTIONS(16568), 1, + aux_sym__immediate_decimal_token1, + STATE(10015), 1, sym_comment, - [300243] = 4, + [298507] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13975), 1, + ACTIONS(13397), 1, anon_sym_LBRACE, - STATE(2835), 1, + STATE(2298), 1, sym_block, - STATE(10524), 1, + STATE(10016), 1, sym_comment, - [300256] = 4, + [298520] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8155), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8388), 1, + ACTIONS(1522), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(10525), 1, + ACTIONS(16568), 1, + aux_sym__immediate_decimal_token1, + STATE(10017), 1, sym_comment, - [300269] = 4, - ACTIONS(113), 1, + [298533] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10924), 1, - aux_sym__list_item_starts_with_sign_token1, - ACTIONS(17296), 1, - aux_sym__immediate_decimal_token1, - STATE(10526), 1, + STATE(10018), 1, sym_comment, - [300282] = 4, - ACTIONS(113), 1, + ACTIONS(5972), 2, + anon_sym_COLON, + anon_sym_LBRACE, + [298544] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10262), 1, - aux_sym__list_item_starts_with_sign_token1, - ACTIONS(17298), 1, - aux_sym__immediate_decimal_token1, - STATE(10527), 1, + ACTIONS(13397), 1, + anon_sym_LBRACE, + STATE(2304), 1, + sym_block, + STATE(10019), 1, sym_comment, - [300295] = 4, + [298557] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10290), 1, + ACTIONS(9331), 1, aux_sym__list_item_starts_with_sign_token1, - ACTIONS(17300), 1, + ACTIONS(16568), 1, aux_sym__immediate_decimal_token1, - STATE(10528), 1, + STATE(10020), 1, sym_comment, - [300308] = 4, + [298570] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3984), 1, - anon_sym_COLON, - ACTIONS(17260), 1, - anon_sym_make, - STATE(10529), 1, + ACTIONS(16340), 1, + anon_sym_LBRACE, + STATE(8369), 1, + sym_block, + STATE(10021), 1, sym_comment, - [300321] = 4, + [298583] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17302), 1, + ACTIONS(16610), 1, aux_sym__unquoted_with_expr_token1, - STATE(10530), 1, + STATE(10022), 1, sym_comment, - STATE(10662), 1, + STATE(10040), 1, aux_sym__unquoted_with_expr_repeat1, - [300334] = 4, + [298596] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17304), 1, + ACTIONS(16612), 1, aux_sym__unquoted_with_expr_token1, - STATE(10531), 1, + STATE(10023), 1, sym_comment, - STATE(10536), 1, + STATE(10041), 1, aux_sym__unquoted_with_expr_repeat1, - [300347] = 4, - ACTIONS(113), 1, + [298609] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17306), 1, - aux_sym__unquoted_with_expr_token1, - STATE(10532), 1, + ACTIONS(3576), 1, + anon_sym_EQ_GT, + ACTIONS(14053), 1, + aux_sym__immediate_decimal_token1, + STATE(10024), 1, sym_comment, - STATE(10537), 1, - aux_sym__unquoted_with_expr_repeat1, - [300360] = 4, + [298622] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1730), 1, + ACTIONS(6427), 1, aux_sym__list_item_starts_with_sign_token1, - ACTIONS(17248), 1, + ACTIONS(16568), 1, aux_sym__immediate_decimal_token1, - STATE(10533), 1, - sym_comment, - [300373] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(17308), 1, - aux_sym__unquoted_with_expr_token1, - STATE(10534), 1, + STATE(10025), 1, sym_comment, - STATE(10662), 1, - aux_sym__unquoted_with_expr_repeat1, - [300386] = 4, + [298635] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13975), 1, - anon_sym_LBRACE, - STATE(2858), 1, - sym_block, - STATE(10535), 1, - sym_comment, - [300399] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(17310), 1, - aux_sym__unquoted_with_expr_token1, - STATE(10536), 1, + ACTIONS(8799), 1, + aux_sym_unquoted_token2, + ACTIONS(16614), 1, + anon_sym_DOT, + STATE(10026), 1, sym_comment, - STATE(10662), 1, - aux_sym__unquoted_with_expr_repeat1, - [300412] = 4, + [298648] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17312), 1, + ACTIONS(16616), 1, aux_sym__unquoted_with_expr_token1, - STATE(10537), 1, + STATE(10027), 1, sym_comment, - STATE(10662), 1, + STATE(10056), 1, aux_sym__unquoted_with_expr_repeat1, - [300425] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(10538), 1, - sym_comment, - ACTIONS(17314), 2, - anon_sym_LBRACK, - anon_sym_RBRACK, - [300436] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(919), 1, - anon_sym_COLON, - ACTIONS(17316), 1, - aux_sym__immediate_decimal_token2, - STATE(10539), 1, - sym_comment, - [300449] = 3, + [298661] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(10540), 1, + ACTIONS(4734), 1, + anon_sym_in, + ACTIONS(16618), 1, + sym_long_flag_identifier, + STATE(10028), 1, sym_comment, - ACTIONS(6470), 2, - anon_sym_COLON, - anon_sym_LBRACE, - [300460] = 4, + [298674] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3750), 1, - anon_sym_LBRACE, - ACTIONS(15594), 1, - aux_sym__immediate_decimal_token1, - STATE(10541), 1, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + STATE(10029), 1, sym_comment, - [300473] = 3, + STATE(10152), 1, + sym__expr_parenthesized_immediate, + [298687] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(10542), 1, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + STATE(10008), 1, + sym__expr_parenthesized_immediate, + STATE(10030), 1, sym_comment, - ACTIONS(6505), 2, - anon_sym_COLON, - anon_sym_LBRACE, - [300484] = 4, - ACTIONS(3), 1, + [298700] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17318), 1, - anon_sym_LBRACE, - STATE(9137), 1, - sym_block, - STATE(10543), 1, + ACTIONS(16620), 1, + aux_sym__unquoted_with_expr_token1, + STATE(10031), 1, sym_comment, - [300497] = 4, - ACTIONS(3), 1, + STATE(10114), 1, + aux_sym__unquoted_with_expr_repeat1, + [298713] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9194), 1, - aux_sym_unquoted_token2, - ACTIONS(17320), 1, - anon_sym_DOT, - STATE(10544), 1, + ACTIONS(10465), 1, + aux_sym__list_item_starts_with_sign_token1, + ACTIONS(16622), 1, + aux_sym__immediate_decimal_token1, + STATE(10032), 1, sym_comment, - [300510] = 4, + [298726] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14831), 1, + ACTIONS(7803), 1, aux_sym__immediate_decimal_token1, - ACTIONS(15655), 1, + ACTIONS(8115), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(10545), 1, + STATE(10033), 1, sym_comment, - [300523] = 4, - ACTIONS(3), 1, + [298739] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5075), 1, - anon_sym_in, - ACTIONS(17322), 1, - sym_long_flag_identifier, - STATE(10546), 1, + ACTIONS(16624), 1, + aux_sym__unquoted_with_expr_token1, + STATE(10034), 1, sym_comment, - [300536] = 4, - ACTIONS(3), 1, + STATE(10114), 1, + aux_sym__unquoted_with_expr_repeat1, + [298752] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - STATE(10547), 1, + ACTIONS(1269), 1, + aux_sym__list_item_starts_with_sign_token1, + ACTIONS(16568), 1, + aux_sym__immediate_decimal_token1, + STATE(10035), 1, sym_comment, - STATE(10640), 1, - sym__expr_parenthesized_immediate, - [300549] = 4, + [298765] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2547), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(17324), 1, - aux_sym__immediate_decimal_token2, - STATE(10548), 1, + ACTIONS(16626), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(10036), 1, sym_comment, - [300562] = 4, + STATE(10203), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [298778] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7748), 1, - anon_sym_LPAREN2, - STATE(10549), 1, + ACTIONS(903), 1, + anon_sym_COLON, + ACTIONS(16628), 1, + aux_sym__immediate_decimal_token2, + STATE(10037), 1, sym_comment, - STATE(11066), 1, - sym__expr_parenthesized_immediate, - [300575] = 4, + [298791] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - STATE(10550), 1, - sym_comment, - STATE(10693), 1, - sym__expr_parenthesized_immediate, - [300588] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(4829), 1, + ACTIONS(4773), 1, + anon_sym_LBRACE, + ACTIONS(14479), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5433), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(10551), 1, + STATE(10038), 1, sym_comment, - [300601] = 4, + [298804] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13945), 1, - anon_sym_LBRACE, - STATE(2644), 1, - sym_block, - STATE(10552), 1, + STATE(10039), 1, sym_comment, - [300614] = 4, + ACTIONS(5995), 2, + anon_sym_COLON, + anon_sym_LBRACE, + [298815] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3990), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4999), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(10553), 1, - sym_comment, - [300627] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - STATE(10554), 1, + ACTIONS(16630), 1, + aux_sym__unquoted_with_expr_token1, + STATE(10040), 1, sym_comment, - STATE(11424), 1, - sym__expr_parenthesized_immediate, - [300640] = 4, + STATE(10114), 1, + aux_sym__unquoted_with_expr_repeat1, + [298828] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17326), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(10555), 1, + ACTIONS(16632), 1, + aux_sym__unquoted_with_expr_token1, + STATE(10041), 1, sym_comment, - STATE(10719), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [300653] = 4, + STATE(10114), 1, + aux_sym__unquoted_with_expr_repeat1, + [298841] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(6211), 1, - aux_sym__list_item_starts_with_sign_token1, - ACTIONS(17248), 1, - aux_sym__immediate_decimal_token1, - STATE(10556), 1, + ACTIONS(16634), 1, + aux_sym__unquoted_with_expr_token1, + STATE(10042), 1, + sym_comment, + STATE(10114), 1, + aux_sym__unquoted_with_expr_repeat1, + [298854] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(10043), 1, sym_comment, - [300666] = 4, + ACTIONS(6072), 2, + anon_sym_COLON, + anon_sym_LBRACE, + [298865] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7036), 1, - aux_sym__list_item_starts_with_sign_token1, - ACTIONS(17248), 1, - aux_sym__immediate_decimal_token1, - STATE(10557), 1, + ACTIONS(16636), 1, + aux_sym__unquoted_with_expr_token1, + STATE(10044), 1, sym_comment, - [300679] = 4, + STATE(10060), 1, + aux_sym__unquoted_with_expr_repeat1, + [298878] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13975), 1, + ACTIONS(13397), 1, anon_sym_LBRACE, - STATE(2847), 1, + STATE(2379), 1, sym_block, - STATE(10558), 1, + STATE(10045), 1, sym_comment, - [300692] = 4, + [298891] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3588), 1, - aux_sym_unquoted_token2, - ACTIONS(17328), 1, - anon_sym_DOT, - STATE(10559), 1, + ACTIONS(940), 1, + anon_sym_in, + ACTIONS(9209), 1, + aux_sym_unquoted_token5, + STATE(10046), 1, sym_comment, - [300705] = 4, + [298904] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10708), 1, - aux_sym__list_item_starts_with_sign_token1, - ACTIONS(17330), 1, + ACTIONS(7850), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(16638), 1, aux_sym__immediate_decimal_token1, - STATE(10560), 1, + STATE(10047), 1, sym_comment, - [300718] = 4, + [298917] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(16640), 1, + aux_sym__unquoted_with_expr_token1, + STATE(10048), 1, + sym_comment, + STATE(10061), 1, + aux_sym__unquoted_with_expr_repeat1, + [298930] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2397), 1, + ACTIONS(7265), 1, anon_sym_LPAREN2, - STATE(10561), 1, + STATE(10049), 1, sym_comment, - STATE(10701), 1, + STATE(10057), 1, sym__expr_parenthesized_immediate, - [300731] = 4, + [298943] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_LBRACE, - ACTIONS(9820), 1, - aux_sym_unquoted_token5, - STATE(10562), 1, - sym_comment, - [300744] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(17332), 1, - anon_sym_LPAREN2, - ACTIONS(17334), 1, - aux_sym__record_key_token1, - STATE(10563), 1, + ACTIONS(3308), 1, + aux_sym_unquoted_token2, + ACTIONS(16642), 1, + anon_sym_DOT, + STATE(10050), 1, sym_comment, - [300757] = 4, + [298956] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8413), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8789), 1, + ACTIONS(10420), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(10564), 1, - sym_comment, - [300770] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(10192), 1, + ACTIONS(16644), 1, aux_sym__immediate_decimal_token1, - ACTIONS(10724), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(10565), 1, + STATE(10051), 1, sym_comment, - [300783] = 4, + [298969] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10434), 1, + ACTIONS(1141), 1, aux_sym__list_item_starts_with_sign_token1, - ACTIONS(17248), 1, + ACTIONS(16568), 1, aux_sym__immediate_decimal_token1, - STATE(10566), 1, + STATE(10052), 1, sym_comment, - [300796] = 4, + [298982] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7587), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(17336), 1, - anon_sym_DOT, - STATE(10567), 1, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + STATE(10053), 1, sym_comment, - [300809] = 4, + STATE(10092), 1, + sym__expr_parenthesized_immediate, + [298995] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(6871), 1, - aux_sym__list_item_starts_with_sign_token1, - ACTIONS(17248), 1, - aux_sym__immediate_decimal_token1, - STATE(10568), 1, + ACTIONS(16646), 1, + aux_sym__unquoted_with_expr_token1, + STATE(10054), 1, sym_comment, - [300822] = 4, + STATE(10114), 1, + aux_sym__unquoted_with_expr_repeat1, + [299008] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13975), 1, + ACTIONS(13411), 1, anon_sym_LBRACE, - STATE(2850), 1, + STATE(2442), 1, sym_block, - STATE(10569), 1, + STATE(10055), 1, sym_comment, - [300835] = 4, + [299021] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17338), 1, + ACTIONS(16648), 1, aux_sym__unquoted_with_expr_token1, - STATE(10570), 1, + STATE(10056), 1, sym_comment, - STATE(10578), 1, + STATE(10114), 1, aux_sym__unquoted_with_expr_repeat1, - [300848] = 4, + [299034] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17340), 1, - aux_sym__unquoted_with_expr_token1, - STATE(10571), 1, + ACTIONS(16650), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(10057), 1, sym_comment, - STATE(10579), 1, - aux_sym__unquoted_with_expr_repeat1, - [300861] = 4, + STATE(10245), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [299047] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9405), 1, - aux_sym_unquoted_token2, - ACTIONS(17342), 1, - anon_sym_DOT, - STATE(10572), 1, + ACTIONS(13411), 1, + anon_sym_LBRACE, + STATE(2468), 1, + sym_block, + STATE(10058), 1, sym_comment, - [300874] = 4, + [299060] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10998), 1, + ACTIONS(5599), 1, aux_sym__list_item_starts_with_sign_token1, - ACTIONS(17344), 1, + ACTIONS(16568), 1, aux_sym__immediate_decimal_token1, - STATE(10573), 1, + STATE(10059), 1, sym_comment, - [300887] = 4, + [299073] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10434), 1, - aux_sym__list_item_starts_with_sign_token1, - ACTIONS(17346), 1, - aux_sym__immediate_decimal_token1, - STATE(10574), 1, + ACTIONS(16652), 1, + aux_sym__unquoted_with_expr_token1, + STATE(10060), 1, + sym_comment, + STATE(10114), 1, + aux_sym__unquoted_with_expr_repeat1, + [299086] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(16654), 1, + aux_sym__unquoted_with_expr_token1, + STATE(10061), 1, sym_comment, - [300900] = 4, + STATE(10114), 1, + aux_sym__unquoted_with_expr_repeat1, + [299099] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2397), 1, + ACTIONS(2187), 1, anon_sym_LPAREN2, - STATE(10502), 1, - sym__expr_parenthesized_immediate, - STATE(10575), 1, + STATE(10062), 1, sym_comment, - [300913] = 4, + STATE(10434), 1, + sym__expr_parenthesized_immediate, + [299112] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17348), 1, - anon_sym_RBRACE, - ACTIONS(17350), 1, - sym__entry_separator, - STATE(10576), 1, + ACTIONS(16656), 1, + aux_sym__unquoted_with_expr_token1, + STATE(10063), 1, sym_comment, - [300926] = 4, + STATE(10114), 1, + aux_sym__unquoted_with_expr_repeat1, + [299125] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13975), 1, + ACTIONS(13411), 1, anon_sym_LBRACE, - STATE(2868), 1, + STATE(2430), 1, sym_block, - STATE(10577), 1, + STATE(10064), 1, sym_comment, - [300939] = 4, - ACTIONS(113), 1, + [299138] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17352), 1, - aux_sym__unquoted_with_expr_token1, - STATE(10578), 1, + STATE(10065), 1, sym_comment, - STATE(10662), 1, - aux_sym__unquoted_with_expr_repeat1, - [300952] = 4, + ACTIONS(16658), 2, + anon_sym_RBRACK, + sym_hex_digit, + [299149] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17354), 1, - aux_sym__unquoted_with_expr_token1, - STATE(10579), 1, + ACTIONS(3737), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4757), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10066), 1, sym_comment, - STATE(10662), 1, - aux_sym__unquoted_with_expr_repeat1, - [300965] = 4, + [299162] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10520), 1, + ACTIONS(9867), 1, aux_sym__list_item_starts_with_sign_token1, - ACTIONS(17248), 1, + ACTIONS(16660), 1, aux_sym__immediate_decimal_token1, - STATE(10580), 1, + STATE(10067), 1, sym_comment, - [300978] = 4, + [299175] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17356), 1, - aux_sym__unquoted_with_expr_token1, - STATE(10581), 1, + ACTIONS(13985), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14481), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10068), 1, sym_comment, - STATE(10662), 1, - aux_sym__unquoted_with_expr_repeat1, - [300991] = 4, + [299188] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_in, - ACTIONS(9820), 1, - aux_sym_unquoted_token5, - STATE(10582), 1, + ACTIONS(8909), 1, + aux_sym_unquoted_token2, + ACTIONS(16662), 1, + anon_sym_DOT, + STATE(10069), 1, sym_comment, - [301004] = 4, + [299201] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13975), 1, + ACTIONS(13411), 1, anon_sym_LBRACE, - STATE(2871), 1, + STATE(2515), 1, sym_block, - STATE(10583), 1, + STATE(10070), 1, sym_comment, - [301017] = 4, - ACTIONS(113), 1, + [299214] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7258), 1, - aux_sym__list_item_starts_with_sign_token1, - ACTIONS(17248), 1, - aux_sym__immediate_decimal_token1, - STATE(10584), 1, + STATE(10071), 1, sym_comment, - [301030] = 4, + ACTIONS(6076), 2, + anon_sym_COLON, + anon_sym_LBRACE, + [299225] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13975), 1, + ACTIONS(13397), 1, anon_sym_LBRACE, - STATE(2872), 1, + STATE(2323), 1, sym_block, - STATE(10585), 1, + STATE(10072), 1, sym_comment, - [301043] = 4, + [299238] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9001), 1, - aux_sym_unquoted_token2, - ACTIONS(17358), 1, - anon_sym_DOT, - STATE(10586), 1, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + STATE(10073), 1, + sym_comment, + STATE(10183), 1, + sym__expr_parenthesized_immediate, + [299251] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13397), 1, + anon_sym_LBRACE, + STATE(2367), 1, + sym_block, + STATE(10074), 1, sym_comment, - [301056] = 4, + [299264] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5015), 1, - anon_sym_in, - ACTIONS(17360), 1, - anon_sym_EQ, - STATE(10587), 1, + ACTIONS(16664), 1, + anon_sym_DASH, + STATE(10075), 1, sym_comment, - [301069] = 4, + STATE(10331), 1, + sym_param_short_flag, + [299277] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10262), 1, + ACTIONS(9784), 1, aux_sym__list_item_starts_with_sign_token1, - ACTIONS(17248), 1, + ACTIONS(16568), 1, aux_sym__immediate_decimal_token1, - STATE(10588), 1, + STATE(10076), 1, sym_comment, - [301082] = 4, + [299290] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - STATE(10531), 1, - sym__expr_parenthesized_immediate, - STATE(10589), 1, + ACTIONS(13411), 1, + anon_sym_LBRACE, + STATE(2412), 1, + sym_block, + STATE(10077), 1, + sym_comment, + [299303] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13411), 1, + anon_sym_LBRACE, + STATE(2433), 1, + sym_block, + STATE(10078), 1, sym_comment, - [301095] = 4, + [299316] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8180), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8562), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(10590), 1, + ACTIONS(16666), 1, + aux_sym__unquoted_with_expr_token1, + STATE(9989), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(10079), 1, sym_comment, - [301108] = 4, + [299329] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9206), 1, + ACTIONS(1844), 1, aux_sym_unquoted_token2, - ACTIONS(17362), 1, + ACTIONS(12748), 1, anon_sym_DOT, - STATE(10591), 1, + STATE(10080), 1, sym_comment, - [301121] = 4, - ACTIONS(113), 1, + [299342] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7541), 1, + ACTIONS(16668), 1, + anon_sym_COMMA, + ACTIONS(16670), 1, anon_sym_RBRACE, - ACTIONS(7543), 1, - sym__entry_separator, - STATE(10592), 1, + STATE(10081), 1, sym_comment, - [301134] = 4, + [299355] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1722), 1, - aux_sym__list_item_starts_with_sign_token1, - ACTIONS(17248), 1, - aux_sym__immediate_decimal_token1, - STATE(10593), 1, - sym_comment, - [301147] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - STATE(10570), 1, - sym__expr_parenthesized_immediate, - STATE(10594), 1, + ACTIONS(16672), 1, + anon_sym_RBRACK, + ACTIONS(16674), 1, + sym__entry_separator, + STATE(10082), 1, sym_comment, - [301160] = 4, + [299368] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17364), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(10555), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - STATE(10595), 1, + ACTIONS(16676), 1, + aux_sym__unquoted_with_expr_token1, + STATE(10083), 1, sym_comment, - [301173] = 4, + STATE(10114), 1, + aux_sym__unquoted_with_expr_repeat1, + [299381] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9043), 1, + ACTIONS(8548), 1, aux_sym_unquoted_token2, - ACTIONS(17366), 1, + ACTIONS(16678), 1, anon_sym_DOT, - STATE(10596), 1, - sym_comment, - [301186] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(2547), 1, - aux_sym__list_item_starts_with_sign_token1, - ACTIONS(17368), 1, - aux_sym__immediate_decimal_token2, - STATE(10597), 1, + STATE(10084), 1, sym_comment, - [301199] = 4, + [299394] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1292), 1, + ACTIONS(10120), 1, aux_sym__list_item_starts_with_sign_token1, - ACTIONS(17248), 1, + ACTIONS(16568), 1, aux_sym__immediate_decimal_token1, - STATE(10598), 1, + STATE(10085), 1, sym_comment, - [301212] = 4, + [299407] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14044), 1, + ACTIONS(13411), 1, anon_sym_LBRACE, - STATE(2933), 1, - sym_val_record, - STATE(10599), 1, + STATE(2431), 1, + sym_block, + STATE(10086), 1, + sym_comment, + [299420] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(16680), 1, + anon_sym_LPAREN2, + ACTIONS(16682), 1, + aux_sym__record_key_token1, + STATE(10087), 1, sym_comment, - [301225] = 4, + [299433] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2397), 1, + ACTIONS(2187), 1, anon_sym_LPAREN2, - STATE(10600), 1, + STATE(10088), 1, sym_comment, - STATE(10634), 1, + STATE(10200), 1, sym__expr_parenthesized_immediate, - [301238] = 4, + [299446] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9253), 1, - aux_sym_unquoted_token2, - ACTIONS(17370), 1, - anon_sym_DOT, - STATE(10601), 1, + ACTIONS(13397), 1, + anon_sym_LBRACE, + STATE(2303), 1, + sym_block, + STATE(10089), 1, sym_comment, - [301251] = 4, + [299459] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1245), 1, + ACTIONS(5903), 1, aux_sym__list_item_starts_with_sign_token1, - ACTIONS(17248), 1, + ACTIONS(16684), 1, aux_sym__immediate_decimal_token1, - STATE(10602), 1, + STATE(10090), 1, + sym_comment, + [299472] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8713), 1, + aux_sym_unquoted_token2, + ACTIONS(16686), 1, + anon_sym_DOT, + STATE(10091), 1, sym_comment, - [301264] = 4, + [299485] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10998), 1, - aux_sym__list_item_starts_with_sign_token1, - ACTIONS(17248), 1, - aux_sym__immediate_decimal_token1, - STATE(10603), 1, + ACTIONS(16688), 1, + aux_sym__unquoted_with_expr_token1, + STATE(10092), 1, sym_comment, - [301277] = 4, - ACTIONS(3), 1, + STATE(10206), 1, + aux_sym__unquoted_with_expr_repeat1, + [299498] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13975), 1, - anon_sym_LBRACE, - STATE(2941), 1, - sym_block, - STATE(10604), 1, + ACTIONS(16690), 1, + aux_sym__unquoted_with_expr_token1, + STATE(10031), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(10093), 1, + sym_comment, + [299511] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(16692), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(10036), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + STATE(10094), 1, sym_comment, - [301290] = 4, + [299524] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2397), 1, + ACTIONS(2187), 1, anon_sym_LPAREN2, - STATE(10605), 1, - sym_comment, - STATE(10697), 1, + STATE(10044), 1, sym__expr_parenthesized_immediate, - [301303] = 4, + STATE(10095), 1, + sym_comment, + [299537] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(6211), 1, - aux_sym__list_item_starts_with_sign_token1, - ACTIONS(17330), 1, - aux_sym__immediate_decimal_token1, - STATE(10606), 1, + ACTIONS(16694), 1, + anon_sym_RBRACK, + ACTIONS(16696), 1, + sym__entry_separator, + STATE(10096), 1, sym_comment, - [301316] = 4, + [299550] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9636), 1, + ACTIONS(8391), 1, aux_sym_unquoted_token2, - ACTIONS(17372), 1, + ACTIONS(16698), 1, anon_sym_DOT, - STATE(10607), 1, + STATE(10097), 1, sym_comment, - [301329] = 4, - ACTIONS(113), 1, + [299563] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3752), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4824), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(10608), 1, + ACTIONS(3650), 1, + aux_sym_unquoted_token2, + ACTIONS(13004), 1, + anon_sym_DOT, + STATE(10098), 1, sym_comment, - [301342] = 4, + [299576] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2397), 1, + ACTIONS(7265), 1, anon_sym_LPAREN2, - STATE(10609), 1, + STATE(10099), 1, sym_comment, - STATE(10743), 1, + STATE(10658), 1, sym__expr_parenthesized_immediate, - [301355] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9701), 1, - aux_sym_unquoted_token2, - ACTIONS(17374), 1, - anon_sym_DOT, - STATE(10610), 1, - sym_comment, - [301368] = 4, + [299589] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8298), 1, + ACTIONS(10420), 1, + aux_sym__list_item_starts_with_sign_token1, + ACTIONS(16568), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8735), 1, - aux_sym__unquoted_in_list_token3, - STATE(10611), 1, + STATE(10100), 1, sym_comment, - [301381] = 4, + [299602] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2397), 1, + ACTIONS(2187), 1, anon_sym_LPAREN2, - STATE(10612), 1, + STATE(10101), 1, sym_comment, - STATE(10661), 1, + STATE(10193), 1, sym__expr_parenthesized_immediate, - [301394] = 4, + [299615] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5441), 1, + ACTIONS(9867), 1, aux_sym__list_item_starts_with_sign_token1, - ACTIONS(17248), 1, + ACTIONS(16568), 1, aux_sym__immediate_decimal_token1, - STATE(10613), 1, + STATE(10102), 1, sym_comment, - [301407] = 4, + [299628] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9162), 1, + ACTIONS(1886), 1, aux_sym_unquoted_token2, - ACTIONS(17376), 1, + ACTIONS(13087), 1, anon_sym_DOT, - STATE(10614), 1, + STATE(10103), 1, sym_comment, - [301420] = 4, - ACTIONS(113), 1, + [299641] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1251), 1, - aux_sym__unquoted_in_list_token7, - ACTIONS(4037), 1, - anon_sym_LPAREN2, - STATE(10615), 1, + ACTIONS(8820), 1, + aux_sym_unquoted_token2, + ACTIONS(16700), 1, + anon_sym_DOT, + STATE(10104), 1, sym_comment, - [301433] = 4, + [299654] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5085), 1, - anon_sym_LBRACE, - ACTIONS(15594), 1, - aux_sym__immediate_decimal_token1, - STATE(10616), 1, + ACTIONS(9209), 1, + aux_sym_unquoted_token2, + ACTIONS(16702), 1, + anon_sym_DOT, + STATE(10105), 1, sym_comment, - [301446] = 4, - ACTIONS(113), 1, + [299667] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17378), 1, - aux_sym__unquoted_with_expr_token1, - STATE(10617), 1, + ACTIONS(13411), 1, + anon_sym_LBRACE, + STATE(2434), 1, + sym_block, + STATE(10106), 1, sym_comment, - STATE(10662), 1, - aux_sym__unquoted_with_expr_repeat1, - [301459] = 4, + [299680] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2397), 1, + ACTIONS(2187), 1, anon_sym_LPAREN2, - STATE(10618), 1, - sym_comment, - STATE(10647), 1, + STATE(10027), 1, sym__expr_parenthesized_immediate, - [301472] = 4, + STATE(10107), 1, + sym_comment, + [299693] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7119), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(16704), 1, + anon_sym_DOT, + STATE(10108), 1, + sym_comment, + [299706] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1105), 1, + ACTIONS(9162), 1, aux_sym_unquoted_token2, - ACTIONS(17380), 1, + ACTIONS(16706), 1, anon_sym_DOT, - STATE(10619), 1, + STATE(10109), 1, sym_comment, - [301485] = 4, + [299719] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14038), 1, + ACTIONS(940), 1, anon_sym_LBRACE, - STATE(2685), 1, - sym_val_record, - STATE(10620), 1, + ACTIONS(9209), 1, + aux_sym_unquoted_token5, + STATE(10110), 1, sym_comment, - [301498] = 4, - ACTIONS(3), 1, + [299732] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17382), 1, - anon_sym_COMMA, - ACTIONS(17384), 1, - anon_sym_RBRACE, - STATE(10621), 1, + ACTIONS(10037), 1, + aux_sym__list_item_starts_with_sign_token1, + ACTIONS(16568), 1, + aux_sym__immediate_decimal_token1, + STATE(10111), 1, sym_comment, - [301511] = 4, + [299745] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5049), 1, + ACTIONS(10465), 1, aux_sym__list_item_starts_with_sign_token1, - ACTIONS(17248), 1, + ACTIONS(16568), 1, aux_sym__immediate_decimal_token1, - STATE(10622), 1, + STATE(10112), 1, sym_comment, - [301524] = 4, + [299758] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2397), 1, + ACTIONS(2187), 1, anon_sym_LPAREN2, - STATE(10623), 1, - sym_comment, - STATE(10675), 1, + STATE(10079), 1, sym__expr_parenthesized_immediate, - [301537] = 4, + STATE(10113), 1, + sym_comment, + [299771] = 3, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(16708), 1, + aux_sym__unquoted_with_expr_token1, + STATE(10114), 2, + sym_comment, + aux_sym__unquoted_with_expr_repeat1, + [299782] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(16711), 1, + aux_sym__unquoted_with_expr_token1, + STATE(10115), 1, + sym_comment, + STATE(10184), 1, + aux_sym__unquoted_with_expr_repeat1, + [299795] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9231), 1, + aux_sym_unquoted_token2, + ACTIONS(16713), 1, + anon_sym_DOT, + STATE(10116), 1, + sym_comment, + [299808] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10998), 1, + ACTIONS(8685), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9141), 1, aux_sym__list_item_starts_with_sign_token1, - ACTIONS(17386), 1, + STATE(10117), 1, + sym_comment, + [299821] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + STATE(10005), 1, + sym__expr_parenthesized_immediate, + STATE(10118), 1, + sym_comment, + [299834] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(9831), 1, aux_sym__immediate_decimal_token1, - STATE(10624), 1, + ACTIONS(10142), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10119), 1, + sym_comment, + [299847] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(16715), 1, + anon_sym_LPAREN2, + ACTIONS(16717), 1, + sym_short_flag_identifier, + STATE(10120), 1, sym_comment, - [301550] = 4, + [299860] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8904), 1, + ACTIONS(8643), 1, aux_sym_unquoted_token2, - ACTIONS(17388), 1, + ACTIONS(16719), 1, anon_sym_DOT, - STATE(10625), 1, + STATE(10121), 1, sym_comment, - [301563] = 4, + [299873] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17268), 1, + ACTIONS(16715), 1, anon_sym_LPAREN2, - ACTIONS(17390), 1, + ACTIONS(16721), 1, sym_short_flag_identifier, - STATE(10626), 1, + STATE(10122), 1, sym_comment, - [301576] = 4, + [299886] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1494), 1, - aux_sym__list_item_starts_with_sign_token1, - ACTIONS(17248), 1, + ACTIONS(7895), 1, aux_sym__immediate_decimal_token1, - STATE(10627), 1, + ACTIONS(8362), 1, + aux_sym__unquoted_in_list_token3, + STATE(10123), 1, sym_comment, - [301589] = 4, + [299899] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2397), 1, + ACTIONS(2187), 1, anon_sym_LPAREN2, - STATE(10517), 1, + STATE(10115), 1, sym__expr_parenthesized_immediate, - STATE(10628), 1, + STATE(10124), 1, sym_comment, - [301602] = 4, + [299912] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1057), 1, + ACTIONS(8419), 1, aux_sym_unquoted_token2, - ACTIONS(17392), 1, + ACTIONS(16723), 1, anon_sym_DOT, - STATE(10629), 1, + STATE(10125), 1, + sym_comment, + [299925] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(4929), 1, + aux_sym__list_item_starts_with_sign_token1, + ACTIONS(16568), 1, + aux_sym__immediate_decimal_token1, + STATE(10126), 1, + sym_comment, + [299938] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(2229), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(16513), 1, + aux_sym__immediate_decimal_token2, + STATE(10127), 1, sym_comment, - [301615] = 4, + [299951] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17063), 1, + ACTIONS(13397), 1, anon_sym_LBRACE, - STATE(8647), 1, + STATE(2344), 1, sym_block, - STATE(10630), 1, + STATE(10128), 1, sym_comment, - [301628] = 4, + [299964] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7748), 1, + ACTIONS(2187), 1, anon_sym_LPAREN2, - STATE(10631), 1, + STATE(10129), 1, sym_comment, - STATE(10658), 1, + STATE(10208), 1, sym__expr_parenthesized_immediate, - [301641] = 4, - ACTIONS(113), 1, + [299977] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8209), 1, - sym__entry_separator, - ACTIONS(15766), 1, - anon_sym_RBRACK, - STATE(10632), 1, + ACTIONS(895), 1, + anon_sym_COLON, + ACTIONS(16314), 1, + aux_sym__immediate_decimal_token2, + STATE(10130), 1, sym_comment, - [301654] = 4, + [299990] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_LPAREN2, - STATE(10633), 1, + ACTIONS(9098), 1, + aux_sym_unquoted_token2, + ACTIONS(16725), 1, + anon_sym_DOT, + STATE(10131), 1, sym_comment, - STATE(10696), 1, - sym__expr_parenthesized_immediate, - [301667] = 4, + [300003] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17394), 1, + ACTIONS(16727), 1, aux_sym__unquoted_with_expr_token1, - STATE(10634), 1, + STATE(10132), 1, sym_comment, - STATE(10641), 1, + STATE(10234), 1, aux_sym__unquoted_with_expr_repeat1, - [301680] = 4, + [300016] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17396), 1, + ACTIONS(16729), 1, aux_sym__unquoted_with_expr_token1, - STATE(10635), 1, + STATE(10133), 1, sym_comment, - STATE(10642), 1, + STATE(10211), 1, aux_sym__unquoted_with_expr_repeat1, - [301693] = 4, + [300029] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9550), 1, - aux_sym_unquoted_token2, - ACTIONS(17398), 1, - anon_sym_DOT, - STATE(10636), 1, + ACTIONS(13389), 1, + anon_sym_LBRACE, + STATE(2270), 1, + sym_val_record, + STATE(10134), 1, sym_comment, - [301706] = 4, + [300042] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10918), 1, + ACTIONS(10120), 1, aux_sym__list_item_starts_with_sign_token1, - ACTIONS(17248), 1, - aux_sym__immediate_decimal_token1, - STATE(10637), 1, - sym_comment, - [301719] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(8322), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(17400), 1, + ACTIONS(16684), 1, aux_sym__immediate_decimal_token1, - STATE(10638), 1, + STATE(10135), 1, sym_comment, - [301732] = 4, + [300055] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8027), 1, + ACTIONS(7553), 1, aux_sym_unquoted_token2, - ACTIONS(17402), 1, + ACTIONS(16731), 1, anon_sym_DOT, - STATE(10639), 1, + STATE(10136), 1, + sym_comment, + [300068] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(16733), 1, + anon_sym_LPAREN2, + ACTIONS(16735), 1, + sym_short_flag_identifier, + STATE(10137), 1, + sym_comment, + [300081] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + STATE(9998), 1, + sym__expr_parenthesized_immediate, + STATE(10138), 1, sym_comment, - [301745] = 4, + [300094] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17404), 1, + ACTIONS(16737), 1, aux_sym__unquoted_with_expr_token1, - STATE(10617), 1, + STATE(10114), 1, aux_sym__unquoted_with_expr_repeat1, - STATE(10640), 1, + STATE(10139), 1, sym_comment, - [301758] = 4, - ACTIONS(113), 1, + [300107] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17406), 1, - aux_sym__unquoted_with_expr_token1, - STATE(10641), 1, + ACTIONS(7457), 1, + aux_sym_unquoted_token2, + ACTIONS(16739), 1, + anon_sym_DOT, + STATE(10140), 1, sym_comment, - STATE(10662), 1, - aux_sym__unquoted_with_expr_repeat1, - [301771] = 4, - ACTIONS(113), 1, + [300120] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17408), 1, - aux_sym__unquoted_with_expr_token1, - STATE(10642), 1, + ACTIONS(3707), 1, + anon_sym_COLON, + ACTIONS(16741), 1, + anon_sym_make, + STATE(10141), 1, sym_comment, - STATE(10662), 1, - aux_sym__unquoted_with_expr_repeat1, - [301784] = 4, + [300133] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(16733), 1, + anon_sym_LPAREN2, + ACTIONS(16743), 1, + sym_short_flag_identifier, + STATE(10142), 1, + sym_comment, + [300146] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8314), 1, + aux_sym_unquoted_token2, + ACTIONS(16745), 1, + anon_sym_DOT, + STATE(10143), 1, + sym_comment, + [300159] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17063), 1, + ACTIONS(13411), 1, anon_sym_LBRACE, - STATE(9360), 1, + STATE(2443), 1, sym_block, - STATE(10643), 1, + STATE(10144), 1, + sym_comment, + [300172] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(10145), 1, sym_comment, - [301797] = 4, + ACTIONS(16747), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + [300183] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7918), 1, + ACTIONS(8013), 1, aux_sym_unquoted_token2, - ACTIONS(17410), 1, + ACTIONS(16749), 1, anon_sym_DOT, - STATE(10644), 1, + STATE(10146), 1, + sym_comment, + [300196] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(2356), 1, + aux_sym__list_item_starts_with_sign_token1, + ACTIONS(16242), 1, + aux_sym__immediate_decimal_token2, + STATE(10147), 1, sym_comment, - [301810] = 4, + [300209] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9437), 1, + ACTIONS(8783), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9707), 1, + ACTIONS(9189), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(10645), 1, + STATE(10148), 1, + sym_comment, + [300222] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(7964), 1, + anon_sym_RBRACK, + ACTIONS(7966), 1, + sym__entry_separator, + STATE(10149), 1, sym_comment, - [301823] = 4, + [300235] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3750), 1, - anon_sym_EQ_GT, - ACTIONS(14506), 1, - aux_sym__immediate_decimal_token1, - STATE(10646), 1, + ACTIONS(1856), 1, + aux_sym_unquoted_token2, + ACTIONS(16751), 1, + anon_sym_DOT, + STATE(10150), 1, sym_comment, - [301836] = 4, + [300248] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17412), 1, + ACTIONS(16753), 1, aux_sym__unquoted_with_expr_token1, - STATE(10647), 1, - sym_comment, - STATE(10704), 1, + STATE(10114), 1, aux_sym__unquoted_with_expr_repeat1, - [301849] = 4, + STATE(10151), 1, + sym_comment, + [300261] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17414), 1, + ACTIONS(16755), 1, aux_sym__unquoted_with_expr_token1, - STATE(10462), 1, + STATE(10139), 1, aux_sym__unquoted_with_expr_repeat1, - STATE(10648), 1, + STATE(10152), 1, + sym_comment, + [300274] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3655), 1, + anon_sym_COLON, + ACTIONS(16741), 1, + anon_sym_make, + STATE(10153), 1, sym_comment, - [301862] = 4, + [300287] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8663), 1, + ACTIONS(1706), 1, aux_sym_unquoted_token2, - ACTIONS(17416), 1, + ACTIONS(16757), 1, anon_sym_DOT, - STATE(10649), 1, + STATE(10154), 1, sym_comment, - [301875] = 4, - ACTIONS(113), 1, + [300300] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2437), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(17020), 1, - aux_sym__immediate_decimal_token2, - STATE(10650), 1, + ACTIONS(3433), 1, + aux_sym_unquoted_token2, + ACTIONS(16759), 1, + anon_sym_DOT, + STATE(10155), 1, sym_comment, - [301888] = 4, + [300313] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17418), 1, - anon_sym_LPAREN2, - ACTIONS(17420), 1, - sym_short_flag_identifier, - STATE(10651), 1, + ACTIONS(913), 1, + anon_sym_COLON, + ACTIONS(16487), 1, + aux_sym__immediate_decimal_token2, + STATE(10156), 1, sym_comment, - [301901] = 4, + [300326] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13975), 1, + ACTIONS(4725), 1, anon_sym_LBRACE, - STATE(2829), 1, - sym_block, - STATE(10652), 1, + ACTIONS(16761), 1, + anon_sym_EQ, + STATE(10157), 1, sym_comment, - [301914] = 4, + [300339] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2581), 1, + ACTIONS(10042), 1, aux_sym__list_item_starts_with_sign_token1, - ACTIONS(17101), 1, - aux_sym__immediate_decimal_token2, - STATE(10653), 1, + ACTIONS(16763), 1, + aux_sym__immediate_decimal_token1, + STATE(10158), 1, sym_comment, - [301927] = 4, + [300352] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(9739), 1, + aux_sym__list_item_starts_with_sign_token1, + ACTIONS(16765), 1, + aux_sym__immediate_decimal_token1, + STATE(10159), 1, + sym_comment, + [300365] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8570), 1, + ACTIONS(3966), 1, aux_sym_unquoted_token2, - ACTIONS(17422), 1, + ACTIONS(16767), 1, anon_sym_DOT, - STATE(10654), 1, + STATE(10160), 1, sym_comment, - [301940] = 4, + [300378] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14236), 1, + ACTIONS(4821), 1, aux_sym__list_item_starts_with_sign_token1, - ACTIONS(17424), 1, + ACTIONS(16763), 1, aux_sym__immediate_decimal_token1, - STATE(10655), 1, + STATE(10161), 1, sym_comment, - [301953] = 4, + [300391] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17426), 1, + ACTIONS(16769), 1, aux_sym__unquoted_with_expr_token1, - STATE(10656), 1, - sym_comment, - STATE(10706), 1, + STATE(10114), 1, aux_sym__unquoted_with_expr_repeat1, - [301966] = 3, + STATE(10162), 1, + sym_comment, + [300404] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(10657), 1, + ACTIONS(13397), 1, + anon_sym_LBRACE, + STATE(2377), 1, + sym_block, + STATE(10163), 1, sym_comment, - ACTIONS(17037), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [301977] = 4, + [300417] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17428), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(10495), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - STATE(10658), 1, + ACTIONS(16771), 1, + aux_sym__unquoted_with_expr_token1, + STATE(10151), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(10164), 1, sym_comment, - [301990] = 4, + [300430] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17430), 1, - anon_sym_RBRACK, - ACTIONS(17432), 1, - sym__entry_separator, - STATE(10659), 1, + ACTIONS(1139), 1, + anon_sym_LBRACE, + ACTIONS(10465), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10165), 1, sym_comment, - [302003] = 4, + [300443] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2338), 1, + ACTIONS(7173), 1, aux_sym_unquoted_token2, - ACTIONS(17434), 1, + ACTIONS(16773), 1, anon_sym_DOT, - STATE(10660), 1, + STATE(10166), 1, sym_comment, - [302016] = 4, + [300456] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17436), 1, - aux_sym__unquoted_with_expr_token1, - STATE(10661), 1, + ACTIONS(7889), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8205), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10167), 1, sym_comment, - STATE(10711), 1, - aux_sym__unquoted_with_expr_repeat1, - [302029] = 3, - ACTIONS(113), 1, + [300469] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17438), 1, - aux_sym__unquoted_with_expr_token1, - STATE(10662), 2, + ACTIONS(13411), 1, + anon_sym_LBRACE, + STATE(2454), 1, + sym_block, + STATE(10168), 1, sym_comment, - aux_sym__unquoted_with_expr_repeat1, - [302040] = 4, + [300482] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13975), 1, + ACTIONS(3576), 1, anon_sym_LBRACE, - STATE(2892), 1, - sym_block, - STATE(10663), 1, + ACTIONS(14479), 1, + aux_sym__immediate_decimal_token1, + STATE(10169), 1, sym_comment, - [302053] = 4, + [300495] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17441), 1, - aux_sym__unquoted_with_expr_token1, - STATE(10664), 1, + ACTIONS(10465), 1, + aux_sym__list_item_starts_with_sign_token1, + ACTIONS(16775), 1, + aux_sym__immediate_decimal_token1, + STATE(10170), 1, sym_comment, - STATE(10730), 1, + [300508] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(16777), 1, + aux_sym__unquoted_with_expr_token1, + STATE(10114), 1, aux_sym__unquoted_with_expr_repeat1, - [302066] = 4, + STATE(10171), 1, + sym_comment, + [300521] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1812), 1, + ACTIONS(3252), 1, aux_sym_unquoted_token2, - ACTIONS(17443), 1, + ACTIONS(16779), 1, anon_sym_DOT, - STATE(10665), 1, + STATE(10172), 1, sym_comment, - [302079] = 4, + [300534] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17445), 1, - aux_sym__unquoted_with_expr_token1, - STATE(10666), 1, + ACTIONS(2362), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(16781), 1, + aux_sym__immediate_decimal_token2, + STATE(10173), 1, sym_comment, - STATE(10732), 1, - aux_sym__unquoted_with_expr_repeat1, - [302092] = 4, + [300547] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(4022), 1, + ACTIONS(10499), 1, + aux_sym__list_item_starts_with_sign_token1, + ACTIONS(16568), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5047), 1, + STATE(10174), 1, + sym_comment, + [300560] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(13834), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(10667), 1, + ACTIONS(16783), 1, + aux_sym__immediate_decimal_token1, + STATE(10175), 1, sym_comment, - [302105] = 4, + [300573] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13945), 1, - anon_sym_LBRACE, - STATE(2703), 1, - sym_block, - STATE(10668), 1, + ACTIONS(3362), 1, + aux_sym_unquoted_token2, + ACTIONS(12513), 1, + anon_sym_DOT, + STATE(10176), 1, sym_comment, - [302118] = 4, + [300586] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4095), 1, + ACTIONS(8777), 1, aux_sym_unquoted_token2, - ACTIONS(17447), 1, + ACTIONS(16785), 1, anon_sym_DOT, - STATE(10669), 1, + STATE(10177), 1, + sym_comment, + [300599] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13571), 1, + anon_sym_LBRACE, + STATE(2513), 1, + sym_val_record, + STATE(10178), 1, sym_comment, - [302131] = 4, + [300612] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5133), 1, - aux_sym__list_item_starts_with_sign_token1, - ACTIONS(17248), 1, + ACTIONS(7609), 1, aux_sym__immediate_decimal_token1, - STATE(10670), 1, + ACTIONS(7850), 1, + aux_sym__unquoted_in_list_token3, + STATE(10179), 1, sym_comment, - [302144] = 3, - ACTIONS(3), 1, + [300625] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(10671), 1, + ACTIONS(9953), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(10400), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10180), 1, sym_comment, - ACTIONS(17449), 2, - anon_sym_RBRACK, - sym_hex_digit, - [302155] = 4, - ACTIONS(3), 1, + [300638] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17451), 1, - anon_sym_DASH, - STATE(10672), 1, + ACTIONS(2356), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(16270), 1, + aux_sym__immediate_decimal_token2, + STATE(10181), 1, sym_comment, - STATE(11094), 1, - sym_param_short_flag, - [302168] = 4, + [300651] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7683), 1, + ACTIONS(3625), 1, aux_sym_unquoted_token2, - ACTIONS(17453), 1, + ACTIONS(16787), 1, anon_sym_DOT, - STATE(10673), 1, - sym_comment, - [302181] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13945), 1, - anon_sym_LBRACE, - STATE(2704), 1, - sym_block, - STATE(10674), 1, + STATE(10182), 1, sym_comment, - [302194] = 4, + [300664] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17455), 1, + ACTIONS(16789), 1, aux_sym__unquoted_with_expr_token1, - STATE(10675), 1, + STATE(10183), 1, sym_comment, - STATE(10686), 1, + STATE(10253), 1, aux_sym__unquoted_with_expr_repeat1, - [302207] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2905), 1, - aux_sym_unquoted_token2, - ACTIONS(17457), 1, - anon_sym_DOT, - STATE(10676), 1, - sym_comment, - [302220] = 4, + [300677] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17459), 1, + ACTIONS(16791), 1, aux_sym__unquoted_with_expr_token1, - STATE(10677), 1, - sym_comment, - STATE(10691), 1, + STATE(10114), 1, aux_sym__unquoted_with_expr_repeat1, - [302233] = 4, + STATE(10184), 1, + sym_comment, + [300690] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(16793), 1, + anon_sym_LPAREN2, + ACTIONS(16795), 1, + sym_short_flag_identifier, + STATE(10185), 1, + sym_comment, + [300703] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9121), 1, + ACTIONS(9239), 1, aux_sym_unquoted_token2, - ACTIONS(17461), 1, + ACTIONS(16797), 1, anon_sym_DOT, - STATE(10678), 1, + STATE(10186), 1, sym_comment, - [302246] = 4, + [300716] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10998), 1, + ACTIONS(9784), 1, aux_sym__list_item_starts_with_sign_token1, - ACTIONS(17463), 1, + ACTIONS(16799), 1, aux_sym__immediate_decimal_token1, - STATE(10679), 1, + STATE(10187), 1, sym_comment, - [302259] = 4, - ACTIONS(113), 1, + [300729] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17465), 1, - aux_sym__unquoted_with_expr_token1, - STATE(10680), 1, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + STATE(10188), 1, sym_comment, - STATE(10715), 1, - aux_sym__unquoted_with_expr_repeat1, - [302272] = 4, + STATE(10242), 1, + sym__expr_parenthesized_immediate, + [300742] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17418), 1, - anon_sym_LPAREN2, - ACTIONS(17467), 1, - sym_short_flag_identifier, - STATE(10681), 1, + STATE(10189), 1, sym_comment, - [302285] = 4, + ACTIONS(16528), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [300753] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3982), 1, + ACTIONS(6312), 1, aux_sym_unquoted_token2, - ACTIONS(17469), 1, + ACTIONS(16801), 1, anon_sym_DOT, - STATE(10682), 1, + STATE(10190), 1, sym_comment, - [302298] = 4, + [300766] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9172), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9572), 1, + ACTIONS(16803), 1, + aux_sym__unquoted_with_expr_token1, + STATE(10191), 1, + sym_comment, + STATE(10260), 1, + aux_sym__unquoted_with_expr_repeat1, + [300779] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(9919), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(10683), 1, + ACTIONS(16568), 1, + aux_sym__immediate_decimal_token1, + STATE(10192), 1, sym_comment, - [302311] = 4, + [300792] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17471), 1, + ACTIONS(16805), 1, aux_sym__unquoted_with_expr_token1, - STATE(10662), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(10684), 1, + STATE(10193), 1, sym_comment, - [302324] = 3, + STATE(10215), 1, + aux_sym__unquoted_with_expr_repeat1, + [300805] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(10685), 1, + ACTIONS(7129), 1, + aux_sym_unquoted_token2, + ACTIONS(16807), 1, + anon_sym_DOT, + STATE(10194), 1, sym_comment, - ACTIONS(6655), 2, - anon_sym_COLON, - anon_sym_LBRACE, - [302335] = 4, + [300818] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17473), 1, + ACTIONS(16809), 1, aux_sym__unquoted_with_expr_token1, - STATE(10662), 1, + STATE(10114), 1, aux_sym__unquoted_with_expr_repeat1, - STATE(10686), 1, + STATE(10195), 1, sym_comment, - [302348] = 4, + [300831] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10357), 1, - aux_sym__list_item_starts_with_sign_token1, - ACTIONS(17475), 1, + ACTIONS(7607), 1, aux_sym__immediate_decimal_token1, - STATE(10687), 1, + ACTIONS(7919), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10196), 1, + sym_comment, + [300844] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(16811), 1, + aux_sym__unquoted_with_expr_token1, + STATE(10197), 1, sym_comment, - [302361] = 4, + STATE(10218), 1, + aux_sym__unquoted_with_expr_repeat1, + [300857] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9899), 1, + ACTIONS(1383), 1, aux_sym_unquoted_token2, - ACTIONS(17477), 1, + ACTIONS(16813), 1, anon_sym_DOT, - STATE(10688), 1, + STATE(10198), 1, sym_comment, - [302374] = 4, + [300870] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13945), 1, + ACTIONS(13397), 1, anon_sym_LBRACE, - STATE(2641), 1, + STATE(2365), 1, sym_block, - STATE(10689), 1, - sym_comment, - [302387] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6768), 1, - aux_sym_unquoted_token2, - ACTIONS(17479), 1, - anon_sym_DOT, - STATE(10690), 1, + STATE(10199), 1, sym_comment, - [302400] = 4, + [300883] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17481), 1, + ACTIONS(16815), 1, aux_sym__unquoted_with_expr_token1, - STATE(10662), 1, + STATE(9997), 1, aux_sym__unquoted_with_expr_repeat1, - STATE(10691), 1, + STATE(10200), 1, sym_comment, - [302413] = 4, + [300896] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7605), 1, + ACTIONS(983), 1, aux_sym_unquoted_token2, - ACTIONS(17483), 1, + ACTIONS(16817), 1, anon_sym_DOT, - STATE(10692), 1, + STATE(10201), 1, sym_comment, - [302426] = 4, + [300909] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17485), 1, - aux_sym__unquoted_with_expr_token1, - STATE(10684), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(10693), 1, + ACTIONS(4767), 1, + aux_sym__list_item_starts_with_sign_token1, + ACTIONS(16568), 1, + aux_sym__immediate_decimal_token1, + STATE(10202), 1, sym_comment, - [302439] = 4, - ACTIONS(3), 1, + [300922] = 3, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17318), 1, - anon_sym_LBRACE, - STATE(9306), 1, - sym_block, - STATE(10694), 1, + ACTIONS(16819), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(10203), 2, + sym_comment, + aux_sym__unquoted_in_list_with_expr_repeat1, + [300933] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(1139), 1, + anon_sym_in, + ACTIONS(10465), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10204), 1, sym_comment, - [302452] = 4, + [300946] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1586), 1, + ACTIONS(952), 1, aux_sym_unquoted_token2, - ACTIONS(17487), 1, + ACTIONS(16822), 1, anon_sym_DOT, - STATE(10695), 1, + STATE(10205), 1, sym_comment, - [302465] = 4, + [300959] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17489), 1, + ACTIONS(16824), 1, aux_sym__unquoted_with_expr_token1, - STATE(10500), 1, + STATE(10114), 1, aux_sym__unquoted_with_expr_repeat1, - STATE(10696), 1, + STATE(10206), 1, sym_comment, - [302478] = 4, - ACTIONS(113), 1, + [300972] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17491), 1, - aux_sym__unquoted_with_expr_token1, - STATE(10697), 1, + ACTIONS(16826), 1, + anon_sym_LBRACE, + STATE(8853), 1, + sym_block, + STATE(10207), 1, sym_comment, - STATE(10707), 1, - aux_sym__unquoted_with_expr_repeat1, - [302491] = 4, + [300985] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17493), 1, + ACTIONS(16828), 1, aux_sym__unquoted_with_expr_token1, - STATE(10698), 1, - sym_comment, - STATE(10708), 1, + STATE(10014), 1, aux_sym__unquoted_with_expr_repeat1, - [302504] = 4, + STATE(10208), 1, + sym_comment, + [300998] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1024), 1, + ACTIONS(3839), 1, aux_sym_unquoted_token2, - ACTIONS(17495), 1, + ACTIONS(16830), 1, anon_sym_DOT, - STATE(10699), 1, + STATE(10209), 1, sym_comment, - [302517] = 4, + [301011] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2851), 1, - aux_sym_unquoted_token2, - ACTIONS(13169), 1, - anon_sym_DOT, - STATE(10700), 1, + ACTIONS(16340), 1, + anon_sym_LBRACE, + STATE(8974), 1, + sym_block, + STATE(10210), 1, sym_comment, - [302530] = 4, + [301024] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17497), 1, + ACTIONS(16832), 1, aux_sym__unquoted_with_expr_token1, - STATE(10465), 1, + STATE(10114), 1, aux_sym__unquoted_with_expr_repeat1, - STATE(10701), 1, + STATE(10211), 1, + sym_comment, + [301037] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13411), 1, + anon_sym_LBRACE, + STATE(2416), 1, + sym_block, + STATE(10212), 1, sym_comment, - [302543] = 4, + [301050] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(973), 1, + ACTIONS(3148), 1, aux_sym_unquoted_token2, - ACTIONS(17499), 1, + ACTIONS(16834), 1, anon_sym_DOT, - STATE(10702), 1, + STATE(10213), 1, sym_comment, - [302556] = 4, + [301063] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17501), 1, + ACTIONS(16836), 1, aux_sym__unquoted_with_expr_token1, - STATE(10466), 1, + STATE(10000), 1, aux_sym__unquoted_with_expr_repeat1, - STATE(10703), 1, + STATE(10214), 1, sym_comment, - [302569] = 4, + [301076] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17503), 1, + ACTIONS(16838), 1, aux_sym__unquoted_with_expr_token1, - STATE(10662), 1, + STATE(10114), 1, aux_sym__unquoted_with_expr_repeat1, - STATE(10704), 1, + STATE(10215), 1, sym_comment, - [302582] = 4, + [301089] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4781), 1, + ACTIONS(3638), 1, aux_sym_unquoted_token2, - ACTIONS(17505), 1, + ACTIONS(16840), 1, anon_sym_DOT, - STATE(10705), 1, - sym_comment, - [302595] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(17507), 1, - aux_sym__unquoted_with_expr_token1, - STATE(10662), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(10706), 1, + STATE(10216), 1, sym_comment, - [302608] = 4, + [301102] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17509), 1, - aux_sym__unquoted_with_expr_token1, - STATE(10662), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(10707), 1, + ACTIONS(3578), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3877), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10217), 1, sym_comment, - [302621] = 4, + [301115] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17511), 1, + ACTIONS(16842), 1, aux_sym__unquoted_with_expr_token1, - STATE(10662), 1, + STATE(10114), 1, aux_sym__unquoted_with_expr_repeat1, - STATE(10708), 1, + STATE(10218), 1, sym_comment, - [302634] = 4, + [301128] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2919), 1, + ACTIONS(6354), 1, aux_sym_unquoted_token2, - ACTIONS(17513), 1, + ACTIONS(16844), 1, anon_sym_DOT, - STATE(10709), 1, + STATE(10219), 1, sym_comment, - [302647] = 4, - ACTIONS(113), 1, + [301141] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2581), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(17113), 1, - aux_sym__immediate_decimal_token2, - STATE(10710), 1, + ACTIONS(13397), 1, + anon_sym_LBRACE, + STATE(2352), 1, + sym_block, + STATE(10220), 1, sym_comment, - [302660] = 4, + [301154] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17515), 1, - aux_sym__unquoted_with_expr_token1, - STATE(10662), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(10711), 1, + ACTIONS(1530), 1, + aux_sym__list_item_starts_with_sign_token1, + ACTIONS(16568), 1, + aux_sym__immediate_decimal_token1, + STATE(10221), 1, sym_comment, - [302673] = 4, + [301167] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3862), 1, + ACTIONS(2396), 1, aux_sym_unquoted_token2, - ACTIONS(17517), 1, + ACTIONS(16846), 1, anon_sym_DOT, - STATE(10712), 1, + STATE(10222), 1, sym_comment, - [302686] = 4, - ACTIONS(113), 1, + [301180] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1243), 1, + ACTIONS(13411), 1, anon_sym_LBRACE, - ACTIONS(10998), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(10713), 1, + STATE(2405), 1, + sym_block, + STATE(10223), 1, sym_comment, - [302699] = 4, + [301193] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6816), 1, - aux_sym_unquoted_token2, - ACTIONS(17519), 1, - anon_sym_DOT, - STATE(10714), 1, + ACTIONS(15168), 1, + anon_sym_if, + STATE(10224), 1, sym_comment, - [302712] = 4, - ACTIONS(113), 1, + STATE(10585), 1, + sym_match_guard, + [301206] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17521), 1, - aux_sym__unquoted_with_expr_token1, - STATE(10662), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(10715), 1, + ACTIONS(1359), 1, + aux_sym_unquoted_token2, + ACTIONS(16848), 1, + anon_sym_DOT, + STATE(10225), 1, sym_comment, - [302725] = 4, + [301219] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13945), 1, + ACTIONS(13411), 1, anon_sym_LBRACE, - STATE(2733), 1, + STATE(2413), 1, sym_block, - STATE(10716), 1, + STATE(10226), 1, sym_comment, - [302738] = 4, + [301232] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2613), 1, + ACTIONS(1000), 1, aux_sym_unquoted_token2, - ACTIONS(17523), 1, + ACTIONS(16850), 1, anon_sym_DOT, - STATE(10717), 1, + STATE(10227), 1, sym_comment, - [302751] = 4, + [301245] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13945), 1, + ACTIONS(13411), 1, anon_sym_LBRACE, - STATE(2734), 1, + STATE(2436), 1, sym_block, - STATE(10718), 1, - sym_comment, - [302764] = 3, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(17525), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(10719), 2, - sym_comment, - aux_sym__unquoted_in_list_with_expr_repeat1, - [302775] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1570), 1, - aux_sym_unquoted_token2, - ACTIONS(17528), 1, - anon_sym_DOT, - STATE(10720), 1, + STATE(10228), 1, sym_comment, - [302788] = 4, + [301258] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1028), 1, + ACTIONS(930), 1, aux_sym_unquoted_token2, - ACTIONS(17530), 1, + ACTIONS(16852), 1, anon_sym_DOT, - STATE(10721), 1, + STATE(10229), 1, sym_comment, - [302801] = 4, + [301271] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17063), 1, + ACTIONS(13397), 1, anon_sym_LBRACE, - STATE(8991), 1, + STATE(2290), 1, sym_block, - STATE(10722), 1, + STATE(10230), 1, sym_comment, - [302814] = 4, + [301284] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(946), 1, + ACTIONS(2958), 1, aux_sym_unquoted_token2, - ACTIONS(17532), 1, + ACTIONS(16854), 1, anon_sym_DOT, - STATE(10723), 1, + STATE(10231), 1, sym_comment, - [302827] = 4, + [301297] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3037), 1, + ACTIONS(2384), 1, aux_sym_unquoted_token2, - ACTIONS(17534), 1, + ACTIONS(16856), 1, anon_sym_DOT, - STATE(10724), 1, + STATE(10232), 1, sym_comment, - [302840] = 4, + [301310] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17536), 1, + ACTIONS(13838), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14481), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10233), 1, + sym_comment, + [301323] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(16858), 1, aux_sym__unquoted_with_expr_token1, - STATE(10662), 1, + STATE(10114), 1, aux_sym__unquoted_with_expr_repeat1, - STATE(10725), 1, + STATE(10234), 1, sym_comment, - [302853] = 4, + [301336] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2577), 1, - aux_sym_unquoted_token2, - ACTIONS(17538), 1, - anon_sym_DOT, - STATE(10726), 1, + ACTIONS(13411), 1, + anon_sym_LBRACE, + STATE(2441), 1, + sym_block, + STATE(10235), 1, sym_comment, - [302866] = 3, - ACTIONS(3), 1, + [301349] = 4, + ACTIONS(113), 1, anon_sym_POUND, - STATE(10727), 1, + ACTIONS(13136), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13834), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10236), 1, sym_comment, - ACTIONS(6659), 2, - anon_sym_COLON, - anon_sym_LBRACE, - [302877] = 4, + [301362] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(6931), 1, + aux_sym__list_item_starts_with_sign_token1, + ACTIONS(16568), 1, + aux_sym__immediate_decimal_token1, + STATE(10237), 1, + sym_comment, + [301375] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13975), 1, + ACTIONS(13397), 1, anon_sym_LBRACE, - STATE(2855), 1, + STATE(2375), 1, sym_block, - STATE(10728), 1, + STATE(10238), 1, sym_comment, - [302890] = 4, + [301388] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13975), 1, + ACTIONS(16826), 1, anon_sym_LBRACE, - STATE(2923), 1, + STATE(8574), 1, sym_block, - STATE(10729), 1, + STATE(10239), 1, sym_comment, - [302903] = 4, + [301401] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17540), 1, + ACTIONS(2229), 1, + aux_sym__list_item_starts_with_sign_token1, + ACTIONS(16558), 1, + aux_sym__immediate_decimal_token2, + STATE(10240), 1, + sym_comment, + [301414] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4725), 1, + anon_sym_in, + ACTIONS(16860), 1, + anon_sym_EQ, + STATE(10241), 1, + sym_comment, + [301427] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(16862), 1, aux_sym__unquoted_with_expr_token1, - STATE(10662), 1, + STATE(10010), 1, aux_sym__unquoted_with_expr_repeat1, - STATE(10730), 1, + STATE(10242), 1, sym_comment, - [302916] = 4, + [301440] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8894), 1, + ACTIONS(4697), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9449), 1, + ACTIONS(4891), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(10731), 1, + STATE(10243), 1, sym_comment, - [302929] = 4, + [301453] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17542), 1, + ACTIONS(16864), 1, aux_sym__unquoted_with_expr_token1, - STATE(10662), 1, + STATE(10042), 1, aux_sym__unquoted_with_expr_repeat1, - STATE(10732), 1, + STATE(10244), 1, sym_comment, - [302942] = 4, + [301466] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(16866), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(10203), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + STATE(10245), 1, + sym_comment, + [301479] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13975), 1, + ACTIONS(16340), 1, anon_sym_LBRACE, - STATE(2814), 1, + STATE(8734), 1, sym_block, - STATE(10733), 1, + STATE(10246), 1, sym_comment, - [302955] = 4, + [301492] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5085), 1, - anon_sym_in, - ACTIONS(15620), 1, - aux_sym__immediate_decimal_token1, - STATE(10734), 1, - sym_comment, - [302968] = 4, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(8178), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8587), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(10735), 1, + ACTIONS(13411), 1, + anon_sym_LBRACE, + STATE(2406), 1, + sym_block, + STATE(10247), 1, sym_comment, - [302981] = 4, + [301505] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13945), 1, + ACTIONS(13397), 1, anon_sym_LBRACE, - STATE(2737), 1, + STATE(2396), 1, sym_block, - STATE(10736), 1, + STATE(10248), 1, sym_comment, - [302994] = 4, + [301518] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13945), 1, + ACTIONS(16340), 1, anon_sym_LBRACE, - STATE(2740), 1, + STATE(8282), 1, sym_block, - STATE(10737), 1, + STATE(10249), 1, sym_comment, - [303007] = 4, + [301531] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13945), 1, + ACTIONS(13397), 1, anon_sym_LBRACE, - STATE(2741), 1, + STATE(2310), 1, sym_block, - STATE(10738), 1, + STATE(10250), 1, sym_comment, - [303020] = 4, + [301544] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13817), 1, + ACTIONS(3642), 1, aux_sym__immediate_decimal_token1, - ACTIONS(14236), 1, + ACTIONS(4727), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(10739), 1, + STATE(10251), 1, sym_comment, - [303033] = 4, + [301557] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13975), 1, + ACTIONS(13397), 1, anon_sym_LBRACE, - STATE(2843), 1, + STATE(2313), 1, sym_block, - STATE(10740), 1, + STATE(10252), 1, + sym_comment, + [301570] = 4, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(16868), 1, + aux_sym__unquoted_with_expr_token1, + STATE(10114), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(10253), 1, sym_comment, - [303046] = 4, + [301583] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10998), 1, + ACTIONS(5903), 1, aux_sym__list_item_starts_with_sign_token1, - ACTIONS(17544), 1, + ACTIONS(16568), 1, aux_sym__immediate_decimal_token1, - STATE(10741), 1, + STATE(10254), 1, sym_comment, - [303059] = 4, + [301596] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2437), 1, + ACTIONS(2362), 1, aux_sym__list_item_starts_with_sign_token1, - ACTIONS(16862), 1, + ACTIONS(16870), 1, aux_sym__immediate_decimal_token2, - STATE(10742), 1, + STATE(10255), 1, sym_comment, - [303072] = 4, + [301609] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17546), 1, + ACTIONS(16872), 1, aux_sym__unquoted_with_expr_token1, - STATE(10461), 1, + STATE(10114), 1, aux_sym__unquoted_with_expr_repeat1, - STATE(10743), 1, + STATE(10256), 1, sym_comment, - [303085] = 4, - ACTIONS(113), 1, + [301622] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17548), 1, - aux_sym__unquoted_with_expr_token1, - STATE(10504), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(10744), 1, + ACTIONS(4738), 1, + anon_sym_LBRACE, + ACTIONS(16874), 1, + sym_long_flag_identifier, + STATE(10257), 1, sym_comment, - [303098] = 4, + [301635] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5133), 1, + ACTIONS(6578), 1, aux_sym__list_item_starts_with_sign_token1, - ACTIONS(17346), 1, + ACTIONS(16568), 1, aux_sym__immediate_decimal_token1, - STATE(10745), 1, - sym_comment, - [303111] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(17550), 1, - anon_sym_LPAREN2, - STATE(10746), 1, + STATE(10258), 1, sym_comment, - [303121] = 3, + [301648] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17552), 1, - aux_sym__immediate_decimal_token1, - STATE(10747), 1, + ACTIONS(13397), 1, + anon_sym_LBRACE, + STATE(2284), 1, + sym_block, + STATE(10259), 1, sym_comment, - [303131] = 3, - ACTIONS(3), 1, + [301661] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17554), 1, - anon_sym_RPAREN, - STATE(10748), 1, + ACTIONS(16876), 1, + aux_sym__unquoted_with_expr_token1, + STATE(10114), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(10260), 1, sym_comment, - [303141] = 3, - ACTIONS(3), 1, + [301674] = 4, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17556), 1, - aux_sym__immediate_decimal_token1, - STATE(10749), 1, + ACTIONS(16878), 1, + aux_sym__unquoted_with_expr_token1, + STATE(10034), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(10261), 1, sym_comment, - [303151] = 3, + [301687] = 4, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17558), 1, + ACTIONS(4821), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(10750), 1, - sym_comment, - [303161] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(17560), 1, - anon_sym_LBRACE, - STATE(10751), 1, + ACTIONS(16568), 1, + aux_sym__immediate_decimal_token1, + STATE(10262), 1, sym_comment, - [303171] = 3, + [301700] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17562), 1, - anon_sym_catch, - STATE(10752), 1, + ACTIONS(2187), 1, + anon_sym_LPAREN2, + STATE(10022), 1, + sym__expr_parenthesized_immediate, + STATE(10263), 1, sym_comment, - [303181] = 3, + [301713] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10724), 1, + ACTIONS(8078), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(10753), 1, + STATE(10264), 1, sym_comment, - [303191] = 3, + [301723] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17564), 1, - anon_sym_RPAREN, - STATE(10754), 1, + ACTIONS(16880), 1, + anon_sym_RBRACE, + STATE(10265), 1, sym_comment, - [303201] = 3, + [301733] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17566), 1, - aux_sym__immediate_decimal_token1, - STATE(10755), 1, + ACTIONS(16882), 1, + anon_sym_RBRACE, + STATE(10266), 1, sym_comment, - [303211] = 3, + [301743] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1730), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(10756), 1, - sym_comment, - [303221] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(17568), 1, - anon_sym_RBRACE, - STATE(10757), 1, + ACTIONS(3977), 1, + aux_sym_unquoted_token6, + STATE(10267), 1, sym_comment, - [303231] = 3, + [301753] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17570), 1, + ACTIONS(16884), 1, anon_sym_RPAREN, - STATE(10758), 1, + STATE(10268), 1, sym_comment, - [303241] = 3, + [301763] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17572), 1, - anon_sym_RBRACE, - STATE(10759), 1, + ACTIONS(16886), 1, + aux_sym__immediate_decimal_token1, + STATE(10269), 1, sym_comment, - [303251] = 3, + [301773] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17574), 1, - aux_sym__immediate_decimal_token1, - STATE(10760), 1, + ACTIONS(16888), 1, + anon_sym_RBRACK, + STATE(10270), 1, sym_comment, - [303261] = 3, + [301783] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17576), 1, + ACTIONS(16890), 1, anon_sym_RPAREN, - STATE(10761), 1, + STATE(10271), 1, sym_comment, - [303271] = 3, + [301793] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17578), 1, + ACTIONS(16892), 1, anon_sym_RBRACE, - STATE(10762), 1, - sym_comment, - [303281] = 3, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(17580), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(10763), 1, + STATE(10272), 1, sym_comment, - [303291] = 3, + [301803] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17582), 1, - anon_sym_else, - STATE(10764), 1, + ACTIONS(16894), 1, + anon_sym_RBRACE, + STATE(10273), 1, sym_comment, - [303301] = 3, + [301813] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17584), 1, + ACTIONS(16896), 1, aux_sym__immediate_decimal_token1, - STATE(10765), 1, + STATE(10274), 1, sym_comment, - [303311] = 3, + [301823] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17586), 1, - anon_sym_EQ, - STATE(10766), 1, + ACTIONS(5111), 1, + anon_sym_in, + STATE(10275), 1, sym_comment, - [303321] = 3, + [301833] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17588), 1, - anon_sym_RBRACE, - STATE(10767), 1, + ACTIONS(16898), 1, + aux_sym__immediate_decimal_token1, + STATE(10276), 1, sym_comment, - [303331] = 3, + [301843] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17590), 1, + ACTIONS(16900), 1, anon_sym_RPAREN, - STATE(10768), 1, - sym_comment, - [303341] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7517), 1, - anon_sym_COLON, - STATE(10769), 1, + STATE(10277), 1, sym_comment, - [303351] = 3, + [301853] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17592), 1, - anon_sym_RPAREN, - STATE(10770), 1, + ACTIONS(16902), 1, + aux_sym__immediate_decimal_token1, + STATE(10278), 1, sym_comment, - [303361] = 3, + [301863] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17594), 1, - anon_sym_RBRACE, - STATE(10771), 1, + ACTIONS(16904), 1, + aux_sym__immediate_decimal_token1, + STATE(10279), 1, sym_comment, - [303371] = 3, + [301873] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17596), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(10772), 1, - sym_comment, - [303381] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(17598), 1, - anon_sym_RPAREN, - STATE(10773), 1, - sym_comment, - [303391] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(17600), 1, - aux_sym__immediate_decimal_token1, - STATE(10774), 1, + ACTIONS(1163), 1, + aux_sym_unquoted_token6, + STATE(10280), 1, sym_comment, - [303401] = 3, - ACTIONS(3), 1, + [301883] = 3, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5173), 1, - anon_sym_in, - STATE(10775), 1, + ACTIONS(9100), 1, + aux_sym_unquoted_token6, + STATE(10281), 1, sym_comment, - [303411] = 3, + [301893] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10478), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(10776), 1, + ACTIONS(8465), 1, + aux_sym_unquoted_token6, + STATE(10282), 1, sym_comment, - [303421] = 3, + [301903] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17602), 1, - anon_sym_RPAREN, - STATE(10777), 1, + ACTIONS(16906), 1, + anon_sym_RBRACK, + STATE(10283), 1, sym_comment, - [303431] = 3, + [301913] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1494), 1, + ACTIONS(9189), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(10778), 1, - sym_comment, - [303441] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(17604), 1, - anon_sym_RBRACE, - STATE(10779), 1, - sym_comment, - [303451] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(17606), 1, - sym_short_flag_identifier, - STATE(10780), 1, + STATE(10284), 1, sym_comment, - [303461] = 3, + [301923] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2437), 1, - aux_sym__unquoted_in_list_token3, - STATE(10781), 1, + ACTIONS(16908), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10285), 1, sym_comment, - [303471] = 3, + [301933] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17608), 1, + ACTIONS(16910), 1, anon_sym_RPAREN, - STATE(10782), 1, + STATE(10286), 1, sym_comment, - [303481] = 3, + [301943] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17610), 1, + ACTIONS(16912), 1, anon_sym_RBRACE, - STATE(10783), 1, - sym_comment, - [303491] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(17612), 1, - sym_long_flag_identifier, - STATE(10784), 1, + STATE(10287), 1, sym_comment, - [303501] = 3, + [301953] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17614), 1, + ACTIONS(16914), 1, anon_sym_RPAREN, - STATE(10785), 1, + STATE(10288), 1, sym_comment, - [303511] = 3, + [301963] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17616), 1, + ACTIONS(5800), 1, anon_sym_RBRACE, - STATE(10786), 1, + STATE(10289), 1, sym_comment, - [303521] = 3, - ACTIONS(3), 1, + [301973] = 3, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17618), 1, - anon_sym_RBRACE, - STATE(10787), 1, + ACTIONS(16916), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10290), 1, sym_comment, - [303531] = 3, + [301983] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17620), 1, + ACTIONS(16918), 1, anon_sym_RPAREN, - STATE(10788), 1, + STATE(10291), 1, sym_comment, - [303541] = 3, + [301993] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1574), 1, - aux_sym_unquoted_token6, - STATE(10789), 1, + ACTIONS(4757), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10292), 1, sym_comment, - [303551] = 3, - ACTIONS(3), 1, + [302003] = 3, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17622), 1, - anon_sym_RBRACK, - STATE(10790), 1, + ACTIONS(9867), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10293), 1, sym_comment, - [303561] = 3, + [302013] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17624), 1, - anon_sym_RPAREN, - STATE(10791), 1, + ACTIONS(16721), 1, + sym_short_flag_identifier, + STATE(10294), 1, sym_comment, - [303571] = 3, + [302023] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17626), 1, - anon_sym_RBRACE, - STATE(10792), 1, + ACTIONS(16920), 1, + anon_sym_RPAREN, + STATE(10295), 1, sym_comment, - [303581] = 3, + [302033] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17628), 1, + ACTIONS(16922), 1, anon_sym_RBRACE, - STATE(10793), 1, - sym_comment, - [303591] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(17630), 1, - anon_sym_RPAREN, - STATE(10794), 1, - sym_comment, - [303601] = 3, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(5133), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(10795), 1, + STATE(10296), 1, sym_comment, - [303611] = 3, + [302043] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17632), 1, + ACTIONS(16924), 1, aux_sym__immediate_decimal_token1, - STATE(10796), 1, - sym_comment, - [303621] = 3, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(9245), 1, - aux_sym_unquoted_token6, - STATE(10797), 1, + STATE(10297), 1, sym_comment, - [303631] = 3, + [302053] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17634), 1, - anon_sym_RBRACK, - STATE(10798), 1, + ACTIONS(16926), 1, + anon_sym_catch, + STATE(10298), 1, sym_comment, - [303641] = 3, + [302063] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17636), 1, + ACTIONS(16928), 1, anon_sym_RPAREN, - STATE(10799), 1, - sym_comment, - [303651] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(17638), 1, - anon_sym_RBRACE, - STATE(10800), 1, + STATE(10299), 1, sym_comment, - [303661] = 3, + [302073] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17640), 1, - anon_sym_RBRACE, - STATE(10801), 1, - sym_comment, - [303671] = 3, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(17642), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(10802), 1, + ACTIONS(16930), 1, + anon_sym_else, + STATE(10300), 1, sym_comment, - [303681] = 3, + [302083] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17644), 1, + ACTIONS(16932), 1, anon_sym_RPAREN, - STATE(10803), 1, + STATE(10301), 1, sym_comment, - [303691] = 3, + [302093] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17646), 1, - aux_sym__immediate_decimal_token1, - STATE(10804), 1, - sym_comment, - [303701] = 3, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(17648), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(10805), 1, + ACTIONS(16934), 1, + anon_sym_RBRACE, + STATE(10302), 1, sym_comment, - [303711] = 3, + [302103] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1433), 1, + ACTIONS(16936), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(10806), 1, + STATE(10303), 1, sym_comment, - [303721] = 3, + [302113] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17650), 1, + ACTIONS(16938), 1, anon_sym_RBRACE, - STATE(10807), 1, - sym_comment, - [303731] = 3, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(17652), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(10808), 1, - sym_comment, - [303741] = 3, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(17654), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(10809), 1, - sym_comment, - [303751] = 3, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(17656), 1, - aux_sym__unquoted_in_list_token3, - STATE(10810), 1, + STATE(10304), 1, sym_comment, - [303761] = 3, - ACTIONS(113), 1, + [302123] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10918), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(10811), 1, + ACTIONS(16940), 1, + anon_sym_RBRACE, + STATE(10305), 1, sym_comment, - [303771] = 3, + [302133] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17658), 1, - anon_sym_RPAREN, - STATE(10812), 1, + ACTIONS(16942), 1, + aux_sym__immediate_decimal_token1, + STATE(10306), 1, sym_comment, - [303781] = 3, - ACTIONS(113), 1, + [302143] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9905), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(10813), 1, + ACTIONS(13409), 1, + aux_sym__immediate_decimal_token1, + STATE(10307), 1, sym_comment, - [303791] = 3, - ACTIONS(113), 1, + [302153] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, - aux_sym_unquoted_token6, - STATE(10814), 1, + ACTIONS(16944), 1, + anon_sym_RBRACE, + STATE(10308), 1, sym_comment, - [303801] = 3, + [302163] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17660), 1, + ACTIONS(16946), 1, anon_sym_RBRACE, - STATE(10815), 1, + STATE(10309), 1, sym_comment, - [303811] = 3, - ACTIONS(3), 1, + [302173] = 3, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17662), 1, - anon_sym_RPAREN, - STATE(10816), 1, + ACTIONS(3721), 1, + aux_sym__unquoted_with_expr_token1, + STATE(10310), 1, sym_comment, - [303821] = 3, + [302183] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17664), 1, + ACTIONS(16948), 1, anon_sym_RBRACE, - STATE(10817), 1, + STATE(10311), 1, sym_comment, - [303831] = 3, + [302193] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17666), 1, - anon_sym_RPAREN, - STATE(10818), 1, + ACTIONS(16950), 1, + anon_sym_RBRACK, + STATE(10312), 1, sym_comment, - [303841] = 3, + [302203] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17668), 1, + ACTIONS(16952), 1, anon_sym_RPAREN, - STATE(10819), 1, + STATE(10313), 1, sym_comment, - [303851] = 3, + [302213] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17670), 1, - anon_sym_LBRACE, - STATE(10820), 1, + ACTIONS(16954), 1, + anon_sym_EQ, + STATE(10314), 1, sym_comment, - [303861] = 3, + [302223] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17672), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(10821), 1, + ACTIONS(16682), 1, + aux_sym__record_key_token1, + STATE(10315), 1, sym_comment, - [303871] = 3, + [302233] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5433), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(10822), 1, - sym_comment, - [303881] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(17674), 1, - anon_sym_RPAREN, - STATE(10823), 1, - sym_comment, - [303891] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(17676), 1, - anon_sym_RBRACE, - STATE(10824), 1, + ACTIONS(8715), 1, + aux_sym_unquoted_token6, + STATE(10316), 1, sym_comment, - [303901] = 3, + [302243] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5185), 1, - anon_sym_in, - STATE(10825), 1, + ACTIONS(16956), 1, + anon_sym_RBRACK, + STATE(10317), 1, sym_comment, - [303911] = 3, + [302253] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17678), 1, + ACTIONS(16958), 1, anon_sym_RPAREN, - STATE(10826), 1, + STATE(10318), 1, sym_comment, - [303921] = 3, + [302263] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9552), 1, + ACTIONS(7193), 1, aux_sym_unquoted_token6, - STATE(10827), 1, - sym_comment, - [303931] = 3, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(17680), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(10828), 1, - sym_comment, - [303941] = 3, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(17682), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(10829), 1, + STATE(10319), 1, sym_comment, - [303951] = 3, + [302273] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17684), 1, - anon_sym_RBRACE, - STATE(10830), 1, + ACTIONS(16960), 1, + anon_sym_RBRACK, + STATE(10320), 1, sym_comment, - [303961] = 3, + [302283] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17686), 1, + ACTIONS(16962), 1, anon_sym_RPAREN, - STATE(10831), 1, + STATE(10321), 1, sym_comment, - [303971] = 3, + [302293] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6285), 1, + ACTIONS(16964), 1, anon_sym_RBRACE, - STATE(10832), 1, - sym_comment, - [303981] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(17688), 1, - anon_sym_EQ, - STATE(10833), 1, + STATE(10322), 1, sym_comment, - [303991] = 3, + [302303] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6287), 1, + ACTIONS(16966), 1, anon_sym_RBRACE, - STATE(10834), 1, + STATE(10323), 1, sym_comment, - [304001] = 3, + [302313] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17690), 1, - anon_sym_RBRACE, - STATE(10835), 1, + ACTIONS(16717), 1, + sym_short_flag_identifier, + STATE(10324), 1, sym_comment, - [304011] = 3, + [302323] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17692), 1, - anon_sym_RPAREN, - STATE(10836), 1, + ACTIONS(16968), 1, + aux_sym__immediate_decimal_token1, + STATE(10325), 1, sym_comment, - [304021] = 3, + [302333] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17694), 1, + ACTIONS(16970), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(10837), 1, + STATE(10326), 1, sym_comment, - [304031] = 3, + [302343] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16914), 1, - anon_sym_EQ_GT, - STATE(10838), 1, + ACTIONS(16972), 1, + anon_sym_RPAREN, + STATE(10327), 1, sym_comment, - [304041] = 3, - ACTIONS(113), 1, + [302353] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17696), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(10839), 1, + ACTIONS(16974), 1, + anon_sym_RBRACE, + STATE(10328), 1, sym_comment, - [304051] = 3, + [302363] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17698), 1, + ACTIONS(16976), 1, anon_sym_RBRACE, - STATE(10840), 1, + STATE(10329), 1, sym_comment, - [304061] = 3, - ACTIONS(3), 1, + [302373] = 3, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17700), 1, - anon_sym_LBRACE, - STATE(10841), 1, + ACTIONS(16357), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10330), 1, sym_comment, - [304071] = 3, + [302383] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17702), 1, + ACTIONS(16978), 1, anon_sym_RPAREN, - STATE(10842), 1, + STATE(10331), 1, sym_comment, - [304081] = 3, + [302393] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1041), 1, - aux_sym_unquoted_token6, - STATE(10843), 1, + ACTIONS(10499), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10332), 1, sym_comment, - [304091] = 3, - ACTIONS(3), 1, + [302403] = 3, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17704), 1, - anon_sym_RBRACK, - STATE(10844), 1, + ACTIONS(16980), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10333), 1, sym_comment, - [304101] = 3, - ACTIONS(3), 1, + [302413] = 3, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17706), 1, - anon_sym_RPAREN, - STATE(10845), 1, + ACTIONS(3721), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(10334), 1, sym_comment, - [304111] = 3, + [302423] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17708), 1, - anon_sym_SEMI, - STATE(10846), 1, + ACTIONS(16982), 1, + anon_sym_RBRACE, + STATE(10335), 1, sym_comment, - [304121] = 3, + [302433] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17710), 1, + ACTIONS(16984), 1, anon_sym_RPAREN, - STATE(10847), 1, - sym_comment, - [304131] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(17712), 1, - anon_sym_RBRACE, - STATE(10848), 1, + STATE(10336), 1, sym_comment, - [304141] = 3, + [302443] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17714), 1, + ACTIONS(16986), 1, anon_sym_RBRACE, - STATE(10849), 1, + STATE(10337), 1, sym_comment, - [304151] = 3, + [302453] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(6211), 1, + ACTIONS(16988), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(10850), 1, - sym_comment, - [304161] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(17716), 1, - anon_sym_RBRACE, - STATE(10851), 1, + STATE(10338), 1, sym_comment, - [304171] = 3, + [302463] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16970), 1, - aux_sym__immediate_decimal_token1, - STATE(10852), 1, - sym_comment, - [304181] = 3, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(7908), 1, - aux_sym_unquoted_token6, - STATE(10853), 1, + ACTIONS(16990), 1, + sym_param_short_flag_identifier, + STATE(10339), 1, sym_comment, - [304191] = 3, + [302473] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17718), 1, - anon_sym_RBRACK, - STATE(10854), 1, + ACTIONS(16992), 1, + anon_sym_RPAREN, + STATE(10340), 1, sym_comment, - [304201] = 3, + [302483] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17720), 1, + ACTIONS(16994), 1, anon_sym_RPAREN, - STATE(10855), 1, + STATE(10341), 1, sym_comment, - [304211] = 3, + [302493] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17722), 1, - anon_sym_RBRACE, - STATE(10856), 1, + ACTIONS(5243), 1, + anon_sym_in, + STATE(10342), 1, sym_comment, - [304221] = 3, + [302503] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17724), 1, - anon_sym_RBRACE, - STATE(10857), 1, + ACTIONS(14479), 1, + aux_sym__immediate_decimal_token1, + STATE(10343), 1, sym_comment, - [304231] = 3, + [302513] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17726), 1, - anon_sym_DASH_GT, - STATE(10858), 1, + ACTIONS(1074), 1, + anon_sym_in, + STATE(10344), 1, sym_comment, - [304241] = 3, - ACTIONS(3), 1, + [302523] = 3, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(13265), 1, - aux_sym__immediate_decimal_token1, - STATE(10859), 1, + ACTIONS(7539), 1, + aux_sym_unquoted_token6, + STATE(10345), 1, sym_comment, - [304251] = 3, + [302533] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13815), 1, - aux_sym__immediate_decimal_token1, - STATE(10860), 1, + ACTIONS(16996), 1, + anon_sym_RBRACK, + STATE(10346), 1, sym_comment, - [304261] = 3, + [302543] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1284), 1, - aux_sym_unquoted_token6, - STATE(10861), 1, + ACTIONS(2402), 1, + aux_sym__unquoted_in_list_token3, + STATE(10347), 1, sym_comment, - [304271] = 3, + [302553] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10520), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(10862), 1, + ACTIONS(3640), 1, + aux_sym_unquoted_token6, + STATE(10348), 1, sym_comment, - [304281] = 3, + [302563] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17728), 1, - anon_sym_RBRACE, - STATE(10863), 1, + ACTIONS(16998), 1, + anon_sym_RBRACK, + STATE(10349), 1, sym_comment, - [304291] = 3, + [302573] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17730), 1, + ACTIONS(17000), 1, anon_sym_RPAREN, - STATE(10864), 1, + STATE(10350), 1, sym_comment, - [304301] = 3, + [302583] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17732), 1, + ACTIONS(17002), 1, anon_sym_RBRACE, - STATE(10865), 1, - sym_comment, - [304311] = 3, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(5047), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(10866), 1, - sym_comment, - [304321] = 3, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(4999), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(10867), 1, - sym_comment, - [304331] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(17734), 1, - anon_sym_RPAREN, - STATE(10868), 1, + STATE(10351), 1, sym_comment, - [304341] = 3, + [302593] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17736), 1, + ACTIONS(17004), 1, anon_sym_RBRACE, - STATE(10869), 1, + STATE(10352), 1, sym_comment, - [304351] = 3, + [302603] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17738), 1, + ACTIONS(17006), 1, anon_sym_RPAREN, - STATE(10870), 1, + STATE(10353), 1, sym_comment, - [304361] = 3, - ACTIONS(113), 1, + [302613] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7639), 1, - aux_sym_unquoted_token6, - STATE(10871), 1, + ACTIONS(17008), 1, + aux_sym__immediate_decimal_token1, + STATE(10354), 1, sym_comment, - [304371] = 3, - ACTIONS(113), 1, + [302623] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17740), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(10872), 1, + ACTIONS(17010), 1, + anon_sym_RBRACE, + STATE(10355), 1, sym_comment, - [304381] = 3, + [302633] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17742), 1, - anon_sym_EQ, - STATE(10873), 1, + ACTIONS(9710), 1, + aux_sym__immediate_decimal_token1, + STATE(10356), 1, sym_comment, - [304391] = 3, + [302643] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17744), 1, + ACTIONS(17012), 1, anon_sym_RBRACE, - STATE(10874), 1, + STATE(10357), 1, sym_comment, - [304401] = 3, + [302653] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17746), 1, - anon_sym_RPAREN, - STATE(10875), 1, + ACTIONS(17014), 1, + anon_sym_RBRACE, + STATE(10358), 1, sym_comment, - [304411] = 3, + [302663] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17748), 1, - anon_sym_RBRACK, - STATE(10876), 1, + ACTIONS(17016), 1, + anon_sym_GT, + STATE(10359), 1, sym_comment, - [304421] = 3, + [302673] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17750), 1, - anon_sym_in, - STATE(10877), 1, + ACTIONS(17018), 1, + aux_sym__immediate_decimal_token1, + STATE(10360), 1, sym_comment, - [304431] = 3, + [302683] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17752), 1, + ACTIONS(10400), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(10878), 1, - sym_comment, - [304441] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(17754), 1, - anon_sym_RPAREN, - STATE(10879), 1, + STATE(10361), 1, sym_comment, - [304451] = 3, + [302693] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7609), 1, - anon_sym_RBRACK, - STATE(10880), 1, + ACTIONS(16735), 1, + sym_short_flag_identifier, + STATE(10362), 1, sym_comment, - [304461] = 3, + [302703] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8807), 1, - anon_sym_PIPE, - STATE(10881), 1, + ACTIONS(17020), 1, + anon_sym_RBRACE, + STATE(10363), 1, sym_comment, - [304471] = 3, + [302713] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17756), 1, - ts_builtin_sym_end, - STATE(10882), 1, + ACTIONS(17022), 1, + anon_sym_RPAREN, + STATE(10364), 1, sym_comment, - [304481] = 3, - ACTIONS(3), 1, + [302723] = 3, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17758), 1, - anon_sym_RBRACE, - STATE(10883), 1, + ACTIONS(9379), 1, + aux_sym_unquoted_token6, + STATE(10365), 1, sym_comment, - [304491] = 3, + [302733] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17053), 1, + ACTIONS(17024), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(10884), 1, + STATE(10366), 1, sym_comment, - [304501] = 3, + [302743] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4018), 1, - anon_sym_in, - STATE(10885), 1, + ACTIONS(17026), 1, + anon_sym_RBRACK, + STATE(10367), 1, sym_comment, - [304511] = 3, + [302753] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17760), 1, - aux_sym__immediate_decimal_token1, - STATE(10886), 1, + ACTIONS(17028), 1, + anon_sym_RPAREN, + STATE(10368), 1, sym_comment, - [304521] = 3, - ACTIONS(113), 1, + [302763] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17762), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(10887), 1, + ACTIONS(17030), 1, + anon_sym_RBRACE, + STATE(10369), 1, sym_comment, - [304531] = 3, + [302773] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17764), 1, + ACTIONS(17032), 1, anon_sym_RBRACE, - STATE(10888), 1, + STATE(10370), 1, sym_comment, - [304541] = 3, + [302783] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17260), 1, - anon_sym_make, - STATE(10889), 1, + ACTIONS(17034), 1, + sym_long_flag_identifier, + STATE(10371), 1, sym_comment, - [304551] = 3, + [302793] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17766), 1, - anon_sym_RBRACE, - STATE(10890), 1, + ACTIONS(17036), 1, + aux_sym__immediate_decimal_token1, + STATE(10372), 1, sym_comment, - [304561] = 3, + [302803] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17768), 1, + ACTIONS(17038), 1, anon_sym_RBRACE, - STATE(10891), 1, + STATE(10373), 1, sym_comment, - [304571] = 3, - ACTIONS(3), 1, + [302813] = 3, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10806), 1, - anon_sym_LBRACK2, - STATE(10892), 1, + ACTIONS(10046), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10374), 1, sym_comment, - [304581] = 3, - ACTIONS(3), 1, + [302823] = 3, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17770), 1, - anon_sym_RPAREN, - STATE(10893), 1, + ACTIONS(10120), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10375), 1, sym_comment, - [304591] = 3, + [302833] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(948), 1, + ACTIONS(6397), 1, aux_sym_unquoted_token6, - STATE(10894), 1, + STATE(10376), 1, sym_comment, - [304601] = 3, + [302843] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17772), 1, + ACTIONS(17040), 1, anon_sym_RBRACK, - STATE(10895), 1, + STATE(10377), 1, sym_comment, - [304611] = 3, + [302853] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17774), 1, + ACTIONS(17042), 1, anon_sym_RPAREN, - STATE(10896), 1, + STATE(10378), 1, sym_comment, - [304621] = 3, + [302863] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3588), 1, - aux_sym_unquoted_token5, - STATE(10897), 1, + ACTIONS(17044), 1, + anon_sym_RBRACE, + STATE(10379), 1, sym_comment, - [304631] = 3, + [302873] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17776), 1, + ACTIONS(17046), 1, anon_sym_RBRACE, - STATE(10898), 1, + STATE(10380), 1, sym_comment, - [304641] = 3, + [302883] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17778), 1, + ACTIONS(17048), 1, + anon_sym_COLON, + STATE(10381), 1, + sym_comment, + [302893] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(17050), 1, aux_sym__immediate_decimal_token1, - STATE(10899), 1, + STATE(10382), 1, sym_comment, - [304651] = 3, + [302903] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17780), 1, + ACTIONS(17052), 1, anon_sym_RBRACE, - STATE(10900), 1, + STATE(10383), 1, sym_comment, - [304661] = 3, + [302913] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5177), 1, - anon_sym_in, - STATE(10901), 1, + ACTIONS(17054), 1, + anon_sym_EQ, + STATE(10384), 1, sym_comment, - [304671] = 3, + [302923] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17782), 1, + ACTIONS(17056), 1, anon_sym_RPAREN, - STATE(10902), 1, + STATE(10385), 1, + sym_comment, + [302933] = 3, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(3877), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10386), 1, sym_comment, - [304681] = 3, + [302943] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17784), 1, - anon_sym_GT, - STATE(10903), 1, + ACTIONS(17058), 1, + anon_sym_RPAREN, + STATE(10387), 1, + sym_comment, + [302953] = 3, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(8915), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10388), 1, + sym_comment, + [302963] = 3, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(7919), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10389), 1, sym_comment, - [304691] = 3, + [302973] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17786), 1, - anon_sym_LBRACE, - STATE(10904), 1, + ACTIONS(17060), 1, + anon_sym_in, + STATE(10390), 1, sym_comment, - [304701] = 3, + [302983] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17788), 1, - anon_sym_LBRACE, - STATE(10905), 1, + ACTIONS(16741), 1, + anon_sym_make, + STATE(10391), 1, sym_comment, - [304711] = 3, + [302993] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17790), 1, - sym_param_short_flag_identifier, - STATE(10906), 1, + ACTIONS(17062), 1, + anon_sym_RPAREN, + STATE(10392), 1, sym_comment, - [304721] = 3, + [303003] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17792), 1, - aux_sym__immediate_decimal_token1, - STATE(10907), 1, + ACTIONS(17064), 1, + anon_sym_RBRACE, + STATE(10393), 1, sym_comment, - [304731] = 3, + [303013] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17794), 1, - aux_sym__immediate_decimal_token1, - STATE(10908), 1, + ACTIONS(10384), 1, + anon_sym_LBRACK2, + STATE(10394), 1, sym_comment, - [304741] = 3, + [303023] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5181), 1, - anon_sym_in, - STATE(10909), 1, + ACTIONS(17066), 1, + anon_sym_RPAREN, + STATE(10395), 1, + sym_comment, + [303033] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(17068), 1, + anon_sym_RBRACE, + STATE(10396), 1, sym_comment, - [304751] = 3, + [303043] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3505), 1, + ACTIONS(17070), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(10910), 1, + STATE(10397), 1, sym_comment, - [304761] = 3, + [303053] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17796), 1, + ACTIONS(17072), 1, anon_sym_RPAREN, - STATE(10911), 1, + STATE(10398), 1, sym_comment, - [304771] = 3, + [303063] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4293), 1, - anon_sym_in, - STATE(10912), 1, + ACTIONS(3308), 1, + aux_sym_unquoted_token5, + STATE(10399), 1, sym_comment, - [304781] = 3, + [303073] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17798), 1, + ACTIONS(17074), 1, anon_sym_RBRACE, - STATE(10913), 1, + STATE(10400), 1, sym_comment, - [304791] = 3, + [303083] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1083), 1, - aux_sym_unquoted_token6, - STATE(10914), 1, + ACTIONS(17076), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10401), 1, sym_comment, - [304801] = 3, + [303093] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9903), 1, + ACTIONS(8911), 1, aux_sym_unquoted_token6, - STATE(10915), 1, + STATE(10402), 1, sym_comment, - [304811] = 3, + [303103] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17800), 1, - anon_sym_RBRACK, - STATE(10916), 1, + ACTIONS(17078), 1, + anon_sym_RPAREN, + STATE(10403), 1, sym_comment, - [304821] = 3, - ACTIONS(113), 1, + [303113] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7036), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(10917), 1, + ACTIONS(17080), 1, + anon_sym_RPAREN, + STATE(10404), 1, sym_comment, - [304831] = 3, + [303123] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17802), 1, - anon_sym_COLON, - STATE(10918), 1, + ACTIONS(17082), 1, + anon_sym_LBRACE, + STATE(10405), 1, sym_comment, - [304841] = 3, + [303133] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17804), 1, - anon_sym_RPAREN, - STATE(10919), 1, + ACTIONS(17084), 1, + anon_sym_LBRACE, + STATE(10406), 1, sym_comment, - [304851] = 3, + [303143] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17806), 1, - anon_sym_RBRACE, - STATE(10920), 1, + ACTIONS(17086), 1, + anon_sym_RBRACK, + STATE(10407), 1, sym_comment, - [304861] = 3, + [303153] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17808), 1, + ACTIONS(17088), 1, anon_sym_RBRACE, - STATE(10921), 1, + STATE(10408), 1, sym_comment, - [304871] = 3, + [303163] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17810), 1, - anon_sym_RBRACE, - STATE(10922), 1, + ACTIONS(17090), 1, + anon_sym_RPAREN, + STATE(10409), 1, sym_comment, - [304881] = 3, + [303173] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17812), 1, + ACTIONS(17092), 1, anon_sym_RBRACE, - STATE(10923), 1, + STATE(10410), 1, sym_comment, - [304891] = 3, + [303183] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9093), 1, + ACTIONS(7145), 1, aux_sym_unquoted_token6, - STATE(10924), 1, + STATE(10411), 1, sym_comment, - [304901] = 3, + [303193] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17814), 1, - aux_sym__immediate_decimal_token1, - STATE(10925), 1, + ACTIONS(17094), 1, + anon_sym_RBRACK, + STATE(10412), 1, sym_comment, - [304911] = 3, + [303203] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17816), 1, + ACTIONS(17096), 1, anon_sym_RPAREN, - STATE(10926), 1, + STATE(10413), 1, sym_comment, - [304921] = 3, + [303213] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17818), 1, - anon_sym_RBRACK, - STATE(10927), 1, + ACTIONS(17098), 1, + anon_sym_RBRACE, + STATE(10414), 1, sym_comment, - [304931] = 3, + [303223] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17820), 1, - anon_sym_RBRACK, - STATE(10928), 1, + ACTIONS(17100), 1, + anon_sym_RBRACE, + STATE(10415), 1, sym_comment, - [304941] = 3, + [303233] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17822), 1, - anon_sym_RPAREN, - STATE(10929), 1, + ACTIONS(17102), 1, + anon_sym_EQ, + STATE(10416), 1, sym_comment, - [304951] = 3, + [303243] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17824), 1, - anon_sym_RBRACK, - STATE(10930), 1, - sym_comment, - [304961] = 3, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(4000), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(10931), 1, + ACTIONS(17104), 1, + anon_sym_RBRACE, + STATE(10417), 1, sym_comment, - [304971] = 3, + [303253] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17288), 1, - sym_short_flag_identifier, - STATE(10932), 1, - sym_comment, - [304981] = 3, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(17826), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(10933), 1, - sym_comment, - [304991] = 3, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(4824), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(10934), 1, + ACTIONS(16228), 1, + aux_sym__immediate_decimal_token1, + STATE(10418), 1, sym_comment, - [305001] = 3, + [303263] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17828), 1, - aux_sym__immediate_decimal_token1, - STATE(10935), 1, + ACTIONS(17106), 1, + anon_sym_COLON, + STATE(10419), 1, sym_comment, - [305011] = 3, + [303273] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17830), 1, - anon_sym_RBRACE, - STATE(10936), 1, + ACTIONS(17108), 1, + sym_short_flag_identifier, + STATE(10420), 1, sym_comment, - [305021] = 3, + [303283] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17832), 1, + ACTIONS(17110), 1, anon_sym_RPAREN, - STATE(10937), 1, + STATE(10421), 1, sym_comment, - [305031] = 3, + [303293] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17834), 1, - anon_sym_RBRACE, - STATE(10938), 1, + ACTIONS(17112), 1, + anon_sym_RPAREN, + STATE(10422), 1, sym_comment, - [305041] = 3, + [303303] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17836), 1, + ACTIONS(17114), 1, anon_sym_RPAREN, - STATE(10939), 1, + STATE(10423), 1, sym_comment, - [305051] = 3, + [303313] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9323), 1, - aux_sym_unquoted_token6, - STATE(10940), 1, - sym_comment, - [305061] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(17838), 1, - anon_sym_RBRACK, - STATE(10941), 1, + ACTIONS(17116), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10424), 1, sym_comment, - [305071] = 3, - ACTIONS(3), 1, + [303323] = 3, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17840), 1, - anon_sym_EQ, - STATE(10942), 1, + ACTIONS(17118), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10425), 1, sym_comment, - [305081] = 3, + [303333] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17842), 1, - aux_sym_comment_token1, - STATE(10943), 1, + ACTIONS(1530), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10426), 1, sym_comment, - [305091] = 3, + [303343] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17844), 1, + ACTIONS(17120), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(10944), 1, + STATE(10427), 1, sym_comment, - [305101] = 3, + [303353] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17846), 1, - anon_sym_RPAREN, - STATE(10945), 1, + ACTIONS(17122), 1, + anon_sym_RBRACE, + STATE(10428), 1, sym_comment, - [305111] = 3, + [303363] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17467), 1, - sym_short_flag_identifier, - STATE(10946), 1, + ACTIONS(17124), 1, + anon_sym_RPAREN, + STATE(10429), 1, sym_comment, - [305121] = 3, - ACTIONS(3), 1, + [303373] = 3, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17848), 1, - anon_sym_RBRACE, - STATE(10947), 1, + ACTIONS(14481), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10430), 1, sym_comment, - [305131] = 3, - ACTIONS(3), 1, + [303383] = 3, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17850), 1, - anon_sym_RBRACE, - STATE(10948), 1, + ACTIONS(17126), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10431), 1, sym_comment, - [305141] = 3, + [303393] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17852), 1, - anon_sym_RPAREN, - STATE(10949), 1, + ACTIONS(17128), 1, + anon_sym_GT, + STATE(10432), 1, sym_comment, - [305151] = 3, + [303403] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15594), 1, - aux_sym__immediate_decimal_token1, - STATE(10950), 1, + ACTIONS(3655), 1, + anon_sym_COLON, + STATE(10433), 1, sym_comment, - [305161] = 3, - ACTIONS(3), 1, + [303413] = 3, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17854), 1, - aux_sym__immediate_decimal_token1, - STATE(10951), 1, + ACTIONS(17130), 1, + aux_sym__unquoted_with_expr_token1, + STATE(10434), 1, sym_comment, - [305171] = 3, + [303423] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17856), 1, + ACTIONS(17132), 1, anon_sym_RBRACE, - STATE(10952), 1, + STATE(10435), 1, sym_comment, - [305181] = 3, - ACTIONS(113), 1, + [303433] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11004), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(10953), 1, + ACTIONS(17134), 1, + anon_sym_RBRACE, + STATE(10436), 1, sym_comment, - [305191] = 3, + [303443] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17858), 1, - anon_sym_RBRACK, - STATE(10954), 1, + ACTIONS(5247), 1, + anon_sym_in, + STATE(10437), 1, sym_comment, - [305201] = 3, + [303453] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17860), 1, - anon_sym_RBRACE, - STATE(10955), 1, + ACTIONS(17136), 1, + anon_sym_make, + STATE(10438), 1, sym_comment, - [305211] = 3, + [303463] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3039), 1, + ACTIONS(3435), 1, aux_sym_unquoted_token6, - STATE(10956), 1, + STATE(10439), 1, sym_comment, - [305221] = 3, + [303473] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17862), 1, - anon_sym_RBRACK, - STATE(10957), 1, + ACTIONS(12515), 1, + aux_sym__immediate_decimal_token1, + STATE(10440), 1, sym_comment, - [305231] = 3, + [303483] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17864), 1, + ACTIONS(17138), 1, anon_sym_RPAREN, - STATE(10958), 1, + STATE(10441), 1, sym_comment, - [305241] = 3, + [303493] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10708), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(10959), 1, + ACTIONS(1372), 1, + aux_sym_unquoted_token6, + STATE(10442), 1, sym_comment, - [305251] = 3, + [303503] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17866), 1, - aux_sym__immediate_decimal_token1, - STATE(10960), 1, + ACTIONS(17140), 1, + anon_sym_RBRACK, + STATE(10443), 1, sym_comment, - [305261] = 3, + [303513] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17868), 1, + ACTIONS(17142), 1, anon_sym_RPAREN, - STATE(10961), 1, + STATE(10444), 1, sym_comment, - [305271] = 3, + [303523] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17870), 1, + ACTIONS(17144), 1, anon_sym_RBRACE, - STATE(10962), 1, - sym_comment, - [305281] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(17872), 1, - anon_sym_SEMI, - STATE(10963), 1, + STATE(10445), 1, sym_comment, - [305291] = 3, + [303533] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17874), 1, + ACTIONS(17146), 1, anon_sym_RBRACE, - STATE(10964), 1, + STATE(10446), 1, sym_comment, - [305301] = 3, + [303543] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17876), 1, - anon_sym_RBRACE, - STATE(10965), 1, + ACTIONS(17148), 1, + anon_sym_EQ, + STATE(10447), 1, sym_comment, - [305311] = 3, + [303553] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17878), 1, - anon_sym_RPAREN, - STATE(10966), 1, + ACTIONS(17150), 1, + aux_sym__immediate_decimal_token1, + STATE(10448), 1, sym_comment, - [305321] = 3, - ACTIONS(113), 1, + [303563] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9822), 1, - aux_sym_unquoted_token6, - STATE(10967), 1, + ACTIONS(13160), 1, + aux_sym__immediate_decimal_token1, + STATE(10449), 1, sym_comment, - [305331] = 3, + [303573] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17880), 1, - aux_sym__immediate_decimal_token1, - STATE(10968), 1, + ACTIONS(17152), 1, + anon_sym_SEMI, + STATE(10450), 1, sym_comment, - [305341] = 3, - ACTIONS(113), 1, + [303583] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8572), 1, - aux_sym_unquoted_token6, - STATE(10969), 1, + ACTIONS(17154), 1, + sym_short_flag_identifier, + STATE(10451), 1, sym_comment, - [305351] = 3, + [303593] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17882), 1, - anon_sym_RBRACK, - STATE(10970), 1, + ACTIONS(17156), 1, + anon_sym_RBRACE, + STATE(10452), 1, sym_comment, - [305361] = 3, + [303603] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17884), 1, + ACTIONS(17158), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(10971), 1, + STATE(10453), 1, sym_comment, - [305371] = 3, - ACTIONS(3), 1, + [303613] = 3, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17886), 1, - anon_sym_RPAREN, - STATE(10972), 1, + ACTIONS(11616), 1, + aux_sym_unquoted_token6, + STATE(10454), 1, sym_comment, - [305381] = 3, + [303623] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17888), 1, - anon_sym_RPAREN, - STATE(10973), 1, + ACTIONS(5215), 1, + anon_sym_in, + STATE(10455), 1, sym_comment, - [305391] = 3, + [303633] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17890), 1, - anon_sym_RBRACE, - STATE(10974), 1, + ACTIONS(17160), 1, + anon_sym_RBRACK, + STATE(10456), 1, sym_comment, - [305401] = 3, + [303643] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13663), 1, - aux_sym__immediate_decimal_token1, - STATE(10975), 1, + ACTIONS(17162), 1, + anon_sym_LPAREN2, + STATE(10457), 1, sym_comment, - [305411] = 3, + [303653] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8789), 1, + ACTIONS(4891), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(10976), 1, + STATE(10458), 1, sym_comment, - [305421] = 3, + [303663] = 3, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(8183), 1, + aux_sym_unquoted_token6, + STATE(10459), 1, + sym_comment, + [303673] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17892), 1, + ACTIONS(17164), 1, anon_sym_RBRACE, - STATE(10977), 1, + STATE(10460), 1, sym_comment, - [305431] = 3, + [303683] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17894), 1, + ACTIONS(17166), 1, anon_sym_RPAREN, - STATE(10978), 1, + STATE(10461), 1, sym_comment, - [305441] = 3, + [303693] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17896), 1, - aux_sym__unquoted_in_list_token3, - STATE(10979), 1, + ACTIONS(1133), 1, + aux_sym_unquoted_token6, + STATE(10462), 1, sym_comment, - [305451] = 3, - ACTIONS(113), 1, + [303703] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17898), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(10980), 1, + ACTIONS(17168), 1, + anon_sym_RBRACK, + STATE(10463), 1, sym_comment, - [305461] = 3, + [303713] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17900), 1, - anon_sym_RBRACE, - STATE(10981), 1, + ACTIONS(17170), 1, + anon_sym_SEMI, + STATE(10464), 1, sym_comment, - [305471] = 3, + [303723] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10262), 1, + ACTIONS(17172), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(10982), 1, + STATE(10465), 1, sym_comment, - [305481] = 3, + [303733] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5209), 1, - anon_sym_in, - STATE(10983), 1, + ACTIONS(17174), 1, + anon_sym_RPAREN, + STATE(10466), 1, sym_comment, - [305491] = 3, + [303743] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5213), 1, - anon_sym_in, - STATE(10984), 1, - sym_comment, - [305501] = 3, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(17902), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(10985), 1, + ACTIONS(17176), 1, + anon_sym_RBRACE, + STATE(10467), 1, sym_comment, - [305511] = 3, + [303753] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17904), 1, - aux_sym__immediate_decimal_token1, - STATE(10986), 1, + ACTIONS(17178), 1, + anon_sym_RBRACE, + STATE(10468), 1, sym_comment, - [305521] = 3, + [303763] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17906), 1, + ACTIONS(17180), 1, anon_sym_RPAREN, - STATE(10987), 1, + STATE(10469), 1, sym_comment, - [305531] = 3, + [303773] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17908), 1, - aux_sym__immediate_decimal_token1, - STATE(10988), 1, + ACTIONS(17182), 1, + anon_sym_SEMI, + STATE(10470), 1, sym_comment, - [305541] = 3, + [303783] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17910), 1, - anon_sym_RBRACE, - STATE(10989), 1, + ACTIONS(14053), 1, + aux_sym__immediate_decimal_token1, + STATE(10471), 1, sym_comment, - [305551] = 3, + [303793] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17912), 1, - anon_sym_RPAREN, - STATE(10990), 1, + ACTIONS(16795), 1, + sym_short_flag_identifier, + STATE(10472), 1, sym_comment, - [305561] = 3, + [303803] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17914), 1, + ACTIONS(17184), 1, anon_sym_RBRACE, - STATE(10991), 1, + STATE(10473), 1, sym_comment, - [305571] = 3, + [303813] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17916), 1, - anon_sym_RBRACE, - STATE(10992), 1, - sym_comment, - [305581] = 3, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(16974), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(10993), 1, + ACTIONS(17186), 1, + anon_sym_EQ, + STATE(10474), 1, sym_comment, - [305591] = 3, + [303823] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8769), 1, + ACTIONS(1016), 1, aux_sym_unquoted_token6, - STATE(10994), 1, + STATE(10475), 1, sym_comment, - [305601] = 3, + [303833] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17918), 1, + ACTIONS(17188), 1, anon_sym_RBRACK, - STATE(10995), 1, + STATE(10476), 1, sym_comment, - [305611] = 3, + [303843] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17920), 1, + ACTIONS(17190), 1, anon_sym_RPAREN, - STATE(10996), 1, + STATE(10477), 1, + sym_comment, + [303853] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(17192), 1, + anon_sym_LBRACE, + STATE(10478), 1, sym_comment, - [305621] = 3, + [303863] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17922), 1, + ACTIONS(17194), 1, anon_sym_RBRACE, - STATE(10997), 1, + STATE(10479), 1, sym_comment, - [305631] = 3, + [303873] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17924), 1, + ACTIONS(17196), 1, anon_sym_RBRACE, - STATE(10998), 1, + STATE(10480), 1, sym_comment, - [305641] = 3, - ACTIONS(113), 1, + [303883] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2579), 1, - aux_sym_unquoted_token6, - STATE(10999), 1, + ACTIONS(17198), 1, + anon_sym_RBRACE, + STATE(10481), 1, sym_comment, - [305651] = 3, + [303893] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17926), 1, + ACTIONS(17200), 1, aux_sym__immediate_decimal_token1, - STATE(11000), 1, + STATE(10482), 1, sym_comment, - [305661] = 3, + [303903] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17928), 1, - anon_sym_RBRACK, - STATE(11001), 1, + ACTIONS(5219), 1, + anon_sym_in, + STATE(10483), 1, sym_comment, - [305671] = 3, + [303913] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17930), 1, - anon_sym_RPAREN, - STATE(11002), 1, + ACTIONS(7135), 1, + anon_sym_RBRACK, + STATE(10484), 1, sym_comment, - [305681] = 3, + [303923] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17932), 1, - anon_sym_RBRACE, - STATE(11003), 1, + ACTIONS(17202), 1, + anon_sym_RPAREN, + STATE(10485), 1, sym_comment, - [305691] = 3, + [303933] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17934), 1, + ACTIONS(9349), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(11004), 1, + STATE(10486), 1, sym_comment, - [305701] = 3, + [303943] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17936), 1, + ACTIONS(10392), 1, aux_sym__immediate_decimal_token1, - STATE(11005), 1, + STATE(10487), 1, sym_comment, - [305711] = 3, + [303953] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17938), 1, - aux_sym__immediate_decimal_token1, - STATE(11006), 1, + ACTIONS(17204), 1, + anon_sym_in, + STATE(10488), 1, sym_comment, - [305721] = 3, + [303963] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17940), 1, - anon_sym_RBRACK, - STATE(11007), 1, + ACTIONS(17206), 1, + anon_sym_RPAREN, + STATE(10489), 1, sym_comment, - [305731] = 3, + [303973] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9707), 1, + ACTIONS(4727), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(11008), 1, + STATE(10490), 1, sym_comment, - [305741] = 3, - ACTIONS(113), 1, + [303983] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17942), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(11009), 1, + ACTIONS(17208), 1, + aux_sym__immediate_decimal_token1, + STATE(10491), 1, sym_comment, - [305751] = 3, - ACTIONS(113), 1, + [303993] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9352), 1, - aux_sym_unquoted_token6, - STATE(11010), 1, + ACTIONS(17210), 1, + anon_sym_RBRACE, + STATE(10492), 1, sym_comment, - [305761] = 3, + [304003] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17944), 1, - anon_sym_RBRACK, - STATE(11011), 1, + ACTIONS(17212), 1, + anon_sym_RBRACE, + STATE(10493), 1, + sym_comment, + [304013] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(17214), 1, + anon_sym_COLON, + STATE(10494), 1, sym_comment, - [305771] = 3, + [304023] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17946), 1, + ACTIONS(17216), 1, anon_sym_RPAREN, - STATE(11012), 1, + STATE(10495), 1, sym_comment, - [305781] = 3, + [304033] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17948), 1, - sym_short_flag_identifier, - STATE(11013), 1, + ACTIONS(17218), 1, + anon_sym_RPAREN, + STATE(10496), 1, + sym_comment, + [304043] = 3, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(17220), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10497), 1, sym_comment, - [305791] = 3, + [304053] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17950), 1, - anon_sym_RBRACE, - STATE(11014), 1, + ACTIONS(17222), 1, + aux_sym__immediate_decimal_token1, + STATE(10498), 1, sym_comment, - [305801] = 3, + [304063] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17952), 1, - anon_sym_RBRACE, - STATE(11015), 1, + ACTIONS(17224), 1, + sym_identifier, + STATE(10499), 1, + sym_comment, + [304073] = 3, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(8838), 1, + aux_sym_unquoted_token6, + STATE(10500), 1, sym_comment, - [305811] = 3, + [304083] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17954), 1, - anon_sym_RPAREN, - STATE(11016), 1, + ACTIONS(17226), 1, + anon_sym_RBRACK, + STATE(10501), 1, sym_comment, - [305821] = 3, + [304093] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17956), 1, - aux_sym__immediate_decimal_token1, - STATE(11017), 1, + ACTIONS(17228), 1, + anon_sym_RPAREN, + STATE(10502), 1, + sym_comment, + [304103] = 3, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(17230), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10503), 1, sym_comment, - [305831] = 3, + [304113] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17958), 1, - anon_sym_RBRACK, - STATE(11018), 1, + ACTIONS(17232), 1, + anon_sym_EQ, + STATE(10504), 1, sym_comment, - [305841] = 3, + [304123] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17960), 1, + ACTIONS(5739), 1, anon_sym_RBRACE, - STATE(11019), 1, + STATE(10505), 1, sym_comment, - [305851] = 3, + [304133] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17962), 1, - anon_sym_RPAREN, - STATE(11020), 1, + ACTIONS(17234), 1, + sym_short_flag_identifier, + STATE(10506), 1, sym_comment, - [305861] = 3, + [304143] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11000), 1, - aux_sym__immediate_decimal_token1, - STATE(11021), 1, + ACTIONS(17236), 1, + anon_sym_LBRACE, + STATE(10507), 1, sym_comment, - [305871] = 3, - ACTIONS(113), 1, + [304153] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17964), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(11022), 1, + ACTIONS(17238), 1, + anon_sym_EQ_GT, + STATE(10508), 1, sym_comment, - [305881] = 3, + [304163] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17966), 1, - anon_sym_RPAREN, - STATE(11023), 1, + ACTIONS(17240), 1, + anon_sym_RBRACE, + STATE(10509), 1, sym_comment, - [305891] = 3, + [304173] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(6871), 1, + ACTIONS(17242), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(11024), 1, + STATE(10510), 1, sym_comment, - [305901] = 3, + [304183] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10290), 1, + ACTIONS(5903), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(11025), 1, + STATE(10511), 1, sym_comment, - [305911] = 3, + [304193] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17968), 1, - anon_sym_COLON, - STATE(11026), 1, + ACTIONS(17244), 1, + anon_sym_RBRACE, + STATE(10512), 1, sym_comment, - [305921] = 3, + [304203] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17970), 1, - anon_sym_RPAREN, - STATE(11027), 1, + ACTIONS(17246), 1, + ts_builtin_sym_end, + STATE(10513), 1, sym_comment, - [305931] = 3, + [304213] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17972), 1, + ACTIONS(17248), 1, anon_sym_RBRACE, - STATE(11028), 1, + STATE(10514), 1, sym_comment, - [305941] = 3, + [304223] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17974), 1, + ACTIONS(17250), 1, anon_sym_RBRACE, - STATE(11029), 1, + STATE(10515), 1, + sym_comment, + [304233] = 3, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(932), 1, + aux_sym_unquoted_token6, + STATE(10516), 1, sym_comment, - [305951] = 3, + [304243] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17976), 1, - anon_sym_RPAREN, - STATE(11030), 1, + ACTIONS(17252), 1, + anon_sym_RBRACK, + STATE(10517), 1, sym_comment, - [305961] = 3, + [304253] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17978), 1, + ACTIONS(17254), 1, anon_sym_RPAREN, - STATE(11031), 1, + STATE(10518), 1, sym_comment, - [305971] = 3, - ACTIONS(113), 1, + [304263] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17980), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(11032), 1, + ACTIONS(17256), 1, + anon_sym_RBRACE, + STATE(10519), 1, sym_comment, - [305981] = 3, + [304273] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17982), 1, - anon_sym_RPAREN, - STATE(11033), 1, + ACTIONS(17258), 1, + anon_sym_RBRACE, + STATE(10520), 1, sym_comment, - [305991] = 3, + [304283] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17984), 1, - anon_sym_GT, - STATE(11034), 1, + ACTIONS(17260), 1, + aux_sym__immediate_decimal_token1, + STATE(10521), 1, sym_comment, - [306001] = 3, + [304293] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(17262), 1, + aux_sym__immediate_decimal_token1, + STATE(10522), 1, + sym_comment, + [304303] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17986), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(11035), 1, + ACTIONS(9249), 1, + aux_sym_unquoted_token6, + STATE(10523), 1, sym_comment, - [306011] = 3, + [304313] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17420), 1, - sym_short_flag_identifier, - STATE(11036), 1, + ACTIONS(17264), 1, + anon_sym_EQ, + STATE(10524), 1, + sym_comment, + [304323] = 3, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(17266), 1, + aux_sym__unquoted_in_list_token3, + STATE(10525), 1, sym_comment, - [306021] = 3, + [304333] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17988), 1, - anon_sym_RBRACE, - STATE(11037), 1, + ACTIONS(3433), 1, + aux_sym_unquoted_token5, + STATE(10526), 1, sym_comment, - [306031] = 3, + [304343] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9572), 1, + ACTIONS(16391), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(11038), 1, + STATE(10527), 1, sym_comment, - [306041] = 3, + [304353] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17990), 1, - anon_sym_RBRACK, - STATE(11039), 1, + ACTIONS(17268), 1, + anon_sym_DASH_GT, + STATE(10528), 1, sym_comment, - [306051] = 3, + [304363] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17992), 1, + ACTIONS(17270), 1, anon_sym_RPAREN, - STATE(11040), 1, + STATE(10529), 1, sym_comment, - [306061] = 3, + [304373] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17994), 1, - anon_sym_RBRACE, - STATE(11041), 1, + ACTIONS(17272), 1, + anon_sym_RPAREN, + STATE(10530), 1, sym_comment, - [306071] = 3, + [304383] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17996), 1, - aux_sym__immediate_decimal_token1, - STATE(11042), 1, + ACTIONS(17274), 1, + anon_sym_RBRACK, + STATE(10531), 1, sym_comment, - [306081] = 3, - ACTIONS(3), 1, + [304393] = 3, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(17998), 1, - anon_sym_RBRACE, - STATE(11043), 1, + ACTIONS(6578), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10532), 1, sym_comment, - [306091] = 3, + [304403] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5079), 1, - anon_sym_in, - STATE(11044), 1, + ACTIONS(17276), 1, + anon_sym_RPAREN, + STATE(10533), 1, sym_comment, - [306101] = 3, + [304413] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18000), 1, - anon_sym_EQ, - STATE(11045), 1, - sym_comment, - [306111] = 3, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(3864), 1, - aux_sym_unquoted_token6, - STATE(11046), 1, - sym_comment, - [306121] = 3, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(3960), 1, - aux_sym__unquoted_with_expr_token1, - STATE(11047), 1, + ACTIONS(17278), 1, + anon_sym_RBRACE, + STATE(10534), 1, sym_comment, - [306131] = 3, + [304423] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18002), 1, - anon_sym_RBRACK, - STATE(11048), 1, + ACTIONS(17280), 1, + anon_sym_RBRACE, + STATE(10535), 1, sym_comment, - [306141] = 3, + [304433] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10528), 1, - anon_sym_LBRACK2, - STATE(11049), 1, + ACTIONS(17282), 1, + sym_short_flag_identifier, + STATE(10536), 1, sym_comment, - [306151] = 3, + [304443] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(10328), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(11050), 1, + STATE(10537), 1, sym_comment, - [306161] = 3, - ACTIONS(3), 1, + [304453] = 3, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(18004), 1, - anon_sym_RPAREN, - STATE(11051), 1, + ACTIONS(10042), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10538), 1, sym_comment, - [306171] = 3, + [304463] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(18006), 1, + ACTIONS(17284), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(11052), 1, + STATE(10539), 1, sym_comment, - [306181] = 3, + [304473] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18008), 1, + ACTIONS(17286), 1, anon_sym_RBRACE, - STATE(11053), 1, + STATE(10540), 1, sym_comment, - [306191] = 3, - ACTIONS(3), 1, + [304483] = 3, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3880), 1, - anon_sym_COLON, - STATE(11054), 1, + ACTIONS(3254), 1, + aux_sym_unquoted_token6, + STATE(10541), 1, sym_comment, - [306201] = 3, + [304493] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(2547), 1, - aux_sym__unquoted_in_list_token3, - STATE(11055), 1, + ACTIONS(4821), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10542), 1, sym_comment, - [306211] = 3, + [304503] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18010), 1, - anon_sym_RPAREN, - STATE(11056), 1, + ACTIONS(17288), 1, + anon_sym_RBRACK, + STATE(10543), 1, sym_comment, - [306221] = 3, + [304513] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18012), 1, + ACTIONS(17290), 1, anon_sym_RPAREN, - STATE(11057), 1, + STATE(10544), 1, + sym_comment, + [304523] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(17292), 1, + anon_sym_RBRACE, + STATE(10545), 1, sym_comment, - [306231] = 3, + [304533] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18014), 1, + ACTIONS(17294), 1, anon_sym_RBRACE, - STATE(11058), 1, + STATE(10546), 1, sym_comment, - [306241] = 3, + [304543] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1257), 1, + ACTIONS(2968), 1, aux_sym_unquoted_token6, - STATE(11059), 1, + STATE(10547), 1, sym_comment, - [306251] = 3, + [304553] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18016), 1, - anon_sym_RBRACE, - STATE(11060), 1, + ACTIONS(17296), 1, + anon_sym_RPAREN, + STATE(10548), 1, + sym_comment, + [304563] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9993), 1, + anon_sym_LBRACK2, + STATE(10549), 1, sym_comment, - [306261] = 3, + [304573] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18018), 1, + ACTIONS(17298), 1, anon_sym_RBRACK, - STATE(11061), 1, + STATE(10550), 1, sym_comment, - [306271] = 3, + [304583] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18020), 1, + ACTIONS(17300), 1, anon_sym_RPAREN, - STATE(11062), 1, + STATE(10551), 1, sym_comment, - [306281] = 3, + [304593] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18022), 1, + ACTIONS(17302), 1, anon_sym_RBRACE, - STATE(11063), 1, + STATE(10552), 1, sym_comment, - [306291] = 3, + [304603] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18024), 1, + ACTIONS(17304), 1, aux_sym__immediate_decimal_token1, - STATE(11064), 1, + STATE(10553), 1, sym_comment, - [306301] = 3, - ACTIONS(113), 1, + [304613] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18026), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(11065), 1, + ACTIONS(3707), 1, + anon_sym_COLON, + STATE(10554), 1, sym_comment, - [306311] = 3, - ACTIONS(113), 1, + [304623] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18028), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(11066), 1, + ACTIONS(17306), 1, + anon_sym_RBRACE, + STATE(10555), 1, sym_comment, - [306321] = 3, + [304633] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1196), 1, - anon_sym_in, - STATE(11067), 1, + ACTIONS(17308), 1, + anon_sym_RPAREN, + STATE(10556), 1, sym_comment, - [306331] = 3, + [304643] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18030), 1, - sym_identifier, - STATE(11068), 1, + ACTIONS(17310), 1, + anon_sym_RBRACE, + STATE(10557), 1, sym_comment, - [306341] = 3, + [304653] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18032), 1, - aux_sym__immediate_decimal_token1, - STATE(11069), 1, + ACTIONS(17312), 1, + anon_sym_RBRACE, + STATE(10558), 1, sym_comment, - [306351] = 3, + [304663] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18034), 1, + ACTIONS(17314), 1, anon_sym_LBRACE, - STATE(11070), 1, + STATE(10559), 1, sym_comment, - [306361] = 3, + [304673] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13522), 1, - aux_sym__immediate_decimal_token1, - STATE(11071), 1, + ACTIONS(17316), 1, + anon_sym_RPAREN, + STATE(10560), 1, sym_comment, - [306371] = 3, + [304683] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6353), 1, - anon_sym_RBRACE, - STATE(11072), 1, - sym_comment, - [306381] = 3, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - aux_sym_unquoted_token6, - STATE(11073), 1, + ACTIONS(12804), 1, + aux_sym__immediate_decimal_token1, + STATE(10561), 1, sym_comment, - [306391] = 3, + [304693] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10133), 1, - aux_sym__immediate_decimal_token1, - STATE(11074), 1, + ACTIONS(17318), 1, + anon_sym_RBRACE, + STATE(10562), 1, sym_comment, - [306401] = 3, - ACTIONS(3), 1, + [304703] = 3, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(18036), 1, - anon_sym_RBRACK, - STATE(11075), 1, + ACTIONS(8205), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10563), 1, sym_comment, - [306411] = 3, + [304713] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18038), 1, + ACTIONS(17320), 1, anon_sym_RPAREN, - STATE(11076), 1, + STATE(10564), 1, sym_comment, - [306421] = 3, + [304723] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18040), 1, + ACTIONS(17322), 1, anon_sym_RBRACE, - STATE(11077), 1, + STATE(10565), 1, sym_comment, - [306431] = 3, + [304733] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8562), 1, + ACTIONS(17324), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(11078), 1, + STATE(10566), 1, + sym_comment, + [304743] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(17326), 1, + anon_sym_RPAREN, + STATE(10567), 1, sym_comment, - [306441] = 3, + [304753] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9327), 1, + ACTIONS(1385), 1, aux_sym_unquoted_token6, - STATE(11079), 1, + STATE(10568), 1, sym_comment, - [306451] = 3, + [304763] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18042), 1, + ACTIONS(17328), 1, anon_sym_RBRACK, - STATE(11080), 1, + STATE(10569), 1, + sym_comment, + [304773] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(17330), 1, + aux_sym__immediate_decimal_token1, + STATE(10570), 1, sym_comment, - [306461] = 3, + [304783] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18044), 1, + ACTIONS(17332), 1, anon_sym_RPAREN, - STATE(11081), 1, + STATE(10571), 1, sym_comment, - [306471] = 3, + [304793] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10137), 1, - anon_sym_LBRACK2, - STATE(11082), 1, + ACTIONS(17334), 1, + anon_sym_RBRACE, + STATE(10572), 1, sym_comment, - [306481] = 3, + [304803] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18046), 1, - sym_short_flag_identifier, - STATE(11083), 1, + ACTIONS(7107), 1, + anon_sym_RBRACK, + STATE(10573), 1, sym_comment, - [306491] = 3, + [304813] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18048), 1, - sym_short_flag_identifier, - STATE(11084), 1, + ACTIONS(17336), 1, + anon_sym_RBRACE, + STATE(10574), 1, sym_comment, - [306501] = 3, + [304823] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(18050), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(11085), 1, + ACTIONS(2388), 1, + aux_sym_unquoted_token6, + STATE(10575), 1, sym_comment, - [306511] = 3, + [304833] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18052), 1, - anon_sym_RBRACE, - STATE(11086), 1, + ACTIONS(17338), 1, + anon_sym_RBRACK, + STATE(10576), 1, sym_comment, - [306521] = 3, + [304843] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18054), 1, - anon_sym_RBRACE, - STATE(11087), 1, + ACTIONS(17340), 1, + anon_sym_RPAREN, + STATE(10577), 1, sym_comment, - [306531] = 3, + [304853] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18056), 1, - anon_sym_LBRACE, - STATE(11088), 1, + ACTIONS(5886), 1, + anon_sym_RBRACE, + STATE(10578), 1, sym_comment, - [306541] = 3, + [304863] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18058), 1, + ACTIONS(17342), 1, anon_sym_RBRACE, - STATE(11089), 1, + STATE(10579), 1, + sym_comment, + [304873] = 3, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(7850), 1, + aux_sym__unquoted_in_list_token3, + STATE(10580), 1, sym_comment, - [306551] = 3, + [304883] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18060), 1, + ACTIONS(17344), 1, aux_sym__immediate_decimal_token1, - STATE(11090), 1, + STATE(10581), 1, sym_comment, - [306561] = 3, + [304893] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18062), 1, - aux_sym__immediate_decimal_token1, - STATE(11091), 1, + ACTIONS(9551), 1, + anon_sym_LBRACK2, + STATE(10582), 1, sym_comment, - [306571] = 3, + [304903] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18064), 1, - anon_sym_EQ_GT, - STATE(11092), 1, + ACTIONS(17346), 1, + sym_identifier, + STATE(10583), 1, sym_comment, - [306581] = 3, + [304913] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18066), 1, + ACTIONS(12876), 1, aux_sym__immediate_decimal_token1, - STATE(11093), 1, + STATE(10584), 1, sym_comment, - [306591] = 3, + [304923] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18068), 1, - anon_sym_RPAREN, - STATE(11094), 1, + ACTIONS(16258), 1, + anon_sym_EQ_GT, + STATE(10585), 1, sym_comment, - [306601] = 3, - ACTIONS(3), 1, + [304933] = 3, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(18070), 1, - anon_sym_RPAREN, - STATE(11095), 1, + ACTIONS(17348), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10586), 1, sym_comment, - [306611] = 3, + [304943] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18072), 1, + ACTIONS(5798), 1, anon_sym_RBRACE, - STATE(11096), 1, + STATE(10587), 1, sym_comment, - [306621] = 3, - ACTIONS(3), 1, + [304953] = 3, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(18074), 1, - aux_sym__immediate_decimal_token1, - STATE(11097), 1, + ACTIONS(17350), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10588), 1, sym_comment, - [306631] = 3, + [304963] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10434), 1, + ACTIONS(6427), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(11098), 1, + STATE(10589), 1, sym_comment, - [306641] = 3, + [304973] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18076), 1, - aux_sym__immediate_decimal_token1, - STATE(11099), 1, + ACTIONS(17352), 1, + anon_sym_RBRACE, + STATE(10590), 1, + sym_comment, + [304983] = 3, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(17354), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10591), 1, sym_comment, - [306651] = 3, + [304993] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18078), 1, - anon_sym_RPAREN, - STATE(11100), 1, + ACTIONS(17356), 1, + anon_sym_COLON, + STATE(10592), 1, sym_comment, - [306661] = 3, + [305003] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18080), 1, - anon_sym_RBRACE, - STATE(11101), 1, + ACTIONS(17358), 1, + anon_sym_RPAREN, + STATE(10593), 1, sym_comment, - [306671] = 3, + [305013] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18082), 1, + ACTIONS(17360), 1, anon_sym_RPAREN, - STATE(11102), 1, + STATE(10594), 1, sym_comment, - [306681] = 3, + [305023] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18084), 1, - anon_sym_RBRACE, - STATE(11103), 1, + ACTIONS(17362), 1, + anon_sym_RPAREN, + STATE(10595), 1, sym_comment, - [306691] = 3, + [305033] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7623), 1, - aux_sym__unquoted_in_list_token7, - STATE(11104), 1, + ACTIONS(8115), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10596), 1, sym_comment, - [306701] = 3, + [305043] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1722), 1, + ACTIONS(17364), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(11105), 1, + STATE(10597), 1, + sym_comment, + [305053] = 3, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(17366), 1, + aux_sym_comment_token1, + STATE(10598), 1, sym_comment, - [306711] = 3, + [305063] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10485), 1, - anon_sym_LBRACK2, - STATE(11106), 1, + ACTIONS(17368), 1, + anon_sym_RBRACK, + STATE(10599), 1, sym_comment, - [306721] = 3, - ACTIONS(113), 1, + [305073] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18086), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(11107), 1, + ACTIONS(17370), 1, + anon_sym_RBRACK, + STATE(10600), 1, sym_comment, - [306731] = 3, + [305083] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18056), 1, - anon_sym_LBRACE, - STATE(11108), 1, + ACTIONS(17372), 1, + anon_sym_RPAREN, + STATE(10601), 1, sym_comment, - [306741] = 3, + [305093] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18088), 1, - anon_sym_DASH_GT, - STATE(11109), 1, + ACTIONS(17374), 1, + anon_sym_RBRACE, + STATE(10602), 1, sym_comment, - [306751] = 3, - ACTIONS(113), 1, + [305103] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18090), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(11110), 1, + ACTIONS(17376), 1, + aux_sym__immediate_decimal_token1, + STATE(10603), 1, sym_comment, - [306761] = 3, + [305113] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18092), 1, + ACTIONS(17378), 1, anon_sym_RPAREN, - STATE(11111), 1, + STATE(10604), 1, sym_comment, - [306771] = 3, + [305123] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18094), 1, + ACTIONS(17380), 1, anon_sym_RBRACE, - STATE(11112), 1, + STATE(10605), 1, sym_comment, - [306781] = 3, + [305133] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15620), 1, - aux_sym__immediate_decimal_token1, - STATE(11113), 1, + ACTIONS(10044), 1, + anon_sym_LBRACK2, + STATE(10606), 1, sym_comment, - [306791] = 3, - ACTIONS(113), 1, + [305143] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3590), 1, - aux_sym_unquoted_token6, - STATE(11114), 1, + ACTIONS(17382), 1, + anon_sym_RPAREN, + STATE(10607), 1, sym_comment, - [306801] = 3, + [305153] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(18096), 1, + ACTIONS(6931), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(11115), 1, - sym_comment, - [306811] = 3, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(4783), 1, - aux_sym_unquoted_token6, - STATE(11116), 1, + STATE(10608), 1, sym_comment, - [306821] = 3, + [305163] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1292), 1, + ACTIONS(10142), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(11117), 1, + STATE(10609), 1, sym_comment, - [306831] = 3, + [305173] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8587), 1, + ACTIONS(17384), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(11118), 1, + STATE(10610), 1, sym_comment, - [306841] = 3, + [305183] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(18098), 1, + ACTIONS(17386), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(11119), 1, + STATE(10611), 1, sym_comment, - [306851] = 3, + [305193] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18100), 1, + ACTIONS(17388), 1, anon_sym_RBRACE, - STATE(11120), 1, + STATE(10612), 1, + sym_comment, + [305203] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(17390), 1, + anon_sym_RPAREN, + STATE(10613), 1, sym_comment, - [306861] = 3, + [305213] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18102), 1, + ACTIONS(17392), 1, anon_sym_RBRACE, - STATE(11121), 1, + STATE(10614), 1, sym_comment, - [306871] = 3, + [305223] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18104), 1, + ACTIONS(17394), 1, anon_sym_RPAREN, - STATE(11122), 1, + STATE(10615), 1, sym_comment, - [306881] = 3, + [305233] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18106), 1, - aux_sym__immediate_decimal_token1, - STATE(11123), 1, + ACTIONS(17396), 1, + anon_sym_RBRACK, + STATE(10616), 1, sym_comment, - [306891] = 3, + [305243] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18108), 1, + ACTIONS(17398), 1, anon_sym_RPAREN, - STATE(11124), 1, + STATE(10617), 1, + sym_comment, + [305253] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(17400), 1, + anon_sym_EQ_GT, + STATE(10618), 1, sym_comment, - [306901] = 3, + [305263] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18110), 1, + ACTIONS(17402), 1, anon_sym_RBRACE, - STATE(11125), 1, + STATE(10619), 1, sym_comment, - [306911] = 3, - ACTIONS(113), 1, + [305273] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3960), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(11126), 1, + ACTIONS(17404), 1, + anon_sym_EQ, + STATE(10620), 1, sym_comment, - [306921] = 3, + [305283] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10458), 1, - anon_sym_LBRACK2, - STATE(11127), 1, + ACTIONS(14625), 1, + aux_sym__immediate_decimal_token1, + STATE(10621), 1, sym_comment, - [306931] = 3, + [305293] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18112), 1, - anon_sym_RPAREN, - STATE(11128), 1, + ACTIONS(17406), 1, + aux_sym__immediate_decimal_token1, + STATE(10622), 1, + sym_comment, + [305303] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(17408), 1, + anon_sym_EQ, + STATE(10623), 1, sym_comment, - [306941] = 3, + [305313] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18114), 1, - anon_sym_RBRACE, - STATE(11129), 1, - sym_comment, - [306951] = 3, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(10872), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(11130), 1, + ACTIONS(17410), 1, + aux_sym__immediate_decimal_token1, + STATE(10624), 1, sym_comment, - [306961] = 3, + [305323] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18116), 1, + ACTIONS(17412), 1, anon_sym_RBRACK, - STATE(11131), 1, + STATE(10625), 1, sym_comment, - [306971] = 3, + [305333] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(18118), 1, + ACTIONS(17414), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(11132), 1, + STATE(10626), 1, sym_comment, - [306981] = 3, - ACTIONS(113), 1, + [305343] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1245), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(11133), 1, + ACTIONS(17416), 1, + anon_sym_LBRACE, + STATE(10627), 1, sym_comment, - [306991] = 3, - ACTIONS(113), 1, + [305353] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18120), 1, - sym__entry_separator, - STATE(11134), 1, + ACTIONS(4738), 1, + anon_sym_in, + STATE(10628), 1, sym_comment, - [307001] = 3, + [305363] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1498), 1, - anon_sym_LBRACK2, - STATE(11135), 1, + ACTIONS(17418), 1, + anon_sym_RBRACE, + STATE(10629), 1, sym_comment, - [307011] = 3, + [305373] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(18122), 1, + ACTIONS(10420), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(11136), 1, + STATE(10630), 1, sym_comment, - [307021] = 3, - ACTIONS(3), 1, + [305383] = 3, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(18124), 1, - aux_sym__immediate_decimal_token1, - STATE(11137), 1, + ACTIONS(17420), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10631), 1, sym_comment, - [307031] = 3, + [305393] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18126), 1, - anon_sym_RBRACE, - STATE(11138), 1, + ACTIONS(17422), 1, + anon_sym_DASH_GT, + STATE(10632), 1, sym_comment, - [307041] = 3, + [305403] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18128), 1, + ACTIONS(17424), 1, anon_sym_RPAREN, - STATE(11139), 1, - sym_comment, - [307051] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5201), 1, - anon_sym_in, - STATE(11140), 1, + STATE(10633), 1, sym_comment, - [307061] = 3, + [305413] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18130), 1, - aux_sym__immediate_decimal_token1, - STATE(11141), 1, + ACTIONS(17426), 1, + anon_sym_RBRACE, + STATE(10634), 1, sym_comment, - [307071] = 3, + [305423] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5205), 1, - anon_sym_in, - STATE(11142), 1, + ACTIONS(9746), 1, + anon_sym_LBRACK2, + STATE(10635), 1, sym_comment, - [307081] = 3, + [305433] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10330), 1, - anon_sym_LBRACK2, - STATE(11143), 1, + ACTIONS(17428), 1, + anon_sym_RPAREN, + STATE(10636), 1, sym_comment, - [307091] = 3, + [305443] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18132), 1, + ACTIONS(17430), 1, anon_sym_RBRACE, - STATE(11144), 1, + STATE(10637), 1, sym_comment, - [307101] = 3, + [305453] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18134), 1, - anon_sym_RPAREN, - STATE(11145), 1, + ACTIONS(17432), 1, + aux_sym__immediate_decimal_token1, + STATE(10638), 1, sym_comment, - [307111] = 3, + [305463] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18136), 1, - anon_sym_RBRACK, - STATE(11146), 1, - sym_comment, - [307121] = 3, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(5441), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(11147), 1, + ACTIONS(17434), 1, + anon_sym_EQ, + STATE(10639), 1, sym_comment, - [307131] = 3, - ACTIONS(113), 1, + [305473] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18138), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(11148), 1, + ACTIONS(17436), 1, + anon_sym_RPAREN, + STATE(10640), 1, sym_comment, - [307141] = 3, + [305483] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(18140), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(11149), 1, + ACTIONS(1149), 1, + aux_sym_unquoted_token6, + STATE(10641), 1, sym_comment, - [307151] = 3, + [305493] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18142), 1, - anon_sym_RPAREN, - STATE(11150), 1, + ACTIONS(17438), 1, + anon_sym_GT, + STATE(10642), 1, sym_comment, - [307161] = 3, + [305503] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10190), 1, + ACTIONS(9863), 1, anon_sym_LBRACK2, - STATE(11151), 1, + STATE(10643), 1, sym_comment, - [307171] = 3, - ACTIONS(3), 1, + [305513] = 3, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(18144), 1, - aux_sym__immediate_decimal_token1, - STATE(11152), 1, + ACTIONS(1522), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10644), 1, sym_comment, - [307181] = 3, - ACTIONS(3), 1, + [305523] = 3, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(18146), 1, - anon_sym_RBRACE, - STATE(11153), 1, + ACTIONS(17440), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10645), 1, sym_comment, - [307191] = 3, + [305533] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18148), 1, + ACTIONS(17442), 1, anon_sym_RPAREN, - STATE(11154), 1, + STATE(10646), 1, sym_comment, - [307201] = 3, + [305543] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18150), 1, - aux_sym__immediate_decimal_token1, - STATE(11155), 1, + ACTIONS(10203), 1, + anon_sym_LBRACK2, + STATE(10647), 1, sym_comment, - [307211] = 3, + [305553] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18152), 1, + ACTIONS(17444), 1, anon_sym_RPAREN, - STATE(11156), 1, + STATE(10648), 1, sym_comment, - [307221] = 3, + [305563] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18154), 1, + ACTIONS(17446), 1, anon_sym_RBRACE, - STATE(11157), 1, + STATE(10649), 1, sym_comment, - [307231] = 3, + [305573] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18156), 1, - anon_sym_RBRACK, - STATE(11158), 1, + ACTIONS(17448), 1, + aux_sym__immediate_decimal_token1, + STATE(10650), 1, sym_comment, - [307241] = 3, + [305583] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1431), 1, + ACTIONS(10376), 1, anon_sym_LBRACK2, - STATE(11159), 1, + STATE(10651), 1, sym_comment, - [307251] = 3, + [305593] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18158), 1, - anon_sym_RBRACE, - STATE(11160), 1, + ACTIONS(17450), 1, + anon_sym_RBRACK, + STATE(10652), 1, sym_comment, - [307261] = 3, + [305603] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5049), 1, + ACTIONS(17452), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(11161), 1, + STATE(10653), 1, sym_comment, - [307271] = 3, + [305613] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(18160), 1, + ACTIONS(2402), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(11162), 1, + STATE(10654), 1, sym_comment, - [307281] = 3, + [305623] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1123), 1, - aux_sym_unquoted_token6, - STATE(11163), 1, + ACTIONS(1269), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10655), 1, sym_comment, - [307291] = 3, + [305633] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18162), 1, - anon_sym_RBRACK, - STATE(11164), 1, + ACTIONS(13103), 1, + aux_sym__immediate_decimal_token1, + STATE(10656), 1, sym_comment, - [307301] = 3, - ACTIONS(3), 1, + [305643] = 3, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(18164), 1, - anon_sym_RPAREN, - STATE(11165), 1, + ACTIONS(17454), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10657), 1, sym_comment, - [307311] = 3, - ACTIONS(3), 1, + [305653] = 3, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(18166), 1, - anon_sym_RPAREN, - STATE(11166), 1, + ACTIONS(17456), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(10658), 1, sym_comment, - [307321] = 3, + [305663] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10930), 1, + ACTIONS(9827), 1, anon_sym_LBRACK2, - STATE(11167), 1, + STATE(10659), 1, sym_comment, - [307331] = 3, + [305673] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18168), 1, - sym_short_flag_identifier, - STATE(11168), 1, + ACTIONS(17458), 1, + anon_sym_RBRACE, + STATE(10660), 1, sym_comment, - [307341] = 3, + [305683] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18170), 1, - anon_sym_RBRACK, - STATE(11169), 1, + ACTIONS(17460), 1, + anon_sym_RBRACE, + STATE(10661), 1, sym_comment, - [307351] = 3, + [305693] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18172), 1, + ACTIONS(17462), 1, anon_sym_RPAREN, - STATE(11170), 1, + STATE(10662), 1, sym_comment, - [307361] = 3, + [305703] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18174), 1, - anon_sym_RBRACE, - STATE(11171), 1, + ACTIONS(17464), 1, + aux_sym__immediate_decimal_token1, + STATE(10663), 1, sym_comment, - [307371] = 3, + [305713] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18176), 1, + ACTIONS(17466), 1, anon_sym_RBRACE, - STATE(11172), 1, + STATE(10664), 1, sym_comment, - [307381] = 3, + [305723] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18178), 1, - aux_sym__immediate_decimal_token1, - STATE(11173), 1, + ACTIONS(17468), 1, + anon_sym_SEMI, + STATE(10665), 1, sym_comment, - [307391] = 3, + [305733] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18180), 1, - anon_sym_LPAREN2, - STATE(11174), 1, + ACTIONS(17470), 1, + aux_sym__immediate_decimal_token1, + STATE(10666), 1, sym_comment, - [307401] = 3, + [305743] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10254), 1, + ACTIONS(13953), 1, anon_sym_LBRACK2, - STATE(11175), 1, + STATE(10667), 1, sym_comment, - [307411] = 3, - ACTIONS(3), 1, + [305753] = 3, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14681), 1, - aux_sym__immediate_decimal_token1, - STATE(11176), 1, + ACTIONS(1141), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10668), 1, sym_comment, - [307421] = 3, - ACTIONS(3), 1, + [305763] = 3, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(18182), 1, - anon_sym_SEMI, - STATE(11177), 1, + ACTIONS(17472), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10669), 1, sym_comment, - [307431] = 3, + [305773] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3682), 1, - aux_sym_unquoted_token5, - STATE(11178), 1, + ACTIONS(17474), 1, + anon_sym_LBRACE, + STATE(10670), 1, + sym_comment, + [305783] = 3, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(10465), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10671), 1, sym_comment, - [307441] = 3, + [305793] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18184), 1, - aux_sym__immediate_decimal_token1, - STATE(11179), 1, + ACTIONS(17476), 1, + ts_builtin_sym_end, + STATE(10672), 1, sym_comment, - [307451] = 3, + [305803] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(3684), 1, - aux_sym_unquoted_token6, - STATE(11180), 1, + ACTIONS(3767), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(10673), 1, sym_comment, - [307461] = 3, + [305813] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18186), 1, + ACTIONS(17478), 1, anon_sym_RPAREN, - STATE(11181), 1, - sym_comment, - [307471] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(18188), 1, - anon_sym_in, - STATE(11182), 1, + STATE(10674), 1, sym_comment, - [307481] = 3, + [305823] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14476), 1, + ACTIONS(15172), 1, anon_sym_LBRACK2, - STATE(11183), 1, + STATE(10675), 1, sym_comment, - [307491] = 3, + [305833] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18190), 1, + ACTIONS(17480), 1, aux_sym__immediate_decimal_token1, - STATE(11184), 1, + STATE(10676), 1, sym_comment, - [307501] = 3, + [305843] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18192), 1, - aux_sym__immediate_decimal_token1, - STATE(11185), 1, + ACTIONS(17482), 1, + anon_sym_RPAREN, + STATE(10677), 1, sym_comment, - [307511] = 3, - ACTIONS(3), 1, + [305853] = 3, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(18194), 1, - sym_short_flag_identifier, - STATE(11186), 1, + ACTIONS(2021), 1, + aux_sym_unquoted_token6, + STATE(10678), 1, + sym_comment, + [305863] = 3, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(17484), 1, + sym__entry_separator, + STATE(10679), 1, sym_comment, - [307521] = 3, + [305873] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18196), 1, + ACTIONS(17486), 1, anon_sym_RBRACK, - STATE(11187), 1, + STATE(10680), 1, sym_comment, - [307531] = 3, + [305883] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(12104), 1, - aux_sym_unquoted_token6, - STATE(11188), 1, + ACTIONS(4929), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10681), 1, sym_comment, - [307541] = 3, + [305893] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18198), 1, - anon_sym_EQ, - STATE(11189), 1, - sym_comment, - [307551] = 3, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(8043), 1, - aux_sym_unquoted_token6, - STATE(11190), 1, + ACTIONS(17416), 1, + anon_sym_LBRACE, + STATE(10682), 1, sym_comment, - [307561] = 3, + [305903] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15774), 1, + ACTIONS(8240), 1, anon_sym_LBRACK2, - STATE(11191), 1, + STATE(10683), 1, sym_comment, - [307571] = 3, + [305913] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10357), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(11192), 1, + ACTIONS(8362), 1, + aux_sym__unquoted_in_list_token3, + STATE(10684), 1, sym_comment, - [307581] = 3, - ACTIONS(3), 1, + [305923] = 3, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(18200), 1, - anon_sym_RPAREN, - STATE(11193), 1, + ACTIONS(17488), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10685), 1, sym_comment, - [307591] = 3, + [305933] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18202), 1, - aux_sym__immediate_decimal_token1, - STATE(11194), 1, + ACTIONS(17490), 1, + anon_sym_RPAREN, + STATE(10686), 1, sym_comment, - [307601] = 3, + [305943] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18204), 1, - anon_sym_RBRACK, - STATE(11195), 1, + ACTIONS(17492), 1, + anon_sym_RBRACE, + STATE(10687), 1, sym_comment, - [307611] = 3, + [305953] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18206), 1, + ACTIONS(17494), 1, anon_sym_RPAREN, - STATE(11196), 1, + STATE(10688), 1, sym_comment, - [307621] = 3, + [305963] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3984), 1, - anon_sym_COLON, - STATE(11197), 1, + ACTIONS(17496), 1, + aux_sym__immediate_decimal_token1, + STATE(10689), 1, sym_comment, - [307631] = 3, + [305973] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18208), 1, + ACTIONS(17498), 1, anon_sym_RBRACE, - STATE(11198), 1, + STATE(10690), 1, sym_comment, - [307641] = 3, + [305983] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8750), 1, + ACTIONS(9154), 1, anon_sym_LBRACK2, - STATE(11199), 1, + STATE(10691), 1, sym_comment, - [307651] = 3, + [305993] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18210), 1, - anon_sym_RPAREN, - STATE(11200), 1, + ACTIONS(10312), 1, + aux_sym__immediate_decimal_token1, + STATE(10692), 1, sym_comment, - [307661] = 3, - ACTIONS(113), 1, + [306003] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6818), 1, - aux_sym_unquoted_token6, - STATE(11201), 1, + ACTIONS(17500), 1, + anon_sym_RBRACE, + STATE(10693), 1, sym_comment, - [307671] = 3, + [306013] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18212), 1, - anon_sym_RPAREN, - STATE(11202), 1, + ACTIONS(17502), 1, + aux_sym__immediate_decimal_token1, + STATE(10694), 1, sym_comment, - [307681] = 3, - ACTIONS(3), 1, + [306023] = 3, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(18214), 1, - anon_sym_RBRACE, - STATE(11203), 1, + ACTIONS(4767), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10695), 1, sym_comment, - [307691] = 3, - ACTIONS(3), 1, + [306033] = 3, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(18216), 1, - anon_sym_RPAREN, - STATE(11204), 1, + ACTIONS(17504), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10696), 1, sym_comment, - [307701] = 3, + [306043] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18218), 1, - aux_sym__immediate_decimal_token1, - STATE(11205), 1, + ACTIONS(17506), 1, + anon_sym_RBRACE, + STATE(10697), 1, sym_comment, - [307711] = 3, + [306053] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18220), 1, - anon_sym_RBRACE, - STATE(11206), 1, + ACTIONS(10501), 1, + aux_sym__immediate_decimal_token1, + STATE(10698), 1, sym_comment, - [307721] = 3, + [306063] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9566), 1, + ACTIONS(9442), 1, anon_sym_LBRACK2, - STATE(11207), 1, + STATE(10699), 1, sym_comment, - [307731] = 3, + [306073] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18222), 1, - anon_sym_RBRACK, - STATE(11208), 1, + ACTIONS(3759), 1, + anon_sym_in, + STATE(10700), 1, + sym_comment, + [306083] = 3, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(13834), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10701), 1, sym_comment, - [307741] = 3, + [306093] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18224), 1, + ACTIONS(17508), 1, anon_sym_RPAREN, - STATE(11209), 1, + STATE(10702), 1, sym_comment, - [307751] = 3, + [306103] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18226), 1, - anon_sym_COLON, - STATE(11210), 1, + ACTIONS(17510), 1, + anon_sym_EQ, + STATE(10703), 1, sym_comment, - [307761] = 3, - ACTIONS(113), 1, + [306113] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18228), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(11211), 1, + ACTIONS(17512), 1, + anon_sym_RPAREN, + STATE(10704), 1, sym_comment, - [307771] = 3, + [306123] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18230), 1, + ACTIONS(17514), 1, aux_sym__immediate_decimal_token1, - STATE(11212), 1, + STATE(10705), 1, sym_comment, - [307781] = 3, + [306133] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18232), 1, - anon_sym_EQ, - STATE(11213), 1, + ACTIONS(17516), 1, + anon_sym_RBRACK, + STATE(10706), 1, sym_comment, - [307791] = 3, + [306143] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9740), 1, + ACTIONS(8099), 1, anon_sym_LBRACK2, - STATE(11214), 1, + STATE(10707), 1, sym_comment, - [307801] = 3, + [306153] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18234), 1, + ACTIONS(17518), 1, anon_sym_RBRACE, - STATE(11215), 1, - sym_comment, - [307811] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(18236), 1, - anon_sym_RPAREN, - STATE(11216), 1, + STATE(10708), 1, sym_comment, - [307821] = 3, + [306163] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18238), 1, + ACTIONS(17520), 1, aux_sym__immediate_decimal_token1, - STATE(11217), 1, + STATE(10709), 1, sym_comment, - [307831] = 3, + [306173] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18240), 1, - anon_sym_RBRACE, - STATE(11218), 1, + ACTIONS(17522), 1, + aux_sym__immediate_decimal_token1, + STATE(10710), 1, sym_comment, - [307841] = 3, - ACTIONS(3), 1, + [306183] = 3, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(18242), 1, - anon_sym_RBRACE, - STATE(11219), 1, + ACTIONS(17524), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10711), 1, sym_comment, - [307851] = 3, + [306193] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1251), 1, + ACTIONS(8550), 1, aux_sym_unquoted_token6, - STATE(11220), 1, + STATE(10712), 1, sym_comment, - [307861] = 3, + [306203] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8635), 1, - anon_sym_LBRACK2, - STATE(11221), 1, + ACTIONS(17526), 1, + anon_sym_RBRACK, + STATE(10713), 1, sym_comment, - [307871] = 3, + [306213] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18244), 1, - anon_sym_RBRACE, - STATE(11222), 1, + ACTIONS(5593), 1, + anon_sym_LBRACK2, + STATE(10714), 1, sym_comment, - [307881] = 3, + [306223] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18246), 1, - aux_sym__immediate_decimal_token1, - STATE(11223), 1, + ACTIONS(17528), 1, + anon_sym_RPAREN, + STATE(10715), 1, sym_comment, - [307891] = 3, + [306233] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(15655), 1, + ACTIONS(5599), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(11224), 1, + STATE(10716), 1, sym_comment, - [307901] = 3, + [306243] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18248), 1, + ACTIONS(17530), 1, anon_sym_RPAREN, - STATE(11225), 1, + STATE(10717), 1, sym_comment, - [307911] = 3, + [306253] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18250), 1, - aux_sym__immediate_decimal_token1, - STATE(11226), 1, + ACTIONS(17532), 1, + sym_short_flag_identifier, + STATE(10718), 1, sym_comment, - [307921] = 3, + [306263] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18252), 1, - anon_sym_RPAREN, - STATE(11227), 1, + ACTIONS(17534), 1, + anon_sym_RBRACE, + STATE(10719), 1, sym_comment, - [307931] = 3, + [306273] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5255), 1, - anon_sym_LBRACK2, - STATE(11228), 1, + ACTIONS(17536), 1, + anon_sym_RBRACE, + STATE(10720), 1, sym_comment, - [307941] = 3, + [306283] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18254), 1, - anon_sym_RBRACE, - STATE(11229), 1, + ACTIONS(9981), 1, + anon_sym_LBRACK2, + STATE(10721), 1, sym_comment, - [307951] = 3, + [306293] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10258), 1, + ACTIONS(17538), 1, aux_sym__immediate_decimal_token1, - STATE(11230), 1, + STATE(10722), 1, + sym_comment, + [306303] = 3, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(9919), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10723), 1, sym_comment, - [307961] = 3, + [306313] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18256), 1, - anon_sym_RBRACK, - STATE(11231), 1, + ACTIONS(17540), 1, + anon_sym_RPAREN, + STATE(10724), 1, sym_comment, - [307971] = 3, + [306323] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18258), 1, - anon_sym_EQ, - STATE(11232), 1, + ACTIONS(17542), 1, + anon_sym_RBRACE, + STATE(10725), 1, sym_comment, - [307981] = 3, + [306333] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18260), 1, - anon_sym_EQ, - STATE(11233), 1, + ACTIONS(17544), 1, + anon_sym_RBRACE, + STATE(10726), 1, sym_comment, - [307991] = 3, + [306343] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18262), 1, + ACTIONS(17546), 1, anon_sym_RPAREN, - STATE(11234), 1, + STATE(10727), 1, sym_comment, - [308001] = 3, + [306353] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10490), 1, + ACTIONS(9047), 1, anon_sym_LBRACK2, - STATE(11235), 1, - sym_comment, - [308011] = 3, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(3505), 1, - aux_sym__unquoted_in_list_token3, - STATE(11236), 1, + STATE(10728), 1, sym_comment, - [308021] = 3, + [306363] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18264), 1, + ACTIONS(13961), 1, aux_sym__immediate_decimal_token1, - STATE(11237), 1, - sym_comment, - [308031] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(18266), 1, - anon_sym_GT, - STATE(11238), 1, + STATE(10729), 1, sym_comment, - [308041] = 3, + [306373] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9449), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(11239), 1, - sym_comment, - [308051] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(18268), 1, - anon_sym_EQ, - STATE(11240), 1, - sym_comment, - [308061] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(18270), 1, - sym_short_flag_identifier, - STATE(11241), 1, + ACTIONS(3767), 1, + aux_sym__unquoted_with_expr_token1, + STATE(10730), 1, sym_comment, - [308071] = 3, + [306383] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9664), 1, - anon_sym_LBRACK2, - STATE(11242), 1, + ACTIONS(17548), 1, + anon_sym_RPAREN, + STATE(10731), 1, sym_comment, - [308081] = 3, + [306393] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18272), 1, - anon_sym_RPAREN, - STATE(11243), 1, + ACTIONS(7033), 1, + anon_sym_COLON, + STATE(10732), 1, sym_comment, - [308091] = 3, + [306403] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18274), 1, + ACTIONS(17550), 1, anon_sym_RPAREN, - STATE(11244), 1, + STATE(10733), 1, sym_comment, - [308101] = 3, + [306413] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18276), 1, + ACTIONS(17552), 1, aux_sym__immediate_decimal_token1, - STATE(11245), 1, + STATE(10734), 1, sym_comment, - [308111] = 3, + [306423] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18278), 1, - anon_sym_RBRACE, - STATE(11246), 1, + ACTIONS(10467), 1, + anon_sym_LBRACK2, + STATE(10735), 1, sym_comment, - [308121] = 3, + [306433] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8388), 1, + ACTIONS(17554), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(11247), 1, - sym_comment, - [308131] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(18280), 1, - anon_sym_RPAREN, - STATE(11248), 1, - sym_comment, - [308141] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11006), 1, - anon_sym_LBRACK2, - STATE(11249), 1, - sym_comment, - [308151] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7627), 1, - anon_sym_RBRACK, - STATE(11250), 1, + STATE(10736), 1, sym_comment, - [308161] = 3, - ACTIONS(3), 1, + [306443] = 3, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(18282), 1, - anon_sym_RPAREN, - STATE(11251), 1, + ACTIONS(17556), 1, + sym__entry_separator, + STATE(10737), 1, sym_comment, - [308171] = 3, - ACTIONS(3), 1, + [306453] = 3, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(18284), 1, - anon_sym_RBRACE, - STATE(11252), 1, + ACTIONS(8834), 1, + aux_sym_unquoted_token6, + STATE(10738), 1, sym_comment, - [308181] = 3, + [306463] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18286), 1, + ACTIONS(17558), 1, anon_sym_EQ, - STATE(11253), 1, + STATE(10739), 1, sym_comment, - [308191] = 3, + [306473] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18288), 1, - aux_sym__immediate_decimal_token1, - STATE(11254), 1, + ACTIONS(17560), 1, + anon_sym_RBRACK, + STATE(10740), 1, sym_comment, - [308201] = 3, + [306483] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18290), 1, + ACTIONS(17562), 1, anon_sym_RPAREN, - STATE(11255), 1, + STATE(10741), 1, sym_comment, - [308211] = 3, + [306493] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10882), 1, + ACTIONS(10390), 1, anon_sym_LBRACK2, - STATE(11256), 1, + STATE(10742), 1, sym_comment, - [308221] = 3, + [306503] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18292), 1, + ACTIONS(17564), 1, aux_sym__immediate_decimal_token1, - STATE(11257), 1, + STATE(10743), 1, sym_comment, - [308231] = 3, + [306513] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18294), 1, + ACTIONS(17566), 1, anon_sym_RPAREN, - STATE(11258), 1, + STATE(10744), 1, sym_comment, - [308241] = 3, + [306523] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(18296), 1, + ACTIONS(2229), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(11259), 1, + STATE(10745), 1, sym_comment, - [308251] = 3, + [306533] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10926), 1, - aux_sym__immediate_decimal_token1, - STATE(11260), 1, + ACTIONS(17568), 1, + anon_sym_RBRACE, + STATE(10746), 1, sym_comment, - [308261] = 3, - ACTIONS(113), 1, + [306543] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17334), 1, - aux_sym__record_key_token1, - STATE(11261), 1, + ACTIONS(5153), 1, + anon_sym_in, + STATE(10747), 1, sym_comment, - [308271] = 3, + [306553] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18298), 1, - anon_sym_COLON, - STATE(11262), 1, + ACTIONS(17570), 1, + anon_sym_RBRACE, + STATE(10748), 1, sym_comment, - [308281] = 3, + [306563] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1760), 1, + ACTIONS(1532), 1, anon_sym_LBRACK2, - STATE(11263), 1, + STATE(10749), 1, sym_comment, - [308291] = 3, + [306573] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18300), 1, + ACTIONS(17572), 1, anon_sym_RPAREN, - STATE(11264), 1, + STATE(10750), 1, sym_comment, - [308301] = 3, - ACTIONS(113), 1, + [306583] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18302), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(11265), 1, + ACTIONS(17574), 1, + aux_sym__immediate_decimal_token1, + STATE(10751), 1, sym_comment, - [308311] = 3, + [306593] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18304), 1, - anon_sym_RPAREN, - STATE(11266), 1, + ACTIONS(17576), 1, + sym_identifier, + STATE(10752), 1, + sym_comment, + [306603] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9589), 1, + aux_sym__immediate_decimal_token1, + STATE(10753), 1, sym_comment, - [308321] = 3, + [306613] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18306), 1, + ACTIONS(17578), 1, aux_sym__immediate_decimal_token1, - STATE(11267), 1, + STATE(10754), 1, sym_comment, - [308331] = 3, + [306623] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9055), 1, + ACTIONS(11319), 1, aux_sym_unquoted_token6, - STATE(11268), 1, + STATE(10755), 1, sym_comment, - [308341] = 3, + [306633] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18308), 1, - anon_sym_RBRACK, - STATE(11269), 1, + ACTIONS(4827), 1, + anon_sym_LBRACK2, + STATE(10756), 1, sym_comment, - [308351] = 3, + [306643] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5259), 1, - anon_sym_LBRACK2, - STATE(11270), 1, + ACTIONS(17580), 1, + anon_sym_RBRACK, + STATE(10757), 1, sym_comment, - [308361] = 3, + [306653] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18310), 1, + ACTIONS(17582), 1, anon_sym_RPAREN, - STATE(11271), 1, + STATE(10758), 1, sym_comment, - [308371] = 3, + [306663] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18312), 1, - anon_sym_EQ, - STATE(11272), 1, - sym_comment, - [308381] = 3, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(2547), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(11273), 1, + ACTIONS(17584), 1, + aux_sym__immediate_decimal_token1, + STATE(10759), 1, sym_comment, - [308391] = 3, + [306673] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18314), 1, - sym_short_flag_identifier, - STATE(11274), 1, + ACTIONS(17586), 1, + anon_sym_RPAREN, + STATE(10760), 1, sym_comment, - [308401] = 3, + [306683] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18316), 1, - anon_sym_RBRACE, - STATE(11275), 1, + ACTIONS(16743), 1, + sym_short_flag_identifier, + STATE(10761), 1, sym_comment, - [308411] = 3, - ACTIONS(3), 1, + [306693] = 3, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(18318), 1, - anon_sym_RBRACE, - STATE(11276), 1, + ACTIONS(9784), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10762), 1, sym_comment, - [308421] = 3, + [306703] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5064), 1, + ACTIONS(4763), 1, anon_sym_LBRACK2, - STATE(11277), 1, + STATE(10763), 1, sym_comment, - [308431] = 3, + [306713] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(1992), 1, + ACTIONS(8015), 1, aux_sym_unquoted_token6, - STATE(11278), 1, + STATE(10764), 1, sym_comment, - [308441] = 3, + [306723] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18320), 1, - anon_sym_RBRACE, - STATE(11279), 1, + ACTIONS(17588), 1, + anon_sym_RBRACK, + STATE(10765), 1, sym_comment, - [308451] = 3, + [306733] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18322), 1, - ts_builtin_sym_end, - STATE(11280), 1, + ACTIONS(17590), 1, + anon_sym_RPAREN, + STATE(10766), 1, sym_comment, - [308461] = 3, + [306743] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18324), 1, - aux_sym__immediate_decimal_token1, - STATE(11281), 1, + ACTIONS(17592), 1, + anon_sym_RPAREN, + STATE(10767), 1, sym_comment, - [308471] = 3, - ACTIONS(113), 1, + [306753] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4000), 1, - aux_sym__unquoted_with_expr_token1, - STATE(11282), 1, + ACTIONS(17594), 1, + aux_sym__immediate_decimal_token1, + STATE(10768), 1, sym_comment, - [308481] = 3, + [306763] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18326), 1, - anon_sym_RBRACK, - STATE(11283), 1, + ACTIONS(17596), 1, + anon_sym_RPAREN, + STATE(10769), 1, sym_comment, - [308491] = 3, + [306773] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6928), 1, + ACTIONS(6537), 1, anon_sym_LBRACK2, - STATE(11284), 1, + STATE(10770), 1, sym_comment, - [308501] = 3, - ACTIONS(3), 1, + [306783] = 3, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(18328), 1, - anon_sym_RPAREN, - STATE(11285), 1, + ACTIONS(9331), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10771), 1, sym_comment, - [308511] = 3, + [306793] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18330), 1, - aux_sym__immediate_decimal_token1, - STATE(11286), 1, + ACTIONS(17598), 1, + sym_short_flag_identifier, + STATE(10772), 1, sym_comment, - [308521] = 3, + [306803] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18332), 1, - anon_sym_EQ, - STATE(11287), 1, + ACTIONS(17600), 1, + anon_sym_RPAREN, + STATE(10773), 1, sym_comment, - [308531] = 3, + [306813] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18334), 1, - anon_sym_EQ_GT, - STATE(11288), 1, + ACTIONS(17602), 1, + anon_sym_RBRACE, + STATE(10774), 1, sym_comment, - [308541] = 3, + [306823] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18336), 1, - anon_sym_RBRACE, - STATE(11289), 1, + ACTIONS(17604), 1, + anon_sym_RPAREN, + STATE(10775), 1, sym_comment, - [308551] = 3, + [306833] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18338), 1, + ACTIONS(17606), 1, anon_sym_RBRACE, - STATE(11290), 1, + STATE(10776), 1, sym_comment, - [308561] = 3, + [306843] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6867), 1, + ACTIONS(6350), 1, anon_sym_LBRACK2, - STATE(11291), 1, + STATE(10777), 1, sym_comment, - [308571] = 3, + [306853] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18340), 1, - aux_sym__immediate_decimal_token1, - STATE(11292), 1, + ACTIONS(17608), 1, + anon_sym_RPAREN, + STATE(10778), 1, sym_comment, - [308581] = 3, + [306863] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18342), 1, + ACTIONS(17610), 1, anon_sym_RPAREN, - STATE(11293), 1, + STATE(10779), 1, sym_comment, - [308591] = 3, + [306873] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18344), 1, + ACTIONS(17612), 1, aux_sym__immediate_decimal_token1, - STATE(11294), 1, + STATE(10780), 1, sym_comment, - [308601] = 3, - ACTIONS(113), 1, + [306883] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14236), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(11295), 1, + ACTIONS(17614), 1, + anon_sym_RPAREN, + STATE(10781), 1, sym_comment, - [308611] = 3, + [306893] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18346), 1, - anon_sym_RPAREN, - STATE(11296), 1, + ACTIONS(17616), 1, + anon_sym_RBRACE, + STATE(10782), 1, sym_comment, - [308621] = 3, + [306903] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7333), 1, + ACTIONS(6899), 1, anon_sym_LBRACK2, - STATE(11297), 1, + STATE(10783), 1, sym_comment, - [308631] = 3, - ACTIONS(3), 1, + [306913] = 3, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(18348), 1, - anon_sym_RPAREN, - STATE(11298), 1, + ACTIONS(7121), 1, + aux_sym__unquoted_in_list_token7, + STATE(10784), 1, sym_comment, - [308641] = 3, + [306923] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18350), 1, - anon_sym_RPAREN, - STATE(11299), 1, + ACTIONS(17618), 1, + anon_sym_RBRACE, + STATE(10785), 1, sym_comment, - [308651] = 3, + [306933] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9407), 1, - aux_sym_unquoted_token6, - STATE(11300), 1, + ACTIONS(17620), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10786), 1, sym_comment, - [308661] = 3, + [306943] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18352), 1, - anon_sym_RBRACE, - STATE(11301), 1, + ACTIONS(17622), 1, + anon_sym_EQ, + STATE(10787), 1, sym_comment, - [308671] = 3, + [306953] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18354), 1, + ACTIONS(17624), 1, anon_sym_RPAREN, - STATE(11302), 1, + STATE(10788), 1, sym_comment, - [308681] = 3, + [306963] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1724), 1, + ACTIONS(1520), 1, anon_sym_LBRACK2, - STATE(11303), 1, + STATE(10789), 1, + sym_comment, + [306973] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(17626), 1, + aux_sym__immediate_decimal_token1, + STATE(10790), 1, sym_comment, - [308691] = 3, + [306983] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(18356), 1, - sym__entry_separator, - STATE(11304), 1, + ACTIONS(1716), 1, + aux_sym_unquoted_token6, + STATE(10791), 1, sym_comment, - [308701] = 3, + [306993] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18358), 1, - anon_sym_RBRACE, - STATE(11305), 1, + ACTIONS(17628), 1, + anon_sym_RBRACK, + STATE(10792), 1, sym_comment, - [308711] = 3, + [307003] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18360), 1, - anon_sym_RBRACE, - STATE(11306), 1, + ACTIONS(17630), 1, + anon_sym_RPAREN, + STATE(10793), 1, sym_comment, - [308721] = 3, + [307013] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18362), 1, - anon_sym_RBRACE, - STATE(11307), 1, + ACTIONS(1219), 1, + anon_sym_LBRACK2, + STATE(10794), 1, sym_comment, - [308731] = 3, + [307023] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1425), 1, - anon_sym_LBRACK2, - STATE(11308), 1, + ACTIONS(17632), 1, + anon_sym_RBRACE, + STATE(10795), 1, sym_comment, - [308741] = 3, + [307033] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18364), 1, - anon_sym_RPAREN, - STATE(11309), 1, + ACTIONS(17634), 1, + anon_sym_RBRACE, + STATE(10796), 1, sym_comment, - [308751] = 3, + [307043] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18366), 1, - aux_sym__immediate_decimal_token1, - STATE(11310), 1, + ACTIONS(17636), 1, + anon_sym_RPAREN, + STATE(10797), 1, sym_comment, - [308761] = 3, + [307053] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10998), 1, + ACTIONS(17638), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(11311), 1, - sym_comment, - [308771] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(18368), 1, - anon_sym_RBRACK, - STATE(11312), 1, + STATE(10798), 1, sym_comment, - [308781] = 3, + [307063] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1263), 1, + ACTIONS(1147), 1, anon_sym_LBRACK2, - STATE(11313), 1, + STATE(10799), 1, sym_comment, - [308791] = 3, - ACTIONS(113), 1, + [307073] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9673), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(11314), 1, + ACTIONS(17640), 1, + aux_sym__immediate_decimal_token1, + STATE(10800), 1, sym_comment, - [308801] = 3, + [307083] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10524), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(11315), 1, + ACTIONS(2229), 1, + aux_sym__unquoted_in_list_token3, + STATE(10801), 1, sym_comment, - [308811] = 3, + [307093] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(18370), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(11316), 1, + ACTIONS(8828), 1, + aux_sym_unquoted_token6, + STATE(10802), 1, sym_comment, - [308821] = 3, + [307103] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18372), 1, - anon_sym_RPAREN, - STATE(11317), 1, + ACTIONS(17642), 1, + aux_sym__immediate_decimal_token1, + STATE(10803), 1, sym_comment, - [308831] = 3, + [307113] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5291), 1, + ACTIONS(5283), 1, anon_sym_LBRACK2, - STATE(11318), 1, + STATE(10804), 1, sym_comment, - [308841] = 3, + [307123] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18374), 1, - anon_sym_RPAREN, - STATE(11319), 1, + ACTIONS(17644), 1, + aux_sym__immediate_decimal_token1, + STATE(10805), 1, sym_comment, - [308851] = 3, + [307133] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18376), 1, - aux_sym__immediate_decimal_token1, - STATE(11320), 1, + ACTIONS(17646), 1, + anon_sym_RBRACE, + STATE(10806), 1, sym_comment, - [308861] = 3, + [307143] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18378), 1, - anon_sym_RBRACE, - STATE(11321), 1, + ACTIONS(17648), 1, + anon_sym_RPAREN, + STATE(10807), 1, sym_comment, - [308871] = 3, - ACTIONS(113), 1, + [307153] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8735), 1, - aux_sym__unquoted_in_list_token3, - STATE(11322), 1, + ACTIONS(17650), 1, + aux_sym__immediate_decimal_token1, + STATE(10808), 1, sym_comment, - [308881] = 3, + [307163] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5073), 1, + ACTIONS(4769), 1, anon_sym_LBRACK2, - STATE(11323), 1, + STATE(10809), 1, sym_comment, - [308891] = 3, + [307173] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18380), 1, - anon_sym_RPAREN, - STATE(11324), 1, + ACTIONS(17652), 1, + anon_sym_RBRACE, + STATE(10810), 1, + sym_comment, + [307183] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(17654), 1, + anon_sym_RBRACK, + STATE(10811), 1, sym_comment, - [308901] = 3, + [307193] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(7597), 1, - aux_sym_unquoted_token6, - STATE(11325), 1, + ACTIONS(2362), 1, + aux_sym__unquoted_in_list_token3, + STATE(10812), 1, sym_comment, - [308911] = 3, + [307203] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18382), 1, - anon_sym_RBRACK, - STATE(11326), 1, + ACTIONS(17656), 1, + aux_sym__immediate_decimal_token1, + STATE(10813), 1, sym_comment, - [308921] = 3, + [307213] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18384), 1, - anon_sym_RPAREN, - STATE(11327), 1, + ACTIONS(17658), 1, + aux_sym__immediate_decimal_token1, + STATE(10814), 1, sym_comment, - [308931] = 3, + [307223] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18386), 1, + ACTIONS(17660), 1, anon_sym_RPAREN, - STATE(11328), 1, + STATE(10815), 1, sym_comment, - [308941] = 3, + [307233] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18388), 1, + ACTIONS(17662), 1, aux_sym__immediate_decimal_token1, - STATE(11329), 1, + STATE(10816), 1, sym_comment, - [308951] = 3, + [307243] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(9638), 1, - aux_sym_unquoted_token6, - STATE(11330), 1, - sym_comment, - [308961] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(18390), 1, - sym_short_flag_identifier, - STATE(11331), 1, + ACTIONS(10037), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10817), 1, sym_comment, - [308971] = 3, + [307253] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18392), 1, - anon_sym_RBRACE, - STATE(11332), 1, + ACTIONS(17664), 1, + anon_sym_RPAREN, + STATE(10818), 1, sym_comment, - [308981] = 3, - ACTIONS(3), 1, + [307263] = 3, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(14506), 1, - aux_sym__immediate_decimal_token1, - STATE(11333), 1, + ACTIONS(9193), 1, + aux_sym_unquoted_token6, + STATE(10819), 1, sym_comment, - [308991] = 3, + [307273] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18394), 1, - anon_sym_RBRACK, - STATE(11334), 1, + ACTIONS(17666), 1, + anon_sym_RPAREN, + STATE(10820), 1, sym_comment, - [309001] = 3, + [307283] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18396), 1, + ACTIONS(17668), 1, anon_sym_RBRACE, - STATE(11335), 1, + STATE(10821), 1, sym_comment, - [309011] = 3, + [307293] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18398), 1, + ACTIONS(17670), 1, anon_sym_RPAREN, - STATE(11336), 1, + STATE(10822), 1, sym_comment, - [309021] = 3, + [307303] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18400), 1, + ACTIONS(17672), 1, aux_sym__immediate_decimal_token1, - STATE(11337), 1, + STATE(10823), 1, sym_comment, - [309031] = 3, + [307313] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18402), 1, + ACTIONS(17674), 1, anon_sym_RPAREN, - STATE(11338), 1, + STATE(10824), 1, sym_comment, - [309041] = 3, + [307323] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18404), 1, - anon_sym_RBRACE, - STATE(11339), 1, + ACTIONS(17676), 1, + sym_short_flag_identifier, + STATE(10825), 1, sym_comment, - [309051] = 3, + [307333] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18406), 1, - aux_sym__immediate_decimal_token1, - STATE(11340), 1, + ACTIONS(17678), 1, + anon_sym_RBRACK, + STATE(10826), 1, sym_comment, - [309061] = 3, - ACTIONS(3), 1, + [307343] = 3, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(18408), 1, - anon_sym_EQ, - STATE(11341), 1, + ACTIONS(17680), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10827), 1, sym_comment, - [309071] = 3, + [307353] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18410), 1, - anon_sym_RPAREN, - STATE(11342), 1, + ACTIONS(467), 1, + ts_builtin_sym_end, + STATE(10828), 1, sym_comment, - [309081] = 3, + [307363] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18412), 1, - anon_sym_RBRACE, - STATE(11343), 1, + ACTIONS(17682), 1, + anon_sym_RPAREN, + STATE(10829), 1, sym_comment, - [309091] = 3, + [307373] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18414), 1, - anon_sym_RPAREN, - STATE(11344), 1, + ACTIONS(17684), 1, + aux_sym__immediate_decimal_token1, + STATE(10830), 1, sym_comment, - [309101] = 3, - ACTIONS(3), 1, + [307383] = 3, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(18416), 1, - anon_sym_EQ, - STATE(11345), 1, + ACTIONS(9141), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10831), 1, sym_comment, - [309111] = 3, + [307393] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18418), 1, - aux_sym__immediate_decimal_token1, - STATE(11346), 1, + ACTIONS(17686), 1, + anon_sym_RBRACE, + STATE(10832), 1, sym_comment, - [309121] = 3, - ACTIONS(3), 1, + [307403] = 3, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(18420), 1, - anon_sym_RPAREN, - STATE(11347), 1, + ACTIONS(3310), 1, + aux_sym_unquoted_token6, + STATE(10833), 1, sym_comment, - [309131] = 3, + [307413] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18422), 1, - anon_sym_RBRACE, - STATE(11348), 1, + ACTIONS(17688), 1, + anon_sym_RPAREN, + STATE(10834), 1, sym_comment, - [309141] = 3, + [307423] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(593), 1, - ts_builtin_sym_end, - STATE(11349), 1, + ACTIONS(17690), 1, + anon_sym_RPAREN, + STATE(10835), 1, sym_comment, - [309151] = 3, + [307433] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18424), 1, - anon_sym_SEMI, - STATE(11350), 1, + ACTIONS(17692), 1, + anon_sym_RBRACE, + STATE(10836), 1, sym_comment, - [309161] = 3, + [307443] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17390), 1, - sym_short_flag_identifier, - STATE(11351), 1, + ACTIONS(17694), 1, + anon_sym_RPAREN, + STATE(10837), 1, sym_comment, - [309171] = 3, + [307453] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17332), 1, + ACTIONS(16680), 1, anon_sym_LPAREN2, - STATE(11352), 1, + STATE(10838), 1, sym_comment, - [309181] = 3, - ACTIONS(113), 1, + [307463] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18426), 1, - aux_sym_shebang_token1, - STATE(11353), 1, + ACTIONS(17696), 1, + aux_sym__immediate_decimal_token1, + STATE(10839), 1, sym_comment, - [309191] = 3, - ACTIONS(113), 1, + [307473] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, - aux_sym_unquoted_token6, - STATE(11354), 1, + ACTIONS(17698), 1, + anon_sym_EQ, + STATE(10840), 1, sym_comment, - [309201] = 3, + [307483] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6355), 1, + ACTIONS(17700), 1, anon_sym_RBRACE, - STATE(11355), 1, + STATE(10841), 1, sym_comment, - [309211] = 3, + [307493] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18428), 1, - anon_sym_RPAREN, - STATE(11356), 1, + ACTIONS(17702), 1, + anon_sym_RBRACE, + STATE(10842), 1, sym_comment, - [309221] = 3, + [307503] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18430), 1, - aux_sym__immediate_decimal_token1, - STATE(11357), 1, + ACTIONS(17704), 1, + anon_sym_RPAREN, + STATE(10843), 1, sym_comment, - [309231] = 3, + [307513] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18432), 1, - anon_sym_RBRACK, - STATE(11358), 1, + ACTIONS(17706), 1, + sym_short_flag_identifier, + STATE(10844), 1, sym_comment, - [309241] = 3, + [307523] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(5421), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(11359), 1, + ACTIONS(17708), 1, + aux_sym_shebang_token1, + STATE(10845), 1, sym_comment, - [309251] = 3, + [307533] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18434), 1, + ACTIONS(17710), 1, anon_sym_in, - STATE(11360), 1, + STATE(10846), 1, sym_comment, - [309261] = 3, + [307543] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18436), 1, - anon_sym_RBRACE, - STATE(11361), 1, + ACTIONS(17712), 1, + anon_sym_RPAREN, + STATE(10847), 1, sym_comment, - [309271] = 3, + [307553] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18438), 1, - anon_sym_RPAREN, - STATE(11362), 1, + ACTIONS(17714), 1, + aux_sym__immediate_decimal_token1, + STATE(10848), 1, sym_comment, - [309281] = 3, + [307563] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10664), 1, - anon_sym_LBRACK2, - STATE(11363), 1, + ACTIONS(17716), 1, + anon_sym_EQ, + STATE(10849), 1, sym_comment, - [309291] = 3, + [307573] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18440), 1, + ACTIONS(17718), 1, anon_sym_in, - STATE(11364), 1, + STATE(10850), 1, sym_comment, - [309301] = 3, + [307583] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18442), 1, - anon_sym_RPAREN, - STATE(11365), 1, + ACTIONS(17720), 1, + aux_sym__immediate_decimal_token1, + STATE(10851), 1, sym_comment, - [309311] = 3, + [307593] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18444), 1, + ACTIONS(17722), 1, anon_sym_RBRACE, - STATE(11366), 1, + STATE(10852), 1, sym_comment, - [309321] = 3, - ACTIONS(3), 1, + [307603] = 3, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10694), 1, - aux_sym__immediate_decimal_token1, - STATE(11367), 1, + ACTIONS(17724), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10853), 1, sym_comment, - [309331] = 3, + [307613] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18446), 1, - anon_sym_RPAREN, - STATE(11368), 1, + ACTIONS(17726), 1, + anon_sym_RBRACK, + STATE(10854), 1, sym_comment, - [309341] = 3, + [307623] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18448), 1, - anon_sym_RBRACE, - STATE(11369), 1, + ACTIONS(17728), 1, + anon_sym_RPAREN, + STATE(10855), 1, sym_comment, - [309351] = 3, + [307633] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(18450), 1, + ACTIONS(9739), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(11370), 1, - sym_comment, - [309361] = 3, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(11873), 1, - aux_sym_unquoted_token6, - STATE(11371), 1, + STATE(10856), 1, sym_comment, - [309371] = 3, + [307643] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18452), 1, + ACTIONS(17730), 1, anon_sym_RPAREN, - STATE(11372), 1, - sym_comment, - [309381] = 3, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(8972), 1, - aux_sym_unquoted_token6, - STATE(11373), 1, + STATE(10857), 1, sym_comment, - [309391] = 3, + [307653] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18454), 1, - anon_sym_RBRACK, - STATE(11374), 1, + ACTIONS(17732), 1, + aux_sym__immediate_decimal_token1, + STATE(10858), 1, sym_comment, - [309401] = 3, + [307663] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18456), 1, - anon_sym_RPAREN, - STATE(11375), 1, + ACTIONS(17734), 1, + anon_sym_RBRACE, + STATE(10859), 1, sym_comment, - [309411] = 3, + [307673] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17270), 1, - sym_short_flag_identifier, - STATE(11376), 1, + ACTIONS(5115), 1, + anon_sym_in, + STATE(10860), 1, sym_comment, - [309421] = 3, + [307683] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18458), 1, - anon_sym_RBRACE, - STATE(11377), 1, + ACTIONS(17736), 1, + sym_short_flag_identifier, + STATE(10861), 1, sym_comment, - [309431] = 3, + [307693] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18460), 1, - anon_sym_RBRACE, - STATE(11378), 1, + ACTIONS(17738), 1, + aux_sym__immediate_decimal_token1, + STATE(10862), 1, sym_comment, - [309441] = 3, + [307703] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18462), 1, - sym_identifier, - STATE(11379), 1, + ACTIONS(8219), 1, + anon_sym_PIPE, + STATE(10863), 1, sym_comment, - [309451] = 3, + [307713] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18464), 1, - aux_sym__immediate_decimal_token1, - STATE(11380), 1, + ACTIONS(5139), 1, + anon_sym_in, + STATE(10864), 1, sym_comment, - [309461] = 3, + [307723] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18466), 1, - aux_sym__immediate_decimal_token1, - STATE(11381), 1, + ACTIONS(17740), 1, + anon_sym_RPAREN, + STATE(10865), 1, sym_comment, - [309471] = 3, + [307733] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(8322), 1, - aux_sym__unquoted_in_list_token3, - STATE(11382), 1, + ACTIONS(2362), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10866), 1, sym_comment, - [309481] = 3, + [307743] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18468), 1, - anon_sym_RBRACE, - STATE(11383), 1, + ACTIONS(17742), 1, + anon_sym_RPAREN, + STATE(10867), 1, sym_comment, - [309491] = 3, + [307753] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18470), 1, - anon_sym_RBRACK, - STATE(11384), 1, + ACTIONS(17744), 1, + aux_sym__immediate_decimal_token1, + STATE(10868), 1, sym_comment, - [309501] = 3, + [307763] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18472), 1, - sym_identifier, - STATE(11385), 1, + ACTIONS(17746), 1, + anon_sym_RBRACE, + STATE(10869), 1, + sym_comment, + [307773] = 3, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(17748), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10870), 1, sym_comment, - [309511] = 3, + [307783] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18474), 1, + ACTIONS(17750), 1, anon_sym_RBRACE, - STATE(11386), 1, + STATE(10871), 1, sym_comment, - [309521] = 3, + [307793] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18476), 1, + ACTIONS(17752), 1, aux_sym__immediate_decimal_token1, - STATE(11387), 1, + STATE(10872), 1, sym_comment, - [309531] = 3, + [307803] = 3, ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(10924), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(11388), 1, + ACTIONS(7449), 1, + aux_sym_unquoted_token6, + STATE(10873), 1, sym_comment, - [309541] = 3, + [307813] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14131), 1, - aux_sym__immediate_decimal_token1, - STATE(11389), 1, + ACTIONS(17754), 1, + anon_sym_RBRACE, + STATE(10874), 1, sym_comment, - [309551] = 3, + [307823] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18478), 1, - anon_sym_RPAREN, - STATE(11390), 1, + ACTIONS(17756), 1, + anon_sym_RBRACK, + STATE(10875), 1, sym_comment, - [309561] = 3, + [307833] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18480), 1, - sym_short_flag_identifier, - STATE(11391), 1, + ACTIONS(17758), 1, + anon_sym_RPAREN, + STATE(10876), 1, sym_comment, - [309571] = 3, - ACTIONS(3), 1, + [307843] = 3, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(18482), 1, - anon_sym_RPAREN, - STATE(11392), 1, + ACTIONS(17760), 1, + aux_sym__unquoted_in_list_token3, + STATE(10877), 1, sym_comment, - [309581] = 3, + [307853] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18484), 1, - anon_sym_LPAREN2, - STATE(11393), 1, + ACTIONS(17762), 1, + anon_sym_RPAREN, + STATE(10878), 1, sym_comment, - [309591] = 3, + [307863] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18486), 1, + ACTIONS(17764), 1, anon_sym_LPAREN2, - STATE(11394), 1, + STATE(10879), 1, sym_comment, - [309601] = 3, + [307873] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18488), 1, + ACTIONS(16715), 1, anon_sym_LPAREN2, - STATE(11395), 1, + STATE(10880), 1, sym_comment, - [309611] = 3, + [307883] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17418), 1, + ACTIONS(16355), 1, anon_sym_LPAREN2, - STATE(11396), 1, + STATE(10881), 1, sym_comment, - [309621] = 3, + [307893] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17051), 1, + ACTIONS(17766), 1, anon_sym_LPAREN2, - STATE(11397), 1, + STATE(10882), 1, sym_comment, - [309631] = 3, + [307903] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18490), 1, + ACTIONS(16733), 1, anon_sym_LPAREN2, - STATE(11398), 1, + STATE(10883), 1, sym_comment, - [309641] = 3, + [307913] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17268), 1, + ACTIONS(16793), 1, anon_sym_LPAREN2, - STATE(11399), 1, + STATE(10884), 1, sym_comment, - [309651] = 3, + [307923] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17286), 1, + ACTIONS(17768), 1, anon_sym_LPAREN2, - STATE(11400), 1, + STATE(10885), 1, sym_comment, - [309661] = 3, + [307933] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18492), 1, + ACTIONS(17770), 1, anon_sym_LPAREN2, - STATE(11401), 1, + STATE(10886), 1, sym_comment, - [309671] = 3, + [307943] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18494), 1, + ACTIONS(17772), 1, anon_sym_LPAREN2, - STATE(11402), 1, + STATE(10887), 1, sym_comment, - [309681] = 3, + [307953] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18496), 1, + ACTIONS(17774), 1, anon_sym_LPAREN2, - STATE(11403), 1, + STATE(10888), 1, sym_comment, - [309691] = 3, + [307963] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18498), 1, + ACTIONS(17776), 1, anon_sym_LPAREN2, - STATE(11404), 1, + STATE(10889), 1, sym_comment, - [309701] = 3, + [307973] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18500), 1, + ACTIONS(17778), 1, anon_sym_LPAREN2, - STATE(11405), 1, + STATE(10890), 1, sym_comment, - [309711] = 3, + [307983] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18502), 1, + ACTIONS(17780), 1, anon_sym_LPAREN2, - STATE(11406), 1, + STATE(10891), 1, sym_comment, - [309721] = 3, + [307993] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18504), 1, + ACTIONS(17782), 1, anon_sym_LPAREN2, - STATE(11407), 1, + STATE(10892), 1, sym_comment, - [309731] = 3, + [308003] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18506), 1, + ACTIONS(17784), 1, anon_sym_LPAREN2, - STATE(11408), 1, + STATE(10893), 1, sym_comment, - [309741] = 3, + [308013] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18508), 1, + ACTIONS(17786), 1, anon_sym_LPAREN2, - STATE(11409), 1, + STATE(10894), 1, sym_comment, - [309751] = 3, + [308023] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18510), 1, + ACTIONS(17788), 1, anon_sym_LPAREN2, - STATE(11410), 1, - sym_comment, - [309761] = 3, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(2437), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(11411), 1, + STATE(10895), 1, sym_comment, - [309771] = 3, + [308033] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18512), 1, + ACTIONS(17790), 1, anon_sym_LPAREN2, - STATE(11412), 1, + STATE(10896), 1, sym_comment, - [309781] = 3, + [308043] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18514), 1, + ACTIONS(17792), 1, anon_sym_LPAREN2, - STATE(11413), 1, + STATE(10897), 1, sym_comment, - [309791] = 3, + [308053] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18516), 1, + ACTIONS(17794), 1, anon_sym_LPAREN2, - STATE(11414), 1, + STATE(10898), 1, sym_comment, - [309801] = 3, + [308063] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18518), 1, + ACTIONS(17796), 1, anon_sym_LPAREN2, - STATE(11415), 1, + STATE(10899), 1, sym_comment, - [309811] = 3, + [308073] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18520), 1, - anon_sym_RBRACE, - STATE(11416), 1, + ACTIONS(17798), 1, + aux_sym__immediate_decimal_token1, + STATE(10900), 1, sym_comment, - [309821] = 3, + [308083] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18522), 1, - anon_sym_RPAREN, - STATE(11417), 1, + ACTIONS(4198), 1, + anon_sym_in, + STATE(10901), 1, sym_comment, - [309831] = 3, - ACTIONS(3), 1, + [308093] = 3, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(18524), 1, - anon_sym_RPAREN, - STATE(11418), 1, + ACTIONS(8606), 1, + aux_sym_unquoted_token6, + STATE(10902), 1, sym_comment, - [309841] = 3, + [308103] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18526), 1, - aux_sym__immediate_decimal_token1, - STATE(11419), 1, + ACTIONS(17800), 1, + anon_sym_RBRACK, + STATE(10903), 1, sym_comment, - [309851] = 3, + [308113] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18528), 1, - anon_sym_RBRACE, - STATE(11420), 1, + ACTIONS(17802), 1, + anon_sym_RPAREN, + STATE(10904), 1, sym_comment, - [309861] = 3, + [308123] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18530), 1, + ACTIONS(17804), 1, anon_sym_SEMI, - STATE(11421), 1, + STATE(10905), 1, sym_comment, - [309871] = 3, + [308133] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13171), 1, - aux_sym__immediate_decimal_token1, - STATE(11422), 1, + ACTIONS(17806), 1, + anon_sym_RBRACE, + STATE(10906), 1, sym_comment, - [309881] = 3, - ACTIONS(113), 1, + [308143] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18532), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(11423), 1, + ACTIONS(17808), 1, + sym_short_flag_identifier, + STATE(10907), 1, sym_comment, - [309891] = 3, - ACTIONS(113), 1, + [308153] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18534), 1, - aux_sym__unquoted_with_expr_token1, - STATE(11424), 1, + ACTIONS(17810), 1, + anon_sym_RBRACE, + STATE(10908), 1, sym_comment, - [309901] = 3, + [308163] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18536), 1, - anon_sym_make, - STATE(11425), 1, + ACTIONS(9985), 1, + anon_sym_LBRACK2, + STATE(10909), 1, sym_comment, - [309911] = 1, - ACTIONS(18538), 1, + [308173] = 1, + ACTIONS(17812), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(3139)] = 0, - [SMALL_STATE(3140)] = 73, - [SMALL_STATE(3141)] = 146, - [SMALL_STATE(3142)] = 219, - [SMALL_STATE(3143)] = 292, - [SMALL_STATE(3144)] = 371, - [SMALL_STATE(3145)] = 450, - [SMALL_STATE(3146)] = 529, - [SMALL_STATE(3147)] = 606, - [SMALL_STATE(3148)] = 679, - [SMALL_STATE(3149)] = 751, - [SMALL_STATE(3150)] = 823, - [SMALL_STATE(3151)] = 901, - [SMALL_STATE(3152)] = 979, - [SMALL_STATE(3153)] = 1057, - [SMALL_STATE(3154)] = 1135, - [SMALL_STATE(3155)] = 1213, - [SMALL_STATE(3156)] = 1289, - [SMALL_STATE(3157)] = 1367, - [SMALL_STATE(3158)] = 1517, - [SMALL_STATE(3159)] = 1593, - [SMALL_STATE(3160)] = 1669, - [SMALL_STATE(3161)] = 1743, - [SMALL_STATE(3162)] = 1821, - [SMALL_STATE(3163)] = 1895, - [SMALL_STATE(3164)] = 1973, - [SMALL_STATE(3165)] = 2051, - [SMALL_STATE(3166)] = 2129, - [SMALL_STATE(3167)] = 2207, - [SMALL_STATE(3168)] = 2283, - [SMALL_STATE(3169)] = 2355, - [SMALL_STATE(3170)] = 2431, - [SMALL_STATE(3171)] = 2581, - [SMALL_STATE(3172)] = 2663, - [SMALL_STATE(3173)] = 2741, - [SMALL_STATE(3174)] = 2819, - [SMALL_STATE(3175)] = 2891, - [SMALL_STATE(3176)] = 3037, - [SMALL_STATE(3177)] = 3184, - [SMALL_STATE(3178)] = 3257, - [SMALL_STATE(3179)] = 3404, - [SMALL_STATE(3180)] = 3477, - [SMALL_STATE(3181)] = 3624, - [SMALL_STATE(3182)] = 3771, - [SMALL_STATE(3183)] = 3918, - [SMALL_STATE(3184)] = 3989, - [SMALL_STATE(3185)] = 4136, - [SMALL_STATE(3186)] = 4209, - [SMALL_STATE(3187)] = 4280, - [SMALL_STATE(3188)] = 4423, - [SMALL_STATE(3189)] = 4570, - [SMALL_STATE(3190)] = 4717, - [SMALL_STATE(3191)] = 4864, - [SMALL_STATE(3192)] = 5011, - [SMALL_STATE(3193)] = 5158, - [SMALL_STATE(3194)] = 5305, - [SMALL_STATE(3195)] = 5452, - [SMALL_STATE(3196)] = 5599, - [SMALL_STATE(3197)] = 5746, - [SMALL_STATE(3198)] = 5893, - [SMALL_STATE(3199)] = 6040, - [SMALL_STATE(3200)] = 6187, - [SMALL_STATE(3201)] = 6334, - [SMALL_STATE(3202)] = 6481, - [SMALL_STATE(3203)] = 6624, - [SMALL_STATE(3204)] = 6697, - [SMALL_STATE(3205)] = 6844, - [SMALL_STATE(3206)] = 6917, - [SMALL_STATE(3207)] = 7064, - [SMALL_STATE(3208)] = 7211, - [SMALL_STATE(3209)] = 7358, - [SMALL_STATE(3210)] = 7505, - [SMALL_STATE(3211)] = 7652, - [SMALL_STATE(3212)] = 7799, - [SMALL_STATE(3213)] = 7946, - [SMALL_STATE(3214)] = 8093, - [SMALL_STATE(3215)] = 8170, - [SMALL_STATE(3216)] = 8317, - [SMALL_STATE(3217)] = 8394, - [SMALL_STATE(3218)] = 8541, - [SMALL_STATE(3219)] = 8618, - [SMALL_STATE(3220)] = 8765, - [SMALL_STATE(3221)] = 8840, - [SMALL_STATE(3222)] = 8987, - [SMALL_STATE(3223)] = 9134, - [SMALL_STATE(3224)] = 9281, - [SMALL_STATE(3225)] = 9428, - [SMALL_STATE(3226)] = 9575, - [SMALL_STATE(3227)] = 9722, - [SMALL_STATE(3228)] = 9869, - [SMALL_STATE(3229)] = 10016, - [SMALL_STATE(3230)] = 10163, - [SMALL_STATE(3231)] = 10310, - [SMALL_STATE(3232)] = 10457, - [SMALL_STATE(3233)] = 10604, - [SMALL_STATE(3234)] = 10751, - [SMALL_STATE(3235)] = 10898, - [SMALL_STATE(3236)] = 11045, - [SMALL_STATE(3237)] = 11192, - [SMALL_STATE(3238)] = 11339, - [SMALL_STATE(3239)] = 11486, - [SMALL_STATE(3240)] = 11633, - [SMALL_STATE(3241)] = 11780, - [SMALL_STATE(3242)] = 11927, - [SMALL_STATE(3243)] = 12074, - [SMALL_STATE(3244)] = 12219, - [SMALL_STATE(3245)] = 12366, - [SMALL_STATE(3246)] = 12513, - [SMALL_STATE(3247)] = 12660, - [SMALL_STATE(3248)] = 12807, - [SMALL_STATE(3249)] = 12954, - [SMALL_STATE(3250)] = 13101, - [SMALL_STATE(3251)] = 13248, - [SMALL_STATE(3252)] = 13395, - [SMALL_STATE(3253)] = 13542, - [SMALL_STATE(3254)] = 13689, - [SMALL_STATE(3255)] = 13836, - [SMALL_STATE(3256)] = 13983, - [SMALL_STATE(3257)] = 14130, - [SMALL_STATE(3258)] = 14277, - [SMALL_STATE(3259)] = 14424, - [SMALL_STATE(3260)] = 14571, - [SMALL_STATE(3261)] = 14718, - [SMALL_STATE(3262)] = 14865, - [SMALL_STATE(3263)] = 15012, - [SMALL_STATE(3264)] = 15159, - [SMALL_STATE(3265)] = 15306, - [SMALL_STATE(3266)] = 15453, - [SMALL_STATE(3267)] = 15600, - [SMALL_STATE(3268)] = 15747, - [SMALL_STATE(3269)] = 15894, - [SMALL_STATE(3270)] = 16041, - [SMALL_STATE(3271)] = 16188, - [SMALL_STATE(3272)] = 16335, - [SMALL_STATE(3273)] = 16482, - [SMALL_STATE(3274)] = 16629, - [SMALL_STATE(3275)] = 16776, - [SMALL_STATE(3276)] = 16923, - [SMALL_STATE(3277)] = 17070, - [SMALL_STATE(3278)] = 17217, - [SMALL_STATE(3279)] = 17288, - [SMALL_STATE(3280)] = 17359, - [SMALL_STATE(3281)] = 17506, - [SMALL_STATE(3282)] = 17577, - [SMALL_STATE(3283)] = 17724, - [SMALL_STATE(3284)] = 17871, - [SMALL_STATE(3285)] = 18018, - [SMALL_STATE(3286)] = 18165, - [SMALL_STATE(3287)] = 18240, - [SMALL_STATE(3288)] = 18387, - [SMALL_STATE(3289)] = 18534, - [SMALL_STATE(3290)] = 18681, - [SMALL_STATE(3291)] = 18828, - [SMALL_STATE(3292)] = 18975, - [SMALL_STATE(3293)] = 19122, - [SMALL_STATE(3294)] = 19269, - [SMALL_STATE(3295)] = 19342, - [SMALL_STATE(3296)] = 19415, - [SMALL_STATE(3297)] = 19562, - [SMALL_STATE(3298)] = 19709, - [SMALL_STATE(3299)] = 19856, - [SMALL_STATE(3300)] = 20003, - [SMALL_STATE(3301)] = 20150, - [SMALL_STATE(3302)] = 20297, - [SMALL_STATE(3303)] = 20444, - [SMALL_STATE(3304)] = 20591, - [SMALL_STATE(3305)] = 20738, - [SMALL_STATE(3306)] = 20885, - [SMALL_STATE(3307)] = 21032, - [SMALL_STATE(3308)] = 21179, - [SMALL_STATE(3309)] = 21326, - [SMALL_STATE(3310)] = 21473, - [SMALL_STATE(3311)] = 21620, - [SMALL_STATE(3312)] = 21767, - [SMALL_STATE(3313)] = 21914, - [SMALL_STATE(3314)] = 22061, - [SMALL_STATE(3315)] = 22208, - [SMALL_STATE(3316)] = 22355, - [SMALL_STATE(3317)] = 22426, - [SMALL_STATE(3318)] = 22573, - [SMALL_STATE(3319)] = 22720, - [SMALL_STATE(3320)] = 22867, - [SMALL_STATE(3321)] = 23014, - [SMALL_STATE(3322)] = 23085, - [SMALL_STATE(3323)] = 23232, - [SMALL_STATE(3324)] = 23379, - [SMALL_STATE(3325)] = 23526, - [SMALL_STATE(3326)] = 23673, - [SMALL_STATE(3327)] = 23820, - [SMALL_STATE(3328)] = 23967, - [SMALL_STATE(3329)] = 24114, - [SMALL_STATE(3330)] = 24261, - [SMALL_STATE(3331)] = 24408, - [SMALL_STATE(3332)] = 24555, - [SMALL_STATE(3333)] = 24702, - [SMALL_STATE(3334)] = 24849, - [SMALL_STATE(3335)] = 24996, - [SMALL_STATE(3336)] = 25143, - [SMALL_STATE(3337)] = 25290, - [SMALL_STATE(3338)] = 25437, - [SMALL_STATE(3339)] = 25584, - [SMALL_STATE(3340)] = 25731, - [SMALL_STATE(3341)] = 25878, - [SMALL_STATE(3342)] = 26025, - [SMALL_STATE(3343)] = 26172, - [SMALL_STATE(3344)] = 26319, - [SMALL_STATE(3345)] = 26466, - [SMALL_STATE(3346)] = 26613, - [SMALL_STATE(3347)] = 26760, - [SMALL_STATE(3348)] = 26905, - [SMALL_STATE(3349)] = 27052, - [SMALL_STATE(3350)] = 27199, - [SMALL_STATE(3351)] = 27274, - [SMALL_STATE(3352)] = 27421, - [SMALL_STATE(3353)] = 27568, - [SMALL_STATE(3354)] = 27715, - [SMALL_STATE(3355)] = 27790, - [SMALL_STATE(3356)] = 27937, - [SMALL_STATE(3357)] = 28008, - [SMALL_STATE(3358)] = 28079, - [SMALL_STATE(3359)] = 28226, - [SMALL_STATE(3360)] = 28302, - [SMALL_STATE(3361)] = 28374, - [SMALL_STATE(3362)] = 28446, - [SMALL_STATE(3363)] = 28516, - [SMALL_STATE(3364)] = 28590, - [SMALL_STATE(3365)] = 28664, - [SMALL_STATE(3366)] = 28738, - [SMALL_STATE(3367)] = 28808, - [SMALL_STATE(3368)] = 28880, - [SMALL_STATE(3369)] = 28956, - [SMALL_STATE(3370)] = 29026, - [SMALL_STATE(3371)] = 29096, - [SMALL_STATE(3372)] = 29166, - [SMALL_STATE(3373)] = 29242, - [SMALL_STATE(3374)] = 29312, - [SMALL_STATE(3375)] = 29454, - [SMALL_STATE(3376)] = 29528, - [SMALL_STATE(3377)] = 29598, - [SMALL_STATE(3378)] = 29740, - [SMALL_STATE(3379)] = 29882, - [SMALL_STATE(3380)] = 29952, - [SMALL_STATE(3381)] = 30094, - [SMALL_STATE(3382)] = 30168, - [SMALL_STATE(3383)] = 30240, - [SMALL_STATE(3384)] = 30312, - [SMALL_STATE(3385)] = 30382, - [SMALL_STATE(3386)] = 30454, - [SMALL_STATE(3387)] = 30596, - [SMALL_STATE(3388)] = 30736, - [SMALL_STATE(3389)] = 30876, - [SMALL_STATE(3390)] = 30948, - [SMALL_STATE(3391)] = 31020, - [SMALL_STATE(3392)] = 31090, - [SMALL_STATE(3393)] = 31162, - [SMALL_STATE(3394)] = 31236, - [SMALL_STATE(3395)] = 31310, - [SMALL_STATE(3396)] = 31380, - [SMALL_STATE(3397)] = 31450, - [SMALL_STATE(3398)] = 31522, - [SMALL_STATE(3399)] = 31592, - [SMALL_STATE(3400)] = 31664, - [SMALL_STATE(3401)] = 31806, - [SMALL_STATE(3402)] = 31948, - [SMALL_STATE(3403)] = 32020, - [SMALL_STATE(3404)] = 32090, - [SMALL_STATE(3405)] = 32160, - [SMALL_STATE(3406)] = 32302, - [SMALL_STATE(3407)] = 32444, - [SMALL_STATE(3408)] = 32514, - [SMALL_STATE(3409)] = 32584, - [SMALL_STATE(3410)] = 32721, - [SMALL_STATE(3411)] = 32790, - [SMALL_STATE(3412)] = 32859, - [SMALL_STATE(3413)] = 32928, - [SMALL_STATE(3414)] = 33065, - [SMALL_STATE(3415)] = 33134, - [SMALL_STATE(3416)] = 33203, - [SMALL_STATE(3417)] = 33272, - [SMALL_STATE(3418)] = 33341, - [SMALL_STATE(3419)] = 33410, - [SMALL_STATE(3420)] = 33479, - [SMALL_STATE(3421)] = 33548, - [SMALL_STATE(3422)] = 33685, - [SMALL_STATE(3423)] = 33754, - [SMALL_STATE(3424)] = 33823, - [SMALL_STATE(3425)] = 33892, - [SMALL_STATE(3426)] = 33965, - [SMALL_STATE(3427)] = 34036, - [SMALL_STATE(3428)] = 34107, - [SMALL_STATE(3429)] = 34180, - [SMALL_STATE(3430)] = 34249, - [SMALL_STATE(3431)] = 34322, - [SMALL_STATE(3432)] = 34391, - [SMALL_STATE(3433)] = 34460, - [SMALL_STATE(3434)] = 34533, - [SMALL_STATE(3435)] = 34670, - [SMALL_STATE(3436)] = 34739, - [SMALL_STATE(3437)] = 34808, - [SMALL_STATE(3438)] = 34877, - [SMALL_STATE(3439)] = 34946, - [SMALL_STATE(3440)] = 35015, - [SMALL_STATE(3441)] = 35152, - [SMALL_STATE(3442)] = 35221, - [SMALL_STATE(3443)] = 35290, - [SMALL_STATE(3444)] = 35363, - [SMALL_STATE(3445)] = 35436, - [SMALL_STATE(3446)] = 35509, - [SMALL_STATE(3447)] = 35578, - [SMALL_STATE(3448)] = 35647, - [SMALL_STATE(3449)] = 35784, - [SMALL_STATE(3450)] = 35857, - [SMALL_STATE(3451)] = 35926, - [SMALL_STATE(3452)] = 35995, - [SMALL_STATE(3453)] = 36064, - [SMALL_STATE(3454)] = 36133, - [SMALL_STATE(3455)] = 36202, - [SMALL_STATE(3456)] = 36271, - [SMALL_STATE(3457)] = 36340, - [SMALL_STATE(3458)] = 36409, - [SMALL_STATE(3459)] = 36478, - [SMALL_STATE(3460)] = 36547, - [SMALL_STATE(3461)] = 36616, - [SMALL_STATE(3462)] = 36685, - [SMALL_STATE(3463)] = 36754, - [SMALL_STATE(3464)] = 36823, - [SMALL_STATE(3465)] = 36892, - [SMALL_STATE(3466)] = 36961, - [SMALL_STATE(3467)] = 37030, - [SMALL_STATE(3468)] = 37099, - [SMALL_STATE(3469)] = 37168, - [SMALL_STATE(3470)] = 37237, - [SMALL_STATE(3471)] = 37306, - [SMALL_STATE(3472)] = 37375, - [SMALL_STATE(3473)] = 37450, - [SMALL_STATE(3474)] = 37519, - [SMALL_STATE(3475)] = 37588, - [SMALL_STATE(3476)] = 37671, - [SMALL_STATE(3477)] = 37748, - [SMALL_STATE(3478)] = 37835, - [SMALL_STATE(3479)] = 37910, - [SMALL_STATE(3480)] = 37981, - [SMALL_STATE(3481)] = 38060, - [SMALL_STATE(3482)] = 38149, - [SMALL_STATE(3483)] = 38240, - [SMALL_STATE(3484)] = 38333, - [SMALL_STATE(3485)] = 38428, - [SMALL_STATE(3486)] = 38497, - [SMALL_STATE(3487)] = 38594, - [SMALL_STATE(3488)] = 38693, - [SMALL_STATE(3489)] = 38794, - [SMALL_STATE(3490)] = 38931, - [SMALL_STATE(3491)] = 39068, - [SMALL_STATE(3492)] = 39137, - [SMALL_STATE(3493)] = 39274, - [SMALL_STATE(3494)] = 39343, - [SMALL_STATE(3495)] = 39480, - [SMALL_STATE(3496)] = 39617, - [SMALL_STATE(3497)] = 39686, - [SMALL_STATE(3498)] = 39823, - [SMALL_STATE(3499)] = 39960, - [SMALL_STATE(3500)] = 40097, - [SMALL_STATE(3501)] = 40234, - [SMALL_STATE(3502)] = 40303, - [SMALL_STATE(3503)] = 40440, - [SMALL_STATE(3504)] = 40577, - [SMALL_STATE(3505)] = 40646, - [SMALL_STATE(3506)] = 40714, - [SMALL_STATE(3507)] = 40782, - [SMALL_STATE(3508)] = 40850, - [SMALL_STATE(3509)] = 40918, - [SMALL_STATE(3510)] = 40988, - [SMALL_STATE(3511)] = 41058, - [SMALL_STATE(3512)] = 41126, - [SMALL_STATE(3513)] = 41196, - [SMALL_STATE(3514)] = 41268, - [SMALL_STATE(3515)] = 41340, - [SMALL_STATE(3516)] = 41410, - [SMALL_STATE(3517)] = 41480, - [SMALL_STATE(3518)] = 41552, - [SMALL_STATE(3519)] = 41619, - [SMALL_STATE(3520)] = 41688, - [SMALL_STATE(3521)] = 41755, - [SMALL_STATE(3522)] = 41822, - [SMALL_STATE(3523)] = 41889, - [SMALL_STATE(3524)] = 41956, - [SMALL_STATE(3525)] = 42023, - [SMALL_STATE(3526)] = 42090, - [SMALL_STATE(3527)] = 42157, - [SMALL_STATE(3528)] = 42226, - [SMALL_STATE(3529)] = 42293, - [SMALL_STATE(3530)] = 42360, - [SMALL_STATE(3531)] = 42427, - [SMALL_STATE(3532)] = 42494, - [SMALL_STATE(3533)] = 42561, - [SMALL_STATE(3534)] = 42630, - [SMALL_STATE(3535)] = 42697, - [SMALL_STATE(3536)] = 42764, - [SMALL_STATE(3537)] = 42831, - [SMALL_STATE(3538)] = 42898, - [SMALL_STATE(3539)] = 42965, - [SMALL_STATE(3540)] = 43032, - [SMALL_STATE(3541)] = 43099, - [SMALL_STATE(3542)] = 43166, - [SMALL_STATE(3543)] = 43233, - [SMALL_STATE(3544)] = 43300, - [SMALL_STATE(3545)] = 43367, - [SMALL_STATE(3546)] = 43436, - [SMALL_STATE(3547)] = 43503, - [SMALL_STATE(3548)] = 43572, - [SMALL_STATE(3549)] = 43639, - [SMALL_STATE(3550)] = 43706, - [SMALL_STATE(3551)] = 43775, - [SMALL_STATE(3552)] = 43842, - [SMALL_STATE(3553)] = 43910, - [SMALL_STATE(3554)] = 43976, - [SMALL_STATE(3555)] = 44042, - [SMALL_STATE(3556)] = 44108, - [SMALL_STATE(3557)] = 44174, - [SMALL_STATE(3558)] = 44240, - [SMALL_STATE(3559)] = 44306, - [SMALL_STATE(3560)] = 44372, - [SMALL_STATE(3561)] = 44438, - [SMALL_STATE(3562)] = 44504, - [SMALL_STATE(3563)] = 44570, - [SMALL_STATE(3564)] = 44636, - [SMALL_STATE(3565)] = 44702, - [SMALL_STATE(3566)] = 44768, - [SMALL_STATE(3567)] = 44834, - [SMALL_STATE(3568)] = 44900, - [SMALL_STATE(3569)] = 44966, - [SMALL_STATE(3570)] = 45032, - [SMALL_STATE(3571)] = 45098, - [SMALL_STATE(3572)] = 45164, - [SMALL_STATE(3573)] = 45230, - [SMALL_STATE(3574)] = 45298, - [SMALL_STATE(3575)] = 45364, - [SMALL_STATE(3576)] = 45430, - [SMALL_STATE(3577)] = 45496, - [SMALL_STATE(3578)] = 45562, - [SMALL_STATE(3579)] = 45628, - [SMALL_STATE(3580)] = 45694, - [SMALL_STATE(3581)] = 45760, - [SMALL_STATE(3582)] = 45826, - [SMALL_STATE(3583)] = 45892, - [SMALL_STATE(3584)] = 45958, - [SMALL_STATE(3585)] = 46047, - [SMALL_STATE(3586)] = 46112, - [SMALL_STATE(3587)] = 46196, - [SMALL_STATE(3588)] = 46280, - [SMALL_STATE(3589)] = 46370, - [SMALL_STATE(3590)] = 46460, - [SMALL_STATE(3591)] = 46550, - [SMALL_STATE(3592)] = 46640, - [SMALL_STATE(3593)] = 46725, - [SMALL_STATE(3594)] = 46792, - [SMALL_STATE(3595)] = 46873, - [SMALL_STATE(3596)] = 46940, - [SMALL_STATE(3597)] = 47021, - [SMALL_STATE(3598)] = 47102, - [SMALL_STATE(3599)] = 47183, - [SMALL_STATE(3600)] = 47264, - [SMALL_STATE(3601)] = 47345, - [SMALL_STATE(3602)] = 47426, - [SMALL_STATE(3603)] = 47507, - [SMALL_STATE(3604)] = 47588, - [SMALL_STATE(3605)] = 47669, - [SMALL_STATE(3606)] = 47754, - [SMALL_STATE(3607)] = 47835, - [SMALL_STATE(3608)] = 47916, - [SMALL_STATE(3609)] = 48001, - [SMALL_STATE(3610)] = 48065, - [SMALL_STATE(3611)] = 48143, - [SMALL_STATE(3612)] = 48225, - [SMALL_STATE(3613)] = 48307, - [SMALL_STATE(3614)] = 48389, - [SMALL_STATE(3615)] = 48471, - [SMALL_STATE(3616)] = 48553, - [SMALL_STATE(3617)] = 48631, - [SMALL_STATE(3618)] = 48709, - [SMALL_STATE(3619)] = 48791, - [SMALL_STATE(3620)] = 48857, - [SMALL_STATE(3621)] = 48939, - [SMALL_STATE(3622)] = 49021, - [SMALL_STATE(3623)] = 49103, - [SMALL_STATE(3624)] = 49181, - [SMALL_STATE(3625)] = 49259, - [SMALL_STATE(3626)] = 49337, - [SMALL_STATE(3627)] = 49401, - [SMALL_STATE(3628)] = 49479, - [SMALL_STATE(3629)] = 49543, - [SMALL_STATE(3630)] = 49625, - [SMALL_STATE(3631)] = 49689, - [SMALL_STATE(3632)] = 49753, - [SMALL_STATE(3633)] = 49819, - [SMALL_STATE(3634)] = 49885, - [SMALL_STATE(3635)] = 49967, - [SMALL_STATE(3636)] = 50049, - [SMALL_STATE(3637)] = 50113, - [SMALL_STATE(3638)] = 50174, - [SMALL_STATE(3639)] = 50239, - [SMALL_STATE(3640)] = 50304, - [SMALL_STATE(3641)] = 50383, - [SMALL_STATE(3642)] = 50462, - [SMALL_STATE(3643)] = 50541, - [SMALL_STATE(3644)] = 50604, - [SMALL_STATE(3645)] = 50669, - [SMALL_STATE(3646)] = 50732, - [SMALL_STATE(3647)] = 50811, - [SMALL_STATE(3648)] = 50872, - [SMALL_STATE(3649)] = 50951, - [SMALL_STATE(3650)] = 51014, - [SMALL_STATE(3651)] = 51075, - [SMALL_STATE(3652)] = 51136, - [SMALL_STATE(3653)] = 51201, - [SMALL_STATE(3654)] = 51262, - [SMALL_STATE(3655)] = 51339, - [SMALL_STATE(3656)] = 51400, - [SMALL_STATE(3657)] = 51460, - [SMALL_STATE(3658)] = 51538, - [SMALL_STATE(3659)] = 51616, - [SMALL_STATE(3660)] = 51678, - [SMALL_STATE(3661)] = 51740, - [SMALL_STATE(3662)] = 51800, - [SMALL_STATE(3663)] = 51864, - [SMALL_STATE(3664)] = 51942, - [SMALL_STATE(3665)] = 52002, - [SMALL_STATE(3666)] = 52064, - [SMALL_STATE(3667)] = 52142, - [SMALL_STATE(3668)] = 52206, - [SMALL_STATE(3669)] = 52270, - [SMALL_STATE(3670)] = 52332, - [SMALL_STATE(3671)] = 52410, - [SMALL_STATE(3672)] = 52472, - [SMALL_STATE(3673)] = 52550, - [SMALL_STATE(3674)] = 52612, - [SMALL_STATE(3675)] = 52674, - [SMALL_STATE(3676)] = 52752, - [SMALL_STATE(3677)] = 52830, - [SMALL_STATE(3678)] = 52894, - [SMALL_STATE(3679)] = 52956, - [SMALL_STATE(3680)] = 53018, - [SMALL_STATE(3681)] = 53082, - [SMALL_STATE(3682)] = 53145, - [SMALL_STATE(3683)] = 53206, - [SMALL_STATE(3684)] = 53271, - [SMALL_STATE(3685)] = 53332, - [SMALL_STATE(3686)] = 53395, - [SMALL_STATE(3687)] = 53458, - [SMALL_STATE(3688)] = 53525, - [SMALL_STATE(3689)] = 53590, - [SMALL_STATE(3690)] = 53651, - [SMALL_STATE(3691)] = 53710, - [SMALL_STATE(3692)] = 53769, - [SMALL_STATE(3693)] = 53836, - [SMALL_STATE(3694)] = 53895, - [SMALL_STATE(3695)] = 53954, - [SMALL_STATE(3696)] = 54033, - [SMALL_STATE(3697)] = 54092, - [SMALL_STATE(3698)] = 54151, - [SMALL_STATE(3699)] = 54212, - [SMALL_STATE(3700)] = 54271, - [SMALL_STATE(3701)] = 54332, - [SMALL_STATE(3702)] = 54397, - [SMALL_STATE(3703)] = 54476, - [SMALL_STATE(3704)] = 54541, - [SMALL_STATE(3705)] = 54608, - [SMALL_STATE(3706)] = 54679, - [SMALL_STATE(3707)] = 54738, - [SMALL_STATE(3708)] = 54799, - [SMALL_STATE(3709)] = 54866, - [SMALL_STATE(3710)] = 54925, - [SMALL_STATE(3711)] = 54986, - [SMALL_STATE(3712)] = 55049, - [SMALL_STATE(3713)] = 55112, - [SMALL_STATE(3714)] = 55173, - [SMALL_STATE(3715)] = 55234, - [SMALL_STATE(3716)] = 55292, - [SMALL_STATE(3717)] = 55356, - [SMALL_STATE(3718)] = 55432, - [SMALL_STATE(3719)] = 55490, - [SMALL_STATE(3720)] = 55552, - [SMALL_STATE(3721)] = 55618, - [SMALL_STATE(3722)] = 55680, - [SMALL_STATE(3723)] = 55742, - [SMALL_STATE(3724)] = 55804, - [SMALL_STATE(3725)] = 55868, - [SMALL_STATE(3726)] = 55928, - [SMALL_STATE(3727)] = 55988, - [SMALL_STATE(3728)] = 56046, - [SMALL_STATE(3729)] = 56112, - [SMALL_STATE(3730)] = 56170, - [SMALL_STATE(3731)] = 56234, - [SMALL_STATE(3732)] = 56296, - [SMALL_STATE(3733)] = 56354, - [SMALL_STATE(3734)] = 56430, - [SMALL_STATE(3735)] = 56490, - [SMALL_STATE(3736)] = 56554, - [SMALL_STATE(3737)] = 56616, - [SMALL_STATE(3738)] = 56674, - [SMALL_STATE(3739)] = 56732, - [SMALL_STATE(3740)] = 56808, - [SMALL_STATE(3741)] = 56884, - [SMALL_STATE(3742)] = 56948, - [SMALL_STATE(3743)] = 57008, - [SMALL_STATE(3744)] = 57066, - [SMALL_STATE(3745)] = 57128, - [SMALL_STATE(3746)] = 57206, - [SMALL_STATE(3747)] = 57264, - [SMALL_STATE(3748)] = 57340, - [SMALL_STATE(3749)] = 57402, - [SMALL_STATE(3750)] = 57478, - [SMALL_STATE(3751)] = 57542, - [SMALL_STATE(3752)] = 57600, - [SMALL_STATE(3753)] = 57676, - [SMALL_STATE(3754)] = 57752, - [SMALL_STATE(3755)] = 57810, - [SMALL_STATE(3756)] = 57888, - [SMALL_STATE(3757)] = 57948, - [SMALL_STATE(3758)] = 58007, - [SMALL_STATE(3759)] = 58080, - [SMALL_STATE(3760)] = 58141, - [SMALL_STATE(3761)] = 58204, - [SMALL_STATE(3762)] = 58279, - [SMALL_STATE(3763)] = 58336, - [SMALL_STATE(3764)] = 58395, - [SMALL_STATE(3765)] = 58470, - [SMALL_STATE(3766)] = 58533, - [SMALL_STATE(3767)] = 58592, - [SMALL_STATE(3768)] = 58651, - [SMALL_STATE(3769)] = 58714, - [SMALL_STATE(3770)] = 58773, - [SMALL_STATE(3771)] = 58836, - [SMALL_STATE(3772)] = 58893, - [SMALL_STATE(3773)] = 58966, - [SMALL_STATE(3774)] = 59025, - [SMALL_STATE(3775)] = 59086, - [SMALL_STATE(3776)] = 59153, - [SMALL_STATE(3777)] = 59226, - [SMALL_STATE(3778)] = 59301, - [SMALL_STATE(3779)] = 59374, - [SMALL_STATE(3780)] = 59433, - [SMALL_STATE(3781)] = 59496, - [SMALL_STATE(3782)] = 59571, - [SMALL_STATE(3783)] = 59646, - [SMALL_STATE(3784)] = 59709, - [SMALL_STATE(3785)] = 59772, - [SMALL_STATE(3786)] = 59831, - [SMALL_STATE(3787)] = 59890, - [SMALL_STATE(3788)] = 59951, - [SMALL_STATE(3789)] = 60010, - [SMALL_STATE(3790)] = 60083, - [SMALL_STATE(3791)] = 60144, - [SMALL_STATE(3792)] = 60217, - [SMALL_STATE(3793)] = 60274, - [SMALL_STATE(3794)] = 60331, - [SMALL_STATE(3795)] = 60392, - [SMALL_STATE(3796)] = 60467, - [SMALL_STATE(3797)] = 60526, - [SMALL_STATE(3798)] = 60583, - [SMALL_STATE(3799)] = 60644, - [SMALL_STATE(3800)] = 60707, - [SMALL_STATE(3801)] = 60764, - [SMALL_STATE(3802)] = 60825, - [SMALL_STATE(3803)] = 60886, - [SMALL_STATE(3804)] = 60961, - [SMALL_STATE(3805)] = 61036, - [SMALL_STATE(3806)] = 61093, - [SMALL_STATE(3807)] = 61156, - [SMALL_STATE(3808)] = 61219, - [SMALL_STATE(3809)] = 61282, - [SMALL_STATE(3810)] = 61343, - [SMALL_STATE(3811)] = 61402, - [SMALL_STATE(3812)] = 61465, - [SMALL_STATE(3813)] = 61522, - [SMALL_STATE(3814)] = 61583, - [SMALL_STATE(3815)] = 61642, - [SMALL_STATE(3816)] = 61701, - [SMALL_STATE(3817)] = 61761, - [SMALL_STATE(3818)] = 61821, - [SMALL_STATE(3819)] = 61883, - [SMALL_STATE(3820)] = 61943, - [SMALL_STATE(3821)] = 62003, - [SMALL_STATE(3822)] = 62059, - [SMALL_STATE(3823)] = 62119, - [SMALL_STATE(3824)] = 62179, - [SMALL_STATE(3825)] = 62239, - [SMALL_STATE(3826)] = 62311, - [SMALL_STATE(3827)] = 62369, - [SMALL_STATE(3828)] = 62427, - [SMALL_STATE(3829)] = 62485, - [SMALL_STATE(3830)] = 62541, - [SMALL_STATE(3831)] = 62603, - [SMALL_STATE(3832)] = 62663, - [SMALL_STATE(3833)] = 62725, - [SMALL_STATE(3834)] = 62785, - [SMALL_STATE(3835)] = 62849, - [SMALL_STATE(3836)] = 62911, - [SMALL_STATE(3837)] = 62973, - [SMALL_STATE(3838)] = 63035, - [SMALL_STATE(3839)] = 63097, - [SMALL_STATE(3840)] = 63157, - [SMALL_STATE(3841)] = 63221, - [SMALL_STATE(3842)] = 63277, - [SMALL_STATE(3843)] = 63333, - [SMALL_STATE(3844)] = 63389, - [SMALL_STATE(3845)] = 63447, - [SMALL_STATE(3846)] = 63505, - [SMALL_STATE(3847)] = 63565, - [SMALL_STATE(3848)] = 63621, - [SMALL_STATE(3849)] = 63677, - [SMALL_STATE(3850)] = 63733, - [SMALL_STATE(3851)] = 63793, - [SMALL_STATE(3852)] = 63849, - [SMALL_STATE(3853)] = 63905, - [SMALL_STATE(3854)] = 63961, - [SMALL_STATE(3855)] = 64021, - [SMALL_STATE(3856)] = 64079, - [SMALL_STATE(3857)] = 64137, - [SMALL_STATE(3858)] = 64195, - [SMALL_STATE(3859)] = 64255, - [SMALL_STATE(3860)] = 64315, - [SMALL_STATE(3861)] = 64375, - [SMALL_STATE(3862)] = 64435, - [SMALL_STATE(3863)] = 64495, - [SMALL_STATE(3864)] = 64551, - [SMALL_STATE(3865)] = 64613, - [SMALL_STATE(3866)] = 64669, - [SMALL_STATE(3867)] = 64731, - [SMALL_STATE(3868)] = 64791, - [SMALL_STATE(3869)] = 64853, - [SMALL_STATE(3870)] = 64913, - [SMALL_STATE(3871)] = 64969, - [SMALL_STATE(3872)] = 65025, - [SMALL_STATE(3873)] = 65081, - [SMALL_STATE(3874)] = 65141, - [SMALL_STATE(3875)] = 65199, - [SMALL_STATE(3876)] = 65257, - [SMALL_STATE(3877)] = 65317, - [SMALL_STATE(3878)] = 65389, - [SMALL_STATE(3879)] = 65461, - [SMALL_STATE(3880)] = 65519, - [SMALL_STATE(3881)] = 65577, - [SMALL_STATE(3882)] = 65635, - [SMALL_STATE(3883)] = 65707, - [SMALL_STATE(3884)] = 65779, - [SMALL_STATE(3885)] = 65851, - [SMALL_STATE(3886)] = 65907, - [SMALL_STATE(3887)] = 65963, - [SMALL_STATE(3888)] = 66019, - [SMALL_STATE(3889)] = 66075, - [SMALL_STATE(3890)] = 66131, - [SMALL_STATE(3891)] = 66191, - [SMALL_STATE(3892)] = 66249, - [SMALL_STATE(3893)] = 66307, - [SMALL_STATE(3894)] = 66365, - [SMALL_STATE(3895)] = 66425, - [SMALL_STATE(3896)] = 66485, - [SMALL_STATE(3897)] = 66545, - [SMALL_STATE(3898)] = 66607, - [SMALL_STATE(3899)] = 66669, - [SMALL_STATE(3900)] = 66725, - [SMALL_STATE(3901)] = 66781, - [SMALL_STATE(3902)] = 66841, - [SMALL_STATE(3903)] = 66901, - [SMALL_STATE(3904)] = 66956, - [SMALL_STATE(3905)] = 67011, - [SMALL_STATE(3906)] = 67068, - [SMALL_STATE(3907)] = 67125, - [SMALL_STATE(3908)] = 67184, - [SMALL_STATE(3909)] = 67243, - [SMALL_STATE(3910)] = 67302, - [SMALL_STATE(3911)] = 67357, - [SMALL_STATE(3912)] = 67412, - [SMALL_STATE(3913)] = 67471, - [SMALL_STATE(3914)] = 67530, - [SMALL_STATE(3915)] = 67585, - [SMALL_STATE(3916)] = 67644, - [SMALL_STATE(3917)] = 67703, - [SMALL_STATE(3918)] = 67758, - [SMALL_STATE(3919)] = 67817, - [SMALL_STATE(3920)] = 67874, - [SMALL_STATE(3921)] = 67929, - [SMALL_STATE(3922)] = 67984, - [SMALL_STATE(3923)] = 68043, - [SMALL_STATE(3924)] = 68098, - [SMALL_STATE(3925)] = 68157, - [SMALL_STATE(3926)] = 68216, - [SMALL_STATE(3927)] = 68275, - [SMALL_STATE(3928)] = 68334, - [SMALL_STATE(3929)] = 68393, - [SMALL_STATE(3930)] = 68452, - [SMALL_STATE(3931)] = 68511, - [SMALL_STATE(3932)] = 68568, - [SMALL_STATE(3933)] = 68629, - [SMALL_STATE(3934)] = 68688, - [SMALL_STATE(3935)] = 68745, - [SMALL_STATE(3936)] = 68806, - [SMALL_STATE(3937)] = 68863, - [SMALL_STATE(3938)] = 68924, - [SMALL_STATE(3939)] = 68983, - [SMALL_STATE(3940)] = 69042, - [SMALL_STATE(3941)] = 69099, - [SMALL_STATE(3942)] = 69156, - [SMALL_STATE(3943)] = 69213, - [SMALL_STATE(3944)] = 69274, - [SMALL_STATE(3945)] = 69333, - [SMALL_STATE(3946)] = 69392, - [SMALL_STATE(3947)] = 69449, - [SMALL_STATE(3948)] = 69506, - [SMALL_STATE(3949)] = 69567, - [SMALL_STATE(3950)] = 69624, - [SMALL_STATE(3951)] = 69683, - [SMALL_STATE(3952)] = 69742, - [SMALL_STATE(3953)] = 69801, - [SMALL_STATE(3954)] = 69860, - [SMALL_STATE(3955)] = 69919, - [SMALL_STATE(3956)] = 69976, - [SMALL_STATE(3957)] = 70033, - [SMALL_STATE(3958)] = 70094, - [SMALL_STATE(3959)] = 70149, - [SMALL_STATE(3960)] = 70208, - [SMALL_STATE(3961)] = 70263, - [SMALL_STATE(3962)] = 70322, - [SMALL_STATE(3963)] = 70381, - [SMALL_STATE(3964)] = 70438, - [SMALL_STATE(3965)] = 70493, - [SMALL_STATE(3966)] = 70554, - [SMALL_STATE(3967)] = 70609, - [SMALL_STATE(3968)] = 70664, - [SMALL_STATE(3969)] = 70723, - [SMALL_STATE(3970)] = 70782, - [SMALL_STATE(3971)] = 70837, - [SMALL_STATE(3972)] = 70894, - [SMALL_STATE(3973)] = 70953, - [SMALL_STATE(3974)] = 71012, - [SMALL_STATE(3975)] = 71071, - [SMALL_STATE(3976)] = 71130, - [SMALL_STATE(3977)] = 71185, - [SMALL_STATE(3978)] = 71244, - [SMALL_STATE(3979)] = 71299, - [SMALL_STATE(3980)] = 71354, - [SMALL_STATE(3981)] = 71409, - [SMALL_STATE(3982)] = 71470, - [SMALL_STATE(3983)] = 71531, - [SMALL_STATE(3984)] = 71588, - [SMALL_STATE(3985)] = 71647, - [SMALL_STATE(3986)] = 71706, - [SMALL_STATE(3987)] = 71763, - [SMALL_STATE(3988)] = 71824, - [SMALL_STATE(3989)] = 71883, - [SMALL_STATE(3990)] = 71942, - [SMALL_STATE(3991)] = 72001, - [SMALL_STATE(3992)] = 72062, - [SMALL_STATE(3993)] = 72123, - [SMALL_STATE(3994)] = 72182, - [SMALL_STATE(3995)] = 72237, - [SMALL_STATE(3996)] = 72292, - [SMALL_STATE(3997)] = 72349, - [SMALL_STATE(3998)] = 72406, - [SMALL_STATE(3999)] = 72463, - [SMALL_STATE(4000)] = 72518, - [SMALL_STATE(4001)] = 72573, - [SMALL_STATE(4002)] = 72630, - [SMALL_STATE(4003)] = 72685, - [SMALL_STATE(4004)] = 72746, - [SMALL_STATE(4005)] = 72805, - [SMALL_STATE(4006)] = 72864, - [SMALL_STATE(4007)] = 72927, - [SMALL_STATE(4008)] = 72984, - [SMALL_STATE(4009)] = 73091, - [SMALL_STATE(4010)] = 73152, - [SMALL_STATE(4011)] = 73213, - [SMALL_STATE(4012)] = 73272, - [SMALL_STATE(4013)] = 73331, - [SMALL_STATE(4014)] = 73390, - [SMALL_STATE(4015)] = 73445, - [SMALL_STATE(4016)] = 73504, - [SMALL_STATE(4017)] = 73561, - [SMALL_STATE(4018)] = 73668, - [SMALL_STATE(4019)] = 73723, - [SMALL_STATE(4020)] = 73779, - [SMALL_STATE(4021)] = 73833, - [SMALL_STATE(4022)] = 73887, - [SMALL_STATE(4023)] = 73945, - [SMALL_STATE(4024)] = 74003, - [SMALL_STATE(4025)] = 74057, - [SMALL_STATE(4026)] = 74115, - [SMALL_STATE(4027)] = 74169, - [SMALL_STATE(4028)] = 74227, - [SMALL_STATE(4029)] = 74285, - [SMALL_STATE(4030)] = 74343, - [SMALL_STATE(4031)] = 74405, - [SMALL_STATE(4032)] = 74463, - [SMALL_STATE(4033)] = 74519, - [SMALL_STATE(4034)] = 74573, - [SMALL_STATE(4035)] = 74629, - [SMALL_STATE(4036)] = 74685, - [SMALL_STATE(4037)] = 74745, - [SMALL_STATE(4038)] = 74803, - [SMALL_STATE(4039)] = 74863, - [SMALL_STATE(4040)] = 74923, - [SMALL_STATE(4041)] = 74981, - [SMALL_STATE(4042)] = 75037, - [SMALL_STATE(4043)] = 75095, - [SMALL_STATE(4044)] = 75153, - [SMALL_STATE(4045)] = 75209, - [SMALL_STATE(4046)] = 75265, - [SMALL_STATE(4047)] = 75323, - [SMALL_STATE(4048)] = 75377, - [SMALL_STATE(4049)] = 75439, - [SMALL_STATE(4050)] = 75495, - [SMALL_STATE(4051)] = 75549, - [SMALL_STATE(4052)] = 75603, - [SMALL_STATE(4053)] = 75657, - [SMALL_STATE(4054)] = 75715, - [SMALL_STATE(4055)] = 75773, - [SMALL_STATE(4056)] = 75827, - [SMALL_STATE(4057)] = 75883, - [SMALL_STATE(4058)] = 75941, - [SMALL_STATE(4059)] = 75997, - [SMALL_STATE(4060)] = 76055, - [SMALL_STATE(4061)] = 76109, - [SMALL_STATE(4062)] = 76165, - [SMALL_STATE(4063)] = 76219, - [SMALL_STATE(4064)] = 76277, - [SMALL_STATE(4065)] = 76331, - [SMALL_STATE(4066)] = 76387, - [SMALL_STATE(4067)] = 76441, - [SMALL_STATE(4068)] = 76495, - [SMALL_STATE(4069)] = 76549, - [SMALL_STATE(4070)] = 76605, - [SMALL_STATE(4071)] = 76663, - [SMALL_STATE(4072)] = 76717, - [SMALL_STATE(4073)] = 76773, - [SMALL_STATE(4074)] = 76829, - [SMALL_STATE(4075)] = 76883, - [SMALL_STATE(4076)] = 76937, - [SMALL_STATE(4077)] = 76991, - [SMALL_STATE(4078)] = 77045, - [SMALL_STATE(4079)] = 77099, - [SMALL_STATE(4080)] = 77153, - [SMALL_STATE(4081)] = 77207, - [SMALL_STATE(4082)] = 77267, - [SMALL_STATE(4083)] = 77321, - [SMALL_STATE(4084)] = 77379, - [SMALL_STATE(4085)] = 77437, - [SMALL_STATE(4086)] = 77491, - [SMALL_STATE(4087)] = 77545, - [SMALL_STATE(4088)] = 77601, - [SMALL_STATE(4089)] = 77657, - [SMALL_STATE(4090)] = 77711, - [SMALL_STATE(4091)] = 77767, - [SMALL_STATE(4092)] = 77825, - [SMALL_STATE(4093)] = 77883, - [SMALL_STATE(4094)] = 77951, - [SMALL_STATE(4095)] = 78007, - [SMALL_STATE(4096)] = 78067, - [SMALL_STATE(4097)] = 78121, - [SMALL_STATE(4098)] = 78179, - [SMALL_STATE(4099)] = 78239, - [SMALL_STATE(4100)] = 78299, - [SMALL_STATE(4101)] = 78359, - [SMALL_STATE(4102)] = 78413, - [SMALL_STATE(4103)] = 78471, - [SMALL_STATE(4104)] = 78527, - [SMALL_STATE(4105)] = 78581, - [SMALL_STATE(4106)] = 78635, - [SMALL_STATE(4107)] = 78689, - [SMALL_STATE(4108)] = 78743, - [SMALL_STATE(4109)] = 78801, - [SMALL_STATE(4110)] = 78857, - [SMALL_STATE(4111)] = 78917, - [SMALL_STATE(4112)] = 78973, - [SMALL_STATE(4113)] = 79027, - [SMALL_STATE(4114)] = 79085, - [SMALL_STATE(4115)] = 79141, - [SMALL_STATE(4116)] = 79195, - [SMALL_STATE(4117)] = 79251, - [SMALL_STATE(4118)] = 79309, - [SMALL_STATE(4119)] = 79367, - [SMALL_STATE(4120)] = 79421, - [SMALL_STATE(4121)] = 79477, - [SMALL_STATE(4122)] = 79581, - [SMALL_STATE(4123)] = 79637, - [SMALL_STATE(4124)] = 79693, - [SMALL_STATE(4125)] = 79797, - [SMALL_STATE(4126)] = 79851, - [SMALL_STATE(4127)] = 79905, - [SMALL_STATE(4128)] = 79959, - [SMALL_STATE(4129)] = 80013, - [SMALL_STATE(4130)] = 80067, - [SMALL_STATE(4131)] = 80125, - [SMALL_STATE(4132)] = 80179, - [SMALL_STATE(4133)] = 80233, - [SMALL_STATE(4134)] = 80287, - [SMALL_STATE(4135)] = 80347, - [SMALL_STATE(4136)] = 80401, - [SMALL_STATE(4137)] = 80457, - [SMALL_STATE(4138)] = 80511, - [SMALL_STATE(4139)] = 80567, - [SMALL_STATE(4140)] = 80623, - [SMALL_STATE(4141)] = 80681, - [SMALL_STATE(4142)] = 80737, - [SMALL_STATE(4143)] = 80793, - [SMALL_STATE(4144)] = 80849, - [SMALL_STATE(4145)] = 80905, - [SMALL_STATE(4146)] = 80959, - [SMALL_STATE(4147)] = 81013, - [SMALL_STATE(4148)] = 81073, - [SMALL_STATE(4149)] = 81131, - [SMALL_STATE(4150)] = 81185, - [SMALL_STATE(4151)] = 81241, - [SMALL_STATE(4152)] = 81297, - [SMALL_STATE(4153)] = 81351, - [SMALL_STATE(4154)] = 81409, - [SMALL_STATE(4155)] = 81475, - [SMALL_STATE(4156)] = 81531, - [SMALL_STATE(4157)] = 81585, - [SMALL_STATE(4158)] = 81638, - [SMALL_STATE(4159)] = 81691, - [SMALL_STATE(4160)] = 81746, - [SMALL_STATE(4161)] = 81821, - [SMALL_STATE(4162)] = 81874, - [SMALL_STATE(4163)] = 81931, - [SMALL_STATE(4164)] = 81984, - [SMALL_STATE(4165)] = 82045, - [SMALL_STATE(4166)] = 82098, - [SMALL_STATE(4167)] = 82153, - [SMALL_STATE(4168)] = 82208, - [SMALL_STATE(4169)] = 82263, - [SMALL_STATE(4170)] = 82316, - [SMALL_STATE(4171)] = 82381, - [SMALL_STATE(4172)] = 82434, - [SMALL_STATE(4173)] = 82489, - [SMALL_STATE(4174)] = 82542, - [SMALL_STATE(4175)] = 82603, - [SMALL_STATE(4176)] = 82656, - [SMALL_STATE(4177)] = 82709, - [SMALL_STATE(4178)] = 82766, - [SMALL_STATE(4179)] = 82819, - [SMALL_STATE(4180)] = 82872, - [SMALL_STATE(4181)] = 82927, - [SMALL_STATE(4182)] = 82980, - [SMALL_STATE(4183)] = 83033, - [SMALL_STATE(4184)] = 83086, - [SMALL_STATE(4185)] = 83139, - [SMALL_STATE(4186)] = 83194, - [SMALL_STATE(4187)] = 83249, - [SMALL_STATE(4188)] = 83304, - [SMALL_STATE(4189)] = 83371, - [SMALL_STATE(4190)] = 83426, - [SMALL_STATE(4191)] = 83479, - [SMALL_STATE(4192)] = 83534, - [SMALL_STATE(4193)] = 83589, - [SMALL_STATE(4194)] = 83644, - [SMALL_STATE(4195)] = 83701, - [SMALL_STATE(4196)] = 83756, - [SMALL_STATE(4197)] = 83813, - [SMALL_STATE(4198)] = 83868, - [SMALL_STATE(4199)] = 83921, - [SMALL_STATE(4200)] = 83976, - [SMALL_STATE(4201)] = 84031, - [SMALL_STATE(4202)] = 84088, - [SMALL_STATE(4203)] = 84141, - [SMALL_STATE(4204)] = 84194, - [SMALL_STATE(4205)] = 84249, - [SMALL_STATE(4206)] = 84308, - [SMALL_STATE(4207)] = 84361, - [SMALL_STATE(4208)] = 84414, - [SMALL_STATE(4209)] = 84469, - [SMALL_STATE(4210)] = 84524, - [SMALL_STATE(4211)] = 84577, - [SMALL_STATE(4212)] = 84630, - [SMALL_STATE(4213)] = 84685, - [SMALL_STATE(4214)] = 84742, - [SMALL_STATE(4215)] = 84795, - [SMALL_STATE(4216)] = 84848, - [SMALL_STATE(4217)] = 84901, - [SMALL_STATE(4218)] = 84954, - [SMALL_STATE(4219)] = 85007, - [SMALL_STATE(4220)] = 85060, - [SMALL_STATE(4221)] = 85113, - [SMALL_STATE(4222)] = 85166, - [SMALL_STATE(4223)] = 85219, - [SMALL_STATE(4224)] = 85272, - [SMALL_STATE(4225)] = 85325, - [SMALL_STATE(4226)] = 85380, - [SMALL_STATE(4227)] = 85433, - [SMALL_STATE(4228)] = 85488, - [SMALL_STATE(4229)] = 85543, - [SMALL_STATE(4230)] = 85596, - [SMALL_STATE(4231)] = 85649, - [SMALL_STATE(4232)] = 85702, - [SMALL_STATE(4233)] = 85755, - [SMALL_STATE(4234)] = 85808, - [SMALL_STATE(4235)] = 85863, - [SMALL_STATE(4236)] = 85920, - [SMALL_STATE(4237)] = 85973, - [SMALL_STATE(4238)] = 86030, - [SMALL_STATE(4239)] = 86085, - [SMALL_STATE(4240)] = 86142, - [SMALL_STATE(4241)] = 86209, - [SMALL_STATE(4242)] = 86264, - [SMALL_STATE(4243)] = 86319, - [SMALL_STATE(4244)] = 86394, - [SMALL_STATE(4245)] = 86447, - [SMALL_STATE(4246)] = 86500, - [SMALL_STATE(4247)] = 86553, - [SMALL_STATE(4248)] = 86606, - [SMALL_STATE(4249)] = 86661, - [SMALL_STATE(4250)] = 86718, - [SMALL_STATE(4251)] = 86775, - [SMALL_STATE(4252)] = 86828, - [SMALL_STATE(4253)] = 86881, - [SMALL_STATE(4254)] = 86936, - [SMALL_STATE(4255)] = 86989, - [SMALL_STATE(4256)] = 87044, - [SMALL_STATE(4257)] = 87099, - [SMALL_STATE(4258)] = 87158, - [SMALL_STATE(4259)] = 87211, - [SMALL_STATE(4260)] = 87264, - [SMALL_STATE(4261)] = 87319, - [SMALL_STATE(4262)] = 87374, - [SMALL_STATE(4263)] = 87429, - [SMALL_STATE(4264)] = 87482, - [SMALL_STATE(4265)] = 87537, - [SMALL_STATE(4266)] = 87590, - [SMALL_STATE(4267)] = 87643, - [SMALL_STATE(4268)] = 87696, - [SMALL_STATE(4269)] = 87749, - [SMALL_STATE(4270)] = 87802, - [SMALL_STATE(4271)] = 87863, - [SMALL_STATE(4272)] = 87916, - [SMALL_STATE(4273)] = 87975, - [SMALL_STATE(4274)] = 88028, - [SMALL_STATE(4275)] = 88081, - [SMALL_STATE(4276)] = 88134, - [SMALL_STATE(4277)] = 88187, - [SMALL_STATE(4278)] = 88240, - [SMALL_STATE(4279)] = 88293, - [SMALL_STATE(4280)] = 88346, - [SMALL_STATE(4281)] = 88401, - [SMALL_STATE(4282)] = 88454, - [SMALL_STATE(4283)] = 88507, - [SMALL_STATE(4284)] = 88562, - [SMALL_STATE(4285)] = 88627, - [SMALL_STATE(4286)] = 88682, - [SMALL_STATE(4287)] = 88739, - [SMALL_STATE(4288)] = 88794, - [SMALL_STATE(4289)] = 88847, - [SMALL_STATE(4290)] = 88900, - [SMALL_STATE(4291)] = 88957, - [SMALL_STATE(4292)] = 89010, - [SMALL_STATE(4293)] = 89069, - [SMALL_STATE(4294)] = 89124, - [SMALL_STATE(4295)] = 89181, - [SMALL_STATE(4296)] = 89234, - [SMALL_STATE(4297)] = 89287, - [SMALL_STATE(4298)] = 89342, - [SMALL_STATE(4299)] = 89397, - [SMALL_STATE(4300)] = 89450, - [SMALL_STATE(4301)] = 89507, - [SMALL_STATE(4302)] = 89566, - [SMALL_STATE(4303)] = 89621, - [SMALL_STATE(4304)] = 89676, - [SMALL_STATE(4305)] = 89731, - [SMALL_STATE(4306)] = 89786, - [SMALL_STATE(4307)] = 89839, - [SMALL_STATE(4308)] = 89900, - [SMALL_STATE(4309)] = 89953, - [SMALL_STATE(4310)] = 90012, - [SMALL_STATE(4311)] = 90065, - [SMALL_STATE(4312)] = 90118, - [SMALL_STATE(4313)] = 90173, - [SMALL_STATE(4314)] = 90232, - [SMALL_STATE(4315)] = 90285, - [SMALL_STATE(4316)] = 90338, - [SMALL_STATE(4317)] = 90391, - [SMALL_STATE(4318)] = 90456, - [SMALL_STATE(4319)] = 90513, - [SMALL_STATE(4320)] = 90566, - [SMALL_STATE(4321)] = 90620, - [SMALL_STATE(4322)] = 90674, - [SMALL_STATE(4323)] = 90726, - [SMALL_STATE(4324)] = 90798, - [SMALL_STATE(4325)] = 90850, - [SMALL_STATE(4326)] = 90912, - [SMALL_STATE(4327)] = 90964, - [SMALL_STATE(4328)] = 91016, - [SMALL_STATE(4329)] = 91068, - [SMALL_STATE(4330)] = 91120, - [SMALL_STATE(4331)] = 91184, - [SMALL_STATE(4332)] = 91238, - [SMALL_STATE(4333)] = 91290, - [SMALL_STATE(4334)] = 91342, - [SMALL_STATE(4335)] = 91400, - [SMALL_STATE(4336)] = 91454, - [SMALL_STATE(4337)] = 91518, - [SMALL_STATE(4338)] = 91572, - [SMALL_STATE(4339)] = 91624, - [SMALL_STATE(4340)] = 91680, - [SMALL_STATE(4341)] = 91734, - [SMALL_STATE(4342)] = 91788, - [SMALL_STATE(4343)] = 91844, - [SMALL_STATE(4344)] = 91896, - [SMALL_STATE(4345)] = 91950, - [SMALL_STATE(4346)] = 92002, - [SMALL_STATE(4347)] = 92056, - [SMALL_STATE(4348)] = 92108, - [SMALL_STATE(4349)] = 92172, - [SMALL_STATE(4350)] = 92224, - [SMALL_STATE(4351)] = 92282, - [SMALL_STATE(4352)] = 92334, - [SMALL_STATE(4353)] = 92406, - [SMALL_STATE(4354)] = 92458, - [SMALL_STATE(4355)] = 92514, - [SMALL_STATE(4356)] = 92566, - [SMALL_STATE(4357)] = 92618, - [SMALL_STATE(4358)] = 92670, - [SMALL_STATE(4359)] = 92722, - [SMALL_STATE(4360)] = 92776, - [SMALL_STATE(4361)] = 92834, - [SMALL_STATE(4362)] = 92886, - [SMALL_STATE(4363)] = 92938, - [SMALL_STATE(4364)] = 92992, - [SMALL_STATE(4365)] = 93044, - [SMALL_STATE(4366)] = 93096, - [SMALL_STATE(4367)] = 93148, - [SMALL_STATE(4368)] = 93200, - [SMALL_STATE(4369)] = 93252, - [SMALL_STATE(4370)] = 93306, - [SMALL_STATE(4371)] = 93358, - [SMALL_STATE(4372)] = 93410, - [SMALL_STATE(4373)] = 93462, - [SMALL_STATE(4374)] = 93514, - [SMALL_STATE(4375)] = 93566, - [SMALL_STATE(4376)] = 93630, - [SMALL_STATE(4377)] = 93682, - [SMALL_STATE(4378)] = 93734, - [SMALL_STATE(4379)] = 93786, - [SMALL_STATE(4380)] = 93838, - [SMALL_STATE(4381)] = 93910, - [SMALL_STATE(4382)] = 93982, - [SMALL_STATE(4383)] = 94034, - [SMALL_STATE(4384)] = 94086, - [SMALL_STATE(4385)] = 94138, - [SMALL_STATE(4386)] = 94190, - [SMALL_STATE(4387)] = 94242, - [SMALL_STATE(4388)] = 94294, - [SMALL_STATE(4389)] = 94346, - [SMALL_STATE(4390)] = 94398, - [SMALL_STATE(4391)] = 94452, - [SMALL_STATE(4392)] = 94508, - [SMALL_STATE(4393)] = 94560, - [SMALL_STATE(4394)] = 94612, - [SMALL_STATE(4395)] = 94666, - [SMALL_STATE(4396)] = 94718, - [SMALL_STATE(4397)] = 94772, - [SMALL_STATE(4398)] = 94824, - [SMALL_STATE(4399)] = 94876, - [SMALL_STATE(4400)] = 94932, - [SMALL_STATE(4401)] = 94984, - [SMALL_STATE(4402)] = 95036, - [SMALL_STATE(4403)] = 95088, - [SMALL_STATE(4404)] = 95140, - [SMALL_STATE(4405)] = 95192, - [SMALL_STATE(4406)] = 95244, - [SMALL_STATE(4407)] = 95296, - [SMALL_STATE(4408)] = 95348, - [SMALL_STATE(4409)] = 95402, - [SMALL_STATE(4410)] = 95454, - [SMALL_STATE(4411)] = 95506, - [SMALL_STATE(4412)] = 95558, - [SMALL_STATE(4413)] = 95624, - [SMALL_STATE(4414)] = 95676, - [SMALL_STATE(4415)] = 95732, - [SMALL_STATE(4416)] = 95784, - [SMALL_STATE(4417)] = 95856, - [SMALL_STATE(4418)] = 95908, - [SMALL_STATE(4419)] = 95964, - [SMALL_STATE(4420)] = 96016, - [SMALL_STATE(4421)] = 96068, - [SMALL_STATE(4422)] = 96120, - [SMALL_STATE(4423)] = 96172, - [SMALL_STATE(4424)] = 96224, - [SMALL_STATE(4425)] = 96276, - [SMALL_STATE(4426)] = 96328, - [SMALL_STATE(4427)] = 96380, - [SMALL_STATE(4428)] = 96432, - [SMALL_STATE(4429)] = 96484, - [SMALL_STATE(4430)] = 96536, - [SMALL_STATE(4431)] = 96592, - [SMALL_STATE(4432)] = 96648, - [SMALL_STATE(4433)] = 96702, - [SMALL_STATE(4434)] = 96754, - [SMALL_STATE(4435)] = 96806, - [SMALL_STATE(4436)] = 96858, - [SMALL_STATE(4437)] = 96910, - [SMALL_STATE(4438)] = 96962, - [SMALL_STATE(4439)] = 97026, - [SMALL_STATE(4440)] = 97078, - [SMALL_STATE(4441)] = 97130, - [SMALL_STATE(4442)] = 97184, - [SMALL_STATE(4443)] = 97236, - [SMALL_STATE(4444)] = 97294, - [SMALL_STATE(4445)] = 97346, - [SMALL_STATE(4446)] = 97418, - [SMALL_STATE(4447)] = 97490, - [SMALL_STATE(4448)] = 97544, - [SMALL_STATE(4449)] = 97608, - [SMALL_STATE(4450)] = 97660, - [SMALL_STATE(4451)] = 97714, - [SMALL_STATE(4452)] = 97770, - [SMALL_STATE(4453)] = 97826, - [SMALL_STATE(4454)] = 97878, - [SMALL_STATE(4455)] = 97930, - [SMALL_STATE(4456)] = 97986, - [SMALL_STATE(4457)] = 98038, - [SMALL_STATE(4458)] = 98090, - [SMALL_STATE(4459)] = 98150, - [SMALL_STATE(4460)] = 98214, - [SMALL_STATE(4461)] = 98278, - [SMALL_STATE(4462)] = 98332, - [SMALL_STATE(4463)] = 98404, - [SMALL_STATE(4464)] = 98502, - [SMALL_STATE(4465)] = 98554, - [SMALL_STATE(4466)] = 98606, - [SMALL_STATE(4467)] = 98672, - [SMALL_STATE(4468)] = 98724, - [SMALL_STATE(4469)] = 98788, - [SMALL_STATE(4470)] = 98846, - [SMALL_STATE(4471)] = 98912, - [SMALL_STATE(4472)] = 98964, - [SMALL_STATE(4473)] = 99016, - [SMALL_STATE(4474)] = 99068, - [SMALL_STATE(4475)] = 99120, - [SMALL_STATE(4476)] = 99184, - [SMALL_STATE(4477)] = 99236, - [SMALL_STATE(4478)] = 99290, - [SMALL_STATE(4479)] = 99346, - [SMALL_STATE(4480)] = 99398, - [SMALL_STATE(4481)] = 99450, - [SMALL_STATE(4482)] = 99502, - [SMALL_STATE(4483)] = 99554, - [SMALL_STATE(4484)] = 99608, - [SMALL_STATE(4485)] = 99672, - [SMALL_STATE(4486)] = 99728, - [SMALL_STATE(4487)] = 99786, - [SMALL_STATE(4488)] = 99838, - [SMALL_STATE(4489)] = 99894, - [SMALL_STATE(4490)] = 99946, - [SMALL_STATE(4491)] = 99998, - [SMALL_STATE(4492)] = 100054, - [SMALL_STATE(4493)] = 100108, - [SMALL_STATE(4494)] = 100162, - [SMALL_STATE(4495)] = 100214, - [SMALL_STATE(4496)] = 100266, - [SMALL_STATE(4497)] = 100332, - [SMALL_STATE(4498)] = 100384, - [SMALL_STATE(4499)] = 100448, - [SMALL_STATE(4500)] = 100500, - [SMALL_STATE(4501)] = 100552, - [SMALL_STATE(4502)] = 100604, - [SMALL_STATE(4503)] = 100662, - [SMALL_STATE(4504)] = 100716, - [SMALL_STATE(4505)] = 100814, - [SMALL_STATE(4506)] = 100872, - [SMALL_STATE(4507)] = 100924, - [SMALL_STATE(4508)] = 100976, - [SMALL_STATE(4509)] = 101030, - [SMALL_STATE(4510)] = 101093, - [SMALL_STATE(4511)] = 101150, - [SMALL_STATE(4512)] = 101201, - [SMALL_STATE(4513)] = 101252, - [SMALL_STATE(4514)] = 101307, - [SMALL_STATE(4515)] = 101358, - [SMALL_STATE(4516)] = 101453, - [SMALL_STATE(4517)] = 101506, - [SMALL_STATE(4518)] = 101557, - [SMALL_STATE(4519)] = 101614, - [SMALL_STATE(4520)] = 101669, - [SMALL_STATE(4521)] = 101720, - [SMALL_STATE(4522)] = 101773, - [SMALL_STATE(4523)] = 101826, - [SMALL_STATE(4524)] = 101881, - [SMALL_STATE(4525)] = 101932, - [SMALL_STATE(4526)] = 101987, - [SMALL_STATE(4527)] = 102038, - [SMALL_STATE(4528)] = 102089, - [SMALL_STATE(4529)] = 102144, - [SMALL_STATE(4530)] = 102207, - [SMALL_STATE(4531)] = 102264, - [SMALL_STATE(4532)] = 102315, - [SMALL_STATE(4533)] = 102372, - [SMALL_STATE(4534)] = 102427, - [SMALL_STATE(4535)] = 102484, - [SMALL_STATE(4536)] = 102537, - [SMALL_STATE(4537)] = 102594, - [SMALL_STATE(4538)] = 102649, - [SMALL_STATE(4539)] = 102700, - [SMALL_STATE(4540)] = 102753, - [SMALL_STATE(4541)] = 102808, - [SMALL_STATE(4542)] = 102865, - [SMALL_STATE(4543)] = 102928, - [SMALL_STATE(4544)] = 102985, - [SMALL_STATE(4545)] = 103036, - [SMALL_STATE(4546)] = 103087, - [SMALL_STATE(4547)] = 103140, - [SMALL_STATE(4548)] = 103193, - [SMALL_STATE(4549)] = 103244, - [SMALL_STATE(4550)] = 103295, - [SMALL_STATE(4551)] = 103346, - [SMALL_STATE(4552)] = 103401, - [SMALL_STATE(4553)] = 103458, - [SMALL_STATE(4554)] = 103511, - [SMALL_STATE(4555)] = 103568, - [SMALL_STATE(4556)] = 103631, - [SMALL_STATE(4557)] = 103684, - [SMALL_STATE(4558)] = 103735, - [SMALL_STATE(4559)] = 103790, - [SMALL_STATE(4560)] = 103845, - [SMALL_STATE(4561)] = 103896, - [SMALL_STATE(4562)] = 103947, - [SMALL_STATE(4563)] = 103998, - [SMALL_STATE(4564)] = 104049, - [SMALL_STATE(4565)] = 104104, - [SMALL_STATE(4566)] = 104159, - [SMALL_STATE(4567)] = 104210, - [SMALL_STATE(4568)] = 104261, - [SMALL_STATE(4569)] = 104312, - [SMALL_STATE(4570)] = 104363, - [SMALL_STATE(4571)] = 104414, - [SMALL_STATE(4572)] = 104467, - [SMALL_STATE(4573)] = 104562, - [SMALL_STATE(4574)] = 104617, - [SMALL_STATE(4575)] = 104672, - [SMALL_STATE(4576)] = 104767, - [SMALL_STATE(4577)] = 104824, - [SMALL_STATE(4578)] = 104881, - [SMALL_STATE(4579)] = 104932, - [SMALL_STATE(4580)] = 104987, - [SMALL_STATE(4581)] = 105038, - [SMALL_STATE(4582)] = 105089, - [SMALL_STATE(4583)] = 105140, - [SMALL_STATE(4584)] = 105191, - [SMALL_STATE(4585)] = 105242, - [SMALL_STATE(4586)] = 105293, - [SMALL_STATE(4587)] = 105344, - [SMALL_STATE(4588)] = 105395, - [SMALL_STATE(4589)] = 105446, - [SMALL_STATE(4590)] = 105503, - [SMALL_STATE(4591)] = 105566, - [SMALL_STATE(4592)] = 105631, - [SMALL_STATE(4593)] = 105682, - [SMALL_STATE(4594)] = 105739, - [SMALL_STATE(4595)] = 105796, - [SMALL_STATE(4596)] = 105847, - [SMALL_STATE(4597)] = 105904, - [SMALL_STATE(4598)] = 105955, - [SMALL_STATE(4599)] = 106018, - [SMALL_STATE(4600)] = 106073, - [SMALL_STATE(4601)] = 106136, - [SMALL_STATE(4602)] = 106193, - [SMALL_STATE(4603)] = 106244, - [SMALL_STATE(4604)] = 106297, - [SMALL_STATE(4605)] = 106348, - [SMALL_STATE(4606)] = 106401, - [SMALL_STATE(4607)] = 106458, - [SMALL_STATE(4608)] = 106515, - [SMALL_STATE(4609)] = 106570, - [SMALL_STATE(4610)] = 106623, - [SMALL_STATE(4611)] = 106678, - [SMALL_STATE(4612)] = 106735, - [SMALL_STATE(4613)] = 106786, - [SMALL_STATE(4614)] = 106839, - [SMALL_STATE(4615)] = 106902, - [SMALL_STATE(4616)] = 106957, - [SMALL_STATE(4617)] = 107014, - [SMALL_STATE(4618)] = 107081, - [SMALL_STATE(4619)] = 107138, - [SMALL_STATE(4620)] = 107189, - [SMALL_STATE(4621)] = 107244, - [SMALL_STATE(4622)] = 107299, - [SMALL_STATE(4623)] = 107354, - [SMALL_STATE(4624)] = 107405, - [SMALL_STATE(4625)] = 107468, - [SMALL_STATE(4626)] = 107519, - [SMALL_STATE(4627)] = 107576, - [SMALL_STATE(4628)] = 107639, - [SMALL_STATE(4629)] = 107690, - [SMALL_STATE(4630)] = 107743, - [SMALL_STATE(4631)] = 107798, - [SMALL_STATE(4632)] = 107851, - [SMALL_STATE(4633)] = 107902, - [SMALL_STATE(4634)] = 107953, - [SMALL_STATE(4635)] = 108006, - [SMALL_STATE(4636)] = 108063, - [SMALL_STATE(4637)] = 108114, - [SMALL_STATE(4638)] = 108165, - [SMALL_STATE(4639)] = 108216, - [SMALL_STATE(4640)] = 108273, - [SMALL_STATE(4641)] = 108328, - [SMALL_STATE(4642)] = 108385, - [SMALL_STATE(4643)] = 108454, - [SMALL_STATE(4644)] = 108523, - [SMALL_STATE(4645)] = 108588, - [SMALL_STATE(4646)] = 108645, - [SMALL_STATE(4647)] = 108710, - [SMALL_STATE(4648)] = 108765, - [SMALL_STATE(4649)] = 108826, - [SMALL_STATE(4650)] = 108877, - [SMALL_STATE(4651)] = 108972, - [SMALL_STATE(4652)] = 109027, - [SMALL_STATE(4653)] = 109078, - [SMALL_STATE(4654)] = 109127, - [SMALL_STATE(4655)] = 109184, - [SMALL_STATE(4656)] = 109241, - [SMALL_STATE(4657)] = 109298, - [SMALL_STATE(4658)] = 109367, - [SMALL_STATE(4659)] = 109436, - [SMALL_STATE(4660)] = 109505, - [SMALL_STATE(4661)] = 109556, - [SMALL_STATE(4662)] = 109619, - [SMALL_STATE(4663)] = 109670, - [SMALL_STATE(4664)] = 109727, - [SMALL_STATE(4665)] = 109782, - [SMALL_STATE(4666)] = 109833, - [SMALL_STATE(4667)] = 109884, - [SMALL_STATE(4668)] = 109935, - [SMALL_STATE(4669)] = 109988, - [SMALL_STATE(4670)] = 110041, - [SMALL_STATE(4671)] = 110098, - [SMALL_STATE(4672)] = 110151, - [SMALL_STATE(4673)] = 110208, - [SMALL_STATE(4674)] = 110259, - [SMALL_STATE(4675)] = 110316, - [SMALL_STATE(4676)] = 110371, - [SMALL_STATE(4677)] = 110428, - [SMALL_STATE(4678)] = 110491, - [SMALL_STATE(4679)] = 110556, - [SMALL_STATE(4680)] = 110609, - [SMALL_STATE(4681)] = 110661, - [SMALL_STATE(4682)] = 110717, - [SMALL_STATE(4683)] = 110767, - [SMALL_STATE(4684)] = 110821, - [SMALL_STATE(4685)] = 110875, - [SMALL_STATE(4686)] = 110933, - [SMALL_STATE(4687)] = 110985, - [SMALL_STATE(4688)] = 111039, - [SMALL_STATE(4689)] = 111091, - [SMALL_STATE(4690)] = 111141, - [SMALL_STATE(4691)] = 111191, - [SMALL_STATE(4692)] = 111245, - [SMALL_STATE(4693)] = 111295, - [SMALL_STATE(4694)] = 111345, - [SMALL_STATE(4695)] = 111401, - [SMALL_STATE(4696)] = 111455, - [SMALL_STATE(4697)] = 111507, - [SMALL_STATE(4698)] = 111559, - [SMALL_STATE(4699)] = 111617, - [SMALL_STATE(4700)] = 111671, - [SMALL_STATE(4701)] = 111725, - [SMALL_STATE(4702)] = 111781, - [SMALL_STATE(4703)] = 111833, - [SMALL_STATE(4704)] = 111887, - [SMALL_STATE(4705)] = 111939, - [SMALL_STATE(4706)] = 111989, - [SMALL_STATE(4707)] = 112041, - [SMALL_STATE(4708)] = 112105, - [SMALL_STATE(4709)] = 112157, - [SMALL_STATE(4710)] = 112209, - [SMALL_STATE(4711)] = 112261, - [SMALL_STATE(4712)] = 112313, - [SMALL_STATE(4713)] = 112365, - [SMALL_STATE(4714)] = 112417, - [SMALL_STATE(4715)] = 112467, - [SMALL_STATE(4716)] = 112523, - [SMALL_STATE(4717)] = 112575, - [SMALL_STATE(4718)] = 112627, - [SMALL_STATE(4719)] = 112685, - [SMALL_STATE(4720)] = 112735, - [SMALL_STATE(4721)] = 112789, - [SMALL_STATE(4722)] = 112841, - [SMALL_STATE(4723)] = 112903, - [SMALL_STATE(4724)] = 112955, - [SMALL_STATE(4725)] = 113007, - [SMALL_STATE(4726)] = 113057, - [SMALL_STATE(4727)] = 113113, - [SMALL_STATE(4728)] = 113163, - [SMALL_STATE(4729)] = 113213, - [SMALL_STATE(4730)] = 113269, - [SMALL_STATE(4731)] = 113325, - [SMALL_STATE(4732)] = 113379, - [SMALL_STATE(4733)] = 113431, - [SMALL_STATE(4734)] = 113487, - [SMALL_STATE(4735)] = 113537, - [SMALL_STATE(4736)] = 113591, - [SMALL_STATE(4737)] = 113641, - [SMALL_STATE(4738)] = 113695, - [SMALL_STATE(4739)] = 113747, - [SMALL_STATE(4740)] = 113799, - [SMALL_STATE(4741)] = 113853, - [SMALL_STATE(4742)] = 113909, - [SMALL_STATE(4743)] = 113963, - [SMALL_STATE(4744)] = 114017, - [SMALL_STATE(4745)] = 114071, - [SMALL_STATE(4746)] = 114125, - [SMALL_STATE(4747)] = 114187, - [SMALL_STATE(4748)] = 114237, - [SMALL_STATE(4749)] = 114293, - [SMALL_STATE(4750)] = 114347, - [SMALL_STATE(4751)] = 114401, - [SMALL_STATE(4752)] = 114453, - [SMALL_STATE(4753)] = 114507, - [SMALL_STATE(4754)] = 114561, - [SMALL_STATE(4755)] = 114611, - [SMALL_STATE(4756)] = 114667, - [SMALL_STATE(4757)] = 114721, - [SMALL_STATE(4758)] = 114771, - [SMALL_STATE(4759)] = 114821, - [SMALL_STATE(4760)] = 114877, - [SMALL_STATE(4761)] = 114927, - [SMALL_STATE(4762)] = 114977, - [SMALL_STATE(4763)] = 115031, - [SMALL_STATE(4764)] = 115081, - [SMALL_STATE(4765)] = 115131, - [SMALL_STATE(4766)] = 115181, - [SMALL_STATE(4767)] = 115231, - [SMALL_STATE(4768)] = 115281, - [SMALL_STATE(4769)] = 115331, - [SMALL_STATE(4770)] = 115381, - [SMALL_STATE(4771)] = 115431, - [SMALL_STATE(4772)] = 115481, - [SMALL_STATE(4773)] = 115531, - [SMALL_STATE(4774)] = 115585, - [SMALL_STATE(4775)] = 115639, - [SMALL_STATE(4776)] = 115693, - [SMALL_STATE(4777)] = 115747, - [SMALL_STATE(4778)] = 115797, - [SMALL_STATE(4779)] = 115855, - [SMALL_STATE(4780)] = 115917, - [SMALL_STATE(4781)] = 115967, - [SMALL_STATE(4782)] = 116021, - [SMALL_STATE(4783)] = 116079, - [SMALL_STATE(4784)] = 116129, - [SMALL_STATE(4785)] = 116179, - [SMALL_STATE(4786)] = 116229, - [SMALL_STATE(4787)] = 116279, - [SMALL_STATE(4788)] = 116331, - [SMALL_STATE(4789)] = 116381, - [SMALL_STATE(4790)] = 116443, - [SMALL_STATE(4791)] = 116499, - [SMALL_STATE(4792)] = 116549, - [SMALL_STATE(4793)] = 116605, - [SMALL_STATE(4794)] = 116661, - [SMALL_STATE(4795)] = 116717, - [SMALL_STATE(4796)] = 116773, - [SMALL_STATE(4797)] = 116829, - [SMALL_STATE(4798)] = 116879, - [SMALL_STATE(4799)] = 116933, - [SMALL_STATE(4800)] = 116989, - [SMALL_STATE(4801)] = 117039, - [SMALL_STATE(4802)] = 117101, - [SMALL_STATE(4803)] = 117153, - [SMALL_STATE(4804)] = 117207, - [SMALL_STATE(4805)] = 117263, - [SMALL_STATE(4806)] = 117317, - [SMALL_STATE(4807)] = 117367, - [SMALL_STATE(4808)] = 117423, - [SMALL_STATE(4809)] = 117477, - [SMALL_STATE(4810)] = 117531, - [SMALL_STATE(4811)] = 117593, - [SMALL_STATE(4812)] = 117649, - [SMALL_STATE(4813)] = 117703, - [SMALL_STATE(4814)] = 117759, - [SMALL_STATE(4815)] = 117813, - [SMALL_STATE(4816)] = 117867, - [SMALL_STATE(4817)] = 117919, - [SMALL_STATE(4818)] = 117969, - [SMALL_STATE(4819)] = 118023, - [SMALL_STATE(4820)] = 118073, - [SMALL_STATE(4821)] = 118127, - [SMALL_STATE(4822)] = 118178, - [SMALL_STATE(4823)] = 118227, - [SMALL_STATE(4824)] = 118288, - [SMALL_STATE(4825)] = 118339, - [SMALL_STATE(4826)] = 118392, - [SMALL_STATE(4827)] = 118441, - [SMALL_STATE(4828)] = 118494, - [SMALL_STATE(4829)] = 118543, - [SMALL_STATE(4830)] = 118592, - [SMALL_STATE(4831)] = 118645, - [SMALL_STATE(4832)] = 118696, - [SMALL_STATE(4833)] = 118745, - [SMALL_STATE(4834)] = 118794, - [SMALL_STATE(4835)] = 118847, - [SMALL_STATE(4836)] = 118900, - [SMALL_STATE(4837)] = 118951, - [SMALL_STATE(4838)] = 119004, - [SMALL_STATE(4839)] = 119053, - [SMALL_STATE(4840)] = 119102, - [SMALL_STATE(4841)] = 119153, - [SMALL_STATE(4842)] = 119202, - [SMALL_STATE(4843)] = 119251, - [SMALL_STATE(4844)] = 119312, - [SMALL_STATE(4845)] = 119361, - [SMALL_STATE(4846)] = 119416, - [SMALL_STATE(4847)] = 119469, - [SMALL_STATE(4848)] = 119520, - [SMALL_STATE(4849)] = 119571, - [SMALL_STATE(4850)] = 119620, - [SMALL_STATE(4851)] = 119671, - [SMALL_STATE(4852)] = 119724, - [SMALL_STATE(4853)] = 119775, - [SMALL_STATE(4854)] = 119824, - [SMALL_STATE(4855)] = 119877, - [SMALL_STATE(4856)] = 119928, - [SMALL_STATE(4857)] = 119977, - [SMALL_STATE(4858)] = 120028, - [SMALL_STATE(4859)] = 120089, - [SMALL_STATE(4860)] = 120142, - [SMALL_STATE(4861)] = 120193, - [SMALL_STATE(4862)] = 120244, - [SMALL_STATE(4863)] = 120295, - [SMALL_STATE(4864)] = 120346, - [SMALL_STATE(4865)] = 120397, - [SMALL_STATE(4866)] = 120448, - [SMALL_STATE(4867)] = 120497, - [SMALL_STATE(4868)] = 120552, - [SMALL_STATE(4869)] = 120603, - [SMALL_STATE(4870)] = 120652, - [SMALL_STATE(4871)] = 120701, - [SMALL_STATE(4872)] = 120752, - [SMALL_STATE(4873)] = 120801, - [SMALL_STATE(4874)] = 120850, - [SMALL_STATE(4875)] = 120899, - [SMALL_STATE(4876)] = 120950, - [SMALL_STATE(4877)] = 121005, - [SMALL_STATE(4878)] = 121058, - [SMALL_STATE(4879)] = 121109, - [SMALL_STATE(4880)] = 121162, - [SMALL_STATE(4881)] = 121217, - [SMALL_STATE(4882)] = 121268, - [SMALL_STATE(4883)] = 121323, - [SMALL_STATE(4884)] = 121374, - [SMALL_STATE(4885)] = 121425, - [SMALL_STATE(4886)] = 121478, - [SMALL_STATE(4887)] = 121533, - [SMALL_STATE(4888)] = 121586, - [SMALL_STATE(4889)] = 121635, - [SMALL_STATE(4890)] = 121686, - [SMALL_STATE(4891)] = 121735, - [SMALL_STATE(4892)] = 121790, - [SMALL_STATE(4893)] = 121841, - [SMALL_STATE(4894)] = 121892, - [SMALL_STATE(4895)] = 121943, - [SMALL_STATE(4896)] = 121994, - [SMALL_STATE(4897)] = 122049, - [SMALL_STATE(4898)] = 122100, - [SMALL_STATE(4899)] = 122149, - [SMALL_STATE(4900)] = 122198, - [SMALL_STATE(4901)] = 122247, - [SMALL_STATE(4902)] = 122302, - [SMALL_STATE(4903)] = 122351, - [SMALL_STATE(4904)] = 122402, - [SMALL_STATE(4905)] = 122451, - [SMALL_STATE(4906)] = 122506, - [SMALL_STATE(4907)] = 122555, - [SMALL_STATE(4908)] = 122608, - [SMALL_STATE(4909)] = 122661, - [SMALL_STATE(4910)] = 122712, - [SMALL_STATE(4911)] = 122767, - [SMALL_STATE(4912)] = 122822, - [SMALL_STATE(4913)] = 122873, - [SMALL_STATE(4914)] = 122924, - [SMALL_STATE(4915)] = 122975, - [SMALL_STATE(4916)] = 123028, - [SMALL_STATE(4917)] = 123077, - [SMALL_STATE(4918)] = 123140, - [SMALL_STATE(4919)] = 123193, - [SMALL_STATE(4920)] = 123244, - [SMALL_STATE(4921)] = 123297, - [SMALL_STATE(4922)] = 123358, - [SMALL_STATE(4923)] = 123407, - [SMALL_STATE(4924)] = 123464, - [SMALL_STATE(4925)] = 123513, - [SMALL_STATE(4926)] = 123562, - [SMALL_STATE(4927)] = 123615, - [SMALL_STATE(4928)] = 123670, - [SMALL_STATE(4929)] = 123725, - [SMALL_STATE(4930)] = 123778, - [SMALL_STATE(4931)] = 123829, - [SMALL_STATE(4932)] = 123880, - [SMALL_STATE(4933)] = 123931, - [SMALL_STATE(4934)] = 123992, - [SMALL_STATE(4935)] = 124041, - [SMALL_STATE(4936)] = 124094, - [SMALL_STATE(4937)] = 124147, - [SMALL_STATE(4938)] = 124198, - [SMALL_STATE(4939)] = 124247, - [SMALL_STATE(4940)] = 124300, - [SMALL_STATE(4941)] = 124349, - [SMALL_STATE(4942)] = 124398, - [SMALL_STATE(4943)] = 124451, - [SMALL_STATE(4944)] = 124504, - [SMALL_STATE(4945)] = 124553, - [SMALL_STATE(4946)] = 124608, - [SMALL_STATE(4947)] = 124657, - [SMALL_STATE(4948)] = 124706, - [SMALL_STATE(4949)] = 124755, - [SMALL_STATE(4950)] = 124804, - [SMALL_STATE(4951)] = 124853, - [SMALL_STATE(4952)] = 124901, - [SMALL_STATE(4953)] = 124955, - [SMALL_STATE(4954)] = 125003, - [SMALL_STATE(4955)] = 125051, - [SMALL_STATE(4956)] = 125099, - [SMALL_STATE(4957)] = 125147, - [SMALL_STATE(4958)] = 125195, - [SMALL_STATE(4959)] = 125243, - [SMALL_STATE(4960)] = 125295, - [SMALL_STATE(4961)] = 125343, - [SMALL_STATE(4962)] = 125391, - [SMALL_STATE(4963)] = 125445, - [SMALL_STATE(4964)] = 125499, - [SMALL_STATE(4965)] = 125547, - [SMALL_STATE(4966)] = 125595, - [SMALL_STATE(4967)] = 125645, - [SMALL_STATE(4968)] = 125693, - [SMALL_STATE(4969)] = 125743, - [SMALL_STATE(4970)] = 125791, - [SMALL_STATE(4971)] = 125839, - [SMALL_STATE(4972)] = 125887, - [SMALL_STATE(4973)] = 125941, - [SMALL_STATE(4974)] = 125989, - [SMALL_STATE(4975)] = 126037, - [SMALL_STATE(4976)] = 126085, - [SMALL_STATE(4977)] = 126137, - [SMALL_STATE(4978)] = 126191, - [SMALL_STATE(4979)] = 126239, - [SMALL_STATE(4980)] = 126299, - [SMALL_STATE(4981)] = 126347, - [SMALL_STATE(4982)] = 126395, - [SMALL_STATE(4983)] = 126447, - [SMALL_STATE(4984)] = 126501, - [SMALL_STATE(4985)] = 126551, - [SMALL_STATE(4986)] = 126599, - [SMALL_STATE(4987)] = 126653, - [SMALL_STATE(4988)] = 126701, - [SMALL_STATE(4989)] = 126755, - [SMALL_STATE(4990)] = 126803, - [SMALL_STATE(4991)] = 126853, - [SMALL_STATE(4992)] = 126901, - [SMALL_STATE(4993)] = 126949, - [SMALL_STATE(4994)] = 126997, - [SMALL_STATE(4995)] = 127047, - [SMALL_STATE(4996)] = 127097, - [SMALL_STATE(4997)] = 127149, - [SMALL_STATE(4998)] = 127197, - [SMALL_STATE(4999)] = 127253, - [SMALL_STATE(5000)] = 127305, - [SMALL_STATE(5001)] = 127355, - [SMALL_STATE(5002)] = 127403, - [SMALL_STATE(5003)] = 127451, - [SMALL_STATE(5004)] = 127499, - [SMALL_STATE(5005)] = 127547, - [SMALL_STATE(5006)] = 127595, - [SMALL_STATE(5007)] = 127643, - [SMALL_STATE(5008)] = 127691, - [SMALL_STATE(5009)] = 127745, - [SMALL_STATE(5010)] = 127793, - [SMALL_STATE(5011)] = 127841, - [SMALL_STATE(5012)] = 127889, - [SMALL_STATE(5013)] = 127937, - [SMALL_STATE(5014)] = 127985, - [SMALL_STATE(5015)] = 128039, - [SMALL_STATE(5016)] = 128087, - [SMALL_STATE(5017)] = 128143, - [SMALL_STATE(5018)] = 128191, - [SMALL_STATE(5019)] = 128251, - [SMALL_STATE(5020)] = 128299, - [SMALL_STATE(5021)] = 128347, - [SMALL_STATE(5022)] = 128395, - [SMALL_STATE(5023)] = 128449, - [SMALL_STATE(5024)] = 128499, - [SMALL_STATE(5025)] = 128547, - [SMALL_STATE(5026)] = 128595, - [SMALL_STATE(5027)] = 128643, - [SMALL_STATE(5028)] = 128697, - [SMALL_STATE(5029)] = 128745, - [SMALL_STATE(5030)] = 128793, - [SMALL_STATE(5031)] = 128841, - [SMALL_STATE(5032)] = 128895, - [SMALL_STATE(5033)] = 128943, - [SMALL_STATE(5034)] = 128991, - [SMALL_STATE(5035)] = 129041, - [SMALL_STATE(5036)] = 129089, - [SMALL_STATE(5037)] = 129137, - [SMALL_STATE(5038)] = 129185, - [SMALL_STATE(5039)] = 129233, - [SMALL_STATE(5040)] = 129281, - [SMALL_STATE(5041)] = 129329, - [SMALL_STATE(5042)] = 129377, - [SMALL_STATE(5043)] = 129425, - [SMALL_STATE(5044)] = 129479, - [SMALL_STATE(5045)] = 129527, - [SMALL_STATE(5046)] = 129575, - [SMALL_STATE(5047)] = 129623, - [SMALL_STATE(5048)] = 129677, - [SMALL_STATE(5049)] = 129725, - [SMALL_STATE(5050)] = 129773, - [SMALL_STATE(5051)] = 129821, - [SMALL_STATE(5052)] = 129875, - [SMALL_STATE(5053)] = 129923, - [SMALL_STATE(5054)] = 129969, - [SMALL_STATE(5055)] = 130017, - [SMALL_STATE(5056)] = 130065, - [SMALL_STATE(5057)] = 130113, - [SMALL_STATE(5058)] = 130175, - [SMALL_STATE(5059)] = 130223, - [SMALL_STATE(5060)] = 130277, - [SMALL_STATE(5061)] = 130327, - [SMALL_STATE(5062)] = 130375, - [SMALL_STATE(5063)] = 130423, - [SMALL_STATE(5064)] = 130471, - [SMALL_STATE(5065)] = 130519, - [SMALL_STATE(5066)] = 130567, - [SMALL_STATE(5067)] = 130617, - [SMALL_STATE(5068)] = 130665, - [SMALL_STATE(5069)] = 130715, - [SMALL_STATE(5070)] = 130763, - [SMALL_STATE(5071)] = 130811, - [SMALL_STATE(5072)] = 130859, - [SMALL_STATE(5073)] = 130909, - [SMALL_STATE(5074)] = 130961, - [SMALL_STATE(5075)] = 131015, - [SMALL_STATE(5076)] = 131063, - [SMALL_STATE(5077)] = 131111, - [SMALL_STATE(5078)] = 131159, - [SMALL_STATE(5079)] = 131207, - [SMALL_STATE(5080)] = 131255, - [SMALL_STATE(5081)] = 131309, - [SMALL_STATE(5082)] = 131361, - [SMALL_STATE(5083)] = 131409, - [SMALL_STATE(5084)] = 131461, - [SMALL_STATE(5085)] = 131509, - [SMALL_STATE(5086)] = 131559, - [SMALL_STATE(5087)] = 131607, - [SMALL_STATE(5088)] = 131657, - [SMALL_STATE(5089)] = 131707, - [SMALL_STATE(5090)] = 131755, - [SMALL_STATE(5091)] = 131803, - [SMALL_STATE(5092)] = 131851, - [SMALL_STATE(5093)] = 131905, - [SMALL_STATE(5094)] = 131955, - [SMALL_STATE(5095)] = 132009, - [SMALL_STATE(5096)] = 132059, - [SMALL_STATE(5097)] = 132107, - [SMALL_STATE(5098)] = 132155, - [SMALL_STATE(5099)] = 132209, - [SMALL_STATE(5100)] = 132259, - [SMALL_STATE(5101)] = 132311, - [SMALL_STATE(5102)] = 132365, - [SMALL_STATE(5103)] = 132413, - [SMALL_STATE(5104)] = 132461, - [SMALL_STATE(5105)] = 132509, - [SMALL_STATE(5106)] = 132591, - [SMALL_STATE(5107)] = 132641, - [SMALL_STATE(5108)] = 132695, - [SMALL_STATE(5109)] = 132745, - [SMALL_STATE(5110)] = 132795, - [SMALL_STATE(5111)] = 132843, - [SMALL_STATE(5112)] = 132903, - [SMALL_STATE(5113)] = 132951, - [SMALL_STATE(5114)] = 133001, - [SMALL_STATE(5115)] = 133049, - [SMALL_STATE(5116)] = 133097, - [SMALL_STATE(5117)] = 133145, - [SMALL_STATE(5118)] = 133195, - [SMALL_STATE(5119)] = 133243, - [SMALL_STATE(5120)] = 133297, - [SMALL_STATE(5121)] = 133351, - [SMALL_STATE(5122)] = 133405, - [SMALL_STATE(5123)] = 133453, - [SMALL_STATE(5124)] = 133501, - [SMALL_STATE(5125)] = 133549, - [SMALL_STATE(5126)] = 133597, - [SMALL_STATE(5127)] = 133645, - [SMALL_STATE(5128)] = 133693, - [SMALL_STATE(5129)] = 133741, - [SMALL_STATE(5130)] = 133789, - [SMALL_STATE(5131)] = 133849, - [SMALL_STATE(5132)] = 133897, - [SMALL_STATE(5133)] = 133945, - [SMALL_STATE(5134)] = 134005, - [SMALL_STATE(5135)] = 134053, - [SMALL_STATE(5136)] = 134113, - [SMALL_STATE(5137)] = 134161, - [SMALL_STATE(5138)] = 134209, - [SMALL_STATE(5139)] = 134263, - [SMALL_STATE(5140)] = 134323, - [SMALL_STATE(5141)] = 134371, - [SMALL_STATE(5142)] = 134419, - [SMALL_STATE(5143)] = 134467, - [SMALL_STATE(5144)] = 134515, - [SMALL_STATE(5145)] = 134563, - [SMALL_STATE(5146)] = 134617, - [SMALL_STATE(5147)] = 134671, - [SMALL_STATE(5148)] = 134721, - [SMALL_STATE(5149)] = 134769, - [SMALL_STATE(5150)] = 134823, - [SMALL_STATE(5151)] = 134875, - [SMALL_STATE(5152)] = 134923, - [SMALL_STATE(5153)] = 134983, - [SMALL_STATE(5154)] = 135033, - [SMALL_STATE(5155)] = 135085, - [SMALL_STATE(5156)] = 135139, - [SMALL_STATE(5157)] = 135187, - [SMALL_STATE(5158)] = 135241, - [SMALL_STATE(5159)] = 135291, - [SMALL_STATE(5160)] = 135345, - [SMALL_STATE(5161)] = 135393, - [SMALL_STATE(5162)] = 135441, - [SMALL_STATE(5163)] = 135489, - [SMALL_STATE(5164)] = 135549, - [SMALL_STATE(5165)] = 135603, - [SMALL_STATE(5166)] = 135651, - [SMALL_STATE(5167)] = 135699, - [SMALL_STATE(5168)] = 135747, - [SMALL_STATE(5169)] = 135795, - [SMALL_STATE(5170)] = 135849, - [SMALL_STATE(5171)] = 135901, - [SMALL_STATE(5172)] = 135955, - [SMALL_STATE(5173)] = 136005, - [SMALL_STATE(5174)] = 136087, - [SMALL_STATE(5175)] = 136135, - [SMALL_STATE(5176)] = 136189, - [SMALL_STATE(5177)] = 136245, - [SMALL_STATE(5178)] = 136293, - [SMALL_STATE(5179)] = 136341, - [SMALL_STATE(5180)] = 136393, - [SMALL_STATE(5181)] = 136441, - [SMALL_STATE(5182)] = 136489, - [SMALL_STATE(5183)] = 136537, - [SMALL_STATE(5184)] = 136585, - [SMALL_STATE(5185)] = 136639, - [SMALL_STATE(5186)] = 136687, - [SMALL_STATE(5187)] = 136735, - [SMALL_STATE(5188)] = 136795, - [SMALL_STATE(5189)] = 136849, - [SMALL_STATE(5190)] = 136909, - [SMALL_STATE(5191)] = 136957, - [SMALL_STATE(5192)] = 137011, - [SMALL_STATE(5193)] = 137059, - [SMALL_STATE(5194)] = 137121, - [SMALL_STATE(5195)] = 137169, - [SMALL_STATE(5196)] = 137217, - [SMALL_STATE(5197)] = 137265, - [SMALL_STATE(5198)] = 137325, - [SMALL_STATE(5199)] = 137383, - [SMALL_STATE(5200)] = 137431, - [SMALL_STATE(5201)] = 137479, - [SMALL_STATE(5202)] = 137529, - [SMALL_STATE(5203)] = 137579, - [SMALL_STATE(5204)] = 137627, - [SMALL_STATE(5205)] = 137679, - [SMALL_STATE(5206)] = 137733, - [SMALL_STATE(5207)] = 137787, - [SMALL_STATE(5208)] = 137835, - [SMALL_STATE(5209)] = 137889, - [SMALL_STATE(5210)] = 137937, - [SMALL_STATE(5211)] = 137997, - [SMALL_STATE(5212)] = 138045, - [SMALL_STATE(5213)] = 138093, - [SMALL_STATE(5214)] = 138141, - [SMALL_STATE(5215)] = 138189, - [SMALL_STATE(5216)] = 138237, - [SMALL_STATE(5217)] = 138289, - [SMALL_STATE(5218)] = 138337, - [SMALL_STATE(5219)] = 138385, - [SMALL_STATE(5220)] = 138437, - [SMALL_STATE(5221)] = 138491, - [SMALL_STATE(5222)] = 138539, - [SMALL_STATE(5223)] = 138586, - [SMALL_STATE(5224)] = 138637, - [SMALL_STATE(5225)] = 138684, - [SMALL_STATE(5226)] = 138733, - [SMALL_STATE(5227)] = 138782, - [SMALL_STATE(5228)] = 138829, - [SMALL_STATE(5229)] = 138876, - [SMALL_STATE(5230)] = 138923, - [SMALL_STATE(5231)] = 138970, - [SMALL_STATE(5232)] = 139015, - [SMALL_STATE(5233)] = 139062, - [SMALL_STATE(5234)] = 139109, - [SMALL_STATE(5235)] = 139156, - [SMALL_STATE(5236)] = 139203, - [SMALL_STATE(5237)] = 139256, - [SMALL_STATE(5238)] = 139303, - [SMALL_STATE(5239)] = 139350, - [SMALL_STATE(5240)] = 139397, - [SMALL_STATE(5241)] = 139450, - [SMALL_STATE(5242)] = 139501, - [SMALL_STATE(5243)] = 139548, - [SMALL_STATE(5244)] = 139595, - [SMALL_STATE(5245)] = 139642, - [SMALL_STATE(5246)] = 139689, - [SMALL_STATE(5247)] = 139742, - [SMALL_STATE(5248)] = 139791, - [SMALL_STATE(5249)] = 139840, - [SMALL_STATE(5250)] = 139887, - [SMALL_STATE(5251)] = 139932, - [SMALL_STATE(5252)] = 139979, - [SMALL_STATE(5253)] = 140026, - [SMALL_STATE(5254)] = 140085, - [SMALL_STATE(5255)] = 140134, - [SMALL_STATE(5256)] = 140187, - [SMALL_STATE(5257)] = 140246, - [SMALL_STATE(5258)] = 140293, - [SMALL_STATE(5259)] = 140346, - [SMALL_STATE(5260)] = 140425, - [SMALL_STATE(5261)] = 140478, - [SMALL_STATE(5262)] = 140525, - [SMALL_STATE(5263)] = 140572, - [SMALL_STATE(5264)] = 140627, - [SMALL_STATE(5265)] = 140672, - [SMALL_STATE(5266)] = 140719, - [SMALL_STATE(5267)] = 140772, - [SMALL_STATE(5268)] = 140851, - [SMALL_STATE(5269)] = 140904, - [SMALL_STATE(5270)] = 140957, - [SMALL_STATE(5271)] = 141008, - [SMALL_STATE(5272)] = 141061, - [SMALL_STATE(5273)] = 141114, - [SMALL_STATE(5274)] = 141169, - [SMALL_STATE(5275)] = 141222, - [SMALL_STATE(5276)] = 141273, - [SMALL_STATE(5277)] = 141320, - [SMALL_STATE(5278)] = 141371, - [SMALL_STATE(5279)] = 141418, - [SMALL_STATE(5280)] = 141467, - [SMALL_STATE(5281)] = 141516, - [SMALL_STATE(5282)] = 141569, - [SMALL_STATE(5283)] = 141616, - [SMALL_STATE(5284)] = 141669, - [SMALL_STATE(5285)] = 141716, - [SMALL_STATE(5286)] = 141769, - [SMALL_STATE(5287)] = 141816, - [SMALL_STATE(5288)] = 141867, - [SMALL_STATE(5289)] = 141914, - [SMALL_STATE(5290)] = 141961, - [SMALL_STATE(5291)] = 142012, - [SMALL_STATE(5292)] = 142059, - [SMALL_STATE(5293)] = 142106, - [SMALL_STATE(5294)] = 142159, - [SMALL_STATE(5295)] = 142206, - [SMALL_STATE(5296)] = 142253, - [SMALL_STATE(5297)] = 142300, - [SMALL_STATE(5298)] = 142347, - [SMALL_STATE(5299)] = 142394, - [SMALL_STATE(5300)] = 142441, - [SMALL_STATE(5301)] = 142488, - [SMALL_STATE(5302)] = 142541, - [SMALL_STATE(5303)] = 142594, - [SMALL_STATE(5304)] = 142641, - [SMALL_STATE(5305)] = 142686, - [SMALL_STATE(5306)] = 142739, - [SMALL_STATE(5307)] = 142786, - [SMALL_STATE(5308)] = 142837, - [SMALL_STATE(5309)] = 142890, - [SMALL_STATE(5310)] = 142941, - [SMALL_STATE(5311)] = 142994, - [SMALL_STATE(5312)] = 143041, - [SMALL_STATE(5313)] = 143094, - [SMALL_STATE(5314)] = 143141, - [SMALL_STATE(5315)] = 143186, - [SMALL_STATE(5316)] = 143239, - [SMALL_STATE(5317)] = 143298, - [SMALL_STATE(5318)] = 143345, - [SMALL_STATE(5319)] = 143392, - [SMALL_STATE(5320)] = 143439, - [SMALL_STATE(5321)] = 143490, - [SMALL_STATE(5322)] = 143537, - [SMALL_STATE(5323)] = 143590, - [SMALL_STATE(5324)] = 143637, - [SMALL_STATE(5325)] = 143696, - [SMALL_STATE(5326)] = 143743, - [SMALL_STATE(5327)] = 143790, - [SMALL_STATE(5328)] = 143837, - [SMALL_STATE(5329)] = 143884, - [SMALL_STATE(5330)] = 143937, - [SMALL_STATE(5331)] = 143990, - [SMALL_STATE(5332)] = 144043, - [SMALL_STATE(5333)] = 144090, - [SMALL_STATE(5334)] = 144137, - [SMALL_STATE(5335)] = 144182, - [SMALL_STATE(5336)] = 144233, - [SMALL_STATE(5337)] = 144280, - [SMALL_STATE(5338)] = 144327, - [SMALL_STATE(5339)] = 144374, - [SMALL_STATE(5340)] = 144427, - [SMALL_STATE(5341)] = 144480, - [SMALL_STATE(5342)] = 144527, - [SMALL_STATE(5343)] = 144578, - [SMALL_STATE(5344)] = 144631, - [SMALL_STATE(5345)] = 144678, - [SMALL_STATE(5346)] = 144725, - [SMALL_STATE(5347)] = 144772, - [SMALL_STATE(5348)] = 144825, - [SMALL_STATE(5349)] = 144878, - [SMALL_STATE(5350)] = 144925, - [SMALL_STATE(5351)] = 144978, - [SMALL_STATE(5352)] = 145025, - [SMALL_STATE(5353)] = 145072, - [SMALL_STATE(5354)] = 145119, - [SMALL_STATE(5355)] = 145166, - [SMALL_STATE(5356)] = 145225, - [SMALL_STATE(5357)] = 145272, - [SMALL_STATE(5358)] = 145331, - [SMALL_STATE(5359)] = 145384, - [SMALL_STATE(5360)] = 145441, - [SMALL_STATE(5361)] = 145488, - [SMALL_STATE(5362)] = 145535, - [SMALL_STATE(5363)] = 145588, - [SMALL_STATE(5364)] = 145635, - [SMALL_STATE(5365)] = 145688, - [SMALL_STATE(5366)] = 145735, - [SMALL_STATE(5367)] = 145782, - [SMALL_STATE(5368)] = 145829, - [SMALL_STATE(5369)] = 145876, - [SMALL_STATE(5370)] = 145925, - [SMALL_STATE(5371)] = 145974, - [SMALL_STATE(5372)] = 146023, - [SMALL_STATE(5373)] = 146070, - [SMALL_STATE(5374)] = 146117, - [SMALL_STATE(5375)] = 146164, - [SMALL_STATE(5376)] = 146211, - [SMALL_STATE(5377)] = 146258, - [SMALL_STATE(5378)] = 146305, - [SMALL_STATE(5379)] = 146364, - [SMALL_STATE(5380)] = 146411, - [SMALL_STATE(5381)] = 146464, - [SMALL_STATE(5382)] = 146515, - [SMALL_STATE(5383)] = 146562, - [SMALL_STATE(5384)] = 146615, - [SMALL_STATE(5385)] = 146668, - [SMALL_STATE(5386)] = 146715, - [SMALL_STATE(5387)] = 146762, - [SMALL_STATE(5388)] = 146811, - [SMALL_STATE(5389)] = 146858, - [SMALL_STATE(5390)] = 146911, - [SMALL_STATE(5391)] = 146958, - [SMALL_STATE(5392)] = 147005, - [SMALL_STATE(5393)] = 147052, - [SMALL_STATE(5394)] = 147099, - [SMALL_STATE(5395)] = 147146, - [SMALL_STATE(5396)] = 147201, - [SMALL_STATE(5397)] = 147252, - [SMALL_STATE(5398)] = 147299, - [SMALL_STATE(5399)] = 147352, - [SMALL_STATE(5400)] = 147433, - [SMALL_STATE(5401)] = 147480, - [SMALL_STATE(5402)] = 147561, - [SMALL_STATE(5403)] = 147608, - [SMALL_STATE(5404)] = 147655, - [SMALL_STATE(5405)] = 147732, - [SMALL_STATE(5406)] = 147779, - [SMALL_STATE(5407)] = 147826, - [SMALL_STATE(5408)] = 147877, - [SMALL_STATE(5409)] = 147924, - [SMALL_STATE(5410)] = 147971, - [SMALL_STATE(5411)] = 148020, - [SMALL_STATE(5412)] = 148069, - [SMALL_STATE(5413)] = 148126, - [SMALL_STATE(5414)] = 148177, - [SMALL_STATE(5415)] = 148224, - [SMALL_STATE(5416)] = 148273, - [SMALL_STATE(5417)] = 148326, - [SMALL_STATE(5418)] = 148379, - [SMALL_STATE(5419)] = 148426, - [SMALL_STATE(5420)] = 148479, - [SMALL_STATE(5421)] = 148526, - [SMALL_STATE(5422)] = 148573, - [SMALL_STATE(5423)] = 148620, - [SMALL_STATE(5424)] = 148667, - [SMALL_STATE(5425)] = 148714, - [SMALL_STATE(5426)] = 148761, - [SMALL_STATE(5427)] = 148808, - [SMALL_STATE(5428)] = 148855, - [SMALL_STATE(5429)] = 148902, - [SMALL_STATE(5430)] = 148951, - [SMALL_STATE(5431)] = 148998, - [SMALL_STATE(5432)] = 149047, - [SMALL_STATE(5433)] = 149096, - [SMALL_STATE(5434)] = 149149, - [SMALL_STATE(5435)] = 149204, - [SMALL_STATE(5436)] = 149257, - [SMALL_STATE(5437)] = 149304, - [SMALL_STATE(5438)] = 149355, - [SMALL_STATE(5439)] = 149408, - [SMALL_STATE(5440)] = 149461, - [SMALL_STATE(5441)] = 149514, - [SMALL_STATE(5442)] = 149567, - [SMALL_STATE(5443)] = 149622, - [SMALL_STATE(5444)] = 149669, - [SMALL_STATE(5445)] = 149716, - [SMALL_STATE(5446)] = 149767, - [SMALL_STATE(5447)] = 149820, - [SMALL_STATE(5448)] = 149881, - [SMALL_STATE(5449)] = 149936, - [SMALL_STATE(5450)] = 150001, - [SMALL_STATE(5451)] = 150054, - [SMALL_STATE(5452)] = 150103, - [SMALL_STATE(5453)] = 150160, - [SMALL_STATE(5454)] = 150227, - [SMALL_STATE(5455)] = 150296, - [SMALL_STATE(5456)] = 150367, - [SMALL_STATE(5457)] = 150440, - [SMALL_STATE(5458)] = 150515, - [SMALL_STATE(5459)] = 150592, - [SMALL_STATE(5460)] = 150671, - [SMALL_STATE(5461)] = 150720, - [SMALL_STATE(5462)] = 150769, - [SMALL_STATE(5463)] = 150816, - [SMALL_STATE(5464)] = 150863, - [SMALL_STATE(5465)] = 150916, - [SMALL_STATE(5466)] = 150963, - [SMALL_STATE(5467)] = 151010, - [SMALL_STATE(5468)] = 151063, - [SMALL_STATE(5469)] = 151116, - [SMALL_STATE(5470)] = 151169, - [SMALL_STATE(5471)] = 151222, - [SMALL_STATE(5472)] = 151275, - [SMALL_STATE(5473)] = 151322, - [SMALL_STATE(5474)] = 151370, - [SMALL_STATE(5475)] = 151416, - [SMALL_STATE(5476)] = 151464, - [SMALL_STATE(5477)] = 151510, - [SMALL_STATE(5478)] = 151558, - [SMALL_STATE(5479)] = 151604, - [SMALL_STATE(5480)] = 151652, - [SMALL_STATE(5481)] = 151698, - [SMALL_STATE(5482)] = 151750, - [SMALL_STATE(5483)] = 151796, - [SMALL_STATE(5484)] = 151842, - [SMALL_STATE(5485)] = 151890, - [SMALL_STATE(5486)] = 151938, - [SMALL_STATE(5487)] = 151986, - [SMALL_STATE(5488)] = 152034, - [SMALL_STATE(5489)] = 152080, - [SMALL_STATE(5490)] = 152132, - [SMALL_STATE(5491)] = 152184, - [SMALL_STATE(5492)] = 152234, - [SMALL_STATE(5493)] = 152280, - [SMALL_STATE(5494)] = 152330, - [SMALL_STATE(5495)] = 152376, - [SMALL_STATE(5496)] = 152426, - [SMALL_STATE(5497)] = 152472, - [SMALL_STATE(5498)] = 152524, - [SMALL_STATE(5499)] = 152572, - [SMALL_STATE(5500)] = 152626, - [SMALL_STATE(5501)] = 152674, - [SMALL_STATE(5502)] = 152726, - [SMALL_STATE(5503)] = 152778, - [SMALL_STATE(5504)] = 152824, - [SMALL_STATE(5505)] = 152870, - [SMALL_STATE(5506)] = 152918, - [SMALL_STATE(5507)] = 152968, - [SMALL_STATE(5508)] = 153018, - [SMALL_STATE(5509)] = 153066, - [SMALL_STATE(5510)] = 153112, - [SMALL_STATE(5511)] = 153190, - [SMALL_STATE(5512)] = 153238, - [SMALL_STATE(5513)] = 153290, - [SMALL_STATE(5514)] = 153338, - [SMALL_STATE(5515)] = 153390, - [SMALL_STATE(5516)] = 153442, - [SMALL_STATE(5517)] = 153488, - [SMALL_STATE(5518)] = 153534, - [SMALL_STATE(5519)] = 153580, - [SMALL_STATE(5520)] = 153626, - [SMALL_STATE(5521)] = 153672, - [SMALL_STATE(5522)] = 153718, - [SMALL_STATE(5523)] = 153764, - [SMALL_STATE(5524)] = 153822, - [SMALL_STATE(5525)] = 153870, - [SMALL_STATE(5526)] = 153916, - [SMALL_STATE(5527)] = 153960, - [SMALL_STATE(5528)] = 154010, - [SMALL_STATE(5529)] = 154064, - [SMALL_STATE(5530)] = 154112, - [SMALL_STATE(5531)] = 154158, - [SMALL_STATE(5532)] = 154204, - [SMALL_STATE(5533)] = 154256, - [SMALL_STATE(5534)] = 154302, - [SMALL_STATE(5535)] = 154348, - [SMALL_STATE(5536)] = 154394, - [SMALL_STATE(5537)] = 154472, - [SMALL_STATE(5538)] = 154520, - [SMALL_STATE(5539)] = 154568, - [SMALL_STATE(5540)] = 154616, - [SMALL_STATE(5541)] = 154676, - [SMALL_STATE(5542)] = 154722, - [SMALL_STATE(5543)] = 154776, - [SMALL_STATE(5544)] = 154822, - [SMALL_STATE(5545)] = 154868, - [SMALL_STATE(5546)] = 154916, - [SMALL_STATE(5547)] = 154962, - [SMALL_STATE(5548)] = 155026, - [SMALL_STATE(5549)] = 155072, - [SMALL_STATE(5550)] = 155118, - [SMALL_STATE(5551)] = 155166, - [SMALL_STATE(5552)] = 155218, - [SMALL_STATE(5553)] = 155266, - [SMALL_STATE(5554)] = 155314, - [SMALL_STATE(5555)] = 155370, - [SMALL_STATE(5556)] = 155418, - [SMALL_STATE(5557)] = 155466, - [SMALL_STATE(5558)] = 155514, - [SMALL_STATE(5559)] = 155560, - [SMALL_STATE(5560)] = 155606, - [SMALL_STATE(5561)] = 155672, - [SMALL_STATE(5562)] = 155740, - [SMALL_STATE(5563)] = 155788, - [SMALL_STATE(5564)] = 155836, - [SMALL_STATE(5565)] = 155882, - [SMALL_STATE(5566)] = 155952, - [SMALL_STATE(5567)] = 156000, - [SMALL_STATE(5568)] = 156076, - [SMALL_STATE(5569)] = 156148, - [SMALL_STATE(5570)] = 156200, - [SMALL_STATE(5571)] = 156246, - [SMALL_STATE(5572)] = 156292, - [SMALL_STATE(5573)] = 156338, - [SMALL_STATE(5574)] = 156390, - [SMALL_STATE(5575)] = 156464, - [SMALL_STATE(5576)] = 156510, - [SMALL_STATE(5577)] = 156558, - [SMALL_STATE(5578)] = 156602, - [SMALL_STATE(5579)] = 156648, - [SMALL_STATE(5580)] = 156724, - [SMALL_STATE(5581)] = 156770, - [SMALL_STATE(5582)] = 156816, - [SMALL_STATE(5583)] = 156894, - [SMALL_STATE(5584)] = 156940, - [SMALL_STATE(5585)] = 156988, - [SMALL_STATE(5586)] = 157036, - [SMALL_STATE(5587)] = 157086, - [SMALL_STATE(5588)] = 157132, - [SMALL_STATE(5589)] = 157180, - [SMALL_STATE(5590)] = 157228, - [SMALL_STATE(5591)] = 157278, - [SMALL_STATE(5592)] = 157332, - [SMALL_STATE(5593)] = 157378, - [SMALL_STATE(5594)] = 157424, - [SMALL_STATE(5595)] = 157470, - [SMALL_STATE(5596)] = 157518, - [SMALL_STATE(5597)] = 157564, - [SMALL_STATE(5598)] = 157610, - [SMALL_STATE(5599)] = 157658, - [SMALL_STATE(5600)] = 157710, - [SMALL_STATE(5601)] = 157756, - [SMALL_STATE(5602)] = 157802, - [SMALL_STATE(5603)] = 157848, - [SMALL_STATE(5604)] = 157894, - [SMALL_STATE(5605)] = 157940, - [SMALL_STATE(5606)] = 157994, - [SMALL_STATE(5607)] = 158042, - [SMALL_STATE(5608)] = 158088, - [SMALL_STATE(5609)] = 158134, - [SMALL_STATE(5610)] = 158186, - [SMALL_STATE(5611)] = 158236, - [SMALL_STATE(5612)] = 158282, - [SMALL_STATE(5613)] = 158342, - [SMALL_STATE(5614)] = 158396, - [SMALL_STATE(5615)] = 158460, - [SMALL_STATE(5616)] = 158512, - [SMALL_STATE(5617)] = 158560, - [SMALL_STATE(5618)] = 158616, - [SMALL_STATE(5619)] = 158682, - [SMALL_STATE(5620)] = 158750, - [SMALL_STATE(5621)] = 158820, - [SMALL_STATE(5622)] = 158892, - [SMALL_STATE(5623)] = 158966, - [SMALL_STATE(5624)] = 159042, - [SMALL_STATE(5625)] = 159120, - [SMALL_STATE(5626)] = 159168, - [SMALL_STATE(5627)] = 159214, - [SMALL_STATE(5628)] = 159262, - [SMALL_STATE(5629)] = 159310, - [SMALL_STATE(5630)] = 159362, - [SMALL_STATE(5631)] = 159414, - [SMALL_STATE(5632)] = 159470, - [SMALL_STATE(5633)] = 159515, - [SMALL_STATE(5634)] = 159576, - [SMALL_STATE(5635)] = 159621, - [SMALL_STATE(5636)] = 159666, - [SMALL_STATE(5637)] = 159711, - [SMALL_STATE(5638)] = 159756, - [SMALL_STATE(5639)] = 159807, - [SMALL_STATE(5640)] = 159870, - [SMALL_STATE(5641)] = 159935, - [SMALL_STATE(5642)] = 159980, - [SMALL_STATE(5643)] = 160025, - [SMALL_STATE(5644)] = 160070, - [SMALL_STATE(5645)] = 160137, - [SMALL_STATE(5646)] = 160182, - [SMALL_STATE(5647)] = 160233, - [SMALL_STATE(5648)] = 160282, - [SMALL_STATE(5649)] = 160331, - [SMALL_STATE(5650)] = 160376, - [SMALL_STATE(5651)] = 160421, - [SMALL_STATE(5652)] = 160466, - [SMALL_STATE(5653)] = 160511, - [SMALL_STATE(5654)] = 160556, - [SMALL_STATE(5655)] = 160601, - [SMALL_STATE(5656)] = 160646, - [SMALL_STATE(5657)] = 160715, - [SMALL_STATE(5658)] = 160762, - [SMALL_STATE(5659)] = 160833, - [SMALL_STATE(5660)] = 160878, - [SMALL_STATE(5661)] = 160927, - [SMALL_STATE(5662)] = 160972, - [SMALL_STATE(5663)] = 161019, - [SMALL_STATE(5664)] = 161064, - [SMALL_STATE(5665)] = 161115, - [SMALL_STATE(5666)] = 161160, - [SMALL_STATE(5667)] = 161205, - [SMALL_STATE(5668)] = 161250, - [SMALL_STATE(5669)] = 161295, - [SMALL_STATE(5670)] = 161340, - [SMALL_STATE(5671)] = 161385, - [SMALL_STATE(5672)] = 161430, - [SMALL_STATE(5673)] = 161475, - [SMALL_STATE(5674)] = 161528, - [SMALL_STATE(5675)] = 161573, - [SMALL_STATE(5676)] = 161620, - [SMALL_STATE(5677)] = 161665, - [SMALL_STATE(5678)] = 161720, - [SMALL_STATE(5679)] = 161769, - [SMALL_STATE(5680)] = 161814, - [SMALL_STATE(5681)] = 161863, - [SMALL_STATE(5682)] = 161910, - [SMALL_STATE(5683)] = 161957, - [SMALL_STATE(5684)] = 162002, - [SMALL_STATE(5685)] = 162053, - [SMALL_STATE(5686)] = 162102, - [SMALL_STATE(5687)] = 162147, - [SMALL_STATE(5688)] = 162198, - [SMALL_STATE(5689)] = 162243, - [SMALL_STATE(5690)] = 162288, - [SMALL_STATE(5691)] = 162333, - [SMALL_STATE(5692)] = 162378, - [SMALL_STATE(5693)] = 162423, - [SMALL_STATE(5694)] = 162472, - [SMALL_STATE(5695)] = 162517, - [SMALL_STATE(5696)] = 162588, - [SMALL_STATE(5697)] = 162633, - [SMALL_STATE(5698)] = 162684, - [SMALL_STATE(5699)] = 162729, - [SMALL_STATE(5700)] = 162774, - [SMALL_STATE(5701)] = 162819, - [SMALL_STATE(5702)] = 162864, - [SMALL_STATE(5703)] = 162915, - [SMALL_STATE(5704)] = 162960, - [SMALL_STATE(5705)] = 163005, - [SMALL_STATE(5706)] = 163050, - [SMALL_STATE(5707)] = 163095, - [SMALL_STATE(5708)] = 163146, - [SMALL_STATE(5709)] = 163191, - [SMALL_STATE(5710)] = 163242, - [SMALL_STATE(5711)] = 163287, - [SMALL_STATE(5712)] = 163332, - [SMALL_STATE(5713)] = 163377, - [SMALL_STATE(5714)] = 163422, - [SMALL_STATE(5715)] = 163467, - [SMALL_STATE(5716)] = 163516, - [SMALL_STATE(5717)] = 163561, - [SMALL_STATE(5718)] = 163606, - [SMALL_STATE(5719)] = 163651, - [SMALL_STATE(5720)] = 163696, - [SMALL_STATE(5721)] = 163753, - [SMALL_STATE(5722)] = 163822, - [SMALL_STATE(5723)] = 163867, - [SMALL_STATE(5724)] = 163912, - [SMALL_STATE(5725)] = 163957, - [SMALL_STATE(5726)] = 164002, - [SMALL_STATE(5727)] = 164047, - [SMALL_STATE(5728)] = 164092, - [SMALL_STATE(5729)] = 164137, - [SMALL_STATE(5730)] = 164188, - [SMALL_STATE(5731)] = 164235, - [SMALL_STATE(5732)] = 164284, - [SMALL_STATE(5733)] = 164329, - [SMALL_STATE(5734)] = 164376, - [SMALL_STATE(5735)] = 164421, - [SMALL_STATE(5736)] = 164472, - [SMALL_STATE(5737)] = 164517, - [SMALL_STATE(5738)] = 164568, - [SMALL_STATE(5739)] = 164615, - [SMALL_STATE(5740)] = 164664, - [SMALL_STATE(5741)] = 164709, - [SMALL_STATE(5742)] = 164754, - [SMALL_STATE(5743)] = 164807, - [SMALL_STATE(5744)] = 164852, - [SMALL_STATE(5745)] = 164897, - [SMALL_STATE(5746)] = 164944, - [SMALL_STATE(5747)] = 164991, - [SMALL_STATE(5748)] = 165038, - [SMALL_STATE(5749)] = 165085, - [SMALL_STATE(5750)] = 165130, - [SMALL_STATE(5751)] = 165175, - [SMALL_STATE(5752)] = 165234, - [SMALL_STATE(5753)] = 165279, - [SMALL_STATE(5754)] = 165330, - [SMALL_STATE(5755)] = 165377, - [SMALL_STATE(5756)] = 165438, - [SMALL_STATE(5757)] = 165485, - [SMALL_STATE(5758)] = 165534, - [SMALL_STATE(5759)] = 165579, - [SMALL_STATE(5760)] = 165624, - [SMALL_STATE(5761)] = 165675, - [SMALL_STATE(5762)] = 165720, - [SMALL_STATE(5763)] = 165771, - [SMALL_STATE(5764)] = 165818, - [SMALL_STATE(5765)] = 165869, - [SMALL_STATE(5766)] = 165918, - [SMALL_STATE(5767)] = 165967, - [SMALL_STATE(5768)] = 166012, - [SMALL_STATE(5769)] = 166057, - [SMALL_STATE(5770)] = 166102, - [SMALL_STATE(5771)] = 166147, - [SMALL_STATE(5772)] = 166192, - [SMALL_STATE(5773)] = 166243, - [SMALL_STATE(5774)] = 166288, - [SMALL_STATE(5775)] = 166333, - [SMALL_STATE(5776)] = 166380, - [SMALL_STATE(5777)] = 166425, - [SMALL_STATE(5778)] = 166470, - [SMALL_STATE(5779)] = 166515, - [SMALL_STATE(5780)] = 166578, - [SMALL_STATE(5781)] = 166623, - [SMALL_STATE(5782)] = 166668, - [SMALL_STATE(5783)] = 166713, - [SMALL_STATE(5784)] = 166758, - [SMALL_STATE(5785)] = 166803, - [SMALL_STATE(5786)] = 166848, - [SMALL_STATE(5787)] = 166893, - [SMALL_STATE(5788)] = 166938, - [SMALL_STATE(5789)] = 166983, - [SMALL_STATE(5790)] = 167032, - [SMALL_STATE(5791)] = 167077, - [SMALL_STATE(5792)] = 167122, - [SMALL_STATE(5793)] = 167169, - [SMALL_STATE(5794)] = 167214, - [SMALL_STATE(5795)] = 167263, - [SMALL_STATE(5796)] = 167308, - [SMALL_STATE(5797)] = 167353, - [SMALL_STATE(5798)] = 167400, - [SMALL_STATE(5799)] = 167445, - [SMALL_STATE(5800)] = 167492, - [SMALL_STATE(5801)] = 167537, - [SMALL_STATE(5802)] = 167588, - [SMALL_STATE(5803)] = 167637, - [SMALL_STATE(5804)] = 167688, - [SMALL_STATE(5805)] = 167733, - [SMALL_STATE(5806)] = 167778, - [SMALL_STATE(5807)] = 167833, - [SMALL_STATE(5808)] = 167878, - [SMALL_STATE(5809)] = 167931, - [SMALL_STATE(5810)] = 167976, - [SMALL_STATE(5811)] = 168021, - [SMALL_STATE(5812)] = 168066, - [SMALL_STATE(5813)] = 168111, - [SMALL_STATE(5814)] = 168156, - [SMALL_STATE(5815)] = 168201, - [SMALL_STATE(5816)] = 168246, - [SMALL_STATE(5817)] = 168291, - [SMALL_STATE(5818)] = 168346, - [SMALL_STATE(5819)] = 168393, - [SMALL_STATE(5820)] = 168440, - [SMALL_STATE(5821)] = 168485, - [SMALL_STATE(5822)] = 168530, - [SMALL_STATE(5823)] = 168577, - [SMALL_STATE(5824)] = 168622, - [SMALL_STATE(5825)] = 168667, - [SMALL_STATE(5826)] = 168714, - [SMALL_STATE(5827)] = 168761, - [SMALL_STATE(5828)] = 168808, - [SMALL_STATE(5829)] = 168853, - [SMALL_STATE(5830)] = 168904, - [SMALL_STATE(5831)] = 168949, - [SMALL_STATE(5832)] = 169000, - [SMALL_STATE(5833)] = 169047, - [SMALL_STATE(5834)] = 169092, - [SMALL_STATE(5835)] = 169143, - [SMALL_STATE(5836)] = 169188, - [SMALL_STATE(5837)] = 169245, - [SMALL_STATE(5838)] = 169296, - [SMALL_STATE(5839)] = 169347, - [SMALL_STATE(5840)] = 169392, - [SMALL_STATE(5841)] = 169439, - [SMALL_STATE(5842)] = 169484, - [SMALL_STATE(5843)] = 169533, - [SMALL_STATE(5844)] = 169578, - [SMALL_STATE(5845)] = 169623, - [SMALL_STATE(5846)] = 169668, - [SMALL_STATE(5847)] = 169715, - [SMALL_STATE(5848)] = 169760, - [SMALL_STATE(5849)] = 169805, - [SMALL_STATE(5850)] = 169862, - [SMALL_STATE(5851)] = 169907, - [SMALL_STATE(5852)] = 169952, - [SMALL_STATE(5853)] = 170005, - [SMALL_STATE(5854)] = 170050, - [SMALL_STATE(5855)] = 170095, - [SMALL_STATE(5856)] = 170140, - [SMALL_STATE(5857)] = 170185, - [SMALL_STATE(5858)] = 170230, - [SMALL_STATE(5859)] = 170275, - [SMALL_STATE(5860)] = 170334, - [SMALL_STATE(5861)] = 170381, - [SMALL_STATE(5862)] = 170426, - [SMALL_STATE(5863)] = 170491, - [SMALL_STATE(5864)] = 170538, - [SMALL_STATE(5865)] = 170583, - [SMALL_STATE(5866)] = 170628, - [SMALL_STATE(5867)] = 170673, - [SMALL_STATE(5868)] = 170718, - [SMALL_STATE(5869)] = 170763, - [SMALL_STATE(5870)] = 170814, - [SMALL_STATE(5871)] = 170859, - [SMALL_STATE(5872)] = 170904, - [SMALL_STATE(5873)] = 170971, - [SMALL_STATE(5874)] = 171018, - [SMALL_STATE(5875)] = 171079, - [SMALL_STATE(5876)] = 171124, - [SMALL_STATE(5877)] = 171169, - [SMALL_STATE(5878)] = 171232, - [SMALL_STATE(5879)] = 171277, - [SMALL_STATE(5880)] = 171324, - [SMALL_STATE(5881)] = 171389, - [SMALL_STATE(5882)] = 171434, - [SMALL_STATE(5883)] = 171479, - [SMALL_STATE(5884)] = 171524, - [SMALL_STATE(5885)] = 171569, - [SMALL_STATE(5886)] = 171614, - [SMALL_STATE(5887)] = 171681, - [SMALL_STATE(5888)] = 171728, - [SMALL_STATE(5889)] = 171773, - [SMALL_STATE(5890)] = 171820, - [SMALL_STATE(5891)] = 171865, - [SMALL_STATE(5892)] = 171910, - [SMALL_STATE(5893)] = 171957, - [SMALL_STATE(5894)] = 172002, - [SMALL_STATE(5895)] = 172055, - [SMALL_STATE(5896)] = 172100, - [SMALL_STATE(5897)] = 172145, - [SMALL_STATE(5898)] = 172192, - [SMALL_STATE(5899)] = 172261, - [SMALL_STATE(5900)] = 172306, - [SMALL_STATE(5901)] = 172351, - [SMALL_STATE(5902)] = 172396, - [SMALL_STATE(5903)] = 172441, - [SMALL_STATE(5904)] = 172486, - [SMALL_STATE(5905)] = 172535, - [SMALL_STATE(5906)] = 172582, - [SMALL_STATE(5907)] = 172627, - [SMALL_STATE(5908)] = 172686, - [SMALL_STATE(5909)] = 172739, - [SMALL_STATE(5910)] = 172802, - [SMALL_STATE(5911)] = 172853, - [SMALL_STATE(5912)] = 172900, - [SMALL_STATE(5913)] = 172955, - [SMALL_STATE(5914)] = 173020, - [SMALL_STATE(5915)] = 173087, - [SMALL_STATE(5916)] = 173156, - [SMALL_STATE(5917)] = 173227, - [SMALL_STATE(5918)] = 173300, - [SMALL_STATE(5919)] = 173375, - [SMALL_STATE(5920)] = 173452, - [SMALL_STATE(5921)] = 173497, - [SMALL_STATE(5922)] = 173546, - [SMALL_STATE(5923)] = 173595, - [SMALL_STATE(5924)] = 173640, - [SMALL_STATE(5925)] = 173691, - [SMALL_STATE(5926)] = 173738, - [SMALL_STATE(5927)] = 173791, - [SMALL_STATE(5928)] = 173836, - [SMALL_STATE(5929)] = 173883, - [SMALL_STATE(5930)] = 173932, - [SMALL_STATE(5931)] = 173977, - [SMALL_STATE(5932)] = 174022, - [SMALL_STATE(5933)] = 174073, - [SMALL_STATE(5934)] = 174124, - [SMALL_STATE(5935)] = 174169, - [SMALL_STATE(5936)] = 174218, - [SMALL_STATE(5937)] = 174265, - [SMALL_STATE(5938)] = 174310, - [SMALL_STATE(5939)] = 174355, - [SMALL_STATE(5940)] = 174426, - [SMALL_STATE(5941)] = 174485, - [SMALL_STATE(5942)] = 174536, - [SMALL_STATE(5943)] = 174581, - [SMALL_STATE(5944)] = 174626, - [SMALL_STATE(5945)] = 174671, - [SMALL_STATE(5946)] = 174720, - [SMALL_STATE(5947)] = 174765, - [SMALL_STATE(5948)] = 174810, - [SMALL_STATE(5949)] = 174855, - [SMALL_STATE(5950)] = 174913, - [SMALL_STATE(5951)] = 174957, - [SMALL_STATE(5952)] = 175001, - [SMALL_STATE(5953)] = 175051, - [SMALL_STATE(5954)] = 175105, - [SMALL_STATE(5955)] = 175149, - [SMALL_STATE(5956)] = 175193, - [SMALL_STATE(5957)] = 175237, - [SMALL_STATE(5958)] = 175281, - [SMALL_STATE(5959)] = 175325, - [SMALL_STATE(5960)] = 175369, - [SMALL_STATE(5961)] = 175415, - [SMALL_STATE(5962)] = 175463, - [SMALL_STATE(5963)] = 175507, - [SMALL_STATE(5964)] = 175551, - [SMALL_STATE(5965)] = 175595, - [SMALL_STATE(5966)] = 175653, - [SMALL_STATE(5967)] = 175703, - [SMALL_STATE(5968)] = 175755, - [SMALL_STATE(5969)] = 175815, - [SMALL_STATE(5970)] = 175865, - [SMALL_STATE(5971)] = 175909, - [SMALL_STATE(5972)] = 175955, - [SMALL_STATE(5973)] = 176009, - [SMALL_STATE(5974)] = 176073, - [SMALL_STATE(5975)] = 176139, - [SMALL_STATE(5976)] = 176207, - [SMALL_STATE(5977)] = 176277, - [SMALL_STATE(5978)] = 176349, - [SMALL_STATE(5979)] = 176397, - [SMALL_STATE(5980)] = 176471, - [SMALL_STATE(5981)] = 176515, - [SMALL_STATE(5982)] = 176559, - [SMALL_STATE(5983)] = 176603, - [SMALL_STATE(5984)] = 176647, - [SMALL_STATE(5985)] = 176691, - [SMALL_STATE(5986)] = 176747, - [SMALL_STATE(5987)] = 176791, - [SMALL_STATE(5988)] = 176835, - [SMALL_STATE(5989)] = 176879, - [SMALL_STATE(5990)] = 176929, - [SMALL_STATE(5991)] = 176977, - [SMALL_STATE(5992)] = 177021, - [SMALL_STATE(5993)] = 177065, - [SMALL_STATE(5994)] = 177113, - [SMALL_STATE(5995)] = 177157, - [SMALL_STATE(5996)] = 177201, - [SMALL_STATE(5997)] = 177245, - [SMALL_STATE(5998)] = 177289, - [SMALL_STATE(5999)] = 177333, - [SMALL_STATE(6000)] = 177403, - [SMALL_STATE(6001)] = 177449, - [SMALL_STATE(6002)] = 177493, - [SMALL_STATE(6003)] = 177539, - [SMALL_STATE(6004)] = 177583, - [SMALL_STATE(6005)] = 177627, - [SMALL_STATE(6006)] = 177679, - [SMALL_STATE(6007)] = 177723, - [SMALL_STATE(6008)] = 177781, - [SMALL_STATE(6009)] = 177825, - [SMALL_STATE(6010)] = 177869, - [SMALL_STATE(6011)] = 177913, - [SMALL_STATE(6012)] = 177977, - [SMALL_STATE(6013)] = 178021, - [SMALL_STATE(6014)] = 178065, - [SMALL_STATE(6015)] = 178125, - [SMALL_STATE(6016)] = 178169, - [SMALL_STATE(6017)] = 178213, - [SMALL_STATE(6018)] = 178257, - [SMALL_STATE(6019)] = 178301, - [SMALL_STATE(6020)] = 178345, - [SMALL_STATE(6021)] = 178389, - [SMALL_STATE(6022)] = 178435, - [SMALL_STATE(6023)] = 178479, - [SMALL_STATE(6024)] = 178523, - [SMALL_STATE(6025)] = 178567, - [SMALL_STATE(6026)] = 178611, - [SMALL_STATE(6027)] = 178655, - [SMALL_STATE(6028)] = 178701, - [SMALL_STATE(6029)] = 178745, - [SMALL_STATE(6030)] = 178791, - [SMALL_STATE(6031)] = 178835, - [SMALL_STATE(6032)] = 178879, - [SMALL_STATE(6033)] = 178923, - [SMALL_STATE(6034)] = 178967, - [SMALL_STATE(6035)] = 179029, - [SMALL_STATE(6036)] = 179073, - [SMALL_STATE(6037)] = 179117, - [SMALL_STATE(6038)] = 179163, - [SMALL_STATE(6039)] = 179211, - [SMALL_STATE(6040)] = 179255, - [SMALL_STATE(6041)] = 179325, - [SMALL_STATE(6042)] = 179369, - [SMALL_STATE(6043)] = 179413, - [SMALL_STATE(6044)] = 179457, - [SMALL_STATE(6045)] = 179501, - [SMALL_STATE(6046)] = 179565, - [SMALL_STATE(6047)] = 179609, - [SMALL_STATE(6048)] = 179657, - [SMALL_STATE(6049)] = 179701, - [SMALL_STATE(6050)] = 179745, - [SMALL_STATE(6051)] = 179793, - [SMALL_STATE(6052)] = 179859, - [SMALL_STATE(6053)] = 179909, - [SMALL_STATE(6054)] = 179953, - [SMALL_STATE(6055)] = 179997, - [SMALL_STATE(6056)] = 180041, - [SMALL_STATE(6057)] = 180109, - [SMALL_STATE(6058)] = 180159, - [SMALL_STATE(6059)] = 180203, - [SMALL_STATE(6060)] = 180247, - [SMALL_STATE(6061)] = 180301, - [SMALL_STATE(6062)] = 180345, - [SMALL_STATE(6063)] = 180413, - [SMALL_STATE(6064)] = 180483, - [SMALL_STATE(6065)] = 180527, - [SMALL_STATE(6066)] = 180575, - [SMALL_STATE(6067)] = 180619, - [SMALL_STATE(6068)] = 180669, - [SMALL_STATE(6069)] = 180713, - [SMALL_STATE(6070)] = 180757, - [SMALL_STATE(6071)] = 180801, - [SMALL_STATE(6072)] = 180871, - [SMALL_STATE(6073)] = 180917, - [SMALL_STATE(6074)] = 180963, - [SMALL_STATE(6075)] = 181019, - [SMALL_STATE(6076)] = 181063, - [SMALL_STATE(6077)] = 181111, - [SMALL_STATE(6078)] = 181155, - [SMALL_STATE(6079)] = 181199, - [SMALL_STATE(6080)] = 181243, - [SMALL_STATE(6081)] = 181289, - [SMALL_STATE(6082)] = 181337, - [SMALL_STATE(6083)] = 181381, - [SMALL_STATE(6084)] = 181427, - [SMALL_STATE(6085)] = 181471, - [SMALL_STATE(6086)] = 181515, - [SMALL_STATE(6087)] = 181559, - [SMALL_STATE(6088)] = 181603, - [SMALL_STATE(6089)] = 181653, - [SMALL_STATE(6090)] = 181697, - [SMALL_STATE(6091)] = 181749, - [SMALL_STATE(6092)] = 181793, - [SMALL_STATE(6093)] = 181837, - [SMALL_STATE(6094)] = 181881, - [SMALL_STATE(6095)] = 181925, - [SMALL_STATE(6096)] = 181969, - [SMALL_STATE(6097)] = 182027, - [SMALL_STATE(6098)] = 182071, - [SMALL_STATE(6099)] = 182115, - [SMALL_STATE(6100)] = 182159, - [SMALL_STATE(6101)] = 182225, - [SMALL_STATE(6102)] = 182269, - [SMALL_STATE(6103)] = 182313, - [SMALL_STATE(6104)] = 182357, - [SMALL_STATE(6105)] = 182401, - [SMALL_STATE(6106)] = 182447, - [SMALL_STATE(6107)] = 182491, - [SMALL_STATE(6108)] = 182535, - [SMALL_STATE(6109)] = 182579, - [SMALL_STATE(6110)] = 182623, - [SMALL_STATE(6111)] = 182669, - [SMALL_STATE(6112)] = 182715, - [SMALL_STATE(6113)] = 182765, - [SMALL_STATE(6114)] = 182809, - [SMALL_STATE(6115)] = 182853, - [SMALL_STATE(6116)] = 182913, - [SMALL_STATE(6117)] = 182957, - [SMALL_STATE(6118)] = 183001, - [SMALL_STATE(6119)] = 183051, - [SMALL_STATE(6120)] = 183095, - [SMALL_STATE(6121)] = 183139, - [SMALL_STATE(6122)] = 183189, - [SMALL_STATE(6123)] = 183233, - [SMALL_STATE(6124)] = 183277, - [SMALL_STATE(6125)] = 183339, - [SMALL_STATE(6126)] = 183383, - [SMALL_STATE(6127)] = 183427, - [SMALL_STATE(6128)] = 183491, - [SMALL_STATE(6129)] = 183535, - [SMALL_STATE(6130)] = 183579, - [SMALL_STATE(6131)] = 183623, - [SMALL_STATE(6132)] = 183667, - [SMALL_STATE(6133)] = 183711, - [SMALL_STATE(6134)] = 183761, - [SMALL_STATE(6135)] = 183827, - [SMALL_STATE(6136)] = 183871, - [SMALL_STATE(6137)] = 183915, - [SMALL_STATE(6138)] = 183983, - [SMALL_STATE(6139)] = 184027, - [SMALL_STATE(6140)] = 184071, - [SMALL_STATE(6141)] = 184141, - [SMALL_STATE(6142)] = 184185, - [SMALL_STATE(6143)] = 184231, - [SMALL_STATE(6144)] = 184275, - [SMALL_STATE(6145)] = 184319, - [SMALL_STATE(6146)] = 184363, - [SMALL_STATE(6147)] = 184407, - [SMALL_STATE(6148)] = 184451, - [SMALL_STATE(6149)] = 184495, - [SMALL_STATE(6150)] = 184565, - [SMALL_STATE(6151)] = 184609, - [SMALL_STATE(6152)] = 184653, - [SMALL_STATE(6153)] = 184703, - [SMALL_STATE(6154)] = 184753, - [SMALL_STATE(6155)] = 184803, - [SMALL_STATE(6156)] = 184851, - [SMALL_STATE(6157)] = 184895, - [SMALL_STATE(6158)] = 184941, - [SMALL_STATE(6159)] = 184985, - [SMALL_STATE(6160)] = 185029, - [SMALL_STATE(6161)] = 185079, - [SMALL_STATE(6162)] = 185123, - [SMALL_STATE(6163)] = 185167, - [SMALL_STATE(6164)] = 185217, - [SMALL_STATE(6165)] = 185261, - [SMALL_STATE(6166)] = 185323, - [SMALL_STATE(6167)] = 185367, - [SMALL_STATE(6168)] = 185415, - [SMALL_STATE(6169)] = 185459, - [SMALL_STATE(6170)] = 185503, - [SMALL_STATE(6171)] = 185553, - [SMALL_STATE(6172)] = 185597, - [SMALL_STATE(6173)] = 185641, - [SMALL_STATE(6174)] = 185685, - [SMALL_STATE(6175)] = 185729, - [SMALL_STATE(6176)] = 185773, - [SMALL_STATE(6177)] = 185817, - [SMALL_STATE(6178)] = 185861, - [SMALL_STATE(6179)] = 185905, - [SMALL_STATE(6180)] = 185949, - [SMALL_STATE(6181)] = 185999, - [SMALL_STATE(6182)] = 186043, - [SMALL_STATE(6183)] = 186089, - [SMALL_STATE(6184)] = 186133, - [SMALL_STATE(6185)] = 186177, - [SMALL_STATE(6186)] = 186223, - [SMALL_STATE(6187)] = 186267, - [SMALL_STATE(6188)] = 186311, - [SMALL_STATE(6189)] = 186355, - [SMALL_STATE(6190)] = 186399, - [SMALL_STATE(6191)] = 186443, - [SMALL_STATE(6192)] = 186489, - [SMALL_STATE(6193)] = 186535, - [SMALL_STATE(6194)] = 186579, - [SMALL_STATE(6195)] = 186623, - [SMALL_STATE(6196)] = 186667, - [SMALL_STATE(6197)] = 186715, - [SMALL_STATE(6198)] = 186759, - [SMALL_STATE(6199)] = 186803, - [SMALL_STATE(6200)] = 186857, - [SMALL_STATE(6201)] = 186901, - [SMALL_STATE(6202)] = 186955, - [SMALL_STATE(6203)] = 186999, - [SMALL_STATE(6204)] = 187043, - [SMALL_STATE(6205)] = 187087, - [SMALL_STATE(6206)] = 187131, - [SMALL_STATE(6207)] = 187175, - [SMALL_STATE(6208)] = 187219, - [SMALL_STATE(6209)] = 187263, - [SMALL_STATE(6210)] = 187313, - [SMALL_STATE(6211)] = 187361, - [SMALL_STATE(6212)] = 187409, - [SMALL_STATE(6213)] = 187453, - [SMALL_STATE(6214)] = 187497, - [SMALL_STATE(6215)] = 187545, - [SMALL_STATE(6216)] = 187589, - [SMALL_STATE(6217)] = 187639, - [SMALL_STATE(6218)] = 187683, - [SMALL_STATE(6219)] = 187727, - [SMALL_STATE(6220)] = 187771, - [SMALL_STATE(6221)] = 187815, - [SMALL_STATE(6222)] = 187865, - [SMALL_STATE(6223)] = 187909, - [SMALL_STATE(6224)] = 187955, - [SMALL_STATE(6225)] = 188005, - [SMALL_STATE(6226)] = 188049, - [SMALL_STATE(6227)] = 188105, - [SMALL_STATE(6228)] = 188149, - [SMALL_STATE(6229)] = 188197, - [SMALL_STATE(6230)] = 188245, - [SMALL_STATE(6231)] = 188289, - [SMALL_STATE(6232)] = 188335, - [SMALL_STATE(6233)] = 188379, - [SMALL_STATE(6234)] = 188425, - [SMALL_STATE(6235)] = 188469, - [SMALL_STATE(6236)] = 188513, - [SMALL_STATE(6237)] = 188583, - [SMALL_STATE(6238)] = 188627, - [SMALL_STATE(6239)] = 188671, - [SMALL_STATE(6240)] = 188723, - [SMALL_STATE(6241)] = 188771, - [SMALL_STATE(6242)] = 188815, - [SMALL_STATE(6243)] = 188859, - [SMALL_STATE(6244)] = 188905, - [SMALL_STATE(6245)] = 188955, - [SMALL_STATE(6246)] = 188999, - [SMALL_STATE(6247)] = 189049, - [SMALL_STATE(6248)] = 189093, - [SMALL_STATE(6249)] = 189137, - [SMALL_STATE(6250)] = 189181, - [SMALL_STATE(6251)] = 189225, - [SMALL_STATE(6252)] = 189277, - [SMALL_STATE(6253)] = 189323, - [SMALL_STATE(6254)] = 189367, - [SMALL_STATE(6255)] = 189415, - [SMALL_STATE(6256)] = 189463, - [SMALL_STATE(6257)] = 189509, - [SMALL_STATE(6258)] = 189557, - [SMALL_STATE(6259)] = 189601, - [SMALL_STATE(6260)] = 189649, - [SMALL_STATE(6261)] = 189693, - [SMALL_STATE(6262)] = 189737, - [SMALL_STATE(6263)] = 189781, - [SMALL_STATE(6264)] = 189825, - [SMALL_STATE(6265)] = 189869, - [SMALL_STATE(6266)] = 189917, - [SMALL_STATE(6267)] = 189961, - [SMALL_STATE(6268)] = 190005, - [SMALL_STATE(6269)] = 190049, - [SMALL_STATE(6270)] = 190097, - [SMALL_STATE(6271)] = 190141, - [SMALL_STATE(6272)] = 190185, - [SMALL_STATE(6273)] = 190229, - [SMALL_STATE(6274)] = 190273, - [SMALL_STATE(6275)] = 190323, - [SMALL_STATE(6276)] = 190367, - [SMALL_STATE(6277)] = 190411, - [SMALL_STATE(6278)] = 190455, - [SMALL_STATE(6279)] = 190499, - [SMALL_STATE(6280)] = 190551, - [SMALL_STATE(6281)] = 190595, - [SMALL_STATE(6282)] = 190639, - [SMALL_STATE(6283)] = 190683, - [SMALL_STATE(6284)] = 190727, - [SMALL_STATE(6285)] = 190771, - [SMALL_STATE(6286)] = 190815, - [SMALL_STATE(6287)] = 190875, - [SMALL_STATE(6288)] = 190937, - [SMALL_STATE(6289)] = 190982, - [SMALL_STATE(6290)] = 191025, - [SMALL_STATE(6291)] = 191070, - [SMALL_STATE(6292)] = 191113, - [SMALL_STATE(6293)] = 191192, - [SMALL_STATE(6294)] = 191237, - [SMALL_STATE(6295)] = 191282, - [SMALL_STATE(6296)] = 191325, - [SMALL_STATE(6297)] = 191368, - [SMALL_STATE(6298)] = 191411, - [SMALL_STATE(6299)] = 191470, - [SMALL_STATE(6300)] = 191515, - [SMALL_STATE(6301)] = 191558, - [SMALL_STATE(6302)] = 191601, - [SMALL_STATE(6303)] = 191670, - [SMALL_STATE(6304)] = 191713, - [SMALL_STATE(6305)] = 191760, - [SMALL_STATE(6306)] = 191821, - [SMALL_STATE(6307)] = 191864, - [SMALL_STATE(6308)] = 191927, - [SMALL_STATE(6309)] = 191970, - [SMALL_STATE(6310)] = 192035, - [SMALL_STATE(6311)] = 192078, - [SMALL_STATE(6312)] = 192121, - [SMALL_STATE(6313)] = 192164, - [SMALL_STATE(6314)] = 192231, - [SMALL_STATE(6315)] = 192274, - [SMALL_STATE(6316)] = 192343, - [SMALL_STATE(6317)] = 192390, - [SMALL_STATE(6318)] = 192433, - [SMALL_STATE(6319)] = 192476, - [SMALL_STATE(6320)] = 192519, - [SMALL_STATE(6321)] = 192562, - [SMALL_STATE(6322)] = 192607, - [SMALL_STATE(6323)] = 192650, - [SMALL_STATE(6324)] = 192693, - [SMALL_STATE(6325)] = 192736, - [SMALL_STATE(6326)] = 192781, - [SMALL_STATE(6327)] = 192826, - [SMALL_STATE(6328)] = 192895, - [SMALL_STATE(6329)] = 192938, - [SMALL_STATE(6330)] = 192987, - [SMALL_STATE(6331)] = 193034, - [SMALL_STATE(6332)] = 193077, - [SMALL_STATE(6333)] = 193120, - [SMALL_STATE(6334)] = 193163, - [SMALL_STATE(6335)] = 193208, - [SMALL_STATE(6336)] = 193251, - [SMALL_STATE(6337)] = 193294, - [SMALL_STATE(6338)] = 193339, - [SMALL_STATE(6339)] = 193382, - [SMALL_STATE(6340)] = 193427, - [SMALL_STATE(6341)] = 193470, - [SMALL_STATE(6342)] = 193515, - [SMALL_STATE(6343)] = 193558, - [SMALL_STATE(6344)] = 193603, - [SMALL_STATE(6345)] = 193648, - [SMALL_STATE(6346)] = 193693, - [SMALL_STATE(6347)] = 193738, - [SMALL_STATE(6348)] = 193781, - [SMALL_STATE(6349)] = 193826, - [SMALL_STATE(6350)] = 193895, - [SMALL_STATE(6351)] = 193940, - [SMALL_STATE(6352)] = 193983, - [SMALL_STATE(6353)] = 194040, - [SMALL_STATE(6354)] = 194087, - [SMALL_STATE(6355)] = 194132, - [SMALL_STATE(6356)] = 194175, - [SMALL_STATE(6357)] = 194220, - [SMALL_STATE(6358)] = 194263, - [SMALL_STATE(6359)] = 194332, - [SMALL_STATE(6360)] = 194375, - [SMALL_STATE(6361)] = 194418, - [SMALL_STATE(6362)] = 194461, - [SMALL_STATE(6363)] = 194504, - [SMALL_STATE(6364)] = 194547, - [SMALL_STATE(6365)] = 194590, - [SMALL_STATE(6366)] = 194633, - [SMALL_STATE(6367)] = 194676, - [SMALL_STATE(6368)] = 194719, - [SMALL_STATE(6369)] = 194762, - [SMALL_STATE(6370)] = 194809, - [SMALL_STATE(6371)] = 194852, - [SMALL_STATE(6372)] = 194895, - [SMALL_STATE(6373)] = 194938, - [SMALL_STATE(6374)] = 194981, - [SMALL_STATE(6375)] = 195024, - [SMALL_STATE(6376)] = 195103, - [SMALL_STATE(6377)] = 195146, - [SMALL_STATE(6378)] = 195189, - [SMALL_STATE(6379)] = 195232, - [SMALL_STATE(6380)] = 195277, - [SMALL_STATE(6381)] = 195324, - [SMALL_STATE(6382)] = 195369, - [SMALL_STATE(6383)] = 195412, - [SMALL_STATE(6384)] = 195465, - [SMALL_STATE(6385)] = 195512, - [SMALL_STATE(6386)] = 195561, - [SMALL_STATE(6387)] = 195604, - [SMALL_STATE(6388)] = 195647, - [SMALL_STATE(6389)] = 195690, - [SMALL_STATE(6390)] = 195735, - [SMALL_STATE(6391)] = 195780, - [SMALL_STATE(6392)] = 195823, - [SMALL_STATE(6393)] = 195872, - [SMALL_STATE(6394)] = 195915, - [SMALL_STATE(6395)] = 195958, - [SMALL_STATE(6396)] = 196013, - [SMALL_STATE(6397)] = 196056, - [SMALL_STATE(6398)] = 196101, - [SMALL_STATE(6399)] = 196148, - [SMALL_STATE(6400)] = 196191, - [SMALL_STATE(6401)] = 196234, - [SMALL_STATE(6402)] = 196279, - [SMALL_STATE(6403)] = 196324, - [SMALL_STATE(6404)] = 196369, - [SMALL_STATE(6405)] = 196412, - [SMALL_STATE(6406)] = 196455, - [SMALL_STATE(6407)] = 196498, - [SMALL_STATE(6408)] = 196549, - [SMALL_STATE(6409)] = 196592, - [SMALL_STATE(6410)] = 196635, - [SMALL_STATE(6411)] = 196677, - [SMALL_STATE(6412)] = 196719, - [SMALL_STATE(6413)] = 196761, - [SMALL_STATE(6414)] = 196801, - [SMALL_STATE(6415)] = 196843, - [SMALL_STATE(6416)] = 196885, - [SMALL_STATE(6417)] = 196929, - [SMALL_STATE(6418)] = 196973, - [SMALL_STATE(6419)] = 197015, - [SMALL_STATE(6420)] = 197057, - [SMALL_STATE(6421)] = 197099, - [SMALL_STATE(6422)] = 197141, - [SMALL_STATE(6423)] = 197183, - [SMALL_STATE(6424)] = 197225, - [SMALL_STATE(6425)] = 197267, - [SMALL_STATE(6426)] = 197309, - [SMALL_STATE(6427)] = 197355, - [SMALL_STATE(6428)] = 197397, - [SMALL_STATE(6429)] = 197439, - [SMALL_STATE(6430)] = 197481, - [SMALL_STATE(6431)] = 197523, - [SMALL_STATE(6432)] = 197565, - [SMALL_STATE(6433)] = 197607, - [SMALL_STATE(6434)] = 197649, - [SMALL_STATE(6435)] = 197691, - [SMALL_STATE(6436)] = 197733, - [SMALL_STATE(6437)] = 197775, - [SMALL_STATE(6438)] = 197817, - [SMALL_STATE(6439)] = 197859, - [SMALL_STATE(6440)] = 197901, - [SMALL_STATE(6441)] = 197943, - [SMALL_STATE(6442)] = 197985, - [SMALL_STATE(6443)] = 198027, - [SMALL_STATE(6444)] = 198069, - [SMALL_STATE(6445)] = 198111, - [SMALL_STATE(6446)] = 198155, - [SMALL_STATE(6447)] = 198197, - [SMALL_STATE(6448)] = 198239, - [SMALL_STATE(6449)] = 198281, - [SMALL_STATE(6450)] = 198323, - [SMALL_STATE(6451)] = 198365, - [SMALL_STATE(6452)] = 198409, - [SMALL_STATE(6453)] = 198451, - [SMALL_STATE(6454)] = 198493, - [SMALL_STATE(6455)] = 198535, - [SMALL_STATE(6456)] = 198577, - [SMALL_STATE(6457)] = 198653, - [SMALL_STATE(6458)] = 198695, - [SMALL_STATE(6459)] = 198737, - [SMALL_STATE(6460)] = 198779, - [SMALL_STATE(6461)] = 198821, - [SMALL_STATE(6462)] = 198863, - [SMALL_STATE(6463)] = 198905, - [SMALL_STATE(6464)] = 198947, - [SMALL_STATE(6465)] = 198989, - [SMALL_STATE(6466)] = 199031, - [SMALL_STATE(6467)] = 199095, - [SMALL_STATE(6468)] = 199145, - [SMALL_STATE(6469)] = 199187, - [SMALL_STATE(6470)] = 199229, - [SMALL_STATE(6471)] = 199271, - [SMALL_STATE(6472)] = 199313, - [SMALL_STATE(6473)] = 199355, - [SMALL_STATE(6474)] = 199399, - [SMALL_STATE(6475)] = 199459, - [SMALL_STATE(6476)] = 199501, - [SMALL_STATE(6477)] = 199543, - [SMALL_STATE(6478)] = 199587, - [SMALL_STATE(6479)] = 199629, - [SMALL_STATE(6480)] = 199671, - [SMALL_STATE(6481)] = 199713, - [SMALL_STATE(6482)] = 199757, - [SMALL_STATE(6483)] = 199799, - [SMALL_STATE(6484)] = 199843, - [SMALL_STATE(6485)] = 199909, - [SMALL_STATE(6486)] = 199951, - [SMALL_STATE(6487)] = 199995, - [SMALL_STATE(6488)] = 200039, - [SMALL_STATE(6489)] = 200081, - [SMALL_STATE(6490)] = 200123, - [SMALL_STATE(6491)] = 200165, - [SMALL_STATE(6492)] = 200209, - [SMALL_STATE(6493)] = 200251, - [SMALL_STATE(6494)] = 200293, - [SMALL_STATE(6495)] = 200335, - [SMALL_STATE(6496)] = 200377, - [SMALL_STATE(6497)] = 200419, - [SMALL_STATE(6498)] = 200461, - [SMALL_STATE(6499)] = 200503, - [SMALL_STATE(6500)] = 200545, - [SMALL_STATE(6501)] = 200587, - [SMALL_STATE(6502)] = 200631, - [SMALL_STATE(6503)] = 200673, - [SMALL_STATE(6504)] = 200715, - [SMALL_STATE(6505)] = 200757, - [SMALL_STATE(6506)] = 200803, - [SMALL_STATE(6507)] = 200845, - [SMALL_STATE(6508)] = 200887, - [SMALL_STATE(6509)] = 200929, - [SMALL_STATE(6510)] = 200971, - [SMALL_STATE(6511)] = 201013, - [SMALL_STATE(6512)] = 201057, - [SMALL_STATE(6513)] = 201099, - [SMALL_STATE(6514)] = 201145, - [SMALL_STATE(6515)] = 201187, - [SMALL_STATE(6516)] = 201229, - [SMALL_STATE(6517)] = 201271, - [SMALL_STATE(6518)] = 201313, - [SMALL_STATE(6519)] = 201355, - [SMALL_STATE(6520)] = 201397, - [SMALL_STATE(6521)] = 201439, - [SMALL_STATE(6522)] = 201487, - [SMALL_STATE(6523)] = 201541, - [SMALL_STATE(6524)] = 201591, - [SMALL_STATE(6525)] = 201647, - [SMALL_STATE(6526)] = 201695, - [SMALL_STATE(6527)] = 201739, - [SMALL_STATE(6528)] = 201791, - [SMALL_STATE(6529)] = 201849, - [SMALL_STATE(6530)] = 201909, - [SMALL_STATE(6531)] = 201971, - [SMALL_STATE(6532)] = 202035, - [SMALL_STATE(6533)] = 202101, - [SMALL_STATE(6534)] = 202169, - [SMALL_STATE(6535)] = 202239, - [SMALL_STATE(6536)] = 202281, - [SMALL_STATE(6537)] = 202323, - [SMALL_STATE(6538)] = 202365, - [SMALL_STATE(6539)] = 202407, - [SMALL_STATE(6540)] = 202449, - [SMALL_STATE(6541)] = 202491, - [SMALL_STATE(6542)] = 202533, - [SMALL_STATE(6543)] = 202575, - [SMALL_STATE(6544)] = 202619, - [SMALL_STATE(6545)] = 202661, - [SMALL_STATE(6546)] = 202703, - [SMALL_STATE(6547)] = 202747, - [SMALL_STATE(6548)] = 202789, - [SMALL_STATE(6549)] = 202857, - [SMALL_STATE(6550)] = 202899, - [SMALL_STATE(6551)] = 202941, - [SMALL_STATE(6552)] = 202983, - [SMALL_STATE(6553)] = 203025, - [SMALL_STATE(6554)] = 203069, - [SMALL_STATE(6555)] = 203111, - [SMALL_STATE(6556)] = 203187, - [SMALL_STATE(6557)] = 203229, - [SMALL_STATE(6558)] = 203271, - [SMALL_STATE(6559)] = 203313, - [SMALL_STATE(6560)] = 203355, - [SMALL_STATE(6561)] = 203397, - [SMALL_STATE(6562)] = 203451, - [SMALL_STATE(6563)] = 203493, - [SMALL_STATE(6564)] = 203537, - [SMALL_STATE(6565)] = 203579, - [SMALL_STATE(6566)] = 203621, - [SMALL_STATE(6567)] = 203663, - [SMALL_STATE(6568)] = 203719, - [SMALL_STATE(6569)] = 203761, - [SMALL_STATE(6570)] = 203803, - [SMALL_STATE(6571)] = 203845, - [SMALL_STATE(6572)] = 203887, - [SMALL_STATE(6573)] = 203933, - [SMALL_STATE(6574)] = 203975, - [SMALL_STATE(6575)] = 204017, - [SMALL_STATE(6576)] = 204059, - [SMALL_STATE(6577)] = 204101, - [SMALL_STATE(6578)] = 204143, - [SMALL_STATE(6579)] = 204189, - [SMALL_STATE(6580)] = 204231, - [SMALL_STATE(6581)] = 204273, - [SMALL_STATE(6582)] = 204315, - [SMALL_STATE(6583)] = 204357, - [SMALL_STATE(6584)] = 204399, - [SMALL_STATE(6585)] = 204441, - [SMALL_STATE(6586)] = 204483, - [SMALL_STATE(6587)] = 204525, - [SMALL_STATE(6588)] = 204567, - [SMALL_STATE(6589)] = 204609, - [SMALL_STATE(6590)] = 204651, - [SMALL_STATE(6591)] = 204693, - [SMALL_STATE(6592)] = 204751, - [SMALL_STATE(6593)] = 204793, - [SMALL_STATE(6594)] = 204835, - [SMALL_STATE(6595)] = 204877, - [SMALL_STATE(6596)] = 204919, - [SMALL_STATE(6597)] = 204961, - [SMALL_STATE(6598)] = 205013, - [SMALL_STATE(6599)] = 205075, - [SMALL_STATE(6600)] = 205119, - [SMALL_STATE(6601)] = 205161, - [SMALL_STATE(6602)] = 205201, - [SMALL_STATE(6603)] = 205243, - [SMALL_STATE(6604)] = 205285, - [SMALL_STATE(6605)] = 205327, - [SMALL_STATE(6606)] = 205369, - [SMALL_STATE(6607)] = 205413, - [SMALL_STATE(6608)] = 205455, - [SMALL_STATE(6609)] = 205499, - [SMALL_STATE(6610)] = 205541, - [SMALL_STATE(6611)] = 205583, - [SMALL_STATE(6612)] = 205627, - [SMALL_STATE(6613)] = 205671, - [SMALL_STATE(6614)] = 205719, - [SMALL_STATE(6615)] = 205761, - [SMALL_STATE(6616)] = 205803, - [SMALL_STATE(6617)] = 205845, - [SMALL_STATE(6618)] = 205887, - [SMALL_STATE(6619)] = 205929, - [SMALL_STATE(6620)] = 205971, - [SMALL_STATE(6621)] = 206013, - [SMALL_STATE(6622)] = 206055, - [SMALL_STATE(6623)] = 206097, - [SMALL_STATE(6624)] = 206139, - [SMALL_STATE(6625)] = 206181, - [SMALL_STATE(6626)] = 206223, - [SMALL_STATE(6627)] = 206265, - [SMALL_STATE(6628)] = 206316, - [SMALL_STATE(6629)] = 206357, - [SMALL_STATE(6630)] = 206398, - [SMALL_STATE(6631)] = 206439, - [SMALL_STATE(6632)] = 206510, - [SMALL_STATE(6633)] = 206579, - [SMALL_STATE(6634)] = 206620, - [SMALL_STATE(6635)] = 206661, - [SMALL_STATE(6636)] = 206710, - [SMALL_STATE(6637)] = 206765, - [SMALL_STATE(6638)] = 206824, - [SMALL_STATE(6639)] = 206885, - [SMALL_STATE(6640)] = 206926, - [SMALL_STATE(6641)] = 206999, - [SMALL_STATE(6642)] = 207038, - [SMALL_STATE(6643)] = 207113, - [SMALL_STATE(6644)] = 207168, - [SMALL_STATE(6645)] = 207209, - [SMALL_STATE(6646)] = 207272, - [SMALL_STATE(6647)] = 207313, - [SMALL_STATE(6648)] = 207360, - [SMALL_STATE(6649)] = 207403, - [SMALL_STATE(6650)] = 207468, - [SMALL_STATE(6651)] = 207511, - [SMALL_STATE(6652)] = 207554, - [SMALL_STATE(6653)] = 207595, - [SMALL_STATE(6654)] = 207636, - [SMALL_STATE(6655)] = 207677, - [SMALL_STATE(6656)] = 207718, - [SMALL_STATE(6657)] = 207785, - [SMALL_STATE(6658)] = 207828, - [SMALL_STATE(6659)] = 207869, - [SMALL_STATE(6660)] = 207920, - [SMALL_STATE(6661)] = 207991, - [SMALL_STATE(6662)] = 208060, - [SMALL_STATE(6663)] = 208101, - [SMALL_STATE(6664)] = 208142, - [SMALL_STATE(6665)] = 208187, - [SMALL_STATE(6666)] = 208228, - [SMALL_STATE(6667)] = 208279, - [SMALL_STATE(6668)] = 208320, - [SMALL_STATE(6669)] = 208361, - [SMALL_STATE(6670)] = 208432, - [SMALL_STATE(6671)] = 208489, - [SMALL_STATE(6672)] = 208530, - [SMALL_STATE(6673)] = 208571, - [SMALL_STATE(6674)] = 208628, - [SMALL_STATE(6675)] = 208671, - [SMALL_STATE(6676)] = 208712, - [SMALL_STATE(6677)] = 208771, - [SMALL_STATE(6678)] = 208818, - [SMALL_STATE(6679)] = 208879, - [SMALL_STATE(6680)] = 208920, - [SMALL_STATE(6681)] = 208961, - [SMALL_STATE(6682)] = 209002, - [SMALL_STATE(6683)] = 209065, - [SMALL_STATE(6684)] = 209106, - [SMALL_STATE(6685)] = 209147, - [SMALL_STATE(6686)] = 209212, - [SMALL_STATE(6687)] = 209253, - [SMALL_STATE(6688)] = 209296, - [SMALL_STATE(6689)] = 209337, - [SMALL_STATE(6690)] = 209404, - [SMALL_STATE(6691)] = 209445, - [SMALL_STATE(6692)] = 209514, - [SMALL_STATE(6693)] = 209555, - [SMALL_STATE(6694)] = 209596, - [SMALL_STATE(6695)] = 209637, - [SMALL_STATE(6696)] = 209680, - [SMALL_STATE(6697)] = 209721, - [SMALL_STATE(6698)] = 209762, - [SMALL_STATE(6699)] = 209815, - [SMALL_STATE(6700)] = 209856, - [SMALL_STATE(6701)] = 209917, - [SMALL_STATE(6702)] = 209972, - [SMALL_STATE(6703)] = 210021, - [SMALL_STATE(6704)] = 210080, - [SMALL_STATE(6705)] = 210127, - [SMALL_STATE(6706)] = 210170, - [SMALL_STATE(6707)] = 210221, - [SMALL_STATE(6708)] = 210282, - [SMALL_STATE(6709)] = 210345, - [SMALL_STATE(6710)] = 210410, - [SMALL_STATE(6711)] = 210477, - [SMALL_STATE(6712)] = 210546, - [SMALL_STATE(6713)] = 210617, - [SMALL_STATE(6714)] = 210690, - [SMALL_STATE(6715)] = 210731, - [SMALL_STATE(6716)] = 210778, - [SMALL_STATE(6717)] = 210819, - [SMALL_STATE(6718)] = 210862, - [SMALL_STATE(6719)] = 210903, - [SMALL_STATE(6720)] = 210946, - [SMALL_STATE(6721)] = 210999, - [SMALL_STATE(6722)] = 211052, - [SMALL_STATE(6723)] = 211093, - [SMALL_STATE(6724)] = 211156, - [SMALL_STATE(6725)] = 211197, - [SMALL_STATE(6726)] = 211238, - [SMALL_STATE(6727)] = 211297, - [SMALL_STATE(6728)] = 211338, - [SMALL_STATE(6729)] = 211379, - [SMALL_STATE(6730)] = 211420, - [SMALL_STATE(6731)] = 211461, - [SMALL_STATE(6732)] = 211526, - [SMALL_STATE(6733)] = 211567, - [SMALL_STATE(6734)] = 211608, - [SMALL_STATE(6735)] = 211649, - [SMALL_STATE(6736)] = 211710, - [SMALL_STATE(6737)] = 211773, - [SMALL_STATE(6738)] = 211830, - [SMALL_STATE(6739)] = 211871, - [SMALL_STATE(6740)] = 211912, - [SMALL_STATE(6741)] = 211953, - [SMALL_STATE(6742)] = 211994, - [SMALL_STATE(6743)] = 212035, - [SMALL_STATE(6744)] = 212076, - [SMALL_STATE(6745)] = 212131, - [SMALL_STATE(6746)] = 212182, - [SMALL_STATE(6747)] = 212239, - [SMALL_STATE(6748)] = 212286, - [SMALL_STATE(6749)] = 212351, - [SMALL_STATE(6750)] = 212394, - [SMALL_STATE(6751)] = 212447, - [SMALL_STATE(6752)] = 212490, - [SMALL_STATE(6753)] = 212531, - [SMALL_STATE(6754)] = 212598, - [SMALL_STATE(6755)] = 212665, - [SMALL_STATE(6756)] = 212734, - [SMALL_STATE(6757)] = 212775, - [SMALL_STATE(6758)] = 212833, - [SMALL_STATE(6759)] = 212893, - [SMALL_STATE(6760)] = 212961, - [SMALL_STATE(6761)] = 213003, - [SMALL_STATE(6762)] = 213073, - [SMALL_STATE(6763)] = 213135, - [SMALL_STATE(6764)] = 213181, - [SMALL_STATE(6765)] = 213235, - [SMALL_STATE(6766)] = 213285, - [SMALL_STATE(6767)] = 213341, - [SMALL_STATE(6768)] = 213387, - [SMALL_STATE(6769)] = 213429, - [SMALL_STATE(6770)] = 213481, - [SMALL_STATE(6771)] = 213539, - [SMALL_STATE(6772)] = 213599, - [SMALL_STATE(6773)] = 213661, - [SMALL_STATE(6774)] = 213725, - [SMALL_STATE(6775)] = 213791, - [SMALL_STATE(6776)] = 213859, - [SMALL_STATE(6777)] = 213929, - [SMALL_STATE(6778)] = 213985, - [SMALL_STATE(6779)] = 214049, - [SMALL_STATE(6780)] = 214101, - [SMALL_STATE(6781)] = 214167, - [SMALL_STATE(6782)] = 214221, - [SMALL_STATE(6783)] = 214271, - [SMALL_STATE(6784)] = 214338, - [SMALL_STATE(6785)] = 214405, - [SMALL_STATE(6786)] = 214472, - [SMALL_STATE(6787)] = 214539, - [SMALL_STATE(6788)] = 214606, - [SMALL_STATE(6789)] = 214673, - [SMALL_STATE(6790)] = 214740, - [SMALL_STATE(6791)] = 214807, - [SMALL_STATE(6792)] = 214874, - [SMALL_STATE(6793)] = 214941, - [SMALL_STATE(6794)] = 215008, - [SMALL_STATE(6795)] = 215075, - [SMALL_STATE(6796)] = 215142, - [SMALL_STATE(6797)] = 215209, - [SMALL_STATE(6798)] = 215276, - [SMALL_STATE(6799)] = 215343, - [SMALL_STATE(6800)] = 215384, - [SMALL_STATE(6801)] = 215451, - [SMALL_STATE(6802)] = 215518, - [SMALL_STATE(6803)] = 215585, - [SMALL_STATE(6804)] = 215652, - [SMALL_STATE(6805)] = 215719, - [SMALL_STATE(6806)] = 215786, - [SMALL_STATE(6807)] = 215853, - [SMALL_STATE(6808)] = 215920, - [SMALL_STATE(6809)] = 215987, - [SMALL_STATE(6810)] = 216054, - [SMALL_STATE(6811)] = 216121, - [SMALL_STATE(6812)] = 216188, - [SMALL_STATE(6813)] = 216255, - [SMALL_STATE(6814)] = 216322, - [SMALL_STATE(6815)] = 216389, - [SMALL_STATE(6816)] = 216456, - [SMALL_STATE(6817)] = 216523, - [SMALL_STATE(6818)] = 216575, - [SMALL_STATE(6819)] = 216623, - [SMALL_STATE(6820)] = 216671, - [SMALL_STATE(6821)] = 216723, - [SMALL_STATE(6822)] = 216771, - [SMALL_STATE(6823)] = 216819, - [SMALL_STATE(6824)] = 216867, - [SMALL_STATE(6825)] = 216915, - [SMALL_STATE(6826)] = 216963, - [SMALL_STATE(6827)] = 217011, - [SMALL_STATE(6828)] = 217040, - [SMALL_STATE(6829)] = 217091, - [SMALL_STATE(6830)] = 217142, - [SMALL_STATE(6831)] = 217193, - [SMALL_STATE(6832)] = 217242, - [SMALL_STATE(6833)] = 217291, - [SMALL_STATE(6834)] = 217340, - [SMALL_STATE(6835)] = 217391, - [SMALL_STATE(6836)] = 217440, - [SMALL_STATE(6837)] = 217491, - [SMALL_STATE(6838)] = 217540, - [SMALL_STATE(6839)] = 217589, - [SMALL_STATE(6840)] = 217618, - [SMALL_STATE(6841)] = 217667, - [SMALL_STATE(6842)] = 217716, - [SMALL_STATE(6843)] = 217767, - [SMALL_STATE(6844)] = 217815, - [SMALL_STATE(6845)] = 217847, - [SMALL_STATE(6846)] = 217895, - [SMALL_STATE(6847)] = 217943, - [SMALL_STATE(6848)] = 217991, - [SMALL_STATE(6849)] = 218037, - [SMALL_STATE(6850)] = 218087, - [SMALL_STATE(6851)] = 218135, - [SMALL_STATE(6852)] = 218181, - [SMALL_STATE(6853)] = 218229, - [SMALL_STATE(6854)] = 218275, - [SMALL_STATE(6855)] = 218325, - [SMALL_STATE(6856)] = 218373, - [SMALL_STATE(6857)] = 218419, - [SMALL_STATE(6858)] = 218469, - [SMALL_STATE(6859)] = 218517, - [SMALL_STATE(6860)] = 218567, - [SMALL_STATE(6861)] = 218615, - [SMALL_STATE(6862)] = 218663, - [SMALL_STATE(6863)] = 218711, - [SMALL_STATE(6864)] = 218759, - [SMALL_STATE(6865)] = 218807, - [SMALL_STATE(6866)] = 218855, - [SMALL_STATE(6867)] = 218903, - [SMALL_STATE(6868)] = 218951, - [SMALL_STATE(6869)] = 218997, - [SMALL_STATE(6870)] = 219043, - [SMALL_STATE(6871)] = 219091, - [SMALL_STATE(6872)] = 219139, - [SMALL_STATE(6873)] = 219189, - [SMALL_STATE(6874)] = 219235, - [SMALL_STATE(6875)] = 219283, - [SMALL_STATE(6876)] = 219331, - [SMALL_STATE(6877)] = 219379, - [SMALL_STATE(6878)] = 219427, - [SMALL_STATE(6879)] = 219475, - [SMALL_STATE(6880)] = 219525, - [SMALL_STATE(6881)] = 219573, - [SMALL_STATE(6882)] = 219619, - [SMALL_STATE(6883)] = 219664, - [SMALL_STATE(6884)] = 219709, - [SMALL_STATE(6885)] = 219754, - [SMALL_STATE(6886)] = 219785, - [SMALL_STATE(6887)] = 219832, - [SMALL_STATE(6888)] = 219877, - [SMALL_STATE(6889)] = 219922, - [SMALL_STATE(6890)] = 219949, - [SMALL_STATE(6891)] = 219976, - [SMALL_STATE(6892)] = 220023, - [SMALL_STATE(6893)] = 220070, - [SMALL_STATE(6894)] = 220115, - [SMALL_STATE(6895)] = 220160, - [SMALL_STATE(6896)] = 220205, - [SMALL_STATE(6897)] = 220250, - [SMALL_STATE(6898)] = 220295, - [SMALL_STATE(6899)] = 220340, - [SMALL_STATE(6900)] = 220385, - [SMALL_STATE(6901)] = 220430, - [SMALL_STATE(6902)] = 220475, - [SMALL_STATE(6903)] = 220520, - [SMALL_STATE(6904)] = 220565, - [SMALL_STATE(6905)] = 220612, - [SMALL_STATE(6906)] = 220657, - [SMALL_STATE(6907)] = 220702, - [SMALL_STATE(6908)] = 220751, - [SMALL_STATE(6909)] = 220798, - [SMALL_STATE(6910)] = 220829, - [SMALL_STATE(6911)] = 220876, - [SMALL_STATE(6912)] = 220923, - [SMALL_STATE(6913)] = 220972, - [SMALL_STATE(6914)] = 221019, - [SMALL_STATE(6915)] = 221066, - [SMALL_STATE(6916)] = 221113, - [SMALL_STATE(6917)] = 221160, - [SMALL_STATE(6918)] = 221189, - [SMALL_STATE(6919)] = 221236, - [SMALL_STATE(6920)] = 221265, - [SMALL_STATE(6921)] = 221294, - [SMALL_STATE(6922)] = 221327, - [SMALL_STATE(6923)] = 221374, - [SMALL_STATE(6924)] = 221421, - [SMALL_STATE(6925)] = 221464, - [SMALL_STATE(6926)] = 221497, - [SMALL_STATE(6927)] = 221530, - [SMALL_STATE(6928)] = 221561, - [SMALL_STATE(6929)] = 221608, - [SMALL_STATE(6930)] = 221655, - [SMALL_STATE(6931)] = 221686, - [SMALL_STATE(6932)] = 221733, - [SMALL_STATE(6933)] = 221780, - [SMALL_STATE(6934)] = 221827, - [SMALL_STATE(6935)] = 221874, - [SMALL_STATE(6936)] = 221921, - [SMALL_STATE(6937)] = 221968, - [SMALL_STATE(6938)] = 222015, - [SMALL_STATE(6939)] = 222062, - [SMALL_STATE(6940)] = 222093, - [SMALL_STATE(6941)] = 222123, - [SMALL_STATE(6942)] = 222151, - [SMALL_STATE(6943)] = 222179, - [SMALL_STATE(6944)] = 222205, - [SMALL_STATE(6945)] = 222251, - [SMALL_STATE(6946)] = 222281, - [SMALL_STATE(6947)] = 222325, - [SMALL_STATE(6948)] = 222367, - [SMALL_STATE(6949)] = 222395, - [SMALL_STATE(6950)] = 222439, - [SMALL_STATE(6951)] = 222467, - [SMALL_STATE(6952)] = 222511, - [SMALL_STATE(6953)] = 222555, - [SMALL_STATE(6954)] = 222599, - [SMALL_STATE(6955)] = 222627, - [SMALL_STATE(6956)] = 222655, - [SMALL_STATE(6957)] = 222683, - [SMALL_STATE(6958)] = 222727, - [SMALL_STATE(6959)] = 222771, - [SMALL_STATE(6960)] = 222815, - [SMALL_STATE(6961)] = 222859, - [SMALL_STATE(6962)] = 222905, - [SMALL_STATE(6963)] = 222953, - [SMALL_STATE(6964)] = 222997, - [SMALL_STATE(6965)] = 223041, - [SMALL_STATE(6966)] = 223083, - [SMALL_STATE(6967)] = 223131, - [SMALL_STATE(6968)] = 223161, - [SMALL_STATE(6969)] = 223189, - [SMALL_STATE(6970)] = 223215, - [SMALL_STATE(6971)] = 223241, - [SMALL_STATE(6972)] = 223271, - [SMALL_STATE(6973)] = 223297, - [SMALL_STATE(6974)] = 223341, - [SMALL_STATE(6975)] = 223367, - [SMALL_STATE(6976)] = 223397, - [SMALL_STATE(6977)] = 223441, - [SMALL_STATE(6978)] = 223487, - [SMALL_STATE(6979)] = 223533, - [SMALL_STATE(6980)] = 223561, - [SMALL_STATE(6981)] = 223589, - [SMALL_STATE(6982)] = 223619, - [SMALL_STATE(6983)] = 223663, - [SMALL_STATE(6984)] = 223709, - [SMALL_STATE(6985)] = 223755, - [SMALL_STATE(6986)] = 223799, - [SMALL_STATE(6987)] = 223829, - [SMALL_STATE(6988)] = 223875, - [SMALL_STATE(6989)] = 223905, - [SMALL_STATE(6990)] = 223951, - [SMALL_STATE(6991)] = 223997, - [SMALL_STATE(6992)] = 224041, - [SMALL_STATE(6993)] = 224085, - [SMALL_STATE(6994)] = 224129, - [SMALL_STATE(6995)] = 224171, - [SMALL_STATE(6996)] = 224199, - [SMALL_STATE(6997)] = 224229, - [SMALL_STATE(6998)] = 224255, - [SMALL_STATE(6999)] = 224299, - [SMALL_STATE(7000)] = 224345, - [SMALL_STATE(7001)] = 224388, - [SMALL_STATE(7002)] = 224429, - [SMALL_STATE(7003)] = 224458, - [SMALL_STATE(7004)] = 224487, - [SMALL_STATE(7005)] = 224514, - [SMALL_STATE(7006)] = 224559, - [SMALL_STATE(7007)] = 224584, - [SMALL_STATE(7008)] = 224625, - [SMALL_STATE(7009)] = 224668, - [SMALL_STATE(7010)] = 224695, - [SMALL_STATE(7011)] = 224724, - [SMALL_STATE(7012)] = 224771, - [SMALL_STATE(7013)] = 224796, - [SMALL_STATE(7014)] = 224823, - [SMALL_STATE(7015)] = 224864, - [SMALL_STATE(7016)] = 224891, - [SMALL_STATE(7017)] = 224918, - [SMALL_STATE(7018)] = 224947, - [SMALL_STATE(7019)] = 224972, - [SMALL_STATE(7020)] = 224997, - [SMALL_STATE(7021)] = 225028, - [SMALL_STATE(7022)] = 225055, - [SMALL_STATE(7023)] = 225082, - [SMALL_STATE(7024)] = 225111, - [SMALL_STATE(7025)] = 225138, - [SMALL_STATE(7026)] = 225185, - [SMALL_STATE(7027)] = 225230, - [SMALL_STATE(7028)] = 225261, - [SMALL_STATE(7029)] = 225288, - [SMALL_STATE(7030)] = 225329, - [SMALL_STATE(7031)] = 225358, - [SMALL_STATE(7032)] = 225403, - [SMALL_STATE(7033)] = 225448, - [SMALL_STATE(7034)] = 225473, - [SMALL_STATE(7035)] = 225514, - [SMALL_STATE(7036)] = 225539, - [SMALL_STATE(7037)] = 225568, - [SMALL_STATE(7038)] = 225597, - [SMALL_STATE(7039)] = 225622, - [SMALL_STATE(7040)] = 225647, - [SMALL_STATE(7041)] = 225672, - [SMALL_STATE(7042)] = 225717, - [SMALL_STATE(7043)] = 225744, - [SMALL_STATE(7044)] = 225789, - [SMALL_STATE(7045)] = 225834, - [SMALL_STATE(7046)] = 225877, - [SMALL_STATE(7047)] = 225918, - [SMALL_STATE(7048)] = 225963, - [SMALL_STATE(7049)] = 226006, - [SMALL_STATE(7050)] = 226049, - [SMALL_STATE(7051)] = 226092, - [SMALL_STATE(7052)] = 226135, - [SMALL_STATE(7053)] = 226178, - [SMALL_STATE(7054)] = 226221, - [SMALL_STATE(7055)] = 226250, - [SMALL_STATE(7056)] = 226277, - [SMALL_STATE(7057)] = 226320, - [SMALL_STATE(7058)] = 226363, - [SMALL_STATE(7059)] = 226388, - [SMALL_STATE(7060)] = 226431, - [SMALL_STATE(7061)] = 226474, - [SMALL_STATE(7062)] = 226501, - [SMALL_STATE(7063)] = 226544, - [SMALL_STATE(7064)] = 226571, - [SMALL_STATE(7065)] = 226616, - [SMALL_STATE(7066)] = 226641, - [SMALL_STATE(7067)] = 226682, - [SMALL_STATE(7068)] = 226707, - [SMALL_STATE(7069)] = 226734, - [SMALL_STATE(7070)] = 226781, - [SMALL_STATE(7071)] = 226808, - [SMALL_STATE(7072)] = 226835, - [SMALL_STATE(7073)] = 226864, - [SMALL_STATE(7074)] = 226907, - [SMALL_STATE(7075)] = 226950, - [SMALL_STATE(7076)] = 226995, - [SMALL_STATE(7077)] = 227038, - [SMALL_STATE(7078)] = 227063, - [SMALL_STATE(7079)] = 227102, - [SMALL_STATE(7080)] = 227147, - [SMALL_STATE(7081)] = 227174, - [SMALL_STATE(7082)] = 227198, - [SMALL_STATE(7083)] = 227222, - [SMALL_STATE(7084)] = 227266, - [SMALL_STATE(7085)] = 227310, - [SMALL_STATE(7086)] = 227336, - [SMALL_STATE(7087)] = 227380, - [SMALL_STATE(7088)] = 227418, - [SMALL_STATE(7089)] = 227456, - [SMALL_STATE(7090)] = 227482, - [SMALL_STATE(7091)] = 227520, - [SMALL_STATE(7092)] = 227558, - [SMALL_STATE(7093)] = 227596, - [SMALL_STATE(7094)] = 227642, - [SMALL_STATE(7095)] = 227666, - [SMALL_STATE(7096)] = 227708, - [SMALL_STATE(7097)] = 227752, - [SMALL_STATE(7098)] = 227798, - [SMALL_STATE(7099)] = 227844, - [SMALL_STATE(7100)] = 227886, - [SMALL_STATE(7101)] = 227932, - [SMALL_STATE(7102)] = 227960, - [SMALL_STATE(7103)] = 228006, - [SMALL_STATE(7104)] = 228044, - [SMALL_STATE(7105)] = 228072, - [SMALL_STATE(7106)] = 228096, - [SMALL_STATE(7107)] = 228122, - [SMALL_STATE(7108)] = 228146, - [SMALL_STATE(7109)] = 228186, - [SMALL_STATE(7110)] = 228214, - [SMALL_STATE(7111)] = 228242, - [SMALL_STATE(7112)] = 228288, - [SMALL_STATE(7113)] = 228330, - [SMALL_STATE(7114)] = 228358, - [SMALL_STATE(7115)] = 228398, - [SMALL_STATE(7116)] = 228426, - [SMALL_STATE(7117)] = 228450, - [SMALL_STATE(7118)] = 228474, - [SMALL_STATE(7119)] = 228514, - [SMALL_STATE(7120)] = 228556, - [SMALL_STATE(7121)] = 228580, - [SMALL_STATE(7122)] = 228604, - [SMALL_STATE(7123)] = 228628, - [SMALL_STATE(7124)] = 228654, - [SMALL_STATE(7125)] = 228686, - [SMALL_STATE(7126)] = 228712, - [SMALL_STATE(7127)] = 228736, - [SMALL_STATE(7128)] = 228776, - [SMALL_STATE(7129)] = 228816, - [SMALL_STATE(7130)] = 228844, - [SMALL_STATE(7131)] = 228870, - [SMALL_STATE(7132)] = 228910, - [SMALL_STATE(7133)] = 228954, - [SMALL_STATE(7134)] = 228980, - [SMALL_STATE(7135)] = 229004, - [SMALL_STATE(7136)] = 229050, - [SMALL_STATE(7137)] = 229076, - [SMALL_STATE(7138)] = 229104, - [SMALL_STATE(7139)] = 229130, - [SMALL_STATE(7140)] = 229158, - [SMALL_STATE(7141)] = 229186, - [SMALL_STATE(7142)] = 229210, - [SMALL_STATE(7143)] = 229256, - [SMALL_STATE(7144)] = 229300, - [SMALL_STATE(7145)] = 229342, - [SMALL_STATE(7146)] = 229384, - [SMALL_STATE(7147)] = 229408, - [SMALL_STATE(7148)] = 229432, - [SMALL_STATE(7149)] = 229474, - [SMALL_STATE(7150)] = 229518, - [SMALL_STATE(7151)] = 229560, - [SMALL_STATE(7152)] = 229590, - [SMALL_STATE(7153)] = 229634, - [SMALL_STATE(7154)] = 229662, - [SMALL_STATE(7155)] = 229688, - [SMALL_STATE(7156)] = 229712, - [SMALL_STATE(7157)] = 229744, - [SMALL_STATE(7158)] = 229786, - [SMALL_STATE(7159)] = 229828, - [SMALL_STATE(7160)] = 229858, - [SMALL_STATE(7161)] = 229888, - [SMALL_STATE(7162)] = 229916, - [SMALL_STATE(7163)] = 229940, - [SMALL_STATE(7164)] = 229964, - [SMALL_STATE(7165)] = 230006, - [SMALL_STATE(7166)] = 230032, - [SMALL_STATE(7167)] = 230074, - [SMALL_STATE(7168)] = 230116, - [SMALL_STATE(7169)] = 230140, - [SMALL_STATE(7170)] = 230184, - [SMALL_STATE(7171)] = 230228, - [SMALL_STATE(7172)] = 230254, - [SMALL_STATE(7173)] = 230294, - [SMALL_STATE(7174)] = 230338, - [SMALL_STATE(7175)] = 230384, - [SMALL_STATE(7176)] = 230430, - [SMALL_STATE(7177)] = 230470, - [SMALL_STATE(7178)] = 230514, - [SMALL_STATE(7179)] = 230554, - [SMALL_STATE(7180)] = 230594, - [SMALL_STATE(7181)] = 230640, - [SMALL_STATE(7182)] = 230668, - [SMALL_STATE(7183)] = 230712, - [SMALL_STATE(7184)] = 230754, - [SMALL_STATE(7185)] = 230778, - [SMALL_STATE(7186)] = 230820, - [SMALL_STATE(7187)] = 230866, - [SMALL_STATE(7188)] = 230890, - [SMALL_STATE(7189)] = 230916, - [SMALL_STATE(7190)] = 230958, - [SMALL_STATE(7191)] = 231002, - [SMALL_STATE(7192)] = 231026, - [SMALL_STATE(7193)] = 231072, - [SMALL_STATE(7194)] = 231114, - [SMALL_STATE(7195)] = 231142, - [SMALL_STATE(7196)] = 231168, - [SMALL_STATE(7197)] = 231192, - [SMALL_STATE(7198)] = 231218, - [SMALL_STATE(7199)] = 231242, - [SMALL_STATE(7200)] = 231266, - [SMALL_STATE(7201)] = 231306, - [SMALL_STATE(7202)] = 231346, - [SMALL_STATE(7203)] = 231392, - [SMALL_STATE(7204)] = 231416, - [SMALL_STATE(7205)] = 231440, - [SMALL_STATE(7206)] = 231482, - [SMALL_STATE(7207)] = 231524, - [SMALL_STATE(7208)] = 231566, - [SMALL_STATE(7209)] = 231594, - [SMALL_STATE(7210)] = 231638, - [SMALL_STATE(7211)] = 231680, - [SMALL_STATE(7212)] = 231722, - [SMALL_STATE(7213)] = 231762, - [SMALL_STATE(7214)] = 231804, - [SMALL_STATE(7215)] = 231832, - [SMALL_STATE(7216)] = 231874, - [SMALL_STATE(7217)] = 231914, - [SMALL_STATE(7218)] = 231955, - [SMALL_STATE(7219)] = 231990, - [SMALL_STATE(7220)] = 232015, - [SMALL_STATE(7221)] = 232040, - [SMALL_STATE(7222)] = 232065, - [SMALL_STATE(7223)] = 232106, - [SMALL_STATE(7224)] = 232141, - [SMALL_STATE(7225)] = 232176, - [SMALL_STATE(7226)] = 232215, - [SMALL_STATE(7227)] = 232254, - [SMALL_STATE(7228)] = 232289, - [SMALL_STATE(7229)] = 232314, - [SMALL_STATE(7230)] = 232337, - [SMALL_STATE(7231)] = 232372, - [SMALL_STATE(7232)] = 232407, - [SMALL_STATE(7233)] = 232446, - [SMALL_STATE(7234)] = 232473, - [SMALL_STATE(7235)] = 232508, - [SMALL_STATE(7236)] = 232533, - [SMALL_STATE(7237)] = 232568, - [SMALL_STATE(7238)] = 232607, - [SMALL_STATE(7239)] = 232638, - [SMALL_STATE(7240)] = 232661, - [SMALL_STATE(7241)] = 232700, - [SMALL_STATE(7242)] = 232735, - [SMALL_STATE(7243)] = 232774, - [SMALL_STATE(7244)] = 232799, - [SMALL_STATE(7245)] = 232840, - [SMALL_STATE(7246)] = 232881, - [SMALL_STATE(7247)] = 232920, - [SMALL_STATE(7248)] = 232955, - [SMALL_STATE(7249)] = 232994, - [SMALL_STATE(7250)] = 233033, - [SMALL_STATE(7251)] = 233072, - [SMALL_STATE(7252)] = 233099, - [SMALL_STATE(7253)] = 233134, - [SMALL_STATE(7254)] = 233173, - [SMALL_STATE(7255)] = 233196, - [SMALL_STATE(7256)] = 233231, - [SMALL_STATE(7257)] = 233254, - [SMALL_STATE(7258)] = 233277, - [SMALL_STATE(7259)] = 233302, - [SMALL_STATE(7260)] = 233333, - [SMALL_STATE(7261)] = 233372, - [SMALL_STATE(7262)] = 233407, - [SMALL_STATE(7263)] = 233430, - [SMALL_STATE(7264)] = 233465, - [SMALL_STATE(7265)] = 233488, - [SMALL_STATE(7266)] = 233523, - [SMALL_STATE(7267)] = 233564, - [SMALL_STATE(7268)] = 233599, - [SMALL_STATE(7269)] = 233626, - [SMALL_STATE(7270)] = 233653, - [SMALL_STATE(7271)] = 233678, - [SMALL_STATE(7272)] = 233703, - [SMALL_STATE(7273)] = 233738, - [SMALL_STATE(7274)] = 233763, - [SMALL_STATE(7275)] = 233794, - [SMALL_STATE(7276)] = 233819, - [SMALL_STATE(7277)] = 233844, - [SMALL_STATE(7278)] = 233867, - [SMALL_STATE(7279)] = 233890, - [SMALL_STATE(7280)] = 233931, - [SMALL_STATE(7281)] = 233966, - [SMALL_STATE(7282)] = 233993, - [SMALL_STATE(7283)] = 234020, - [SMALL_STATE(7284)] = 234055, - [SMALL_STATE(7285)] = 234090, - [SMALL_STATE(7286)] = 234129, - [SMALL_STATE(7287)] = 234152, - [SMALL_STATE(7288)] = 234181, - [SMALL_STATE(7289)] = 234216, - [SMALL_STATE(7290)] = 234255, - [SMALL_STATE(7291)] = 234294, - [SMALL_STATE(7292)] = 234329, - [SMALL_STATE(7293)] = 234356, - [SMALL_STATE(7294)] = 234393, - [SMALL_STATE(7295)] = 234434, - [SMALL_STATE(7296)] = 234457, - [SMALL_STATE(7297)] = 234492, - [SMALL_STATE(7298)] = 234531, - [SMALL_STATE(7299)] = 234570, - [SMALL_STATE(7300)] = 234601, - [SMALL_STATE(7301)] = 234640, - [SMALL_STATE(7302)] = 234663, - [SMALL_STATE(7303)] = 234688, - [SMALL_STATE(7304)] = 234729, - [SMALL_STATE(7305)] = 234754, - [SMALL_STATE(7306)] = 234793, - [SMALL_STATE(7307)] = 234818, - [SMALL_STATE(7308)] = 234841, - [SMALL_STATE(7309)] = 234882, - [SMALL_STATE(7310)] = 234905, - [SMALL_STATE(7311)] = 234946, - [SMALL_STATE(7312)] = 234987, - [SMALL_STATE(7313)] = 235024, - [SMALL_STATE(7314)] = 235051, - [SMALL_STATE(7315)] = 235078, - [SMALL_STATE(7316)] = 235111, - [SMALL_STATE(7317)] = 235136, - [SMALL_STATE(7318)] = 235161, - [SMALL_STATE(7319)] = 235184, - [SMALL_STATE(7320)] = 235219, - [SMALL_STATE(7321)] = 235248, - [SMALL_STATE(7322)] = 235271, - [SMALL_STATE(7323)] = 235312, - [SMALL_STATE(7324)] = 235335, - [SMALL_STATE(7325)] = 235362, - [SMALL_STATE(7326)] = 235401, - [SMALL_STATE(7327)] = 235424, - [SMALL_STATE(7328)] = 235461, - [SMALL_STATE(7329)] = 235498, - [SMALL_STATE(7330)] = 235535, - [SMALL_STATE(7331)] = 235562, - [SMALL_STATE(7332)] = 235593, - [SMALL_STATE(7333)] = 235620, - [SMALL_STATE(7334)] = 235659, - [SMALL_STATE(7335)] = 235698, - [SMALL_STATE(7336)] = 235733, - [SMALL_STATE(7337)] = 235772, - [SMALL_STATE(7338)] = 235813, - [SMALL_STATE(7339)] = 235844, - [SMALL_STATE(7340)] = 235881, - [SMALL_STATE(7341)] = 235918, - [SMALL_STATE(7342)] = 235955, - [SMALL_STATE(7343)] = 235992, - [SMALL_STATE(7344)] = 236029, - [SMALL_STATE(7345)] = 236064, - [SMALL_STATE(7346)] = 236105, - [SMALL_STATE(7347)] = 236128, - [SMALL_STATE(7348)] = 236167, - [SMALL_STATE(7349)] = 236206, - [SMALL_STATE(7350)] = 236233, - [SMALL_STATE(7351)] = 236266, - [SMALL_STATE(7352)] = 236293, - [SMALL_STATE(7353)] = 236320, - [SMALL_STATE(7354)] = 236357, - [SMALL_STATE(7355)] = 236394, - [SMALL_STATE(7356)] = 236431, - [SMALL_STATE(7357)] = 236472, - [SMALL_STATE(7358)] = 236494, - [SMALL_STATE(7359)] = 236526, - [SMALL_STATE(7360)] = 236564, - [SMALL_STATE(7361)] = 236592, - [SMALL_STATE(7362)] = 236614, - [SMALL_STATE(7363)] = 236644, - [SMALL_STATE(7364)] = 236676, - [SMALL_STATE(7365)] = 236708, - [SMALL_STATE(7366)] = 236740, - [SMALL_STATE(7367)] = 236764, - [SMALL_STATE(7368)] = 236788, - [SMALL_STATE(7369)] = 236818, - [SMALL_STATE(7370)] = 236840, - [SMALL_STATE(7371)] = 236862, - [SMALL_STATE(7372)] = 236888, - [SMALL_STATE(7373)] = 236920, - [SMALL_STATE(7374)] = 236952, - [SMALL_STATE(7375)] = 236974, - [SMALL_STATE(7376)] = 237006, - [SMALL_STATE(7377)] = 237030, - [SMALL_STATE(7378)] = 237058, - [SMALL_STATE(7379)] = 237086, - [SMALL_STATE(7380)] = 237114, - [SMALL_STATE(7381)] = 237136, - [SMALL_STATE(7382)] = 237174, - [SMALL_STATE(7383)] = 237196, - [SMALL_STATE(7384)] = 237218, - [SMALL_STATE(7385)] = 237246, - [SMALL_STATE(7386)] = 237274, - [SMALL_STATE(7387)] = 237302, - [SMALL_STATE(7388)] = 237328, - [SMALL_STATE(7389)] = 237360, - [SMALL_STATE(7390)] = 237396, - [SMALL_STATE(7391)] = 237418, - [SMALL_STATE(7392)] = 237446, - [SMALL_STATE(7393)] = 237472, - [SMALL_STATE(7394)] = 237494, - [SMALL_STATE(7395)] = 237516, - [SMALL_STATE(7396)] = 237548, - [SMALL_STATE(7397)] = 237580, - [SMALL_STATE(7398)] = 237612, - [SMALL_STATE(7399)] = 237642, - [SMALL_STATE(7400)] = 237674, - [SMALL_STATE(7401)] = 237696, - [SMALL_STATE(7402)] = 237724, - [SMALL_STATE(7403)] = 237748, - [SMALL_STATE(7404)] = 237776, - [SMALL_STATE(7405)] = 237802, - [SMALL_STATE(7406)] = 237834, - [SMALL_STATE(7407)] = 237866, - [SMALL_STATE(7408)] = 237892, - [SMALL_STATE(7409)] = 237924, - [SMALL_STATE(7410)] = 237956, - [SMALL_STATE(7411)] = 237992, - [SMALL_STATE(7412)] = 238028, - [SMALL_STATE(7413)] = 238064, - [SMALL_STATE(7414)] = 238096, - [SMALL_STATE(7415)] = 238128, - [SMALL_STATE(7416)] = 238160, - [SMALL_STATE(7417)] = 238182, - [SMALL_STATE(7418)] = 238214, - [SMALL_STATE(7419)] = 238236, - [SMALL_STATE(7420)] = 238268, - [SMALL_STATE(7421)] = 238300, - [SMALL_STATE(7422)] = 238332, - [SMALL_STATE(7423)] = 238364, - [SMALL_STATE(7424)] = 238396, - [SMALL_STATE(7425)] = 238428, - [SMALL_STATE(7426)] = 238460, - [SMALL_STATE(7427)] = 238492, - [SMALL_STATE(7428)] = 238524, - [SMALL_STATE(7429)] = 238546, - [SMALL_STATE(7430)] = 238570, - [SMALL_STATE(7431)] = 238602, - [SMALL_STATE(7432)] = 238638, - [SMALL_STATE(7433)] = 238664, - [SMALL_STATE(7434)] = 238688, - [SMALL_STATE(7435)] = 238710, - [SMALL_STATE(7436)] = 238732, - [SMALL_STATE(7437)] = 238758, - [SMALL_STATE(7438)] = 238782, - [SMALL_STATE(7439)] = 238806, - [SMALL_STATE(7440)] = 238830, - [SMALL_STATE(7441)] = 238858, - [SMALL_STATE(7442)] = 238882, - [SMALL_STATE(7443)] = 238906, - [SMALL_STATE(7444)] = 238934, - [SMALL_STATE(7445)] = 238956, - [SMALL_STATE(7446)] = 238980, - [SMALL_STATE(7447)] = 239002, - [SMALL_STATE(7448)] = 239026, - [SMALL_STATE(7449)] = 239050, - [SMALL_STATE(7450)] = 239086, - [SMALL_STATE(7451)] = 239110, - [SMALL_STATE(7452)] = 239132, - [SMALL_STATE(7453)] = 239164, - [SMALL_STATE(7454)] = 239196, - [SMALL_STATE(7455)] = 239218, - [SMALL_STATE(7456)] = 239244, - [SMALL_STATE(7457)] = 239270, - [SMALL_STATE(7458)] = 239294, - [SMALL_STATE(7459)] = 239318, - [SMALL_STATE(7460)] = 239352, - [SMALL_STATE(7461)] = 239374, - [SMALL_STATE(7462)] = 239412, - [SMALL_STATE(7463)] = 239438, - [SMALL_STATE(7464)] = 239460, - [SMALL_STATE(7465)] = 239482, - [SMALL_STATE(7466)] = 239506, - [SMALL_STATE(7467)] = 239528, - [SMALL_STATE(7468)] = 239560, - [SMALL_STATE(7469)] = 239584, - [SMALL_STATE(7470)] = 239612, - [SMALL_STATE(7471)] = 239638, - [SMALL_STATE(7472)] = 239672, - [SMALL_STATE(7473)] = 239708, - [SMALL_STATE(7474)] = 239738, - [SMALL_STATE(7475)] = 239776, - [SMALL_STATE(7476)] = 239812, - [SMALL_STATE(7477)] = 239848, - [SMALL_STATE(7478)] = 239874, - [SMALL_STATE(7479)] = 239906, - [SMALL_STATE(7480)] = 239942, - [SMALL_STATE(7481)] = 239968, - [SMALL_STATE(7482)] = 239992, - [SMALL_STATE(7483)] = 240028, - [SMALL_STATE(7484)] = 240064, - [SMALL_STATE(7485)] = 240100, - [SMALL_STATE(7486)] = 240124, - [SMALL_STATE(7487)] = 240154, - [SMALL_STATE(7488)] = 240180, - [SMALL_STATE(7489)] = 240202, - [SMALL_STATE(7490)] = 240228, - [SMALL_STATE(7491)] = 240252, - [SMALL_STATE(7492)] = 240288, - [SMALL_STATE(7493)] = 240324, - [SMALL_STATE(7494)] = 240360, - [SMALL_STATE(7495)] = 240382, - [SMALL_STATE(7496)] = 240410, - [SMALL_STATE(7497)] = 240434, - [SMALL_STATE(7498)] = 240460, - [SMALL_STATE(7499)] = 240482, - [SMALL_STATE(7500)] = 240520, - [SMALL_STATE(7501)] = 240546, - [SMALL_STATE(7502)] = 240580, - [SMALL_STATE(7503)] = 240610, - [SMALL_STATE(7504)] = 240642, - [SMALL_STATE(7505)] = 240668, - [SMALL_STATE(7506)] = 240706, - [SMALL_STATE(7507)] = 240730, - [SMALL_STATE(7508)] = 240752, - [SMALL_STATE(7509)] = 240776, - [SMALL_STATE(7510)] = 240800, - [SMALL_STATE(7511)] = 240836, - [SMALL_STATE(7512)] = 240858, - [SMALL_STATE(7513)] = 240886, - [SMALL_STATE(7514)] = 240918, - [SMALL_STATE(7515)] = 240948, - [SMALL_STATE(7516)] = 240986, - [SMALL_STATE(7517)] = 241014, - [SMALL_STATE(7518)] = 241052, - [SMALL_STATE(7519)] = 241090, - [SMALL_STATE(7520)] = 241128, - [SMALL_STATE(7521)] = 241150, - [SMALL_STATE(7522)] = 241182, - [SMALL_STATE(7523)] = 241220, - [SMALL_STATE(7524)] = 241248, - [SMALL_STATE(7525)] = 241276, - [SMALL_STATE(7526)] = 241304, - [SMALL_STATE(7527)] = 241330, - [SMALL_STATE(7528)] = 241356, - [SMALL_STATE(7529)] = 241392, - [SMALL_STATE(7530)] = 241424, - [SMALL_STATE(7531)] = 241450, - [SMALL_STATE(7532)] = 241488, - [SMALL_STATE(7533)] = 241526, - [SMALL_STATE(7534)] = 241547, - [SMALL_STATE(7535)] = 241570, - [SMALL_STATE(7536)] = 241597, - [SMALL_STATE(7537)] = 241618, - [SMALL_STATE(7538)] = 241641, - [SMALL_STATE(7539)] = 241662, - [SMALL_STATE(7540)] = 241683, - [SMALL_STATE(7541)] = 241708, - [SMALL_STATE(7542)] = 241729, - [SMALL_STATE(7543)] = 241754, - [SMALL_STATE(7544)] = 241777, - [SMALL_STATE(7545)] = 241808, - [SMALL_STATE(7546)] = 241831, - [SMALL_STATE(7547)] = 241860, - [SMALL_STATE(7548)] = 241887, - [SMALL_STATE(7549)] = 241910, - [SMALL_STATE(7550)] = 241935, - [SMALL_STATE(7551)] = 241960, - [SMALL_STATE(7552)] = 241979, - [SMALL_STATE(7553)] = 241998, - [SMALL_STATE(7554)] = 242021, - [SMALL_STATE(7555)] = 242052, - [SMALL_STATE(7556)] = 242073, - [SMALL_STATE(7557)] = 242094, - [SMALL_STATE(7558)] = 242125, - [SMALL_STATE(7559)] = 242156, - [SMALL_STATE(7560)] = 242187, - [SMALL_STATE(7561)] = 242218, - [SMALL_STATE(7562)] = 242249, - [SMALL_STATE(7563)] = 242272, - [SMALL_STATE(7564)] = 242293, - [SMALL_STATE(7565)] = 242314, - [SMALL_STATE(7566)] = 242335, - [SMALL_STATE(7567)] = 242366, - [SMALL_STATE(7568)] = 242397, - [SMALL_STATE(7569)] = 242428, - [SMALL_STATE(7570)] = 242459, - [SMALL_STATE(7571)] = 242484, - [SMALL_STATE(7572)] = 242505, - [SMALL_STATE(7573)] = 242526, - [SMALL_STATE(7574)] = 242547, - [SMALL_STATE(7575)] = 242578, - [SMALL_STATE(7576)] = 242609, - [SMALL_STATE(7577)] = 242640, - [SMALL_STATE(7578)] = 242665, - [SMALL_STATE(7579)] = 242696, - [SMALL_STATE(7580)] = 242723, - [SMALL_STATE(7581)] = 242744, - [SMALL_STATE(7582)] = 242765, - [SMALL_STATE(7583)] = 242788, - [SMALL_STATE(7584)] = 242819, - [SMALL_STATE(7585)] = 242850, - [SMALL_STATE(7586)] = 242881, - [SMALL_STATE(7587)] = 242902, - [SMALL_STATE(7588)] = 242933, - [SMALL_STATE(7589)] = 242966, - [SMALL_STATE(7590)] = 242993, - [SMALL_STATE(7591)] = 243026, - [SMALL_STATE(7592)] = 243059, - [SMALL_STATE(7593)] = 243080, - [SMALL_STATE(7594)] = 243111, - [SMALL_STATE(7595)] = 243132, - [SMALL_STATE(7596)] = 243159, - [SMALL_STATE(7597)] = 243180, - [SMALL_STATE(7598)] = 243213, - [SMALL_STATE(7599)] = 243246, - [SMALL_STATE(7600)] = 243279, - [SMALL_STATE(7601)] = 243302, - [SMALL_STATE(7602)] = 243335, - [SMALL_STATE(7603)] = 243368, - [SMALL_STATE(7604)] = 243389, - [SMALL_STATE(7605)] = 243416, - [SMALL_STATE(7606)] = 243437, - [SMALL_STATE(7607)] = 243468, - [SMALL_STATE(7608)] = 243489, - [SMALL_STATE(7609)] = 243514, - [SMALL_STATE(7610)] = 243545, - [SMALL_STATE(7611)] = 243578, - [SMALL_STATE(7612)] = 243611, - [SMALL_STATE(7613)] = 243642, - [SMALL_STATE(7614)] = 243663, - [SMALL_STATE(7615)] = 243694, - [SMALL_STATE(7616)] = 243725, - [SMALL_STATE(7617)] = 243756, - [SMALL_STATE(7618)] = 243787, - [SMALL_STATE(7619)] = 243812, - [SMALL_STATE(7620)] = 243833, - [SMALL_STATE(7621)] = 243864, - [SMALL_STATE(7622)] = 243885, - [SMALL_STATE(7623)] = 243916, - [SMALL_STATE(7624)] = 243947, - [SMALL_STATE(7625)] = 243968, - [SMALL_STATE(7626)] = 243989, - [SMALL_STATE(7627)] = 244010, - [SMALL_STATE(7628)] = 244037, - [SMALL_STATE(7629)] = 244058, - [SMALL_STATE(7630)] = 244079, - [SMALL_STATE(7631)] = 244100, - [SMALL_STATE(7632)] = 244121, - [SMALL_STATE(7633)] = 244142, - [SMALL_STATE(7634)] = 244169, - [SMALL_STATE(7635)] = 244194, - [SMALL_STATE(7636)] = 244227, - [SMALL_STATE(7637)] = 244260, - [SMALL_STATE(7638)] = 244281, - [SMALL_STATE(7639)] = 244304, - [SMALL_STATE(7640)] = 244337, - [SMALL_STATE(7641)] = 244370, - [SMALL_STATE(7642)] = 244403, - [SMALL_STATE(7643)] = 244436, - [SMALL_STATE(7644)] = 244459, - [SMALL_STATE(7645)] = 244484, - [SMALL_STATE(7646)] = 244505, - [SMALL_STATE(7647)] = 244526, - [SMALL_STATE(7648)] = 244547, - [SMALL_STATE(7649)] = 244574, - [SMALL_STATE(7650)] = 244607, - [SMALL_STATE(7651)] = 244640, - [SMALL_STATE(7652)] = 244673, - [SMALL_STATE(7653)] = 244706, - [SMALL_STATE(7654)] = 244729, - [SMALL_STATE(7655)] = 244762, - [SMALL_STATE(7656)] = 244795, - [SMALL_STATE(7657)] = 244828, - [SMALL_STATE(7658)] = 244861, - [SMALL_STATE(7659)] = 244894, - [SMALL_STATE(7660)] = 244927, - [SMALL_STATE(7661)] = 244960, - [SMALL_STATE(7662)] = 244993, - [SMALL_STATE(7663)] = 245026, - [SMALL_STATE(7664)] = 245059, - [SMALL_STATE(7665)] = 245092, - [SMALL_STATE(7666)] = 245125, - [SMALL_STATE(7667)] = 245146, - [SMALL_STATE(7668)] = 245179, - [SMALL_STATE(7669)] = 245212, - [SMALL_STATE(7670)] = 245245, - [SMALL_STATE(7671)] = 245278, - [SMALL_STATE(7672)] = 245299, - [SMALL_STATE(7673)] = 245332, - [SMALL_STATE(7674)] = 245365, - [SMALL_STATE(7675)] = 245390, - [SMALL_STATE(7676)] = 245415, - [SMALL_STATE(7677)] = 245448, - [SMALL_STATE(7678)] = 245481, - [SMALL_STATE(7679)] = 245514, - [SMALL_STATE(7680)] = 245547, - [SMALL_STATE(7681)] = 245570, - [SMALL_STATE(7682)] = 245603, - [SMALL_STATE(7683)] = 245636, - [SMALL_STATE(7684)] = 245667, - [SMALL_STATE(7685)] = 245698, - [SMALL_STATE(7686)] = 245731, - [SMALL_STATE(7687)] = 245764, - [SMALL_STATE(7688)] = 245797, - [SMALL_STATE(7689)] = 245830, - [SMALL_STATE(7690)] = 245863, - [SMALL_STATE(7691)] = 245896, - [SMALL_STATE(7692)] = 245919, - [SMALL_STATE(7693)] = 245952, - [SMALL_STATE(7694)] = 245985, - [SMALL_STATE(7695)] = 246018, - [SMALL_STATE(7696)] = 246051, - [SMALL_STATE(7697)] = 246084, - [SMALL_STATE(7698)] = 246117, - [SMALL_STATE(7699)] = 246150, - [SMALL_STATE(7700)] = 246183, - [SMALL_STATE(7701)] = 246204, - [SMALL_STATE(7702)] = 246229, - [SMALL_STATE(7703)] = 246262, - [SMALL_STATE(7704)] = 246295, - [SMALL_STATE(7705)] = 246322, - [SMALL_STATE(7706)] = 246343, - [SMALL_STATE(7707)] = 246376, - [SMALL_STATE(7708)] = 246409, - [SMALL_STATE(7709)] = 246442, - [SMALL_STATE(7710)] = 246475, - [SMALL_STATE(7711)] = 246508, - [SMALL_STATE(7712)] = 246541, - [SMALL_STATE(7713)] = 246574, - [SMALL_STATE(7714)] = 246607, - [SMALL_STATE(7715)] = 246640, - [SMALL_STATE(7716)] = 246673, - [SMALL_STATE(7717)] = 246696, - [SMALL_STATE(7718)] = 246729, - [SMALL_STATE(7719)] = 246762, - [SMALL_STATE(7720)] = 246795, - [SMALL_STATE(7721)] = 246828, - [SMALL_STATE(7722)] = 246861, - [SMALL_STATE(7723)] = 246894, - [SMALL_STATE(7724)] = 246919, - [SMALL_STATE(7725)] = 246952, - [SMALL_STATE(7726)] = 246985, - [SMALL_STATE(7727)] = 247018, - [SMALL_STATE(7728)] = 247051, - [SMALL_STATE(7729)] = 247084, - [SMALL_STATE(7730)] = 247105, - [SMALL_STATE(7731)] = 247138, - [SMALL_STATE(7732)] = 247171, - [SMALL_STATE(7733)] = 247204, - [SMALL_STATE(7734)] = 247237, - [SMALL_STATE(7735)] = 247270, - [SMALL_STATE(7736)] = 247291, - [SMALL_STATE(7737)] = 247312, - [SMALL_STATE(7738)] = 247333, - [SMALL_STATE(7739)] = 247356, - [SMALL_STATE(7740)] = 247389, - [SMALL_STATE(7741)] = 247416, - [SMALL_STATE(7742)] = 247449, - [SMALL_STATE(7743)] = 247482, - [SMALL_STATE(7744)] = 247503, - [SMALL_STATE(7745)] = 247524, - [SMALL_STATE(7746)] = 247557, - [SMALL_STATE(7747)] = 247590, - [SMALL_STATE(7748)] = 247623, - [SMALL_STATE(7749)] = 247644, - [SMALL_STATE(7750)] = 247679, - [SMALL_STATE(7751)] = 247712, - [SMALL_STATE(7752)] = 247745, - [SMALL_STATE(7753)] = 247778, - [SMALL_STATE(7754)] = 247799, - [SMALL_STATE(7755)] = 247824, - [SMALL_STATE(7756)] = 247849, - [SMALL_STATE(7757)] = 247882, - [SMALL_STATE(7758)] = 247915, - [SMALL_STATE(7759)] = 247948, - [SMALL_STATE(7760)] = 247973, - [SMALL_STATE(7761)] = 248002, - [SMALL_STATE(7762)] = 248035, - [SMALL_STATE(7763)] = 248068, - [SMALL_STATE(7764)] = 248101, - [SMALL_STATE(7765)] = 248128, - [SMALL_STATE(7766)] = 248155, - [SMALL_STATE(7767)] = 248184, - [SMALL_STATE(7768)] = 248217, - [SMALL_STATE(7769)] = 248250, - [SMALL_STATE(7770)] = 248283, - [SMALL_STATE(7771)] = 248316, - [SMALL_STATE(7772)] = 248337, - [SMALL_STATE(7773)] = 248370, - [SMALL_STATE(7774)] = 248395, - [SMALL_STATE(7775)] = 248428, - [SMALL_STATE(7776)] = 248461, - [SMALL_STATE(7777)] = 248494, - [SMALL_STATE(7778)] = 248513, - [SMALL_STATE(7779)] = 248546, - [SMALL_STATE(7780)] = 248565, - [SMALL_STATE(7781)] = 248598, - [SMALL_STATE(7782)] = 248631, - [SMALL_STATE(7783)] = 248662, - [SMALL_STATE(7784)] = 248687, - [SMALL_STATE(7785)] = 248720, - [SMALL_STATE(7786)] = 248753, - [SMALL_STATE(7787)] = 248786, - [SMALL_STATE(7788)] = 248813, - [SMALL_STATE(7789)] = 248846, - [SMALL_STATE(7790)] = 248867, - [SMALL_STATE(7791)] = 248900, - [SMALL_STATE(7792)] = 248933, - [SMALL_STATE(7793)] = 248958, - [SMALL_STATE(7794)] = 248987, - [SMALL_STATE(7795)] = 249012, - [SMALL_STATE(7796)] = 249033, - [SMALL_STATE(7797)] = 249054, - [SMALL_STATE(7798)] = 249077, - [SMALL_STATE(7799)] = 249108, - [SMALL_STATE(7800)] = 249141, - [SMALL_STATE(7801)] = 249176, - [SMALL_STATE(7802)] = 249207, - [SMALL_STATE(7803)] = 249228, - [SMALL_STATE(7804)] = 249253, - [SMALL_STATE(7805)] = 249280, - [SMALL_STATE(7806)] = 249305, - [SMALL_STATE(7807)] = 249332, - [SMALL_STATE(7808)] = 249357, - [SMALL_STATE(7809)] = 249378, - [SMALL_STATE(7810)] = 249401, - [SMALL_STATE(7811)] = 249426, - [SMALL_STATE(7812)] = 249451, - [SMALL_STATE(7813)] = 249476, - [SMALL_STATE(7814)] = 249501, - [SMALL_STATE(7815)] = 249526, - [SMALL_STATE(7816)] = 249551, - [SMALL_STATE(7817)] = 249570, - [SMALL_STATE(7818)] = 249591, - [SMALL_STATE(7819)] = 249622, - [SMALL_STATE(7820)] = 249647, - [SMALL_STATE(7821)] = 249670, - [SMALL_STATE(7822)] = 249701, - [SMALL_STATE(7823)] = 249724, - [SMALL_STATE(7824)] = 249745, - [SMALL_STATE(7825)] = 249766, - [SMALL_STATE(7826)] = 249789, - [SMALL_STATE(7827)] = 249810, - [SMALL_STATE(7828)] = 249833, - [SMALL_STATE(7829)] = 249856, - [SMALL_STATE(7830)] = 249885, - [SMALL_STATE(7831)] = 249914, - [SMALL_STATE(7832)] = 249941, - [SMALL_STATE(7833)] = 249970, - [SMALL_STATE(7834)] = 249993, - [SMALL_STATE(7835)] = 250014, - [SMALL_STATE(7836)] = 250041, - [SMALL_STATE(7837)] = 250064, - [SMALL_STATE(7838)] = 250087, - [SMALL_STATE(7839)] = 250112, - [SMALL_STATE(7840)] = 250137, - [SMALL_STATE(7841)] = 250164, - [SMALL_STATE(7842)] = 250197, - [SMALL_STATE(7843)] = 250230, - [SMALL_STATE(7844)] = 250251, - [SMALL_STATE(7845)] = 250272, - [SMALL_STATE(7846)] = 250299, - [SMALL_STATE(7847)] = 250326, - [SMALL_STATE(7848)] = 250353, - [SMALL_STATE(7849)] = 250380, - [SMALL_STATE(7850)] = 250413, - [SMALL_STATE(7851)] = 250446, - [SMALL_STATE(7852)] = 250470, - [SMALL_STATE(7853)] = 250490, - [SMALL_STATE(7854)] = 250516, - [SMALL_STATE(7855)] = 250542, - [SMALL_STATE(7856)] = 250562, - [SMALL_STATE(7857)] = 250586, - [SMALL_STATE(7858)] = 250610, - [SMALL_STATE(7859)] = 250630, - [SMALL_STATE(7860)] = 250652, - [SMALL_STATE(7861)] = 250672, - [SMALL_STATE(7862)] = 250692, - [SMALL_STATE(7863)] = 250712, - [SMALL_STATE(7864)] = 250732, - [SMALL_STATE(7865)] = 250756, - [SMALL_STATE(7866)] = 250778, - [SMALL_STATE(7867)] = 250798, - [SMALL_STATE(7868)] = 250820, - [SMALL_STATE(7869)] = 250840, - [SMALL_STATE(7870)] = 250864, - [SMALL_STATE(7871)] = 250888, - [SMALL_STATE(7872)] = 250912, - [SMALL_STATE(7873)] = 250936, - [SMALL_STATE(7874)] = 250962, - [SMALL_STATE(7875)] = 250984, - [SMALL_STATE(7876)] = 251004, - [SMALL_STATE(7877)] = 251036, - [SMALL_STATE(7878)] = 251056, - [SMALL_STATE(7879)] = 251080, - [SMALL_STATE(7880)] = 251104, - [SMALL_STATE(7881)] = 251126, - [SMALL_STATE(7882)] = 251158, - [SMALL_STATE(7883)] = 251182, - [SMALL_STATE(7884)] = 251204, - [SMALL_STATE(7885)] = 251226, - [SMALL_STATE(7886)] = 251252, - [SMALL_STATE(7887)] = 251274, - [SMALL_STATE(7888)] = 251296, - [SMALL_STATE(7889)] = 251328, - [SMALL_STATE(7890)] = 251352, - [SMALL_STATE(7891)] = 251376, - [SMALL_STATE(7892)] = 251400, - [SMALL_STATE(7893)] = 251420, - [SMALL_STATE(7894)] = 251442, - [SMALL_STATE(7895)] = 251468, - [SMALL_STATE(7896)] = 251490, - [SMALL_STATE(7897)] = 251522, - [SMALL_STATE(7898)] = 251542, - [SMALL_STATE(7899)] = 251562, - [SMALL_STATE(7900)] = 251580, - [SMALL_STATE(7901)] = 251598, - [SMALL_STATE(7902)] = 251624, - [SMALL_STATE(7903)] = 251648, - [SMALL_STATE(7904)] = 251674, - [SMALL_STATE(7905)] = 251696, - [SMALL_STATE(7906)] = 251718, - [SMALL_STATE(7907)] = 251744, - [SMALL_STATE(7908)] = 251770, - [SMALL_STATE(7909)] = 251794, - [SMALL_STATE(7910)] = 251818, - [SMALL_STATE(7911)] = 251838, - [SMALL_STATE(7912)] = 251864, - [SMALL_STATE(7913)] = 251890, - [SMALL_STATE(7914)] = 251910, - [SMALL_STATE(7915)] = 251936, - [SMALL_STATE(7916)] = 251956, - [SMALL_STATE(7917)] = 251978, - [SMALL_STATE(7918)] = 252002, - [SMALL_STATE(7919)] = 252028, - [SMALL_STATE(7920)] = 252050, - [SMALL_STATE(7921)] = 252070, - [SMALL_STATE(7922)] = 252096, - [SMALL_STATE(7923)] = 252120, - [SMALL_STATE(7924)] = 252148, - [SMALL_STATE(7925)] = 252172, - [SMALL_STATE(7926)] = 252196, - [SMALL_STATE(7927)] = 252216, - [SMALL_STATE(7928)] = 252236, - [SMALL_STATE(7929)] = 252256, - [SMALL_STATE(7930)] = 252280, - [SMALL_STATE(7931)] = 252304, - [SMALL_STATE(7932)] = 252328, - [SMALL_STATE(7933)] = 252350, - [SMALL_STATE(7934)] = 252370, - [SMALL_STATE(7935)] = 252396, - [SMALL_STATE(7936)] = 252424, - [SMALL_STATE(7937)] = 252452, - [SMALL_STATE(7938)] = 252480, - [SMALL_STATE(7939)] = 252504, - [SMALL_STATE(7940)] = 252530, - [SMALL_STATE(7941)] = 252554, - [SMALL_STATE(7942)] = 252574, - [SMALL_STATE(7943)] = 252600, - [SMALL_STATE(7944)] = 252624, - [SMALL_STATE(7945)] = 252644, - [SMALL_STATE(7946)] = 252668, - [SMALL_STATE(7947)] = 252688, - [SMALL_STATE(7948)] = 252712, - [SMALL_STATE(7949)] = 252736, - [SMALL_STATE(7950)] = 252756, - [SMALL_STATE(7951)] = 252780, - [SMALL_STATE(7952)] = 252800, - [SMALL_STATE(7953)] = 252824, - [SMALL_STATE(7954)] = 252848, - [SMALL_STATE(7955)] = 252870, - [SMALL_STATE(7956)] = 252894, - [SMALL_STATE(7957)] = 252918, - [SMALL_STATE(7958)] = 252942, - [SMALL_STATE(7959)] = 252966, - [SMALL_STATE(7960)] = 252990, - [SMALL_STATE(7961)] = 253010, - [SMALL_STATE(7962)] = 253032, - [SMALL_STATE(7963)] = 253056, - [SMALL_STATE(7964)] = 253080, - [SMALL_STATE(7965)] = 253100, - [SMALL_STATE(7966)] = 253122, - [SMALL_STATE(7967)] = 253144, - [SMALL_STATE(7968)] = 253166, - [SMALL_STATE(7969)] = 253188, - [SMALL_STATE(7970)] = 253212, - [SMALL_STATE(7971)] = 253232, - [SMALL_STATE(7972)] = 253254, - [SMALL_STATE(7973)] = 253280, - [SMALL_STATE(7974)] = 253302, - [SMALL_STATE(7975)] = 253326, - [SMALL_STATE(7976)] = 253354, - [SMALL_STATE(7977)] = 253376, - [SMALL_STATE(7978)] = 253400, - [SMALL_STATE(7979)] = 253430, - [SMALL_STATE(7980)] = 253450, - [SMALL_STATE(7981)] = 253474, - [SMALL_STATE(7982)] = 253498, - [SMALL_STATE(7983)] = 253520, - [SMALL_STATE(7984)] = 253544, - [SMALL_STATE(7985)] = 253566, - [SMALL_STATE(7986)] = 253592, - [SMALL_STATE(7987)] = 253612, - [SMALL_STATE(7988)] = 253642, - [SMALL_STATE(7989)] = 253666, - [SMALL_STATE(7990)] = 253688, - [SMALL_STATE(7991)] = 253712, - [SMALL_STATE(7992)] = 253734, - [SMALL_STATE(7993)] = 253754, - [SMALL_STATE(7994)] = 253778, - [SMALL_STATE(7995)] = 253798, - [SMALL_STATE(7996)] = 253818, - [SMALL_STATE(7997)] = 253844, - [SMALL_STATE(7998)] = 253868, - [SMALL_STATE(7999)] = 253892, - [SMALL_STATE(8000)] = 253912, - [SMALL_STATE(8001)] = 253932, - [SMALL_STATE(8002)] = 253958, - [SMALL_STATE(8003)] = 253984, - [SMALL_STATE(8004)] = 254010, - [SMALL_STATE(8005)] = 254030, - [SMALL_STATE(8006)] = 254052, - [SMALL_STATE(8007)] = 254074, - [SMALL_STATE(8008)] = 254097, - [SMALL_STATE(8009)] = 254118, - [SMALL_STATE(8010)] = 254145, - [SMALL_STATE(8011)] = 254168, - [SMALL_STATE(8012)] = 254197, - [SMALL_STATE(8013)] = 254226, - [SMALL_STATE(8014)] = 254245, - [SMALL_STATE(8015)] = 254274, - [SMALL_STATE(8016)] = 254303, - [SMALL_STATE(8017)] = 254326, - [SMALL_STATE(8018)] = 254349, - [SMALL_STATE(8019)] = 254378, - [SMALL_STATE(8020)] = 254401, - [SMALL_STATE(8021)] = 254426, - [SMALL_STATE(8022)] = 254445, - [SMALL_STATE(8023)] = 254464, - [SMALL_STATE(8024)] = 254485, - [SMALL_STATE(8025)] = 254504, - [SMALL_STATE(8026)] = 254525, - [SMALL_STATE(8027)] = 254546, - [SMALL_STATE(8028)] = 254569, - [SMALL_STATE(8029)] = 254592, - [SMALL_STATE(8030)] = 254611, - [SMALL_STATE(8031)] = 254630, - [SMALL_STATE(8032)] = 254653, - [SMALL_STATE(8033)] = 254682, - [SMALL_STATE(8034)] = 254701, - [SMALL_STATE(8035)] = 254728, - [SMALL_STATE(8036)] = 254751, - [SMALL_STATE(8037)] = 254770, - [SMALL_STATE(8038)] = 254793, - [SMALL_STATE(8039)] = 254820, - [SMALL_STATE(8040)] = 254843, - [SMALL_STATE(8041)] = 254864, - [SMALL_STATE(8042)] = 254883, - [SMALL_STATE(8043)] = 254912, - [SMALL_STATE(8044)] = 254931, - [SMALL_STATE(8045)] = 254952, - [SMALL_STATE(8046)] = 254973, - [SMALL_STATE(8047)] = 254996, - [SMALL_STATE(8048)] = 255015, - [SMALL_STATE(8049)] = 255036, - [SMALL_STATE(8050)] = 255055, - [SMALL_STATE(8051)] = 255078, - [SMALL_STATE(8052)] = 255101, - [SMALL_STATE(8053)] = 255124, - [SMALL_STATE(8054)] = 255147, - [SMALL_STATE(8055)] = 255168, - [SMALL_STATE(8056)] = 255193, - [SMALL_STATE(8057)] = 255222, - [SMALL_STATE(8058)] = 255241, - [SMALL_STATE(8059)] = 255264, - [SMALL_STATE(8060)] = 255293, - [SMALL_STATE(8061)] = 255312, - [SMALL_STATE(8062)] = 255331, - [SMALL_STATE(8063)] = 255350, - [SMALL_STATE(8064)] = 255375, - [SMALL_STATE(8065)] = 255398, - [SMALL_STATE(8066)] = 255417, - [SMALL_STATE(8067)] = 255440, - [SMALL_STATE(8068)] = 255461, - [SMALL_STATE(8069)] = 255484, - [SMALL_STATE(8070)] = 255505, - [SMALL_STATE(8071)] = 255528, - [SMALL_STATE(8072)] = 255553, - [SMALL_STATE(8073)] = 255574, - [SMALL_STATE(8074)] = 255593, - [SMALL_STATE(8075)] = 255612, - [SMALL_STATE(8076)] = 255635, - [SMALL_STATE(8077)] = 255658, - [SMALL_STATE(8078)] = 255681, - [SMALL_STATE(8079)] = 255710, - [SMALL_STATE(8080)] = 255729, - [SMALL_STATE(8081)] = 255752, - [SMALL_STATE(8082)] = 255777, - [SMALL_STATE(8083)] = 255800, - [SMALL_STATE(8084)] = 255829, - [SMALL_STATE(8085)] = 255852, - [SMALL_STATE(8086)] = 255875, - [SMALL_STATE(8087)] = 255894, - [SMALL_STATE(8088)] = 255913, - [SMALL_STATE(8089)] = 255932, - [SMALL_STATE(8090)] = 255953, - [SMALL_STATE(8091)] = 255978, - [SMALL_STATE(8092)] = 256007, - [SMALL_STATE(8093)] = 256028, - [SMALL_STATE(8094)] = 256051, - [SMALL_STATE(8095)] = 256080, - [SMALL_STATE(8096)] = 256099, - [SMALL_STATE(8097)] = 256120, - [SMALL_STATE(8098)] = 256143, - [SMALL_STATE(8099)] = 256162, - [SMALL_STATE(8100)] = 256185, - [SMALL_STATE(8101)] = 256214, - [SMALL_STATE(8102)] = 256243, - [SMALL_STATE(8103)] = 256272, - [SMALL_STATE(8104)] = 256297, - [SMALL_STATE(8105)] = 256320, - [SMALL_STATE(8106)] = 256339, - [SMALL_STATE(8107)] = 256362, - [SMALL_STATE(8108)] = 256387, - [SMALL_STATE(8109)] = 256416, - [SMALL_STATE(8110)] = 256445, - [SMALL_STATE(8111)] = 256474, - [SMALL_STATE(8112)] = 256497, - [SMALL_STATE(8113)] = 256520, - [SMALL_STATE(8114)] = 256539, - [SMALL_STATE(8115)] = 256564, - [SMALL_STATE(8116)] = 256589, - [SMALL_STATE(8117)] = 256618, - [SMALL_STATE(8118)] = 256647, - [SMALL_STATE(8119)] = 256678, - [SMALL_STATE(8120)] = 256709, - [SMALL_STATE(8121)] = 256740, - [SMALL_STATE(8122)] = 256769, - [SMALL_STATE(8123)] = 256798, - [SMALL_STATE(8124)] = 256821, - [SMALL_STATE(8125)] = 256844, - [SMALL_STATE(8126)] = 256867, - [SMALL_STATE(8127)] = 256890, - [SMALL_STATE(8128)] = 256915, - [SMALL_STATE(8129)] = 256940, - [SMALL_STATE(8130)] = 256971, - [SMALL_STATE(8131)] = 257000, - [SMALL_STATE(8132)] = 257021, - [SMALL_STATE(8133)] = 257044, - [SMALL_STATE(8134)] = 257063, - [SMALL_STATE(8135)] = 257094, - [SMALL_STATE(8136)] = 257115, - [SMALL_STATE(8137)] = 257136, - [SMALL_STATE(8138)] = 257159, - [SMALL_STATE(8139)] = 257182, - [SMALL_STATE(8140)] = 257207, - [SMALL_STATE(8141)] = 257230, - [SMALL_STATE(8142)] = 257251, - [SMALL_STATE(8143)] = 257270, - [SMALL_STATE(8144)] = 257289, - [SMALL_STATE(8145)] = 257308, - [SMALL_STATE(8146)] = 257331, - [SMALL_STATE(8147)] = 257352, - [SMALL_STATE(8148)] = 257375, - [SMALL_STATE(8149)] = 257394, - [SMALL_STATE(8150)] = 257413, - [SMALL_STATE(8151)] = 257434, - [SMALL_STATE(8152)] = 257463, - [SMALL_STATE(8153)] = 257492, - [SMALL_STATE(8154)] = 257515, - [SMALL_STATE(8155)] = 257534, - [SMALL_STATE(8156)] = 257555, - [SMALL_STATE(8157)] = 257578, - [SMALL_STATE(8158)] = 257601, - [SMALL_STATE(8159)] = 257622, - [SMALL_STATE(8160)] = 257645, - [SMALL_STATE(8161)] = 257666, - [SMALL_STATE(8162)] = 257695, - [SMALL_STATE(8163)] = 257718, - [SMALL_STATE(8164)] = 257745, - [SMALL_STATE(8165)] = 257764, - [SMALL_STATE(8166)] = 257795, - [SMALL_STATE(8167)] = 257818, - [SMALL_STATE(8168)] = 257839, - [SMALL_STATE(8169)] = 257862, - [SMALL_STATE(8170)] = 257883, - [SMALL_STATE(8171)] = 257906, - [SMALL_STATE(8172)] = 257929, - [SMALL_STATE(8173)] = 257948, - [SMALL_STATE(8174)] = 257975, - [SMALL_STATE(8175)] = 258004, - [SMALL_STATE(8176)] = 258033, - [SMALL_STATE(8177)] = 258056, - [SMALL_STATE(8178)] = 258079, - [SMALL_STATE(8179)] = 258106, - [SMALL_STATE(8180)] = 258125, - [SMALL_STATE(8181)] = 258144, - [SMALL_STATE(8182)] = 258167, - [SMALL_STATE(8183)] = 258186, - [SMALL_STATE(8184)] = 258209, - [SMALL_STATE(8185)] = 258238, - [SMALL_STATE(8186)] = 258265, - [SMALL_STATE(8187)] = 258288, - [SMALL_STATE(8188)] = 258307, - [SMALL_STATE(8189)] = 258328, - [SMALL_STATE(8190)] = 258347, - [SMALL_STATE(8191)] = 258374, - [SMALL_STATE(8192)] = 258397, - [SMALL_STATE(8193)] = 258424, - [SMALL_STATE(8194)] = 258447, - [SMALL_STATE(8195)] = 258466, - [SMALL_STATE(8196)] = 258485, - [SMALL_STATE(8197)] = 258508, - [SMALL_STATE(8198)] = 258533, - [SMALL_STATE(8199)] = 258554, - [SMALL_STATE(8200)] = 258579, - [SMALL_STATE(8201)] = 258598, - [SMALL_STATE(8202)] = 258617, - [SMALL_STATE(8203)] = 258640, - [SMALL_STATE(8204)] = 258663, - [SMALL_STATE(8205)] = 258686, - [SMALL_STATE(8206)] = 258705, - [SMALL_STATE(8207)] = 258730, - [SMALL_STATE(8208)] = 258759, - [SMALL_STATE(8209)] = 258778, - [SMALL_STATE(8210)] = 258803, - [SMALL_STATE(8211)] = 258822, - [SMALL_STATE(8212)] = 258843, - [SMALL_STATE(8213)] = 258864, - [SMALL_STATE(8214)] = 258887, - [SMALL_STATE(8215)] = 258910, - [SMALL_STATE(8216)] = 258929, - [SMALL_STATE(8217)] = 258948, - [SMALL_STATE(8218)] = 258971, - [SMALL_STATE(8219)] = 258998, - [SMALL_STATE(8220)] = 259023, - [SMALL_STATE(8221)] = 259046, - [SMALL_STATE(8222)] = 259075, - [SMALL_STATE(8223)] = 259098, - [SMALL_STATE(8224)] = 259119, - [SMALL_STATE(8225)] = 259138, - [SMALL_STATE(8226)] = 259161, - [SMALL_STATE(8227)] = 259184, - [SMALL_STATE(8228)] = 259207, - [SMALL_STATE(8229)] = 259236, - [SMALL_STATE(8230)] = 259259, - [SMALL_STATE(8231)] = 259288, - [SMALL_STATE(8232)] = 259317, - [SMALL_STATE(8233)] = 259340, - [SMALL_STATE(8234)] = 259369, - [SMALL_STATE(8235)] = 259392, - [SMALL_STATE(8236)] = 259411, - [SMALL_STATE(8237)] = 259436, - [SMALL_STATE(8238)] = 259459, - [SMALL_STATE(8239)] = 259478, - [SMALL_STATE(8240)] = 259501, - [SMALL_STATE(8241)] = 259524, - [SMALL_STATE(8242)] = 259545, - [SMALL_STATE(8243)] = 259568, - [SMALL_STATE(8244)] = 259587, - [SMALL_STATE(8245)] = 259610, - [SMALL_STATE(8246)] = 259633, - [SMALL_STATE(8247)] = 259654, - [SMALL_STATE(8248)] = 259673, - [SMALL_STATE(8249)] = 259692, - [SMALL_STATE(8250)] = 259717, - [SMALL_STATE(8251)] = 259736, - [SMALL_STATE(8252)] = 259759, - [SMALL_STATE(8253)] = 259782, - [SMALL_STATE(8254)] = 259805, - [SMALL_STATE(8255)] = 259824, - [SMALL_STATE(8256)] = 259848, - [SMALL_STATE(8257)] = 259870, - [SMALL_STATE(8258)] = 259894, - [SMALL_STATE(8259)] = 259912, - [SMALL_STATE(8260)] = 259934, - [SMALL_STATE(8261)] = 259952, - [SMALL_STATE(8262)] = 259970, - [SMALL_STATE(8263)] = 259988, - [SMALL_STATE(8264)] = 260006, - [SMALL_STATE(8265)] = 260026, - [SMALL_STATE(8266)] = 260044, - [SMALL_STATE(8267)] = 260066, - [SMALL_STATE(8268)] = 260084, - [SMALL_STATE(8269)] = 260106, - [SMALL_STATE(8270)] = 260134, - [SMALL_STATE(8271)] = 260156, - [SMALL_STATE(8272)] = 260178, - [SMALL_STATE(8273)] = 260204, - [SMALL_STATE(8274)] = 260226, - [SMALL_STATE(8275)] = 260248, - [SMALL_STATE(8276)] = 260274, - [SMALL_STATE(8277)] = 260296, - [SMALL_STATE(8278)] = 260322, - [SMALL_STATE(8279)] = 260340, - [SMALL_STATE(8280)] = 260364, - [SMALL_STATE(8281)] = 260388, - [SMALL_STATE(8282)] = 260408, - [SMALL_STATE(8283)] = 260426, - [SMALL_STATE(8284)] = 260450, - [SMALL_STATE(8285)] = 260472, - [SMALL_STATE(8286)] = 260494, - [SMALL_STATE(8287)] = 260516, - [SMALL_STATE(8288)] = 260542, - [SMALL_STATE(8289)] = 260560, - [SMALL_STATE(8290)] = 260584, - [SMALL_STATE(8291)] = 260604, - [SMALL_STATE(8292)] = 260628, - [SMALL_STATE(8293)] = 260650, - [SMALL_STATE(8294)] = 260668, - [SMALL_STATE(8295)] = 260686, - [SMALL_STATE(8296)] = 260706, - [SMALL_STATE(8297)] = 260724, - [SMALL_STATE(8298)] = 260742, - [SMALL_STATE(8299)] = 260764, - [SMALL_STATE(8300)] = 260788, - [SMALL_STATE(8301)] = 260810, - [SMALL_STATE(8302)] = 260830, - [SMALL_STATE(8303)] = 260852, - [SMALL_STATE(8304)] = 260876, - [SMALL_STATE(8305)] = 260898, - [SMALL_STATE(8306)] = 260924, - [SMALL_STATE(8307)] = 260950, - [SMALL_STATE(8308)] = 260972, - [SMALL_STATE(8309)] = 260998, - [SMALL_STATE(8310)] = 261016, - [SMALL_STATE(8311)] = 261034, - [SMALL_STATE(8312)] = 261056, - [SMALL_STATE(8313)] = 261078, - [SMALL_STATE(8314)] = 261096, - [SMALL_STATE(8315)] = 261116, - [SMALL_STATE(8316)] = 261136, - [SMALL_STATE(8317)] = 261164, - [SMALL_STATE(8318)] = 261184, - [SMALL_STATE(8319)] = 261202, - [SMALL_STATE(8320)] = 261224, - [SMALL_STATE(8321)] = 261248, - [SMALL_STATE(8322)] = 261272, - [SMALL_STATE(8323)] = 261294, - [SMALL_STATE(8324)] = 261322, - [SMALL_STATE(8325)] = 261350, - [SMALL_STATE(8326)] = 261378, - [SMALL_STATE(8327)] = 261404, - [SMALL_STATE(8328)] = 261422, - [SMALL_STATE(8329)] = 261440, - [SMALL_STATE(8330)] = 261458, - [SMALL_STATE(8331)] = 261482, - [SMALL_STATE(8332)] = 261504, - [SMALL_STATE(8333)] = 261530, - [SMALL_STATE(8334)] = 261550, - [SMALL_STATE(8335)] = 261576, - [SMALL_STATE(8336)] = 261600, - [SMALL_STATE(8337)] = 261626, - [SMALL_STATE(8338)] = 261646, - [SMALL_STATE(8339)] = 261672, - [SMALL_STATE(8340)] = 261700, - [SMALL_STATE(8341)] = 261726, - [SMALL_STATE(8342)] = 261750, - [SMALL_STATE(8343)] = 261778, - [SMALL_STATE(8344)] = 261804, - [SMALL_STATE(8345)] = 261830, - [SMALL_STATE(8346)] = 261852, - [SMALL_STATE(8347)] = 261870, - [SMALL_STATE(8348)] = 261888, - [SMALL_STATE(8349)] = 261910, - [SMALL_STATE(8350)] = 261934, - [SMALL_STATE(8351)] = 261962, - [SMALL_STATE(8352)] = 261982, - [SMALL_STATE(8353)] = 262004, - [SMALL_STATE(8354)] = 262022, - [SMALL_STATE(8355)] = 262040, - [SMALL_STATE(8356)] = 262058, - [SMALL_STATE(8357)] = 262080, - [SMALL_STATE(8358)] = 262102, - [SMALL_STATE(8359)] = 262128, - [SMALL_STATE(8360)] = 262152, - [SMALL_STATE(8361)] = 262170, - [SMALL_STATE(8362)] = 262192, - [SMALL_STATE(8363)] = 262214, - [SMALL_STATE(8364)] = 262240, - [SMALL_STATE(8365)] = 262258, - [SMALL_STATE(8366)] = 262284, - [SMALL_STATE(8367)] = 262302, - [SMALL_STATE(8368)] = 262322, - [SMALL_STATE(8369)] = 262346, - [SMALL_STATE(8370)] = 262372, - [SMALL_STATE(8371)] = 262398, - [SMALL_STATE(8372)] = 262422, - [SMALL_STATE(8373)] = 262448, - [SMALL_STATE(8374)] = 262472, - [SMALL_STATE(8375)] = 262498, - [SMALL_STATE(8376)] = 262524, - [SMALL_STATE(8377)] = 262542, - [SMALL_STATE(8378)] = 262560, - [SMALL_STATE(8379)] = 262580, - [SMALL_STATE(8380)] = 262598, - [SMALL_STATE(8381)] = 262618, - [SMALL_STATE(8382)] = 262646, - [SMALL_STATE(8383)] = 262664, - [SMALL_STATE(8384)] = 262690, - [SMALL_STATE(8385)] = 262708, - [SMALL_STATE(8386)] = 262730, - [SMALL_STATE(8387)] = 262748, - [SMALL_STATE(8388)] = 262770, - [SMALL_STATE(8389)] = 262792, - [SMALL_STATE(8390)] = 262812, - [SMALL_STATE(8391)] = 262838, - [SMALL_STATE(8392)] = 262862, - [SMALL_STATE(8393)] = 262886, - [SMALL_STATE(8394)] = 262914, - [SMALL_STATE(8395)] = 262938, - [SMALL_STATE(8396)] = 262962, - [SMALL_STATE(8397)] = 262984, - [SMALL_STATE(8398)] = 263008, - [SMALL_STATE(8399)] = 263036, - [SMALL_STATE(8400)] = 263054, - [SMALL_STATE(8401)] = 263074, - [SMALL_STATE(8402)] = 263102, - [SMALL_STATE(8403)] = 263124, - [SMALL_STATE(8404)] = 263142, - [SMALL_STATE(8405)] = 263166, - [SMALL_STATE(8406)] = 263184, - [SMALL_STATE(8407)] = 263206, - [SMALL_STATE(8408)] = 263226, - [SMALL_STATE(8409)] = 263250, - [SMALL_STATE(8410)] = 263272, - [SMALL_STATE(8411)] = 263294, - [SMALL_STATE(8412)] = 263316, - [SMALL_STATE(8413)] = 263338, - [SMALL_STATE(8414)] = 263360, - [SMALL_STATE(8415)] = 263382, - [SMALL_STATE(8416)] = 263404, - [SMALL_STATE(8417)] = 263426, - [SMALL_STATE(8418)] = 263444, - [SMALL_STATE(8419)] = 263462, - [SMALL_STATE(8420)] = 263480, - [SMALL_STATE(8421)] = 263498, - [SMALL_STATE(8422)] = 263518, - [SMALL_STATE(8423)] = 263542, - [SMALL_STATE(8424)] = 263568, - [SMALL_STATE(8425)] = 263594, - [SMALL_STATE(8426)] = 263620, - [SMALL_STATE(8427)] = 263646, - [SMALL_STATE(8428)] = 263666, - [SMALL_STATE(8429)] = 263690, - [SMALL_STATE(8430)] = 263718, - [SMALL_STATE(8431)] = 263740, - [SMALL_STATE(8432)] = 263762, - [SMALL_STATE(8433)] = 263782, - [SMALL_STATE(8434)] = 263804, - [SMALL_STATE(8435)] = 263828, - [SMALL_STATE(8436)] = 263850, - [SMALL_STATE(8437)] = 263876, - [SMALL_STATE(8438)] = 263900, - [SMALL_STATE(8439)] = 263924, - [SMALL_STATE(8440)] = 263948, - [SMALL_STATE(8441)] = 263972, - [SMALL_STATE(8442)] = 263994, - [SMALL_STATE(8443)] = 264016, - [SMALL_STATE(8444)] = 264038, - [SMALL_STATE(8445)] = 264062, - [SMALL_STATE(8446)] = 264086, - [SMALL_STATE(8447)] = 264106, - [SMALL_STATE(8448)] = 264124, - [SMALL_STATE(8449)] = 264150, - [SMALL_STATE(8450)] = 264176, - [SMALL_STATE(8451)] = 264202, - [SMALL_STATE(8452)] = 264220, - [SMALL_STATE(8453)] = 264238, - [SMALL_STATE(8454)] = 264262, - [SMALL_STATE(8455)] = 264284, - [SMALL_STATE(8456)] = 264306, - [SMALL_STATE(8457)] = 264324, - [SMALL_STATE(8458)] = 264350, - [SMALL_STATE(8459)] = 264374, - [SMALL_STATE(8460)] = 264392, - [SMALL_STATE(8461)] = 264414, - [SMALL_STATE(8462)] = 264436, - [SMALL_STATE(8463)] = 264462, - [SMALL_STATE(8464)] = 264484, - [SMALL_STATE(8465)] = 264502, - [SMALL_STATE(8466)] = 264524, - [SMALL_STATE(8467)] = 264546, - [SMALL_STATE(8468)] = 264564, - [SMALL_STATE(8469)] = 264582, - [SMALL_STATE(8470)] = 264600, - [SMALL_STATE(8471)] = 264626, - [SMALL_STATE(8472)] = 264648, - [SMALL_STATE(8473)] = 264666, - [SMALL_STATE(8474)] = 264686, - [SMALL_STATE(8475)] = 264708, - [SMALL_STATE(8476)] = 264732, - [SMALL_STATE(8477)] = 264754, - [SMALL_STATE(8478)] = 264774, - [SMALL_STATE(8479)] = 264794, - [SMALL_STATE(8480)] = 264818, - [SMALL_STATE(8481)] = 264836, - [SMALL_STATE(8482)] = 264860, - [SMALL_STATE(8483)] = 264878, - [SMALL_STATE(8484)] = 264900, - [SMALL_STATE(8485)] = 264920, - [SMALL_STATE(8486)] = 264944, - [SMALL_STATE(8487)] = 264964, - [SMALL_STATE(8488)] = 264986, - [SMALL_STATE(8489)] = 265006, - [SMALL_STATE(8490)] = 265028, - [SMALL_STATE(8491)] = 265052, - [SMALL_STATE(8492)] = 265070, - [SMALL_STATE(8493)] = 265088, - [SMALL_STATE(8494)] = 265110, - [SMALL_STATE(8495)] = 265132, - [SMALL_STATE(8496)] = 265154, - [SMALL_STATE(8497)] = 265180, - [SMALL_STATE(8498)] = 265198, - [SMALL_STATE(8499)] = 265220, - [SMALL_STATE(8500)] = 265242, - [SMALL_STATE(8501)] = 265268, - [SMALL_STATE(8502)] = 265290, - [SMALL_STATE(8503)] = 265310, - [SMALL_STATE(8504)] = 265328, - [SMALL_STATE(8505)] = 265356, - [SMALL_STATE(8506)] = 265374, - [SMALL_STATE(8507)] = 265394, - [SMALL_STATE(8508)] = 265420, - [SMALL_STATE(8509)] = 265446, - [SMALL_STATE(8510)] = 265468, - [SMALL_STATE(8511)] = 265494, - [SMALL_STATE(8512)] = 265519, - [SMALL_STATE(8513)] = 265536, - [SMALL_STATE(8514)] = 265559, - [SMALL_STATE(8515)] = 265580, - [SMALL_STATE(8516)] = 265601, - [SMALL_STATE(8517)] = 265618, - [SMALL_STATE(8518)] = 265633, - [SMALL_STATE(8519)] = 265650, - [SMALL_STATE(8520)] = 265667, - [SMALL_STATE(8521)] = 265688, - [SMALL_STATE(8522)] = 265711, - [SMALL_STATE(8523)] = 265732, - [SMALL_STATE(8524)] = 265755, - [SMALL_STATE(8525)] = 265778, - [SMALL_STATE(8526)] = 265801, - [SMALL_STATE(8527)] = 265818, - [SMALL_STATE(8528)] = 265837, - [SMALL_STATE(8529)] = 265858, - [SMALL_STATE(8530)] = 265881, - [SMALL_STATE(8531)] = 265898, - [SMALL_STATE(8532)] = 265917, - [SMALL_STATE(8533)] = 265936, - [SMALL_STATE(8534)] = 265959, - [SMALL_STATE(8535)] = 265982, - [SMALL_STATE(8536)] = 266005, - [SMALL_STATE(8537)] = 266022, - [SMALL_STATE(8538)] = 266039, - [SMALL_STATE(8539)] = 266060, - [SMALL_STATE(8540)] = 266077, - [SMALL_STATE(8541)] = 266100, - [SMALL_STATE(8542)] = 266117, - [SMALL_STATE(8543)] = 266138, - [SMALL_STATE(8544)] = 266155, - [SMALL_STATE(8545)] = 266172, - [SMALL_STATE(8546)] = 266195, - [SMALL_STATE(8547)] = 266218, - [SMALL_STATE(8548)] = 266241, - [SMALL_STATE(8549)] = 266260, - [SMALL_STATE(8550)] = 266281, - [SMALL_STATE(8551)] = 266298, - [SMALL_STATE(8552)] = 266317, - [SMALL_STATE(8553)] = 266336, - [SMALL_STATE(8554)] = 266357, - [SMALL_STATE(8555)] = 266380, - [SMALL_STATE(8556)] = 266397, - [SMALL_STATE(8557)] = 266420, - [SMALL_STATE(8558)] = 266437, - [SMALL_STATE(8559)] = 266462, - [SMALL_STATE(8560)] = 266487, - [SMALL_STATE(8561)] = 266510, - [SMALL_STATE(8562)] = 266533, - [SMALL_STATE(8563)] = 266550, - [SMALL_STATE(8564)] = 266575, - [SMALL_STATE(8565)] = 266598, - [SMALL_STATE(8566)] = 266615, - [SMALL_STATE(8567)] = 266638, - [SMALL_STATE(8568)] = 266659, - [SMALL_STATE(8569)] = 266676, - [SMALL_STATE(8570)] = 266701, - [SMALL_STATE(8571)] = 266718, - [SMALL_STATE(8572)] = 266735, - [SMALL_STATE(8573)] = 266758, - [SMALL_STATE(8574)] = 266781, - [SMALL_STATE(8575)] = 266800, - [SMALL_STATE(8576)] = 266823, - [SMALL_STATE(8577)] = 266840, - [SMALL_STATE(8578)] = 266861, - [SMALL_STATE(8579)] = 266882, - [SMALL_STATE(8580)] = 266903, - [SMALL_STATE(8581)] = 266920, - [SMALL_STATE(8582)] = 266937, - [SMALL_STATE(8583)] = 266954, - [SMALL_STATE(8584)] = 266971, - [SMALL_STATE(8585)] = 266988, - [SMALL_STATE(8586)] = 267011, - [SMALL_STATE(8587)] = 267034, - [SMALL_STATE(8588)] = 267057, - [SMALL_STATE(8589)] = 267078, - [SMALL_STATE(8590)] = 267097, - [SMALL_STATE(8591)] = 267122, - [SMALL_STATE(8592)] = 267141, - [SMALL_STATE(8593)] = 267158, - [SMALL_STATE(8594)] = 267175, - [SMALL_STATE(8595)] = 267192, - [SMALL_STATE(8596)] = 267215, - [SMALL_STATE(8597)] = 267232, - [SMALL_STATE(8598)] = 267255, - [SMALL_STATE(8599)] = 267274, - [SMALL_STATE(8600)] = 267297, - [SMALL_STATE(8601)] = 267318, - [SMALL_STATE(8602)] = 267335, - [SMALL_STATE(8603)] = 267352, - [SMALL_STATE(8604)] = 267371, - [SMALL_STATE(8605)] = 267394, - [SMALL_STATE(8606)] = 267417, - [SMALL_STATE(8607)] = 267436, - [SMALL_STATE(8608)] = 267461, - [SMALL_STATE(8609)] = 267482, - [SMALL_STATE(8610)] = 267499, - [SMALL_STATE(8611)] = 267522, - [SMALL_STATE(8612)] = 267545, - [SMALL_STATE(8613)] = 267568, - [SMALL_STATE(8614)] = 267587, - [SMALL_STATE(8615)] = 267608, - [SMALL_STATE(8616)] = 267625, - [SMALL_STATE(8617)] = 267642, - [SMALL_STATE(8618)] = 267661, - [SMALL_STATE(8619)] = 267678, - [SMALL_STATE(8620)] = 267695, - [SMALL_STATE(8621)] = 267718, - [SMALL_STATE(8622)] = 267739, - [SMALL_STATE(8623)] = 267758, - [SMALL_STATE(8624)] = 267777, - [SMALL_STATE(8625)] = 267800, - [SMALL_STATE(8626)] = 267817, - [SMALL_STATE(8627)] = 267836, - [SMALL_STATE(8628)] = 267859, - [SMALL_STATE(8629)] = 267880, - [SMALL_STATE(8630)] = 267899, - [SMALL_STATE(8631)] = 267922, - [SMALL_STATE(8632)] = 267943, - [SMALL_STATE(8633)] = 267966, - [SMALL_STATE(8634)] = 267987, - [SMALL_STATE(8635)] = 268010, - [SMALL_STATE(8636)] = 268025, - [SMALL_STATE(8637)] = 268048, - [SMALL_STATE(8638)] = 268071, - [SMALL_STATE(8639)] = 268092, - [SMALL_STATE(8640)] = 268115, - [SMALL_STATE(8641)] = 268132, - [SMALL_STATE(8642)] = 268149, - [SMALL_STATE(8643)] = 268170, - [SMALL_STATE(8644)] = 268187, - [SMALL_STATE(8645)] = 268204, - [SMALL_STATE(8646)] = 268225, - [SMALL_STATE(8647)] = 268250, - [SMALL_STATE(8648)] = 268269, - [SMALL_STATE(8649)] = 268286, - [SMALL_STATE(8650)] = 268307, - [SMALL_STATE(8651)] = 268330, - [SMALL_STATE(8652)] = 268355, - [SMALL_STATE(8653)] = 268380, - [SMALL_STATE(8654)] = 268403, - [SMALL_STATE(8655)] = 268420, - [SMALL_STATE(8656)] = 268437, - [SMALL_STATE(8657)] = 268458, - [SMALL_STATE(8658)] = 268479, - [SMALL_STATE(8659)] = 268498, - [SMALL_STATE(8660)] = 268523, - [SMALL_STATE(8661)] = 268546, - [SMALL_STATE(8662)] = 268563, - [SMALL_STATE(8663)] = 268586, - [SMALL_STATE(8664)] = 268603, - [SMALL_STATE(8665)] = 268626, - [SMALL_STATE(8666)] = 268647, - [SMALL_STATE(8667)] = 268666, - [SMALL_STATE(8668)] = 268687, - [SMALL_STATE(8669)] = 268708, - [SMALL_STATE(8670)] = 268731, - [SMALL_STATE(8671)] = 268750, - [SMALL_STATE(8672)] = 268773, - [SMALL_STATE(8673)] = 268790, - [SMALL_STATE(8674)] = 268807, - [SMALL_STATE(8675)] = 268828, - [SMALL_STATE(8676)] = 268853, - [SMALL_STATE(8677)] = 268870, - [SMALL_STATE(8678)] = 268889, - [SMALL_STATE(8679)] = 268906, - [SMALL_STATE(8680)] = 268929, - [SMALL_STATE(8681)] = 268946, - [SMALL_STATE(8682)] = 268969, - [SMALL_STATE(8683)] = 268992, - [SMALL_STATE(8684)] = 269013, - [SMALL_STATE(8685)] = 269036, - [SMALL_STATE(8686)] = 269053, - [SMALL_STATE(8687)] = 269074, - [SMALL_STATE(8688)] = 269097, - [SMALL_STATE(8689)] = 269120, - [SMALL_STATE(8690)] = 269137, - [SMALL_STATE(8691)] = 269160, - [SMALL_STATE(8692)] = 269183, - [SMALL_STATE(8693)] = 269206, - [SMALL_STATE(8694)] = 269227, - [SMALL_STATE(8695)] = 269250, - [SMALL_STATE(8696)] = 269269, - [SMALL_STATE(8697)] = 269292, - [SMALL_STATE(8698)] = 269313, - [SMALL_STATE(8699)] = 269336, - [SMALL_STATE(8700)] = 269359, - [SMALL_STATE(8701)] = 269382, - [SMALL_STATE(8702)] = 269399, - [SMALL_STATE(8703)] = 269422, - [SMALL_STATE(8704)] = 269445, - [SMALL_STATE(8705)] = 269468, - [SMALL_STATE(8706)] = 269491, - [SMALL_STATE(8707)] = 269514, - [SMALL_STATE(8708)] = 269537, - [SMALL_STATE(8709)] = 269558, - [SMALL_STATE(8710)] = 269581, - [SMALL_STATE(8711)] = 269598, - [SMALL_STATE(8712)] = 269623, - [SMALL_STATE(8713)] = 269640, - [SMALL_STATE(8714)] = 269661, - [SMALL_STATE(8715)] = 269680, - [SMALL_STATE(8716)] = 269699, - [SMALL_STATE(8717)] = 269716, - [SMALL_STATE(8718)] = 269733, - [SMALL_STATE(8719)] = 269758, - [SMALL_STATE(8720)] = 269775, - [SMALL_STATE(8721)] = 269790, - [SMALL_STATE(8722)] = 269809, - [SMALL_STATE(8723)] = 269828, - [SMALL_STATE(8724)] = 269845, - [SMALL_STATE(8725)] = 269864, - [SMALL_STATE(8726)] = 269885, - [SMALL_STATE(8727)] = 269906, - [SMALL_STATE(8728)] = 269923, - [SMALL_STATE(8729)] = 269940, - [SMALL_STATE(8730)] = 269963, - [SMALL_STATE(8731)] = 269986, - [SMALL_STATE(8732)] = 270009, - [SMALL_STATE(8733)] = 270030, - [SMALL_STATE(8734)] = 270047, - [SMALL_STATE(8735)] = 270070, - [SMALL_STATE(8736)] = 270091, - [SMALL_STATE(8737)] = 270108, - [SMALL_STATE(8738)] = 270125, - [SMALL_STATE(8739)] = 270148, - [SMALL_STATE(8740)] = 270165, - [SMALL_STATE(8741)] = 270182, - [SMALL_STATE(8742)] = 270199, - [SMALL_STATE(8743)] = 270218, - [SMALL_STATE(8744)] = 270239, - [SMALL_STATE(8745)] = 270262, - [SMALL_STATE(8746)] = 270279, - [SMALL_STATE(8747)] = 270300, - [SMALL_STATE(8748)] = 270321, - [SMALL_STATE(8749)] = 270346, - [SMALL_STATE(8750)] = 270365, - [SMALL_STATE(8751)] = 270382, - [SMALL_STATE(8752)] = 270405, - [SMALL_STATE(8753)] = 270422, - [SMALL_STATE(8754)] = 270439, - [SMALL_STATE(8755)] = 270462, - [SMALL_STATE(8756)] = 270479, - [SMALL_STATE(8757)] = 270496, - [SMALL_STATE(8758)] = 270513, - [SMALL_STATE(8759)] = 270534, - [SMALL_STATE(8760)] = 270551, - [SMALL_STATE(8761)] = 270568, - [SMALL_STATE(8762)] = 270591, - [SMALL_STATE(8763)] = 270614, - [SMALL_STATE(8764)] = 270635, - [SMALL_STATE(8765)] = 270656, - [SMALL_STATE(8766)] = 270675, - [SMALL_STATE(8767)] = 270698, - [SMALL_STATE(8768)] = 270719, - [SMALL_STATE(8769)] = 270738, - [SMALL_STATE(8770)] = 270761, - [SMALL_STATE(8771)] = 270778, - [SMALL_STATE(8772)] = 270795, - [SMALL_STATE(8773)] = 270812, - [SMALL_STATE(8774)] = 270831, - [SMALL_STATE(8775)] = 270850, - [SMALL_STATE(8776)] = 270869, - [SMALL_STATE(8777)] = 270890, - [SMALL_STATE(8778)] = 270909, - [SMALL_STATE(8779)] = 270930, - [SMALL_STATE(8780)] = 270947, - [SMALL_STATE(8781)] = 270970, - [SMALL_STATE(8782)] = 270993, - [SMALL_STATE(8783)] = 271012, - [SMALL_STATE(8784)] = 271035, - [SMALL_STATE(8785)] = 271054, - [SMALL_STATE(8786)] = 271079, - [SMALL_STATE(8787)] = 271096, - [SMALL_STATE(8788)] = 271115, - [SMALL_STATE(8789)] = 271132, - [SMALL_STATE(8790)] = 271157, - [SMALL_STATE(8791)] = 271174, - [SMALL_STATE(8792)] = 271191, - [SMALL_STATE(8793)] = 271216, - [SMALL_STATE(8794)] = 271233, - [SMALL_STATE(8795)] = 271250, - [SMALL_STATE(8796)] = 271267, - [SMALL_STATE(8797)] = 271288, - [SMALL_STATE(8798)] = 271307, - [SMALL_STATE(8799)] = 271324, - [SMALL_STATE(8800)] = 271345, - [SMALL_STATE(8801)] = 271366, - [SMALL_STATE(8802)] = 271383, - [SMALL_STATE(8803)] = 271400, - [SMALL_STATE(8804)] = 271421, - [SMALL_STATE(8805)] = 271440, - [SMALL_STATE(8806)] = 271463, - [SMALL_STATE(8807)] = 271480, - [SMALL_STATE(8808)] = 271501, - [SMALL_STATE(8809)] = 271518, - [SMALL_STATE(8810)] = 271535, - [SMALL_STATE(8811)] = 271552, - [SMALL_STATE(8812)] = 271573, - [SMALL_STATE(8813)] = 271594, - [SMALL_STATE(8814)] = 271617, - [SMALL_STATE(8815)] = 271634, - [SMALL_STATE(8816)] = 271649, - [SMALL_STATE(8817)] = 271666, - [SMALL_STATE(8818)] = 271683, - [SMALL_STATE(8819)] = 271704, - [SMALL_STATE(8820)] = 271727, - [SMALL_STATE(8821)] = 271747, - [SMALL_STATE(8822)] = 271767, - [SMALL_STATE(8823)] = 271789, - [SMALL_STATE(8824)] = 271805, - [SMALL_STATE(8825)] = 271821, - [SMALL_STATE(8826)] = 271841, - [SMALL_STATE(8827)] = 271857, - [SMALL_STATE(8828)] = 271879, - [SMALL_STATE(8829)] = 271895, - [SMALL_STATE(8830)] = 271915, - [SMALL_STATE(8831)] = 271931, - [SMALL_STATE(8832)] = 271947, - [SMALL_STATE(8833)] = 271969, - [SMALL_STATE(8834)] = 271991, - [SMALL_STATE(8835)] = 272007, - [SMALL_STATE(8836)] = 272023, - [SMALL_STATE(8837)] = 272039, - [SMALL_STATE(8838)] = 272061, - [SMALL_STATE(8839)] = 272075, - [SMALL_STATE(8840)] = 272093, - [SMALL_STATE(8841)] = 272115, - [SMALL_STATE(8842)] = 272137, - [SMALL_STATE(8843)] = 272153, - [SMALL_STATE(8844)] = 272173, - [SMALL_STATE(8845)] = 272195, - [SMALL_STATE(8846)] = 272217, - [SMALL_STATE(8847)] = 272233, - [SMALL_STATE(8848)] = 272255, - [SMALL_STATE(8849)] = 272271, - [SMALL_STATE(8850)] = 272291, - [SMALL_STATE(8851)] = 272313, - [SMALL_STATE(8852)] = 272329, - [SMALL_STATE(8853)] = 272351, - [SMALL_STATE(8854)] = 272369, - [SMALL_STATE(8855)] = 272391, - [SMALL_STATE(8856)] = 272405, - [SMALL_STATE(8857)] = 272425, - [SMALL_STATE(8858)] = 272441, - [SMALL_STATE(8859)] = 272455, - [SMALL_STATE(8860)] = 272471, - [SMALL_STATE(8861)] = 272489, - [SMALL_STATE(8862)] = 272507, - [SMALL_STATE(8863)] = 272527, - [SMALL_STATE(8864)] = 272543, - [SMALL_STATE(8865)] = 272559, - [SMALL_STATE(8866)] = 272581, - [SMALL_STATE(8867)] = 272595, - [SMALL_STATE(8868)] = 272617, - [SMALL_STATE(8869)] = 272639, - [SMALL_STATE(8870)] = 272657, - [SMALL_STATE(8871)] = 272677, - [SMALL_STATE(8872)] = 272693, - [SMALL_STATE(8873)] = 272709, - [SMALL_STATE(8874)] = 272725, - [SMALL_STATE(8875)] = 272741, - [SMALL_STATE(8876)] = 272761, - [SMALL_STATE(8877)] = 272777, - [SMALL_STATE(8878)] = 272799, - [SMALL_STATE(8879)] = 272821, - [SMALL_STATE(8880)] = 272837, - [SMALL_STATE(8881)] = 272857, - [SMALL_STATE(8882)] = 272879, - [SMALL_STATE(8883)] = 272895, - [SMALL_STATE(8884)] = 272915, - [SMALL_STATE(8885)] = 272931, - [SMALL_STATE(8886)] = 272947, - [SMALL_STATE(8887)] = 272961, - [SMALL_STATE(8888)] = 272977, - [SMALL_STATE(8889)] = 272997, - [SMALL_STATE(8890)] = 273013, - [SMALL_STATE(8891)] = 273029, - [SMALL_STATE(8892)] = 273051, - [SMALL_STATE(8893)] = 273073, - [SMALL_STATE(8894)] = 273089, - [SMALL_STATE(8895)] = 273111, - [SMALL_STATE(8896)] = 273127, - [SMALL_STATE(8897)] = 273143, - [SMALL_STATE(8898)] = 273159, - [SMALL_STATE(8899)] = 273175, - [SMALL_STATE(8900)] = 273193, - [SMALL_STATE(8901)] = 273209, - [SMALL_STATE(8902)] = 273231, - [SMALL_STATE(8903)] = 273251, - [SMALL_STATE(8904)] = 273273, - [SMALL_STATE(8905)] = 273289, - [SMALL_STATE(8906)] = 273309, - [SMALL_STATE(8907)] = 273325, - [SMALL_STATE(8908)] = 273347, - [SMALL_STATE(8909)] = 273363, - [SMALL_STATE(8910)] = 273383, - [SMALL_STATE(8911)] = 273399, - [SMALL_STATE(8912)] = 273415, - [SMALL_STATE(8913)] = 273437, - [SMALL_STATE(8914)] = 273453, - [SMALL_STATE(8915)] = 273471, - [SMALL_STATE(8916)] = 273493, - [SMALL_STATE(8917)] = 273511, - [SMALL_STATE(8918)] = 273527, - [SMALL_STATE(8919)] = 273543, - [SMALL_STATE(8920)] = 273563, - [SMALL_STATE(8921)] = 273579, - [SMALL_STATE(8922)] = 273595, - [SMALL_STATE(8923)] = 273611, - [SMALL_STATE(8924)] = 273629, - [SMALL_STATE(8925)] = 273645, - [SMALL_STATE(8926)] = 273661, - [SMALL_STATE(8927)] = 273683, - [SMALL_STATE(8928)] = 273699, - [SMALL_STATE(8929)] = 273717, - [SMALL_STATE(8930)] = 273733, - [SMALL_STATE(8931)] = 273755, - [SMALL_STATE(8932)] = 273773, - [SMALL_STATE(8933)] = 273793, - [SMALL_STATE(8934)] = 273809, - [SMALL_STATE(8935)] = 273831, - [SMALL_STATE(8936)] = 273847, - [SMALL_STATE(8937)] = 273867, - [SMALL_STATE(8938)] = 273883, - [SMALL_STATE(8939)] = 273903, - [SMALL_STATE(8940)] = 273921, - [SMALL_STATE(8941)] = 273935, - [SMALL_STATE(8942)] = 273949, - [SMALL_STATE(8943)] = 273971, - [SMALL_STATE(8944)] = 273987, - [SMALL_STATE(8945)] = 274003, - [SMALL_STATE(8946)] = 274019, - [SMALL_STATE(8947)] = 274039, - [SMALL_STATE(8948)] = 274055, - [SMALL_STATE(8949)] = 274071, - [SMALL_STATE(8950)] = 274093, - [SMALL_STATE(8951)] = 274107, - [SMALL_STATE(8952)] = 274123, - [SMALL_STATE(8953)] = 274139, - [SMALL_STATE(8954)] = 274161, - [SMALL_STATE(8955)] = 274177, - [SMALL_STATE(8956)] = 274197, - [SMALL_STATE(8957)] = 274213, - [SMALL_STATE(8958)] = 274229, - [SMALL_STATE(8959)] = 274243, - [SMALL_STATE(8960)] = 274265, - [SMALL_STATE(8961)] = 274281, - [SMALL_STATE(8962)] = 274297, - [SMALL_STATE(8963)] = 274315, - [SMALL_STATE(8964)] = 274337, - [SMALL_STATE(8965)] = 274359, - [SMALL_STATE(8966)] = 274379, - [SMALL_STATE(8967)] = 274401, - [SMALL_STATE(8968)] = 274417, - [SMALL_STATE(8969)] = 274433, - [SMALL_STATE(8970)] = 274455, - [SMALL_STATE(8971)] = 274475, - [SMALL_STATE(8972)] = 274497, - [SMALL_STATE(8973)] = 274513, - [SMALL_STATE(8974)] = 274535, - [SMALL_STATE(8975)] = 274551, - [SMALL_STATE(8976)] = 274571, - [SMALL_STATE(8977)] = 274587, - [SMALL_STATE(8978)] = 274609, - [SMALL_STATE(8979)] = 274627, - [SMALL_STATE(8980)] = 274649, - [SMALL_STATE(8981)] = 274669, - [SMALL_STATE(8982)] = 274689, - [SMALL_STATE(8983)] = 274709, - [SMALL_STATE(8984)] = 274731, - [SMALL_STATE(8985)] = 274747, - [SMALL_STATE(8986)] = 274767, - [SMALL_STATE(8987)] = 274783, - [SMALL_STATE(8988)] = 274799, - [SMALL_STATE(8989)] = 274815, - [SMALL_STATE(8990)] = 274837, - [SMALL_STATE(8991)] = 274853, - [SMALL_STATE(8992)] = 274871, - [SMALL_STATE(8993)] = 274887, - [SMALL_STATE(8994)] = 274909, - [SMALL_STATE(8995)] = 274925, - [SMALL_STATE(8996)] = 274945, - [SMALL_STATE(8997)] = 274967, - [SMALL_STATE(8998)] = 274981, - [SMALL_STATE(8999)] = 274997, - [SMALL_STATE(9000)] = 275019, - [SMALL_STATE(9001)] = 275035, - [SMALL_STATE(9002)] = 275055, - [SMALL_STATE(9003)] = 275071, - [SMALL_STATE(9004)] = 275093, - [SMALL_STATE(9005)] = 275109, - [SMALL_STATE(9006)] = 275129, - [SMALL_STATE(9007)] = 275145, - [SMALL_STATE(9008)] = 275161, - [SMALL_STATE(9009)] = 275177, - [SMALL_STATE(9010)] = 275199, - [SMALL_STATE(9011)] = 275221, - [SMALL_STATE(9012)] = 275237, - [SMALL_STATE(9013)] = 275259, - [SMALL_STATE(9014)] = 275281, - [SMALL_STATE(9015)] = 275301, - [SMALL_STATE(9016)] = 275317, - [SMALL_STATE(9017)] = 275333, - [SMALL_STATE(9018)] = 275355, - [SMALL_STATE(9019)] = 275371, - [SMALL_STATE(9020)] = 275387, - [SMALL_STATE(9021)] = 275409, - [SMALL_STATE(9022)] = 275425, - [SMALL_STATE(9023)] = 275445, - [SMALL_STATE(9024)] = 275459, - [SMALL_STATE(9025)] = 275477, - [SMALL_STATE(9026)] = 275499, - [SMALL_STATE(9027)] = 275519, - [SMALL_STATE(9028)] = 275541, - [SMALL_STATE(9029)] = 275557, - [SMALL_STATE(9030)] = 275577, - [SMALL_STATE(9031)] = 275599, - [SMALL_STATE(9032)] = 275615, - [SMALL_STATE(9033)] = 275635, - [SMALL_STATE(9034)] = 275649, - [SMALL_STATE(9035)] = 275665, - [SMALL_STATE(9036)] = 275681, - [SMALL_STATE(9037)] = 275701, - [SMALL_STATE(9038)] = 275721, - [SMALL_STATE(9039)] = 275741, - [SMALL_STATE(9040)] = 275761, - [SMALL_STATE(9041)] = 275781, - [SMALL_STATE(9042)] = 275801, - [SMALL_STATE(9043)] = 275821, - [SMALL_STATE(9044)] = 275841, - [SMALL_STATE(9045)] = 275861, - [SMALL_STATE(9046)] = 275881, - [SMALL_STATE(9047)] = 275901, - [SMALL_STATE(9048)] = 275921, - [SMALL_STATE(9049)] = 275941, - [SMALL_STATE(9050)] = 275961, - [SMALL_STATE(9051)] = 275981, - [SMALL_STATE(9052)] = 276001, - [SMALL_STATE(9053)] = 276021, - [SMALL_STATE(9054)] = 276041, - [SMALL_STATE(9055)] = 276061, - [SMALL_STATE(9056)] = 276081, - [SMALL_STATE(9057)] = 276101, - [SMALL_STATE(9058)] = 276121, - [SMALL_STATE(9059)] = 276141, - [SMALL_STATE(9060)] = 276161, - [SMALL_STATE(9061)] = 276181, - [SMALL_STATE(9062)] = 276201, - [SMALL_STATE(9063)] = 276221, - [SMALL_STATE(9064)] = 276241, - [SMALL_STATE(9065)] = 276261, - [SMALL_STATE(9066)] = 276281, - [SMALL_STATE(9067)] = 276301, - [SMALL_STATE(9068)] = 276321, - [SMALL_STATE(9069)] = 276341, - [SMALL_STATE(9070)] = 276361, - [SMALL_STATE(9071)] = 276381, - [SMALL_STATE(9072)] = 276401, - [SMALL_STATE(9073)] = 276421, - [SMALL_STATE(9074)] = 276441, - [SMALL_STATE(9075)] = 276461, - [SMALL_STATE(9076)] = 276481, - [SMALL_STATE(9077)] = 276501, - [SMALL_STATE(9078)] = 276521, - [SMALL_STATE(9079)] = 276541, - [SMALL_STATE(9080)] = 276561, - [SMALL_STATE(9081)] = 276581, - [SMALL_STATE(9082)] = 276601, - [SMALL_STATE(9083)] = 276621, - [SMALL_STATE(9084)] = 276641, - [SMALL_STATE(9085)] = 276661, - [SMALL_STATE(9086)] = 276677, - [SMALL_STATE(9087)] = 276697, - [SMALL_STATE(9088)] = 276713, - [SMALL_STATE(9089)] = 276729, - [SMALL_STATE(9090)] = 276745, - [SMALL_STATE(9091)] = 276761, - [SMALL_STATE(9092)] = 276781, - [SMALL_STATE(9093)] = 276799, - [SMALL_STATE(9094)] = 276817, - [SMALL_STATE(9095)] = 276837, - [SMALL_STATE(9096)] = 276853, - [SMALL_STATE(9097)] = 276875, - [SMALL_STATE(9098)] = 276891, - [SMALL_STATE(9099)] = 276909, - [SMALL_STATE(9100)] = 276931, - [SMALL_STATE(9101)] = 276947, - [SMALL_STATE(9102)] = 276961, - [SMALL_STATE(9103)] = 276975, - [SMALL_STATE(9104)] = 276993, - [SMALL_STATE(9105)] = 277009, - [SMALL_STATE(9106)] = 277029, - [SMALL_STATE(9107)] = 277047, - [SMALL_STATE(9108)] = 277065, - [SMALL_STATE(9109)] = 277085, - [SMALL_STATE(9110)] = 277103, - [SMALL_STATE(9111)] = 277119, - [SMALL_STATE(9112)] = 277141, - [SMALL_STATE(9113)] = 277163, - [SMALL_STATE(9114)] = 277179, - [SMALL_STATE(9115)] = 277201, - [SMALL_STATE(9116)] = 277221, - [SMALL_STATE(9117)] = 277237, - [SMALL_STATE(9118)] = 277259, - [SMALL_STATE(9119)] = 277281, - [SMALL_STATE(9120)] = 277297, - [SMALL_STATE(9121)] = 277317, - [SMALL_STATE(9122)] = 277337, - [SMALL_STATE(9123)] = 277359, - [SMALL_STATE(9124)] = 277381, - [SMALL_STATE(9125)] = 277397, - [SMALL_STATE(9126)] = 277417, - [SMALL_STATE(9127)] = 277437, - [SMALL_STATE(9128)] = 277457, - [SMALL_STATE(9129)] = 277477, - [SMALL_STATE(9130)] = 277497, - [SMALL_STATE(9131)] = 277513, - [SMALL_STATE(9132)] = 277529, - [SMALL_STATE(9133)] = 277545, - [SMALL_STATE(9134)] = 277563, - [SMALL_STATE(9135)] = 277581, - [SMALL_STATE(9136)] = 277599, - [SMALL_STATE(9137)] = 277617, - [SMALL_STATE(9138)] = 277635, - [SMALL_STATE(9139)] = 277655, - [SMALL_STATE(9140)] = 277671, - [SMALL_STATE(9141)] = 277687, - [SMALL_STATE(9142)] = 277703, - [SMALL_STATE(9143)] = 277719, - [SMALL_STATE(9144)] = 277739, - [SMALL_STATE(9145)] = 277753, - [SMALL_STATE(9146)] = 277775, - [SMALL_STATE(9147)] = 277797, - [SMALL_STATE(9148)] = 277813, - [SMALL_STATE(9149)] = 277829, - [SMALL_STATE(9150)] = 277845, - [SMALL_STATE(9151)] = 277861, - [SMALL_STATE(9152)] = 277877, - [SMALL_STATE(9153)] = 277899, - [SMALL_STATE(9154)] = 277915, - [SMALL_STATE(9155)] = 277937, - [SMALL_STATE(9156)] = 277959, - [SMALL_STATE(9157)] = 277979, - [SMALL_STATE(9158)] = 277995, - [SMALL_STATE(9159)] = 278011, - [SMALL_STATE(9160)] = 278027, - [SMALL_STATE(9161)] = 278047, - [SMALL_STATE(9162)] = 278065, - [SMALL_STATE(9163)] = 278081, - [SMALL_STATE(9164)] = 278103, - [SMALL_STATE(9165)] = 278121, - [SMALL_STATE(9166)] = 278137, - [SMALL_STATE(9167)] = 278157, - [SMALL_STATE(9168)] = 278179, - [SMALL_STATE(9169)] = 278199, - [SMALL_STATE(9170)] = 278215, - [SMALL_STATE(9171)] = 278229, - [SMALL_STATE(9172)] = 278245, - [SMALL_STATE(9173)] = 278261, - [SMALL_STATE(9174)] = 278277, - [SMALL_STATE(9175)] = 278293, - [SMALL_STATE(9176)] = 278309, - [SMALL_STATE(9177)] = 278331, - [SMALL_STATE(9178)] = 278353, - [SMALL_STATE(9179)] = 278369, - [SMALL_STATE(9180)] = 278389, - [SMALL_STATE(9181)] = 278407, - [SMALL_STATE(9182)] = 278423, - [SMALL_STATE(9183)] = 278437, - [SMALL_STATE(9184)] = 278457, - [SMALL_STATE(9185)] = 278473, - [SMALL_STATE(9186)] = 278487, - [SMALL_STATE(9187)] = 278501, - [SMALL_STATE(9188)] = 278515, - [SMALL_STATE(9189)] = 278531, - [SMALL_STATE(9190)] = 278547, - [SMALL_STATE(9191)] = 278563, - [SMALL_STATE(9192)] = 278583, - [SMALL_STATE(9193)] = 278605, - [SMALL_STATE(9194)] = 278621, - [SMALL_STATE(9195)] = 278643, - [SMALL_STATE(9196)] = 278659, - [SMALL_STATE(9197)] = 278679, - [SMALL_STATE(9198)] = 278695, - [SMALL_STATE(9199)] = 278715, - [SMALL_STATE(9200)] = 278731, - [SMALL_STATE(9201)] = 278745, - [SMALL_STATE(9202)] = 278761, - [SMALL_STATE(9203)] = 278775, - [SMALL_STATE(9204)] = 278797, - [SMALL_STATE(9205)] = 278817, - [SMALL_STATE(9206)] = 278833, - [SMALL_STATE(9207)] = 278853, - [SMALL_STATE(9208)] = 278871, - [SMALL_STATE(9209)] = 278893, - [SMALL_STATE(9210)] = 278915, - [SMALL_STATE(9211)] = 278931, - [SMALL_STATE(9212)] = 278947, - [SMALL_STATE(9213)] = 278963, - [SMALL_STATE(9214)] = 278977, - [SMALL_STATE(9215)] = 278993, - [SMALL_STATE(9216)] = 279013, - [SMALL_STATE(9217)] = 279029, - [SMALL_STATE(9218)] = 279043, - [SMALL_STATE(9219)] = 279059, - [SMALL_STATE(9220)] = 279081, - [SMALL_STATE(9221)] = 279097, - [SMALL_STATE(9222)] = 279113, - [SMALL_STATE(9223)] = 279129, - [SMALL_STATE(9224)] = 279149, - [SMALL_STATE(9225)] = 279165, - [SMALL_STATE(9226)] = 279181, - [SMALL_STATE(9227)] = 279203, - [SMALL_STATE(9228)] = 279217, - [SMALL_STATE(9229)] = 279233, - [SMALL_STATE(9230)] = 279247, - [SMALL_STATE(9231)] = 279267, - [SMALL_STATE(9232)] = 279287, - [SMALL_STATE(9233)] = 279305, - [SMALL_STATE(9234)] = 279325, - [SMALL_STATE(9235)] = 279347, - [SMALL_STATE(9236)] = 279363, - [SMALL_STATE(9237)] = 279383, - [SMALL_STATE(9238)] = 279405, - [SMALL_STATE(9239)] = 279427, - [SMALL_STATE(9240)] = 279447, - [SMALL_STATE(9241)] = 279463, - [SMALL_STATE(9242)] = 279479, - [SMALL_STATE(9243)] = 279501, - [SMALL_STATE(9244)] = 279517, - [SMALL_STATE(9245)] = 279539, - [SMALL_STATE(9246)] = 279561, - [SMALL_STATE(9247)] = 279577, - [SMALL_STATE(9248)] = 279593, - [SMALL_STATE(9249)] = 279613, - [SMALL_STATE(9250)] = 279629, - [SMALL_STATE(9251)] = 279643, - [SMALL_STATE(9252)] = 279661, - [SMALL_STATE(9253)] = 279681, - [SMALL_STATE(9254)] = 279699, - [SMALL_STATE(9255)] = 279717, - [SMALL_STATE(9256)] = 279737, - [SMALL_STATE(9257)] = 279753, - [SMALL_STATE(9258)] = 279773, - [SMALL_STATE(9259)] = 279789, - [SMALL_STATE(9260)] = 279811, - [SMALL_STATE(9261)] = 279827, - [SMALL_STATE(9262)] = 279843, - [SMALL_STATE(9263)] = 279859, - [SMALL_STATE(9264)] = 279877, - [SMALL_STATE(9265)] = 279893, - [SMALL_STATE(9266)] = 279907, - [SMALL_STATE(9267)] = 279923, - [SMALL_STATE(9268)] = 279945, - [SMALL_STATE(9269)] = 279961, - [SMALL_STATE(9270)] = 279983, - [SMALL_STATE(9271)] = 280005, - [SMALL_STATE(9272)] = 280021, - [SMALL_STATE(9273)] = 280041, - [SMALL_STATE(9274)] = 280059, - [SMALL_STATE(9275)] = 280079, - [SMALL_STATE(9276)] = 280097, - [SMALL_STATE(9277)] = 280117, - [SMALL_STATE(9278)] = 280133, - [SMALL_STATE(9279)] = 280153, - [SMALL_STATE(9280)] = 280173, - [SMALL_STATE(9281)] = 280189, - [SMALL_STATE(9282)] = 280209, - [SMALL_STATE(9283)] = 280223, - [SMALL_STATE(9284)] = 280237, - [SMALL_STATE(9285)] = 280253, - [SMALL_STATE(9286)] = 280269, - [SMALL_STATE(9287)] = 280289, - [SMALL_STATE(9288)] = 280305, - [SMALL_STATE(9289)] = 280321, - [SMALL_STATE(9290)] = 280341, - [SMALL_STATE(9291)] = 280357, - [SMALL_STATE(9292)] = 280377, - [SMALL_STATE(9293)] = 280391, - [SMALL_STATE(9294)] = 280411, - [SMALL_STATE(9295)] = 280425, - [SMALL_STATE(9296)] = 280441, - [SMALL_STATE(9297)] = 280457, - [SMALL_STATE(9298)] = 280477, - [SMALL_STATE(9299)] = 280495, - [SMALL_STATE(9300)] = 280517, - [SMALL_STATE(9301)] = 280531, - [SMALL_STATE(9302)] = 280551, - [SMALL_STATE(9303)] = 280567, - [SMALL_STATE(9304)] = 280583, - [SMALL_STATE(9305)] = 280601, - [SMALL_STATE(9306)] = 280621, - [SMALL_STATE(9307)] = 280639, - [SMALL_STATE(9308)] = 280655, - [SMALL_STATE(9309)] = 280671, - [SMALL_STATE(9310)] = 280691, - [SMALL_STATE(9311)] = 280713, - [SMALL_STATE(9312)] = 280729, - [SMALL_STATE(9313)] = 280743, - [SMALL_STATE(9314)] = 280763, - [SMALL_STATE(9315)] = 280779, - [SMALL_STATE(9316)] = 280795, - [SMALL_STATE(9317)] = 280811, - [SMALL_STATE(9318)] = 280831, - [SMALL_STATE(9319)] = 280847, - [SMALL_STATE(9320)] = 280863, - [SMALL_STATE(9321)] = 280879, - [SMALL_STATE(9322)] = 280899, - [SMALL_STATE(9323)] = 280915, - [SMALL_STATE(9324)] = 280931, - [SMALL_STATE(9325)] = 280947, - [SMALL_STATE(9326)] = 280967, - [SMALL_STATE(9327)] = 280981, - [SMALL_STATE(9328)] = 281001, - [SMALL_STATE(9329)] = 281015, - [SMALL_STATE(9330)] = 281035, - [SMALL_STATE(9331)] = 281057, - [SMALL_STATE(9332)] = 281079, - [SMALL_STATE(9333)] = 281095, - [SMALL_STATE(9334)] = 281115, - [SMALL_STATE(9335)] = 281131, - [SMALL_STATE(9336)] = 281149, - [SMALL_STATE(9337)] = 281165, - [SMALL_STATE(9338)] = 281185, - [SMALL_STATE(9339)] = 281199, - [SMALL_STATE(9340)] = 281221, - [SMALL_STATE(9341)] = 281237, - [SMALL_STATE(9342)] = 281257, - [SMALL_STATE(9343)] = 281273, - [SMALL_STATE(9344)] = 281293, - [SMALL_STATE(9345)] = 281309, - [SMALL_STATE(9346)] = 281329, - [SMALL_STATE(9347)] = 281347, - [SMALL_STATE(9348)] = 281367, - [SMALL_STATE(9349)] = 281383, - [SMALL_STATE(9350)] = 281403, - [SMALL_STATE(9351)] = 281425, - [SMALL_STATE(9352)] = 281445, - [SMALL_STATE(9353)] = 281461, - [SMALL_STATE(9354)] = 281481, - [SMALL_STATE(9355)] = 281497, - [SMALL_STATE(9356)] = 281511, - [SMALL_STATE(9357)] = 281525, - [SMALL_STATE(9358)] = 281545, - [SMALL_STATE(9359)] = 281561, - [SMALL_STATE(9360)] = 281577, - [SMALL_STATE(9361)] = 281595, - [SMALL_STATE(9362)] = 281615, - [SMALL_STATE(9363)] = 281631, - [SMALL_STATE(9364)] = 281649, - [SMALL_STATE(9365)] = 281669, - [SMALL_STATE(9366)] = 281689, - [SMALL_STATE(9367)] = 281705, - [SMALL_STATE(9368)] = 281721, - [SMALL_STATE(9369)] = 281741, - [SMALL_STATE(9370)] = 281761, - [SMALL_STATE(9371)] = 281775, - [SMALL_STATE(9372)] = 281791, - [SMALL_STATE(9373)] = 281807, - [SMALL_STATE(9374)] = 281827, - [SMALL_STATE(9375)] = 281843, - [SMALL_STATE(9376)] = 281859, - [SMALL_STATE(9377)] = 281879, - [SMALL_STATE(9378)] = 281895, - [SMALL_STATE(9379)] = 281911, - [SMALL_STATE(9380)] = 281931, - [SMALL_STATE(9381)] = 281947, - [SMALL_STATE(9382)] = 281967, - [SMALL_STATE(9383)] = 281983, - [SMALL_STATE(9384)] = 282003, - [SMALL_STATE(9385)] = 282019, - [SMALL_STATE(9386)] = 282039, - [SMALL_STATE(9387)] = 282055, - [SMALL_STATE(9388)] = 282075, - [SMALL_STATE(9389)] = 282097, - [SMALL_STATE(9390)] = 282117, - [SMALL_STATE(9391)] = 282137, - [SMALL_STATE(9392)] = 282157, - [SMALL_STATE(9393)] = 282177, - [SMALL_STATE(9394)] = 282197, - [SMALL_STATE(9395)] = 282217, - [SMALL_STATE(9396)] = 282237, - [SMALL_STATE(9397)] = 282257, - [SMALL_STATE(9398)] = 282277, - [SMALL_STATE(9399)] = 282297, - [SMALL_STATE(9400)] = 282313, - [SMALL_STATE(9401)] = 282329, - [SMALL_STATE(9402)] = 282345, - [SMALL_STATE(9403)] = 282361, - [SMALL_STATE(9404)] = 282377, - [SMALL_STATE(9405)] = 282393, - [SMALL_STATE(9406)] = 282411, - [SMALL_STATE(9407)] = 282433, - [SMALL_STATE(9408)] = 282447, - [SMALL_STATE(9409)] = 282467, - [SMALL_STATE(9410)] = 282483, - [SMALL_STATE(9411)] = 282499, - [SMALL_STATE(9412)] = 282513, - [SMALL_STATE(9413)] = 282529, - [SMALL_STATE(9414)] = 282549, - [SMALL_STATE(9415)] = 282571, - [SMALL_STATE(9416)] = 282591, - [SMALL_STATE(9417)] = 282607, - [SMALL_STATE(9418)] = 282627, - [SMALL_STATE(9419)] = 282647, - [SMALL_STATE(9420)] = 282663, - [SMALL_STATE(9421)] = 282679, - [SMALL_STATE(9422)] = 282693, - [SMALL_STATE(9423)] = 282713, - [SMALL_STATE(9424)] = 282733, - [SMALL_STATE(9425)] = 282753, - [SMALL_STATE(9426)] = 282771, - [SMALL_STATE(9427)] = 282791, - [SMALL_STATE(9428)] = 282807, - [SMALL_STATE(9429)] = 282823, - [SMALL_STATE(9430)] = 282845, - [SMALL_STATE(9431)] = 282863, - [SMALL_STATE(9432)] = 282881, - [SMALL_STATE(9433)] = 282899, - [SMALL_STATE(9434)] = 282915, - [SMALL_STATE(9435)] = 282933, - [SMALL_STATE(9436)] = 282955, - [SMALL_STATE(9437)] = 282977, - [SMALL_STATE(9438)] = 282993, - [SMALL_STATE(9439)] = 283011, - [SMALL_STATE(9440)] = 283029, - [SMALL_STATE(9441)] = 283047, - [SMALL_STATE(9442)] = 283063, - [SMALL_STATE(9443)] = 283079, - [SMALL_STATE(9444)] = 283101, - [SMALL_STATE(9445)] = 283118, - [SMALL_STATE(9446)] = 283137, - [SMALL_STATE(9447)] = 283152, - [SMALL_STATE(9448)] = 283167, - [SMALL_STATE(9449)] = 283184, - [SMALL_STATE(9450)] = 283201, - [SMALL_STATE(9451)] = 283214, - [SMALL_STATE(9452)] = 283227, - [SMALL_STATE(9453)] = 283244, - [SMALL_STATE(9454)] = 283261, - [SMALL_STATE(9455)] = 283276, - [SMALL_STATE(9456)] = 283291, - [SMALL_STATE(9457)] = 283306, - [SMALL_STATE(9458)] = 283323, - [SMALL_STATE(9459)] = 283342, - [SMALL_STATE(9460)] = 283357, - [SMALL_STATE(9461)] = 283376, - [SMALL_STATE(9462)] = 283391, - [SMALL_STATE(9463)] = 283410, - [SMALL_STATE(9464)] = 283429, - [SMALL_STATE(9465)] = 283446, - [SMALL_STATE(9466)] = 283461, - [SMALL_STATE(9467)] = 283480, - [SMALL_STATE(9468)] = 283499, - [SMALL_STATE(9469)] = 283518, - [SMALL_STATE(9470)] = 283531, - [SMALL_STATE(9471)] = 283546, - [SMALL_STATE(9472)] = 283565, - [SMALL_STATE(9473)] = 283582, - [SMALL_STATE(9474)] = 283601, - [SMALL_STATE(9475)] = 283616, - [SMALL_STATE(9476)] = 283633, - [SMALL_STATE(9477)] = 283650, - [SMALL_STATE(9478)] = 283665, - [SMALL_STATE(9479)] = 283684, - [SMALL_STATE(9480)] = 283701, - [SMALL_STATE(9481)] = 283716, - [SMALL_STATE(9482)] = 283735, - [SMALL_STATE(9483)] = 283752, - [SMALL_STATE(9484)] = 283767, - [SMALL_STATE(9485)] = 283782, - [SMALL_STATE(9486)] = 283797, - [SMALL_STATE(9487)] = 283816, - [SMALL_STATE(9488)] = 283831, - [SMALL_STATE(9489)] = 283846, - [SMALL_STATE(9490)] = 283865, - [SMALL_STATE(9491)] = 283882, - [SMALL_STATE(9492)] = 283901, - [SMALL_STATE(9493)] = 283914, - [SMALL_STATE(9494)] = 283931, - [SMALL_STATE(9495)] = 283948, - [SMALL_STATE(9496)] = 283965, - [SMALL_STATE(9497)] = 283980, - [SMALL_STATE(9498)] = 283999, - [SMALL_STATE(9499)] = 284018, - [SMALL_STATE(9500)] = 284037, - [SMALL_STATE(9501)] = 284052, - [SMALL_STATE(9502)] = 284067, - [SMALL_STATE(9503)] = 284084, - [SMALL_STATE(9504)] = 284099, - [SMALL_STATE(9505)] = 284114, - [SMALL_STATE(9506)] = 284133, - [SMALL_STATE(9507)] = 284152, - [SMALL_STATE(9508)] = 284171, - [SMALL_STATE(9509)] = 284184, - [SMALL_STATE(9510)] = 284203, - [SMALL_STATE(9511)] = 284222, - [SMALL_STATE(9512)] = 284239, - [SMALL_STATE(9513)] = 284258, - [SMALL_STATE(9514)] = 284275, - [SMALL_STATE(9515)] = 284294, - [SMALL_STATE(9516)] = 284309, - [SMALL_STATE(9517)] = 284328, - [SMALL_STATE(9518)] = 284347, - [SMALL_STATE(9519)] = 284366, - [SMALL_STATE(9520)] = 284385, - [SMALL_STATE(9521)] = 284404, - [SMALL_STATE(9522)] = 284421, - [SMALL_STATE(9523)] = 284440, - [SMALL_STATE(9524)] = 284459, - [SMALL_STATE(9525)] = 284474, - [SMALL_STATE(9526)] = 284489, - [SMALL_STATE(9527)] = 284504, - [SMALL_STATE(9528)] = 284517, - [SMALL_STATE(9529)] = 284534, - [SMALL_STATE(9530)] = 284549, - [SMALL_STATE(9531)] = 284566, - [SMALL_STATE(9532)] = 284581, - [SMALL_STATE(9533)] = 284600, - [SMALL_STATE(9534)] = 284615, - [SMALL_STATE(9535)] = 284632, - [SMALL_STATE(9536)] = 284651, - [SMALL_STATE(9537)] = 284670, - [SMALL_STATE(9538)] = 284689, - [SMALL_STATE(9539)] = 284708, - [SMALL_STATE(9540)] = 284723, - [SMALL_STATE(9541)] = 284738, - [SMALL_STATE(9542)] = 284753, - [SMALL_STATE(9543)] = 284768, - [SMALL_STATE(9544)] = 284781, - [SMALL_STATE(9545)] = 284798, - [SMALL_STATE(9546)] = 284811, - [SMALL_STATE(9547)] = 284828, - [SMALL_STATE(9548)] = 284845, - [SMALL_STATE(9549)] = 284862, - [SMALL_STATE(9550)] = 284881, - [SMALL_STATE(9551)] = 284900, - [SMALL_STATE(9552)] = 284915, - [SMALL_STATE(9553)] = 284928, - [SMALL_STATE(9554)] = 284947, - [SMALL_STATE(9555)] = 284966, - [SMALL_STATE(9556)] = 284983, - [SMALL_STATE(9557)] = 285000, - [SMALL_STATE(9558)] = 285017, - [SMALL_STATE(9559)] = 285030, - [SMALL_STATE(9560)] = 285047, - [SMALL_STATE(9561)] = 285064, - [SMALL_STATE(9562)] = 285083, - [SMALL_STATE(9563)] = 285100, - [SMALL_STATE(9564)] = 285119, - [SMALL_STATE(9565)] = 285138, - [SMALL_STATE(9566)] = 285157, - [SMALL_STATE(9567)] = 285176, - [SMALL_STATE(9568)] = 285191, - [SMALL_STATE(9569)] = 285206, - [SMALL_STATE(9570)] = 285221, - [SMALL_STATE(9571)] = 285238, - [SMALL_STATE(9572)] = 285251, - [SMALL_STATE(9573)] = 285268, - [SMALL_STATE(9574)] = 285283, - [SMALL_STATE(9575)] = 285300, - [SMALL_STATE(9576)] = 285319, - [SMALL_STATE(9577)] = 285334, - [SMALL_STATE(9578)] = 285353, - [SMALL_STATE(9579)] = 285372, - [SMALL_STATE(9580)] = 285387, - [SMALL_STATE(9581)] = 285406, - [SMALL_STATE(9582)] = 285421, - [SMALL_STATE(9583)] = 285436, - [SMALL_STATE(9584)] = 285451, - [SMALL_STATE(9585)] = 285470, - [SMALL_STATE(9586)] = 285489, - [SMALL_STATE(9587)] = 285504, - [SMALL_STATE(9588)] = 285523, - [SMALL_STATE(9589)] = 285538, - [SMALL_STATE(9590)] = 285557, - [SMALL_STATE(9591)] = 285570, - [SMALL_STATE(9592)] = 285587, - [SMALL_STATE(9593)] = 285602, - [SMALL_STATE(9594)] = 285617, - [SMALL_STATE(9595)] = 285634, - [SMALL_STATE(9596)] = 285649, - [SMALL_STATE(9597)] = 285664, - [SMALL_STATE(9598)] = 285679, - [SMALL_STATE(9599)] = 285698, - [SMALL_STATE(9600)] = 285713, - [SMALL_STATE(9601)] = 285732, - [SMALL_STATE(9602)] = 285747, - [SMALL_STATE(9603)] = 285762, - [SMALL_STATE(9604)] = 285781, - [SMALL_STATE(9605)] = 285800, - [SMALL_STATE(9606)] = 285819, - [SMALL_STATE(9607)] = 285834, - [SMALL_STATE(9608)] = 285849, - [SMALL_STATE(9609)] = 285862, - [SMALL_STATE(9610)] = 285877, - [SMALL_STATE(9611)] = 285894, - [SMALL_STATE(9612)] = 285913, - [SMALL_STATE(9613)] = 285932, - [SMALL_STATE(9614)] = 285947, - [SMALL_STATE(9615)] = 285964, - [SMALL_STATE(9616)] = 285979, - [SMALL_STATE(9617)] = 285998, - [SMALL_STATE(9618)] = 286017, - [SMALL_STATE(9619)] = 286036, - [SMALL_STATE(9620)] = 286051, - [SMALL_STATE(9621)] = 286066, - [SMALL_STATE(9622)] = 286081, - [SMALL_STATE(9623)] = 286096, - [SMALL_STATE(9624)] = 286113, - [SMALL_STATE(9625)] = 286128, - [SMALL_STATE(9626)] = 286143, - [SMALL_STATE(9627)] = 286158, - [SMALL_STATE(9628)] = 286173, - [SMALL_STATE(9629)] = 286192, - [SMALL_STATE(9630)] = 286205, - [SMALL_STATE(9631)] = 286224, - [SMALL_STATE(9632)] = 286239, - [SMALL_STATE(9633)] = 286256, - [SMALL_STATE(9634)] = 286273, - [SMALL_STATE(9635)] = 286292, - [SMALL_STATE(9636)] = 286311, - [SMALL_STATE(9637)] = 286326, - [SMALL_STATE(9638)] = 286341, - [SMALL_STATE(9639)] = 286356, - [SMALL_STATE(9640)] = 286371, - [SMALL_STATE(9641)] = 286390, - [SMALL_STATE(9642)] = 286403, - [SMALL_STATE(9643)] = 286420, - [SMALL_STATE(9644)] = 286435, - [SMALL_STATE(9645)] = 286450, - [SMALL_STATE(9646)] = 286465, - [SMALL_STATE(9647)] = 286482, - [SMALL_STATE(9648)] = 286497, - [SMALL_STATE(9649)] = 286512, - [SMALL_STATE(9650)] = 286531, - [SMALL_STATE(9651)] = 286550, - [SMALL_STATE(9652)] = 286565, - [SMALL_STATE(9653)] = 286582, - [SMALL_STATE(9654)] = 286597, - [SMALL_STATE(9655)] = 286612, - [SMALL_STATE(9656)] = 286627, - [SMALL_STATE(9657)] = 286642, - [SMALL_STATE(9658)] = 286657, - [SMALL_STATE(9659)] = 286672, - [SMALL_STATE(9660)] = 286687, - [SMALL_STATE(9661)] = 286702, - [SMALL_STATE(9662)] = 286717, - [SMALL_STATE(9663)] = 286730, - [SMALL_STATE(9664)] = 286745, - [SMALL_STATE(9665)] = 286762, - [SMALL_STATE(9666)] = 286777, - [SMALL_STATE(9667)] = 286792, - [SMALL_STATE(9668)] = 286809, - [SMALL_STATE(9669)] = 286824, - [SMALL_STATE(9670)] = 286839, - [SMALL_STATE(9671)] = 286858, - [SMALL_STATE(9672)] = 286877, - [SMALL_STATE(9673)] = 286892, - [SMALL_STATE(9674)] = 286911, - [SMALL_STATE(9675)] = 286926, - [SMALL_STATE(9676)] = 286941, - [SMALL_STATE(9677)] = 286956, - [SMALL_STATE(9678)] = 286971, - [SMALL_STATE(9679)] = 286990, - [SMALL_STATE(9680)] = 287005, - [SMALL_STATE(9681)] = 287020, - [SMALL_STATE(9682)] = 287033, - [SMALL_STATE(9683)] = 287048, - [SMALL_STATE(9684)] = 287063, - [SMALL_STATE(9685)] = 287080, - [SMALL_STATE(9686)] = 287095, - [SMALL_STATE(9687)] = 287112, - [SMALL_STATE(9688)] = 287131, - [SMALL_STATE(9689)] = 287150, - [SMALL_STATE(9690)] = 287165, - [SMALL_STATE(9691)] = 287184, - [SMALL_STATE(9692)] = 287203, - [SMALL_STATE(9693)] = 287222, - [SMALL_STATE(9694)] = 287237, - [SMALL_STATE(9695)] = 287250, - [SMALL_STATE(9696)] = 287269, - [SMALL_STATE(9697)] = 287286, - [SMALL_STATE(9698)] = 287301, - [SMALL_STATE(9699)] = 287318, - [SMALL_STATE(9700)] = 287333, - [SMALL_STATE(9701)] = 287352, - [SMALL_STATE(9702)] = 287371, - [SMALL_STATE(9703)] = 287390, - [SMALL_STATE(9704)] = 287409, - [SMALL_STATE(9705)] = 287424, - [SMALL_STATE(9706)] = 287443, - [SMALL_STATE(9707)] = 287460, - [SMALL_STATE(9708)] = 287477, - [SMALL_STATE(9709)] = 287494, - [SMALL_STATE(9710)] = 287507, - [SMALL_STATE(9711)] = 287524, - [SMALL_STATE(9712)] = 287541, - [SMALL_STATE(9713)] = 287560, - [SMALL_STATE(9714)] = 287575, - [SMALL_STATE(9715)] = 287594, - [SMALL_STATE(9716)] = 287613, - [SMALL_STATE(9717)] = 287632, - [SMALL_STATE(9718)] = 287651, - [SMALL_STATE(9719)] = 287670, - [SMALL_STATE(9720)] = 287687, - [SMALL_STATE(9721)] = 287702, - [SMALL_STATE(9722)] = 287715, - [SMALL_STATE(9723)] = 287732, - [SMALL_STATE(9724)] = 287751, - [SMALL_STATE(9725)] = 287766, - [SMALL_STATE(9726)] = 287785, - [SMALL_STATE(9727)] = 287802, - [SMALL_STATE(9728)] = 287815, - [SMALL_STATE(9729)] = 287832, - [SMALL_STATE(9730)] = 287849, - [SMALL_STATE(9731)] = 287866, - [SMALL_STATE(9732)] = 287885, - [SMALL_STATE(9733)] = 287904, - [SMALL_STATE(9734)] = 287919, - [SMALL_STATE(9735)] = 287936, - [SMALL_STATE(9736)] = 287949, - [SMALL_STATE(9737)] = 287966, - [SMALL_STATE(9738)] = 287985, - [SMALL_STATE(9739)] = 288002, - [SMALL_STATE(9740)] = 288017, - [SMALL_STATE(9741)] = 288036, - [SMALL_STATE(9742)] = 288055, - [SMALL_STATE(9743)] = 288068, - [SMALL_STATE(9744)] = 288085, - [SMALL_STATE(9745)] = 288102, - [SMALL_STATE(9746)] = 288117, - [SMALL_STATE(9747)] = 288132, - [SMALL_STATE(9748)] = 288151, - [SMALL_STATE(9749)] = 288170, - [SMALL_STATE(9750)] = 288189, - [SMALL_STATE(9751)] = 288202, - [SMALL_STATE(9752)] = 288217, - [SMALL_STATE(9753)] = 288234, - [SMALL_STATE(9754)] = 288249, - [SMALL_STATE(9755)] = 288264, - [SMALL_STATE(9756)] = 288281, - [SMALL_STATE(9757)] = 288300, - [SMALL_STATE(9758)] = 288319, - [SMALL_STATE(9759)] = 288332, - [SMALL_STATE(9760)] = 288349, - [SMALL_STATE(9761)] = 288366, - [SMALL_STATE(9762)] = 288383, - [SMALL_STATE(9763)] = 288402, - [SMALL_STATE(9764)] = 288421, - [SMALL_STATE(9765)] = 288434, - [SMALL_STATE(9766)] = 288451, - [SMALL_STATE(9767)] = 288468, - [SMALL_STATE(9768)] = 288485, - [SMALL_STATE(9769)] = 288504, - [SMALL_STATE(9770)] = 288523, - [SMALL_STATE(9771)] = 288542, - [SMALL_STATE(9772)] = 288561, - [SMALL_STATE(9773)] = 288580, - [SMALL_STATE(9774)] = 288599, - [SMALL_STATE(9775)] = 288612, - [SMALL_STATE(9776)] = 288627, - [SMALL_STATE(9777)] = 288644, - [SMALL_STATE(9778)] = 288659, - [SMALL_STATE(9779)] = 288678, - [SMALL_STATE(9780)] = 288697, - [SMALL_STATE(9781)] = 288714, - [SMALL_STATE(9782)] = 288729, - [SMALL_STATE(9783)] = 288746, - [SMALL_STATE(9784)] = 288765, - [SMALL_STATE(9785)] = 288784, - [SMALL_STATE(9786)] = 288799, - [SMALL_STATE(9787)] = 288812, - [SMALL_STATE(9788)] = 288827, - [SMALL_STATE(9789)] = 288844, - [SMALL_STATE(9790)] = 288859, - [SMALL_STATE(9791)] = 288874, - [SMALL_STATE(9792)] = 288891, - [SMALL_STATE(9793)] = 288910, - [SMALL_STATE(9794)] = 288927, - [SMALL_STATE(9795)] = 288942, - [SMALL_STATE(9796)] = 288961, - [SMALL_STATE(9797)] = 288980, - [SMALL_STATE(9798)] = 288993, - [SMALL_STATE(9799)] = 289008, - [SMALL_STATE(9800)] = 289025, - [SMALL_STATE(9801)] = 289044, - [SMALL_STATE(9802)] = 289063, - [SMALL_STATE(9803)] = 289080, - [SMALL_STATE(9804)] = 289095, - [SMALL_STATE(9805)] = 289110, - [SMALL_STATE(9806)] = 289129, - [SMALL_STATE(9807)] = 289148, - [SMALL_STATE(9808)] = 289163, - [SMALL_STATE(9809)] = 289176, - [SMALL_STATE(9810)] = 289193, - [SMALL_STATE(9811)] = 289208, - [SMALL_STATE(9812)] = 289223, - [SMALL_STATE(9813)] = 289240, - [SMALL_STATE(9814)] = 289259, - [SMALL_STATE(9815)] = 289278, - [SMALL_STATE(9816)] = 289291, - [SMALL_STATE(9817)] = 289308, - [SMALL_STATE(9818)] = 289325, - [SMALL_STATE(9819)] = 289344, - [SMALL_STATE(9820)] = 289363, - [SMALL_STATE(9821)] = 289382, - [SMALL_STATE(9822)] = 289395, - [SMALL_STATE(9823)] = 289412, - [SMALL_STATE(9824)] = 289429, - [SMALL_STATE(9825)] = 289448, - [SMALL_STATE(9826)] = 289467, - [SMALL_STATE(9827)] = 289480, - [SMALL_STATE(9828)] = 289497, - [SMALL_STATE(9829)] = 289514, - [SMALL_STATE(9830)] = 289529, - [SMALL_STATE(9831)] = 289542, - [SMALL_STATE(9832)] = 289559, - [SMALL_STATE(9833)] = 289576, - [SMALL_STATE(9834)] = 289589, - [SMALL_STATE(9835)] = 289606, - [SMALL_STATE(9836)] = 289623, - [SMALL_STATE(9837)] = 289636, - [SMALL_STATE(9838)] = 289653, - [SMALL_STATE(9839)] = 289670, - [SMALL_STATE(9840)] = 289683, - [SMALL_STATE(9841)] = 289700, - [SMALL_STATE(9842)] = 289717, - [SMALL_STATE(9843)] = 289730, - [SMALL_STATE(9844)] = 289747, - [SMALL_STATE(9845)] = 289764, - [SMALL_STATE(9846)] = 289777, - [SMALL_STATE(9847)] = 289790, - [SMALL_STATE(9848)] = 289807, - [SMALL_STATE(9849)] = 289824, - [SMALL_STATE(9850)] = 289837, - [SMALL_STATE(9851)] = 289854, - [SMALL_STATE(9852)] = 289871, - [SMALL_STATE(9853)] = 289884, - [SMALL_STATE(9854)] = 289901, - [SMALL_STATE(9855)] = 289918, - [SMALL_STATE(9856)] = 289931, - [SMALL_STATE(9857)] = 289948, - [SMALL_STATE(9858)] = 289965, - [SMALL_STATE(9859)] = 289978, - [SMALL_STATE(9860)] = 289995, - [SMALL_STATE(9861)] = 290012, - [SMALL_STATE(9862)] = 290025, - [SMALL_STATE(9863)] = 290042, - [SMALL_STATE(9864)] = 290059, - [SMALL_STATE(9865)] = 290076, - [SMALL_STATE(9866)] = 290089, - [SMALL_STATE(9867)] = 290106, - [SMALL_STATE(9868)] = 290123, - [SMALL_STATE(9869)] = 290136, - [SMALL_STATE(9870)] = 290153, - [SMALL_STATE(9871)] = 290170, - [SMALL_STATE(9872)] = 290185, - [SMALL_STATE(9873)] = 290198, - [SMALL_STATE(9874)] = 290215, - [SMALL_STATE(9875)] = 290232, - [SMALL_STATE(9876)] = 290247, - [SMALL_STATE(9877)] = 290260, - [SMALL_STATE(9878)] = 290277, - [SMALL_STATE(9879)] = 290294, - [SMALL_STATE(9880)] = 290307, - [SMALL_STATE(9881)] = 290324, - [SMALL_STATE(9882)] = 290341, - [SMALL_STATE(9883)] = 290354, - [SMALL_STATE(9884)] = 290371, - [SMALL_STATE(9885)] = 290388, - [SMALL_STATE(9886)] = 290401, - [SMALL_STATE(9887)] = 290418, - [SMALL_STATE(9888)] = 290435, - [SMALL_STATE(9889)] = 290448, - [SMALL_STATE(9890)] = 290465, - [SMALL_STATE(9891)] = 290482, - [SMALL_STATE(9892)] = 290495, - [SMALL_STATE(9893)] = 290512, - [SMALL_STATE(9894)] = 290529, - [SMALL_STATE(9895)] = 290542, - [SMALL_STATE(9896)] = 290559, - [SMALL_STATE(9897)] = 290576, - [SMALL_STATE(9898)] = 290589, - [SMALL_STATE(9899)] = 290606, - [SMALL_STATE(9900)] = 290623, - [SMALL_STATE(9901)] = 290636, - [SMALL_STATE(9902)] = 290653, - [SMALL_STATE(9903)] = 290670, - [SMALL_STATE(9904)] = 290685, - [SMALL_STATE(9905)] = 290698, - [SMALL_STATE(9906)] = 290715, - [SMALL_STATE(9907)] = 290732, - [SMALL_STATE(9908)] = 290745, - [SMALL_STATE(9909)] = 290762, - [SMALL_STATE(9910)] = 290779, - [SMALL_STATE(9911)] = 290794, - [SMALL_STATE(9912)] = 290807, - [SMALL_STATE(9913)] = 290824, - [SMALL_STATE(9914)] = 290841, - [SMALL_STATE(9915)] = 290854, - [SMALL_STATE(9916)] = 290871, - [SMALL_STATE(9917)] = 290888, - [SMALL_STATE(9918)] = 290905, - [SMALL_STATE(9919)] = 290918, - [SMALL_STATE(9920)] = 290935, - [SMALL_STATE(9921)] = 290952, - [SMALL_STATE(9922)] = 290967, - [SMALL_STATE(9923)] = 290980, - [SMALL_STATE(9924)] = 290997, - [SMALL_STATE(9925)] = 291014, - [SMALL_STATE(9926)] = 291029, - [SMALL_STATE(9927)] = 291042, - [SMALL_STATE(9928)] = 291059, - [SMALL_STATE(9929)] = 291076, - [SMALL_STATE(9930)] = 291089, - [SMALL_STATE(9931)] = 291106, - [SMALL_STATE(9932)] = 291123, - [SMALL_STATE(9933)] = 291136, - [SMALL_STATE(9934)] = 291153, - [SMALL_STATE(9935)] = 291170, - [SMALL_STATE(9936)] = 291183, - [SMALL_STATE(9937)] = 291200, - [SMALL_STATE(9938)] = 291217, - [SMALL_STATE(9939)] = 291230, - [SMALL_STATE(9940)] = 291247, - [SMALL_STATE(9941)] = 291264, - [SMALL_STATE(9942)] = 291277, - [SMALL_STATE(9943)] = 291294, - [SMALL_STATE(9944)] = 291311, - [SMALL_STATE(9945)] = 291324, - [SMALL_STATE(9946)] = 291341, - [SMALL_STATE(9947)] = 291358, - [SMALL_STATE(9948)] = 291377, - [SMALL_STATE(9949)] = 291390, - [SMALL_STATE(9950)] = 291407, - [SMALL_STATE(9951)] = 291424, - [SMALL_STATE(9952)] = 291437, - [SMALL_STATE(9953)] = 291454, - [SMALL_STATE(9954)] = 291471, - [SMALL_STATE(9955)] = 291484, - [SMALL_STATE(9956)] = 291501, - [SMALL_STATE(9957)] = 291518, - [SMALL_STATE(9958)] = 291531, - [SMALL_STATE(9959)] = 291548, - [SMALL_STATE(9960)] = 291565, - [SMALL_STATE(9961)] = 291578, - [SMALL_STATE(9962)] = 291595, - [SMALL_STATE(9963)] = 291612, - [SMALL_STATE(9964)] = 291625, - [SMALL_STATE(9965)] = 291642, - [SMALL_STATE(9966)] = 291659, - [SMALL_STATE(9967)] = 291672, - [SMALL_STATE(9968)] = 291689, - [SMALL_STATE(9969)] = 291706, - [SMALL_STATE(9970)] = 291719, - [SMALL_STATE(9971)] = 291736, - [SMALL_STATE(9972)] = 291753, - [SMALL_STATE(9973)] = 291766, - [SMALL_STATE(9974)] = 291783, - [SMALL_STATE(9975)] = 291800, - [SMALL_STATE(9976)] = 291813, - [SMALL_STATE(9977)] = 291830, - [SMALL_STATE(9978)] = 291847, - [SMALL_STATE(9979)] = 291860, - [SMALL_STATE(9980)] = 291877, - [SMALL_STATE(9981)] = 291894, - [SMALL_STATE(9982)] = 291909, - [SMALL_STATE(9983)] = 291926, - [SMALL_STATE(9984)] = 291943, - [SMALL_STATE(9985)] = 291962, - [SMALL_STATE(9986)] = 291979, - [SMALL_STATE(9987)] = 291996, - [SMALL_STATE(9988)] = 292013, - [SMALL_STATE(9989)] = 292030, - [SMALL_STATE(9990)] = 292047, - [SMALL_STATE(9991)] = 292064, - [SMALL_STATE(9992)] = 292081, - [SMALL_STATE(9993)] = 292098, - [SMALL_STATE(9994)] = 292115, - [SMALL_STATE(9995)] = 292132, - [SMALL_STATE(9996)] = 292149, - [SMALL_STATE(9997)] = 292166, - [SMALL_STATE(9998)] = 292183, - [SMALL_STATE(9999)] = 292200, - [SMALL_STATE(10000)] = 292217, - [SMALL_STATE(10001)] = 292234, - [SMALL_STATE(10002)] = 292251, - [SMALL_STATE(10003)] = 292268, - [SMALL_STATE(10004)] = 292285, - [SMALL_STATE(10005)] = 292302, - [SMALL_STATE(10006)] = 292319, - [SMALL_STATE(10007)] = 292336, - [SMALL_STATE(10008)] = 292353, - [SMALL_STATE(10009)] = 292370, - [SMALL_STATE(10010)] = 292387, - [SMALL_STATE(10011)] = 292404, - [SMALL_STATE(10012)] = 292421, - [SMALL_STATE(10013)] = 292438, - [SMALL_STATE(10014)] = 292455, - [SMALL_STATE(10015)] = 292472, - [SMALL_STATE(10016)] = 292489, - [SMALL_STATE(10017)] = 292506, - [SMALL_STATE(10018)] = 292523, - [SMALL_STATE(10019)] = 292540, - [SMALL_STATE(10020)] = 292557, - [SMALL_STATE(10021)] = 292574, - [SMALL_STATE(10022)] = 292591, - [SMALL_STATE(10023)] = 292608, - [SMALL_STATE(10024)] = 292623, - [SMALL_STATE(10025)] = 292638, - [SMALL_STATE(10026)] = 292653, - [SMALL_STATE(10027)] = 292672, - [SMALL_STATE(10028)] = 292687, - [SMALL_STATE(10029)] = 292702, - [SMALL_STATE(10030)] = 292717, - [SMALL_STATE(10031)] = 292732, - [SMALL_STATE(10032)] = 292747, - [SMALL_STATE(10033)] = 292762, - [SMALL_STATE(10034)] = 292777, - [SMALL_STATE(10035)] = 292792, - [SMALL_STATE(10036)] = 292807, - [SMALL_STATE(10037)] = 292822, - [SMALL_STATE(10038)] = 292839, - [SMALL_STATE(10039)] = 292856, - [SMALL_STATE(10040)] = 292873, - [SMALL_STATE(10041)] = 292888, - [SMALL_STATE(10042)] = 292903, - [SMALL_STATE(10043)] = 292918, - [SMALL_STATE(10044)] = 292933, - [SMALL_STATE(10045)] = 292948, - [SMALL_STATE(10046)] = 292963, - [SMALL_STATE(10047)] = 292978, - [SMALL_STATE(10048)] = 292991, - [SMALL_STATE(10049)] = 293006, - [SMALL_STATE(10050)] = 293021, - [SMALL_STATE(10051)] = 293036, - [SMALL_STATE(10052)] = 293053, - [SMALL_STATE(10053)] = 293068, - [SMALL_STATE(10054)] = 293083, - [SMALL_STATE(10055)] = 293098, - [SMALL_STATE(10056)] = 293117, - [SMALL_STATE(10057)] = 293136, - [SMALL_STATE(10058)] = 293151, - [SMALL_STATE(10059)] = 293168, - [SMALL_STATE(10060)] = 293187, - [SMALL_STATE(10061)] = 293202, - [SMALL_STATE(10062)] = 293217, - [SMALL_STATE(10063)] = 293232, - [SMALL_STATE(10064)] = 293251, - [SMALL_STATE(10065)] = 293266, - [SMALL_STATE(10066)] = 293281, - [SMALL_STATE(10067)] = 293300, - [SMALL_STATE(10068)] = 293317, - [SMALL_STATE(10069)] = 293332, - [SMALL_STATE(10070)] = 293347, - [SMALL_STATE(10071)] = 293364, - [SMALL_STATE(10072)] = 293379, - [SMALL_STATE(10073)] = 293394, - [SMALL_STATE(10074)] = 293409, - [SMALL_STATE(10075)] = 293424, - [SMALL_STATE(10076)] = 293439, - [SMALL_STATE(10077)] = 293454, - [SMALL_STATE(10078)] = 293469, - [SMALL_STATE(10079)] = 293484, - [SMALL_STATE(10080)] = 293499, - [SMALL_STATE(10081)] = 293514, - [SMALL_STATE(10082)] = 293529, - [SMALL_STATE(10083)] = 293544, - [SMALL_STATE(10084)] = 293559, - [SMALL_STATE(10085)] = 293574, - [SMALL_STATE(10086)] = 293589, - [SMALL_STATE(10087)] = 293604, - [SMALL_STATE(10088)] = 293619, - [SMALL_STATE(10089)] = 293634, - [SMALL_STATE(10090)] = 293647, - [SMALL_STATE(10091)] = 293662, - [SMALL_STATE(10092)] = 293677, - [SMALL_STATE(10093)] = 293692, - [SMALL_STATE(10094)] = 293707, - [SMALL_STATE(10095)] = 293724, - [SMALL_STATE(10096)] = 293739, - [SMALL_STATE(10097)] = 293754, - [SMALL_STATE(10098)] = 293769, - [SMALL_STATE(10099)] = 293784, - [SMALL_STATE(10100)] = 293801, - [SMALL_STATE(10101)] = 293816, - [SMALL_STATE(10102)] = 293831, - [SMALL_STATE(10103)] = 293846, - [SMALL_STATE(10104)] = 293865, - [SMALL_STATE(10105)] = 293880, - [SMALL_STATE(10106)] = 293895, - [SMALL_STATE(10107)] = 293914, - [SMALL_STATE(10108)] = 293929, - [SMALL_STATE(10109)] = 293944, - [SMALL_STATE(10110)] = 293959, - [SMALL_STATE(10111)] = 293974, - [SMALL_STATE(10112)] = 293989, - [SMALL_STATE(10113)] = 294004, - [SMALL_STATE(10114)] = 294019, - [SMALL_STATE(10115)] = 294036, - [SMALL_STATE(10116)] = 294051, - [SMALL_STATE(10117)] = 294066, - [SMALL_STATE(10118)] = 294081, - [SMALL_STATE(10119)] = 294096, - [SMALL_STATE(10120)] = 294115, - [SMALL_STATE(10121)] = 294134, - [SMALL_STATE(10122)] = 294153, - [SMALL_STATE(10123)] = 294170, - [SMALL_STATE(10124)] = 294187, - [SMALL_STATE(10125)] = 294202, - [SMALL_STATE(10126)] = 294219, - [SMALL_STATE(10127)] = 294232, - [SMALL_STATE(10128)] = 294247, - [SMALL_STATE(10129)] = 294262, - [SMALL_STATE(10130)] = 294277, - [SMALL_STATE(10131)] = 294294, - [SMALL_STATE(10132)] = 294309, - [SMALL_STATE(10133)] = 294324, - [SMALL_STATE(10134)] = 294339, - [SMALL_STATE(10135)] = 294356, - [SMALL_STATE(10136)] = 294371, - [SMALL_STATE(10137)] = 294386, - [SMALL_STATE(10138)] = 294401, - [SMALL_STATE(10139)] = 294420, - [SMALL_STATE(10140)] = 294435, - [SMALL_STATE(10141)] = 294454, - [SMALL_STATE(10142)] = 294469, - [SMALL_STATE(10143)] = 294484, - [SMALL_STATE(10144)] = 294499, - [SMALL_STATE(10145)] = 294514, - [SMALL_STATE(10146)] = 294529, - [SMALL_STATE(10147)] = 294544, - [SMALL_STATE(10148)] = 294559, - [SMALL_STATE(10149)] = 294574, - [SMALL_STATE(10150)] = 294589, - [SMALL_STATE(10151)] = 294604, - [SMALL_STATE(10152)] = 294619, - [SMALL_STATE(10153)] = 294634, - [SMALL_STATE(10154)] = 294647, - [SMALL_STATE(10155)] = 294662, - [SMALL_STATE(10156)] = 294677, - [SMALL_STATE(10157)] = 294694, - [SMALL_STATE(10158)] = 294711, - [SMALL_STATE(10159)] = 294726, - [SMALL_STATE(10160)] = 294745, - [SMALL_STATE(10161)] = 294760, - [SMALL_STATE(10162)] = 294775, - [SMALL_STATE(10163)] = 294794, - [SMALL_STATE(10164)] = 294809, - [SMALL_STATE(10165)] = 294824, - [SMALL_STATE(10166)] = 294839, - [SMALL_STATE(10167)] = 294854, - [SMALL_STATE(10168)] = 294869, - [SMALL_STATE(10169)] = 294886, - [SMALL_STATE(10170)] = 294899, - [SMALL_STATE(10171)] = 294914, - [SMALL_STATE(10172)] = 294929, - [SMALL_STATE(10173)] = 294948, - [SMALL_STATE(10174)] = 294963, - [SMALL_STATE(10175)] = 294980, - [SMALL_STATE(10176)] = 294995, - [SMALL_STATE(10177)] = 295012, - [SMALL_STATE(10178)] = 295031, - [SMALL_STATE(10179)] = 295046, - [SMALL_STATE(10180)] = 295065, - [SMALL_STATE(10181)] = 295084, - [SMALL_STATE(10182)] = 295103, - [SMALL_STATE(10183)] = 295118, - [SMALL_STATE(10184)] = 295137, - [SMALL_STATE(10185)] = 295156, - [SMALL_STATE(10186)] = 295171, - [SMALL_STATE(10187)] = 295190, - [SMALL_STATE(10188)] = 295209, - [SMALL_STATE(10189)] = 295224, - [SMALL_STATE(10190)] = 295237, - [SMALL_STATE(10191)] = 295256, - [SMALL_STATE(10192)] = 295275, - [SMALL_STATE(10193)] = 295292, - [SMALL_STATE(10194)] = 295311, - [SMALL_STATE(10195)] = 295326, - [SMALL_STATE(10196)] = 295343, - [SMALL_STATE(10197)] = 295360, - [SMALL_STATE(10198)] = 295375, - [SMALL_STATE(10199)] = 295394, - [SMALL_STATE(10200)] = 295413, - [SMALL_STATE(10201)] = 295432, - [SMALL_STATE(10202)] = 295448, - [SMALL_STATE(10203)] = 295464, - [SMALL_STATE(10204)] = 295480, - [SMALL_STATE(10205)] = 295496, - [SMALL_STATE(10206)] = 295510, - [SMALL_STATE(10207)] = 295524, - [SMALL_STATE(10208)] = 295540, - [SMALL_STATE(10209)] = 295554, - [SMALL_STATE(10210)] = 295568, - [SMALL_STATE(10211)] = 295584, - [SMALL_STATE(10212)] = 295600, - [SMALL_STATE(10213)] = 295616, - [SMALL_STATE(10214)] = 295632, - [SMALL_STATE(10215)] = 295648, - [SMALL_STATE(10216)] = 295664, - [SMALL_STATE(10217)] = 295680, - [SMALL_STATE(10218)] = 295696, - [SMALL_STATE(10219)] = 295712, - [SMALL_STATE(10220)] = 295728, - [SMALL_STATE(10221)] = 295742, - [SMALL_STATE(10222)] = 295756, - [SMALL_STATE(10223)] = 295772, - [SMALL_STATE(10224)] = 295788, - [SMALL_STATE(10225)] = 295802, - [SMALL_STATE(10226)] = 295818, - [SMALL_STATE(10227)] = 295834, - [SMALL_STATE(10228)] = 295850, - [SMALL_STATE(10229)] = 295866, - [SMALL_STATE(10230)] = 295882, - [SMALL_STATE(10231)] = 295898, - [SMALL_STATE(10232)] = 295912, - [SMALL_STATE(10233)] = 295928, - [SMALL_STATE(10234)] = 295944, - [SMALL_STATE(10235)] = 295958, - [SMALL_STATE(10236)] = 295972, - [SMALL_STATE(10237)] = 295988, - [SMALL_STATE(10238)] = 296004, - [SMALL_STATE(10239)] = 296020, - [SMALL_STATE(10240)] = 296036, - [SMALL_STATE(10241)] = 296052, - [SMALL_STATE(10242)] = 296068, - [SMALL_STATE(10243)] = 296082, - [SMALL_STATE(10244)] = 296098, - [SMALL_STATE(10245)] = 296114, - [SMALL_STATE(10246)] = 296128, - [SMALL_STATE(10247)] = 296144, - [SMALL_STATE(10248)] = 296160, - [SMALL_STATE(10249)] = 296176, - [SMALL_STATE(10250)] = 296190, - [SMALL_STATE(10251)] = 296206, - [SMALL_STATE(10252)] = 296222, - [SMALL_STATE(10253)] = 296236, - [SMALL_STATE(10254)] = 296252, - [SMALL_STATE(10255)] = 296268, - [SMALL_STATE(10256)] = 296284, - [SMALL_STATE(10257)] = 296300, - [SMALL_STATE(10258)] = 296316, - [SMALL_STATE(10259)] = 296330, - [SMALL_STATE(10260)] = 296346, - [SMALL_STATE(10261)] = 296358, - [SMALL_STATE(10262)] = 296374, - [SMALL_STATE(10263)] = 296390, - [SMALL_STATE(10264)] = 296406, - [SMALL_STATE(10265)] = 296422, - [SMALL_STATE(10266)] = 296438, - [SMALL_STATE(10267)] = 296452, - [SMALL_STATE(10268)] = 296468, - [SMALL_STATE(10269)] = 296484, - [SMALL_STATE(10270)] = 296500, - [SMALL_STATE(10271)] = 296516, - [SMALL_STATE(10272)] = 296532, - [SMALL_STATE(10273)] = 296548, - [SMALL_STATE(10274)] = 296564, - [SMALL_STATE(10275)] = 296576, - [SMALL_STATE(10276)] = 296592, - [SMALL_STATE(10277)] = 296608, - [SMALL_STATE(10278)] = 296624, - [SMALL_STATE(10279)] = 296640, - [SMALL_STATE(10280)] = 296656, - [SMALL_STATE(10281)] = 296668, - [SMALL_STATE(10282)] = 296684, - [SMALL_STATE(10283)] = 296700, - [SMALL_STATE(10284)] = 296714, - [SMALL_STATE(10285)] = 296730, - [SMALL_STATE(10286)] = 296742, - [SMALL_STATE(10287)] = 296758, - [SMALL_STATE(10288)] = 296774, - [SMALL_STATE(10289)] = 296788, - [SMALL_STATE(10290)] = 296804, - [SMALL_STATE(10291)] = 296818, - [SMALL_STATE(10292)] = 296834, - [SMALL_STATE(10293)] = 296848, - [SMALL_STATE(10294)] = 296864, - [SMALL_STATE(10295)] = 296878, - [SMALL_STATE(10296)] = 296894, - [SMALL_STATE(10297)] = 296910, - [SMALL_STATE(10298)] = 296926, - [SMALL_STATE(10299)] = 296942, - [SMALL_STATE(10300)] = 296958, - [SMALL_STATE(10301)] = 296974, - [SMALL_STATE(10302)] = 296990, - [SMALL_STATE(10303)] = 297006, - [SMALL_STATE(10304)] = 297020, - [SMALL_STATE(10305)] = 297036, - [SMALL_STATE(10306)] = 297052, - [SMALL_STATE(10307)] = 297068, - [SMALL_STATE(10308)] = 297084, - [SMALL_STATE(10309)] = 297098, - [SMALL_STATE(10310)] = 297114, - [SMALL_STATE(10311)] = 297130, - [SMALL_STATE(10312)] = 297146, - [SMALL_STATE(10313)] = 297162, - [SMALL_STATE(10314)] = 297178, - [SMALL_STATE(10315)] = 297192, - [SMALL_STATE(10316)] = 297208, - [SMALL_STATE(10317)] = 297224, - [SMALL_STATE(10318)] = 297240, - [SMALL_STATE(10319)] = 297256, - [SMALL_STATE(10320)] = 297272, - [SMALL_STATE(10321)] = 297288, - [SMALL_STATE(10322)] = 297304, - [SMALL_STATE(10323)] = 297320, - [SMALL_STATE(10324)] = 297334, - [SMALL_STATE(10325)] = 297350, - [SMALL_STATE(10326)] = 297364, - [SMALL_STATE(10327)] = 297380, - [SMALL_STATE(10328)] = 297396, - [SMALL_STATE(10329)] = 297410, - [SMALL_STATE(10330)] = 297426, - [SMALL_STATE(10331)] = 297442, - [SMALL_STATE(10332)] = 297458, - [SMALL_STATE(10333)] = 297472, - [SMALL_STATE(10334)] = 297488, - [SMALL_STATE(10335)] = 297504, - [SMALL_STATE(10336)] = 297520, - [SMALL_STATE(10337)] = 297536, - [SMALL_STATE(10338)] = 297552, - [SMALL_STATE(10339)] = 297568, - [SMALL_STATE(10340)] = 297584, - [SMALL_STATE(10341)] = 297598, - [SMALL_STATE(10342)] = 297614, - [SMALL_STATE(10343)] = 297630, - [SMALL_STATE(10344)] = 297646, - [SMALL_STATE(10345)] = 297662, - [SMALL_STATE(10346)] = 297676, - [SMALL_STATE(10347)] = 297692, - [SMALL_STATE(10348)] = 297708, - [SMALL_STATE(10349)] = 297724, - [SMALL_STATE(10350)] = 297740, - [SMALL_STATE(10351)] = 297756, - [SMALL_STATE(10352)] = 297772, - [SMALL_STATE(10353)] = 297786, - [SMALL_STATE(10354)] = 297802, - [SMALL_STATE(10355)] = 297818, - [SMALL_STATE(10356)] = 297834, - [SMALL_STATE(10357)] = 297850, - [SMALL_STATE(10358)] = 297864, - [SMALL_STATE(10359)] = 297880, - [SMALL_STATE(10360)] = 297896, - [SMALL_STATE(10361)] = 297912, - [SMALL_STATE(10362)] = 297928, - [SMALL_STATE(10363)] = 297944, - [SMALL_STATE(10364)] = 297960, - [SMALL_STATE(10365)] = 297976, - [SMALL_STATE(10366)] = 297992, - [SMALL_STATE(10367)] = 298008, - [SMALL_STATE(10368)] = 298024, - [SMALL_STATE(10369)] = 298040, - [SMALL_STATE(10370)] = 298056, - [SMALL_STATE(10371)] = 298068, - [SMALL_STATE(10372)] = 298080, - [SMALL_STATE(10373)] = 298094, - [SMALL_STATE(10374)] = 298108, - [SMALL_STATE(10375)] = 298124, - [SMALL_STATE(10376)] = 298140, - [SMALL_STATE(10377)] = 298152, - [SMALL_STATE(10378)] = 298168, - [SMALL_STATE(10379)] = 298180, - [SMALL_STATE(10380)] = 298196, - [SMALL_STATE(10381)] = 298212, - [SMALL_STATE(10382)] = 298228, - [SMALL_STATE(10383)] = 298244, - [SMALL_STATE(10384)] = 298256, - [SMALL_STATE(10385)] = 298268, - [SMALL_STATE(10386)] = 298284, - [SMALL_STATE(10387)] = 298300, - [SMALL_STATE(10388)] = 298312, - [SMALL_STATE(10389)] = 298328, - [SMALL_STATE(10390)] = 298344, - [SMALL_STATE(10391)] = 298356, - [SMALL_STATE(10392)] = 298372, - [SMALL_STATE(10393)] = 298384, - [SMALL_STATE(10394)] = 298400, - [SMALL_STATE(10395)] = 298416, - [SMALL_STATE(10396)] = 298430, - [SMALL_STATE(10397)] = 298446, - [SMALL_STATE(10398)] = 298462, - [SMALL_STATE(10399)] = 298474, - [SMALL_STATE(10400)] = 298490, - [SMALL_STATE(10401)] = 298506, - [SMALL_STATE(10402)] = 298520, - [SMALL_STATE(10403)] = 298536, - [SMALL_STATE(10404)] = 298548, - [SMALL_STATE(10405)] = 298564, - [SMALL_STATE(10406)] = 298580, - [SMALL_STATE(10407)] = 298596, - [SMALL_STATE(10408)] = 298612, - [SMALL_STATE(10409)] = 298628, - [SMALL_STATE(10410)] = 298642, - [SMALL_STATE(10411)] = 298656, - [SMALL_STATE(10412)] = 298672, - [SMALL_STATE(10413)] = 298686, - [SMALL_STATE(10414)] = 298700, - [SMALL_STATE(10415)] = 298716, - [SMALL_STATE(10416)] = 298732, - [SMALL_STATE(10417)] = 298746, - [SMALL_STATE(10418)] = 298762, - [SMALL_STATE(10419)] = 298778, - [SMALL_STATE(10420)] = 298794, - [SMALL_STATE(10421)] = 298808, - [SMALL_STATE(10422)] = 298824, - [SMALL_STATE(10423)] = 298840, - [SMALL_STATE(10424)] = 298856, - [SMALL_STATE(10425)] = 298870, - [SMALL_STATE(10426)] = 298886, - [SMALL_STATE(10427)] = 298902, - [SMALL_STATE(10428)] = 298918, - [SMALL_STATE(10429)] = 298934, - [SMALL_STATE(10430)] = 298950, - [SMALL_STATE(10431)] = 298966, - [SMALL_STATE(10432)] = 298982, - [SMALL_STATE(10433)] = 298998, - [SMALL_STATE(10434)] = 299014, - [SMALL_STATE(10435)] = 299030, - [SMALL_STATE(10436)] = 299046, - [SMALL_STATE(10437)] = 299062, - [SMALL_STATE(10438)] = 299078, - [SMALL_STATE(10439)] = 299094, - [SMALL_STATE(10440)] = 299110, - [SMALL_STATE(10441)] = 299124, - [SMALL_STATE(10442)] = 299140, - [SMALL_STATE(10443)] = 299156, - [SMALL_STATE(10444)] = 299172, - [SMALL_STATE(10445)] = 299188, - [SMALL_STATE(10446)] = 299204, - [SMALL_STATE(10447)] = 299220, - [SMALL_STATE(10448)] = 299234, - [SMALL_STATE(10449)] = 299250, - [SMALL_STATE(10450)] = 299264, - [SMALL_STATE(10451)] = 299280, - [SMALL_STATE(10452)] = 299294, - [SMALL_STATE(10453)] = 299310, - [SMALL_STATE(10454)] = 299324, - [SMALL_STATE(10455)] = 299340, - [SMALL_STATE(10456)] = 299356, - [SMALL_STATE(10457)] = 299372, - [SMALL_STATE(10458)] = 299385, - [SMALL_STATE(10459)] = 299398, - [SMALL_STATE(10460)] = 299411, - [SMALL_STATE(10461)] = 299424, - [SMALL_STATE(10462)] = 299437, - [SMALL_STATE(10463)] = 299450, - [SMALL_STATE(10464)] = 299463, - [SMALL_STATE(10465)] = 299476, - [SMALL_STATE(10466)] = 299489, - [SMALL_STATE(10467)] = 299502, - [SMALL_STATE(10468)] = 299515, - [SMALL_STATE(10469)] = 299528, - [SMALL_STATE(10470)] = 299541, - [SMALL_STATE(10471)] = 299554, - [SMALL_STATE(10472)] = 299567, - [SMALL_STATE(10473)] = 299580, - [SMALL_STATE(10474)] = 299593, - [SMALL_STATE(10475)] = 299606, - [SMALL_STATE(10476)] = 299619, - [SMALL_STATE(10477)] = 299632, - [SMALL_STATE(10478)] = 299645, - [SMALL_STATE(10479)] = 299658, - [SMALL_STATE(10480)] = 299671, - [SMALL_STATE(10481)] = 299684, - [SMALL_STATE(10482)] = 299697, - [SMALL_STATE(10483)] = 299710, - [SMALL_STATE(10484)] = 299723, - [SMALL_STATE(10485)] = 299736, - [SMALL_STATE(10486)] = 299749, - [SMALL_STATE(10487)] = 299762, - [SMALL_STATE(10488)] = 299775, - [SMALL_STATE(10489)] = 299788, - [SMALL_STATE(10490)] = 299801, - [SMALL_STATE(10491)] = 299814, - [SMALL_STATE(10492)] = 299827, - [SMALL_STATE(10493)] = 299840, - [SMALL_STATE(10494)] = 299853, - [SMALL_STATE(10495)] = 299866, - [SMALL_STATE(10496)] = 299879, - [SMALL_STATE(10497)] = 299892, - [SMALL_STATE(10498)] = 299905, - [SMALL_STATE(10499)] = 299918, - [SMALL_STATE(10500)] = 299931, - [SMALL_STATE(10501)] = 299944, - [SMALL_STATE(10502)] = 299957, - [SMALL_STATE(10503)] = 299970, - [SMALL_STATE(10504)] = 299983, - [SMALL_STATE(10505)] = 299996, - [SMALL_STATE(10506)] = 300009, - [SMALL_STATE(10507)] = 300022, - [SMALL_STATE(10508)] = 300035, - [SMALL_STATE(10509)] = 300048, - [SMALL_STATE(10510)] = 300061, - [SMALL_STATE(10511)] = 300074, - [SMALL_STATE(10512)] = 300087, - [SMALL_STATE(10513)] = 300100, - [SMALL_STATE(10514)] = 300113, - [SMALL_STATE(10515)] = 300126, - [SMALL_STATE(10516)] = 300139, - [SMALL_STATE(10517)] = 300152, - [SMALL_STATE(10518)] = 300165, - [SMALL_STATE(10519)] = 300178, - [SMALL_STATE(10520)] = 300191, - [SMALL_STATE(10521)] = 300204, - [SMALL_STATE(10522)] = 300217, - [SMALL_STATE(10523)] = 300230, - [SMALL_STATE(10524)] = 300243, - [SMALL_STATE(10525)] = 300256, - [SMALL_STATE(10526)] = 300269, - [SMALL_STATE(10527)] = 300282, - [SMALL_STATE(10528)] = 300295, - [SMALL_STATE(10529)] = 300308, - [SMALL_STATE(10530)] = 300321, - [SMALL_STATE(10531)] = 300334, - [SMALL_STATE(10532)] = 300347, - [SMALL_STATE(10533)] = 300360, - [SMALL_STATE(10534)] = 300373, - [SMALL_STATE(10535)] = 300386, - [SMALL_STATE(10536)] = 300399, - [SMALL_STATE(10537)] = 300412, - [SMALL_STATE(10538)] = 300425, - [SMALL_STATE(10539)] = 300436, - [SMALL_STATE(10540)] = 300449, - [SMALL_STATE(10541)] = 300460, - [SMALL_STATE(10542)] = 300473, - [SMALL_STATE(10543)] = 300484, - [SMALL_STATE(10544)] = 300497, - [SMALL_STATE(10545)] = 300510, - [SMALL_STATE(10546)] = 300523, - [SMALL_STATE(10547)] = 300536, - [SMALL_STATE(10548)] = 300549, - [SMALL_STATE(10549)] = 300562, - [SMALL_STATE(10550)] = 300575, - [SMALL_STATE(10551)] = 300588, - [SMALL_STATE(10552)] = 300601, - [SMALL_STATE(10553)] = 300614, - [SMALL_STATE(10554)] = 300627, - [SMALL_STATE(10555)] = 300640, - [SMALL_STATE(10556)] = 300653, - [SMALL_STATE(10557)] = 300666, - [SMALL_STATE(10558)] = 300679, - [SMALL_STATE(10559)] = 300692, - [SMALL_STATE(10560)] = 300705, - [SMALL_STATE(10561)] = 300718, - [SMALL_STATE(10562)] = 300731, - [SMALL_STATE(10563)] = 300744, - [SMALL_STATE(10564)] = 300757, - [SMALL_STATE(10565)] = 300770, - [SMALL_STATE(10566)] = 300783, - [SMALL_STATE(10567)] = 300796, - [SMALL_STATE(10568)] = 300809, - [SMALL_STATE(10569)] = 300822, - [SMALL_STATE(10570)] = 300835, - [SMALL_STATE(10571)] = 300848, - [SMALL_STATE(10572)] = 300861, - [SMALL_STATE(10573)] = 300874, - [SMALL_STATE(10574)] = 300887, - [SMALL_STATE(10575)] = 300900, - [SMALL_STATE(10576)] = 300913, - [SMALL_STATE(10577)] = 300926, - [SMALL_STATE(10578)] = 300939, - [SMALL_STATE(10579)] = 300952, - [SMALL_STATE(10580)] = 300965, - [SMALL_STATE(10581)] = 300978, - [SMALL_STATE(10582)] = 300991, - [SMALL_STATE(10583)] = 301004, - [SMALL_STATE(10584)] = 301017, - [SMALL_STATE(10585)] = 301030, - [SMALL_STATE(10586)] = 301043, - [SMALL_STATE(10587)] = 301056, - [SMALL_STATE(10588)] = 301069, - [SMALL_STATE(10589)] = 301082, - [SMALL_STATE(10590)] = 301095, - [SMALL_STATE(10591)] = 301108, - [SMALL_STATE(10592)] = 301121, - [SMALL_STATE(10593)] = 301134, - [SMALL_STATE(10594)] = 301147, - [SMALL_STATE(10595)] = 301160, - [SMALL_STATE(10596)] = 301173, - [SMALL_STATE(10597)] = 301186, - [SMALL_STATE(10598)] = 301199, - [SMALL_STATE(10599)] = 301212, - [SMALL_STATE(10600)] = 301225, - [SMALL_STATE(10601)] = 301238, - [SMALL_STATE(10602)] = 301251, - [SMALL_STATE(10603)] = 301264, - [SMALL_STATE(10604)] = 301277, - [SMALL_STATE(10605)] = 301290, - [SMALL_STATE(10606)] = 301303, - [SMALL_STATE(10607)] = 301316, - [SMALL_STATE(10608)] = 301329, - [SMALL_STATE(10609)] = 301342, - [SMALL_STATE(10610)] = 301355, - [SMALL_STATE(10611)] = 301368, - [SMALL_STATE(10612)] = 301381, - [SMALL_STATE(10613)] = 301394, - [SMALL_STATE(10614)] = 301407, - [SMALL_STATE(10615)] = 301420, - [SMALL_STATE(10616)] = 301433, - [SMALL_STATE(10617)] = 301446, - [SMALL_STATE(10618)] = 301459, - [SMALL_STATE(10619)] = 301472, - [SMALL_STATE(10620)] = 301485, - [SMALL_STATE(10621)] = 301498, - [SMALL_STATE(10622)] = 301511, - [SMALL_STATE(10623)] = 301524, - [SMALL_STATE(10624)] = 301537, - [SMALL_STATE(10625)] = 301550, - [SMALL_STATE(10626)] = 301563, - [SMALL_STATE(10627)] = 301576, - [SMALL_STATE(10628)] = 301589, - [SMALL_STATE(10629)] = 301602, - [SMALL_STATE(10630)] = 301615, - [SMALL_STATE(10631)] = 301628, - [SMALL_STATE(10632)] = 301641, - [SMALL_STATE(10633)] = 301654, - [SMALL_STATE(10634)] = 301667, - [SMALL_STATE(10635)] = 301680, - [SMALL_STATE(10636)] = 301693, - [SMALL_STATE(10637)] = 301706, - [SMALL_STATE(10638)] = 301719, - [SMALL_STATE(10639)] = 301732, - [SMALL_STATE(10640)] = 301745, - [SMALL_STATE(10641)] = 301758, - [SMALL_STATE(10642)] = 301771, - [SMALL_STATE(10643)] = 301784, - [SMALL_STATE(10644)] = 301797, - [SMALL_STATE(10645)] = 301810, - [SMALL_STATE(10646)] = 301823, - [SMALL_STATE(10647)] = 301836, - [SMALL_STATE(10648)] = 301849, - [SMALL_STATE(10649)] = 301862, - [SMALL_STATE(10650)] = 301875, - [SMALL_STATE(10651)] = 301888, - [SMALL_STATE(10652)] = 301901, - [SMALL_STATE(10653)] = 301914, - [SMALL_STATE(10654)] = 301927, - [SMALL_STATE(10655)] = 301940, - [SMALL_STATE(10656)] = 301953, - [SMALL_STATE(10657)] = 301966, - [SMALL_STATE(10658)] = 301977, - [SMALL_STATE(10659)] = 301990, - [SMALL_STATE(10660)] = 302003, - [SMALL_STATE(10661)] = 302016, - [SMALL_STATE(10662)] = 302029, - [SMALL_STATE(10663)] = 302040, - [SMALL_STATE(10664)] = 302053, - [SMALL_STATE(10665)] = 302066, - [SMALL_STATE(10666)] = 302079, - [SMALL_STATE(10667)] = 302092, - [SMALL_STATE(10668)] = 302105, - [SMALL_STATE(10669)] = 302118, - [SMALL_STATE(10670)] = 302131, - [SMALL_STATE(10671)] = 302144, - [SMALL_STATE(10672)] = 302155, - [SMALL_STATE(10673)] = 302168, - [SMALL_STATE(10674)] = 302181, - [SMALL_STATE(10675)] = 302194, - [SMALL_STATE(10676)] = 302207, - [SMALL_STATE(10677)] = 302220, - [SMALL_STATE(10678)] = 302233, - [SMALL_STATE(10679)] = 302246, - [SMALL_STATE(10680)] = 302259, - [SMALL_STATE(10681)] = 302272, - [SMALL_STATE(10682)] = 302285, - [SMALL_STATE(10683)] = 302298, - [SMALL_STATE(10684)] = 302311, - [SMALL_STATE(10685)] = 302324, - [SMALL_STATE(10686)] = 302335, - [SMALL_STATE(10687)] = 302348, - [SMALL_STATE(10688)] = 302361, - [SMALL_STATE(10689)] = 302374, - [SMALL_STATE(10690)] = 302387, - [SMALL_STATE(10691)] = 302400, - [SMALL_STATE(10692)] = 302413, - [SMALL_STATE(10693)] = 302426, - [SMALL_STATE(10694)] = 302439, - [SMALL_STATE(10695)] = 302452, - [SMALL_STATE(10696)] = 302465, - [SMALL_STATE(10697)] = 302478, - [SMALL_STATE(10698)] = 302491, - [SMALL_STATE(10699)] = 302504, - [SMALL_STATE(10700)] = 302517, - [SMALL_STATE(10701)] = 302530, - [SMALL_STATE(10702)] = 302543, - [SMALL_STATE(10703)] = 302556, - [SMALL_STATE(10704)] = 302569, - [SMALL_STATE(10705)] = 302582, - [SMALL_STATE(10706)] = 302595, - [SMALL_STATE(10707)] = 302608, - [SMALL_STATE(10708)] = 302621, - [SMALL_STATE(10709)] = 302634, - [SMALL_STATE(10710)] = 302647, - [SMALL_STATE(10711)] = 302660, - [SMALL_STATE(10712)] = 302673, - [SMALL_STATE(10713)] = 302686, - [SMALL_STATE(10714)] = 302699, - [SMALL_STATE(10715)] = 302712, - [SMALL_STATE(10716)] = 302725, - [SMALL_STATE(10717)] = 302738, - [SMALL_STATE(10718)] = 302751, - [SMALL_STATE(10719)] = 302764, - [SMALL_STATE(10720)] = 302775, - [SMALL_STATE(10721)] = 302788, - [SMALL_STATE(10722)] = 302801, - [SMALL_STATE(10723)] = 302814, - [SMALL_STATE(10724)] = 302827, - [SMALL_STATE(10725)] = 302840, - [SMALL_STATE(10726)] = 302853, - [SMALL_STATE(10727)] = 302866, - [SMALL_STATE(10728)] = 302877, - [SMALL_STATE(10729)] = 302890, - [SMALL_STATE(10730)] = 302903, - [SMALL_STATE(10731)] = 302916, - [SMALL_STATE(10732)] = 302929, - [SMALL_STATE(10733)] = 302942, - [SMALL_STATE(10734)] = 302955, - [SMALL_STATE(10735)] = 302968, - [SMALL_STATE(10736)] = 302981, - [SMALL_STATE(10737)] = 302994, - [SMALL_STATE(10738)] = 303007, - [SMALL_STATE(10739)] = 303020, - [SMALL_STATE(10740)] = 303033, - [SMALL_STATE(10741)] = 303046, - [SMALL_STATE(10742)] = 303059, - [SMALL_STATE(10743)] = 303072, - [SMALL_STATE(10744)] = 303085, - [SMALL_STATE(10745)] = 303098, - [SMALL_STATE(10746)] = 303111, - [SMALL_STATE(10747)] = 303121, - [SMALL_STATE(10748)] = 303131, - [SMALL_STATE(10749)] = 303141, - [SMALL_STATE(10750)] = 303151, - [SMALL_STATE(10751)] = 303161, - [SMALL_STATE(10752)] = 303171, - [SMALL_STATE(10753)] = 303181, - [SMALL_STATE(10754)] = 303191, - [SMALL_STATE(10755)] = 303201, - [SMALL_STATE(10756)] = 303211, - [SMALL_STATE(10757)] = 303221, - [SMALL_STATE(10758)] = 303231, - [SMALL_STATE(10759)] = 303241, - [SMALL_STATE(10760)] = 303251, - [SMALL_STATE(10761)] = 303261, - [SMALL_STATE(10762)] = 303271, - [SMALL_STATE(10763)] = 303281, - [SMALL_STATE(10764)] = 303291, - [SMALL_STATE(10765)] = 303301, - [SMALL_STATE(10766)] = 303311, - [SMALL_STATE(10767)] = 303321, - [SMALL_STATE(10768)] = 303331, - [SMALL_STATE(10769)] = 303341, - [SMALL_STATE(10770)] = 303351, - [SMALL_STATE(10771)] = 303361, - [SMALL_STATE(10772)] = 303371, - [SMALL_STATE(10773)] = 303381, - [SMALL_STATE(10774)] = 303391, - [SMALL_STATE(10775)] = 303401, - [SMALL_STATE(10776)] = 303411, - [SMALL_STATE(10777)] = 303421, - [SMALL_STATE(10778)] = 303431, - [SMALL_STATE(10779)] = 303441, - [SMALL_STATE(10780)] = 303451, - [SMALL_STATE(10781)] = 303461, - [SMALL_STATE(10782)] = 303471, - [SMALL_STATE(10783)] = 303481, - [SMALL_STATE(10784)] = 303491, - [SMALL_STATE(10785)] = 303501, - [SMALL_STATE(10786)] = 303511, - [SMALL_STATE(10787)] = 303521, - [SMALL_STATE(10788)] = 303531, - [SMALL_STATE(10789)] = 303541, - [SMALL_STATE(10790)] = 303551, - [SMALL_STATE(10791)] = 303561, - [SMALL_STATE(10792)] = 303571, - [SMALL_STATE(10793)] = 303581, - [SMALL_STATE(10794)] = 303591, - [SMALL_STATE(10795)] = 303601, - [SMALL_STATE(10796)] = 303611, - [SMALL_STATE(10797)] = 303621, - [SMALL_STATE(10798)] = 303631, - [SMALL_STATE(10799)] = 303641, - [SMALL_STATE(10800)] = 303651, - [SMALL_STATE(10801)] = 303661, - [SMALL_STATE(10802)] = 303671, - [SMALL_STATE(10803)] = 303681, - [SMALL_STATE(10804)] = 303691, - [SMALL_STATE(10805)] = 303701, - [SMALL_STATE(10806)] = 303711, - [SMALL_STATE(10807)] = 303721, - [SMALL_STATE(10808)] = 303731, - [SMALL_STATE(10809)] = 303741, - [SMALL_STATE(10810)] = 303751, - [SMALL_STATE(10811)] = 303761, - [SMALL_STATE(10812)] = 303771, - [SMALL_STATE(10813)] = 303781, - [SMALL_STATE(10814)] = 303791, - [SMALL_STATE(10815)] = 303801, - [SMALL_STATE(10816)] = 303811, - [SMALL_STATE(10817)] = 303821, - [SMALL_STATE(10818)] = 303831, - [SMALL_STATE(10819)] = 303841, - [SMALL_STATE(10820)] = 303851, - [SMALL_STATE(10821)] = 303861, - [SMALL_STATE(10822)] = 303871, - [SMALL_STATE(10823)] = 303881, - [SMALL_STATE(10824)] = 303891, - [SMALL_STATE(10825)] = 303901, - [SMALL_STATE(10826)] = 303911, - [SMALL_STATE(10827)] = 303921, - [SMALL_STATE(10828)] = 303931, - [SMALL_STATE(10829)] = 303941, - [SMALL_STATE(10830)] = 303951, - [SMALL_STATE(10831)] = 303961, - [SMALL_STATE(10832)] = 303971, - [SMALL_STATE(10833)] = 303981, - [SMALL_STATE(10834)] = 303991, - [SMALL_STATE(10835)] = 304001, - [SMALL_STATE(10836)] = 304011, - [SMALL_STATE(10837)] = 304021, - [SMALL_STATE(10838)] = 304031, - [SMALL_STATE(10839)] = 304041, - [SMALL_STATE(10840)] = 304051, - [SMALL_STATE(10841)] = 304061, - [SMALL_STATE(10842)] = 304071, - [SMALL_STATE(10843)] = 304081, - [SMALL_STATE(10844)] = 304091, - [SMALL_STATE(10845)] = 304101, - [SMALL_STATE(10846)] = 304111, - [SMALL_STATE(10847)] = 304121, - [SMALL_STATE(10848)] = 304131, - [SMALL_STATE(10849)] = 304141, - [SMALL_STATE(10850)] = 304151, - [SMALL_STATE(10851)] = 304161, - [SMALL_STATE(10852)] = 304171, - [SMALL_STATE(10853)] = 304181, - [SMALL_STATE(10854)] = 304191, - [SMALL_STATE(10855)] = 304201, - [SMALL_STATE(10856)] = 304211, - [SMALL_STATE(10857)] = 304221, - [SMALL_STATE(10858)] = 304231, - [SMALL_STATE(10859)] = 304241, - [SMALL_STATE(10860)] = 304251, - [SMALL_STATE(10861)] = 304261, - [SMALL_STATE(10862)] = 304271, - [SMALL_STATE(10863)] = 304281, - [SMALL_STATE(10864)] = 304291, - [SMALL_STATE(10865)] = 304301, - [SMALL_STATE(10866)] = 304311, - [SMALL_STATE(10867)] = 304321, - [SMALL_STATE(10868)] = 304331, - [SMALL_STATE(10869)] = 304341, - [SMALL_STATE(10870)] = 304351, - [SMALL_STATE(10871)] = 304361, - [SMALL_STATE(10872)] = 304371, - [SMALL_STATE(10873)] = 304381, - [SMALL_STATE(10874)] = 304391, - [SMALL_STATE(10875)] = 304401, - [SMALL_STATE(10876)] = 304411, - [SMALL_STATE(10877)] = 304421, - [SMALL_STATE(10878)] = 304431, - [SMALL_STATE(10879)] = 304441, - [SMALL_STATE(10880)] = 304451, - [SMALL_STATE(10881)] = 304461, - [SMALL_STATE(10882)] = 304471, - [SMALL_STATE(10883)] = 304481, - [SMALL_STATE(10884)] = 304491, - [SMALL_STATE(10885)] = 304501, - [SMALL_STATE(10886)] = 304511, - [SMALL_STATE(10887)] = 304521, - [SMALL_STATE(10888)] = 304531, - [SMALL_STATE(10889)] = 304541, - [SMALL_STATE(10890)] = 304551, - [SMALL_STATE(10891)] = 304561, - [SMALL_STATE(10892)] = 304571, - [SMALL_STATE(10893)] = 304581, - [SMALL_STATE(10894)] = 304591, - [SMALL_STATE(10895)] = 304601, - [SMALL_STATE(10896)] = 304611, - [SMALL_STATE(10897)] = 304621, - [SMALL_STATE(10898)] = 304631, - [SMALL_STATE(10899)] = 304641, - [SMALL_STATE(10900)] = 304651, - [SMALL_STATE(10901)] = 304661, - [SMALL_STATE(10902)] = 304671, - [SMALL_STATE(10903)] = 304681, - [SMALL_STATE(10904)] = 304691, - [SMALL_STATE(10905)] = 304701, - [SMALL_STATE(10906)] = 304711, - [SMALL_STATE(10907)] = 304721, - [SMALL_STATE(10908)] = 304731, - [SMALL_STATE(10909)] = 304741, - [SMALL_STATE(10910)] = 304751, - [SMALL_STATE(10911)] = 304761, - [SMALL_STATE(10912)] = 304771, - [SMALL_STATE(10913)] = 304781, - [SMALL_STATE(10914)] = 304791, - [SMALL_STATE(10915)] = 304801, - [SMALL_STATE(10916)] = 304811, - [SMALL_STATE(10917)] = 304821, - [SMALL_STATE(10918)] = 304831, - [SMALL_STATE(10919)] = 304841, - [SMALL_STATE(10920)] = 304851, - [SMALL_STATE(10921)] = 304861, - [SMALL_STATE(10922)] = 304871, - [SMALL_STATE(10923)] = 304881, - [SMALL_STATE(10924)] = 304891, - [SMALL_STATE(10925)] = 304901, - [SMALL_STATE(10926)] = 304911, - [SMALL_STATE(10927)] = 304921, - [SMALL_STATE(10928)] = 304931, - [SMALL_STATE(10929)] = 304941, - [SMALL_STATE(10930)] = 304951, - [SMALL_STATE(10931)] = 304961, - [SMALL_STATE(10932)] = 304971, - [SMALL_STATE(10933)] = 304981, - [SMALL_STATE(10934)] = 304991, - [SMALL_STATE(10935)] = 305001, - [SMALL_STATE(10936)] = 305011, - [SMALL_STATE(10937)] = 305021, - [SMALL_STATE(10938)] = 305031, - [SMALL_STATE(10939)] = 305041, - [SMALL_STATE(10940)] = 305051, - [SMALL_STATE(10941)] = 305061, - [SMALL_STATE(10942)] = 305071, - [SMALL_STATE(10943)] = 305081, - [SMALL_STATE(10944)] = 305091, - [SMALL_STATE(10945)] = 305101, - [SMALL_STATE(10946)] = 305111, - [SMALL_STATE(10947)] = 305121, - [SMALL_STATE(10948)] = 305131, - [SMALL_STATE(10949)] = 305141, - [SMALL_STATE(10950)] = 305151, - [SMALL_STATE(10951)] = 305161, - [SMALL_STATE(10952)] = 305171, - [SMALL_STATE(10953)] = 305181, - [SMALL_STATE(10954)] = 305191, - [SMALL_STATE(10955)] = 305201, - [SMALL_STATE(10956)] = 305211, - [SMALL_STATE(10957)] = 305221, - [SMALL_STATE(10958)] = 305231, - [SMALL_STATE(10959)] = 305241, - [SMALL_STATE(10960)] = 305251, - [SMALL_STATE(10961)] = 305261, - [SMALL_STATE(10962)] = 305271, - [SMALL_STATE(10963)] = 305281, - [SMALL_STATE(10964)] = 305291, - [SMALL_STATE(10965)] = 305301, - [SMALL_STATE(10966)] = 305311, - [SMALL_STATE(10967)] = 305321, - [SMALL_STATE(10968)] = 305331, - [SMALL_STATE(10969)] = 305341, - [SMALL_STATE(10970)] = 305351, - [SMALL_STATE(10971)] = 305361, - [SMALL_STATE(10972)] = 305371, - [SMALL_STATE(10973)] = 305381, - [SMALL_STATE(10974)] = 305391, - [SMALL_STATE(10975)] = 305401, - [SMALL_STATE(10976)] = 305411, - [SMALL_STATE(10977)] = 305421, - [SMALL_STATE(10978)] = 305431, - [SMALL_STATE(10979)] = 305441, - [SMALL_STATE(10980)] = 305451, - [SMALL_STATE(10981)] = 305461, - [SMALL_STATE(10982)] = 305471, - [SMALL_STATE(10983)] = 305481, - [SMALL_STATE(10984)] = 305491, - [SMALL_STATE(10985)] = 305501, - [SMALL_STATE(10986)] = 305511, - [SMALL_STATE(10987)] = 305521, - [SMALL_STATE(10988)] = 305531, - [SMALL_STATE(10989)] = 305541, - [SMALL_STATE(10990)] = 305551, - [SMALL_STATE(10991)] = 305561, - [SMALL_STATE(10992)] = 305571, - [SMALL_STATE(10993)] = 305581, - [SMALL_STATE(10994)] = 305591, - [SMALL_STATE(10995)] = 305601, - [SMALL_STATE(10996)] = 305611, - [SMALL_STATE(10997)] = 305621, - [SMALL_STATE(10998)] = 305631, - [SMALL_STATE(10999)] = 305641, - [SMALL_STATE(11000)] = 305651, - [SMALL_STATE(11001)] = 305661, - [SMALL_STATE(11002)] = 305671, - [SMALL_STATE(11003)] = 305681, - [SMALL_STATE(11004)] = 305691, - [SMALL_STATE(11005)] = 305701, - [SMALL_STATE(11006)] = 305711, - [SMALL_STATE(11007)] = 305721, - [SMALL_STATE(11008)] = 305731, - [SMALL_STATE(11009)] = 305741, - [SMALL_STATE(11010)] = 305751, - [SMALL_STATE(11011)] = 305761, - [SMALL_STATE(11012)] = 305771, - [SMALL_STATE(11013)] = 305781, - [SMALL_STATE(11014)] = 305791, - [SMALL_STATE(11015)] = 305801, - [SMALL_STATE(11016)] = 305811, - [SMALL_STATE(11017)] = 305821, - [SMALL_STATE(11018)] = 305831, - [SMALL_STATE(11019)] = 305841, - [SMALL_STATE(11020)] = 305851, - [SMALL_STATE(11021)] = 305861, - [SMALL_STATE(11022)] = 305871, - [SMALL_STATE(11023)] = 305881, - [SMALL_STATE(11024)] = 305891, - [SMALL_STATE(11025)] = 305901, - [SMALL_STATE(11026)] = 305911, - [SMALL_STATE(11027)] = 305921, - [SMALL_STATE(11028)] = 305931, - [SMALL_STATE(11029)] = 305941, - [SMALL_STATE(11030)] = 305951, - [SMALL_STATE(11031)] = 305961, - [SMALL_STATE(11032)] = 305971, - [SMALL_STATE(11033)] = 305981, - [SMALL_STATE(11034)] = 305991, - [SMALL_STATE(11035)] = 306001, - [SMALL_STATE(11036)] = 306011, - [SMALL_STATE(11037)] = 306021, - [SMALL_STATE(11038)] = 306031, - [SMALL_STATE(11039)] = 306041, - [SMALL_STATE(11040)] = 306051, - [SMALL_STATE(11041)] = 306061, - [SMALL_STATE(11042)] = 306071, - [SMALL_STATE(11043)] = 306081, - [SMALL_STATE(11044)] = 306091, - [SMALL_STATE(11045)] = 306101, - [SMALL_STATE(11046)] = 306111, - [SMALL_STATE(11047)] = 306121, - [SMALL_STATE(11048)] = 306131, - [SMALL_STATE(11049)] = 306141, - [SMALL_STATE(11050)] = 306151, - [SMALL_STATE(11051)] = 306161, - [SMALL_STATE(11052)] = 306171, - [SMALL_STATE(11053)] = 306181, - [SMALL_STATE(11054)] = 306191, - [SMALL_STATE(11055)] = 306201, - [SMALL_STATE(11056)] = 306211, - [SMALL_STATE(11057)] = 306221, - [SMALL_STATE(11058)] = 306231, - [SMALL_STATE(11059)] = 306241, - [SMALL_STATE(11060)] = 306251, - [SMALL_STATE(11061)] = 306261, - [SMALL_STATE(11062)] = 306271, - [SMALL_STATE(11063)] = 306281, - [SMALL_STATE(11064)] = 306291, - [SMALL_STATE(11065)] = 306301, - [SMALL_STATE(11066)] = 306311, - [SMALL_STATE(11067)] = 306321, - [SMALL_STATE(11068)] = 306331, - [SMALL_STATE(11069)] = 306341, - [SMALL_STATE(11070)] = 306351, - [SMALL_STATE(11071)] = 306361, - [SMALL_STATE(11072)] = 306371, - [SMALL_STATE(11073)] = 306381, - [SMALL_STATE(11074)] = 306391, - [SMALL_STATE(11075)] = 306401, - [SMALL_STATE(11076)] = 306411, - [SMALL_STATE(11077)] = 306421, - [SMALL_STATE(11078)] = 306431, - [SMALL_STATE(11079)] = 306441, - [SMALL_STATE(11080)] = 306451, - [SMALL_STATE(11081)] = 306461, - [SMALL_STATE(11082)] = 306471, - [SMALL_STATE(11083)] = 306481, - [SMALL_STATE(11084)] = 306491, - [SMALL_STATE(11085)] = 306501, - [SMALL_STATE(11086)] = 306511, - [SMALL_STATE(11087)] = 306521, - [SMALL_STATE(11088)] = 306531, - [SMALL_STATE(11089)] = 306541, - [SMALL_STATE(11090)] = 306551, - [SMALL_STATE(11091)] = 306561, - [SMALL_STATE(11092)] = 306571, - [SMALL_STATE(11093)] = 306581, - [SMALL_STATE(11094)] = 306591, - [SMALL_STATE(11095)] = 306601, - [SMALL_STATE(11096)] = 306611, - [SMALL_STATE(11097)] = 306621, - [SMALL_STATE(11098)] = 306631, - [SMALL_STATE(11099)] = 306641, - [SMALL_STATE(11100)] = 306651, - [SMALL_STATE(11101)] = 306661, - [SMALL_STATE(11102)] = 306671, - [SMALL_STATE(11103)] = 306681, - [SMALL_STATE(11104)] = 306691, - [SMALL_STATE(11105)] = 306701, - [SMALL_STATE(11106)] = 306711, - [SMALL_STATE(11107)] = 306721, - [SMALL_STATE(11108)] = 306731, - [SMALL_STATE(11109)] = 306741, - [SMALL_STATE(11110)] = 306751, - [SMALL_STATE(11111)] = 306761, - [SMALL_STATE(11112)] = 306771, - [SMALL_STATE(11113)] = 306781, - [SMALL_STATE(11114)] = 306791, - [SMALL_STATE(11115)] = 306801, - [SMALL_STATE(11116)] = 306811, - [SMALL_STATE(11117)] = 306821, - [SMALL_STATE(11118)] = 306831, - [SMALL_STATE(11119)] = 306841, - [SMALL_STATE(11120)] = 306851, - [SMALL_STATE(11121)] = 306861, - [SMALL_STATE(11122)] = 306871, - [SMALL_STATE(11123)] = 306881, - [SMALL_STATE(11124)] = 306891, - [SMALL_STATE(11125)] = 306901, - [SMALL_STATE(11126)] = 306911, - [SMALL_STATE(11127)] = 306921, - [SMALL_STATE(11128)] = 306931, - [SMALL_STATE(11129)] = 306941, - [SMALL_STATE(11130)] = 306951, - [SMALL_STATE(11131)] = 306961, - [SMALL_STATE(11132)] = 306971, - [SMALL_STATE(11133)] = 306981, - [SMALL_STATE(11134)] = 306991, - [SMALL_STATE(11135)] = 307001, - [SMALL_STATE(11136)] = 307011, - [SMALL_STATE(11137)] = 307021, - [SMALL_STATE(11138)] = 307031, - [SMALL_STATE(11139)] = 307041, - [SMALL_STATE(11140)] = 307051, - [SMALL_STATE(11141)] = 307061, - [SMALL_STATE(11142)] = 307071, - [SMALL_STATE(11143)] = 307081, - [SMALL_STATE(11144)] = 307091, - [SMALL_STATE(11145)] = 307101, - [SMALL_STATE(11146)] = 307111, - [SMALL_STATE(11147)] = 307121, - [SMALL_STATE(11148)] = 307131, - [SMALL_STATE(11149)] = 307141, - [SMALL_STATE(11150)] = 307151, - [SMALL_STATE(11151)] = 307161, - [SMALL_STATE(11152)] = 307171, - [SMALL_STATE(11153)] = 307181, - [SMALL_STATE(11154)] = 307191, - [SMALL_STATE(11155)] = 307201, - [SMALL_STATE(11156)] = 307211, - [SMALL_STATE(11157)] = 307221, - [SMALL_STATE(11158)] = 307231, - [SMALL_STATE(11159)] = 307241, - [SMALL_STATE(11160)] = 307251, - [SMALL_STATE(11161)] = 307261, - [SMALL_STATE(11162)] = 307271, - [SMALL_STATE(11163)] = 307281, - [SMALL_STATE(11164)] = 307291, - [SMALL_STATE(11165)] = 307301, - [SMALL_STATE(11166)] = 307311, - [SMALL_STATE(11167)] = 307321, - [SMALL_STATE(11168)] = 307331, - [SMALL_STATE(11169)] = 307341, - [SMALL_STATE(11170)] = 307351, - [SMALL_STATE(11171)] = 307361, - [SMALL_STATE(11172)] = 307371, - [SMALL_STATE(11173)] = 307381, - [SMALL_STATE(11174)] = 307391, - [SMALL_STATE(11175)] = 307401, - [SMALL_STATE(11176)] = 307411, - [SMALL_STATE(11177)] = 307421, - [SMALL_STATE(11178)] = 307431, - [SMALL_STATE(11179)] = 307441, - [SMALL_STATE(11180)] = 307451, - [SMALL_STATE(11181)] = 307461, - [SMALL_STATE(11182)] = 307471, - [SMALL_STATE(11183)] = 307481, - [SMALL_STATE(11184)] = 307491, - [SMALL_STATE(11185)] = 307501, - [SMALL_STATE(11186)] = 307511, - [SMALL_STATE(11187)] = 307521, - [SMALL_STATE(11188)] = 307531, - [SMALL_STATE(11189)] = 307541, - [SMALL_STATE(11190)] = 307551, - [SMALL_STATE(11191)] = 307561, - [SMALL_STATE(11192)] = 307571, - [SMALL_STATE(11193)] = 307581, - [SMALL_STATE(11194)] = 307591, - [SMALL_STATE(11195)] = 307601, - [SMALL_STATE(11196)] = 307611, - [SMALL_STATE(11197)] = 307621, - [SMALL_STATE(11198)] = 307631, - [SMALL_STATE(11199)] = 307641, - [SMALL_STATE(11200)] = 307651, - [SMALL_STATE(11201)] = 307661, - [SMALL_STATE(11202)] = 307671, - [SMALL_STATE(11203)] = 307681, - [SMALL_STATE(11204)] = 307691, - [SMALL_STATE(11205)] = 307701, - [SMALL_STATE(11206)] = 307711, - [SMALL_STATE(11207)] = 307721, - [SMALL_STATE(11208)] = 307731, - [SMALL_STATE(11209)] = 307741, - [SMALL_STATE(11210)] = 307751, - [SMALL_STATE(11211)] = 307761, - [SMALL_STATE(11212)] = 307771, - [SMALL_STATE(11213)] = 307781, - [SMALL_STATE(11214)] = 307791, - [SMALL_STATE(11215)] = 307801, - [SMALL_STATE(11216)] = 307811, - [SMALL_STATE(11217)] = 307821, - [SMALL_STATE(11218)] = 307831, - [SMALL_STATE(11219)] = 307841, - [SMALL_STATE(11220)] = 307851, - [SMALL_STATE(11221)] = 307861, - [SMALL_STATE(11222)] = 307871, - [SMALL_STATE(11223)] = 307881, - [SMALL_STATE(11224)] = 307891, - [SMALL_STATE(11225)] = 307901, - [SMALL_STATE(11226)] = 307911, - [SMALL_STATE(11227)] = 307921, - [SMALL_STATE(11228)] = 307931, - [SMALL_STATE(11229)] = 307941, - [SMALL_STATE(11230)] = 307951, - [SMALL_STATE(11231)] = 307961, - [SMALL_STATE(11232)] = 307971, - [SMALL_STATE(11233)] = 307981, - [SMALL_STATE(11234)] = 307991, - [SMALL_STATE(11235)] = 308001, - [SMALL_STATE(11236)] = 308011, - [SMALL_STATE(11237)] = 308021, - [SMALL_STATE(11238)] = 308031, - [SMALL_STATE(11239)] = 308041, - [SMALL_STATE(11240)] = 308051, - [SMALL_STATE(11241)] = 308061, - [SMALL_STATE(11242)] = 308071, - [SMALL_STATE(11243)] = 308081, - [SMALL_STATE(11244)] = 308091, - [SMALL_STATE(11245)] = 308101, - [SMALL_STATE(11246)] = 308111, - [SMALL_STATE(11247)] = 308121, - [SMALL_STATE(11248)] = 308131, - [SMALL_STATE(11249)] = 308141, - [SMALL_STATE(11250)] = 308151, - [SMALL_STATE(11251)] = 308161, - [SMALL_STATE(11252)] = 308171, - [SMALL_STATE(11253)] = 308181, - [SMALL_STATE(11254)] = 308191, - [SMALL_STATE(11255)] = 308201, - [SMALL_STATE(11256)] = 308211, - [SMALL_STATE(11257)] = 308221, - [SMALL_STATE(11258)] = 308231, - [SMALL_STATE(11259)] = 308241, - [SMALL_STATE(11260)] = 308251, - [SMALL_STATE(11261)] = 308261, - [SMALL_STATE(11262)] = 308271, - [SMALL_STATE(11263)] = 308281, - [SMALL_STATE(11264)] = 308291, - [SMALL_STATE(11265)] = 308301, - [SMALL_STATE(11266)] = 308311, - [SMALL_STATE(11267)] = 308321, - [SMALL_STATE(11268)] = 308331, - [SMALL_STATE(11269)] = 308341, - [SMALL_STATE(11270)] = 308351, - [SMALL_STATE(11271)] = 308361, - [SMALL_STATE(11272)] = 308371, - [SMALL_STATE(11273)] = 308381, - [SMALL_STATE(11274)] = 308391, - [SMALL_STATE(11275)] = 308401, - [SMALL_STATE(11276)] = 308411, - [SMALL_STATE(11277)] = 308421, - [SMALL_STATE(11278)] = 308431, - [SMALL_STATE(11279)] = 308441, - [SMALL_STATE(11280)] = 308451, - [SMALL_STATE(11281)] = 308461, - [SMALL_STATE(11282)] = 308471, - [SMALL_STATE(11283)] = 308481, - [SMALL_STATE(11284)] = 308491, - [SMALL_STATE(11285)] = 308501, - [SMALL_STATE(11286)] = 308511, - [SMALL_STATE(11287)] = 308521, - [SMALL_STATE(11288)] = 308531, - [SMALL_STATE(11289)] = 308541, - [SMALL_STATE(11290)] = 308551, - [SMALL_STATE(11291)] = 308561, - [SMALL_STATE(11292)] = 308571, - [SMALL_STATE(11293)] = 308581, - [SMALL_STATE(11294)] = 308591, - [SMALL_STATE(11295)] = 308601, - [SMALL_STATE(11296)] = 308611, - [SMALL_STATE(11297)] = 308621, - [SMALL_STATE(11298)] = 308631, - [SMALL_STATE(11299)] = 308641, - [SMALL_STATE(11300)] = 308651, - [SMALL_STATE(11301)] = 308661, - [SMALL_STATE(11302)] = 308671, - [SMALL_STATE(11303)] = 308681, - [SMALL_STATE(11304)] = 308691, - [SMALL_STATE(11305)] = 308701, - [SMALL_STATE(11306)] = 308711, - [SMALL_STATE(11307)] = 308721, - [SMALL_STATE(11308)] = 308731, - [SMALL_STATE(11309)] = 308741, - [SMALL_STATE(11310)] = 308751, - [SMALL_STATE(11311)] = 308761, - [SMALL_STATE(11312)] = 308771, - [SMALL_STATE(11313)] = 308781, - [SMALL_STATE(11314)] = 308791, - [SMALL_STATE(11315)] = 308801, - [SMALL_STATE(11316)] = 308811, - [SMALL_STATE(11317)] = 308821, - [SMALL_STATE(11318)] = 308831, - [SMALL_STATE(11319)] = 308841, - [SMALL_STATE(11320)] = 308851, - [SMALL_STATE(11321)] = 308861, - [SMALL_STATE(11322)] = 308871, - [SMALL_STATE(11323)] = 308881, - [SMALL_STATE(11324)] = 308891, - [SMALL_STATE(11325)] = 308901, - [SMALL_STATE(11326)] = 308911, - [SMALL_STATE(11327)] = 308921, - [SMALL_STATE(11328)] = 308931, - [SMALL_STATE(11329)] = 308941, - [SMALL_STATE(11330)] = 308951, - [SMALL_STATE(11331)] = 308961, - [SMALL_STATE(11332)] = 308971, - [SMALL_STATE(11333)] = 308981, - [SMALL_STATE(11334)] = 308991, - [SMALL_STATE(11335)] = 309001, - [SMALL_STATE(11336)] = 309011, - [SMALL_STATE(11337)] = 309021, - [SMALL_STATE(11338)] = 309031, - [SMALL_STATE(11339)] = 309041, - [SMALL_STATE(11340)] = 309051, - [SMALL_STATE(11341)] = 309061, - [SMALL_STATE(11342)] = 309071, - [SMALL_STATE(11343)] = 309081, - [SMALL_STATE(11344)] = 309091, - [SMALL_STATE(11345)] = 309101, - [SMALL_STATE(11346)] = 309111, - [SMALL_STATE(11347)] = 309121, - [SMALL_STATE(11348)] = 309131, - [SMALL_STATE(11349)] = 309141, - [SMALL_STATE(11350)] = 309151, - [SMALL_STATE(11351)] = 309161, - [SMALL_STATE(11352)] = 309171, - [SMALL_STATE(11353)] = 309181, - [SMALL_STATE(11354)] = 309191, - [SMALL_STATE(11355)] = 309201, - [SMALL_STATE(11356)] = 309211, - [SMALL_STATE(11357)] = 309221, - [SMALL_STATE(11358)] = 309231, - [SMALL_STATE(11359)] = 309241, - [SMALL_STATE(11360)] = 309251, - [SMALL_STATE(11361)] = 309261, - [SMALL_STATE(11362)] = 309271, - [SMALL_STATE(11363)] = 309281, - [SMALL_STATE(11364)] = 309291, - [SMALL_STATE(11365)] = 309301, - [SMALL_STATE(11366)] = 309311, - [SMALL_STATE(11367)] = 309321, - [SMALL_STATE(11368)] = 309331, - [SMALL_STATE(11369)] = 309341, - [SMALL_STATE(11370)] = 309351, - [SMALL_STATE(11371)] = 309361, - [SMALL_STATE(11372)] = 309371, - [SMALL_STATE(11373)] = 309381, - [SMALL_STATE(11374)] = 309391, - [SMALL_STATE(11375)] = 309401, - [SMALL_STATE(11376)] = 309411, - [SMALL_STATE(11377)] = 309421, - [SMALL_STATE(11378)] = 309431, - [SMALL_STATE(11379)] = 309441, - [SMALL_STATE(11380)] = 309451, - [SMALL_STATE(11381)] = 309461, - [SMALL_STATE(11382)] = 309471, - [SMALL_STATE(11383)] = 309481, - [SMALL_STATE(11384)] = 309491, - [SMALL_STATE(11385)] = 309501, - [SMALL_STATE(11386)] = 309511, - [SMALL_STATE(11387)] = 309521, - [SMALL_STATE(11388)] = 309531, - [SMALL_STATE(11389)] = 309541, - [SMALL_STATE(11390)] = 309551, - [SMALL_STATE(11391)] = 309561, - [SMALL_STATE(11392)] = 309571, - [SMALL_STATE(11393)] = 309581, - [SMALL_STATE(11394)] = 309591, - [SMALL_STATE(11395)] = 309601, - [SMALL_STATE(11396)] = 309611, - [SMALL_STATE(11397)] = 309621, - [SMALL_STATE(11398)] = 309631, - [SMALL_STATE(11399)] = 309641, - [SMALL_STATE(11400)] = 309651, - [SMALL_STATE(11401)] = 309661, - [SMALL_STATE(11402)] = 309671, - [SMALL_STATE(11403)] = 309681, - [SMALL_STATE(11404)] = 309691, - [SMALL_STATE(11405)] = 309701, - [SMALL_STATE(11406)] = 309711, - [SMALL_STATE(11407)] = 309721, - [SMALL_STATE(11408)] = 309731, - [SMALL_STATE(11409)] = 309741, - [SMALL_STATE(11410)] = 309751, - [SMALL_STATE(11411)] = 309761, - [SMALL_STATE(11412)] = 309771, - [SMALL_STATE(11413)] = 309781, - [SMALL_STATE(11414)] = 309791, - [SMALL_STATE(11415)] = 309801, - [SMALL_STATE(11416)] = 309811, - [SMALL_STATE(11417)] = 309821, - [SMALL_STATE(11418)] = 309831, - [SMALL_STATE(11419)] = 309841, - [SMALL_STATE(11420)] = 309851, - [SMALL_STATE(11421)] = 309861, - [SMALL_STATE(11422)] = 309871, - [SMALL_STATE(11423)] = 309881, - [SMALL_STATE(11424)] = 309891, - [SMALL_STATE(11425)] = 309901, - [SMALL_STATE(11426)] = 309911, + [SMALL_STATE(2714)] = 0, + [SMALL_STATE(2715)] = 73, + [SMALL_STATE(2716)] = 146, + [SMALL_STATE(2717)] = 219, + [SMALL_STATE(2718)] = 298, + [SMALL_STATE(2719)] = 377, + [SMALL_STATE(2720)] = 456, + [SMALL_STATE(2721)] = 533, + [SMALL_STATE(2722)] = 606, + [SMALL_STATE(2723)] = 679, + [SMALL_STATE(2724)] = 757, + [SMALL_STATE(2725)] = 833, + [SMALL_STATE(2726)] = 909, + [SMALL_STATE(2727)] = 981, + [SMALL_STATE(2728)] = 1053, + [SMALL_STATE(2729)] = 1125, + [SMALL_STATE(2730)] = 1201, + [SMALL_STATE(2731)] = 1279, + [SMALL_STATE(2732)] = 1429, + [SMALL_STATE(2733)] = 1507, + [SMALL_STATE(2734)] = 1583, + [SMALL_STATE(2735)] = 1661, + [SMALL_STATE(2736)] = 1739, + [SMALL_STATE(2737)] = 1817, + [SMALL_STATE(2738)] = 1893, + [SMALL_STATE(2739)] = 1967, + [SMALL_STATE(2740)] = 2113, + [SMALL_STATE(2741)] = 2195, + [SMALL_STATE(2742)] = 2273, + [SMALL_STATE(2743)] = 2351, + [SMALL_STATE(2744)] = 2429, + [SMALL_STATE(2745)] = 2503, + [SMALL_STATE(2746)] = 2653, + [SMALL_STATE(2747)] = 2731, + [SMALL_STATE(2748)] = 2809, + [SMALL_STATE(2749)] = 2887, + [SMALL_STATE(2750)] = 2965, + [SMALL_STATE(2751)] = 3037, + [SMALL_STATE(2752)] = 3184, + [SMALL_STATE(2753)] = 3331, + [SMALL_STATE(2754)] = 3478, + [SMALL_STATE(2755)] = 3625, + [SMALL_STATE(2756)] = 3772, + [SMALL_STATE(2757)] = 3919, + [SMALL_STATE(2758)] = 4066, + [SMALL_STATE(2759)] = 4213, + [SMALL_STATE(2760)] = 4360, + [SMALL_STATE(2761)] = 4507, + [SMALL_STATE(2762)] = 4654, + [SMALL_STATE(2763)] = 4801, + [SMALL_STATE(2764)] = 4948, + [SMALL_STATE(2765)] = 5095, + [SMALL_STATE(2766)] = 5242, + [SMALL_STATE(2767)] = 5389, + [SMALL_STATE(2768)] = 5536, + [SMALL_STATE(2769)] = 5683, + [SMALL_STATE(2770)] = 5830, + [SMALL_STATE(2771)] = 5977, + [SMALL_STATE(2772)] = 6124, + [SMALL_STATE(2773)] = 6271, + [SMALL_STATE(2774)] = 6418, + [SMALL_STATE(2775)] = 6565, + [SMALL_STATE(2776)] = 6712, + [SMALL_STATE(2777)] = 6859, + [SMALL_STATE(2778)] = 7006, + [SMALL_STATE(2779)] = 7153, + [SMALL_STATE(2780)] = 7300, + [SMALL_STATE(2781)] = 7447, + [SMALL_STATE(2782)] = 7594, + [SMALL_STATE(2783)] = 7741, + [SMALL_STATE(2784)] = 7888, + [SMALL_STATE(2785)] = 8035, + [SMALL_STATE(2786)] = 8182, + [SMALL_STATE(2787)] = 8329, + [SMALL_STATE(2788)] = 8476, + [SMALL_STATE(2789)] = 8623, + [SMALL_STATE(2790)] = 8770, + [SMALL_STATE(2791)] = 8917, + [SMALL_STATE(2792)] = 9064, + [SMALL_STATE(2793)] = 9211, + [SMALL_STATE(2794)] = 9358, + [SMALL_STATE(2795)] = 9505, + [SMALL_STATE(2796)] = 9652, + [SMALL_STATE(2797)] = 9799, + [SMALL_STATE(2798)] = 9946, + [SMALL_STATE(2799)] = 10093, + [SMALL_STATE(2800)] = 10240, + [SMALL_STATE(2801)] = 10387, + [SMALL_STATE(2802)] = 10534, + [SMALL_STATE(2803)] = 10681, + [SMALL_STATE(2804)] = 10828, + [SMALL_STATE(2805)] = 10975, + [SMALL_STATE(2806)] = 11122, + [SMALL_STATE(2807)] = 11269, + [SMALL_STATE(2808)] = 11416, + [SMALL_STATE(2809)] = 11563, + [SMALL_STATE(2810)] = 11710, + [SMALL_STATE(2811)] = 11857, + [SMALL_STATE(2812)] = 12004, + [SMALL_STATE(2813)] = 12151, + [SMALL_STATE(2814)] = 12298, + [SMALL_STATE(2815)] = 12445, + [SMALL_STATE(2816)] = 12592, + [SMALL_STATE(2817)] = 12739, + [SMALL_STATE(2818)] = 12886, + [SMALL_STATE(2819)] = 13033, + [SMALL_STATE(2820)] = 13180, + [SMALL_STATE(2821)] = 13257, + [SMALL_STATE(2822)] = 13404, + [SMALL_STATE(2823)] = 13481, + [SMALL_STATE(2824)] = 13558, + [SMALL_STATE(2825)] = 13633, + [SMALL_STATE(2826)] = 13780, + [SMALL_STATE(2827)] = 13927, + [SMALL_STATE(2828)] = 14074, + [SMALL_STATE(2829)] = 14221, + [SMALL_STATE(2830)] = 14368, + [SMALL_STATE(2831)] = 14515, + [SMALL_STATE(2832)] = 14662, + [SMALL_STATE(2833)] = 14809, + [SMALL_STATE(2834)] = 14880, + [SMALL_STATE(2835)] = 15027, + [SMALL_STATE(2836)] = 15174, + [SMALL_STATE(2837)] = 15321, + [SMALL_STATE(2838)] = 15468, + [SMALL_STATE(2839)] = 15615, + [SMALL_STATE(2840)] = 15762, + [SMALL_STATE(2841)] = 15909, + [SMALL_STATE(2842)] = 16056, + [SMALL_STATE(2843)] = 16203, + [SMALL_STATE(2844)] = 16350, + [SMALL_STATE(2845)] = 16497, + [SMALL_STATE(2846)] = 16644, + [SMALL_STATE(2847)] = 16791, + [SMALL_STATE(2848)] = 16938, + [SMALL_STATE(2849)] = 17085, + [SMALL_STATE(2850)] = 17232, + [SMALL_STATE(2851)] = 17379, + [SMALL_STATE(2852)] = 17526, + [SMALL_STATE(2853)] = 17597, + [SMALL_STATE(2854)] = 17744, + [SMALL_STATE(2855)] = 17815, + [SMALL_STATE(2856)] = 17962, + [SMALL_STATE(2857)] = 18109, + [SMALL_STATE(2858)] = 18184, + [SMALL_STATE(2859)] = 18331, + [SMALL_STATE(2860)] = 18478, + [SMALL_STATE(2861)] = 18625, + [SMALL_STATE(2862)] = 18772, + [SMALL_STATE(2863)] = 18919, + [SMALL_STATE(2864)] = 19066, + [SMALL_STATE(2865)] = 19213, + [SMALL_STATE(2866)] = 19360, + [SMALL_STATE(2867)] = 19433, + [SMALL_STATE(2868)] = 19506, + [SMALL_STATE(2869)] = 19653, + [SMALL_STATE(2870)] = 19800, + [SMALL_STATE(2871)] = 19947, + [SMALL_STATE(2872)] = 20094, + [SMALL_STATE(2873)] = 20165, + [SMALL_STATE(2874)] = 20236, + [SMALL_STATE(2875)] = 20381, + [SMALL_STATE(2876)] = 20452, + [SMALL_STATE(2877)] = 20599, + [SMALL_STATE(2878)] = 20746, + [SMALL_STATE(2879)] = 20821, + [SMALL_STATE(2880)] = 20968, + [SMALL_STATE(2881)] = 21115, + [SMALL_STATE(2882)] = 21262, + [SMALL_STATE(2883)] = 21409, + [SMALL_STATE(2884)] = 21556, + [SMALL_STATE(2885)] = 21703, + [SMALL_STATE(2886)] = 21850, + [SMALL_STATE(2887)] = 21997, + [SMALL_STATE(2888)] = 22144, + [SMALL_STATE(2889)] = 22291, + [SMALL_STATE(2890)] = 22438, + [SMALL_STATE(2891)] = 22585, + [SMALL_STATE(2892)] = 22658, + [SMALL_STATE(2893)] = 22731, + [SMALL_STATE(2894)] = 22878, + [SMALL_STATE(2895)] = 23025, + [SMALL_STATE(2896)] = 23172, + [SMALL_STATE(2897)] = 23319, + [SMALL_STATE(2898)] = 23466, + [SMALL_STATE(2899)] = 23541, + [SMALL_STATE(2900)] = 23688, + [SMALL_STATE(2901)] = 23759, + [SMALL_STATE(2902)] = 23906, + [SMALL_STATE(2903)] = 24053, + [SMALL_STATE(2904)] = 24200, + [SMALL_STATE(2905)] = 24271, + [SMALL_STATE(2906)] = 24342, + [SMALL_STATE(2907)] = 24489, + [SMALL_STATE(2908)] = 24562, + [SMALL_STATE(2909)] = 24635, + [SMALL_STATE(2910)] = 24708, + [SMALL_STATE(2911)] = 24855, + [SMALL_STATE(2912)] = 25002, + [SMALL_STATE(2913)] = 25149, + [SMALL_STATE(2914)] = 25296, + [SMALL_STATE(2915)] = 25443, + [SMALL_STATE(2916)] = 25586, + [SMALL_STATE(2917)] = 25729, + [SMALL_STATE(2918)] = 25876, + [SMALL_STATE(2919)] = 26023, + [SMALL_STATE(2920)] = 26170, + [SMALL_STATE(2921)] = 26317, + [SMALL_STATE(2922)] = 26464, + [SMALL_STATE(2923)] = 26611, + [SMALL_STATE(2924)] = 26758, + [SMALL_STATE(2925)] = 26903, + [SMALL_STATE(2926)] = 27050, + [SMALL_STATE(2927)] = 27197, + [SMALL_STATE(2928)] = 27344, + [SMALL_STATE(2929)] = 27491, + [SMALL_STATE(2930)] = 27638, + [SMALL_STATE(2931)] = 27785, + [SMALL_STATE(2932)] = 27932, + [SMALL_STATE(2933)] = 28079, + [SMALL_STATE(2934)] = 28226, + [SMALL_STATE(2935)] = 28368, + [SMALL_STATE(2936)] = 28440, + [SMALL_STATE(2937)] = 28510, + [SMALL_STATE(2938)] = 28582, + [SMALL_STATE(2939)] = 28652, + [SMALL_STATE(2940)] = 28728, + [SMALL_STATE(2941)] = 28798, + [SMALL_STATE(2942)] = 28874, + [SMALL_STATE(2943)] = 28944, + [SMALL_STATE(2944)] = 29020, + [SMALL_STATE(2945)] = 29092, + [SMALL_STATE(2946)] = 29166, + [SMALL_STATE(2947)] = 29308, + [SMALL_STATE(2948)] = 29378, + [SMALL_STATE(2949)] = 29450, + [SMALL_STATE(2950)] = 29520, + [SMALL_STATE(2951)] = 29662, + [SMALL_STATE(2952)] = 29804, + [SMALL_STATE(2953)] = 29878, + [SMALL_STATE(2954)] = 29952, + [SMALL_STATE(2955)] = 30026, + [SMALL_STATE(2956)] = 30100, + [SMALL_STATE(2957)] = 30242, + [SMALL_STATE(2958)] = 30314, + [SMALL_STATE(2959)] = 30386, + [SMALL_STATE(2960)] = 30456, + [SMALL_STATE(2961)] = 30528, + [SMALL_STATE(2962)] = 30670, + [SMALL_STATE(2963)] = 30740, + [SMALL_STATE(2964)] = 30810, + [SMALL_STATE(2965)] = 30880, + [SMALL_STATE(2966)] = 30950, + [SMALL_STATE(2967)] = 31090, + [SMALL_STATE(2968)] = 31162, + [SMALL_STATE(2969)] = 31304, + [SMALL_STATE(2970)] = 31444, + [SMALL_STATE(2971)] = 31586, + [SMALL_STATE(2972)] = 31660, + [SMALL_STATE(2973)] = 31734, + [SMALL_STATE(2974)] = 31806, + [SMALL_STATE(2975)] = 31876, + [SMALL_STATE(2976)] = 31948, + [SMALL_STATE(2977)] = 32090, + [SMALL_STATE(2978)] = 32160, + [SMALL_STATE(2979)] = 32230, + [SMALL_STATE(2980)] = 32300, + [SMALL_STATE(2981)] = 32372, + [SMALL_STATE(2982)] = 32444, + [SMALL_STATE(2983)] = 32514, + [SMALL_STATE(2984)] = 32584, + [SMALL_STATE(2985)] = 32721, + [SMALL_STATE(2986)] = 32790, + [SMALL_STATE(2987)] = 32859, + [SMALL_STATE(2988)] = 32928, + [SMALL_STATE(2989)] = 32997, + [SMALL_STATE(2990)] = 33066, + [SMALL_STATE(2991)] = 33135, + [SMALL_STATE(2992)] = 33204, + [SMALL_STATE(2993)] = 33277, + [SMALL_STATE(2994)] = 33346, + [SMALL_STATE(2995)] = 33419, + [SMALL_STATE(2996)] = 33488, + [SMALL_STATE(2997)] = 33557, + [SMALL_STATE(2998)] = 33626, + [SMALL_STATE(2999)] = 33699, + [SMALL_STATE(3000)] = 33768, + [SMALL_STATE(3001)] = 33837, + [SMALL_STATE(3002)] = 33906, + [SMALL_STATE(3003)] = 33975, + [SMALL_STATE(3004)] = 34044, + [SMALL_STATE(3005)] = 34113, + [SMALL_STATE(3006)] = 34214, + [SMALL_STATE(3007)] = 34285, + [SMALL_STATE(3008)] = 34356, + [SMALL_STATE(3009)] = 34425, + [SMALL_STATE(3010)] = 34494, + [SMALL_STATE(3011)] = 34563, + [SMALL_STATE(3012)] = 34636, + [SMALL_STATE(3013)] = 34705, + [SMALL_STATE(3014)] = 34774, + [SMALL_STATE(3015)] = 34843, + [SMALL_STATE(3016)] = 34912, + [SMALL_STATE(3017)] = 34981, + [SMALL_STATE(3018)] = 35050, + [SMALL_STATE(3019)] = 35119, + [SMALL_STATE(3020)] = 35192, + [SMALL_STATE(3021)] = 35261, + [SMALL_STATE(3022)] = 35398, + [SMALL_STATE(3023)] = 35467, + [SMALL_STATE(3024)] = 35536, + [SMALL_STATE(3025)] = 35605, + [SMALL_STATE(3026)] = 35674, + [SMALL_STATE(3027)] = 35743, + [SMALL_STATE(3028)] = 35812, + [SMALL_STATE(3029)] = 35881, + [SMALL_STATE(3030)] = 36018, + [SMALL_STATE(3031)] = 36087, + [SMALL_STATE(3032)] = 36156, + [SMALL_STATE(3033)] = 36229, + [SMALL_STATE(3034)] = 36366, + [SMALL_STATE(3035)] = 36435, + [SMALL_STATE(3036)] = 36504, + [SMALL_STATE(3037)] = 36577, + [SMALL_STATE(3038)] = 36650, + [SMALL_STATE(3039)] = 36719, + [SMALL_STATE(3040)] = 36788, + [SMALL_STATE(3041)] = 36863, + [SMALL_STATE(3042)] = 36946, + [SMALL_STATE(3043)] = 37023, + [SMALL_STATE(3044)] = 37160, + [SMALL_STATE(3045)] = 37297, + [SMALL_STATE(3046)] = 37384, + [SMALL_STATE(3047)] = 37459, + [SMALL_STATE(3048)] = 37528, + [SMALL_STATE(3049)] = 37597, + [SMALL_STATE(3050)] = 37666, + [SMALL_STATE(3051)] = 37735, + [SMALL_STATE(3052)] = 37872, + [SMALL_STATE(3053)] = 37941, + [SMALL_STATE(3054)] = 38010, + [SMALL_STATE(3055)] = 38081, + [SMALL_STATE(3056)] = 38218, + [SMALL_STATE(3057)] = 38297, + [SMALL_STATE(3058)] = 38386, + [SMALL_STATE(3059)] = 38523, + [SMALL_STATE(3060)] = 38660, + [SMALL_STATE(3061)] = 38797, + [SMALL_STATE(3062)] = 38888, + [SMALL_STATE(3063)] = 39025, + [SMALL_STATE(3064)] = 39094, + [SMALL_STATE(3065)] = 39191, + [SMALL_STATE(3066)] = 39284, + [SMALL_STATE(3067)] = 39379, + [SMALL_STATE(3068)] = 39516, + [SMALL_STATE(3069)] = 39653, + [SMALL_STATE(3070)] = 39722, + [SMALL_STATE(3071)] = 39791, + [SMALL_STATE(3072)] = 39860, + [SMALL_STATE(3073)] = 39929, + [SMALL_STATE(3074)] = 40066, + [SMALL_STATE(3075)] = 40165, + [SMALL_STATE(3076)] = 40234, + [SMALL_STATE(3077)] = 40303, + [SMALL_STATE(3078)] = 40372, + [SMALL_STATE(3079)] = 40440, + [SMALL_STATE(3080)] = 40508, + [SMALL_STATE(3081)] = 40578, + [SMALL_STATE(3082)] = 40648, + [SMALL_STATE(3083)] = 40718, + [SMALL_STATE(3084)] = 40788, + [SMALL_STATE(3085)] = 40856, + [SMALL_STATE(3086)] = 40924, + [SMALL_STATE(3087)] = 40992, + [SMALL_STATE(3088)] = 41062, + [SMALL_STATE(3089)] = 41134, + [SMALL_STATE(3090)] = 41206, + [SMALL_STATE(3091)] = 41278, + [SMALL_STATE(3092)] = 41345, + [SMALL_STATE(3093)] = 41412, + [SMALL_STATE(3094)] = 41479, + [SMALL_STATE(3095)] = 41548, + [SMALL_STATE(3096)] = 41617, + [SMALL_STATE(3097)] = 41684, + [SMALL_STATE(3098)] = 41753, + [SMALL_STATE(3099)] = 41820, + [SMALL_STATE(3100)] = 41887, + [SMALL_STATE(3101)] = 41956, + [SMALL_STATE(3102)] = 42023, + [SMALL_STATE(3103)] = 42090, + [SMALL_STATE(3104)] = 42157, + [SMALL_STATE(3105)] = 42224, + [SMALL_STATE(3106)] = 42291, + [SMALL_STATE(3107)] = 42358, + [SMALL_STATE(3108)] = 42425, + [SMALL_STATE(3109)] = 42492, + [SMALL_STATE(3110)] = 42559, + [SMALL_STATE(3111)] = 42626, + [SMALL_STATE(3112)] = 42693, + [SMALL_STATE(3113)] = 42760, + [SMALL_STATE(3114)] = 42827, + [SMALL_STATE(3115)] = 42894, + [SMALL_STATE(3116)] = 42961, + [SMALL_STATE(3117)] = 43028, + [SMALL_STATE(3118)] = 43097, + [SMALL_STATE(3119)] = 43164, + [SMALL_STATE(3120)] = 43231, + [SMALL_STATE(3121)] = 43298, + [SMALL_STATE(3122)] = 43365, + [SMALL_STATE(3123)] = 43432, + [SMALL_STATE(3124)] = 43501, + [SMALL_STATE(3125)] = 43568, + [SMALL_STATE(3126)] = 43634, + [SMALL_STATE(3127)] = 43700, + [SMALL_STATE(3128)] = 43766, + [SMALL_STATE(3129)] = 43832, + [SMALL_STATE(3130)] = 43898, + [SMALL_STATE(3131)] = 43964, + [SMALL_STATE(3132)] = 44030, + [SMALL_STATE(3133)] = 44096, + [SMALL_STATE(3134)] = 44164, + [SMALL_STATE(3135)] = 44230, + [SMALL_STATE(3136)] = 44296, + [SMALL_STATE(3137)] = 44362, + [SMALL_STATE(3138)] = 44428, + [SMALL_STATE(3139)] = 44496, + [SMALL_STATE(3140)] = 44562, + [SMALL_STATE(3141)] = 44628, + [SMALL_STATE(3142)] = 44694, + [SMALL_STATE(3143)] = 44760, + [SMALL_STATE(3144)] = 44826, + [SMALL_STATE(3145)] = 44892, + [SMALL_STATE(3146)] = 44958, + [SMALL_STATE(3147)] = 45024, + [SMALL_STATE(3148)] = 45090, + [SMALL_STATE(3149)] = 45156, + [SMALL_STATE(3150)] = 45222, + [SMALL_STATE(3151)] = 45288, + [SMALL_STATE(3152)] = 45354, + [SMALL_STATE(3153)] = 45420, + [SMALL_STATE(3154)] = 45486, + [SMALL_STATE(3155)] = 45552, + [SMALL_STATE(3156)] = 45618, + [SMALL_STATE(3157)] = 45684, + [SMALL_STATE(3158)] = 45749, + [SMALL_STATE(3159)] = 45838, + [SMALL_STATE(3160)] = 45928, + [SMALL_STATE(3161)] = 46012, + [SMALL_STATE(3162)] = 46102, + [SMALL_STATE(3163)] = 46192, + [SMALL_STATE(3164)] = 46282, + [SMALL_STATE(3165)] = 46366, + [SMALL_STATE(3166)] = 46447, + [SMALL_STATE(3167)] = 46528, + [SMALL_STATE(3168)] = 46613, + [SMALL_STATE(3169)] = 46680, + [SMALL_STATE(3170)] = 46747, + [SMALL_STATE(3171)] = 46828, + [SMALL_STATE(3172)] = 46913, + [SMALL_STATE(3173)] = 46994, + [SMALL_STATE(3174)] = 47075, + [SMALL_STATE(3175)] = 47160, + [SMALL_STATE(3176)] = 47241, + [SMALL_STATE(3177)] = 47322, + [SMALL_STATE(3178)] = 47403, + [SMALL_STATE(3179)] = 47484, + [SMALL_STATE(3180)] = 47565, + [SMALL_STATE(3181)] = 47646, + [SMALL_STATE(3182)] = 47727, + [SMALL_STATE(3183)] = 47793, + [SMALL_STATE(3184)] = 47859, + [SMALL_STATE(3185)] = 47923, + [SMALL_STATE(3186)] = 48005, + [SMALL_STATE(3187)] = 48069, + [SMALL_STATE(3188)] = 48151, + [SMALL_STATE(3189)] = 48233, + [SMALL_STATE(3190)] = 48315, + [SMALL_STATE(3191)] = 48379, + [SMALL_STATE(3192)] = 48443, + [SMALL_STATE(3193)] = 48521, + [SMALL_STATE(3194)] = 48599, + [SMALL_STATE(3195)] = 48663, + [SMALL_STATE(3196)] = 48727, + [SMALL_STATE(3197)] = 48805, + [SMALL_STATE(3198)] = 48887, + [SMALL_STATE(3199)] = 48965, + [SMALL_STATE(3200)] = 49043, + [SMALL_STATE(3201)] = 49109, + [SMALL_STATE(3202)] = 49187, + [SMALL_STATE(3203)] = 49265, + [SMALL_STATE(3204)] = 49347, + [SMALL_STATE(3205)] = 49429, + [SMALL_STATE(3206)] = 49511, + [SMALL_STATE(3207)] = 49593, + [SMALL_STATE(3208)] = 49675, + [SMALL_STATE(3209)] = 49757, + [SMALL_STATE(3210)] = 49839, + [SMALL_STATE(3211)] = 49918, + [SMALL_STATE(3212)] = 49997, + [SMALL_STATE(3213)] = 50058, + [SMALL_STATE(3214)] = 50119, + [SMALL_STATE(3215)] = 50184, + [SMALL_STATE(3216)] = 50249, + [SMALL_STATE(3217)] = 50310, + [SMALL_STATE(3218)] = 50389, + [SMALL_STATE(3219)] = 50468, + [SMALL_STATE(3220)] = 50545, + [SMALL_STATE(3221)] = 50624, + [SMALL_STATE(3222)] = 50689, + [SMALL_STATE(3223)] = 50752, + [SMALL_STATE(3224)] = 50815, + [SMALL_STATE(3225)] = 50878, + [SMALL_STATE(3226)] = 50939, + [SMALL_STATE(3227)] = 51000, + [SMALL_STATE(3228)] = 51061, + [SMALL_STATE(3229)] = 51126, + [SMALL_STATE(3230)] = 51204, + [SMALL_STATE(3231)] = 51266, + [SMALL_STATE(3232)] = 51344, + [SMALL_STATE(3233)] = 51406, + [SMALL_STATE(3234)] = 51484, + [SMALL_STATE(3235)] = 51546, + [SMALL_STATE(3236)] = 51608, + [SMALL_STATE(3237)] = 51670, + [SMALL_STATE(3238)] = 51734, + [SMALL_STATE(3239)] = 51796, + [SMALL_STATE(3240)] = 51860, + [SMALL_STATE(3241)] = 51938, + [SMALL_STATE(3242)] = 52016, + [SMALL_STATE(3243)] = 52094, + [SMALL_STATE(3244)] = 52172, + [SMALL_STATE(3245)] = 52232, + [SMALL_STATE(3246)] = 52294, + [SMALL_STATE(3247)] = 52358, + [SMALL_STATE(3248)] = 52418, + [SMALL_STATE(3249)] = 52478, + [SMALL_STATE(3250)] = 52540, + [SMALL_STATE(3251)] = 52618, + [SMALL_STATE(3252)] = 52682, + [SMALL_STATE(3253)] = 52746, + [SMALL_STATE(3254)] = 52808, + [SMALL_STATE(3255)] = 52867, + [SMALL_STATE(3256)] = 52932, + [SMALL_STATE(3257)] = 52995, + [SMALL_STATE(3258)] = 53060, + [SMALL_STATE(3259)] = 53127, + [SMALL_STATE(3260)] = 53186, + [SMALL_STATE(3261)] = 53251, + [SMALL_STATE(3262)] = 53314, + [SMALL_STATE(3263)] = 53375, + [SMALL_STATE(3264)] = 53436, + [SMALL_STATE(3265)] = 53501, + [SMALL_STATE(3266)] = 53562, + [SMALL_STATE(3267)] = 53625, + [SMALL_STATE(3268)] = 53686, + [SMALL_STATE(3269)] = 53747, + [SMALL_STATE(3270)] = 53810, + [SMALL_STATE(3271)] = 53871, + [SMALL_STATE(3272)] = 53938, + [SMALL_STATE(3273)] = 54005, + [SMALL_STATE(3274)] = 54066, + [SMALL_STATE(3275)] = 54137, + [SMALL_STATE(3276)] = 54196, + [SMALL_STATE(3277)] = 54255, + [SMALL_STATE(3278)] = 54314, + [SMALL_STATE(3279)] = 54373, + [SMALL_STATE(3280)] = 54432, + [SMALL_STATE(3281)] = 54493, + [SMALL_STATE(3282)] = 54572, + [SMALL_STATE(3283)] = 54633, + [SMALL_STATE(3284)] = 54692, + [SMALL_STATE(3285)] = 54751, + [SMALL_STATE(3286)] = 54830, + [SMALL_STATE(3287)] = 54897, + [SMALL_STATE(3288)] = 54960, + [SMALL_STATE(3289)] = 55018, + [SMALL_STATE(3290)] = 55080, + [SMALL_STATE(3291)] = 55144, + [SMALL_STATE(3292)] = 55206, + [SMALL_STATE(3293)] = 55270, + [SMALL_STATE(3294)] = 55346, + [SMALL_STATE(3295)] = 55422, + [SMALL_STATE(3296)] = 55498, + [SMALL_STATE(3297)] = 55562, + [SMALL_STATE(3298)] = 55638, + [SMALL_STATE(3299)] = 55714, + [SMALL_STATE(3300)] = 55772, + [SMALL_STATE(3301)] = 55830, + [SMALL_STATE(3302)] = 55888, + [SMALL_STATE(3303)] = 55946, + [SMALL_STATE(3304)] = 56010, + [SMALL_STATE(3305)] = 56072, + [SMALL_STATE(3306)] = 56134, + [SMALL_STATE(3307)] = 56192, + [SMALL_STATE(3308)] = 56250, + [SMALL_STATE(3309)] = 56312, + [SMALL_STATE(3310)] = 56374, + [SMALL_STATE(3311)] = 56438, + [SMALL_STATE(3312)] = 56500, + [SMALL_STATE(3313)] = 56560, + [SMALL_STATE(3314)] = 56620, + [SMALL_STATE(3315)] = 56696, + [SMALL_STATE(3316)] = 56754, + [SMALL_STATE(3317)] = 56814, + [SMALL_STATE(3318)] = 56872, + [SMALL_STATE(3319)] = 56948, + [SMALL_STATE(3320)] = 57006, + [SMALL_STATE(3321)] = 57068, + [SMALL_STATE(3322)] = 57146, + [SMALL_STATE(3323)] = 57204, + [SMALL_STATE(3324)] = 57280, + [SMALL_STATE(3325)] = 57340, + [SMALL_STATE(3326)] = 57406, + [SMALL_STATE(3327)] = 57466, + [SMALL_STATE(3328)] = 57544, + [SMALL_STATE(3329)] = 57610, + [SMALL_STATE(3330)] = 57674, + [SMALL_STATE(3331)] = 57735, + [SMALL_STATE(3332)] = 57798, + [SMALL_STATE(3333)] = 57857, + [SMALL_STATE(3334)] = 57916, + [SMALL_STATE(3335)] = 57975, + [SMALL_STATE(3336)] = 58048, + [SMALL_STATE(3337)] = 58121, + [SMALL_STATE(3338)] = 58184, + [SMALL_STATE(3339)] = 58245, + [SMALL_STATE(3340)] = 58318, + [SMALL_STATE(3341)] = 58379, + [SMALL_STATE(3342)] = 58454, + [SMALL_STATE(3343)] = 58517, + [SMALL_STATE(3344)] = 58578, + [SMALL_STATE(3345)] = 58641, + [SMALL_STATE(3346)] = 58704, + [SMALL_STATE(3347)] = 58767, + [SMALL_STATE(3348)] = 58830, + [SMALL_STATE(3349)] = 58891, + [SMALL_STATE(3350)] = 58958, + [SMALL_STATE(3351)] = 59017, + [SMALL_STATE(3352)] = 59090, + [SMALL_STATE(3353)] = 59147, + [SMALL_STATE(3354)] = 59206, + [SMALL_STATE(3355)] = 59265, + [SMALL_STATE(3356)] = 59324, + [SMALL_STATE(3357)] = 59383, + [SMALL_STATE(3358)] = 59458, + [SMALL_STATE(3359)] = 59519, + [SMALL_STATE(3360)] = 59578, + [SMALL_STATE(3361)] = 59637, + [SMALL_STATE(3362)] = 59694, + [SMALL_STATE(3363)] = 59769, + [SMALL_STATE(3364)] = 59826, + [SMALL_STATE(3365)] = 59883, + [SMALL_STATE(3366)] = 59958, + [SMALL_STATE(3367)] = 60021, + [SMALL_STATE(3368)] = 60084, + [SMALL_STATE(3369)] = 60147, + [SMALL_STATE(3370)] = 60208, + [SMALL_STATE(3371)] = 60281, + [SMALL_STATE(3372)] = 60342, + [SMALL_STATE(3373)] = 60415, + [SMALL_STATE(3374)] = 60472, + [SMALL_STATE(3375)] = 60535, + [SMALL_STATE(3376)] = 60610, + [SMALL_STATE(3377)] = 60685, + [SMALL_STATE(3378)] = 60746, + [SMALL_STATE(3379)] = 60803, + [SMALL_STATE(3380)] = 60860, + [SMALL_STATE(3381)] = 60935, + [SMALL_STATE(3382)] = 61010, + [SMALL_STATE(3383)] = 61067, + [SMALL_STATE(3384)] = 61130, + [SMALL_STATE(3385)] = 61189, + [SMALL_STATE(3386)] = 61248, + [SMALL_STATE(3387)] = 61309, + [SMALL_STATE(3388)] = 61368, + [SMALL_STATE(3389)] = 61427, + [SMALL_STATE(3390)] = 61483, + [SMALL_STATE(3391)] = 61539, + [SMALL_STATE(3392)] = 61595, + [SMALL_STATE(3393)] = 61651, + [SMALL_STATE(3394)] = 61713, + [SMALL_STATE(3395)] = 61773, + [SMALL_STATE(3396)] = 61829, + [SMALL_STATE(3397)] = 61885, + [SMALL_STATE(3398)] = 61941, + [SMALL_STATE(3399)] = 61997, + [SMALL_STATE(3400)] = 62061, + [SMALL_STATE(3401)] = 62117, + [SMALL_STATE(3402)] = 62177, + [SMALL_STATE(3403)] = 62237, + [SMALL_STATE(3404)] = 62299, + [SMALL_STATE(3405)] = 62355, + [SMALL_STATE(3406)] = 62411, + [SMALL_STATE(3407)] = 62473, + [SMALL_STATE(3408)] = 62535, + [SMALL_STATE(3409)] = 62591, + [SMALL_STATE(3410)] = 62653, + [SMALL_STATE(3411)] = 62725, + [SMALL_STATE(3412)] = 62783, + [SMALL_STATE(3413)] = 62839, + [SMALL_STATE(3414)] = 62899, + [SMALL_STATE(3415)] = 62961, + [SMALL_STATE(3416)] = 63017, + [SMALL_STATE(3417)] = 63075, + [SMALL_STATE(3418)] = 63135, + [SMALL_STATE(3419)] = 63195, + [SMALL_STATE(3420)] = 63253, + [SMALL_STATE(3421)] = 63313, + [SMALL_STATE(3422)] = 63385, + [SMALL_STATE(3423)] = 63457, + [SMALL_STATE(3424)] = 63519, + [SMALL_STATE(3425)] = 63579, + [SMALL_STATE(3426)] = 63639, + [SMALL_STATE(3427)] = 63701, + [SMALL_STATE(3428)] = 63761, + [SMALL_STATE(3429)] = 63819, + [SMALL_STATE(3430)] = 63879, + [SMALL_STATE(3431)] = 63939, + [SMALL_STATE(3432)] = 63999, + [SMALL_STATE(3433)] = 64061, + [SMALL_STATE(3434)] = 64119, + [SMALL_STATE(3435)] = 64179, + [SMALL_STATE(3436)] = 64237, + [SMALL_STATE(3437)] = 64295, + [SMALL_STATE(3438)] = 64355, + [SMALL_STATE(3439)] = 64413, + [SMALL_STATE(3440)] = 64469, + [SMALL_STATE(3441)] = 64529, + [SMALL_STATE(3442)] = 64589, + [SMALL_STATE(3443)] = 64645, + [SMALL_STATE(3444)] = 64705, + [SMALL_STATE(3445)] = 64763, + [SMALL_STATE(3446)] = 64819, + [SMALL_STATE(3447)] = 64879, + [SMALL_STATE(3448)] = 64935, + [SMALL_STATE(3449)] = 64991, + [SMALL_STATE(3450)] = 65049, + [SMALL_STATE(3451)] = 65107, + [SMALL_STATE(3452)] = 65171, + [SMALL_STATE(3453)] = 65231, + [SMALL_STATE(3454)] = 65289, + [SMALL_STATE(3455)] = 65349, + [SMALL_STATE(3456)] = 65405, + [SMALL_STATE(3457)] = 65465, + [SMALL_STATE(3458)] = 65525, + [SMALL_STATE(3459)] = 65581, + [SMALL_STATE(3460)] = 65639, + [SMALL_STATE(3461)] = 65699, + [SMALL_STATE(3462)] = 65759, + [SMALL_STATE(3463)] = 65819, + [SMALL_STATE(3464)] = 65879, + [SMALL_STATE(3465)] = 65941, + [SMALL_STATE(3466)] = 66013, + [SMALL_STATE(3467)] = 66085, + [SMALL_STATE(3468)] = 66145, + [SMALL_STATE(3469)] = 66207, + [SMALL_STATE(3470)] = 66269, + [SMALL_STATE(3471)] = 66341, + [SMALL_STATE(3472)] = 66399, + [SMALL_STATE(3473)] = 66457, + [SMALL_STATE(3474)] = 66515, + [SMALL_STATE(3475)] = 66571, + [SMALL_STATE(3476)] = 66627, + [SMALL_STATE(3477)] = 66686, + [SMALL_STATE(3478)] = 66747, + [SMALL_STATE(3479)] = 66806, + [SMALL_STATE(3480)] = 66863, + [SMALL_STATE(3481)] = 66920, + [SMALL_STATE(3482)] = 66979, + [SMALL_STATE(3483)] = 67040, + [SMALL_STATE(3484)] = 67099, + [SMALL_STATE(3485)] = 67154, + [SMALL_STATE(3486)] = 67215, + [SMALL_STATE(3487)] = 67274, + [SMALL_STATE(3488)] = 67331, + [SMALL_STATE(3489)] = 67392, + [SMALL_STATE(3490)] = 67451, + [SMALL_STATE(3491)] = 67506, + [SMALL_STATE(3492)] = 67563, + [SMALL_STATE(3493)] = 67618, + [SMALL_STATE(3494)] = 67673, + [SMALL_STATE(3495)] = 67734, + [SMALL_STATE(3496)] = 67793, + [SMALL_STATE(3497)] = 67854, + [SMALL_STATE(3498)] = 67915, + [SMALL_STATE(3499)] = 67974, + [SMALL_STATE(3500)] = 68031, + [SMALL_STATE(3501)] = 68086, + [SMALL_STATE(3502)] = 68143, + [SMALL_STATE(3503)] = 68200, + [SMALL_STATE(3504)] = 68259, + [SMALL_STATE(3505)] = 68316, + [SMALL_STATE(3506)] = 68373, + [SMALL_STATE(3507)] = 68434, + [SMALL_STATE(3508)] = 68491, + [SMALL_STATE(3509)] = 68550, + [SMALL_STATE(3510)] = 68609, + [SMALL_STATE(3511)] = 68666, + [SMALL_STATE(3512)] = 68723, + [SMALL_STATE(3513)] = 68780, + [SMALL_STATE(3514)] = 68837, + [SMALL_STATE(3515)] = 68894, + [SMALL_STATE(3516)] = 68953, + [SMALL_STATE(3517)] = 69008, + [SMALL_STATE(3518)] = 69063, + [SMALL_STATE(3519)] = 69124, + [SMALL_STATE(3520)] = 69179, + [SMALL_STATE(3521)] = 69238, + [SMALL_STATE(3522)] = 69297, + [SMALL_STATE(3523)] = 69356, + [SMALL_STATE(3524)] = 69415, + [SMALL_STATE(3525)] = 69476, + [SMALL_STATE(3526)] = 69531, + [SMALL_STATE(3527)] = 69586, + [SMALL_STATE(3528)] = 69645, + [SMALL_STATE(3529)] = 69704, + [SMALL_STATE(3530)] = 69763, + [SMALL_STATE(3531)] = 69822, + [SMALL_STATE(3532)] = 69881, + [SMALL_STATE(3533)] = 69940, + [SMALL_STATE(3534)] = 69999, + [SMALL_STATE(3535)] = 70106, + [SMALL_STATE(3536)] = 70163, + [SMALL_STATE(3537)] = 70222, + [SMALL_STATE(3538)] = 70279, + [SMALL_STATE(3539)] = 70338, + [SMALL_STATE(3540)] = 70393, + [SMALL_STATE(3541)] = 70452, + [SMALL_STATE(3542)] = 70511, + [SMALL_STATE(3543)] = 70572, + [SMALL_STATE(3544)] = 70629, + [SMALL_STATE(3545)] = 70684, + [SMALL_STATE(3546)] = 70739, + [SMALL_STATE(3547)] = 70794, + [SMALL_STATE(3548)] = 70849, + [SMALL_STATE(3549)] = 70904, + [SMALL_STATE(3550)] = 70963, + [SMALL_STATE(3551)] = 71022, + [SMALL_STATE(3552)] = 71081, + [SMALL_STATE(3553)] = 71138, + [SMALL_STATE(3554)] = 71197, + [SMALL_STATE(3555)] = 71256, + [SMALL_STATE(3556)] = 71315, + [SMALL_STATE(3557)] = 71374, + [SMALL_STATE(3558)] = 71433, + [SMALL_STATE(3559)] = 71494, + [SMALL_STATE(3560)] = 71549, + [SMALL_STATE(3561)] = 71608, + [SMALL_STATE(3562)] = 71669, + [SMALL_STATE(3563)] = 71724, + [SMALL_STATE(3564)] = 71779, + [SMALL_STATE(3565)] = 71838, + [SMALL_STATE(3566)] = 71897, + [SMALL_STATE(3567)] = 71954, + [SMALL_STATE(3568)] = 72015, + [SMALL_STATE(3569)] = 72078, + [SMALL_STATE(3570)] = 72133, + [SMALL_STATE(3571)] = 72190, + [SMALL_STATE(3572)] = 72247, + [SMALL_STATE(3573)] = 72302, + [SMALL_STATE(3574)] = 72357, + [SMALL_STATE(3575)] = 72414, + [SMALL_STATE(3576)] = 72469, + [SMALL_STATE(3577)] = 72530, + [SMALL_STATE(3578)] = 72589, + [SMALL_STATE(3579)] = 72648, + [SMALL_STATE(3580)] = 72707, + [SMALL_STATE(3581)] = 72766, + [SMALL_STATE(3582)] = 72825, + [SMALL_STATE(3583)] = 72884, + [SMALL_STATE(3584)] = 72941, + [SMALL_STATE(3585)] = 72996, + [SMALL_STATE(3586)] = 73103, + [SMALL_STATE(3587)] = 73162, + [SMALL_STATE(3588)] = 73217, + [SMALL_STATE(3589)] = 73272, + [SMALL_STATE(3590)] = 73331, + [SMALL_STATE(3591)] = 73390, + [SMALL_STATE(3592)] = 73449, + [SMALL_STATE(3593)] = 73505, + [SMALL_STATE(3594)] = 73563, + [SMALL_STATE(3595)] = 73621, + [SMALL_STATE(3596)] = 73679, + [SMALL_STATE(3597)] = 73737, + [SMALL_STATE(3598)] = 73795, + [SMALL_STATE(3599)] = 73855, + [SMALL_STATE(3600)] = 73909, + [SMALL_STATE(3601)] = 73969, + [SMALL_STATE(3602)] = 74025, + [SMALL_STATE(3603)] = 74085, + [SMALL_STATE(3604)] = 74143, + [SMALL_STATE(3605)] = 74199, + [SMALL_STATE(3606)] = 74267, + [SMALL_STATE(3607)] = 74325, + [SMALL_STATE(3608)] = 74381, + [SMALL_STATE(3609)] = 74437, + [SMALL_STATE(3610)] = 74491, + [SMALL_STATE(3611)] = 74547, + [SMALL_STATE(3612)] = 74601, + [SMALL_STATE(3613)] = 74657, + [SMALL_STATE(3614)] = 74711, + [SMALL_STATE(3615)] = 74771, + [SMALL_STATE(3616)] = 74827, + [SMALL_STATE(3617)] = 74881, + [SMALL_STATE(3618)] = 74935, + [SMALL_STATE(3619)] = 74991, + [SMALL_STATE(3620)] = 75047, + [SMALL_STATE(3621)] = 75101, + [SMALL_STATE(3622)] = 75157, + [SMALL_STATE(3623)] = 75215, + [SMALL_STATE(3624)] = 75271, + [SMALL_STATE(3625)] = 75333, + [SMALL_STATE(3626)] = 75387, + [SMALL_STATE(3627)] = 75445, + [SMALL_STATE(3628)] = 75503, + [SMALL_STATE(3629)] = 75561, + [SMALL_STATE(3630)] = 75619, + [SMALL_STATE(3631)] = 75673, + [SMALL_STATE(3632)] = 75727, + [SMALL_STATE(3633)] = 75787, + [SMALL_STATE(3634)] = 75841, + [SMALL_STATE(3635)] = 75897, + [SMALL_STATE(3636)] = 75955, + [SMALL_STATE(3637)] = 76009, + [SMALL_STATE(3638)] = 76063, + [SMALL_STATE(3639)] = 76121, + [SMALL_STATE(3640)] = 76175, + [SMALL_STATE(3641)] = 76229, + [SMALL_STATE(3642)] = 76283, + [SMALL_STATE(3643)] = 76337, + [SMALL_STATE(3644)] = 76395, + [SMALL_STATE(3645)] = 76453, + [SMALL_STATE(3646)] = 76511, + [SMALL_STATE(3647)] = 76565, + [SMALL_STATE(3648)] = 76627, + [SMALL_STATE(3649)] = 76687, + [SMALL_STATE(3650)] = 76741, + [SMALL_STATE(3651)] = 76801, + [SMALL_STATE(3652)] = 76855, + [SMALL_STATE(3653)] = 76909, + [SMALL_STATE(3654)] = 76963, + [SMALL_STATE(3655)] = 77023, + [SMALL_STATE(3656)] = 77079, + [SMALL_STATE(3657)] = 77133, + [SMALL_STATE(3658)] = 77189, + [SMALL_STATE(3659)] = 77243, + [SMALL_STATE(3660)] = 77299, + [SMALL_STATE(3661)] = 77353, + [SMALL_STATE(3662)] = 77407, + [SMALL_STATE(3663)] = 77461, + [SMALL_STATE(3664)] = 77519, + [SMALL_STATE(3665)] = 77573, + [SMALL_STATE(3666)] = 77627, + [SMALL_STATE(3667)] = 77685, + [SMALL_STATE(3668)] = 77741, + [SMALL_STATE(3669)] = 77799, + [SMALL_STATE(3670)] = 77857, + [SMALL_STATE(3671)] = 77913, + [SMALL_STATE(3672)] = 77967, + [SMALL_STATE(3673)] = 78021, + [SMALL_STATE(3674)] = 78079, + [SMALL_STATE(3675)] = 78137, + [SMALL_STATE(3676)] = 78193, + [SMALL_STATE(3677)] = 78249, + [SMALL_STATE(3678)] = 78307, + [SMALL_STATE(3679)] = 78363, + [SMALL_STATE(3680)] = 78423, + [SMALL_STATE(3681)] = 78481, + [SMALL_STATE(3682)] = 78537, + [SMALL_STATE(3683)] = 78591, + [SMALL_STATE(3684)] = 78645, + [SMALL_STATE(3685)] = 78699, + [SMALL_STATE(3686)] = 78753, + [SMALL_STATE(3687)] = 78809, + [SMALL_STATE(3688)] = 78863, + [SMALL_STATE(3689)] = 78917, + [SMALL_STATE(3690)] = 78975, + [SMALL_STATE(3691)] = 79031, + [SMALL_STATE(3692)] = 79087, + [SMALL_STATE(3693)] = 79147, + [SMALL_STATE(3694)] = 79205, + [SMALL_STATE(3695)] = 79259, + [SMALL_STATE(3696)] = 79313, + [SMALL_STATE(3697)] = 79369, + [SMALL_STATE(3698)] = 79425, + [SMALL_STATE(3699)] = 79479, + [SMALL_STATE(3700)] = 79583, + [SMALL_STATE(3701)] = 79641, + [SMALL_STATE(3702)] = 79697, + [SMALL_STATE(3703)] = 79801, + [SMALL_STATE(3704)] = 79857, + [SMALL_STATE(3705)] = 79913, + [SMALL_STATE(3706)] = 79971, + [SMALL_STATE(3707)] = 80025, + [SMALL_STATE(3708)] = 80083, + [SMALL_STATE(3709)] = 80137, + [SMALL_STATE(3710)] = 80195, + [SMALL_STATE(3711)] = 80249, + [SMALL_STATE(3712)] = 80307, + [SMALL_STATE(3713)] = 80361, + [SMALL_STATE(3714)] = 80417, + [SMALL_STATE(3715)] = 80471, + [SMALL_STATE(3716)] = 80525, + [SMALL_STATE(3717)] = 80581, + [SMALL_STATE(3718)] = 80635, + [SMALL_STATE(3719)] = 80691, + [SMALL_STATE(3720)] = 80745, + [SMALL_STATE(3721)] = 80801, + [SMALL_STATE(3722)] = 80855, + [SMALL_STATE(3723)] = 80921, + [SMALL_STATE(3724)] = 80977, + [SMALL_STATE(3725)] = 81033, + [SMALL_STATE(3726)] = 81087, + [SMALL_STATE(3727)] = 81141, + [SMALL_STATE(3728)] = 81195, + [SMALL_STATE(3729)] = 81251, + [SMALL_STATE(3730)] = 81311, + [SMALL_STATE(3731)] = 81364, + [SMALL_STATE(3732)] = 81417, + [SMALL_STATE(3733)] = 81470, + [SMALL_STATE(3734)] = 81523, + [SMALL_STATE(3735)] = 81576, + [SMALL_STATE(3736)] = 81631, + [SMALL_STATE(3737)] = 81684, + [SMALL_STATE(3738)] = 81759, + [SMALL_STATE(3739)] = 81812, + [SMALL_STATE(3740)] = 81867, + [SMALL_STATE(3741)] = 81922, + [SMALL_STATE(3742)] = 81977, + [SMALL_STATE(3743)] = 82030, + [SMALL_STATE(3744)] = 82085, + [SMALL_STATE(3745)] = 82138, + [SMALL_STATE(3746)] = 82191, + [SMALL_STATE(3747)] = 82252, + [SMALL_STATE(3748)] = 82305, + [SMALL_STATE(3749)] = 82358, + [SMALL_STATE(3750)] = 82413, + [SMALL_STATE(3751)] = 82468, + [SMALL_STATE(3752)] = 82521, + [SMALL_STATE(3753)] = 82574, + [SMALL_STATE(3754)] = 82631, + [SMALL_STATE(3755)] = 82684, + [SMALL_STATE(3756)] = 82737, + [SMALL_STATE(3757)] = 82790, + [SMALL_STATE(3758)] = 82851, + [SMALL_STATE(3759)] = 82912, + [SMALL_STATE(3760)] = 82967, + [SMALL_STATE(3761)] = 83020, + [SMALL_STATE(3762)] = 83073, + [SMALL_STATE(3763)] = 83126, + [SMALL_STATE(3764)] = 83193, + [SMALL_STATE(3765)] = 83246, + [SMALL_STATE(3766)] = 83299, + [SMALL_STATE(3767)] = 83352, + [SMALL_STATE(3768)] = 83405, + [SMALL_STATE(3769)] = 83458, + [SMALL_STATE(3770)] = 83511, + [SMALL_STATE(3771)] = 83564, + [SMALL_STATE(3772)] = 83623, + [SMALL_STATE(3773)] = 83676, + [SMALL_STATE(3774)] = 83729, + [SMALL_STATE(3775)] = 83786, + [SMALL_STATE(3776)] = 83841, + [SMALL_STATE(3777)] = 83896, + [SMALL_STATE(3778)] = 83951, + [SMALL_STATE(3779)] = 84006, + [SMALL_STATE(3780)] = 84059, + [SMALL_STATE(3781)] = 84114, + [SMALL_STATE(3782)] = 84169, + [SMALL_STATE(3783)] = 84224, + [SMALL_STATE(3784)] = 84277, + [SMALL_STATE(3785)] = 84330, + [SMALL_STATE(3786)] = 84383, + [SMALL_STATE(3787)] = 84436, + [SMALL_STATE(3788)] = 84489, + [SMALL_STATE(3789)] = 84544, + [SMALL_STATE(3790)] = 84609, + [SMALL_STATE(3791)] = 84664, + [SMALL_STATE(3792)] = 84717, + [SMALL_STATE(3793)] = 84772, + [SMALL_STATE(3794)] = 84825, + [SMALL_STATE(3795)] = 84878, + [SMALL_STATE(3796)] = 84931, + [SMALL_STATE(3797)] = 84986, + [SMALL_STATE(3798)] = 85045, + [SMALL_STATE(3799)] = 85104, + [SMALL_STATE(3800)] = 85159, + [SMALL_STATE(3801)] = 85212, + [SMALL_STATE(3802)] = 85265, + [SMALL_STATE(3803)] = 85318, + [SMALL_STATE(3804)] = 85373, + [SMALL_STATE(3805)] = 85426, + [SMALL_STATE(3806)] = 85479, + [SMALL_STATE(3807)] = 85532, + [SMALL_STATE(3808)] = 85589, + [SMALL_STATE(3809)] = 85642, + [SMALL_STATE(3810)] = 85697, + [SMALL_STATE(3811)] = 85752, + [SMALL_STATE(3812)] = 85805, + [SMALL_STATE(3813)] = 85858, + [SMALL_STATE(3814)] = 85913, + [SMALL_STATE(3815)] = 85968, + [SMALL_STATE(3816)] = 86023, + [SMALL_STATE(3817)] = 86076, + [SMALL_STATE(3818)] = 86131, + [SMALL_STATE(3819)] = 86184, + [SMALL_STATE(3820)] = 86241, + [SMALL_STATE(3821)] = 86294, + [SMALL_STATE(3822)] = 86349, + [SMALL_STATE(3823)] = 86408, + [SMALL_STATE(3824)] = 86461, + [SMALL_STATE(3825)] = 86520, + [SMALL_STATE(3826)] = 86573, + [SMALL_STATE(3827)] = 86628, + [SMALL_STATE(3828)] = 86687, + [SMALL_STATE(3829)] = 86744, + [SMALL_STATE(3830)] = 86801, + [SMALL_STATE(3831)] = 86854, + [SMALL_STATE(3832)] = 86909, + [SMALL_STATE(3833)] = 86964, + [SMALL_STATE(3834)] = 87031, + [SMALL_STATE(3835)] = 87084, + [SMALL_STATE(3836)] = 87149, + [SMALL_STATE(3837)] = 87202, + [SMALL_STATE(3838)] = 87255, + [SMALL_STATE(3839)] = 87312, + [SMALL_STATE(3840)] = 87369, + [SMALL_STATE(3841)] = 87424, + [SMALL_STATE(3842)] = 87479, + [SMALL_STATE(3843)] = 87538, + [SMALL_STATE(3844)] = 87595, + [SMALL_STATE(3845)] = 87652, + [SMALL_STATE(3846)] = 87705, + [SMALL_STATE(3847)] = 87758, + [SMALL_STATE(3848)] = 87811, + [SMALL_STATE(3849)] = 87866, + [SMALL_STATE(3850)] = 87921, + [SMALL_STATE(3851)] = 87974, + [SMALL_STATE(3852)] = 88049, + [SMALL_STATE(3853)] = 88110, + [SMALL_STATE(3854)] = 88163, + [SMALL_STATE(3855)] = 88218, + [SMALL_STATE(3856)] = 88275, + [SMALL_STATE(3857)] = 88328, + [SMALL_STATE(3858)] = 88383, + [SMALL_STATE(3859)] = 88438, + [SMALL_STATE(3860)] = 88491, + [SMALL_STATE(3861)] = 88546, + [SMALL_STATE(3862)] = 88601, + [SMALL_STATE(3863)] = 88656, + [SMALL_STATE(3864)] = 88711, + [SMALL_STATE(3865)] = 88764, + [SMALL_STATE(3866)] = 88819, + [SMALL_STATE(3867)] = 88884, + [SMALL_STATE(3868)] = 88937, + [SMALL_STATE(3869)] = 88990, + [SMALL_STATE(3870)] = 89043, + [SMALL_STATE(3871)] = 89096, + [SMALL_STATE(3872)] = 89149, + [SMALL_STATE(3873)] = 89206, + [SMALL_STATE(3874)] = 89263, + [SMALL_STATE(3875)] = 89318, + [SMALL_STATE(3876)] = 89373, + [SMALL_STATE(3877)] = 89426, + [SMALL_STATE(3878)] = 89479, + [SMALL_STATE(3879)] = 89532, + [SMALL_STATE(3880)] = 89585, + [SMALL_STATE(3881)] = 89638, + [SMALL_STATE(3882)] = 89691, + [SMALL_STATE(3883)] = 89748, + [SMALL_STATE(3884)] = 89801, + [SMALL_STATE(3885)] = 89854, + [SMALL_STATE(3886)] = 89909, + [SMALL_STATE(3887)] = 89966, + [SMALL_STATE(3888)] = 90019, + [SMALL_STATE(3889)] = 90076, + [SMALL_STATE(3890)] = 90129, + [SMALL_STATE(3891)] = 90182, + [SMALL_STATE(3892)] = 90237, + [SMALL_STATE(3893)] = 90292, + [SMALL_STATE(3894)] = 90344, + [SMALL_STATE(3895)] = 90396, + [SMALL_STATE(3896)] = 90448, + [SMALL_STATE(3897)] = 90504, + [SMALL_STATE(3898)] = 90558, + [SMALL_STATE(3899)] = 90622, + [SMALL_STATE(3900)] = 90674, + [SMALL_STATE(3901)] = 90730, + [SMALL_STATE(3902)] = 90782, + [SMALL_STATE(3903)] = 90846, + [SMALL_STATE(3904)] = 90910, + [SMALL_STATE(3905)] = 90962, + [SMALL_STATE(3906)] = 91014, + [SMALL_STATE(3907)] = 91078, + [SMALL_STATE(3908)] = 91130, + [SMALL_STATE(3909)] = 91182, + [SMALL_STATE(3910)] = 91234, + [SMALL_STATE(3911)] = 91286, + [SMALL_STATE(3912)] = 91358, + [SMALL_STATE(3913)] = 91410, + [SMALL_STATE(3914)] = 91462, + [SMALL_STATE(3915)] = 91514, + [SMALL_STATE(3916)] = 91568, + [SMALL_STATE(3917)] = 91620, + [SMALL_STATE(3918)] = 91672, + [SMALL_STATE(3919)] = 91724, + [SMALL_STATE(3920)] = 91776, + [SMALL_STATE(3921)] = 91828, + [SMALL_STATE(3922)] = 91880, + [SMALL_STATE(3923)] = 91934, + [SMALL_STATE(3924)] = 91986, + [SMALL_STATE(3925)] = 92038, + [SMALL_STATE(3926)] = 92090, + [SMALL_STATE(3927)] = 92188, + [SMALL_STATE(3928)] = 92240, + [SMALL_STATE(3929)] = 92292, + [SMALL_STATE(3930)] = 92350, + [SMALL_STATE(3931)] = 92422, + [SMALL_STATE(3932)] = 92476, + [SMALL_STATE(3933)] = 92530, + [SMALL_STATE(3934)] = 92584, + [SMALL_STATE(3935)] = 92636, + [SMALL_STATE(3936)] = 92700, + [SMALL_STATE(3937)] = 92772, + [SMALL_STATE(3938)] = 92824, + [SMALL_STATE(3939)] = 92890, + [SMALL_STATE(3940)] = 92942, + [SMALL_STATE(3941)] = 92994, + [SMALL_STATE(3942)] = 93046, + [SMALL_STATE(3943)] = 93098, + [SMALL_STATE(3944)] = 93154, + [SMALL_STATE(3945)] = 93208, + [SMALL_STATE(3946)] = 93262, + [SMALL_STATE(3947)] = 93316, + [SMALL_STATE(3948)] = 93368, + [SMALL_STATE(3949)] = 93420, + [SMALL_STATE(3950)] = 93474, + [SMALL_STATE(3951)] = 93532, + [SMALL_STATE(3952)] = 93584, + [SMALL_STATE(3953)] = 93636, + [SMALL_STATE(3954)] = 93700, + [SMALL_STATE(3955)] = 93752, + [SMALL_STATE(3956)] = 93804, + [SMALL_STATE(3957)] = 93856, + [SMALL_STATE(3958)] = 93908, + [SMALL_STATE(3959)] = 93964, + [SMALL_STATE(3960)] = 94016, + [SMALL_STATE(3961)] = 94070, + [SMALL_STATE(3962)] = 94124, + [SMALL_STATE(3963)] = 94176, + [SMALL_STATE(3964)] = 94230, + [SMALL_STATE(3965)] = 94294, + [SMALL_STATE(3966)] = 94350, + [SMALL_STATE(3967)] = 94402, + [SMALL_STATE(3968)] = 94454, + [SMALL_STATE(3969)] = 94506, + [SMALL_STATE(3970)] = 94558, + [SMALL_STATE(3971)] = 94610, + [SMALL_STATE(3972)] = 94668, + [SMALL_STATE(3973)] = 94720, + [SMALL_STATE(3974)] = 94772, + [SMALL_STATE(3975)] = 94824, + [SMALL_STATE(3976)] = 94880, + [SMALL_STATE(3977)] = 94934, + [SMALL_STATE(3978)] = 94986, + [SMALL_STATE(3979)] = 95038, + [SMALL_STATE(3980)] = 95092, + [SMALL_STATE(3981)] = 95146, + [SMALL_STATE(3982)] = 95202, + [SMALL_STATE(3983)] = 95262, + [SMALL_STATE(3984)] = 95326, + [SMALL_STATE(3985)] = 95384, + [SMALL_STATE(3986)] = 95442, + [SMALL_STATE(3987)] = 95498, + [SMALL_STATE(3988)] = 95550, + [SMALL_STATE(3989)] = 95602, + [SMALL_STATE(3990)] = 95654, + [SMALL_STATE(3991)] = 95712, + [SMALL_STATE(3992)] = 95764, + [SMALL_STATE(3993)] = 95820, + [SMALL_STATE(3994)] = 95874, + [SMALL_STATE(3995)] = 95926, + [SMALL_STATE(3996)] = 95978, + [SMALL_STATE(3997)] = 96044, + [SMALL_STATE(3998)] = 96096, + [SMALL_STATE(3999)] = 96148, + [SMALL_STATE(4000)] = 96200, + [SMALL_STATE(4001)] = 96252, + [SMALL_STATE(4002)] = 96304, + [SMALL_STATE(4003)] = 96356, + [SMALL_STATE(4004)] = 96408, + [SMALL_STATE(4005)] = 96466, + [SMALL_STATE(4006)] = 96532, + [SMALL_STATE(4007)] = 96590, + [SMALL_STATE(4008)] = 96642, + [SMALL_STATE(4009)] = 96694, + [SMALL_STATE(4010)] = 96746, + [SMALL_STATE(4011)] = 96802, + [SMALL_STATE(4012)] = 96854, + [SMALL_STATE(4013)] = 96916, + [SMALL_STATE(4014)] = 96972, + [SMALL_STATE(4015)] = 97024, + [SMALL_STATE(4016)] = 97076, + [SMALL_STATE(4017)] = 97132, + [SMALL_STATE(4018)] = 97184, + [SMALL_STATE(4019)] = 97242, + [SMALL_STATE(4020)] = 97294, + [SMALL_STATE(4021)] = 97366, + [SMALL_STATE(4022)] = 97418, + [SMALL_STATE(4023)] = 97470, + [SMALL_STATE(4024)] = 97522, + [SMALL_STATE(4025)] = 97574, + [SMALL_STATE(4026)] = 97626, + [SMALL_STATE(4027)] = 97678, + [SMALL_STATE(4028)] = 97730, + [SMALL_STATE(4029)] = 97782, + [SMALL_STATE(4030)] = 97834, + [SMALL_STATE(4031)] = 97886, + [SMALL_STATE(4032)] = 97958, + [SMALL_STATE(4033)] = 98030, + [SMALL_STATE(4034)] = 98082, + [SMALL_STATE(4035)] = 98136, + [SMALL_STATE(4036)] = 98188, + [SMALL_STATE(4037)] = 98240, + [SMALL_STATE(4038)] = 98296, + [SMALL_STATE(4039)] = 98348, + [SMALL_STATE(4040)] = 98420, + [SMALL_STATE(4041)] = 98484, + [SMALL_STATE(4042)] = 98540, + [SMALL_STATE(4043)] = 98594, + [SMALL_STATE(4044)] = 98648, + [SMALL_STATE(4045)] = 98702, + [SMALL_STATE(4046)] = 98754, + [SMALL_STATE(4047)] = 98808, + [SMALL_STATE(4048)] = 98862, + [SMALL_STATE(4049)] = 98914, + [SMALL_STATE(4050)] = 98986, + [SMALL_STATE(4051)] = 99040, + [SMALL_STATE(4052)] = 99096, + [SMALL_STATE(4053)] = 99148, + [SMALL_STATE(4054)] = 99214, + [SMALL_STATE(4055)] = 99268, + [SMALL_STATE(4056)] = 99320, + [SMALL_STATE(4057)] = 99374, + [SMALL_STATE(4058)] = 99426, + [SMALL_STATE(4059)] = 99478, + [SMALL_STATE(4060)] = 99530, + [SMALL_STATE(4061)] = 99582, + [SMALL_STATE(4062)] = 99634, + [SMALL_STATE(4063)] = 99686, + [SMALL_STATE(4064)] = 99738, + [SMALL_STATE(4065)] = 99802, + [SMALL_STATE(4066)] = 99854, + [SMALL_STATE(4067)] = 99906, + [SMALL_STATE(4068)] = 100004, + [SMALL_STATE(4069)] = 100056, + [SMALL_STATE(4070)] = 100108, + [SMALL_STATE(4071)] = 100160, + [SMALL_STATE(4072)] = 100212, + [SMALL_STATE(4073)] = 100264, + [SMALL_STATE(4074)] = 100316, + [SMALL_STATE(4075)] = 100380, + [SMALL_STATE(4076)] = 100436, + [SMALL_STATE(4077)] = 100488, + [SMALL_STATE(4078)] = 100540, + [SMALL_STATE(4079)] = 100592, + [SMALL_STATE(4080)] = 100644, + [SMALL_STATE(4081)] = 100696, + [SMALL_STATE(4082)] = 100760, + [SMALL_STATE(4083)] = 100814, + [SMALL_STATE(4084)] = 100865, + [SMALL_STATE(4085)] = 100928, + [SMALL_STATE(4086)] = 100979, + [SMALL_STATE(4087)] = 101036, + [SMALL_STATE(4088)] = 101093, + [SMALL_STATE(4089)] = 101150, + [SMALL_STATE(4090)] = 101201, + [SMALL_STATE(4091)] = 101252, + [SMALL_STATE(4092)] = 101303, + [SMALL_STATE(4093)] = 101360, + [SMALL_STATE(4094)] = 101411, + [SMALL_STATE(4095)] = 101462, + [SMALL_STATE(4096)] = 101515, + [SMALL_STATE(4097)] = 101570, + [SMALL_STATE(4098)] = 101625, + [SMALL_STATE(4099)] = 101676, + [SMALL_STATE(4100)] = 101733, + [SMALL_STATE(4101)] = 101788, + [SMALL_STATE(4102)] = 101855, + [SMALL_STATE(4103)] = 101906, + [SMALL_STATE(4104)] = 101963, + [SMALL_STATE(4105)] = 102014, + [SMALL_STATE(4106)] = 102069, + [SMALL_STATE(4107)] = 102122, + [SMALL_STATE(4108)] = 102173, + [SMALL_STATE(4109)] = 102230, + [SMALL_STATE(4110)] = 102285, + [SMALL_STATE(4111)] = 102342, + [SMALL_STATE(4112)] = 102405, + [SMALL_STATE(4113)] = 102460, + [SMALL_STATE(4114)] = 102517, + [SMALL_STATE(4115)] = 102574, + [SMALL_STATE(4116)] = 102623, + [SMALL_STATE(4117)] = 102692, + [SMALL_STATE(4118)] = 102743, + [SMALL_STATE(4119)] = 102806, + [SMALL_STATE(4120)] = 102875, + [SMALL_STATE(4121)] = 102932, + [SMALL_STATE(4122)] = 102987, + [SMALL_STATE(4123)] = 103052, + [SMALL_STATE(4124)] = 103103, + [SMALL_STATE(4125)] = 103172, + [SMALL_STATE(4126)] = 103229, + [SMALL_STATE(4127)] = 103280, + [SMALL_STATE(4128)] = 103333, + [SMALL_STATE(4129)] = 103386, + [SMALL_STATE(4130)] = 103443, + [SMALL_STATE(4131)] = 103496, + [SMALL_STATE(4132)] = 103547, + [SMALL_STATE(4133)] = 103616, + [SMALL_STATE(4134)] = 103667, + [SMALL_STATE(4135)] = 103722, + [SMALL_STATE(4136)] = 103773, + [SMALL_STATE(4137)] = 103826, + [SMALL_STATE(4138)] = 103881, + [SMALL_STATE(4139)] = 103938, + [SMALL_STATE(4140)] = 103993, + [SMALL_STATE(4141)] = 104050, + [SMALL_STATE(4142)] = 104107, + [SMALL_STATE(4143)] = 104164, + [SMALL_STATE(4144)] = 104215, + [SMALL_STATE(4145)] = 104266, + [SMALL_STATE(4146)] = 104317, + [SMALL_STATE(4147)] = 104368, + [SMALL_STATE(4148)] = 104419, + [SMALL_STATE(4149)] = 104482, + [SMALL_STATE(4150)] = 104533, + [SMALL_STATE(4151)] = 104584, + [SMALL_STATE(4152)] = 104639, + [SMALL_STATE(4153)] = 104696, + [SMALL_STATE(4154)] = 104747, + [SMALL_STATE(4155)] = 104816, + [SMALL_STATE(4156)] = 104871, + [SMALL_STATE(4157)] = 104924, + [SMALL_STATE(4158)] = 104981, + [SMALL_STATE(4159)] = 105034, + [SMALL_STATE(4160)] = 105089, + [SMALL_STATE(4161)] = 105184, + [SMALL_STATE(4162)] = 105235, + [SMALL_STATE(4163)] = 105292, + [SMALL_STATE(4164)] = 105349, + [SMALL_STATE(4165)] = 105400, + [SMALL_STATE(4166)] = 105455, + [SMALL_STATE(4167)] = 105510, + [SMALL_STATE(4168)] = 105561, + [SMALL_STATE(4169)] = 105624, + [SMALL_STATE(4170)] = 105675, + [SMALL_STATE(4171)] = 105728, + [SMALL_STATE(4172)] = 105781, + [SMALL_STATE(4173)] = 105832, + [SMALL_STATE(4174)] = 105883, + [SMALL_STATE(4175)] = 105940, + [SMALL_STATE(4176)] = 105991, + [SMALL_STATE(4177)] = 106044, + [SMALL_STATE(4178)] = 106099, + [SMALL_STATE(4179)] = 106150, + [SMALL_STATE(4180)] = 106201, + [SMALL_STATE(4181)] = 106264, + [SMALL_STATE(4182)] = 106315, + [SMALL_STATE(4183)] = 106368, + [SMALL_STATE(4184)] = 106423, + [SMALL_STATE(4185)] = 106478, + [SMALL_STATE(4186)] = 106533, + [SMALL_STATE(4187)] = 106584, + [SMALL_STATE(4188)] = 106679, + [SMALL_STATE(4189)] = 106736, + [SMALL_STATE(4190)] = 106789, + [SMALL_STATE(4191)] = 106842, + [SMALL_STATE(4192)] = 106899, + [SMALL_STATE(4193)] = 106994, + [SMALL_STATE(4194)] = 107051, + [SMALL_STATE(4195)] = 107146, + [SMALL_STATE(4196)] = 107199, + [SMALL_STATE(4197)] = 107254, + [SMALL_STATE(4198)] = 107317, + [SMALL_STATE(4199)] = 107368, + [SMALL_STATE(4200)] = 107419, + [SMALL_STATE(4201)] = 107484, + [SMALL_STATE(4202)] = 107541, + [SMALL_STATE(4203)] = 107604, + [SMALL_STATE(4204)] = 107659, + [SMALL_STATE(4205)] = 107710, + [SMALL_STATE(4206)] = 107767, + [SMALL_STATE(4207)] = 107818, + [SMALL_STATE(4208)] = 107869, + [SMALL_STATE(4209)] = 107934, + [SMALL_STATE(4210)] = 107999, + [SMALL_STATE(4211)] = 108062, + [SMALL_STATE(4212)] = 108125, + [SMALL_STATE(4213)] = 108188, + [SMALL_STATE(4214)] = 108239, + [SMALL_STATE(4215)] = 108300, + [SMALL_STATE(4216)] = 108353, + [SMALL_STATE(4217)] = 108416, + [SMALL_STATE(4218)] = 108467, + [SMALL_STATE(4219)] = 108520, + [SMALL_STATE(4220)] = 108573, + [SMALL_STATE(4221)] = 108630, + [SMALL_STATE(4222)] = 108681, + [SMALL_STATE(4223)] = 108738, + [SMALL_STATE(4224)] = 108789, + [SMALL_STATE(4225)] = 108840, + [SMALL_STATE(4226)] = 108897, + [SMALL_STATE(4227)] = 108954, + [SMALL_STATE(4228)] = 109011, + [SMALL_STATE(4229)] = 109066, + [SMALL_STATE(4230)] = 109123, + [SMALL_STATE(4231)] = 109178, + [SMALL_STATE(4232)] = 109229, + [SMALL_STATE(4233)] = 109282, + [SMALL_STATE(4234)] = 109333, + [SMALL_STATE(4235)] = 109384, + [SMALL_STATE(4236)] = 109439, + [SMALL_STATE(4237)] = 109490, + [SMALL_STATE(4238)] = 109541, + [SMALL_STATE(4239)] = 109592, + [SMALL_STATE(4240)] = 109643, + [SMALL_STATE(4241)] = 109696, + [SMALL_STATE(4242)] = 109751, + [SMALL_STATE(4243)] = 109808, + [SMALL_STATE(4244)] = 109859, + [SMALL_STATE(4245)] = 109916, + [SMALL_STATE(4246)] = 109967, + [SMALL_STATE(4247)] = 110018, + [SMALL_STATE(4248)] = 110073, + [SMALL_STATE(4249)] = 110128, + [SMALL_STATE(4250)] = 110185, + [SMALL_STATE(4251)] = 110236, + [SMALL_STATE(4252)] = 110289, + [SMALL_STATE(4253)] = 110344, + [SMALL_STATE(4254)] = 110399, + [SMALL_STATE(4255)] = 110456, + [SMALL_STATE(4256)] = 110507, + [SMALL_STATE(4257)] = 110559, + [SMALL_STATE(4258)] = 110613, + [SMALL_STATE(4259)] = 110669, + [SMALL_STATE(4260)] = 110719, + [SMALL_STATE(4261)] = 110769, + [SMALL_STATE(4262)] = 110819, + [SMALL_STATE(4263)] = 110875, + [SMALL_STATE(4264)] = 110929, + [SMALL_STATE(4265)] = 110981, + [SMALL_STATE(4266)] = 111035, + [SMALL_STATE(4267)] = 111093, + [SMALL_STATE(4268)] = 111147, + [SMALL_STATE(4269)] = 111211, + [SMALL_STATE(4270)] = 111261, + [SMALL_STATE(4271)] = 111311, + [SMALL_STATE(4272)] = 111361, + [SMALL_STATE(4273)] = 111415, + [SMALL_STATE(4274)] = 111465, + [SMALL_STATE(4275)] = 111515, + [SMALL_STATE(4276)] = 111565, + [SMALL_STATE(4277)] = 111615, + [SMALL_STATE(4278)] = 111669, + [SMALL_STATE(4279)] = 111725, + [SMALL_STATE(4280)] = 111775, + [SMALL_STATE(4281)] = 111825, + [SMALL_STATE(4282)] = 111877, + [SMALL_STATE(4283)] = 111927, + [SMALL_STATE(4284)] = 111977, + [SMALL_STATE(4285)] = 112031, + [SMALL_STATE(4286)] = 112083, + [SMALL_STATE(4287)] = 112133, + [SMALL_STATE(4288)] = 112183, + [SMALL_STATE(4289)] = 112237, + [SMALL_STATE(4290)] = 112291, + [SMALL_STATE(4291)] = 112345, + [SMALL_STATE(4292)] = 112395, + [SMALL_STATE(4293)] = 112445, + [SMALL_STATE(4294)] = 112497, + [SMALL_STATE(4295)] = 112551, + [SMALL_STATE(4296)] = 112601, + [SMALL_STATE(4297)] = 112651, + [SMALL_STATE(4298)] = 112701, + [SMALL_STATE(4299)] = 112757, + [SMALL_STATE(4300)] = 112807, + [SMALL_STATE(4301)] = 112859, + [SMALL_STATE(4302)] = 112915, + [SMALL_STATE(4303)] = 112967, + [SMALL_STATE(4304)] = 113029, + [SMALL_STATE(4305)] = 113083, + [SMALL_STATE(4306)] = 113141, + [SMALL_STATE(4307)] = 113193, + [SMALL_STATE(4308)] = 113247, + [SMALL_STATE(4309)] = 113301, + [SMALL_STATE(4310)] = 113353, + [SMALL_STATE(4311)] = 113409, + [SMALL_STATE(4312)] = 113461, + [SMALL_STATE(4313)] = 113523, + [SMALL_STATE(4314)] = 113573, + [SMALL_STATE(4315)] = 113629, + [SMALL_STATE(4316)] = 113685, + [SMALL_STATE(4317)] = 113739, + [SMALL_STATE(4318)] = 113793, + [SMALL_STATE(4319)] = 113845, + [SMALL_STATE(4320)] = 113901, + [SMALL_STATE(4321)] = 113959, + [SMALL_STATE(4322)] = 114015, + [SMALL_STATE(4323)] = 114065, + [SMALL_STATE(4324)] = 114119, + [SMALL_STATE(4325)] = 114175, + [SMALL_STATE(4326)] = 114237, + [SMALL_STATE(4327)] = 114299, + [SMALL_STATE(4328)] = 114353, + [SMALL_STATE(4329)] = 114409, + [SMALL_STATE(4330)] = 114461, + [SMALL_STATE(4331)] = 114511, + [SMALL_STATE(4332)] = 114561, + [SMALL_STATE(4333)] = 114613, + [SMALL_STATE(4334)] = 114665, + [SMALL_STATE(4335)] = 114721, + [SMALL_STATE(4336)] = 114775, + [SMALL_STATE(4337)] = 114837, + [SMALL_STATE(4338)] = 114889, + [SMALL_STATE(4339)] = 114941, + [SMALL_STATE(4340)] = 114993, + [SMALL_STATE(4341)] = 115043, + [SMALL_STATE(4342)] = 115093, + [SMALL_STATE(4343)] = 115143, + [SMALL_STATE(4344)] = 115197, + [SMALL_STATE(4345)] = 115251, + [SMALL_STATE(4346)] = 115307, + [SMALL_STATE(4347)] = 115357, + [SMALL_STATE(4348)] = 115407, + [SMALL_STATE(4349)] = 115457, + [SMALL_STATE(4350)] = 115511, + [SMALL_STATE(4351)] = 115561, + [SMALL_STATE(4352)] = 115611, + [SMALL_STATE(4353)] = 115663, + [SMALL_STATE(4354)] = 115717, + [SMALL_STATE(4355)] = 115771, + [SMALL_STATE(4356)] = 115821, + [SMALL_STATE(4357)] = 115875, + [SMALL_STATE(4358)] = 115929, + [SMALL_STATE(4359)] = 115983, + [SMALL_STATE(4360)] = 116037, + [SMALL_STATE(4361)] = 116093, + [SMALL_STATE(4362)] = 116147, + [SMALL_STATE(4363)] = 116197, + [SMALL_STATE(4364)] = 116251, + [SMALL_STATE(4365)] = 116307, + [SMALL_STATE(4366)] = 116361, + [SMALL_STATE(4367)] = 116413, + [SMALL_STATE(4368)] = 116465, + [SMALL_STATE(4369)] = 116521, + [SMALL_STATE(4370)] = 116577, + [SMALL_STATE(4371)] = 116631, + [SMALL_STATE(4372)] = 116689, + [SMALL_STATE(4373)] = 116741, + [SMALL_STATE(4374)] = 116793, + [SMALL_STATE(4375)] = 116851, + [SMALL_STATE(4376)] = 116901, + [SMALL_STATE(4377)] = 116951, + [SMALL_STATE(4378)] = 117005, + [SMALL_STATE(4379)] = 117057, + [SMALL_STATE(4380)] = 117111, + [SMALL_STATE(4381)] = 117163, + [SMALL_STATE(4382)] = 117213, + [SMALL_STATE(4383)] = 117267, + [SMALL_STATE(4384)] = 117323, + [SMALL_STATE(4385)] = 117385, + [SMALL_STATE(4386)] = 117437, + [SMALL_STATE(4387)] = 117493, + [SMALL_STATE(4388)] = 117543, + [SMALL_STATE(4389)] = 117593, + [SMALL_STATE(4390)] = 117647, + [SMALL_STATE(4391)] = 117703, + [SMALL_STATE(4392)] = 117757, + [SMALL_STATE(4393)] = 117813, + [SMALL_STATE(4394)] = 117865, + [SMALL_STATE(4395)] = 117919, + [SMALL_STATE(4396)] = 117975, + [SMALL_STATE(4397)] = 118025, + [SMALL_STATE(4398)] = 118074, + [SMALL_STATE(4399)] = 118125, + [SMALL_STATE(4400)] = 118178, + [SMALL_STATE(4401)] = 118231, + [SMALL_STATE(4402)] = 118282, + [SMALL_STATE(4403)] = 118331, + [SMALL_STATE(4404)] = 118380, + [SMALL_STATE(4405)] = 118431, + [SMALL_STATE(4406)] = 118480, + [SMALL_STATE(4407)] = 118535, + [SMALL_STATE(4408)] = 118584, + [SMALL_STATE(4409)] = 118641, + [SMALL_STATE(4410)] = 118690, + [SMALL_STATE(4411)] = 118743, + [SMALL_STATE(4412)] = 118798, + [SMALL_STATE(4413)] = 118851, + [SMALL_STATE(4414)] = 118904, + [SMALL_STATE(4415)] = 118957, + [SMALL_STATE(4416)] = 119010, + [SMALL_STATE(4417)] = 119063, + [SMALL_STATE(4418)] = 119112, + [SMALL_STATE(4419)] = 119167, + [SMALL_STATE(4420)] = 119216, + [SMALL_STATE(4421)] = 119267, + [SMALL_STATE(4422)] = 119320, + [SMALL_STATE(4423)] = 119369, + [SMALL_STATE(4424)] = 119422, + [SMALL_STATE(4425)] = 119473, + [SMALL_STATE(4426)] = 119524, + [SMALL_STATE(4427)] = 119573, + [SMALL_STATE(4428)] = 119628, + [SMALL_STATE(4429)] = 119683, + [SMALL_STATE(4430)] = 119734, + [SMALL_STATE(4431)] = 119785, + [SMALL_STATE(4432)] = 119836, + [SMALL_STATE(4433)] = 119885, + [SMALL_STATE(4434)] = 119936, + [SMALL_STATE(4435)] = 119985, + [SMALL_STATE(4436)] = 120034, + [SMALL_STATE(4437)] = 120085, + [SMALL_STATE(4438)] = 120134, + [SMALL_STATE(4439)] = 120187, + [SMALL_STATE(4440)] = 120238, + [SMALL_STATE(4441)] = 120287, + [SMALL_STATE(4442)] = 120336, + [SMALL_STATE(4443)] = 120387, + [SMALL_STATE(4444)] = 120438, + [SMALL_STATE(4445)] = 120493, + [SMALL_STATE(4446)] = 120544, + [SMALL_STATE(4447)] = 120595, + [SMALL_STATE(4448)] = 120650, + [SMALL_STATE(4449)] = 120699, + [SMALL_STATE(4450)] = 120750, + [SMALL_STATE(4451)] = 120811, + [SMALL_STATE(4452)] = 120864, + [SMALL_STATE(4453)] = 120915, + [SMALL_STATE(4454)] = 120966, + [SMALL_STATE(4455)] = 121021, + [SMALL_STATE(4456)] = 121072, + [SMALL_STATE(4457)] = 121133, + [SMALL_STATE(4458)] = 121186, + [SMALL_STATE(4459)] = 121237, + [SMALL_STATE(4460)] = 121288, + [SMALL_STATE(4461)] = 121337, + [SMALL_STATE(4462)] = 121390, + [SMALL_STATE(4463)] = 121439, + [SMALL_STATE(4464)] = 121490, + [SMALL_STATE(4465)] = 121543, + [SMALL_STATE(4466)] = 121592, + [SMALL_STATE(4467)] = 121643, + [SMALL_STATE(4468)] = 121694, + [SMALL_STATE(4469)] = 121745, + [SMALL_STATE(4470)] = 121800, + [SMALL_STATE(4471)] = 121855, + [SMALL_STATE(4472)] = 121906, + [SMALL_STATE(4473)] = 121959, + [SMALL_STATE(4474)] = 122010, + [SMALL_STATE(4475)] = 122061, + [SMALL_STATE(4476)] = 122110, + [SMALL_STATE(4477)] = 122161, + [SMALL_STATE(4478)] = 122210, + [SMALL_STATE(4479)] = 122259, + [SMALL_STATE(4480)] = 122308, + [SMALL_STATE(4481)] = 122361, + [SMALL_STATE(4482)] = 122412, + [SMALL_STATE(4483)] = 122463, + [SMALL_STATE(4484)] = 122516, + [SMALL_STATE(4485)] = 122569, + [SMALL_STATE(4486)] = 122618, + [SMALL_STATE(4487)] = 122673, + [SMALL_STATE(4488)] = 122722, + [SMALL_STATE(4489)] = 122783, + [SMALL_STATE(4490)] = 122844, + [SMALL_STATE(4491)] = 122897, + [SMALL_STATE(4492)] = 122948, + [SMALL_STATE(4493)] = 123001, + [SMALL_STATE(4494)] = 123050, + [SMALL_STATE(4495)] = 123105, + [SMALL_STATE(4496)] = 123166, + [SMALL_STATE(4497)] = 123215, + [SMALL_STATE(4498)] = 123266, + [SMALL_STATE(4499)] = 123317, + [SMALL_STATE(4500)] = 123372, + [SMALL_STATE(4501)] = 123427, + [SMALL_STATE(4502)] = 123476, + [SMALL_STATE(4503)] = 123527, + [SMALL_STATE(4504)] = 123580, + [SMALL_STATE(4505)] = 123629, + [SMALL_STATE(4506)] = 123684, + [SMALL_STATE(4507)] = 123737, + [SMALL_STATE(4508)] = 123786, + [SMALL_STATE(4509)] = 123835, + [SMALL_STATE(4510)] = 123884, + [SMALL_STATE(4511)] = 123935, + [SMALL_STATE(4512)] = 123988, + [SMALL_STATE(4513)] = 124039, + [SMALL_STATE(4514)] = 124088, + [SMALL_STATE(4515)] = 124137, + [SMALL_STATE(4516)] = 124186, + [SMALL_STATE(4517)] = 124237, + [SMALL_STATE(4518)] = 124286, + [SMALL_STATE(4519)] = 124335, + [SMALL_STATE(4520)] = 124398, + [SMALL_STATE(4521)] = 124447, + [SMALL_STATE(4522)] = 124496, + [SMALL_STATE(4523)] = 124545, + [SMALL_STATE(4524)] = 124598, + [SMALL_STATE(4525)] = 124651, + [SMALL_STATE(4526)] = 124700, + [SMALL_STATE(4527)] = 124751, + [SMALL_STATE(4528)] = 124799, + [SMALL_STATE(4529)] = 124849, + [SMALL_STATE(4530)] = 124899, + [SMALL_STATE(4531)] = 124959, + [SMALL_STATE(4532)] = 125007, + [SMALL_STATE(4533)] = 125055, + [SMALL_STATE(4534)] = 125107, + [SMALL_STATE(4535)] = 125155, + [SMALL_STATE(4536)] = 125203, + [SMALL_STATE(4537)] = 125251, + [SMALL_STATE(4538)] = 125299, + [SMALL_STATE(4539)] = 125347, + [SMALL_STATE(4540)] = 125395, + [SMALL_STATE(4541)] = 125445, + [SMALL_STATE(4542)] = 125505, + [SMALL_STATE(4543)] = 125553, + [SMALL_STATE(4544)] = 125603, + [SMALL_STATE(4545)] = 125651, + [SMALL_STATE(4546)] = 125699, + [SMALL_STATE(4547)] = 125747, + [SMALL_STATE(4548)] = 125795, + [SMALL_STATE(4549)] = 125843, + [SMALL_STATE(4550)] = 125891, + [SMALL_STATE(4551)] = 125939, + [SMALL_STATE(4552)] = 125987, + [SMALL_STATE(4553)] = 126035, + [SMALL_STATE(4554)] = 126083, + [SMALL_STATE(4555)] = 126131, + [SMALL_STATE(4556)] = 126179, + [SMALL_STATE(4557)] = 126233, + [SMALL_STATE(4558)] = 126283, + [SMALL_STATE(4559)] = 126331, + [SMALL_STATE(4560)] = 126379, + [SMALL_STATE(4561)] = 126439, + [SMALL_STATE(4562)] = 126499, + [SMALL_STATE(4563)] = 126553, + [SMALL_STATE(4564)] = 126601, + [SMALL_STATE(4565)] = 126649, + [SMALL_STATE(4566)] = 126705, + [SMALL_STATE(4567)] = 126753, + [SMALL_STATE(4568)] = 126813, + [SMALL_STATE(4569)] = 126861, + [SMALL_STATE(4570)] = 126909, + [SMALL_STATE(4571)] = 126957, + [SMALL_STATE(4572)] = 127005, + [SMALL_STATE(4573)] = 127053, + [SMALL_STATE(4574)] = 127101, + [SMALL_STATE(4575)] = 127155, + [SMALL_STATE(4576)] = 127209, + [SMALL_STATE(4577)] = 127263, + [SMALL_STATE(4578)] = 127313, + [SMALL_STATE(4579)] = 127363, + [SMALL_STATE(4580)] = 127413, + [SMALL_STATE(4581)] = 127473, + [SMALL_STATE(4582)] = 127527, + [SMALL_STATE(4583)] = 127575, + [SMALL_STATE(4584)] = 127623, + [SMALL_STATE(4585)] = 127671, + [SMALL_STATE(4586)] = 127753, + [SMALL_STATE(4587)] = 127835, + [SMALL_STATE(4588)] = 127889, + [SMALL_STATE(4589)] = 127937, + [SMALL_STATE(4590)] = 127985, + [SMALL_STATE(4591)] = 128033, + [SMALL_STATE(4592)] = 128081, + [SMALL_STATE(4593)] = 128129, + [SMALL_STATE(4594)] = 128177, + [SMALL_STATE(4595)] = 128233, + [SMALL_STATE(4596)] = 128281, + [SMALL_STATE(4597)] = 128329, + [SMALL_STATE(4598)] = 128381, + [SMALL_STATE(4599)] = 128429, + [SMALL_STATE(4600)] = 128477, + [SMALL_STATE(4601)] = 128531, + [SMALL_STATE(4602)] = 128585, + [SMALL_STATE(4603)] = 128639, + [SMALL_STATE(4604)] = 128687, + [SMALL_STATE(4605)] = 128739, + [SMALL_STATE(4606)] = 128787, + [SMALL_STATE(4607)] = 128837, + [SMALL_STATE(4608)] = 128891, + [SMALL_STATE(4609)] = 128939, + [SMALL_STATE(4610)] = 128987, + [SMALL_STATE(4611)] = 129035, + [SMALL_STATE(4612)] = 129087, + [SMALL_STATE(4613)] = 129135, + [SMALL_STATE(4614)] = 129183, + [SMALL_STATE(4615)] = 129235, + [SMALL_STATE(4616)] = 129283, + [SMALL_STATE(4617)] = 129331, + [SMALL_STATE(4618)] = 129379, + [SMALL_STATE(4619)] = 129427, + [SMALL_STATE(4620)] = 129481, + [SMALL_STATE(4621)] = 129531, + [SMALL_STATE(4622)] = 129579, + [SMALL_STATE(4623)] = 129629, + [SMALL_STATE(4624)] = 129677, + [SMALL_STATE(4625)] = 129727, + [SMALL_STATE(4626)] = 129781, + [SMALL_STATE(4627)] = 129829, + [SMALL_STATE(4628)] = 129883, + [SMALL_STATE(4629)] = 129931, + [SMALL_STATE(4630)] = 129983, + [SMALL_STATE(4631)] = 130035, + [SMALL_STATE(4632)] = 130083, + [SMALL_STATE(4633)] = 130131, + [SMALL_STATE(4634)] = 130179, + [SMALL_STATE(4635)] = 130229, + [SMALL_STATE(4636)] = 130285, + [SMALL_STATE(4637)] = 130333, + [SMALL_STATE(4638)] = 130381, + [SMALL_STATE(4639)] = 130431, + [SMALL_STATE(4640)] = 130485, + [SMALL_STATE(4641)] = 130547, + [SMALL_STATE(4642)] = 130595, + [SMALL_STATE(4643)] = 130649, + [SMALL_STATE(4644)] = 130699, + [SMALL_STATE(4645)] = 130749, + [SMALL_STATE(4646)] = 130799, + [SMALL_STATE(4647)] = 130849, + [SMALL_STATE(4648)] = 130897, + [SMALL_STATE(4649)] = 130945, + [SMALL_STATE(4650)] = 130993, + [SMALL_STATE(4651)] = 131041, + [SMALL_STATE(4652)] = 131101, + [SMALL_STATE(4653)] = 131149, + [SMALL_STATE(4654)] = 131197, + [SMALL_STATE(4655)] = 131245, + [SMALL_STATE(4656)] = 131293, + [SMALL_STATE(4657)] = 131347, + [SMALL_STATE(4658)] = 131397, + [SMALL_STATE(4659)] = 131449, + [SMALL_STATE(4660)] = 131499, + [SMALL_STATE(4661)] = 131547, + [SMALL_STATE(4662)] = 131597, + [SMALL_STATE(4663)] = 131647, + [SMALL_STATE(4664)] = 131695, + [SMALL_STATE(4665)] = 131743, + [SMALL_STATE(4666)] = 131791, + [SMALL_STATE(4667)] = 131839, + [SMALL_STATE(4668)] = 131887, + [SMALL_STATE(4669)] = 131935, + [SMALL_STATE(4670)] = 131989, + [SMALL_STATE(4671)] = 132049, + [SMALL_STATE(4672)] = 132097, + [SMALL_STATE(4673)] = 132149, + [SMALL_STATE(4674)] = 132197, + [SMALL_STATE(4675)] = 132245, + [SMALL_STATE(4676)] = 132293, + [SMALL_STATE(4677)] = 132347, + [SMALL_STATE(4678)] = 132401, + [SMALL_STATE(4679)] = 132451, + [SMALL_STATE(4680)] = 132501, + [SMALL_STATE(4681)] = 132551, + [SMALL_STATE(4682)] = 132599, + [SMALL_STATE(4683)] = 132647, + [SMALL_STATE(4684)] = 132697, + [SMALL_STATE(4685)] = 132743, + [SMALL_STATE(4686)] = 132803, + [SMALL_STATE(4687)] = 132851, + [SMALL_STATE(4688)] = 132905, + [SMALL_STATE(4689)] = 132953, + [SMALL_STATE(4690)] = 133007, + [SMALL_STATE(4691)] = 133055, + [SMALL_STATE(4692)] = 133103, + [SMALL_STATE(4693)] = 133151, + [SMALL_STATE(4694)] = 133199, + [SMALL_STATE(4695)] = 133253, + [SMALL_STATE(4696)] = 133301, + [SMALL_STATE(4697)] = 133349, + [SMALL_STATE(4698)] = 133401, + [SMALL_STATE(4699)] = 133451, + [SMALL_STATE(4700)] = 133505, + [SMALL_STATE(4701)] = 133557, + [SMALL_STATE(4702)] = 133609, + [SMALL_STATE(4703)] = 133657, + [SMALL_STATE(4704)] = 133705, + [SMALL_STATE(4705)] = 133759, + [SMALL_STATE(4706)] = 133811, + [SMALL_STATE(4707)] = 133859, + [SMALL_STATE(4708)] = 133907, + [SMALL_STATE(4709)] = 133961, + [SMALL_STATE(4710)] = 134009, + [SMALL_STATE(4711)] = 134057, + [SMALL_STATE(4712)] = 134111, + [SMALL_STATE(4713)] = 134159, + [SMALL_STATE(4714)] = 134213, + [SMALL_STATE(4715)] = 134261, + [SMALL_STATE(4716)] = 134309, + [SMALL_STATE(4717)] = 134363, + [SMALL_STATE(4718)] = 134415, + [SMALL_STATE(4719)] = 134475, + [SMALL_STATE(4720)] = 134529, + [SMALL_STATE(4721)] = 134591, + [SMALL_STATE(4722)] = 134639, + [SMALL_STATE(4723)] = 134687, + [SMALL_STATE(4724)] = 134741, + [SMALL_STATE(4725)] = 134789, + [SMALL_STATE(4726)] = 134843, + [SMALL_STATE(4727)] = 134893, + [SMALL_STATE(4728)] = 134943, + [SMALL_STATE(4729)] = 134997, + [SMALL_STATE(4730)] = 135045, + [SMALL_STATE(4731)] = 135093, + [SMALL_STATE(4732)] = 135141, + [SMALL_STATE(4733)] = 135189, + [SMALL_STATE(4734)] = 135243, + [SMALL_STATE(4735)] = 135291, + [SMALL_STATE(4736)] = 135345, + [SMALL_STATE(4737)] = 135399, + [SMALL_STATE(4738)] = 135447, + [SMALL_STATE(4739)] = 135507, + [SMALL_STATE(4740)] = 135555, + [SMALL_STATE(4741)] = 135603, + [SMALL_STATE(4742)] = 135651, + [SMALL_STATE(4743)] = 135699, + [SMALL_STATE(4744)] = 135747, + [SMALL_STATE(4745)] = 135795, + [SMALL_STATE(4746)] = 135843, + [SMALL_STATE(4747)] = 135891, + [SMALL_STATE(4748)] = 135939, + [SMALL_STATE(4749)] = 135987, + [SMALL_STATE(4750)] = 136035, + [SMALL_STATE(4751)] = 136083, + [SMALL_STATE(4752)] = 136131, + [SMALL_STATE(4753)] = 136179, + [SMALL_STATE(4754)] = 136227, + [SMALL_STATE(4755)] = 136275, + [SMALL_STATE(4756)] = 136323, + [SMALL_STATE(4757)] = 136371, + [SMALL_STATE(4758)] = 136419, + [SMALL_STATE(4759)] = 136467, + [SMALL_STATE(4760)] = 136515, + [SMALL_STATE(4761)] = 136563, + [SMALL_STATE(4762)] = 136611, + [SMALL_STATE(4763)] = 136665, + [SMALL_STATE(4764)] = 136713, + [SMALL_STATE(4765)] = 136761, + [SMALL_STATE(4766)] = 136809, + [SMALL_STATE(4767)] = 136857, + [SMALL_STATE(4768)] = 136909, + [SMALL_STATE(4769)] = 136957, + [SMALL_STATE(4770)] = 137011, + [SMALL_STATE(4771)] = 137059, + [SMALL_STATE(4772)] = 137119, + [SMALL_STATE(4773)] = 137177, + [SMALL_STATE(4774)] = 137231, + [SMALL_STATE(4775)] = 137283, + [SMALL_STATE(4776)] = 137337, + [SMALL_STATE(4777)] = 137385, + [SMALL_STATE(4778)] = 137433, + [SMALL_STATE(4779)] = 137487, + [SMALL_STATE(4780)] = 137541, + [SMALL_STATE(4781)] = 137589, + [SMALL_STATE(4782)] = 137637, + [SMALL_STATE(4783)] = 137685, + [SMALL_STATE(4784)] = 137733, + [SMALL_STATE(4785)] = 137787, + [SMALL_STATE(4786)] = 137835, + [SMALL_STATE(4787)] = 137883, + [SMALL_STATE(4788)] = 137931, + [SMALL_STATE(4789)] = 137979, + [SMALL_STATE(4790)] = 138033, + [SMALL_STATE(4791)] = 138081, + [SMALL_STATE(4792)] = 138131, + [SMALL_STATE(4793)] = 138179, + [SMALL_STATE(4794)] = 138239, + [SMALL_STATE(4795)] = 138287, + [SMALL_STATE(4796)] = 138335, + [SMALL_STATE(4797)] = 138389, + [SMALL_STATE(4798)] = 138437, + [SMALL_STATE(4799)] = 138518, + [SMALL_STATE(4800)] = 138565, + [SMALL_STATE(4801)] = 138616, + [SMALL_STATE(4802)] = 138675, + [SMALL_STATE(4803)] = 138726, + [SMALL_STATE(4804)] = 138779, + [SMALL_STATE(4805)] = 138830, + [SMALL_STATE(4806)] = 138877, + [SMALL_STATE(4807)] = 138930, + [SMALL_STATE(4808)] = 138977, + [SMALL_STATE(4809)] = 139024, + [SMALL_STATE(4810)] = 139069, + [SMALL_STATE(4811)] = 139116, + [SMALL_STATE(4812)] = 139163, + [SMALL_STATE(4813)] = 139216, + [SMALL_STATE(4814)] = 139275, + [SMALL_STATE(4815)] = 139328, + [SMALL_STATE(4816)] = 139381, + [SMALL_STATE(4817)] = 139430, + [SMALL_STATE(4818)] = 139483, + [SMALL_STATE(4819)] = 139534, + [SMALL_STATE(4820)] = 139581, + [SMALL_STATE(4821)] = 139628, + [SMALL_STATE(4822)] = 139675, + [SMALL_STATE(4823)] = 139722, + [SMALL_STATE(4824)] = 139775, + [SMALL_STATE(4825)] = 139822, + [SMALL_STATE(4826)] = 139875, + [SMALL_STATE(4827)] = 139928, + [SMALL_STATE(4828)] = 139975, + [SMALL_STATE(4829)] = 140022, + [SMALL_STATE(4830)] = 140069, + [SMALL_STATE(4831)] = 140116, + [SMALL_STATE(4832)] = 140163, + [SMALL_STATE(4833)] = 140216, + [SMALL_STATE(4834)] = 140263, + [SMALL_STATE(4835)] = 140316, + [SMALL_STATE(4836)] = 140367, + [SMALL_STATE(4837)] = 140414, + [SMALL_STATE(4838)] = 140463, + [SMALL_STATE(4839)] = 140510, + [SMALL_STATE(4840)] = 140563, + [SMALL_STATE(4841)] = 140616, + [SMALL_STATE(4842)] = 140665, + [SMALL_STATE(4843)] = 140714, + [SMALL_STATE(4844)] = 140761, + [SMALL_STATE(4845)] = 140820, + [SMALL_STATE(4846)] = 140867, + [SMALL_STATE(4847)] = 140914, + [SMALL_STATE(4848)] = 140961, + [SMALL_STATE(4849)] = 141008, + [SMALL_STATE(4850)] = 141055, + [SMALL_STATE(4851)] = 141102, + [SMALL_STATE(4852)] = 141155, + [SMALL_STATE(4853)] = 141208, + [SMALL_STATE(4854)] = 141259, + [SMALL_STATE(4855)] = 141306, + [SMALL_STATE(4856)] = 141353, + [SMALL_STATE(4857)] = 141404, + [SMALL_STATE(4858)] = 141451, + [SMALL_STATE(4859)] = 141504, + [SMALL_STATE(4860)] = 141553, + [SMALL_STATE(4861)] = 141600, + [SMALL_STATE(4862)] = 141657, + [SMALL_STATE(4863)] = 141710, + [SMALL_STATE(4864)] = 141763, + [SMALL_STATE(4865)] = 141816, + [SMALL_STATE(4866)] = 141863, + [SMALL_STATE(4867)] = 141916, + [SMALL_STATE(4868)] = 141967, + [SMALL_STATE(4869)] = 142020, + [SMALL_STATE(4870)] = 142069, + [SMALL_STATE(4871)] = 142118, + [SMALL_STATE(4872)] = 142171, + [SMALL_STATE(4873)] = 142218, + [SMALL_STATE(4874)] = 142265, + [SMALL_STATE(4875)] = 142312, + [SMALL_STATE(4876)] = 142359, + [SMALL_STATE(4877)] = 142406, + [SMALL_STATE(4878)] = 142453, + [SMALL_STATE(4879)] = 142500, + [SMALL_STATE(4880)] = 142553, + [SMALL_STATE(4881)] = 142600, + [SMALL_STATE(4882)] = 142653, + [SMALL_STATE(4883)] = 142706, + [SMALL_STATE(4884)] = 142753, + [SMALL_STATE(4885)] = 142806, + [SMALL_STATE(4886)] = 142851, + [SMALL_STATE(4887)] = 142896, + [SMALL_STATE(4888)] = 142947, + [SMALL_STATE(4889)] = 142994, + [SMALL_STATE(4890)] = 143039, + [SMALL_STATE(4891)] = 143086, + [SMALL_STATE(4892)] = 143141, + [SMALL_STATE(4893)] = 143192, + [SMALL_STATE(4894)] = 143237, + [SMALL_STATE(4895)] = 143284, + [SMALL_STATE(4896)] = 143331, + [SMALL_STATE(4897)] = 143384, + [SMALL_STATE(4898)] = 143431, + [SMALL_STATE(4899)] = 143478, + [SMALL_STATE(4900)] = 143525, + [SMALL_STATE(4901)] = 143578, + [SMALL_STATE(4902)] = 143627, + [SMALL_STATE(4903)] = 143678, + [SMALL_STATE(4904)] = 143727, + [SMALL_STATE(4905)] = 143776, + [SMALL_STATE(4906)] = 143823, + [SMALL_STATE(4907)] = 143870, + [SMALL_STATE(4908)] = 143917, + [SMALL_STATE(4909)] = 143970, + [SMALL_STATE(4910)] = 144029, + [SMALL_STATE(4911)] = 144076, + [SMALL_STATE(4912)] = 144123, + [SMALL_STATE(4913)] = 144172, + [SMALL_STATE(4914)] = 144231, + [SMALL_STATE(4915)] = 144288, + [SMALL_STATE(4916)] = 144337, + [SMALL_STATE(4917)] = 144386, + [SMALL_STATE(4918)] = 144433, + [SMALL_STATE(4919)] = 144486, + [SMALL_STATE(4920)] = 144541, + [SMALL_STATE(4921)] = 144622, + [SMALL_STATE(4922)] = 144669, + [SMALL_STATE(4923)] = 144716, + [SMALL_STATE(4924)] = 144769, + [SMALL_STATE(4925)] = 144814, + [SMALL_STATE(4926)] = 144867, + [SMALL_STATE(4927)] = 144914, + [SMALL_STATE(4928)] = 144961, + [SMALL_STATE(4929)] = 145014, + [SMALL_STATE(4930)] = 145061, + [SMALL_STATE(4931)] = 145114, + [SMALL_STATE(4932)] = 145161, + [SMALL_STATE(4933)] = 145214, + [SMALL_STATE(4934)] = 145261, + [SMALL_STATE(4935)] = 145314, + [SMALL_STATE(4936)] = 145365, + [SMALL_STATE(4937)] = 145412, + [SMALL_STATE(4938)] = 145459, + [SMALL_STATE(4939)] = 145506, + [SMALL_STATE(4940)] = 145553, + [SMALL_STATE(4941)] = 145600, + [SMALL_STATE(4942)] = 145647, + [SMALL_STATE(4943)] = 145700, + [SMALL_STATE(4944)] = 145747, + [SMALL_STATE(4945)] = 145794, + [SMALL_STATE(4946)] = 145841, + [SMALL_STATE(4947)] = 145888, + [SMALL_STATE(4948)] = 145935, + [SMALL_STATE(4949)] = 145988, + [SMALL_STATE(4950)] = 146035, + [SMALL_STATE(4951)] = 146082, + [SMALL_STATE(4952)] = 146133, + [SMALL_STATE(4953)] = 146180, + [SMALL_STATE(4954)] = 146227, + [SMALL_STATE(4955)] = 146278, + [SMALL_STATE(4956)] = 146325, + [SMALL_STATE(4957)] = 146378, + [SMALL_STATE(4958)] = 146425, + [SMALL_STATE(4959)] = 146472, + [SMALL_STATE(4960)] = 146519, + [SMALL_STATE(4961)] = 146566, + [SMALL_STATE(4962)] = 146613, + [SMALL_STATE(4963)] = 146660, + [SMALL_STATE(4964)] = 146707, + [SMALL_STATE(4965)] = 146754, + [SMALL_STATE(4966)] = 146813, + [SMALL_STATE(4967)] = 146860, + [SMALL_STATE(4968)] = 146907, + [SMALL_STATE(4969)] = 146954, + [SMALL_STATE(4970)] = 147001, + [SMALL_STATE(4971)] = 147048, + [SMALL_STATE(4972)] = 147095, + [SMALL_STATE(4973)] = 147142, + [SMALL_STATE(4974)] = 147189, + [SMALL_STATE(4975)] = 147236, + [SMALL_STATE(4976)] = 147289, + [SMALL_STATE(4977)] = 147340, + [SMALL_STATE(4978)] = 147387, + [SMALL_STATE(4979)] = 147440, + [SMALL_STATE(4980)] = 147487, + [SMALL_STATE(4981)] = 147534, + [SMALL_STATE(4982)] = 147581, + [SMALL_STATE(4983)] = 147640, + [SMALL_STATE(4984)] = 147687, + [SMALL_STATE(4985)] = 147734, + [SMALL_STATE(4986)] = 147781, + [SMALL_STATE(4987)] = 147828, + [SMALL_STATE(4988)] = 147875, + [SMALL_STATE(4989)] = 147922, + [SMALL_STATE(4990)] = 147975, + [SMALL_STATE(4991)] = 148024, + [SMALL_STATE(4992)] = 148071, + [SMALL_STATE(4993)] = 148150, + [SMALL_STATE(4994)] = 148197, + [SMALL_STATE(4995)] = 148244, + [SMALL_STATE(4996)] = 148297, + [SMALL_STATE(4997)] = 148350, + [SMALL_STATE(4998)] = 148397, + [SMALL_STATE(4999)] = 148444, + [SMALL_STATE(5000)] = 148497, + [SMALL_STATE(5001)] = 148546, + [SMALL_STATE(5002)] = 148593, + [SMALL_STATE(5003)] = 148646, + [SMALL_STATE(5004)] = 148699, + [SMALL_STATE(5005)] = 148752, + [SMALL_STATE(5006)] = 148805, + [SMALL_STATE(5007)] = 148858, + [SMALL_STATE(5008)] = 148911, + [SMALL_STATE(5009)] = 148958, + [SMALL_STATE(5010)] = 149009, + [SMALL_STATE(5011)] = 149060, + [SMALL_STATE(5012)] = 149109, + [SMALL_STATE(5013)] = 149156, + [SMALL_STATE(5014)] = 149209, + [SMALL_STATE(5015)] = 149262, + [SMALL_STATE(5016)] = 149311, + [SMALL_STATE(5017)] = 149364, + [SMALL_STATE(5018)] = 149441, + [SMALL_STATE(5019)] = 149494, + [SMALL_STATE(5020)] = 149549, + [SMALL_STATE(5021)] = 149604, + [SMALL_STATE(5022)] = 149665, + [SMALL_STATE(5023)] = 149720, + [SMALL_STATE(5024)] = 149785, + [SMALL_STATE(5025)] = 149838, + [SMALL_STATE(5026)] = 149887, + [SMALL_STATE(5027)] = 149944, + [SMALL_STATE(5028)] = 150011, + [SMALL_STATE(5029)] = 150080, + [SMALL_STATE(5030)] = 150151, + [SMALL_STATE(5031)] = 150224, + [SMALL_STATE(5032)] = 150299, + [SMALL_STATE(5033)] = 150376, + [SMALL_STATE(5034)] = 150455, + [SMALL_STATE(5035)] = 150502, + [SMALL_STATE(5036)] = 150555, + [SMALL_STATE(5037)] = 150602, + [SMALL_STATE(5038)] = 150655, + [SMALL_STATE(5039)] = 150702, + [SMALL_STATE(5040)] = 150753, + [SMALL_STATE(5041)] = 150802, + [SMALL_STATE(5042)] = 150849, + [SMALL_STATE(5043)] = 150928, + [SMALL_STATE(5044)] = 150975, + [SMALL_STATE(5045)] = 151030, + [SMALL_STATE(5046)] = 151079, + [SMALL_STATE(5047)] = 151126, + [SMALL_STATE(5048)] = 151173, + [SMALL_STATE(5049)] = 151220, + [SMALL_STATE(5050)] = 151266, + [SMALL_STATE(5051)] = 151316, + [SMALL_STATE(5052)] = 151364, + [SMALL_STATE(5053)] = 151412, + [SMALL_STATE(5054)] = 151458, + [SMALL_STATE(5055)] = 151504, + [SMALL_STATE(5056)] = 151550, + [SMALL_STATE(5057)] = 151594, + [SMALL_STATE(5058)] = 151640, + [SMALL_STATE(5059)] = 151692, + [SMALL_STATE(5060)] = 151740, + [SMALL_STATE(5061)] = 151786, + [SMALL_STATE(5062)] = 151832, + [SMALL_STATE(5063)] = 151882, + [SMALL_STATE(5064)] = 151930, + [SMALL_STATE(5065)] = 151980, + [SMALL_STATE(5066)] = 152026, + [SMALL_STATE(5067)] = 152072, + [SMALL_STATE(5068)] = 152118, + [SMALL_STATE(5069)] = 152164, + [SMALL_STATE(5070)] = 152218, + [SMALL_STATE(5071)] = 152264, + [SMALL_STATE(5072)] = 152310, + [SMALL_STATE(5073)] = 152356, + [SMALL_STATE(5074)] = 152404, + [SMALL_STATE(5075)] = 152460, + [SMALL_STATE(5076)] = 152506, + [SMALL_STATE(5077)] = 152552, + [SMALL_STATE(5078)] = 152598, + [SMALL_STATE(5079)] = 152646, + [SMALL_STATE(5080)] = 152698, + [SMALL_STATE(5081)] = 152748, + [SMALL_STATE(5082)] = 152800, + [SMALL_STATE(5083)] = 152846, + [SMALL_STATE(5084)] = 152892, + [SMALL_STATE(5085)] = 152938, + [SMALL_STATE(5086)] = 152984, + [SMALL_STATE(5087)] = 153030, + [SMALL_STATE(5088)] = 153080, + [SMALL_STATE(5089)] = 153132, + [SMALL_STATE(5090)] = 153184, + [SMALL_STATE(5091)] = 153232, + [SMALL_STATE(5092)] = 153280, + [SMALL_STATE(5093)] = 153332, + [SMALL_STATE(5094)] = 153378, + [SMALL_STATE(5095)] = 153454, + [SMALL_STATE(5096)] = 153508, + [SMALL_STATE(5097)] = 153560, + [SMALL_STATE(5098)] = 153620, + [SMALL_STATE(5099)] = 153678, + [SMALL_STATE(5100)] = 153724, + [SMALL_STATE(5101)] = 153778, + [SMALL_STATE(5102)] = 153826, + [SMALL_STATE(5103)] = 153890, + [SMALL_STATE(5104)] = 153940, + [SMALL_STATE(5105)] = 153992, + [SMALL_STATE(5106)] = 154040, + [SMALL_STATE(5107)] = 154088, + [SMALL_STATE(5108)] = 154136, + [SMALL_STATE(5109)] = 154192, + [SMALL_STATE(5110)] = 154238, + [SMALL_STATE(5111)] = 154304, + [SMALL_STATE(5112)] = 154350, + [SMALL_STATE(5113)] = 154418, + [SMALL_STATE(5114)] = 154466, + [SMALL_STATE(5115)] = 154536, + [SMALL_STATE(5116)] = 154582, + [SMALL_STATE(5117)] = 154654, + [SMALL_STATE(5118)] = 154732, + [SMALL_STATE(5119)] = 154806, + [SMALL_STATE(5120)] = 154852, + [SMALL_STATE(5121)] = 154928, + [SMALL_STATE(5122)] = 154974, + [SMALL_STATE(5123)] = 155052, + [SMALL_STATE(5124)] = 155100, + [SMALL_STATE(5125)] = 155152, + [SMALL_STATE(5126)] = 155198, + [SMALL_STATE(5127)] = 155246, + [SMALL_STATE(5128)] = 155292, + [SMALL_STATE(5129)] = 155340, + [SMALL_STATE(5130)] = 155386, + [SMALL_STATE(5131)] = 155436, + [SMALL_STATE(5132)] = 155482, + [SMALL_STATE(5133)] = 155528, + [SMALL_STATE(5134)] = 155574, + [SMALL_STATE(5135)] = 155622, + [SMALL_STATE(5136)] = 155670, + [SMALL_STATE(5137)] = 155718, + [SMALL_STATE(5138)] = 155766, + [SMALL_STATE(5139)] = 155812, + [SMALL_STATE(5140)] = 155860, + [SMALL_STATE(5141)] = 155908, + [SMALL_STATE(5142)] = 155954, + [SMALL_STATE(5143)] = 156000, + [SMALL_STATE(5144)] = 156052, + [SMALL_STATE(5145)] = 156104, + [SMALL_STATE(5146)] = 156150, + [SMALL_STATE(5147)] = 156198, + [SMALL_STATE(5148)] = 156250, + [SMALL_STATE(5149)] = 156296, + [SMALL_STATE(5150)] = 156340, + [SMALL_STATE(5151)] = 156386, + [SMALL_STATE(5152)] = 156434, + [SMALL_STATE(5153)] = 156512, + [SMALL_STATE(5154)] = 156560, + [SMALL_STATE(5155)] = 156612, + [SMALL_STATE(5156)] = 156658, + [SMALL_STATE(5157)] = 156706, + [SMALL_STATE(5158)] = 156752, + [SMALL_STATE(5159)] = 156800, + [SMALL_STATE(5160)] = 156854, + [SMALL_STATE(5161)] = 156902, + [SMALL_STATE(5162)] = 156948, + [SMALL_STATE(5163)] = 156994, + [SMALL_STATE(5164)] = 157046, + [SMALL_STATE(5165)] = 157092, + [SMALL_STATE(5166)] = 157138, + [SMALL_STATE(5167)] = 157186, + [SMALL_STATE(5168)] = 157234, + [SMALL_STATE(5169)] = 157282, + [SMALL_STATE(5170)] = 157334, + [SMALL_STATE(5171)] = 157388, + [SMALL_STATE(5172)] = 157436, + [SMALL_STATE(5173)] = 157484, + [SMALL_STATE(5174)] = 157544, + [SMALL_STATE(5175)] = 157598, + [SMALL_STATE(5176)] = 157662, + [SMALL_STATE(5177)] = 157714, + [SMALL_STATE(5178)] = 157762, + [SMALL_STATE(5179)] = 157818, + [SMALL_STATE(5180)] = 157884, + [SMALL_STATE(5181)] = 157952, + [SMALL_STATE(5182)] = 158022, + [SMALL_STATE(5183)] = 158094, + [SMALL_STATE(5184)] = 158168, + [SMALL_STATE(5185)] = 158244, + [SMALL_STATE(5186)] = 158322, + [SMALL_STATE(5187)] = 158372, + [SMALL_STATE(5188)] = 158420, + [SMALL_STATE(5189)] = 158472, + [SMALL_STATE(5190)] = 158518, + [SMALL_STATE(5191)] = 158564, + [SMALL_STATE(5192)] = 158612, + [SMALL_STATE(5193)] = 158660, + [SMALL_STATE(5194)] = 158706, + [SMALL_STATE(5195)] = 158754, + [SMALL_STATE(5196)] = 158800, + [SMALL_STATE(5197)] = 158846, + [SMALL_STATE(5198)] = 158898, + [SMALL_STATE(5199)] = 158946, + [SMALL_STATE(5200)] = 158992, + [SMALL_STATE(5201)] = 159038, + [SMALL_STATE(5202)] = 159084, + [SMALL_STATE(5203)] = 159130, + [SMALL_STATE(5204)] = 159180, + [SMALL_STATE(5205)] = 159228, + [SMALL_STATE(5206)] = 159274, + [SMALL_STATE(5207)] = 159322, + [SMALL_STATE(5208)] = 159368, + [SMALL_STATE(5209)] = 159413, + [SMALL_STATE(5210)] = 159458, + [SMALL_STATE(5211)] = 159505, + [SMALL_STATE(5212)] = 159556, + [SMALL_STATE(5213)] = 159621, + [SMALL_STATE(5214)] = 159666, + [SMALL_STATE(5215)] = 159711, + [SMALL_STATE(5216)] = 159756, + [SMALL_STATE(5217)] = 159811, + [SMALL_STATE(5218)] = 159860, + [SMALL_STATE(5219)] = 159905, + [SMALL_STATE(5220)] = 159956, + [SMALL_STATE(5221)] = 160001, + [SMALL_STATE(5222)] = 160046, + [SMALL_STATE(5223)] = 160091, + [SMALL_STATE(5224)] = 160136, + [SMALL_STATE(5225)] = 160185, + [SMALL_STATE(5226)] = 160242, + [SMALL_STATE(5227)] = 160287, + [SMALL_STATE(5228)] = 160338, + [SMALL_STATE(5229)] = 160387, + [SMALL_STATE(5230)] = 160432, + [SMALL_STATE(5231)] = 160479, + [SMALL_STATE(5232)] = 160524, + [SMALL_STATE(5233)] = 160577, + [SMALL_STATE(5234)] = 160622, + [SMALL_STATE(5235)] = 160681, + [SMALL_STATE(5236)] = 160726, + [SMALL_STATE(5237)] = 160787, + [SMALL_STATE(5238)] = 160832, + [SMALL_STATE(5239)] = 160877, + [SMALL_STATE(5240)] = 160940, + [SMALL_STATE(5241)] = 160985, + [SMALL_STATE(5242)] = 161050, + [SMALL_STATE(5243)] = 161095, + [SMALL_STATE(5244)] = 161162, + [SMALL_STATE(5245)] = 161207, + [SMALL_STATE(5246)] = 161276, + [SMALL_STATE(5247)] = 161321, + [SMALL_STATE(5248)] = 161392, + [SMALL_STATE(5249)] = 161437, + [SMALL_STATE(5250)] = 161482, + [SMALL_STATE(5251)] = 161527, + [SMALL_STATE(5252)] = 161572, + [SMALL_STATE(5253)] = 161617, + [SMALL_STATE(5254)] = 161662, + [SMALL_STATE(5255)] = 161707, + [SMALL_STATE(5256)] = 161774, + [SMALL_STATE(5257)] = 161843, + [SMALL_STATE(5258)] = 161888, + [SMALL_STATE(5259)] = 161959, + [SMALL_STATE(5260)] = 162004, + [SMALL_STATE(5261)] = 162049, + [SMALL_STATE(5262)] = 162096, + [SMALL_STATE(5263)] = 162141, + [SMALL_STATE(5264)] = 162188, + [SMALL_STATE(5265)] = 162235, + [SMALL_STATE(5266)] = 162280, + [SMALL_STATE(5267)] = 162325, + [SMALL_STATE(5268)] = 162372, + [SMALL_STATE(5269)] = 162421, + [SMALL_STATE(5270)] = 162472, + [SMALL_STATE(5271)] = 162517, + [SMALL_STATE(5272)] = 162562, + [SMALL_STATE(5273)] = 162609, + [SMALL_STATE(5274)] = 162662, + [SMALL_STATE(5275)] = 162713, + [SMALL_STATE(5276)] = 162758, + [SMALL_STATE(5277)] = 162805, + [SMALL_STATE(5278)] = 162852, + [SMALL_STATE(5279)] = 162903, + [SMALL_STATE(5280)] = 162950, + [SMALL_STATE(5281)] = 162997, + [SMALL_STATE(5282)] = 163048, + [SMALL_STATE(5283)] = 163095, + [SMALL_STATE(5284)] = 163140, + [SMALL_STATE(5285)] = 163189, + [SMALL_STATE(5286)] = 163234, + [SMALL_STATE(5287)] = 163279, + [SMALL_STATE(5288)] = 163326, + [SMALL_STATE(5289)] = 163373, + [SMALL_STATE(5290)] = 163418, + [SMALL_STATE(5291)] = 163463, + [SMALL_STATE(5292)] = 163508, + [SMALL_STATE(5293)] = 163559, + [SMALL_STATE(5294)] = 163614, + [SMALL_STATE(5295)] = 163661, + [SMALL_STATE(5296)] = 163708, + [SMALL_STATE(5297)] = 163755, + [SMALL_STATE(5298)] = 163802, + [SMALL_STATE(5299)] = 163849, + [SMALL_STATE(5300)] = 163894, + [SMALL_STATE(5301)] = 163939, + [SMALL_STATE(5302)] = 163992, + [SMALL_STATE(5303)] = 164043, + [SMALL_STATE(5304)] = 164094, + [SMALL_STATE(5305)] = 164139, + [SMALL_STATE(5306)] = 164184, + [SMALL_STATE(5307)] = 164229, + [SMALL_STATE(5308)] = 164274, + [SMALL_STATE(5309)] = 164319, + [SMALL_STATE(5310)] = 164368, + [SMALL_STATE(5311)] = 164417, + [SMALL_STATE(5312)] = 164462, + [SMALL_STATE(5313)] = 164507, + [SMALL_STATE(5314)] = 164552, + [SMALL_STATE(5315)] = 164603, + [SMALL_STATE(5316)] = 164654, + [SMALL_STATE(5317)] = 164699, + [SMALL_STATE(5318)] = 164748, + [SMALL_STATE(5319)] = 164793, + [SMALL_STATE(5320)] = 164844, + [SMALL_STATE(5321)] = 164889, + [SMALL_STATE(5322)] = 164938, + [SMALL_STATE(5323)] = 164989, + [SMALL_STATE(5324)] = 165046, + [SMALL_STATE(5325)] = 165091, + [SMALL_STATE(5326)] = 165142, + [SMALL_STATE(5327)] = 165191, + [SMALL_STATE(5328)] = 165236, + [SMALL_STATE(5329)] = 165285, + [SMALL_STATE(5330)] = 165330, + [SMALL_STATE(5331)] = 165375, + [SMALL_STATE(5332)] = 165426, + [SMALL_STATE(5333)] = 165475, + [SMALL_STATE(5334)] = 165528, + [SMALL_STATE(5335)] = 165573, + [SMALL_STATE(5336)] = 165618, + [SMALL_STATE(5337)] = 165669, + [SMALL_STATE(5338)] = 165714, + [SMALL_STATE(5339)] = 165759, + [SMALL_STATE(5340)] = 165808, + [SMALL_STATE(5341)] = 165853, + [SMALL_STATE(5342)] = 165900, + [SMALL_STATE(5343)] = 165945, + [SMALL_STATE(5344)] = 165990, + [SMALL_STATE(5345)] = 166035, + [SMALL_STATE(5346)] = 166080, + [SMALL_STATE(5347)] = 166125, + [SMALL_STATE(5348)] = 166170, + [SMALL_STATE(5349)] = 166215, + [SMALL_STATE(5350)] = 166260, + [SMALL_STATE(5351)] = 166305, + [SMALL_STATE(5352)] = 166350, + [SMALL_STATE(5353)] = 166399, + [SMALL_STATE(5354)] = 166444, + [SMALL_STATE(5355)] = 166489, + [SMALL_STATE(5356)] = 166536, + [SMALL_STATE(5357)] = 166581, + [SMALL_STATE(5358)] = 166626, + [SMALL_STATE(5359)] = 166673, + [SMALL_STATE(5360)] = 166718, + [SMALL_STATE(5361)] = 166765, + [SMALL_STATE(5362)] = 166810, + [SMALL_STATE(5363)] = 166855, + [SMALL_STATE(5364)] = 166900, + [SMALL_STATE(5365)] = 166945, + [SMALL_STATE(5366)] = 166990, + [SMALL_STATE(5367)] = 167035, + [SMALL_STATE(5368)] = 167084, + [SMALL_STATE(5369)] = 167129, + [SMALL_STATE(5370)] = 167176, + [SMALL_STATE(5371)] = 167223, + [SMALL_STATE(5372)] = 167268, + [SMALL_STATE(5373)] = 167313, + [SMALL_STATE(5374)] = 167362, + [SMALL_STATE(5375)] = 167415, + [SMALL_STATE(5376)] = 167460, + [SMALL_STATE(5377)] = 167505, + [SMALL_STATE(5378)] = 167550, + [SMALL_STATE(5379)] = 167597, + [SMALL_STATE(5380)] = 167644, + [SMALL_STATE(5381)] = 167707, + [SMALL_STATE(5382)] = 167752, + [SMALL_STATE(5383)] = 167797, + [SMALL_STATE(5384)] = 167848, + [SMALL_STATE(5385)] = 167895, + [SMALL_STATE(5386)] = 167944, + [SMALL_STATE(5387)] = 167995, + [SMALL_STATE(5388)] = 168040, + [SMALL_STATE(5389)] = 168085, + [SMALL_STATE(5390)] = 168136, + [SMALL_STATE(5391)] = 168185, + [SMALL_STATE(5392)] = 168230, + [SMALL_STATE(5393)] = 168277, + [SMALL_STATE(5394)] = 168324, + [SMALL_STATE(5395)] = 168375, + [SMALL_STATE(5396)] = 168420, + [SMALL_STATE(5397)] = 168465, + [SMALL_STATE(5398)] = 168510, + [SMALL_STATE(5399)] = 168555, + [SMALL_STATE(5400)] = 168600, + [SMALL_STATE(5401)] = 168645, + [SMALL_STATE(5402)] = 168690, + [SMALL_STATE(5403)] = 168735, + [SMALL_STATE(5404)] = 168784, + [SMALL_STATE(5405)] = 168829, + [SMALL_STATE(5406)] = 168874, + [SMALL_STATE(5407)] = 168925, + [SMALL_STATE(5408)] = 168972, + [SMALL_STATE(5409)] = 169017, + [SMALL_STATE(5410)] = 169066, + [SMALL_STATE(5411)] = 169111, + [SMALL_STATE(5412)] = 169162, + [SMALL_STATE(5413)] = 169207, + [SMALL_STATE(5414)] = 169258, + [SMALL_STATE(5415)] = 169303, + [SMALL_STATE(5416)] = 169348, + [SMALL_STATE(5417)] = 169393, + [SMALL_STATE(5418)] = 169440, + [SMALL_STATE(5419)] = 169485, + [SMALL_STATE(5420)] = 169530, + [SMALL_STATE(5421)] = 169575, + [SMALL_STATE(5422)] = 169620, + [SMALL_STATE(5423)] = 169665, + [SMALL_STATE(5424)] = 169712, + [SMALL_STATE(5425)] = 169757, + [SMALL_STATE(5426)] = 169802, + [SMALL_STATE(5427)] = 169847, + [SMALL_STATE(5428)] = 169894, + [SMALL_STATE(5429)] = 169939, + [SMALL_STATE(5430)] = 169984, + [SMALL_STATE(5431)] = 170029, + [SMALL_STATE(5432)] = 170074, + [SMALL_STATE(5433)] = 170119, + [SMALL_STATE(5434)] = 170164, + [SMALL_STATE(5435)] = 170209, + [SMALL_STATE(5436)] = 170260, + [SMALL_STATE(5437)] = 170305, + [SMALL_STATE(5438)] = 170350, + [SMALL_STATE(5439)] = 170395, + [SMALL_STATE(5440)] = 170444, + [SMALL_STATE(5441)] = 170489, + [SMALL_STATE(5442)] = 170534, + [SMALL_STATE(5443)] = 170579, + [SMALL_STATE(5444)] = 170624, + [SMALL_STATE(5445)] = 170673, + [SMALL_STATE(5446)] = 170720, + [SMALL_STATE(5447)] = 170779, + [SMALL_STATE(5448)] = 170826, + [SMALL_STATE(5449)] = 170871, + [SMALL_STATE(5450)] = 170926, + [SMALL_STATE(5451)] = 170971, + [SMALL_STATE(5452)] = 171022, + [SMALL_STATE(5453)] = 171067, + [SMALL_STATE(5454)] = 171124, + [SMALL_STATE(5455)] = 171169, + [SMALL_STATE(5456)] = 171218, + [SMALL_STATE(5457)] = 171263, + [SMALL_STATE(5458)] = 171310, + [SMALL_STATE(5459)] = 171355, + [SMALL_STATE(5460)] = 171408, + [SMALL_STATE(5461)] = 171453, + [SMALL_STATE(5462)] = 171512, + [SMALL_STATE(5463)] = 171557, + [SMALL_STATE(5464)] = 171618, + [SMALL_STATE(5465)] = 171663, + [SMALL_STATE(5466)] = 171726, + [SMALL_STATE(5467)] = 171771, + [SMALL_STATE(5468)] = 171836, + [SMALL_STATE(5469)] = 171881, + [SMALL_STATE(5470)] = 171948, + [SMALL_STATE(5471)] = 171993, + [SMALL_STATE(5472)] = 172062, + [SMALL_STATE(5473)] = 172107, + [SMALL_STATE(5474)] = 172178, + [SMALL_STATE(5475)] = 172223, + [SMALL_STATE(5476)] = 172282, + [SMALL_STATE(5477)] = 172335, + [SMALL_STATE(5478)] = 172398, + [SMALL_STATE(5479)] = 172449, + [SMALL_STATE(5480)] = 172496, + [SMALL_STATE(5481)] = 172551, + [SMALL_STATE(5482)] = 172616, + [SMALL_STATE(5483)] = 172683, + [SMALL_STATE(5484)] = 172752, + [SMALL_STATE(5485)] = 172823, + [SMALL_STATE(5486)] = 172896, + [SMALL_STATE(5487)] = 172971, + [SMALL_STATE(5488)] = 173048, + [SMALL_STATE(5489)] = 173093, + [SMALL_STATE(5490)] = 173140, + [SMALL_STATE(5491)] = 173185, + [SMALL_STATE(5492)] = 173230, + [SMALL_STATE(5493)] = 173275, + [SMALL_STATE(5494)] = 173320, + [SMALL_STATE(5495)] = 173365, + [SMALL_STATE(5496)] = 173410, + [SMALL_STATE(5497)] = 173455, + [SMALL_STATE(5498)] = 173500, + [SMALL_STATE(5499)] = 173545, + [SMALL_STATE(5500)] = 173606, + [SMALL_STATE(5501)] = 173651, + [SMALL_STATE(5502)] = 173696, + [SMALL_STATE(5503)] = 173741, + [SMALL_STATE(5504)] = 173786, + [SMALL_STATE(5505)] = 173831, + [SMALL_STATE(5506)] = 173876, + [SMALL_STATE(5507)] = 173921, + [SMALL_STATE(5508)] = 173966, + [SMALL_STATE(5509)] = 174011, + [SMALL_STATE(5510)] = 174056, + [SMALL_STATE(5511)] = 174101, + [SMALL_STATE(5512)] = 174146, + [SMALL_STATE(5513)] = 174191, + [SMALL_STATE(5514)] = 174236, + [SMALL_STATE(5515)] = 174281, + [SMALL_STATE(5516)] = 174326, + [SMALL_STATE(5517)] = 174371, + [SMALL_STATE(5518)] = 174422, + [SMALL_STATE(5519)] = 174473, + [SMALL_STATE(5520)] = 174520, + [SMALL_STATE(5521)] = 174565, + [SMALL_STATE(5522)] = 174610, + [SMALL_STATE(5523)] = 174655, + [SMALL_STATE(5524)] = 174702, + [SMALL_STATE(5525)] = 174753, + [SMALL_STATE(5526)] = 174797, + [SMALL_STATE(5527)] = 174841, + [SMALL_STATE(5528)] = 174885, + [SMALL_STATE(5529)] = 174929, + [SMALL_STATE(5530)] = 174973, + [SMALL_STATE(5531)] = 175017, + [SMALL_STATE(5532)] = 175061, + [SMALL_STATE(5533)] = 175105, + [SMALL_STATE(5534)] = 175149, + [SMALL_STATE(5535)] = 175193, + [SMALL_STATE(5536)] = 175237, + [SMALL_STATE(5537)] = 175281, + [SMALL_STATE(5538)] = 175325, + [SMALL_STATE(5539)] = 175371, + [SMALL_STATE(5540)] = 175419, + [SMALL_STATE(5541)] = 175465, + [SMALL_STATE(5542)] = 175511, + [SMALL_STATE(5543)] = 175555, + [SMALL_STATE(5544)] = 175599, + [SMALL_STATE(5545)] = 175643, + [SMALL_STATE(5546)] = 175687, + [SMALL_STATE(5547)] = 175731, + [SMALL_STATE(5548)] = 175775, + [SMALL_STATE(5549)] = 175819, + [SMALL_STATE(5550)] = 175863, + [SMALL_STATE(5551)] = 175911, + [SMALL_STATE(5552)] = 175957, + [SMALL_STATE(5553)] = 176007, + [SMALL_STATE(5554)] = 176051, + [SMALL_STATE(5555)] = 176097, + [SMALL_STATE(5556)] = 176141, + [SMALL_STATE(5557)] = 176187, + [SMALL_STATE(5558)] = 176231, + [SMALL_STATE(5559)] = 176275, + [SMALL_STATE(5560)] = 176319, + [SMALL_STATE(5561)] = 176363, + [SMALL_STATE(5562)] = 176407, + [SMALL_STATE(5563)] = 176455, + [SMALL_STATE(5564)] = 176509, + [SMALL_STATE(5565)] = 176553, + [SMALL_STATE(5566)] = 176597, + [SMALL_STATE(5567)] = 176641, + [SMALL_STATE(5568)] = 176691, + [SMALL_STATE(5569)] = 176741, + [SMALL_STATE(5570)] = 176785, + [SMALL_STATE(5571)] = 176829, + [SMALL_STATE(5572)] = 176879, + [SMALL_STATE(5573)] = 176923, + [SMALL_STATE(5574)] = 176967, + [SMALL_STATE(5575)] = 177011, + [SMALL_STATE(5576)] = 177055, + [SMALL_STATE(5577)] = 177109, + [SMALL_STATE(5578)] = 177153, + [SMALL_STATE(5579)] = 177197, + [SMALL_STATE(5580)] = 177253, + [SMALL_STATE(5581)] = 177297, + [SMALL_STATE(5582)] = 177341, + [SMALL_STATE(5583)] = 177385, + [SMALL_STATE(5584)] = 177429, + [SMALL_STATE(5585)] = 177475, + [SMALL_STATE(5586)] = 177519, + [SMALL_STATE(5587)] = 177565, + [SMALL_STATE(5588)] = 177609, + [SMALL_STATE(5589)] = 177657, + [SMALL_STATE(5590)] = 177703, + [SMALL_STATE(5591)] = 177747, + [SMALL_STATE(5592)] = 177791, + [SMALL_STATE(5593)] = 177835, + [SMALL_STATE(5594)] = 177879, + [SMALL_STATE(5595)] = 177923, + [SMALL_STATE(5596)] = 177967, + [SMALL_STATE(5597)] = 178011, + [SMALL_STATE(5598)] = 178055, + [SMALL_STATE(5599)] = 178099, + [SMALL_STATE(5600)] = 178143, + [SMALL_STATE(5601)] = 178187, + [SMALL_STATE(5602)] = 178231, + [SMALL_STATE(5603)] = 178277, + [SMALL_STATE(5604)] = 178321, + [SMALL_STATE(5605)] = 178365, + [SMALL_STATE(5606)] = 178417, + [SMALL_STATE(5607)] = 178461, + [SMALL_STATE(5608)] = 178505, + [SMALL_STATE(5609)] = 178563, + [SMALL_STATE(5610)] = 178607, + [SMALL_STATE(5611)] = 178667, + [SMALL_STATE(5612)] = 178715, + [SMALL_STATE(5613)] = 178759, + [SMALL_STATE(5614)] = 178803, + [SMALL_STATE(5615)] = 178847, + [SMALL_STATE(5616)] = 178891, + [SMALL_STATE(5617)] = 178935, + [SMALL_STATE(5618)] = 178979, + [SMALL_STATE(5619)] = 179033, + [SMALL_STATE(5620)] = 179077, + [SMALL_STATE(5621)] = 179127, + [SMALL_STATE(5622)] = 179171, + [SMALL_STATE(5623)] = 179227, + [SMALL_STATE(5624)] = 179271, + [SMALL_STATE(5625)] = 179319, + [SMALL_STATE(5626)] = 179363, + [SMALL_STATE(5627)] = 179409, + [SMALL_STATE(5628)] = 179453, + [SMALL_STATE(5629)] = 179505, + [SMALL_STATE(5630)] = 179549, + [SMALL_STATE(5631)] = 179607, + [SMALL_STATE(5632)] = 179651, + [SMALL_STATE(5633)] = 179711, + [SMALL_STATE(5634)] = 179755, + [SMALL_STATE(5635)] = 179817, + [SMALL_STATE(5636)] = 179861, + [SMALL_STATE(5637)] = 179925, + [SMALL_STATE(5638)] = 179969, + [SMALL_STATE(5639)] = 180035, + [SMALL_STATE(5640)] = 180079, + [SMALL_STATE(5641)] = 180147, + [SMALL_STATE(5642)] = 180191, + [SMALL_STATE(5643)] = 180261, + [SMALL_STATE(5644)] = 180305, + [SMALL_STATE(5645)] = 180367, + [SMALL_STATE(5646)] = 180411, + [SMALL_STATE(5647)] = 180475, + [SMALL_STATE(5648)] = 180519, + [SMALL_STATE(5649)] = 180585, + [SMALL_STATE(5650)] = 180629, + [SMALL_STATE(5651)] = 180679, + [SMALL_STATE(5652)] = 180747, + [SMALL_STATE(5653)] = 180791, + [SMALL_STATE(5654)] = 180861, + [SMALL_STATE(5655)] = 180905, + [SMALL_STATE(5656)] = 180949, + [SMALL_STATE(5657)] = 180999, + [SMALL_STATE(5658)] = 181043, + [SMALL_STATE(5659)] = 181087, + [SMALL_STATE(5660)] = 181131, + [SMALL_STATE(5661)] = 181179, + [SMALL_STATE(5662)] = 181223, + [SMALL_STATE(5663)] = 181293, + [SMALL_STATE(5664)] = 181343, + [SMALL_STATE(5665)] = 181393, + [SMALL_STATE(5666)] = 181441, + [SMALL_STATE(5667)] = 181485, + [SMALL_STATE(5668)] = 181535, + [SMALL_STATE(5669)] = 181579, + [SMALL_STATE(5670)] = 181623, + [SMALL_STATE(5671)] = 181667, + [SMALL_STATE(5672)] = 181713, + [SMALL_STATE(5673)] = 181757, + [SMALL_STATE(5674)] = 181807, + [SMALL_STATE(5675)] = 181851, + [SMALL_STATE(5676)] = 181895, + [SMALL_STATE(5677)] = 181943, + [SMALL_STATE(5678)] = 181991, + [SMALL_STATE(5679)] = 182037, + [SMALL_STATE(5680)] = 182081, + [SMALL_STATE(5681)] = 182125, + [SMALL_STATE(5682)] = 182173, + [SMALL_STATE(5683)] = 182217, + [SMALL_STATE(5684)] = 182261, + [SMALL_STATE(5685)] = 182305, + [SMALL_STATE(5686)] = 182349, + [SMALL_STATE(5687)] = 182393, + [SMALL_STATE(5688)] = 182443, + [SMALL_STATE(5689)] = 182489, + [SMALL_STATE(5690)] = 182559, + [SMALL_STATE(5691)] = 182605, + [SMALL_STATE(5692)] = 182651, + [SMALL_STATE(5693)] = 182695, + [SMALL_STATE(5694)] = 182739, + [SMALL_STATE(5695)] = 182783, + [SMALL_STATE(5696)] = 182827, + [SMALL_STATE(5697)] = 182871, + [SMALL_STATE(5698)] = 182915, + [SMALL_STATE(5699)] = 182969, + [SMALL_STATE(5700)] = 183013, + [SMALL_STATE(5701)] = 183063, + [SMALL_STATE(5702)] = 183107, + [SMALL_STATE(5703)] = 183163, + [SMALL_STATE(5704)] = 183207, + [SMALL_STATE(5705)] = 183251, + [SMALL_STATE(5706)] = 183297, + [SMALL_STATE(5707)] = 183341, + [SMALL_STATE(5708)] = 183391, + [SMALL_STATE(5709)] = 183435, + [SMALL_STATE(5710)] = 183481, + [SMALL_STATE(5711)] = 183525, + [SMALL_STATE(5712)] = 183569, + [SMALL_STATE(5713)] = 183613, + [SMALL_STATE(5714)] = 183657, + [SMALL_STATE(5715)] = 183701, + [SMALL_STATE(5716)] = 183745, + [SMALL_STATE(5717)] = 183815, + [SMALL_STATE(5718)] = 183865, + [SMALL_STATE(5719)] = 183913, + [SMALL_STATE(5720)] = 183957, + [SMALL_STATE(5721)] = 184001, + [SMALL_STATE(5722)] = 184045, + [SMALL_STATE(5723)] = 184089, + [SMALL_STATE(5724)] = 184133, + [SMALL_STATE(5725)] = 184177, + [SMALL_STATE(5726)] = 184221, + [SMALL_STATE(5727)] = 184265, + [SMALL_STATE(5728)] = 184309, + [SMALL_STATE(5729)] = 184353, + [SMALL_STATE(5730)] = 184399, + [SMALL_STATE(5731)] = 184443, + [SMALL_STATE(5732)] = 184487, + [SMALL_STATE(5733)] = 184531, + [SMALL_STATE(5734)] = 184575, + [SMALL_STATE(5735)] = 184625, + [SMALL_STATE(5736)] = 184669, + [SMALL_STATE(5737)] = 184715, + [SMALL_STATE(5738)] = 184759, + [SMALL_STATE(5739)] = 184811, + [SMALL_STATE(5740)] = 184857, + [SMALL_STATE(5741)] = 184901, + [SMALL_STATE(5742)] = 184945, + [SMALL_STATE(5743)] = 184989, + [SMALL_STATE(5744)] = 185035, + [SMALL_STATE(5745)] = 185079, + [SMALL_STATE(5746)] = 185123, + [SMALL_STATE(5747)] = 185167, + [SMALL_STATE(5748)] = 185213, + [SMALL_STATE(5749)] = 185257, + [SMALL_STATE(5750)] = 185301, + [SMALL_STATE(5751)] = 185345, + [SMALL_STATE(5752)] = 185389, + [SMALL_STATE(5753)] = 185433, + [SMALL_STATE(5754)] = 185483, + [SMALL_STATE(5755)] = 185527, + [SMALL_STATE(5756)] = 185575, + [SMALL_STATE(5757)] = 185633, + [SMALL_STATE(5758)] = 185683, + [SMALL_STATE(5759)] = 185727, + [SMALL_STATE(5760)] = 185771, + [SMALL_STATE(5761)] = 185815, + [SMALL_STATE(5762)] = 185859, + [SMALL_STATE(5763)] = 185903, + [SMALL_STATE(5764)] = 185947, + [SMALL_STATE(5765)] = 185991, + [SMALL_STATE(5766)] = 186037, + [SMALL_STATE(5767)] = 186089, + [SMALL_STATE(5768)] = 186133, + [SMALL_STATE(5769)] = 186177, + [SMALL_STATE(5770)] = 186221, + [SMALL_STATE(5771)] = 186265, + [SMALL_STATE(5772)] = 186309, + [SMALL_STATE(5773)] = 186361, + [SMALL_STATE(5774)] = 186421, + [SMALL_STATE(5775)] = 186465, + [SMALL_STATE(5776)] = 186527, + [SMALL_STATE(5777)] = 186571, + [SMALL_STATE(5778)] = 186635, + [SMALL_STATE(5779)] = 186679, + [SMALL_STATE(5780)] = 186745, + [SMALL_STATE(5781)] = 186803, + [SMALL_STATE(5782)] = 186847, + [SMALL_STATE(5783)] = 186891, + [SMALL_STATE(5784)] = 186935, + [SMALL_STATE(5785)] = 187005, + [SMALL_STATE(5786)] = 187049, + [SMALL_STATE(5787)] = 187099, + [SMALL_STATE(5788)] = 187149, + [SMALL_STATE(5789)] = 187217, + [SMALL_STATE(5790)] = 187261, + [SMALL_STATE(5791)] = 187309, + [SMALL_STATE(5792)] = 187361, + [SMALL_STATE(5793)] = 187421, + [SMALL_STATE(5794)] = 187471, + [SMALL_STATE(5795)] = 187515, + [SMALL_STATE(5796)] = 187561, + [SMALL_STATE(5797)] = 187605, + [SMALL_STATE(5798)] = 187655, + [SMALL_STATE(5799)] = 187705, + [SMALL_STATE(5800)] = 187751, + [SMALL_STATE(5801)] = 187795, + [SMALL_STATE(5802)] = 187839, + [SMALL_STATE(5803)] = 187883, + [SMALL_STATE(5804)] = 187937, + [SMALL_STATE(5805)] = 187981, + [SMALL_STATE(5806)] = 188025, + [SMALL_STATE(5807)] = 188087, + [SMALL_STATE(5808)] = 188131, + [SMALL_STATE(5809)] = 188179, + [SMALL_STATE(5810)] = 188223, + [SMALL_STATE(5811)] = 188287, + [SMALL_STATE(5812)] = 188331, + [SMALL_STATE(5813)] = 188375, + [SMALL_STATE(5814)] = 188419, + [SMALL_STATE(5815)] = 188485, + [SMALL_STATE(5816)] = 188553, + [SMALL_STATE(5817)] = 188597, + [SMALL_STATE(5818)] = 188667, + [SMALL_STATE(5819)] = 188711, + [SMALL_STATE(5820)] = 188755, + [SMALL_STATE(5821)] = 188803, + [SMALL_STATE(5822)] = 188875, + [SMALL_STATE(5823)] = 188923, + [SMALL_STATE(5824)] = 188967, + [SMALL_STATE(5825)] = 189037, + [SMALL_STATE(5826)] = 189111, + [SMALL_STATE(5827)] = 189155, + [SMALL_STATE(5828)] = 189199, + [SMALL_STATE(5829)] = 189247, + [SMALL_STATE(5830)] = 189297, + [SMALL_STATE(5831)] = 189341, + [SMALL_STATE(5832)] = 189385, + [SMALL_STATE(5833)] = 189429, + [SMALL_STATE(5834)] = 189473, + [SMALL_STATE(5835)] = 189517, + [SMALL_STATE(5836)] = 189567, + [SMALL_STATE(5837)] = 189611, + [SMALL_STATE(5838)] = 189661, + [SMALL_STATE(5839)] = 189705, + [SMALL_STATE(5840)] = 189749, + [SMALL_STATE(5841)] = 189797, + [SMALL_STATE(5842)] = 189845, + [SMALL_STATE(5843)] = 189893, + [SMALL_STATE(5844)] = 189937, + [SMALL_STATE(5845)] = 189981, + [SMALL_STATE(5846)] = 190025, + [SMALL_STATE(5847)] = 190071, + [SMALL_STATE(5848)] = 190119, + [SMALL_STATE(5849)] = 190167, + [SMALL_STATE(5850)] = 190211, + [SMALL_STATE(5851)] = 190255, + [SMALL_STATE(5852)] = 190303, + [SMALL_STATE(5853)] = 190347, + [SMALL_STATE(5854)] = 190391, + [SMALL_STATE(5855)] = 190435, + [SMALL_STATE(5856)] = 190479, + [SMALL_STATE(5857)] = 190523, + [SMALL_STATE(5858)] = 190567, + [SMALL_STATE(5859)] = 190615, + [SMALL_STATE(5860)] = 190659, + [SMALL_STATE(5861)] = 190703, + [SMALL_STATE(5862)] = 190747, + [SMALL_STATE(5863)] = 190791, + [SMALL_STATE(5864)] = 190835, + [SMALL_STATE(5865)] = 190880, + [SMALL_STATE(5866)] = 190923, + [SMALL_STATE(5867)] = 190966, + [SMALL_STATE(5868)] = 191011, + [SMALL_STATE(5869)] = 191054, + [SMALL_STATE(5870)] = 191097, + [SMALL_STATE(5871)] = 191152, + [SMALL_STATE(5872)] = 191197, + [SMALL_STATE(5873)] = 191242, + [SMALL_STATE(5874)] = 191287, + [SMALL_STATE(5875)] = 191330, + [SMALL_STATE(5876)] = 191373, + [SMALL_STATE(5877)] = 191416, + [SMALL_STATE(5878)] = 191461, + [SMALL_STATE(5879)] = 191504, + [SMALL_STATE(5880)] = 191547, + [SMALL_STATE(5881)] = 191590, + [SMALL_STATE(5882)] = 191633, + [SMALL_STATE(5883)] = 191678, + [SMALL_STATE(5884)] = 191723, + [SMALL_STATE(5885)] = 191770, + [SMALL_STATE(5886)] = 191813, + [SMALL_STATE(5887)] = 191882, + [SMALL_STATE(5888)] = 191925, + [SMALL_STATE(5889)] = 191968, + [SMALL_STATE(5890)] = 192011, + [SMALL_STATE(5891)] = 192056, + [SMALL_STATE(5892)] = 192101, + [SMALL_STATE(5893)] = 192144, + [SMALL_STATE(5894)] = 192189, + [SMALL_STATE(5895)] = 192234, + [SMALL_STATE(5896)] = 192279, + [SMALL_STATE(5897)] = 192322, + [SMALL_STATE(5898)] = 192365, + [SMALL_STATE(5899)] = 192408, + [SMALL_STATE(5900)] = 192451, + [SMALL_STATE(5901)] = 192494, + [SMALL_STATE(5902)] = 192543, + [SMALL_STATE(5903)] = 192622, + [SMALL_STATE(5904)] = 192669, + [SMALL_STATE(5905)] = 192714, + [SMALL_STATE(5906)] = 192761, + [SMALL_STATE(5907)] = 192804, + [SMALL_STATE(5908)] = 192849, + [SMALL_STATE(5909)] = 192892, + [SMALL_STATE(5910)] = 192937, + [SMALL_STATE(5911)] = 192982, + [SMALL_STATE(5912)] = 193027, + [SMALL_STATE(5913)] = 193070, + [SMALL_STATE(5914)] = 193113, + [SMALL_STATE(5915)] = 193156, + [SMALL_STATE(5916)] = 193203, + [SMALL_STATE(5917)] = 193246, + [SMALL_STATE(5918)] = 193289, + [SMALL_STATE(5919)] = 193332, + [SMALL_STATE(5920)] = 193375, + [SMALL_STATE(5921)] = 193418, + [SMALL_STATE(5922)] = 193471, + [SMALL_STATE(5923)] = 193514, + [SMALL_STATE(5924)] = 193565, + [SMALL_STATE(5925)] = 193608, + [SMALL_STATE(5926)] = 193677, + [SMALL_STATE(5927)] = 193722, + [SMALL_STATE(5928)] = 193769, + [SMALL_STATE(5929)] = 193814, + [SMALL_STATE(5930)] = 193857, + [SMALL_STATE(5931)] = 193916, + [SMALL_STATE(5932)] = 193959, + [SMALL_STATE(5933)] = 194006, + [SMALL_STATE(5934)] = 194051, + [SMALL_STATE(5935)] = 194094, + [SMALL_STATE(5936)] = 194137, + [SMALL_STATE(5937)] = 194180, + [SMALL_STATE(5938)] = 194223, + [SMALL_STATE(5939)] = 194268, + [SMALL_STATE(5940)] = 194311, + [SMALL_STATE(5941)] = 194354, + [SMALL_STATE(5942)] = 194397, + [SMALL_STATE(5943)] = 194440, + [SMALL_STATE(5944)] = 194483, + [SMALL_STATE(5945)] = 194526, + [SMALL_STATE(5946)] = 194569, + [SMALL_STATE(5947)] = 194636, + [SMALL_STATE(5948)] = 194679, + [SMALL_STATE(5949)] = 194722, + [SMALL_STATE(5950)] = 194767, + [SMALL_STATE(5951)] = 194810, + [SMALL_STATE(5952)] = 194853, + [SMALL_STATE(5953)] = 194896, + [SMALL_STATE(5954)] = 194939, + [SMALL_STATE(5955)] = 194982, + [SMALL_STATE(5956)] = 195025, + [SMALL_STATE(5957)] = 195082, + [SMALL_STATE(5958)] = 195131, + [SMALL_STATE(5959)] = 195176, + [SMALL_STATE(5960)] = 195219, + [SMALL_STATE(5961)] = 195268, + [SMALL_STATE(5962)] = 195311, + [SMALL_STATE(5963)] = 195374, + [SMALL_STATE(5964)] = 195417, + [SMALL_STATE(5965)] = 195460, + [SMALL_STATE(5966)] = 195529, + [SMALL_STATE(5967)] = 195572, + [SMALL_STATE(5968)] = 195641, + [SMALL_STATE(5969)] = 195686, + [SMALL_STATE(5970)] = 195729, + [SMALL_STATE(5971)] = 195772, + [SMALL_STATE(5972)] = 195815, + [SMALL_STATE(5973)] = 195862, + [SMALL_STATE(5974)] = 195941, + [SMALL_STATE(5975)] = 195984, + [SMALL_STATE(5976)] = 196049, + [SMALL_STATE(5977)] = 196094, + [SMALL_STATE(5978)] = 196139, + [SMALL_STATE(5979)] = 196208, + [SMALL_STATE(5980)] = 196255, + [SMALL_STATE(5981)] = 196300, + [SMALL_STATE(5982)] = 196343, + [SMALL_STATE(5983)] = 196404, + [SMALL_STATE(5984)] = 196447, + [SMALL_STATE(5985)] = 196490, + [SMALL_STATE(5986)] = 196533, + [SMALL_STATE(5987)] = 196575, + [SMALL_STATE(5988)] = 196617, + [SMALL_STATE(5989)] = 196659, + [SMALL_STATE(5990)] = 196701, + [SMALL_STATE(5991)] = 196743, + [SMALL_STATE(5992)] = 196785, + [SMALL_STATE(5993)] = 196833, + [SMALL_STATE(5994)] = 196875, + [SMALL_STATE(5995)] = 196917, + [SMALL_STATE(5996)] = 196959, + [SMALL_STATE(5997)] = 197001, + [SMALL_STATE(5998)] = 197043, + [SMALL_STATE(5999)] = 197089, + [SMALL_STATE(6000)] = 197131, + [SMALL_STATE(6001)] = 197173, + [SMALL_STATE(6002)] = 197215, + [SMALL_STATE(6003)] = 197257, + [SMALL_STATE(6004)] = 197299, + [SMALL_STATE(6005)] = 197343, + [SMALL_STATE(6006)] = 197387, + [SMALL_STATE(6007)] = 197429, + [SMALL_STATE(6008)] = 197471, + [SMALL_STATE(6009)] = 197513, + [SMALL_STATE(6010)] = 197555, + [SMALL_STATE(6011)] = 197597, + [SMALL_STATE(6012)] = 197639, + [SMALL_STATE(6013)] = 197683, + [SMALL_STATE(6014)] = 197727, + [SMALL_STATE(6015)] = 197771, + [SMALL_STATE(6016)] = 197813, + [SMALL_STATE(6017)] = 197855, + [SMALL_STATE(6018)] = 197897, + [SMALL_STATE(6019)] = 197939, + [SMALL_STATE(6020)] = 197981, + [SMALL_STATE(6021)] = 198023, + [SMALL_STATE(6022)] = 198065, + [SMALL_STATE(6023)] = 198107, + [SMALL_STATE(6024)] = 198149, + [SMALL_STATE(6025)] = 198191, + [SMALL_STATE(6026)] = 198233, + [SMALL_STATE(6027)] = 198275, + [SMALL_STATE(6028)] = 198317, + [SMALL_STATE(6029)] = 198359, + [SMALL_STATE(6030)] = 198401, + [SMALL_STATE(6031)] = 198443, + [SMALL_STATE(6032)] = 198485, + [SMALL_STATE(6033)] = 198527, + [SMALL_STATE(6034)] = 198569, + [SMALL_STATE(6035)] = 198611, + [SMALL_STATE(6036)] = 198653, + [SMALL_STATE(6037)] = 198695, + [SMALL_STATE(6038)] = 198739, + [SMALL_STATE(6039)] = 198781, + [SMALL_STATE(6040)] = 198823, + [SMALL_STATE(6041)] = 198865, + [SMALL_STATE(6042)] = 198907, + [SMALL_STATE(6043)] = 198949, + [SMALL_STATE(6044)] = 198993, + [SMALL_STATE(6045)] = 199037, + [SMALL_STATE(6046)] = 199079, + [SMALL_STATE(6047)] = 199121, + [SMALL_STATE(6048)] = 199197, + [SMALL_STATE(6049)] = 199241, + [SMALL_STATE(6050)] = 199283, + [SMALL_STATE(6051)] = 199329, + [SMALL_STATE(6052)] = 199373, + [SMALL_STATE(6053)] = 199415, + [SMALL_STATE(6054)] = 199457, + [SMALL_STATE(6055)] = 199501, + [SMALL_STATE(6056)] = 199545, + [SMALL_STATE(6057)] = 199587, + [SMALL_STATE(6058)] = 199629, + [SMALL_STATE(6059)] = 199671, + [SMALL_STATE(6060)] = 199713, + [SMALL_STATE(6061)] = 199765, + [SMALL_STATE(6062)] = 199807, + [SMALL_STATE(6063)] = 199855, + [SMALL_STATE(6064)] = 199897, + [SMALL_STATE(6065)] = 199951, + [SMALL_STATE(6066)] = 199993, + [SMALL_STATE(6067)] = 200039, + [SMALL_STATE(6068)] = 200081, + [SMALL_STATE(6069)] = 200125, + [SMALL_STATE(6070)] = 200167, + [SMALL_STATE(6071)] = 200217, + [SMALL_STATE(6072)] = 200259, + [SMALL_STATE(6073)] = 200315, + [SMALL_STATE(6074)] = 200357, + [SMALL_STATE(6075)] = 200415, + [SMALL_STATE(6076)] = 200457, + [SMALL_STATE(6077)] = 200499, + [SMALL_STATE(6078)] = 200561, + [SMALL_STATE(6079)] = 200603, + [SMALL_STATE(6080)] = 200667, + [SMALL_STATE(6081)] = 200709, + [SMALL_STATE(6082)] = 200775, + [SMALL_STATE(6083)] = 200817, + [SMALL_STATE(6084)] = 200885, + [SMALL_STATE(6085)] = 200927, + [SMALL_STATE(6086)] = 200969, + [SMALL_STATE(6087)] = 201011, + [SMALL_STATE(6088)] = 201053, + [SMALL_STATE(6089)] = 201095, + [SMALL_STATE(6090)] = 201135, + [SMALL_STATE(6091)] = 201181, + [SMALL_STATE(6092)] = 201223, + [SMALL_STATE(6093)] = 201265, + [SMALL_STATE(6094)] = 201307, + [SMALL_STATE(6095)] = 201349, + [SMALL_STATE(6096)] = 201391, + [SMALL_STATE(6097)] = 201433, + [SMALL_STATE(6098)] = 201475, + [SMALL_STATE(6099)] = 201517, + [SMALL_STATE(6100)] = 201561, + [SMALL_STATE(6101)] = 201603, + [SMALL_STATE(6102)] = 201645, + [SMALL_STATE(6103)] = 201687, + [SMALL_STATE(6104)] = 201731, + [SMALL_STATE(6105)] = 201775, + [SMALL_STATE(6106)] = 201819, + [SMALL_STATE(6107)] = 201861, + [SMALL_STATE(6108)] = 201903, + [SMALL_STATE(6109)] = 201945, + [SMALL_STATE(6110)] = 201987, + [SMALL_STATE(6111)] = 202029, + [SMALL_STATE(6112)] = 202071, + [SMALL_STATE(6113)] = 202113, + [SMALL_STATE(6114)] = 202157, + [SMALL_STATE(6115)] = 202201, + [SMALL_STATE(6116)] = 202243, + [SMALL_STATE(6117)] = 202285, + [SMALL_STATE(6118)] = 202327, + [SMALL_STATE(6119)] = 202369, + [SMALL_STATE(6120)] = 202409, + [SMALL_STATE(6121)] = 202451, + [SMALL_STATE(6122)] = 202493, + [SMALL_STATE(6123)] = 202535, + [SMALL_STATE(6124)] = 202577, + [SMALL_STATE(6125)] = 202619, + [SMALL_STATE(6126)] = 202661, + [SMALL_STATE(6127)] = 202703, + [SMALL_STATE(6128)] = 202745, + [SMALL_STATE(6129)] = 202787, + [SMALL_STATE(6130)] = 202829, + [SMALL_STATE(6131)] = 202871, + [SMALL_STATE(6132)] = 202913, + [SMALL_STATE(6133)] = 202955, + [SMALL_STATE(6134)] = 202997, + [SMALL_STATE(6135)] = 203039, + [SMALL_STATE(6136)] = 203081, + [SMALL_STATE(6137)] = 203123, + [SMALL_STATE(6138)] = 203165, + [SMALL_STATE(6139)] = 203207, + [SMALL_STATE(6140)] = 203249, + [SMALL_STATE(6141)] = 203291, + [SMALL_STATE(6142)] = 203337, + [SMALL_STATE(6143)] = 203379, + [SMALL_STATE(6144)] = 203421, + [SMALL_STATE(6145)] = 203463, + [SMALL_STATE(6146)] = 203505, + [SMALL_STATE(6147)] = 203547, + [SMALL_STATE(6148)] = 203589, + [SMALL_STATE(6149)] = 203631, + [SMALL_STATE(6150)] = 203673, + [SMALL_STATE(6151)] = 203715, + [SMALL_STATE(6152)] = 203757, + [SMALL_STATE(6153)] = 203799, + [SMALL_STATE(6154)] = 203853, + [SMALL_STATE(6155)] = 203903, + [SMALL_STATE(6156)] = 203959, + [SMALL_STATE(6157)] = 204007, + [SMALL_STATE(6158)] = 204051, + [SMALL_STATE(6159)] = 204103, + [SMALL_STATE(6160)] = 204161, + [SMALL_STATE(6161)] = 204221, + [SMALL_STATE(6162)] = 204283, + [SMALL_STATE(6163)] = 204347, + [SMALL_STATE(6164)] = 204413, + [SMALL_STATE(6165)] = 204481, + [SMALL_STATE(6166)] = 204551, + [SMALL_STATE(6167)] = 204593, + [SMALL_STATE(6168)] = 204635, + [SMALL_STATE(6169)] = 204679, + [SMALL_STATE(6170)] = 204723, + [SMALL_STATE(6171)] = 204765, + [SMALL_STATE(6172)] = 204841, + [SMALL_STATE(6173)] = 204883, + [SMALL_STATE(6174)] = 204927, + [SMALL_STATE(6175)] = 204969, + [SMALL_STATE(6176)] = 205011, + [SMALL_STATE(6177)] = 205053, + [SMALL_STATE(6178)] = 205095, + [SMALL_STATE(6179)] = 205137, + [SMALL_STATE(6180)] = 205179, + [SMALL_STATE(6181)] = 205221, + [SMALL_STATE(6182)] = 205263, + [SMALL_STATE(6183)] = 205305, + [SMALL_STATE(6184)] = 205347, + [SMALL_STATE(6185)] = 205389, + [SMALL_STATE(6186)] = 205431, + [SMALL_STATE(6187)] = 205473, + [SMALL_STATE(6188)] = 205515, + [SMALL_STATE(6189)] = 205557, + [SMALL_STATE(6190)] = 205599, + [SMALL_STATE(6191)] = 205641, + [SMALL_STATE(6192)] = 205683, + [SMALL_STATE(6193)] = 205725, + [SMALL_STATE(6194)] = 205767, + [SMALL_STATE(6195)] = 205809, + [SMALL_STATE(6196)] = 205851, + [SMALL_STATE(6197)] = 205893, + [SMALL_STATE(6198)] = 205935, + [SMALL_STATE(6199)] = 205977, + [SMALL_STATE(6200)] = 206019, + [SMALL_STATE(6201)] = 206061, + [SMALL_STATE(6202)] = 206103, + [SMALL_STATE(6203)] = 206163, + [SMALL_STATE(6204)] = 206204, + [SMALL_STATE(6205)] = 206245, + [SMALL_STATE(6206)] = 206286, + [SMALL_STATE(6207)] = 206327, + [SMALL_STATE(6208)] = 206368, + [SMALL_STATE(6209)] = 206409, + [SMALL_STATE(6210)] = 206450, + [SMALL_STATE(6211)] = 206491, + [SMALL_STATE(6212)] = 206530, + [SMALL_STATE(6213)] = 206571, + [SMALL_STATE(6214)] = 206612, + [SMALL_STATE(6215)] = 206653, + [SMALL_STATE(6216)] = 206694, + [SMALL_STATE(6217)] = 206735, + [SMALL_STATE(6218)] = 206776, + [SMALL_STATE(6219)] = 206817, + [SMALL_STATE(6220)] = 206858, + [SMALL_STATE(6221)] = 206899, + [SMALL_STATE(6222)] = 206940, + [SMALL_STATE(6223)] = 206981, + [SMALL_STATE(6224)] = 207022, + [SMALL_STATE(6225)] = 207063, + [SMALL_STATE(6226)] = 207104, + [SMALL_STATE(6227)] = 207145, + [SMALL_STATE(6228)] = 207190, + [SMALL_STATE(6229)] = 207231, + [SMALL_STATE(6230)] = 207272, + [SMALL_STATE(6231)] = 207313, + [SMALL_STATE(6232)] = 207356, + [SMALL_STATE(6233)] = 207429, + [SMALL_STATE(6234)] = 207470, + [SMALL_STATE(6235)] = 207513, + [SMALL_STATE(6236)] = 207554, + [SMALL_STATE(6237)] = 207595, + [SMALL_STATE(6238)] = 207664, + [SMALL_STATE(6239)] = 207717, + [SMALL_STATE(6240)] = 207792, + [SMALL_STATE(6241)] = 207859, + [SMALL_STATE(6242)] = 207900, + [SMALL_STATE(6243)] = 207941, + [SMALL_STATE(6244)] = 207990, + [SMALL_STATE(6245)] = 208031, + [SMALL_STATE(6246)] = 208086, + [SMALL_STATE(6247)] = 208129, + [SMALL_STATE(6248)] = 208170, + [SMALL_STATE(6249)] = 208211, + [SMALL_STATE(6250)] = 208252, + [SMALL_STATE(6251)] = 208299, + [SMALL_STATE(6252)] = 208340, + [SMALL_STATE(6253)] = 208395, + [SMALL_STATE(6254)] = 208446, + [SMALL_STATE(6255)] = 208503, + [SMALL_STATE(6256)] = 208550, + [SMALL_STATE(6257)] = 208591, + [SMALL_STATE(6258)] = 208644, + [SMALL_STATE(6259)] = 208703, + [SMALL_STATE(6260)] = 208760, + [SMALL_STATE(6261)] = 208821, + [SMALL_STATE(6262)] = 208862, + [SMALL_STATE(6263)] = 208925, + [SMALL_STATE(6264)] = 208990, + [SMALL_STATE(6265)] = 209057, + [SMALL_STATE(6266)] = 209100, + [SMALL_STATE(6267)] = 209169, + [SMALL_STATE(6268)] = 209240, + [SMALL_STATE(6269)] = 209281, + [SMALL_STATE(6270)] = 209324, + [SMALL_STATE(6271)] = 209365, + [SMALL_STATE(6272)] = 209416, + [SMALL_STATE(6273)] = 209457, + [SMALL_STATE(6274)] = 209498, + [SMALL_STATE(6275)] = 209549, + [SMALL_STATE(6276)] = 209606, + [SMALL_STATE(6277)] = 209647, + [SMALL_STATE(6278)] = 209706, + [SMALL_STATE(6279)] = 209747, + [SMALL_STATE(6280)] = 209788, + [SMALL_STATE(6281)] = 209849, + [SMALL_STATE(6282)] = 209910, + [SMALL_STATE(6283)] = 209951, + [SMALL_STATE(6284)] = 209998, + [SMALL_STATE(6285)] = 210061, + [SMALL_STATE(6286)] = 210102, + [SMALL_STATE(6287)] = 210143, + [SMALL_STATE(6288)] = 210198, + [SMALL_STATE(6289)] = 210249, + [SMALL_STATE(6290)] = 210306, + [SMALL_STATE(6291)] = 210353, + [SMALL_STATE(6292)] = 210396, + [SMALL_STATE(6293)] = 210439, + [SMALL_STATE(6294)] = 210492, + [SMALL_STATE(6295)] = 210551, + [SMALL_STATE(6296)] = 210592, + [SMALL_STATE(6297)] = 210653, + [SMALL_STATE(6298)] = 210716, + [SMALL_STATE(6299)] = 210781, + [SMALL_STATE(6300)] = 210848, + [SMALL_STATE(6301)] = 210903, + [SMALL_STATE(6302)] = 210952, + [SMALL_STATE(6303)] = 211011, + [SMALL_STATE(6304)] = 211058, + [SMALL_STATE(6305)] = 211101, + [SMALL_STATE(6306)] = 211152, + [SMALL_STATE(6307)] = 211213, + [SMALL_STATE(6308)] = 211276, + [SMALL_STATE(6309)] = 211341, + [SMALL_STATE(6310)] = 211408, + [SMALL_STATE(6311)] = 211477, + [SMALL_STATE(6312)] = 211548, + [SMALL_STATE(6313)] = 211621, + [SMALL_STATE(6314)] = 211690, + [SMALL_STATE(6315)] = 211761, + [SMALL_STATE(6316)] = 211826, + [SMALL_STATE(6317)] = 211891, + [SMALL_STATE(6318)] = 211962, + [SMALL_STATE(6319)] = 212029, + [SMALL_STATE(6320)] = 212070, + [SMALL_STATE(6321)] = 212139, + [SMALL_STATE(6322)] = 212192, + [SMALL_STATE(6323)] = 212233, + [SMALL_STATE(6324)] = 212296, + [SMALL_STATE(6325)] = 212337, + [SMALL_STATE(6326)] = 212380, + [SMALL_STATE(6327)] = 212421, + [SMALL_STATE(6328)] = 212462, + [SMALL_STATE(6329)] = 212505, + [SMALL_STATE(6330)] = 212546, + [SMALL_STATE(6331)] = 212589, + [SMALL_STATE(6332)] = 212630, + [SMALL_STATE(6333)] = 212673, + [SMALL_STATE(6334)] = 212739, + [SMALL_STATE(6335)] = 212803, + [SMALL_STATE(6336)] = 212865, + [SMALL_STATE(6337)] = 212921, + [SMALL_STATE(6338)] = 212973, + [SMALL_STATE(6339)] = 213041, + [SMALL_STATE(6340)] = 213109, + [SMALL_STATE(6341)] = 213179, + [SMALL_STATE(6342)] = 213249, + [SMALL_STATE(6343)] = 213301, + [SMALL_STATE(6344)] = 213347, + [SMALL_STATE(6345)] = 213397, + [SMALL_STATE(6346)] = 213461, + [SMALL_STATE(6347)] = 213527, + [SMALL_STATE(6348)] = 213577, + [SMALL_STATE(6349)] = 213619, + [SMALL_STATE(6350)] = 213675, + [SMALL_STATE(6351)] = 213733, + [SMALL_STATE(6352)] = 213775, + [SMALL_STATE(6353)] = 213835, + [SMALL_STATE(6354)] = 213895, + [SMALL_STATE(6355)] = 213949, + [SMALL_STATE(6356)] = 214007, + [SMALL_STATE(6357)] = 214053, + [SMALL_STATE(6358)] = 214115, + [SMALL_STATE(6359)] = 214169, + [SMALL_STATE(6360)] = 214236, + [SMALL_STATE(6361)] = 214303, + [SMALL_STATE(6362)] = 214370, + [SMALL_STATE(6363)] = 214437, + [SMALL_STATE(6364)] = 214504, + [SMALL_STATE(6365)] = 214571, + [SMALL_STATE(6366)] = 214638, + [SMALL_STATE(6367)] = 214705, + [SMALL_STATE(6368)] = 214772, + [SMALL_STATE(6369)] = 214839, + [SMALL_STATE(6370)] = 214906, + [SMALL_STATE(6371)] = 214973, + [SMALL_STATE(6372)] = 215040, + [SMALL_STATE(6373)] = 215107, + [SMALL_STATE(6374)] = 215174, + [SMALL_STATE(6375)] = 215241, + [SMALL_STATE(6376)] = 215308, + [SMALL_STATE(6377)] = 215375, + [SMALL_STATE(6378)] = 215442, + [SMALL_STATE(6379)] = 215509, + [SMALL_STATE(6380)] = 215576, + [SMALL_STATE(6381)] = 215643, + [SMALL_STATE(6382)] = 215710, + [SMALL_STATE(6383)] = 215777, + [SMALL_STATE(6384)] = 215844, + [SMALL_STATE(6385)] = 215911, + [SMALL_STATE(6386)] = 215952, + [SMALL_STATE(6387)] = 216019, + [SMALL_STATE(6388)] = 216086, + [SMALL_STATE(6389)] = 216153, + [SMALL_STATE(6390)] = 216220, + [SMALL_STATE(6391)] = 216287, + [SMALL_STATE(6392)] = 216339, + [SMALL_STATE(6393)] = 216387, + [SMALL_STATE(6394)] = 216435, + [SMALL_STATE(6395)] = 216483, + [SMALL_STATE(6396)] = 216531, + [SMALL_STATE(6397)] = 216579, + [SMALL_STATE(6398)] = 216627, + [SMALL_STATE(6399)] = 216675, + [SMALL_STATE(6400)] = 216723, + [SMALL_STATE(6401)] = 216775, + [SMALL_STATE(6402)] = 216826, + [SMALL_STATE(6403)] = 216875, + [SMALL_STATE(6404)] = 216904, + [SMALL_STATE(6405)] = 216955, + [SMALL_STATE(6406)] = 217004, + [SMALL_STATE(6407)] = 217053, + [SMALL_STATE(6408)] = 217082, + [SMALL_STATE(6409)] = 217131, + [SMALL_STATE(6410)] = 217182, + [SMALL_STATE(6411)] = 217231, + [SMALL_STATE(6412)] = 217282, + [SMALL_STATE(6413)] = 217333, + [SMALL_STATE(6414)] = 217384, + [SMALL_STATE(6415)] = 217433, + [SMALL_STATE(6416)] = 217482, + [SMALL_STATE(6417)] = 217531, + [SMALL_STATE(6418)] = 217577, + [SMALL_STATE(6419)] = 217625, + [SMALL_STATE(6420)] = 217673, + [SMALL_STATE(6421)] = 217721, + [SMALL_STATE(6422)] = 217771, + [SMALL_STATE(6423)] = 217803, + [SMALL_STATE(6424)] = 217851, + [SMALL_STATE(6425)] = 217899, + [SMALL_STATE(6426)] = 217949, + [SMALL_STATE(6427)] = 217997, + [SMALL_STATE(6428)] = 218045, + [SMALL_STATE(6429)] = 218093, + [SMALL_STATE(6430)] = 218139, + [SMALL_STATE(6431)] = 218185, + [SMALL_STATE(6432)] = 218231, + [SMALL_STATE(6433)] = 218279, + [SMALL_STATE(6434)] = 218327, + [SMALL_STATE(6435)] = 218373, + [SMALL_STATE(6436)] = 218419, + [SMALL_STATE(6437)] = 218465, + [SMALL_STATE(6438)] = 218513, + [SMALL_STATE(6439)] = 218561, + [SMALL_STATE(6440)] = 218609, + [SMALL_STATE(6441)] = 218657, + [SMALL_STATE(6442)] = 218705, + [SMALL_STATE(6443)] = 218753, + [SMALL_STATE(6444)] = 218803, + [SMALL_STATE(6445)] = 218851, + [SMALL_STATE(6446)] = 218899, + [SMALL_STATE(6447)] = 218947, + [SMALL_STATE(6448)] = 218995, + [SMALL_STATE(6449)] = 219043, + [SMALL_STATE(6450)] = 219091, + [SMALL_STATE(6451)] = 219139, + [SMALL_STATE(6452)] = 219189, + [SMALL_STATE(6453)] = 219237, + [SMALL_STATE(6454)] = 219287, + [SMALL_STATE(6455)] = 219337, + [SMALL_STATE(6456)] = 219383, + [SMALL_STATE(6457)] = 219428, + [SMALL_STATE(6458)] = 219457, + [SMALL_STATE(6459)] = 219490, + [SMALL_STATE(6460)] = 219535, + [SMALL_STATE(6461)] = 219580, + [SMALL_STATE(6462)] = 219625, + [SMALL_STATE(6463)] = 219674, + [SMALL_STATE(6464)] = 219721, + [SMALL_STATE(6465)] = 219750, + [SMALL_STATE(6466)] = 219797, + [SMALL_STATE(6467)] = 219844, + [SMALL_STATE(6468)] = 219877, + [SMALL_STATE(6469)] = 219908, + [SMALL_STATE(6470)] = 219955, + [SMALL_STATE(6471)] = 220002, + [SMALL_STATE(6472)] = 220047, + [SMALL_STATE(6473)] = 220092, + [SMALL_STATE(6474)] = 220137, + [SMALL_STATE(6475)] = 220182, + [SMALL_STATE(6476)] = 220229, + [SMALL_STATE(6477)] = 220276, + [SMALL_STATE(6478)] = 220321, + [SMALL_STATE(6479)] = 220366, + [SMALL_STATE(6480)] = 220411, + [SMALL_STATE(6481)] = 220458, + [SMALL_STATE(6482)] = 220485, + [SMALL_STATE(6483)] = 220530, + [SMALL_STATE(6484)] = 220575, + [SMALL_STATE(6485)] = 220622, + [SMALL_STATE(6486)] = 220669, + [SMALL_STATE(6487)] = 220696, + [SMALL_STATE(6488)] = 220741, + [SMALL_STATE(6489)] = 220788, + [SMALL_STATE(6490)] = 220817, + [SMALL_STATE(6491)] = 220864, + [SMALL_STATE(6492)] = 220895, + [SMALL_STATE(6493)] = 220940, + [SMALL_STATE(6494)] = 220985, + [SMALL_STATE(6495)] = 221030, + [SMALL_STATE(6496)] = 221075, + [SMALL_STATE(6497)] = 221124, + [SMALL_STATE(6498)] = 221171, + [SMALL_STATE(6499)] = 221218, + [SMALL_STATE(6500)] = 221265, + [SMALL_STATE(6501)] = 221312, + [SMALL_STATE(6502)] = 221343, + [SMALL_STATE(6503)] = 221390, + [SMALL_STATE(6504)] = 221437, + [SMALL_STATE(6505)] = 221470, + [SMALL_STATE(6506)] = 221517, + [SMALL_STATE(6507)] = 221564, + [SMALL_STATE(6508)] = 221611, + [SMALL_STATE(6509)] = 221642, + [SMALL_STATE(6510)] = 221673, + [SMALL_STATE(6511)] = 221716, + [SMALL_STATE(6512)] = 221763, + [SMALL_STATE(6513)] = 221810, + [SMALL_STATE(6514)] = 221857, + [SMALL_STATE(6515)] = 221883, + [SMALL_STATE(6516)] = 221927, + [SMALL_STATE(6517)] = 221953, + [SMALL_STATE(6518)] = 221983, + [SMALL_STATE(6519)] = 222027, + [SMALL_STATE(6520)] = 222071, + [SMALL_STATE(6521)] = 222101, + [SMALL_STATE(6522)] = 222147, + [SMALL_STATE(6523)] = 222191, + [SMALL_STATE(6524)] = 222235, + [SMALL_STATE(6525)] = 222279, + [SMALL_STATE(6526)] = 222323, + [SMALL_STATE(6527)] = 222367, + [SMALL_STATE(6528)] = 222413, + [SMALL_STATE(6529)] = 222443, + [SMALL_STATE(6530)] = 222471, + [SMALL_STATE(6531)] = 222499, + [SMALL_STATE(6532)] = 222525, + [SMALL_STATE(6533)] = 222571, + [SMALL_STATE(6534)] = 222613, + [SMALL_STATE(6535)] = 222639, + [SMALL_STATE(6536)] = 222685, + [SMALL_STATE(6537)] = 222713, + [SMALL_STATE(6538)] = 222743, + [SMALL_STATE(6539)] = 222789, + [SMALL_STATE(6540)] = 222817, + [SMALL_STATE(6541)] = 222861, + [SMALL_STATE(6542)] = 222891, + [SMALL_STATE(6543)] = 222919, + [SMALL_STATE(6544)] = 222949, + [SMALL_STATE(6545)] = 222977, + [SMALL_STATE(6546)] = 223023, + [SMALL_STATE(6547)] = 223069, + [SMALL_STATE(6548)] = 223095, + [SMALL_STATE(6549)] = 223139, + [SMALL_STATE(6550)] = 223185, + [SMALL_STATE(6551)] = 223213, + [SMALL_STATE(6552)] = 223257, + [SMALL_STATE(6553)] = 223287, + [SMALL_STATE(6554)] = 223331, + [SMALL_STATE(6555)] = 223375, + [SMALL_STATE(6556)] = 223419, + [SMALL_STATE(6557)] = 223461, + [SMALL_STATE(6558)] = 223509, + [SMALL_STATE(6559)] = 223539, + [SMALL_STATE(6560)] = 223565, + [SMALL_STATE(6561)] = 223595, + [SMALL_STATE(6562)] = 223623, + [SMALL_STATE(6563)] = 223651, + [SMALL_STATE(6564)] = 223697, + [SMALL_STATE(6565)] = 223725, + [SMALL_STATE(6566)] = 223771, + [SMALL_STATE(6567)] = 223815, + [SMALL_STATE(6568)] = 223863, + [SMALL_STATE(6569)] = 223891, + [SMALL_STATE(6570)] = 223933, + [SMALL_STATE(6571)] = 223977, + [SMALL_STATE(6572)] = 224021, + [SMALL_STATE(6573)] = 224065, + [SMALL_STATE(6574)] = 224109, + [SMALL_STATE(6575)] = 224136, + [SMALL_STATE(6576)] = 224165, + [SMALL_STATE(6577)] = 224190, + [SMALL_STATE(6578)] = 224237, + [SMALL_STATE(6579)] = 224278, + [SMALL_STATE(6580)] = 224323, + [SMALL_STATE(6581)] = 224366, + [SMALL_STATE(6582)] = 224413, + [SMALL_STATE(6583)] = 224458, + [SMALL_STATE(6584)] = 224483, + [SMALL_STATE(6585)] = 224526, + [SMALL_STATE(6586)] = 224573, + [SMALL_STATE(6587)] = 224616, + [SMALL_STATE(6588)] = 224643, + [SMALL_STATE(6589)] = 224670, + [SMALL_STATE(6590)] = 224695, + [SMALL_STATE(6591)] = 224722, + [SMALL_STATE(6592)] = 224747, + [SMALL_STATE(6593)] = 224772, + [SMALL_STATE(6594)] = 224815, + [SMALL_STATE(6595)] = 224858, + [SMALL_STATE(6596)] = 224903, + [SMALL_STATE(6597)] = 224930, + [SMALL_STATE(6598)] = 224957, + [SMALL_STATE(6599)] = 224988, + [SMALL_STATE(6600)] = 225017, + [SMALL_STATE(6601)] = 225062, + [SMALL_STATE(6602)] = 225105, + [SMALL_STATE(6603)] = 225150, + [SMALL_STATE(6604)] = 225193, + [SMALL_STATE(6605)] = 225236, + [SMALL_STATE(6606)] = 225277, + [SMALL_STATE(6607)] = 225302, + [SMALL_STATE(6608)] = 225327, + [SMALL_STATE(6609)] = 225372, + [SMALL_STATE(6610)] = 225401, + [SMALL_STATE(6611)] = 225426, + [SMALL_STATE(6612)] = 225451, + [SMALL_STATE(6613)] = 225478, + [SMALL_STATE(6614)] = 225523, + [SMALL_STATE(6615)] = 225566, + [SMALL_STATE(6616)] = 225609, + [SMALL_STATE(6617)] = 225652, + [SMALL_STATE(6618)] = 225677, + [SMALL_STATE(6619)] = 225722, + [SMALL_STATE(6620)] = 225765, + [SMALL_STATE(6621)] = 225808, + [SMALL_STATE(6622)] = 225851, + [SMALL_STATE(6623)] = 225876, + [SMALL_STATE(6624)] = 225917, + [SMALL_STATE(6625)] = 225944, + [SMALL_STATE(6626)] = 225989, + [SMALL_STATE(6627)] = 226032, + [SMALL_STATE(6628)] = 226075, + [SMALL_STATE(6629)] = 226104, + [SMALL_STATE(6630)] = 226133, + [SMALL_STATE(6631)] = 226178, + [SMALL_STATE(6632)] = 226207, + [SMALL_STATE(6633)] = 226236, + [SMALL_STATE(6634)] = 226265, + [SMALL_STATE(6635)] = 226290, + [SMALL_STATE(6636)] = 226321, + [SMALL_STATE(6637)] = 226348, + [SMALL_STATE(6638)] = 226375, + [SMALL_STATE(6639)] = 226402, + [SMALL_STATE(6640)] = 226429, + [SMALL_STATE(6641)] = 226456, + [SMALL_STATE(6642)] = 226499, + [SMALL_STATE(6643)] = 226528, + [SMALL_STATE(6644)] = 226555, + [SMALL_STATE(6645)] = 226582, + [SMALL_STATE(6646)] = 226607, + [SMALL_STATE(6647)] = 226634, + [SMALL_STATE(6648)] = 226675, + [SMALL_STATE(6649)] = 226716, + [SMALL_STATE(6650)] = 226757, + [SMALL_STATE(6651)] = 226796, + [SMALL_STATE(6652)] = 226841, + [SMALL_STATE(6653)] = 226882, + [SMALL_STATE(6654)] = 226911, + [SMALL_STATE(6655)] = 226938, + [SMALL_STATE(6656)] = 226962, + [SMALL_STATE(6657)] = 226986, + [SMALL_STATE(6658)] = 227014, + [SMALL_STATE(6659)] = 227060, + [SMALL_STATE(6660)] = 227088, + [SMALL_STATE(6661)] = 227134, + [SMALL_STATE(6662)] = 227162, + [SMALL_STATE(6663)] = 227204, + [SMALL_STATE(6664)] = 227248, + [SMALL_STATE(6665)] = 227274, + [SMALL_STATE(6666)] = 227298, + [SMALL_STATE(6667)] = 227322, + [SMALL_STATE(6668)] = 227368, + [SMALL_STATE(6669)] = 227414, + [SMALL_STATE(6670)] = 227458, + [SMALL_STATE(6671)] = 227484, + [SMALL_STATE(6672)] = 227526, + [SMALL_STATE(6673)] = 227568, + [SMALL_STATE(6674)] = 227610, + [SMALL_STATE(6675)] = 227652, + [SMALL_STATE(6676)] = 227680, + [SMALL_STATE(6677)] = 227704, + [SMALL_STATE(6678)] = 227748, + [SMALL_STATE(6679)] = 227788, + [SMALL_STATE(6680)] = 227812, + [SMALL_STATE(6681)] = 227852, + [SMALL_STATE(6682)] = 227876, + [SMALL_STATE(6683)] = 227900, + [SMALL_STATE(6684)] = 227944, + [SMALL_STATE(6685)] = 227968, + [SMALL_STATE(6686)] = 227996, + [SMALL_STATE(6687)] = 228036, + [SMALL_STATE(6688)] = 228062, + [SMALL_STATE(6689)] = 228094, + [SMALL_STATE(6690)] = 228120, + [SMALL_STATE(6691)] = 228162, + [SMALL_STATE(6692)] = 228204, + [SMALL_STATE(6693)] = 228250, + [SMALL_STATE(6694)] = 228274, + [SMALL_STATE(6695)] = 228314, + [SMALL_STATE(6696)] = 228338, + [SMALL_STATE(6697)] = 228380, + [SMALL_STATE(6698)] = 228426, + [SMALL_STATE(6699)] = 228472, + [SMALL_STATE(6700)] = 228512, + [SMALL_STATE(6701)] = 228558, + [SMALL_STATE(6702)] = 228598, + [SMALL_STATE(6703)] = 228644, + [SMALL_STATE(6704)] = 228684, + [SMALL_STATE(6705)] = 228726, + [SMALL_STATE(6706)] = 228768, + [SMALL_STATE(6707)] = 228810, + [SMALL_STATE(6708)] = 228834, + [SMALL_STATE(6709)] = 228862, + [SMALL_STATE(6710)] = 228886, + [SMALL_STATE(6711)] = 228914, + [SMALL_STATE(6712)] = 228940, + [SMALL_STATE(6713)] = 228984, + [SMALL_STATE(6714)] = 229010, + [SMALL_STATE(6715)] = 229056, + [SMALL_STATE(6716)] = 229094, + [SMALL_STATE(6717)] = 229134, + [SMALL_STATE(6718)] = 229178, + [SMALL_STATE(6719)] = 229218, + [SMALL_STATE(6720)] = 229248, + [SMALL_STATE(6721)] = 229272, + [SMALL_STATE(6722)] = 229298, + [SMALL_STATE(6723)] = 229340, + [SMALL_STATE(6724)] = 229382, + [SMALL_STATE(6725)] = 229420, + [SMALL_STATE(6726)] = 229458, + [SMALL_STATE(6727)] = 229498, + [SMALL_STATE(6728)] = 229522, + [SMALL_STATE(6729)] = 229546, + [SMALL_STATE(6730)] = 229584, + [SMALL_STATE(6731)] = 229608, + [SMALL_STATE(6732)] = 229646, + [SMALL_STATE(6733)] = 229684, + [SMALL_STATE(6734)] = 229724, + [SMALL_STATE(6735)] = 229748, + [SMALL_STATE(6736)] = 229776, + [SMALL_STATE(6737)] = 229816, + [SMALL_STATE(6738)] = 229844, + [SMALL_STATE(6739)] = 229868, + [SMALL_STATE(6740)] = 229894, + [SMALL_STATE(6741)] = 229936, + [SMALL_STATE(6742)] = 229964, + [SMALL_STATE(6743)] = 229988, + [SMALL_STATE(6744)] = 230032, + [SMALL_STATE(6745)] = 230074, + [SMALL_STATE(6746)] = 230118, + [SMALL_STATE(6747)] = 230162, + [SMALL_STATE(6748)] = 230194, + [SMALL_STATE(6749)] = 230238, + [SMALL_STATE(6750)] = 230284, + [SMALL_STATE(6751)] = 230330, + [SMALL_STATE(6752)] = 230356, + [SMALL_STATE(6753)] = 230398, + [SMALL_STATE(6754)] = 230442, + [SMALL_STATE(6755)] = 230488, + [SMALL_STATE(6756)] = 230534, + [SMALL_STATE(6757)] = 230560, + [SMALL_STATE(6758)] = 230604, + [SMALL_STATE(6759)] = 230632, + [SMALL_STATE(6760)] = 230660, + [SMALL_STATE(6761)] = 230686, + [SMALL_STATE(6762)] = 230730, + [SMALL_STATE(6763)] = 230774, + [SMALL_STATE(6764)] = 230800, + [SMALL_STATE(6765)] = 230824, + [SMALL_STATE(6766)] = 230852, + [SMALL_STATE(6767)] = 230894, + [SMALL_STATE(6768)] = 230936, + [SMALL_STATE(6769)] = 230978, + [SMALL_STATE(6770)] = 231020, + [SMALL_STATE(6771)] = 231046, + [SMALL_STATE(6772)] = 231088, + [SMALL_STATE(6773)] = 231112, + [SMALL_STATE(6774)] = 231140, + [SMALL_STATE(6775)] = 231180, + [SMALL_STATE(6776)] = 231208, + [SMALL_STATE(6777)] = 231250, + [SMALL_STATE(6778)] = 231274, + [SMALL_STATE(6779)] = 231304, + [SMALL_STATE(6780)] = 231332, + [SMALL_STATE(6781)] = 231372, + [SMALL_STATE(6782)] = 231414, + [SMALL_STATE(6783)] = 231440, + [SMALL_STATE(6784)] = 231464, + [SMALL_STATE(6785)] = 231490, + [SMALL_STATE(6786)] = 231532, + [SMALL_STATE(6787)] = 231556, + [SMALL_STATE(6788)] = 231586, + [SMALL_STATE(6789)] = 231610, + [SMALL_STATE(6790)] = 231654, + [SMALL_STATE(6791)] = 231678, + [SMALL_STATE(6792)] = 231717, + [SMALL_STATE(6793)] = 231740, + [SMALL_STATE(6794)] = 231767, + [SMALL_STATE(6795)] = 231806, + [SMALL_STATE(6796)] = 231845, + [SMALL_STATE(6797)] = 231870, + [SMALL_STATE(6798)] = 231893, + [SMALL_STATE(6799)] = 231920, + [SMALL_STATE(6800)] = 231955, + [SMALL_STATE(6801)] = 231990, + [SMALL_STATE(6802)] = 232031, + [SMALL_STATE(6803)] = 232058, + [SMALL_STATE(6804)] = 232099, + [SMALL_STATE(6805)] = 232134, + [SMALL_STATE(6806)] = 232159, + [SMALL_STATE(6807)] = 232194, + [SMALL_STATE(6808)] = 232225, + [SMALL_STATE(6809)] = 232248, + [SMALL_STATE(6810)] = 232283, + [SMALL_STATE(6811)] = 232318, + [SMALL_STATE(6812)] = 232345, + [SMALL_STATE(6813)] = 232368, + [SMALL_STATE(6814)] = 232391, + [SMALL_STATE(6815)] = 232414, + [SMALL_STATE(6816)] = 232453, + [SMALL_STATE(6817)] = 232492, + [SMALL_STATE(6818)] = 232529, + [SMALL_STATE(6819)] = 232552, + [SMALL_STATE(6820)] = 232581, + [SMALL_STATE(6821)] = 232618, + [SMALL_STATE(6822)] = 232641, + [SMALL_STATE(6823)] = 232664, + [SMALL_STATE(6824)] = 232699, + [SMALL_STATE(6825)] = 232740, + [SMALL_STATE(6826)] = 232765, + [SMALL_STATE(6827)] = 232802, + [SMALL_STATE(6828)] = 232827, + [SMALL_STATE(6829)] = 232868, + [SMALL_STATE(6830)] = 232909, + [SMALL_STATE(6831)] = 232934, + [SMALL_STATE(6832)] = 232973, + [SMALL_STATE(6833)] = 233012, + [SMALL_STATE(6834)] = 233051, + [SMALL_STATE(6835)] = 233082, + [SMALL_STATE(6836)] = 233105, + [SMALL_STATE(6837)] = 233132, + [SMALL_STATE(6838)] = 233167, + [SMALL_STATE(6839)] = 233206, + [SMALL_STATE(6840)] = 233241, + [SMALL_STATE(6841)] = 233266, + [SMALL_STATE(6842)] = 233301, + [SMALL_STATE(6843)] = 233326, + [SMALL_STATE(6844)] = 233361, + [SMALL_STATE(6845)] = 233400, + [SMALL_STATE(6846)] = 233439, + [SMALL_STATE(6847)] = 233474, + [SMALL_STATE(6848)] = 233513, + [SMALL_STATE(6849)] = 233552, + [SMALL_STATE(6850)] = 233587, + [SMALL_STATE(6851)] = 233626, + [SMALL_STATE(6852)] = 233665, + [SMALL_STATE(6853)] = 233688, + [SMALL_STATE(6854)] = 233715, + [SMALL_STATE(6855)] = 233756, + [SMALL_STATE(6856)] = 233797, + [SMALL_STATE(6857)] = 233838, + [SMALL_STATE(6858)] = 233865, + [SMALL_STATE(6859)] = 233900, + [SMALL_STATE(6860)] = 233939, + [SMALL_STATE(6861)] = 233964, + [SMALL_STATE(6862)] = 234005, + [SMALL_STATE(6863)] = 234040, + [SMALL_STATE(6864)] = 234063, + [SMALL_STATE(6865)] = 234104, + [SMALL_STATE(6866)] = 234135, + [SMALL_STATE(6867)] = 234174, + [SMALL_STATE(6868)] = 234215, + [SMALL_STATE(6869)] = 234254, + [SMALL_STATE(6870)] = 234283, + [SMALL_STATE(6871)] = 234320, + [SMALL_STATE(6872)] = 234357, + [SMALL_STATE(6873)] = 234380, + [SMALL_STATE(6874)] = 234403, + [SMALL_STATE(6875)] = 234440, + [SMALL_STATE(6876)] = 234475, + [SMALL_STATE(6877)] = 234510, + [SMALL_STATE(6878)] = 234547, + [SMALL_STATE(6879)] = 234572, + [SMALL_STATE(6880)] = 234597, + [SMALL_STATE(6881)] = 234622, + [SMALL_STATE(6882)] = 234653, + [SMALL_STATE(6883)] = 234678, + [SMALL_STATE(6884)] = 234703, + [SMALL_STATE(6885)] = 234742, + [SMALL_STATE(6886)] = 234783, + [SMALL_STATE(6887)] = 234822, + [SMALL_STATE(6888)] = 234847, + [SMALL_STATE(6889)] = 234888, + [SMALL_STATE(6890)] = 234911, + [SMALL_STATE(6891)] = 234938, + [SMALL_STATE(6892)] = 234965, + [SMALL_STATE(6893)] = 234990, + [SMALL_STATE(6894)] = 235023, + [SMALL_STATE(6895)] = 235048, + [SMALL_STATE(6896)] = 235071, + [SMALL_STATE(6897)] = 235110, + [SMALL_STATE(6898)] = 235137, + [SMALL_STATE(6899)] = 235174, + [SMALL_STATE(6900)] = 235209, + [SMALL_STATE(6901)] = 235248, + [SMALL_STATE(6902)] = 235283, + [SMALL_STATE(6903)] = 235324, + [SMALL_STATE(6904)] = 235359, + [SMALL_STATE(6905)] = 235394, + [SMALL_STATE(6906)] = 235433, + [SMALL_STATE(6907)] = 235460, + [SMALL_STATE(6908)] = 235495, + [SMALL_STATE(6909)] = 235526, + [SMALL_STATE(6910)] = 235549, + [SMALL_STATE(6911)] = 235572, + [SMALL_STATE(6912)] = 235599, + [SMALL_STATE(6913)] = 235638, + [SMALL_STATE(6914)] = 235661, + [SMALL_STATE(6915)] = 235688, + [SMALL_STATE(6916)] = 235729, + [SMALL_STATE(6917)] = 235756, + [SMALL_STATE(6918)] = 235789, + [SMALL_STATE(6919)] = 235824, + [SMALL_STATE(6920)] = 235855, + [SMALL_STATE(6921)] = 235892, + [SMALL_STATE(6922)] = 235929, + [SMALL_STATE(6923)] = 235966, + [SMALL_STATE(6924)] = 236003, + [SMALL_STATE(6925)] = 236030, + [SMALL_STATE(6926)] = 236069, + [SMALL_STATE(6927)] = 236106, + [SMALL_STATE(6928)] = 236131, + [SMALL_STATE(6929)] = 236166, + [SMALL_STATE(6930)] = 236198, + [SMALL_STATE(6931)] = 236220, + [SMALL_STATE(6932)] = 236254, + [SMALL_STATE(6933)] = 236276, + [SMALL_STATE(6934)] = 236312, + [SMALL_STATE(6935)] = 236334, + [SMALL_STATE(6936)] = 236360, + [SMALL_STATE(6937)] = 236384, + [SMALL_STATE(6938)] = 236420, + [SMALL_STATE(6939)] = 236448, + [SMALL_STATE(6940)] = 236480, + [SMALL_STATE(6941)] = 236502, + [SMALL_STATE(6942)] = 236524, + [SMALL_STATE(6943)] = 236554, + [SMALL_STATE(6944)] = 236576, + [SMALL_STATE(6945)] = 236600, + [SMALL_STATE(6946)] = 236632, + [SMALL_STATE(6947)] = 236668, + [SMALL_STATE(6948)] = 236700, + [SMALL_STATE(6949)] = 236724, + [SMALL_STATE(6950)] = 236760, + [SMALL_STATE(6951)] = 236798, + [SMALL_STATE(6952)] = 236830, + [SMALL_STATE(6953)] = 236852, + [SMALL_STATE(6954)] = 236878, + [SMALL_STATE(6955)] = 236910, + [SMALL_STATE(6956)] = 236934, + [SMALL_STATE(6957)] = 236956, + [SMALL_STATE(6958)] = 236994, + [SMALL_STATE(6959)] = 237016, + [SMALL_STATE(6960)] = 237038, + [SMALL_STATE(6961)] = 237060, + [SMALL_STATE(6962)] = 237082, + [SMALL_STATE(6963)] = 237114, + [SMALL_STATE(6964)] = 237142, + [SMALL_STATE(6965)] = 237174, + [SMALL_STATE(6966)] = 237202, + [SMALL_STATE(6967)] = 237234, + [SMALL_STATE(6968)] = 237262, + [SMALL_STATE(6969)] = 237292, + [SMALL_STATE(6970)] = 237324, + [SMALL_STATE(6971)] = 237356, + [SMALL_STATE(6972)] = 237386, + [SMALL_STATE(6973)] = 237420, + [SMALL_STATE(6974)] = 237456, + [SMALL_STATE(6975)] = 237492, + [SMALL_STATE(6976)] = 237520, + [SMALL_STATE(6977)] = 237556, + [SMALL_STATE(6978)] = 237592, + [SMALL_STATE(6979)] = 237624, + [SMALL_STATE(6980)] = 237656, + [SMALL_STATE(6981)] = 237688, + [SMALL_STATE(6982)] = 237710, + [SMALL_STATE(6983)] = 237746, + [SMALL_STATE(6984)] = 237782, + [SMALL_STATE(6985)] = 237804, + [SMALL_STATE(6986)] = 237840, + [SMALL_STATE(6987)] = 237868, + [SMALL_STATE(6988)] = 237896, + [SMALL_STATE(6989)] = 237928, + [SMALL_STATE(6990)] = 237966, + [SMALL_STATE(6991)] = 238002, + [SMALL_STATE(6992)] = 238034, + [SMALL_STATE(6993)] = 238070, + [SMALL_STATE(6994)] = 238092, + [SMALL_STATE(6995)] = 238114, + [SMALL_STATE(6996)] = 238146, + [SMALL_STATE(6997)] = 238178, + [SMALL_STATE(6998)] = 238210, + [SMALL_STATE(6999)] = 238234, + [SMALL_STATE(7000)] = 238258, + [SMALL_STATE(7001)] = 238286, + [SMALL_STATE(7002)] = 238318, + [SMALL_STATE(7003)] = 238346, + [SMALL_STATE(7004)] = 238370, + [SMALL_STATE(7005)] = 238394, + [SMALL_STATE(7006)] = 238418, + [SMALL_STATE(7007)] = 238442, + [SMALL_STATE(7008)] = 238466, + [SMALL_STATE(7009)] = 238498, + [SMALL_STATE(7010)] = 238520, + [SMALL_STATE(7011)] = 238542, + [SMALL_STATE(7012)] = 238566, + [SMALL_STATE(7013)] = 238588, + [SMALL_STATE(7014)] = 238614, + [SMALL_STATE(7015)] = 238640, + [SMALL_STATE(7016)] = 238662, + [SMALL_STATE(7017)] = 238688, + [SMALL_STATE(7018)] = 238710, + [SMALL_STATE(7019)] = 238736, + [SMALL_STATE(7020)] = 238774, + [SMALL_STATE(7021)] = 238802, + [SMALL_STATE(7022)] = 238826, + [SMALL_STATE(7023)] = 238858, + [SMALL_STATE(7024)] = 238880, + [SMALL_STATE(7025)] = 238904, + [SMALL_STATE(7026)] = 238936, + [SMALL_STATE(7027)] = 238968, + [SMALL_STATE(7028)] = 239000, + [SMALL_STATE(7029)] = 239032, + [SMALL_STATE(7030)] = 239062, + [SMALL_STATE(7031)] = 239090, + [SMALL_STATE(7032)] = 239122, + [SMALL_STATE(7033)] = 239146, + [SMALL_STATE(7034)] = 239172, + [SMALL_STATE(7035)] = 239196, + [SMALL_STATE(7036)] = 239234, + [SMALL_STATE(7037)] = 239266, + [SMALL_STATE(7038)] = 239292, + [SMALL_STATE(7039)] = 239324, + [SMALL_STATE(7040)] = 239356, + [SMALL_STATE(7041)] = 239388, + [SMALL_STATE(7042)] = 239410, + [SMALL_STATE(7043)] = 239432, + [SMALL_STATE(7044)] = 239460, + [SMALL_STATE(7045)] = 239492, + [SMALL_STATE(7046)] = 239518, + [SMALL_STATE(7047)] = 239550, + [SMALL_STATE(7048)] = 239574, + [SMALL_STATE(7049)] = 239600, + [SMALL_STATE(7050)] = 239626, + [SMALL_STATE(7051)] = 239650, + [SMALL_STATE(7052)] = 239674, + [SMALL_STATE(7053)] = 239696, + [SMALL_STATE(7054)] = 239718, + [SMALL_STATE(7055)] = 239742, + [SMALL_STATE(7056)] = 239768, + [SMALL_STATE(7057)] = 239794, + [SMALL_STATE(7058)] = 239820, + [SMALL_STATE(7059)] = 239846, + [SMALL_STATE(7060)] = 239874, + [SMALL_STATE(7061)] = 239898, + [SMALL_STATE(7062)] = 239930, + [SMALL_STATE(7063)] = 239954, + [SMALL_STATE(7064)] = 239982, + [SMALL_STATE(7065)] = 240014, + [SMALL_STATE(7066)] = 240052, + [SMALL_STATE(7067)] = 240074, + [SMALL_STATE(7068)] = 240108, + [SMALL_STATE(7069)] = 240144, + [SMALL_STATE(7070)] = 240170, + [SMALL_STATE(7071)] = 240206, + [SMALL_STATE(7072)] = 240242, + [SMALL_STATE(7073)] = 240278, + [SMALL_STATE(7074)] = 240314, + [SMALL_STATE(7075)] = 240340, + [SMALL_STATE(7076)] = 240362, + [SMALL_STATE(7077)] = 240388, + [SMALL_STATE(7078)] = 240418, + [SMALL_STATE(7079)] = 240450, + [SMALL_STATE(7080)] = 240474, + [SMALL_STATE(7081)] = 240502, + [SMALL_STATE(7082)] = 240524, + [SMALL_STATE(7083)] = 240550, + [SMALL_STATE(7084)] = 240572, + [SMALL_STATE(7085)] = 240594, + [SMALL_STATE(7086)] = 240618, + [SMALL_STATE(7087)] = 240646, + [SMALL_STATE(7088)] = 240684, + [SMALL_STATE(7089)] = 240714, + [SMALL_STATE(7090)] = 240738, + [SMALL_STATE(7091)] = 240770, + [SMALL_STATE(7092)] = 240796, + [SMALL_STATE(7093)] = 240820, + [SMALL_STATE(7094)] = 240858, + [SMALL_STATE(7095)] = 240896, + [SMALL_STATE(7096)] = 240934, + [SMALL_STATE(7097)] = 240972, + [SMALL_STATE(7098)] = 241010, + [SMALL_STATE(7099)] = 241040, + [SMALL_STATE(7100)] = 241068, + [SMALL_STATE(7101)] = 241096, + [SMALL_STATE(7102)] = 241124, + [SMALL_STATE(7103)] = 241150, + [SMALL_STATE(7104)] = 241188, + [SMALL_STATE(7105)] = 241220, + [SMALL_STATE(7106)] = 241245, + [SMALL_STATE(7107)] = 241278, + [SMALL_STATE(7108)] = 241301, + [SMALL_STATE(7109)] = 241326, + [SMALL_STATE(7110)] = 241347, + [SMALL_STATE(7111)] = 241380, + [SMALL_STATE(7112)] = 241413, + [SMALL_STATE(7113)] = 241446, + [SMALL_STATE(7114)] = 241477, + [SMALL_STATE(7115)] = 241502, + [SMALL_STATE(7116)] = 241535, + [SMALL_STATE(7117)] = 241568, + [SMALL_STATE(7118)] = 241599, + [SMALL_STATE(7119)] = 241630, + [SMALL_STATE(7120)] = 241663, + [SMALL_STATE(7121)] = 241696, + [SMALL_STATE(7122)] = 241729, + [SMALL_STATE(7123)] = 241756, + [SMALL_STATE(7124)] = 241791, + [SMALL_STATE(7125)] = 241812, + [SMALL_STATE(7126)] = 241839, + [SMALL_STATE(7127)] = 241864, + [SMALL_STATE(7128)] = 241897, + [SMALL_STATE(7129)] = 241924, + [SMALL_STATE(7130)] = 241957, + [SMALL_STATE(7131)] = 241978, + [SMALL_STATE(7132)] = 242011, + [SMALL_STATE(7133)] = 242042, + [SMALL_STATE(7134)] = 242075, + [SMALL_STATE(7135)] = 242108, + [SMALL_STATE(7136)] = 242135, + [SMALL_STATE(7137)] = 242158, + [SMALL_STATE(7138)] = 242191, + [SMALL_STATE(7139)] = 242212, + [SMALL_STATE(7140)] = 242233, + [SMALL_STATE(7141)] = 242264, + [SMALL_STATE(7142)] = 242289, + [SMALL_STATE(7143)] = 242320, + [SMALL_STATE(7144)] = 242349, + [SMALL_STATE(7145)] = 242374, + [SMALL_STATE(7146)] = 242405, + [SMALL_STATE(7147)] = 242436, + [SMALL_STATE(7148)] = 242457, + [SMALL_STATE(7149)] = 242478, + [SMALL_STATE(7150)] = 242499, + [SMALL_STATE(7151)] = 242526, + [SMALL_STATE(7152)] = 242547, + [SMALL_STATE(7153)] = 242580, + [SMALL_STATE(7154)] = 242613, + [SMALL_STATE(7155)] = 242646, + [SMALL_STATE(7156)] = 242667, + [SMALL_STATE(7157)] = 242688, + [SMALL_STATE(7158)] = 242719, + [SMALL_STATE(7159)] = 242750, + [SMALL_STATE(7160)] = 242783, + [SMALL_STATE(7161)] = 242816, + [SMALL_STATE(7162)] = 242837, + [SMALL_STATE(7163)] = 242868, + [SMALL_STATE(7164)] = 242899, + [SMALL_STATE(7165)] = 242932, + [SMALL_STATE(7166)] = 242965, + [SMALL_STATE(7167)] = 242986, + [SMALL_STATE(7168)] = 243011, + [SMALL_STATE(7169)] = 243032, + [SMALL_STATE(7170)] = 243065, + [SMALL_STATE(7171)] = 243098, + [SMALL_STATE(7172)] = 243119, + [SMALL_STATE(7173)] = 243140, + [SMALL_STATE(7174)] = 243171, + [SMALL_STATE(7175)] = 243194, + [SMALL_STATE(7176)] = 243215, + [SMALL_STATE(7177)] = 243240, + [SMALL_STATE(7178)] = 243265, + [SMALL_STATE(7179)] = 243298, + [SMALL_STATE(7180)] = 243331, + [SMALL_STATE(7181)] = 243358, + [SMALL_STATE(7182)] = 243391, + [SMALL_STATE(7183)] = 243418, + [SMALL_STATE(7184)] = 243439, + [SMALL_STATE(7185)] = 243462, + [SMALL_STATE(7186)] = 243495, + [SMALL_STATE(7187)] = 243528, + [SMALL_STATE(7188)] = 243557, + [SMALL_STATE(7189)] = 243582, + [SMALL_STATE(7190)] = 243609, + [SMALL_STATE(7191)] = 243630, + [SMALL_STATE(7192)] = 243663, + [SMALL_STATE(7193)] = 243696, + [SMALL_STATE(7194)] = 243729, + [SMALL_STATE(7195)] = 243754, + [SMALL_STATE(7196)] = 243779, + [SMALL_STATE(7197)] = 243804, + [SMALL_STATE(7198)] = 243837, + [SMALL_STATE(7199)] = 243862, + [SMALL_STATE(7200)] = 243887, + [SMALL_STATE(7201)] = 243908, + [SMALL_STATE(7202)] = 243929, + [SMALL_STATE(7203)] = 243962, + [SMALL_STATE(7204)] = 243989, + [SMALL_STATE(7205)] = 244022, + [SMALL_STATE(7206)] = 244053, + [SMALL_STATE(7207)] = 244086, + [SMALL_STATE(7208)] = 244117, + [SMALL_STATE(7209)] = 244150, + [SMALL_STATE(7210)] = 244183, + [SMALL_STATE(7211)] = 244216, + [SMALL_STATE(7212)] = 244249, + [SMALL_STATE(7213)] = 244274, + [SMALL_STATE(7214)] = 244295, + [SMALL_STATE(7215)] = 244326, + [SMALL_STATE(7216)] = 244359, + [SMALL_STATE(7217)] = 244390, + [SMALL_STATE(7218)] = 244423, + [SMALL_STATE(7219)] = 244454, + [SMALL_STATE(7220)] = 244485, + [SMALL_STATE(7221)] = 244510, + [SMALL_STATE(7222)] = 244543, + [SMALL_STATE(7223)] = 244566, + [SMALL_STATE(7224)] = 244597, + [SMALL_STATE(7225)] = 244618, + [SMALL_STATE(7226)] = 244639, + [SMALL_STATE(7227)] = 244664, + [SMALL_STATE(7228)] = 244697, + [SMALL_STATE(7229)] = 244724, + [SMALL_STATE(7230)] = 244753, + [SMALL_STATE(7231)] = 244778, + [SMALL_STATE(7232)] = 244811, + [SMALL_STATE(7233)] = 244844, + [SMALL_STATE(7234)] = 244867, + [SMALL_STATE(7235)] = 244900, + [SMALL_STATE(7236)] = 244933, + [SMALL_STATE(7237)] = 244954, + [SMALL_STATE(7238)] = 244977, + [SMALL_STATE(7239)] = 245010, + [SMALL_STATE(7240)] = 245043, + [SMALL_STATE(7241)] = 245076, + [SMALL_STATE(7242)] = 245109, + [SMALL_STATE(7243)] = 245130, + [SMALL_STATE(7244)] = 245163, + [SMALL_STATE(7245)] = 245190, + [SMALL_STATE(7246)] = 245211, + [SMALL_STATE(7247)] = 245232, + [SMALL_STATE(7248)] = 245265, + [SMALL_STATE(7249)] = 245288, + [SMALL_STATE(7250)] = 245319, + [SMALL_STATE(7251)] = 245344, + [SMALL_STATE(7252)] = 245367, + [SMALL_STATE(7253)] = 245400, + [SMALL_STATE(7254)] = 245427, + [SMALL_STATE(7255)] = 245460, + [SMALL_STATE(7256)] = 245483, + [SMALL_STATE(7257)] = 245516, + [SMALL_STATE(7258)] = 245547, + [SMALL_STATE(7259)] = 245568, + [SMALL_STATE(7260)] = 245597, + [SMALL_STATE(7261)] = 245624, + [SMALL_STATE(7262)] = 245649, + [SMALL_STATE(7263)] = 245682, + [SMALL_STATE(7264)] = 245703, + [SMALL_STATE(7265)] = 245734, + [SMALL_STATE(7266)] = 245767, + [SMALL_STATE(7267)] = 245792, + [SMALL_STATE(7268)] = 245821, + [SMALL_STATE(7269)] = 245846, + [SMALL_STATE(7270)] = 245875, + [SMALL_STATE(7271)] = 245906, + [SMALL_STATE(7272)] = 245929, + [SMALL_STATE(7273)] = 245962, + [SMALL_STATE(7274)] = 245983, + [SMALL_STATE(7275)] = 246016, + [SMALL_STATE(7276)] = 246037, + [SMALL_STATE(7277)] = 246058, + [SMALL_STATE(7278)] = 246091, + [SMALL_STATE(7279)] = 246118, + [SMALL_STATE(7280)] = 246151, + [SMALL_STATE(7281)] = 246184, + [SMALL_STATE(7282)] = 246217, + [SMALL_STATE(7283)] = 246240, + [SMALL_STATE(7284)] = 246273, + [SMALL_STATE(7285)] = 246304, + [SMALL_STATE(7286)] = 246323, + [SMALL_STATE(7287)] = 246344, + [SMALL_STATE(7288)] = 246377, + [SMALL_STATE(7289)] = 246398, + [SMALL_STATE(7290)] = 246431, + [SMALL_STATE(7291)] = 246464, + [SMALL_STATE(7292)] = 246491, + [SMALL_STATE(7293)] = 246524, + [SMALL_STATE(7294)] = 246557, + [SMALL_STATE(7295)] = 246588, + [SMALL_STATE(7296)] = 246621, + [SMALL_STATE(7297)] = 246654, + [SMALL_STATE(7298)] = 246677, + [SMALL_STATE(7299)] = 246708, + [SMALL_STATE(7300)] = 246731, + [SMALL_STATE(7301)] = 246754, + [SMALL_STATE(7302)] = 246775, + [SMALL_STATE(7303)] = 246808, + [SMALL_STATE(7304)] = 246841, + [SMALL_STATE(7305)] = 246874, + [SMALL_STATE(7306)] = 246905, + [SMALL_STATE(7307)] = 246928, + [SMALL_STATE(7308)] = 246953, + [SMALL_STATE(7309)] = 246976, + [SMALL_STATE(7310)] = 247003, + [SMALL_STATE(7311)] = 247024, + [SMALL_STATE(7312)] = 247057, + [SMALL_STATE(7313)] = 247090, + [SMALL_STATE(7314)] = 247123, + [SMALL_STATE(7315)] = 247144, + [SMALL_STATE(7316)] = 247165, + [SMALL_STATE(7317)] = 247186, + [SMALL_STATE(7318)] = 247205, + [SMALL_STATE(7319)] = 247232, + [SMALL_STATE(7320)] = 247265, + [SMALL_STATE(7321)] = 247298, + [SMALL_STATE(7322)] = 247331, + [SMALL_STATE(7323)] = 247364, + [SMALL_STATE(7324)] = 247389, + [SMALL_STATE(7325)] = 247410, + [SMALL_STATE(7326)] = 247431, + [SMALL_STATE(7327)] = 247462, + [SMALL_STATE(7328)] = 247495, + [SMALL_STATE(7329)] = 247516, + [SMALL_STATE(7330)] = 247537, + [SMALL_STATE(7331)] = 247570, + [SMALL_STATE(7332)] = 247589, + [SMALL_STATE(7333)] = 247610, + [SMALL_STATE(7334)] = 247631, + [SMALL_STATE(7335)] = 247652, + [SMALL_STATE(7336)] = 247677, + [SMALL_STATE(7337)] = 247698, + [SMALL_STATE(7338)] = 247723, + [SMALL_STATE(7339)] = 247756, + [SMALL_STATE(7340)] = 247781, + [SMALL_STATE(7341)] = 247814, + [SMALL_STATE(7342)] = 247847, + [SMALL_STATE(7343)] = 247880, + [SMALL_STATE(7344)] = 247905, + [SMALL_STATE(7345)] = 247928, + [SMALL_STATE(7346)] = 247961, + [SMALL_STATE(7347)] = 247982, + [SMALL_STATE(7348)] = 248015, + [SMALL_STATE(7349)] = 248048, + [SMALL_STATE(7350)] = 248079, + [SMALL_STATE(7351)] = 248104, + [SMALL_STATE(7352)] = 248123, + [SMALL_STATE(7353)] = 248144, + [SMALL_STATE(7354)] = 248175, + [SMALL_STATE(7355)] = 248208, + [SMALL_STATE(7356)] = 248233, + [SMALL_STATE(7357)] = 248266, + [SMALL_STATE(7358)] = 248297, + [SMALL_STATE(7359)] = 248330, + [SMALL_STATE(7360)] = 248363, + [SMALL_STATE(7361)] = 248384, + [SMALL_STATE(7362)] = 248407, + [SMALL_STATE(7363)] = 248438, + [SMALL_STATE(7364)] = 248463, + [SMALL_STATE(7365)] = 248496, + [SMALL_STATE(7366)] = 248519, + [SMALL_STATE(7367)] = 248552, + [SMALL_STATE(7368)] = 248585, + [SMALL_STATE(7369)] = 248606, + [SMALL_STATE(7370)] = 248627, + [SMALL_STATE(7371)] = 248660, + [SMALL_STATE(7372)] = 248685, + [SMALL_STATE(7373)] = 248712, + [SMALL_STATE(7374)] = 248733, + [SMALL_STATE(7375)] = 248764, + [SMALL_STATE(7376)] = 248791, + [SMALL_STATE(7377)] = 248812, + [SMALL_STATE(7378)] = 248845, + [SMALL_STATE(7379)] = 248878, + [SMALL_STATE(7380)] = 248901, + [SMALL_STATE(7381)] = 248924, + [SMALL_STATE(7382)] = 248945, + [SMALL_STATE(7383)] = 248966, + [SMALL_STATE(7384)] = 248999, + [SMALL_STATE(7385)] = 249032, + [SMALL_STATE(7386)] = 249055, + [SMALL_STATE(7387)] = 249078, + [SMALL_STATE(7388)] = 249113, + [SMALL_STATE(7389)] = 249146, + [SMALL_STATE(7390)] = 249175, + [SMALL_STATE(7391)] = 249202, + [SMALL_STATE(7392)] = 249225, + [SMALL_STATE(7393)] = 249258, + [SMALL_STATE(7394)] = 249291, + [SMALL_STATE(7395)] = 249312, + [SMALL_STATE(7396)] = 249345, + [SMALL_STATE(7397)] = 249372, + [SMALL_STATE(7398)] = 249399, + [SMALL_STATE(7399)] = 249432, + [SMALL_STATE(7400)] = 249459, + [SMALL_STATE(7401)] = 249490, + [SMALL_STATE(7402)] = 249511, + [SMALL_STATE(7403)] = 249534, + [SMALL_STATE(7404)] = 249555, + [SMALL_STATE(7405)] = 249576, + [SMALL_STATE(7406)] = 249609, + [SMALL_STATE(7407)] = 249642, + [SMALL_STATE(7408)] = 249663, + [SMALL_STATE(7409)] = 249696, + [SMALL_STATE(7410)] = 249715, + [SMALL_STATE(7411)] = 249746, + [SMALL_STATE(7412)] = 249779, + [SMALL_STATE(7413)] = 249812, + [SMALL_STATE(7414)] = 249845, + [SMALL_STATE(7415)] = 249876, + [SMALL_STATE(7416)] = 249894, + [SMALL_STATE(7417)] = 249914, + [SMALL_STATE(7418)] = 249934, + [SMALL_STATE(7419)] = 249958, + [SMALL_STATE(7420)] = 249982, + [SMALL_STATE(7421)] = 250006, + [SMALL_STATE(7422)] = 250026, + [SMALL_STATE(7423)] = 250054, + [SMALL_STATE(7424)] = 250082, + [SMALL_STATE(7425)] = 250108, + [SMALL_STATE(7426)] = 250136, + [SMALL_STATE(7427)] = 250162, + [SMALL_STATE(7428)] = 250186, + [SMALL_STATE(7429)] = 250210, + [SMALL_STATE(7430)] = 250234, + [SMALL_STATE(7431)] = 250262, + [SMALL_STATE(7432)] = 250286, + [SMALL_STATE(7433)] = 250310, + [SMALL_STATE(7434)] = 250336, + [SMALL_STATE(7435)] = 250360, + [SMALL_STATE(7436)] = 250388, + [SMALL_STATE(7437)] = 250410, + [SMALL_STATE(7438)] = 250440, + [SMALL_STATE(7439)] = 250466, + [SMALL_STATE(7440)] = 250488, + [SMALL_STATE(7441)] = 250510, + [SMALL_STATE(7442)] = 250532, + [SMALL_STATE(7443)] = 250554, + [SMALL_STATE(7444)] = 250574, + [SMALL_STATE(7445)] = 250598, + [SMALL_STATE(7446)] = 250622, + [SMALL_STATE(7447)] = 250642, + [SMALL_STATE(7448)] = 250666, + [SMALL_STATE(7449)] = 250686, + [SMALL_STATE(7450)] = 250706, + [SMALL_STATE(7451)] = 250728, + [SMALL_STATE(7452)] = 250748, + [SMALL_STATE(7453)] = 250768, + [SMALL_STATE(7454)] = 250788, + [SMALL_STATE(7455)] = 250808, + [SMALL_STATE(7456)] = 250828, + [SMALL_STATE(7457)] = 250848, + [SMALL_STATE(7458)] = 250868, + [SMALL_STATE(7459)] = 250888, + [SMALL_STATE(7460)] = 250912, + [SMALL_STATE(7461)] = 250934, + [SMALL_STATE(7462)] = 250956, + [SMALL_STATE(7463)] = 250978, + [SMALL_STATE(7464)] = 251000, + [SMALL_STATE(7465)] = 251022, + [SMALL_STATE(7466)] = 251044, + [SMALL_STATE(7467)] = 251066, + [SMALL_STATE(7468)] = 251088, + [SMALL_STATE(7469)] = 251114, + [SMALL_STATE(7470)] = 251138, + [SMALL_STATE(7471)] = 251162, + [SMALL_STATE(7472)] = 251186, + [SMALL_STATE(7473)] = 251210, + [SMALL_STATE(7474)] = 251234, + [SMALL_STATE(7475)] = 251258, + [SMALL_STATE(7476)] = 251284, + [SMALL_STATE(7477)] = 251308, + [SMALL_STATE(7478)] = 251330, + [SMALL_STATE(7479)] = 251352, + [SMALL_STATE(7480)] = 251374, + [SMALL_STATE(7481)] = 251398, + [SMALL_STATE(7482)] = 251422, + [SMALL_STATE(7483)] = 251442, + [SMALL_STATE(7484)] = 251462, + [SMALL_STATE(7485)] = 251488, + [SMALL_STATE(7486)] = 251508, + [SMALL_STATE(7487)] = 251532, + [SMALL_STATE(7488)] = 251556, + [SMALL_STATE(7489)] = 251578, + [SMALL_STATE(7490)] = 251602, + [SMALL_STATE(7491)] = 251626, + [SMALL_STATE(7492)] = 251658, + [SMALL_STATE(7493)] = 251678, + [SMALL_STATE(7494)] = 251704, + [SMALL_STATE(7495)] = 251726, + [SMALL_STATE(7496)] = 251758, + [SMALL_STATE(7497)] = 251782, + [SMALL_STATE(7498)] = 251808, + [SMALL_STATE(7499)] = 251834, + [SMALL_STATE(7500)] = 251854, + [SMALL_STATE(7501)] = 251876, + [SMALL_STATE(7502)] = 251896, + [SMALL_STATE(7503)] = 251922, + [SMALL_STATE(7504)] = 251942, + [SMALL_STATE(7505)] = 251962, + [SMALL_STATE(7506)] = 251982, + [SMALL_STATE(7507)] = 252006, + [SMALL_STATE(7508)] = 252030, + [SMALL_STATE(7509)] = 252054, + [SMALL_STATE(7510)] = 252078, + [SMALL_STATE(7511)] = 252104, + [SMALL_STATE(7512)] = 252124, + [SMALL_STATE(7513)] = 252146, + [SMALL_STATE(7514)] = 252172, + [SMALL_STATE(7515)] = 252194, + [SMALL_STATE(7516)] = 252218, + [SMALL_STATE(7517)] = 252242, + [SMALL_STATE(7518)] = 252264, + [SMALL_STATE(7519)] = 252286, + [SMALL_STATE(7520)] = 252312, + [SMALL_STATE(7521)] = 252338, + [SMALL_STATE(7522)] = 252362, + [SMALL_STATE(7523)] = 252384, + [SMALL_STATE(7524)] = 252408, + [SMALL_STATE(7525)] = 252432, + [SMALL_STATE(7526)] = 252464, + [SMALL_STATE(7527)] = 252486, + [SMALL_STATE(7528)] = 252508, + [SMALL_STATE(7529)] = 252534, + [SMALL_STATE(7530)] = 252560, + [SMALL_STATE(7531)] = 252580, + [SMALL_STATE(7532)] = 252604, + [SMALL_STATE(7533)] = 252626, + [SMALL_STATE(7534)] = 252646, + [SMALL_STATE(7535)] = 252666, + [SMALL_STATE(7536)] = 252686, + [SMALL_STATE(7537)] = 252718, + [SMALL_STATE(7538)] = 252742, + [SMALL_STATE(7539)] = 252768, + [SMALL_STATE(7540)] = 252792, + [SMALL_STATE(7541)] = 252816, + [SMALL_STATE(7542)] = 252840, + [SMALL_STATE(7543)] = 252864, + [SMALL_STATE(7544)] = 252888, + [SMALL_STATE(7545)] = 252912, + [SMALL_STATE(7546)] = 252938, + [SMALL_STATE(7547)] = 252958, + [SMALL_STATE(7548)] = 252978, + [SMALL_STATE(7549)] = 253004, + [SMALL_STATE(7550)] = 253028, + [SMALL_STATE(7551)] = 253048, + [SMALL_STATE(7552)] = 253072, + [SMALL_STATE(7553)] = 253092, + [SMALL_STATE(7554)] = 253118, + [SMALL_STATE(7555)] = 253142, + [SMALL_STATE(7556)] = 253168, + [SMALL_STATE(7557)] = 253194, + [SMALL_STATE(7558)] = 253216, + [SMALL_STATE(7559)] = 253236, + [SMALL_STATE(7560)] = 253256, + [SMALL_STATE(7561)] = 253286, + [SMALL_STATE(7562)] = 253306, + [SMALL_STATE(7563)] = 253330, + [SMALL_STATE(7564)] = 253352, + [SMALL_STATE(7565)] = 253376, + [SMALL_STATE(7566)] = 253396, + [SMALL_STATE(7567)] = 253416, + [SMALL_STATE(7568)] = 253434, + [SMALL_STATE(7569)] = 253458, + [SMALL_STATE(7570)] = 253480, + [SMALL_STATE(7571)] = 253504, + [SMALL_STATE(7572)] = 253523, + [SMALL_STATE(7573)] = 253542, + [SMALL_STATE(7574)] = 253565, + [SMALL_STATE(7575)] = 253584, + [SMALL_STATE(7576)] = 253605, + [SMALL_STATE(7577)] = 253628, + [SMALL_STATE(7578)] = 253647, + [SMALL_STATE(7579)] = 253670, + [SMALL_STATE(7580)] = 253701, + [SMALL_STATE(7581)] = 253720, + [SMALL_STATE(7582)] = 253739, + [SMALL_STATE(7583)] = 253758, + [SMALL_STATE(7584)] = 253777, + [SMALL_STATE(7585)] = 253798, + [SMALL_STATE(7586)] = 253825, + [SMALL_STATE(7587)] = 253856, + [SMALL_STATE(7588)] = 253875, + [SMALL_STATE(7589)] = 253898, + [SMALL_STATE(7590)] = 253923, + [SMALL_STATE(7591)] = 253946, + [SMALL_STATE(7592)] = 253971, + [SMALL_STATE(7593)] = 253992, + [SMALL_STATE(7594)] = 254023, + [SMALL_STATE(7595)] = 254046, + [SMALL_STATE(7596)] = 254069, + [SMALL_STATE(7597)] = 254092, + [SMALL_STATE(7598)] = 254121, + [SMALL_STATE(7599)] = 254146, + [SMALL_STATE(7600)] = 254175, + [SMALL_STATE(7601)] = 254196, + [SMALL_STATE(7602)] = 254225, + [SMALL_STATE(7603)] = 254248, + [SMALL_STATE(7604)] = 254271, + [SMALL_STATE(7605)] = 254296, + [SMALL_STATE(7606)] = 254315, + [SMALL_STATE(7607)] = 254344, + [SMALL_STATE(7608)] = 254373, + [SMALL_STATE(7609)] = 254402, + [SMALL_STATE(7610)] = 254421, + [SMALL_STATE(7611)] = 254444, + [SMALL_STATE(7612)] = 254473, + [SMALL_STATE(7613)] = 254502, + [SMALL_STATE(7614)] = 254531, + [SMALL_STATE(7615)] = 254560, + [SMALL_STATE(7616)] = 254589, + [SMALL_STATE(7617)] = 254612, + [SMALL_STATE(7618)] = 254641, + [SMALL_STATE(7619)] = 254670, + [SMALL_STATE(7620)] = 254699, + [SMALL_STATE(7621)] = 254728, + [SMALL_STATE(7622)] = 254749, + [SMALL_STATE(7623)] = 254778, + [SMALL_STATE(7624)] = 254803, + [SMALL_STATE(7625)] = 254826, + [SMALL_STATE(7626)] = 254849, + [SMALL_STATE(7627)] = 254872, + [SMALL_STATE(7628)] = 254895, + [SMALL_STATE(7629)] = 254918, + [SMALL_STATE(7630)] = 254945, + [SMALL_STATE(7631)] = 254970, + [SMALL_STATE(7632)] = 254999, + [SMALL_STATE(7633)] = 255018, + [SMALL_STATE(7634)] = 255047, + [SMALL_STATE(7635)] = 255070, + [SMALL_STATE(7636)] = 255093, + [SMALL_STATE(7637)] = 255116, + [SMALL_STATE(7638)] = 255141, + [SMALL_STATE(7639)] = 255162, + [SMALL_STATE(7640)] = 255181, + [SMALL_STATE(7641)] = 255200, + [SMALL_STATE(7642)] = 255223, + [SMALL_STATE(7643)] = 255252, + [SMALL_STATE(7644)] = 255281, + [SMALL_STATE(7645)] = 255304, + [SMALL_STATE(7646)] = 255333, + [SMALL_STATE(7647)] = 255360, + [SMALL_STATE(7648)] = 255383, + [SMALL_STATE(7649)] = 255402, + [SMALL_STATE(7650)] = 255431, + [SMALL_STATE(7651)] = 255460, + [SMALL_STATE(7652)] = 255489, + [SMALL_STATE(7653)] = 255512, + [SMALL_STATE(7654)] = 255537, + [SMALL_STATE(7655)] = 255560, + [SMALL_STATE(7656)] = 255583, + [SMALL_STATE(7657)] = 255606, + [SMALL_STATE(7658)] = 255631, + [SMALL_STATE(7659)] = 255650, + [SMALL_STATE(7660)] = 255673, + [SMALL_STATE(7661)] = 255694, + [SMALL_STATE(7662)] = 255713, + [SMALL_STATE(7663)] = 255736, + [SMALL_STATE(7664)] = 255759, + [SMALL_STATE(7665)] = 255782, + [SMALL_STATE(7666)] = 255805, + [SMALL_STATE(7667)] = 255826, + [SMALL_STATE(7668)] = 255845, + [SMALL_STATE(7669)] = 255864, + [SMALL_STATE(7670)] = 255883, + [SMALL_STATE(7671)] = 255902, + [SMALL_STATE(7672)] = 255921, + [SMALL_STATE(7673)] = 255942, + [SMALL_STATE(7674)] = 255963, + [SMALL_STATE(7675)] = 255984, + [SMALL_STATE(7676)] = 256005, + [SMALL_STATE(7677)] = 256024, + [SMALL_STATE(7678)] = 256047, + [SMALL_STATE(7679)] = 256068, + [SMALL_STATE(7680)] = 256091, + [SMALL_STATE(7681)] = 256114, + [SMALL_STATE(7682)] = 256137, + [SMALL_STATE(7683)] = 256158, + [SMALL_STATE(7684)] = 256179, + [SMALL_STATE(7685)] = 256204, + [SMALL_STATE(7686)] = 256231, + [SMALL_STATE(7687)] = 256260, + [SMALL_STATE(7688)] = 256281, + [SMALL_STATE(7689)] = 256304, + [SMALL_STATE(7690)] = 256325, + [SMALL_STATE(7691)] = 256346, + [SMALL_STATE(7692)] = 256369, + [SMALL_STATE(7693)] = 256388, + [SMALL_STATE(7694)] = 256411, + [SMALL_STATE(7695)] = 256434, + [SMALL_STATE(7696)] = 256457, + [SMALL_STATE(7697)] = 256476, + [SMALL_STATE(7698)] = 256495, + [SMALL_STATE(7699)] = 256524, + [SMALL_STATE(7700)] = 256547, + [SMALL_STATE(7701)] = 256570, + [SMALL_STATE(7702)] = 256593, + [SMALL_STATE(7703)] = 256616, + [SMALL_STATE(7704)] = 256639, + [SMALL_STATE(7705)] = 256668, + [SMALL_STATE(7706)] = 256687, + [SMALL_STATE(7707)] = 256708, + [SMALL_STATE(7708)] = 256731, + [SMALL_STATE(7709)] = 256754, + [SMALL_STATE(7710)] = 256777, + [SMALL_STATE(7711)] = 256800, + [SMALL_STATE(7712)] = 256823, + [SMALL_STATE(7713)] = 256842, + [SMALL_STATE(7714)] = 256865, + [SMALL_STATE(7715)] = 256884, + [SMALL_STATE(7716)] = 256907, + [SMALL_STATE(7717)] = 256934, + [SMALL_STATE(7718)] = 256957, + [SMALL_STATE(7719)] = 256982, + [SMALL_STATE(7720)] = 257003, + [SMALL_STATE(7721)] = 257026, + [SMALL_STATE(7722)] = 257045, + [SMALL_STATE(7723)] = 257068, + [SMALL_STATE(7724)] = 257089, + [SMALL_STATE(7725)] = 257108, + [SMALL_STATE(7726)] = 257127, + [SMALL_STATE(7727)] = 257146, + [SMALL_STATE(7728)] = 257165, + [SMALL_STATE(7729)] = 257188, + [SMALL_STATE(7730)] = 257217, + [SMALL_STATE(7731)] = 257240, + [SMALL_STATE(7732)] = 257263, + [SMALL_STATE(7733)] = 257288, + [SMALL_STATE(7734)] = 257309, + [SMALL_STATE(7735)] = 257328, + [SMALL_STATE(7736)] = 257351, + [SMALL_STATE(7737)] = 257376, + [SMALL_STATE(7738)] = 257399, + [SMALL_STATE(7739)] = 257426, + [SMALL_STATE(7740)] = 257445, + [SMALL_STATE(7741)] = 257470, + [SMALL_STATE(7742)] = 257497, + [SMALL_STATE(7743)] = 257526, + [SMALL_STATE(7744)] = 257545, + [SMALL_STATE(7745)] = 257570, + [SMALL_STATE(7746)] = 257599, + [SMALL_STATE(7747)] = 257630, + [SMALL_STATE(7748)] = 257661, + [SMALL_STATE(7749)] = 257692, + [SMALL_STATE(7750)] = 257721, + [SMALL_STATE(7751)] = 257750, + [SMALL_STATE(7752)] = 257773, + [SMALL_STATE(7753)] = 257796, + [SMALL_STATE(7754)] = 257825, + [SMALL_STATE(7755)] = 257854, + [SMALL_STATE(7756)] = 257877, + [SMALL_STATE(7757)] = 257896, + [SMALL_STATE(7758)] = 257915, + [SMALL_STATE(7759)] = 257938, + [SMALL_STATE(7760)] = 257957, + [SMALL_STATE(7761)] = 257978, + [SMALL_STATE(7762)] = 258001, + [SMALL_STATE(7763)] = 258020, + [SMALL_STATE(7764)] = 258043, + [SMALL_STATE(7765)] = 258066, + [SMALL_STATE(7766)] = 258089, + [SMALL_STATE(7767)] = 258112, + [SMALL_STATE(7768)] = 258135, + [SMALL_STATE(7769)] = 258160, + [SMALL_STATE(7770)] = 258179, + [SMALL_STATE(7771)] = 258200, + [SMALL_STATE(7772)] = 258223, + [SMALL_STATE(7773)] = 258246, + [SMALL_STATE(7774)] = 258269, + [SMALL_STATE(7775)] = 258288, + [SMALL_STATE(7776)] = 258307, + [SMALL_STATE(7777)] = 258326, + [SMALL_STATE(7778)] = 258345, + [SMALL_STATE(7779)] = 258368, + [SMALL_STATE(7780)] = 258387, + [SMALL_STATE(7781)] = 258408, + [SMALL_STATE(7782)] = 258433, + [SMALL_STATE(7783)] = 258452, + [SMALL_STATE(7784)] = 258479, + [SMALL_STATE(7785)] = 258500, + [SMALL_STATE(7786)] = 258519, + [SMALL_STATE(7787)] = 258548, + [SMALL_STATE(7788)] = 258567, + [SMALL_STATE(7789)] = 258588, + [SMALL_STATE(7790)] = 258609, + [SMALL_STATE(7791)] = 258638, + [SMALL_STATE(7792)] = 258665, + [SMALL_STATE(7793)] = 258688, + [SMALL_STATE(7794)] = 258709, + [SMALL_STATE(7795)] = 258732, + [SMALL_STATE(7796)] = 258751, + [SMALL_STATE(7797)] = 258774, + [SMALL_STATE(7798)] = 258793, + [SMALL_STATE(7799)] = 258816, + [SMALL_STATE(7800)] = 258837, + [SMALL_STATE(7801)] = 258860, + [SMALL_STATE(7802)] = 258879, + [SMALL_STATE(7803)] = 258900, + [SMALL_STATE(7804)] = 258925, + [SMALL_STATE(7805)] = 258948, + [SMALL_STATE(7806)] = 258975, + [SMALL_STATE(7807)] = 259000, + [SMALL_STATE(7808)] = 259019, + [SMALL_STATE(7809)] = 259038, + [SMALL_STATE(7810)] = 259059, + [SMALL_STATE(7811)] = 259082, + [SMALL_STATE(7812)] = 259107, + [SMALL_STATE(7813)] = 259126, + [SMALL_STATE(7814)] = 259145, + [SMALL_STATE(7815)] = 259166, + [SMALL_STATE(7816)] = 259189, + [SMALL_STATE(7817)] = 259212, + [SMALL_STATE(7818)] = 259235, + [SMALL_STATE(7819)] = 259254, + [SMALL_STATE(7820)] = 259276, + [SMALL_STATE(7821)] = 259300, + [SMALL_STATE(7822)] = 259324, + [SMALL_STATE(7823)] = 259342, + [SMALL_STATE(7824)] = 259364, + [SMALL_STATE(7825)] = 259382, + [SMALL_STATE(7826)] = 259404, + [SMALL_STATE(7827)] = 259426, + [SMALL_STATE(7828)] = 259444, + [SMALL_STATE(7829)] = 259462, + [SMALL_STATE(7830)] = 259480, + [SMALL_STATE(7831)] = 259506, + [SMALL_STATE(7832)] = 259524, + [SMALL_STATE(7833)] = 259550, + [SMALL_STATE(7834)] = 259576, + [SMALL_STATE(7835)] = 259604, + [SMALL_STATE(7836)] = 259630, + [SMALL_STATE(7837)] = 259656, + [SMALL_STATE(7838)] = 259674, + [SMALL_STATE(7839)] = 259700, + [SMALL_STATE(7840)] = 259722, + [SMALL_STATE(7841)] = 259740, + [SMALL_STATE(7842)] = 259760, + [SMALL_STATE(7843)] = 259780, + [SMALL_STATE(7844)] = 259802, + [SMALL_STATE(7845)] = 259824, + [SMALL_STATE(7846)] = 259846, + [SMALL_STATE(7847)] = 259868, + [SMALL_STATE(7848)] = 259890, + [SMALL_STATE(7849)] = 259912, + [SMALL_STATE(7850)] = 259936, + [SMALL_STATE(7851)] = 259958, + [SMALL_STATE(7852)] = 259982, + [SMALL_STATE(7853)] = 260006, + [SMALL_STATE(7854)] = 260030, + [SMALL_STATE(7855)] = 260054, + [SMALL_STATE(7856)] = 260078, + [SMALL_STATE(7857)] = 260102, + [SMALL_STATE(7858)] = 260126, + [SMALL_STATE(7859)] = 260152, + [SMALL_STATE(7860)] = 260174, + [SMALL_STATE(7861)] = 260196, + [SMALL_STATE(7862)] = 260216, + [SMALL_STATE(7863)] = 260234, + [SMALL_STATE(7864)] = 260252, + [SMALL_STATE(7865)] = 260276, + [SMALL_STATE(7866)] = 260298, + [SMALL_STATE(7867)] = 260324, + [SMALL_STATE(7868)] = 260348, + [SMALL_STATE(7869)] = 260372, + [SMALL_STATE(7870)] = 260394, + [SMALL_STATE(7871)] = 260414, + [SMALL_STATE(7872)] = 260434, + [SMALL_STATE(7873)] = 260456, + [SMALL_STATE(7874)] = 260478, + [SMALL_STATE(7875)] = 260500, + [SMALL_STATE(7876)] = 260526, + [SMALL_STATE(7877)] = 260548, + [SMALL_STATE(7878)] = 260570, + [SMALL_STATE(7879)] = 260592, + [SMALL_STATE(7880)] = 260612, + [SMALL_STATE(7881)] = 260634, + [SMALL_STATE(7882)] = 260658, + [SMALL_STATE(7883)] = 260676, + [SMALL_STATE(7884)] = 260702, + [SMALL_STATE(7885)] = 260726, + [SMALL_STATE(7886)] = 260750, + [SMALL_STATE(7887)] = 260768, + [SMALL_STATE(7888)] = 260796, + [SMALL_STATE(7889)] = 260814, + [SMALL_STATE(7890)] = 260838, + [SMALL_STATE(7891)] = 260866, + [SMALL_STATE(7892)] = 260894, + [SMALL_STATE(7893)] = 260918, + [SMALL_STATE(7894)] = 260938, + [SMALL_STATE(7895)] = 260960, + [SMALL_STATE(7896)] = 260982, + [SMALL_STATE(7897)] = 261008, + [SMALL_STATE(7898)] = 261030, + [SMALL_STATE(7899)] = 261050, + [SMALL_STATE(7900)] = 261072, + [SMALL_STATE(7901)] = 261094, + [SMALL_STATE(7902)] = 261116, + [SMALL_STATE(7903)] = 261134, + [SMALL_STATE(7904)] = 261158, + [SMALL_STATE(7905)] = 261176, + [SMALL_STATE(7906)] = 261198, + [SMALL_STATE(7907)] = 261220, + [SMALL_STATE(7908)] = 261244, + [SMALL_STATE(7909)] = 261262, + [SMALL_STATE(7910)] = 261280, + [SMALL_STATE(7911)] = 261302, + [SMALL_STATE(7912)] = 261324, + [SMALL_STATE(7913)] = 261350, + [SMALL_STATE(7914)] = 261376, + [SMALL_STATE(7915)] = 261394, + [SMALL_STATE(7916)] = 261418, + [SMALL_STATE(7917)] = 261436, + [SMALL_STATE(7918)] = 261454, + [SMALL_STATE(7919)] = 261476, + [SMALL_STATE(7920)] = 261500, + [SMALL_STATE(7921)] = 261518, + [SMALL_STATE(7922)] = 261536, + [SMALL_STATE(7923)] = 261558, + [SMALL_STATE(7924)] = 261582, + [SMALL_STATE(7925)] = 261600, + [SMALL_STATE(7926)] = 261622, + [SMALL_STATE(7927)] = 261642, + [SMALL_STATE(7928)] = 261664, + [SMALL_STATE(7929)] = 261686, + [SMALL_STATE(7930)] = 261706, + [SMALL_STATE(7931)] = 261728, + [SMALL_STATE(7932)] = 261750, + [SMALL_STATE(7933)] = 261768, + [SMALL_STATE(7934)] = 261786, + [SMALL_STATE(7935)] = 261810, + [SMALL_STATE(7936)] = 261828, + [SMALL_STATE(7937)] = 261846, + [SMALL_STATE(7938)] = 261868, + [SMALL_STATE(7939)] = 261890, + [SMALL_STATE(7940)] = 261914, + [SMALL_STATE(7941)] = 261934, + [SMALL_STATE(7942)] = 261962, + [SMALL_STATE(7943)] = 261982, + [SMALL_STATE(7944)] = 262000, + [SMALL_STATE(7945)] = 262018, + [SMALL_STATE(7946)] = 262042, + [SMALL_STATE(7947)] = 262060, + [SMALL_STATE(7948)] = 262082, + [SMALL_STATE(7949)] = 262110, + [SMALL_STATE(7950)] = 262132, + [SMALL_STATE(7951)] = 262150, + [SMALL_STATE(7952)] = 262168, + [SMALL_STATE(7953)] = 262186, + [SMALL_STATE(7954)] = 262204, + [SMALL_STATE(7955)] = 262222, + [SMALL_STATE(7956)] = 262240, + [SMALL_STATE(7957)] = 262258, + [SMALL_STATE(7958)] = 262284, + [SMALL_STATE(7959)] = 262308, + [SMALL_STATE(7960)] = 262326, + [SMALL_STATE(7961)] = 262352, + [SMALL_STATE(7962)] = 262374, + [SMALL_STATE(7963)] = 262396, + [SMALL_STATE(7964)] = 262418, + [SMALL_STATE(7965)] = 262440, + [SMALL_STATE(7966)] = 262464, + [SMALL_STATE(7967)] = 262482, + [SMALL_STATE(7968)] = 262506, + [SMALL_STATE(7969)] = 262534, + [SMALL_STATE(7970)] = 262556, + [SMALL_STATE(7971)] = 262574, + [SMALL_STATE(7972)] = 262598, + [SMALL_STATE(7973)] = 262620, + [SMALL_STATE(7974)] = 262640, + [SMALL_STATE(7975)] = 262662, + [SMALL_STATE(7976)] = 262680, + [SMALL_STATE(7977)] = 262700, + [SMALL_STATE(7978)] = 262724, + [SMALL_STATE(7979)] = 262744, + [SMALL_STATE(7980)] = 262764, + [SMALL_STATE(7981)] = 262784, + [SMALL_STATE(7982)] = 262810, + [SMALL_STATE(7983)] = 262832, + [SMALL_STATE(7984)] = 262854, + [SMALL_STATE(7985)] = 262874, + [SMALL_STATE(7986)] = 262894, + [SMALL_STATE(7987)] = 262920, + [SMALL_STATE(7988)] = 262938, + [SMALL_STATE(7989)] = 262964, + [SMALL_STATE(7990)] = 262984, + [SMALL_STATE(7991)] = 263006, + [SMALL_STATE(7992)] = 263032, + [SMALL_STATE(7993)] = 263052, + [SMALL_STATE(7994)] = 263074, + [SMALL_STATE(7995)] = 263096, + [SMALL_STATE(7996)] = 263114, + [SMALL_STATE(7997)] = 263134, + [SMALL_STATE(7998)] = 263152, + [SMALL_STATE(7999)] = 263170, + [SMALL_STATE(8000)] = 263194, + [SMALL_STATE(8001)] = 263212, + [SMALL_STATE(8002)] = 263232, + [SMALL_STATE(8003)] = 263258, + [SMALL_STATE(8004)] = 263278, + [SMALL_STATE(8005)] = 263304, + [SMALL_STATE(8006)] = 263330, + [SMALL_STATE(8007)] = 263356, + [SMALL_STATE(8008)] = 263382, + [SMALL_STATE(8009)] = 263408, + [SMALL_STATE(8010)] = 263432, + [SMALL_STATE(8011)] = 263460, + [SMALL_STATE(8012)] = 263478, + [SMALL_STATE(8013)] = 263496, + [SMALL_STATE(8014)] = 263518, + [SMALL_STATE(8015)] = 263540, + [SMALL_STATE(8016)] = 263562, + [SMALL_STATE(8017)] = 263586, + [SMALL_STATE(8018)] = 263612, + [SMALL_STATE(8019)] = 263630, + [SMALL_STATE(8020)] = 263654, + [SMALL_STATE(8021)] = 263676, + [SMALL_STATE(8022)] = 263702, + [SMALL_STATE(8023)] = 263726, + [SMALL_STATE(8024)] = 263744, + [SMALL_STATE(8025)] = 263766, + [SMALL_STATE(8026)] = 263784, + [SMALL_STATE(8027)] = 263806, + [SMALL_STATE(8028)] = 263824, + [SMALL_STATE(8029)] = 263846, + [SMALL_STATE(8030)] = 263864, + [SMALL_STATE(8031)] = 263882, + [SMALL_STATE(8032)] = 263902, + [SMALL_STATE(8033)] = 263920, + [SMALL_STATE(8034)] = 263940, + [SMALL_STATE(8035)] = 263964, + [SMALL_STATE(8036)] = 263986, + [SMALL_STATE(8037)] = 264008, + [SMALL_STATE(8038)] = 264030, + [SMALL_STATE(8039)] = 264048, + [SMALL_STATE(8040)] = 264070, + [SMALL_STATE(8041)] = 264096, + [SMALL_STATE(8042)] = 264116, + [SMALL_STATE(8043)] = 264144, + [SMALL_STATE(8044)] = 264166, + [SMALL_STATE(8045)] = 264186, + [SMALL_STATE(8046)] = 264210, + [SMALL_STATE(8047)] = 264236, + [SMALL_STATE(8048)] = 264262, + [SMALL_STATE(8049)] = 264288, + [SMALL_STATE(8050)] = 264306, + [SMALL_STATE(8051)] = 264332, + [SMALL_STATE(8052)] = 264358, + [SMALL_STATE(8053)] = 264382, + [SMALL_STATE(8054)] = 264410, + [SMALL_STATE(8055)] = 264432, + [SMALL_STATE(8056)] = 264460, + [SMALL_STATE(8057)] = 264488, + [SMALL_STATE(8058)] = 264516, + [SMALL_STATE(8059)] = 264542, + [SMALL_STATE(8060)] = 264560, + [SMALL_STATE(8061)] = 264586, + [SMALL_STATE(8062)] = 264610, + [SMALL_STATE(8063)] = 264636, + [SMALL_STATE(8064)] = 264662, + [SMALL_STATE(8065)] = 264688, + [SMALL_STATE(8066)] = 264712, + [SMALL_STATE(8067)] = 264730, + [SMALL_STATE(8068)] = 264758, + [SMALL_STATE(8069)] = 264784, + [SMALL_STATE(8070)] = 264810, + [SMALL_STATE(8071)] = 264836, + [SMALL_STATE(8072)] = 264860, + [SMALL_STATE(8073)] = 264882, + [SMALL_STATE(8074)] = 264904, + [SMALL_STATE(8075)] = 264924, + [SMALL_STATE(8076)] = 264941, + [SMALL_STATE(8077)] = 264964, + [SMALL_STATE(8078)] = 264981, + [SMALL_STATE(8079)] = 264998, + [SMALL_STATE(8080)] = 265015, + [SMALL_STATE(8081)] = 265038, + [SMALL_STATE(8082)] = 265055, + [SMALL_STATE(8083)] = 265072, + [SMALL_STATE(8084)] = 265095, + [SMALL_STATE(8085)] = 265116, + [SMALL_STATE(8086)] = 265139, + [SMALL_STATE(8087)] = 265156, + [SMALL_STATE(8088)] = 265171, + [SMALL_STATE(8089)] = 265190, + [SMALL_STATE(8090)] = 265207, + [SMALL_STATE(8091)] = 265230, + [SMALL_STATE(8092)] = 265253, + [SMALL_STATE(8093)] = 265270, + [SMALL_STATE(8094)] = 265287, + [SMALL_STATE(8095)] = 265304, + [SMALL_STATE(8096)] = 265329, + [SMALL_STATE(8097)] = 265350, + [SMALL_STATE(8098)] = 265373, + [SMALL_STATE(8099)] = 265396, + [SMALL_STATE(8100)] = 265419, + [SMALL_STATE(8101)] = 265436, + [SMALL_STATE(8102)] = 265459, + [SMALL_STATE(8103)] = 265482, + [SMALL_STATE(8104)] = 265505, + [SMALL_STATE(8105)] = 265522, + [SMALL_STATE(8106)] = 265539, + [SMALL_STATE(8107)] = 265556, + [SMALL_STATE(8108)] = 265573, + [SMALL_STATE(8109)] = 265590, + [SMALL_STATE(8110)] = 265611, + [SMALL_STATE(8111)] = 265632, + [SMALL_STATE(8112)] = 265649, + [SMALL_STATE(8113)] = 265666, + [SMALL_STATE(8114)] = 265689, + [SMALL_STATE(8115)] = 265712, + [SMALL_STATE(8116)] = 265729, + [SMALL_STATE(8117)] = 265748, + [SMALL_STATE(8118)] = 265769, + [SMALL_STATE(8119)] = 265786, + [SMALL_STATE(8120)] = 265803, + [SMALL_STATE(8121)] = 265820, + [SMALL_STATE(8122)] = 265839, + [SMALL_STATE(8123)] = 265862, + [SMALL_STATE(8124)] = 265883, + [SMALL_STATE(8125)] = 265906, + [SMALL_STATE(8126)] = 265923, + [SMALL_STATE(8127)] = 265940, + [SMALL_STATE(8128)] = 265957, + [SMALL_STATE(8129)] = 265974, + [SMALL_STATE(8130)] = 265991, + [SMALL_STATE(8131)] = 266010, + [SMALL_STATE(8132)] = 266033, + [SMALL_STATE(8133)] = 266056, + [SMALL_STATE(8134)] = 266081, + [SMALL_STATE(8135)] = 266106, + [SMALL_STATE(8136)] = 266123, + [SMALL_STATE(8137)] = 266140, + [SMALL_STATE(8138)] = 266159, + [SMALL_STATE(8139)] = 266176, + [SMALL_STATE(8140)] = 266193, + [SMALL_STATE(8141)] = 266214, + [SMALL_STATE(8142)] = 266237, + [SMALL_STATE(8143)] = 266260, + [SMALL_STATE(8144)] = 266277, + [SMALL_STATE(8145)] = 266296, + [SMALL_STATE(8146)] = 266313, + [SMALL_STATE(8147)] = 266336, + [SMALL_STATE(8148)] = 266359, + [SMALL_STATE(8149)] = 266376, + [SMALL_STATE(8150)] = 266399, + [SMALL_STATE(8151)] = 266424, + [SMALL_STATE(8152)] = 266441, + [SMALL_STATE(8153)] = 266464, + [SMALL_STATE(8154)] = 266481, + [SMALL_STATE(8155)] = 266500, + [SMALL_STATE(8156)] = 266523, + [SMALL_STATE(8157)] = 266542, + [SMALL_STATE(8158)] = 266563, + [SMALL_STATE(8159)] = 266580, + [SMALL_STATE(8160)] = 266603, + [SMALL_STATE(8161)] = 266620, + [SMALL_STATE(8162)] = 266637, + [SMALL_STATE(8163)] = 266658, + [SMALL_STATE(8164)] = 266675, + [SMALL_STATE(8165)] = 266692, + [SMALL_STATE(8166)] = 266707, + [SMALL_STATE(8167)] = 266730, + [SMALL_STATE(8168)] = 266747, + [SMALL_STATE(8169)] = 266770, + [SMALL_STATE(8170)] = 266791, + [SMALL_STATE(8171)] = 266814, + [SMALL_STATE(8172)] = 266831, + [SMALL_STATE(8173)] = 266852, + [SMALL_STATE(8174)] = 266875, + [SMALL_STATE(8175)] = 266896, + [SMALL_STATE(8176)] = 266921, + [SMALL_STATE(8177)] = 266942, + [SMALL_STATE(8178)] = 266965, + [SMALL_STATE(8179)] = 266988, + [SMALL_STATE(8180)] = 267011, + [SMALL_STATE(8181)] = 267032, + [SMALL_STATE(8182)] = 267049, + [SMALL_STATE(8183)] = 267066, + [SMALL_STATE(8184)] = 267087, + [SMALL_STATE(8185)] = 267102, + [SMALL_STATE(8186)] = 267125, + [SMALL_STATE(8187)] = 267142, + [SMALL_STATE(8188)] = 267165, + [SMALL_STATE(8189)] = 267186, + [SMALL_STATE(8190)] = 267209, + [SMALL_STATE(8191)] = 267230, + [SMALL_STATE(8192)] = 267253, + [SMALL_STATE(8193)] = 267276, + [SMALL_STATE(8194)] = 267293, + [SMALL_STATE(8195)] = 267318, + [SMALL_STATE(8196)] = 267341, + [SMALL_STATE(8197)] = 267366, + [SMALL_STATE(8198)] = 267389, + [SMALL_STATE(8199)] = 267408, + [SMALL_STATE(8200)] = 267429, + [SMALL_STATE(8201)] = 267452, + [SMALL_STATE(8202)] = 267475, + [SMALL_STATE(8203)] = 267500, + [SMALL_STATE(8204)] = 267519, + [SMALL_STATE(8205)] = 267542, + [SMALL_STATE(8206)] = 267563, + [SMALL_STATE(8207)] = 267588, + [SMALL_STATE(8208)] = 267611, + [SMALL_STATE(8209)] = 267636, + [SMALL_STATE(8210)] = 267657, + [SMALL_STATE(8211)] = 267680, + [SMALL_STATE(8212)] = 267701, + [SMALL_STATE(8213)] = 267724, + [SMALL_STATE(8214)] = 267747, + [SMALL_STATE(8215)] = 267770, + [SMALL_STATE(8216)] = 267789, + [SMALL_STATE(8217)] = 267812, + [SMALL_STATE(8218)] = 267835, + [SMALL_STATE(8219)] = 267858, + [SMALL_STATE(8220)] = 267881, + [SMALL_STATE(8221)] = 267906, + [SMALL_STATE(8222)] = 267927, + [SMALL_STATE(8223)] = 267944, + [SMALL_STATE(8224)] = 267961, + [SMALL_STATE(8225)] = 267980, + [SMALL_STATE(8226)] = 268003, + [SMALL_STATE(8227)] = 268026, + [SMALL_STATE(8228)] = 268045, + [SMALL_STATE(8229)] = 268066, + [SMALL_STATE(8230)] = 268089, + [SMALL_STATE(8231)] = 268108, + [SMALL_STATE(8232)] = 268127, + [SMALL_STATE(8233)] = 268144, + [SMALL_STATE(8234)] = 268165, + [SMALL_STATE(8235)] = 268184, + [SMALL_STATE(8236)] = 268207, + [SMALL_STATE(8237)] = 268230, + [SMALL_STATE(8238)] = 268253, + [SMALL_STATE(8239)] = 268276, + [SMALL_STATE(8240)] = 268293, + [SMALL_STATE(8241)] = 268310, + [SMALL_STATE(8242)] = 268331, + [SMALL_STATE(8243)] = 268354, + [SMALL_STATE(8244)] = 268375, + [SMALL_STATE(8245)] = 268400, + [SMALL_STATE(8246)] = 268415, + [SMALL_STATE(8247)] = 268436, + [SMALL_STATE(8248)] = 268453, + [SMALL_STATE(8249)] = 268470, + [SMALL_STATE(8250)] = 268487, + [SMALL_STATE(8251)] = 268504, + [SMALL_STATE(8252)] = 268525, + [SMALL_STATE(8253)] = 268542, + [SMALL_STATE(8254)] = 268561, + [SMALL_STATE(8255)] = 268580, + [SMALL_STATE(8256)] = 268603, + [SMALL_STATE(8257)] = 268626, + [SMALL_STATE(8258)] = 268645, + [SMALL_STATE(8259)] = 268668, + [SMALL_STATE(8260)] = 268687, + [SMALL_STATE(8261)] = 268704, + [SMALL_STATE(8262)] = 268727, + [SMALL_STATE(8263)] = 268750, + [SMALL_STATE(8264)] = 268767, + [SMALL_STATE(8265)] = 268788, + [SMALL_STATE(8266)] = 268809, + [SMALL_STATE(8267)] = 268826, + [SMALL_STATE(8268)] = 268849, + [SMALL_STATE(8269)] = 268866, + [SMALL_STATE(8270)] = 268885, + [SMALL_STATE(8271)] = 268902, + [SMALL_STATE(8272)] = 268919, + [SMALL_STATE(8273)] = 268938, + [SMALL_STATE(8274)] = 268961, + [SMALL_STATE(8275)] = 268982, + [SMALL_STATE(8276)] = 269003, + [SMALL_STATE(8277)] = 269024, + [SMALL_STATE(8278)] = 269047, + [SMALL_STATE(8279)] = 269072, + [SMALL_STATE(8280)] = 269093, + [SMALL_STATE(8281)] = 269112, + [SMALL_STATE(8282)] = 269133, + [SMALL_STATE(8283)] = 269152, + [SMALL_STATE(8284)] = 269173, + [SMALL_STATE(8285)] = 269198, + [SMALL_STATE(8286)] = 269219, + [SMALL_STATE(8287)] = 269238, + [SMALL_STATE(8288)] = 269257, + [SMALL_STATE(8289)] = 269276, + [SMALL_STATE(8290)] = 269301, + [SMALL_STATE(8291)] = 269324, + [SMALL_STATE(8292)] = 269347, + [SMALL_STATE(8293)] = 269368, + [SMALL_STATE(8294)] = 269389, + [SMALL_STATE(8295)] = 269408, + [SMALL_STATE(8296)] = 269425, + [SMALL_STATE(8297)] = 269448, + [SMALL_STATE(8298)] = 269467, + [SMALL_STATE(8299)] = 269486, + [SMALL_STATE(8300)] = 269505, + [SMALL_STATE(8301)] = 269528, + [SMALL_STATE(8302)] = 269547, + [SMALL_STATE(8303)] = 269568, + [SMALL_STATE(8304)] = 269593, + [SMALL_STATE(8305)] = 269614, + [SMALL_STATE(8306)] = 269631, + [SMALL_STATE(8307)] = 269654, + [SMALL_STATE(8308)] = 269673, + [SMALL_STATE(8309)] = 269692, + [SMALL_STATE(8310)] = 269711, + [SMALL_STATE(8311)] = 269730, + [SMALL_STATE(8312)] = 269751, + [SMALL_STATE(8313)] = 269770, + [SMALL_STATE(8314)] = 269789, + [SMALL_STATE(8315)] = 269814, + [SMALL_STATE(8316)] = 269831, + [SMALL_STATE(8317)] = 269852, + [SMALL_STATE(8318)] = 269873, + [SMALL_STATE(8319)] = 269890, + [SMALL_STATE(8320)] = 269907, + [SMALL_STATE(8321)] = 269926, + [SMALL_STATE(8322)] = 269947, + [SMALL_STATE(8323)] = 269968, + [SMALL_STATE(8324)] = 269989, + [SMALL_STATE(8325)] = 270012, + [SMALL_STATE(8326)] = 270035, + [SMALL_STATE(8327)] = 270052, + [SMALL_STATE(8328)] = 270073, + [SMALL_STATE(8329)] = 270096, + [SMALL_STATE(8330)] = 270113, + [SMALL_STATE(8331)] = 270132, + [SMALL_STATE(8332)] = 270155, + [SMALL_STATE(8333)] = 270172, + [SMALL_STATE(8334)] = 270195, + [SMALL_STATE(8335)] = 270212, + [SMALL_STATE(8336)] = 270233, + [SMALL_STATE(8337)] = 270250, + [SMALL_STATE(8338)] = 270269, + [SMALL_STATE(8339)] = 270286, + [SMALL_STATE(8340)] = 270303, + [SMALL_STATE(8341)] = 270320, + [SMALL_STATE(8342)] = 270337, + [SMALL_STATE(8343)] = 270354, + [SMALL_STATE(8344)] = 270371, + [SMALL_STATE(8345)] = 270388, + [SMALL_STATE(8346)] = 270405, + [SMALL_STATE(8347)] = 270422, + [SMALL_STATE(8348)] = 270439, + [SMALL_STATE(8349)] = 270456, + [SMALL_STATE(8350)] = 270473, + [SMALL_STATE(8351)] = 270496, + [SMALL_STATE(8352)] = 270513, + [SMALL_STATE(8353)] = 270530, + [SMALL_STATE(8354)] = 270547, + [SMALL_STATE(8355)] = 270564, + [SMALL_STATE(8356)] = 270581, + [SMALL_STATE(8357)] = 270604, + [SMALL_STATE(8358)] = 270621, + [SMALL_STATE(8359)] = 270638, + [SMALL_STATE(8360)] = 270661, + [SMALL_STATE(8361)] = 270682, + [SMALL_STATE(8362)] = 270705, + [SMALL_STATE(8363)] = 270728, + [SMALL_STATE(8364)] = 270745, + [SMALL_STATE(8365)] = 270768, + [SMALL_STATE(8366)] = 270789, + [SMALL_STATE(8367)] = 270806, + [SMALL_STATE(8368)] = 270823, + [SMALL_STATE(8369)] = 270844, + [SMALL_STATE(8370)] = 270863, + [SMALL_STATE(8371)] = 270884, + [SMALL_STATE(8372)] = 270905, + [SMALL_STATE(8373)] = 270926, + [SMALL_STATE(8374)] = 270947, + [SMALL_STATE(8375)] = 270968, + [SMALL_STATE(8376)] = 270993, + [SMALL_STATE(8377)] = 271010, + [SMALL_STATE(8378)] = 271031, + [SMALL_STATE(8379)] = 271048, + [SMALL_STATE(8380)] = 271065, + [SMALL_STATE(8381)] = 271087, + [SMALL_STATE(8382)] = 271103, + [SMALL_STATE(8383)] = 271119, + [SMALL_STATE(8384)] = 271135, + [SMALL_STATE(8385)] = 271151, + [SMALL_STATE(8386)] = 271167, + [SMALL_STATE(8387)] = 271183, + [SMALL_STATE(8388)] = 271199, + [SMALL_STATE(8389)] = 271215, + [SMALL_STATE(8390)] = 271231, + [SMALL_STATE(8391)] = 271247, + [SMALL_STATE(8392)] = 271263, + [SMALL_STATE(8393)] = 271279, + [SMALL_STATE(8394)] = 271295, + [SMALL_STATE(8395)] = 271315, + [SMALL_STATE(8396)] = 271331, + [SMALL_STATE(8397)] = 271347, + [SMALL_STATE(8398)] = 271363, + [SMALL_STATE(8399)] = 271379, + [SMALL_STATE(8400)] = 271395, + [SMALL_STATE(8401)] = 271411, + [SMALL_STATE(8402)] = 271427, + [SMALL_STATE(8403)] = 271443, + [SMALL_STATE(8404)] = 271459, + [SMALL_STATE(8405)] = 271475, + [SMALL_STATE(8406)] = 271491, + [SMALL_STATE(8407)] = 271507, + [SMALL_STATE(8408)] = 271523, + [SMALL_STATE(8409)] = 271539, + [SMALL_STATE(8410)] = 271555, + [SMALL_STATE(8411)] = 271571, + [SMALL_STATE(8412)] = 271587, + [SMALL_STATE(8413)] = 271603, + [SMALL_STATE(8414)] = 271619, + [SMALL_STATE(8415)] = 271635, + [SMALL_STATE(8416)] = 271651, + [SMALL_STATE(8417)] = 271667, + [SMALL_STATE(8418)] = 271683, + [SMALL_STATE(8419)] = 271699, + [SMALL_STATE(8420)] = 271715, + [SMALL_STATE(8421)] = 271731, + [SMALL_STATE(8422)] = 271747, + [SMALL_STATE(8423)] = 271763, + [SMALL_STATE(8424)] = 271779, + [SMALL_STATE(8425)] = 271795, + [SMALL_STATE(8426)] = 271811, + [SMALL_STATE(8427)] = 271827, + [SMALL_STATE(8428)] = 271843, + [SMALL_STATE(8429)] = 271859, + [SMALL_STATE(8430)] = 271879, + [SMALL_STATE(8431)] = 271895, + [SMALL_STATE(8432)] = 271911, + [SMALL_STATE(8433)] = 271927, + [SMALL_STATE(8434)] = 271943, + [SMALL_STATE(8435)] = 271963, + [SMALL_STATE(8436)] = 271979, + [SMALL_STATE(8437)] = 271995, + [SMALL_STATE(8438)] = 272011, + [SMALL_STATE(8439)] = 272031, + [SMALL_STATE(8440)] = 272047, + [SMALL_STATE(8441)] = 272067, + [SMALL_STATE(8442)] = 272083, + [SMALL_STATE(8443)] = 272099, + [SMALL_STATE(8444)] = 272115, + [SMALL_STATE(8445)] = 272131, + [SMALL_STATE(8446)] = 272149, + [SMALL_STATE(8447)] = 272165, + [SMALL_STATE(8448)] = 272181, + [SMALL_STATE(8449)] = 272201, + [SMALL_STATE(8450)] = 272223, + [SMALL_STATE(8451)] = 272239, + [SMALL_STATE(8452)] = 272255, + [SMALL_STATE(8453)] = 272271, + [SMALL_STATE(8454)] = 272285, + [SMALL_STATE(8455)] = 272301, + [SMALL_STATE(8456)] = 272321, + [SMALL_STATE(8457)] = 272337, + [SMALL_STATE(8458)] = 272353, + [SMALL_STATE(8459)] = 272373, + [SMALL_STATE(8460)] = 272393, + [SMALL_STATE(8461)] = 272413, + [SMALL_STATE(8462)] = 272429, + [SMALL_STATE(8463)] = 272451, + [SMALL_STATE(8464)] = 272469, + [SMALL_STATE(8465)] = 272491, + [SMALL_STATE(8466)] = 272507, + [SMALL_STATE(8467)] = 272525, + [SMALL_STATE(8468)] = 272547, + [SMALL_STATE(8469)] = 272567, + [SMALL_STATE(8470)] = 272583, + [SMALL_STATE(8471)] = 272599, + [SMALL_STATE(8472)] = 272615, + [SMALL_STATE(8473)] = 272631, + [SMALL_STATE(8474)] = 272651, + [SMALL_STATE(8475)] = 272667, + [SMALL_STATE(8476)] = 272683, + [SMALL_STATE(8477)] = 272699, + [SMALL_STATE(8478)] = 272715, + [SMALL_STATE(8479)] = 272731, + [SMALL_STATE(8480)] = 272747, + [SMALL_STATE(8481)] = 272763, + [SMALL_STATE(8482)] = 272779, + [SMALL_STATE(8483)] = 272801, + [SMALL_STATE(8484)] = 272821, + [SMALL_STATE(8485)] = 272837, + [SMALL_STATE(8486)] = 272853, + [SMALL_STATE(8487)] = 272869, + [SMALL_STATE(8488)] = 272885, + [SMALL_STATE(8489)] = 272903, + [SMALL_STATE(8490)] = 272919, + [SMALL_STATE(8491)] = 272935, + [SMALL_STATE(8492)] = 272951, + [SMALL_STATE(8493)] = 272967, + [SMALL_STATE(8494)] = 272989, + [SMALL_STATE(8495)] = 273009, + [SMALL_STATE(8496)] = 273031, + [SMALL_STATE(8497)] = 273051, + [SMALL_STATE(8498)] = 273067, + [SMALL_STATE(8499)] = 273089, + [SMALL_STATE(8500)] = 273103, + [SMALL_STATE(8501)] = 273117, + [SMALL_STATE(8502)] = 273131, + [SMALL_STATE(8503)] = 273153, + [SMALL_STATE(8504)] = 273175, + [SMALL_STATE(8505)] = 273197, + [SMALL_STATE(8506)] = 273217, + [SMALL_STATE(8507)] = 273233, + [SMALL_STATE(8508)] = 273247, + [SMALL_STATE(8509)] = 273261, + [SMALL_STATE(8510)] = 273275, + [SMALL_STATE(8511)] = 273293, + [SMALL_STATE(8512)] = 273307, + [SMALL_STATE(8513)] = 273321, + [SMALL_STATE(8514)] = 273335, + [SMALL_STATE(8515)] = 273349, + [SMALL_STATE(8516)] = 273371, + [SMALL_STATE(8517)] = 273385, + [SMALL_STATE(8518)] = 273399, + [SMALL_STATE(8519)] = 273421, + [SMALL_STATE(8520)] = 273441, + [SMALL_STATE(8521)] = 273455, + [SMALL_STATE(8522)] = 273469, + [SMALL_STATE(8523)] = 273483, + [SMALL_STATE(8524)] = 273499, + [SMALL_STATE(8525)] = 273521, + [SMALL_STATE(8526)] = 273539, + [SMALL_STATE(8527)] = 273557, + [SMALL_STATE(8528)] = 273575, + [SMALL_STATE(8529)] = 273593, + [SMALL_STATE(8530)] = 273611, + [SMALL_STATE(8531)] = 273633, + [SMALL_STATE(8532)] = 273649, + [SMALL_STATE(8533)] = 273671, + [SMALL_STATE(8534)] = 273691, + [SMALL_STATE(8535)] = 273711, + [SMALL_STATE(8536)] = 273725, + [SMALL_STATE(8537)] = 273741, + [SMALL_STATE(8538)] = 273761, + [SMALL_STATE(8539)] = 273783, + [SMALL_STATE(8540)] = 273805, + [SMALL_STATE(8541)] = 273825, + [SMALL_STATE(8542)] = 273841, + [SMALL_STATE(8543)] = 273857, + [SMALL_STATE(8544)] = 273873, + [SMALL_STATE(8545)] = 273893, + [SMALL_STATE(8546)] = 273907, + [SMALL_STATE(8547)] = 273923, + [SMALL_STATE(8548)] = 273939, + [SMALL_STATE(8549)] = 273961, + [SMALL_STATE(8550)] = 273983, + [SMALL_STATE(8551)] = 274003, + [SMALL_STATE(8552)] = 274019, + [SMALL_STATE(8553)] = 274035, + [SMALL_STATE(8554)] = 274057, + [SMALL_STATE(8555)] = 274075, + [SMALL_STATE(8556)] = 274091, + [SMALL_STATE(8557)] = 274113, + [SMALL_STATE(8558)] = 274135, + [SMALL_STATE(8559)] = 274151, + [SMALL_STATE(8560)] = 274165, + [SMALL_STATE(8561)] = 274187, + [SMALL_STATE(8562)] = 274209, + [SMALL_STATE(8563)] = 274225, + [SMALL_STATE(8564)] = 274245, + [SMALL_STATE(8565)] = 274265, + [SMALL_STATE(8566)] = 274281, + [SMALL_STATE(8567)] = 274299, + [SMALL_STATE(8568)] = 274315, + [SMALL_STATE(8569)] = 274333, + [SMALL_STATE(8570)] = 274351, + [SMALL_STATE(8571)] = 274373, + [SMALL_STATE(8572)] = 274395, + [SMALL_STATE(8573)] = 274415, + [SMALL_STATE(8574)] = 274437, + [SMALL_STATE(8575)] = 274455, + [SMALL_STATE(8576)] = 274477, + [SMALL_STATE(8577)] = 274499, + [SMALL_STATE(8578)] = 274519, + [SMALL_STATE(8579)] = 274539, + [SMALL_STATE(8580)] = 274555, + [SMALL_STATE(8581)] = 274577, + [SMALL_STATE(8582)] = 274599, + [SMALL_STATE(8583)] = 274621, + [SMALL_STATE(8584)] = 274641, + [SMALL_STATE(8585)] = 274657, + [SMALL_STATE(8586)] = 274679, + [SMALL_STATE(8587)] = 274697, + [SMALL_STATE(8588)] = 274719, + [SMALL_STATE(8589)] = 274739, + [SMALL_STATE(8590)] = 274753, + [SMALL_STATE(8591)] = 274767, + [SMALL_STATE(8592)] = 274783, + [SMALL_STATE(8593)] = 274805, + [SMALL_STATE(8594)] = 274821, + [SMALL_STATE(8595)] = 274837, + [SMALL_STATE(8596)] = 274855, + [SMALL_STATE(8597)] = 274871, + [SMALL_STATE(8598)] = 274889, + [SMALL_STATE(8599)] = 274903, + [SMALL_STATE(8600)] = 274919, + [SMALL_STATE(8601)] = 274941, + [SMALL_STATE(8602)] = 274963, + [SMALL_STATE(8603)] = 274983, + [SMALL_STATE(8604)] = 274999, + [SMALL_STATE(8605)] = 275015, + [SMALL_STATE(8606)] = 275031, + [SMALL_STATE(8607)] = 275047, + [SMALL_STATE(8608)] = 275063, + [SMALL_STATE(8609)] = 275079, + [SMALL_STATE(8610)] = 275095, + [SMALL_STATE(8611)] = 275111, + [SMALL_STATE(8612)] = 275127, + [SMALL_STATE(8613)] = 275145, + [SMALL_STATE(8614)] = 275167, + [SMALL_STATE(8615)] = 275189, + [SMALL_STATE(8616)] = 275205, + [SMALL_STATE(8617)] = 275225, + [SMALL_STATE(8618)] = 275241, + [SMALL_STATE(8619)] = 275257, + [SMALL_STATE(8620)] = 275273, + [SMALL_STATE(8621)] = 275289, + [SMALL_STATE(8622)] = 275305, + [SMALL_STATE(8623)] = 275323, + [SMALL_STATE(8624)] = 275339, + [SMALL_STATE(8625)] = 275355, + [SMALL_STATE(8626)] = 275371, + [SMALL_STATE(8627)] = 275387, + [SMALL_STATE(8628)] = 275403, + [SMALL_STATE(8629)] = 275425, + [SMALL_STATE(8630)] = 275441, + [SMALL_STATE(8631)] = 275459, + [SMALL_STATE(8632)] = 275475, + [SMALL_STATE(8633)] = 275497, + [SMALL_STATE(8634)] = 275513, + [SMALL_STATE(8635)] = 275533, + [SMALL_STATE(8636)] = 275551, + [SMALL_STATE(8637)] = 275573, + [SMALL_STATE(8638)] = 275589, + [SMALL_STATE(8639)] = 275605, + [SMALL_STATE(8640)] = 275621, + [SMALL_STATE(8641)] = 275637, + [SMALL_STATE(8642)] = 275653, + [SMALL_STATE(8643)] = 275669, + [SMALL_STATE(8644)] = 275691, + [SMALL_STATE(8645)] = 275709, + [SMALL_STATE(8646)] = 275725, + [SMALL_STATE(8647)] = 275741, + [SMALL_STATE(8648)] = 275763, + [SMALL_STATE(8649)] = 275779, + [SMALL_STATE(8650)] = 275799, + [SMALL_STATE(8651)] = 275821, + [SMALL_STATE(8652)] = 275843, + [SMALL_STATE(8653)] = 275865, + [SMALL_STATE(8654)] = 275887, + [SMALL_STATE(8655)] = 275909, + [SMALL_STATE(8656)] = 275931, + [SMALL_STATE(8657)] = 275953, + [SMALL_STATE(8658)] = 275973, + [SMALL_STATE(8659)] = 275995, + [SMALL_STATE(8660)] = 276013, + [SMALL_STATE(8661)] = 276029, + [SMALL_STATE(8662)] = 276045, + [SMALL_STATE(8663)] = 276067, + [SMALL_STATE(8664)] = 276089, + [SMALL_STATE(8665)] = 276105, + [SMALL_STATE(8666)] = 276125, + [SMALL_STATE(8667)] = 276141, + [SMALL_STATE(8668)] = 276161, + [SMALL_STATE(8669)] = 276177, + [SMALL_STATE(8670)] = 276193, + [SMALL_STATE(8671)] = 276213, + [SMALL_STATE(8672)] = 276233, + [SMALL_STATE(8673)] = 276249, + [SMALL_STATE(8674)] = 276271, + [SMALL_STATE(8675)] = 276287, + [SMALL_STATE(8676)] = 276309, + [SMALL_STATE(8677)] = 276325, + [SMALL_STATE(8678)] = 276345, + [SMALL_STATE(8679)] = 276359, + [SMALL_STATE(8680)] = 276373, + [SMALL_STATE(8681)] = 276389, + [SMALL_STATE(8682)] = 276405, + [SMALL_STATE(8683)] = 276423, + [SMALL_STATE(8684)] = 276437, + [SMALL_STATE(8685)] = 276453, + [SMALL_STATE(8686)] = 276469, + [SMALL_STATE(8687)] = 276483, + [SMALL_STATE(8688)] = 276499, + [SMALL_STATE(8689)] = 276521, + [SMALL_STATE(8690)] = 276537, + [SMALL_STATE(8691)] = 276559, + [SMALL_STATE(8692)] = 276579, + [SMALL_STATE(8693)] = 276593, + [SMALL_STATE(8694)] = 276611, + [SMALL_STATE(8695)] = 276633, + [SMALL_STATE(8696)] = 276651, + [SMALL_STATE(8697)] = 276667, + [SMALL_STATE(8698)] = 276687, + [SMALL_STATE(8699)] = 276707, + [SMALL_STATE(8700)] = 276721, + [SMALL_STATE(8701)] = 276743, + [SMALL_STATE(8702)] = 276757, + [SMALL_STATE(8703)] = 276779, + [SMALL_STATE(8704)] = 276799, + [SMALL_STATE(8705)] = 276815, + [SMALL_STATE(8706)] = 276829, + [SMALL_STATE(8707)] = 276851, + [SMALL_STATE(8708)] = 276867, + [SMALL_STATE(8709)] = 276883, + [SMALL_STATE(8710)] = 276899, + [SMALL_STATE(8711)] = 276915, + [SMALL_STATE(8712)] = 276931, + [SMALL_STATE(8713)] = 276953, + [SMALL_STATE(8714)] = 276973, + [SMALL_STATE(8715)] = 276989, + [SMALL_STATE(8716)] = 277005, + [SMALL_STATE(8717)] = 277027, + [SMALL_STATE(8718)] = 277047, + [SMALL_STATE(8719)] = 277063, + [SMALL_STATE(8720)] = 277079, + [SMALL_STATE(8721)] = 277093, + [SMALL_STATE(8722)] = 277109, + [SMALL_STATE(8723)] = 277123, + [SMALL_STATE(8724)] = 277145, + [SMALL_STATE(8725)] = 277161, + [SMALL_STATE(8726)] = 277183, + [SMALL_STATE(8727)] = 277203, + [SMALL_STATE(8728)] = 277219, + [SMALL_STATE(8729)] = 277235, + [SMALL_STATE(8730)] = 277251, + [SMALL_STATE(8731)] = 277273, + [SMALL_STATE(8732)] = 277293, + [SMALL_STATE(8733)] = 277307, + [SMALL_STATE(8734)] = 277323, + [SMALL_STATE(8735)] = 277341, + [SMALL_STATE(8736)] = 277363, + [SMALL_STATE(8737)] = 277379, + [SMALL_STATE(8738)] = 277395, + [SMALL_STATE(8739)] = 277415, + [SMALL_STATE(8740)] = 277437, + [SMALL_STATE(8741)] = 277453, + [SMALL_STATE(8742)] = 277473, + [SMALL_STATE(8743)] = 277487, + [SMALL_STATE(8744)] = 277503, + [SMALL_STATE(8745)] = 277519, + [SMALL_STATE(8746)] = 277535, + [SMALL_STATE(8747)] = 277551, + [SMALL_STATE(8748)] = 277567, + [SMALL_STATE(8749)] = 277583, + [SMALL_STATE(8750)] = 277599, + [SMALL_STATE(8751)] = 277619, + [SMALL_STATE(8752)] = 277641, + [SMALL_STATE(8753)] = 277657, + [SMALL_STATE(8754)] = 277673, + [SMALL_STATE(8755)] = 277693, + [SMALL_STATE(8756)] = 277715, + [SMALL_STATE(8757)] = 277731, + [SMALL_STATE(8758)] = 277751, + [SMALL_STATE(8759)] = 277771, + [SMALL_STATE(8760)] = 277793, + [SMALL_STATE(8761)] = 277809, + [SMALL_STATE(8762)] = 277831, + [SMALL_STATE(8763)] = 277847, + [SMALL_STATE(8764)] = 277867, + [SMALL_STATE(8765)] = 277883, + [SMALL_STATE(8766)] = 277905, + [SMALL_STATE(8767)] = 277927, + [SMALL_STATE(8768)] = 277949, + [SMALL_STATE(8769)] = 277969, + [SMALL_STATE(8770)] = 277991, + [SMALL_STATE(8771)] = 278007, + [SMALL_STATE(8772)] = 278023, + [SMALL_STATE(8773)] = 278045, + [SMALL_STATE(8774)] = 278065, + [SMALL_STATE(8775)] = 278081, + [SMALL_STATE(8776)] = 278103, + [SMALL_STATE(8777)] = 278119, + [SMALL_STATE(8778)] = 278141, + [SMALL_STATE(8779)] = 278161, + [SMALL_STATE(8780)] = 278177, + [SMALL_STATE(8781)] = 278199, + [SMALL_STATE(8782)] = 278215, + [SMALL_STATE(8783)] = 278237, + [SMALL_STATE(8784)] = 278257, + [SMALL_STATE(8785)] = 278279, + [SMALL_STATE(8786)] = 278301, + [SMALL_STATE(8787)] = 278317, + [SMALL_STATE(8788)] = 278337, + [SMALL_STATE(8789)] = 278357, + [SMALL_STATE(8790)] = 278373, + [SMALL_STATE(8791)] = 278395, + [SMALL_STATE(8792)] = 278417, + [SMALL_STATE(8793)] = 278437, + [SMALL_STATE(8794)] = 278459, + [SMALL_STATE(8795)] = 278481, + [SMALL_STATE(8796)] = 278501, + [SMALL_STATE(8797)] = 278519, + [SMALL_STATE(8798)] = 278539, + [SMALL_STATE(8799)] = 278561, + [SMALL_STATE(8800)] = 278581, + [SMALL_STATE(8801)] = 278601, + [SMALL_STATE(8802)] = 278621, + [SMALL_STATE(8803)] = 278641, + [SMALL_STATE(8804)] = 278661, + [SMALL_STATE(8805)] = 278681, + [SMALL_STATE(8806)] = 278701, + [SMALL_STATE(8807)] = 278721, + [SMALL_STATE(8808)] = 278741, + [SMALL_STATE(8809)] = 278761, + [SMALL_STATE(8810)] = 278781, + [SMALL_STATE(8811)] = 278801, + [SMALL_STATE(8812)] = 278821, + [SMALL_STATE(8813)] = 278841, + [SMALL_STATE(8814)] = 278861, + [SMALL_STATE(8815)] = 278881, + [SMALL_STATE(8816)] = 278901, + [SMALL_STATE(8817)] = 278921, + [SMALL_STATE(8818)] = 278941, + [SMALL_STATE(8819)] = 278961, + [SMALL_STATE(8820)] = 278981, + [SMALL_STATE(8821)] = 279001, + [SMALL_STATE(8822)] = 279021, + [SMALL_STATE(8823)] = 279041, + [SMALL_STATE(8824)] = 279061, + [SMALL_STATE(8825)] = 279081, + [SMALL_STATE(8826)] = 279101, + [SMALL_STATE(8827)] = 279121, + [SMALL_STATE(8828)] = 279141, + [SMALL_STATE(8829)] = 279161, + [SMALL_STATE(8830)] = 279181, + [SMALL_STATE(8831)] = 279201, + [SMALL_STATE(8832)] = 279221, + [SMALL_STATE(8833)] = 279241, + [SMALL_STATE(8834)] = 279261, + [SMALL_STATE(8835)] = 279281, + [SMALL_STATE(8836)] = 279301, + [SMALL_STATE(8837)] = 279321, + [SMALL_STATE(8838)] = 279341, + [SMALL_STATE(8839)] = 279361, + [SMALL_STATE(8840)] = 279381, + [SMALL_STATE(8841)] = 279401, + [SMALL_STATE(8842)] = 279421, + [SMALL_STATE(8843)] = 279441, + [SMALL_STATE(8844)] = 279461, + [SMALL_STATE(8845)] = 279481, + [SMALL_STATE(8846)] = 279497, + [SMALL_STATE(8847)] = 279513, + [SMALL_STATE(8848)] = 279531, + [SMALL_STATE(8849)] = 279549, + [SMALL_STATE(8850)] = 279563, + [SMALL_STATE(8851)] = 279583, + [SMALL_STATE(8852)] = 279601, + [SMALL_STATE(8853)] = 279623, + [SMALL_STATE(8854)] = 279641, + [SMALL_STATE(8855)] = 279659, + [SMALL_STATE(8856)] = 279681, + [SMALL_STATE(8857)] = 279701, + [SMALL_STATE(8858)] = 279721, + [SMALL_STATE(8859)] = 279741, + [SMALL_STATE(8860)] = 279757, + [SMALL_STATE(8861)] = 279771, + [SMALL_STATE(8862)] = 279791, + [SMALL_STATE(8863)] = 279807, + [SMALL_STATE(8864)] = 279823, + [SMALL_STATE(8865)] = 279837, + [SMALL_STATE(8866)] = 279859, + [SMALL_STATE(8867)] = 279875, + [SMALL_STATE(8868)] = 279889, + [SMALL_STATE(8869)] = 279911, + [SMALL_STATE(8870)] = 279925, + [SMALL_STATE(8871)] = 279943, + [SMALL_STATE(8872)] = 279959, + [SMALL_STATE(8873)] = 279981, + [SMALL_STATE(8874)] = 279999, + [SMALL_STATE(8875)] = 280019, + [SMALL_STATE(8876)] = 280033, + [SMALL_STATE(8877)] = 280055, + [SMALL_STATE(8878)] = 280073, + [SMALL_STATE(8879)] = 280089, + [SMALL_STATE(8880)] = 280105, + [SMALL_STATE(8881)] = 280121, + [SMALL_STATE(8882)] = 280137, + [SMALL_STATE(8883)] = 280153, + [SMALL_STATE(8884)] = 280173, + [SMALL_STATE(8885)] = 280193, + [SMALL_STATE(8886)] = 280213, + [SMALL_STATE(8887)] = 280233, + [SMALL_STATE(8888)] = 280253, + [SMALL_STATE(8889)] = 280269, + [SMALL_STATE(8890)] = 280287, + [SMALL_STATE(8891)] = 280307, + [SMALL_STATE(8892)] = 280325, + [SMALL_STATE(8893)] = 280341, + [SMALL_STATE(8894)] = 280357, + [SMALL_STATE(8895)] = 280373, + [SMALL_STATE(8896)] = 280389, + [SMALL_STATE(8897)] = 280411, + [SMALL_STATE(8898)] = 280431, + [SMALL_STATE(8899)] = 280449, + [SMALL_STATE(8900)] = 280469, + [SMALL_STATE(8901)] = 280491, + [SMALL_STATE(8902)] = 280507, + [SMALL_STATE(8903)] = 280523, + [SMALL_STATE(8904)] = 280541, + [SMALL_STATE(8905)] = 280555, + [SMALL_STATE(8906)] = 280573, + [SMALL_STATE(8907)] = 280593, + [SMALL_STATE(8908)] = 280613, + [SMALL_STATE(8909)] = 280633, + [SMALL_STATE(8910)] = 280653, + [SMALL_STATE(8911)] = 280671, + [SMALL_STATE(8912)] = 280687, + [SMALL_STATE(8913)] = 280705, + [SMALL_STATE(8914)] = 280725, + [SMALL_STATE(8915)] = 280745, + [SMALL_STATE(8916)] = 280765, + [SMALL_STATE(8917)] = 280785, + [SMALL_STATE(8918)] = 280805, + [SMALL_STATE(8919)] = 280825, + [SMALL_STATE(8920)] = 280845, + [SMALL_STATE(8921)] = 280859, + [SMALL_STATE(8922)] = 280879, + [SMALL_STATE(8923)] = 280895, + [SMALL_STATE(8924)] = 280915, + [SMALL_STATE(8925)] = 280933, + [SMALL_STATE(8926)] = 280953, + [SMALL_STATE(8927)] = 280973, + [SMALL_STATE(8928)] = 280989, + [SMALL_STATE(8929)] = 281009, + [SMALL_STATE(8930)] = 281031, + [SMALL_STATE(8931)] = 281051, + [SMALL_STATE(8932)] = 281067, + [SMALL_STATE(8933)] = 281083, + [SMALL_STATE(8934)] = 281101, + [SMALL_STATE(8935)] = 281121, + [SMALL_STATE(8936)] = 281141, + [SMALL_STATE(8937)] = 281157, + [SMALL_STATE(8938)] = 281177, + [SMALL_STATE(8939)] = 281193, + [SMALL_STATE(8940)] = 281209, + [SMALL_STATE(8941)] = 281229, + [SMALL_STATE(8942)] = 281245, + [SMALL_STATE(8943)] = 281265, + [SMALL_STATE(8944)] = 281285, + [SMALL_STATE(8945)] = 281305, + [SMALL_STATE(8946)] = 281321, + [SMALL_STATE(8947)] = 281341, + [SMALL_STATE(8948)] = 281361, + [SMALL_STATE(8949)] = 281381, + [SMALL_STATE(8950)] = 281401, + [SMALL_STATE(8951)] = 281421, + [SMALL_STATE(8952)] = 281441, + [SMALL_STATE(8953)] = 281461, + [SMALL_STATE(8954)] = 281481, + [SMALL_STATE(8955)] = 281501, + [SMALL_STATE(8956)] = 281521, + [SMALL_STATE(8957)] = 281541, + [SMALL_STATE(8958)] = 281561, + [SMALL_STATE(8959)] = 281581, + [SMALL_STATE(8960)] = 281601, + [SMALL_STATE(8961)] = 281621, + [SMALL_STATE(8962)] = 281641, + [SMALL_STATE(8963)] = 281661, + [SMALL_STATE(8964)] = 281681, + [SMALL_STATE(8965)] = 281701, + [SMALL_STATE(8966)] = 281721, + [SMALL_STATE(8967)] = 281737, + [SMALL_STATE(8968)] = 281753, + [SMALL_STATE(8969)] = 281769, + [SMALL_STATE(8970)] = 281789, + [SMALL_STATE(8971)] = 281809, + [SMALL_STATE(8972)] = 281829, + [SMALL_STATE(8973)] = 281849, + [SMALL_STATE(8974)] = 281869, + [SMALL_STATE(8975)] = 281887, + [SMALL_STATE(8976)] = 281907, + [SMALL_STATE(8977)] = 281927, + [SMALL_STATE(8978)] = 281947, + [SMALL_STATE(8979)] = 281965, + [SMALL_STATE(8980)] = 281979, + [SMALL_STATE(8981)] = 281995, + [SMALL_STATE(8982)] = 282013, + [SMALL_STATE(8983)] = 282031, + [SMALL_STATE(8984)] = 282049, + [SMALL_STATE(8985)] = 282067, + [SMALL_STATE(8986)] = 282089, + [SMALL_STATE(8987)] = 282107, + [SMALL_STATE(8988)] = 282125, + [SMALL_STATE(8989)] = 282143, + [SMALL_STATE(8990)] = 282159, + [SMALL_STATE(8991)] = 282175, + [SMALL_STATE(8992)] = 282191, + [SMALL_STATE(8993)] = 282206, + [SMALL_STATE(8994)] = 282225, + [SMALL_STATE(8995)] = 282242, + [SMALL_STATE(8996)] = 282257, + [SMALL_STATE(8997)] = 282274, + [SMALL_STATE(8998)] = 282293, + [SMALL_STATE(8999)] = 282312, + [SMALL_STATE(9000)] = 282329, + [SMALL_STATE(9001)] = 282346, + [SMALL_STATE(9002)] = 282361, + [SMALL_STATE(9003)] = 282376, + [SMALL_STATE(9004)] = 282391, + [SMALL_STATE(9005)] = 282406, + [SMALL_STATE(9006)] = 282421, + [SMALL_STATE(9007)] = 282436, + [SMALL_STATE(9008)] = 282451, + [SMALL_STATE(9009)] = 282466, + [SMALL_STATE(9010)] = 282485, + [SMALL_STATE(9011)] = 282500, + [SMALL_STATE(9012)] = 282515, + [SMALL_STATE(9013)] = 282528, + [SMALL_STATE(9014)] = 282543, + [SMALL_STATE(9015)] = 282562, + [SMALL_STATE(9016)] = 282577, + [SMALL_STATE(9017)] = 282594, + [SMALL_STATE(9018)] = 282609, + [SMALL_STATE(9019)] = 282624, + [SMALL_STATE(9020)] = 282641, + [SMALL_STATE(9021)] = 282660, + [SMALL_STATE(9022)] = 282675, + [SMALL_STATE(9023)] = 282690, + [SMALL_STATE(9024)] = 282709, + [SMALL_STATE(9025)] = 282724, + [SMALL_STATE(9026)] = 282739, + [SMALL_STATE(9027)] = 282754, + [SMALL_STATE(9028)] = 282769, + [SMALL_STATE(9029)] = 282784, + [SMALL_STATE(9030)] = 282799, + [SMALL_STATE(9031)] = 282818, + [SMALL_STATE(9032)] = 282833, + [SMALL_STATE(9033)] = 282852, + [SMALL_STATE(9034)] = 282867, + [SMALL_STATE(9035)] = 282882, + [SMALL_STATE(9036)] = 282897, + [SMALL_STATE(9037)] = 282912, + [SMALL_STATE(9038)] = 282927, + [SMALL_STATE(9039)] = 282942, + [SMALL_STATE(9040)] = 282955, + [SMALL_STATE(9041)] = 282970, + [SMALL_STATE(9042)] = 282985, + [SMALL_STATE(9043)] = 283000, + [SMALL_STATE(9044)] = 283015, + [SMALL_STATE(9045)] = 283032, + [SMALL_STATE(9046)] = 283047, + [SMALL_STATE(9047)] = 283062, + [SMALL_STATE(9048)] = 283077, + [SMALL_STATE(9049)] = 283094, + [SMALL_STATE(9050)] = 283113, + [SMALL_STATE(9051)] = 283132, + [SMALL_STATE(9052)] = 283147, + [SMALL_STATE(9053)] = 283162, + [SMALL_STATE(9054)] = 283181, + [SMALL_STATE(9055)] = 283196, + [SMALL_STATE(9056)] = 283211, + [SMALL_STATE(9057)] = 283226, + [SMALL_STATE(9058)] = 283241, + [SMALL_STATE(9059)] = 283256, + [SMALL_STATE(9060)] = 283275, + [SMALL_STATE(9061)] = 283290, + [SMALL_STATE(9062)] = 283305, + [SMALL_STATE(9063)] = 283320, + [SMALL_STATE(9064)] = 283335, + [SMALL_STATE(9065)] = 283348, + [SMALL_STATE(9066)] = 283363, + [SMALL_STATE(9067)] = 283380, + [SMALL_STATE(9068)] = 283397, + [SMALL_STATE(9069)] = 283412, + [SMALL_STATE(9070)] = 283429, + [SMALL_STATE(9071)] = 283444, + [SMALL_STATE(9072)] = 283463, + [SMALL_STATE(9073)] = 283478, + [SMALL_STATE(9074)] = 283497, + [SMALL_STATE(9075)] = 283512, + [SMALL_STATE(9076)] = 283527, + [SMALL_STATE(9077)] = 283542, + [SMALL_STATE(9078)] = 283557, + [SMALL_STATE(9079)] = 283572, + [SMALL_STATE(9080)] = 283587, + [SMALL_STATE(9081)] = 283602, + [SMALL_STATE(9082)] = 283617, + [SMALL_STATE(9083)] = 283632, + [SMALL_STATE(9084)] = 283647, + [SMALL_STATE(9085)] = 283662, + [SMALL_STATE(9086)] = 283677, + [SMALL_STATE(9087)] = 283692, + [SMALL_STATE(9088)] = 283707, + [SMALL_STATE(9089)] = 283722, + [SMALL_STATE(9090)] = 283735, + [SMALL_STATE(9091)] = 283752, + [SMALL_STATE(9092)] = 283771, + [SMALL_STATE(9093)] = 283788, + [SMALL_STATE(9094)] = 283805, + [SMALL_STATE(9095)] = 283824, + [SMALL_STATE(9096)] = 283843, + [SMALL_STATE(9097)] = 283858, + [SMALL_STATE(9098)] = 283873, + [SMALL_STATE(9099)] = 283892, + [SMALL_STATE(9100)] = 283907, + [SMALL_STATE(9101)] = 283922, + [SMALL_STATE(9102)] = 283935, + [SMALL_STATE(9103)] = 283952, + [SMALL_STATE(9104)] = 283969, + [SMALL_STATE(9105)] = 283988, + [SMALL_STATE(9106)] = 284005, + [SMALL_STATE(9107)] = 284024, + [SMALL_STATE(9108)] = 284043, + [SMALL_STATE(9109)] = 284058, + [SMALL_STATE(9110)] = 284077, + [SMALL_STATE(9111)] = 284092, + [SMALL_STATE(9112)] = 284111, + [SMALL_STATE(9113)] = 284130, + [SMALL_STATE(9114)] = 284145, + [SMALL_STATE(9115)] = 284164, + [SMALL_STATE(9116)] = 284179, + [SMALL_STATE(9117)] = 284194, + [SMALL_STATE(9118)] = 284207, + [SMALL_STATE(9119)] = 284226, + [SMALL_STATE(9120)] = 284243, + [SMALL_STATE(9121)] = 284258, + [SMALL_STATE(9122)] = 284273, + [SMALL_STATE(9123)] = 284290, + [SMALL_STATE(9124)] = 284305, + [SMALL_STATE(9125)] = 284320, + [SMALL_STATE(9126)] = 284339, + [SMALL_STATE(9127)] = 284354, + [SMALL_STATE(9128)] = 284373, + [SMALL_STATE(9129)] = 284390, + [SMALL_STATE(9130)] = 284409, + [SMALL_STATE(9131)] = 284428, + [SMALL_STATE(9132)] = 284443, + [SMALL_STATE(9133)] = 284458, + [SMALL_STATE(9134)] = 284473, + [SMALL_STATE(9135)] = 284492, + [SMALL_STATE(9136)] = 284507, + [SMALL_STATE(9137)] = 284526, + [SMALL_STATE(9138)] = 284545, + [SMALL_STATE(9139)] = 284558, + [SMALL_STATE(9140)] = 284575, + [SMALL_STATE(9141)] = 284594, + [SMALL_STATE(9142)] = 284611, + [SMALL_STATE(9143)] = 284630, + [SMALL_STATE(9144)] = 284649, + [SMALL_STATE(9145)] = 284664, + [SMALL_STATE(9146)] = 284683, + [SMALL_STATE(9147)] = 284698, + [SMALL_STATE(9148)] = 284717, + [SMALL_STATE(9149)] = 284732, + [SMALL_STATE(9150)] = 284747, + [SMALL_STATE(9151)] = 284762, + [SMALL_STATE(9152)] = 284777, + [SMALL_STATE(9153)] = 284790, + [SMALL_STATE(9154)] = 284809, + [SMALL_STATE(9155)] = 284826, + [SMALL_STATE(9156)] = 284841, + [SMALL_STATE(9157)] = 284856, + [SMALL_STATE(9158)] = 284873, + [SMALL_STATE(9159)] = 284888, + [SMALL_STATE(9160)] = 284907, + [SMALL_STATE(9161)] = 284926, + [SMALL_STATE(9162)] = 284941, + [SMALL_STATE(9163)] = 284960, + [SMALL_STATE(9164)] = 284973, + [SMALL_STATE(9165)] = 284988, + [SMALL_STATE(9166)] = 285005, + [SMALL_STATE(9167)] = 285020, + [SMALL_STATE(9168)] = 285039, + [SMALL_STATE(9169)] = 285056, + [SMALL_STATE(9170)] = 285071, + [SMALL_STATE(9171)] = 285090, + [SMALL_STATE(9172)] = 285109, + [SMALL_STATE(9173)] = 285128, + [SMALL_STATE(9174)] = 285143, + [SMALL_STATE(9175)] = 285158, + [SMALL_STATE(9176)] = 285175, + [SMALL_STATE(9177)] = 285190, + [SMALL_STATE(9178)] = 285205, + [SMALL_STATE(9179)] = 285224, + [SMALL_STATE(9180)] = 285239, + [SMALL_STATE(9181)] = 285252, + [SMALL_STATE(9182)] = 285269, + [SMALL_STATE(9183)] = 285284, + [SMALL_STATE(9184)] = 285299, + [SMALL_STATE(9185)] = 285316, + [SMALL_STATE(9186)] = 285335, + [SMALL_STATE(9187)] = 285350, + [SMALL_STATE(9188)] = 285369, + [SMALL_STATE(9189)] = 285388, + [SMALL_STATE(9190)] = 285407, + [SMALL_STATE(9191)] = 285422, + [SMALL_STATE(9192)] = 285437, + [SMALL_STATE(9193)] = 285452, + [SMALL_STATE(9194)] = 285465, + [SMALL_STATE(9195)] = 285484, + [SMALL_STATE(9196)] = 285503, + [SMALL_STATE(9197)] = 285518, + [SMALL_STATE(9198)] = 285531, + [SMALL_STATE(9199)] = 285546, + [SMALL_STATE(9200)] = 285563, + [SMALL_STATE(9201)] = 285580, + [SMALL_STATE(9202)] = 285595, + [SMALL_STATE(9203)] = 285612, + [SMALL_STATE(9204)] = 285629, + [SMALL_STATE(9205)] = 285644, + [SMALL_STATE(9206)] = 285659, + [SMALL_STATE(9207)] = 285678, + [SMALL_STATE(9208)] = 285697, + [SMALL_STATE(9209)] = 285712, + [SMALL_STATE(9210)] = 285731, + [SMALL_STATE(9211)] = 285750, + [SMALL_STATE(9212)] = 285763, + [SMALL_STATE(9213)] = 285776, + [SMALL_STATE(9214)] = 285791, + [SMALL_STATE(9215)] = 285808, + [SMALL_STATE(9216)] = 285825, + [SMALL_STATE(9217)] = 285844, + [SMALL_STATE(9218)] = 285861, + [SMALL_STATE(9219)] = 285876, + [SMALL_STATE(9220)] = 285895, + [SMALL_STATE(9221)] = 285914, + [SMALL_STATE(9222)] = 285929, + [SMALL_STATE(9223)] = 285946, + [SMALL_STATE(9224)] = 285965, + [SMALL_STATE(9225)] = 285984, + [SMALL_STATE(9226)] = 286003, + [SMALL_STATE(9227)] = 286016, + [SMALL_STATE(9228)] = 286031, + [SMALL_STATE(9229)] = 286048, + [SMALL_STATE(9230)] = 286063, + [SMALL_STATE(9231)] = 286080, + [SMALL_STATE(9232)] = 286099, + [SMALL_STATE(9233)] = 286116, + [SMALL_STATE(9234)] = 286135, + [SMALL_STATE(9235)] = 286154, + [SMALL_STATE(9236)] = 286173, + [SMALL_STATE(9237)] = 286188, + [SMALL_STATE(9238)] = 286207, + [SMALL_STATE(9239)] = 286222, + [SMALL_STATE(9240)] = 286237, + [SMALL_STATE(9241)] = 286252, + [SMALL_STATE(9242)] = 286271, + [SMALL_STATE(9243)] = 286284, + [SMALL_STATE(9244)] = 286303, + [SMALL_STATE(9245)] = 286320, + [SMALL_STATE(9246)] = 286335, + [SMALL_STATE(9247)] = 286350, + [SMALL_STATE(9248)] = 286367, + [SMALL_STATE(9249)] = 286382, + [SMALL_STATE(9250)] = 286401, + [SMALL_STATE(9251)] = 286420, + [SMALL_STATE(9252)] = 286435, + [SMALL_STATE(9253)] = 286450, + [SMALL_STATE(9254)] = 286467, + [SMALL_STATE(9255)] = 286486, + [SMALL_STATE(9256)] = 286501, + [SMALL_STATE(9257)] = 286516, + [SMALL_STATE(9258)] = 286535, + [SMALL_STATE(9259)] = 286550, + [SMALL_STATE(9260)] = 286569, + [SMALL_STATE(9261)] = 286582, + [SMALL_STATE(9262)] = 286601, + [SMALL_STATE(9263)] = 286620, + [SMALL_STATE(9264)] = 286637, + [SMALL_STATE(9265)] = 286654, + [SMALL_STATE(9266)] = 286669, + [SMALL_STATE(9267)] = 286688, + [SMALL_STATE(9268)] = 286707, + [SMALL_STATE(9269)] = 286726, + [SMALL_STATE(9270)] = 286745, + [SMALL_STATE(9271)] = 286764, + [SMALL_STATE(9272)] = 286779, + [SMALL_STATE(9273)] = 286794, + [SMALL_STATE(9274)] = 286809, + [SMALL_STATE(9275)] = 286826, + [SMALL_STATE(9276)] = 286843, + [SMALL_STATE(9277)] = 286860, + [SMALL_STATE(9278)] = 286875, + [SMALL_STATE(9279)] = 286890, + [SMALL_STATE(9280)] = 286905, + [SMALL_STATE(9281)] = 286918, + [SMALL_STATE(9282)] = 286935, + [SMALL_STATE(9283)] = 286950, + [SMALL_STATE(9284)] = 286967, + [SMALL_STATE(9285)] = 286982, + [SMALL_STATE(9286)] = 286995, + [SMALL_STATE(9287)] = 287014, + [SMALL_STATE(9288)] = 287033, + [SMALL_STATE(9289)] = 287050, + [SMALL_STATE(9290)] = 287065, + [SMALL_STATE(9291)] = 287080, + [SMALL_STATE(9292)] = 287099, + [SMALL_STATE(9293)] = 287114, + [SMALL_STATE(9294)] = 287131, + [SMALL_STATE(9295)] = 287150, + [SMALL_STATE(9296)] = 287165, + [SMALL_STATE(9297)] = 287178, + [SMALL_STATE(9298)] = 287195, + [SMALL_STATE(9299)] = 287212, + [SMALL_STATE(9300)] = 287231, + [SMALL_STATE(9301)] = 287250, + [SMALL_STATE(9302)] = 287265, + [SMALL_STATE(9303)] = 287278, + [SMALL_STATE(9304)] = 287295, + [SMALL_STATE(9305)] = 287312, + [SMALL_STATE(9306)] = 287329, + [SMALL_STATE(9307)] = 287346, + [SMALL_STATE(9308)] = 287361, + [SMALL_STATE(9309)] = 287380, + [SMALL_STATE(9310)] = 287399, + [SMALL_STATE(9311)] = 287414, + [SMALL_STATE(9312)] = 287427, + [SMALL_STATE(9313)] = 287444, + [SMALL_STATE(9314)] = 287459, + [SMALL_STATE(9315)] = 287474, + [SMALL_STATE(9316)] = 287491, + [SMALL_STATE(9317)] = 287510, + [SMALL_STATE(9318)] = 287525, + [SMALL_STATE(9319)] = 287544, + [SMALL_STATE(9320)] = 287563, + [SMALL_STATE(9321)] = 287578, + [SMALL_STATE(9322)] = 287597, + [SMALL_STATE(9323)] = 287610, + [SMALL_STATE(9324)] = 287625, + [SMALL_STATE(9325)] = 287642, + [SMALL_STATE(9326)] = 287657, + [SMALL_STATE(9327)] = 287674, + [SMALL_STATE(9328)] = 287689, + [SMALL_STATE(9329)] = 287708, + [SMALL_STATE(9330)] = 287727, + [SMALL_STATE(9331)] = 287742, + [SMALL_STATE(9332)] = 287755, + [SMALL_STATE(9333)] = 287772, + [SMALL_STATE(9334)] = 287787, + [SMALL_STATE(9335)] = 287804, + [SMALL_STATE(9336)] = 287821, + [SMALL_STATE(9337)] = 287836, + [SMALL_STATE(9338)] = 287855, + [SMALL_STATE(9339)] = 287874, + [SMALL_STATE(9340)] = 287893, + [SMALL_STATE(9341)] = 287908, + [SMALL_STATE(9342)] = 287921, + [SMALL_STATE(9343)] = 287938, + [SMALL_STATE(9344)] = 287957, + [SMALL_STATE(9345)] = 287974, + [SMALL_STATE(9346)] = 287989, + [SMALL_STATE(9347)] = 288008, + [SMALL_STATE(9348)] = 288027, + [SMALL_STATE(9349)] = 288046, + [SMALL_STATE(9350)] = 288059, + [SMALL_STATE(9351)] = 288076, + [SMALL_STATE(9352)] = 288091, + [SMALL_STATE(9353)] = 288108, + [SMALL_STATE(9354)] = 288127, + [SMALL_STATE(9355)] = 288142, + [SMALL_STATE(9356)] = 288161, + [SMALL_STATE(9357)] = 288180, + [SMALL_STATE(9358)] = 288193, + [SMALL_STATE(9359)] = 288210, + [SMALL_STATE(9360)] = 288227, + [SMALL_STATE(9361)] = 288246, + [SMALL_STATE(9362)] = 288263, + [SMALL_STATE(9363)] = 288278, + [SMALL_STATE(9364)] = 288293, + [SMALL_STATE(9365)] = 288312, + [SMALL_STATE(9366)] = 288331, + [SMALL_STATE(9367)] = 288344, + [SMALL_STATE(9368)] = 288361, + [SMALL_STATE(9369)] = 288378, + [SMALL_STATE(9370)] = 288393, + [SMALL_STATE(9371)] = 288410, + [SMALL_STATE(9372)] = 288429, + [SMALL_STATE(9373)] = 288444, + [SMALL_STATE(9374)] = 288463, + [SMALL_STATE(9375)] = 288482, + [SMALL_STATE(9376)] = 288499, + [SMALL_STATE(9377)] = 288512, + [SMALL_STATE(9378)] = 288529, + [SMALL_STATE(9379)] = 288546, + [SMALL_STATE(9380)] = 288563, + [SMALL_STATE(9381)] = 288582, + [SMALL_STATE(9382)] = 288601, + [SMALL_STATE(9383)] = 288614, + [SMALL_STATE(9384)] = 288631, + [SMALL_STATE(9385)] = 288648, + [SMALL_STATE(9386)] = 288667, + [SMALL_STATE(9387)] = 288686, + [SMALL_STATE(9388)] = 288699, + [SMALL_STATE(9389)] = 288716, + [SMALL_STATE(9390)] = 288733, + [SMALL_STATE(9391)] = 288746, + [SMALL_STATE(9392)] = 288763, + [SMALL_STATE(9393)] = 288780, + [SMALL_STATE(9394)] = 288795, + [SMALL_STATE(9395)] = 288808, + [SMALL_STATE(9396)] = 288825, + [SMALL_STATE(9397)] = 288842, + [SMALL_STATE(9398)] = 288855, + [SMALL_STATE(9399)] = 288872, + [SMALL_STATE(9400)] = 288889, + [SMALL_STATE(9401)] = 288904, + [SMALL_STATE(9402)] = 288917, + [SMALL_STATE(9403)] = 288934, + [SMALL_STATE(9404)] = 288951, + [SMALL_STATE(9405)] = 288964, + [SMALL_STATE(9406)] = 288977, + [SMALL_STATE(9407)] = 288994, + [SMALL_STATE(9408)] = 289011, + [SMALL_STATE(9409)] = 289024, + [SMALL_STATE(9410)] = 289041, + [SMALL_STATE(9411)] = 289058, + [SMALL_STATE(9412)] = 289073, + [SMALL_STATE(9413)] = 289086, + [SMALL_STATE(9414)] = 289103, + [SMALL_STATE(9415)] = 289120, + [SMALL_STATE(9416)] = 289133, + [SMALL_STATE(9417)] = 289150, + [SMALL_STATE(9418)] = 289167, + [SMALL_STATE(9419)] = 289180, + [SMALL_STATE(9420)] = 289197, + [SMALL_STATE(9421)] = 289214, + [SMALL_STATE(9422)] = 289227, + [SMALL_STATE(9423)] = 289244, + [SMALL_STATE(9424)] = 289261, + [SMALL_STATE(9425)] = 289278, + [SMALL_STATE(9426)] = 289291, + [SMALL_STATE(9427)] = 289308, + [SMALL_STATE(9428)] = 289325, + [SMALL_STATE(9429)] = 289340, + [SMALL_STATE(9430)] = 289353, + [SMALL_STATE(9431)] = 289370, + [SMALL_STATE(9432)] = 289387, + [SMALL_STATE(9433)] = 289400, + [SMALL_STATE(9434)] = 289417, + [SMALL_STATE(9435)] = 289434, + [SMALL_STATE(9436)] = 289447, + [SMALL_STATE(9437)] = 289464, + [SMALL_STATE(9438)] = 289481, + [SMALL_STATE(9439)] = 289494, + [SMALL_STATE(9440)] = 289511, + [SMALL_STATE(9441)] = 289528, + [SMALL_STATE(9442)] = 289541, + [SMALL_STATE(9443)] = 289558, + [SMALL_STATE(9444)] = 289575, + [SMALL_STATE(9445)] = 289588, + [SMALL_STATE(9446)] = 289605, + [SMALL_STATE(9447)] = 289622, + [SMALL_STATE(9448)] = 289635, + [SMALL_STATE(9449)] = 289652, + [SMALL_STATE(9450)] = 289669, + [SMALL_STATE(9451)] = 289682, + [SMALL_STATE(9452)] = 289699, + [SMALL_STATE(9453)] = 289716, + [SMALL_STATE(9454)] = 289729, + [SMALL_STATE(9455)] = 289746, + [SMALL_STATE(9456)] = 289763, + [SMALL_STATE(9457)] = 289776, + [SMALL_STATE(9458)] = 289793, + [SMALL_STATE(9459)] = 289810, + [SMALL_STATE(9460)] = 289823, + [SMALL_STATE(9461)] = 289840, + [SMALL_STATE(9462)] = 289857, + [SMALL_STATE(9463)] = 289870, + [SMALL_STATE(9464)] = 289887, + [SMALL_STATE(9465)] = 289904, + [SMALL_STATE(9466)] = 289921, + [SMALL_STATE(9467)] = 289934, + [SMALL_STATE(9468)] = 289951, + [SMALL_STATE(9469)] = 289968, + [SMALL_STATE(9470)] = 289987, + [SMALL_STATE(9471)] = 290000, + [SMALL_STATE(9472)] = 290017, + [SMALL_STATE(9473)] = 290034, + [SMALL_STATE(9474)] = 290049, + [SMALL_STATE(9475)] = 290062, + [SMALL_STATE(9476)] = 290079, + [SMALL_STATE(9477)] = 290096, + [SMALL_STATE(9478)] = 290111, + [SMALL_STATE(9479)] = 290124, + [SMALL_STATE(9480)] = 290141, + [SMALL_STATE(9481)] = 290158, + [SMALL_STATE(9482)] = 290171, + [SMALL_STATE(9483)] = 290188, + [SMALL_STATE(9484)] = 290205, + [SMALL_STATE(9485)] = 290218, + [SMALL_STATE(9486)] = 290235, + [SMALL_STATE(9487)] = 290252, + [SMALL_STATE(9488)] = 290265, + [SMALL_STATE(9489)] = 290282, + [SMALL_STATE(9490)] = 290299, + [SMALL_STATE(9491)] = 290318, + [SMALL_STATE(9492)] = 290331, + [SMALL_STATE(9493)] = 290348, + [SMALL_STATE(9494)] = 290365, + [SMALL_STATE(9495)] = 290378, + [SMALL_STATE(9496)] = 290395, + [SMALL_STATE(9497)] = 290412, + [SMALL_STATE(9498)] = 290425, + [SMALL_STATE(9499)] = 290442, + [SMALL_STATE(9500)] = 290459, + [SMALL_STATE(9501)] = 290472, + [SMALL_STATE(9502)] = 290489, + [SMALL_STATE(9503)] = 290506, + [SMALL_STATE(9504)] = 290519, + [SMALL_STATE(9505)] = 290536, + [SMALL_STATE(9506)] = 290553, + [SMALL_STATE(9507)] = 290566, + [SMALL_STATE(9508)] = 290583, + [SMALL_STATE(9509)] = 290600, + [SMALL_STATE(9510)] = 290619, + [SMALL_STATE(9511)] = 290632, + [SMALL_STATE(9512)] = 290649, + [SMALL_STATE(9513)] = 290666, + [SMALL_STATE(9514)] = 290679, + [SMALL_STATE(9515)] = 290696, + [SMALL_STATE(9516)] = 290713, + [SMALL_STATE(9517)] = 290726, + [SMALL_STATE(9518)] = 290743, + [SMALL_STATE(9519)] = 290760, + [SMALL_STATE(9520)] = 290773, + [SMALL_STATE(9521)] = 290790, + [SMALL_STATE(9522)] = 290807, + [SMALL_STATE(9523)] = 290822, + [SMALL_STATE(9524)] = 290835, + [SMALL_STATE(9525)] = 290852, + [SMALL_STATE(9526)] = 290869, + [SMALL_STATE(9527)] = 290888, + [SMALL_STATE(9528)] = 290901, + [SMALL_STATE(9529)] = 290918, + [SMALL_STATE(9530)] = 290935, + [SMALL_STATE(9531)] = 290948, + [SMALL_STATE(9532)] = 290965, + [SMALL_STATE(9533)] = 290982, + [SMALL_STATE(9534)] = 290999, + [SMALL_STATE(9535)] = 291016, + [SMALL_STATE(9536)] = 291033, + [SMALL_STATE(9537)] = 291050, + [SMALL_STATE(9538)] = 291067, + [SMALL_STATE(9539)] = 291084, + [SMALL_STATE(9540)] = 291101, + [SMALL_STATE(9541)] = 291118, + [SMALL_STATE(9542)] = 291135, + [SMALL_STATE(9543)] = 291152, + [SMALL_STATE(9544)] = 291169, + [SMALL_STATE(9545)] = 291186, + [SMALL_STATE(9546)] = 291203, + [SMALL_STATE(9547)] = 291220, + [SMALL_STATE(9548)] = 291237, + [SMALL_STATE(9549)] = 291254, + [SMALL_STATE(9550)] = 291271, + [SMALL_STATE(9551)] = 291288, + [SMALL_STATE(9552)] = 291305, + [SMALL_STATE(9553)] = 291322, + [SMALL_STATE(9554)] = 291339, + [SMALL_STATE(9555)] = 291356, + [SMALL_STATE(9556)] = 291373, + [SMALL_STATE(9557)] = 291390, + [SMALL_STATE(9558)] = 291407, + [SMALL_STATE(9559)] = 291424, + [SMALL_STATE(9560)] = 291441, + [SMALL_STATE(9561)] = 291458, + [SMALL_STATE(9562)] = 291475, + [SMALL_STATE(9563)] = 291492, + [SMALL_STATE(9564)] = 291509, + [SMALL_STATE(9565)] = 291526, + [SMALL_STATE(9566)] = 291543, + [SMALL_STATE(9567)] = 291560, + [SMALL_STATE(9568)] = 291577, + [SMALL_STATE(9569)] = 291594, + [SMALL_STATE(9570)] = 291609, + [SMALL_STATE(9571)] = 291624, + [SMALL_STATE(9572)] = 291641, + [SMALL_STATE(9573)] = 291656, + [SMALL_STATE(9574)] = 291671, + [SMALL_STATE(9575)] = 291686, + [SMALL_STATE(9576)] = 291701, + [SMALL_STATE(9577)] = 291720, + [SMALL_STATE(9578)] = 291735, + [SMALL_STATE(9579)] = 291750, + [SMALL_STATE(9580)] = 291765, + [SMALL_STATE(9581)] = 291780, + [SMALL_STATE(9582)] = 291795, + [SMALL_STATE(9583)] = 291810, + [SMALL_STATE(9584)] = 291825, + [SMALL_STATE(9585)] = 291842, + [SMALL_STATE(9586)] = 291857, + [SMALL_STATE(9587)] = 291874, + [SMALL_STATE(9588)] = 291889, + [SMALL_STATE(9589)] = 291908, + [SMALL_STATE(9590)] = 291921, + [SMALL_STATE(9591)] = 291938, + [SMALL_STATE(9592)] = 291953, + [SMALL_STATE(9593)] = 291968, + [SMALL_STATE(9594)] = 291983, + [SMALL_STATE(9595)] = 291998, + [SMALL_STATE(9596)] = 292017, + [SMALL_STATE(9597)] = 292032, + [SMALL_STATE(9598)] = 292047, + [SMALL_STATE(9599)] = 292066, + [SMALL_STATE(9600)] = 292081, + [SMALL_STATE(9601)] = 292100, + [SMALL_STATE(9602)] = 292119, + [SMALL_STATE(9603)] = 292138, + [SMALL_STATE(9604)] = 292157, + [SMALL_STATE(9605)] = 292174, + [SMALL_STATE(9606)] = 292193, + [SMALL_STATE(9607)] = 292208, + [SMALL_STATE(9608)] = 292223, + [SMALL_STATE(9609)] = 292236, + [SMALL_STATE(9610)] = 292253, + [SMALL_STATE(9611)] = 292268, + [SMALL_STATE(9612)] = 292283, + [SMALL_STATE(9613)] = 292296, + [SMALL_STATE(9614)] = 292311, + [SMALL_STATE(9615)] = 292326, + [SMALL_STATE(9616)] = 292341, + [SMALL_STATE(9617)] = 292358, + [SMALL_STATE(9618)] = 292377, + [SMALL_STATE(9619)] = 292394, + [SMALL_STATE(9620)] = 292411, + [SMALL_STATE(9621)] = 292426, + [SMALL_STATE(9622)] = 292445, + [SMALL_STATE(9623)] = 292460, + [SMALL_STATE(9624)] = 292475, + [SMALL_STATE(9625)] = 292490, + [SMALL_STATE(9626)] = 292505, + [SMALL_STATE(9627)] = 292520, + [SMALL_STATE(9628)] = 292537, + [SMALL_STATE(9629)] = 292554, + [SMALL_STATE(9630)] = 292569, + [SMALL_STATE(9631)] = 292584, + [SMALL_STATE(9632)] = 292599, + [SMALL_STATE(9633)] = 292614, + [SMALL_STATE(9634)] = 292629, + [SMALL_STATE(9635)] = 292644, + [SMALL_STATE(9636)] = 292663, + [SMALL_STATE(9637)] = 292678, + [SMALL_STATE(9638)] = 292693, + [SMALL_STATE(9639)] = 292710, + [SMALL_STATE(9640)] = 292727, + [SMALL_STATE(9641)] = 292742, + [SMALL_STATE(9642)] = 292757, + [SMALL_STATE(9643)] = 292774, + [SMALL_STATE(9644)] = 292789, + [SMALL_STATE(9645)] = 292808, + [SMALL_STATE(9646)] = 292823, + [SMALL_STATE(9647)] = 292838, + [SMALL_STATE(9648)] = 292853, + [SMALL_STATE(9649)] = 292872, + [SMALL_STATE(9650)] = 292891, + [SMALL_STATE(9651)] = 292910, + [SMALL_STATE(9652)] = 292927, + [SMALL_STATE(9653)] = 292944, + [SMALL_STATE(9654)] = 292963, + [SMALL_STATE(9655)] = 292978, + [SMALL_STATE(9656)] = 292993, + [SMALL_STATE(9657)] = 293010, + [SMALL_STATE(9658)] = 293025, + [SMALL_STATE(9659)] = 293042, + [SMALL_STATE(9660)] = 293057, + [SMALL_STATE(9661)] = 293074, + [SMALL_STATE(9662)] = 293093, + [SMALL_STATE(9663)] = 293110, + [SMALL_STATE(9664)] = 293125, + [SMALL_STATE(9665)] = 293142, + [SMALL_STATE(9666)] = 293157, + [SMALL_STATE(9667)] = 293172, + [SMALL_STATE(9668)] = 293187, + [SMALL_STATE(9669)] = 293202, + [SMALL_STATE(9670)] = 293217, + [SMALL_STATE(9671)] = 293230, + [SMALL_STATE(9672)] = 293245, + [SMALL_STATE(9673)] = 293264, + [SMALL_STATE(9674)] = 293283, + [SMALL_STATE(9675)] = 293302, + [SMALL_STATE(9676)] = 293321, + [SMALL_STATE(9677)] = 293336, + [SMALL_STATE(9678)] = 293351, + [SMALL_STATE(9679)] = 293370, + [SMALL_STATE(9680)] = 293389, + [SMALL_STATE(9681)] = 293404, + [SMALL_STATE(9682)] = 293419, + [SMALL_STATE(9683)] = 293432, + [SMALL_STATE(9684)] = 293451, + [SMALL_STATE(9685)] = 293468, + [SMALL_STATE(9686)] = 293485, + [SMALL_STATE(9687)] = 293500, + [SMALL_STATE(9688)] = 293515, + [SMALL_STATE(9689)] = 293532, + [SMALL_STATE(9690)] = 293549, + [SMALL_STATE(9691)] = 293568, + [SMALL_STATE(9692)] = 293583, + [SMALL_STATE(9693)] = 293598, + [SMALL_STATE(9694)] = 293613, + [SMALL_STATE(9695)] = 293628, + [SMALL_STATE(9696)] = 293643, + [SMALL_STATE(9697)] = 293662, + [SMALL_STATE(9698)] = 293677, + [SMALL_STATE(9699)] = 293692, + [SMALL_STATE(9700)] = 293707, + [SMALL_STATE(9701)] = 293722, + [SMALL_STATE(9702)] = 293741, + [SMALL_STATE(9703)] = 293756, + [SMALL_STATE(9704)] = 293775, + [SMALL_STATE(9705)] = 293794, + [SMALL_STATE(9706)] = 293809, + [SMALL_STATE(9707)] = 293826, + [SMALL_STATE(9708)] = 293845, + [SMALL_STATE(9709)] = 293864, + [SMALL_STATE(9710)] = 293879, + [SMALL_STATE(9711)] = 293894, + [SMALL_STATE(9712)] = 293909, + [SMALL_STATE(9713)] = 293924, + [SMALL_STATE(9714)] = 293939, + [SMALL_STATE(9715)] = 293954, + [SMALL_STATE(9716)] = 293971, + [SMALL_STATE(9717)] = 293990, + [SMALL_STATE(9718)] = 294009, + [SMALL_STATE(9719)] = 294022, + [SMALL_STATE(9720)] = 294041, + [SMALL_STATE(9721)] = 294056, + [SMALL_STATE(9722)] = 294073, + [SMALL_STATE(9723)] = 294092, + [SMALL_STATE(9724)] = 294111, + [SMALL_STATE(9725)] = 294126, + [SMALL_STATE(9726)] = 294140, + [SMALL_STATE(9727)] = 294156, + [SMALL_STATE(9728)] = 294172, + [SMALL_STATE(9729)] = 294188, + [SMALL_STATE(9730)] = 294204, + [SMALL_STATE(9731)] = 294220, + [SMALL_STATE(9732)] = 294234, + [SMALL_STATE(9733)] = 294250, + [SMALL_STATE(9734)] = 294266, + [SMALL_STATE(9735)] = 294282, + [SMALL_STATE(9736)] = 294298, + [SMALL_STATE(9737)] = 294312, + [SMALL_STATE(9738)] = 294326, + [SMALL_STATE(9739)] = 294340, + [SMALL_STATE(9740)] = 294356, + [SMALL_STATE(9741)] = 294372, + [SMALL_STATE(9742)] = 294386, + [SMALL_STATE(9743)] = 294402, + [SMALL_STATE(9744)] = 294418, + [SMALL_STATE(9745)] = 294432, + [SMALL_STATE(9746)] = 294448, + [SMALL_STATE(9747)] = 294462, + [SMALL_STATE(9748)] = 294478, + [SMALL_STATE(9749)] = 294492, + [SMALL_STATE(9750)] = 294508, + [SMALL_STATE(9751)] = 294524, + [SMALL_STATE(9752)] = 294538, + [SMALL_STATE(9753)] = 294554, + [SMALL_STATE(9754)] = 294570, + [SMALL_STATE(9755)] = 294586, + [SMALL_STATE(9756)] = 294600, + [SMALL_STATE(9757)] = 294616, + [SMALL_STATE(9758)] = 294632, + [SMALL_STATE(9759)] = 294648, + [SMALL_STATE(9760)] = 294664, + [SMALL_STATE(9761)] = 294678, + [SMALL_STATE(9762)] = 294694, + [SMALL_STATE(9763)] = 294710, + [SMALL_STATE(9764)] = 294726, + [SMALL_STATE(9765)] = 294740, + [SMALL_STATE(9766)] = 294756, + [SMALL_STATE(9767)] = 294772, + [SMALL_STATE(9768)] = 294786, + [SMALL_STATE(9769)] = 294802, + [SMALL_STATE(9770)] = 294818, + [SMALL_STATE(9771)] = 294832, + [SMALL_STATE(9772)] = 294848, + [SMALL_STATE(9773)] = 294864, + [SMALL_STATE(9774)] = 294880, + [SMALL_STATE(9775)] = 294894, + [SMALL_STATE(9776)] = 294910, + [SMALL_STATE(9777)] = 294926, + [SMALL_STATE(9778)] = 294942, + [SMALL_STATE(9779)] = 294958, + [SMALL_STATE(9780)] = 294972, + [SMALL_STATE(9781)] = 294986, + [SMALL_STATE(9782)] = 295002, + [SMALL_STATE(9783)] = 295018, + [SMALL_STATE(9784)] = 295032, + [SMALL_STATE(9785)] = 295048, + [SMALL_STATE(9786)] = 295062, + [SMALL_STATE(9787)] = 295078, + [SMALL_STATE(9788)] = 295094, + [SMALL_STATE(9789)] = 295110, + [SMALL_STATE(9790)] = 295124, + [SMALL_STATE(9791)] = 295138, + [SMALL_STATE(9792)] = 295154, + [SMALL_STATE(9793)] = 295166, + [SMALL_STATE(9794)] = 295182, + [SMALL_STATE(9795)] = 295196, + [SMALL_STATE(9796)] = 295212, + [SMALL_STATE(9797)] = 295224, + [SMALL_STATE(9798)] = 295240, + [SMALL_STATE(9799)] = 295254, + [SMALL_STATE(9800)] = 295270, + [SMALL_STATE(9801)] = 295282, + [SMALL_STATE(9802)] = 295298, + [SMALL_STATE(9803)] = 295314, + [SMALL_STATE(9804)] = 295330, + [SMALL_STATE(9805)] = 295346, + [SMALL_STATE(9806)] = 295358, + [SMALL_STATE(9807)] = 295372, + [SMALL_STATE(9808)] = 295386, + [SMALL_STATE(9809)] = 295402, + [SMALL_STATE(9810)] = 295418, + [SMALL_STATE(9811)] = 295434, + [SMALL_STATE(9812)] = 295450, + [SMALL_STATE(9813)] = 295466, + [SMALL_STATE(9814)] = 295482, + [SMALL_STATE(9815)] = 295498, + [SMALL_STATE(9816)] = 295514, + [SMALL_STATE(9817)] = 295530, + [SMALL_STATE(9818)] = 295546, + [SMALL_STATE(9819)] = 295562, + [SMALL_STATE(9820)] = 295576, + [SMALL_STATE(9821)] = 295592, + [SMALL_STATE(9822)] = 295608, + [SMALL_STATE(9823)] = 295624, + [SMALL_STATE(9824)] = 295640, + [SMALL_STATE(9825)] = 295656, + [SMALL_STATE(9826)] = 295672, + [SMALL_STATE(9827)] = 295688, + [SMALL_STATE(9828)] = 295704, + [SMALL_STATE(9829)] = 295720, + [SMALL_STATE(9830)] = 295736, + [SMALL_STATE(9831)] = 295750, + [SMALL_STATE(9832)] = 295766, + [SMALL_STATE(9833)] = 295780, + [SMALL_STATE(9834)] = 295796, + [SMALL_STATE(9835)] = 295812, + [SMALL_STATE(9836)] = 295828, + [SMALL_STATE(9837)] = 295842, + [SMALL_STATE(9838)] = 295858, + [SMALL_STATE(9839)] = 295874, + [SMALL_STATE(9840)] = 295890, + [SMALL_STATE(9841)] = 295906, + [SMALL_STATE(9842)] = 295922, + [SMALL_STATE(9843)] = 295938, + [SMALL_STATE(9844)] = 295954, + [SMALL_STATE(9845)] = 295968, + [SMALL_STATE(9846)] = 295984, + [SMALL_STATE(9847)] = 295998, + [SMALL_STATE(9848)] = 296012, + [SMALL_STATE(9849)] = 296028, + [SMALL_STATE(9850)] = 296044, + [SMALL_STATE(9851)] = 296056, + [SMALL_STATE(9852)] = 296072, + [SMALL_STATE(9853)] = 296088, + [SMALL_STATE(9854)] = 296104, + [SMALL_STATE(9855)] = 296120, + [SMALL_STATE(9856)] = 296136, + [SMALL_STATE(9857)] = 296152, + [SMALL_STATE(9858)] = 296166, + [SMALL_STATE(9859)] = 296182, + [SMALL_STATE(9860)] = 296194, + [SMALL_STATE(9861)] = 296210, + [SMALL_STATE(9862)] = 296226, + [SMALL_STATE(9863)] = 296238, + [SMALL_STATE(9864)] = 296250, + [SMALL_STATE(9865)] = 296262, + [SMALL_STATE(9866)] = 296278, + [SMALL_STATE(9867)] = 296294, + [SMALL_STATE(9868)] = 296310, + [SMALL_STATE(9869)] = 296326, + [SMALL_STATE(9870)] = 296338, + [SMALL_STATE(9871)] = 296354, + [SMALL_STATE(9872)] = 296370, + [SMALL_STATE(9873)] = 296386, + [SMALL_STATE(9874)] = 296402, + [SMALL_STATE(9875)] = 296418, + [SMALL_STATE(9876)] = 296430, + [SMALL_STATE(9877)] = 296444, + [SMALL_STATE(9878)] = 296460, + [SMALL_STATE(9879)] = 296472, + [SMALL_STATE(9880)] = 296488, + [SMALL_STATE(9881)] = 296502, + [SMALL_STATE(9882)] = 296516, + [SMALL_STATE(9883)] = 296532, + [SMALL_STATE(9884)] = 296548, + [SMALL_STATE(9885)] = 296562, + [SMALL_STATE(9886)] = 296578, + [SMALL_STATE(9887)] = 296594, + [SMALL_STATE(9888)] = 296606, + [SMALL_STATE(9889)] = 296622, + [SMALL_STATE(9890)] = 296638, + [SMALL_STATE(9891)] = 296650, + [SMALL_STATE(9892)] = 296664, + [SMALL_STATE(9893)] = 296680, + [SMALL_STATE(9894)] = 296696, + [SMALL_STATE(9895)] = 296712, + [SMALL_STATE(9896)] = 296728, + [SMALL_STATE(9897)] = 296744, + [SMALL_STATE(9898)] = 296760, + [SMALL_STATE(9899)] = 296776, + [SMALL_STATE(9900)] = 296792, + [SMALL_STATE(9901)] = 296806, + [SMALL_STATE(9902)] = 296820, + [SMALL_STATE(9903)] = 296836, + [SMALL_STATE(9904)] = 296850, + [SMALL_STATE(9905)] = 296866, + [SMALL_STATE(9906)] = 296882, + [SMALL_STATE(9907)] = 296898, + [SMALL_STATE(9908)] = 296914, + [SMALL_STATE(9909)] = 296930, + [SMALL_STATE(9910)] = 296946, + [SMALL_STATE(9911)] = 296960, + [SMALL_STATE(9912)] = 296976, + [SMALL_STATE(9913)] = 296992, + [SMALL_STATE(9914)] = 297008, + [SMALL_STATE(9915)] = 297024, + [SMALL_STATE(9916)] = 297040, + [SMALL_STATE(9917)] = 297056, + [SMALL_STATE(9918)] = 297072, + [SMALL_STATE(9919)] = 297088, + [SMALL_STATE(9920)] = 297104, + [SMALL_STATE(9921)] = 297120, + [SMALL_STATE(9922)] = 297134, + [SMALL_STATE(9923)] = 297150, + [SMALL_STATE(9924)] = 297166, + [SMALL_STATE(9925)] = 297180, + [SMALL_STATE(9926)] = 297196, + [SMALL_STATE(9927)] = 297212, + [SMALL_STATE(9928)] = 297228, + [SMALL_STATE(9929)] = 297244, + [SMALL_STATE(9930)] = 297260, + [SMALL_STATE(9931)] = 297276, + [SMALL_STATE(9932)] = 297292, + [SMALL_STATE(9933)] = 297306, + [SMALL_STATE(9934)] = 297322, + [SMALL_STATE(9935)] = 297338, + [SMALL_STATE(9936)] = 297354, + [SMALL_STATE(9937)] = 297370, + [SMALL_STATE(9938)] = 297386, + [SMALL_STATE(9939)] = 297400, + [SMALL_STATE(9940)] = 297416, + [SMALL_STATE(9941)] = 297432, + [SMALL_STATE(9942)] = 297446, + [SMALL_STATE(9943)] = 297462, + [SMALL_STATE(9944)] = 297478, + [SMALL_STATE(9945)] = 297494, + [SMALL_STATE(9946)] = 297510, + [SMALL_STATE(9947)] = 297526, + [SMALL_STATE(9948)] = 297542, + [SMALL_STATE(9949)] = 297558, + [SMALL_STATE(9950)] = 297574, + [SMALL_STATE(9951)] = 297590, + [SMALL_STATE(9952)] = 297606, + [SMALL_STATE(9953)] = 297622, + [SMALL_STATE(9954)] = 297638, + [SMALL_STATE(9955)] = 297652, + [SMALL_STATE(9956)] = 297668, + [SMALL_STATE(9957)] = 297684, + [SMALL_STATE(9958)] = 297700, + [SMALL_STATE(9959)] = 297716, + [SMALL_STATE(9960)] = 297732, + [SMALL_STATE(9961)] = 297748, + [SMALL_STATE(9962)] = 297764, + [SMALL_STATE(9963)] = 297780, + [SMALL_STATE(9964)] = 297796, + [SMALL_STATE(9965)] = 297812, + [SMALL_STATE(9966)] = 297826, + [SMALL_STATE(9967)] = 297840, + [SMALL_STATE(9968)] = 297856, + [SMALL_STATE(9969)] = 297872, + [SMALL_STATE(9970)] = 297888, + [SMALL_STATE(9971)] = 297904, + [SMALL_STATE(9972)] = 297916, + [SMALL_STATE(9973)] = 297932, + [SMALL_STATE(9974)] = 297948, + [SMALL_STATE(9975)] = 297964, + [SMALL_STATE(9976)] = 297980, + [SMALL_STATE(9977)] = 297994, + [SMALL_STATE(9978)] = 298010, + [SMALL_STATE(9979)] = 298026, + [SMALL_STATE(9980)] = 298039, + [SMALL_STATE(9981)] = 298052, + [SMALL_STATE(9982)] = 298065, + [SMALL_STATE(9983)] = 298078, + [SMALL_STATE(9984)] = 298091, + [SMALL_STATE(9985)] = 298104, + [SMALL_STATE(9986)] = 298117, + [SMALL_STATE(9987)] = 298130, + [SMALL_STATE(9988)] = 298143, + [SMALL_STATE(9989)] = 298156, + [SMALL_STATE(9990)] = 298169, + [SMALL_STATE(9991)] = 298182, + [SMALL_STATE(9992)] = 298195, + [SMALL_STATE(9993)] = 298208, + [SMALL_STATE(9994)] = 298221, + [SMALL_STATE(9995)] = 298234, + [SMALL_STATE(9996)] = 298247, + [SMALL_STATE(9997)] = 298260, + [SMALL_STATE(9998)] = 298273, + [SMALL_STATE(9999)] = 298286, + [SMALL_STATE(10000)] = 298299, + [SMALL_STATE(10001)] = 298312, + [SMALL_STATE(10002)] = 298325, + [SMALL_STATE(10003)] = 298338, + [SMALL_STATE(10004)] = 298351, + [SMALL_STATE(10005)] = 298364, + [SMALL_STATE(10006)] = 298377, + [SMALL_STATE(10007)] = 298390, + [SMALL_STATE(10008)] = 298403, + [SMALL_STATE(10009)] = 298416, + [SMALL_STATE(10010)] = 298429, + [SMALL_STATE(10011)] = 298442, + [SMALL_STATE(10012)] = 298455, + [SMALL_STATE(10013)] = 298468, + [SMALL_STATE(10014)] = 298481, + [SMALL_STATE(10015)] = 298494, + [SMALL_STATE(10016)] = 298507, + [SMALL_STATE(10017)] = 298520, + [SMALL_STATE(10018)] = 298533, + [SMALL_STATE(10019)] = 298544, + [SMALL_STATE(10020)] = 298557, + [SMALL_STATE(10021)] = 298570, + [SMALL_STATE(10022)] = 298583, + [SMALL_STATE(10023)] = 298596, + [SMALL_STATE(10024)] = 298609, + [SMALL_STATE(10025)] = 298622, + [SMALL_STATE(10026)] = 298635, + [SMALL_STATE(10027)] = 298648, + [SMALL_STATE(10028)] = 298661, + [SMALL_STATE(10029)] = 298674, + [SMALL_STATE(10030)] = 298687, + [SMALL_STATE(10031)] = 298700, + [SMALL_STATE(10032)] = 298713, + [SMALL_STATE(10033)] = 298726, + [SMALL_STATE(10034)] = 298739, + [SMALL_STATE(10035)] = 298752, + [SMALL_STATE(10036)] = 298765, + [SMALL_STATE(10037)] = 298778, + [SMALL_STATE(10038)] = 298791, + [SMALL_STATE(10039)] = 298804, + [SMALL_STATE(10040)] = 298815, + [SMALL_STATE(10041)] = 298828, + [SMALL_STATE(10042)] = 298841, + [SMALL_STATE(10043)] = 298854, + [SMALL_STATE(10044)] = 298865, + [SMALL_STATE(10045)] = 298878, + [SMALL_STATE(10046)] = 298891, + [SMALL_STATE(10047)] = 298904, + [SMALL_STATE(10048)] = 298917, + [SMALL_STATE(10049)] = 298930, + [SMALL_STATE(10050)] = 298943, + [SMALL_STATE(10051)] = 298956, + [SMALL_STATE(10052)] = 298969, + [SMALL_STATE(10053)] = 298982, + [SMALL_STATE(10054)] = 298995, + [SMALL_STATE(10055)] = 299008, + [SMALL_STATE(10056)] = 299021, + [SMALL_STATE(10057)] = 299034, + [SMALL_STATE(10058)] = 299047, + [SMALL_STATE(10059)] = 299060, + [SMALL_STATE(10060)] = 299073, + [SMALL_STATE(10061)] = 299086, + [SMALL_STATE(10062)] = 299099, + [SMALL_STATE(10063)] = 299112, + [SMALL_STATE(10064)] = 299125, + [SMALL_STATE(10065)] = 299138, + [SMALL_STATE(10066)] = 299149, + [SMALL_STATE(10067)] = 299162, + [SMALL_STATE(10068)] = 299175, + [SMALL_STATE(10069)] = 299188, + [SMALL_STATE(10070)] = 299201, + [SMALL_STATE(10071)] = 299214, + [SMALL_STATE(10072)] = 299225, + [SMALL_STATE(10073)] = 299238, + [SMALL_STATE(10074)] = 299251, + [SMALL_STATE(10075)] = 299264, + [SMALL_STATE(10076)] = 299277, + [SMALL_STATE(10077)] = 299290, + [SMALL_STATE(10078)] = 299303, + [SMALL_STATE(10079)] = 299316, + [SMALL_STATE(10080)] = 299329, + [SMALL_STATE(10081)] = 299342, + [SMALL_STATE(10082)] = 299355, + [SMALL_STATE(10083)] = 299368, + [SMALL_STATE(10084)] = 299381, + [SMALL_STATE(10085)] = 299394, + [SMALL_STATE(10086)] = 299407, + [SMALL_STATE(10087)] = 299420, + [SMALL_STATE(10088)] = 299433, + [SMALL_STATE(10089)] = 299446, + [SMALL_STATE(10090)] = 299459, + [SMALL_STATE(10091)] = 299472, + [SMALL_STATE(10092)] = 299485, + [SMALL_STATE(10093)] = 299498, + [SMALL_STATE(10094)] = 299511, + [SMALL_STATE(10095)] = 299524, + [SMALL_STATE(10096)] = 299537, + [SMALL_STATE(10097)] = 299550, + [SMALL_STATE(10098)] = 299563, + [SMALL_STATE(10099)] = 299576, + [SMALL_STATE(10100)] = 299589, + [SMALL_STATE(10101)] = 299602, + [SMALL_STATE(10102)] = 299615, + [SMALL_STATE(10103)] = 299628, + [SMALL_STATE(10104)] = 299641, + [SMALL_STATE(10105)] = 299654, + [SMALL_STATE(10106)] = 299667, + [SMALL_STATE(10107)] = 299680, + [SMALL_STATE(10108)] = 299693, + [SMALL_STATE(10109)] = 299706, + [SMALL_STATE(10110)] = 299719, + [SMALL_STATE(10111)] = 299732, + [SMALL_STATE(10112)] = 299745, + [SMALL_STATE(10113)] = 299758, + [SMALL_STATE(10114)] = 299771, + [SMALL_STATE(10115)] = 299782, + [SMALL_STATE(10116)] = 299795, + [SMALL_STATE(10117)] = 299808, + [SMALL_STATE(10118)] = 299821, + [SMALL_STATE(10119)] = 299834, + [SMALL_STATE(10120)] = 299847, + [SMALL_STATE(10121)] = 299860, + [SMALL_STATE(10122)] = 299873, + [SMALL_STATE(10123)] = 299886, + [SMALL_STATE(10124)] = 299899, + [SMALL_STATE(10125)] = 299912, + [SMALL_STATE(10126)] = 299925, + [SMALL_STATE(10127)] = 299938, + [SMALL_STATE(10128)] = 299951, + [SMALL_STATE(10129)] = 299964, + [SMALL_STATE(10130)] = 299977, + [SMALL_STATE(10131)] = 299990, + [SMALL_STATE(10132)] = 300003, + [SMALL_STATE(10133)] = 300016, + [SMALL_STATE(10134)] = 300029, + [SMALL_STATE(10135)] = 300042, + [SMALL_STATE(10136)] = 300055, + [SMALL_STATE(10137)] = 300068, + [SMALL_STATE(10138)] = 300081, + [SMALL_STATE(10139)] = 300094, + [SMALL_STATE(10140)] = 300107, + [SMALL_STATE(10141)] = 300120, + [SMALL_STATE(10142)] = 300133, + [SMALL_STATE(10143)] = 300146, + [SMALL_STATE(10144)] = 300159, + [SMALL_STATE(10145)] = 300172, + [SMALL_STATE(10146)] = 300183, + [SMALL_STATE(10147)] = 300196, + [SMALL_STATE(10148)] = 300209, + [SMALL_STATE(10149)] = 300222, + [SMALL_STATE(10150)] = 300235, + [SMALL_STATE(10151)] = 300248, + [SMALL_STATE(10152)] = 300261, + [SMALL_STATE(10153)] = 300274, + [SMALL_STATE(10154)] = 300287, + [SMALL_STATE(10155)] = 300300, + [SMALL_STATE(10156)] = 300313, + [SMALL_STATE(10157)] = 300326, + [SMALL_STATE(10158)] = 300339, + [SMALL_STATE(10159)] = 300352, + [SMALL_STATE(10160)] = 300365, + [SMALL_STATE(10161)] = 300378, + [SMALL_STATE(10162)] = 300391, + [SMALL_STATE(10163)] = 300404, + [SMALL_STATE(10164)] = 300417, + [SMALL_STATE(10165)] = 300430, + [SMALL_STATE(10166)] = 300443, + [SMALL_STATE(10167)] = 300456, + [SMALL_STATE(10168)] = 300469, + [SMALL_STATE(10169)] = 300482, + [SMALL_STATE(10170)] = 300495, + [SMALL_STATE(10171)] = 300508, + [SMALL_STATE(10172)] = 300521, + [SMALL_STATE(10173)] = 300534, + [SMALL_STATE(10174)] = 300547, + [SMALL_STATE(10175)] = 300560, + [SMALL_STATE(10176)] = 300573, + [SMALL_STATE(10177)] = 300586, + [SMALL_STATE(10178)] = 300599, + [SMALL_STATE(10179)] = 300612, + [SMALL_STATE(10180)] = 300625, + [SMALL_STATE(10181)] = 300638, + [SMALL_STATE(10182)] = 300651, + [SMALL_STATE(10183)] = 300664, + [SMALL_STATE(10184)] = 300677, + [SMALL_STATE(10185)] = 300690, + [SMALL_STATE(10186)] = 300703, + [SMALL_STATE(10187)] = 300716, + [SMALL_STATE(10188)] = 300729, + [SMALL_STATE(10189)] = 300742, + [SMALL_STATE(10190)] = 300753, + [SMALL_STATE(10191)] = 300766, + [SMALL_STATE(10192)] = 300779, + [SMALL_STATE(10193)] = 300792, + [SMALL_STATE(10194)] = 300805, + [SMALL_STATE(10195)] = 300818, + [SMALL_STATE(10196)] = 300831, + [SMALL_STATE(10197)] = 300844, + [SMALL_STATE(10198)] = 300857, + [SMALL_STATE(10199)] = 300870, + [SMALL_STATE(10200)] = 300883, + [SMALL_STATE(10201)] = 300896, + [SMALL_STATE(10202)] = 300909, + [SMALL_STATE(10203)] = 300922, + [SMALL_STATE(10204)] = 300933, + [SMALL_STATE(10205)] = 300946, + [SMALL_STATE(10206)] = 300959, + [SMALL_STATE(10207)] = 300972, + [SMALL_STATE(10208)] = 300985, + [SMALL_STATE(10209)] = 300998, + [SMALL_STATE(10210)] = 301011, + [SMALL_STATE(10211)] = 301024, + [SMALL_STATE(10212)] = 301037, + [SMALL_STATE(10213)] = 301050, + [SMALL_STATE(10214)] = 301063, + [SMALL_STATE(10215)] = 301076, + [SMALL_STATE(10216)] = 301089, + [SMALL_STATE(10217)] = 301102, + [SMALL_STATE(10218)] = 301115, + [SMALL_STATE(10219)] = 301128, + [SMALL_STATE(10220)] = 301141, + [SMALL_STATE(10221)] = 301154, + [SMALL_STATE(10222)] = 301167, + [SMALL_STATE(10223)] = 301180, + [SMALL_STATE(10224)] = 301193, + [SMALL_STATE(10225)] = 301206, + [SMALL_STATE(10226)] = 301219, + [SMALL_STATE(10227)] = 301232, + [SMALL_STATE(10228)] = 301245, + [SMALL_STATE(10229)] = 301258, + [SMALL_STATE(10230)] = 301271, + [SMALL_STATE(10231)] = 301284, + [SMALL_STATE(10232)] = 301297, + [SMALL_STATE(10233)] = 301310, + [SMALL_STATE(10234)] = 301323, + [SMALL_STATE(10235)] = 301336, + [SMALL_STATE(10236)] = 301349, + [SMALL_STATE(10237)] = 301362, + [SMALL_STATE(10238)] = 301375, + [SMALL_STATE(10239)] = 301388, + [SMALL_STATE(10240)] = 301401, + [SMALL_STATE(10241)] = 301414, + [SMALL_STATE(10242)] = 301427, + [SMALL_STATE(10243)] = 301440, + [SMALL_STATE(10244)] = 301453, + [SMALL_STATE(10245)] = 301466, + [SMALL_STATE(10246)] = 301479, + [SMALL_STATE(10247)] = 301492, + [SMALL_STATE(10248)] = 301505, + [SMALL_STATE(10249)] = 301518, + [SMALL_STATE(10250)] = 301531, + [SMALL_STATE(10251)] = 301544, + [SMALL_STATE(10252)] = 301557, + [SMALL_STATE(10253)] = 301570, + [SMALL_STATE(10254)] = 301583, + [SMALL_STATE(10255)] = 301596, + [SMALL_STATE(10256)] = 301609, + [SMALL_STATE(10257)] = 301622, + [SMALL_STATE(10258)] = 301635, + [SMALL_STATE(10259)] = 301648, + [SMALL_STATE(10260)] = 301661, + [SMALL_STATE(10261)] = 301674, + [SMALL_STATE(10262)] = 301687, + [SMALL_STATE(10263)] = 301700, + [SMALL_STATE(10264)] = 301713, + [SMALL_STATE(10265)] = 301723, + [SMALL_STATE(10266)] = 301733, + [SMALL_STATE(10267)] = 301743, + [SMALL_STATE(10268)] = 301753, + [SMALL_STATE(10269)] = 301763, + [SMALL_STATE(10270)] = 301773, + [SMALL_STATE(10271)] = 301783, + [SMALL_STATE(10272)] = 301793, + [SMALL_STATE(10273)] = 301803, + [SMALL_STATE(10274)] = 301813, + [SMALL_STATE(10275)] = 301823, + [SMALL_STATE(10276)] = 301833, + [SMALL_STATE(10277)] = 301843, + [SMALL_STATE(10278)] = 301853, + [SMALL_STATE(10279)] = 301863, + [SMALL_STATE(10280)] = 301873, + [SMALL_STATE(10281)] = 301883, + [SMALL_STATE(10282)] = 301893, + [SMALL_STATE(10283)] = 301903, + [SMALL_STATE(10284)] = 301913, + [SMALL_STATE(10285)] = 301923, + [SMALL_STATE(10286)] = 301933, + [SMALL_STATE(10287)] = 301943, + [SMALL_STATE(10288)] = 301953, + [SMALL_STATE(10289)] = 301963, + [SMALL_STATE(10290)] = 301973, + [SMALL_STATE(10291)] = 301983, + [SMALL_STATE(10292)] = 301993, + [SMALL_STATE(10293)] = 302003, + [SMALL_STATE(10294)] = 302013, + [SMALL_STATE(10295)] = 302023, + [SMALL_STATE(10296)] = 302033, + [SMALL_STATE(10297)] = 302043, + [SMALL_STATE(10298)] = 302053, + [SMALL_STATE(10299)] = 302063, + [SMALL_STATE(10300)] = 302073, + [SMALL_STATE(10301)] = 302083, + [SMALL_STATE(10302)] = 302093, + [SMALL_STATE(10303)] = 302103, + [SMALL_STATE(10304)] = 302113, + [SMALL_STATE(10305)] = 302123, + [SMALL_STATE(10306)] = 302133, + [SMALL_STATE(10307)] = 302143, + [SMALL_STATE(10308)] = 302153, + [SMALL_STATE(10309)] = 302163, + [SMALL_STATE(10310)] = 302173, + [SMALL_STATE(10311)] = 302183, + [SMALL_STATE(10312)] = 302193, + [SMALL_STATE(10313)] = 302203, + [SMALL_STATE(10314)] = 302213, + [SMALL_STATE(10315)] = 302223, + [SMALL_STATE(10316)] = 302233, + [SMALL_STATE(10317)] = 302243, + [SMALL_STATE(10318)] = 302253, + [SMALL_STATE(10319)] = 302263, + [SMALL_STATE(10320)] = 302273, + [SMALL_STATE(10321)] = 302283, + [SMALL_STATE(10322)] = 302293, + [SMALL_STATE(10323)] = 302303, + [SMALL_STATE(10324)] = 302313, + [SMALL_STATE(10325)] = 302323, + [SMALL_STATE(10326)] = 302333, + [SMALL_STATE(10327)] = 302343, + [SMALL_STATE(10328)] = 302353, + [SMALL_STATE(10329)] = 302363, + [SMALL_STATE(10330)] = 302373, + [SMALL_STATE(10331)] = 302383, + [SMALL_STATE(10332)] = 302393, + [SMALL_STATE(10333)] = 302403, + [SMALL_STATE(10334)] = 302413, + [SMALL_STATE(10335)] = 302423, + [SMALL_STATE(10336)] = 302433, + [SMALL_STATE(10337)] = 302443, + [SMALL_STATE(10338)] = 302453, + [SMALL_STATE(10339)] = 302463, + [SMALL_STATE(10340)] = 302473, + [SMALL_STATE(10341)] = 302483, + [SMALL_STATE(10342)] = 302493, + [SMALL_STATE(10343)] = 302503, + [SMALL_STATE(10344)] = 302513, + [SMALL_STATE(10345)] = 302523, + [SMALL_STATE(10346)] = 302533, + [SMALL_STATE(10347)] = 302543, + [SMALL_STATE(10348)] = 302553, + [SMALL_STATE(10349)] = 302563, + [SMALL_STATE(10350)] = 302573, + [SMALL_STATE(10351)] = 302583, + [SMALL_STATE(10352)] = 302593, + [SMALL_STATE(10353)] = 302603, + [SMALL_STATE(10354)] = 302613, + [SMALL_STATE(10355)] = 302623, + [SMALL_STATE(10356)] = 302633, + [SMALL_STATE(10357)] = 302643, + [SMALL_STATE(10358)] = 302653, + [SMALL_STATE(10359)] = 302663, + [SMALL_STATE(10360)] = 302673, + [SMALL_STATE(10361)] = 302683, + [SMALL_STATE(10362)] = 302693, + [SMALL_STATE(10363)] = 302703, + [SMALL_STATE(10364)] = 302713, + [SMALL_STATE(10365)] = 302723, + [SMALL_STATE(10366)] = 302733, + [SMALL_STATE(10367)] = 302743, + [SMALL_STATE(10368)] = 302753, + [SMALL_STATE(10369)] = 302763, + [SMALL_STATE(10370)] = 302773, + [SMALL_STATE(10371)] = 302783, + [SMALL_STATE(10372)] = 302793, + [SMALL_STATE(10373)] = 302803, + [SMALL_STATE(10374)] = 302813, + [SMALL_STATE(10375)] = 302823, + [SMALL_STATE(10376)] = 302833, + [SMALL_STATE(10377)] = 302843, + [SMALL_STATE(10378)] = 302853, + [SMALL_STATE(10379)] = 302863, + [SMALL_STATE(10380)] = 302873, + [SMALL_STATE(10381)] = 302883, + [SMALL_STATE(10382)] = 302893, + [SMALL_STATE(10383)] = 302903, + [SMALL_STATE(10384)] = 302913, + [SMALL_STATE(10385)] = 302923, + [SMALL_STATE(10386)] = 302933, + [SMALL_STATE(10387)] = 302943, + [SMALL_STATE(10388)] = 302953, + [SMALL_STATE(10389)] = 302963, + [SMALL_STATE(10390)] = 302973, + [SMALL_STATE(10391)] = 302983, + [SMALL_STATE(10392)] = 302993, + [SMALL_STATE(10393)] = 303003, + [SMALL_STATE(10394)] = 303013, + [SMALL_STATE(10395)] = 303023, + [SMALL_STATE(10396)] = 303033, + [SMALL_STATE(10397)] = 303043, + [SMALL_STATE(10398)] = 303053, + [SMALL_STATE(10399)] = 303063, + [SMALL_STATE(10400)] = 303073, + [SMALL_STATE(10401)] = 303083, + [SMALL_STATE(10402)] = 303093, + [SMALL_STATE(10403)] = 303103, + [SMALL_STATE(10404)] = 303113, + [SMALL_STATE(10405)] = 303123, + [SMALL_STATE(10406)] = 303133, + [SMALL_STATE(10407)] = 303143, + [SMALL_STATE(10408)] = 303153, + [SMALL_STATE(10409)] = 303163, + [SMALL_STATE(10410)] = 303173, + [SMALL_STATE(10411)] = 303183, + [SMALL_STATE(10412)] = 303193, + [SMALL_STATE(10413)] = 303203, + [SMALL_STATE(10414)] = 303213, + [SMALL_STATE(10415)] = 303223, + [SMALL_STATE(10416)] = 303233, + [SMALL_STATE(10417)] = 303243, + [SMALL_STATE(10418)] = 303253, + [SMALL_STATE(10419)] = 303263, + [SMALL_STATE(10420)] = 303273, + [SMALL_STATE(10421)] = 303283, + [SMALL_STATE(10422)] = 303293, + [SMALL_STATE(10423)] = 303303, + [SMALL_STATE(10424)] = 303313, + [SMALL_STATE(10425)] = 303323, + [SMALL_STATE(10426)] = 303333, + [SMALL_STATE(10427)] = 303343, + [SMALL_STATE(10428)] = 303353, + [SMALL_STATE(10429)] = 303363, + [SMALL_STATE(10430)] = 303373, + [SMALL_STATE(10431)] = 303383, + [SMALL_STATE(10432)] = 303393, + [SMALL_STATE(10433)] = 303403, + [SMALL_STATE(10434)] = 303413, + [SMALL_STATE(10435)] = 303423, + [SMALL_STATE(10436)] = 303433, + [SMALL_STATE(10437)] = 303443, + [SMALL_STATE(10438)] = 303453, + [SMALL_STATE(10439)] = 303463, + [SMALL_STATE(10440)] = 303473, + [SMALL_STATE(10441)] = 303483, + [SMALL_STATE(10442)] = 303493, + [SMALL_STATE(10443)] = 303503, + [SMALL_STATE(10444)] = 303513, + [SMALL_STATE(10445)] = 303523, + [SMALL_STATE(10446)] = 303533, + [SMALL_STATE(10447)] = 303543, + [SMALL_STATE(10448)] = 303553, + [SMALL_STATE(10449)] = 303563, + [SMALL_STATE(10450)] = 303573, + [SMALL_STATE(10451)] = 303583, + [SMALL_STATE(10452)] = 303593, + [SMALL_STATE(10453)] = 303603, + [SMALL_STATE(10454)] = 303613, + [SMALL_STATE(10455)] = 303623, + [SMALL_STATE(10456)] = 303633, + [SMALL_STATE(10457)] = 303643, + [SMALL_STATE(10458)] = 303653, + [SMALL_STATE(10459)] = 303663, + [SMALL_STATE(10460)] = 303673, + [SMALL_STATE(10461)] = 303683, + [SMALL_STATE(10462)] = 303693, + [SMALL_STATE(10463)] = 303703, + [SMALL_STATE(10464)] = 303713, + [SMALL_STATE(10465)] = 303723, + [SMALL_STATE(10466)] = 303733, + [SMALL_STATE(10467)] = 303743, + [SMALL_STATE(10468)] = 303753, + [SMALL_STATE(10469)] = 303763, + [SMALL_STATE(10470)] = 303773, + [SMALL_STATE(10471)] = 303783, + [SMALL_STATE(10472)] = 303793, + [SMALL_STATE(10473)] = 303803, + [SMALL_STATE(10474)] = 303813, + [SMALL_STATE(10475)] = 303823, + [SMALL_STATE(10476)] = 303833, + [SMALL_STATE(10477)] = 303843, + [SMALL_STATE(10478)] = 303853, + [SMALL_STATE(10479)] = 303863, + [SMALL_STATE(10480)] = 303873, + [SMALL_STATE(10481)] = 303883, + [SMALL_STATE(10482)] = 303893, + [SMALL_STATE(10483)] = 303903, + [SMALL_STATE(10484)] = 303913, + [SMALL_STATE(10485)] = 303923, + [SMALL_STATE(10486)] = 303933, + [SMALL_STATE(10487)] = 303943, + [SMALL_STATE(10488)] = 303953, + [SMALL_STATE(10489)] = 303963, + [SMALL_STATE(10490)] = 303973, + [SMALL_STATE(10491)] = 303983, + [SMALL_STATE(10492)] = 303993, + [SMALL_STATE(10493)] = 304003, + [SMALL_STATE(10494)] = 304013, + [SMALL_STATE(10495)] = 304023, + [SMALL_STATE(10496)] = 304033, + [SMALL_STATE(10497)] = 304043, + [SMALL_STATE(10498)] = 304053, + [SMALL_STATE(10499)] = 304063, + [SMALL_STATE(10500)] = 304073, + [SMALL_STATE(10501)] = 304083, + [SMALL_STATE(10502)] = 304093, + [SMALL_STATE(10503)] = 304103, + [SMALL_STATE(10504)] = 304113, + [SMALL_STATE(10505)] = 304123, + [SMALL_STATE(10506)] = 304133, + [SMALL_STATE(10507)] = 304143, + [SMALL_STATE(10508)] = 304153, + [SMALL_STATE(10509)] = 304163, + [SMALL_STATE(10510)] = 304173, + [SMALL_STATE(10511)] = 304183, + [SMALL_STATE(10512)] = 304193, + [SMALL_STATE(10513)] = 304203, + [SMALL_STATE(10514)] = 304213, + [SMALL_STATE(10515)] = 304223, + [SMALL_STATE(10516)] = 304233, + [SMALL_STATE(10517)] = 304243, + [SMALL_STATE(10518)] = 304253, + [SMALL_STATE(10519)] = 304263, + [SMALL_STATE(10520)] = 304273, + [SMALL_STATE(10521)] = 304283, + [SMALL_STATE(10522)] = 304293, + [SMALL_STATE(10523)] = 304303, + [SMALL_STATE(10524)] = 304313, + [SMALL_STATE(10525)] = 304323, + [SMALL_STATE(10526)] = 304333, + [SMALL_STATE(10527)] = 304343, + [SMALL_STATE(10528)] = 304353, + [SMALL_STATE(10529)] = 304363, + [SMALL_STATE(10530)] = 304373, + [SMALL_STATE(10531)] = 304383, + [SMALL_STATE(10532)] = 304393, + [SMALL_STATE(10533)] = 304403, + [SMALL_STATE(10534)] = 304413, + [SMALL_STATE(10535)] = 304423, + [SMALL_STATE(10536)] = 304433, + [SMALL_STATE(10537)] = 304443, + [SMALL_STATE(10538)] = 304453, + [SMALL_STATE(10539)] = 304463, + [SMALL_STATE(10540)] = 304473, + [SMALL_STATE(10541)] = 304483, + [SMALL_STATE(10542)] = 304493, + [SMALL_STATE(10543)] = 304503, + [SMALL_STATE(10544)] = 304513, + [SMALL_STATE(10545)] = 304523, + [SMALL_STATE(10546)] = 304533, + [SMALL_STATE(10547)] = 304543, + [SMALL_STATE(10548)] = 304553, + [SMALL_STATE(10549)] = 304563, + [SMALL_STATE(10550)] = 304573, + [SMALL_STATE(10551)] = 304583, + [SMALL_STATE(10552)] = 304593, + [SMALL_STATE(10553)] = 304603, + [SMALL_STATE(10554)] = 304613, + [SMALL_STATE(10555)] = 304623, + [SMALL_STATE(10556)] = 304633, + [SMALL_STATE(10557)] = 304643, + [SMALL_STATE(10558)] = 304653, + [SMALL_STATE(10559)] = 304663, + [SMALL_STATE(10560)] = 304673, + [SMALL_STATE(10561)] = 304683, + [SMALL_STATE(10562)] = 304693, + [SMALL_STATE(10563)] = 304703, + [SMALL_STATE(10564)] = 304713, + [SMALL_STATE(10565)] = 304723, + [SMALL_STATE(10566)] = 304733, + [SMALL_STATE(10567)] = 304743, + [SMALL_STATE(10568)] = 304753, + [SMALL_STATE(10569)] = 304763, + [SMALL_STATE(10570)] = 304773, + [SMALL_STATE(10571)] = 304783, + [SMALL_STATE(10572)] = 304793, + [SMALL_STATE(10573)] = 304803, + [SMALL_STATE(10574)] = 304813, + [SMALL_STATE(10575)] = 304823, + [SMALL_STATE(10576)] = 304833, + [SMALL_STATE(10577)] = 304843, + [SMALL_STATE(10578)] = 304853, + [SMALL_STATE(10579)] = 304863, + [SMALL_STATE(10580)] = 304873, + [SMALL_STATE(10581)] = 304883, + [SMALL_STATE(10582)] = 304893, + [SMALL_STATE(10583)] = 304903, + [SMALL_STATE(10584)] = 304913, + [SMALL_STATE(10585)] = 304923, + [SMALL_STATE(10586)] = 304933, + [SMALL_STATE(10587)] = 304943, + [SMALL_STATE(10588)] = 304953, + [SMALL_STATE(10589)] = 304963, + [SMALL_STATE(10590)] = 304973, + [SMALL_STATE(10591)] = 304983, + [SMALL_STATE(10592)] = 304993, + [SMALL_STATE(10593)] = 305003, + [SMALL_STATE(10594)] = 305013, + [SMALL_STATE(10595)] = 305023, + [SMALL_STATE(10596)] = 305033, + [SMALL_STATE(10597)] = 305043, + [SMALL_STATE(10598)] = 305053, + [SMALL_STATE(10599)] = 305063, + [SMALL_STATE(10600)] = 305073, + [SMALL_STATE(10601)] = 305083, + [SMALL_STATE(10602)] = 305093, + [SMALL_STATE(10603)] = 305103, + [SMALL_STATE(10604)] = 305113, + [SMALL_STATE(10605)] = 305123, + [SMALL_STATE(10606)] = 305133, + [SMALL_STATE(10607)] = 305143, + [SMALL_STATE(10608)] = 305153, + [SMALL_STATE(10609)] = 305163, + [SMALL_STATE(10610)] = 305173, + [SMALL_STATE(10611)] = 305183, + [SMALL_STATE(10612)] = 305193, + [SMALL_STATE(10613)] = 305203, + [SMALL_STATE(10614)] = 305213, + [SMALL_STATE(10615)] = 305223, + [SMALL_STATE(10616)] = 305233, + [SMALL_STATE(10617)] = 305243, + [SMALL_STATE(10618)] = 305253, + [SMALL_STATE(10619)] = 305263, + [SMALL_STATE(10620)] = 305273, + [SMALL_STATE(10621)] = 305283, + [SMALL_STATE(10622)] = 305293, + [SMALL_STATE(10623)] = 305303, + [SMALL_STATE(10624)] = 305313, + [SMALL_STATE(10625)] = 305323, + [SMALL_STATE(10626)] = 305333, + [SMALL_STATE(10627)] = 305343, + [SMALL_STATE(10628)] = 305353, + [SMALL_STATE(10629)] = 305363, + [SMALL_STATE(10630)] = 305373, + [SMALL_STATE(10631)] = 305383, + [SMALL_STATE(10632)] = 305393, + [SMALL_STATE(10633)] = 305403, + [SMALL_STATE(10634)] = 305413, + [SMALL_STATE(10635)] = 305423, + [SMALL_STATE(10636)] = 305433, + [SMALL_STATE(10637)] = 305443, + [SMALL_STATE(10638)] = 305453, + [SMALL_STATE(10639)] = 305463, + [SMALL_STATE(10640)] = 305473, + [SMALL_STATE(10641)] = 305483, + [SMALL_STATE(10642)] = 305493, + [SMALL_STATE(10643)] = 305503, + [SMALL_STATE(10644)] = 305513, + [SMALL_STATE(10645)] = 305523, + [SMALL_STATE(10646)] = 305533, + [SMALL_STATE(10647)] = 305543, + [SMALL_STATE(10648)] = 305553, + [SMALL_STATE(10649)] = 305563, + [SMALL_STATE(10650)] = 305573, + [SMALL_STATE(10651)] = 305583, + [SMALL_STATE(10652)] = 305593, + [SMALL_STATE(10653)] = 305603, + [SMALL_STATE(10654)] = 305613, + [SMALL_STATE(10655)] = 305623, + [SMALL_STATE(10656)] = 305633, + [SMALL_STATE(10657)] = 305643, + [SMALL_STATE(10658)] = 305653, + [SMALL_STATE(10659)] = 305663, + [SMALL_STATE(10660)] = 305673, + [SMALL_STATE(10661)] = 305683, + [SMALL_STATE(10662)] = 305693, + [SMALL_STATE(10663)] = 305703, + [SMALL_STATE(10664)] = 305713, + [SMALL_STATE(10665)] = 305723, + [SMALL_STATE(10666)] = 305733, + [SMALL_STATE(10667)] = 305743, + [SMALL_STATE(10668)] = 305753, + [SMALL_STATE(10669)] = 305763, + [SMALL_STATE(10670)] = 305773, + [SMALL_STATE(10671)] = 305783, + [SMALL_STATE(10672)] = 305793, + [SMALL_STATE(10673)] = 305803, + [SMALL_STATE(10674)] = 305813, + [SMALL_STATE(10675)] = 305823, + [SMALL_STATE(10676)] = 305833, + [SMALL_STATE(10677)] = 305843, + [SMALL_STATE(10678)] = 305853, + [SMALL_STATE(10679)] = 305863, + [SMALL_STATE(10680)] = 305873, + [SMALL_STATE(10681)] = 305883, + [SMALL_STATE(10682)] = 305893, + [SMALL_STATE(10683)] = 305903, + [SMALL_STATE(10684)] = 305913, + [SMALL_STATE(10685)] = 305923, + [SMALL_STATE(10686)] = 305933, + [SMALL_STATE(10687)] = 305943, + [SMALL_STATE(10688)] = 305953, + [SMALL_STATE(10689)] = 305963, + [SMALL_STATE(10690)] = 305973, + [SMALL_STATE(10691)] = 305983, + [SMALL_STATE(10692)] = 305993, + [SMALL_STATE(10693)] = 306003, + [SMALL_STATE(10694)] = 306013, + [SMALL_STATE(10695)] = 306023, + [SMALL_STATE(10696)] = 306033, + [SMALL_STATE(10697)] = 306043, + [SMALL_STATE(10698)] = 306053, + [SMALL_STATE(10699)] = 306063, + [SMALL_STATE(10700)] = 306073, + [SMALL_STATE(10701)] = 306083, + [SMALL_STATE(10702)] = 306093, + [SMALL_STATE(10703)] = 306103, + [SMALL_STATE(10704)] = 306113, + [SMALL_STATE(10705)] = 306123, + [SMALL_STATE(10706)] = 306133, + [SMALL_STATE(10707)] = 306143, + [SMALL_STATE(10708)] = 306153, + [SMALL_STATE(10709)] = 306163, + [SMALL_STATE(10710)] = 306173, + [SMALL_STATE(10711)] = 306183, + [SMALL_STATE(10712)] = 306193, + [SMALL_STATE(10713)] = 306203, + [SMALL_STATE(10714)] = 306213, + [SMALL_STATE(10715)] = 306223, + [SMALL_STATE(10716)] = 306233, + [SMALL_STATE(10717)] = 306243, + [SMALL_STATE(10718)] = 306253, + [SMALL_STATE(10719)] = 306263, + [SMALL_STATE(10720)] = 306273, + [SMALL_STATE(10721)] = 306283, + [SMALL_STATE(10722)] = 306293, + [SMALL_STATE(10723)] = 306303, + [SMALL_STATE(10724)] = 306313, + [SMALL_STATE(10725)] = 306323, + [SMALL_STATE(10726)] = 306333, + [SMALL_STATE(10727)] = 306343, + [SMALL_STATE(10728)] = 306353, + [SMALL_STATE(10729)] = 306363, + [SMALL_STATE(10730)] = 306373, + [SMALL_STATE(10731)] = 306383, + [SMALL_STATE(10732)] = 306393, + [SMALL_STATE(10733)] = 306403, + [SMALL_STATE(10734)] = 306413, + [SMALL_STATE(10735)] = 306423, + [SMALL_STATE(10736)] = 306433, + [SMALL_STATE(10737)] = 306443, + [SMALL_STATE(10738)] = 306453, + [SMALL_STATE(10739)] = 306463, + [SMALL_STATE(10740)] = 306473, + [SMALL_STATE(10741)] = 306483, + [SMALL_STATE(10742)] = 306493, + [SMALL_STATE(10743)] = 306503, + [SMALL_STATE(10744)] = 306513, + [SMALL_STATE(10745)] = 306523, + [SMALL_STATE(10746)] = 306533, + [SMALL_STATE(10747)] = 306543, + [SMALL_STATE(10748)] = 306553, + [SMALL_STATE(10749)] = 306563, + [SMALL_STATE(10750)] = 306573, + [SMALL_STATE(10751)] = 306583, + [SMALL_STATE(10752)] = 306593, + [SMALL_STATE(10753)] = 306603, + [SMALL_STATE(10754)] = 306613, + [SMALL_STATE(10755)] = 306623, + [SMALL_STATE(10756)] = 306633, + [SMALL_STATE(10757)] = 306643, + [SMALL_STATE(10758)] = 306653, + [SMALL_STATE(10759)] = 306663, + [SMALL_STATE(10760)] = 306673, + [SMALL_STATE(10761)] = 306683, + [SMALL_STATE(10762)] = 306693, + [SMALL_STATE(10763)] = 306703, + [SMALL_STATE(10764)] = 306713, + [SMALL_STATE(10765)] = 306723, + [SMALL_STATE(10766)] = 306733, + [SMALL_STATE(10767)] = 306743, + [SMALL_STATE(10768)] = 306753, + [SMALL_STATE(10769)] = 306763, + [SMALL_STATE(10770)] = 306773, + [SMALL_STATE(10771)] = 306783, + [SMALL_STATE(10772)] = 306793, + [SMALL_STATE(10773)] = 306803, + [SMALL_STATE(10774)] = 306813, + [SMALL_STATE(10775)] = 306823, + [SMALL_STATE(10776)] = 306833, + [SMALL_STATE(10777)] = 306843, + [SMALL_STATE(10778)] = 306853, + [SMALL_STATE(10779)] = 306863, + [SMALL_STATE(10780)] = 306873, + [SMALL_STATE(10781)] = 306883, + [SMALL_STATE(10782)] = 306893, + [SMALL_STATE(10783)] = 306903, + [SMALL_STATE(10784)] = 306913, + [SMALL_STATE(10785)] = 306923, + [SMALL_STATE(10786)] = 306933, + [SMALL_STATE(10787)] = 306943, + [SMALL_STATE(10788)] = 306953, + [SMALL_STATE(10789)] = 306963, + [SMALL_STATE(10790)] = 306973, + [SMALL_STATE(10791)] = 306983, + [SMALL_STATE(10792)] = 306993, + [SMALL_STATE(10793)] = 307003, + [SMALL_STATE(10794)] = 307013, + [SMALL_STATE(10795)] = 307023, + [SMALL_STATE(10796)] = 307033, + [SMALL_STATE(10797)] = 307043, + [SMALL_STATE(10798)] = 307053, + [SMALL_STATE(10799)] = 307063, + [SMALL_STATE(10800)] = 307073, + [SMALL_STATE(10801)] = 307083, + [SMALL_STATE(10802)] = 307093, + [SMALL_STATE(10803)] = 307103, + [SMALL_STATE(10804)] = 307113, + [SMALL_STATE(10805)] = 307123, + [SMALL_STATE(10806)] = 307133, + [SMALL_STATE(10807)] = 307143, + [SMALL_STATE(10808)] = 307153, + [SMALL_STATE(10809)] = 307163, + [SMALL_STATE(10810)] = 307173, + [SMALL_STATE(10811)] = 307183, + [SMALL_STATE(10812)] = 307193, + [SMALL_STATE(10813)] = 307203, + [SMALL_STATE(10814)] = 307213, + [SMALL_STATE(10815)] = 307223, + [SMALL_STATE(10816)] = 307233, + [SMALL_STATE(10817)] = 307243, + [SMALL_STATE(10818)] = 307253, + [SMALL_STATE(10819)] = 307263, + [SMALL_STATE(10820)] = 307273, + [SMALL_STATE(10821)] = 307283, + [SMALL_STATE(10822)] = 307293, + [SMALL_STATE(10823)] = 307303, + [SMALL_STATE(10824)] = 307313, + [SMALL_STATE(10825)] = 307323, + [SMALL_STATE(10826)] = 307333, + [SMALL_STATE(10827)] = 307343, + [SMALL_STATE(10828)] = 307353, + [SMALL_STATE(10829)] = 307363, + [SMALL_STATE(10830)] = 307373, + [SMALL_STATE(10831)] = 307383, + [SMALL_STATE(10832)] = 307393, + [SMALL_STATE(10833)] = 307403, + [SMALL_STATE(10834)] = 307413, + [SMALL_STATE(10835)] = 307423, + [SMALL_STATE(10836)] = 307433, + [SMALL_STATE(10837)] = 307443, + [SMALL_STATE(10838)] = 307453, + [SMALL_STATE(10839)] = 307463, + [SMALL_STATE(10840)] = 307473, + [SMALL_STATE(10841)] = 307483, + [SMALL_STATE(10842)] = 307493, + [SMALL_STATE(10843)] = 307503, + [SMALL_STATE(10844)] = 307513, + [SMALL_STATE(10845)] = 307523, + [SMALL_STATE(10846)] = 307533, + [SMALL_STATE(10847)] = 307543, + [SMALL_STATE(10848)] = 307553, + [SMALL_STATE(10849)] = 307563, + [SMALL_STATE(10850)] = 307573, + [SMALL_STATE(10851)] = 307583, + [SMALL_STATE(10852)] = 307593, + [SMALL_STATE(10853)] = 307603, + [SMALL_STATE(10854)] = 307613, + [SMALL_STATE(10855)] = 307623, + [SMALL_STATE(10856)] = 307633, + [SMALL_STATE(10857)] = 307643, + [SMALL_STATE(10858)] = 307653, + [SMALL_STATE(10859)] = 307663, + [SMALL_STATE(10860)] = 307673, + [SMALL_STATE(10861)] = 307683, + [SMALL_STATE(10862)] = 307693, + [SMALL_STATE(10863)] = 307703, + [SMALL_STATE(10864)] = 307713, + [SMALL_STATE(10865)] = 307723, + [SMALL_STATE(10866)] = 307733, + [SMALL_STATE(10867)] = 307743, + [SMALL_STATE(10868)] = 307753, + [SMALL_STATE(10869)] = 307763, + [SMALL_STATE(10870)] = 307773, + [SMALL_STATE(10871)] = 307783, + [SMALL_STATE(10872)] = 307793, + [SMALL_STATE(10873)] = 307803, + [SMALL_STATE(10874)] = 307813, + [SMALL_STATE(10875)] = 307823, + [SMALL_STATE(10876)] = 307833, + [SMALL_STATE(10877)] = 307843, + [SMALL_STATE(10878)] = 307853, + [SMALL_STATE(10879)] = 307863, + [SMALL_STATE(10880)] = 307873, + [SMALL_STATE(10881)] = 307883, + [SMALL_STATE(10882)] = 307893, + [SMALL_STATE(10883)] = 307903, + [SMALL_STATE(10884)] = 307913, + [SMALL_STATE(10885)] = 307923, + [SMALL_STATE(10886)] = 307933, + [SMALL_STATE(10887)] = 307943, + [SMALL_STATE(10888)] = 307953, + [SMALL_STATE(10889)] = 307963, + [SMALL_STATE(10890)] = 307973, + [SMALL_STATE(10891)] = 307983, + [SMALL_STATE(10892)] = 307993, + [SMALL_STATE(10893)] = 308003, + [SMALL_STATE(10894)] = 308013, + [SMALL_STATE(10895)] = 308023, + [SMALL_STATE(10896)] = 308033, + [SMALL_STATE(10897)] = 308043, + [SMALL_STATE(10898)] = 308053, + [SMALL_STATE(10899)] = 308063, + [SMALL_STATE(10900)] = 308073, + [SMALL_STATE(10901)] = 308083, + [SMALL_STATE(10902)] = 308093, + [SMALL_STATE(10903)] = 308103, + [SMALL_STATE(10904)] = 308113, + [SMALL_STATE(10905)] = 308123, + [SMALL_STATE(10906)] = 308133, + [SMALL_STATE(10907)] = 308143, + [SMALL_STATE(10908)] = 308153, + [SMALL_STATE(10909)] = 308163, + [SMALL_STATE(10910)] = 308173, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10943), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10598), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11353), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8607), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8470), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8381), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8393), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8401), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8811), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7505), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10604), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8449), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8448), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4650), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9552), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11425), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11174), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9639), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9781), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7499), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10652), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7119), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7799), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10543), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6456), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8272), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9429), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9523), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7230), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7591), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6319), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6372), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4781), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10988), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5930), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5930), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6029), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11363), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6374), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9476), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6386), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9096), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8561), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7471), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10943), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8429), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8117), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8118), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8119), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8120), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8431), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7311), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10329), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8121), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8122), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4504), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7093), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9868), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10483), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11054), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10563), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9106), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9107), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7217), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10331), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7047), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10845), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8175), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7858), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7941), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7948), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7968), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8211), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6989), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10168), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7832), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7986), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4160), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9211), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10438), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10457), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9607), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9636), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7094), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10070), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6752), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7235), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10239), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6171), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7957), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8652), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9603), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6928), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7115), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5953), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5964), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4272), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10624), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5304), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5705), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10647), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5931), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9253), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5888), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8798), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8238), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6931), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10598), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8010), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7745), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7746), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7747), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7748), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8013), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6861), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9823), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7749), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7750), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4067), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6692), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9418), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10141), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10554), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10087), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8847), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8848), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6864), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9826), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6579), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7588), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10334), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6375), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8130), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8718), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9118), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11261), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7283), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7590), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6064), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6044), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4339), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10886), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5443), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5889), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11049), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6241), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10051), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9414), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8813), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11262), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7501), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8398), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8083), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8134), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8165), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8129), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8454), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7308), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10272), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8228), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8091), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4463), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9845), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10529), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11197), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8931), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9135), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7222), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10404), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7005), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10418), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6292), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8161), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8792), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9406), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6279), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8217), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8444), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8936), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9769), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6246), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6160), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8395), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8711), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8423), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8323), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8324), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8325), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8427), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7515), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10689), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8424), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8326), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4572), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10889), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11352), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9141), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9142), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7531), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10552), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7144), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10630), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6555), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8332), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9167), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9553), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8789), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8496), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8342), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8350), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8269), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8289), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10173), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10178), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3401), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10722), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6699), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7459), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9265), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6444), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7852), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9693), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7823), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8154), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6249), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8452), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6010), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7162), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5472), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7094), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6017), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8205), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6423), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7858), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11282), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5821), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10931), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6432), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6335), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7926), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6565), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), - [593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, 0, 0), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8563), - [600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8365), - [603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8646), - [606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8651), - [609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8652), - [612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8427), - [615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7515), - [618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(10689), - [621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8424), - [624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8326), - [627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4572), - [630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1041), - [633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(57), - [636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(9845), - [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(10889), - [642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(11352), - [645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(9141), - [648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(9142), - [651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7531), - [654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(10552), - [657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3494), - [660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7144), - [663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3386), - [666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1594), - [669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7), - [672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7588), - [675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(10630), - [678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1389), - [681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4121), - [684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6555), - [687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8332), - [690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(9167), - [693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(9553), - [696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3170), - [699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7283), - [702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7590), - [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6064), - [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6044), - [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4339), - [714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4339), - [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(10886), - [720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4167), - [723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5443), - [726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5443), - [729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5889), - [732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(11049), - [735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6241), - [738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(10051), - [741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5774), - [744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(9414), - [747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8813), - [750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7501), - [753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8511), - [756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8275), - [759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8558), - [762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8559), - [765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8569), - [768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8289), - [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7515), - [774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(10689), - [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8424), - [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8326), - [783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4572), - [786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1041), - [789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(57), - [792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(9845), - [795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(10889), - [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(11352), - [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(10173), - [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(10178), - [807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7531), - [810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(10552), - [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3494), - [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7144), - [819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3401), - [822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1594), - [825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7), - [828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7588), - [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(10722), - [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1389), - [837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4121), - [840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6555), - [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8332), - [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(9167), - [849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(9553), - [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3170), - [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7283), - [858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7590), - [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6064), - [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6044), - [867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4339), - [870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4339), - [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(10886), - [876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4167), - [879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5443), - [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5443), - [885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5889), - [888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(11049), - [891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6241), - [894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(10051), - [897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5774), - [900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(9414), - [903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8813), - [906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7459), - [909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), - [911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), - [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 3, 0, 0), - [919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 3, 0, 0), - [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), - [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), - [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(249), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), - [938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10602), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8196), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8069), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11133), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), - [952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(254), - [959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1, 0, 0), - [961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), - [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9387), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10867), - [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8575), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9396), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8634), - [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1, 0, 0), - [989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1, 0, 0), - [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9074), - [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), - [997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), - [999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), - [1001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), - [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9074), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7322), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9828), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5973), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7754), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8244), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8852), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10315), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6841), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7327), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5582), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5535), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10491), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4984), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5282), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10549), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5711), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9293), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8502), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8296), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10381), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7067), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7834), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7786), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7579), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7586), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7593), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7947), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6824), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9845), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7597), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7608), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9193), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10153), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10433), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8463), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8466), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6885), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9753), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6602), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9861), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5902), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7607), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8314), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8855), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5058), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7691), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7977), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7856), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8429), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9130), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8220), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8004), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8055), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8056), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8057), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7985), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7093), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10220), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8005), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8058), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10391), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10838), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8708), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8711), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7103), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10238), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6722), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10249), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6047), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8062), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8865), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9621), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8375), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7883), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7887), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7890), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7891), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7892), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9570), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9599), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10210), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5952), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6972), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7455), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10673), + [467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, 0, 0), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7225), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6681), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7587), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10730), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7492), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6115), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7505), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7574), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8699), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8066), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9640), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6720), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6242), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6174), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6042), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8194), + [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7912), + [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8278), + [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8284), + [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8289), + [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7985), + [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7093), + [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(10220), + [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8005), + [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8058), + [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4192), + [614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(771), + [617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(52), + [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(9193), + [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(10391), + [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(10838), + [629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8708), + [632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8711), + [635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7103), + [638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(10238), + [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3051), + [644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6722), + [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2968), + [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1218), + [653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7), + [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7322), + [659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(10249), + [662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1085), + [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3699), + [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6047), + [671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8062), + [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8865), + [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(9621), + [680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2731), + [683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6841), + [686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7327), + [689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5582), + [692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5535), + [695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4037), + [698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4037), + [701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(10491), + [704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3749), + [707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4984), + [710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4984), + [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5282), + [716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(10549), + [719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5711), + [722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(9293), + [725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5408), + [728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8502), + [731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8296), + [734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7067), + [737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8196), + [740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8002), + [743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8202), + [746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8206), + [749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8208), + [752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7892), + [755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7093), + [758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(10220), + [761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8005), + [764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8058), + [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4192), + [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(771), + [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(52), + [776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(9193), + [779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(10391), + [782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(10838), + [785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(9570), + [788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(9599), + [791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7103), + [794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(10238), + [797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3051), + [800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6722), + [803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2946), + [806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1218), + [809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7), + [812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7322), + [815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(10210), + [818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1085), + [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3699), + [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6047), + [827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8062), + [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8865), + [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(9621), + [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2731), + [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6841), + [842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7327), + [845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5582), + [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5535), + [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4037), + [854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4037), + [857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(10491), + [860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3749), + [863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4984), + [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4984), + [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5282), + [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(10549), + [875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5711), + [878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(9293), + [881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5408), + [884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8502), + [887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8296), + [890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6972), + [893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), + [895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 3, 0, 0), + [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 3, 0, 0), + [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), + [913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), + [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(233), + [920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), + [922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10052), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7655), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7770), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10668), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), + [936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), + [938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1, 0, 0), + [940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8955), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10490), + [954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(236), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8255), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8963), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8256), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10570), + [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8671), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8525), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8954), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10458), + [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), + [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), + [989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8834), + [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8834), + [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8962), + [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10655), + [1002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 1, 0, 6), + [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 6), [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 2, 0, 0), [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 2, 0, 0), - [1010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 1, 0, 5), - [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), - [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9385), - [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10822), - [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9395), - [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11117), - [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(263), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10598), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11137), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8880), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9251), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9071), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9325), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10806), - [1059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2, 0, 0), - [1061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 2, 0, 0), - [1063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3, 0, 0), - [1065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3, 0, 0), - [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9071), - [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 83), - [1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 83), - [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(275), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10481), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9317), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10778), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [1109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__var, 2, 0, 22), - [1111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__var, 2, 0, 22), - [1113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), - [1115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), - [1117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 130), - [1119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 130), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10627), - [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8883), - [1133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8883), - [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 97), - [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 97), - [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9081), - [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), - [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), - [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), - [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), - [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9351), - [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, 0, 5), - [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, 0, 5), - [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), - [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), - [1176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9351), - [1179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 144), - [1181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 144), - [1183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9081), - [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), - [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), - [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), - [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, 0, 0), - [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [1200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), REDUCE(sym__expr_binary_expression, 1, 0, 0), - [1203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), - [1205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9051), - [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9080), - [1215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9051), - [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [1232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9080), - [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9005), - [1243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), - [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [1247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), - [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), - [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), - [1253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, 0, 40), - [1255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, 0, 40), - [1257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 56), - [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 1, 0, 0), - [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 1, 0, 0), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10251), - [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [1273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 40), - [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, 0, 40), - [1277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9005), - [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), - [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), - [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 15), - [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2, 0, 0), - [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2, 0, 0), - [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), - [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 6), - [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 6), - [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), - [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), - [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), - [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), - [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8965), - [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), - [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), - [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), - [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, 0, 0), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, 0, 0), - [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 111), - [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 111), - [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 76), - [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 76), - [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 76), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 76), - [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 126), - [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 126), - [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 97), - [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 97), - [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, 0, 0), - [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, 0, 0), - [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), - [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), - [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), - [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), - [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 144), - [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 144), - [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 80), - [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 80), - [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), - [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), - [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 79), - [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 79), - [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), - [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), - [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), - [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), - [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), - [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), - [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), - [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), - [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), - [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), - [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1, 0, 0), - [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1, 0, 0), - [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), - [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), - [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 3, 0, 0), - [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 3, 0, 0), - [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 4, 0, 0), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 4, 0, 0), - [1422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8965), - [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10246), - [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10452), - [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), - [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), - [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), - [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), - [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), - [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), - [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), - [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), - [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), - [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), - [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), - [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), - [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), - [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), - [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), - [1469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6992), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6993), - [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10362), - [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), - [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), - [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), - [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), - [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [1546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(750), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [1561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(752), - [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9394), - [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11105), - [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10593), - [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9070), - [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10533), - [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8196), - [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8069), - [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10756), - [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [1590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9070), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11137), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9383), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8880), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9251), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9052), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [1625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9052), - [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), - [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9076), - [1646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9076), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9836), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), - [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10448), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10884), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), - [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11221), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9809), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9176), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8744), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10615), - [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9062), - [1707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9062), - [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10239), - [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), - [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), - [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), - [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10126), - [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), - [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), - [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), - [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), - [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), - [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), - [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10363), - [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9508), - [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), - [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), - [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), - [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9894), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10553), - [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10608), - [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10934), - [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 1, 0, 0), - [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9641), - [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8290), - [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11331), - [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), - [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6842), - [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6860), - [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8168), - [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8224), - [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6967), - [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7851), - [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6968), - [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5795), - [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8432), - [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5585), - [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11143), - [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8170), - [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10174), - [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5661), - [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9152), - [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8734), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 1, 0, 0), - [1864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8106), - [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5596), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), - [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9727), - [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8488), - [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11013), - [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6828), - [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6874), - [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8035), - [1888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8087), - [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6945), - [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7981), - [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6941), - [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5654), - [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8315), - [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5524), - [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11175), - [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8245), - [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9453), - [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5813), - [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8964), - [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8533), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), - [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8007), - [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5592), - [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 39), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 39), - [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9926), - [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11237), - [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), - [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [1934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 2, 0, 0), - [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5952), - [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9721), - [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10284), - [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10324), - [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7069), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7143), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9640), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9713), - [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7436), - [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7436), - [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9156), - [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7438), - [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6609), - [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10354), - [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6294), - [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10892), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9687), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9864), - [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6449), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5924), - [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9888), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10551), - [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8082), - [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), - [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 132), - [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 132), - [2006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 4, 0, 0), - [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11419), - [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), - [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), - [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8391), - [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8410), - [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), - [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8437), - [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), - [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9768), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9451), - [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8658), - [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11084), - [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6859), - [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6886), - [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8474), - [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8293), - [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7054), - [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8140), - [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7055), - [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6197), - [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8626), - [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5763), - [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11106), - [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8476), - [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10130), - [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6028), - [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8852), - [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8529), - [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8368), - [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5901), - [2108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(8289), - [2111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1041), - [2114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(57), - [2117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(9508), - [2120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(11352), - [2123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(10173), - [2126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(10178), - [2129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7144), - [2132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3401), - [2135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1594), - [2138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7), - [2141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7588), - [2144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(10722), - [2147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1389), - [2150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3170), - [2153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7283), - [2156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7590), - [2159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6064), - [2162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6044), - [2165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4339), - [2168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4339), - [2171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(10886), - [2174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4167), - [2177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5443), - [2180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5443), - [2183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5889), - [2186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(11049), - [2189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6241), - [2192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(10051), - [2195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5774), - [2198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(9414), - [2201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(8813), - [2204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7459), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), - [2213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(8427), - [2216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1041), - [2219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(57), - [2222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(9508), - [2225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(11352), - [2228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(9141), - [2231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(9142), - [2234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7144), - [2237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3386), - [2240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1594), - [2243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7), - [2246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7588), - [2249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(10630), - [2252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1389), - [2255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3170), - [2258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7283), - [2261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7590), - [2264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6064), - [2267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6044), - [2270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4339), - [2273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4339), - [2276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(10886), - [2279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4167), - [2282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5443), - [2285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5443), - [2288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5889), - [2291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(11049), - [2294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6241), - [2297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(10051), - [2300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5774), - [2303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(9414), - [2306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(8813), - [2309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7501), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6209), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), - [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5646), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10667), - [2334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [2336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [2338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10866), - [2340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), - [2342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [2344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(1049), - [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 128), - [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 128), - [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11320), - [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [2359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 129), - [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 129), - [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9914), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11381), - [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), - [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11205), - [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 131), - [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 131), - [2387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 38), - [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 38), - [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9353), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11294), - [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9349), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 2, 0, 0), - [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), - [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [2447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 58), SHIFT_REPEAT(1084), - [2450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 58), SHIFT_REPEAT(51), - [2453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 58), SHIFT_REPEAT(9721), - [2456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 58), SHIFT_REPEAT(10284), - [2459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 58), SHIFT_REPEAT(10324), - [2462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 58), SHIFT_REPEAT(5), - [2465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 58), SHIFT_REPEAT(7069), - [2468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 58), SHIFT_REPEAT(10884), - [2471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 58), SHIFT_REPEAT(7143), - [2474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 58), SHIFT_REPEAT(9640), - [2477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 58), SHIFT_REPEAT(9713), - [2480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 58), SHIFT_REPEAT(7436), - [2483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 58), SHIFT_REPEAT(7436), - [2486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 58), SHIFT_REPEAT(9156), - [2489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 58), SHIFT_REPEAT(7438), - [2492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 58), SHIFT_REPEAT(6609), - [2495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 58), SHIFT_REPEAT(10354), - [2498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 58), SHIFT_REPEAT(6294), - [2501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 58), SHIFT_REPEAT(10892), - [2504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 58), SHIFT_REPEAT(9687), - [2507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 58), SHIFT_REPEAT(9864), - [2510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 58), SHIFT_REPEAT(6449), - [2513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 58), SHIFT_REPEAT(9176), - [2516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 58), SHIFT_REPEAT(8744), - [2519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 58), SHIFT_REPEAT(10615), - [2522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 58), SHIFT_REPEAT(4145), - [2525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(1092), - [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [2534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [2538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(1106), - [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [2547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), - [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), - [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9764), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9527), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11099), - [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), - [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10622), - [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11161), - [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [2581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), - [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), - [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [2587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(1118), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [2596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(1113), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), - [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9393), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11078), - [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9398), - [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), - [2619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(1117), - [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [2626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9082), - [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10153), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10951), - [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), - [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), - [2639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(1160), - [2642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9058), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8488), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6874), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8035), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8087), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6945), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6941), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8315), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8245), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9453), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5813), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8964), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8533), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8007), - [2680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [2682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [2684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [2690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10047), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10357), - [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11186), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [2698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7099), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7226), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9278), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9205), - [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7392), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7392), - [2710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9263), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7402), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10328), - [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5415), - [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11082), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9105), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9556), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7019), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8840), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8632), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9248), - [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5338), - [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9694), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9440), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6944), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7060), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8683), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8618), - [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7153), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7153), - [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8388), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7106), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6584), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9304), - [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6397), - [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11167), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8776), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9117), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8521), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8416), - [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7920), - [2782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(1145), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10509), - [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7215), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7260), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10282), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10288), - [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7634), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7634), - [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9652), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7638), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10562), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10244), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9792), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11274), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), - [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8979), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8691), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), - [2843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 85), - [2845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 85), - [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 3, 0, 0), - [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [2851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 3, 0, 0), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9786), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10195), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [2865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6962), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7041), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8916), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8879), - [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7269), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7269), - [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8600), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7221), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9682), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9534), - [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9335), - [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11191), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9298), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9729), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6969), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8837), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8554), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8528), - [2901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9090), - [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10468), - [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11359), - [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), - [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), - [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9390), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [2915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10976), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [2925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9590), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8295), - [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10946), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6830), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6847), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8019), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8180), - [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6988), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6988), - [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7948), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6950), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6039), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8400), - [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5682), - [2955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11127), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8123), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10192), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8833), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8630), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7914), - [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5722), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9092), - [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11036), - [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6907), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6999), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8577), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8519), - [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7109), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7109), - [2989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8300), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7171), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9024), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8656), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8349), - [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5996), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8658), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6886), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8474), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8293), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7054), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7055), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6197), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8626), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8476), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10130), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6028), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8852), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8529), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8368), - [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10613), - [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11147), - [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10237), - [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7149), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7310), - [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7504), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7504), - [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9347), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7366), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10222), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9115), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9858), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), - [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11351), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), - [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3759), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), - [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4937), - [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11242), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9843), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9259), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8604), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), - [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4822), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9865), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6288), - [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10932), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4160), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6050), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6129), - [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4610), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), - [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5794), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6439), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6346), - [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6334), - [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11256), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6038), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9856), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6537), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8822), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8624), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5648), - [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6409), - [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9365), - [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11083), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11270), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9873), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8877), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8650), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9397), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10780), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), - [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11277), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9877), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8903), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8662), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9082), - [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9750), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8629), - [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11168), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6854), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6908), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8307), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8265), - [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7010), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7010), - [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8017), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7070), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9217), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8784), - [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8516), - [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11183), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8361), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9208), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8545), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8138), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9662), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8246), - [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11376), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6817), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6837), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7864), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7855), - [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6930), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6930), - [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7618), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6917), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8067), - [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5486), - [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11151), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7872), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9511), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9237), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8761), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7792), - [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5533), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10546), - [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11241), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7145), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7253), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10318), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10283), - [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7577), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7577), - [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9623), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7537), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10582), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10368), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10094), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10180), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9808), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), - [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11391), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [3421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), - [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4238), - [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11199), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9743), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8949), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8819), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [3445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9833), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), - [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4805), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5068), - [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5023), - [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11214), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9799), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8966), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8572), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), - [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5032), - [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9735), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), - [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [3505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4, 0, 0), - [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4, 0, 0), - [3509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [3513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), - [3515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9058), - [3518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 24), - [3520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 24), - [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 2, 0, 0), - [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7757), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7757), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8290), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6860), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8168), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8224), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6967), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6968), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8432), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8170), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10174), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5661), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9152), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8734), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8106), - [3562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7025), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7152), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9725), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9597), - [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7477), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7477), - [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9426), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7429), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10230), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9537), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9236), - [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6303), - [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10670), - [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10795), - [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8622), - [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6849), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6913), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8430), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8260), - [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7036), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7036), - [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8252), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7004), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8623), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8352), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8153), - [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5679), - [3622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_use, 2, 0, 16), - [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), - [3626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 16), - [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7888), - [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), - [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10156), - [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), - [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9042), - [3638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9042), - [3641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 2, 0, 0), - [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_overlay_use_repeat1, 2, 0, 0), - [3645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 2, 0, 0), SHIFT_REPEAT(1691), - [3648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 2, 0, 0), SHIFT_REPEAT(10780), - [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [3655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [3659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(1167), - [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7763), - [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7763), - [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9079), - [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10556), - [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10850), - [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), - [3686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9079), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9056), - [3693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9056), - [3696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hide_mod, 2, 0, 30), - [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 2, 0, 30), - [3700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_use, 3, 0, 43), - [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 43), - [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [3706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 3, 0, 70), - [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 3, 0, 70), - [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8363), - [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [3720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 4, 0, 70), - [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 70), - [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8374), - [3726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 4, 0, 119), - [3728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 119), - [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8375), - [3732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 5, 0, 119), - [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 119), - [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8383), - [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7746), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7746), - [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9014), - [3748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 39), - [3750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 39), - [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7752), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7752), - [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), - [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7881), - [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), - [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9726), - [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8358), - [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8369), - [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8277), - [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8287), - [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [3808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(1252), - [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), - [3819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(1285), - [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [3828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 2, 0, 0), SHIFT_REPEAT(1766), - [3831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 2, 0, 0), SHIFT_REPEAT(11083), - [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [3838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9014), - [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [3845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(1316), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9067), - [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8975), - [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9084), - [3860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10568), - [3862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11024), - [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), - [3866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 23), - [3868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 23), - [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7788), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7788), - [3874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 117), - [3876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 117), - [3878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 4, 0, 0), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11393), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7112), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7319), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7237), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6751), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6732), - [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5100), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), - [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10295), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6687), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6719), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11220), - [3912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_return, 1, 0, 0), - [3914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 1, 0, 0), - [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), - [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), - [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7590), - [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), - [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6241), - [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10051), - [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5774), - [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9414), - [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8813), - [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), - [3942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9084), - [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [3949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 81), - [3951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 81), - [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [3957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9067), - [3960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), - [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), - [3964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 82), - [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 82), - [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), - [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9373), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11314), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [3994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8975), - [3997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(1330), - [4000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), - [4002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), - [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [4006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 162), - [4008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 162), - [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 5, 0, 0), - [4012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 5, 0, 0), - [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [4016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 44), - [4018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 44), - [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), - [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [4026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(1328), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [4035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 1, 0, 0), - [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9391), - [4043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 84), - [4045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 84), - [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11400), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [4057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6987), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7224), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7056), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6350), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6342), - [4067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4737), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), - [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8735), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6402), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6343), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9559), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6540), - [4083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8905), - [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), - [4087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9357), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), - [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [4095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11008), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9904), - [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11408), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7263), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4918), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), - [4131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11284), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9883), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8926), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8669), - [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5379), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9918), - [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11401), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6966), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7265), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7064), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6427), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6601), - [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4943), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), - [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9160), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6481), - [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4852), - [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11207), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6448), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9752), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8891), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8564), - [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9083), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [4197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9922), - [4199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11409), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [4203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7267), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [4213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [4217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4744), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), - [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11291), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9905), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8959), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8682), - [4239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5131), - [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9066), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9929), - [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11410), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4243), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7272), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [4263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [4267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6269), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), - [4275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), - [4277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11297), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9912), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8969), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8687), - [4289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6536), - [4291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 48), - [4293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 48), - [4295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [4297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [4299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11396), - [4301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6836), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7335), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6855), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5832), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5796), - [4311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4491), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), - [4315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8016), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5928), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5905), - [4323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), - [4325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [4331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9938), - [4333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11412), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [4337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7284), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [4347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [4351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [4359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [4361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11308), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9945), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8999), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8698), - [4373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), - [4375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 99), - [4377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 99), - [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11399), - [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6820), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7218), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6838), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), - [4391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), - [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7998), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5505), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [4407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9948), - [4409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11413), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [4413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7288), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [4427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [4435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11313), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9955), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9009), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8702), - [4449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [4451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9083), - [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6912), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7230), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6961), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6278), - [4464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4630), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), - [4468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8697), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6037), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6252), - [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), - [4478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8905), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [4485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9963), - [4487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11414), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7291), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [4501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [4505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [4513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [4515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11318), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9970), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9017), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8704), - [4527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4507), - [4529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), - [4531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), - [4533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 99), - [4535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 99), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9972), - [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11415), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7296), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [4561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [4571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11323), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9993), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9025), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8706), - [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4190), - [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9053), - [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6857), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7283), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6922), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5860), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), - [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4431), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), - [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8495), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5873), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), - [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), - [4617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 1, 0, 0), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [4623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [4625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9064), - [4631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 56), - [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [4637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9053), - [4640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11398), - [4644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6872), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7231), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6929), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), - [4654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4455), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), - [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8409), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), - [4666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), - [4669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), - [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7157), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7285), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6563), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6497), - [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4830), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), - [4684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9719), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6501), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6451), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9861), - [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11406), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [4702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7209), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7255), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7345), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6583), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6413), - [4712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4837), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), - [4716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9714), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6417), - [4724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6608), - [4726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11249), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6425), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9853), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6725), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9331), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8611), - [4738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9064), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10376), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9808), - [4747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10267), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [4751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), - [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10993), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), - [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), - [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), - [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4386), - [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10557), - [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10917), - [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), - [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [4789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7591), - [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4603), - [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6374), - [4799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9476), - [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6386), - [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9096), - [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8561), - [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [4811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [4817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9066), - [4820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [4822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [4824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), - [4826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(1376), - [4829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [4831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11402), - [4833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6829), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7236), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6871), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5529), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), - [4843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4196), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), - [4847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8080), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), - [4857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), - [4859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9389), - [4861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [4863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [4865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [4867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7784), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7784), - [4871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11404), - [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6834), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7247), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6850), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), - [4883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4162), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8099), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), - [4895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 15), - [4897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [4905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9855), - [4907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11405), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [4911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6879), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7252), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6928), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5799), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5651), - [4921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4485), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), - [4925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8443), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6143), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), - [4933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5792), - [4935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11235), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9834), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6198), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9443), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8595), - [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11397), - [4949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7011), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7227), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7173), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6299), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6378), - [4959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4683), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), - [4963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9712), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6356), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6326), - [4971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [4973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [4975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7167), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7232), - [4979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10264), - [4981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [4983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [4985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), - [4987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10280), - [4993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [4997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), - [4999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), - [5001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [5003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [5005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [5007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7676), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7676), - [5011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 0), - [5013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 0), - [5017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [5019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [5021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), - [5023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [5025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9061), - [5027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [5031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [5035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7827), - [5041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), - [5045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), - [5047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), - [5049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [5051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9166), - [5053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), - [5055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [5057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7655), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7655), - [5061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9166), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10211), - [5066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [5070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9061), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10261), - [5075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1, 0, 0), - [5077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [5079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1, 0, 0), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [5083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 38), - [5085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 38), - [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [5089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), - [5091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7611), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7611), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [5097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9469), - [5099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4917), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), - [5103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6065), - [5105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [5111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9571), - [5113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5378), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6716), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6641), - [5121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5219), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), - [5125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6513), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6650), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6752), - [5133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [5135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), - [5137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7654), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7654), - [5141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [5145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [5149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [5155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10169), - [5157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4707), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), - [5161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5678), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6256), - [5165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), - [5167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [5169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), - [5171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1, 0, 0), - [5173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1, 0, 0), - [5175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 46), - [5177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 46), - [5179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 47), - [5181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 47), - [5183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 0), - [5185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 0), - [5187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 114), - [5189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 114), - [5191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 115), - [5193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 115), - [5195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 116), - [5197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 116), - [5199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 138), - [5201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 138), - [5203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 139), - [5205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 139), - [5207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag_value, 1, 0, 140), - [5209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag_value, 1, 0, 140), - [5211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag_equals_value, 4, 0, 0), - [5213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag_equals_value, 4, 0, 0), - [5215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 155), - [5217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 155), - [5219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 156), - [5221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 156), - [5223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 157), - [5225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 157), - [5227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 158), - [5229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 158), - [5231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 159), - [5233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 159), - [5235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 160), - [5237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 160), - [5239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 161), - [5241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 161), - [5243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), - [5245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), - [5247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), - [5249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2739), - [5252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2739), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10296), - [5257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10443), - [5261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), - [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), - [5265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), - [5267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), - [5269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), - [5271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), - [5273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), - [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), - [5277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), - [5279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), - [5281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), - [5283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), - [5285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [5287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), - [5289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10255), - [5293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 176), SHIFT_REPEAT(1566), - [5296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 176), - [5298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 176), SHIFT_REPEAT(56), - [5301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 176), SHIFT_REPEAT(9808), - [5304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 176), SHIFT_REPEAT(4283), - [5307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 176), SHIFT_REPEAT(10267), - [5310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 176), SHIFT_REPEAT(2541), - [5313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 176), SHIFT_REPEAT(3608), - [5316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 176), SHIFT_REPEAT(10993), - [5319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 176), SHIFT_REPEAT(3629), - [5322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 176), SHIFT_REPEAT(4241), - [5325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 176), SHIFT_REPEAT(4279), - [5328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 176), SHIFT_REPEAT(3680), - [5331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 176), SHIFT_REPEAT(3680), - [5334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 176), SHIFT_REPEAT(4117), - [5337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 176), SHIFT_REPEAT(3671), - [5340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 176), SHIFT_REPEAT(4343), - [5343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 176), SHIFT_REPEAT(4159), - [5346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 176), SHIFT_REPEAT(4238), - [5349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 176), SHIFT_REPEAT(11199), - [5352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 176), SHIFT_REPEAT(4248), - [5355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 176), SHIFT_REPEAT(9743), - [5358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 176), SHIFT_REPEAT(4434), - [5361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 176), SHIFT_REPEAT(10615), - [5364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 176), SHIFT_REPEAT(4386), - [5367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 2, 0, 0), - [5369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 2, 0, 0), - [5371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [5373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [5375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4862), - [5377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10626), - [5379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), - [5381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7662), - [5383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7218), - [5385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7663), - [5387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5641), - [5389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5676), - [5391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4342), - [5393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11074), - [5395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), - [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5767), - [5399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5705), - [5401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9511), - [5403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5788), - [5405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9237), - [5407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8761), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [5411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9543), - [5413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4644), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), - [5417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5495), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5657), - [5421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), - [5423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 3, 0, 0), - [5425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 3, 0, 0), - [5427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [5429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 4, 0, 0), - [5431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 4, 0, 0), - [5433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), - [5435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), - [5437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 5, 0, 0), - [5439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 5, 0, 0), - [5441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [5445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9709), - [5447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), - [5451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5527), - [5453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5130), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6553), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6442), - [5461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4827), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), - [5465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6353), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6416), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6599), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [5477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9742), - [5479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11394), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [5483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7344), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [5493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [5497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [5505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [5507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11135), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9472), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8971), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8690), - [5519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [5521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5197), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), - [5525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6330), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [5529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9758), - [5531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4412), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), - [5535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5413), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [5541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9774), - [5543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11395), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [5547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7223), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [5557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [5561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [5569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [5571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11159), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9528), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9435), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8679), - [5583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [5587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9797), - [5589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5139), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6445), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6470), - [5597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4859), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), - [5601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6380), - [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6486), - [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6483), - [5609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6490), - [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [5613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10189), - [5615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4678), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), - [5619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5507), - [5621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 6, 0, 0), - [5623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 6, 0, 0), - [5625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8246), - [5627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10499), - [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [5633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9849), - [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [5637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7234), - [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), - [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), - [5647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4113), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), - [5651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4999), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), - [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), - [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), - [5659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5192), - [5661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 1, 0, 0), - [5663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_overlay_use_repeat1, 1, 0, 0), - [5665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), - [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), - [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), - [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5071), - [5673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3959), - [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), - [5677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4939), - [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), - [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), - [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [5687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9558), - [5689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4466), - [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), - [5693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5277), - [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [5699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9882), - [5701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11403), - [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [5705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7241), - [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [5715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [5719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [5727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), - [5729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11228), - [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9816), - [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9099), - [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8585), - [5741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [5745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9608), - [5747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4496), - [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), - [5751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5396), - [5753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), - [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5575), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), - [5761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4237), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), - [5765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5407), - [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), - [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), - [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [5775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9891), - [5777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4591), - [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), - [5781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5586), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5887), - [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6104), - [5787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4188), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), - [5795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), - [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), - [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5073), - [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), - [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [5809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9897), - [5811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5193), - [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), - [5815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6304), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6543), - [5819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6634), - [5821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4843), - [5823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5978), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6381), - [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [5831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9911), - [5833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11407), - [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [5837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7261), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [5847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [5851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [5859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [5861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11263), - [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9862), - [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8850), - [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8636), - [5873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [5877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9932), - [5879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [5883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), - [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [5887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), - [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [5891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9941), - [5893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5057), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), - [5897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6369), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6546), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [5903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9944), - [5905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [5909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [5913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), - [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [5917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9951), - [5919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [5923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), - [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [5927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [5933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9957), - [5935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10746), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [5939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7280), - [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [5949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [5953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [5961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [5963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11303), - [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9919), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8989), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8694), - [5975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [5979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9966), - [5981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [5985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [5989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [5991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 7, 0, 0), - [5993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 7, 0, 0), - [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [5997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9969), - [5999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [6003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [6007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [6011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9975), - [6013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [6017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [6021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), - [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [6025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9978), - [6027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [6031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [6035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), - [6037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 8, 0, 0), - [6039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 8, 0, 0), - [6041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 9, 0, 0), - [6043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 9, 0, 0), - [6045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 10, 0, 0), - [6047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 10, 0, 0), - [6049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5357), - [6051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6572), - [6053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [6055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [6057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5034), - [6059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10651), - [6061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), - [6063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7649), - [6065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7335), - [6067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7650), - [6069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6023), - [6071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6147), - [6073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4622), - [6075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11230), - [6077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4461), - [6079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6039), - [6081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6059), - [6083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10192), - [6085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6144), - [6087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8833), - [6089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8630), - [6091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10918), - [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9815), - [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8578), - [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10202), - [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10202), - [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10935), - [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10513), - [6107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5414), - [6109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [6111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), - [6113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [6115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), - [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [6125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9415), - [6145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9073), - [6147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), - [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), - [6151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8295), - [6153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10681), - [6155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 58), SHIFT_REPEAT(10918), - [6158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 58), SHIFT_REPEAT(180), - [6161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 58), SHIFT_REPEAT(9815), - [6164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 58), SHIFT_REPEAT(11261), - [6167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 58), - [6169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 58), SHIFT_REPEAT(10202), - [6172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 58), SHIFT_REPEAT(10202), - [6175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 58), SHIFT_REPEAT(10935), - [6178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 58), SHIFT_REPEAT(10513), - [6181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 58), SHIFT_REPEAT(5414), - [6184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 58), SHIFT_REPEAT(5414), - [6187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 58), SHIFT_REPEAT(9556), - [6190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 58), SHIFT_REPEAT(7019), - [6193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 58), SHIFT_REPEAT(11262), - [6196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_module, 2, 0, 14), - [6198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 14), - [6200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_decl_module, 2, 0, 14), SHIFT(72), - [6203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_register, 2, 0, 28), - [6205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 28), - [6207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_register, 2, 0, 29), - [6209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 29), - [6211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), - [6213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_module, 3, 0, 42), - [6215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 42), - [6217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_decl_module, 3, 0, 42), SHIFT(72), - [6220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [6222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [6224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [6228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_extern, 3, 0, 50), - [6230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 50), - [6232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [6234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_extern, 4, 0, 86), - [6236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 86), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9413), - [6240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9073), - [6243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), - [6245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), - [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9545), - [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10047), - [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9225), - [6259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10355), - [6261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6973), - [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7014), - [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9526), - [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9450), - [6269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7489), - [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7489), - [6273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8923), - [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7509), - [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10137), - [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9683), - [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8927), - [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8947), - [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8951), - [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), - [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9680), - [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9699), - [6297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [6299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [6301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), - [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [6311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), - [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [6329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [6332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [6335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), - [6337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), - [6339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), - [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8608), - [6343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 7), - [6345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 7), - [6347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 8), - [6349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 8), - [6351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), - [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9539), - [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9551), - [6357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [6359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_export, 2, 0, 13), - [6361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 13), - [6363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9069), - [6365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_loop, 2, 0, 13), - [6367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 13), - [6369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_source, 2, 0, 26), - [6371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 26), - [6373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_source, 2, 0, 27), - [6375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 27), - [6377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hide_env, 2, 0, 31), - [6379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 2, 0, 31), - [6381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_list, 2, 0, 0), - [6383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_list, 2, 0, 0), - [6385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline, 2, 0, 0), - [6387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pipeline, 2, 0, 0), REDUCE(sym_pipeline_last, 2, 0, 0), - [6390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), REDUCE(sym_pipeline_last, 2, 0, 0), - [6393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_last, 2, 0, 0), - [6395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_decl_module, 3, 0, 42), SHIFT(63), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [6400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_module, 3, 0, 51), - [6402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 51), - [6404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_wild_card, 1, 0, 0), - [6406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1, 0, 0), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [6410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scope_pattern, 1, 0, 52), - [6412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 52), - [6414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_use, 3, 0, 53), - [6416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 53), - [6418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scope_pattern, 1, 0, 54), - [6420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 54), - [6422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scope_pattern, 1, 0, 55), - [6424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 55), - [6426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_error, 3, 0, 59), - [6428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 3, 0, 59), - [6430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_while, 3, 0, 60), - [6432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 60), - [6434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_register, 3, 0, 68), - [6436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 68), - [6438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_register, 3, 0, 69), - [6440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 69), - [6442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hide_mod, 3, 0, 30), - [6444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 3, 0, 30), - [6446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_hide, 3, 0, 71), - [6448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_hide, 3, 0, 71), - [6450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_new, 3, 0, 72), - [6452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_new, 3, 0, 72), - [6454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3, 0, 79), - [6456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 79), - [6458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline, 3, 0, 0), - [6460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pipeline, 3, 0, 0), REDUCE(sym_pipeline_last, 3, 0, 0), - [6463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 3, 0, 0), REDUCE(sym_pipeline_last, 3, 0, 0), - [6466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_last, 3, 0, 0), - [6468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_bracks, 3, 0, 0), - [6470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), - [6472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_module, 4, 0, 87), - [6474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 87), - [6476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_use, 4, 0, 88), - [6478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 88), - [6480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [6482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), - [6484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 4, 0, 94), - [6486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 94), - [6488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_extern, 4, 0, 95), - [6490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 95), - [6492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_list, 2, 0, 0), - [6494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), - [6496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_error, 4, 0, 100), - [6498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 4, 0, 100), - [6500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(2511), - [6503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_parens, 3, 0, 0), - [6505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), - [6507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9069), - [6510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [6512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [6514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), - [6516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 5, 0, 134), - [6518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 134), - [6520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_extern, 5, 0, 135), - [6522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 135), - [6524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 5, 0, 141), - [6526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 141), - [6528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_list, 3, 0, 142), - [6530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 142), - [6532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 5, 0, 146), - [6534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 146), - [6536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), - [6538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [6542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 5, 0, 150), - [6544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 150), - [6546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), - [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), - [6550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1534), - [6553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(109), - [6556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(10047), - [6559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(11393), - [6562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(2631), - [6565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), - [6567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(10467), - [6570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6973), - [6573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7014), - [6576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(9526), - [6579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(9450), - [6582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7489), - [6585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7489), - [6588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(8923), - [6591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7509), - [6594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5414), - [6597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(10137), - [6600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5415), - [6603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(11082), - [6606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(9683), - [6609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(10094), - [6612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5541), - [6615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(11220), - [6618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5338), - [6621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), - [6623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 6, 0, 163), - [6625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 163), - [6627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 6, 0, 164), - [6629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 164), - [6631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), - [6633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__terminator, 1, 0, 0), - [6635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__terminator, 1, 0, 0), - [6637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 6, 0, 169), - [6639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 169), - [6641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 6, 0, 170), - [6643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 170), - [6645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), - [6647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [6649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 6, 0, 171), - [6651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 171), - [6653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_bracks, 2, 0, 0), - [6655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), - [6657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_parens, 2, 0, 0), - [6659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), - [6661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 6, 0, 180), - [6663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 180), - [6665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 6, 0, 181), - [6667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 181), - [6669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [6671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), - [6673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration, 1, 0, 0), - [6675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration, 1, 0, 0), REDUCE(sym__declaration_last, 1, 0, 0), - [6678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), REDUCE(sym__declaration_last, 1, 0, 0), - [6681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_last, 1, 0, 0), - [6683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_decl_module, 2, 0, 14), SHIFT(63), - [6686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 1, 0, 0), - [6688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), - [6690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), REDUCE(sym__statement_last, 1, 0, 0), - [6693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), REDUCE(sym__statement_last, 1, 0, 0), - [6696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_last, 1, 0, 0), - [6698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 7, 0, 186), - [6700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 186), - [6702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_statement, 1, 0, 0), - [6704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), - [6706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 7, 0, 194), - [6708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 194), - [6710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 7, 0, 195), - [6712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 195), - [6714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 7, 0, 196), - [6716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 196), - [6718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 7, 0, 197), - [6720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 197), - [6722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stmt_hide, 1, 0, 0), - [6724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_hide, 1, 0, 0), - [6726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stmt_overlay, 1, 0, 0), - [6728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_overlay, 1, 0, 0), - [6730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 7, 0, 199), - [6732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 7, 0, 199), - [6734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 8, 0, 202), - [6736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 202), - [6738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 8, 0, 203), - [6740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 203), - [6742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 8, 0, 204), - [6744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 204), - [6746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 9, 0, 205), - [6748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 9, 0, 205), - [6750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, 0, 9), - [6752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 9), - [6754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, 0, 11), - [6756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 11), - [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4445), - [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9379), - [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), - [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), - [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [6768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11130), - [6770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9954), - [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [6776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), - [6778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [6780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9960), - [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11357), - [6786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), - [6788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), - [6790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), - [6792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), REDUCE(sym__declaration_parenthesized_last, 1, 0, 0), - [6795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), REDUCE(sym__declaration_parenthesized_last, 1, 0, 0), - [6798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_parenthesized_last, 1, 0, 0), - [6800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), - [6802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), REDUCE(sym_pipeline_parenthesized_last, 2, 0, 0), - [6805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), REDUCE(sym_pipeline_parenthesized_last, 2, 0, 0), - [6808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_parenthesized_last, 2, 0, 0), - [6810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [6812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), - [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10584), - [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11050), - [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), - [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [6822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_last, 2, 0, 0), - [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9392), - [6826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 58), SHIFT_REPEAT(11197), - [6829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 58), SHIFT_REPEAT(180), - [6832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 58), SHIFT_REPEAT(9545), - [6835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 58), SHIFT_REPEAT(11261), - [6838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 58), SHIFT_REPEAT(10202), - [6841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 58), SHIFT_REPEAT(10202), - [6844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 58), SHIFT_REPEAT(10935), - [6847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 58), SHIFT_REPEAT(10513), - [6850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 58), SHIFT_REPEAT(5414), - [6853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 58), SHIFT_REPEAT(5414), - [6856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 58), SHIFT_REPEAT(9556), - [6859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 58), SHIFT_REPEAT(7019), - [6862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 58), SHIFT_REPEAT(11262), - [6865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_last, 3, 0, 0), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10226), - [6869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), - [6871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), - [6873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_last, 1, 0, 0), - [6875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_parenthesized, 3, 0, 0), - [6877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pipeline_parenthesized, 3, 0, 0), REDUCE(sym_pipeline_parenthesized_last, 3, 0, 0), - [6880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 3, 0, 0), REDUCE(sym_pipeline_parenthesized_last, 3, 0, 0), - [6883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_parenthesized_last, 3, 0, 0), - [6885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_last, 1, 0, 0), - [6887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), - [6889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), REDUCE(sym__statement_parenthesized_last, 1, 0, 0), - [6892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), REDUCE(sym__statement_parenthesized_last, 1, 0, 0), - [6895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_parenthesized_last, 1, 0, 0), - [6897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9068), - [6899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), - [6901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const, 2, 0, 10), - [6903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 10), - [6905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9068), - [6908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias, 4, 0, 89), - [6910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 89), - [6912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern, 3, 0, 90), - [6914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 90), - [6916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 3, 0, 0), - [6918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern, 4, 0, 137), - [6920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 137), - [6922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body_statement, 1, 0, 0), - [6924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), - [6926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10216), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9907), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [6938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11194), - [6948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [6954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 10), - [6956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 10), - [6958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 10), - [6960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 10), - [6962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), - [6964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), - [6966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), - [6968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [6970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [6972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [6974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), - [6976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), - [6978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias, 5, 0, 133), - [6980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 133), - [6982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [6984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [6986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [6988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [6990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [6992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 137), - [6994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 137), - [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), - [6998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), - [7000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [7002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), - [7004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 41), - [7006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 41), - [7008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_let, 2, 0, 10), - [7010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 10), - [7012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [7016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 89), - [7018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 89), - [7020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 133), - [7022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 133), - [7024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 3, 0, 0), - [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [7028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 90), - [7030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 90), - [7032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 10), - [7034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 10), - [7036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), - [7038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const, 3, 0, 41), - [7040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 41), - [7042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), - [7044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_mut, 2, 0, 10), - [7046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 10), - [7048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [7050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [7052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), - [7054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), - [7056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [7058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), - [7060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [7062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [7066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2, 0, 0), - [7068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), - [7070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10512), - [7072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7678), - [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7679), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6630), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6502), - [7080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5083), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), - [7084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11260), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6590), - [7088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), - [7090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), - [7092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), - [7094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), - [7096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), - [7098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), - [7100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), - [7102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), - [7104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), - [7106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9077), - [7108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9077), - [7111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9063), - [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9075), - [7115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9075), - [7118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5399), - [7120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4574), - [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), - [7124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9063), - [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), - [7129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), - [7131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), - [7133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4642), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), - [7137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), - [7139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), - [7141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5105), - [7143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4399), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [7151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7057), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7176), - [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10205), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10260), - [7159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7701), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7701), - [7163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9448), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7797), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10245), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10372), - [7171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [7175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7712), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7713), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6373), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6184), - [7183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4887), - [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), - [7187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11184), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [7195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9842), - [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [7199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7719), - [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7720), - [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [7207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [7211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11292), - [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8820), - [7221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8820), - [7224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10501), - [7226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7635), - [7228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7319), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7636), - [7232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6373), - [7234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6184), - [7236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), - [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), - [7240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11021), - [7242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), - [7244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), - [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [7248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), - [7250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), - [7252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), - [7254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9078), - [7258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), - [7260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [7264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [7268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), - [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [7272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), - [7274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7687), - [7276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7227), - [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7688), - [7280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6718), - [7282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6472), - [7284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5179), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), - [7288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11367), - [7290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6609), - [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6614), - [7294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9078), - [7297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), - [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [7301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9876), - [7303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7725), - [7305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7261), - [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7726), - [7309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [7311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [7313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [7317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10899), - [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [7321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), - [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [7325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [7327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10694), - [7329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), - [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10233), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [7337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7791), - [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7791), - [7341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7718), - [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7718), - [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [7347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9935), - [7349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7731), - [7351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7280), - [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7732), - [7355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [7357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [7359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [7363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11254), - [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [7367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [7371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10643), - [7373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), - [7375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), - [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [7379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9629), - [7381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7656), - [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7657), - [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [7389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [7393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11005), - [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [7401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9821), - [7403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7695), - [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7696), - [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), - [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), - [7411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3972), - [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), - [7415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11069), - [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), - [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5065), - [7421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7850), - [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7706), - [7425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), - [7427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), - [7429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), - [7431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), - [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [7435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7778), - [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7778), - [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [7441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), - [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [7445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9681), - [7447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7669), - [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7670), - [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [7455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [7459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11152), - [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [7465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), - [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [7469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), - [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [7473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), - [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [7477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7711), - [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7711), - [7481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [7483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), - [7485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [7495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), - [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [7513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), - [7515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), - [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [7521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), - [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [7525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), - [7527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), - [7529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), - [7531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), - [7533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), - [7535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 113), - [7537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 113), - [7539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 18), - [7541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 1, 0, 18), - [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [7545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 112), - [7547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 112), - [7549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 106), - [7551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 106), - [7553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 107), - [7555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 107), - [7557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 18), - [7559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 18), - [7561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_body, 2, 0, 18), - [7563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 18), - [7565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_body, 3, 0, 57), - [7567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 2, 0, 0), - [7569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 2, 0, 0), - [7571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [7573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4480), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11068), - [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [7579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10489), - [7581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), - [7583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), - [7585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [7587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11382), - [7589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4060), - [7591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10590), - [7593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), - [7595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), - [7597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4215), - [7599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10525), - [7601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), - [7603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), - [7605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11247), - [7607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), - [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [7613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10611), - [7615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), - [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), - [7621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11322), - [7623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4494), - [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10384), - [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10274), - [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), - [7631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10564), - [7633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), - [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [7639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4420), - [7641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), - [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [7645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9872), - [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [7649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11340), - [7651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), - [7653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), - [7655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [7659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10765), - [7661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), - [7663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3891), - [7665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11337), - [7667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3787), - [7669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), - [7671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), - [7673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), - [7675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10735), - [7677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), - [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), - [7683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11118), - [7685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4254), - [7687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), - [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [7691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), - [7693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9381), - [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9839), - [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [7705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11093), - [7707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3939), - [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [7713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), - [7715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11286), - [7717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894), - [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), - [7723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3990), - [7725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10755), - [7727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), - [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [7733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), - [7735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), - [7737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), - [7739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11173), - [7741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3989), - [7743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), - [7745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(3593), - [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [7750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), - [7752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9255), - [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), - [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [7766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(3595), - [7769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), - [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), - [7773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3908), - [7775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), - [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), - [7779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(3633), - [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [7784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), - [7786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3813), - [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), - [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), - [7792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10796), - [7794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), - [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), - [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), - [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [7802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), - [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [7806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), - [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), - [7810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), - [7812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9361), - [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), - [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9885), - [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [7824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11006), - [7826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4249), - [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), - [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), - [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), - [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), - [7836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), - [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9879), - [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [7844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4335), - [7846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), - [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), - [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), - [7852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(3652), - [7855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), - [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), - [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), - [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [7865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4450), - [7867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(3644), - [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [7872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(3638), - [7875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(3662), - [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [7882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9040), - [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [7886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), - [7888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), - [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [7892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7714), - [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7714), - [7896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), - [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [7902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10506), - [7904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), - [7906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), - [7908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5141), - [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [7912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10731), - [7914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3977), - [7916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), - [7918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11239), - [7920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4872), - [7922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7775), - [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7775), - [7926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), - [7928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9128), - [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), - [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), - [7936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), - [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [7942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(3668), - [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), - [7947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9040), - [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), - [7952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), - [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [7956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4334), - [7958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), - [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), - [7962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7769), - [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7769), - [7966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(3686), - [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), - [7971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(3685), - [7974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9032), - [7977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7781), - [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7781), - [7981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), - [7983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), - [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [7987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9032), - [7989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), - [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [7993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9492), - [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [7997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11097), - [7999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4391), - [8001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4390), - [8003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), - [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), - [8007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11310), - [8009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4565), - [8011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4668), - [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [8015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), - [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), - [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [8021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10683), - [8023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), - [8025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4058), - [8027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11038), - [8029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5104), - [8031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4573), - [8033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), - [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), - [8037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10645), - [8039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4294), - [8041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4261), - [8043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5388), - [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), - [8047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), - [8049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9337), - [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), - [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), - [8057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(3731), - [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), - [8062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9054), - [8064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10089), - [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [8068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11223), - [8070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4579), - [8072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), - [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), - [8076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11257), - [8078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4762), - [8080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4709), - [8082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8902), - [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [8086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), - [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [8090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), - [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), - [8094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4897), - [8096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4290), - [8098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4341), - [8100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3881), - [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [8104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [8106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), - [8109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9343), - [8111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11217), - [8113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4750), - [8115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4824), - [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), - [8119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4731), - [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), - [8125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(3719), - [8128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9054), - [8131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), - [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [8137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(3744), - [8140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), - [8142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8902), - [8145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), - [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [8149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4534), - [8151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7776), - [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7776), - [8155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), - [8157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3857), - [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), - [8161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7652), - [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7652), - [8165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), - [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [8169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(3802), - [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), - [8174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), - [8176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3919), - [8178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), - [8180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), - [8182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), - [8184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9333), - [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), - [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), - [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), - [8194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9050), - [8196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), - [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), - [8200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [8202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8919), - [8204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [8206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), REDUCE(sym__list_item_expression, 1, 0, 0), - [8209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_expression, 1, 0, 0), - [8211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [8213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [8216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [8218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), - [8221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3917), - [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [8225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3936), - [8227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4033), - [8229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3942), - [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), - [8233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), - [8235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [8237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), - [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [8241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), - [8243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), - [8245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9050), - [8248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7750), - [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7750), - [8252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), - [8254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), - [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [8258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3859), - [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), - [8262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5172), - [8264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4414), - [8266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4571), - [8268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11141), - [8270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4846), - [8272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5088), - [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), - [8278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), - [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), - [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [8286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(3774), - [8289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(3794), - [8292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [8294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), - [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [8298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), - [8300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 4), - [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), - [8304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), - [8306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), - [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), - [8310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), - [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), - [8314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 21), - [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), - [8318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [8320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [8322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), - [8324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4073), - [8326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4311), - [8328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), - [8330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), - [8332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4061), - [8334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), - [8336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), - [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [8340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), - [8342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9041), - [8344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), - [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [8348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), - [8350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9041), - [8353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(3833), - [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), - [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), - [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), - [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [8364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), - [8366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4203), - [8368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), - [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), - [8372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), - [8374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(3858), - [8377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7724), - [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7724), - [8381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8888), - [8384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), - [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), - [8388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), - [8390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3929), - [8392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), - [8394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [8396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [8398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), - [8400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(3862), - [8403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8888), - [8405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), - [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), - [8409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3968), - [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), - [8413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), - [8415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), - [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), - [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), - [8423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(3890), - [8426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 20), - [8428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4526), - [8430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 20), - [8432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 20), - [8434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), - [8436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(10881), - [8439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(4146), - [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [8444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [8448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10897), - [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10861), - [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10156), - [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9013), - [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8587), - [8462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 177), - [8464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 177), - [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [8468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element, 2, 0, 4), - [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [8472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element, 2, 0, 0), - [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), - [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), - [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), - [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), - [8482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7703), - [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7703), - [8486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4172), - [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [8490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7727), - [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7727), - [8494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9036), - [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), - [8499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9055), - [8501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(3912), - [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), - [8506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9055), - [8509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), - [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), - [8513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), - [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), - [8517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), - [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), - [8521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), - [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), - [8525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), - [8527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4267), - [8529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), - [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), - [8533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(3951), - [8536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4198), - [8538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7761), - [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7761), - [8542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4296), - [8544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), - [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), - [8548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), - [8550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4314), - [8552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 3, 0, 0), - [8554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 3, 0, 0), - [8556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 4, 0, 0), - [8558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 4, 0, 0), - [8560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9036), - [8562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), - [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), - [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), - [8568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10519), - [8570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10813), - [8572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5024), - [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), - [8576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), - [8578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9047), - [8580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9047), - [8583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), - [8585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4388), - [8587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4266), - [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), - [8591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(3925), - [8594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), - [8596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4217), - [8598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(3988), - [8601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), - [8603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [8607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [8611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), - [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11178), - [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9726), - [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9330), - [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8547), - [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), - [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), - [8627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), - [8629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4169), - [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), - [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), - [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10286), - [8637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4207), - [8639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), - [8641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), - [8643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), - [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), - [8647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9345), - [8649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5085), - [8651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5087), - [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [8655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10565), - [8657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4835), - [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), - [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), - [8663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10753), - [8665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6393), - [8667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4130), - [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), - [8672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7707), - [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7707), - [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), - [8678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5291), - [8680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5292), - [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), - [8684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), - [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [8688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_starts_with_sign, 2, 0, 0), - [8690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_starts_with_sign, 2, 0, 0), - [8692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4321), - [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), - [8696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), - [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), - [8700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4372), - [8702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4382), - [8704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 17), - [8706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 17), REDUCE(sym__list_item_expression, 1, 0, 17), - [8709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_expression, 1, 0, 17), - [8711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4389), - [8713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4396), - [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), - [8717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4140), - [8720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9039), - [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), - [8724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 18), - [8726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 2, 0, 18), - [8728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 18), - [8730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4097), - [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), - [8735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4353), - [8737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 3, 0, 57), - [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), - [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), - [8743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4340), - [8745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4597), - [8747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4108), - [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10207), - [8752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4346), - [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), - [8756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [8758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), - [8761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10516), - [8763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4996), - [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), - [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), - [8769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6549), - [8771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4177), - [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), - [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), - [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), - [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [8781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7734), - [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7734), - [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), - [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), - [8789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4357), - [8791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6823), - [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6825), - [8795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5207), - [8797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4973), - [8799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), - [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [8803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 4), - [8805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 4), - [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), - [8809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4253), - [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), - [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), - [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), - [8817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4239), - [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), - [8821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), - [8823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), - [8825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(4070), - [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), - [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), - [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), - [8834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element, 3, 0, 4), - [8836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 4), - [8838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element, 3, 0, 0), - [8840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), - [8842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 21), - [8844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 21), - [8846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), - [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), - [8850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5431), - [8852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5432), - [8854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9039), - [8857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4665), - [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), - [8861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9900), - [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [8865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11123), - [8867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5493), - [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5493), - [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), - [8873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 190), - [8875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 190), SHIFT_REPEAT(7816), - [8878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 190), SHIFT_REPEAT(7416), - [8881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 190), SHIFT_REPEAT(7434), - [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10841), - [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7816), - [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7416), - [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7434), - [8892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), - [8894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3947), - [8896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), - [8898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9321), - [8900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5562), - [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5563), - [8904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10982), - [8906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 1, 0, 0), - [8908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 1, 0, 0), - [8910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4023), - [8912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4531), - [8914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), - [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), - [8918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), - [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [8922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11329), - [8924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5647), - [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5647), - [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), - [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), - [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), - [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), - [8936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7722), - [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7722), - [8940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 102), - [8942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 102), - [8944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 103), - [8946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 103), - [8948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 17), - [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), - [8952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5490), - [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), - [8956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(4194), - [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), - [8961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4023), - [8964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 19), - [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), - [8968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 19), - [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10588), - [8972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5559), - [8974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4478), - [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), - [8978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4516), - [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), - [8982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4671), - [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), - [8986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4250), - [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), - [8991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6861), - [8993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9289), - [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6866), - [8997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5538), - [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), - [9001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11025), - [9003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 1, 0, 0), - [9005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 1, 0, 0), - [9007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9191), - [9009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5945), - [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), - [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11070), - [9015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4553), - [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), - [9019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9191), - [9022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4286), - [9025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6998), - [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6952), - [9029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5980), - [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5991), - [9033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6843), - [9035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9297), - [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6875), - [9039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5511), - [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), - [9043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11192), - [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), - [9047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [9051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10475), - [9055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5503), - [9057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6840), - [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6841), - [9061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), - [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), - [9065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 172), - [9067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 172), - [9069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 175), - [9071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 175), - [9073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), - [9077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5580), - [9079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5581), - [9081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4235), - [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), - [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), - [9088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4300), - [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10485), - [9093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5594), - [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), - [9097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 198), - [9099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 198), - [9101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 177), - [9103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 177), - [9105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), - [9107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7045), - [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7053), - [9111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 20), - [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), - [9115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9369), - [9117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5825), - [9119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5826), - [9121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11315), - [9123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9043), - [9125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [9129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), - [9133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8856), - [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), - [9137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7767), - [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7767), - [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), - [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), - [9145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 174), - [9147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 174), - [9149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9281), - [9152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6858), - [9154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9313), - [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6880), - [9158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5730), - [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), - [9162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10776), - [9164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9281), - [9166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8829), - [9168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4711), - [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), - [9172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), - [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), - [9176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), - [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), - [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), - [9182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), - [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), - [9186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8955), - [9188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9230), - [9190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5754), - [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), - [9194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10862), - [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), - [9198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8849), - [9200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9293), - [9202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5892), - [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5897), - [9206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11098), - [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), - [9210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_expression, 1, 10, 0), - [9212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_expression, 1, 10, 0), - [9214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), - [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [9218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8955), - [9221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_expression, 1, 0, 0), - [9223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_expression, 1, 0, 0), - [9225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8829), - [9228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(4430), - [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), - [9233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), - [9235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4488), - [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), - [9240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(4451), - [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10492), - [9245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6141), - [9247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6916), - [9249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9301), - [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6918), - [9253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11295), - [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), - [9257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8849), - [9260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 179), - [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), - [9264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 179), - [9266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4418), - [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), - [9271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6937), - [9273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9252), - [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6938), - [9277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), - [9279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4739), - [9281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), - [9283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9341), - [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), - [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6259), - [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6265), - [9291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8856), - [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), - [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), - [9298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), - [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), - [9302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4354), - [9305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6321), - [9307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5335), - [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), - [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), - [9313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11245), - [9315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5990), - [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5990), - [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6403), - [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10566), - [9323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5725), - [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10511), - [9327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5770), - [9329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9043), - [9332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6824), - [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6826), - [9336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 93), - [9338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 173), - [9340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 173), - [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), - [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [9346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6932), - [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6933), - [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10580), - [9352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5944), - [9354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4948), - [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [9358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4621), - [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), - [9363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7745), - [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7745), - [9367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7779), - [9369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4866), - [9371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4840), - [9373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), - [9375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9179), - [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), - [9379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), - [9381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4853), - [9383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7076), - [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7000), - [9387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6400), - [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6295), - [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), - [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), - [9395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9121), - [9397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), - [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), - [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), - [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10498), - [9405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10959), - [9407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5994), - [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), - [9411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), - [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), - [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), - [9417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8862), - [9419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4839), - [9421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6868), - [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6869), - [9425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5694), - [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), - [9429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 179), - [9431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 179), - [9433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4849), - [9435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9046), - [9437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4262), - [9439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9046), - [9442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 1, 0, 0), - [9444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 1, 0, 0), - [9446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4525), - [9449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4832), - [9451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4947), - [9453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6983), - [9455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8843), - [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6984), - [9459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6110), - [9461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), - [9463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4875), - [9465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4989), - [9467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4687), - [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), - [9471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4868), - [9473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4971), - [9475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3882), - [9477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), - [9479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(4533), - [9482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), - [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [9486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4884), - [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), - [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7357), - [9492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4488), - [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), - [9496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9272), - [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), - [9500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8862), - [9503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), - [9505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4855), - [9507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9121), - [9510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9179), - [9513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), - [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), - [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), - [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5298), - [9521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4700), - [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), - [9526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4703), - [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5102), - [9531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9086), - [9534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(4776), - [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), - [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), - [9541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4749), - [9544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5211), - [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), - [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10637), - [9550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10811), - [9552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6457), - [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9120), - [9556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4907), - [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), - [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), - [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), - [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), - [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10247), - [9568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5158), - [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), - [9572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5195), - [9574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9329), - [9576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6389), - [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6390), - [9580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4695), - [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4957), - [9585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4960), - [9587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4930), - [9589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4975), - [9591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4997), - [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), - [9595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), - [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7369), - [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7302), - [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7304), - [9603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), - [9605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9086), - [9607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4877), - [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5282), - [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), - [9613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5140), - [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5314), - [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), - [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), - [9621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4344), - [9623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5106), - [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), - [9627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5125), - [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), - [9631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9120), - [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10488), - [9636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11388), - [9638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6332), - [9640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4994), - [9642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9305), - [9644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6337), - [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6339), - [9648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6896), - [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6897), - [9652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6103), - [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), - [9656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [9658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5174), - [9660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7059), - [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7062), - [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10319), - [9666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), - [9668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5199), - [9670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4752), - [9673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5165), - [9675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9049), - [9677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8995), - [9680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6887), - [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6888), - [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), - [9686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9049), - [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8995), - [9691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7244), - [9693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9309), - [9695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7245), - [9697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6514), - [9699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6516), - [9701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11224), - [9703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8909), - [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9274), - [9707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5403), - [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), - [9711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(4854), - [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), - [9716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7733), - [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7733), - [9720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4065), - [9722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5327), - [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), - [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8980), - [9728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4416), - [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), - [9732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7043), - [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7044), - [9736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6434), - [9738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6435), - [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10268), - [9742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9364), - [9744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5117), - [9746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6883), - [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6884), - [9750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 191), - [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10519), - [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), - [9756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), - [9758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5261), - [9760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8980), - [9763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4695), - [9765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 10, 0), - [9767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 10, 0), - [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), - [9771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4851), - [9774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 1, 0, 32), - [9776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 1, 0, 32), - [9778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), - [9780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), - [9782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), - [9784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), - [9786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5259), - [9788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), - [9790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), - [9792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), - [9794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), - [9796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), - [9798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), - [9800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), - [9802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), - [9804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), - [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9001), - [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), - [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), - [9812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [9814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 0, 0), - [9816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), - [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10603), - [9820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11311), - [9822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5244), - [9824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 91), - [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8151), - [9828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9127), - [9830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6491), - [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6511), - [9834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7289), - [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7290), - [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), - [9840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7083), - [9842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7086), - [9844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8909), - [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5319), - [9849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6611), - [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6612), - [9853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6848), - [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6851), - [9857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4613), - [9859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 1, 0, 35), - [9861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 1, 0, 35), - [9863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), - [9865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), - [9867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), - [9869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), - [9871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5267), - [9873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), - [9875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), - [9877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), - [9879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), - [9881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), - [9883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), - [9885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), - [9887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), - [9889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), - [9891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4621), - [9893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6473), - [9895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6487), - [9897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9376), - [9899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10953), - [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10514), - [9903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6690), - [9905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4956), - [9907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5295), - [9909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9364), - [9912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9274), - [9915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4825), - [9918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9048), - [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), - [9923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6957), - [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6964), - [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9257), - [9929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5576), - [9931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5946), - [9933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5488), - [9935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), - [9937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6692), - [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6693), - [9941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8932), - [9943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 2, 0, 73), - [9945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 2, 0, 73), - [9947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), - [9949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), - [9951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), - [9953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), - [9955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), - [9957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), - [9959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), - [9961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), - [9963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), - [9965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), - [9967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), - [9969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), - [9971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), - [9973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), - [9975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9057), - [9977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 2, 0, 74), - [9979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 2, 0, 74), - [9981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), - [9983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), - [9985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), - [9987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), - [9989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), - [9991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), - [9993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), - [9995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), - [9997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), - [9999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), - [10001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), - [10003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), - [10005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), - [10007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9057), - [10010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6959), - [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6960), - [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), - [10016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5537), - [10018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), - [10020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9065), - [10022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9065), - [10025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5479), - [10027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), - [10029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 187), - [10031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4851), - [10033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9257), - [10036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9048), - [10038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7297), - [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7298), - [10042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6648), - [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6674), - [10046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8932), - [10049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7742), - [10051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7742), - [10053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 189), - [10055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5290), - [10057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), - [10059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4462), - [10061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), - [10063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5548), - [10065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5525), - [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), - [10069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5606), - [10071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), - [10073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), - [10075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), - [10077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), - [10079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5510), - [10081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), - [10083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), - [10085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), - [10087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), - [10089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), - [10091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), - [10093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), - [10095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), - [10097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), - [10099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9196), - [10101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), - [10103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), - [10105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), - [10107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), - [10109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5536), - [10111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), - [10113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), - [10115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), - [10117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), - [10119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), - [10121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), - [10123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), - [10125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), - [10127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), - [10129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), - [10131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5483), - [10133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), - [10135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5535), - [10137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10301), - [10139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), - [10141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 167), - [10143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6894), - [10145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6895), - [10147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9001), - [10150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [10152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [10154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [10156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [10164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [10168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [10170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [10172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [10174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [10176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [10178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [10180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [10182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5626), - [10184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5867), - [10186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9343), - [10188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5727), - [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10423), - [10192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4881), - [10194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9343), - [10197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(5241), - [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5906), - [10202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), - [10204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5668), - [10206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5776), - [10208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7266), - [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7279), - [10212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6675), - [10214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6662), - [10216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5840), - [10218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6248), - [10220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), - [10222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5879), - [10224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), - [10226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), - [10228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), - [10230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), - [10232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), - [10234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), - [10236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), - [10238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), - [10240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), - [10242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), - [10244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), - [10246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), - [10248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), - [10250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7325), - [10252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7348), - [10254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10225), - [10256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 167), - [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), - [10260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5747), - [10262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5482), - [10264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), - [10266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), - [10268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), - [10270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), - [10272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), - [10274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), - [10276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), - [10278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), - [10280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), - [10282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), - [10284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), - [10286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), - [10288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), - [10290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5509), - [10292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [10294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [10296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [10300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [10306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), - [10312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), - [10314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [10316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [10318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [10320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [10322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [10324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), - [10326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), - [10328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [10330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10389), - [10332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4337), - [10334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5883), - [10336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5854), - [10338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9196), - [10341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7127), - [10343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7128), - [10345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6733), - [10347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6734), - [10349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7327), - [10351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7328), - [10353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6404), - [10355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6405), - [10357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5607), - [10359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), - [10361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [10363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [10365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [10367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [10369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [10371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [10373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [10375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [10377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [10379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [10381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [10383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [10385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [10387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [10389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), - [10391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), - [10393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [10395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [10397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [10399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [10401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [10403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), - [10405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), - [10407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [10409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7189), - [10411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7213), - [10413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), - [10415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [10417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), - [10419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9060), - [10421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(5506), - [10424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6247), - [10426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [10428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [10430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), - [10432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9029), - [10434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5777), - [10436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7410), - [10438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7411), - [10440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), - [10442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [10444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [10446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [10448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [10450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), - [10452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6080), - [10454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7774), - [10456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7774), - [10458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10348), - [10460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [10462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [10464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [10466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [10468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [10470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [10472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [10474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [10476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6156), - [10478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5714), - [10480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6171), - [10482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9029), - [10485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10336), - [10487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9060), - [10490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10311), - [10492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4631), - [10494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6142), - [10496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7108), - [10498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7131), - [10500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [10502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [10504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [10506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [10508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), - [10510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [10512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6250), - [10514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [10516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [10518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [10520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5927), - [10522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), - [10524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6168), - [10526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), - [10528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10219), - [10530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7491), - [10532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7492), - [10534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [10536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [10538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [10540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [10542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [10544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [10546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [10548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [10550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [10552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [10554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [10556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [10558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [10560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [10562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), - [10564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), - [10566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), - [10568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4657), - [10570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), - [10572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4658), - [10574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), - [10576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4659), - [10578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), - [10580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), - [10582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5153), - [10584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [10586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [10588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [10590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), - [10592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), - [10594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [10596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), - [10598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9072), - [10600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [10602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), - [10604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [10606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [10608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [10610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7207), - [10612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7211), - [10614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), - [10616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), - [10618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [10620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [10622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [10624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [10626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [10628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [10630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [10632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [10634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), - [10636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [10638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [10640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), - [10642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), - [10644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6361), - [10646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [10648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [10650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6076), - [10652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6587), - [10654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [10656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [10658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [10660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [10662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [10664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10359), - [10666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [10668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [10670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7449), - [10672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [10674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [10676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9059), - [10678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), - [10680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), - [10682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [10684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [10686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [10688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [10690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [10692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [10694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), - [10696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6371), - [10698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [10700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6297), - [10702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [10704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6293), - [10706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6588), - [10708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6162), - [10710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), - [10712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [10714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [10716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [10718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [10720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [10722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [10724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6366), - [10726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, 0, 122), - [10728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, 0, 122), - [10730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), - [10732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), - [10734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), - [10736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), - [10738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), - [10740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), - [10742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), - [10744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), - [10746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), - [10748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), - [10750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), - [10752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), - [10754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), - [10756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9072), - [10759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9059), - [10762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6368), - [10764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, 0, 124), - [10766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, 0, 124), - [10768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), - [10770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), - [10772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), - [10774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), - [10776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), - [10778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), - [10780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), - [10782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), - [10784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), - [10786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), - [10788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), - [10790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), - [10792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), - [10794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7339), - [10796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7340), - [10798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6328), - [10800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6325), - [10802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9527), - [10804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6429), - [10806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10281), - [10808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [10810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [10812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [10814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [10816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), - [10818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [10820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [10822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [10824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), - [10826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), - [10828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), - [10830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), - [10832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), - [10834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), - [10836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), - [10838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), - [10840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), - [10842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), - [10844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), - [10846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), - [10848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), - [10850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4863), - [10852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6592), - [10854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [10856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [10858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [10860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [10862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [10864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7475), - [10866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7431), - [10868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5477), - [10870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [10872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6577), - [10874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7312), - [10876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7353), - [10878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), - [10880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6585), - [10882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10347), - [10884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6438), - [10886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6431), - [10888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), - [10890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), - [10892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), - [10894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), - [10896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), - [10898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), - [10900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), - [10902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), - [10904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), - [10906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), - [10908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), - [10910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), - [10912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), - [10914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), - [10916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6554), - [10918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6436), - [10920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4864), - [10922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6424), - [10924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6324), - [10926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), - [10928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6615), - [10930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10269), - [10932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10153), - [10934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [10936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [10938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [10940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [10942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [10944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [10946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [10948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [10950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), - [10952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [10954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [10956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [10958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7476), - [10960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7479), - [10962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), - [10964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6728), - [10966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), - [10968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [10970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), - [10972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [10974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [10976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [10978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [10980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [10982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [10984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [10986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [10988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [10990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [10992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [10994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [10996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [10998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5276), - [11000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), - [11002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6639), - [11004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6663), - [11006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10333), - [11008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), REDUCE(sym__expr_binary_expression, 1, 0, 0), - [11011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [11013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), - [11015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [11017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [11019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [11021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [11023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [11025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [11027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [11029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [11031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [11033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [11035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [11037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [11039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [11041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), - [11043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [11045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [11047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [11049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [11051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [11053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [11055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [11057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [11059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [11061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [11063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [11065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [11067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [11069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [11071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [11073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [11075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [11077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [11079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [11081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [11083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [11085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [11087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [11089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [11091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [11093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [11095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [11097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [11099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [11101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [11103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), - [11105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [11107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [11109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [11111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [11113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [11115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [11117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [11119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [11121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [11123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [11125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [11127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [11129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [11131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [11133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [11135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [11137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [11139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), - [11141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), - [11143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [11145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [11147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [11149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [11151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [11153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), - [11155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [11157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [11159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [11161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [11163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [11165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [11167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [11169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [11171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), - [11173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [11175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [11177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [11179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [11181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [11183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), - [11185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [11187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [11189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [11191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [11193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [11195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [11197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [11199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [11201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [11203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [11205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [11207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [11209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [11211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [11213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [11215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [11217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [11219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [11221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [11223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [11225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [11227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [11229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [11231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [11233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [11235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [11237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [11239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [11241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [11243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [11245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [11247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [11249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [11251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [11253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [11255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [11257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [11259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [11261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [11263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [11265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [11267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [11269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [11271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [11273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [11275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [11277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [11279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [11281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [11283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [11285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [11287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [11289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [11291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [11293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [11295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [11297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [11299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [11301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [11303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [11305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [11307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [11309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [11311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [11313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [11315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [11317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [11319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [11321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [11323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [11325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [11327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [11329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [11331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [11333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [11335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [11337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [11339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [11341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [11343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [11345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [11347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [11349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [11351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [11353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [11355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [11357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [11359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [11361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [11363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [11365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [11367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [11369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [11371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [11373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [11375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [11377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [11379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [11381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [11383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [11385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [11387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [11389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [11391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [11393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [11395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [11397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [11399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [11401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [11403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [11405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [11407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [11409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [11411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [11413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [11415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [11417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [11419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [11421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [11423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [11425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [11427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [11429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [11431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [11433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [11435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [11437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [11439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [11441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [11443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [11445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [11447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [11449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [11451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [11453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [11455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [11457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [11459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [11461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [11463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [11465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [11467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [11469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [11471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [11473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [11475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [11477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [11479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [11481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [11483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [11485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [11487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [11489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [11491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [11493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [11495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [11497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [11499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [11501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [11503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [11505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [11507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [11509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [11511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [11513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [11515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [11517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [11519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [11521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [11523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [11525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [11527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [11529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [11531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [11533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [11535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [11537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [11539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [11541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [11543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [11545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [11547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [11549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [11551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [11553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [11555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [11557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [11559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [11561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [11563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [11565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [11567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [11569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [11571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [11573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [11575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [11577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [11579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [11581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [11583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [11585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [11587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [11589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [11591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [11593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [11595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [11597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [11599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [11601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [11603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [11605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [11607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [11609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [11611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [11613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [11615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [11617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [11619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [11621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [11623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [11625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [11627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [11629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [11631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [11633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [11635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [11637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [11639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [11641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [11643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [11645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [11647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [11649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [11651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [11653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [11655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [11657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [11659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [11661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [11663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [11665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [11667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [11669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [11671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [11673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [11675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [11677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [11679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [11681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [11683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [11685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [11687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [11689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [11691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [11693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [11695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [11697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [11699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [11701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [11703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [11705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [11707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [11709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [11711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [11713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [11717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [11719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [11721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [11723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [11725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [11727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [11729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [11731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [11733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [11735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [11737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [11739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [11741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [11743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [11745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10527), - [11747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7017), - [11749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7017), - [11751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7016), - [11753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9852), - [11755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [11757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11179), - [11759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7330), - [11761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7330), - [11763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7068), - [11765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9846), - [11767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7457), - [11769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6986), - [11771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6986), - [11773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7447), - [11775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [11777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10687), - [11779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7208), - [11781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7208), - [11783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7125), - [11785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [11787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10528), - [11789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7110), - [11791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7110), - [11793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7089), - [11795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [11797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10457), - [11799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7129), - [11801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7129), - [11803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7123), - [11805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11226), - [11807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7500), - [11809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7500), - [11811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7458), - [11813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7486), - [11815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7535), - [11817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7853), - [11819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6920), - [11821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6972), - [11823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7766), - [11825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11212), - [11827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7803), - [11829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7803), - [11831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7643), - [11833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11155), - [11835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7542), - [11837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7542), - [11839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7680), - [11841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8026), - [11843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7351), - [11845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7351), - [11847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10574), - [11849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7281), - [11851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7281), - [11853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7270), - [11855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11422), - [11857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7882), - [11859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7882), - [11861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9750), - [11863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [11865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10739), - [11867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7314), - [11869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7314), - [11871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7243), - [11873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7928), - [11875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10745), - [11877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7911), - [11879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [11881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10487), - [11883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7233), - [11885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7233), - [11887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7219), - [11889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10747), - [11891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7723), - [11893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7723), - [11895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7534), - [11897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7972), - [11899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7832), - [11901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8040), - [11903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7546), - [11905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11071), - [11907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8166), - [11909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8166), - [11911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8446), - [11913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7407), - [11915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7407), - [11917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10859), - [11919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8186), - [11921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8186), - [11923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6942), - [11925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7040), - [11927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11017), - [11929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7990), - [11931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7990), - [11933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7883), - [11935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8314), - [11937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7432), - [11939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7432), - [11941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7936), - [11943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8264), - [11945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7462), - [11947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7462), - [11949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10975), - [11951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8066), - [11953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8066), - [11955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8301), - [11957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9826), - [11959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11387), - [11961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7879), - [11963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7879), - [11965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8006), - [11967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10560), - [11969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7487), - [11971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7487), - [11973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7439), - [11975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6956), - [11977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7006), - [11979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10606), - [11981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10760), - [11983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7878), - [11985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7878), - [11987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7984), - [11989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8197), - [11991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6970), - [11993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6974), - [11995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9044), - [11997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6833), - [11999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6835), - [12001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7869), - [12003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7870), - [12005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9044), - [12008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(6844), - [12011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7935), - [12013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8071), - [12015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7937), - [12017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8199), - [12019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6955), - [12021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7058), - [12023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7024), - [12025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7203), - [12027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7012), - [12029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7077), - [12031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9694), - [12033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [12035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10655), - [12037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7371), - [12039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7490), - [12041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(6909), - [12044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6863), - [12046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6864), - [12048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8093), - [12050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8097), - [12052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10860), - [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8356), - [12056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8356), - [12058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7033), - [12060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7065), - [12062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7067), - [12064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8531), - [12066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7794), - [12068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7794), - [12070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8613), - [12072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7839), - [12074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7839), - [12076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7880), - [12078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10908), - [12080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8433), - [12082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8433), - [12084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10749), - [12086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8058), - [12088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8058), - [12090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8131), - [12092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9786), - [12094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [12096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10523), - [12098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7783), - [12100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7783), - [12102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7820), - [12104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9175), - [12106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6876), - [12108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6877), - [12110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8214), - [12112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8053), - [12114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(6885), - [12117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7039), - [12119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7021), - [12121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7122), - [12123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10624), - [12125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7922), - [12127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7886), - [12129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7063), - [12131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7081), - [12133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8185), - [12135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7038), - [12137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7080), - [12139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7107), - [12141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8335), - [12143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6996), - [12145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7116), - [12147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(6939), - [12150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6845), - [12152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6846), - [12154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8027), - [12156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8028), - [12158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7028), - [12160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7204), - [12162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9571), - [12164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10986), - [12166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8725), - [12168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8670), - [12170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8919), - [12173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7136), - [12175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7257), - [12177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7105), - [12179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9492), - [12181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [12183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6931), - [12185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6936), - [12187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8498), - [12189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8499), - [12191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11000), - [12193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8176), - [12195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8044), - [12197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(6981), - [12200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7147), - [12202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10526), - [12204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7931), - [12206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7931), - [12208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7989), - [12210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7163), - [12212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7187), - [12214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(6940), - [12217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8919), - [12219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7126), - [12221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7195), - [12223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7295), - [12225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7155), - [12227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8372), - [12229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7082), - [12231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8542), - [12233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7197), - [12235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7323), - [12237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9830), - [12239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11064), - [12241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8411), - [12243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8411), - [12245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8473), - [12247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6892), - [12249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6904), - [12251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8385), - [12253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8387), - [12255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(6971), - [12258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7165), - [12260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7256), - [12262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8620), - [12264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6934), - [12266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6935), - [12268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8271), - [12270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8273), - [12272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(6975), - [12275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7121), - [12277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10741), - [12279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8226), - [12281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8089), - [12283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8397), - [12285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7146), - [12287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10638), - [12289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7988), - [12291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7988), - [12293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7600), - [12295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7085), - [12297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7264), - [12299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8192), - [12301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 66), - [12303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [12305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), - [12307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8248), - [12309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10672), - [12311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 66), - [12313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7220), - [12316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), - [12318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(11379), - [12321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(11385), - [12324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(10784), - [12327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(10906), - [12330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7120), - [12332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8912), - [12334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7346), - [12336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10804), - [12338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8515), - [12340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8515), - [12342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8603), - [12344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9697), - [12346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8064), - [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11333), - [12350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8914), - [12352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7318), - [12354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7220), - [12356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [12358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11379), - [12360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11385), - [12362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10784), - [12364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10906), - [12366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10089), - [12368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [12370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [12372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [12374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10679), - [12376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7856), - [12378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7961), - [12380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [12382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6818), - [12384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6818), - [12386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [12388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [12390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6821), - [12392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6821), - [12394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7239), - [12396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8869), - [12398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7902), - [12400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(7030), - [12403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7307), - [12405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7037), - [12408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [12410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7235), - [12412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7361), - [12414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11389), - [12416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8796), - [12418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6822), - [12420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6822), - [12422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6977), - [12424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6978), - [12426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8763), - [12428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8778), - [12430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7229), - [12432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7751), - [12434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7751), - [12436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7254), - [12438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9449), - [12440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7072), - [12443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10685), - [12445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7301), - [12447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6819), - [12449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6819), - [12451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7276), - [12453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7435), - [12455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7275), - [12457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7400), - [12459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10727), - [12461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10774), - [12463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8628), - [12465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8628), - [12467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8787), - [12469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10573), - [12471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8213), - [12473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8045), - [12475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11176), - [12477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9138), - [12479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9138), - [12481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10545), - [12483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7857), - [12485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7857), - [12487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7973), - [12489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9045), - [12491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(7003), - [12494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6832), - [12496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6832), - [12498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9045), - [12501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7286), - [12503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11179), - [12505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8708), - [12507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8708), - [12509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8590), - [12511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10540), - [12513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [12515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11042), - [12517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9233), - [12519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9109), - [12521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8659), - [12523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9239), - [12525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [12527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7677), - [12529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7677), - [12531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [12533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9761), - [12535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8124), - [12537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8124), - [12539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [12541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7730), - [12543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7730), - [12545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7309), - [12547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7326), - [12549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7073), - [12551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7074), - [12553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8549), - [12555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8693), - [12557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10542), - [12559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8978), - [12561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7871), - [12563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7871), - [12565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8072), - [12567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7023), - [12570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7271), - [12572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7460), - [12574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9400), - [12576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [12578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9758), - [12580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11399), - [12582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5676), - [12584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7393), - [12586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 62), - [12588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7511), - [12590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 62), - [12592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7463), - [12594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [12596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9774), - [12598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11395), - [12600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [12602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9797), - [12604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11400), - [12606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11267), - [12608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8645), - [12610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8765), - [12612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [12614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9469), - [12616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11397), - [12618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6472), - [12620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [12622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10169), - [12624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11174), - [12626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6372), - [12628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [12630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10189), - [12632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11398), - [12634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6025), - [12636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11091), - [12638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8825), - [12640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9098), - [12642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7139), - [12645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [12647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9849), - [12649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11401), - [12651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7451), - [12653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [12655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9558), - [12657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11402), - [12659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), - [12661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6852), - [12663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6852), - [12665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9154), - [12667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [12669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9882), - [12671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11403), - [12673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7370), - [12675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9234), - [12677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10925), - [12679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8667), - [12681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8667), - [12683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8695), - [12685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7026), - [12687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7032), - [12689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8839), - [12691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8853), - [12693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [12695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9608), - [12697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11404), - [12699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), - [12701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8524), - [12703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7445), - [12705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7541), - [12707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [12709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9891), - [12711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11405), - [12713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), - [12715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [12717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9897), - [12719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11406), - [12721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6740), - [12723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6865), - [12725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6865), - [12727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [12729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9911), - [12731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11407), - [12733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [12735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [12737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [12739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [12741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9932), - [12743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11408), - [12745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [12747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [12749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9941), - [12751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10456), - [12753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [12755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9944), - [12757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11409), - [12759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [12761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7450), - [12763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7572), - [12765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(7113), - [12768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7394), - [12770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7498), - [12772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [12774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9951), - [12776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11410), - [12778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [12780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7651), - [12782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7651), - [12784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7418), - [12786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7464), - [12788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [12790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9957), - [12792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10746), - [12794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [12796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7140), - [12799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7367), - [12801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7826), - [12803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [12805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9543), - [12807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11352), - [12809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6044), - [12811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [12813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9966), - [12815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11412), - [12817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [12819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7758), - [12821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7758), - [12823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [12825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9969), - [12827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11413), - [12829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [12831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8938), - [12833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [12835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9975), - [12837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11414), - [12839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [12841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 92), - [12843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8450), - [12845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 92), - [12847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [12849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9978), - [12851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11415), - [12853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [12855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9695), - [12857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7741), - [12859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7741), - [12861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8221), - [12863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 91), - [12865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), - [12867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7899), - [12869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7441), - [12871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7808), - [12873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7214), - [12876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 110), - [12878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8250), - [12880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 110), - [12882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7446), - [12884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [12886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11393), - [12888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6831), - [12890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6831), - [12892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7485), - [12894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7625), - [12896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9463), - [12898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10266), - [12900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8463), - [12902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8715), - [12904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10907), - [12906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9482), - [12908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6878), - [12910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6878), - [12912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7508), - [12914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7843), - [12916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9122), - [12918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [12920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9709), - [12922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11396), - [12924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6147), - [12926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7639), - [12928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7639), - [12930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10332), - [12932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [12934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9742), - [12936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11394), - [12938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7448), - [12940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7666), - [12942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 63), - [12944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8243), - [12946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 63), - [12948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6940), - [12950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7376), - [12952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7647), - [12954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8785), - [12956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), - [12958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8622), - [12960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8985), - [12962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6911), - [12964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6911), - [12966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7795), - [12968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7539), - [12970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7658), - [12972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7658), - [12974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7251), - [12977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7700), - [12979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 109), - [12981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 109), - [12983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7729), - [12985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6870), - [12987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6870), - [12989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7673), - [12991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7673), - [12993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 22), - [12995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 22), - [12997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 22), - [12999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 22), - [13001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 64), - [13003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 64), - [13005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6862), - [13007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6862), - [13009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 63), - [13011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8057), - [13013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 63), - [13015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 66), - [13017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8143), - [13019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 66), - [13021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8985), - [13024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10950), - [13026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10238), - [13028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 93), - [13030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(7313), - [13033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7802), - [13035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6891), - [13037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6891), - [13039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9204), - [13041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7553), - [13043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7915), - [13045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7037), - [13047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10646), - [13049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8174), - [13051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 11, 0, 0), - [13053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 11, 0, 0), - [13055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 12, 0, 0), - [13057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 12, 0, 0), - [13059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 13, 0, 0), - [13061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 13, 0, 0), - [13063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7596), - [13065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 14, 0, 0), - [13067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 14, 0, 0), - [13069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7023), - [13071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), - [13073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(7332), - [13076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7834), - [13078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7571), - [13080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7817), - [13082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6867), - [13084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6867), - [13086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7533), - [13088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7071), - [13090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7796), - [13092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7573), - [13094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 65), - [13096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 65), - [13098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7545), - [13100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7866), - [13102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7825), - [13104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7861), - [13106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7613), - [13108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8422), - [13110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7169), - [13112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7170), - [13114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9800), - [13116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9801), - [13118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7072), - [13120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 67), - [13122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 67), - [13124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 110), - [13126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8182), - [13128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 110), - [13130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7562), - [13132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7927), - [13134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8800), - [13136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7248), - [13138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7249), - [13140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9183), - [13142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8821), - [13144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6915), - [13146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6915), - [13148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10616), - [13150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8818), - [13152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10734), - [13154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8764), - [13156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(7352), - [13159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11113), - [13161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10210), - [13163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7582), - [13165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7863), - [13167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7629), - [13169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 3, 0, 0), - [13171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7061), - [13173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7268), - [13176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 187), - [13178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(7349), - [13181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7594), - [13183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10541), - [13185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), - [13187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7659), - [13189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7659), - [13191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7691), - [13193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7868), - [13195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7324), - [13198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8477), - [13200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7785), - [13202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7785), - [13204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(7282), - [13207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 189), - [13209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7628), - [13211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 108), - [13213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 108), - [13215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7747), - [13217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7747), - [13219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7601), - [13221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7601), - [13223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [13225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [13227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7177), - [13229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7182), - [13231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9717), - [13233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9718), - [13235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9204), - [13238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7738), - [13240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7995), - [13242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7833), - [13244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7986), - [13246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7356), - [13248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7294), - [13250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9183), - [13252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8821), - [13254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7892), - [13256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7994), - [13258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7527), - [13261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7946), - [13263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7913), - [13265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7138), - [13267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9022), - [13269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7916), - [13271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8030), - [13273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7874), - [13275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8036), - [13277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7877), - [13279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9092), - [13281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7897), - [13283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8005), - [13285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8144), - [13287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(7404), - [13290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7949), - [13292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9845), - [13294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7016), - [13296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7123), - [13298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9125), - [13300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8787), - [13302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7979), - [13304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7883), - [13306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9022), - [13309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10951), - [13311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [13313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [13315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6919), - [13317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7932), - [13319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 2, 0, 0), - [13321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(7455), - [13324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7970), - [13326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7534), - [13328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7219), - [13330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8004), - [13332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7887), - [13334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8133), - [13336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 149), - [13338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 149), - [13340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7790), - [13342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7790), - [13344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9590), - [13346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7643), - [13348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11093), - [13350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11099), - [13352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [13354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [13356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9735), - [13358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11380), - [13360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [13362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [13364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7089), - [13366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9662), - [13368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8603), - [13370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7600), - [13372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9764), - [13374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10960), - [13376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [13378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [13380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9721), - [13382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7875), - [13384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(7530), - [13387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7960), - [13389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7125), - [13391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11006), - [13393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11223), - [13395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), - [13397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), - [13399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10852), - [13401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9872), - [13403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11340), - [13405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [13407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), - [13409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9960), - [13411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [13413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [13415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10968), - [13417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11257), - [13419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), - [13421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), - [13423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7480), - [13426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10796), - [13428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11185), - [13430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11097), - [13432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), - [13434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), - [13436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9954), - [13438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11346), - [13440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [13442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [13444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9900), - [13446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11123), - [13448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11310), - [13450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), - [13452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), - [13454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7898), - [13456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 4, 0, 0), - [13458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7680), - [13460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11329), - [13462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11141), - [13464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), - [13466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), - [13468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9914), - [13470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11205), - [13472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [13474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [13476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7333), - [13478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7334), - [13480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10320), - [13482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10321), - [13484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11173), - [13486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [13488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), - [13490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7458), - [13492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11381), - [13494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [13496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [13498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9926), - [13500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11237), - [13502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [13504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [13506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7681), - [13508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7681), - [13510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11419), - [13512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [13514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [13516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7682), - [13518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7682), - [13520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 5, 0, 0), - [13522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7133), - [13524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11217), - [13526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), - [13528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), - [13530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11286), - [13532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7982), - [13534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8208), - [13536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11245), - [13538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11337), - [13540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [13542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), - [13544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10755), - [13546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8131), - [13548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10765), - [13550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [13552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), - [13554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7029), - [13556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7066), - [13558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9568), - [13560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9569), - [13562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7456), - [13565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7860), - [13567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11294), - [13569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [13571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [13573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7984), - [13575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6914), - [13577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6914), - [13579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11320), - [13581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [13583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [13585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_cmd, 2, 0, 14), - [13587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_cmd, 2, 0, 14), - [13589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [13591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7780), - [13593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7780), - [13595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7139), - [13597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9552), - [13599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7240), - [13601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7242), - [13603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10342), - [13605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10343), - [13607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7497), - [13610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7976), - [13612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8194), - [13614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9125), - [13617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7642), - [13619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7642), - [13621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6873), - [13623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6873), - [13625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7667), - [13627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7667), - [13629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6853), - [13631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6853), - [13633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6856), - [13635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6856), - [13637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6881), - [13639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6881), - [13641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7971), - [13643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8086), - [13645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 136), - [13647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 136), - [13649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7862), - [13651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6989), - [13653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6989), - [13655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7008), - [13657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7008), - [13659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6910), - [13661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6910), - [13663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7154), - [13665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7999), - [13667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6923), - [13669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6923), - [13671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8000), - [13673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7966), - [13675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8041), - [13677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7549), - [13679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8022), - [13681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7640), - [13683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7640), - [13685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [13687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8013), - [13689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6995), - [13691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8023), - [13693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7819), - [13696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8079), - [13698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7550), - [13701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8210), - [13703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 63), - [13705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8215), - [13707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 63), - [13709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 110), - [13711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8113), - [13713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 110), - [13715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7969), - [13717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8294), - [13719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8098), - [13721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [13723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7570), - [13726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8254), - [13728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7805), - [13731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8142), - [13733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [13735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6940), - [13737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8047), - [13739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8065), - [13741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8172), - [13743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8247), - [13745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [13747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8241), - [13749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8347), - [13751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8025), - [13753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8379), - [13755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [13757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [13759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7708), - [13761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7708), - [13763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7251), - [13765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6990), - [13767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6990), - [13769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8029), - [13771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7660), - [13773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7660), - [13775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8054), - [13777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8377), - [13779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [13781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8049), - [13783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6882), - [13785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6882), - [13787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7644), - [13790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7031), - [13792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7031), - [13794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7702), - [13796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7702), - [13798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6893), - [13800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6893), - [13802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6898), - [13804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6898), - [13806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7838), - [13809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8043), - [13811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7052), - [13813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7052), - [13815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7306), - [13817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7258), - [13819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7273), - [13821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8096), - [13823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8382), - [13825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6905), - [13827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6905), - [13829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6954), - [13831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8008), - [13833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7598), - [13835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7598), - [13837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7599), - [13839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7599), - [13841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8146), - [13843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8467), - [13845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6899), - [13847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6899), - [13849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6900), - [13851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6900), - [13853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6901), - [13855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6901), - [13857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6902), - [13859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6902), - [13861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6903), - [13863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6903), - [13865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 66), - [13867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8179), - [13869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 66), - [13871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8060), - [13873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8188), - [13875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8296), - [13877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8088), - [13879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7721), - [13881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7721), - [13883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8201), - [13885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7178), - [13887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7179), - [13889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10234), - [13891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10235), - [13893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6948), - [13895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8198), - [13897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8164), - [13899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 143), SHIFT_REPEAT(7899), - [13902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 143), - [13904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 143), SHIFT_REPEAT(9556), - [13907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 143), SHIFT_REPEAT(7019), - [13910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7470), - [13913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7773), - [13916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6906), - [13918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6906), - [13920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8235), - [13922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7786), - [13924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7786), - [13926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8148), - [13928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [13930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 188), SHIFT_REPEAT(8378), - [13933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 188), - [13935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 188), SHIFT_REPEAT(9729), - [13938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 188), SHIFT_REPEAT(6969), - [13941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8378), - [13943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7488), - [13945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [13947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8486), - [13949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7042), - [13951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8281), - [13953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8399), - [13955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6951), - [13957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6951), - [13959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [13961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_overlay_use_repeat1, 2, 0, 0), SHIFT_REPEAT(10195), - [13964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 2, 0, 0), SHIFT_REPEAT(11186), - [13967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7190), - [13969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7190), - [13971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6953), - [13973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6953), - [13975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [13977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8328), - [13979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8346), - [13981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6985), - [13983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6985), - [13985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9037), - [13987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8353), - [13989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7762), - [13991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7762), - [13993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7551), - [13995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7955), - [13998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8456), - [14000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [14002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7305), - [14004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7305), - [14006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7644), - [14008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 63), - [14010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 63), - [14012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7072), - [14014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8364), - [14016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7772), - [14018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7772), - [14020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6946), - [14022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6946), - [14024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8407), - [14026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7728), - [14028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7728), - [14030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6991), - [14032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6991), - [14034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8376), - [14036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [14038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [14040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8386), - [14042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8389), - [14044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [14046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7075), - [14048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7075), - [14050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [14052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, 0, 110), - [14054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 5, 0, 110), - [14056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [14058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7470), - [14060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), - [14062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(8629), - [14065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9037), - [14068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [14070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7022), - [14072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8367), - [14074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8469), - [14076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [14078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [14080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5250), - [14082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), - [14084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [14086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [14088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7597), - [14090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7597), - [14092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7023), - [14094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7710), - [14096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7710), - [14098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7664), - [14100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7664), - [14102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7777), - [14104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7889), - [14107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7322), - [14109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7322), - [14111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 66), - [14113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 66), - [14115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [14117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7442), - [14119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7037), - [14121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8297), - [14123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7672), - [14125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7672), - [14127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8484), - [14129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8676), - [14131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7433), - [14133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7909), - [14136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7602), - [14138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7602), - [14140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7610), - [14142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7610), - [14144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7001), - [14146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7001), - [14148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6976), - [14150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6976), - [14152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6982), - [14154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6982), - [14156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7891), - [14159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7096), - [14161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7096), - [14163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7641), - [14165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7641), - [14167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7494), - [14169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7938), - [14172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6949), - [14174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6949), - [14176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6963), - [14178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6963), - [14180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6958), - [14182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6958), - [14184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8355), - [14186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8158), - [14188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7009), - [14190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8506), - [14192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11059), - [14194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7770), - [14196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7770), - [14198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 3, 10, 78), - [14200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9501), - [14202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [14204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [14206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7692), - [14208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7692), - [14210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7048), - [14212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7048), - [14214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7049), - [14216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7049), - [14218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7697), - [14220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7697), - [14222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [14224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8804), - [14226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9352), - [14228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7689), - [14230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7689), - [14232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7250), - [14234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7250), - [14236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7941), - [14238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9038), - [14240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7166), - [14242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7166), - [14244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7205), - [14246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7205), - [14248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 1, 10, 1), - [14250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9775), - [14252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8421), - [14254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7210), - [14256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7210), - [14258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8337), - [14260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7300), - [14262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7300), - [14264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7132), - [14266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7132), - [14268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7188), - [14270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8677), - [14272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7050), - [14274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7050), - [14276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 2, 10, 12), - [14278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9533), - [14280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8724), - [14282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [14284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8517), - [14286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7051), - [14288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7051), - [14290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 10, 12), - [14292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [14294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7690), - [14296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7690), - [14298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7717), - [14300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7717), - [14302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 49), - [14304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 49), SHIFT_REPEAT(1034), - [14307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7685), - [14309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7685), - [14311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [14313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [14315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [14317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7216), - [14319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7216), - [14321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9038), - [14324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [14326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 10, 78), - [14328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7139), - [14330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [14332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7698), - [14334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7698), - [14336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7822), - [14338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 1, 0, 165), - [14340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), - [14342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9213), - [14344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 1, 0, 166), - [14346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), - [14348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9421), - [14350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7130), - [14352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8574), - [14354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7699), - [14356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7699), - [14358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8425), - [14360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8339), - [14362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7517), - [14364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8426), - [14366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8340), - [14368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), - [14370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8797), - [14372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(8191), - [14375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8673), - [14377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7200), - [14379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7200), - [14381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7114), - [14383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7114), - [14385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7172), - [14387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7172), - [14389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [14391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [14393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 2, 10, 37), - [14395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9542), - [14397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 10, 1), - [14399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7549), - [14401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [14403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8589), - [14405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9433), - [14407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8757), - [14409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7844), - [14411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9869), - [14413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7336), - [14415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7336), - [14417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8666), - [14419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8885), - [14421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8304), - [14423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [14425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 10, 37), - [14427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7337), - [14429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7337), - [14431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7665), - [14433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7665), - [14435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8678), - [14437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8333), - [14439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8782), - [14441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8972), - [14443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8617), - [14445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9220), - [14447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8541), - [14449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 49), - [14451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1028), - [14454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1028), - [14457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [14459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [14461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8510), - [14463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8675), - [14465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [14467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9724), - [14469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [14471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(8276), - [14474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9314), - [14476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10298), - [14478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6415), - [14480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6479), - [14482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7967), - [14484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body, 2, 0, 0), - [14486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7087), - [14488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7088), - [14490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [14492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5992), - [14494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), - [14496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5780), - [14498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5998), - [14500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7225), - [14502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7225), - [14504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6187), - [14506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7968), - [14508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9187), - [14510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9186), - [14512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [14514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8917), - [14516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9483), - [14518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9504), - [14520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [14522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6338), - [14524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8457), - [14526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8748), - [14528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), - [14530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), - [14532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7148), - [14534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7148), - [14536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), - [14538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), - [14540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10297), - [14542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7158), - [14544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7158), - [14546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [14548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [14550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [14552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_last, 1, 0, 0), - [14554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipe_element_last, 1, 0, 0), SHIFT(10881), - [14557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8937), - [14559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7865), - [14561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [14563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6213), - [14565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6220), - [14567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [14569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7228), - [14571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9180), - [14573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), - [14575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), - [14577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if, 3, 0, 61), - [14579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 61), - [14581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), - [14583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8306), - [14585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8316), - [14587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7474), - [14589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8334), - [14591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8336), - [14593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), - [14595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6680), - [14597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6679), - [14599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7893), - [14601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7709), - [14603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7709), - [14605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9437), - [14607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 3, 0, 200), - [14609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9328), - [14611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8714), - [14613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6600), - [14615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6570), - [14617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(8442), - [14620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9171), - [14622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8760), - [14624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6174), - [14626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7661), - [14628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7661), - [14630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6043), - [14632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7715), - [14634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7715), - [14636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 93), - [14638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [14640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6208), - [14642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 77), SHIFT_REPEAT(157), - [14645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 77), SHIFT_REPEAT(9724), - [14648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 77), - [14650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [14652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7768), - [14654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7768), - [14656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(8489), - [14659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8957), - [14661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_try, 2, 0, 25), - [14663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 25), - [14665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9603), - [14667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 10, 78), - [14669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [14671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [14673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [14675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 3, 0, 201), - [14677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9407), - [14679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8591), - [14681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7828), - [14683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6018), - [14685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [14687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [14689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7212), - [14691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7212), - [14693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9119), - [14695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(8493), - [14698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9307), - [14700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7185), - [14702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7185), - [14704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [14706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9189), - [14708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [14710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [14712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), - [14714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [14716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [14718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7347), - [14720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7347), - [14722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [14724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), - [14726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [14728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), - [14730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), - [14732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [14734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [14736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9207), - [14738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [14740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [14742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [14744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [14746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [14748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [14750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [14752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [14754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6996), - [14756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [14758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [14760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [14762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 49), - [14764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 49), SHIFT_REPEAT(1068), - [14767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [14769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(8460), - [14772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9161), - [14774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9470), - [14776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 1, 0, 96), - [14778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9282), - [14780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9026), - [14782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9026), - [14785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), - [14787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8857), - [14789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5828), - [14791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7693), - [14793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7693), - [14795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6596), - [14797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9253), - [14799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9586), - [14801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6619), - [14803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body, 3, 0, 0), - [14805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [14807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), - [14809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7891), - [14811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), - [14813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6377), - [14815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7090), - [14817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7090), - [14819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7091), - [14821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7091), - [14823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7092), - [14825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7092), - [14827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8986), - [14829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body, 1, 0, 0), - [14831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7895), - [14833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 45), - [14835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 45), - [14837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8500), - [14839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8504), - [14841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7251), - [14843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_last, 1, 0, 4), - [14845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipe_element_last, 1, 0, 4), SHIFT(10881), - [14848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 10, 37), - [14850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 45), - [14852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 45), - [14854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8899), - [14856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10146), - [14858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9131), - [14860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 10, 1), - [14862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 10, 12), - [14864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5956), - [14866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7909), - [14868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), - [14870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9866), - [14872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [14874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [14876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [14878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10206), - [14880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6593), - [14882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 5, 0, 182), - [14884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 5, 0, 182), - [14886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(8747), - [14889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9567), - [14891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 5, 0, 183), - [14893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 5, 0, 183), - [14895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6547), - [14897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 5, 0, 184), - [14899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 5, 0, 184), - [14901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9765), - [14903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), - [14905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), - [14907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, 0, 123), - [14909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, 0, 123), - [14911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 4, 0, 151), - [14913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 4, 0, 151), - [14915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), - [14917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_try, 4, 0, 118), - [14919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 118), - [14921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9480), - [14923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), - [14925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6042), - [14927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [14929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [14931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [14933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 5, 0, 185), - [14935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 5, 0, 185), - [14937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11090), - [14939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10358), - [14941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10653), - [14943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9503), - [14945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, 0, 79), - [14947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, 0, 79), - [14949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6207), - [14951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9696), - [14953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), - [14955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4717), - [14957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [14959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5987), - [14961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [14963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), - [14965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), - [14967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 4, 0, 152), - [14969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 4, 0, 152), - [14971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8781), - [14973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8781), - [14975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9591), - [14977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), - [14979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), - [14981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 4, 0, 153), - [14983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 4, 0, 153), - [14985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_last, 1, 0, 0), - [14987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [14989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [14991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_return, 2, 0, 0), - [14993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 2, 0, 0), - [14995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 4, 0, 154), - [14997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 4, 0, 154), - [14999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [15001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, 0, 0), - [15003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), - [15005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [15007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(8803), - [15010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10052), - [15012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [15014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9776), - [15016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [15018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [15020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9494), - [15022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), - [15024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), - [15026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, 0, 120), - [15028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, 0, 120), - [15030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, 0, 121), - [15032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, 0, 121), - [15034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), - [15036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_body, 3, 0, 0), - [15038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6016), - [15040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if, 5, 0, 147), - [15042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 147), - [15044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10167), - [15046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5061), - [15048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9544), - [15050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [15052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [15054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [15056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9710), - [15058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [15060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [15062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [15064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), - [15066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), - [15068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7644), - [15070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7013), - [15072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7015), - [15074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_where_command, 2, 0, 33), - [15076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 33), - [15078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_where_command, 2, 0, 34), - [15080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 34), - [15082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7468), - [15084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9787), - [15086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [15088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_match, 4, 0, 105), - [15090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 105), - [15092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7329), - [15094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7329), - [15096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [15098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, 0, 2), - [15100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 2), - [15102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9788), - [15104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), - [15106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5500), - [15108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5983), - [15110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_where_command, 2, 0, 0), - [15112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 0), - [15114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [15116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_match, 5, 0, 101), - [15118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 101), - [15120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), - [15122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_match, 5, 0, 105), - [15124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 105), - [15126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), - [15128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9822), - [15130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), - [15132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), - [15134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [15136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [15138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5865), - [15140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9827), - [15142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [15144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [15146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), - [15148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if, 5, 0, 148), - [15150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 148), - [15152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [15154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7668), - [15156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7668), - [15158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [15160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), - [15162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9831), - [15164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [15166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [15168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), - [15170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8167), - [15172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), - [15174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), - [15176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), - [15178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), - [15180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9837), - [15182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7836), - [15184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7837), - [15186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [15188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 25), - [15190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10752), - [15192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9538), - [15194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [15196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9840), - [15198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), - [15200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), - [15202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5773), - [15204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [15206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), - [15208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), - [15210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [15212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9847), - [15214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [15216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [15218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [15220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [15222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [15224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9850), - [15226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [15228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [15230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [15232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [15234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7904), - [15236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7905), - [15238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [15240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9572), - [15242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [15244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6072), - [15246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6073), - [15248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [15250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9859), - [15252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), - [15254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [15256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), - [15258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), - [15260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8309), - [15262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8313), - [15264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9880), - [15266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8551), - [15268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8552), - [15270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9886), - [15272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), - [15274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), - [15276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9889), - [15278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), - [15280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [15282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9892), - [15284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), - [15286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [15288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9895), - [15290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [15292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [15294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9898), - [15296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), - [15298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), - [15300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6979), - [15302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6980), - [15304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9901), - [15306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7316), - [15308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7317), - [15310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), - [15312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), - [15314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9908), - [15316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), - [15318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), - [15320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), - [15322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), - [15324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9915), - [15326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), - [15328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), - [15330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9923), - [15332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [15334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), - [15336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9927), - [15338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [15340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [15342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9930), - [15344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [15346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [15348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9936), - [15350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [15352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [15354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9939), - [15356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [15358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [15360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9942), - [15362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), - [15364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), - [15366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9949), - [15368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [15370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [15372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9952), - [15374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), - [15376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), - [15378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9958), - [15380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [15382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [15384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9961), - [15386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6341), - [15388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6348), - [15390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9964), - [15392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6191), - [15394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6192), - [15396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9967), - [15398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [15400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [15402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9973), - [15404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [15406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [15408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9976), - [15410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [15412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [15414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9979), - [15416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [15418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [15420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9982), - [15422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), - [15424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), - [15426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9985), - [15428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [15430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [15432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9987), - [15434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [15436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [15438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9989), - [15440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [15442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [15444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9991), - [15446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [15448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [15450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9995), - [15452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [15454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [15456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9997), - [15458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [15460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [15462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9933), - [15464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6344), - [15466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6345), - [15468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9999), - [15470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [15472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [15474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10001), - [15476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [15478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [15480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10003), - [15482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [15484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [15486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10005), - [15488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [15490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [15492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10007), - [15494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [15496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [15498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10009), - [15500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [15502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [15504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10011), - [15506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [15508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [15510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10013), - [15512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [15514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [15516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10015), - [15518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [15520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [15522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10017), - [15524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [15526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [15528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10019), - [15530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [15532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [15534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10021), - [15536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [15538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [15540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9610), - [15542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), - [15544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), - [15546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9103), - [15548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 15, 0, 0), - [15550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 15, 0, 0), - [15552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6336), - [15554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [15556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [15558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, 0, 3), - [15560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 3), - [15562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9465), - [15564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6176), - [15566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_body, 1, 0, 0), - [15568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [15570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [15572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6414), - [15574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8116), - [15576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [15578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8343), - [15580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8344), - [15582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9736), - [15584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), - [15586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), - [15588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9642), - [15590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4894), - [15592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), - [15594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8223), - [15596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, 0, 0), - [15598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11281), - [15600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10364), - [15602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10710), - [15604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_match, 6, 0, 101), - [15606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 101), - [15608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7342), - [15610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7342), - [15612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9517), - [15614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7470), - [15616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [15618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5937), - [15620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8155), - [15622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7481), - [15624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9708), - [15626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_match, 6, 0, 105), - [15628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 105), - [15630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9871), - [15632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9474), - [15634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), - [15636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9632), - [15638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [15640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [15642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized_last, 1, 0, 21), - [15644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized_last, 1, 0, 21), SHIFT(10881), - [15647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6595), - [15649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6219), - [15651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), - [15653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), - [15655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9323), - [15657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), - [15659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), - [15661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6618), - [15663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), - [15665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), - [15667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9170), - [15669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6460), - [15671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 165), - [15673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized_last, 1, 0, 4), - [15675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized_last, 1, 0, 4), SHIFT(10881), - [15678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_match, 4, 0, 101), - [15680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 101), - [15682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7694), - [15684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7694), - [15686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(8726), - [15689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [15691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5649), - [15693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_body, 2, 0, 0), - [15695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8092), - [15697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6376), - [15699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), - [15701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [15703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9601), - [15705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7756), - [15707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7756), - [15709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), - [15711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), - [15713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4993), - [15715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7437), - [15717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9557), - [15719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), - [15721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9185), - [15723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_last, 1, 0, 4), - [15725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), - [15727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), - [15729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7343), - [15731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7343), - [15733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), - [15735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2822), - [15738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2822), - [15741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9684), - [15743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), - [15745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), - [15747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 96), - [15749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized_last, 1, 0, 0), - [15751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized_last, 1, 0, 0), SHIFT(10881), - [15754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 77), SHIFT_REPEAT(160), - [15757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 77), SHIFT_REPEAT(10206), - [15760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 77), - [15762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), - [15764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1, 0, 0), - [15766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_expression, 1, 0, 0), - [15768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 200), - [15770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [15772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6688), - [15774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10339), - [15776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6671), - [15778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9664), - [15780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), - [15782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5775), - [15784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9129), - [15786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9129), - [15788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7496), - [15790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9490), - [15792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9759), - [15794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [15796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [15798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 61), - [15800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10764), - [15802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), - [15804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, 0, 0), - [15806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), - [15808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), - [15810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5410), - [15812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_last, 1, 0, 0), - [15814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7341), - [15816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7341), - [15818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 201), - [15820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7303), - [15822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7303), - [15824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9215), - [15826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6262), - [15828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 166), - [15830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9215), - [15833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7506), - [15835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10125), - [15837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [15839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7354), - [15841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7354), - [15843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7355), - [15845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7355), - [15847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7293), - [15849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7293), - [15851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7849), - [15853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7849), - [15855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [15857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8939), - [15859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6212), - [15861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5884), - [15863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10395), - [15865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [15867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [15869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7809), - [15871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10221), - [15873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4974), - [15875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7841), - [15877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7841), - [15879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5346), - [15881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body_statement_last, 1, 0, 0), - [15883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_last, 1, 0, 0), - [15885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5363), - [15887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), - [15889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5869), - [15891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7135), - [15893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7142), - [15895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7175), - [15897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7180), - [15899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), - [15901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6301), - [15903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [15905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [15907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [15909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [15911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5781), - [15913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_let_last, 2, 0, 10), - [15915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_last, 2, 0, 10), - [15917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), - [15919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 145), SHIFT_REPEAT(1056), - [15922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 145), - [15924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), - [15926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9521), - [15928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_mut_last, 2, 0, 10), - [15930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_last, 2, 0, 10), - [15932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_last, 2, 0, 10), - [15934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_last, 2, 0, 10), - [15936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 99), - [15938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 99), - [15940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [15942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4869), - [15944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4107), - [15946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), - [15948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8051), - [15950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [15952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8112), - [15954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 118), - [15956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 118), - [15958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 4, 10, 78), - [15960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_parenthesized_body, 4, 10, 78), - [15962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10881), - [15964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5042), - [15966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4788), - [15968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [15970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [15972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4806), - [15974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8283), - [15976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8392), - [15978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [15980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5609), - [15982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), - [15984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 99), - [15986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 99), - [15988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8059), - [15990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [15992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8305), - [15994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8308), - [15996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), - [15998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [16000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), - [16002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), - [16004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [16006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8439), - [16008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 3, 10, 12), - [16010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_parenthesized_body, 3, 10, 12), - [16012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8440), - [16014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_last, 1, 0, 0), - [16016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 3, 10, 37), - [16018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_parenthesized_body, 3, 10, 37), - [16020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5810), - [16022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), - [16024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7771), - [16026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), - [16028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7493), - [16030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7493), - [16032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7510), - [16034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7510), - [16036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [16038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [16040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4236), - [16042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6827), - [16044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5530), - [16046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5360), - [16048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7389), - [16050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7389), - [16052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7097), - [16054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7098), - [16056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5367), - [16058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), - [16060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), - [16062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6839), - [16064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5382), - [16066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6008), - [16068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6009), - [16070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8981), - [16072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8982), - [16074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_last, 3, 0, 41), - [16076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_last, 3, 0, 41), - [16078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5837), - [16080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5134), - [16082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4904), - [16084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4906), - [16086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9778), - [16088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9779), - [16090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5597), - [16092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4992), - [16094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5005), - [16096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4790), - [16098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), - [16100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), - [16102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7543), - [16104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10317), - [16106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [16108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [16110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [16112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [16114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [16116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4856), - [16118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4873), - [16120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4874), - [16122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [16124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [16126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7827), - [16128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10360), - [16130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4925), - [16132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5866), - [16134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), - [16136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), - [16138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [16140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4817), - [16142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4819), - [16144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), - [16146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), - [16148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5521), - [16150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4760), - [16152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4761), - [16154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6224), - [16156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6057), - [16158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), - [16160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), SHIFT_REPEAT(10395), - [16163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5703), - [16165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5645), - [16167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [16169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [16171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10258), - [16173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10416), - [16175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), - [16177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5772), - [16179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10352), - [16181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5611), - [16183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), - [16185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [16187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [16189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), - [16191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4899), - [16193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6997), - [16195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6943), - [16197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [16199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [16201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 36), - [16203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 36), - [16205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), - [16207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [16209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4980), - [16211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), - [16213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4981), - [16215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [16217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [16219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [16221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4489), - [16223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4322), - [16225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 147), - [16227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 147), - [16229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 148), - [16231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 148), - [16233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [16235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [16237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), - [16239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7951), - [16241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), - [16243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 168), - [16245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 168), - [16247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4163), - [16249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [16251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [16253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5544), - [16255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [16257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [16259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6088), - [16261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6118), - [16263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [16265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4765), - [16267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7412), - [16269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7412), - [16271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4766), - [16273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9206), - [16275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [16277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [16279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [16281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 2, 10, 1), - [16283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_parenthesized_body, 2, 10, 1), - [16285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [16287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [16289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7842), - [16291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7842), - [16293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [16295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [16297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8033), - [16299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5517), - [16301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5518), - [16303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [16305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [16307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [16309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6359), - [16311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5300), - [16313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5306), - [16315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [16317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [16319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), - [16321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), - [16323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_last, 4, 0, 89), - [16325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_last, 4, 0, 89), - [16327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_last, 3, 0, 90), - [16329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_last, 3, 0, 90), - [16331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4289), - [16333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [16335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [16337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [16339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), - [16341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), - [16343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [16345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [16347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4457), - [16349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4767), - [16351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4768), - [16353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [16355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [16357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8720), - [16359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [16361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [16363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9378), - [16365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [16367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [16369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), - [16371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4934), - [16373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4949), - [16375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3771), - [16377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7536), - [16379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7538), - [16381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4165), - [16383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5344), - [16385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5345), - [16387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [16389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4969), - [16391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5070), - [16393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), - [16395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7018), - [16397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [16399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [16401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4833), - [16403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [16405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [16407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7428), - [16409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5601), - [16411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5602), - [16413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4985), - [16415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6556), - [16417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6560), - [16419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4355), - [16421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), - [16423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), - [16425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5864), - [16427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [16429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [16431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5257), - [16433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5608), - [16435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), - [16437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), - [16439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [16441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6889), - [16443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6890), - [16445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4021), - [16447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), - [16449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), - [16451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [16453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [16455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [16457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4018), - [16459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8536), - [16461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8550), - [16463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [16465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), - [16467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), - [16469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4324), - [16471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4332), - [16473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4387), - [16475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [16477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), - [16479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), - [16481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5699), - [16483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), - [16485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4071), - [16487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [16489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [16491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [16493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6515), - [16495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4769), - [16497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4770), - [16499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6355), - [16501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7277), - [16503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7278), - [16505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), - [16507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), - [16509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), - [16511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), - [16513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), - [16515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), - [16517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [16519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), - [16521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), - [16523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [16525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5325), - [16527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5326), - [16529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5420), - [16531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5895), - [16533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [16535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [16537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [16539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3994), - [16541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3995), - [16543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [16545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [16547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [16549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), - [16551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [16553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [16555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), - [16557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5724), - [16559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5744), - [16561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [16563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [16565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [16567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [16569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3863), - [16571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3865), - [16573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6422), - [16575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4210), - [16577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4211), - [16579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), - [16581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [16583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [16585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), - [16587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [16589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [16591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [16593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), - [16595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5519), - [16597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5520), - [16599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), - [16601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [16603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [16605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [16607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [16609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [16611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), - [16613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6351), - [16615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6291), - [16617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [16619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6270), - [16621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6272), - [16623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [16625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [16627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [16629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [16631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), - [16633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), - [16635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [16637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [16639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [16641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [16643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), - [16645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), - [16647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [16649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), - [16651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [16653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5571), - [16655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5572), - [16657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), - [16659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), - [16661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [16663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [16665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [16667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), - [16669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), - [16671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), - [16673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), - [16675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [16677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), - [16679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [16681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [16683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [16685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [16687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), - [16689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), - [16691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [16693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [16695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), - [16697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), - [16699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [16701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [16703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), - [16705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), - [16707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), - [16709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), - [16711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [16713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [16715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [16717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [16719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [16721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [16723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [16725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [16727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [16729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [16731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [16733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [16735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7482), - [16737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7482), - [16739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7483), - [16741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7483), - [16743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7484), - [16745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7484), - [16747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4734), - [16749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5353), - [16751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5265), - [16753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), - [16755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), - [16757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [16759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7686), - [16761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7686), - [16763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5039), - [16765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4662), - [16767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4588), - [16769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), - [16771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), - [16773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7528), - [16775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7528), - [16777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9206), - [16780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7739), - [16782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7739), - [16784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5361), - [16786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 192), - [16788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 192), - [16790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5546), - [16792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 193), - [16794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 193), - [16796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5564), - [16798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [16800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [16802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), - [16804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), - [16806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), - [16808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), - [16810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5014), - [16812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [16814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [16816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6145), - [16818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_last, 5, 0, 133), - [16820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_last, 5, 0, 133), - [16822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 2), - [16824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 2), - [16826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5466), - [16828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_last, 4, 0, 137), - [16830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_last, 4, 0, 137), - [16832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5289), - [16834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), - [16836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 3), - [16838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 3), - [16840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), - [16842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [16844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5666), - [16846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4944), - [16848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10067), - [16850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4898), - [16852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9417), - [16854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9418), - [16856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10346), - [16858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), - [16860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10597), - [16862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11273), - [16864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [16866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [16868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), - [16870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10412), - [16872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 36), - [16874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 36), - [16876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7891), - [16878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [16880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [16882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), - [16884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [16886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), - [16888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [16890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), - [16892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized_last, 1, 0, 0), - [16894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_parenthesized_last, 1, 0, 0), - [16896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [16898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6280), - [16900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_parenthesized_last, 5, 0, 133), - [16902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized_last, 5, 0, 133), - [16904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_parenthesized_last, 4, 0, 137), - [16906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized_last, 4, 0, 137), - [16908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5800), - [16910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [16912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [16914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), - [16916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6135), - [16918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [16920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [16922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10325), - [16924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7909), - [16926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [16928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [16930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_let_parenthesized_last, 2, 0, 10), - [16932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized_last, 2, 0, 10), - [16934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [16936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [16938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), - [16940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [16942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_mut_parenthesized_last, 2, 0, 10), - [16944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized_last, 2, 0, 10), - [16946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [16948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_parenthesized_last, 2, 0, 10), - [16950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized_last, 2, 0, 10), - [16952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [16954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), - [16956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [16958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), - [16960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [16962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [16964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [16966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10470), - [16968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [16970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8722), - [16972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [16974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4487), - [16976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4376), - [16978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), - [16980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6453), - [16982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9723), - [16984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), - [16986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), - [16988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized_last, 2, 0, 0), - [16990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6616), - [16992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10315), - [16994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), - [16996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), - [16998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_parenthesized_last, 4, 0, 89), - [17000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized_last, 4, 0, 89), - [17002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_parenthesized_last, 3, 0, 90), - [17004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized_last, 3, 0, 90), - [17006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10713), - [17008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [17010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8950), - [17012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6488), - [17014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), - [17016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [17018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10548), - [17020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11055), - [17022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6541), - [17024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [17026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8958), - [17028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6164), - [17030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6190), - [17032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), - [17034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3175), - [17037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), - [17039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [17041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [17043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), - [17045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), - [17047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body_statement_parenthesized_last, 1, 0, 0), - [17049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized_last, 1, 0, 0), - [17051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [17053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), - [17055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4176), - [17057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [17059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9587), - [17061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6696), - [17063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [17065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6667), - [17067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6012), - [17069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6222), - [17071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9754), - [17073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized_last, 1, 0, 0), - [17075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9921), - [17077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized_last, 1, 0, 0), - [17079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10539), - [17081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), - [17083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6626), - [17085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5959), - [17087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6421), - [17089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5986), - [17091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9737), - [17093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [17095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8462), - [17097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10308), - [17099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10204), - [17101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11411), - [17103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), - [17105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9947), - [17107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [17109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [17111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10305), - [17113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10781), - [17115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [17117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10063), - [17119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), - [17121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10103), - [17123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [17125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10138), - [17127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10159), - [17129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10177), - [17131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9445), - [17133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9458), - [17135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9478), - [17137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), - [17139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9497), - [17141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9514), - [17143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), - [17145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), - [17147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9532), - [17149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), - [17151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9549), - [17153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9563), - [17155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9577), - [17157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 104), - [17159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9598), - [17161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9616), - [17163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9634), - [17165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10671), - [17167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 75), - [17169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_parenthesized_last, 3, 0, 41), - [17171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized_last, 3, 0, 41), - [17173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9649), - [17175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6311), - [17177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9671), - [17179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9688), - [17181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 127), - [17183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 127), SHIFT_REPEAT(10412), - [17186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9700), - [17188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9715), - [17190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), - [17192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9731), - [17194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9740), - [17196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9747), - [17198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9756), - [17200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), - [17202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9762), - [17204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9770), - [17206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9783), - [17208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9795), - [17210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9805), - [17212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9813), - [17214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9818), - [17216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [17218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9824), - [17220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [17222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [17224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [17226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [17228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [17230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7154), - [17232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8466), - [17234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6254), - [17236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8104), - [17238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), - [17240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 18), - [17242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), - [17244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7755), - [17246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7759), - [17248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8223), - [17250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11311), - [17252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11322), - [17254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [17256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 19), - [17258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 19), - [17260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8094), - [17262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_expression, 1, 0, 17), - [17264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7306), - [17266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9471), - [17268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [17270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8503), - [17272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4091), - [17274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3922), - [17276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3924), - [17278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6257), - [17280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), - [17282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3928), - [17284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10476), - [17286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [17288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6455), - [17290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [17292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10850), - [17294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [17296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7865), - [17298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7061), - [17300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7138), - [17302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [17304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8621), - [17306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8514), - [17308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [17310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8767), - [17312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8520), - [17314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 1, 0, 98), - [17316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), - [17318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [17320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10862), - [17322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10587), - [17324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11236), - [17326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9489), - [17328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10795), - [17330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7442), - [17332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [17334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11026), - [17336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11382), - [17338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10379), - [17340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10381), - [17342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10959), - [17344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8155), - [17346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7273), - [17348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 57), - [17350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [17352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10203), - [17354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10201), - [17356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), - [17358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11025), - [17360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [17362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11098), - [17364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9522), - [17366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11192), - [17368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10910), - [17370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11295), - [17372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11388), - [17374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11224), - [17376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10776), - [17378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8225), - [17380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10778), - [17382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11215), - [17384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 178), - [17386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7968), - [17388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10982), - [17390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), - [17392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10806), - [17394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4935), - [17396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4879), - [17398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10811), - [17400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7828), - [17402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11038), - [17404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8010), - [17406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4908), - [17408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4926), - [17410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11239), - [17412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [17414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8050), - [17416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10753), - [17418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [17420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), - [17422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10813), - [17424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7433), - [17426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [17428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9512), - [17430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 57), - [17432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), - [17434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10866), - [17436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8147), - [17438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(10554), - [17441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8162), - [17443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10934), - [17445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8177), - [17447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11008), - [17449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 125), - [17451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10906), - [17453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11118), - [17455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7943), - [17457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11359), - [17459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7945), - [17461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11315), - [17463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7967), - [17465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8159), - [17467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8544), - [17469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11314), - [17471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8402), - [17473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7977), - [17475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7133), - [17477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10953), - [17479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11130), - [17481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7980), - [17483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11247), - [17485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8465), - [17487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10756), - [17489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), - [17491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4742), - [17493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4745), - [17495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10822), - [17497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7674), - [17499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10867), - [17501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7675), - [17503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [17505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10917), - [17507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [17509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4773), - [17511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4775), - [17513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10976), - [17515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8181), - [17517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11024), - [17519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11050), - [17521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8183), - [17523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11078), - [17525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(10549), - [17528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11105), - [17530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11117), - [17532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11133), - [17534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11147), - [17536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8406), - [17538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11161), - [17540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8239), - [17542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8240), - [17544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8092), - [17546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6211), - [17548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6229), - [17550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [17552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7548), - [17554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [17556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8135), - [17558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5177), - [17560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [17562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9498), - [17564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [17566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [17568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6276), - [17570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [17572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6189), - [17574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7991), - [17576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), - [17578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [17580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6331), - [17582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [17584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [17586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [17588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6454), - [17590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [17592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [17594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), - [17596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [17598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [17600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8598), - [17602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10166), - [17604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [17606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [17608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5823), - [17610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), - [17612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7262), - [17614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), - [17616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6462), - [17618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8354), - [17620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7933), - [17622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [17624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), - [17626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [17628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6180), - [17630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10424), - [17632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), - [17634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [17636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), - [17638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6500), - [17640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9773), - [17642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [17644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), - [17646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8548), - [17648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6179), - [17650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6182), - [17652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5323), - [17654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9386), - [17656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4436), - [17658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), - [17660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6078), - [17662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [17664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6686), - [17666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), - [17668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7555), - [17670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [17672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4970), - [17674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), - [17676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [17678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [17680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), - [17682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), - [17684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9540), - [17686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7191), - [17688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [17690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [17692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), - [17694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6589), - [17696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [17698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [17700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), - [17702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [17704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), - [17706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7910), - [17708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [17710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [17712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [17714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [17716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10023), - [17718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), - [17720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), - [17722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [17724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), - [17726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), - [17728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6562), - [17730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [17732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8858), - [17734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [17736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6552), - [17738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [17740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [17742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [17744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [17746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [17748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [17750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [17752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), - [17754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5933), - [17756] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [17758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9132), - [17760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), - [17762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5759), - [17764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [17766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [17768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9159), - [17770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6032), - [17772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [17774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [17776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [17778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [17780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [17782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7595), - [17784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7507), - [17786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [17788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [17790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7382), - [17792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [17794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7893), - [17796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8482), - [17798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), - [17800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), - [17802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [17804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), - [17806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [17808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [17810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), - [17812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [17814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8777), - [17816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [17818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [17820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8222), - [17822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), - [17824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), - [17826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), - [17828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10521), - [17830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9739), - [17832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [17834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [17836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), - [17838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5246), - [17840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [17842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11426), - [17844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [17846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), - [17848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6150), - [17850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), - [17852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [17854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [17856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), - [17858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), - [17860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [17862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [17864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), - [17866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [17868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6186), - [17870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6657), - [17872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9549), - [17874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), - [17876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5311), - [17878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7141), - [17880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [17882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), - [17884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6266), - [17886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), - [17888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6542), - [17890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [17892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6054), - [17894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [17896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4079), - [17898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4403), - [17900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8445), - [17902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6722), - [17904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8749), - [17906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), - [17908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), - [17910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), - [17912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8021), - [17914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5941), - [17916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), - [17918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6216), - [17920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [17922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [17924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), - [17926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8141), - [17928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [17930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), - [17932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [17934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5496), - [17936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [17938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), - [17940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5489), - [17942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [17944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5258), - [17946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5515), - [17948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8609), - [17950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6283), - [17952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [17954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [17956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7919), - [17958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), - [17960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [17962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), - [17964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5409), - [17966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11126), - [17968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), - [17970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [17972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [17974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5963), - [17976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8095), - [17978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [17980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), - [17982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), - [17984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7552), - [17986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5516), - [17988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), - [17990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [17992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), - [17994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [17996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9136), - [17998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6320), - [18000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [18002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [18004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5997), - [18006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), - [18008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), - [18010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [18012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [18014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), - [18016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [18018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [18020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), - [18022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [18024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8478), - [18026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5045), - [18028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), - [18030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11158), - [18032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), - [18034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 92), - [18036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), - [18038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7391), - [18040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [18042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [18044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), - [18046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [18048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9340), - [18050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4278), - [18052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [18054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), - [18056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 92), - [18058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), - [18060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10742), - [18062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9164), - [18064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [18066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [18068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7520), - [18070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), - [18072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [18074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), - [18076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [18078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), - [18080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), - [18082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11047), - [18084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9981), - [18086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [18088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), - [18090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5790), - [18092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [18094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [18096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5768), - [18098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [18100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6450), - [18102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), - [18104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [18106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), - [18108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [18110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [18112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), - [18114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), - [18116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [18118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), - [18120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), - [18122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [18124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9363), - [18126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), - [18128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [18130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5095), - [18132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [18134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [18136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [18138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), - [18140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6586), - [18142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6340), - [18144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [18146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), - [18148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), - [18150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7716), - [18152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7547), - [18154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [18156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), - [18158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [18160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [18162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8046), - [18164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), - [18166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), - [18168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9300), - [18170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), - [18172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [18174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5843), - [18176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [18178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), - [18180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [18182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [18184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7071), - [18186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), - [18188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [18190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), - [18192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [18194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9193), - [18196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10387), - [18198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [18200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [18202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [18204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9772), - [18206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [18208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6268), - [18210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [18212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), - [18214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), - [18216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [18218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [18220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), - [18222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5989), - [18224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), - [18226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [18228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5578), - [18230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7653), - [18232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [18234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 4, 0, 178), - [18236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), - [18238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), - [18240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [18242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [18244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6318), - [18246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), - [18248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [18250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7465), - [18252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), - [18254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), - [18256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8438), - [18258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [18260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [18262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [18264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [18266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), - [18268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [18270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10825), - [18272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6714), - [18274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [18276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6290), - [18278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [18280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [18282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), - [18284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [18286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [18288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [18290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [18292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), - [18294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [18296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4844), - [18298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 1, 0, 0), - [18300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), - [18302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4077), - [18304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [18306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8768), - [18308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), - [18310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [18312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [18314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), - [18316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5885), - [18318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), - [18320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), - [18322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), - [18324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10650), - [18326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [18328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), - [18330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [18332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [18334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), - [18336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8453), - [18338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5844), - [18340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [18342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [18344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [18346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), - [18348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6437), - [18350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [18352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [18354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [18356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [18358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8601), - [18360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8244), - [18362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), - [18364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [18366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), - [18368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), - [18370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7944), - [18372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [18374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [18376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [18378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6274), - [18380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), - [18382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [18384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), - [18386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [18388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5827), - [18390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8750), - [18392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [18394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), - [18396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [18398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [18400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), - [18402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6594), - [18404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [18406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), - [18408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [18410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4694), - [18412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6354), - [18414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [18416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [18418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [18420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5902), - [18422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), - [18424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9947), - [18426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [18428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7401), - [18430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [18432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), - [18434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [18436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), - [18438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [18440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [18442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [18444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [18446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), - [18448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6743), - [18450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), - [18452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [18454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), - [18456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), - [18458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [18460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [18462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7374), - [18464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [18466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [18468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8946), - [18470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8291), - [18472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7380), - [18474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9102), - [18476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7954), - [18478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9705), - [18480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), - [18482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6181), - [18484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [18486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [18488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [18490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [18492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [18494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [18496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [18498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [18500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [18502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [18504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [18506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [18508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [18510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [18512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [18514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [18516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [18518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [18520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), - [18522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7964), - [18524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [18526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [18528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5687), - [18530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10198), - [18532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6322), - [18534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), - [18536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8101), - [18538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), + [1010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1, 0, 0), + [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1, 0, 0), + [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10035), + [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8831), + [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3, 0, 0), + [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3, 0, 0), + [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 84), + [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 84), + [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8831), + [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2, 0, 0), + [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 2, 0, 0), + [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), + [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), + [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 131), + [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 131), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [1047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__var, 2, 0, 23), + [1049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__var, 2, 0, 23), + [1051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), + [1053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8841), + [1057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), + [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), + [1061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, 0, 6), + [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, 0, 6), + [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8841), + [1068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [1070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [1072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), REDUCE(sym__expr_binary_expression, 1, 0, 0), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [1085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), + [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), + [1089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), + [1091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), + [1093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), + [1095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, 0, 0), + [1097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 98), + [1099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 98), + [1101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 145), + [1103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 145), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8840), + [1107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8840), + [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8811), + [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [1122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8811), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [1129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, 0, 41), + [1131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, 0, 41), + [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 57), + [1135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 41), + [1137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, 0, 41), + [1139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [1143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 1, 0, 0), + [1145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 1, 0, 0), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9838), + [1149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 16), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [1155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), + [1157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), + [1159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), + [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), + [1163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), + [1165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 77), + [1167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 77), + [1169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [1171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 81), + [1173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 81), + [1175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), + [1177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), + [1179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 80), + [1181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 80), + [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), + [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), + [1211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 3, 0, 0), + [1213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 3, 0, 0), + [1215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 4, 0, 0), + [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 4, 0, 0), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9825), + [1221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), + [1223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), + [1225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1, 0, 0), + [1227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1, 0, 0), + [1229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), + [1231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), + [1233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2, 0, 0), + [1235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2, 0, 0), + [1237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), + [1239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), + [1241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), + [1243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), + [1245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, 0, 0), + [1247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, 0, 0), + [1249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 112), + [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 112), + [1253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 127), + [1255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 127), + [1257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 98), + [1259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 98), + [1261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 145), + [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 145), + [1265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 7), + [1267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 7), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [1271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [1275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 77), + [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 77), + [1283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, 0, 0), + [1285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, 0, 0), + [1287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), + [1289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), + [1291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), + [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), + [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), + [1299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6519), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6524), + [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), + [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [1336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(480), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8961), + [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10644), + [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [1365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(485), + [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10017), + [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [1374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8830), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10221), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7655), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7770), + [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10426), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8830), + [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10570), + [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8953), + [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8671), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8525), + [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8812), + [1423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8812), + [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8836), + [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [1444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8836), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9382), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9968), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10330), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10707), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9350), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8462), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8085), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9987), + [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8822), + [1507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8822), + [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), + [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9815), + [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9608), + [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9728), + [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9101), + [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 1, 0, 0), + [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9212), + [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8033), + [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10420), + [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), + [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6412), + [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6449), + [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7792), + [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7676), + [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6558), + [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7486), + [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6530), + [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5318), + [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7980), + [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5091), + [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10635), + [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7794), + [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9721), + [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5376), + [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8560), + [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8179), + [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 1, 0, 0), + [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7800), + [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5083), + [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), + [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9280), + [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8031), + [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10825), + [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6409), + [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6423), + [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7590), + [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7797), + [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6560), + [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7549), + [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6562), + [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5415), + [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7879), + [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5134), + [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10659), + [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7695), + [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9044), + [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5513), + [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8581), + [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8273), + [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), + [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7663), + [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5162), + [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9444), + [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10217), + [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10386), + [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), + [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10251), + [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9670), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9834), + [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9839), + [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6577), + [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6712), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9343), + [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9158), + [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7049), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7049), + [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8455), + [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7051), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6040), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9896), + [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5904), + [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10394), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9118), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9200), + [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), + [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), + [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), + [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), + [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7717), + [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8034), + [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7852), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), + [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9039), + [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8320), + [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10536), + [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6443), + [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6465), + [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7876), + [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7862), + [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6609), + [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7708), + [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6640), + [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5710), + [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8272), + [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5407), + [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10606), + [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7878), + [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9628), + [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5860), + [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8530), + [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8080), + [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7971), + [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5377), + [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7844), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9129), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), + [1838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 40), + [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 40), + [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 2, 0, 0), + [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9438), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10066), + [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10292), + [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4975), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), + [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9474), + [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10868), + [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), + [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), + [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 133), + [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 133), + [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 4, 0, 0), + [1888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), + [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [1906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7892), + [1909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(771), + [1912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(52), + [1915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(9101), + [1918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(10838), + [1921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(9570), + [1924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(9599), + [1927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6722), + [1930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2946), + [1933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1218), + [1936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7), + [1939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7322), + [1942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(10210), + [1945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1085), + [1948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2731), + [1951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6841), + [1954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7327), + [1957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5582), + [1960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5535), + [1963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4037), + [1966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4037), + [1969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(10491), + [1972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3749), + [1975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4984), + [1978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4984), + [1981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5282), + [1984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(10549), + [1987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5711), + [1990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(9293), + [1993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5408), + [1996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(8502), + [1999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(8296), + [2002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6972), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10243), + [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10751), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), + [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5089), + [2035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7985), + [2038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(771), + [2041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(52), + [2044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(9101), + [2047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(10838), + [2050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(8708), + [2053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(8711), + [2056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6722), + [2059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2968), + [2062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1218), + [2065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7), + [2068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7322), + [2071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(10249), + [2074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1085), + [2077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2731), + [2080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6841), + [2083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7327), + [2086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5582), + [2089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5535), + [2092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4037), + [2095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4037), + [2098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(10491), + [2101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3749), + [2104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4984), + [2107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4984), + [2110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5282), + [2113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(10549), + [2116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5711), + [2119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(9293), + [2122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5408), + [2125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(8502), + [2128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(8296), + [2131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7067), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), + [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 130), + [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 130), + [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10816), + [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [2146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 132), + [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 132), + [2150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(796), + [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9462), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10722), + [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 39), + [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 39), + [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10858), + [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8940), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [2207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 129), + [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 129), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8937), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 2, 0, 0), + [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), + [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [2237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(839), + [2240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 59), SHIFT_REPEAT(817), + [2243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 59), SHIFT_REPEAT(50), + [2246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 59), SHIFT_REPEAT(9670), + [2249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 59), SHIFT_REPEAT(9834), + [2252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 59), SHIFT_REPEAT(9839), + [2255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 59), SHIFT_REPEAT(5), + [2258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 59), SHIFT_REPEAT(6577), + [2261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 59), SHIFT_REPEAT(10330), + [2264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 59), SHIFT_REPEAT(6712), + [2267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 59), SHIFT_REPEAT(9343), + [2270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 59), SHIFT_REPEAT(9158), + [2273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 59), SHIFT_REPEAT(7049), + [2276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 59), SHIFT_REPEAT(7049), + [2279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 59), SHIFT_REPEAT(8455), + [2282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 59), SHIFT_REPEAT(7051), + [2285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 59), SHIFT_REPEAT(6040), + [2288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 59), SHIFT_REPEAT(9896), + [2291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 59), SHIFT_REPEAT(5904), + [2294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 59), SHIFT_REPEAT(10394), + [2297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 59), SHIFT_REPEAT(9118), + [2300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 59), SHIFT_REPEAT(9200), + [2303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 59), SHIFT_REPEAT(6178), + [2306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 59), SHIFT_REPEAT(8462), + [2309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 59), SHIFT_REPEAT(8085), + [2312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 59), SHIFT_REPEAT(9987), + [2315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 59), SHIFT_REPEAT(3695), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [2320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [2324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10800), + [2328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [2330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [2332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [2334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [2338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(825), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [2351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(842), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [2356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [2360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [2362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [2366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [2368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(857), + [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [2375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(846), + [2378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8965), + [2380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [2384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10695), + [2386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10202), + [2388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [2390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), + [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8960), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10264), + [2398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [2402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4, 0, 0), + [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4, 0, 0), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9376), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), + [2414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10294), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), + [2426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [2430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4327), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), + [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4791), + [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10699), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9342), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8628), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8242), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), + [2454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4532), + [2456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8818), + [2458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8033), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6449), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7792), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7676), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6558), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6530), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7980), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7794), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9721), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8560), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8179), + [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7800), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9408), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), + [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10761), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), + [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), + [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4404), + [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10728), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9391), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8662), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8113), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), + [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8842), + [2548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8842), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9415), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5864), + [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10472), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), + [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), + [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5439), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6147), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), + [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5911), + [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10742), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5858), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9398), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6087), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8688), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8131), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), + [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5898), + [2601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(867), + [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [2610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8818), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9311), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9740), + [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10451), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6748), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6855), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8885), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8666), + [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7069), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7069), + [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8483), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7005), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9632), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9732), + [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8877), + [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10675), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8698), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9281), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6559), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8600), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8328), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8578), + [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8531), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [2667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9180), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7984), + [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10324), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6413), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6452), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7616), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7818), + [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6537), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6537), + [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7469), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6561), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7978), + [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5272), + [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10909), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7711), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9016), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8548), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8146), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7438), + [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5422), + [2713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(876), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9715), + [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6557), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6630), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8854), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8536), + [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6914), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6914), + [2730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8117), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6805), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9706), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8905), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8157), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8031), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6423), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7590), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7797), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6560), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6562), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7879), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7695), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9044), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8581), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8273), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7663), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8287), + [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6425), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6484), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7819), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7886), + [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6653), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6653), + [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7702), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6644), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8330), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8036), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7764), + [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5329), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [2806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9242), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8659), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6545), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6593), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8190), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8193), + [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6775), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6775), + [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8015), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6756), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6107), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8889), + [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5894), + [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10651), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8292), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9627), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6592), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8575), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8236), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7918), + [2848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7453), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [2856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10506), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [2860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [2880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [2882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10756), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9416), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8712), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8152), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8529), + [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6496), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6549), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8311), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8378), + [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6779), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6779), + [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7969), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6784), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8873), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8205), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7821), + [2924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5730), + [2926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10907), + [2928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6581), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6789), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9223), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9072), + [2936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6953), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6953), + [2940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8564), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7089), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9833), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9059), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8948), + [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5912), + [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8964), + [2954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10681), + [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [2966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10126), + [2968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9296), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8215), + [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10718), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6454), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6500), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7922), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7882), + [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6628), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6628), + [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7664), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6638), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8683), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8288), + [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8127), + [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10667), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7874), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8585), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8290), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7722), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8320), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6465), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7876), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7862), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6609), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6640), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8272), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7878), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9628), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5860), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8530), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8080), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7971), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9226), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7789), + [3056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10362), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6391), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6414), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7506), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7546), + [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6508), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6508), + [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7144), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6489), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7638), + [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5156), + [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10643), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7496), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9092), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8570), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8225), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7307), + [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9285), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10257), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [3108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6696), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6831), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9786), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9748), + [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7126), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7126), + [3120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9102), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7299), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10110), + [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4912), + [3130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10582), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9752), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8515), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8356), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9617), + [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4977), + [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), + [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8957), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10563), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10028), + [3154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10861), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [3158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6740), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6832), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9761), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9785), + [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7335), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7335), + [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9090), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7237), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10046), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9799), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9424), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9254), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10844), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [3206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10763), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9419), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8723), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8166), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9880), + [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6673), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6868), + [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7013), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7013), + [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8568), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7032), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9832), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8544), + [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10059), + [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10716), + [3254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9331), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10772), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), + [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10683), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9303), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8751), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8187), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3870), + [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10262), + [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10542), + [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [3312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 25), + [3314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 25), + [3316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 2, 0, 0), + [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7338), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7338), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [3338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8769), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8200), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), + [3354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 86), + [3356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 86), + [3358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 3, 0, 0), + [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [3362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 3, 0, 0), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8944), + [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [3372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_use, 2, 0, 17), + [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 17), + [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7491), + [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), + [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9685), + [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8839), + [3388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8839), + [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8816), + [3395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hide_mod, 2, 0, 31), + [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 2, 0, 31), + [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [3403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8816), + [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [3410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 2, 0, 0), + [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_overlay_use_repeat1, 2, 0, 0), + [3414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 2, 0, 0), SHIFT_REPEAT(1323), + [3417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 2, 0, 0), SHIFT_REPEAT(10844), + [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), + [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [3424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(903), + [3427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_use, 3, 0, 44), + [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 44), + [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10254), + [3433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10511), + [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [3439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 3, 0, 71), + [3441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 3, 0, 71), + [3443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [3445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7830), + [3447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8802), + [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [3451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 4, 0, 71), + [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 71), + [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7835), + [3457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 4, 0, 120), + [3459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 120), + [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7836), + [3463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 5, 0, 120), + [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 120), + [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7838), + [3469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8802), + [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7116), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7116), + [3480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7217), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7217), + [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [3496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [3498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7913), + [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [3504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(997), + [3507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [3509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [3515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), + [3517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7536), + [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [3521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9689), + [3523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), + [3525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 2, 0, 0), SHIFT_REPEAT(1617), + [3528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 2, 0, 0), SHIFT_REPEAT(10506), + [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [3533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [3535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [3539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [3545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7988), + [3547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7991), + [3549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8060), + [3551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(999), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7165), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7165), + [3568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [3574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 40), + [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 40), + [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [3586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_return, 1, 0, 0), + [3588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 1, 0, 0), + [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), + [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7327), + [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), + [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5711), + [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9293), + [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5408), + [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8502), + [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8296), + [3612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8844), + [3615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), + [3617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8947), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [3621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [3625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10284), + [3627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(1035), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8827), + [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10025), + [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10589), + [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), + [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 163), + [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 163), + [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 5, 0, 0), + [3650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 5, 0, 0), + [3652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(1008), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10879), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6672), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6839), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6884), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6328), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6216), + [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4672), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), + [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9855), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6265), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6234), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10280), + [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [3689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8844), + [3691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 82), + [3693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 82), + [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [3699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 83), + [3701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 83), + [3703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), + [3711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 85), + [3713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 85), + [3715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [3721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), + [3723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), + [3725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 1, 0, 0), + [3727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [3737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8958), + [3741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 24), + [3743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 24), + [3745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7293), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7293), + [3749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(1006), + [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [3754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8827), + [3757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 45), + [3759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 45), + [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [3767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), + [3769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), + [3771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 118), + [3773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 118), + [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 4, 0, 0), + [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8843), + [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 16), + [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8824), + [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), + [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7115), + [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4190), + [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5931), + [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9253), + [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5888), + [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8798), + [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8238), + [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8813), + [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10882), + [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6453), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6904), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6490), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), + [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7843), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), + [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8956), + [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10532), + [3841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 57), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9792), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9331), + [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9867), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), + [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10527), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), + [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4015), + [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8826), + [3881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8813), + [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6781), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6905), + [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9824), + [3890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), + [3893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), + [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6771), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6896), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6051), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6006), + [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), + [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9639), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6037), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6013), + [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6462), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6928), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6546), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5736), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5675), + [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4165), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), + [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8322), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5551), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5739), + [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [3946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8824), + [3949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8826), + [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8649), + [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), + [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8942), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10486), + [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [3972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8843), + [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10258), + [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), + [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [3993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(1135), + [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10886), + [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6401), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6800), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6438), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), + [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [4012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7634), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5090), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), + [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10888), + [4026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6404), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6918), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6447), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), + [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), + [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7635), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9405), + [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10889), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6421), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6875), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6513), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), + [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7860), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), + [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5261), + [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10721), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5489), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9377), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8654), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8097), + [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10881), + [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6585), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6799), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6677), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5984), + [4106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), + [4110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9588), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5938), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5958), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9412), + [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10890), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6717), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6901), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6867), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6189), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6089), + [4138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4421), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), + [4142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9509), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6226), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6043), + [4150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6014), + [4152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10735), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6034), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9395), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6261), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8673), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8122), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [4166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10884), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [4170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6532), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6806), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6626), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5926), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5951), + [4180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), + [4184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8243), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5928), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9119), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6195), + [4196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 49), + [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 49), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9453), + [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10892), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6907), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [4224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4483), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10770), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9426), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8735), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8177), + [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4973), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9466), + [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10885), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [4258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6567), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6809), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6582), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6119), + [4268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4416), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), + [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8458), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6114), + [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4491), + [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10691), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6091), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9312), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8613), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8359), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9470), + [4300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10893), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [4304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6837), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [4318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [4326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), + [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10777), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9448), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8759), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8191), + [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4671), + [4342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [4344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9478), + [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10894), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6876), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [4366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [4370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5840), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [4378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), + [4380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10783), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9454), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8765), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8195), + [4392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5989), + [4394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 100), + [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 100), + [4398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10880), + [4400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6411), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6804), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6444), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), + [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [4414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7778), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), + [4422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [4424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [4426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 100), + [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 100), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [4434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9487), + [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10896), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6858), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [4450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [4462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [4464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10794), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9488), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8780), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8210), + [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), + [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10883), + [4480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6400), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6899), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6405), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), + [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3882), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), + [4494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7568), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [4506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9497), + [4508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10897), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6846), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [4522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [4526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [4534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [4536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10799), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9498), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8784), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8213), + [4548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [4554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9513), + [4556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10898), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [4560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6810), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [4570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [4574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [4584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10804), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9514), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8790), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8216), + [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9523), + [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10899), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6862), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [4630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [4632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10809), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9539), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8793), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8218), + [4644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), + [4646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 1, 0, 0), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [4650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6451), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6841), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6469), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), + [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), + [4664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7839), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), + [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [4686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [4688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [4690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8649), + [4693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7240), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7240), + [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9887), + [4703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [4707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [4709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), + [4717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [4719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8572), + [4721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 0), + [4723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [4725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 0), + [4727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [4729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8572), + [4732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8821), + [4734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1, 0, 0), + [4736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [4738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1, 0, 0), + [4740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [4742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [4744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8821), + [4747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [4751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [4757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9763), + [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9978), + [4771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 39), + [4773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 39), + [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7255), + [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9163), + [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4567), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), + [4789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5932), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9064), + [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4519), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4793), + [4799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5822), + [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4965), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5074), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6210), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6211), + [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), + [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6090), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6231), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6236), + [4821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [4825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9742), + [4829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 7, 0, 0), + [4831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 7, 0, 0), + [4833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [4835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7789), + [4839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10137), + [4841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), + [4843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7231), + [4845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6899), + [4847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7238), + [4849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5404), + [4851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5512), + [4853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3896), + [4855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10753), + [4857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3857), + [4859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5349), + [4861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5350), + [4863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9092), + [4865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5502), + [4867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8570), + [4869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8225), + [4871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 6, 0, 0), + [4873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 6, 0, 0), + [4875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4420), + [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10142), + [4879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [4881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [4883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [4885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [4889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [4891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [4893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [4895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [4897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [4899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [4901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [4905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [4907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [4911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9718), + [4913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), + [4917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5328), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), + [4921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 2, 0, 0), + [4923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 2, 0, 0), + [4925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [4927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [4929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [4931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 8, 0, 0), + [4933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 8, 0, 0), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [4937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9138), + [4939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), + [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5080), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), + [4947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 9, 0, 0), + [4949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 9, 0, 0), + [4951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 10, 0, 0), + [4953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 10, 0, 0), + [4955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 115), + [4957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 115), + [4959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 116), + [4961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 116), + [4963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 117), + [4965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 117), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [4969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9260), + [4971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4209), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), + [4975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5050), + [4977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4670), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6099), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6093), + [4985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4506), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), + [4989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5927), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6048), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6012), + [4997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 156), + [4999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 156), + [5001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 157), + [5003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 157), + [5005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 158), + [5007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 158), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [5011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9302), + [5013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), + [5017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4954), + [5019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 159), + [5021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 159), + [5023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 160), + [5025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 160), + [5027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 161), + [5029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 161), + [5031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 162), + [5033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 162), + [5035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4913), + [5037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6141), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [5041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9322), + [5043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4771), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6196), + [5051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [5055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5915), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6113), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6104), + [5063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6183), + [5065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [5069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9012), + [5071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4200), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), + [5075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [5081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9397), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [5085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6843), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), + [5095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [5099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4533), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), + [5107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4542), + [5109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1, 0, 0), + [5111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1, 0, 0), + [5113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 47), + [5115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 47), + [5117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), + [5125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [5129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4464), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), + [5137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 48), + [5139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 48), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [5143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9152), + [5145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [5149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4800), + [5151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 0), + [5153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 0), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [5159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9432), + [5161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10887), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [5165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6849), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [5175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [5179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [5187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10714), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9359), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8380), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8090), + [5201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9197), + [5207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), + [5211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4856), + [5213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 139), + [5215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 139), + [5217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 140), + [5219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 140), + [5221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5056), + [5229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [5233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4887), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), + [5241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag_value, 1, 0, 141), + [5243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag_value, 1, 0, 141), + [5245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag_equals_value, 4, 0, 0), + [5247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag_equals_value, 4, 0, 0), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [5251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9441), + [5253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4208), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), + [5257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5062), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), + [5261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5763), + [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4901), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), + [5271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4611), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9849), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [5287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9447), + [5289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4640), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), + [5293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5905), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6168), + [5297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6282), + [5299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4450), + [5301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5539), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [5309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9459), + [5311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10891), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [5315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6823), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [5325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [5329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [5337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [5339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10749), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9406), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8700), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8141), + [5351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [5353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 3, 0, 0), + [5355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 3, 0, 0), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [5359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9481), + [5361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [5365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [5369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [5373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9491), + [5375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4720), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), + [5379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5972), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [5385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9494), + [5387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [5391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [5395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), + [5397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 177), SHIFT_REPEAT(1234), + [5400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 177), + [5402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 177), SHIFT_REPEAT(77), + [5405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 177), SHIFT_REPEAT(9331), + [5408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 177), SHIFT_REPEAT(3821), + [5411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 177), SHIFT_REPEAT(9867), + [5414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 177), SHIFT_REPEAT(2047), + [5417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 177), SHIFT_REPEAT(3167), + [5420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 177), SHIFT_REPEAT(10527), + [5423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 177), SHIFT_REPEAT(3204), + [5426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 177), SHIFT_REPEAT(3861), + [5429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 177), SHIFT_REPEAT(3867), + [5432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 177), SHIFT_REPEAT(3251), + [5435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 177), SHIFT_REPEAT(3251), + [5438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 177), SHIFT_REPEAT(3680), + [5441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 177), SHIFT_REPEAT(3245), + [5444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 177), SHIFT_REPEAT(4000), + [5447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 177), SHIFT_REPEAT(3810), + [5450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 177), SHIFT_REPEAT(3796), + [5453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 177), SHIFT_REPEAT(10683), + [5456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 177), SHIFT_REPEAT(3848), + [5459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 177), SHIFT_REPEAT(9303), + [5462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 177), SHIFT_REPEAT(3913), + [5465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 177), SHIFT_REPEAT(9987), + [5468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 177), SHIFT_REPEAT(4015), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [5473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9500), + [5475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [5479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [5483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [5489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9506), + [5491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10895), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [5495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6903), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [5505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [5509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [5517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [5519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10789), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9460), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8775), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8204), + [5531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [5535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9516), + [5537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [5541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [5545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [5549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9519), + [5551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [5555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [5559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [5563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9527), + [5565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [5569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [5573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [5577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9530), + [5579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [5583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [5587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [5589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 1, 0, 0), + [5591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_overlay_use_repeat1, 1, 0, 0), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9782), + [5595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 4, 0, 0), + [5597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 4, 0, 0), + [5599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [5601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 5, 0, 0), + [5603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 5, 0, 0), + [5605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [5607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [5609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), + [5611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2315), + [5614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2315), + [5617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [5619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [5621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [5623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [5649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10419), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9341), + [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8228), + [5657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9935), + [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9935), + [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10297), + [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10156), + [5665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4911), + [5667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [5669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [5671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4698), + [5673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10122), + [5675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [5677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7384), + [5679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6804), + [5681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7388), + [5683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5533), + [5685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5580), + [5687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4228), + [5689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10356), + [5691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4034), + [5693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5606), + [5695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5612), + [5697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9016), + [5699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5733), + [5701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8548), + [5703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8146), + [5705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [5711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [5713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [5715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9612), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [5731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8833), + [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9285), + [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9021), + [5741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9852), + [5743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6548), + [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6648), + [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9204), + [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9589), + [5751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7074), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7074), + [5755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8695), + [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7079), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9155), + [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9626), + [5763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7984), + [5765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10120), + [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [5769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 8), + [5771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 8), + [5773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_module, 3, 0, 43), + [5775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 43), + [5777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_decl_module, 3, 0, 43), SHIFT(53), + [5780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 9), + [5782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 9), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [5786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [5788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8639), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8696), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8596), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8599), + [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [5806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [5810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8833), + [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [5815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [5818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [5821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_extern, 3, 0, 51), + [5823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 51), + [5825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [5827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 59), SHIFT_REPEAT(10419), + [5830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 59), SHIFT_REPEAT(170), + [5833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 59), SHIFT_REPEAT(9341), + [5836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 59), SHIFT_REPEAT(10315), + [5839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 59), + [5841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 59), SHIFT_REPEAT(9935), + [5844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 59), SHIFT_REPEAT(9935), + [5847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 59), SHIFT_REPEAT(10297), + [5850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 59), SHIFT_REPEAT(10156), + [5853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 59), SHIFT_REPEAT(4911), + [5856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 59), SHIFT_REPEAT(4911), + [5859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 59), SHIFT_REPEAT(9627), + [5862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 59), SHIFT_REPEAT(6592), + [5865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 59), SHIFT_REPEAT(10381), + [5868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_register, 2, 0, 29), + [5870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 29), + [5872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_extern, 4, 0, 87), + [5874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 87), + [5876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_register, 2, 0, 30), + [5878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 30), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8109), + [5882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9086), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9622), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9655), + [5892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_module, 2, 0, 15), + [5894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 15), + [5896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_decl_module, 2, 0, 15), SHIFT(53), + [5899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [5903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8969), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8971), + [5909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_wild_card, 1, 0, 0), + [5911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1, 0, 0), + [5913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_list, 2, 0, 0), + [5915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), + [5917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_error, 4, 0, 101), + [5919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 4, 0, 101), + [5921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8829), + [5923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 7, 0, 196), + [5925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 196), + [5927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hide_mod, 3, 0, 31), + [5929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 3, 0, 31), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [5933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_decl_module, 2, 0, 15), SHIFT(61), + [5936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_source, 2, 0, 28), + [5938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 28), + [5940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 5, 0, 135), + [5942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 135), + [5944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [5946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 7, 0, 187), + [5948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 187), + [5950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 8, 0, 203), + [5952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 203), + [5954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_extern, 5, 0, 136), + [5956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 136), + [5958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 6, 0, 171), + [5960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 171), + [5962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 8, 0, 204), + [5964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 204), + [5966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 7, 0, 197), + [5968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 197), + [5970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_bracks, 2, 0, 0), + [5972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), + [5974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline, 3, 0, 0), + [5976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pipeline, 3, 0, 0), REDUCE(sym_pipeline_last, 3, 0, 0), + [5979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 3, 0, 0), REDUCE(sym_pipeline_last, 3, 0, 0), + [5982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_last, 3, 0, 0), + [5984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(2174), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [5989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 6, 0, 172), + [5991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 172), + [5993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_parens, 2, 0, 0), + [5995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), + [5997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_while, 3, 0, 61), + [5999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 61), + [6001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, 0, 10), + [6003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 10), + [6005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, 0, 12), + [6007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 12), + [6009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [6013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_module, 3, 0, 52), + [6015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 52), + [6017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 9, 0, 206), + [6019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 9, 0, 206), + [6021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 6, 0, 164), + [6023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 164), + [6025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [6027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 5, 0, 142), + [6029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 142), + [6031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__terminator, 1, 0, 0), + [6033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__terminator, 1, 0, 0), + [6035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scope_pattern, 1, 0, 53), + [6037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 53), + [6039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), + [6041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [6043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8829), + [6046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline, 2, 0, 0), + [6048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pipeline, 2, 0, 0), REDUCE(sym_pipeline_last, 2, 0, 0), + [6051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), REDUCE(sym_pipeline_last, 2, 0, 0), + [6054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_last, 2, 0, 0), + [6056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), + [6058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), + [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [6062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 7, 0, 198), + [6064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 198), + [6066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 6, 0, 181), + [6068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 181), + [6070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_bracks, 3, 0, 0), + [6072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), + [6074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_parens, 3, 0, 0), + [6076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), + [6078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_list, 3, 0, 143), + [6080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 143), + [6082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_error, 3, 0, 60), + [6084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 3, 0, 60), + [6086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_extern, 4, 0, 96), + [6088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 96), + [6090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 6, 0, 170), + [6092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 170), + [6094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), + [6096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), REDUCE(sym__statement_last, 1, 0, 0), + [6099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), REDUCE(sym__statement_last, 1, 0, 0), + [6102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_last, 1, 0, 0), + [6104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 6, 0, 165), + [6106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 165), + [6108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [6110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 7, 0, 195), + [6112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 195), + [6114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_module, 4, 0, 88), + [6116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 88), + [6118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 8, 0, 205), + [6120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 205), + [6122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_statement, 1, 0, 0), + [6124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), + [6126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_hide, 3, 0, 72), + [6128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_hide, 3, 0, 72), + [6130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_register, 3, 0, 69), + [6132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 69), + [6134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_export, 2, 0, 14), + [6136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 14), + [6138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stmt_hide, 1, 0, 0), + [6140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_hide, 1, 0, 0), + [6142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 1, 0, 0), + [6144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_register, 3, 0, 70), + [6146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 70), + [6148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stmt_overlay, 1, 0, 0), + [6150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_overlay, 1, 0, 0), + [6152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_new, 3, 0, 73), + [6154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_new, 3, 0, 73), + [6156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 7, 0, 200), + [6158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 7, 0, 200), + [6160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_use, 3, 0, 54), + [6162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 54), + [6164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scope_pattern, 1, 0, 55), + [6166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 55), + [6168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1220), + [6171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(57), + [6174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(9285), + [6177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(10879), + [6180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1996), + [6183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), + [6185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(10224), + [6188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6548), + [6191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6648), + [6194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(9204), + [6197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(9589), + [6200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7074), + [6203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7074), + [6206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(8695), + [6209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7079), + [6212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(4911), + [6215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(9155), + [6218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(4912), + [6221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(10582), + [6224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(9626), + [6227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(9424), + [6230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5067), + [6233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(10280), + [6236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(4977), + [6239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_use, 4, 0, 89), + [6241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 89), + [6243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [6245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [6247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 5, 0, 151), + [6249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 151), + [6251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_loop, 2, 0, 14), + [6253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 14), + [6255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_decl_module, 3, 0, 43), SHIFT(61), + [6258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hide_env, 2, 0, 32), + [6260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 2, 0, 32), + [6262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration, 1, 0, 0), + [6264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration, 1, 0, 0), REDUCE(sym__declaration_last, 1, 0, 0), + [6267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), REDUCE(sym__declaration_last, 1, 0, 0), + [6270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_last, 1, 0, 0), + [6272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), + [6274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_source, 2, 0, 27), + [6276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 27), + [6278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scope_pattern, 1, 0, 56), + [6280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 56), + [6282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_list, 2, 0, 0), + [6284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_list, 2, 0, 0), + [6286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 6, 0, 182), + [6288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 182), + [6290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [6292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), + [6294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 4, 0, 95), + [6296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 95), + [6298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 5, 0, 147), + [6300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 147), + [6302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3930), + [6304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8951), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [6308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [6312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10361), + [6314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_last, 1, 0, 0), + [6316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_last, 1, 0, 0), + [6318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_last, 2, 0, 0), + [6320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9503), + [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [6326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), + [6328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), + [6330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9510), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10848), + [6336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), + [6338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), + [6340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), + [6342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), REDUCE(sym_pipeline_parenthesized_last, 2, 0, 0), + [6345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), REDUCE(sym_pipeline_parenthesized_last, 2, 0, 0), + [6348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_parenthesized_last, 2, 0, 0), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9795), + [6352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8959), + [6354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10608), + [6356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 59), SHIFT_REPEAT(10433), + [6359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 59), SHIFT_REPEAT(170), + [6362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 59), SHIFT_REPEAT(9612), + [6365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 59), SHIFT_REPEAT(10315), + [6368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 59), SHIFT_REPEAT(9935), + [6371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 59), SHIFT_REPEAT(9935), + [6374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 59), SHIFT_REPEAT(10297), + [6377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 59), SHIFT_REPEAT(10156), + [6380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 59), SHIFT_REPEAT(4911), + [6383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 59), SHIFT_REPEAT(4911), + [6386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 59), SHIFT_REPEAT(9627), + [6389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 59), SHIFT_REPEAT(6592), + [6392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 59), SHIFT_REPEAT(10381), + [6395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10237), + [6397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), + [6399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_last, 3, 0, 0), + [6401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), + [6403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), REDUCE(sym__declaration_parenthesized_last, 1, 0, 0), + [6406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), REDUCE(sym__declaration_parenthesized_last, 1, 0, 0), + [6409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_parenthesized_last, 1, 0, 0), + [6411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [6413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), + [6415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), + [6417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), REDUCE(sym__statement_parenthesized_last, 1, 0, 0), + [6420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), REDUCE(sym__statement_parenthesized_last, 1, 0, 0), + [6423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_parenthesized_last, 1, 0, 0), + [6425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [6427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [6429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_parenthesized, 3, 0, 0), + [6431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pipeline_parenthesized, 3, 0, 0), REDUCE(sym_pipeline_parenthesized_last, 3, 0, 0), + [6434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 3, 0, 0), REDUCE(sym_pipeline_parenthesized_last, 3, 0, 0), + [6437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_parenthesized_last, 3, 0, 0), + [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [6441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [6443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [6445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [6447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [6449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [6451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [6453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [6455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [6457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [6459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [6461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [6463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [6465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10705), + [6471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), + [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [6477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [6479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 91), + [6481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 91), + [6483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_let, 2, 0, 11), + [6485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 11), + [6487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const, 3, 0, 42), + [6489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 42), + [6491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_mut, 2, 0, 11), + [6493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 11), + [6495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const, 2, 0, 11), + [6497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 11), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [6501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 1, 0, 4), + [6503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 1, 0, 4), + [6505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), + [6507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias, 5, 0, 134), + [6509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 134), + [6511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern, 4, 0, 138), + [6513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 138), + [6515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 11), + [6517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 11), + [6519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 11), + [6521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 11), + [6523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 11), + [6525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 11), + [6527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 134), + [6529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 134), + [6531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 138), + [6533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 138), + [6535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 3, 0, 0), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9781), + [6539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body_statement, 1, 0, 0), + [6541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), + [6543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 90), + [6545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 90), + [6547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), + [6549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8828), + [6551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 80), + [6553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 80), + [6555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), + [6557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), + [6559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), + [6561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias, 4, 0, 90), + [6563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 90), + [6565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern, 3, 0, 91), + [6567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 91), + [6569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), + [6571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_parenthesized, 1, 0, 4), + [6573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 4), + [6575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8828), + [6578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), + [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9456), + [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [6586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [6592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), + [6594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 42), + [6596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 42), + [6598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 3, 0, 0), + [6600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 80), + [6602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 80), + [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [6608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10185), + [6610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7137), + [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7160), + [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6322), + [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6186), + [6618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4614), + [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), + [6622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10487), + [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6108), + [6626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [6628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [6630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [6632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [6634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [6636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [6638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [6640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [6642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [6644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [6646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [6648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [6650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [6654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2, 0, 0), + [6656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), + [6658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [6660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [6662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8837), + [6664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8837), + [6667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), + [6669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), + [6671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8835), + [6673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8835), + [6676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), + [6678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), + [6680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), + [6682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), + [6684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4585), + [6686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [6690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8823), + [6692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8823), + [6695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), + [6699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), + [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [6705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6594), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6680), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9798), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9971), + [6713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7250), + [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7250), + [6717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9664), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7365), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9941), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9806), + [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4798), + [6727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8787), + [6733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8787), + [6736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2975), + [6738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [6742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10021), + [6744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7211), + [6746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6839), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7215), + [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5887), + [6752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5708), + [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4802), + [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), + [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10698), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5659), + [6762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), + [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [6768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), + [6770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), + [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [6776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7159), + [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7164), + [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5887), + [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), + [6784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4484), + [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [6788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10666), + [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), + [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [6794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9390), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [6798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7202), + [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7204), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [6806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [6810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10709), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), + [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9484), + [6822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7279), + [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6903), + [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7283), + [6828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [6830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [6832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [6836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10710), + [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [6840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8838), + [6846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8838), + [6849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10246), + [6851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [6855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9425), + [6857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7232), + [6859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6823), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7234), + [6863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [6865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [6867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [6871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10851), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [6875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [6879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), + [6881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), + [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [6885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), + [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [6889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [6893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [6897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9804), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [6903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7277), + [6905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6799), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7281), + [6909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6222), + [6911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6194), + [6913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4705), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), + [6917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10692), + [6919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6040), + [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6041), + [6923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7354), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7354), + [6927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7192), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7192), + [6931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), + [6933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), + [6935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10207), + [6937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [6941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [6945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [6949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [6951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [6953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [6955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [6981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), + [6983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), + [6985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [6989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), + [6991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7127), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7129), + [6995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [6999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7154), + [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7154), + [7003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7179), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7179), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [7009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9349), + [7011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7359), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7364), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), + [7019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [7023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10872), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), + [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), + [7031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [7037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [7041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), + [7043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), + [7045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), + [7047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), + [7049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), + [7051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 107), + [7053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 107), + [7055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 108), + [7057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 108), + [7059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 113), + [7061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 113), + [7063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 114), + [7065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 114), + [7067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), + [7069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 1, 0, 19), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [7073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 19), + [7075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 19), + [7077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_body, 2, 0, 19), + [7079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_body, 3, 0, 58), + [7081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 2, 0, 0), + [7083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 2, 0, 0), + [7085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), + [7087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [7089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4058), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10499), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [7095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10179), + [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), + [7099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), + [7101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [7103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10580), + [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9850), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [7111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10123), + [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10684), + [7121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4073), + [7123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10196), + [7125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), + [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), + [7129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10389), + [7131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9796), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [7139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10002), + [7141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), + [7143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), + [7145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3878), + [7147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9421), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [7151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10279), + [7153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), + [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), + [7157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [7161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [7165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10033), + [7167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [7173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10596), + [7175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), + [7177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), + [7179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10354), + [7181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), + [7183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), + [7185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10167), + [7187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [7193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), + [7195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), + [7197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10830), + [7199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), + [7201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), + [7203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), + [7205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(3169), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [7210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(3168), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9387), + [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [7219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10790), + [7221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [7229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), + [7231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10372), + [7233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [7239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10269), + [7241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [7247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), + [7249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8952), + [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [7257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10676), + [7259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), + [7261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [7267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), + [7269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8899), + [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [7277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), + [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [7281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), + [7283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), + [7285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), + [7287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), + [7289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), + [7291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10382), + [7293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), + [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [7299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3860), + [7301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), + [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [7307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(3200), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [7312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [7316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), + [7318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8943), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [7326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [7332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9435), + [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [7340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10522), + [7342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [7352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [7358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(3228), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9429), + [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [7367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), + [7369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), + [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [7375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), + [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), + [7379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(3221), + [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [7384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(3215), + [7387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [7391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8800), + [7393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), + [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [7397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), + [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [7401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), + [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [7409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(3252), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [7414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(3237), + [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [7419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7239), + [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7239), + [7423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), + [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [7429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), + [7431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8858), + [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [7443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10148), + [7445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), + [7447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), + [7449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4681), + [7451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9993), + [7453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), + [7455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), + [7457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10388), + [7459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4509), + [7461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7254), + [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7254), + [7465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8800), + [7468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(3256), + [7471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8783), + [7473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), + [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [7477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7320), + [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7320), + [7481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9089), + [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [7485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10808), + [7487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4185), + [7489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), + [7491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), + [7493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), + [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [7497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10603), + [7499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), + [7501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), + [7503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4177), + [7505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), + [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [7509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), + [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [7513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), + [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [7517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), + [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [7521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8783), + [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [7528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(3261), + [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [7533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9982), + [7535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), + [7537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), + [7539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4997), + [7541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), + [7543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7206), + [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7206), + [7547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10117), + [7549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), + [7551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), + [7553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10831), + [7555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4616), + [7557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), + [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [7561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), + [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [7565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7412), + [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7412), + [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [7571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10734), + [7573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4267), + [7575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4424), + [7577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), + [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [7581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(3308), + [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [7586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), + [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [7590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9404), + [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [7594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10325), + [7596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4105), + [7598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), + [7600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8519), + [7602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(3305), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [7607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), + [7609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), + [7611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7256), + [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7256), + [7615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8519), + [7618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [7620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), + [7623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8588), + [7625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), + [7627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8930), + [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), + [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), + [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [7639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10768), + [7641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), + [7643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4329), + [7645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), + [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), + [7651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4359), + [7653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8814), + [7655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), + [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [7659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4474), + [7661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), + [7663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), + [7665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(3309), + [7668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), + [7670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8814), + [7673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), + [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [7677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), + [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [7685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8810), + [7687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [7689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8906), + [7691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), + [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [7695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10650), + [7697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4451), + [7699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4620), + [7701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [7703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), + [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [7707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), + [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [7713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), + [7715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8810), + [7718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), + [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [7724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), + [7726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), + [7728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), + [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [7732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(3358), + [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [7737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), + [7739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), + [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [7745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(3330), + [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [7752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(3369), + [7755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), + [7757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [7759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), + [7762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), + [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [7766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), + [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [7770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), + [7772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), + [7774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), + [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [7778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [7780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [7783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), + [7785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8928), + [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), + [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [7793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4657), + [7795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3981), + [7797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4189), + [7799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7366), + [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7366), + [7803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), + [7805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [7807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), REDUCE(sym__list_item_expression, 1, 0, 0), + [7810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_expression, 1, 0, 0), + [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [7814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 22), + [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [7818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), + [7820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 178), + [7822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 178), + [7824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8801), + [7826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [7828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [7830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), + [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [7834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), + [7836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(10863), + [7839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(3646), + [7842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 5), + [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [7846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [7848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [7850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), + [7852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), + [7854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), + [7856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8801), + [7859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), + [7861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), + [7863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(3461), + [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [7870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), + [7872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [7876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), + [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [7880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), + [7882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), + [7884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8537), + [7886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(3460), + [7889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), + [7891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), + [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [7895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), + [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [7899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9117), + [7901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [7905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10399), + [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10641), + [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9685), + [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8538), + [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8101), + [7919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), + [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [7923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), + [7925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(3417), + [7928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element, 2, 0, 5), + [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [7934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), + [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [7938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [7940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), + [7942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [7946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [7948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element, 2, 0, 0), + [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [7952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), + [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [7956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), + [7958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), + [7960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 21), + [7962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), + [7964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 21), + [7966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 21), + [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [7972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(3430), + [7975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), + [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [7979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), + [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [7983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), + [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [7987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7227), + [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7227), + [7991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8537), + [7994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), + [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [7998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), + [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [8002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), + [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [8006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8815), + [8008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8815), + [8011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10020), + [8013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10771), + [8015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), + [8017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(3486), + [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [8024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 4, 0, 0), + [8026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 4, 0, 0), + [8028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), + [8030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8792), + [8032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), + [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [8038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7312), + [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7312), + [8042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 3, 0, 0), + [8044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 3, 0, 0), + [8046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(3515), + [8049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), + [8051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), + [8053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), + [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), + [8057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8792), + [8060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), + [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [8064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), + [8066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), + [8068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), + [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [8072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8807), + [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [8078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3871), + [8080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8807), + [8083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7383), + [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7383), + [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [8091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), + [8093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), + [8095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), + [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9750), + [8101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), + [8103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3881), + [8105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3846), + [8107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), + [8109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(3495), + [8112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(3555), + [8115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), + [8117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7121), + [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7121), + [8121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [8125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9682), + [8127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [8131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10526), + [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9689), + [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8868), + [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8364), + [8143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), + [8145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), + [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), + [8151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), + [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), + [8161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), + [8163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8935), + [8165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4578), + [8167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4579), + [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [8171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), + [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [8175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10180), + [8177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4697), + [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), + [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), + [8183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5995), + [8185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), + [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [8191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), + [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [8195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 19), + [8197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 3, 0, 58), + [8199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 19), + [8201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), + [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), + [8205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3972), + [8207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), + [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [8211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7208), + [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7208), + [8215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element, 3, 0, 5), + [8217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 5), + [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [8221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(3669), + [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [8228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 5), + [8230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 5), + [8232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4915), + [8234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4916), + [8236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element, 3, 0, 0), + [8238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), + [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9765), + [8242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), + [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [8246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8799), + [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [8252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), + [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), + [8256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), + [8258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), + [8260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 18), + [8262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 18), REDUCE(sym__list_item_expression, 1, 0, 18), + [8265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_expression, 1, 0, 18), + [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [8269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), + [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [8273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(3635), + [8276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(3707), + [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [8281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8799), + [8284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), + [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), + [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [8290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 22), + [8292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 22), + [8294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7341), + [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7341), + [8298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), + [8300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), + [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), + [8306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10119), + [8308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4472), + [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), + [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), + [8314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10609), + [8316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5889), + [8318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6398), + [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), + [8322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4721), + [8324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4722), + [8326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), + [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [8334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), + [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [8338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4820), + [8340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4827), + [8342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(3673), + [8345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), + [8347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3933), + [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), + [8351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [8353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), + [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), + [8358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_starts_with_sign, 2, 0, 0), + [8360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_starts_with_sign, 2, 0, 0), + [8362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), + [8364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(3709), + [8367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3839), + [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), + [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), + [8375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 2, 0, 19), + [8377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 178), + [8379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 178), + [8381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), + [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [8385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8915), + [8387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5051), + [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5052), + [8391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10762), + [8393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 103), + [8395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 103), + [8397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), + [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10670), + [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7285), + [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7042), + [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6943), + [8409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6415), + [8411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8923), + [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6402), + [8415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5191), + [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), + [8419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10856), + [8421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9450), + [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [8425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10638), + [8427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5064), + [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), + [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), + [8433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 21), + [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), + [8437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [8441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [8443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8540), + [8445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5217), + [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), + [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), + [8451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10823), + [8453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5321), + [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), + [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), + [8459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 1, 0, 0), + [8461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 1, 0, 0), + [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10076), + [8465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5195), + [8467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 1, 0, 0), + [8469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 1, 0, 0), + [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), + [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), + [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), + [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), + [8479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), + [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), + [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), + [8485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), + [8487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 20), + [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), + [8491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 20), + [8493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5196), + [8495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5055), + [8497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(3753), + [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), + [8502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), + [8504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(3843), + [8507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), + [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [8511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), + [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), + [8515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6518), + [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6540), + [8519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5802), + [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), + [8523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6445), + [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6446), + [8527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [8529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), + [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), + [8533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [8535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6584), + [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6586), + [8539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(3855), + [8542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 104), + [8544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 104), + [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10102), + [8548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10293), + [8550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5141), + [8552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), + [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [8556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(3844), + [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), + [8561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 191), + [8563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 191), SHIFT_REPEAT(7285), + [8566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 191), SHIFT_REPEAT(7042), + [8569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 191), SHIFT_REPEAT(6943), + [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), + [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), + [8576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8540), + [8579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7289), + [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7289), + [8583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 199), + [8585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 199), + [8587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 18), + [8589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), + [8591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), + [8593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4232), + [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), + [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), + [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), + [8601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(3711), + [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9986), + [8606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5082), + [8608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4233), + [8610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 173), + [8612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 173), + [8614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8913), + [8616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5126), + [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), + [8620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 176), + [8622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 176), + [8624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [8626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6419), + [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6420), + [8630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(3888), + [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10507), + [8635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), + [8637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8921), + [8639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5279), + [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), + [8643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10374), + [8645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8803), + [8647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8757), + [8649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8616), + [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), + [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), + [8655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8803), + [8658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4352), + [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), + [8662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4031), + [8664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8934), + [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), + [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), + [8672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(4041), + [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), + [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), + [8679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8634), + [8681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), + [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [8685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), + [8687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 94), + [8689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10759), + [8691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5828), + [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5828), + [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5933), + [8697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6497), + [8699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8897), + [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6503), + [8703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5287), + [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), + [8707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7280), + [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7280), + [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10015), + [8713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10538), + [8715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5334), + [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), + [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), + [8721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5976), + [8723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4902), + [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), + [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), + [8729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8757), + [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), + [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [8736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), + [8738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), + [8740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), + [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [8744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(3958), + [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), + [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), + [8751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8717), + [8753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8634), + [8756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [8760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [8762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(3943), + [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), + [8767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6392), + [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6396), + [8771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8946), + [8773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5378), + [8775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5379), + [8777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10817), + [8779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 174), + [8781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 174), + [8783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), + [8785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 175), + [8787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 175), + [8789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6499), + [8791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8890), + [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6505), + [8795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5392), + [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), + [8799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10723), + [8801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4013), + [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), + [8806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(3986), + [8809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8703), + [8811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8616), + [8814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6506), + [8816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8917), + [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6507), + [8820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10701), + [8822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_expression, 1, 10, 0), + [8824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_expression, 1, 10, 0), + [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10192), + [8828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5271), + [8830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10111), + [8834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5581), + [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9984), + [8838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5433), + [8840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6426), + [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6428), + [8844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8914), + [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), + [8848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), + [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), + [8852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8717), + [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), + [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), + [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), + [8861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8703), + [8864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [8866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_expression, 1, 0, 0), + [8868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_expression, 1, 0, 0), + [8870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 180), + [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), + [8874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 180), + [8876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), + [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [8880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4445), + [8882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4550), + [8884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8677), + [8886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8806), + [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), + [8890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4096), + [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), + [8895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6429), + [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6430), + [8899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5493), + [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), + [8903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4307), + [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), + [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10085), + [8909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10375), + [8911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5862), + [8913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), + [8915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), + [8917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(4100), + [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [8922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4247), + [8925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4422), + [8927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8550), + [8929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4504), + [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), + [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), + [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7084), + [8937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4521), + [8939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), + [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), + [8943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4512), + [8945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4609), + [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), + [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4886), + [8951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8550), + [8954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), + [8956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4482), + [8958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8583), + [8960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4441), + [8962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8806), + [8965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8907), + [8967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5540), + [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), + [8971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 1, 0, 0), + [8973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 1, 0, 0), + [8975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 180), + [8977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 180), + [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), + [8981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8583), + [8984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), + [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), + [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), + [8990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4473), + [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), + [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [8996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8677), + [8999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4514), + [9001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6641), + [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6627), + [9005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5941), + [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5970), + [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), + [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7409), + [9013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), + [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [9017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4508), + [9019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), + [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [9023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), + [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [9027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6535), + [9029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8861), + [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6538), + [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), + [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), + [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), + [9039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7330), + [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7330), + [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), + [9045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9854), + [9049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8563), + [9051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6456), + [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6473), + [9055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5850), + [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), + [9059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8563), + [9062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4308), + [9065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4608), + [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8665), + [9069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4401), + [9071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4257), + [9074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4546), + [9076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4624), + [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), + [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), + [9082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4683), + [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), + [9086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4571), + [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7009), + [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6878), + [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6879), + [9094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4552), + [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9995), + [9098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10537), + [9100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6116), + [9102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4423), + [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), + [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), + [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4776), + [9110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6616), + [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6615), + [9114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5867), + [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), + [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), + [9120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), + [9122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4588), + [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), + [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), + [9128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(4363), + [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [9133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), + [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), + [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), + [9139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4686), + [9141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4797), + [9143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), + [9145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4503), + [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), + [9149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8926), + [9151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8665), + [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9848), + [9156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8918), + [9158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5910), + [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5872), + [9162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10630), + [9164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4710), + [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), + [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), + [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), + [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), + [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), + [9178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4304), + [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), + [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), + [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), + [9187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4610), + [9189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4695), + [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10100), + [9193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5950), + [9195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4391), + [9198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4361), + [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), + [9203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8857), + [9205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6054), + [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6055), + [9209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10671), + [9211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), + [9213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4991), + [9215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6848), + [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6859), + [9219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8505), + [9221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6608), + [9223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8919), + [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6613), + [9227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6152), + [9229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6166), + [9231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10430), + [9233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8949), + [9235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6125), + [9237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5986), + [9239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10332), + [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8691), + [9243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7340), + [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7340), + [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10112), + [9249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4926), + [9251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8809), + [9253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6103), + [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6105), + [9257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 10, 0), + [9259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 10, 0), + [9261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 0, 0), + [9263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), + [9265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 1, 0, 33), + [9267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 1, 0, 33), + [9269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), + [9271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), + [9273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), + [9275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), + [9277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4992), + [9279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), + [9281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), + [9283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), + [9285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), + [9287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), + [9289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), + [9291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), + [9293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), + [9295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), + [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8602), + [9299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 1, 0, 36), + [9301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 1, 0, 36), + [9303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), + [9305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), + [9307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), + [9309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), + [9311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5042), + [9313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), + [9315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), + [9317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), + [9319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), + [9321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), + [9323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), + [9325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), + [9327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), + [9329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), + [9331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4551), + [9333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 92), + [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7642), + [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), + [9339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4039), + [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [9343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8691), + [9346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8809), + [9349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4822), + [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8768), + [9353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), + [9355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5043), + [9357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4361), + [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), + [9361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4480), + [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), + [9366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8505), + [9369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), + [9371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6417), + [9373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6455), + [9375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8726), + [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10174), + [9379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6295), + [9381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), + [9383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), + [9385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4171), + [9387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8726), + [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), + [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8657), + [9394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4511), + [9397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), + [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), + [9403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 192), + [9405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6004), + [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6005), + [9409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(4438), + [9412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4678), + [9414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6492), + [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6493), + [9418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8657), + [9421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), + [9423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6753), + [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6757), + [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10020), + [9429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4960), + [9431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6854), + [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6856), + [9435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8768), + [9438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6494), + [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6495), + [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9951), + [9444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), + [9446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), + [9448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), + [9450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), + [9452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5117), + [9454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), + [9456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), + [9458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), + [9460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), + [9462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), + [9464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), + [9466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), + [9468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), + [9470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), + [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8468), + [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), + [9476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5166), + [9478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6213), + [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6214), + [9482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4511), + [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8577), + [9486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8825), + [9488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5111), + [9490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8825), + [9493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8808), + [9495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), + [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [9499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), + [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5506), + [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), + [9505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6815), + [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6791), + [9509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6330), + [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6246), + [9513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8808), + [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [9518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), + [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8741), + [9522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6471), + [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6472), + [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), + [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8817), + [9530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), + [9532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), + [9534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), + [9536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5131), + [9538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 188), + [9540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8741), + [9543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 190), + [9545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4835), + [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), + [9549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5115), + [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9944), + [9553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), + [9555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), + [9557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), + [9559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), + [9561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5152), + [9563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), + [9565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), + [9567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), + [9569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), + [9571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), + [9573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), + [9575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), + [9577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), + [9579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), + [9581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6551), + [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6553), + [9585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5063), + [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), + [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [9591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5084), + [9593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6555), + [9595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6566), + [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), + [9599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 168), + [9601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5049), + [9603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 2, 0, 74), + [9605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 2, 0, 74), + [9607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), + [9609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), + [9611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), + [9613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), + [9615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), + [9617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), + [9619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), + [9621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), + [9623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), + [9625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), + [9627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), + [9629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), + [9631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), + [9633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7378), + [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7378), + [9637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8817), + [9640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8602), + [9643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), + [9645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [9647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [9649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [9653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [9659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [9671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [9673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [9675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [9677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8577), + [9680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 2, 0, 75), + [9682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 2, 0, 75), + [9684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), + [9686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), + [9688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), + [9690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), + [9692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), + [9694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), + [9696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), + [9698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), + [9700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), + [9702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), + [9704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), + [9706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), + [9708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), + [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [9712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5427), + [9714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3945), + [9716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5371), + [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), + [9720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(4951), + [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), + [9725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6678), + [9727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6736), + [9729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6286), + [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6319), + [9733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5357), + [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [9737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5391), + [9739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5193), + [9741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8468), + [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8588), + [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9866), + [9748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6828), + [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6829), + [9752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6247), + [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6248), + [9756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [9758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [9760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [9770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6925), + [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6900), + [9774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5509), + [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [9784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5053), + [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [9790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), + [9792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), + [9794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), + [9796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), + [9798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), + [9800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), + [9802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [9804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), + [9806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), + [9808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), + [9810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), + [9812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), + [9814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), + [9816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [9818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [9820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), + [9824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8588), + [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9733), + [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), + [9831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4455), + [9833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 168), + [9835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5299), + [9837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), + [9839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), + [9841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), + [9843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), + [9845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), + [9847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), + [9849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), + [9851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), + [9853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), + [9855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), + [9857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), + [9859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), + [9861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), + [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9928), + [9865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), + [9867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5054), + [9869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6871), + [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6874), + [9873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5961), + [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5918), + [9877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5505), + [9879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [9881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [9883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [9893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [9895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [9897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [9899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [9905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [9907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [9909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [9911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5298), + [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), + [9915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [9917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5210), + [9919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5400), + [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8778), + [9923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [9925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [9927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [9929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [9931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [9933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [9935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [9937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [9939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [9941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [9943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [9945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [9947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [9949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [9951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [9953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4680), + [9955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6704), + [9957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6705), + [9959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [9961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [9963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [9965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [9967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [9969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [9971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [9973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [9975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [9977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [9979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [9981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9814), + [9983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5543), + [9985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9743), + [9987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6701), + [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6703), + [9991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8820), + [9993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9821), + [9995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), + [9997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5728), + [9999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6985), + [10001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6990), + [10003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4116), + [10005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), + [10007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), + [10009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), + [10011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), + [10013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), + [10015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(5186), + [10018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7392), + [10020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7392), + [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), + [10024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5554), + [10026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6973), + [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6974), + [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [10032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8778), + [10035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5529), + [10037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5669), + [10039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8820), + [10042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5342), + [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9801), + [10046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5496), + [10048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4095), + [10050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5589), + [10052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [10054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [10056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [10058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [10060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [10062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [10064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [10066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [10068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [10070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [10072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [10074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [10076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [10078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [10080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [10082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [10086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [10092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [10104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [10106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [10108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), + [10112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5869), + [10114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5977), + [10116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6134), + [10118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8832), + [10120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5838), + [10122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5966), + [10124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6949), + [10126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [10128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [10130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [10132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [10134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [10136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6690), + [10138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6691), + [10140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [10142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5920), + [10144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [10146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [10148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [10150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [10152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [10154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [10156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [10158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [10160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [10162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [10164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [10166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [10168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [10170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [10172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [10174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [10176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [10178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [10180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [10182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [10184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8819), + [10186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8819), + [10189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5944), + [10191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [10193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [10195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [10197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [10199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [10201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [10203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9841), + [10205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, 0, 123), + [10207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, 0, 123), + [10209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), + [10211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), + [10213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), + [10215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [10217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [10219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), + [10221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), + [10223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), + [10225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), + [10227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), + [10229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), + [10231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [10233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [10235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [10237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [10239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [10241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [10243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [10245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [10247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [10249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [10251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [10253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [10255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [10257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [10259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, 0, 125), + [10261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, 0, 125), + [10263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), + [10265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), + [10267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), + [10269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), + [10271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), + [10273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [10275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), + [10277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), + [10279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), + [10281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), + [10283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), + [10285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), + [10287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), + [10289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6817), + [10291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6870), + [10293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [10295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [10297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [10299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8832), + [10302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [10304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [10306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [10308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [10310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [10312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), + [10314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5959), + [10316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [10318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [10320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5550), + [10322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), + [10324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5929), + [10326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5949), + [10328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6126), + [10330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [10332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [10334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [10336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [10338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), + [10340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), + [10344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6926), + [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6920), + [10348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), + [10350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), + [10352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), + [10354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), + [10356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), + [10358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), + [10360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), + [10362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), + [10364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), + [10366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), + [10368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), + [10370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2832), + [10372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), + [10374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6187), + [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9886), + [10378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9117), + [10380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6937), + [10382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6933), + [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9888), + [10386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4463), + [10388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6096), + [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9956), + [10392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), + [10394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6129), + [10396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), + [10398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6009), + [10400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6003), + [10402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [10404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [10406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), + [10408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6023), + [10410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [10412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [10414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [10416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [10418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [10420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5892), + [10422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [10424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4466), + [10426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5990), + [10428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5139), + [10430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6138), + [10432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), + [10434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), + [10436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), + [10438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), + [10440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), + [10442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), + [10444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), + [10446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), + [10448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), + [10450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), + [10452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), + [10454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [10456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), + [10458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), REDUCE(sym__expr_binary_expression, 1, 0, 0), + [10461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7068), + [10463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7070), + [10465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4838), + [10467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9894), + [10469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [10471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [10473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [10475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [10477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [10479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [10481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [10483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [10485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [10487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [10489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [10491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [10493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [10495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), + [10497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6268), + [10499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6327), + [10501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), + [10503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6203), + [10505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [10507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [10509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [10511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [10513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [10515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [10517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [10519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [10521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [10523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [10525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [10527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [10529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [10531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [10533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [10535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9682), + [10537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [10539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [10541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [10543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [10545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [10547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [10549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [10551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [10553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [10555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [10557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [10559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [10561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [10563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [10565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [10567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [10569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [10571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [10573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [10575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [10577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [10579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [10581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [10583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [10585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [10587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [10589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [10591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), + [10593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [10595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [10597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [10599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [10601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [10603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [10605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [10607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [10609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [10611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [10613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [10615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [10617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [10619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [10621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [10623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [10625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [10627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [10629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [10631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [10633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [10635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [10637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [10639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [10641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [10643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [10645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [10647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [10649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [10651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [10653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [10655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [10657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [10659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [10661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [10663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [10665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [10667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [10669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [10671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [10673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [10675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [10677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [10679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [10681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [10683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [10685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [10687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [10689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [10691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [10693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [10695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [10697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [10699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [10701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [10703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [10705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [10707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [10709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [10711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [10713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [10715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [10717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [10719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [10721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [10723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [10725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [10727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [10729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [10731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [10733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [10735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [10737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [10739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [10741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [10743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [10745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [10747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [10749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [10751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [10753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [10755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [10757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [10759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [10761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [10763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [10765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [10767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [10769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [10771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [10773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [10775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [10777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [10779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [10781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [10783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [10785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [10787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [10789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [10791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [10793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [10795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [10797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [10799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [10801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [10803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [10805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [10807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [10809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [10811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [10813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [10815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [10817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [10819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [10821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [10823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [10825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [10827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [10829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [10831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [10833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [10835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [10837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [10839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [10841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [10843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [10845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [10847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [10849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [10851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [10853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [10855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [10857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [10859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [10861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [10863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [10865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [10867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [10869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [10871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [10873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [10875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [10877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [10879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [10881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [10883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [10885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [10887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [10889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [10891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [10893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [10895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [10897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [10899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [10901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [10903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [10905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [10907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [10909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [10911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [10913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [10915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [10917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [10919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [10921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [10923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [10925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [10927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [10929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [10931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [10933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [10935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [10937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [10941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [10943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [10945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [10947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [10949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [10951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [10953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [10957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [10959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [10961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [10963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [10965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [10967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [10969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [10971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [10973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [10975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [10977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [10979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [10981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [10983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [10985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [10987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [10989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [10991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [10993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [10995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [10997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [10999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [11001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [11003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [11005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [11007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [11009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [11011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [11013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [11015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [11017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [11019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [11021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [11023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [11025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [11027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [11029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [11031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [11033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [11035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [11037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [11039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [11041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [11043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [11045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [11047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [11049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [11051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [11053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [11055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [11057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [11059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [11061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [11063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [11065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [11067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [11069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [11071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [11073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [11075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [11077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [11079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [11081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [11083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [11085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [11087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [11089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [11091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [11093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [11095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [11097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [11099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [11101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [11103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [11105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [11107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [11109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [11111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [11113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [11115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [11117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [11119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [11121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [11123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [11125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [11127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [11129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [11131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [11133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [11135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [11137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [11139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [11141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [11143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [11145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [11147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [11149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [11151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [11153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [11155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [11157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [11159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [11161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [11163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [11165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [11167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [11169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [11171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [11173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [11175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [11177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [11179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [11181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [11183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [11185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [11187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [11189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [11191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [11193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [11195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [11197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [11199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [11201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [11203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [11205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [11207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [11209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [11211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [11213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [11215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [11217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [11219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10159), + [11221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6599), + [11223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6599), + [11225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6574), + [11227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9394), + [11229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [11231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7007), + [11233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6520), + [11235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6520), + [11237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6587), + [11239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9401), + [11241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10694), + [11243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6857), + [11245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6857), + [11247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6998), + [11249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [11251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10067), + [11253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6759), + [11255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6759), + [11257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6782), + [11259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10743), + [11261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7076), + [11263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7076), + [11265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6936), + [11267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [11269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10187), + [11271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6773), + [11273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6773), + [11275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6760), + [11277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6968), + [11279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [11281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9983), + [11283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6737), + [11285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6737), + [11287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6664), + [11289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7244), + [11291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7678), + [11293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6836), + [11295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6836), + [11297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10306), + [11299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7339), + [11301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7339), + [11303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7385), + [11305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7424), + [11307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9296), + [11309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [11311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10236), + [11313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6924), + [11315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6924), + [11317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6827), + [11319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7454), + [11321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6464), + [11323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6534), + [11325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10498), + [11327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7268), + [11329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7268), + [11331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7380), + [11333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10663), + [11335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7141), + [11337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7141), + [11339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7136), + [11341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10158), + [11343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6916), + [11345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6916), + [11347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6880), + [11349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7502), + [11351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7666), + [11353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10440), + [11355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7487), + [11357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7487), + [11359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7389), + [11361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7187), + [11363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7229), + [11365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [11367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10012), + [11369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6906), + [11371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6906), + [11373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6840), + [11375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7475), + [11377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10161), + [11379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7898), + [11381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7018), + [11383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7018), + [11385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8804), + [11387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10584), + [11389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7700), + [11391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7700), + [11393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10090), + [11395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7057), + [11397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7057), + [11399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7003), + [11401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9357), + [11403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10805), + [11405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7459), + [11407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7459), + [11409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7514), + [11411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6547), + [11413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10862), + [11415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7551), + [11417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7551), + [11419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7488), + [11421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8804), + [11424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10274), + [11426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7490), + [11428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7490), + [11430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7477), + [11432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7893), + [11434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10656), + [11436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7767), + [11438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7767), + [11440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10561), + [11442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7624), + [11444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7624), + [11446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7423), + [11448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6531), + [11450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6564), + [11452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6634), + [11454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8044), + [11456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7091), + [11458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7091), + [11460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8074), + [11462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7048), + [11464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7048), + [11466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10135), + [11468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7591), + [11470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7684), + [11472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6550), + [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6617), + [11476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7430), + [11478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7630), + [11480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(6422), + [11483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6542), + [11485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6583), + [11487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6410), + [11489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6416), + [11491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7507), + [11493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7508), + [11495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7435), + [11497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10449), + [11499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7897), + [11501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7897), + [11503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6624), + [11505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6786), + [11507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6552), + [11509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6738), + [11511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7741), + [11513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10803), + [11515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7990), + [11517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7990), + [11519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7460), + [11521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10900), + [11523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7595), + [11525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7595), + [11527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7799), + [11529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6639), + [11531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6790), + [11533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6589), + [11535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9242), + [11537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [11539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10175), + [11541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7045), + [11543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6999), + [11545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6441), + [11547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6442), + [11549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7602), + [11551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7603), + [11553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7884), + [11555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6607), + [11557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(6501), + [11560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6622), + [11562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6596), + [11564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6730), + [11566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6606), + [11568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6636), + [11570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6682), + [11572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10170), + [11574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7419), + [11576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7436), + [11578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6645), + [11580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8156), + [11582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7371), + [11584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7371), + [11586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6590), + [11588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6666), + [11590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8121), + [11592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7261), + [11594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7261), + [11596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6439), + [11598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6440), + [11600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7816), + [11602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7817), + [11604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9311), + [11606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [11608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10233), + [11610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7226), + [11612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7226), + [11614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7386), + [11616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8552), + [11618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(6491), + [11621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(6509), + [11624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6610), + [11626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6611), + [11628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6432), + [11630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6424), + [11632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7625), + [11634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7626), + [11636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6676), + [11638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6721), + [11640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6797), + [11642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10047), + [11644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7562), + [11646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7562), + [11648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7344), + [11650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9163), + [11652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10814), + [11654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8140), + [11656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8203), + [11658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9089), + [11660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [11662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10051), + [11664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7470), + [11666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7470), + [11668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7526), + [11670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9366), + [11672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10581), + [11674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7972), + [11676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7972), + [11678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7973), + [11680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6679), + [11682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10278), + [11684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7659), + [11686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7621), + [11688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10003), + [11690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7662), + [11692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7683), + [11694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6665), + [11696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6777), + [11698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8906), + [11700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(6543), + [11703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8188), + [11705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8159), + [11707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(6528), + [11710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6695), + [11712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7629), + [11714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8016), + [11716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6475), + [11718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6476), + [11720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7937), + [11722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7938), + [11724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6656), + [11726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8006), + [11728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(6541), + [11731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6693), + [11733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6751), + [11735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6863), + [11737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6670), + [11739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6835), + [11741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6739), + [11743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6821), + [11745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6711), + [11747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6895), + [11749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6734), + [11751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6742), + [11753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8906), + [11756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6764), + [11758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6502), + [11760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6498), + [11762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8072), + [11764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8073), + [11766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 67), + [11768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [11770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), + [11772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7787), + [11774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10075), + [11776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 67), + [11778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(6882), + [11781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), + [11783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(10583), + [11786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(10752), + [11789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(10371), + [11792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(10339), + [11795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6511), + [11797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6512), + [11799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7905), + [11801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7906), + [11803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(6517), + [11806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6395), + [11808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), + [11810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6882), + [11812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [11814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10583), + [11816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10752), + [11818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10371), + [11820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10339), + [11822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6393), + [11824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6393), + [11826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [11828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6397), + [11830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6397), + [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6913), + [11834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [11836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10360), + [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8233), + [11842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8233), + [11844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8227), + [11846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6822), + [11848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9404), + [11850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10006), + [11854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7481), + [11856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7439), + [11858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6894), + [11860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6993), + [11862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9584), + [11864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7537), + [11866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10553), + [11868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8460), + [11870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8612), + [11872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7274), + [11874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7274), + [11876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10307), + [11878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8321), + [11880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7152), + [11882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7152), + [11884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8644), + [11886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7531), + [11888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7531), + [11890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7780), + [11892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10694), + [11894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8209), + [11896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8209), + [11898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [11900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10018), + [11902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10039), + [11904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10043), + [11906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8635), + [11908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10071), + [11910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9604), + [11912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7573), + [11914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7573), + [11916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10729), + [11918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8496), + [11920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8496), + [11922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6825), + [11924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7052), + [11926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6927), + [11928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7017), + [11930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6909), + [11932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10813), + [11934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8302), + [11936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8302), + [11938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8337), + [11940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [11942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [11944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10068), + [11946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7570), + [11948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7570), + [11950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7557), + [11952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6614), + [11954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6619), + [11956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8372), + [11958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8373), + [11960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8805), + [11962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6872), + [11964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9218), + [11966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7677), + [11968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10471), + [11970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8586), + [11972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6521), + [11974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6527), + [11976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8316), + [11978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8317), + [11980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8805), + [11983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(6631), + [11986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6910), + [11988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10032), + [11990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7761), + [11992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7814), + [11994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7119), + [11996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7119), + [11998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8133), + [12000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6406), + [12002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6406), + [12004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [12008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6792), + [12010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8556), + [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [12014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [12016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6873), + [12018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6796), + [12020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6941), + [12022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(6632), + [12025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6813), + [12027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6852), + [12029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8095), + [12031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6394), + [12033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6394), + [12035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(6575), + [12038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8970), + [12040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(6633), + [12043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(6629), + [12046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6808), + [12048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6955), + [12050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7201), + [12052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8173), + [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10276), + [12056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8874), + [12058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8851), + [12060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6952), + [12062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7011), + [12064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7166), + [12066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [12068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9064), + [12070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10881), + [12072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6194), + [12074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [12076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9152), + [12078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10886), + [12080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), + [12082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8150), + [12084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7085), + [12086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7369), + [12088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10754), + [12090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8276), + [12092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8276), + [12094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8130), + [12096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [12098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9260), + [12100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10880), + [12102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5580), + [12104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7010), + [12106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [12108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9322), + [12110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10884), + [12112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7377), + [12114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7377), + [12116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [12118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9491), + [12120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10885), + [12122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [12124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9527), + [12126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10898), + [12128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [12130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 93), + [12132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7896), + [12134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 93), + [12136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [12138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [12140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9653), + [12142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9779), + [12144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8054), + [12146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8307), + [12148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6408), + [12150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6408), + [12152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10448), + [12154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9288), + [12156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [12158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9459), + [12160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10891), + [12162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [12164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7415), + [12166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7075), + [12168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7015), + [12170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9969), + [12172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10780), + [12174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8281), + [12176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8286), + [12178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6418), + [12180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6418), + [12182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6543), + [12184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [12186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9494), + [12188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10893), + [12190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [12192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [12194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10879), + [12196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7053), + [12198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [12200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9138), + [12202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10838), + [12204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5535), + [12206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6956), + [12208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [12210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9397), + [12212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8553), + [12214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [12216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9519), + [12218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10897), + [12220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [12222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8886), + [12224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [12226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9432), + [12228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10887), + [12230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8651), + [12232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7006), + [12234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7275), + [12236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8653), + [12238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [12240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9516), + [12242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10896), + [12244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [12246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [12248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9530), + [12250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10899), + [12252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [12254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8645), + [12256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7262), + [12258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7262), + [12260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6625), + [12262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6618), + [12264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8903), + [12266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8910), + [12268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7342), + [12270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7342), + [12272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9746), + [12274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [12276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9441), + [12278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10889), + [12280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), + [12282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [12284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9500), + [12286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10894), + [12288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [12290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7612), + [12292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 92), + [12294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [12296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6981), + [12298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6433), + [12300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6433), + [12302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 63), + [12304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6958), + [12306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 63), + [12308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7062), + [12310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7316), + [12312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6948), + [12314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7245), + [12316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 111), + [12318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7769), + [12320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 111), + [12322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6994), + [12324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7047), + [12326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7124), + [12328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [12330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9302), + [12332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10883), + [12334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), + [12336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [12338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9447), + [12340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10890), + [12342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6235), + [12344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [12346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9506), + [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10895), + [12350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [12352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [12354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9012), + [12356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10882), + [12358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), + [12360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(6758), + [12363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [12365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9481), + [12367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10892), + [12369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [12371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6448), + [12373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6448), + [12375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7034), + [12377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7242), + [12379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(6708), + [12382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(6675), + [12385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 64), + [12387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7785), + [12389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 64), + [12391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [12393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9197), + [12395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10888), + [12397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), + [12399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7411), + [12401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7411), + [12403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(6710), + [12406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9704), + [12408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6984), + [12410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [12412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9718), + [12414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10457), + [12416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5964), + [12418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 13, 0, 0), + [12420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 13, 0, 0), + [12422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8246), + [12424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10343), + [12426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9905), + [12428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 68), + [12430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 68), + [12432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7402), + [12434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7483), + [12436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7224), + [12438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10038), + [12440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8293), + [12442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6450), + [12444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6450), + [12446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), + [12448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), + [12450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6485), + [12452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6485), + [12454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), + [12456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8287), + [12458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7263), + [12460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6801), + [12462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6803), + [12464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8908), + [12466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8909), + [12468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(6793), + [12471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7404), + [12473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7258), + [12475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6761), + [12477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6762), + [12479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9267), + [12481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9269), + [12483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 109), + [12485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 109), + [12487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 110), + [12489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 110), + [12491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 23), + [12493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 23), + [12495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 23), + [12497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 23), + [12499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 64), + [12501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7759), + [12503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 64), + [12505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 67), + [12507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7762), + [12509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 67), + [12511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8763), + [12513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 3, 0, 0), + [12515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6646), + [12517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7311), + [12519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7311), + [12521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8071), + [12523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10024), + [12525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8883), + [12527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6794), + [12529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6838), + [12531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8908), + [12533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8909), + [12535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10169), + [12537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7321), + [12539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7321), + [12541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 11, 0, 0), + [12543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 11, 0, 0), + [12545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6612), + [12547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7149), + [12549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 12, 0, 0), + [12551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 12, 0, 0), + [12553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7236), + [12555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7161), + [12557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7276), + [12559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7329), + [12561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 94), + [12563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(6890), + [12566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7286), + [12568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7306), + [12570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7534), + [12572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7300), + [12574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7565), + [12576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6631), + [12578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7295), + [12580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7295), + [12582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 190), + [12584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6466), + [12586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6466), + [12588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 111), + [12590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7671), + [12592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 111), + [12594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7391), + [12596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7547), + [12598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7394), + [12600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6743), + [12602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6745), + [12604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9672), + [12606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9673), + [12608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 14, 0, 0), + [12610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 14, 0, 0), + [12612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7222), + [12614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7421), + [12616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 188), + [12618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7729), + [12620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6437), + [12622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6437), + [12624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(6798), + [12627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7376), + [12629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6575), + [12631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(6897), + [12634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7213), + [12636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7107), + [12638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7448), + [12640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7379), + [12642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7566), + [12644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(6853), + [12647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8763), + [12650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7185), + [12652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7185), + [12654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7332), + [12656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 65), + [12658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 65), + [12660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8041), + [12662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9985), + [12664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8283), + [12666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(6802), + [12669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10621), + [12671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9842), + [12673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(6911), + [12676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7382), + [12678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(6891), + [12681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6470), + [12683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6470), + [12685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 66), + [12687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 66), + [12689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7308), + [12691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7503), + [12693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), + [12695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), + [12697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7333), + [12699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6427), + [12701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6427), + [12703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7178), + [12705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7178), + [12707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6632), + [12709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7367), + [12711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7367), + [12713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8883), + [12716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6434), + [12718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6434), + [12720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7477), + [12722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7451), + [12724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6574), + [12726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6664), + [12728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9474), + [12730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10868), + [12732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [12734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [12736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6760), + [12738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10522), + [12740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6844), + [12742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6847), + [12744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9912), + [12746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9915), + [12748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 2, 0, 0), + [12750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(7037), + [12753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7552), + [12755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8773), + [12757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8227), + [12759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7533), + [12761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7014), + [12764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7393), + [12766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7393), + [12768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6457), + [12770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7517), + [12772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7395), + [12774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7395), + [12776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6936), + [12778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10418), + [12780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8529), + [12782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9462), + [12784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10858), + [12786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [12788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [12790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7500), + [12792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7632), + [12794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_cmd, 2, 0, 15), + [12796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_cmd, 2, 0, 15), + [12798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7488), + [12800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8856), + [12802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7136), + [12804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6689), + [12806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8856), + [12809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9510), + [12811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [12813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [12815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7247), + [12817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7247), + [12819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6431), + [12821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6431), + [12823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7110), + [12825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7110), + [12827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6435), + [12829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6435), + [12831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6436), + [12833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6436), + [12835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10482), + [12837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10790), + [12839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10325), + [12841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [12843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), + [12845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6605), + [12847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6647), + [12849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9724), + [12851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9058), + [12853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10722), + [12855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [12857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [12859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7479), + [12861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7808), + [12863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7458), + [12865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(6935), + [12868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7482), + [12870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10382), + [12872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7106), + [12874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7106), + [12876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6687), + [12878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7569), + [12880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7812), + [12882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9226), + [12884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10689), + [12886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9211), + [12888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7558), + [12890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9421), + [12892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10354), + [12894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [12896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [12898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10800), + [12900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [12902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [12904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7452), + [12906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(7055), + [12909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7446), + [12911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6488), + [12913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6488), + [12915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10830), + [12917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [12919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [12921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10269), + [12923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7319), + [12925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7319), + [12927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7265), + [12929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7265), + [12931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7266), + [12933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7580), + [12935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7385), + [12937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7464), + [12939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7581), + [12941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6621), + [12943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6621), + [12945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7082), + [12948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7501), + [12950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6563), + [12952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6563), + [12954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9670), + [12956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7344), + [12958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6463), + [12960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6463), + [12962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9503), + [12964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10839), + [12966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [12968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [12970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10734), + [12972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), + [12974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), + [12976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10768), + [12978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), + [12980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), + [12982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6480), + [12984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6480), + [12986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10816), + [12988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [12990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [12992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7380), + [12994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7416), + [12996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6840), + [12998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7535), + [13000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [13002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7504), + [13004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 5, 0, 0), + [13006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 137), + [13008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 137), + [13010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10603), + [13012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [13014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [13016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7799), + [13018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10279), + [13020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [13022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [13024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9193), + [13026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7522), + [13028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7571), + [13030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10650), + [13032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), + [13034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), + [13036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(7016), + [13039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7450), + [13041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7661), + [13043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10751), + [13045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [13047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [13049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7056), + [13052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7559), + [13054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9450), + [13056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10638), + [13058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10808), + [13060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), + [13062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [13064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7442), + [13066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7795), + [13068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7530), + [13070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6782), + [13072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8773), + [13075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7532), + [13077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7734), + [13079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10676), + [13081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [13083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [13085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6758), + [13087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 4, 0, 0), + [13089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10823), + [13091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7417), + [13093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9180), + [13095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6850), + [13097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6851), + [13099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9918), + [13101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9933), + [13103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6763), + [13105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7550), + [13107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10759), + [13109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [13111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7757), + [13113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8337), + [13115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7485), + [13117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 150), + [13119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 150), + [13121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10372), + [13123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7592), + [13125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8011), + [13127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7337), + [13130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7605), + [13132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7287), + [13134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7287), + [13136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6887), + [13138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6595), + [13140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6595), + [13142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7370), + [13144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7370), + [13146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7760), + [13148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7908), + [13150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6830), + [13152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6565), + [13154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6565), + [13156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7345), + [13158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7345), + [13160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6860), + [13162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 144), SHIFT_REPEAT(7415), + [13165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 144), + [13167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 144), SHIFT_REPEAT(9627), + [13170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 144), SHIFT_REPEAT(6592), + [13173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [13175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7782), + [13177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7572), + [13179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6474), + [13181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6474), + [13183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6482), + [13185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6482), + [13187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6487), + [13189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6487), + [13191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7669), + [13193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7323), + [13196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7696), + [13198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7756), + [13200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7582), + [13202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 64), + [13204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7667), + [13206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 64), + [13208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7668), + [13210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 67), + [13212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7670), + [13214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 67), + [13216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [13218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6568), + [13220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7660), + [13222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7363), + [13225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7721), + [13227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6459), + [13229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6459), + [13231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6460), + [13233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6460), + [13235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7793), + [13237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8030), + [13239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6461), + [13241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6461), + [13243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7809), + [13245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7997), + [13247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7807), + [13249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7813), + [13251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7584), + [13253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7946), + [13255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7343), + [13258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6544), + [13260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7600), + [13262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6543), + [13264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7609), + [13266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7120), + [13268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7120), + [13270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7220), + [13273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [13275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [13277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7640), + [13279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 111), + [13281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7705), + [13283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 111), + [13285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7690), + [13287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7916), + [13289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7712), + [13291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [13293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7209), + [13295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7209), + [13297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7473), + [13299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8029), + [13301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7739), + [13303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [13305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6798), + [13307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6620), + [13309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6620), + [13311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7413), + [13313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7413), + [13315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7197), + [13317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7197), + [13319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6477), + [13321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6477), + [13323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6478), + [13325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6478), + [13327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6479), + [13329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6479), + [13331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6483), + [13333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6483), + [13335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6529), + [13337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7788), + [13339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7167), + [13342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7801), + [13344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6774), + [13346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6780), + [13348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9751), + [13350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9770), + [13352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7033), + [13355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7779), + [13357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7639), + [13359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7230), + [13362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7033), + [13364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [13366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [13368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7959), + [13370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7186), + [13372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7186), + [13374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6578), + [13376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6578), + [13378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7313), + [13380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7313), + [13382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7975), + [13384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7476), + [13387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7995), + [13389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [13391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [13393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [13395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [13397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [13399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7870), + [13401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7083), + [13403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7041), + [13405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7822), + [13407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6632), + [13409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7060), + [13411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [13413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7940), + [13415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7861), + [13417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), + [13419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), + [13421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6526), + [13423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6526), + [13425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7317), + [13427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6683), + [13429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6683), + [13431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6600), + [13433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6600), + [13435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7418), + [13438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7863), + [13440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7243), + [13442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7243), + [13444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7427), + [13447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7515), + [13450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7914), + [13452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [13454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6637), + [13456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8001), + [13458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 64), + [13460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 64), + [13462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 67), + [13464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 67), + [13466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6522), + [13468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6522), + [13470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6523), + [13472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6523), + [13474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6525), + [13476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6525), + [13478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7337), + [13480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6554), + [13482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6554), + [13484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6570), + [13486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6570), + [13488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6571), + [13490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6571), + [13492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [13494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 189), SHIFT_REPEAT(7870), + [13497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 189), + [13499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 189), SHIFT_REPEAT(9281), + [13502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 189), SHIFT_REPEAT(6559), + [13505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6573), + [13507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6573), + [13509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7153), + [13511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7153), + [13513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7917), + [13515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8795), + [13517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6575), + [13519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6588), + [13521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7842), + [13523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [13525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, 0, 111), + [13527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 5, 0, 111), + [13529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6643), + [13531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7989), + [13533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7979), + [13535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8339), + [13537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6746), + [13539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6746), + [13541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7112), + [13543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7112), + [13545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [13547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7331), + [13549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6572), + [13551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6572), + [13553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6845), + [13555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6845), + [13557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8795), + [13560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), + [13562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(8215), + [13565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7292), + [13567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7292), + [13569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7004), + [13571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [13573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6515), + [13575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6515), + [13577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7943), + [13579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7480), + [13582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7932), + [13584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [13586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6631), + [13588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7296), + [13590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7296), + [13592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7942), + [13594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7398), + [13596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7398), + [13598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7682), + [13600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [13602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6915), + [13604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6915), + [13606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8032), + [13608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7302), + [13610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7302), + [13612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [13614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_overlay_use_repeat1, 2, 0, 0), SHIFT_REPEAT(9715), + [13617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 2, 0, 0), SHIFT_REPEAT(10451), + [13620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7998), + [13622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7221), + [13624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7221), + [13626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [13628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8224), + [13630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8542), + [13632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6733), + [13634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6733), + [13636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8007), + [13638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8067), + [13640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7095), + [13642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8008), + [13644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8068), + [13646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), + [13648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8126), + [13650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 10, 79), + [13652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [13654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8198), + [13656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6694), + [13658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), + [13660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6699), + [13662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6699), + [13664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6716), + [13666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6716), + [13668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8379), + [13670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 1, 0, 166), + [13672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), + [13674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8589), + [13676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 1, 0, 167), + [13678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), + [13680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8590), + [13682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8308), + [13684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8547), + [13686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7252), + [13688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7252), + [13690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7133), + [13692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7133), + [13694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7134), + [13696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7134), + [13698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8797), + [13700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 1, 10, 1), + [13702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9711), + [13704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [13706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [13708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6601), + [13710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6601), + [13712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6580), + [13714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6580), + [13716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7328), + [13718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9413), + [13720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6758), + [13722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6604), + [13724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6604), + [13726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6603), + [13728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6603), + [13730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8184), + [13732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6816), + [13734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6816), + [13736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6669), + [13738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6669), + [13740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [13742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [13744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8797), + [13747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [13749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7111), + [13751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7111), + [13753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [13755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8144), + [13757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8638), + [13759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7181), + [13761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7181), + [13763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7169), + [13765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7169), + [13767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7170), + [13769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7170), + [13771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 10, 1), + [13773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [13775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6766), + [13777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6766), + [13779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6767), + [13781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6767), + [13783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6769), + [13785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6769), + [13787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6886), + [13789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6886), + [13791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6888), + [13793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6888), + [13795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6713), + [13797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8254), + [13799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [13801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7710), + [13804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8318), + [13806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8344), + [13808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7191), + [13810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7191), + [13812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7929), + [13814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7266), + [13816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [13818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7193), + [13820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7193), + [13822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 50), + [13824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 50), SHIFT_REPEAT(761), + [13827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 50), SHIFT_REPEAT(761), + [13830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 3, 10, 79), + [13832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9583), + [13834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7456), + [13836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 10, 13), + [13838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7174), + [13840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10462), + [13842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6770), + [13844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8088), + [13846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7210), + [13848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7210), + [13850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [13852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8299), + [13854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8888), + [13856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7992), + [13858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7926), + [13860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6833), + [13862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6833), + [13864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8309), + [13866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8611), + [13868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 10, 38), + [13870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8313), + [13872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [13874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8043), + [13876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [13878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 50), + [13880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 50), SHIFT_REPEAT(765), + [13883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [13885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [13887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 2, 10, 13), + [13889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9278), + [13891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 2, 10, 38), + [13893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9292), + [13895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [13897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9113), + [13899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), + [13901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), + [13903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), + [13905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6098), + [13907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [13909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [13911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7527), + [13913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), + [13915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5781), + [13917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [13919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [13921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5996), + [13923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 3, 0, 201), + [13925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8678), + [13927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 3, 0, 202), + [13929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8679), + [13931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [13933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [13935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6883), + [13937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8554), + [13939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7461), + [13941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6204), + [13943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7303), + [13945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7303), + [13947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6329), + [13949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 1, 0, 97), + [13951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8598), + [13953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9893), + [13955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8846), + [13957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), + [13959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6182), + [13961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7233), + [13963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 50), + [13965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 50), SHIFT_REPEAT(782), + [13968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7930), + [13971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8565), + [13973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [13975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [13977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [13979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8664), + [13981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), + [13983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), + [13985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7563), + [13987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [13989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [13991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [13993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [13995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 78), SHIFT_REPEAT(147), + [13998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 78), SHIFT_REPEAT(9113), + [14001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 78), + [14003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [14005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 46), + [14007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 46), + [14009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [14011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 10, 79), + [14013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [14015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body, 1, 0, 0), + [14017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7440), + [14019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 10, 13), + [14021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8017), + [14023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8042), + [14025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7087), + [14027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8046), + [14029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8047), + [14031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), + [14033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_last, 1, 0, 5), + [14035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipe_element_last, 1, 0, 5), SHIFT(10863), + [14038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [14040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [14042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), + [14044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_last, 1, 0, 0), + [14046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipe_element_last, 1, 0, 0), SHIFT(10863), + [14049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), + [14051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [14053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7441), + [14055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [14057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [14059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [14061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7981), + [14063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8134), + [14065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [14067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8040), + [14069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8303), + [14071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [14073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [14075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [14077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [14079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [14081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6552), + [14083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [14085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 10, 1), + [14087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [14089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [14091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [14093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8143), + [14095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [14097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [14099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [14101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [14103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8597), + [14105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9100), + [14107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8719), + [14109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), + [14111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), + [14113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8866), + [14115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), + [14117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6729), + [14119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), + [14121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6731), + [14123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6731), + [14125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(8024), + [14128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6732), + [14130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6732), + [14132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6200), + [14134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6011), + [14136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), + [14138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), + [14140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8523), + [14142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [14144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 94), + [14146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 10, 38), + [14148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6744), + [14150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6744), + [14152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8558), + [14154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9931), + [14156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8534), + [14158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [14160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8534), + [14163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6776), + [14165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6776), + [14167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body, 3, 0, 0), + [14169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), + [14171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7405), + [14173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7405), + [14175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7877), + [14178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5399), + [14180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7290), + [14182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7290), + [14184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7347), + [14186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7347), + [14188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(8039), + [14191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8591), + [14193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_try, 2, 0, 26), + [14195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 26), + [14197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9690), + [14199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7480), + [14201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8259), + [14203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8869), + [14205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8559), + [14207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7418), + [14209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), + [14211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6724), + [14213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6725), + [14215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8893), + [14217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), + [14219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7825), + [14222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8541), + [14224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6912), + [14226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6912), + [14228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body, 2, 0, 0), + [14230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8609), + [14232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8637), + [14234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [14236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8154), + [14238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6798), + [14240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8569), + [14242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7241), + [14244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7241), + [14246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [14248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6686), + [14250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6686), + [14252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9132), + [14254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9314), + [14256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), + [14258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), + [14260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), + [14262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), + [14264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6795), + [14266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6795), + [14268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), + [14270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), + [14272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [14274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if, 3, 0, 62), + [14276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 62), + [14278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), + [14280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8933), + [14282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9173), + [14284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6785), + [14286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6785), + [14288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8630), + [14290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9078), + [14292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8051), + [14294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8053), + [14296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [14298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9924), + [14300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [14302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 5, 0, 183), + [14304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 5, 0, 183), + [14306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 5, 0, 184), + [14308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 5, 0, 184), + [14310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, 0, 122), + [14312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, 0, 122), + [14314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, 0, 121), + [14316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, 0, 121), + [14318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 5, 0, 185), + [14320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 5, 0, 185), + [14322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 5, 0, 186), + [14324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 5, 0, 186), + [14326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, 0, 124), + [14328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, 0, 124), + [14330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, 0, 80), + [14332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, 0, 80), + [14334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [14336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7024), + [14338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9660), + [14340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9668), + [14342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(8374), + [14345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9065), + [14347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6097), + [14349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, 0, 2), + [14351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 2), + [14353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, 0, 3), + [14355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 3), + [14357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5994), + [14359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), + [14361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), + [14363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 78), SHIFT_REPEAT(148), + [14366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 78), SHIFT_REPEAT(9924), + [14369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 78), + [14371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), + [14373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7050), + [14375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9334), + [14377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 15, 0, 0), + [14379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 15, 0, 0), + [14381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1, 0, 0), + [14383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), + [14385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [14387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_expression, 1, 0, 0), + [14389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, 0, 0), + [14391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7033), + [14393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), + [14395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), + [14397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_body, 2, 0, 0), + [14399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), + [14401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), + [14403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6877), + [14405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6877), + [14407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), + [14409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), + [14411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9103), + [14413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [14415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [14417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_last, 1, 0, 0), + [14419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9001), + [14421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6898), + [14423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6898), + [14425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6820), + [14427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6820), + [14429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6826), + [14431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6826), + [14433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8445), + [14435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), + [14437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), + [14439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), + [14441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2451), + [14444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2451), + [14447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9139), + [14449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6654), + [14451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6597), + [14453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9066), + [14455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [14457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [14459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [14461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [14463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), + [14465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), + [14467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [14469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), + [14471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), + [14473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9154), + [14475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [14477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), + [14479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7706), + [14481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8579), + [14483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, 0, 0), + [14485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), + [14487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), + [14489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9165), + [14491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), + [14493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), + [14495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7021), + [14497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9590), + [14499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7054), + [14501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9232), + [14503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), + [14505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), + [14507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9181), + [14509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [14511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [14513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9241), + [14515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6199), + [14517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5991), + [14519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), + [14521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), + [14523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [14525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), + [14527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), + [14529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9199), + [14531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), + [14533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), + [14535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8864), + [14537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7337), + [14539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8545), + [14541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9214), + [14543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), + [14545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), + [14547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 166), + [14549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 167), + [14551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if, 5, 0, 148), + [14553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 148), + [14555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if, 5, 0, 149), + [14557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 149), + [14559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_match, 5, 0, 102), + [14561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 102), + [14563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9144), + [14565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 97), + [14567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_match, 5, 0, 106), + [14569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 106), + [14571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9121), + [14573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9301), + [14575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), + [14577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), + [14579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 4, 0, 152), + [14581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 4, 0, 152), + [14583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 4, 0, 153), + [14585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 4, 0, 153), + [14587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), + [14589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), + [14591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9228), + [14593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), + [14595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), + [14597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), + [14599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9084), + [14601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), + [14603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9244), + [14605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), + [14607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), + [14609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_match, 4, 0, 102), + [14611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 102), + [14613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_body, 1, 0, 0), + [14615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7784), + [14617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [14619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9263), + [14621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [14623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [14625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7575), + [14627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [14629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5723), + [14631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5769), + [14633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), + [14635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), + [14637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_last, 1, 0, 5), + [14639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8912), + [14641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), + [14643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), + [14645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9297), + [14647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), + [14649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), + [14651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized_last, 1, 0, 5), + [14653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized_last, 1, 0, 5), SHIFT(10863), + [14656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(8221), + [14659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6326), + [14661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 4, 0, 154), + [14663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 4, 0, 154), + [14665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6324), + [14667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 4, 0, 155), + [14669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 4, 0, 155), + [14671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), + [14673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), + [14675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 201), + [14677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 202), + [14679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8147), + [14681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8147), + [14683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6150), + [14685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6181), + [14687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5045), + [14689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), + [14691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7092), + [14693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9258), + [14695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_match, 4, 0, 106), + [14697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 106), + [14699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [14701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [14703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9324), + [14705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), + [14707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), + [14709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [14711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [14713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), + [14715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), + [14717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), + [14719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [14721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [14723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), + [14725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4842), + [14727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 62), + [14729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10300), + [14731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), + [14733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [14735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_try, 4, 0, 119), + [14737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 119), + [14739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, 0, 0), + [14741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), + [14743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_last, 1, 0, 0), + [14745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [14747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9332), + [14749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), + [14751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), + [14753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [14755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized_last, 1, 0, 0), + [14757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized_last, 1, 0, 0), SHIFT(10863), + [14760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [14762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9368), + [14764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [14766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), + [14768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [14770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [14772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9383), + [14774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7248), + [14776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7251), + [14778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [14780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_body, 3, 0, 0), + [14782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [14784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9388), + [14786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), + [14788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), + [14790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [14792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [14794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7462), + [14796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7463), + [14798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [14800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [14802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), + [14804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556), + [14806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [14808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [14810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9402), + [14812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [14814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [14816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [14818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [14820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9409), + [14822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [14824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [14826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized_last, 1, 0, 22), + [14828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized_last, 1, 0, 22), SHIFT(10863), + [14831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [14833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [14835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [14837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [14839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [14841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [14843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7902), + [14845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7904), + [14847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8670), + [14849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8670), + [14851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9422), + [14853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8253), + [14855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8257), + [14857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5954), + [14859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9430), + [14861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), + [14863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [14865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9433), + [14867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [14869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [14871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9436), + [14873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [14875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [14877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9439), + [14879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [14881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [14883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9442), + [14885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), + [14887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), + [14889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6536), + [14891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6539), + [14893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9445), + [14895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6842), + [14897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6892), + [14899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), + [14901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), + [14903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9451), + [14905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [14907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [14909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), + [14911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), + [14913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9457), + [14915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), + [14917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), + [14919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9463), + [14921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [14923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [14925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9467), + [14927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [14929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [14931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9471), + [14933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [14935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [14937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9479), + [14939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [14941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [14943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9482), + [14945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [14947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [14949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9485), + [14951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), + [14953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), + [14955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9492), + [14957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [14959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [14961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9495), + [14963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), + [14965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), + [14967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9501), + [14969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [14971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [14973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9504), + [14975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5882), + [14977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5883), + [14979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9507), + [14981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), + [14983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), + [14985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9511), + [14987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [14989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [14991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9517), + [14993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [14995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [14997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9520), + [14999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [15001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [15003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9524), + [15005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [15007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [15009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9528), + [15011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), + [15013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), + [15015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9531), + [15017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [15019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [15021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9533), + [15023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [15025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [15027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9535), + [15029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [15031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [15033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9537), + [15035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [15037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [15039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9541), + [15041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [15043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [15045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9543), + [15047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [15049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [15051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9475), + [15053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), + [15055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5895), + [15057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9545), + [15059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [15061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [15063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9547), + [15065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [15067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [15069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9549), + [15071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [15073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [15075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9551), + [15077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [15079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [15081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9553), + [15083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [15085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [15087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9555), + [15089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [15091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [15093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9557), + [15095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [15097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [15099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9559), + [15101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [15103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [15105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9561), + [15107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [15109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [15111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9563), + [15113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [15115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [15117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9565), + [15119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [15121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [15123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9567), + [15125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [15127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [15129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6902), + [15131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6902), + [15133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9148), + [15135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7601), + [15137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [15139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8069), + [15141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8070), + [15143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [15145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10521), + [15147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9756), + [15149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10147), + [15151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10622), + [15153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9776), + [15155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10181), + [15157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [15159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_return, 2, 0, 0), + [15161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 2, 0, 0), + [15163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(8370), + [15166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [15168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [15170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [15172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9879), + [15174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_where_command, 2, 0, 34), + [15176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 34), + [15178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_where_command, 2, 0, 35), + [15180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 35), + [15182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_where_command, 2, 0, 0), + [15184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 0), + [15186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7348), + [15188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7348), + [15190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7406), + [15192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7406), + [15194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [15196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [15198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_match, 6, 0, 102), + [15200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 102), + [15202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7358), + [15204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7358), + [15206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_match, 6, 0, 106), + [15208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 106), + [15210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9186), + [15212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [15214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8887), + [15216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7687), + [15218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 26), + [15220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10298), + [15222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9291), + [15224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8887), + [15227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6921), + [15229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6921), + [15231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6922), + [15233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6922), + [15235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6923), + [15237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6923), + [15239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7408), + [15241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7408), + [15243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_mut_last, 2, 0, 11), + [15245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_last, 2, 0, 11), + [15247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [15249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), + [15251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4988), + [15253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9857), + [15255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), + [15257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5413), + [15259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [15261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5426), + [15263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4460), + [15265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4475), + [15267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), + [15269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), + [15271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4794), + [15273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5046), + [15275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4941), + [15277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), + [15279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7751), + [15281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7766), + [15283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5896), + [15285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), + [15287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6946), + [15289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6946), + [15291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), + [15293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_last, 4, 0, 90), + [15295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_last, 4, 0, 90), + [15297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8061), + [15299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7889), + [15301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4477), + [15303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7271), + [15305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9909), + [15307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), + [15309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), + [15311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7854), + [15313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7855), + [15315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), + [15317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4648), + [15319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7255), + [15321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9835), + [15323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), + [15325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), + [15327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [15329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [15331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [15333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [15335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [15337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6697), + [15339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6698), + [15341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 193), + [15343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 193), + [15345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 194), + [15347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 194), + [15349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [15351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4854), + [15353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4849), + [15355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_last, 3, 0, 91), + [15357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_last, 3, 0, 91), + [15359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 37), + [15361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 37), + [15363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), + [15365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), + [15367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6982), + [15369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6982), + [15371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8884), + [15373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5313), + [15375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5844), + [15377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5845), + [15379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8438), + [15381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8440), + [15383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6658), + [15385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6660), + [15387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5068), + [15389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_last, 1, 0, 0), + [15391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), + [15393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4417), + [15395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9140), + [15397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9142), + [15399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4974), + [15401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4665), + [15403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4666), + [15405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), + [15407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), + [15409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), + [15411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), + [15413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), + [15415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [15417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [15419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [15421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [15423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), + [15425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 148), + [15427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 148), + [15429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5138), + [15431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 149), + [15433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 149), + [15435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4432), + [15437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4955), + [15439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7356), + [15441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7356), + [15443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4440), + [15445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 169), + [15447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 169), + [15449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [15451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [15453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), + [15455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4407), + [15457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5289), + [15459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4998), + [15461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [15463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [15465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5290), + [15467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), + [15469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), + [15471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 146), SHIFT_REPEAT(810), + [15474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 146), + [15476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), + [15478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 100), + [15480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 100), + [15482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4403), + [15484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4375), + [15486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4362), + [15488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), + [15490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), + [15492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), + [15494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 100), + [15496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 100), + [15498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), + [15500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), + [15502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [15504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5061), + [15506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), + [15508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4273), + [15510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4274), + [15512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5656), + [15514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), + [15516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5286), + [15518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [15520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5266), + [15522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [15524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [15526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), + [15528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), + [15530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body_statement_last, 1, 0, 0), + [15532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_last, 1, 0, 0), + [15534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7071), + [15536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7071), + [15538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7072), + [15540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7072), + [15542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7073), + [15544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7073), + [15546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_last, 1, 0, 4), + [15548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_last, 1, 0, 4), + [15550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 3, 10, 13), + [15552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_parenthesized_body, 3, 10, 13), + [15554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4487), + [15556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6514), + [15558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6516), + [15560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [15562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [15564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), + [15566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [15568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [15570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9571), + [15572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [15574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 3, 10, 38), + [15576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_parenthesized_body, 3, 10, 38), + [15578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4810), + [15580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7443), + [15582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4692), + [15584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4693), + [15586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [15588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [15590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), + [15592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), + [15594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4830), + [15596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4014), + [15598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [15600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [15602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7714), + [15604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3864), + [15606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), + [15608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4852), + [15610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [15612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [15614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_let_last, 2, 0, 11), + [15616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_last, 2, 0, 11), + [15618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5922), + [15620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), + [15622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_last, 2, 0, 11), + [15624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_last, 2, 0, 11), + [15626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4282), + [15628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), + [15630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), + [15632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), + [15634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5070), + [15636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5071), + [15638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [15640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [15642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), + [15644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), + [15646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4993), + [15648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5012), + [15650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [15652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [15654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), + [15656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), + [15658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), + [15660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [15662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [15664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8087), + [15666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5252), + [15668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [15670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [15672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [15674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [15676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8546), + [15678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6976), + [15680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6976), + [15682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), + [15684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), + [15686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [15688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [15690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6977), + [15692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6977), + [15694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), + [15696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4462), + [15698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4478), + [15700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7131), + [15702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7131), + [15704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [15706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [15708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), + [15710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7273), + [15712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7373), + [15714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [15716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [15718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3890), + [15720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4906), + [15722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4907), + [15724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [15726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4690), + [15728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4691), + [15730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_last, 5, 0, 134), + [15732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_last, 5, 0, 134), + [15734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6591), + [15736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5093), + [15738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5127), + [15740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4437), + [15742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5993), + [15744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5997), + [15746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6930), + [15748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), + [15750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), + [15752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4673), + [15754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4592), + [15756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [15758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [15760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3989), + [15762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), + [15764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), + [15766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), + [15768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), SHIFT_REPEAT(9857), + [15771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5521), + [15773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6481), + [15775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6486), + [15777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5165), + [15779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [15781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [15783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [15785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [15787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [15789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), + [15791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8334), + [15793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8352), + [15795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), + [15797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [15799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), + [15801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [15803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), + [15805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4033), + [15807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), + [15809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), + [15811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), + [15813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), + [15815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3904), + [15817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), + [15819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), + [15821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [15823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [15825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [15827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5338), + [15829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), + [15831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4292), + [15833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [15835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6814), + [15837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6818), + [15839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6053), + [15841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), + [15843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), + [15845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5919), + [15847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3787), + [15849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), + [15851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [15853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), + [15855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), + [15857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), + [15859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4872), + [15861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4873), + [15863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [15865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [15867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [15869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [15871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), + [15873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), + [15875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), + [15877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5490), + [15879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [15881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [15883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [15885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [15887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [15889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [15891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5492), + [15893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5497), + [15895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), + [15897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [15899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [15901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [15903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), + [15905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), + [15907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [15909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), + [15911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), + [15913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [15915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [15917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [15919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), + [15921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6179), + [15923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [15925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [15927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), + [15929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5085), + [15931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5086), + [15933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [15935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [15937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [15939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), + [15941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [15943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [15945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), + [15947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5971), + [15949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5974), + [15951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [15953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5697), + [15955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5704), + [15957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9737), + [15959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), + [15961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [15963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [15965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [15967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), + [15969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [15971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [15973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [15975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [15977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [15979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), + [15981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), + [15983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [15985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [15987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [15989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), + [15991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [15993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5155), + [15995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5190), + [15997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [15999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [16001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [16003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [16005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [16007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), + [16009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), + [16011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), + [16013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), + [16015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [16017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [16019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [16021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [16023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [16025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [16027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), + [16029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [16031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [16033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [16035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), + [16037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), + [16039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [16041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [16043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), + [16045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), + [16047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), + [16049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), + [16051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [16053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [16055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [16057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [16059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [16061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [16063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [16065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [16067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [16069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [16071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [16073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [16075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 2), + [16077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 2), + [16079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [16081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 119), + [16083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 119), + [16085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 4, 10, 79), + [16087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_parenthesized_body, 4, 10, 79), + [16089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6992), + [16091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6992), + [16093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9846), + [16095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10863), + [16097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_last, 4, 0, 138), + [16099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_last, 4, 0, 138), + [16101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 3), + [16103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 3), + [16105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7790), + [16107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [16109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8048), + [16111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8050), + [16113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4917), + [16115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7325), + [16117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [16119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [16121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7272), + [16123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7272), + [16125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6407), + [16127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5129), + [16129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6749), + [16131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6750), + [16133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5145), + [16135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9876), + [16137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), + [16139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8884), + [16142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7304), + [16144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7304), + [16146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__mutable_assignment_pattern_last, 3, 0, 80), + [16148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_last, 3, 0, 80), + [16150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), + [16152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6403), + [16154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7297), + [16156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9764), + [16158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5142), + [16160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), + [16162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_last, 3, 0, 42), + [16164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_last, 3, 0, 42), + [16166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), + [16168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), + [16170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [16172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [16174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), + [16176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), + [16178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), + [16180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 2, 10, 1), + [16182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_parenthesized_body, 2, 10, 1), + [16184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9616), + [16186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5685), + [16188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4979), + [16190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8972), + [16192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8973), + [16194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_parenthesized_last, 5, 0, 134), + [16196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized_last, 5, 0, 134), + [16198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), + [16200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9901), + [16202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8860), + [16204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [16206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [16208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6132), + [16210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), + [16212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), + [16214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9675), + [16216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_parenthesized_last, 4, 0, 90), + [16218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized_last, 4, 0, 90), + [16220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9921), + [16222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [16224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5731), + [16226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [16228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8310), + [16230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [16232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), + [16234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [16236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_parenthesized_last, 3, 0, 91), + [16238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized_last, 3, 0, 91), + [16240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9975), + [16242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10745), + [16244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5849), + [16246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), + [16248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_parenthesized_last, 3, 0, 42), + [16250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized_last, 3, 0, 42), + [16252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [16254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [16256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [16258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), + [16260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805), + [16262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body_statement_parenthesized_last, 1, 0, 0), + [16264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized_last, 1, 0, 0), + [16266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [16268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9948), + [16270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10801), + [16272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7866), + [16274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized_last, 1, 0, 0), + [16276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [16278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [16280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [16282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [16284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized_last, 1, 0, 0), + [16286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_parenthesized_last, 1, 0, 4), + [16288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized_last, 1, 0, 4), + [16290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), + [16292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), + [16294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized_last, 1, 0, 0), + [16296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_parenthesized_last, 1, 0, 0), + [16298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__mutable_assignment_pattern_parenthesized_last, 3, 0, 80), + [16300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized_last, 3, 0, 80), + [16302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [16304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [16306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5752), + [16308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [16310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [16312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10037), + [16314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [16316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5783), + [16318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [16320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [16322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9683), + [16324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 37), + [16326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 37), + [16328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), + [16330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), + [16332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [16334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10204), + [16336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [16338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537), + [16340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [16342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [16344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 128), + [16346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 128), SHIFT_REPEAT(9901), + [16349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [16351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9929), + [16353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [16355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [16357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3880), + [16359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), + [16361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5939), + [16363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7480), + [16365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [16367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), + [16369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [16371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [16373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [16375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), + [16377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10165), + [16379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), + [16381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), + [16383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [16385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), + [16387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), + [16389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [16391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), + [16393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), + [16395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [16397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized_last, 2, 0, 0), + [16399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), + [16401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [16403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), + [16405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9049), + [16407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 105), + [16409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9680), + [16411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9976), + [16413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_parenthesized_last, 4, 0, 138), + [16415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized_last, 4, 0, 138), + [16417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), + [16419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9224), + [16421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6122), + [16423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6088), + [16425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9316), + [16427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8742), + [16429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6279), + [16431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9713), + [16433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9490), + [16435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10065), + [16437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 76), + [16439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9644), + [16441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9696), + [16443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7418), + [16445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5899), + [16447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8997), + [16449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9020), + [16451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9050), + [16453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6229), + [16455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9071), + [16457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9094), + [16459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9106), + [16461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9125), + [16463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [16465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9143), + [16467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9159), + [16469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [16471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [16473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9170), + [16475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9185), + [16477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), + [16479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [16481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9206), + [16483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9219), + [16485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9813), + [16487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [16489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9231), + [16491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_let_parenthesized_last, 2, 0, 11), + [16493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized_last, 2, 0, 11), + [16495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6028), + [16497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9249), + [16499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9266), + [16501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9286), + [16503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), + [16505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9299), + [16507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), + [16509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9308), + [16511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10173), + [16513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10812), + [16515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9318), + [16517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9328), + [16519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), + [16521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9337), + [16523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [16525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2739), + [16528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), + [16530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9347), + [16532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6024), + [16534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9355), + [16536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9364), + [16538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9373), + [16540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9380), + [16542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9385), + [16544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_mut_parenthesized_last, 2, 0, 11), + [16546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized_last, 2, 0, 11), + [16548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_parenthesized_last, 2, 0, 11), + [16550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized_last, 2, 0, 11), + [16552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6095), + [16554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [16556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10255), + [16558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10866), + [16560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [16562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [16564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_expression, 1, 0, 18), + [16566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6763), + [16568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7706), + [16570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5847), + [16572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 19), + [16574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [16576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4354), + [16578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8180), + [16580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), + [16582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), + [16584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8199), + [16586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10580), + [16588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7687), + [16590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7763), + [16592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7440), + [16594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7901), + [16596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7765), + [16598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7594), + [16600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7911), + [16602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6860), + [16604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 58), + [16606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [16608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7431), + [16610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [16612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [16614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10723), + [16616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4353), + [16618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10241), + [16620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5848), + [16622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7575), + [16624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7432), + [16626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9225), + [16628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [16630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [16632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [16634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7596), + [16636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9970), + [16638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7233), + [16640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9973), + [16642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10542), + [16644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7527), + [16646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7772), + [16648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4356), + [16650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9216), + [16652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9762), + [16654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9772), + [16656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4357), + [16658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 126), + [16660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6689), + [16662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10375), + [16664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10339), + [16666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5841), + [16668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10693), + [16670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 179), + [16672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 20), + [16674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 20), + [16676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7773), + [16678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10293), + [16680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [16682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10592), + [16684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7004), + [16686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10538), + [16688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7108), + [16690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5842), + [16692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9237), + [16694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 58), + [16696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [16698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10762), + [16700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10701), + [16702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10671), + [16704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10684), + [16706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10630), + [16708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(10062), + [16711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [16713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10430), + [16715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [16717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8342), + [16719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10374), + [16721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), + [16723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10856), + [16725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10537), + [16727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7114), + [16729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [16731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10831), + [16733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [16735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8023), + [16737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7699), + [16739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10388), + [16741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7599), + [16743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), + [16745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10609), + [16747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 1, 0, 99), + [16749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10771), + [16751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10292), + [16753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7701), + [16755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7693), + [16757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10386), + [16759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10511), + [16761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [16763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6830), + [16765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6646), + [16767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10486), + [16769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7872), + [16771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7694), + [16773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10596), + [16775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7441), + [16777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), + [16779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10716), + [16781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10347), + [16783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7060), + [16785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10817), + [16787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10284), + [16789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), + [16791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [16793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [16795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6092), + [16797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10332), + [16799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6687), + [16801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10361), + [16803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), + [16805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4412), + [16807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10389), + [16809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7873), + [16811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4413), + [16813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10426), + [16815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8368), + [16817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10458), + [16819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(10099), + [16822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10490), + [16824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7176), + [16826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [16828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7428), + [16830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10532), + [16832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [16834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10563), + [16836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8377), + [16838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4414), + [16840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10589), + [16842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4415), + [16844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10608), + [16846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10264), + [16848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10644), + [16850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10655), + [16852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10668), + [16854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10681), + [16856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10695), + [16858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7177), + [16860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [16862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7715), + [16864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7735), + [16866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9171), + [16868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), + [16870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10654), + [16872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), + [16874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10157), + [16876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), + [16878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7429), + [16880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), + [16882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8922), + [16884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [16886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [16888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [16890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [16892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [16894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [16896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7478), + [16898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8870), + [16900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [16902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7672), + [16904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [16906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7730), + [16908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5076), + [16910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [16912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [16914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [16916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4702), + [16918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), + [16920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [16922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6100), + [16924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10130), + [16926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9321), + [16928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [16930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [16932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), + [16934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9676), + [16936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [16938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), + [16940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [16942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7282), + [16944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8932), + [16946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5804), + [16948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [16950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), + [16952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7658), + [16954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [16956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), + [16958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [16960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [16962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), + [16964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [16966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [16968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), + [16970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5220), + [16972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), + [16974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), + [16976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), + [16978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6940), + [16980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5060), + [16982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [16984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [16986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5826), + [16988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6270), + [16990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6961), + [16992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), + [16994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7561), + [16996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9134), + [16998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [17000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [17002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [17004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [17006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), + [17008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [17010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), + [17012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), + [17014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), + [17016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7351), + [17018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8269), + [17020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [17022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [17024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6010), + [17026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), + [17028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [17030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [17032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [17034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6812), + [17036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [17038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), + [17040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), + [17042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [17044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [17046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [17048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 1, 0, 0), + [17050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), + [17052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), + [17054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [17056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [17058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), + [17060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [17062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [17064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [17066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [17068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [17070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), + [17072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), + [17074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5311), + [17076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [17078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6228), + [17080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7372), + [17082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [17084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [17086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), + [17088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6325), + [17090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [17092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), + [17094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [17096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [17098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [17100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [17102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [17104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [17106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [17108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8139), + [17110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), + [17112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6783), + [17114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6709), + [17116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7457), + [17118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4448), + [17120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [17122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [17124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [17126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [17128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), + [17130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), + [17132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), + [17134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), + [17136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7753), + [17138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5983), + [17140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [17142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [17144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [17146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5687), + [17148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [17150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [17152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [17154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8945), + [17156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5947), + [17158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5578), + [17160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7853), + [17162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [17164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [17166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [17168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), + [17170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9106), + [17172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [17174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7080), + [17176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [17178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), + [17180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), + [17182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [17184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), + [17186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [17188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [17190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), + [17192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [17194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [17196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [17198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8019), + [17200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [17202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), + [17204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [17206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [17208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [17210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [17212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [17214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [17216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [17218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), + [17220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [17222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7361), + [17224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10652), + [17226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7628), + [17228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), + [17230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4845), + [17232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [17234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [17236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), + [17238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [17240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), + [17242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5507), + [17244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4925), + [17246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), + [17248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4937), + [17250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6123), + [17252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [17254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), + [17256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [17258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [17260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10240), + [17262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [17264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [17266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), + [17268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), + [17270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7824), + [17272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [17274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), + [17276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [17278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8018), + [17280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [17282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8551), + [17284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), + [17286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), + [17288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [17290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), + [17292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6272), + [17294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8434), + [17296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), + [17298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [17300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [17302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [17304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8622), + [17306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6002), + [17308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), + [17310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), + [17312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5314), + [17314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [17316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), + [17318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5671), + [17320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10310), + [17322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9428), + [17324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), + [17326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [17328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), + [17330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8566), + [17332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), + [17334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [17336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [17338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [17340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), + [17342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [17344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7976), + [17346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6959), + [17348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5345), + [17350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8584), + [17352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), + [17354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [17356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), + [17358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7336), + [17360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7511), + [17362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9847), + [17364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6039), + [17366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10910), + [17368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9800), + [17370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [17372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), + [17374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [17376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [17378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [17380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [17382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), + [17384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), + [17386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), + [17388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [17390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [17392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), + [17394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [17396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [17398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [17400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), + [17402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [17404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [17406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10127), + [17408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [17410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), + [17412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [17414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5937), + [17416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 93), + [17418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [17420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), + [17422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), + [17424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), + [17426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5500), + [17428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [17430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [17432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), + [17434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [17436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7583), + [17438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7023), + [17440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [17442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), + [17444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [17446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [17448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), + [17450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), + [17452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [17454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [17456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), + [17458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8341), + [17460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9709), + [17462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), + [17464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7184), + [17466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [17468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9224), + [17470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), + [17472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [17474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 93), + [17476] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [17478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [17480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [17482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10334), + [17484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [17486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [17488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [17490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7128), + [17492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), + [17494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), + [17496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [17498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5837), + [17500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 4, 0, 179), + [17502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6612), + [17504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [17506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9705), + [17508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [17510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [17512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), + [17514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [17516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), + [17518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5907), + [17520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [17522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [17524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5906), + [17526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), + [17528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), + [17530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [17532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8904), + [17534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), + [17536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), + [17538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [17540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [17542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [17544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5987), + [17546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), + [17548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), + [17550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [17552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), + [17554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [17556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [17558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [17560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [17562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [17564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6944), + [17566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), + [17568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6149), + [17570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9136), + [17572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [17574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [17576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6960), + [17578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8312), + [17580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8045), + [17582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [17584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5980), + [17586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), + [17588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), + [17590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9469), + [17592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [17594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), + [17596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5657), + [17598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [17600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [17602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6244), + [17604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9284), + [17606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5658), + [17608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [17610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [17612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8294), + [17614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7499), + [17616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5696), + [17618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7857), + [17620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4553), + [17622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [17624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), + [17626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [17628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [17630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), + [17632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [17634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), + [17636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [17638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5065), + [17640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [17642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7461), + [17644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7518), + [17646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), + [17648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [17650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), + [17652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7758), + [17654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), + [17656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8116), + [17658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8301), + [17660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [17662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [17664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), + [17666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [17668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [17670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [17672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), + [17674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), + [17676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8326), + [17678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), + [17680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5682), + [17682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [17684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [17686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), + [17688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), + [17690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5564), + [17692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5900), + [17694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [17696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [17698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [17700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), + [17702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [17704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), + [17706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [17708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [17710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [17712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6975), + [17714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [17716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [17718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [17720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [17722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8732), + [17724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4742), + [17726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), + [17728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), + [17730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [17732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [17734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), + [17736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10747), + [17738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7494), + [17740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [17742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [17744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [17746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8920), + [17748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4910), + [17750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), + [17752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [17754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), + [17756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5002), + [17758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5014), + [17760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3955), + [17762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [17764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [17766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [17768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [17770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [17772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [17774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [17776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [17778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [17780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [17782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [17784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [17786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [17788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [17790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [17792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [17794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [17796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [17798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7802), + [17800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), + [17802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [17804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9722), + [17806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [17808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [17810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), + [17812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), }; #ifdef __cplusplus diff --git a/test/corpus/stmt/assignment.nu b/test/corpus/stmt/assignment.nu index d5d86dd..676d936 100644 --- a/test/corpus/stmt/assignment.nu +++ b/test/corpus/stmt/assignment.nu @@ -10,7 +10,9 @@ $var = 42 (assignment (val_variable (identifier)) - (val_number))) + (pipeline + (pipe_element + (val_number))))) ===== assignment-002-semicolon @@ -24,17 +26,20 @@ $var += 69; (assignment (val_variable (identifier)) - (val_number))) + (pipeline + (pipe_element + (val_number))))) ===== assignment-003-assignment-to-a-pipeline ===== $x += 1 | $in + 10 -# Note that rhs of ++= is not a pipeline, but only 1 -# currently nushell parses this as two statements -# $x ++= 1 and $in + 10. Therefore you will get error -# about adding int to nothing, and $x increased by one +$x ++= [1 2 3] +| each {|x| + $x + 8 +} +($a /= 1) | default 0 ----- @@ -42,14 +47,50 @@ $x += 1 | $in + 10 (assignment (val_variable (identifier)) + (pipeline + (pipe_element (val_number)) - (ERROR) - (pipeline - (pipe_element - (expr_binary - (val_variable) - (val_number)))) - (comment) - (comment) - (comment) - (comment)) \ No newline at end of file + (pipe_element + (expr_binary + (val_variable) + (val_number))))) + (assignment + (val_variable + (identifier)) + (pipeline + (pipe_element + (val_list + (list_body + (val_entry + (val_number)) + (val_entry + (val_number)) + (val_entry + (val_number))))) + (pipe_element + (command + (cmd_identifier) + (val_closure + (parameter_pipes + (parameter + (identifier))) + (pipeline + (pipe_element + (expr_binary + (val_variable + (identifier)) + (val_number))))))))) + (pipeline + (pipe_element + (expr_parenthesized + (assignment + (val_variable + (identifier)) + (pipeline + (pipe_element + (val_number)))))) + (pipe_element + (command + (cmd_identifier) + (val_number))))) +